From cb3658e736e46040ff83ee201826e53ac6566520 Mon Sep 17 00:00:00 2001 From: bcumming Date: Thu, 4 Apr 2019 17:36:40 +0200 Subject: [PATCH 01/34] wip --- .ycm_extra_conf.py | 2 +- arbor/include/arbor/meson.build | 24 +++++++++++++ arbor/include/arbor/version.hpp.in | 14 ++++++++ arbor/include/gitlog | 9 +++++ arbor/meson.build | 55 ++++++++++++++++++++++++++++++ arborenv/meson.build | 8 +++++ mechanisms/meson.build | 17 +++++++++ meson.build | 19 +++++++++++ meson_options.txt | 1 + modcc/meson.build | 25 ++++++++++++++ sup/meson.build | 10 ++++++ 11 files changed, 183 insertions(+), 1 deletion(-) create mode 100644 arbor/include/arbor/meson.build create mode 100644 arbor/include/arbor/version.hpp.in create mode 100644 arbor/include/gitlog create mode 100644 arbor/meson.build create mode 100644 arborenv/meson.build create mode 100644 mechanisms/meson.build create mode 100644 meson.build create mode 100644 meson_options.txt create mode 100644 modcc/meson.build create mode 100644 sup/meson.build diff --git a/.ycm_extra_conf.py b/.ycm_extra_conf.py index f3ea3705c1..0ad9e86654 100644 --- a/.ycm_extra_conf.py +++ b/.ycm_extra_conf.py @@ -47,7 +47,7 @@ '-I', 'modcc', '-I', - 'include', + 'arbor/include', '-I', 'arbor', '-I', diff --git a/arbor/include/arbor/meson.build b/arbor/include/arbor/meson.build new file mode 100644 index 0000000000..17c7707814 --- /dev/null +++ b/arbor/include/arbor/meson.build @@ -0,0 +1,24 @@ +# configure headers +if with_assertions.enabled() + run_command('cp', 'assert_macro.hpp.enabled', 'assert_macro.hpp') +else + run_command('cp', 'assert_macro.hpp.disabled', 'assert_macro.hpp') +endif + +conf = configuration_data() + +# todo: get this version number either from VERSION file, or from project options +conf.set('version', '0.2.1-dev') + +# todo: external call to git: see arbor/include/git-source-id +gitlog = run_command('../gitlog') +conf.set('gitlog', gitlog.stdout().strip()) + +if with_assertions.enabled() + conf.set('ARB_ASSERTIONS_ENABLED', true) +endif + +configure_file(input : 'version.hpp.in', + output : 'version.hpp', + configuration : conf) +# todo: add 'install' and 'install_path' so that version.hpp is installed diff --git a/arbor/include/arbor/version.hpp.in b/arbor/include/arbor/version.hpp.in new file mode 100644 index 0000000000..e5ca37936a --- /dev/null +++ b/arbor/include/arbor/version.hpp.in @@ -0,0 +1,14 @@ +#pragma once + +#define ARB_VERSION "@version@" +#define ARB_SOURCE_ID "@gitlog@" + +namespace arb { +extern const char version[]; +extern const char source_id[]; +} + +#mesondefine ARB_ASSERTIONS_ENABLED +#mesondefine ARB_MPI_ENABLED +#mesondefine ARB_CUDA_ENABLED +#mesondefine ARB_PROFILING_ENABLED diff --git a/arbor/include/gitlog b/arbor/include/gitlog new file mode 100644 index 0000000000..57f6bfd5aa --- /dev/null +++ b/arbor/include/gitlog @@ -0,0 +1,9 @@ +#!/usr/bin/env bash + +if gitlog=$(git log -1 --pretty=format:'%ci %H'); then + git diff --quiet HEAD || gitlog="${gitlog} modified" +else + gitlog='unknown commit' +fi + +echo "$gitlog $FOO" diff --git a/arbor/meson.build b/arbor/meson.build new file mode 100644 index 0000000000..2014746a95 --- /dev/null +++ b/arbor/meson.build @@ -0,0 +1,55 @@ +arb_src = [ + 'arbexcept.cpp', + 'assert.cpp', + 'backends/multicore/mechanism.cpp', + 'backends/multicore/shared_state.cpp', + 'backends/multicore/stimulus.cpp', + 'communication/dry_run_context.cpp', + 'benchmark_cell_group.cpp', + 'builtin_mechanisms.cpp', + 'cell_group_factory.cpp', + 'common_types_io.cpp', + 'execution_context.cpp', + 'gpu_context.cpp', + 'event_binner.cpp', + 'fvm_layout.cpp', + 'fvm_lowered_cell_impl.cpp', + 'hardware/memory.cpp', + 'hardware/power.cpp', + 'io/locked_ostream.cpp', + 'io/serialize_hex.cpp', + 'lif_cell_group.cpp', + 'cable_cell.cpp', + 'mc_cell_group.cpp', + 'mechcat.cpp', + 'memory/cuda_wrappers.cpp', + 'memory/util.cpp', + 'merge_events.cpp', + 'simulation.cpp', + 'morphology.cpp', + 'partition_load_balance.cpp', + 'profile/clock.cpp', + 'profile/memory_meter.cpp', + 'profile/meter_manager.cpp', + 'profile/power_meter.cpp', + 'profile/profiler.cpp', + 'schedule.cpp', + 'spike_event_io.cpp', + 'spike_source_cell_group.cpp', + 'swcio.cpp', + 'threading/threading.cpp', + 'thread_private_spike_store.cpp', + 'tree.cpp', + 'util/hostname.cpp', + 'util/unwind.cpp', + 'version.cpp'] + +# todo: mpi files +# todo: cuda files + +subdir('include/arbor') + +arb = library('arbor', + sources: [arb_src, arb_mechs], + include_directories: [inc_arbpublic, inc_arbprivate]) + diff --git a/arborenv/meson.build b/arborenv/meson.build new file mode 100644 index 0000000000..6af882fe28 --- /dev/null +++ b/arborenv/meson.build @@ -0,0 +1,8 @@ +arbenv_src = ['affinity.cpp', + 'concurrency.cpp', + 'default_gpu.cpp', + 'private_gpu.cpp'] + +arbenv = library('arbenv', + sources: arbenv_src, + include_directories: [inc_arbpublic, inc_arbenv]) diff --git a/mechanisms/meson.build b/mechanisms/meson.build new file mode 100644 index 0000000000..5e90d64e6d --- /dev/null +++ b/mechanisms/meson.build @@ -0,0 +1,17 @@ +#pas hh expsyn exp2syn test_kin1 test_kinlva test_ca nax kdrmt kamt +modcc_flags = ['-t', 'cpu'] + +mech_gen = generator(modcc, + output : ['@BASENAME@.hpp', '@BASENAME@_cpu.cpp'], + arguments : ['@INPUT@', '-t', 'cpu', '-o', '@BUILD_DIR@/@BASENAME@']) + +arb_mechs = mech_gen.process('mod/pas.mod', + 'mod/hh.mod', + 'mod/expsyn.mod', + 'mod/exp2syn.mod', + 'mod/test_kin1.mod', + 'mod/test_kinlva.mod', + 'mod/test_ca.mod', + 'mod/nax.mod', + 'mod/kdrmt.mod', + 'mod/kamt.mod') diff --git a/meson.build b/meson.build new file mode 100644 index 0000000000..af0704b726 --- /dev/null +++ b/meson.build @@ -0,0 +1,19 @@ +project('arbor', 'cpp', + version: '0.2.1dev', + license: 'BSD') + +with_assertions = get_option('arb_assertions') + +inc_tclap = include_directories('ext/tclap/include') +inc_json = include_directories('ext/json/single_include') + +inc_arbprivate = include_directories('arbor') +inc_arbpublic = include_directories('arbor/include') +inc_arbenv = include_directories('arborenv/include') +inc_arbsup = include_directories('sup/include') + +subdir('modcc') +subdir('mechanisms') +subdir('arbor') +subdir('arborenv') +subdir('sup') diff --git a/meson_options.txt b/meson_options.txt new file mode 100644 index 0000000000..07e3700797 --- /dev/null +++ b/meson_options.txt @@ -0,0 +1 @@ +option('arb_assertions', type : 'feature', value : 'disabled') diff --git a/modcc/meson.build b/modcc/meson.build new file mode 100644 index 0000000000..b1651c3652 --- /dev/null +++ b/modcc/meson.build @@ -0,0 +1,25 @@ +modcc_src = [ 'astmanip.cpp', + 'blocks.cpp', + 'errorvisitor.cpp', + 'expression.cpp', + 'functionexpander.cpp', + 'functioninliner.cpp', + 'kineticrewriter.cpp', + 'lexer.cpp', + 'modcc.cpp', + 'module.cpp', + 'parser.cpp', + 'solvers.cpp', + 'symdiff.cpp', + 'symge.cpp', + 'token.cpp', + 'printer/cexpr_emit.cpp', + 'printer/cprinter.cpp', + 'printer/cudaprinter.cpp', + 'printer/infoprinter.cpp', + 'printer/printerutil.cpp', + 'io/prefixbuf.cpp'] + +modcc = executable('modcc', + sources: modcc_src, + include_directories: inc_tclap) diff --git a/sup/meson.build b/sup/meson.build new file mode 100644 index 0000000000..ac6abd1b3f --- /dev/null +++ b/sup/meson.build @@ -0,0 +1,10 @@ +arbsup_src = ['glob_basic.cpp', + 'glob_posix.cpp', + 'ioutil.cpp', + 'json_meter.cpp', + 'path.cpp'] + +arbsup = library('arbsup', + sources: arbsup_src, + include_directories: [inc_arbpublic, inc_arbsup, inc_json]) + From 29f8b9973b8f6b7fb3c31d052c76a23536f6f27f Mon Sep 17 00:00:00 2001 From: bcumming Date: Thu, 4 Apr 2019 19:17:49 +0200 Subject: [PATCH 02/34] ring benchmark compiles and runs, but mechanism catalogue is borked --- arbor/include/arbor/meson.build | 6 ++++-- arbor/meson.build | 5 +++-- example/ring/meson.build | 4 ++++ mechanisms/meson.build | 33 +++++++++++++++++++++------------ meson.build | 4 ++++ 5 files changed, 36 insertions(+), 16 deletions(-) create mode 100644 example/ring/meson.build diff --git a/arbor/include/arbor/meson.build b/arbor/include/arbor/meson.build index 17c7707814..5c72f6afb8 100644 --- a/arbor/include/arbor/meson.build +++ b/arbor/include/arbor/meson.build @@ -1,8 +1,10 @@ # configure headers +# todo: find how to install "assert_macro.hpp" +assert_macro_path=meson.current_build_dir()+'/assert_macro.hpp' if with_assertions.enabled() - run_command('cp', 'assert_macro.hpp.enabled', 'assert_macro.hpp') + run_command('cp', 'assert_macro.hpp.enabled', assert_macro_path) else - run_command('cp', 'assert_macro.hpp.disabled', 'assert_macro.hpp') + run_command('cp', 'assert_macro.hpp.disabled', assert_macro_path) endif conf = configuration_data() diff --git a/arbor/meson.build b/arbor/meson.build index 2014746a95..f7f164bee0 100644 --- a/arbor/meson.build +++ b/arbor/meson.build @@ -50,6 +50,7 @@ arb_src = [ subdir('include/arbor') arb = library('arbor', - sources: [arb_src, arb_mechs], - include_directories: [inc_arbpublic, inc_arbprivate]) + sources: [arb_src, arb_mechs, mech_catalogue], + include_directories: [inc_arbpublic, inc_arbprivate], + dependencies : dep_threads) diff --git a/example/ring/meson.build b/example/ring/meson.build new file mode 100644 index 0000000000..8da6f52c8f --- /dev/null +++ b/example/ring/meson.build @@ -0,0 +1,4 @@ +ring = executable('ring', + sources: 'ring.cpp', + include_directories: [inc_json, inc_arbpublic, inc_arbenv, inc_arbsup], + link_with: [arb, arbenv, arbsup]) diff --git a/mechanisms/meson.build b/mechanisms/meson.build index 5e90d64e6d..810c64f8ce 100644 --- a/mechanisms/meson.build +++ b/mechanisms/meson.build @@ -1,17 +1,26 @@ -#pas hh expsyn exp2syn test_kin1 test_kinlva test_ca nax kdrmt kamt +mechs = ['pas', 'hh', 'expsyn', 'exp2syn', 'test_kin1', 'test_kinlva', 'test_ca', 'nax', 'kdrmt', 'kamt'] modcc_flags = ['-t', 'cpu'] mech_gen = generator(modcc, output : ['@BASENAME@.hpp', '@BASENAME@_cpu.cpp'], - arguments : ['@INPUT@', '-t', 'cpu', '-o', '@BUILD_DIR@/@BASENAME@']) + arguments : ['@INPUT@', '-o', '@BUILD_DIR@/@BASENAME@']+modcc_flags) + +# Make a list of the mod files packaged with Arbor +modfiles = [] +foreach m: mechs + modfiles += 'mod/'+m+'.mod' +endforeach + +# Generate the header and source files for mechanisms +arb_mechs = mech_gen.process(modfiles) + +# Make the catalog +mech_dir = meson.current_build_dir() + '/generated' +default_catalogue_options = ['-A', 'arbor', '-I', mech_dir, '-B', 'multicore'] + +gen_cat = find_program('generate_default_catalogue') + +mech_catalogue = custom_target('default_catalogue.cpp', + output: 'default_catalogue.cpp', + command : [gen_cat, default_catalogue_options, '-o', '@OUTPUT@']) -arb_mechs = mech_gen.process('mod/pas.mod', - 'mod/hh.mod', - 'mod/expsyn.mod', - 'mod/exp2syn.mod', - 'mod/test_kin1.mod', - 'mod/test_kinlva.mod', - 'mod/test_ca.mod', - 'mod/nax.mod', - 'mod/kdrmt.mod', - 'mod/kamt.mod') diff --git a/meson.build b/meson.build index af0704b726..62112a5711 100644 --- a/meson.build +++ b/meson.build @@ -12,8 +12,12 @@ inc_arbpublic = include_directories('arbor/include') inc_arbenv = include_directories('arborenv/include') inc_arbsup = include_directories('sup/include') +dep_threads = dependency('threads') + subdir('modcc') subdir('mechanisms') subdir('arbor') subdir('arborenv') subdir('sup') + +subdir('example/ring') From f6866fc6931219e56b14ae8665a589cf1bc704fa Mon Sep 17 00:00:00 2001 From: bcumming Date: Thu, 4 Apr 2019 23:26:41 +0200 Subject: [PATCH 03/34] fix mech catalogue --- meson.build | 40 +++++++++++++++++++++++----------------- 1 file changed, 23 insertions(+), 17 deletions(-) diff --git a/meson.build b/meson.build index 62112a5711..3417cc8fff 100644 --- a/meson.build +++ b/meson.build @@ -1,23 +1,29 @@ -project('arbor', 'cpp', - version: '0.2.1dev', - license: 'BSD') +mechs = ['pas', 'hh', 'expsyn', 'exp2syn', 'test_kin1', 'test_kinlva', 'test_ca', 'nax', 'kdrmt', 'kamt'] +modcc_flags = ['-t', 'cpu'] -with_assertions = get_option('arb_assertions') +mech_gen = generator(modcc, + output : ['@BASENAME@.hpp', '@BASENAME@_cpu.cpp'], + arguments : ['@INPUT@', '-o', '@BUILD_DIR@/@BASENAME@']+modcc_flags) -inc_tclap = include_directories('ext/tclap/include') -inc_json = include_directories('ext/json/single_include') +# Make a list of the mod files packaged with Arbor +modfiles = [] +foreach m: mechs + modfiles += 'mod/'+m+'.mod' +endforeach -inc_arbprivate = include_directories('arbor') -inc_arbpublic = include_directories('arbor/include') -inc_arbenv = include_directories('arborenv/include') -inc_arbsup = include_directories('sup/include') +# Generate the header and source files for mechanisms +arb_mechs = mech_gen.process(modfiles) -dep_threads = dependency('threads') +# Make the catalog +# ... todo: we hack the "-I ''" flag, and rely on meson including the path used for the output of mechgen. +# should ensure that all of these go in the mechanisms/generated path +#mech_dir = meson.current_build_dir() + '/generated' +#default_catalogue_options = ['-A', 'arbor', '-I', mech_dir, '-B', 'multicore'] +default_catalogue_options = ['-A', 'arbor', '-I', '', '-B', 'multicore'] -subdir('modcc') -subdir('mechanisms') -subdir('arbor') -subdir('arborenv') -subdir('sup') +gen_cat = find_program('generate_default_catalogue') + +mech_catalogue = custom_target('default_catalogue.cpp', + output: 'default_catalogue.cpp', + command : [gen_cat, default_catalogue_options, mechs, '-o', '@OUTPUT@']) -subdir('example/ring') From 5a362c9a77170ab5dffd75bba0bfd8c67e108e9b Mon Sep 17 00:00:00 2001 From: bcumming Date: Fri, 5 Apr 2019 09:33:46 +0200 Subject: [PATCH 04/34] fix bad commit --- mechanisms/meson.build | 9 ++++++--- meson.build | 40 +++++++++++++++++----------------------- 2 files changed, 23 insertions(+), 26 deletions(-) diff --git a/mechanisms/meson.build b/mechanisms/meson.build index 810c64f8ce..3417cc8fff 100644 --- a/mechanisms/meson.build +++ b/mechanisms/meson.build @@ -15,12 +15,15 @@ endforeach arb_mechs = mech_gen.process(modfiles) # Make the catalog -mech_dir = meson.current_build_dir() + '/generated' -default_catalogue_options = ['-A', 'arbor', '-I', mech_dir, '-B', 'multicore'] +# ... todo: we hack the "-I ''" flag, and rely on meson including the path used for the output of mechgen. +# should ensure that all of these go in the mechanisms/generated path +#mech_dir = meson.current_build_dir() + '/generated' +#default_catalogue_options = ['-A', 'arbor', '-I', mech_dir, '-B', 'multicore'] +default_catalogue_options = ['-A', 'arbor', '-I', '', '-B', 'multicore'] gen_cat = find_program('generate_default_catalogue') mech_catalogue = custom_target('default_catalogue.cpp', output: 'default_catalogue.cpp', - command : [gen_cat, default_catalogue_options, '-o', '@OUTPUT@']) + command : [gen_cat, default_catalogue_options, mechs, '-o', '@OUTPUT@']) diff --git a/meson.build b/meson.build index 3417cc8fff..62112a5711 100644 --- a/meson.build +++ b/meson.build @@ -1,29 +1,23 @@ -mechs = ['pas', 'hh', 'expsyn', 'exp2syn', 'test_kin1', 'test_kinlva', 'test_ca', 'nax', 'kdrmt', 'kamt'] -modcc_flags = ['-t', 'cpu'] +project('arbor', 'cpp', + version: '0.2.1dev', + license: 'BSD') -mech_gen = generator(modcc, - output : ['@BASENAME@.hpp', '@BASENAME@_cpu.cpp'], - arguments : ['@INPUT@', '-o', '@BUILD_DIR@/@BASENAME@']+modcc_flags) +with_assertions = get_option('arb_assertions') -# Make a list of the mod files packaged with Arbor -modfiles = [] -foreach m: mechs - modfiles += 'mod/'+m+'.mod' -endforeach +inc_tclap = include_directories('ext/tclap/include') +inc_json = include_directories('ext/json/single_include') -# Generate the header and source files for mechanisms -arb_mechs = mech_gen.process(modfiles) +inc_arbprivate = include_directories('arbor') +inc_arbpublic = include_directories('arbor/include') +inc_arbenv = include_directories('arborenv/include') +inc_arbsup = include_directories('sup/include') -# Make the catalog -# ... todo: we hack the "-I ''" flag, and rely on meson including the path used for the output of mechgen. -# should ensure that all of these go in the mechanisms/generated path -#mech_dir = meson.current_build_dir() + '/generated' -#default_catalogue_options = ['-A', 'arbor', '-I', mech_dir, '-B', 'multicore'] -default_catalogue_options = ['-A', 'arbor', '-I', '', '-B', 'multicore'] +dep_threads = dependency('threads') -gen_cat = find_program('generate_default_catalogue') - -mech_catalogue = custom_target('default_catalogue.cpp', - output: 'default_catalogue.cpp', - command : [gen_cat, default_catalogue_options, mechs, '-o', '@OUTPUT@']) +subdir('modcc') +subdir('mechanisms') +subdir('arbor') +subdir('arborenv') +subdir('sup') +subdir('example/ring') From d04c905685933bf38d6329282419e1ff909d4f38 Mon Sep 17 00:00:00 2001 From: bcumming Date: Mon, 15 Apr 2019 13:15:35 +0200 Subject: [PATCH 05/34] use custom target to generate mechanism sources --- arbor/meson.build | 2 +- mechanisms/meson.build | 15 +++++---------- 2 files changed, 6 insertions(+), 11 deletions(-) diff --git a/arbor/meson.build b/arbor/meson.build index f7f164bee0..b74d87542c 100644 --- a/arbor/meson.build +++ b/arbor/meson.build @@ -50,7 +50,7 @@ arb_src = [ subdir('include/arbor') arb = library('arbor', - sources: [arb_src, arb_mechs, mech_catalogue], + sources: [arb_src, mech_srcs, mech_catalogue], include_directories: [inc_arbpublic, inc_arbprivate], dependencies : dep_threads) diff --git a/mechanisms/meson.build b/mechanisms/meson.build index 3417cc8fff..7018a2d621 100644 --- a/mechanisms/meson.build +++ b/mechanisms/meson.build @@ -1,19 +1,14 @@ mechs = ['pas', 'hh', 'expsyn', 'exp2syn', 'test_kin1', 'test_kinlva', 'test_ca', 'nax', 'kdrmt', 'kamt'] modcc_flags = ['-t', 'cpu'] -mech_gen = generator(modcc, - output : ['@BASENAME@.hpp', '@BASENAME@_cpu.cpp'], - arguments : ['@INPUT@', '-o', '@BUILD_DIR@/@BASENAME@']+modcc_flags) - -# Make a list of the mod files packaged with Arbor -modfiles = [] +mech_srcs = [] foreach m: mechs - modfiles += 'mod/'+m+'.mod' + modfile = meson.current_source_dir()+'/mod/'+m+'.mod' + mech_srcs += custom_target(m+'.mod', + output : [m+'.hpp', m+'_cpu.cpp'], + command : [modcc, modfile, '-o', meson.current_build_dir()+'/'+m, modcc_flags]) endforeach -# Generate the header and source files for mechanisms -arb_mechs = mech_gen.process(modfiles) - # Make the catalog # ... todo: we hack the "-I ''" flag, and rely on meson including the path used for the output of mechgen. # should ensure that all of these go in the mechanisms/generated path From e0c1d2854d910c629e184ea18a770b45c6e92ebb Mon Sep 17 00:00:00 2001 From: bcumming Date: Thu, 22 Aug 2019 14:54:16 +0200 Subject: [PATCH 06/34] merge master --- arbor/meson.build | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/arbor/meson.build b/arbor/meson.build index b74d87542c..806a5ce18d 100644 --- a/arbor/meson.build +++ b/arbor/meson.build @@ -5,8 +5,10 @@ arb_src = [ 'backends/multicore/shared_state.cpp', 'backends/multicore/stimulus.cpp', 'communication/dry_run_context.cpp', + 'communication/communicator.cpp', 'benchmark_cell_group.cpp', 'builtin_mechanisms.cpp', + 'cable_cell_param.cpp', 'cell_group_factory.cpp', 'common_types_io.cpp', 'execution_context.cpp', @@ -26,7 +28,9 @@ arb_src = [ 'memory/util.cpp', 'merge_events.cpp', 'simulation.cpp', - 'morphology.cpp', + 'morph/morphology.cpp', + 'morph/sample_tree.cpp', + 'morph/primitives.cpp', 'partition_load_balance.cpp', 'profile/clock.cpp', 'profile/memory_meter.cpp', @@ -47,6 +51,12 @@ arb_src = [ # todo: mpi files # todo: cuda files +# FILES FOR MPI: +# 'communication/mpi.cpp' +# 'communication/mpi_context.cpp' +# 'communication/mpi_error.cpp' + + subdir('include/arbor') arb = library('arbor', From 6bdee6b1f1bafc6282d78d7c17bd06d3391b6b12 Mon Sep 17 00:00:00 2001 From: bcumming Date: Thu, 22 Aug 2019 16:23:41 +0200 Subject: [PATCH 07/34] consistent naming of generators and bench example source code --- example/bench/CMakeLists.txt | 2 +- example/bench/bench.cpp | 171 +++++++++++++++++- example/bench/parameters.hpp | 83 ++++++++- example/bench/readme.md | 2 +- example/generators/CMakeLists.txt | 6 +- .../{event_gen.cpp => generators.cpp} | 0 6 files changed, 251 insertions(+), 13 deletions(-) rename example/generators/{event_gen.cpp => generators.cpp} (100%) diff --git a/example/bench/CMakeLists.txt b/example/bench/CMakeLists.txt index aa23ea36ba..3db3345f39 100644 --- a/example/bench/CMakeLists.txt +++ b/example/bench/CMakeLists.txt @@ -1,4 +1,4 @@ -add_executable(bench EXCLUDE_FROM_ALL bench.cpp recipe.cpp parameters.cpp) +add_executable(bench EXCLUDE_FROM_ALL bench.cpp) add_dependencies(examples bench) target_link_libraries(bench PRIVATE arbor arborenv arbor-sup ext-tclap ext-json) diff --git a/example/bench/bench.cpp b/example/bench/bench.cpp index af985c66a0..bd530d1f61 100644 --- a/example/bench/bench.cpp +++ b/example/bench/bench.cpp @@ -9,6 +9,7 @@ #include #include +#include #include #include #include @@ -23,14 +24,123 @@ #include #include +#include #ifdef ARB_MPI_ENABLED #include #include #endif -#include "parameters.hpp" -#include "recipe.hpp" +struct bench_params { + struct cell_params { + double spike_freq_hz = 10; // Frequency in hz that cell will generate (poisson) spikes. + double realtime_ratio = 0.1; // Integration speed relative to real time, e.g. 10 implies + // that a cell is integrated 10 times slower than real time. + }; + struct network_params { + unsigned fan_in = 5000; // Number of incoming connections on each cell. + double min_delay = 10; // Used as the delay on all connections. + }; + std::string name = "default"; // Name of the model. + unsigned num_cells = 1000; // Number of cells in model. + arb::time_type duration = 100; // Simulation duration in ms. + + cell_params cell; // Cell parameters for all cells in model. + network_params network; // Description of the network. + + // Expected simulation performance properties based on model parameters. + + // Time to finish simulation if only cell overheads are counted. + double expected_advance_time() const { + return cell.realtime_ratio * duration*1e-3 * num_cells; + } + // Total expected number of spikes generated by simulation. + unsigned expected_spikes() const { + return num_cells * duration*1e-3 * cell.spike_freq_hz; + } + // Expected number of spikes generated per min_delay/2 interval. + unsigned expected_spikes_per_interval() const { + return num_cells * network.min_delay*1e-3/2 * cell.spike_freq_hz; + } + // Expected number of post-synaptic events delivered over simulation. + unsigned expected_events() const { + return expected_spikes() * network.fan_in; + } + // Expected number of post-synaptic events delivered per min_delay/2 interval. + unsigned expected_events_per_interval() const { + return expected_spikes_per_interval() * network.fan_in; + } +}; + +bench_params read_options(int argc, char** argv); +std::ostream& operator<<(std::ostream& o, const bench_params& p); + +class bench_recipe: public arb::recipe { + bench_params params_; + +public: + bench_recipe(bench_params p): params_(std::move(p)) {} + + arb::cell_size_type num_cells() const override { + return params_.num_cells; + } + + arb::util::unique_any get_cell_description(arb::cell_gid_type gid) const override { + std::mt19937_64 rng(gid); + arb::benchmark_cell cell; + cell.realtime_ratio = params_.cell.realtime_ratio; + + // The time_sequence of the cell produces the series of time points at + // which it will spike. We use a poisson_schedule with a random sequence + // seeded with the gid. In this way, a cell's random stream depends only + // on its gid, and will hence give reproducable results when run with + // different MPI ranks and threads. + cell.time_sequence = arb::poisson_schedule(1e-3*params_.cell.spike_freq_hz, rng); + return std::move(cell); + } + + arb::cell_kind get_cell_kind(arb::cell_gid_type gid) const override { + return arb::cell_kind::benchmark; + } + + arb::cell_size_type num_targets(arb::cell_gid_type gid) const override { + // Only one target, to which all incoming connections connect. + // This could be parameterized, in which case the connections + // generated in connections_on should end on random cell-local targets. + return 1; + } + + arb::cell_size_type num_sources(arb::cell_gid_type gid) const override { + return 1; + } + + std::vector connections_on(arb::cell_gid_type gid) const override { + const auto n = params_.network.fan_in; + std::vector cons; + cons.reserve(n); + using rng_type = std::mt19937_64; + rng_type rng(gid); + + // Generate n incoming connections on this cell with random sources, where + // the source can't equal gid (i.e. no self-connections). + // We want a random distribution that will uniformly draw values from the + // union of the two ranges: [0, gid-1] AND [gid+1, num_cells-1]. + // To do this, we draw random values in the range [0, num_cells-2], then + // add 1 to values ≥ gid. + + std::uniform_int_distribution dist(0, params_.num_cells-2); + for (unsigned i=0; i=gid) ++src; + // Note: target is {gid, 0}, i.e. the first (and only) target on the cell. + arb::cell_connection con({src, 0}, {gid, 0}, 1.f, params_.network.min_delay); + cons.push_back(con); + } + + return cons; + } +}; namespace profile = arb::profile; @@ -105,3 +215,60 @@ int main(int argc, char** argv) { std::cerr << "exception caught running benchmark miniapp:\n" << e.what() << std::endl; } } + +std::ostream& operator<<(std::ostream& o, const bench_params& p) { + o << "benchmark parameters:\n" + << " name: " << p.name << "\n" + << " num cells: " << p.num_cells << "\n" + << " duration: " << p.duration << " ms\n" + << " fan in: " << p.network.fan_in << " connections/cell\n" + << " min delay: " << p.network.min_delay << " ms\n" + << " spike freq: " << p.cell.spike_freq_hz << " Hz\n" + << " cell overhead: " << p.cell.realtime_ratio << " ms to advance 1 ms\n"; + o << "expected:\n" + << " cell advance: " << p.expected_advance_time() << " s\n" + << " spikes: " << p.expected_spikes() << "\n" + << " events: " << p.expected_events() << "\n" + << " spikes: " << p.expected_spikes_per_interval() << " per interval\n" + << " events: " << p.expected_events_per_interval()/p.num_cells << " per cell per interval"; + return o; +} + +bench_params read_options(int argc, char** argv) { + using sup::param_from_json; + + bench_params params; + if (argc<2) { + std::cout << "Using default parameters.\n"; + return params; + } + if (argc>2) { + throw std::runtime_error("More than command line one option not permitted."); + } + + std::string fname = argv[1]; + std::cout << "Loading parameters from file: " << fname << "\n"; + std::ifstream f(fname); + + if (!f.good()) { + throw std::runtime_error("Unable to open input parameter file: "+fname); + } + + nlohmann::json json; + json << f; + + param_from_json(params.name, "name", json); + param_from_json(params.num_cells, "num-cells", json); + param_from_json(params.duration, "duration", json); + param_from_json(params.network.min_delay, "min-delay", json); + param_from_json(params.network.fan_in, "fan-in", json); + param_from_json(params.cell.realtime_ratio, "realtime-ratio", json); + param_from_json(params.cell.spike_freq_hz, "spike-frequency", json); + + for (auto it=json.begin(); it!=json.end(); ++it) { + std::cout << " Warning: unused input parameter: \"" << it.key() << "\"\n"; + } + std::cout << "\n"; + + return params; +} diff --git a/example/bench/parameters.hpp b/example/bench/parameters.hpp index 9f6fdc9fd8..ad42357e97 100644 --- a/example/bench/parameters.hpp +++ b/example/bench/parameters.hpp @@ -1,8 +1,12 @@ #pragma once -#include +#include +#include +#include #include +#include + #include using arb::time_type; @@ -27,17 +31,84 @@ struct bench_params { // Expected simulation performance properties based on model parameters. // Time to finish simulation if only cell overheads are counted. - double expected_advance_time() const; + double expected_advance_time() const { + return cell.realtime_ratio * duration*1e-3 * num_cells; + } // Total expected number of spikes generated by simulation. - unsigned expected_spikes() const; + unsigned expected_spikes() const { + return num_cells * duration*1e-3 * cell.spike_freq_hz; + } // Expected number of spikes generated per min_delay/2 interval. - unsigned expected_spikes_per_interval() const; + unsigned expected_spikes_per_interval() const { + return num_cells * network.min_delay*1e-3/2 * cell.spike_freq_hz; + } // Expected number of post-synaptic events delivered over simulation. - unsigned expected_events() const; + unsigned expected_events() const { + return expected_spikes() * network.fan_in; + } // Expected number of post-synaptic events delivered per min_delay/2 interval. - unsigned expected_events_per_interval() const; + unsigned expected_events_per_interval() const { + return expected_spikes_per_interval() * network.fan_in; + } }; +std::ostream& operator<<(std::ostream& o, const bench_params& p) { + o << "benchmark parameters:\n" + << " name: " << p.name << "\n" + << " num cells: " << p.num_cells << "\n" + << " duration: " << p.duration << " ms\n" + << " fan in: " << p.network.fan_in << " connections/cell\n" + << " min delay: " << p.network.min_delay << " ms\n" + << " spike freq: " << p.cell.spike_freq_hz << " Hz\n" + << " cell overhead: " << p.cell.realtime_ratio << " ms to advance 1 ms\n"; + o << "expected:\n" + << " cell advance: " << p.expected_advance_time() << " s\n" + << " spikes: " << p.expected_spikes() << "\n" + << " events: " << p.expected_events() << "\n" + << " spikes: " << p.expected_spikes_per_interval() << " per interval\n" + << " events: " << p.expected_events_per_interval()/p.num_cells << " per cell per interval"; + return o; +} + +bench_params read_options(int argc, char** argv) { + using sup::param_from_json; + + bench_params params; + if (argc<2) { + std::cout << "Using default parameters.\n"; + return params; + } + if (argc>2) { + throw std::runtime_error("More than command line one option not permitted."); + } + + std::string fname = argv[1]; + std::cout << "Loading parameters from file: " << fname << "\n"; + std::ifstream f(fname); + + if (!f.good()) { + throw std::runtime_error("Unable to open input parameter file: "+fname); + } + + nlohmann::json json; + json << f; + + param_from_json(params.name, "name", json); + param_from_json(params.num_cells, "num-cells", json); + param_from_json(params.duration, "duration", json); + param_from_json(params.network.min_delay, "min-delay", json); + param_from_json(params.network.fan_in, "fan-in", json); + param_from_json(params.cell.realtime_ratio, "realtime-ratio", json); + param_from_json(params.cell.spike_freq_hz, "spike-frequency", json); + + for (auto it=json.begin(); it!=json.end(); ++it) { + std::cout << " Warning: unused input parameter: \"" << it.key() << "\"\n"; + } + std::cout << "\n"; + + return params; +} + bench_params read_options(int argc, char** argv); std::ostream& operator<<(std::ostream& o, const bench_params& p); diff --git a/example/bench/readme.md b/example/bench/readme.md index c6dbc2f95a..b862132e77 100644 --- a/example/bench/readme.md +++ b/example/bench/readme.md @@ -21,7 +21,7 @@ pattern are varied, without having to tweak parameters on a model that uses The model can be configured using a json configuration file: ``` -./bench.exe params.json +./bench params.json ``` An example parameter file is: diff --git a/example/generators/CMakeLists.txt b/example/generators/CMakeLists.txt index 5b917bade0..7bfaca9f3a 100644 --- a/example/generators/CMakeLists.txt +++ b/example/generators/CMakeLists.txt @@ -1,4 +1,4 @@ -add_executable(event-gen EXCLUDE_FROM_ALL event_gen.cpp) -add_dependencies(examples event-gen) +add_executable(generators EXCLUDE_FROM_ALL generators.cpp) +add_dependencies(examples generators) -target_link_libraries(event-gen PRIVATE arbor arbor-sup ext-json) +target_link_libraries(generators PRIVATE arbor arbor-sup ext-json) diff --git a/example/generators/event_gen.cpp b/example/generators/generators.cpp similarity index 100% rename from example/generators/event_gen.cpp rename to example/generators/generators.cpp From d6c3a1b4d387a68cfd6a14c8534e85785b42ddbb Mon Sep 17 00:00:00 2001 From: bcumming Date: Thu, 22 Aug 2019 16:41:40 +0200 Subject: [PATCH 08/34] uncomplicated brunel --- example/bench/parameters.cpp | 81 ------ example/bench/parameters.hpp | 114 -------- example/bench/recipe.cpp | 72 ----- example/bench/recipe.hpp | 22 -- example/brunel/CMakeLists.txt | 8 +- .../brunel/{brunel_miniapp.cpp => brunel.cpp} | 265 ++++++++++++++++-- example/brunel/io.cpp | 207 -------------- example/brunel/io.hpp | 56 ---- 8 files changed, 247 insertions(+), 578 deletions(-) delete mode 100644 example/bench/parameters.cpp delete mode 100644 example/bench/parameters.hpp delete mode 100644 example/bench/recipe.cpp delete mode 100644 example/bench/recipe.hpp rename example/brunel/{brunel_miniapp.cpp => brunel.cpp} (53%) delete mode 100644 example/brunel/io.cpp delete mode 100644 example/brunel/io.hpp diff --git a/example/bench/parameters.cpp b/example/bench/parameters.cpp deleted file mode 100644 index d2a42621e6..0000000000 --- a/example/bench/parameters.cpp +++ /dev/null @@ -1,81 +0,0 @@ -#include -#include -#include -#include - -#include - -#include "parameters.hpp" - -double bench_params::expected_advance_time() const { - return cell.realtime_ratio * duration*1e-3 * num_cells; -} -unsigned bench_params::expected_spikes() const { - return num_cells * duration*1e-3 * cell.spike_freq_hz; -} -unsigned bench_params::expected_spikes_per_interval() const { - return num_cells * network.min_delay*1e-3/2 * cell.spike_freq_hz; -} -unsigned bench_params::expected_events() const { - return expected_spikes() * network.fan_in; -} -unsigned bench_params::expected_events_per_interval() const { - return expected_spikes_per_interval() * network.fan_in; -} - -std::ostream& operator<<(std::ostream& o, const bench_params& p) { - o << "benchmark parameters:\n" - << " name: " << p.name << "\n" - << " num cells: " << p.num_cells << "\n" - << " duration: " << p.duration << " ms\n" - << " fan in: " << p.network.fan_in << " connections/cell\n" - << " min delay: " << p.network.min_delay << " ms\n" - << " spike freq: " << p.cell.spike_freq_hz << " Hz\n" - << " cell overhead: " << p.cell.realtime_ratio << " ms to advance 1 ms\n"; - o << "expected:\n" - << " cell advance: " << p.expected_advance_time() << " s\n" - << " spikes: " << p.expected_spikes() << "\n" - << " events: " << p.expected_events() << "\n" - << " spikes: " << p.expected_spikes_per_interval() << " per interval\n" - << " events: " << p.expected_events_per_interval()/p.num_cells << " per cell per interval"; - return o; -} - -bench_params read_options(int argc, char** argv) { - using sup::param_from_json; - - bench_params params; - if (argc<2) { - std::cout << "Using default parameters.\n"; - return params; - } - if (argc>2) { - throw std::runtime_error("More than command line one option not permitted."); - } - - std::string fname = argv[1]; - std::cout << "Loading parameters from file: " << fname << "\n"; - std::ifstream f(fname); - - if (!f.good()) { - throw std::runtime_error("Unable to open input parameter file: "+fname); - } - - nlohmann::json json; - json << f; - - param_from_json(params.name, "name", json); - param_from_json(params.num_cells, "num-cells", json); - param_from_json(params.duration, "duration", json); - param_from_json(params.network.min_delay, "min-delay", json); - param_from_json(params.network.fan_in, "fan-in", json); - param_from_json(params.cell.realtime_ratio, "realtime-ratio", json); - param_from_json(params.cell.spike_freq_hz, "spike-frequency", json); - - for (auto it=json.begin(); it!=json.end(); ++it) { - std::cout << " Warning: unused input parameter: \"" << it.key() << "\"\n"; - } - std::cout << "\n"; - - return params; -} diff --git a/example/bench/parameters.hpp b/example/bench/parameters.hpp deleted file mode 100644 index ad42357e97..0000000000 --- a/example/bench/parameters.hpp +++ /dev/null @@ -1,114 +0,0 @@ -#pragma once - -#include -#include -#include -#include - -#include - -#include - -using arb::time_type; - -struct bench_params { - struct cell_params { - double spike_freq_hz = 10; // Frequency in hz that cell will generate (poisson) spikes. - double realtime_ratio = 0.1; // Integration speed relative to real time, e.g. 10 implies - // that a cell is integrated 10 times slower than real time. - }; - struct network_params { - unsigned fan_in = 5000; // Number of incoming connections on each cell. - double min_delay = 10; // Used as the delay on all connections. - }; - std::string name = "default"; // Name of the model. - unsigned num_cells = 1000; // Number of cells in model. - time_type duration = 100; // Simulation duration in ms. - - cell_params cell; // Cell parameters for all cells in model. - network_params network; // Description of the network. - - // Expected simulation performance properties based on model parameters. - - // Time to finish simulation if only cell overheads are counted. - double expected_advance_time() const { - return cell.realtime_ratio * duration*1e-3 * num_cells; - } - // Total expected number of spikes generated by simulation. - unsigned expected_spikes() const { - return num_cells * duration*1e-3 * cell.spike_freq_hz; - } - // Expected number of spikes generated per min_delay/2 interval. - unsigned expected_spikes_per_interval() const { - return num_cells * network.min_delay*1e-3/2 * cell.spike_freq_hz; - } - // Expected number of post-synaptic events delivered over simulation. - unsigned expected_events() const { - return expected_spikes() * network.fan_in; - } - // Expected number of post-synaptic events delivered per min_delay/2 interval. - unsigned expected_events_per_interval() const { - return expected_spikes_per_interval() * network.fan_in; - } -}; - -std::ostream& operator<<(std::ostream& o, const bench_params& p) { - o << "benchmark parameters:\n" - << " name: " << p.name << "\n" - << " num cells: " << p.num_cells << "\n" - << " duration: " << p.duration << " ms\n" - << " fan in: " << p.network.fan_in << " connections/cell\n" - << " min delay: " << p.network.min_delay << " ms\n" - << " spike freq: " << p.cell.spike_freq_hz << " Hz\n" - << " cell overhead: " << p.cell.realtime_ratio << " ms to advance 1 ms\n"; - o << "expected:\n" - << " cell advance: " << p.expected_advance_time() << " s\n" - << " spikes: " << p.expected_spikes() << "\n" - << " events: " << p.expected_events() << "\n" - << " spikes: " << p.expected_spikes_per_interval() << " per interval\n" - << " events: " << p.expected_events_per_interval()/p.num_cells << " per cell per interval"; - return o; -} - -bench_params read_options(int argc, char** argv) { - using sup::param_from_json; - - bench_params params; - if (argc<2) { - std::cout << "Using default parameters.\n"; - return params; - } - if (argc>2) { - throw std::runtime_error("More than command line one option not permitted."); - } - - std::string fname = argv[1]; - std::cout << "Loading parameters from file: " << fname << "\n"; - std::ifstream f(fname); - - if (!f.good()) { - throw std::runtime_error("Unable to open input parameter file: "+fname); - } - - nlohmann::json json; - json << f; - - param_from_json(params.name, "name", json); - param_from_json(params.num_cells, "num-cells", json); - param_from_json(params.duration, "duration", json); - param_from_json(params.network.min_delay, "min-delay", json); - param_from_json(params.network.fan_in, "fan-in", json); - param_from_json(params.cell.realtime_ratio, "realtime-ratio", json); - param_from_json(params.cell.spike_freq_hz, "spike-frequency", json); - - for (auto it=json.begin(); it!=json.end(); ++it) { - std::cout << " Warning: unused input parameter: \"" << it.key() << "\"\n"; - } - std::cout << "\n"; - - return params; -} - -bench_params read_options(int argc, char** argv); - -std::ostream& operator<<(std::ostream& o, const bench_params& p); diff --git a/example/bench/recipe.cpp b/example/bench/recipe.cpp deleted file mode 100644 index aa9c94b8bc..0000000000 --- a/example/bench/recipe.cpp +++ /dev/null @@ -1,72 +0,0 @@ -#include - -#include -#include -#include - -#include "recipe.hpp" - -using arb::cell_gid_type; -using arb::cell_size_type; -using arb::cell_kind; - -cell_size_type bench_recipe::num_cells() const { - return params_.num_cells; -} - -arb::util::unique_any bench_recipe::get_cell_description(cell_gid_type gid) const { - std::mt19937_64 rng(gid); - arb::benchmark_cell cell; - cell.realtime_ratio = params_.cell.realtime_ratio; - - // The time_sequence of the cell produces the series of time points at - // which it will spike. We use a poisson_schedule with a random sequence - // seeded with the gid. In this way, a cell's random stream depends only - // on its gid, and will hence give reproducable results when run with - // different MPI ranks and threads. - cell.time_sequence = arb::poisson_schedule(1e-3*params_.cell.spike_freq_hz, rng); - return std::move(cell); -} - -cell_kind bench_recipe::get_cell_kind(cell_gid_type gid) const { - return cell_kind::benchmark; -} - -std::vector bench_recipe::connections_on(cell_gid_type gid) const { - const auto n = params_.network.fan_in; - std::vector cons; - cons.reserve(n); - using rng_type = std::mt19937_64; - rng_type rng(gid); - - // Generate n incoming connections on this cell with random sources, where - // the source can't equal gid (i.e. no self-connections). - // We want a random distribution that will uniformly draw values from the - // union of the two ranges: [0, gid-1] AND [gid+1, num_cells-1]. - // To do this, we draw random values in the range [0, num_cells-2], then - // add 1 to values ≥ gid. - - std::uniform_int_distribution dist(0, params_.num_cells-2); - for (unsigned i=0; i=gid) ++src; - // Note: target is {gid, 0}, i.e. the first (and only) target on the cell. - arb::cell_connection con({src, 0}, {gid, 0}, 1.f, params_.network.min_delay); - cons.push_back(con); - } - - return cons; -} - -cell_size_type bench_recipe::num_targets(cell_gid_type gid) const { - // Only one target, to which all incoming connections connect. - // This could be parameterized, in which case the connections - // generated in connections_on should end on random cell-local targets. - return 1; -} - -// one spike source per cell -cell_size_type bench_recipe::num_sources(cell_gid_type gid) const { - return 1; -} diff --git a/example/bench/recipe.hpp b/example/bench/recipe.hpp deleted file mode 100644 index e95f607704..0000000000 --- a/example/bench/recipe.hpp +++ /dev/null @@ -1,22 +0,0 @@ -#pragma once - -#include -#include -#include - -#include "parameters.hpp" - -class bench_recipe: public arb::recipe { -private: - bench_params params_; - -public: - bench_recipe(bench_params p): params_(std::move(p)) {} - arb::cell_size_type num_cells() const override; - arb::util::unique_any get_cell_description(arb::cell_gid_type gid) const override; - arb::cell_kind get_cell_kind(arb::cell_gid_type gid) const override; - arb::cell_size_type num_targets(arb::cell_gid_type gid) const override; - arb::cell_size_type num_sources(arb::cell_gid_type gid) const override; - std::vector connections_on(arb::cell_gid_type) const override; -}; - diff --git a/example/brunel/CMakeLists.txt b/example/brunel/CMakeLists.txt index 99b267435b..79b68394b4 100644 --- a/example/brunel/CMakeLists.txt +++ b/example/brunel/CMakeLists.txt @@ -1,6 +1,4 @@ -add_executable(brunel-miniapp EXCLUDE_FROM_ALL - brunel_miniapp.cpp - io.cpp) -add_dependencies(examples brunel-miniapp) +add_executable(brunel EXCLUDE_FROM_ALL brunel.cpp) +add_dependencies(examples brunel) -target_link_libraries(brunel-miniapp PRIVATE arbor arborenv arbor-sup ext-tclap) +target_link_libraries(brunel PRIVATE arbor arborenv arbor-sup ext-tclap) diff --git a/example/brunel/brunel_miniapp.cpp b/example/brunel/brunel.cpp similarity index 53% rename from example/brunel/brunel_miniapp.cpp rename to example/brunel/brunel.cpp index 131f273010..22a49674b7 100644 --- a/example/brunel/brunel_miniapp.cpp +++ b/example/brunel/brunel.cpp @@ -7,6 +7,8 @@ #include #include +#include + #include #include #include @@ -17,6 +19,7 @@ #include #include #include +#include #include #include @@ -32,26 +35,46 @@ #include #endif -#include "io.hpp" - using namespace arb; +// Holds the options for a simulation run. +// Default constructor gives default options. +struct cl_options { + // Cell parameters: + uint32_t nexc = 400; + uint32_t ninh = 100; + uint32_t next = 40; + double syn_per_cell_prop = 0.05; + float weight = 1.2; + float delay = 0.1; + float rel_inh_strength = 1; + double poiss_lambda = 1; + + // Simulation running parameters: + double tfinal = 100.; + double dt = 1; + uint32_t group_size = 10; + uint32_t seed = 42; + + // Parameters for spike output. + bool spike_file_output = false; + + // Turn on/off profiling output for all ranks. + bool profile_only_zero = false; + + // Be more verbose with informational messages. + bool verbose = false; +}; + +std::ostream& operator<<(std::ostream& o, const cl_options& opt); + +cl_options read_options(int argc, char** argv); + void banner(const context& ctx); // Samples m unique values in interval [start, end) - gid. // We exclude gid because we don't want self-loops. -std::vector sample_subset(cell_gid_type gid, cell_gid_type start, cell_gid_type end, unsigned m) { - std::set s; - std::mt19937 gen(gid + 42); - std::uniform_int_distribution dis(start, end - 1); - while (s.size() < m) { - auto val = dis(gen); - if (val != gid) { - s.insert(val); - } - } - return {s.begin(), s.end()}; -} +std::vector sample_subset(cell_gid_type gid, cell_gid_type start, cell_gid_type end, unsigned m); /* A Brunel network consists of nexc excitatory LIF neurons and ninh inhibitory LIF neurons. @@ -214,7 +237,7 @@ int main(int argc, char** argv) { meters.start(context); // read parameters - io::cl_options options = io::read_options(argc, argv); + cl_options options = read_options(argc, argv); std::fstream spike_out; if (options.spike_file_output && root) { @@ -296,16 +319,12 @@ int main(int argc, char** argv) { fid << std::setw(1) << sup::to_json(report) << "\n"; } } - catch (io::usage_error& e) { - // only print usage/startup errors on master + catch (std::exception& e) { + // only print errors on master std::cerr << sup::mask_stream(root); std::cerr << e.what() << "\n"; return 1; } - catch (std::exception& e) { - std::cerr << e.what() << "\n"; - return 2; - } return 0; } @@ -318,3 +337,207 @@ void banner(const context& ctx) { std::cout << " - gpus : " << (arb::has_gpu(ctx)? "yes": "no") << "\n"; std::cout << "==========================================\n"; } + +std::vector sample_subset(cell_gid_type gid, cell_gid_type start, cell_gid_type end, unsigned m) { + std::set s; + std::mt19937 gen(gid + 42); + std::uniform_int_distribution dis(start, end - 1); + while (s.size() < m) { + auto val = dis(gen); + if (val != gid) { + s.insert(val); + } + } + return {s.begin(), s.end()}; +} + +// Let TCLAP understand value arguments that are of an optional type. +namespace TCLAP { + template + struct ArgTraits> { + using ValueCategory = ValueLike; + }; +} // namespace TCLAP + +namespace arb { + namespace util { + // Using static here because we do not want external linkage for this operator. + template + static std::istream& operator>>(std::istream& I, optional& v) { + V u; + if (I >> u) { + v = u; + } + return I; + } + } +} + +// Override annoying parameters listed back-to-front behaviour. +// +// TCLAP argument creation _prepends_ its arguments to the internal +// list (_argList), where standard options --help etc. are already +// pre-inserted. +// +// reorder_arguments() reverses the arguments to restore ordering, +// and moves the standard options to the end. +class CustomCmdLine: public TCLAP::CmdLine { +public: + CustomCmdLine(const std::string &message, const std::string &version = "none"): + TCLAP::CmdLine(message, ' ', version, true) + {} + + void reorder_arguments() { + _argList.reverse(); + for (auto opt: {"help", "version", "ignore_rest"}) { + auto i = std::find_if( + _argList.begin(), _argList.end(), + [&opt](TCLAP::Arg* a) { return a->getName()==opt; }); + + if (i!=_argList.end()) { + auto a = *i; + _argList.erase(i); + _argList.push_back(a); + } + } + } +}; + +// Update an option value from command line argument if set. +template < + typename T, + typename Arg, + typename = std::enable_if_t::value> +> +static void update_option(T& opt, Arg& arg) { + if (arg.isSet()) { + opt = arg.getValue(); + } +} + +// Read options from (optional) json file and command line arguments. +cl_options read_options(int argc, char** argv) { + cl_options options; + + // Parse command line arguments. + try { + cl_options defopts; + + CustomCmdLine cmd("nest brunel miniapp harness", "0.1"); + + TCLAP::ValueArg nexc_arg + ("n", "n-excitatory", "total number of cells in the excitatory population", + false, defopts.nexc, "integer", cmd); + + TCLAP::ValueArg ninh_arg + ("m", "n-inhibitory", "total number of cells in the inhibitory population", + false, defopts.ninh, "integer", cmd); + + TCLAP::ValueArg next_arg + ("e", "n-external", "total number of incoming Poisson (external) connections per cell.", + false, defopts.ninh, "integer", cmd); + + TCLAP::ValueArg syn_prop_arg + ("p", "in-degree-prop", "the proportion of connections both the excitatory and inhibitory populations that each neuron receives", + false, defopts.syn_per_cell_prop, "double", cmd); + + TCLAP::ValueArg weight_arg + ("w", "weight", "the weight of all excitatory connections", + false, defopts.weight, "float", cmd); + + TCLAP::ValueArg delay_arg + ("d", "delay", "the delay of all connections", + false, defopts.delay, "float", cmd); + + TCLAP::ValueArg rel_inh_strength_arg + ("g", "rel-inh-w", "relative strength of inhibitory synapses with respect to the excitatory ones", + false, defopts.rel_inh_strength, "float", cmd); + + TCLAP::ValueArg poiss_lambda_arg + ("l", "lambda", "Expected number of spikes from a single poisson cell per ms", + false, defopts.poiss_lambda, "double", cmd); + + TCLAP::ValueArg tfinal_arg + ("t", "tfinal", "length of the simulation period [ms]", + false, defopts.tfinal, "time", cmd); + + TCLAP::ValueArg dt_arg + ("s", "delta-t", "simulation time step [ms] (this parameter is ignored)", + false, defopts.dt, "time", cmd); + + TCLAP::ValueArg group_size_arg + ("G", "group-size", "number of cells per cell group", + false, defopts.group_size, "integer", cmd); + + TCLAP::ValueArg seed_arg + ("S", "seed", "seed for poisson spike generators", + false, defopts.seed, "integer", cmd); + + TCLAP::SwitchArg spike_output_arg + ("f","spike-file-output","save spikes to file", cmd, false); + + TCLAP::SwitchArg profile_only_zero_arg + ("z", "profile-only-zero", "Only output profile information for rank 0", + cmd, false); + + TCLAP::SwitchArg verbose_arg + ("v", "verbose", "Present more verbose information to stdout", cmd, false); + + cmd.reorder_arguments(); + cmd.parse(argc, argv); + + // Handle verbosity separately from other options: it is not considered part + // of the saved option state. + options.verbose = verbose_arg.getValue(); + update_option(options.nexc, nexc_arg); + update_option(options.ninh, ninh_arg); + update_option(options.next, next_arg); + update_option(options.syn_per_cell_prop, syn_prop_arg); + update_option(options.weight, weight_arg); + update_option(options.delay, delay_arg); + update_option(options.rel_inh_strength, rel_inh_strength_arg); + update_option(options.poiss_lambda, poiss_lambda_arg); + update_option(options.tfinal, tfinal_arg); + update_option(options.dt, dt_arg); + update_option(options.group_size, group_size_arg); + update_option(options.seed, seed_arg); + update_option(options.spike_file_output, spike_output_arg); + update_option(options.profile_only_zero, profile_only_zero_arg); + + if (options.group_size < 1) { + throw std::runtime_error("minimum of one cell per group"); + } + + if (options.rel_inh_strength <= 0 || options.rel_inh_strength > 1) { + throw std::runtime_error("relative strength of inhibitory connections must be in the interval (0, 1]."); + } + } + catch (TCLAP::ArgException& e) { + throw std::runtime_error("error parsing command line argument "+e.argId()+": "+e.error()); + } + + // If verbose output requested, emit option summary. + if (options.verbose) { + std::cout << options << "\n"; + } + + return options; +} + +std::ostream& operator<<(std::ostream& o, const cl_options& options) { + o << "simulation options:\n"; + o << " excitatory cells : " << options.nexc << "\n"; + o << " inhibitory cells : " << options.ninh << "\n"; + o << " Poisson connections per cell : " << options.next << "\n"; + o << " proportion of synapses/cell from each population : " << options.syn_per_cell_prop << "\n"; + o << " weight of excitatory synapses : " << options.weight << "\n"; + o << " relative strength of inhibitory synapses : " << options.rel_inh_strength << "\n"; + o << " delay of all synapses : " << options.delay << "\n"; + o << " expected number of spikes from a single poisson cell per ms: " << options.poiss_lambda << "\n"; + o << "\n"; + o << " simulation time : " << options.tfinal << "\n"; + o << " dt : " << options.dt << "\n"; + o << " group size : " << options.group_size << "\n"; + o << " seed : " << options.seed << "\n"; + return o; +} diff --git a/example/brunel/io.cpp b/example/brunel/io.cpp deleted file mode 100644 index 72b6ca815b..0000000000 --- a/example/brunel/io.cpp +++ /dev/null @@ -1,207 +0,0 @@ -#include -#include -#include -#include -#include -#include -#include -#include - -#include - -#include - -#include "io.hpp" - -// Let TCLAP understand value arguments that are of an optional type. -namespace TCLAP { - template - struct ArgTraits> { - using ValueCategory = ValueLike; - }; -} // namespace TCLAP - -namespace arb { - namespace util { - // Using static here because we do not want external linkage for this operator. - template - static std::istream& operator>>(std::istream& I, optional& v) { - V u; - if (I >> u) { - v = u; - } - return I; - } - } -} - -namespace io { - // Override annoying parameters listed back-to-front behaviour. - // - // TCLAP argument creation _prepends_ its arguments to the internal - // list (_argList), where standard options --help etc. are already - // pre-inserted. - // - // reorder_arguments() reverses the arguments to restore ordering, - // and moves the standard options to the end. - class CustomCmdLine: public TCLAP::CmdLine { - public: - CustomCmdLine(const std::string &message, const std::string &version = "none"): - TCLAP::CmdLine(message, ' ', version, true) - {} - - void reorder_arguments() { - _argList.reverse(); - for (auto opt: {"help", "version", "ignore_rest"}) { - auto i = std::find_if( - _argList.begin(), _argList.end(), - [&opt](TCLAP::Arg* a) { return a->getName()==opt; }); - - if (i!=_argList.end()) { - auto a = *i; - _argList.erase(i); - _argList.push_back(a); - } - } - } - }; - - // Update an option value from command line argument if set. - template < - typename T, - typename Arg, - typename = std::enable_if_t::value> - > - static void update_option(T& opt, Arg& arg) { - if (arg.isSet()) { - opt = arg.getValue(); - } - } - - // Read options from (optional) json file and command line arguments. - cl_options read_options(int argc, char** argv) { - cl_options options; - - // Parse command line arguments. - try { - cl_options defopts; - - CustomCmdLine cmd("nest brunel miniapp harness", "0.1"); - - TCLAP::ValueArg nexc_arg - ("n", "n-excitatory", "total number of cells in the excitatory population", - false, defopts.nexc, "integer", cmd); - - TCLAP::ValueArg ninh_arg - ("m", "n-inhibitory", "total number of cells in the inhibitory population", - false, defopts.ninh, "integer", cmd); - - TCLAP::ValueArg next_arg - ("e", "n-external", "total number of incoming Poisson (external) connections per cell.", - false, defopts.ninh, "integer", cmd); - - TCLAP::ValueArg syn_prop_arg - ("p", "in-degree-prop", "the proportion of connections both the excitatory and inhibitory populations that each neuron receives", - false, defopts.syn_per_cell_prop, "double", cmd); - - TCLAP::ValueArg weight_arg - ("w", "weight", "the weight of all excitatory connections", - false, defopts.weight, "float", cmd); - - TCLAP::ValueArg delay_arg - ("d", "delay", "the delay of all connections", - false, defopts.delay, "float", cmd); - - TCLAP::ValueArg rel_inh_strength_arg - ("g", "rel-inh-w", "relative strength of inhibitory synapses with respect to the excitatory ones", - false, defopts.rel_inh_strength, "float", cmd); - - TCLAP::ValueArg poiss_lambda_arg - ("l", "lambda", "Expected number of spikes from a single poisson cell per ms", - false, defopts.poiss_lambda, "double", cmd); - - TCLAP::ValueArg tfinal_arg - ("t", "tfinal", "length of the simulation period [ms]", - false, defopts.tfinal, "time", cmd); - - TCLAP::ValueArg dt_arg - ("s", "delta-t", "simulation time step [ms] (this parameter is ignored)", - false, defopts.dt, "time", cmd); - - TCLAP::ValueArg group_size_arg - ("G", "group-size", "number of cells per cell group", - false, defopts.group_size, "integer", cmd); - - TCLAP::ValueArg seed_arg - ("S", "seed", "seed for poisson spike generators", - false, defopts.seed, "integer", cmd); - - TCLAP::SwitchArg spike_output_arg - ("f","spike-file-output","save spikes to file", cmd, false); - - TCLAP::SwitchArg profile_only_zero_arg - ("z", "profile-only-zero", "Only output profile information for rank 0", - cmd, false); - - TCLAP::SwitchArg verbose_arg - ("v", "verbose", "Present more verbose information to stdout", cmd, false); - - cmd.reorder_arguments(); - cmd.parse(argc, argv); - - // Handle verbosity separately from other options: it is not considered part - // of the saved option state. - options.verbose = verbose_arg.getValue(); - update_option(options.nexc, nexc_arg); - update_option(options.ninh, ninh_arg); - update_option(options.next, next_arg); - update_option(options.syn_per_cell_prop, syn_prop_arg); - update_option(options.weight, weight_arg); - update_option(options.delay, delay_arg); - update_option(options.rel_inh_strength, rel_inh_strength_arg); - update_option(options.poiss_lambda, poiss_lambda_arg); - update_option(options.tfinal, tfinal_arg); - update_option(options.dt, dt_arg); - update_option(options.group_size, group_size_arg); - update_option(options.seed, seed_arg); - update_option(options.spike_file_output, spike_output_arg); - update_option(options.profile_only_zero, profile_only_zero_arg); - - if (options.group_size < 1) { - throw usage_error("minimum of one cell per group"); - } - - if (options.rel_inh_strength <= 0 || options.rel_inh_strength > 1) { - throw usage_error("relative strength of inhibitory connections must be in the interval (0, 1]."); - } - } - catch (TCLAP::ArgException& e) { - throw usage_error("error parsing command line argument "+e.argId()+": "+e.error()); - } - - // If verbose output requested, emit option summary. - if (options.verbose) { - std::cout << options << "\n"; - } - - return options; - } - - std::ostream& operator<<(std::ostream& o, const cl_options& options) { - o << "simulation options:\n"; - o << " excitatory cells : " << options.nexc << "\n"; - o << " inhibitory cells : " << options.ninh << "\n"; - o << " Poisson connections per cell : " << options.next << "\n"; - o << " proportion of synapses/cell from each population : " << options.syn_per_cell_prop << "\n"; - o << " weight of excitatory synapses : " << options.weight << "\n"; - o << " relative strength of inhibitory synapses : " << options.rel_inh_strength << "\n"; - o << " delay of all synapses : " << options.delay << "\n"; - o << " expected number of spikes from a single poisson cell per ms: " << options.poiss_lambda << "\n"; - o << "\n"; - o << " simulation time : " << options.tfinal << "\n"; - o << " dt : " << options.dt << "\n"; - o << " group size : " << options.group_size << "\n"; - o << " seed : " << options.seed << "\n"; - return o; - } -} // namespace io diff --git a/example/brunel/io.hpp b/example/brunel/io.hpp deleted file mode 100644 index 28c76bdb28..0000000000 --- a/example/brunel/io.hpp +++ /dev/null @@ -1,56 +0,0 @@ -#pragma once - -#include -#include -#include -#include - -#include -#include - -namespace io { - // Holds the options for a simulation run. - // Default constructor gives default options. - struct cl_options { - // Cell parameters: - uint32_t nexc = 400; - uint32_t ninh = 100; - uint32_t next = 40; - double syn_per_cell_prop = 0.05; - float weight = 1.2; - float delay = 0.1; - float rel_inh_strength = 1; - double poiss_lambda = 1; - - // Simulation running parameters: - double tfinal = 100.; - double dt = 1; - uint32_t group_size = 10; - uint32_t seed = 42; - - // Parameters for spike output. - bool spike_file_output = false; - - // Turn on/off profiling output for all ranks. - bool profile_only_zero = false; - - // Be more verbose with informational messages. - bool verbose = false; - }; - - class usage_error: public std::runtime_error { - public: - template - usage_error(S&& whatmsg): std::runtime_error(std::forward(whatmsg)) {} - }; - - class model_description_error: public std::runtime_error { - public: - template - model_description_error(S&& whatmsg): std::runtime_error(std::forward(whatmsg)) {} - }; - - std::ostream& operator<<(std::ostream& o, const cl_options& opt); - - cl_options read_options(int argc, char** argv); -} // namespace io From 3ab44a0e2ed68178459724880e84c6029b825798 Mon Sep 17 00:00:00 2001 From: bcumming Date: Thu, 22 Aug 2019 16:53:22 +0200 Subject: [PATCH 09/34] remove final headers from examples --- example/brunel/readme.md | 2 +- example/dryrun/dryrun.cpp | 71 +++++++++++++++++++++- example/dryrun/parameters.hpp | 81 ------------------------- example/gap_junctions/gap_junctions.cpp | 61 +++++++++++++++++-- example/gap_junctions/parameters.hpp | 65 -------------------- example/ring/parameters.hpp | 81 ------------------------- example/ring/ring.cpp | 76 ++++++++++++++++++++++- 7 files changed, 199 insertions(+), 238 deletions(-) delete mode 100644 example/dryrun/parameters.hpp delete mode 100644 example/gap_junctions/parameters.hpp delete mode 100644 example/ring/parameters.hpp diff --git a/example/brunel/readme.md b/example/brunel/readme.md index 46b7fc52c9..8168b6fe43 100644 --- a/example/brunel/readme.md +++ b/example/brunel/readme.md @@ -31,5 +31,5 @@ The parameters that can be passed as command-line arguments are the following: For example, we could run the miniapp as follows: ``` -./example/brunel_miniapp.exe -n 400 -m 100 -e 20 -p 0.1 -w 1.2 -d 1 -g 0.5 -l 5 -t 100 -s 1 -G 50 -S 123 -f +./brunel -n 400 -m 100 -e 20 -p 0.1 -w 1.2 -d 1 -g 0.5 -l 5 -t 100 -s 1 -G 50 -S 123 -f ``` diff --git a/example/dryrun/dryrun.cpp b/example/dryrun/dryrun.cpp index b9e5619e40..42b4ca7e4e 100644 --- a/example/dryrun/dryrun.cpp +++ b/example/dryrun/dryrun.cpp @@ -24,14 +24,38 @@ #include #include - -#include "parameters.hpp" +#include #ifdef ARB_MPI_ENABLED #include #include #endif +// Parameters used to generate the random cell morphologies. +struct cell_parameters { + // Maximum number of levels in the cell (not including the soma) + unsigned max_depth = 5; + + // The following parameters are described as ranges. + // The first value is at the soma, and the last value is used on the last level. + // Values at levels in between are found by linear interpolation. + std::array branch_probs = {1.0, 0.5}; // Probability of a branch occuring. + std::array compartments = {20, 2}; // Compartment count on a branch. + std::array lengths = {200, 20}; // Length of branch in μm. +}; + +struct run_params { + std::string name = "default"; + bool dry_run = false; + unsigned num_cells_per_rank = 10; + unsigned num_ranks = 1; + double min_delay = 10; + double duration = 100; + cell_parameters cell; +}; + +run_params read_options(int argc, char** argv); + using arb::cell_gid_type; using arb::cell_lid_type; using arb::cell_size_type; @@ -360,3 +384,46 @@ arb::cable_cell branch_cell(arb::cell_gid_type gid, const cell_parameters& param return cell; } +run_params read_options(int argc, char** argv) { + using sup::param_from_json; + + run_params params; + if (argc<2) { + std::cout << "Using default parameters.\n"; + return params; + } + if (argc>2) { + throw std::runtime_error("More than command line one option not permitted."); + } + + std::string fname = argv[1]; + std::cout << "Loading parameters from file: " << fname << "\n"; + std::ifstream f(fname); + + if (!f.good()) { + throw std::runtime_error("Unable to open input parameter file: "+fname); + } + + nlohmann::json json; + json << f; + + param_from_json(params.name, "name", json); + param_from_json(params.dry_run, "dry-run", json); + param_from_json(params.num_cells_per_rank, "num-cells-per-rank", json); + param_from_json(params.num_ranks, "num-ranks", json); + param_from_json(params.duration, "duration", json); + param_from_json(params.min_delay, "min-delay", json); + param_from_json(params.cell.max_depth, "depth", json); + param_from_json(params.cell.branch_probs, "branch-probs", json); + param_from_json(params.cell.compartments, "compartments", json); + param_from_json(params.cell.lengths, "lengths", json); + + if (!json.empty()) { + for (auto it=json.begin(); it!=json.end(); ++it) { + std::cout << " Warning: unused input parameter: \"" << it.key() << "\"\n"; + } + std::cout << "\n"; + } + + return params; +} diff --git a/example/dryrun/parameters.hpp b/example/dryrun/parameters.hpp deleted file mode 100644 index e355fcf879..0000000000 --- a/example/dryrun/parameters.hpp +++ /dev/null @@ -1,81 +0,0 @@ -#include - -#include -#include -#include -#include - -#include - -#include - -// Parameters used to generate the random cell morphologies. -struct cell_parameters { - cell_parameters() = default; - - // Maximum number of levels in the cell (not including the soma) - unsigned max_depth = 5; - - // The following parameters are described as ranges. - // The first value is at the soma, and the last value is used on the last level. - // Values at levels in between are found by linear interpolation. - std::array branch_probs = {1.0, 0.5}; // Probability of a branch occuring. - std::array compartments = {20, 2}; // Compartment count on a branch. - std::array lengths = {200, 20}; // Length of branch in μm. -}; - -struct run_params { - run_params() = default; - - std::string name = "default"; - bool dry_run = false; - unsigned num_cells_per_rank = 10; - unsigned num_ranks = 1; - double min_delay = 10; - double duration = 100; - cell_parameters cell; -}; - -run_params read_options(int argc, char** argv) { - using sup::param_from_json; - - run_params params; - if (argc<2) { - std::cout << "Using default parameters.\n"; - return params; - } - if (argc>2) { - throw std::runtime_error("More than command line one option not permitted."); - } - - std::string fname = argv[1]; - std::cout << "Loading parameters from file: " << fname << "\n"; - std::ifstream f(fname); - - if (!f.good()) { - throw std::runtime_error("Unable to open input parameter file: "+fname); - } - - nlohmann::json json; - json << f; - - param_from_json(params.name, "name", json); - param_from_json(params.dry_run, "dry-run", json); - param_from_json(params.num_cells_per_rank, "num-cells-per-rank", json); - param_from_json(params.num_ranks, "num-ranks", json); - param_from_json(params.duration, "duration", json); - param_from_json(params.min_delay, "min-delay", json); - param_from_json(params.cell.max_depth, "depth", json); - param_from_json(params.cell.branch_probs, "branch-probs", json); - param_from_json(params.cell.compartments, "compartments", json); - param_from_json(params.cell.lengths, "lengths", json); - - if (!json.empty()) { - for (auto it=json.begin(); it!=json.end(); ++it) { - std::cout << " Warning: unused input parameter: \"" << it.key() << "\"\n"; - } - std::cout << "\n"; - } - - return params; -} diff --git a/example/gap_junctions/gap_junctions.cpp b/example/gap_junctions/gap_junctions.cpp index 4a633a779e..807670f9e7 100644 --- a/example/gap_junctions/gap_junctions.cpp +++ b/example/gap_junctions/gap_junctions.cpp @@ -10,6 +10,7 @@ #include #include +#include #include #include #include @@ -26,13 +27,20 @@ #include #include +#include + +struct gap_params { + std::string name = "default"; + unsigned n_cables = 3; + unsigned n_cells_per_cable = 5; + double stim_duration = 30; + double event_min_delay = 10; + double event_weight = 0.05; + double sim_duration = 100; + bool print_all = true; +}; -#include "parameters.hpp" - -#ifdef ARB_MPI_ENABLED -#include -#include -#endif +gap_params read_options(int argc, char** argv); using arb::cell_gid_type; using arb::cell_lid_type; @@ -371,3 +379,44 @@ arb::cable_cell gj_cell(cell_gid_type gid, unsigned ncell, double stim_duration) return cell; } +gap_params read_options(int argc, char** argv) { + using sup::param_from_json; + + gap_params params; + if (argc<2) { + std::cout << "Using default parameters.\n"; + return params; + } + if (argc>2) { + throw std::runtime_error("More than command line one option not permitted."); + } + + std::string fname = argv[1]; + std::cout << "Loading parameters from file: " << fname << "\n"; + std::ifstream f(fname); + + if (!f.good()) { + throw std::runtime_error("Unable to open input parameter file: "+fname); + } + + nlohmann::json json; + json << f; + + param_from_json(params.name, "name", json); + param_from_json(params.n_cables, "n-cables", json); + param_from_json(params.n_cells_per_cable, "n-cells-per-cable", json); + param_from_json(params.stim_duration, "stim-duration", json); + param_from_json(params.event_min_delay, "event-min-delay", json); + param_from_json(params.event_weight, "event-weight", json); + param_from_json(params.sim_duration, "sim-duration", json); + param_from_json(params.print_all, "print-all", json); + + if (!json.empty()) { + for (auto it=json.begin(); it!=json.end(); ++it) { + std::cout << " Warning: unused input parameter: \"" << it.key() << "\"\n"; + } + std::cout << "\n"; + } + + return params; +} diff --git a/example/gap_junctions/parameters.hpp b/example/gap_junctions/parameters.hpp deleted file mode 100644 index f68ddfd26d..0000000000 --- a/example/gap_junctions/parameters.hpp +++ /dev/null @@ -1,65 +0,0 @@ -#include - -#include -#include -#include -#include - -#include - -#include - -struct gap_params { - gap_params() = default; - - std::string name = "default"; - unsigned n_cables = 3; - unsigned n_cells_per_cable = 5; - double stim_duration = 30; - double event_min_delay = 10; - double event_weight = 0.05; - double sim_duration = 100; - bool print_all = true; -}; - -gap_params read_options(int argc, char** argv) { - using sup::param_from_json; - - gap_params params; - if (argc<2) { - std::cout << "Using default parameters.\n"; - return params; - } - if (argc>2) { - throw std::runtime_error("More than command line one option not permitted."); - } - - std::string fname = argv[1]; - std::cout << "Loading parameters from file: " << fname << "\n"; - std::ifstream f(fname); - - if (!f.good()) { - throw std::runtime_error("Unable to open input parameter file: "+fname); - } - - nlohmann::json json; - json << f; - - param_from_json(params.name, "name", json); - param_from_json(params.n_cables, "n-cables", json); - param_from_json(params.n_cells_per_cable, "n-cells-per-cable", json); - param_from_json(params.stim_duration, "stim-duration", json); - param_from_json(params.event_min_delay, "event-min-delay", json); - param_from_json(params.event_weight, "event-weight", json); - param_from_json(params.sim_duration, "sim-duration", json); - param_from_json(params.print_all, "print-all", json); - - if (!json.empty()) { - for (auto it=json.begin(); it!=json.end(); ++it) { - std::cout << " Warning: unused input parameter: \"" << it.key() << "\"\n"; - } - std::cout << "\n"; - } - - return params; -} diff --git a/example/ring/parameters.hpp b/example/ring/parameters.hpp deleted file mode 100644 index 6343cb3c1e..0000000000 --- a/example/ring/parameters.hpp +++ /dev/null @@ -1,81 +0,0 @@ -#include - -#include -#include -#include -#include - -#include - -#include - -// Parameters used to generate the random cell morphologies. -struct cell_parameters { - cell_parameters() = default; - - // Maximum number of levels in the cell (not including the soma) - unsigned max_depth = 5; - - // The following parameters are described as ranges. - // The first value is at the soma, and the last value is used on the last level. - // Values at levels in between are found by linear interpolation. - std::array branch_probs = {1.0, 0.5}; // Probability of a branch occuring. - std::array compartments = {20, 2}; // Compartment count on a branch. - std::array lengths = {200, 20}; // Length of branch in μm. - - // The number of synapses per cell. - unsigned synapses = 1; -}; - -struct ring_params { - ring_params() = default; - - std::string name = "default"; - unsigned num_cells = 10; - double min_delay = 10; - double duration = 100; - cell_parameters cell; -}; - -ring_params read_options(int argc, char** argv) { - using sup::param_from_json; - - ring_params params; - if (argc<2) { - std::cout << "Using default parameters.\n"; - return params; - } - if (argc>2) { - throw std::runtime_error("More than command line one option not permitted."); - } - - std::string fname = argv[1]; - std::cout << "Loading parameters from file: " << fname << "\n"; - std::ifstream f(fname); - - if (!f.good()) { - throw std::runtime_error("Unable to open input parameter file: "+fname); - } - - nlohmann::json json; - json << f; - - param_from_json(params.name, "name", json); - param_from_json(params.num_cells, "num-cells", json); - param_from_json(params.duration, "duration", json); - param_from_json(params.min_delay, "min-delay", json); - param_from_json(params.cell.max_depth, "depth", json); - param_from_json(params.cell.branch_probs, "branch-probs", json); - param_from_json(params.cell.compartments, "compartments", json); - param_from_json(params.cell.lengths, "lengths", json); - param_from_json(params.cell.synapses, "synapses", json); - - if (!json.empty()) { - for (auto it=json.begin(); it!=json.end(); ++it) { - std::cout << " Warning: unused input parameter: \"" << it.key() << "\"\n"; - } - std::cout << "\n"; - } - - return params; -} diff --git a/example/ring/ring.cpp b/example/ring/ring.cpp index 55c4cea2d1..6f4260320f 100644 --- a/example/ring/ring.cpp +++ b/example/ring/ring.cpp @@ -11,6 +11,7 @@ #include #include +#include #include #include #include @@ -26,14 +27,42 @@ #include #include - -#include "parameters.hpp" +#include #ifdef ARB_MPI_ENABLED #include #include #endif +// Parameters used to generate the random cell morphologies. +struct cell_parameters { + cell_parameters() = default; + + // Maximum number of levels in the cell (not including the soma) + unsigned max_depth = 5; + + // The following parameters are described as ranges. + // The first value is at the soma, and the last value is used on the last level. + // Values at levels in between are found by linear interpolation. + std::array branch_probs = {1.0, 0.5}; // Probability of a branch occuring. + std::array compartments = {20, 2}; // Compartment count on a branch. + std::array lengths = {200, 20}; // Length of branch in μm. + + // The number of synapses per cell. + unsigned synapses = 1; +}; + +struct ring_params { + ring_params() = default; + + std::string name = "default"; + unsigned num_cells = 10; + double min_delay = 10; + double duration = 100; + cell_parameters cell; +}; + +ring_params read_options(int argc, char** argv); using arb::cell_gid_type; using arb::cell_lid_type; using arb::cell_size_type; @@ -364,3 +393,46 @@ arb::cable_cell branch_cell(arb::cell_gid_type gid, const cell_parameters& param return cell; } +ring_params read_options(int argc, char** argv) { + using sup::param_from_json; + + ring_params params; + if (argc<2) { + std::cout << "Using default parameters.\n"; + return params; + } + if (argc>2) { + throw std::runtime_error("More than command line one option not permitted."); + } + + std::string fname = argv[1]; + std::cout << "Loading parameters from file: " << fname << "\n"; + std::ifstream f(fname); + + if (!f.good()) { + throw std::runtime_error("Unable to open input parameter file: "+fname); + } + + nlohmann::json json; + json << f; + + param_from_json(params.name, "name", json); + param_from_json(params.num_cells, "num-cells", json); + param_from_json(params.duration, "duration", json); + param_from_json(params.min_delay, "min-delay", json); + param_from_json(params.cell.max_depth, "depth", json); + param_from_json(params.cell.branch_probs, "branch-probs", json); + param_from_json(params.cell.compartments, "compartments", json); + param_from_json(params.cell.lengths, "lengths", json); + param_from_json(params.cell.synapses, "synapses", json); + + if (!json.empty()) { + for (auto it=json.begin(); it!=json.end(); ++it) { + std::cout << " Warning: unused input parameter: \"" << it.key() << "\"\n"; + } + std::cout << "\n"; + } + + return params; +} + From 15b4e34d2f2962b858c4e3711b2e994c7ffb4015 Mon Sep 17 00:00:00 2001 From: bcumming Date: Thu, 22 Aug 2019 17:06:11 +0200 Subject: [PATCH 10/34] example wip --- example/generators/CMakeLists.txt | 4 +-- .../{event_gen.cpp => generators.cpp} | 0 example/meson.build | 31 +++++++++++++++++++ example/single/meson.build | 5 +++ meson.build | 4 ++- meson.todo | 6 ++++ modcc/meson.build | 1 + 7 files changed, 48 insertions(+), 3 deletions(-) rename example/generators/{event_gen.cpp => generators.cpp} (100%) create mode 100644 example/meson.build create mode 100644 example/single/meson.build create mode 100644 meson.todo diff --git a/example/generators/CMakeLists.txt b/example/generators/CMakeLists.txt index 5b917bade0..24a39ac5a8 100644 --- a/example/generators/CMakeLists.txt +++ b/example/generators/CMakeLists.txt @@ -1,4 +1,4 @@ -add_executable(event-gen EXCLUDE_FROM_ALL event_gen.cpp) -add_dependencies(examples event-gen) +add_executable(generators EXCLUDE_FROM_ALL generators.cpp) +add_dependencies(examples generators) target_link_libraries(event-gen PRIVATE arbor arbor-sup ext-json) diff --git a/example/generators/event_gen.cpp b/example/generators/generators.cpp similarity index 100% rename from example/generators/event_gen.cpp rename to example/generators/generators.cpp diff --git a/example/meson.build b/example/meson.build new file mode 100644 index 0000000000..edb2cb8351 --- /dev/null +++ b/example/meson.build @@ -0,0 +1,31 @@ +ring = executable('ring', + sources: 'ring/ring.cpp', + include_directories: [inc_json, inc_arbpublic, inc_arbenv, inc_arbsup], + link_with: [arb, arbenv, arbsup]) + +single = executable('single', + sources: 'single/single.cpp', + include_directories: [inc_json, inc_arbpublic, inc_arbenv, inc_arbsup], + link_with: [arb, arbenv, arbsup]) + +gap_junctions = executable('gap_junctions', + sources: 'gap_junctions/gap_junctions.cpp', + include_directories: [inc_json, inc_arbpublic, inc_arbenv, inc_arbsup], + link_with: [arb, arbenv, arbsup]) + +generators = executable('generators', + sources: 'generators/generators.cpp', + include_directories: [inc_json, inc_arbpublic, inc_arbenv, inc_arbsup], + link_with: [arb, arbenv, arbsup]) + +bench = executable('bench', + sources: 'bench/bench.cpp', + include_directories: [inc_json, inc_arbpublic, inc_arbenv, inc_arbsup], + link_with: [arb, arbenv, arbsup]) + +dryrun = executable('dryrun', + sources: 'dryrun/dryrun.cpp', + include_directories: [inc_json, inc_arbpublic, inc_arbenv, inc_arbsup], + link_with: [arb, arbenv, arbsup]) + + diff --git a/example/single/meson.build b/example/single/meson.build new file mode 100644 index 0000000000..da54126b3f --- /dev/null +++ b/example/single/meson.build @@ -0,0 +1,5 @@ +single = executable('single', + sources: 'single.cpp', + include_directories: [inc_json, inc_arbpublic, inc_arbenv, inc_arbsup], + link_with: [arb, arbenv, arbsup]) + diff --git a/meson.build b/meson.build index 62112a5711..48c0798e5f 100644 --- a/meson.build +++ b/meson.build @@ -20,4 +20,6 @@ subdir('arbor') subdir('arborenv') subdir('sup') -subdir('example/ring') +subdir('example') +#subdir('example/ring') +#subdir('example/single') diff --git a/meson.todo b/meson.todo new file mode 100644 index 0000000000..5d59f3822b --- /dev/null +++ b/meson.todo @@ -0,0 +1,6 @@ +[ ] all examples +[ ] mpi +[ ] cuda +[ ] vectorization +[ ] installation +[ ] compiler-specific flags diff --git a/modcc/meson.build b/modcc/meson.build index b1651c3652..76532e657b 100644 --- a/modcc/meson.build +++ b/modcc/meson.build @@ -6,6 +6,7 @@ modcc_src = [ 'astmanip.cpp', 'functioninliner.cpp', 'kineticrewriter.cpp', 'lexer.cpp', + 'linearrewriter.cpp', 'modcc.cpp', 'module.cpp', 'parser.cpp', From 78b173896439c1d6190a6f810ba3c362f9885668 Mon Sep 17 00:00:00 2001 From: bcumming Date: Fri, 3 Dec 2021 11:34:12 +0100 Subject: [PATCH 11/34] wip --- meson.build | 30 ++++++++++++++++--------- meson.todo | 8 ++----- meson_options.txt | 3 ++- modcc/meson.build | 56 +++++++++++++++++++++++++++-------------------- 4 files changed, 56 insertions(+), 41 deletions(-) diff --git a/meson.build b/meson.build index 48c0798e5f..363ba89f90 100644 --- a/meson.build +++ b/meson.build @@ -1,11 +1,23 @@ project('arbor', 'cpp', - version: '0.2.1dev', + version: '0.5.3-dev', license: 'BSD') -with_assertions = get_option('arb_assertions') +arb_with_assertions = get_option('arb_assertions') +arb_with_bundled_libs = get_option('arb_use_bundled_libs') -inc_tclap = include_directories('ext/tclap/include') -inc_json = include_directories('ext/json/single_include') +# +# find dependencies +# +if arb_with_bundled_libs + libjson = declare_dependency(include_directories: 'ext/json/single_include') + libfmt = declare_dependency(include_directories: 'ext/fmt/include') +else + libjson = dependency('nlohmann_json', required : true) + libfmt = dependency('fmt', required : true) +endif + +random123 = declare_dependency(include_directories: 'ext/random123/include') +tinyopt = declare_dependency(include_directories: 'ext/tinyopt/include') inc_arbprivate = include_directories('arbor') inc_arbpublic = include_directories('arbor/include') @@ -16,10 +28,8 @@ dep_threads = dependency('threads') subdir('modcc') subdir('mechanisms') -subdir('arbor') -subdir('arborenv') -subdir('sup') +#subdir('arbor') +#subdir('arborenv') +#subdir('sup') -subdir('example') -#subdir('example/ring') -#subdir('example/single') +#subdir('example') diff --git a/meson.todo b/meson.todo index 5d59f3822b..4684aefc52 100644 --- a/meson.todo +++ b/meson.todo @@ -1,6 +1,2 @@ -[ ] all examples -[ ] mpi -[ ] cuda -[ ] vectorization -[ ] installation -[ ] compiler-specific flags +- make all dependencies like fmt and random123 real dependencies, not just include files +- diff --git a/meson_options.txt b/meson_options.txt index 07e3700797..b0d38265ee 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1 +1,2 @@ -option('arb_assertions', type : 'feature', value : 'disabled') +option('arb_assertions', type : 'boolean', value : false) +option('arb_use_bundled_libs', type : 'boolean', value : false) diff --git a/modcc/meson.build b/modcc/meson.build index 76532e657b..fe92965109 100644 --- a/modcc/meson.build +++ b/modcc/meson.build @@ -1,26 +1,34 @@ -modcc_src = [ 'astmanip.cpp', - 'blocks.cpp', - 'errorvisitor.cpp', - 'expression.cpp', - 'functionexpander.cpp', - 'functioninliner.cpp', - 'kineticrewriter.cpp', - 'lexer.cpp', - 'linearrewriter.cpp', - 'modcc.cpp', - 'module.cpp', - 'parser.cpp', - 'solvers.cpp', - 'symdiff.cpp', - 'symge.cpp', - 'token.cpp', - 'printer/cexpr_emit.cpp', - 'printer/cprinter.cpp', - 'printer/cudaprinter.cpp', - 'printer/infoprinter.cpp', - 'printer/printerutil.cpp', - 'io/prefixbuf.cpp'] +libmodcc_src = [ + 'astmanip.cpp', + 'blocks.cpp', + 'errorvisitor.cpp', + 'expression.cpp', + 'functionexpander.cpp', + 'functioninliner.cpp', + 'lexer.cpp', + 'kineticrewriter.cpp', + 'linearrewriter.cpp', + 'module.cpp', + 'parser.cpp', + 'solvers.cpp', + 'symdiff.cpp', + 'symge.cpp', + 'token.cpp', + 'io/prefixbuf.cpp', + 'printer/cexpr_emit.cpp', + 'printer/cprinter.cpp', + 'printer/marks.cpp', + 'printer/gpuprinter.cpp', + 'printer/infoprinter.cpp', + 'printer/printerutil.cpp'] + +libmodcc = library('modcc', + sources: [libmodcc_src], + dependencies: [libfmt]) + modcc = executable('modcc', - sources: modcc_src, - include_directories: inc_tclap) + sources: ['modcc.cpp', ], + dependencies: tinyopt, + link_with: [libmodcc], + install: true) From 2707943df7c026ba4acd1f32dc4e8321d23d36dc Mon Sep 17 00:00:00 2001 From: bcumming Date: Sun, 5 Dec 2021 23:19:26 +0100 Subject: [PATCH 12/34] version header and libarbor build; still mising default_catalogue --- arbor/include/arbor/meson.build | 54 +++++++++++++++++++---- arbor/include/arbor/version.hpp.in | 34 +++++++++++---- arbor/meson.build | 46 +++++++++++--------- meson.build | 69 +++++++++++++++++++++++------- meson_options.txt | 11 ++++- modcc/meson.build | 4 +- 6 files changed, 161 insertions(+), 57 deletions(-) diff --git a/arbor/include/arbor/meson.build b/arbor/include/arbor/meson.build index 5c72f6afb8..76f9b1eefb 100644 --- a/arbor/include/arbor/meson.build +++ b/arbor/include/arbor/meson.build @@ -1,7 +1,7 @@ # configure headers # todo: find how to install "assert_macro.hpp" assert_macro_path=meson.current_build_dir()+'/assert_macro.hpp' -if with_assertions.enabled() +if arb_with_assertions run_command('cp', 'assert_macro.hpp.enabled', assert_macro_path) else run_command('cp', 'assert_macro.hpp.disabled', assert_macro_path) @@ -10,17 +10,53 @@ endif conf = configuration_data() # todo: get this version number either from VERSION file, or from project options -conf.set('version', '0.2.1-dev') +conf.set('version', arb_version) +conf.set('version_major', arb_version_major) +conf.set('version_minor', arb_version_minor) +conf.set('version_patch', arb_version_patch) +conf.set('version_dev', arb_version_dev) -# todo: external call to git: see arbor/include/git-source-id -gitlog = run_command('../gitlog') -conf.set('gitlog', gitlog.stdout().strip()) - -if with_assertions.enabled() - conf.set('ARB_ASSERTIONS_ENABLED', true) +options = [] +if arb_with_assertions + options += 'ASSERT' +endif +if arb_with_mpi + options += 'MPI' +endif +if arb_with_gpu + options += 'GPU' +endif +if arb_with_neuroml + options += 'NEUROML' +endif +if arb_with_profiling + options += 'PROFILE' endif +if arb_with_vectorize + options += 'VECTORIZE' +endif + +# set all of the #defined values +foreach opt: options + conf.set(f'ARB_@opt@_ENABLED', true) +endforeach +conf.set('ARB_VERSION_MAJOR', arb_version_major) +conf.set('ARB_VERSION_MINOR', arb_version_minor) +conf.set('ARB_VERSION_PATCH', arb_version_patch) +conf.set_quoted('ARB_VERSION_DEV', arb_version_dev) + +gitlog = run_command('../gitlog').stdout().strip() +buildtype = get_option('buildtype') +optionstring = ';'.join(options) +conf.set_quoted('ARB_VERSION', arb_version) +conf.set_quoted('ARB_SOURCE_ID', gitlog) +conf.set_quoted('ARB_ARCH', arb_arch) +conf.set_quoted('ARB_BUILD_CONFIG', buildtype) +build_id = f'@gitlog@;version=@arb_version@;arch=@arb_arch@;config=@buildtype@;@optionstring@' +conf.set_quoted('ARB_FULL_BUILD_ID', build_id) configure_file(input : 'version.hpp.in', output : 'version.hpp', configuration : conf) -# todo: add 'install' and 'install_path' so that version.hpp is installed + +# TODO: add 'install' and 'install_path' so that version.hpp is installed diff --git a/arbor/include/arbor/version.hpp.in b/arbor/include/arbor/version.hpp.in index e5ca37936a..4d2d976688 100644 --- a/arbor/include/arbor/version.hpp.in +++ b/arbor/include/arbor/version.hpp.in @@ -1,14 +1,32 @@ #pragma once -#define ARB_VERSION "@version@" -#define ARB_SOURCE_ID "@gitlog@" - namespace arb { -extern const char version[]; -extern const char source_id[]; +extern const char* source_id; +extern const char* arch; +extern const char* build_config; +extern const char* version; +extern const char* full_build_id; +constexpr int version_major = @version_major@; +constexpr int version_minor = @version_minor@; +constexpr int version_patch = @version_patch@; +extern const char* version_dev; } -#mesondefine ARB_ASSERTIONS_ENABLED +#mesondefine ARB_SOURCE_ID +#mesondefine ARB_FULL_BUILD_ID +#mesondefine ARB_BUILD_CONFIG + +#mesondefine ARB_VERSION +#mesondefine ARB_VERSION_MAJOR +#mesondefine ARB_VERSION_MINOR +#mesondefine ARB_VERSION_PATCH +#mesondefine ARB_VERSION_DEV + +#mesondefine ARB_ARCH + +#mesondefine ARB_VECTORIZE_ENABLED +#mesondefine ARB_ASSERT_ENABLED #mesondefine ARB_MPI_ENABLED -#mesondefine ARB_CUDA_ENABLED -#mesondefine ARB_PROFILING_ENABLED +#mesondefine ARB_GPU_ENABLED +#mesondefine ARB_NEUROML_ENABLED +#mesondefine ARB_PROFILE_ENABLED diff --git a/arbor/meson.build b/arbor/meson.build index 806a5ce18d..4e57c4372d 100644 --- a/arbor/meson.build +++ b/arbor/meson.build @@ -1,16 +1,15 @@ arb_src = [ 'arbexcept.cpp', 'assert.cpp', - 'backends/multicore/mechanism.cpp', 'backends/multicore/shared_state.cpp', - 'backends/multicore/stimulus.cpp', - 'communication/dry_run_context.cpp', 'communication/communicator.cpp', + 'communication/dry_run_context.cpp', 'benchmark_cell_group.cpp', - 'builtin_mechanisms.cpp', + 'cable_cell.cpp', 'cable_cell_param.cpp', 'cell_group_factory.cpp', 'common_types_io.cpp', + 'cv_policy.cpp', 'execution_context.cpp', 'gpu_context.cpp', 'event_binner.cpp', @@ -20,17 +19,26 @@ arb_src = [ 'hardware/power.cpp', 'io/locked_ostream.cpp', 'io/serialize_hex.cpp', + 'label_resolution.cpp', 'lif_cell_group.cpp', - 'cable_cell.cpp', 'mc_cell_group.cpp', 'mechcat.cpp', - 'memory/cuda_wrappers.cpp', + 'mechinfo.cpp', + 'memory/gpu_wrappers.cpp', 'memory/util.cpp', - 'merge_events.cpp', - 'simulation.cpp', + 'morph/embed_pwlin.cpp', + 'morph/label_dict.cpp', + 'morph/locset.cpp', + 'morph/morphexcept.cpp', 'morph/morphology.cpp', - 'morph/sample_tree.cpp', + 'morph/mprovider.cpp', + 'morph/place_pwlin.cpp', 'morph/primitives.cpp', + 'morph/region.cpp', + 'morph/segment_tree.cpp', + 'morph/stitch.cpp', + 'merge_events.cpp', + 'simulation.cpp', 'partition_load_balance.cpp', 'profile/clock.cpp', 'profile/memory_meter.cpp', @@ -40,27 +48,25 @@ arb_src = [ 'schedule.cpp', 'spike_event_io.cpp', 'spike_source_cell_group.cpp', - 'swcio.cpp', + 's_expr.cpp', + 'symmetric_recipe.cpp', 'threading/threading.cpp', 'thread_private_spike_store.cpp', 'tree.cpp', + 'util/dylib.cpp', 'util/hostname.cpp', 'util/unwind.cpp', - 'version.cpp'] + 'version.cpp', + ] # todo: mpi files # todo: cuda files -# FILES FOR MPI: -# 'communication/mpi.cpp' -# 'communication/mpi_context.cpp' -# 'communication/mpi_error.cpp' - - subdir('include/arbor') arb = library('arbor', - sources: [arb_src, mech_srcs, mech_catalogue], - include_directories: [inc_arbpublic, inc_arbprivate], - dependencies : dep_threads) + #sources: [arb_src, mech_srcs, mech_catalogue], + sources: [arb_src], + include_directories: [inc_arb_public, inc_arb_private], + dependencies : [dep_threads, dep_random123, dep_dl]) diff --git a/meson.build b/meson.build index 363ba89f90..5c3e38aeca 100644 --- a/meson.build +++ b/meson.build @@ -1,35 +1,72 @@ project('arbor', 'cpp', version: '0.5.3-dev', + default_options : ['buildtype=release'], license: 'BSD') -arb_with_assertions = get_option('arb_assertions') -arb_with_bundled_libs = get_option('arb_use_bundled_libs') +# Initialize up configurable options +arb_with_assertions = get_option('arb_with_assertions') +arb_with_bundled_libs = get_option('arb_with_bundled_libs') +arb_with_mpi = get_option('arb_with_mpi') +arb_with_gpu = get_option('arb_with_gpu') +arb_with_neuroml = get_option('arb_with_neuroml') +arb_with_profiling = get_option('arb_with_profiling') +arb_with_vectorize = get_option('arb_with_vectorize') +arb_arch = get_option('arb_arch') + +if arb_with_mpi + error('unable to configure mpi') +endif +if arb_with_gpu + error('unable to configure gpu') +endif +if arb_with_neuroml + error('unable to configure neuroml') +endif +if arb_with_vectorize + error('unable to configure vectorization') +endif +if arb_with_profiling + error('unable to configure profiling') +endif + +# Extract version information +arb_version = meson.project_version() +arb_version_array = arb_version.split('-') +if arb_version_array.length()==2 + arb_version_dev = 'dev' +else + arb_version_dev = '' +endif +arb_version_array = arb_version_array[0].split('.') +arb_version_major = arb_version_array[0].to_int() +arb_version_minor = arb_version_array[1].to_int() +arb_version_patch = arb_version_array[2].to_int() + +message('version', arb_version_major, arb_version_minor, arb_version_patch) -# # find dependencies -# if arb_with_bundled_libs - libjson = declare_dependency(include_directories: 'ext/json/single_include') - libfmt = declare_dependency(include_directories: 'ext/fmt/include') + dep_libjson = declare_dependency(include_directories: 'ext/json/single_include') + dep_libfmt = declare_dependency(include_directories: 'ext/fmt/include') else - libjson = dependency('nlohmann_json', required : true) - libfmt = dependency('fmt', required : true) + dep_libjson = dependency('nlohmann_json', required : true) + dep_libfmt = dependency('fmt', required : true) endif -random123 = declare_dependency(include_directories: 'ext/random123/include') -tinyopt = declare_dependency(include_directories: 'ext/tinyopt/include') +dep_random123 = declare_dependency(include_directories: 'ext/random123/include') +dep_tinyopt = declare_dependency(include_directories: 'ext/tinyopt/include') -inc_arbprivate = include_directories('arbor') -inc_arbpublic = include_directories('arbor/include') -inc_arbenv = include_directories('arborenv/include') -inc_arbsup = include_directories('sup/include') +inc_arb_private = include_directories('arbor') +inc_arb_public = include_directories('arbor/include') dep_threads = dependency('threads') +dep_dl = meson.get_compiler('cpp').find_library('dl', required : true) subdir('modcc') -subdir('mechanisms') -#subdir('arbor') +subdir('arbor') +#subdir('mechanisms') #subdir('arborenv') +#subdir('arborio) #subdir('sup') #subdir('example') diff --git a/meson_options.txt b/meson_options.txt index b0d38265ee..c2721bbd27 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1,2 +1,9 @@ -option('arb_assertions', type : 'boolean', value : false) -option('arb_use_bundled_libs', type : 'boolean', value : false) +option('arb_with_assertions', type: 'boolean', value: false) +option('arb_with_bundled_libs', type: 'boolean', value: false) +option('arb_with_mpi', type: 'boolean', value: false) +option('arb_with_gpu', type: 'boolean', value: false) +option('arb_with_neuroml', type: 'boolean', value: false) +option('arb_with_profiling', type: 'boolean', value: false) +option('arb_with_vectorize', type: 'boolean', value: false) + +option('arb_arch', type: 'string', value: 'native') diff --git a/modcc/meson.build b/modcc/meson.build index fe92965109..9aac961558 100644 --- a/modcc/meson.build +++ b/modcc/meson.build @@ -24,11 +24,11 @@ libmodcc_src = [ libmodcc = library('modcc', sources: [libmodcc_src], - dependencies: [libfmt]) + dependencies: [dep_libfmt]) modcc = executable('modcc', sources: ['modcc.cpp', ], - dependencies: tinyopt, + dependencies: dep_tinyopt, link_with: [libmodcc], install: true) From 29450bc52f860663ac13de15fd2d0fac4963c243 Mon Sep 17 00:00:00 2001 From: bcumming Date: Mon, 6 Dec 2021 09:10:35 +0100 Subject: [PATCH 13/34] default catalogue builds and links --- arbor/meson.build | 2 +- mechanisms/meson.build | 11 ++++++----- meson.build | 2 +- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/arbor/meson.build b/arbor/meson.build index 4e57c4372d..53668e1fc1 100644 --- a/arbor/meson.build +++ b/arbor/meson.build @@ -66,7 +66,7 @@ subdir('include/arbor') arb = library('arbor', #sources: [arb_src, mech_srcs, mech_catalogue], - sources: [arb_src], + sources: [arb_src, mech_srcs], include_directories: [inc_arb_public, inc_arb_private], dependencies : [dep_threads, dep_random123, dep_dl]) diff --git a/mechanisms/meson.build b/mechanisms/meson.build index 7018a2d621..ed58aaf099 100644 --- a/mechanisms/meson.build +++ b/mechanisms/meson.build @@ -1,12 +1,12 @@ -mechs = ['pas', 'hh', 'expsyn', 'exp2syn', 'test_kin1', 'test_kinlva', 'test_ca', 'nax', 'kdrmt', 'kamt'] +mechs = ['exp2syn', 'expsyn', 'expsyn_stdp', 'gj', 'hh', 'kamt', 'kdrmt', 'nax', 'nernst', 'pas'] modcc_flags = ['-t', 'cpu'] mech_srcs = [] foreach m: mechs - modfile = meson.current_source_dir()+'/mod/'+m+'.mod' + modfile = meson.current_source_dir()+'/default/'+m+'.mod' mech_srcs += custom_target(m+'.mod', output : [m+'.hpp', m+'_cpu.cpp'], - command : [modcc, modfile, '-o', meson.current_build_dir()+'/'+m, modcc_flags]) + command : [modcc, modfile, '-N', 'arb::default_catalogue', '-o', meson.current_build_dir()+'/'+m, modcc_flags]) endforeach # Make the catalog @@ -14,11 +14,12 @@ endforeach # should ensure that all of these go in the mechanisms/generated path #mech_dir = meson.current_build_dir() + '/generated' #default_catalogue_options = ['-A', 'arbor', '-I', mech_dir, '-B', 'multicore'] -default_catalogue_options = ['-A', 'arbor', '-I', '', '-B', 'multicore'] +default_catalogue_options = ['-A', 'arbor', '-I', '', '-B', 'multicore', '-C', 'default', '-N', 'arb::default_catalogue'] -gen_cat = find_program('generate_default_catalogue') +gen_cat = find_program('generate_catalogue') mech_catalogue = custom_target('default_catalogue.cpp', output: 'default_catalogue.cpp', command : [gen_cat, default_catalogue_options, mechs, '-o', '@OUTPUT@']) +mech_srcs += mech_catalogue diff --git a/meson.build b/meson.build index 5c3e38aeca..b8a78b30ee 100644 --- a/meson.build +++ b/meson.build @@ -63,8 +63,8 @@ dep_threads = dependency('threads') dep_dl = meson.get_compiler('cpp').find_library('dl', required : true) subdir('modcc') +subdir('mechanisms') subdir('arbor') -#subdir('mechanisms') #subdir('arborenv') #subdir('arborio) #subdir('sup') From 2bdc7361de1a9beb114e3c7305aa08c02c19658b Mon Sep 17 00:00:00 2001 From: bcumming Date: Mon, 6 Dec 2021 15:45:06 +0100 Subject: [PATCH 14/34] all catalogues build --- arbor/meson.build | 2 +- mechanisms/allen/meson.build | 17 +++++++++++++++++ mechanisms/bbp/meson.build | 17 +++++++++++++++++ mechanisms/default/meson.build | 17 +++++++++++++++++ mechanisms/meson.build | 28 ++++++---------------------- 5 files changed, 58 insertions(+), 23 deletions(-) create mode 100644 mechanisms/allen/meson.build create mode 100644 mechanisms/bbp/meson.build create mode 100644 mechanisms/default/meson.build diff --git a/arbor/meson.build b/arbor/meson.build index 53668e1fc1..4605e8f638 100644 --- a/arbor/meson.build +++ b/arbor/meson.build @@ -66,7 +66,7 @@ subdir('include/arbor') arb = library('arbor', #sources: [arb_src, mech_srcs, mech_catalogue], - sources: [arb_src, mech_srcs], + sources: [arb_src, catalogue_sources], include_directories: [inc_arb_public, inc_arb_private], dependencies : [dep_threads, dep_random123, dep_dl]) diff --git a/mechanisms/allen/meson.build b/mechanisms/allen/meson.build new file mode 100644 index 0000000000..f7cab9eb09 --- /dev/null +++ b/mechanisms/allen/meson.build @@ -0,0 +1,17 @@ +name = 'allen' +mechs = ['CaDynamics', 'Ca_HVA', 'Ca_LVA', 'Ih', 'Im', 'Im_v2', 'Kd', 'K_P', 'K_T', 'Kv2like', 'Kv3_1', 'Nap', 'NaTa', 'NaTs', 'NaV', 'SK'] + +mech_srcs = [] +foreach m: mechs + modfile = meson.current_source_dir()+f'/@m@.mod' + mech_srcs += custom_target(f'mechanism:@name@:@m@', + output : [f'@m@.hpp', f'@m@_cpu.cpp'], + command : [modcc, modfile, '-N', f'arb::@name@_catalogue', '-o', meson.current_build_dir()+'/'+m, modcc_flags]) +endforeach + +catalogue_source = f'@name@_catalogue.cpp' +mech_catalogue = custom_target(catalogue_source, + output: catalogue_source, + command : [gen_cat, catalogue_options, '-C', name, '-N', f'arb::@name@_catalogue', mechs, '-o', '@OUTPUT@']) + +catalogue_sources += mech_srcs + mech_catalogue diff --git a/mechanisms/bbp/meson.build b/mechanisms/bbp/meson.build new file mode 100644 index 0000000000..cd72c94e39 --- /dev/null +++ b/mechanisms/bbp/meson.build @@ -0,0 +1,17 @@ +name = 'bbp' +mechs = ['CaDynamics_E2', 'Ca_HVA', 'Ca_LVAst', 'Ih', 'Im', 'K_Pst', 'K_Tst', 'Nap_Et2', 'NaTa_t', 'NaTs2_t', 'SK_E2', 'SKv3_1'] + +mech_srcs = [] +foreach m: mechs + modfile = meson.current_source_dir()+f'/@m@.mod' + mech_srcs += custom_target(f'mechanism:@name@:@m@', + output : [f'@m@.hpp', f'@m@_cpu.cpp'], + command : [modcc, modfile, '-N', f'arb::@name@_catalogue', '-o', meson.current_build_dir()+'/'+m, modcc_flags]) +endforeach + +catalogue_source = f'@name@_catalogue.cpp' +mech_catalogue = custom_target(catalogue_source, + output: catalogue_source, + command : [gen_cat, catalogue_options, '-C', name, '-N', f'arb::@name@_catalogue', mechs, '-o', '@OUTPUT@']) + +catalogue_sources += mech_srcs + mech_catalogue diff --git a/mechanisms/default/meson.build b/mechanisms/default/meson.build new file mode 100644 index 0000000000..5520af3643 --- /dev/null +++ b/mechanisms/default/meson.build @@ -0,0 +1,17 @@ +name = 'default' +mechs = ['exp2syn', 'expsyn', 'expsyn_stdp', 'gj', 'hh', 'kamt', 'kdrmt', 'nax', 'nernst', 'pas'] + +mech_srcs = [] +foreach m: mechs + modfile = meson.current_source_dir()+f'/@m@.mod' + mech_srcs += custom_target(f'mechanism:@name@:@m@', + output : [f'@m@.hpp', f'@m@_cpu.cpp'], + command : [modcc, modfile, '-N', f'arb::@name@_catalogue', '-o', meson.current_build_dir()+'/'+m, modcc_flags]) +endforeach + +catalogue_source = f'@name@_catalogue.cpp' +mech_catalogue = custom_target(catalogue_source, + output: catalogue_source, + command : [gen_cat, catalogue_options, '-C', name, '-N', f'arb::@name@_catalogue', mechs, '-o', '@OUTPUT@']) + +catalogue_sources += mech_srcs + mech_catalogue diff --git a/mechanisms/meson.build b/mechanisms/meson.build index ed58aaf099..a2f33b06ac 100644 --- a/mechanisms/meson.build +++ b/mechanisms/meson.build @@ -1,25 +1,9 @@ -mechs = ['exp2syn', 'expsyn', 'expsyn_stdp', 'gj', 'hh', 'kamt', 'kdrmt', 'nax', 'nernst', 'pas'] -modcc_flags = ['-t', 'cpu'] - -mech_srcs = [] -foreach m: mechs - modfile = meson.current_source_dir()+'/default/'+m+'.mod' - mech_srcs += custom_target(m+'.mod', - output : [m+'.hpp', m+'_cpu.cpp'], - command : [modcc, modfile, '-N', 'arb::default_catalogue', '-o', meson.current_build_dir()+'/'+m, modcc_flags]) -endforeach - -# Make the catalog -# ... todo: we hack the "-I ''" flag, and rely on meson including the path used for the output of mechgen. -# should ensure that all of these go in the mechanisms/generated path -#mech_dir = meson.current_build_dir() + '/generated' -#default_catalogue_options = ['-A', 'arbor', '-I', mech_dir, '-B', 'multicore'] -default_catalogue_options = ['-A', 'arbor', '-I', '', '-B', 'multicore', '-C', 'default', '-N', 'arb::default_catalogue'] - gen_cat = find_program('generate_catalogue') +modcc_flags = ['-t', 'cpu'] +catalogue_options = ['-A', 'arbor', '-I', '', '-B', 'multicore'] -mech_catalogue = custom_target('default_catalogue.cpp', - output: 'default_catalogue.cpp', - command : [gen_cat, default_catalogue_options, mechs, '-o', '@OUTPUT@']) +catalogue_sources = [] -mech_srcs += mech_catalogue +subdir('default') +subdir('allen') +subdir('bbp') From d444d92c618a2f7b2b29b613a33125fa4eac5f3f Mon Sep 17 00:00:00 2001 From: bcumming Date: Mon, 6 Dec 2021 22:33:11 +0100 Subject: [PATCH 15/34] examples build --- arbor/meson.build | 11 +++++-- arborenv/meson.build | 26 +++++++++++---- arborio/meson.build | 25 ++++++++++++++ example/bench/meson.build | 4 +++ example/brunel/brunel.cpp | 1 - example/brunel/meson.build | 3 ++ example/dryrun/meson.build | 3 ++ example/gap_junctions/gap_junctions.cpp | 5 ++- example/gap_junctions/meson.build | 4 +++ example/generators/meson.build | 4 +++ example/lfp/meson.build | 3 ++ example/meson.build | 39 ++++++---------------- example/probe-demo/meson.build | 3 ++ example/ring/meson.build | 3 +- example/ring/ring.cpp | 43 ------------------------- example/single/meson.build | 4 +-- mechanisms/allen/meson.build | 3 +- mechanisms/bbp/K_Pst.mod | 1 + mechanisms/bbp/meson.build | 3 +- mechanisms/default/meson.build | 4 ++- mechanisms/meson.build | 3 +- meson.build | 32 +++++++++++------- meson_options.txt | 4 +-- sup/meson.build | 18 ++++++----- 24 files changed, 133 insertions(+), 116 deletions(-) create mode 100644 arborio/meson.build create mode 100644 example/bench/meson.build create mode 100644 example/brunel/meson.build create mode 100644 example/dryrun/meson.build create mode 100644 example/gap_junctions/meson.build create mode 100644 example/generators/meson.build create mode 100644 example/lfp/meson.build create mode 100644 example/probe-demo/meson.build diff --git a/arbor/meson.build b/arbor/meson.build index 4605e8f638..2bfe1eea4d 100644 --- a/arbor/meson.build +++ b/arbor/meson.build @@ -64,9 +64,14 @@ arb_src = [ subdir('include/arbor') -arb = library('arbor', - #sources: [arb_src, mech_srcs, mech_catalogue], +dep_arb_internal = [dep_threads, dep_random123, dep_dl] + +lib_arb = library('arbor', sources: [arb_src, catalogue_sources], include_directories: [inc_arb_public, inc_arb_private], - dependencies : [dep_threads, dep_random123, dep_dl]) + dependencies : dep_arb_internal) +dep_arb = declare_dependency( + include_directories: [inc_arb_public], + link_with: lib_arb, + dependencies: dep_arb_internal) diff --git a/arborenv/meson.build b/arborenv/meson.build index 6af882fe28..0aa75b60f4 100644 --- a/arborenv/meson.build +++ b/arborenv/meson.build @@ -1,8 +1,20 @@ -arbenv_src = ['affinity.cpp', - 'concurrency.cpp', - 'default_gpu.cpp', - 'private_gpu.cpp'] +arborenv_src = [ + 'affinity.cpp', + 'arbenvexcept.cpp', + 'concurrency.cpp', + 'default_env.cpp', + 'read_envvar.cpp'] -arbenv = library('arbenv', - sources: arbenv_src, - include_directories: [inc_arbpublic, inc_arbenv]) +if arb_with_gpu + arborenv_src += ['gpu_uuid.cpp', 'private_gpu.cpp'] +endif + +lib_arborenv = library('arbenv', + sources: arborenv_src, + include_directories: 'include', + dependencies: [dep_arb]) + +dep_arborenv = declare_dependency( + include_directories: ['include'], + link_with: lib_arborenv, + dependencies: []) diff --git a/arborio/meson.build b/arborio/meson.build new file mode 100644 index 0000000000..ed09366163 --- /dev/null +++ b/arborio/meson.build @@ -0,0 +1,25 @@ +arborio_src = [ + 'asc_lexer.cpp', + 'neurolucida.cpp', + 'swcio.cpp', + 'cableio.cpp', + 'cv_policy_parse.cpp', + 'label_parse.cpp'] + +dep_arborio_internal = [] + +if arb_with_neuroml + arborio_src += ['neuroml.cpp', 'nml_parse_morphology.cpp', 'xml.cpp', 'xmlwrap.cpp'] + dep_arborio_internal += [dep_libxml2] +endif + +lib_arborio = library('arborio', + sources: [arborio_src], + include_directories: ['include'], + dependencies : [dep_arb, dep_arborio_internal]) + + +dep_arborio = declare_dependency( + include_directories: ['include'], + link_with: lib_arborio, + dependencies: [dep_libxml2]) diff --git a/example/bench/meson.build b/example/bench/meson.build new file mode 100644 index 0000000000..9741648c92 --- /dev/null +++ b/example/bench/meson.build @@ -0,0 +1,4 @@ +bench = executable('bench', + sources: 'bench.cpp', + dependencies: [dep_arb, dep_arborsup, dep_arborenv]) + diff --git a/example/brunel/brunel.cpp b/example/brunel/brunel.cpp index 1b567f500c..4343e5933e 100644 --- a/example/brunel/brunel.cpp +++ b/example/brunel/brunel.cpp @@ -20,7 +20,6 @@ #include #include #include -#include #include #include diff --git a/example/brunel/meson.build b/example/brunel/meson.build new file mode 100644 index 0000000000..3eae4b984d --- /dev/null +++ b/example/brunel/meson.build @@ -0,0 +1,3 @@ +brunel = executable('brunel', + sources: 'brunel.cpp', + dependencies: [dep_arb, dep_arborsup, dep_arborenv, dep_tinyopt]) diff --git a/example/dryrun/meson.build b/example/dryrun/meson.build new file mode 100644 index 0000000000..5a03576d65 --- /dev/null +++ b/example/dryrun/meson.build @@ -0,0 +1,3 @@ +dryrun = executable('dryrun', + sources: 'dryrun.cpp', + dependencies: [dep_arb, dep_arborio, dep_arborsup, dep_arborenv]) diff --git a/example/gap_junctions/gap_junctions.cpp b/example/gap_junctions/gap_junctions.cpp index abec8da96b..d1ea8f6fd8 100644 --- a/example/gap_junctions/gap_junctions.cpp +++ b/example/gap_junctions/gap_junctions.cpp @@ -34,7 +34,10 @@ using namespace arborio::literals; -gap_params read_options(int argc, char** argv); +#ifdef ARB_MPI_ENABLED +#include +#include +#endif struct gap_params { std::string name = "default"; diff --git a/example/gap_junctions/meson.build b/example/gap_junctions/meson.build new file mode 100644 index 0000000000..f6213116a6 --- /dev/null +++ b/example/gap_junctions/meson.build @@ -0,0 +1,4 @@ +gap_junctions = executable('gap_junctions', + sources: 'gap_junctions.cpp', + dependencies: [dep_arb, dep_arborio, dep_arborsup, dep_arborenv]) + diff --git a/example/generators/meson.build b/example/generators/meson.build new file mode 100644 index 0000000000..492ab466a6 --- /dev/null +++ b/example/generators/meson.build @@ -0,0 +1,4 @@ +generators = executable('generators', + sources: 'generators.cpp', + dependencies: [dep_arb, dep_arborio, dep_arborsup, dep_arborenv]) + diff --git a/example/lfp/meson.build b/example/lfp/meson.build new file mode 100644 index 0000000000..6c84aeceab --- /dev/null +++ b/example/lfp/meson.build @@ -0,0 +1,3 @@ +lfp = executable('lfp', + sources: 'lfp.cpp', + dependencies: [dep_arb, dep_arborio, dep_arborsup, dep_arborenv]) diff --git a/example/meson.build b/example/meson.build index edb2cb8351..3f404ade4d 100644 --- a/example/meson.build +++ b/example/meson.build @@ -1,31 +1,10 @@ -ring = executable('ring', - sources: 'ring/ring.cpp', - include_directories: [inc_json, inc_arbpublic, inc_arbenv, inc_arbsup], - link_with: [arb, arbenv, arbsup]) - -single = executable('single', - sources: 'single/single.cpp', - include_directories: [inc_json, inc_arbpublic, inc_arbenv, inc_arbsup], - link_with: [arb, arbenv, arbsup]) - -gap_junctions = executable('gap_junctions', - sources: 'gap_junctions/gap_junctions.cpp', - include_directories: [inc_json, inc_arbpublic, inc_arbenv, inc_arbsup], - link_with: [arb, arbenv, arbsup]) - -generators = executable('generators', - sources: 'generators/generators.cpp', - include_directories: [inc_json, inc_arbpublic, inc_arbenv, inc_arbsup], - link_with: [arb, arbenv, arbsup]) - -bench = executable('bench', - sources: 'bench/bench.cpp', - include_directories: [inc_json, inc_arbpublic, inc_arbenv, inc_arbsup], - link_with: [arb, arbenv, arbsup]) - -dryrun = executable('dryrun', - sources: 'dryrun/dryrun.cpp', - include_directories: [inc_json, inc_arbpublic, inc_arbenv, inc_arbsup], - link_with: [arb, arbenv, arbsup]) - +subdir('bench') +subdir('brunel') +subdir('dryrun') +subdir('gap_junctions') +subdir('generators') +subdir('lfp') +subdir('probe-demo') +subdir('ring') +subdir('single') diff --git a/example/probe-demo/meson.build b/example/probe-demo/meson.build new file mode 100644 index 0000000000..0c54826e2b --- /dev/null +++ b/example/probe-demo/meson.build @@ -0,0 +1,3 @@ +probes = executable('probe-demo', + sources: 'probe-demo.cpp', + dependencies: [dep_arb, dep_arborsup, dep_arborenv, dep_tinyopt]) diff --git a/example/ring/meson.build b/example/ring/meson.build index 8da6f52c8f..ed94cc97e7 100644 --- a/example/ring/meson.build +++ b/example/ring/meson.build @@ -1,4 +1,3 @@ ring = executable('ring', sources: 'ring.cpp', - include_directories: [inc_json, inc_arbpublic, inc_arbenv, inc_arbsup], - link_with: [arb, arbenv, arbsup]) + dependencies: [dep_arb, dep_arborio, dep_arborsup, dep_arborenv]) diff --git a/example/ring/ring.cpp b/example/ring/ring.cpp index 137c35b200..8e66f2ef2e 100644 --- a/example/ring/ring.cpp +++ b/example/ring/ring.cpp @@ -293,46 +293,3 @@ ring_params read_options(int argc, char** argv) { return params; } -ring_params read_options(int argc, char** argv) { - using sup::param_from_json; - - ring_params params; - if (argc<2) { - std::cout << "Using default parameters.\n"; - return params; - } - if (argc>2) { - throw std::runtime_error("More than command line one option not permitted."); - } - - std::string fname = argv[1]; - std::cout << "Loading parameters from file: " << fname << "\n"; - std::ifstream f(fname); - - if (!f.good()) { - throw std::runtime_error("Unable to open input parameter file: "+fname); - } - - nlohmann::json json; - json << f; - - param_from_json(params.name, "name", json); - param_from_json(params.num_cells, "num-cells", json); - param_from_json(params.duration, "duration", json); - param_from_json(params.min_delay, "min-delay", json); - param_from_json(params.cell.max_depth, "depth", json); - param_from_json(params.cell.branch_probs, "branch-probs", json); - param_from_json(params.cell.compartments, "compartments", json); - param_from_json(params.cell.lengths, "lengths", json); - param_from_json(params.cell.synapses, "synapses", json); - - if (!json.empty()) { - for (auto it=json.begin(); it!=json.end(); ++it) { - std::cout << " Warning: unused input parameter: \"" << it.key() << "\"\n"; - } - std::cout << "\n"; - } - - return params; -} - diff --git a/example/single/meson.build b/example/single/meson.build index da54126b3f..fd8621c9ca 100644 --- a/example/single/meson.build +++ b/example/single/meson.build @@ -1,5 +1,3 @@ single = executable('single', sources: 'single.cpp', - include_directories: [inc_json, inc_arbpublic, inc_arbenv, inc_arbsup], - link_with: [arb, arbenv, arbsup]) - + dependencies: [dep_arb, dep_arborio, dep_arborsup, dep_arborenv, dep_tinyopt]) diff --git a/mechanisms/allen/meson.build b/mechanisms/allen/meson.build index f7cab9eb09..be97baafd1 100644 --- a/mechanisms/allen/meson.build +++ b/mechanisms/allen/meson.build @@ -5,8 +5,9 @@ mech_srcs = [] foreach m: mechs modfile = meson.current_source_dir()+f'/@m@.mod' mech_srcs += custom_target(f'mechanism:@name@:@m@', + input : modfile, output : [f'@m@.hpp', f'@m@_cpu.cpp'], - command : [modcc, modfile, '-N', f'arb::@name@_catalogue', '-o', meson.current_build_dir()+'/'+m, modcc_flags]) + command : [modcc, modfile, '-N', f'arb::@name@_catalogue', '-o', meson.current_build_dir()+'/'+m, arb_modcc_flags]) endforeach catalogue_source = f'@name@_catalogue.cpp' diff --git a/mechanisms/bbp/K_Pst.mod b/mechanisms/bbp/K_Pst.mod index a849755c96..bca5ef7137 100644 --- a/mechanisms/bbp/K_Pst.mod +++ b/mechanisms/bbp/K_Pst.mod @@ -35,6 +35,7 @@ DERIVATIVE states { qt = 2.3^((34-21)/10) mInf = m_inf(v) + mTau = 0 if (v < -60){ mTau = 1.25 + 175.03*exp( (v + 10)*0.026) } else { diff --git a/mechanisms/bbp/meson.build b/mechanisms/bbp/meson.build index cd72c94e39..54c146e9f5 100644 --- a/mechanisms/bbp/meson.build +++ b/mechanisms/bbp/meson.build @@ -5,8 +5,9 @@ mech_srcs = [] foreach m: mechs modfile = meson.current_source_dir()+f'/@m@.mod' mech_srcs += custom_target(f'mechanism:@name@:@m@', + input : modfile, output : [f'@m@.hpp', f'@m@_cpu.cpp'], - command : [modcc, modfile, '-N', f'arb::@name@_catalogue', '-o', meson.current_build_dir()+'/'+m, modcc_flags]) + command : [modcc, modfile, '-N', f'arb::@name@_catalogue', '-o', meson.current_build_dir()+'/'+m, arb_modcc_flags]) endforeach catalogue_source = f'@name@_catalogue.cpp' diff --git a/mechanisms/default/meson.build b/mechanisms/default/meson.build index 5520af3643..042242d56b 100644 --- a/mechanisms/default/meson.build +++ b/mechanisms/default/meson.build @@ -5,8 +5,9 @@ mech_srcs = [] foreach m: mechs modfile = meson.current_source_dir()+f'/@m@.mod' mech_srcs += custom_target(f'mechanism:@name@:@m@', + input : modfile, output : [f'@m@.hpp', f'@m@_cpu.cpp'], - command : [modcc, modfile, '-N', f'arb::@name@_catalogue', '-o', meson.current_build_dir()+'/'+m, modcc_flags]) + command : [modcc, modfile, '-N', f'arb::@name@_catalogue', '-o', meson.current_build_dir()+'/'+m, arb_modcc_flags]) endforeach catalogue_source = f'@name@_catalogue.cpp' @@ -15,3 +16,4 @@ mech_catalogue = custom_target(catalogue_source, command : [gen_cat, catalogue_options, '-C', name, '-N', f'arb::@name@_catalogue', mechs, '-o', '@OUTPUT@']) catalogue_sources += mech_srcs + mech_catalogue + diff --git a/mechanisms/meson.build b/mechanisms/meson.build index a2f33b06ac..dd9125b7f3 100644 --- a/mechanisms/meson.build +++ b/mechanisms/meson.build @@ -1,5 +1,5 @@ gen_cat = find_program('generate_catalogue') -modcc_flags = ['-t', 'cpu'] +arb_modcc_flags += ['-t', 'cpu'] catalogue_options = ['-A', 'arbor', '-I', '', '-B', 'multicore'] catalogue_sources = [] @@ -7,3 +7,4 @@ catalogue_sources = [] subdir('default') subdir('allen') subdir('bbp') + diff --git a/meson.build b/meson.build index b8a78b30ee..b3124b0ef5 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project('arbor', 'cpp', version: '0.5.3-dev', - default_options : ['buildtype=release'], + default_options : ['buildtype=release', 'cpp_std=c++17', 'default_library=both'], license: 'BSD') # Initialize up configurable options @@ -19,12 +19,6 @@ endif if arb_with_gpu error('unable to configure gpu') endif -if arb_with_neuroml - error('unable to configure neuroml') -endif -if arb_with_vectorize - error('unable to configure vectorization') -endif if arb_with_profiling error('unable to configure profiling') endif @@ -42,7 +36,18 @@ arb_version_major = arb_version_array[0].to_int() arb_version_minor = arb_version_array[1].to_int() arb_version_patch = arb_version_array[2].to_int() -message('version', arb_version_major, arb_version_minor, arb_version_patch) +arb_modcc_flags = [] +if arb_with_profiling + arb_modcc_flags += '--profile' +endif +if arb_with_vectorize + arb_modcc_flags += '--simd' +endif + +# the following command can be used to determine whether we are looking for march or mcpu +# see cmake/CompilerOptions.cmake +# g++ --verbose dummy.cpp |& grep ^Target | sed 's/^Target: //' | sed 's/-.*//' +add_global_arguments(f'-march=@arb_arch@', language : 'cpp') # find dependencies if arb_with_bundled_libs @@ -52,6 +57,9 @@ else dep_libjson = dependency('nlohmann_json', required : true) dep_libfmt = dependency('fmt', required : true) endif +if arb_with_neuroml + dep_libxml2 = dependency('libxml2', required: true) +endif dep_random123 = declare_dependency(include_directories: 'ext/random123/include') dep_tinyopt = declare_dependency(include_directories: 'ext/tinyopt/include') @@ -65,8 +73,8 @@ dep_dl = meson.get_compiler('cpp').find_library('dl', required : true) subdir('modcc') subdir('mechanisms') subdir('arbor') -#subdir('arborenv') -#subdir('arborio) -#subdir('sup') +subdir('arborio') +subdir('arborenv') +subdir('sup') -#subdir('example') +subdir('example') diff --git a/meson_options.txt b/meson_options.txt index c2721bbd27..9ddcf7287b 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -2,8 +2,8 @@ option('arb_with_assertions', type: 'boolean', value: false) option('arb_with_bundled_libs', type: 'boolean', value: false) option('arb_with_mpi', type: 'boolean', value: false) option('arb_with_gpu', type: 'boolean', value: false) -option('arb_with_neuroml', type: 'boolean', value: false) +option('arb_with_neuroml', type: 'boolean', value: true) option('arb_with_profiling', type: 'boolean', value: false) -option('arb_with_vectorize', type: 'boolean', value: false) +option('arb_with_vectorize', type: 'boolean', value: true) option('arb_arch', type: 'string', value: 'native') diff --git a/sup/meson.build b/sup/meson.build index ac6abd1b3f..1befad29fc 100644 --- a/sup/meson.build +++ b/sup/meson.build @@ -1,10 +1,12 @@ -arbsup_src = ['glob_basic.cpp', - 'glob_posix.cpp', - 'ioutil.cpp', - 'json_meter.cpp', - 'path.cpp'] +arborsup_src = ['ioutil.cpp', 'json_meter.cpp', 'path.cpp'] -arbsup = library('arbsup', - sources: arbsup_src, - include_directories: [inc_arbpublic, inc_arbsup, inc_json]) +lib_arborsup = library('arbsup', + sources: arborsup_src, + include_directories: ['include'], + dependencies: [dep_arb, dep_libjson]) + +dep_arborsup = declare_dependency( + include_directories: ['include'], + link_with: lib_arborsup, + dependencies: [dep_libjson]) From 4b4eeb3736bfda495f026f34637c965cc0befef0 Mon Sep 17 00:00:00 2001 From: bcumming Date: Wed, 8 Dec 2021 14:11:42 +0100 Subject: [PATCH 16/34] things install; faster builds; pybind11 not quite working --- arbor/include/arbor/meson.build | 126 ++++++++++++++++++-------------- arbor/meson.build | 14 +++- arborenv/include/meson.build | 8 ++ arborenv/meson.build | 5 +- arborio/meson.build | 10 ++- meson.build | 7 +- meson_options.txt | 5 +- modcc/meson.build | 3 +- python/meson.build | 42 +++++++++++ sup/meson.build | 3 +- 10 files changed, 157 insertions(+), 66 deletions(-) create mode 100644 arborenv/include/meson.build create mode 100644 python/meson.build diff --git a/arbor/include/arbor/meson.build b/arbor/include/arbor/meson.build index 76f9b1eefb..9c9c27ffa4 100644 --- a/arbor/include/arbor/meson.build +++ b/arbor/include/arbor/meson.build @@ -1,62 +1,78 @@ -# configure headers -# todo: find how to install "assert_macro.hpp" +# generate the headers: +# * include/arbor/version.hpp +# * include/arbor/assert_macro.hpp + +fs = import('fs') + +# The headers are not regenerated if they already exist, otherwise they would be +# regenerated every time a change is made to any meson.build file in the +# project, which in turn would force all of their dependencies to be rebuilt. +# If a change is made to the meson build description or configuration that +# would generate a different header, the headers must first be deleted. + assert_macro_path=meson.current_build_dir()+'/assert_macro.hpp' -if arb_with_assertions - run_command('cp', 'assert_macro.hpp.enabled', assert_macro_path) -else - run_command('cp', 'assert_macro.hpp.disabled', assert_macro_path) +if not fs.is_file(assert_macro_path) + if arb_with_assertions + run_command('cp', 'assert_macro.hpp.enabled', assert_macro_path) + else + run_command('cp', 'assert_macro.hpp.disabled', assert_macro_path) + endif endif -conf = configuration_data() +version_path=meson.current_build_dir()+'/version.hpp' +if not fs.is_file(version_path) + conf = configuration_data() -# todo: get this version number either from VERSION file, or from project options -conf.set('version', arb_version) -conf.set('version_major', arb_version_major) -conf.set('version_minor', arb_version_minor) -conf.set('version_patch', arb_version_patch) -conf.set('version_dev', arb_version_dev) + # todo: get this version number either from VERSION file, or from project options + conf.set('version', arb_version) + conf.set('version_major', arb_version_major) + conf.set('version_minor', arb_version_minor) + conf.set('version_patch', arb_version_patch) + conf.set('version_dev', arb_version_dev) -options = [] -if arb_with_assertions - options += 'ASSERT' -endif -if arb_with_mpi - options += 'MPI' -endif -if arb_with_gpu - options += 'GPU' -endif -if arb_with_neuroml - options += 'NEUROML' -endif -if arb_with_profiling - options += 'PROFILE' -endif -if arb_with_vectorize - options += 'VECTORIZE' + options = [] + if arb_with_assertions + options += 'ASSERT' + endif + if arb_with_mpi + options += 'MPI' + endif + if arb_with_gpu + options += 'GPU' + endif + if arb_with_neuroml + options += 'NEUROML' + endif + if arb_with_profiling + options += 'PROFILE' + endif + if arb_with_vectorize + options += 'VECTORIZE' + endif + + # set all of the #defined values + foreach opt: options + conf.set(f'ARB_@opt@_ENABLED', true) + endforeach + conf.set('ARB_VERSION_MAJOR', arb_version_major) + conf.set('ARB_VERSION_MINOR', arb_version_minor) + conf.set('ARB_VERSION_PATCH', arb_version_patch) + conf.set_quoted('ARB_VERSION_DEV', arb_version_dev) + + gitlog = run_command('../gitlog').stdout().strip() + buildtype = get_option('buildtype') + optionstring = ';'.join(options) + conf.set_quoted('ARB_VERSION', arb_version) + conf.set_quoted('ARB_SOURCE_ID', gitlog) + conf.set_quoted('ARB_ARCH', arb_arch) + conf.set_quoted('ARB_BUILD_CONFIG', buildtype) + build_id = f'@gitlog@;version=@arb_version@;arch=@arb_arch@;config=@buildtype@;@optionstring@' + conf.set_quoted('ARB_FULL_BUILD_ID', build_id) + + configure_file(input : 'version.hpp.in', + output : 'version.hpp', + configuration : conf) endif -# set all of the #defined values -foreach opt: options - conf.set(f'ARB_@opt@_ENABLED', true) -endforeach -conf.set('ARB_VERSION_MAJOR', arb_version_major) -conf.set('ARB_VERSION_MINOR', arb_version_minor) -conf.set('ARB_VERSION_PATCH', arb_version_patch) -conf.set_quoted('ARB_VERSION_DEV', arb_version_dev) - -gitlog = run_command('../gitlog').stdout().strip() -buildtype = get_option('buildtype') -optionstring = ';'.join(options) -conf.set_quoted('ARB_VERSION', arb_version) -conf.set_quoted('ARB_SOURCE_ID', gitlog) -conf.set_quoted('ARB_ARCH', arb_arch) -conf.set_quoted('ARB_BUILD_CONFIG', buildtype) -build_id = f'@gitlog@;version=@arb_version@;arch=@arb_arch@;config=@buildtype@;@optionstring@' -conf.set_quoted('ARB_FULL_BUILD_ID', build_id) - -configure_file(input : 'version.hpp.in', - output : 'version.hpp', - configuration : conf) - -# TODO: add 'install' and 'install_path' so that version.hpp is installed +install_headers([assert_macro_path, version_path], install_dir: 'arbor') + diff --git a/arbor/meson.build b/arbor/meson.build index 2bfe1eea4d..9231038cbb 100644 --- a/arbor/meson.build +++ b/arbor/meson.build @@ -69,7 +69,19 @@ dep_arb_internal = [dep_threads, dep_random123, dep_dl] lib_arb = library('arbor', sources: [arb_src, catalogue_sources], include_directories: [inc_arb_public, inc_arb_private], - dependencies : dep_arb_internal) + dependencies: dep_arb_internal, + install: true) + +install_subdir( + 'include/arbor', + install_dir: 'include', + exclude_files: [ + 'arb_types.inc', + 'assert_macro.hpp.disabled', + 'assert_macro.hpp.enabled', + 'meson.build', + 'version.hpp.in']) + dep_arb = declare_dependency( include_directories: [inc_arb_public], diff --git a/arborenv/include/meson.build b/arborenv/include/meson.build new file mode 100644 index 0000000000..91b9d474c3 --- /dev/null +++ b/arborenv/include/meson.build @@ -0,0 +1,8 @@ +arborenv_headers = [ + 'arbenvexcept.hpp', + 'concurrency.hpp', + 'default_env.hpp', + 'gpu_env.hpp', + 'with_mpi.hpp', +] +install_headers(arborenv_headers, ) diff --git a/arborenv/meson.build b/arborenv/meson.build index 0aa75b60f4..4ba29fa3ae 100644 --- a/arborenv/meson.build +++ b/arborenv/meson.build @@ -12,7 +12,10 @@ endif lib_arborenv = library('arbenv', sources: arborenv_src, include_directories: 'include', - dependencies: [dep_arb]) + dependencies: [dep_arb], + install: true) + +install_subdir('include/arborenv', install_dir: 'include') dep_arborenv = declare_dependency( include_directories: ['include'], diff --git a/arborio/meson.build b/arborio/meson.build index ed09366163..c588365557 100644 --- a/arborio/meson.build +++ b/arborio/meson.build @@ -14,12 +14,14 @@ if arb_with_neuroml endif lib_arborio = library('arborio', - sources: [arborio_src], - include_directories: ['include'], - dependencies : [dep_arb, dep_arborio_internal]) + sources: arborio_src, + include_directories: 'include', + dependencies : [dep_arb, dep_arborio_internal], + install: true) +install_subdir('include/arborio', install_dir: 'include') dep_arborio = declare_dependency( include_directories: ['include'], link_with: lib_arborio, - dependencies: [dep_libxml2]) + dependencies: dep_arborio_internal) diff --git a/meson.build b/meson.build index b3124b0ef5..a6ad93bb5f 100644 --- a/meson.build +++ b/meson.build @@ -11,6 +11,7 @@ arb_with_gpu = get_option('arb_with_gpu') arb_with_neuroml = get_option('arb_with_neuroml') arb_with_profiling = get_option('arb_with_profiling') arb_with_vectorize = get_option('arb_with_vectorize') +arb_with_python = get_option('arb_with_python') arb_arch = get_option('arb_arch') if arb_with_mpi @@ -47,7 +48,7 @@ endif # the following command can be used to determine whether we are looking for march or mcpu # see cmake/CompilerOptions.cmake # g++ --verbose dummy.cpp |& grep ^Target | sed 's/^Target: //' | sed 's/-.*//' -add_global_arguments(f'-march=@arb_arch@', language : 'cpp') +add_project_arguments(f'-march=@arb_arch@', language : 'cpp') # find dependencies if arb_with_bundled_libs @@ -77,4 +78,8 @@ subdir('arborio') subdir('arborenv') subdir('sup') +if arb_with_python + subdir('python') +endif + subdir('example') diff --git a/meson_options.txt b/meson_options.txt index 9ddcf7287b..09c993f5c6 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -2,8 +2,9 @@ option('arb_with_assertions', type: 'boolean', value: false) option('arb_with_bundled_libs', type: 'boolean', value: false) option('arb_with_mpi', type: 'boolean', value: false) option('arb_with_gpu', type: 'boolean', value: false) -option('arb_with_neuroml', type: 'boolean', value: true) +option('arb_with_neuroml', type: 'boolean', value: false) option('arb_with_profiling', type: 'boolean', value: false) -option('arb_with_vectorize', type: 'boolean', value: true) +option('arb_with_vectorize', type: 'boolean', value: false) +option('arb_with_python', type: 'boolean', value: false) option('arb_arch', type: 'string', value: 'native') diff --git a/modcc/meson.build b/modcc/meson.build index 9aac961558..4f86689c9e 100644 --- a/modcc/meson.build +++ b/modcc/meson.build @@ -24,7 +24,8 @@ libmodcc_src = [ libmodcc = library('modcc', sources: [libmodcc_src], - dependencies: [dep_libfmt]) + dependencies: [dep_libfmt], + install: true) modcc = executable('modcc', diff --git a/python/meson.build b/python/meson.build new file mode 100644 index 0000000000..868d92b4ed --- /dev/null +++ b/python/meson.build @@ -0,0 +1,42 @@ +dep_pybind = dependency('pybind11', version : '>=2.8.1', required : true) + +pyarb_srcs = [ + 'cable_cell_io.cpp', + 'cable_probes.cpp', + 'cells.cpp', + 'config.cpp', + 'context.cpp', + 'domain_decomposition.cpp', + 'error.cpp', + 'event_generator.cpp', + 'identifiers.cpp', + 'mechanism.cpp', + 'morphology.cpp', + 'mpi.cpp', + 'profiler.cpp', + 'pyarb.cpp', + 'recipe.cpp', + 'schedule.cpp', + 'simulation.cpp', + 'single_cell_model.cpp', +] + +pybind11_config = find_program('pybind11-config') +pybind11_config_ret = run_command(pybind11_config, ['--includes']) + +message(pybind11_config_ret.stdout().split('-I')[-1].strip()) +#pybind11 = declare_dependency( + #include_directories: [pybind11_config_ret.stdout().split('-I')[-1].strip()], +#) + +py3_inst = import('python').find_installation('python3') +python3 = dependency('python3') + +pyarb = py3_inst.extension_module('arbor', + sources: pyarb_srcs, + dependencies : [python3, pybind11, dep_arborio, dep_arb], + link_language : 'cpp', + override_options: [ + 'cpp_rtti=true', + ] +) diff --git a/sup/meson.build b/sup/meson.build index 1befad29fc..fa582397c1 100644 --- a/sup/meson.build +++ b/sup/meson.build @@ -3,7 +3,8 @@ arborsup_src = ['ioutil.cpp', 'json_meter.cpp', 'path.cpp'] lib_arborsup = library('arbsup', sources: arborsup_src, include_directories: ['include'], - dependencies: [dep_arb, dep_libjson]) + dependencies: [dep_arb, dep_libjson], + install: true) dep_arborsup = declare_dependency( include_directories: ['include'], From 1d46028bd262c9cfb7ef709604c68639c3ded735 Mon Sep 17 00:00:00 2001 From: bcumming Date: Fri, 10 Dec 2021 08:46:02 +0100 Subject: [PATCH 17/34] improved python build --- python/meson.build | 12 ++---------- python/pyarb.cpp | 2 +- 2 files changed, 3 insertions(+), 11 deletions(-) diff --git a/python/meson.build b/python/meson.build index 868d92b4ed..4b6108c2fa 100644 --- a/python/meson.build +++ b/python/meson.build @@ -1,5 +1,3 @@ -dep_pybind = dependency('pybind11', version : '>=2.8.1', required : true) - pyarb_srcs = [ 'cable_cell_io.cpp', 'cable_probes.cpp', @@ -21,20 +19,14 @@ pyarb_srcs = [ 'single_cell_model.cpp', ] -pybind11_config = find_program('pybind11-config') -pybind11_config_ret = run_command(pybind11_config, ['--includes']) - -message(pybind11_config_ret.stdout().split('-I')[-1].strip()) -#pybind11 = declare_dependency( - #include_directories: [pybind11_config_ret.stdout().split('-I')[-1].strip()], -#) +dep_pybind = dependency('pybind11', version : '>=2.8.1', required : true) py3_inst = import('python').find_installation('python3') python3 = dependency('python3') pyarb = py3_inst.extension_module('arbor', sources: pyarb_srcs, - dependencies : [python3, pybind11, dep_arborio, dep_arb], + dependencies : [python3, dep_pybind, dep_arborio, dep_arb], link_language : 'cpp', override_options: [ 'cpp_rtti=true', diff --git a/python/pyarb.cpp b/python/pyarb.cpp index 85871de6fc..fe7569030e 100644 --- a/python/pyarb.cpp +++ b/python/pyarb.cpp @@ -34,7 +34,7 @@ void register_mpi(pybind11::module& m); } // namespace pyarb -PYBIND11_MODULE(_arbor, m) { +PYBIND11_MODULE(arbor, m) { pyarb::pyarb_global_ptr global_ptr(new pyarb::pyarb_global); // Register NumPy structured datatypes for Arbor structures used in NumPy array outputs. From dbad9a38c11b006737602362895400814e9de213 Mon Sep 17 00:00:00 2001 From: bcumming Date: Tue, 14 Dec 2021 15:14:19 +0100 Subject: [PATCH 18/34] unit tests up and runnig --- arbor/include/arbor/meson.build | 6 +- arbor/include/gitlog | 6 +- arbor/meson.build | 131 ++++++++++-------- arborenv/meson.build | 2 +- example/bench/meson.build | 4 +- example/brunel/meson.build | 4 +- example/dryrun/meson.build | 4 +- example/gap_junctions/meson.build | 5 +- example/generators/meson.build | 4 +- example/lfp/meson.build | 4 +- example/probe-demo/meson.build | 4 +- example/ring/meson.build | 4 +- example/single/meson.build | 4 +- meson.build | 27 +++- python/meson.build | 21 ++- python/pyarb.cpp | 2 +- test/meson.build | 12 ++ test/unit/CMakeLists.txt | 5 +- test/unit/dummy/meson.build | 25 ++++ test/unit/{mod => mechanisms}/ca_linear.mod | 0 .../unit/{mod => mechanisms}/celsius_test.mod | 0 test/unit/{mod => mechanisms}/diam_test.mod | 0 .../{mod => mechanisms}/fixed_ica_current.mod | 0 test/unit/{mod => mechanisms}/gj0.mod | 0 test/unit/{mod => mechanisms}/gj1.mod | 0 .../{mod => mechanisms}/linear_ca_conc.mod | 0 test/unit/mechanisms/meson.build | 52 +++++++ test/unit/{mod => mechanisms}/non_linear.mod | 0 .../{mod => mechanisms}/param_as_state.mod | 0 .../{mod => mechanisms}/point_ica_current.mod | 0 .../{mod => mechanisms}/post_events_syn.mod | 0 .../{mod => mechanisms}/read_cai_init.mod | 0 test/unit/{mod => mechanisms}/read_eX.mod | 0 .../test0_kin_compartment.mod | 0 .../test0_kin_conserve.mod | 0 .../{mod => mechanisms}/test0_kin_diff.mod | 0 .../test0_kin_steadystate.mod | 0 .../test1_kin_compartment.mod | 0 .../test1_kin_conserve.mod | 0 .../{mod => mechanisms}/test1_kin_diff.mod | 0 .../test1_kin_steadystate.mod | 0 .../{mod => mechanisms}/test2_kin_diff.mod | 0 .../{mod => mechanisms}/test3_kin_diff.mod | 0 .../test4_kin_compartment.mod | 0 .../test5_nonlinear_diff.mod | 0 .../test6_nonlinear_diff.mod | 0 test/unit/{mod => mechanisms}/test_ca.mod | 0 .../test_ca_read_valence.mod | 0 .../{mod => mechanisms}/test_cl_valence.mod | 0 test/unit/{mod => mechanisms}/test_kin1.mod | 0 test/unit/{mod => mechanisms}/test_kinlva.mod | 0 .../{mod => mechanisms}/test_linear_init.mod | 0 .../test_linear_init_shuffle.mod | 0 .../{mod => mechanisms}/test_linear_state.mod | 0 test/unit/{mod => mechanisms}/write_Xi_Xo.mod | 0 .../write_cai_breakpoint.mod | 0 test/unit/{mod => mechanisms}/write_eX.mod | 0 .../{mod => mechanisms}/write_multiple_eX.mod | 0 test/unit/meson.build | 124 +++++++++++++++++ test/unit/test_mechcat.cpp | 11 +- 60 files changed, 364 insertions(+), 97 deletions(-) create mode 100644 test/meson.build create mode 100644 test/unit/dummy/meson.build rename test/unit/{mod => mechanisms}/ca_linear.mod (100%) rename test/unit/{mod => mechanisms}/celsius_test.mod (100%) rename test/unit/{mod => mechanisms}/diam_test.mod (100%) rename test/unit/{mod => mechanisms}/fixed_ica_current.mod (100%) rename test/unit/{mod => mechanisms}/gj0.mod (100%) rename test/unit/{mod => mechanisms}/gj1.mod (100%) rename test/unit/{mod => mechanisms}/linear_ca_conc.mod (100%) create mode 100644 test/unit/mechanisms/meson.build rename test/unit/{mod => mechanisms}/non_linear.mod (100%) rename test/unit/{mod => mechanisms}/param_as_state.mod (100%) rename test/unit/{mod => mechanisms}/point_ica_current.mod (100%) rename test/unit/{mod => mechanisms}/post_events_syn.mod (100%) rename test/unit/{mod => mechanisms}/read_cai_init.mod (100%) rename test/unit/{mod => mechanisms}/read_eX.mod (100%) rename test/unit/{mod => mechanisms}/test0_kin_compartment.mod (100%) rename test/unit/{mod => mechanisms}/test0_kin_conserve.mod (100%) rename test/unit/{mod => mechanisms}/test0_kin_diff.mod (100%) rename test/unit/{mod => mechanisms}/test0_kin_steadystate.mod (100%) rename test/unit/{mod => mechanisms}/test1_kin_compartment.mod (100%) rename test/unit/{mod => mechanisms}/test1_kin_conserve.mod (100%) rename test/unit/{mod => mechanisms}/test1_kin_diff.mod (100%) rename test/unit/{mod => mechanisms}/test1_kin_steadystate.mod (100%) rename test/unit/{mod => mechanisms}/test2_kin_diff.mod (100%) rename test/unit/{mod => mechanisms}/test3_kin_diff.mod (100%) rename test/unit/{mod => mechanisms}/test4_kin_compartment.mod (100%) rename test/unit/{mod => mechanisms}/test5_nonlinear_diff.mod (100%) rename test/unit/{mod => mechanisms}/test6_nonlinear_diff.mod (100%) rename test/unit/{mod => mechanisms}/test_ca.mod (100%) rename test/unit/{mod => mechanisms}/test_ca_read_valence.mod (100%) rename test/unit/{mod => mechanisms}/test_cl_valence.mod (100%) rename test/unit/{mod => mechanisms}/test_kin1.mod (100%) rename test/unit/{mod => mechanisms}/test_kinlva.mod (100%) rename test/unit/{mod => mechanisms}/test_linear_init.mod (100%) rename test/unit/{mod => mechanisms}/test_linear_init_shuffle.mod (100%) rename test/unit/{mod => mechanisms}/test_linear_state.mod (100%) rename test/unit/{mod => mechanisms}/write_Xi_Xo.mod (100%) rename test/unit/{mod => mechanisms}/write_cai_breakpoint.mod (100%) rename test/unit/{mod => mechanisms}/write_eX.mod (100%) rename test/unit/{mod => mechanisms}/write_multiple_eX.mod (100%) create mode 100644 test/unit/meson.build diff --git a/arbor/include/arbor/meson.build b/arbor/include/arbor/meson.build index 9c9c27ffa4..3483337e69 100644 --- a/arbor/include/arbor/meson.build +++ b/arbor/include/arbor/meson.build @@ -60,13 +60,13 @@ if not fs.is_file(version_path) conf.set_quoted('ARB_VERSION_DEV', arb_version_dev) gitlog = run_command('../gitlog').stdout().strip() - buildtype = get_option('buildtype') + buildtype = get_option('buildtype').to_upper() optionstring = ';'.join(options) conf.set_quoted('ARB_VERSION', arb_version) conf.set_quoted('ARB_SOURCE_ID', gitlog) conf.set_quoted('ARB_ARCH', arb_arch) conf.set_quoted('ARB_BUILD_CONFIG', buildtype) - build_id = f'@gitlog@;version=@arb_version@;arch=@arb_arch@;config=@buildtype@;@optionstring@' + build_id = f'source_id=@gitlog@;version=@arb_version@;arch=@arb_arch@;config=@buildtype@;@optionstring@' conf.set_quoted('ARB_FULL_BUILD_ID', build_id) configure_file(input : 'version.hpp.in', @@ -74,5 +74,5 @@ if not fs.is_file(version_path) configuration : conf) endif -install_headers([assert_macro_path, version_path], install_dir: 'arbor') +install_headers([assert_macro_path, version_path], install_dir: 'include/arbor') diff --git a/arbor/include/gitlog b/arbor/include/gitlog index 57f6bfd5aa..ea3b67bed2 100644 --- a/arbor/include/gitlog +++ b/arbor/include/gitlog @@ -1,9 +1,9 @@ #!/usr/bin/env bash -if gitlog=$(git log -1 --pretty=format:'%ci %H'); then - git diff --quiet HEAD || gitlog="${gitlog} modified" +if gitlog=$(git log -1 --pretty=format:'%cI %H' 2>/dev/null); then + git diff --quiet HEAD 2>/dev/null || gitlog="${gitlog} modified" else gitlog='unknown commit' fi -echo "$gitlog $FOO" +echo "$gitlog" diff --git a/arbor/meson.build b/arbor/meson.build index 9231038cbb..d12003c474 100644 --- a/arbor/meson.build +++ b/arbor/meson.build @@ -1,63 +1,71 @@ arb_src = [ - 'arbexcept.cpp', - 'assert.cpp', - 'backends/multicore/shared_state.cpp', - 'communication/communicator.cpp', - 'communication/dry_run_context.cpp', - 'benchmark_cell_group.cpp', - 'cable_cell.cpp', - 'cable_cell_param.cpp', - 'cell_group_factory.cpp', - 'common_types_io.cpp', - 'cv_policy.cpp', - 'execution_context.cpp', - 'gpu_context.cpp', - 'event_binner.cpp', - 'fvm_layout.cpp', - 'fvm_lowered_cell_impl.cpp', - 'hardware/memory.cpp', - 'hardware/power.cpp', - 'io/locked_ostream.cpp', - 'io/serialize_hex.cpp', - 'label_resolution.cpp', - 'lif_cell_group.cpp', - 'mc_cell_group.cpp', - 'mechcat.cpp', - 'mechinfo.cpp', - 'memory/gpu_wrappers.cpp', - 'memory/util.cpp', - 'morph/embed_pwlin.cpp', - 'morph/label_dict.cpp', - 'morph/locset.cpp', - 'morph/morphexcept.cpp', - 'morph/morphology.cpp', - 'morph/mprovider.cpp', - 'morph/place_pwlin.cpp', - 'morph/primitives.cpp', - 'morph/region.cpp', - 'morph/segment_tree.cpp', - 'morph/stitch.cpp', - 'merge_events.cpp', - 'simulation.cpp', - 'partition_load_balance.cpp', - 'profile/clock.cpp', - 'profile/memory_meter.cpp', - 'profile/meter_manager.cpp', - 'profile/power_meter.cpp', - 'profile/profiler.cpp', - 'schedule.cpp', - 'spike_event_io.cpp', - 'spike_source_cell_group.cpp', - 's_expr.cpp', - 'symmetric_recipe.cpp', - 'threading/threading.cpp', - 'thread_private_spike_store.cpp', - 'tree.cpp', - 'util/dylib.cpp', - 'util/hostname.cpp', - 'util/unwind.cpp', - 'version.cpp', - ] + 'arbexcept.cpp', + 'assert.cpp', + 'backends/multicore/shared_state.cpp', + 'communication/communicator.cpp', + 'communication/dry_run_context.cpp', + 'benchmark_cell_group.cpp', + 'cable_cell.cpp', + 'cable_cell_param.cpp', + 'cell_group_factory.cpp', + 'common_types_io.cpp', + 'cv_policy.cpp', + 'execution_context.cpp', + 'gpu_context.cpp', + 'event_binner.cpp', + 'fvm_layout.cpp', + 'fvm_lowered_cell_impl.cpp', + 'hardware/memory.cpp', + 'hardware/power.cpp', + 'io/locked_ostream.cpp', + 'io/serialize_hex.cpp', + 'label_resolution.cpp', + 'lif_cell_group.cpp', + 'mc_cell_group.cpp', + 'mechcat.cpp', + 'mechinfo.cpp', + 'memory/gpu_wrappers.cpp', + 'memory/util.cpp', + 'morph/embed_pwlin.cpp', + 'morph/label_dict.cpp', + 'morph/locset.cpp', + 'morph/morphexcept.cpp', + 'morph/morphology.cpp', + 'morph/mprovider.cpp', + 'morph/place_pwlin.cpp', + 'morph/primitives.cpp', + 'morph/region.cpp', + 'morph/segment_tree.cpp', + 'morph/stitch.cpp', + 'merge_events.cpp', + 'simulation.cpp', + 'partition_load_balance.cpp', + 'profile/clock.cpp', + 'profile/memory_meter.cpp', + 'profile/meter_manager.cpp', + 'profile/power_meter.cpp', + 'profile/profiler.cpp', + 'schedule.cpp', + 'spike_event_io.cpp', + 'spike_source_cell_group.cpp', + 's_expr.cpp', + 'symmetric_recipe.cpp', + 'threading/threading.cpp', + 'thread_private_spike_store.cpp', + 'tree.cpp', + 'util/dylib.cpp', + 'util/hostname.cpp', + 'util/unwind.cpp', + 'version.cpp', +] + +if arb_with_mpi + arb_src += [ + 'communication/mpi.cpp', + 'communication/mpi_error.cpp', + 'communication/mpi_context.cpp', + ] +endif # todo: mpi files # todo: cuda files @@ -65,10 +73,14 @@ arb_src = [ subdir('include/arbor') dep_arb_internal = [dep_threads, dep_random123, dep_dl] +if arb_with_mpi + dep_arb_internal += dep_mpi +endif lib_arb = library('arbor', sources: [arb_src, catalogue_sources], include_directories: [inc_arb_public, inc_arb_private], + cpp_args : arb_private_defines, dependencies: dep_arb_internal, install: true) @@ -82,7 +94,6 @@ install_subdir( 'meson.build', 'version.hpp.in']) - dep_arb = declare_dependency( include_directories: [inc_arb_public], link_with: lib_arb, diff --git a/arborenv/meson.build b/arborenv/meson.build index 4ba29fa3ae..d22164c5eb 100644 --- a/arborenv/meson.build +++ b/arborenv/meson.build @@ -9,7 +9,7 @@ if arb_with_gpu arborenv_src += ['gpu_uuid.cpp', 'private_gpu.cpp'] endif -lib_arborenv = library('arbenv', +lib_arborenv = library('arborenv', sources: arborenv_src, include_directories: 'include', dependencies: [dep_arb], diff --git a/example/bench/meson.build b/example/bench/meson.build index 9741648c92..c819d28993 100644 --- a/example/bench/meson.build +++ b/example/bench/meson.build @@ -1,4 +1,6 @@ bench = executable('bench', sources: 'bench.cpp', - dependencies: [dep_arb, dep_arborsup, dep_arborenv]) + dependencies: [dep_arb, dep_arborsup, dep_arborenv], + build_by_default: false, + install: false) diff --git a/example/brunel/meson.build b/example/brunel/meson.build index 3eae4b984d..62211b3b7e 100644 --- a/example/brunel/meson.build +++ b/example/brunel/meson.build @@ -1,3 +1,5 @@ brunel = executable('brunel', sources: 'brunel.cpp', - dependencies: [dep_arb, dep_arborsup, dep_arborenv, dep_tinyopt]) + dependencies: [dep_arb, dep_arborsup, dep_arborenv, dep_tinyopt], + build_by_default: false, + install: false) diff --git a/example/dryrun/meson.build b/example/dryrun/meson.build index 5a03576d65..d0c8ea8b91 100644 --- a/example/dryrun/meson.build +++ b/example/dryrun/meson.build @@ -1,3 +1,5 @@ dryrun = executable('dryrun', sources: 'dryrun.cpp', - dependencies: [dep_arb, dep_arborio, dep_arborsup, dep_arborenv]) + dependencies: [dep_arb, dep_arborio, dep_arborsup, dep_arborenv], + build_by_default: false, + install: false) diff --git a/example/gap_junctions/meson.build b/example/gap_junctions/meson.build index f6213116a6..230b0f382f 100644 --- a/example/gap_junctions/meson.build +++ b/example/gap_junctions/meson.build @@ -1,4 +1,7 @@ gap_junctions = executable('gap_junctions', sources: 'gap_junctions.cpp', - dependencies: [dep_arb, dep_arborio, dep_arborsup, dep_arborenv]) + dependencies: [dep_arb, dep_arborio, dep_arborsup, dep_arborenv], + build_by_default: false, + install: false) + diff --git a/example/generators/meson.build b/example/generators/meson.build index 492ab466a6..db568818e6 100644 --- a/example/generators/meson.build +++ b/example/generators/meson.build @@ -1,4 +1,6 @@ generators = executable('generators', sources: 'generators.cpp', - dependencies: [dep_arb, dep_arborio, dep_arborsup, dep_arborenv]) + dependencies: [dep_arb, dep_arborio, dep_arborsup, dep_arborenv], + build_by_default: false, + install: false) diff --git a/example/lfp/meson.build b/example/lfp/meson.build index 6c84aeceab..a04e165018 100644 --- a/example/lfp/meson.build +++ b/example/lfp/meson.build @@ -1,3 +1,5 @@ lfp = executable('lfp', sources: 'lfp.cpp', - dependencies: [dep_arb, dep_arborio, dep_arborsup, dep_arborenv]) + dependencies: [dep_arb, dep_arborio, dep_arborsup, dep_arborenv], + build_by_default: false, + install: false) diff --git a/example/probe-demo/meson.build b/example/probe-demo/meson.build index 0c54826e2b..18239a7bf9 100644 --- a/example/probe-demo/meson.build +++ b/example/probe-demo/meson.build @@ -1,3 +1,5 @@ probes = executable('probe-demo', sources: 'probe-demo.cpp', - dependencies: [dep_arb, dep_arborsup, dep_arborenv, dep_tinyopt]) + dependencies: [dep_arb, dep_arborsup, dep_arborenv, dep_tinyopt], + build_by_default: false, + install: false) diff --git a/example/ring/meson.build b/example/ring/meson.build index ed94cc97e7..f07b5b047e 100644 --- a/example/ring/meson.build +++ b/example/ring/meson.build @@ -1,3 +1,5 @@ ring = executable('ring', sources: 'ring.cpp', - dependencies: [dep_arb, dep_arborio, dep_arborsup, dep_arborenv]) + dependencies: [dep_arb, dep_arborio, dep_arborsup, dep_arborenv], + build_by_default: false, + install: false) diff --git a/example/single/meson.build b/example/single/meson.build index fd8621c9ca..d96fb945cb 100644 --- a/example/single/meson.build +++ b/example/single/meson.build @@ -1,3 +1,5 @@ single = executable('single', sources: 'single.cpp', - dependencies: [dep_arb, dep_arborio, dep_arborsup, dep_arborenv, dep_tinyopt]) + dependencies: [dep_arb, dep_arborio, dep_arborsup, dep_arborenv, dep_tinyopt], + build_by_default: false, + install: false) diff --git a/meson.build b/meson.build index a6ad93bb5f..69e89aec0d 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project('arbor', 'cpp', version: '0.5.3-dev', - default_options : ['buildtype=release', 'cpp_std=c++17', 'default_library=both'], + default_options : ['buildtype=debug', 'cpp_std=c++17', 'default_library=static'], license: 'BSD') # Initialize up configurable options @@ -14,9 +14,6 @@ arb_with_vectorize = get_option('arb_with_vectorize') arb_with_python = get_option('arb_with_python') arb_arch = get_option('arb_arch') -if arb_with_mpi - error('unable to configure mpi') -endif if arb_with_gpu error('unable to configure gpu') endif @@ -24,6 +21,8 @@ if arb_with_profiling error('unable to configure profiling') endif +add_project_arguments(f'-fvisibility=hidden', language : 'cpp') + # Extract version information arb_version = meson.project_version() arb_version_array = arb_version.split('-') @@ -45,6 +44,18 @@ if arb_with_vectorize arb_modcc_flags += '--simd' endif +arb_private_defines = [] +if arb_with_mpi + dep_mpi = dependency('mpi', language: 'cpp') + arb_private_defines += '-DARB_HAVE_MPI' +endif +if arb_with_gpu + arb_private_defines += '-DARB_HAVE_GPU' +endif +if arb_with_profiling + arb_private_defines += '-DARB_HAVE_PROFIILING' +endif + # the following command can be used to determine whether we are looking for march or mcpu # see cmake/CompilerOptions.cmake # g++ --verbose dummy.cpp |& grep ^Target | sed 's/^Target: //' | sed 's/-.*//' @@ -67,6 +78,7 @@ dep_tinyopt = declare_dependency(include_directories: 'ext/tinyopt/include') inc_arb_private = include_directories('arbor') inc_arb_public = include_directories('arbor/include') +inc_arborio_private = include_directories('arborio') # used in the unit tests dep_threads = dependency('threads') dep_dl = meson.get_compiler('cpp').find_library('dl', required : true) @@ -82,4 +94,11 @@ if arb_with_python subdir('python') endif +subdir('test') subdir('example') + +pkg = import('pkgconfig') +pkg.generate(lib_arb) +pkg.generate(lib_arborio) +pkg.generate(lib_arborenv) + diff --git a/python/meson.build b/python/meson.build index 4b6108c2fa..67640f0b7f 100644 --- a/python/meson.build +++ b/python/meson.build @@ -19,16 +19,25 @@ pyarb_srcs = [ 'single_cell_model.cpp', ] -dep_pybind = dependency('pybind11', version : '>=2.8.1', required : true) +if arb_with_bundled_libs + dep_pybind = declare_dependency(include_directories: ['pybind11/include']) +else + dep_pybind = dependency('pybind11', version : '>=2.8.1', required : true) +endif -py3_inst = import('python').find_installation('python3') -python3 = dependency('python3') +python3 = import('python').find_installation('python3') +dep_python = dependency('python3', required: true) -pyarb = py3_inst.extension_module('arbor', +pyarb = python3.extension_module('_arbor', sources: pyarb_srcs, - dependencies : [python3, dep_pybind, dep_arborio, dep_arb], + dependencies : [dep_python, dep_pybind, dep_arborio, dep_arb], link_language : 'cpp', override_options: [ 'cpp_rtti=true', - ] + ], + install: true, + subdir: 'arbor' ) + +python3.install_sources(['__init__.py', '../VERSION'], subdir: 'arbor') + diff --git a/python/pyarb.cpp b/python/pyarb.cpp index fe7569030e..85871de6fc 100644 --- a/python/pyarb.cpp +++ b/python/pyarb.cpp @@ -34,7 +34,7 @@ void register_mpi(pybind11::module& m); } // namespace pyarb -PYBIND11_MODULE(arbor, m) { +PYBIND11_MODULE(_arbor, m) { pyarb::pyarb_global_ptr global_ptr(new pyarb::pyarb_global); // Register NumPy structured datatypes for Arbor structures used in NumPy array outputs. diff --git a/test/meson.build b/test/meson.build new file mode 100644 index 0000000000..e6dcf909bc --- /dev/null +++ b/test/meson.build @@ -0,0 +1,12 @@ +lib_gtest = static_library('gtest', + sources: ['gtest-all.cpp'], + include_directories: [], + dependencies: dep_threads, + install: false) + +dep_gtest = declare_dependency( + include_directories: ['.'], + link_with: lib_gtest, + dependencies: dep_threads) + +subdir('unit') diff --git a/test/unit/CMakeLists.txt b/test/unit/CMakeLists.txt index ef27831330..3dc7f75561 100644 --- a/test/unit/CMakeLists.txt +++ b/test/unit/CMakeLists.txt @@ -51,7 +51,7 @@ set(test_mech_dir ${CMAKE_CURRENT_BINARY_DIR}/mechanisms) build_modules( ${test_mechanisms} - SOURCE_DIR mod + SOURCE_DIR mechanisms DEST_DIR "${test_mech_dir}" ${external_modcc} MODCC_FLAGS -t cpu -t gpu ${ARB_MODCC_FLAGS} -N testing @@ -256,6 +256,7 @@ endif() target_compile_options(unit PRIVATE ${ARB_CXX_FLAGS_TARGET_FULL}) target_compile_definitions(unit PRIVATE "-DDATADIR=\"${CMAKE_CURRENT_SOURCE_DIR}/../swc\"") -target_compile_definitions(unit PRIVATE "-DLIBDIR=\"${PROJECT_BINARY_DIR}/lib\"") +target_compile_definitions(unit PRIVATE "-DCATALOGUEDIR=\"${PROJECT_BINARY_DIR}/lib\"") +target_compile_definitions(unit PRIVATE "-DBUILDDIR=\"${CMAKE_CURRENT_BINARY_DIR}\"") target_include_directories(unit PRIVATE "${CMAKE_CURRENT_BINARY_DIR}") target_link_libraries(unit PRIVATE gtest arbor arborenv arborio arborio-private-headers arbor-private-headers arbor-sup) diff --git a/test/unit/dummy/meson.build b/test/unit/dummy/meson.build new file mode 100644 index 0000000000..7ba1ddbec8 --- /dev/null +++ b/test/unit/dummy/meson.build @@ -0,0 +1,25 @@ +name = 'dummy' +dummy_mechs = ['dummy'] +namespace = f'arb::@name@_catalogue' + +dummy_mech_sources = [] +foreach m: dummy_mechs + modfile = meson.current_source_dir()+f'/@m@.mod' + dummy_mech_sources += custom_target(f'mechanism:@name@:@m@', + input : modfile, + output : [f'@m@.hpp', f'@m@_cpu.cpp'], + command : [modcc, modfile, '-N', namespace, '-o', meson.current_build_dir()+'/'+m, arb_modcc_flags]) +endforeach + +dummy_catalogue_source = custom_target('dummy-catalogue-source', + output: f'@name@_catalogue.cpp', + command : [gen_cat, catalogue_options, '-C', name, '-N', namespace, dummy_mechs, '-o', '@OUTPUT@']) + +dummy_catalogue = shared_library('dummy-catalogue', + name_prefix: '', + sources: [dummy_mech_sources, dummy_catalogue_source], + dependencies: [dep_arb], + cpp_args : ['-DSTANDALONE'], + install: false, + build_by_default: true) + diff --git a/test/unit/mod/ca_linear.mod b/test/unit/mechanisms/ca_linear.mod similarity index 100% rename from test/unit/mod/ca_linear.mod rename to test/unit/mechanisms/ca_linear.mod diff --git a/test/unit/mod/celsius_test.mod b/test/unit/mechanisms/celsius_test.mod similarity index 100% rename from test/unit/mod/celsius_test.mod rename to test/unit/mechanisms/celsius_test.mod diff --git a/test/unit/mod/diam_test.mod b/test/unit/mechanisms/diam_test.mod similarity index 100% rename from test/unit/mod/diam_test.mod rename to test/unit/mechanisms/diam_test.mod diff --git a/test/unit/mod/fixed_ica_current.mod b/test/unit/mechanisms/fixed_ica_current.mod similarity index 100% rename from test/unit/mod/fixed_ica_current.mod rename to test/unit/mechanisms/fixed_ica_current.mod diff --git a/test/unit/mod/gj0.mod b/test/unit/mechanisms/gj0.mod similarity index 100% rename from test/unit/mod/gj0.mod rename to test/unit/mechanisms/gj0.mod diff --git a/test/unit/mod/gj1.mod b/test/unit/mechanisms/gj1.mod similarity index 100% rename from test/unit/mod/gj1.mod rename to test/unit/mechanisms/gj1.mod diff --git a/test/unit/mod/linear_ca_conc.mod b/test/unit/mechanisms/linear_ca_conc.mod similarity index 100% rename from test/unit/mod/linear_ca_conc.mod rename to test/unit/mechanisms/linear_ca_conc.mod diff --git a/test/unit/mechanisms/meson.build b/test/unit/mechanisms/meson.build new file mode 100644 index 0000000000..707cdec072 --- /dev/null +++ b/test/unit/mechanisms/meson.build @@ -0,0 +1,52 @@ +unit_mechs = [ + 'ca_linear', + 'celsius_test', + 'diam_test', + 'fixed_ica_current', + 'gj0', + 'gj1', + 'linear_ca_conc', + 'non_linear', + 'param_as_state', + 'point_ica_current', + 'post_events_syn', + 'read_cai_init', + 'read_eX', + 'test0_kin_compartment', + 'test0_kin_conserve', + 'test0_kin_diff', + 'test0_kin_steadystate', + 'test1_kin_compartment', + 'test1_kin_conserve', + 'test1_kin_diff', + 'test1_kin_steadystate', + 'test2_kin_diff', + 'test3_kin_diff', + 'test4_kin_compartment', + 'test5_nonlinear_diff', + 'test6_nonlinear_diff', + 'test_ca', + 'test_ca_read_valence', + 'test_cl_valence', + 'test_kin1', + 'test_kinlva', + 'test_linear_init', + 'test_linear_init_shuffle', + 'test_linear_state', + 'write_cai_breakpoint', + 'write_eX', + 'write_multiple_eX', + 'write_Xi_Xo' +] + +name = 'unit' + +unit_mech_sources = [] +foreach m: unit_mechs + modfile = meson.current_source_dir()+f'/@m@.mod' + unit_mech_sources += custom_target(f'mechanism:@name@:@m@', + input : modfile, + output : [f'@m@.hpp', f'@m@_cpu.cpp'], + command : [modcc, modfile, '-N', 'testing', '-o', meson.current_build_dir()+'/'+m, arb_modcc_flags]) +endforeach + diff --git a/test/unit/mod/non_linear.mod b/test/unit/mechanisms/non_linear.mod similarity index 100% rename from test/unit/mod/non_linear.mod rename to test/unit/mechanisms/non_linear.mod diff --git a/test/unit/mod/param_as_state.mod b/test/unit/mechanisms/param_as_state.mod similarity index 100% rename from test/unit/mod/param_as_state.mod rename to test/unit/mechanisms/param_as_state.mod diff --git a/test/unit/mod/point_ica_current.mod b/test/unit/mechanisms/point_ica_current.mod similarity index 100% rename from test/unit/mod/point_ica_current.mod rename to test/unit/mechanisms/point_ica_current.mod diff --git a/test/unit/mod/post_events_syn.mod b/test/unit/mechanisms/post_events_syn.mod similarity index 100% rename from test/unit/mod/post_events_syn.mod rename to test/unit/mechanisms/post_events_syn.mod diff --git a/test/unit/mod/read_cai_init.mod b/test/unit/mechanisms/read_cai_init.mod similarity index 100% rename from test/unit/mod/read_cai_init.mod rename to test/unit/mechanisms/read_cai_init.mod diff --git a/test/unit/mod/read_eX.mod b/test/unit/mechanisms/read_eX.mod similarity index 100% rename from test/unit/mod/read_eX.mod rename to test/unit/mechanisms/read_eX.mod diff --git a/test/unit/mod/test0_kin_compartment.mod b/test/unit/mechanisms/test0_kin_compartment.mod similarity index 100% rename from test/unit/mod/test0_kin_compartment.mod rename to test/unit/mechanisms/test0_kin_compartment.mod diff --git a/test/unit/mod/test0_kin_conserve.mod b/test/unit/mechanisms/test0_kin_conserve.mod similarity index 100% rename from test/unit/mod/test0_kin_conserve.mod rename to test/unit/mechanisms/test0_kin_conserve.mod diff --git a/test/unit/mod/test0_kin_diff.mod b/test/unit/mechanisms/test0_kin_diff.mod similarity index 100% rename from test/unit/mod/test0_kin_diff.mod rename to test/unit/mechanisms/test0_kin_diff.mod diff --git a/test/unit/mod/test0_kin_steadystate.mod b/test/unit/mechanisms/test0_kin_steadystate.mod similarity index 100% rename from test/unit/mod/test0_kin_steadystate.mod rename to test/unit/mechanisms/test0_kin_steadystate.mod diff --git a/test/unit/mod/test1_kin_compartment.mod b/test/unit/mechanisms/test1_kin_compartment.mod similarity index 100% rename from test/unit/mod/test1_kin_compartment.mod rename to test/unit/mechanisms/test1_kin_compartment.mod diff --git a/test/unit/mod/test1_kin_conserve.mod b/test/unit/mechanisms/test1_kin_conserve.mod similarity index 100% rename from test/unit/mod/test1_kin_conserve.mod rename to test/unit/mechanisms/test1_kin_conserve.mod diff --git a/test/unit/mod/test1_kin_diff.mod b/test/unit/mechanisms/test1_kin_diff.mod similarity index 100% rename from test/unit/mod/test1_kin_diff.mod rename to test/unit/mechanisms/test1_kin_diff.mod diff --git a/test/unit/mod/test1_kin_steadystate.mod b/test/unit/mechanisms/test1_kin_steadystate.mod similarity index 100% rename from test/unit/mod/test1_kin_steadystate.mod rename to test/unit/mechanisms/test1_kin_steadystate.mod diff --git a/test/unit/mod/test2_kin_diff.mod b/test/unit/mechanisms/test2_kin_diff.mod similarity index 100% rename from test/unit/mod/test2_kin_diff.mod rename to test/unit/mechanisms/test2_kin_diff.mod diff --git a/test/unit/mod/test3_kin_diff.mod b/test/unit/mechanisms/test3_kin_diff.mod similarity index 100% rename from test/unit/mod/test3_kin_diff.mod rename to test/unit/mechanisms/test3_kin_diff.mod diff --git a/test/unit/mod/test4_kin_compartment.mod b/test/unit/mechanisms/test4_kin_compartment.mod similarity index 100% rename from test/unit/mod/test4_kin_compartment.mod rename to test/unit/mechanisms/test4_kin_compartment.mod diff --git a/test/unit/mod/test5_nonlinear_diff.mod b/test/unit/mechanisms/test5_nonlinear_diff.mod similarity index 100% rename from test/unit/mod/test5_nonlinear_diff.mod rename to test/unit/mechanisms/test5_nonlinear_diff.mod diff --git a/test/unit/mod/test6_nonlinear_diff.mod b/test/unit/mechanisms/test6_nonlinear_diff.mod similarity index 100% rename from test/unit/mod/test6_nonlinear_diff.mod rename to test/unit/mechanisms/test6_nonlinear_diff.mod diff --git a/test/unit/mod/test_ca.mod b/test/unit/mechanisms/test_ca.mod similarity index 100% rename from test/unit/mod/test_ca.mod rename to test/unit/mechanisms/test_ca.mod diff --git a/test/unit/mod/test_ca_read_valence.mod b/test/unit/mechanisms/test_ca_read_valence.mod similarity index 100% rename from test/unit/mod/test_ca_read_valence.mod rename to test/unit/mechanisms/test_ca_read_valence.mod diff --git a/test/unit/mod/test_cl_valence.mod b/test/unit/mechanisms/test_cl_valence.mod similarity index 100% rename from test/unit/mod/test_cl_valence.mod rename to test/unit/mechanisms/test_cl_valence.mod diff --git a/test/unit/mod/test_kin1.mod b/test/unit/mechanisms/test_kin1.mod similarity index 100% rename from test/unit/mod/test_kin1.mod rename to test/unit/mechanisms/test_kin1.mod diff --git a/test/unit/mod/test_kinlva.mod b/test/unit/mechanisms/test_kinlva.mod similarity index 100% rename from test/unit/mod/test_kinlva.mod rename to test/unit/mechanisms/test_kinlva.mod diff --git a/test/unit/mod/test_linear_init.mod b/test/unit/mechanisms/test_linear_init.mod similarity index 100% rename from test/unit/mod/test_linear_init.mod rename to test/unit/mechanisms/test_linear_init.mod diff --git a/test/unit/mod/test_linear_init_shuffle.mod b/test/unit/mechanisms/test_linear_init_shuffle.mod similarity index 100% rename from test/unit/mod/test_linear_init_shuffle.mod rename to test/unit/mechanisms/test_linear_init_shuffle.mod diff --git a/test/unit/mod/test_linear_state.mod b/test/unit/mechanisms/test_linear_state.mod similarity index 100% rename from test/unit/mod/test_linear_state.mod rename to test/unit/mechanisms/test_linear_state.mod diff --git a/test/unit/mod/write_Xi_Xo.mod b/test/unit/mechanisms/write_Xi_Xo.mod similarity index 100% rename from test/unit/mod/write_Xi_Xo.mod rename to test/unit/mechanisms/write_Xi_Xo.mod diff --git a/test/unit/mod/write_cai_breakpoint.mod b/test/unit/mechanisms/write_cai_breakpoint.mod similarity index 100% rename from test/unit/mod/write_cai_breakpoint.mod rename to test/unit/mechanisms/write_cai_breakpoint.mod diff --git a/test/unit/mod/write_eX.mod b/test/unit/mechanisms/write_eX.mod similarity index 100% rename from test/unit/mod/write_eX.mod rename to test/unit/mechanisms/write_eX.mod diff --git a/test/unit/mod/write_multiple_eX.mod b/test/unit/mechanisms/write_multiple_eX.mod similarity index 100% rename from test/unit/mod/write_multiple_eX.mod rename to test/unit/mechanisms/write_multiple_eX.mod diff --git a/test/unit/meson.build b/test/unit/meson.build new file mode 100644 index 0000000000..2f089eddec --- /dev/null +++ b/test/unit/meson.build @@ -0,0 +1,124 @@ +subdir('mechanisms') +subdir('dummy') + +unit_sources = [ + 'test_abi.cpp', + 'test_asc.cpp', + 'test_any_cast.cpp', + 'test_any_ptr.cpp', + 'test_any_visitor.cpp', + 'test_backend.cpp', + 'test_cable_cell.cpp', + 'test_counter.cpp', + 'test_cv_geom.cpp', + 'test_cv_layout.cpp', + 'test_cv_policy.cpp', + 'test_cycle.cpp', + 'test_domain_decomposition.cpp', + 'test_dry_run_context.cpp', + 'test_event_binner.cpp', + 'test_event_delivery.cpp', + 'test_event_generators.cpp', + 'test_event_queue.cpp', + 'test_expected.cpp', + 'test_filter.cpp', + 'test_forest.cpp', + 'test_fvm_layout.cpp', + 'test_fvm_lowered.cpp', + 'test_index.cpp', + 'test_kinetic_linear.cpp', + 'test_lexcmp.cpp', + 'test_label_resolution.cpp', + 'test_lif_cell_group.cpp', + 'test_local_context.cpp', + 'test_maputil.cpp', + 'test_mask_stream.cpp', + 'test_math.cpp', + 'test_matrix.cpp', + 'test_mcable_map.cpp', + 'test_mc_cell_group.cpp', + 'test_mechanisms.cpp', + 'test_mech_temp_diam.cpp', + 'test_mechcat.cpp', + 'test_mechinfo.cpp', + 'test_merge_events.cpp', + 'test_merge_view.cpp', + 'test_morphology.cpp', + 'test_morph_components.cpp', + 'test_morph_embedding.cpp', + 'test_morph_expr.cpp', + 'test_morph_place.cpp', + 'test_morph_primitives.cpp', + 'test_morph_stitch.cpp', + 'test_multi_event_stream.cpp', + 'test_ordered_forest.cpp', + 'test_padded.cpp', + 'test_partition.cpp', + 'test_partition_by_constraint.cpp', + 'test_path.cpp', + 'test_piecewise.cpp', + 'test_pp_util.cpp', + 'test_probe.cpp', + 'test_range.cpp', + 'test_recipe.cpp', + 'test_ratelem.cpp', + 'test_schedule.cpp', + 'test_scope_exit.cpp', + 'test_segment_tree.cpp', + 'test_simd.cpp', + 'test_simulation.cpp', + 'test_span.cpp', + 'test_spike_source.cpp', + 'test_spikes.cpp', + 'test_spike_store.cpp', + 'test_stats.cpp', + 'test_strprintf.cpp', + 'test_swcio.cpp', + 'test_synapses.cpp', + 'test_s_expr.cpp', + 'test_thread.cpp', + 'test_threading_exceptions.cpp', + 'test_tree.cpp', + 'test_transform.cpp', + 'test_uninitialized.cpp', + 'test_unique.cpp', + 'test_unique_any.cpp', + 'test_vector.cpp', + 'test_version.cpp', + + # unit test driver + 'test.cpp', + + # common routines + '../common_cells.cpp', + 'mech_private_field_access.cpp', + 'stats.cpp', + 'unit_test_catalogue.cpp' +] + +if arb_with_neuroml + unit_sources += 'test_nml_morphology.cpp' +endif + +unit_data_dir = meson.current_source_dir() + '/../swc' +unit_dummy_catalogue_dir = meson.current_build_dir() + '/dummy' +unit_build_dir = meson.current_build_dir() +message(unit_data_dir) +message(unit_dummy_catalogue_dir) +message(unit_build_dir) + +arb_unit_defines = [ + f'-DDATADIR="@unit_data_dir@"', + f'-DBUILDDIR="@unit_build_dir@"', + f'-DCATALOGUEDIR="@unit_dummy_catalogue_dir@"', + '-DUSE_DYNAMIC_CATALOGUES', +] + +unit = executable('unit', + sources: [unit_sources, unit_mech_sources], + include_directories: [inc_arb_public, inc_arb_private, inc_arborio_private], + cpp_args : arb_private_defines + arb_unit_defines, + dependencies: [dep_arb, dep_arborio, dep_arborsup, dep_arborenv, dep_gtest, dep_arb_internal], + link_with: [dummy_catalogue], + build_by_default: false, + install: false) diff --git a/test/unit/test_mechcat.cpp b/test/unit/test_mechcat.cpp index 05077ca2a1..e255fde8cf 100644 --- a/test/unit/test_mechcat.cpp +++ b/test/unit/test_mechcat.cpp @@ -8,11 +8,6 @@ #include "common.hpp" -#ifndef LIBDIR -#warning "LIBDIR not set; defaulting to '.'" -#define LIBDIR "." -#endif - using namespace std::string_literals; using namespace arb; @@ -280,10 +275,10 @@ TEST(mechcat, names) { #ifdef USE_DYNAMIC_CATALOGUES TEST(mechcat, loading) { - EXPECT_THROW(load_catalogue(LIBDIR "/does-not-exist-catalogue.so"), file_not_found_error); - EXPECT_THROW(load_catalogue(LIBDIR "/libarbor.a"), bad_catalogue_error); + EXPECT_THROW(load_catalogue(CATALOGUEDIR "/does-not-exist-catalogue.so"), file_not_found_error); + EXPECT_THROW(load_catalogue(BUILDDIR "/unit"), bad_catalogue_error); const mechanism_catalogue* cat = nullptr; - EXPECT_NO_THROW(cat = &load_catalogue(LIBDIR "/dummy-catalogue.so")); + EXPECT_NO_THROW(cat = &load_catalogue(CATALOGUEDIR "/dummy-catalogue.so")); ASSERT_NE(cat, nullptr); EXPECT_EQ(std::vector{"dummy"}, cat->mechanism_names()); From 1b7de95bdc80165bb11c7803b6abb1c52e5ed232 Mon Sep 17 00:00:00 2001 From: bcumming Date: Mon, 20 Dec 2021 10:23:15 +0100 Subject: [PATCH 19/34] architecture flags, lmorpho and profiling --- arbor/meson.build | 2 +- arborenv/meson.build | 15 +++--- arborio/meson.build | 15 +++--- lmorpho/meson.build | 7 +++ meson.build | 84 +++++++++++++++++++++++-------- meson_options.txt | 1 + modcc/meson.build | 18 ++++--- test/meson.build | 2 + test/unit-distributed/meson.build | 33 ++++++++++++ test/unit-modcc/meson.build | 28 +++++++++++ test/unit/dummy/meson.build | 2 +- test/unit/meson.build | 7 +-- 12 files changed, 166 insertions(+), 48 deletions(-) create mode 100644 lmorpho/meson.build create mode 100644 test/unit-distributed/meson.build create mode 100644 test/unit-modcc/meson.build diff --git a/arbor/meson.build b/arbor/meson.build index d12003c474..af0c98f129 100644 --- a/arbor/meson.build +++ b/arbor/meson.build @@ -80,7 +80,7 @@ endif lib_arb = library('arbor', sources: [arb_src, catalogue_sources], include_directories: [inc_arb_public, inc_arb_private], - cpp_args : arb_private_defines, + cpp_args : arbor_private_args, dependencies: dep_arb_internal, install: true) diff --git a/arborenv/meson.build b/arborenv/meson.build index d22164c5eb..702c9f4556 100644 --- a/arborenv/meson.build +++ b/arborenv/meson.build @@ -10,14 +10,15 @@ if arb_with_gpu endif lib_arborenv = library('arborenv', - sources: arborenv_src, - include_directories: 'include', - dependencies: [dep_arb], - install: true) + sources: arborenv_src, + include_directories: 'include', + dependencies: [dep_arb], + cpp_args : arbor_private_args, + install: true) install_subdir('include/arborenv', install_dir: 'include') dep_arborenv = declare_dependency( - include_directories: ['include'], - link_with: lib_arborenv, - dependencies: []) + include_directories: ['include'], + link_with: lib_arborenv, + dependencies: []) diff --git a/arborio/meson.build b/arborio/meson.build index c588365557..5b897f7b66 100644 --- a/arborio/meson.build +++ b/arborio/meson.build @@ -14,14 +14,15 @@ if arb_with_neuroml endif lib_arborio = library('arborio', - sources: arborio_src, - include_directories: 'include', - dependencies : [dep_arb, dep_arborio_internal], - install: true) + sources: arborio_src, + include_directories: 'include', + dependencies : [dep_arb, dep_arborio_internal], + cpp_args : arbor_private_args, + install: true) install_subdir('include/arborio', install_dir: 'include') dep_arborio = declare_dependency( - include_directories: ['include'], - link_with: lib_arborio, - dependencies: dep_arborio_internal) + include_directories: ['include'], + link_with: lib_arborio, + dependencies: dep_arborio_internal) diff --git a/lmorpho/meson.build b/lmorpho/meson.build new file mode 100644 index 0000000000..dea5c71a9e --- /dev/null +++ b/lmorpho/meson.build @@ -0,0 +1,7 @@ +lmorpho = executable('lmorpho', + sources: ['lmorpho.cpp', 'lsystem.cpp', 'lsys_models.cpp'], + dependencies: [dep_arb, dep_arborsup, dep_arborio, dep_tinyopt], + include_directories: [inc_arb_public], + install: false, + build_by_default: true) + diff --git a/meson.build b/meson.build index 69e89aec0d..d3e2f9d129 100644 --- a/meson.build +++ b/meson.build @@ -13,17 +13,15 @@ arb_with_profiling = get_option('arb_with_profiling') arb_with_vectorize = get_option('arb_with_vectorize') arb_with_python = get_option('arb_with_python') arb_arch = get_option('arb_arch') +arb_target_flags = get_option('arb_target_flags') if arb_with_gpu error('unable to configure gpu') endif -if arb_with_profiling - error('unable to configure profiling') -endif - -add_project_arguments(f'-fvisibility=hidden', language : 'cpp') +# # Extract version information +# arb_version = meson.project_version() arb_version_array = arb_version.split('-') if arb_version_array.length()==2 @@ -36,6 +34,10 @@ arb_version_major = arb_version_array[0].to_int() arb_version_minor = arb_version_array[1].to_int() arb_version_patch = arb_version_array[2].to_int() +# +# Set all compiler flags and definitions that are used by one or more target and / or exported +# + arb_modcc_flags = [] if arb_with_profiling arb_modcc_flags += '--profile' @@ -44,22 +46,50 @@ if arb_with_vectorize arb_modcc_flags += '--simd' endif -arb_private_defines = [] +# arb_config_defs collects configure-time defines for arbor, arborenv, +# arborio, of the form ARB_HAVE_XXX. +# These defines should _not_ be used in any installed public headers. +arb_config_defs = [] if arb_with_mpi - dep_mpi = dependency('mpi', language: 'cpp') - arb_private_defines += '-DARB_HAVE_MPI' + arb_config_defs += '-DARB_HAVE_MPI' endif if arb_with_gpu - arb_private_defines += '-DARB_HAVE_GPU' + arb_config_defs += '-DARB_HAVE_GPU' endif if arb_with_profiling - arb_private_defines += '-DARB_HAVE_PROFIILING' + arb_config_defs += '-DARB_HAVE_PROFIILING' +endif +if arb_with_assertions + arb_config_defs += '-DARB_HAVE_ASSERTIONS' endif -# the following command can be used to determine whether we are looking for march or mcpu -# see cmake/CompilerOptions.cmake -# g++ --verbose dummy.cpp |& grep ^Target | sed 's/^Target: //' | sed 's/-.*//' -add_project_arguments(f'-march=@arb_arch@', language : 'cpp') +# Set optimization/target-specific architecture flags +arb_target_args = [] +if not (arb_arch=='none') + # The choice of -mcpu= or -march= depends on the architecture + OS. + cpu_id=host_machine.cpu_family() + os_id=host_machine.system() + if (cpu_id=='aarch64') and (os_id=='darwin') + arb_target_args += f'-mcpu=@arb_arch@' + elif cpu_id=='aarch64' or cpu_id=='x86_64' or cpu_id=='x86' + arb_target_args += f'-march=@arb_arch@' + else + arb_target_args += f'-mcpu=@arb_arch@' + endif +else + arb_target_args = arb_target_flags.strip().split() +endif + +arbor_private_args = ['-fvisibility=hidden'] + arb_target_args + arb_config_defs + +message('arbor target flags:', arb_target_args) +message('arbor defines :', arb_config_defs) +message('arbor moddcc flags:', arb_modcc_flags) +message('arbor full flags :', arbor_private_args) + +# +# Set up all dependencies +# # find dependencies if arb_with_bundled_libs @@ -83,22 +113,36 @@ inc_arborio_private = include_directories('arborio') # used in the unit tests dep_threads = dependency('threads') dep_dl = meson.get_compiler('cpp').find_library('dl', required : true) +if arb_with_mpi + dep_mpi = dependency('mpi', language: 'cpp') +endif + +# +# Visit all of the paths containing targets: no more configuration of flags and dependencies from here on down. +# + subdir('modcc') subdir('mechanisms') subdir('arbor') subdir('arborio') subdir('arborenv') subdir('sup') - +subdir('test') +subdir('example') +subdir('lmorpho') if arb_with_python subdir('python') endif -subdir('test') -subdir('example') +# +# set up pkgconfig +# pkg = import('pkgconfig') -pkg.generate(lib_arb) +pkg.generate(lib_arb, + # we can append additional flags for the compilers here (like our optimization flags) + extra_cflags: arb_target_args, + # The variables and unescaped_variables can be used to pass additional flags and configuration for downstream consumers. + #unescaped_variables: ['CFLAGS_GPU=-sm80 -O2'], + variables: ['configured_options=GPU;MPI']) pkg.generate(lib_arborio) -pkg.generate(lib_arborenv) - diff --git a/meson_options.txt b/meson_options.txt index 09c993f5c6..d069f434f2 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -8,3 +8,4 @@ option('arb_with_vectorize', type: 'boolean', value: false) option('arb_with_python', type: 'boolean', value: false) option('arb_arch', type: 'string', value: 'native') +option('arb_target_flags', type: 'string', value: '') diff --git a/modcc/meson.build b/modcc/meson.build index 4f86689c9e..eaa5b1b988 100644 --- a/modcc/meson.build +++ b/modcc/meson.build @@ -23,13 +23,17 @@ libmodcc_src = [ 'printer/printerutil.cpp'] libmodcc = library('modcc', - sources: [libmodcc_src], - dependencies: [dep_libfmt], - install: true) + sources: [libmodcc_src], + dependencies: [dep_libfmt], + install: true) + +dep_libmodcc = declare_dependency( + include_directories: ['.'], + link_with: [libmodcc]) modcc = executable('modcc', - sources: ['modcc.cpp', ], - dependencies: dep_tinyopt, - link_with: [libmodcc], - install: true) + sources: ['modcc.cpp', ], + dependencies: dep_tinyopt, + link_with: [libmodcc], + install: true) diff --git a/test/meson.build b/test/meson.build index e6dcf909bc..222e2d8d2e 100644 --- a/test/meson.build +++ b/test/meson.build @@ -10,3 +10,5 @@ dep_gtest = declare_dependency( dependencies: dep_threads) subdir('unit') +subdir('unit-modcc') +subdir('unit-distributed') diff --git a/test/unit-distributed/meson.build b/test/unit-distributed/meson.build new file mode 100644 index 0000000000..9c2d12dde1 --- /dev/null +++ b/test/unit-distributed/meson.build @@ -0,0 +1,33 @@ +unit_distributed_sources = [ + 'distributed_listener.cpp', + 'test_domain_decomposition.cpp', + 'test_communicator.cpp', + 'test_mpi.cpp', + + # unit test driver + 'test.cpp', +] + +# The distributed unit tests are all configured to be compiled with either a +# local (non-distributed) communicator, or with an MPI communicator. +# A version of the tests with the local communicatior is always configured and +# built, and an MPI version is optionally built if MPI support is enabled. + + +unit_local = executable('unit-local', + sources: unit_distributed_sources, + dependencies: [dep_arb, dep_arborenv, dep_arborsup, dep_gtest, dep_tinyopt], + include_directories: [inc_arb_private, inc_arb_public], + cpp_args: ['-DTEST_LOCAL'] + arbor_private_args, + install: false, + build_by_default: false) + +if arb_with_mpi + unit_mpi = executable('unit-mpi', + sources: unit_distributed_sources, + dependencies: [dep_arb, dep_arborenv, dep_arborsup, dep_gtest, dep_tinyopt], + include_directories: [inc_arb_private, inc_arb_public], + cpp_args: ['-DTEST_MPI'] + arbor_private_args, + install: false, + build_by_default: false) +endif diff --git a/test/unit-modcc/meson.build b/test/unit-modcc/meson.build new file mode 100644 index 0000000000..4dd8262a8c --- /dev/null +++ b/test/unit-modcc/meson.build @@ -0,0 +1,28 @@ +unit_modcc_sources = [ + # unit tests + 'test_fn_rewriters.cpp', + 'test_lexer.cpp', + 'test_kinetic_rewriter.cpp', + 'test_module.cpp', + 'test_msparse.cpp', + 'test_parser.cpp', + 'test_prefixbuf.cpp', + 'test_printers.cpp', + 'test_removelocals.cpp', + 'test_simd_backend.cpp', + 'test_symdiff.cpp', + 'test_symge.cpp', + 'test_visitors.cpp', + # unit test driver + 'driver.cpp', + # utility + 'common.cpp', + 'expr_expand.cpp'] + +unit_modcc_datadir = '-DDATADIR="'+meson.current_source_dir()+'"' +unit_modcc = executable('unit-modcc', + sources: unit_modcc_sources, + dependencies: [dep_libmodcc, dep_gtest], + cpp_args: unit_modcc_datadir, + install: false, + build_by_default: false) diff --git a/test/unit/dummy/meson.build b/test/unit/dummy/meson.build index 7ba1ddbec8..cd1a360c4e 100644 --- a/test/unit/dummy/meson.build +++ b/test/unit/dummy/meson.build @@ -19,7 +19,7 @@ dummy_catalogue = shared_library('dummy-catalogue', name_prefix: '', sources: [dummy_mech_sources, dummy_catalogue_source], dependencies: [dep_arb], - cpp_args : ['-DSTANDALONE'], + cpp_args : ['-DSTANDALONE'] + arbor_private_args, install: false, build_by_default: true) diff --git a/test/unit/meson.build b/test/unit/meson.build index 2f089eddec..3f036c0237 100644 --- a/test/unit/meson.build +++ b/test/unit/meson.build @@ -103,11 +103,8 @@ endif unit_data_dir = meson.current_source_dir() + '/../swc' unit_dummy_catalogue_dir = meson.current_build_dir() + '/dummy' unit_build_dir = meson.current_build_dir() -message(unit_data_dir) -message(unit_dummy_catalogue_dir) -message(unit_build_dir) -arb_unit_defines = [ +arbor_unit_defines = [ f'-DDATADIR="@unit_data_dir@"', f'-DBUILDDIR="@unit_build_dir@"', f'-DCATALOGUEDIR="@unit_dummy_catalogue_dir@"', @@ -117,7 +114,7 @@ arb_unit_defines = [ unit = executable('unit', sources: [unit_sources, unit_mech_sources], include_directories: [inc_arb_public, inc_arb_private, inc_arborio_private], - cpp_args : arb_private_defines + arb_unit_defines, + cpp_args : arbor_private_args + arbor_unit_defines, dependencies: [dep_arb, dep_arborio, dep_arborsup, dep_arborenv, dep_gtest, dep_arb_internal], link_with: [dummy_catalogue], build_by_default: false, From 80e3b5e488eeff8c0d1319fe1c0db5ffbc9ada65 Mon Sep 17 00:00:00 2001 From: bcumming Date: Mon, 20 Dec 2021 18:22:59 +0100 Subject: [PATCH 20/34] work on gpu --- arbor/meson.build | 18 ++++++++++++++++++ meson.build | 7 ++----- 2 files changed, 20 insertions(+), 5 deletions(-) diff --git a/arbor/meson.build b/arbor/meson.build index af0c98f129..1d8e3e221e 100644 --- a/arbor/meson.build +++ b/arbor/meson.build @@ -67,6 +67,24 @@ if arb_with_mpi ] endif +if arb_with_gpu + arb_src += [ + 'backends/gpu/shared_state.cpp', + 'backends/gpu/stimulus.cu', + 'backends/gpu/threshold_watcher.cu', + 'backends/gpu/matrix_assemble.cu', + 'backends/gpu/matrix_fine.cu', + 'backends/gpu/matrix_solve.cu', + 'backends/gpu/multi_event_stream.cpp', + 'backends/gpu/multi_event_stream.cu', + 'backends/gpu/shared_state.cu', + 'backends/gpu/forest.cpp', + 'backends/gpu/stimulus.cu', + 'backends/gpu/threshold_watcher.cu', + 'memory/fill.cu', + ] +endif + # todo: mpi files # todo: cuda files diff --git a/meson.build b/meson.build index d3e2f9d129..d5dba9ab15 100644 --- a/meson.build +++ b/meson.build @@ -1,9 +1,9 @@ project('arbor', 'cpp', + 'cuda', version: '0.5.3-dev', default_options : ['buildtype=debug', 'cpp_std=c++17', 'default_library=static'], license: 'BSD') -# Initialize up configurable options arb_with_assertions = get_option('arb_with_assertions') arb_with_bundled_libs = get_option('arb_with_bundled_libs') arb_with_mpi = get_option('arb_with_mpi') @@ -15,13 +15,10 @@ arb_with_python = get_option('arb_with_python') arb_arch = get_option('arb_arch') arb_target_flags = get_option('arb_target_flags') -if arb_with_gpu - error('unable to configure gpu') -endif - # # Extract version information # + arb_version = meson.project_version() arb_version_array = arb_version.split('-') if arb_version_array.length()==2 From d55e85976b5d602f384d9eaf535446d1b12c4d03 Mon Sep 17 00:00:00 2001 From: bcumming Date: Thu, 30 Dec 2021 15:34:41 +0100 Subject: [PATCH 21/34] cuda works --- arbor/meson.build | 9 +++--- mechanisms/allen/meson.build | 6 +++- mechanisms/bbp/meson.build | 6 +++- mechanisms/default/meson.build | 6 +++- mechanisms/meson.build | 5 ++- meson.build | 54 +++++++++++++++++++++----------- test/unit/dummy/meson.build | 9 ++++-- test/unit/mechanisms/meson.build | 6 +++- test/unit/meson.build | 3 +- 9 files changed, 74 insertions(+), 30 deletions(-) diff --git a/arbor/meson.build b/arbor/meson.build index 1d8e3e221e..687f50f25b 100644 --- a/arbor/meson.build +++ b/arbor/meson.build @@ -85,20 +85,21 @@ if arb_with_gpu ] endif -# todo: mpi files -# todo: cuda files - subdir('include/arbor') dep_arb_internal = [dep_threads, dep_random123, dep_dl] if arb_with_mpi dep_arb_internal += dep_mpi endif +if arb_with_gpu + dep_arb_internal += dep_cuda +endif lib_arb = library('arbor', sources: [arb_src, catalogue_sources], include_directories: [inc_arb_public, inc_arb_private], - cpp_args : arbor_private_args, + cpp_args: arbor_private_args, + cuda_args: arbor_cuda_private_args, dependencies: dep_arb_internal, install: true) diff --git a/mechanisms/allen/meson.build b/mechanisms/allen/meson.build index be97baafd1..fed768f069 100644 --- a/mechanisms/allen/meson.build +++ b/mechanisms/allen/meson.build @@ -4,9 +4,13 @@ mechs = ['CaDynamics', 'Ca_HVA', 'Ca_LVA', 'Ih', 'Im', 'Im_v2', 'Kd', 'K_P', 'K_ mech_srcs = [] foreach m: mechs modfile = meson.current_source_dir()+f'/@m@.mod' + generated_files = [f'@m@.hpp', f'@m@_cpu.cpp'] + if arb_with_gpu + generated_files += [f'@m@_gpu.cu', f'@m@_gpu.cpp'] + endif mech_srcs += custom_target(f'mechanism:@name@:@m@', input : modfile, - output : [f'@m@.hpp', f'@m@_cpu.cpp'], + output : generated_files, command : [modcc, modfile, '-N', f'arb::@name@_catalogue', '-o', meson.current_build_dir()+'/'+m, arb_modcc_flags]) endforeach diff --git a/mechanisms/bbp/meson.build b/mechanisms/bbp/meson.build index 54c146e9f5..c8f1683c23 100644 --- a/mechanisms/bbp/meson.build +++ b/mechanisms/bbp/meson.build @@ -4,9 +4,13 @@ mechs = ['CaDynamics_E2', 'Ca_HVA', 'Ca_LVAst', 'Ih', 'Im', 'K_Pst', 'K_Tst', 'N mech_srcs = [] foreach m: mechs modfile = meson.current_source_dir()+f'/@m@.mod' + generated_files = [f'@m@.hpp', f'@m@_cpu.cpp'] + if arb_with_gpu + generated_files += [f'@m@_gpu.cu', f'@m@_gpu.cpp'] + endif mech_srcs += custom_target(f'mechanism:@name@:@m@', input : modfile, - output : [f'@m@.hpp', f'@m@_cpu.cpp'], + output : generated_files, command : [modcc, modfile, '-N', f'arb::@name@_catalogue', '-o', meson.current_build_dir()+'/'+m, arb_modcc_flags]) endforeach diff --git a/mechanisms/default/meson.build b/mechanisms/default/meson.build index 042242d56b..6f2632f1ff 100644 --- a/mechanisms/default/meson.build +++ b/mechanisms/default/meson.build @@ -4,9 +4,13 @@ mechs = ['exp2syn', 'expsyn', 'expsyn_stdp', 'gj', 'hh', 'kamt', 'kdrmt', 'nax', mech_srcs = [] foreach m: mechs modfile = meson.current_source_dir()+f'/@m@.mod' + generated_files = [f'@m@.hpp', f'@m@_cpu.cpp'] + if arb_with_gpu + generated_files += [f'@m@_gpu.cu', f'@m@_gpu.cpp'] + endif mech_srcs += custom_target(f'mechanism:@name@:@m@', input : modfile, - output : [f'@m@.hpp', f'@m@_cpu.cpp'], + output : generated_files, command : [modcc, modfile, '-N', f'arb::@name@_catalogue', '-o', meson.current_build_dir()+'/'+m, arb_modcc_flags]) endforeach diff --git a/mechanisms/meson.build b/mechanisms/meson.build index dd9125b7f3..da212b1934 100644 --- a/mechanisms/meson.build +++ b/mechanisms/meson.build @@ -1,6 +1,9 @@ gen_cat = find_program('generate_catalogue') -arb_modcc_flags += ['-t', 'cpu'] +arb_modcc_flags += ['-t', 'cpu', '-t', 'gpu'] catalogue_options = ['-A', 'arbor', '-I', '', '-B', 'multicore'] +if arb_with_gpu + catalogue_options += ['-B', 'gpu'] +endif catalogue_sources = [] diff --git a/meson.build b/meson.build index d5dba9ab15..03aadb63cc 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,7 @@ -project('arbor', 'cpp', - 'cuda', - version: '0.5.3-dev', +project('arbor', + ['cpp'], + version: files('VERSION'), + meson_version: '>=0.60', default_options : ['buildtype=debug', 'cpp_std=c++17', 'default_library=static'], license: 'BSD') @@ -43,21 +44,23 @@ if arb_with_vectorize arb_modcc_flags += '--simd' endif -# arb_config_defs collects configure-time defines for arbor, arborenv, -# arborio, of the form ARB_HAVE_XXX. -# These defines should _not_ be used in any installed public headers. -arb_config_defs = [] +# set configure-time defines for arbor, arborenv and arborio +# of the form ARB_HAVE_XXX (private) and ARB_XXX (public) +arb_public_defs = [] +arb_private_defs = [] if arb_with_mpi - arb_config_defs += '-DARB_HAVE_MPI' + arb_public_defs += '-DARB_HAVE_MPI' endif +# TODO: configuration of hip-clang and cuda-clang if arb_with_gpu - arb_config_defs += '-DARB_HAVE_GPU' + arb_public_defs += '-DARB_HAVE_GPU' + arb_public_defs += '-DARB_CUDA' endif if arb_with_profiling - arb_config_defs += '-DARB_HAVE_PROFIILING' + arb_public_defs += '-DARB_HAVE_PROFIILING' endif if arb_with_assertions - arb_config_defs += '-DARB_HAVE_ASSERTIONS' + arb_public_defs += '-DARB_HAVE_ASSERTIONS' endif # Set optimization/target-specific architecture flags @@ -77,16 +80,31 @@ else arb_target_args = arb_target_flags.strip().split() endif -arbor_private_args = ['-fvisibility=hidden'] + arb_target_args + arb_config_defs +# Append the target arguments with '-Xcompiler=' for passing through the nvcc compiler wrapper +cuda_target_args = [] +foreach arg: arb_target_args + cuda_target_args += '-Xcompiler=' + arg +endforeach -message('arbor target flags:', arb_target_args) -message('arbor defines :', arb_config_defs) -message('arbor moddcc flags:', arb_modcc_flags) -message('arbor full flags :', arbor_private_args) +arbor_private_args = ['-fvisibility=hidden'] + arb_target_args + arb_private_defs + arb_public_defs +arbor_cuda_private_args = ['-Xcompiler=-fvisibility=hidden'] + cuda_target_args + arb_private_defs + arb_public_defs + +message('arbor target flags :', arb_target_args) +message('arbor public defines :', arb_public_defs) +message('arbor private defines:', arb_private_defs) +message('arbor moddcc flags :', arb_modcc_flags) +message('arbor full flags :', arbor_private_args) +message('arbor cuda flags :', arbor_cuda_private_args) # # Set up all dependencies # +# + +if arb_with_gpu + add_languages('cuda', native: false, required: true) + dep_cuda = dependency('cuda', version : '>=10', modules : []) +endif # find dependencies if arb_with_bundled_libs @@ -138,8 +156,8 @@ endif pkg = import('pkgconfig') pkg.generate(lib_arb, # we can append additional flags for the compilers here (like our optimization flags) - extra_cflags: arb_target_args, + extra_cflags: arb_target_args + arb_public_defs, # The variables and unescaped_variables can be used to pass additional flags and configuration for downstream consumers. #unescaped_variables: ['CFLAGS_GPU=-sm80 -O2'], - variables: ['configured_options=GPU;MPI']) + variables: ['configured_options=CUDA,MPI']) pkg.generate(lib_arborio) diff --git a/test/unit/dummy/meson.build b/test/unit/dummy/meson.build index cd1a360c4e..0affe503c7 100644 --- a/test/unit/dummy/meson.build +++ b/test/unit/dummy/meson.build @@ -5,9 +5,13 @@ namespace = f'arb::@name@_catalogue' dummy_mech_sources = [] foreach m: dummy_mechs modfile = meson.current_source_dir()+f'/@m@.mod' + generated_files = [f'@m@.hpp', f'@m@_cpu.cpp'] + if arb_with_gpu + generated_files += [f'@m@_gpu.cu', f'@m@_gpu.cpp'] + endif dummy_mech_sources += custom_target(f'mechanism:@name@:@m@', input : modfile, - output : [f'@m@.hpp', f'@m@_cpu.cpp'], + output : generated_files, command : [modcc, modfile, '-N', namespace, '-o', meson.current_build_dir()+'/'+m, arb_modcc_flags]) endforeach @@ -20,6 +24,7 @@ dummy_catalogue = shared_library('dummy-catalogue', sources: [dummy_mech_sources, dummy_catalogue_source], dependencies: [dep_arb], cpp_args : ['-DSTANDALONE'] + arbor_private_args, + cuda_args: arbor_cuda_private_args, install: false, - build_by_default: true) + build_by_default: false) diff --git a/test/unit/mechanisms/meson.build b/test/unit/mechanisms/meson.build index 707cdec072..b4f48a984c 100644 --- a/test/unit/mechanisms/meson.build +++ b/test/unit/mechanisms/meson.build @@ -44,9 +44,13 @@ name = 'unit' unit_mech_sources = [] foreach m: unit_mechs modfile = meson.current_source_dir()+f'/@m@.mod' + generated_files = [f'@m@.hpp', f'@m@_cpu.cpp'] + if arb_with_gpu + generated_files += [f'@m@_gpu.cu', f'@m@_gpu.cpp'] + endif unit_mech_sources += custom_target(f'mechanism:@name@:@m@', input : modfile, - output : [f'@m@.hpp', f'@m@_cpu.cpp'], + output : generated_files, command : [modcc, modfile, '-N', 'testing', '-o', meson.current_build_dir()+'/'+m, arb_modcc_flags]) endforeach diff --git a/test/unit/meson.build b/test/unit/meson.build index 3f036c0237..a205ee1836 100644 --- a/test/unit/meson.build +++ b/test/unit/meson.build @@ -114,7 +114,8 @@ arbor_unit_defines = [ unit = executable('unit', sources: [unit_sources, unit_mech_sources], include_directories: [inc_arb_public, inc_arb_private, inc_arborio_private], - cpp_args : arbor_private_args + arbor_unit_defines, + cpp_args: arbor_private_args + arbor_unit_defines, + cuda_args: arbor_cuda_private_args, dependencies: [dep_arb, dep_arborio, dep_arborsup, dep_arborenv, dep_gtest, dep_arb_internal], link_with: [dummy_catalogue], build_by_default: false, From 7f8796c97dbdaa999393aadadbb134735c51f0ff Mon Sep 17 00:00:00 2001 From: bcumming Date: Mon, 3 Jan 2022 08:38:43 +0100 Subject: [PATCH 22/34] clean up configurations --- arbor/include/arbor/meson.build | 27 +++------------------------ meson.build | 27 ++++++++++++++++++++++++--- 2 files changed, 27 insertions(+), 27 deletions(-) diff --git a/arbor/include/arbor/meson.build b/arbor/include/arbor/meson.build index 3483337e69..884e85322e 100644 --- a/arbor/include/arbor/meson.build +++ b/arbor/include/arbor/meson.build @@ -23,35 +23,14 @@ version_path=meson.current_build_dir()+'/version.hpp' if not fs.is_file(version_path) conf = configuration_data() - # todo: get this version number either from VERSION file, or from project options conf.set('version', arb_version) conf.set('version_major', arb_version_major) conf.set('version_minor', arb_version_minor) conf.set('version_patch', arb_version_patch) conf.set('version_dev', arb_version_dev) - options = [] - if arb_with_assertions - options += 'ASSERT' - endif - if arb_with_mpi - options += 'MPI' - endif - if arb_with_gpu - options += 'GPU' - endif - if arb_with_neuroml - options += 'NEUROML' - endif - if arb_with_profiling - options += 'PROFILE' - endif - if arb_with_vectorize - options += 'VECTORIZE' - endif - # set all of the #defined values - foreach opt: options + foreach opt: arb_configurations conf.set(f'ARB_@opt@_ENABLED', true) endforeach conf.set('ARB_VERSION_MAJOR', arb_version_major) @@ -61,12 +40,12 @@ if not fs.is_file(version_path) gitlog = run_command('../gitlog').stdout().strip() buildtype = get_option('buildtype').to_upper() - optionstring = ';'.join(options) + configstring = ';'.join(arb_configurations) conf.set_quoted('ARB_VERSION', arb_version) conf.set_quoted('ARB_SOURCE_ID', gitlog) conf.set_quoted('ARB_ARCH', arb_arch) conf.set_quoted('ARB_BUILD_CONFIG', buildtype) - build_id = f'source_id=@gitlog@;version=@arb_version@;arch=@arb_arch@;config=@buildtype@;@optionstring@' + build_id = f'source_id=@gitlog@;version=@arb_version@;arch=@arb_arch@;config=@buildtype@;@configstring@' conf.set_quoted('ARB_FULL_BUILD_ID', build_id) configure_file(input : 'version.hpp.in', diff --git a/meson.build b/meson.build index 03aadb63cc..f148494bb8 100644 --- a/meson.build +++ b/meson.build @@ -46,21 +46,33 @@ endif # set configure-time defines for arbor, arborenv and arborio # of the form ARB_HAVE_XXX (private) and ARB_XXX (public) +# TODO: the ARB_HAVE_XXX are currently public arb_public_defs = [] arb_private_defs = [] +arb_configurations = [] if arb_with_mpi arb_public_defs += '-DARB_HAVE_MPI' + arb_configurations += 'MPI' endif # TODO: configuration of hip-clang and cuda-clang if arb_with_gpu arb_public_defs += '-DARB_HAVE_GPU' arb_public_defs += '-DARB_CUDA' + arb_configurations += 'GPU' endif if arb_with_profiling arb_public_defs += '-DARB_HAVE_PROFIILING' + arb_configurations += 'PROFILE' endif if arb_with_assertions arb_public_defs += '-DARB_HAVE_ASSERTIONS' + arb_configurations += 'ASSERT' +endif +if arb_with_neuroml + arb_configurations += 'NEUROML' +endif +if arb_with_vectorize + arb_configurations += 'VECTORIZE' endif # Set optimization/target-specific architecture flags @@ -99,7 +111,6 @@ message('arbor cuda flags :', arbor_cuda_private_args) # # Set up all dependencies # -# if arb_with_gpu add_languages('cuda', native: false, required: true) @@ -153,11 +164,21 @@ endif # set up pkgconfig # +# TODO: output all flags etc +pkg_config_variables = ['arbconfiguration='+','.join(arb_configurations)] +pkg_config_unescaped_variables = [] +if arb_with_gpu + pkg_config_unescaped_variables += 'CudaCflags='+' '.join(cuda_target_args+arbor_cuda_private_args) +endif + pkg = import('pkgconfig') pkg.generate(lib_arb, + description: 'A high-performance library for computational neuroscience simulations', + url: 'https://arbor-sim.org/', # we can append additional flags for the compilers here (like our optimization flags) extra_cflags: arb_target_args + arb_public_defs, # The variables and unescaped_variables can be used to pass additional flags and configuration for downstream consumers. - #unescaped_variables: ['CFLAGS_GPU=-sm80 -O2'], - variables: ['configured_options=CUDA,MPI']) + unescaped_variables: pkg_config_unescaped_variables, + variables: pkg_config_variables +) pkg.generate(lib_arborio) From 1b7dfd8036f02cf099b46e626e697a70a7d532e8 Mon Sep 17 00:00:00 2001 From: bcumming Date: Mon, 3 Jan 2022 16:06:45 +0100 Subject: [PATCH 23/34] at cuda tests to unit tests --- meson.build | 2 +- test/gtest-all.cpp | 4 ++-- test/unit/meson.build | 21 ++++++++++++++++++--- 3 files changed, 21 insertions(+), 6 deletions(-) diff --git a/meson.build b/meson.build index f148494bb8..5435667521 100644 --- a/meson.build +++ b/meson.build @@ -2,7 +2,7 @@ project('arbor', ['cpp'], version: files('VERSION'), meson_version: '>=0.60', - default_options : ['buildtype=debug', 'cpp_std=c++17', 'default_library=static'], + default_options : ['buildtype=release', 'cpp_std=c++17', 'default_library=static'], license: 'BSD') arb_with_assertions = get_option('arb_with_assertions') diff --git a/test/gtest-all.cpp b/test/gtest-all.cpp index 641a64833c..6839c03444 100644 --- a/test/gtest-all.cpp +++ b/test/gtest-all.cpp @@ -7825,14 +7825,14 @@ static int ExecDeathTestChildMain(void* child_arg) { // correct answer. void StackLowerThanAddress(const void* ptr, bool* result) GTEST_NO_INLINE_; void StackLowerThanAddress(const void* ptr, bool* result) { - int dummy; + int dummy=0; *result = (&dummy < ptr); } // Make sure AddressSanitizer does not tamper with the stack here. GTEST_ATTRIBUTE_NO_SANITIZE_ADDRESS_ bool StackGrowsDown() { - int dummy; + int dummy=0; bool result; StackLowerThanAddress(&dummy, &result); return result; diff --git a/test/unit/meson.build b/test/unit/meson.build index a205ee1836..e4c7803752 100644 --- a/test/unit/meson.build +++ b/test/unit/meson.build @@ -1,7 +1,7 @@ subdir('mechanisms') subdir('dummy') -unit_sources = [ +unit_sources = files( 'test_abi.cpp', 'test_asc.cpp', 'test_any_cast.cpp', @@ -94,10 +94,25 @@ unit_sources = [ 'mech_private_field_access.cpp', 'stats.cpp', 'unit_test_catalogue.cpp' -] +) if arb_with_neuroml - unit_sources += 'test_nml_morphology.cpp' + unit_sources += files('test_nml_morphology.cpp') +endif + +if arb_with_gpu + unit_sources += files( + 'test_intrin.cu', + 'test_gpu_stack.cu', + 'test_multi_event_stream_gpu.cu', + 'test_reduce_by_key.cu', + 'test_matrix_cpuvsgpu.cpp', + 'test_matrix_gpu.cpp', + 'test_mc_cell_group_gpu.cpp', + 'test_multi_event_stream_gpu.cpp', + 'test_spikes_gpu.cpp', + 'test_vector_gpu.cpp' + ) endif unit_data_dir = meson.current_source_dir() + '/../swc' From 86fd932c3adcbfd1a6b56e4a1b705e07ac0a5211 Mon Sep 17 00:00:00 2001 From: bcumming Date: Fri, 7 Jan 2022 15:11:01 +0100 Subject: [PATCH 24/34] make private assertions... private --- meson.build | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/meson.build b/meson.build index 5435667521..30658b87d3 100644 --- a/meson.build +++ b/meson.build @@ -46,26 +46,25 @@ endif # set configure-time defines for arbor, arborenv and arborio # of the form ARB_HAVE_XXX (private) and ARB_XXX (public) -# TODO: the ARB_HAVE_XXX are currently public arb_public_defs = [] arb_private_defs = [] arb_configurations = [] if arb_with_mpi - arb_public_defs += '-DARB_HAVE_MPI' + arb_private_defs += '-DARB_HAVE_MPI' arb_configurations += 'MPI' endif # TODO: configuration of hip-clang and cuda-clang if arb_with_gpu - arb_public_defs += '-DARB_HAVE_GPU' + arb_private_defs += '-DARB_HAVE_GPU' arb_public_defs += '-DARB_CUDA' arb_configurations += 'GPU' endif if arb_with_profiling - arb_public_defs += '-DARB_HAVE_PROFIILING' + arb_private_defs += '-DARB_HAVE_PROFIILING' arb_configurations += 'PROFILE' endif if arb_with_assertions - arb_public_defs += '-DARB_HAVE_ASSERTIONS' + arb_private_defs += '-DARB_HAVE_ASSERTIONS' arb_configurations += 'ASSERT' endif if arb_with_neuroml From 9fe98ed8d2339727181558674b7ea3658ab65995 Mon Sep 17 00:00:00 2001 From: bcumming Date: Tue, 18 Jan 2022 13:58:27 +0100 Subject: [PATCH 25/34] wip --- arbor/meson.build | 48 +++++----- lmorpho/meson.build | 4 +- mechanisms/meson.build | 20 +++++ mechanisms/meson.build.in | 55 ++++++++++++ meson.build | 6 +- python/meson.build | 7 +- scripts/meson-cat.in | 179 ++++++++++++++++++++++++++++++++++++++ 7 files changed, 293 insertions(+), 26 deletions(-) create mode 100644 mechanisms/meson.build.in create mode 100755 scripts/meson-cat.in diff --git a/arbor/meson.build b/arbor/meson.build index 687f50f25b..c746a7473d 100644 --- a/arbor/meson.build +++ b/arbor/meson.build @@ -26,6 +26,7 @@ arb_src = [ 'mechinfo.cpp', 'memory/gpu_wrappers.cpp', 'memory/util.cpp', + 'morph/cv_data.cpp', 'morph/embed_pwlin.cpp', 'morph/label_dict.cpp', 'morph/locset.cpp', @@ -59,34 +60,39 @@ arb_src = [ 'version.cpp', ] +mpi_src = [ + 'communication/mpi.cpp', + 'communication/mpi_error.cpp', + 'communication/mpi_context.cpp', +] + +gpu_src = [ + 'backends/gpu/shared_state.cpp', + 'backends/gpu/stimulus.cu', + 'backends/gpu/threshold_watcher.cu', + 'backends/gpu/matrix_assemble.cu', + 'backends/gpu/matrix_fine.cu', + 'backends/gpu/matrix_solve.cu', + 'backends/gpu/multi_event_stream.cpp', + 'backends/gpu/multi_event_stream.cu', + 'backends/gpu/shared_state.cu', + 'backends/gpu/forest.cpp', + 'backends/gpu/stimulus.cu', + 'backends/gpu/threshold_watcher.cu', + 'memory/fill.cu', +] + if arb_with_mpi - arb_src += [ - 'communication/mpi.cpp', - 'communication/mpi_error.cpp', - 'communication/mpi_context.cpp', - ] + arb_src += mpi_src endif - if arb_with_gpu - arb_src += [ - 'backends/gpu/shared_state.cpp', - 'backends/gpu/stimulus.cu', - 'backends/gpu/threshold_watcher.cu', - 'backends/gpu/matrix_assemble.cu', - 'backends/gpu/matrix_fine.cu', - 'backends/gpu/matrix_solve.cu', - 'backends/gpu/multi_event_stream.cpp', - 'backends/gpu/multi_event_stream.cu', - 'backends/gpu/shared_state.cu', - 'backends/gpu/forest.cpp', - 'backends/gpu/stimulus.cu', - 'backends/gpu/threshold_watcher.cu', - 'memory/fill.cu', - ] + arb_src += gpu_src endif +# generate version.hpp header subdir('include/arbor') +# set dependencies for libarbor dep_arb_internal = [dep_threads, dep_random123, dep_dl] if arb_with_mpi dep_arb_internal += dep_mpi diff --git a/lmorpho/meson.build b/lmorpho/meson.build index dea5c71a9e..40ae98a7ae 100644 --- a/lmorpho/meson.build +++ b/lmorpho/meson.build @@ -1,7 +1,7 @@ lmorpho = executable('lmorpho', sources: ['lmorpho.cpp', 'lsystem.cpp', 'lsys_models.cpp'], - dependencies: [dep_arb, dep_arborsup, dep_arborio, dep_tinyopt], + dependencies: [dep_arborsup, dep_arborio, dep_arb, dep_tinyopt], include_directories: [inc_arb_public], install: false, - build_by_default: true) + build_by_default: false) diff --git a/mechanisms/meson.build b/mechanisms/meson.build index da212b1934..d00978bf55 100644 --- a/mechanisms/meson.build +++ b/mechanisms/meson.build @@ -11,3 +11,23 @@ subdir('default') subdir('allen') subdir('bbp') +# Configure the meson.build script that will be used to generate external +# mechanism catalogues. +mech_meson_configuration = configuration_data() + +mech_meson_configuration.set('arb_version', arb_version) +mech_meson_configuration.set('prefix_source', meson.project_source_root()) +mech_meson_configuration.set('prefix', get_option('prefix')) +mech_meson_configuration.set('with_gpu', (arb_with_gpu? 'true': 'false')) +mech_meson_configuration.set('modcc_flags', + '\''+'\', \''.join(arb_modcc_flags)+'\'') +mech_meson_configuration.set('private_args', + '\''+'\', \''.join(arbor_private_args)+'\'') +mech_meson_configuration.set('cuda_private_args', + '\''+'\', \''.join(arbor_cuda_private_args)+'\'') +mech_meson_configuration.set('catalogue_options', + '\''+'\', \''.join(catalogue_options)+'\'') + +configure_file(input : 'meson.build.in', + output : 'meson.build', + configuration : mech_meson_configuration) diff --git a/mechanisms/meson.build.in b/mechanisms/meson.build.in new file mode 100644 index 0000000000..04e7fe7f09 --- /dev/null +++ b/mechanisms/meson.build.in @@ -0,0 +1,55 @@ +project('${cat-name}', + ['cpp'], + version: '@arb_version@', + meson_version: '>=0.60', + default_options: ['buildtype=release', 'cpp_std=c++17', 'default_library=shared'] +) + +gen_cat = find_program('generate_catalogue') +modcc = find_program('modcc') + +ipaths = ['@prefix_source@'/'include', '@prefix@'/'include'] + +arb_modcc_flags = [@modcc_flags@] + +arb_with_gpu = @with_gpu@ +if arb_with_gpu + add_languages('cuda', native: false, required: true) + dep_cuda = dependency('cuda', version: '>=10', modules: []) +endif + +arbor_private_args = [@private_args@] +arbor_cuda_private_args = [@cuda_private_args@] + +catalogue_options = [@catalogue_options@] + + +mechs = [${mech-list}] +name = '${name}' + + +mech_sources = [] +foreach m: mechs + modfile = meson.current_source_dir() / f'@m@.mod' + generated_files = [f'@m@.hpp', f'@m@_cpu.cpp'] + if arb_with_gpu + generated_files += [f'@m@_gpu.cu', f'@m@_gpu.cpp'] + endif + mech_sources += custom_target(f'mechanism:@name@:@m@', + input : modfile, + output : generated_files, + command : [modcc, modfile, '-N', f'arb::${name}_catalogue', '-o', meson.current_build_dir() / m, arb_modcc_flags]) +endforeach + +catalogue_source = f'${name}_catalogue.cpp' +mech_catalogue = custom_target(catalogue_source, + output: catalogue_source, + command : [gen_cat, catalogue_options, '-C', name, '-N', f'arb::@name@_catalogue', mechs, '-o', '@OUTPUT@']) +catalogue = shared_library(f'@name@-catalogue', + name_prefix: '', + sources: [mech_sources, mech_catalogue], + include_directories: [ipaths], + cpp_args : ['-DSTANDALONE'] + arbor_private_args, + cuda_args: arbor_cuda_private_args, + build_by_default: true) + diff --git a/meson.build b/meson.build index 30658b87d3..14099996f9 100644 --- a/meson.build +++ b/meson.build @@ -2,7 +2,7 @@ project('arbor', ['cpp'], version: files('VERSION'), meson_version: '>=0.60', - default_options : ['buildtype=release', 'cpp_std=c++17', 'default_library=static'], + default_options : ['buildtype=debug', 'cpp_std=c++17', 'default_library=static'], license: 'BSD') arb_with_assertions = get_option('arb_with_assertions') @@ -112,10 +112,12 @@ message('arbor cuda flags :', arbor_cuda_private_args) # if arb_with_gpu + dep_cuda = dependency('cuda', version: '>=10', modules: [], required: true) add_languages('cuda', native: false, required: true) - dep_cuda = dependency('cuda', version : '>=10', modules : []) endif +#message('xxxxxxxxxxxxxxxxxx: '+dep_cuda.get_variable(internal: 'libdir')) + # find dependencies if arb_with_bundled_libs dep_libjson = declare_dependency(include_directories: 'ext/json/single_include') diff --git a/python/meson.build b/python/meson.build index 67640f0b7f..95687ff3f9 100644 --- a/python/meson.build +++ b/python/meson.build @@ -28,9 +28,14 @@ endif python3 = import('python').find_installation('python3') dep_python = dependency('python3', required: true) +py_dependencies = [dep_python, dep_pybind, dep_arborio, dep_arb] +if arb_with_gpu + py_dependencies += dep_cuda +endif + pyarb = python3.extension_module('_arbor', sources: pyarb_srcs, - dependencies : [dep_python, dep_pybind, dep_arborio, dep_arb], + dependencies : py_dependencies, link_language : 'cpp', override_options: [ 'cpp_rtti=true', diff --git a/scripts/meson-cat.in b/scripts/meson-cat.in new file mode 100755 index 0000000000..8b647eca10 --- /dev/null +++ b/scripts/meson-cat.in @@ -0,0 +1,179 @@ +#!/usr/bin/env python3 + +import subprocess as sp +import sys +from tempfile import mkdtemp, TemporaryDirectory +import os +from pathlib import Path +import shutil +import stat +import string +import argparse +import re +def parse_arguments(): + def append_slash(s): + return s+'/' if s and not s.endswith('/') else s + + class ConciseHelpFormatter(argparse.HelpFormatter): + def __init__(self, **kwargs): + super(ConciseHelpFormatter, self).__init__(max_help_position=20, **kwargs) + + def _format_action_invocation(self, action): + if not action.option_strings: + return super(ConciseHelpFormatter, self)._format_action_invocation(action) + else: + optstr = ', '.join(action.option_strings) + if action.nargs==0: + return optstr + else: + return optstr+' '+self._format_args(action, action.dest.upper()) + + parser = argparse.ArgumentParser( + description = 'Generate dynamic catalogue and build it into a shared object.', + usage = '%(prog)s catalogue_name mod_source_dir', + add_help = False, + formatter_class = ConciseHelpFormatter) + + parser.add_argument('name', + metavar='name', + type=str, + help='Catalogue name.') + + parser.add_argument('modpfx', + metavar='modpfx', + type=str, + help='Directory name where *.mod files live.') + + parser.add_argument('-v', '--verbose', + action='store_true', + help='Verbose.') + + parser.add_argument('-q', '--quiet', + action='store_true', + help='Less output.') + + parser.add_argument('-d', '--debug', + nargs="?", + metavar="path", + const=True, + default=False, + help='Don\'t clean up the generated temp cpp code.' + + ' Can be a target path for the generated code.') + + parser.add_argument('-h', '--help', + action='help', + help='Display this help and exit.') + + + return vars(parser.parse_args()) + +args = parse_arguments() +pwd = Path.cwd() +name = args['name'] # TODO: instead of changing name to fit requirements, assert that provided name matches requirements. + +mod_dir = pwd / Path(args['modpfx']) +mods = [ f[:-4] for f in os.listdir(mod_dir) if f.endswith('.mod') ] +verbose = args['verbose'] and not args['quiet'] +quiet = args['quiet'] +debug = args['debug'] + +mesonbuild = f""" +cmake_minimum_required(VERSION 3.9) +project({name}-cat LANGUAGES CXX) + +find_package(arbor REQUIRED) + +set(CMAKE_BUILD_TYPE release) +set(CMAKE_CXX_COMPILER ${{ARB_CXX}}) +set(CMAKE_CXX_FLAGS ${{ARB_CXX_FLAGS}}) + +include(BuildModules.cmake) + +set(ARB_WITH_EXTERNAL_MODCC true) +find_program(modcc NAMES modcc) + +make_catalogue( + NAME {name} + SOURCES "${{CMAKE_CURRENT_SOURCE_DIR}}/mod" + OUTPUT "CAT_{name.upper()}_SOURCES" + MECHS {' '.join(mods)} + PREFIX @ARB_INSTALL_DATADIR@ + CXX_FLAGS_TARGET ${{ARB_CXX_FLAGS_TARGET}} + STANDALONE ON + VERBOSE {"ON" if verbose else "OFF"}) +""" + +if not quiet: + print(f"Building catalogue '{name}' from mechanisms in {mod_dir}") + if debug: + print("Debug mode enabled.") + for m in mods: + print(" *", m) + +if debug: + # Overwrite the local reference to `TemporaryDirectory` with a context + # manager that doesn't clean up the build folder so that the generated cpp + # code can be debugged + class TemporaryDirectory: + def __enter__(*args, **kwargs): + if isinstance(debug, str): + path = os.path.abspath(debug) + try: + os.makedirs(path, exist_ok=False) + except FileExistsError: + sys.stderr.write(f"Error: Debug destination '{path}' already exists.\n") + sys.stderr.flush() + exit(1) + else: + path = mkdtemp() + print(f"Building debug code in '{path}'.") + return path + + def __exit__(*args, **kwargs): + pass + +with TemporaryDirectory() as tmp: + tmp = Path(tmp) + shutil.copytree(mod_dir, tmp / 'mod') + os.mkdir(tmp / 'build') + os.chdir(tmp / 'build') + with open(tmp / 'CMakeLists.txt', 'w') as fd: + fd.write(cmake) + shutil.copy2(f'@ARB_INSTALL_DATADIR@/BuildModules.cmake', tmp) + shutil.copy2(f'@ARB_INSTALL_DATADIR@/generate_catalogue', tmp) + cmake_cmd = 'cmake ..' + make_cmd = 'make' + if verbose: + out, err = (None, None) + make_cmd += ' VERBOSE=1' + else: + out, err = (sp.PIPE, sp.PIPE) + try: + sp.run(cmake_cmd, shell=True, check=True, stdout=out, stderr=err) + sp.run(make_cmd, shell=True, check=True, stdout=out, stderr=err) + shutil.copy2(f'{name}-catalogue.so', pwd) + except sp.CalledProcessError as e: + import sys, traceback as tb + + if not verbose: + # Not in verbose mode, so we have captured the + # `stdout` and `stderr` and can print it to the user. + sys.stdout.write("Build log:\n") + sys.stdout.write(e.stdout.decode()) + sys.stderr.write(tb.format_exc() + " Error:\n\n") + sys.stderr.write(e.stderr.decode()) + else: + # In verbose mode the outputs weren't captured and + # have been streamed to `stdout` and `stderr` already. + sys.stderr.write( + "Catalogue building error occurred." + + " Check stdout log for underlying error," + + " or omit verbose flag to capture it." + ) + sys.stdout.flush() + sys.stderr.flush() + exit(e.returncode) + + if not quiet: + print(f'Catalogue has been built and copied to {pwd}/{name}-catalogue.so') + From 11ef3aa0fc582300827a65f857039a33f2f731f6 Mon Sep 17 00:00:00 2001 From: bcumming Date: Thu, 27 Jan 2022 16:40:58 +0100 Subject: [PATCH 26/34] pkgconfig does not like empty variable definitions --- meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 14099996f9..026edd51b5 100644 --- a/meson.build +++ b/meson.build @@ -166,7 +166,8 @@ endif # # TODO: output all flags etc -pkg_config_variables = ['arbconfiguration='+','.join(arb_configurations)] +#pkg_config_variables = ['arbconfiguration='+','.join(arb_configurations)] +pkg_config_variables = [] pkg_config_unescaped_variables = [] if arb_with_gpu pkg_config_unescaped_variables += 'CudaCflags='+' '.join(cuda_target_args+arbor_cuda_private_args) From cc0e8575f46084a6b99d73d5498ef28de5aabc70 Mon Sep 17 00:00:00 2001 From: bcumming Date: Thu, 27 Jan 2022 17:15:09 +0100 Subject: [PATCH 27/34] fix warnings in most recent meson versions --- arbor/include/arbor/meson.build | 6 +++--- arbor/meson.build | 2 ++ mechanisms/meson.build.in | 15 +++++++-------- 3 files changed, 12 insertions(+), 11 deletions(-) diff --git a/arbor/include/arbor/meson.build b/arbor/include/arbor/meson.build index 884e85322e..cbaa4f7f34 100644 --- a/arbor/include/arbor/meson.build +++ b/arbor/include/arbor/meson.build @@ -13,9 +13,9 @@ fs = import('fs') assert_macro_path=meson.current_build_dir()+'/assert_macro.hpp' if not fs.is_file(assert_macro_path) if arb_with_assertions - run_command('cp', 'assert_macro.hpp.enabled', assert_macro_path) + run_command('cp', 'assert_macro.hpp.enabled', assert_macro_path, check: true) else - run_command('cp', 'assert_macro.hpp.disabled', assert_macro_path) + run_command('cp', 'assert_macro.hpp.disabled', assert_macro_path, check: true) endif endif @@ -38,7 +38,7 @@ if not fs.is_file(version_path) conf.set('ARB_VERSION_PATCH', arb_version_patch) conf.set_quoted('ARB_VERSION_DEV', arb_version_dev) - gitlog = run_command('../gitlog').stdout().strip() + gitlog = run_command('../gitlog', check: true).stdout().strip() buildtype = get_option('buildtype').to_upper() configstring = ';'.join(arb_configurations) conf.set_quoted('ARB_VERSION', arb_version) diff --git a/arbor/meson.build b/arbor/meson.build index c746a7473d..b77506cd88 100644 --- a/arbor/meson.build +++ b/arbor/meson.build @@ -10,6 +10,8 @@ arb_src = [ 'cell_group_factory.cpp', 'common_types_io.cpp', 'cv_policy.cpp', + 'domain_decomposition.cpp', + 'domdecexcept.cpp', 'execution_context.cpp', 'gpu_context.cpp', 'event_binner.cpp', diff --git a/mechanisms/meson.build.in b/mechanisms/meson.build.in index 04e7fe7f09..e3082ec102 100644 --- a/mechanisms/meson.build.in +++ b/mechanisms/meson.build.in @@ -27,25 +27,24 @@ catalogue_options = [@catalogue_options@] mechs = [${mech-list}] name = '${name}' - mech_sources = [] foreach m: mechs - modfile = meson.current_source_dir() / f'@m@.mod' - generated_files = [f'@m@.hpp', f'@m@_cpu.cpp'] + modfile = meson.current_source_dir() / f'\@m\@.mod' + generated_files = [f'\@m\@.hpp', f'\@m\@_cpu.cpp'] if arb_with_gpu - generated_files += [f'@m@_gpu.cu', f'@m@_gpu.cpp'] + generated_files += [f'\@m\@_gpu.cu', f'\@m\@_gpu.cpp'] endif - mech_sources += custom_target(f'mechanism:@name@:@m@', + mech_sources += custom_target(f'mechanism:\@name\@:\@m\@', input : modfile, output : generated_files, - command : [modcc, modfile, '-N', f'arb::${name}_catalogue', '-o', meson.current_build_dir() / m, arb_modcc_flags]) + command : [modcc, modfile, '-N', f'arb::\@name\@_catalogue', '-o', meson.current_build_dir() / m, arb_modcc_flags]) endforeach catalogue_source = f'${name}_catalogue.cpp' mech_catalogue = custom_target(catalogue_source, output: catalogue_source, - command : [gen_cat, catalogue_options, '-C', name, '-N', f'arb::@name@_catalogue', mechs, '-o', '@OUTPUT@']) -catalogue = shared_library(f'@name@-catalogue', + command : [gen_cat, catalogue_options, '-C', name, '-N', f'arb::\@name\@_catalogue', mechs, '-o', '\@OUTPUT\@']) +catalogue = shared_library(f'\@name\@-catalogue', name_prefix: '', sources: [mech_sources, mech_catalogue], include_directories: [ipaths], From 87dce8dd5ac3d71191cf6eee84eb2cdbdcd5e67e Mon Sep 17 00:00:00 2001 From: bcumming Date: Fri, 28 Jan 2022 09:07:47 +0100 Subject: [PATCH 28/34] wip external catalogue workflow --- mechanisms/meson.build | 21 +---- mechanisms/meson.build.in | 9 +- meson.build | 3 +- scripts/meson-cat.in | 179 -------------------------------------- scripts/meson.build | 21 +++++ 5 files changed, 27 insertions(+), 206 deletions(-) delete mode 100755 scripts/meson-cat.in create mode 100644 scripts/meson.build diff --git a/mechanisms/meson.build b/mechanisms/meson.build index d00978bf55..350e9fa87d 100644 --- a/mechanisms/meson.build +++ b/mechanisms/meson.build @@ -11,23 +11,4 @@ subdir('default') subdir('allen') subdir('bbp') -# Configure the meson.build script that will be used to generate external -# mechanism catalogues. -mech_meson_configuration = configuration_data() - -mech_meson_configuration.set('arb_version', arb_version) -mech_meson_configuration.set('prefix_source', meson.project_source_root()) -mech_meson_configuration.set('prefix', get_option('prefix')) -mech_meson_configuration.set('with_gpu', (arb_with_gpu? 'true': 'false')) -mech_meson_configuration.set('modcc_flags', - '\''+'\', \''.join(arb_modcc_flags)+'\'') -mech_meson_configuration.set('private_args', - '\''+'\', \''.join(arbor_private_args)+'\'') -mech_meson_configuration.set('cuda_private_args', - '\''+'\', \''.join(arbor_cuda_private_args)+'\'') -mech_meson_configuration.set('catalogue_options', - '\''+'\', \''.join(catalogue_options)+'\'') - -configure_file(input : 'meson.build.in', - output : 'meson.build', - configuration : mech_meson_configuration) +install_data('generate_catalogue', install_dir: get_option('bindir')) diff --git a/mechanisms/meson.build.in b/mechanisms/meson.build.in index e3082ec102..fea9f547a5 100644 --- a/mechanisms/meson.build.in +++ b/mechanisms/meson.build.in @@ -1,4 +1,4 @@ -project('${cat-name}', +project('{name}', ['cpp'], version: '@arb_version@', meson_version: '>=0.60', @@ -24,8 +24,8 @@ arbor_cuda_private_args = [@cuda_private_args@] catalogue_options = [@catalogue_options@] -mechs = [${mech-list}] -name = '${name}' +mechs = [{mods}] +name = '{name}' mech_sources = [] foreach m: mechs @@ -40,7 +40,7 @@ foreach m: mechs command : [modcc, modfile, '-N', f'arb::\@name\@_catalogue', '-o', meson.current_build_dir() / m, arb_modcc_flags]) endforeach -catalogue_source = f'${name}_catalogue.cpp' +catalogue_source = f'{name}_catalogue.cpp' mech_catalogue = custom_target(catalogue_source, output: catalogue_source, command : [gen_cat, catalogue_options, '-C', name, '-N', f'arb::\@name\@_catalogue', mechs, '-o', '\@OUTPUT\@']) @@ -51,4 +51,3 @@ catalogue = shared_library(f'\@name\@-catalogue', cpp_args : ['-DSTANDALONE'] + arbor_private_args, cuda_args: arbor_cuda_private_args, build_by_default: true) - diff --git a/meson.build b/meson.build index 026edd51b5..94a7b05dde 100644 --- a/meson.build +++ b/meson.build @@ -116,8 +116,6 @@ if arb_with_gpu add_languages('cuda', native: false, required: true) endif -#message('xxxxxxxxxxxxxxxxxx: '+dep_cuda.get_variable(internal: 'libdir')) - # find dependencies if arb_with_bundled_libs dep_libjson = declare_dependency(include_directories: 'ext/json/single_include') @@ -154,6 +152,7 @@ subdir('arbor') subdir('arborio') subdir('arborenv') subdir('sup') +subdir('scripts') subdir('test') subdir('example') subdir('lmorpho') diff --git a/scripts/meson-cat.in b/scripts/meson-cat.in deleted file mode 100755 index 8b647eca10..0000000000 --- a/scripts/meson-cat.in +++ /dev/null @@ -1,179 +0,0 @@ -#!/usr/bin/env python3 - -import subprocess as sp -import sys -from tempfile import mkdtemp, TemporaryDirectory -import os -from pathlib import Path -import shutil -import stat -import string -import argparse -import re -def parse_arguments(): - def append_slash(s): - return s+'/' if s and not s.endswith('/') else s - - class ConciseHelpFormatter(argparse.HelpFormatter): - def __init__(self, **kwargs): - super(ConciseHelpFormatter, self).__init__(max_help_position=20, **kwargs) - - def _format_action_invocation(self, action): - if not action.option_strings: - return super(ConciseHelpFormatter, self)._format_action_invocation(action) - else: - optstr = ', '.join(action.option_strings) - if action.nargs==0: - return optstr - else: - return optstr+' '+self._format_args(action, action.dest.upper()) - - parser = argparse.ArgumentParser( - description = 'Generate dynamic catalogue and build it into a shared object.', - usage = '%(prog)s catalogue_name mod_source_dir', - add_help = False, - formatter_class = ConciseHelpFormatter) - - parser.add_argument('name', - metavar='name', - type=str, - help='Catalogue name.') - - parser.add_argument('modpfx', - metavar='modpfx', - type=str, - help='Directory name where *.mod files live.') - - parser.add_argument('-v', '--verbose', - action='store_true', - help='Verbose.') - - parser.add_argument('-q', '--quiet', - action='store_true', - help='Less output.') - - parser.add_argument('-d', '--debug', - nargs="?", - metavar="path", - const=True, - default=False, - help='Don\'t clean up the generated temp cpp code.' - + ' Can be a target path for the generated code.') - - parser.add_argument('-h', '--help', - action='help', - help='Display this help and exit.') - - - return vars(parser.parse_args()) - -args = parse_arguments() -pwd = Path.cwd() -name = args['name'] # TODO: instead of changing name to fit requirements, assert that provided name matches requirements. - -mod_dir = pwd / Path(args['modpfx']) -mods = [ f[:-4] for f in os.listdir(mod_dir) if f.endswith('.mod') ] -verbose = args['verbose'] and not args['quiet'] -quiet = args['quiet'] -debug = args['debug'] - -mesonbuild = f""" -cmake_minimum_required(VERSION 3.9) -project({name}-cat LANGUAGES CXX) - -find_package(arbor REQUIRED) - -set(CMAKE_BUILD_TYPE release) -set(CMAKE_CXX_COMPILER ${{ARB_CXX}}) -set(CMAKE_CXX_FLAGS ${{ARB_CXX_FLAGS}}) - -include(BuildModules.cmake) - -set(ARB_WITH_EXTERNAL_MODCC true) -find_program(modcc NAMES modcc) - -make_catalogue( - NAME {name} - SOURCES "${{CMAKE_CURRENT_SOURCE_DIR}}/mod" - OUTPUT "CAT_{name.upper()}_SOURCES" - MECHS {' '.join(mods)} - PREFIX @ARB_INSTALL_DATADIR@ - CXX_FLAGS_TARGET ${{ARB_CXX_FLAGS_TARGET}} - STANDALONE ON - VERBOSE {"ON" if verbose else "OFF"}) -""" - -if not quiet: - print(f"Building catalogue '{name}' from mechanisms in {mod_dir}") - if debug: - print("Debug mode enabled.") - for m in mods: - print(" *", m) - -if debug: - # Overwrite the local reference to `TemporaryDirectory` with a context - # manager that doesn't clean up the build folder so that the generated cpp - # code can be debugged - class TemporaryDirectory: - def __enter__(*args, **kwargs): - if isinstance(debug, str): - path = os.path.abspath(debug) - try: - os.makedirs(path, exist_ok=False) - except FileExistsError: - sys.stderr.write(f"Error: Debug destination '{path}' already exists.\n") - sys.stderr.flush() - exit(1) - else: - path = mkdtemp() - print(f"Building debug code in '{path}'.") - return path - - def __exit__(*args, **kwargs): - pass - -with TemporaryDirectory() as tmp: - tmp = Path(tmp) - shutil.copytree(mod_dir, tmp / 'mod') - os.mkdir(tmp / 'build') - os.chdir(tmp / 'build') - with open(tmp / 'CMakeLists.txt', 'w') as fd: - fd.write(cmake) - shutil.copy2(f'@ARB_INSTALL_DATADIR@/BuildModules.cmake', tmp) - shutil.copy2(f'@ARB_INSTALL_DATADIR@/generate_catalogue', tmp) - cmake_cmd = 'cmake ..' - make_cmd = 'make' - if verbose: - out, err = (None, None) - make_cmd += ' VERBOSE=1' - else: - out, err = (sp.PIPE, sp.PIPE) - try: - sp.run(cmake_cmd, shell=True, check=True, stdout=out, stderr=err) - sp.run(make_cmd, shell=True, check=True, stdout=out, stderr=err) - shutil.copy2(f'{name}-catalogue.so', pwd) - except sp.CalledProcessError as e: - import sys, traceback as tb - - if not verbose: - # Not in verbose mode, so we have captured the - # `stdout` and `stderr` and can print it to the user. - sys.stdout.write("Build log:\n") - sys.stdout.write(e.stdout.decode()) - sys.stderr.write(tb.format_exc() + " Error:\n\n") - sys.stderr.write(e.stderr.decode()) - else: - # In verbose mode the outputs weren't captured and - # have been streamed to `stdout` and `stderr` already. - sys.stderr.write( - "Catalogue building error occurred." - + " Check stdout log for underlying error," - + " or omit verbose flag to capture it." - ) - sys.stdout.flush() - sys.stderr.flush() - exit(e.returncode) - - if not quiet: - print(f'Catalogue has been built and copied to {pwd}/{name}-catalogue.so') - diff --git a/scripts/meson.build b/scripts/meson.build new file mode 100644 index 0000000000..1a7b8924c9 --- /dev/null +++ b/scripts/meson.build @@ -0,0 +1,21 @@ +# Configure the build_catalogue tool for generating external mechanism catalogues. +buildcat_configuration = configuration_data() + +buildcat_configuration.set('arb_version', arb_version) +buildcat_configuration.set('prefix_source', meson.project_source_root()) +buildcat_configuration.set('prefix', get_option('prefix')) +buildcat_configuration.set('with_gpu', (arb_with_gpu? 'true': 'false')) +buildcat_configuration.set('modcc_flags', + '\''+'\', \''.join(arb_modcc_flags)+'\'') +buildcat_configuration.set('private_args', + '\''+'\', \''.join(arbor_private_args)+'\'') +buildcat_configuration.set('cuda_private_args', + '\''+'\', \''.join(arbor_cuda_private_args)+'\'') +buildcat_configuration.set('catalogue_options', + '\''+'\', \''.join(catalogue_options)+'\'') + +configure_file(input : 'build-meson-catalogue.in', + output : 'build-catalogue', + configuration : buildcat_configuration) + + From 4183a3db29252403c7f652cd3bdf3a27e6af6f5b Mon Sep 17 00:00:00 2001 From: Thorsten Hater <24411438+thorstenhater@users.noreply.github.com> Date: Fri, 9 Sep 2022 09:12:56 +0200 Subject: [PATCH 29/34] Merge. --- .flake8 | 25 + .github/workflows/ciwheel.yml | 120 +- .github/workflows/lint.yml | 33 + .github/workflows/sanitize.yml | 2 + .github/workflows/spack.yml | 4 +- .github/workflows/test-everything.yml | 65 +- .gitignore | 1 + .gitmodules | 15 +- .readthedocs.yml | 6 +- CITATION.bib | 18 +- CMakeGraphVizOptions.cmake | 1 + CMakeLists.txt | 68 +- CONTRIBUTING.md | 3 +- README.md | 11 +- VERSION | 2 +- arbor/CMakeLists.txt | 8 + arbor/arbexcept.cpp | 27 +- arbor/assert.cpp | 6 +- arbor/backends/event.hpp | 6 +- arbor/backends/gpu/diffusion.cu | 274 + arbor/backends/gpu/diffusion.hpp | 40 + arbor/backends/gpu/diffusion_state.hpp | 462 + arbor/backends/gpu/fine.cu | 65 + arbor/backends/gpu/fine.hpp | 85 + arbor/backends/gpu/forest.hpp | 3 +- arbor/backends/gpu/fvm.hpp | 22 +- arbor/backends/gpu/gpu_store_types.hpp | 4 +- arbor/backends/gpu/matrix_assemble.cu | 54 +- arbor/backends/gpu/matrix_fine.cu | 107 +- arbor/backends/gpu/matrix_fine.hpp | 66 +- arbor/backends/gpu/matrix_solve.cu | 26 +- arbor/backends/gpu/matrix_state_fine.hpp | 60 +- arbor/backends/gpu/matrix_state_flat.hpp | 37 +- arbor/backends/gpu/multi_event_stream.cpp | 32 +- arbor/backends/gpu/multi_event_stream.cu | 32 +- arbor/backends/gpu/multi_event_stream.hpp | 7 +- arbor/backends/gpu/shared_state.cpp | 124 +- arbor/backends/gpu/shared_state.cu | 20 +- arbor/backends/gpu/shared_state.hpp | 67 +- arbor/backends/gpu/stimulus.cu | 12 +- arbor/backends/gpu/stimulus.hpp | 27 +- arbor/backends/gpu/threshold_watcher.cu | 48 +- arbor/backends/gpu/threshold_watcher.hpp | 44 +- arbor/backends/multi_event_stream_state.hpp | 12 +- .../{matrix_state.hpp => cable_solver.hpp} | 61 +- arbor/backends/multicore/diffusion_solver.hpp | 145 + arbor/backends/multicore/fvm.hpp | 30 +- .../backends/multicore/multi_event_stream.hpp | 6 +- arbor/backends/multicore/multicore_common.hpp | 4 +- arbor/backends/multicore/shared_state.cpp | 134 +- arbor/backends/multicore/shared_state.hpp | 76 +- .../backends/multicore/threshold_watcher.hpp | 53 +- arbor/backends/threshold_crossing.hpp | 4 +- arbor/benchmark_cell_group.cpp | 4 +- arbor/benchmark_cell_group.hpp | 2 +- arbor/cable_cell.cpp | 79 +- arbor/cable_cell_param.cpp | 39 +- arbor/cell_group_factory.cpp | 2 +- arbor/cell_group_factory.hpp | 3 +- arbor/common_types_io.cpp | 10 +- arbor/communication/communicator.cpp | 114 +- arbor/communication/communicator.hpp | 18 +- arbor/communication/dry_run_context.cpp | 2 +- arbor/communication/mpi.cpp | 6 +- arbor/communication/mpi.hpp | 7 +- arbor/communication/mpi_error.cpp | 2 +- arbor/connection.hpp | 55 +- arbor/cv_policy.cpp | 4 +- arbor/distributed_context.hpp | 3 +- arbor/domain_decomposition.cpp | 9 +- arbor/event_binner.hpp | 3 +- arbor/event_queue.hpp | 2 +- arbor/execution_context.cpp | 28 +- arbor/execution_context.hpp | 3 +- arbor/fvm_layout.cpp | 356 +- arbor/fvm_layout.hpp | 69 +- arbor/fvm_lowered_cell.hpp | 25 +- arbor/fvm_lowered_cell_impl.cpp | 5 +- arbor/fvm_lowered_cell_impl.hpp | 151 +- arbor/gpu_context.cpp | 8 +- arbor/gpu_context.hpp | 6 +- arbor/hardware/memory.cpp | 3 +- arbor/iexpr.cpp | 600 + arbor/include/arbor/arb_types.h | 3 +- arbor/include/arbor/arb_types.inc | 4 - arbor/include/arbor/arbexcept.hpp | 79 +- arbor/include/arbor/assert.hpp | 7 +- arbor/include/arbor/benchmark_cell.hpp | 3 +- arbor/include/arbor/cable_cell.hpp | 76 +- arbor/include/arbor/cable_cell_param.hpp | 91 +- arbor/include/arbor/common_types.hpp | 12 +- .../include/arbor/communication/mpi_error.hpp | 8 +- arbor/include/arbor/context.hpp | 28 +- arbor/include/arbor/cv_policy.hpp | 17 +- arbor/include/arbor/domain_decomposition.hpp | 8 +- arbor/include/arbor/domdecexcept.hpp | 15 +- arbor/include/arbor/event_generator.hpp | 173 +- arbor/include/arbor/fvm_types.hpp | 12 +- arbor/include/arbor/gpu/cuda_api.hpp | 4 +- arbor/include/arbor/gpu/hip_api.hpp | 4 +- arbor/include/arbor/iexpr.hpp | 137 + arbor/include/arbor/lif_cell.hpp | 3 +- arbor/include/arbor/load_balance.hpp | 7 +- arbor/include/arbor/mechanism.hpp | 41 +- arbor/include/arbor/mechanism_abi.h | 18 +- arbor/include/arbor/mechcat.hpp | 11 +- arbor/include/arbor/mechinfo.hpp | 5 +- arbor/include/arbor/morph/cv_data.hpp | 19 +- arbor/include/arbor/morph/embed_pwlin.hpp | 15 +- arbor/include/arbor/morph/isometry.hpp | 62 + arbor/include/arbor/morph/label_dict.hpp | 17 +- arbor/include/arbor/morph/locset.hpp | 41 +- arbor/include/arbor/morph/mcable_map.hpp | 6 +- arbor/include/arbor/morph/morphexcept.hpp | 31 +- arbor/include/arbor/morph/morphology.hpp | 17 +- arbor/include/arbor/morph/mprovider.hpp | 7 +- arbor/include/arbor/morph/place_pwlin.hpp | 66 +- arbor/include/arbor/morph/primitives.hpp | 53 +- arbor/include/arbor/morph/region.hpp | 49 +- arbor/include/arbor/morph/segment_tree.hpp | 34 +- arbor/include/arbor/morph/stitch.hpp | 5 +- arbor/include/arbor/profile/clock.hpp | 4 +- arbor/include/arbor/profile/meter_manager.hpp | 13 +- arbor/include/arbor/profile/profiler.hpp | 14 +- arbor/include/arbor/recipe.hpp | 38 +- arbor/include/arbor/s_expr.hpp | 19 +- arbor/include/arbor/schedule.hpp | 5 +- arbor/include/arbor/simd/avx.hpp | 1 - arbor/include/arbor/simd/implbase.hpp | 1 - arbor/include/arbor/simd/simd.hpp | 4 +- arbor/include/arbor/simple_sampler.hpp | 2 +- arbor/include/arbor/simulation.hpp | 26 +- arbor/include/arbor/spike.hpp | 2 +- arbor/include/arbor/spike_event.hpp | 3 +- arbor/include/arbor/spike_source_cell.hpp | 9 +- arbor/include/arbor/symmetric_recipe.hpp | 3 +- arbor/include/arbor/util/any_ptr.hpp | 5 +- arbor/include/arbor/util/expected.hpp | 2 +- arbor/include/arbor/util/scope_exit.hpp | 2 +- arbor/include/arbor/util/unique_any.hpp | 3 +- arbor/include/arbor/util/visibility.hpp | 51 + arbor/include/git-source-id | 14 +- arbor/label_resolution.cpp | 51 +- arbor/label_resolution.hpp | 30 +- arbor/lif_cell_group.cpp | 6 +- arbor/lif_cell_group.hpp | 3 +- arbor/matrix.hpp | 78 +- arbor/mc_cell_group.cpp | 72 +- arbor/mc_cell_group.hpp | 9 +- arbor/mechcat.cpp | 40 +- arbor/mechinfo.cpp | 1 + arbor/memory/allocator.hpp | 6 +- arbor/memory/array_view.hpp | 4 +- arbor/memory/gpu_wrappers.cpp | 3 +- arbor/merge_events.hpp | 3 +- arbor/morph/cv_data.cpp | 22 +- arbor/morph/cv_data.hpp | 8 +- arbor/morph/embed_pwlin.cpp | 12 +- arbor/morph/label_dict.cpp | 39 +- arbor/morph/locset.cpp | 54 +- arbor/morph/morphology.cpp | 12 +- arbor/morph/mprovider.cpp | 12 +- arbor/morph/place_pwlin.cpp | 41 +- arbor/morph/primitives.cpp | 32 +- arbor/morph/region.cpp | 77 +- arbor/morph/segment_tree.cpp | 117 +- arbor/partition_load_balance.cpp | 15 +- arbor/profile/clock.cpp | 2 +- arbor/profile/meter_manager.cpp | 10 +- arbor/profile/profiler.cpp | 25 +- arbor/s_expr.cpp | 18 +- arbor/sampler_map.hpp | 2 +- arbor/simulation.cpp | 152 +- arbor/spike_event_io.cpp | 2 +- arbor/spike_source_cell_group.cpp | 16 +- arbor/spike_source_cell_group.hpp | 7 +- arbor/thread_private_spike_store.cpp | 17 +- arbor/thread_private_spike_store.hpp | 5 +- arbor/threading/threading.hpp | 6 +- arbor/tree.cpp | 2 +- arbor/tree.hpp | 5 +- arbor/util/config.hpp | 4 +- arbor/util/padded_alloc.hpp | 2 +- arbor/util/piecewise.hpp | 2 +- arbor/util/pw_over_cable.hpp | 8 +- arbor/util/unwind.cpp | 130 +- arbor/util/unwind.hpp | 21 +- arbor/version.cpp | 15 +- arborenv/CMakeLists.txt | 6 + arborenv/affinity.cpp | 6 +- arborenv/concurrency.cpp | 2 +- arborenv/cuda_api.hpp | 5 +- arborenv/default_env.cpp | 15 +- arborenv/hip_api.hpp | 3 +- arborenv/include/arborenv/arbenvexcept.hpp | 10 +- arborenv/include/arborenv/concurrency.hpp | 6 +- arborenv/include/arborenv/default_env.hpp | 7 +- arborenv/include/arborenv/gpu_env.hpp | 4 +- arborenv/private_gpu.cpp | 9 +- arborio/CMakeLists.txt | 6 + arborio/cableio.cpp | 137 +- arborio/cv_policy_parse.cpp | 4 +- arborio/include/arborio/cableio.hpp | 25 +- arborio/include/arborio/cv_policy_parse.hpp | 7 +- arborio/include/arborio/label_parse.hpp | 13 +- arborio/include/arborio/neurolucida.hpp | 15 +- arborio/include/arborio/neuroml.hpp | 19 +- arborio/include/arborio/swcio.hpp | 29 +- arborio/include/arborio/xml.hpp | 6 +- arborio/label_parse.cpp | 83 +- arborio/neurolucida.cpp | 109 +- arborio/neuroml.cpp | 2 +- arborio/parse_helpers.hpp | 74 + arborio/parse_s_expr.hpp | 3 +- arborio/swcio.cpp | 21 +- ci/gitlab-cscs.yml | 18 +- cmake/CompilerOptions.cmake | 28 + cmake/FindRandom123.cmake | 23 + cmake/FindUnwind.cmake | 65 - cmake/export.hpp.in | 41 + doc/concepts/decor.rst | 79 +- doc/concepts/domdec-diag-1.html | 95 + doc/concepts/domdec.rst | 59 +- doc/concepts/hardware.rst | 27 +- doc/concepts/index-diag-1.html | 36 + doc/concepts/index.rst | 8 + doc/concepts/interconnectivity.rst | 121 +- doc/concepts/labels.rst | 169 +- doc/concepts/mechanisms.rst | 8 +- doc/concepts/morphology.rst | 30 + doc/concepts/probe_sample.rst | 63 +- doc/concepts/recipe-diag-1.html | 121 + doc/concepts/recipe.rst | 29 +- doc/concepts/simulation.rst | 21 +- doc/conf.py | 56 +- doc/contrib/coding-style.rst | 21 + doc/contrib/dependency-management.rst | 75 + doc/contrib/index.rst | 18 +- doc/contrib/pr.rst | 11 + doc/contrib/release.rst | 158 +- doc/contrib/test.rst | 87 + doc/cpp/cable_cell.rst | 4 +- doc/cpp/cell.rst | 4 + doc/cpp/hardware.rst | 4 +- doc/cpp/index.rst | 1 - doc/cpp/morphology.rst | 95 +- doc/cpp/probe_sample.rst | 46 +- doc/cpp/simulation.rst | 2 +- doc/dependencies.csv | 30 + doc/dev/arbor-dep-graph.png | Bin 0 -> 264432 bytes doc/dev/axial-diff.tex | 203 + doc/dev/cable_cell.rst | 115 + doc/dev/cell_groups.rst | 84 + doc/dev/communication.rst | 300 + doc/dev/debug.rst | 45 + doc/dev/export.rst | 134 + .../extending_catalogues.rst | 0 doc/dev/index.rst | 29 + doc/dev/matrix_solver.rst | 134 + doc/{internals => dev}/mechanism_abi.rst | 38 +- doc/dev/numerics.rst | 20 + doc/dev/shared_state.rst | 45 + doc/{internals => dev}/simd_api.rst | 0 doc/{internals => dev}/util.rst | 2 +- doc/{cpp => dev}/version.rst | 2 +- doc/ecosystem/arbor.png | Bin 0 -> 74520 bytes doc/ecosystem/index-sims.html | 27 + doc/ecosystem/index.rst | 63 + doc/fileformat/cable_cell.rst | 61 +- doc/fileformat/nmodl.rst | 196 +- doc/fileformat/swc.rst | 8 + doc/images/iexpr_distance.svg | 45 + doc/images/iexpr_interp.svg | 47 + doc/index.rst | 28 +- doc/install/build_install.rst | 103 +- doc/install/python.rst | 55 +- doc/install/spack.rst | 33 +- doc/internals/index.rst | 15 - doc/python/cable_cell.rst | 63 +- doc/python/cell.rst | 10 +- doc/python/decor.rst | 14 +- doc/python/hardware.rst | 18 +- doc/python/mechanisms.rst | 3 +- doc/python/morphology.rst | 44 +- doc/python/probe_sample-diag.dia | Bin 0 -> 2419 bytes doc/python/probe_sample-diag.svg | 160 + doc/python/probe_sample.rst | 157 +- doc/python/probe_sample_vector-diag.dia | Bin 0 -> 2709 bytes doc/python/probe_sample_vector-diag.svg | 175 + doc/python/recipe.rst | 32 +- doc/python/simulation.rst | 102 +- doc/scripts/divio_docs_theme/layout.html | 8 +- doc/scripts/gen-labels.py | 457 +- doc/scripts/inputs.py | 588 +- doc/scripts/make_images.py | 589 +- doc/scripts/representation.py | 79 +- doc/static/domarrow.js | 260 + doc/static/htmldiag.css | 138 + doc/tutorial/index.rst | 64 +- doc/tutorial/network_ring.rst | 39 +- doc/tutorial/network_ring_gpu.rst | 135 + doc/tutorial/network_ring_mpi.rst | 25 +- ...st => network_two_cells_gap_junctions.rst} | 41 +- ...twork_two_cells_gap_junctions_circuit.svg} | 0 ...etwork_two_cells_gap_junctions_result.svg} | 0 doc/tutorial/probe_lfpykit.rst | 227 + doc/tutorial/probe_lfpykit.svg | 7950 + doc/tutorial/single_cell_allen.rst | 167 + doc/tutorial/single_cell_allen_result.svg | 1268 + doc/tutorial/single_cell_cable.rst | 10 +- doc/tutorial/single_cell_detailed.rst | 90 +- doc/tutorial/single_cell_detailed_recipe.rst | 196 +- doc/tutorial/single_cell_recipe.rst | 71 +- example/CMakeLists.txt | 2 + example/bench/bench.cpp | 2 +- example/brunel/brunel.cpp | 9 +- example/diffusion/CMakeLists.txt | 3 + example/diffusion/README.md | 18 + example/diffusion/diffusion.cpp | 126 + example/drybench/CMakeLists.txt | 2 +- example/drybench/drybench.cpp | 6 +- example/dryrun/branch_cell.hpp | 30 +- example/dryrun/dryrun.cpp | 12 +- example/gap_junctions/gap_junctions.cpp | 53 +- example/generators/generators.cpp | 24 +- example/generators/readme.md | 6 +- example/lfp/CMakeLists.txt | 2 +- example/lfp/lfp.cpp | 48 +- example/lfp/neuron_lfp_example.py | 130 +- example/lfp/plot-lfp.py | 80 +- example/plasticity/CMakeLists.txt | 4 + example/plasticity/branch_cell.hpp | 138 + example/plasticity/plasticity.cpp | 104 + example/plasticity/readme.md | 22 + example/probe-demo/probe-demo.cpp | 61 +- example/ring/branch_cell.hpp | 20 +- example/ring/ring.cpp | 23 +- example/single/single.cpp | 20 +- ext/CMakeLists.txt | 17 +- ext/json | 1 + ext/json/LICENSE.MIT | 21 - ext/json/README.md | 1630 - ext/json/single_include/nlohmann/json.hpp | 25447 -- ext/pybind11 | 1 + ext/random123 | 1 + ext/random123/LICENSE | 31 - ext/random123/include/Random123/MicroURNG.hpp | 146 - .../include/Random123/ReinterpretCtr.hpp | 88 - ext/random123/include/Random123/aes.h | 398 - ext/random123/include/Random123/array.h | 348 - ext/random123/include/Random123/ars.h | 204 - ext/random123/include/Random123/boxmuller.hpp | 134 - .../include/Random123/conventional/Engine.hpp | 276 - .../Random123/conventional/gsl_cbrng.h | 128 - .../Random123/features/clangfeatures.h | 93 - .../Random123/features/compilerfeatures.h | 341 - .../include/Random123/features/gccfeatures.h | 263 - .../include/Random123/features/iccfeatures.h | 212 - .../Random123/features/metalfeatures.h | 111 - .../include/Random123/features/msvcfeatures.h | 200 - .../include/Random123/features/nvccfeatures.h | 125 - .../Random123/features/open64features.h | 50 - .../Random123/features/openclfeatures.h | 89 - .../include/Random123/features/pgccfeatures.h | 194 - .../include/Random123/features/sse.h | 280 - .../Random123/features/sunprofeatures.h | 172 - .../include/Random123/features/xlcfeatures.h | 210 - .../include/Random123/gsl_microrng.h | 136 - ext/random123/include/Random123/philox.h | 493 - ext/random123/include/Random123/threefry.h | 870 - ext/random123/include/Random123/u01fixedpt.h | 200 - ext/random123/include/Random123/uniform.hpp | 310 - mechanisms/BuildModules.cmake | 6 + mechanisms/CMakeLists.txt | 2 +- mechanisms/default/decay.mod | 21 + mechanisms/default/exp2syn.mod | 8 +- mechanisms/default/expsyn.mod | 2 +- mechanisms/default/expsyn_curr.mod | 46 + mechanisms/default/gj.mod | 5 +- mechanisms/default/hh.mod | 10 +- mechanisms/default/inject.mod | 20 + mechanisms/default/kamt.mod | 86 +- mechanisms/default/kdrmt.mod | 56 +- mechanisms/default/nax.mod | 112 +- mechanisms/default/nernst.mod | 9 +- mechanisms/generate_catalogue | 61 +- modcc/CMakeLists.txt | 22 +- modcc/astmanip.cpp | 4 +- modcc/astmanip.hpp | 5 +- modcc/blocks.cpp | 18 +- modcc/blocks.hpp | 22 +- modcc/error.hpp | 3 - modcc/errorvisitor.hpp | 3 +- modcc/expression.cpp | 6 +- modcc/expression.hpp | 187 +- modcc/functionexpander.cpp | 4 +- modcc/functionexpander.hpp | 7 +- modcc/functioninliner.cpp | 2 +- modcc/functioninliner.hpp | 7 +- modcc/identifier.hpp | 4 + modcc/io/prefixbuf.cpp | 4 +- modcc/io/prefixbuf.hpp | 10 +- modcc/kineticrewriter.cpp | 2 +- modcc/kineticrewriter.hpp | 3 +- modcc/lexer.hpp | 3 +- modcc/linearrewriter.cpp | 2 +- modcc/linearrewriter.hpp | 3 +- modcc/modcc.cpp | 5 +- modcc/module.cpp | 53 +- modcc/module.hpp | 3 +- modcc/parser.cpp | 16 + modcc/parser.hpp | 4 +- modcc/printer/cexpr_emit.cpp | 2 +- modcc/printer/cexpr_emit.hpp | 7 +- modcc/printer/cprinter.cpp | 347 +- modcc/printer/cprinter.hpp | 22 +- modcc/printer/gpuprinter.cpp | 128 +- modcc/printer/gpuprinter.hpp | 7 +- modcc/printer/infoprinter.cpp | 39 +- modcc/printer/infoprinter.hpp | 4 +- modcc/printer/printerutil.cpp | 43 +- modcc/printer/printerutil.hpp | 27 +- modcc/solvers.cpp | 9 +- modcc/solvers.hpp | 13 +- modcc/symdiff.cpp | 37 +- modcc/symdiff.hpp | 19 +- modcc/symge.cpp | 2 +- modcc/symge.hpp | 5 +- modcc/token.cpp | 10 +- modcc/token.hpp | 12 +- pyproject.toml | 72 + python/CMakeLists.txt | 8 +- python/__init__.py | 9 +- python/cable_cell_io.cpp | 80 +- python/cable_probes.cpp | 16 + python/cells.cpp | 247 +- python/context.cpp | 11 +- python/context.hpp | 2 +- python/env.cpp | 35 + python/example/brunel.py | 244 +- python/example/diffusion.py | 77 + python/example/dynamic-catalogue.py | 24 +- python/example/gap_junctions.py | 108 +- python/example/network_ring.py | 116 +- python/example/network_ring_gpu.py | 184 + python/example/network_ring_mpi.py | 108 +- python/example/network_ring_mpi_plot.py | 9 +- ....py => network_two_cells_gap_junctions.py} | 131 +- python/example/plasticity.py | 111 + python/example/probe_lfpykit.py | 456 + python/example/single_cell_allen.py | 169 + python/example/single_cell_allen.swc | 4855 + python/example/single_cell_allen_fit.json | 297 + .../example/single_cell_allen_neuron_ref.csv | 280002 +++++++++++++++ python/example/single_cell_cable.py | 169 +- python/example/single_cell_detailed.py | 110 +- python/example/single_cell_detailed_recipe.py | 178 +- .../single_cell_extracellular_potentials.py | 342 - python/example/single_cell_model.py | 39 +- python/example/single_cell_nml.py | 108 +- python/example/single_cell_recipe.py | 79 +- python/example/single_cell_stdp.py | 121 +- python/example/single_cell_swc.py | 110 +- python/identifiers.cpp | 4 +- python/mechanism.cpp | 9 +- python/morphology.cpp | 94 +- python/proxy.hpp | 50 +- python/pyarb.cpp | 35 +- python/pybind11 | 1 - python/readme.md | 10 - python/readme.rst | 13 + python/recipe.cpp | 2 +- python/setup.py | 39 - python/simulation.cpp | 50 +- python/single_cell_model.cpp | 2 +- python/test/cases.py | 14 +- python/test/cpp/CMakeLists.txt | 2 +- python/test/fixtures.py | 106 +- python/test/unit/test_cable_probes.py | 43 +- python/test/unit/test_catalogues.py | 47 +- python/test/unit/test_clear_samplers.py | 15 +- python/test/unit/test_contexts.py | 36 +- python/test/unit/test_decor.py | 15 +- .../test/unit/test_domain_decompositions.py | 81 +- python/test/unit/test_event_generators.py | 13 +- python/test/unit/test_identifiers.py | 8 +- python/test/unit/test_io.py | 93 + python/test/unit/test_morphology.py | 56 +- python/test/unit/test_multiple_connections.py | 387 + python/test/unit/test_profiling.py | 41 +- python/test/unit/test_schedules.py | 175 +- python/test/unit/test_spikes.py | 5 +- .../unit_distributed/test_contexts_arbmpi.py | 19 +- .../unit_distributed/test_contexts_mpi4py.py | 22 +- .../test_domain_decompositions.py | 197 +- .../test/unit_distributed/test_simulator.py | 26 +- python/util.hpp | 50 + scripts/build-catalogue.in | 205 +- scripts/build-wheels.sh | 6 +- scripts/check-all-tags.sh | 74 + scripts/mk-include.py | 69 + scripts/patchwheel.py | 40 +- scripts/run_cpp_examples.sh | 44 +- scripts/run_python_examples.sh | 13 +- scripts/test-catalogue.py | 8 +- scripts/where.py | 23 + setup.py | 71 +- spack/package.py | 127 +- sup/CMakeLists.txt | 7 +- sup/README.md | 3 + sup/include/sup/ioutil.hpp | 8 +- sup/include/sup/json_meter.hpp | 3 +- sup/include/sup/path.hpp | 8 +- sup/ioutil.cpp | 2 +- sup/json_meter.cpp | 3 +- sup/path.cpp | 4 +- test/CMakeLists.txt | 3 +- test/ubench/event_binning.cpp | 3 +- test/ubench/event_setup.cpp | 52 +- test/ubench/fvm_discretize.cpp | 6 +- test/ubench/mech_vec.cpp | 68 +- test/unit-distributed/test_communicator.cpp | 16 +- test/unit-modcc/mod_files/bug-1893-bad.mod | 28 + test/unit-modcc/mod_files/bug-1893.mod | 28 + test/unit-modcc/mod_files/test-rw-ion.mod | 8 + test/unit-modcc/test_module.cpp | 30 + test/unit-modcc/test_parser.cpp | 4 + test/unit/CMakeLists.txt | 6 + test/unit/test_cv_geom.cpp | 2 +- test/unit/test_diffusion.cpp | 290 + test/unit/test_event_delivery.cpp | 11 +- test/unit/test_event_generators.cpp | 64 +- test/unit/test_fvm_layout.cpp | 33 +- test/unit/test_fvm_lowered.cpp | 59 +- test/unit/test_iexpr.cpp | 465 + test/unit/test_kinetic_linear.cpp | 98 +- test/unit/test_lif_cell_group.cpp | 6 +- test/unit/test_matrix.cpp | 44 +- test/unit/test_matrix_cpuvsgpu.cpp | 8 +- test/unit/test_matrix_gpu.cpp | 4 +- test/unit/test_mech_temp_diam.cpp | 36 +- test/unit/test_mechcat.cpp | 26 +- test/unit/test_merge_events.cpp | 46 +- test/unit/test_partition_by_constraint.cpp | 4 +- test/unit/test_probe.cpp | 71 +- test/unit/test_recipe.cpp | 29 +- test/unit/test_s_expr.cpp | 144 + test/unit/test_segment_tree.cpp | 223 + test/unit/test_simulation.cpp | 8 +- test/unit/test_spike_source.cpp | 40 + test/unit/test_spikes.cpp | 12 +- test/unit/test_synapses.cpp | 12 +- test/unit/test_thread.cpp | 6 +- test/unit/unit_test_catalogue.cpp | 94 +- validation/ref/neuron/ball_and_3stick.py | 17 +- validation/ref/neuron/ball_and_squiggle.py | 21 +- validation/ref/neuron/ball_and_stick.py | 11 +- validation/ref/neuron/ball_and_taper.py | 11 +- validation/ref/neuron/nrn_validation.py | 183 +- validation/ref/neuron/simple_exp2_synapse.py | 11 +- validation/ref/neuron/simple_exp_synapse.py | 10 +- validation/ref/neuron/soma.py | 5 +- 562 files changed, 313201 insertions(+), 40184 deletions(-) create mode 100644 .flake8 create mode 100644 .github/workflows/lint.yml create mode 100644 CMakeGraphVizOptions.cmake create mode 100644 arbor/backends/gpu/diffusion.cu create mode 100644 arbor/backends/gpu/diffusion.hpp create mode 100644 arbor/backends/gpu/diffusion_state.hpp create mode 100644 arbor/backends/gpu/fine.cu create mode 100644 arbor/backends/gpu/fine.hpp rename arbor/backends/multicore/{matrix_state.hpp => cable_solver.hpp} (73%) create mode 100644 arbor/backends/multicore/diffusion_solver.hpp create mode 100644 arbor/iexpr.cpp create mode 100644 arbor/include/arbor/iexpr.hpp create mode 100644 arbor/include/arbor/morph/isometry.hpp create mode 100644 arbor/include/arbor/util/visibility.hpp create mode 100644 cmake/FindRandom123.cmake delete mode 100644 cmake/FindUnwind.cmake create mode 100644 cmake/export.hpp.in create mode 100644 doc/concepts/domdec-diag-1.html create mode 100644 doc/concepts/index-diag-1.html create mode 100644 doc/concepts/recipe-diag-1.html create mode 100644 doc/contrib/dependency-management.rst create mode 100644 doc/dependencies.csv create mode 100644 doc/dev/arbor-dep-graph.png create mode 100644 doc/dev/axial-diff.tex create mode 100644 doc/dev/cable_cell.rst create mode 100644 doc/dev/cell_groups.rst create mode 100644 doc/dev/communication.rst create mode 100644 doc/dev/debug.rst create mode 100644 doc/dev/export.rst rename doc/{internals => dev}/extending_catalogues.rst (100%) create mode 100644 doc/dev/index.rst create mode 100644 doc/dev/matrix_solver.rst rename doc/{internals => dev}/mechanism_abi.rst (94%) create mode 100644 doc/dev/numerics.rst create mode 100644 doc/dev/shared_state.rst rename doc/{internals => dev}/simd_api.rst (100%) rename doc/{internals => dev}/util.rst (96%) rename doc/{cpp => dev}/version.rst (99%) create mode 100644 doc/ecosystem/arbor.png create mode 100644 doc/ecosystem/index-sims.html create mode 100644 doc/ecosystem/index.rst create mode 100644 doc/images/iexpr_distance.svg create mode 100644 doc/images/iexpr_interp.svg delete mode 100644 doc/internals/index.rst create mode 100644 doc/python/probe_sample-diag.dia create mode 100644 doc/python/probe_sample-diag.svg create mode 100644 doc/python/probe_sample_vector-diag.dia create mode 100644 doc/python/probe_sample_vector-diag.svg create mode 100644 doc/static/domarrow.js create mode 100644 doc/static/htmldiag.css create mode 100644 doc/tutorial/network_ring_gpu.rst rename doc/tutorial/{two_cells_gap_junctions.rst => network_two_cells_gap_junctions.rst} (68%) rename doc/tutorial/{gap_junction_circuit.svg => network_two_cells_gap_junctions_circuit.svg} (100%) rename doc/tutorial/{two_cell_gap_junctions_result.svg => network_two_cells_gap_junctions_result.svg} (100%) create mode 100644 doc/tutorial/probe_lfpykit.rst create mode 100644 doc/tutorial/probe_lfpykit.svg create mode 100644 doc/tutorial/single_cell_allen.rst create mode 100644 doc/tutorial/single_cell_allen_result.svg create mode 100644 example/diffusion/CMakeLists.txt create mode 100644 example/diffusion/README.md create mode 100644 example/diffusion/diffusion.cpp create mode 100644 example/plasticity/CMakeLists.txt create mode 100644 example/plasticity/branch_cell.hpp create mode 100644 example/plasticity/plasticity.cpp create mode 100644 example/plasticity/readme.md create mode 160000 ext/json delete mode 100644 ext/json/LICENSE.MIT delete mode 100644 ext/json/README.md delete mode 100644 ext/json/single_include/nlohmann/json.hpp create mode 160000 ext/pybind11 create mode 160000 ext/random123 delete mode 100644 ext/random123/LICENSE delete mode 100644 ext/random123/include/Random123/MicroURNG.hpp delete mode 100644 ext/random123/include/Random123/ReinterpretCtr.hpp delete mode 100644 ext/random123/include/Random123/aes.h delete mode 100644 ext/random123/include/Random123/array.h delete mode 100644 ext/random123/include/Random123/ars.h delete mode 100644 ext/random123/include/Random123/boxmuller.hpp delete mode 100644 ext/random123/include/Random123/conventional/Engine.hpp delete mode 100644 ext/random123/include/Random123/conventional/gsl_cbrng.h delete mode 100644 ext/random123/include/Random123/features/clangfeatures.h delete mode 100644 ext/random123/include/Random123/features/compilerfeatures.h delete mode 100644 ext/random123/include/Random123/features/gccfeatures.h delete mode 100644 ext/random123/include/Random123/features/iccfeatures.h delete mode 100644 ext/random123/include/Random123/features/metalfeatures.h delete mode 100644 ext/random123/include/Random123/features/msvcfeatures.h delete mode 100644 ext/random123/include/Random123/features/nvccfeatures.h delete mode 100644 ext/random123/include/Random123/features/open64features.h delete mode 100644 ext/random123/include/Random123/features/openclfeatures.h delete mode 100644 ext/random123/include/Random123/features/pgccfeatures.h delete mode 100644 ext/random123/include/Random123/features/sse.h delete mode 100644 ext/random123/include/Random123/features/sunprofeatures.h delete mode 100644 ext/random123/include/Random123/features/xlcfeatures.h delete mode 100644 ext/random123/include/Random123/gsl_microrng.h delete mode 100644 ext/random123/include/Random123/philox.h delete mode 100644 ext/random123/include/Random123/threefry.h delete mode 100644 ext/random123/include/Random123/u01fixedpt.h delete mode 100644 ext/random123/include/Random123/uniform.hpp create mode 100644 mechanisms/default/decay.mod create mode 100644 mechanisms/default/expsyn_curr.mod create mode 100644 mechanisms/default/inject.mod create mode 100644 pyproject.toml create mode 100644 python/env.cpp create mode 100644 python/example/diffusion.py create mode 100644 python/example/network_ring_gpu.py rename python/example/{two_cell_gap_junctions.py => network_two_cells_gap_junctions.py} (53%) create mode 100644 python/example/plasticity.py create mode 100644 python/example/probe_lfpykit.py create mode 100644 python/example/single_cell_allen.py create mode 100644 python/example/single_cell_allen.swc create mode 100644 python/example/single_cell_allen_fit.json create mode 100644 python/example/single_cell_allen_neuron_ref.csv delete mode 100644 python/example/single_cell_extracellular_potentials.py delete mode 160000 python/pybind11 delete mode 100644 python/readme.md create mode 100644 python/readme.rst delete mode 100644 python/setup.py create mode 100644 python/test/unit/test_io.py create mode 100644 python/test/unit/test_multiple_connections.py create mode 100644 python/util.hpp create mode 100755 scripts/check-all-tags.sh create mode 100644 scripts/mk-include.py create mode 100644 scripts/where.py create mode 100644 sup/README.md create mode 100644 test/unit-modcc/mod_files/bug-1893-bad.mod create mode 100644 test/unit-modcc/mod_files/bug-1893.mod create mode 100644 test/unit-modcc/mod_files/test-rw-ion.mod create mode 100644 test/unit/test_diffusion.cpp create mode 100644 test/unit/test_iexpr.cpp diff --git a/.flake8 b/.flake8 new file mode 100644 index 0000000000..c38577d834 --- /dev/null +++ b/.flake8 @@ -0,0 +1,25 @@ +[flake8] +max-line-length = 88 +extend-ignore = + # for black + E203, + # zealous line lengths + E501, + # inconsistent ruling on newlines before bin op + W503, + # ambiguous varnames I ./. l etc + E741, +select = C,E,F,W,B,B950 +max_complexity = 15 +extend-exclude = + # 3rd party + ext, + # auto-generated + doc/scripts/inputs.py + doc/scripts/make_images.py + # hidden + .*, + # artifacts + build, + # nah, don't care + spack/package.py diff --git a/.github/workflows/ciwheel.yml b/.github/workflows/ciwheel.yml index 24792583c7..7a8c54b186 100644 --- a/.github/workflows/ciwheel.yml +++ b/.github/workflows/ciwheel.yml @@ -1,10 +1,10 @@ + name: Arbor on Wheels on: push: branches: - ciwheel - - v*rc tags: - v* @@ -12,92 +12,98 @@ on: - cron: '0 2 * * 0' # run at 2 AM every sunday jobs: + get_timestamp: + name: Prep VERSION + runs-on: ubuntu-latest + + steps: + - name: Get Arbor + uses: actions/checkout@v3 + with: + submodules: recursive + - name: Create unique VERSION + if: startsWith(github.ref, 'refs/tags/v') == false + run: python3 -c 'import time;f=open("VERSION","r+");content = f.readlines();f.seek(0);f.write(content[0].strip()+time.strftime("%Y%m%d%H%I%S"))' + - uses: actions/upload-artifact@v3 + with: + name: arbver + path: ${{ github.workspace }}/VERSION + build_binary_wheels: name: Build wheels on ${{ matrix.os }} + needs: get_timestamp runs-on: ${{ matrix.os }} strategy: matrix: os: [ubuntu-latest, macos-latest] steps: - - uses: actions/checkout@v2 + - name: Get Arbor + uses: actions/checkout@v3 with: - fetch-depth: 0 submodules: recursive - - - name: Build wheels Linux - if: ${{ startsWith(matrix.os, 'ubuntu') }} - uses: pypa/cibuildwheel@v2.3.0 + - name: Delete VERSION + run: rm -f VERSION + - name: Get VERSION + uses: actions/download-artifact@v3 with: - output-dir: dist - env: - CIBW_BEFORE_ALL: yum -y install libxml2-devel - CIBW_BEFORE_BUILD: python -m pip install numpy setuptools scikit-build ninja cmake - CIBW_BUILD: "cp3*-manylinux_x86_64" - CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014 - CIBW_ARCHS_LINUX: x86_64 - CIBW_REPAIR_WHEEL_COMMAND: 'auditwheel repair -w {dest_dir} {wheel} && python /project/scripts/patchwheel.py {dest_dir}' - CIBW_TEST_COMMAND: python -m unittest discover -v -s {project}/python - - - name: Build wheels macos - if: ${{ startsWith(matrix.os, 'macos') }} - uses: pypa/cibuildwheel@v2.3.0 - with: - output-dir: dist - env: - MACOSX_DEPLOYMENT_TARGET: "10.15" #needed to undo some CIBW settings - CIBW_BEFORE_BUILD: python -m pip install numpy setuptools scikit-build ninja cmake - CIBW_BUILD: "cp3*-macosx_x86_64" - CIBW_ARCHS_MACOS: x86_64 universal2 - CIBW_TEST_COMMAND: python -m unittest discover -v -s {project}/python - - # this action runs auditwheel automatically with the following args: - # https://cibuildwheel.readthedocs.io/en/stable/options/#repair-wheel-command - - - uses: actions/upload-artifact@v2 + name: arbver + - name: Check VERSION + run: cat VERSION + - name: Install cibuildwheel + run: python3 -m pip install cibuildwheel + - name: Build wheels + run: python3 -m cibuildwheel --output-dir dist + - uses: actions/upload-artifact@v3 with: name: dist path: dist/*.whl build_sdist: name: Build sdist + needs: get_timestamp runs-on: ubuntu-latest steps: - - name: Set up Python - uses: actions/setup-python@v2 - name: Get packages - run: python -m pip install numpy setuptools scikit-build ninja cmake - - uses: actions/checkout@v2 + run: python3 -m pip install build + - name: Get Arbor + uses: actions/checkout@v3 with: - fetch-depth: 0 submodules: recursive + - name: Delete VERSION + run: rm -f VERSION + - name: Get VERSION + uses: actions/download-artifact@v3 + with: + name: arbver + - name: Check VERSION + run: cat VERSION - name: Make sdist - run: python setup.py sdist + run: python3 -m build -s - name: Install sdist - run: python -m pip install dist/arbor*.tar.gz + run: python3 -m pip install dist/arbor*.tar.gz - name: Run Python tests run: python3 -m unittest discover -v -s python - name: Run Python examples run: scripts/run_python_examples.sh - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 with: name: dist path: dist/*.tar.gz -# TODO - # upload_test_pypi: - # name: upload to test pypi - # runs-on: ubuntu-latest - # needs: [build_binary_wheels, build_sdist] - # steps: - # - uses: actions/download-artifact@v2 - # with: - # name: dist - # - name: Publish distribution 📦 to Test PyPI - # run: | - # pip install twine - # twine upload -r testpypi dist/* - # env: - # TWINE_USERNAME: __token__ - # TWINE_PASSWORD: ${{ secrets.ciwheeltest }} + upload_test_pypi: + name: upload to test pypi + runs-on: ubuntu-latest + needs: [build_binary_wheels, build_sdist] + steps: + - uses: actions/download-artifact@v3 + with: + name: dist + - name: Publish distribution 📦 to Test PyPI + run: | + pip install twine + twine upload -r testpypi ./* + env: + TWINE_USERNAME: __token__ + TWINE_PASSWORD: ${{ secrets.TESTPYPI_SECRET }} diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 0000000000..fa6dbd621d --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,33 @@ +name: Sanitize + +on: + pull_request: + branches: [ master ] + +jobs: + build: + name: Lint + runs-on: ubuntu-20.04 + strategy: + fail-fast: false + steps: + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: 3.7 + - name: Get packages + run: | + python -m pip install --upgrade pip + pip install flake8 + - name: Clone w/ submodules + uses: actions/checkout@v2 + with: + submodules: recursive + - name: Python Formatting + uses: psf/black@stable + with: + options: --check --extend-exclude '/(ext|doc/scripts/.*_theme|doc/scripts/inputs.py)' + src: scripts/build-catalogue.in . + - name: Python analysis + run: | + flake8 scripts/build-catalogue.in . diff --git a/.github/workflows/sanitize.yml b/.github/workflows/sanitize.yml index 1e7e371a56..f1400f87ab 100644 --- a/.github/workflows/sanitize.yml +++ b/.github/workflows/sanitize.yml @@ -27,6 +27,8 @@ jobs: uses: actions/checkout@v2 with: submodules: recursive + - name: Update pip + run: python -m pip install --upgrade pip - name: Build arbor run: | mkdir build diff --git a/.github/workflows/spack.yml b/.github/workflows/spack.yml index 2825d16a5b..64b8dedfcb 100644 --- a/.github/workflows/spack.yml +++ b/.github/workflows/spack.yml @@ -23,8 +23,8 @@ jobs: uses: actions/cache@v2 with: path: ~/.spack-cache - key: cache-${{ github.sha }} - restore-keys: cache- + key: arbor-cache-${{ github.run_id }} + restore-keys: arbor-cache- - name: Build Arbor's Spack package against the develop branch run: arbor/scripts/build_spack_package.sh arbor develop diff --git a/.github/workflows/test-everything.yml b/.github/workflows/test-everything.yml index 2f51916e2e..e34bff1f3b 100644 --- a/.github/workflows/test-everything.yml +++ b/.github/workflows/test-everything.yml @@ -18,7 +18,7 @@ jobs: os: "ubuntu-18.04", cc: "gcc-8", cxx: "g++-8", - py: "3.6", + py: "3.7", cmake: "3.18.x", mpi: "ON", simd: "OFF" @@ -28,61 +28,62 @@ jobs: os: "ubuntu-18.04", cc: "clang-8", cxx: "clang++-8", - py: "3.6", + py: "3.7", cmake: "3.18.x", mpi: "ON", simd: "OFF" } - { name: "MacOS Min", - os: "macos-10.15", + os: "macos-11", cc: "clang", cxx: "clang++", - py: "3.6", + py: "3.7", cmake: "3.18.x", mpi: "ON", simd: "OFF" } - { name: "Linux Max GCC", - os: "ubuntu-20.04", - cc: "gcc-10", - cxx: "g++-10", - py: "3.9", + os: "ubuntu-22.04", + cc: "gcc-11", + cxx: "g++-11", + py: "3.10", cmake: "3.22.x", mpi: "ON", simd: "OFF" } - { name: "Linux SIMD", - os: "ubuntu-20.04", - cc: "gcc-10", - cxx: "g++-10", - py: "3.9", + os: "ubuntu-22.04", + cc: "gcc-11", + cxx: "g++-11", + py: "3.10", cmake: "3.22.x", mpi: "OFF", simd: "ON" } - { name: "Linux Max Clang", - os: "ubuntu-20.04", - cc: "clang-10", - cxx: "clang++-10", - py: "3.9", + os: "ubuntu-22.04", + cc: "clang-14", + cxx: "clang++-14", + py: "3.10", cmake: "3.22.x", mpi: "ON", simd: "OFF" } - { name: "MacOS Max", - os: "macos-11", + os: "macos-12", cc: "clang", cxx: "clang++", - py: "3.9", + py: "3.10", cmake: "3.22.x", mpi: "ON", simd: "OFF" } + variant: [static, shared] env: CC: ${{ matrix.config.cc }} CXX: ${{ matrix.config.cxx }} @@ -92,11 +93,16 @@ jobs: # See https://github.com/open-mpi/ompi/issues/6518 OMPI_MCA_btl: "self,tcp" steps: - - name: "Linux: get clang/gcc 8, libxml2" + - name: "Linux: get libxml2" if: ${{ startsWith(matrix.config.os, 'ubuntu') }} run: | sudo apt-get update - sudo apt-get install -y "clang-8" "lldb-8" "lld-8" "clang-format-8" g++-8 libxml2-dev + sudo apt-get install -y libxml2-dev + - name: "Linux-Min: get clang/gcc 8" + if: ${{ startsWith(matrix.config.os, 'ubuntu-18') }} + run: | + sudo apt-get update + sudo apt-get install -y "clang-8" "lldb-8" "lld-8" "clang-format-8" g++-8 - name: "MacOS: get libxml2" if: ${{ startsWith(matrix.config.os, 'macos') }} run: | @@ -106,9 +112,11 @@ jobs: with: cmake-version: ${{ matrix.config.cmake }} - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.config.py }} + - name: Update pip + run: python -m pip install --upgrade pip - name: OpenMPI cache uses: actions/cache@v2 id: cache-ompi @@ -149,13 +157,22 @@ jobs: mpic++ --show mpicc --show echo $PYTHONPATH - - name: Build arbor + - if: ${{ matrix.variant == 'static' }} + name: Build arbor run: | mkdir build cd build cmake .. -DCMAKE_CXX_COMPILER=$CXX -DCMAKE_C_COMPILER=$CC -DARB_WITH_PYTHON=ON -DARB_VECTORIZE=${{ matrix.config.simd }} -DPython3_EXECUTABLE=`which python` -DARB_WITH_MPI=${{ matrix.config.mpi }} -DARB_USE_BUNDLED_LIBS=ON -DARB_WITH_NEUROML=ON make -j4 tests examples pyarb html cd - + - if: ${{ matrix.variant == 'shared' }} + name: Build arbor + run: | + mkdir build + cd build + cmake .. -DCMAKE_CXX_COMPILER=$CXX -DCMAKE_C_COMPILER=$CC -DARB_WITH_PYTHON=ON -DARB_VECTORIZE=${{ matrix.config.simd }} -DPython3_EXECUTABLE=`which python` -DARB_WITH_MPI=${{ matrix.config.mpi }} -DARB_USE_BUNDLED_LIBS=ON -DARB_WITH_NEUROML=ON -DBUILD_SHARED_LIBS=ON + make -j4 tests examples pyarb html + cd - - name: Install arbor run: | cd build @@ -190,14 +207,12 @@ jobs: name: "Pip build test + Python examples test" runs-on: ubuntu-latest steps: - - name: Install Python packages - run: pip install numpy setuptools scikit-build ninja cmake - name: Clone w/ submodules uses: actions/checkout@v2 with: submodules: recursive - name: Build and install Arbor using pip + build flags - run: python3 -m pip install --verbose --install-option="-DARB_VECTORIZE=ON" --install-option="-DARB_ARCH=native" . + run: CMAKE_ARGS="-DARB_VECTORIZE=ON -DARB_ARCH=native" python3 -m pip install . - name: Check that build flags match run: | python3 -c "import arbor; print(arbor.config())" | grep -q "'arch': 'native'" diff --git a/.gitignore b/.gitignore index ee3b410fd7..036ba49182 100644 --- a/.gitignore +++ b/.gitignore @@ -24,6 +24,7 @@ __pycache__ *.swq *.swm *.swl +*~ .cache diff --git a/.gitmodules b/.gitmodules index 524236170b..258f3b5734 100644 --- a/.gitmodules +++ b/.gitmodules @@ -2,11 +2,18 @@ path = ext/google-benchmark url = https://github.com/google/benchmark branch = main -[submodule "python/pybind11"] - path = python/pybind11 - url = https://github.com/pybind/pybind11.git - branch = master [submodule "ext/fmt"] path = ext/fmt url = https://github.com/fmtlib/fmt.git branch = master +[submodule "ext/random123"] + path = ext/random123 + url = https://github.com/DEShawResearch/random123 + branch = main +[submodule "ext/json"] + path = ext/json + url = https://github.com/nlohmann/json.git + branch = master +[submodule "ext/pybind11"] + path = ext/pybind11 + url = https://github.com/pybind/pybind11.git diff --git a/.readthedocs.yml b/.readthedocs.yml index 2baa5a9bbc..2750945e28 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -12,8 +12,12 @@ sphinx: formats: [] +build: + os: ubuntu-20.04 + tools: + python: "3.7" + python: - version: 3.7 system_packages: true install: - requirements: doc/requirements.txt \ No newline at end of file diff --git a/CITATION.bib b/CITATION.bib index 60539fa37d..1887b7b626 100644 --- a/CITATION.bib +++ b/CITATION.bib @@ -7,8 +7,8 @@ @INPROCEEDINGS{ pages={274--282}, doi={10.1109/EMPDP.2019.8671560}, ISSN={2377-5750}} - -@software{nora_abi_akar_2022_5910151, + +@software{nora_abi_akar_2022_6865725, author = {Nora Abi Akar and John Biddiscombe and Benjamin Cumming and @@ -27,12 +27,14 @@ @software{nora_abi_akar_2022_5910151 Sebastian Schmitt and Felix Huber and Max Engelen and - Fabian Bösch}, - title = {Arbor Library v0.6}, - month = jan, + Fabian Bösch and + Jannik Luboeinski and + Simon Frasch}, + title = {Arbor Library v0.7}, + month = jul, year = 2022, publisher = {Zenodo}, - version = {v0.6}, - doi = {10.5281/zenodo.5910151}, - url = {https://doi.org/10.5281/zenodo.5910151} + version = {v0.7}, + doi = {10.5281/zenodo.6865725}, + url = {https://doi.org/10.5281/zenodo.6865725} } diff --git a/CMakeGraphVizOptions.cmake b/CMakeGraphVizOptions.cmake new file mode 100644 index 0000000000..33d774b044 --- /dev/null +++ b/CMakeGraphVizOptions.cmake @@ -0,0 +1 @@ +set(GRAPHVIZ_IGNORE_TARGETS "bench;brunel;drybench;dryrun;gap_junctions;generators;lfp;probe-demo;ring;single;unit;lmorpho") diff --git a/CMakeLists.txt b/CMakeLists.txt index d1a95db559..a05ee6da91 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -40,7 +40,7 @@ set(ARB_MODCC "" CACHE STRING "path to external modcc NMODL compiler") # Use libunwind to generate stack traces on errors? -option(ARB_UNWIND "Use libunwind for stack trace printing if available" OFF) +option(ARB_BACKTRACE "Enable stacktraces on assertion and exceptions (requires Boost)." OFF) # Specify GPU build type @@ -97,7 +97,6 @@ option(ARB_WITH_PYTHON "enable Python front end" OFF) set(CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake") include(GitSubmodule) # required for check_git_submodule include(ErrorTarget) # reguired for add_error_target -include(FindCUDAToolkit) # Set release as the default build type (CMake default is debug.) @@ -110,6 +109,7 @@ endif() # Add CUDA as a language if GPU support requested. (This has to be set early so # as to enable CUDA tests in generator expressions.) if(ARB_GPU STREQUAL "cuda") + include(FindCUDAToolkit) set(ARB_WITH_NVCC TRUE) # CMake 3.18 and later set the default CUDA architecture for # each target according to CMAKE_CUDA_ARCHITECTURES. @@ -120,14 +120,18 @@ if(ARB_GPU STREQUAL "cuda") set(CMAKE_CUDA_HOST_COMPILER ${CMAKE_CXX_COMPILER}) enable_language(CUDA) find_package(CUDAToolkit) - if(NOT DEFINED CMAKE_CUDA_ARCHITECTURES) - if(CUDAToolkit_VERSION_MAJOR GREATER 10) - set(CMAKE_CUDA_ARCHITECTURES 60 70 80) - else() - set(CMAKE_CUDA_ARCHITECTURES 60 70) - endif() + if(CUDAToolkit_VERSION_MAJOR GREATER 10) + set(CMAKE_CUDA_ARCHITECTURES 60 70 80) + else() + set(CMAKE_CUDA_ARCHITECTURES 60 70) endif() + # We _still_ need this otherwise CUDA symbols will not be exported + # from libarbor.a leading to linker errors when link external clients. + # Unit tests are NOT external enough. Re-review this somewhere in the + # future. + find_package(CUDA ${CUDAToolkit_VERSION_MAJOR} REQUIRED) elseif(ARB_GPU STREQUAL "cuda-clang") + include(FindCUDAToolkit) set(ARB_WITH_CUDA_CLANG TRUE) enable_language(CUDA) elseif(ARB_GPU STREQUAL "hip") @@ -170,10 +174,13 @@ set(CMAKE_CXX_EXTENSIONS OFF) # in the same CMakeLists.txt in which the target is defined. # Data and internal scripts go here -set(ARB_INSTALL_DATADIR ${CMAKE_INSTALL_FULL_DATAROOTDIR}/arbor) +set(ARB_INSTALL_DATADIR ${CMAKE_INSTALL_DATAROOTDIR}/arbor) # Derived paths for arbor-build-catalogue -file(RELATIVE_PATH ARB_REL_DATADIR ${CMAKE_INSTALL_FULL_BINDIR} ${CMAKE_INSTALL_FULL_DATAROOTDIR}/arbor) -file(RELATIVE_PATH ARB_REL_PACKAGEDIR ${CMAKE_INSTALL_FULL_BINDIR} ${CMAKE_INSTALL_FULL_LIBDIR}/cmake/arbor) +get_filename_component(absolute_full_bindir ${CMAKE_INSTALL_BINDIR} REALPATH) +get_filename_component(absolute_full_datarootdir ${CMAKE_INSTALL_DATAROOTDIR} REALPATH) +get_filename_component(absolute_full_libdir ${CMAKE_INSTALL_LIBDIR} REALPATH) +file(RELATIVE_PATH ARB_REL_DATADIR ${absolute_full_bindir} ${absolute_full_datarootdir}/arbor) +file(RELATIVE_PATH ARB_REL_PACKAGEDIR ${absolute_full_bindir} ${absolute_full_libdir}/cmake/arbor) # Interface library `arbor-config-defs` collects configure-time defines # for arbor, arborenv, arborio, of the form ARB_HAVE_XXX. These @@ -219,12 +226,14 @@ install(TARGETS arborio-public-deps EXPORT arborio-targets) # Add scripts and supporting CMake for setting up external catalogues configure_file(scripts/build-catalogue.in ${CMAKE_CURRENT_BINARY_DIR}/arbor-build-catalogue @ONLY) -install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/arbor-build-catalogue DESTINATION ${CMAKE_INSTALL_FULL_BINDIR}) +install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/arbor-build-catalogue DESTINATION ${CMAKE_INSTALL_BINDIR}) install(FILES mechanisms/BuildModules.cmake DESTINATION ${ARB_INSTALL_DATADIR}) install(FILES mechanisms/generate_catalogue DESTINATION ${ARB_INSTALL_DATADIR} PERMISSIONS OWNER_READ OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE) # External libraries in `ext` sub-directory: json, tinyopt and randon123. # Creates interface libraries `ext-json`, `ext-tinyopt` and `ext-random123` +cmake_dependent_option(ARB_USE_BUNDLED_FMT "Use bundled FMT lib." ON "ARB_USE_BUNDLED_LIBS" OFF) + cmake_dependent_option(ARB_USE_BUNDLED_JSON "Use bundled Niels Lohmann's json library." ON "ARB_USE_BUNDLED_LIBS" OFF) if(NOT ARB_USE_BUNDLED_JSON) find_package(nlohmann_json) @@ -232,9 +241,17 @@ if(NOT ARB_USE_BUNDLED_JSON) else() unset(nlohmann_json_DIR CACHE) endif() + +cmake_dependent_option(ARB_USE_BUNDLED_RANDOM123 "Use bundled Random123 lib." ON "ARB_USE_BUNDLED_LIBS" OFF) +add_library(ext-random123 INTERFACE) +if(NOT ARB_USE_BUNDLED_RANDOM123) + find_package(Random123 REQUIRED) + target_include_directories(ext-random123 INTERFACE ${RANDOM123_INCLUDE_DIR}) +endif() + add_subdirectory(ext) -cmake_dependent_option(ARB_USE_BUNDLED_FMT "Use bundled FMT lib." ON "ARB_USE_BUNDLED_LIBS" OFF) +install(TARGETS ext-random123 EXPORT arbor-targets) # Keep track of packages we need to add to the generated CMake config # file for arbor. @@ -285,7 +302,7 @@ endif() #---------------------------------------------------------- # The minimum version of Python supported by Arbor. -set(arb_py_version 3.6.0) +set(arb_py_version 3.7.0) if(DEFINED PYTHON_EXECUTABLE) set(Python3_EXECUTABLE ${PYTHON_EXECUTABLE}) @@ -294,7 +311,7 @@ endif() if(ARB_WITH_PYTHON) cmake_dependent_option(ARB_USE_BUNDLED_PYBIND11 "Use bundled pybind11" ON "ARB_WITH_PYTHON;ARB_USE_BUNDLED_LIBS" OFF) - if(DEFINED ENV{CIBUILDWHEEL}) + if(DEFINED ENV{CIBUILDWHEEL} AND (UNIX AND NOT APPLE)) find_package(Python3 ${arb_py_version} COMPONENTS Interpreter Development.Module REQUIRED) else() find_package(Python3 ${arb_py_version} COMPONENTS Interpreter Development REQUIRED) @@ -348,8 +365,6 @@ endif() #-------------- if(ARB_WITH_GPU) - target_compile_definitions(arbor-config-defs INTERFACE ARB_HAVE_GPU) - if(ARB_WITH_NVCC OR ARB_WITH_CUDA_CLANG) target_include_directories(arborenv-private-deps INTERFACE ${CMAKE_CUDA_TOOLKIT_INCLUDE_DIRECTORIES}) add_compile_options( @@ -371,17 +386,15 @@ if(ARB_WITH_GPU) endif() endif() -# Use libunwind if requested for pretty printing stack traces -#------------------------------------------------------------- +# Use boost::stacktrace if requested for pretty printing stack traces +#-------------------------------------------------------------------- -if (ARB_UNWIND) - find_package(Unwind REQUIRED) - if(Unwind_FOUND) - target_link_libraries(arbor-private-deps INTERFACE Unwind::unwind) - target_compile_definitions(arbor-private-deps INTERFACE WITH_UNWIND) - - list(APPEND arbor_export_dependencies "Unwind") - endif() +if (ARB_BACKTRACE) + find_package(Boost REQUIRED + COMPONENTS stacktrace_basic + stacktrace_addr2line) + target_link_libraries(arbor-private-deps INTERFACE Boost::stacktrace_basic Boost::stacktrace_addr2line ${CMAKE_DL_LIBS}) + target_compile_definitions(arbor-private-deps INTERFACE WITH_BACKTRACE) endif() # Build and use modcc unless explicit path given @@ -532,7 +545,6 @@ install( FILES "${CMAKE_CURRENT_BINARY_DIR}/arbor-config.cmake" "${CMAKE_CURRENT_BINARY_DIR}/arbor-config-version.cmake" - cmake/FindUnwind.cmake DESTINATION "${cmake_config_dir}") add_subdirectory(lmorpho) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 3be4b6797f..aa7c38b12b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -15,6 +15,5 @@ where we have laid out how you can go about making your contribution. You can reach out in the following ways: -* [Discussions](https://github.com/arbor-sim/arbor/discussions). We encourage you to use the discussion board for help with modelling. Any other questions or remarks regarding using Arbor for your research are of course also welcome. -* [Gitter](https://gitter.im/arbor-sim/community). If you're interested in developing Arbor itself, get in touch on Gitter. +* [Gitter](https://gitter.im/arbor-sim/community) and [Matrix](https://matrix.to/#/#arbor-sim_community:gitter.im). We encourage you to use the discussion board for help with modelling. Any other questions or remarks regarding using Arbor for your research are of course also welcome. * [Email](mailto:contact@arbor-sim.org). diff --git a/README.md b/README.md index cf1190075e..7b3eca7883 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,17 @@ -[![hpc ci](https://gitlab.com/cscs-ci/arbor-sim/arbor/badges/master/pipeline.svg)](https://gitlab.com/cscs-ci/arbor-sim/arbor/-/commits/master) -[![basic ci](https://github.com/arbor-sim/arbor/actions/workflows/basic.yml/badge.svg)](https://github.com/arbor-sim/arbor/actions/workflows/basic.yml) +[![ci](https://github.com/arbor-sim/arbor/actions/workflows/test-everything.yml/badge.svg)](https://github.com/arbor-sim/arbor/actions/workflows/test-everything.yml) +[![hpcci](https://gitlab.com/cscs-ci/arbor-sim/arbor/badges/master/pipeline.svg)](https://gitlab.com/cscs-ci/arbor-sim/arbor/-/commits/master) +[![pythonwheels](https://github.com/arbor-sim/arbor/actions/workflows/ciwheel.yml/badge.svg)](https://github.com/arbor-sim/arbor/actions/workflows/ciwheel.yml) [![gitpod](https://img.shields.io/badge/Gitpod-Ready--to--Code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/arbor-sim/arbor) [![docs](https://readthedocs.org/projects/arbor/badge/?version=latest)](https://docs.arbor-sim.org/en/latest/) -[![Gitter](https://badges.gitter.im/arbor-sim.svg)](https://gitter.im/arbor-sim/community) +[![gitter](https://badges.gitter.im/arbor-sim/community.svg)](https://gitter.im/arbor-sim/community) # Arbor Library [Arbor](https://arbor-sim.org) is a library for implementing performance portable network simulations of multi-compartment neuron models. -An installation guide and library documentation are available online at [Read the Docs](http://arbor.readthedocs.io/en/latest/). +An installation guide and library documentation are available online at [docs.arbor-sim.org](http://docs.arbor-sim.org). -[Submit a ticket or start a discussion](https://github.com/arbor-sim/arbor) if you have any questions or want help. +[Submit a ticket](https://github.com/arbor-sim/arbor/issues) or [join Gitter](https://gitter.im/arbor-sim/community) or [Matrix](https://matrix.to/#/#arbor-sim_community:gitter.im) if you have any questions or need help. ### Citing Arbor diff --git a/VERSION b/VERSION index 2feed2fef8..c0ab427224 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.6.1-dev +0.7.1-dev diff --git a/arbor/CMakeLists.txt b/arbor/CMakeLists.txt index db81edbbd8..985767ad90 100644 --- a/arbor/CMakeLists.txt +++ b/arbor/CMakeLists.txt @@ -21,6 +21,7 @@ set(arbor_sources fvm_lowered_cell_impl.cpp hardware/memory.cpp hardware/power.cpp + iexpr.cpp io/locked_ostream.cpp io/serialize_hex.cpp label_resolution.cpp @@ -71,6 +72,8 @@ if(ARB_WITH_GPU) backends/gpu/threshold_watcher.cu backends/gpu/matrix_assemble.cu backends/gpu/matrix_fine.cu + backends/gpu/diffusion.cu + backends/gpu/fine.cu backends/gpu/matrix_solve.cu backends/gpu/multi_event_stream.cpp backends/gpu/multi_event_stream.cu @@ -136,5 +139,10 @@ endif() set_target_properties(arbor PROPERTIES CUDA_RESOLVE_DEVICE_SYMBOLS ON) +export_visibility(arbor) + +install(FILES ${CMAKE_CURRENT_BINARY_DIR}/include/arbor/export.hpp + DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/arbor) + install(TARGETS arbor EXPORT arbor-targets ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}) diff --git a/arbor/arbexcept.cpp b/arbor/arbexcept.cpp index 50ac0968c0..74dca037f3 100644 --- a/arbor/arbexcept.cpp +++ b/arbor/arbexcept.cpp @@ -4,12 +4,27 @@ #include #include +#include "util/unwind.hpp" #include "util/strprintf.hpp" namespace arb { using arb::util::pprintf; +arbor_exception::arbor_exception(const std::string& what): + std::runtime_error{what} { + // Backtrace w/o this c'tor and that of backtrace. + where = util::backtrace{}.pop(2).to_string(); +} + +arbor_internal_error::arbor_internal_error(const std::string& what): + std::logic_error(what) { + // Backtrace w/o this c'tor and that of backtrace. + where = util::backtrace{}.pop(2).to_string(); +} + +domain_error::domain_error(const std::string& w): arbor_exception(w) {} + bad_cell_probe::bad_cell_probe(cell_kind kind, cell_gid_type gid): arbor_exception(pprintf("recipe::get_grobe() is not supported for cell with gid {} of kind {})", gid, kind)), gid(gid), @@ -42,9 +57,9 @@ zero_thread_requested_error::zero_thread_requested_error(unsigned nbt): nbt(nbt) {} -bad_probe_id::bad_probe_id(cell_member_type probe_id): - arbor_exception(pprintf("bad probe id {}", probe_id)), - probe_id(probe_id) +bad_probeset_id::bad_probeset_id(cell_member_type probeset_id): + arbor_exception(pprintf("bad probe id {}", probeset_id)), + probeset_id(probeset_id) {} gj_unsupported_lid_selection_policy::gj_unsupported_lid_selection_policy(cell_gid_type gid, cell_tag_type label): @@ -86,6 +101,12 @@ no_such_parameter::no_such_parameter(const std::string& mech_name, const std::st param_name(param_name) {} +illegal_diffusive_mechanism::illegal_diffusive_mechanism(const std::string& m, const std::string& i): + arbor_exception(pprintf("mechanism '{}' accesses diffusive value of ion '{}', but diffusivity is disabled for it.", m, i)), + mech{m}, + ion{i} +{} + invalid_parameter_value::invalid_parameter_value(const std::string& mech_name, const std::string& param_name, double value): arbor_exception(pprintf("invalid parameter value for mechanism {} parameter {}: {}", mech_name, param_name, value)), mech_name(mech_name), diff --git a/arbor/assert.cpp b/arbor/assert.cpp index b17fa3251e..ffcd325571 100644 --- a/arbor/assert.cpp +++ b/arbor/assert.cpp @@ -6,13 +6,13 @@ namespace arb { -void abort_on_failed_assertion( +void ARB_ARBOR_API abort_on_failed_assertion( const char* assertion, const char* file, int line, const char* func) { - // Emit stack trace If libunwind is being used. + // Emit stack trace if enabled. std::cerr << util::backtrace(); // Explicit flush, as we can't assume default buffering semantics on stderr/cerr, @@ -22,7 +22,7 @@ void abort_on_failed_assertion( std::abort(); } -void ignore_failed_assertion( +void ARB_ARBOR_API ignore_failed_assertion( const char* assertion, const char* file, int line, diff --git a/arbor/backends/event.hpp b/arbor/backends/event.hpp index d665610221..5ad92bed91 100644 --- a/arbor/backends/event.hpp +++ b/arbor/backends/event.hpp @@ -13,9 +13,9 @@ namespace arb { struct target_handle { cell_local_size_type mech_id; // mechanism type identifier (per cell group). cell_local_size_type mech_index; // instance of the mechanism - cell_size_type intdom_index; // which integration domain (acts as index into e.g. vec_t) + cell_size_type intdom_index; // which integration domain (acts as index into arrays) - target_handle() {} + target_handle() = default; target_handle(cell_local_size_type mech_id, cell_local_size_type mech_index, cell_size_type intdom_index): mech_id(mech_id), mech_index(mech_index), intdom_index(intdom_index) {} }; @@ -50,7 +50,7 @@ inline deliverable_event_data event_data(const deliverable_event& ev) { // Sample events (raw values from back-end state). -using probe_handle = const fvm_value_type*; +using probe_handle = const arb_value_type*; struct raw_probe_info { probe_handle handle; // where the to-be-probed value sits diff --git a/arbor/backends/gpu/diffusion.cu b/arbor/backends/gpu/diffusion.cu new file mode 100644 index 0000000000..98ea02ec45 --- /dev/null +++ b/arbor/backends/gpu/diffusion.cu @@ -0,0 +1,274 @@ +#include +#include +#include + +#include "matrix_common.hpp" +#include "diffusion.hpp" + +namespace arb { +namespace gpu { +namespace kernels { +/// GPU implementation of Hines matrix assembly. +/// Fine layout. +/// For a given time step size dt: +/// - use the precomputed alpha and alpha_d values to construct the diagonal +/// and off diagonal of the symmetric Hines matrix. +/// - compute the RHS of the linear system to solve. +template +__global__ +void assemble_diffusion( + T* __restrict__ const d, + T* __restrict__ const rhs, + const T* __restrict__ const invariant_d, + const T* __restrict__ const concentration, + const T* __restrict__ const voltage, + const T* __restrict__ const current, + const T q, + const T* __restrict__ const conductivity, + const T* __restrict__ const area, + const I* __restrict__ const cv_to_intdom, + const T* __restrict__ const dt_intdom, + const I* __restrict__ const perm, + unsigned n) { + const unsigned tid = threadIdx.x + blockDim.x*blockIdx.x; + if (tid < n) { + const auto dt = dt_intdom[cv_to_intdom[tid]]; + const auto p = dt > 0; + const auto pid = perm[tid]; + auto u = voltage[tid]; // mV + auto g = conductivity[tid]; // µS + auto J = current[tid]; // A/m^2 + auto A = 1e-3*area[tid]; // 1e-9·m² + auto X = concentration[tid]; // mM + // conversion from current density to concentration change + // using Faraday's constant + auto F = A/(q*96.485332); + + d[pid] = p ? (1e-3/dt + F*g + invariant_d[tid]) : 0; + rhs[pid] = p ? (1e-3/dt*X + F*(u*g - J)) : concentration[tid]; + } +} + +/// GPU implementation of Hines Matrix solver. +/// Fine-grained tree based solver. +/// Each block solves a set of matricesb iterating over the levels of matrix +/// and perfoming a backward and forward substitution. On each level one thread +/// gets assigned to one branch on this level of a matrix and solves and +/// performs the substitution. Afterwards all threads continue on the next +/// level. +/// To avoid idle threads, one should try that on each level, there is a similar +/// number of branches. +template +__global__ +void solve_diffusion( + T* __restrict__ const rhs, + T* __restrict__ const d, + const T* __restrict__ const u, + const level_metadata* __restrict__ const level_meta, + const arb_index_type* __restrict__ const level_lengths, + const arb_index_type* __restrict__ const level_parents, + const arb_index_type* __restrict__ const block_index, + const arb_index_type* __restrict__ const num_matrix) // number of packed matrices = number of cells +{ + const auto tid = threadIdx.x; + const auto bid = blockIdx.x; + + const auto first_level = block_index[bid]; + const auto num_levels = block_index[bid + 1] - first_level; + + const auto block_level_meta = &level_meta[first_level]; + + // backward substitution + + for (unsigned l=0; l0; --l) { + const auto& lvl_meta = block_level_meta[l-1]; + + // Addresses of the first elements of level_lengths and level_parents + // that belong to this level + const auto lvl_lengths = level_lengths + lvl_meta.level_data_index; + const auto lvl_parents = level_parents + lvl_meta.level_data_index; + + const unsigned width = lvl_meta.num_branches; + const unsigned parent_index = block_level_meta[l].matrix_data_index; + + __syncthreads(); + + // Perform forward-substitution for each branch on this level. + // One thread per branch. + if (tid < width) { + // Find the index of the first node in this branch. + const unsigned len = lvl_lengths[tid]; + unsigned pos = lvl_meta.matrix_data_index + (len-1)*width + tid; + + if (d[pos]!=0) { + // Load the rhs value for the parent node of this branch. + const unsigned p = parent_index + lvl_parents[tid]; + T rhsp = rhs[p]; + // each branch perform substitution + for (unsigned i=0; i>>( + d, rhs, invariant_d, concentration, voltage, current, q, conductivity, area, + cv_to_intdom, dt_intdom, perm, n); +} + +// Example: +// +// block 0 block 1 block 2 +// .~~~~~~~~~~~~~~~~~~. .~~~~~~~~~~~~~~~~~~~~~~~~. .~~~~~~~~~~~ ~ ~ +// +// L0 \ / L5 \ / +// \/ \/ +// L1 \ / \ / L3 \ / \ | / \ / L6 \ / . . . +// \ / \ / \ / \|/ \ / \ / +// L2 | | L4 | | | L7 | +// | | | | | | +// +// levels = [L0, L1, L2, L3, L4, L5, L6, L7, ... ] +// block_index = [0, 3, 5, 8, ...] +// num_levels = [3, 2, 3, ...] +// num_cells = [2, 3, ...] +// num_blocks = level_start.size() - 1 = num_levels.size() = num_cells.size() +ARB_ARBOR_API void solve_diffusion( + arb_value_type* rhs, + arb_value_type* d, // diagonal values + const arb_value_type* u, // upper diagonal (and lower diagonal as the matrix is SPD) + const level_metadata* level_meta, // information pertaining to each level + const arb_index_type* level_lengths, // lengths of branches of every level concatenated + const arb_index_type* level_parents, // parents of branches of every level concatenated + const arb_index_type* block_index, // start index into levels for each gpu block + arb_index_type* num_cells, // the number of cells packed into this single matrix + arb_index_type* padded_size, // length of rhs, d, u, including padding + unsigned num_blocks, // number of blocks + unsigned blocksize) // size of each block +{ + kernels::solve_diffusion<<>>( + rhs, d, u, level_meta, level_lengths, level_parents, block_index, + num_cells); +} + +} // namespace gpu +} // namespace arb diff --git a/arbor/backends/gpu/diffusion.hpp b/arbor/backends/gpu/diffusion.hpp new file mode 100644 index 0000000000..7943812f3a --- /dev/null +++ b/arbor/backends/gpu/diffusion.hpp @@ -0,0 +1,40 @@ +#include +#include + +#include + +#include "fine.hpp" + +namespace arb { +namespace gpu { + +ARB_ARBOR_API void assemble_diffusion( + arb_value_type* d, + arb_value_type* rhs, + const arb_value_type* invariant_d, + const arb_value_type* concentration, + const arb_value_type* voltage, + const arb_value_type* current, + const arb_value_type q, + const arb_value_type* conductivity, + const arb_value_type* area, + const arb_index_type* cv_to_intdom, + const arb_value_type* dt_intdom, + const arb_index_type* perm, + unsigned n); + +ARB_ARBOR_API void solve_diffusion( + arb_value_type* rhs, + arb_value_type* d, // diagonal values + const arb_value_type* u, // upper diagonal (and lower diagonal as the matrix is SPD) + const level_metadata* level_meta, // information pertaining to each level + const arb_index_type* level_lengths, // lengths of branches of every level concatenated + const arb_index_type* level_parents, // parents of branches of every level concatenated + const arb_index_type* block_index, // start index (exclusive) into levels for each gpu block + arb_index_type* num_cells, // the number of cells packed into this single matrix + arb_index_type* padded_size, // length of rhs, d, u, including padding + unsigned num_blocks, // number of blocks + unsigned blocksize); // size of each block + +} // namespace gpu +} // namespace arb diff --git a/arbor/backends/gpu/diffusion_state.hpp b/arbor/backends/gpu/diffusion_state.hpp new file mode 100644 index 0000000000..dd75d865ca --- /dev/null +++ b/arbor/backends/gpu/diffusion_state.hpp @@ -0,0 +1,462 @@ +#pragma once + +#include + +#include +#include + +#include + +#include "memory/memory.hpp" +#include "util/partition.hpp" +#include "util/rangeutil.hpp" +#include "util/span.hpp" +#include "tree.hpp" +#include "diffusion.hpp" +#include "forest.hpp" +#include "fine.hpp" + +namespace arb { +namespace gpu { + +template +struct diffusion_state { +public: + using value_type = T; + using size_type = I; + + using array = memory::device_vector; + using view = typename array::view_type; + using const_view = typename array::const_view_type; + using iarray = memory::device_vector; + + using metadata_array = memory::device_vector; + + // Maps control volume to integration domain + iarray cv_to_intdom; + + array d; // [μS] + array u; // [μS] + array rhs; // [nA] + + // Required for matrix assembly + array cv_area; // [μm^2] + + // Invariant part of the matrix diagonal + array invariant_d; // [μS] + + // Solution in unpacked format + array solution_; + + // Maximum number of branches in each level per block + unsigned max_branches_per_level; + + // Number of rows in matrix + unsigned matrix_size; + + // Number of cells + unsigned num_cells; + iarray num_cells_in_block; + + // End of the data of each level + iarray data_partition; + std::size_t data_size; + + // Metadata for each level + // Includes indices into d, u, rhs and level_lengths, level_parents + metadata_array level_meta; + + // Stores the lengths (number of compartments) of the branches of each + // level sequentially in memory. Indexed by level_metadata::level_data_index + iarray level_lengths; + + // Stores the indices of the parent of each of the branches in each + // level sequentially in memory. Indexed by level_metadata::level_data_index + iarray level_parents; + + // Stores the indices to the first level belonging to each block + // block b owns { levels[block_index[b]], ..., levels[block_index[b+1] - 1] } + // there is an additional entry at the end of the vector to make the above + // computation safe + iarray block_index; + + // Permutation from front end storage to packed storage + // `solver_format[perm[i]] = external_format[i]` + iarray perm; + + + diffusion_state() = default; + + // constructor for fine-grained matrix. + diffusion_state(const std::vector& p, + const std::vector& cell_cv_divs, + const std::vector& face_diffusivity, + const std::vector& area, + const std::vector& cell_intdom) { + using util::make_span; + constexpr unsigned npos = unsigned(-1); + + max_branches_per_level = 128; + + num_cells = cell_cv_divs.size()-1; + + forest trees(p, cell_cv_divs); + trees.optimize(); + + // Now distribute the cells into gpu blocks. + // While the total number of branches on each level of theses cells in a + // block are less than `max_branches_per_level` we add more cells. If + // one block is full, we start a new gpu block. + + unsigned current_block = 0; + std::vector block_num_branches_per_depth; + std::vector block_ix(num_cells); + + // Accumulate num cells in block in a temporary vector to be copied to the device + std::vector temp_ncells_in_block; + temp_ncells_in_block.resize(1, 0); + + // branch_map = branch_maps[block] is a branch map for each gpu block + // branch_map[depth] is list of branches is this level + // each branch branch_map[depth][i] has + // {id, parent_id, start_idx, parent_idx, length} + std::vector>> branch_maps; + branch_maps.resize(1); + + unsigned num_branches = 0u; + for (auto c: make_span(0u, num_cells)) { + auto cell_start = cell_cv_divs[c]; + auto cell_tree = trees.branch_tree(c); + auto fine_tree = trees.compartment_tree(c); + auto branch_starts = trees.branch_offsets(c); + auto branch_lengths = trees.branch_lengths(c); + + auto depths = depth_from_root(cell_tree); + + // calculate the number of levels in this cell + auto cell_num_levels = util::max_value(depths)+1u; + + auto num_cell_branches = cell_tree.num_segments(); + + // count number of branches per level + std::vector cell_num_branches_per_depth(cell_num_levels, 0u); + for (auto i: make_span(num_cell_branches)) { + cell_num_branches_per_depth[depths[i]] += 1; + } + // resize the block levels if neccessary + if (cell_num_levels > block_num_branches_per_depth.size()) { + block_num_branches_per_depth.resize(cell_num_levels, 0); + } + + + // check if we can fit the current cell into the last gpu block + bool fits_current_block = true; + for (auto i: make_span(cell_num_levels)) { + unsigned new_branches_per_depth = + block_num_branches_per_depth[i] + + cell_num_branches_per_depth[i]; + if (new_branches_per_depth > max_branches_per_level) { + fits_current_block = false; + } + } + if (fits_current_block) { + // put the cell into current block + block_ix[c] = current_block; + temp_ncells_in_block[block_ix[c]] += 1; + // and increment counter + for (auto i: make_span(cell_num_levels)) { + block_num_branches_per_depth[i] += cell_num_branches_per_depth[i]; + } + } else { + // otherwise start a new block + block_ix[c] = current_block + 1; + temp_ncells_in_block.push_back(1); + branch_maps.resize(branch_maps.size()+1); + current_block += 1; + // and reset counter + block_num_branches_per_depth = cell_num_branches_per_depth; + for (auto num: block_num_branches_per_depth) { + if (num > max_branches_per_level) { + throw std::runtime_error( + "Could not fit " + std::to_string(num) + + " branches in a block of size " + + std::to_string(max_branches_per_level)); + } + } + } + num_cells_in_block = memory::make_const_view(temp_ncells_in_block); + + + // the branch map for the block in which we put the cell + // maps levels to a list of branches in that level + auto& branch_map = branch_maps[block_ix[c]]; + + // build branch_map: + // branch_map[i] is a list of branch meta-data for branches with depth i + if (cell_num_levels > branch_map.size()) { + branch_map.resize(cell_num_levels); + } + for (auto i: make_span(num_cell_branches)) { + branch b; + auto depth = depths[i]; + // give the branch a unique id number + b.id = i + num_branches; + // take care to mark branches with no parents with npos + b.parent_id = cell_tree.parent(i)==cell_tree.no_parent ? + npos : cell_tree.parent(i) + num_branches; + b.start_idx = branch_starts[i] + cell_start; + b.length = branch_lengths[i]; + b.parent_idx = p[b.start_idx] + cell_start; + branch_map[depth].push_back(b); + } + // total number of branches of all cells + num_branches += num_cell_branches; + } + + for (auto& branch_map: branch_maps) { + // reverse the levels + std::reverse(branch_map.begin(), branch_map.end()); + + // Sort all branches on each level in descending order of length. + // Later, branches will be partitioned over thread blocks, and we will + // take advantage of the fact that the first branch in a partition is + // the longest, to determine how to pack all the branches in a block. + for (auto& branches: branch_map) { + util::sort(branches); + } + } + + // The branches generated above have been assigned contiguous ids. + // Now generate a vector of branch_loc, one for each branch, that + // allow for quick lookup by id of the level and index within a level + // of each branch. + // This information is only used in the generation of the levels below. + + // Helper for recording location of a branch once packed. + struct branch_loc { + unsigned block; // the gpu block containing the cell to which the branch blongs to + unsigned level; // the level containing the branch + unsigned index; // the index of the branch on that level + }; + + // branch_locs will hold the location information for each branch. + std::vector branch_locs(num_branches); + for (unsigned b: make_span(branch_maps.size())) { + const auto& branch_map = branch_maps[b]; + for (unsigned l: make_span(branch_map.size())) { + const auto& branches = branch_map[l]; + + // Record the location information + for (auto i=0u; i temp_meta; + std::vector temp_lengths, temp_parents, temp_data_part, temp_block_index; + + temp_block_index.reserve(branch_maps.size() + 1); + temp_block_index.push_back(0); + temp_data_part.reserve(branch_maps.size()); + + // Offset into the packed data format, used to apply permutation on data + auto pos = 0u; + // Offset into the packed data format, used to access level_lengths and level_parents + auto data_start = 0u; + for (const auto& branch_map: branch_maps) { + for (const auto& lvl_branches: branch_map) { + + level_metadata lvl_meta; + std::vector lvl_lengths(lvl_branches.size()), lvl_parents(lvl_branches.size()); + + lvl_meta.num_branches = lvl_branches.size(); + lvl_meta.matrix_data_index = pos; + lvl_meta.level_data_index = data_start; + + // The length of the first branch is the upper bound on branch + // length as they are sorted in descending order of length. + lvl_meta.max_length = lvl_branches.front().length; + + unsigned bi = 0u; + for (const auto& b: lvl_branches) { + // Set the length of the branch. + lvl_lengths[bi] = b.length; + + // Set the parent indexes. During the forward and backward + // substitution phases each branch accesses the last node in + // its parent branch. + auto index = b.parent_id==npos? npos: branch_locs[b.parent_id].index; + lvl_parents[bi] = index; + ++bi; + } + + data_start+= lvl_meta.num_branches; + pos += lvl_meta.max_length*lvl_meta.num_branches; + + temp_meta.push_back(std::move(lvl_meta)); + util::append(temp_lengths, lvl_lengths); + util::append(temp_parents, lvl_parents); + } + auto prev_end = temp_block_index.back(); + temp_block_index.push_back(prev_end + branch_map.size()); + temp_data_part.push_back(pos); + } + data_size = pos; + + // set matrix state + matrix_size = p.size(); + + // form the permutation index used to reorder vectors to/from the + // ordering used by the fine grained matrix storage. + std::vector perm_tmp(matrix_size); + for (auto block: make_span(branch_maps.size())) { + const auto& branch_map = branch_maps[block]; + const auto first_level = temp_block_index[block]; + + for (auto i: make_span(temp_block_index[block + 1] - first_level)) { + const auto& l = temp_meta[first_level + i]; + for (auto j: make_span(l.num_branches)) { + const auto& b = branch_map[i][j]; + auto j_lvl_length = temp_lengths[l.level_data_index + j]; + auto to = l.matrix_data_index + j + l.num_branches*(j_lvl_length-1); + auto from = b.start_idx; + for (auto k: make_span(b.length)) { + perm_tmp[from + k] = to - k*l.num_branches; + } + } + } + } + + level_meta = memory::make_const_view(temp_meta); + level_lengths = memory::make_const_view(temp_lengths); + level_parents = memory::make_const_view(temp_parents); + data_partition = memory::make_const_view(temp_data_part); + block_index = memory::make_const_view(temp_block_index); + + auto perm_balancing = trees.permutation(); + + // apppy permutation form balancing + std::vector perm_tmp2(matrix_size); + for (auto i: make_span(matrix_size)) { + // This is CORRECT! verified by using the ring benchmark with root=0 (where the permutation is actually not id) + perm_tmp2[perm_balancing[i]] = perm_tmp[i]; + } + // copy permutation to device memory + perm = memory::make_const_view(perm_tmp2); + + + // Summary of fields and their storage format: + // + // face_conductance : not needed, don't store + // d, u, rhs : packed + // invariant_d : flat + // cv_to_cell : flat + // area : flat + + // the invariant part of d is stored in in flat form + std::vector invariant_d_tmp(matrix_size, 0); + std::vector temp_u_shuffled(matrix_size, 0); + array u_shuffled; + for (auto i: make_span(1u, matrix_size)) { + auto gij = face_diffusivity[i]; + + temp_u_shuffled[i] = -gij; + invariant_d_tmp[i] += gij; + if (p[i]!=-1) { + invariant_d_tmp[p[i]] += gij; + } + } + u_shuffled = memory::make_const_view(temp_u_shuffled); + + // the matrix components u, d and rhs are stored in packed form + auto nan = std::numeric_limits::quiet_NaN(); + d = array(data_size, nan); + u = array(data_size, nan); + rhs = array(data_size, nan); + + // transform u_shuffled values into packed u vector. + flat_to_packed(u_shuffled, u); + + // the invariant part of d and cv_area are in flat form + cv_area = memory::make_const_view(area); + invariant_d = memory::make_const_view(invariant_d_tmp); + + // calculate the cv -> cell mappings + std::vector cv_to_cell_tmp(matrix_size); + size_type ci = 0; + for (auto cv_span: util::partition_view(cell_cv_divs)) { + util::fill(util::subrange_view(cv_to_cell_tmp, cv_span), ci); + ++ci; + } + std::vector cv_to_intdom_tmp(matrix_size); + for (auto i = 0ul; i < cv_to_cell_tmp.size(); ++i) { + cv_to_intdom_tmp[i] = cell_intdom[cv_to_cell_tmp[i]]; + } + cv_to_intdom = memory::make_const_view(cv_to_intdom_tmp); + } + + // Assemble the matrix + // Afterwards the diagonal and RHS will have been set given dt, voltage, current, and conductivity. + // dt_intdom [ms] (per integration domain) + // voltage [mV] + // current density [A/m²] + // conductivity [kS/m²] + void assemble(const_view dt_intdom, const_view concentration, const_view voltage, const_view current, const_view conductivity, arb_value_type q) { + assemble_diffusion(d.data(), + rhs.data(), + invariant_d.data(), + concentration.data(), + voltage.data(), + current.data(), + q, + conductivity.data(), + cv_area.data(), + cv_to_intdom.data(), + dt_intdom.data(), + perm.data(), + size()); + } + + void solve(array& to) { + solve_diffusion(rhs.data(), + d.data(), + u.data(), + level_meta.data(), + level_lengths.data(), + level_parents.data(), + block_index.data(), + num_cells_in_block.data(), + data_partition.data(), + num_cells_in_block.size(), + max_branches_per_level); + // unpermute the solution + packed_to_flat(rhs, to); + } + + std::size_t size() const { return matrix_size; } + +private: + void flat_to_packed(const array& from, array& to ) { + arb_assert(from.size()==matrix_size); + arb_assert(to.size()==data_size); + scatter(from.data(), to.data(), perm.data(), perm.size()); + } + + void packed_to_flat(const array& from, array& to ) { + arb_assert(from.size()==data_size); + arb_assert(to.size()==matrix_size); + gather(from.data(), to.data(), perm.data(), perm.size()); + } +}; + +} // namespace gpu +} // namespace arb diff --git a/arbor/backends/gpu/fine.cu b/arbor/backends/gpu/fine.cu new file mode 100644 index 0000000000..1f5c4945b6 --- /dev/null +++ b/arbor/backends/gpu/fine.cu @@ -0,0 +1,65 @@ +#include +#include +#include + +#include "fine.hpp" + +namespace arb { +namespace gpu { +namespace kernels { +// to[i] = from[p[i]] +template +__global__ +void gather(const T* __restrict__ const from, + T* __restrict__ const to, + const I* __restrict__ const p, + unsigned n) { + unsigned i = threadIdx.x + blockDim.x*blockIdx.x; + + if (i +__global__ +void scatter(const T* __restrict__ const from, + T* __restrict__ const to, + const I* __restrict__ const p, + unsigned n) { + unsigned i = threadIdx.x + blockDim.x*blockIdx.x; + + if (i>>(from, to, p, n); +} + +ARB_ARBOR_API void scatter( + const arb_value_type* from, + arb_value_type* to, + const arb_index_type* p, + unsigned n) +{ + constexpr unsigned blockdim = 128; + const unsigned griddim = impl::block_count(n, blockdim); + + kernels::scatter<<>>(from, to, p, n); +} + +} // namespace gpu +} // namespace arb diff --git a/arbor/backends/gpu/fine.hpp b/arbor/backends/gpu/fine.hpp new file mode 100644 index 0000000000..de090d8e53 --- /dev/null +++ b/arbor/backends/gpu/fine.hpp @@ -0,0 +1,85 @@ +#pragma once + +#include + +#include +#include + +namespace arb { +namespace gpu { + + +// Helper type for branch meta data in setup phase of fine grained +// matrix storage+solver. +// +// leaf +// . +// . +// . +// - * +// | +// l * +// e | +// n * +// g | +// t * +// h | +// - start_idx +// | +// parent_idx +// | +// . +// . +// . +// root +struct branch { + unsigned id; // branch id + unsigned parent_id; // parent branch id + unsigned parent_idx; // + unsigned start_idx; // the index of the first node in the input parent index + unsigned length; // the number of nodes in the branch +}; + +// order branches by: +// - descending length +// - ascending id +inline +bool operator<(const branch& lhs, const branch& rhs) { + if (lhs.length!=rhs.length) { + return lhs.length>rhs.length; + } else { + return lhs.id +#include #include "tree.hpp" namespace arb { @@ -9,7 +10,7 @@ namespace gpu { using size_type = int; -struct forest { +struct ARB_ARBOR_API forest { forest(const std::vector& p, const std::vector& cell_cv_divs); void optimize(); diff --git a/arbor/backends/gpu/fvm.hpp b/arbor/backends/gpu/fvm.hpp index ef025bbfc0..d492357852 100644 --- a/arbor/backends/gpu/fvm.hpp +++ b/arbor/backends/gpu/fvm.hpp @@ -16,8 +16,6 @@ #include "threshold_watcher.hpp" -#include "matrix_state_fine.hpp" - namespace arb { namespace gpu { @@ -25,9 +23,9 @@ struct backend { static bool is_supported() { return true; } static std::string name() { return "gpu"; } - using value_type = fvm_value_type; - using index_type = fvm_index_type; - using size_type = fvm_size_type; + using value_type = arb_value_type; + using index_type = arb_index_type; + using size_type = arb_size_type; using array = arb::gpu::array; using iarray = arb::gpu::iarray; @@ -42,28 +40,28 @@ struct backend { return memory::on_host(v); } - using matrix_state = arb::gpu::matrix_state_fine; - using threshold_watcher = arb::gpu::threshold_watcher; - + using threshold_watcher = arb::gpu::threshold_watcher; + using cable_solver = arb::gpu::matrix_state_fine; + using diffusion_solver = arb::gpu::diffusion_state; using deliverable_event_stream = arb::gpu::deliverable_event_stream; - using sample_event_stream = arb::gpu::sample_event_stream; + using sample_event_stream = arb::gpu::sample_event_stream; using shared_state = arb::gpu::shared_state; using ion_state = arb::gpu::ion_state; static threshold_watcher voltage_watcher( shared_state& state, - const std::vector& cv, + const std::vector& detector_cv, const std::vector& thresholds, const execution_context& context) { return threshold_watcher( state.cv_to_intdom.data(), - state.voltage.data(), state.src_to_spike.data(), &state.time, &state.time_to, - cv, + state.voltage.size(), + detector_cv, thresholds, context); } diff --git a/arbor/backends/gpu/gpu_store_types.hpp b/arbor/backends/gpu/gpu_store_types.hpp index ac215ed437..51073c18ac 100644 --- a/arbor/backends/gpu/gpu_store_types.hpp +++ b/arbor/backends/gpu/gpu_store_types.hpp @@ -15,8 +15,8 @@ namespace arb { namespace gpu { -using array = memory::device_vector; -using iarray = memory::device_vector; +using array = memory::device_vector; +using iarray = memory::device_vector; using deliverable_event_stream = arb::gpu::multi_event_stream; using sample_event_stream = arb::gpu::multi_event_stream; diff --git a/arbor/backends/gpu/matrix_assemble.cu b/arbor/backends/gpu/matrix_assemble.cu index 0f99eec533..7e2fa25037 100644 --- a/arbor/backends/gpu/matrix_assemble.cu +++ b/arbor/backends/gpu/matrix_assemble.cu @@ -154,25 +154,25 @@ void assemble_matrix_interleaved( } // namespace kernels -void assemble_matrix_flat( - fvm_value_type* d, - fvm_value_type* rhs, - const fvm_value_type* invariant_d, - const fvm_value_type* voltage, - const fvm_value_type* current, - const fvm_value_type* conductivity, - const fvm_value_type* cv_capacitance, - const fvm_value_type* area, - const fvm_index_type* cv_to_cell, - const fvm_value_type* dt_intdom, - const fvm_index_type* cell_to_intdom, +ARB_ARBOR_API void assemble_matrix_flat( + arb_value_type* d, + arb_value_type* rhs, + const arb_value_type* invariant_d, + const arb_value_type* voltage, + const arb_value_type* current, + const arb_value_type* conductivity, + const arb_value_type* cv_capacitance, + const arb_value_type* area, + const arb_index_type* cv_to_cell, + const arb_value_type* dt_intdom, + const arb_index_type* cell_to_intdom, unsigned n) { constexpr unsigned block_dim = 128; const unsigned grid_dim = impl::block_count(n, block_dim); kernels::assemble_matrix_flat - + <<>> (d, rhs, invariant_d, voltage, current, conductivity, cv_capacitance, area, cv_to_cell, dt_intdom, cell_to_intdom, n); @@ -180,19 +180,19 @@ void assemble_matrix_flat( //template void assemble_matrix_interleaved( - fvm_value_type* d, - fvm_value_type* rhs, - const fvm_value_type* invariant_d, - const fvm_value_type* voltage, - const fvm_value_type* current, - const fvm_value_type* conductivity, - const fvm_value_type* cv_capacitance, - const fvm_value_type* area, - const fvm_index_type* sizes, - const fvm_index_type* starts, - const fvm_index_type* matrix_to_cell, - const fvm_value_type* dt_intdom, - const fvm_index_type* cell_to_intdom, + arb_value_type* d, + arb_value_type* rhs, + const arb_value_type* invariant_d, + const arb_value_type* voltage, + const arb_value_type* current, + const arb_value_type* conductivity, + const arb_value_type* cv_capacitance, + const arb_value_type* area, + const arb_index_type* sizes, + const arb_index_type* starts, + const arb_index_type* matrix_to_cell, + const arb_value_type* dt_intdom, + const arb_index_type* cell_to_intdom, unsigned padded_size, unsigned num_mtx) { constexpr unsigned bd = impl::matrices_per_block(); @@ -203,7 +203,7 @@ void assemble_matrix_interleaved( const unsigned grid_dim = impl::block_count(num_mtx*lw, block_dim); kernels::assemble_matrix_interleaved - + <<>> (d, rhs, invariant_d, voltage, current, conductivity, cv_capacitance, area, sizes, starts, matrix_to_cell, diff --git a/arbor/backends/gpu/matrix_fine.cu b/arbor/backends/gpu/matrix_fine.cu index ca3592f15f..eed8944b25 100644 --- a/arbor/backends/gpu/matrix_fine.cu +++ b/arbor/backends/gpu/matrix_fine.cu @@ -7,41 +7,8 @@ namespace arb { namespace gpu { - namespace kernels { -// -// gather and scatter kernels -// - -// to[i] = from[p[i]] -template -__global__ -void gather(const T* __restrict__ const from, - T* __restrict__ const to, - const I* __restrict__ const p, - unsigned n) { - unsigned i = threadIdx.x + blockDim.x*blockIdx.x; - - if (i -__global__ -void scatter(const T* __restrict__ const from, - T* __restrict__ const to, - const I* __restrict__ const p, - unsigned n) { - unsigned i = threadIdx.x + blockDim.x*blockIdx.x; - - if (i>>(from, to, p, n); -} - -void scatter( - const fvm_value_type* from, - fvm_value_type* to, - const fvm_index_type* p, - unsigned n) -{ - constexpr unsigned blockdim = 128; - const unsigned griddim = impl::block_count(n, blockdim); - - kernels::scatter<<>>(from, to, p, n); -} - -void assemble_matrix_fine( - fvm_value_type* d, - fvm_value_type* rhs, - const fvm_value_type* invariant_d, - const fvm_value_type* voltage, - const fvm_value_type* current, - const fvm_value_type* conductivity, - const fvm_value_type* cv_capacitance, - const fvm_value_type* area, - const fvm_index_type* cv_to_intdom, - const fvm_value_type* dt_intdom, - const fvm_index_type* perm, +ARB_ARBOR_API void assemble_matrix_fine( + arb_value_type* d, + arb_value_type* rhs, + const arb_value_type* invariant_d, + const arb_value_type* voltage, + const arb_value_type* current, + const arb_value_type* conductivity, + const arb_value_type* cv_capacitance, + const arb_value_type* area, + const arb_index_type* cv_to_intdom, + const arb_value_type* dt_intdom, + const arb_index_type* perm, unsigned n) { const unsigned block_dim = 128; @@ -308,16 +251,16 @@ void assemble_matrix_fine( // num_levels = [3, 2, 3, ...] // num_cells = [2, 3, ...] // num_blocks = level_start.size() - 1 = num_levels.size() = num_cells.size() -void solve_matrix_fine( - fvm_value_type* rhs, - fvm_value_type* d, // diagonal values - const fvm_value_type* u, // upper diagonal (and lower diagonal as the matrix is SPD) +ARB_ARBOR_API void solve_matrix_fine( + arb_value_type* rhs, + arb_value_type* d, // diagonal values + const arb_value_type* u, // upper diagonal (and lower diagonal as the matrix is SPD) const level_metadata* level_meta, // information pertaining to each level - const fvm_index_type* level_lengths, // lengths of branches of every level concatenated - const fvm_index_type* level_parents, // parents of branches of every level concatenated - const fvm_index_type* block_index, // start index into levels for each gpu block - fvm_index_type* num_cells, // the number of cells packed into this single matrix - fvm_index_type* padded_size, // length of rhs, d, u, including padding + const arb_index_type* level_lengths, // lengths of branches of every level concatenated + const arb_index_type* level_parents, // parents of branches of every level concatenated + const arb_index_type* block_index, // start index into levels for each gpu block + arb_index_type* num_cells, // the number of cells packed into this single matrix + arb_index_type* padded_size, // length of rhs, d, u, including padding unsigned num_blocks, // number of blocks unsigned blocksize) // size of each block { diff --git a/arbor/backends/gpu/matrix_fine.hpp b/arbor/backends/gpu/matrix_fine.hpp index 74b3490663..6d657c4c58 100644 --- a/arbor/backends/gpu/matrix_fine.hpp +++ b/arbor/backends/gpu/matrix_fine.hpp @@ -1,54 +1,36 @@ #include +#include + +#include "fine.hpp" #include namespace arb { namespace gpu { - -struct level_metadata { - unsigned num_branches = 0; // Number of branches in a level - unsigned max_length = 0; // Length of the longest branch - unsigned matrix_data_index = 0; // Index into data values (d, u, rhs) of the first branch - unsigned level_data_index = 0; // Index into data values (lengths, parents) of each level -}; - -// C wrappers around kernels -void gather( - const fvm_value_type* from, - fvm_value_type* to, - const fvm_index_type* p, - unsigned n); - -void scatter( - const fvm_value_type* from, - fvm_value_type* to, - const fvm_index_type* p, - unsigned n); - -void assemble_matrix_fine( - fvm_value_type* d, - fvm_value_type* rhs, - const fvm_value_type* invariant_d, - const fvm_value_type* voltage, - const fvm_value_type* current, - const fvm_value_type* conductivity, - const fvm_value_type* cv_capacitance, - const fvm_value_type* area, - const fvm_index_type* cv_to_intdom, - const fvm_value_type* dt_intdom, - const fvm_index_type* perm, +ARB_ARBOR_API void assemble_matrix_fine( + arb_value_type* d, + arb_value_type* rhs, + const arb_value_type* invariant_d, + const arb_value_type* voltage, + const arb_value_type* current, + const arb_value_type* conductivity, + const arb_value_type* cv_capacitance, + const arb_value_type* area, + const arb_index_type* cv_to_intdom, + const arb_value_type* dt_intdom, + const arb_index_type* perm, unsigned n); -void solve_matrix_fine( - fvm_value_type* rhs, - fvm_value_type* d, // diagonal values - const fvm_value_type* u, // upper diagonal (and lower diagonal as the matrix is SPD) +ARB_ARBOR_API void solve_matrix_fine( + arb_value_type* rhs, + arb_value_type* d, // diagonal values + const arb_value_type* u, // upper diagonal (and lower diagonal as the matrix is SPD) const level_metadata* level_meta, // information pertaining to each level - const fvm_index_type* level_lengths, // lengths of branches of every level concatenated - const fvm_index_type* level_parents, // parents of branches of every level concatenated - const fvm_index_type* block_index, // start index (exclusive) into levels for each gpu block - fvm_index_type* num_cells, // the number of cells packed into this single matrix - fvm_index_type* padded_size, // length of rhs, d, u, including padding + const arb_index_type* level_lengths, // lengths of branches of every level concatenated + const arb_index_type* level_parents, // parents of branches of every level concatenated + const arb_index_type* block_index, // start index (exclusive) into levels for each gpu block + arb_index_type* num_cells, // the number of cells packed into this single matrix + arb_index_type* padded_size, // length of rhs, d, u, including padding unsigned num_blocks, // number of blocks unsigned blocksize); // size of each block diff --git a/arbor/backends/gpu/matrix_solve.cu b/arbor/backends/gpu/matrix_solve.cu index 576f88e96f..674bf2ab1e 100644 --- a/arbor/backends/gpu/matrix_solve.cu +++ b/arbor/backends/gpu/matrix_solve.cu @@ -86,34 +86,34 @@ void solve_matrix_interleaved( } // namespace kernels -void solve_matrix_flat( - fvm_value_type* rhs, - fvm_value_type* d, - const fvm_value_type* u, - const fvm_index_type* p, - const fvm_index_type* cell_cv_divs, +ARB_ARBOR_API void solve_matrix_flat( + arb_value_type* rhs, + arb_value_type* d, + const arb_value_type* u, + const arb_index_type* p, + const arb_index_type* cell_cv_divs, int num_mtx) { constexpr unsigned block_dim = 128; const unsigned grid_dim = impl::block_count(num_mtx, block_dim); kernels::solve_matrix_flat - + <<>> (rhs, d, u, p, cell_cv_divs, num_mtx); } void solve_matrix_interleaved( - fvm_value_type* rhs, - fvm_value_type* d, - const fvm_value_type* u, - const fvm_index_type* p, - const fvm_index_type* sizes, + arb_value_type* rhs, + arb_value_type* d, + const arb_value_type* u, + const arb_index_type* p, + const arb_index_type* sizes, int padded_size, int num_mtx) { constexpr unsigned block_dim = impl::matrices_per_block(); const unsigned grid_dim = impl::block_count(num_mtx, block_dim); - kernels::solve_matrix_interleaved + kernels::solve_matrix_interleaved <<>> (rhs, d, u, p, sizes, padded_size, num_mtx); } diff --git a/arbor/backends/gpu/matrix_state_fine.hpp b/arbor/backends/gpu/matrix_state_fine.hpp index d460597cfb..5959513dbe 100644 --- a/arbor/backends/gpu/matrix_state_fine.hpp +++ b/arbor/backends/gpu/matrix_state_fine.hpp @@ -12,65 +12,13 @@ #include "util/rangeutil.hpp" #include "util/span.hpp" #include "tree.hpp" - +#include "fine.hpp" #include "matrix_fine.hpp" #include "forest.hpp" namespace arb { namespace gpu { -// Helper type for branch meta data in setup phase of fine grained -// matrix storage+solver. -// -// leaf -// . -// . -// . -// - * -// | -// l * -// e | -// n * -// g | -// t * -// h | -// - start_idx -// | -// parent_idx -// | -// . -// . -// . -// root -struct branch { - unsigned id; // branch id - unsigned parent_id; // parent branch id - unsigned parent_idx; // - unsigned start_idx; // the index of the first node in the input parent index - unsigned length; // the number of nodes in the branch -}; - -// order branches by: -// - descending length -// - ascending id -inline -bool operator<(const branch& lhs, const branch& rhs) { - if (lhs.length!=rhs.length) { - return lhs.length>rhs.length; - } else { - return lhs.id struct matrix_state_fine { public: @@ -503,11 +451,9 @@ struct matrix_state_fine { packed_to_flat(rhs, to); } -private: - std::size_t size() const { - return matrix_size; - } + std::size_t size() const { return matrix_size; } +private: void flat_to_packed(const array& from, array& to ) { arb_assert(from.size()==matrix_size); arb_assert(to.size()==data_size); diff --git a/arbor/backends/gpu/matrix_state_flat.hpp b/arbor/backends/gpu/matrix_state_flat.hpp index c5a6d98c69..31b5cc1775 100644 --- a/arbor/backends/gpu/matrix_state_flat.hpp +++ b/arbor/backends/gpu/matrix_state_flat.hpp @@ -1,5 +1,6 @@ #pragma once +#include #include #include "memory/memory.hpp" @@ -13,26 +14,26 @@ namespace gpu { // CUDA implementation entry points: -void solve_matrix_flat( - fvm_value_type* rhs, - fvm_value_type* d, - const fvm_value_type* u, - const fvm_index_type* p, - const fvm_index_type* cell_cv_divs, +ARB_ARBOR_API void solve_matrix_flat( + arb_value_type* rhs, + arb_value_type* d, + const arb_value_type* u, + const arb_index_type* p, + const arb_index_type* cell_cv_divs, int num_mtx); -void assemble_matrix_flat( - fvm_value_type* d, - fvm_value_type* rhs, - const fvm_value_type* invariant_d, - const fvm_value_type* voltage, - const fvm_value_type* current, - const fvm_value_type* conductivity, - const fvm_value_type* cv_capacitance, - const fvm_value_type* cv_area, - const fvm_index_type* cv_to_cell, - const fvm_value_type* dt_intdom, - const fvm_index_type* cell_to_intdom, +ARB_ARBOR_API void assemble_matrix_flat( + arb_value_type* d, + arb_value_type* rhs, + const arb_value_type* invariant_d, + const arb_value_type* voltage, + const arb_value_type* current, + const arb_value_type* conductivity, + const arb_value_type* cv_capacitance, + const arb_value_type* cv_area, + const arb_index_type* cv_to_cell, + const arb_value_type* dt_intdom, + const arb_index_type* cell_to_intdom, unsigned n); /// matrix state diff --git a/arbor/backends/gpu/multi_event_stream.cpp b/arbor/backends/gpu/multi_event_stream.cpp index c96c47d59e..11397df346 100644 --- a/arbor/backends/gpu/multi_event_stream.cpp +++ b/arbor/backends/gpu/multi_event_stream.cpp @@ -9,25 +9,25 @@ namespace gpu { // These wrappers are implemented in the multi_event_stream.cu file, which // is spearately compiled by nvcc, to protect nvcc from having to parse C++17. void mark_until_after_w(unsigned n, - fvm_index_type* mark, - fvm_index_type* span_end, - fvm_value_type* ev_time, - const fvm_value_type* t_until); + arb_index_type* mark, + arb_index_type* span_end, + arb_value_type* ev_time, + const arb_value_type* t_until); void mark_until_w(unsigned n, - fvm_index_type* mark, - fvm_index_type* span_end, - fvm_value_type* ev_time, - const fvm_value_type* t_until); + arb_index_type* mark, + arb_index_type* span_end, + arb_value_type* ev_time, + const arb_value_type* t_until); void drop_marked_events_w(unsigned n, - fvm_index_type* n_nonempty_stream, - fvm_index_type* span_begin, - fvm_index_type* span_end, - fvm_index_type* mark); + arb_index_type* n_nonempty_stream, + arb_index_type* span_begin, + arb_index_type* span_end, + arb_index_type* mark); void event_time_if_before_w(unsigned n, - fvm_index_type* span_begin, - fvm_index_type* span_end, - fvm_value_type* ev_time, - fvm_value_type* t_until); + arb_index_type* span_begin, + arb_index_type* span_end, + arb_value_type* ev_time, + arb_value_type* t_until); void multi_event_stream_base::clear() { memory::fill(span_begin_, 0u); diff --git a/arbor/backends/gpu/multi_event_stream.cu b/arbor/backends/gpu/multi_event_stream.cu index 11a8136f88..1bf01e721b 100644 --- a/arbor/backends/gpu/multi_event_stream.cu +++ b/arbor/backends/gpu/multi_event_stream.cu @@ -86,10 +86,10 @@ namespace kernels { } // namespace kernels void mark_until_after_w(unsigned n, - fvm_index_type* mark, - fvm_index_type* span_end, - fvm_value_type* ev_time, - const fvm_value_type* t_until) + arb_index_type* mark, + arb_index_type* span_end, + arb_value_type* ev_time, + const arb_value_type* t_until) { const int nblock = impl::block_count(n, 128); kernels::mark_until_after @@ -98,10 +98,10 @@ void mark_until_after_w(unsigned n, } void mark_until_w(unsigned n, - fvm_index_type* mark, - fvm_index_type* span_end, - fvm_value_type* ev_time, - const fvm_value_type* t_until) + arb_index_type* mark, + arb_index_type* span_end, + arb_value_type* ev_time, + const arb_value_type* t_until) { const int nblock = impl::block_count(n, 128); kernels::mark_until @@ -110,10 +110,10 @@ void mark_until_w(unsigned n, } void drop_marked_events_w(unsigned n, - fvm_index_type* n_nonempty_stream, - fvm_index_type* span_begin, - fvm_index_type* span_end, - fvm_index_type* mark) + arb_index_type* n_nonempty_stream, + arb_index_type* span_begin, + arb_index_type* span_end, + arb_index_type* mark) { const int nblock = impl::block_count(n, 128); kernels::drop_marked_events @@ -123,10 +123,10 @@ void drop_marked_events_w(unsigned n, } void event_time_if_before_w(unsigned n, - fvm_index_type* span_begin, - fvm_index_type* span_end, - fvm_value_type* ev_time, - fvm_value_type* t_until) + arb_index_type* span_begin, + arb_index_type* span_end, + arb_value_type* ev_time, + arb_value_type* t_until) { const int nblock = impl::block_count(n, 128); kernels::event_time_if_before diff --git a/arbor/backends/gpu/multi_event_stream.hpp b/arbor/backends/gpu/multi_event_stream.hpp index 929c325d09..8171c895fb 100644 --- a/arbor/backends/gpu/multi_event_stream.hpp +++ b/arbor/backends/gpu/multi_event_stream.hpp @@ -2,6 +2,7 @@ // Indexed collection of pop-only event queues --- CUDA back-end implementation. +#include #include #include #include @@ -18,11 +19,11 @@ namespace arb { namespace gpu { // Base class provides common implementations across event types. -class multi_event_stream_base { +class ARB_ARBOR_API multi_event_stream_base { public: using size_type = cell_size_type; - using value_type = fvm_value_type; - using index_type = fvm_index_type; + using value_type = arb_value_type; + using index_type = arb_index_type; using array = memory::device_vector; using iarray = memory::device_vector; diff --git a/arbor/backends/gpu/shared_state.cpp b/arbor/backends/gpu/shared_state.cpp index 44acd5e474..a7d918ba77 100644 --- a/arbor/backends/gpu/shared_state.cpp +++ b/arbor/backends/gpu/shared_state.cpp @@ -27,26 +27,26 @@ namespace gpu { // CUDA implementation entry points: void update_time_to_impl( - std::size_t n, fvm_value_type* time_to, const fvm_value_type* time, - fvm_value_type dt, fvm_value_type tmax); + std::size_t n, arb_value_type* time_to, const arb_value_type* time, + arb_value_type dt, arb_value_type tmax); void update_time_to_impl( - std::size_t n, fvm_value_type* time_to, const fvm_value_type* time, - fvm_value_type dt, fvm_value_type tmax); + std::size_t n, arb_value_type* time_to, const arb_value_type* time, + arb_value_type dt, arb_value_type tmax); void set_dt_impl( - fvm_size_type nintdom, fvm_size_type ncomp, fvm_value_type* dt_intdom, fvm_value_type* dt_comp, - const fvm_value_type* time_to, const fvm_value_type* time, const fvm_index_type* cv_to_intdom); + arb_size_type nintdom, arb_size_type ncomp, arb_value_type* dt_intdom, arb_value_type* dt_comp, + const arb_value_type* time_to, const arb_value_type* time, const arb_index_type* cv_to_intdom); void take_samples_impl( const multi_event_stream_state& s, - const fvm_value_type* time, fvm_value_type* sample_time, fvm_value_type* sample_value); + const arb_value_type* time, arb_value_type* sample_time, arb_value_type* sample_value); -void add_scalar(std::size_t n, fvm_value_type* data, fvm_value_type v); +void add_scalar(std::size_t n, arb_value_type* data, arb_value_type v); // GPU-side minmax: consider CUDA kernel replacement. -std::pair minmax_value_impl(fvm_size_type n, const fvm_value_type* v) { - auto v_copy = memory::on_host(memory::const_device_view(v, n)); +std::pair minmax_value_impl(arb_size_type n, const arb_value_type* v) { + auto v_copy = memory::on_host(memory::const_device_view(v, n)); return util::minmax_value(v_copy); } @@ -55,39 +55,47 @@ std::pair minmax_value_impl(fvm_size_type n, con ion_state::ion_state( int charge, const fvm_ion_config& ion_data, - unsigned // alignment/padding ignored. -): + unsigned, // alignment/padding ignored. + solver_ptr ptr): + write_eX_(ion_data.revpot_written), + write_Xo_(ion_data.econc_written), + write_Xi_(ion_data.iconc_written), node_index_(make_const_view(ion_data.cv)), iX_(ion_data.cv.size(), NAN), - eX_(ion_data.cv.size(), NAN), - Xi_(ion_data.cv.size(), NAN), - Xo_(ion_data.cv.size(), NAN), + eX_(ion_data.init_revpot.begin(), ion_data.init_revpot.end()), + Xi_(ion_data.init_iconc.begin(), ion_data.init_iconc.end()), + Xd_(ion_data.cv.size(), NAN), + Xo_(ion_data.init_econc.begin(), ion_data.init_econc.end()), + gX_(ion_data.cv.size(), NAN), init_Xi_(make_const_view(ion_data.init_iconc)), init_Xo_(make_const_view(ion_data.init_econc)), reset_Xi_(make_const_view(ion_data.reset_iconc)), reset_Xo_(make_const_view(ion_data.reset_econc)), init_eX_(make_const_view(ion_data.init_revpot)), - charge(1u, charge) -{ + charge(1u, charge), + solver(std::move(ptr)) { arb_assert(node_index_.size()==init_Xi_.size()); arb_assert(node_index_.size()==init_Xo_.size()); arb_assert(node_index_.size()==init_eX_.size()); } void ion_state::init_concentration() { - memory::copy(init_Xi_, Xi_); - memory::copy(init_Xo_, Xo_); + // NB. not resetting Xd here, it's controlled via the solver. + if (write_Xi_) memory::copy(init_Xi_, Xi_); + if (write_Xo_) memory::copy(init_Xo_, Xo_); } void ion_state::zero_current() { + memory::fill(gX_, 0); memory::fill(iX_, 0); } void ion_state::reset() { zero_current(); - memory::copy(reset_Xi_, Xi_); - memory::copy(reset_Xo_, Xo_); - memory::copy(init_eX_, eX_); + memory::copy(reset_Xi_, Xd_); + if (write_Xi_) memory::copy(reset_Xi_, Xi_); + if (write_Xo_) memory::copy(reset_Xo_, Xo_); + if (write_eX_) memory::copy(init_eX_, eX_); } // istim_state methods: @@ -96,12 +104,12 @@ istim_state::istim_state(const fvm_stimulus_config& stim) { using util::assign; // Translate instance-to-CV index from stim to istim_state index vectors. - std::vector accu_index_stage; + std::vector accu_index_stage; assign(accu_index_stage, util::index_into(stim.cv, stim.cv_unique)); std::size_t n = accu_index_stage.size(); - std::vector envl_a, envl_t; - std::vector edivs; + std::vector envl_a, envl_t; + std::vector edivs; frequency_ = make_const_view(stim.frequency); phase_ = make_const_view(stim.phase); @@ -119,7 +127,7 @@ istim_state::istim_state(const fvm_stimulus_config& stim) { util::append(envl_a, stim.envelope_amplitude[i]); util::append(envl_t, stim.envelope_time[i]); - edivs.push_back(fvm_index_type(envl_t.size())); + edivs.push_back(arb_index_type(envl_t.size())); } accu_index_ = make_const_view(accu_index_stage); @@ -171,15 +179,15 @@ void istim_state::add_current(const array& time, const iarray& cv_to_intdom, arr // Shared state methods: shared_state::shared_state( - fvm_size_type n_intdom, - fvm_size_type n_cell, - fvm_size_type n_detector, - const std::vector& cv_to_intdom_vec, - const std::vector& cv_to_cell_vec, - const std::vector& init_membrane_potential, - const std::vector& temperature_K, - const std::vector& diam, - const std::vector& src_to_spike, + arb_size_type n_intdom, + arb_size_type n_cell, + arb_size_type n_detector, + const std::vector& cv_to_intdom_vec, + const std::vector& cv_to_cell_vec, + const std::vector& init_membrane_potential, + const std::vector& temperature_K, + const std::vector& diam, + const std::vector& src_to_spike, unsigned // alignment parameter ignored. ): n_intdom(n_intdom), @@ -276,9 +284,6 @@ void shared_state::instantiate(mechanism& m, unsigned id, const mechanism_overri bool mult_in_place = !pos_data.multiplicity.empty(); bool peer_indices = !pos_data.peer_cv.empty(); - // Set internal variables - m.time_ptr_ptr = &time_ptr; - auto width = pos_data.cv.size(); auto width_padded = math::round_up(pos_data.cv.size(), alignment); @@ -312,7 +317,15 @@ void shared_state::instantiate(mechanism& m, unsigned id, const mechanism_overri auto ion_binding = value_by_key(overrides.ion_rebind, ion).value_or(ion); ion_state* oion = ptr_by_key(ion_data, ion_binding); if (!oion) throw arbor_internal_error("gpu/mechanism: mechanism holds ion with no corresponding shared state"); - store.ion_states_[idx] = { oion->iX_.data(), oion->eX_.data(), oion->Xi_.data(), oion->Xo_.data(), oion->charge.data(), nullptr }; + auto& ion_state = store.ion_states_[idx]; + ion_state = {0}; + ion_state.current_density = oion->iX_.data(); + ion_state.reversal_potential = oion->eX_.data(); + ion_state.internal_concentration = oion->Xi_.data(); + ion_state.external_concentration = oion->Xo_.data(); + ion_state.diffusive_concentration = oion->Xd_.data(); + ion_state.ionic_charge = oion->charge.data(); + ion_state.conductivity = oion->gX_.data(); } // If there are no sites (is this ever meaningful?) there is nothing more to do. @@ -391,14 +404,33 @@ void shared_state::instantiate(mechanism& m, unsigned id, const mechanism_overri m.ppack_.ion_states = store.ion_states_d_.data(); } +void shared_state::integrate_voltage() { + solver.assemble(dt_intdom, voltage, current_density, conductivity); + solver.solve(voltage); +} + +void shared_state::integrate_diffusion() { + for (auto& [ion, data]: ion_data) { + if (data.solver) { + data.solver->assemble(dt_intdom, + data.Xd_, + voltage, + data.iX_, + data.gX_, + data.charge[0]); + data.solver->solve(data.Xd_); + } + } +} + void shared_state::add_ion( const std::string& ion_name, int charge, - const fvm_ion_config& ion_info) -{ + const fvm_ion_config& ion_info, + ion_state::solver_ptr ptr) { ion_data.emplace(std::piecewise_construct, std::forward_as_tuple(ion_name), - std::forward_as_tuple(charge, ion_info, 1u)); + std::forward_as_tuple(charge, ion_info, 1u, std::move(ptr))); } void shared_state::configure_stimulus(const fvm_stimulus_config& stims) { @@ -434,7 +466,7 @@ void shared_state::ions_init_concentration() { } } -void shared_state::update_time_to(fvm_value_type dt_step, fvm_value_type tmax) { +void shared_state::update_time_to(arb_value_type dt_step, arb_value_type tmax) { update_time_to_impl(n_intdom, time_to.data(), time.data(), dt_step, tmax); } @@ -446,11 +478,11 @@ void shared_state::add_stimulus_current() { stim_data.add_current(time, cv_to_intdom, current_density); } -std::pair shared_state::time_bounds() const { +std::pair shared_state::time_bounds() const { return minmax_value_impl(n_intdom, time.data()); } -std::pair shared_state::voltage_bounds() const { +std::pair shared_state::voltage_bounds() const { return minmax_value_impl(n_cv, voltage.data()); } @@ -459,7 +491,7 @@ void shared_state::take_samples(const sample_event_stream::state& s, array& samp } // Debug interface -std::ostream& operator<<(std::ostream& o, shared_state& s) { +ARB_ARBOR_API std::ostream& operator<<(std::ostream& o, shared_state& s) { o << " cv_to_intdom " << s.cv_to_intdom << "\n"; o << " time " << s.time << "\n"; o << " time_to " << s.time_to << "\n"; diff --git a/arbor/backends/gpu/shared_state.cu b/arbor/backends/gpu/shared_state.cu index 5f6aba7070..5ac9121815 100644 --- a/arbor/backends/gpu/shared_state.cu +++ b/arbor/backends/gpu/shared_state.cu @@ -30,7 +30,7 @@ __global__ void update_time_to_impl(unsigned n, template __global__ void add_scalar(unsigned n, T* __restrict__ const x, - fvm_value_type v) { + arb_value_type v) { unsigned i = threadIdx.x+blockIdx.x*blockDim.x; if (i s, - const fvm_value_type* __restrict__ const time, - fvm_value_type* __restrict__ const sample_time, - fvm_value_type* __restrict__ const sample_value) + const arb_value_type* __restrict__ const time, + arb_value_type* __restrict__ const sample_time, + arb_value_type* __restrict__ const sample_value) { unsigned i = threadIdx.x+blockIdx.x*blockDim.x; if (i& s, - const fvm_value_type* time, fvm_value_type* sample_time, fvm_value_type* sample_value) + const arb_value_type* time, arb_value_type* sample_time, arb_value_type* sample_value) { if (!s.n_streams()) return; diff --git a/arbor/backends/gpu/shared_state.hpp b/arbor/backends/gpu/shared_state.hpp index eb3301abcd..6252d034bc 100644 --- a/arbor/backends/gpu/shared_state.hpp +++ b/arbor/backends/gpu/shared_state.hpp @@ -12,6 +12,8 @@ #include "backends/gpu/gpu_store_types.hpp" #include "backends/gpu/stimulus.hpp" +#include "backends/gpu/diffusion_state.hpp" +#include "backends/gpu/matrix_state_fine.hpp" namespace arb { namespace gpu { @@ -27,13 +29,21 @@ namespace gpu { * Xi_ cai internal calcium concentration * Xo_ cao external calcium concentration */ +struct ARB_ARBOR_API ion_state { + using solver_type = arb::gpu::diffusion_state; + using solver_ptr = std::unique_ptr; + + bool write_eX_; // is eX written? + bool write_Xo_; // is Xo written? + bool write_Xi_; // is Xi written? -struct ion_state { iarray node_index_; // Instance to CV map. array iX_; // (A/m²) current density array eX_; // (mV) reversal potential array Xi_; // (mM) internal concentration + array Xd_; // (mM) diffusive concentration array Xo_; // (mM) external concentration + array gX_; // (kS/m²) per-species conductivity array init_Xi_; // (mM) area-weighted initial internal concentration array init_Xo_; // (mM) area-weighted initial external concentration @@ -43,13 +53,15 @@ struct ion_state { array charge; // charge of ionic species (global, length 1) + solver_ptr solver = nullptr; + ion_state() = default; ion_state( int charge, const fvm_ion_config& ion_data, - unsigned align - ); + unsigned align, + solver_ptr ptr); // Set ion concentrations to weighted proportion of default concentrations. void init_concentration(); @@ -62,7 +74,7 @@ struct ion_state { void reset(); }; -struct istim_state { +struct ARB_ARBOR_API istim_state { // Immutable data (post construction/initialization): iarray accu_index_; // Instance to accumulator index (accu_stim_ index) map. iarray accu_to_cv_; // Accumulator index to CV map. @@ -99,7 +111,8 @@ struct istim_state { istim_state() = default; }; -struct shared_state { +struct ARB_ARBOR_API shared_state { + struct mech_storage { array data_; iarray indices_; @@ -112,11 +125,14 @@ struct shared_state { memory::device_vector ion_states_d_; }; + using cable_solver = arb::gpu::matrix_state_fine; + cable_solver solver; + static constexpr std::size_t alignment = std::max(array::alignment(), iarray::alignment()); - fvm_size_type n_intdom = 0; // Number of distinct integration domains. - fvm_size_type n_detector = 0; // Max number of detectors on all cells. - fvm_size_type n_cv = 0; // Total number of CVs. + arb_size_type n_intdom = 0; // Number of distinct integration domains. + arb_size_type n_detector = 0; // Max number of detectors on all cells. + arb_size_type n_cv = 0; // Total number of CVs. iarray cv_to_intdom; // Maps CV index to intdom index. iarray cv_to_cell; // Maps CV index to cell index. @@ -135,8 +151,6 @@ struct shared_state { array time_since_spike; // Stores time since last spike on any detector, organized by cell. iarray src_to_spike; // Maps spike source index to spike index - arb_value_type* time_ptr; - istim_state stim_data; std::unordered_map ion_data; deliverable_event_stream deliverable_events; @@ -145,15 +159,15 @@ struct shared_state { shared_state() = default; shared_state( - fvm_size_type n_intdom, - fvm_size_type n_cell, - fvm_size_type n_detector, - const std::vector& cv_to_intdom_vec, - const std::vector& cv_to_cell_vec, - const std::vector& init_membrane_potential, - const std::vector& temperature_K, - const std::vector& diam, - const std::vector& src_to_spike, + arb_size_type n_intdom, + arb_size_type n_cell, + arb_size_type n_detector, + const std::vector& cv_to_intdom_vec, + const std::vector& cv_to_cell_vec, + const std::vector& init_membrane_potential, + const std::vector& temperature_K, + const std::vector& diam, + const std::vector& src_to_spike, unsigned // align parameter ignored ); @@ -168,7 +182,8 @@ struct shared_state { void add_ion( const std::string& ion_name, int charge, - const fvm_ion_config& ion_data); + const fvm_ion_config& ion_data, + ion_state::solver_ptr solver=nullptr); void configure_stimulus(const fvm_stimulus_config&); @@ -177,7 +192,7 @@ struct shared_state { void ions_init_concentration(); // Set time_to to earliest of time+dt_step and tmax. - void update_time_to(fvm_value_type dt_step, fvm_value_type tmax); + void update_time_to(arb_value_type dt_step, arb_value_type tmax); // Set the per-intdom and per-compartment dt from time_to - time. void set_dt(); @@ -185,12 +200,16 @@ struct shared_state { // Update stimulus state and add current contributions. void add_stimulus_current(); + // Integrate by matrix solve. + void integrate_voltage(); + void integrate_diffusion(); + // Return minimum and maximum time value [ms] across cells. - std::pair time_bounds() const; + std::pair time_bounds() const; // Return minimum and maximum voltage value [mV] across cells. // (Used for solution bounds checking.) - std::pair voltage_bounds() const; + std::pair voltage_bounds() const; // Take samples according to marked events in a sample_event_stream. void take_samples( @@ -202,7 +221,7 @@ struct shared_state { }; // For debugging only -std::ostream& operator<<(std::ostream& o, shared_state& s); +ARB_ARBOR_API std::ostream& operator<<(std::ostream& o, shared_state& s); } // namespace gpu } // namespace arb diff --git a/arbor/backends/gpu/stimulus.cu b/arbor/backends/gpu/stimulus.cu index ea72629589..2a9b946762 100644 --- a/arbor/backends/gpu/stimulus.cu +++ b/arbor/backends/gpu/stimulus.cu @@ -22,16 +22,16 @@ void istim_add_current_impl(int n, istim_pp pp) { auto i = threadIdx.x + blockDim.x*blockIdx.x; if (i>=n) return; - fvm_index_type ei_left = pp.envl_divs[i]; - fvm_index_type ei_right = pp.envl_divs[i+1]; + arb_index_type ei_left = pp.envl_divs[i]; + arb_index_type ei_right = pp.envl_divs[i+1]; - fvm_index_type ai = pp.accu_index[i]; - fvm_index_type cv = pp.accu_to_cv[ai]; + arb_index_type ai = pp.accu_index[i]; + arb_index_type cv = pp.accu_to_cv[ai]; double t = pp.time[pp.cv_to_intdom[cv]]; if (ei_left==ei_right || t #include namespace arb { @@ -9,23 +10,23 @@ namespace gpu { struct istim_pp { // Stimulus constant and mutable data: - const fvm_index_type* accu_index; - const fvm_index_type* accu_to_cv; - const fvm_value_type* frequency; - const fvm_value_type* phase; - const fvm_value_type* envl_amplitudes; - const fvm_value_type* envl_times; - const fvm_index_type* envl_divs; - fvm_value_type* accu_stim; - fvm_index_type* envl_index; + const arb_index_type* accu_index; + const arb_index_type* accu_to_cv; + const arb_value_type* frequency; + const arb_value_type* phase; + const arb_value_type* envl_amplitudes; + const arb_value_type* envl_times; + const arb_index_type* envl_divs; + arb_value_type* accu_stim; + arb_index_type* envl_index; // Pointers to shared state data: - const fvm_value_type* time; - const fvm_index_type* cv_to_intdom; - fvm_value_type* current_density; + const arb_value_type* time; + const arb_index_type* cv_to_intdom; + arb_value_type* current_density; }; -void istim_add_current_impl(int n, const istim_pp& pp); +ARB_ARBOR_API void istim_add_current_impl(int n, const istim_pp& pp); } // namespace gpu } // namespace arb diff --git a/arbor/backends/gpu/threshold_watcher.cu b/arbor/backends/gpu/threshold_watcher.cu index 6748a482eb..032b8a98ae 100644 --- a/arbor/backends/gpu/threshold_watcher.cu +++ b/arbor/backends/gpu/threshold_watcher.cu @@ -24,17 +24,17 @@ namespace kernel { __global__ void test_thresholds_impl( int size, - const fvm_index_type* __restrict__ const cv_to_intdom, - const fvm_value_type* __restrict__ const t_after, - const fvm_value_type* __restrict__ const t_before, - const fvm_index_type* __restrict__ const src_to_spike, - fvm_value_type* __restrict__ const time_since_spike, + const arb_index_type* __restrict__ const cv_to_intdom, + const arb_value_type* __restrict__ const t_after, + const arb_value_type* __restrict__ const t_before, + const arb_index_type* __restrict__ const src_to_spike, + arb_value_type* __restrict__ const time_since_spike, stack_storage& stack, - fvm_index_type* __restrict__ const is_crossed, - fvm_value_type* __restrict__ const prev_values, - const fvm_index_type* __restrict__ const cv_index, - const fvm_value_type* __restrict__ const values, - const fvm_value_type* __restrict__ const thresholds, + arb_index_type* __restrict__ const is_crossed, + arb_value_type* __restrict__ const prev_values, + const arb_index_type* __restrict__ const cv_index, + const arb_value_type* __restrict__ const values, + const arb_value_type* __restrict__ const thresholds, bool record_time_since_spike) { int i = threadIdx.x + blockIdx.x*blockDim.x; @@ -46,10 +46,10 @@ void test_thresholds_impl( // Test for threshold crossing const auto cv = cv_index[i]; const auto intdom = cv_to_intdom[cv]; - const auto v_prev = prev_values[i]; + const auto v_prev = prev_values[cv]; const auto v = values[cv]; const auto thresh = thresholds[i]; - fvm_index_type spike_idx = 0; + arb_index_type spike_idx = 0; // Reset all spike times to -1.0 indicating no spike has been recorded on the detector if (record_time_since_spike) { @@ -75,21 +75,21 @@ void test_thresholds_impl( is_crossed[i]=0; } - prev_values[i] = v; + prev_values[cv] = v; } if (crossed) { - push_back(stack, {fvm_size_type(i), crossing_time}); + push_back(stack, {arb_size_type(i), crossing_time}); } } __global__ extern void reset_crossed_impl( int size, - fvm_index_type* __restrict__ const is_crossed, - const fvm_index_type* __restrict__ const cv_index, - const fvm_value_type* __restrict__ const values, - const fvm_value_type* __restrict__ const thresholds) + arb_index_type* __restrict__ const is_crossed, + const arb_index_type* __restrict__ const cv_index, + const arb_value_type* __restrict__ const values, + const arb_value_type* __restrict__ const thresholds) { int i = threadIdx.x + blockIdx.x*blockDim.x; if (i& stack, - fvm_index_type* is_crossed, fvm_value_type* prev_values, - const fvm_index_type* cv_index, const fvm_value_type* values, const fvm_value_type* thresholds, + const arb_index_type* cv_to_intdom, const arb_value_type* t_after, const arb_value_type* t_before, + const arb_index_type* src_to_spike, arb_value_type* time_since_spike, stack_storage& stack, + arb_index_type* is_crossed, arb_value_type* prev_values, + const arb_index_type* cv_index, const arb_value_type* values, const arb_value_type* thresholds, bool record_time_since_spike) { if (size>0) { @@ -117,8 +117,8 @@ void test_thresholds_impl( } void reset_crossed_impl( - int size, fvm_index_type* is_crossed, - const fvm_index_type* cv_index, const fvm_value_type* values, const fvm_value_type* thresholds) + int size, arb_index_type* is_crossed, + const arb_index_type* cv_index, const arb_value_type* values, const arb_value_type* thresholds) { if (size>0) { constexpr int block_dim = 128; diff --git a/arbor/backends/gpu/threshold_watcher.hpp b/arbor/backends/gpu/threshold_watcher.hpp index 6d371faa64..199565b284 100644 --- a/arbor/backends/gpu/threshold_watcher.hpp +++ b/arbor/backends/gpu/threshold_watcher.hpp @@ -1,6 +1,7 @@ #pragma once #include +#include #include #include @@ -21,16 +22,16 @@ namespace gpu { void test_thresholds_impl( int size, - const fvm_index_type* cv_to_intdom, const fvm_value_type* t_after, const fvm_value_type* t_before, - const fvm_index_type* src_to_spike, fvm_value_type* time_since_spike, stack_storage& stack, - fvm_index_type* is_crossed, fvm_value_type* prev_values, - const fvm_index_type* cv_index, const fvm_value_type* values, const fvm_value_type* thresholds, + const arb_index_type* cv_to_intdom, const arb_value_type* t_after, const arb_value_type* t_before, + const arb_index_type* src_to_spike, arb_value_type* time_since_spike, stack_storage& stack, + arb_index_type* is_crossed, arb_value_type* prev_values, + const arb_index_type* cv_index, const arb_value_type* values, const arb_value_type* thresholds, bool record); void reset_crossed_impl( int size, - fvm_index_type* is_crossed, - const fvm_index_type* cv_index, const fvm_value_type* values, const fvm_value_type* thresholds); + arb_index_type* is_crossed, + const arb_index_type* cv_index, const arb_value_type* values, const arb_value_type* thresholds); class threshold_watcher { @@ -44,30 +45,29 @@ class threshold_watcher { threshold_watcher(const execution_context& ctx): stack_(ctx.gpu) {} threshold_watcher( - const fvm_index_type* cv_to_intdom, - const fvm_value_type* values, - const fvm_index_type* src_to_spike, + const arb_index_type* cv_to_intdom, + const arb_index_type* src_to_spike, const array* t_before, const array* t_after, - const std::vector& cv_index, - const std::vector& thresholds, + const arb_size_type num_cv, + const std::vector& detector_cv_idx, + const std::vector& thresholds, const execution_context& ctx ): cv_to_intdom_(cv_to_intdom), - values_(values), src_to_spike_(src_to_spike), t_before_ptr_(t_before), t_after_ptr_(t_after), - cv_index_(memory::make_const_view(cv_index)), - is_crossed_(cv_index.size()), + cv_index_(memory::make_const_view(detector_cv_idx)), + is_crossed_(detector_cv_idx.size()), thresholds_(memory::make_const_view(thresholds)), - v_prev_(memory::const_host_view(values, cv_index.size())), + v_prev_(num_cv), // TODO: allocates enough space for 10 spikes per watch. // A more robust approach might be needed to avoid overflows. stack_(10*size(), ctx.gpu) { crossings_.reserve(stack_.capacity()); - reset(); + // reset() needs to be called before this is ready for use } /// Remove all stored crossings that were detected in previous calls to test() @@ -79,7 +79,9 @@ class threshold_watcher { /// Reset state machine for each detector. /// Assume that the values in values_ have been set correctly before /// calling, because the values are used to determine the initial state - void reset() { + void reset(const array& values) { + values_ = values.data(); + memory::copy(values, v_prev_); clear_crossings(); if (size()>0) { reset_crossed_impl((int)size(), is_crossed_.data(), cv_index_.data(), values_, thresholds_.data()); @@ -108,6 +110,8 @@ class threshold_watcher { /// crossed since current time t, and the last time the test was /// performed. void test(array* time_since_spike) { + arb_assert(values_); + if (size()>0) { test_thresholds_impl( (int)size(), @@ -132,9 +136,9 @@ class threshold_watcher { /// Non-owning pointers to cv-to-intdom map, /// the values for to test against thresholds, /// and pointers to the time arrays - const fvm_index_type* cv_to_intdom_ = nullptr; - const fvm_value_type* values_ = nullptr; - const fvm_index_type* src_to_spike_ = nullptr; + const arb_index_type* cv_to_intdom_ = nullptr; + const arb_value_type* values_ = nullptr; + const arb_index_type* src_to_spike_ = nullptr; const array* t_before_ptr_ = nullptr; const array* t_after_ptr_ = nullptr; diff --git a/arbor/backends/multi_event_stream_state.hpp b/arbor/backends/multi_event_stream_state.hpp index 5331cd9e3d..931dd551c9 100644 --- a/arbor/backends/multi_event_stream_state.hpp +++ b/arbor/backends/multi_event_stream_state.hpp @@ -11,20 +11,20 @@ template struct multi_event_stream_state { using value_type = EvData; - fvm_size_type n; // number of streams + arb_size_type n; // number of streams const value_type* ev_data; // array of event data items - const fvm_index_type* begin_offset; // array of offsets to beginning of marked events - const fvm_index_type* end_offset; // array of offsets to end of marked events + const arb_index_type* begin_offset; // array of offsets to beginning of marked events + const arb_index_type* end_offset; // array of offsets to end of marked events - fvm_size_type n_streams() const { + arb_size_type n_streams() const { return n; } - const value_type* begin_marked(fvm_index_type i) const { + const value_type* begin_marked(arb_index_type i) const { return ev_data+begin_offset[i]; } - const value_type* end_marked(fvm_index_type i) const { + const value_type* end_marked(arb_index_type i) const { return ev_data+end_offset[i]; } }; diff --git a/arbor/backends/multicore/matrix_state.hpp b/arbor/backends/multicore/cable_solver.hpp similarity index 73% rename from arbor/backends/multicore/matrix_state.hpp rename to arbor/backends/multicore/cable_solver.hpp index 1831bfa07c..53d6f7898a 100644 --- a/arbor/backends/multicore/matrix_state.hpp +++ b/arbor/backends/multicore/cable_solver.hpp @@ -10,16 +10,13 @@ namespace arb { namespace multicore { -template -struct matrix_state { -public: - using value_type = T; - using index_type = I; - - using array = padded_vector; +struct cable_solver { + using value_type = arb_value_type; + using index_type = arb_index_type; + using array = padded_vector; using const_view = const array&; + using iarray = padded_vector; - using iarray = padded_vector; iarray parent_index; iarray cell_cv_divs; @@ -36,9 +33,14 @@ struct matrix_state { // the invariant part of the matrix diagonal array invariant_d; // [μS] - matrix_state() = default; + cable_solver() = default; + cable_solver(const cable_solver&) = default; + cable_solver(cable_solver&&) = default; + + cable_solver& operator=(const cable_solver&) = default; + cable_solver& operator=(cable_solver&&) = default; - matrix_state(const std::vector& p, + cable_solver(const std::vector& p, const std::vector& cell_cv_divs, const std::vector& cap, const std::vector& cond, @@ -52,19 +54,20 @@ struct matrix_state { cv_area(area.begin(), area.end()), cell_to_intdom(cell_to_intdom.begin(), cell_to_intdom.end()) { + // Sanity check arb_assert(cap.size() == size()); arb_assert(cond.size() == size()); arb_assert(cell_cv_divs.back() == (index_type)size()); - auto n = size(); + // Build invariant parts + const auto n = size(); invariant_d = array(n, 0); if (n >= 1) { // skip empty matrix, ie cell with empty morphology for (auto i: util::make_span(1u, n)) { - auto gij = face_conductance[i]; - + const auto gij = face_conductance[i]; u[i] = -gij; invariant_d[i] += gij; - if (p[i]!=-1) { + if (p[i]!=-1) { // root invariant_d[p[i]] += gij; } } @@ -77,7 +80,6 @@ struct matrix_state { return rhs; } - // Assemble the matrix // Afterwards the diagonal and RHS will have been set given dt, voltage and current. // dt_intdom [ms] (per integration domain) @@ -85,20 +87,16 @@ struct matrix_state { // current density [A.m^-2] (per control volume) // conductivity [kS.m^-2] (per control volume) void assemble(const_view dt_intdom, const_view voltage, const_view current, const_view conductivity) { - auto cell_cv_part = util::partition_view(cell_cv_divs); + const auto cell_cv_part = util::partition_view(cell_cv_divs); const index_type ncells = cell_cv_part.size(); - // loop over submatrices for (auto m: util::make_span(0, ncells)) { - auto dt = dt_intdom[cell_to_intdom[m]]; - + const auto dt = dt_intdom[cell_to_intdom[m]]; if (dt>0) { - value_type oodt_factor = 1e-3/dt; // [1/µs] + const value_type oodt_factor = 1e-3/dt; // [1/µs] for (auto i: util::make_span(cell_cv_part[m])) { - auto area_factor = 1e-3*cv_area[i]; // [1e-9·m²] - - auto gi = oodt_factor*cv_capacitance[i] + area_factor*conductivity[i]; // [μS] - + const auto area_factor = 1e-3*cv_area[i]; // [1e-9·m²] + const auto gi = oodt_factor*cv_capacitance[i] + area_factor*conductivity[i]; // [μS] d[i] = gi + invariant_d[i]; // convert current to units nA rhs[i] = gi*voltage[i] - area_factor*current[i]; @@ -115,19 +113,17 @@ struct matrix_state { void solve() { // loop over submatrices - for (auto cv_span: util::partition_view(cell_cv_divs)) { - auto first = cv_span.first; - auto last = cv_span.second; // one past the end + for (const auto& [first, last]: util::partition_view(cell_cv_divs)) { if (first >= last) continue; // skip cell with no CVs if (d[first]!=0) { // backward sweep for(auto i=last-1; i>first; --i) { - auto factor = u[i] / d[i]; + const auto factor = u[i] / d[i]; d[parent_index[i]] -= factor * u[i]; rhs[parent_index[i]] -= factor * rhs[i]; } + // solve root rhs[first] /= d[first]; - // forward sweep for(auto i=first+1; i +#include + +#include + +#include "multicore_common.hpp" + +namespace arb { +namespace multicore { + +struct diffusion_solver { + using value_type = arb_value_type; + using index_type = arb_index_type; + using array = padded_vector; + using const_view = const array&; + using iarray = padded_vector; + + iarray parent_index; + iarray cell_cv_divs; + + array d; // [μS] + array u; // [μS] + array rhs; // [nA] + + array cv_area; // [μm^2] + + iarray cell_to_intdom; + + // the invariant part of the matrix diagonal + array invariant_d; // [μS] + + diffusion_solver() = default; + diffusion_solver(const diffusion_solver&) = default; + diffusion_solver(diffusion_solver&&) = default; + + diffusion_solver& operator=(const diffusion_solver&) = default; + diffusion_solver& operator=(diffusion_solver&&) = default; + + diffusion_solver(const std::vector& p, + const std::vector& cell_cv_divs, + const std::vector& diff, + const std::vector& area, + const std::vector& cell_to_intdom): + parent_index(p.begin(), p.end()), + cell_cv_divs(cell_cv_divs.begin(), cell_cv_divs.end()), + d(size(), 0), u(size(), 0), rhs(size()), + cv_area(area.begin(), area.end()), + cell_to_intdom(cell_to_intdom.begin(), cell_to_intdom.end()) + { + // Sanity check + arb_assert(diff.size() == size()); + arb_assert(cell_cv_divs.back() == (index_type)size()); + + // Build invariant parts + const auto n = size(); + invariant_d = array(n, 0); + if (n >= 1) { // skip empty matrix, ie cell with empty morphology + for (auto i: util::make_span(1u, n)) { + auto gij = diff[i]; + u[i] = -gij; + invariant_d[i] += gij; + // Also add to our parent, if present + if (auto pi = p[i]; pi != -1) invariant_d[pi] += gij; + } + } + } + + const_view solution() const { + // In this back end the solution is a simple view of the rhs, which + // contains the solution after the matrix_solve is performed. + return rhs; + } + + // Assemble the matrix + // dt_intdom [ms] (per integration domain) + // internal conc [mM] (per control volume) + // voltage [mV] (per control volume) + // current density [A.m^-2] (per control volume and species) + // diffusivity [???] (per control volume) + // charge [e] + void assemble(const_view dt_intdom, const_view concentration, const_view voltage, const_view current, const_view conductivity, arb_value_type q) { + auto cell_cv_part = util::partition_view(cell_cv_divs); + index_type ncells = cell_cv_part.size(); + // loop over submatrices + for (auto m: util::make_span(0, ncells)) { + auto dt = dt_intdom[cell_to_intdom[m]]; + if (dt>0) { + value_type _1_dt = 1e-3/dt; // 1/µs + for (auto i: util::make_span(cell_cv_part[m])) { + auto u = voltage[i]; // mV + auto g = conductivity[i]; // µS + auto J = current[i]; // A/m^2 + auto A = 1e-3*cv_area[i]; // 1e-9·m² + auto X = concentration[i]; // mM + // conversion from current density to concentration change + // using Faraday's constant + auto F = A/(q*96.485332); + d[i] = _1_dt + F*g + invariant_d[i]; + rhs[i] = _1_dt*X + F*(u*g - J); + } + } + else { + for (auto i: util::make_span(cell_cv_part[m])) { + d[i] = 0; + rhs[i] = concentration[i]; + } + } + } + } + + void solve() { + // loop over submatrices + for (const auto& [first, last]: util::partition_view(cell_cv_divs)) { + if (first >= last) continue; // skip cell with no CVs + if (d[first]!=0) { + // backward sweep + for(auto i=last-1; i>first; --i) { + auto pi = parent_index[i]; + auto fac = -u[i] / d[i]; + d[pi] = std::fma(fac, u[i], d[pi]); + rhs[pi] = std::fma(fac, rhs[i], rhs[pi]); + } + // solve root + rhs[first] /= d[first]; + // forward sweep + for(auto i=first+1; i + void solve(VTo& to) { + solve(); + memory::copy(rhs, to); + } + + std::size_t size() const { return parent_index.size(); } +}; + +} // namespace multicore +} // namespace arb diff --git a/arbor/backends/multicore/fvm.hpp b/arbor/backends/multicore/fvm.hpp index 6e21311ded..c65997efd4 100644 --- a/arbor/backends/multicore/fvm.hpp +++ b/arbor/backends/multicore/fvm.hpp @@ -6,10 +6,11 @@ #include #include "backends/event.hpp" -#include "backends/multicore/matrix_state.hpp" #include "backends/multicore/multi_event_stream.hpp" #include "backends/multicore/multicore_common.hpp" #include "backends/multicore/shared_state.hpp" +#include "backends/multicore/diffusion_solver.hpp" +#include "backends/multicore/cable_solver.hpp" #include "backends/multicore/threshold_watcher.hpp" #include "execution_context.hpp" #include "util/padded_alloc.hpp" @@ -23,9 +24,9 @@ struct backend { static bool is_supported() { return true; } static std::string name() { return "cpu"; } - using value_type = fvm_value_type; - using index_type = fvm_index_type; - using size_type = fvm_size_type; + using value_type = arb_value_type; + using index_type = arb_index_type; + using size_type = arb_size_type; using array = arb::multicore::array; using iarray = arb::multicore::iarray; @@ -40,33 +41,32 @@ struct backend { return util::range_pointer_view(v); } - using matrix_state = arb::multicore::matrix_state; - using threshold_watcher = arb::multicore::threshold_watcher; - + using cable_solver = arb::multicore::cable_solver; + using diffusion_solver = arb::multicore::diffusion_solver; + using threshold_watcher = arb::multicore::threshold_watcher; using deliverable_event_stream = arb::multicore::deliverable_event_stream; - using sample_event_stream = arb::multicore::sample_event_stream; - - using shared_state = arb::multicore::shared_state; - using ion_state = arb::multicore::ion_state; + using sample_event_stream = arb::multicore::sample_event_stream; + using shared_state = arb::multicore::shared_state; + using ion_state = arb::multicore::ion_state; static threshold_watcher voltage_watcher( shared_state& state, - const std::vector& cv, + const std::vector& detector_cv, const std::vector& thresholds, const execution_context& context) { return threshold_watcher( state.cv_to_intdom.data(), - state.voltage.data(), state.src_to_spike.data(), &state.time, &state.time_to, - cv, + state.voltage.size(), + detector_cv, thresholds, context); } - static fvm_value_type* mechanism_field_data(arb::mechanism* mptr, const std::string& field); + static value_type* mechanism_field_data(arb::mechanism* mptr, const std::string& field); }; } // namespace multicore diff --git a/arbor/backends/multicore/multi_event_stream.hpp b/arbor/backends/multicore/multi_event_stream.hpp index 6fe2a61a55..7ff24eb363 100644 --- a/arbor/backends/multicore/multi_event_stream.hpp +++ b/arbor/backends/multicore/multi_event_stream.hpp @@ -23,8 +23,8 @@ namespace multicore { template class multi_event_stream { public: - using size_type = fvm_size_type; - using index_type = fvm_index_type; + using size_type = arb_size_type; + using index_type = arb_index_type; using event_type = Event; using event_time_type = ::arb::event_time_type; @@ -33,7 +33,7 @@ class multi_event_stream { using state = multi_event_stream_state; - multi_event_stream() {} + multi_event_stream() = default; explicit multi_event_stream(size_type n_stream): span_begin_(n_stream), span_end_(n_stream), mark_(n_stream) {} diff --git a/arbor/backends/multicore/multicore_common.hpp b/arbor/backends/multicore/multicore_common.hpp index b0b3ed4ec0..c7b2360471 100644 --- a/arbor/backends/multicore/multicore_common.hpp +++ b/arbor/backends/multicore/multicore_common.hpp @@ -21,8 +21,8 @@ namespace multicore { template using padded_vector = std::vector>; -using array = padded_vector; -using iarray = padded_vector; +using array = padded_vector; +using iarray = padded_vector; using deliverable_event_stream = arb::multicore::multi_event_stream; using sample_event_stream = arb::multicore::multi_event_stream; diff --git a/arbor/backends/multicore/shared_state.cpp b/arbor/backends/multicore/shared_state.cpp index b282186f16..28578a2532 100644 --- a/arbor/backends/multicore/shared_state.cpp +++ b/arbor/backends/multicore/shared_state.cpp @@ -35,9 +35,9 @@ using util::make_span; using util::ptr_by_key; using util::value_by_key; -constexpr unsigned vector_length = (unsigned) simd::simd_abi::native_width::value; -using simd_value_type = simd::simd; -using simd_index_type = simd::simd; +constexpr unsigned vector_length = (unsigned) simd::simd_abi::native_width::value; +using simd_value_type = simd::simd; +using simd_index_type = simd::simd; const int simd_width = simd::width(); // Pick alignment compatible with native SIMD width for explicitly @@ -47,7 +47,7 @@ const int simd_width = simd::width(); // these up to the compiler to optimize/auto-vectorize. inline unsigned min_alignment(unsigned align) { - unsigned simd_align = sizeof(fvm_value_type)*simd_width; + unsigned simd_align = sizeof(arb_value_type)*simd_width; return math::next_pow2(std::max(align, simd_align)); } @@ -56,21 +56,26 @@ using pad = util::padded_allocator<>; ion_state::ion_state( int charge, const fvm_ion_config& ion_data, - unsigned align -): + unsigned align, + solver_ptr ptr): alignment(min_alignment(align)), + write_eX_(ion_data.revpot_written), + write_Xo_(ion_data.econc_written), + write_Xi_(ion_data.iconc_written), node_index_(ion_data.cv.begin(), ion_data.cv.end(), pad(alignment)), iX_(ion_data.cv.size(), NAN, pad(alignment)), eX_(ion_data.init_revpot.begin(), ion_data.init_revpot.end(), pad(alignment)), - Xi_(ion_data.cv.size(), NAN, pad(alignment)), - Xo_(ion_data.cv.size(), NAN, pad(alignment)), + Xi_(ion_data.init_iconc.begin(), ion_data.init_iconc.end(), pad(alignment)), + Xd_(ion_data.reset_iconc.begin(), ion_data.reset_iconc.end(), pad(alignment)), + Xo_(ion_data.init_econc.begin(), ion_data.init_econc.end(), pad(alignment)), + gX_(ion_data.cv.size(), NAN, pad(alignment)), init_Xi_(ion_data.init_iconc.begin(), ion_data.init_iconc.end(), pad(alignment)), init_Xo_(ion_data.init_econc.begin(), ion_data.init_econc.end(), pad(alignment)), reset_Xi_(ion_data.reset_iconc.begin(), ion_data.reset_iconc.end(), pad(alignment)), reset_Xo_(ion_data.reset_econc.begin(), ion_data.reset_econc.end(), pad(alignment)), init_eX_(ion_data.init_revpot.begin(), ion_data.init_revpot.end(), pad(alignment)), - charge(1u, charge, pad(alignment)) -{ + charge(1u, charge, pad(alignment)), + solver(std::move(ptr)) { arb_assert(node_index_.size()==init_Xi_.size()); arb_assert(node_index_.size()==init_Xo_.size()); arb_assert(node_index_.size()==eX_.size()); @@ -78,19 +83,22 @@ ion_state::ion_state( } void ion_state::init_concentration() { - std::copy(init_Xi_.begin(), init_Xi_.end(), Xi_.begin()); - std::copy(init_Xo_.begin(), init_Xo_.end(), Xo_.begin()); + // NB. not resetting Xd here, it's controlled via the solver. + if (write_Xi_) std::copy(init_Xi_.begin(), init_Xi_.end(), Xi_.begin()); + if (write_Xo_) std::copy(init_Xo_.begin(), init_Xo_.end(), Xo_.begin()); } void ion_state::zero_current() { + util::fill(gX_, 0); util::fill(iX_, 0); } void ion_state::reset() { zero_current(); - std::copy(reset_Xi_.begin(), reset_Xi_.end(), Xi_.begin()); - std::copy(reset_Xo_.begin(), reset_Xo_.end(), Xo_.begin()); - std::copy(init_eX_.begin(), init_eX_.end(), eX_.begin()); + std::copy(reset_Xi_.begin(), reset_Xi_.end(), Xd_.begin()); + if (write_Xi_) std::copy(reset_Xi_.begin(), reset_Xi_.end(), Xi_.begin()); + if (write_Xo_) std::copy(reset_Xo_.begin(), reset_Xo_.end(), Xo_.begin()); + if (write_eX_) std::copy(init_eX_.begin(), init_eX_.end(), eX_.begin()); } // istim_state methods: @@ -108,8 +116,8 @@ istim_state::istim_state(const fvm_stimulus_config& stim, unsigned align): accu_stim_.resize(accu_to_cv_.size()); std::size_t n = accu_index_.size(); - std::vector envl_a, envl_t; - std::vector edivs; + std::vector envl_a, envl_t; + std::vector edivs; arb_assert(n==frequency_.size()); arb_assert(n==stim.envelope_time.size()); @@ -124,7 +132,7 @@ istim_state::istim_state(const fvm_stimulus_config& stim, unsigned align): util::append(envl_a, stim.envelope_amplitude[i]); util::append(envl_t, stim.envelope_time[i]); - edivs.push_back(fvm_index_type(envl_t.size())); + edivs.push_back(arb_index_type(envl_t.size())); } assign(envl_amplitudes_, envl_a); @@ -153,16 +161,16 @@ void istim_state::add_current(const array& time, const iarray& cv_to_intdom, arr // - the next envelope time is greater than simulation time, or // - it is the last valid index for the envelope. - fvm_index_type ei_left = envl_divs_[i]; - fvm_index_type ei_right = envl_divs_[i+1]; + arb_index_type ei_left = envl_divs_[i]; + arb_index_type ei_right = envl_divs_[i+1]; - fvm_index_type ai = accu_index_[i]; - fvm_index_type cv = accu_to_cv_[ai]; + arb_index_type ai = accu_index_[i]; + arb_index_type cv = accu_to_cv_[ai]; double t = time[cv_to_intdom[cv]]; if (ei_left==ei_right || t& cv_to_intdom_vec, - const std::vector& cv_to_cell_vec, - const std::vector& init_membrane_potential, - const std::vector& temperature_K, - const std::vector& diam, - const std::vector& src_to_spike, + arb_size_type n_intdom, + arb_size_type n_cell, + arb_size_type n_detector, + const std::vector& cv_to_intdom_vec, + const std::vector& cv_to_cell_vec, + const std::vector& init_membrane_potential, + const std::vector& temperature_K, + const std::vector& diam, + const std::vector& src_to_spike, unsigned align ): alignment(min_alignment(align)), @@ -218,8 +226,6 @@ shared_state::shared_state( src_to_spike(src_to_spike.begin(), src_to_spike.end(), pad(alignment)), deliverable_events(n_intdom) { - time_ptr = time.data(); - // For indices in the padded tail of cv_to_intdom, set index to last valid intdom index. if (n_cv>0) { std::copy(cv_to_intdom_vec.begin(), cv_to_intdom_vec.end(), cv_to_intdom.begin()); @@ -236,14 +242,33 @@ shared_state::shared_state( } } +void shared_state::integrate_voltage() { + solver.assemble(dt_intdom, voltage, current_density, conductivity); + solver.solve(voltage); +} + +void shared_state::integrate_diffusion() { + for (auto& [ion, data]: ion_data) { + if (data.solver) { + data.solver->assemble(dt_intdom, + data.Xd_, + voltage, + data.iX_, + data.gX_, + data.charge[0]); + data.solver->solve(data.Xd_); + } + } +} + void shared_state::add_ion( const std::string& ion_name, int charge, - const fvm_ion_config& ion_info) -{ + const fvm_ion_config& ion_info, + ion_state::solver_ptr ptr) { ion_data.emplace(std::piecewise_construct, - std::forward_as_tuple(ion_name), - std::forward_as_tuple(charge, ion_info, alignment)); + std::forward_as_tuple(ion_name), + std::forward_as_tuple(charge, ion_info, alignment, std::move(ptr))); } void shared_state::configure_stimulus(const fvm_stimulus_config& stims) { @@ -280,12 +305,12 @@ void shared_state::ions_init_concentration() { } } -void shared_state::update_time_to(fvm_value_type dt_step, fvm_value_type tmax) { +void shared_state::update_time_to(arb_value_type dt_step, arb_value_type tmax) { using simd::assign; using simd::indirect; using simd::add; using simd::min; - for (fvm_size_type i = 0; i shared_state::time_bounds() const { +std::pair shared_state::time_bounds() const { return util::minmax_value(time); } -std::pair shared_state::voltage_bounds() const { +std::pair shared_state::voltage_bounds() const { return util::minmax_value(voltage); } @@ -333,7 +358,7 @@ void shared_state::take_samples( array& sample_time, array& sample_value) { - for (fvm_size_type i = 0; i pad(m.data_alignment()); - // Set internal variables - m.time_ptr_ptr = &time_ptr; - // Assign non-owning views onto shared state: m.ppack_ = {0}; m.ppack_.width = pos_data.cv.size(); @@ -484,7 +506,6 @@ void shared_state::instantiate(arb::mechanism& m, unsigned id, const mechanism_o m.ppack_.time_since_spike = time_since_spike.data(); m.ppack_.n_detectors = n_detector; m.ppack_.events = {}; - m.ppack_.vec_t = nullptr; bool mult_in_place = !pos_data.multiplicity.empty(); bool peer_indices = !pos_data.peer_cv.empty(); @@ -501,9 +522,18 @@ void shared_state::instantiate(arb::mechanism& m, unsigned id, const mechanism_o for (auto idx: make_span(m.mech_.n_ions)) { auto ion = m.mech_.ions[idx].name; auto ion_binding = value_by_key(overrides.ion_rebind, ion).value_or(ion); - ion_state* oion = ptr_by_key(ion_data, ion_binding); + auto* oion = ptr_by_key(ion_data, ion_binding); if (!oion) throw arbor_internal_error(util::pprintf("multicore/mechanism: mechanism holds ion '{}' with no corresponding shared state", ion)); - m.ppack_.ion_states[idx] = { oion->iX_.data(), oion->eX_.data(), oion->Xi_.data(), oion->Xo_.data(), oion->charge.data() }; + + auto& ion_state = m.ppack_.ion_states[idx]; + ion_state = {0}; + ion_state.current_density = oion->iX_.data(); + ion_state.reversal_potential = oion->eX_.data(); + ion_state.internal_concentration = oion->Xi_.data(); + ion_state.external_concentration = oion->Xo_.data(); + ion_state.diffusive_concentration = oion->Xd_.data(); + ion_state.ionic_charge = oion->charge.data(); + ion_state.conductivity = oion->gX_.data(); } // Initialize state and parameter vectors with default values. diff --git a/arbor/backends/multicore/shared_state.hpp b/arbor/backends/multicore/shared_state.hpp index 4d12e0f414..e23c088dca 100644 --- a/arbor/backends/multicore/shared_state.hpp +++ b/arbor/backends/multicore/shared_state.hpp @@ -7,6 +7,7 @@ #include #include +#include #include #include #include @@ -16,12 +17,13 @@ #include "util/padded_alloc.hpp" #include "util/rangeutil.hpp" -#include "matrix_state.hpp" #include "multi_event_stream.hpp" #include "threshold_watcher.hpp" #include "fvm_layout.hpp" #include "multicore_common.hpp" #include "partition_by_constraint.hpp" +#include "backends/multicore/cable_solver.hpp" +#include "backends/multicore/diffusion_solver.hpp" namespace arb { namespace multicore { @@ -37,15 +39,23 @@ namespace multicore { * Xi_ cai internal calcium concentration * Xo_ cao external calcium concentration */ +struct ARB_ARBOR_API ion_state { + using solver_type = diffusion_solver; + using solver_ptr = std::unique_ptr; -struct ion_state { unsigned alignment = 1; // Alignment and padding multiple. + bool write_eX_; // is eX written? + bool write_Xo_; // is Xo written? + bool write_Xi_; // is Xi written? + iarray node_index_; // Instance to CV map. - array iX_; // (A/m²) current density - array eX_; // (mV) reversal potential - array Xi_; // (mM) internal concentration - array Xo_; // (mM) external concentration + array iX_; // (A/m²) current density + array eX_; // (mV) reversal potential + array Xi_; // (mM) internal concentration + array Xd_; // (mM) diffusive internal concentration + array Xo_; // (mM) external concentration + array gX_; // (kS/m²) per-species conductivity array init_Xi_; // (mM) area-weighted initial internal concentration array init_Xo_; // (mM) area-weighted initial external concentration @@ -55,12 +65,15 @@ struct ion_state { array charge; // charge of ionic species (global value, length 1) + solver_ptr solver = nullptr; + ion_state() = default; ion_state( int charge, const fvm_ion_config& ion_data, - unsigned align + unsigned align, + solver_ptr ptr ); // Set ion concentrations to weighted proportion of default concentrations. @@ -73,7 +86,7 @@ struct ion_state { void reset(); }; -struct istim_state { +struct ARB_ARBOR_API istim_state { unsigned alignment = 1; // Alignment and padding multiple. // Immutable data (post initialization): @@ -105,7 +118,7 @@ struct istim_state { istim_state() = default; }; -struct shared_state { +struct ARB_ARBOR_API shared_state { struct mech_storage { array data_; iarray indices_; @@ -116,12 +129,14 @@ struct shared_state { std::vector ion_states_; }; + cable_solver solver; + unsigned alignment = 1; // Alignment and padding multiple. util::padded_allocator<> alloc; // Allocator with corresponging alignment/padding. - fvm_size_type n_intdom = 0; // Number of integration domains. - fvm_size_type n_detector = 0; // Max number of detectors on all cells. - fvm_size_type n_cv = 0; // Total number of CVs. + arb_size_type n_intdom = 0; // Number of integration domains. + arb_size_type n_detector = 0; // Max number of detectors on all cells. + arb_size_type n_cv = 0; // Total number of CVs. iarray cv_to_intdom; // Maps CV index to integration domain index. iarray cv_to_cell; // Maps CV index to the first spike @@ -140,8 +155,6 @@ struct shared_state { array time_since_spike; // Stores time since last spike on any detector, organized by cell. iarray src_to_spike; // Maps spike source index to spike index - arb_value_type* time_ptr; - istim_state stim_data; std::unordered_map ion_data; deliverable_event_stream deliverable_events; @@ -150,15 +163,15 @@ struct shared_state { shared_state() = default; shared_state( - fvm_size_type n_intdom, - fvm_size_type n_cell, - fvm_size_type n_detector, - const std::vector& cv_to_intdom_vec, - const std::vector& cv_to_cell_vec, - const std::vector& init_membrane_potential, - const std::vector& temperature_K, - const std::vector& diam, - const std::vector& src_to_spike, + arb_size_type n_intdom, + arb_size_type n_cell, + arb_size_type n_detector, + const std::vector& cv_to_intdom_vec, + const std::vector& cv_to_cell_vec, + const std::vector& init_membrane_potential, + const std::vector& temperature_K, + const std::vector& diam, + const std::vector& src_to_spike, unsigned align ); @@ -171,7 +184,8 @@ struct shared_state { void add_ion( const std::string& ion_name, int charge, - const fvm_ion_config& ion_data); + const fvm_ion_config& ion_data, + ion_state::solver_ptr solver=nullptr); void configure_stimulus(const fvm_stimulus_config&); @@ -179,10 +193,10 @@ struct shared_state { void ions_init_concentration(); - void ions_nernst_reversal_potential(fvm_value_type temperature_K); + void ions_nernst_reversal_potential(arb_value_type temperature_K); // Set time_to to earliest of time+dt_step and tmax. - void update_time_to(fvm_value_type dt_step, fvm_value_type tmax); + void update_time_to(arb_value_type dt_step, arb_value_type tmax); // Set the per-integration domain and per-compartment dt from time_to - time. void set_dt(); @@ -190,12 +204,16 @@ struct shared_state { // Update stimulus state and add current contributions. void add_stimulus_current(); + // Integrate by matrix solve. + void integrate_voltage(); + void integrate_diffusion(); + // Return minimum and maximum time value [ms] across cells. - std::pair time_bounds() const; + std::pair time_bounds() const; // Return minimum and maximum voltage value [mV] across cells. // (Used for solution bounds checking.) - std::pair voltage_bounds() const; + std::pair voltage_bounds() const; // Take samples according to marked events in a sample_event_stream. void take_samples( @@ -207,7 +225,7 @@ struct shared_state { }; // For debugging only: -std::ostream& operator<<(std::ostream& o, const shared_state& s); +ARB_ARBOR_API std::ostream& operator<<(std::ostream& o, const shared_state& s); } // namespace multicore diff --git a/arbor/backends/multicore/threshold_watcher.hpp b/arbor/backends/multicore/threshold_watcher.hpp index 9b2d5e5331..755c15919c 100644 --- a/arbor/backends/multicore/threshold_watcher.hpp +++ b/arbor/backends/multicore/threshold_watcher.hpp @@ -18,17 +18,16 @@ class threshold_watcher { threshold_watcher(const execution_context& ctx) {} threshold_watcher( - const fvm_index_type* cv_to_intdom, - const fvm_value_type* values, - const fvm_index_type* src_to_spike, + const arb_index_type* cv_to_intdom, + const arb_index_type* src_to_spike, const array* t_before, const array* t_after, - const std::vector& cv_index, - const std::vector& thresholds, + const arb_size_type num_cv, + const std::vector& cv_index, + const std::vector& thresholds, const execution_context& context ): cv_to_intdom_(cv_to_intdom), - values_(values), src_to_spike_(src_to_spike), t_before_ptr_(t_before), t_after_ptr_(t_after), @@ -36,10 +35,10 @@ class threshold_watcher { cv_index_(cv_index), is_crossed_(n_cv_), thresholds_(thresholds), - v_prev_(values_, values_+n_cv_) + v_prev_(num_cv) { arb_assert(n_cv_==thresholds.size()); - reset(); + // reset() needs to be called before this is ready for use } /// Remove all stored crossings that were detected in previous calls @@ -51,9 +50,11 @@ class threshold_watcher { /// Reset state machine for each detector. /// Assume that the values in values_ have been set correctly before /// calling, because the values are used to determine the initial state - void reset() { + void reset(const array& values) { + values_ = values.data(); + std::copy(values.begin(), values.end(), v_prev_.begin()); clear_crossings(); - for (fvm_size_type i = 0; i=thresholds_[i]; } } @@ -66,16 +67,18 @@ class threshold_watcher { /// Crossing events are recorded for each threshold that /// is crossed since the last call to test void test(array* time_since_spike) { + arb_assert(values_); + // Reset all spike times to -1.0 indicating no spike has been recorded on the detector - const fvm_value_type* t_before = t_before_ptr_->data(); - const fvm_value_type* t_after = t_after_ptr_->data(); - for (fvm_size_type i = 0; idata(); + const arb_value_type* t_after = t_after_ptr_->data(); + for (arb_size_type i = 0; iempty()) { spike_idx = src_to_spike_[i]; @@ -103,11 +106,11 @@ class threshold_watcher { } } - v_prev_[i] = v; + v_prev_[cv] = v; } } - bool is_crossed(fvm_size_type i) const { + bool is_crossed(arb_size_type i) const { return is_crossed_[i]; } @@ -120,18 +123,18 @@ class threshold_watcher { /// Non-owning pointers to cv-to-intdom map, /// the values for to test against thresholds, /// and pointers to the time arrays - const fvm_index_type* cv_to_intdom_ = nullptr; - const fvm_value_type* values_ = nullptr; - const fvm_index_type* src_to_spike_ = nullptr; + const arb_index_type* cv_to_intdom_ = nullptr; + const arb_value_type* values_ = nullptr; + const arb_index_type* src_to_spike_ = nullptr; const array* t_before_ptr_ = nullptr; const array* t_after_ptr_ = nullptr; /// Threshold watcher state. - fvm_size_type n_cv_ = 0; - std::vector cv_index_; - std::vector is_crossed_; - std::vector thresholds_; - std::vector v_prev_; + arb_size_type n_cv_ = 0; + std::vector cv_index_; + std::vector is_crossed_; + std::vector thresholds_; + std::vector v_prev_; std::vector crossings_; }; diff --git a/arbor/backends/threshold_crossing.hpp b/arbor/backends/threshold_crossing.hpp index 3e5829d655..18a61822e3 100644 --- a/arbor/backends/threshold_crossing.hpp +++ b/arbor/backends/threshold_crossing.hpp @@ -7,8 +7,8 @@ namespace arb { // Representation of a single crossing event. struct threshold_crossing { - fvm_size_type index; // index of variable - fvm_value_type time; // time of crossing + arb_size_type index; // index of variable + arb_value_type time; // time of crossing friend bool operator==(threshold_crossing l, threshold_crossing r) { return l.index==r.index && l.time==r.time; diff --git a/arbor/benchmark_cell_group.cpp b/arbor/benchmark_cell_group.cpp index 0069b40512..1819edefed 100644 --- a/arbor/benchmark_cell_group.cpp +++ b/arbor/benchmark_cell_group.cpp @@ -39,7 +39,7 @@ benchmark_cell_group::benchmark_cell_group(const std::vector& gid cg_targets.add_label(c.target, {0, 1}); } - reset(); + benchmark_cell_group::reset(); } void benchmark_cell_group::reset() { @@ -95,7 +95,7 @@ void benchmark_cell_group::clear_spikes() { } void benchmark_cell_group::add_sampler(sampler_association_handle h, - cell_member_predicate probe_ids, + cell_member_predicate probeset_ids, schedule sched, sampler_function fn, sampling_policy policy) {} diff --git a/arbor/benchmark_cell_group.hpp b/arbor/benchmark_cell_group.hpp index ea64cbcedd..c106836a16 100644 --- a/arbor/benchmark_cell_group.hpp +++ b/arbor/benchmark_cell_group.hpp @@ -28,7 +28,7 @@ class benchmark_cell_group: public cell_group { void clear_spikes() override; - void add_sampler(sampler_association_handle h, cell_member_predicate probe_ids, schedule sched, sampler_function fn, sampling_policy policy) override; + void add_sampler(sampler_association_handle h, cell_member_predicate probeset_ids, schedule sched, sampler_function fn, sampling_policy policy) override; void remove_sampler(sampler_association_handle h) override {} diff --git a/arbor/cable_cell.cpp b/arbor/cable_cell.cpp index 1432b6a10a..9f6a523fda 100644 --- a/arbor/cable_cell.cpp +++ b/arbor/cable_cell.cpp @@ -1,3 +1,4 @@ +#include #include #include #include @@ -16,9 +17,6 @@ namespace arb { -using region_map = std::unordered_map; -using locset_map = std::unordered_map; - using value_type = cable_cell::value_type; using index_type = cable_cell::index_type; using size_type = cable_cell::size_type; @@ -27,6 +25,42 @@ template struct constant_type { template using type = T; }; +// Helper for debugging: print outermost DSL constructor +std::string show(const paintable& item) { + std::stringstream os; + std::visit( + [&] (const auto& p) { + using T = std::decay_t; + if constexpr (std::is_same_v) { + os << "init-membrane-potential"; + } + else if constexpr (std::is_same_v) { + os << "axial-resistivity"; + } + else if constexpr (std::is_same_v) { + os << "temperature-kelvin"; + } + else if constexpr (std::is_same_v) { + os << "membrane-capacitance"; + } + else if constexpr (std::is_same_v) { + os << "ion-internal-concentration"; + } + else if constexpr (std::is_same_v) { + os << "ion-external-concentration"; + } + else if constexpr (std::is_same_v) { + os << "ion-reversal-potential"; + } + else if constexpr (std::is_same_v) { + os << "density:" << p.mech.name(); + } + }, + item); + return os.str(); +} + + struct cable_cell_impl { using value_type = cable_cell::value_type; using index_type = cable_cell::index_type; @@ -102,14 +136,19 @@ struct cable_cell_impl { return region_map.get(); } - mcable_map& get_region_map(const density& desc) { - return region_map.get()[desc.mech.name()]; + mcable_map> & + get_region_map(const density &desc) { + return region_map.get()[desc.mech.name()]; } mcable_map& get_region_map(const init_int_concentration& init) { return region_map.get()[init.ion]; } + mcable_map& get_region_map(const ion_diffusivity& init) { + return region_map.get()[init.ion]; + } + mcable_map& get_region_map(const init_ext_concentration& init) { return region_map.get()[init.ion]; } @@ -118,8 +157,31 @@ struct cable_cell_impl { return region_map.get()[init.ion]; } - template - void paint(const region& reg, const Property& prop) { + void paint(const region& reg, const density& prop) { + this->paint(reg, scaled_mechanism(prop)); + } + + void paint(const region& reg, const scaled_mechanism& prop) { + mextent cables = thingify(reg, provider); + auto& mm = get_region_map(prop.t_mech); + + std::unordered_map im; + for (const auto& [fst, snd]: prop.scale_expr) { + im.insert_or_assign(fst, thingify(snd, provider)); + } + + for (const auto& c: cables) { + // Skip zero-length cables in extent: + if (c.prox_pos == c.dist_pos) continue; + + if (!mm.insert(c, {prop.t_mech, im})) { + throw cable_cell_error(util::pprintf("cable {} overpaints", c)); + } + } + } + + template + void paint(const region& reg, const TaggedMech& prop) { mextent cables = thingify(reg, provider); auto& mm = get_region_map(prop); @@ -128,7 +190,8 @@ struct cable_cell_impl { if (c.prox_pos==c.dist_pos) continue; if (!mm.insert(c, prop)) { - throw cable_cell_error(util::pprintf("cable {} overpaints", c)); + std::stringstream rg; rg << reg; + throw cable_cell_error(util::pprintf("Setting property '{}' on region '{}' overpaints at '{}'", show(prop), rg.str(), c)); } } } diff --git a/arbor/cable_cell_param.cpp b/arbor/cable_cell_param.cpp index c238a48e57..e272781b78 100644 --- a/arbor/cable_cell_param.cpp +++ b/arbor/cable_cell_param.cpp @@ -1,8 +1,10 @@ #include #include +#include #include #include #include +#include #include #include @@ -12,7 +14,7 @@ namespace arb { -void check_global_properties(const cable_cell_global_properties& G) { +ARB_ARBOR_API void check_global_properties(const cable_cell_global_properties& G) { auto& param = G.default_parameters; if (!param.init_membrane_potential) { @@ -37,15 +39,16 @@ void check_global_properties(const cable_cell_global_properties& G) { } } - for (const auto& kv: param.ion_data) { - auto& ion = kv.first; - const cable_cell_ion_data& data = kv.second; + for (const auto& [ion, data]: param.ion_data) { if (!data.init_int_concentration) { throw cable_cell_error("missing init_int_concentration for ion "+ion); } if (!data.init_ext_concentration) { throw cable_cell_error("missing init_ext_concentration for ion "+ion); } + if (data.diffusivity && *data.diffusivity < 0.0) { + throw cable_cell_error("negative diffusivity for ion "+ion); + } if (!data.init_reversal_potential && !param.reversal_potential_method.count(ion)) { throw cable_cell_error("missing init_reversal_potential or reversal_potential_method for ion "+ion); } @@ -62,11 +65,10 @@ cable_cell_parameter_set neuron_parameter_defaults = { // membrane capacitance [F/m²] 0.01, // ion defaults: - // internal concentration [mM], external concentration [mM], reversal potential [mV] - { - {"na", {10.0, 140.0, 115 - 65.}}, - {"k", {54.4, 2.5, -12 - 65.}}, - {"ca", {5e-5, 2.0, 12.5*std::log(2.0/5e-5)}} + // internal concentration [mM], external concentration [mM], reversal potential [mV], diffusivity [m^2/s] + {{"na", {10.0, 140.0, 115 - 65., 0.0}}, + {"k", {54.4, 2.5, -12 - 65., 0.0}}, + {"ca", {5e-5, 2.0, 12.5*std::log(2.0/5e-5), 0.0}} }, }; @@ -96,6 +98,9 @@ std::vector cable_cell_parameter_set::serialize() const { if (data.init_reversal_potential) { D.push_back(init_reversal_potential{name, *data.init_reversal_potential}); } + if (data.init_reversal_potential) { + D.push_back(ion_diffusivity{name, *data.diffusivity}); + } } for (const auto& [name, mech]: reversal_potential_method) { @@ -109,15 +114,17 @@ std::vector cable_cell_parameter_set::serialize() const { return D; } -void decor::paint(region where, paintable what) { - paintings_.push_back({std::move(where), std::move(what)}); +decor& decor::paint(region where, paintable what) { + paintings_.emplace_back(std::move(where), std::move(what)); + return *this; } -void decor::place(locset where, placeable what, cell_tag_type label) { - placements_.push_back({std::move(where), std::move(what), std::move(label)}); +decor& decor::place(locset where, placeable what, cell_tag_type label) { + placements_.emplace_back(std::move(where), std::move(what), std::move(label)); + return *this; } -void decor::set_default(defaultable what) { +decor& decor::set_default(defaultable what) { std::visit( [this] (auto&& p) { using T = std::decay_t; @@ -148,8 +155,12 @@ void decor::set_default(defaultable what) { else if constexpr (std::is_same_v) { defaults_.discretization = std::forward(p); } + else if constexpr (std::is_same_v) { + defaults_.ion_data[p.ion].diffusivity = p.value; + } }, what); + return *this; } } // namespace arb diff --git a/arbor/cell_group_factory.cpp b/arbor/cell_group_factory.cpp index 1351299fc8..69af0ffdcb 100644 --- a/arbor/cell_group_factory.cpp +++ b/arbor/cell_group_factory.cpp @@ -19,7 +19,7 @@ cell_group_ptr make_cell_group(Args&&... args) { return cell_group_ptr(new Impl(std::forward(args)...)); } -cell_group_factory cell_kind_implementation( +ARB_ARBOR_API cell_group_factory cell_kind_implementation( cell_kind ck, backend_kind bk, const execution_context& ctx) { using gid_vector = std::vector; diff --git a/arbor/cell_group_factory.hpp b/arbor/cell_group_factory.hpp index 7723d822b4..b8a321c423 100644 --- a/arbor/cell_group_factory.hpp +++ b/arbor/cell_group_factory.hpp @@ -10,6 +10,7 @@ #include #include +#include #include #include "cell_group.hpp" @@ -20,7 +21,7 @@ namespace arb { using cell_group_factory = std::function< cell_group_ptr(const std::vector&, const recipe&, cell_label_range& cg_sources, cell_label_range& cg_targets)>; -cell_group_factory cell_kind_implementation( +ARB_ARBOR_API cell_group_factory cell_kind_implementation( cell_kind, backend_kind, const execution_context&); inline bool cell_kind_supported( diff --git a/arbor/common_types_io.cpp b/arbor/common_types_io.cpp index 366ba114f8..9ade3cd041 100644 --- a/arbor/common_types_io.cpp +++ b/arbor/common_types_io.cpp @@ -4,21 +4,23 @@ namespace arb { -std::ostream& operator<<(std::ostream& o, lid_selection_policy policy) { +ARB_ARBOR_API std::ostream& operator<<(std::ostream& o, lid_selection_policy policy) { switch (policy) { case lid_selection_policy::round_robin: return o << "round_robin"; + case lid_selection_policy::round_robin_halt: + return o << "round_robin_halt"; case lid_selection_policy::assert_univalent: return o << "univalent"; } return o; } -std::ostream& operator<<(std::ostream& o, arb::cell_member_type m) { +ARB_ARBOR_API std::ostream& operator<<(std::ostream& o, arb::cell_member_type m) { return o << m.gid << ':' << m.index; } -std::ostream& operator<<(std::ostream& o, arb::cell_kind k) { +ARB_ARBOR_API std::ostream& operator<<(std::ostream& o, arb::cell_kind k) { o << "cell_kind::"; switch (k) { case arb::cell_kind::spike_source: @@ -33,7 +35,7 @@ std::ostream& operator<<(std::ostream& o, arb::cell_kind k) { return o; } -std::ostream& operator<<(std::ostream& o, arb::backend_kind k) { +ARB_ARBOR_API std::ostream& operator<<(std::ostream& o, arb::backend_kind k) { o << "backend_kind::"; switch (k) { case arb::backend_kind::multicore: diff --git a/arbor/communication/communicator.cpp b/arbor/communication/communicator.cpp index 9fa4a0d764..6f816bf738 100644 --- a/arbor/communication/communicator.cpp +++ b/arbor/communication/communicator.cpp @@ -26,15 +26,23 @@ communicator::communicator(const recipe& rec, const domain_decomposition& dom_dec, const label_resolution_map& source_resolution_map, const label_resolution_map& target_resolution_map, - execution_context& ctx) -{ - distributed_ = ctx.distributed; - thread_pool_ = ctx.thread_pool; + execution_context& ctx): num_total_cells_{rec.num_cells()}, + num_local_cells_{dom_dec.num_local_cells()}, + num_local_groups_{dom_dec.num_groups()}, + num_domains_{(cell_size_type) ctx.distributed->size()}, + distributed_{ctx.distributed}, + thread_pool_{ctx.thread_pool} { + update_connections(rec, dom_dec, source_resolution_map, target_resolution_map); +} - num_domains_ = distributed_->size(); - num_local_groups_ = dom_dec.num_groups(); - num_local_cells_ = dom_dec.num_local_cells(); - auto num_total_cells = rec.num_cells(); +void communicator::update_connections(const connectivity& rec, + const domain_decomposition& dom_dec, + const label_resolution_map& source_resolution_map, + const label_resolution_map& target_resolution_map) { + // Forget all lingering information + connections_.clear(); + connection_part_.clear(); + index_divisions_.clear(); // For caching information about each cell struct gid_info { @@ -81,10 +89,11 @@ communicator::communicator(const recipe& rec, for (const auto& cell: gid_infos) { for (auto c: cell.conns) { - if (c.source.gid >= num_total_cells) { - throw arb::bad_connection_source_gid(cell.gid, c.source.gid, num_total_cells); + auto sgid = c.source.gid; + if (sgid >= num_total_cells_) { + throw arb::bad_connection_source_gid(cell.gid, sgid, num_total_cells_); } - const auto src = dom_dec.gid_domain(c.source.gid); + const auto src = dom_dec.gid_domain(sgid); src_domains.push_back(src); src_counts[src]++; } @@ -95,17 +104,18 @@ communicator::communicator(const recipe& rec, // the connections as partitioned by the domain of their source gid. connections_.resize(n_cons); util::make_partition(connection_part_, src_counts); - auto offsets = connection_part_; - std::size_t pos = 0; + auto offsets = connection_part_; // Copy, as we use this as the list of current target indices to write into + auto src_domain = src_domains.begin(); auto target_resolver = resolver(&target_resolution_map); for (const auto& cell: gid_infos) { + auto index = cell.index_on_domain; auto source_resolver = resolver(&source_resolution_map); for (const auto& c: cell.conns) { - const auto i = offsets[src_domains[pos]]++; auto src_lid = source_resolver.resolve(c.source); auto tgt_lid = target_resolver.resolve({cell.gid, c.dest}); - connections_[i] = {{c.source.gid, src_lid}, tgt_lid, c.weight, c.delay, cell.index_on_domain}; - ++pos; + auto offset = offsets[*src_domain]++; + ++src_domain; + connections_[offset] = {{c.source.gid, src_lid}, tgt_lid, c.weight, c.delay, index}; } } @@ -119,9 +129,7 @@ communicator::communicator(const recipe& rec, // This is num_domains_ independent sorts, so it can be parallelized trivially. const auto& cp = connection_part_; threading::parallel_for::apply(0, num_domains_, thread_pool_.get(), - [&](cell_size_type i) { - util::sort(util::subrange_view(connections_, cp[i], cp[i+1])); - }); + [&](cell_size_type i) { util::sort(util::subrange_view(connections_, cp[i], cp[i+1])); }); } std::pair communicator::group_queue_range(cell_size_type i) { @@ -130,11 +138,9 @@ std::pair communicator::group_queue_range(cell_s } time_type communicator::min_delay() { - auto local_min = std::numeric_limits::max(); - for (auto& con : connections_) { - local_min = std::min(local_min, con.delay()); - } - + auto local_min = std::accumulate(connections_.begin(), connections_.end(), + std::numeric_limits::max(), + [](auto&& acc, auto&& el) { return std::min(acc, time_type(el.delay)); }); return distributed_->min(local_min); } @@ -153,29 +159,21 @@ gathered_vector communicator::exchange(std::vector local_spikes) { return global_spikes; } -void communicator::make_event_queues( - const gathered_vector& global_spikes, - std::vector& queues) -{ +void communicator::make_event_queues(const gathered_vector& global_spikes, + std::vector& queues) { arb_assert(queues.size()==num_local_cells_); - - using util::subrange_view; - using util::make_span; - using util::make_range; - + // Predicate for partitioning + struct spike_pred { + bool operator()(const spike& spk, const cell_member_type& src) { return spk.source < src; } + bool operator()(const cell_member_type& src, const spike& spk) { return src < spk.source; } + }; const auto& sp = global_spikes.partition(); const auto& cp = connection_part_; - for (auto dom: make_span(num_domains_)) { - auto cons = subrange_view(connections_, cp[dom], cp[dom+1]); - auto spks = subrange_view(global_spikes.values(), sp[dom], sp[dom+1]); - - struct spike_pred { - bool operator()(const spike& spk, const cell_member_type& src) - {return spk.sourcesource(), spike_pred()); - for (auto s: make_range(sources)) { - queues[cn->index_on_domain()].push_back(cn->make_event(s)); - } - + while (cn!=ce && sp!=se) { + auto& queue = queues[cn->index_on_domain]; + auto src = cn->source; + auto sources = std::equal_range(sp, se, src, spike_pred()); + for (auto s: util::make_range(sources)) queue.push_back(cn->make_event(s)); sp = sources.first; ++cn; } } else { - auto cn = cons.begin(); - auto sp = spks.begin(); - while (cn!=cons.end() && sp!=spks.end()) { - auto targets = std::equal_range(cn, cons.end(), sp->source); - for (auto c: make_range(targets)) { - queues[c.index_on_domain()].push_back(c.make_event(*sp)); - } - + while (cn!=ce && sp!=se) { + auto targets = std::equal_range(cn, ce, sp->source); + for (auto c: util::make_range(targets)) queues[c.index_on_domain].push_back(c.make_event(*sp)); cn = targets.first; ++sp; } @@ -218,6 +208,10 @@ std::uint64_t communicator::num_spikes() const { return num_spikes_; } +void communicator::set_num_spikes(std::uint64_t n) { + num_spikes_ = n; +} + cell_size_type communicator::num_local_cells() const { return num_local_cells_; } diff --git a/arbor/communication/communicator.hpp b/arbor/communication/communicator.hpp index 33e8f2f743..7a4becd3b1 100644 --- a/arbor/communication/communicator.hpp +++ b/arbor/communication/communicator.hpp @@ -2,6 +2,7 @@ #include +#include #include #include #include @@ -25,9 +26,9 @@ namespace arb { // to build the data structures required for efficient spike communication and // event generation. -class communicator { +class ARB_ARBOR_API communicator { public: - communicator() {} + communicator() = default; explicit communicator(const recipe& rec, const domain_decomposition& dom_dec, @@ -61,6 +62,7 @@ class communicator { /// Returns the total number of global spikes over the duration of the simulation std::uint64_t num_spikes() const; + void set_num_spikes(std::uint64_t n); cell_size_type num_local_cells() const; @@ -68,10 +70,16 @@ class communicator { void reset(); + void update_connections(const connectivity& rec, + const domain_decomposition& dom_dec, + const label_resolution_map& source_resolution_map, + const label_resolution_map& target_resolution_map); + private: - cell_size_type num_local_cells_; - cell_size_type num_local_groups_; - cell_size_type num_domains_; + cell_size_type num_total_cells_ = 0; + cell_size_type num_local_cells_ = 0; + cell_size_type num_local_groups_ = 0; + cell_size_type num_domains_ = 0; std::vector connections_; std::vector connection_part_; std::vector index_divisions_; diff --git a/arbor/communication/dry_run_context.cpp b/arbor/communication/dry_run_context.cpp index e3a12d28c1..fcfe4f9f56 100644 --- a/arbor/communication/dry_run_context.cpp +++ b/arbor/communication/dry_run_context.cpp @@ -130,7 +130,7 @@ struct dry_run_context_impl { unsigned num_cells_per_tile_; }; -std::shared_ptr make_dry_run_context(unsigned num_ranks, unsigned num_cells_per_tile) { +ARB_ARBOR_API std::shared_ptr make_dry_run_context(unsigned num_ranks, unsigned num_cells_per_tile) { return std::make_shared(dry_run_context_impl(num_ranks, num_cells_per_tile)); } diff --git a/arbor/communication/mpi.cpp b/arbor/communication/mpi.cpp index 92619e0504..1a8a911188 100644 --- a/arbor/communication/mpi.cpp +++ b/arbor/communication/mpi.cpp @@ -5,19 +5,19 @@ namespace arb { namespace mpi { -int rank(MPI_Comm comm) { +ARB_ARBOR_API int rank(MPI_Comm comm) { int r; MPI_OR_THROW(MPI_Comm_rank, comm, &r); return r; } -int size(MPI_Comm comm) { +ARB_ARBOR_API int size(MPI_Comm comm) { int s; MPI_OR_THROW(MPI_Comm_size, comm, &s); return s; } -void barrier(MPI_Comm comm) { +ARB_ARBOR_API void barrier(MPI_Comm comm) { MPI_OR_THROW(MPI_Barrier, comm); } diff --git a/arbor/communication/mpi.hpp b/arbor/communication/mpi.hpp index 7a3546ff1f..df3eaecb85 100644 --- a/arbor/communication/mpi.hpp +++ b/arbor/communication/mpi.hpp @@ -7,6 +7,7 @@ #include +#include #include #include @@ -19,9 +20,9 @@ namespace arb { namespace mpi { // prototypes -int rank(MPI_Comm); -int size(MPI_Comm); -void barrier(MPI_Comm); +ARB_ARBOR_API int rank(MPI_Comm); +ARB_ARBOR_API int size(MPI_Comm); +ARB_ARBOR_API void barrier(MPI_Comm); #define MPI_OR_THROW(fn, ...)\ while (int r_ = fn(__VA_ARGS__)) throw mpi_error(r_, #fn) diff --git a/arbor/communication/mpi_error.cpp b/arbor/communication/mpi_error.cpp index de511c2166..78ffed257f 100644 --- a/arbor/communication/mpi_error.cpp +++ b/arbor/communication/mpi_error.cpp @@ -4,7 +4,7 @@ namespace arb { -const mpi_error_category_impl& mpi_error_category() { +ARB_ARBOR_API const mpi_error_category_impl& mpi_error_category() { static mpi_error_category_impl the_category; return the_category; } diff --git a/arbor/connection.hpp b/arbor/connection.hpp index 0779fda646..7fab0162bf 100644 --- a/arbor/connection.hpp +++ b/arbor/connection.hpp @@ -15,52 +15,33 @@ class connection { float w, float d, cell_gid_type didx=cell_gid_type(-1)): - source_(src), - destination_(dest), - weight_(w), - delay_(d), - index_on_domain_(didx) + source(src), + destination(dest), + weight(w), + delay(d), + index_on_domain(didx) {} - float weight() const { return weight_; } - time_type delay() const { return delay_; } + spike_event make_event(const spike& s) { return { destination, s.time + delay, weight}; } - cell_member_type source() const { return source_; } - cell_lid_type destination() const { return destination_; } - cell_size_type index_on_domain() const { return index_on_domain_; } - - spike_event make_event(const spike& s) { - return {destination_, s.time + delay_, weight_}; - } - -private: - cell_member_type source_; - cell_lid_type destination_; - float weight_; - float delay_; - cell_size_type index_on_domain_; + cell_member_type source; + cell_lid_type destination; + float weight; + float delay; + cell_size_type index_on_domain; }; // connections are sorted by source id // these operators make for easy interopability with STL algorithms - -static inline bool operator<(const connection& lhs, const connection& rhs) { - return lhs.source() < rhs.source(); -} - -static inline bool operator<(const connection& lhs, cell_member_type rhs) { - return lhs.source() < rhs; -} - -static inline bool operator<(cell_member_type lhs, const connection& rhs) { - return lhs < rhs.source(); -} +static inline bool operator<(const connection& lhs, const connection& rhs) { return lhs.source < rhs.source; } +static inline bool operator<(const connection& lhs, cell_member_type rhs) { return lhs.source < rhs; } +static inline bool operator<(cell_member_type lhs, const connection& rhs) { return lhs < rhs.source; } } // namespace arb static inline std::ostream& operator<<(std::ostream& o, arb::connection const& con) { - return o << "con [" << con.source() << " -> " << con.destination() - << " : weight " << con.weight() - << ", delay " << con.delay() - << ", index " << con.index_on_domain() << "]"; + return o << "con [" << con.source << " -> " << con.destination + << " : weight " << con.weight + << ", delay " << con.delay + << ", index " << con.index_on_domain << "]"; } diff --git a/arbor/cv_policy.cpp b/arbor/cv_policy.cpp index 11135cf7b1..b2962c7fa4 100644 --- a/arbor/cv_policy.cpp +++ b/arbor/cv_policy.cpp @@ -44,7 +44,7 @@ struct cv_policy_plus_: cv_policy_base { cv_policy lhs_, rhs_; }; -cv_policy operator+(const cv_policy& lhs, const cv_policy& rhs) { +ARB_ARBOR_API cv_policy operator+(const cv_policy& lhs, const cv_policy& rhs) { return cv_policy_plus_(lhs, rhs); } @@ -70,7 +70,7 @@ struct cv_policy_bar_: cv_policy_base { cv_policy lhs_, rhs_; }; -cv_policy operator|(const cv_policy& lhs, const cv_policy& rhs) { +ARB_ARBOR_API cv_policy operator|(const cv_policy& lhs, const cv_policy& rhs) { return cv_policy_bar_(lhs, rhs); } diff --git a/arbor/distributed_context.hpp b/arbor/distributed_context.hpp index 2cea04e58f..58ca11c318 100644 --- a/arbor/distributed_context.hpp +++ b/arbor/distributed_context.hpp @@ -3,6 +3,7 @@ #include #include +#include #include #include @@ -236,7 +237,7 @@ distributed_context_handle make_local_context() { return std::make_shared(); } -distributed_context_handle make_dry_run_context(unsigned num_ranks, unsigned num_cells_per_rank); +ARB_ARBOR_API distributed_context_handle make_dry_run_context(unsigned num_ranks, unsigned num_cells_per_rank); // MPI context creation functions only provided if built with MPI support. template diff --git a/arbor/domain_decomposition.cpp b/arbor/domain_decomposition.cpp index 7a58d804d4..aa22082120 100644 --- a/arbor/domain_decomposition.cpp +++ b/arbor/domain_decomposition.cpp @@ -15,7 +15,7 @@ namespace arb { domain_decomposition::domain_decomposition( const recipe& rec, - const context& ctx, + context ctx, const std::vector& groups) { struct partition_gid_domain { @@ -33,8 +33,9 @@ domain_decomposition::domain_decomposition( std::unordered_map gid_map; }; - unsigned num_domains = ctx->distributed->size(); - int domain_id = ctx->distributed->id(); + const auto* dist = ctx->distributed.get(); + unsigned num_domains = dist->size(); + int domain_id = dist->id(); cell_size_type num_global_cells = rec.num_cells(); const bool has_gpu = ctx->gpu->has_gpu(); @@ -62,7 +63,7 @@ domain_decomposition::domain_decomposition( } cell_size_type num_local_cells = local_gids.size(); - auto global_gids = ctx->distributed->gather_gids(local_gids); + auto global_gids = dist->gather_gids(local_gids); if (global_gids.size() != num_global_cells) { throw invalid_sum_local_cells(global_gids.size(), num_global_cells); } diff --git a/arbor/event_binner.hpp b/arbor/event_binner.hpp index 7d12526457..fbec4cb5c4 100644 --- a/arbor/event_binner.hpp +++ b/arbor/event_binner.hpp @@ -4,12 +4,13 @@ #include #include +#include #include #include namespace arb { -class event_binner { +class ARB_ARBOR_API event_binner { public: event_binner(): policy_(binning_kind::none), bin_interval_(0) {} diff --git a/arbor/event_queue.hpp b/arbor/event_queue.hpp index 59885b4361..5e314f8d96 100644 --- a/arbor/event_queue.hpp +++ b/arbor/event_queue.hpp @@ -27,7 +27,7 @@ class event_queue { using value_type = Event; using event_time_type = ::arb::event_time_type; - event_queue() {} + event_queue() = default; void push(const value_type& e) { queue_.push(e); diff --git a/arbor/execution_context.cpp b/arbor/execution_context.cpp index 3e4cd629c3..4b555f1c29 100644 --- a/arbor/execution_context.cpp +++ b/arbor/execution_context.cpp @@ -14,10 +14,6 @@ namespace arb { -void execution_context_deleter::operator()(execution_context* p) const { - delete p; -} - execution_context::execution_context(const proc_allocation& resources): distributed(make_local_context()), thread_pool(std::make_shared(resources.num_threads)), @@ -25,8 +21,8 @@ execution_context::execution_context(const proc_allocation& resources): : std::make_shared()) {} -context make_context(const proc_allocation& p) { - return context(new execution_context(p)); +ARB_ARBOR_API context make_context(const proc_allocation& p) { + return std::make_shared(p); } #ifdef ARB_HAVE_MPI @@ -39,8 +35,8 @@ execution_context::execution_context(const proc_allocation& resources, MPI_Comm {} template <> -context make_context(const proc_allocation& p, MPI_Comm comm) { - return context(new execution_context(p, comm)); +ARB_ARBOR_API context make_context(const proc_allocation& p, MPI_Comm comm) { + return std::make_shared(p, comm); } #endif template <> @@ -54,31 +50,31 @@ execution_context::execution_context( {} template <> -context make_context(const proc_allocation& p, dry_run_info d) { - return context(new execution_context(p, d)); +ARB_ARBOR_API context make_context(const proc_allocation& p, dry_run_info d) { + return std::make_shared(p, d); } -std::string distribution_type(const context& ctx) { +ARB_ARBOR_API std::string distribution_type(context ctx) { return ctx->distributed->name(); } -bool has_gpu(const context& ctx) { +ARB_ARBOR_API bool has_gpu(context ctx) { return ctx->gpu->has_gpu(); } -unsigned num_threads(const context& ctx) { +ARB_ARBOR_API unsigned num_threads(context ctx) { return ctx->thread_pool->get_num_threads(); } -unsigned num_ranks(const context& ctx) { +ARB_ARBOR_API unsigned num_ranks(context ctx) { return ctx->distributed->size(); } -unsigned rank(const context& ctx) { +ARB_ARBOR_API unsigned rank(context ctx) { return ctx->distributed->id(); } -bool has_mpi(const context& ctx) { +ARB_ARBOR_API bool has_mpi(context ctx) { return ctx->distributed->name() == "MPI"; } diff --git a/arbor/execution_context.hpp b/arbor/execution_context.hpp index 79935f75fa..0035e39d69 100644 --- a/arbor/execution_context.hpp +++ b/arbor/execution_context.hpp @@ -2,6 +2,7 @@ #include +#include #include #include "distributed_context.hpp" @@ -19,7 +20,7 @@ namespace arb { // execution_context, to hide implementation details of the // container and its constituent contexts from the public API. -struct execution_context { +struct ARB_ARBOR_API execution_context { distributed_context_handle distributed; task_system_handle thread_pool; gpu_context_handle gpu; diff --git a/arbor/fvm_layout.cpp b/arbor/fvm_layout.cpp index f574615c67..b68bf7e513 100644 --- a/arbor/fvm_layout.cpp +++ b/arbor/fvm_layout.cpp @@ -3,15 +3,21 @@ #include #include #include +#include #include +#include +#include #include #include +#include #include #include #include #include +#include + #include "fvm_layout.hpp" #include "threading/threading.hpp" #include "util/maputil.hpp" @@ -22,6 +28,7 @@ #include "util/rangeutil.hpp" #include "util/transform.hpp" #include "util/unique.hpp" +#include "util/strprintf.hpp" namespace arb { @@ -90,7 +97,7 @@ cv_geometry::cv_geometry(const cable_cell& cell, const locset& ls): // Build location query map. auto n_cv = cv_parent.size(); branch_cv_map.resize(1); - std::vector>& bmap = branch_cv_map.back(); + std::vector>& bmap = branch_cv_map.back(); for (auto cv: util::make_span(n_cv)) { for (auto cable: cables(cv)) { if (cable.branch>=bmap.size()) { @@ -102,10 +109,10 @@ cv_geometry::cv_geometry(const cable_cell& cell, const locset& ls): } } cv_to_cell.assign(n_cv, 0); - cell_cv_divs = {0, (fvm_index_type)n_cv}; + cell_cv_divs = {0, (arb_index_type)n_cv}; } -fvm_size_type cv_geometry::location_cv(size_type cell_idx, mlocation loc, cv_prefer::type prefer) const { +arb_size_type cv_geometry::location_cv(size_type cell_idx, const mlocation& loc, cv_prefer::type prefer) const { auto& pw_cv_offset = branch_cv_map.at(cell_idx).at(loc.branch); auto zero_extent = [&pw_cv_offset](auto j) { return pw_cv_offset.extent(j).first==pw_cv_offset.extent(j).second; @@ -170,7 +177,7 @@ namespace impl { // Merge CV geometry lists in-place. -cv_geometry& append(cv_geometry& geom, const cv_geometry& right) { +ARB_ARBOR_API cv_geometry& append(cv_geometry& geom, const cv_geometry& right) { using util::append; using impl::tail; using impl::append_offset; @@ -204,11 +211,28 @@ cv_geometry& append(cv_geometry& geom, const cv_geometry& right) { // Combine two fvm_cv_geometry groups in-place. -fvm_cv_discretization& append(fvm_cv_discretization& dczn, const fvm_cv_discretization& right) { +ARB_ARBOR_API fvm_cv_discretization& append(fvm_cv_discretization& dczn, const fvm_cv_discretization& right) { using util::append; append(dczn.geometry, right.geometry); + // Those in L and R: merge + for (auto& [ion, data]: dczn.diffusive_ions) { + const auto& rhs = right.diffusive_ions.find(ion); + if (rhs != right.diffusive_ions.end()) { + append(data.axial_inv_diffusivity, rhs->second.axial_inv_diffusivity); + append(data.face_diffusivity, rhs->second.face_diffusivity); + } + } + // Those only in R: add to L + for (auto& [ion, data]: right.diffusive_ions) { + const auto& lhs = dczn.diffusive_ions.find(ion); + if (lhs == dczn.diffusive_ions.end()) { + dczn.diffusive_ions[ion].axial_inv_diffusivity = data.axial_inv_diffusivity; + dczn.diffusive_ions[ion].face_diffusivity = data.face_diffusivity; + } + } + append(dczn.face_conductance, right.face_conductance); append(dczn.cv_area, right.cv_area); append(dczn.cv_capacitance, right.cv_capacitance); @@ -224,7 +248,7 @@ fvm_cv_discretization& append(fvm_cv_discretization& dczn, const fvm_cv_discreti // FVM discretization // ------------------ -fvm_cv_discretization fvm_cv_discretize(const cable_cell& cell, const cable_cell_parameter_set& global_dflt) { +ARB_ARBOR_API fvm_cv_discretization fvm_cv_discretize(const cable_cell& cell, const cable_cell_parameter_set& global_dflt) { const auto& dflt = cell.default_parameters(); fvm_cv_discretization D; @@ -248,32 +272,95 @@ fvm_cv_discretization fvm_cv_discretize(const cable_cell& cell, const cable_cell double dflt_potential = *(dflt.init_membrane_potential | global_dflt.init_membrane_potential); double dflt_temperature = *(dflt.temperature_K | global_dflt.temperature_K); + const auto& assignments = cell.region_assignments(); + const auto& resistivity = assignments.get(); + const auto& capacitance = assignments.get(); + const auto& potential = assignments.get(); + const auto& temperature = assignments.get(); + const auto& diffusivity = assignments.get(); + + // Set up for ion diffusivity + std::unordered_map> inverse_diffusivity; + std::unordered_map diffusive_ions; + + // Collect all eglible ions: those where any cable has finite diffusivity + for (const auto& [ion, data]: global_dflt.ion_data) { + if (data.diffusivity.value_or(0.0) != 0.0) { + diffusive_ions[ion] = {}; + } + } + for (const auto& [ion, data]: dflt.ion_data) { + if (data.diffusivity.value_or(0.0) != 0.0) { + diffusive_ions[ion] = {}; + } + } + for (const auto& [ion, data]: diffusivity) { + auto diffusive = std::any_of(data.begin(), + data.end(), + [](const auto& kv) { return kv.second.value != 0.0; }); + if (diffusive) { + diffusive_ions[ion] = {}; + } + } + + // Remap diffusivity to resistivity + for (auto& [ion, data]: diffusive_ions) { + auto& id_map = inverse_diffusivity[ion]; + // Treat specific assignments + if (auto map = diffusivity.find(ion); map != diffusivity.end()) { + for (const auto& [k, v]: map->second) { + if (v.value <= 0.0) { + throw cable_cell_error{util::pprintf("Illegal diffusivity '{}' for ion '{}' at '{}'.", v.value, ion, k)}; + } + id_map.insert(k, 1.0/v.value); + } + } + // Fetch defaults, either global or per cell + auto gd = *(value_by_key(dflt.ion_data, ion).value().diffusivity + | value_by_key(global_dflt.ion_data, ion).value().diffusivity); + if (gd <= 0.0) { + throw cable_cell_error{util::pprintf("Illegal global diffusivity '{}' for ion '{}'.", gd, ion)}; + } + + // Write inverse diffusivity / diffuse resistivity map + auto& id = data.axial_inv_diffusivity; + id.resize(1); + msize_t n_branch = D.geometry.n_branch(0); + id.reserve(n_branch); + for (msize_t i = 0; i(), - mcable{i, 0., 1.}, dflt_resistivity)); + ax_res_0.emplace_back(pw_over_cable(resistivity, mcable{i, 0., 1.}, dflt_resistivity)); } const auto& embedding = cell.embedding(); for (auto i: count_along(D.geometry.cv_parent)) { auto cv_cables = D.geometry.cables(i); - - // Computing face_conductance: + // Computing face_conductance and face_diffusivity // // Flux between adjacent CVs is computed as if there were no membrane currents, and with the CV voltage // values taken to be exact at a reference point in each CV: // * If the CV is unbranched, the reference point is taken to be the CV midpoint. // * If the CV is branched, the reference point is taken to be closest branch point to // the interface between the two CVs. - D.face_conductance[i] = 0; + for (auto& [ion, info]: diffusive_ions) { + info.face_diffusivity[i] = 0.0; + } - fvm_index_type p = D.geometry.cv_parent[i]; + arb_index_type p = D.geometry.cv_parent[i]; if (p!=-1) { auto parent_cables = D.geometry.cables(p); - msize_t bid = cv_cables.front().branch; double parent_refpt = 0; double cv_refpt = 1; @@ -294,6 +381,10 @@ fvm_cv_discretization fvm_cv_discretize(const cable_cell& cell, const cable_cell mcable span{bid, parent_refpt, cv_refpt}; double resistance = embedding.integrate_ixa(span, D.axial_resistivity[0].at(bid)); D.face_conductance[i] = 100/resistance; // 100 scales to µS. + for (auto& [ion, info]: diffusive_ions) { + double resistance = embedding.integrate_ixa(span, info.axial_inv_diffusivity[0].at(bid)); + info.face_diffusivity[i] = 1.0/resistance; // scale to m^2/s + } } D.cv_area[i] = 0; @@ -303,28 +394,24 @@ fvm_cv_discretization fvm_cv_discretize(const cable_cell& cell, const cable_cell double cv_length = 0; for (mcable c: cv_cables) { - D.cv_area[i] += embedding.integrate_area(c); - - D.cv_capacitance[i] += embedding.integrate_area(c.branch, - pw_over_cable(cell.region_assignments().get(), c, dflt_capacitance)); - - D.init_membrane_potential[i] += embedding.integrate_area(c.branch, - pw_over_cable(cell.region_assignments().get(), c, dflt_potential)); - - D.temperature_K[i] += embedding.integrate_area(c.branch, - pw_over_cable(cell.region_assignments().get(), c, dflt_temperature)); - + D.cv_area[i] += embedding.integrate_area(c); + D.cv_capacitance[i] += embedding.integrate_area(c.branch, pw_over_cable(capacitance, c, dflt_capacitance)); + D.init_membrane_potential[i] += embedding.integrate_area(c.branch, pw_over_cable(potential, c, dflt_potential)); + D.temperature_K[i] += embedding.integrate_area(c.branch, pw_over_cable(temperature, c, dflt_temperature)); cv_length += embedding.integrate_length(c); } if (D.cv_area[i]>0) { - D.init_membrane_potential[i] /= D.cv_area[i]; - D.temperature_K[i] /= D.cv_area[i]; + auto A = D.cv_area[i]; + D.init_membrane_potential[i] /= A; + D.temperature_K[i] /= A; + for (auto& [ion, info]: diffusive_ions) { + info.face_diffusivity[i] /= A; + } // If parent is trivial, and there is no grandparent, then we can use values from this CV // to get initial values for the parent. (The other case, when there is a grandparent, is // caught below.) - if (p!=-1 && D.geometry.cv_parent[p]==-1 && D.cv_area[p]==0) { D.init_membrane_potential[p] = D.init_membrane_potential[i]; D.temperature_K[p] = D.temperature_K[i]; @@ -332,7 +419,6 @@ fvm_cv_discretization fvm_cv_discretize(const cable_cell& cell, const cable_cell } else if (p!=-1) { // Use parent CV to get a sensible initial value for voltage and temp on zero-size CVs. - D.init_membrane_potential[i] = D.init_membrane_potential[p]; D.temperature_K[i] = D.temperature_K[p]; } @@ -342,10 +428,11 @@ fvm_cv_discretization fvm_cv_discretize(const cable_cell& cell, const cable_cell } } + D.diffusive_ions = std::move(diffusive_ions); return D; } -fvm_cv_discretization fvm_cv_discretize(const std::vector& cells, +ARB_ARBOR_API fvm_cv_discretization fvm_cv_discretize(const std::vector& cells, const cable_cell_parameter_set& global_defaults, const arb::execution_context& ctx) { @@ -378,7 +465,7 @@ fvm_cv_discretization fvm_cv_discretize(const std::vector& cells, // site. struct voltage_reference { - fvm_index_type cv = -1; + arb_index_type cv = -1; mlocation loc; }; @@ -388,7 +475,7 @@ struct voltage_reference_pair { }; // Collection of other locations that are coincident under projection. -std::vector coincident_locations(const morphology& m, mlocation x) { +std::vector coincident_locations(const morphology& m, const mlocation& x) { std::vector result; if (x.pos==0) { msize_t parent_bid = m.branch_parent(x.branch); @@ -411,7 +498,7 @@ std::vector coincident_locations(const morphology& m, mlocation x) { // Test if location intersects (sorted) sequence of cables. template -bool cables_intersect_location(Seq&& cables, mlocation x) { +bool cables_intersect_location(Seq&& cables, const mlocation& x) { struct cmp_branch { bool operator()(const mcable& c, msize_t bid) const { return c.branch fvm_build_gap_junction_cv_map( +ARB_ARBOR_API std::unordered_map fvm_build_gap_junction_cv_map( const std::vector& cells, const std::vector& gids, const fvm_cv_discretization& D) { arb_assert(cells.size() == gids.size()); - std::unordered_map gj_cvs; + std::unordered_map gj_cvs; for (auto cell_idx: util::make_span(0, cells.size())) { for (const auto& mech : cells[cell_idx].junctions()) { for (const auto& gj: mech.second) { @@ -670,10 +761,10 @@ std::unordered_map fvm_build_gap_junction_cv_ma return gj_cvs; } -std::unordered_map> fvm_resolve_gj_connections( +ARB_ARBOR_API std::unordered_map> fvm_resolve_gj_connections( const std::vector& gids, const cell_label_range& gj_data, - const std::unordered_map& gj_cvs, + const std::unordered_map& gj_cvs, const recipe& rec) { // Construct and resolve all gj_connections. @@ -703,9 +794,9 @@ fvm_mechanism_data fvm_build_mechanism_data( const cable_cell& cell, const std::vector& gj_conns, const fvm_cv_discretization& D, - fvm_size_type cell_idx); + arb_size_type cell_idx); -fvm_mechanism_data fvm_build_mechanism_data( +ARB_ARBOR_API fvm_mechanism_data fvm_build_mechanism_data( const cable_cell_global_properties& gprop, const std::vector& cells, const std::vector& gids, @@ -732,11 +823,11 @@ fvm_mechanism_data fvm_build_mechanism_data( const cable_cell& cell, const std::vector& gj_conns, const fvm_cv_discretization& D, - fvm_size_type cell_idx) + arb_size_type cell_idx) { - using size_type = fvm_size_type; - using index_type = fvm_index_type; - using value_type = fvm_value_type; + using size_type = arb_size_type; + using index_type = arb_index_type; + using value_type = arb_value_type; const mechanism_catalogue& catalogue = gprop.catalogue; const auto& embedding = cell.embedding(); @@ -744,10 +835,15 @@ fvm_mechanism_data fvm_build_mechanism_data( const auto& global_dflt = gprop.default_parameters; const auto& dflt = cell.default_parameters(); + std::unordered_set write_xi; + std::unordered_set write_xo; + fvm_mechanism_data M; + const auto& assignments = cell.region_assignments(); + // Verify mechanism ion usage, parameter values. - auto verify_mechanism = [&gprop](const mechanism_info& info, const mechanism_desc& desc) { + auto verify_mechanism = [&gprop, &D](const mechanism_info& info, const mechanism_desc& desc) { const auto& global_ions = gprop.ion_species; for (const auto& pv: desc.values()) { @@ -759,30 +855,40 @@ fvm_mechanism_data fvm_build_mechanism_data( } } - for (const auto& ion: info.ions) { - const auto& ion_name = ion.first; - const auto& ion_dep = ion.second; - - if (!global_ions.count(ion_name)) { + for (const auto& [ion, dep]: info.ions) { + if (!global_ions.count(ion)) { throw cable_cell_error( - "mechanism "+desc.name()+" uses ion "+ion_name+ " which is missing in global properties"); + "mechanism "+desc.name()+" uses ion "+ion+ " which is missing in global properties"); } - if (ion_dep.verify_ion_charge) { - if (ion_dep.expected_ion_charge!=global_ions.at(ion_name)) { + if (dep.verify_ion_charge) { + if (dep.expected_ion_charge!=global_ions.at(ion)) { throw cable_cell_error( - "mechanism "+desc.name()+" uses ion "+ion_name+ " expecting a different valence"); + "mechanism "+desc.name()+" uses ion "+ion+ " expecting a different valence"); } } - if (ion_dep.write_reversal_potential && (ion_dep.write_concentration_int || ion_dep.write_concentration_ext)) { + if (dep.write_reversal_potential && (dep.write_concentration_int || dep.write_concentration_ext)) { throw cable_cell_error("mechanism "+desc.name()+" writes both reversal potential and concentration"); } + + auto is_diffusive = D.diffusive_ions.count(ion); + if (dep.access_concentration_diff && !is_diffusive) { + throw illegal_diffusive_mechanism(desc.name(), ion); + } } }; // Track ion usage of mechanisms so that ions are only instantiated where required. std::unordered_map> ion_support; + + // add diffusive ions to support: If diffusive, it's everywhere. + for (const auto& [ion, data]: D.diffusive_ions) { + auto& s = ion_support[ion]; + s.resize(D.geometry.size()); + std::iota(s.begin(), s.end(), 0); + } + auto update_ion_support = [&ion_support](const mechanism_info& info, const std::vector& cvs) { arb_assert(util::is_sorted(cvs)); @@ -794,16 +900,15 @@ fvm_mechanism_data fvm_build_mechanism_data( std::unordered_map> init_iconc_mask; std::unordered_map> init_econc_mask; + iexpr_ptr unit_scale = thingify(iexpr::scalar(1.0), cell.provider()); // Density mechanisms: - - for (const auto& entry: cell.region_assignments().get()) { - const std::string& name = entry.first; + for (const auto& [name, cables]: assignments.get()) { mechanism_info info = catalogue[name]; fvm_mechanism_config config; if (info.kind != arb_mechanism_kind_density) { - throw cable_cell_error("expected density mechanism, got " +name +" which has " +arb_mechsnism_kind_str(info.kind)); + throw cable_cell_error("expected density mechanism, got " +name +" which has " +arb_mechanism_kind_str(info.kind)); } config.kind = arb_mechanism_kind_density; @@ -823,20 +928,23 @@ fvm_mechanism_data fvm_build_mechanism_data( } mcable_map support; - std::vector> param_maps; + std::vector>> param_maps; param_maps.resize(n_param); - for (auto& on_cable: entry.second) { - const auto& mech = on_cable.second.mech; + for (const auto& [cable, density_iexpr]: cables) { + const auto& mech = density_iexpr.first.mech; + const auto& scale_expr = density_iexpr.second; + verify_mechanism(info, mech); - mcable cable = on_cable.first; const auto& set_params = mech.values(); support.insert(cable, 1.); for (std::size_t i = 0; isecond}); } } @@ -852,7 +960,12 @@ fvm_mechanism_data fvm_build_mechanism_data( area += area_on_cable; for (std::size_t i = 0; ieval(cell.provider(), c); + })); } } @@ -867,18 +980,20 @@ fvm_mechanism_data fvm_build_mechanism_data( } } - for (const auto& iondep: info.ions) { - if (iondep.second.write_concentration_int) { + for (const auto& [ion, dep]: info.ions) { + if (dep.write_concentration_int) { + write_xi.insert(ion); for (auto c: support) { - bool ok = init_iconc_mask[iondep.first].insert(c.first, 0.); + bool ok = init_iconc_mask[ion].insert(c.first, 0.); if (!ok) { throw cable_cell_error("overlapping ion concentration writing mechanism "+name); } } } - if (iondep.second.write_concentration_ext) { + if (dep.write_concentration_ext) { + write_xo.insert(ion); for (auto c: support) { - bool ok = init_econc_mask[iondep.first].insert(c.first, 0.); + bool ok = init_econc_mask[ion].insert(c.first, 0.); if (!ok) { throw cable_cell_error("overlapping ion concentration writing mechanism "+name); } @@ -911,7 +1026,7 @@ fvm_mechanism_data fvm_build_mechanism_data( mechanism_info info = catalogue[name]; if (info.kind != arb_mechanism_kind_point) { - throw cable_cell_error("expected point mechanism, got " +name +" which has " +arb_mechsnism_kind_str(info.kind)); + throw cable_cell_error("expected point mechanism, got " +name +" which has " +arb_mechanism_kind_str(info.kind)); } post_events |= info.post_events; @@ -993,7 +1108,7 @@ fvm_mechanism_data fvm_build_mechanism_data( return a.target_index(); + auto initial_econc_map = assignments.get(); + auto initial_rvpot_map = assignments.get(); - auto initial_iconc_map = cell.region_assignments().get(); - auto initial_econc_map = cell.region_assignments().get(); - auto initial_rvpot_map = cell.region_assignments().get(); - - for (const auto& ion_cvs: ion_support) { - const std::string& ion = ion_cvs.first; - + for (const auto& [ion, cvs]: ion_support) { fvm_ion_config config; - config.cv = ion_cvs.second; + config.cv = cvs; auto n_cv = config.cv.size(); config.init_iconc.resize(n_cv); config.init_econc.resize(n_cv); + config.init_revpot.resize(n_cv); config.reset_iconc.resize(n_cv); config.reset_econc.resize(n_cv); - config.init_revpot.resize(n_cv); auto global_ion_data = value_by_key(global_dflt.ion_data, ion).value(); auto dflt_iconc = global_ion_data.init_int_concentration.value(); @@ -1188,14 +1319,15 @@ fvm_mechanism_data fvm_build_mechanism_data( auto dflt_rvpot = global_ion_data.init_reversal_potential.value(); if (auto ion_data = value_by_key(dflt.ion_data, ion)) { - dflt_iconc = ion_data.value().init_int_concentration.value_or(dflt_iconc); - dflt_econc = ion_data.value().init_ext_concentration.value_or(dflt_econc); - dflt_rvpot = ion_data.value().init_reversal_potential.value_or(dflt_rvpot); + auto val = ion_data.value(); + dflt_iconc = val.init_int_concentration.value_or(dflt_iconc); + dflt_econc = val.init_ext_concentration.value_or(dflt_econc); + dflt_rvpot = val.init_reversal_potential.value_or(dflt_rvpot); } - const mcable_map& iconc_on_cable = initial_iconc_map[ion]; - const mcable_map& econc_on_cable = initial_econc_map[ion]; - const mcable_map& rvpot_on_cable = initial_rvpot_map[ion]; + const auto& iconc_on_cable = initial_iconc_map[ion]; + const auto& econc_on_cable = initial_econc_map[ion]; + const auto& rvpot_on_cable = initial_rvpot_map[ion]; auto pw_times = [](const pw_elements& pwa, const pw_elements& pwb) { return pw_zip_with(pwa, pwb, [](std::pair, double a, double b) { return a*b; }); @@ -1205,7 +1337,8 @@ fvm_mechanism_data fvm_build_mechanism_data( auto cv = config.cv[i]; if (D.cv_area[cv]==0) continue; - for (mcable c: D.geometry.cables(cv)) { + const auto& cv_cables = D.geometry.cables(cv); + for (const mcable c: cv_cables) { auto iconc = pw_over_cable(iconc_on_cable, c, dflt_iconc); auto econc = pw_over_cable(econc_on_cable, c, dflt_econc); auto rvpot = pw_over_cable(rvpot_on_cable, c, dflt_rvpot); @@ -1221,14 +1354,22 @@ fvm_mechanism_data fvm_build_mechanism_data( config.init_econc[i] += embedding.integrate_area(c.branch, econc_masked); } + // Scale all by area double oo_cv_area = 1./D.cv_area[cv]; config.reset_iconc[i] *= oo_cv_area; config.reset_econc[i] *= oo_cv_area; config.init_revpot[i] *= oo_cv_area; - config.init_iconc[i] *= oo_cv_area; - config.init_econc[i] *= oo_cv_area; + config.init_iconc[i] *= oo_cv_area; + config.init_econc[i] *= oo_cv_area; } + if (auto di = D.diffusive_ions.find(ion); di != D.diffusive_ions.end()) { + config.is_diffusive = true; + config.face_diffusivity = di->second.face_diffusivity; + } + + config.econc_written = write_xo.count(ion); + config.iconc_written = write_xi.count(ion); if (!config.cv.empty()) M.ions[ion] = std::move(config); } @@ -1242,26 +1383,26 @@ fvm_mechanism_data fvm_build_mechanism_data( const mechanism_desc& revpot = *maybe_revpot; mechanism_info info = catalogue[revpot.name()]; if (info.kind != arb_mechanism_kind_reversal_potential) { - throw cable_cell_error("expected reversal potential mechanism for ion " +ion +", got "+ revpot.name() +" which has " +arb_mechsnism_kind_str(info.kind)); + throw cable_cell_error("expected reversal potential mechanism for ion " +ion +", got "+ revpot.name() +" which has " +arb_mechanism_kind_str(info.kind)); } verify_mechanism(info, revpot); revpot_specified.insert(ion); bool writes_this_revpot = false; - for (auto& iondep: info.ions) { - if (iondep.second.write_reversal_potential) { - if (revpot_tbl.count(iondep.first)) { - auto& existing_revpot_desc = revpot_tbl.at(iondep.first); + for (auto& [name, info]: info.ions) { + if (info.write_reversal_potential) { + if (revpot_tbl.count(name)) { + auto& existing_revpot_desc = revpot_tbl.at(name); if (existing_revpot_desc.name() != revpot.name() || existing_revpot_desc.values() != revpot.values()) { throw cable_cell_error("inconsistent revpot ion assignment for mechanism "+revpot.name()); } } else { - revpot_tbl[iondep.first] = revpot; + revpot_tbl[name] = revpot; } - writes_this_revpot |= iondep.first==ion; + writes_this_revpot |= name==ion; } } @@ -1269,6 +1410,8 @@ fvm_mechanism_data fvm_build_mechanism_data( throw cable_cell_error("revpot mechanism for ion "+ion+" does not write this reversal potential"); } + M.ions[ion].revpot_written = true; + // Only instantiate if the ion is used. if (M.ions.count(ion)) { // Revpot mechanism already configured? Add cvs for this ion too. @@ -1305,7 +1448,6 @@ fvm_mechanism_data fvm_build_mechanism_data( } } } - // Confirm that all ions written to by a revpot have a corresponding entry in a reversal_potential_method table. for (auto& kv: revpot_tbl) { if (!revpot_specified.count(kv.first)) { diff --git a/arbor/fvm_layout.hpp b/arbor/fvm_layout.hpp index 7d178dc611..d80575f55f 100644 --- a/arbor/fvm_layout.hpp +++ b/arbor/fvm_layout.hpp @@ -4,6 +4,7 @@ #include #include +#include #include #include #include @@ -55,11 +56,11 @@ namespace cv_prefer { }; } -struct cv_geometry: public cell_cv_data_impl { +struct ARB_ARBOR_API cv_geometry: public cell_cv_data_impl { using base = cell_cv_data_impl; - using size_type = fvm_size_type; - using index_type = fvm_index_type; + using size_type = arb_size_type; + using index_type = arb_index_type; std::vector cv_to_cell; // Maps CV index to cell index. std::vector cell_cv_divs; // Partitions CV indices by cell. @@ -112,14 +113,14 @@ struct cv_geometry: public cell_cv_data_impl { return branch_cv_map.at(cell_idx).size(); } - size_type location_cv(size_type cell_idx, mlocation loc, cv_prefer::type prefer) const; + size_type location_cv(size_type cell_idx, const mlocation& loc, cv_prefer::type prefer) const; cv_geometry(const cable_cell& cell, const locset& ls); }; // Combine two cv_geometry groups in-place. // (Returns reference to first argument.) -cv_geometry& append(cv_geometry&, const cv_geometry&); +ARB_ARBOR_API cv_geometry& append(cv_geometry&, const cv_geometry&); // Discretization of morphologies and physical properties. Contains cv_geometry // as above. @@ -136,10 +137,16 @@ cv_geometry& append(cv_geometry&, const cv_geometry&); // to the CV, or in the absence of any internal forks, is exact at the // midpoint of an unbranched CV. +struct fvm_diffusion_info { + using value_type = arb_value_type; + std::vector face_diffusivity; + std::vector> axial_inv_diffusivity; +}; + struct fvm_cv_discretization { - using size_type = fvm_size_type; - using index_type = fvm_index_type; - using value_type = fvm_value_type; + using size_type = arb_size_type; + using index_type = arb_index_type; + using value_type = arb_value_type; cv_geometry geometry; @@ -157,15 +164,18 @@ struct fvm_cv_discretization { // For each cell, one piece-wise constant value per branch. std::vector> axial_resistivity; // [Ω·cm] + + // For each diffusive ion species, their properties + std::unordered_map diffusive_ions; }; // Combine two fvm_cv_geometry groups in-place. // (Returns reference to first argument.) -fvm_cv_discretization& append(fvm_cv_discretization&, const fvm_cv_discretization&); +ARB_ARBOR_API fvm_cv_discretization& append(fvm_cv_discretization&, const fvm_cv_discretization&); // Construct fvm_cv_discretization from one or more cells. -fvm_cv_discretization fvm_cv_discretize(const cable_cell& cell, const cable_cell_parameter_set& global_dflt); -fvm_cv_discretization fvm_cv_discretize(const std::vector& cells, const cable_cell_parameter_set& global_defaults, const arb::execution_context& ctx={}); +ARB_ARBOR_API fvm_cv_discretization fvm_cv_discretize(const cable_cell& cell, const cable_cell_parameter_set& global_dflt); +ARB_ARBOR_API fvm_cv_discretization fvm_cv_discretize(const std::vector& cells, const cable_cell_parameter_set& global_defaults, const arb::execution_context& ctx={}); // Interpolant data for voltage, axial current probes. @@ -174,22 +184,22 @@ fvm_cv_discretization fvm_cv_discretize(const std::vector& cells, co // interpolation) or the parent of the distal CV. struct fvm_voltage_interpolant { - fvm_index_type proximal_cv, distal_cv; - fvm_value_type proximal_coef, distal_coef; + arb_index_type proximal_cv, distal_cv; + arb_value_type proximal_coef, distal_coef; }; // Interpolated membrane voltage. -fvm_voltage_interpolant fvm_interpolate_voltage(const cable_cell& cell, const fvm_cv_discretization& D, fvm_size_type cell_idx, mlocation site); +ARB_ARBOR_API fvm_voltage_interpolant fvm_interpolate_voltage(const cable_cell& cell, const fvm_cv_discretization& D, arb_size_type cell_idx, const mlocation& site); // Axial current as linear combiantion of voltages. -fvm_voltage_interpolant fvm_axial_current(const cable_cell& cell, const fvm_cv_discretization& D, fvm_size_type cell_idx, mlocation site); +ARB_ARBOR_API fvm_voltage_interpolant fvm_axial_current(const cable_cell& cell, const fvm_cv_discretization& D, arb_size_type cell_idx, const mlocation& site); // Post-discretization data for point and density mechanism instantiation. struct fvm_mechanism_config { - using value_type = fvm_value_type; - using index_type = fvm_index_type; + using value_type = arb_value_type; + using index_type = arb_index_type; arb_mechanism_kind kind; @@ -220,8 +230,13 @@ struct fvm_mechanism_config { // Post-discretization data for ion channel state. struct fvm_ion_config { - using value_type = fvm_value_type; - using index_type = fvm_index_type; + using value_type = arb_value_type; + using index_type = arb_index_type; + + // Keep track whether eX, Xi, Xo are actually to be reset. + bool revpot_written = false; + bool iconc_written = false; + bool econc_written = false; // Ordered CV indices where ion must be present. std::vector cv; @@ -236,11 +251,15 @@ struct fvm_ion_config { // Ion-specific (initial) reversal potential per CV. std::vector init_revpot; + + // diffusivity + bool is_diffusive = false; + std::vector face_diffusivity; }; struct fvm_stimulus_config { - using value_type = fvm_value_type; - using index_type = fvm_index_type; + using value_type = arb_value_type; + using index_type = arb_index_type; // CV index for each stimulus instance; monotonically increasing. std::vector cv; @@ -257,16 +276,16 @@ struct fvm_stimulus_config { }; // Maps gj {gid, lid} locations on a cell to their CV indices. -std::unordered_map fvm_build_gap_junction_cv_map( +ARB_ARBOR_API std::unordered_map fvm_build_gap_junction_cv_map( const std::vector& cells, const std::vector& gids, const fvm_cv_discretization& D); // Resolves gj_connections into {gid, lid} pairs, then to CV indices and a weight. -std::unordered_map> fvm_resolve_gj_connections( +ARB_ARBOR_API std::unordered_map> fvm_resolve_gj_connections( const std::vector& gids, const cell_label_range& gj_data, - const std::unordered_map& gj_cv, + const std::unordered_map& gj_cv, const recipe& rec); struct fvm_mechanism_data { @@ -289,7 +308,7 @@ struct fvm_mechanism_data { bool post_events = false; }; -fvm_mechanism_data fvm_build_mechanism_data( +ARB_ARBOR_API fvm_mechanism_data fvm_build_mechanism_data( const cable_cell_global_properties& gprop, const std::vector& cells, const std::vector& gids, diff --git a/arbor/fvm_lowered_cell.hpp b/arbor/fvm_lowered_cell.hpp index 6aec640a42..9dba2adecc 100644 --- a/arbor/fvm_lowered_cell.hpp +++ b/arbor/fvm_lowered_cell.hpp @@ -7,6 +7,7 @@ #include #include +#include #include #include #include @@ -27,8 +28,8 @@ namespace arb { struct fvm_integration_result { util::range crossings; - util::range sample_time; - util::range sample_value; + util::range sample_time; + util::range sample_value; }; // A sample for a probe may be derived from multiple 'raw' sampled @@ -187,15 +188,15 @@ struct probe_association_map { return data.size(); } - // Return range of fvm_probe_data values associated with probe_id. - auto data_on(cell_member_type probe_id) const { - return util::transform_view(util::make_range(data.equal_range(probe_id)), util::second); + // Return range of fvm_probe_data values associated with probeset_id. + auto data_on(cell_member_type probeset_id) const { + return util::transform_view(util::make_range(data.equal_range(probeset_id)), util::second); } }; struct fvm_initialization_data { // Map from gid to integration domain id - std::vector cell_to_intdom; + std::vector cell_to_intdom; // Handles for accessing lowered cell. std::vector target_handles; @@ -209,8 +210,8 @@ struct fvm_initialization_data { cell_label_range gap_junction_data; // Maps storing number of sources/targets per cell. - std::unordered_map num_sources; - std::unordered_map num_targets; + std::unordered_map num_sources; + std::unordered_map num_targets; }; // Common base class for FVM implementation on host or gpu back-end. @@ -223,18 +224,18 @@ struct fvm_lowered_cell { const recipe& rec) = 0; virtual fvm_integration_result integrate( - fvm_value_type tfinal, - fvm_value_type max_dt, + arb_value_type tfinal, + arb_value_type max_dt, std::vector staged_events, std::vector staged_samples) = 0; - virtual fvm_value_type time() const = 0; + virtual arb_value_type time() const = 0; virtual ~fvm_lowered_cell() {} }; using fvm_lowered_cell_ptr = std::unique_ptr; -fvm_lowered_cell_ptr make_fvm_lowered_cell(backend_kind p, const execution_context& ctx); +ARB_ARBOR_API fvm_lowered_cell_ptr make_fvm_lowered_cell(backend_kind p, const execution_context& ctx); } // namespace arb diff --git a/arbor/fvm_lowered_cell_impl.cpp b/arbor/fvm_lowered_cell_impl.cpp index 01b0ee0fd7..9e521a9e36 100644 --- a/arbor/fvm_lowered_cell_impl.cpp +++ b/arbor/fvm_lowered_cell_impl.cpp @@ -3,9 +3,10 @@ #include #include +#include #include "backends/multicore/fvm.hpp" -#ifdef ARB_HAVE_GPU +#ifdef ARB_GPU_ENABLED #include "backends/gpu/fvm.hpp" #endif #include "fvm_lowered_cell_impl.hpp" @@ -17,7 +18,7 @@ fvm_lowered_cell_ptr make_fvm_lowered_cell(backend_kind p, const execution_conte case backend_kind::multicore: return fvm_lowered_cell_ptr(new fvm_lowered_cell_impl(ctx)); case backend_kind::gpu: -#ifdef ARB_HAVE_GPU +#ifdef ARB_GPU_ENABLED return fvm_lowered_cell_ptr(new fvm_lowered_cell_impl(ctx)); #endif ; // fall through diff --git a/arbor/fvm_lowered_cell_impl.hpp b/arbor/fvm_lowered_cell_impl.hpp index a548e4af16..a83e3432bc 100644 --- a/arbor/fvm_lowered_cell_impl.hpp +++ b/arbor/fvm_lowered_cell_impl.hpp @@ -27,7 +27,6 @@ #include "fvm_layout.hpp" #include "fvm_lowered_cell.hpp" #include "label_resolution.hpp" -#include "matrix.hpp" #include "profile/profiler_macro.hpp" #include "sampler_map.hpp" #include "util/maputil.hpp" @@ -43,9 +42,9 @@ template class fvm_lowered_cell_impl: public fvm_lowered_cell { public: using backend = Backend; - using value_type = fvm_value_type; - using index_type = fvm_index_type; - using size_type = fvm_size_type; + using value_type = arb_value_type; + using index_type = arb_index_type; + using size_type = arb_size_type; fvm_lowered_cell_impl(execution_context ctx): context_(ctx), threshold_watcher_(ctx) {}; @@ -63,10 +62,10 @@ class fvm_lowered_cell_impl: public fvm_lowered_cell { // Generates indom index for every gid, guarantees that gids belonging to the same supercell are in the same intdom // Fills cell_to_intdom map; returns number of intdoms - fvm_size_type fvm_intdom( + arb_size_type fvm_intdom( const recipe& rec, const std::vector& gids, - std::vector& cell_to_intdom); + std::vector& cell_to_intdom); value_type time() const override { return tmin_; } @@ -77,10 +76,10 @@ class fvm_lowered_cell_impl: public fvm_lowered_cell { private: // Host or GPU-side back-end dependent storage. - using array = typename backend::array; - using shared_state = typename backend::shared_state; + using array = typename backend::array; + using shared_state = typename backend::shared_state; using sample_event_stream = typename backend::sample_event_stream; - using threshold_watcher = typename backend::threshold_watcher; + using threshold_watcher = typename backend::threshold_watcher; execution_context context_; @@ -90,15 +89,14 @@ class fvm_lowered_cell_impl: public fvm_lowered_cell { sample_event_stream sample_events_; array sample_time_; array sample_value_; - matrix matrix_; threshold_watcher threshold_watcher_; value_type tmin_ = 0; std::vector mechanisms_; // excludes reversal potential calculators. std::vector revpot_mechanisms_; - // Non-physical voltage check threshold, 0 => no check. - value_type check_voltage_mV_ = 0; + // Optional non-physical voltage check threshold + std::optional check_voltage_mV_; // Flag indicating that at least one of the mechanisms implements the post_events procedure bool post_events_ = false; @@ -110,7 +108,7 @@ class fvm_lowered_cell_impl: public fvm_lowered_cell { void update_ion_state(); // Throw if absolute value of membrane voltage exceeds bounds. - void assert_voltage_bounded(fvm_value_type bound); + void assert_voltage_bounded(arb_value_type bound); // Throw if any cell time not equal to tmin_ void assert_tmin(); @@ -185,7 +183,7 @@ void fvm_lowered_cell_impl::reset() { // NOTE: Threshold watcher reset must come after the voltage values are set, // as voltage is implicitly read by watcher to set initial state. - threshold_watcher_.reset(); + threshold_watcher_.reset(state_->voltage); } template @@ -207,7 +205,8 @@ fvm_integration_result fvm_lowered_cell_impl::integrate( sample_value_ = array(n_samples); } - state_->deliverable_events.init(std::move(staged_events)); + auto& events = state_->deliverable_events; + events.init(std::move(staged_events)); sample_events_.init(std::move(staged_samples)); arb_assert((assert_tmin(), true)); @@ -235,7 +234,7 @@ fvm_integration_result fvm_lowered_cell_impl::integrate( state_->zero_currents(); PL(); for (auto& m: mechanisms_) { - auto state = state_->deliverable_events.marked_events(); + auto state = events.marked_events(); arb_deliverable_event_stream events; events.n_streams = state.n; events.begin = state.begin_offset; @@ -246,12 +245,12 @@ fvm_integration_result fvm_lowered_cell_impl::integrate( } PE(advance:integrate:events); - state_->deliverable_events.drop_marked_events(); + events.drop_marked_events(); // Update event list and integration step times. state_->update_time_to(dt_max, tfinal); - state_->deliverable_events.event_time_if_before(state_->time_to); + events.event_time_if_before(state_->time_to); state_->set_dt(); PL(); @@ -272,13 +271,13 @@ fvm_integration_result fvm_lowered_cell_impl::integrate( sample_events_.drop_marked_events(); PL(); - // Integrate voltage by matrix solve. - - PE(advance:integrate:matrix:build); - matrix_.assemble(state_->dt_intdom, state_->voltage, state_->current_density, state_->conductivity); + // Integrate voltage / solve cable eq + PE(advance:integrate:voltage); + state_->integrate_voltage(); PL(); - PE(advance:integrate:matrix:solve); - matrix_.solve(state_->voltage); + // Compute ionic diffusion effects + PE(advance:integrate:diffusion); + state_->integrate_diffusion(); PL(); // Integrate mechanism state. @@ -308,13 +307,12 @@ fvm_integration_result fvm_lowered_cell_impl::integrate( PL(); std::swap(state_->time_to, state_->time); - state_->time_ptr = state_->time.data(); // Check for non-physical solutions: - if (check_voltage_mV_>0) { + if (check_voltage_mV_) { PE(advance:integrate:physicalcheck); - assert_voltage_bounded(check_voltage_mV_); + assert_voltage_bounded(check_voltage_mV_.value()); PL(); } @@ -350,7 +348,7 @@ void fvm_lowered_cell_impl::update_ion_state() { } template -void fvm_lowered_cell_impl::assert_voltage_bounded(fvm_value_type bound) { +void fvm_lowered_cell_impl::assert_voltage_bounded(arb_value_type bound) { auto v_minmax = state_->voltage_bounds(); if (v_minmax.first>=-bound && v_minmax.second<=bound) { return; @@ -457,8 +455,6 @@ fvm_initialization_data fvm_lowered_cell_impl::initialize( [&fvm_info](index_type i){ return fvm_info.cell_to_intdom[i]; }); arb_assert(D.n_cell() == ncell); - matrix_ = matrix(D.geometry.cv_parent, D.geometry.cell_cv_divs, - D.cv_capacitance, D.face_conductance, D.cv_area, fvm_info.cell_to_intdom); sample_events_ = sample_event_stream(nintdom); // Discretize and build gap junction info. @@ -477,7 +473,7 @@ fvm_initialization_data fvm_lowered_cell_impl::initialize( auto it = util::max_element_by(fvm_info.num_sources, [](auto elem) {return util::second(elem);}); max_detector = it->second; } - std::vector src_to_spike, cv_to_cell; + std::vector src_to_spike, cv_to_cell; if (post_events_) { for (auto cell_idx: make_span(ncell)) { @@ -501,16 +497,29 @@ fvm_initialization_data fvm_lowered_cell_impl::initialize( D.init_membrane_potential, D.temperature_K, D.diam_um, std::move(src_to_spike), data_alignment? data_alignment: 1u); - // Instantiate mechanisms, ions, and stimuli. + state_->solver = + {D.geometry.cv_parent, D.geometry.cell_cv_divs, D.cv_capacitance, D.face_conductance, D.cv_area, fvm_info.cell_to_intdom}; - for (auto& i: mech_data.ions) { - const std::string& ion_name = i.first; + // Instantiate mechanisms, ions, and stimuli. + auto mk_diff_solver = [&](const auto& fd) { + // TODO(TH) _all_ solvers should share their RO data, ie everything below D here. + return std::make_unique(D.geometry.cv_parent, + D.geometry.cell_cv_divs, + fd, + D.cv_area, + fvm_info.cell_to_intdom); + }; - if (auto charge = value_by_key(global_props.ion_species, ion_name)) { - state_->add_ion(ion_name, *charge, i.second); + for (const auto& [ion, data]: mech_data.ions) { + if (auto charge = value_by_key(global_props.ion_species, ion)) { + if (data.is_diffusive) { + state_->add_ion(ion, *charge, data, mk_diff_solver(data.face_diffusivity)); + } else { + state_->add_ion(ion, *charge, data, nullptr); + } } else { - throw cable_cell_error("unrecognized ion '"+ion_name+"' in mechanism"); + throw cable_cell_error("unrecognized ion '"+ion+"' in mechanism"); } } @@ -534,7 +543,7 @@ fvm_initialization_data fvm_lowered_cell_impl::initialize( layout.peer_cv = config.peer_cv; layout.weight.resize(layout.cv.size()); - std::vector multiplicity_divs; + std::vector multiplicity_divs; auto multiplicity_part = util::make_partition(multiplicity_divs, layout.multiplicity); // Mechanism weights are F·α where α ∈ [0, 1] is the proportional @@ -594,10 +603,10 @@ fvm_initialization_data fvm_lowered_cell_impl::initialize( } if (config.kind==arb_mechanism_kind_reversal_potential) { - revpot_mechanisms_.push_back(mechanism_ptr(minst.mech.release())); + revpot_mechanisms_.emplace_back(minst.mech.release()); } else { - mechanisms_.push_back(mechanism_ptr(minst.mech.release())); + mechanisms_.emplace_back(minst.mech.release()); } } @@ -618,15 +627,15 @@ fvm_initialization_data fvm_lowered_cell_impl::initialize( std::vector rec_probes = rec.get_probes(gid); for (cell_lid_type i: count_along(rec_probes)) { probe_info& pi = rec_probes[i]; - resolve_probe_address(probe_data, cells, cell_idx, std::move(pi.address), + resolve_probe_address(probe_data, cells, cell_idx, pi.address, D, mech_data, fvm_info.target_handles, mechptr_by_name); if (!probe_data.empty()) { - cell_member_type probe_id{gid, i}; - fvm_info.probe_map.tag[probe_id] = pi.tag; + cell_member_type probeset_id{gid, i}; + fvm_info.probe_map.tag[probeset_id] = pi.tag; for (auto& data: probe_data) { - fvm_info.probe_map.data.insert({probe_id, std::move(data)}); + fvm_info.probe_map.data.insert({probeset_id, std::move(data)}); } } } @@ -640,10 +649,10 @@ fvm_initialization_data fvm_lowered_cell_impl::initialize( } template -fvm_size_type fvm_lowered_cell_impl::fvm_intdom( +arb_size_type fvm_lowered_cell_impl::fvm_intdom( const recipe& rec, const std::vector& gids, - std::vector& cell_to_intdom) { + std::vector& cell_to_intdom) { cell_to_intdom.resize(gids.size()); @@ -700,11 +709,11 @@ struct probe_resolution_data { const std::unordered_map& mech_instance_by_name; // Backend state data for a given mechanism and state variable. - const fvm_value_type* mechanism_state(const std::string& name, const std::string& state_var) const { + const arb_value_type* mechanism_state(const std::string& name, const std::string& state_var) const { mechanism* m = util::value_by_key(mech_instance_by_name, name).value_or(nullptr); if (!m) return nullptr; - const fvm_value_type* data = state->mechanism_state_data(*m, state_var); + const arb_value_type* data = state->mechanism_state_data(*m, state_var); if (!data) throw cable_cell_error("no state variable '"+state_var+"' in mechanism '"+name+"'"); return data; @@ -719,10 +728,10 @@ struct probe_resolution_data { }; // Index into ion data from location. - std::optional ion_location_index(const std::string& ion, mlocation loc) const { + std::optional ion_location_index(const std::string& ion, mlocation loc) const { if (state->ion_data.count(ion)) { return util::binary_search_index(M.ions.at(ion).cv, - fvm_index_type(D.geometry.location_cv(cell_idx, loc, cv_prefer::cv_nonempty))); + arb_index_type(D.geometry.location_cv(cell_idx, loc, cv_prefer::cv_nonempty))); } return std::nullopt; } @@ -759,6 +768,8 @@ void fvm_lowered_cell_impl::resolve_probe_address( cable_probe_ion_current_cell, cable_probe_ion_int_concentration, cable_probe_ion_int_concentration_cell, + cable_probe_ion_diff_concentration, + cable_probe_ion_diff_concentration_cell, cable_probe_ion_ext_concentration, cable_probe_ion_ext_concentration_cell>; @@ -771,7 +782,7 @@ void fvm_lowered_cell_impl::resolve_probe_address( template void resolve_probe(const cable_probe_membrane_voltage& p, probe_resolution_data& R) { - const fvm_value_type* data = R.state->voltage.data(); + const arb_value_type* data = R.state->voltage.data(); for (mlocation loc: thingify(p.locations, R.cell.provider())) { fvm_voltage_interpolant in = fvm_interpolate_voltage(R.cell, R.D, R.cell_idx, loc); @@ -803,7 +814,7 @@ void resolve_probe(const cable_probe_membrane_voltage_cell& p, probe_resolution_ template void resolve_probe(const cable_probe_axial_current& p, probe_resolution_data& R) { - const fvm_value_type* data = R.state->voltage.data(); + const arb_value_type* data = R.state->voltage.data(); for (mlocation loc: thingify(p.locations, R.cell.provider())) { fvm_voltage_interpolant in = fvm_axial_current(R.cell, R.D, R.cell_idx, loc); @@ -819,7 +830,7 @@ template void resolve_probe(const cable_probe_total_ion_current_density& p, probe_resolution_data& R) { // Use interpolated probe with coeffs 1, -1 to represent difference between accumulated current density and stimulus. for (mlocation loc: thingify(p.locations, R.cell.provider())) { - fvm_index_type cv = R.D.geometry.location_cv(R.cell_idx, loc, cv_prefer::cv_nonempty); + arb_index_type cv = R.D.geometry.location_cv(R.cell_idx, loc, cv_prefer::cv_nonempty); const double* current_cv_ptr = R.state->current_density.data() + cv; auto opt_i = util::binary_search_index(R.M.stimuli.cv_unique, cv); @@ -871,7 +882,7 @@ void resolve_probe(const cable_probe_total_current_cell& p, probe_resolution_dat util::assign(r.cv_parent_cond, util::subrange_view(R.D.face_conductance, cell_cv_ival)); const auto& stim_cvs = R.M.stimuli.cv_unique; - const fvm_value_type* stim_src = R.state->stim_data.accu_stim_.data(); + const arb_value_type* stim_src = R.state->stim_data.accu_stim_.data(); r.cv_cables_divs = {0}; for (auto cv: R.D.geometry.cell_cvs(R.cell_idx)) { @@ -904,7 +915,7 @@ void resolve_probe(const cable_probe_stimulus_current_cell& p, probe_resolution_ fvm_probe_weighted_multi r; const auto& stim_cvs = R.M.stimuli.cv_unique; - const fvm_value_type* src = R.state->stim_data.accu_stim_.data(); + const arb_value_type* src = R.state->stim_data.accu_stim_.data(); for (auto cv: R.D.geometry.cell_cvs(R.cell_idx)) { auto opt_i = util::binary_search_index(stim_cvs, cv); @@ -926,14 +937,14 @@ void resolve_probe(const cable_probe_stimulus_current_cell& p, probe_resolution_ template void resolve_probe(const cable_probe_density_state& p, probe_resolution_data& R) { - const fvm_value_type* data = R.mechanism_state(p.mechanism, p.state); + const arb_value_type* data = R.mechanism_state(p.mechanism, p.state); if (!data) return; auto support = R.mechanism_support(p.mechanism); for (mlocation loc: thingify(p.locations, R.cell.provider())) { if (!support.intersects(loc)) continue; - fvm_index_type cv = R.D.geometry.location_cv(R.cell_idx, loc, cv_prefer::cv_nonempty); + arb_index_type cv = R.D.geometry.location_cv(R.cell_idx, loc, cv_prefer::cv_nonempty); auto opt_i = util::binary_search_index(R.M.mechanisms.at(p.mechanism).cv, cv); if (!opt_i) continue; @@ -945,7 +956,7 @@ template void resolve_probe(const cable_probe_density_state_cell& p, probe_resolution_data& R) { fvm_probe_multi r; - const fvm_value_type* data = R.mechanism_state(p.mechanism, p.state); + const arb_value_type* data = R.mechanism_state(p.mechanism, p.state); if (!data) return; mextent support = R.mechanism_support(p.mechanism); @@ -973,7 +984,7 @@ void resolve_probe(const cable_probe_point_state& p, probe_resolution_data& R arb_assert(R.handles.size()==R.M.target_divs.back()); arb_assert(R.handles.size()==R.M.n_target); - const fvm_value_type* data = R.mechanism_state(p.mechanism, p.state); + const arb_value_type* data = R.mechanism_state(p.mechanism, p.state); if (!data) return; // Convert cell-local target number to cellgroup target number. @@ -997,7 +1008,7 @@ void resolve_probe(const cable_probe_point_state& p, probe_resolution_data& R template void resolve_probe(const cable_probe_point_state_cell& p, probe_resolution_data& R) { - const fvm_value_type* data = R.mechanism_state(p.mechanism, p.state); + const arb_value_type* data = R.mechanism_state(p.mechanism, p.state); if (!data) return; unsigned id = R.mech_instance_by_name.at(p.mechanism)->mechanism_id(); @@ -1046,7 +1057,7 @@ void resolve_probe(const cable_probe_ion_current_cell& p, probe_resolution_data< if (!R.state->ion_data.count(p.ion)) return; auto& ion_cvs = R.M.ions.at(p.ion).cv; - const fvm_value_type* src = R.state->ion_data.at(p.ion).iX_.data(); + const arb_value_type* src = R.state->ion_data.at(p.ion).iX_.data(); fvm_probe_weighted_multi r; for (auto cv: R.D.geometry.cell_cvs(R.cell_idx)) { @@ -1087,9 +1098,19 @@ void resolve_probe(const cable_probe_ion_ext_concentration& p, probe_resolution_ } } +template +void resolve_probe(const cable_probe_ion_diff_concentration& p, probe_resolution_data& R) { + for (mlocation loc: thingify(p.locations, R.cell.provider())) { + auto opt_i = R.ion_location_index(p.ion, loc); + if (!opt_i) continue; + + R.result.push_back(fvm_probe_scalar{{R.state->ion_data.at(p.ion).Xd_.data()+*opt_i}, loc}); + } +} + // Common implementation for int and ext concentrations across whole cell: template -void resolve_ion_conc_common(const std::vector& ion_cvs, const fvm_value_type* src, probe_resolution_data& R) { +void resolve_ion_conc_common(const std::vector& ion_cvs, const arb_value_type* src, probe_resolution_data& R) { fvm_probe_multi r; mcable_list cables; @@ -1118,4 +1139,10 @@ void resolve_probe(const cable_probe_ion_ext_concentration_cell& p, probe_resolu resolve_ion_conc_common(R.M.ions.at(p.ion).cv, R.state->ion_data.at(p.ion).Xo_.data(), R); } +template +void resolve_probe(const cable_probe_ion_diff_concentration_cell& p, probe_resolution_data& R) { + if (!R.state->ion_data.count(p.ion)) return; + resolve_ion_conc_common(R.M.ions.at(p.ion).cv, R.state->ion_data.at(p.ion).Xd_.data(), R); +} + } // namespace arb diff --git a/arbor/gpu_context.cpp b/arbor/gpu_context.cpp index 273c005851..ff1dbde0f1 100644 --- a/arbor/gpu_context.cpp +++ b/arbor/gpu_context.cpp @@ -1,10 +1,10 @@ #include #include - +#include #include "gpu_context.hpp" -#ifdef ARB_HAVE_GPU +#ifdef ARB_GPU_ENABLED #include #endif @@ -14,7 +14,7 @@ enum gpu_flags { has_atomic_double = 1 }; -gpu_context_handle make_gpu_context(int id) { +ARB_ARBOR_API gpu_context_handle make_gpu_context(int id) { return std::make_shared(id); } @@ -30,7 +30,7 @@ bool gpu_context::has_gpu() const { return id_ != -1; } -#ifndef ARB_HAVE_GPU +#ifndef ARB_GPU_ENABLED void gpu_context::set_gpu() const { throw arbor_exception("Arbor must be compiled with CUDA/HIP support to set a GPU."); diff --git a/arbor/gpu_context.hpp b/arbor/gpu_context.hpp index d394e4d206..6d8965558b 100644 --- a/arbor/gpu_context.hpp +++ b/arbor/gpu_context.hpp @@ -3,9 +3,11 @@ #include #include +#include + namespace arb { -class gpu_context { +class ARB_ARBOR_API gpu_context { int id_ = -1; std::size_t attributes_ = 0; @@ -21,6 +23,6 @@ class gpu_context { }; using gpu_context_handle = std::shared_ptr; -gpu_context_handle make_gpu_context(int id); +ARB_ARBOR_API gpu_context_handle make_gpu_context(int id); } // namespace arb diff --git a/arbor/hardware/memory.cpp b/arbor/hardware/memory.cpp index 4274ede476..f2370a68c0 100644 --- a/arbor/hardware/memory.cpp +++ b/arbor/hardware/memory.cpp @@ -1,4 +1,5 @@ #include "memory.hpp" +#include #ifdef __linux__ extern "C" { @@ -6,7 +7,7 @@ extern "C" { } #endif -#ifdef ARB_HAVE_GPU +#ifdef ARB_GPU_ENABLED #include #endif diff --git a/arbor/iexpr.cpp b/arbor/iexpr.cpp new file mode 100644 index 0000000000..f2fe81acac --- /dev/null +++ b/arbor/iexpr.cpp @@ -0,0 +1,600 @@ +// Implementations for inhomogeneous expressions. + +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include + +namespace arb { + +namespace iexpr_impl { +namespace { + +msize_t common_parent_branch(msize_t branch_a, msize_t branch_b, const morphology& m) { + // Locations on different branches. + // Find first common parent branch. Branch id of parent is + // always smaller. + while (branch_a != branch_b) { + if (branch_b == mnpos || (branch_a != mnpos && branch_a > branch_b)) + branch_a = m.branch_parent(branch_a); + else + branch_b = m.branch_parent(branch_b); + } + + return branch_a; +} + +// compute the distance between any two points on the same morphology +double compute_distance(const mlocation& loc_a, const mlocation& loc_b, const mprovider& p) { + if (loc_a.branch == loc_b.branch) return std::abs(p.embedding().integrate_length(loc_a, loc_b)); + + // If mnpos, locations are on different sides of root. Take + // distance to root in this case. Otherwise, take distance to + // end of parent branch + const auto base_branch = common_parent_branch(loc_a.branch, loc_b.branch, p.morphology()); + const auto base_loc = base_branch == mnpos ? mlocation{0, 0.0} : mlocation{base_branch, 1.0}; + + // compute distance to distal end of parent branch and add + // together + return std::abs(p.embedding().integrate_length(loc_a, base_loc)) + + std::abs(p.embedding().integrate_length(loc_b, base_loc)); +}; + +// Compute the distance in proximal direction. Will return nullopt if loc_prox is not between origin +// and loc_dist +std::optional compute_proximal_distance(const mlocation& loc_prox, + const mlocation& loc_dist, + const mprovider& p) { + + // check order if on same branch + if (loc_prox.branch == loc_dist.branch && loc_prox.pos > loc_dist.pos) return std::nullopt; + + // Special case root, for which no direction can be assumed. Always return the actual distance + // in this case. + if (loc_prox.pos == 0.0 && p.morphology().branch_parent(loc_prox.branch) == mnpos) + return p.embedding().integrate_length(loc_prox, loc_dist); + + // check if loc_prox branch is in proximal direction from loc_dist + auto b = loc_dist.branch; + while (b > loc_prox.branch) { + b = p.morphology().branch_parent(b); + if (b == mnpos) return std::nullopt; + } + if (b != loc_prox.branch) return std::nullopt; + + return p.embedding().integrate_length(loc_prox, loc_dist); +}; + +enum class direction { any, proximal, distal }; + +// compute the minimum distance in the given direction from the given locations towards loc_eval. +// Returs nullopt if loc_eval cannot be found in the direction. +template +std::optional distance_from_locations( + const std::variant& locations, + const mlocation& loc_eval, + const mprovider& p) { + return std::visit( + arb::util::overload( + [&](const mlocation_list& arg) -> std::optional { + std::optional min_dist, dist; + for (const auto& loc: arg) { + if constexpr (Dir == direction::proximal) { + dist = compute_proximal_distance(loc_eval, loc, p); + } + else if constexpr (Dir == direction::distal) { + dist = compute_proximal_distance(loc, loc_eval, p); + } + else { + dist = compute_distance(loc, loc_eval, p); + } + if (dist) + min_dist = std::min( + min_dist.value_or(std::numeric_limits::max()), dist.value()); + } + return min_dist; + }, + [&](const mextent& arg) -> std::optional { + std::optional min_dist, dist; + for (const auto& c: arg) { + if (c.branch == loc_eval.branch && c.prox_pos < loc_eval.pos && + c.dist_pos > loc_eval.pos) + return std::nullopt; + if constexpr (Dir == direction::proximal) { + dist = compute_proximal_distance(loc_eval, {c.branch, c.prox_pos}, p); + } + else if constexpr (Dir == direction::distal) { + dist = compute_proximal_distance({c.branch, c.dist_pos}, loc_eval, p); + } + else { + dist = std::min(compute_distance({c.branch, c.dist_pos}, loc_eval, p), + compute_distance({c.branch, c.prox_pos}, loc_eval, p)); + } + if (dist) + min_dist = std::min( + min_dist.value_or(std::numeric_limits::max()), dist.value()); + } + return min_dist; + }), + locations); +} + +struct scalar: public iexpr_interface { + scalar(double v): value(v) {} + + double eval(const mprovider&, const mcable&) const override { return value; } + + double value; +}; + +struct radius: public iexpr_interface { + radius(double s): scale(s) {} + + double eval(const mprovider& p, const mcable& c) const override { + auto loc_eval = mlocation{c.branch, (c.dist_pos + c.prox_pos) / 2}; + return scale * p.embedding().radius(loc_eval); + } + + double scale; +}; + +struct distance: public iexpr_interface { + distance(double s, std::variant l): + scale(s), + locations(std::move(l)) {} + + double eval(const mprovider& p, const mcable& c) const override { + auto loc_eval = mlocation{c.branch, (c.dist_pos + c.prox_pos) / 2}; + + return scale * + distance_from_locations(locations, loc_eval, p).value_or(0.0); + } + + double scale; + std::variant locations; +}; + +struct proximal_distance: public iexpr_interface { + proximal_distance(double s, std::variant l): + scale(s), + locations(std::move(l)) {} + + double eval(const mprovider& p, const mcable& c) const override { + auto loc_eval = mlocation{c.branch, (c.dist_pos + c.prox_pos) / 2}; + + return scale * + distance_from_locations(locations, loc_eval, p).value_or(0.0); + } + + double scale; + std::variant locations; +}; + +struct distal_distance: public iexpr_interface { + distal_distance(double s, std::variant l): + scale(s), + locations(std::move(l)) {} + + double eval(const mprovider& p, const mcable& c) const override { + auto loc_eval = mlocation{c.branch, (c.dist_pos + c.prox_pos) / 2}; + + return scale * + distance_from_locations(locations, loc_eval, p).value_or(0.0); + } + + double scale; + std::variant locations; +}; + +struct interpolation: public iexpr_interface { + interpolation(double prox_value, + std::variant prox_list, + double dist_value, + std::variant dist_list): + prox_v(prox_value), + dist_v(dist_value), + prox_l(std::move(prox_list)), + dist_l(std::move(dist_list)) {} + + double eval(const mprovider& p, const mcable& c) const override { + auto loc_eval = mlocation{c.branch, (c.dist_pos + c.prox_pos) / 2}; + + const auto d1 = distance_from_locations(prox_l, loc_eval, p); + if (!d1) return 0.0; + + const auto d2 = distance_from_locations(dist_l, loc_eval, p); + if (!d2) return 0.0; + + const auto sum = d1.value() + d2.value(); + if (!sum) return (prox_v + dist_v) * 0.5; + + return prox_v * (d2.value() / sum) + dist_v * (d1.value() / sum); + } + + double prox_v, dist_v; + std::variant prox_l, dist_l; +}; + +struct add: public iexpr_interface { + add(iexpr_ptr l, iexpr_ptr r): left(std::move(l)), right(std::move(r)) {} + + double eval(const mprovider& p, const mcable& c) const override { + return left->eval(p, c) + right->eval(p, c); + } + + iexpr_ptr left; + iexpr_ptr right; +}; + +struct sub: public iexpr_interface { + sub(iexpr_ptr l, iexpr_ptr r): left(std::move(l)), right(std::move(r)) {} + + double eval(const mprovider& p, const mcable& c) const override { + return left->eval(p, c) - right->eval(p, c); + } + + iexpr_ptr left; + iexpr_ptr right; +}; + +struct mul: public iexpr_interface { + mul(iexpr_ptr l, iexpr_ptr r): left(std::move(l)), right(std::move(r)) {} + + double eval(const mprovider& p, const mcable& c) const override { + return left->eval(p, c) * right->eval(p, c); + } + + iexpr_ptr left; + iexpr_ptr right; +}; + +struct div: public iexpr_interface { + div(iexpr_ptr l, iexpr_ptr r): left(std::move(l)), right(std::move(r)) {} + + double eval(const mprovider& p, const mcable& c) const override { + return left->eval(p, c) / right->eval(p, c); + } + + iexpr_ptr left; + iexpr_ptr right; +}; + +struct exp: public iexpr_interface { + exp(iexpr_ptr v): value(std::move(v)) {} + + double eval(const mprovider& p, const mcable& c) const override { + return std::exp(value->eval(p, c)); + } + + iexpr_ptr value; +}; + +struct log: public iexpr_interface { + log(iexpr_ptr v): value(std::move(v)) {} + + double eval(const mprovider& p, const mcable& c) const override { + return std::log(value->eval(p, c)); + } + + iexpr_ptr value; +}; + +} // namespace +} // namespace iexpr_impl + +iexpr::iexpr(double value) { *this = iexpr::scalar(value); } + +iexpr iexpr::scalar(double value) { return iexpr(iexpr_type::scalar, std::make_tuple(value)); } + +iexpr iexpr::pi() { return iexpr::scalar(math::pi); } + +iexpr iexpr::distance(double scale, locset loc) { + return iexpr( + iexpr_type::distance, std::make_tuple(scale, std::variant(std::move(loc)))); +} + +iexpr iexpr::distance(locset loc) { + return iexpr::distance(1.0, std::move(loc)); +} + +iexpr iexpr::distance(double scale, region reg) { + return iexpr( + iexpr_type::distance, std::make_tuple(scale, std::variant(std::move(reg)))); +} + +iexpr iexpr::distance(region reg) { + return iexpr::distance(1.0, std::move(reg)); +} + +iexpr iexpr::proximal_distance(double scale, locset loc) { + return iexpr(iexpr_type::proximal_distance, + std::make_tuple(scale, std::variant(std::move(loc)))); +} + +iexpr iexpr::proximal_distance(locset loc) { + return iexpr::proximal_distance(1.0, std::move(loc)); +} + +iexpr iexpr::proximal_distance(double scale, region reg) { + return iexpr(iexpr_type::proximal_distance, + std::make_tuple(scale, std::variant(std::move(reg)))); +} + +iexpr iexpr::proximal_distance(region reg) { + return iexpr::proximal_distance(1.0, std::move(reg)); +} + +iexpr iexpr::distal_distance(double scale, locset loc) { + return iexpr(iexpr_type::distal_distance, + std::make_tuple(scale, std::variant(std::move(loc)))); +} + +iexpr iexpr::distal_distance(locset loc) { + return iexpr::distal_distance(1.0, std::move(loc)); +} + +iexpr iexpr::distal_distance(double scale, region reg) { + return iexpr(iexpr_type::distal_distance, + std::make_tuple(scale, std::variant(std::move(reg)))); +} + +iexpr iexpr::distal_distance(region reg) { + return iexpr::distal_distance(1.0, std::move(reg)); +} + +iexpr iexpr::interpolation(double prox_value, + locset prox_list, + double dist_value, + locset dist_list) { + return iexpr(iexpr_type::interpolation, + std::make_tuple(prox_value, + std::variant(std::move(prox_list)), + dist_value, + std::variant(std::move(dist_list)))); +} + +iexpr iexpr::interpolation(double prox_value, + region prox_list, + double dist_value, + region dist_list) { + return iexpr(iexpr_type::interpolation, + std::make_tuple(prox_value, + std::variant(std::move(prox_list)), + dist_value, + std::variant(std::move(dist_list)))); +} + +iexpr iexpr::radius(double scale) { return iexpr(iexpr_type::radius, std::make_tuple(scale)); } + +iexpr iexpr::radius() { return iexpr::radius(1.0); } + +iexpr iexpr::diameter(double scale) { return iexpr(iexpr_type::diameter, std::make_tuple(scale)); } + +iexpr iexpr::diameter() { return iexpr::diameter(1.0); } + +iexpr iexpr::add(iexpr left, iexpr right) { + return iexpr(iexpr_type::add, std::make_tuple(std::move(left), std::move(right))); +} + +iexpr iexpr::sub(iexpr left, iexpr right) { + return iexpr(iexpr_type::sub, std::make_tuple(std::move(left), std::move(right))); +} + +iexpr iexpr::mul(iexpr left, iexpr right) { + return iexpr(iexpr_type::mul, std::make_tuple(std::move(left), std::move(right))); +} + +iexpr iexpr::div(iexpr left, iexpr right) { + return iexpr(iexpr_type::div, std::make_tuple(std::move(left), std::move(right))); +} + +iexpr iexpr::exp(iexpr value) { return iexpr(iexpr_type::exp, std::make_tuple(std::move(value))); } + +iexpr iexpr::log(iexpr value) { return iexpr(iexpr_type::log, std::make_tuple(std::move(value))); } + +iexpr iexpr::named(std::string name) { + return iexpr(iexpr_type::named, std::make_tuple(std::move(name))); +} + +iexpr_ptr thingify(const iexpr& expr, const mprovider& m) { + switch (expr.type()) { + case iexpr_type::scalar: + return iexpr_ptr(new iexpr_impl::scalar( + std::get<0>(std::any_cast&>(expr.args())))); + case iexpr_type::distance: { + const auto& scale = std::get<0>( + std::any_cast>&>(expr.args())); + const auto& var = std::get<1>( + std::any_cast>&>(expr.args())); + + return std::visit( + [&](auto&& arg) { + return iexpr_ptr(new iexpr_impl::distance(scale, thingify(arg, m))); + }, + var); + } + case iexpr_type::proximal_distance: { + const auto& scale = std::get<0>( + std::any_cast>&>(expr.args())); + const auto& var = std::get<1>( + std::any_cast>&>(expr.args())); + + return std::visit( + [&](auto&& arg) { + return iexpr_ptr(new iexpr_impl::proximal_distance(scale, thingify(arg, m))); + }, + var); + } + case iexpr_type::distal_distance: { + const auto& scale = std::get<0>( + std::any_cast>&>(expr.args())); + const auto& var = std::get<1>( + std::any_cast>&>(expr.args())); + + return std::visit( + [&](auto&& arg) { + return iexpr_ptr(new iexpr_impl::distal_distance(scale, thingify(arg, m))); + }, + var); + } + case iexpr_type::interpolation: { + const auto& t = std::any_cast, double, std::variant>&>( + expr.args()); + auto prox_list = std::visit( + [&](auto&& arg) -> std::variant { return thingify(arg, m); }, + std::get<1>(t)); + + auto dist_list = std::visit( + [&](auto&& arg) -> std::variant { return thingify(arg, m); }, + std::get<3>(t)); + return iexpr_ptr(new iexpr_impl::interpolation( + std::get<0>(t), std::move(prox_list), std::get<2>(t), std::move(dist_list))); + } + case iexpr_type::radius: + return iexpr_ptr(new iexpr_impl::radius( + std::get<0>(std::any_cast&>(expr.args())))); + case iexpr_type::diameter: + return iexpr_ptr(new iexpr_impl::radius( + 2.0 * std::get<0>(std::any_cast&>(expr.args())))); + case iexpr_type::add: + return iexpr_ptr(new iexpr_impl::add( + thingify(std::get<0>(std::any_cast&>(expr.args())), m), + thingify(std::get<1>(std::any_cast&>(expr.args())), m))); + case iexpr_type::sub: + return iexpr_ptr(new iexpr_impl::sub( + thingify(std::get<0>(std::any_cast&>(expr.args())), m), + thingify(std::get<1>(std::any_cast&>(expr.args())), m))); + case iexpr_type::mul: + return iexpr_ptr(new iexpr_impl::mul( + thingify(std::get<0>(std::any_cast&>(expr.args())), m), + thingify(std::get<1>(std::any_cast&>(expr.args())), m))); + case iexpr_type::div: + return iexpr_ptr(new iexpr_impl::div( + thingify(std::get<0>(std::any_cast&>(expr.args())), m), + thingify(std::get<1>(std::any_cast&>(expr.args())), m))); + case iexpr_type::exp: + return iexpr_ptr(new iexpr_impl::exp( + thingify(std::get<0>(std::any_cast&>(expr.args())), m))); + case iexpr_type::log: + return iexpr_ptr(new iexpr_impl::log( + thingify(std::get<0>(std::any_cast&>(expr.args())), m))); + case iexpr_type::named: + return m.iexpr(std::get<0>(std::any_cast&>(expr.args()))); + } + + throw std::runtime_error("thingify iexpr: Unknown iexpr type"); + return nullptr; +} + +std::ostream& operator<<(std::ostream& o, const iexpr& e) { + o << "("; + + switch (e.type()) { + case iexpr_type::scalar: { + o << "scalar " << std::get<0>(std::any_cast&>(e.args())); + break; + } + case iexpr_type::distance: { + const auto& scale = std::get<0>( + std::any_cast>&>(e.args())); + const auto& var = std::get<1>( + std::any_cast>&>(e.args())); + o << "distance " << scale << " "; + + std::visit([&](auto&& arg) { o << arg; }, var); + break; + } + case iexpr_type::proximal_distance: { + const auto& scale = std::get<0>( + std::any_cast>&>(e.args())); + const auto& var = std::get<1>( + std::any_cast>&>(e.args())); + o << "proximal-distance " << scale << " "; + + std::visit([&](auto&& arg) { o << arg; }, var); + break; + } + case iexpr_type::distal_distance: { + const auto& scale = std::get<0>( + std::any_cast>&>(e.args())); + const auto& var = std::get<1>( + std::any_cast>&>(e.args())); + o << "distal-distance " << scale << " "; + + std::visit([&](auto&& arg) { o << arg; }, var); + break; + } + case iexpr_type::interpolation: { + using arg_type = + std::tuple, double, std::variant>; + + o << "interpolation " << std::get<0>(std::any_cast(e.args())) << " "; + std::visit( + [&](auto&& arg) { o << arg; }, std::get<1>(std::any_cast(e.args()))); + o << " " << std::get<2>(std::any_cast(e.args())) << " "; + std::visit( + [&](auto&& arg) { o << arg; }, std::get<3>(std::any_cast(e.args()))); + break; + } + case iexpr_type::radius: { + o << "radius " << std::get<0>(std::any_cast&>(e.args())); + break; + } + case iexpr_type::diameter: { + o << "diameter " << std::get<0>(std::any_cast&>(e.args())); + break; + } + case iexpr_type::add: { + o << "add " << std::get<0>(std::any_cast&>(e.args())) << " " + << std::get<1>(std::any_cast&>(e.args())); + break; + } + case iexpr_type::sub: { + o << "sub " << std::get<0>(std::any_cast&>(e.args())) << " " + << std::get<1>(std::any_cast&>(e.args())); + break; + } + case iexpr_type::mul: { + o << "mul " << std::get<0>(std::any_cast&>(e.args())) << " " + << std::get<1>(std::any_cast&>(e.args())); + break; + } + case iexpr_type::div: { + o << "div " << std::get<0>(std::any_cast&>(e.args())) << " " + << std::get<1>(std::any_cast&>(e.args())); + break; + } + case iexpr_type::exp: { + o << "exp " << std::get<0>(std::any_cast&>(e.args())); + break; + } + case iexpr_type::log: { + o << "log " << std::get<0>(std::any_cast&>(e.args())); + break; + } + case iexpr_type::named: { + o << "iexpr \"" << std::get<0>(std::any_cast&>(e.args())) + << "\""; + break; + } + default: throw std::runtime_error("print iexpr: Unknown iexpr type"); + } + + o << ")"; + return o; +} + +} // namespace arb diff --git a/arbor/include/arbor/arb_types.h b/arbor/include/arbor/arb_types.h index 955fc9fd30..23f84078de 100644 --- a/arbor/include/arbor/arb_types.h +++ b/arbor/include/arbor/arb_types.h @@ -5,10 +5,11 @@ #ifdef __cplusplus #include +using std::uint32_t; #else #include #endif #include -#endif // ndef ARB_TYPES_H +#endif // ARB_TYPES_H diff --git a/arbor/include/arbor/arb_types.inc b/arbor/include/arbor/arb_types.inc index 0062fd5aa2..ac60304db3 100644 --- a/arbor/include/arbor/arb_types.inc +++ b/arbor/include/arbor/arb_types.inc @@ -1,8 +1,4 @@ typedef double arb_value_type; typedef float arb_weight_type; typedef int arb_index_type; -#ifdef __cplusplus -typedef std::uint32_t arb_size_type; -#else typedef uint32_t arb_size_type; -#endif diff --git a/arbor/include/arbor/arbexcept.hpp b/arbor/include/arbor/arbexcept.hpp index 4a06571b3f..deb578e43c 100644 --- a/arbor/include/arbor/arbexcept.hpp +++ b/arbor/include/arbor/arbexcept.hpp @@ -5,6 +5,7 @@ #include #include +#include // Arbor-specific exception hierarchy. @@ -13,63 +14,67 @@ namespace arb { // Arbor internal logic error (if these are thrown, // there is a bug in the library.) -struct arbor_internal_error: std::logic_error { - arbor_internal_error(const std::string& what_arg): - std::logic_error(what_arg) - {} +struct ARB_SYMBOL_VISIBLE arbor_internal_error: std::logic_error { + arbor_internal_error(const std::string&); + std::string where; }; - // Common base-class for arbor run-time errors. -struct arbor_exception: std::runtime_error { - arbor_exception(const std::string& what_arg): - std::runtime_error(what_arg) - {} +struct ARB_SYMBOL_VISIBLE arbor_exception: std::runtime_error { + arbor_exception(const std::string&); + std::string where; +}; + +// Logic errors + +// Argument violates domain constraints, eg ln(-1) +struct ARB_SYMBOL_VISIBLE domain_error: arbor_exception { + domain_error(const std::string&); }; // Recipe errors: -struct bad_cell_probe: arbor_exception { +struct ARB_SYMBOL_VISIBLE bad_cell_probe: arbor_exception { bad_cell_probe(cell_kind kind, cell_gid_type gid); cell_gid_type gid; cell_kind kind; }; -struct bad_cell_description: arbor_exception { +struct ARB_SYMBOL_VISIBLE bad_cell_description: arbor_exception { bad_cell_description(cell_kind kind, cell_gid_type gid); cell_gid_type gid; cell_kind kind; }; -struct bad_connection_source_gid: arbor_exception { +struct ARB_SYMBOL_VISIBLE bad_connection_source_gid: arbor_exception { bad_connection_source_gid(cell_gid_type gid, cell_gid_type src_gid, cell_size_type num_cells); cell_gid_type gid, src_gid; cell_size_type num_cells; }; -struct bad_connection_label: arbor_exception { +struct ARB_SYMBOL_VISIBLE bad_connection_label: arbor_exception { bad_connection_label(cell_gid_type gid, const cell_tag_type& label, const std::string& msg); cell_gid_type gid; cell_tag_type label; }; -struct bad_global_property: arbor_exception { +struct ARB_SYMBOL_VISIBLE bad_global_property: arbor_exception { explicit bad_global_property(cell_kind kind); cell_kind kind; }; -struct bad_probe_id: arbor_exception { - explicit bad_probe_id(cell_member_type id); - cell_member_type probe_id; +struct ARB_SYMBOL_VISIBLE bad_probeset_id: arbor_exception { + explicit bad_probeset_id(cell_member_type id); + cell_member_type probeset_id; }; -struct gj_kind_mismatch: arbor_exception { +struct ARB_SYMBOL_VISIBLE gj_kind_mismatch: arbor_exception { gj_kind_mismatch(cell_gid_type gid_0, cell_gid_type gid_1); cell_gid_type gid_0, gid_1; }; -struct gj_unsupported_lid_selection_policy: arbor_exception { +struct ARB_SYMBOL_VISIBLE gj_unsupported_lid_selection_policy: arbor_exception { gj_unsupported_lid_selection_policy(cell_gid_type gid, cell_tag_type label); cell_gid_type gid; cell_tag_type label; @@ -77,21 +82,21 @@ struct gj_unsupported_lid_selection_policy: arbor_exception { // Context errors: -struct zero_thread_requested_error: arbor_exception { +struct ARB_SYMBOL_VISIBLE zero_thread_requested_error: arbor_exception { zero_thread_requested_error(unsigned nbt); unsigned nbt; }; // Domain decomposition errors: -struct gj_unsupported_domain_decomposition: arbor_exception { +struct ARB_SYMBOL_VISIBLE gj_unsupported_domain_decomposition: arbor_exception { gj_unsupported_domain_decomposition(cell_gid_type gid_0, cell_gid_type gid_1); cell_gid_type gid_0, gid_1; }; // Simulation errors: -struct bad_event_time: arbor_exception { +struct ARB_SYMBOL_VISIBLE bad_event_time: arbor_exception { explicit bad_event_time(time_type event_time, time_type sim_time); time_type event_time; time_type sim_time; @@ -99,28 +104,34 @@ struct bad_event_time: arbor_exception { // Mechanism catalogue errors: -struct no_such_mechanism: arbor_exception { +struct ARB_SYMBOL_VISIBLE no_such_mechanism: arbor_exception { explicit no_such_mechanism(const std::string& mech_name); std::string mech_name; }; -struct duplicate_mechanism: arbor_exception { +struct ARB_SYMBOL_VISIBLE duplicate_mechanism: arbor_exception { explicit duplicate_mechanism(const std::string& mech_name); std::string mech_name; }; -struct fingerprint_mismatch: arbor_exception { +struct ARB_SYMBOL_VISIBLE fingerprint_mismatch: arbor_exception { explicit fingerprint_mismatch(const std::string& mech_name); std::string mech_name; }; -struct no_such_parameter: arbor_exception { +struct ARB_SYMBOL_VISIBLE no_such_parameter: arbor_exception { no_such_parameter(const std::string& mech_name, const std::string& param_name); std::string mech_name; std::string param_name; }; -struct invalid_parameter_value: arbor_exception { +struct ARB_SYMBOL_VISIBLE illegal_diffusive_mechanism: arbor_exception { + explicit illegal_diffusive_mechanism(const std::string& mech, const std::string& ion); + std::string mech; + std::string ion; +}; + +struct ARB_SYMBOL_VISIBLE invalid_parameter_value: arbor_exception { invalid_parameter_value(const std::string& mech_name, const std::string& param_name, const std::string& value_str); invalid_parameter_value(const std::string& mech_name, const std::string& param_name, double value); std::string mech_name; @@ -129,32 +140,32 @@ struct invalid_parameter_value: arbor_exception { double value; }; -struct invalid_ion_remap: arbor_exception { +struct ARB_SYMBOL_VISIBLE invalid_ion_remap: arbor_exception { explicit invalid_ion_remap(const std::string& mech_name); invalid_ion_remap(const std::string& mech_name, const std::string& from_ion, const std::string& to_ion); std::string from_ion; std::string to_ion; }; -struct no_such_implementation: arbor_exception { +struct ARB_SYMBOL_VISIBLE no_such_implementation: arbor_exception { explicit no_such_implementation(const std::string& mech_name); std::string mech_name; }; // Run-time value bounds check: -struct range_check_failure: arbor_exception { +struct ARB_SYMBOL_VISIBLE range_check_failure: arbor_exception { explicit range_check_failure(const std::string& whatstr, double value); double value; }; -struct file_not_found_error: arbor_exception { +struct ARB_SYMBOL_VISIBLE file_not_found_error: arbor_exception { file_not_found_error(const std::string& fn); std::string filename; }; // -struct bad_catalogue_error: arbor_exception { +struct ARB_SYMBOL_VISIBLE bad_catalogue_error: arbor_exception { bad_catalogue_error(const std::string&); bad_catalogue_error(const std::string&, const std::any&); std::any platform_error; @@ -162,12 +173,12 @@ struct bad_catalogue_error: arbor_exception { // ABI errors -struct bad_alignment: arbor_exception { +struct ARB_SYMBOL_VISIBLE bad_alignment: arbor_exception { bad_alignment(size_t); size_t alignment; }; -struct unsupported_abi_error: arbor_exception { +struct ARB_SYMBOL_VISIBLE unsupported_abi_error: arbor_exception { unsupported_abi_error(size_t); size_t version; }; diff --git a/arbor/include/arbor/assert.hpp b/arbor/include/arbor/assert.hpp index ac52566964..a400e335ed 100644 --- a/arbor/include/arbor/assert.hpp +++ b/arbor/include/arbor/assert.hpp @@ -1,5 +1,6 @@ #pragma once +#include #include namespace arb { @@ -7,10 +8,10 @@ namespace arb { using failed_assertion_handler_t = void (*)(const char* assertion, const char* file, int line, const char* func); -void abort_on_failed_assertion(const char* assertion, const char* file, int line, const char* func); -void ignore_failed_assertion(const char* assertion, const char* file, int line, const char* func); +ARB_ARBOR_API void abort_on_failed_assertion(const char* assertion, const char* file, int line, const char* func); +ARB_ARBOR_API void ignore_failed_assertion(const char* assertion, const char* file, int line, const char* func); // defaults to abort_on_failed_assertion; -extern failed_assertion_handler_t global_failed_assertion_handler; +ARB_ARBOR_API extern failed_assertion_handler_t global_failed_assertion_handler; } // namespace arb diff --git a/arbor/include/arbor/benchmark_cell.hpp b/arbor/include/arbor/benchmark_cell.hpp index 49d93d9f4f..30719fd947 100644 --- a/arbor/include/arbor/benchmark_cell.hpp +++ b/arbor/include/arbor/benchmark_cell.hpp @@ -1,5 +1,6 @@ #pragma once +#include #include namespace arb { @@ -7,7 +8,7 @@ namespace arb { // Cell description returned by recipe::cell_description(gid) for cells with // recipe::cell_kind(gid) returning cell_kind::benchmark -struct benchmark_cell { +struct ARB_SYMBOL_VISIBLE benchmark_cell { cell_tag_type source; // Label of source. cell_tag_type target; // Label of target. diff --git a/arbor/include/arbor/cable_cell.hpp b/arbor/include/arbor/cable_cell.hpp index 3833126310..6556deb057 100644 --- a/arbor/include/arbor/cable_cell.hpp +++ b/arbor/include/arbor/cable_cell.hpp @@ -1,15 +1,18 @@ #pragma once +#include #include #include #include #include #include +#include #include #include #include #include +#include #include #include #include @@ -49,7 +52,7 @@ using cable_sample_range = std::pair; // calls to an attached sampler, one per valid location matched by the expression. // // Metadata for point process probes. -struct cable_probe_point_info { +struct ARB_SYMBOL_VISIBLE cable_probe_point_info { cell_lid_type target; // Target number of point process instance on cell. unsigned multiplicity; // Number of combined instances at this site. mlocation loc; // Point on cell morphology where instance is placed. @@ -58,48 +61,48 @@ struct cable_probe_point_info { // Voltage estimate [mV] at `location`, interpolated. // Sample value type: `double` // Sample metadata type: `mlocation` -struct cable_probe_membrane_voltage { +struct ARB_SYMBOL_VISIBLE cable_probe_membrane_voltage { locset locations; }; // Voltage estimate [mV], reported against each cable in each control volume. Not interpolated. // Sample value type: `cable_sample_range` // Sample metadata type: `mcable_list` -struct cable_probe_membrane_voltage_cell {}; +struct ARB_SYMBOL_VISIBLE cable_probe_membrane_voltage_cell {}; // Axial current estimate [nA] at `location`, interpolated. // Sample value type: `double` // Sample metadata type: `mlocation` -struct cable_probe_axial_current { +struct ARB_SYMBOL_VISIBLE cable_probe_axial_current { locset locations; }; // Total current density [A/m²] across membrane _excluding_ capacitive and stimulus current at `location`. // Sample value type: `cable_sample_range` // Sample metadata type: `mlocation` -struct cable_probe_total_ion_current_density { +struct ARB_SYMBOL_VISIBLE cable_probe_total_ion_current_density { locset locations; }; // Total ionic current [nA] across membrane _excluding_ capacitive current across components of the cell. // Sample value type: `cable_sample_range` // Sample metadata type: `mcable_list` -struct cable_probe_total_ion_current_cell {}; +struct ARB_SYMBOL_VISIBLE cable_probe_total_ion_current_cell {}; // Total membrane current [nA] across components of the cell _excluding_ stimulus currents. // Sample value type: `cable_sample_range` // Sample metadata type: `mcable_list` -struct cable_probe_total_current_cell {}; +struct ARB_SYMBOL_VISIBLE cable_probe_total_current_cell {}; // Stimulus currents [nA] across components of the cell. // Sample value type: `cable_sample_range` // Sample metadata type: `mcable_list` -struct cable_probe_stimulus_current_cell {}; +struct ARB_SYMBOL_VISIBLE cable_probe_stimulus_current_cell {}; // Value of state variable `state` in density mechanism `mechanism` in CV at `location`. // Sample value type: `double` // Sample metadata type: `mlocation` -struct cable_probe_density_state { +struct ARB_SYMBOL_VISIBLE cable_probe_density_state { locset locations; std::string mechanism; std::string state; @@ -108,7 +111,7 @@ struct cable_probe_density_state { // Value of state variable `state` in density mechanism `mechanism` across components of the cell. // Sample value type: `cable_sample_range` // Sample metadata type: `mcable_list` -struct cable_probe_density_state_cell { +struct ARB_SYMBOL_VISIBLE cable_probe_density_state_cell { std::string mechanism; std::string state; }; @@ -116,7 +119,7 @@ struct cable_probe_density_state_cell { // Value of state variable `key` in point mechanism `source` at target `target`. // Sample value type: `double` // Sample metadata type: `cable_probe_point_info` -struct cable_probe_point_state { +struct ARB_SYMBOL_VISIBLE cable_probe_point_state { cell_lid_type target; std::string mechanism; std::string state; @@ -126,7 +129,7 @@ struct cable_probe_point_state { // Metadata has one entry of type cable_probe_point_info for each matched (possibly coalesced) instance. // Sample value type: `cable_sample_range` // Sample metadata type: `std::vector` -struct cable_probe_point_state_cell { +struct ARB_SYMBOL_VISIBLE cable_probe_point_state_cell { std::string mechanism; std::string state; }; @@ -134,7 +137,7 @@ struct cable_probe_point_state_cell { // Current density [A/m²] across membrane attributed to the ion `source` at `location`. // Sample value type: `double` // Sample metadata type: `mlocation` -struct cable_probe_ion_current_density { +struct ARB_SYMBOL_VISIBLE cable_probe_ion_current_density { locset locations; std::string ion; }; @@ -142,14 +145,14 @@ struct cable_probe_ion_current_density { // Total ionic current [nA] attributed to the ion `source` across components of the cell. // Sample value type: `cable_sample_range` // Sample metadata type: `mcable_list` -struct cable_probe_ion_current_cell { +struct ARB_SYMBOL_VISIBLE cable_probe_ion_current_cell { std::string ion; }; // Ionic internal concentration [mmol/L] of ion `source` at `location`. // Sample value type: `double` // Sample metadata type: `mlocation` -struct cable_probe_ion_int_concentration { +struct ARB_SYMBOL_VISIBLE cable_probe_ion_int_concentration { locset locations; std::string ion; }; @@ -157,14 +160,29 @@ struct cable_probe_ion_int_concentration { // Ionic internal concentration [mmol/L] of ion `source` across components of the cell. // Sample value type: `cable_sample_range` // Sample metadata type: `mcable_list` -struct cable_probe_ion_int_concentration_cell { +struct ARB_SYMBOL_VISIBLE cable_probe_ion_int_concentration_cell { + std::string ion; +}; + +// Ionic diffusive concentration [mmol/L] of ion `source` at `location`. +// Sample value type: `double` +// Sample metadata type: `mlocation` +struct ARB_SYMBOL_VISIBLE cable_probe_ion_diff_concentration { + locset locations; + std::string ion; +}; + +// Ionic diffusiev concentration [mmol/L] of ion `source` across components of the cell. +// Sample value type: `cable_sample_range` +// Sample metadata type: `mcable_list` +struct ARB_SYMBOL_VISIBLE cable_probe_ion_diff_concentration_cell { std::string ion; }; // Ionic external concentration [mmol/L] of ion `source` at `location`. // Sample value type: `double` // Sample metadata type: `mlocation` -struct cable_probe_ion_ext_concentration { +struct ARB_SYMBOL_VISIBLE cable_probe_ion_ext_concentration { locset locations; std::string ion; }; @@ -172,26 +190,34 @@ struct cable_probe_ion_ext_concentration { // Ionic external concentration [mmol/L] of ion `source` across components of the cell. // Sample value type: `cable_sample_range` // Sample metadata type: `mcable_list` -struct cable_probe_ion_ext_concentration_cell { +struct ARB_SYMBOL_VISIBLE cable_probe_ion_ext_concentration_cell { std::string ion; }; // Forward declare the implementation, for PIMPL. struct cable_cell_impl; - // Typed maps for access to painted and placed assignments: // // Mechanisms and initial ion data are further keyed by // mechanism name and ion name respectively. +using iexpr_map = std::unordered_map; + template -using region_assignment = +using region_assignment = std::conditional_t< + std::is_same_v || + std::is_same_v || + std::is_same_v, + std::unordered_map>, std::conditional_t< - std::is_same::value || std::is_same::value || - std::is_same::value || std::is_same::value, + std::is_same::value || + std::is_same::value || std::is_same::value || + std::is_same::value, std::unordered_map>, - mcable_map>; + std::conditional_t, + std::unordered_map>>, + mcable_map>>>; template struct placed { @@ -214,13 +240,13 @@ using location_assignment = using cable_cell_region_map = static_typed_map; + ion_diffusivity, init_ext_concentration, init_reversal_potential>; using cable_cell_location_map = static_typed_map; // High-level abstract representation of a cell. -class cable_cell { +class ARB_SYMBOL_VISIBLE cable_cell { public: using index_type = cell_lid_type; using size_type = cell_local_size_type; diff --git a/arbor/include/arbor/cable_cell_param.hpp b/arbor/include/arbor/cable_cell_param.hpp index d1ad2bfa66..b4307d0a84 100644 --- a/arbor/include/arbor/cable_cell_param.hpp +++ b/arbor/include/arbor/cable_cell_param.hpp @@ -6,17 +6,21 @@ #include #include #include +#include +#include #include #include +#include #include #include +#include namespace arb { // Specialized arbor exception for errors in cell building. -struct cable_cell_error: arbor_exception { +struct ARB_SYMBOL_VISIBLE cable_cell_error: arbor_exception { cable_cell_error(const std::string& what): arbor_exception("cable_cell: "+what) {} }; @@ -31,6 +35,7 @@ struct cable_cell_ion_data { std::optional init_int_concentration; std::optional init_ext_concentration; std::optional init_reversal_potential; + std::optional diffusivity; }; // Clamp current is described by a sine wave with amplitude governed by a @@ -47,7 +52,7 @@ struct cable_cell_ion_data { // Periodic envelopes are not supported, but may well be a feature worth // considering in the future. -struct i_clamp { +struct ARB_SYMBOL_VISIBLE i_clamp { struct envelope_point { double t; // [ms] double amplitude; // [nA] @@ -83,40 +88,46 @@ struct i_clamp { }; // Threshold detector description. -struct threshold_detector { +struct ARB_SYMBOL_VISIBLE threshold_detector { double threshold; }; // Setter types for painting physical and ion parameters or setting // cell-wide default: -struct init_membrane_potential { +struct ARB_SYMBOL_VISIBLE init_membrane_potential { double value = NAN; // [mV] }; -struct temperature_K { +struct ARB_SYMBOL_VISIBLE temperature_K { double value = NAN; // [K] }; -struct axial_resistivity { +struct ARB_SYMBOL_VISIBLE axial_resistivity { double value = NAN; // [Ω·cm] }; -struct membrane_capacitance { +struct ARB_SYMBOL_VISIBLE membrane_capacitance { double value = NAN; // [F/m²] }; -struct init_int_concentration { +struct ARB_SYMBOL_VISIBLE init_int_concentration { std::string ion = ""; double value = NAN; // [mM] }; -struct init_ext_concentration { + +struct ARB_SYMBOL_VISIBLE ion_diffusivity { + std::string ion = ""; + double value = NAN; // [m^2/s] +}; + +struct ARB_SYMBOL_VISIBLE init_ext_concentration { std::string ion = ""; double value = NAN; // [mM] }; -struct init_reversal_potential { +struct ARB_SYMBOL_VISIBLE init_reversal_potential { std::string ion = ""; double value = NAN; // [mV] }; @@ -126,7 +137,7 @@ struct init_reversal_potential { // density and point mechanisms to segments and // reversal potential computations to cells. -struct mechanism_desc { +struct ARB_SYMBOL_VISIBLE mechanism_desc { struct field_proxy { mechanism_desc* m; std::string key; @@ -184,8 +195,9 @@ struct mechanism_desc { std::unordered_map param_; }; + // Tagged mechanism types for dispatching decor::place() and decor::paint() calls -struct junction { +struct ARB_SYMBOL_VISIBLE junction { mechanism_desc mech; explicit junction(mechanism_desc m): mech(std::move(m)) {} junction(mechanism_desc m, const std::unordered_map& params): mech(std::move(m)) { @@ -195,7 +207,7 @@ struct junction { } }; -struct synapse { +struct ARB_SYMBOL_VISIBLE synapse { mechanism_desc mech; explicit synapse(mechanism_desc m): mech(std::move(m)) {} synapse(mechanism_desc m, const std::unordered_map& params): mech(std::move(m)) { @@ -205,7 +217,7 @@ struct synapse { } }; -struct density { +struct ARB_SYMBOL_VISIBLE density { mechanism_desc mech; explicit density(mechanism_desc m): mech(std::move(m)) {} density(mechanism_desc m, const std::unordered_map& params): mech(std::move(m)) { @@ -215,20 +227,35 @@ struct density { } }; -struct ion_reversal_potential_method { +struct ARB_SYMBOL_VISIBLE ion_reversal_potential_method { std::string ion; mechanism_desc method; }; +template +struct ARB_SYMBOL_VISIBLE scaled_mechanism { + TaggedMech t_mech; + std::unordered_map scale_expr; + + explicit scaled_mechanism(TaggedMech m) : t_mech(std::move(m)) {} + + scaled_mechanism& scale(std::string name, iexpr expr) { + scale_expr.insert_or_assign(name, expr); + return *this; + } +}; + using paintable = std::variant; + density, + scaled_mechanism>; using placeable = std::variant init_membrane_potential; // [mV] std::optional temperature_K; // [K] std::optional axial_resistivity; // [Ω·cm] @@ -273,7 +301,7 @@ struct cable_cell_parameter_set { // A flat description of defaults, paintings and placings that // are to be applied to a morphology in a cable_cell. -class decor { +class ARB_ARBOR_API decor { std::vector> paintings_; std::vector> placements_; cable_cell_parameter_set defaults_; @@ -283,21 +311,21 @@ class decor { const auto& placements() const {return placements_; } const auto& defaults() const {return defaults_; } - void paint(region, paintable); - void place(locset, placeable, cell_tag_type); - void set_default(defaultable); + decor& paint(region, paintable); + decor& place(locset, placeable, cell_tag_type); + decor& set_default(defaultable); }; -extern cable_cell_parameter_set neuron_parameter_defaults; +ARB_ARBOR_API extern cable_cell_parameter_set neuron_parameter_defaults; // Global cable cell data. -struct cable_cell_global_properties { +struct ARB_SYMBOL_VISIBLE cable_cell_global_properties { mechanism_catalogue catalogue = global_default_catalogue(); - // If >0, check membrane voltage magnitude is less than limit + // Optional check if membrane voltage magnitude is less than limit // during integration. - double membrane_voltage_limit_mV = 0; + std::optional membrane_voltage_limit_mV; // True => combine linear synapses for performance. bool coalesce_synapses = true; @@ -312,23 +340,24 @@ struct cable_cell_global_properties { cable_cell_parameter_set default_parameters; // Convenience methods for adding a new ion together with default ion values. - void add_ion(const std::string& ion_name, int charge, double init_iconc, double init_econc, double init_revpot) { + void add_ion(const std::string& ion_name, int charge, double init_iconc, double init_econc, double init_revpot, double diffusivity=0.0) { ion_species[ion_name] = charge; auto &ion_data = default_parameters.ion_data[ion_name]; - ion_data.init_int_concentration = init_iconc; - ion_data.init_ext_concentration = init_econc; + ion_data.init_int_concentration = init_iconc; + ion_data.init_ext_concentration = init_econc; ion_data.init_reversal_potential = init_revpot; + ion_data.diffusivity = diffusivity; } - void add_ion(const std::string& ion_name, int charge, double init_iconc, double init_econc, mechanism_desc revpot_mechanism) { - add_ion(ion_name, charge, init_iconc, init_econc, 0); + void add_ion(const std::string& ion_name, int charge, double init_iconc, double init_econc, mechanism_desc revpot_mechanism, double diffusivity=0.0) { + add_ion(ion_name, charge, init_iconc, init_econc, 0, diffusivity); default_parameters.reversal_potential_method[ion_name] = std::move(revpot_mechanism); } }; // Throw cable_cell_error if any default parameters are left unspecified, // or if the supplied ion data is incomplete. -void check_global_properties(const cable_cell_global_properties&); +ARB_ARBOR_API void check_global_properties(const cable_cell_global_properties&); } // namespace arb diff --git a/arbor/include/arbor/common_types.hpp b/arbor/include/arbor/common_types.hpp index 75141c0626..4cf6a41d6d 100644 --- a/arbor/include/arbor/common_types.hpp +++ b/arbor/include/arbor/common_types.hpp @@ -15,6 +15,7 @@ #include #include +#include namespace arb { @@ -69,6 +70,7 @@ struct lid_range { enum class lid_selection_policy { round_robin, + round_robin_halt, assert_univalent // throw if the range of possible lids is wider than 1 }; @@ -121,7 +123,7 @@ enum class backend_kind { // Enumeration used to indentify the cell type/kind, used by the model to // group equal kinds in the same cell group. -enum class cell_kind { +enum class ARB_SYMBOL_VISIBLE cell_kind { cable, // Our own special mc neuron. lif, // Leaky-integrate and fire neuron. spike_source, // Cell that generates spikes at a user-supplied sequence of time points. @@ -136,10 +138,10 @@ enum class binning_kind { following, // => round times down to previous event if within binning interval. }; -std::ostream& operator<<(std::ostream& o, lid_selection_policy m); -std::ostream& operator<<(std::ostream& o, cell_member_type m); -std::ostream& operator<<(std::ostream& o, cell_kind k); -std::ostream& operator<<(std::ostream& o, backend_kind k); +ARB_ARBOR_API std::ostream& operator<<(std::ostream& o, lid_selection_policy m); +ARB_ARBOR_API std::ostream& operator<<(std::ostream& o, cell_member_type m); +ARB_ARBOR_API std::ostream& operator<<(std::ostream& o, cell_kind k); +ARB_ARBOR_API std::ostream& operator<<(std::ostream& o, backend_kind k); } // namespace arb diff --git a/arbor/include/arbor/communication/mpi_error.hpp b/arbor/include/arbor/communication/mpi_error.hpp index 911447a1a0..626c1a5a24 100644 --- a/arbor/include/arbor/communication/mpi_error.hpp +++ b/arbor/include/arbor/communication/mpi_error.hpp @@ -5,6 +5,8 @@ #include +#include + namespace arb { enum class mpi_errc { @@ -79,9 +81,9 @@ template <> struct is_error_condition_enum: true_type {}; namespace arb { class mpi_error_category_impl; -const mpi_error_category_impl& mpi_error_category(); +ARB_ARBOR_API const mpi_error_category_impl& mpi_error_category(); -class mpi_error_category_impl: public std::error_category { +class ARB_SYMBOL_VISIBLE mpi_error_category_impl: public std::error_category { const char* name() const noexcept override; std::string message(int) const override; std::error_condition default_error_condition(int) const noexcept override; @@ -91,7 +93,7 @@ inline std::error_condition make_error_condition(mpi_errc ec) { return std::error_condition(static_cast(ec), mpi_error_category()); } -struct mpi_error: std::system_error { +struct ARB_SYMBOL_VISIBLE mpi_error: std::system_error { explicit mpi_error(int mpi_err): std::system_error(mpi_err, mpi_error_category()) {} diff --git a/arbor/include/arbor/context.hpp b/arbor/include/arbor/context.hpp index a61461ef65..f4fadc389d 100644 --- a/arbor/include/arbor/context.hpp +++ b/arbor/include/arbor/context.hpp @@ -2,6 +2,8 @@ #include +#include + namespace arb { // Requested dry-run parameters. @@ -45,32 +47,26 @@ struct proc_allocation { struct execution_context; // arb::context is an opaque handle for the execution context for use -// in the public API, implemented as a unique pointer. -// -// As execution_context is an incomplete type, an explicit deleter must be -// provided. -struct execution_context_deleter { - void operator()(execution_context*) const; -}; -using context = std::unique_ptr; +// in the public API, implemented as a shared pointer. +using context = std::shared_ptr; // Helpers for creating contexts. These are implemented in the back end. // Non-distributed context using the requested resources. -context make_context(const proc_allocation& resources = proc_allocation{}); +ARB_ARBOR_API context make_context(const proc_allocation& resources = proc_allocation{}); // Distributed context that uses MPI communicator comm, and local resources // described by resources. Or dry run context that uses dry_run_info. template -context make_context(const proc_allocation& resources, Comm comm); +ARB_ARBOR_API context make_context(const proc_allocation& resources, Comm comm); // Queries for properties of execution resources in a context. -std::string distribution_type(const context&); -bool has_gpu(const context&); -unsigned num_threads(const context&); -bool has_mpi(const context&); -unsigned num_ranks(const context&); -unsigned rank(const context&); +ARB_ARBOR_API std::string distribution_type(context); +ARB_ARBOR_API bool has_gpu(context); +ARB_ARBOR_API unsigned num_threads(context); +ARB_ARBOR_API bool has_mpi(context); +ARB_ARBOR_API unsigned num_ranks(context); +ARB_ARBOR_API unsigned rank(context); } diff --git a/arbor/include/arbor/cv_policy.hpp b/arbor/include/arbor/cv_policy.hpp index 917610a1d1..a1a5077cf1 100644 --- a/arbor/include/arbor/cv_policy.hpp +++ b/arbor/include/arbor/cv_policy.hpp @@ -3,6 +3,7 @@ #include #include +#include #include #include @@ -70,7 +71,7 @@ struct cv_policy_base { using cv_policy_base_ptr = std::unique_ptr; -struct cv_policy { +struct ARB_SYMBOL_VISIBLE cv_policy { cv_policy(const cv_policy_base& ref) { // implicit policy_ptr = ref.clone(); } @@ -102,8 +103,8 @@ struct cv_policy { cv_policy_base_ptr policy_ptr; }; -cv_policy operator+(const cv_policy&, const cv_policy&); -cv_policy operator|(const cv_policy&, const cv_policy&); +ARB_ARBOR_API cv_policy operator+(const cv_policy&, const cv_policy&); +ARB_ARBOR_API cv_policy operator|(const cv_policy&, const cv_policy&); // Common flags for CV policies; bitwise composable. @@ -115,7 +116,7 @@ namespace cv_policy_flag { }; } -struct cv_policy_explicit: cv_policy_base { +struct ARB_ARBOR_API cv_policy_explicit: cv_policy_base { explicit cv_policy_explicit(locset locs, region domain = reg::all()): locs_(std::move(locs)), domain_(std::move(domain)) {} @@ -132,7 +133,7 @@ struct cv_policy_explicit: cv_policy_base { region domain_; }; -struct cv_policy_single: cv_policy_base { +struct ARB_ARBOR_API cv_policy_single: cv_policy_base { explicit cv_policy_single(region domain = reg::all()): domain_(domain) {} @@ -148,7 +149,7 @@ struct cv_policy_single: cv_policy_base { region domain_; }; -struct cv_policy_max_extent: cv_policy_base { +struct ARB_ARBOR_API cv_policy_max_extent: cv_policy_base { cv_policy_max_extent(double max_extent, region domain, cv_policy_flag::value flags = cv_policy_flag::none): max_extent_(max_extent), domain_(std::move(domain)), flags_(flags) {} @@ -169,7 +170,7 @@ struct cv_policy_max_extent: cv_policy_base { cv_policy_flag::value flags_; }; -struct cv_policy_fixed_per_branch: cv_policy_base { +struct ARB_ARBOR_API cv_policy_fixed_per_branch: cv_policy_base { cv_policy_fixed_per_branch(unsigned cv_per_branch, region domain, cv_policy_flag::value flags = cv_policy_flag::none): cv_per_branch_(cv_per_branch), domain_(std::move(domain)), flags_(flags) {} @@ -190,7 +191,7 @@ struct cv_policy_fixed_per_branch: cv_policy_base { cv_policy_flag::value flags_; }; -struct cv_policy_every_segment: cv_policy_base { +struct ARB_ARBOR_API cv_policy_every_segment: cv_policy_base { explicit cv_policy_every_segment(region domain = reg::all()): domain_(std::move(domain)) {} diff --git a/arbor/include/arbor/domain_decomposition.hpp b/arbor/include/arbor/domain_decomposition.hpp index c798005035..21accd76c8 100644 --- a/arbor/include/arbor/domain_decomposition.hpp +++ b/arbor/include/arbor/domain_decomposition.hpp @@ -7,6 +7,7 @@ #include #include #include +#include #include namespace arb { @@ -32,10 +33,13 @@ struct group_description { /// distribution of cells across cell_groups and domains. /// A load balancing algorithm is responsible for generating the /// domain_decomposition, e.g. arb::partitioned_load_balancer(). -class domain_decomposition { +class ARB_ARBOR_API domain_decomposition { public: domain_decomposition() = delete; - domain_decomposition(const recipe& rec, const context& ctx, const std::vector& groups); + domain_decomposition(const recipe& rec, context ctx, const std::vector& groups); + + domain_decomposition(const domain_decomposition&) = default; + domain_decomposition& operator=(const domain_decomposition&) = default; int gid_domain(cell_gid_type gid) const; int num_domains() const; diff --git a/arbor/include/arbor/domdecexcept.hpp b/arbor/include/arbor/domdecexcept.hpp index 206f1c7628..aac8490733 100644 --- a/arbor/include/arbor/domdecexcept.hpp +++ b/arbor/include/arbor/domdecexcept.hpp @@ -2,41 +2,42 @@ #include +#include #include #include namespace arb { -struct dom_dec_exception: public arbor_exception { +struct ARB_SYMBOL_VISIBLE dom_dec_exception: public arbor_exception { dom_dec_exception(const std::string& what): arbor_exception("Invalid domain decomposition: " + what) {} }; -struct invalid_gj_cell_group: dom_dec_exception { +struct ARB_SYMBOL_VISIBLE invalid_gj_cell_group: dom_dec_exception { invalid_gj_cell_group(cell_gid_type gid_0, cell_gid_type gid_1); cell_gid_type gid_0, gid_1; }; -struct invalid_sum_local_cells: dom_dec_exception { +struct ARB_SYMBOL_VISIBLE invalid_sum_local_cells: dom_dec_exception { invalid_sum_local_cells(unsigned gc_wrong, unsigned gc_right); unsigned gc_wrong, gc_right; }; -struct duplicate_gid: dom_dec_exception { +struct ARB_SYMBOL_VISIBLE duplicate_gid: dom_dec_exception { duplicate_gid(cell_gid_type gid); cell_gid_type gid; }; -struct out_of_bounds: dom_dec_exception { +struct ARB_SYMBOL_VISIBLE out_of_bounds: dom_dec_exception { out_of_bounds(cell_gid_type gid, unsigned num_cells); cell_gid_type gid; unsigned num_cells; }; -struct invalid_backend: dom_dec_exception { +struct ARB_SYMBOL_VISIBLE invalid_backend: dom_dec_exception { invalid_backend(int rank); int rank; }; -struct incompatible_backend: dom_dec_exception { +struct ARB_SYMBOL_VISIBLE incompatible_backend: dom_dec_exception { incompatible_backend(int rank, cell_kind kind); int rank; cell_kind kind; diff --git a/arbor/include/arbor/event_generator.hpp b/arbor/include/arbor/event_generator.hpp index 85db87d8d2..5e14ecb44d 100644 --- a/arbor/include/arbor/event_generator.hpp +++ b/arbor/include/arbor/event_generator.hpp @@ -5,6 +5,7 @@ #include #include #include +#include #include #include @@ -49,116 +50,22 @@ namespace arb { // and `events(t2, t3)` to the same event generator must satisfy // 0 ≤ t0 ≤ t1 ≤ t2 ≤ t3. // -// `event_generator` objects have value semantics, and use type erasure -// to wrap implementation details. An `event_generator` can be constructed -// from an object of an implementation class Impl that is copy-constructable -// and otherwise provides `reset` and `events` methods following the -// API described above. -// -// Some pre-defined event generators are included: -// - `empty_generator`: produces no events -// - `schedule_generator`: produces events according to a time schedule. -// A target is selected using a label resolution function for every generated -// event. -// - `explicit_generator`: is constructed from a vector of {label, time, weight} -// objects. Explicit targets are generated from the labels using a resolution -// function before the first call to the `events` method. +// `event_generator` objects have value semantics. using event_seq = std::pair; using resolution_function = std::function; -// The simplest possible generator that generates no events. -// Declared ahead of event_generator so that it can be used as the default -// generator. -struct empty_generator { - void reset() {} - event_seq events(time_type, time_type) { - return {nullptr, nullptr}; - } - void resolve_label(resolution_function) {} -}; - -class event_generator { -public: - event_generator(): event_generator(empty_generator()) {} - - template , event_generator>::value, int> = 0> - event_generator(Impl&& impl): - impl_(new wrap(std::forward(impl))) - {} - - event_generator(event_generator&& other) = default; - event_generator& operator=(event_generator&& other) = default; - - event_generator(const event_generator& other): - impl_(other.impl_->clone()) - {} - - event_generator& operator=(const event_generator& other) { - impl_ = other.impl_->clone(); - return *this; - } - - void reset() { - impl_->reset(); - } - - event_seq events(time_type t0, time_type t1) { - return impl_->events(t0, t1); - } - - void resolve_label(resolution_function label_resolver) { - impl_->resolve_label(std::move(label_resolver)); - } - -private: - struct interface { - virtual void reset() = 0; - virtual void resolve_label(resolution_function) = 0; - virtual event_seq events(time_type, time_type) = 0; - virtual std::unique_ptr clone() = 0; - virtual ~interface() {} - }; - - std::unique_ptr impl_; - - template - struct wrap: interface { - explicit wrap(const Impl& impl): wrapped(impl) {} - explicit wrap(Impl&& impl): wrapped(std::move(impl)) {} - - event_seq events(time_type t0, time_type t1) override { - return wrapped.events(t0, t1); - } - - void reset() override { - wrapped.reset(); - } - - void resolve_label(resolution_function label_resolver) override { - wrapped.resolve_label(std::move(label_resolver)); - } - - std::unique_ptr clone() override { - return std::unique_ptr(new wrap(wrapped)); - } - - Impl wrapped; - }; -}; - -// Convenience routines for making schedule_generator: // Generate events with a fixed target and weight according to // a provided time schedule. -struct schedule_generator { - schedule_generator(cell_local_label_type target, float weight, schedule sched): +struct event_generator { + event_generator(cell_local_label_type target, float weight, schedule sched): target_(std::move(target)), weight_(weight), sched_(std::move(sched)) {} void resolve_label(resolution_function label_resolver) { - label_resolver_ = std::move(label_resolver); + resolved_ = label_resolver(target_); } void reset() { @@ -166,13 +73,15 @@ struct schedule_generator { } event_seq events(time_type t0, time_type t1) { + if (!resolved_) throw ; + auto tgt = *resolved_; auto ts = sched_.events(t0, t1); events_.clear(); events_.reserve(ts.second-ts.first); for (auto i = ts.first; i!=ts.second; ++i) { - events_.push_back(spike_event{label_resolver_(target_), *i, weight_}); + events_.push_back(spike_event{tgt, *i, weight_}); } return {events_.data(), events_.data()+events_.size()}; @@ -182,10 +91,21 @@ struct schedule_generator { pse_vector events_; cell_local_label_type target_; resolution_function label_resolver_; + std::optional resolved_; float weight_; schedule sched_; }; +// Simplest generator: just do nothing +inline +event_generator empty_generator( + cell_local_label_type target, + float weight) +{ + return event_generator(std::move(target), weight, schedule()); +} + + // Generate events at integer multiples of dt that lie between tstart and tstop. inline event_generator regular_generator( @@ -195,7 +115,7 @@ inline event_generator regular_generator( time_type dt, time_type tstop=terminal_time) { - return schedule_generator(std::move(target), weight, regular_schedule(tstart, dt, tstop)); + return event_generator(std::move(target), weight, regular_schedule(tstart, dt, tstop)); } template @@ -207,56 +127,19 @@ inline event_generator poisson_generator( const RNG& rng, time_type tstop=terminal_time) { - return schedule_generator(std::move(target), weight, poisson_schedule(tstart, rate_kHz, rng, tstop)); + return event_generator(std::move(target), weight, poisson_schedule(tstart, rate_kHz, rng, tstop)); } // Generate events from a predefined sorted event sequence. -struct explicit_generator { - struct labeled_synapse_event { - cell_local_label_type label; - time_type time; - float weight; - }; - - using lse_vector = std::vector; - - explicit_generator() = default; - explicit_generator(const explicit_generator&) = default; - explicit_generator(explicit_generator&&) = default; - - explicit_generator(const lse_vector& events): - input_events_(events), start_index_(0) {} - - void resolve_label(resolution_function label_resolver) { - for (const auto& e: input_events_) { - events_.push_back({label_resolver(e.label), e.time, e.weight}); - } - std::sort(events_.begin(), events_.end()); - } - - void reset() { - start_index_ = 0; - } - - event_seq events(time_type t0, time_type t1) { - const spike_event* lb = events_.data()+start_index_; - const spike_event* ub = events_.data()+events_.size(); - - lb = std::lower_bound(lb, ub, t0, event_time_less{}); - ub = std::lower_bound(lb, ub, t1, event_time_less{}); - - start_index_ = ub-events_.data(); - return {lb, ub}; - } - -private: - lse_vector input_events_; - pse_vector events_; - std::size_t start_index_ = 0; -}; - +template inline +event_generator explicit_generator(cell_local_label_type target, + float weight, + const S& s) +{ + return event_generator(std::move(target), weight, explicit_schedule(s)); +} } // namespace arb diff --git a/arbor/include/arbor/fvm_types.hpp b/arbor/include/arbor/fvm_types.hpp index 1b8849656b..d6d86111e4 100644 --- a/arbor/include/arbor/fvm_types.hpp +++ b/arbor/include/arbor/fvm_types.hpp @@ -1,19 +1,15 @@ #pragma once -#include +#include #include namespace arb { -using fvm_value_type = arb_value_type; -using fvm_size_type = arb_size_type; -using fvm_index_type = arb_index_type; - struct fvm_gap_junction { cell_lid_type local_idx; // Index relative to other gap junction sites on the cell. - fvm_size_type local_cv; // CV index of the local gap junction site. - fvm_size_type peer_cv; // CV index of the peer gap junction site. - fvm_value_type weight; // unit-less local weight of the connection. + arb_size_type local_cv; // CV index of the local gap junction site. + arb_size_type peer_cv; // CV index of the peer gap junction site. + arb_value_type weight; // unit-less local weight of the connection. }; ARB_DEFINE_LEXICOGRAPHIC_ORDERING(fvm_gap_junction, (a.local_cv, a.peer_cv, a.local_idx, a.weight), (b.local_cv, b.peer_cv, b.local_idx, b.weight)) diff --git a/arbor/include/arbor/gpu/cuda_api.hpp b/arbor/include/arbor/gpu/cuda_api.hpp index 12bfa476af..eaf4c5005d 100644 --- a/arbor/include/arbor/gpu/cuda_api.hpp +++ b/arbor/include/arbor/gpu/cuda_api.hpp @@ -5,6 +5,8 @@ #include #include +#include + namespace arb { namespace gpu { @@ -12,7 +14,7 @@ namespace gpu { using DeviceProp = cudaDeviceProp; -struct api_error_type { +struct ARB_SYMBOL_VISIBLE api_error_type { cudaError_t value; api_error_type(cudaError_t e): value(e) {} diff --git a/arbor/include/arbor/gpu/hip_api.hpp b/arbor/include/arbor/gpu/hip_api.hpp index 283f68bf4a..55c27c3e95 100644 --- a/arbor/include/arbor/gpu/hip_api.hpp +++ b/arbor/include/arbor/gpu/hip_api.hpp @@ -4,6 +4,8 @@ #include #include +#include + namespace arb { namespace gpu { @@ -11,7 +13,7 @@ namespace gpu { using DeviceProp = hipDeviceProp_t; -struct api_error_type { +struct ARB_SYMBOL_VISIBLE api_error_type { hipError_t value; api_error_type(hipError_t e): value(e) {} diff --git a/arbor/include/arbor/iexpr.hpp b/arbor/include/arbor/iexpr.hpp new file mode 100644 index 0000000000..6921b777ed --- /dev/null +++ b/arbor/include/arbor/iexpr.hpp @@ -0,0 +1,137 @@ +#pragma once + +// Implementations for inhomogeneous expressions. + +#include +#include +#include +#include + +#include +#include +#include +#include + +namespace arb { + +struct mprovider; + +enum class iexpr_type { + scalar, + distance, + proximal_distance, + distal_distance, + interpolation, + radius, + diameter, + add, + sub, + mul, + div, + exp, + log, + named +}; + +struct ARB_SYMBOL_VISIBLE iexpr { + // Convert to scalar expr type + iexpr(double value); + + iexpr_type type() const { return type_; } + + const std::any& args() const { return args_; } + + static iexpr scalar(double value); + + static iexpr pi(); + + static iexpr distance(double scale, locset loc); + + static iexpr distance(locset loc); + + static iexpr distance(double scale, region reg); + + static iexpr distance(region reg); + + static iexpr proximal_distance(double scale, locset loc); + + static iexpr proximal_distance(locset loc); + + static iexpr proximal_distance(double scale, region reg); + + static iexpr proximal_distance(region reg); + + static iexpr distal_distance(double scale, locset loc); + + static iexpr distal_distance(locset loc); + + static iexpr distal_distance(double scale, region reg); + + static iexpr distal_distance(region reg); + + static iexpr interpolation(double prox_value, + locset prox_list, + double dist_value, + locset dist_list); + + static iexpr interpolation(double prox_value, + region prox_list, + double dist_value, + region dist_list); + + static iexpr radius(double scale); + + static iexpr radius(); + + static iexpr diameter(double scale); + + static iexpr diameter(); + + static iexpr add(iexpr left, iexpr right); + + static iexpr sub(iexpr left, iexpr right); + + static iexpr mul(iexpr left, iexpr right); + + static iexpr div(iexpr left, iexpr right); + + static iexpr exp(iexpr value); + + static iexpr log(iexpr value); + + static iexpr named(std::string name); + + +private: + iexpr(iexpr_type type, std::any args): type_(type), args_(std::move(args)) {} + + iexpr_type type_; + std::any args_; +}; + +ARB_ARBOR_API std::ostream& operator<<(std::ostream& o, const iexpr& e); + +ARB_ARBOR_API inline iexpr operator+(iexpr a, iexpr b) { return iexpr::add(std::move(a), std::move(b)); } + +ARB_ARBOR_API inline iexpr operator-(iexpr a, iexpr b) { return iexpr::sub(std::move(a), std::move(b)); } + +ARB_ARBOR_API inline iexpr operator*(iexpr a, iexpr b) { return iexpr::mul(std::move(a), std::move(b)); } + +ARB_ARBOR_API inline iexpr operator/(iexpr a, iexpr b) { return iexpr::div(std::move(a), std::move(b)); } + +ARB_ARBOR_API inline iexpr operator+(iexpr a) { return a; } + +ARB_ARBOR_API inline iexpr operator-(iexpr a) { return iexpr::mul(-1.0, std::move(a)); } + +struct ARB_SYMBOL_VISIBLE iexpr_interface { + + virtual double eval(const mprovider& p, const mcable& c) const = 0; + + virtual ~iexpr_interface() = default; +}; + +using iexpr_ptr = std::shared_ptr; + +ARB_ARBOR_API iexpr_ptr thingify(const iexpr& expr, const mprovider& m); + +} // namespace arb diff --git a/arbor/include/arbor/lif_cell.hpp b/arbor/include/arbor/lif_cell.hpp index 35c2fa9880..cff3eeb551 100644 --- a/arbor/include/arbor/lif_cell.hpp +++ b/arbor/include/arbor/lif_cell.hpp @@ -1,11 +1,12 @@ #pragma once #include +#include namespace arb { // Model parameters of leaky integrate and fire neuron model. -struct lif_cell { +struct ARB_SYMBOL_VISIBLE lif_cell { cell_tag_type source; // Label of source. cell_tag_type target; // Label of target. diff --git a/arbor/include/arbor/load_balance.hpp b/arbor/include/arbor/load_balance.hpp index 44d966e4cf..31614403a4 100644 --- a/arbor/include/arbor/load_balance.hpp +++ b/arbor/include/arbor/load_balance.hpp @@ -3,6 +3,7 @@ #include #include +#include #include #include #include @@ -19,8 +20,8 @@ struct partition_hint { using partition_hint_map = std::unordered_map; -domain_decomposition partition_load_balance( +ARB_ARBOR_API domain_decomposition partition_load_balance( const recipe& rec, - const context& ctx, - partition_hint_map hint_map = {}); + context ctx, + const partition_hint_map& hint_map = {}); } // namespace arb diff --git a/arbor/include/arbor/mechanism.hpp b/arbor/include/arbor/mechanism.hpp index d5cc221dcc..5ab873af1d 100644 --- a/arbor/include/arbor/mechanism.hpp +++ b/arbor/include/arbor/mechanism.hpp @@ -18,20 +18,20 @@ class mechanism; using mechanism_ptr = std::unique_ptr; struct ion_state_view { - fvm_value_type* current_density; - fvm_value_type* reversal_potential; - fvm_value_type* internal_concentration; - fvm_value_type* external_concentration; - fvm_value_type* ionic_charge; + arb_value_type* current_density; + arb_value_type* reversal_potential; + arb_value_type* internal_concentration; + arb_value_type* external_concentration; + arb_value_type* ionic_charge; }; class mechanism { public: - using value_type = fvm_value_type; - using index_type = fvm_index_type; - using size_type = fvm_size_type; + using value_type = arb_value_type; + using index_type = arb_index_type; + using size_type = arb_size_type; - mechanism(const arb_mechanism_type m, + mechanism(const arb_mechanism_type& m, const arb_mechanism_interface& i): mech_{m}, iface_{i}, ppack_{} { if (mech_.abi_version != ARB_MECH_ABI_VERSION) throw unsupported_abi_error{mech_.abi_version}; state_prof_id = profile::profiler_region_id("advance:integrate:state:"+internal_name()); @@ -58,12 +58,12 @@ class mechanism { mechanism_ptr clone() const { return std::make_unique(mech_, iface_); } // Forward to interface methods - void initialize() { ppack_.vec_t = *time_ptr_ptr; iface_.init_mechanism(&ppack_); } - void update_current() { prof_enter(current_prof_id); ppack_.vec_t = *time_ptr_ptr; iface_.compute_currents(&ppack_); prof_exit(); } - void update_state() { prof_enter(state_prof_id); ppack_.vec_t = *time_ptr_ptr; iface_.advance_state(&ppack_); prof_exit(); } - void update_ions() { ppack_.vec_t = *time_ptr_ptr; iface_.write_ions(&ppack_); } - void post_event() { ppack_.vec_t = *time_ptr_ptr; iface_.post_event(&ppack_); } - void deliver_events(arb_deliverable_event_stream& stream) { ppack_.vec_t = *time_ptr_ptr; iface_.apply_events(&ppack_, &stream); } + void initialize() { iface_.init_mechanism(&ppack_); } + void update_current() { prof_enter(current_prof_id); iface_.compute_currents(&ppack_); prof_exit(); } + void update_state() { prof_enter(state_prof_id); iface_.advance_state(&ppack_); prof_exit(); } + void update_ions() { iface_.write_ions(&ppack_); } + void post_event() { iface_.post_event(&ppack_); } + void deliver_events(arb_deliverable_event_stream& stream) { iface_.apply_events(&ppack_, &stream); } // Per-cell group identifier for an instantiated mechanism. unsigned mechanism_id() const { return ppack_.mechanism_id; } @@ -71,7 +71,6 @@ class mechanism { arb_mechanism_type mech_; arb_mechanism_interface iface_; arb_mechanism_ppack ppack_; - arb_value_type** time_ptr_ptr = nullptr; private: #ifdef ARB_PROFILE_ENABLED @@ -91,21 +90,21 @@ class mechanism { struct mechanism_layout { // Maps in-instance index to CV index. - std::vector cv; + std::vector cv; // Maps in-instance index to peer CV index (only for gap-junctions). - std::vector peer_cv; + std::vector peer_cv; // Maps in-instance index to compartment contribution. - std::vector weight; + std::vector weight; // Number of logical point processes at in-instance index; // if empty, point processes are not coalesced and all multipliers are 1. - std::vector multiplicity; + std::vector multiplicity; }; struct mechanism_overrides { - // Global scalar parameters (any value down-conversion to fvm_value_type is the + // Global scalar parameters (any value down-conversion to arb_value_type is the // responsibility of the mechanism). std::unordered_map globals; diff --git a/arbor/include/arbor/mechanism_abi.h b/arbor/include/arbor/mechanism_abi.h index 69e11c7c47..6280c4ca68 100644 --- a/arbor/include/arbor/mechanism_abi.h +++ b/arbor/include/arbor/mechanism_abi.h @@ -9,7 +9,7 @@ extern "C" { // Version #define ARB_MECH_ABI_VERSION_MAJOR 0 -#define ARB_MECH_ABI_VERSION_MINOR 0 +#define ARB_MECH_ABI_VERSION_MINOR 2 #define ARB_MECH_ABI_VERSION_PATCH 1 #define ARB_MECH_ABI_VERSION ((ARB_MECH_ABI_VERSION_MAJOR * 10000L * 10000L) + (ARB_MECH_ABI_VERSION_MAJOR * 10000L) + ARB_MECH_ABI_VERSION_PATCH) @@ -28,7 +28,7 @@ typedef uint32_t arb_backend_kind; #define arb_backend_kind_cpu 1 #define arb_backend_kind_gpu 2 -inline const char* arb_mechsnism_kind_str(const arb_mechanism_kind& mech) { +inline const char* arb_mechanism_kind_str(const arb_mechanism_kind& mech) { switch (mech) { case arb_mechanism_kind_density: return "density mechanism kind"; case arb_mechanism_kind_point: return "point mechanism kind"; @@ -40,9 +40,11 @@ inline const char* arb_mechsnism_kind_str(const arb_mechanism_kind& mech) { // Ion state variables; view into shared_state typedef struct arb_ion_state { arb_value_type* current_density; + arb_value_type* conductivity; arb_value_type* reversal_potential; arb_value_type* internal_concentration; arb_value_type* external_concentration; + arb_value_type* diffusive_concentration; arb_value_type* ionic_charge; arb_index_type* index; } arb_ion_state; @@ -83,7 +85,6 @@ typedef struct arb_mechanism_ppack { arb_index_type n_detectors; // Number of spike detectors. arb_index_type* vec_ci; arb_index_type* vec_di; - const arb_value_type* vec_t; arb_value_type* vec_dt; arb_value_type* vec_v; arb_value_type* vec_i; @@ -181,6 +182,7 @@ typedef struct arb_ion_info { const char* name; bool write_int_concentration; bool write_ext_concentration; + bool use_diff_concentration; bool write_rev_potential; bool read_rev_potential; bool read_valence; @@ -208,6 +210,16 @@ typedef struct arb_mechanism_type { arb_size_type n_ions; } arb_mechanism_type; +// Bundle a type and its interfaces +typedef arb_mechanism_type (*arb_get_mechanism_type)(); +typedef arb_mechanism_interface* (*arb_get_mechanism_interface)(); + +typedef struct arb_mechanism { + arb_get_mechanism_type type; + arb_get_mechanism_interface i_cpu; + arb_get_mechanism_interface i_gpu; +} arb_mechanism; + #ifdef __cplusplus } #endif diff --git a/arbor/include/arbor/mechcat.hpp b/arbor/include/arbor/mechcat.hpp index 224437049f..c8f98bd329 100644 --- a/arbor/include/arbor/mechcat.hpp +++ b/arbor/include/arbor/mechcat.hpp @@ -6,6 +6,7 @@ #include #include +#include #include #include #include @@ -39,7 +40,7 @@ namespace arb { // catalogue_state comprises the private implementation of mechanism_catalogue. struct catalogue_state; -class mechanism_catalogue { +class ARB_ARBOR_API mechanism_catalogue { public: using value_type = double; @@ -109,11 +110,11 @@ class mechanism_catalogue { }; // References to global mechanism catalogues. -const mechanism_catalogue& global_default_catalogue(); -const mechanism_catalogue& global_allen_catalogue(); -const mechanism_catalogue& global_bbp_catalogue(); +ARB_ARBOR_API const mechanism_catalogue& global_default_catalogue(); +ARB_ARBOR_API const mechanism_catalogue& global_allen_catalogue(); +ARB_ARBOR_API const mechanism_catalogue& global_bbp_catalogue(); // Load catalogue from disk. -const mechanism_catalogue& load_catalogue(const std::string&); +ARB_ARBOR_API const mechanism_catalogue load_catalogue(const std::string&); } // namespace arb diff --git a/arbor/include/arbor/mechinfo.hpp b/arbor/include/arbor/mechinfo.hpp index f0b552957a..859337bd7c 100644 --- a/arbor/include/arbor/mechinfo.hpp +++ b/arbor/include/arbor/mechinfo.hpp @@ -10,6 +10,7 @@ #include #include +#include #include namespace arb { @@ -35,6 +36,8 @@ struct ion_dependency { bool write_concentration_int = false; bool write_concentration_ext = false; + bool access_concentration_diff = false; + bool read_reversal_potential = false; bool write_reversal_potential = false; @@ -52,7 +55,7 @@ struct ion_dependency { // Use a textual representation to ease readability. using mechanism_fingerprint = std::string; -struct mechanism_info { +struct ARB_ARBOR_API mechanism_info { // mechanism_info is a convenient subset of the ABI mech description mechanism_info(const arb_mechanism_type&); mechanism_info() = default; diff --git a/arbor/include/arbor/morph/cv_data.hpp b/arbor/include/arbor/morph/cv_data.hpp index 58dc1e7c13..0b0abfb830 100644 --- a/arbor/include/arbor/morph/cv_data.hpp +++ b/arbor/include/arbor/morph/cv_data.hpp @@ -2,6 +2,7 @@ #include +#include #include #include #include @@ -14,19 +15,19 @@ namespace arb { struct cell_cv_data_impl; // Stores info about the CV geometry of a discretized cable-cell -class cell_cv_data { +class ARB_ARBOR_API cell_cv_data { public: // Returns mcables comprising the CV at a given index. - mcable_list cables(fvm_size_type index) const; + mcable_list cables(arb_size_type index) const; // Returns the CV indices of the children of a given CV index. - std::vector children(fvm_size_type index) const; + std::vector children(arb_size_type index) const; // Returns the CV index of the parent of a given CV index. - fvm_index_type parent(fvm_size_type index) const; + arb_index_type parent(arb_size_type index) const; // Returns total number of CVs. - fvm_size_type size() const; + arb_size_type size() const; cell_cv_data(const cable_cell& cell, const locset& lset); @@ -42,13 +43,13 @@ class cell_cv_data { }; struct cv_proportion { - fvm_size_type idx; - fvm_value_type proportion; + arb_size_type idx; + arb_value_type proportion; }; // Construct cell_cv_geometry for cell from default cell discretization if it exists. -std::optional cv_data(const cable_cell& cell); +ARB_ARBOR_API std::optional cv_data(const cable_cell& cell); -std::vector intersect_region(const region& reg, const cell_cv_data& cvs, bool intergrate_by_length = false); +ARB_ARBOR_API std::vector intersect_region(const region& reg, const cell_cv_data& cvs, bool intergrate_by_length = false); } //namespace arb diff --git a/arbor/include/arbor/morph/embed_pwlin.hpp b/arbor/include/arbor/morph/embed_pwlin.hpp index 412e8997e9..c282cb1f97 100644 --- a/arbor/include/arbor/morph/embed_pwlin.hpp +++ b/arbor/include/arbor/morph/embed_pwlin.hpp @@ -4,6 +4,7 @@ #include +#include #include #include @@ -19,7 +20,7 @@ template struct pw_elements; // values defined over contiguous intervals. using pw_constant_fn = util::pw_elements; -struct embed_pwlin { +struct ARB_ARBOR_API embed_pwlin { explicit embed_pwlin(const arb::morphology& m); // Segment queries. @@ -43,23 +44,23 @@ struct embed_pwlin { mcable_list projection_cmp(msize_t bid, double proj_lim, comp_op op) const; // Computed length of mcable. - double integrate_length(mcable c) const; + double integrate_length(const mcable& c) const; double integrate_length(mlocation proxmal, mlocation distal) const; - double integrate_length(mcable c, const pw_constant_fn&) const; + double integrate_length(const mcable& c, const pw_constant_fn&) const; double integrate_length(msize_t bid, const pw_constant_fn&) const; // Membrane surface area of given mcable. - double integrate_area(mcable c) const; + double integrate_area(const mcable& c) const; double integrate_area(mlocation proxmal, mlocation distal) const; - double integrate_area(mcable c, const pw_constant_fn&) const; + double integrate_area(const mcable& c, const pw_constant_fn&) const; double integrate_area(msize_t bid, const pw_constant_fn&) const; // Integrated inverse cross-sectional area of given mcable. - double integrate_ixa(mcable c) const; + double integrate_ixa(const mcable& c) const; - double integrate_ixa(mcable c, const pw_constant_fn&) const; + double integrate_ixa(const mcable& c, const pw_constant_fn&) const; double integrate_ixa(msize_t bid, const pw_constant_fn&) const; // Length of whole branch. diff --git a/arbor/include/arbor/morph/isometry.hpp b/arbor/include/arbor/morph/isometry.hpp new file mode 100644 index 0000000000..cb06ee28dd --- /dev/null +++ b/arbor/include/arbor/morph/isometry.hpp @@ -0,0 +1,62 @@ +#pragma once + +#include +#include + +namespace arb { +// Represent a 3-d isometry as a rotation (via quaterion q_) +// and a subsequent translation (tx_, ty_, tz_). +struct ARB_ARBOR_API isometry { + + isometry() = default; + + // Composition: rotations are interpreted as applied to intrinsic + // coordinates (composed by right multiplication), and translations + // as applied to absolute coordinates (composed by addition). + + friend isometry operator*(const isometry& a, const isometry& b) { + return isometry(b.q_*a.q_, a.tx_+b.tx_, a.ty_+b.ty_, a.tz_+b.tz_); + } + + template + PointLike apply(PointLike p) const { + auto w = quaternion(p.x, p.y, p.z)^q_; + p.x = w.x+tx_; + p.y = w.y+ty_; + p.z = w.z+tz_; + return p; + } + +private: + using quaternion = arb::math::quaternion; + quaternion q_{1, 0, 0, 0}; + double tx_ = 0, ty_ = 0, tz_ = 0; + + isometry(quaternion q, double tx, double ty, double tz): + q_(std::move(q)), tx_(tx), ty_(ty), tz_(tz) {} + +public: + static isometry translate(double x, double y, double z) { + return isometry(quaternion{1, 0, 0, 0}, x, y, z); + } + + template + static isometry translate(const PointLike& p) { + return translate(p.x, p.y, p.z); + } + + // Rotate about axis in direction (ax, ay, az) by theta radians. + static isometry rotate(double theta, double ax, double ay, double az) { + double norm = std::sqrt(ax*ax+ay*ay+az*az); + double vscale = std::sin(theta/2)/norm; + + return isometry(quaternion{std::cos(theta/2), ax*vscale, ay*vscale, az*vscale}, 0, 0, 0); + } + + template + static isometry rotate(double theta, const PointLike& p) { + return rotate(theta, p.x, p.y, p.z); + } +}; + +} // arb diff --git a/arbor/include/arbor/morph/label_dict.hpp b/arbor/include/arbor/morph/label_dict.hpp index a68bab2b46..f7c43ec6bb 100644 --- a/arbor/include/arbor/morph/label_dict.hpp +++ b/arbor/include/arbor/morph/label_dict.hpp @@ -4,28 +4,39 @@ #include #include +#include #include #include +#include namespace arb { -class label_dict { +class ARB_ARBOR_API label_dict { using ps_map = std::unordered_map; using reg_map = std::unordered_map; + using iexpr_map = std::unordered_map; + ps_map locsets_; reg_map regions_; + iexpr_map iexpressions_; public: + // construct a label dict with SWC tags predefined + label_dict& add_swc_tags(); + void import(const label_dict& other, const std::string& prefix = ""); - void set(const std::string& name, locset ls); - void set(const std::string& name, region reg); + label_dict& set(const std::string& name, locset ls); + label_dict& set(const std::string& name, region reg); + label_dict& set(const std::string& name, iexpr e); std::optional region(const std::string& name) const; std::optional locset(const std::string& name) const; + std::optional iexpr(const std::string& name) const; const ps_map& locsets() const; const reg_map& regions() const; + const iexpr_map& iexpressions() const; std::size_t size() const; }; diff --git a/arbor/include/arbor/morph/locset.hpp b/arbor/include/arbor/morph/locset.hpp index e449df768a..ec127aea16 100644 --- a/arbor/include/arbor/morph/locset.hpp +++ b/arbor/include/arbor/morph/locset.hpp @@ -8,6 +8,7 @@ #include #include +#include #include #include @@ -18,7 +19,7 @@ struct mprovider; class locset; class locset_tag {}; -class locset { +class ARB_SYMBOL_VISIBLE locset { public: template >::value>> @@ -116,66 +117,66 @@ class region; namespace ls { // Explicit location on morphology. -locset location(msize_t branch, double pos); +ARB_ARBOR_API locset location(msize_t branch, double pos); // Set of terminal nodes on a morphology. -locset terminal(); +ARB_ARBOR_API locset terminal(); // The root node of a morphology. -locset root(); +ARB_ARBOR_API locset root(); // Named locset. -locset named(std::string); +ARB_ARBOR_API locset named(std::string); // The null (empty) set. -locset nil(); +ARB_ARBOR_API locset nil(); // Most distal points of a region. -locset most_distal(region reg); +ARB_ARBOR_API locset most_distal(region reg); // Most proximal points of a region. -locset most_proximal(region reg); +ARB_ARBOR_API locset most_proximal(region reg); // Translate locations in locset distance μm in the distal direction -locset distal_translate(locset ls, double distance); +ARB_ARBOR_API locset distal_translate(locset ls, double distance); // Translate locations in locset distance μm in the proximal direction -locset proximal_translate(locset ls, double distance); +ARB_ARBOR_API locset proximal_translate(locset ls, double distance); // Boundary points of a region. -locset boundary(region reg); +ARB_ARBOR_API locset boundary(region reg); // Completed boundary points of a region. // (Boundary of completed components.) -locset cboundary(region reg); +ARB_ARBOR_API locset cboundary(region reg); // Returns all locations in a locset that are also in the region. -locset restrict(locset ls, region reg); +ARB_ARBOR_API locset restrict(locset ls, region reg); // Returns locations that mark the segments. -locset segment_boundaries(); +ARB_ARBOR_API locset segment_boundaries(); // A range `left` to `right` of randomly selected locations with a // uniform distribution from region `reg` generated using `seed` -locset uniform(region reg, unsigned left, unsigned right, uint64_t seed); +ARB_ARBOR_API locset uniform(region reg, unsigned left, unsigned right, uint64_t seed); // Proportional location on every branch. -locset on_branches(double pos); +ARB_ARBOR_API locset on_branches(double pos); // Proportional locations on each component: // For each component C of the region, find locations L // s.t. dist(h, L) = r * max {dist(h, t) | t is a distal point in C}. -locset on_components(double relpos, region reg); +ARB_ARBOR_API locset on_components(double relpos, region reg); // Set of locations in the locset with duplicates removed, i.e. the support of the input multiset -locset support(locset); +ARB_ARBOR_API locset support(locset); } // namespace ls // Union of two locsets. -locset join(locset, locset); +ARB_ARBOR_API locset join(locset, locset); // Multiset sum of two locsets. -locset sum(locset, locset); +ARB_ARBOR_API locset sum(locset, locset); } // namespace arb diff --git a/arbor/include/arbor/morph/mcable_map.hpp b/arbor/include/arbor/morph/mcable_map.hpp index 76fae77970..ce2c270eec 100644 --- a/arbor/include/arbor/morph/mcable_map.hpp +++ b/arbor/include/arbor/morph/mcable_map.hpp @@ -57,8 +57,7 @@ struct mcable_map { bool insert(const mcable& c, T value) { auto opt_it = insertion_point(c); if (!opt_it) return false; - - elements_.insert(*opt_it, value_type{c, std::move(value)}); + elements_.emplace(*opt_it, c, std::move(value)); assert_invariants(); return true; } @@ -67,12 +66,10 @@ struct mcable_map { bool emplace(const mcable& c, Args&&... args) { auto opt_it = insertion_point(c); if (!opt_it) return false; - elements_.emplace(*opt_it, std::piecewise_construct, std::forward_as_tuple(c), std::forward_as_tuple(std::forward(args)...)); - assert_invariants(); return true; } @@ -82,7 +79,6 @@ struct mcable_map { s.reserve(elements_.size()); std::transform(elements_.begin(), elements_.end(), std::back_inserter(s), [](const auto& x) { return x.first; }); - return s; } diff --git a/arbor/include/arbor/morph/morphexcept.hpp b/arbor/include/arbor/morph/morphexcept.hpp index 13963c207c..8d1f8f5ce8 100644 --- a/arbor/include/arbor/morph/morphexcept.hpp +++ b/arbor/include/arbor/morph/morphexcept.hpp @@ -2,82 +2,83 @@ #include +#include #include #include namespace arb { -struct morphology_error: public arbor_exception { +struct ARB_SYMBOL_VISIBLE morphology_error: public arbor_exception { morphology_error(const std::string& what): arbor_exception(what) {} }; -struct invalid_mlocation: morphology_error { +struct ARB_SYMBOL_VISIBLE invalid_mlocation: morphology_error { invalid_mlocation(mlocation loc); mlocation loc; }; -struct no_such_branch: morphology_error { +struct ARB_SYMBOL_VISIBLE no_such_branch: morphology_error { no_such_branch(msize_t bid); msize_t bid; }; -struct no_such_segment: arbor_exception { +struct ARB_SYMBOL_VISIBLE no_such_segment: arbor_exception { explicit no_such_segment(msize_t sid); msize_t sid; }; -struct invalid_mcable: morphology_error { +struct ARB_SYMBOL_VISIBLE invalid_mcable: morphology_error { invalid_mcable(mcable cable); mcable cable; }; -struct invalid_mcable_list: morphology_error { +struct ARB_SYMBOL_VISIBLE invalid_mcable_list: morphology_error { invalid_mcable_list(); }; -struct invalid_segment_parent: morphology_error { +struct ARB_SYMBOL_VISIBLE invalid_segment_parent: morphology_error { invalid_segment_parent(msize_t parent, msize_t tree_size); msize_t parent; msize_t tree_size; }; -struct duplicate_stitch_id: morphology_error { +struct ARB_SYMBOL_VISIBLE duplicate_stitch_id: morphology_error { duplicate_stitch_id(const std::string& id); std::string id; }; -struct no_such_stitch: morphology_error { +struct ARB_SYMBOL_VISIBLE no_such_stitch: morphology_error { no_such_stitch(const std::string& id); std::string id; }; -struct missing_stitch_start: morphology_error { +struct ARB_SYMBOL_VISIBLE missing_stitch_start: morphology_error { missing_stitch_start(const std::string& id); std::string id; }; -struct invalid_stitch_position: morphology_error { +struct ARB_SYMBOL_VISIBLE invalid_stitch_position: morphology_error { invalid_stitch_position(const std::string& id, double along); std::string id; double along; }; -struct label_type_mismatch: morphology_error { +struct ARB_SYMBOL_VISIBLE label_type_mismatch: morphology_error { label_type_mismatch(const std::string& label); std::string label; }; -struct incomplete_branch: morphology_error { +struct ARB_SYMBOL_VISIBLE incomplete_branch: morphology_error { incomplete_branch(msize_t bid); msize_t bid; }; -struct unbound_name: morphology_error { +struct ARB_SYMBOL_VISIBLE unbound_name: morphology_error { unbound_name(const std::string& name); std::string name; }; -struct circular_definition: morphology_error { +struct ARB_SYMBOL_VISIBLE circular_definition: morphology_error { circular_definition(const std::string& name); std::string name; }; diff --git a/arbor/include/arbor/morph/morphology.hpp b/arbor/include/arbor/morph/morphology.hpp index 18da8ee386..b12f9b9827 100644 --- a/arbor/include/arbor/morph/morphology.hpp +++ b/arbor/include/arbor/morph/morphology.hpp @@ -4,6 +4,7 @@ #include #include +#include #include #include #include @@ -12,7 +13,7 @@ namespace arb { struct morphology_impl; -class morphology { +class ARB_ARBOR_API morphology { // Hold an immutable copy of the morphology implementation. std::shared_ptr impl_; @@ -54,7 +55,7 @@ class morphology { // without a morphology. // A morphology is required to assert the invariant that an mextent does // not contain branches not in the morphology. -struct mextent { +struct ARB_ARBOR_API mextent { mextent() = default; mextent(const mextent&) = default; mextent(mextent&&) = default; @@ -107,19 +108,15 @@ struct mextent { // Morphology utility functions. -mlocation canonical(const morphology&, mlocation); +ARB_ARBOR_API mlocation canonical(const morphology&, mlocation); // Find the set of locations in an mlocation_list for which there // are no other locations that are more proximal in that list. -mlocation_list minset(const morphology&, const mlocation_list&); +ARB_ARBOR_API mlocation_list minset(const morphology&, const mlocation_list&); // Find the set of locations in an mlocation_list for which there // are no other locations that are more distal in the list. -mlocation_list maxset(const morphology&, const mlocation_list&); - -// Reduced representation of an extent, excluding zero-length cables -// that are covered by more proximal or non-zero-length cables. -mcable_list canonical(const morphology& m, const mextent& a); +ARB_ARBOR_API mlocation_list maxset(const morphology&, const mlocation_list&); // Determine the components of an extent. // @@ -148,7 +145,7 @@ mcable_list canonical(const morphology& m, const mextent& a); // directed-path-connected in X, and such that for all x in E_i and all y in // E_j, with i not equal to j, x and y are not directed-path-connected in X. -std::vector components(const morphology& m, const mextent&); +ARB_ARBOR_API std::vector components(const morphology& m, const mextent&); } // namespace arb diff --git a/arbor/include/arbor/morph/mprovider.hpp b/arbor/include/arbor/morph/mprovider.hpp index 7cc3e1262c..40196c715a 100644 --- a/arbor/include/arbor/morph/mprovider.hpp +++ b/arbor/include/arbor/morph/mprovider.hpp @@ -1,24 +1,28 @@ #pragma once +#include #include #include +#include #include #include #include #include +#include namespace arb { using concrete_embedding = embed_pwlin; -struct mprovider { +struct ARB_ARBOR_API mprovider { mprovider(arb::morphology m, const label_dict& dict): mprovider(m, &dict) {} explicit mprovider(arb::morphology m): mprovider(m, nullptr) {} // Throw exception on missing or recursive definition. const mextent& region(const std::string& name) const; const mlocation_list& locset(const std::string& name) const; + const iexpr_ptr& iexpr(const std::string& name) const; // Read-only access to morphology and constructed embedding. const auto& morphology() const { return morphology_; } @@ -36,6 +40,7 @@ struct mprovider { // Maps are mutated only during initialization phase of mprovider. mutable std::unordered_map> regions_; mutable std::unordered_map> locsets_; + mutable std::unordered_map> iexpressions_; // Non-null only during initialization phase. mutable const label_dict* label_dict_ptr; diff --git a/arbor/include/arbor/morph/place_pwlin.hpp b/arbor/include/arbor/morph/place_pwlin.hpp index 223c287acb..6088a8ec07 100644 --- a/arbor/include/arbor/morph/place_pwlin.hpp +++ b/arbor/include/arbor/morph/place_pwlin.hpp @@ -7,70 +7,17 @@ #include #include +#include #include #include -#include +#include -namespace arb { - -struct isometry { - // Represent a 3-d isometry as a rotation (via quaterion q_) - // and a subsequent translation (tx_, ty_, tz_). - - isometry() = default; - - // Composition: rotations are interpreted as applied to intrinsic - // coordinates (composed by right multiplication), and translations - // as applied to absolute coordinates (composed by addition). - - friend isometry operator*(const isometry& a, const isometry& b) { - return isometry(b.q_*a.q_, a.tx_+b.tx_, a.ty_+b.ty_, a.tz_+b.tz_); - } - template - PointLike apply(PointLike p) const { - auto w = quaternion(p.x, p.y, p.z)^q_; - p.x = w.x+tx_; - p.y = w.y+ty_; - p.z = w.z+tz_; - return p; - } - -private: - using quaternion = arb::math::quaternion; - quaternion q_{1, 0, 0, 0}; - double tx_ = 0, ty_ = 0, tz_ = 0; - - isometry(quaternion q, double tx, double ty, double tz): - q_(std::move(q)), tx_(tx), ty_(ty), tz_(tz) {} - -public: - static isometry translate(double x, double y, double z) { - return isometry(quaternion{1, 0, 0, 0}, x, y, z); - } - - template - static isometry translate(const PointLike& p) { - return translate(p.x, p.y, p.z); - } - - // Rotate about axis in direction (ax, ay, az) by theta radians. - static isometry rotate(double theta, double ax, double ay, double az) { - double norm = std::sqrt(ax*ax+ay*ay+az*az); - double vscale = std::sin(theta/2)/norm; - - return isometry(quaternion{std::cos(theta/2), ax*vscale, ay*vscale, az*vscale}, 0, 0, 0); - } - - template - static isometry rotate(double theta, const PointLike& p) { - return rotate(theta, p.x, p.y, p.z); - } -}; +namespace arb { struct place_pwlin_data; -struct place_pwlin { +struct ARB_ARBOR_API place_pwlin { explicit place_pwlin(const morphology& m, const isometry& iso = isometry{}); // Any point corresponding to the location loc. @@ -85,9 +32,12 @@ struct place_pwlin { // Maximal set of segments or part segments whose union is coterminous with extent. std::vector all_segments(const mextent& extent) const; - // The closest location to p. Returns the location and its distance from the input coordinates. + // The closest location to p. Returns the location and its distance from the input coordinates. Ties are broken in favour of the most proximal point std::pair closest(double x, double y, double z) const; + // The closest location to p. Returns all possible locations and their shared distance from the input coordinates. + std::pair, double> all_closest(double x, double y, double z) const; + private: std::shared_ptr data_; }; diff --git a/arbor/include/arbor/morph/primitives.hpp b/arbor/include/arbor/morph/primitives.hpp index 919730a1e9..4be04670b1 100644 --- a/arbor/include/arbor/morph/primitives.hpp +++ b/arbor/include/arbor/morph/primitives.hpp @@ -5,6 +5,7 @@ #include #include +#include #include #include @@ -18,23 +19,17 @@ using msize_t = std::uint32_t; constexpr msize_t mnpos = msize_t(-1); // a morphology sample point: a 3D location and radius. -struct mpoint { +struct ARB_SYMBOL_VISIBLE mpoint { double x, y, z; // [µm] double radius; // [μm] - - friend bool operator==(const mpoint& l, const mpoint& r); friend std::ostream& operator<<(std::ostream&, const mpoint&); - friend bool operator==(const mpoint& a, const mpoint& b) { - return a.x==b.x && a.y==b.y && a.z==b.z && a.radius==b.radius; - } - friend bool operator!=(const mpoint& a, const mpoint& b) { - return !(a==b); - } }; -mpoint lerp(const mpoint& a, const mpoint& b, double u); -bool is_collocated(const mpoint& a, const mpoint& b); -double distance(const mpoint& a, const mpoint& b); +ARB_DEFINE_LEXICOGRAPHIC_ORDERING(mpoint, (a.x,a.y,a.z,a.radius), (b.x,b.y,b.z,b.radius)); + +ARB_ARBOR_API mpoint lerp(const mpoint& a, const mpoint& b, double u); +ARB_ARBOR_API bool is_collocated(const mpoint& a, const mpoint& b); +ARB_ARBOR_API double distance(const mpoint& a, const mpoint& b); // Indicate allowed comparison operations for classifying regions enum class comp_op { @@ -45,7 +40,7 @@ enum class comp_op { }; // Describe a cable segment between two adjacent samples. -struct msegment { +struct ARB_SYMBOL_VISIBLE msegment { msize_t id; mpoint prox; mpoint dist; @@ -54,33 +49,34 @@ struct msegment { friend std::ostream& operator<<(std::ostream&, const msegment&); }; +ARB_DEFINE_LEXICOGRAPHIC_ORDERING(msegment, (a.id,a.prox,a.dist,a.tag), (b.id,b.prox,b.dist,b.tag)); // Describe a specific location on a morpholology. -struct mlocation { +struct ARB_SYMBOL_VISIBLE mlocation { // The id of the branch. - msize_t branch; + msize_t branch = 0; // The relative position on the branch ∈ [0,1]. - double pos; + double pos = 0.0; friend std::ostream& operator<<(std::ostream&, const mlocation&); }; // branch ≠ npos and 0 ≤ pos ≤ 1 -bool test_invariants(const mlocation&); +ARB_ARBOR_API bool test_invariants(const mlocation&); ARB_DEFINE_LEXICOGRAPHIC_ORDERING(mlocation, (a.branch,a.pos), (b.branch,b.pos)); using mlocation_list = std::vector; -std::ostream& operator<<(std::ostream& o, const mlocation_list& l); +ARB_ARBOR_API std::ostream& operator<<(std::ostream& o, const mlocation_list& l); -// Tests whether each location in the list satisfies the invariants for a location, -// and that the locations in the vector are ordered. -bool test_invariants(const mlocation_list&); +//// Tests whether each location in the list satisfies the invariants for a location, +//// and that the locations in the vector are ordered. +//bool test_invariants(const mlocation_list&); // Multiset operations on location lists. -mlocation_list sum(const mlocation_list&, const mlocation_list&); -mlocation_list join(const mlocation_list&, const mlocation_list&); -mlocation_list intersection(const mlocation_list&, const mlocation_list&); -mlocation_list support(mlocation_list); +ARB_ARBOR_API mlocation_list sum(const mlocation_list&, const mlocation_list&); +ARB_ARBOR_API mlocation_list join(const mlocation_list&, const mlocation_list&); +ARB_ARBOR_API mlocation_list intersection(const mlocation_list&, const mlocation_list&); +ARB_ARBOR_API mlocation_list support(mlocation_list); // Describe an unbranched cable in the morphology. // @@ -88,7 +84,7 @@ mlocation_list support(mlocation_list); // They may be zero-length, and fork points in the morphology may have multiple, // equivalent zero-length cable representations. -struct mcable { +struct ARB_SYMBOL_VISIBLE mcable { // The id of the branch on which the cable lies. msize_t branch; @@ -112,12 +108,13 @@ struct mcable { ARB_DEFINE_LEXICOGRAPHIC_ORDERING(mcable, (a.branch,a.prox_pos,a.dist_pos), (b.branch,b.prox_pos,b.dist_pos)); using mcable_list = std::vector; -std::ostream& operator<<(std::ostream& o, const mcable_list& c); +ARB_ARBOR_API std::ostream& operator<<(std::ostream& o, const mcable_list& c); // Tests whether each cable in the list satisfies the invariants for a cable, // and that the cables in the vector are ordered. -bool test_invariants(const mcable_list&); +ARB_ARBOR_API bool test_invariants(const mcable_list&); } // namespace arb ARB_DEFINE_HASH(arb::mcable, a.branch, a.prox_pos, a.dist_pos); ARB_DEFINE_HASH(arb::mlocation, a.branch, a.pos); +ARB_DEFINE_HASH(arb::mpoint, a.x, a.y, a.z, a.radius); diff --git a/arbor/include/arbor/morph/region.hpp b/arbor/include/arbor/morph/region.hpp index 0f048860b3..a2825abf4d 100644 --- a/arbor/include/arbor/morph/region.hpp +++ b/arbor/include/arbor/morph/region.hpp @@ -8,6 +8,7 @@ #include #include +#include #include #include @@ -16,7 +17,7 @@ namespace arb { struct mprovider; struct region_tag {}; -class region { +class ARB_SYMBOL_VISIBLE region { public: template >::value>> @@ -100,7 +101,7 @@ class region { explicit wrap(Impl&& impl): wrapped(std::move(impl)) {} virtual std::unique_ptr clone() override { - return std::unique_ptr(new wrap(wrapped)); + return std::make_unique>(wrapped); } virtual mextent thingify(const mprovider& m) override { @@ -120,64 +121,64 @@ class locset; namespace reg { // An empty region. -region nil(); +ARB_ARBOR_API region nil(); // An explicit cable section. -region cable(msize_t, double, double); +ARB_ARBOR_API region cable(msize_t, double, double); // An explicit branch. -region branch(msize_t); +ARB_ARBOR_API region branch(msize_t); // Region with all segments with segment tag id. -region tagged(int id); +ARB_ARBOR_API region tagged(int id); // Region corresponding to a single segment. -region segment(int id); +ARB_ARBOR_API region segment(int id); // Region up to `distance` distal from points in `start`. -region distal_interval(locset start, double distance); +ARB_ARBOR_API region distal_interval(locset start, double distance); // Region up to `distance` proximal from points in `start`. -region proximal_interval(locset end, double distance); +ARB_ARBOR_API region proximal_interval(locset end, double distance); // Region with all segments with radius less than/less than or equal to r -region radius_lt(region reg, double r); -region radius_le(region reg, double r); +ARB_ARBOR_API region radius_lt(region reg, double r); +ARB_ARBOR_API region radius_le(region reg, double r); // Region with all segments with radius greater than/greater than or equal to r -region radius_gt(region reg, double r); -region radius_ge(region reg, double r); +ARB_ARBOR_API region radius_gt(region reg, double r); +ARB_ARBOR_API region radius_ge(region reg, double r); // Region with all segments with projection less than/less than or equal to r -region z_dist_from_root_lt(double r); -region z_dist_from_root_le(double r); +ARB_ARBOR_API region z_dist_from_root_lt(double r); +ARB_ARBOR_API region z_dist_from_root_le(double r); // Region with all segments with projection greater than/greater than or equal to r -region z_dist_from_root_gt(double r); -region z_dist_from_root_ge(double r); +ARB_ARBOR_API region z_dist_from_root_gt(double r); +ARB_ARBOR_API region z_dist_from_root_ge(double r); // Region with all segments in a cell. -region all(); +ARB_ARBOR_API region all(); // Region including all covers of included fork points. // (Pre-image of projection onto the topological tree.) -region complete(region); +ARB_ARBOR_API region complete(region); // Region associated with a name. -region named(std::string); +ARB_ARBOR_API region named(std::string); } // namespace reg // Union of two regions. -region join(region, region); +ARB_ARBOR_API region join(region, region); // Intersection of two regions. -region intersect(region, region); +ARB_ARBOR_API region intersect(region, region); // Closed complement of a region. -region complement(region); +ARB_ARBOR_API region complement(region); // (Closure of) set difference of two regions. -region difference(region a, region b); +ARB_ARBOR_API region difference(region a, region b); } // namespace arb diff --git a/arbor/include/arbor/morph/segment_tree.hpp b/arbor/include/arbor/morph/segment_tree.hpp index 4ce5a19ce2..7d59be59ae 100644 --- a/arbor/include/arbor/morph/segment_tree.hpp +++ b/arbor/include/arbor/morph/segment_tree.hpp @@ -5,12 +5,14 @@ #include #include +#include #include +#include namespace arb { /// Morphology composed of segments. -class segment_tree { +class ARB_ARBOR_API segment_tree { struct child_prop { int count; bool is_fork() const { return count>1; } @@ -51,8 +53,36 @@ class segment_tree { bool is_root(msize_t i) const; friend std::ostream& operator<<(std::ostream&, const segment_tree&); + + // compare two trees for _identity_, not _equivalence_ + friend bool operator==(const segment_tree& l, const segment_tree& r) { + return (l.size() == r.size()) && (l.parents() == r.parents()) && (l.segments() == r.segments()); + } + + // apply isometry by mapping over internal state + friend segment_tree apply(const segment_tree&, const isometry&); }; -} // namesapce arb +// Split a segment_tree T into two subtrees such that R is the subtree +// of T that starts at the given id and L is T without R. +ARB_ARBOR_API std::pair +split_at(const segment_tree&, msize_t); +// Join two subtrees L and R at a given id in L, such that `join_at` is inverse +// to `split_at` for a proper choice of id. +ARB_ARBOR_API segment_tree +join_at(const segment_tree&, msize_t, const segment_tree&); +// Trees are equivalent if +// 1. the current segments' prox and dist points and their tags are identical. +// 2. all sub-trees starting at the current segment are equivalent. +// Note that orderdoes *not* matter in opposition to ==. +ARB_ARBOR_API bool +equivalent(const segment_tree& a, + const segment_tree& b); + +// Apply isometry +ARB_ARBOR_API segment_tree +apply(const segment_tree&, const isometry&); + +} // namesapce arb diff --git a/arbor/include/arbor/morph/stitch.hpp b/arbor/include/arbor/morph/stitch.hpp index d5086642a1..c64b46e1de 100644 --- a/arbor/include/arbor/morph/stitch.hpp +++ b/arbor/include/arbor/morph/stitch.hpp @@ -6,6 +6,7 @@ #include #include +#include #include #include #include @@ -42,7 +43,7 @@ struct mstitch { struct stitch_builder_impl; struct stitched_morphology; -struct stitch_builder { +struct ARB_ARBOR_API stitch_builder { stitch_builder(); stitch_builder(const stitch_builder&) = delete; @@ -71,7 +72,7 @@ struct stitch_builder { struct stitched_morphology_impl; -struct stitched_morphology { +struct ARB_ARBOR_API stitched_morphology { stitched_morphology() = delete; stitched_morphology(const stitch_builder&); // implicit stitched_morphology(stitch_builder&&); // implicit diff --git a/arbor/include/arbor/profile/clock.hpp b/arbor/include/arbor/profile/clock.hpp index c4e9c5c9ca..f7183673ac 100644 --- a/arbor/include/arbor/profile/clock.hpp +++ b/arbor/include/arbor/profile/clock.hpp @@ -1,5 +1,7 @@ #pragma once +#include + typedef unsigned long long tick_type; // Assuming POSIX monotonic clock is available; add @@ -9,7 +11,7 @@ typedef unsigned long long tick_type; namespace arb { namespace profile { -tick_type posix_clock_gettime_monotonic_ns(); +ARB_ARBOR_API tick_type posix_clock_gettime_monotonic_ns(); struct posix_clock_monotonic { static constexpr double seconds_per_tick() { return 1.e-9; } diff --git a/arbor/include/arbor/profile/meter_manager.hpp b/arbor/include/arbor/profile/meter_manager.hpp index 9459023f2a..1b57c44f75 100644 --- a/arbor/include/arbor/profile/meter_manager.hpp +++ b/arbor/include/arbor/profile/meter_manager.hpp @@ -4,6 +4,7 @@ #include #include +#include #include #include #include @@ -25,10 +26,10 @@ struct measurement { std::string name; std::string units; std::vector> measurements; - measurement(std::string, std::string, const std::vector&, const context&); + measurement(std::string, std::string, const std::vector&, context); }; -class meter_manager { +class ARB_ARBOR_API meter_manager { private: bool started_ = false; @@ -40,8 +41,8 @@ class meter_manager { public: meter_manager(); - void start(const context& ctx); - void checkpoint(std::string name, const context& ctx); + void start(context ctx); + void checkpoint(std::string name, context ctx); const std::vector>& meters() const; const std::vector& checkpoint_names() const; @@ -58,8 +59,8 @@ struct meter_report { std::vector hosts; }; -meter_report make_meter_report(const meter_manager& manager, const context& ctx); -std::ostream& operator<<(std::ostream& o, const meter_report& report); +ARB_ARBOR_API meter_report make_meter_report(const meter_manager& manager, context ctx); +ARB_ARBOR_API std::ostream& operator<<(std::ostream& o, const meter_report& report); } // namespace profile } // namespace arb diff --git a/arbor/include/arbor/profile/profiler.hpp b/arbor/include/arbor/profile/profiler.hpp index f812d13d82..fd8dd980c5 100644 --- a/arbor/include/arbor/profile/profiler.hpp +++ b/arbor/include/arbor/profile/profiler.hpp @@ -5,6 +5,7 @@ #include #include +#include #include #include @@ -33,15 +34,16 @@ struct profile { double wall_time; }; +// TODO: remove declaration and update the docs void profiler_clear(); -void profiler_initialize(context& ctx); -void profiler_enter(std::size_t region_id); -void profiler_leave(); +ARB_ARBOR_API void profiler_initialize(context ctx); +ARB_ARBOR_API void profiler_enter(std::size_t region_id); +ARB_ARBOR_API void profiler_leave(); -profile profiler_summary(); -std::size_t profiler_region_id(const std::string& name); +ARB_ARBOR_API profile profiler_summary(); +ARB_ARBOR_API std::size_t profiler_region_id(const std::string& name); -std::ostream& operator<<(std::ostream&, const profile&); +ARB_ARBOR_API std::ostream& operator<<(std::ostream&, const profile&); } // namespace profile } // namespace arb diff --git a/arbor/include/arbor/recipe.hpp b/arbor/include/arbor/recipe.hpp index 2853d4d0b8..bf17317e42 100644 --- a/arbor/include/arbor/recipe.hpp +++ b/arbor/include/arbor/recipe.hpp @@ -4,6 +4,7 @@ #include #include +#include #include #include #include @@ -60,28 +61,43 @@ struct gap_junction_connection { peer(std::move(peer)), local(std::move(local)), weight(g) {} }; -class recipe { -public: - virtual cell_size_type num_cells() const = 0; - - // Cell description type will be specific to cell kind of cell with given gid. - virtual util::unique_any get_cell_description(cell_gid_type gid) const = 0; - virtual cell_kind get_cell_kind(cell_gid_type) const = 0; - - virtual std::vector event_generators(cell_gid_type) const { +struct ARB_ARBOR_API has_gap_junctions { + virtual std::vector gap_junctions_on(cell_gid_type) const { return {}; } +}; + +struct ARB_ARBOR_API has_synapses { virtual std::vector connections_on(cell_gid_type) const { return {}; } - virtual std::vector gap_junctions_on(cell_gid_type) const { +}; + +struct ARB_ARBOR_API has_probes { + virtual std::vector get_probes(cell_gid_type gid) const { return {}; } +}; - virtual std::vector get_probes(cell_gid_type gid) const { +struct ARB_ARBOR_API has_generators { + virtual std::vector event_generators(cell_gid_type) const { return {}; } +}; +// Toppings allow updating a simulation +struct ARB_ARBOR_API connectivity: public has_synapses, has_generators { + virtual ~connectivity() {} +}; + +// Recipes allow building a simulation by lazy queries +struct ARB_ARBOR_API recipe: public has_gap_junctions, has_probes, connectivity { + // number of cells to build + virtual cell_size_type num_cells() const = 0; + // Cell description type will be specific to cell kind of cell with given gid. + virtual util::unique_any get_cell_description(cell_gid_type gid) const = 0; + // Query cell kind per gid + virtual cell_kind get_cell_kind(cell_gid_type) const = 0; // Global property type will be specific to given cell kind. virtual std::any get_global_properties(cell_kind) const { return std::any{}; }; diff --git a/arbor/include/arbor/s_expr.hpp b/arbor/include/arbor/s_expr.hpp index e6ac0d5156..c5c4f51fa1 100644 --- a/arbor/include/arbor/s_expr.hpp +++ b/arbor/include/arbor/s_expr.hpp @@ -11,6 +11,8 @@ #include #include +#include + namespace arb { struct src_location { @@ -24,7 +26,7 @@ struct src_location { {} }; -std::ostream& operator<<(std::ostream& o, const src_location& l); +ARB_ARBOR_API std::ostream& operator<<(std::ostream& o, const src_location& l); enum class tok { nil, @@ -38,7 +40,7 @@ enum class tok { error // special error state marker }; -std::ostream& operator<<(std::ostream&, const tok&); +ARB_ARBOR_API std::ostream& operator<<(std::ostream&, const tok&); struct token { src_location loc; @@ -46,7 +48,7 @@ struct token { std::string spelling; }; -std::ostream& operator<<(std::ostream&, const token&); +ARB_ARBOR_API std::ostream& operator<<(std::ostream&, const token&); struct symbol { std::string str; @@ -57,7 +59,7 @@ inline symbol operator"" _symbol(const char* chars, size_t size) { return {chars}; } -struct s_expr { +struct ARB_ARBOR_API s_expr { template struct s_pair { U head = U(); @@ -212,6 +214,7 @@ struct s_expr { s_expr(s_expr l, s_expr r): state(pair_type(std::move(l), std::move(r))) {} + s_expr& operator=(const s_expr& s) { state = s.state; return *this; } explicit s_expr(std::string s): s_expr(token{{0,0}, tok::string, std::move(s)}) {} @@ -242,16 +245,16 @@ struct s_expr { const_iterator cbegin() const { return {*this}; } const_iterator cend() const { return const_iterator::sentinel{}; } - friend std::ostream& operator<<(std::ostream& o, const s_expr& x); + ARB_ARBOR_API friend std::ostream& operator<<(std::ostream& o, const s_expr& x); }; // Build s-expr from string -s_expr parse_s_expr(const std::string& line); +ARB_ARBOR_API s_expr parse_s_expr(const std::string& line); // Length of the s-expr -std::size_t length(const s_expr& l); +ARB_ARBOR_API std::size_t length(const s_expr& l); // Location of the head of the s-expr -src_location location(const s_expr& l); +ARB_ARBOR_API src_location location(const s_expr& l); } // namespace arb diff --git a/arbor/include/arbor/schedule.hpp b/arbor/include/arbor/schedule.hpp index e75903afe2..253efa7bf7 100644 --- a/arbor/include/arbor/schedule.hpp +++ b/arbor/include/arbor/schedule.hpp @@ -11,6 +11,7 @@ #include #include #include +#include // Time schedules for probe–sampler associations. @@ -103,7 +104,7 @@ inline schedule::schedule(): schedule(empty_schedule{}) {} // Common schedules // Schedule at k·dt for integral k≥0 within the interval [t0, t1). -class regular_schedule_impl { +class ARB_ARBOR_API regular_schedule_impl { public: explicit regular_schedule_impl(time_type t0, time_type dt, time_type t1): t0_(t0), t1_(t1), dt_(dt), oodt_(1./dt) @@ -135,7 +136,7 @@ inline schedule regular_schedule(time_type dt) { // Schedule at times given explicitly via a provided sorted sequence. -class explicit_schedule_impl { +class ARB_ARBOR_API explicit_schedule_impl { public: explicit_schedule_impl(const explicit_schedule_impl&) = default; explicit_schedule_impl(explicit_schedule_impl&&) = default; diff --git a/arbor/include/arbor/simd/avx.hpp b/arbor/include/arbor/simd/avx.hpp index 2aeaed9f19..1724021d70 100644 --- a/arbor/include/arbor/simd/avx.hpp +++ b/arbor/include/arbor/simd/avx.hpp @@ -3,7 +3,6 @@ // AVX/AVX2 SIMD intrinsics implementation. #ifdef __AVX__ - #include #include #include diff --git a/arbor/include/arbor/simd/implbase.hpp b/arbor/include/arbor/simd/implbase.hpp index 5461108838..4c3766b210 100644 --- a/arbor/include/arbor/simd/implbase.hpp +++ b/arbor/include/arbor/simd/implbase.hpp @@ -414,7 +414,6 @@ struct implbase { static void scatter(tag, const vector_type& s, scalar_type* p, const typename ImplIndex::vector_type& index) { typename ImplIndex::scalar_type o[width]; ImplIndex::copy_to(index, o); - store a; I::copy_to(s, a); diff --git a/arbor/include/arbor/simd/simd.hpp b/arbor/include/arbor/simd/simd.hpp index b0d3b02857..d9acc07fdb 100644 --- a/arbor/include/arbor/simd/simd.hpp +++ b/arbor/include/arbor/simd/simd.hpp @@ -104,7 +104,7 @@ detail::simd_mask_impl logical_not(const detail::simd_mask_impl& a) { } template -detail::simd_impl fma(const detail::simd_impl a, detail::simd_impl b, detail::simd_impl c) { +detail::simd_impl fma(const detail::simd_impl& a, detail::simd_impl b, detail::simd_impl c) { return detail::simd_impl::wrap(T::fma(a.value_, b.value_, c.value_)); } @@ -684,7 +684,7 @@ namespace detail { #undef ARB_DECLARE_BINARY_COMPARISON_ template - friend simd_impl arb::simd::fma(const simd_impl a, simd_impl b, simd_impl c); + friend simd_impl arb::simd::fma(const simd_impl& a, simd_impl b, simd_impl c); // Declare Indirect/Indirect indexed/Where Expression copy function as friends diff --git a/arbor/include/arbor/simple_sampler.hpp b/arbor/include/arbor/simple_sampler.hpp index ca227fee8d..196f1f1110 100644 --- a/arbor/include/arbor/simple_sampler.hpp +++ b/arbor/include/arbor/simple_sampler.hpp @@ -24,7 +24,7 @@ struct trace_entry { // `trace_data` wraps a std::vector of trace_entry with // a copy of the probe-specific metadata associated with a probe. // -// If `Meta` is void, ignore any metadta. +// If `Meta` is void, ignore any metadata. template struct trace_data: private std::vector> { diff --git a/arbor/include/arbor/simulation.hpp b/arbor/include/arbor/simulation.hpp index 1f4afc6926..a96e0cd7a2 100644 --- a/arbor/include/arbor/simulation.hpp +++ b/arbor/include/arbor/simulation.hpp @@ -4,10 +4,13 @@ #include #include #include +#include +#include #include #include #include +#include #include #include #include @@ -17,13 +20,21 @@ namespace arb { using spike_export_function = std::function&)>; +using epoch_function = std::function; // simulation_state comprises private implementation for simulation class. class simulation_state; -class simulation { +class ARB_ARBOR_API simulation { public: - simulation(const recipe& rec, const domain_decomposition& decomp, const context& ctx); + + simulation(const recipe& rec, context ctx, const domain_decomposition& decomp); + + simulation(const recipe& rec, + context ctx=make_context(), + std::function balancer=[](auto& r, auto c) { return partition_load_balance(r, c); }): simulation(rec, ctx, balancer(rec, ctx)) {} + + void update(const connectivity& rec); void reset(); @@ -32,7 +43,7 @@ class simulation { // Note: sampler functions may be invoked from a different thread than that // which called the `run` method. - sampler_association_handle add_sampler(cell_member_predicate probe_ids, + sampler_association_handle add_sampler(cell_member_predicate probeset_ids, schedule sched, sampler_function f, sampling_policy policy = sampling_policy::lax); void remove_sampler(sampler_association_handle); @@ -41,7 +52,7 @@ class simulation { // Return probe metadata, one entry per probe associated with supplied probe id, // or an empty vector if no local match for probe id. - std::vector get_probe_metadata(cell_member_type probe_id) const; + std::vector get_probe_metadata(cell_member_type probeset_id) const; std::size_t num_spikes() const; @@ -56,6 +67,10 @@ class simulation { // spike vector. void set_local_spike_callback(spike_export_function = spike_export_function{}); + // Register a callback that will be called at the end of each epoch, and at the + // start of the simulation. + void set_epoch_callback(epoch_function = epoch_function{}); + // Add events directly to targets. // Must be called before calling simulation::run, and must contain events that // are to be delivered at or after the current simulation time. @@ -67,4 +82,7 @@ class simulation { std::unique_ptr impl_; }; +// An epoch callback function that prints out a text progress bar. +ARB_ARBOR_API epoch_function epoch_progress_bar(); + } // namespace arb diff --git a/arbor/include/arbor/spike.hpp b/arbor/include/arbor/spike.hpp index 69b1558ec9..f804dfb578 100644 --- a/arbor/include/arbor/spike.hpp +++ b/arbor/include/arbor/spike.hpp @@ -17,7 +17,7 @@ struct basic_spike { basic_spike() = default; basic_spike(id_type s, time_type t): - source(s), time(t) + source(std::move(s)), time(t) {} friend bool operator==(const basic_spike& l, const basic_spike& r) { diff --git a/arbor/include/arbor/spike_event.hpp b/arbor/include/arbor/spike_event.hpp index 102f3c4240..405a357ba4 100644 --- a/arbor/include/arbor/spike_event.hpp +++ b/arbor/include/arbor/spike_event.hpp @@ -4,6 +4,7 @@ #include #include +#include #include namespace arb { @@ -33,6 +34,6 @@ struct cell_spike_events { using cse_vector = std::vector; -std::ostream& operator<<(std::ostream&, const spike_event&); +ARB_ARBOR_API std::ostream& operator<<(std::ostream&, const spike_event&); } // namespace arb diff --git a/arbor/include/arbor/spike_source_cell.hpp b/arbor/include/arbor/spike_source_cell.hpp index 9d04282730..16b91a46a1 100644 --- a/arbor/include/arbor/spike_source_cell.hpp +++ b/arbor/include/arbor/spike_source_cell.hpp @@ -1,6 +1,7 @@ #pragma once #include +#include #include namespace arb { @@ -8,12 +9,14 @@ namespace arb { // Cell description returned by recipe::cell_description(gid) for cells with // recipe::cell_kind(gid) returning cell_kind::spike_source -struct spike_source_cell { +struct ARB_SYMBOL_VISIBLE spike_source_cell { cell_tag_type source; // Label of source. - schedule seq; + std::vector seqs; spike_source_cell() = delete; - spike_source_cell(cell_tag_type source, schedule seq): source(std::move(source)), seq(std::move(seq)) {}; + template + spike_source_cell(cell_tag_type source, Seqs&&... seqs): source(std::move(source)), seqs{std::forward(seqs)...} {} + spike_source_cell(cell_tag_type source, std::vector seqs): source(std::move(source)), seqs(std::move(seqs)) {} }; } // namespace arb diff --git a/arbor/include/arbor/symmetric_recipe.hpp b/arbor/include/arbor/symmetric_recipe.hpp index 7fdf873221..57012d063c 100644 --- a/arbor/include/arbor/symmetric_recipe.hpp +++ b/arbor/include/arbor/symmetric_recipe.hpp @@ -2,6 +2,7 @@ #include +#include #include #include @@ -21,7 +22,7 @@ class tile: public recipe { // as many ranks as tile indicates. Its functions call the // underlying functions of tile and perform transformations // on the results when needed. -class symmetric_recipe: public recipe { +class ARB_ARBOR_API symmetric_recipe: public recipe { public: symmetric_recipe(std::unique_ptr rec): tiled_recipe_(std::move(rec)) {} diff --git a/arbor/include/arbor/util/any_ptr.hpp b/arbor/include/arbor/util/any_ptr.hpp index f148c566bb..80f5273c6d 100644 --- a/arbor/include/arbor/util/any_ptr.hpp +++ b/arbor/include/arbor/util/any_ptr.hpp @@ -29,14 +29,15 @@ #include #include +#include #include #include namespace arb { namespace util { -struct any_ptr { - any_ptr() {} +struct ARB_SYMBOL_VISIBLE any_ptr { + any_ptr() = default; any_ptr(std::nullptr_t) {} diff --git a/arbor/include/arbor/util/expected.hpp b/arbor/include/arbor/util/expected.hpp index 45ab99bc06..9d860f6536 100644 --- a/arbor/include/arbor/util/expected.hpp +++ b/arbor/include/arbor/util/expected.hpp @@ -44,7 +44,7 @@ struct bad_expected_access; template <> struct bad_expected_access: std::exception { - bad_expected_access() {} + bad_expected_access() = default; virtual const char* what() const noexcept override { return "bad expected access"; } }; diff --git a/arbor/include/arbor/util/scope_exit.hpp b/arbor/include/arbor/util/scope_exit.hpp index f353c1e219..30cdd8b7c0 100644 --- a/arbor/include/arbor/util/scope_exit.hpp +++ b/arbor/include/arbor/util/scope_exit.hpp @@ -50,7 +50,7 @@ namespace impl { struct wrap_std_function { std::function f; - wrap_std_function() noexcept {} + wrap_std_function() noexcept = default; wrap_std_function(const std::function& f): f(f) {} wrap_std_function(std::function&& f): f(std::move(f)) {} wrap_std_function(wrap_std_function&& other) noexcept { diff --git a/arbor/include/arbor/util/unique_any.hpp b/arbor/include/arbor/util/unique_any.hpp index 3b4ebffce3..9cbcf67d14 100644 --- a/arbor/include/arbor/util/unique_any.hpp +++ b/arbor/include/arbor/util/unique_any.hpp @@ -5,6 +5,7 @@ #include #include +#include #include #include @@ -44,7 +45,7 @@ namespace arb { namespace util { -class unique_any { +class ARB_SYMBOL_VISIBLE unique_any { public: constexpr unique_any() = default; diff --git a/arbor/include/arbor/util/visibility.hpp b/arbor/include/arbor/util/visibility.hpp new file mode 100644 index 0000000000..b818091cb4 --- /dev/null +++ b/arbor/include/arbor/util/visibility.hpp @@ -0,0 +1,51 @@ +#pragma once + +#if defined(__INTEL_COMPILER) || defined(__ICL) || defined(__ICC) || defined(__ECC) +// Intel +# if defined(_WIN32) || defined(__WIN32__) || defined(WIN32) || defined(__CYGWIN__) +# define ARB_SYMBOL_IMPORT __attribute__((__dllimport__)) +# define ARB_SYMBOL_EXPORT __attribute__((__dllexport__)) +# elif defined(__GNUC__) && (__GNUC__ >= 4) +# define ARB_SYMBOL_EXPORT __attribute__((visibility("default"))) +# define ARB_SYMBOL_VISIBLE __attribute__((__visibility__("default"))) +# endif + +#elif defined(__clang__) +// Clang C++ +# if defined(_WIN32) || defined(__WIN32__) || defined(WIN32) || defined(__CYGWIN__) +# define ARB_SYMBOL_IMPORT __attribute__((__dllimport__)) +# define ARB_SYMBOL_EXPORT __attribute__((__dllexport__)) +# else +# define ARB_SYMBOL_EXPORT __attribute__((__visibility__("default"))) +# define ARB_SYMBOL_VISIBLE __attribute__((__visibility__("default"))) +# endif + +# elif defined(__GNUC__) +// GNU C++: +# if __GNUC__ >= 4 +# if defined(_WIN32) || defined(__WIN32__) || defined(WIN32) || defined(__CYGWIN__) +# define ARB_SYMBOL_IMPORT __attribute__((__dllimport__)) +# define ARB_SYMBOL_EXPORT __attribute__((__dllexport__)) +# else +# define ARB_SYMBOL_EXPORT __attribute__((__visibility__("default"))) +# define ARB_SYMBOL_VISIBLE __attribute__((__visibility__("default"))) +# endif +# endif + +#endif + +#if defined(macintosh) || defined(__APPLE__) || defined(__APPLE_CC__) +// MacOS +# define ARB_ON_MACOS +#endif + +#ifndef ARB_SYMBOL_IMPORT +# define ARB_SYMBOL_IMPORT +#endif +#ifndef ARB_SYMBOL_EXPORT +# define ARB_SYMBOL_EXPORT +#endif +#ifndef ARB_SYMBOL_VISIBLE +# define ARB_SYMBOL_VISIBLE +#endif + diff --git a/arbor/include/git-source-id b/arbor/include/git-source-id index c3fc3ec9e4..f2cc49cbe4 100755 --- a/arbor/include/git-source-id +++ b/arbor/include/git-source-id @@ -44,16 +44,18 @@ done cat << __end__ #pragma once +#include + namespace arb { -extern const char* source_id; -extern const char* arch; -extern const char* build_config; -extern const char* version; -extern const char* full_build_id; +ARB_ARBOR_API extern const char* source_id; +ARB_ARBOR_API extern const char* arch; +ARB_ARBOR_API extern const char* build_config; +ARB_ARBOR_API extern const char* version; +ARB_ARBOR_API extern const char* full_build_id; constexpr int version_major = ${version_major}; constexpr int version_minor = ${version_minor}; constexpr int version_patch = ${version_patch}; -extern const char* version_dev; +ARB_ARBOR_API extern const char* version_dev; } #define ARB_SOURCE_ID "${gitlog}" diff --git a/arbor/label_resolution.cpp b/arbor/label_resolution.cpp index 43c9a688f2..8d5ddadbb7 100644 --- a/arbor/label_resolution.cpp +++ b/arbor/label_resolution.cpp @@ -78,7 +78,6 @@ lid_hopefully label_resolution_map::range_set::at(unsigned idx) const { // Offset into the range containing idx. const auto& range_part = part.at(ridx); auto offset = idx - range_part.first; - return start + offset; } @@ -126,6 +125,19 @@ lid_hopefully round_robin_state::update(const label_resolution_map::range_set& r return lid; } +cell_lid_type round_robin_state::get() { + return state; +} + +lid_hopefully round_robin_halt_state::update(const label_resolution_map::range_set& range_set) { + auto lid = range_set.at(state); + return lid; +} + +cell_lid_type round_robin_halt_state::get() { + return state; +} + lid_hopefully assert_univalent_state::update(const label_resolution_map::range_set& range_set) { if (range_set.size() != 1) { return util::unexpected("range is not univalent"); @@ -134,11 +146,29 @@ lid_hopefully assert_univalent_state::update(const label_resolution_map::range_s return range_set.at(0); } +cell_lid_type assert_univalent_state::get() { + return 0; +} + // resolver methods resolver::state_variant resolver::construct_state(lid_selection_policy pol) { switch (pol) { case lid_selection_policy::round_robin: return round_robin_state(); + case lid_selection_policy::round_robin_halt: + return round_robin_halt_state(); + case lid_selection_policy::assert_univalent: + return assert_univalent_state(); + default: return assert_univalent_state(); + } +} + +resolver::state_variant resolver::construct_state(lid_selection_policy pol, cell_lid_type state) { + switch (pol) { + case lid_selection_policy::round_robin: + return round_robin_state(state); + case lid_selection_policy::round_robin_halt: + return round_robin_halt_state(state); case lid_selection_policy::assert_univalent: return assert_univalent_state(); default: return assert_univalent_state(); @@ -151,15 +181,24 @@ cell_lid_type resolver::resolve(const cell_global_label_type& iden) { } const auto& range_set = label_map_->at(iden.gid, iden.label.tag); - // Construct state if if doesn't exist - if (!state_map_[iden.gid][iden.label.tag].count(iden.label.policy)) { - state_map_[iden.gid][iden.label.tag][iden.label.policy] = construct_state(iden.label.policy); - } - + // Policy round_robin_halt: use previous state of round_robin policy, if existent + if (iden.label.policy == lid_selection_policy::round_robin_halt + && state_map_[iden.gid][iden.label.tag].count(lid_selection_policy::round_robin)) { + cell_lid_type prev_state_rr = std::visit([range_set](auto& state) { return state.get(); }, state_map_[iden.gid][iden.label.tag][lid_selection_policy::round_robin]); + state_map_[iden.gid][iden.label.tag][lid_selection_policy::round_robin_halt] = construct_state(lid_selection_policy::round_robin_halt, prev_state_rr); + } + + // Construct state if it doesn't exist + if (!state_map_[iden.gid][iden.label.tag].count(iden.label.policy)) { + state_map_[iden.gid][iden.label.tag][iden.label.policy] = construct_state(iden.label.policy); + } + + // Update state auto lid = std::visit([range_set](auto& state) { return state.update(range_set); }, state_map_[iden.gid][iden.label.tag][iden.label.policy]); if (!lid) { throw arb::bad_connection_label(iden.gid, iden.label.tag, lid.error()); } + return lid.value(); } diff --git a/arbor/label_resolution.hpp b/arbor/label_resolution.hpp index 5912672e13..dbfe2014a9 100644 --- a/arbor/label_resolution.hpp +++ b/arbor/label_resolution.hpp @@ -3,6 +3,7 @@ #include #include +#include #include #include #include @@ -17,7 +18,7 @@ using lid_hopefully = arb::util::expected; // `sizes` is a partitioning vector for associating a cell with a set of // (label, range) pairs in `labels`, `ranges`. // gids of the cells are unknown. -class cell_label_range { +class ARB_ARBOR_API cell_label_range { public: cell_label_range() = default; cell_label_range(cell_label_range&&) = default; @@ -52,7 +53,7 @@ class cell_label_range { }; // Struct for associating each cell of `cell_label_range` with a gid. -struct cell_labels_and_gids { +struct ARB_ARBOR_API cell_labels_and_gids { cell_labels_and_gids() = default; cell_labels_and_gids(cell_label_range lr, std::vector gids); @@ -67,7 +68,7 @@ struct cell_labels_and_gids { // Class constructed from `cell_labels_and_ranges`: // Represents the information in the object in a more // structured manner for lid resolution in `resolver` -class label_resolution_map { +class ARB_ARBOR_API label_resolution_map { public: struct range_set { std::vector ranges; @@ -76,7 +77,7 @@ class label_resolution_map { lid_hopefully at(unsigned idx) const; }; - label_resolution_map() = delete; + label_resolution_map() = default; explicit label_resolution_map(const cell_labels_and_gids&); const range_set& at(const cell_gid_type& gid, const cell_tag_type& tag) const; @@ -86,27 +87,38 @@ class label_resolution_map { std::unordered_map> map; }; -struct round_robin_state { - cell_size_type state = 0; +struct ARB_ARBOR_API round_robin_state { + cell_lid_type state = 0; round_robin_state() : state(0) {}; round_robin_state(cell_lid_type state) : state(state) {}; + cell_lid_type get(); lid_hopefully update(const label_resolution_map::range_set& range); }; -struct assert_univalent_state { +struct ARB_ARBOR_API round_robin_halt_state { + cell_lid_type state = 0; + round_robin_halt_state() : state(0) {}; + round_robin_halt_state(cell_lid_type state) : state(state) {}; + cell_lid_type get(); + lid_hopefully update(const label_resolution_map::range_set& range); +}; + +struct ARB_ARBOR_API assert_univalent_state { + cell_lid_type get(); lid_hopefully update(const label_resolution_map::range_set& range); }; // Struct used for resolving the lid of a (gid, label, lid_selection_policy) input. // Requires a `label_resolution_map` which stores the constant mapping of (gid, label) pairs to lid sets. -struct resolver { +struct ARB_ARBOR_API resolver { resolver(const label_resolution_map* label_map): label_map_(label_map) {} cell_lid_type resolve(const cell_global_label_type& iden); private: - using state_variant = std::variant; + using state_variant = std::variant; state_variant construct_state(lid_selection_policy pol); + state_variant construct_state(lid_selection_policy pol, cell_lid_type state); const label_resolution_map* label_map_; std::unordered_map>> state_map_; diff --git a/arbor/lif_cell_group.cpp b/arbor/lif_cell_group.cpp index 64ca1c3644..0fa71789ec 100644 --- a/arbor/lif_cell_group.cpp +++ b/arbor/lif_cell_group.cpp @@ -18,7 +18,7 @@ lif_cell_group::lif_cell_group(const std::vector& gids, const rec } } // Default to no binning of events - set_binning_policy(binning_kind::none, 0); + lif_cell_group::set_binning_policy(binning_kind::none, 0); cells_.reserve(gids_.size()); last_time_updated_.resize(gids_.size()); @@ -59,7 +59,7 @@ void lif_cell_group::clear_spikes() { } // TODO: implement sampler -void lif_cell_group::add_sampler(sampler_association_handle h, cell_member_predicate probe_ids, +void lif_cell_group::add_sampler(sampler_association_handle h, cell_member_predicate probeset_ids, schedule sched, sampler_function fn, sampling_policy policy) {} void lif_cell_group::remove_sampler(sampler_association_handle h) {} void lif_cell_group::remove_all_samplers() {} @@ -119,4 +119,4 @@ void lif_cell_group::advance_cell(time_type tfinal, time_type dt, cell_gid_type // This is the last time a cell was updated. last_time_updated_[lid] = t; -} \ No newline at end of file +} diff --git a/arbor/lif_cell_group.hpp b/arbor/lif_cell_group.hpp index feda74c978..b89e442f86 100644 --- a/arbor/lif_cell_group.hpp +++ b/arbor/lif_cell_group.hpp @@ -2,6 +2,7 @@ #include +#include #include #include #include @@ -13,7 +14,7 @@ namespace arb { -class lif_cell_group: public cell_group { +class ARB_ARBOR_API lif_cell_group: public cell_group { public: using value_type = double; diff --git a/arbor/matrix.hpp b/arbor/matrix.hpp index 3bc7a54b85..3b69db5048 100644 --- a/arbor/matrix.hpp +++ b/arbor/matrix.hpp @@ -7,6 +7,8 @@ #include #include +#include + namespace arb { /// Hines matrix @@ -15,76 +17,46 @@ namespace arb { template class matrix { public: - using backend = Backend; - - // define basic types - using value_type = typename backend::value_type; - using index_type = typename backend::index_type; - using size_type = typename backend::size_type; - - // define storage types - using array = typename backend::array; - using iarray = typename backend::iarray; - - // back end specific storage for matrix state - using state = State; + using backend = Backend; + using array = typename backend::array; + using iarray = typename backend::iarray; + using const_view = const array&; + using state = State; // backend specific storage for matrix state matrix() = default; - matrix(const std::vector& pi, - const std::vector& ci, - const std::vector& cv_capacitance, - const std::vector& face_conductance, - const std::vector& cv_area, - const std::vector& cell_to_intdom): - parent_index_(pi.begin(), pi.end()), - cell_index_(ci.begin(), ci.end()), - cell_to_intdom_(cell_to_intdom.begin(), cell_to_intdom.end()), + matrix(const std::vector& pi, + const std::vector& ci, + const std::vector& cv_capacitance, + const std::vector& face_conductance, + const std::vector& cv_area, + const std::vector& cell_to_intdom): + num_cells_{ci.size() - 1}, state_(pi, ci, cv_capacitance, face_conductance, cv_area, cell_to_intdom) { - arb_assert(cell_index_[num_cells()] == index_type(parent_index_.size())); + arb_assert(cell_index()[num_cells()] == arb_index_type(parent_index().size())); } /// the dimension of the matrix (i.e. the number of rows or colums) - std::size_t size() const { - return parent_index_.size(); - } - + std::size_t size() const { return state_.size(); } /// the number of cell matrices that have been packed together - size_type num_cells() const { - return cell_index_.size() - 1; - } - + std::size_t num_cells() const { return num_cells_; } /// the vector holding the parent index - const iarray& p() const { return parent_index_; } - + const iarray& parent_index() const { return state_.parent_index; } /// the partition of the parent index over the cells - const iarray& cell_index() const { return cell_index_; } - + const iarray& cell_index() const { return state_.cell_cv_divs; } /// Solve the linear system into a given solution storage. - void solve(array& to) { - state_.solve(to); - } - + void solve(array& to) { state_.solve(to); } /// Assemble the matrix for given dt - void assemble(const array& dt_cell, const array& voltage, const array& current, const array& conductivity) { - state_.assemble(dt_cell, voltage, current, conductivity); - } + void assemble(const_view& dt, const_view& U, const_view& I, const_view& g) { state_.assemble(dt, U, I, g); } private: - /// the parent indice that describe matrix structure - iarray parent_index_; - - /// indexes that point to the start of each cell in the index - iarray cell_index_; - - /// indexes that point to the index of the integration domain - iarray cell_to_intdom_; + std::size_t num_cells_ = 0; public: - // Provide via public interface to make testing much easier. - // If you modify this directly without knowing what you are doing, - // you get what you deserve. + // Provide via public interface to make testing much easier. If you modify + // this directly without knowing what you are doing, you get what you + // deserve. state state_; }; diff --git a/arbor/mc_cell_group.cpp b/arbor/mc_cell_group.cpp index 8d140e6edc..f3ac374b68 100644 --- a/arbor/mc_cell_group.cpp +++ b/arbor/mc_cell_group.cpp @@ -38,7 +38,7 @@ mc_cell_group::mc_cell_group(const std::vector& gids, gids_(gids), lowered_(std::move(lowered)) { // Default to no binning of events - set_binning_policy(binning_kind::none, 0); + mc_cell_group::set_binning_policy(binning_kind::none, 0); // Build lookup table for gid to local index. for (auto i: util::count_along(gids_)) { @@ -94,7 +94,7 @@ void mc_cell_group::set_binning_policy(binning_kind policy, time_type bin_interv struct sampler_call_info { sampler_function sampler; - cell_member_type probe_id; + cell_member_type probeset_id; probe_tag tag; unsigned index; const fvm_probe_data* pdata_ptr; @@ -125,8 +125,8 @@ void reserve_scratch(fvm_probe_scratch& scratch, std::size_t n) { void run_samples( const missing_probe_info&, const sampler_call_info&, - const fvm_value_type*, - const fvm_value_type*, + const arb_value_type*, + const arb_value_type*, std::vector&, fvm_probe_scratch&) { @@ -136,14 +136,14 @@ void run_samples( void run_samples( const fvm_probe_scalar& p, const sampler_call_info& sc, - const fvm_value_type* raw_times, - const fvm_value_type* raw_samples, + const arb_value_type* raw_times, + const arb_value_type* raw_samples, std::vector& sample_records, fvm_probe_scratch&) { // Scalar probes do not need scratch space — provided that the user-presented - // sample type (double) matches the raw type (fvm_value_type). - static_assert(std::is_same::value, "require sample value translation"); + // sample type (double) matches the raw type (arb_value_type). + static_assert(std::is_same::value, "require sample value translation"); sample_size_type n_sample = sc.end_offset-sc.begin_offset; sample_records.clear(); @@ -151,14 +151,14 @@ void run_samples( sample_records.push_back(sample_record{time_type(raw_times[i]), &raw_samples[i]}); } - sc.sampler({sc.probe_id, sc.tag, sc.index, p.get_metadata_ptr()}, n_sample, sample_records.data()); + sc.sampler({sc.probeset_id, sc.tag, sc.index, p.get_metadata_ptr()}, n_sample, sample_records.data()); } void run_samples( const fvm_probe_interpolated& p, const sampler_call_info& sc, - const fvm_value_type* raw_times, - const fvm_value_type* raw_samples, + const arb_value_type* raw_times, + const arb_value_type* raw_samples, std::vector& sample_records, fvm_probe_scratch& scratch) { @@ -181,14 +181,14 @@ void run_samples( sample_records.push_back(sample_record{time_type(raw_times[offset]), &ctmp[j]}); } - sc.sampler({sc.probe_id, sc.tag, sc.index, p.get_metadata_ptr()}, n_sample, sample_records.data()); + sc.sampler({sc.probeset_id, sc.tag, sc.index, p.get_metadata_ptr()}, n_sample, sample_records.data()); } void run_samples( const fvm_probe_multi& p, const sampler_call_info& sc, - const fvm_value_type* raw_times, - const fvm_value_type* raw_samples, + const arb_value_type* raw_times, + const arb_value_type* raw_samples, std::vector& sample_records, fvm_probe_scratch& scratch) { @@ -211,14 +211,14 @@ void run_samples( sample_records.push_back(sample_record{time_type(raw_times[offset]), &csample_ranges[j]}); } - sc.sampler({sc.probe_id, sc.tag, sc.index, p.get_metadata_ptr()}, n_sample, sample_records.data()); + sc.sampler({sc.probeset_id, sc.tag, sc.index, p.get_metadata_ptr()}, n_sample, sample_records.data()); } void run_samples( const fvm_probe_weighted_multi& p, const sampler_call_info& sc, - const fvm_value_type* raw_times, - const fvm_value_type* raw_samples, + const arb_value_type* raw_times, + const arb_value_type* raw_samples, std::vector& sample_records, fvm_probe_scratch& scratch) { @@ -254,14 +254,14 @@ void run_samples( sample_records.push_back(sample_record{time_type(raw_times[offset]), &csample_ranges[j]}); } - sc.sampler({sc.probe_id, sc.tag, sc.index, p.get_metadata_ptr()}, n_sample, sample_records.data()); + sc.sampler({sc.probeset_id, sc.tag, sc.index, p.get_metadata_ptr()}, n_sample, sample_records.data()); } void run_samples( const fvm_probe_interpolated_multi& p, const sampler_call_info& sc, - const fvm_value_type* raw_times, - const fvm_value_type* raw_samples, + const arb_value_type* raw_times, + const arb_value_type* raw_samples, std::vector& sample_records, fvm_probe_scratch& scratch) { @@ -301,14 +301,14 @@ void run_samples( sample_records.push_back(sample_record{time_type(raw_times[offset]), &csample_ranges[j]}); } - sc.sampler({sc.probe_id, sc.tag, sc.index, p.get_metadata_ptr()}, n_sample, sample_records.data()); + sc.sampler({sc.probeset_id, sc.tag, sc.index, p.get_metadata_ptr()}, n_sample, sample_records.data()); } void run_samples( const fvm_probe_membrane_currents& p, const sampler_call_info& sc, - const fvm_value_type* raw_times, - const fvm_value_type* raw_samples, + const arb_value_type* raw_times, + const arb_value_type* raw_samples, std::vector& sample_records, fvm_probe_scratch& scratch) { @@ -339,7 +339,7 @@ void run_samples( const double* v = raw_samples+offset; for (auto cv: util::make_span(n_cv)) { - fvm_index_type parent_cv = p.cv_parent[cv]; + arb_index_type parent_cv = p.cv_parent[cv]; if (parent_cv+1==0) continue; double cond = p.cv_parent_cond[cv]; @@ -375,14 +375,14 @@ void run_samples( sample_records.push_back(sample_record{time_type(raw_times[offset]), &csample_ranges[j]}); } - sc.sampler({sc.probe_id, sc.tag, sc.index, p.get_metadata_ptr()}, n_sample, sample_records.data()); + sc.sampler({sc.probeset_id, sc.tag, sc.index, p.get_metadata_ptr()}, n_sample, sample_records.data()); } // Generic run_samples dispatches on probe info variant type. void run_samples( const sampler_call_info& sc, - const fvm_value_type* raw_times, - const fvm_value_type* raw_samples, + const arb_value_type* raw_times, + const arb_value_type* raw_samples, std::vector& sample_records, fvm_probe_scratch& scratch) { @@ -404,8 +404,8 @@ void mc_cell_group::advance(epoch ep, time_type dt, const event_lane_subrange& e util::sort_by(idx_sorted_by_intdom, [&](cell_size_type i) { return cell_to_intdom_[i]; }); /// Event merging on integration domain could benefit from the use of the logic from `tree_merge_events` - fvm_index_type ev_begin = 0, ev_mid = 0, ev_end = 0; - fvm_index_type prev_intdom = -1; + arb_index_type ev_begin = 0, ev_mid = 0, ev_end = 0; + arb_index_type prev_intdom = -1; for (auto i: util::count_along(gids_)) { unsigned count_staged = 0; @@ -476,7 +476,7 @@ void mc_cell_group::advance(epoch ep, time_type dt, const event_lane_subrange& e sample_size_type n_times = sample_times.size(); max_samples_per_call = std::max(max_samples_per_call, n_times); - for (cell_member_type pid: sa.probe_ids) { + for (cell_member_type pid: sa.probeset_ids) { auto cell_index = gid_index_map_.at(pid.gid); probe_tag tag = probe_map_.tag.at(pid); @@ -555,13 +555,13 @@ void mc_cell_group::advance(epoch ep, time_type dt, const event_lane_subrange& e } } -void mc_cell_group::add_sampler(sampler_association_handle h, cell_member_predicate probe_ids, +void mc_cell_group::add_sampler(sampler_association_handle h, cell_member_predicate probeset_ids, schedule sched, sampler_function fn, sampling_policy policy) { std::lock_guard guard(sampler_mex_); std::vector probeset = - util::assign_from(util::filter(util::keys(probe_map_.tag), probe_ids)); + util::assign_from(util::filter(util::keys(probe_map_.tag), probeset_ids)); if (!probeset.empty()) { auto result = sampler_map_.insert({h, sampler_association{std::move(sched), std::move(fn), std::move(probeset), policy}}); @@ -579,21 +579,21 @@ void mc_cell_group::remove_all_samplers() { sampler_map_.clear(); } -std::vector mc_cell_group::get_probe_metadata(cell_member_type probe_id) const { +std::vector mc_cell_group::get_probe_metadata(cell_member_type probeset_id) const { // Probe associations are fixed after construction, so we do not need to grab the mutex. - std::optional maybe_tag = util::value_by_key(probe_map_.tag, probe_id); + std::optional maybe_tag = util::value_by_key(probe_map_.tag, probeset_id); if (!maybe_tag) { return {}; } - auto data = probe_map_.data_on(probe_id); + auto data = probe_map_.data_on(probeset_id); std::vector result; result.reserve(data.size()); unsigned index = 0; for (const fvm_probe_data& item: data) { - result.push_back(probe_metadata{probe_id, *maybe_tag, index++, item.get_metadata_ptr()}); + result.push_back(probe_metadata{probeset_id, *maybe_tag, index++, item.get_metadata_ptr()}); } return result; diff --git a/arbor/mc_cell_group.hpp b/arbor/mc_cell_group.hpp index 173aae9ae6..45b6c540e8 100644 --- a/arbor/mc_cell_group.hpp +++ b/arbor/mc_cell_group.hpp @@ -7,6 +7,7 @@ #include #include +#include #include #include #include @@ -23,7 +24,7 @@ namespace arb { -class mc_cell_group: public cell_group { +class ARB_ARBOR_API mc_cell_group: public cell_group { public: mc_cell_group() = default; @@ -51,21 +52,21 @@ class mc_cell_group: public cell_group { spikes_.clear(); } - void add_sampler(sampler_association_handle h, cell_member_predicate probe_ids, + void add_sampler(sampler_association_handle h, cell_member_predicate probeset_ids, schedule sched, sampler_function fn, sampling_policy policy) override; void remove_sampler(sampler_association_handle h) override; void remove_all_samplers() override; - std::vector get_probe_metadata(cell_member_type probe_id) const override; + std::vector get_probe_metadata(cell_member_type probeset_id) const override; private: // List of the gids of the cells in the group. std::vector gids_; // Map from gid to integration domain id - std::vector cell_to_intdom_; + std::vector cell_to_intdom_; // Hash table for converting gid to local index std::unordered_map gid_index_map_; diff --git a/arbor/mechcat.cpp b/arbor/mechcat.cpp index 3dc187742e..06c60ed204 100644 --- a/arbor/mechcat.cpp +++ b/arbor/mechcat.cpp @@ -176,7 +176,7 @@ struct catalogue_state { // Set mechanism info (unchecked). void bind(const std::string& name, mechanism_info info) { - info_map_[name] = mechanism_info_ptr(new mechanism_info(std::move(info))); + info_map_[name] = std::make_unique(std::move(info)); } // Add derived mechanism (unchecked). @@ -488,9 +488,12 @@ struct catalogue_state { } } - apply_globals(apply_globals, implicit_deriv? implicit_deriv->parent: name, over); if (implicit_deriv) { - apply_deriv(over, implicit_deriv.value()); + apply_globals(apply_globals, implicit_deriv->parent, over); + apply_deriv(over, *implicit_deriv); + } + else { + apply_globals(apply_globals, name, over); } return over; @@ -592,8 +595,8 @@ std::pair mechanism_catalogue::instance_impl mechanism_catalogue::~mechanism_catalogue() = default; -const mechanism_catalogue& load_catalogue(const std::string& fn) { - typedef const void* global_catalogue_t(); +ARB_ARBOR_API const mechanism_catalogue load_catalogue(const std::string& fn) { + typedef void* global_catalogue_t(int*); global_catalogue_t* get_catalogue = nullptr; try { get_catalogue = util::dl_get_symbol(fn, "get_catalogue"); @@ -608,7 +611,32 @@ const mechanism_catalogue& load_catalogue(const std::string& fn) { * different lifetime than the actual catalogue itfself. This is not a leak, * as `dlopen` caches handles for us. */ - return *((const mechanism_catalogue*)get_catalogue()); + int count = -1; + auto mechs = (arb_mechanism*)get_catalogue(&count); + if (count <= 0) { + throw bad_catalogue_error{util::pprintf("Invalid mechanism count {} in shared object '{}'", count, fn)}; + } + mechanism_catalogue result; + for(int ix = 0; ix < count; ++ix) { + auto type = mechs[ix].type(); + auto name = std::string{type.name}; + if (name == "") { + throw bad_catalogue_error{util::pprintf("Empty name for mechanism in '{}'", fn)}; + } + auto icpu = mechs[ix].i_cpu(); + auto igpu = mechs[ix].i_gpu(); + if (!icpu && !igpu) { + throw bad_catalogue_error{util::pprintf("Empty interfaces for mechanism '{}'", name)}; + } + result.add(name, type); + if (icpu) { + result.register_implementation(name, std::make_unique(type, *icpu)); + } + if (igpu) { + result.register_implementation(name, std::make_unique(type, *igpu)); + } + } + return result; } } // namespace arb diff --git a/arbor/mechinfo.cpp b/arbor/mechinfo.cpp index b2dbd7d0c2..abb54ba72d 100644 --- a/arbor/mechinfo.cpp +++ b/arbor/mechinfo.cpp @@ -24,6 +24,7 @@ mechanism_info::mechanism_info(const arb_mechanism_type& m) { const auto& v = m.ions[idx]; ions[v.name] = { v.write_int_concentration, v.write_ext_concentration, + v.use_diff_concentration, v.read_rev_potential, v.write_rev_potential, v.read_valence, diff --git a/arbor/memory/allocator.hpp b/arbor/memory/allocator.hpp index 26ca109cb3..1c2a79f00e 100644 --- a/arbor/memory/allocator.hpp +++ b/arbor/memory/allocator.hpp @@ -173,9 +173,9 @@ class allocator : public Policy { using rebind = allocator; public: - allocator() {} - ~allocator() {} - allocator(allocator const&) {} + allocator() = default; + ~allocator() = default; + allocator(allocator const&) = default; pointer address(reference r) { return &r; diff --git a/arbor/memory/array_view.hpp b/arbor/memory/array_view.hpp index 53a69dfdca..0180f6fb5a 100644 --- a/arbor/memory/array_view.hpp +++ b/arbor/memory/array_view.hpp @@ -262,7 +262,7 @@ class array_view { } // do nothing for destructor: we don't own the memory in range - ~array_view() {} + ~array_view() = default; // test whether memory overlaps that referenced by other template < @@ -428,7 +428,7 @@ class const_array_view { } // do nothing for destructor: we don't own the memory in range - ~const_array_view() {} + ~const_array_view() = default; // test whether memory overlaps that referenced by other template < diff --git a/arbor/memory/gpu_wrappers.cpp b/arbor/memory/gpu_wrappers.cpp index d037f5b9b7..443bac893f 100644 --- a/arbor/memory/gpu_wrappers.cpp +++ b/arbor/memory/gpu_wrappers.cpp @@ -2,10 +2,11 @@ #include #include +#include #include "util.hpp" -#ifdef ARB_HAVE_GPU +#ifdef ARB_GPU_ENABLED #include diff --git a/arbor/merge_events.hpp b/arbor/merge_events.hpp index 9a8581f62e..9ce69241ea 100644 --- a/arbor/merge_events.hpp +++ b/arbor/merge_events.hpp @@ -3,6 +3,7 @@ #include #include +#include #include #include @@ -21,7 +22,7 @@ namespace impl { // The tournament tree is used internally by the merge_events method, and // it is not intended for use elsewhere. It is exposed here for unit testing // of its functionality. - class tourney_tree { + class ARB_ARBOR_API tourney_tree { using key_val = std::pair; public: diff --git a/arbor/morph/cv_data.cpp b/arbor/morph/cv_data.cpp index 410bac0cc4..ec4d68e762 100644 --- a/arbor/morph/cv_data.cpp +++ b/arbor/morph/cv_data.cpp @@ -41,14 +41,14 @@ cell_cv_data_impl::cell_cv_data_impl(const cable_cell& cell, const locset& lset) // proximal 'head' points, and recursing down branches in the morphology // within each CV. - constexpr fvm_index_type no_parent = -1; - std::vector> next_cv_head; // head loc, parent cv index + constexpr arb_index_type no_parent = -1; + std::vector> next_cv_head; // head loc, parent cv index next_cv_head.emplace_back(mlocation{mnpos, 0}, no_parent); mcable_list cables; std::vector branches; cv_cables_divs.push_back(0); - fvm_index_type cv_index = 0; + arb_index_type cv_index = 0; while (!next_cv_head.empty()) { auto next = pop(next_cv_head); @@ -110,34 +110,34 @@ cell_cv_data_impl::cell_cv_data_impl(const cable_cell& cell, const locset& lset) auto e = cv_children.end(); auto from = b; - for (fvm_index_type cv = 0; cvcv_cables_divs); auto view = util::subrange_view(impl_->cv_cables, partn[cv_index]); return mcable_list{view.begin(), view.end()}; } -std::vector cell_cv_data::children(fvm_size_type cv_index) const { +std::vector cell_cv_data::children(arb_size_type cv_index) const { auto partn = util::partition_view(impl_->cv_children_divs); auto view = util::subrange_view(impl_->cv_children, partn[cv_index]); - return std::vector{view.begin(), view.end()}; + return std::vector{view.begin(), view.end()}; } -fvm_index_type cell_cv_data::parent(fvm_size_type cv_index) const { +arb_index_type cell_cv_data::parent(arb_size_type cv_index) const { return impl_->cv_parent[cv_index]; } -fvm_size_type cell_cv_data::size() const { +arb_size_type cell_cv_data::size() const { return impl_->cv_parent.size(); } -std::optional cv_data(const cable_cell& cell) { +ARB_ARBOR_API std::optional cv_data(const cable_cell& cell) { if (auto policy = cell.decorations().defaults().discretization) { return cell_cv_data(cell, policy->cv_boundary_points(cell)); } @@ -154,7 +154,7 @@ cell_cv_data::cell_cv_data(const cable_cell& cell, const locset& lset): provider_(cell.provider()) {} -std::vector intersect_region(const region& reg, const cell_cv_data& geom, bool by_length) { +ARB_ARBOR_API std::vector intersect_region(const region& reg, const cell_cv_data& geom, bool by_length) { const auto& mp = geom.provider(); const auto& embedding = mp.embedding(); diff --git a/arbor/morph/cv_data.hpp b/arbor/morph/cv_data.hpp index 1e3e74713e..33644dc7b9 100644 --- a/arbor/morph/cv_data.hpp +++ b/arbor/morph/cv_data.hpp @@ -11,11 +11,11 @@ namespace arb { struct cell_cv_data_impl { mcable_list cv_cables; // CV unbranched sections, partitioned by CV. - std::vector cv_cables_divs; // Partitions cv_cables by CV index. + std::vector cv_cables_divs; // Partitions cv_cables by CV index. - std::vector cv_parent; // Index of CV parent or size_type(-1) for a cell root CV. - std::vector cv_children; // CV child indices, partitioned by CV, and then in order. - std::vector cv_children_divs; // Paritions cv_children by CV index. + std::vector cv_parent; // Index of CV parent or size_type(-1) for a cell root CV. + std::vector cv_children; // CV child indices, partitioned by CV, and then in order. + std::vector cv_children_divs; // Paritions cv_children by CV index. cell_cv_data_impl() = default; cell_cv_data_impl(const cable_cell&, const locset&); diff --git a/arbor/morph/embed_pwlin.cpp b/arbor/morph/embed_pwlin.cpp index dfe84c73d3..474cabf9fb 100644 --- a/arbor/morph/embed_pwlin.cpp +++ b/arbor/morph/embed_pwlin.cpp @@ -176,15 +176,15 @@ double embed_pwlin::integrate_ixa(msize_t bid, const pw_constant_fn& g) const { // Integrate over cable: -double embed_pwlin::integrate_length(mcable c) const { +double embed_pwlin::integrate_length(const mcable& c) const { return integrate_length(c.branch, pw_constant_fn{{c.prox_pos, c.dist_pos}, {1.}}); } -double embed_pwlin::integrate_area(mcable c) const { +double embed_pwlin::integrate_area(const mcable& c) const { return integrate_area(c.branch, pw_constant_fn{{c.prox_pos, c.dist_pos}, {1.}}); } -double embed_pwlin::integrate_ixa(mcable c) const { +double embed_pwlin::integrate_ixa(const mcable& c) const { return integrate_ixa(c.branch, pw_constant_fn{{c.prox_pos, c.dist_pos}, {1.}}); } @@ -194,15 +194,15 @@ static pw_constant_fn restrict(const pw_constant_fn& g, double left, double righ return pw_zip_with(g, pw_elements{{left, right}}); } -double embed_pwlin::integrate_length(mcable c, const pw_constant_fn& g) const { +double embed_pwlin::integrate_length(const mcable& c, const pw_constant_fn& g) const { return integrate_length(c.branch, restrict(g, c.prox_pos, c.dist_pos)); } -double embed_pwlin::integrate_area(mcable c, const pw_constant_fn& g) const { +double embed_pwlin::integrate_area(const mcable& c, const pw_constant_fn& g) const { return integrate_area(c.branch, restrict(g, c.prox_pos, c.dist_pos)); } -double embed_pwlin::integrate_ixa(mcable c, const pw_constant_fn& g) const { +double embed_pwlin::integrate_ixa(const mcable& c, const pw_constant_fn& g) const { return integrate_ixa(c.branch, restrict(g, c.prox_pos, c.dist_pos)); } diff --git a/arbor/morph/label_dict.cpp b/arbor/morph/label_dict.cpp index 9c514604a1..ba0c4d83cd 100644 --- a/arbor/morph/label_dict.cpp +++ b/arbor/morph/label_dict.cpp @@ -9,22 +9,40 @@ namespace arb { +label_dict& label_dict::add_swc_tags() { + set("soma", reg::tagged(1)); + set("axon", reg::tagged(2)); + set("dend", reg::tagged(3)); + set("apic", reg::tagged(4)); + return *this; +} + size_t label_dict::size() const { return locsets_.size() + regions_.size(); } -void label_dict::set(const std::string& name, arb::locset ls) { - if (regions_.count(name)) { +label_dict& label_dict::set(const std::string& name, arb::locset ls) { + if (regions_.count(name) || iexpressions_.count(name)) { throw label_type_mismatch(name); } locsets_[name] = std::move(ls); + return *this; } -void label_dict::set(const std::string& name, arb::region reg) { - if (locsets_.count(name)) { +label_dict& label_dict::set(const std::string& name, arb::region reg) { + if (locsets_.count(name) || iexpressions_.count(name)) { throw label_type_mismatch(name); } regions_[name] = std::move(reg); + return *this; +} + +label_dict& label_dict::set(const std::string& name, arb::iexpr e) { + if (locsets_.count(name) || regions_.count(name)) { + throw label_type_mismatch(name); + } + iexpressions_.insert_or_assign(name, std::move(e)); + return *this; } void label_dict::import(const label_dict& other, const std::string& prefix) { @@ -34,6 +52,9 @@ void label_dict::import(const label_dict& other, const std::string& prefix) { for (const auto& entry: other.regions()) { set(prefix+entry.first, entry.second); } + for (const auto& entry: other.iexpressions()) { + set(prefix+entry.first, entry.second); + } } std::optional label_dict::region(const std::string& name) const { @@ -48,6 +69,12 @@ std::optional label_dict::locset(const std::string& name) const { return it->second; } +std::optional label_dict::iexpr(const std::string& name) const { + auto it = iexpressions_.find(name); + if (it==iexpressions_.end()) return std::nullopt; + return it->second; +} + const std::unordered_map& label_dict::locsets() const { return locsets_; } @@ -56,4 +83,8 @@ const std::unordered_map& label_dict::regions() const { return regions_; } +const std::unordered_map& label_dict::iexpressions() const { + return iexpressions_; +} + } // namespace arb diff --git a/arbor/morph/locset.cpp b/arbor/morph/locset.cpp index 0cb46fe2d9..dc50351051 100644 --- a/arbor/morph/locset.cpp +++ b/arbor/morph/locset.cpp @@ -23,7 +23,7 @@ namespace arb { namespace ls { // Throw on invalid mlocation. -void assert_valid(mlocation x) { +void assert_valid(const mlocation& x) { if (!test_invariants(x)) { throw invalid_mlocation(x); } @@ -33,7 +33,7 @@ void assert_valid(mlocation x) { struct nil_: locset_tag {}; -locset nil() { +ARB_ARBOR_API locset nil() { return locset{nil_{}}; } @@ -52,7 +52,7 @@ struct location_: locset_tag { mlocation loc; }; -locset location(msize_t branch, double pos) { +ARB_ARBOR_API locset location(msize_t branch, double pos) { mlocation loc{branch, pos}; assert_valid(loc); return locset{location_{loc}}; @@ -101,7 +101,7 @@ std::ostream& operator<<(std::ostream& o, const location_list_& x) { struct terminal_: locset_tag {}; -locset terminal() { +ARB_ARBOR_API locset terminal() { return locset{terminal_{}}; } @@ -119,7 +119,7 @@ std::ostream& operator<<(std::ostream& o, const terminal_& x) { // Translate locations in locset distance μm in the proximal direction struct proximal_translate_: locset_tag { - proximal_translate_(const locset& ls, double distance): start(ls), distance(distance) {} + proximal_translate_(locset ls, double distance): start(std::move(ls)), distance(distance) {} locset start; double distance; }; @@ -162,8 +162,8 @@ mlocation_list thingify_(const proximal_translate_& dt, const mprovider& p) { return L; } -locset proximal_translate(locset ls, double distance) { - return locset(proximal_translate_{ls, distance}); +ARB_ARBOR_API locset proximal_translate(locset ls, double distance) { + return locset(proximal_translate_{std::move(ls), distance}); } std::ostream& operator<<(std::ostream& o, const proximal_translate_& l) { @@ -172,13 +172,13 @@ std::ostream& operator<<(std::ostream& o, const proximal_translate_& l) { // Translate locations in locset distance μm in the distal direction struct distal_translate_: locset_tag { - distal_translate_(const locset& ls, double distance): start(ls), distance(distance) {} + distal_translate_(locset ls, double distance): start(std::move(ls)), distance(distance) {} locset start; double distance; }; -locset distal_translate(locset ls, double distance) { - return locset(distal_translate_{ls, distance}); +ARB_ARBOR_API locset distal_translate(locset ls, double distance) { + return locset(distal_translate_{std::move(ls), distance}); } mlocation_list thingify_(const distal_translate_& dt, const mprovider& p) { @@ -253,7 +253,7 @@ std::ostream& operator<<(std::ostream& o, const distal_translate_& l) { struct root_: locset_tag {}; -locset root() { +ARB_ARBOR_API locset root() { return locset{root_{}}; } @@ -269,7 +269,7 @@ std::ostream& operator<<(std::ostream& o, const root_& x) { struct segments_: locset_tag {}; -locset segment_boundaries() { +ARB_ARBOR_API locset segment_boundaries() { return locset{segments_{}}; } @@ -289,7 +289,7 @@ struct on_branches_: locset_tag { double pos; }; -locset on_branches(double pos) { +ARB_ARBOR_API locset on_branches(double pos) { return locset{on_branches_{pos}}; } @@ -315,7 +315,7 @@ struct named_: locset_tag { std::string name; }; -locset named(std::string name) { +ARB_ARBOR_API locset named(std::string name) { return locset(named_{std::move(name)}); } @@ -334,7 +334,7 @@ struct most_distal_: locset_tag { region reg; }; -locset most_distal(region reg) { +ARB_ARBOR_API locset most_distal(region reg) { return locset(most_distal_{std::move(reg)}); } @@ -358,7 +358,7 @@ struct most_proximal_: locset_tag { region reg; }; -locset most_proximal(region reg) { +ARB_ARBOR_API locset most_proximal(region reg) { return locset(most_proximal_{std::move(reg)}); } @@ -386,7 +386,7 @@ struct boundary_: locset_tag { region reg; }; -locset boundary(region reg) { +ARB_ARBOR_API locset boundary(region reg) { return locset(boundary_(std::move(reg))); }; @@ -422,7 +422,7 @@ struct cboundary_: locset_tag { region reg; }; -locset cboundary(region reg) { +ARB_ARBOR_API locset cboundary(region reg) { return locset(cboundary_(std::move(reg))); }; @@ -462,7 +462,7 @@ struct on_components_: locset_tag { region reg; }; -locset on_components(double relpos, region reg) { +ARB_ARBOR_API locset on_components(double relpos, region reg) { return locset(on_components_(relpos, std::move(reg))); } @@ -532,8 +532,8 @@ std::ostream& operator<<(std::ostream& o, const on_components_& x) { // Uniform locset. struct uniform_: locset_tag { - uniform_(const arb::region& reg_, unsigned left_, unsigned right_, uint64_t seed_): - reg{reg_}, left{left_}, right{right_}, seed{seed_} + uniform_(arb::region reg_, unsigned left_, unsigned right_, uint64_t seed_): + reg{std::move(reg_)}, left{left_}, right{right_}, seed{seed_} {} region reg; unsigned left; @@ -541,8 +541,8 @@ struct uniform_: locset_tag { uint64_t seed; }; -locset uniform(arb::region reg, unsigned left, unsigned right, uint64_t seed) { - return locset(uniform_{reg, left, right, seed}); +ARB_ARBOR_API locset uniform(arb::region reg, unsigned left, unsigned right, uint64_t seed) { + return locset(uniform_{std::move(reg), left, right, seed}); } mlocation_list thingify_(const uniform_& u, const mprovider& p) { @@ -647,7 +647,7 @@ struct lsup_: locset_tag { lsup_(locset arg): arg(std::move(arg)) {} }; -locset support(locset arg) { +ARB_ARBOR_API locset support(locset arg) { return locset{lsup_{std::move(arg)}}; } @@ -686,7 +686,7 @@ mlocation_list thingify_(const lrestrict_& P, const mprovider& p) { return L; } -locset restrict(locset ls, region reg) { +ARB_ARBOR_API locset restrict(locset ls, region reg) { return locset{lrestrict_{std::move(ls), std::move(reg)}}; } @@ -704,11 +704,11 @@ locset intersect(locset lhs, locset rhs) { return locset(ls::land(std::move(lhs), std::move(rhs))); } -locset join(locset lhs, locset rhs) { +ARB_ARBOR_API locset join(locset lhs, locset rhs) { return locset(ls::lor(std::move(lhs), std::move(rhs))); } -locset sum(locset lhs, locset rhs) { +ARB_ARBOR_API locset sum(locset lhs, locset rhs) { return locset(ls::lsum(std::move(lhs), std::move(rhs))); } diff --git a/arbor/morph/morphology.cpp b/arbor/morph/morphology.cpp index ff126d7372..3415927149 100644 --- a/arbor/morph/morphology.cpp +++ b/arbor/morph/morphology.cpp @@ -173,13 +173,13 @@ msize_t morphology::num_branches() const { return impl_->branches_.size(); } -std::ostream& operator<<(std::ostream& o, const morphology& m) { +ARB_ARBOR_API std::ostream& operator<<(std::ostream& o, const morphology& m) { return o << *m.impl_; } // Utilities. -mlocation_list minset(const morphology& m, const mlocation_list& in) { +ARB_ARBOR_API mlocation_list minset(const morphology& m, const mlocation_list& in) { mlocation_list L; std::stack stack; @@ -213,7 +213,7 @@ mlocation_list minset(const morphology& m, const mlocation_list& in) { return L; } -mlocation_list maxset(const morphology& m, const mlocation_list& in_) { +ARB_ARBOR_API mlocation_list maxset(const morphology& m, const mlocation_list& in_) { mlocation_list L; // Sort the input in reverse order, so that more distal locations @@ -244,7 +244,7 @@ mlocation_list maxset(const morphology& m, const mlocation_list& in_) { return L; } -mlocation canonical(const morphology& m, mlocation loc) { +ARB_ARBOR_API mlocation canonical(const morphology& m, mlocation loc) { if (loc.pos==0) { msize_t parent = m.branch_parent(loc.branch); return parent==mnpos? mlocation{0, 0.}: mlocation{parent, 1.}; @@ -337,7 +337,7 @@ bool mextent::intersects(const mcable_list& a) const { return false; } -mextent intersect(const mextent& a, const mextent& b) { +ARB_ARBOR_API mextent intersect(const mextent& a, const mextent& b) { auto precedes = [](mcable x, mcable y) { return x.branch components(const morphology& m, const mextent& ex) { +ARB_ARBOR_API std::vector components(const morphology& m, const mextent& ex) { std::unordered_map component_index; std::vector component_cables; diff --git a/arbor/morph/mprovider.cpp b/arbor/morph/mprovider.cpp index 330fbf095a..1308258745 100644 --- a/arbor/morph/mprovider.cpp +++ b/arbor/morph/mprovider.cpp @@ -18,11 +18,15 @@ void mprovider::init() { if (!label_dict_ptr) return; for (const auto& pair: label_dict_ptr->regions()) { - (void)region(pair.first); + (void)(this->region(pair.first)); } for (const auto& pair: label_dict_ptr->locsets()) { - (void)locset(pair.first); + (void)(this->locset(pair.first)); + } + + for (const auto& pair: label_dict_ptr->iexpressions()) { + (void)(this->iexpr(pair.first)); } label_dict_ptr = nullptr; @@ -72,5 +76,9 @@ const mlocation_list& mprovider::locset(const std::string& name) const { return try_lookup(*this, name, locsets_, locsets_ptr); } +const iexpr_ptr& mprovider::iexpr(const std::string& name) const { + const auto* locsets_ptr = label_dict_ptr ? &(label_dict_ptr->iexpressions()) : nullptr; + return try_lookup(*this, name, iexpressions_, locsets_ptr); +} } // namespace arb diff --git a/arbor/morph/place_pwlin.cpp b/arbor/morph/place_pwlin.cpp index f42475bcfc..6b55d26b81 100644 --- a/arbor/morph/place_pwlin.cpp +++ b/arbor/morph/place_pwlin.cpp @@ -191,7 +191,7 @@ struct p3d { friend constexpr double dot(const p3d& l, const p3d& r) { return l.x*r.x + l.y*r.y + l.z*r.z; } - friend double norm(const p3d p) { + friend double norm(const p3d& p) { return std::sqrt(dot(p, p)); } friend std::ostream& operator<<(std::ostream& o, const p3d& p) { @@ -199,16 +199,10 @@ struct p3d { } }; -// Policy: -// If two collated points are equidistant from the input point, take the -// proximal location. -// Rationale: -// if the location is on a fork point, it makes sense to take the proximal -// location, which corresponds to the end of the parent branch. -std::pair place_pwlin::closest(double x, double y, double z) const { +std::pair, double> place_pwlin::all_closest(double x, double y, double z) const { double mind = std::numeric_limits::max(); p3d p(x,y,z); - mlocation loc; + std::vector locs; // loop over each branch for (msize_t bid: util::count_along(data_->segment_index)) { @@ -220,15 +214,17 @@ std::pair place_pwlin::closest(double x, double y, double z) // v and w are the proximal and distal ends of the segment. const p3d v = seg.prox; const p3d w = seg.dist; - const p3d vw = w-v; - const p3d vp = p-v; const double wvs = dot(vw, vw); if (wvs==0.) { // zero length segment is a special case const double distance = norm(p-v); + mlocation loc{bid, s.lower_bound()}; if (distance place_pwlin::closest(double x, double y, double z) // t=0 -> proximal end of the segment // t=1 -> distal end of the segment // values are clamped to the range [0, 1] - const double t = std::max(0., std::min(1., dot(vw, vp) / wvs)); + const double t = std::max(0., std::min(1., dot(vw, p-v) / wvs)); const double distance = t<=0.? norm(p-v): t>=1.? norm(p-w): norm(p-(v + t*vw)); + mlocation loc{bid, math::lerp(s.lower_bound(), s.upper_bound(), t)}; if (distance place_pwlin::closest(double x, double y, double z) const { + const auto& [locs, delta] = all_closest(x, y, z); + return {locs.front(), delta}; } } // namespace arb diff --git a/arbor/morph/primitives.cpp b/arbor/morph/primitives.cpp index d4b780fecc..be9444b7e0 100644 --- a/arbor/morph/primitives.cpp +++ b/arbor/morph/primitives.cpp @@ -36,7 +36,7 @@ int multiplicity(T& it, T end) { // interpolate between two points. -mpoint lerp(const mpoint& a, const mpoint& b, double u) { +ARB_ARBOR_API mpoint lerp(const mpoint& a, const mpoint& b, double u) { return { math::lerp(a.x, b.x, u), math::lerp(a.y, b.y, u), math::lerp(a.z, b.z, u), @@ -44,12 +44,12 @@ mpoint lerp(const mpoint& a, const mpoint& b, double u) { } // test if two morphology sample points share the same location. -bool is_collocated(const mpoint& a, const mpoint& b) { +ARB_ARBOR_API bool is_collocated(const mpoint& a, const mpoint& b) { return a.x==b.x && a.y==b.y && a.z==b.z; } // calculate the distance between two morphology sample points. -double distance(const mpoint& a, const mpoint& b) { +ARB_ARBOR_API double distance(const mpoint& a, const mpoint& b) { double dx = a.x - b.x; double dy = a.y - b.y; double dz = a.z - b.z; @@ -57,18 +57,18 @@ double distance(const mpoint& a, const mpoint& b) { return std::sqrt(dx*dx + dy*dy + dz*dz); } -bool test_invariants(const mlocation& l) { +ARB_ARBOR_API bool test_invariants(const mlocation& l) { return (0.<=l.pos && l.pos<=1.) && l.branch!=mnpos; } -mlocation_list sum(const mlocation_list& lhs, const mlocation_list& rhs) { +ARB_ARBOR_API mlocation_list sum(const mlocation_list& lhs, const mlocation_list& rhs) { mlocation_list v; v.resize(lhs.size() + rhs.size()); std::merge(lhs.begin(), lhs.end(), rhs.begin(), rhs.end(), v.begin()); return v; } -mlocation_list join(const mlocation_list& lhs, const mlocation_list& rhs) { +ARB_ARBOR_API mlocation_list join(const mlocation_list& lhs, const mlocation_list& rhs) { mlocation_list L; L.reserve(lhs.size()+rhs.size()); @@ -91,7 +91,7 @@ mlocation_list join(const mlocation_list& lhs, const mlocation_list& rhs) { return L; } -mlocation_list intersection(const mlocation_list& lhs, const mlocation_list& rhs) { +ARB_ARBOR_API mlocation_list intersection(const mlocation_list& lhs, const mlocation_list& rhs) { mlocation_list L; L.reserve(lhs.size()+rhs.size()); @@ -118,41 +118,41 @@ mlocation_list intersection(const mlocation_list& lhs, const mlocation_list& rhs return L; } -mlocation_list support(mlocation_list L) { +ARB_ARBOR_API mlocation_list support(mlocation_list L) { util::unique_in_place(L); return L; } -bool test_invariants(const mcable& c) { +ARB_ARBOR_API bool test_invariants(const mcable& c) { return (0.<=c.prox_pos && c.prox_pos<=c.dist_pos && c.dist_pos<=1.) && c.branch!=mnpos; } -bool test_invariants(const mcable_list& l) { +ARB_ARBOR_API bool test_invariants(const mcable_list& l) { return std::is_sorted(l.begin(), l.end()) && l.end()==std::find_if(l.begin(), l.end(), [](const mcable& c) {return !test_invariants(c);}); } -std::ostream& operator<<(std::ostream& o, const mpoint& p) { +ARB_ARBOR_API std::ostream& operator<<(std::ostream& o, const mpoint& p) { return o << "(point " << p.x << " " << p.y << " " << p.z << " " << p.radius << ")"; } -std::ostream& operator<<(std::ostream& o, const msegment& s) { +ARB_ARBOR_API std::ostream& operator<<(std::ostream& o, const msegment& s) { return o << "(segment " << s.id << " " << s.prox << " " << s.dist << " " << s.tag << ")"; } -std::ostream& operator<<(std::ostream& o, const mlocation& l) { +ARB_ARBOR_API std::ostream& operator<<(std::ostream& o, const mlocation& l) { return o << "(location " << l.branch << " " << l.pos << ")"; } -std::ostream& operator<<(std::ostream& o, const mlocation_list& l) { +ARB_ARBOR_API std::ostream& operator<<(std::ostream& o, const mlocation_list& l) { return o << "(list " << io::sepval(l, ' ') << ")"; } -std::ostream& operator<<(std::ostream& o, const mcable& c) { +ARB_ARBOR_API std::ostream& operator<<(std::ostream& o, const mcable& c) { return o << "(cable " << c.branch << " " << c.prox_pos << " " << c.dist_pos << ")"; } -std::ostream& operator<<(std::ostream& o, const mcable_list& c) { +ARB_ARBOR_API std::ostream& operator<<(std::ostream& o, const mcable_list& c) { return o << "(list " << io::sepval(c, ' ') << ")"; } diff --git a/arbor/morph/region.cpp b/arbor/morph/region.cpp index 038b1364a3..2b84bed7ad 100644 --- a/arbor/morph/region.cpp +++ b/arbor/morph/region.cpp @@ -32,7 +32,7 @@ std::optional intersect(const mcable& a, const mcable& b) { struct nil_: region_tag {}; -region nil() { +ARB_ARBOR_API region nil() { return region{nil_{}}; } @@ -52,7 +52,7 @@ struct cable_: region_tag { mcable cable; }; -region cable(msize_t id, double prox, double dist) { +ARB_ARBOR_API region cable(msize_t id, double prox, double dist) { mcable c{id, prox, dist}; if (!test_invariants(c)) { throw invalid_mcable(c); @@ -60,7 +60,7 @@ region cable(msize_t id, double prox, double dist) { return region(cable_{c}); } -region branch(msize_t bid) { +ARB_ARBOR_API region branch(msize_t bid) { return cable(bid, 0, 1); } @@ -137,7 +137,7 @@ struct tagged_: region_tag { int tag; }; -region tagged(int id) { +ARB_ARBOR_API region tagged(int id) { return region(tagged_{id}); } @@ -170,7 +170,7 @@ struct segment_: region_tag { int id; }; -region segment(int id) { +ARB_ARBOR_API region segment(int id) { return region(segment_{id}); } @@ -194,7 +194,7 @@ std::ostream& operator<<(std::ostream& o, const segment_& reg) { struct all_: region_tag {}; -region all() { +ARB_ARBOR_API region all() { return region(all_{}); } @@ -215,13 +215,13 @@ std::ostream& operator<<(std::ostream& o, const all_& t) { // Region comprising points up to `distance` distal to a point in `start`. struct distal_interval_: region_tag { - distal_interval_(const locset& ls, double d): start{ls}, distance{d} {} + distal_interval_(locset ls, double d): start{std::move(ls)}, distance{d} {} locset start; double distance; //um }; -region distal_interval(locset start, double distance) { - return region(distal_interval_{start, distance}); +ARB_ARBOR_API region distal_interval(locset start, double distance) { + return region(distal_interval_{std::move(start), distance}); } mextent thingify_(const distal_interval_& reg, const mprovider& p) { @@ -290,13 +290,13 @@ std::ostream& operator<<(std::ostream& o, const distal_interval_& d) { // Region comprising points up to `distance` proximal to a point in `end`. struct proximal_interval_: region_tag { - proximal_interval_(const locset& ls, double d): end{ls}, distance{d} {} + proximal_interval_(locset ls, double d): end{std::move(ls)}, distance{d} {} locset end; double distance; //um }; -region proximal_interval(locset end, double distance) { - return region(proximal_interval_{end, distance}); +ARB_ARBOR_API region proximal_interval(locset end, double distance) { + return region(proximal_interval_{std::move(end), distance}); } mextent thingify_(const proximal_interval_& reg, const mprovider& p) { @@ -347,29 +347,26 @@ std::ostream& operator<<(std::ostream& o, const proximal_interval_& d) { mextent radius_cmp(const mprovider& p, region r, double val, comp_op op) { const auto& e = p.embedding(); auto reg_extent = thingify(r, p); - msize_t bid = mnpos; mcable_list cmp_cables; - for (auto c: reg_extent) { if (bid != c.branch) { bid = c.branch; util::append(cmp_cables, e.radius_cmp(bid, val, op)); } } - return intersect(reg_extent, mextent(cmp_cables)); } // Region with all segments with radius less than r struct radius_lt_: region_tag { - radius_lt_(const region& rg, double d): reg{rg}, val{d} {} + radius_lt_(region rg, double d): reg{std::move(rg)}, val{d} {} region reg; double val; //um }; -region radius_lt(region reg, double val) { - return region(radius_lt_{reg, val}); +ARB_ARBOR_API region radius_lt(region reg, double val) { + return region(radius_lt_{std::move(reg), val}); } mextent thingify_(const radius_lt_& r, const mprovider& p) { @@ -382,13 +379,13 @@ std::ostream& operator<<(std::ostream& o, const radius_lt_& r) { // Region with all segments with radius less than r struct radius_le_: region_tag { - radius_le_(const region& rg, double d): reg{rg}, val{d} {} + radius_le_(region rg, double d): reg{std::move(rg)}, val{d} {} region reg; double val; //um }; -region radius_le(region reg, double val) { - return region(radius_le_{reg, val}); +ARB_ARBOR_API region radius_le(region reg, double val) { + return region(radius_le_{std::move(reg), val}); } mextent thingify_(const radius_le_& r, const mprovider& p) { @@ -401,13 +398,13 @@ std::ostream& operator<<(std::ostream& o, const radius_le_& r) { // Region with all segments with radius greater than r struct radius_gt_: region_tag { - radius_gt_(const region& rg, double d): reg{rg}, val{d} {} + radius_gt_(region rg, double d): reg{std::move(rg)}, val{d} {} region reg; double val; //um }; -region radius_gt(region reg, double val) { - return region(radius_gt_{reg, val}); +ARB_ARBOR_API region radius_gt(region reg, double val) { + return region(radius_gt_{std::move(reg), val}); } mextent thingify_(const radius_gt_& r, const mprovider& p) { @@ -420,13 +417,13 @@ std::ostream& operator<<(std::ostream& o, const radius_gt_& r) { // Region with all segments with radius greater than or equal to r struct radius_ge_: region_tag { - radius_ge_(const region& rg, double d): reg{rg}, val{d} {} + radius_ge_(region rg, double d): reg{std::move(rg)}, val{d} {} region reg; double val; //um }; -region radius_ge(region reg, double val) { - return region(radius_ge_{reg, val}); +ARB_ARBOR_API region radius_ge(region reg, double val) { + return region(radius_ge_{std::move(reg), val}); } mextent thingify_(const radius_ge_& r, const mprovider& p) { @@ -521,28 +518,28 @@ std::ostream& operator<<(std::ostream& o, const projection_ge_& r) { return o << "(projection-ge " << r.val << ")"; } -region z_dist_from_root_lt(double r0) { +ARB_ARBOR_API region z_dist_from_root_lt(double r0) { if (r0 == 0) { return {}; } region lt = reg::projection_lt(r0); region gt = reg::projection_gt(-r0); - return intersect(std::move(lt), std::move(gt)); + return intersect(lt, gt); } -region z_dist_from_root_le(double r0) { +ARB_ARBOR_API region z_dist_from_root_le(double r0) { region le = reg::projection_le(r0); region ge = reg::projection_ge(-r0); - return intersect(std::move(le), std::move(ge)); + return intersect(le, ge); } -region z_dist_from_root_gt(double r0) { +ARB_ARBOR_API region z_dist_from_root_gt(double r0) { region lt = reg::projection_lt(-r0); region gt = reg::projection_gt(r0); return region{join(std::move(lt), std::move(gt))}; } -region z_dist_from_root_ge(double r0) { +ARB_ARBOR_API region z_dist_from_root_ge(double r0) { region lt = reg::projection_le(-r0); region gt = reg::projection_ge(r0); return region{join(std::move(lt), std::move(gt))}; @@ -554,7 +551,7 @@ struct named_: region_tag { std::string name; }; -region named(std::string name) { +ARB_ARBOR_API region named(std::string name) { return region(named_{std::move(name)}); } @@ -573,7 +570,7 @@ struct super_: region_tag { region reg; }; -region complete(region r) { +ARB_ARBOR_API region complete(region r) { return region(super_{std::move(r)}); } @@ -720,7 +717,7 @@ struct reg_minus: region_tag { }; mextent thingify_(const reg_minus& P, const mprovider& p) { - return thingify(intersect(std::move(P.lhs), complement(std::move(P.rhs))), p); + return thingify(intersect(P.lhs, complement(P.rhs)), p); } std::ostream& operator<<(std::ostream& o, const reg_minus& x) { @@ -733,19 +730,19 @@ std::ostream& operator<<(std::ostream& o, const reg_minus& x) { // namespace with region so that ADL allows for construction of expressions // with regions without having to namespace qualify these operations. -region intersect(region l, region r) { +ARB_ARBOR_API region intersect(region l, region r) { return region{reg::reg_and(std::move(l), std::move(r))}; } -region join(region l, region r) { +ARB_ARBOR_API region join(region l, region r) { return region{reg::reg_or(std::move(l), std::move(r))}; } -region complement(region r) { +ARB_ARBOR_API region complement(region r) { return region{reg::reg_not(std::move(r))}; } -region difference(region l, region r) { +ARB_ARBOR_API region difference(region l, region r) { return region{reg::reg_minus(std::move(l), std::move(r))}; } diff --git a/arbor/morph/segment_tree.cpp b/arbor/morph/segment_tree.cpp index 955307cb10..3a10a015b5 100644 --- a/arbor/morph/segment_tree.cpp +++ b/arbor/morph/segment_tree.cpp @@ -1,6 +1,6 @@ #include #include -#include +#include #include #include @@ -12,6 +12,119 @@ namespace arb { +struct node_t { + msize_t parent; + msize_t id; +}; + +using node_p = std::function; + +node_p yes = [](const node_t&) { return true; }; + +// invert parent <*> child relation, returns a map of parent_id -> [children_id] +// For predictable ordering we sort the vectors. +std::map> tree_to_children(const segment_tree& tree) { + const auto& parents = tree.parents(); + std::map> result; + for (auto ix = 0; ix < tree.size(); ++ix) result[parents[ix]].push_back(ix); + for (auto& [k, v]: result) std::sort(v.begin(), v.end()); + return result; +} + +// Copy a segment tree into a new tree +// - tree to be (partially) copied +// - start={parent, id}: start by attaching segment=`id`` from `tree` to the +// output at `parent`, then its children to it recursively +// - predicate: if returning false for a given node, we prune that sub-tree starting +// at node (inclusive). Can be used to prune trees by parent or id. +// - init: initial tree to append to +// Note: this is basically a recursive function w/ an explicit stack. +segment_tree copy_if(const segment_tree& tree, + const node_t& start, + node_p predicate, + const segment_tree& init={}) { + auto children_of = tree_to_children(tree); + auto& segments = tree.segments(); + segment_tree result = init; + auto todo = std::vector{start}; + while (!todo.empty()) { + auto node = todo.back(); + todo.pop_back(); + if (!predicate(node)) continue; + const auto& segment = segments[node.id]; + auto current = result.append(node.parent, segment.prox, segment.dist, segment.tag); + for (auto child: children_of[node.id]) { + todo.push_back({current, child}); + } + } + return result; +} + +std::pair +split_at(const segment_tree& tree, msize_t at) { + if (at >= tree.size() || at == mnpos) throw invalid_segment_parent(at, tree.size()); + // span the sub-tree starting at the splitting node + segment_tree post = copy_if(tree, {mnpos, at}, yes); + // copy the original tree, but skip all nodes in the `post` tree + segment_tree pre = copy_if(tree, + {mnpos, 0}, + [=](auto& node) { return node.id != at; }); + return {pre, post}; +} + +segment_tree +join_at(const segment_tree& lhs, msize_t at, const segment_tree& rhs) { + if (at >= lhs.size() && at != mnpos) throw invalid_segment_parent(at, lhs.size()); + return copy_if(rhs, {at, 0}, yes, lhs); +} + +bool +equivalent(const segment_tree& a, + const segment_tree& b) { + if(a.size() != b.size()) return false; + + auto + a_children_of = tree_to_children(a), + b_children_of = tree_to_children(b); + + auto fetch_children = [&](auto cursor, const auto& segments, auto& children_of) { + std::vector segs; + for (auto ix: children_of[cursor]) segs.push_back(segments[ix]); + std::sort(segs.begin(), segs.end(), + [](auto l, auto r) { + l.id = r.id = 0; + return l < r; + }); + return segs; + }; + + std::vector> todo{{arb::mnpos, arb::mnpos}}; + while (!todo.empty()) { + const auto& [a_cursor, b_cursor] = todo.back(); + auto as = fetch_children(a_cursor, a.segments(), a_children_of); + auto bs = fetch_children(b_cursor, b.segments(), b_children_of); + todo.pop_back(); + if (as.size() != bs.size()) return false; + for (auto ix = 0; ix < as.size(); ++ix) { + if ((as[ix].prox != bs[ix].prox) || + (as[ix].dist != bs[ix].dist) || + (as[ix].tag != bs[ix].tag)) return false; + todo.emplace_back(as[ix].id, bs[ix].id); + } + } + return true; +} + +segment_tree +apply(const segment_tree& tree, const isometry& iso) { + auto result = tree; + for (auto& seg: result.segments_) { + seg.prox = iso.apply(seg.prox); + seg.dist = iso.apply(seg.dist); + } + return result; +} + void segment_tree::reserve(msize_t n) { segments_.reserve(n); parents_.reserve(n); @@ -76,7 +189,7 @@ bool segment_tree::is_root(msize_t i) const { return parents_[i]==mnpos; } -std::ostream& operator<<(std::ostream& o, const segment_tree& m) { +ARB_ARBOR_API std::ostream& operator<<(std::ostream& o, const segment_tree& m) { auto tstr = util::transform_view(m.parents_, [](msize_t i) -> std::string { return i==mnpos? "npos": std::to_string(i); diff --git a/arbor/partition_load_balance.cpp b/arbor/partition_load_balance.cpp index 40b145b003..8718c743d1 100644 --- a/arbor/partition_load_balance.cpp +++ b/arbor/partition_load_balance.cpp @@ -20,15 +20,16 @@ namespace arb { -domain_decomposition partition_load_balance( +ARB_ARBOR_API domain_decomposition partition_load_balance( const recipe& rec, - const context& ctx, - partition_hint_map hint_map) + context ctx, + const partition_hint_map& hint_map) { using util::make_span; - unsigned num_domains = ctx->distributed->size(); - unsigned domain_id = ctx->distributed->id(); + const auto& dist = ctx->distributed; + unsigned num_domains = dist->size(); + unsigned domain_id = dist->id(); const bool gpu_avail = ctx->gpu->has_gpu(); auto num_global_cells = rec.num_cells(); @@ -63,7 +64,7 @@ domain_decomposition partition_load_balance( // Gather the global gj_connection table. // The global gj_connection table after gathering is indexed by gid. - auto global_gj_connection_table = ctx->distributed->gather_gj_connections(local_gj_connection_table); + auto global_gj_connection_table = dist->gather_gj_connections(local_gj_connection_table); // Make all gj_connections bidirectional. std::vector> missing_peers(global_gj_connection_table.size()); @@ -224,7 +225,7 @@ domain_decomposition partition_load_balance( // Exchange gid list with all other nodes // global all-to-all to gather a local copy of the global gid list on each node. - auto global_gids = ctx->distributed->gather_gids(local_gids); + auto global_gids = dist->gather_gids(local_gids); return domain_decomposition(rec, ctx, groups); } diff --git a/arbor/profile/clock.cpp b/arbor/profile/clock.cpp index bd73d4aae7..2362b2461e 100644 --- a/arbor/profile/clock.cpp +++ b/arbor/profile/clock.cpp @@ -23,7 +23,7 @@ inline tick_type posix_clock_gettime_ns(clockid_t clock) { return nanoseconds; }; -tick_type posix_clock_gettime_monotonic_ns() { +ARB_ARBOR_API tick_type posix_clock_gettime_monotonic_ns() { return posix_clock_gettime_ns(CLOCK_MONOTONIC); } diff --git a/arbor/profile/meter_manager.cpp b/arbor/profile/meter_manager.cpp index dc2e12804c..2886c1c21d 100644 --- a/arbor/profile/meter_manager.cpp +++ b/arbor/profile/meter_manager.cpp @@ -24,7 +24,7 @@ double mean(const C& c) { measurement::measurement(std::string n, std::string u, const std::vector& readings, - const context& ctx): + context ctx): name(std::move(n)), units(std::move(u)) { auto dist = ctx->distributed; @@ -54,7 +54,7 @@ meter_manager::meter_manager() { } }; -void meter_manager::start(const context& ctx) { +void meter_manager::start(context ctx) { arb_assert(!started_); started_ = true; @@ -70,7 +70,7 @@ void meter_manager::start(const context& ctx) { start_time_ = timer_type::tic(); }; -void meter_manager::checkpoint(std::string name, const context& ctx) { +void meter_manager::checkpoint(std::string name, context ctx) { arb_assert(started_); // Record the time taken on this domain since the last checkpoint @@ -101,7 +101,7 @@ const std::vector& meter_manager::times() const { // Build a report of meters, for use at the end of a simulation // for output to file or analysis. -meter_report make_meter_report(const meter_manager& manager, const context& ctx) { +ARB_ARBOR_API meter_report make_meter_report(const meter_manager& manager, context ctx) { meter_report report; // Add the times to the meter outputs @@ -131,7 +131,7 @@ meter_report make_meter_report(const meter_manager& manager, const context& ctx) } // Print easy to read report of meters to a stream. -std::ostream& operator<<(std::ostream& o, const meter_report& report) { +ARB_ARBOR_API std::ostream& operator<<(std::ostream& o, const meter_report& report) { o << "\n---- meters -------------------------------------------------------------------------------\n"; o << strprintf("meter%16s", ""); for (auto const& m: report.meters) { diff --git a/arbor/profile/profiler.cpp b/arbor/profile/profiler.cpp index 03bfc75070..be5b2aff19 100644 --- a/arbor/profile/profiler.cpp +++ b/arbor/profile/profiler.cpp @@ -342,27 +342,27 @@ void print(std::ostream& o, // convenience functions for instrumenting code. // -void profiler_leave() { +ARB_ARBOR_API void profiler_leave() { profiler::get_global_profiler().leave(); } -region_id_type profiler_region_id(const std::string& name) { +ARB_ARBOR_API region_id_type profiler_region_id(const std::string& name) { if (!is_valid_region_string(name)) { throw std::runtime_error(std::string("'")+name+"' is not a valid profiler region name."); } return profiler::get_global_profiler().region_index(name); } -void profiler_enter(region_id_type region_id) { +ARB_ARBOR_API void profiler_enter(region_id_type region_id) { profiler::get_global_profiler().enter(region_id); } -void profiler_initialize(context& ctx) { +ARB_ARBOR_API void profiler_initialize(context ctx) { profiler::get_global_profiler().initialize(ctx->thread_pool); } // Print profiler statistics to an ostream -std::ostream& operator<<(std::ostream& o, const profile& prof) { +ARB_ARBOR_API std::ostream& operator<<(std::ostream& o, const profile& prof) { char buf[80]; auto tree = make_profile_tree(prof); @@ -373,19 +373,18 @@ std::ostream& operator<<(std::ostream& o, const profile& prof) { return o; } -profile profiler_summary() { +ARB_ARBOR_API profile profiler_summary() { return profiler::get_global_profiler().results(); } #else -void profiler_leave() {} -void profiler_enter(region_id_type) {} -profile profiler_summary(); -void profiler_print(const profile& prof, float threshold) {}; -profile profiler_summary() {return profile();} -region_id_type profiler_region_id(const std::string&) {return 0;} -std::ostream& operator<<(std::ostream& o, const profile&) {return o;} +ARB_ARBOR_API void profiler_leave() {} +ARB_ARBOR_API void profiler_enter(region_id_type) {} +ARB_ARBOR_API profile profiler_summary(); +ARB_ARBOR_API profile profiler_summary() {return profile();} +ARB_ARBOR_API region_id_type profiler_region_id(const std::string&) {return 0;} +ARB_ARBOR_API std::ostream& operator<<(std::ostream& o, const profile&) {return o;} #endif // ARB_HAVE_PROFILING diff --git a/arbor/s_expr.cpp b/arbor/s_expr.cpp index fed7878a81..70da5c7c42 100644 --- a/arbor/s_expr.cpp +++ b/arbor/s_expr.cpp @@ -43,11 +43,11 @@ inline bool is_valid_symbol_char(char c) { } } -std::ostream& operator<<(std::ostream& o, const src_location& l) { +ARB_ARBOR_API std::ostream& operator<<(std::ostream& o, const src_location& l) { return o << l.line << ":" << l.column; } -std::ostream& operator<<(std::ostream& o, const tok& t) { +ARB_ARBOR_API std::ostream& operator<<(std::ostream& o, const tok& t) { switch (t) { case tok::nil: return o << "nil"; case tok::lparen: return o << "lparen"; @@ -62,7 +62,7 @@ std::ostream& operator<<(std::ostream& o, const tok& t) { return o << ""; } -std::ostream& operator<<(std::ostream& o, const token& t) { +ARB_ARBOR_API std::ostream& operator<<(std::ostream& o, const token& t) { if (t.kind==tok::string) { return o << util::pprintf("\"{}\"", t.spelling); } @@ -281,7 +281,7 @@ class lexer { } // test if the symbol matches a keyword - auto it = keyword_to_tok.find(symbol.c_str()); + auto it = keyword_to_tok.find(symbol); if (it!=keyword_to_tok.end()) { return {start, it->second, std::move(symbol)}; } @@ -413,7 +413,7 @@ std::ostream& print(std::ostream& o, const s_expr& x, int indent) { bool first=true; o << "("; while (it!=end) { - if (!first && !it->is_atom() && length(*it)>=0) { + if (!first && !it->is_atom()) { o << "\n" << in; print(o, *it, indent+1); ++it; @@ -432,11 +432,11 @@ std::ostream& print(std::ostream& o, const s_expr& x, int indent) { return o << ")"; } -std::ostream& operator<<(std::ostream& o, const s_expr& x) { +ARB_ARBOR_API std::ostream& operator<<(std::ostream& o, const s_expr& x) { return print(o, x, 1); } -std::size_t length(const s_expr& l) { +ARB_ARBOR_API std::size_t length(const s_expr& l) { // The length of an atom is 1. if (l.is_atom() && l) { return 1; @@ -448,7 +448,7 @@ std::size_t length(const s_expr& l) { return 1+length(l.tail()); } -src_location location(const s_expr& l) { +ARB_ARBOR_API src_location location(const s_expr& l) { if (l.is_atom()) return l.atom().loc; return location(l.head()); } @@ -514,7 +514,7 @@ s_expr parse(lexer& L) { } -s_expr parse_s_expr(const std::string& line) { +ARB_ARBOR_API s_expr parse_s_expr(const std::string& line) { lexer l(line.c_str()); s_expr result = impl::parse(l); const bool err = result.is_atom()? result.atom().kind==tok::error: false; diff --git a/arbor/sampler_map.hpp b/arbor/sampler_map.hpp index 495a676d4b..e1781ee7ab 100644 --- a/arbor/sampler_map.hpp +++ b/arbor/sampler_map.hpp @@ -18,7 +18,7 @@ namespace arb { struct sampler_association { schedule sched; sampler_function sampler; - std::vector probe_ids; + std::vector probeset_ids; sampling_policy policy; }; diff --git a/arbor/simulation.cpp b/arbor/simulation.cpp index daa22c3ecc..a822ae616b 100644 --- a/arbor/simulation.cpp +++ b/arbor/simulation.cpp @@ -2,6 +2,7 @@ #include #include +#include #include #include #include @@ -36,7 +37,7 @@ auto split_sorted_range(Seq&& seq, const Value& v, Less cmp = Less{}) { // Create a new cell event_lane vector from sorted pending events, previous event_lane events, // and events from event generators for the given interval. -void merge_cell_events( +ARB_ARBOR_API void merge_cell_events( time_type t_from, time_type t_to, event_span old_events, @@ -89,13 +90,15 @@ void merge_cell_events( class simulation_state { public: - simulation_state(const recipe& rec, const domain_decomposition& decomp, execution_context ctx); + simulation_state(const recipe& rec, const domain_decomposition& decomp, context ctx); + + void update(const connectivity& rec); void reset(); time_type run(time_type tfinal, time_type dt); - sampler_association_handle add_sampler(cell_member_predicate probe_ids, + sampler_association_handle add_sampler(cell_member_predicate probeset_ids, schedule sched, sampler_function f, sampling_policy policy = sampling_policy::lax); void remove_sampler(sampler_association_handle); @@ -114,6 +117,9 @@ class simulation_state { spike_export_function global_export_callback_; spike_export_function local_export_callback_; + epoch_function epoch_callback_; + label_resolution_map source_resolution_map_; + label_resolution_map target_resolution_map_; private: // Record last computed epoch (integration interval). @@ -135,6 +141,8 @@ class simulation_state { std::unordered_map gid_to_local_; communicator communicator_; + context ctx_; + domain_decomposition ddc_; task_system_handle task_system_; @@ -181,20 +189,23 @@ class simulation_state { simulation_state::simulation_state( const recipe& rec, const domain_decomposition& decomp, - execution_context ctx + context ctx ): - task_system_(ctx.thread_pool), - local_spikes_({thread_private_spike_store(ctx.thread_pool), thread_private_spike_store(ctx.thread_pool)}) -{ + ctx_{ctx}, + ddc_{decomp}, + task_system_(ctx->thread_pool), + local_spikes_({thread_private_spike_store(ctx->thread_pool), + thread_private_spike_store(ctx->thread_pool)}) { // Generate the cell groups in parallel, with one task per cell group. - cell_groups_.resize(decomp.num_groups()); - std::vector cg_sources(cell_groups_.size()); - std::vector cg_targets(cell_groups_.size()); + auto num_groups = decomp.num_groups(); + cell_groups_.resize(num_groups); + std::vector cg_sources(num_groups); + std::vector cg_targets(num_groups); foreach_group_index( [&](cell_group_ptr& group, int i) { const auto& group_info = decomp.group(i); cell_label_range sources, targets; - auto factory = cell_kind_implementation(group_info.kind, group_info.backend, ctx); + auto factory = cell_kind_implementation(group_info.kind, group_info.backend, *ctx_); group = factory(group_info.gids, rec, sources, targets); cg_sources[i] = cell_labels_and_gids(std::move(sources), group_info.gids); @@ -202,48 +213,48 @@ simulation_state::simulation_state( }); cell_labels_and_gids local_sources, local_targets; - for(const auto& i: util::make_span(cell_groups_.size())) { + for(const auto& i: util::make_span(num_groups)) { local_sources.append(cg_sources.at(i)); local_targets.append(cg_targets.at(i)); } - auto global_sources = ctx.distributed->gather_cell_labels_and_gids(local_sources); - - auto source_resolution_map = label_resolution_map(std::move(global_sources)); - auto target_resolution_map = label_resolution_map(std::move(local_targets)); + auto global_sources = ctx->distributed->gather_cell_labels_and_gids(local_sources); - communicator_ = arb::communicator(rec, decomp, source_resolution_map, target_resolution_map, ctx); - - const auto num_local_cells = communicator_.num_local_cells(); + source_resolution_map_ = label_resolution_map(std::move(global_sources)); + target_resolution_map_ = label_resolution_map(std::move(local_targets)); + communicator_ = communicator(rec, ddc_, source_resolution_map_, target_resolution_map_, *ctx_); + update(rec); + epoch_.reset(); +} +void simulation_state::update(const connectivity& rec) { + communicator_.update_connections(rec, ddc_, source_resolution_map_, target_resolution_map_); // Use half minimum delay of the network for max integration interval. t_interval_ = communicator_.min_delay()/2; + const auto num_local_cells = communicator_.num_local_cells(); // Initialize empty buffers for pending events for each local cell pending_events_.resize(num_local_cells); - + // Forget old generators, if present + event_generators_.clear(); event_generators_.resize(num_local_cells); cell_size_type lidx = 0; cell_size_type grpidx = 0; - - auto target_resolution_map_ptr = std::make_shared(std::move(target_resolution_map)); - for (const auto& group_info: decomp.groups()) { + auto target_resolution_map_ptr = std::make_shared(target_resolution_map_); + for (const auto& group_info: ddc_.groups()) { for (auto gid: group_info.gids) { // Store mapping of gid to local cell index. - gid_to_local_[gid] = gid_local_info{lidx, grpidx}; - - // Resolve event_generator targets. - // Each event generator gets their own resolver state. + gid_to_local_[gid] = {lidx, grpidx}; + // Resolve event_generator targets; each event generator gets their own resolver state. auto event_gens = rec.event_generators(gid); for (auto& g: event_gens) { - g.resolve_label([target_resolution_map_ptr, event_resolver=resolver(target_resolution_map_ptr.get()), gid] - (const cell_local_label_type& label) mutable { + g.resolve_label([target_resolution_map_ptr, + event_resolver=resolver(target_resolution_map_ptr.get()), + gid] (const cell_local_label_type& label) mutable { return event_resolver.resolve({gid, label}); }); } - // Set up the event generators for cell gid. event_generators_[lidx] = event_gens; - ++lidx; } ++grpidx; @@ -254,10 +265,9 @@ simulation_state::simulation_state( // the following epoch. In each buffer there is one lane for each local cell. event_lanes_[0].resize(num_local_cells); event_lanes_[1].resize(num_local_cells); - - epoch_.reset(); } + void simulation_state::reset() { epoch_ = epoch(); @@ -400,23 +410,25 @@ time_type simulation_state::run(time_type tfinal, time_type dt) { }); }; - threading::task_group g(task_system_.get()); - epoch prev = epoch_; epoch current = next_epoch(prev, t_interval_); epoch next = next_epoch(current, t_interval_); + if (epoch_callback_) epoch_callback_(current.t0, tfinal); + if (next.empty()) { enqueue(current); update(current); exchange(current); + if (epoch_callback_) epoch_callback_(current.t1, tfinal); } else { enqueue(current); - + threading::task_group g(task_system_.get()); g.run([&]() { enqueue(next); }); g.run([&]() { update(current); }); g.wait(); + if (epoch_callback_) epoch_callback_(current.t1, tfinal); for (;;) { prev = current; @@ -427,6 +439,7 @@ time_type simulation_state::run(time_type tfinal, time_type dt) { g.run([&]() { exchange(prev); enqueue(next); }); g.run([&]() { update(current); }); g.wait(); + if (epoch_callback_) epoch_callback_(current.t1, tfinal); } g.run([&]() { exchange(prev); }); @@ -434,6 +447,7 @@ time_type simulation_state::run(time_type tfinal, time_type dt) { g.wait(); exchange(current); + if (epoch_callback_) epoch_callback_(current.t1, tfinal); } // Record current epoch for next run() invocation. @@ -442,7 +456,7 @@ time_type simulation_state::run(time_type tfinal, time_type dt) { } sampler_association_handle simulation_state::add_sampler( - cell_member_predicate probe_ids, + cell_member_predicate probeset_ids, schedule sched, sampler_function f, sampling_policy policy) @@ -450,7 +464,7 @@ sampler_association_handle simulation_state::add_sampler( sampler_association_handle h = sassoc_handles_.acquire(); foreach_group( - [&](cell_group_ptr& group) { group->add_sampler(h, probe_ids, sched, f, policy); }); + [&](cell_group_ptr& group) { group->add_sampler(h, probeset_ids, sched, f, policy); }); return h; } @@ -469,9 +483,9 @@ void simulation_state::remove_all_samplers() { sassoc_handles_.clear(); } -std::vector simulation_state::get_probe_metadata(cell_member_type probe_id) const { - if (auto linfo = util::value_by_key(gid_to_local_, probe_id.gid)) { - return cell_groups_.at(linfo->group_index)->get_probe_metadata(probe_id); +std::vector simulation_state::get_probe_metadata(cell_member_type probeset_id) const { + if (auto linfo = util::value_by_key(gid_to_local_, probeset_id.gid)) { + return cell_groups_.at(linfo->group_index)->get_probe_metadata(probeset_id); } else { return {}; @@ -503,27 +517,32 @@ void simulation_state::inject_events(const cse_vector& events) { simulation::simulation( const recipe& rec, - const domain_decomposition& decomp, - const context& ctx) + context ctx, + const domain_decomposition& decomp) { - impl_.reset(new simulation_state(rec, decomp, *ctx)); + impl_.reset(new simulation_state(rec, decomp, ctx)); } void simulation::reset() { impl_->reset(); } +void simulation::update(const connectivity& rec) { impl_->update(rec); } + time_type simulation::run(time_type tfinal, time_type dt) { + if (dt <= 0.0) { + throw domain_error("Finite time-step must be supplied."); + } return impl_->run(tfinal, dt); } sampler_association_handle simulation::add_sampler( - cell_member_predicate probe_ids, + cell_member_predicate probeset_ids, schedule sched, sampler_function f, sampling_policy policy) { - return impl_->add_sampler(std::move(probe_ids), std::move(sched), std::move(f), policy); + return impl_->add_sampler(std::move(probeset_ids), std::move(sched), std::move(f), policy); } void simulation::remove_sampler(sampler_association_handle h) { @@ -534,8 +553,8 @@ void simulation::remove_all_samplers() { impl_->remove_all_samplers(); } -std::vector simulation::get_probe_metadata(cell_member_type probe_id) const { - return impl_->get_probe_metadata(probe_id); +std::vector simulation::get_probe_metadata(cell_member_type probeset_id) const { + return impl_->get_probe_metadata(probeset_id); } std::size_t simulation::num_spikes() const { @@ -554,10 +573,47 @@ void simulation::set_local_spike_callback(spike_export_function export_callback) impl_->local_export_callback_ = std::move(export_callback); } +void simulation::set_epoch_callback(epoch_function epoch_callback) { + impl_->epoch_callback_ = std::move(epoch_callback); +} + void simulation::inject_events(const cse_vector& events) { impl_->inject_events(events); } simulation::~simulation() = default; +ARB_ARBOR_API epoch_function epoch_progress_bar() { + struct impl { + double t0 = 0; + bool first = true; + + void operator() (double t, double tfinal) { + constexpr unsigned bar_width = 50; + static const std::string bar_buffer(bar_width+1, '-'); + + if (first) { + first = false; + t0 = t; + } + + double percentage = (tfinal==t0)? 1: (t-t0)/(tfinal-t0); + int val = percentage * 100; + int lpad = percentage * bar_width; + int rpad = bar_width - lpad; + printf("\r%3d%% |%.*s%*s| %12ums", val, lpad, bar_buffer.c_str(), rpad, "", (unsigned)t); + + if (t==tfinal) { + // Print new line and reset counters on the last step. + printf("\n"); + t0 = tfinal; + first = true; + } + fflush(stdout); + } + }; + + return impl{}; +} + } // namespace arb diff --git a/arbor/spike_event_io.cpp b/arbor/spike_event_io.cpp index f035ae860d..639f55c889 100644 --- a/arbor/spike_event_io.cpp +++ b/arbor/spike_event_io.cpp @@ -4,7 +4,7 @@ namespace arb { -std::ostream& operator<<(std::ostream& o, const spike_event& ev) { +ARB_ARBOR_API std::ostream& operator<<(std::ostream& o, const spike_event& ev) { return o << "E[tgt " << ev.target << ", t " << ev.time << ", w " << ev.weight << "]"; } diff --git a/arbor/spike_source_cell_group.cpp b/arbor/spike_source_cell_group.cpp index 82d1062ba5..2f4176f3d8 100644 --- a/arbor/spike_source_cell_group.cpp +++ b/arbor/spike_source_cell_group.cpp @@ -26,13 +26,13 @@ spike_source_cell_group::spike_source_cell_group( } } - time_sequences_.reserve(gids_.size()); + time_sequences_.reserve(gids.size()); for (auto gid: gids_) { cg_sources.add_cell(); cg_targets.add_cell(); try { auto cell = util::any_cast(rec.get_cell_description(gid)); - time_sequences_.push_back(std::move(cell.seq)); + time_sequences_.emplace_back(cell.seqs); cg_sources.add_label(cell.source, {0, 1}); } catch (std::bad_any_cast& e) { @@ -51,8 +51,10 @@ void spike_source_cell_group::advance(epoch ep, time_type dt, const event_lane_s for (auto i: util::count_along(gids_)) { const auto gid = gids_[i]; - for (auto t: util::make_range(time_sequences_[i].events(ep.t0, ep.t1))) { - spikes_.push_back({{gid, 0u}, t}); + for (auto& ts: time_sequences_[i]) { + for (auto &t: util::make_range(ts.events(ep.t0, ep.t1))) { + spikes_.push_back({{gid, 0u}, t}); + } } } @@ -60,8 +62,10 @@ void spike_source_cell_group::advance(epoch ep, time_type dt, const event_lane_s }; void spike_source_cell_group::reset() { - for (auto& s: time_sequences_) { - s.reset(); + for (auto& ss: time_sequences_) { + for(auto& s: ss) { + s.reset(); + } } clear_spikes(); } diff --git a/arbor/spike_source_cell_group.hpp b/arbor/spike_source_cell_group.hpp index a20772258c..23a9c4b36a 100644 --- a/arbor/spike_source_cell_group.hpp +++ b/arbor/spike_source_cell_group.hpp @@ -2,6 +2,7 @@ #include +#include #include #include #include @@ -14,7 +15,7 @@ namespace arb { -class spike_source_cell_group: public cell_group { +class ARB_ARBOR_API spike_source_cell_group: public cell_group { public: spike_source_cell_group(const std::vector& gids, const recipe& rec, cell_label_range& cg_sources, cell_label_range& cg_targets); @@ -30,7 +31,7 @@ class spike_source_cell_group: public cell_group { void clear_spikes() override; - void add_sampler(sampler_association_handle h, cell_member_predicate probe_ids, schedule sched, sampler_function fn, sampling_policy policy) override; + void add_sampler(sampler_association_handle h, cell_member_predicate probeset_ids, schedule sched, sampler_function fn, sampling_policy policy) override; void remove_sampler(sampler_association_handle h) override {} @@ -39,7 +40,7 @@ class spike_source_cell_group: public cell_group { private: std::vector spikes_; std::vector gids_; - std::vector time_sequences_; + std::vector> time_sequences_; }; } // namespace arb diff --git a/arbor/thread_private_spike_store.cpp b/arbor/thread_private_spike_store.cpp index f7805350c4..e1645f037d 100644 --- a/arbor/thread_private_spike_store.cpp +++ b/arbor/thread_private_spike_store.cpp @@ -1,4 +1,5 @@ #include +#include #include #include @@ -23,20 +24,14 @@ thread_private_spike_store::thread_private_spike_store(const task_system_handle& impl_(new local_spike_store_type(ts)) {} -thread_private_spike_store::~thread_private_spike_store() {} +thread_private_spike_store::~thread_private_spike_store() = default; std::vector thread_private_spike_store::gather() const { + const auto& bs = impl_->buffers_; + auto len = std::accumulate(bs.begin(), bs.end(), 0u, [](auto acc, const auto& b) { return acc + b.size(); }); std::vector spikes; - unsigned num_spikes = 0u; - for (auto& b: impl_->buffers_) { - num_spikes += b.size(); - } - spikes.reserve(num_spikes); - - for (auto& b: impl_->buffers_) { - spikes.insert(spikes.begin(), b.begin(), b.end()); - } - + spikes.reserve(len); + std::for_each(bs.begin(), bs.end(), [&spikes] (const auto& b) { spikes.insert(spikes.end(), b.begin(), b.end()); }); return spikes; } diff --git a/arbor/thread_private_spike_store.hpp b/arbor/thread_private_spike_store.hpp index 1293de5b26..d0006ef96a 100644 --- a/arbor/thread_private_spike_store.hpp +++ b/arbor/thread_private_spike_store.hpp @@ -3,6 +3,7 @@ #include #include +#include #include #include @@ -18,9 +19,9 @@ struct local_spike_store_type; /// The thread private buffer of the calling thread. /// The insert() and gather() methods add a vector of spikes to the buffer, /// and collate all of the buffers into a single vector respectively. -class thread_private_spike_store { +class ARB_ARBOR_API thread_private_spike_store { public : - thread_private_spike_store(); + thread_private_spike_store() = default; ~thread_private_spike_store(); thread_private_spike_store(thread_private_spike_store&& t); diff --git a/arbor/threading/threading.hpp b/arbor/threading/threading.hpp index ad2b1d74a6..06b7e1c99b 100644 --- a/arbor/threading/threading.hpp +++ b/arbor/threading/threading.hpp @@ -14,6 +14,8 @@ #include #include +#include + namespace arb { namespace threading { @@ -68,7 +70,7 @@ struct priority_task { namespace impl { -class notification_queue { +class ARB_ARBOR_API notification_queue { // Number of priority levels in notification queues. static constexpr int n_priority = max_async_task_priority+1; @@ -120,7 +122,7 @@ class notification_queue { }// namespace impl -class task_system { +class ARB_ARBOR_API task_system { private: // Number of notification queues. unsigned count_; diff --git a/arbor/tree.cpp b/arbor/tree.cpp index a467186991..a22501e831 100644 --- a/arbor/tree.cpp +++ b/arbor/tree.cpp @@ -372,7 +372,7 @@ void depth_from_root(const tree& t, tree::iarray& depth, tree::int_type segment) } } -tree::iarray depth_from_root(const tree& t) { +ARB_ARBOR_API tree::iarray depth_from_root(const tree& t) { tree::iarray depth(t.num_segments()); depth[0] = 0; for (auto c: t.children(0)) { diff --git a/arbor/tree.hpp b/arbor/tree.hpp index 23f44fbdab..137598318a 100644 --- a/arbor/tree.hpp +++ b/arbor/tree.hpp @@ -6,6 +6,7 @@ #include #include +#include #include #include "memory/memory.hpp" @@ -14,7 +15,7 @@ namespace arb { -class tree { +class ARB_ARBOR_API tree { public: using int_type = cell_lid_type; using size_type = cell_local_size_type; @@ -113,7 +114,7 @@ class tree { // Calculates the depth of each branch from the root of a cell segment tree. // The root has depth 0, it's children have depth 1, and so on. -tree::iarray depth_from_root(const tree& t); +ARB_ARBOR_API tree::iarray depth_from_root(const tree& t); // Check if c[0] == 0 and c[i] < 0 holds for i != 0 // Also handle the valid case of c[0]==value_type(-1) diff --git a/arbor/util/config.hpp b/arbor/util/config.hpp index 44273152ef..5e8824b74b 100644 --- a/arbor/util/config.hpp +++ b/arbor/util/config.hpp @@ -1,5 +1,7 @@ #pragma once +#include + namespace arb { namespace config { @@ -29,7 +31,7 @@ constexpr bool has_power_measurement = true; constexpr bool has_power_measurement = false; #endif -#ifdef ARB_HAVE_GPU +#ifdef ARB_GPU_ENABLED constexpr bool has_gpu = true; #else constexpr bool has_gpu = false; diff --git a/arbor/util/padded_alloc.hpp b/arbor/util/padded_alloc.hpp index 9dfe7ea38a..d29908f08a 100644 --- a/arbor/util/padded_alloc.hpp +++ b/arbor/util/padded_alloc.hpp @@ -38,7 +38,7 @@ struct padded_allocator { using propagate_on_container_swap = std::true_type; using is_always_equal = std::false_type; - padded_allocator() noexcept {} + padded_allocator() noexcept = default; template padded_allocator(const padded_allocator& b) noexcept: alignment_(b.alignment()) {} diff --git a/arbor/util/piecewise.hpp b/arbor/util/piecewise.hpp index 8f029b4f50..1a2a0fae6d 100644 --- a/arbor/util/piecewise.hpp +++ b/arbor/util/piecewise.hpp @@ -742,7 +742,7 @@ struct pw_zip_iterator { bool is_end = true; typename pw_elements::const_iterator ai, a_end; typename pw_elements::const_iterator bi, b_end; - double left; + double left = std::nan(""); pw_zip_iterator() = default; pw_zip_iterator(const pw_elements& a, const pw_elements& b) { diff --git a/arbor/util/pw_over_cable.hpp b/arbor/util/pw_over_cable.hpp index 9345b86b03..cfab6db1ff 100644 --- a/arbor/util/pw_over_cable.hpp +++ b/arbor/util/pw_over_cable.hpp @@ -8,8 +8,8 @@ namespace util { namespace impl { struct get_value { template - double operator()(const X& x) const { return x.value; } - double operator()(double x) const { return x; } + double operator()(const mcable&, const X& x) const { return x.value; } + double operator()(const mcable&, double x) const { return x; } }; } // namespace impl @@ -39,7 +39,7 @@ util::pw_elements pw_over_cable(const mcable_map& mm, mcable cable, U dflt if (el.first.prox_pos>pw_right) { pw.push_back(pw_right, el.first.prox_pos, dflt_value); } - pw.push_back(el.first.prox_pos, el.first.dist_pos, projection(el.second)); + pw.push_back(el.first.prox_pos, el.first.dist_pos, projection(el.first, el.second)); } double pw_right = pw.empty()? 0: pw.bounds().second; @@ -53,4 +53,4 @@ util::pw_elements pw_over_cable(const mcable_map& mm, mcable cable, U dflt return pw; } } // namespace util -} // namespace arb \ No newline at end of file +} // namespace arb diff --git a/arbor/util/unwind.cpp b/arbor/util/unwind.cpp index 4e0e1cb9dc..9594aa3bb5 100644 --- a/arbor/util/unwind.cpp +++ b/arbor/util/unwind.cpp @@ -1,126 +1,52 @@ #include -#ifdef WITH_UNWIND - -#define UNW_LOCAL_ONLY -#include -#include - -#include -#include - -#include -#include -#include +#include #include +#include #include #include +#ifdef WITH_BACKTRACE +#define BOOST_STACKTRACE_GNU_SOURCE_NOT_REQUIRED +#define BOOST_STACKTRACE_USE_ADDR2LINE +#include +#endif + namespace arb { namespace util { -static_assert(sizeof(std::uintptr_t)>=sizeof(unw_word_t), - "assumption that libunwind unw_word_t can be stored in std::uintptr_t is not valid"); - -/// Builds a stack trace when constructed. -/// The trace can then be printed, or accessed via the stack() member function. backtrace::backtrace() { - unw_cursor_t cursor; - unw_context_t context; - - // initialize cursor to current frame for local unwinding. - unw_getcontext(&context); - unw_init_local(&cursor, &context); - - while (unw_step(&cursor) > 0) { - // find the stack position - unw_word_t offset, pc; - unw_get_reg(&cursor, UNW_REG_IP, &pc); - if (pc == 0) { - break; - } - - // get the name - char sym[512]; - if (unw_get_proc_name(&cursor, sym, sizeof(sym), &offset) == 0) { - frames_.push_back({std::string(sym), pc}); - } else { - frames_.push_back({std::string("???"), pc}); - } +#ifdef WITH_BACKTRACE + auto bt = boost::stacktrace::basic_stacktrace{}; + for (const auto& f: bt) { + frames_.push_back(source_location{f.name(), f.source_file(), f.source_line()}); } -} - -std::string demangle(std::string s) { - int status; - char* demangled = abi::__cxa_demangle(s.c_str(), nullptr, nullptr, &status); - - // __cxa_demangle only returns a non-empty string if it is passed a valid C++ - // mangled c++ symbol (i.e. it returns an empty string for normal c symbols) - if (status==0) { - s = demangled; - } - std::free(demangled); // don't leak the demangled string - - return s; +#endif } std::ostream& operator<<(std::ostream& out, const backtrace& trace) { - for (auto& f: trace.frames_) { - char loc_str[64]; - snprintf(loc_str, sizeof(loc_str), "0x%lx", f.position); - out << loc_str << " " << f.name << "\n"; - if (f.name=="main") { - break; - } +#ifdef WITH_BACKTRACE + out << "Backtrace:\n"; + int ix = 0; + for (const auto& f: trace.frames_) { + out << std::setw(8) << ix << " " << f.func << " (" << f.file << ":" << f.line << ")\n"; + ix++; } +#endif return out; } -#if 0 -// Temporarily deprecated: automatic writing to disk of strack traces -// needs to be run-time configurable. - -void backtrace::print(bool stop_at_main) const { - using namespace arb::memory::util; - - auto i = 0; - while (file_exists("backtrace_" + std::to_string(i))) { - ++i; - } - auto fname = "backtrace_" + std::to_string(i); - auto fid = std::ofstream(fname); - for (auto& f: frames_) { - char loc_str[64]; - snprintf(loc_str, sizeof(loc_str),"0x%lx", f.position); - fid << loc_str << " " << f.name << "\n"; - if (stop_at_main && f.name=="main") { - break; - } - } - std::cerr << "BACKTRACE: A backtrace was generated and stored in the file " << fname << ".\n"; - std::cerr << " View a brief summary of the backtrace by running \"scripts/print_backtrace " << fname << " -b\".\n"; - std::cerr << " Run \"scripts/print_backtrace -h\" for more options.\n"; +backtrace& backtrace::pop(std::size_t n) { + frames_.erase(frames_.begin(), + frames_.begin() + std::min(n, frames_.size())); + return *this; } -#endif -} // namespace util -} // namespace arb - -#else - -namespace arb { -namespace util { - -backtrace::backtrace() {} - -std::ostream& operator<<(std::ostream& out, const backtrace& trace) { - return out; +std::string backtrace::to_string() const { + std::stringstream ss; + ss << *this; + return ss.str(); } -//void arb::util::backtrace::print(bool) const {} - } // namespace util } // namespace arb - -#endif - diff --git a/arbor/util/unwind.hpp b/arbor/util/unwind.hpp index deb8d937a2..6459eec208 100644 --- a/arbor/util/unwind.hpp +++ b/arbor/util/unwind.hpp @@ -1,5 +1,6 @@ #pragma once +#include #include #include #include @@ -9,27 +10,27 @@ namespace util { /// Represents a source code location as a function name and address struct source_location { - std::string name; - std::uintptr_t position; // assume that unw_word_t is a unit64_t + std::string func; + std::string file; + std::size_t line; }; /// Builds a stack trace when constructed. -/// The trace can then be printed, or accessed via the stack() member function. -/// NOTE: if WITH_UNWIND is not defined, the methods are empty +/// NOTE: if WITH_BACKTRACE is not defined, the methods are empty class backtrace { public: /// the default constructor will build and store the strack trace. backtrace(); - /// Creates a new file named backtrace_# where # is a number chosen - /// The back trace is printed to the file, and a message printed to - /// std::cerr with the backtrace file name and instructions for how - /// to post-process it. - void print(bool stop_at_main=true) const; - const std::vector& frames() const { return frames_; } + std::vector& frames() { return frames_; } friend std::ostream& operator<<(std::ostream&, const backtrace&); + // remove the top N=1 frames + backtrace& pop(std::size_t n=1); + + std::string to_string() const; + private: std::vector frames_; }; diff --git a/arbor/version.cpp b/arbor/version.cpp index 0b2233a29c..242a6fdde7 100644 --- a/arbor/version.cpp +++ b/arbor/version.cpp @@ -1,14 +1,15 @@ #include +#include namespace arb { -const char* source_id = ARB_SOURCE_ID; -const char* arch = ARB_ARCH; -const char* build_config = ARB_BUILD_CONFIG; -const char* version = ARB_VERSION; +ARB_ARBOR_API const char* source_id = ARB_SOURCE_ID; +ARB_ARBOR_API const char* arch = ARB_ARCH; +ARB_ARBOR_API const char* build_config = ARB_BUILD_CONFIG; +ARB_ARBOR_API const char* version = ARB_VERSION; #ifdef ARB_VERSION_DEV -const char* version_dev = ARB_VERSION_DEV; +ARB_ARBOR_API const char* version_dev = ARB_VERSION_DEV; #else -const char* version_dev = ""; +ARB_ARBOR_API const char* version_dev = ""; #endif -const char* full_build_id = ARB_FULL_BUILD_ID; +ARB_ARBOR_API const char* full_build_id = ARB_FULL_BUILD_ID; } diff --git a/arborenv/CMakeLists.txt b/arborenv/CMakeLists.txt index 1612849939..6651f0108c 100644 --- a/arborenv/CMakeLists.txt +++ b/arborenv/CMakeLists.txt @@ -16,6 +16,7 @@ add_library(arborenv ${arborenv-sources}) add_library(arborenv-public-headers INTERFACE) target_include_directories(arborenv-public-headers INTERFACE $ + $ $ ) @@ -26,6 +27,11 @@ target_include_directories(arborenv-public-headers INTERFACE target_link_libraries(arborenv PUBLIC arbor arborenv-public-headers) target_link_libraries(arborenv PRIVATE arbor-config-defs arborenv-private-deps) +export_visibility(arborenv) + +install(FILES ${CMAKE_CURRENT_BINARY_DIR}/include/arborenv/export.hpp + DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/arborenv) + install(DIRECTORY include/arborenv DESTINATION ${CMAKE_INSTALL_INCLUDEDIR} FILES_MATCHING PATTERN "*.hpp") diff --git a/arborenv/affinity.cpp b/arborenv/affinity.cpp index 61502cc621..469a304ec1 100644 --- a/arborenv/affinity.cpp +++ b/arborenv/affinity.cpp @@ -2,6 +2,8 @@ #include #include +#include + #ifdef __linux__ #ifndef _GNU_SOURCE @@ -14,7 +16,7 @@ extern "C" { namespace arbenv { -std::vector get_affinity() { +ARB_ARBORENV_API std::vector get_affinity() { std::vector cores; cpu_set_t cpu_set_mask; @@ -39,7 +41,7 @@ std::vector get_affinity() { // No support for non-linux systems. namespace arbenv { -std::vector get_affinity() { +ARB_ARBORENV_API std::vector get_affinity() { return {}; } diff --git a/arborenv/concurrency.cpp b/arborenv/concurrency.cpp index 208acee459..35bafe68b6 100644 --- a/arborenv/concurrency.cpp +++ b/arborenv/concurrency.cpp @@ -14,7 +14,7 @@ namespace arbenv { // Take a best guess at the number of threads that can be run concurrently. // Will return at least 1. -unsigned long thread_concurrency() { +ARB_ARBORENV_API unsigned long thread_concurrency() { // Attempt to get count first from affinity information if available. unsigned long n = get_affinity().size(); diff --git a/arborenv/cuda_api.hpp b/arborenv/cuda_api.hpp index 14b3a36396..f3395a5d83 100644 --- a/arborenv/cuda_api.hpp +++ b/arborenv/cuda_api.hpp @@ -4,10 +4,11 @@ #include #include #include +#include using DeviceProp = cudaDeviceProp; -struct api_error_type { +struct ARB_SYMBOL_VISIBLE api_error_type { cudaError_t value; api_error_type(cudaError_t e): value(e) {} @@ -42,4 +43,4 @@ inline api_error_type get_device_count(ARGS&&... args) { template inline api_error_type get_device_properties(ARGS&&... args) { return cudaGetDeviceProperties(std::forward(args)...); -} \ No newline at end of file +} diff --git a/arborenv/default_env.cpp b/arborenv/default_env.cpp index 1f55acfe45..f35b17308d 100644 --- a/arborenv/default_env.cpp +++ b/arborenv/default_env.cpp @@ -1,11 +1,12 @@ #include #include +#include #include #include #include -#ifdef ARB_HAVE_GPU +#ifdef ARB_GPU_ENABLED #include "gpu_api.hpp" #endif @@ -13,12 +14,12 @@ namespace arbenv { -unsigned long default_concurrency() { +ARB_ARBORENV_API unsigned long default_concurrency() { unsigned long env_thread = get_env_num_threads(); return env_thread? env_thread: thread_concurrency(); } -unsigned long get_env_num_threads() { +ARB_ARBORENV_API unsigned long get_env_num_threads() { constexpr const char* env_var = "ARBENV_NUM_THREADS"; std::optional env_val = read_env_integer(env_var, throw_on_invalid); if (!env_val) return 0; @@ -29,9 +30,9 @@ unsigned long get_env_num_threads() { return *env_val; } -#ifdef ARB_HAVE_GPU +#ifdef ARB_GPU_ENABLED -int default_gpu() { +ARB_ARBORENV_API int default_gpu() { constexpr const char* env_var = "ARBENV_GPU_ID"; int n_device = -1; get_device_count(&n_device); // error => leave n_device == -1 @@ -56,11 +57,11 @@ int default_gpu() { #else -int default_gpu() { +ARB_ARBORENV_API int default_gpu() { return -1; } -#endif // def ARB_HAVE_GPU +#endif // def ARB_GPU_ENABLED } // namespace arbenv diff --git a/arborenv/hip_api.hpp b/arborenv/hip_api.hpp index 8a4fe45e26..b5417d3a5b 100644 --- a/arborenv/hip_api.hpp +++ b/arborenv/hip_api.hpp @@ -3,10 +3,11 @@ #include #include +#include using DeviceProp = hipDeviceProp_t; -struct api_error_type { +struct ARB_SYMBOL_VISIBLE api_error_type { hipError_t value; api_error_type(hipError_t e): value(e) {} diff --git a/arborenv/include/arborenv/arbenvexcept.hpp b/arborenv/include/arborenv/arbenvexcept.hpp index 7b140ccfec..49fba2c4dd 100644 --- a/arborenv/include/arborenv/arbenvexcept.hpp +++ b/arborenv/include/arborenv/arbenvexcept.hpp @@ -3,13 +3,15 @@ #include #include +#include + // Arborenv-specific exception hierarchy. namespace arbenv { // Common base-class for arborenv run-time errors. -struct arborenv_exception: std::runtime_error { +struct ARB_SYMBOL_VISIBLE arborenv_exception: std::runtime_error { arborenv_exception(const std::string& what_arg): std::runtime_error(what_arg) {} @@ -17,7 +19,7 @@ struct arborenv_exception: std::runtime_error { // Environment variable parsing errors. -struct invalid_env_value: arborenv_exception { +struct ARB_SYMBOL_VISIBLE invalid_env_value: arborenv_exception { invalid_env_value(const std::string& variable, const std::string& value); std::string env_variable; std::string env_value; @@ -25,12 +27,12 @@ struct invalid_env_value: arborenv_exception { // GPU enumeration, selection. -struct no_such_gpu: arborenv_exception { +struct ARB_SYMBOL_VISIBLE no_such_gpu: arborenv_exception { no_such_gpu(int gpu_id); int gpu_id; }; -struct gpu_uuid_error: arborenv_exception { +struct ARB_SYMBOL_VISIBLE gpu_uuid_error: arborenv_exception { gpu_uuid_error(std::string what); }; diff --git a/arborenv/include/arborenv/concurrency.hpp b/arborenv/include/arborenv/concurrency.hpp index 25b0f7ac2a..0d7d91f760 100644 --- a/arborenv/include/arborenv/concurrency.hpp +++ b/arborenv/include/arborenv/concurrency.hpp @@ -2,12 +2,14 @@ #include +#include + namespace arbenv { // Attempt to determine number of available threads that can be run concurrently. // Will return at least 1. -unsigned long thread_concurrency(); +ARB_ARBORENV_API unsigned long thread_concurrency(); // The list of logical processors for which the calling thread has affinity. // If calling from the main thread at application start up, before @@ -19,6 +21,6 @@ unsigned long thread_concurrency(); // Returns an empty vector if unable to determine the number of // available cores. -std::vector get_affinity(); +ARB_ARBORENV_API std::vector get_affinity(); } // namespace arbenv diff --git a/arborenv/include/arborenv/default_env.hpp b/arborenv/include/arborenv/default_env.hpp index 843503b678..136df0509d 100644 --- a/arborenv/include/arborenv/default_env.hpp +++ b/arborenv/include/arborenv/default_env.hpp @@ -8,6 +8,7 @@ #include #include #include +#include namespace arbenv { @@ -15,7 +16,7 @@ namespace arbenv { // if set and non-zero, throwing arbev::invalid_env_value if it has an invalid // value, or else return the value determined by arbenv::thread_concurrency(). -unsigned long default_concurrency(); +ARB_ARBORENV_API unsigned long default_concurrency(); // If Arbor is built without GPU support, return -1. // @@ -29,7 +30,7 @@ unsigned long default_concurrency(); // Throws arbenv::invalid_env_value if ARBENV_GPU_ID is not an int value, or // arbenv::no_such_gpu if it doesn't correspond to a valid GPU id. -int default_gpu(); +ARB_ARBORENV_API int default_gpu(); // Construct default proc_allocation from `default_concurrency()` and // `default_gpu()`. @@ -44,6 +45,6 @@ inline arb::proc_allocation default_allocation() { // non-numeric, non-positive, or out of range value. // * Returns zero if ARBENV_NUM_THREADS is unset, or set and empty. -unsigned long get_env_num_threads(); +ARB_ARBORENV_API unsigned long get_env_num_threads(); } // namespace arbenv diff --git a/arborenv/include/arborenv/gpu_env.hpp b/arborenv/include/arborenv/gpu_env.hpp index 2aefde7bae..069e44c271 100644 --- a/arborenv/include/arborenv/gpu_env.hpp +++ b/arborenv/include/arborenv/gpu_env.hpp @@ -1,9 +1,11 @@ #pragma once +#include + namespace arbenv { template -int find_private_gpu(Comm comm); +ARB_ARBORENV_API int find_private_gpu(Comm comm); } // namespace arbenv diff --git a/arborenv/private_gpu.cpp b/arborenv/private_gpu.cpp index 2337645450..edcaef6a45 100644 --- a/arborenv/private_gpu.cpp +++ b/arborenv/private_gpu.cpp @@ -5,16 +5,17 @@ #include +#include #include #include #include "gpu_uuid.hpp" namespace arbenv { -#ifdef ARB_HAVE_GPU +#ifdef ARB_GPU_ENABLED template <> -int find_private_gpu(MPI_Comm comm) { +ARB_ARBORENV_API int find_private_gpu(MPI_Comm comm) { int nranks; int rank; MPI_Comm_rank(comm, &rank); @@ -96,11 +97,11 @@ int find_private_gpu(MPI_Comm comm) { // return -1 -> "no gpu" when compiled without GPU support. template <> -int find_private_gpu(MPI_Comm comm) { +ARB_ARBORENV_API int find_private_gpu(MPI_Comm comm) { return -1; } -#endif // def ARB_HAVE_GPU +#endif // def ARB_GPU_ENABLED } // namespace arbenv diff --git a/arborio/CMakeLists.txt b/arborio/CMakeLists.txt index 4c1eff4abc..6db6b46fc2 100644 --- a/arborio/CMakeLists.txt +++ b/arborio/CMakeLists.txt @@ -23,6 +23,7 @@ add_library(arborio-private-headers INTERFACE) target_include_directories(arborio-public-headers INTERFACE $ + $ $ ) target_include_directories(arborio-private-headers INTERFACE @@ -40,6 +41,11 @@ endif() target_link_libraries(arborio PRIVATE arbor-config-defs arborio-private-deps) +export_visibility(arborio) + +install(FILES ${CMAKE_CURRENT_BINARY_DIR}/include/arborio/export.hpp + DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/arborio) + install(DIRECTORY include/arborio DESTINATION ${CMAKE_INSTALL_INCLUDEDIR} FILES_MATCHING PATTERN "*.hpp") diff --git a/arborio/cableio.cpp b/arborio/cableio.cpp index 25f6d6e263..103246eb55 100644 --- a/arborio/cableio.cpp +++ b/arborio/cableio.cpp @@ -5,6 +5,8 @@ #include #include #include +#include +#include #include #include @@ -17,7 +19,7 @@ namespace arborio { using namespace arb; -std::string acc_version() {return "0.1-dev";} +ARB_ARBORIO_API std::string acc_version() {return "0.1-dev";} cableio_parse_error::cableio_parse_error(const std::string& msg, const arb::src_location& loc): arb::arbor_exception(msg+" at :"+ @@ -57,6 +59,9 @@ s_expr mksexp(const init_ext_concentration& c) { s_expr mksexp(const init_reversal_potential& c) { return slist("ion-reversal-potential"_symbol, s_expr(c.ion), c.value); } +s_expr mksexp(const ion_diffusivity& c) { + return slist("ion-diffusivity"_symbol, s_expr(c.ion), c.value); +} s_expr mksexp(const i_clamp& c) { std::vector evlps; std::transform(c.envelope.begin(), c.envelope.end(), std::back_inserter(evlps), @@ -68,7 +73,7 @@ s_expr mksexp(const threshold_detector& d) { } s_expr mksexp(const mechanism_desc& d) { std::vector mech; - mech.push_back(s_expr(d.name())); + mech.emplace_back(d.name()); std::transform(d.values().begin(), d.values().end(), std::back_inserter(mech), [](const auto& x){return slist(s_expr(x.first), x.second);}); return s_expr{"mechanism"_symbol, slist_range(mech)}; @@ -85,6 +90,20 @@ s_expr mksexp(const synapse& j) { s_expr mksexp(const density& j) { return slist("density"_symbol, mksexp(j.mech)); } +s_expr mksexp(const iexpr& j) { + std::stringstream s; + s << j; + return parse_s_expr(s.str()); +} +template +s_expr mksexp(const scaled_mechanism& j) { + std::vector expressions; + std::transform(j.scale_expr.begin(), + j.scale_expr.end(), + std::back_inserter(expressions), + [](const auto& x) { return slist(s_expr(x.first), mksexp(x.second)); }); + return s_expr{"scaled-mechanism"_symbol, s_expr{mksexp(j.t_mech), slist_range(expressions)}}; +} s_expr mksexp(const mpoint& p) { return slist("point"_symbol, p.x, p.y, p.z, p.radius); } @@ -131,6 +150,9 @@ s_expr mksexp(const label_dict& dict) { for (auto& r: dict.regions()) { defs = s_expr(slist("region-def"_symbol, s_expr(r.first), round_trip(r.second)), std::move(defs)); } + for (auto& r: dict.iexpressions()) { + defs = s_expr(slist("iexpr-def"_symbol, s_expr(r.first), round_trip(r.second)), std::move(defs)); + } return {"label-dict"_symbol, std::move(defs)}; } s_expr mksexp(const morphology& morph) { @@ -144,7 +166,7 @@ s_expr mksexp(const morphology& morph) { }; std::vector branches; for (msize_t i = 0; i < morph.num_branches(); ++i) { - branches.push_back(make_branch(i)); + branches.emplace_back(make_branch(i)); } return s_expr{"morphology"_symbol, slist_range(branches)}; } @@ -153,32 +175,32 @@ s_expr mksexp(const meta_data& meta) { } // Implement public facing s-expr writers -std::ostream& write_component(std::ostream& o, const decor& x, const meta_data& m) { +ARB_ARBORIO_API std::ostream& write_component(std::ostream& o, const decor& x, const meta_data& m) { if (m.version != acc_version()) { throw cableio_version_error(m.version); } return o << s_expr{"arbor-component"_symbol, slist(mksexp(m), mksexp(x))}; } -std::ostream& write_component(std::ostream& o, const label_dict& x, const meta_data& m) { +ARB_ARBORIO_API std::ostream& write_component(std::ostream& o, const label_dict& x, const meta_data& m) { if (m.version != acc_version()) { throw cableio_version_error(m.version); } return o << s_expr{"arbor-component"_symbol, slist(mksexp(m), mksexp(x))}; } -std::ostream& write_component(std::ostream& o, const morphology& x, const meta_data& m) { +ARB_ARBORIO_API std::ostream& write_component(std::ostream& o, const morphology& x, const meta_data& m) { if (m.version != acc_version()) { throw cableio_version_error(m.version); } return o << s_expr{"arbor-component"_symbol, slist(mksexp(m), mksexp(x))}; } -std::ostream& write_component(std::ostream& o, const cable_cell& x, const meta_data& m) { +ARB_ARBORIO_API std::ostream& write_component(std::ostream& o, const cable_cell& x, const meta_data& m) { if (m.version != acc_version()) { throw cableio_version_error(m.version); } auto cell = s_expr{"cable-cell"_symbol, slist(mksexp(x.morphology()), mksexp(x.labels()), mksexp(x.decorations()))}; return o << s_expr{"arbor-component"_symbol, slist(mksexp(m), cell)}; } -std::ostream& write_component(std::ostream& o, const cable_cell_component& x) { +ARB_ARBORIO_API std::ostream& write_component(std::ostream& o, const cable_cell_component& x) { if (x.meta.version != acc_version()) { throw cableio_version_error(x.meta.version); } @@ -201,7 +223,7 @@ using version_tuple = std::tuple; #define ARBIO_DEFINE_DOUBLE_ARG(name) arb::name make_##name(const std::string& ion, double val) { return arb::name{ion, val};} ARB_PP_FOREACH(ARBIO_DEFINE_SINGLE_ARG, init_membrane_potential, temperature_K, axial_resistivity, membrane_capacitance, threshold_detector) -ARB_PP_FOREACH(ARBIO_DEFINE_DOUBLE_ARG, init_int_concentration, init_ext_concentration, init_reversal_potential) +ARB_PP_FOREACH(ARBIO_DEFINE_DOUBLE_ARG, init_int_concentration, init_ext_concentration, init_reversal_potential, ion_diffusivity) std::vector make_envelope(const std::vector>& vec) { std::vector envlp; @@ -218,7 +240,7 @@ arb::i_clamp make_i_clamp(const std::vector& envlp pulse_tuple make_envelope_pulse(double delay, double duration, double amplitude) { return pulse_tuple{delay, duration, amplitude}; } -arb::i_clamp make_i_clamp_pulse(pulse_tuple p, double freq, double phase) { +arb::i_clamp make_i_clamp_pulse(const pulse_tuple& p, double freq, double phase) { return arb::i_clamp::box(std::get<0>(p), std::get<1>(p), std::get<2>(p), freq, phase); } arb::cv_policy make_cv_policy(const cv_policy& p) { @@ -235,10 +257,10 @@ T make_wrapped_mechanism(const arb::mechanism_desc& mech) {return T(mech);} // Define makers for placeable pairs, paintable pairs, defaultables and decors using place_tuple = std::tuple; using paint_pair = std::pair; -place_tuple make_place(locset where, placeable what, std::string name) { +place_tuple make_place(const locset& where, const placeable& what, const std::string& name) { return place_tuple{where, what, name}; } -paint_pair make_paint(region where, paintable what) { +paint_pair make_paint(const region& where, const paintable& what) { return paint_pair{where, what}; } defaultable make_default(defaultable what) { @@ -259,13 +281,17 @@ decor make_decor(const std::vector; using region_pair = std::pair; +using iexpr_pair = std::pair; locset_pair make_locset_pair(std::string name, locset desc) { - return locset_pair{name, desc}; + return locset_pair{std::move(name), std::move(desc)}; } region_pair make_region_pair(std::string name, region desc) { - return region_pair{name, desc}; + return region_pair{std::move(name), std::move(desc)}; } -label_dict make_label_dict(const std::vector>& args) { +iexpr_pair make_iexpr_pair(std::string name, iexpr e) { + return iexpr_pair{std::move(name), std::move(e)}; +} +label_dict make_label_dict(const std::vector>& args) { label_dict d; for(const auto& a: args) { std::visit([&](auto&& x){d.set(x.first, x.second);}, a); @@ -276,7 +302,7 @@ label_dict make_label_dict(const std::vector>& args) { @@ -328,10 +354,10 @@ cable_cell make_cable_cell(const std::vector(v)}; } template @@ -377,6 +403,48 @@ struct make_mech_call { } }; + +// Test whether a list of arguments passed as a std::vector can be converted +// to a string followed by any number of std::pair +template +struct scaled_mechanism_match { + bool operator()(const std::vector& args) const { + // First argument is the mech name + if (args.size() < 1) return false; + if (!match(args.front().type())) return false; + + // The rest of the arguments should be tuples + for (auto it = args.begin()+1; it != args.end(); ++it) { + if (!match>(it->type())) return false; + } + return true; + } +}; +// Create a mechanism_desc from a std::vector. +template +struct scaled_mechanism_eval { + arb::scaled_mechanism operator()(const std::vector& args) { + auto d = scaled_mechanism(eval_cast(args.front())); + + for (auto it = args.begin() + 1; it != args.end(); ++it) { + auto p = eval_cast>(*it); + d.scale(std::move(std::get<0>(p)), std::move(std::get<1>(p))); + } + return d; + } +}; +// Wrap mech_match and mech_eval in an evaluator +template +struct make_scaled_mechanism_call { + evaluator state; + make_scaled_mechanism_call(const char* msg="scaled-mechanism"): + state(scaled_mechanism_eval(), scaled_mechanism_match(), msg) + {} + operator evaluator() const { + return state; + } +}; + // Test whether a list of arguments passed as a std::vector can be converted // to 2 integers followed by at least 1 msegment struct branch_match { @@ -502,9 +570,11 @@ parse_hopefully eval(const s_expr& e, const eval_map& map, const eval_ return eval_atom(e); } - if (e.head().is_atom()) { + auto& hd = e.head(); + if (hd.is_atom()) { + auto& atom = hd.atom(); // If this is not a symbol, parse as a tuple - if (e.head().atom().kind != tok::symbol) { + if (atom.kind != tok::symbol) { auto args = eval_args(e, map, vec); if (!args) { return util::unexpected(args.error()); @@ -535,7 +605,7 @@ parse_hopefully eval(const s_expr& e, const eval_map& map, const eval_ } // Find all candidate functions that match the name of the function. - auto& name = e.head().atom().spelling; + auto& name = atom.spelling; auto matches = map.equal_range(name); // Search for a candidate that matches the argument list. @@ -549,6 +619,7 @@ parse_hopefully eval(const s_expr& e, const eval_map& map, const eval_ if (auto l = parse_label_expression(e)) { if (match(l->type())) return eval_cast(l.value()); if (match(l->type())) return eval_cast(l.value()); + if (match(l->type())) return eval_cast(l.value()); } // Or it could be a cv-policy expression @@ -580,6 +651,8 @@ eval_map named_evals{ "'ion_internal_concentration' with 2 arguments (ion:string val:real)")}, {"ion-external-concentration", make_call(make_init_ext_concentration, "'ion_external_concentration' with 2 arguments (ion:string val:real)")}, + {"ion-diffusivity", make_call(make_ion_diffusivity, + "'ion_diffusivity' with 2 arguments (ion:string val:real)")}, {"ion-reversal-potential", make_call(make_init_reversal_potential, "'ion_reversal_potential' with 2 arguments (ion:string val:real)")}, {"envelope", make_arg_vec_call(make_envelope, @@ -601,6 +674,8 @@ eval_map named_evals{ {"junction", make_call(make_wrapped_mechanism, "'junction' with 1 argumnet (m: mechanism)")}, {"synapse", make_call(make_wrapped_mechanism, "'synapse' with 1 argumnet (m: mechanism)")}, {"density", make_call(make_wrapped_mechanism, "'density' with 1 argumnet (m: mechanism)")}, + {"scaled-mechanism", make_scaled_mechanism_call("'scaled_mechanism' with a density argument, and 0 or more parameter scaling expressions" + "(d:density (param:string val:iexpr))")}, {"place", make_call(make_place, "'place' with 3 arguments (ls:locset c:current-clamp name:string)")}, {"place", make_call(make_place, "'place' with 3 arguments (ls:locset t:threshold-detector name:string)")}, {"place", make_call(make_place, "'place' with 3 arguments (ls:locset gj:junction name:string)")}, @@ -612,8 +687,10 @@ eval_map named_evals{ {"paint", make_call(make_paint, "'paint' with 2 arguments (reg:region v:axial-resistivity)")}, {"paint", make_call(make_paint, "'paint' with 2 arguments (reg:region v:ion-internal-concentration)")}, {"paint", make_call(make_paint, "'paint' with 2 arguments (reg:region v:ion-external-concentration)")}, + {"paint", make_call(make_paint, "'paint' with 2 arguments (reg:region v:ion-diffusivity)")}, {"paint", make_call(make_paint, "'paint' with 2 arguments (reg:region v:ion-reversal-potential)")}, {"paint", make_call(make_paint, "'paint' with 2 arguments (reg:region v:density)")}, + {"paint", make_call>(make_paint, "'paint' with 2 arguments (reg:region v:scaled-mechanism)")}, {"default", make_call(make_default, "'default' with 1 argument (v:membrane-potential)")}, {"default", make_call(make_default, "'default' with 1 argument (v:temperature-kelvin)")}, @@ -621,6 +698,7 @@ eval_map named_evals{ {"default", make_call(make_default, "'default' with 1 argument (v:axial-resistivity)")}, {"default", make_call(make_default, "'default' with 1 argument (v:ion-internal-concentration)")}, {"default", make_call(make_default, "'default' with 1 argument (v:ion-external-concentration)")}, + {"default", make_call(make_default, "'default' with 1 argument (v:ion-diffusivity)")}, {"default", make_call(make_default, "'default' with 1 argument (v:ion-reversal-potential)")}, {"default", make_call(make_default, "'default' with 1 argument (v:ion-reversal-potential-method)")}, {"default", make_call(make_default, "'default' with 1 argument (v:cv-policy)")}, @@ -629,6 +707,8 @@ eval_map named_evals{ "'locset-def' with 2 arguments (name:string ls:locset)")}, {"region-def", make_call(make_region_pair, "'region-def' with 2 arguments (name:string reg:region)")}, + {"iexpr-def", make_call(make_iexpr_pair, + "'iexpr-def' with 2 arguments (name:string e:iexpr)")}, {"point", make_call(make_point, "'point' with 4 arguments (x:real y:real z:real radius:real)")}, @@ -639,8 +719,8 @@ eval_map named_evals{ {"decor", make_arg_vec_call(make_decor, "'decor' with 1 or more `paint`, `place` or `default` arguments")}, - {"label-dict", make_arg_vec_call(make_label_dict, - "'label-dict' with 1 or more `locset-def` or `region-def` arguments")}, + {"label-dict", make_arg_vec_call(make_label_dict, + "'label-dict' with 1 or more `locset-def` or `region-def` or `iexpr-def` arguments")}, {"morphology", make_arg_vec_call(make_morphology, "'morphology' 1 or more `branch` arguments")}, @@ -658,19 +738,20 @@ eval_map named_evals{ eval_vec unnamed_evals{ make_call(std::make_tuple, "tuple"), - make_call(std::make_tuple, "tuple") + make_call(std::make_tuple, "tuple"), + make_call(std::make_tuple, "tuple"), }; inline parse_hopefully parse(const arb::s_expr& s) { - return eval(std::move(s), named_evals, unnamed_evals); + return eval(s, named_evals, unnamed_evals); } -parse_hopefully parse_expression(const std::string& s) { +ARB_ARBORIO_API parse_hopefully parse_expression(const std::string& s) { return parse(parse_s_expr(s)); } // Read s-expr -parse_hopefully parse_component(const std::string& s) { +ARB_ARBORIO_API parse_hopefully parse_component(const std::string& s) { auto sexp = parse_s_expr(s); auto try_parse = parse(sexp); if (!try_parse) { @@ -686,7 +767,7 @@ parse_hopefully parse_component(const std::string& s) { return comp; }; -parse_hopefully parse_component(std::istream& s) { +ARB_ARBORIO_API parse_hopefully parse_component(std::istream& s) { return parse_component(std::string(std::istreambuf_iterator(s), {})); } } // namespace arborio diff --git a/arborio/cv_policy_parse.cpp b/arborio/cv_policy_parse.cpp index 16ad816086..7e5bc2fe42 100644 --- a/arborio/cv_policy_parse.cpp +++ b/arborio/cv_policy_parse.cpp @@ -188,7 +188,7 @@ parse_hopefully eval(const s_expr& e) { } } -parse_cv_policy_hopefully parse_cv_policy_expression(const arb::s_expr& s) { +ARB_ARBORIO_API parse_cv_policy_hopefully parse_cv_policy_expression(const arb::s_expr& s) { if (auto e = eval(s)) { if (e->type() == typeid(cv_policy)) { return {std::move(std::any_cast(*e))}; @@ -200,7 +200,7 @@ parse_cv_policy_hopefully parse_cv_policy_expression(const arb::s_expr& s) { return util::unexpected(cv_policy_parse_error(std::string() + e.error().what())); } } -parse_cv_policy_hopefully parse_cv_policy_expression(const std::string& s) { +ARB_ARBORIO_API parse_cv_policy_hopefully parse_cv_policy_expression(const std::string& s) { return parse_cv_policy_expression(parse_s_expr(s)); } } // namespace arb diff --git a/arborio/include/arborio/cableio.hpp b/arborio/include/arborio/cableio.hpp index 7502e7510b..cbdeb146d4 100644 --- a/arborio/include/arborio/cableio.hpp +++ b/arborio/include/arborio/cableio.hpp @@ -2,19 +2,20 @@ #include #include +#include namespace arborio { -std::string acc_version(); +ARB_ARBORIO_API std::string acc_version(); -struct cableio_parse_error: arb::arbor_exception { +struct ARB_SYMBOL_VISIBLE cableio_parse_error: arb::arbor_exception { explicit cableio_parse_error(const std::string& msg, const arb::src_location& loc); }; -struct cableio_morphology_error: arb::arbor_exception { +struct ARB_SYMBOL_VISIBLE cableio_morphology_error: arb::arbor_exception { explicit cableio_morphology_error(const unsigned bid); }; -struct cableio_version_error: arb::arbor_exception { +struct ARB_SYMBOL_VISIBLE cableio_version_error: arb::arbor_exception { explicit cableio_version_error(const std::string& version); }; @@ -30,13 +31,13 @@ struct cable_cell_component { cable_cell_variant component; }; -std::ostream& write_component(std::ostream&, const cable_cell_component&); -std::ostream& write_component(std::ostream&, const arb::decor& x, const meta_data& m = {}); -std::ostream& write_component(std::ostream&, const arb::label_dict& x, const meta_data& m = {}); -std::ostream& write_component(std::ostream&, const arb::morphology& x, const meta_data& m = {}); -std::ostream& write_component(std::ostream&, const arb::cable_cell& x, const meta_data& m = {}); +ARB_ARBORIO_API std::ostream& write_component(std::ostream&, const cable_cell_component&); +ARB_ARBORIO_API std::ostream& write_component(std::ostream&, const arb::decor& x, const meta_data& m = {}); +ARB_ARBORIO_API std::ostream& write_component(std::ostream&, const arb::label_dict& x, const meta_data& m = {}); +ARB_ARBORIO_API std::ostream& write_component(std::ostream&, const arb::morphology& x, const meta_data& m = {}); +ARB_ARBORIO_API std::ostream& write_component(std::ostream&, const arb::cable_cell& x, const meta_data& m = {}); -parse_hopefully parse_component(const std::string&); -parse_hopefully parse_component(std::istream&); +ARB_ARBORIO_API parse_hopefully parse_component(const std::string&); +ARB_ARBORIO_API parse_hopefully parse_component(std::istream&); -} // namespace arborio \ No newline at end of file +} // namespace arborio diff --git a/arborio/include/arborio/cv_policy_parse.hpp b/arborio/include/arborio/cv_policy_parse.hpp index 6069740a9f..70836105c7 100644 --- a/arborio/include/arborio/cv_policy_parse.hpp +++ b/arborio/include/arborio/cv_policy_parse.hpp @@ -7,18 +7,19 @@ #include #include #include +#include namespace arborio { -struct cv_policy_parse_error: arb::arbor_exception { +struct ARB_SYMBOL_VISIBLE cv_policy_parse_error: arb::arbor_exception { explicit cv_policy_parse_error(const std::string& msg, const arb::src_location& loc); explicit cv_policy_parse_error(const std::string& msg); }; using parse_cv_policy_hopefully = arb::util::expected; -parse_cv_policy_hopefully parse_cv_policy_expression(const std::string& s); -parse_cv_policy_hopefully parse_cv_policy_expression(const arb::s_expr& s); +ARB_ARBORIO_API parse_cv_policy_hopefully parse_cv_policy_expression(const std::string& s); +ARB_ARBORIO_API parse_cv_policy_hopefully parse_cv_policy_expression(const arb::s_expr& s); namespace literals { diff --git a/arborio/include/arborio/label_parse.hpp b/arborio/include/arborio/label_parse.hpp index b51f9361e6..d937cad149 100644 --- a/arborio/include/arborio/label_parse.hpp +++ b/arborio/include/arborio/label_parse.hpp @@ -7,12 +7,14 @@ #include #include #include +#include #include +#include namespace arborio { -struct label_parse_error: arb::arbor_exception { +struct ARB_SYMBOL_VISIBLE label_parse_error: arb::arbor_exception { explicit label_parse_error(const std::string& msg, const arb::src_location& loc); explicit label_parse_error(const std::string& msg): arb::arbor_exception(msg) {} }; @@ -20,11 +22,12 @@ struct label_parse_error: arb::arbor_exception { template using parse_label_hopefully = arb::util::expected; -parse_label_hopefully parse_label_expression(const std::string&); -parse_label_hopefully parse_label_expression(const arb::s_expr&); +ARB_ARBORIO_API parse_label_hopefully parse_label_expression(const std::string&); +ARB_ARBORIO_API parse_label_hopefully parse_label_expression(const arb::s_expr&); -parse_label_hopefully parse_region_expression(const std::string& s); -parse_label_hopefully parse_locset_expression(const std::string& s); +ARB_ARBORIO_API parse_label_hopefully parse_region_expression(const std::string& s); +ARB_ARBORIO_API parse_label_hopefully parse_locset_expression(const std::string& s); +ARB_ARBORIO_API parse_label_hopefully parse_iexpr_expression(const std::string& s); namespace literals { diff --git a/arborio/include/arborio/neurolucida.hpp b/arborio/include/arborio/neurolucida.hpp index 4021329d5e..3fd4d1fc8f 100644 --- a/arborio/include/arborio/neurolucida.hpp +++ b/arborio/include/arborio/neurolucida.hpp @@ -7,18 +7,19 @@ #include #include #include +#include namespace arborio { // Common base-class for arborio run-time errors. -struct asc_exception: public arb::arbor_exception { +struct ARB_SYMBOL_VISIBLE asc_exception: public arb::arbor_exception { asc_exception(const std::string& what_arg): arb::arbor_exception(what_arg) {} }; // Generic error parsing asc data. -struct asc_parse_error: asc_exception { +struct ARB_SYMBOL_VISIBLE asc_parse_error: asc_exception { asc_parse_error(const std::string& error_msg, unsigned line, unsigned column); std::string message; unsigned line; @@ -26,12 +27,15 @@ struct asc_parse_error: asc_exception { }; // An unsupported ASC description feature was encountered. -struct asc_unsupported: asc_exception { +struct ARB_SYMBOL_VISIBLE asc_unsupported: asc_exception { asc_unsupported(const std::string& error_msg); std::string message; }; struct asc_morphology { + // Raw segment tree from ASC, identical to morphology. + arb::segment_tree segment_tree; + // Morphology constructed from asc description. arb::morphology morphology; @@ -39,7 +43,10 @@ struct asc_morphology { arb::label_dict labels; }; +// Perform the parsing of the input as a string. +ARB_ARBORIO_API asc_morphology parse_asc_string(const char* input); + // Load asc morphology from file with name filename. -asc_morphology load_asc(std::string filename); +ARB_ARBORIO_API asc_morphology load_asc(std::string filename); } // namespace arborio diff --git a/arborio/include/arborio/neuroml.hpp b/arborio/include/arborio/neuroml.hpp index eead3b6c05..3646548e6f 100644 --- a/arborio/include/arborio/neuroml.hpp +++ b/arborio/include/arborio/neuroml.hpp @@ -10,23 +10,24 @@ #include #include +#include namespace arborio { // Common base-class for neuroml run-time errors. -struct neuroml_exception: std::runtime_error { +struct ARB_SYMBOL_VISIBLE neuroml_exception: std::runtime_error { neuroml_exception(const std::string& what_arg): std::runtime_error(what_arg) {} }; // Can't parse NeuroML if we don't have a document. -struct nml_no_document: neuroml_exception { +struct ARB_SYMBOL_VISIBLE nml_no_document: neuroml_exception { nml_no_document(); }; // Generic error parsing NeuroML data. -struct nml_parse_error: neuroml_exception { +struct ARB_SYMBOL_VISIBLE nml_parse_error: neuroml_exception { nml_parse_error(const std::string& error_msg, unsigned line = 0); std::string error_msg; unsigned line; @@ -35,7 +36,7 @@ struct nml_parse_error: neuroml_exception { // NeuroML morphology error: improper segment data, e.g. bad id specification, // segment parent does not exist, fractionAlong is out of bounds, missing // required data. -struct nml_bad_segment: neuroml_exception { +struct ARB_SYMBOL_VISIBLE nml_bad_segment: neuroml_exception { nml_bad_segment(unsigned long long segment_id, unsigned line = 0); unsigned long long segment_id; unsigned line; @@ -43,7 +44,7 @@ struct nml_bad_segment: neuroml_exception { // NeuroML morphology error: improper segmentGroup data, e.g. malformed // element data, missing referenced segments or groups, etc. -struct nml_bad_segment_group: neuroml_exception { +struct ARB_SYMBOL_VISIBLE nml_bad_segment_group: neuroml_exception { nml_bad_segment_group(const std::string& group_id, unsigned line = 0); std::string group_id; unsigned line; @@ -51,7 +52,7 @@ struct nml_bad_segment_group: neuroml_exception { // A segment or segmentGroup ultimately refers to itself via `parent` // or `include` elements respectively. -struct nml_cyclic_dependency: neuroml_exception { +struct ARB_SYMBOL_VISIBLE nml_cyclic_dependency: neuroml_exception { nml_cyclic_dependency(const std::string& id, unsigned line = 0); std::string id; unsigned line; @@ -70,7 +71,7 @@ struct nml_morphology_data { // Morphology id. std::string id; - // Morphology constructed from a signle NeuroML element. + // Morphology constructed from a single NeuroML element. arb::morphology morphology; // One region expression for each segment id. @@ -88,7 +89,7 @@ struct nml_morphology_data { // Represent NeuroML data determined by provided string. -struct neuroml_impl; +struct ARB_ARBORIO_API neuroml_impl; // TODO: C++20, replace with enum class and deploy using enum as appropriate. namespace neuroml_options { @@ -98,7 +99,7 @@ namespace neuroml_options { }; } -struct neuroml { +struct ARB_ARBORIO_API neuroml { // Correct interpretation of zero-length segments is currently a bit unclear // in NeuroML 2.0, hence these options. For further options, use flags in powers of two // so that we can bitwise combine and test them. diff --git a/arborio/include/arborio/swcio.hpp b/arborio/include/arborio/swcio.hpp index 2cb76b2869..38b59e0c5a 100644 --- a/arborio/include/arborio/swcio.hpp +++ b/arborio/include/arborio/swcio.hpp @@ -6,49 +6,50 @@ #include #include +#include namespace arborio { // SWC exceptions are thrown by `parse_swc`, and correspond // to inconsistent, or in `strict` mode, dubious SWC data. -struct swc_error: public arb::arbor_exception { +struct ARB_SYMBOL_VISIBLE swc_error: public arb::arbor_exception { swc_error(const std::string& msg, int record_id); int record_id; }; // Parent id in record has no corresponding SWC record, // nor is the record the root record with parent id -1. -struct swc_no_such_parent: swc_error { +struct ARB_SYMBOL_VISIBLE swc_no_such_parent: swc_error { explicit swc_no_such_parent(int record_id); }; // Parent id is greater than or equal to record id. -struct swc_record_precedes_parent: swc_error { +struct ARB_SYMBOL_VISIBLE swc_record_precedes_parent: swc_error { explicit swc_record_precedes_parent(int record_id); }; // Multiple records cannot have the same id. -struct swc_duplicate_record_id: swc_error { +struct ARB_SYMBOL_VISIBLE swc_duplicate_record_id: swc_error { explicit swc_duplicate_record_id(int record_id); }; // Smells like a spherical soma. -struct swc_spherical_soma: swc_error { +struct ARB_SYMBOL_VISIBLE swc_spherical_soma: swc_error { explicit swc_spherical_soma(int record_id); }; // Segment cannot have samples with different tags -struct swc_mismatched_tags: swc_error { +struct ARB_SYMBOL_VISIBLE swc_mismatched_tags: swc_error { explicit swc_mismatched_tags(int record_id); }; // Only tags 1, 2, 3, 4 supported -struct swc_unsupported_tag: swc_error { +struct ARB_SYMBOL_VISIBLE swc_unsupported_tag: swc_error { explicit swc_unsupported_tag(int record_id); }; -struct swc_record { +struct ARB_ARBORIO_API swc_record { int id = 0; // sample number int tag = 0; // structure identifier (tag) double x = 0; // sample coordinates @@ -79,7 +80,7 @@ struct swc_record { friend std::istream& operator>>(std::istream&, swc_record&); }; -struct swc_data { +struct ARB_ARBORIO_API swc_data { private: std::string metadata_; std::vector records_; @@ -114,8 +115,8 @@ struct swc_data { // // SWC records are returned in id order. -swc_data parse_swc(std::istream&); -swc_data parse_swc(const std::string&); +ARB_ARBORIO_API swc_data parse_swc(std::istream&); +ARB_ARBORIO_API swc_data parse_swc(const std::string&); // Convert a valid, ordered sequence of SWC records into a morphology. // @@ -126,7 +127,8 @@ swc_data parse_swc(const std::string&); // and distal point of the segment, while the proximal point is taken from the // parent record. -arb::morphology load_swc_arbor(const swc_data& data); +ARB_ARBORIO_API arb::morphology load_swc_arbor(const swc_data& data); +ARB_ARBORIO_API arb::segment_tree load_swc_arbor_raw(const swc_data& data); // As above, will convert a valid, ordered sequence of SWC records into a morphology // @@ -134,6 +136,7 @@ arb::morphology load_swc_arbor(const swc_data& data); // // Complies inferred SWC rules from NEURON, explicitly listed in the docs. -arb::morphology load_swc_neuron(const swc_data& data); +ARB_ARBORIO_API arb::morphology load_swc_neuron(const swc_data& data); +ARB_ARBORIO_API arb::segment_tree load_swc_neuron_raw(const swc_data& data); } // namespace arborio diff --git a/arborio/include/arborio/xml.hpp b/arborio/include/arborio/xml.hpp index 702827c3c9..bedc54fdf2 100644 --- a/arborio/include/arborio/xml.hpp +++ b/arborio/include/arborio/xml.hpp @@ -3,12 +3,14 @@ #include #include +#include + // XML related interfaces deriving from the underlying XML implementation library. namespace arborio { // Generic XML error (as reported by libxml2). -struct xml_error: std::runtime_error { +struct ARB_SYMBOL_VISIBLE xml_error: std::runtime_error { xml_error(const std::string& xml_error_msg, unsigned line = 0); std::string xml_error_msg; unsigned line; @@ -20,7 +22,7 @@ struct xml_error: std::runtime_error { // used in a multithreaded context and the client code is // not managing libxml2 initialization and cleanup. -struct with_xml { +struct ARB_ARBORIO_API with_xml { with_xml(); ~with_xml(); diff --git a/arborio/label_parse.cpp b/arborio/label_parse.cpp index 4a2a3ce229..6700295c83 100644 --- a/arborio/label_parse.cpp +++ b/arborio/label_parse.cpp @@ -6,6 +6,7 @@ #include #include #include +#include #include @@ -112,6 +113,66 @@ std::unordered_multimap eval_map { "'join' with at least 2 arguments: (locset locset [...locset])")}, {"sum", make_fold(static_cast(arb::sum), "'sum' with at least 2 arguments: (locset locset [...locset])")}, + + + // iexpr + {"iexpr", make_call(arb::iexpr::named, "iexpr with 1 argument: (value:string)")}, + + {"scalar", make_call(arb::iexpr::scalar, "iexpr with 1 argument: (value:double)")}, + + {"pi", make_call<>(arb::iexpr::pi, "iexpr with no argument")}, + + {"distance", make_call(static_cast(arb::iexpr::distance), + "iexpr with 2 arguments: (scale:double, loc:locset)")}, + {"distance", make_call(static_cast(arb::iexpr::distance), + "iexpr with 1 argument: (loc:locset)")}, + {"distance", make_call(static_cast(arb::iexpr::distance), + "iexpr with 2 arguments: (scale:double, reg:region)")}, + {"distance", make_call(static_cast(arb::iexpr::distance), + "iexpr with 1 argument: (reg:region)")}, + + {"proximal-distance", make_call(static_cast(arb::iexpr::proximal_distance), + "iexpr with 2 arguments: (scale:double, loc:locset)")}, + {"proximal-distance", make_call(static_cast(arb::iexpr::proximal_distance), + "iexpr with 1 argument: (loc:locset)")}, + {"proximal-distance", make_call(static_cast(arb::iexpr::proximal_distance), + "iexpr with 2 arguments: (scale:double, reg:region)")}, + {"proximal-distance", make_call(static_cast(arb::iexpr::proximal_distance), + "iexpr with 1 arguments: (reg:region)")}, + + {"distal-distance", make_call(static_cast(arb::iexpr::distal_distance), + "iexpr with 2 arguments: (scale:double, loc:locset)")}, + {"distal-distance", make_call(static_cast(arb::iexpr::distal_distance), + "iexpr with 1 argument: (loc:locset)")}, + {"distal-distance", make_call(static_cast(arb::iexpr::distal_distance), + "iexpr with 2 arguments: (scale:double, reg:region)")}, + {"distal-distance", make_call(static_cast(arb::iexpr::distal_distance), + "iexpr with 1 argument: (reg:region)")}, + + {"interpolation", make_call(static_cast(arb::iexpr::interpolation), + "iexpr with 4 arguments: (prox_value:double, prox_list:locset, dist_value:double, dist_list:locset)")}, + {"interpolation", make_call(static_cast(arb::iexpr::interpolation), + "iexpr with 4 arguments: (prox_value:double, prox_list:region, dist_value:double, dist_list:region)")}, + + {"radius", make_call(static_cast(arb::iexpr::radius), "iexpr with 1 argument: (value:double)")}, + {"radius", make_call<>(static_cast(arb::iexpr::radius), "iexpr with no argument")}, + + {"diameter", make_call(static_cast(arb::iexpr::diameter), "iexpr with 1 argument: (value:double)")}, + {"diameter", make_call<>(static_cast(arb::iexpr::diameter), "iexpr with no argument")}, + + {"exp", make_call(arb::iexpr::exp, "iexpr with 1 argument: (value:iexpr)")}, + {"exp", make_call(arb::iexpr::exp, "iexpr with 1 argument: (value:double)")}, + + {"log", make_call(arb::iexpr::log, "iexpr with 1 argument: (value:iexpr)")}, + {"log", make_call(arb::iexpr::log, "iexpr with 1 argument: (value:double)")}, + + {"add", make_conversion_fold(arb::iexpr::add, "iexpr with at least 2 arguments: ((iexpr | double) (iexpr | double) [...(iexpr | double)])")}, + + {"sub", make_conversion_fold(arb::iexpr::sub, "iexpr with at least 2 arguments: ((iexpr | double) (iexpr | double) [...(iexpr | double)])")}, + + {"mul", make_conversion_fold(arb::iexpr::mul, "iexpr with at least 2 arguments: ((iexpr | double) (iexpr | double) [...(iexpr | double)])")}, + + {"div", make_conversion_fold(arb::iexpr::div, "iexpr with at least 2 arguments: ((iexpr | double) (iexpr | double) [...(iexpr | double)])")}, }; parse_label_hopefully eval(const s_expr& e); @@ -213,14 +274,14 @@ parse_label_hopefully eval(const s_expr& e) { } // namespace -parse_label_hopefully parse_label_expression(const std::string& e) { +ARB_ARBORIO_API parse_label_hopefully parse_label_expression(const std::string& e) { return eval(parse_s_expr(e)); } -parse_label_hopefully parse_label_expression(const s_expr& s) { +ARB_ARBORIO_API parse_label_hopefully parse_label_expression(const s_expr& s) { return eval(s); } -parse_label_hopefully parse_region_expression(const std::string& s) { +ARB_ARBORIO_API parse_label_hopefully parse_region_expression(const std::string& s) { if (auto e = eval(parse_s_expr(s))) { if (e->type() == typeid(region)) { return {std::move(std::any_cast(*e))}; @@ -237,7 +298,7 @@ parse_label_hopefully parse_region_expression(const std::string& s) } } -parse_label_hopefully parse_locset_expression(const std::string& s) { +ARB_ARBORIO_API parse_label_hopefully parse_locset_expression(const std::string& s) { if (auto e = eval(parse_s_expr(s))) { if (e->type() == typeid(locset)) { return {std::move(std::any_cast(*e))}; @@ -254,4 +315,18 @@ parse_label_hopefully parse_locset_expression(const std::string& s) } } +parse_label_hopefully parse_iexpr_expression(const std::string& s) { + if (auto e = eval(parse_s_expr(s))) { + if (e->type() == typeid(iexpr)) { + return {std::move(std::any_cast(*e))}; + } + return util::unexpected( + label_parse_error( + concat("Invalid iexpr description: '", s))); + } + else { + return util::unexpected(label_parse_error(std::string()+e.error().what())); + } +} + } // namespace arborio diff --git a/arborio/neurolucida.cpp b/arborio/neurolucida.cpp index fb05007ea8..832a7d2451 100644 --- a/arborio/neurolucida.cpp +++ b/arborio/neurolucida.cpp @@ -46,8 +46,8 @@ struct parse_error { stack.push_back(cpp); } - parse_error& append(cpp_info i) { - stack.push_back(i); + parse_error& append(const cpp_info& i) { + stack.emplace_back(i); return *this; } @@ -153,13 +153,21 @@ bool symbol_matches(const char* match, const asc::token& t) { return t.kind==tok::symbol && !std::strcmp(match, t.spelling.c_str()); } +// A list of symbols that indicate markers +bool is_marker_symbol(const asc::token& t) { + return symbol_matches("Dot", t) + || symbol_matches("OpenCircle", t) + || symbol_matches("Cross", t); +}; + + // Parse a color expression, which have been observed in the wild in two forms: // (Color Red) ; labeled // (Color RGB (152, 251, 152)) ; RGB literal struct asc_color { - uint8_t r; - uint8_t g; - uint8_t b; + uint8_t r = 0; + uint8_t g = 0; + uint8_t b = 0; }; [[maybe_unused]] @@ -313,6 +321,74 @@ parse_hopefully parse_spine(asc::lexer& L) { #define PARSE_SPINE(L, X) if (auto rval__ = parse_spine(L)) X=std::move(*rval__); else return FORWARD_PARSE_ERROR(rval__.error()); +parse_hopefully parse_name(asc::lexer& L) { + EXPECT_TOKEN(L, tok::lparen); + if (!symbol_matches("Name", L.current())) { + return unexpected(PARSE_ERROR("expected Name symbol missing", L.current().loc)); + } + + // consume Name symbol + auto t = L.next(); + if (t.kind != tok::string) { + return unexpected(PARSE_ERROR("expected a string in name description", t.loc)); + } + std::string name = t.spelling; + + L.next(); + EXPECT_TOKEN(L, tok::rparen); + + return name; +} + +#define PARSE_NAME(L, X) {if (auto rval__ = parse_name(L)) X=*rval__; else return FORWARD_PARSE_ERROR(rval__.error());} + +struct marker_set { + asc_color color; + std::string name; + std::vector locations; +}; + +[[maybe_unused]] +std::ostream& operator<<(std::ostream& o, const marker_set& ms) { + o << "(marker-set \"" << ms.name << "\" " << ms.color; + for (auto& l: ms.locations) o << " " << l; + return o << ")"; + +} + +parse_hopefully parse_markers(asc::lexer& L) { + EXPECT_TOKEN(L, tok::lparen); + + marker_set markers; + + // parse marker kind keyword + auto t = L.current(); + if (!is_marker_symbol(t)) { + return unexpected(PARSE_ERROR("expected a valid marker type", t.loc)); + } + L.next(); + while (L.current().kind==tok::lparen) { + auto n = L.peek(); + if (symbol_matches("Color", n)) { + PARSE_COLOR(L, markers.color); + } + else if (symbol_matches("Name", n)) { + PARSE_NAME(L, markers.name); + } + else { + arb::mpoint loc; + PARSE_POINT(L, loc); + markers.locations.push_back(loc); + } + } + + EXPECT_TOKEN(L, tok::rparen); + + return markers; +} + +#define PARSE_MARKER(L, X) if (auto rval__ = parse_markers(L)) X=std::move(*rval__); else return FORWARD_PARSE_ERROR(rval__.error()); + struct branch { std::vector samples; std::vector children; @@ -348,10 +424,11 @@ parse_hopefully parse_branch(asc::lexer& L) { }; // One of these symbols must always be present at what Arbor calls a terminal. - auto branch_end_symbol = [] (const asc::token& t) { - return symbol_matches("Incomplete", t) + auto is_branch_end_symbol = [] (const asc::token& t) { + return symbol_matches("Normal", t) + || symbol_matches("High", t) || symbol_matches("Low", t) - || symbol_matches("Normal", t) + || symbol_matches("Incomplete", t) || symbol_matches("Generated", t); }; @@ -365,16 +442,24 @@ parse_hopefully parse_branch(asc::lexer& L) { PARSE_POINT(L, sample); B.samples.push_back(sample); } + // A marker statement is always of the form ( MARKER_TYPE ...) + else if (t.kind==tok::lparen && is_marker_symbol(p)) { + marker_set markers; + PARSE_MARKER(L, markers); + // Parse the markers, but don't record information about them. + // These could be grouped into locset by name and added to the label dictionary. + } // Spines are marked by a "less than", i.e. "<", symbol. else if (t.kind==tok::lt) { arb::mpoint spine; PARSE_SPINE(L, spine); + // parse the spine, but don't record the location. } // Test for a symbol that indicates a terminal. - else if (branch_end_symbol(t)) { + else if (is_branch_end_symbol(t)) { L.next(); // Consume symbol if (!branch_end(t)) { - return unexpected(PARSE_ERROR("Incomplete, Normal, Low or Generated not at a branch terminal", t.loc)); + return unexpected(PARSE_ERROR("Incomplete, Normal, High, Low or Generated not at a branch terminal", t.loc)); } finished = true; } @@ -693,10 +778,10 @@ asc_morphology parse_asc_string(const char* input) { labels.set("dend", arb::reg::tagged(3)); labels.set("apic", arb::reg::tagged(4)); - return {std::move(morphology), std::move(labels)}; + return {stree, std::move(morphology), std::move(labels)}; } -asc_morphology load_asc(std::string filename) { +ARB_ARBORIO_API asc_morphology load_asc(std::string filename) { std::ifstream fid(filename); if (!fid.good()) { diff --git a/arborio/neuroml.cpp b/arborio/neuroml.cpp index 05d594c013..31dcc80777 100644 --- a/arborio/neuroml.cpp +++ b/arborio/neuroml.cpp @@ -59,7 +59,7 @@ nml_cyclic_dependency::nml_cyclic_dependency(const std::string& id, unsigned lin line(line) {} -struct neuroml_impl { +struct ARB_ARBORIO_API neuroml_impl { xml_doc doc; neuroml_impl() {} diff --git a/arborio/parse_helpers.hpp b/arborio/parse_helpers.hpp index 7a611ae1fa..5b0c37f9a7 100644 --- a/arborio/parse_helpers.hpp +++ b/arborio/parse_helpers.hpp @@ -4,12 +4,14 @@ #include #include #include +#include #include #include #include #include #include +#include namespace arborio { using namespace arb; @@ -23,18 +25,33 @@ template <> inline bool match(const std::type_info& info) { return info == typeid(arb::locset); } template <> inline bool match(const std::type_info& info) { return info == typeid(arb::region); } +template <> inline +bool match(const std::type_info& info) { return info == typeid(arb::iexpr); } // Convert a value wrapped in a std::any to target type. template T eval_cast(std::any arg) { return std::move(std::any_cast(arg)); } + template <> inline double eval_cast(std::any arg) { if (arg.type()==typeid(int)) return std::any_cast(arg); return std::any_cast(arg); } +template +T conversion_cast(std::any arg) { + return eval_cast(std::move(arg)); +} + +template +T conversion_cast(std::any arg) { + if (match(arg.type())) return T(eval_cast(arg)); + + return conversion_cast(arg); +} + // Test whether a list of arguments passed as a std::vector can be converted // to the types in Args. // @@ -99,6 +116,47 @@ struct fold_match { } }; + +// Fold with first converting from any of the "Types" to type T. +template +struct fold_conversion_eval { + using fold_fn = std::function; + fold_fn f; + + using anyvec = std::vector; + using iterator = anyvec::iterator; + + fold_conversion_eval(fold_fn f): f(std::move(f)) {} + + T fold_impl(iterator left, iterator right) { + if (std::distance(left,right)==1u) { + return conversion_cast(std::move(*left)); + } + // Compute fold. Order is important for left-associative operations like division and + // subtraction + auto back = right - 1; + return f(fold_impl(left, back), conversion_cast(std::move(*back))); + } + + std::any operator()(anyvec args) { + return fold_impl(args.begin(), args.end()); + } +}; + +// Test if all args match at least one of the "Types" types +template +struct fold_conversion_match { + bool operator()(const std::vector& args) const { + if (args.size() < 2) return false; + + bool m = true; + for (const auto& a : args) { + m = m && (match(a.type()) || ...); + } + return m; + } +}; + // Evaluator: member of make_call, make_arg_vec_call, make_mech_call, make_branch_call, make_unordered_call struct evaluator { using any_vec = std::vector; @@ -163,6 +221,22 @@ struct make_fold { } }; +// Fold with first converting from any of the "Types" to type T. +template +struct make_conversion_fold { + evaluator state; + + template + make_conversion_fold(F&& f, const char* msg = "fold_conversion"): + state(fold_conversion_eval(std::forward(f)), + fold_conversion_match(), + msg) {} + + operator evaluator() const { + return state; + } +}; + // Test whether a list of arguments passed as a std::vector can be converted // to a std::vector>. // diff --git a/arborio/parse_s_expr.hpp b/arborio/parse_s_expr.hpp index b240897dd6..0e6362b794 100644 --- a/arborio/parse_s_expr.hpp +++ b/arborio/parse_s_expr.hpp @@ -1,6 +1,7 @@ #pragma once #include +#include #include namespace arborio { @@ -40,6 +41,6 @@ s_expr slist_range(const Range& range) { return slist_range(std::begin(range), std::end(range)); } -parse_hopefully parse_expression(const std::string&); +ARB_ARBORIO_API parse_hopefully parse_expression(const std::string&); } // namespace arborio diff --git a/arborio/swcio.cpp b/arborio/swcio.cpp index 1b6bec16f8..34a0fec657 100644 --- a/arborio/swcio.cpp +++ b/arborio/swcio.cpp @@ -51,7 +51,7 @@ swc_unsupported_tag::swc_unsupported_tag(int record_id): // Record I/O: -std::ostream& operator<<(std::ostream& out, const swc_record& record) { +ARB_ARBORIO_API std::ostream& operator<<(std::ostream& out, const swc_record& record) { std::ios_base::fmtflags flags(out.flags()); out.precision(std::numeric_limits::digits10+2); @@ -64,7 +64,7 @@ std::ostream& operator<<(std::ostream& out, const swc_record& record) { return out; } -std::istream& operator>>(std::istream& in, swc_record& record) { +ARB_ARBORIO_API std::istream& operator>>(std::istream& in, swc_record& record) { std::string line; if (!getline(in, line, '\n')) return in; @@ -124,7 +124,7 @@ swc_data::swc_data(std::string meta, std::vector recs) : // Parse and validate swc data -swc_data parse_swc(std::istream& in) { +ARB_ARBORIO_API swc_data parse_swc(std::istream& in) { // Collect any initial comments (lines beginning with '#'). std::string metadata; @@ -155,12 +155,12 @@ swc_data parse_swc(std::istream& in) { return swc_data(metadata, std::move(records)); } -swc_data parse_swc(const std::string& text) { +ARB_ARBORIO_API swc_data parse_swc(const std::string& text) { std::istringstream is(text); return parse_swc(is); } -arb::morphology load_swc_arbor(const swc_data& data) { +ARB_ARBORIO_API arb::segment_tree load_swc_arbor_raw(const swc_data& data) { const auto& records = data.records(); if (records.empty()) return {}; @@ -202,10 +202,10 @@ arb::morphology load_swc_arbor(const swc_data& data) { throw swc_spherical_soma(first_id); } - return arb::morphology(tree); + return tree; } -arb::morphology load_swc_neuron(const swc_data& data) { +ARB_ARBORIO_API arb::segment_tree load_swc_neuron_raw(const swc_data& data) { constexpr int soma_tag = 1; const auto n_samples = data.records().size(); @@ -230,7 +230,7 @@ arb::morphology load_swc_neuron(const swc_data& data) { if (auto it=std::find_if(R.begin(), R.end(), [](const auto& r) {return r.tag<1 || r.tag>4;}); it!=R.end()) { throw swc_unsupported_tag(R[std::distance(R.begin(), it)].id); } - return load_swc_arbor(data); + return load_swc_arbor_raw(data); } // Make a copy of the records and canonicalise them. @@ -326,8 +326,11 @@ arb::morphology load_swc_neuron(const swc_data& data) { } } - return arb::morphology(tree); + return tree; } +ARB_ARBORIO_API arb::morphology load_swc_neuron(const swc_data& data) { return {load_swc_neuron_raw(data)}; } +ARB_ARBORIO_API arb::morphology load_swc_arbor(const swc_data& data) { return {load_swc_arbor_raw(data)}; } + } // namespace arborio diff --git a/ci/gitlab-cscs.yml b/ci/gitlab-cscs.yml index 819c4431e3..9d512be85d 100644 --- a/ci/gitlab-cscs.yml +++ b/ci/gitlab-cscs.yml @@ -101,7 +101,7 @@ single_node_release: only: ['master', 'staging', 'trying'] stage: test script: - - unit --gtest_filter="-mechcat.loading" + - unit --gtest_filter="-mechcat.loading:test_exception.terminate_if_no_wait_DeathTest" - unit-local - unit-modcc variables: @@ -121,14 +121,14 @@ multi_node_release: SLURM_NTASKS: 2 ALLOCATION_NAME: arbor-ci-release-$CI_PIPELINE_ID -test_ault_fujitsu: - needs: [] - tags: - - arm-a64fx - stage: test - script: - - chmod +x ci/test-ault-fujitsu.sh - - srun --partition=a64fx -c48 ci/test-ault-fujitsu.sh "$(pwd)" +#test_ault_fujitsu: +# needs: [] +# tags: +# - arm-a64fx +# stage: test +# script: +# - chmod +x ci/test-ault-fujitsu.sh +# - srun --partition=a64fx -c48 ci/test-ault-fujitsu.sh "$(pwd)" deallocate_release: only: ['master', 'staging', 'trying'] diff --git a/cmake/CompilerOptions.cmake b/cmake/CompilerOptions.cmake index 086726857d..5a8b2bcab0 100644 --- a/cmake/CompilerOptions.cmake +++ b/cmake/CompilerOptions.cmake @@ -136,3 +136,31 @@ function(set_arch_target optvar arch) endif() endfunction() + +function(export_visibility target) + # mangle target name to correspond to cmake naming + string(REPLACE "-" "_" target_name ${target}) + # extract compact library name + string(REPLACE "arbor-" "" target_short_name ${target}) + # make upper case + string(TOUPPER ${target_short_name} target_short_NAME) + + # conditional on build type + get_target_property(target_type ${target} TYPE) + if (${target_type} STREQUAL STATIC_LIBRARY) + # building static library + string(CONCAT target_export_def ${target_name} "_EXPORTS_STATIC") + target_compile_definitions(${target} PRIVATE ${target_export_def}) + else() + # building shared library + string(CONCAT target_export_def ${target_name} "_EXPORTS") + # the above compile definition is added by cmake automatically + endif() + + # generate config file + get_target_property(target_binary_dir ${target} BINARY_DIR) + configure_file( + ${PROJECT_SOURCE_DIR}/cmake/export.hpp.in + ${target_binary_dir}/include/${target_short_name}/export.hpp + @ONLY) +endfunction() diff --git a/cmake/FindRandom123.cmake b/cmake/FindRandom123.cmake new file mode 100644 index 0000000000..5ca93e6c03 --- /dev/null +++ b/cmake/FindRandom123.cmake @@ -0,0 +1,23 @@ + +# CMake find_package() Module for Random123 header-only C++ library +# https://github.com/DEShawResearch/random123 +# +# Example usage: +# +# find_package(Random123) +# +# If successful the following variables will be defined +# RANDOM123_FOUND +# RANDOM123_INCLUDE_DIR + +find_path(RANDOM123_INCLUDE_DIR Random123/threefry.h) + +if(RANDOM123_INCLUDE_DIR) + set(RANDOM123_FOUND TRUE) + message(STATUS "Found Random123: ${RANDOM123_INCLUDE_DIR}") +endif() + +if(RANDOM123_FIND_REQUIRED AND NOT RANDOM123_FOUND) + message(FATAL_ERROR "Required package Random123 not found") +endif() + diff --git a/cmake/FindUnwind.cmake b/cmake/FindUnwind.cmake deleted file mode 100644 index 000f9dd60c..0000000000 --- a/cmake/FindUnwind.cmake +++ /dev/null @@ -1,65 +0,0 @@ -# Find the libunwind library -# -# Unwind_FOUND - True if libunwind was found -# Unwind_LIBRARIES - The libraries needed to use libunwind -# Unwind_INCLUDE_DIR - Location of unwind.h and libunwind.h -# -# The environment and cmake variables Unwind_ROOT and Unwind_ROOT_DIR -# respectively can be used to help CMake finding the library if it -# is not installed in any of the usual locations. -# -# Registers "Unwind::unwind" as an import library. - -if(NOT Unwind_FOUND) - set(Unwind_SEARCH_DIR ${Unwind_ROOT_DIR} $ENV{Unwind_ROOT}) - - find_path(Unwind_INCLUDE_DIR libunwind.h - HINTS ${Unwind_SEARCH_DIR} - PATH_SUFFIXES include - ) - - # libunwind requires that we link agains both libunwind.so/a and a - # a target-specific library libunwind-target.so/a. - # This code sets the "target" string above in libunwind_arch. - if (CMAKE_SYSTEM_PROCESSOR MATCHES "^arm") - set(_libunwind_arch "arm") - elseif (CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64" OR CMAKE_SYSTEM_PROCESSOR STREQUAL "amd64") - set(_libunwind_arch "x86_64") - elseif (CMAKE_SYSTEM_PROCESSOR MATCHES "^i.86$") - set(_libunwind_arch "x86") - endif() - - find_library(_unwind_library_generic unwind - HINTS ${Unwind_SEARCH_DIR} - PATH_SUFFIXES lib64 lib - ) - - find_library(_unwind_library_target unwind-${_libunwind_arch} - HINTS ${Unwind_SEARCH_DIR} - PATH_SUFFIXES lib64 lib - ) - - set(Unwind_LIBRARIES ${_unwind_library_generic} ${_unwind_library_target}) - - include(FindPackageHandleStandardArgs) - find_package_handle_standard_args(Unwind DEFAULT_MSG Unwind_INCLUDE_DIR Unwind_LIBRARIES) - - mark_as_advanced(Unwind_LIBRARIES Unwind_INCLUDE_DIR) - - if(Unwind_FOUND) - set(Unwind_INCLUDE_DIRS ${Unwind_INCLUDE_DIR}) - if(NOT TARGET Unwind::unwind) - add_library(Unwind::unwind UNKNOWN IMPORTED) - set_target_properties(Unwind::unwind PROPERTIES - IMPORTED_LOCATION "${_unwind_library_generic}" - INTERFACE_LINK_LIBRARIES "${_unwind_library_target}" - INTERFACE_INCLUDE_DIRECTORIES "${Unwind_INCLUDE_DIR}" - ) - endif() - endif() - - unset(_unwind_search_dir) - unset(_unwind_library_generic) - unset(_unwind_library_target) - unset(_libunwind_arch) -endif() diff --git a/cmake/export.hpp.in b/cmake/export.hpp.in new file mode 100644 index 0000000000..655cb4bb2d --- /dev/null +++ b/cmake/export.hpp.in @@ -0,0 +1,41 @@ +#pragma once + +//#ifndef ARB_EXPORT_DEBUG +//# define ARB_EXPORT_DEBUG +//#endif + +#include + +/* library build type (ARB_@target_short_NAME@_STATIC_LIBRARY/ARB_@target_short_NAME@_SHARED_LIBRARY) */ +#define ARB_@target_short_NAME@_@target_type@ + +#ifndef ARB_@target_short_NAME@_EXPORTS +# if defined(@target_name@_EXPORTS) + /* we are building @target@ dynamically */ +# ifdef ARB_EXPORT_DEBUG +# pragma message "we are building @target@ dynamically" +# endif +# define ARB_@target_short_NAME@_API ARB_SYMBOL_EXPORT +# elif defined(@target_name@_EXPORTS_STATIC) + /* we are building @target@ statically */ +# ifdef ARB_EXPORT_DEBUG +# pragma message "we are building @target@ statically" +# endif +# define ARB_@target_short_NAME@_API +# else + /* we are using the library @target@ */ +# if defined(ARB_@target_short_NAME@_SHARED_LIBRARY) + /* we are importing @target@ dynamically */ +# ifdef ARB_EXPORT_DEBUG +# pragma message "we are importing @target@ dynamically" +# endif +# define ARB_@target_short_NAME@_API ARB_SYMBOL_IMPORT +# else + /* we are importing @target@ statically */ +# ifdef ARB_EXPORT_DEBUG +# pragma message "we are importing @target@ statically" +# endif +# define ARB_@target_short_NAME@_API +# endif +# endif +#endif diff --git a/doc/concepts/decor.rst b/doc/concepts/decor.rst index 3b15a827b8..db6264c75b 100644 --- a/doc/concepts/decor.rst +++ b/doc/concepts/decor.rst @@ -31,6 +31,14 @@ Decorations are described by a **decor** object in Arbor. It provides facilities * setting properties defined over the whole cell; * descriptions of dynamics applied to regions and locsets. +.. note:: + + All methods on decor objects (``paint``, ``place``, and ``set_default``) + return a reference to the objects so you can chain them together. This saves + some repetition. You can break long statements over multiple lines, but in + Python this requires use of continuation lines ``\`` or wrapping the whole + expression into parentheses. + .. _cablecell-paint: Painted dynamics @@ -62,6 +70,7 @@ The types of dynamics, and where they can be defined, are cable properties, ✓, ✓, ✓ ion initial conditions, ✓, ✓, ✓ density mechanism, ✓, --, -- + scaled-mechanism (density), ✓, --, -- ion rev pot mechanism, --, ✓, ✓ ion valence, --, --, ✓ @@ -166,7 +175,28 @@ Take for example the built-in mechanism for passive leaky dynamics: .. _cablecell-ions: -4. Ion species +.. _cablecell-scaled-mechs: + +4. Scaled mechanisms +~~~~~~~~~~~~~~~~~~~~~ +Mechanism parameters are usually homogeneous along a cell. However, sometimes it is useful to scale parameters based on inhomogeneous properties. +:ref:`Inhomogeneous expressions ` provide a way to describe a desired scaling formula, which for example can include the cell radius or the distance to a given set of locations. +The name is inspired by NeuroML's https://docs.neuroml.org/Userdocs/Schemas/Cells.html#schema-inhomogeneousparameter. +Such an expression is evaluated along the cell and yields a scaling factor, which is multiplied with the base value of the selected parameter. +Internally, this evaluation and scaling is done at mid-points of the cable partition of the cell. +Currently, only parameters of :ref:`density mechanisms ` can be scaled. + + +.. code-block:: Python + + # Create mechanism with custom conductance (range) + m = arbor.mechanism('pas', {'g': 0.1}) + + decor = arbor.decor() + # paint a scaled density mechanism, where 'g' is scaled with the distance from the root. + decor.paint('"dend"', arbor.scaled_mechanism(arbor.density(m), {'g': '(distance 1.0 (root))'})) + +5. Ion species ~~~~~~~~~~~~~~ Arbor allows arbitrary ion species to be defined, to extend the default @@ -188,6 +218,7 @@ Each ion species has the following properties: 2. *external concentration*: concentration on exterior of the membrane [mM]. 3. *reversal potential*: reversal potential [mV]. 4. *reversal potential mechanism*: method for calculating reversal potential. +5. *diffusivity*: diffusion coefficient for marker concentration, defaults to zero [m^2/s]. Properties 1, 2 and 3 must be defined, and are used as the initial values for each quantity at the start of the simulation. They are specified globally, @@ -256,6 +287,29 @@ using the *paint* interface: # Alternatively, one can selectively overwrite the global defaults. decor.paint('(tag 2)', arbor.ion('ca', rev_pot=126) +To enable diffusion of ion species along the morphology (axial diffusion) one +sets the per-species diffusivity to a positive value. It can be changed per +region and defaults to zero. This is strictly passive transport according to the +diffusion equation ``X' = ß ∆X`` where ``X`` is the species' diffusive +concentration and ``ß`` the diffusivity constant. + +.. code-block:: Python + + decor = arbor.decor() + decor.set_ion('ca', diff=23.0) + decor.paint('"region"', 'ca', diff=42.0) + +Be aware of the consequences of setting ``ß > 0`` only in some places, namely +pile-up effects similar to reflective bounds. + +The diffusive concentration is *separate* from the internal concentration for +reasons innate to the cable model, which require resetting it to its starting +point at every timestep. It can be accessed from NMODL density and point +mechanisms as an independent quantity, see :ref:`NMODL mechanism `. It is +present on the full morphology if its associated diffusivity is set to a +non-zero value on any subset of the morphology, ie ``region``. It is initialised +to the value of the internal concentration at time zero. + .. _cablecell-place: Placed dynamics @@ -302,6 +356,28 @@ A point mechanism (synapse) can form the target of a :term:`connection` on a cel 2. Threshold detectors (spike detectors). ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +Spike detectors have a dual use: they can be used to record spike times, but are also used in propagating signals +between cells. An example where we're interested in when a threshold of ``-10 mV`` is reached: + +.. code-block:: Python + + # Placing a spike detector might look like this. + decor = arbor.decor() + decor.place('"root"', arbor.spike_detector(-10), "my_spike_detector") + + # At this point, "my_spike_detector" could be connected to another cell, + # and it would transmit events upon the voltage crossing the threshold. + + # Just printing those spike times goes as follows. + sim = arbor.simulation(...) + sim.record(arbor.spike_recording.all) + sim.run(...) + print("spikes:") + for sp in sim.spikes(): + print(" ", sp) + +See also :term:`spike detector`. + .. _cablecell-gj-mechs: 3. Gap junction connection sites @@ -370,6 +446,7 @@ constant stimuli and constant amplitude stimuli restricted to a fixed time inter 5. Probes ~~~~~~~~~ +See :ref:`probesample`. API --- diff --git a/doc/concepts/domdec-diag-1.html b/doc/concepts/domdec-diag-1.html new file mode 100644 index 0000000000..b4c14cdb1b --- /dev/null +++ b/doc/concepts/domdec-diag-1.html @@ -0,0 +1,95 @@ +
+
Recipe +
Cell descriptions +
gid 1 +
type lif_cell_0 +
...
+
+
+
...
+
gid 37 +
type cable_cell_A +
Morphology
+
Decor +
Mechanisms
+
Connection sites
+
+
Label dictionary
+
+
+
+
Cell kinds +
gid 1 +
type arbor.lif_cell +
+
+
...
+
gid 37 +
type arbor.cable_cell
+
+
+
... +
+
+
+
+ Simulator: requests cell description of gid=37 +
+
+ Recipe: type=cable_cell_A. +
+
+ Simulator: requests cell kind of gid=37 +
+
+ Recipe: kind=arbor.cable_cell. +
+
+ Simulator: look up cell group implementation for kind arbor.cable_cell. +
+
+ Domain decomposition: cable_cell_group_gpu +
+
+ Simulator: cable_cell_group_gpu construct cable_cell_A object. +
+
+ cable_cell_group_gpu: Construction complete. +
+
+ Simulator: cable_cell_group_gpu simulate for t .. t + dt +
+
+
Simulation +
Recipe
+
Context +
+ 12 threads +
+
+ 1 GPU +
+
+
Domain decomposition +
+ cable_cell_group_gpu +
1 GPU
+
+
+ ... +
+
+
+
+
+ An illustration of the cell-specific portion of the recipe, and how it is + used during the lifetime of the simulation: the simulation object will, + depending on its configuration, query the recipe for the neuroscientific + components it describes. This demonstration also show why the recipe separates + cell descriptions from cell types. The latter is, as you might expect, + shorthand, and is used in the allocation of the cell to a particular cell group. + A cell group implementation is a handler for a certain kind of cell, and Arbor + comes with these for all it's included cell kinds. However, users can develop + their own specialized cell group implementations. More on that in the internal + developer documentation. +
diff --git a/doc/concepts/domdec.rst b/doc/concepts/domdec.rst index a95fe65c78..f4dac781a6 100644 --- a/doc/concepts/domdec.rst +++ b/doc/concepts/domdec.rst @@ -3,25 +3,64 @@ Domain decomposition ==================== -A *domain decomposition* describes the distribution of the model over the available computational resources. -The description partitions the cells in the model as follows: +An Arbor simulation requires a :ref:`modelrecipe`, a :ref:`(hardware) context +`, and a domain decomposition. The Recipe contains the +neuroscientific model, the hardware context describes the computational +resources you are going to execute the simulation on, and the domain +decomposition describes how Arbor will use the hardware. Since the context and +domain decomposition may seem closely related at first, it might be instructive +to see how recipes are used by Arbor: -* group the cells into cell groups of the same :ref:`kind ` of cell; +.. raw:: html + :file: domdec-diag-1.html + +A *domain decomposition* describes the distribution of the model over the +available computational resources. The description partitions the cells in the +model as follows: + +* group the cells into cell groups of the same :ref:`kind ` of + cell; * assign each cell group to either a CPU core or GPU on a specific MPI rank. -The number of cells in each cell group depends on different factors, including the type of the cell, and whether the -cell group will run on a CPU core or the GPU. The domain decomposition is solely responsible for describing the distribution -of cells across cell groups and domains. +The number of cells in each cell group depends on different factors, including +the type of the cell, and whether the cell group will run on a CPU core or the +GPU. The domain decomposition is solely responsible for describing the +distribution of cells across cell groups and domains. + +The domain decomposition can be built manually by the modeler, or an automatic +load balancer can be used. + +We define some terms as used in the context of connectivity + +.. glossary:: + + connection + Tuple of ``(source, target, weight, delay)`` describing an + axon/synapse connection as travelling time (`delay`) and attenuation + (`weight`) between two sites `source = (gid, spike_detector)` and `target + = (gid, synapse)` where `spike_detector` and `synapse` are string labels. + + cell_group + List of same-kinded cells that share some information. Must not be split + across domains. -The domain decomposition can be built manually by the modeler, or an automatic load balancer can be used. + domain + Produced by a `load_balancer`, a list of all `cell_groups` + located on the same hardware. A `communicator` deals with the full set of + cells of one `domain`. + domain_decomposition + List of domains; distributed across MPI processes. Load balancers -------------- -A *load balancer* generates the domain decomposition using the model :ref:`recipe ` and a description of -the available computational resources on which the model will run described by an :ref:`execution context `. -Currently Arbor provides one load balancer and more will be added over time. +A *load balancer* generates the domain decomposition using the model +:ref:`recipe ` and a description of the available computational +resources on which the model will run described by an :ref:`execution context +`. Currently Arbor provides one automatic load balancer and a +method for manually listing out the cells per MPI task. More approaches might be +added over time. API --- diff --git a/doc/concepts/hardware.rst b/doc/concepts/hardware.rst index 4683207853..bb684e8ca9 100644 --- a/doc/concepts/hardware.rst +++ b/doc/concepts/hardware.rst @@ -1,22 +1,25 @@ .. _modelhardware: -Hardware management -=================== +Hardware context +================ + +An Arbor simulation requires a :ref:`modelrecipe`, a (hardware) context, and a :ref:`modeldomdec`. The Recipe contains the neuroscientific model, the hardware context describes the computational resources you are going to execute the simulation on, and the domain decomposition describes how Arbor will use the hardware. Since the context and domain decomposition may seem closely related at first, it might be instructive to see how recipes are used by Arbor: + +.. raw:: html + :file: domdec-diag-1.html *Local resources* are locally available computational resources, specifically the number of hardware threads and the number of GPUs. An *allocation* enumerates the computational resources to be used for a simulation, typically a subset of the resources available on a physical hardware node. -.. Note:: - - New users can find using contexts a little verbose. - The design is very deliberate, to allow fine-grained control over which - computational resources an Arbor simulation should use. - As a result Arbor is much easier to integrate into workflows that - run multiple applications or libraries on the same node, because - Arbor has a direct API for using on node resources (threads and GPU) - and distributed resources (MPI) that have been partitioned between - applications/libraries. +New users can find using contexts a little verbose. +The design is very deliberate, to allow fine-grained control over which +computational resources an Arbor simulation should use. +As a result Arbor is much easier to integrate into workflows that +run multiple applications or libraries on the same node, because +Arbor has a direct API for using on node resources (threads and GPU) +and distributed resources (MPI) that have been partitioned between +applications/libraries. .. _modelcontext: diff --git a/doc/concepts/index-diag-1.html b/doc/concepts/index-diag-1.html new file mode 100644 index 0000000000..09e64345da --- /dev/null +++ b/doc/concepts/index-diag-1.html @@ -0,0 +1,36 @@ +
+
+
+
Recipe +
describe the neuroscience
+
Cells +
+
Network +
+
In- & outputs +
+
... +
+
+
Simulation +
describe the execution
+
Recipe
+
+
Context +
describe hardware
+
+
+
Domain decomposition +
describe how to use hardware
+
+
+
+
An overview of Arbor. The two columns reflect a division that is core to Arbor: the neuroscience is described entirely separate from the execution of the simulation. The Recipe ties the neuroscience together: the user can provide any number of cells, each with a particular type, morphology and set of mechanisms; a network configuration; and in- & outputs like event generators and probes. This description, the recipe, is self-contained and can be executed by any configuration of execution. Execution is determined by the available hardware and instructions for how certain parts of a recipe (e.g. cell groups) are executed on that hardware.
+ + + + + + + + diff --git a/doc/concepts/index.rst b/doc/concepts/index.rst index b182428091..f1cf92b071 100644 --- a/doc/concepts/index.rst +++ b/doc/concepts/index.rst @@ -3,6 +3,14 @@ Concepts overview ================= +Arbor is a library that lets you to model neural networks with morphologically +detailed cells; which it then executes the resulting simulation on a variety of +hardware. The execution can optionally be configured in high detail but comes +with sensible defaults. + +.. raw:: html + :file: index-diag-1.html + To learn how to use Arbor, it is helpful to understand some of its concepts. Arbor's design aims to enable scalability through abstraction. To achieve this, Arbor makes a distinction between the **description** of a model, and the diff --git a/doc/concepts/interconnectivity.rst b/doc/concepts/interconnectivity.rst index 5ff303a267..8c56064801 100644 --- a/doc/concepts/interconnectivity.rst +++ b/doc/concepts/interconnectivity.rst @@ -12,9 +12,67 @@ Connections only capture the propagation delay and attenuation associated with s connectivity: the biophysical modelling of the chemical synapses themselves is the responsibility of the target cell model. -Connection sites and gap junction sites are defined on locations on cells as part of the -:ref:`cell description `. -A recipe lets you define which sites are connected to which. +Connection sites and gap junction sites are defined on locations on cells as +part of the :ref:`cell description `. +These sites as such are not connected yet, however the :ref:`recipe ` +exposes a number of callbacks to form connections and gap junctions between sites. +The recipe callbacks are interrogated during simulation creation. + +In addition, simulations may update their connectivity by building a new +connection table outside calls to `run`, for example + +.. code-block:: python + + rec = recipe() + dec = arb.domain_decomposition(rec, ctx) + sim = arb.simulation(rec, ctx, dec) + + # run simulation for 0.25ms with the basic connectivity + sim.run(0.25, 0.025) + + # extend the recipe to more connections + rec.add_connections() + # use `connections_on` to build a new connection table + sim.update_connections(rec) + + # run simulation for 0.25ms with the extended connectivity + sim.run(0.5, 0.025) + +This will completely replace the old table, previous connections to be retained +must be explicitly included in the updated callback. This can also be used to +update connection weights and delays. Note, however, that there is currently no +way to introduce new sites to the simulation, nor any changes to gap junctions. + +The ``update_connections`` method accepts either a full ``recipe`` (but will +**only** use the ``connections_on`` and ``events_generators`` callbacks) or a +``connectivity``, which is a reduced recipe exposing only the relevant callbacks. +Currently ``connectivity`` is only available in C++; Python users have to pass a +full recipe. + +.. warn:: + + The semantics of connection updates are subtle and might produce surprising + results if handled carelessly. In particular, spikes in-flight over a + connection will *always* be delivered, even if the connection has been + deleted before the time of delivery has passed (`= t_emitted + + connection_delay`). As Arbor's connection model joins processes on the axon, + the synaptic cleft, and the receiving synapse into a simple pair `(weight, + delay)` it is unclear 'where' the action potential is located at the time of + deletion relative to the locus of disconnection. Thus, it was decided to + deliver spike events regardless. This is will not cause issues when the + transition is slow and smooth, ie weights decays over time towards a small + value and then the connection is removed. However, drastic and/or frequent + changes across busy synapses might cause unexpected behaviour. + +.. note:: + + Arbor uses a lazily constructed network (from the ``recipe`` callbacks) for + good reason; storing the full connectivity (for all ``gids``) in the + ``recipe`` can lead to probitivively large memory footprints. Keep this in + mind when designing your connectivity and heed the consequences of doing I/O + in these callbacks. This is doubly important when using models with dynamic + connectivity where the temptation to store all connections is even larger and + each call to ``update`` will re-evaluate the corresponding callbacks. .. _modelconnections: @@ -35,10 +93,31 @@ A recipe lets you define which sites are connected to which. a :gen:`global_label`; a target identified using a :gen:`local_label` (:gen:`gid` of target is the argument of the recipe method); a connection delay and a connection weight. + .. code-block:: python + + def connections_on(self, gid): + if gid + 1 < self.num_cells(): + return [arbor.connection((gid + 1, "spike-source"), "synapse", weight, delay)] + else: + return [] + spike action potential Spikes travel over :term:`connections `. In a synapse, they generate an event. + spike detector + :ref:`Placed ` on a cell. Possible source of a connection. + Detects crossing of a fixed threshold and generates corresponding events. + Also used to :ref:`record spikes <>` for analysis. See :ref:`here + ` for more information. + + spike source cell + Artificial cell to generate spikes on a given schedule, see :ref:`spike cell `. + + recording + By default, spikes are used for communication, but not stored for analysis, + however, :ref:`simulation ` objects can be instructed to record spikes. + event In a synapse :term:`spikes ` generate events, which constitute stimulation of the synapse mechanism and the transmission of a signal. A synapse may receive events directly from an @@ -58,14 +137,34 @@ A recipe lets you define which sites are connected to which. Similarly to `Connections`, Gap Junctions in Arbor are defined in two steps: - 1. Create labeled **gap junction sites** on two separate cells as part of their - :ref:`cell descriptions ` in the :ref:`recipe `. - Each labeled group of gap junctions may contain multiple items on possibly multiple locations - on the cell. - 2. Declare the Gap Junction connections in the recipe *on the local cell*: from a peer **gap junction site** - identified using a :gen:`global_label`; to a local **gap junction site** identified using a - :gen:`local_label` (:gen:`gid` of the site is implicitly known); and a unit-less connection weight. - Two of these connections are needed, on each of the peer and local cells. + 1. Create labeled **gap junction sites** on two separate cells as part of + their :ref:`cell descriptions ` in the :ref:`recipe + `. Each labeled group of gap junctions may contain multiple + items on possibly multiple locations on the cell. + 2. Declare the Gap Junction connections in the recipe *on the local cell*: + from a peer **gap junction site** identified using a + :gen:`global_label`; to a local **gap junction site** identified using + a :gen:`local_label` (:gen:`gid` of the site is implicitly known); and + a unit-less connection weight. Two of these connections are needed, on + each of the peer and local cells. The callback `gap_junctions_on` + returns a list of these items, eg + + .. code-block:: python + + def gap_junctions_on(self, gid): + n = self.num_cells + if gid + 1 < n and gid > 0: + return [arbor.gap_junction_connection((gid + 1, "gj"), "gj", weight), + arbor.gap_junction_connection((gid - 1, "gj"), "gj", weight),] + elif gid + 1 < n: + return [arbor.gap_junction_connection((gid + 1, "gj"), "gj", weight),] + if gid > 0: + return [arbor.gap_junction_connection((gid - 1, "gj"), "gj", weight),] + else: + return [] + + Note that gap junction connections are symmetrical and thus the above + example generates two connections, one incoming and one outgoing. .. Note:: Only cable cells support gap junctions as of now. diff --git a/doc/concepts/labels.rst b/doc/concepts/labels.rst index 845674e48b..7027275384 100644 --- a/doc/concepts/labels.rst +++ b/doc/concepts/labels.rst @@ -98,6 +98,10 @@ the region of cables that have radius less than 0.5 μm .. _labels-expressions: +.. glossary:: + iexpr + An iexpr is an inhomogeneous expression, that can be evaluated at any point on a cell. + Expressions ----------- @@ -608,6 +612,162 @@ Region expressions Two regions (left and middle) and their intersection (right). + +.. _labels-iexpr: + +Inhomogeneous Expressions +~~~~~~~~~~~~~~~~~~~~~~~~~ + +.. label:: (scalar value:real) + + A scalar of given value. + +.. label:: (pi) + + A scalar expression representing the pi constant. + +.. label:: (distance scale:real loc:locset) + + The minimum distance to points within the locset ``loc``. The scaling parameter ``scale`` has unit :math:`{\mu m}^{-1}` + and is multiplied with the distance, such that the result is unitless. + + .. figure:: ../images/iexpr_distance.svg + :width: 600 + :align: center + + The distance between any two points (the evaluation location and a location within the locset), is calculated **along** the entire tree, even across the root. + Therefore, a distance expression is defined on the entire cell and only zero if evaluated at a location within the locset (or the scale parameter is set to zero). + +.. label:: (distance loc:locset) + + A distance expression with a default scaling factor of 1.0. + +.. label:: (distance scale:real reg:region) + + The minimum distance to the region ``reg``. Evaluates to zero within the region. The scaling parameter ``scale`` has unit :math:`{\mu m}^{-1}` + and is multiplied with the distance, such that the result is unitless. + +.. label:: (distance reg:region) + + A distance expression with a default scaling factor of 1.0. + +.. label:: (proximal-distance scale:real loc:locset) + + The minimum distance in proximal direction from the points within the locset ``loc``. The scaling parameter ``scale`` has unit :math:`{\mu m}^{-1}` + and is multiplied with the distance, such that the result is unitless. + + .. figure:: ../gen-images/iexpr_prox_dis.svg + :width: 600 + :align: center + + Example of a proximal-distance expression with a single input location. **Left**: Input location. **Right**: Area where the expression evaluates to non-zero values. + +.. label:: (proximal-distance loc:locset) + + A proximal-distance expression with a default scaling factor of 1.0. + +.. label:: (proximal-distance scale:real reg:region) + + The minimum distance in proximal direction from the region ``reg``. The scaling parameter ``scale`` has unit :math:`{\mu m}^{-1}` + and is multiplied with the distance, such that the result is unitless. + +.. label:: (proximal-distance reg:region) + + A proximal-distance expression with a default scaling factor of 1.0. + +.. label:: (distal-distance scale:real loc:locset) + + The minimum distance in distal direction from the points within the locset ``loc``. The scaling parameter ``scale`` has unit :math:`{\mu m}^{-1}` + and is multiplied with the distance, such that the result is unitless. + + .. figure:: ../gen-images/iexpr_dist_dis.svg + :width: 600 + :align: center + + Example of a distal-distance expression with a single input location. **Left**: Input location. **Right**: Area, where the expression evaluates to non-zero values. + +.. label:: (distal-distance loc:locset) + + A distal-distance expression with a default scaling factor of 1.0. + +.. label:: (distal-distance scale:real reg:region) + + The minimum distance in distal direction from the region ``reg``. The scaling parameter ``scale`` has unit :math:`{\mu m}^{-1}` + and is multiplied with the distance, such that the result is unitless. + +.. label:: (distal-distance reg:region) + + A distal-distance expression with a default scaling factor of 1.0. + +.. label:: (interpolation prox_value:real prox_loc:locset dist_value:real dist_loc:locset) + + Interpolates between the closest point in proximal direction in locset ``prox_loc`` and the closest point in + distal direction ``dist_loc`` with the assosiated unitless values ``prox_value`` and ``dist_value``. + Evaluates to zero, if no point is located in each required direction. + + **Note**: At any fork, an interpolation expression may be discontinuous, if the distance to the closest location within the distal locset differs along each attached branch. + + .. figure:: ../images/iexpr_interp.svg + :width: 600 + :align: center + + Example of an interpolation expression. **Red**: The root of the morphology. **Blue**: The proximal locset consisting of a single location. + **Green**: The distal locset, consisting of four locations. Given these locsets, an interpolation expression only evaluates to non-zero in the highlighted area. + For locations 3 and 4 of the distal locset, there is no location within the proximal locset, that is between them and the root (in proximal direction), + and therefore an interpolation expression cannot be evaluated and defaults to zero. + Contrary, for locations 1 and 2 of the distal locset, there is a location within the proximal locset in proximal direction. + + +.. label:: (interpolation prox_value:real prox_reg:region dist_value:real dist_reg:region) + + Interpolates between the region ``prox_reg`` in proximal diretion and the region ``dist_reg`` in distal direction + with the associated unitless values ``prox_value`` and ``dist_value``. If evaluated inside either region, returns the corresponding value. + Evaluates to zero, if no region is located in each required direction. + +.. label:: (radius scale:real) + + The radius of the cell at a given point multiplied with the ``scale`` parameter with unit :math:`{\mu m}^{-1}`. + +.. label:: (radius) + + A radius expression with a default scaling factor of 1.0. + +.. label:: (diameter scale:real) + + The diameter of the cell at a given point multiplied with the ``scale`` parameter with unit :math:`{\mu m}^{-1}`. + +.. label:: (diameter) + + A diameter expression with a default scaling factor of 1.0. + +.. label:: (add (iexpr | real) (iexpr | real) [... (iexpr | real)]) + + Addition of at least two inhomogeneous expressions or real numbers. + +.. label:: (sub (iexpr | real) (iexpr | real) [... (iexpr | real)]) + + Subtraction of at least two inhomogeneous expressions or real numbers. + The expression is evaluated from the left to right, subtracting each element from the first one in turn. + +.. label:: (mul (iexpr | real) (iexpr | real) [... (iexpr | real)]) + + Multiplication of at least two inhomogeneous expressions or real numbers. + +.. label:: (div (iexpr | real) (iexpr | real) [... (iexpr | real)]) + + Division of at least two inhomogeneous expressions or real numbers. + The expression is evaluated from the left to right, dividing the first element by each divisor in turn. + +.. label:: (exp value:(iexpr | real)) + + The exponential function of the inhomogeneous expression or real ``value``. + +.. label:: (log value:(iexpr | real)) + + The logarithm of the inhomogeneous expression or real ``value``. + + + .. _labels-thingify: Thingification @@ -674,7 +834,7 @@ Label Dictionaries .. glossary:: label A label is a string assigned to an :ref:`expression `, and used to refer to the expression or the - concrete :term:`region` or :term:`locset` generated when the expression is applied to a morphology. + concrete :term:`region` or :term:`locset` or :term:`iexpr` generated when the expression is applied to a morphology. Although any string is a valid label, it is a good idea to avoid labels that would also be valid expressions in the region DSL; creating a label ``"(tag 1)"`` will only @@ -686,7 +846,7 @@ lead to confusion. Label dictionaries are used to create a cable-cell along with the :ref:`morphology ` and a :ref:`decor `. The decorations can be painted or placed on -the regions or locsets defined in the label dictionary by referring to their labels. +the regions, locsets or iexpr defined in the label dictionary by referring to their labels. .. code-block:: python :caption: Example of a label dictionary in python: @@ -697,7 +857,8 @@ the regions or locsets defined in the label dictionary by referring to their lab 'dend': '(tag 3)', # dend is every cable with tab 3 in the morphology 'root': '(root)', # typically the start of the soma is at the root of the cell. 'stim_site': '(location 0 0.5)', # site for the stimulus, in the middle of branch 0. - 'axon_end': '(restrict (terminal) (region "axon"))'} # end of the axon. + 'axon_end': '(restrict (terminal) (region "axon"))', # end of the axon. + 'rad_expr': '(radius 0.5)'} # iexpr evaluating the radius scaled by 0.5 }) @@ -705,4 +866,4 @@ API --- * :ref:`Python ` -* *TODO*: C++ documentation. +* :ref:`C++ ` diff --git a/doc/concepts/mechanisms.rst b/doc/concepts/mechanisms.rst index 11bb5eda7e..3146af8d00 100644 --- a/doc/concepts/mechanisms.rst +++ b/doc/concepts/mechanisms.rst @@ -56,7 +56,7 @@ the `BBP mechanisms `). * *hh*: Classic Hodgkin-Huxley dynamics (:ref:`density mechanism @@ -74,8 +74,8 @@ With the exception of *nernst*, these mechanisms are the same as those available Two catalogues are provided that collect mechanisms associated with specific projects and model databases: -* *bbp* For models published by the Blue Brain Project (BBP). -* *allen* For models published on the Allen Brain Atlas Database. +* ``bbp_catalogue`` For models published by the Blue Brain Project (BBP). +* ``allen_catalogue`` For models published on the Allen Brain Atlas Database. .. _mechanisms_dynamic: @@ -267,4 +267,4 @@ API --- * :ref:`Python ` -* *TODO* C++ documentation. +* :ref:`C++ ` diff --git a/doc/concepts/morphology.rst b/doc/concepts/morphology.rst index 3c2fb57cbc..bcc8b78f72 100644 --- a/doc/concepts/morphology.rst +++ b/doc/concepts/morphology.rst @@ -602,6 +602,36 @@ because it has two children: the dendrites attached to its distal end. :width: 900 :align: center +Editing morphologies +-------------------- + +While a reified morphology cannot be edited -- it is immutable by definition -- +the segment tree can be changed. If you need to make such modifications, first +consider whethnr they should be stored in a file as this is often easier for +tracking provenance and version history. + +For the remaining cases, Arbor offers a limited suite of tools. First, most +morphology loaders have a 'raw' variant (C++) or flag (Python), that loads a +segment tree instead of a morphology. Segment trees are similarly immutable, but +by traversing the existing tree and adding/pruning subtrees into a new tree +changes are possible. From these edited trees, new morphologies can be formed. + +Two common editing operations are provided + +- ``split_at(t, i) -> (l, r)`` Split a segment tree ``t`` into two subtrees + ``l`` and ``r`` at a given segment id ``i``. + - ``r`` is the subtree of ``t`` that has the segment ``i`` at its root + - ``l`` is ``t`` with the segment ``i`` and its children removed + + The id ``i`` must be a valid id in ``t`` or ``mnpos`` in which case ``l == t`` + and ``r = {}``. +- ``join_at(t, i, o) -> j`` Given two segment trees ``t`` and ``o``, attach ``o`` to + ``t`` such that the segment in ``t`` identified by ``i`` is the parent of + ``o``. The id ``i`` must be valid in ``t`` and not ``mnpos`` (else ``t`` would + have two root segments). + +Note that ``join_at`` and ``split_at`` are inverse to each other. + .. _morph-formats: Supported file formats diff --git a/doc/concepts/probe_sample.rst b/doc/concepts/probe_sample.rst index 2dd2632556..cdd480c451 100644 --- a/doc/concepts/probe_sample.rst +++ b/doc/concepts/probe_sample.rst @@ -3,8 +3,67 @@ Cable cell probing and sampling =============================== -.. TODO:: - WIP! +Definitions +*********** + +.. glossary:: + + probe + A measurement that can be performed on a cell. Each cell kind will have its own sorts of probe. + Cable cells (:py:attr:`arbor.cable_probe`) allow the monitoring of membrane voltage, total membrane + current, mechanism state, and a number of other quantities, measured either over the whole cell, + or at specific sites (see :ref:`pycablecell-probesample`). + + vector probe + Certain probes work over a :term:`region` rather than a :term:`locset`. This means that, depending + settings such as :term:`cv policy`, data is sampled as a function of distance, yielding multiple data points. + Such probes are distinguished from regular probes as "vector probes". + + probeset + A set of probes. Probes are placed on locsets, and therefore may describe more than one probe. + + probeset address + Probesets are located at a probeset address, and the collection of probeset addresses for a given cell is + provided by the :py:class:`recipe` object. One address may correspond to more than one probe: + as an example, a request for membrane voltage on a cable cell at sites specified by a locset + expression will generate one probe for each site in that locset expression. + + See :ref:`pycablecell-probesample` for a list of objects that return a probeset address. + + probeset id + A designator for a probeset as specified by a recipe. The *probeset id* is a + :py:class:`cell_member` referring to a specific cell by gid, and the index into the list of + probeset addresses returned by the recipe for that gid. + + metadata + Each probe has associated metadata describing, for example, the location on a cell where the + measurement is being taken, or other such identifying information. Metadata for the probes + associated with a :term:`probeset id` can be retrieved from the simulation object, and is also provided + along with any recorded samples. + + sampler + sample_recorder + A sampler is something that receives :term:`probeset` data. It amounts to setting a particular probeset to a + particular measuring schedule, and then having a :term:`handle` with which to access the recorded probeset data later on. + + sample + A record of data corresponding to the value at a specific *probe* at a specific time. + + handle + A handle for reaching sampling data associated to a sampler, which is associated to a probeset. + Setting a sampler (through :py:func:`simulation.sample`) returns handles. Sampled data can be retrieved + by passing the handle associated to a sampler (associated to a probeset) to :py:func:`simulation.samples`. + + schedule + An object representing a series of monotonically increasing points in time, used for determining + sample times (see :ref:`pyrecipe`). + +Spiking +******* + +Spike detectors have a dual use: they can be used to record spike times, but are also used in propagating signals +between cells. See also :term:`spike detector` and :ref:`cablecell-threshold-detectors`. + API --- diff --git a/doc/concepts/recipe-diag-1.html b/doc/concepts/recipe-diag-1.html new file mode 100644 index 0000000000..b9d5b43a9c --- /dev/null +++ b/doc/concepts/recipe-diag-1.html @@ -0,0 +1,121 @@ +
+
Recipe +
+ +
+ +
Morphology +
Segment Tree +
Segment 0 (soma)
+
+
+
Decor +
Paintables +
hh + (all) +
+
+
Placables +
iclamp "midsoma"
+
detector_0 "midsoma"
+
+
+
Label dictionary +
midsoma + (location 0 0.5) +
+
+
+
+ +
Morphology +
Segment Tree +
Segment 0 (soma)
+
Segment 1 (dendrite)
+
Segment 2 (dendrite)
+
Segment ...
+
+
+
Decor +
Paintables +
passive + (all) +
+
+
Placables +
synapse_1 "endpoint"
+
gap_junction_1 "midsoma"
+
+
+
Label dictionary +
midsoma + (location 0 0.5) +
+
endpoint + (terminal) +
+
+
+
+ +
Morphology +
Segment Tree +
Segment 0 (soma)
+
Segment 1 (dendrite)
+
Segment 2 (dendrite)
+
Segment ...
+
+
+
Decor +
Paintables +
passive + (all) +
+
+
Placables +
gap_junction_2 "midsoma"
+
+
+
Label dictionary +
midsoma + (location 0 0.5) +
+
+
+
+
+ +
Cell 0 +
type arbor.cable_cell
+
+
Cell 1 +
type arbor.cable_cell
+
+
Cell 2 +
type arbor.cable_cell
+
+
+
+ +
Connection 1 +
from detector_0
+
to synapse_1
+
+
Gap Junction 1 +
from gap_junction_1
+
to gap_junction_2
+
+
+
+ +
Probe 1 +
gid + 2 +
+
+
+
+
+
+ An example recipe. Click "+" and "-" to (de)collapse contents. +
diff --git a/doc/concepts/recipe.rst b/doc/concepts/recipe.rst index 7498471cec..c3b98ecff4 100644 --- a/doc/concepts/recipe.rst +++ b/doc/concepts/recipe.rst @@ -14,11 +14,11 @@ building phase to provide information about individual cells in the model, such * **Gap junction connections** on each cell. * **Probes** on each cell. -Recipes are structured to provide a consistent interface for describing each cell in the -network using their global identifier (`gid`). -This allows the simulator to be able to quickly look-up properties related to the connections -going in and out of a cell (think of synapses, gap junctions, but also probes and spike inputs); -which helps make Arbor fast and easily distributable over many nodes. +An example model +---------------- + +.. raw:: html + :file: recipe-diag-1.html To better illustrate the content of a recipe, let's consider the following network of three cells: @@ -33,7 +33,7 @@ three cells: (because cable cells allow complex dynamics such as ``hh``). This is referred to as the **kind** of the cell. - ``Cell 1``: Is a soma and a single dendrite, with ``passive`` dynamics everywhere. - It has a single synapse at the end of the dendrite labeled "syanpse_1" and a gap + It has a single synapse at the end of the dendrite labeled "synapse_1" and a gap junction mechanism in the middle of the soma labeled "gap_junction_1". This is the **description** of the cell. It's also a cable cell, which is its **cell kind**. - ``Cell 2``: Is a soma and a single dendrite, with ``passive`` dynamics everywhere. @@ -44,7 +44,7 @@ The total **number of cells** in the model is 3. The **kind**, and **description is known and can be registered in the recipe. Next is the cell interaction. The model is designed such that each cell has labeled source, target and gap junction sites. -A **network connection** can be formed from ``detector_0`` to ``synpase_1``; and a +A **network connection** can be formed from ``detector_0`` to ``synapse_1``; and a **gap junction connection** between ``gap_junction_1`` and ``gap_junction_2``. If ``detector_0`` spikes, a spike should be observed on ``gap_junction_2`` after some delay. To monitor the voltage on ``gap_junction_2`` and record the spike, a **probe** can be set up @@ -59,12 +59,17 @@ Technical details of the recipe class are presented in the :ref:`Python ` APIs. Are recipes always necessary? ------------------------------- +----------------------------- + +Yes. They are a fundamental building block in Arbor simulations. Recipes are structured to provide +a consistent interface for describing each cell in the network using their global identifier (`gid`). +This allows the simulator to be able to quickly look-up properties related to the connections +going in and out of a cell (think of synapses, gap junctions, but also probes and spike inputs); +which helps make Arbor fast and easily distributable over many nodes. -Yes. However, we provide a python :class:`single_cell_model ` -that abstracts away the details of a recipe for simulations of single, stand-alone -:ref:`cable cells`, which absolves the users from having to create the -recipe themselves. This is possible because the number of cells is fixed and known, +For single, stand-alone :ref:`cable cells` simulations, the Python API provides +a :class:`single_cell_model ` that abstracts away the details of a recipe. +This is possible because the number of cells is fixed and known, and it is guaranteed that there can be no connections or gap junctions in a model of a single cell. The single cell model is able to fill out the details of the recipe under the hood, and the user need only provide the cell description, and any probes they wish diff --git a/doc/concepts/simulation.rst b/doc/concepts/simulation.rst index 2a63cc69c5..c0ab208ee1 100644 --- a/doc/concepts/simulation.rst +++ b/doc/concepts/simulation.rst @@ -9,12 +9,25 @@ group are scheduled. From recipe to simulation ------------------------- -To build a simulation the following are needed: +To build a simulation the following is needed: * A :ref:`recipe ` that describes the cells and connections in the model. -* A :ref:`domain decomposition ` that describes the distribution of the - model over the local and distributed :ref:`hardware resources `. -* An :ref:`execution context ` used to execute the simulation. +* A :ref:`domain decomposition ` that describes the distribution of + the model over the local and distributed :ref:`hardware resources + `. If not given, a default algorithm will be used which assigns + cells to groups one to one; each group is assigned to a thread from the context. +* An :ref:`execution context ` used to execute the simulation. If + not given, the default context will be used, which allocates one thread, one + process (MPI task), and no GPU. + +Configuring data extraction +--------------------------- + +Two kinds of data extraction can be set up: +1. certain state variables can be :ref:`sampled ` by attaching a + sampler to a probe. +2. spikes can be recorded by either a callback (C++) or a preset recording model + (Python), see the API docs linked below. Simulation execution and interaction ------------------------------------ diff --git a/doc/conf.py b/doc/conf.py index 0ac043e270..424686cf44 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -1,56 +1,64 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- -import sys, os -import subprocess as sp -from tempfile import TemporaryDirectory +import sys +import os # Add /scripts to path. Used for Furo theme and to generate images -this_path=os.path.split(os.path.abspath(__file__))[0] -script_path=this_path+'/scripts' +this_path = os.path.split(os.path.abspath(__file__))[0] +script_path = this_path + "/scripts" sys.path.append(script_path) -html_static_path = ['static'] +html_static_path = ["static"] +html_css_files = ["htmldiag.css"] +html_js_files = ["domarrow.js"] + def setup(app): - app.add_object_type('generic', 'gen', 'pair: %s; generic') - app.add_object_type('label', 'lab', 'pair: %s; label') + app.add_object_type("generic", "gen", "pair: %s; generic") + app.add_object_type("label", "lab", "pair: %s; label") app.add_js_file("latest-warning.js") + extensions = [ - 'sphinx.ext.autodoc', - 'sphinx.ext.todo', - 'sphinx.ext.mathjax', - 'divio_docs_theme' + "sphinx.ext.intersphinx", + "sphinx.ext.autodoc", + "sphinx.ext.todo", + "sphinx.ext.mathjax", + "divio_docs_theme", ] -source_suffix = '.rst' -master_doc = 'index' +source_suffix = ".rst" +master_doc = "index" -html_logo = 'images/arbor-lines-proto-colour.svg' -html_favicon = 'images/arbor-lines-proto-colour-notext.svg' +html_logo = "images/arbor-lines-proto-colour.svg" +html_favicon = "images/arbor-lines-proto-colour-notext.svg" -project = 'Arbor' -copyright = '2017-2021, ETHZ & FZJ' -author = 'ETHZ & FZJ' +intersphinx_mapping = { + "lfpykit": ("https://lfpykit.readthedocs.io/en/latest/", None), +} + +project = "Arbor" +copyright = "2017-2022, ETHZ & FZJ" +author = "ETHZ & FZJ" todo_include_todos = True html_theme = "divio_docs_theme" -html_theme_options = { - } +html_theme_options = {} # This style makes the source code pop out a bit more # from the background text, without being overpowering. -pygments_style = 'perldoc' +pygments_style = "perldoc" # Generate images for the documentation. print("--- generating images ---") # Output path for generated images # Dump inputs.py into tmpdir -img_path=this_path+'/gen-images' +img_path = this_path + "/gen-images" if not os.path.exists(img_path): os.mkdir(img_path) -import make_images +import make_images # noqa:E402 + make_images.generate(img_path) print("-------------------------") diff --git a/doc/contrib/coding-style.rst b/doc/contrib/coding-style.rst index 21dd9c6d20..4283138baa 100644 --- a/doc/contrib/coding-style.rst +++ b/doc/contrib/coding-style.rst @@ -3,6 +3,27 @@ Coding Guidelines ================= +Python +------ + +We follow the `black `__ +coding style. It is enforced by an automated check on each pull request. You can +run the following commands to apply it: + +.. code:: + + # Install the formatter if not present + pip install black + # Automatically apply style. If unsure what this does read on. + black --extend-exclude '/(ext|doc/scripts/.*_theme)' . scripts/build-catalogue.in + +The formatter can also be run with ``--check`` to list offending files and +``--diff`` to preview changes. Most editors can `integrate with black +`__. + +C++ +--- + The main development language of Arbor is C++. For Arbor we start with the community guidelines set out in the `C++ Core Guidelines `__. These diff --git a/doc/contrib/dependency-management.rst b/doc/contrib/dependency-management.rst new file mode 100644 index 0000000000..e36ad2e2b1 --- /dev/null +++ b/doc/contrib/dependency-management.rst @@ -0,0 +1,75 @@ +.. _contribdepverman: + +Dependency management +===================== + +Arbor relies on a (small) number of dependencies. We can distinguish three kinds of deps: + +0. Source management dependencies: Git. +1. Build dependencies. E.g. CMake, compilers like GCC or CUDA. +2. Linking dependencies. E.g. MPI, libxml2. +3. Source dependencies. These are present as `git submodules `_ or as copy in ``ext/``. Their use is optional: users who need integration with their package manager (e.g. apt, spack, yum) can link to those versions instead. + +Note that the actual dependencies of your build configuration may vary. + +In addition, ``spack/package.py`` contains a copy of the Spack package definition `upstream `_. Here instructions for both in-repo and configure-time dependencies are defined. + +This document contains rules for when and how to update dependencies, and what to be mindful of when you do. + +List of dependencies +-------------------- + +A full list of dependencies is maintained at ``doc/dependencies.csv``: + +.. csv-table:: List of configure time dependencies + :file: ../dependencies.csv + :widths: 10, 20, 10, 70, 1 + :header-rows: 1 + +.. note:: + + CMake can generate an overview of the dependency tree. Run the following in the build dir: + + .. code-block:: bash + + cmake --graphviz=graphviz/arbor-dep-graph.dot . && dot graphviz/arbor-dep-graph.dot -T png -o graphviz/arbor-dep-graph.png + + This plot can be tweaked with the ``CMakeGraphVizOptions.cmake`` file in the root of the project, which currently excludes tests, the ``lmorpho`` morphology generator and all C++ examples. + +User platforms +-------------- + +Although Arbor should in principle run everywhere modern compilers are found, a couple of user platforms +are essential. These environments must be able to build Arbor without issue, if not we consider this a bug. +Also, build instructions for each of them must be given in the documentation. + +* Ubuntu LTS-latest +* Ubuntu LTS-latest-1 +* MacOS-latest +* MacOS-latest-1 +* Cray programming environment on Piz Daint +* Programming environment on Juwels Booster (**todo** CI at JSC) +* Github Action venvs, see `list `_. +* Manylinux containers. For compatibility of manylinux tags, see `here `_. + +Dependency update rules +----------------------- + +#. ``doc/dependencies.csv``, git submodules and ``spack/package.py`` shall be in sync. +#. Dependencies shall be set to a (commit hash corresponding to a) specific version tag. (All current dependencies use semver.) +#. The version shall be compatible with the user platforms (see above). +#. The version shall be compatible with the requirements in ``doc/dependencies.csv``. +#. The version shall be the lowest possible. More recent versions of submodules are automatically tested through ``.github/workflows/check-submodules.yml``, to catch merge problems early. +#. Moreover, dependencies shall not be updated past the most recent version of the dependency in Spack. + + * This prevents Spack builds from pulling in ``master``, when a more recent version than available is required. `See here `_. + * This is a manual check, e.g. for pybind: `see pybind package.py `_ +#. Actually updating shall remain a manual process. Update may require nontrivial updates to Arbor, and updates to Spack upstream (e.g. make PR for pybind update). +#. A dependency update shall have a separate PR, and such a PR updates a single dependency at a time, unless the dependency update requires other dependencies to be updated. +#. This PR requires review by at least two reviewers. + + * There appears to be no way to enforce that, unless we enforce it for all PRs. + * Optionally we could have a PR template auto-assigning to some or all of us, which means we'll at least be notified. +#. We will try to keep compatible to a wide range in dependency versions. + + * This includes making other components in `ext` git submodules, such that updates are more easily tracked. diff --git a/doc/contrib/index.rst b/doc/contrib/index.rst index 72c1aca3ae..fc995c347a 100644 --- a/doc/contrib/index.rst +++ b/doc/contrib/index.rst @@ -13,7 +13,7 @@ on something. Types of contributions ---------------------- -There are many ways to contribute: writing tutorials or blog posts, +There are many ways to contribute: sharing models, writing tutorials or blog posts, improving the documentation, helping other users, submitting bug reports and feature requests or writing code which can be incorporated into Arbor itself. @@ -61,12 +61,12 @@ share your Arbor simulations or publications! Filing an issue ~~~~~~~~~~~~~~~ -If you have found a bug or problem in Arbor, or want to request a -feature, you can use our `issue -tracker `__. If you issue is -not yet filed in the issue tracker, please do so and describe the -problem, bug or feature as best you can. You can add supporting data, -code or documents to help make your point. +If you have found a bug or problem in Arbor, or want to request a feature, you +can use our `issue tracker `__. If +you issue is not yet filed in the issue tracker, please do so and describe the +problem, bug or feature as best you can. You can add supporting data, code or +documents to help make your point. For bugs in particular, stacktraces (either +from inside a debugger or by enabling ``ARB_BACKTRACE``) are extremely useful. .. _contribindex-solveissue: @@ -115,6 +115,10 @@ See :ref:`contribpr`. Other contributions ------------------- +We try to collect models scientists have built in our `contributor space `_. +In addition to the tutorials, browsing these models should give you a good idea of what's possible with Arbor +and find get in contact with other Arbor users. + We're always happy to hear about Arbor being used! Have you used Arbor to create a model? Have you used Arbor in a publication? Do you have a workflow or tool that involves Arbor? Get in touch and we'd be very happy to showcase your work through our channels. diff --git a/doc/contrib/pr.rst b/doc/contrib/pr.rst index c22c59cddb..a47539ecb7 100644 --- a/doc/contrib/pr.rst +++ b/doc/contrib/pr.rst @@ -129,6 +129,17 @@ Each pull request is reviewed according to these guidelines: summary as commit message. - Consider using Gitpod to review larger PRs, see under checks on the Github PR page. +.. _contribpr-lint: + +Pull requests will also be subject to a series of automated checks + +- Python formatting will be checked using the `black `__ formatter +- Python files will be checked for common errors and code smells using `flake8 `__ +- C++ code will be run against a suite of sanitizers under the `clang `__ umbrella. The following checks are enabled + - `undefined behavior `__: under/overflow, null-deref, ... + - `threads `__: data races and other threading related issues + - `memory `__: illegal accesses, use-after-free, double free, ... + .. _contribpr-merge: Merging a PR diff --git a/doc/contrib/release.rst b/doc/contrib/release.rst index 37a4adf813..fec49ee60d 100644 --- a/doc/contrib/release.rst +++ b/doc/contrib/release.rst @@ -11,13 +11,18 @@ Release cycle * Update/trim next-release column in Kanban * Prepare agenda, include possible additions not covered by Kanban/Issues * Add milestone tags (nextver, nextver+1, etc.) + * Add highlighted new features to RELEASE_NOTES.md 3. ``T-8`` weeks: ``Release Manager`` dev meet (external/public) * Use Kanban as starter * Move issues around based on input * Add milestone tags, for this release or future releases -4. ``T±0``: ``Release Manager`` release! -5. ``T+1`` weeks: ``Scrum Master`` retrospective + * Update highlighted new features to RELEASE_NOTES.md +4. ``T-1``: ``all`` reserve week for wrapping up PRs and review. +5. ``T±0``: ``Release Manager`` release! + + * Have a look at Python release schedule, and time Arbor release optimally with new Python minor version. It is nice to generate wheels for the new minor as soon as minor is released. +6. ``T+1`` weeks: ``Scrum Master`` retrospective * set date for next release @@ -33,106 +38,119 @@ Pre-release Update tags/versions and test ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -0. Check README.md, ATTRIBUTIONS.md, CONTRIBUTING.md. -1. Create new temp-branch ending in ``-rc``. E.g. ``v0.6-rc`` -2. Bump the ``VERSION`` file: - https://github.com/arbor-sim/arbor/blob/master/VERSION - Don't append ``-rc`` here, but if you do, remove it before releasing. -3. Run all tests. - - ``ciwheel.yml`` triggers when you push a branch called ``v*rc``, ON YOUR OWN REPO (so check ``github.com/$yourname/arbor/actions``). Make sure the tests pass. - - This should catch many problems. For a manual check: +#. Check if some files are up to date + + - README.md, ATTRIBUTIONS.md, CONTRIBUTING.md, RELEASE_NOTES.md - Verify MANIFEST.in (required for PyPI sdist) - - Check Python/pip/PyPi metadata and scripts, e.g. ``setup.py`` - Double check that all examples/tutorials/etc are covered by CI + - Check Python/pip/PyPi metadata and scripts, e.g. ``setup.py``, ``pyproject.toml`` + +#. Create new temp-branch ending in ``-rc``. E.g. ``v0.6-rc`` +#. Bump the ``VERSION`` file: + + - See also :ref:`dev-version` + - Append ``-rc``. (Make sure there's no ``-dev``) -Test the RC -~~~~~~~~~~~ +#. Run all tests. + + - ``ciwheel.yml`` triggers when you push a branch called ``ciwheel``, and on new Git tags. Since we've not tagged the release yet, run ``git push origin HEAD:ciwheel``. Make sure the tests pass. + + - ``ciwheel.yml`` pushes automatically to `Test.PyPI.org `_. This only passes if ran as branch of the main ``arbor-sim`` repo (as that's where the PyPI secret lives). On your own repo, the upload will fail (the rest should pass). If you want to test uploading, then force push to the _upstream_ ``ciwheel`` branch, e.g. ``git push upstream HEAD:ciwheel --force``. + + - If you want to test the PyPI submission (consider asking other OS-users): -4. Collect artifact from the above GA run. - In case you want to manually want to trigger ``ciwheel.yml`` GA, overwrite the ``ciwheel`` branch with the commit of your choosing and force push to Github. -5. ``twine upload -r testpypi dist/*`` -6. Ask users to test the above, e.g.: + .. code-block:: bash -.. code-block:: bash + python -m venv env && source env/bin/activate + pip install numpy + pip install -i https://test.pypi.org/simple/ arbor #should select the latest build, but doublecheck + python -c 'import arbor; print(arbor.__config__)' - python -m venv env && source env/bin/activate - pip install numpy - pip install -i https://test.pypi.org/simple/ arbor==0.6-rc - python -c 'import arbor; print(arbor.__config__)' + - Use build flags to test the source package: :ref:`in_python_adv` Release ------- -0. Make sure ``ciwheel.yml`` passes tests, produced working wheels, and nobody reported problems testing the RC. - Make sure ``VERSION`` does not end with ``-rc`` or ``-dev`` - -1. Create tarball with - ``scripts/create_tarball ~/loc/of/arbor tagname outputfile`` +#. Make sure no errors were encountered in the pre-release phase, working wheels were produced, and were installable from `Test.PyPI.org `_ and that no problems were reported. + +#. Change ``VERSION``. Make sure does not end with ``-rc`` or ``-dev``. - - eg ``scripts/create_tarball /full/path/to/arbor v0.5.1 ~/arbor-v0.5.1-full.tar.gz`` +#. Update ``scripts/check-all-tags.sh`` to check the current tag. -2. Tag and release: https://github.com/arbor-sim/arbor/releases +#. Tag - - on cmdline: git tag -a TAGNAME - - git push upstream TAGNAME - - Go to `GH tags`_ and click “…” and “Create release” - - Go through merged PRs to come up with a changelog - Or categorize/edit Github's autogenerated release notes. - - add tarball to release, created in previous step. + - commit and open a PR for the above changes. + - on cmdline: ``git tag -a TAGNAME`` + - ``git push upstream TAGNAME`` -3. [`AUTOMATED`_] push to git@gitlab.ebrains.eu:arbor-sim/arbor.git +#. Upload to pypi & verify -4. Download output of wheel action associated to this release commit and extract (verify the wheels and - source targz is in /dist) + .. code-block:: bash - - Of course, the above action must have passed the tests successfully. + twine upload -r arborpypi dist/* -5. Upload to TEST pypi & verify + python -m venv env && source env/bin/activate + pip install arbor + python -c 'import arbor; print(arbor.__config__)' -.. code-block:: bash +#. Create tarball with + ``scripts/create_tarball ~/loc/of/arbor tagname outputfile`` - twine upload -r arborpypi dist/* - python -m venv env && source env/bin/activate - pip install numpy - pip install -i https://test.pypi.org/simple/ arbor==0.6 - python -c 'import arbor; print(arbor.__config__)' + - eg ``scripts/create_tarball /full/path/to/arbor v0.5.1 ~/arbor-v0.5.1-full.tar.gz`` + +#. Download output of wheel action associated to this release commit and extract (verify the wheels and + source targz is in /dist) -6. Upload to pypi & verify + - Of course, the above action must have passed the tests successfully. + +#. Update ``spack/package.py``. The checksum of the targz is the sha256sum. -.. code-block:: bash +#. Start a new release on Zenodo, this allocated a DOI, but you don't have to finish it right away. Add new Zenodo badge/link to docs/README. - twine upload -r arborpypi dist/* +#. Create Github Release: https://github.com/arbor-sim/arbor/releases - python -m venv env && source env/bin/activate - pip install arbor - python -c 'import arbor; print(arbor.__config__)' + - Go to `GH tags`_ and click “…” and “Create release” + - Categorize/edit Github's autogenerated release notes (alternatively go through merged PRs to come up with a changelog). + - add tarball to release, created in previous step. + +#. Update Zenodo with authors and changelog created in previous step and submit. -7. Update spack package +Post Release +------------ - - first, update ``spack/package.py``. The checksum of the targz is the sha256sum. - - Then, use the file to `make PR here `_ +#. Make a new PR setting ``VERSION`` to the next with a trailing ``-dev``. E.g. if you just release ``3.14``, change ``VERSION`` to ``3.15-dev`` + + - Include changes such as to ``spack/package.py``, ``CITATIONS``, ``doc/index.rst`` in postrel PR. Copy Zenodo BibTex export to ``CITATIONS``. -8. In the same PR with the update to `spack/package.py`, bump `VERSION` file. +#. Update spack package / Ebrains Lab / Opensourcebrain - - e.g. to 0.6.1-dev + - Spack upstream: `PR here `_ + - Ebrains Lab: `MR here `_ + - OSB: update `dockerfile `_ if needed. -Post Release ------------- + - Make sure that `Notebooks `_ work on the version that their image is built with. -1. Announce on our website -2. Add release for citation on Zenodo, add new ID to docs -3. Add tagged version of docs on ReadTheDocs (should happen automatically) -4. HBP internal admin +#. Announce on our website +#. Announce on HBP newsletter newsletter@humanbrainproject.eu, HBP Twitter/socials evan.hancock@ebrains.eu +#. [AUTOMATED] Add tagged version of docs on ReadTheDocs +#. HBP internal admin - - [Plus](https://plus.humanbrainproject.eu/components/2691/) - - [TC Wiki](https://wiki.ebrains.eu/bin/view/Collabs/technical-coordination/EBRAINS%20components/Arbor/) - - [KG](https://kg.ebrains.eu/search/instances/Software/80d205a9-ffb9-4afe-90b8-2f12819950ec) - [Update howto](https://github.com/bweyers/HBPVisCatalogue/wiki/How-to-start-software-meta-data-curation%3F#update-curated-software). - - Supported file formats (ie [ContentTypes](https://humanbrainproject.github.io/openMINDS/v3/core/v4/data/contentType.html)), [details](https://github.com/HumanBrainProject/openMINDS_core/tree/v3/instances/data/contentTypes) - - Send an update to the folk in charge of HBP Twitter if we want to shout about it + - Plus: https://plus.humanbrainproject.eu/components/2691/ + - TC Wiki: https://wiki.ebrains.eu/bin/view/Collabs/technical-coordination/EBRAINS%20components/Arbor/ + - KG: https://search.kg.ebrains.eu/instances/5cf4e24b-b0eb-4d05-96e5-a7751134a061 + + - Update howto: https://github.com/bweyers/HBPVisCatalogue/wiki/How-to-start-software-meta-data-curation%3F#update-curated-software + - Previous update as template: https://github.com/bweyers/HBPVisCatalogue/issues/480 + - Supported file formats + + - ContentTypes: https://humanbrainproject.github.io/openMINDS/v3/core/v4/data/contentType.html + - details: https://github.com/HumanBrainProject/openMINDS_core/tree/v3/instances/data/contentTypes + + - Send an update to the folk in charge of HBP Twitter if we want to shout about it -5. FZJ admin +#. FZJ admin - - https://juser.fz-juelich.de/submit + - https://juser.fz-juelich.de/submit .. _GH tags: https://github.com/arbor-sim/arbor/tags .. _AUTOMATED: https://github.com/arbor-sim/arbor/blob/master/.github/workflows/ebrains.yml diff --git a/doc/contrib/test.rst b/doc/contrib/test.rst index 0af2c4854a..f04eb6bc18 100644 --- a/doc/contrib/test.rst +++ b/doc/contrib/test.rst @@ -7,6 +7,82 @@ C++ tests are located in ``/tests`` and Python (binding) tests in ``/python/test``. See the documentation on :ref:`building ` for the C++ tests and ``/python/test/readme.md`` for the latter. +What to test? +------------- + +Adding a feature should be accompanied by tests to ensure its functionality is +sound. That means +1. identify the core ideas of your feature +2. find the functions/classes that encapsulate these ideas +3. for each add a test case that covers it + +The core motivation is to capture the essence of your feature and to protect it +against accidental change. This is what enables us to freely add optimisations, +and perform refactoring. + +Example +^^^^^^^ + +This example might touch parts of Arbor that you are unfamiliar with. Don't +Panic! The details are less important than the general approach to adding tests. +Imagine adding a new feature that is intended to improve performance during the +communication step. Spikes should be transferred pre-sorted to avoid locally +sorting them after the exchange. Also assume, just for the sake of this example, +that you decided to add your own radix sort algorithm, since you expect it to be +faster for this particular usecase. + +Thus, the tests added should be +1. sorting algorithm + + - the application of `sort` sorts the given array. This seems trivial, but is + really the core of what you are doing! + - corner cases like: empty array, all elements equal, ... are treated greacefully + - if the sort is intended to be stable, check that equal elements do not switch order +2. local sorting + + - spikes are -- after sorting -- ordered by their source id and in case of ties by time + - corner cases: NaN, negative numbers, ... +3. global sorting + + - after MPI exchange, each sub-array is still sorted + - by the guarantees of ``MPI_Allgather``, the global array is sorted + +Note that we added tests that are only applicable when eg MPI is enabled. Our test +runners probe the different combinations automatically, see below. + +Next, we would ask you to prove that this change does as promised, ie it +improves performance. When adding a new user-facing feature, also consider +adding an example showing off your cool new addition to Arbor. + +Regression tests +^^^^^^^^^^^^^^^^ + +However, it's impossible to foresee every dark corner of your code. Inevitably, +bugs will occur. When fixing a bug, please add a test case that covers this +particular sequence of events to catch this bug in the future (imagine someone +inadvertently removing your fix). + +C++ tests +--------- + +We are using the GTest library for writing tests. Each group of tests should be +contained in a ``.cpp`` file in ``test/unit`` (do not forget to add it to the +``CMakeLists.txt``!). To get access to the library and a battery of helpers +include ``common.hpp``. Test cases are defined vi the ``TEST`` macro which takes +two arguments ``group`` and ``case``. Inside cases macros like ``ASSERT_TRUE`` +can be used. Another helpful feature is that the test executable accepts +arguments on the commandline. Of these we would like to point out + +- ``--gtest_catch_exceptions`` allows for disabling exception catching by the + framework. Handy when running the tests in a debugger. +- ``--gtest_throw_on_failure`` turns missed assert into exceptions, likewise + useful in a debugger +- ``--gtest_filter`` to filter the tests to run. Can cut down the runtrip time + when working on a specific feature. + +For more information on GTest refer to the `documentation +`_` and our existing tests. + Python tests ------------ @@ -21,3 +97,14 @@ mechanism. For tests to be discovered they must meet the following criteria: * The test functions inside the cases must begin with ``test_``. To run the tests locally use `python -m unittest` from the `python` directory. + +Feature dependent tests +----------------------- + +Certain tests need to be guarded by feature flags, notably ``ARB_MPI_ENABLED`` +and ``ARB_GPU_ENABLED``. Another important (**especially** when dealing with +mechanisms, modcc, and the ABI) but less obvious feature is SIMD. The +combinations arising from the cartesian product of OS=Linux|MacOS x SIMD=ON|OFF +x MPI=ON|OFF is tested automatically on GitHub CI. As no instances with GPUs are +provided, GPU features are tested via CSCS' GitLab. Such a run is initiated by +commenting ``bors try`` in the PR discussion. diff --git a/doc/cpp/cable_cell.rst b/doc/cpp/cable_cell.rst index ea800af335..b44e36dccb 100644 --- a/doc/cpp/cable_cell.rst +++ b/doc/cpp/cable_cell.rst @@ -214,9 +214,9 @@ Global properties by default, this is set to point to `global_default_catalogue()`, the catalogue that contains all mechanisms bundled with arbor. - .. cpp:member:: double membrane_voltage_limit_mv + .. cpp:member:: optional membrane_voltage_limit_mv - if non-zero, check to see if the membrane voltage ever exceeds this value + if set, check to see if the membrane voltage ever exceeds this value in magnitude during the course of a simulation. if so, throw an exception and abort the simulation. diff --git a/doc/cpp/cell.rst b/doc/cpp/cell.rst index 56e34c7c4b..6a8450e2e3 100644 --- a/doc/cpp/cell.rst +++ b/doc/cpp/cell.rst @@ -54,6 +54,10 @@ cells and members of cell-local collections. Iterate over the items of the group in a round-robin fashion. + .. cpp:enumerator:: round_robin_halt + + Halts at the current item of the group until the round_robin policy is called (again). + .. cpp:enumerator:: assert_univalent Assert that ony one item is available in the group. Throws an exception if the assertion diff --git a/doc/cpp/hardware.rst b/doc/cpp/hardware.rst index 1389039b27..d2e810b3ec 100644 --- a/doc/cpp/hardware.rst +++ b/doc/cpp/hardware.rst @@ -1,7 +1,7 @@ .. _cpphardware: -Hardware management -=================== +Hardware context +================ Arbor provides two library APIs for working with hardware resources: diff --git a/doc/cpp/index.rst b/doc/cpp/index.rst index f4f437ec01..bd97b673ee 100644 --- a/doc/cpp/index.rst +++ b/doc/cpp/index.rst @@ -23,4 +23,3 @@ A :cpp:type:`arb::recipe` describes a model, and a :cpp:type:`arb::simulation` i simulation profiler cable_cell - version diff --git a/doc/cpp/morphology.rst b/doc/cpp/morphology.rst index f2ea79e560..9a21ea2481 100644 --- a/doc/cpp/morphology.rst +++ b/doc/cpp/morphology.rst @@ -4,25 +4,102 @@ Cable cell morphology ===================== Cell morphologies are required to describe a :ref:`cppcablecell`. -Morphologies can be constructed directly, or read from a number of +Morphologies can be constructed from :cpp:type:`segment_trees`, or read from a number of file formats; see :ref:`cppcablecell-morphology-construction` for details. -Morphology API --------------- +Segment tree +------------ -.. todo:: +A ``segment_tree` is -- as the name implies -- a set of segments arranged in a +tree structure, ie each segment has exactly one parent and no child is the +parent of any of its ancestors. The tree starts at a *root* segment which has no +parent. Each segment comprises two points in 3d space together with the radii at +these points. The segment's endpoints are called proximal (at the parent's +distal end) and distal (farther from the root). - Describe morphology methods. +Segment trees are used to form morphologies which ignore the 3d information +encoded in the segments and just utilise the radii, length, and tree-structure. +Branches in the tree occur where a segment has more than one child. The tree is +constructed by *appending* segments to the tree. Segments are numbered starting +at ``0`` in the order that they are added, with the first segment getting id +``0``, the second segment id ``1``, and so forth. A segment can not be added +before its parent, hence the first segment is always at the root. In this +manner, a segment tree is always guaranteed to be in a correct state, with +consistent parent-child indexing, and with ``n`` segments numbered from ``0`` to +``n-1``. The first parent must be :data:`mnpos`, indicating 'no parent'. -.. _cppcablecell-morphology-construction: -Constructing cell morphologies ------------------------------- +.. cpp:class:: segment_tree + + + .. cpp:function:: segment_tree() + + Construct an empty segment tree. + + .. cpp:function:: msize_t append(msize_t parent, const mpoint& prox, const mpoint& dist, int tag) + + Append a segment to the tree. Returns the new parent's id. + + .. cpp:function:: msize_t append(msize_t parent, const mpoint& dist, int tag) + + Append a segment to the tree whose proximal end has the location and + radius of the distal end of the parent segment. Returns the new + parent's id. + + This version of append can't be used for a segment at the root of the + tree, that is, when ``parent`` is :data:`mnpos`, in which case both + proximal and distal ends of the segment must be specified. + + .. cpp:function:: bool empty() + + If the tree is empty (i.e. whether it has size 0) + + .. cpp:function:: msize_t size() + + The number of segments. + + .. cpp:function:: std::vector parents() + + A list of parent indices of the segments. + + .. cpp:function:: std::vector segments() + + A list of the segments. + +.. cpp:function:: std::pair split_at(const segment_tree& t, msize_t id) + + Split a segment_tree into a pair of subtrees at the given id, + such that one tree is the subtree rooted at id and the other is the + original tree without said subtree. + +.. cpp:function:: segment_tree join_at(const segment_tree& t, msize_t id, const segment_tree& o) + + Join two subtrees at a given id, such that said id becomes the parent + of the inserted sub-tree. + +.. cpp:function:: bool equivalent(const segment_tree& l, const segment_tree& r) + + Two trees are equivalent if + 1. the root segments' ``prox`` and ``dist`` points and their ``tags`` are identical. + 2. recursively: all sub-trees starting at the current segment are pairwise equivalent. + + Note that under 1 we do not consider the ``id`` field. + +.. cpp:function:: segment_tree apply(const segment_tree& t, const isometry& i) + + Apply an :cpp:type:`isometry` to the segment tree, returns the transformed tree as a copy. + Isometries are rotations around an arbritary axis and/or translations; they can + be instantiated using ``isometry::translate`` and ``isometry::rotate`` and combined + using the ``*`` operator. + +Morphology API +-------------- .. todo:: - Description of segment trees. + Describe morphology methods. +.. _cppcablecell-morphology-construction: The stitch-builder interface ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ diff --git a/doc/cpp/probe_sample.rst b/doc/cpp/probe_sample.rst index 76e16bfac2..cb7b08cfbb 100644 --- a/doc/cpp/probe_sample.rst +++ b/doc/cpp/probe_sample.rst @@ -8,11 +8,10 @@ Cable cell probing and sampling Cable cell probes ----------------- -Various properties of a a cable cell can be sampled via one of the cable cell -specific probe address described below. They fall into two classes: scalar +Various properties of a cable cell can be sampled. They fall into two classes: scalar probes are associated with a single real value, such as a membrane voltage or mechanism state value at a particular location; vector probes return -multiple values corresponding to a quantity sampled over a whole cell. +multiple values corresponding to a quantity sampled at a set of points on the cell. The sample data associated with a cable cell probe will either be a ``double`` for scalar probes, or a ``cable_sample_range`` describing a half-open range @@ -56,7 +55,7 @@ Mechanism state queries however will throw a ``cable_cell_error`` exception at simulation initialization if the requested state variable does not exist on the mechanism. -Cable cell probe addresses that are described by a ``locset`` may generate more +Cable cell probeset addresses that are described by a ``locset`` may generate more than one concrete probe: there will be one per location in the locset that is satisfiable. Sampler callback functions can distinguish between different probes with the same address and id by examining their index and/or @@ -277,7 +276,7 @@ If the mechanism is not defined at a particular site, that site is ignored. * Sample value: ``double``. State variable value. -* Metadata: ``mlocation``. Location as given in the probe address. +* Metadata: ``mlocation``. Location as given in the probeset address. .. code:: @@ -387,16 +386,17 @@ as a way of passing additional metadata about a probe to any sampler that polls it, with a view to samplers that handle multiple probes, possibly with different value types. -Probe addresses are decoupled from the cell descriptions themselves — +Probeset addresses are decoupled from the cell descriptions themselves — this allows a recipe implementation to construct probes independently of the cells themselves. It is the responsibility of a cell group implementation -to parse the probe address objects wrapped in the ``any address`` field. +to parse the probeset address objects wrapped in the ``any address`` field, +thus the order of probes returned is important. The _k_th element of the vector returned by ``get_probes(gid)`` is identified with a probe-id: ``cell_member_type{gid, k}``. -One probe address may describe more than one concrete probe, depending -upon the interpretation of the probe address by the cell group. In this +One probeset address may describe more than one concrete probe, depending +upon the interpretation of the probeset address by the cell group. In this instance, each of the concrete probes will be associated with the same probe-id. Samplers can distinguish between different probes with the same id by their probe index (see below). @@ -413,9 +413,9 @@ will be passed to a sampler function or function object: .. code-block:: cpp struct probe_metadata { - cell_member_type id; // probe id + cell_member_type id; // probeset id probe_tag tag; // probe tag associated with id - unsigned index; // index of probe source within those supplied by probe id + unsigned index; // index of probe source within those supplied by probeset id util::any_ptr meta; // probe-specific metadata }; @@ -425,7 +425,7 @@ will be passed to a sampler function or function object: where the parameters are respectively the probe metadata, the number of samples, and finally a pointer to the sequence of sample records. -The ``probe_id``, identifies the probe by its probe-id (see above). +The ``probeset_id``, identifies the probe by its probe-id (see above). The ``probe_tag`` in the metadata is the key given in the ``probe_info`` returned by the recipe. @@ -433,8 +433,8 @@ returned by the recipe. The ``index`` identifies which of the possibly multiple probes associated with the probe-id is the source of the samples. -The ``any_ptr`` value iin the metadata points to const probe-specific metadata; -the type of the metadata will depend upon the probe address specified in the +The ``any_ptr`` value in the metadata points to const probe-specific metadata; +the type of the metadata will depend upon the probeset address specified in the ``probe_info`` provided by the recipe. One ``sample_record`` struct contains one sample of the probe data at a @@ -452,12 +452,12 @@ given simulation time point: The ``data`` field points to the sample data, wrapped in ``any_ptr`` for type-checked access. The exact representation will depend on the nature of the object that is being probed, but it should depend only on the cell type and -probe address. +probeset address. The data pointed to by ``data``, and the sample records themselves, are only guaranteed to be valid for the duration of the call to the sampler function. A simple sampler implementation for ``double`` data, assuming -one probe per probe id, might be as follows: +one probe per probeset id, might be as follows: .. container:: example-code @@ -499,7 +499,7 @@ Polling rates, policies and sampler functions are set through the using cell_member_predicate = std::function; sampler_association_handle simulation::add_sampler( - cell_member_predicate probe_ids, + cell_member_predicate probeset_ids, schedule sched, sampler_function fn, sampling_policy policy = sampling_policy::lax); @@ -511,7 +511,7 @@ Polling rates, policies and sampler functions are set through the Multiple samplers can then be associated with the same probe locations. The handle returned is only used for managing the lifetime of the association. The ``cell_member_predicate`` parameter defines the -set of probe ids in terms of a membership test. +set of probeset ids in terms of a membership test. Two helper functions are provided for making ``cell_member_predicate`` objects: @@ -519,10 +519,10 @@ Two helper functions are provided for making ``cell_member_predicate`` objects: .. code-block:: cpp - // Match all probe ids. + // Match all probeset ids. cell_member_predicate all_probes = [](cell_member_type pid) { return true; }; - // Match just one probe id. + // Match just one probeset id. cell_member_predicate one_probe(cell_member_type pid) { return [pid](cell_member_type x) { return pid==x; }; } @@ -538,21 +538,21 @@ implemented in the future, but cell groups are in general not required to support any policy other than ``lax``. The simulation object will pass on the sampler setting request to the cell -group that owns the given probe id. The ``cell_group`` interface will be +group that owns the given probeset id. The ``cell_group`` interface will be correspondingly extended: .. container:: api-code .. code-block:: cpp - void cell_group::add_sampler(sampler_association_handle h, cell_member_predicate probe_ids, sample_schedule sched, sampler_function fn, sampling_policy policy); + void cell_group::add_sampler(sampler_association_handle h, cell_member_predicate probeset_ids, sample_schedule sched, sampler_function fn, sampling_policy policy); void cell_group::remove_sampler(sampler_association_handle); void cell_group::remove_all_samplers(); Cell groups will invoke the corresponding sampler function directly, and -may aggregate multiple samples with the same probe id in one call to the +may aggregate multiple samples with the same probeset id in one call to the sampler. Calls to the sampler are synchronous, in the sense that processing of the cell group state does not proceed while the sampler function is being executed, but the times of the samples given to the diff --git a/doc/cpp/simulation.rst b/doc/cpp/simulation.rst index 929ed27689..9332e20056 100644 --- a/doc/cpp/simulation.rst +++ b/doc/cpp/simulation.rst @@ -105,7 +105,7 @@ Class documentation **I/O:** .. cpp:function:: sampler_association_handle add_sampler(\ - cell_member_predicate probe_ids,\ + cell_member_predicate probeset_ids,\ schedule sched,\ sampler_function f,\ sampling_policy policy = sampling_policy::lax) diff --git a/doc/dependencies.csv b/doc/dependencies.csv new file mode 100644 index 0000000000..d325bd6e73 --- /dev/null +++ b/doc/dependencies.csv @@ -0,0 +1,30 @@ +Build option/target,Tool name,Minimum version,Notes,Update criteria +--,CMake,3.18,,"* Is available as a module on HPC systems +* When arbitrary changes in more recently released versions make supported" +--,C++ compiler,,C++17 support. See below, +--,GCC,8.4.0,"Use of ``std::fs`` is prohibited, despite being included in major compilers with C++17, on account of MacOS 10.14 not having the required syscall. We might lift this.","* it is supported by the minimum version of CUDA. +* it is available either by default or can be installed using standard package manager on the supported Linux versions." +--,Clang,8.0,Needs GCC 8 or later for standard library., +--,Apple Clang,9,Apple LLVM version 9.0.0 (clang-900.0.39.2), +ARB_GPU,Hip Clang,ROCm 3.9,HIP support is currently experimental., +ARB_GPU,CUDA,10.0,,"* It is available on all of the target HPC systems (Piz Daint, Juwels Booster)" +ARB_WITH_NEUROML,libxml2,,, +ARB_WITH_MPI,MPI,,Many MPI implementations are supported., +"ARB_WITH_MPI, ARB_WITH_PYTHON ",mpi4py,3.1.0,Minimum version depends on compatiblity with your Python and MPI versions. 3.1.0 is the first release to support Python > 3.8., +html, .. literalinclude:: ../requirements.txt,,See ``doc/requirements.txt``, +unit,googletest,,source copy ``test/gtest.*``, +bench,Google-benchmark,,submodule ``ext/google-benchmark``, +--,json,,source copy ``ext/json``, +--,random123,,source copy ``ext/random123``, +--,fmt,,submodule ``ext/fmt``, +--,tinyopt,,source copy ``ext/tinyopt``, +ARB_WITH_PYTHON,pybind11,,submodule ``ext/pybind11``, +ARB_WITH_PYTHON,Python,3.7,Python compatiblity is the range between the latest officially released point version and the minimum here specified.,"* it is not more advanced than the version specified by NEP 29. +* it is available as a cray-python version on Piz Daint +* it is available on labs.ebrains.eu + + * ``python3`` = Python 3.8.10 +* Our (eventual) tutorial Jupyter Notebook env + + * Google Colab has Python 3.7 +* it is available in the supported Linuxen" diff --git a/doc/dev/arbor-dep-graph.png b/doc/dev/arbor-dep-graph.png new file mode 100644 index 0000000000000000000000000000000000000000..f6f4a9a06a9928fa4609006a09c7558472cf1cba GIT binary patch literal 264432 zcmaHT2|U(Y*Y@2k5|R{=Xhe#T$WTZn%9MFdWfqwgkvZg)p->^=&X9zRnUy9)q#_jw znIc4d*GA8C&UwD?^PXStdFpiE|Nq`=uXSD5y4DUnuB<>$%SKC~Q0NaIl2fHnXtgPn zg)THp@jHFbSi|xEmYOIk$Wdm<|J^Q5zDl8RQ4Y)PS9gi+`{1mu{`HsWM|Q?aT9aUo z{cb8g)oVm}odUNWyzj@%?8tariv9M%b^K?KTQSkxKFHIx$vg1om9;D;A;o+F>SeT| zK|ws$o}OQ7)}N)_v|qHd(#9=g)q)Q{ZO4-9>dGur0e=e?$8a=r=9&qmAKOH<$-_u zmK0@0C8eqWCZ53o&lz@}gO^LMZav0Db0EikYU;-;F{i$@&tJUAGJn10+O=x|=X>V< zriJ7`UqK~KT}vy#%Zt*|+RD9qH!~i)@@1Ta@yU~$oXmOm?%lg_EIVt429$;pbEnq^;K-BP$Eb-q&Io*q5B=%u4u zDtzf!j~_qo)&HTeqPdyXK3}h|Vg9i;|NF7RuU=iWbLY+#>%|!3#2w2+*!OTn9End( z-s)uTc{tDJgWazY^TkV+Y}~YIac*v|*tza2EoO5&(7Z;b0b@8&%;*Pwc zRxMs#FJkyQ``_pLyv;uS`Rgsu>c&*HjxS#}9muH_+Pyo=q>8rjo+bnP9-B+S!NIk9 z=gtZ5law6ld%JslV#4@m-`l!3UC&wOzSGl)?_Vo^f|s9P?$9BcNPg{w%*@P}e0}4O z-I6+z|JPrutUeU5(5>N@xpyL+an&ks;|jmP<5_Ol(7_)+WRD+bJa~ES#g8A2BGkkT zi(D?U@SWh=wTtomegq7Q}6H3{;;_l?RH z>OHdCZ|2h(!KYc5d~Ab@n_KyZ4;*LDo^8q~TSZwxPfucSy@b<>b?esM&&~By=at{T zfB$v8#DgJRSD)HVPq{wnv_IGThQ6evR!LD=zJEn@#@ptnVCCPJ6V2APY!$@?tDhx zTSkWB_OmbWb@DO3&I0FwP_<-bDW^U=b^QH|s`JUo z%a^@=&5U5t%05M}r?0Qkm5`X&@$Fk+QPI9bNvh9pO0u`M)@C2Z$J}@9JrOYRS(uKF zj$h{?4WeKDmzISE@B0rQn3$P;Qq_`8K39kA5)x9a{qWdxgG1NzvM}jsn$xFGFJ87R z(d=2IhKf}9U)aU>_)`SC>b{28uj4Z_8B9%0&-K689@^TTEa#|p`0#R@_L7i0cQ$R> zx|K&zkSRYuf7hNp{@1Tx|Mco$2wR{&FB4M}z3$t8<{J^b0~;RYYH`sMt9<9YmPuJ*hk^{yi^ia9wsOpJ`Tv+^4&Di*!ECGC&%etF&Q+et~IqERxA>L*UD!Am?7 zR*9Ux9v&Xw(p7Td_pczoBl&uvx_LGo$O+p71eQ{SZQg4Q4K>H?RGfKNS}OD0Y*oGV z$Y6);rp=qTb3T3gG)UU8*lh^~Yv+Ca`Z`2ccx>$D%a>PFNhTnAgZvbC@7}GYrB(X= z{rWfwXTOY$jA%t3?u1rfrO1Em=WdoYYq*g-6eIcf7dm}sWMd23@3VA!=aC~v$nNp$ zJ!0IUn@bLtA3gisYs`xmAiG3MdrFOrjNC^+U)~^H!W)@z;?$`vMa9MVvx|bJ)m->M z4)JrxYt2rdmgSA$-nNYfd0EEJZrA0IkO=#o21TVoEPRY>*9MfFpXBD}Uvc8Z361-! zs7eMU9)ZgkIJtK0Q2It*2q7h(tDSvnm!P1^M0aB<^SN{9YS$Ouzt0%PDXHo{H8OGz zS)D=|86B<9wbqTO5#6&#;p!G8>PQh|_yf&MgN>UvFWF=Bew)J%!^ammw6#%>B_$;v z+O~7PdGqFeR+dV^O+!s&ehKIPZK2E?He`zZOxMlhqFLC}bk9GOLn3nT!Eae1At4&d znOnHI8@&FtdOu?KxvoN4FgG_J{Q0x`Q&lihbMm!9`%c_k`}gndM!Hpw-jd?Dc=2Krb${=Za2`7c2U$eL)bHOoMX8OkODS8GW4&Tx*lj)( zBn=hmm3XYfS7>JFl@+=E_&6{S_G`3Pvr08(smo{&3*sgD!BfEDgWEkZ|k|NaI2ZN<8GZ%&R4@ZAtnj7d{(dUIEaU0&^OL<9?)sFhY~4pWmxQ_@h@ z19oxLuxW;WCDyJdPoG}Ab!&sSxA!iiQpzPizw+|(1KXo+-3mi;;UTH=*T{aPN-Ha? zYxef}>xHhbz(3ed8alcP_km(f7R8BYWLHsI(+rB)P^0iCve>}|<1#ZFdyf0vhK^;U>q>%L6qxhFkc*sLpuHi>yo z??bA|vS{KZCwqGo9u=Xn5%~kjx2igX9Z=)WwL<3s&aUUzeTv=3OnMqqweoB@baJh< zSrp^*x<~yI_H01yAnD<@>oaQ{aAE6K^)C_X8GU_LNp~9>6jW7L-IR1+N~vpVk_Xzl z#-^ya;k|vd#l0Y59yT_%^2Wx8Z-jZ;9(x*^|1$IN*td$AnPsfDr*+>EIXMmQf5moj zQc_YGav08IC5m;Ham7+$+cv%JV;{>FjgOB5#4UXJ@+A!|?E%!*YxXF(RiqG_JzH~` zQEvSUO(!$Zucn}Ma5og0iWpwN=nxNQBE9S+8 zu&zCN=#b2X3sPP))_c?XW1afnUvFm6(Cx`>3JngHMOLEN+@rttVd?J|%WrDr(~C1P z1&03XMI|F_PXDfAHN0*8E|w;hK>wRJ zIYq5oFAaUJ!AWep@%;Hw7k76aEQx9L<+5f&&kz7CzRm~P*&V&T!APJ+jVUTvD(|eU zEL8!7&9lfIvPg#r4*$Bk<67F<8f8bil`{8C7VmWxLg&7A{(}C|vVE&WB!lZ(GsjcaxJ7@7%dW?>*y1J=iop?owG*wGkig_3NMpJ3ISB z^VbKzurM;!8$p?&-;ST58zJ0l&$IuesG*y;oDQaKr_x86x&U~P~bMt2T`a6rJ zY-4mZ!j$90n*yx+d%YX(iaNdvj}pyYfND&o3ce{XUkCua##KaJ?d0jxd`jAv!@>~s zf0-og$ScUuVR>u+`^BW2QoDUzKuVKRZIAeoVwneYAkyNbrz+%>W;@s165Dk4;kMthp> z=j6z{xQMM^zyAM|#df*>wCZckp?h^x@?Oy9M&3+=;&PnpMjOev$jG}-sFn#~?wl5JIEi;I=@U$^zDS<}2G~YLaCsi~ zhBwbVFDvUJpyCrgE^g}8e^IHXSAT6*yze=40mVc6o9W}JVLHI+@R%67RP`Vr@O$qY zM*b&X-Bvz21qi@KB0%pE#o5_8O(*9_r+U$~YpY2H^k>*mJ@V~!meY3~B%X&yyJBoh zE=EPM#_(%=Y&<}oN`{eoa#kVg^ers6Pq?c(sFx_>s0r+M=nQ$Cv3TI|vu~Z$?-8}Bk=Mtf_qhta$utZD2jn~754@Unrk>mC z?SmzW3Sk76i97bFM|1`&GcE?GF#^5VwQH9QunJIpywKS9ympf^?-v0$(`U@h1B=+Gy}}|(+Dp!}qm)smn=dEXNDSv%zY8k*>&8wA30-qG zV{_A3Jptq$^Eg>A5V+)y?C0JG_Y4$bqhCj*Z;gv>Qf;Bft8}7 zqGrR$6?V?f&5uSM^?wqE39bNSGB`G-nO{|qn8;Ib?wjhp8~oYX*-bWIaSpiLv6!_~@)9|+F3VL~a>P|;R& zi>{7Nf=c2+jpB!ST}}5iA2|=)Y*4R#^hoUFsZ$HLNqox%L^bQ*v1Q8^?o6+q2iO{F z?9s_zxucnn^9&!qQS_Yn_~KjCRMjGG>b>!uOa773>!*L*nlXC+=q%paC^2?v2%E?O z#B+5hNAQA0OOba|TlZ*}yd57s^&_gFdZ&Vdg2(XFtwCKo`S|#Rty+$MX=2ncM5bno zS*RF8-)?nE%5`{CLqo%rxVZEuCHW#ly*EGY5ouGOC{o6q4UmDFK+mzrSVfdm0SDX=kFGG?q30%d6`Xwmawm^ zEJ5-+qBWx)YSy|cW>(|Th+NL$3Ro+YJjBIRHVueI4na%6cw09!}OUud@0G9=Q zg^m&)9)1za0M57(m;xu0>;j?6pw!rP#`yU7@h?}8$>}X%s&B9PCrIFCVqszy-QXsk3W29bT?LL=XZ_>1VP>2aIBDCk)cD38k4V+vPQtl1-QdLz|z3Es5)Spi5 z5D=)&clc^#Yx`;@ilUQe6M{sZh~p9T)c|S>@cl+mh#fi)z0`TD5KX-2dCyM%{7x!# zn&D$k6lW4D_b>c*E1H>}jQAzqq+wl>seaPBs;Y`0Y9Rc!+F!2ei^RpngSPZ`RQNBV zAjq;@hD<1&`Xt9 zP^ftMa%H>cjAY65FU!ix%KK%1{ZEBq3cLd>`(B*c^QJ!#3}7LU%~IwqM`a#g_-!}* z<#3kbJt5o4;<_wT1%k`z*@RszGgVkJIl$k+L8d!jS$-%GxqI~baG2p^ZeVVIXf-FE zS~dv-z;?G4O8`wky}JZt@Z{tJ-gkEk9lpLCN4*_vpP6O_Q1CM`Eo-~FL*52y&qtE5utvoY06SN|&-scZQ8 z`5D)(BcfFz=xulVV`)7-y(@qH#qDG+a`WQF1*cx!)K4^=B$}htd2!H4-gs(Wu#&u4 zoYZ-?MN3zd-Z!owknYl@#Y7-P@Fg^U#ycPZAC2C%;PqXlijQSJ;n%KhId#|3e=t*xyk*P5MV zZS3EIafjO11e`)mocj6B_WpwhU&Hi+=;-Jp=XXM11fruw0M|qrURb_$>sA7#ytz{Lb%EO~ zplsj1eSG-YP8Qu(3-M6iPJL#U^WQ($gjJvbM@B|Ia`?KE@)5cSK{zJ%sZ@u^s3?E^ zLZ^5nEhw1;%1|gkyA=d`f&w4CA-sHp=hWH!fvboP}Qd$WS4@sV`TpTDAJ!_U25( z4XgrsG7#pELiQJ+hy2#^(3}|n&ku2z0E~%c-L`ETW8p*lCf~^;pt*OC-CDV0$BsM6 z$)6#Y1f>R`fSHB<&@8!7qW$BZW+u^8s)AW7UcF+#W5`-qP+MQk6gIoLj@3bYWOMys zm~X!X(A^KRJJAb&|8f*V!qH#Dq|(X!UzmY^qh817(0wRyHL`R1tB!!zNZejv~C z02CUWsZa2|?>5t{{U3C@#JstP zCdi2V$l^KBnsaX#o-4v~+wUoK8|d(dNdByN&&4R$@t;%gq0KgK!>btr1n3e zzKrqr_ov7_I`{1_9I72w?Irr1Zq#f@c{HG#t05IGMq%G5F0Rw}moP6P;-t`Zf)ZQa zy`xJ$c56-HrjVZ6^PMj&4L-Dsq<<4;snfX2D3&x!VV(k`_YxmbbxMn^3!<-x}4jrWwT1R|R(h@w# zqx^j1nd#q<_Rq9F+`fii%L{!6(AY&3oA-|{a!R_9cFFi)1;fzzkf~mg3)7M%OI${} zneZM)(1ye^0t1)F#>Fk5Kr;6U4PE(bY#gsofqhH(*skpLHcJ(c_wzEjB zNe@GZGXf#>(H4tR2=PPu3o^gpnX;{I*r!h>IahyB zjGjjeQYd)c)vH&3L_uZ|zgbYgDdiDx_BzK@lIBLsl+o=2RgeYz!7T0Kjs!<5F$z0=5m z7jtq%@S68+K8TaP3>0CLD0#V&6HUy8l)u3Qw@DlfmXL+0l3pO(t$kQLwB>vd)c|Ah z;CvR@AiUUENOK24^BcSH9)6Go6Ob7R{sTg&Hr=vm6BiVR4d+LgZire_MJFp5q(9=o zo@q>BB78R|9{{qiC2JA77i&eW)=G_kT$Js%%77c)oy!H!=C}~<*3)6LSRAWYmhs*IvMpjmr zMJ(T>yhut;u6Xy3owCckVN=zcc&Z1&xdkxROFFN_=Jnl>*1m=$#UT`hya&^eyAqLT ztd;q(K*0SM^#uG&N~DNPiG~hI+@!K08W|{O02-#IrapfB=!JNuP|!rEU9X6r@4ck4 z1=RNB<;#P;Z_?Y_ye+OE{>srF-F@nLDHs&mnnN%4v>SESMy!>-P*nY6``ucPoxsEt z3N%53EvA;1bRZNsxF@=!J2_6HQ$yE>xQqPDb(A|vNed`|HQvtc=kuP|luY&)3WdaQa&mTKPp@Cj{dsG5AU6A% zi8ii9sbR^hmQwusjZ>XE-l+CewUMF+2#;VC9^1mZ8ZvmJu%Ndvb z;{~A9X51SQKjFx*PRhe2Nv}7PPyb$E;NhId{TueVP>_J2b(Fq+yACy%?eVeA+*Bp8 zzqjeBaZx)Bxg{jnLA!Zlcnwf;{CN~YKY~E8Ie^BFqY=o&$r*|SYx$g0`oj7J3l@;F zKlJ4(bI4oh?l@Z8*q$^VMtQ}P3!dvfPQrsN8{dbN;+vYf9qOLQDfgd!%fV>Q4YcW- z_Cv@d#T|sB_1nHAp!{WOYHBTS-*!N7W6MUyk_9m6=<2#Fs97*wpQ!LT`PPMo=-;Sj zA3uHaekDDl*ZJka9!vd#bK4UV5`?>MN}UfH9JK3umv?Mvk)0zb1tTaOy46MCccwpq zNDm!8T!!YWNEblFmB>iHhYy9neED)s*U~)q{{7>oC#-NV_Uq`h>S}u`D~DDeK4Eb=UKdC`DEB3J#`2?U^3#Epi*BMQ7CX zhd1rPg9ooXJ$dNp(Mm`LUI29Q1aY~Iq_iY$Pwg8!V9o=w#QN+cWCNXtXH+`;-VcZF z2D;hjIjuKzyqRXnHUy~1>6hy(YidkU9L(;npN?=i(Yp9TcU`>DtJ9}WC3wzEvlz(A zhdK{^lFxCBm===J(|d0yl|jwSh5}A_mL2}&q0I+2G!4=tmA;nV3ONtef*`~9`3{2C zt-_FWaj253MYKv@B1QrO1MTeX%dy(DfP3=H@hvWf^?jKhzxj(r894W8bxi=mAH6Ol zpW0Si^5)`9y2#F*nXLw6Xl?G>w;rfZ3_8Hd^>UmsU3Jc6N*Mx)f)dE1o8GQ8zb_j(btcB_fV&2YT^e= zEjo!CMMQEAXu~T3r-S-7UGbr;eUPbwei+_-B{jL?*7={>z7JxM=#Rf_X<3Vd!BVRX zKunsG$DN=@vef>L8{Mh>U@@9=nRQ=_tZ_gV4W7PQ28f#FF)=K(;TD#Rki711-{Rq0 z5Ig@%7+IA7KlD7eu_>ce`{E(xe{{zv-O1b&G4L*rLFjr~tMcizmEusR!2F(H-@Oba zYpw7ZMhI6-Xt;vF1nF~nNwa71{U}BUZ8@6lR&7P=K!3c-T~Kkx0LL!= z^O=PH8!1mLqtK6HMxV+b3H891s~X+05u)GC%*?iz3}j)GP=e}H)wZr+7hOR}E?Rl` zwiI>eZ@u>>U%z~*{C((P==#)L0jMHcIyxpzR1Ldx=PreZGXY^!ruI&xpMG_dt(RZ& z#5Y%L%qmolT{iE<__037%>H@;3fLZzY0p#(5Kyg0b{h#1+pcz3X3N!hKvDA@e^9;)J41YAVCZ{C-jcaIf2n{YI@C?`TQJ1&mHZKRtR zKW-z4)(V}ZLHl6|be4198st-}@io(lmcLOAEt+-oGbb&ZGxl?be?-FsB4-U%=Nr?q%j4H?uh!4U@J2Uah^AegRA#c&pFZ=L8AEIb; zw4$=|8Z;7McvxnPt`J)`eqpB2P%hzwglI#aTi|76X?ai38LVT07tvYJggEmYw1?M1 zNm222Gyq1%uJgan?dOfKcrNKSatK)pEQ|SN?A}Dd7&JN{640QhRE|O}a%$jxJ`eOp zT7V2T2RZd@bZE4?k*}|RMZH^0IRM&n{cE9P?-u;QqXtWWf=r4`^zPH4gwb_?-RF_6 zf5clf5%~I>A%d(%U@bu%Fa{tfhe~h>2byk!$KXXfs5r);aSJJB@80Q>)d2fljA~^3 z}AW@hFt=YBm{lBf;MYCUB>%N9~P(2_8_xk2b;09W{-+I@M}??mIFyV<5k)~;q| z<|#t8_J(Huv9C|Bzd4gSDB4B`j9d;Y!6k$O4fck`HCeA&Bcynl>w_Rp~w<$$qZxKR*M~uoh3M*+(%=@RM7Qc+@f@26QoDAwY!YG z2Aebum*b&2Gj^b{7L919$Y|wQL@>hOp#B5vvlzu7-u(651JK4Up`~D%Ha1|;+nJtI zpg%S-F#!N`>o&+PS#g9qt6aK&z@d}64;RO?^=JRrDJXKpz8jb3m^!M)*Ig)Vao7=MnowE=~hiuw|>*! zz5%^-Xu_b(J^;+EeV3LqU%7rg5Zy>4tdoTU!v-mJtJnKZK4DzJA+Bzk4po`r1&U!A zdn)?cwM%ZJJ^M8^S&8o?hKHMa_{dgm7!S0E^q>G(Sz9x)vL-*ewMb^H|AU}KGz zBw>-Xf>nzb00fmm2DSV8k^}s%ti654)_SjEEw7u>@$c85zT)qgG-v3$3>1&uhej+k zcBOy|%A$>pjo5`LG2#fY@2s^?cD;Ja@mqm?j#7F`tf?`|JPdirv}3MRGt3V@U)GMLHv3q6(tos52{txv*U%5 z7O8-9-QC>;hO)GMifa>qA|oat@!4?Z7i+F^k&FNM8U2O+mP83nlB)@d$%l_ETC#cMZyO!i`ipa{pjrHN`drhlJI*< z-hfjP4-=M-uoM$h(+NcnIk_1H-M=|iEqvf3B8(f~|2o=zYFrR$q~r5v9}p>Xl4)U_ zSPk0R$>|J!<}&udSrB4HNIs06JU~h99zW<&#e`4kK0I>~)U>?5o(asTF`Ax%LE-4p z70^Lb1+geA_cOv+6uHwdLr?-OKcr=@EnAkN-NTlR>gy90#&GI+bi82mePh{?{txUc zSFR*NOf^3&3#Le!XIk!Wbo$=9*@6R#3$(Ju6yj~fkvei6;0zktZO9amQk^xT4zYFj z^q3$a10-L}%iD7zU1tfp1eg5%6CXX&>KnGW6QswiURdNZv=HE*=mh96mi+4B(}PJ0 z%>%~=(5E9K*TCHer)wD0$&awK`dz)sj20^o^j2m4f=u&rE|J8y>M3-`NMOSW+x(pT+T%hk_tr3$)r}-7kL@VEZ z^ML~gNMi*`1kh2|Gj3`mEgfCf`AH}E8~3^YTmizU_2A_4ys8sEx_oL%k+HEW@JQ<= z-BtsvD4_3_>B!A(_Ff?Nk2pwu1DTO97@`?ON25ox-})zPBJ%KnkdH=(12{AF1soQu z08S6!@Y;>_>xX1+08v{?&sGY=V0twP)Qcc6SQ_I2R@j=+RS>|Ll7W@OGy^c`kzI#( z_0d!q78sCl416B|z_ZjM_5(X`I)Ix6;k0^YZROzTxP-E4)23_Y_c#683WrgkQj91N z35Q~oKo!#N{j;ABrfFv{MN5sja9@H2kGMD+(1U`Tn>cEsAFN-A&=>)_(xHjaz?rrm zj#AkFvK+oDBgibL@&v+Lz=KW-t;0W1{_VP+uN&!mtJe1b8tIPzwvU_kL#K2>!yh77 z-9vL|AP9?3Fj$k{gAV~+voui& z7EQFIu}FAG#d>TfVtbf90&wZRcS_hhH4BuQzWekWHsv-RNJh(@qF zzsHZIfl^Dq-IJ5+tXuP6#uvi%+Lr85Yf)e=NCntsA%CUT&WA%0wsD%%_^+m4P)qN0kvP^4Mk`@Sdn=Kn@ zru%Jna`ld47ywgD5RIsm%kuRy1e?(v0@}f;ku&YLp80rT_{-DrZ^^e{mdT_&b~z)M z^za}{83C|#H)n1@Y*h&y76ykZ$2lUd+D%)wkmP_Dg^>Zx67?idKtlM5fM@t0A)lRp zW{bPKd#t!4Eo@@|fy)Y0x7K`LC}j;mGiu zIkp2tgw26?Z6443wuL*D6Glt6Z0V`NMd%k8TUrLgwJmG<6X)oVq9S~kk=1(0zFDVV zaU#Zug@i2|dbu3TnlQn5fn%9JS4Mk?_~7A!6X|;R@S)gKA1oCc0z(#!QKQqR{Smbm z&*5%6z#CyQ(p|5i9%q3Ls2q?7Jh{YN1g+iPbAM9C#Avgjv8kyK4l8MWA}iKN3>5J= zX(u?GJ6DN=HT1!`y#sxy?uH~fRH2FKc%1<-LRbjzXJ^YEIIs{B67fz$z|!n%u-Jzx z`aE_oGdPzVdV9M}Drr#BuT2IA%h{@_tFIf$ka|oI&etAne z4E-ci09>|gY>gc1-G!;48hgVTQZeB7;NP)BlqJKotRNZM}712_YzqH zsD6BNzw?#G46o+H56c)_)-yhJ?(&Er8g7%PD zcM@6l5e&olyi~#D#6+K4p400{gI8*1$|2;fbDQfjusSagKQ&vwe)N$(+^bI|OM|5t5GqyLPHpeX;}&LF4)gbav==>jB!G zoSdLCPD#2kB8LzpKOAq%c`YWVnvKc0)gPjH=;feA6Oup|lQ!QzIN zF`+U*M2*o(hYv&ZV?z>CfruoUoSq(n2IgmQnAzlK`g5Rt1N0UJ$jbT5yzmg$ zAfI_ou(ifr;yuTk1EN^$MuV1sO=K)P>=kcXhP{Y+!(wC)9ugjCqC>}^#?qcTdGZou z2U7geKgD3jLDWK!B6(_&1)8Juz>q}dA_~7A{wLJM0oERI>rn20PS{ z)$yNts-8Tdfq@#z*Z4;t1`<5PnxGK69ub)EIPK1z#YFCV_^=Xk-_YCBw;)2XNJ&Wn z@URvZi6=rP0{aIHSV+VnxR1*42eb1mGs4L+@Ow3^{SPT z&KU75Nl6)OCuxGL8Z;3fi0aTu?2w_U+w@n1r9%Ek<=TqPJ_~qZ)%tKb9!}t@`}u+< za3f-Khd*s}l|yu9TD58++#r?J)hJC(tH>A;IxASJdcX`lbct0{AGRuO*~(1~ z{7*(uS4c-21{DlYvpKrZV?yZH$Ty#G9)(W;fKAa*m-)6FyLlNjJ94sO5=;aN6+7D4 zP0Prnj#zJ4jf{Y?kxSEqHmmEx`-c-q(m#>zQJq*Z zDn^KPOA=G+IfTxNbwZ0}{a4~kci45-vOua}MnJF>3NJj4x`KHoGGPaY-&*l=+aQSy zLXFQ-Ol0H7afIeWP9iA@u;f&{f3HVyqy_zdaHNI<87YAfOlH~;o`D8sAW)ZL*4=onV@llB|1RxBPmt^hl&w`1aT7aq*@Oz z3Rn0?oxKrhSjMBI8p2Py_JO^cTjGpzLo`mGZC*FUOa!!h+2&= zBmE9<3|*kPK{eTKs{wrhQ*=XRE=h;(-<+gppTSh_43*4JPTCsohWu7Xb?cy~{E#CJX-s>3i*7`%T1*g38MS zzbb}^NP|?p_ssGsS|yxo{A>yWHNn!Bm6lR~3s1xl4>?={OFzE)b`@T4-_|~ORP4UD zimYX0`-GOK9Dp`&u?^|3x=oh+{;9im?OMWI&$O2mw{!;d<7Mk;;jMopq-H@pYp-Ed{=7>k_g^173gxYXqU1^gLl3z@VIfleW4) zc9Q{rhX6DZ1X$7_{Z+r0pk~0d!GyB43-bfdWA+?NU4FA$2^s;>#*NW=MU@~nHj^kM zL|tpMKlXH$CFp6bf`sFXuIi0Fwi%*%pix#W_ZJ+yxvvcCU~FcVBr1VYaMH|-__!c) zoQUC@Gen}96#!vzI?<6x9N{jgR_KO$A%XvCq_%8s605JTC;olpLWodoIWN5b#}E!~ z?&^~VxvT8O3wqLPdSLd9%rqt~ztU6>n)$J-%MT2&0vr))&jD1d2z!(}vQwm20wQFJ zLE zpvi%R1iB{Rv|W8scWC~U8)`Wsy6hY!jLIn`9sffOLGZf0` zA_|!wMo{LwMY8xj*6!(#E(6hNBh(xSA5XCf3JddxZ~fQL@4<-8^43-uL@e$=n}w>o z5wmJAi^*W73E26XJ?e~BiN{_{UerUaK>7Ip%m`e2+=m21Lqk)F5<{p4Brl}NZJl^P zLh+#%#`yfH ze~#SQvw}#|l>$B%WP(lDqVZ6lP(VP>!aqq+<-7g2hRsuBk7ud?c?20ti986rIc}f#jE@`G=7;lxA96 zTU#>136iZ@s}IDCdPb5ERD!|IC_}2%p+m~b)%ag_5HRP*+t7(Wj9otf(1kq90P0Wy zkr(^Oo7@y9c6K2|&_lT znM*lxO_%iqYM?}Z{PJb-^`mzM-Fx5cm;!Qz$E9Yr$&r|tNHpmz%-uo+V1U>?(%T$H zC?l|QC1MyWR0EI3U{4cY*0a>zWDEyv!5ArkX2pt2#l?~kViKQ(8*SOI(0$m$b7$ur;z)hrpOYEI44l6#%mEgrKIVTHJsB@}-{~ zcNt&;Nds^VArO+5K10$e1w4~<|5=Gh1*uzf{b==4Mec!P*+>6)0cPJ`+vKW<8G{X=CfIZn*RIzd_Pur0fvkOLD4Ge&Nw~)RGMH&K50_vKE z7E3WCSbFFZgl^qcjthcjNqS&M@_~Xuv6msC{6D5&R|2`KUr$As<=+FasBizB>MCt& z(l8T10f$}&^thMI&f-Yya~)m`wE}tk$2-0Gp?;;R!}D{g>SrVL%-pfF>3(rqAMb0`XNs>kDez{jUtuP8 zT)X!8{wq6V-~K4w3&7vb@OA56dx~xK=L>~r`Mx*p4O`@&-4-_XL*rb#2woE16R&~- zamci;?K$&nH~2=^cE3PWyF(l{4n2k}^rF_xj`^p^Ho_+~^r?y%p$$BLk4|Rf7?%#6eJT##8Uzn zkz?bFM?UyEG#kTj+;D65HUmmP-)9#*1CVlfL_|h2mOMjUBA%>clB28l?b~NJ+M|)C zm%j?^eY`LG73M}-nfCaT^Bj<(_-WJJ*jEB)MsDsJC~dHE=bIMhzq=k2lZY8wate?D z`}4^}+I*5gO9Ixhdd@6@f&yA2xM*B@Qj>|VXx~sJGigXjtdhJP6huoJCuBYmRFD|7 z0q?$qVqnH`9Ai6KZle~Mk2HZdi13N-UR zeF)pB%QTcGT3ocS`Cl}Fv)><3kfy{xZ#Zz29UUEo!^$r*^3D0=jH$2EGi7_)Jr+^m zDe}w78I^4AM`gwgDBkj-kB@B3X-w>LbN6h+d?>20zmLx%0B;_r^%h%UBC1y0S$ql2 z0b-GYR?6Af)HI+Kg*H-@f!lJ>FPDkVs3BxFFcgJLl?+|beq6pKMcIL@Pqt-%(-w_1 zC>}a;q#SfK5H8=f_+su&v){KUkL0OlYjGZdl5Lv~)eVyzcA z{zQo-E2s`BQb>WjcJD46XeE9=E-tSnv-{T5fGo5S8Xp|vOR*^?HStcEXz<0CdyF<| zY8AVQka=QAG!k#XL}n#kY)G!vTW_!nZed~dOO<1q1_q?H0xRb-Ky*l66*U_?Jrv3w zAR-2eeyqeN+@?~4Fgp+bMNc?gB+Sdz`0K5owh%E5c7ANWak;vtrmVg`2S!Q9 z^me0(h8qtSKpcQawD@bmuU~FJkHi{}GjsrRM(=op$OouI5lRXD-gHi(V3k%-0!iYN?O0OQ1+J2x_0(G(jPA*x9dazqb8==qO ztnUnYk@y^&nwro7fbob)IaX{)Yk&^rRGx4_w9jD9>EwIP)wSOO!! zij?$pA`snC{U+Ib6XGMq$k=!RJA2H^BZo-hY!t!dDi#|`*c$kRs4ZtxuKxP*N;(S@ zOerZTAHg-M@m%iBj*t{;EHjJ!a9CF=yEyam@?zGr91cU*<{kZz3CTb(X-`3lBm(Mj zP0eMnaTN_!v%{nC)>MB6-So2)!)E(trhbGu?w!rra{7#l^C{6fJvDVXBq|uN7GPQ$ z$;9bZ4w(lB?80!t(qqSt0YslOQYG=8&`%K4ICRGP$DW?B13_pt>^szWSVLX?V`7*T zvG9Hb14Onjg)gH|D@-o_IFY%=0UhXZdj^5r!04*eV<4etofnZ0wSLV z6~Od4iN=O*cU@y+(brbstPKDZFdLz@Z(HL#d-F(7ynsOwO}^erD00wzvOXVYwd-lz zPVOt=v@AB*@hR0J+g{d<_!W zWa8_s8bij-SorE{mYw@d`@Yeh;)CVyaA(Nx5!{M`b(QF${wVpt=L&K zxDXCF`DZe-8`Wr_HFwWSf(=-tBC%0|ZVVJ=P^q+}35((6lR|ILHwyqh;fje;7`SOT zIO1|KZBBm1pocF+G^FX~Dfew_q)$yv?U0_CU_fu*2z!gWU-nJ*WpCr-W0q*uM{}D7 zFr?+tSsr*7$y5pi^Zk8VXb@BYIbp;x0Qn@CW4;0?oh`JR-M$|C+Go$=A&t`0hqz~~ zlXMe?+XFs|%MgoK9wicuoSgM`08?@+LUuN@1g)ckH%ewH zzI847SR6_4+`@D3WQ3fGadQ@l`D3R0wsJmD9M?g(l>;B<<>Mn24vx7G4%X<)z@HVL zk`Rv|y8zZM-5NQGQ{xuS`;SIQd0oIW~(fl;v)DDd5jboqReHn(3jFK_b66F9g zPv#-WQM#Q_9x^~GRX{+$soKsg=GmmB@@fmsLIU~0n2hUg?(7Izh( zPP(-}6A=_N?@gI~`No6Pd-nvvv0%67gmhmC8d?=9cc(GW)^PFCrMXYdI=_4&R_hl6 zndzt%#9s@O&>~UWwiSVL+)i^B?Ib7%C*Pe7Qk6oY!+{Eia!Lll7UrID_0T5FkksJq z(6x7NfA$bn5ETC7*RRWDWh-(+kIp^^#~rlxQ2^FJ9FlY zO#Jb4Eu)ao$gKm_5FjM_$i)r#;bhID+d6wxoycuEL|mtMfsvQvkbjx|Y`Mnp8!<8U z_gMEdCfu|J)+JMs_V)Ibp$*%K90Msp5KTLT_TK$hXFs#RTj@{oXGlv(Scu^OQR1xy zA#8KD#@2#v9@o}>I(N)e7>Kw`26~9!Y^(aJdJZ^ef?=saw<~t8rg8TO&7T%-iVW5d zoMfQzApQjxE?t5`4J7W|4m_0$ z)hNkb{jc}WzN1TLgeIYv6d6ZH5jf%p3X~NU>43yJ*3DhsQ^1IV3MvxJ;S*5s2vQQ% z%|QG+`JtiAn;RWOy+0K$2OX8C4{XC@Yg2gIrznw>3+{0t0P=3#biNfP|9}I`C7#F&_Xu zCS*__o&X#yV<=Z+dV9{)altcK+S2l9(d)VRbQXs8Nx%;--GL82r{!!w3diX8cjObv z{L}$iSscpx_~xDAhXyetNUo#ca4Vh*q_J`)k=cLKe-3>DX5y71A|k>fA|D*$fDGy8 z%2wkRoD&j?z|C%6kQP6q^@uDTkg^vHf77bKly$SK9zao^%bz`~=LHJPD;lGd@AC8Q z>4AJFfJlz$%d`J!K_SS~6s~B{x^J`q{pPArS-H4UeC!aeSP9_xT!L~F;ODm#E*PD@ zZL?3<_~PvR;%^1yCT`Rbyd-IC&u6SrM$|BJ1q-B03k!=%eB?+es`5fmR-o?0+}sm5 zgXE_%{ch( zgl?Wihzb6iaB~!H0E@+l8`h};|;g18dT2|(oR z@!5o{*8q+8;+i0Wva&u;B@PeUlcpmYtC$QR9H%mL_KSdz=D+FpEvOO|&>x|pLWL+9 z(3xXu0V&z07>;ahRXZl>OGfU{Ix$gjsn2_WYem{c}3QRC)PbM7Q z0YZ5%Oi!GCU*xJbAKr3d@&M$drKPOA5*Dy6PMA@)Ax2Vi7Yz>GMjG$=y-c~~-las8)ZG7amHJDxJx1xLH9F0?n0&_7WK0T0xRT6XT zzur_ATn1l#ANzqc5{Sdm9S?<2HvTwHbrx>x2;#Un`#s_t=gv!tBFdDkvGGPY(C9rq zJ?D3kNm3LyIu!kQDFLSA14>5Tol^@-1fD}!27rrx9F8S2-k-y?vU)B-IP#+9gIU~i z`1!6}xnkFz!^`WjcMha|sDUCjgaO9{=(Ka^8IY40j8A0f1@dWT1aKtlZ(B`EhG{{w zPy#oQL_&TzQleTG%s#sfa%&(_N)cZvsi{o!2?)U_=|%jNdmywal5>WeH&I_sF# zxg8(B|4;t8xCypa6aU#9U@=E5X>fp05odFH&UIu*G89CZAsmk+J93=-d!3&eYsl9G~0mO!uhPnNL0G?&177@;HLk6SP?3G(!3%^Ho> zH8dt5_NVw0yFO+;;VC_fi?jY5R`%}AP89M`J?ro%OdK3L{=~A=Mw*4FEiHoR;hY3| zC%qaF#zjEb|M|-w=gxrzvp3i6{CsT^va>ryMSGQSV$g`4POG^Sl)ph>K4WFITH>I; zs)j~Y>|Tf2Irr7G%VDu-ZZYajkz$F423wXdSk<4@o+67L8XXxfxpVj`dGW??>gwu7 zAi=~#3efefvAH>TKCU_E$=-+-Yyg21KfXdhjMU|t-B*>cY^YCUdKEyJ6=y~zIT5*( zL28@=gt!^ggBzVqMH? zMeyZyumU668=p2cHr~E-=T1{Qx(9SGUc7ixTWc{o2H^qs`VBmBX*`TOCjR7v=>>B{ z`P?xgKVfYL!R5Gd)e!jTpIX<$i2e+js>8W(ZCJ-7c?DO?L7RU+`j~#b*!`wkKHlDt zv3`XH$m_pH+JtdonYFd`{LvcK;x$=Dj$Oh_OF#!QK}DLOsJ04!iUUV=Z7nTv1H;%z z+@T0I6;@n)5QdgKCI+THw?bNVl;Or>2M1@Nv$A6CE{f;WkpKL$y732M{I_M}>@jlq z3*^D|#}*9LkwBdLNl+euF{28M*}to+%RNI7woM2E>gr;2zSG*^RV6di?&!~&z@~-T zME+7wplH@V?>uZ=ibHLLQ|r!gK}}P$1{XpOK`L;zd+<`8aWUePI1T^QmYI{x$HH-` z)%;Harvl^RDa0U*JhRoh66PF8yJNAc+pj)-q#@=7p&Zvg>i#)U4D+Xa?(g@gAOVn} z4r2Wv^S8)+Tx^j3uOG5^AnOf9eg$Dv=R4x|F$}&9D;alZaHv=A41oo(tC3bJ7lr>gx$LQ z??YKkj%pCaV8}TDM2RoQ6$uM*Fwpjt0f@q^nTbN5D&gd)M&La7e$u;z7VM8c9Qr@T zr%!KnlIz)IVQGmw>2Qz6Qi=?b-pFlA$Pe6G6L0b(k-$iMTtkCpu7s;-KA77R^0xTt zIYFgT2cK@e^$|7KA4H<%toSty@jyqxz&Dvbgi#pa2hDF-=I~EB051CSOcEARQ4tYI zQ&Rr$CxUUJHWAMVR4+gd$a5Q=j;>MxbRpiYyLY!hR07GteJFZ;T8%ysLF4bjlN_;NeL(HD_)o(ZwYVx@ZIb&s1|PLEJt^zt*s5_ z5|>YbTebQuPJ8amtA_nFD=WP74W|tZprlPqDaHIO`l{Sp6K)CswYFcF+yQn??s)xw ze6NbGZZLcapJ4DqH!iT{Y^yx(2Z3vb5zB!AO)?yezF;*Jj|g8W;w&@$c?KIN=FoNd z!MW>Ku28V!=<081T=N1O zcLK^9On#7%WX;SrL!7Lut0N5$TnB+N`(bECanmX^S{G3;@_0KnHBjpOFJu7<+%Mhl z@^%7>8=IIwhE5DEacz`G%}N9pfHgtJ+i@@k;ieM^?JO{FM`n0r?k`jzr z`*DLX?q(r=YzV>;V-kpL5C8@cE$$CO3As&p5*%4PMm!ijKv~MYd$RKKOE9TF{0cP! z#a9mCjdB~?ichS4mP)01>j})%^s1?-n2YGkAOdlJ4rO|#T^bY=u6N9?v7=1j`diCU ziMMFk5`VO=Zehq{cDY6s#55U7z^wYUh=};2qV-tP+M0yOnm7a#H2U|WLQtnRh9A0( zYmgz9VObJ^`0)Jx&~ArE6EF!OEG#TOzDD&JO4KDNq#aO-YA2nZ{l=*-{w|49hrb)@_!j2=+m#f-*0(v8Qc^I0%4f`<= zQSGGV`SZUyGQaB>ROA$i?uME#^%55mm7>fbO4bamQBgR)Z8iEKXr=5SbNn7f_tMhj ztgUz8Y!6Imhv9x1yb;8vWRLZhu9+XuT^RvMMg1a5y4)kP#+wiY$z>KqfFpYf52?Jo z@32(j@om>E5qY?{AZdypu}@F{>8fD32U{gyw7HQ3Z;#&J3GJ3(G}9s6z;gn_b4O?A z5(b7ae>W@Kw;+T3gMMKDgn^$9)UUNt9%4Ah0OFiIllnS3K~N|j^H;pac9-aolR6Iq!6;bSAtBLcP zG=pJVoj-g`A2KGR_?PULfo}#(Asll=XgPHHC%L-1VnW+ubU`Y-)NqDiyCagGM*4Un z+@19Qe%+GF=o29p3~@NhxMB^SI+#7hT~llAbSy0(tR-jA-6&EI{;B6nUt z>h$WF)pqBp;wc&#Z7-{#G3oYa?R08+Gx?oknP3eQ5-#rHKL$_^mmrc(7=rfJ`sC!z z6v7HXtk70gE0mO8cs@To!bM0F+LV_$Bu?~gi+c%;@(Ropu%8iKi;V1J72#pP{ei)t zJtul~kNkyb$Enbi>Ypl({%|1v`0WP|R#A@Y>xbY9Ma0PV4WFkCexV_^lUxjdQ;+*- z_zd?DHv-(Eb@lb;k8PJavg6D?y6{^Zc8^fxa4V*f*`iwHRV@%3fCgPBBaQT(>y$j@S(WyP!2&l{Nsmiu~c(ioeVM_xm*mR zV*rZDO@Y~YmfK%zXlfEkX~Lkeq{JZqAo3S^YFq~ne=n}HBHkf%jv?BHE_tr3EYP{2 zWb}_0APOB|7EH>>nwW6^b@eJ5Mx7^Kh3pu3q0_$`DZyscA)QJ+U~0;P6i?>6Ra(!wL3YORy!wBbIuE#>`}O~4@7>_05NRkfZ=`{eiZm3FQ3+*cB_b;=LenUt zB-te+Bdd%u6Eagtb}}2P|MTKLzsLXgIKRg^=RVZ;`}w@bb-mWLdyMfO*jfR#ctfHb zM4#TrtI!lR1Cc7mx$ZC0Ggt7}va+&BTo6u!|3wT0kP4p`TP=@5xa11{#D&&;7nf^G zzs+orwJ6k3|1Ej@qwXctGpOx&`|Km`s*WIe>!6}IDfLAl`0Uv?lYxdQ+)$LX@eW%rxEI=BzdK~H z;Piug_hvctoujQmXvMaDd?9?@#k0-eIwf?R58$+l%|CzV*!{95y}Xha?pOl5D@iw4 zpa^Ps#mT}Gu!$nNT2FMif`j2jk+cGWx(3xb(TE~p_{fnBC54dFh$kdUeT*bpdU_5= z`;j(*hF{+3ym?2@kKMU_`^n{>2k7h1dR%48A%CbOJtxPG;d8WZ%eytXhiUi5bp--PX$TfqmnLf@Gzi`*(QjfIqB&FCBcPAyJ^_B5x}Y^4zcgq)W0rOYgWz+YG(>a1?U&|q=gW5 zt$tMecoDpV^6W^j2l@HC+wJOn`BQ_NG;k5o(ee1M+W$K*=4+LwyZetz(T~-LI`o5c zm9RICAvYxGhzLu+G)JX@s0umpr!ODovCD-|$ByBW8LTAfBs2p#1%uUck;|0jSoP-F zY|+#V)G{zwM;QdQMr>`{HsFjS~89QN^P(S5T0if?9-( zSdr=CB~}z&GN-kf^-6EO@PWsi)8dA{+Rcr@JtOjaS(e`30T`lD-0)~Fts5FU8qNx? zID{fbGT>pD4jem1r_)tl#{2h@wjnE8NX?aTW-C`3!gP5d&~wIS${&_fig(E6(`Ux5 z_JW!b)46{y-dFfgSUZmOKs7D zi}XL7ToR**YBGQnJOSca_OwAxHgmQQB)h+nl~uNNRg5Mi17%`y|Br;Mu$+nKmuy@c zdwZ@GL;1o;Xh}Aeh_{#tFE(-Ubko+hsEFi{VB6B?fdL`2{D-IEXl*xp`wnAHrvH7NIVpRm|MY6MO?S* zHzKJ=1y2Mu<13JKC^8tiVYmb(?g)L8YgU9dQ40ZN=mgCCkVLU2<{mtK>PXY%J{>cr zg~;MRer!$wxv|q=yNZ~Xk2Hr3^?VcM`T{&>>y|C6IqTUM2<@7og2o8A2D>gb?+~*$ zpAV;{b&z>6nA#SgN}-0oM9EA;J-((n;Rpt=eMsr9k2S&!l)-w}&>)l!vaC2Kq>~gw ztG)e$rFZYEa!@aM_iNB;l^=*%*3evB<_uzC(2O#+W8J1rx4TV!L#mstgF}Mu`;&9@ zh;py}nKsPuZ*QHmvRRm2()YdAZ9RR)uHYPFszu)5wWXP zPn?H7O+v{LH=|fE_+&AgmJ7|ka_7V$b^M2~!5oE(>ubp$YBe{~GKxJOxM@=+&s0oh zr13x+?FF`$q(0hKw2w{cTWRpdemt{zOzZm4?_JT2v)=h@X1L)fM#wU&kC;?4|2RBi z4tEWM5E5z-wT>2NFmj6k(Z8dNqzy-K_R;Q{7AFNOs>#edF~fL<@~0+Fr22M~h(Y`P zqs4xDH|ld8UTvhthNw?JC#F+|MQT{qtGCY4KmA!^I;JA7x{VqEOZVAm(Jie9{-fON zM$Zi}h=9pKdFp%&SkC!~X5^?J+~QzDpxexu*VmmhG_}&+d+y-Tqew_n7phMrgbY_J z!QJ{upo;5jBW^(h8mxNyHkAZw%r1TUw2`Co-4x!Z%wgdz6B*C|@)~0DtX1dLpDnoC z78G1*AeRjsnFJbgJ1SgaaS!&IUH+v&oLm(Uaf%Qi1qv-D zH%S~o%!)GTGLD&y(C6`y5fRhSqBd^QL_qUDVQeg%t5|wpeg535(qfi3?a~%hZde?< z^zW|-fC2h-g%2p?pai>5GTgmbnQFEi47D}c(!RUrB0ty7@L9fm=>+YgN03BOR>_en zw+rPX_fkVTWlFfqU^v*xIa|-<*`C`3vM0F>GSP`*x&YTFRdBa1T@+xzVhj7Fay?7x znlLVuSAt2fvfT=<_={9MKi+T;r+)!TtqlI!xm(?@@#kgFVz{Sx5zQY`I#RLYb?+E{ ztWM>ubILIAEf+hrz*hV$;S53BeGPLjzyI(d(m0$e2}dgNR;fCp(60R4JLM|1lC-ft z+c^r+k=ZHF#K}ZCZ15>)o$3)bHeWUamEpR_Q&zOdU-@ftqVMe|_h~5P{({7D;o9)6 z{;NIs{%VN#&9BroUZk-2Dnyg(-xSu$OQEE%D0F}GA zGY}0<<3WIos~Ge!+yEFuS=NF3JZo;-2lT#7kn$g12c!eM(*<8w)-e)EwG&;v&PCk; z79E-9@Z!@{{5>ORT3;{pIdnwn)2B}buU_qWzTt=0siN+l^F={to*z-ohJg2K!0N7T1#;kPqV`}kU$~gV{bpc zws}C|X5PQL?cRWXdEHaCd6_FS+((B>;y&G+hl-=3(t4V3W&U#!8y>B2@aoS_bWphW&x zD4J2Z7}#bKVj-*mxMVM%J*kNpN_yeZLvTU*r}QJl1hr6D&DEUZ{J8Ivjx$RT{}DaxH_I1Nz6aeHn8jxmvTeyIn~HS5T3z{O2ux$WhrA+MnN6$HL3$pLgk{Hc!Ov7iB!i8ug8 zsNknzW?V*e`?=?*e*Ef2VfMS+3r%(Byo-LukO!>dO|US4{eh~-ti*23%`Vz8x=UB~ z{xZay=(xv%UY|2p-RA&vNdYKgGak0!3p9gQsi69>R{0@|gKvh!I>0hX;x}Yt10E^C zi&p^;m{p{`G}YXWn@{?6@qRB~KBR|rOd!&@j`XMJJO3U7_#(l)1SSTmCPZGG-%%Ai z9JHL{vyo$W^nbV4$b9zZq`>Y+e{M5cUNx|cgZ;qa!|RbgA@1QR$S3_C*zS!yC3q>R z`#5iDuD0cE9g+}bu^aX00EUUI#q0NDTT!RnQ$|%E`$?#=DAjiP)%X~x`~m&F9}TvQ z;+DO{ZS@6%yG-tZrx&3UprQr9SJeE^YQksW-&*kMQk~zBVgTkssLCVd3oOol*XmOO zoi0a%Y#DI?V`&pWBdcB~!|KsrU`mRIWm4nTRgm?}uTdj}^i`u;b*UZb{b+lLmtK#g zSPp24DY^6nVQAGk6q?Y5dtcm-q)cXpj)@%&+abO0jvY@uJ3iuQlcfYMNIr|GZ24q3 z2>-}9=Dgo8^)Kbx#~0^RaBC_k5VhKpbw&QG0;rOyb>0t-Y^jb(OcAb{k8&TpK*pZo z6?E)riF1-&_P%8Pj)C-gs4HrAnDfPe2{49X_wck+4>$kaNrV+M>1kP^j=~+ zqsqC?(yMT~mJe&;%5%<3ac{=v7EdaaxEtpcj>LU=WkWV0Y;+~bNwOkjSF>r0(n@w+ zU3Ay*`q%2Yh#HTRC@8sh;OxsVR+Ta5<_ew7$60fSx2_Mf_{Zzhtl2tZKqP2&^v;2s zcBd^KemeRYD*)9)9r7y$4^6AOclCEo&4mL#Tx@`jsXCsP33lnNN=MGS*h-bVn6B)| zs+YXzWe0+O`dw^ALi>mw;U~|IHa5OE@86&*SnbQw%R-F1@Rd3>{i1+DbPa9ARlYN7 z`;p`}plO;sn(J36Twz#IEi62}!ubz*cy`k=jcmAq->}Z&IXXJ!LNEufoZezqVvt7r zt!E=a=BSSTJd@M&I|ISJ`t<4cky|yx_^C2Mg*a5X?5NL{75J-=czw6t^j~Nf(zh;Y%v2^CA!^z2i>R7!#z44dw#DS+S(eFB~UbJ+n3~_=fd>r57 zip?`SEk!{;aV4i*+Q~?dn7|<*CdErnp?)K>p*X{8`EC|EK-HVryM-`dKQjAP}vbq(-wJo`5ef9@XTr{qG*1Zxukzk z3-K3GErNz0RGqK1L|LB3va-0Z>8+KN8h}`n$f=WPSBb6>opCGQ?YtFi-iN>TZP&If zK9GY$-&s*La}7`anVib|7s(kK=Z)x-UZJu4ST>@q+BK0lxLs>bU(a@Jgx6l#pzV@j zBI$7b!)m{nd_78+pu+P%6TQGw05EkK3r0NO8@1FDqIMf(oqV3}#U^ zrZ?RBU`b2y&Ef-0CZbK=GnR&B&_O;nKe}pYYW^7@N`VDY_vK2n-qS$BVgwih*n5z30z2 zLd6tfIWgxhkhof2!-AAAbD42bmd~ICDBrcveBvI(Q-Ltq{^KlFbeAswW59ObWux&|D30PZvrWvI8p zN{C4AO4-OR6f)sLjilFI)XsS^7D=eo|5D_3jS^Yrw|O2_oqd@amF!&sHm7 zQ_R0U>Dw}}An`{+@^oS7C_t`~fn7B2kMxQ+9c6Nxgq{%}_)J?ZTxvrOA56$oKWcq% z&oc$E%F4GF$;A7tr>CcHCn*l`NK1e+fo&*qc@G)u^kYqde8lQ2E(uB-@dk=K8A)BB z>X8?j*RB;Ja}g`$E2jP7gxWnx@8mj~Iz|%wvCH%9caaAy)`*xH-mUPI58}}X6eu_h zwJ2FL?J?y@H&2r-Gqe6wP#Vj%XcMT=&!^}!7R?D)5!RA^^!c*|=|ayXWRm2Xe=qW(8dF%!V+`D}PA!&LeKfa1-$-aE`|Lj^W4YqaE~)E~ z_PWqLuI1C~(;K=V0UD0fd4;pm$u-DX3NS`0k~LNz(V`1!3%JhG^OB!t;?!AB=Y#^W zF*wI?=1AmiUA~@TQ4CD&AXd9@b~VL`*BZP$BUIxoyI*>QD+mJ{5J_BTHR2WNZksZS zJ&5d(ZcvKBs^JH2Q^7UinrSD#I7!1r=2KTe;H4|n3A%6$jXByWv{KNCYd|44=FnF% z$ePSdqsDlblzDeD6+`N9U+cHSVP@8Yv)RKdZ3-i zsYnCPO0?ap-YS=N8yh=B13icdSwhNq$F3#gT;U#Bk^5mrTk}PWPRM*18N)~u z)^*}MhyQ5-)}rQ6Fu`f0MEk4$ktx5_fPQXsy_-_jT_LHu zzW?y9OZUxtM^(kqw+?bd7m`14hdY3=*meE6qHGu4E83b}djaYHF77tXc4d6lELdo`X0?H6|vcitY!VvmZ8WjqV8jPFXi@>>+rInAYzkKyF%9{bRhPg++mZ z9?7RS_F!+eWfdg>0xSl(Nw+^3Mgw@`@#AQ2sU(6A6kE5pDeiHF|73<=U!_HdzUv__ znkcY2LP3>Gpk@+?!cDiI-aak+=FPn{q7P_P`PqTErban9M4|w?dHs3-2xPf+@^GK3 zpL%+e&qgr0JIh-qlOiwxjAmrrHLLLjjpFu**uDF%_r%eIS5|!Wr>-NYY2>&I%a`l` zTD!2aDylSfP~g~Al)&H&H*aSdXJ`h=B6WSMCxhSAX{9XNpSRf!g*EY{BdI9l_Aw($+O@7R$; z&sT13J_DTx#*av7ai5^6kIbT|cof^V9Zsp8z*23ekn`}N20`UtzklBc=bznY(uRsD z5cl{jc2RbPyqSd9?j{eD|MCtdoRFi*?`JEOsb}+{w?dgdOtKHa?r_(8NaRZZL9qQ$ zKK~6gC#Q!ZS2q1=zrm&b-+v7byKNQ)O3|NeAUj9L{WJj&xG@ht_qUIq?r$Sejo=WCmZ$%Fz4`<$-*a2XbP@ZFP>1_b6G&;MiCiG3dwlclOMe zQAJM_Zqj8B+LL>LgdP|gA}iM_ZqPmk{@%2C^X@bP2PdB!Sf>jD_=(A`4PIPW5ncMd zy>{mH>kp_wM|Ekv1!WN#Cu>zT9o0!3OrjtAm)NiRJ( z<-(9LF@v_!U6xyi*y>MB_wCB@)K_00m_>svapazg1GM5jwyp&VJ%VZ8;zROH9H&i^ z+!hd|CiUy?F!o#JfA-re(x_%ZtaWeQcoz62m~Xdqd)M?bhS#Q?KCP)ReeT@Jdq2ng zVuUz9IKlJb!TU7Ed41v|7zHw#M6LwN@Eo)(71riG!1LcxB%IIe{YgC=-Np{^vXis! zuT|Ir9OX1&!ac|iZ5^H9YOOW4vv@1t2?V@HsCp6sBlTAU)O(=OSq!A;de$eoicVR!qKjpU6&C!vLvuM%$)&`NfN!ab7cdOo-N3K5bE`zWh{3NiVtUL#y)<4(*N z(|6#&{qWD}547!xCF0#|W@Va^((>9sb>v30?u0p3o1XN17>7!#EY^Da%k-62eC2)e zDmmoJtrM?UjvcEByn~G;frI^PthN96r)E*KY4ulAR*V2=K6uY~^vrFLy43X-@%Myq zas?ai*HUp(p7J_z-#$~|6!$|4Wv{uc_Ql7KkY7MmlK#L&Ckgu72Gx=WVhy0XYu-cT z{qZmRoR%69_E1$Mx7LN%Ar`9@V6Ie9d-sj|+@nJS`}mP9bf>0w;-8wqK>;I5*#Qmq zEq3B|qNF6_R%Ss-!~zfOKH=Eu4_qz56DVf7bE5q5Qm74W58vgR=rC`$vEMZ+fK6nk z{>fZ}+m^UJ=_8&x2GL> zeS#N*LnzQ3iunPRnk1)iPF?a|zHzNRA~?oS$b=K(%mjo7A%_Rb;LTQ89~;eZdl4!^ zI*Pv<*Hys7xq~ImoZg3=w-)f=NH=0jBP=74xsrk>p>%K)GCYiZz>(61%)CzWV*rgI zHzk@1Y9jrCjsu*$gox72f*!_k9&@O;JUn1az)vTcg41L4w$<>kTnq{Bm|1Yh>_t%O zn|MXP_!0BXgj-{Qy)lTilitmj*lb&6Ph>1`&?!oXt{Mz z(t1uFf5<6U3R&TB^56YgFjw_&dGAYCPeBHH5f+c9D2j9$sK^ZuT>eVkcw`-_e__t} zw3$>>E<~VF6sA9Dt4($n`RC@)Pz#vEiM{7bY};-l*%-&MAxn-VBO69iv@&FLZu*0; zEDljIdCDkM$s6JH+Q_9Qvr?JSH*B}jN=VvU-aDGx7jVGR?TO}}mnUtJBos3yROVC2 zj2Z$whMD>%PIRY7zQP1n5n3TQ+(i~5XCZ~Ae`#*}!S^3My2cS9(*l4q_ad+r$a{m*K!HL zAtEP%KN9T*o%JnmO9xA?`!8&Sy>MFcNm#xa-jzEQ-jIK9zkJfn`o`d0#oG|usY;XNVX5}O=wdN30|j5`;nfU?rZ23 zXr?8Uh|s~Wv38Mo|8ecPUYU2(%%7xzhO9=ftp5oHcqI2mH&;^A?# zmyXT|C@@ZkLyIRn)K~hk$i~iYI6vSxiSP&tT=|=nrT!p5GMtWLqZ=1dY5zkJqy^BC zv=nd)=2j*+a`y#L{@L>_hypxzWs|Cp2SL7Y4w70RA^vpKO;>1ML|iEx4lbKn4-YCa z)nPr@5kc?K56<}h+#5Wxs^>pzOl0~+5uXy>RXr-nhLj_;I2%fHWkgwXKspf_5?^!b zO76V9HWQNW+@}EaB8W=Jc*LxikSvv3H@Q^%vlJ-;+slNI6xgUctQ1TE$<@jA);&q2f!w%v)8Zk=EiwG!LJpQ zXXw{1!n(=!F)=r9M7H2a1n=e67M{+2yE7jDa-bQ?lXTB{FM>HrL?*@=9yPn==wiZ< zuR4yI{uo(`n6S z+`JjWIDl551OR#Onep|`@V%`m{UitHI6>$v`V-Bb>vX}OAwoWgoYjchAXlz>TjpDg z9UB1k+`M^neG2i^xzCgVCgpV!ua>7ex%+p5r$sY6tGOCpkwQOngH79MUm6 z+~HPjuTF~>EkgX(f(cSVvZdfkeG@eXSX>-icy?v4lExBVCvyXE;=CoYkImBkTl?nS zvgji778d?jiWrZoOOc}v>q<&rJflrUeGO~sg8cM*<&W7xyD$w|D!hf+P~ZLS-2+X) z>TuhoDf7oZ;+2i%IQrs|~9)}F| zp0m_L(I=*j#jnBRx_376-GgN;3>D48!%pGEjgCRHO_}o!?b-vz!Hsfq+74AdIHX&t zSI?j@w}8z>r^0@iZQZPjHq?U`yDu(oIF~PlA`udri1XSuuHPTUDcd^y`JyfRYqFL% zkJxzRZIw=3){;5rA#8FUJ=)J%BJXj~X3Z=FNC#j$rq7>0mZJ20vF((wnE3J2rFY^i zse~9<7Sx$$5XP}TIBeUd{(a|9bu1clKh(YFa6=9CuV21&p`qtKEzk>~HVH?y1z?(W zc#PSHR;I!Bhot%hJK_fGIptgH65io=dX@ACT0OM10)Z_YKhFPCr6St#$+8@3)~V4~ z^|>vMW<5K&kE=8+I(mHaMZF2fSF@O3M=`rsr$u}H)i`Tz0Q1iCO1rY8I(lC<)y|!g z#sHxsIOn9K9)im`F_~-tBi~UJ@kK*h#^+I+H&$5kF2_H*qSN1QbAQ%T+c!tF2p10Q zI%0!ZuTUVa;cciqUY_-WN=71-=!>?WbUNgy$I3N#c@{o^Q&?P~$a^_4uc2=Ax#=db zIb1bN*Rcgw(UB@D)#01l8*`=9tDFvBy z+49yW1^qk%&?L(k>hSAcPlMAmGeGCy|V#gqi$4FtZJcG zYs!mSyl@bycllY3rCKbWH0(O}3Bbu?X^>9P~K z)&^~MvZJ#@(;yMq!cuVnd>*V{$ZFc_S6d@f4Hhm;adw-EP>K#C6W$H;wdS`XGpEph z&4xrBY5XH~3&5xpl{|6v?%hp4m+^=Ts9h-bB*nV#?D1PG*Tp@7mmuzQGt$3xf#udE z1~lG+s`FmUtrM;sI#{%4=zuc^=k+vOOaaDxw+0fhOFJdGPk;i7o{x{-uIRL8*Df_C zgRBL#0m`XEh5)3@E8Qt9Et81^PZcJzvT=nX6U~f^pvsd6r~5;Wfy( z*2v~fQO>Dfb60Uc!^Qijr1TX-00ZOhSP$WYZ3gWcfvg#eU*@TRp)!PnV|YFJqKPUK zbe7lR{BO^o2lym^x^y>c9oI#hH*L~Wz6#TX7NvFL`pYW5YOuG~0l_O*cT|x7h?7Th zs<|SDUtCpf!;V9I*i~CQDEw181s$Fix7-7^%YM99((IGLq)~qY8}EM|2AMeF;;IY7 zo#(8o`R&69I$`|UBi08y4N(J|yUd9o6rUs)Q5#Vtt5i$?#@xQUmhU3HVE_3qJ5fVr zayr_ao;O*z_&+p;s;VvjRh}W8qWdY$cPrWsP&3_hBt>q08f}Hua>2oJAg*b<^HBF6 zr&B*I=iAyXx_jr&H3>NuHv(Dt)=$Gohk&g2 zz5TmaKR2Db!fQ$3Sm0;gzd6ko`#{FWV3PUr^Qyv8Nz#QdT^KX~JWG_Fk~5FtWN?W6 z!spAEEqle1ajm-0e}I)8GGz(%6ODD}&bv!{jVk|nX3XV6?b23rEbI5_Q^%%eNM$@xB~6Hv6LL=qu97m#O0K^9>7|q*eCe=BA5$u~ z9JsqLwGW{`HlA~%mv(l3`AyyH`agv~7rB43x9Vt+P(0!3vOazLhP}ODb>i+DJL-2Y zqP@l2MALPJB6rZ{iX$9L>KYmi04O3V+7=WiT`u$tJ5$q80r`gb^Ef|;8X9WcIdQ&Z zVc6^L&6xF=hh~L}KoY;VpVGU-l9ZwjdVq@f#`%?AOU!fo9NKq%JBNlm1iXD4kR1R> zj+oOc?kQssuObEQ(z@|+rm4kgNCu3AANu|-w~d?FAn@}u=T3)45kB35OYP4TtCttD zonpekZ>3QFqeH(_6fv`7bcyqroV2!HCoP?wo$gZ(1F(wkhT3ua$(}vANHf48Fu7)W z>nMdDa2stA+AKj;Gso!S;pIA>YEI8rIqpd7W_wq~EG&7#)92?XBxShC=Zc7fy*N#| z=}oyf7tnoj`uLxi;Qo+D{t+>c<)^U;pSnTnDg@RVCFzF!w6OhjJtN~4Bu&xpMh2Ww z*SV8P_EtbiD?3R~Z&UaL#)6n|3>B}c$S_AQ756VPfWd@PL{mMECfJ^3t=+F5p>H%3=9E&szAYh&vQ?cuoUrZg z*G7#H+z5~$DSEb+Zw+UZwz2VUgh-a)to`v8sjF9(mvy_n%kbQUorQ(bKbHACT~S+O zD5VcSAt-PbMxuR(50B>f+WOY8CXfOiPnVk0q)CfXA|`kk`Ieh7Noo&8>q0fF`&A_r zJ&hGmQrYwKZFd$f)anp_*bm|DJ&O6p3Ugnaja)yxE0OT41!)87Xj|;0hG;!^|Co+_ z|NS?5Qa*8L_(})Nd%lfX+m;{&k&~P)1ZU<39&2h!@6{XpPWi`Wx?trW!_?KOmv#(Z zv_J29R^{)Yn$sWKDhxqs)TRwqvaNuf)qsFzwU2Uh_W>XWJ?&ZXuWe~k>f_*!liatS zDs2}z*-zueQBzZzy#)AEJ^iBZ z&iL-nhUcDA86Ti{)33JLoZhqtXZ;^U^WBZ-)YtgGg1!wxg(?pavcF`gvhBN-$%j|< z9&sAI!e=kis%6GJ54ES5R1k>+s zOU5a~84YJmB_bG3%f#=vw@$r=Hf&(9Uh{<^lSVmrR&QIoJz`+P?l0y?oov}y#+M8{P4I3Q%Pw%kv-X1@nd_`S678biZ#BiEkGu1Y2hOwU&J9WC{)ZAnC z@iR43AI&_4oJL)JA`D1!Q9p}_U(VLg+iy9^CKr&MJKrm(<}{g}2fzTQ&zd!g7a5b; zX246+hXcH-9?pMu7C9HM!NT{Y*3lQh`IL}Llh0m2!a@rdm2on7l&^8vk7P?9T2@;M z`kSCZ2a~^b=o;D&h{@U zF5XJNE9g7mLt@pr;bFJthkQ5@S84B270AO3sW!4`TUa^WDStfa7D2$3#j8TwDJhvz z55`lz2CJ4Bt9R|XCVc7kti(NgR+lRNZFaY1nSEbaz($l}54KJm&y_l3IxMUFt}Wth z@K$Lw$x>%*f+5ee~z>xaACKW2lnYZJ{_WW^9L9R;x=*HK`M>9Be8KDT;X1f^%bBchiNHhxxZ_N&|7$O zvULMipw$jhKl3f~C?>fuwH};ur3#=1%{y z%QDRUVpPPLGM(E?SC)V2ir{?8$IlU685S~o7tp4;HTl$u|+O}cBmV~|*_P-{RDNr*>p~3+bbFFP6J2rbq zB&8jH;ZK`ApT5$p_9A=sKy}KQ<+jUI6kpX|_d_MBanw6O)j;{$3(PY$)xV~SkOW+* zBq22FbwNQL4l9u?pKuEd!!uDvV_iTCK>>2o*;QHRP^-w2ep?;pMn|1l<@{(>FHKGJ zk46r;dD=;-W$HI;zM60LKLfDIPgr^hH3^_C=vDF1H$Z>)Ps|*P0WR!B`<&cqUe(6E zdL6xW_wa(Lxu@n%LP2i1Byrc*m~4x%a9xRt#DOY?vXTKqxZFqtxr7XfEUC*LhjRiC z&JN4n039LIcEAbuW-RJb`1B#O8fk^gsB4v91ifQ}K%PgPag20$mS%J@3~5GFVqU%! zW;VN1;;7K2U%z%7dt~)$5Ak~y*8ka=^Cg~PcOvNu!#*0gzvFV`2J3trY-IbXs(467 znLwTX;J|{cA=e_-r=A@3v?SzEVuJREWn-SYO|#hD`{sn-ThqMF1~szp4u>fgc0rxk z0+Pdz03zmk9G3yCk znVHPcQek_kv2dO5JTb^5^X+a9ip#>E&}zjAl!Pi1v0%oVRe+^QMS;P3icPo1#@>E1 z^CgqBSSoG7jH2E)``+0LYYt`oRff)!ZLS#+VLBz`&LIdwH?Uaf8l4^6l$-j?95DsO zov-wMuO0W?t=M*9+q4CfB7a$R;X2)ya&6yGUxO(LPmThzE3Ag?clE=BZwjvqUt2!8 zxkcc?5&qp@oO0Km{VdusK+$&7KLbSbBsITSd^kzq%rm_wDs6zfczSAX2r&7V9p+Be z>H9h-IWh3w1Vur{0Q=lkPC3hM%g^ZkED|~j24CEt=H}P?K8sX=bCvzZlMs_#nKe$;lH7E0gweQK)tjYTlP1u7x;3jid;P$S7dtEgMH8O=i!@0Z->RarGLG*Y^YTgIB>!-K8nB)}f3bavSilN3|91F>NQ7LveQzJXzrLn4lsw&OLg#|GekzCFhr+ z>!#jc%iCP6{@GDzKVHPbf6OCj`%-tG)SZ1UHRDH7=NET_{xSG^BX&Nu(+0qA%8xQ0 z`kg|N=W}D_zo>{B%L*35>OA9q9(RjhZ?(5Tk3^$c@O@|%2mCVFeS|faoSJ)O{8_ae z1Hyl=?@8)4@VdKE2cnKb=&uOoM}3OkM7Q5v3g!p~-X=^^Gpk#@C~ z{^S*$?ML(5&F6Ek^qKp#zf3Km()joPh$`Oc_|{GQhl`1o0yrYO?*oN49{DK!C9Fc`Es* zyf|p#*OccbURmaUw~flw9oIGH_J$9mp!hRuiA!b=3#I&b#R=0=E60BZ&XEvMs;Gtk zlmMQ!XDmsgced`hHkC7BbI>=EFFxYTxpUom_G|_s=DLWARK2$M2gv_W25(P9^>; zPlBqrhgx_wy>4INm;LSKMb%@4r)J+weh%Iafjf;?1)ZbgS;U*iX1+Qs%+6NVBRWLq zNK2*k-nP#MBDp(wcZ~BGKqS4BEw#^b1IFXES(xM&DZ{fQ+lR-Kc1>^ayk5&5z#R(|0p<_%(3w zFW@T5FRF{tt>TER+B-zYic6apcZJ_MIHc^&?T+I1gl~MUJJKoZ{RsAit8sXkn~C$> z-oIUKa;kTvUXLxT^x{`{e|cA_a_Mdz&yNvNZXQ)u7C+s>KA%WP>lk;KOEjLPA{Dmo zH5%b*P>>bLNBa+$;C!Sb;T<>b9zL#TTN@dXTC%WkVPOs}q6CrLd1?&jCnMc}&=)Dk z+jta>ah@C!7^wAakUiWxZ=QIMBW~fDRl_`I+(m3Ma9((%6*9pbu zD9R)syXRT^p5r<3?vsFj=c&rcF;+F_Qs?U4HX5Bf)BdTmh0{sPurn!=&_sprRoTsP zq!DG8uCua}<08XipH+Kv-g|gts2;QE=RNLGdctep!0v9g&!1OqzLhxcVZvsaMuCVI znSh9@iJT$1Icn1HlsBiXemYrHQGdmT5m%FiMHsl!&akCfW6t_iiMRz>T?UB-Ua*ztOZc8H;+X=l#Z%$PAFxdbw99fhCH z{SOG7Jos<*SA*=n<(BAAa%WwW*^dtIr7YNr=%O0WYW_*59Yi)PT)cQ6%>W@-9r;Q3 zIHH2p##&f(MZ8|uL{3!0Rlg_9`Hhz+dGkfir-MIHA<8`V+#{3z^~^mWf}yqwbxk;m z!fpq2-z&HaF#n)U_xB8|hs3F%|FzSK7yMW>VdRokR8@sT{BZ#ty44BBDkQUYQ-6V4 z06>)~dxDw%WW^@z0U(rh`?g+iz15;vqNz?KxMd3`ee+Ytrz8Kk@$%)a6F>b>uP^lW zE;+o?>1I}zI*B6kbH>CDiNrZ*!8IX+4p4R|U07AUgJ?4WcK!&T(9wiU>G?i6#i$l( zUJkpkiNf5x<7=Q=|Fr!Isi3jT!Fsrf+bD<_Ze`7Hr#UNtpv^v2V_A#XvZc#cLqpo% zb7fs_ZqvQZW4?L+{#J!8bk6+a)LXx%JX&`9=FK)~ldVGgsmI~$n#d8dsYAaF&>uuI zY?7~PYRXKseQmmpY^^X6Nk2+EtB3zu9vV?tnGMz)va)4q{>9!WS_VG-S@?cS+%t@W zfKPT%9r;OGL#d0>I**SSIPapv#Ea3VW}sC`xHZ((%`FKAVjQq=N^Y}>29N6vZ- z6?dJgP|t`mnLfKvcSHA#AF`Z+evh{7Sg+7?#qi;4$5p-JX<9CMZqfa0=XOE)cOy@Z zeF0*bS26A(?(QVJoS5vOtf1LkJUtZ9S>Cp&Vr%vH`8wVDX)oHp9!HOI;73mEh>~>{ z^kDtf92Vx-sO2rzHG%xz1Hu$?dqhsrV~|nB*;ct9ELTj8t8AlkUB}oHVYzgIcb?v5 z4Jj;!)wh1yJIya-}p5CnWp{lz@ z;D_+A)T!lDKpve!^)%AJ9CpBH0og2Evc&z{?9u*VJ9mPUeYDxO{MO%=O)FKkZd{@9 zk&w{P4a^mysog*(z0>=UfgNhNN8{;g&8&{1$9zSNMg!MR2oK85n;M$|ip9Y72f-r9 zL_k}8;C=|Be1nCr8%t6E2NVw{+pq=+fuI*$7dOt&RbLCjBPa+ZXx90a8(b70Q_B)< z70Suu?|jx~t0)8b&6!N;xa_SnTEmra8=jpTM|DiMUlM5J0BOM(Qqa01oqJ< zZFBg62gV;$!()5v-3#4{OTU~gd=|gGR|lZepKA2ETe~)>&_qlAD=!Bgsx!`}Eht>S zpJp4QZB@nMN4(XWKIeiH`sUi3ZC_C`90(lCPK>K}?NkIrGV1a4xtFWTztrJmyh70_ z25kxMh{@QRI%E6>BdB>9_CZaa@HX^W%FmylCUHj=QPoRw24a0pul5^y;t`M`^pwT4 zUm~SI_WGZ4=4!h6<#0IVOeZlGCjH)2mmseuTed(s9U&rzx;8P?pp~P->)# z7Z17ljo%TsDkGAYD~S7p_Q9sMm70;s{gofnklt{bs@%9f?MKgvjzLM=6x|Qsuygkv z8{C6>0s_>`DydJL$L!e%`XWpFPY>PHZx!M&Wj(Lk4OCTCeQSPqpc*sFZrnF6x$M$0 zS{w$eN1yn~<>Qok*xh~nlgh8WFG!6+Rcp`p-Q`w0sJxGg3 z462}&KHAIuvb-JN>dMFy%k84Lc-*)yX}F#I)3hSBFJ{?|Rr2_JAqBN|Cg+MIZE$tL zok@*_^*z!fCdKpA`AXgB>jzPef9Avnj!JGDuQrzp;gG4W^UJA#Vk}8%l z#=~xzm*wO{*2p|FsNJNzG2OId6v z)$4G$a+!PBcm6p(O&;Ul!BfGPQrrnP-6LIOeODVwz zbbpN7`sQWNe%v$k3vrZ1qIg5l5D1{Phep1y$JDSLddG~ii<95e_LBhAk_!y4$jXy$-Tc98xz?wh? zFz7vO4Byw8<7~L?MW#l39UNs{uom(dT(akHJKc@1Ss?eQEeLywM++2_L89v#PF4P< zKNKDzXtCjgnqSpocABpU-u@@*oHp%}w`E^J3JbyckO=f0H!i)(@OG;poV_0&9VtVs zxnOyl*7i$~T{J?^DDhH>C8|8=Oun3KkvsF-`=4Zyh`tHEPX<2HD;66CPyt~@cDSX& zXl;QbE5*grGwVrMq<_gIkT*HDJi;EKh=(8SNnNG~n^Esf(1U zndLaTf~JKV-<-#hkanr90!EjuxFE?m*?zhjBbNx*0AQ0MvN!bmx&-;L1Y=BKAa03@ z(L5PZ40^`Aj6s{O>K8AmtyxKM&otIh%;afJewPl_fdz(IkI9@iy_D56=`huP~0D%o(%bRE-v@z z7=d8r=lNEprV(B0t2VjO`K9SCmFW_OaOxKRqBKlJpAU53lzf%5w25T}{=))Bsldfh{JJaj3V<=L{1GTJ66olJ;%+(lrr4mqGN_dw{; zt`+fQkOI6i&`?;7^j&5gd;c?9=^l|J7=&GzwhO$`@BeO)p=~PqouDU{h^6)f!g42R z-i_JTbflJ|Dr#`kcX=cwP&05E>5@1`gx0 z1et@}#ALYW9FwM$KLc1|&J6PUb=No-hW<04DF#oO)rabXUDYG{O!IDJMy|LA%OXV- zNiAEl7ybl!2>_2LDlkOPFH1{}eN7AZikm>jqLh@8K_M#^hhtY}gMM4qyp|ZEI^5m5 z&SzTlq>G2{LJ=w{4Zu(YuV176-_qox2;r$Z8~*o&d;VsEt2RGHn(i3#UCDRD*bM$(Yi4{%3wZP5rh*oU85=K zzBhTd4coYI5FSrS5g)wdFi@C(i&egQV=`i2nfZt{VlO&E-^9Q2gsWdnKVJA<&2U?S zhUDC5$IQHV%RT*DP4x=N&lRW*|8D1@kkMKT;?v~uD+t3*!^j{@|6{Mof=LP!QLZX3PTn(kC6SjrtCK4;|~ z*y>z(mID-1y=-4FiM&|9o{Szobs5r@haUZ*?O`6XgaeBni{mp(Z=ORmR|i3J3bj=q zw|}*FbiBsb@yEv_(saC?A~Y8N2}ctRz6(LtNURL0+RLq@lL|Q)y!c8iF3FmN{mfv) z;#^q=i&ThN4{A{I9`D7Qw@QDYG@FDAG2%1RlDPo#7tzgqM@Q3?ib`~gC^;!5-FxoP zcbI}SrNVm6Uu>peYhH+MgSvHOy$R;?^kg$O*~keKww+(-rr5rX*lIvN1UQz+1xn4d z64E6$@TDbsTZVheJkQSqCp4jkml!0@7JtxbWP#a}dKp)LZ--=i9p8E*+m5*^jW|;_ zg3+k6W%OEH)^Dl>n<%mmQ6e6&?RJ=<$@LmGzr>B=g-$vZD`=@=Pk)T;uQ;0|nxA4+ zJnaQs`@V^pS_jxBbldd=4CLBoL}im)G`Z2vD13rY1-Y>tWmE-3^R@InZm)ZgPX=!w zsxX@E1w_9RktmMiqdtNVLu_0H0g}z>cv0yVC8YkGJbhu;fmrzU$DE6fIh|<8WpWJ$ zwGT3FUT4+-qpL^ou(+a~6TY7!D;W<$+6#xXTLJ}s1Xu+GURGT>fa*4R>8FW!b=-Jg(6J-w!eovp&YB|r-#78rxP|0>vvjXe zJoK4%NrAY2iAIwo9vtU_ipoSdDV^x}xz(fyNq-QPCw3Y>f1Id1Q&The+fP~zAJmqd zAsPkAgn--?b?KCgt8PE@8G3b`qF|IL9P&N><4&EsHo35@Y%P<)#8OFl3Pv(DC%SLs zEu@AA7M0u)c{30BdvUf(y1n{dn^By@8YodbQAMDwi^Tu8kTMDbun7-4k<;QHFi*Ml zI|Edxsi>V9gS?;T8&3Dl1i#$_=RP$>gNV&f-@y_6ttgEewo)5Sgpm9yG?M(NJ*}&f zvU>IJAAupdhh6f3!x=e<33uto+_rlYt=J3}ysDg1US*9Z!2Wcp4b zo}vafLk_WUclPbW z_JMLi_0^6?e4o<4!aCqT@$CiGwo|7&z2#oYg^fcS5?63Fz@9=&C8$r+9;m{|IO&X) zvWEiJ6@45PYWW^3OX!5BySUgc?sHuI&5el9WUr9mYAR}W_)>C9iwqL_QqjP?x88&> zf{~(pxA`wQ-eYC~O52Tf?c2Ot8r}PYi?uaY6#U}RZmYmt(C)|=pVCc|SM)8`H8Onr zb_*gH{`h^dSC83k6icsm!+T=$R%qEKpINX*JmhGn1Yv91q>1g@-g&iErN#>vED$JB zUa6k*nJsEVmtDeI-ryHYo)%ICC&DP*e>4841qi8Mw@x*gQ>mzfam~LnIO%HSS2G%j zOkJ$Mx6@k}TTmu#>TJA=Klvmt4=YpKd~N395Z))Ac9io6VCGU`)tL@bWS}>)>F~W< zV6#mjO}Y?(v4i$+jP(x~H8xx9EGX z>C9o=2*o>=)fLCb!X@jkso3-;+%Xn^F#y{=-bVpvi&{$dG=OEMZB+C4Jg@-npAm9a zQ0)E%l%~%QSUsxphhku339zER14C~D$tJEUR?}=MrEiZd3+JNLiECdrf9w^xskGR~gri4M++JNnT|CeT&_Ziz!7Mph7Y+ z{d*XxMlcNb&Um?zkR|;;1ne+M6p`R~pKWfx7sZZ<@#%$8s+;r2Aw*j83Pt)(#p@3g zNJZeVH!AJmVP1r|0ntErAu^3S?>bw75Lh`R%3{^7N_E>+U%$1CID_1lno!KV2uxT( zg$9N}peWNg-ttb&Y{k~Sm%eg^%rT*E;acZB9j749Tnr#y-2hM3RF+1DiB!(lmFo&1(7+{=3p9cqTM`H!>nk@uAI%hn(Z z5S9_qhN zCx3g>c>zXB`qx*W`GQFylB~w&ztY$!WA2 z04fsREO4noLeqEL0peZ|D*|uj(vv4?&*v5sS&dzhAJV!a1{);Tc0A=_UjuXOJ<(M) zq5rMWZ948V(|V=+cBC;SnviVv9&r@&Hpps`ct&}Iyz@Rh zLW=)yvAZ$?8v~B4Ljwbb^F_b_Hk_0=2y@DiYkyb0KaIBNV%0EWt0Tv)?;P> zv`GdUUkyWOU6vsH-UcofsjsO<_Oegja*7LI$r>z+?R!;gJ(W!%kTw;$qb)t%PNPeB!560c{aUILRG1yq6dEP;BbOmgqEeS!?#T;5(qzFt9-| ze?sCM;Ihs4=-bppOHsC#RB?2*Lh?7pA-sLN4DR_m;HJP}Oc2TSQrOb6U&X>KLltN^ zw102@s1rwDd5K72(2)a9Cwj;#q`w^o8djQ{u^gV3%#Aj!TdxL1CsJq{3Lw^10M9S~ zor4csN9J!4oG9s<0-P~*0-({pymK>ddReIaN+yI2k<2)Vlf85czKM=5l6#4)MZ`#) z^I~2C4J$j<*^=)`*|#j{_DSdlDa~YQb2XL$g3;|<$<0lDu5!STAgZ_OXJIU)J))p8 z=LUqMXbHjIf9}(WtKOMf!F(Jb(9;Kcizg6plmmA-t2(4|UH>0_7_3oS{cCq#vjI>N zEeKX?ncu;iLrjwIq$iN#nkAuBd3{Xq8>mOoOCa=QlB761@3>*AR^X$Vpilb3q1d_R zJbJGNSfD@*MvUyxxA|$-onp=N&42en#huNR1X}!70SM6=$;1W(++yVh_@e$d;k?XS ze{L-o{uR(4uQ#_k$m9(1GGkMaf|`V2-m63T-Oqd;L5KOh0U&zuAeG{3%9Jgnd z2nT6Vz*)c9jRlO7A(+Dnw56(-C@xA)!G~DJOv~#uxpwn~s+J*zbMhPduCcVW+;UJ+ zdu48RkVeImK7D*_zwOA#Xul$EF3$vRyd z9yxLZs8Vdo94lXtCCS)oqS7VAmhNN5ofz#OFRD2&UO3RgK-^I~AwocGhmh+qj zU5O7S;nD2#GCW(I43{fPPMHLRp3RQ%QLPt-`HbUz9a;b|)8@dr!YmSJJO6@FujmkD z2A;9a8`hgMup^hwxGr~IyqNs{*uR0b@6NQMOX|$Gh+XxPKy1SyyDpw@B?>Y=VCh?W}WX zc5&TH9e0m~8ds$tFq<)Bzs-m4jcxHLNEkcz8%xrc{cm*{*1A6b>T0-NCFSD*azr`j zWa+bo0ucFv@!7WO%A*Bg(_GYQT7nq}E%`GWi7=Lt2t$Va!}pT%0L%`qoooHI+L%7- zdUX$9&k+BwKHp7p| z@bGnzLagAuB$p~sWDWBVVaHokKMikWWBQARgBd{UXi8nm3Nu~vS0Or=lZ`?Z!Jnj9 zyf1Id@27qT|8!}`0YZ9A>ZwyQ z8xfi8W!}9wtr$izvB$BweCcH9gJvJ^xq^t0E^oC6%|JD-SN>&{VBowSn-kRigK8H zBx7xZX5G_g7e6Bo<1+V+7nQNhPq}};ja&ubPm-2*Hv9kabRJ+m_wD-+MVSeiQ7L4E ztYo$n;cnO&DcPANBcr7Sk=$NfBR^!pagZYT~+eL#RSfKyBjc9>(_!z%Uym&&aJ4JHgB-+jG|I_gy#mDa$JYSU5Jm zvy(e+*v2O0PdU#BCy2i`aD)yh``TuP=b^Y>4Z7r;Vgr+|;@#0&GlD9Ex|5p-|68CQZwkOk9;4GG~tU;d2x&vd%9# zdEc}poK}D(8LUwpB9%~W)3z->eyac2go)$Rgll918|n#_Erge5*=c9Zb#LAhm}DXG-t>?oB9upqK1xIwpGUJ7iT zcA9FRib{*hmUamKp{!pQy(oea9^_3ajcPftAnOEOv@p_- zNxy}aK+@jdvb>cD|BY#}WN?10oFke3Fg?q;+EnEsR>p+m!}WDe96wH9Fy1YRsfIa2 zs}hi@IG)lZ{b%j-B1?07GTKM#dihV-?$FTA1_o+0`!Y9VYxd#z_&}g&+qdT~UTj_B zt~+(_*e(Kt!||6{j#w%|=>iGc=s>US8rs!{-yoGW-&2Y@;l`yz>$CYnoFWAGCw{zK z7|~_UETRjCE@nd)V=uOFYbp=c{t@)*t!zdk717E|+aO(UUY?i4KY@Bd`K0z_N+zNt zBt9sXt|Z>v)t!_gX6W3y0o4n+FLdo`WuMul>WjxDtOJRjvO!!nhSIdBVR-VlX5(Lr znu{Y-IQ;UG`P!(0@!+Z#kt^0uG%@1Y1npd`#_0q?3!4q66uNI(M!lYyoh`Q=D{r|! zykeO>INxX~2J8P@odT|@h!{%zW5FRmEHynopnres@H(GAe-=#%Hox89O`17#yl{w&{V|0zvqlV1oUz%BFJyXK2f3fS7+Xv!~)hGGAg>i-0oS*%7BJj zvnpJFv$f6-S~DL`T2EHt5W=qpX_+3obAx+MN0NmJLQdb;y3|H|Z82n${+J?enPCTn z-R#>^p?5!Olsu-e|D$1PbI(>$|MQaU&YA%nh?Njk3sU?nZZIaYEtB5pt3w2%BXkg7 znEd>DJF?}p$p#T=fH{I7kg~LjXCZ-JHpVgK;M2f4*!?pw6w}fPkL)Yg3}GD}p9(tX z1Z%_)O7cLyJMGl8maj6mZYc?!E4%Leb{agMBTG$28=ALR>YFo%O5Cer;NFOczhfSeJK`;}O>JDwb=F$6 zEV9^-6?%&nrg8l^pwup;zb++D3RGPe%9aC}YIZPOHu81u{-tt)N$Fx^FWoc&bKi#$ zpSeuCq>Be_md#?xH?`z;@*k70cUzqCXzQ0@49vsSQXa8nJ^E5m^x|cP3Nu|7^&2$k zsL^c99BHqD8m_#)wzVSFxg?m@t)uv^3}c{|np54;9mU4_!bx^ujRpK6>t;P*Xvo@5 zFtithH9wl^U%!4mTU$7^R?^X?EfA!PMmQ=O^lS9J!_8&Kw_d zC95qH;D#V8u}w?lLyPAJuH9q1w4iSWm<{< z|9J~lthJeG;^pPwifR4>mr1JKS`4);`~00NwTZaKV8_A5Wt{H~zN;*Shagl^x?{vO zxXEw+?3vH5Tt9||w+;+$0Ui1BwAMSaqrBF8^)|kG3V$S{uH0d1oBm+-HC&MF{838TLr2SrhI3) zVTX#R2UycYue+C;+l)_Vy?; z%zR(E08_|`!N#1~**qYblixUf`YWGSBzs>C1gt$%FrEU!uj^Ecm zwxGr_M)t#tClHhGYI^WWZR=@lSwBa4>Z%wvW+f z^#YW_9~*7<27gxO<%v-=Vo4uvdawL1%af)v!8jBj-;@S`)t(mE`LtTmTrpzr*ttjh zOu*sld{eqZ4!yN!eqb|YKXTNUk<2pMMaZO@no=tBM?a$(?6Y$Q0X{kGMAr-MR*BM zpTw1?1~_VTvtjaWcJ`{cd|Aq;qo(l#UKC9gcTiL~uX7`M@2bAJpKEsUgF45>%B^S1 zcP%vPt=2GI?R98oc4_b?ipBG_KMCm3=#JoP)Zy|Nn21WmiHT7ngCY`V zi;yd+-KZGcenpz{BRK@@V2fRp&Ep@R{hBsVJ{4sPkS!+h?^+&YGoTM4>Vd9J$TH#dEx0Wlw(P zM}*fmbNzLhx){fG1qws}5b;5BoZC?KKn)Q(%`xHbqeuQ6Jxp_LB6b@!Rad>#K(U|~ z3jXkiM~T{umm0G?T`1cI29b47c-7QdV_5ZqUCP&+BX@M70Tx^IyB8sx?V#P4WH@+m zSjC&}k9H8N1OsPEWILi?TByTw^$t z|3Vj+CRoN&(p>*iC61hc`BE6L2t@mfo-PrR-Beq6_2a|$P)Nq!)lvX7aw7Qh5xr7V zHyjQ8#Zi^~O-wrWIngkAqDtUwue7lmBNovt9_Dd#pjqb}lbq4$Sv@`oEnbvK48?St z;U0#35@-D{cU$R)l35E*4hYcEZv7^%W!5x~y=^7RHnPz%EJJipO zhjEnDe!g~Njf|6YFUR8Ie5s@fxF)}^?AyEdQuPnBs?VWHD9|YaWi_yDl>6Jrt4#^n}cHG;>@W$7;4Hh;nXkOlFtJg->i6M>xOk_4qe7; ziCJ>B(UNW|>BAI`Xwg39XabKpBV~;isAbL;Gj7&%f{y~#$LOA6MQIg+#^hjBK ztJ1*z<9zj!jRsx`qy-w#u)l}oE16(#JSob9y60?ktS#A8V;p5ptT`t|!}_SeAY zp~b^gT!;U6sYzN*4B0_~n^;;A3y7latiEMT`uxqka#qNrVg>qJ@AI5gs*=~ZSVOL&@jq!@K zq%Uqp^)nzFHFI`;H91g^0mf=4zqr8c2F9n`eS5w|MPZEYjx9M0X;ypV$Fq+Yhke)wuH*%_fOpVc1H-q@)Ad7toWyo#%=$Y(sYizY zR8IHT@D3f~n*_Ibf&KclfvCKv1+w`7oj(t88m_2pi{_XPPr}QMWSl4+LDz1MG zE9q(vB`3F=wZ6I)MV-v;v`jZ&f7O2{>gO~F8e8GP!w6HLl65RxMRYiSieA8Owz+ZH zw6yQP+zQGCh2l8!6VK>4_wfpI=hJzZV zANE>#4(D5rr|*|5I_rt6vO!XY+#`Nf)`Ji7_0HSwdU|4gjNihAf{u-7ntAS(?;iK_ zU>+v^YE%t!D_K0JA6mFzjj{E`(s{iV?hpRt?3KI5YrScoHeA22yK_?n2qOc0t%Jmc z8qx{VH*pJ1F16z8z`hbT*DqF$xrTP$IkR=p%N0pPxAkS?H**t&20(Npdf~p*lwf0M zWR$vcklmV$l4W9S$Ejno+Cu6)3K`gC?8o%)7AnG(*XEV%*sf%}&8R3VHRv3`SI(J?VnPRlL^aGTDr zZ|LM=VD9txSJ?<^WNFpK6w-aP;=LHE5E)0JzZzT=^RKW|&FgsPor>|GKE@43r!~pt z6m;*SqnzRD(WaiO#>w(yPQ^z{P2IVU!q4RzLTVNl9Wj1#o22UcaM!K{rwA*&Edi9! zGdnOMTl)J6#Q|kb>enL!tLoBdB-@kOtc%8y=6L63@3(5y7#mxL-k#eTc@O6&ysoo` z_dKul|5ctKuUE&!#*TLTs_ObSq(3DD?=je4(_3fZk|oy|BpqTzZrAC!Qk|^@Zf@_s zeblIzrQyBZ%WrC3uckr0-+l}FGQ;&j_1jmP8?s*+)gP`@=VV~o?)YT))J0|c2#ids zt-}j+>TJyt&vP`nvivL5XIAu8MoTnM+nEjK&)6~r$Uo}vVb6+Dy2?RUIy7!Qz4fZb zHuY9JO=-M(z%8xSxsBpG4_Wo+Jn(P{mc=Cplu!CBAN8{Zu_ z2g?q4ElxX*E{?J%LGkaH!o1Npf2kO;UII3a8I$9~7cQuSS1awmUEeQb&8q{232zN5 zUl^}&FL@p~^I7hYgRPay(nC|GE?TfatRC;Xo!GPIp}kV5XX}C;aBRh6kc~%$JO8#z zDkxkKv91Efpbz*JW7p&v@n9Zy{!^BXRc}0fPQsM%^h;j)J5O~sT+;BX6%BBA*P0c} zCR&37BKVub;X6N(6*beY`vE%o;6bbdN}Z`vcli}zQxX7pLaWSqTN1f6xArOFFF(pcFU8^ zo#R(d;SAE|I_sa*iRBRrD&qSIW++?t#*C};0sD~#4g5MPt+E<3=9t1f_j3?k|}?U-jnL zIse8GipG{o-&LlL@q$Z3(2(&V6QIK>2lSz&uu-cMW{eC%v+S=dL0n_F;g_M9^1?^A z{8F#Yf?Yr#oYBsG`&Mml*2OstClxY4a7c*wQzx}uaHF(J8rYWV>W&OxghIsp!^av# zv!rn86<;C_zddI{y!I!mJ^T{{XP|wUGsaM_;MudL^}RhIIRvaPq|lY6ZNhe?hqQX| zB?v29=Fn}I@6(zFxaneDWy&ISRviZ_gm~ev7vQ$0%gRPkt z0|ihiF*d@7JX*g`@1Fl)^mJM^E<^mXr0EGw^M)bpl>L(&m;@I)S&T{ql&K2*?ab8Q z&(vIpcdp}@V>feVpkVkuKE+HyVKYk2%Ad1T`U<>Tu5TAVfF<`BuQ$BbF#RF)n3xTt z7}f>fTyz0qP;tt~R8vAXMQJ_uC?s2jOd}lA7K?Q!_*YDPzcbMbc{1QYBI-g1B7}U` zP&3t26KN3{QzbQg)1vle-u3b6ndJg?LuMHa>B{xZ-!Q4HCGwJtTlb#%Zk3|uJrJ>2 zW(Fo`=yn`E7~G2d0gYD?a0>iaYV~zr7n5g3FxOTGX_18lVW|OcTGjWi!&?n#lwS7o zr33so@$;Zls$vPEC9!hipcQQ!*9Y<^ z%iMw**z>k!*QSqUh%kbkilVhw?>)0I%J*a|ZJkFj?n}7)c-R%g%~;WXiBR&c?dbIU zgx-k&(OcAKR2A^^mhn-X;9@%z1HqV&OF(csn+ty6Lx}$p*8^+C!isMwqdw6TfLzE% zdvL=K2F~qhHc3j=D~0+_=TDZ6wSEQZMrXxlt>s&{Z_k2S;4e;+ydKAhaN~z~S+YgI zW^RK9m*b=$1lXo|`cR$B0GnZ3bNKaGmK1|^shjvJYI!iZp%)gpaAi){h`TeI*3SNX zdUn>bdQk+rD;C0y_u=5uNO;>A9!2_g~5_Q<3UoBq4>m;uT%RNw&F4PdZu=3sDf zZ9kxk7Q7gpLzU3R0B}sEF2!Sq_?NTEbRVsDG3OL|M{tgD>6waGr=N2b5$KLe-=KZB z@6&e7h`Ahs3xh#eZ@YLQw6yZ8m^BT^BpE+Qi0sn5zMg@rjI2i7GHD6?3X{vl;( zF4Jl6+_DU!^sNWY&m4z&0rBh_+>JiCNX?w(^y#~Y%%{c4lx=I?bhQm*Z6mufU;chc zvmU)sl`sn+1XAxY*q4Elw|712y)3oOJG;=W0A0=a@ROS&tDgx-kc4HlMf@ddYA|v^ z1EjVxE2NaboyA)M*^pPlhYViqcYCfAVdq=<(Foavu(&9BqE4Y!v=u

=^+}O-OCV zS~XuLhg!TU4!&cP)oMNpNpm~b;{K|G)z0WVn*mNigD!(qh!J1ERpa5f`s3xAI z?A$5xRXUEEBNI%T#vzH99eWCLo!6~%f|${Na`jr~z>*P#Ou(QP$b0XH5M`6d@WCtV z11}XkoBNE zT`_4p?L0V11oysHw8enl*!A zSHw2m#>!yVP#s1Y6X5ra_3i%t-8-GHKgK?lu9GPOdpSfsqCI3)0n0*RE3(&5g?nRJ zHnQ&3t##&cHw0UB{<$={88QuT8tgRY$IL2pvYY&a61;-+b>@t=97w{Gbt3#*4)TW; z%6j=gY$PtWR@Y_kFdF=I&TX6ec>_G>Sr`2kO(wn=SBcRHiys^0t?>_1rc|~a;p`41 zA#IJ&@~xVO@lHerD}zGuEdywfFmDFkQDn!c<*dv?8Oyw$IqvyG7N~V)<%M%b$u?gA2 z%eq`Os)JufozR=>kGiOyp;B%oL4~~JjqPlK{z_E8mckH4%mQH8%FfxRXFfYxvA>md;@CqZEJ-<9 z5{9I=6tSE3@lmNlA_TdkwD>R(>F~2>&jgmDd&-)iq1EIdLk?NVPN(A>isIR=2R%_!4EYtO}~y*AP6<#Y7v(B^;hNFDpErO=^~0?HZ;umT+I%ybGFiEfk) z$c&LnU@`0pSfHR%#WuWaoY3XJf4H5Tb)_R;W6r*&CLcJ9{}YQ*1bVaOsz~>83oaXJ zSY*-cTkwQv$1k2oet=?9ouLr~o=u>2lA_rb*$h&)?Y#l7DFB2JOhe!UK(VTwt1Pjl z-w**WP6E*hW6FaWiHj7DX{GFjFM6eFl0NsW?w{$`sMn5l`{^_o%3AHNYSc+W?##SU zL^&h?ITLCayh}punopWMISLS&!o~5#_Mq|P5++Zk=$)WPS-KCtd~J@wY>e(<-TY!c ztv2kkVMMM4=a)l7h1!kgRJ>hztC#vJkH6k}!IgocO{Da|;>(XVH0SBO&x8(1UffW+ zkj@bo=U7u7115MwD@Os+n0W!W@KTKU#f=!zi6OhZ;c|Vypyo7nY^+XW(Emo?_uq`U zU2u7Nd6&Iw=OGXI_Im%)H~JPja2=K-M!`yR+#HQ&$aR*{Gl(}F(Iyi?toa!YlU2QF z90lE=aYXxE{p8RqVj%3mdN@pW{4a^fTOaUw_HHXxAJv4%i%EpS^Pwl(XEyZBP?p&V zuUlq0*pkASGqqpTBAI=252#J`<5kl!r=e^l?4A%4A`87cY{pAGVuKPup)XIYs_glWU0H5YDrv|Vwh=`F#ZEM7dqb?eZSgg&y`U- zv#YUeeIs842L)|{wVyX5@Ya5Wv2=2Mpt1hTeV-rlQm;BDFsU-9vSlXR2xR@#`(k-u z>(;H~8#+Pl#j@j_eO$jGL)v3cBFtRm`#SGJRJ>N5QB{@|Z7`LDh>I-4PP_gvTDvFd zEtvFVb0>sL{AtrJRnSvcSyL=#5|lPo+}C;vz{)zqTWU3-PJ(Y&hi95>72J^0MT$Na z<&3>q?

S4VUUHP z2?Zvh8d?G21tX&ojv_Wz8b$GsVRfrGFj=cV&I)sabV&9YF;p`3mkUhLU3&UUuPYxu z9j*`%{W5YKMxl!;KJo2r!Q`HBH;Y?CY_fEnri7Ss`6hfBA{!F8`6aW3g_EGc(9Eps z>z09&M)0zMN9X8`=TZ^U0Rko2yPVA^O_`+h(r<-U@1rdxz9VG#QR0V~t|Z_ZAf(K$ zK;MXvfy3B3aV=J`9iE%74mOT%1@kLIh|{v@pL2=~_&1^Jvsqk(Cs<7Am^*d<=j{ud zU-=sv`#M2%2R)~(U@h|>Y{7(l2}LS>NowjP>>;48^(IctQ&m6E#^m`#7`=pyu|LnA zt}S@*0Kup>M=qj2?S)Zi&#p;Gj^I*sh?F55G>}RwqqI1zCe7=_rWL)!iInke$dP3d zGCZF{jhb-&d@3mG!kjZrX4@fm=J?dEZBW?@Ad)lDqo!p+%}Hh`Cu|)ILsa}_3^WEa zuNo^6gR!ePc}l4ym9{8+8=~&>vo-7JI?aRL%k38Ye2sqnQmvv#P3vc#u~?(lZn(0r z!dI`F<}AB5^4daG7Dq&cLxd}+-o1;R@>Qu{1@lZ9*T!J`m6x-C0f2DN=e|Z0#~_dJ zCyhc@EE;pB4<>`DuD{!S?coyjm7(A{+XkUfK&yT%ttSFCtg=U~LW@y}(FAt?z6Yor zJGPpU=SA-1?Ic^gcIVE~g71&dFu*8)Bk*rd$)+ilft4$Vi3J6NS*x`)&{Cchl9N*hCW#BQ%+KVfHR*JARaY7c1rwJK*yTEI-s zzX%nrtM9y{+gz*&o7E)C`b;#GK3N!wcMH3lK8p|A5!(@(ssb3ij|cUD=T+U4lwOh z`$Z)Uka#Ll%pUffTgR0G<)aL&@37qe$>>Mx8bs%rBM2`mUb!vg%+)ua@E9C0%u)12 ze8tnP{o5;dzg@_$3CG53x-Klzsl$LT6{rRiN5}TQE82ZN2!tckh!gAe@I!&^%7j4I zi1@Lke%UYxIYUiWH3=%P3`$n*7#a0eulDSyZdh!N7FQMo?5~=W&g}4|b5@|!#VIo> zN%b!;IwN$WqH#@muU)+*&CiM>2g=J*We51|*tWB}dA*~(z?tE&TX!eafcVpJNvBUS zr{N-H#des#BR1P`FrwJW`Q3J3anuK`fMIIfOA^QsQCw%~mf@_~i)ZIu zEV8t%+LX1v>7$2?-I(p_T79YH8h27t&_@(Jh2Ol(fYJD+FIr9MqhY$PME6nso=ab? zFF%l!Wz{cPtLxtp+dqMP0QV_%^I0-!Z@h-L@=kIC>4Q2#AX&BP*`j%Kt#=Kdr*EM? z{Jd|XVc?)1{q7HHLhMZXo!%B2Wj)$9P10X7qQ|q|IT;g`g!h+6P;+v~rKw+D9p%1@ zus_sc(&vcnc4yv)KWOB!V#Qwz&)CF1kte|^a{pT;wVs4piJty_znU#Nid@Ijj)TqK z%oUu1n?)&P>cW{$4aS+=*wVTpDloK7LL*PAr~EWm>x7&Dc7p2J==Q+le`KK4dC-M>PY=;0D@ZVXxO@8Biq^|Jf-S``jA3Hi>|Q z-I$UxKcT(`0w>5+_X9!kre^OBEqaz7Fn*t9WZAS1`Qtc@lI>_DI9M~Y2~S80?bieC zzvX)6N6S8W^*jG7CcK?{=$$rD_P%hDPwS7%$ZMp$-IRBIXpfHLF?+w{DemIRl*}-> zV&Tu~*R3OrDO{DR!@3ad{mV<}iX##)gikODA2E9|Azl1=l87XE)azV;zVbJR9GpuWO&OkY|Zsj~p6*qec}) zqud2_bqBCNj*WN-%ns7Bgivv07)K_=ubs($7iM1~LxGSMhjp>1<2zC%S%7+Jpw~L_KN>wS1SwK}5=w zs#Cn7vF%d2c?pBYj-=?T=VziJEUM@hg^}TgSPC*HrMU>WIqoDC2x}P{G?|~qT!cE* zpnoPHiq}_X{AJjU1BqAneEEq%0^quYj9U9Ixjm#i6V~Lob*JahQdVy&LdyiT5qJM*YvY zt**8*JCvO81moC>B2;c?_ifIzucQg(%(Pe}QG;YdQwWlMHZw`F`y>LW1AMXP z+KP3$W*t&(>gwdXE|?H}A|3rV$xDAW}_ZfctDxzV|K_>m7f`=2XT_YKkS zSqG?wMVS&Fuf4CY3T{bCIi-k{y1D0rJWc!xBg@U2zRG)nkVHFrgzBwhBTB=Z)4Y{S zjiW!ez34e-OUMeBgL&;M%sEFw+uW=Q)dQDk1vVWS_g7R_X+9GaMTxC6ik2A|c4moY zhgJ9D+9>wzp74GlYxuuL)~zVHoxoV{-lZ%H2v0X_vNQgCsBzaFQ5Jg7f^JwBhe_QX zG%hlsmq<+FcTGW$*y0K`1ScWAV<+s|C=9sq_P;V}#Rz zTxXZxEt@sF0^A9)r#a6K8eFEq=x&?%==c29KI3O>mGcvrReC9YTL7PcCdZlSkD;$d zu*^AaE&-273>3OAY#)F6KykXpy(cly_RLeTWbyG)SV)?w6l_>wX|i9_r3;qJE3W#r z*f`&cZA6zAy8I`|u9!GL?ubl=?&>}7X7;vDV_sZwKX7k|o;!|tP#@@M&d_G;x*Tit=07zfp{ z-7PfyT&t3`En7Xbo^Ex-$wiDvF`-AXf=9<&I$PL zup%k<*)th7yde{6i zCy9_YN8!-;+l#+O*=io?J+9=arQC!_p~Q|P9R{Qm9x@qglrg5es$bq4jKDD<5_GMM zFp^=h@J?OoH+lO%Ex=d-__;3}zda2${vm89OD`#ZlgF!HGRy(M1B*pWzc+iYy_ooF zUFyoR=NOgaSbPp$7lVBxFSb^B>bra4B(Iz8+FWp4YpgCavk~{eOi7$F^8Z2)gMf^e z9+{vE>xp7PQJ|DnvrUJv1FlvH>p)$tWE?%QNu-zQ^6TA8_juaYEA6+hRZgpJ11E(! zyFYpYsZhNCQ^<^UjisfY5>V(6fjB}U(@U8qro@kEn3)?!}G>Ugq z9banTl@Qk6Wtf%yK7VhNdLE6sUAt=Onx>`~xflu@vStV9A z%%B~SkkJIY%X@b1vOViyj#O6;u(hA_%|#4HY(%tv_EA49$yXT0taz3J93ny5+^^da z9nS`FX&OCMp{OhKXcs;EaqfY^`QtxX5r2RBp5AQ6rmH6gPd~jRM$z8|lwGQFRD^OM ziK7;O>YQ`2)Jr(%LFsid|P;lHSCQId&NIeeV@c+W6$(_~SLC%pL;QX#fI{_-`x ze0bJpGt+`5t6qJY79MhNSGby;fz@6jj1&pe>O5MjT-sUtPFnE!>c&aV)k&)pH0_Jh zmWNMYs-mvmXIJ8cy)HeD{b=JAesU`0Y`YIV0`)hF7bY}!R+UP(tAjxtRQu{2-Z4q7 z-=IN`i@Z#io*i4%df?WWm>8`~qa(AD;~+lRL7R&+3+g4ka%qxml>DfzgK_xL&|Xu& z+wA>0D&oe;t=wyuYp3Q%q!-kjF1J)Gb(wFKrjs0rzJJvp3Md+* zW7YdbR>MD1hj4od6oE%Scll&LvsZp9h|;N1(2OM))QXM?CWobw+@*v6!OIPvkKcF> zB;3-+Bujm(diN1qca|?3=J{5M$0p>jNMdN7DnT=pE>e5rahaY}mC(QF*|GAWf$Lxg zyV87r<9W}f7vsRzgc0KM?Z^;Zu`+RInxG@$c2at-<`a&+1&}Q>?ZoHeA=Lgko`wZYcBa*~nqF~luB)r)YW@|ExotwD*SP)${d;Q-_N<=rbKe{{w;Rj9 z71y(vq#ZFnu~+Zj4QUmyw$WFj(D7@$w25w_E&9ripcJ>QBu4*OpX4^Ct=OV~jP@GU0hsF(oTR9EMTEk*qZ6xV7Ac%c zKa?HSc*DP5B51NC+n(y4qegRblmW3aaqMfD@UFBd@{da;~~RuX1>2$ zT)(+)9XepGPNor2Z6_49o^PI^$oTxO_me(5#&3wLH(xQ8g;)?hv~=EhPwz7_>nIlD z4BGC{avQTKi%AzE-=D2pkvL%4k|l>etFiE2zItWiVCS{%TV3@>d0RgRIIrrk459J^ z_rOupzr+ND+dBlUZESV1Z~>s0N7${a6?UXiQS502cR1CiDslQE6sHcOdsH`k-`PtT zZBb-#kSxI`j}UMB`w)NCfUushK{DWEQ!vHN6?CzpYp8Bu-q^Mbr;Tit&CNS);0?dM zn(69#ZONg_-SX?FC+*btUYAWrP&MgS@ThLS=>4gYdmJ+{Mk7-dArOqKuK z?tJ8!yVJeg^?~{$^Sjl{uOFzNq66GZ*a94nQuvA=Ue#LBy=}sayG`$xd--y#l}Zdo1k4lcs+xP9@(Mh92$H#}St8F_zTkqM(rC7OvswY2h8f(y2+xlvDw#-LS z66GO5EjdT_yU(3_y{diTcC_7ekPZ3T*HME#Y-#?!xOxDgIN~_^+b6otqc8g>3<=w< z{Iy5?NawT;%Wka8D6^|kbgl|&5mBwJyCc+X!|u;|x^+%`IW$FGBiYPh#{5J;8zf3H z>|S!SXmo>kl)L?y@d<@1ojm+`^3x0A@+>WtslMVS5*36=xEDMf}T| z`VDx>wIUH!i+c**K9o44QT0pA2)#g=J$Q&q%4z@)_j1E)f%+d|L?zYEx9W}xpg5a| zhiBqG(ddz7ew~e3X|G;g8pH}f+!}dmgKl@@zVU$@Oz#C83~+E9?eOFB<{wi=JIpxS zg;Jaj`T$6>lJ-dD_d5Gl9(1#6V^;JxU1ur#?6s4oNy&knRb1l|B%WJm$ z5t`=Unc&kS{%Fp+u3@2}BCJO$r{qv`uDVxdl!{(J@0j}IN)WpW=&{M+3qls|evM53 zrvNu_*AA0i^DbQ)?VMMk5_`nutDRYsyg9FG?QQEO4)O_}g!O6tK4p! zWaYFW_4B3`|Mo)h^_|gH#(#lN6O%0uS{y|Sw!|%!Y(E&BR{(e7r7-BHTcZduF4f;> zsx$R_fRVN7q?}<7C5sJ=)MMGQI=U4$wnc{3p@T2B<(Ue$xIQMU{=n(S-i|Shjx~KL zSJ$O|o@T>KE0#iO;yvckI_O#TPdR$IZ*<-k<^Z)=6uR0v|C)M1&i%l|0Ws@+ibD5g zIQ=|NAiq^mQn5ozj2t6~+i?ooulzm20VF^xpqX&I=gxUY_{|!>H}RKu%2Yc|?R>K{ zA-;OYO!j}SD0sgf91wL^(($?pjFA%E#=1RC@_B=1R$&R?3fdiP>p2+Q$^GzY_qt0z zffM`TMOyp4B#L$zV6x61?_!;gyhFLw;4*<^e3|C*L_<$&ScabWIC3z$ui6{iDaI|= z#YEpOa&OP+yQVYxC0Rk+-yW>IP;-q&hH#$YqA49ghZ)SIl47^bai><#8Ry#m1dm_nnb`| z9*FN18{u-{7_@1&VS)Gj(!8u>gY!HxjpVqu8+welx)?qoIW)>**WSH7layNiJl4y` zFks!U!9B0>wCOKgg~oR5NOrvEB%~pe&~!Zi!YVWszyMwziiBJlfMfXr>*vSh|^I zWNy-r>Y*f1gGM!2KdRgJXf8$QF#*hn4LfUf;hsYezeDCA6i|~I%8k1zH`cG+9~r5W z8GDW7V>tJ0(7wq*lRwd?N@#@m3edbMWmzwg?($#72)^3p^zg)Or*`S3QNHHWKP|`v zlhIGuEORPEy@ZBd=_2t9NViOpSeGq02iqVGGUbJKjs*|`SwX%irucBIaNX}`0bac_ z7MXZD@K@0%2zNK!`$t75` zUvXrY!2t(L(@&j>`q}n{+doPsWkE=rrcBu#--n14-S5-U_5@vH=E!Cwq?&#E9-q*r zgPlV0QS9r83X{V}Jz_?QWa$!ehFeC$SP%-JpAbC=-CgqMv5jq$IX+>e3050J$~|KS z@FJ4Ft@*u{zCSd(Gou};3tia^264R9rab?)m$5MZ@Uu>go#EASNt_7G3=+ z)mP=KYb3WdQd%;kOU|acubhrv9SPMWKCSz6(B==j-oAqsRei)dxp$%Ilu!{jlJ)23 z=VpD!LARrc#SxSg1C(~c=A^0xj#Xs8>#p2*ClbPbN;~N`2VgL@dvwOo0iD7!gqd7| zzVB@eXPB97dORZqQQSXZAfL}$tg3v~V8HV7$qkiWmzL&052dPwI_eo1I8&6~<`CfLXJfoJ{TLj;Sr|2d)(;P3k$=CuBwW+ zx*wP1cEMrf;|C>ce*MfW9wOtpEXR+>t-d{K&z_s~VC(B#9JhDK4)kCxo@gX(%Q)#U zFyI7mZ04#@iMbh@9`F1OH{R(UX3*;wFZu#fw7>v)G_)Ecb6?^Fns2!>d-#YE4)_1c zw?FBVYyM`yLu#sAnVh)|?a>j#+3m?{O4GawJGK@9ZPvZRS938JOpL~nDWG78oe^`~j z@HOCYDon-b+G@sF@A<#e&mFmS~GH3Zre2dmA7pam?KUM z|9Nx@&Wje^DSvV*7|vzEmV|Vuzn#=3{phW4;py1LpUfDeXyX3DxOw`R2==XiX<<^E zdk03>n+vcsj-`|PKyP0+Qr~QJ^zQc0Bc(wBo{2OsbVTu<}C_}PN0_mU?FlI)Ds&f%cj=MRDYby#_oq&Jo!XP>n}KY z2JlK`6-M@%d349?Rn*Wfye#<f-!Ci+QYXM^AOO@{0g zA9qns;fD0uTcqdAA+$z4>(_4NJ=uu2k|Mq4oq?B>d=~}*wwAdT6x}lU0PW_2Es5!z zRMJOMc+DbvTJ-)DSdUt!+_A0sGW(F)>VsI7N!5@DyL?svH44Y4^0cF6t=3bb$S3-V zHdPWP_`a!gt~Jdu+*rLM`RkK2PhUKoHu(L!A7KX;Xb^tY6yj-@_ck7n3*t|uB7p_Ks7#7;&kgMhB?PDBKp z6N*T-x;!O5giIw$KfI^czXw5KAC65(7;}lG!f6IM`X>aN67}&M@ykf8-uuS`1-oV( z3E1_JW&bqqxY>4Um)%Db-(TOdcBKB}KH_2{m=T+5W?ssNbq=A%|JeN1S+iC8?A>oT zKqYt!x>mj#*zqfRU;)MfBOkUrrULl%6UURJwMij+Yu~UAjHiEp{6?e6oMR%o2Z#5* z>+#>h0>>3S?;rOc*B{Dor=Z_e6UsV>NKlN#24Rfdfxsikcy; zWKT%CEHesm|7?b6ma)3;?|KI5oLYS5xg;FLKs5?`!eE9?Y;#mjw(pm+h0Q%QZg4LL z(uBQ6gX7U7ZvDH-4w$;%Tl6li*9ZBrd&adr60dx48)`Y{`{QZ3c0-Er# zHgk^2{D=cCH@|+2sfo_26$uwo?xxXp&uWun$G@5AFgohV@iI=8ixiN=ZC$3IlQ2At zK+0`&#@XDwb}0QC5_dM06i^TeQhu%nAWTzhpR|bzsujcSwgd+UKfa%2{r-22jl@8=N*gYFA32sx!st3eRpyt8UjfZBG%B#y@!bApGH0S2 zeh$9zSah(0uR#JLvD@?hu6sG_LXI>se~M#*NG&B_gfv2QzkPI~hgd98D_?{Zym&S* zkiH9mH&D_o2M?ZtV9L+11pZ5`C`Ku(wb)pScE1cSH% z=3LZ2r5+UI(uK;g1QB4y$CvmTYF?#_=nrNg!{ucfJY8oN?PM0c#+7BY5vW(fq)=fj zOsEO(H8H=Yt`hWz5Dh##@jr=yb?nWEuV=iga(Xy?aat%T7M#p7VnaqQkP{%|7Lfy{ zsZBZOf|eXpo@m{1W{l>59%x)=!{fn4>5J1BZb^Q!ZdGmL@jBDbr2+i9ADNNl|IH+X zil4*Qne1I5;!pnL7nfLms-R}7*UcSUzEuB6Keknf0Ew&-91q_wdXtR=IjA|dBa&%H zjaq!EjBMsaVC**WKc6qM3k@^$eG^YQ6okKD0mCSI3?yebS2W0WsHo`ked_MCA+9+Y z5tvhD{DurEqF$B{f!w2M^u&d?&Mw?58tztIn-i=r%U>L=19eDvk-f$O1D&ZGo%bNQ z>7$cA=Rd{N^ceMKfPE_ZGAn7xVHahPshXQD5mHx%IzBu36D_lHIT0b$&X`8y#qq=Gw$E)Wtvd{5tC} zZ-bjrx1y37j&YiMW}C*E+s$V>ZB`wS5#!eL%H*;7Rsl`TwoVT`ys+%NkI$`RHSLbr zN3VHTyLR|Lm9@{;^^K&|9kYs#*>TfYp14T&)s<0hgZ21_A zapKR&SUa!!l^y1LiJ{HtQ*r)R_-h%MBraqSKs=+y}_OSB&}9Tr-l`WM!JmxSnd8-2F8ULBsex8F6UahNE* zWfw;%e!;6++S!FM^vufC6sNHU4ejdhRoV^e*H>1unlORc&>Y8)i83koqCvg!{P}(m z409!-`~wLZbwi|JYHAi~yFeQl;-6ciO{tEs6~efg3|&cy6hxyft<(g%$- zH6Nc{(T5Yv7P%SeE%_YPjg`D+4H^{5yaQ8wC)XlB0j&RE%wRL` z2OKry`56cC*=TA4Ew=78?ey`&+CF(-&+9gL_Zwu;)bu3N&5=RGm6w}v`jO#Q<$dOI{j7h4D9L_w=0RRB{%F-J^#OLr5je zJbTt|!i1o=7G|%$9PxNOI5v3k7ON+}U)||mY>Ob+>;2;h=%X>jz=uai_c2oJKB^=>+J2clNt%rXGSc)Wp#PsQg=62}q} zIgB7?X7kuySXZlSWHiMyKDdDF2QW;7vbcrAZ-k}>+dtaa7-h1h(p%CMOiiJ=%|VYq zXi{3K*5XW1Q6groD|uIe)MsYMj9uo>w?>Uq-{J zxnzeqoRdXcU7f&f7Ruk7w%pL8#&PKTsb=Y8%-;LBxWqp_Wl7nIMZ=7+PnU%Ydqr*Z zdHxlOgiRN|Zx6m{OV9W@Io9XAPnD;I+qFIVE^zvT0DrRha+sZfz&S}=0qYLz_zO*6 zF$57LuCiK57(q!GB08~kb|Ce6J7m)hYc@(~*)z`ITtokq(|Z$+2yRn%6sLPy^^2@k zb_+T?g+18`3CgdQ6|QRJdB~)&Xv2j0O1vL~n)5fiAB|Q&YWMs{PHm@l$Ns)vPKOc( zI?P1KcB_7AS8&SZJbJVXd6yaQR+G|)x1^$$^3-bB#2%VI=v5eMy_F9zmb3WagkH;^ zRTZ*p=o=z3XM{(d9UeWYs8aVx3%!X?rWE!wsQ9&{v*Rkf1*H&AE{hgTU=7Ja;o6RM zb~p{&ub}sm{fltWG<&w|5(FQ0MK%HGeWJvWa2n%BVkU7tQpzZMxR8ac%l z=3CCP_@pFDDtfc$ACoQC5rRkIXm6{&Fr~ruozwac9=rvNg^Fu7UKPq?F~89`tM}X! z9?s}6h%?Dd{kE3gN`@?w2qB@fWaGsae7YG1MRJAIZu%UC6?6vj5sl4ZLiS`Vp;|>f za9|mjNwqc$;82Mm(oKGe(H$Q@CC7)q}ul+pga0>GVZi_xqZeg~qrQ+fPaS zJ3qBSu!H`QuI-`>;OThfhj@iMYNk%fY|u1l51ZGd@R59Lz689LAI%CPO9_R^Pjxp0 zP8fph?xJsj=M>_fZ+M%2|rrGr_zMtxvzL-JwNg>PMPH#~2g2bQ9MPa~N zVn39&5pUoX2s=Mx)vUwZEcF;2f$8+dukE{$rGik`6L_<-Y3u2Ww<@L#mG8o==yLC) z@2=T}pJ}N?q7o0?jK{OCwH~L-RCst>10_$kW@uM^pMr_81+dgpblP%RM17&=)V% zsW>jt+9Gb-#%oXo-HY6_>~~!*8T)^CkqkrtzhFbumr*Pg=WALb+KF}c4yQ$t7DI?i zx;{~za~n$=2>`G6WpPU5=SPAW*}}KF_OIG(thjj|KR)x&>!zLh`rqDLZYuhieh+_L zdH(B@kgAhM8ay8{x8&Nw$=B8ZPgRWVHFnLU=TdX3gl2kSqt>mWyQTmd z!tD#t4@2#oA8Xe1)8vn@#_bt&pT zD|)!{=gr8+L0wTFC)}f&l1INo&ws^UnGX?XO0;=$EPFe!Uh-Y3As<(9|SMnNvhED|Dp z_*Qe!pNMFgm-(lFd2YVyf-%COIhQsx5NEyQz!0-|{?GP!F=@&<@M zcK%XH{X$dO3eUbAh7x!x@a2I62i%8UO!M8nTNR{s6D77YTaYQFkxzf0bC-OII-_=M z%y^Og-Y36p!jZM)QgWi*C4(UNp|xW>T8O?x!bqwUuCwIj^?JTYh>NR7NCWrt0g_zs zmHxk$$F%FwJtGtI-gsZDj`~#LQ52_sMEBob=`t|4s3<8m8SkU}Q|V@b?)_sS+lsnT zR7l4yf~`0(OJw`ehwTp2r>41zWai4xU#j1$_9WeagR%Q2*Ad^xh~kUby*AF-e!+}RZAL@E}Q*4ADphJbyA_PRiygk>e`?vIKnyN^GfZKElW zJaJ3_eO+#Z^nZVWkubh#-W5O(-$#Gg@V>*>3#jjUXJm1?bl7u~nLW@6GJe^0Uwy86 zC0{Jbm#$uozq+?V{S+x!n(qz|7x}f|w-r9WJB#BnIQY%zmLAEo9B)!AjV41M{0;zO zOZm~+txtQWWPLdTm=|5xGUDX#s)ssEC}~1m?L(rAC9xg!STa=H5+};YGzd?@xh2(* zL`Q+rx$XRebS71QdG^CG(!=Vq*Ytj6KX_5%6$YY}(P;D*qlgcs=h+iH6Q5J(%ARHpU_Q#nXDeRJ zrb-32xJ)@pjQwrR0r%qv!QwUGCX*YIn?mDk6Fb|YqtiPxy@87v8*MLvK=|k|&w)YL zt3RnlD@JCHe0@)C$Py(U=R>BL%EV;|l+GZDR98c=TS*>1KbPxiGb05gs*bA>WG%na z%Hip%)pcMT4c+c4vB%VJb+n88G5Pp7%Y_r>{qB1H?4o%mhP3~>is>38_`0~B`+eqO zc9-DTA3v?y*eR#{(r-lgl)gi(@CwP;Bx`DPTy77BD&XwF5ocUGKTWTSa>@CH>p%yoFL`zFvKPEC`#z(@?2u>9c8y&Yu=dwJFSK*7m{78LA&rqJFPC`Bg#$ zWo}k}TqCM%5cmc@KEJIl47FYq{^R)4>yvjN`Dm=fe27#6A}{(pqu6aMHat&Ihu8x05#lJe*lfIC{p}K`P^nX zSFifHKR7y`9G>uf`+6C+GI&H8U@>!MG#C3@grW}Ty;sdk2~;S~(T*Fg`?<2<{{2MC z&=4+dfRVe{l}6FcCHx~{0|CH>CZJyRsx<`2l0yU(h7;uPKd1__aeGK;Y@JM^B zdpNM|v;|Dbumh5(;|h*fB)y$n-ktdX(uF1gWE6k+Fk?=SmE-O1JsE8F@HdflWe-!k z|J#8tPG7v0>)zEm?K(;qQZutB=Oss5yWCWW`&c6xnN>PdT@4ZNn>JW*$1M>eoKk=)?mp z8DsqiGTF2#AV{kaf-dLDlRaWc>%7y8G?DyNm)t4pC{X6{J{;Oubu;c-?oIYFbBg;E z4*;e;o`Q{H!n?KX*kNLemqqiug9x_EwSVjnR{~+zX!ylXt)XA%1 zqRUb#rfCW3+&7WQ&Wkn6PPPY|TW_ify088OGK$ew*cMO;|ZYt3=Ep&?oEof0awp@8KchIbJ#hq zx!JI;D3!E-WgE}n0;itl^piL&5sBlNTF(aqFEPsw8-_~7oM;!miYSKR63soezO-c4 zRr%A*HUzQn7*S=P|9F^V7B$*S77Oz1c50i>ZS?Q9!$M~3f(g9lE(1vj;;4|qjMN=8 zk?ZN$fcP1Y2%+MVpYOhH_qy>%b!*g_T!|)C($X=c%FGUF@|V6FsEF8B;&NCu`PME~ zHlsDwTmt>G4PdXB$qWVJKey)8c8spu{np}gLVWy< zu3qUYE9Y2QSSYInIE2!fA@qS?NA*DKwK{o+}-#U;SAjSZ4Ug{Z@H|_E1I} zP-WP%v^j=PjD7GZSUc}Ub#k}78g(_b@rDLxzhL*x zIm&d$o7I!@i@jzNWHp-pyS^_D_xYYR9-zMNM5_&SyXy;F4IwboQ!A#pde}|l+mudj zWZ$D1jd?1;W=QZSKf2k4yvy^i_%IcyDX z)cwa_4Ht1G3LY#l7*Z#ujF0i`xe3R;IrP5#WNt&*@5o_TW*gY)bHTXgd%id_JonC> zM0EQKz`op{-~QQMj=I~02_Zze>M)vK^_h=NJNF+0Gd0V9a}wte|A*=85Rr9l)zo?! zg=YPoy=lOg)V8aXXFD8fncYKEbHnN{<(BF0MVd(a(EYYi3rMvJ+qKJ*k6;hG$=$4` z#sn@;EytXAg&yd8XkwzyuAMt=OilgXT5Kbi0zU%OL>Qobi%$Lha4r}ag-+9TJ6OaK ziE50J#ngOGc^H#Tc0=IFsqHd*wr%%cY9xBa!QtB1WVdZoyKFxrLdP@W%4Oa>OCUED zwSc0&1l_r~xmlb!bEa*_j=Dxc(^j5(_8wUa?SiGJ)^+`>XW!)T-(P+z_8{L$h$467 zwp`Qqz=Gd`@5MUzb982vg>bu2o$p~Yqu<%8{_aN;gc$N!NTW79?-bF`F^)@OM?^$B zdFd0Pje8jdU6!8-qMAJOg7LtGkHh&J^MAGoJp7MH+c*_>@Fda+HpKO3YM$&tXh|%T zUE8nyM)uy@?|Ps!278(q+Ln5VCuEe4bk0J}s5-aPClnYdCTWFg?R!u2hvOiVZJK9K z#~j|5(9hB}F-(qSj6;M`qd{-o4mYHt67fzd*_8{PXLUlaYR*Y%njPAV_rIC*3Y{hA z1o0LPr1Lmd??e^c9oSG_$bfn<6AQd`4wb+DhCj-)uUAeirT_m%G!X3G25(8bmPp+sL zAPR6%sKBVlI_ov(fRa=K%Akkvb+o$77^zEXhTy`YHm6wr_R(0uLM;d}S)H8oH15ZawIoYd$~-K?)0bC&0snuk~y zm7Erv4{}-xZfTd~WubVIan7-E{l4Uo2PN7$9IB;$ko}PwKzV$m=pxw3zzE03;dx%+WE+o>OGc z;-K5BeDV8N2Z^ep&c>45$0+h?zkvhIxKsX@eSw1)MM*pl}tyIaSIqTr2>t8-Oq6$8FKRQQ2d$GjDrLBIy*L* zpv$)_i!O&~j9K#Xa)YPLe_)jZ7<5nz=yzTJHo(#>q;M$4G_gOSRc)(gsZsj&tw_4i zB-|}3+Qbxb7}XF2-#nWLi9`kG6UQYtm?TaHnAUC4qD6jw@>8nMCI6=DW zb)iThuGS2Ah5`)P+%I>#nNHu^-EwzYl7HjGl(giws;X1mzT{GFE?r~a5CWh1_SdlA z_4E0)78JD+2!WhT@rYq0hgkgfyd(msniE(qDS4hJ^*OctxWi{N+dMYTUXKmL1a0yZ zUh_$b)EYBtl<(WghgBI-PR_@AnqEo?u}iai!Qj;`p+Ehg?IMw|%j{?}l1jb%m zBfOSw8X9$2glj*o(WX%w0Q*VOLp>PBW-$2NBfQI}fZQLC`P4RJTVJDUjo}zJ3cWml zpjTF(n4pN9ih6r27`$gPw%N#WQ`y~^jl518 zca+d3nmay@(n?hJ7gSc_XZgIx=iXKYs1jt49X?cahK~+MvSG$@E0M#bVbne)vFY4n zCpi)^K5`7*JTWOUEF)tO$GfBkLoCK{dUFiD4(h5iNomC=7spDF01Y0G!zF zjh#tHfLFy1GmElakYB({)9g7-d;g0qZG=OWbCi=xMhj3QPz-s4>ULwr)AX+GeW~~{ zVQ+U6tUHLs21tIOWS6l61A-hDwqO(ul6T2mh9U1e=W63ev#j@jk4z0_@O)DaUn<|1 z5X6#ny_ANZ1G;itR>U}B>;e8How1+G4P^qyX=Y5POnKZRY6p&AT2;n)B-T}FcVRpA zyXGl*At0F@K%k;0oh(~EJYF#`p{Mi}&Pn0_XpYLTR7VS`MTuy_93*U!6v7NKc zJB{cxq30o*L$DK}|De4qAp(0MRQmy5W&u{~UPcolZZzBw@%evRfLphu-zm6z_W)bz z9)+oy`JBU(L4Bq4`2UqcIhkBbf}YTVY^8Y78#ZhzmC$x1`!;~f763vN1!mbv?V(I_ z=uib0qPLMs1o))IS3-sVFO&pD9oxO%P!C!TcZA!WI(EDZ>1CEZyJ;?e({SKG!9vKd z)}-

ktN?+@)8`n&?a-Md0F_wjO_ztS6w9kg{{&C3?9>gve|qfT_*_)Khb!xY||I7d_hz+I;ie zc7AS$O!>d}c+rGhoiST<_GF&H7_VVngVjeS^1!0bjBFQky7q^?$mrFKnQ4|AwgQMX z76E(6nKMT3pP!rRxmOj$dmq2u5|ugq%2?1<9)ROqMN+uDB9W&2t90QW>6xF}_V%Ft zIidfDt~Y_pId9+oFIh??rO4W@MV2fxWNW3eRZ6n9Fbu;eS(DNpDkRHbD54T7Yt}>} zgEGi2vV`or(DObo%>6w7*X!@~d+y)wxo6aMeZQa2xg5uF9%rt4Y36Vz%3kRu50Wt^C>`d~6F`aE^a`rSCnJtmZkwx?26WED5o3QYmkcHIdg*P0 zDO4kN?tE_6-z$xNd`57v)vSENj6W<(20lvp`^y;k82opiPmv$cC`58eTJ(PE$K{UU zawCLhao(1oNniAeo|SJC&~^HqqY1nl@444rKcpI~Vk-niKhZtYvgXF+V2#$lKp$x$ z@7T0`yG&d&9SX?p6x{ukYcTN=ujc@i?qc^zonW}!dG5m-Nd=KsEw>x+mLiCOsMsa) z5ZWXrTt1lmn7~m5ZX|ROm0BUBEwz?z+wCQLCzk<2f9pweD9eZF(0LVi;gHfc=eEkO zD3*mI_lRtHnMXlesM6HMmzUm8T3~b)ST@v0x7e=U@qVEz4cAzBdSg$YIGDvgSszISo(M$jgfp6P1Q&Y}%5wkOaS*#mBR564DanQNYuR zRu`3&HGY6)xq6Bp8cRyTgQO|Pf&=WGNC%C-vv3U{5_!40n{rT-mG`$7FSn_ zmY5nwxt@%d1M@hezoRMEdbVidV7MBQASln4*Yq5j9zxyBCoQG=#CN0>p{LKGnDxRw z@y)at?ZaW!7tl<+kfehICbwx9;5F1T#fTS3B8;#6Ffs&;dR{luRg^C@dk ztEH`asFQmdD0nOCe94oXCFz9-Zl|wwn09P&hYwsdv2_7)aCN z)2>e0ymf1g%x;s=Q|3mUY^bIt+gp4mOi(^L3XwG9%afsO9Es)9gkl>gq&@8dN>tsp z372P}#uw&XHg*y8&bAM@XLj6EQKo4%DcfdALP9z{X)=5&_y8M+{;qP~_y^zk5|y!_ zLto*H(<)Ezps-&~Q%klP4tVyM+B(fRw^aomR3gPxoW62p70NE^lFM$GQHXAkfe;Z2 zBH=N%(M}E^mtNXAwzohNU^0snhXk(Khe-6Tc7X0H*RHjoHc9D(o>uZbq^BrLkoG*{S6yY_2ttW0sVPHW=3g1yJZYexhTx}ka2M`=%HeZfYHP#4Nd4Wga#8QO=_mK ze94kQsne#>@0EV8ufFf=x0>|OzyJEn6*x2Ho%i9IgYDZTtwKq+B!&6 zb~>+h_$hmyP@Go)P?$kRo_PCDCjrA~$^Mhh#U3&HUoizMP17)vO0+I-^!l-|{v^u9 zPp<43Bs3ZVA)67i@)9QHO~}^v+UC=7-usf*q-;UFWNRa}`UxhErNx>*{~)lE_*Fyz z9#I9#3UNjObVw7E|J|A(|FA17Mj=S!`F|~ynJf5lgpx`qx<44rHB6?gT0o2a_oQ7q z*>sa1IpcvKs5DV0xH@#4eTKKGF+n&W+vZLs=_eUF#26r|o^-y`W;{FL_Ln3Y&Jo<} z;lmi(J!lTGH|H-J7?qW+F+g3DcP-}-zn2*h%g}!eYc_J83($J;Vx2&B$(~d?g}X23 zs^cd=QCd*hN`&|2jLK6Qv^DXGMJ1VBZbF$I6cjvY4!$NhkJ=h7uV9u*u!_4s)F@P7 zga7KTl=~njk_rzp%%)ujRrKdf`)UL6os@YO@kk8bqCS(~ps)pInfQX+yct=#BAgKx zJE{tSVr0k%7(nKI5t)5to+TGF2!*XeLGgl-UL&7g{KP2GQ*yF3O360p1L*C;F>iBiZ|L#Hf15t@c6q>Z za0keNg8pHff%Sb6uPMT7zdY(cm*HZx?pqgDjq+L+ zo7-v!VHkB=ET;Hen;0q|I)e&ewHUnXs^(4%V#-q5d>b1Zp{X=?TB-6>>Ck+c;v1Pa zp`i@qK&7y-5d>kx5D>?faymG}GUABV?sbvw_F#G{fj5Z8@)F*@xTDX%5KD~K-0254 zRg9$YB?{>;X#dyr3{0zXuCC==rh=@G-1kRI*(xeqBpDPMNL8<_D=kxGJcQ1_u#gDm4EHhzeS-qkp>yf6U`COv4FvsFYC%0Jg{Ee>M8i2`j__ruww5M@CG^( z?^Syv7itdNQO$BfYi28Tdb@v1sB#`Wlx1w% zz)+or4>a07iuzM5fTh3*UOg6f-~QmxZtuT)&1}Gwl~!Aq zyHHCCaR7UGVdI4)jY+x#Mvra{dJlcy3McD^JhrIsCQjZvXT4$57P>)lgP=apwM|4K z3pT#c)6CNeBZES;s&d<}RgShS;RRYxxnxcp+?i zZQZ%^e59X_EdZ_T%0Z}_qThO4k?f3vKq^E%PZ8*OdaX4blg`o2qqb0Hi=$benz=1y zWf)cYgW~PwwiFCi7tN(hMR#mB}@cCM;jdLW&xc-M=4Zaz8x)O7nDF&sFF6!lE2wxgPlqLaoa zMe(JZ*3w0b>{8dZ8{~2GQT<3G?;WG+o0_I;jw|0&>Aq^#;+i{L;}e%I>2w&89nOhF z!?%<>C(cl$yZ;F?rA4jSXt#|!X8K%YMoT)*A@=0usV9#0^wfbV9gx^2Ubf$%%shSm z{HhJ!TeoZ}ICW}(Va-i-5FUBfOzs}Q@PH?1Xro=D2KOm`l+w0yP2v*kR&2cU046el z%D$3YiVXnzNmaxI#x|{L>hY}HAPCz!_@VhLnVxN~YkevTiD*Y*Cc)s|RbNXM1(J=n zmR4V;+#pPxeSFrg$CyRn5M%38dfR^^6|=>{=@Nd8{GVwEJN_m7xx!F^v!bY4g+Tas z?4?uoB@iFn37O_Ru8aHZ9C6oh!rKBM$F!@pwXomwQ9PtiPqrSB$0$G~NPQ*{y0Q@o z)C*Y3uj4=7C&H59`_=OC)2GAd&OK1oQ-2yayE{M0{)KWtPzZa{+N!OC*V=R4oOZsr zch95h!&&whwE`d~+byN!oD5ba_6pY?q4nW!H&(H|v*3-!tpkCPQ1}fMJ4WV4pl5fb zm}swfi-OagU8JTaCZ#m884OO}uc)vUVG=uVO371?QKC6I>a=S&6me)?5VcaH2Ud^Y z5ZBy6Pb?5coi6Y3Y_5*k|5tA3bL`W@*37n;8iBT%v_jS|+9Plz87u>Cqa<7+Gj`Xn zUl;WQtl=dFLuK~@!D#=bua-M+LUaB<5<;GW8@$3~s+aDVxO@hjZ}e=?53N@E^WBGK z;86f?EPO~=1A^O(7{U_J#Z>p1#J!&_R;yM53@`p|opxEs{y|+%WqDG~N&yAmcz5@x zc2t?5UMK_li5ApDsm0B4{1MG91uYgtviAVZ!1tqYO0Oo2`;B`= zGm(Lbe1#~+5W`JbSR{W*x(xsU#g~77eaa3lpm?#dJ~?abm@zq=MoZTYlnhTE5FUX` zRVk4yY+UoTw1hFCv;?WDPZ@H5TkjloAsGnrhDdyYyo$ZYheks*fXl5hy1w(kOp|US zhDagC>yg$TNro13g9$S#`7z=^u?J8QNKPQ2tUh%EmgfE?`>~+)3a49|pW}K;AqfF< zz(arerky*bHPB+PM(o{j9w>Fa(Of}|;!m;}$@mRG*NG%Ozri_#8e@nY+Jk7gV1P+k zI>U$h@3shZYUG17h%w}S;wQr30RsPJeS`83%v&R+H)CY7 z`jaoZtKVR_z=6dkp{PaJQtlN*LYwv~Y@)*FFl7}8ywojA*S5={Sty$1V z>*-4;mR8Ak8?Nxk)L}Mc5gOEmY$g@lU1YwD-N`0r-dH73w2)YnHDMh=Fq&Fb$VpAj zB+F~<0|tK+ij!B@tZn4ayAa^iGw@zLLXj$5A(JATXqO~L>!3+!1GAG#@km&$tE9u@ zEjB@UR&YAMyzP3*^3Lp{_2c5KM`Y4LilGYOy%OI8?Y6Pjr`EIyp(cWO*FXR(JAcJx z0%Wpb^vIOe3&=ktzY3F=k~)CKPn@Au{ac z%0Os~qyvIP`B;;U%b-D+L=rDilzZ~JIcEdO{xnp&zWi?vJ5^yUW@xZ+W&5U$2KN4$ zTTbaUd&1$?v-YotR5>s0LfqxKs2J0{=IQm(_Oblfw`fY}F^A`B(P|)hl|$%->96Lo+HbvOD1qKmj6aa- z?5Y~M^s=5~6n{^6F=`ZqY3eA8WVJ7yo>#DrGO_a?4;&q(73LT2OP)bL}idWsq+u|59ttSz(IQk2e&z;$(S!K=#md60A70Z-P1cKACb(fa)&apVyvQ5P3Gh6T7-V6p0P zacuiAv1t&X-Wlx!89~3>^LSNGbIC(c->O@Oeia9x{NFd^(HByWm8ooxCeew}1Gac;P2jX5<;nsJvA&j9t>QApbpPML(N%fq4TsV}BL zoUiXEHg}3I1f+}w!ox`tU^KIAxn4k!0VT5xg+P55#iG(ndRAumO0MxZEJqI*Ev--^1KJ*{wo= z24rxF9$EIC2qS{msR&ep5|sxeov0vbm$7y=EFegz0ZT(wWbzFQDU<=iCJU?<(9X#q z#TD1#2%=9aOhsDd0$Wz;A_6`R#v$swvcM97S*6}$+^h_vH1RrQnnX3i`h8gStvPNh z%WL1iS~7i^r9oQv4iS?*o3@^v+oF1aRe1f7?yUj_SI74~)v7~=uU&oJqQ$P&=Dw@_ z?VRkk><+#ehw7hqD^TQ|VqreugDD!8eT_ zitYX>%|7l2pANeaTx zziR!k`E>DIRM~WM7aUF3=FxbLM=>EooXvPfvMyIdVn{8bhZ<)!<<7}2tJ^Mv_}%>R zJjJ*RM)B&LxD((Qxpdb|x2bJ#a!iL-(jbzYB9`VdP6s|XzRJWhKxSMC!hTe-G9#S4 zF1+dTF}-_DaB-}?#?ZY0+9Vr)nn3y3Wg*Zvby1YE3HXRdo3CI0WXxLjXwjyeqE+n_ zJT!Mi_Q*wq)(SEiWc*QOpnJ14n|H9vE%9T;;+2`?i)Tt1j7gi?xccdMfH9DYqqBf$^wq zaB%d@j4$#Rx($3w#<-}&U-DS}05t8lrC8hv{m@qEcdmZdTC3v`5h^HYbr6hkk~2zs zjW;FW(G^tgejm@jB7ZV2qSF*9C!_EJMWZrpgwu(x{e>UvU=vh8=#M^cXq2^5Hp5Y8 z$i)%;20d*Kn@puWs=KPT5`+~wyug6`v z;ya12D}?BvKU965b1KFU0To7;Cm)00QMzOFuc^s#ah3_t9^I#0QiJ0cqXO&*IB?PD zEt3%z;5}0h5H)Cjhx;f%W%(6vJk2%5(*DuP#UdI2vK4g)u0QRAo4Ds=qSaRq`%<2o z{kGCcm$rLr3Lr-*A2rlad1}%;;O63`Or@3)JuaXCmpN@0p(huBPz?A)vLfr*+SMH! z4`ZZsW#0d%K77c_bHCp4CCG_hjZQK8ys?o2##ja#!7iGB53KmOqEDywajpa0-LJeotIVplgdoEuM-5yGz#^-iqI}tT- z7i8KZjI6Rs3ljSc#!bbZp2T1f+(h@psZ$NW-ipPo;J@$KzWEZ4a$_-7lA;pq+ay?9 z>#HiIlsqnyNG=d&zj^ys_+XkZWG|{3OxZOM;aA-`*8h8$NV`~MILOGdSDQU11iD=) z#Orf`#kUqqe35=gPfc(6DkCs0%&=RxW(=wq0`tmxYf2mS4UR!F+)TB9f=l}I(;3zG zfve^X)t6F<&08dHZf#i$R~MJ#h+6_5oo~zJej0$Az1i}JPc=1_L>|3g{?KFmA&R43 zba$DlR*F@VQQBH5jZyhf08w-{qR}A^Y1za(`;iQ#LINH2Ga_MI+Ok^%_+&|*bGl@QBQb)hh(%XJ ziPw-AHc^x4mJvLobVXd%*$0mvoq#hGxE>Dz#LPtHx=f{B+BJTBRUacG%SWw4IO3G+l{|D=@kpGb z87~>WD6T3j@bro}*9$d~tC%~i0yUAJI?;ncALK=)1QuCb!khb^8#8Vmz{n9`y9^iO z)ZuX@*~r^ubRAux{Wfx+{3#2`+r66sS<~PKTDlI@2mHea$*ViW^_Y6a7o1@(ZfS&B zYrc&%eRPfYXPCP8lCe&znluQ?^iR`z5|GjdA+uw%6lI#&#PL6x5|Bznl1H)BaD#g) zFko}Edb*!A@4;7iW_mbPH9p>}cW+}VJfSK?Vu8kmIlV??%K!bD_z%2^yPI1$a@6Cv z-r*!5hbRnswu9*9X^g>bEzkX_ykMa(8g#@*Ck_b9kKiJ&-@=pl0W7cyrZU(yoii)G zov62cDM%&wafXa7E!9D-?6<9Kh|A`$GFAm-ZtLZxE0SYAS}FBys`ys??@vY)=v)i_ z7Wv5HnMT5F%heCP&5TqOASVJpNH!+Y$`S^77CNG~M{?u{n32P!Nu6n_OG6<{D&1)d zoAgV<7Se_l!azh1wP+^N5Wa>Xe~tRvfyJ?ci;-FzZoqWpzdz~bG!f_|^k}AOPCEuS z(Xu#AF(e#(^m@HB8?54;Q)M-QFz?bSvLR8fzGWbb;ss4Z@ycOSrLmV1SJZ)E)Y0d+ z>quD$%qW^k;LBz<+dT7G^^PKoXJAWGjy`WO)84^B)?{-M8g8)n+=`9>JJ>=1>Z+Bl z15LCIkrsjCRa^-CS!kqn_GIq??TYw-NI@VHYc{I{KfA6=WO-Dn;^=vC?wFoh7Pm?0 z5_zSc=D9`vxJTnVLV`;VBuEYIDm++SSzQYl3i%Rse!Hiv2N8i7@08|>H=M=Mmu2e! zGkxa_GEJ)$Ee&LFF-qt9gbQ9p3i2g!bs!b2vY{G?8k)6I z6xRG(7+>!%)Euc|OWl%#spdcHe$^y%z}qh>b$M`pv2F*b&RCwW9UB{~+8Ei%f|I#y zis9+R!YTMe%PfcpkKo?aRpjO6)$8;*G^jIqfv_&sk9>8^ zS%?`rovf|3q+Or|4HUZ-AdUa$lfFhnB;c)^mzUCSw5m#t{XSwj1Ea(@b#JMS`vEgt z%m&cfjn8Pz=XJk^`A>biN5PVWVFx;=6G(HdCh%NE1%%s9Qyu}(b^w=44}G`PFw|%D zQ6V{@5sEr*pe;)hr41jv!A2J#RoPA{a|)+OJWA!QK6z3yb|y9mcvqzH=rdTJrSdc` z<8Vt#KE$|UY|C1ehAGFTH0n*IA=MMv-A_OxoCO$wiayT=bF^x{8R5f$1)sX2S*m#Q zM4fy~C#FUqoLCAhBC}Y?x70V-{}&b=x6A-t1w1Yy)ds>T!IsG&5PhZCu@5z%zT#F!B%|#Z*XmsnbzJ(H*39&E`nUFa&r>7d#|nEtGstF zXTlln?o+QcrrH|_SM8SWs$0Lgww8sC6f)JWLxvO~xsfCF$Blg&*gQ42iH|F>rU0Z= z#tgRwhpstS)^ZKN{`#JQDoEa?mOBbfC3#%R%xzjJi}Clz0AXxZ_ef+=6H+(mFOqEEfqBQ|bv z3d$5};{Z~I6l7B_Wh^4Z2`rl7z3cDNd7dgln-iR5gl6)sgL_MRO}r>QKR<`riOp0! z_K!+yMS?+K;GkOttCxjo)8TT1#d?*f@g?k22Pt`BlV}uM*hK$~wU*(?`NiIxFWdRO z+6$1mG`fYHy?dE`8~E4J|KJ8u#1pg`c_ zy0@H(ppjfSv;2lSLp8q(D250hRkwNY(6zG}tl;t9qhCi{oKxEC?cXG~_5DIy@$3?fUX=c+Lg^Bd-pnV zNqt$rN>XQF&Vy^66@}hKEPlrvTiBLwSd0iXdZ^|1Z}K~*NjhtEJD4LTKxYb2;HWNL zy^LTW%%IZHwb?d?@v##iULrJ*^>s6=no$YQcwg-!@=R)1km=)G6qeM$o|+_$5a z`>TbYADc;u&h^!O@XAGU&nMmH&10xX?5&ztGC!d_@Gg#?C1|*EvH6N~G!m0>`$x+n zNY1I43z6E2V5pdsHwpI0XDTy}+f8Jt3%St3CbpjgKL~7Y@|~kcN-Z2~uLCH`bQ?UZ z%l}SITGtDR?NK<{p~t2?(@^jk9UxkS@&NUDbMzM@%WgbyEgs;qWld%KMBcMihlYDq zsQ^os0D5!Jg~34ymm~_k{$JlFm-;w*780Sgnl@EX$qR`{Aq6yexYWlaoO(p^4Ulo0 zoG)yr+m$Ff4p>`JwJUqxG=Ef53uhN}1r!wB3mEw(e$A$?X&2UY@rx*J_+K)M7&LgW zqnJnp2QTiM>r7k1sH^OzLiAEfiT>P`^fdy8LCk^Jv$2^U&>UFe6kr4zHfDqe^DiP*L%!7^*frmn*a$Qz zYA2>Rn%cx375gLc`A5JF5ZRWl)&U~kZO5n{|97KgnZOXB6qB&D$0;KxbVm8EP%s=L z3&ty4jnXa*a&|5tZc%u4o|C|i9;CRW&dmjRT_cO5o4FUgVtOQi$woI8t#AwG{nOsP z7iqA!WFi?T7MRP*iW0`MoFKM|mNU3P$}*}%LrPl)Zi^XYCUV!KG(x?pN$`o`GnB^v z_jny2j6m0cs*q`NqdDjBACf4JXe*6;lreh$&gyjj52j@$NUCfHl{iB6ehq=(zKXdwYcxVvB$gWtQ(fqqd z8#Q0T*a_#)ko=-5&T>Gd3~e5V;-l^O@h7Vu;X|s4{Ef#@5iodOpHdi~(S>`A(@6l- z6Oo)H-YwlTYasW(5*JHmhrsN&0)3Qi0%U22{n_NT(VR;BrpgZ-2c1w zX+i0166EnYku_zHDkz~S^78g4BqRvx@!>O2onYtqOBBy<=AJL{lSU9D9ZhPCm4`ZU zGrf0?Sp?h#kedJWd3hyxnb#j+f1J~YF#bpHZ)S3`fkZ0AG zq0r!=6O~7z4F|eDRW#ttaY7@mMxcEe9+LRbX-9D#WpJB?J0y@uXui_l9UW6fQSaKA#I?nJ`1XZ&i>^nTJPkLB`XWS&PZ)^5Y07U)x zqmuGJpAT_U;7DDr44~>8P9hf=jL~9XaOA_Kb zkh$6gmE(H{HM{HLon4(2l4Bk$U$#s^TQ7rkM4VH+b7hs*+&%g|Lj}eZqi{%0B*{-_ z+lA($c8|T()ZC13YNZAjY)*O6siTo{wTI z5q_3$*%qUhWrsSEHz20Mu@Mo*it52UXT{N`5@BAyV)G}YlHc^{O#qNtxiE(2*=YVS z0vP&^GNhzfIC)pCSMR_C7R7~Lx8E9*bc}RE7xwonBe@`U{0DzntA|mn?U_cehNB_ zj<;lNYkhr9Mmo-?c{Y|>vSbhh3_PTGc_6!!QFPYCxk4*+eL+2Ob??*`vV??CPk6Ca z0zp{@BIxEz`JwP!(`Q~@X)oPzAd{4vb%~*9t>Pnt-ueKJP%z8jsq{jy)dkGf3Fbte z7Ls-{s<{oI3qSshpDbM_jWJ#*Odwg-9AIb+wWSQN5$@GSIy-tEq>UnrFX3^Bb(zuv zbuZEed&*l9r=)ezqYgPM>zyQ9q{YRl2_Vj7aUmJ*6%fPgYo3m^#so#&FbgQKB)D@B ze39h}1w!Lu7TnIODg8DsI*Zst&DES2oE;&fJG>(hBh)lerM*1QOD{s=>&b${PUDX* zr8JnSI_hU~F{)3Vls6@d2>Ip<-p&WyV$I;Pkgxm><_S98n1{`n4iJPrEsO5l4smg= zC+W; zOFzE(sRgL*@0kXcG3To3_b-;_nn|dWP|eH`P`z{&bEe4%1^|~LeATMvyf5rttwQ>; z3rc7N_s5Qo>6S2`QWZja;Ct*=J@gRxnlM{5!HCJgA9ogbWcdnm@%AXT4zNT*5JZm*)ZcK!@W)^?g)BHElAc0uXc*kY%Z)G~ zrLGKB=?rOycb&D02=9{=X-2_96`_9w8Cmk63T`~zM`B&%u{klHde^Y zCy3aCakUH*!ip2h)3|brOWGS*x)TMNh>2xvPE=%bZjqVGaG>Cd%KS^`_m7O-8{Q-B zmDO6(l|cN+&LQb3Nwv^XIv@iXg^lp+0R~`%*bHo6w7j(Ieji`nwcqAeAMJ8CQE`Y8 z>hC`DRG6VdM``y<@HO=0sm(GQf7h)w5`s$%uwmHj%~JlNGdqD~llXeooi zGsSCzt6Va6Dq%~{|l{Et_br$xd9qj~arO)dah$uaE18XSz83L!-1 z_37%>6VJZ_766GKnn8fl1mg%zR`csS?xfh0m%D_-Ex3#$#iSSuf6wvK0=$Llg-23P4!!jEmYnGWU@6|o zP6&|x^}GjO5aKcie5CvH?PYjiE^Y!hXnrFUmAODsY>81(SdH4FMpv{lBowhd^n%-w z`Ll>?wloTI1x+8)3CN%tjiF#}`A=osSUmh?9!FU1{Hc^(hT8G+q8Ge5_p9mc!CP#} z4@RH01$jglg-BdOner%FzQdWHy$K6+?Haf>V$!yW4=PhKaObH&S5OLC?zy5pmS!4F z2;hLOO{`8eXB2elQYP8&!u28mF5x!#q=?hr; zOpff_6V|$=aT@=_*?8 znJb)4uIA6&R{f|lPRscI&RZxGC{vjDs3+>0#}}QRUkAwHo(2`Wqz#kWzwFq%w~rY) zm@Cx6DZ~&jS#{{Zlq6rvUyO&@f5XuG{oTk_GH&wo85$GMDhV-Q?Y1DO24_wqWKc2`B9_JIHoj|8~bfL1yleA z2ZFDFpNK_|lCc$Z4?~|<8S}Y@3~+qp`;idDWm4ok-~V`8z({EFA_nluQO8W!#oULK z_`DayLvGLCA;A^ru|FQ2`7kH#{*0ztDPH_AGHl1$abI8-q?edQt-oX*=2u$SEU{cp#1Ui~ltK_T)hiie1Re)R z6Q>s0nN`(h1&-_DV<6NhXAEkz%zGZfKQXLB^2upj)O*|tU&JVGd#89oMVuL@WIBH4 z?M_5`N|eL5H- zRaLeOP*U}G!AptLoJtwtX7RmaNHO~k`s+6yaP-*r2@sqjv(GO_CoRT(`i-4iwQPCj zHe*EAq?;|@V+-RMjU)u7rwhI;W0^PiviSZup`wn0Vprg~`#UutsHqT;-1h3};@L~+ zl8h}(cFQ=K7^d=hW#NLDd{kLw*$RZGrxynXErukpH_b)#Ls``%%ROHlrg*^qVh91q z7=1qVg6wUke6U{d@ulYMwjC`kBPb-0@yixy^^wkRU-Sui-x!g+BSj`fmo%1CeX`zx zPPCa#($S0j8g~pXl^PwRa;D3qN{K7-&!5U9x|G(S8Xa<$e(!oq#DtxStE7P`UB~jj z{^HR-^B=Y@AHzTT0OOEj=&?X= zz>$1-aYxLZ!~re;DHToxxfh;TpO@M3{iMfORWKN<$*qFYc(;9eBQ39$4?S3sXMHy}pFAO6j#GQ+{W%t)x;YpsE{b7%A_CQ^b5Bdwnuw|GZ z;viCGRDt>BlO|3CpdPiandz_r25EUl41Y4=xpLZ*(xagv`BSO65}_LFDCixK$h`3{ zrv>DrtAJ>m-W~!vCZ(5WE8?;U;OT;x7x!f}U2u2RdsW*JuRGA!3kj!_c0ugJ+Vxuy zhcKZL$yHU+211;#e?qES?1TL3K3;-2Li|LiZDcVC8g}v9Wq3gZ7W7Dv%P9v@eG4-t zS5Yv{^QrzK#)N7ScNUm+(QOU=9PViuO%fom+~1i=4(A@vTiRE78J8EZn08|CEL|O) zO%xwN@`!1*nlx*c z>_2CP$lkQDdBX>>P5*^so*x7QkRvGU9lbA6sq>s?;6bmLq9Ng+pxb)&#W2S$zRGhp zgls54nE-vV1(fi8(=`4*#vxP++BT6@+j%C?#6}%DfR5^im8iW`$Qr4xw7hzQp|}Zcu8D4{LMCT z7lO)h4fhAn%S$cczeUk_w%?zGbfVmuBmInx>yqOgX-_9~ev$ZeCxj-5z3bcAT3Vr* zd_++NA#s#J1WJ&bd&9oIYazi|A;Gc3RF)2*jy}l6SMoz-Y z$zn?g3dV>kP_FXw7M1#V4v^9t5Hb>78+omsQu~Uw72c7dEz^+NTY)>6u_6Z9iulBJ zbJ$}Z3xgoGh>CdQ-#!deWdM`FBqI)+?2U?Ww{^g`iXRq5Ln+oxAkiZJ<5erMG@~PC zy?V7|I?awB!3F7e;LQQLTqcx{qgoVm0U7&Cod$(j46xGg`sI2G>R)__E*#VS9t>|M zuU@SR!^j&yJJwh`z6-ng}I_Wu59H=pvTWCJm$>+Cp2#3uadO@|2P zXS(o4T-@!|NKh$R(8{I)0T7&#Gb+T;E)zbT?R>0)yv@y#oic$K z!Cz~pq9bd1^)+_Xt*!R&g*9W7kxH7;Jvy1dk7$X$KYyys#L+$iZ5kLGS4P^MfxZOs zaWK(7b7UOTA3U3!J$t_Ry1o8tc;=qa-yGvF7xpiYvy`=zm;?$K7gSEH61fLesKCjx zxi^0*$;F!At0=%jL{yLYQ+H%%Z`!)`{k0)YDW;aMU;kz8=+~OqK5#+9%0?NbmBjR> zxUsle+s^PPqqsb5-(+t&gli{m7gD5gXN0j4v=+Ro=ZrzRf_&hQ7TJIqyXSzpr1uNJnw)!Y}+lQSLKcA8Egi{3IjP3*Np0UIBRMu;)9mUNsZd zBpan(T{DzDoSa$XzJ1$rvGdA7%3&63?thJb!DO>25XEQq@4s)W9&$b!5{O4$!n%Qu zCRFEj(RuP+nOo(X@EfR;!YG4 zDEMOIXNAyYoP2p;hLKUKwArlu_*AWRkDv=_)k!KwQmdMqtLYg8t0I}hS?TV>ho|av z%UX8y>-!u2Nn7V`1DFyOAbp}rR@EJZ6cX3r08Hj2fW*@p#DWc3<}A%vkdJG-bfyv! z00=Om0i5k9!B*ODis?D4EKj4x5v`=WpDwmLQ&Shg6(iL#&z^`K#K>I#=;}HH*eS={ z(OudA^{EC@Y^RmjSvBW4%5Eb@;4Ef8qjH*fXyDQQ=AWK#`HQsdzp*ECFEgMks9|43 z`kk5c=YBYo5B0U(7ttyiBd#PAwTVs0~Ly_Mh*!PQ2+~~@xLwR-x+fFA& zes5A#!oiri*tRCxb|%{5!dvuwak(6utz zJfP~nt0Ad`K8}R+@!nL(pgMF>O*}l(*+ttUzxX|OfguzBYk3p)!rc3=CkKStT2J= z+_fu-=%!#%U_bFg>wRUtGBK4LV{}flfr*om7W)N8RVOF1O)yTl1Wu>X@~X{d@up^G zVXqyt=MWX^6EdVZ!sLiBnz#Sm+qcp@y#8~rk>v=+@c4|&xVXss(~$QEm1E}E3VpjR z51Yo#iv!E_mf%28S!hXC9(s;k*5iG0D46a2UM;MJEN+G%f0fZJ!?XV98yD;<2g$WV_tYbN68s=dbyQ)yK)0oI8 z3#DeV%GCIhM42$+hwE$PB1^Dmz-nM(8#@@fdRd!yy#n+Q4i<-%FIC5O8L1}6S+1km z5D5s#X*BC>WXlwHuU~5Acp2${a$a(4BCSJ9LFHk$3~1;RsG;r4Os?>Zs*x%r+LbTc!TrklQ)K;g91T@x}9Uz_VA6quWyCl zKh%Qk(r(}&$F9;3@vB(WQ-R$>b%2l1LnM3T7EAhe>P;EL(`lfPp=4sgk(+xdfKPIS zQ#Wsp6qlew$rGSBhwURGy*( zbTw*hJwQw-1T>vE$h`iJ5Cm}4MHP=9$5SYZEdbX?Yt7(J1gC5 zJQ(<+#asyT+1UoB)R3gOMaVXF5B)m|85Ln*Nm9R^J9cOgN$|y@s2cP99hw>zoGgFV z=F_pr6-64h1k#6qcY>Ntp6m;t9#oE)U*;~reu|KRSciTN&Yv2_3RV#qF%cpF89)BP z&arqVh%JPl->Wmlhi~(6PGcyC!)%LNEWA#0jZnT2#$~kd;9ksC9oA1Tn>a$;mo+k_ zJl9Px^?974JtR6#=uFLv&~o_^lwFOkfBcii>o~$88V%%oD8FEq3IO>hOqBsNl*sph zHKaEGj!4p1Pf;5=)H6sFK5g18C869UZi~*GVEn=9gg%H1aedj5T@2L=2vc6ZdQORF zQ+_xza7+G}ge8nAAYy&^yr5kut9a7&L?%T|ENuyw)n4GLEiTO@{R9;jo*Z8%n?Z&Qri}JOk{}CpLPDuX zaJ9!u6PMe#FhKa`rMhw!z|B%VJ~J^YItzbBcmacP-~HQ={HIt? z%5Db?;iQ|RFj$3T_WItBghzIgE|HN-IMe5&(0BB~9Tm?MXwTr>J7E-WAK6t_%3wZq zLg+OO81A%-N^&x9vPj>Edy8wdcHmw?J}SI$Vb`T3Rq*cReGR^Rb9->e&JvS7Ub@)m zftL>8Az)l8Pzc#m#426p3IoKyu{v|oGuLzvhyds3)(IT=Jk=YU)6&G=3gO0yvNHGO zYaP=Em}uYS9msqT&87xrHA-H}S!1RfpueRx=VF84Bl3MyR?eYd$-x;_{TgAjF?nhi z;8}+#sX={a$MK~nBqcOa$SOdT=(1QqwijUkgTefk>Yi(e`Kk2oyx`;f^OwL@6qB?m ztvRi$G{*jd>XZNL;Y+g~Dj@q+VTolb1V^ZP-ha`B8 zuT|f+eW0j8=&<2~S<{pN1fK^OZYM{(6RG`&4OGVgje)}D91pRnP$qKB$n@kW%W=f< zbIw?VaB!0{76B0(06rR29upNM-5xPOyzP3f90Ge0DDzSo*&J(8fdaOTs$ORL@HeW|j=R2w8(h{kg0`kr;@3z)Ot%uP{-8syFhkL|(65U2=}LFS~9 zzFS!t2|LwjL5IveR661sMz=qZGFVi6AeN`Uos)a}eZ|Fu{*}+3J#$ZYP0>6$lnf_O zAqM>L^YCgaqL2c|4-fmcgZYh`il?H4ow2&Akpvau5Aq|1D^1(9Z7cE;YBm{`b8~mM zD0|VOb?ed9iCreTu%ATW)tE#JH z5I7^KS-hk0^+<2g?MXPH4kmNSoB-c@b;vWZ?WCQ)c78c0_Vnq~%R>86^@a*VeiV*)VptPZ^8=y_DaCkh-8551lh)6#u(<8%!@O6%DK^D%6oCtm@8FRet&q7( zcb_+JF7yxJ@6gkKu3q+_H-=4xeD0$kLk{;J{OQ|M+Em4|{)2spo7%lfdi3k}ZS#w- znRn0H%=)Gu@}XUe;ooZOeDV5s?5~SUciwdQuq4Od)N{o24u(NKLF3C!%cr&Iu-|#R z>7kK99ZP=me&w}gi%!bUPKK+ulyX8Je);xt%_rRrXLbyI{B=Q}K9~M^^v}Fu=N3Hd z{;0=`VUx}r9Wr<@o!rx5w?Ettth;Kh3d9TGTu!J{|e^=e@1Ux4_am4Dw9;`C%R zM@1BXYj-!()|S7==*6PqN;^(B5kY2*&_E!_>)-3k8-k-tmB--=0P8M~{vi#!*sq6g zN31#3v+at8zgw}53R~_a)WS^LfEzYonG8Mp3D|M6)4OZ$FQdN`UnLsFA(o0Yt5!9D zEa5^q2ldHLPmksY6MaKhb$L*n@ode8jthLg9`L!|(9~YdFskXrk444B?1pSjVp-v9 zvhjlI#tX%$7sSbl)E_;ohNvVvPqKwD@_O>5kI0#5pzrwnHkw;Ppy=|;FIzh;j{?k$ zjuvvy*1(p)oPMCMk1dabH+nNLC5?!ZSd7T*(C^6<1T>O;}lj9#PMz zH>n8$2?9XFvn%VV)B&u(u_}p{e!;3^xefW$_WiV?tr{9`$?b*HDcG@SXMmAhR^4yj z`MA;ZoZ%bL(2_<#WK!!GaWN~yMC^Wyu$N#p7pX1O8&_(|FVKrtdi0f)7flro)-g)_cSVIn;apxTX!5v3X~be0oEj zJd>zpr(VGNQ;CS`8bVf#;yLkZ^;8I%wtP2w1vfXh0)PUyQKLQ=ZJ4~HeN2>e>6F0miZY-?2{sKKO3v1I(veKk(bp<3$E$X>(&N0v77iG)hT z_e?yNI4%7{yhqUT;J8n-tU|RcaCnrxA)`KxAo7>C{gU_g}avQ@y$RS0gpO0${vj+PrGo|wW#j%xgqlNWNwHCJe5uaxnjnw zKftZ|-KKZWG6Di+Mn|&kQnS+lE<%3m-K!^uSe+N?es^z3jRhQ)y~qT0qvP(8!r_*ZxW_Vy+b_r^p>$ znA^OPi|}1~Ky)xmVA^&kc3{64T@V_Q7%40m+{+Gl^ZGR~3DADJjYEa<3*6uAetJby z`@ghb#sA9@mxu_GCv7uFGW=Jw-RID!u~x5g%j4Da@9o+5@&QyT->}}M_b=0-y5Ue{ zcDYOAH@64n)m0=FpP=ekcj@)&EuYL;d4j%9asUJc_@B&aa=X!b8>fD>MV)PB+Y|roWd(2aK8u2BX(?g4)xo@E5Z2jN>U6@96<5y}|2#(cp+k1=R&6 z;7TsUtu54<3>5zM+ZEri8g0o#%NjTt4zgGKeQCe;eI_Fqq4;9T?U$NnX?r&~Lq(iI zsjy}GwoRMlpOBvI`LcN?NwkWf5eyB6<6rL_njEt%M(D2EZ#9|(YB3e1$tz{gCISI} zdU=^RDK}M_yL-$~PtTPTd|pv=i8HJWVek?K;dyfY-V{tp9D&t68u8`d!{f(u6EeJXAg7T+U4oZ3iH7ezAKIEARdWJOgshsEr^mL95-9C zo7+>>kwg}Fln4>)A!^<@?R;vN2isC#no3f;iY(wBV2*jmj!rZ_WIpB_Oj3&t9b%mO zwwG~lEMNN*LF^2gZsO=I=%>%7Cq+1vmMn$OzA+4LgEJe=W8wMAV1c>0xuo9}mlvSh z9J&7(*^M8|nc+jIAljAro%ddS)qY>hzRD%Ue5w?eZ+~we!p#QJZP;&P5__~8K*vvP z+ZtU0A{v0&yXZ4TlJfMb#0_3Q%y&w*r`I}OxYz^Bgci^Qsn(~MdgmV3nrfRNgdLaK zHw05aSTxjIqR%1j$5 z#F*9BOq`z%%_P_mjmxVpi7FWsV&~cED|zV4R;=)-d;}IfCMUWLE>OFb;`gAyV^ti)f41O`}V$jst zJ_+(tR{D-CWo zSlPpGdIJ^?-~IU8fCH-;G!Yt#zM3I}A5}Ls(UmQ$XUW|Mco+N%wU%JxqFF-uQJ&tT zmC7Oot>2EadDcjqw41h=vn{)w%BAx1ZO=Dt)34X7mW#T&W3&$ zt+1T^aO9BLStw!#Dp5q>0Y5z9<*&T1U)9G;JbE$grp3^kpWNF7Sy@=v!9bH}ne{9@ z_?4q9`W!|asW8|^bnw(WQ0C*jG@t$Bk1ps1mO653fji+3v9m{SJAo;vi>cQcy;7GV zDl^mNMdb1UgAAHhP`HqEBKgLbn!cubc*&YHc|W*7Q}TFu)d!X3ulRB3MffBcTz@&cMHwlI+r60!+rxer^B$KL{k7l~CUfdI0>wF|XHlPsgL9}1Gjq}0e0<`m*auB(M~|=+VF}-qeY9(5wK>s6JRlU}X-4|? zZyN$9*t2)FMc08xh~1>M5_Dz4K-VUrTJe%pwJecTCWb6+bA#m)_BbnLRCqX=? z)O&{<{-sPO_uze|x;`0tZEk$nMtTU`PFEzJ-uty55c(&lm~@vnZ^g}lrlF}?y%%H5 z#(9i^(=*pOI&%X@UtD-*RM@HyU+8DPfN<|P_-2v&&6Hg7*!a+QDVLV{qEG|J9v9G> zw~1Az+)av68UK0up35Z04o}|!$|bj2!<#=LxsZOqBX7%&xtV{ERV1{-3ufOqHvgS# z-h>(N&fkh!kikzHWIyj>M995m<4LNRP{$E|auRRx`QEoGAXBdc?>QD0B`ayvOw3b!>YE}48g`Tj;y%fOEww9_;<+XGedN#Z)| zjo9$iD3a0v|Li*HigQ%*wJ0A;Jnck#$yxQ-_ zYOdQPd(4@7(R1y(b(K(TJvvpsn#+fz_2k4(zMQ2?4cZu01$eM3<4!tT|JbU0Avd*R z+Y%C`YG49$cVfcg#WGXNXQ*SFH)a+QO)q8#p;eIksVOJV{|M=poC#zk6AG_E1UPi zx)y5|06-1yPV5ahAnGW7u%IDR49eiPWMYpLOqFjitCq$i7J5p2n%wnJq0AYj1x<)Do_wm3bqjt|s&w+_sws!5O+qW8PG;WM$+tIAuUu!=+ z_8-+Zc+l9vE&(2d7iL9|%^aM}I0~`7T~aKlsz}vgtG|{|fD-#$3nTyF zLMrw$w~N48I8)D&UKk0BX`=i&0<>@ zEh>_&6Hs#5H;PZ5G=MP%;#rZNw_UY8)m0;2=#^(K|9W|NsPN4*!=A#yi82vP3bbR( zrB1bkc_$GK(&( zCpH1!3m!xzDauN^jJ!k*mXlHbP?ZZ8K{=M2sKG6ik-y+z5hh;={Bg_dpXdrMbWZh# z%U$3Sa%tTRDiNlOkxk7Q)Ay4$)BE>OBxK(m6u5f#e*NSYKU@n2^0DJ~u! zT;ITb)F^cr7>a6#Ck=HvAw@Kx2OZ$n38yMb?!B|O?a9kqaWK1uAuZDOS0h;+#?puO zwER+c(<8L1GZwS__PX}%hcvnoxcfk}?Uag4LA@M$HKB0jmVRz@aIf>@5B0jD8#EZ~ zf{R8o?#>IBcS)Uh;DDZeYEvKvkKVn$vHVT;XPcZILz%QWE6X+LE0DUhUss-a^OQt$ z35X1NP%pgIqGBd${BIrz%)T)YD^VsLsdvF=8B5JGsm`ERf($6VV?M+Ys)bGwoFRg5 zpO+|&A!8&8Sz?ZK*}rXTI$?BFo0vg{JBZg!WknK zU(xJ`;MZ>1sotHSPd*hT(N)~1pB|tfI5RB~NCb)^J7By1Ag27BLpLT| zc=WGzC+P>IDUkbiw9l+)i#z=+toj*FVptR$XXjb7s2&SGQ6)jtsE_}p8|pzAg#lpb za3A@dwjCE0FE_Xtc&XQp&GYwHJ{i;x9c`VtGgl06v!Ge*9Ts|Q`8(V6ekkpg_-LLA z=*&C~=}(dI)bvxZ&Q_BlEh*W59|e3OZAy$EfQF)Ch@0E>*a0AoAhC_8mLESWO2QbiM03e9|gM11e#btfqMdY{d4du zpOBx`!RO&Y#KioL@bBee8OK=`BF+l&I3}bG^W8)^Y`aEJF*}Yrlm!#|Osg$BSZ^j> zH1%~o#hSh$zc4xLQ@j)57kS5?(g+!Z@vMe3DJE#6{ZXT-HEQ&Kx;pc?p40A)e+gw@ z$Cjlij3pXEp{S%L%ZM3UrDPeIR7{htM9DTq4MM1)5Q(yuv`D2<8LfzfghGlasebR1 z@q3V4JusR@D72&M!{q{W;v z*akXCEkzYfnBC-J$;2;gjs*83+=Z3fZo7JVM^Lw~ht0JA6mk#K>>oKlKyE@KW48$j z0=H-$nc5p6x{NCo|3?4L_QDHh7Us3JQx1l(o8&L(=v+*BTF;T;ev&MU|BdAzy#^I5 z9@4fiW|ggAI!utxF+!>c^W{I#yGTaAB$XhYTb-Nw0MlEjJ0ML74+mtxlw_3xR@{-! zo)vBl`l}>VsN}dzbDQRwW3sJ#61L(+n~Jpu*BcBO(z;C&8doKvs!pF1NR-}B@?RQp z^ytwP=kwJKrKuTQ%j*Z4-h<6Xs=C@rU%fBb&hx|V3rNTwlf^5=>Jie~uIgMdN-J$x{&}xa zOm0Ky7HaY_H8WdDKG?n$cvKuobTyAQHOL^?8|v}Gzq2< z7Zs@(@a+`)foUjV4Os^+5CLAw#(qgzIo~;|a=;H#0Ot) zZRGODqH+?+C24|K$(v2gKt%;?cQn6C)=2@~`3wHRPRLYgzBDI^MtjqTkUBD7vs1e| zbQa>~{-11Q)_(s{X5i;M}?X99W$9+1-wlW zbbAVNn8KD$b6iOdq$Lv@+Y6G9#ns1-Sf0ZI6bqaj%@mG`*hb6k!=?y`IaE!&az>L% z6zPX-iSaGrc5HDU!V+OyZT$E{E)R%g;ti&d1RaO#G`-&dL||kp6haRq?pdsO_O6E3 z*d}~V%C2yHh1&u4O)2;SHD1|WejDiu&=c2vJEEj*Z}UcEh=1%}y325%*Y4xPKzSh~ zN~jl7669qUv!K0rt>9BYOxHN9+SC7sLB=d1g+`fML&nRvyn$>6nes->ATTbOWayC` zb)SMwO3EY9?+F}16QgZh!{wlE92riYho9d}&+#*m(20T@z#*?T&SOmPrgTMih@&VF zq8LnoIrd!qC}XBk=2h`~*sbNGn84F3t`d3>$7m%K+n^n;=gK*_}_nE6%{v z0#jVfstgBp>8Gx~>Ac-v$4kt0ThzqC zTXRP{l7SSxt7&xSqd@Mt5FTkeQ0`?9^+`{#)Az3co_a?{pb+nHsRbDqf`~%He5z7IUkj?= zz4yN@Cj$`51E)!28j(hZ{&qGNEr2-rC@9B|hMcx_5FH>SYNa*j)1xj-_ZCM)5-H&*JYf@tKRxAY z@xG$MPj92BZSk!V1~-*aX#MMzv}*WxnDAzA7CH!!$=fg@@BkhO4QFnu32g!$9kKbN z=@g!02OEB|pan?CWfbMSe}F8BPaFP}LT&jc2od6;^N*_fF2YJkl~=UP2Xhm08l=%f z)*$$plo+(yA0Q}1Jxuc?8KctelqO)86H7Z;SII;M(Q9FZcVNc-jjLnMTADMN49rL- z48l*aqv&F<=-+`fj4a+4Y+y`v+#`2u(8r+*F0}!mcRcqT&xB^8dk0BlVrNcm{SBfb z$wV7)+-5CWAP_y7_~D`DsGQhZQFt<~h*F%ZI4m*_W%f)N1;BqYdenw9A1h+i*`m<}`rLAI-_M^O;FkO=gn7 zWe~2X)Ms4YXJn1UNCRu;kWHsQf4*TpKE96b)A1aec~sAYYR#4dekxBH)TNaz3D3n9 z?lv~Ti*>CV6Sg0omO(-_fBn~G`1#>hSNBzY;+8hwS8~P&1|fW$LGuP21nD;1NSY@C zuN>bBI31#2FZLXh>*))YwP)yuBhC{bwGtxdcuRE}hJ_gB+^gyz*>{qSU_?liDs)XeRt+JdmQAIrnr|p)I z;snnpIJH0y!Tglqnab*7--`)~aIi=ZWv9z%DcwkV08=3hCjdmUp$_GM7VN~E|0$P# z(68eNysNg@c7OFKzOM|~rsW2UP6SaAxB3OW;K?DsB;b%Z_FhB5?balD;*Q(6!F$5! zUx1eC2?xU>K=<bU!x_mMDql5q~5xR0B;Edhi=75Ek;IceuGM5U{mOTU3Pn}~WxDx3Q;c5|O z4&8Y}8=InKR(W+s&&4X5@GpJ@+^DH!3;GL+&Z|oV$;fC+lS$?r|D#lhydhEf zmeswhsMrMAN>N1j%ZSv~-qI0ozLq)Ljl98a2#-syWgs9HyTpXRXO}|Vs%7RUxlL1r zsK98HhuhI>!2U)FGC`R7Eh+`tYLmbefajL>R*s$5bpGc}u$x{wc0S8YMY;gYday{P z@R07KfZ^QAA-=Ho_WauP%#h#rsq1&| zR$ohL>_j%!pSzEHO4c#l8-EEjiqba`jU!c)D2G*-B-qdjwJ_?*k_x*4g2i2@$+?Cb zD$8b#I#K)A7CM3AnLyE%1n&SpEbrUvDi1q7N5(-TED`&k)Ol?k4Tkspv{saZ!2Dw4 z3+dL}^UXpyj4&z^;baKa7{~L3)YK`ZoxGfiPG7V5i@Po0h#uQP^_8FhXbI4K##b%n1O+ zmvog4sZ4R8Fx?mA-k0(Om3Mf@@bEW`;kr&fv%>NNtyIb$X*Ix)$1%g-a?Z8RM=5@} z9h@++q}nC>C_Nl}0BgYFGFo4oZ$D@0l;Cml?!qqGIa3dG)v^@CU&?(d-pw2`9uj-s0^~#Mt5X?OiUf zSS$^LAi><;HQ7!1{=I(ib0PrPjqt0eslqRR+d&2Q;Vs}vIW_kmV&W%UA4TaQrTp-D zo*X7UBX2b3{<{}i^>tssWLo*Av|RFfe23_6@49RI@s`bbG{c4DNx{e}>3c@nrC(ku6hmK~Y zn<)T&loA4`i;uO8Y6ghV7#J<}hh%aiMs$GJCG$}4h^U){0W_2>oDSNSiE0V_nAB1- z3`^wVm?ynOpJ{_@p%6h8vAR8;;bceuPh^o%8x=sx(nujGge1E{JcQwUG<&;LH-chb zN-EHkh>E&^-xjL=Aq{FSLdJB0NHs&t5UsU+g9)!WmHndnKIGVi=gsFZ5lV%6P@aJ} z(Kg1BYYf-w>(uQ$&lSx2a93E-%=!ug94*T}2f&yF=;{X_j+>hglaOBYg;Xlz4TuT^ zpmDUlQBqW9I-JjlX0M)gv35iEEx9IFn(ubT z!Eguh!vks=^H=+oaAUX*0ATP}|&)L$6~PfMC!RA3S2>y-<%tsGYWNSyW< zWBwU1r!(t;d|!zU^pKZp20Fx{uL^Ui=Q3D-B7(ys_THd09DM+RM4<9bf(JaD0xX`R z`wkYf;D-uDVPT;x0;xM@6_uG$g}l0IhPVrZLULwyne0oVsAlTD++3Y*=dWGD|I0My zTOPO^eDMbTPmCCgP2AEC;lVv_+|`ezbJLDfw#iEZ(~pGeQ~dlnS7D!Otm>L5Fw|PR zED*(j3?$^kWeyQ3PvWOZK4iYKQk>Jd7k<7oZqikF;NQn|Wd=J6KwB4Uu=4TMh1^;GKYH%wBf$Z|Zv4&A|8M>LI=lWg6zIyXr2#&z(Ix zXT48$e*VVt>E2iXB(YZtSN!6TI`v}B?%jXx+xOF9gZ}@IPC!ZMpU{C*Cu8)|k!p2k z+n4Z~mXb+b(F*$shF2SfcOa_^uzioGKUFO0y{*JwSwfP^?r>aKYkyjbA5^Y~=L?$7;H7x3#sRZn7K3a!H?2{=}6`BqD- zBu1n109Gfvh{d*a&sBeo&pOhrP5(Mw%OIj)q73Vt^s(j=X?aRQg2$b_yrmFT5|$5J zlvNT>*gFm-IGw|M09m=u_MJQb_>n1E^ z3Bi03albny4JS@_s=Iq!PQlM2nXrS9wI904NEBSfF}aJR`XS(_WheI^Hdbzt7FFX&z$E;#!t*B;Bji ztNXT@_3=>6hX*c{X|5$v&+&fQ%H zva_rwyh-d{!vdj6V`mu#b=+ z?K~8CT&k3VN@Vi&+jWGjpF1-4U~<|mq-yrX#nh(zH* zD3vTuL}kS>RCfsgOi>St3Lb4V`?z-nP1LR8+6H(?4M&x3zOSzTLSMi`5p|Fow7qmY z=14cogIKbN1mMpfZq93qXF~#PCYdydd@=!~Av^RKm_TUeMz(^8(xm(R1>LUoTp52! zH$N?HyNh*mwU;q^Py`i@`--}%G=n66=3T{Jq+PJ`NOR1z=rHw`cuaempl28r9!9?D zG3Ia*g&5IASpk|g5S(#bNkS#nIK7SXgjvfqMFkP<0m+06z%T(Z zou^*Sc@bxJb1N1;JEM>f9fM(+8kLNOeREQp(bq3;9kQN$J#5QX> z>F~R0q^V^NKe@7MV(!B<8~FUiTdzKNLHGRVi@oQ-Lt@t&SFRhyyP-79vwIs; z@+8K3L1Et9T?cx2Z^9=70YM|Gz;qQFi^f>)k+%t`jE>tADmiy#>7$`-l7ge6EGpfA z_kwu|Yp3=53eF3FmNj08IhB+DpghF0M8GAG0CYb|WIJV1`Uk^b1unmODcG;N*ap0w zyXHVNq9GZB1LFw$1Sxz`7RuliDk1;i9RO~$s@Pg(7AJvFuY-9xLvR1$Z+2Aw%~4~} zjdEI4t#Ba`dsxbOvAjmd*tOlwes8EI1+UbZ$dR4PZR!b1k#2%63q3d*Pe z=_6yh@RrPCx_#J+dL<8pG9uIETU_+EyCF9vKb{tU+0#2WY2YvK>>X|tT)Q1x`{GW2 z1qG{_&n+&Dne-)SJVX}8?XPx06t%f3E^h!$X`)FIK`7yAg}vnozA6c>pd)l`lR*hq zoC#GI7(<*OK!H8QOfNfo)~ZJ>Yr2pwp+GXGO9m%hFmsX!N=1*4f$Kw>KO+l(kJ6|a zI_P-g^1OoaYbi`!Kb+=fo;*2u#=&fTjRZ$pS-{vN14;^*W+RrScZaH!H-EL&>WbRf zOSAL4?>ewBcFiWTDVqWkvN*4bs};ZL7@+r|T%%H2@{Jly z%KOnT+{@NkJIRPLoEdJge9>CX6*319*$ycMW}~ghVcJ@IUZ@$4{6KMzW)w@`54%&c zl<>>X82tzunHCQelcPtcV3&*a8FQ;$XDPsx6!7ouE#dOC`{L{r`!P=c2EE&JC=QUW zTV?&|J8Y^QO(gD-=~tB-KsrSiNtwWHHS?HxAN3$}3T|WrDzJ=XC=BImxmR=5tP|-I z7JX?)Os00#w~q^RIMU^I65L*$ltNk}i6x@|90b?~E>4i~I|Nj$==WSK;Rt_R>kt+Z z*?T0xG7&W=PCyJgYK93QT!`Cxal*t*cm{D;Op3$;no44?*Bg+oMsmp4HDooV`YbW} zg3M4w8c~Yz$Ep7F+K5~Jhc29cU3~b;A8iX76dDiHZZxQ(bR+knS1T`CoNVAlixaib zm+10x>#B9yt})Pk2n9Uqco9PLbpFkLD1Q*Gq>xgMmFD7CkO9h3_{uB=m`6ouZoj6s zcKFM<(Ha#NqNC(nC$rM$Kwx*x_dYzTH<|p_BS-qcP%j9s)zQ}W`xI-_-Nb&(jZdTL zX;ErW!ma+v$b}LPqW)(2(f2Ps$(c@1`Z(O7z6>{0;c{}f{?1HPnP^Emt{Fe0qSFa_ z6I=jGti0=9>yFXYJ-{XqjHF_wTYW@XMJ|qG7)4_MeIlitOGaLSS9tiVahHeJTgUdj zlsa(1oGYX;($V1vKt&PkgCt5EpB}`xw5A62k0g>HDoy3v8w@V00uDG;gmDzPAM(kL z2e!2Gpe)X2Z(IeKZa9Bt3u3EErG-UhlhW&sCS7U60sB zc0XLkbBx|Zo0>?z%TM&Zu4l^zVz7Gr6uob$dzG3_8NiT9Zkrj`}aS2t~>^iEiQ9t^LJn&u!t%}Cijs( zZlSxJJL}nhZ7s<2t&VIJ2IXWDU87R&%B8gIVX265h)}+Tr>ixvN|W(ZQbGx!&PhB8 zanZ1|ICgRZWgd-)F?c|v{$ipB9~6wz=bsvh4(t|io0wl;Hs!bwV*10Jq12L|1GFDG z>=>Cgp%xa0RT7HF43q#TmFf?Ln?PtB91w%8)aiV(Tz8cXKq4X!K$jo``v}lY6rwv7 zvuAu|IAaZ&9~Wl1ISi6lN^uIsMW*{vsD%{jMf;_A+IGJZ9W4w>Nm*hX`|MIi2b=d? zzN!o{0bCWu35m-@C_+8M^t!rH$tpFR8_$R)o4}5SsAy+-d?&FfXY-sEl32(Q#bLE$H>Y=(haI3$SdJg zMi4^oO9UH`d4i~PT0*TKE(io}lmakuAMe+9)1w7qRUTh(8Q@zyXk{z_nL(s&QVUXF z(|0+L8pPd~T3y&dkbMN|H4BLM7Av#7=o2y&m{iCo`V^P2V79btd5X8BqcSlM4yW{z>Zy^$MX!wD^pk#No7+ezb*)Ks<~;V(aW7uINU1j1LBFmuO;%L(hlmSBWZ zQl_uv!D&WLVughjBQOAu$z3AtIho7NYcC=`Z#+>FV_gO_YXqvz`3o0t3|ixrCM;zh z01k#k)_ublX1>&3O%oCyKPTKiz|IxGERd6)419?7;9#nm5zK&V(`#%8x~D;5^Z)Cz zR#BgpGp&dBt$oH`9j=RwJG=8wzOG2z4;<)`uh~&%81Nqj{3Inyp&q!RwSClX-oAjq zC?mv5lfJi}%!I&*nNsVD*0bIXpWn3?qb*JNSfy25@S6QBiUPyQWT-CxkBry!XwWE{8Be+N6s4pQO z#b`6ys6| zq6-%0Ei)T{SeoM7QWO)rt~2vq$o!-zs&~E z;66qsCf;RHg*#al0Z37}6w%iac51$+-vGonorUy+5rZ=Zifwx9?J4tDvHb=Ied@QP zr0hJ12emIhJbbRLt$Np?b3LT{f}}>gNYS@k(c1a%w0PpJEu9TbUAVAt`A(wP8^I)9 z>15C=coH+Tatle4*z&x^rObx%n?^;bhh`InOlM@%7_t9kim1$0v$F8Kb^CUzjJcqD z%CBlc)je&1O-qFUufDz}Xvx7H89|rI=JXR%IW!MuTnI(H)m(oQN4QHgW@Rde%)1d6 zXL3&VN!&y}ifI)hBiM%eP&&9>&NWIkzh?MZ!Hv11<4j@~R-a%xVsSxPjX4LUNX>QG zbr79IB*ktNoI0fG;*fewY+7M_C)oogT7kJ)*)*#qIRTuN0hpvatF5x8L|(XHOf(aO zoMsnPv0Y{Urv1tOWz3|w>JvkFL~nAq{3RVLt-1Ea>sb1b3}nN0L&RPAOZM z9s&Ii?7Sb{cW!xh$iKp0MhBs5dL?s&{1AZvqafz7aP3n$PwZV}f-n(7MrZ<>Cf&Tb ztt`s4fAZ4`@uU%o1=W=(Frg?%Yn`?}JbrB_NDf@E6L|H?G%_R1KWPwj#jKz4%Tfz* z3ms)0rh&psM_WBCo$%OJAZ>4C8tm5YIqk=>~uM< zUJie@xwO7f@Ni>DKNo&W@1zk}N+l3GWcZE9d4IkarJ29Ptt*8naTKo5P(u7aqqZrq zA7hcHfv#NS%Z$C5ic*h*Q={?4rACszyt512lk<#s`?N>C3&<9(2Y+96b)*Q8A$Q!0 zoQ8idQZHGg;t5w0v-f8x6v~=r#*=1qn-i2p&lK-ocXC|&8Z~ML{<4770Q@4z=B2Kp zjk*X(W-A+CeBfY3iEt}l(`~d6hN1RT8)-iLOiTTWR@r$~787E<8ZCV&yF^gv2E8B# z@{UAc$curyX5QN;ts4l4Etn1iTnvfY6yBu7=`Qm^ws&yd5M;1XUjl-dN0sIIltq1w z-(LcPtj^8a(z}sjW1#VHEy=kzS*vt>i}`RwRXf5uN1K z*CRYf0*NC>;91PjEES@(E#Fjd7yu%gVVfJp9bIdh5*=h3oQz+WJ|pcws3rn45+bBh z26Y!tA)d{NXeT{t;j{qr+sc`PDnMxFz2uw+IF?IYB;Y_)A{itv<0=d(6sAc*fht(J zoWFmHC6>r9tgylj(?BkKp^5zO)95s6$@C4m-33_^yGC4R5^0r5pNZe>bAw!mac@d8 zfeZE;r8(q5p0{#~GX{15nb=CTlIioymJ!jEW!?-5UYT?WDc~`Ekdl~?7SBsdcd$Xm z(_p8f6%jsn$+}hVU(Cc_M`UOc9WP#d7NcR?K2J0dDBRZDkpd+=GZIB@-RT?xTM0K)uu0S!3Nr zEeel9u5JJq+`5l&4wgHS1S215Oz3HqHBo9&M4ryYGqzu+?J|gu0#tP10`k$1yZJw% zO=ZaUZuCV40)810sALp~ot-BYrf|sFuS)1gl6YC#T&+@%z(vCxqJ*v3Mn-8hY`YXTgwv&pBYyy>|ADlO+o;YJd_0?4Cv++d}J{MixQ0;~#`ls4jI~yCd(W6IO z46HkbMK(aPFnI6x?>~Gv zKE0`YS&yKKyqleh3_gIqu3?@cS$fFy$1PA+qyiEzK7TLg+s}_lO&77!5FEM}6cpTH zu%6zx{1)6QO^^oTQt-2*1|Q1BwoN2`Ek^kF(;-s`SMMcEN-cADnLV@OoDujG3P(cne&vJEp7f^&sOnH zQXy3EhJ=`s*ZAf6YYqN>nu-L6U)|mN%s4WBJ50uq-XIrb#2ryLnT?a*%%7re-O-*r z;1|wu-mu}&1#w?+Cb)#O{qp}6Z+HGawDD^+{(D5lC3Tno{OiOC-$gb1=LZ#vE8cwM o*FOn5|N48jJi^yMPCoI9;AtyLjy`I8NdBAI 0\) on any non-vanishing subset of the morphology. + +\section{Derivation and FVM} +\label{sec:org06e2271} + +The cable equation is the foundation of Arbor's model of the neuron +\begin{align*} + c_{m} \partial_{t} V = \frac{1}{2 \pi a} \partial_{x} \left(\frac{\pi a^{2}}{R_{L}} \partial_{x} V\right) + i_{m} +\end{align*} +We want to solve the diffusion equation, excluding currents for now, +\begin{align*} +\partial_{t} M = \nabla \cdot (D \nabla M) +\end{align*} +by application of the finite volume method (as for the cable equation). That is, +we average over the control volume (CV) \(V\) to rewrite in terms of the average +concentration \(\bar{M}\) and apply Stoke's theorem on the right hand side. Note +that we suppress the species subscript \(s\) for clarity where obvious from +context or not relevant to the discussion. Thus +\begin{align*} +\partial_{t} \bar M_{i} = \frac{1}{\Delta V_{i}}\int\limits_{\partial V} \mathrm{d}a \cdot D \nabla M +\end{align*} +For linking to NMODL, note that \(M\) is identified with \texttt{Xd} in this discussion. +Note that \(\nabla \sim \partial_{x}\) in our 1.5d model. + +Next, we define the fluxes +\begin{align*} +F_{ij} = \sigma_{ij}(\bar M_{i} - \bar M_{j}) +\end{align*} +where \(\sigma_{ij}\) is the contact area of segments \(i\) and \(j\). + +Then we apply an implicit Euler time-step +\begin{align*} +\frac{1}{\Delta t} \left(M^{k+1} - M^{k}\right) = \sum_{j}\frac{\sigma_{ij}}{P_{L}\Delta x_{ij}}\eta_{ij} \left(M_{i}^{k+1} - M_{j}^{k+1}\right) +\end{align*} +where \(\eta_{ij} = 1\) if \(i\) and \(j\) are neighbours and zero otherwise. We introduced +\(P_L = P \cdot A/l\) where \(P = 1/D\) in analogy with \(R_{L}\) ('\emph{specific diffusive +resistivity}'). + +This can be rewritten to expose the structure of the linear system more clearly +\begin{align*} +\frac{1}{\Delta t}M_{i}^{k}= \frac{1}{\Delta t}M_{i}^{k+1} + \sum\limits_{j}\beta_{ij} \left(M_{i}^{k+1} - M_{j}^{k+1} \right) +\end{align*} +where +\begin{align*} +\beta_{ij} = \frac{\sigma_{ij}}{P_{L} \Delta x_{ij}}\eta_{ij} +\end{align*} + +\section{Treatment of Trans-Membrane Ion Flux} +\label{sec:org0eeed52} + +Finally, we add back the ionic currents to the concentration changes to arrive at +\begin{align*} +\frac{1}{\Delta t}M_{i}^{k} = \left(\frac{1}{\Delta t} + + \sum\limits_{j}\beta_{ij}\right) M_{i}^{k+1} - \sum\limits_{j}\beta_{ij}M_{j}^{k+1} + \frac{\sigma_{i}}{q I_m(V^{k+1 +}) +\end{align*} +where we used the CV surface \(\sigma_{i}\), the ion species' current \(I_m\) through +\(\sigma_{i}\) and its charge \(q\). + +We follow Arbor's model and write Ohm's law +\begin{align*} +g = \frac{\partial I_m(V)}{\partial V} = \frac{\partial t}{\partial V}\frac{\partial I_m}{\partial t} +\end{align*} +where \(g\) is the \emph{per species conductivity} and approximately we have +\begin{align*} +I_m^{k+1} - I_m^{k} = g\left(V^{k+1} - V^{k}\right) +\end{align*} +Inserting this into the diffusion equation and rearranging to separate +\(\cdot^{k}\) and \(\cdot^{k+1}\) terms +\begin{align*} +\frac{1}{\Delta t}M_{i}^{k} - \frac{\sigma_{i}}{q}\left(I_m^k - gV^k\right)= \left(\frac{1}{\Delta t} + + \sum\limits_{j}\beta_{ij}\right) M_{i}^{k+1} - \sum\limits_{j}\beta_{ij}M_{j}^{k+1} + \frac{\sigma_{i}g}{q} V^{k+1} +\end{align*} + +In \texttt{fvm\_discretize} we compute \(\alpha_{ij}\) -- the analogue for \(\beta_{ij}\) in the cable +equation -- called \texttt{face\_conductance} in code +\begin{verbatim} +mcable span{bid, parent_refpt, cv_refpt}; +double resistance = + embedding.integrate_ixa(span, + D.axial_resistivity[0].at(bid)); +D.face_conductance[i] = 100/resistance; // 100 scales to µS. +\end{verbatim} + +\section{Units} +\label{sec:org4ff2b42} + +We have the following units preset for us + +\begin{center} +\begin{tabular}{llll} +\hline +Quantity & Symbol & Unit & SI\\ +\hline +Concentration & \(M\) & \(m\mathrm{mol}/l\) & \(10^{-6} \mathrm{mol}/m^{3}\)\\ +Length & \(x\) & \(\mu m\) & \(10^{-6} m\)\\ +Area & \(A\) & \((\mu m)^{2}\) & \(10^{-12} m^{2}\)\\ +Time & \(t\) & \(ms\) & \(10^{-3} s\)\\ +\hline +\end{tabular} +\end{center} + +From this we need to fix units for +\begin{itemize} +\item fluxes \(F\) +\item diffusivity \(D\) and \(D_{L}\) +\item diffusive resistivity \(P\) and \(P_{L}\) +\end{itemize} + +We start with \(D\) and apply dimensional analysis to the diffusion equation to note +\begin{align*} +[M]/[T] &= [M][D]/[L^{2}]\\ +\end{align*} +which results in +\begin{align*} +[D] &= [L^{2}][T]^{-1}\\ +&= (\mu m)^{2}/ms = 10^{-9} m^{2}/ s +\end{align*} +in Arbor's internal units. +Similarly, we rewrite the diffusion equation in its abstract form +\begin{align*} +\partial_{t} M = \nabla \cdot F +\end{align*} +to arrive at +\begin{align*} +[M]/[T] &= [F]/[L]\\ +\Leftrightarrow [F] &= [L][M][T]^{-1}\\ +\Rightarrow [F] &= 10^{-9} \mathrm{mol}/(m^{2} s) +\end{align*} + +From Yasuda et al we have \([D_{eff}] = 10^{-12}m^{2}/s\) which fits our derivation +for \(D\), expect for their use of \([T] = s\) as opposed to \([T]=ms\). +\end{document} diff --git a/doc/dev/cable_cell.rst b/doc/dev/cable_cell.rst new file mode 100644 index 0000000000..248c0e8d2b --- /dev/null +++ b/doc/dev/cable_cell.rst @@ -0,0 +1,115 @@ +.. _cable_cell: + +How the Cable Cell is made +========================== + +This is a short tour through the inner workings of a cable cell intended for new +Arbor developers. Cable cells are not the sole cell type supported in Arbor, but +both the most common and most complex kind. + +This is the introduction from which more detailed descriptions will branch out. +As such, we will start with a simple cable cell simulation and how the user input +is turned into an executable object. + +Terminology +----------- + +In Arbor's codebase some prefixes are used as a low-key namespacing + +- ``arb_``:: Mech ABI types, in general use through out Arbor, eg + ``arb_mechanism_type``. +- ``fvm_``:: Concerning use by the Finite Volume Method (FVM), eg + ``fvm_lowered_cell``. +- ``mc_``:: Related to Multi-Compartment (Cells), identical to cable cells the + difference is purely historical, eg ``mc_cell_group``. + +Setting up a Cable Cell simulation +---------------------------------- + +Arbor constructs a runnable simulation from three ingredients: + +- ``recipe``:: a queryable structure that collects cells, connections, gap + junctions, etc. +- ``context``:: a hardware configuration, summarising threads, GPU, and MPI + resources to be used. +- ``domain_decomposition``:: Distribution of cells over the ``context``, made + from ``context`` and ``recipe``. + +The interesting part here is the ``recipe``, which is used to lazily produce the +data required by the ``simulation`` and ``domain_decomposition``. A simple example +might be this model of a single cell + +.. code:: c++ + + struct recipe: public arb::recipe { + recipe(const arb::morphology& m, const arb::decor& d): cell{m, d} {} + + arb::cell_size_type num_cells() const override { return 1; } + + std::vector get_probes(arb::cell_gid_type) const override { return {}; } + + arb::cell_kind get_cell_kind(arb::cell_gid_type) const override { return arb::cell_kind::cable; } + + std::any get_global_properties(arb::cell_kind) const override { return gprop; } + + arb::util::unique_any get_cell_description(arb::cell_gid_type) const override { return cell; } + + arb::cable_cell cell + arb::cable_cell_global_properties gprop; + }; + +As you can see, data is produced on request by feeding the recipe a +``cell_gid_type``. Finally, we need to have a ``morphology`` and a ``decor`` to +generate a ``cable_cell``. Please refer to the documentation on how to construct +these objects. For now, it is sufficient to note that a ``cable_cell`` is a +description of a cell, consisting of a cell geometry and a mapping of +sub-geometries to properties, rather an object that can be simulated. At this point +ion channels are described by a structure ``(name, [(parameter, value)])``. + +Lowered Cells, Shared State, and the Discretisation +--------------------------------------------------- + +To obtain a simulation we need to turn the ``cable_cell`` description object +into a ``fvm_lowered_cell``. However, multiple cells are collected into a +``mc_cell_group`` and ``fvm_lowered_cell`` is the lowered representation of a +full cell group. The ``fvm_lowered_cell`` is responsible for holding the +backend-specific data of a cell group, managing sampling and stimuli, facilitate +event processing, and driving time integration. + +Discretisation splits the segments described by the morphology into *control +volumes* (CV; sometimes called *compartments*) according to a ``cv_policy``. +This allows us to construct a system of linear equations, the Hines matrix, to +describe the evolution of the CV voltages according to the cable equation. Refer +to :ref:`Discretisation ` and :ref:`Cable equation +`. + +Backend-dependent data is stored in ``shared_state`` as per-compartment data and +indices into these arrays. Upon ``fvm_lowered_cell::initialize`` these are +populated using the concrete discretisation and the ``cable_cell`` description. +Also, mechanisms are concretised using the provided ``mechanism_catalogue`` and +their internal data is set up in ``shared_state``. See :ref:`Shared state ` +for more details + +Main integration loop +--------------------- + +Now we are in a state to simulate a cell group by calling +``simulation::run(t_end, dt)``. + +The integration in Arbor proceeds in *epochs* with a length less than half a +time constant :math:`T_{min}`, which is the maximum time over which cell groups +can evolve independently. The length :math:`T_{min}` is derived as the minimum over all +axonal/synaptic delays. This works since we know that an event at time :math:`t` +can have an effect at time :math:`t + T_{min}` at the soonest. The factor of one +half stems from double-buffering to overlap communication and computation. So, +Arbor collects all events in an epoch and transmits them in bulk, see +:ref:`Communication ` for details. + +Integration in Arbor is then split into three parts: + +1. apply effect of events to mechanisms :ref:`Event Handling ` +2. evolve mechanisms and apply currents :ref:`Mechanisms ` +3. solve voltage equations, see :ref:`Solver ` + +Integration proceeds as far as possible without needing to process an event, but +at most with the given time step `dt`. diff --git a/doc/dev/cell_groups.rst b/doc/dev/cell_groups.rst new file mode 100644 index 0000000000..abcdc61b71 --- /dev/null +++ b/doc/dev/cell_groups.rst @@ -0,0 +1,84 @@ +.. _cell_groups: + +Cell groups +=========== + +Cell groups represent a union of cells of a single *kind* simulated in lockstep. +In a sense, their existence is an optimisation, since parts of the internal +state and computations can be shared between cell in single group. The currently +most complicated cell group is the one for cable cells, called ``mc_cell_group`` +(``mc`` stands for multi-compartment, used in older parts of Arbor), so we will +focus on this type here. + +Cell groups are created by domain decomposition methods on consideration of soft +(like performance optimisation) and hard (cells connected by gap junctions must +be in the same group) constraints. + +Cable Cell group ``mc_cell_group`` +---------------------------------- + +Cable cell groups have backing store in ``shared_state`` (given the +introduction, we now understand that the ``shared`` stands for 'shared' between +cell in a group). In this data set, we also collect the private data of +mechanisms. One thing to watch out for here is that instances of the same +mechanism on a cell group will be collated. + +Let us examine an example of such a cell group; assume the following + +1. the group comprises two cells with a total of 9 CVs + 1. cell 0 has 4 CVs + 2. cell 1 has 5 CVs +2. ``pas`` has been painted on three regions and collated + 1. region 0 covers CVs [0 1 2] + 2. region 1 covers CV 5 + 3. region 2 covers CV 7 +3. ``pas`` has two parameters ``g`` (conductance density) and ``E`` (resting potential) + +.. code:: + + - shared_state + - mechanisms + - id 0 + - name "pas" + - width 5 + - parameters + - id 0 + - name "g" + - values [* * * * *] + - id 1 + - name "E" + - values [* * * * *] + - index [0 1 2 5 7] + / | | | \ + / / / | | + / / / \ \ + - voltage [* * * * * * * * *] + +Mechanisms access their view of the cell group data via the +``arb_mechanism_ppack`` structure. To continue with our example, the ``pas`` +mechanism would iterate through its view on the cell group voltage to +compute the current density ``i`` like this + +.. code:: + + for ix in 0..width + # Obtain parameters + g = ppack.parameters["g"][ix] + E = ppack.parameters["E"][ix] + # Fetch voltage, note the indirection + cv = ppack.index[ix] + u = ppack.voltage[cv] + # Write outgoing current + ppack.i[ix] = g*(u - E) + +In general, cell group wide quantities (like ``voltage`` here) need to be +indexed via ``ppack.index``. Note, that the layout of parameters in ``ppack`` is +this in reality: + +.. code:: + + - ppack + - parameters [g g g g g E E E E E] + +When using NMODL, we translate names like ``g`` to offsets into the parameter array +at compile time. Handwritten mechanisms need to do this manually. diff --git a/doc/dev/communication.rst b/doc/dev/communication.rst new file mode 100644 index 0000000000..8166134533 --- /dev/null +++ b/doc/dev/communication.rst @@ -0,0 +1,300 @@ +.. _communication: + +Communication in Arbor +====================== + +Communication between cells (and thus cell groups) is facilitated using discrete +events which we call `spikes` in analogy to the underlying neurobiological +process. Spikes are the only way to communicate between different cell kinds, eg +cable cells and integrate-and-fire. In accordance to current theory, spikes are +reduced to a simple time value. The connection is abstracted into a weight and a +delay; modelling all axonal processes. While this may seem crude, it is a well +supported model and commonly used in neuronal simulations. + +Connections are formed between sources (cable cell: spike detectors) and targets +(cable cell: synapses). During runtime, events from all sources are concatenated +on all MPI ranks using ``Allgatherv`` and targets are responsible for selecting +events they have subscribed to. This is optimised for by sorting events locally +(by source) and relying on the process layout to convert this into a *globally* +sorted array. + +Exchange of Spikes +================== + +We will start by discussing the exchange of spikes, an extended summary of the +full communicator class can be found in the next section. Communication of +spikes is facilitated through the ``communicator::exchange`` method. which is + +.. code-block:: c++ + + // aka cell_member_type, lexicographic order provided + struct id_type { + gid_type gid; + lid_type index; + }; + + struct spike { + id_type source; + double time; + }; + + using spike_vec = std::vector; + + // From gathered_vector + template + struct gathered_vector { + std::vector values_; + std::vector partition_; + }; + + using g_spike_vec = gathered_vector; + + g_spike_vec communicator::exchange(spike_vec local_spikes) { // Take by value, since we modify (sort) anyhow. + // sort the spikes in ascending order of source gid + util::sort_by(local_spikes, [](spike s){ return s.source; }); + // global all-to-all to gather a local copy of the global spike list on each node. + auto global_spikes = distributed_->gather_spikes(local_spikes); + num_spikes_ += global_spikes.size(); + return global_spikes; + } + + // From mpi_context + g_spike_vec gather_spikes(const spike_ve& local_spikes) const { + return mpi::gather_all_with_partition(local_spikes, comm_); + } + + // From mpi + g_spike_vec gather_all_with_partition(const spike_vec& values, MPI_Comm comm) { + using traits = mpi_traits; + // Collect all sender's counts, scale to bytes + std::vector counts = gather_all(int(values.size()), comm); + for (auto& c: counts) c *= traits::count(); + // Scan-left to get offsets + std::vector displs; + util::make_partition(displs, counts); + // Allocate recv buffer and exchange + spike_vec buffer(displs.back()/traits::count()); + MPI_Allgatherv(// send buffer count to send MPI datatype of spike + values.data(), counts[rank(comm)], traits::mpi_type(), + // recv buffer count of each sender offset of senders MPI datatype of spike + buffer.data(), counts.data(), displs.data(), traits::mpi_type(), + comm); + // Scale back to sizeof(spike) + for (auto& d: displs) d /= traits::count(); + return {std::move(buffer), std::move(displs)}; + } + +Note that these snippets have been simplified and shortened from the +actual code, they are intended for education only. + +After ``exchange`` is done, each process has received an object like +this + +.. code-block:: c++ + + { + spikes: { {s0, t0}, ...}, + offsets: { 0, ... } + } + +Now ``spikes`` is the array of all spikes during the last *epoch* where +each sub-array of spikes is sorted, ie between ``offsets[ix]`` and +``offest[ix+1]``. The ``offsets`` array has a length of MPI task count +and its ``i``'th element gives the position of the first spike sent by +task ``i``. + +Distribution of Events to Targets +================================= + +Having received the generated spikes, the concatenated data is converted +into events on each local cell group. This is done asynchronously with +computation of the next cell state. In ``simulation.cpp`` we find + +.. code-block:: c++ + + auto exchange = [this](epoch prev) { + // Collate locally generated spikes. + auto all_local_spikes = local_spikes(prev.id).gather(); + // Gather generated spikes across all ranks. + auto global_spikes = communicator_.exchange(all_local_spikes); + // Append events formed from global spikes to per-cell pending event queues. + communicator_.make_event_queues(global_spikes, pending_events_); + }; + +which uses this + +.. code-block:: c++ + + // Check each global spike in turn to see it generates local events. + // If so, make the events and insert them into the appropriate event list. + // + // Takes reference to a vector of event lists as an argument, with one list + // for each local cell group. On completion, the events in each list are + // all events that must be delivered to targets in that cell group as a + // result of the global spike exchange, plus any events that were already + // in the list. + void make_event_queues(const gathered_vector& global_spikes, + std::vector& queues) { + // Predicate for partitioning + struct spike_pred { + bool operator()(const spike& spk, const cell_member_type& src) { return spk.source < src; } + bool operator()(const cell_member_type& src, const spike& spk) { return src < spk.source; } + }; + + const auto& sp = global_spikes.partition(); + for (auto dom: util::make_span(num_domains_)) { + // Fetch connections and spikes per integration domain + auto cons = util::subrange_view(connections_, connection_part_[dom], connection_part_[dom + 1]); + auto spks = util::subrange_view(global_spikes.values(), sp[dom], sp[dom + 1]); + auto sp = spks.begin(), se = spks.end(); + auto cn = cons.begin(), ce = cons.end(); + // We have a choice of whether to walk spikes or connections: + // i.e., we can iterate over the spikes, and for each spike search + // the for connections that have the same source; or alternatively + // for each connection, we can search the list of spikes for spikes + // with the same source. + // + // We iterate over whichever set is the smallest, which has + // complexity of order max(S log(C), C log(S)), where S is the + // number of spikes, and C is the number of connections. + if (cons.size() < spks.size()) { + while (cn != ce && sp != ce) { + auto src = cn->source(); // Source for connection + auto cix = cn->index_on_domain(); // Queue index for connection + // Given a source src split the range [sp, spks.end) into a pair sources=[l, h] + // st *l is the last element not smaller than src + // and *h is the first element greater than src. + // 'Greater' and 'smaller' are defined via the predicate above. + // The range [sp, spks.end) must be (partially) ordered wrt the predicate. + auto sources = std::equal_range(sp, se, src, spike_pred()); + // Consequently, the range returned is the range of equal spike sources, + // we pick out ours and add all of them to the appropriate queue. + for (auto s: util::make_range(sources)) queues[cix].push_back(cn->make_event(s)); + // now, move to next + sp = sources.first; + ++cn; + } + } + else { + while (cn != ce && sp != se) { + auto targets = std::equal_range(cn, ce, sp->source); + for (auto c: util::make_range(targets)) queues[c.index_on_domain()].push_back(c.make_event(*sp)); + cn = targets.first; + ++sp; + } + } + } + } + +After ``make_event_queues`` there is one queue per cell and each queue +is filled with a time ordered list of events for that cell. We now need +to understand the actual connection table stored in + +.. code-block:: c++ + + struct connection { + spike_event make_event(const spike& s) { + return { destination_, s.time + delay_, weight_}; + } + + cell_member_type source; + cell_lid_type destination; + float weight; + float delay; + cell_size_type index_on_domain; + }; + + struct communicator { + // [...] + cell_size_type num_domains_; + std::vector connections_; + std::vector connection_part_; + // [...] + }; + +The ``connections`` vector is a list of connections partitioned by the +domain (as in domain decomposition) of their source's ``gid``, while +``connection_part`` stores the partioning indices. + +Building the Connection Table +============================= + +The table of connections on the local rank is built during the construction of +the ``communicator`` object + +.. code-block:: c++ + + communicator::communicator(const recipe& rec, + const domain_decomposition& dom_dec, + const label_resolution_map& source_resolution_map, + const label_resolution_map& target_resolution_map, + execution_context& ctx); + +After that process, + +.. code-block:: c++ + + struct communicator { + // ... + std::vector connections_; + std::vector connection_part_; + }; + +will contain all connections in ``connections_`` partitioned by the +domain of the source's ``gid`` in ``dom_dec``. Beginnings of the +respective partitions are pointed to by the indices in +``connection_part_``. + +The algorithm for building is slightly obscured by caching and the use +of labels and resolving them via ``target_/source_resolution_map`` to +local ids on the respective source and target cells. + +.. note:: + + The ``label_resolution_map`` class is used to translate from labels at the + user facing API layers to Arbor's internal mappings in the vein of + ``(cell_gid, item_offset)``, where ``item_offset`` is an automatically + assigned integer ID. Textual labels are created by calls to ``place`` + as in this example + + .. code-block:: c++ + + auto d = arb::decor{}; + d.place("..."_ls, arb::synapse{"..."}, "synapse-label"); + +The construction is performed in-place + +.. code-block:: c++ + + // Allocate space for our connections + connections_.resize(n_cons); + // We have pre-computed `src_counts`, connection_part_ will now hold the starting indices + // of each `domain`. + util::make_partition(connection_part_, src_counts); + // Copy, as we use this as the list of the currently available next free target slots in + // `connections_` + auto offsets = connection_part_; + auto target_resolver = resolver(&target_resolution_map); + auto src_domain = src_domains.begin(); + for (const auto& cell: gid_infos) { + auto index = cell.index_on_domain; + auto source_resolver = resolver(&source_resolution_map); + for (const auto& c: cell.conns) { + // Compute index representation of labels + auto src_lid = source_resolver.resolve(c.source); + auto tgt_lid = target_resolver.resolve({cell.gid, c.dest}); + // Get offset of current source and bump to next free slot + auto offset = offsets[*src_domain]++; + // Write connection info into slot + connections_[offset] = {{c.source.gid, src_lid}, tgt_lid, c.weight, c.delay, index}; + // Next source domain + ++src_domain; + } + } + // Now + // * all slots in `connections_` are filled. + // * `offsets` points at the ends of each partition. + + +Next, each *partition* is sorted independently according to their +source's ``gid``. diff --git a/doc/dev/debug.rst b/doc/dev/debug.rst new file mode 100644 index 0000000000..e3ae77e500 --- /dev/null +++ b/doc/dev/debug.rst @@ -0,0 +1,45 @@ +.. _dev-debug: + +Debugging +========= + +Backtraces +---------- + +When building Arbor you can enable backtraces in the CMake configure step by +setting ``ARB_BACKTRACE=ON``. Beware aware that this requires the ``Boost`` +libraries to be installed on your system. This will cause the following +additions to Arbor's behaviour + +1. Failed assertions via ``asb_assert`` will print the corresponding stacktrace. +2. All exceptions deriving from ``arbor_exception`` and ``arbor_internal_error`` + will have stacktraces attached in the ``where`` field. +3. Python exceptions derived from these types will add that same stacktrace + information to their message. + +Alternatively, you can obtain the same information using a debugger like GDB or +LLDB. + +.. note:: + + Since Arbor often uses a buffer of instructions on how to construct a + particular object instead of perform the action right away, errors occur not + always at the location you might expect. + + Consider this (adapted from ``network_ring.py``) + + .. code-block:: python + + class Recipe(arb.recipe): + # [...] + def connections_on(self, gid): + return [arbor.connection((src, "detector"), "syn-NOT", w, d)] + + def cell_description(self, gid): + # [...] + decor = (arbor.decor() + .place('"synapse_site"', arbor.synapse("expsyn"), "syn")) + return arbor.cable_cell(tree, labels, decor) + + rec = Recipe() # "Ok" + sim = arb.simulation(rec) # ERROR here diff --git a/doc/dev/export.rst b/doc/dev/export.rst new file mode 100644 index 0000000000..75e6a59a5c --- /dev/null +++ b/doc/dev/export.rst @@ -0,0 +1,134 @@ +.. _export: + +Exporting Symbols +================= + +The Arbor libraries are compiled with `hidden visibility `_ by +default which strips a compiled library of all symbols not explicitly marked as visible. Note that +the term *visibility* here refers to the symbol visibility exposed to the linker and not to language +*access* specifier such as public/private. Arbor provides a couple of macros to make functions and +classes visible which are defined in the header file ``export.hpp`` in each library's include +directory, i.e. ``include/arbor/export.hpp``. These header files are generated at configure time +based on the build variant, compiler and platform. + +By default, hidden/visible symbols will affect **shared** libraries directly. Since the linker is +responsible for making symbols hidden, the visibility settings are not applied to **static** +libraries immediately, as static libraries are generated by bundling object files with the archiver +(standard in cmake for ``STATIC`` libraries). In principle, the linker would be able to generate +relocatable output instead (``ld -r``) by incrementally linking object files into one output file +(sometimes called partial linking) which would apply proper visibility to static libraries. +However, we currently do not handle this case in our build scripts as it is not not nativley +`supported by cmake yet `_. + +.. Note:: + When linking an application with **static** Arbor libraries the linker may issue warnings (particularly on macos). Thus, if you encounter problems, try building shared Arbor libraries (cmake option ``-DBUILD_SHARED_LIBS=ON``) instead. + +Macro Description +----------------- + +.. c:macro:: ARB_LIBNAME_API + + Here "``LIBNAME``" is a placeholder for the library's name: ``ARB_ARBOR_API`` for the core Arbor + library, ``ARB_ARBORIO_API`` for Arborio, etc. This macro is intended to annotate functions, + classes and structs which need to be accessible when interfacing with the library. Note that it + expands to different values when Arbor is being built vs. when Arbor is being used by an + application. + + Below we list the places where the macro needs to be added or can be safely omitted (we assume + all of the symbols below are part of the public/user-facing API). In general, annotation is + required + + * for **declarations in header files** which are not definitions + * for **definitions** of functions, friend functions and (extern) variables **in source files** + + Members and member functions of already visible classes will be visible, as well, without + further annotation, except for friend function (see below). + + Implementation details and internal APIs may not need annotation as long as they do not require + visibility across the library boundary (though some annotations are required for unit test + purposes). Exception classes and type-erased objects need special annotation, see + :c:macro:`ARB_SYMBOL_VISIBLE`. + + .. code-block:: cpp + :caption: header.hpp + + #include + + // free function declaration + ARB_ARBOR_API void foo(); + + // free function definition + inline void bar(int i) { /* ... */ } + + // function template definition + template + void baz(T i) { /* ... */ } + + // class definition + // class member declaration + class ARB_ARBOR_API A { + A(); + friend std::ostream& operator<<(std::ostream& o, A const & a); + }; + + // class definition + // class member definition + class B { + B() { /* ... */ } + }; + + // template class definition + // class member definition + template + class C { + C() { /* ... */ } + }; + + // (extern) variable declarations + ARB_ARBOR_API int g; + ARB_ARBOR_API extern int h; + + + .. code-block:: cpp + :caption: source.cpp + + // free function definition + ARB_ARBOR_API void foo() { /* ... */ } + + // class member definition (will be visible since A is visible) + A::A() { /* ... */ } + + // friend function definition + ARB_ARBOR_API std::ostream& operator<<(std::ostream& o, A const& a) { /* ... */ } + + // (extern) variable definitions + ARB_ARBOR_API int g = 10; + ARB_ARBOR_API int h = 11; + + +.. c:macro:: ARB_SYMBOL_VISIBLE + + Objects which are type-erased and passed across the library boundaries sometimes need runtime + type information (rtti). In particular, exception classes and classes stored in ``std::any`` or + similar need to have the correct runtime information attached. Hidden visibility strips away + this information which leads to all kind of unexpected behaviour. Therefore, all such classes + must be annotated with this macro which guarantees that the symbol is always visible. This also + applies for classes (or structs) which are entirely defined inline. Note, one must not use + :c:macro:`ARB_LIBNAME_API` for these cases. + + .. code-block:: cpp + :caption: header.hpp + + #include + + // exception class defintion and class member definition + class ARB_SYMBOL_VISIBLE some_error : public std::runtime_error { + some_error() { /* ... */ } + }; + + // class defintion and member defintion + // class D will be type-erased and restored by an any_cast or similar + class ARB_SYMBOL_VISIBLE D { + D() { /* ... */ } + }; + diff --git a/doc/internals/extending_catalogues.rst b/doc/dev/extending_catalogues.rst similarity index 100% rename from doc/internals/extending_catalogues.rst rename to doc/dev/extending_catalogues.rst diff --git a/doc/dev/index.rst b/doc/dev/index.rst new file mode 100644 index 0000000000..9de6651c00 --- /dev/null +++ b/doc/dev/index.rst @@ -0,0 +1,29 @@ +.. _dev-overview: + +Developers Guide +================ + +Here we document internal components of Arbor. These pages can be useful if you're interested in developing on Arbor itself. + +.. figure:: arbor-dep-graph.png + :align: center + + Arbor dependency graph. To see what dependencies Arbor has and how to generate this figure, see :ref:`contribdepverman`. + +.. toctree:: + :caption: Arbor Developers Guide: + :maxdepth: 2 + + cable_cell + cell_groups + communication + debug + matrix_solver + simd_api + shared_state + export + extending_catalogues + mechanism_abi + util + version +.. numerics diff --git a/doc/dev/matrix_solver.rst b/doc/dev/matrix_solver.rst new file mode 100644 index 0000000000..5733f1b273 --- /dev/null +++ b/doc/dev/matrix_solver.rst @@ -0,0 +1,134 @@ +.. _matrix_solver: + +Matrix Solvers +============== + +Cable Equation +-------------- + +At the heart of the time evolution step in Arbor we find a linear system that must +be solved once per time step. This system arises from the cable equation + +.. math:: + C \partial_t V = \frac{\sigma}{2\pi a}\partial_x(a^2\partial_x V) + I + + I: \mbox{External currents} + + V: \mbox{Membrane potential} + + a: \mbox{cable radius} + + \sigma: \mbox{conductivity} + +after discretisation into CVs, application of the FVM, and choosing an implicit +Euler time step as + +.. math:: + \left(\frac{\sigma_i C_i}{\Delta\,t} + \sum_{\delta(i, j)} a_{ij}\right)V_i^{k+1} - \sum_{\delta(i, j)} a_ij V_i^{k+1} + = \frac{\sigma_i C_i}{\Delta\,t}V_i^k + \sigma_i I_i + +where :math:`\delta(i, j)` indicates whether two CVs are adjacent. It is written +in form of a sparse matrix, symmetric by construction. + +The currents :math:`I` originate from the ion channels on the CVs in question, +see the discussion on mechanisms for further details. As :math:`I` potentially +depends on :math:`V`, the cable equation is non-linear. We model these +dependencies up to first order as :math:`I = gV + J` and collect all higher +orders into :math:`J`. This is done to improve accuracy and stability of the +solver. Finding :math:`I` requires the computation of the symbolic derivative +:math:`g = \partial_V I` during compilation of the mechanisms. At runtime +:math:`g` is updated alongside with the currents :math:`I` using that symbolic +expression. + +Each *branch* in the morphology leads to a tri-diagonal block in the matrix +describing the system, since *branches* do not contain interior branching +points. Thus, an interior CV couples to only its neighbours (and itself). +However, at branch points, we need to factor in the branch's parents, which +couple blocks via entries outside the tri-diagonal structure. To ensure +un-problematic data dependencies for use of a substitution algorithm, ie each +row depends only on those of larger indices, we enumerate CVs in breadth-first +ordering. This particular form of matrix is called a *Hines matrix*. + +CPU +--- + +.. note:: See ``arbor/backends/multicore/matrix_state.hpp``: + + * ``struct matrix_state`` + * the ``matrix_state`` constructor sets up the static parts + * the dynamic part is found in ``assemble`` + * the solver lives in ``solve``. + +The matrix solver proceeds in two phases: assembly and the actual solving. Since +we are working on cell groups, not individual cells, this is executed for each +cell's matrix. + +Assembly +^^^^^^^^ + +We store the matrix in compressed form, as its upper and main diagonals. The +static parts -- foremost the main diagonal -- are computed once at construction +time and stored. The dynamic parts of the matrix and the right-hand side of the +equation are initialised by calling ``assemble``. + +Solving +^^^^^^^ + +The CPU implementation is a straight-forward implemenation of a modified +Thomas-algorithm, using an extra input for the parent relationship. If each +parent is simply the previous CV, we recover the Thomas algorithm. + +.. code:: c++ + + void hines(const arb_value_type* diagonal, // main diagonal + const arb_value_type* upper, // upper diagonal + arb_value_type* rhs, // rhs / solution + const arb_index_type* parents, // CV's parent + int N) { + // backward substitution + for (int i = N-1; i>0; --i) { + const auto parent = parents[i]; + const auto factor = upper[parent] / diagonal[i]; + diagonal[parent] -= factor * upper[parent]; + rhs[parent] -= factor * rhs[i]; + } + // solve root + b[0] = b[0] / d[0]; + + // forward substitution + for(int i=1; i`_ and the references +therein are worthwhile further reading. diff --git a/doc/internals/mechanism_abi.rst b/doc/dev/mechanism_abi.rst similarity index 94% rename from doc/internals/mechanism_abi.rst rename to doc/dev/mechanism_abi.rst index a8c9205900..6c86605110 100644 --- a/doc/internals/mechanism_abi.rst +++ b/doc/dev/mechanism_abi.rst @@ -187,10 +187,6 @@ fully formed to the interface. At this point: [Array] Map - .. c:member:: const arb_value_type* vec_t - - [Array] time value - .. c:member:: arb_value_type* vec_dt [Array] time step @@ -444,16 +440,36 @@ interface layer ` for more information. Making A Loadable Mechanism --------------------------- -Mechanisms interface with Arbor by providing three functions, one -returning the metadata portion, and one for each implemented backend (currently -two). The latter may return a NULL pointer, indicating that this backend is not -supported. The naming scheme is shown in the example below +Mechanisms interface with Arbor by providing a single function, returning +a structure + +.. c:struct:: arb_mechanism + + .. c:member:: arb_get_mechanism_type type + + Pointer to a function ``arb_mechanism_type get_type()`` + + .. c:member:: arb_get_mechanism_interface i_cpu + + Pointer to a function ``arb_mechanism_interface get_interface()`` + that returns a pointer to the CPU interface which may be + ``null``. + + .. c:member:: arb_get_mechanism_interface i_gpu + + Pointer to a function ``arb_mechanism_interace get_interface()`` + that returns a pointer to the GPU interface which may be + ``null``. + +You can create mechanisms with both ``i_gpu`` and ``i_cpu`` returning ``null``, +but at least one of the interfaces must be provided or Arbor will refuse to load +the catalogue this mechanism. + +The naming scheme is shown in the example below .. code:: C - arb_mechanism_type make_arb_default_catalogue_pas(); - arb_mechanism_interface* make_arb_default_catalogue_pas_interface_multicore(); - arb_mechanism_interface* make_arb_default_catalogue_pas_interface_gpu(); + arb_mechanism make_arb_default_catalogue_pas(); Writing Mechanisms Directly Against the ABI ------------------------------------------- diff --git a/doc/dev/numerics.rst b/doc/dev/numerics.rst new file mode 100644 index 0000000000..1523aadda6 --- /dev/null +++ b/doc/dev/numerics.rst @@ -0,0 +1,20 @@ +.. _numerics: + +Numerical methods +=================================== + +Here we document which numerical methods are applied to solve +the differential equations of the cable cells and mechansims. + +Passive cable +------------- + +Integration of the cable equation: implicit Euler via +linearized set of equations and Thomas algorithm. + +Mechanisms +---------- + +Exponential Euler `cnexp`. + +Implicit Euler `sparse`. diff --git a/doc/dev/shared_state.rst b/doc/dev/shared_state.rst new file mode 100644 index 0000000000..5f8f1d42df --- /dev/null +++ b/doc/dev/shared_state.rst @@ -0,0 +1,45 @@ +.. _shared_state: + +Shared State +============ + +The ``shared_state`` classes are collections to store backend-specific simulator +state and can be found in the ``backend/{multicore, gpu}`` directories. +Functionality manipulating such items gets delegated to the implementations of +the ``shared_state`` interface. + +Ions +---- + +Ion state is stored as a series of arrays corresponding to NMODL variables. +These arrays have entries per CV and mechanisms need to go through the +``node_index_`` array to map the mechanism's internal CV index to the cell +group's CV index. + +======= ======= =============================== +Field NMODL Ion Property +======= ======= =============================== +``iX_`` ``ica`` Current density +``eX_`` ``eca`` Reversal potential +``Xi_`` ``cai`` Internal concentration +``Xo_`` ``cao`` External concentration +======= ======= =============================== + +This table shows the mapping between NMODL -- for the ``ca`` ion species -- and +the ``ion_state`` members. The class is responsible for reseting currents and +concentrations. + +Mechanisms +---------- + +All mechanisms' privates data is stored in ``shared_state``, which is also +responsible for managing the lifetime and initialisation of said data. This is +done to allow mechanisms to be implemented as essentially stateless bits of +C-code interacting with Arbor only through ``shared_state``. See the ABI +documentation for a discussion of the details. + +Further Functionality +--------------------- + +In addition the configuration and effect of stimuli, gap junctions, and +sampling, as well as the computation of per-CV time steps is handled here. diff --git a/doc/internals/simd_api.rst b/doc/dev/simd_api.rst similarity index 100% rename from doc/internals/simd_api.rst rename to doc/dev/simd_api.rst diff --git a/doc/internals/util.rst b/doc/dev/util.rst similarity index 96% rename from doc/internals/util.rst rename to doc/dev/util.rst index ea233ad016..e2f40d7228 100644 --- a/doc/internals/util.rst +++ b/doc/dev/util.rst @@ -1,7 +1,7 @@ .. _libref: Utility wrappers and containers -################################## +=============================== .. cpp:namespace:: arb::util diff --git a/doc/cpp/version.rst b/doc/dev/version.rst similarity index 99% rename from doc/cpp/version.rst rename to doc/dev/version.rst index 05d56e09c7..f32158d902 100644 --- a/doc/cpp/version.rst +++ b/doc/dev/version.rst @@ -1,4 +1,4 @@ -.. _cppversion: +.. _dev-version: Version and build information ============================= diff --git a/doc/ecosystem/arbor.png b/doc/ecosystem/arbor.png new file mode 100644 index 0000000000000000000000000000000000000000..0d9ac3cb729822dec122f515423a96a870c808fb GIT binary patch literal 74520 zcmce;c{rAByElBPq@*MgB}$YjW0Z)>7|K|N3>iwIgv?`;A+u6RC`ptEB}FK+3`Lm| zLZr;|?EM|OpY=Z9x1ROB+xGqOS?k``wsg79={WZNH|=MD#xbR}w3}%u6w2Bo%JNzi z%JOvlcW2c~{AQ%S#2)`=rJ1UdJY|vm&x3bQZc-@QC`aTE>A2kQ`|j#-v|(X!Sa+p% zQCNML)~JR8lhyHnZ%;2;Kb@g{Sn~GF1?#5|6Aj1eTQs=OJ>AAoWT+FL#QQ}G8tIg*X|{24n$_jau2T$o>BPiIKajt8T`@Ri>vjLK<=W&= zMtD+G5*F|T}9!*hRH&#e5D}1s2ptaw2Gsi+d`kwF3ZLgeIaDF3{ zTSYgz4yLE4_kDXE+WOA@<}P)1Yrh?48@;@|u`{+eyewp(suVj^MNs@7ZkSpSXvPr1p+jgEini{HP${LXz+rhXR3 za>U8|`xH($pyRriV? z9J(57p@%z2FaP%=wXbbW?%%(^ik6mBRJ69Ed3v-bAS5Kw_?=r+R_Kiz@w#coF0QVc z>1GPK@802GB+^WBoPuKyxYy=+y1#Y&qd3}KCF#%|q`>j;;X|D?6G2wYuozB`KA41QyV`eQ2i*;({zQxK@0P+# z=(6R@*A@!X6`ZY03@#oI+$6M_TjiE;-gNgC{C3CAoh2>^kH-d*Zw$@V%CllDX;8;BT*Ow`eD-iO@0&oSmEJKla?< zRgiT3-}j*pKIYRa_S;`90GasJL{X?da@ z9UVb^N#zXlT{|BZI5Fuj$ZNT@%d|J(2yFeuY`RYi!hOerZ+M|Lyhg z=xAY8)mmj$9o-bYL%0P0z(Dt3Go1RzA0DPQcy+EAYcNXITSm^8&a^y&`_k_(y|Fnn z7n(AteX#!Tp0=~I%g)JRWMwVKjUkWt%^J~zSg>SSO*fa9m(MxQFqkx?ne6>o`-Ey2 z7uWjr>kE48o&8HXk&B+?#F zTH7w>Th8{*w>IgzHO16D8T^{&?=Q{1Ibb8M3|rJN`{HHK*@@F{JD-`dyu9%J9`bMK-ge9x?Uta>L&CwT+P zYuvMrCBnnQTTn4Cn~TsDc8oWecpnXAKQJ^lmY@>JN8e(i$h_M?{^ri3 zL!+aQ@ZtA^sDIgxdwXr!GtX2lJ2lbQ#9F_4)v8lH)iEfQ z5ke+;bbt1o`{G~!{G_aoXE@FAd@s-6_0Lr;EVvH1PjtO%Fcwo%6w^*nW;k|#U-%FG zH0l7|Q>w=k4t+GxO`wY*yOwXUunmOuGN1@K7D*FX20P(xA9az z?7zzGyu7@sB3=vAJ)~|*yN*yS-h7{*nx3Zm^v>P6KGkSVLDu~w2HL_#9 zu9<4TN>BOqJ!kLg)vE;zUj9mTQwm{wh{ZSApQaeRnf|y*mlt;9d#v|txACX?^=}=m zDer)Cy*v-e&XQpBFG-p&ZQIy6I5^n0 zZe^9QVL9M7*8Wi_KLIP|7T@s-!&0}NOPym0Gu4^~N=ix-1K&TQcj={@QCrr;QlFX} z_NH$1lAY}dYhjc1!*CR4G*#>SRlXH{B@Syt~keE4u>!=HwK=9y4?EV1^xvcPCA7zyq_MzkB_+GNhY2`3}GS&LrOzwQ0kK!`OoUSi^&x z_m#K!uHCX~?OO4M!et&q?`b^d#~W-~vcs`a@BS1N6wDo|;O}dBBc|#pd)CwS;`KF~ z&Q#puo%~+;EAPbfD^C5}#5Z2*3U8#9l3GQpGMmZIX=Z+@D8#=^j_hL85h>ha@sG7N zE%y(&XDMtr`Rd&9W3kc!rY!pVzl|UI69}Bt#bm(9&pEQbI!;#I#zvqtWa|zAfyy~a z*AcFtAMaRx%R1j}AVU!n5=u47DFK+v{IYnpeiN`_IWN$kzw|Zz%rl>#pM0HD(cjksU&2So~ty`e8Z_@9QJZ?^f|+}za4-x$W*-(N*J4;byK(ax|ar%4sU zcSUIPkg`ho@#6>Zo$u6?OQKrT2UJLbR3$~l43}Xu%7xb4fY-10?mBj#^1!V42Ah;q z5b7xD>?(Hzk4EwxPePdpWZrF7IkCWcS;G(;G9spC@mbnic~ zf`7X*aa3ptE?|nuR(JYB;gqcv+8?W{Lx3bY`}%D9HEXQ);8H*l-8|M+3rTKD~X%yv0np355<$~j4^5wclL)u?#S_V(2X{A3fyspZe#{+;35TxOVRJMQ@U6 zj>fK8v&3|}qQudWK<*^%yH*Y6%?jefVrh@ltg6&JJfs0@ck=Pw2$h-PDcpaZc4Is$ zYC=N73!5giAp7;pp#}b?nmqID3HAx#3a{Q0P19 z=B2eSObgWpKfiIXymIBrs&(rU)#GH)=5B_C6#(~vi4ApnxZ^A$$TG5Dg2WoHGuefyt6*`Y{ryx{$Y{XEtm!JhsgF;QqCeRB?$Tgu3>NF3 z)VGemzij8>@yDrUST_iwUzOmKy$xv`08XqECQo&E0r|`D&p4lzr{-tIU)nU)nmyt{ zQCb4L<%a38&_49{7o+q+LHVmIl(zOdEA zbNqN#{;reh4n4;{eE5*E)z@Eod8^x>-9V|kHDZHix1aUlcmPxfJ?sg>(k|j za(){&Z&pFcpaMGNGx3_{#&fZw*kF|7bh<2TyG`SZ%WJntNUQv!kR^Wh zGiTzln3*z9eL27=Nf5$Uh3gr%IQ7VtNj24*A3)LWJNNY|bwV(O3V4v(7DV4`_WYU3 zyYF$BRcqFmPYwN`v}D^|t&Wk>eq(W5(gt=A)rK+sJgnk%58xoP!lR? z_EB)t4>q?&Npt-Q!@KFTCd6uwC!& zvD)xRDYOJtVc>g?Z1QVf$%8XZsi+}D@d85&zkgqCxTAPAEv=}MnVg(l(_2S=N}KoM z0X&{!bXA~e2Z##B?)~CBkKI>BxviY(-Lel)EC{%)E=hAo9}pOt%tk&PVe`gxa~hD^ zW$i;h3PIn9P$X!WedkFE|k5DoISRVsMF$5{v)^L4fo2zN5X zf!WEyy-!@vIG%f=d_oe7wWBCtwtjSMtOz28RbArgwXhdz78 zk4jTsI}hP8f{2mn7Xig7EiEk+|B#RpG%M7v!&K zLNP$$OGmGDub+gbfk%vOBm$`w7sB4Vu=hd>x$|G1pS%ODL|V&4U-R_^qu&i_i;aUj z)P;`jVrD2mRO@`|=&@s2JfR^WJGX7~!Jhe)@9iCEbkcotpbEWcXn6QXWt3RWM2 z(S+Rq9UlhdZNwfDJ5$*Xl>n`hk4@748l;Slt}b~fDrE71-<(G6q4c%BgTD6b>$5wo zsxt#v8zZNhv(A5XAAF|-IY{})5mV?gd(JoSshe@=sitnP+S^unyQ&c4m~um^5$oOy zY(jZc9XlqSWueq&yve-D?M|Rx`F0Rj>w%=V?voc5#?!n_Sym1Y595XmH(RHrU--Ts z(ER-8RM1eY-jU)>CNJ!Nsz7Bqf>t@*mstZUxrwMr)%PVU?}}Wt&71a(^O_0pnxBb^ zZerp;5d>r@inH>iV?7KirmU=7(AE}*y^6nBU4Vyq@ZdoTsA_Z95&15vpB0g7baizh zK}-$g4DNFqOLDbnj)5eTZ1_gBG?e4X#UCGV zE=}~Cskjk3LK2uyVgqhpRf>M5Xs*PWN|ur!)=>?+0ROT@g8Cr#l8QIhTc@98(`2+H z3HvkbK*xKvk&_8s(~s~g23N(g{%@P0siJuJ2L-*%c3PNojeqoLaQc%7b^#d7kDosk zfc=IiCU)-M-<<2!-z@G1L2Y)TzqkJR7RV|+c=XJk*L;1o-nlu_GVvS){=l6OPJ5h~ zIMVwhPSo_nikY!qITT4rw=o_lD=Vm}@vX&59G*pJ!bI&oczM~S-rC|8=}-ShMfhOz z%4-V?3op-oz487kjl#Z2pp=Hg;~?~kH-ubvNLqimH89GI_8{`26I-p>Htd+8|vLoG9s_+z!96kD2 zCs_;FITJ_%Pn*CoA{(N|OwG4eWZNty3lj+tg#FU8klxL&XeR?Yk>kA=*%QbduIXc%l?EH8r)Y&WAoj$0F>5 z(tENmz9rLAo$PNw{Yv-mX(s7{&;PPrS6`hZjmx<9bfT~7brVMBz_v+kNLM+l=gTG6hZ@!xrbN_y&Nltb)#cD@(?|&0v z3#zNvDSu1gGn%opMGHTpuQ>P+P32NwV|a{|Gg;GcNvfc-|cqM~Ako;&vY>z~;3sIu~?g^)+Zyd^HQlmVu>%=W(y2ny;# zgQaH+G-Y817M!tm8~b(n$&+2jpX#`_FNkIUDBas*btNv219jEx$A|0m-*r_~D$ILz zGeZBh!qotblTW@DghV^m*K`x4s)~)ZN{w(PyN(s4IT_`+j_y&)x z;ZZ;NB+lywM0tSKih6TbFt5g3SFtsl1hJ*AvmbDSG(GfXfOo+{A)38@+l77REOpVR9tC(5!Htx5YltxPONlW z)YOwZ-z7JArg;^+?fL7iniZ0The}EH>(j%ll4if!+Y7)8s*J8sN!T2yXCi#(sUi3ZxhlD!ahqgZc_j zNt9reyCUY4sfF3WC^5@**eRg%^+9`icz(ss-*9YV^)|8E%~_KR$pXvwu$o$>XG3XO z9q`ERJ=XO>FJ1_b^wik)UyR)km*$~uTOLlTu;sL<*ni28zqgTa;fCd$W-odLwIUsv3X zrWb_D54WC^^TY$vXu4KsWM)3XW369T*nPe&?|buhoKfUo887@vea7jJjW4ZkzAALt z3B(x9sc-|EzUTamKt0jq zxC6cLonM~){Gr)YS;Dm^#+hjPgni;bXNfYY3M3eC^CnI@Oi9>l&Ltuug3x^!{yQ}B zp!Fm6+8RU1v+Nh{V%WED-`{JEei9r5DG@(KXZ}sZ{M(G><^OXAV(EjfDky+!A%cUB zz_+4)ec}7tXVqxIz0I%qVPRbAZ;k{Fuym)pN<&`)b8_$Az3|T*YGxqz6;)LQLvs>^ znLvm)eqZRv;pHD4y@eD#z%O)liIbg74B_{e;vQw%PmkQ(30KJUT?iPl(V2fwd6VQF#jo&cdG&=4S*Z~~Nl=dZk439I0bNW+2%^~i@dF9JzFQ1rhG zeJ{@I>9JsSh^xuyI_#)R3^wTzPtF}XSVb*X z!Dezca=3IUVM+bh&)_PYfOPx>G$NGE&wuv~Xsl4FqGY=Cb6rHD_u5tuHG`v6@=g-* z58&hhN*$QTEofh@AkXYv!zm4deDTYhsF@g;Ek;lDLauj>|AK36U=;`eN>F+5W+ed7e^2xkJl@^5;g38gNwTDEN*ujalgP z-M40Opv+V6mz{u(jjn(&!zp;w%jytQ{Z&<1n67jgzm;TfT zgNqZMxG*1L#f5AHb?4LLhFh{@BSRjqL`n zFC0a&#Xir>W?sMkAfO$4VGeWpTA(%hz~#xQQXp|0vmoQ2n8p!2YFyg=`L%##$c*Ukc%tCvb%hHt*Mg zKuOT2y!?uunm9|KX9|=p=>vDpmVzW-O?6rEotG?GGa5>93h9%SJk z>tS{t>UwXxONe>S<=AFtV6r$j`A4-vLQL*_MHYQUvg|oSKBTk z5I|m2i@WNtv0p?3M z5`M8TH{G2-N-zd?37f1Jn-Ad^&{#CVCv!TG_}M8TaT`9g79v2z8iU?-yGukDeYSXcq*BuqUTM^Pom~hElay<{4lSnVBhO;xSB3 zP0Mr&K=|7A>-vV!5E9X72uhfXLQO*7$%OsVOajj~K7zyynDefzXW?4Y@JBeC`qimh|Zo9PF9 zI!Pq#0cF>_D^H$Xo`}(+r)eoz*XhM-6j;jDu?JMoo%?On4==j>jt~bH;%VqGFkeK0 zdexkdRw)BjCuu%fsi~>?|5SllO9Ud0W2gPZ5vgmPz6`X!lL8^zV<~|9qz(By(+g#G z3IU_41{D8z_~|f>z6z+S9|Q5L%s})0ly&~(w*L3O7UpNg?jMW8O2T8G>XBVso$%bc z=H@PXJe8;geOZ^GZLO`Xxuexmxd<+yXx#qCAMl$|laEy(P4e66(x`~glTJH7-s|8F zJqeuP`xD)OZu1_0crbxnSzv%9S^+A3@{26+HG)l+P(mmqkpjrL?1gQc%(nAy?G=^! zkSqDt;W%@)4{}|`X}KrBN(2tcP#9hHAY>ghxH9AX{jH-p+8I2Sj5Af6iJ^S>@D+s^ z(81x(P+9xo4ux&~eO*XT-1Cm3D*yKZh8*PMP}g=>xJ?cOqy7OetKHiZKolbs<_O|nzqHau(!;u%%>^MbpO*|g zgy@desmn6Jp?=-wWnHqKkC3 zy;kgp+6M<~Ag>gl`oc8?=4$-`>!1g^{Ewe^OiD^i{ZLyCT6Q5FU>N%6$B*~ki?b%9 z$_T2s;a1TAn4W()L?-+PPCYwSoaVJX2O?#Y0S;dH6j{G@D7S~?%c>n7}P{2 z31O4`fL7}QD~x08wW5vu*|R(dfwK6%C;b@up>IxH$dorL7z2OsvX2!-xHisgejSc4EA zRuq6@RgHI`s6s5{Q2utQ;^W6PP~hkaw+RY{`1`MdQ9L|8?r9VEcvS&bssh^fmc1AD zG?XtGeU4Wc9vV7@?u8IaBnsx|Y&&x-Y`uK110+lq`V2(gvMtZkWBjYG^SA@H19Ayg zP@(SJyQczGv+1=h2LLWuU3Z=x@!lx+_t`D8wH>7K{Ki?s1_UtDm=MRy%ED3x$j-9= zQj%-Gm!--A>_HNWz=qXAwsTv*%}3ZOBJLA5Kv~4mgXhf_UJ^uPYPFdCkpwM3z`c9qH`0p45JmCh-nWkhni(+Q2QaslT-7PZ3I0*3J}R3QU|br@2CN4YwR_BngSZB4(&Hd`$@=#M$7w8o>(SE z7q{?2XsC?dTN9sRTId^<`cRc)b%io2vp`5oGSEq)2=p8g)yYeaj;~nWY)HQiJ(rL$ zvCCCwe@hoYelEol!NWKW{f4Njxvmai?mj>pH3ufy!X%8cp5o4 z+cF1xS}WJZPV6=^U?4fB#@-1GHyO+m5+}2=^l^=uJXE`%? z328H*mob6n=H^tDi#rzcRxV7od0RrkMEsh>gEOT)1Kzhi83^oJfqv1I?$#*A4H3p# zWS-@LMR^3#@=%%D96CeBtYM?S;!!u*>jHf+Qvlh3?zFo6q?YOH?Ot}$HgmnOJa$KD z>*_Y-C_3j{>OK57v`SN(_vsdo<_EKiOn?6ZkbNTEQ;?zJShZ?ZJMKpJI5G%`rI*5T zAn{{h_(DVi0q|)Nsme4?HGD%dm7xunUygUeWbP&kW-WW!KvQNMl{Jq4a4WErE223KTfX)WkR2su@Hy%peK@ zuUZ!F;xXH@Cq_@6J?FpK%tpR{{01%&u0elQ=pXY*t~gv~96{QJ*zo~rz8=%gvU54; zK_b@m0`Mo~AS!~IKJZ>#U_MV$fUqBly$$xVluS6^g&J+O=+axvG1SO*Rr30q7;p2WSir8)VZjvoI2UX=^C|8 z=JM45gJtG-yb`=gOZ-O!B0BMS=Kh#0R*bkWk?`AR_ow?yGl#k*THs=`?SIljH+;#H z51T|TjrstBmWXrEkB!YN-3n*{8t8(=wM6|BQ#-Z2zvUok8azfN+#6BpibEh{T)T)y z(IIm*q(te2awJ@VB-bCyqH? zD!X8Md+PzWFVeXS#&%2sdSTGK#WX=)dC=1yql8YLzcYaHiTosSl7TQycYeS{S^(ZK z4?Y1O(0O)(#3N6C8@xkgl;?z6HT^d3F*q}>R(=U(@eEcit8q?4$=2Q*%)8xmIad+y zvy{V|{AZ&XtJyT)L978tajWrP`SMrGr_jNQ}nG&G`{^ zl?Ygp0f~%({(9w5V|Wpfj4D{xRUH$J1d(2l-f{rqjB{W4{<(?j5bs7RkHkf|_cYf( z(ZqNGmg)ysZlHjtSXP1wAPrS3T>?>kT}!SjBX+m+fdjj%MVQd@$^(cjTXPHSUkqe( z+xeJ&v^W?NvMFrGOR$MQ!pSYh^MlO47BS832&Rf5UYbDWFA%kez`fLbc49Y)dj9lB zf=WJR>3r09jdKZCKLe}*^GV6Z9;r0CKa;27rr zX)LCB{2v9UUIc|W)iwT0+msN3n2!gokHj8B`m!aeudWOrGqfc2)db-x^`%z)+rQyd zc~54gEGc5?R!ee=d{;6S^Lz5dp;59z?X6#Ts4M(mD&Gmjd5M|vd~1mqH>x)v{$>Ch zYd_8rjlUvgnf5c>MJQQcF{@LiE&o61c3i4N#YQ3m607tTJTYy^2TO7z=ZG?4ptms+ zP}IC#S;7S%GG*(P|5D{9za$)CL|HuDFU%E<0h>5aJo@zWGZH&EC%cf50}IA?metwL zTq5I15s!dP?SFmRo@$bR3sEQV@6)zvqw`%V< z#G7Mb>9u+3kscjUtaIu72@yzH3h5$9A{aJv&FbR zkvZTn{Ax_^G-^ODggrYS#SMo0NYTymO~x*lL83BUhC6n-nS8orhG&hZ9f4AbjIoR&z@pwgKVN5ma3SI7{Kf0pjuz;jFm0IA|7wE~jycmj+s*AQ{ON#rgRC zV^lJv-@qdpg8fZJgaN3JFz}wc9@xMC9*}vuMfnEIS{#BPNpiE!11)D_hK4SB&Ghbq zEmcemb;z@T8OTp_*Uhe6vEqf}pA(?LRcPnsF;aVpYUOL%{`xCZw_2vU?xi3ni>Ce3MCY9ogM@dVb3f1`QE-*N8rY)kWU1hR3^s8EMP%UNVf`L z+*J!BZf2t2`g4|AlqhI=jmLQ;YGL*XG`qUGet-RaUZw#gt{t2eA~p#>lGG$*Jrbvn zZ__n)y$+26ajLt$mh=DU_ZX=Y#Dj+vKMci|(Ff}#0*PGk4-D>6KY%cwJ3EjAU9l3z zni%v^qEJj|BcbTKZfgZbyAFYwl9dN?#ZTnqu~w{aY^Z7vBlr)P0kK5WE#yzjHJkYM zOjiiqLJky^3g+cq1zGUC1T1Ds?o>x0l8jL(Ywmf2ou#4Lkhlaq6)8*)L0Av45rw$;SlxYX`E4EZ2Nvf>DQw6uJxK~cCn2>wob4=*M}oTD z{uYqaNdYC)s_C8kYyBGHdaLdci^yZpdb>EAzqq^|3qPtg2bfkZP9~~;|_1Uv$e?0d_yahegwiE1oC({6mg4AFc< z2oQsmI0w9g+O^iwvd3>=5MZaMs0jXkSg#Gvj2#+}7L zAKU@w=Ry_4uo^}pk_2*b@LMqtamr#H@HbM7-`yjlX@!4~WFhJxPSO|Ar6_vcI;Hsm z()JAv?@#Z?q#-n6QBXDq1G^cW2C19USaKLttpI&NIxjv-haC|$G*T$ZUUiS#W(Na0 zuxLrl4vO50+K6(5hKTH7@z&xG$Kn(XpgB>aim*Zj)J<;APQK%Ns*`*e1rcn!1PcWQ zHwDWWVo&x#1bzrq1Z`*h{P{Bp!+9@^#sQjptjJAy=Y9opY#Ja50|OYx|RY|<`a zu%16*J2|M_@$VAAVBp-$pR}=o@86mqmYGBMmGGJ$*9Eb=`FI9QxAUgD%yv=H4L-me z_q4UC&~o(E|L>&O5V7gm^7WK0*oONp~4Kt2B1nbtN;X(;qs8SPE=D&+%as~ zLTW!U)6!wLxB2<{5|j*V_z}`I#^Qiu)+~86H6(CE<`a-Xb6`wDlqwU68O$LaL97{F zJV8ESL)XVUq3~bqaGDTeKf+6$COL52Vpo7xUXT~4SH%zp;5(#aE0a7J;W{-==;@pY zJ`N2H(aAOdaA+f*2?hTnt_2F`6EdN?MWV9f>;r@aN6`51?a0(86^hhK68NB585M=` z%7K9a=cAvq#0ETykN}VjK^zs(Lc&A}du8O_EDc^1@b|p{ABD)Ka`-bxV~21ura_LN z;X}CoSgoN@q(}xVfEU(r$YA=VYcbuq$4)$Pak0SUi53s?_eXDJ?8{(+F?76jQo7uhhEZo~wdM5o$dj9YvI5b$f9^eR_e)K0V zZPGPHZA@m;(?oZ5G#nZ@6bu_Tau4!6hST5H8rs!tZ{qK3(A9(6f%b`r>i>| z=zuJ6D2hTm{(^gJW)UjFX7KE`F9o#Mj|wnoayJ0;EaRu|?&@ks@fDVk5Ug*tMSe+H zRkaXba{a~;d3l}0T+dl%Y}JF9HXUfohw9HnGBMbZh-=OM_CUpD+ka^lMotB;zx>b) z;}v7WLti8Bs?tX5amK5pqC#E2@EnnWtKg1|=sdTY8*_OsUAlxxA9@asIMMuIynjK{ zj+`E@@dIj?2$Cx3tXsVorgvfUK;R8btJc-fAOY`+x!CkLx7i6oIYV&oKkip>Dyc+VdB!-tpQ2IzFXg~}_3=7KL10YZ4#fxQ*Ey1BVoFUuyX z(s68joLX7iO-DzEi(mHRnzW(~49D&9uO=-VLc4a+VBP{L+=jhI;m>u`*zd>0q(kzO z_MFl2PeQ|#w=oOw=gUcZPKODaRgR91h|(UJ_|5+m62qb6$2TG~c8i-6a5a3z(hV7K zIBMfHx*t>H(r#m`;10C46g_?V^g~@8BTyJ(y$qa!`1Eo6rSE-%yqK!QmQ4Zj8X6i0 zVe~vqO7h3cAPT>J-3YN!$jKA9@T|3UVQHz-gCd-bPE>jTHz(&=D=R7ruKgN%&-UHB z*FqgB!6rSOYJ_cyh~*AGK3eRv+i%#(u`ZBft-@?T0g&fV`}^fEfaMevs4@D4=}+S5 zoKBUs?@}gli)Ty_Qo}17ag!LXT)ip+*&un|Y`1{GsZ*zXFdZ88Cs3XfM(-*tzf#yR z7O80K@{ziiJj;lS}miJC=960GZ zo+g<$NBHczGS>zkUUH^8sqg859Ae2Sv+MgOvDlnH&%n+uILM-N$kRhyV&_i9ZZ~x2 zUtf|LNvl9vF!Z@bZc7u>Su?6rFn}>FBiJt>KNf6bW7DzzST&1&GPfzawSilvd;PJ^xC8%^HWQ)hX zIxGy}l#fxc4@We?Ws&#=B512Kw9->k1rdy(!*DTno#Nkfih6-Z6`zKXNZcok7U8k1 z(W=2ZU}a?`ndEKb__m}Go-rpgZ1d2cCc#@}JhHddlt`TWvI=~%5QUyh$|Cll{U8C? z*bJA11V&s-AK2qzZxU@d#i%MTuP`$FwGp5`>d%`uZ%hFLNrVpBHw$`jw8zy21r!YD zggevmDIrC;a?P4G7|4FtDBf6f;vzDrNdR)va{@KBZ`VSn7Cf{ z#qDftY!4nj+^(U;$;r1HxV#kb;OEw>e5^8zv%z@bgfJMmzdR@Ymko1jfjw#ZnJYQN zS0Tmu9!b#fd-n`FSjEJ|V4M4aKbS)u5dHcVSp&qDKZ6iOSuDbf8(>KPt5>~F+)=b^=gGOZjk)Otd9LtM5R?MzquZVNY>s=_9m9icE`y?!9X^x3T%D$(=G;_^Jov=Fso?LGML5 z6npAtWDjiIf-iy@eC5%j9h6fLe6Po5;(PW9;ivw4CalqVti-xZGJdxoDCI=EL^gI=C$wUPn%D!fQj5S{*IvC6#}g4o5W8lefS4PukrVB4C@Yab%STak+{_rAE88qn)(Yp$d`Cj$Zm6b#M~jD{SRFBS^c z1GN4X6qo4{GA;E9z!sxT9^y0%k$Hfy@!%y_j1IiY%2I?9nyn&&{pPt5SBHr%nyjp> zvZ^Wt#Ld5?Z{$C53L*ZunCN@=ZeXmU1Lh|OX3SnV4;p_-GvUC=%0u#mdV3jYv>h8b z8(E-~=g%L;$6pBwqQfs}@ZA_J-~oqEhdnN!pRoe;qX_SU35$u@?HYseo*fuyA|VoB zWcbZj%gV|)e`ezd=_B6KHF&=Y(j0QYuj{t%UlFc+4Qqf*KtTd0gyrdp=Qr>sn0WZe z6dzRF2dKE@!NCK{o36R;ui}TFQ@Z9GH*Q37G8F1}IgJ5UgZ%Xk-e#~+%ub&Crta6v zh<;<1t|yS^KAEbA3TB9y?l4}pQiNaLkBsE5Z)n)m)79l)Y?jXAg=odzb8rG3uLU`e)9KyoGs-iqVh4g)2vK`3kYxEo=%gJp%(Fc*BCg z$t*fZd#hHjeh-b3wvr@?jB{Ns!##(txw)jIM8S(*o=X;`7ePi63jkc_SFS<@`vH5h z6k)y<$xC%=4eHd)rR!~|i-^se7=Gf7OHSskt*yO?L73!W&^YYCc)ch=yqScWni|C+ zqs-w(^rNIvi0Rj%)|#R_!9Da12srX^oTNV>>~7z-jRLrSvqki%{Au!iK|w()PU>f) z5=@~1w&NmlbEOZR1FX<2e!nw|1xsaktXEsweL_w2jH&5m-1-k+zAz!qaVw~&&3<;+ zA&Ju7*|~h}+O^lNT~jVWpp8CVj}FncuC6YM&li=#xVLtlEAcf{6x?Qvq7aYxGb#}v zZC1hDT#3}8o~Av8BdeUs2l-Oldo&c7XL=aLo|~U%Sijx}9BJGB{RU4@$Y6XCfbZ7p z4UCa;07d&i*5LJXE5C!7%qc0!ifkL>-^IjcW0wCJ#M>7`?8_-BDJdjogJbyJ1=)d~ z$}8!N9W&LoxIja}M37HTPL4(Rj-yA9Vz6L4KmVHBw{MeAI`uVPhAWlpHckuPMzfSi z;6IU4fKqR?O%-DuK+mCI=!KP)bc8%3|L%jTMrKqgK9D>}KNK>~4U;y%ee2dWP|dV% z4PD(*kIt5CN89E$EDxYgeUE5xGyd5k3Lv8H_fR2d$-nf%46Md{0S>+4O{<*>1 zI9UL6^;&p1L&#PsUjq0Ig)lXVgCnw%)V2H&Cm#nMD_*J;ifZXK-a_(r7!%ulT}R#r ztq`g>C(xlhKtLfxgZA$3o#G4A2Tu80>;a%foL9NFV42U28?;~~pAwI5Np@&M`2d|# zNws0roHjpu)*lNR!#<3Ny@@u|)z_DhuR$e8akBfiJD&D8^3G)b9`7>a8|2Y>56Sl- z7PXBTKSd(_r^do)28Zl71Lo6sQ3-TIg1yv^9^K9yNW?NUoR!cwS5OcxT?^Pp-iLwq z;tR}GE-B7XZiW#AGDl#Cu`Wbx4|cl&cNXL3l1>KTKoDmI=hm%TlN}}eRj#aG6x3`g zur&J^1!+VzV`dnd^7_r2XPTa0=;{aQ78VmLL=5axo~JwA*8NO`e&VhIxKr8-TeD#D zyoaDiqIi;^RQitn%^OkK!SD-qsXt>)%>w5JRIq52>N1k;m*20jlsS3%*?)! zb?|_nqOhwnht061N~`D$1JXW%xz+gEHg4N%n>X3nr|=vgIA6E;yq|nQt_$~VfBzL< zfqw5sM;Ctls0!qRk(TR-w?bZ~wb4~Xr;MZrbK=}!h`~X;_=T_0?EJA~h>~a&z^C|I zvVLw_`o#UbJQ=LDbqI`i{rp*Omlq3&@c^Q_cFJj2{4i2YNpFDj^3l$2E>IN$-t7TkV0Olk9 zVABkdEP(caIHy1du6)US{aOh?I~~2|&~L&erVE!28WbDL4&KoYZwp;3>d$fDE%HPG zATBO0c>Z&Oe?NN*A!qdQYp`~3g7@~U26DSA>z((vS9q8bXwR*3^5hoaC2;XVga}Wk z>Vn?krDA3%z}cvBl+_r+NRs~h*=l5}@QN!TBxk9UEzh41hD?vRl}VTz?y-*75*gXh z05?S~R+<&BdQoz6%Bmb^0&eN=4+eqk06Y8VlCLaXGA#xK6P`T5du!Cf+%Um??eb+R zB+keq(b0Sdnv+2im8H_(FM5YYn;6+Bp6@Um#@CZmQO!S{5&KB^d#_{9DxOd^v(Say0g%uUF zfZj_*R37p-wyXvqJFbk<4gjQa;)EhJbK!q#hn5t8ApW=%rTAe&!U}6^Ypml(aHWc8 zytV>m;Hrhi#dp_x=%aryVJj3vYWWP02H3n@XAqEq6kY)Vfd`mt(@^0HUD^;T!5C7& zf@9dQfm8W_gM)(y0?e2wX29Z%^aM{o2m9^%P{368ebUVz`B4Sn2uaegm~*y9tnd-v?Qm6F$r{fnu#oW`|%z$<`E z4sVDU_3$ATy7Bwp$CI_Fv117s!h+_~Gvf0m@_}ZuCR!3GAhFY=y%!9_?g5yPQo7Vz z4{-9$LgotqramYqw;Xt_0M;JueeE>k1DMU;^!xX33I)X$@-IE|{e=*UG0AUuwjcR~ zgP52Y+0XH@y!<^fh-A?~*kIH~@{K^lq77T%9us*3izGdq`>Fh`$Vdh@HoB81 zPm)Co_{%#a6^iBhr9nkSg$0=)j452kOtETegqHwh8@zzw1LBfv*uDY6fg56X&Nmt2 z-9s;4yeI%gI%R4){B_b4_yF+L4DJPssD*z*?`;KRV|HLu5r=NIDCV|3w@dOg9JK*y22XnU^eI}|=~{#gOs%ayqI6X-iHnN^Mj&U;h(mq)^5xc>MC5?H zFmXm$C1}IOZQKlzG=O+lQMeEtS%X4}9VB=1$I>g3(}vy*vhNczhinYGUEP9$NkAx+B3$EWgJqD>u}at$*xb0c!a#4gzKxi4!Lx98k~NffRr?y~bVgQ1N!`*s&Z&N+EU; zPuXN}1-%UEUXN43Gzq*w`wNSR;8d=Hen_|q5=^8IM{=NQK*uctANtYTJN8 zfJ$ZO@6&$VO6qk=41lZdvVdPsL=4tZTDf_Ss0!DYK} z?6d>d*pY$H3fV38q~;RaWX*P{q^9HT5W~un_eO%jU^JR z;|twY^@PYm^RUNspa}$)lp)(?$IlW#q%4SygJiU=yrLql)0!9*072tie{``mTA}_G z^r#Ujdg;sXZU921k*pXk9>vO|r;ylN7#b|b#L2tfOzsn>vjtXjU=Ny?w8zv?bXM^j z_ent?`kE=)Ljue@goM<)_j5ETtE-m+*VEpA1Vzc}0|(m2INfnL%PAPV87)4OgzX|M zEL;G|@&|aNr{{dy1uJuq7bwo2!&hJ9ad%)2;wo5dxC5NXE$7aigAt$`-h-hM?<~#d zMmZCEzgHVF0kA3noINZZN&ECPIhnl1cgAchM2eOiXL|hM&CN9*KNf;E=ebFnEW|xu z|4dT*FCgqvJamYvwY3$mC1mJ(vlDYdhIt;W_#`t~{zv0-mRX)Xy9$E0g@pwKY-lo% z^Q!YV=YZe{3I4ieiIn@i{^Ye)1;Zmq4W z11vw0+zFEw+T8r_VS-5Fy2O)5mawJ0xJ{!l@Y-|bz;q@B$YsNr;Q(pU4*S;YpVU{5 z9fW2ip;Ijj(#J`54G`PUE-FhPq}Y$a=eFW zyHIodVbv1!rqwweyjbe|w5w-k>J>J{g4CDy@2M~!{~q^^%N*wE`oQA5m`d`YUvnTp zp3}v}WgFN%>WMt;FCTi{5a6bD*ylWad}gq&p>dQT&rdXWl#BIP8;iIz@QXBbbmWO5 zJL~!2#sR>yFcTI^b_AdoaCLkJr;H3c@`L}2tuukj zv3=M6T`82PNJLbMq|6yIRgxi7DMdnwmyAWmB2>yeWgZfx0ToISk_=_02pP-lHDsQ@ z-}!j=H>~yj*V=3E{m1j%&vjqdIUL7v9+x}=FqX^8hA|vPqfS@u-t`I2Y`LJOLIRdh zBg5x)>eLxMW{iffuWw;48`w1~7_#1++OIY9?uE985KXvXD+yKI8Z(x{c5z_;q{Aq{ z$cj0a7*sBN)fBhA>wEh0b+bRcG$j4e!7k-_;-T!;-s*wgch7rQbYWPeV7L{+LCu~0 zUMThR7cTVd)93s@Cwq?@H_kgV&``RvVI^NsWdZ{z3Y5FF;F08xfY%Ta;v+<4MTDfK zG#>i98|X>@{{1Nr7t+S#LPvPWJIQ0TX*(7U=a|rx>w~CLY@8#OoSgfH_D0YL*gy9^L+2o2s3N5*u;CMvUP7RxA3j__$IfE7Rm>5N zji!IkXRXA8`(X%Wvw=PBIr}ZmUN}jiUs-bMJI&;0<>iYjDgp}5p4BG0CUt$m07M|8 zI6OyTm!%Im^t#CYrv{Er_E#OkvH8-yW3F^@dl#?Ov5|KVPgo4DpU)`pm9qwJ2^EZ? zQfod9V6y>88=q!W+9W+2eN7NY{*?60YeI#|jBlGjm6M*4F>Bq{ z2mhl5SjYfyz@VPPp1*kE2be_nTV4V}5U(Bnqu}vrm&=Go*X$ept)j3t8CFYMTU)F+ zAjbsMquo|hg#Lk>e9ZY0B?p;GL#fwpTn(4y^%k-`8VVNd;Uw^KiT~TTn?Pag8TkPO z1@5P6+qP|`2;q->4(8Y?ViTC~$=1}|dI*ny4WT=-(ngRYZEs<`%;h3 z4zN+ANChsyS845*9^$5B)%y4A+wBwwP%6tY!ab8<9zA`kWoQ`d^g*%}XFhGx)TJ;J zfc1@VbYZM9g7h)y>0GM8O|AVXf7Rc;xz|O7!mR0<9-}G!GL30N>i5|1y$Y$?36C2> z?=h;(kd!{vSuc!}0)CPMfTOHh&xgp^v}seH<2Pv)Iq(Z%y%nWbl(5#@2Pe;_Dh9+j4U)~dHiNnS z-lKEp&edwvC?M)qxoytcv>vhj>z`DNdZYozi4jG=dGqGgYd0I{?BTJ#*m?u){&S{! z>E%|hULDR09s`#}&AvDzqYbhj@!p^;Gs=#w_cdM5!|zhiFfr{zNau9FjrIQj(~uWc z89R0?HN_Z2v)E)g0gnWv>`h3}qyfiPRRK*Kk-VvoDZcNFV+vv}#AxpPU&HUOiB4LS z@^QdEZyPAiwW0U;?`d$ypcCta(H-h)v8YMzOxnR4#6Y+Z`YeCWxuU>tHw48J1snyw z&ad^Oyu6IqKeq3VjvatZ1;=rn5q%TaeyM!oN~ky(WBENA^qR>aZH`>wj{65?xCP`+ zP?%)ftI^NzjtvONyL-0*V%`XrfNw_#u@W`=oZe01wNtKl%wVl4SB(Hon%0LxGltb@ zGdfRb4zjhiE$nxOqU2eLcf9}7n3#p& ze54NH)kwgFU69wP$Nt{z4eKGzC=6%d2--FQjNC@A+_J?OYRI(ivNm{#6=ttpYe2EE znpg%7Z}@#KsKM2nH)-qRiZ^uMNz-zUZMEzJkgl}_t6Z-^14JVOR?kKHJNxI?HcXEI zp~V+fa3Wi`X(QB_T&gmHVLe?N{n#!27FcFc@5s=+wC5t)LHGj63M?OS^r$@yj`sF{ z0t1%$^cfzfX5thYk7cNVxsr>yNH zlsU|LhP@wloiAmgwkDZI@*eI1QrS_utgFpVO4Pn)`yeJ*V`|5~goWZg@({`HYS z4Idc2bm^k~`}aFEkFidKqCzTEP6ohu^9*FW=C^m}{t8O;P0g-tq~@B|;DUBMyOHKe z=88_t*#X%S8WyJ0?J2-j$v41OGH?Hdy>>@OKfeGR91YEG+Mz>T0Oj?`8?v%Gz~;9> zE=9g_=$m}~&!IjZaKH9MN-_A{v}KDwvu#(eUDMz98y-uP9+VGmXS`nQl=7i60p+5k zcG7yY^WE38EfB5uBBm%WqOEIYcrT~o#5vahSBg_mj3O*>Y=Cm@u}VAhWF=T(qwb;6 z5N4Yv!lBmy1mTtSo-*YCA5e6Xi7_z`NzcrTjEvNTP&gC0H9G0yfB$&p%9_|ds*`Oc zfIOWmIy43}v!>j$cCe4HY=KigN;<^nCIEL)Y~(SNqDjLJCFbtd*YB%Be0o zj~6qU%55|AwKsNHbhMtssWcrp!h#=4@0dMJ4MbzzEYu|Gs^TiggS#T&iOgEJ)+1+c z%-KN`1&Ol8Fv0wvn5>9S8mwYL%C_KQ1xhKh zx6Kn@ynLAtMouXwRi3Ot*3ZbTI8!d8oi=OQREvdl1f#6r1D-GY`xFcdiFlXk)rQa} z)J2t*`G5u)sFu~P>&N;o`1!tS4P9L+YB0g5OF9Gh%+4L7uWwjgh#l)&e>FyKd%7Jx z>B4g&))EjG5lfXmy*;v|%3~d$Ur*4%aw+Kh#|c<3#uKP2SGqWR1eBF*kB%;~BWvN4 zHJT1o;y$N%Y|1m34U#u^*l6*Q23D49eo_|K0^tZmsi{7X(|W2XE(0n1#eoyghX#}+v`tYY{^HK!X)Tm8tl}<8k$PBrGUCx< zZ$aa>jo}#nAHt*C0=(5Erl3_LcF`j)MzT5S!3h(A012j?CLphs9EXiJ@0yw`RL9U> zPCL7Yi5>{Fym#VUqQKQ#w|WCR+1T1@_Ur3$l$DnD4Y<3iVC~E-(uuiSr!jFluC5qhQ{A7lAZZ%G`C=xyvX31b0|KoV8sJj4IkJGR>1sUwb}f=ZTn( zp7J!u??h?A)2YX<{pBgt6}TGl*xgP3d5*y@P`a=6?U_&NvSx5q}05eOqGa+zr`1=4m(*l$gd^9ha&IA^{eH_+`lwK)x0HNzGeJ8 z)4ID!v-s;ql$6NI2wy{=4rdi5;z>kNTdN#?*cuK zgqb<>JlHikK+pTdaJrnRe8sk)>-?YIFHu1oD7cX6U&qz)=#}(CqmXRe@&awr^++u{(#x!VkY-}WZ;W39Q za>p0gUaU5?5jLLU9vj?5R`9y=&`_}v4i)Ecx-h<69r}w8e~jo*%pJuejC`zt59z{# z2iu0%`jbRSI0oMg6grInRW(8MynTGisi)mDCt|>jR5EwLpGKHWEi2BT5cW)I(=`6z z0I&%H$h%LUdW{>G*gsRKNy;ek8sd!@45Tdru)2n*LU0m6;(3QO3ubS}L+CCYU=v#p zzz^z89*j$bY(8#7j^KopnDRmC-qkA*O#-RHXncFMK4B>o8ewpb8egZmzQe9W=p82M zH54Q|(n;V@(YNh692g{p;03<$PKOR1L`%%!rkYnmOY4X^fnexMzxkS)&k;PH>Y9{d zGu;-bcU#vv2EZWd7EKIfzVRxzN=X!;zZILN?_b`wdg~38A77R>F!b&HZWP29y0~oq zNbk+)&%h~ZJ5N4|jEyyv5}h21-q7vkHUuh4ICxlq4T=|Gyr%g~^{e!%Vf%W>GwS%~ zuU@&Xm=GA~M2)<6(9V|APC)C3j0h^;oa%+r@*G=t^tf?Dvpg6As9`QWF;FK#taE*h!C{h%IrqD*gI=oQ$Ma z1ALKc!5Dli{m`NE&x4#jn#aCs+M#93f%o;3s(}}X<${2njE$~2nv#6rz)GqR(^jq0 z^3>~yisl7?^!{bgG)}9)Wz(;|N92)DRfgVUF{TV6cfW1VTv~nLw+izH&Iw7v!yqAm zqiD^MQEwa{woFY!D~_-$O`3o~tY8QkaN3L+1uQ7iy%lVRc*H=JD>2yb_;baUDzWR< z4SAl;My9u34P^#E-|s9}-$c@6*OErvo-x25BE`fyXirw*`2|BWttj}2F<-F#q;)3n7T64Q-`q(}l(w&0^_T)ccv*$-#Kn5>870*(okITmp=_++~ zdyxWz*o$~kGyzto&i9=AbN`kq>j)A2q(=Zdk&SlJ@L#-manIS`47?z?RHK0KK0IDu z@I)k>enOmb^&v`}NJ59HnVFj4VkB`TbavhEJSjN1rjmTN(@v(8=>VE+)=>U8fV|Y= z16xnT?w!REM<^E*OuRaa@^43)E;xE;!tbwpFSS;Fa`Z@IOO76$`{+S?b89!UvG9}3 zy*8htbuya=yowPK;E;FR4CkF2xn=-J;S@Lg5vI?wWv}iX)OgN0Dx}(E5L5V3X%uKb zh}5qR&9k06Z{BI7ft8u)7r=(&Qd5^v--ywvZFze*~e<9n4bOKncbf8raV)O_yC>~69?L~!a9Tss$QAoO` z(bK?+T4Zv4UCUviFR7(OnaDd8FZ4pg9mD|4N7Z2&7V}q$?$`J!2*kxQ!hd zB0hSKAqC=PrT$qanu3>76`7gvrDab6cx3JH6uLnP}2RoVgt0p8wQ2 zHW0$RMvWRG&F7|oVR;eG4h&AwsqX^)V^x_+9|$H8U1Tv*It}eK&{Vmfh0X*E!TD}h zR#th)r0D{Yg{};*p4^tL+DIq>B-MWKhx`mJX*F7@x`o($VPr|JJZ+JOxW$ae*=Nz> z#hU$GVm)aMS?*nFX{)H?%Gox(VI*YRN!A!^ELCz!9l;W*Hc#KW^=0c&`#F#D! zw{oTD1nPh>7#LTsbo7ua=ZVR#vN1ww$F8JQ;Ubfo*ld73#g~TAxriJGZV2OT-|TRY zHzxQDNEyHo`oBIL<`l5>7)3Uu`Md%dnlgpGvfT~?``=ri#468Z+< zK|OJIu8P^2WQA%(aC7xzMGqTTIdA%Nu4@F;`SQ?b=jq1nGg6Ff>T4ODhfG)K2^LJp{0G zRNf4an@m~skVcCL9LJ$!NI-CGTDmk3i>#?c1p%?%Ym({P;mOuk*!i=BsF90VB>F@B^K}*A9KOLtcQ#P(H(t zCVqTLis5{2QxT~;)yzV~0@`JR}h!YB&WG{>Eby;_2aMOah^}`m;M{svEi|mRR3@wi;2l#}f`*E`tgrdc%vnVu=_6m?&{6DPockCzs@Y|Cn5n3mQbVc+lez7{UAx+jzKq z#?k`&H@cnduX_Jg@<0iZ3Pm0|G(BVIL_36KP*$clK4f~#6m<=4gY@tO@c+6as$S3g z*OJsRn5&Q4d^y~3;if(oVqLdqOKIgp`oMafgZK2myHP)^dfKxa|Il34gs!Sw>GlH0 z+bSYBpH(BiUvn@_pnG9N>1daEN*@MynGG#uKl8QKG$(6YS!90j$P=M4$mm9M-b3HS z_FE6M%4qE}YMv%wQcSHW3XoI3DdmRC&UBjfrlG&TzaHqz!_!M_p>8=ii_uny1fhPr zadL$w;;U+qu+tc@1#~W_x{&_{KQYYGh9XE zy&9bq9kL&(QsfFqQA8InV2`*UQMivDJJ!>5-U(t#Z2~*+QBx4BYD}t7n(n5NgGOk^ zbH*hn$H?R;OsS}i5a~!u50}32>dtDhV<-7152i(vJBKnD&e6n?-5HKe8GaQgf@%#FjTE_07f1?%EU>$_>q-PvVZ!+f`f7rf#9d=1C zCUvN}SFpZ$H*eNeghiuB6pb3)q66L19{oDY&Pd7;;Q~NrJWtP>_GER)yRu~RwPe8F z9v*dwth4}8RN46`TlwW{YY_XEpgsfXKDlKURgTD&$naWLDvU;T@BNy zMFfvW6htx;xY|Ua0lvmiIGI;NTCH#tPVv->BGabXzI}h^v3d(e#zcH!-am#-%oW+E&KwXTFoV_lN=#C3x_j;V zb?chctX^F|l{fQ=OL{0;BU-MHoT!WsMF6h8j=afV9l zY5n`7*H;2j8zlqeF~Fu>yCF3ky5f$fK1S%OEy2BhcCUbyYl;=e}?7%@Q2gy z9-o|CovxHSI~${GXfae5<_}U(oM_ee?p`~MOR*3pXi!6L!tNJ2$x7gW!Y*|^oj5WM zyew|SmLV_(H>+_*&qDZGKC6>;G_8+?x{~a3|HIpt-@pF+36%ZI>*+pF2NW@q+|q-} zU1a*1w&wfeZTSZU??P(hK882f3+hI%apP8VrlJ;E)9}iI#xn8nY4YICDuws++R*e& zFIvOOF0&iu=BAID47TkY=cLIrdxIi$MXkr2ts&BTwBOPYN=Dgt_k2u%+3$chon@kp z>Q^uXX$(P797l;_cTw@}!xL%?h0Jf3ApV(wYRjDB7`%r(UT;bt!XB z!vcYjSWdIIJ^&tw6>T-D)n15`f=GH&$p&9AU(*#+Z@FGj^T2t=^lRrWNnLA+(UGfXa0&k>k8_*wqmyDzA2>r7Z?0ynWIA>k2n2lsO7Mz&(FH3tX(l>{W|!O)V4 zRZ67SrEdF-rR-tCO5WsnV@mH_F1QT$SW7b7qI| zT1V&67pn10P$ZNIk`-V76G1Pq4Xp@CLx#5$Y4l*aPIIBn67beXI~V*u zMbPfC_1?L2RgH~}*WS{UTeo}K)IELr^zN%)HvHMq{c_J(9o5ob5$KaLL4)cqdDPLR zDKu;KFrudQ`g&nQL(8U3;{nN~;e#u}{vw+m-k|!e{Ok*$%lt)xlRx|zs z*srGWLPaeka+(GmCgriV*NA2`I;QQ~)s|n3EJX?ZI!wD(ErkCa2pXo$qjFU%#jubR zB9G)PyD^u@fPp#xi1rM=$#K{1g|)mkuY;G3jn!ln_u{tBwYhr70alYf-(qv^+O-9L zBX!fV_c^=thgp-@sVH*3*g}h*TFaC5yLiz1#81$pwG9 z3$6~nW(Xx@voPXg=NB(tP$ixs6Z)YC;&8?@#YBCQ5Xb+9wOxYUPVR0!!@NH|#-3|| zu*G>4$*(%;O9B{6^`+yLslZNR*hCJFb+G@wjX4k*+9NQ@R41?eoYscu-;L*eF)=L3 zJgNKB@41Pyn}cJM&vjR5xi0V6#<*wutZ?0Q3pMB3hOaf-Y)SRjtF6(`z);_@$_lT= zmKA}EjCGt^&eSw)u;}B+fA05~-ML5ar5}6F={_-I^yS+MIE34|TMwT|*vl zYC0l#e9eY$${*@08H$JCEvMNZSU%E-nN&c>F|>OkQ^0aU2g!EE1rED?fgUCNM=jVj z0mH#pf-sT}9Myvhj%37#x;k~q%W77`(z(gaM4)$au6h=8uG1PG3wPxSUFIe}*17nC?rvS-3?r6|1|BYA=eTp!H3Q1Z@v&T0J z!Q%1b4t;@CdhCLvB}Ky%2{_o~aC3Ke2jH-vS2t~i_C?+9zmf5tPtkurL5v(_Pjl*e z;cT6GAhwT%R6qjAAQzdNl0J5IVL<801w9ZAL=i~2*QA<|8k;w7E=^#@MkDEc?^vmd z(fYqkuM_|M{q28t?xNiE-{|OkN%SY8_#irrp}sCTI+GLO&8B@mDJzdKZ@Oob9*Ge;N^0VufLis zFJ>VcAYt2AnMuTuR#0kAvYenbJ=TV{+v|Jp$Wf!*DS`t2KE}8bs3-s**Cn{rp(#y}7vA&C!heyGW z&KH6{zaDmRdl$}st_;}w;uu~`EcD@0U?xIiv45x`3s?CouZIcQWV z!&%vQC5XZVB`4(z^O$Pr8ZunLB3zAmVQga6jdL+AmJij`jMV-yVW3$DDp}A?=lS!yb5p~U%Y75vL3H9+W7(8Q z#8ci&4dX1fAQZ7JCbff&MhlddZ<-nxch$ye5_Ww;DD$e%2ejSR zWmZkJw^bBot^5cX!WC`Xwhe8uF8Isvils5pNzMJDEdw75$1c4%`57^o|Hhuh{vmJ5 z>f_yWik|a5$4>k1ZT9HBd&kSBvrECEKY98uwrbf@<}oP)SMiOHzOt;k;OA1`K%I*4 z6u5x~y{UhuvvYBspq<|FOBld@cuT@Hmd;4#+8MX*4w#asb<+{Svn>WYMsXdZi zzkR!J!i^Nh@2pSjxfT}yl3^jQ0||c)O`dqHh_H-}m>u$}E?$BQiDWvcrmU^UKRD5i z0$}u{Nz0GipX>S+xuFv)zKfCR%Bj7I+b5@{jsf77Ou+q)I&yuzVb(neETmBnpFL|< zrF*i+QYI0jtdCs&_Tz{A-6uO**w_?Mw!r*eR$Pm#h(`{u&wt~!=bwO#&|vU?zHU=s zV5dPQaniFLPQN}mZc|*XSz0KJofCW#;b(oV0(Qf zNmz%r+f7eL%~YTF0}^l8eSBbw*=H%Da0wG>%=v(W!FLHrVg;E8+VidHs-zh1*${zn zLCf9OxS(z^664ab?dP%EY{OyVmakah$70O7KWA@Q2mZ_{-B$N#twvq*D5~Y6+OBgy z_Sy6~DKT;Alyuv$N#n+8_3Cvd>Zf6hu^|-^u3io3`noZ)V?Ajv?m2?oVrKy=YGq?H zY3-K+>KK_n#u3s`%Uj{uxRR>|mM|+}6*`QLboTHS#e**%N9y@+ zO~RUK1bTfE5NB}2_D@hTBb$YlXz~IGYc8HcrYEMQ)uO=1L^-wW!?$nWm~Gx%W;JEP zRb4Db07xSC_X3aP!(RpOZP5Tj0I(wDO;gT~T9xD|2Y^yQq{*#u@8HaPln(XvHNmW; zfdm2IWb^|miMti56NQ3xI>+{=*=f7E25<_qLUK!UgTy}ODeY)#k=Yv@ zTkg`#)^@;agW>D7bTSZaEd(@|q5}C8x8yic!yUN9Tb1k1D9DAq;GULZkyZV-W>ep zLN{tyf$6gHKX8=!>onk63USkvaXdbN=6Y<00~`A#biyhPFS@0qSuB7!F(ckw@&Wjk zd@A!tWo5ZHPc|u8nUWHiFl58Rwb#mS?QO9!stgD}=j6jrpFXw7ZFQ@(v>vJKaoBW= z6tq5wD~_GLH4FJBFf}tkGK6!#bUr&6M7$TmBEW-*KXY}HA<@2Kce$7$xQz`)dwO_~ z3aTV~Xu~~GH9v%lK1Xu?+H@1iZr>@V*J!mwu@(ySC-^DT3-9-L<-Z zm5WbNR!mK*Ec%3%+AfMJamBdLRa;t{&Exj$`FOVD8`wz^)l-4LtmwRosdv~g?68iP zec+vfBLEG0Mw-n;^(2$BLY%|znX_{A%Pzn%$b+B!1`lW_I@5}0&+v-!{5sgdI`%OL z@_&vLVibn1S_VHQCga&PxY@~8C5_pua{WL7|1m0>sh^*4)Dftk_r>fH>kTV0UWSiR|opn4qM*pWdMk2ZCpO zOu|-_7-#hu=S4(otLDvB3(&^Diezp4Xy1*T3qs#c_j}F3y?a-Mq({|yhH5UINndIj zuLA=hHo;3x=Z4#Q+COpY-FvU&jw`or9qIS)$i}z#C4MXROZqn?6%d<>kdW?mTjodl4w;92B`7Cqn-wYcz%v7rfvk zK3gRTT7#;P6GSME_(d1oT#5)mb0(f%@YOiV!}<)JeLD8<{qD+`wB#(jVV5yx7K(x2 z*gMjkQ$aIDW{?=u!pdqikOL-Tjuhf*3cb0&9)!0RKc{D(| z)U?3wuiR_L#mBopX@23!y^TI|_Z7d=8GO9a4C)x~e;QZQFNp=aj`7WJU}$7i&Zv>d zbbkMM@FzI21{H&qTU4e`qLU%Roi@ND2a!ahK&KMdet^H zpL$6AmgqYG0mVlZ6zFJh?*Xnnv0UsJ+j8S?s$~}W6q-0H9l1w^OjERcnl8+~z^oK| zRVnKHs`z2rlfN`ek(5PAC1Ex8L?Te%*zaE|E0I*%qS>}SzG2Iejsu1T`2U;uu&#gb2lIc`ThmOd4F$lwonErK8}`a!R$ zMm*o=bEKxI$iPA)vH-pjz~vL1)z()@r|*S?l0JmokPrDov#zVikSp}9n3tG&FsPzM zJ>7{Q5&OsQ=GCitG)XP?Conyxg&e;P14fS;6-zt@S_XWKB%h!ysc@PEg9^i=0a*BG z%Y*qp1{`=m@grfV6IYxldCZFs=EW2YaM)*a2a;$M^`Y2C#8uoc{&Ig_Ey=Gty3TP={FS;e8KChi zcV~z$gn;D-O%go$cy6x9p>o_DnKP%&tpNi`FEKB6!N$r&iw(10QwzDE^AQ)5hD;~s z15t>>kT?ziyaeA8bvrVtA&LFF4`;^AE=S{95(@Z(Y)zbu-Ag!op&XK8;I8c)-2=uiEJPr`=z&8N~z`6>y}{ z)XU)(MF@|beyGbT-Uj(}(j3~rNZNIc_ zP_G_!zX_{#iepKv(-fS5QK`XhZfb)MrVnCACxpcAZC|Y!pY>yS{L9BXa(L;^D>goN zJsvn=0;J^pJh)McnwrGVA#Z+?)Zbt3@;0xeB=ho46lN0TBaYp&oMNu+t=zsZo==|8+SFi3*z3(cw`Yv~`%*qGaITf% zP#E=&gnpLtM4+J@{odqeMrIqkCm+7}vCQkpog~Rl*dy&Ln-0&F8r(z90{BNt@z7DD z8YA%rqSbS0ws39ou_u%3)LLKV7fPd{chWeW0Fu+V;3j8&i`{@3kCL9#!btPNlzUD& zC7Jk>%VckMb|+4ypCp4@Cx2Uhi5f}yNtQjwItl&%=qq~qbXW~3gE`s<+_yUvo;M12 zIrPck+SX}TM$n1If4}x{o~uXuwV$bY{Gc@u6xLSPkvon}Q2L6=_lO_J;KX7f9HAre zJEA0aP8Usxvy-c4ndqQUNkJ2C`zE+c0(P=I2Vdsxx!dzCs6~E zD~q-VVf^P@>|yu3_ZLbME{b;IVRF8N6Sj0fsn+?Fo+s8)bS#0omAHtE_8}Od&?aOY z0b9V)%(`}M2wRe$_)$j7etykJ4}P9{DjV9VHi}IhJPQ5v_advJQJ{3t6;BOu}Mjl3ZSGhF|l%0~)sp&dZ!;SY3y?)aXsh}wQ4Drkdyb~1w zy%Hs-ylI9yUWKfS^b!23Oeih|~+}VgBcpaX(0F*k2uqu5zs7WLj zsVU-fDzUu#_vcOg0e|cI|KARF<|ZQOtryd8X5wV@A7Ks#wg0f~pC9|W9jJ0W zA9<8EMNLoeOcDCe?EIvXNprp=#c*`Y^Gn08@5m9mN?t%UI1TS%!-8J6*LQ2Oh6qkm zXV#-fV@SOG&#Q>!QVUSyre;3X&8$%)BZ9^8=gs43WPRw&no^p~ccA*^$G_aKeXLG= z-Q=9tn;RGzEg?mT1OmmdC0)%DXqA|{fLTca3$KeS90s><;Di%9#P%~ zz&t*$4JwESZSz2}GVitfLOA3FD1j&bnbN=i@~gdHe1XhAh1yEeD$Qa47hk8W=eaY;o6TQnBlL=-U|z7;2Gnz1#E_ z#+NQ#xpEE(R%99plV14|J?B@Lx%a4`{TkSz43e=lxTxqX5i6T(Lt!KH2~2HnwejOnM0i-cR%b<9fb z*C23MJuxeD8{+BN3pHEBneHQ-tt))@_>7KO>4y2lx@uC;5^yVqX4|}-OBh6`BUS>? zAYy=>{%f#r^Lsa~7=i(K;hMb#u?Hr;{PJ%itz+g2J)w=uTKuv$G1+eX>jXZYBle|k zF2bO7+_BEWG;P*w@5PMAkNtDXiBTm}TnE(ZiCD{S0_mK_ViEFJjCn>p z4W+Bte0*;Ucc6TC%YnYnXiP-uf0~glwqXHEYWG*&&&E>TrK2>mc1@`&Z&8+$oq92%r^o7zt>5aS`l7!N75owm}uLq5nJl6#BAnglH8(NDtB zyMK>7Z~_@&EIf+ul#(AqEsx|sF9W$>QOnl6{&zkcZ^8hEzUUR*I?ymL{C) z(ErcxU!tkzK{;9#ZU6YX-MB$5#AqdiiRXlC-T8o=b3{*Z=M~TV;hF!}Vs|1_7eyM! z1zgz4d*|fTqc6yRHubF2|7Zd7)hR!^OGF2h@I(JYtoGlpVWUVBFN$S`)laGMf^|Vb zR8}xn)pMA6E13eZO0^q5c&C!v<;>uTsTz!;m+UxxfX6H*<04U- zJ;b^4$>lwBeCOymK&i*h%e9}J`~o`0Jbv82Y(Ju>(`rw6e>7(AuuU2RZBei5?AFp5 zO}#RT6a4VuXtUPzYyRkfWRM71gM~qLVK0d9GD|ybSbgeH+Z%&O!r~yKSWf*3uTUMh z2C7(8V50fM#8_{%nv7kE4HerJf6Y-7{&;j8dGA%W*_(13-P3~m4<1O}1Ej!=pQJj( zPfV^7tZ&5;qkg?Q5uRo zW2e~pgMce}`{K|mqZ?dzCYsfkPkSY3jRAlF=|;hM`pT8G{M#B#WJpc&c12S)RcxCF zC?ck7+|q}5eP{5IN6D=u)Z!vx)_-TojT_=PDt9>}R2I`y#k7AyJFZzcvh&v4M?Yae zxP@s2>dJhULGm=4zT%G5V&ZD;?Ood7$KJ%`8P>sbhU82XqdGbPj1-)Q58pE4YS^!! z3GW6B99XxmyDO^_7?{%f$@dV#T(IAfTy*}a%aW3kg8y+>{&ckevGdQ*s@xbO4=-?3 zmoCTb!)%j&C#9xhxv3*k3(zMZu;pN|4(4k(jE`u#WXzShly}#9H;(abX=g48uXrD> zM?;IBJ-~ZTMglr|9{9N90%t_qEbC}Lqg3nTUhVLi+BEl@HM$Q`*1BAAwDp?MX$p1z z{vSmbFVr+@;KA?C&a-s&I(h<4Jg|op&~=QAI&O(Pn-omR zFGVaJ0SS>yv#iS++@}H$rHb<$xoy?(nj~rS__>t;8v=J?5x%o52*?>y;vq;uHuKSu zcdL3P&T!p)eWD;3_i7m_0(t-YJLct55&?&7;*7U1(cgnKAF$4(cjpi~6S$d#eJ>K5 zty51ts#Dz5f!T0W;OD>+QbT-0h8jKXS8z$EqbE)kDb0jsB9MDN&2~0F1wv-FuJGZL zC!V`cOfAb+qXu|1U?;7N4EplUi!ztdssUC{{MgXh-?eYw*Uu)Rq!IHuL=|v%Qpo}# zojo29Gh7*n8?1TC7zvd8tTlMQiHL$up2Ti&xyPJJ=hD+m;nl`^qbC5pnj#f9!rpLE zMlNeDxHRcO5QIo@l=$>?J@PR8<)W*5V`8eKMiI+ds@PM&Nszzjfkc7C4Sd7={(RaW z7l&V{zWkS%UNSv_K>vu=oGF2K@IGV`L)qM4qNB+9QE1COj29wcEjE4BCm1A`Un6MKOU1aUBfugqak=I-5N{jPZVz~)Kq7KGQekX)i$ zC2*rj7InZ8T|Kw4sF7oY^+fSVI$PaZ+tu0DXTQ@VN)XWPS1EPl?PGWDY&EmGv$L&} z=xtCgLmxam`R7+F)SqlE@t|O9IW}FVW;N%5>6$))hx2M>_NPOueXNRkU_@X;f36V+ zp1(GF=SzbUXHl7x^Jdm}cD__Zts)v4u`>i$lb(`Vz{At?$(tP8?GxO4kG9)W;qo^wT;akPK3F>(b(l|&6oCITE2o__gRmL|~>+$Ngl`v z8ZE~z-X8uvhSn#KrW$-tx?TSwSku z_)r2nCE4m`r)fRpA;s~S{+9<77zVf-iM}2!Gqe<2Nj%*7`(!ta;u|6KdhoSOBo(GZ z8D`C&`eGKZklAzX2eGQ=!!p!M)r(}kGYP-iNRdb6m}0uaBcAWpOxe}S{BL_lztNh1 zN>cZDwc}w*Kfc=0abauqZ3G&;sa54r>(gD zU=%6lVoE7Yh-%&S-Eydj)ZzxZEKjwj`bYgBz>=%0hLW?|$9U1gwX1Do`m?)E{!K!&9sWF{AokyQHU96{ z=)1)N9>w^o>q|i9Kb{8|)gmRIK;kiX#n=WJPgj~{>36}b5U8C9w_-S2Z@DrisWu{`^y#?uBP$h`mKy(Ju zq7%Bt0Du#<_j!&2PYdxd1I(9@fDj^o_A&Bq9a+QD&-1K^w$ht^DvoN+zycs{uS*I|Fz1_#)LKX11m^-PCnX zTe{sRD_s-ZM;x1}i>7@c+Bd-TUMbvJl;p2^skT?)ty=bPKHrm1B$}klCz{x=_jy4a z+>MNh0IVK{zTxWi>nZPYJ*<0yD*`SFzqzuAEV5grB`sD@PD&che8JenIww;gwKxyL z_rbavr^|ya{rg~pp?o^?a7Ep`j!u0oxR&5EG(R7|Ky%ZKR{5%iY&w}mwn(;@G|=4#wAOtLc1YR>MKJ& zDv6SwnkqL0UPIFY6d|$(D)-UIbd_-0tI?10Bc)xU+p-Lfb^f#$)Vwrn@>afnI6HA6 zQm4|fdWF(&nFpRCPBK2Lj^zNvh;OIg82gmdpCPaj^cIz(^S-r|>`6(}A~M8$-hZQm zhgQ!?I$8fsyn({SX07}G0FDibn@(E=a?I|A2K3djwvDVF?7Lwsdb{F&YQco*Z)l>e16xYPYdX|4?OU&kJ%qSZ<8{UV; z>5@Y&W^#3$bBzq!65vMB<{@sA(I;4=-kUq1VnL?p0N#U0N@DD`b$u+D7!vzNXTj4!N9G`0_N*$d&X$NV^ z5G$!ZXG;{c+-Q`(oA9tfV`wF?VsU<(f-DDd^(23YNeX@_d_>L`VaGxox=#e9Z#>sS(^62716CtF0zQE118(YZ=NY69QE&m z(orC|f1jZyJ_0iM0yupJgy&4lC4kqhqe|<#{H1ljB7;y*^UdZ(H z@)C>A*dGU`%;Rs*g=rE!u*idX%(|+NSeR`eq%)oMq$HE8mhv;M+fJoQlMwu9Hot_@ zMS~g}$!N#VzW3yXx5v89l+vF-mdykmLns9;$(zIVRu*KL${8aZ1L)Jlw+c1E92~Gx zyfXETjG7&8%z(5|^oVAyKaKkPam`z_XaW`nTktSz0-yhoU!}*CqufGrF^E&eZ9LMG z(hTJXp(PNQhFRKr`)vo|y=_ptcIrL0%$5TzomhN8P!+Iy{w}i~%Pdqox+%jq*WiLF ze4jipH+`3PWMz;8km|5lW^Ea&{iDmA*}kxtM^0 z!jJK-sjr`@m)k5$Q|LAVpxhk*JSTlT<*WYXlgOn}-DxP?u`&jT8^!VRXRIloe#2(I29v0jrP3k7YV;1pETlMHM$~$6Rbdi7b zWHp+XN3UM_Jo<)ShM%W~CC8H;UT$uu=uSa?K3aDh6>_(>zT1riek05I@$G}gqryIk zu#ESWbf1qO&D)~0TEdi)_-p({R749RL=n`3&+Ze44j!ELFi(yBv>Ue=;+Kz!*P!Ci zY4&Y+u9ALm31aHf5ZlupKi@4beWF*g6&gPuzFuifi~aiEF(c|_EQSPemFxQI)*ZUP zI}}_Mg*1{c;z4K-WT8h}ZciGf3Wo8+e@L$gzRfk=npEy}jx~&*yLp*qLLL zkXrnk_7oX8mfCLJyj+TZ{;fy1Qx^Z{pCs4y>>E6&*gzm%C^NxN*lmw0Dk7j;^DvI( z6lo1U7@i0TD>I)2eN#(IO=*;AGxd#)t#3Ub0?HH(l0h*8AWQ^5D}Vf0bmCZZsDZu6 zR1G(PYS2hML>VI-F+8SNGIE;)|7~;08!P8=0|EEVR=aDWo<}m(uU}sPA+O<2_Z@yq<~U8;#S0glN_j|Anm-4MSDpbwUA>hAYIEvtxd=(h5d}a|gG_?X zEDA_NT@j0ql1n-c7UomLirG123aObRug;IrGc?o$D$Q^;PZ@%9BUc>uPMD0rfXL)I zG+_J>X|piXn_u229m#0^71{1DxIN`+THz-o?prDLWOMSa+ro==XCTSO&2mZfErlLxc(!7q` z>kAW353{)g?-T5AU(j*q0h+2xx19) z{$wHq2=s#cIO`w@7@!xqq2CO|_y){GIX`*tknhu9bXLTdjYBIc_J%ryrT$G3P#jNR zaXEG2vBQnuxVm0a0k8Tc$Hd$RIWzXjOUt$f#V1x!OD;sushA=$V1_I0df-X9Cxu=@ z>^pPH363KEqbsJzQr*cVH`>B9Q^r_MI#b)wFjBZ;hr;7&Fq?S0L@ryV!wrKhayHd^t(*$cK9ttR2+xDE2S6u8-Eiui9T1#e76Xr*6F<+@_j~73` zli5OG&lfL5okQsns0S;9P~^b-lmcguy1oClta5QM^yV3v>tjpG-8rwDoYCU-{|b|Ow0^{x-Ql2IjMGC;1|3|C@Bv$t zcG9B2@YFfR-ARGw_52&Op@$K-1^9!y$JV>R)iNIXem9%MK!$p$w-Ba9l4BwJ^HmXc#Y*rYnIa}Bij;sho|nSYM!3(ZTFb;f zf;iK0hOM*50BG$^-NTO3ap;%mu;gTH=S?GXrT=v$Ho3(0j}DnOEsyPPRD+Dr zo}wy3=!5yH{xOR{7cP;mMPg%L#0OfL~dR4a{u?ay~=X zMFf`T`5OT2<^m>3O@Zg8yeL%?T6urJZUd?!*~X|0(@uQv_xCfcVtfS{cbm-2zZ!O&G6vTD=ewSv z@6Q;q2Uf`Jk|<$WX=^Sxb$e~FrK>9N2UgOrW=y)>R)%58{o?(`$#QOwq+3ff@UT=e z6b#Y6F6$CujRX9R99c*YAHoh{w+(+3!Av>>drN)65lb}gi?xgMrA4qFd?k0vXfU1n zZu(sF_@^Y?cx!8E7Yo@6i6BY7KUJ@8@*!5et&Oyq) zlMoL5qFGuG;4`3!9zJ9%&^HRQhRd-c9NU^lc z&@t6d*uz*rUVfy%ms4?93ybxkojeAc&a`y?xD-72A=TS|J-P}!<%a#r{`lEfwyNP?(O7OeM-{7n@4ggQ!dV*C}sQ z9cPMGly|)KcS635s)Ey&)2xYi)2l8XmndLJZCZ--6O8!obALe7y#K@8)D-6Guxu17 zi9PPg<3sfH?GDox<{=URH989e$!S_=m3aGqv;cs73>GID<93J1st%MzLwuJ|9#7uf zfl9I`b;vd9Z0k?o0KM>}+P|{J{v9%KSNyD*xxoc$PBFT{=c!4vX1!I*p)JeN7h;6! zCXxUk!YH0`{e<0&o+X^%=Zh^Kx{9MM*YWKR{7pz#QPQ9I_OyZOO<5CLQWi?2BYT3k z%J>u~u*Kv*a3bQQOdec<3QvFr`kv8*Ag+VpbX5_B2<)~w?FBdsMP?o^TBtaH3v>_; zyox`RxsjTi{dQmc6HiX@POvcYF6 z+5zS>(bCEl1!ng4M{ADiW*&d`4B92gDKUi-K3nx$I?8V`BU{VW1z=2@It7^v7(e+7 z+=mPi$%G>IWm59vl6{JHiSMqeh~=St7CTu?Fv*0~&H<2cu~&7ny%N4+#fsL~e<0bG zCV`*q0zt%lkapFoRdK3&1Z9e5R97a3;8n^=GW4Vk)a#7!b^I#W0Y4bBEsx}Bd5dmPnf8%9tLqfnE%J!);y-Kb>fBw7*J^@F zMhemV9XRVF+7zyowGYw8z-RTV-G~^U-`wATY{`$6sY$;_mI^NHc6ic^eA8$jk8b#R0z*zX zAz`PZArpqUZ?0e|ceCY1f5OpULffeQFEy161O)$>8y1me4u>V?1B|j~F!FEhOL!|2 zYC$khv3Q{y_K`U8+>TIP;=vJp^Iq(h*jLnE!Ddr7@2Zoy0tTtMNRKz;h#O1fB1=%;IqRmj2#z3%=m<- z&OJu79k@1jJVRs~#v+kie|r+D(wzxb4@Rcn;Jydfeqon~_S?QZg=rH}_+#R`YSK0{ z#j0Wdrt7duIDlfG54utLtcj90d%d^mGCG)w7cZJ0x@`k%K@rySbP#dGi~7KJRL9A8 zJlIabAt9cF2d`#QAa>ifeYA6_Tv=QB<;yJ)Dcn%Hcyb-fy%UHv6V)`dyho-r=?iFh z3oOGDX~K*#Ej&~9zymOvJ`jVq%1@s>xv3b8E&&XFB71J_9%P_+I}WpFcEjQYn2&MS z+36N9I2>0Ii&Ny-c7vNb8v5@MwXj`D@wS{%LgY< zqAY02wu9TO&yz2;=x3uS4jp8y6Cv<=d>t9B8#|++Vijy9k9T`;ibwOvhzP5;ZQXH? zZY!VGS@mg?2P4ta!|-ZiymUhn4RrA6Q-Wfeo!k=4RvOuwQOXMnQN&^`qkCN0lw%a+C3>+pwV7 z0lYR&9`K{;0ly@3I&eW;&2HPEq@fJ`mPl#?Bu(KtG;Ul0^c;m z1}|vzP*kMJS6z*luc}zf%g0vQbNHcgEAT2GEnl@>^;J1ZgeK!Q{t?Jul1Pch@>M2( zzp4Q~BeG2(XHf8-mBmQtK;Z3AXvtxZO?E9CrErGec3%y7uWa7$)pm z8}0UFaLhT2p4U_M!E7xnW_upT~>>g8RJPvU;xZ^Hx zMh#`?)0}5JZje;v0yw)VW!|LEj{F<%ZaiJzmEDM|wB!vRzM6Ir{y?#b>6#qqs#_?|uh`Fje~&$nSN-j*&4Rs34EiQMSHGw&Xw z7GC1--;C|m^=U=L9@_tj;8k0Y6|tsyDQ>bMDjmtTc692RRjQ1q;$uH3sl8$}73F+0 ztT1+PVAVN3Oh|k4K{%|B8|6 z>gHx6LHhAn{vERDVrT_Nk7e zqKvjvJ+q>uI?B&d6mMPG7mAV>sM-aJGIa457BK?|=N8{@M=&?(F@FTxl`& zY+B;G|M@w+b0<;u_TvZ<-3N9|#3E~peMpMM1cLsSPC@=zM|S0LKD;~f(Ldae&X~}5 zE%%R%9agy3lA9*2JokCKakej3o@g}tp;~N9-{Aiu2I8-iI$ISbMGuN%K?gzfDT*jAkqkW_da|G zKB&v*?W@JxKJWvHnH}}jnRDkRg8c>u1tGHxv)~b8ZGDCg>i%tyMY2b-d&Ii3*iOi&B!AVWN;Wi4sG!2tx}cy`S^W^F06m@xK4(eUIba=9uR=o{{e5 z`d!y~e!t)Id!83%1g4i0hHvYuX9@AXsFAClfp>lCl*Y&3@em1+Ue@>)k8?Yjt|ImU(@o4Gz=3=Ol! zD_Lcfu$E6V93Ox(n=0Zyl$3t=6~^=B_M4DC3gaLmaN?jvv7=@^KBVt_oG0tTWrSY5 zo1=q+|1ux?J-6JCUz{~g*2~?!s^?~XexE~TK$t1qPu5YYxCHTF$x@1Dk*HRMD|J`S zo_(009Li*+&k`!g;%9hL+T#qPaiK;T&DY3C&DspI|1S(6`ry@l{puA(l4qTI^*RIEb|s6{z0Mf)vaW!7qcw#vfmO^# zG({NC;tWPn&Rytir0Ar%dO{n;ycEf&6!RB)Cj+kJ?$)xvc&<9)bEZ5ykGxNYw)abD zrU(hpwiuT=rv7wj?z0&U@84@GxzQmDaCHhvGlKVWb9axs=ye)K?M1-W3cK|xsHPqb zVzP=+V8cg{+$gPD#i-rK&Uidl6IIfCkG~NghjKQX+=Zy|nO;&VL ze?{52QU%+-Yu7#=D-L^ISe-gyGYE2Bezmmjl9N_lls6CJSPqg*g5#kg{A5rz*i#Li zENQLi+^yT%G_y)Lhv}qAiO;+g+LK5Tudm`okHahSdG9f!iz-(td@ts6aWvRZdDN%I zHmQWm1S}RT_{%82h4Bx+S6*RrztgO={yrhq!EnqNdlklF_xzR4jzgEeugt*7^Wttz zO+%~Jt;=ynXW^K4htC*Q=T3(U>}OM!l$Nf^tX7!sSuv_5d9XK^SlZc7ragC=JYkYh z>#ZXriDiIO3Cp5YYA8YD4C}_Pnm!I2RZ!t&My?f^O(zFLC^q{g>uS?OF;2PviKww z4QR)xl;0`s+G++nbC;jI4xwj~a30W~v-{5Gl^fgi8f-wKRQ$NDl|~s~C!gDAmH|e1 znV?_qek#B7U%&<9ubf64l2^6;^U75I+9;V;08hJB+V#R;l+f`~SrThsc+W+V%Gms) zV$Ucw`W(?|kp1l8u6J??=)3$>uE3=#)Yipl?PRpQ*WEXatjIfUJDpaXj4*e_9yPtt z=s{Ph2kqw}4o{M}9Yqj60+rx{gZj=3+%*-~zRVOvYz#5vtmHw)b5Gk2oAT@6ABaH{ z(wh4ksAy4bf+9<-;Ow&`$jO^GibePl5sm&J7ee+b6 zl9HvfXB**ANFyJA#+Hi8%1UdxENR>HF6+Cgx$paN+e`wb%c+i=ws-n%9QPM9aAxqD zyZq)ioS5RjX_LHI@#c1_*jRZnR?ZopTDLR94w$)Q9p5ZenL)25tA;8jnebBBR7(A) zjj_PIvdgczZkOJ@qj9`jE?71B%~Q)szhvq7p5{E(6*umjy3w0~L`=%oKKAzQnv9{; z*`OMd+bGJZu3zcstk^l8S2Ti}3wzBPGOvWX>MlR?#Jl$=4;(n*q$1|T65EiD8tsHp zcd=jd1LVv?7ZVaujeUH8E_z4@d?BeTmT^@QMYT<(ojXq4G zERBr5lug%C=dN8ByN_0we4{>}Wf$MS&XBal-HDR_;hJVpg?#GW)z|wSU5rgKoZT$MKKG?}}!GhyV z(0McJD@CZ9$Z2E{h2ufJqOg!6p{~B){Xz^lYe(m4ARrEUZFPF)ka(9oQ^H~P^l3(6 zPC;uY00gp0d`sQUf^R!Bg-);pb=WsXtu=~e`^<>Mfn#@W!RFB1ZHpO!6)tFw$Z5wg z6#5F_3ZKJDZaxe(el!doZhgx92L?3-60PAd!Ji!COr5qnFw{{~NunwX9Q*f`j)L9L zQ>g15$K}xDtM=M)rh$6l9DP{99D!VrsZQUr{f&=};C4&-$i&VhdZ4pb`i={O3WzX5 zh#+>(2ZNckWZBJ6F{-chi06YWmXFcT3v8LMwU$Y96Zyn5fG$;k_E;XOdw~l(W>B6h zDJu&{SuWpaW1qzX98duO_oO33(ymu^o=pkB6_<#qia}GsOwlq%==5Vi+Zj@zpu=~b zw~fcZ(*uImKJCWAEfe^f*37)6M2XGzKnpD;z+9yX&y#o0c8yLsftKS!UB7L+cGE#! zn#%tggiKPgxDtS>8O1`H%%Z{Y$@Av|Ae>>G+jr8)8a}<68eWSq?2rzs7P07q=eXJs9OrfBa&yDaA zK(-z|+ZccAB>Z3T+71w;S@v6--T|6e)|4vlPZ^s*`vMo3F=^5-Y=HqV?Tk7! z<2exiq|jWOdTw<6zQ{>lnI3ai&z}>hS%zGHEBUA9ZGRnEyly(Xd3})P| z=cmTs5>t*LL_}jb(V^jsz&;`Ey4AXM7l|A5-FNEI0A+z5VeQyjQ-^e*$_1M!vq6iw zlnC$-JAVIxdI7=H?L<8T1XSq#ZfUQHSY;^2nVYZpdf->KB;E-OhI`$D&bQSu)q8yf zxEjx$sVvCX$OS2hFCsOd*H&31EL&Ui6&p*W5 z5awgRP*1^j10yv-Rdu|h2bHVpm&Id?qJAPH(W~MQ(dyi@=K%lfp_HTgBg71SN*OU5 zC8bKHz%3klJtJfCpp+_+g;r!9mL)PZ-CnZ#Pf`WJ6gcqViWmugs>z2_zK7Ie7Xlie|WRSko>-xD;eJWv3QYh8Z)C~0w9Nv@{ zg;zp?_C0d44!6|G^lPDA$|e(SFQqDbGDDRv;4Rtd*E0CazYffNvP~T8gzcF3B`aXp zo;_2UdZf%|XGcByV{38#fHhES%)qhhijZh_^&b1+bviN>Bc#!>r;5B3v|w^ zZ0y9ZDpln(~F=yRX1Z|(N%4B>yw&@Jk zoiC&gn{ip-)-7A?{8DLPu0vvtjY~ziS&S3Mw)>$T0F@^d6_H#q*`IA!Jf_PvvwKBf zVaO^AJZk7UmHeUFx^*k{`$&dmrp4U)HzGV_hBn$9kUJNP54ss-G>di$$&)-8GN?8k zd2Gv~m`oyg`jQbDnVFfY&H1~6Ps!6ml@QrXt6x8LNFluk@nX}-7+OjkA2(N+typpP zQ9_S>+7`d7RuSUvrEW;2U14vT?htM_k3cV4Sig$A^yKBsni~VicmVhE{ybbtEJTKOS zAPBep^wYg`zoPx{+RA=@2{8$kvT_n9b3iF%!Q5ll!&yHz>nKB0=Q$ed2ckt_c!8u9A&Ns@D_+wB`I>~=#D!^*OJy2 zGa~BV#kH|O0_$@NOfr(trb>}-JX2bYMCGE4Ed&oMSwCdW6vp0oJwKPG=YV=3qCO=1 zx?A-~2}&nut|rDngSe%G8ptVft!L4T8rvzcE}#|~C$eKR$GF;34nDzg(H=Fb;Pw8> zt-ZV^S(dky4m?)+AepP`=E&m3s2PN`95`Ur)h=`8^8{83p(fMTp1BWdn8FfD0K&E< zSeQ~x_=2n3o4|(BmFAi#a)X>oqP|3c*-?R(%Z~;PbMhmAASnL5r91t^P7Y-#4{@^6G?oPi6F4P71f5DME2Gd>7Sn-w(8&8dA?-`e(%Exz_|)k@Aoq^bNbT5X^@>)5Xf8cl4ZqJt z)QD%QAnmR*Sxf;gNRva9;T;`P{{FLvRL<}loDl6Fij>Q6zMRSg?lai#=XVE#Ew&Tn{7p`_(1js69c1TG+Vp25QEVKvRTK-NpU(>h@lsO!BuA5Qn zp@Ly41qHVX3T&k;9N?8)De7n`69XJQ1zkl=NZ(c(<>4c3f&oG z#hXXR&ZSVtK0IRYQ*Djta@LI{KZMa~G5VaG0Y32wabEEnsTCuDic@Os@8~C_hHw*4 zPN37IRruZKAlJvOn}edr#5>DHu?3bjZaWH=kmgO#ycm`+=i(X*!JatlUlmSQp}Q<-&0n9Agy#Z;FFMrU@3$mrKP(ID+;kK_xl%|<0U2+S zyM5ZOT@G0==HdpWlvwFU4NSXVP*6rd4~!m`?lAPgi#1oL&N!cOqvN#Eq5>5UsStH2 z9PB#l(k1Glj-wTdT1ya6)Xa0^uuI+s2>^^PZ|BoG@toc9yYU3_Voq~<*>WnWjB$u_ zV@6j7K0;p$yDx4xt247lkrxVMmXNYY(d9WOcf+ZI;APCqJqg$74@e~x_y-u|tXQ)q z(Xp{x%Cx*CBV5U40yIT8W$TGJh4?_lI}84zXQOpv^~Cfi$oh_D5;oUCFCNIkKXR-t<_j*|n= zPd04tY%_g%KF^XEAfg-8Jc}`}k%U55@V^)8>VU^`fo;LPdl4|A+R@7t3e9k2<2tTg z&}S@h1DY9}XkM81xoaKqoOL&FKc(pmUkKD)L!ll!65rz7POdmeF#E2GFd+zqs{X~$ zT&KD4v@?+V&$|u%kBEl@WDqno)It47pU&rfCV}uX^G?ErNbGcB((|S(6EK z%4~9-#A`xb`10aQvRJD!jZOk6;l_3%YipM6o!CoeU_W{E=oohrX0Ue&46=KuoO9`N zm>fkO2Njk8&7R+{FqV4HtL-bgdwP08Ri{$7jdUy^iRk%HX@Ee9loa-MH-b0OMAS*W zjtlZmS&WD2oGZLX2$~DroC8~!PUZ8(g(8+-fBx?+mDzy7cqogzO#p)fPQr*Id3Sj= zxLz23B9Wj(GZ)B=ZFw;BSqXE!O1$pL5d z|D`t`YX4i?1a_x039|dx^%t`&+@6!QL>y;4Y0Uen5A^x&UL3IDj4U2)>J(hO-oO0L zl!hQTkDK+G6~%K6R-3hLpIM*T+->}t#N4EK_eYzqw7}{=HA2@XA5LLG*9Gf8_PwtX*sXDz{(gh__vkU)1YdYPIJT^FrB968rW zbtPEjj6oM)ZBqZrtv~;qz%jnS0Tt;M%;?)0F`_j_6ThslVz?XYhux!J|B{6Qv-xLA z&@9JELCY+#K9zIbCUI@Py?5pCl}E{#1LT*2)xV_uCGb0ri<>08)6ygggKT2*g5C zL90*Xw|?PNIWweuLYncnow{~CgNrddlMXPL{UnqNB1eQ9ek|-0t>cVpHWhuS(w>hKtFMQw3SX5Hujn;ti z0eC}Y@1rQV$O|eu8h)EWbxcGa_s?bmQ@~^9oIx*^vqGyN$zjOmzJ(k!Jk`BS${Vk6FoV8cc_2&*d^eFu7#F5}2YPR{0 zqN`AE;#Kz}UV*9>u}-ZYsY~QDH=_!PUx?LA5~9J!Y~8dUT%=%0#lwPD0{12d(_n>K zC7hu}$)5yTUX+}`mhIZKts*VYFR?|#okR&JA9%qsX&hDSxbr-y&_r@9%H%Wv{NzWy zn|`!UWSg{J-e#1ktdKE*a8Ej-mIvS7Ca#lB)?|!FhkxsjsIZudP90?oQ6jOA7>{{m zbWY)GNQ>w6x$FMk%q4gT3Yz$o#HK^N%wJRLB~o$W;W>WPE>Nk7Vk%8|KVIFLj7$Ti zg~6Jc;-H!G>i2dS3?h+MSEo6h2o05an~Xpp`No0M#GU}I&-fK7p?Fw52alQ-6O{}F z6VcyeL-q#m_NT$>M33b44PF>>N-=V~+&z1&m-q7_b1tp3WzwnJiWTO_6bpHlY9$^k zTqH6`1dcZ^W;Rv}17TkeJz!Q&JCXg`lFq{y-@Y8vC|H=F ziYV)HFD{%t^khhn*n%Y^3|fBH;Y*FEIl3kjx*ut&{S6bTBW8`P_D;_m{&H;eh7DzR zhvvLBtQy)i!ok-iEsk$!RD!VpBk786SSzx-3A0!!R{xU4mghzbO$AhDFdFF9b}2+ z3nK&sI^bH2hmKXjG9}3eS{{7LCiHr=xr-FWxawMzG_E`SN5_CxR zu0fDKR=OXwL;f6V#-1Zbj@(!jOJ`Lm-%02^5hQRayBBa9-KO_CbH4ip*9UB2SE3H~ zoF9@LwC5znvHT%Ij5*qPtfwW+AwX6GhwS`LVkZd9ymhU|@{7j=)~ob3SX^rO=KX#~ zl|qf3x*a;dL4?m=J7}586XiRrU$(;`|5XS5AD@qn^^cB@#)2Hdv%YrAFZH|2UcVBP z2#(^70&wVa4L3yM+W7aqBec;Hw|5z7(8~O+fcxfuNDGL#M(~FW?fFLR6gV#Ho*r5b zWbU`LFwp`lro@|^&Uf$2CIhxycRz~agVer1I{IbL3aOMp<4QSLxuoS=EpWM@asnX$oU>p zNT!qF6s$pjBx?II!s*(dJIo4*U%a=jox<%pAyzPR9_GiKA)H3@&22l=S=QI1JXZ+} z-$T*{cC5+wsjbK#l;a`g8U`kv$n*!=+mI_ooJaqW%M!!kV77**?lXpB3gueQ*?BiU zN5L{!|30x~M!Ei|Q74_<+zKJYaqRg%y?YuY@&+4rkv8ESh((B`!6E_Y5JC`%$&$PM?NDaXsHB!JZW zW6h*vhNJSQ(bzYu7sc8#YAJn3xF&K^D5PbOr%Scwue7dC});%JQL zm&VP8aFsPd*OW`S76q+KZ9ce{)Py{%;p7Y7oxjK!XntBA^fhzH3tm{=xrR7fo)xl{#*`BT2^XBB zf*1MW{$;bL-YVPR_$;yax>r9a!>=Z>t_9zJ7d%g!(<2phHp5hLwW`TnOO5?ft6pJ4 ztjIy1_kR@K==E@88+FL>nJ{tUtiA^1+8M-U(sgae2>~3&M|v*}RQEv*Jd^0J4bA}{P7Q+JA(uc;I=MWl|2BUBwh5fqnx8Rt?J+O~6l;c*9+ zts>Q%&7H2PL_rtdEaIm=<~0+pFqw6fsB+-+H=g%m;%r_j?r>4{R8eriPB<#R2Z3HQ zQGd3zA}QhK!lX7bX9%gsit3@-=%7Nlw2F7JM(6tbOv24An>UvsaCSSh%EKciErXZ_lKkQ&pal2heyNCHUkshK z-+xvAlJ|+s%+OPM{k5&%i-X(wYkeDeG>9{i*Irdy(_a!3^ zd7zB%>N;c`O8s8MyDhe8b79cE3cmxMbSMzV!_1G}40UwM{Ql-VV-=UY zTe8oXc0zm~SKos{;+@8H-C z>jPJd0wsDK$paI^KH4ED^IPF@Qf5<6i~2|b`{O-?=N*$0o4~jLugNY@7CB)VZ-U9I zUN0^@%VohnbLw-+qasl1D8kO*Qx;_Vl7|n4Xi!|LI1_z9iK`d%R7II#)`QMH5QZ_6 zOO4X&=>ex)F7Bge(=o9UY(0GWgV7Dl%0VAFAnzr*0s8?p2@mESsoHk#9ERN{0*otF zBFElc2F||CE{SLOJ~TH&l|sxBmO3D|-AnFF7b_US-jOm1flUh4g8a0UY^RgdM8vj+ zJ5BIUV18@I>cdZ;BrYF`F^s#$O}NJTTGhHnk+|rt==}B9t7|ttdSqE~CtLgqs{(7= z7e=$&#d|5%HmMJBC=#b}D9+AUJ99ylg=Q6^=1oF5>+JL}bp`*y^;2$k!A`_}yt#LxmvL z3k~YjU1AvWraRY^goMmI@}KCj@91GnTpeX-Sb>^%DLUV)+2F5ECQLlrAGG83WbZ^=z)yBSyX?dz zAciYWhJ=P@YP;|D0HQ^tRO4U2&SnjSj~r^Et(G5YD;`uG4UNkbMq{?AsqS~r&ZYIr zA&u*Eg}e_|I61(dv#1J1C#5(mnWJkdRn-b$RG;+CSj+)P|IQhx5;dpX>% zTa#hBF%5+R)-9424pirV{UjkAOAezx!m$~-pbPL$uX>B+Q1N6pkjPn0tBt>P=h_~g zY>%ETu30~L@ZetJ$`D4Th^`{`;t3O*zuLfeGH)4xeHUYOE{f|;zfI%Hp?3NP&G%GD znI4kBnX-p}(GlR==-@Eo(9H>3c_ZVGF(ffd>3jOq_WSJ;0te3Cljzn?_Z;n0MkGhE zwLM@mHIKZ>9HlrQN<1^QPvZfa)^FBq0;Y-_o|&viWl6_ z^8@zOT)M6#N|1%MU#lO*Wg`afyI>j>qd#E|b>(AUhr;$@MTPFjkt2yEQ@BTh_1Uhc z-gJ9fF>ysc7^ikPvtIaYCbHjg*B_ToFQz<6$f!memN!zV-^h3b6K<7UKg&X-xMK^E z-}<8Iw@ygC+c7=Bg0VD?Vn}PzNk{!83bz`0YdSfFOjp?Y|GL<{xkmo?1_my~KZ%ZX zriz%+qvxmELurR8{X}s(r?z-?Og4hq?(gS&B-VBd)VHz1DE_jE`O2CmU6x3wK>j;`T==4rf{Tj@zZy zv7R)?7$S}lN&kc^c{RI_uO?StJHsvn{gNo;!yBkKy+)U!#FgVIMp^O4ak#_q-gIRx ztP+oOl}BL$N3r^tQUFeW$frB+(~Rg8}DzEbsSwI z^--R!d+bzG63Ly=H1PZOv&?$mFhyeLB-85L)-pF@O#b`A5@hj#;^4g}T>@$wpIx zMsq@Zt<~Nw#XB*2)G@4mIBuuP;?!b(l=o=$0(odh!$L!u3^E0*lLJez!hi?Io6*!x zWjqEeofr{5G}O+;WLqe&sn(qotxpkQMASsCub_&};h#6W>FEqM$9%+ip%cUr{93>9 za5gp_)z3P0?5GYH;sl`CQXV)BYM4Y89^fg2f z@?RKiQAhc4k4X0}g^A~oR|~g7G|Pzk$rZmQ+sx**E~nGxYR|?QYS7wuiOff!oExJb z*z~JmtVQibRg2(x*Kd9P`^5#s#Q)Ml%4_|r<3zoiHO5nLv1XubA3Y_iy2}Zj;5P|QcO&t5S=q8txc;|*ZFVoy!6mnSq0D)a2ht0 z&L6`6a&W!@4lyb-(*=91PrI=FDFm*CLxC zT)dd+cX98LmvhgE%&fS^eLDUkHb~54O2#gTg?HMo1Pp1DXm$LusmNKxlvDgsIkRB3Xz?mknMu!&`J?&UYm`QouUfGZ03{q)mM(z=1-D)Scak?(stZ0|B?nQ_bw zCM1jMxKDG+5rg4>43V}rnBtpZU%NF^N72hh_#A(P{q3h$5;Gd!;g$J+O9_#SGji!W zkV?q%i+^wV@czv-`l7C}oD{JGHJN=kjt*#L!gF?v)Qzg>ZITM8*h2WEiwbIKjvELI z=T<9Ybdv~toF0_m4TmyXY%XCYmzd>&^y*$AuZ`?9q-g#8p6bA$h~b`#iSX5psKugl zFsa1x`xlI>A%gA|XvPkxUoR^150Y2fB3&hb@-_g0k`Wib9Qs z`fuEM(pp(oGw00gjryJ=|KSA~mGbWCA!@SOJG%|bjyg2lH4tSfpvTEp@6-hVg+>Mg zC&Z;MJ~Zr;GqyOON1Y^o8&ihdA5b^DlDdS{7t6SRCDGv`k)@=zy;0R3I-v&YR2SR< zg-JSqPwdx3G>gEcCaK!72jiq*MzrQM`uT9d%uMQTk|NbUK=GPj7Spp?KYz~01-k)a zL1&b1N4W-P%0c}yzaeOSme}Ulmrn0G6Co%I6s?@Kd_wl3vFq6>FJ~rTb`!5xQ4Ep? zMXBL`*#68JIK#m~2zEus+8COf-yADN#;sceC#UV)w0VQ8oa>k{yhwJ~u*5}4rP`E~ zVwUg$8p{jq!%*Ya5IYEFEZr^VE^?&mFt!aVT!h;TK$FLE>T`vHWG~q7&FUrBdN)Ps zJxfuLvtd@>(sN78A1pH`<_tb6gLQAusyhh=ju=sMX-xjrt0vS)ZMIZ=@ZLOP3RVua zo0|f=sPb@TJ+2t3PybdaZE5vwYn{u+ql`u^?Urd3)Tjg>)c%yh$ z;Z`oBK&eh>mZ2{gU_HZguB9_)$kdKa#;c4GsyOb?!l!}_$9CvkrlMe2h}p@0_LoK} zVWAM#z!K+#zH?K&h8H~x9niSETVUvh#s(Wcz1!;5x1OB-c2H9=S*XoiQ$7H7ZYeTS zW*z#?$PFLXp)BUU_MjXlkk;@P0$q_MHK%O{L*g%n_5E*+( zE2_3q+U%q>ir8;gGlyL#T^blvc%wZiq=YcmX&_Ry?a;}VXp)^7iKpYydLimA9c*?r z0u3W63adgPjLuK4?KR*wRmydF*h7@z{#L^mziPafTzg8pVzl4mqd)vSyR*sXY3;6W zI%qdO(Bj_jfwe;i9eDcrSCLcZxQ^_YJ;P$#jf+vow=53q_cDFa_5)o4;*E~Y>;AOW zAZ?w4Ph0)4|lgb!y`-{@5TcpErn4*P#hyusM z3;0C+d=hs7*cVe{6?2N0SJH>-=ndBw#dhwV!`zz&?z9cmG?_3#OxRixKG1-eWeHbk zb*fI+jV>i)j%@Jp_3o^GCGBR=CF>|VYivcL>r)LleCSWC%#)D|0=Ou2n~U5d&Z!w# zG2`VVj0ipJK3qQXoqB<^p8WOKajH)jl9Hs}(#RVx>;AaB-0rv?EYBQYHXJ`aX-e>H z^+Qp3US4o+F_*!{6fE(gr#T=f$o~0T#uJLSP@K17p~KMVxNxELv2z2570~|o-+zx= zR%C!&6UiOaF*EhLLyqW?6^mp#QQ+$xCIsNv<(I4ICn?|7FX%R0Qd7y87kLkvVv1WFbr_Z(O%|W>Vxp`3)Eo~ z{H+0bE_pzlDg=iIZiS#^adF2x=S(0v=9#mk17 zT9D9=9T@|>xq)~3>ec5zygAxfN|dre8OW%6+`@FTdiNG?#$h{=ZzaD@VR}`@5VQho zL|&@i8fEu<;`teRw4Ph5T6p$;aM*|?cjt{ozB5#2Q%-rF1{969v0rPV(wAv4Hy0Vv zj#2Xl|La~>gYZj=u~E{l6D#0Iaua_d-&NmCdB!YolOF81u z6dF)c?BW)GtGvhUAvYGSI@TT1DHMYwlgHkUo1)|g=pz6A-aReR`!NwCku<#$Jq`w%KtuSDgCYW2sg@y{(d6T!Z+&f%~C6HBD-c)L^!!k#QkV!MBAfResNw5Y*Jbz4Qfb-n=l&oF4 zaV9IV%wkYy*G6D1-naORho7idI{0Vks#nHip0U@nBcAR|6CL;Md8n(XOASLGHpjhb z4N8M5Y+rZfmbfkGR~0~stfqdXC}JW)t3s)a-A!xVvSleqSj>9Ix=Y!eV)^9vwQt_M z$sw@BGb3`=m@%Iuc2VaQ-wtQ(qSCKjyN#^imhpz;V+A^B+p`BlM0i7KuVofmIcI4G zoJoW&@m-RKMJtn`D^wWI-7b_85elamC>na@?YH+*;$hW`Ypbioj%E%16PdOC9HYNx zuq$A3F>OjJTCCo<$$G(|n|+maX=6VeBlYXh226u>&XILLUhciA>1_N7*Oe~u^hL4G z5VXy!KfUyT5;rH&bwee`k>K|3?OUc*Oc3>d{rXFC52m#7i?^TlS$zhRAQpceAqMK| z7e)6!tm&zg=JGryasehIZqJ14iZKIZ0U6H1OCrrBc!v5jtV_(gnqsdKHjcwVSE+8M zkwQ%!eJT?7@CaH-0s7EV zj{|v4Q9tn{*NaHAxBT!59~7-+&Od*st|DVWC3SbgpBKTx20Bks=Sg30CcLZsJKlfW zl>s6B-yD43MGaQ|O*-BsvoBT@b7;(o1wD%~e2Z zUGJhDGu1oAeBk$nhHC7){R=Nz-Y-NCx;mi!$Db{e>n!SYU&HhCH``CKC$Q|wv+ z#{INo-)s04RRKqjMpHhu;)DZHvM%}5i$N~~rY@6fIy10c%tz?8l5l}U;(EfPIu{)- z;O3$n3?=-XlN^M4Z~Whr;F<7}cp)z=Nd=A&^Qlw)FkyxAp)(l$BqKkBUgO88kZLjq zR}@Q16J=Pny|~zYI6h25!MVFhepl2=p0Ar|M`DS?bUYGznRxpGF+#jWCbzIyofZ|I zw^)p5B*XogCYs6uX9|{Emz?!gLXiHS69p%CghJ0v70{ zl`lP#d7>pUS3r^885tmcS&-{~ot_bi=yU?8 z?#f9J$C*!;g-Vy=ODP23dYufPi6rt7%4EEeUP%ze%f$UXdM9_}Ylt!=W`3|2oy2Zw!jJ>7IdJ|L1xaB| zbkuwx6O%98uGmzs%%?T~`If1z#IgXo)EzP6{O!M~s`Vc;#-0GnC~@k;w#VLJ#kWBP z*yc4mZt-4>KGGeg?Em-0`xtljYRce}VT*3;(d3&~21U*4K3iS?xcrJI$cl2&kz?@> z2@rgl)PTI))~I6Slu!|}pm=5MLUNNQeEfLNYA|O5{X;Y>Int?MDiI0CXjcN~< z=SL4xN*s_v08dax?%}Hs#APA9F`}#pfJ76M`EFQguvty&Ghyc*y4g5UI!GpACr(J` zmuMvDfA}H2Oc}^~4)ahHPcM?3C5~#+LLAluZkQ`OwzZcE(i>FVP!lCpr^{M6@4hr+BZ(KiPCDF|mK3a8Bw99O(IbJtlK;?NR}= zSn({LCmO!{aB#`U2aZxd>v~%n2WZD&u}~`wlX?b>`xgjfepOmlCFsWNz;PgODc?8L>>2bZ( zcSDN_f|V+i8M2l#gcBUU;pNxXVWyouD(_iicG`P$k*>8&Mw66^(KGCf zhc1JIaA}S^kZn5Yv&nCYze72qcoopFXYGS~D|n zenC!7>o`D-qt8>pQfqJ&Ths7A{oK;ur0*-;^T1o5f2$=}VBUE?!a=R^GT}o>7 zJ(LnJWqL(CE%Ou%WG;JJ%wy~ zbC-G#;*rdNP+*L&;?H2(FHhY24+@&NE&WqdQxTo^1qI3UkN&iIXU9)DjaklO;nBe( z)MVEDPXt(IjJeuI&4`+P!BW-fA2_n&1#YxY2n(UfcU!XN~fu8o<$q)<&0-+v(h7kvUoqC0r7IeYt#M1tps zKk8fVg@61pp2VIUIYx~V@XJ}Adwgbt)vcl$i|nqvrQ#@DnRS`rKLiA zeWC5k?m4(=7I^nB8?D6aavLw0j2;n#p^$pOTQxS2&gCU_V+dN*HT!}0UH`hWO~#~h z%V!u?v~n47!0~^+|3~Jc{h>M&wI$^JBR4Uk1d9`5N%3XT!==_J)8cpyDd2I#?U>a_ zM&hB-EW@v4gA@Q8?9(*wSTr-laBGSPIEL{pgfwYpX_tOabV&O`8W@Pz$K37ch7 z)hMg3GO|uwOly>z%LD#M%vAT-6jV@!)1L|ak3?WDhmst9eHFAMVJQ+J6!(?ivi7Ynt0j+lD@2T;F_X}nxf=Q@qe*^BPKt-s8Pyi9 z0-XejXLtj}3DYT4r1UP1mx&2&TFg_+;e!*Q6EdI?@3G&qlJhd@f#hqL^m*5=Y8>!? zp&Iu;sOPO%?Jky_%PIZ;iGJVy1oi0KyX$tQD;cFk(YDmkP()7~~jcvAeesF%& T?AYh>2TGHvKb{#kZ_|GR2oR&2 literal 0 HcmV?d00001 diff --git a/doc/ecosystem/index-sims.html b/doc/ecosystem/index-sims.html new file mode 100644 index 0000000000..1cdf7c7196 --- /dev/null +++ b/doc/ecosystem/index-sims.html @@ -0,0 +1,27 @@ +

+
An informal hierarchy of the simulator landscape, showing Arbor's position.
+ + + + diff --git a/doc/ecosystem/index.rst b/doc/ecosystem/index.rst new file mode 100644 index 0000000000..2ad07ee417 --- /dev/null +++ b/doc/ecosystem/index.rst @@ -0,0 +1,63 @@ +.. _ecosystemindex: + +Ecosystem +========= + +Arbor exists in a wider computational neuroscience software ecosystem. In addition to the Arbor simulator, the Arbor development team writes and maintains a set of useful tools to be used in conjuction with Arbor. + +Arbor models +------------ + +We try to collect models scientists have built in our `contributor space `_. +In addition to the tutorials, browsing these models should give you a good idea of what's possible with Arbor +and find get in contact with other Arbor users. + +Arbor software +-------------- + +Arbor + The Arbor simulator. + +modcc + An important component of Arbor. It is the compiler for the Arbor dialect of `NMODL`, a language commonly used to describe mechanisms on morphologically detailed cable cells. `modcc` does not have its own documentation; the best resource is the file format page describing it :ref:`formatnmodl`. + +NSuite + A framework for maintaining and running benchmarks and validation tests for multi-compartment neural network simulations on HPC systems. `NSuite documentation `_ + +Arbor GUI + The Arbor GUI visualizes cable cells and can be used to decorate morphologies. Single cell simulations can be ran (using the Arbor simulator) and output plotted right from the GUI. `Code repository and Readme `_ + +nmlcc + Arbor has built-in read support for NeuroML morphologies, but not yet for other NeuroML components (mechanisms, networks). `nmlcc` is compiler/translator that aims to generate complete Arbor inputs for any NeuroML file. `Code repository and Readme `_ + +.. figure:: arbor.png + :align: center + + Arbor tools in relationship to each other and common file formats. Red outlines indicate currently unplanned format format support (figure generated from ``arbor.dot``). + +Wider ecosystem +--------------- + +A list of tools in the computational neuroscience ecosystem is being maintained at `compneuroweb `_. We've made a slightly more hierarchical overview of some of the simulators below, as well as an overview of some commonly used frameworks. + +Simulators +~~~~~~~~~~ + +Arbor exists in the wider computational neuroscience simulator ecosystem. Simulators exist roughly at these four levels: ranging from the lowest level (molecular dynamics) to the highest (whole brain simulation). Needless to say, each level comes with a higher level of abstraction, but attempt to describe larger structures. Co-simulation or Multiscale simulations refers to the attempt to link up the levels and simulators in an attempt to combine the low level of detail (in regions where it is desired) with the effects of the larger structures. The concrete method to interface between levels are typically the submission of spikes, ion (concentrations), field potentials. + +.. raw:: html + :file: index-sims.html + +Frameworks +~~~~~~~~~~ + +Certain tools combine various components to create integrated experimentation toolchains. They do not only include (interfaces for) simulators, but also converters for file formats, miscellaneous data processing (pre or post), plotting, miscellaneous analysis, and more. An incomplete list: + +- `NeuroMLlite `_ (NML) +- `OpenSourceBrain `_ (NML2) +- `jNeuroML, pyNeuroML, jLEMS, pyLEMS `_ (NML2) +- `BMTK / SONATA `_ +- `LFPy, LFPyKit `_ +- `NetPyne `_ +- `BluePyOpt `_ +- `Brain Scaffold Builder `_ diff --git a/doc/fileformat/cable_cell.rst b/doc/fileformat/cable_cell.rst index 745f35b641..7038520287 100644 --- a/doc/fileformat/cable_cell.rst +++ b/doc/fileformat/cable_cell.rst @@ -54,11 +54,23 @@ The components of the label dictionary are the following: This expression identifies the midpoint of the branch with id 3 as "my_locset". -Any number of locset and region definitions can be grouped in a label dictionary as follows: +.. label:: (iexpr-def label:string e:iexpr) -.. label:: (label-dict [...def:region-def/locset-def]) + This defines a ``label`` which can be used to refer to the iexpr ``e``. + For example: + + .. code:: lisp + + (iexpr-def "my_iexpr" (radius 0.5)) + + This expression identifies the radius iexpr with a scaling factor 0.5. - This describes a label dictionary of zero or more region and locset definitons. + +Any number of locset, region an iexpr definitions can be grouped in a label dictionary as follows: + +.. label:: (label-dict [...def:region-def/locset-def/iexpr-def]) + + This describes a label dictionary of zero or more region, locset and iexpr definitons. For example: .. code:: lisp @@ -68,7 +80,8 @@ Any number of locset and region definitions can be grouped in a label dictionary (locset-def "root" (root)) (region-def "all" (all)) (region-def "my_region" (radius-ge (region "my_soma") 1.5)) - (locset-def "terminal" (terminal))) + (locset-def "terminal" (terminal)) + (iexpr-def "my_iexpr" (radius 0.5))) Decor ----- @@ -84,20 +97,21 @@ of the cell): .. csv-table:: Property applicability. :widths: 20, 10, 10, 10 - , **placeable**, **paintable**, **defaultable** - initial membrane potential, --, ✓, ✓ - axial resistivity, --, ✓, ✓ - temperature, --, ✓, ✓ - membrane capacitance, --, ✓, ✓ - ion initial internal concentration, --, ✓, ✓ - ion initial external concentration, --, ✓, ✓ - ion initial reversal potential, --, ✓, ✓ - ion reversal potential method, --, --, ✓ - density mechanism, --, ✓, -- - point mechanism, ✓, --, -- - junction mechanism, ✓, --, -- - current clamp, ✓, --, -- - threshold detector, ✓, --, -- + , **placeable**, **paintable**, **defaultable** + initial membrane potential, --, ✓, ✓ + axial resistivity, --, ✓, ✓ + temperature, --, ✓, ✓ + membrane capacitance, --, ✓, ✓ + ion initial internal concentration, --, ✓, ✓ + ion initial external concentration, --, ✓, ✓ + ion initial reversal potential, --, ✓, ✓ + ion reversal potential method, --, --, ✓ + density mechanism, --, ✓, -- + scaled-mechanism (density), --, ✓, -- + point mechanism, ✓, --, -- + junction mechanism, ✓, --, -- + current clamp, ✓, --, -- + threshold detector, ✓, --, -- The various properties and dynamics of the decor are described as follows: @@ -155,15 +169,20 @@ The various properties and dynamics of the decor are described as follows: .. label:: (density method:mechanism) - This describes a *density* mechanism whose behavior is is defined by ``mechanism``. + This describes a *density* mechanism whose behavior is defined by ``mechanism``. + +.. label:: (scaled-mechanism p:density [...(param:string e:iexpr)]) + + This describes a *density* mechanism, which is modified by scaling of individual parameters with + inhomogeneous scaling expressions. .. label:: (synapse method:mechanism) - This describes a *synapse* (point) mechanism whose behavior is is defined by ``mechanism``. + This describes a *synapse* (point) mechanism whose behavior is defined by ``mechanism``. .. label:: (junction method:mechanism) - This describes a *gap-junction* mechanism whose behavior is is defined by ``mechanism``. + This describes a *gap-junction* mechanism whose behavior is defined by ``mechanism``. .. label:: (current-clamp (envelope-pulse delay:real duration:real amplitude:real) freq:real phase:real) diff --git a/doc/fileformat/nmodl.rst b/doc/fileformat/nmodl.rst index 8c62bf930b..262b1011f8 100644 --- a/doc/fileformat/nmodl.rst +++ b/doc/fileformat/nmodl.rst @@ -39,7 +39,6 @@ quantities and their expected units. quantity identifier unit =============================================== =================================================== ========== voltage v / v_peer mV -time t ms temperature celsius °C diameter (cross-sectional) diam µm @@ -56,6 +55,7 @@ ion X current (point and junction mechanisms) iX ion X reversal potential eX mV ion X internal concentration Xi mmol/L ion X external concentration Xo mmol/L +ion X diffusive concentration Xd mmol/L =============================================== =================================================== ========== Ions @@ -72,26 +72,35 @@ Ions ``PARAMETER``, ``ASSIGNED`` or ``CONSTANT``. * ``READ`` and ``WRITE`` permissions of ``Xi``, ``Xo``, ``eX`` and ``iX`` can be set in NMODL in the ``NEURON`` block. If a parameter is writable it is automatically - readable and doesn't need to be specified as both. -* If ``Xi``, ``Xo``, ``eX``, ``iX`` are used in a ``PROCEDURE`` or ``FUNCTION``, + readable and must not be specified as both. +* If ``Xi``, ``Xo``, ``eX``, ``iX``, ``Xd`` are used in a ``PROCEDURE`` or ``FUNCTION``, they need to be passed as arguments. * If ``Xi`` or ``Xo`` (internal and external concentrations) are written in the - NMODL mechanism they need to be declared as ``STATE`` variables and their initial - values have to be set in the ``INITIAL`` block in the mechanism. + NMODL mechanism they need to be declared as ``STATE`` variables and their + initial values have to be set in the ``INITIAL`` block in the mechanism. This + transfers **all** responsibility for handling ``Xi`` / ``Xo`` to the mechanism + and will lead to painted initial values to be ignored. If these quantities are + not made ``STATE`` they may be written to, but their values will be reset to + their initial values every time step. +* The diffusive concentration ``Xd`` does not share this semantics. It will not + be reset, even if not in ``STATE``, and may freely be written. This comes at the + cost of awkward treatment of ODEs for ``Xd``, see the included ``decay.mod`` for + an example. +* ``Xd`` is present on all cables iff its associated diffusivity is set to a + non-zero value. Special variables ----------------- * Arbor exposes some parameters from the simulation to the NMODL mechanisms. - These include ``v``, ``diam``, ``celsius`` and ``t`` in addition to the previously + These include ``v``, ``diam``, and ``celsius`` in addition to the previously mentioned ion parameters. * These special variables should not be ``ASSIGNED`` or ``CONSTANT``, they are ``PARAMETER``. This is different from NEURON where a built-in variable is declared ``ASSIGNED`` to make it accessible. * ``diam`` and ``celsius`` are set from the simulation side. * ``v`` is a reserved variable name and can be read but not written in NMODL. -* ``dt`` is not exposed to NMODL mechanisms. -* ``area`` is not exposed to NMODL mechanisms. +* ``dt``, ``time``, and ``area`` are not exposed to NMODL mechanisms. * ``NONSPECIFIC_CURRENTS`` should not be ``PARAMETER``, ``ASSIGNED`` or ``CONSTANT``. They just need to be declared in the NEURON block. @@ -111,7 +120,8 @@ Unsupported features units, which are just ignored). * Unit declaration is not supported (ex: ``FARADAY = (faraday) (10000 coulomb)``). They can be replaced by declaring them and setting their values in ``CONSTANT``. -* ``FROM`` - ``TO`` clamping of variables is not supported. The tokens are parsed and ignored. +* ``FROM`` - ``TO`` clamping of variables is not supported. The tokens are + parsed, and reported through the ``mechanism_info``, but otherwise ignored. However, ``CONSERVE`` statements are supported. * ``TABLE`` is not supported, calculations are exact. * ``derivimplicit`` solving method is not supported, use ``cnexp`` instead. @@ -122,6 +132,10 @@ Unsupported features Arbor-specific features ----------------------- +* It is required to explicitly pass 'magic' variables like ``v`` into procedures. + It makes things more explicit by eliding shared and implicit global state. However, + this is only partially true, as having `PARAMETER v` brings it into scope, *but only* + in `BREAKPOINT`. * Arbor's NMODL dialect supports the most widely used features of NEURON. It also has some features unavailable in NEURON such as the ``POST_EVENT`` procedure block. This procedure has a single argument representing the time since the last spike on @@ -186,8 +200,170 @@ modifying the reversal potential (for example ``nernst``) can only be applied (f at a global level on a given cell. While in Neuron, different mechanisms can be used for calculating the reversal potential of an ion on different parts of the morphology. This is due to the different methods Arbor and NEURON use for discretising the morphology. -(A ``region`` in Arbor may include part of a CV, where as in NEURON, a ``section``can only +(A ``region`` in Arbor may include part of a CV, where as in NEURON, a ``section`` can only contain full ``segments``). Modelers are encouraged to verify the expected behavior of the reversal potentials of ions as it can lead to vastly different model behavior. + +Tips for Faster NMODL +--------------------- + +.. Note:: + If you are looking for help with NMODL in the context of NEURON this guide might not help. + +NMODL is a language without formal specification and many unexpected +characteristics (many of which are not supported in Arbor), which results in +existing NMODL files being treated as difficult to understand and best left +as-is. This in turn leads to sub-optimal performance, especially since +mechanisms take up a large amount of the simulations' runtime budget. With some +understanding of the subject matter, however, it is quite straightforward to +obtain clean and performant NMODL files. We regularly have seen speed-ups +factors of roughly three from optimising NMODL. + +First, let us discuss how NMODL becomes part of an Arbor simulation. NMODL +mechanisms are given in ``.mod`` files, whose layout and syntax has been +discussed above. These are compiled by ``modcc`` into a series of callbacks as +specified by the :ref:`mechanism_abi`. These operate on data held in Arbor's +internal storage. But, ``modcc`` does not generate machine code, it goes through +C++ (and/or CUDA) as an intermediary which is processed by a standard C++ +compiler like GCC (or nvcc) to produce either a shared object (for external +catalogues) and code directly linked into Arbor (the built-in catalogues). + +Now, we turn to a series of tips we found helpful in producing fast NMODL +mechanisms. In terms of performance of variable declaration, the hierarchy is +from slowest to fastest: + +1. ``RANGE ASSIGNED`` -- mutable array +2. ``RANGE PARAMETER`` -- configurable array +3. ``ASSIGNED`` -- mutable +4. ``PARAMETER`` -- configurable +5. ``CONSTANT`` -- inlined constant + + +``RANGE`` +~~~~~~~~~ + +Parameters and ``ASSIGNED`` variables marked as ``RANGE`` will be stored as an +array with one entry per CV in Arbor. Reading and writing these incurs a memory +access and thus affects cache and memory utilisation metrics. It is often more +efficient to use ``LOCAL`` variables instead, even if that means foregoing the +ability to re-use a computed value. Compute is so much faster than memory on +modern hardware that re-use at the expense of memory accesses is seldom +profitable, except for the most complex terms. ``LOCAL`` variables become just +that in the generated code: a local variable that is likely residing in a +register and used only as long as needed. + +``PROCEDURE`` +~~~~~~~~~~~~~ + +Prefer ``FUNCTION`` over ``PROCEDURE``. The latter *require* ``ASSIGNED RANGE`` +variables to return values and thus stress the memory system, which, as noted +above, is not most efficient on current hardware. Also, they may not be inlined, +as opposed to a ``FUNCTION``. + +``PARAMETER`` +~~~~~~~~~~~~~ + +``PARAMETER`` should only be used for values that must be set by the simulator. +All fixed values should be ``CONSTANT`` instead. These will be inlined by +``modcc`` and propagated through the computations which can uncover more +optimisation potential. + +Sharing Expressions Between ``INITIAL`` and ``BREAKPOINT`` or ``DERIVATIVE`` +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +This is often done using a ``PROCEDURE``, which we now know is inefficient. On top, +this ``PROCEDURE`` will likely compute more outputs than strictly needed to +accomodate both blocks. DRY code is a good idea nevertheless, so use a series of +``FUNCTION`` instead to compute common expressions. + +This leads naturally to a common optimisation in H-H style ion channels. If you +heeded the advice above, you will likely see this patter emerge: + +.. code:: + + na = n_alpha() + nb = n_beta() + ntau = 1/(na + nb) + ninf = na*ntau + + n' = (ninf - n)/ntau + +Written out in this explicit way it becomes obvious that this can be expressed +compactly as + +.. code:: + + na = n_alpha() + nb = n_beta() + nrho = na + nb + + n' = na - n*nrho + +The latter code is faster, but neither ``modcc`` nor the external C++ compiler +will perform this optimisation [#]_. This is less easy to +see when partially hidden in a ``PROCEDURE``. + +.. [#] GCC/Clang *might* attempt it if asked to relax floating point accuracy + with ``-ffast-math`` or ``-Ofast``. However, Arbor refrains from using + this option when compiling mechanism code. + +Complex Expressions in Current Computation +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +``modcc``, Arbor's NMODL compiler, applies symbolic differentiation to the +current expression to find the conductance as ``g = d I/d U`` which are then +used to compute the voltage update. ``g`` is thus computed multiple times every +timestep and if the corresponding expression is inefficient, it will cost more +time than needed. The differentiation implementation quite naive and will not +optimise the resulting expressions. This is an internal detail of Arbor and +might change in the future, but for now this particular optimisation can help to +produce better performing code. Here is an example + +.. code:: + + : BAD, will compute m^4 * h every step + i = m^4 * h * (v - e) + + : GOOD, will just use a constant value of g + LOCAL g + g = m^4 * h + i = g * (v - e) + +Note that we do not lose accuracy here, since Arbor does not support +higher-order ODEs and thus will treat ``g`` as a constant across +a single timestep even if ``g`` actually depends on ``v``. + +Specialised Functions +~~~~~~~~~~~~~~~~~~~~~ + +Another common pattern is the use of a guarded exponential of the form + +.. code:: + + if (x != 1) { + r = x*exp(1 - x) + } else { + r = x + } + +This incurs some extra cost on most platforms. However, it can be written in +Arbor's NMODL dialect as + +.. code:: + + exprelr(x) + +which is more efficient and has the same guarantees. NMODL files originating +from NEURON often use this or related functions, e.g. ``vtrap(x, y) = +y*exprelr(x/y)``. + +Small Tips and Micro-Optimisations +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +- Divisions cost a bit more than multiplications and additions. +- ``m * m`` is more efficient than ``m^2``. This holds for higher powers as well + and if you want to squeeze out the utmost of performance use + exponentiation-by-squaring. (Although GCC does this for you. Most of the + time.) diff --git a/doc/fileformat/swc.rst b/doc/fileformat/swc.rst index cfc9c34bdf..cf799324da 100644 --- a/doc/fileformat/swc.rst +++ b/doc/fileformat/swc.rst @@ -36,6 +36,14 @@ its parent and inherits the tag of the sample; and if more than 1 sample have th is interpreted as a fork point in the morphology, and acts as the proximal point to a new branch for each of its "child" samples. There a couple of exceptions to these rules which are listed below. +.. Note:: + + The SWC file format allows association of ``tags`` with parts of the + morphology and reserves tag values 1-4 for soma, axon, basal dendrite, and + apical dendrite. In Arbor, these tags can be added to a + :class:`arbor.label_dict` using the :meth:`~arbor.label_dict.add_swc_tags` method. + + .. _formatswc-arbor: Arbor interpretation diff --git a/doc/images/iexpr_distance.svg b/doc/images/iexpr_distance.svg new file mode 100644 index 0000000000..0782b49cae --- /dev/null +++ b/doc/images/iexpr_distance.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/images/iexpr_interp.svg b/doc/images/iexpr_interp.svg new file mode 100644 index 0000000000..88c778367d --- /dev/null +++ b/doc/images/iexpr_interp.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + +1 + +2 + +3 + +4 + diff --git a/doc/index.rst b/doc/index.rst index bde4889068..194955a597 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -1,11 +1,20 @@ Arbor ===== -|testbadge| |zlatest| +|ci| |hpcci| |pythonwheels| |zlatest| |gitter| -.. |testbadge| image:: https://github.com/arbor-sim/arbor/actions/workflows/test-everything.yml/badge.svg +.. |ci| image:: https://github.com/arbor-sim/arbor/actions/workflows/test-everything.yml/badge.svg :target: https://github.com/arbor-sim/arbor/actions/workflows/test-everything.yml +.. |hpcci| image:: https://gitlab.com/cscs-ci/arbor-sim/arbor/badges/master/pipeline.svg + :target: https://gitlab.com/cscs-ci/arbor-sim/arbor/-/commits/master + +.. |pythonwheels| image:: https://github.com/arbor-sim/arbor/actions/workflows/ciwheel.yml/badge.svg + :target: https://github.com/arbor-sim/arbor/actions/workflows/ciwheel.yml + +.. |gitter| image:: https://badges.gitter.im/arbor-sim/community.svg + :target: https://gitter.im/arbor-sim/community + Welcome to the documentation for Arbor, the multi-compartment neural network simulation library. You can find out how to :ref:`get Arbor`; get started quickly with our :ref:`tutorials`; or continue reading to learn more about Arbor. @@ -27,8 +36,9 @@ Documentation organisation * :ref:`tutorial` contains a few ready-made examples you can use to quickly get started using Arbor. In the tutorial descriptions we link to the relevant Arbor concepts. * :ref:`modelintro` describes the design and concepts used in Arbor. The breakdown of concepts is mirrored (as much as possible) in the :ref:`pyoverview` and :ref:`cppoverview`, so you can easily switch between languages and concepts. -* The API section details our :ref:`pyoverview` and :ref:`cppoverview` API. :ref:`internals-overview` describes Arbor code that is not user-facing; convenience classes, architecture abstractions, etc. -* Contributions to Arbor are very welcome! Under :ref:`contribindex` describe conventions and procedures for all kinds of contributions. +* The API section details our :ref:`pyoverview` and :ref:`cppoverview` API. The :ref:`dev-overview` describes Arbor code that is not user-facing; convenience classes, architecture abstractions, and other information that is relevant to understanding the inner workings of Arbor and the mathematical foundations underpinning the engine. +* :ref:`modelling-overview` is a collection of best practices and experiences collected from the Arbor modelling community, meant to spread information on how to solve common modelling questions in Arbor. +* Contributions to Arbor are very welcome! Under :ref:`contribindex` you'll find the conventions and procedures for all kinds of contributions. Citing Arbor ------------ @@ -38,6 +48,9 @@ The Arbor software can be cited by version via Zenodo or via Arbors introductory Latest version |zlatest| +Version 0.7 + |z07| + Version 0.6 |z06| @@ -67,6 +80,9 @@ Cite (Bibtex format) .. |zlatest| image:: https://zenodo.org/badge/DOI/10.5281/zenodo.1459678.svg :target: https://doi.org/10.5281/zenodo.1459678 +.. |z07| image:: https://zenodo.org/badge/DOI/10.5281/zenodo.6865725.svg + :target: https://doi.org/10.5281/zenodo.6865725 + .. |z06| image:: https://zenodo.org/badge/DOI/10.5281/zenodo.5910151.svg :target: https://doi.org/10.5281/zenodo.5910151 @@ -99,6 +115,7 @@ A full list of our software attributions can be found `here `_, followed by .. note:: To get help in case of problems installing Arbor, please make an issue on the Arbor `Github issues `_ page. +Getting the code +================ + +The easiest way to acquire the latest version of Arbor is to check the code out from +the `Github repository `_: + +.. code-block:: bash + + git clone https://github.com/arbor-sim/arbor.git --recurse-submodules + +We recommend using a recursive checkout, because Arbor uses Git submodules for some +of its library dependencies. +The CMake configuration attempts to detect if a required submodule is available, and +will print a helpful warning +or error message if not, but it is up to the user to ensure that all required +submodules are downloaded. + +The Git submodules can be updated, or initialized in a project that didn't use a +recursive checkout: + +.. code-block:: bash + + git submodule update --init --recursive + +You can also point your browser to Arbor's +`Github page `_ and download a zip file. +If you use the zip file, then don't forget to run Git submodule update manually. + .. _install_requirements: Requirements ============ -Minimum requirements --------------------- +Dependencies +------------ -The non distributed (i.e. no MPI) version of Arbor can be compiled on Linux or OS X systems -with very few tools. +A full list of dependencies and minimum versions supported thereof is maintained in the file ``doc/dependencies.csv``, for completeness shown also in the following table. -.. table:: Required Tools +.. csv-table:: List of requirements + :file: ../dependencies.csv + :widths: 10, 20, 10, 70, 1 + :header-rows: 1 - =========== ============================================ - Tool Notes - =========== ============================================ - Git To check out the code, minimum version 2.0. - CMake To set up the build, minimum version 3.18. - compiler A C++17 compiler. See `compilers `_. - =========== ============================================ +Minimum requirements +-------------------- + +Arbor can be configured with various features, which may introduce additional dependencies. The non distributed (i.e. no MPI) version of Arbor can be compiled on Linux or OS X systems with very few tools. In the table above the blank lines in the "Build option/target" column reflect the minimum you need, provided you have obtained a copy of Arbor which includes the git submodules. .. _install-compilers: @@ -38,18 +65,7 @@ Compilers ~~~~~~~~~ Arbor requires a C++ compiler that fully supports C++17. -We recommend using GCC or Clang, for which Arbor has been tested and optimised. - -.. table:: Supported Compilers - - =========== ============ ============================================ - Compiler Min version Notes - =========== ============ ============================================ - GCC 8.4.0 - Clang 8.0 Needs GCC 8 or later for standard library. - Apple Clang 9 Apple LLVM version 9.0.0 (clang-900.0.39.2) - Hip Clang ROCm 3.9 HIP support is currently experimental. - =========== ============ ============================================ +We recommend using GCC or Clang, for which Arbor has been tested and optimised, see notes in the above table. .. _note_CC: @@ -119,7 +135,7 @@ More information on building with MPI is in the `HPC cluster section ` Python ~~~~~~ -Arbor has a Python frontend, for which a minimum of Python 3.6 is required. +Arbor has a Python frontend, for which a minimum of Python 3.7 is required. In addition, `numpy` is a runtime requirement for the Python package. In order to use MPI in combination with the python frontend the `mpi4py `_ @@ -134,12 +150,19 @@ an additional support library ``arborio``. This library requires with NeuroML support enabled. See :ref:`install-neuroml` for more information. +Boost +~~~~~ + +When ``ARB_BACKTRACE`` is set to ``ON`` during configure we use +``Boost::stacktrace`` to print stacktraces upon failed assertions and attach +them to the base exception types ``arbor_exception`` and +``arbor_internal_error`` as ``where``. Documentation ~~~~~~~~~~~~~~ To build a local copy of the html documentation that you are reading now, you will need to -install `Sphinx `_. +install ``Sphinx `_. .. _install-downloading: @@ -161,34 +184,6 @@ and `nlohmann json `_ from a copy in the check It is also possible to select only one of the two libraries to be taken from the system or from Arbor. -Getting the code -================ - -The easiest way to acquire the latest version of Arbor is to check the code out from -the `Github repository `_: - -.. code-block:: bash - - git clone https://github.com/arbor-sim/arbor.git --recurse-submodules - -We recommend using a recursive checkout, because Arbor uses Git submodules for some -of its library dependencies. -The CMake configuration attempts to detect if a required submodule is available, and -will print a helpful warning -or error message if not, but it is up to the user to ensure that all required -submodules are downloaded. - -The Git submodules can be updated, or initialized in a project that didn't use a -recursive checkout: - -.. code-block:: bash - - git submodule update --init --recursive - -You can also point your browser to Arbor's -`Github page `_ and download a zip file. -If you use the zip file, then don't forget to run Git submodule update manually. - .. _building: Building and installing Arbor diff --git a/doc/install/python.rst b/doc/install/python.rst index 3b931ad38e..10f1d279a4 100644 --- a/doc/install/python.rst +++ b/doc/install/python.rst @@ -6,7 +6,7 @@ Python Installation Arbor's Python API will be the most convenient interface for most users. .. note:: - Arbor requires Python version 3.6 and later. It is advised that you update ``pip`` as well. + Arbor requires Python version 3.7 and later. It is advised that you update ``pip`` as well. We strongly encourage using ``pip`` to install Arbor. To get help in case of problems installing with pip, run pip with the ``--verbose`` flag, and attach the output @@ -42,15 +42,11 @@ You are now ready to use Arbor! You can continue reading these documentation pag for any other platforms than listed above, ``pip`` will attempt a build from source and thus require these packages as well. - * Ubuntu/Debian: `git cmake gcc python3-dev python3-pip libxml2-dev` - * Fedora/CentOS/OpenSuse: `git cmake gcc-c++ python3-devel python3-pip libxml2-devel` - * MacOS: get `brew` `here `_ and run `brew install cmake clang python3 libxml2` + * Ubuntu/Debian: ``git cmake gcc python3-dev python3-pip libxml2-dev`` + * Fedora/CentOS/OpenSuse: ``git cmake gcc-c++ python3-devel python3-pip libxml2-devel`` + * MacOS: get ``brew`` `here `_ and run ``brew install cmake clang python3 libxml2`` * Windows: the simplest way is to use `WSL `_ and then follow the instructions for Ubuntu. - In addition, you'll need a few Python packages present: - - ``pip3 install ninja scikit-build wheel setuptools numpy`` - .. _in_python_custom: Customising Arbor @@ -74,15 +70,16 @@ If you want to work on Arbor's code, you can get a copy of our repo and point `p Every time you make changes to the code, you'll have to repeat the second step. +.. _in_python_adv: + Advanced options ^^^^^^^^^^^^^^^^ -By default Arbor is installed with multi-threading enabled. To enable more -advanced forms of parallelism and other features, Arbor comes with a few -compilation options. These are of the form ``-D=``, must be appended -to the ``pip`` invocation via ``--install-option="-D<...>" --install-option="-D<...>" ...`` and can -be used on both local (``pip3 install ./arbor``) and remote (``pip3 install -arbor``) copies of Arbor. See the examples below. +Arbor comes with a few compilation options, some of them related to advanced forms of parallelism and other features. +The options and flags are the same :ref:`as documented for the CMAKE build `, but they are passed differently. +To enable more, they must be placed in the ``CMAKE_ARGS`` environment variable. +The simplest way to do this is by prepending the ``pip`` command with ``CMAKE_ARGS=""``, +where you place the arguments separated by space inside the quotes. .. Note:: @@ -90,15 +87,13 @@ arbor``) copies of Arbor. See the examples below. to remove the ``_skbuild`` directory. If you had Arbor installed already, you may need to remove it first before you can (re)compile it with the flags you need. - Also, make sure to pass each option individually via - ``--install-option="..."``. - The following flags can be used to configure the installation: * ``ARB_WITH_NEUROML=``: Enable support for NeuroML2 morphologies, requires ``libxml2`` library. Default ``OFF`` -* ``ARB_WITH_MPI=``: Enable MPI support, requires MPI library. - Default ``OFF``. +* ``ARB_WITH_MPI=``: Enable MPI support, requires MPI library. Default + ``OFF``. If you intend to use ``mpi4py``, you need to install the package before + building Arbor, as binding it requires access to its headers. * ``ARB_GPU=``: Enable GPU support for NVIDIA GPUs with nvcc using ``cuda``, or with clang using ``cuda-clang`` (both require cudaruntime). Enable GPU support for AMD GPUs with hipcc using ``hip``. By @@ -117,6 +112,14 @@ The following flags can be used to configure the installation: and ``CMake`` under the hood, so all flags and options valid in ``CMake`` can be used in this fashion. + Allthough the + `scikit-build documentation `_ + mentions that you can also pass the build options with ``--install-option=""``, + this will cause ``pip`` to build all dependencies, including all build-dependencies, + instead of downloading them from PyPI. + ``CMAKE_ARGS=""`` saves you the build time, and also downloading and setting up the dependencies they in turn require to be present. + Setting ``CMAKE_ARGS=""`` is in addition compatible with build front-ends like `build `_. + Detailed instructions on how to install using CMake are in the :ref:`Python configuration ` section of the :ref:`installation guide `. CMake is recommended if you need more control over @@ -136,33 +139,33 @@ In the examples below we assume you are installing from a local copy. .. code-block:: bash - pip3 install ./arbor --install-option="-DARB_WITH_MPI=ON" + CMAKE_ARGS="-DARB_WITH_MPI=ON" pip3 install ./arbor **Compile with** :ref:`vectorization ` on a system with a SkyLake :ref:`architecture `: .. code-block:: bash - pip3 install ./arbor --install-option="-DARB_VECTORIZE=ON" --install-option="-DARB_ARCH=skylake" - + CMAKE_ARGS="-DARB_VECTORIZE=ON -DARB_ARCH=skylake" pip3 install ./arbor + **Enable NVIDIA GPUs (compiled with nvcc)**. This requires the :ref:`CUDA toolkit `: .. code-block:: bash - pip3 install ./arbor --install-option="-DARB_GPU=cuda" + CMAKE_ARGS="-DARB_GPU=cuda" pip3 install ./arbor **Enable NVIDIA GPUs (compiled with clang)**. This also requires the :ref:`CUDA toolkit `: .. code-block:: bash - pip3 install ./arbor --install-option="-DARB_GPU=cuda-clang" + CMAKE_ARGS="-DARB_GPU=cuda-clang" pip3 install ./arbor **Enable AMD GPUs (compiled with hipcc)**. This requires setting the ``CC`` and ``CXX`` -:ref:`environment variables ` +:ref:`environment variables `: .. code-block:: bash - pip3 install ./arbor --install-option="-DARB_GPU=hip" + CC=clang CXX=hipcc CMAKE_ARGS="-DARB_GPU=hip" pip3 install ./arbor Note on performance ------------------- diff --git a/doc/install/spack.rst b/doc/install/spack.rst index 447b411a02..c3bac85b37 100644 --- a/doc/install/spack.rst +++ b/doc/install/spack.rst @@ -3,9 +3,36 @@ Spack Installation =================== -`Spack `_ is a package manager for supercomputers, Linux, and macOS. It makes installing scientific software easy. Spack isn’t tied to a particular language; you can build a software stack in Python or R, link to libraries written in C, C++, or Fortran, and easily swap compilers or target specific microarchitectures. +Install Arbor +------------- To install Arbor using Spack, run ``spack install arbor``. -.. Note:: - To get help in case of problems, please make an issue at `Arbor's issues page `_. +Build Options +------------- + +Arbor can be built with various options, just like the regular CMake build. For instance, to have Spack build Arbor with MPI enabled, run ``spack install arbor +mpi``. For a full overview of the build options, please refer to the `our Spack package.yml `_. + +Why use Spack? +-------------- + +`Spack `_ is a package manager for supercomputers, Linux, and macOS. It makes installing scientific software easy. Spack isn’t tied to a particular language; you can build a software stack in Python or R, link to libraries written in C, C++, or Fortran, and easily swap compilers or target specific microarchitectures. + +A powerful feature for users of scientific software is Spack's `Environment feature `_. One can define and store software environments for reuse, to generate container images or reproduce and rerun software workflows at a later time. + +Issues when using Spack +----------------------- + +On some systems initial Spack setup requires an extra step currently not shown in the up-front installations instructions of the `Spack documentation `_, which is adding the compilers on your system to Spack's configuration. If you don't, you may get this error: + +.. code-block:: bash + + No satisfying compiler available is compatible with a satisfying os + +The solution is to run (`as described further down in the official documentation `_): + +.. code-block:: bash + + ./spack compiler add + +To get help in case of problems, please make an issue at `Arbor's issues page `_. diff --git a/doc/internals/index.rst b/doc/internals/index.rst deleted file mode 100644 index cb7a844720..0000000000 --- a/doc/internals/index.rst +++ /dev/null @@ -1,15 +0,0 @@ -.. _internals-overview: - -Internals -========= - -Here we document internal components of Arbor. These pages can be useful if you're interested in developing on Arbor itself. - -.. toctree:: - :caption: Arbor Internals: - :maxdepth: 2 - - util - simd_api - extending_catalogues - mechanism_abi diff --git a/doc/python/cable_cell.rst b/doc/python/cable_cell.rst index 20018d83f3..03603b988e 100644 --- a/doc/python/cable_cell.rst +++ b/doc/python/cable_cell.rst @@ -74,7 +74,68 @@ Cable cells :type index: int :rtype: tuple(int, int) - .. py:class:: ion properties of an ionic species. + + +.. py:class:: cable_cell_global_properties + + .. property:: catalogue + + All mechanism names refer to mechanism instances in this mechanism + catalogue. by default, this is set to point to ``default_catalogue()``. + + .. property:: membrane_voltage_limit + + Set a limiter ``U_max`` (mV) on the membrane potential; if ``U > U_max`` + at any point and location the simulation is aborted with an error. + Defaults to ``None``, if set to a numeric value the limiter is armed. + + .. property:: ion_data + + Return a read-only view onto concentrations, diffusivity, and reversal potential settings. + + .. property:: ion_valence + + Return a read-only view onto species and charge. + + .. property:: ion_reversal_potential + + Return a read-only view onto reversal potential methods (if set). + + .. property:: ions + + Return a read-only view onto all settings. + + .. function:: set_ion(name, + charge, + internal_concentration, external_concentration, + reversal_potential, reversal_potential_method, + diffusivty) + + Add a new ion to the global set of known species. + + .. function:: unset_ion(name) + + Remove the named ion. + + .. property:: membrane_potential + + Set the default value for the membrane potential. (``mV``) + + .. property:: membrane_capacitance + + Set the default value for the membrane potential. (``F/m²``) + + .. property:: temperature + + Set the default value for the temperature (``K``). + + .. property:: axial_resisitivity + + Set the default value for the membrane axial resisitivity. (``Ω·cm``) + + +For convenience, ``neuron_cable_properties`` is a predefined value that holds +values that correspond to NEURON defaults. diff --git a/doc/python/cell.rst b/doc/python/cell.rst index 7f19f603ed..b932bc823a 100644 --- a/doc/python/cell.rst +++ b/doc/python/cell.rst @@ -18,6 +18,10 @@ The types defined below are used as identifiers for cells and members of cell-lo Iterate over the items of the group in a round-robin fashion. + .. attribute:: round_robin_halt + + Halts at the current item of the group until the round_robin policy is called (again). + .. attribute:: univalent Assert that only one item is available in the group. Throws an exception if the assertion @@ -93,6 +97,7 @@ The types defined below are used as identifiers for cells and members of cell-lo # Create the global label referring to the group of items labeled "syn0" # on cell 5 global_label = arbor.cell_global_label(5, local_label) + .. class:: cell_member .. function:: cell_member(gid, index) @@ -105,9 +110,8 @@ The types defined below are used as identifiers for cells and members of cell-lo * be associated with a unique cell, identified by the member :attr:`gid`; * identify an item within a cell-local collection by the member :attr:`index`. - An example is uniquely identifying a probe description in the model. - Each probe description has a cell (with :attr:`gid`), and an :attr:`index` into - the set of probe descriptions on the cell. + An example is uniquely identifying a probeset on the model: + ``arbor.cell_member(12, 3)`` can be used to identify the probeset with :attr:`index` 3 on the cell with :attr:`gid` 12. Lexicographically ordered by :attr:`gid`, then :attr:`index`. diff --git a/doc/python/decor.rst b/doc/python/decor.rst index 6eb79d2414..f8fbc43e14 100644 --- a/doc/python/decor.rst +++ b/doc/python/decor.rst @@ -172,4 +172,16 @@ Cable cell decoration Set the cv_policy used to discretise the cell into control volumes for simulation. - :param str policy: :ref:`string representation ` of a cv_policy. \ No newline at end of file + :param str policy: :ref:`string representation ` of a cv_policy. + + .. method:: paintings() + + Returns a list of tuples ``(region, painted_object)`` for inspection. + + .. method:: placements() + + Returns a list of tuples ``(locset, placed_object)`` for inspection. + + .. method:: defaults() + + Returns a list of all set defaults for inspection. diff --git a/doc/python/hardware.rst b/doc/python/hardware.rst index bf38e6b6d4..76969f7359 100644 --- a/doc/python/hardware.rst +++ b/doc/python/hardware.rst @@ -1,7 +1,7 @@ .. _pyhardware: -Hardware management -=================== +Hardware context +================ Arbor provides two ways for working with hardware resources: @@ -68,6 +68,20 @@ Helper functions for checking cmake or environment variables, as well as configu Check if MPI is finalized. +Env: Helper functions +--------------------- + +The ``arbor.env`` module collects helper functions for interacting with the environment. + +.. function:: find_private_gpu(comm) + + Requires GPU and MPI. Will return an integer id of a GPU such that each GPU + is mapped to at most one MPI task (on the same node as the GPU). Raises an + exception if + - not built with GPU or MPI support + - unable to satisfy the constraints above + - handed an invalid or unknown MPI communicator object + Prescribed resources --------------------- diff --git a/doc/python/mechanisms.rst b/doc/python/mechanisms.rst index dbeb790310..97b9312cc9 100644 --- a/doc/python/mechanisms.rst +++ b/doc/python/mechanisms.rst @@ -464,7 +464,8 @@ Mechanism catalogues .. py:method:: extend(other, prefix) - Import another catalogue, possibly with a prefix. Will overwrite in case of name collisions. + Import another catalogue, possibly with a prefix. Will raise an exception + in case of name collisions. .. code-block:: Python diff --git a/doc/python/morphology.rst b/doc/python/morphology.rst index caa3f3cced..c6b78f64fd 100644 --- a/doc/python/morphology.rst +++ b/doc/python/morphology.rst @@ -242,6 +242,36 @@ Cable cell morphology :param float radius: distal radius (μm) :param int tag: tag meta data of segment + .. method:: split_at(id) + + Split a segment_tree ``T`` into a pair of subtrees ``(L, R)`` such that + ``R`` is the subtree of ``T`` that starts at the given id and L is ``T`` + without ``R``. Splitting above the root ``mnpos`` returns ``(T, {})``. + + .. method:: join_at(id, other) + + Join two subtrees ``L`` and ``R`` at a given ``id`` in ``L``, such that + ``join_at`` is inverse to ``split_at`` for a proper choice of ``id``. + The join point ``id`` must be in ``L``. + + .. method:: apply_isometry(iso) + + Apply an :type:`isometry` to the segment tree, returns the transformed tree as a copy. + Isometries are rotations around an arbritary axis and/or translations; they can + be instantiated using ``translate`` and ``rotate`` and combined + using the ``*`` operator. + + :return: new tree + :param iso: isometry + + .. method:: equivalent(other) + + Two trees are equivalent if + 1. the root segments' ``prox`` and ``dist`` points and their ``tags`` + are identical. + 2. recursively: all sub-trees starting at the current segment are + equivalent. + .. attribute:: empty :type: bool @@ -558,7 +588,7 @@ region. SWC --- -.. py:function:: load_swc_arbor(filename) +.. py:function:: load_swc_arbor(filename, raw=False) Loads the :class:`morphology` from an SWC file according to arbor's SWC specifications. (See the morphology concepts :ref:`page ` for more details). @@ -586,16 +616,18 @@ SWC :param str filename: the name of the SWC file. - :rtype: morphology + :param bool raw: return segment_tree instead of morphology? + :rtype: morphology or segment_tree -.. py:function:: load_swc_neuron(filename) +.. py:function:: load_swc_neuron(filename, raw=False) Loads the :class:`morphology` from an SWC file according to NEURON's ``Import3D`` interpretation of the SWC specification. See :ref:`the SWC file documention ` for more details. :param str filename: the name of the SWC file. - :rtype: morphology + :param bool raw: return segment_tree instead of morphology? + :rtype: morphology or segment_tree .. _pyneuroml: @@ -707,6 +739,10 @@ Neurolucida The cable cell morphology. + .. py:attribute:: segment_tree + + The raw segment tree. + .. py:attribute:: labels The labeled regions and locations extracted from the meta data. The four canonical regions are labeled diff --git a/doc/python/probe_sample-diag.dia b/doc/python/probe_sample-diag.dia new file mode 100644 index 0000000000000000000000000000000000000000..4274a7ebd3ce0814c9ed01fc2f220f27d02481fa GIT binary patch literal 2419 zcmV-(35@n1iwFP!000021MOW)Z{s);zW1*X+?QD(VfYY5vNOqG_AuDP0(;om(_j(E zHsfeVmJC^W__Du!NJ)-u*|HtWlw+q1bT_1?SS*S4eZ{Jx^z$!o5vQpM)db&vf`_bLZInlsc^QiO%XBk0!d-HMB*50f;@voOlnMfTG))?rdg&9i5HxSZ)AjLj6=rdA6r z9-}-@cZ~lrjHml3P@aCbwvSrwD2s;M4R@tQLodUb`8OIkeI&2ZFn@Y@bM#2c-e-<_ ze~G41Kh~Q@A0_$Gx}P1V`}zzhIAU>m%NbYp)<{A_sk!EdkkIHk8tUne$-LU8p{J*+ z+0Cx|UT@d()(oTRBo1fWRj4;==qpU}$Y5AF)x#qpO%qfm;p93`uWLBrP*U3epB^~I z|EKhIAB~P6WsoL`QOCHU*OSzk>-0Dx_nnI6shWpcNHvp8XVpl59X#baGv29jPQ40l zs-bw50^!oB(CG6rKU$jb<&&!>@^5kaI(Q1R+`IPvp1$=K-nj9_qv2ieUwG9L>bKAI zX1swlYcB3$<$7SG#1%)XZldeAt4Tn=U++J&$|j>&FJuIq7%5WmTN)sW`4v$}Vt$xZ z9qaMKAkC6>fBAT-6+#NqTUT#RcpOoxl&|JLDO<>T($VNCZx%)vQh51C4-?i;v!Tv* zsfLkV>J&dA0$)-tDLG7_HR6X2Yq#CD`w=OVa5!9bNY^wvaJuFCZSAqtIj7d9=}r{O zvXyqV72G6C`+BPLZ>ztCW!)AyZE~#BB;O?8p7$P&iyF_&FvDcp^QQUC;+27#^3s3k z_(kW@AY8`QkB?w&ns0nm60iRJc0yM{a3fkU#3jEH2>U(`+DTh=;I_mPFkZNEhlw%{ z%qSV_%@0*4&*Kfg?KTqL#EDG~+RcKnni%Zgh6jdWHZ%nGyS0#|cv8h+q%DIPA`ym8 zB=WgK4y&XHBso{N?=k}elAj+`06koz$Hqx`8PI_pKu6PRu^3X_Di%XwJ4|gKMB43B z)7FS&d`^0$5Os-1#+epI2H_TrD5qxj5p(3yp>CY6`|!M}A* zMNh^bh&2$Bb3zh`2ZUV_jF|5e@Mn+X&+cXq);c0XkWc}0%pX>YUq~?wLOJrWlSHKE~7+06j<0C z+$BI!2q7S;4oE5xBDf*}3V@_sWP1N;tbGGX1xLvAQcR1bDRG?ZB{rd=kdTtz8v2k0 zXBi|RjNqsDv>R~@bU&-(x%(C>g8R{u*+4V!L zlhO9-CEixV&ibf5B`m5Jr)y*~{~xbRixjq!r$r9ZTm0``Pp(ab4cC(DTDE$vSTDY< z4d^)LEzZfj85LFzmbkRgLTiX+h4s_b!6T0tgKs>#?5(Q z+%gb$jft7!pUb!dq`G~zsiT@guKrBm1UO%@YQyFz|pg zO9?Dc z>%jnFy1X1zP~Ci4>%l+pe}8y+G}c#k(9f{9(*251BFv?LC1K|gM*nDx;<(QFol$I^ z^E;zBu5&(ua=<9SDBu4ez$hnT6sSq=m{Is~7=_t){|M@wQ3^SMu$00mVOJEJBln!r zO1=F!g|2c+0GtAQXZEBkgb)x`=Y&Oyprk@F0K)3^St@jDR|j03 zFXQSoAz}N^p%m|V=C13U-o;dPPD^5;&Iy39c_so5o)Hf6Q^6oVLb)d?itG;05bj&= zIhTV)S?@VNmK1OhaIkSI0uY{4!RN`4FaU=TfDjx)z`?KW5DIVz0SCb$1R(tK4xxlx z2_PZlN&pGJe6FPRh6?*;s(>)}A7`rMlt{>Lm*fHx0upYSihzXYgoGyoLWYkJBjl3X z&Dzp&jIa_zc^M)s4jICLf`EdJ^AJGrj6m>IMZ&E8cQY_j;))~X`ZJxrG*Tp^toR5o zX2PzKX&?gUAI(_Tu=!)22k+H$QX5>n4sK^*Etzl3^A#o}Ak^Kv=X|JfK3R=(4P)?! lYMfWE^*; + + + + + + + probeset + + + + + + + + + + + + + + + + + + + + + + + + handle + + + + + + probe 1 + + + + + + probe 2 + + + + + + probe ... + + + + + + + + + + + + + + + + + + meta (str) + + + + + + data (ndarray) + + + + + + + + + + + + + + [0]: time, value + + + + + + [1]: time, value + + + + + + [...]: time, value + + + + + + + + + + + + + + + + + + + + + location expression for probe 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/python/probe_sample.rst b/doc/python/probe_sample.rst index 983b94d5eb..3ac24a0ccd 100644 --- a/doc/python/probe_sample.rst +++ b/doc/python/probe_sample.rst @@ -5,23 +5,144 @@ Cable cell probing and sampling .. module:: arbor -Cable cell probe addresses are defined analogously to their counterparts in -the C++ API (see :ref:`cablecell-probes` for details). Sample data recorded -by the Arbor simulation object is returned in the form of a NumPy array, -with the first column holding sample times, and subsequent columns holding -the corresponding scalar- or vector-valued sample. - -Location expressions will be realised as zero or more specific sites on -a cell; probe addresses defined over location expressions will describe zero, +.. figure:: probe_sample-diag.svg + :width: 800 + :align: center + + A schematic view of how :term:`handles ` let you access sampled data measured at a :term:`probeset`. + A probeset is a probe placed on a locset (which may describe more than one point). + When setting a probe on a locset a :term:`sampler` is created. + When this sampler is set to sampling (at a certain schedule), a handle is returned. + This figure demonstrates how sampling data can be accessed through the handle associated to the probeset. + See below for a possible result for ``data``. + +.. code-block:: python + + print(data) # The probe data printed, as found in single_cell_recipe.py + [[ 0.00000000e+00 -4.00000000e+01] + [ 1.00000000e-01 -5.40211646e+01] + [ 2.00000000e-01 -6.19670534e+01] + ... + [ 2.99000000e+01 -6.44564354e+01]] + +Sample data recorded by the Arbor simulation object is returned in the form +of a NumPy array, with the first column holding sample times, and subsequent +columns holding the corresponding scalar- or vector-valued sample. + +Probesets are defined over a location expression and will describe zero, one, or more probes, one per site. They are evaluated in the context of the cell on which the probe is attached. +:term:`Vector probes ` are a kind of probes that samples over a region, rather than a :term:`locset`. +This means that they may output more than a single data point per timestamp. The layout of the outputs as returned +by :func:`~arbor.simulation.samples` is slightly different, but contains the same sort of information as regular +:term:`probesets `. + +.. figure:: probe_sample_vector-diag.svg + :width: 800 + :align: center + + The structure of the data returned is slightly different when a :term:`vector probe` is sampled. + The same kind of information is included however. Instead of returning a list per :term:`probe` in a :term:`probeset`, + the data and metadata now have an extra dimension to cover for the multitude of subregions. + + Each of the functions described below generates an opaque :class:`probe` object for use in the recipe :py:func:`recipe.probes` method. More information on probes, probe metadata, and sampling can be found in the documentation for the class :class:`simulation`. +.. note:: + + Cable cell probesets are defined analogously to their counterparts in + the C++ API (see :ref:`cablecell-probes` for details). Some details + like `probe_tag` are not exposed in Python, as having Python probe callbacks + has proven to be too slow. + +Example +------- + + +.. code-block:: python + + import arbor + + tree = arbor.segment_tree() + p = tree.append(arbor.mnpos, arbor.mpoint(-3, 0, 0, 3), arbor.mpoint(3, 0, 0, 3), tag=1) + tree.append(p, arbor.mpoint(3, 0, 0, 3), arbor.mpoint(-3, 0, 0, 3), tag=2) + tree.append(p, arbor.mpoint(3, 0, 0, 3), arbor.mpoint(-3, 0, 0, 3), tag=2) + + decor = ( + arbor.decor() + .set_property(Vm=-40) + .paint('"soma"', arbor.density("hh")) + .place('"midpoint"', arbor.iclamp(10, 2, 0.8), "iclamp")) + + cell = arbor.cable_cell(tree, labels, decor) + + class single_recipe(arbor.recipe): + def __init__(self): + arbor.recipe.__init__(self) + + def num_cells(self): + return 1 + + def cell_kind(self, gid): + return arbor.cell_kind.cable + + def cell_description(self, gid): + return cell + + def probes(self, gid): + return [arbor.cable_probe_membrane_voltage('(location 0 0.5)'), + arbor.cable_probe_membrane_voltage_cell(), + arbor.cable_probe_membrane_voltage('(join (location 0 0) (location 0 1))'), + ] + + # (4.6) Override the global_properties method + def global_properties(self, kind): + return arbor.neuron_cable_properties() + + recipe = single_recipe() + sim = arbor.simulation(recipe) + handles = [sim.sample((0, n), arbor.regular_schedule(0.1)) + for n in range(3) ] + sim.run(tfinal=1) + + for hd in handles: + print("Handle", hd) + for d, m in sim.samples(hd): + print(" * Meta:", m) + print(" * Payload:", d.shape) + +This script, has a single (scalar) probe, a single vector probe, and a probeset involving two scalar probes. +The script is complete and can be run with Arbor installed, and will output: + +.. code-block:: + + Handle 0 + * Meta: (location 0 0.5) + * Payload: (10, 2) + Handle 1 + * Meta: [(cable 0 0 1), (cable 0 1 1), (cable 1 0 0), (cable 2 0 0), (cable 1 0 1), (cable 2 0 1)] + * Payload: (10, 7) + Handle 2 + * Meta: (location 0 0) + * Payload: (10, 2) + * Meta: (location 0 1) + * Payload: (10, 2) + + +API +--- + +.. class:: probe + + An opaque object that is the Python representation of :cpp:class:`probe_info`. + + See below for ways to create probes. + Membrane voltage .. py:function:: cable_probe_membrane_voltage(where) @@ -37,6 +158,8 @@ Membrane voltage Metadata: the list of corresponding :class:`cable` objects. + Kind: :term:`vector probe`. + Axial current .. py:function:: cable_probe_axial_current(where) @@ -60,6 +183,8 @@ Ionic current Metadata: the list of corresponding :class:`cable` objects. + Kind: :term:`vector probe`. + Total ionic current .. py:function:: cable_probe_total_ion_current_density(where) @@ -75,6 +200,8 @@ Total ionic current Metadata: the list of corresponding :class:`cable` objects. + Kind: :term:`vector probe`. + Total transmembrane current .. py:function:: cable_probe_total_current_cell() @@ -83,6 +210,8 @@ Total transmembrane current Metadata: the list of corresponding :class:`cable` objects. + Kind: :term:`vector probe`. + Total stimulus current .. py:function:: cable_probe_stimulus_current_cell() @@ -90,6 +219,8 @@ Total stimulus current Metadata: the list of corresponding :class:`cable` objects. + Kind: :term:`vector probe`. + Density mechanism state variable .. py:function:: cable_probe_density_state(where, mechanism, state) @@ -101,10 +232,12 @@ Density mechanism state variable .. py:function:: cable_probe_density_state_cell(mechanism, state) The value of the state variable ``state`` in the density mechanism ``mechanism`` - on each cable in each CV of the cell discretixation. + on each cable in each CV of the cell discretization. Metadata: the list of corresponding :class:`cable` objects. + Kind: :term:`vector probe`. + Point process state variable .. py:function:: cable_probe_point_state(target, mechanism, state) @@ -128,6 +261,8 @@ Point process state variable Metadata: a list of :class:`cable_point_probe_info` values, one for each matching target. + Kind: :term:`vector probe`. + Ionic internal concentration .. py:function:: cable_probe_ion_int_concentration(where, ion) @@ -143,6 +278,8 @@ Ionic internal concentration Metadata: the list of corresponding :class:`cable` objects. + Kind: :term:`vector probe`. + Ionic external concentration .. py:function:: cable_probe_ion_ext_concentration(where, ion) @@ -158,3 +295,5 @@ Ionic external concentration Metadata: the list of corresponding :class:`cable` objects. + Kind: :term:`vector probe`. + diff --git a/doc/python/probe_sample_vector-diag.dia b/doc/python/probe_sample_vector-diag.dia new file mode 100644 index 0000000000000000000000000000000000000000..aa0c3b47dca4b07cf43a6bd04061ef9d25fc7288 GIT binary patch literal 2709 zcmV;G3TpKqiwFP!000021MOW)kK4!*zWY}Y@?`_aJ^g-IJ6>!KiyQ*vkj-fk3@C}# zFiVjF#qoG9`R(Z@DeK7*M=es)qy*RoX{w7&b$#Dg)y=M-fB8O7f^Sj2jI;E9KoA}T zQ98+{aXPyn{OkAMKIy?PUq1Xijl<9O&nyq;f&E6hbVv7t$D&w#zPo#Ven!d5GAyzj zCGitlMtA=WlO(*e7u^lMd=;ZMF1D>x*y}jq@n{v$=6>KgOKa_#(=88=fz+Wo$1g zUKV?oG_>RX-ngc|YH2S@XJ0=4%0E`ORG(P4b?8PLjTG}RpT+6E9s6{W>QPXnDW&#t z2%`;FT#?l?dAqrBzvhyD&E@@?i{PtoaimXk2CL+rI~ zdGz9ITol=n`~Mmy%QhXTPXF+>w|ed@kEgFY?$#9ztxR9+zwxBgpX5277LO0#JNikg z)?Yem{ad_@$4PYP?&GvLTk|jHX?}MElpL}Cy61?iT5BYssg6V>P9dS$Q#_59M+Wou zH4QC2)|cHKd+xi}c|MwHyj&#V%j;d(y{MtBFfC$>Vc{~Go(XB1pfU{?pNj0$4o-Av zDI5PMnski+kJ)pZ9-YC;Bui7<9VgMG#eufX9!!<>(PnBt%$zw{Vcnj zvvW<;lPJTot?PCoxJ90gqh(Zl*#0zxb+5o_ld#Ux;*foJKKN=SYVu-lGfbC*U|GC4 zys}VJef4iq@+~UjNw|rvZ@+`RVSezZ(s=vB{fusd;6b!tNN6#X$PRcc{j6;ZxL0xs z7_VjAX{M}znWgjS@Q)g$PxAxX_B9ed#EDG;?QTt2O$_!=%LCIepIQR@-Fe7HKB;Cf z;>%!;NW_q6#6^c3R$Ea>3t>h-Y)T7~*AFUy9$lly!9n;wpaXXR9Zk_VYHzLh7856cUoKA;E}oPC(C|N6#K-59XbbAxN^0*~8ipx?&G1kWf94 zhiA9ik%u+{_~ISrLx3;(NPj4Y1Hcy@Aui0Yk*?Ns ziJbOQ~nm z4@s2HUeD(XUlT`X3|d-P&*v@oSY-7-K@}*Jeo|y*R35DV_kN)FhQWdFlKQ)B`@3p? zI(p}Z&Lahdw-i)}Qzg0h;tYxnOsI70z!>5N=%l}dgYu>mfkY4a25W|^b-KZZ3w3^~ zhlIo7E;a`-ka2j283*Q(aS&Z(9FF_8z9HWhvb2M>n}o7{B)M{Az@!$}1H984?~rrw zj=<8rt0fduUGk2#glkKbsgif7J2vHU*SzE1$+o;h49t5S+D9l(qlXd}n-ekQ|C-V) zRkbEH;IuwCjX2EEND-xh(|UWw+53&cA96%^L^Q29ZNm~1!gAV%5W-l&yUu_kje`;1 zckcOpXP*fWg12Wei0o;Ol6b!%=a!Z+rab25+R1x{u%_HiC>Uwz$Z2lvjM@X)@f79Z zF1|A9!A_oCfjP=+ouiZ^-IJJyC(N8)64d*DA(ZN z;NYZzzfE5rE^f)gji@|a=+eWvpf3CsTA3^Ia8U*2r{@g8!{4Qcla4vODP7_H!U-ox zQ883*M?K!O+J20QCXt1JuXm z)JGFEdB1@{nI&fTzMw>%zFxI5Bap$uj5f?l0UK5WG&PMx0H&J+CW_Coz=ZgwAzLpn zA=S!7Lya75SeA-Qz$U<^#=!{ibW00NNY@KYn$VDdOamwcnFcs`Z8D95Oap8JnFjC# zGR>kPgG4_-Atd?%39nD6`4?qamtX3(C_`<>AR&a|qs_8UP?{33sd*>@G~JL$qnFZX z;tZ)YS5}!&JMcTsrPX#Q!DT9~J~S2=0R{mE8wMi4;0?jxrCwR3{v{YNGHNK0>9{}_ z5p>!O=`?n!a8;jS zf_1guaHplRe%PT%StJ~7?sE)42te386afft2nfxkfY8876M#ZkX#!vfD^08%^{-{H zs(jn+JL9F5RcySjwhMv~P_Stb0s`I;0*XrkAc3WJfP%2p4uG)drFO^beK2~KdLNn% zIpX-_J#5<7`zS4yyXClgAHp3=pWSobQ18RHlP&9gu+4HGlJ!#Wqn=bfadvW?<lX0p_FPZEU^iQ*q|WfRTqS8Voj)Q+!t>u zRZc8g;SIcb_9~DKFOe{DOM91FIe5elWpIIKx PzkK)~p(&<}{m1|SM(0I3 literal 0 HcmV?d00001 diff --git a/doc/python/probe_sample_vector-diag.svg b/doc/python/probe_sample_vector-diag.svg new file mode 100644 index 0000000000..9e81bca85e --- /dev/null +++ b/doc/python/probe_sample_vector-diag.svg @@ -0,0 +1,175 @@ + + + + + + + + probeset + + + + + + + + + + + + + + + + + + + + + + + + handle + + + + + + probes + + + + + + + + + + meta (list) + + + + + + data (ndarray) + + + + + + + + + + + + + + [0]: time, value probe 1, value probe 2, ... + + + + + + [1]: time, value probe 1, value probe 2, ... + + + + + + [...]: time, value probe 1, value probe 2, .. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + [0]: region expression probe 1 + + + + + + [1]: region expression probe 2 + + + + + + [...]: region expression probe ... + + + + + + + + + + + + diff --git a/doc/python/recipe.rst b/doc/python/recipe.rst index 8e9419c8a5..f3a4c5a11b 100644 --- a/doc/python/recipe.rst +++ b/doc/python/recipe.rst @@ -18,11 +18,27 @@ Recipe Describe a model by describing the cells and network, without any information about how the model is to be represented or executed. All recipes derive from this abstract base class. - + Recipes provide a cell-centric interface for describing a model. This means that model properties, such as connections, are queried using the global identifier ``gid`` of a cell. In the description below, the term ``gid`` is used as shorthand for the cell with global identifier. + **Required Constructor** + + The constructor must be implemented and call the base class constructor, as at the moment there is no way + to instruct Python to do that automatically. + + .. note:: + Arbor's Python binding is that: a thin wrappper around the Arbor library which is written in C++. + Calling the base class constructor ensures correct initialization of memory in the underlying C++ class. + + A minimal constructor therefore looks like this: + + .. code-block:: python + + def __init__(self): + arbor.recipe.__init__(self) + **Required Member Functions** The following member functions (besides a constructor) must be implemented by every recipe: @@ -72,10 +88,10 @@ Recipe .. function:: probes(gid) - Returns a list specifying the probe addresses describing probes on the cell ``gid``. - Each address in the list is an opaque object of type :class:`probe` produced by - cell kind-specific probe address functions. Each probe address in the list - has a corresponding probe id of type :class:`cell_member`: an id ``(gid, i)`` + Returns a list specifying the probesets describing probes on the cell ``gid``. + Each element in the list is an opaque object of type :class:`probe` produced by + cell kind-specific probeset functions. Each probeset in the list + has a corresponding probeset id of type :class:`cell_member`: an id ``(gid, i)`` refers to the probes described by the ith entry in the list returned by ``get_probes(gid)``. By default returns an empty list. @@ -87,7 +103,7 @@ Recipe This method needs to be implemented for :class:`arbor.cell_kind.cable`, where the properties include ion concentrations and reversal potentials; initial membrane voltage; temperature; axial resistivity; membrane capacitance; cv_policy; and a pointer - to the mechanism catalogue. + to the mechanism catalogue. Also see :ref:`mechanisms_builtins`. By default returns an empty object. @@ -196,6 +212,10 @@ Event generator and schedules Returns a view of monotonically increasing time values in the half-open interval [t0, t1). + .. attribute:: tstop + + No events delivered after this time [ms]. + An example of an event generator reads as follows: .. container:: example-code diff --git a/doc/python/simulation.rst b/doc/python/simulation.rst index a493150388..818c73633d 100644 --- a/doc/python/simulation.rst +++ b/doc/python/simulation.rst @@ -63,12 +63,22 @@ over the local and distributed hardware resources (see :ref:`pydomdec`). Then, t **Constructor:** - .. function:: simulation(recipe, domain_decomposition, context) + .. function:: simulation(recipe, context, domain_decomposition) - Initialize the model described by an :py:class:`arbor.recipe`, with cells and network distributed according to :py:class:`arbor.domain_decomposition`, and computational resources described by :py:class:`arbor.context`. + Initialize the model described by an :py:class:`arbor.recipe`, with + cells and network distributed according to + :py:class:`arbor.domain_decomposition`, and computational resources + described by :py:class:`arbor.context`. **Updating Model State:** + .. function:: update_connections(recipe) + + Rebuild the connection table as described by + :py:class:`arbor.recipe::connections_on` The recipe must differ **only** + in the return value of its :py:func:`connections_on` when compared to + the original recipe used to construct the simulation object. + .. function:: reset() Reset the state of the simulation to its initial state. @@ -114,25 +124,25 @@ over the local and distributed hardware resources (see :ref:`pydomdec`). Then, t **Sampling probes:** - .. function:: sample(probe_id, schedule, policy) + .. function:: sample(probeset_id, schedule, policy) - Set up a sampling schedule for the probes associated with the supplied probe_id of type :py:class:`cell_member`. + Set up a sampling schedule for the probes associated with the supplied probeset_id of type :py:class:`cell_member`. The schedule is any schedule object, as might be used with an event generator — see :ref:`pyrecipe` for details. The policy is of type :py:class:`sampling_policy`. It can be omitted, in which case the sampling will accord with the ``sampling_policy.lax`` policy. - The method returns a handle which can be used in turn to retrieve the sampled data from the simulator or to + The method returns a :term:`handle` which can be used in turn to retrieve the sampled data from the simulator or to remove the corresponding sampling process. - .. function:: probe_metadata(probe_id) + .. function:: probe_metadata(probeset_id) - Retrieve probe metadata for the probes associated with the given probe_id of type :py:class:`cell_member`. + Retrieve probe metadata for the probes associated with the given probeset_id of type :py:class:`cell_member`. The result will be a list, with one entry per probe; the specifics of each metadata entry will depend upon the kind of probe in question. .. function:: remove_sampler(handle) - Disable the sampling process referenced by the argument ``handle`` and remove any associated recorded data. + Disable the sampling process referenced by the argument :term:`handle` and remove any associated recorded data. .. function:: remove_all_samplers() @@ -140,22 +150,29 @@ over the local and distributed hardware resources (see :ref:`pydomdec`). Then, t .. function:: samples(handle) - Retrieve a list of sample data associated with the given ``handle``. - There will be one entry in the list per probe associated with the :term:`probe id` used when the sampling was set up. - For example, if a probe was placed on a locset describing three positions, the returned list will contain three elements. + Retrieve a list of sample data associated with the given :term:`handle`. + There will be one entry in the list per probe associated with the :term:`probeset id` used when the sampling was set up. + Each entry is a pair ``(samples, meta)`` where ``meta`` is the probe metadata as would be returned by + ``probe_metadata(probeset_id)``, and ``samples`` contains the recorded values. + + For example, if a probe was placed on a locset describing three positions, ``samples(handle)`` will + return a list of length `3`. In each element, each corresponding to a location in the locset, + you'll find a tuple containing ``metadata`` and ``data``, where ``metadata`` will be a string describing the location, + and ``data`` will (usually) be a ``numpy.ndarray``. An empty list will be returned if no output was recorded for the cell. For simulations that are distributed using MPI, handles associated with non-local cells will return an empty list. It is the responsibility of the caller to gather results over the ranks. - Each entry is a pair ``(samples, meta)`` where ``meta`` is the probe metadata as would be returned by - ``probe_metadata(probe_id)``, and ``samples`` contains the recorded values. - - The format of the recorded values will depend upon the specifics of the probe, though generally it will + The format of the recorded values (``data``) will depend upon the specifics of the probe, though generally it will be a NumPy array, with the first column corresponding to sample time and subsequent columns holding the value or values that were sampled from that probe at that time. + .. function:: progress_banner() + + Print a progress bar during simulation, with elapsed milliseconds and percentage of simulation completed. + **Types:** .. class:: binning @@ -207,7 +224,8 @@ over the local and distributed hardware resources (see :ref:`pydomdec`). Then, t Recording spikes ---------------- -By default, spikes are not recorded. Recording is enabled with the +Spikes are generated by various sources, including detectors and spike source +cells, but by default, spikes are not recorded. Recording is enabled with the :py:func:`simulation.record` method, which takes a single argument instructing the simulation object to record no spikes, all locally generated spikes, or all spikes generated by any MPI rank. @@ -259,44 +277,6 @@ Spikes recorded during a simulation are returned as a NumPy structured datatype Recording samples ----------------- -Definitions -*********** - -.. glossary:: - - probe - A measurement that can be performed on a cell. Each cell kind will have its own sorts of probe; - Cable cells (:py:attr:`arbor.cable_probe`) allow the monitoring of membrane voltage, total membrane - current, mechanism state, and a number of other quantities, measured either over the whole cell, - or at specific sites (see :ref:`pycablecell-probesample`). - - Probes are described by probe addresses, and the collection of probe addresses for a given cell is - provided by the :py:class:`recipe` object. One address may correspond to more than one probe: - as an example, a request for membrane voltage on a cable cell at sites specified by a location - expression will generate one probe for each site in that location expression. - - probe id - A designator for one or more probes as specified by a recipe. The *probe id* is a - :py:class:`cell_member` referring to a specific cell by gid, and the index into the list of - probe addresses returned by the recipe for that gid. - - metadata - Each probe has associated metadata describing, for example, the location on a cell where the - measurement is being taken, or other such identifying information. Metadata for the probes - associated with a :term:`probe id` can be retrieved from the simulation object, and is also provided - along with any recorded samples. - - sampler - A sampler is something that receives probe data. It amounts to setting a particular :term:`probe` to a - particular measuring schedule, and then having a handle with which to access the recorded probe data later on. - - sample - A record of data corresponding to the value at a specific *probe* at a specific time. - - schedule - An object representing a series of monotonically increasing points in time, used for determining - sample times (see :ref:`pyrecipe`). - Procedure ********* @@ -305,23 +285,23 @@ There are three parts to the process of recording cell data over a simulation. 1. Describing what to measure. The recipe object must provide a method :py:func:`recipe.probes` that returns a list of - probe addresses for the cell with a given ``gid``. The kth element of the list corresponds - to the :term:`probe id` ``(gid, k)``. + probeset addresses for the cell with a given ``gid``. The kth element of the list corresponds + to the :term:`probeset id` ``(gid, k)``. - Each probe address is an opaque object describing what to measure and where, and each cell kind + Each probeset address is an opaque object describing what to measure and where, and each cell kind will have its own set of functions for generating valid address specifications. Possible cable cell probes are described in the cable cell documentation: :ref:`pycablecell-probesample`. 2. Instructing the simulator to record data. Recording is set up with the method :py:func:`simulation.sample` - as described above. It returns a handle that is used to retrieve the recorded data after + as described above. It returns a :term:`handle` that is used to retrieve the recorded data after simulation. 3. Retrieve recorded data. - The method :py:func:`simulation.samples` takes a handle and returns the recorded data as a list, - with one entry for each probe associated with the :term:`probe id` that was used in step 2 above. Each + The method :py:func:`simulation.samples` takes a :term:`handle` and returns the recorded data as a list, + with one entry for each probe associated with the :term:`probeset id` that was used in step 2 above. Each entry will be a tuple ``(data, meta)`` where ``meta`` is the metadata associated with the probe, and ``data`` contains all the data sampled on that probe over the course of the simulation. @@ -346,7 +326,7 @@ Example sim = arbor.simulation(recipe, decomp, context) - # Sample probe id (0, 0) (first probe id on cell 0) every 0.1 ms with exact sample timing: + # Sample probeset id (0, 0) (first probeset id on cell 0) every 0.1 ms with exact sample timing: handle = sim.sample((0, 0), arbor.regular_schedule(0.1), arbor.sampling_policy.exact) diff --git a/doc/scripts/divio_docs_theme/layout.html b/doc/scripts/divio_docs_theme/layout.html index b19852c364..f13c2c154d 100755 --- a/doc/scripts/divio_docs_theme/layout.html +++ b/doc/scripts/divio_docs_theme/layout.html @@ -48,8 +48,12 @@ - {%- for cssfile in extra_css_files %} - + {%- for css in css_files %} + {%- if css|attr("rel") %} + + {%- else %} + + {%- endif %} {%- endfor %} {%- block linktags %} diff --git a/doc/scripts/gen-labels.py b/doc/scripts/gen-labels.py index cf8466f64e..69dd8e362f 100644 --- a/doc/scripts/gen-labels.py +++ b/doc/scripts/gen-labels.py @@ -4,84 +4,87 @@ import sys from math import sqrt + def is_collocated(l, r): - return l[0]==r[0] and l[1]==r[1] + return l[0] == r[0] and l[1] == r[1] + def write_morphology(name, morph): - string = 'tmp = ['.format(name) + string = "tmp = [" for i in range(morph.num_branches): - first = True - sections = '[' + last_dist = None + sections = "[" for seg in morph.branch_segments(i): - if not first: + if last_dist is not None: if is_collocated((seg.prox.x, seg.prox.y), (last_dist.x, last_dist.y)): - sections += ', ' + sections += ", " else: - sections += '], [' - - first = False + sections += "], [" p = seg.prox d = seg.dist - sections += 'Segment(({}, {}, {}), ({}, {}, {}), {})'.format(p.x, p.y, p.radius, d.x, d.y, d.radius, seg.tag) + sections += "Segment(({}, {}, {}), ({}, {}, {}), {})".format( + p.x, p.y, p.radius, d.x, d.y, d.radius, seg.tag + ) last_dist = seg.dist - sections += ']' + sections += "]" - string += '\n [{}],'.format(sections) - string += ']\n' - string += '{} = representation.make_morph(tmp)\n\n'.format(name) + string += "\n [{}],".format(sections) + string += "]\n" + string += "{} = representation.make_morph(tmp)\n\n".format(name) return string + # Describe the morphologies mnpos = arbor.mnpos # The morphology used for all of the region/locset illustrations label_tree = arbor.segment_tree() -label_tree.append(mnpos, mpoint(0, 0.0, 0, 2.0), mpoint( 4, 0.0, 0, 2.0), tag=1) -label_tree.append(0, mpoint(4, 0.0, 0, 0.8), mpoint( 8, 0.0, 0, 0.8), tag=3) -label_tree.append(1, mpoint(8, 0.0, 0, 0.8), mpoint(12, -0.5, 0, 0.8), tag=3) -label_tree.append(2, mpoint(12, -0.5, 0, 0.8), mpoint(20, 4.0, 0, 0.4), tag=3) -label_tree.append(3, mpoint(20, 4.0, 0, 0.4), mpoint(26, 6.0, 0, 0.2), tag=3) -label_tree.append(2, mpoint(12, -0.5, 0, 0.5), mpoint(19, -3.0, 0, 0.5), tag=3) -label_tree.append(5, mpoint(19, -3.0, 0, 0.5), mpoint(24, -7.0, 0, 0.2), tag=3) -label_tree.append(5, mpoint(19, -3.0, 0, 0.5), mpoint(23, -1.0, 0, 0.2), tag=3) -label_tree.append(7, mpoint(23, -1.0, 0, 0.2), mpoint(26, -2.0, 0, 0.2), tag=3) -label_tree.append(mnpos, mpoint(0, 0.0, 0, 2.0), mpoint(-7, 0.0, 0, 0.4), tag=2) -label_tree.append(9, mpoint(-7, 0.0, 0, 0.4), mpoint(-10, 0.0, 0, 0.4), tag=2) +label_tree.append(mnpos, mpoint(0, 0.0, 0, 2.0), mpoint(4, 0.0, 0, 2.0), tag=1) +label_tree.append(0, mpoint(4, 0.0, 0, 0.8), mpoint(8, 0.0, 0, 0.8), tag=3) +label_tree.append(1, mpoint(8, 0.0, 0, 0.8), mpoint(12, -0.5, 0, 0.8), tag=3) +label_tree.append(2, mpoint(12, -0.5, 0, 0.8), mpoint(20, 4.0, 0, 0.4), tag=3) +label_tree.append(3, mpoint(20, 4.0, 0, 0.4), mpoint(26, 6.0, 0, 0.2), tag=3) +label_tree.append(2, mpoint(12, -0.5, 0, 0.5), mpoint(19, -3.0, 0, 0.5), tag=3) +label_tree.append(5, mpoint(19, -3.0, 0, 0.5), mpoint(24, -7.0, 0, 0.2), tag=3) +label_tree.append(5, mpoint(19, -3.0, 0, 0.5), mpoint(23, -1.0, 0, 0.2), tag=3) +label_tree.append(7, mpoint(23, -1.0, 0, 0.2), mpoint(26, -2.0, 0, 0.2), tag=3) +label_tree.append(mnpos, mpoint(0, 0.0, 0, 2.0), mpoint(-7, 0.0, 0, 0.4), tag=2) +label_tree.append(9, mpoint(-7, 0.0, 0, 0.4), mpoint(-10, 0.0, 0, 0.4), tag=2) label_morph = arbor.morphology(label_tree) # The label morphology with some gaps (at start of dendritic tree and remove the axon hillock) label_tree = arbor.segment_tree() -label_tree.append(mnpos, mpoint(0, 0.0, 0, 2.0), mpoint( 4, 0.0, 0, 2.0), tag=1) -label_tree.append(0, mpoint(5, 0.0, 0, 0.8), mpoint( 8, 0.0, 0, 0.8), tag=3) -label_tree.append(1, mpoint(8, 0.0, 0, 0.8), mpoint(12, -0.5, 0, 0.8), tag=3) -label_tree.append(2, mpoint(12, -0.5, 0, 0.8), mpoint(20, 4.0, 0, 0.4), tag=3) -label_tree.append(3, mpoint(20, 4.0, 0, 0.4), mpoint(26, 6.0, 0, 0.2), tag=3) -label_tree.append(2, mpoint(12, -0.5, 0, 0.5), mpoint(19, -3.0, 0, 0.5), tag=3) -label_tree.append(5, mpoint(19, -3.0, 0, 0.5), mpoint(24, -7.0, 0, 0.2), tag=3) -label_tree.append(5, mpoint(19, -3.0, 0, 0.5), mpoint(23, -1.0, 0, 0.2), tag=3) -label_tree.append(7, mpoint(23, -1.0, 0, 0.2), mpoint(26, -2.0, 0, 0.2), tag=3) -label_tree.append(mnpos, mpoint(-2, 0.0, 0, 0.4), mpoint(-10, 0.0, 0, 0.4), tag=2) +label_tree.append(mnpos, mpoint(0, 0.0, 0, 2.0), mpoint(4, 0.0, 0, 2.0), tag=1) +label_tree.append(0, mpoint(5, 0.0, 0, 0.8), mpoint(8, 0.0, 0, 0.8), tag=3) +label_tree.append(1, mpoint(8, 0.0, 0, 0.8), mpoint(12, -0.5, 0, 0.8), tag=3) +label_tree.append(2, mpoint(12, -0.5, 0, 0.8), mpoint(20, 4.0, 0, 0.4), tag=3) +label_tree.append(3, mpoint(20, 4.0, 0, 0.4), mpoint(26, 6.0, 0, 0.2), tag=3) +label_tree.append(2, mpoint(12, -0.5, 0, 0.5), mpoint(19, -3.0, 0, 0.5), tag=3) +label_tree.append(5, mpoint(19, -3.0, 0, 0.5), mpoint(24, -7.0, 0, 0.2), tag=3) +label_tree.append(5, mpoint(19, -3.0, 0, 0.5), mpoint(23, -1.0, 0, 0.2), tag=3) +label_tree.append(7, mpoint(23, -1.0, 0, 0.2), mpoint(26, -2.0, 0, 0.2), tag=3) +label_tree.append(mnpos, mpoint(-2, 0.0, 0, 0.4), mpoint(-10, 0.0, 0, 0.4), tag=2) detached_morph = arbor.morphology(label_tree) # soma with "stacked cylinders" stacked_tree = arbor.segment_tree() -stacked_tree.append(mnpos, mpoint(0, 0.0, 0, 0.5), mpoint( 1, 0.0, 0, 1.5), tag=1) -stacked_tree.append(0, mpoint(1, 0.0, 0, 1.5), mpoint( 2, 0.0, 0, 2.5), tag=1) -stacked_tree.append(1, mpoint(2, 0.0, 0, 2.5), mpoint( 3, 0.0, 0, 2.5), tag=1) -stacked_tree.append(2, mpoint(3, 0.0, 0, 2.5), mpoint( 4, 0.0, 0, 1.2), tag=1) -stacked_tree.append(3, mpoint(4, 0.0, 0, 0.8), mpoint( 8, 0.0, 0, 0.8), tag=3) -stacked_tree.append(4, mpoint(8, 0.0, 0, 0.8), mpoint(12, -0.5, 0, 0.8), tag=3) -stacked_tree.append(5, mpoint(12, -0.5, 0, 0.8), mpoint(20, 4.0, 0, 0.4), tag=3) -stacked_tree.append(6, mpoint(20, 4.0, 0, 0.4), mpoint(26, 6.0, 0, 0.2), tag=3) -stacked_tree.append(5, mpoint(12, -0.5, 0, 0.5), mpoint(19, -3.0, 0, 0.5), tag=3) -stacked_tree.append(8, mpoint(19, -3.0, 0, 0.5), mpoint(24, -7.0, 0, 0.2), tag=3) -stacked_tree.append(8, mpoint(19, -3.0, 0, 0.5), mpoint(23, -1.0, 0, 0.2), tag=3) -stacked_tree.append(10, mpoint(23, -1.0, 0, 0.2), mpoint(26, -2.0, 0, 0.2), tag=3) -stacked_tree.append(mnpos, mpoint(0, 0.0, 0, 0.4), mpoint(-7, 0.0, 0, 0.4), tag=2) -stacked_tree.append(12, mpoint(-7, 0.0, 0, 0.4), mpoint(-10, 0.0, 0, 0.4), tag=2) +stacked_tree.append(mnpos, mpoint(0, 0.0, 0, 0.5), mpoint(1, 0.0, 0, 1.5), tag=1) +stacked_tree.append(0, mpoint(1, 0.0, 0, 1.5), mpoint(2, 0.0, 0, 2.5), tag=1) +stacked_tree.append(1, mpoint(2, 0.0, 0, 2.5), mpoint(3, 0.0, 0, 2.5), tag=1) +stacked_tree.append(2, mpoint(3, 0.0, 0, 2.5), mpoint(4, 0.0, 0, 1.2), tag=1) +stacked_tree.append(3, mpoint(4, 0.0, 0, 0.8), mpoint(8, 0.0, 0, 0.8), tag=3) +stacked_tree.append(4, mpoint(8, 0.0, 0, 0.8), mpoint(12, -0.5, 0, 0.8), tag=3) +stacked_tree.append(5, mpoint(12, -0.5, 0, 0.8), mpoint(20, 4.0, 0, 0.4), tag=3) +stacked_tree.append(6, mpoint(20, 4.0, 0, 0.4), mpoint(26, 6.0, 0, 0.2), tag=3) +stacked_tree.append(5, mpoint(12, -0.5, 0, 0.5), mpoint(19, -3.0, 0, 0.5), tag=3) +stacked_tree.append(8, mpoint(19, -3.0, 0, 0.5), mpoint(24, -7.0, 0, 0.2), tag=3) +stacked_tree.append(8, mpoint(19, -3.0, 0, 0.5), mpoint(23, -1.0, 0, 0.2), tag=3) +stacked_tree.append(10, mpoint(23, -1.0, 0, 0.2), mpoint(26, -2.0, 0, 0.2), tag=3) +stacked_tree.append(mnpos, mpoint(0, 0.0, 0, 0.4), mpoint(-7, 0.0, 0, 0.4), tag=2) +stacked_tree.append(12, mpoint(-7, 0.0, 0, 0.4), mpoint(-10, 0.0, 0, 0.4), tag=2) stacked_morph = arbor.morphology(stacked_tree) @@ -97,122 +100,124 @@ def write_morphology(name, morph): # single branch: multiple segments, continuous radius tree = arbor.segment_tree() -tree.append(mnpos, mpoint( 0.0, 0.0, 0.0, 1.0), mpoint( 3.0, 0.2, 0.0, 0.8), tag=1) -tree.append(0, mpoint( 3.0, 0.2, 0.0, 0.8), mpoint( 5.0, -0.1, 0.0, 0.7), tag=2) -tree.append(1, mpoint( 5.0, -0.1, 0.0, 0.7), mpoint( 8.0, 0.0, 0.0, 0.6), tag=2) -tree.append(2, mpoint( 8.0, 0.0, 0.0, 0.6), mpoint(10.0, 0.0, 0.0, 0.5), tag=3) +tree.append(mnpos, mpoint(0.0, 0.0, 0.0, 1.0), mpoint(3.0, 0.2, 0.0, 0.8), tag=1) +tree.append(0, mpoint(3.0, 0.2, 0.0, 0.8), mpoint(5.0, -0.1, 0.0, 0.7), tag=2) +tree.append(1, mpoint(5.0, -0.1, 0.0, 0.7), mpoint(8.0, 0.0, 0.0, 0.6), tag=2) +tree.append(2, mpoint(8.0, 0.0, 0.0, 0.6), mpoint(10.0, 0.0, 0.0, 0.5), tag=3) branch_morph2 = arbor.morphology(tree) # single branch: multiple segments, gaps tree = arbor.segment_tree() -tree.append(mnpos, mpoint( 0.0, 0.0, 0.0, 1.0), mpoint(3.0, 0.2, 0.0, 0.8), tag=1) -tree.append(0, mpoint( 3.0, 0.2, 0.0, 0.8), mpoint(5.0, -0.1, 0.0, 0.7), tag=2) -tree.append(1, mpoint( 6.0, -0.1, 0.0, 0.7), mpoint(9.0, 0.0, 0.0, 0.6), tag=2) -tree.append(2, mpoint( 9.0, 0.0, 0.0, 0.6), mpoint(11.0, 0.0, 0.0, 0.5), tag=3) +tree.append(mnpos, mpoint(0.0, 0.0, 0.0, 1.0), mpoint(3.0, 0.2, 0.0, 0.8), tag=1) +tree.append(0, mpoint(3.0, 0.2, 0.0, 0.8), mpoint(5.0, -0.1, 0.0, 0.7), tag=2) +tree.append(1, mpoint(6.0, -0.1, 0.0, 0.7), mpoint(9.0, 0.0, 0.0, 0.6), tag=2) +tree.append(2, mpoint(9.0, 0.0, 0.0, 0.6), mpoint(11.0, 0.0, 0.0, 0.5), tag=3) branch_morph3 = arbor.morphology(tree) # single branch: multiple segments, discontinuous radius tree = arbor.segment_tree() -tree.append(mnpos, mpoint( 0.0, 0.0, 0.0, 1.0), mpoint( 3.0, 0.2, 0.0, 0.8), tag=1) -tree.append(0, mpoint( 3.0, 0.2, 0.0, 0.8), mpoint( 5.0, -0.1, 0.0, 0.7), tag=2) -tree.append(1, mpoint( 5.0, -0.1, 0.0, 0.7), mpoint( 8.0, 0.0, 0.0, 0.5), tag=2) -tree.append(2, mpoint( 8.0, 0.0, 0.0, 0.3), mpoint(10.0, 0.0, 0.0, 0.5), tag=3) +tree.append(mnpos, mpoint(0.0, 0.0, 0.0, 1.0), mpoint(3.0, 0.2, 0.0, 0.8), tag=1) +tree.append(0, mpoint(3.0, 0.2, 0.0, 0.8), mpoint(5.0, -0.1, 0.0, 0.7), tag=2) +tree.append(1, mpoint(5.0, -0.1, 0.0, 0.7), mpoint(8.0, 0.0, 0.0, 0.5), tag=2) +tree.append(2, mpoint(8.0, 0.0, 0.0, 0.3), mpoint(10.0, 0.0, 0.0, 0.5), tag=3) branch_morph4 = arbor.morphology(tree) tree = arbor.segment_tree() -tree.append(mnpos, mpoint( 0.0, 0.0, 0.0, 1.0), mpoint(10.0, 0.0, 0.0, 0.5), tag= 3) -tree.append(0, mpoint(15.0, 3.0, 0.0, 0.2), tag= 3) -tree.append(0, mpoint(15.0,-3.0, 0.0, 0.2), tag= 3) +tree.append(mnpos, mpoint(0.0, 0.0, 0.0, 1.0), mpoint(10.0, 0.0, 0.0, 0.5), tag=3) +tree.append(0, mpoint(15.0, 3.0, 0.0, 0.2), tag=3) +tree.append(0, mpoint(15.0, -3.0, 0.0, 0.2), tag=3) yshaped_morph = arbor.morphology(tree) tree = arbor.segment_tree() -tree.append(mnpos, mpoint(-3.0, 0.0, 0.0, 3.0), mpoint( 3.0, 0.0, 0.0, 3.0), tag=1) -tree.append(0, mpoint( 4.0, -1.0, 0.0, 0.6), mpoint(10.0, -2.0, 0.0, 0.5), tag=3) -tree.append(1, mpoint(15.0, -1.0, 0.0, 0.5), tag=3) -tree.append(2, mpoint(18.0, -5.0, 0.0, 0.3), tag=3) -tree.append(2, mpoint(20.0, 2.0, 0.0, 0.3), tag=3) +tree.append(mnpos, mpoint(-3.0, 0.0, 0.0, 3.0), mpoint(3.0, 0.0, 0.0, 3.0), tag=1) +tree.append(0, mpoint(4.0, -1.0, 0.0, 0.6), mpoint(10.0, -2.0, 0.0, 0.5), tag=3) +tree.append(1, mpoint(15.0, -1.0, 0.0, 0.5), tag=3) +tree.append(2, mpoint(18.0, -5.0, 0.0, 0.3), tag=3) +tree.append(2, mpoint(20.0, 2.0, 0.0, 0.3), tag=3) ysoma_morph1 = arbor.morphology(tree) tree = arbor.segment_tree() -tree.append(mnpos, mpoint(-3.0, 0.0, 0.0, 3.0), mpoint( 3.0, 0.0, 0.0, 3.0), tag=1) -tree.append(0, mpoint( 4.0, -1.0, 0.0, 0.6), mpoint(10.0,-2.0, 0.0, 0.5), tag=3) -tree.append(1, mpoint(15.0, -1.0, 0.0, 0.5), tag= 3) -tree.append(2, mpoint(18.0, -5.0, 0.0, 0.3), tag= 3) -tree.append(2, mpoint(20.0, 2.0, 0.0, 0.3), tag= 3) -tree.append(0, mpoint( 2.0, 1.0, 0.0, 0.6), mpoint(12.0, 4.0, 0.0, 0.5), tag=3) -tree.append(5, mpoint(18.0, 4.0, 0.0, 0.3), tag= 3) -tree.append(5, mpoint(16.0, 9.0, 0.0, 0.1), tag= 3) -tree.append(mnpos, mpoint(-3.5, 0.0, 0.0, 1.5), mpoint(-6.0,-0.2, 0.0, 0.5), tag=2) -tree.append(8, mpoint(-15.0,-0.1, 0.0, 0.5), tag=2) +tree.append(mnpos, mpoint(-3.0, 0.0, 0.0, 3.0), mpoint(3.0, 0.0, 0.0, 3.0), tag=1) +tree.append(0, mpoint(4.0, -1.0, 0.0, 0.6), mpoint(10.0, -2.0, 0.0, 0.5), tag=3) +tree.append(1, mpoint(15.0, -1.0, 0.0, 0.5), tag=3) +tree.append(2, mpoint(18.0, -5.0, 0.0, 0.3), tag=3) +tree.append(2, mpoint(20.0, 2.0, 0.0, 0.3), tag=3) +tree.append(0, mpoint(2.0, 1.0, 0.0, 0.6), mpoint(12.0, 4.0, 0.0, 0.5), tag=3) +tree.append(5, mpoint(18.0, 4.0, 0.0, 0.3), tag=3) +tree.append(5, mpoint(16.0, 9.0, 0.0, 0.1), tag=3) +tree.append(mnpos, mpoint(-3.5, 0.0, 0.0, 1.5), mpoint(-6.0, -0.2, 0.0, 0.5), tag=2) +tree.append(8, mpoint(-15.0, -0.1, 0.0, 0.5), tag=2) ysoma_morph2 = arbor.morphology(tree) tree = arbor.segment_tree() -tree.append(mnpos, mpoint(-3.0, 0.0, 0.0, 3.0), mpoint( 3.0, 0.0, 0.0, 3.0), tag=1) -tree.append(0, mpoint( 3.0, 0.0, 0.0, 0.6), mpoint(9.0,-1.0, 0.0, 0.5), tag=3) -tree.append(1, mpoint(14.0, 0.0, 0.0, 0.5), tag= 3) -tree.append(2, mpoint(17.0, -4.0, 0.0, 0.3), tag= 3) -tree.append(2, mpoint(19.0, 3.0, 0.0, 0.3), tag= 3) -tree.append(0, mpoint( 3.0, 0.0, 0.0, 0.6), mpoint(13.0, 3.0, 0.0, 0.5), tag=3) -tree.append(5, mpoint(19.0, 3.0, 0.0, 0.3), tag= 3) -tree.append(5, mpoint(17.0, 8.0, 0.0, 0.1), tag= 3) -tree.append(mnpos, mpoint(-3.0, 0.0, 0.0, 1.5), mpoint(-5.5,-0.2, 0.0, 0.5), tag=2) -tree.append(8, mpoint(-14.5,-0.1, 0.0, 0.5), tag=2) +tree.append(mnpos, mpoint(-3.0, 0.0, 0.0, 3.0), mpoint(3.0, 0.0, 0.0, 3.0), tag=1) +tree.append(0, mpoint(3.0, 0.0, 0.0, 0.6), mpoint(9.0, -1.0, 0.0, 0.5), tag=3) +tree.append(1, mpoint(14.0, 0.0, 0.0, 0.5), tag=3) +tree.append(2, mpoint(17.0, -4.0, 0.0, 0.3), tag=3) +tree.append(2, mpoint(19.0, 3.0, 0.0, 0.3), tag=3) +tree.append(0, mpoint(3.0, 0.0, 0.0, 0.6), mpoint(13.0, 3.0, 0.0, 0.5), tag=3) +tree.append(5, mpoint(19.0, 3.0, 0.0, 0.3), tag=3) +tree.append(5, mpoint(17.0, 8.0, 0.0, 0.1), tag=3) +tree.append(mnpos, mpoint(-3.0, 0.0, 0.0, 1.5), mpoint(-5.5, -0.2, 0.0, 0.5), tag=2) +tree.append(8, mpoint(-14.5, -0.1, 0.0, 0.5), tag=2) ysoma_morph3 = arbor.morphology(tree) -fn = os.path.realpath(os.path.join(os.getcwd(), os.path.dirname(__file__), "../fileformat/example.swc")) +fn = os.path.realpath( + os.path.join(os.getcwd(), os.path.dirname(__file__), "../fileformat/example.swc") +) swc_morph = arbor.load_swc_arbor(fn) -regions = { - 'empty': '(region-nil)', - 'all': '(all)', - 'tag1': '(tag 1)', - 'tag2': '(tag 2)', - 'tag3': '(tag 3)', - 'tag4': '(tag 4)', - 'soma': '(region "tag1")', - 'axon': '(region "tag2")', - 'dend': '(join (region "tag3") (region "tag4"))', - 'radlt5': '(radius-lt (all) 0.5)', - 'radle5': '(radius-le (all) 0.5)', - 'radgt5': '(radius-gt (all) 0.5)', - 'radge5': '(radius-ge (all) 0.5)', - 'rad36': '(intersect (radius-gt (all) 0.3) (radius-lt (all) 0.6))', - 'branch0': '(branch 0)', - 'branch3': '(branch 3)', - 'segment0': '(segment 0)', - 'segment3': '(segment 3)', - 'cable_0_28': '(cable 0 0.2 0.8)', - 'cable_1_01': '(cable 1 0 1)', - 'cable_1_31': '(cable 1 0.3 1)', - 'cable_1_37': '(cable 1 0.3 0.7)', - 'proxint': '(proximal-interval (locset "proxint_in") 5)', - 'proxintinf': '(proximal-interval (locset "proxint_in"))', - 'distint': '(distal-interval (locset "distint_in") 5)', - 'distintinf': '(distal-interval (locset "distint_in"))', - 'lhs' : '(join (cable 0 0.5 1) (cable 1 0 0.5))', - 'rhs' : '(branch 1)', - 'and': '(intersect (region "lhs") (region "rhs"))', - 'or': '(join (region "lhs") (region "rhs"))', - } +regions = { + "empty": "(region-nil)", + "all": "(all)", + "tag1": "(tag 1)", + "tag2": "(tag 2)", + "tag3": "(tag 3)", + "tag4": "(tag 4)", + "soma": '(region "tag1")', + "axon": '(region "tag2")', + "dend": '(join (region "tag3") (region "tag4"))', + "radlt5": "(radius-lt (all) 0.5)", + "radle5": "(radius-le (all) 0.5)", + "radgt5": "(radius-gt (all) 0.5)", + "radge5": "(radius-ge (all) 0.5)", + "rad36": "(intersect (radius-gt (all) 0.3) (radius-lt (all) 0.6))", + "branch0": "(branch 0)", + "branch3": "(branch 3)", + "segment0": "(segment 0)", + "segment3": "(segment 3)", + "cable_0_28": "(cable 0 0.2 0.8)", + "cable_1_01": "(cable 1 0 1)", + "cable_1_31": "(cable 1 0.3 1)", + "cable_1_37": "(cable 1 0.3 0.7)", + "proxint": '(proximal-interval (locset "proxint_in") 5)', + "proxintinf": '(proximal-interval (locset "proxint_in"))', + "distint": '(distal-interval (locset "distint_in") 5)', + "distintinf": '(distal-interval (locset "distint_in"))', + "lhs": "(join (cable 0 0.5 1) (cable 1 0 0.5))", + "rhs": "(branch 1)", + "and": '(intersect (region "lhs") (region "rhs"))', + "or": '(join (region "lhs") (region "rhs"))', +} locsets = { - 'root': '(root)', - 'term': '(terminal)', - 'rand_dend': '(uniform (region "dend") 0 50 0)', - 'loc15': '(location 1 0.5)', - 'loc05': '(location 0 0.5)', - 'uniform0': '(uniform (tag 3) 0 9 0)', - 'uniform1': '(uniform (tag 3) 0 9 1)', - 'branchmid': '(on-branches 0.5)', - 'distal': '(distal (region "rad36"))', - 'proximal':'(proximal (region "rad36"))', - 'distint_in': '(sum (location 1 0.5) (location 2 0.7) (location 5 0.1))', - 'proxint_in': '(sum (location 1 0.8) (location 2 0.3))', - 'loctest' : '(distal (complete (join (branch 1) (branch 0))))', - 'restrict': '(restrict (terminal) (tag 3))', - 'proximal_translate': '(proximal-translate (terminal) 10)', - 'distal_translate_single': '(distal-translate (location 0 0.5) 5)', - 'distal_translate_multi': '(distal-translate (location 0 0.5) 15)', - } + "root": "(root)", + "term": "(terminal)", + "rand_dend": '(uniform (region "dend") 0 50 0)', + "loc15": "(location 1 0.5)", + "loc05": "(location 0 0.5)", + "uniform0": "(uniform (tag 3) 0 9 0)", + "uniform1": "(uniform (tag 3) 0 9 1)", + "branchmid": "(on-branches 0.5)", + "distal": '(distal (region "rad36"))', + "proximal": '(proximal (region "rad36"))', + "distint_in": "(sum (location 1 0.5) (location 2 0.7) (location 5 0.1))", + "proxint_in": "(sum (location 1 0.8) (location 2 0.3))", + "loctest": "(distal (complete (join (branch 1) (branch 0))))", + "restrict": "(restrict (terminal) (tag 3))", + "proximal_translate": "(proximal-translate (terminal) 10)", + "distal_translate_single": "(distal-translate (location 0 0.5) 5)", + "distal_translate_multi": "(distal-translate (location 0 0.5) 15)", +} labels = {**regions, **locsets} d = arbor.label_dict(labels) @@ -225,34 +230,33 @@ def write_morphology(name, morph): ############################################################################### tree = arbor.segment_tree() -tree.append(mnpos, mpoint(0, 0.0, 0, 2.0), mpoint( 4, 0.0, 0, 2.0), tag=1) -tree.append(0, mpoint(4, 0.0, 0, 0.8), mpoint( 8, 0.0, 0, 0.8), tag=3) -tree.append(1, mpoint(8, 0.0, 0, 0.8), mpoint(12, -0.5, 0, 0.8), tag=3) -tree.append(2, mpoint(12, -0.5, 0, 0.8), mpoint(20, 4.0, 0, 0.4), tag=3) -tree.append(3, mpoint(20, 4.0, 0, 0.4), mpoint(26, 6.0, 0, 0.2), tag=3) -tree.append(2, mpoint(12, -0.5, 0, 0.5), mpoint(19, -3.0, 0, 0.5), tag=3) -tree.append(5, mpoint(19, -3.0, 0, 0.5), mpoint(24, -7.0, 0, 0.2), tag=4) -tree.append(5, mpoint(19, -3.0, 0, 0.5), mpoint(23, -1.0, 0, 0.2), tag=4) -tree.append(7, mpoint(23, -1.0, 0, 0.2), mpoint(36, -2.0, 0, 0.2), tag=4) -tree.append(mnpos, mpoint(0, 0.0, 0, 2.0), mpoint(-7, 0.0, 0, 0.4), tag=2) -tree.append(9, mpoint(-7, 0.0, 0, 0.4), mpoint(-10, 0.0, 0, 0.4), tag=2) +tree.append(mnpos, mpoint(0, 0.0, 0, 2.0), mpoint(4, 0.0, 0, 2.0), tag=1) +tree.append(0, mpoint(4, 0.0, 0, 0.8), mpoint(8, 0.0, 0, 0.8), tag=3) +tree.append(1, mpoint(8, 0.0, 0, 0.8), mpoint(12, -0.5, 0, 0.8), tag=3) +tree.append(2, mpoint(12, -0.5, 0, 0.8), mpoint(20, 4.0, 0, 0.4), tag=3) +tree.append(3, mpoint(20, 4.0, 0, 0.4), mpoint(26, 6.0, 0, 0.2), tag=3) +tree.append(2, mpoint(12, -0.5, 0, 0.5), mpoint(19, -3.0, 0, 0.5), tag=3) +tree.append(5, mpoint(19, -3.0, 0, 0.5), mpoint(24, -7.0, 0, 0.2), tag=4) +tree.append(5, mpoint(19, -3.0, 0, 0.5), mpoint(23, -1.0, 0, 0.2), tag=4) +tree.append(7, mpoint(23, -1.0, 0, 0.2), mpoint(36, -2.0, 0, 0.2), tag=4) +tree.append(mnpos, mpoint(0, 0.0, 0, 2.0), mpoint(-7, 0.0, 0, 0.4), tag=2) +tree.append(9, mpoint(-7, 0.0, 0, 0.4), mpoint(-10, 0.0, 0, 0.4), tag=2) tutorial_morph = arbor.morphology(tree) -tutorial_regions = { - 'all': '(all)', - 'soma': '(tag 1)', - 'axon': '(tag 2)', - 'dend': '(tag 3)', - 'last': '(tag 4)', - 'rad_gt': '(radius-ge (region "all") 1.5)', - 'custom': '(join (region "last") (region "rad_gt"))' +tutorial_regions = { + "all": "(all)", + "soma": "(tag 1)", + "axon": "(tag 2)", + "dend": "(tag 3)", + "last": "(tag 4)", + "rad_gt": '(radius-ge (region "all") 1.5)', + "custom": '(join (region "last") (region "rad_gt"))', } tutorial_locsets = { - 'root': '(root)', - 'terminal': '(terminal)', - 'custom_terminal': '(restrict (locset "terminal") (region "custom"))', - 'axon_terminal': '(restrict (locset "terminal") (region "axon"))' - + "root": "(root)", + "terminal": "(terminal)", + "custom_terminal": '(restrict (locset "terminal") (region "custom"))', + "axon_terminal": '(restrict (locset "terminal") (region "axon"))', } tutorial_labels = {**tutorial_regions, **tutorial_locsets} @@ -266,79 +270,106 @@ def write_morphology(name, morph): ############################################################################### tree = arbor.segment_tree() -s = tree.append(arbor.mnpos, arbor.mpoint(-12, 0, 0, 6), arbor.mpoint(0, 0, 0, 6), tag=1) +s = tree.append( + arbor.mnpos, arbor.mpoint(-12, 0, 0, 6), arbor.mpoint(0, 0, 0, 6), tag=1 +) b0 = tree.append(s, arbor.mpoint(0, 0, 0, 2), arbor.mpoint(50, 0, 0, 2), tag=3) -b1 = tree.append(b0, arbor.mpoint(50, 0, 0, 2), arbor.mpoint(50+50/sqrt(2), 50/sqrt(2), 0, 0.5), tag=3) -b2 = tree.append(b0, arbor.mpoint(50, 0, 0, 1), arbor.mpoint(50+50/sqrt(2), -50/sqrt(2), 0, 1), tag=3) +b1 = tree.append( + b0, + arbor.mpoint(50, 0, 0, 2), + arbor.mpoint(50 + 50 / sqrt(2), 50 / sqrt(2), 0, 0.5), + tag=3, +) +b2 = tree.append( + b0, + arbor.mpoint(50, 0, 0, 1), + arbor.mpoint(50 + 50 / sqrt(2), -50 / sqrt(2), 0, 1), + tag=3, +) tutorial_network_ring_morph = arbor.morphology(tree) -tutorial_network_ring_regions = { - 'soma': '(tag 1)', - 'dend': '(tag 3)' +tutorial_network_ring_regions = {"soma": "(tag 1)", "dend": "(tag 3)"} +tutorial_network_ring_locsets = {"synapse_site": "(location 1 0.5)", "root": "(root)"} +tutorial_network_ring_labels = { + **tutorial_network_ring_regions, + **tutorial_network_ring_locsets, } -tutorial_network_ring_locsets = { - 'synapse_site': '(location 1 0.5)', - 'root': '(root)' -} -tutorial_network_ring_labels = {**tutorial_network_ring_regions, **tutorial_network_ring_locsets} tutorial_network_ring_dict = arbor.label_dict(tutorial_network_ring_labels) # Create a cell to concretise the region and locset definitions -tutorial_network_ring_cell = arbor.cable_cell(tutorial_network_ring_morph, tutorial_network_ring_dict, arbor.decor()) +tutorial_network_ring_cell = arbor.cable_cell( + tutorial_network_ring_morph, tutorial_network_ring_dict, arbor.decor() +) ################################################################################ # Output all of the morphologies and region/locset definitions to a Python script # that can be run during the documentation build to generate images. ################################################################################ -f = open(sys.argv[1] + '/inputs.py', 'w') -f.write('import representation\n') -f.write('from representation import Segment\n') - -f.write('\n############# morphologies\n\n') -f.write(write_morphology('label_morph', label_morph)) -f.write(write_morphology('detached_morph', detached_morph)) -f.write(write_morphology('stacked_morph', stacked_morph)) -f.write(write_morphology('sphere_morph', sphere_morph)) -f.write(write_morphology('branch_morph1', branch_morph1)) -f.write(write_morphology('branch_morph2', branch_morph2)) -f.write(write_morphology('branch_morph3', branch_morph3)) -f.write(write_morphology('branch_morph4', branch_morph4)) -f.write(write_morphology('yshaped_morph', yshaped_morph)) -f.write(write_morphology('ysoma_morph1', ysoma_morph1)) -f.write(write_morphology('ysoma_morph2', ysoma_morph2)) -f.write(write_morphology('ysoma_morph3', ysoma_morph3)) -f.write(write_morphology('tutorial_morph', tutorial_morph)) -f.write(write_morphology('swc_morph', swc_morph)) -f.write(write_morphology('tutorial_network_ring_morph', tutorial_network_ring_morph)) - -f.write('\n############# locsets (label_morph)\n\n') +f = open(sys.argv[1] + "/inputs.py", "w") +f.write("import representation\n") +f.write("from representation import Segment\n") + +f.write("\n############# morphologies\n\n") +f.write(write_morphology("label_morph", label_morph)) +f.write(write_morphology("detached_morph", detached_morph)) +f.write(write_morphology("stacked_morph", stacked_morph)) +f.write(write_morphology("sphere_morph", sphere_morph)) +f.write(write_morphology("branch_morph1", branch_morph1)) +f.write(write_morphology("branch_morph2", branch_morph2)) +f.write(write_morphology("branch_morph3", branch_morph3)) +f.write(write_morphology("branch_morph4", branch_morph4)) +f.write(write_morphology("yshaped_morph", yshaped_morph)) +f.write(write_morphology("ysoma_morph1", ysoma_morph1)) +f.write(write_morphology("ysoma_morph2", ysoma_morph2)) +f.write(write_morphology("ysoma_morph3", ysoma_morph3)) +f.write(write_morphology("tutorial_morph", tutorial_morph)) +f.write(write_morphology("swc_morph", swc_morph)) +f.write(write_morphology("tutorial_network_ring_morph", tutorial_network_ring_morph)) + +f.write("\n############# locsets (label_morph)\n\n") for label in locsets: locs = [(l.branch, l.pos) for l in cell.locations('"{}"'.format(label))] - f.write('ls_{} = {{\'type\': \'locset\', \'value\': {}}}\n'.format(label, locs)) + f.write("ls_{} = {{'type': 'locset', 'value': {}}}\n".format(label, locs)) -f.write('\n############# regions (label_morph)\n\n') +f.write("\n############# regions (label_morph)\n\n") for label in regions: comps = [(c.branch, c.prox, c.dist) for c in cell.cables('"{}"'.format(label))] - f.write('reg_{} = {{\'type\': \'region\', \'value\': {}}}\n'.format(label, comps)) + f.write("reg_{} = {{'type': 'region', 'value': {}}}\n".format(label, comps)) -f.write('\n############# locsets (tutorial_morph)\n\n') +f.write("\n############# locsets (tutorial_morph)\n\n") for label in tutorial_locsets: locs = [(l.branch, l.pos) for l in tutorial_cell.locations('"{}"'.format(label))] - f.write('tut_ls_{} = {{\'type\': \'locset\', \'value\': {}}}\n'.format(label, locs)) + f.write("tut_ls_{} = {{'type': 'locset', 'value': {}}}\n".format(label, locs)) -f.write('\n############# regions (tutorial_morph)\n\n') +f.write("\n############# regions (tutorial_morph)\n\n") for label in tutorial_regions: - comps = [(c.branch, c.prox, c.dist) for c in tutorial_cell.cables('"{}"'.format(label))] - f.write('tut_reg_{} = {{\'type\': \'region\', \'value\': {}}}\n'.format(label, comps)) + comps = [ + (c.branch, c.prox, c.dist) for c in tutorial_cell.cables('"{}"'.format(label)) + ] + f.write("tut_reg_{} = {{'type': 'region', 'value': {}}}\n".format(label, comps)) -f.write('\n############# locsets (tutorial_network_ring_morph)\n\n') +f.write("\n############# locsets (tutorial_network_ring_morph)\n\n") for label in tutorial_network_ring_locsets: - locs = [(l.branch, l.pos) for l in tutorial_network_ring_cell.locations('"{}"'.format(label))] - f.write('tut_network_ring_ls_{} = {{\'type\': \'locset\', \'value\': {}}}\n'.format(label, locs)) - -f.write('\n############# regions (tutorial_network_ring_morph)\n\n') + locs = [ + (l.branch, l.pos) + for l in tutorial_network_ring_cell.locations('"{}"'.format(label)) + ] + f.write( + "tut_network_ring_ls_{} = {{'type': 'locset', 'value': {}}}\n".format( + label, locs + ) + ) + +f.write("\n############# regions (tutorial_network_ring_morph)\n\n") for label in tutorial_network_ring_regions: - comps = [(c.branch, c.prox, c.dist) for c in tutorial_network_ring_cell.cables('"{}"'.format(label))] - f.write('tut_network_ring_reg_{} = {{\'type\': \'region\', \'value\': {}}}\n'.format(label, comps)) + comps = [ + (c.branch, c.prox, c.dist) + for c in tutorial_network_ring_cell.cables('"{}"'.format(label)) + ] + f.write( + "tut_network_ring_reg_{} = {{'type': 'region', 'value': {}}}\n".format( + label, comps + ) + ) f.close() diff --git a/doc/scripts/inputs.py b/doc/scripts/inputs.py index da750d9ee6..de2ea3cd6c 100644 --- a/doc/scripts/inputs.py +++ b/doc/scripts/inputs.py @@ -4,183 +4,583 @@ ############# morphologies tmp = [ - [[Segment((0.0, 0.0, 2.0), (4.0, 0.0, 2.0), 1), Segment((4.0, 0.0, 0.8), (8.0, 0.0, 0.8), 3), Segment((8.0, 0.0, 0.8), (12.0, -0.5, 0.8), 3)]], - [[Segment((12.0, -0.5, 0.8), (20.0, 4.0, 0.4), 3), Segment((20.0, 4.0, 0.4), (26.0, 6.0, 0.2), 3)]], + [ + [ + Segment((0.0, 0.0, 2.0), (4.0, 0.0, 2.0), 1), + Segment((4.0, 0.0, 0.8), (8.0, 0.0, 0.8), 3), + Segment((8.0, 0.0, 0.8), (12.0, -0.5, 0.8), 3), + ] + ], + [ + [ + Segment((12.0, -0.5, 0.8), (20.0, 4.0, 0.4), 3), + Segment((20.0, 4.0, 0.4), (26.0, 6.0, 0.2), 3), + ] + ], [[Segment((12.0, -0.5, 0.5), (19.0, -3.0, 0.5), 3)]], [[Segment((19.0, -3.0, 0.5), (24.0, -7.0, 0.2), 3)]], - [[Segment((19.0, -3.0, 0.5), (23.0, -1.0, 0.2), 3), Segment((23.0, -1.0, 0.2), (26.0, -2.0, 0.2), 3)]], - [[Segment((0.0, 0.0, 2.0), (-7.0, 0.0, 0.4), 2), Segment((-7.0, 0.0, 0.4), (-10.0, 0.0, 0.4), 2)]],] + [ + [ + Segment((19.0, -3.0, 0.5), (23.0, -1.0, 0.2), 3), + Segment((23.0, -1.0, 0.2), (26.0, -2.0, 0.2), 3), + ] + ], + [ + [ + Segment((0.0, 0.0, 2.0), (-7.0, 0.0, 0.4), 2), + Segment((-7.0, 0.0, 0.4), (-10.0, 0.0, 0.4), 2), + ] + ], +] label_morph = representation.make_morph(tmp) tmp = [ - [[Segment((0.0, 0.0, 2.0), (4.0, 0.0, 2.0), 1)], [Segment((5.0, 0.0, 0.8), (8.0, 0.0, 0.8), 3), Segment((8.0, 0.0, 0.8), (12.0, -0.5, 0.8), 3)]], - [[Segment((12.0, -0.5, 0.8), (20.0, 4.0, 0.4), 3), Segment((20.0, 4.0, 0.4), (26.0, 6.0, 0.2), 3)]], + [ + [Segment((0.0, 0.0, 2.0), (4.0, 0.0, 2.0), 1)], + [ + Segment((5.0, 0.0, 0.8), (8.0, 0.0, 0.8), 3), + Segment((8.0, 0.0, 0.8), (12.0, -0.5, 0.8), 3), + ], + ], + [ + [ + Segment((12.0, -0.5, 0.8), (20.0, 4.0, 0.4), 3), + Segment((20.0, 4.0, 0.4), (26.0, 6.0, 0.2), 3), + ] + ], [[Segment((12.0, -0.5, 0.5), (19.0, -3.0, 0.5), 3)]], [[Segment((19.0, -3.0, 0.5), (24.0, -7.0, 0.2), 3)]], - [[Segment((19.0, -3.0, 0.5), (23.0, -1.0, 0.2), 3), Segment((23.0, -1.0, 0.2), (26.0, -2.0, 0.2), 3)]], - [[Segment((-2.0, 0.0, 0.4), (-10.0, 0.0, 0.4), 2)]],] + [ + [ + Segment((19.0, -3.0, 0.5), (23.0, -1.0, 0.2), 3), + Segment((23.0, -1.0, 0.2), (26.0, -2.0, 0.2), 3), + ] + ], + [[Segment((-2.0, 0.0, 0.4), (-10.0, 0.0, 0.4), 2)]], +] detached_morph = representation.make_morph(tmp) tmp = [ - [[Segment((0.0, 0.0, 0.5), (1.0, 0.0, 1.5), 1), Segment((1.0, 0.0, 1.5), (2.0, 0.0, 2.5), 1), Segment((2.0, 0.0, 2.5), (3.0, 0.0, 2.5), 1), Segment((3.0, 0.0, 2.5), (4.0, 0.0, 1.2), 1), Segment((4.0, 0.0, 0.8), (8.0, 0.0, 0.8), 3), Segment((8.0, 0.0, 0.8), (12.0, -0.5, 0.8), 3)]], - [[Segment((12.0, -0.5, 0.8), (20.0, 4.0, 0.4), 3), Segment((20.0, 4.0, 0.4), (26.0, 6.0, 0.2), 3)]], + [ + [ + Segment((0.0, 0.0, 0.5), (1.0, 0.0, 1.5), 1), + Segment((1.0, 0.0, 1.5), (2.0, 0.0, 2.5), 1), + Segment((2.0, 0.0, 2.5), (3.0, 0.0, 2.5), 1), + Segment((3.0, 0.0, 2.5), (4.0, 0.0, 1.2), 1), + Segment((4.0, 0.0, 0.8), (8.0, 0.0, 0.8), 3), + Segment((8.0, 0.0, 0.8), (12.0, -0.5, 0.8), 3), + ] + ], + [ + [ + Segment((12.0, -0.5, 0.8), (20.0, 4.0, 0.4), 3), + Segment((20.0, 4.0, 0.4), (26.0, 6.0, 0.2), 3), + ] + ], [[Segment((12.0, -0.5, 0.5), (19.0, -3.0, 0.5), 3)]], [[Segment((19.0, -3.0, 0.5), (24.0, -7.0, 0.2), 3)]], - [[Segment((19.0, -3.0, 0.5), (23.0, -1.0, 0.2), 3), Segment((23.0, -1.0, 0.2), (26.0, -2.0, 0.2), 3)]], - [[Segment((0.0, 0.0, 0.4), (-7.0, 0.0, 0.4), 2), Segment((-7.0, 0.0, 0.4), (-10.0, 0.0, 0.4), 2)]],] + [ + [ + Segment((19.0, -3.0, 0.5), (23.0, -1.0, 0.2), 3), + Segment((23.0, -1.0, 0.2), (26.0, -2.0, 0.2), 3), + ] + ], + [ + [ + Segment((0.0, 0.0, 0.4), (-7.0, 0.0, 0.4), 2), + Segment((-7.0, 0.0, 0.4), (-10.0, 0.0, 0.4), 2), + ] + ], +] stacked_morph = representation.make_morph(tmp) tmp = [ - [[Segment((-2.0, 0.0, 2.0), (2.0, 0.0, 2.0), 1)]],] + [[Segment((-2.0, 0.0, 2.0), (2.0, 0.0, 2.0), 1)]], +] sphere_morph = representation.make_morph(tmp) tmp = [ - [[Segment((0.0, 0.0, 1.0), (10.0, 0.0, 0.5), 3)]],] + [[Segment((0.0, 0.0, 1.0), (10.0, 0.0, 0.5), 3)]], +] branch_morph1 = representation.make_morph(tmp) tmp = [ - [[Segment((0.0, 0.0, 1.0), (3.0, 0.2, 0.8), 1), Segment((3.0, 0.2, 0.8), (5.0, -0.1, 0.7), 2), Segment((5.0, -0.1, 0.7), (8.0, 0.0, 0.6), 2), Segment((8.0, 0.0, 0.6), (10.0, 0.0, 0.5), 3)]],] + [ + [ + Segment((0.0, 0.0, 1.0), (3.0, 0.2, 0.8), 1), + Segment((3.0, 0.2, 0.8), (5.0, -0.1, 0.7), 2), + Segment((5.0, -0.1, 0.7), (8.0, 0.0, 0.6), 2), + Segment((8.0, 0.0, 0.6), (10.0, 0.0, 0.5), 3), + ] + ], +] branch_morph2 = representation.make_morph(tmp) tmp = [ - [[Segment((0.0, 0.0, 1.0), (3.0, 0.2, 0.8), 1), Segment((3.0, 0.2, 0.8), (5.0, -0.1, 0.7), 2)], [Segment((6.0, -0.1, 0.7), (9.0, 0.0, 0.6), 2), Segment((9.0, 0.0, 0.6), (11.0, 0.0, 0.5), 3)]],] + [ + [ + Segment((0.0, 0.0, 1.0), (3.0, 0.2, 0.8), 1), + Segment((3.0, 0.2, 0.8), (5.0, -0.1, 0.7), 2), + ], + [ + Segment((6.0, -0.1, 0.7), (9.0, 0.0, 0.6), 2), + Segment((9.0, 0.0, 0.6), (11.0, 0.0, 0.5), 3), + ], + ], +] branch_morph3 = representation.make_morph(tmp) tmp = [ - [[Segment((0.0, 0.0, 1.0), (3.0, 0.2, 0.8), 1), Segment((3.0, 0.2, 0.8), (5.0, -0.1, 0.7), 2), Segment((5.0, -0.1, 0.7), (8.0, 0.0, 0.5), 2), Segment((8.0, 0.0, 0.3), (10.0, 0.0, 0.5), 3)]],] + [ + [ + Segment((0.0, 0.0, 1.0), (3.0, 0.2, 0.8), 1), + Segment((3.0, 0.2, 0.8), (5.0, -0.1, 0.7), 2), + Segment((5.0, -0.1, 0.7), (8.0, 0.0, 0.5), 2), + Segment((8.0, 0.0, 0.3), (10.0, 0.0, 0.5), 3), + ] + ], +] branch_morph4 = representation.make_morph(tmp) tmp = [ [[Segment((0.0, 0.0, 1.0), (10.0, 0.0, 0.5), 3)]], [[Segment((10.0, 0.0, 0.5), (15.0, 3.0, 0.2), 3)]], - [[Segment((10.0, 0.0, 0.5), (15.0, -3.0, 0.2), 3)]],] + [[Segment((10.0, 0.0, 0.5), (15.0, -3.0, 0.2), 3)]], +] yshaped_morph = representation.make_morph(tmp) tmp = [ - [[Segment((-3.0, 0.0, 3.0), (3.0, 0.0, 3.0), 1)], [Segment((4.0, -1.0, 0.6), (10.0, -2.0, 0.5), 3), Segment((10.0, -2.0, 0.5), (15.0, -1.0, 0.5), 3)]], + [ + [Segment((-3.0, 0.0, 3.0), (3.0, 0.0, 3.0), 1)], + [ + Segment((4.0, -1.0, 0.6), (10.0, -2.0, 0.5), 3), + Segment((10.0, -2.0, 0.5), (15.0, -1.0, 0.5), 3), + ], + ], [[Segment((15.0, -1.0, 0.5), (18.0, -5.0, 0.3), 3)]], - [[Segment((15.0, -1.0, 0.5), (20.0, 2.0, 0.3), 3)]],] + [[Segment((15.0, -1.0, 0.5), (20.0, 2.0, 0.3), 3)]], +] ysoma_morph1 = representation.make_morph(tmp) tmp = [ [[Segment((-3.0, 0.0, 3.0), (3.0, 0.0, 3.0), 1)]], - [[Segment((4.0, -1.0, 0.6), (10.0, -2.0, 0.5), 3), Segment((10.0, -2.0, 0.5), (15.0, -1.0, 0.5), 3)]], + [ + [ + Segment((4.0, -1.0, 0.6), (10.0, -2.0, 0.5), 3), + Segment((10.0, -2.0, 0.5), (15.0, -1.0, 0.5), 3), + ] + ], [[Segment((15.0, -1.0, 0.5), (18.0, -5.0, 0.3), 3)]], [[Segment((15.0, -1.0, 0.5), (20.0, 2.0, 0.3), 3)]], [[Segment((2.0, 1.0, 0.6), (12.0, 4.0, 0.5), 3)]], [[Segment((12.0, 4.0, 0.5), (18.0, 4.0, 0.3), 3)]], [[Segment((12.0, 4.0, 0.5), (16.0, 9.0, 0.1), 3)]], - [[Segment((-3.5, 0.0, 1.5), (-6.0, -0.2, 0.5), 2), Segment((-6.0, -0.2, 0.5), (-15.0, -0.1, 0.5), 2)]],] + [ + [ + Segment((-3.5, 0.0, 1.5), (-6.0, -0.2, 0.5), 2), + Segment((-6.0, -0.2, 0.5), (-15.0, -0.1, 0.5), 2), + ] + ], +] ysoma_morph2 = representation.make_morph(tmp) tmp = [ [[Segment((-3.0, 0.0, 3.0), (3.0, 0.0, 3.0), 1)]], - [[Segment((3.0, 0.0, 0.6), (9.0, -1.0, 0.5), 3), Segment((9.0, -1.0, 0.5), (14.0, 0.0, 0.5), 3)]], + [ + [ + Segment((3.0, 0.0, 0.6), (9.0, -1.0, 0.5), 3), + Segment((9.0, -1.0, 0.5), (14.0, 0.0, 0.5), 3), + ] + ], [[Segment((14.0, 0.0, 0.5), (17.0, -4.0, 0.3), 3)]], [[Segment((14.0, 0.0, 0.5), (19.0, 3.0, 0.3), 3)]], [[Segment((3.0, 0.0, 0.6), (13.0, 3.0, 0.5), 3)]], [[Segment((13.0, 3.0, 0.5), (19.0, 3.0, 0.3), 3)]], [[Segment((13.0, 3.0, 0.5), (17.0, 8.0, 0.1), 3)]], - [[Segment((-3.0, 0.0, 1.5), (-5.5, -0.2, 0.5), 2), Segment((-5.5, -0.2, 0.5), (-14.5, -0.1, 0.5), 2)]],] + [ + [ + Segment((-3.0, 0.0, 1.5), (-5.5, -0.2, 0.5), 2), + Segment((-5.5, -0.2, 0.5), (-14.5, -0.1, 0.5), 2), + ] + ], +] ysoma_morph3 = representation.make_morph(tmp) tmp = [ - [[Segment((0.0, 0.0, 2.0), (4.0, 0.0, 2.0), 1), Segment((4.0, 0.0, 0.8), (8.0, 0.0, 0.8), 3), Segment((8.0, 0.0, 0.8), (12.0, -0.5, 0.8), 3)]], - [[Segment((12.0, -0.5, 0.8), (20.0, 4.0, 0.4), 3), Segment((20.0, 4.0, 0.4), (26.0, 6.0, 0.2), 3)]], + [ + [ + Segment((0.0, 0.0, 2.0), (4.0, 0.0, 2.0), 1), + Segment((4.0, 0.0, 0.8), (8.0, 0.0, 0.8), 3), + Segment((8.0, 0.0, 0.8), (12.0, -0.5, 0.8), 3), + ] + ], + [ + [ + Segment((12.0, -0.5, 0.8), (20.0, 4.0, 0.4), 3), + Segment((20.0, 4.0, 0.4), (26.0, 6.0, 0.2), 3), + ] + ], [[Segment((12.0, -0.5, 0.5), (19.0, -3.0, 0.5), 3)]], [[Segment((19.0, -3.0, 0.5), (24.0, -7.0, 0.2), 4)]], - [[Segment((19.0, -3.0, 0.5), (23.0, -1.0, 0.2), 4), Segment((23.0, -1.0, 0.2), (36.0, -2.0, 0.2), 4)]], - [[Segment((0.0, 0.0, 2.0), (-7.0, 0.0, 0.4), 2), Segment((-7.0, 0.0, 0.4), (-10.0, 0.0, 0.4), 2)]],] + [ + [ + Segment((19.0, -3.0, 0.5), (23.0, -1.0, 0.2), 4), + Segment((23.0, -1.0, 0.2), (36.0, -2.0, 0.2), 4), + ] + ], + [ + [ + Segment((0.0, 0.0, 2.0), (-7.0, 0.0, 0.4), 2), + Segment((-7.0, 0.0, 0.4), (-10.0, 0.0, 0.4), 2), + ] + ], +] tutorial_morph = representation.make_morph(tmp) tmp = [ - [[Segment((0.0, 0.0, 1.0), (2.0, 0.0, 1.0), 1), Segment((2.0, 0.0, 1.0), (20.0, 0.0, 1.0), 3)]], - [[Segment((0.0, 0.0, 1.0), (-3.0, 0.0, 0.7), 2)]],] + [ + [ + Segment((0.0, 0.0, 1.0), (2.0, 0.0, 1.0), 1), + Segment((2.0, 0.0, 1.0), (20.0, 0.0, 1.0), 3), + ] + ], + [[Segment((0.0, 0.0, 1.0), (-3.0, 0.0, 0.7), 2)]], +] swc_morph = representation.make_morph(tmp) tmp = [ - [[Segment((-12.0, 0.0, 6.0), (0.0, 0.0, 6.0), 1), Segment((0.0, 0.0, 2.0), (50.0, 0.0, 2.0), 3)]], + [ + [ + Segment((-12.0, 0.0, 6.0), (0.0, 0.0, 6.0), 1), + Segment((0.0, 0.0, 2.0), (50.0, 0.0, 2.0), 3), + ] + ], [[Segment((50.0, 0.0, 2.0), (85.35533905932738, 35.35533905932737, 0.5), 3)]], - [[Segment((50.0, 0.0, 1.0), (85.35533905932738, -35.35533905932737, 1.0), 3)]],] + [[Segment((50.0, 0.0, 1.0), (85.35533905932738, -35.35533905932737, 1.0), 3)]], +] tutorial_network_ring_morph = representation.make_morph(tmp) ############# locsets (label_morph) -ls_root = {'type': 'locset', 'value': [(0, 0.0)]} -ls_term = {'type': 'locset', 'value': [(1, 1.0), (3, 1.0), (4, 1.0), (5, 1.0)]} -ls_rand_dend = {'type': 'locset', 'value': [(0, 0.5547193370156588), (0, 0.5841758202819731), (0, 0.607192003545501), (0, 0.6181091003428546), (0, 0.6190845627201184), (0, 0.7027325639263277), (0, 0.7616129092226993), (0, 0.9645150497869694), (1, 0.15382287505908834), (1, 0.2594719824047551), (1, 0.28087652335178354), (1, 0.3729681478609085), (1, 0.3959560134241004), (1, 0.4629424550242548), (1, 0.47346867377446744), (1, 0.5493486883630476), (1, 0.6227685370674116), (1, 0.6362196581003494), (1, 0.6646511214508091), (1, 0.7157318936458146), (1, 0.7464198558822775), (1, 0.77074507802833), (1, 0.7860238136304932), (1, 0.8988928261704698), (1, 0.9581259332943499), (2, 0.12773985425987294), (2, 0.3365926476076694), (2, 0.44454300804769703), (2, 0.5409466695719178), (2, 0.5767511435223905), (2, 0.6340206909931745), (2, 0.6354772583375223), (2, 0.6807941995943213), (2, 0.774655947503608), (3, 0.05020708596877571), (3, 0.25581431877212274), (3, 0.2958305460715556), (3, 0.296698184761692), (3, 0.509669134988683), (3, 0.7662305637426007), (3, 0.8565839889923518), (3, 0.8889077221517746), (4, 0.24311286693286885), (4, 0.4354361205546333), (4, 0.4467752481260171), (4, 0.5308169153994543), (4, 0.5701465671464049), (4, 0.670081739879954), (4, 0.6995486862583797), (4, 0.8186709628604206), (4, 0.9141224600171143)]} -ls_loc15 = {'type': 'locset', 'value': [(1, 0.5)]} -ls_loc05 = {'type': 'locset', 'value': [(0, 0.5)]} -ls_uniform0 = {'type': 'locset', 'value': [(0, 0.5841758202819731), (1, 0.6362196581003494), (1, 0.7157318936458146), (1, 0.7464198558822775), (2, 0.6340206909931745), (2, 0.6807941995943213), (3, 0.296698184761692), (3, 0.509669134988683), (3, 0.7662305637426007), (4, 0.5701465671464049)]} -ls_uniform1 = {'type': 'locset', 'value': [(0, 0.9778060763285382), (1, 0.19973428495790843), (1, 0.8310607916260988), (2, 0.9210229159315735), (2, 0.9244292525837472), (2, 0.9899772550845479), (3, 0.9924233395972087), (4, 0.3641426305909531), (4, 0.4787812247064867), (4, 0.5138656268861914)]} -ls_branchmid = {'type': 'locset', 'value': [(0, 0.5), (1, 0.5), (2, 0.5), (3, 0.5), (4, 0.5), (5, 0.5)]} -ls_distal = {'type': 'locset', 'value': [(1, 0.796025976329944), (3, 0.6666666666666667), (4, 0.39052429175127), (5, 1.0)]} -ls_proximal = {'type': 'locset', 'value': [(1, 0.29602597632994393), (2, 0.0), (5, 0.6124999999999999)]} -ls_distint_in = {'type': 'locset', 'value': [(1, 0.5), (2, 0.7), (5, 0.1)]} -ls_proxint_in = {'type': 'locset', 'value': [(1, 0.8), (2, 0.3)]} -ls_loctest = {'type': 'locset', 'value': [(1, 1.0), (2, 0.0), (5, 0.0)]} -ls_restrict = {'type': 'locset', 'value': [(1, 1.0), (3, 1.0), (4, 1.0)]} -ls_proximal_translate = {'type': 'locset', 'value': [(1, 0.35497750169352515), (2, 0.5160959062272675), (2, 0.6817468794150789), (5, 0.0)]} -ls_distal_translate_single = {'type': 'locset', 'value': [(0, 0.915588599565521)]} -ls_distal_translate_multi = {'type': 'locset', 'value': [(1, 0.5795163072671657), (3, 0.24228815992614555), (4, 0.20321157163712014)]} +ls_root = {"type": "locset", "value": [(0, 0.0)]} +ls_term = {"type": "locset", "value": [(1, 1.0), (3, 1.0), (4, 1.0), (5, 1.0)]} +ls_rand_dend = { + "type": "locset", + "value": [ + (0, 0.5547193370156588), + (0, 0.5841758202819731), + (0, 0.607192003545501), + (0, 0.6181091003428546), + (0, 0.6190845627201184), + (0, 0.7027325639263277), + (0, 0.7616129092226993), + (0, 0.9645150497869694), + (1, 0.15382287505908834), + (1, 0.2594719824047551), + (1, 0.28087652335178354), + (1, 0.3729681478609085), + (1, 0.3959560134241004), + (1, 0.4629424550242548), + (1, 0.47346867377446744), + (1, 0.5493486883630476), + (1, 0.6227685370674116), + (1, 0.6362196581003494), + (1, 0.6646511214508091), + (1, 0.7157318936458146), + (1, 0.7464198558822775), + (1, 0.77074507802833), + (1, 0.7860238136304932), + (1, 0.8988928261704698), + (1, 0.9581259332943499), + (2, 0.12773985425987294), + (2, 0.3365926476076694), + (2, 0.44454300804769703), + (2, 0.5409466695719178), + (2, 0.5767511435223905), + (2, 0.6340206909931745), + (2, 0.6354772583375223), + (2, 0.6807941995943213), + (2, 0.774655947503608), + (3, 0.05020708596877571), + (3, 0.25581431877212274), + (3, 0.2958305460715556), + (3, 0.296698184761692), + (3, 0.509669134988683), + (3, 0.7662305637426007), + (3, 0.8565839889923518), + (3, 0.8889077221517746), + (4, 0.24311286693286885), + (4, 0.4354361205546333), + (4, 0.4467752481260171), + (4, 0.5308169153994543), + (4, 0.5701465671464049), + (4, 0.670081739879954), + (4, 0.6995486862583797), + (4, 0.8186709628604206), + (4, 0.9141224600171143), + ], +} +ls_loc15 = {"type": "locset", "value": [(1, 0.5)]} +ls_loc05 = {"type": "locset", "value": [(0, 0.5)]} +ls_uniform0 = { + "type": "locset", + "value": [ + (0, 0.5841758202819731), + (1, 0.6362196581003494), + (1, 0.7157318936458146), + (1, 0.7464198558822775), + (2, 0.6340206909931745), + (2, 0.6807941995943213), + (3, 0.296698184761692), + (3, 0.509669134988683), + (3, 0.7662305637426007), + (4, 0.5701465671464049), + ], +} +ls_uniform1 = { + "type": "locset", + "value": [ + (0, 0.9778060763285382), + (1, 0.19973428495790843), + (1, 0.8310607916260988), + (2, 0.9210229159315735), + (2, 0.9244292525837472), + (2, 0.9899772550845479), + (3, 0.9924233395972087), + (4, 0.3641426305909531), + (4, 0.4787812247064867), + (4, 0.5138656268861914), + ], +} +ls_branchmid = { + "type": "locset", + "value": [(0, 0.5), (1, 0.5), (2, 0.5), (3, 0.5), (4, 0.5), (5, 0.5)], +} +ls_distal = { + "type": "locset", + "value": [ + (1, 0.796025976329944), + (3, 0.6666666666666667), + (4, 0.39052429175127), + (5, 1.0), + ], +} +ls_proximal = { + "type": "locset", + "value": [(1, 0.29602597632994393), (2, 0.0), (5, 0.6124999999999999)], +} +ls_distint_in = {"type": "locset", "value": [(1, 0.5), (2, 0.7), (5, 0.1)]} +ls_proxint_in = {"type": "locset", "value": [(1, 0.8), (2, 0.3)]} +ls_loctest = {"type": "locset", "value": [(1, 1.0), (2, 0.0), (5, 0.0)]} +ls_restrict = {"type": "locset", "value": [(1, 1.0), (3, 1.0), (4, 1.0)]} +ls_proximal_translate = { + "type": "locset", + "value": [ + (1, 0.35497750169352515), + (2, 0.5160959062272675), + (2, 0.6817468794150789), + (5, 0.0), + ], +} +ls_distal_translate_single = {"type": "locset", "value": [(0, 0.915588599565521)]} +ls_distal_translate_multi = { + "type": "locset", + "value": [ + (1, 0.5795163072671657), + (3, 0.24228815992614555), + (4, 0.20321157163712014), + ], +} ############# regions (label_morph) -reg_empty = {'type': 'region', 'value': []} -reg_all = {'type': 'region', 'value': [(0, 0.0, 1.0), (1, 0.0, 1.0), (2, 0.0, 1.0), (3, 0.0, 1.0), (4, 0.0, 1.0), (5, 0.0, 1.0)]} -reg_tag1 = {'type': 'region', 'value': [(0, 0.0, 0.3324708796524168)]} -reg_tag2 = {'type': 'region', 'value': [(5, 0.0, 1.0)]} -reg_tag3 = {'type': 'region', 'value': [(0, 0.3324708796524168, 1.0), (1, 0.0, 1.0), (2, 0.0, 1.0), (3, 0.0, 1.0), (4, 0.0, 1.0)]} -reg_tag4 = {'type': 'region', 'value': []} -reg_soma = {'type': 'region', 'value': [(0, 0.0, 0.3324708796524168)]} -reg_axon = {'type': 'region', 'value': [(5, 0.0, 1.0)]} -reg_dend = {'type': 'region', 'value': [(0, 0.3324708796524168, 1.0), (1, 0.0, 1.0), (2, 0.0, 1.0), (3, 0.0, 1.0), (4, 0.0, 1.0)]} -reg_radlt5 = {'type': 'region', 'value': [(1, 0.44403896449491587, 1.0), (3, 0.0, 1.0), (4, 0.0, 1.0), (5, 0.65625, 1.0)]} -reg_radle5 = {'type': 'region', 'value': [(1, 0.44403896449491587, 1.0), (2, 0.0, 1.0), (3, 0.0, 1.0), (4, 0.0, 1.0), (5, 0.65625, 1.0)]} -reg_radgt5 = {'type': 'region', 'value': [(0, 0.0, 1.0), (1, 0.0, 0.44403896449491587), (5, 0.0, 0.65625)]} -reg_radge5 = {'type': 'region', 'value': [(0, 0.0, 1.0), (1, 0.0, 0.44403896449491587), (2, 0.0, 1.0), (3, 0.0, 0.0), (4, 0.0, 0.0), (5, 0.0, 0.65625)]} -reg_rad36 = {'type': 'region', 'value': [(1, 0.29602597632994393, 0.796025976329944), (2, 0.0, 1.0), (3, 0.0, 0.6666666666666667), (4, 0.0, 0.39052429175127), (5, 0.6124999999999999, 1.0)]} -reg_branch0 = {'type': 'region', 'value': [(0, 0.0, 1.0)]} -reg_branch3 = {'type': 'region', 'value': [(3, 0.0, 1.0)]} -reg_segment0 = {'type': 'region', 'value': [(0, 0.0, 0.3324708796524168)]} -reg_segment3 = {'type': 'region', 'value': [(1, 0.0, 0.5920519526598877)]} -reg_cable_0_28 = {'type': 'region', 'value': [(0, 0.2, 0.8)]} -reg_cable_1_01 = {'type': 'region', 'value': [(1, 0.0, 1.0)]} -reg_cable_1_31 = {'type': 'region', 'value': [(1, 0.3, 1.0)]} -reg_cable_1_37 = {'type': 'region', 'value': [(1, 0.3, 0.7)]} -reg_proxint = {'type': 'region', 'value': [(0, 0.7697564611867647, 1.0), (1, 0.4774887508467626, 0.8), (2, 0.0, 0.3)]} -reg_proxintinf = {'type': 'region', 'value': [(0, 0.0, 1.0), (1, 0.0, 0.8), (2, 0.0, 0.3)]} -reg_distint = {'type': 'region', 'value': [(1, 0.5, 0.8225112491532374), (2, 0.7, 1.0), (3, 0.0, 0.432615327328525), (4, 0.0, 0.3628424955125098), (5, 0.1, 0.6)]} -reg_distintinf = {'type': 'region', 'value': [(1, 0.5, 1.0), (2, 0.7, 1.0), (3, 0.0, 1.0), (4, 0.0, 1.0), (5, 0.1, 1.0)]} -reg_lhs = {'type': 'region', 'value': [(0, 0.5, 1.0), (1, 0.0, 0.5)]} -reg_rhs = {'type': 'region', 'value': [(1, 0.0, 1.0)]} -reg_and = {'type': 'region', 'value': [(1, 0.0, 0.5)]} -reg_or = {'type': 'region', 'value': [(0, 0.5, 1.0), (1, 0.0, 1.0)]} +reg_empty = {"type": "region", "value": []} +reg_all = { + "type": "region", + "value": [ + (0, 0.0, 1.0), + (1, 0.0, 1.0), + (2, 0.0, 1.0), + (3, 0.0, 1.0), + (4, 0.0, 1.0), + (5, 0.0, 1.0), + ], +} +reg_tag1 = {"type": "region", "value": [(0, 0.0, 0.3324708796524168)]} +reg_tag2 = {"type": "region", "value": [(5, 0.0, 1.0)]} +reg_tag3 = { + "type": "region", + "value": [ + (0, 0.3324708796524168, 1.0), + (1, 0.0, 1.0), + (2, 0.0, 1.0), + (3, 0.0, 1.0), + (4, 0.0, 1.0), + ], +} +reg_tag4 = {"type": "region", "value": []} +reg_soma = {"type": "region", "value": [(0, 0.0, 0.3324708796524168)]} +reg_axon = {"type": "region", "value": [(5, 0.0, 1.0)]} +reg_dend = { + "type": "region", + "value": [ + (0, 0.3324708796524168, 1.0), + (1, 0.0, 1.0), + (2, 0.0, 1.0), + (3, 0.0, 1.0), + (4, 0.0, 1.0), + ], +} +reg_radlt5 = { + "type": "region", + "value": [ + (1, 0.44403896449491587, 1.0), + (3, 0.0, 1.0), + (4, 0.0, 1.0), + (5, 0.65625, 1.0), + ], +} +reg_radle5 = { + "type": "region", + "value": [ + (1, 0.44403896449491587, 1.0), + (2, 0.0, 1.0), + (3, 0.0, 1.0), + (4, 0.0, 1.0), + (5, 0.65625, 1.0), + ], +} +reg_radgt5 = { + "type": "region", + "value": [(0, 0.0, 1.0), (1, 0.0, 0.44403896449491587), (5, 0.0, 0.65625)], +} +reg_radge5 = { + "type": "region", + "value": [ + (0, 0.0, 1.0), + (1, 0.0, 0.44403896449491587), + (2, 0.0, 1.0), + (3, 0.0, 0.0), + (4, 0.0, 0.0), + (5, 0.0, 0.65625), + ], +} +reg_rad36 = { + "type": "region", + "value": [ + (1, 0.29602597632994393, 0.796025976329944), + (2, 0.0, 1.0), + (3, 0.0, 0.6666666666666667), + (4, 0.0, 0.39052429175127), + (5, 0.6124999999999999, 1.0), + ], +} +reg_branch0 = {"type": "region", "value": [(0, 0.0, 1.0)]} +reg_branch3 = {"type": "region", "value": [(3, 0.0, 1.0)]} +reg_segment0 = {"type": "region", "value": [(0, 0.0, 0.3324708796524168)]} +reg_segment3 = {"type": "region", "value": [(1, 0.0, 0.5920519526598877)]} +reg_cable_0_28 = {"type": "region", "value": [(0, 0.2, 0.8)]} +reg_cable_1_01 = {"type": "region", "value": [(1, 0.0, 1.0)]} +reg_cable_1_31 = {"type": "region", "value": [(1, 0.3, 1.0)]} +reg_cable_1_37 = {"type": "region", "value": [(1, 0.3, 0.7)]} +reg_proxint = { + "type": "region", + "value": [ + (0, 0.7697564611867647, 1.0), + (1, 0.4774887508467626, 0.8), + (2, 0.0, 0.3), + ], +} +reg_proxintinf = { + "type": "region", + "value": [(0, 0.0, 1.0), (1, 0.0, 0.8), (2, 0.0, 0.3)], +} +reg_distint = { + "type": "region", + "value": [ + (1, 0.5, 0.8225112491532374), + (2, 0.7, 1.0), + (3, 0.0, 0.432615327328525), + (4, 0.0, 0.3628424955125098), + (5, 0.1, 0.6), + ], +} +reg_distintinf = { + "type": "region", + "value": [ + (1, 0.5, 1.0), + (2, 0.7, 1.0), + (3, 0.0, 1.0), + (4, 0.0, 1.0), + (5, 0.1, 1.0), + ], +} +reg_lhs = {"type": "region", "value": [(0, 0.5, 1.0), (1, 0.0, 0.5)]} +reg_rhs = {"type": "region", "value": [(1, 0.0, 1.0)]} +reg_and = {"type": "region", "value": [(1, 0.0, 0.5)]} +reg_or = {"type": "region", "value": [(0, 0.5, 1.0), (1, 0.0, 1.0)]} + + +############# iexpr (label_morph) + +iexpr_directional_loc = {"type": "locset", "value": [(0, 1.0)]} +iexpr_dist_dis = { + "type": "region", + "value": [(1, 0.0, 1.0), (2, 0.0, 1.0), (3, 0.0, 1.0), (4, 0.0, 1.0)], +} +iexpr_prox_dis = {"type": "region", "value": [(0, 0.0, 1.0)]} ############# locsets (tutorial_morph) -tut_ls_root = {'type': 'locset', 'value': [(0, 0.0)]} -tut_ls_terminal = {'type': 'locset', 'value': [(1, 1.0), (3, 1.0), (4, 1.0), (5, 1.0)]} -tut_ls_custom_terminal = {'type': 'locset', 'value': [(3, 1.0), (4, 1.0)]} -tut_ls_axon_terminal = {'type': 'locset', 'value': [(5, 1.0)]} +tut_ls_root = {"type": "locset", "value": [(0, 0.0)]} +tut_ls_terminal = {"type": "locset", "value": [(1, 1.0), (3, 1.0), (4, 1.0), (5, 1.0)]} +tut_ls_custom_terminal = {"type": "locset", "value": [(3, 1.0), (4, 1.0)]} +tut_ls_axon_terminal = {"type": "locset", "value": [(5, 1.0)]} ############# regions (tutorial_morph) -tut_reg_all = {'type': 'region', 'value': [(0, 0.0, 1.0), (1, 0.0, 1.0), (2, 0.0, 1.0), (3, 0.0, 1.0), (4, 0.0, 1.0), (5, 0.0, 1.0)]} -tut_reg_soma = {'type': 'region', 'value': [(0, 0.0, 0.3324708796524168)]} -tut_reg_axon = {'type': 'region', 'value': [(5, 0.0, 1.0)]} -tut_reg_dend = {'type': 'region', 'value': [(0, 0.3324708796524168, 1.0), (1, 0.0, 1.0), (2, 0.0, 1.0)]} -tut_reg_last = {'type': 'region', 'value': [(3, 0.0, 1.0), (4, 0.0, 1.0)]} -tut_reg_rad_gt = {'type': 'region', 'value': [(0, 0.0, 0.3324708796524168), (5, 0.0, 0.21875)]} -tut_reg_custom = {'type': 'region', 'value': [(0, 0.0, 0.3324708796524168), (3, 0.0, 1.0), (4, 0.0, 1.0), (5, 0.0, 0.21875)]} +tut_reg_all = { + "type": "region", + "value": [ + (0, 0.0, 1.0), + (1, 0.0, 1.0), + (2, 0.0, 1.0), + (3, 0.0, 1.0), + (4, 0.0, 1.0), + (5, 0.0, 1.0), + ], +} +tut_reg_soma = {"type": "region", "value": [(0, 0.0, 0.3324708796524168)]} +tut_reg_axon = {"type": "region", "value": [(5, 0.0, 1.0)]} +tut_reg_dend = { + "type": "region", + "value": [(0, 0.3324708796524168, 1.0), (1, 0.0, 1.0), (2, 0.0, 1.0)], +} +tut_reg_last = {"type": "region", "value": [(3, 0.0, 1.0), (4, 0.0, 1.0)]} +tut_reg_rad_gt = { + "type": "region", + "value": [(0, 0.0, 0.3324708796524168), (5, 0.0, 0.21875)], +} +tut_reg_custom = { + "type": "region", + "value": [ + (0, 0.0, 0.3324708796524168), + (3, 0.0, 1.0), + (4, 0.0, 1.0), + (5, 0.0, 0.21875), + ], +} ############# locsets (tutorial_network_ring_morph) -tut_network_ring_ls_synapse_site = {'type': 'locset', 'value': [(1, 0.5)]} -tut_network_ring_ls_root = {'type': 'locset', 'value': [(0, 0.0)]} +tut_network_ring_ls_synapse_site = {"type": "locset", "value": [(1, 0.5)]} +tut_network_ring_ls_root = {"type": "locset", "value": [(0, 0.0)]} ############# regions (tutorial_network_ring_morph) -tut_network_ring_reg_soma = {'type': 'region', 'value': [(0, 0.0, 0.1935483870967742)]} -tut_network_ring_reg_dend = {'type': 'region', 'value': [(0, 0.1935483870967742, 1.0), (1, 0.0, 1.0), (2, 0.0, 1.0)]} +tut_network_ring_reg_soma = {"type": "region", "value": [(0, 0.0, 0.1935483870967742)]} +tut_network_ring_reg_dend = { + "type": "region", + "value": [(0, 0.1935483870967742, 1.0), (1, 0.0, 1.0), (2, 0.0, 1.0)], +} diff --git a/doc/scripts/make_images.py b/doc/scripts/make_images.py index 9bfa9511a3..2e6ee0c9e6 100644 --- a/doc/scripts/make_images.py +++ b/doc/scripts/make_images.py @@ -3,52 +3,53 @@ import math import inputs -tag_colors_colorscheme = ['white', '#ffc2c2', 'gray', '#c2caff', '#81c8aa'] -tag_colors_bwscheme = ['lightgray']*len(tag_colors_colorscheme) +tag_colors_colorscheme = ["white", "#ffc2c2", "gray", "#c2caff", "#81c8aa"] +tag_colors_bwscheme = ["lightgray"] * len(tag_colors_colorscheme) # # ############################################ # + def translate(x, f, xshift): - return (f*x[0]+xshift, -f*x[1]) + return (f * x[0] + xshift, -f * x[1]) + def translate_all(points, f, xshift): return [translate(x, f, xshift) for x in points] + # Draw one or more morphologies, side by side. # Each morphology can be drawn as segments or branches. def morph_image(morphs, methods, filename, **kwargs): - assert(len(morphs)==len(methods)) + assert len(morphs) == len(methods) - lab_sc = kwargs.get('lab_sc',2) - sc = kwargs.get('sc',20) - draw_labels = kwargs.get('draw_labels',True) - colors = kwargs.get('colors',True) + lab_sc = kwargs.get("lab_sc", 2) + sc = kwargs.get("sc", 20) + draw_labels = kwargs.get("draw_labels", True) + colors = kwargs.get("colors", True) tag_colors = tag_colors_colorscheme if colors else tag_colors_bwscheme - print('generating:', filename) + print("generating:", filename) dwg = svgwrite.Drawing(filename=filename, debug=True) # Width of lines and circle strokes. - line_width=0.1*sc + line_width = 0.1 * sc # Padding around image. - fudge=1.5*sc - - linecolor='black' - pointcolor='red' - lines = dwg.add(dwg.g(id='lines', - stroke=linecolor, - fill='white', - stroke_width=line_width)) - points = dwg.add(dwg.g(id='points', - stroke=pointcolor, - fill=pointcolor, - stroke_width=line_width)) - numbers = dwg.add(dwg.g(id='numbers', - text_anchor='middle', - alignment_baseline='middle')) + fudge = 1.5 * sc + + linecolor = "black" + pointcolor = "red" + lines = dwg.add( + dwg.g(id="lines", stroke=linecolor, fill="white", stroke_width=line_width) + ) + points = dwg.add( + dwg.g(id="points", stroke=pointcolor, fill=pointcolor, stroke_width=line_width) + ) + numbers = dwg.add( + dwg.g(id="numbers", text_anchor="middle", alignment_baseline="middle") + ) minx = math.inf miny = math.inf @@ -57,8 +58,8 @@ def morph_image(morphs, methods, filename, **kwargs): offset = 0 - bcolor = 'mediumslateblue' - branchfillcolor = 'lightgray' + bcolor = "mediumslateblue" + branchfillcolor = "lightgray" nmorph = len(morphs) @@ -73,74 +74,95 @@ def morph_image(morphs, methods, filename, **kwargs): branch = morph[i] lx, ux, ly, uy = branch.minmax() - minx = min(minx, sc*lx+offset) - miny = min(miny, sc*ly) - maxx = max(maxx, sc*ux+offset) - maxy = max(maxy, sc*uy) + minx = min(minx, sc * lx + offset) + miny = min(miny, sc * ly) + maxx = max(maxx, sc * ux + offset) + maxy = max(maxy, sc * uy) - if method=='segments': + if method == "segments": for sec in branch.sections: for seg in sec: - if seg.length>0.00001: # only draw nonzero length segments + if seg.length > 0.00001: # only draw nonzero length segments line = translate_all(seg.corners(), sc, offset) - lines.add(dwg.polygon(points=line, fill=tag_colors[seg.tag])) + lines.add( + dwg.polygon(points=line, fill=tag_colors[seg.tag]) + ) pos = translate(seg.location(0.5), sc, offset) if draw_labels: - points.add(dwg.circle(center=pos, - stroke='black', - r=sc*0.55*lab_sc, - fill='white', - stroke_width=sc/20*lab_sc)) + points.add( + dwg.circle( + center=pos, + stroke="black", + r=sc * 0.55 * lab_sc, + fill="white", + stroke_width=sc / 20 * lab_sc, + ) + ) # The svg alignment_baseline attribute: # - works on Chrome/Chromium # - doesn't work on Firefox # so for now we just shift the relative position by sc/3 - label_pos = (pos[0], pos[1]+sc/3) - numbers.add(dwg.text(str(segid), - insert=label_pos, - stroke='black', - fill='black', - font_size=sc*0.55*lab_sc)) + label_pos = (pos[0], pos[1] + sc / 3) + numbers.add( + dwg.text( + str(segid), + insert=label_pos, + stroke="black", + fill="black", + font_size=sc * 0.55 * lab_sc, + ) + ) segid += 1 - elif method=='branches': + elif method == "branches": for line in branch.outline(): - lines.add(dwg.polygon(points=translate_all(line, sc, offset), - fill=branchfillcolor)) + lines.add( + dwg.polygon( + points=translate_all(line, sc, offset), fill=branchfillcolor + ) + ) if draw_labels: pos = translate(branch.location(0.5), sc, offset) - points.add(dwg.circle(center=pos, - stroke=bcolor, - r=sc*0.55*lab_sc, - fill=bcolor, - stroke_width=sc/20*lab_sc)) + points.add( + dwg.circle( + center=pos, + stroke=bcolor, + r=sc * 0.55 * lab_sc, + fill=bcolor, + stroke_width=sc / 20 * lab_sc, + ) + ) # The svg alignment_baseline attribute: # - works on Chrome/Chromium # - doesn't work on Firefox # so for now we just shift the relative position by sc/3 - label_pos = (pos[0], pos[1]+sc/3) - numbers.add(dwg.text(str(i), - insert=label_pos, - stroke='white', - fill='white', - font_size=sc*0.55*lab_sc)) + label_pos = (pos[0], pos[1] + sc / 3) + numbers.add( + dwg.text( + str(i), + insert=label_pos, + stroke="white", + fill="white", + font_size=sc * 0.55 * lab_sc, + ) + ) offset = maxx - minx + sc - # Find extent of image. minx -= fudge miny -= fudge maxx += fudge maxy += fudge - width = maxx-minx - height = maxy-miny + width = maxx - minx + height = maxy - miny dwg.viewbox(minx, -maxy, width, height) # Write the image to file. dwg.save() + # Generate an image that illustrates regions and locsets on a morphology. # # Can't handle morpholgies with gaps, where segemnts with a parent-child @@ -149,30 +171,28 @@ def morph_image(morphs, methods, filename, **kwargs): # not bee too hard to support. def label_image(morphology, labels, filename, **kwargs): - loc_sc = kwargs.get('loc_sc',2) - sc = kwargs.get('sc',20) - drawroot = kwargs.get('drawroot',True) + loc_sc = kwargs.get("loc_sc", 2) + sc = kwargs.get("sc", 20) + drawroot = kwargs.get("drawroot", True) morph = morphology - print('generating:', filename) + print("generating:", filename) dwg = svgwrite.Drawing(filename=filename, debug=True) # Width of lines and circle strokes. - line_width=0.2*sc + line_width = 0.2 * sc # Padding around image. - fudge=1.5*sc - - linecolor='black' - pointcolor='red' - lines = dwg.add(dwg.g(id='lines', - stroke=linecolor, - fill='white', - stroke_width=line_width)) - points = dwg.add(dwg.g(id='points', - stroke=pointcolor, - fill=pointcolor, - stroke_width=line_width)) + fudge = 1.5 * sc + + linecolor = "black" + pointcolor = "red" + lines = dwg.add( + dwg.g(id="lines", stroke=linecolor, fill="white", stroke_width=line_width) + ) + points = dwg.add( + dwg.g(id="points", stroke=pointcolor, fill=pointcolor, stroke_width=line_width) + ) minx = math.inf miny = math.inf @@ -181,7 +201,7 @@ def label_image(morphology, labels, filename, **kwargs): offset = 0 - branchfillcolor = 'lightgray' + branchfillcolor = "lightgray" nimage = len(labels) for l in range(nimage): @@ -194,44 +214,69 @@ def label_image(morphology, labels, filename, **kwargs): branch = morph[i] lx, ux, ly, uy = branch.minmax() - minx = min(minx, sc*lx+offset) - miny = min(miny, sc*ly) - maxx = max(maxx, sc*ux+offset) - maxy = max(maxy, sc*uy) + minx = min(minx, sc * lx + offset) + miny = min(miny, sc * ly) + maxx = max(maxx, sc * ux + offset) + maxy = max(maxy, sc * uy) for line in branch.outline(): - lines.add(dwg.polygon(points=translate_all(line, sc, offset), - fill=branchfillcolor, - stroke=branchfillcolor)) + lines.add( + dwg.polygon( + points=translate_all(line, sc, offset), + fill=branchfillcolor, + stroke=branchfillcolor, + ) + ) # Draw the root root = translate(morph[0].location(0), sc, offset) if drawroot: - points.add(dwg.circle(center=root, stroke='red', r=sc/2.5*loc_sc, fill='white', stroke_width=sc/10*loc_sc)) - - if lab['type'] == 'locset': - for loc in lab['value']: + points.add( + dwg.circle( + center=root, + stroke="red", + r=sc / 2.5 * loc_sc, + fill="white", + stroke_width=sc / 10 * loc_sc, + ) + ) + + if lab["type"] == "locset": + for loc in lab["value"]: bid = loc[0] pos = loc[1] loc = translate(morph[bid].location(pos), sc, offset) - points.add(dwg.circle(center=loc, stroke='black', r=sc/3*loc_sc, fill='white', stroke_width=sc/10*loc_sc)) - - if lab['type'] == 'region': - for cab in lab['value']: + points.add( + dwg.circle( + center=loc, + stroke="black", + r=sc / 3 * loc_sc, + fill="white", + stroke_width=sc / 10 * loc_sc, + ) + ) + + if lab["type"] == "region": + for cab in lab["value"]: # skip zero length cables - bid = cab[0] + bid = cab[0] ppos = cab[1] dpos = cab[2] # Don't draw zero-length cables # How should these be drawn: with a line or a circle? - if ppos==dpos: continue + if ppos == dpos: + continue for line in morph[bid].outline(ppos, dpos): - lines.add(dwg.polygon(points=translate_all(line, sc, offset), - fill='black', - stroke=branchfillcolor)) + lines.add( + dwg.polygon( + points=translate_all(line, sc, offset), + fill="black", + stroke=branchfillcolor, + ) + ) offset = maxx - minx + sc @@ -240,89 +285,301 @@ def label_image(morphology, labels, filename, **kwargs): miny -= fudge maxx += fudge maxy += fudge - width = maxx-minx - height = maxy-miny + width = maxx - minx + height = maxy - miny dwg.viewbox(minx, -maxy, width, height) # Write the image to file. dwg.save() -def generate(path=''): - - morph_image([inputs.branch_morph2], ['segments'], path+'/term_segments.svg', colors=False, draw_labels=False) - morph_image([inputs.branch_morph2], ['branches'], path+'/term_branch.svg', colors=False, draw_labels=False) - label_image(inputs.branch_morph2, [inputs.reg_cable_0_28], path+'/term_cable.svg', drawroot=False) - morph_image([inputs.label_morph], ['branches'], path+'/label_branch.svg') - - morph_image([inputs.label_morph], ['segments'], path+'/label_seg.svg') - morph_image([inputs.detached_morph], ['segments'], path+'/detached_seg.svg') - morph_image([inputs.stacked_morph], ['segments'], path+'/stacked_seg.svg',lab_sc=1.2) - morph_image([inputs.swc_morph], ['segments'], path+'/swc_morph.svg',lab_sc=1.5) - - morph_image([inputs.label_morph, inputs.label_morph], ['segments', 'branches'], path+'/label_morph.svg') - morph_image([inputs.detached_morph, inputs.detached_morph], ['segments', 'branches'], path+'/detached_morph.svg') - morph_image([inputs.stacked_morph, inputs.stacked_morph], ['segments', 'branches'], path+'/stacked_morph.svg') - morph_image([inputs.sphere_morph, inputs.sphere_morph], ['segments', 'branches'], path+'/sphere_morph.svg',lab_sc=1.5) - morph_image([inputs.branch_morph1, inputs.branch_morph1], ['segments', 'branches'], path+'/branch_morph1.svg',lab_sc=1) - morph_image([inputs.branch_morph2, inputs.branch_morph2], ['segments', 'branches'], path+'/branch_morph2.svg',lab_sc=1) - morph_image([inputs.branch_morph3, inputs.branch_morph3], ['segments', 'branches'], path+'/branch_morph3.svg',lab_sc=1) - morph_image([inputs.branch_morph4, inputs.branch_morph4], ['segments', 'branches'], path+'/branch_morph4.svg',lab_sc=1) - morph_image([inputs.yshaped_morph, inputs.yshaped_morph], ['segments', 'branches'], path+'/yshaped_morph.svg',lab_sc=1.5) - morph_image([inputs.ysoma_morph1, inputs.ysoma_morph1], ['segments', 'branches'], path+'/ysoma_morph1.svg') - morph_image([inputs.ysoma_morph2, inputs.ysoma_morph2], ['segments', 'branches'], path+'/ysoma_morph2.svg') - morph_image([inputs.ysoma_morph3, inputs.ysoma_morph3], ['segments', 'branches'], path+'/ysoma_morph3.svg') +def generate(path=""): + + morph_image( + [inputs.branch_morph2], + ["segments"], + path + "/term_segments.svg", + colors=False, + draw_labels=False, + ) + morph_image( + [inputs.branch_morph2], + ["branches"], + path + "/term_branch.svg", + colors=False, + draw_labels=False, + ) + label_image( + inputs.branch_morph2, + [inputs.reg_cable_0_28], + path + "/term_cable.svg", + drawroot=False, + ) + + morph_image([inputs.label_morph], ["branches"], path + "/label_branch.svg") + + morph_image([inputs.label_morph], ["segments"], path + "/label_seg.svg") + morph_image([inputs.detached_morph], ["segments"], path + "/detached_seg.svg") + morph_image( + [inputs.stacked_morph], ["segments"], path + "/stacked_seg.svg", lab_sc=1.2 + ) + morph_image([inputs.swc_morph], ["segments"], path + "/swc_morph.svg", lab_sc=1.5) + + morph_image( + [inputs.label_morph, inputs.label_morph], + ["segments", "branches"], + path + "/label_morph.svg", + ) + morph_image( + [inputs.detached_morph, inputs.detached_morph], + ["segments", "branches"], + path + "/detached_morph.svg", + ) + morph_image( + [inputs.stacked_morph, inputs.stacked_morph], + ["segments", "branches"], + path + "/stacked_morph.svg", + ) + morph_image( + [inputs.sphere_morph, inputs.sphere_morph], + ["segments", "branches"], + path + "/sphere_morph.svg", + lab_sc=1.5, + ) + morph_image( + [inputs.branch_morph1, inputs.branch_morph1], + ["segments", "branches"], + path + "/branch_morph1.svg", + lab_sc=1, + ) + morph_image( + [inputs.branch_morph2, inputs.branch_morph2], + ["segments", "branches"], + path + "/branch_morph2.svg", + lab_sc=1, + ) + morph_image( + [inputs.branch_morph3, inputs.branch_morph3], + ["segments", "branches"], + path + "/branch_morph3.svg", + lab_sc=1, + ) + morph_image( + [inputs.branch_morph4, inputs.branch_morph4], + ["segments", "branches"], + path + "/branch_morph4.svg", + lab_sc=1, + ) + morph_image( + [inputs.yshaped_morph, inputs.yshaped_morph], + ["segments", "branches"], + path + "/yshaped_morph.svg", + lab_sc=1.5, + ) + morph_image( + [inputs.ysoma_morph1, inputs.ysoma_morph1], + ["segments", "branches"], + path + "/ysoma_morph1.svg", + ) + morph_image( + [inputs.ysoma_morph2, inputs.ysoma_morph2], + ["segments", "branches"], + path + "/ysoma_morph2.svg", + ) + morph_image( + [inputs.ysoma_morph3, inputs.ysoma_morph3], + ["segments", "branches"], + path + "/ysoma_morph3.svg", + ) ####################### locsets - label_image(inputs.label_morph, [inputs.ls_term, inputs.ls_rand_dend], path+'/locset_label_examples.svg') - label_image(inputs.label_morph, [inputs.reg_dend, inputs.reg_radlt5], path+'/region_label_examples.svg') - label_image(inputs.label_morph, [inputs.ls_root], path+'/root_label.svg') - label_image(inputs.label_morph, [inputs.ls_term], path+'/term_label.svg') - label_image(inputs.label_morph, [inputs.ls_loc15], path+'/location_15_label.svg') - label_image(inputs.label_morph, [inputs.ls_loc05], path+'/location_05_label.svg') - label_image(inputs.label_morph, [inputs.reg_rad36, inputs.ls_distal], path+'/distal_label.svg') - label_image(inputs.label_morph, [inputs.reg_rad36, inputs.ls_proximal], path+'/proximal_label.svg') - label_image(inputs.label_morph, [inputs.ls_uniform0, inputs.ls_uniform1], path+'/uniform_label.svg') - label_image(inputs.label_morph, [inputs.ls_branchmid], path+'/on_branches_label.svg') - label_image(inputs.label_morph, [inputs.ls_term, inputs.reg_tag3, inputs.ls_restrict], path+'/restrict_label.svg') - label_image(inputs.label_morph, [inputs.ls_term, inputs.ls_proximal_translate], path+'/proximal_translate_label.svg') - label_image(inputs.label_morph, [inputs.ls_loc05, inputs.ls_distal_translate_single, inputs.ls_distal_translate_multi], path+'/distal_translate_label.svg') + label_image( + inputs.label_morph, + [inputs.ls_term, inputs.ls_rand_dend], + path + "/locset_label_examples.svg", + ) + label_image( + inputs.label_morph, + [inputs.reg_dend, inputs.reg_radlt5], + path + "/region_label_examples.svg", + ) + label_image(inputs.label_morph, [inputs.ls_root], path + "/root_label.svg") + label_image(inputs.label_morph, [inputs.ls_term], path + "/term_label.svg") + label_image(inputs.label_morph, [inputs.ls_loc15], path + "/location_15_label.svg") + label_image(inputs.label_morph, [inputs.ls_loc05], path + "/location_05_label.svg") + label_image( + inputs.label_morph, + [inputs.reg_rad36, inputs.ls_distal], + path + "/distal_label.svg", + ) + label_image( + inputs.label_morph, + [inputs.reg_rad36, inputs.ls_proximal], + path + "/proximal_label.svg", + ) + label_image( + inputs.label_morph, + [inputs.ls_uniform0, inputs.ls_uniform1], + path + "/uniform_label.svg", + ) + label_image( + inputs.label_morph, [inputs.ls_branchmid], path + "/on_branches_label.svg" + ) + label_image( + inputs.label_morph, + [inputs.ls_term, inputs.reg_tag3, inputs.ls_restrict], + path + "/restrict_label.svg", + ) + label_image( + inputs.label_morph, + [inputs.ls_term, inputs.ls_proximal_translate], + path + "/proximal_translate_label.svg", + ) + label_image( + inputs.label_morph, + [ + inputs.ls_loc05, + inputs.ls_distal_translate_single, + inputs.ls_distal_translate_multi, + ], + path + "/distal_translate_label.svg", + ) ####################### regions - label_image(inputs.label_morph, [inputs.reg_empty, inputs.reg_all], path+'/nil_all_label.svg') - label_image(inputs.label_morph, [inputs.reg_tag1, inputs.reg_tag2, inputs.reg_tag3], path+'/tag_label.svg') - label_image(inputs.label_morph, [inputs.reg_tag1, inputs.reg_tag3], path+'/tag_label.svg') - label_image(inputs.label_morph, [inputs.reg_branch0, inputs.reg_branch3], path+'/branch_label.svg') - label_image(inputs.label_morph, [inputs.reg_segment0, inputs.reg_segment3], path+'/segment_label.svg') - label_image(inputs.label_morph, [inputs.reg_cable_1_01, inputs.reg_cable_1_31, inputs.reg_cable_1_37], path+'/cable_label.svg') - label_image(inputs.label_morph, [inputs.ls_proxint_in, inputs.reg_proxint], path+'/proxint_label.svg') - label_image(inputs.label_morph, [inputs.ls_proxint_in, inputs.reg_proxintinf], path+'/proxintinf_label.svg') - label_image(inputs.label_morph, [inputs.ls_distint_in, inputs.reg_distint], path+'/distint_label.svg') - label_image(inputs.label_morph, [inputs.ls_distint_in, inputs.reg_distintinf], path+'/distintinf_label.svg') - label_image(inputs.label_morph, [inputs.reg_lhs, inputs.reg_rhs, inputs.reg_or], path+'/union_label.svg') - label_image(inputs.label_morph, [inputs.reg_lhs, inputs.reg_rhs, inputs.reg_and], path+'/intersect_label.svg') - label_image(inputs.label_morph, [inputs.reg_radlt5], path+'/radiuslt_label.svg') - label_image(inputs.label_morph, [inputs.reg_radle5], path+'/radiusle_label.svg') - label_image(inputs.label_morph, [inputs.reg_radgt5], path+'/radiusgt_label.svg') - label_image(inputs.label_morph, [inputs.reg_radge5], path+'/radiusge_label.svg') + label_image( + inputs.label_morph, + [inputs.reg_empty, inputs.reg_all], + path + "/nil_all_label.svg", + ) + label_image( + inputs.label_morph, + [inputs.reg_tag1, inputs.reg_tag2, inputs.reg_tag3], + path + "/tag_label.svg", + ) + label_image( + inputs.label_morph, [inputs.reg_tag1, inputs.reg_tag3], path + "/tag_label.svg" + ) + label_image( + inputs.label_morph, + [inputs.reg_branch0, inputs.reg_branch3], + path + "/branch_label.svg", + ) + label_image( + inputs.label_morph, + [inputs.reg_segment0, inputs.reg_segment3], + path + "/segment_label.svg", + ) + label_image( + inputs.label_morph, + [inputs.reg_cable_1_01, inputs.reg_cable_1_31, inputs.reg_cable_1_37], + path + "/cable_label.svg", + ) + label_image( + inputs.label_morph, + [inputs.ls_proxint_in, inputs.reg_proxint], + path + "/proxint_label.svg", + ) + label_image( + inputs.label_morph, + [inputs.ls_proxint_in, inputs.reg_proxintinf], + path + "/proxintinf_label.svg", + ) + label_image( + inputs.label_morph, + [inputs.ls_distint_in, inputs.reg_distint], + path + "/distint_label.svg", + ) + label_image( + inputs.label_morph, + [inputs.ls_distint_in, inputs.reg_distintinf], + path + "/distintinf_label.svg", + ) + label_image( + inputs.label_morph, + [inputs.reg_lhs, inputs.reg_rhs, inputs.reg_or], + path + "/union_label.svg", + ) + label_image( + inputs.label_morph, + [inputs.reg_lhs, inputs.reg_rhs, inputs.reg_and], + path + "/intersect_label.svg", + ) + label_image(inputs.label_morph, [inputs.reg_radlt5], path + "/radiuslt_label.svg") + label_image(inputs.label_morph, [inputs.reg_radle5], path + "/radiusle_label.svg") + label_image(inputs.label_morph, [inputs.reg_radgt5], path + "/radiusgt_label.svg") + label_image(inputs.label_morph, [inputs.reg_radge5], path + "/radiusge_label.svg") + + ####################### iexpr + + label_image( + inputs.label_morph, + [inputs.iexpr_directional_loc, inputs.iexpr_prox_dis], + path + "/iexpr_prox_dis.svg", + ) + label_image( + inputs.label_morph, + [inputs.iexpr_directional_loc, inputs.iexpr_dist_dis], + path + "/iexpr_dist_dis.svg", + ) ####################### Tutorial examples - morph_image([inputs.tutorial_morph], ['segments'], path+'/tutorial_morph.svg') - morph_image([inputs.tutorial_network_ring_morph], ['segments'], path+'/tutorial_network_ring_morph.svg',lab_sc=6) + morph_image([inputs.tutorial_morph], ["segments"], path + "/tutorial_morph.svg") + morph_image( + [inputs.tutorial_morph], + ["segments"], + path + "/tutorial_morph_nolabels_nocolors.svg", + colors=False, + draw_labels=False, + ) + morph_image( + [inputs.tutorial_network_ring_morph], + ["segments"], + path + "/tutorial_network_ring_morph.svg", + lab_sc=6, + ) ####################### locsets - label_image(inputs.tutorial_morph, [inputs.tut_ls_root, inputs.tut_ls_terminal], path+'/tutorial_root_term.svg') - label_image(inputs.tutorial_morph, [inputs.tut_ls_custom_terminal, inputs.tut_ls_axon_terminal], path+'/tutorial_custom_axon_term.svg') - label_image(inputs.tutorial_network_ring_morph, [inputs.tut_network_ring_ls_synapse_site], path+'/tutorial_network_ring_synapse_site.svg', loc_sc=6) + label_image( + inputs.tutorial_morph, + [inputs.tut_ls_root, inputs.tut_ls_terminal], + path + "/tutorial_root_term.svg", + ) + label_image( + inputs.tutorial_morph, + [inputs.tut_ls_custom_terminal, inputs.tut_ls_axon_terminal], + path + "/tutorial_custom_axon_term.svg", + ) + label_image( + inputs.tutorial_network_ring_morph, + [inputs.tut_network_ring_ls_synapse_site], + path + "/tutorial_network_ring_synapse_site.svg", + loc_sc=6, + ) ####################### regions - label_image(inputs.tutorial_morph, [inputs.tut_reg_soma, inputs.tut_reg_axon, inputs.tut_reg_dend, inputs.tut_reg_last], path+'/tutorial_tag.svg') - label_image(inputs.tutorial_morph, [inputs.tut_reg_all, inputs.tut_reg_rad_gt], path+'/tutorial_all_gt.svg') - label_image(inputs.tutorial_morph, [inputs.tut_reg_custom], path+'/tutorial_custom.svg') - -if __name__ == '__main__': - generate('.') + label_image( + inputs.tutorial_morph, + [ + inputs.tut_reg_soma, + inputs.tut_reg_axon, + inputs.tut_reg_dend, + inputs.tut_reg_last, + ], + path + "/tutorial_tag.svg", + ) + label_image( + inputs.tutorial_morph, + [inputs.tut_reg_all, inputs.tut_reg_rad_gt], + path + "/tutorial_all_gt.svg", + ) + label_image( + inputs.tutorial_morph, [inputs.tut_reg_custom], path + "/tutorial_custom.svg" + ) + + +if __name__ == "__main__": + generate(".") diff --git a/doc/scripts/representation.py b/doc/scripts/representation.py index e29e9de5af..869d70692f 100644 --- a/doc/scripts/representation.py +++ b/doc/scripts/representation.py @@ -1,26 +1,34 @@ import math + def add_vec(u, v): - return (u[0]+v[0], u[1]+v[1]) + return (u[0] + v[0], u[1] + v[1]) + def norm_vec(v): - return math.sqrt(v[0]*v[0] + v[1]*v[1]) + return math.sqrt(v[0] * v[0] + v[1] * v[1]) + def sub_vec(u, v): - return (u[0]-v[0], u[1]-v[1]) + return (u[0] - v[0], u[1] - v[1]) + def rot90_vec(v): return (v[1], -v[0]) + def scal_vec(alpha, v): - return (alpha*v[0], alpha*v[1]) + return (alpha * v[0], alpha * v[1]) + def unit_vec(v): L = norm_vec(v) - return (v[0]/L, v[1]/L) + return (v[0] / L, v[1] / L) + def is_collocated(x, y): - return x[0]==y[0] and x[1]==y[1] + return x[0] == y[0] and x[1] == y[1] + class Segment: def __init__(self, prox, dist, tag): @@ -32,7 +40,11 @@ def __init__(self, prox, dist, tag): def location(self, pos): b = self.prox e = self.dist - return (b[0]+pos*(e[0]-b[0]), b[1]+pos*(e[1]-b[1]), b[2]+pos*(e[2]-b[2])) + return ( + b[0] + pos * (e[0] - b[0]), + b[1] + pos * (e[1] - b[1]), + b[2] + pos * (e[2] - b[2]), + ) def corners(self, prox=0, dist=1): b = self.location(prox) @@ -45,13 +57,13 @@ def corners(self, prox=0, dist=1): p2 = add_vec(e, scal_vec(re, o)) p3 = sub_vec(e, scal_vec(re, o)) p4 = sub_vec(b, scal_vec(rb, o)) - return [p1,p2,p3,p4] + return [p1, p2, p3, p4] def __str__(self): - return 'seg({}, {})'.format(self.prox, self.dist) + return "seg({}, {})".format(self.prox, self.dist) def __repr__(self): - return 'seg({}, {})'.format(self.prox, self.dist) + return "seg({}, {})".format(self.prox, self.dist) # Represent and query a cable cell branch for rendering. @@ -62,8 +74,8 @@ def __repr__(self): # The section representation makes things a bit messy, but it is required # to be able to draw morphologies with gaps. -class Branch: +class Branch: def __init__(self, sections): self.sections = sections length = 0 @@ -81,10 +93,10 @@ def minmax(self): for seg in sec: px, py, pr = seg.prox dx, dy, dr = seg.dist - minx = min(minx, px-pr, dx-dr) - miny = min(miny, py-pr, dy-dr) - maxx = max(maxx, px+pr, dx+dr) - maxy = max(maxy, py+pr, dy+dr) + minx = min(minx, px - pr, dx - dr) + miny = min(miny, py - pr, dy - dr) + maxx = max(maxx, px + pr, dx + dr) + maxy = max(maxy, py + pr, dy + dr) return (minx, maxx, miny, maxy) @@ -96,11 +108,11 @@ def minmax(self): # seg: index of the segment in the section # pos: relative position of the location inside the segment def segment_id(self, pos): - assert(pos>=0 and pos<=1) - if pos==0: + assert pos >= 0 and pos <= 1 + if pos == 0: return (0, 0, 0.0) - if pos==1: - return (len(self.sections)-1, len(self.sections[-1])-1, 1.0) + if pos == 1: + return (len(self.sections) - 1, len(self.sections[-1]) - 1, 1.0) l = pos * self.length part = 0 @@ -108,14 +120,14 @@ def segment_id(self, pos): sec = self.sections[secid] for segid in range(len(sec)): seg = sec[segid] - if part+seg.length >= l: - segpos = (l-part)/seg.length + if part + seg.length >= l: + segpos = (l - part) / seg.length return (secid, segid, segpos) part += seg.length def location(self, pos): - assert(pos>=0 and pos<=1) + assert pos >= 0 and pos <= 1 secid, segid, segpos = self.segment_id(pos) return self.sections[secid][segid].location(segpos) @@ -124,8 +136,8 @@ def sec_outline(self, secid, pseg, ppos, dseg, dpos): sec = self.sections[secid] # Handle the case where the cable is in one segment - if pseg==dseg: - assert(ppos<=dpos) + if pseg == dseg: + assert ppos <= dpos return sec[pseg].corners(ppos, dpos) left = [] @@ -137,7 +149,7 @@ def sec_outline(self, secid, pseg, ppos, dseg, dpos): right += [p4, p3] # Handle the full segments in the middle - for segid in range(pseg+1, dseg): + for segid in range(pseg + 1, dseg): p1, p2, p3, p4 = sec[segid].corners() left += [p1, p2] right += [p4, p3] @@ -150,35 +162,36 @@ def sec_outline(self, secid, pseg, ppos, dseg, dpos): right.reverse() return left + right - - # Return outline of all (sub)sections in the branch between the relative # locations: 0 ≤ prox ≤ dist ≤ 1 def outline(self, prox=0, dist=1): psec, pseg, ppos = self.segment_id(prox) dsec, dseg, dpos = self.segment_id(dist) - if psec==dsec and pseg==dseg: + if psec == dsec and pseg == dseg: return [self.sections[psec][pseg].corners(ppos, dpos)] - if psec==dsec: + if psec == dsec: return [self.sec_outline(psec, pseg, ppos, dseg, dpos)] - outlines = [self.sec_outline(psec, pseg, ppos, len(self.sections[psec])-1, 1)] - for secid in range(psec+1,dsec): - outlines.append(self.sec_outline(secid, 0, 0, len(self.sections[secid])-1, 1)) + outlines = [self.sec_outline(psec, pseg, ppos, len(self.sections[psec]) - 1, 1)] + for secid in range(psec + 1, dsec): + outlines.append( + self.sec_outline(secid, 0, 0, len(self.sections[secid]) - 1, 1) + ) outlines.append(self.sec_outline(dsec, 0, 0, dseg, dpos)) return outlines + # A morphology for rendering is a flat list of branches, with no # parent-child information for the branches. # Each branch is itself a list of sections, where each section # represents a sequence of segments with no gaps. + def make_morph(branches): m = [] for branch_sections in branches: m.append(Branch(branch_sections)) return m - diff --git a/doc/static/domarrow.js b/doc/static/domarrow.js new file mode 100644 index 0000000000..08494e997e --- /dev/null +++ b/doc/static/domarrow.js @@ -0,0 +1,260 @@ +(()=>{ + function getNumberOrDef(val, def) { + return typeof val === 'number' && !isNaN(val) ? val : def; + } + + function isVisible(element) { + return element && element.style.visibility !== 'hidden'; + } + + function inside(minX, minY, maxX, maxY, x1, y1) { + return minX <= x1 && x1 <= maxX && minY <= y1 && y1 <= maxY; + } + + function intersectionPoint (x1, y1, x2, y2, minX, minY, maxX, maxY) { + var min = Math.min, max = Math.max; + var good = inside.bind(null, min(x1, x2), min(y1, y2), max(x1, x2), max(y1, y2)); + + if ((x1 <= minX && x2 <= minX) || (y1 <= minY && y2 <= minY) || (x1 >= maxX && x2 >= maxX) || (y1 >= maxY && y2 >= maxY) || (inside(minX, minY, maxX, maxY, x1, y1) && inside(minX, minY, maxX, maxY, x2, y2))) + return null; + + var m = (y2 - y1) / (x2 - x1); + var y = m * (minX - x1) + y1; + if (minY < y && y < maxY && good(minX, y)) return {x: minX, y:y}; + + y = m * (maxX - x1) + y1; + if (minY < y && y < maxY && good(maxX, y)) return {x: maxX, y:y}; + + var x = (minY - y1) / m + x1; + if (minX < x && x < maxX && good(x, minY)) return {x: x, y:minY}; + + x = (maxY - y1) / m + x1; + if (minX < x && x < maxX && good(x, maxY)) return {x: x, y:maxY}; + + return null; + } + + + function adjustLine(from, to, line, trafo){ + var color = trafo && trafo.color || 'black'; + var W = trafo && trafo.width || 2; + + var fromB = parseFloat(from.style.top) ? null : from.getBoundingClientRect(); + var toB = parseFloat(to.style.top) ? null : to.getBoundingClientRect(); + var fromBStartY = (fromB ? window.scrollY + fromB.top : parseFloat(from.style.top)); + var fromBStartX = (fromB ? window.scrollX + fromB.left : parseFloat(from.style.left)); + var toBStartY = (toB ? window.scrollY + toB.top : parseFloat(to.style.top)); + var toBStartX = (toB ? window.scrollX + toB.left : parseFloat(to.style.left)); + var fromBWidth = (fromB ? fromB.width : parseFloat(from.style.width) || from.offsetWidth); + var fromBHeight = (fromB ? fromB.height : parseFloat(from.style.height) || from.offsetHeight); + var toBWidth = (toB ? toB.width : parseFloat(to.style.width) || to.offsetWidth); + var toBHeight = (toB ? toB.height : parseFloat(to.style.height) || to.offsetHeight); + + var fT = fromBStartY + fromBHeight * getNumberOrDef(trafo && trafo.fromY, getNumberOrDef(trafo, 0.5)); + var tT = toBStartY + toBHeight * getNumberOrDef(trafo && trafo.toY, getNumberOrDef(trafo, 0.5)); + var fL = fromBStartX + fromBWidth * getNumberOrDef(trafo && trafo.fromX, getNumberOrDef(trafo, 0.5)); + var tL = toBStartX + toBWidth * getNumberOrDef(trafo && trafo.toX, getNumberOrDef(trafo, 0.5)); + + var CA = Math.abs(tT - fT); + var CO = Math.abs(tL - fL); + var H = Math.sqrt(CA*CA + CO*CO); + var ANG = 180 / Math.PI * Math.acos( CO/H ); + + if((fT >= tT || fL >= tL) && (tT >= fT || tL >= fL)) { + ANG *= -1; + } + + if (trafo && trafo.onlyVisible) { + var arrangeFrom = intersectionPoint(fL, fT, tL, tT, fromBStartX, fromBStartY, fromBStartX + fromBWidth, fromBStartY + fromBHeight); + var arrangeTo = intersectionPoint(fL, fT, tL, tT, toBStartX, toBStartY, toBStartX + toBWidth, toBStartY + toBHeight); + + if (arrangeFrom) { + fL = arrangeFrom.x; + fT = arrangeFrom.y; + } + if (arrangeTo) { + tL = arrangeTo.x; + tT = arrangeTo.y; + } + CA = Math.abs(tT - fT); + CO = Math.abs(tL - fL); + H = Math.sqrt(CA*CA + CO*CO); + } + + var top = (tT+fT)/2 - W/2 - 60; + var left = (tL+fL)/2 - H/2; + + var arrows = [...line.getElementsByClassName('arrow')]; + + var needSwap = (fL > tL || (fL == tL && fT < tT)); + var arrowFw = needSwap && isVisible(arrows[0]) && arrows[0] || !needSwap && isVisible(arrows[1]) && arrows[1]; + var arrowBw = !needSwap && isVisible(arrows[0]) && arrows[0] || needSwap && isVisible(arrows[1]) && arrows[1]; + if (arrowFw) { + arrowFw.classList.remove('arrow-bw'); + arrowFw.classList.add('arrow-fw'); + arrowFw.style.borderRightColor = color; + arrowFw.style.top = W/2-6 + "px"; + } + if (arrowBw) { + arrowBw.classList.remove('arrow-fw'); + arrowBw.classList.add('arrow-bw'); + arrowBw.style.borderLeftColor = color; + arrowBw.style.top = W/2-6 + "px"; + } + line.style.display = "none"; + line.style["-webkit-transform"] = 'rotate('+ ANG +'deg)'; + line.style["-moz-transform"] = 'rotate('+ ANG +'deg)'; + line.style["-ms-transform"] = 'rotate('+ ANG +'deg)'; + line.style["-o-transform"] = 'rotate('+ ANG +'deg)'; + line.style["-transform"] = 'rotate('+ ANG +'deg)'; + line.style.top = top+'px'; + line.style.left = left+'px'; + line.style.width = H + 'px'; + line.style.height = W + 'px'; + line.style.background = "linear-gradient(to right, " + + (arrowFw ? "transparent" : color) +" 11px, " + + color + " 11px " + (H - 11) + "px, " + + (arrowBw ? "transparent" : color) + " " + (H - 11) + "px 100%)"; + line.style.display = "initial"; + } + + function repaintConnection(connectionElement) { + var fromQ = connectionElement.getAttribute('from'); + var fromE = document.querySelector(fromQ); + var toQ = connectionElement.getAttribute('to'); + var toE = document.querySelector(toQ); + connectedObserver.observe(fromE, {attributes:true}); + connectedObserver.observe(toE, {attributes:true}); + + var lineE = connectionElement.getElementsByClassName('line')[0]; + if (!lineE) { + lineE = document.createElement('div'); + lineE.classList.add('line'); + connectionElement.appendChild(lineE); + } + var needTail = connectionElement.hasAttribute('tail'); + var needHead = connectionElement.hasAttribute('head'); + var arrows = lineE.getElementsByClassName('arrow'); + var tail = arrows[0]; + var head = arrows[1]; + if (!tail && (needHead || needTail)) { + tail = document.createElement('div'); + tail.classList.add('arrow'); + lineE.appendChild(tail); + } + + if (!head && needHead) { + head = document.createElement('div'); + head.classList.add('arrow'); + lineE.appendChild(head); + } + + tail && (tail.style.visibility = needTail ? 'visible' : 'hidden'); + head && (head.style.visibility = needHead ? 'visible' : 'hidden'); + + var textE = lineE.getElementsByClassName('text')[0]; + var textMessage = connectionElement.getAttribute('text'); + + if (!textE && textMessage) { + textE = document.createElement('div'); + textE.classList.add('text'); + lineE.appendChild(textE); + } + if (textE && textE.innerText != textMessage) { + textE.innerText = textMessage; + } + + adjustLine(fromE, toE, lineE, { + color: connectionElement.getAttribute('color'), + onlyVisible: connectionElement.hasAttribute('onlyVisible'), + fromX: parseFloat(connectionElement.getAttribute('fromX')), + fromY: parseFloat(connectionElement.getAttribute('fromY')), + toX: parseFloat(connectionElement.getAttribute('toX')), + toY: parseFloat(connectionElement.getAttribute('toY')), + width: parseFloat(connectionElement.getAttribute('width')) + }); + } + + function repaintWithoutObserve(tag) { + connectionObserver.observe(tag, {attributeFilter: []}); + repaintConnection(tag); + connectionObserver.observe(tag, {attributes:true, childList:true, subtree: true}); + } + + function createOne(newElement) { + connectionElements.push(newElement); + repaintConnection(newElement); + connectionObserver.observe(newElement, {attributes:true, childList:true, subtree: true}); + } + + function create() { + bodyObserver.observe(document.body, {childList:true, subtree: true}); + [...document.body.getElementsByTagName('connection')].forEach(createOne); + } + + function removeConnection(tag) { + for(var i = connectionElements.length - 1; i >= 0; i--) + if(connectionElements[i] === tag) + connectionElements.splice(i, 1); + + connectionObserver.observe(tag, {attributeFilter: []}); + } + + function changedConnectedTag(changes) { + changes.forEach(e => { + var changedElem = e.target; + var wasConnection = false; + for (var i = 0; i < connectionElements.length; ++i) { + var fromE = document.querySelector(connectionElements[i].getAttribute('from')); + if (fromE === changedElem) { + wasConnection = true; + repaintWithoutObserve(connectionElements[i]); + continue; + } + var toE = document.querySelector(connectionElements[i].getAttribute('to')); + if (toE === changedElem) { + wasConnection = true; + repaintWithoutObserve(connectionElements[i]); + } + } + if (!wasConnection) { + connectionObserver.observe(changedElem, {attributeFilter: []}); + } + }); + } + + function changedConnectionTag(changes) { + changes.forEach(e => { + var conn = e.target; + if (conn.tagName.toLowerCase() !== 'connection' && e.attributeName === 'class') + ; + while (conn && conn.tagName.toLowerCase() !== 'connection') + conn = conn.parentElement; + if (!conn) return; + repaintWithoutObserve(conn); + }); + } + + function bodyNewElement(changes) { + changes.forEach(e => { + e.removedNodes.forEach(n => { + if (n.tagName && n.tagName.toLowerCase() === 'connection') + removeConnection(n); + }); + e.addedNodes.forEach(n => { + if (n.tagName && n.tagName.toLowerCase() === 'connection') + createOne(n); + }); + }); + } + + var connectionElements = []; + var MutationObserver = window.MutationObserver || + window.WebKitMutationObserver || window.MozMutationObserver; + var bodyObserver = new MutationObserver(bodyNewElement); + var connectionObserver = new MutationObserver(changedConnectionTag); + var connectedObserver = new MutationObserver(changedConnectedTag); + document.body && create() || window.addEventListener("load", create); +})(); + + diff --git a/doc/static/htmldiag.css b/doc/static/htmldiag.css new file mode 100644 index 0000000000..b496d36807 --- /dev/null +++ b/doc/static/htmldiag.css @@ -0,0 +1,138 @@ +.diag-cont { + display: flex; +} +.diag-cont code { + font-family: monospace; + background-color: rgb(255, 231, 196, 0.5); + border: 1px solid rgb(0, 0, 0, 0.5); +} +.diag-cont .diag-note { + background-color: rgb(221, 191, 146); + border-radius: 5px; + border: none; + position: absolute; + top: -60px; + left: 25%; +} +.diag-cont .diag-left { + border: none; + background-color: rgb(195, 221, 146); + border-radius: 10px 10px 10px 0px; + float: left; + width: 75%; +} +.diag-cont .diag-left2 { + border: none; + background-color: rgb(194, 146, 221); + border-radius: 10px 10px 10px 0px; + float: left; + width: 75%; +} +.diag-cont .diag-right { + border: none; + background-color: rgb(221, 164, 146); + border-radius: 10px 10px 0px 10px; + float: right; + width: 75%; +} +.diag-cont .diag-right2 { + border: none; + background-color: rgb(146, 151, 221); + border-radius: 10px 10px 0px 10px; + float: right; + width: 75%; +} +.diag-cont .diag-right3 { + border: none; + background-color: rgb(255, 231, 196); + border-radius: 10px 10px 0px 10px; + float: right; + width: 75%; +} +.diag-cont div { + border: 1px solid rgb(0, 0, 0, 0.5); +} +.diag-dim { + opacity: 0.3; +} +.diag-col { + border: none !important; + padding: 0 !important; + margin: 0 !important; + background: none !important; +} +.diag-cont > div { + flex: 1; + margin: 5px; + padding: 5px; + position: relative; + background-color: rgb(245, 245, 245); +} +.diag-cont div div { + margin: 5px; + padding: 5px; + position: relative; + background-color: rgb(255, 255, 255); +} +.diag-spacer { + border: none !important; + background: none !important; + height: 1em; +} +.diag-caption { + width: 90%; + text-align: justify; + font-style: italic; + font-size: 90%; + margin: 0 auto 20px; +} + +.diag-cont input[type='checkbox'] { + display: none; +} +.diag-cont label { + display: block; +} +.diag-cont label::before { + content: '+'; + display: inline-block; +} +.diag-cont input[type=checkbox]:checked+label::before { + content: '−'; +} +.diag-cont input[type=checkbox]+label~div { + max-height: 0px; + overflow: hidden; +} +.diag-cont input[type=checkbox]:checked+label~div{ + max-height: 100%; +} + +connection .line .arrow { + top: -5px; + height: 0px; + width: 0px; + position: absolute; + border-bottom: 6px solid transparent; + border-top: 6px solid transparent; + background-clip: border-box; +} +connection .line .arrow-fw { + border-right: 12px solid black; +} +connection .line .arrow-bw { + left: 100%; + border-left: 12px solid black; + transform: translateX(-12px); +} +connection .line .text { + position: absolute; + top: 100%; + left: 50%; + transform: translate(-50%, -100%); +} +connection .line { + position:absolute; + height:2px; + background-color: black; +} diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index b5a897deea..0e54ec31b2 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -3,28 +3,66 @@ Tutorials ========= -.. Note:: - You can find some examples of full Arbor simulations in the ``python/examples`` directory of the - `Arbor repository `_. +Grouped loosely by primary (but not exclusive!) focus, we have a set of tutorials to help you learn by doing. - The examples use ``pandas`` and ``seaborn`` for analysis and plotting which are expected to be - installed independently from Arbor. +You can find some examples of full Arbor simulations in the ``python/examples`` directory of the +`Arbor repository `_. - In an interactive Python interpreter, you can use ``help()`` on any class or function to get its - documentation. (Try, ``help(arbor.simulation)``, for example). +The examples use ``pandas``, ``seaborn`` and ``LFPykit`` for analysis and plotting which are expected to be +installed independently from Arbor. -.. Todo:: - Add more in-depth tutorial-like pages building up examples here. +In an interactive Python interpreter, you can use ``help()`` on any class or function to get its +documentation. (Try, ``help(arbor.simulation)``, for example). + +Cells +----- .. toctree:: :maxdepth: 1 - :caption: Tutorials single_cell_model - single_cell_recipe single_cell_detailed - single_cell_detailed_recipe single_cell_cable + single_cell_allen + +Recipes +------- + +.. toctree:: + :maxdepth: 1 + + single_cell_recipe + single_cell_detailed_recipe + +Networks +-------- + +.. toctree:: + :maxdepth: 1 + network_ring + network_two_cells_gap_junctions + +Probes +------ + +.. toctree:: + :maxdepth: 1 + + probe_lfpykit + +Hardware +-------- + +.. toctree:: + :maxdepth: 1 + network_ring_mpi - two_cells_gap_junctions + network_ring_gpu + +Demonstrations +-------------- + +We try to collect models scientists have built in our `contributor space `_. +In addition to the tutorials, browsing these models should give you a good idea of what's possible with Arbor +and find get in contact with other Arbor users. diff --git a/doc/tutorial/network_ring.rst b/doc/tutorial/network_ring.rst index 6c650ae1ac..e7170c1252 100644 --- a/doc/tutorial/network_ring.rst +++ b/doc/tutorial/network_ring.rst @@ -27,7 +27,7 @@ We construct the following :term:`morphology` and label the soma and dendrite: .. literalinclude:: ../../python/example/network_ring.py :language: python - :lines: 18-37 + :lines: 20-46 In step **(2)** we create a :term:`label` for both the root and the site of the synapse. These locations will form the endpoints of the connections between the cells. @@ -40,7 +40,7 @@ These locations will form the endpoints of the connections between the cells. .. literalinclude:: ../../python/example/network_ring.py :language: python - :lines: 39-42 + :lines: 48-58 After we've created a basic :py:class:`arbor.decor`, step **(3)** places a synapse with an exponential decay (``'expsyn'``) on the ``'synapse_site'``. The synapse is given the label ``'syn'``, which is later used to form :py:class:`arbor.connection` objects terminating *at* the cell. @@ -63,7 +63,7 @@ Step **(4)** places a spike detector at the ``'root'``. The detector is given th .. literalinclude:: ../../python/example/network_ring.py :language: python - :lines: 44-59 + :lines: 60-69 The recipe ********** @@ -73,8 +73,7 @@ The recipe is where the different cells and the :ref:`connections `, the main differences -are connecting the cells **(8)**, returning a configurable number of cells **(6)** and returning a new cell per ``gid`` **(7)** -(``make_cable_cell()`` returns the cell above). +are connecting the cells **(8)**, returning a configurable number of cells **(6)** and returning a new cell per ``gid`` **(7)**. Step **(8)** creates an :py:class:`arbor.connection` between consecutive cells. If a cell has gid ``gid``, the previous cell has a gid ``(gid-1)%self.ncells``. The connection has a weight of 0.01 (inducing a conductance of 0.01 μS @@ -108,15 +107,23 @@ Step **(11)** instantiates the recipe with 4 cells. .. literalinclude:: ../../python/example/network_ring.py :language: python - :lines: 61-111 + :lines: 74-122 The execution ************* -To create a simulation, we must create an :class:`arbor.context` and :py:class:`arbor.domain_decomposition`. +To create a simulation, we need at minimum to supply the recipe, and in addition can supply a :class:`arbor.context` +and :py:class:`arbor.domain_decomposition`. The first lets Arbor know what hardware it should use, the second how to +destribute the work over that hardware. By default, contexts are configured to use 1 thread and domain decompositons to +divide work equally over all threads. -Step **(12)** creates a default execution context, and uses the :func:`arbor.partition_load_balance` to create a -default domain decomposition. You can print the objects to see what defaults they produce on your system. +Step **(12)** initalizes the ``threads`` parameter of :class:`arbor.context` with the ``avail_threads`` flag. By supplying +this flag, a context is constructed that will use all locally available threads. On your local machine this will match the +number of logical cores in your system. Especially with large numbers +of cells you will notice the speed-up. (You could instantiate the recipe with 5000 cells and observe the difference. Don't +forget to turn of plotting if you do; it will take more time to generate the image then to run the actual simulation!) +If no domain decomposition is specified, a default one distributing work equally is created. This is sufficient for now. +You can print the objects to see what defaults they produce on your system. Step **(13)** sets all spike generators to record using the :py:class:`arbor.spike_recording.all` policy. This means the timestamps of the generated events will be kept in memory. Be default, these are discarded. @@ -124,9 +131,9 @@ This means the timestamps of the generated events will be kept in memory. Be def In addition to having the timestamps of spikes, we want to extract the voltage as a function of time. Step **(14)** sets the probes (step **10**) to measure at a certain schedule. This is sometimes described as -attaching a :term:`sampler` to a :term:`probe`. :py:func:`arbor.simulation.sample` expects a :term:`probe id` and the -desired schedule (here: a recording frequency of 10 kHz, or a ``dt`` of 0.1 ms). Note that the probe id is a separate index from those of -:term:`connection` endpoints; probe ids correspond to the index of the list produced by +attaching a :term:`sampler` to a :term:`probe`. :py:func:`arbor.simulation.sample` expects a :term:`probeset id` and the +desired schedule (here: a recording frequency of 10 kHz, or a ``dt`` of 0.1 ms). Note that the probeset id is a separate index from those of +:term:`connection` endpoints; probeset ids correspond to the index of the list produced by :py:func:`arbor.recipe.probes` on cell ``gid``. :py:func:`arbor.simulation.sample` returns a handle to the :term:`samples ` that will be recorded. We store @@ -136,7 +143,7 @@ Step **(15)** executes the simulation for a duration of 100 ms. .. literalinclude:: ../../python/example/network_ring.py :language: python - :lines: 113-126 + :lines: 124-136 The results *********** @@ -145,7 +152,7 @@ Step **(16)** prints the timestamps of the spikes: .. literalinclude:: ../../python/example/network_ring.py :language: python - :lines: 128-131 + :lines: 138-141 Step **(17)** generates a plot of the sampling data. :py:func:`arbor.simulation.samples` takes a ``handle`` of the probe we wish to examine. It returns a list @@ -157,7 +164,7 @@ It could have described a :term:`locset`.) .. literalinclude:: ../../python/example/network_ring.py :language: python - :lines: 133-141 + :lines: 143- Since we have created ``ncells`` cells, we have ``ncells`` traces. We should be seeing phase shifted traces, as the action potential propagated through the network. @@ -170,4 +177,4 @@ We plot the results using pandas and seaborn: The full code ************* -You can find the full code of the example at ``python/examples/network_ring.py``. +You can find the full code of the example at ``python/example/network_ring.py``. diff --git a/doc/tutorial/network_ring_gpu.rst b/doc/tutorial/network_ring_gpu.rst new file mode 100644 index 0000000000..1f649ac775 --- /dev/null +++ b/doc/tutorial/network_ring_gpu.rst @@ -0,0 +1,135 @@ +.. _tutorialmpi: + +GPU and profiling +================= + +In this example, the ring network created in an :ref:`earlier tutorial ` will be used to run the model with a GPU. In addition, it is shown how to profile the performance difference. Only the differences with that tutorial will be described. + +.. Note:: + + **Concepts covered in this example:** + + 1. Building a :py:class:`arbor.context` that'll use a GPU. + This requires that you have built Arbor with GPU support enabled. + 2. Build a :class:`arbor.domain_decomposition` and provide a :class:`arbor.partition_hint`. + 3. Profile an Arbor simulation using :class:`arbor.meter_manager`. + +The hardware context +******************** + +An :ref:`execution context ` describes the hardware resources on which the simulation will run. +It contains the thread pool used to parallelise work on the local CPU, and optionally describes GPU resources +and the MPI communicator for distributed simulations. In some other examples, the :class:`arbor.single_cell_model` +object created the execution context :class:`arbor.context` behind the scenes. The details of the execution +context can be customized by the user. We may specify the number of threads in the thread pool; determine the +id of the GPU to be used; or create our own MPI communicator. + +Step **(11)** creates a hardware context where we set the :py:attr:`~arbor.proc_allocation.gpu_id`. This requires +that you have built Arbor manually, with GPU support (See :ref:`here ` how to do that). On a regular +consumer device with a single GPU, the index you should pass is ``0``. Change the value to run the example with and +without GPU. + +.. literalinclude:: ../../python/example/network_ring_gpu.py + :language: python + :lines: 123-127 + +Profiling +********* + +Arbor comes with a :class:`arbor.meter_manager` to help you profile your simulations. In this case, you can run the +example with ``gpu_id=None`` and ``gpu_id=0`` and observe the difference with the :class:`~arbor.meter_manager`. + +Step **(12)** sets up the meter manager and starts it using the (only) context. This way, only Arbor related execution is measured, not Python code. + +Step **(13)** instantiates the recipe and sets the first checkpoint on the meter manager. We now have the time it took to construct the recipe. + +.. literalinclude:: ../../python/example/network_ring_gpu.py + :language: python + :lines: 129-136 + +The domain decomposition +************************ + +The domain decomposition describes the distribution of the cells over the available computational resources. +The :class:`arbor.single_cell_model` also handled that without our knowledge in the previous examples. +Now, we have to define it ourselves. + +The :class:`arbor.domain_decomposition` class can be manually created by the user, by deciding which cells +go on which ranks. Or we can use a load balancer that can partition the cells across ranks according to +some rules. Arbor provides :class:`arbor.partition_load_balance`, which, using the recipe and execution +context, creates the :class:`arbor.domain_decomposition` object for us. + +A way to customize :class:`arbor.partition_load_balance` is by providing a :class:`arbor.partition_hint`. They let +you configure how cells are distributed over the resources in the :class:`~arbor.context`, but without requiring you +to know the precise configuration of a :class:`~arbor.context` up front. Whether you run your simulation on your +laptop CPU, desktop GPU, CPU cluster of GPU cluster, using :class:`partition hints` you can +just say: use GPUs, if available. You only have to change the :class:`~arbor.context` to actually define which +hardware Arbor will execute on. + +Step **(14)** creates a :class:`arbor.partition_hint`, and tells it to put 1000 cells in a groups allocated to GPUs, +and to prefer the utilisation of the GPU if present. In fact, the default distribution strategy of +:class:`arbor.partition_load_balance` already spreads out cells as evenly as possible over CPUs, and groups +(up to 1000) on GPUs, so strictly speaking it was not necesary to give that part of the hint. +Lastly, a dictionary is created with which hints are assigned to a particular :class:`arbor.cell_kind`. +Different kinds may favor different execution, hence the option. +In this simulation, there are only :class:`arbor.cell_kind.cable`, so we assign the hint to that kind. + +Step **(15)** creates a :class:`arbor.partition_load_balance` with the recipe, context and hints created above. +Another checkpoint will help us understand how long creating the load balancer took. + +.. literalinclude:: ../../python/example/network_ring_gpu.py + :language: python + :lines: 138-148 + + +The simulation +************** + +Step **(16)** creates a :class:`arbor.simulation`, sets the spike recorders to record, creates a :term:`handle` +to their eventual results and makes another checkpoint. + +.. literalinclude:: ../../python/example/network_ring_gpu.py + :language: python + :lines: 150-154 + +The execution +************* + +Step **(17)** runs the simulation. Since we have more cells this time, which are connected in series, +it will take some time for the action potential to propagate. In the :ref:`ring network ` +we could see it takes about 5 ms for the signal to propagate through one cell, so let's set the runtime to +``5*ncells``. Then, another checkpoint, so that we'll know how long the simulation took. + +.. literalinclude:: ../../python/example/network_ring_gpu.py + :language: python + :lines: 156-159 + +The results +*********** + +The scientific results should be similar, other than number of cells, to those in :ref:`ring network `, +so we'll not discuss them here. Let's turn our attention to the :class:`~arbor.meter_manager`. + +.. literalinclude:: ../../python/example/network_ring_gpu.py + :language: python + :lines: 161-163 + +Step **(18)** shows how :class:`arbor.meter_report` can be used to read out the :class:`~arbor.meter_manager`. +It generates a table with the time between checkpoints. As an example, the following table is the result of a run +on a 2019 laptop CPU: + +:: + + ---- meters ------------------------------------------------------------------------------- + meter time(s) memory(MB) + ------------------------------------------------------------------------------------------- + recipe-create 0.000 0.059 + load-balance 0.000 0.007 + simulation-init 0.012 0.662 + simulation-run 0.037 0.319 + meter-total 0.049 1.048 + +The full code +************* + +You can find the full code of the example at ``python/examples/network_ring_gpu.py``. diff --git a/doc/tutorial/network_ring_mpi.rst b/doc/tutorial/network_ring_mpi.rst index 91093e1004..08a01b4415 100644 --- a/doc/tutorial/network_ring_mpi.rst +++ b/doc/tutorial/network_ring_mpi.rst @@ -21,19 +21,32 @@ Step **(11)** is changed to generate a network with five hundred cells. .. literalinclude:: ../../python/example/network_ring_mpi.py :language: python - :lines: 111-113 + :lines: 124-126 The hardware context ******************** +An :ref:`execution context ` describes the hardware resources on which the simulation will run. +It contains the thread pool used to parallelise work on the local CPU, and optionally describes GPU resources +and the MPI communicator for distributed simulations. In some other examples, the :class:`arbor.single_cell_model` +object created the execution context :class:`arbor.context` behind the scenes. The details of the execution +context can be customized by the user. We may specify the number of threads in the thread pool; determine the +id of the GPU to be used; or create our own MPI communicator. + +The configuration of the context will need to be changed to reflect the change in hardware. +First of all, we scrap setting `threads="avail_threads"` and instead use +`MPI `_ to distribute the work over nodes, cores and threads. + Step **(12)** uses the Arbor-built-in :py:class:`MPI communicator `, which is identical to the ``MPI_COMM_WORLD`` communicator you'll know if you are familiar with MPI. The :py:class:`arbor.context` takes a communicator for its ``mpi`` parameter. Note that you can also pass in communicators created with ``mpi4py``. We print both the communicator and context to observe how Arbor configures their defaults. +Step **(13)** creates the simulation using the recipe and the context created in the previous step. + .. literalinclude:: ../../python/example/network_ring_mpi.py :language: python - :lines: 115-120 + :lines: 128-136 The execution ************* @@ -42,7 +55,7 @@ Step **(16)** runs the simulation. Since we have more cells this time, which are .. literalinclude:: ../../python/example/network_ring_mpi.py :language: python - :lines: 133-135 + :lines: 145-147 An important change in the execution is how the script is run. Whereas normally you run the Python script by passing it as an argument to the ``python`` command, you need to use ``srun`` or ``mpirun`` (depending on your MPI @@ -65,18 +78,18 @@ After executing ``mpirun``, all nodes will run the same script. In the domain de the provided MPI communicator to divide the work. Once :py:func:`arbor.simulation.run` starts, each node wil work on their allocated cell ``gid`` s. -This is relevant for the collection of results: these are not gathered for you. Remember that in step **(14)** we +This is relevant for the collection of results: these are not gathered for you. Remember that in step **(15)** we store the handles to the probes; these referred to particular ``gid`` s. The ``gid`` s are now distributed, so on one node, the script will not find the cell referred to by the handle and therefore return an empty list (no results were found). -In step **(18)** we check, for each ``gid``, if the list returned by :py:func:`arbor.simulation.samples` has a nonzero +In step **(17)** we check, for each ``gid``, if the list returned by :py:func:`arbor.simulation.samples` has a nonzero length. The effect is that we collect the results generated on this particular node. Since we now have ``NRANKS`` instances of our script, and we can't access the results between nodes, we have to write the results to disk and analyse them later. We query :py:attr:`arbor.context.rank` to generate a unique filename for the result. .. literalinclude:: ../../python/example/network_ring_mpi.py :language: python - :lines: 137-147 + :lines: 149- In a second script, ``network_ring_mpi_plot.py``, we load the results stored to disk into a pandas table, and plot the concatenated table as before: diff --git a/doc/tutorial/two_cells_gap_junctions.rst b/doc/tutorial/network_two_cells_gap_junctions.rst similarity index 68% rename from doc/tutorial/two_cells_gap_junctions.rst rename to doc/tutorial/network_two_cells_gap_junctions.rst index ea867b5c72..2770da8eb1 100644 --- a/doc/tutorial/two_cells_gap_junctions.rst +++ b/doc/tutorial/network_two_cells_gap_junctions.rst @@ -7,6 +7,12 @@ In this example, we will set up two cells connected via a gap junction. The cells have different leak potentials. We will investigate how the equilibrium potentials of the two cells change because of the gap junction connection. +.. figure:: network_two_cells_gap_junctions_circuit.svg + :width: 400 + :align: center + + The equivalent circuit used to calculate the equilibrium potentials. + .. Note:: **Concepts covered in this example:** @@ -16,50 +22,43 @@ We will investigate how the equilibrium potentials of the two cells change becau 3. Running the simulation and extracting the results. 4. Adding a gap junction connection. -The full code -************* - -You can find the full code of the example at ``python/examples/two_cell_gap_junctions.py`` - -Executing the script will run the simulation with default parameters. - - Walk-through ************ We set up a recipe for the simulation of two cells with some parameters. -.. literalinclude:: ../../python/example/two_cell_gap_junctions.py +.. literalinclude:: ../../python/example/network_two_cells_gap_junctions.py :language: python - :lines: -66 + :lines: 12-64 Implementing the ``cell_description`` member function constructs the morphology and sets the properties of the cells as well as the gap junction mechanisms and the discretization policy. -.. literalinclude:: ../../python/example/two_cell_gap_junctions.py +.. literalinclude:: ../../python/example/network_two_cells_gap_junctions.py :language: python - :lines: 61-101 + :lines: 66-101 The bidirection gap junction is created in the function ``gap_junctions_on``. -.. literalinclude:: ../../python/example/two_cell_gap_junctions.py +.. literalinclude:: ../../python/example/network_two_cells_gap_junctions.py :language: python - :lines: 103-107 + :lines: 103-117 We parse the command line arguments, instantiate the recipe, run the simulation, extract results and plot: -.. literalinclude:: ../../python/example/two_cell_gap_junctions.py +.. literalinclude:: ../../python/example/network_two_cells_gap_junctions.py :language: python - :lines: 110- + :lines: 114- The output plot below shows how the potential of the two cells approaches their equilibrium potentials. The expected values are denoted by dashed lines. -.. figure:: two_cell_gap_junctions_result.svg +.. figure:: network_two_cells_gap_junctions_result.svg :width: 800 :align: center -The equivalent circuit used to calculate the equilibrium potentials is depicted below. +The full code +************* + +You can find the full code of the example at ``python/examples/network_two_cells_gap_junctions.py`` -.. figure:: gap_junction_circuit.svg - :width: 800 - :align: center +Executing the script will run the simulation with default parameters. diff --git a/doc/tutorial/gap_junction_circuit.svg b/doc/tutorial/network_two_cells_gap_junctions_circuit.svg similarity index 100% rename from doc/tutorial/gap_junction_circuit.svg rename to doc/tutorial/network_two_cells_gap_junctions_circuit.svg diff --git a/doc/tutorial/two_cell_gap_junctions_result.svg b/doc/tutorial/network_two_cells_gap_junctions_result.svg similarity index 100% rename from doc/tutorial/two_cell_gap_junctions_result.svg rename to doc/tutorial/network_two_cells_gap_junctions_result.svg diff --git a/doc/tutorial/probe_lfpykit.rst b/doc/tutorial/probe_lfpykit.rst new file mode 100644 index 0000000000..ac2a076fc9 --- /dev/null +++ b/doc/tutorial/probe_lfpykit.rst @@ -0,0 +1,227 @@ +.. _tutorial_lfpykit: + +Extracellular signals (LFPykit) +=============================== + +This example takes elements from other tutorials to create a geometrically +detailed single cell model from an SWC morphology file, and adds predictions of +extracellular potentials using the `LFPykit `_ Python library. +LFPykit provides a few different classes facilitating +calculations of extracellular potentials and related electroencephalography (EEG) +and magnetoencephalography (MEG) signals from geometrically detailed neuron models under various assumptions. +These are signals that mainly stem from transmembrane currents. + +.. Note:: + + **Concepts covered in this tutorial:** + + 1. Recording of transmembrane currents using :class:`arbor.cable_probe_total_current_cell` + 2. Recording of stimulus currents using :class:`arbor.cable_probe_stimulus_current_cell` + 3. Using the :class:`arbor.place_pwlin` API + 4. Map recorded transmembrane currents to extracellular potentials by derivinging Arbor specific classes from LFPykit's :class:`lfpykit.LineSourcePotential` and :class:`lfpykit.CellGeometry` + +.. _tutorial_lfpykit-linesource: + +The line source approximation +----------------------------- + +First, let's describe how one can compute extracellular potentials from transmembrane currents of a number of segments, +assuming that each segment can be treated as an equivalent line current source using a formalism invented +by Gary R. Holt and Christof Koch [1]_. +The implementation used in this tutorial rely on :class:`lfpykit.LineSourcePotential`. +This class conveniently defines a 2D linear response matrix +:math:`\mathbf{M}` between transmembrane current array +:math:`\mathbf{I}` (nA) of a neuron model's +geometry (:class:`lfpykit.CellGeometry`) and the +corresponding extracellular electric potential in different extracellular locations +:math:`\mathbf{V}_{e}` (mV) so + +.. math:: \mathbf{V}_{e} = \mathbf{M} \mathbf{I} + +The transmembrane current :math:`\mathbf{I}` is an array of shape (# segments, # timesteps) +with unit (nA), and each row indexed by :math:`j` of +:math:`\mathbf{V}_{e}` represents the electric potential at each +measurement site for every time step. +The resulting shape of :math:`\mathbf{V}_{e}` is (# locations, # timesteps). +The elements of :math:`\mathbf{M}` are computed as: + +.. math:: M_{ji} = \frac{1}{ 4 \pi \sigma L_i } \log + \left| + \frac{\sqrt{h_{ji}^2+r_{ji}^2}-h_{ji} + }{ + \sqrt{l_{ji}^2+r_{ji}^2}-l_{ji}} + \right|~. + + +Here, segments are indexed by :math:`i`, +segment length is denoted :math:`L_i`, perpendicular distance from the +electrode point contact to the axis of the line segment is denoted +:math:`r_{ji}`, longitudinal distance measured from the start of the +segment is denoted :math:`h_{ji}` and longitudinal distance from the other +end of the segment is denoted :math:`l_{ji}= L_i + h_{ji}`. + +.. Note:: + + **Assumptions:** + + 1. The extracellular conductivity :math:`\sigma` is infinite, homogeneous, frequency independent (linear) and isotropic + 2. Each segment is treated as a straight line source with homogeneous current density between its start and end point coordinate. + Although Arbor allows segments to be defined as conical frusta with varying radius, we shall assume that any variation in + radius is small relative to overall segment length. + 3. Each extracellular measurement site is treated as a point + 4. The minimum distance to a line source is set equal to the average segment radius to avoid singularities. + + +.. _tutorial_lfpykit-model: + +The model +--------- + +In this tutorial, the neuron model itself is kept deliberately simple with only +passive (leaky) membrane dynamics, and it receives sinusoid synaptic current +input in one arbitrary chosen control volume (CV). + +First we import some required modules: + +.. literalinclude:: ../../python/example/probe_lfpykit.py + :language: python + :lines: 14-17 + +We define a basic :class:`Recipe ` class, holding a cell and three probes (voltage, stimulus current and total current): + +.. literalinclude:: ../../python/example/probe_lfpykit.py + :language: python + :lines: 22-54 + +Then, load a morphology on ``SWC`` file format (interpreted according to :ref:`Arbor's specifications `). +Similar to the tutorial :ref:`"A simple single cell model" `, +we use the morphology file in ``python/example/single_cell_detailed.swc``: + +.. figure:: ../gen-images/tutorial_morph_nolabels_nocolors.svg + :width: 800 + :align: left + + A graphic depiction of ``single_cell_detailed.swc``. + +Pass the filename as an argument to the simulation script: + +.. literalinclude:: ../../python/example/probe_lfpykit.py + :language: python + :lines: 57-66 + +As a target for a current stimuli we define an :class:`arbor.location` : + +.. literalinclude:: ../../python/example/probe_lfpykit.py + :language: python + :lines: 68-69 + +Next, we let a basic function define our cell model, taking the morphology and clamp location as +input. +The function defines various attributes (:class:`~arbor.label_dict`, :class:`~arbor.decor`) for +the cell model, +sets sinusoid current clamp as stimuli using :class:`~arbor.iclamp` +defines discretization policy (:class:`~arbor.cv_policy_fixed_per_branch`) +and returns the corresponding :class:`~arbor.place_pwlin` and :class:`~arbor.cable_cell` objects for use later: + +.. literalinclude:: ../../python/example/probe_lfpykit.py + :language: python + :lines: 72-116 + +Store the function output: + +.. literalinclude:: ../../python/example/probe_lfpykit.py + :language: python + :lines: 119-120 + +Next, we instantiate :class:`Recipe`, and execute the model for a few hundred ms, +sampling the different signals every 1 ms: + +.. literalinclude:: ../../python/example/probe_lfpykit.py + :language: python + :lines: 122-135 + +Extract recorded membrane voltages, electrode and transmembrane currents. +Note that membrane voltages at branch points and intersections between CVs are dropped as +we only illustrate membrane voltages of segments with finite lengths. + +.. literalinclude:: ../../python/example/probe_lfpykit.py + :language: python + :lines: 137-152 + +Finally we sum the stimulation and transmembrane currents, allowing the stimuli to mimic a synapse +current embedded in the membrane itself rather than an intracellular electrode current: + +.. literalinclude:: ../../python/example/probe_lfpykit.py + :language: python + :lines: 154-160 + +.. _tutorial_lfpykit-lfpykit: + +Compute extracellular potentials +-------------------------------- + +Here we utilize the LFPykit library to map +transmembrane currents recorded during the +simulation to extracellular potentials in vicinity to the cell. +We shall account for every segment in each CV using the so-called line-source approximation described :ref:`above `. + +First we define a couple of inherited classes to interface LFPykit +(as this library is not solely written for Arbor). +Starting with a class inherited from :class:`lfpykit.CellGeometry`: + +.. literalinclude:: ../../python/example/probe_lfpykit.py + :language: python + :lines: 170-202 + +Then, a class inherited from :class:`lfpykit.LineSourcePotential`. +Other use cases may inherit from any other parent class defined in :mod:`lfpykit.models` in a similar manner: + +.. literalinclude:: ../../python/example/probe_lfpykit.py + :language: python + :lines: 205-253 + +With these two classes one may then compute extracellular potentials from transmembrane +currents in space with a few lines of code: + +.. literalinclude:: ../../python/example/probe_lfpykit.py + :language: python + :lines: 256-278 + +.. _tutorial_lfpykit-illustration: + +The result +---------- + +The visualization below of simulation results shows the cellular geometry and a contour plot +of the extracellular potential (``V_e``) in a plane. +Each part (CV) of the cell is shown with some color coding for the membrane potential (``V_m``). +The stimulus location is denoted by the black marker. + +.. figure:: probe_lfpykit.svg + :width: 1600 + :align: center + + The result. + +.. Note:: + + The spatial discretization is here deliberately coarse with only 3 CVs per branch. + Hence the branch receiving input about 1/6 of the way from its root + (from ``decor.place(str(arbor.location(4, 1/6)), iclamp, '"iclamp"')``) is treated as 3 separate + line sources with inhomogeneous current density per unit length. This inhomogeneity + is due to the fact that the total transmembrane current per CV may + be distributed across multiple segments with varying surface area. The transmembrane + current is assumed to be constant per unit length per segment. + +.. _tutorial_lfpykit-code: + +The full code +------------- +You can find the full code of the example at ``python/examples/probe_lfpykit.py``. + +Find the source of LFPykit `here `_. + +References +---------- +.. [1] Holt, G.R., Koch, C. Electrical Interactions via the Extracellular Potential Near Cell Bodies. + J Comput Neurosci 6, 169–184 (1999). https://doi.org/10.1023/A:1008832702585 diff --git a/doc/tutorial/probe_lfpykit.svg b/doc/tutorial/probe_lfpykit.svg new file mode 100644 index 0000000000..5b8c68e829 --- /dev/null +++ b/doc/tutorial/probe_lfpykit.svg @@ -0,0 +1,7950 @@ + + + + + + + + 2022-02-03T13:05:42.712090 + image/svg+xml + + + Matplotlib v3.5.1, https://matplotlib.org/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/tutorial/single_cell_allen.rst b/doc/tutorial/single_cell_allen.rst new file mode 100644 index 0000000000..16c5374818 --- /dev/null +++ b/doc/tutorial/single_cell_allen.rst @@ -0,0 +1,167 @@ +.. _tutorialsinglecellallen: + +A single cell model from the Allen Brain Atlas +============================================== + +In this tutorial we'll see how we can take a model from the `Allen Brain Atlas `_ +and run it with Arbor. + +.. Note:: + + **Concepts covered in this example:** + + 1. Take a model from the Allen Brain Atlas. + 2. Load a morphology from an ``swc`` file. + 3. Load a parameter fit file and apply it to a :class:`arbor.decor`. + 4. Building a :class:`arbor.cable_cell` representative of the cell in the model. + 5. Building a :class:`arbor.recipe` reflective of the cell stimulation in the model. + 6. Running a simulation and visualising the results. + +Obtaining the model +------------------- + +We need a model for which morphological data is available. We'll take +`a cell from the mouse's visual cortex `_. +As the ``README`` in the "Biophysical - all active" model (zip) file explains, the data set is created for use with the Allen SDK and the +Neuron simulator. Instructions about running the model with the +Allen SDK and Neuron `can be found here `_. +For your convenience, this tutorial comes with a reference trace pre-generated. + +In the "Biophysical - all active" model (zip) file you'll find: + +* a directory with mechanisms (modfiles). For your convenience, Arbor already comes with the + :func:`arbor.allen_catalogue`, containing mechanisms used by the Allen Brain Atlas. +* an ``swc`` file describing the morphology of the cell. +* ``fit_parameters.json`` describing a set of optimized mechanism parameters. This information will need to be + loaded into the Arbor simulation. + +We will replicate the "Sweep 35" experiment, which applies a current of 150 nA for a duration of 1 s. + +The morphology +-------------- + +.. literalinclude:: ../../python/example/single_cell_allen.py + :language: python + :dedent: + :lines: 74-80 + +Step **(1)** loads the ``swc`` file using :func:`arbor.load_swc_neuron`. Since the ``swc`` specification is informal, a few different interpretations exist, and we use the appropriate one. The interpretations are described :ref:`here `. + +Step **(2)** sets the labels to the defaults of the ``swc`` +`specification `_, +plus a label for the midpoint of the soma. (You can verify in the ``swc`` file, the first branch is the soma.) + +The parameter fit +----------------- + +The most complicated part is transferring the values for the appropriate parameters in parameter fit file to an +:class:`arbor.decor`. The file file is a ``json`` file, which is fortunate; Python comes with a ``json`` package +in its standard library. The `passive` and `conditions` block contains cell-wide defaults, while the `genome` +section contains the parameters for all the mechanism properties. In certain cases, parameters names include the +mechanism name, so some processing needs to take place. + +Step **(3)** shows the precise steps needed to load the fit parameter file into a list of global properties, +region specific properties, reversal potentials, and mechanism parameters. This is not a generic function that will successfully load any Allen model, but it can be used as a starting point. The function composes 4 components out of the ``json`` file: + +1. global electro-physiological parameters, +2. a set of electro-physiological parameters per region, +3. a set of reversal potentials per ion species and region, +4. a set of mechanisms with parameters per region. + +.. literalinclude:: ../../python/example/single_cell_allen.py + :language: python + :dedent: + :lines: 12-72,82,83 + +The decor +--------- + +With the ingredients for the :class:`arbor.decor` extracted, we continue with the function that will return the cable cell from the model as an :class:`arbor.cable_cell`. + +.. literalinclude:: ../../python/example/single_cell_allen.py + :language: python + :dedent: + :lines: 85-117 + +Step **(4)** creates an empty :class:`arbor.decor`. + +Step **(5)** assigns global (cell-wide) properties using :func:`arbor.decor.set_property`. In addition, initial +internal and external calcium concentrations are set, and configured to be determined by the Nernst equation. + +.. note:: + Setting the calcium reversal potential to be determined by the Nernst equation has to be done manually, in order to mirror + `an implicit Neuron behavior `_, + for which the fit parameters were obtained. This behavior can be stated as the following rule: + + If the internal or external concentration of an ion is written, and its reversal potential is read but not + written, then the Nernst equation is used continuously during the simulation to update the reversal potential of + the ion according to the Nernst equation + +Step **(6)** overrides the global properties for all *regions* for which the fit parameters file specifies adapted +values. Regional properties are :func:`painted `, and are painted over (e.g. replacing) the defaults. + +Step **(7)** sets the regional reversal potentials. + +Step **(8)** assigns the regional mechanisms. + +Now that the electro-physiology is all set up, let's move on to the experimental setup. + +Step **(9)** configures the :class:`stimulus ` of 150 nA for a duration of 1 s, starting after 200 ms +of the start of the simulation. We'll also install a :class:`arbor.spike_detector` that triggers at -40 mV. (The +location is usually the soma, as is confirmed by coordinates found in the experimental dataset at +``488683423.nwb/general/intracellular_ephys/Electrode 1/location``) + +Step **(10)** specifies a maximum :term:`control volume` length of 20 μm. + +Step **(11)** returns the :class:`arbor.cable_cell`. + +The model +--------- + +.. literalinclude:: ../../python/example/single_cell_allen.py + :language: python + :dedent: + :lines: 120-131 + +Step **(12)** instantiates the :class:`arbor.cable_cell` and an :class:`arbor.single_cell_model`. + +Step **(13)** shows how to install a probe to the ``"midpoint"``, with a sampling frequency of 200 kHz. + +Step **(14)** installs the :class:`arbor.allen_catalogue`, thereby making its mechanisms available to the definitions added to the decor. + +Step **(15)** starts the simulation for a duration of 1.4 s and a timestep of 5 ms. + +The result +---------- + +Let's look at the result! In step **(16)** we first load the reference generated with Neuron and the AllenSDK. +Then, we extract Arbor's output, accessible after the simulation ran at +:class:`arbor.single_cell_model.traces`. Then, we plot them, together with the :class:`arbor.single_cell_model.spikes` in step **(17)**. + +.. literalinclude:: ../../python/example/single_cell_allen.py + :language: python + :dedent: + :lines: 133- + +.. figure:: single_cell_allen_result.svg + :width: 400 + :align: center + + Plot of experiment 35 of the Allen model, compared to the reference generated by the AllenSDK. In green: the spike detector output; in shaded grey: the stimulus. + +.. note:: + + The careful observer notices that this trace does not match the experimental data shown on the Allen website + (or in the ``488683423.nwb`` file). Sweep 35 clearly has 5 spikes, not 4. That is because in the Allen SDK, + the axon in the ``swc`` file is replaced with a stub, see + `here `_ and `here `_. + However, that adapted morphology is not exportable back to a modified ``swc`` file. When we tried to mimic + the procedure, we did not obtain the experimental trace. + + Therefore, we used the unmodified morphology in Arbor *and* the Neuron reference (by commenting out the + changes the Allen SDK makes to the morphology) in order to make a 1:1 comparison possible. + +The full code +------------- + +You can find the source code for this example in full at ``python/examples/single_cell_allen.py``. diff --git a/doc/tutorial/single_cell_allen_result.svg b/doc/tutorial/single_cell_allen_result.svg new file mode 100644 index 0000000000..83847ed9ea --- /dev/null +++ b/doc/tutorial/single_cell_allen_result.svg @@ -0,0 +1,1268 @@ + + + + + + + + 2022-05-10T18:07:29.825465 + image/svg+xml + + + Matplotlib v3.5.1, https://matplotlib.org/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/tutorial/single_cell_cable.rst b/doc/tutorial/single_cell_cable.rst index 391da857c5..5f224256e2 100644 --- a/doc/tutorial/single_cell_cable.rst +++ b/doc/tutorial/single_cell_cable.rst @@ -31,19 +31,19 @@ We set up a recipe for the simulation of a single dendrite with some parameters. .. literalinclude:: ../../python/example/single_cell_cable.py :language: python - :lines: 11-31 + :lines: 11-75 Implementing the ``cell_description`` member function constructs the morphology and sets the properties of the dendrite as well as the current stimulus and the discretization policy. .. literalinclude:: ../../python/example/single_cell_cable.py :language: python - :lines: 63-98 + :lines: 77-113 We parse the command line arguments, instantiate the recipe, run the simulation, extract results and plot: .. literalinclude:: ../../python/example/single_cell_cable.py :language: python - :lines: 145-202 + :lines: 153-229 The output plot below shows how the current pulse is attenuated and gets broader the further it travels along the dendrite from the current @@ -57,9 +57,9 @@ The conduction velocity in simulation is calculated from the time of the maximum .. literalinclude:: ../../python/example/single_cell_cable.py :language: python - :lines: 204- + :lines: 231- -Please have in mind that the calculated (idealized) conduction velocity is only correct for an infinite cable. +Keep in mind that the calculated (idealized) conduction velocity is only correct for an infinite cable. :: diff --git a/doc/tutorial/single_cell_detailed.rst b/doc/tutorial/single_cell_detailed.rst index 85e3f66130..c61ad38715 100644 --- a/doc/tutorial/single_cell_detailed.rst +++ b/doc/tutorial/single_cell_detailed.rst @@ -95,13 +95,9 @@ to :ref:`Arbor's specifications `). We can save the following in The morphology can then be loaded from ``single_cell_detailed.swc`` in the following way: -.. code-block:: python - - import arbor - - # (1) Read the morphology from an SWC file - - morph = arbor.load_swc_arbor("single_cell_detailed.swc") +.. literalinclude:: ../../python/example/single_cell_detailed.py + :language: python + :lines: 10-20 The label dictionary ^^^^^^^^^^^^^^^^^^^^ @@ -121,16 +117,44 @@ can be stored in a :class:`arbor.label_dict`. More information on region and location expressions is available :ref:`here `. -First, we can define some **regions**, These are continuous parts of the morphology, -They can correspond to full segments or parts of segments. Our morphology already has some -pre-established regions determined by the ``tag`` parameter of the segments. They are -defined as follows: +The SWC file format allows association of ``tags`` with parts of the morphology +and reserves tag values 1-4 for commonly used sections (see `here +`__ +for the SWC file format). In Arbor, these tags can be added to a :class:`arbor.label_dict` using +the :meth:`~arbor.label_dict.add_swc_tags` method, which will define + +.. list-table:: Default SWC Tags + :widths: 25 25 50 + :header-rows: 1 + + * - Tag + - Label + - Section + * - 1 + - ``"soma"`` + - Soma + * - 2 + - ``"axon"`` + - Axon + * - 3 + - ``"dend"`` + - Basal dendrite + * - 4 + - ``"apic"`` + - Apical dendrite + +You can alternatively define these regions by hand, using -.. literalinclude:: ../../python/example/single_cell_detailed.py - :language: python - :lines: 22-32 +.. code-block:: python -This will generate the following regions when applied to the previously defined morphology: + labels = arbor.label_dict({ + "soma": "(tag 1)", + "axon": "(tag 2)", + "dend": "(tag 3)", + "apic": "(tag 4)", + }) + +Both ways will generate the following regions when applied to the previously defined morphology: .. figure:: ../gen-images/tutorial_tag.svg :width: 800 @@ -144,7 +168,7 @@ in the following way: .. literalinclude:: ../../python/example/single_cell_detailed.py :language: python - :lines: 33-36 + :lines: 30-31 This will generate the following regions when applied to the previously defined morphology: @@ -162,7 +186,7 @@ be done as follows: .. literalinclude:: ../../python/example/single_cell_detailed.py :language: python - :lines: 37-38 + :lines: 32-33 This will generate the following region when applied to the previously defined morphology: @@ -176,7 +200,7 @@ terminal points of the morphology. .. literalinclude:: ../../python/example/single_cell_detailed.py :language: python - :lines: 42-44 + :lines: 35-37 This will generate the following **locsets** (sets of one or more locations) when applied to the previously defined morphology: @@ -193,7 +217,7 @@ previously defined "custom" region; and, separately, the terminal points which b .. literalinclude:: ../../python/example/single_cell_detailed.py :language: python - :lines: 45-48 + :lines: 38-41 This will generate the following 2 locsets when applied to the previously defined morphology: @@ -226,7 +250,7 @@ step: .. literalinclude:: ../../python/example/single_cell_detailed.py :language: python - :lines: 50-57 + :lines: 48-52 We have set the default initial membrane voltage to -55 mV; the default initial temperature to 300 K; the default axial resistivity to 35.4 Ω·cm; and the default membrane @@ -245,8 +269,8 @@ We can override the default properties by *painting* new values on the relevant :meth:`arbor.decor.paint`. .. literalinclude:: ../../python/example/single_cell_detailed.py - :language: python - :lines: 59-61 + :language: python + :lines: 53-55 With the default and initial values taken care of, we now add some density mechanisms. Let's *paint* a *pas* density mechanism everywhere on the cell using the previously defined "all" region; an *hh* @@ -255,7 +279,7 @@ mechanism has a custom 'gbar' parameter. .. literalinclude:: ../../python/example/single_cell_detailed.py :language: python - :lines: 8,62-66 + :lines: 8,56-59 The decor object is also used to *place* stimuli and spike detectors on the cell using :meth:`arbor.decor.place`. We place 3 current clamps of 2 nA on the "root" locset defined earlier, starting at time = 10, 30, 50 ms and @@ -265,7 +289,7 @@ in the recipe. .. literalinclude:: ../../python/example/single_cell_detailed.py :language: python - :lines: 68-72 + :lines: 60-64 .. Note:: @@ -285,13 +309,13 @@ to be a single CV, and the rest of the morphology to be comprised of CVs with a .. literalinclude:: ../../python/example/single_cell_detailed.py :language: python - :lines: 74-81 + :lines: 65-66 Finally, we create the cell. .. literalinclude:: ../../python/example/single_cell_detailed.py :language: python - :lines: 83-85 + :lines: 68-70 The model ********* @@ -300,7 +324,7 @@ Having created the cell, we construct an :class:`arbor.single_cell_model`. .. literalinclude:: ../../python/example/single_cell_detailed.py :language: python - :lines: 87-89 + :lines: 72-74 The global properties ^^^^^^^^^^^^^^^^^^^^^ @@ -342,7 +366,7 @@ model: .. literalinclude:: ../../python/example/single_cell_detailed.py :language: python - :lines: 91-95 + :lines: 76-80 We set the same properties as we did earlier when we were creating the *decor* of the cell, except for the initial membrane voltage, which is -65 mV as opposed to -55 mV. @@ -353,7 +377,7 @@ the "allen" catalogue. We can extend the default catalogue as follow: .. literalinclude:: ../../python/example/single_cell_detailed.py :language: python - :lines: 97-101 + :lines: 82-86 Now all three mechanisms in the *decor* object have been made available to the model. @@ -368,7 +392,7 @@ We can indicate the location we would like to probe using labels from the :class .. literalinclude:: ../../python/example/single_cell_detailed.py :language: python - :lines: 103-107 + :lines: 88-92 The simulation ^^^^^^^^^^^^^^ @@ -377,7 +401,7 @@ The cell and model descriptions are now complete and we can run the simulation: .. literalinclude:: ../../python/example/single_cell_detailed.py :language: python - :lines: 109-111 + :lines: 94-102 The results ^^^^^^^^^^^ @@ -388,7 +412,7 @@ spikes on the cell from all spike detectors on the cell and saves the times at w .. literalinclude:: ../../python/example/single_cell_detailed.py :language: python - :lines: 113-117 + :lines: 98-102 A more interesting result of the simulation is perhaps the output of the voltage probe previously placed on the "custom_terminal" locset. The model saves the output of the probes as [time, value] @@ -397,7 +421,7 @@ choose the any other library: .. literalinclude:: ../../python/example/single_cell_detailed.py :language: python - :lines: 5,6,118-125 + :lines: 5,6,104- The following plot is generated. The orange line is slightly delayed from the blue line, which is what we'd expect because branch 4 is longer than branch 3 of the morphology. We also see 3 spikes, diff --git a/doc/tutorial/single_cell_detailed_recipe.rst b/doc/tutorial/single_cell_detailed_recipe.rst index f6f8863fb8..66f694ac31 100644 --- a/doc/tutorial/single_cell_detailed_recipe.rst +++ b/doc/tutorial/single_cell_detailed_recipe.rst @@ -3,127 +3,76 @@ A detailed single cell recipe ============================= -This example builds the same single cell model as -:ref:`the previous tutorial `, except using a :class:`arbor.recipe` -and :class:`arbor.simulation` instead of a :class:`arbor.single_cell_model`. +This example builds the same single cell model as :ref:`tutorialsinglecellswc`, +except using a :class:`arbor.recipe` and :class:`arbor.simulation` instead of a :class:`arbor.single_cell_model`. + +This time, we'll learn a bit more about setting up advanced features using a :class:`arbor.recipe`. .. Note:: **Concepts covered in this example:** 1. Building a :class:`arbor.recipe`. - 2. Building an :class:`arbor.context` and a :class:`arbor.domain_decomposition` - 3. Using the recipe, context and domain decomposition to create a :class:`arbor.simulation` + 2. Building an :class:`arbor.context`. + 3. Create a :class:`arbor.simulation`. 4. Running the simulation and visualizing the results, - -Recipes are an important concept in Arbor. They represent the most versatile tool -for building a complex network of cells. We will go though this example of a model -of a single cell, before using the recipe to represent more complex networks in -subsequent examples. - -We outline the following steps of this example: - -1. Define the **cell**. This is the same cell we have seen before. -2. Define the **recipe** of the model. -3. Define the **execution context** of the model: a description of the underlying system - on which the simulation will run. -4. Define the **domain decomposition** of the network: how the cells are distributed on - the different ranks of the system. -5. Define the **simulation**. -6. **Run** the simulation. -7. Collect and visualize the **results**. - The cell ******** We can copy the cell description code or reuse ``single_cell_detailed.swc`` from the -:ref:`previous example ` where it is explained in detail. - -We will need to add one more thing to the cell. We will create the voltage probe at the "custom_terminal" locset. -In the previous example, this probe was registered directly using the :class:`arbor.single_cell_model` object. -Now it has to be explicitly created and registered in the recipe. - -.. _tutorialsinglecellswcrecipe-probe: - -.. literalinclude:: ../../python/example/single_cell_detailed_recipe.py - :language: python - :lines: 87-89 +:ref:`original example ` where it is explained in detail. The recipe ********** -The :class:`arbor.single_cell_model` of the previous example created a :class:`arbor.recipe` under +The :class:`arbor.single_cell_model` of the original example created a :class:`arbor.recipe` under the hood, and abstracted away the details so we were unaware of its existence. In this example, we will examine the recipe in detail: how to create one, and why it is needed. .. literalinclude:: ../../python/example/single_cell_detailed_recipe.py :language: python - :lines: 91-139 + :lines: 74-114 Let's go through the recipe point by point. -Step **(6)** creates a ``single_recipe`` class that inherits from :class:`arbor.recipe`. The base recipe -implements all the methods defined above with default values except :meth:`arbor.recipe.num_cells`, -:meth:`arbor.recipe.cell_kind` and :meth:`arbor.recipe.cell_description` which always have to be implemented -by the user. The :meth:`arbor.recipe.global_properties` also needs to be implemented for -:class:`arbor.cell_kind.cable` cells. The inherited recipe can implement any number of additional methods and -have any number of instance or class variables. +Step **(5)** creates a ``single_recipe`` class that inherits from :class:`arbor.recipe`. +:meth:`arbor.recipe.num_cells`, :meth:`arbor.recipe.cell_kind` and :meth:`arbor.recipe.cell_description` +always have to be implemented by the user. We'll also implement :meth:`arbor.recipe.global_properties` to be able +to decorate :class:`arbor.cell_kind.cable` cells with mechanisms and :meth:`arbor.recipe.probes` to be able to +insert the probe. -Step **(6.1)** defines the class constructor. In this case, we pass a ``cell`` and a set of ``probes`` as -arguments. These will be used to initialize the instance variables ``self.the_cell`` and ``self.the_probes``, -which will be used in the overloaded ``cell_description`` and ``get_probes`` methods. Before variable -initialization, we call the base C++ class constructor ``arbor.recipe.__init__(self)``. This ensures correct -initialization of memory in the C++ class. +Step **(5.1)** defines the class constructor. As per :class:`arbor.recipe` instructions, we call +``arbor.recipe.__init__(self)`` to ensure correct initialization of memory in the C++ class. -We also create the ``self.the_cat`` variable and set it to arbor's default mechanism catalogue. This will expose -the *hh* and *pas* mechanisms but not the *Ih* mechanism, which is present in the allen catalogue. To be able -to use *Ih*, we extend ``self.the_cat`` to include the allen catalogue. +We then create the ``self.the_props`` variable. This will hold the global properties of the model, which apply +to all the cells in the network. We initialize it with :class:`arbor.cable_global_properties`, which comes with the +``default`` mechanism catalogue built-in. We set all the properties of the system similar to what we did in +the :ref:`original example `. One last important step is to extend ``self.the_props`` +to include the Allen catalogue, because it holds the *Ih* mechanism. The *hh* and *pas* mechanisms came with the +default catalogue. -Finally we create the ``self.the_props`` variable. This will hold the global properties of the model, which apply -to all the cells in the network. Initially it is empty. We set all the properties of the system similar to -what we did in the :ref:`previous example `. One last important step is to register -``self.the_cat`` with ``self.the_props``. - -.. Note:: - - The mechanism catalogue needs to live in the recipe as an instance variable. Its lifetime needs to extend - to the entire duration of the simulation. - -Step **(6.2)** overrides the :meth:`arbor.recipe.num_cells` method. It takes no arguments. We simply return 1, +Step **(5.2)** overrides the :meth:`~arbor.recipe.num_cells` method. It takes no arguments. We simply return 1, as we are only simulating one cell in this example. -Step **(6.3)** overrides the :meth:`arbor.recipe.cell_kind` method. It takes one argument: ``gid``. +Step **(5.3)** overrides the :meth:`~arbor.recipe.cell_kind` method. It takes one argument: ``gid``. Given the gid, this method returns the kind of the cell. Our defined cell is a :class:`arbor.cell_kind.cable`, so we simply return that. -Step **(6.4)** overrides the :meth:`arbor.recipe.cell_description` method. It takes one argument: ``gid``. +Step **(5.4)** overrides the :meth:`~arbor.recipe.cell_description` method. It takes one argument: ``gid``. Given the gid, this method returns the cell description which is the cell object passed to the constructor -of the recipe. We return ``self.the_cell``. +of the recipe. We return ``cell``, the cell created just above. -Step **(6.5)** overrides the :meth:`arbor.recipe.get_probes` method. It takes one argument: ``gid``. +Step **(5.5)** overrides the :meth:`~arbor.recipe.probes` method. It takes one argument: ``gid``. Given the gid, this method returns all the probes on the cell. The probes can be of many different kinds -measuring different quantities on different locations of the cell. We pass these probes explicitly to the recipe -and they are stored in ``self.the_probes``, so we return that variable. - -Step **(6.6)** overrides the :meth:`arbor.recipe.connections_on` method. It takes one argument: ``gid``. -Given the gid, this method returns all the connections ending on that cell. These are typically synapse -connections from other cell *sources* to specific *targets* on the cell with id ``gid``. Since we are -simulating a single cell, and self-connections are not possible, we return an empty list. +measuring different quantities on different locations of the cell. Like in the original example, we will +create the voltage probe at the ``"custom_terminal"`` locset. This probe was registered directly using the +:class:`arbor.single_cell_model` object. Now it has to be explicitly created and registered in the recipe. -Step **(6.7)** overrides the :meth:`arbor.recipe.gap_junctions_on` method. It takes one argument: ``gid``. -Given the gid, this method returns all the gap junctions on that cell. Gap junctions require 2 separate cells. -Since we are simulating a single cell, we return an empty list. - -Step **(6.8)** overrides the :meth:`arbor.recipe.event_generators` method. It takes one argument: ``gid``. -Given the gid, this method returns *event generators* on that cell. These generators trigger events (or -spikes) on specific *targets* on the cell. They can be used to simulate spikes from other cells, to kick-start -a simulation for example. Our cell uses a current clamp as a stimulus, and has no targets, so we return -an empty list. - -Step **(6.9)** overrides the :meth:`arbor.recipe.global_properties` method. It takes one argument: ``kind``. +Step **(5.6)** overrides the :meth:`~arbor.recipe.global_properties` method. It takes one argument: ``kind``. This method returns the default global properties of the model which apply to all cells in the network of -that kind. We return ``self.the_props`` which we defined in step **(1)**. +that kind. We only use ``cable`` cells in this example (but there are more) and thus always return a +``cable_cell_properties`` object. We return ``self.the_props`` which we defined in step **(1)**. .. Note:: @@ -135,85 +84,40 @@ that kind. We return ``self.the_props`` which we defined in step **(1)**. More information on the recipe can be found :ref:`here `. -Now we can instantiate a ``single_recipe`` object using the ``cell`` and ``probe`` we created in the -previous section: +Now we can instantiate a ``single_recipe`` object. .. literalinclude:: ../../python/example/single_cell_detailed_recipe.py :language: python - :lines: 141-143 - -The execution context -********************* - -An :ref:`execution context ` describes the hardware resources on which the simulation will run. -It contains the thread pool used to parallelise work on the local CPU, and optionally describes GPU resources -and the MPI communicator for distributed simulations. In the previous -examples, the :class:`arbor.single_cell_model` object created the execution context :class:`arbor.context` -behind the scenes. - -The details of the execution context can be customized by the user. We may specify the number of threads -in the thread pool; determine the id of the GPU to be used; or create our own MPI communicator. However, -the ideal settings can usually be inferred from the system, and Arbor can do that with a simple command. - -.. literalinclude:: ../../python/example/single_cell_detailed_recipe.py - :language: python - :lines: 145-146 - -The domain decomposition -************************ - -The domain decomposition describes the distribution of the cells over the available computational resources. -The :class:`arbor.single_cell_model` also handled that without our knowledge in the previous examples. -Now, we have to define it ourselves. - -The :class:`arbor.domain_decomposition` class can be manually created by the user, by deciding which cells -go on which ranks. Or we can use a load balancer that can partition the cells across ranks according to -some rules. Arbor provides :class:`arbor.partition_load_balance`, which, using the recipe and execution -context, creates the :class:`arbor.domain_decomposition` object for us. - -Our example is a simple one, with just one cell. We don't need any sophisticated partitioning algorithms, so -we can use the load balancer, which does a good job distributing simple networks. - -.. literalinclude:: ../../python/example/single_cell_detailed_recipe.py - :language: python - :lines: 148-149 + :lines: 113-114 The simulation ************** -Finally we have the 3 components needed to create a :class:`arbor.simulation` object. +We have all we need to create a :class:`arbor.simulation` object. + +Before we run the simulation, however, we need to register what results we expect once execution is over. +This was handled by the :class:`arbor.single_cell_model` object in the original example. .. literalinclude:: ../../python/example/single_cell_detailed_recipe.py :language: python - :lines: 151-152 - -Before we run the simulation, however, we need to register what results we expect once execution is over. -This was handled by the :class:`arbor.single_cell_model` object in the previous example. + :lines: 116-123 We would like to get a list of the spikes on the cell during the runtime of the simulation, and we would like to plot the voltage registered by the probe on the "custom_terminal" locset. -.. literalinclude:: ../../python/example/single_cell_detailed_recipe.py - :language: python - :lines: 154-158 - -The lines handling probe sampling warrant a second look. First, we declared ``probe_id`` to be a +The lines handling probe sampling warrant a second look. First, we declared :term:`probe_id` to be a :class:`arbor.cell_member`, with :class:`arbor.cell_member.gid` = 0 and :class:`arbor.cell_member.index` = 0. This variable serves as a global identifier of a probe on a cell, namely the first declared probe on the -cell with gid = 0, which is id of the :ref:`only probe ` we created on -the only cell in the model. +cell with ``gid = 0``, which is id of the only probe we created on the only cell in the model. -Next, we instructed the simulation to sample ``probe_id`` at a frequency of 50 kHz. That function returns a -``handle`` which we will use to extract the results of the sampling after running the simulation. - -The execution -************* +Next, we instructed the simulation to sample :term:`probe_id` at a frequency of 50 kHz. That function returns a +:term:`handle` which we will use to :ref:`extract the results ` of the sampling after running the simulation. We can now run the simulation we just instantiated for a duration of 100 ms with a time step of 0.025 ms. .. literalinclude:: ../../python/example/single_cell_detailed_recipe.py :language: python - :lines: 169-161 + :lines: 125-126 The results *********** @@ -225,13 +129,13 @@ We can print the times of the spikes: .. literalinclude:: ../../python/example/single_cell_detailed_recipe.py :language: python - :lines: 163-167 + :lines: 128-132 The probe results, again, warrant some more explanation: .. literalinclude:: ../../python/example/single_cell_detailed_recipe.py :language: python - :lines: 169-173 + :lines: 134-138 ``sim.samples()`` takes a ``handle`` of the probe we wish to examine. It returns a list of ``(data, meta)`` terms: ``data`` being the time and value series of the probed quantity; and @@ -240,13 +144,13 @@ discrete locations pointed to by the handle. We placed the probe on the "custom_ represented by 2 locations on the morphology. We therefore expect the length of ``sim.samples(handle)`` to be 2. -We plot the results using pandas and seaborn as we did in the previous example, and expect the same results: +We plot the results using pandas and seaborn as we did in the original example, and expect the same results: .. literalinclude:: ../../python/example/single_cell_detailed_recipe.py :language: python - :lines: 175-179 + :lines: 140- -The following plot is generated. Identical to the plot of the previous example. +The following plot is generated. Identical to the plot of the original example. .. figure:: single_cell_detailed_result.svg :width: 400 diff --git a/doc/tutorial/single_cell_recipe.rst b/doc/tutorial/single_cell_recipe.rst index 33061c4b1f..40d3233578 100644 --- a/doc/tutorial/single_cell_recipe.rst +++ b/doc/tutorial/single_cell_recipe.rst @@ -3,9 +3,13 @@ A simple single cell recipe =========================== -This example builds the same single cell model as -:ref:`the previous tutorial `, except using a :class:`arbor.recipe` -and :class:`arbor.simulation` instead of a :class:`arbor.single_cell_model`. +This example builds the same single cell model as :ref:`tutorialsinglecell`, +except using a :class:`arbor.recipe` and :class:`arbor.simulation` instead of a :class:`arbor.single_cell_model`. + +Recipes are an important concept in Arbor. They represent the most versatile tool +for building a complex network of cells. We will go though this example of a model +of a single cell, before using the recipe to represent more complex networks in +subsequent examples. .. Note:: @@ -18,29 +22,32 @@ and :class:`arbor.simulation` instead of a :class:`arbor.single_cell_model`. The cell -------- -Let's copy the cell description from the :ref:`previous example `, +Let's copy the cell description from the :ref:`original example `, where construction of the cell is explained in detail. .. literalinclude:: ../../python/example/single_cell_recipe.py :language: python - :lines: 4,8-23 + :lines: 4,10-26 The recipe ---------- -In the :ref:`previous example `, the :class:`arbor.single_cell_model` creates +In the :ref:`original example `, the :class:`arbor.single_cell_model` creates a :class:`arbor.recipe` under the hood, and abstracts away a few details that you may want control over in more complex simulations. Let's go into those abstractions and create an analogous :class:`arbor.recipe` manually. -Creating a recipe starts with creating a class that inherits from :class:`arbor.recipe` -and overrides and implements some of :class:`arbor.recipe` methods. Not all methods -have to be overridden, but some will always have to be, such as :meth:`arbor.recipe.num_cells`. -It returns `0` by default and models without cells are quite boring! +Creating a recipe starts with creating a class that inherits from :class:`arbor.recipe`. There are a number of +methods that *must* be overridden, and a number than *can optionally* be overridden, as explained in the +:class:`arbor.recipe` documentation. Beyond this, it is up to you, the user, to structure your code as you +find convenient. + +One of the methods that must be overridden is :meth:`arbor.recipe.num_cells`. It returns `0` by default and +models without cells are quite boring! .. literalinclude:: ../../python/example/single_cell_recipe.py :language: python - :lines: 25-60 + :lines: 31-61 Step **(4)** describes the recipe that will reflect our single cell model. @@ -59,59 +66,59 @@ associated with the cable cell defined above. If you mix multiple cell kinds and descriptions in one recipe, make sure a particular ``gid`` returns matching cell kinds and descriptions. -Step **(4.4)** returns the cell description passed in on class initialisation. If we +Step **(4.4)** returns the cell description defined earlier. If we were modelling multiple cells of different kinds, we would need to make sure that the cell returned by :meth:`arbor.recipe.cell_description` has the same cell kind as returned by :meth:`arbor.recipe.cell_kind` for every :gen:`gid`. -Step **(4.5)** returns the probes passed in at class initialisation. +Step **(4.5)** returns the same probe as in the ``single_cell_model``: a single voltage probe located at "midpoint". Step **(4.6)** returns the properties that will be applied to all cells of that kind in the model. More methods can be overridden if your model requires that, see :class:`arbor.recipe` for options. -Step **(5)** instantiates the recipe with the cable cell described earlier, and a single voltage probe located at "midpoint". +Now we instantiate the recipe -The context and domain decomposition ------------------------------------- +.. literalinclude:: ../../python/example/single_cell_recipe.py + :language: python + :lines: 64-67 + +The simulation +-------------- :class:`arbor.single_cell_model` does not only take care of the recipe, it also takes care of defining how the simulation will be run. When you create and use your own -recipe, you'll need to do this manually, in the form of defining a execution context +recipe, you can to do this manually, in the form of defining a execution context and a domain decomposition. Fortunately, the default constructors of :class:`arbor.context` and :class:`arbor.partition_load_balance` are sufficient for -this model, and is what :class:`arbor.single_cell_model` does under the hood! We'll -leave the details of this subject for another tutorial. +this model, and is what :class:`arbor.single_cell_model` does under the hood! +In addition, if all you need is the default context and domain decomposition, they can be +left out and the :class:`arbor.simulation` object can be contructed from just the recipe. -.. literalinclude:: ../../python/example/single_cell_recipe.py - :language: python - :lines: 62-65 - -Step **(6)** sets up a default context and domains. - -The simulation --------------- +The details of manual hardware configuration will be left for another tutorial. .. literalinclude:: ../../python/example/single_cell_recipe.py :language: python - :lines: 67-73 + :lines: 68-79 + +Step **(6)** instantiates the simulation. -Step **(7)** instantiates the simulation and sets up the probe added in step 5. In the +Step **(7)** sets up the probe added in step 5. In the :class:`arbor.single_cell_model` version of this example, the probe frequency and simulation duration are the same. Note that the frequency is set with a :class:`arbor.regular_schedule`, which takes a time and not a frequency. Also note that spike recording must be -switched on. For extraction of the probe traces later on, we store a handle. +switched on. For :ref:`extraction of the probe traces ` later on, we store a :term:`handle`. The results ---------------------------------------------------- Apart from creating :class:`arbor.recipe` ourselves, we have changed nothing -about this simulation compared to :ref:`the previous tutorial `. +about this simulation compared to :ref:`the original tutorial `. If we create the same analysis of the results we therefore expect the same results. .. literalinclude:: ../../python/example/single_cell_recipe.py :language: python - :lines: 75-92 + :lines: 80- Step **(8)** plots the measured potentials during the runtime of the simulation. Retrieving the sampled quantities is a little different, these have to be accessed diff --git a/example/CMakeLists.txt b/example/CMakeLists.txt index 7a654b4a3d..f139326839 100644 --- a/example/CMakeLists.txt +++ b/example/CMakeLists.txt @@ -11,4 +11,6 @@ add_subdirectory(ring) add_subdirectory(gap_junctions) add_subdirectory(single) add_subdirectory(probe-demo) +add_subdirectory(plasticity) add_subdirectory(lfp) +add_subdirectory(diffusion) diff --git a/example/bench/bench.cpp b/example/bench/bench.cpp index 0d6fb97679..1057ff74f9 100644 --- a/example/bench/bench.cpp +++ b/example/bench/bench.cpp @@ -165,7 +165,7 @@ int main(int argc, char** argv) { meters.checkpoint("domain-decomp", context); // Construct the model. - arb::simulation sim(recipe, decomp, context); + arb::simulation sim(recipe, context, decomp); meters.checkpoint("model-build", context); // Run the simulation for 100 ms, with time steps of 0.01 ms. diff --git a/example/brunel/brunel.cpp b/example/brunel/brunel.cpp index 4343e5933e..e1e19b3b83 100644 --- a/example/brunel/brunel.cpp +++ b/example/brunel/brunel.cpp @@ -70,7 +70,7 @@ std::ostream& operator<<(std::ostream& o, const cl_options& opt); std::optional read_options(int argc, char** argv); -void banner(const context& ctx); +void banner(context ctx); // Samples m unique values in interval [start, end) - gid. // We exclude gid because we don't want self-loops. @@ -246,9 +246,10 @@ int main(int argc, char** argv) { partition_hint_map hints; hints[cell_kind::lif].cpu_group_size = group_size; - auto decomp = partition_load_balance(recipe, context, hints); - simulation sim(recipe, decomp, context); + simulation sim(recipe, + context, + [&hints](auto& r, auto c) { return partition_load_balance(r, c, hints); }); // Set up spike recording. std::vector recorded_spikes; @@ -295,7 +296,7 @@ int main(int argc, char** argv) { return 0; } -void banner(const context& ctx) { +void banner(context ctx) { std::cout << "==========================================\n"; std::cout << " Brunel model miniapp\n"; std::cout << " - distributed : " << arb::num_ranks(ctx) diff --git a/example/diffusion/CMakeLists.txt b/example/diffusion/CMakeLists.txt new file mode 100644 index 0000000000..687914b752 --- /dev/null +++ b/example/diffusion/CMakeLists.txt @@ -0,0 +1,3 @@ +add_executable(diffusion EXCLUDE_FROM_ALL diffusion.cpp) +add_dependencies(examples diffusion) +target_link_libraries(diffusion PRIVATE arbor arborio arborenv arbor-sup ext-tinyopt) diff --git a/example/diffusion/README.md b/example/diffusion/README.md new file mode 100644 index 0000000000..f570e33ffe --- /dev/null +++ b/example/diffusion/README.md @@ -0,0 +1,18 @@ +# Diffusion example. + +Example of simulating a simple linear neuron with a diffusing sodium +concentration. An event injecting more Na into the centre is fired at t=0. The +measured concentrations will be written to disk further analysis. + + | | Option | Meaning | Default | + |----|----------|---------------------------------|-------------| + | -t | --tfinal | Length of the simulation period | 1 ms | + | -d | --dt | Simulation time step | 0.01 ms | + | -s | --ds | Sampling interval | 0.1 ms | + | -g | --gpu | Use GPU id, enabled if >=0 | -1 | + | -l | --length | Length of stick | 30 um | + | -x | --dx | Discretisation | 1 um | + | -i | --Xi | Initial Na concentration | 0 mM | + | -b | --beta | Na diffusivity | 0.005 m^2/s | + | -o | --output | Save samples | log.csv | + diff --git a/example/diffusion/diffusion.cpp b/example/diffusion/diffusion.cpp new file mode 100644 index 0000000000..991a351de8 --- /dev/null +++ b/example/diffusion/diffusion.cpp @@ -0,0 +1,126 @@ +#include +#include +#include +#include +#include +#include + +#include + +#include + +#include +#include +#include +#include +#include +#include +#include +#include + +using namespace arborio::literals; +using namespace arb; + +struct linear: public recipe { + linear(double ext, double dx, double Xi, double beta): l{ext}, d{dx}, i{Xi}, b{beta} { + gprop.default_parameters = neuron_parameter_defaults; + gprop.default_parameters.discretization = cv_policy_max_extent{d}; + } + + cell_size_type num_cells() const override { return 1; } + cell_kind get_cell_kind(cell_gid_type) const override { return cell_kind::cable; } + std::any get_global_properties(cell_kind) const override { return gprop; } + std::vector get_probes(cell_gid_type) const override { return {cable_probe_ion_diff_concentration_cell{"na"}}; } + std::vector event_generators(cell_gid_type) const override { return {explicit_generator({"Zap"}, 0.005, std::vector{0.f})}; } + util::unique_any get_cell_description(cell_gid_type) const override { + // Stick morphology + // -----|----- + segment_tree tree; + tree.append(mnpos, { -l, 0, 0, 3}, {l, 0, 0, 3}, 1); + // Setup + decor decor; + decor.set_default(init_int_concentration{"na", i}); + decor.set_default(ion_diffusivity{"na", b}); + decor.place("(location 0 0.5)"_ls, synapse("inject/x=na", {{"alpha", 200.0*l}}), "Zap"); + decor.paint("(all)"_reg, density("decay/x=na")); + return cable_cell({tree}, {}, decor); + } + + cable_cell_global_properties gprop; + double l, d, i, b; +}; + +std::ofstream out; + +void sampler(probe_metadata pm, std::size_t n, const sample_record* samples) { + auto ptr = util::any_cast(pm.meta); + assert(ptr); + auto n_cable = ptr->size(); + out << "time,prox,dist,Xd\n" + << std::fixed << std::setprecision(4); + for (std::size_t i = 0; i(samples[i].data); + for (unsigned j = 0; j=0]\n" + " -l|--length [Length of stick (30 um)]\n" + " -x|--dx [Discretisation (1 um)]\n" + " -i|--Xi [Initial Na concentration (0 mM)]\n" + " -b|--beta [Na diffusivity (0.005 m^2/s)]\n" + " -o|--output [Save samples (log.csv)]\n"; + auto help = [argv, &usage] { to::usage(argv[0], usage); }; + opt_t opt; + to::option options[] = {{opt.T, "-t", "--tfinal"}, + {opt.dt, "-d", "--dt"}, + {opt.ds, "-s", "--ds"}, + {opt.L, "-l", "--length"}, + {opt.dx, "-x", "--dx"}, + {opt.Xi, "-i", "--Xi"}, + {opt.dX, "-b", "--beta"}, + {opt.gpu, "-g", "--gpu"}, + {opt.out, "-o", "--out"}, + {to::action(help), to::flag, to::exit, "-h", "--help"}}; + if (!to::run(options, argc, argv+1)) return opt_t{}; + if (argv[1]) throw to::option_error("Unrecognized argument", argv[1]); + if (opt.dt <= 0.0) throw std::runtime_error("Time step must be positive!"); + if (opt.ds <= 0.0) throw std::runtime_error("Sampling interval must be positive!"); + if (opt.ds < opt.dt) throw std::runtime_error("Time step is greater than a sampling interval!"); + if (opt.T <= opt.ds) throw std::runtime_error("Runtime is less than a sampling interval!"); + if (opt.dX <= 0.0) throw std::runtime_error("Diffusivity must be positive!"); + return opt; +} + +int main(int argc, char** argv) { + auto O = read_options(argc, argv); + out = std::ofstream{O.out}; + if (!out.good()) throw std::runtime_error("Could not open output file for writing."); + auto C = make_context({1, O.gpu}); + auto R = linear{O.L, O.dx, O.Xi, O.dX}; + simulation S(R, C, partition_load_balance(R, C)); + S.add_sampler(all_probes, regular_schedule(O.ds), sampler); + S.run(O.T, O.dt); + out.close(); +} diff --git a/example/drybench/CMakeLists.txt b/example/drybench/CMakeLists.txt index c407f461d2..f9cecd75c5 100644 --- a/example/drybench/CMakeLists.txt +++ b/example/drybench/CMakeLists.txt @@ -1,4 +1,4 @@ add_executable(drybench EXCLUDE_FROM_ALL drybench.cpp) add_dependencies(examples drybench) -target_link_libraries(drybench PRIVATE arbor arborenv arbor-sup ext-json) +target_link_libraries(drybench PRIVATE arbor arborenv arbor-sup ${json_library_name}) diff --git a/example/drybench/drybench.cpp b/example/drybench/drybench.cpp index 59b30fa6d1..c5300d1aaa 100644 --- a/example/drybench/drybench.cpp +++ b/example/drybench/drybench.cpp @@ -143,7 +143,7 @@ int main(int argc, char** argv) { auto ctx = arb::make_context(resources); ctx = arb::make_context(resources, arb::dry_run_info(params.num_ranks, params.num_cells)); - arb_assert(arb::num_ranks(ctx)==params.num_ranks); + arb_assert(arb::num_ranks(ctx)==(unsigned int)params.num_ranks); #ifdef ARB_PROFILE_ENABLED arb::profile::profiler_initialize(ctx); @@ -156,10 +156,8 @@ int main(int argc, char** argv) { auto tile = std::make_unique(params); arb::symmetric_recipe recipe(std::move(tile)); - auto decomp = arb::partition_load_balance(recipe, ctx); - // Construct the model. - arb::simulation sim(recipe, decomp, ctx); + arb::simulation sim(recipe, ctx); meters.checkpoint("model-init", ctx); diff --git a/example/dryrun/branch_cell.hpp b/example/dryrun/branch_cell.hpp index 9750c46c01..cf208d6d2c 100644 --- a/example/dryrun/branch_cell.hpp +++ b/example/dryrun/branch_cell.hpp @@ -104,34 +104,22 @@ arb::cable_cell branch_cell(arb::cell_gid_type gid, const cell_parameters& param dist_from_soma += l; } - arb::label_dict labels; - using arb::reg::tagged; + arb::label_dict labels; labels.set("soma", tagged(stag)); labels.set("dend", tagged(dtag)); - arb::decor decor; - - decor.paint("soma"_lab, arb::density("hh")); - decor.paint("dend"_lab, arb::density("pas")); - - decor.set_default(arb::axial_resistivity{100}); // [Ω·cm] - - // Add spike threshold detector at the soma. - decor.place(arb::mlocation{0,0}, arb::threshold_detector{10}, "detector"); - - // Add a synapse to the mid point of the first dendrite. - decor.place(arb::mlocation{0, 0.5}, arb::synapse("expsyn"), "synapse"); + auto decor = arb::decor() + .set_default(arb::axial_resistivity{100}) // [Ω·cm] + .paint("soma"_lab, arb::density("hh")) // Add HH dynamics to soma. + .paint("dend"_lab, arb::density("pas")) // Leaky current everywhere else. + .place(arb::mlocation{0,0}, arb::threshold_detector{10}, "detector") // Add spike threshold detector at the soma. + .place(arb::mlocation{0, 0.5}, arb::synapse("expsyn"), "synapse") // Add a synapse to the mid point of the first dendrite. + .set_default(arb::cv_policy_every_segment()); // Make a CV between every sample in the sample tree. // Add additional synapses that will not be connected to anything. for (unsigned i=1u; i event_generators(cell_gid_type gid) const override { std::vector gens; if (gid%20 == 0) { - gens.push_back(arb::explicit_generator({{{"synapse"}, 1.0, event_weight_}})); + gens.push_back(arb::explicit_generator({"synapse"}, event_weight_, std::vector{1.0f})); } return gens; } @@ -174,19 +174,17 @@ int main(int argc, char** argv) { params.num_ranks, params.cell, params.min_delay); arb::symmetric_recipe recipe(std::move(tile)); - auto decomp = arb::partition_load_balance(recipe, ctx); - // Construct the model. - arb::simulation sim(recipe, decomp, ctx); + arb::simulation sim(recipe, ctx); // The id of the only probe on the cell: the cell_member type points to (cell 0, probe 0) - auto probe_id = cell_member_type{0, 0}; + auto probeset_id = cell_member_type{0, 0}; // The schedule for sampling is 10 samples every 1 ms. auto sched = arb::regular_schedule(1); // This is where the voltage samples will be stored as (time, value) pairs arb::trace_vector voltage; - // Now attach the sampler at probe_id, with sampling schedule sched, writing to voltage - sim.add_sampler(arb::one_probe(probe_id), sched, arb::make_simple_sampler(voltage)); + // Now attach the sampler at probeset_id, with sampling schedule sched, writing to voltage + sim.add_sampler(arb::one_probe(probeset_id), sched, arb::make_simple_sampler(voltage)); // Set up recording of spikes to a vector on the root process. std::vector recorded_spikes; diff --git a/example/gap_junctions/gap_junctions.cpp b/example/gap_junctions/gap_junctions.cpp index f61b835ea1..5d5d8c128c 100644 --- a/example/gap_junctions/gap_junctions.cpp +++ b/example/gap_junctions/gap_junctions.cpp @@ -172,7 +172,7 @@ int main(int argc, char** argv) { auto decomp = arb::partition_load_balance(recipe, context); // Construct the model. - arb::simulation sim(recipe, decomp, context); + arb::simulation sim(recipe, context, decomp); // Set up the probe that will measure voltage in the cell. @@ -180,7 +180,7 @@ int main(int argc, char** argv) { // This is where the voltage samples will be stored as (time, value) pairs std::vector> voltage_traces(decomp.num_local_cells()); - // Now attach the sampler at probe_id, with sampling schedule sched, writing to voltage + // Now attach the sampler at probeset_id, with sampling schedule sched, writing to voltage unsigned j=0; for (auto g : decomp.groups()) { for (auto i : g.gids) { @@ -275,37 +275,21 @@ arb::cable_cell gj_cell(cell_gid_type gid, unsigned ncell, double stim_duration) double dend_rad = 3./2; // μm tree.append(0, {0,0,2*soma_rad, dend_rad}, {0,0,2*soma_rad+300, dend_rad}, 3); // dendrite - arb::decor decor; - - decor.set_default(arb::axial_resistivity{100}); // [Ω·cm] - decor.set_default(arb::membrane_capacitance{0.018}); // [F/m²] - - // Define the density channels and their parameters. - arb::mechanism_desc nax("nax"); - nax["gbar"] = 0.04; - nax["sh"] = 10; - - arb::mechanism_desc kdrmt("kdrmt"); - kdrmt["gbar"] = 0.0001; - - arb::mechanism_desc kamt("kamt"); - kamt["gbar"] = 0.004; - - arb::mechanism_desc pas("pas/e=-65.0"); - pas["g"] = 1.0/12000.0; - - // Paint density channels on all parts of the cell - decor.paint("(all)"_reg, arb::density{nax}); - decor.paint("(all)"_reg, arb::density{kdrmt}); - decor.paint("(all)"_reg, arb::density{kamt}); - decor.paint("(all)"_reg, arb::density{pas}); - - // Add a spike detector to the soma. - decor.place(arb::mlocation{0,0}, arb::threshold_detector{10}, "detector"); - - // Add two gap junction sites. - decor.place(arb::mlocation{0, 1}, arb::junction{"gj"}, "local_1"); - decor.place(arb::mlocation{0, 0}, arb::junction{"gj"}, "local_0"); + auto decor = arb::decor{} + .set_default(arb::axial_resistivity{100}) // [Ω·cm] + .set_default(arb::membrane_capacitance{0.018}) // [F/m²] + // Paint density channels on all parts of the cell + .paint("(all)"_reg, arb::density{"nax", {{"gbar", 0.04}, {"sh", 10}}}) + .paint("(all)"_reg, arb::density{"kdrmt", {{"gbar", 0.0001}}}) + .paint("(all)"_reg, arb::density{"kamt", {{"gbar", 0.004}}}) + .paint("(all)"_reg, arb::density{"pas/e=-65", {{"g", 1.0/12000.0}}}) + // Add a spike detector to the soma. + .place(arb::mlocation{0,0}, arb::threshold_detector{10}, "detector") + // Add two gap junction sites. + .place(arb::mlocation{0, 1}, arb::junction{"gj"}, "local_1") + .place(arb::mlocation{0, 0}, arb::junction{"gj"}, "local_0") + // Add a synapse to the mid point of the first dendrite. + .place(arb::mlocation{0, 0.5}, arb::synapse{"expsyn"}, "syn"); // Attach a stimulus to the first cell of the first group if (!gid) { @@ -313,9 +297,6 @@ arb::cable_cell gj_cell(cell_gid_type gid, unsigned ncell, double stim_duration) decor.place(arb::mlocation{0, 0.5}, stim, "stim"); } - // Add a synapse to the mid point of the first dendrite. - decor.place(arb::mlocation{0, 0.5}, arb::synapse{"expsyn"}, "syn"); - // Create the cell and set its electrical properties. return arb::cable_cell(tree, {}, decor); } diff --git a/example/generators/generators.cpp b/example/generators/generators.cpp index 94bc75be1f..c0b32d37a5 100644 --- a/example/generators/generators.cpp +++ b/example/generators/generators.cpp @@ -59,13 +59,12 @@ class generator_recipe: public arb::recipe { arb::label_dict labels; labels.set("soma", arb::reg::tagged(1)); - arb::decor decor; - decor.paint("soma"_lab, arb::density("pas")); - - // Add one synapse at the soma. - // This synapse will be the target for all events, from both - // event_generators. - decor.place(arb::mlocation{0, 0.5}, arb::synapse("expsyn"), "syn"); + auto decor = arb::decor{} + .paint("soma"_lab, arb::density("pas")) + // Add one synapse at the soma. + // This synapse will be the target for all events, from both + // event_generators. + .place(arb::mlocation{0, 0.5}, arb::synapse("expsyn"), "syn"); return arb::cable_cell(tree, labels, decor); } @@ -132,22 +131,19 @@ int main() { // Create an instance of our recipe. generator_recipe recipe; - // Make the domain decomposition for the model - auto decomp = arb::partition_load_balance(recipe, context); - // Construct the model. - arb::simulation sim(recipe, decomp, context); + arb::simulation sim(recipe, context); // Set up the probe that will measure voltage in the cell. // The id of the only probe on the cell: the cell_member type points to (cell 0, probe 0) - auto probe_id = cell_member_type{0, 0}; + auto probeset_id = cell_member_type{0, 0}; // The schedule for sampling is 10 samples every 1 ms. auto sched = arb::regular_schedule(0.1); // This is where the voltage samples will be stored as (time, value) pairs arb::trace_vector voltage; - // Now attach the sampler at probe_id, with sampling schedule sched, writing to voltage - sim.add_sampler(arb::one_probe(probe_id), sched, arb::make_simple_sampler(voltage)); + // Now attach the sampler at probeset_id, with sampling schedule sched, writing to voltage + sim.add_sampler(arb::one_probe(probeset_id), sched, arb::make_simple_sampler(voltage)); // Run the simulation for 100 ms, with time steps of 0.01 ms. sim.run(100, 0.01); diff --git a/example/generators/readme.md b/example/generators/readme.md index 843d566473..fc73a3a49b 100644 --- a/example/generators/readme.md +++ b/example/generators/readme.md @@ -165,19 +165,19 @@ We must attach a sampler to this probe to get sample values. The sampling interface is rich, and can be extended in many ways. For our simple use case there are three bits of information that need to be provided when creating a sampler -1. The `probe_id` that identifies the probe (generated in the recipe). +1. The `probeset_id` that identifies the probe (generated in the recipe). 2. The schedule to use for sampling (in our case 10 samples every ms). 3. The location where we want to save the samples for outputing later. ```C++ // The id of the only probe (cell 0, probe 0) - auto probe_id = cell_member_type{0, 0}; + auto probeset_id = cell_member_type{0, 0}; // The schedule for sampling is 10 samples every 1 ms. auto sched = arb::regular_schedule(0.1); // Where the voltage samples will be stored as (time, value) pairs arb::trace_data voltage; // Now attach the sampler: - sim.add_sampler(arb::one_probe(probe_id), sched, arb::make_simple_sampler(voltage)); + sim.add_sampler(arb::one_probe(probeset_id), sched, arb::make_simple_sampler(voltage)); ``` When the simulation is run, the `simple_sampler` that we attached to the probe will store the sample values as (time, voltage) pairs in the `voltage` vector. diff --git a/example/lfp/CMakeLists.txt b/example/lfp/CMakeLists.txt index a3046c4812..a6dbabfd6e 100644 --- a/example/lfp/CMakeLists.txt +++ b/example/lfp/CMakeLists.txt @@ -1,4 +1,4 @@ add_executable(lfp EXCLUDE_FROM_ALL lfp.cpp) add_dependencies(examples lfp) -target_link_libraries(lfp PRIVATE arbor ext-tinyopt) +target_link_libraries(lfp PRIVATE arbor arborio ext-tinyopt) file(COPY plot-lfp.py DESTINATION "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}") diff --git a/example/lfp/lfp.cpp b/example/lfp/lfp.cpp index 9669c26ee3..95ead2c152 100644 --- a/example/lfp/lfp.cpp +++ b/example/lfp/lfp.cpp @@ -3,7 +3,6 @@ #include #include -#include #include #include #include @@ -16,6 +15,8 @@ #include #include +#include + using std::any; using arb::util::any_cast; using arb::util::any_ptr; @@ -23,6 +24,8 @@ using arb::util::unique_any; using arb::cell_gid_type; using arb::cell_member_type; +using namespace arborio::literals; + // Recipe represents one cable cell with one synapse, together with probes for total trans-membrane current, membrane voltage, // ionic current density, and synaptic conductance. A sequence of spikes are presented to the one synapse on the cell. @@ -79,23 +82,18 @@ struct lfp_demo_recipe: public arb::recipe { // Apical dendrite, length 490 μm, radius 1 μm, with SWC tag 4. tree.append(soma_apex, {0, 0, 10, 1}, {0, 0, 500, 1}, 4); - decor dec; - - // Use NEURON defaults for reversal potentials, ion concentrations etc., but override ra, cm. - dec.set_default(axial_resistivity{100}); // [Ω·cm] - dec.set_default(membrane_capacitance{0.01}); // [F/m²] - - // Twenty CVs per branch on the dendrites (tag 4). - dec.set_default(cv_policy_fixed_per_branch(20, arb::reg::tagged(4))); - - // Add pas and hh mechanisms: - dec.paint(reg::tagged(1), density("hh")); // (default parameters) - dec.paint(reg::tagged(4), density("pas/e=-70.0")); - - // Add exponential synapse at centre of soma. - synapse_location_ = ls::on_components(0.5, reg::tagged(1)); - dec.place(synapse_location_, synapse("expsyn", {{"e", 0}, {"tau", 2}}), "syn"); - + synapse_location_ = "(on-components 0.5 (tag 1))"_ls; + auto dec = decor() + // Use NEURON defaults for reversal potentials, ion concentrations etc., but override ra, cm. + .set_default(axial_resistivity{100}) // [Ω·cm] + .set_default(membrane_capacitance{0.01}) // [F/m²] + // Twenty CVs per branch on the dendrites (tag 4). + .set_default(cv_policy_fixed_per_branch(20, arb::reg::tagged(4))) + // Add pas and hh mechanisms: + .paint("(tag 1)"_reg, density("hh")) // (default parameters) + .paint("(tag 4)"_reg, density("pas/e=-70.0")) + // Add exponential synapse at centre of soma. + .place(synapse_location_, synapse("expsyn", {{"e", 0}, {"tau", 2}}), "syn"); cell_ = cable_cell(tree, {}, dec); } }; @@ -183,24 +181,22 @@ struct { // Run simulation. int main(int argc, char** argv) { - auto context = arb::make_context(); - - // Weight 0.005 μS, onset at t = 0 ms, mean frequency 0.1 kHz. - auto events = arb::poisson_generator({"syn"}, .005, 0., 0.1, std::minstd_rand{}); - lfp_demo_recipe R(events); - + // Configuration const double t_stop = 100; // [ms] const double sample_dt = 0.1; // [ms] const double dt = 0.1; // [ms] - arb::simulation sim(R, arb::partition_load_balance(R, context), context); + // Weight 0.005 μS, onset at t = 0 ms, mean frequency 0.1 kHz. + auto events = arb::poisson_generator({"syn"}, .005, 0., 0.1, std::minstd_rand{}); + lfp_demo_recipe recipe(events); + arb::simulation sim(recipe); std::vector electrodes = { {30, 0, 0}, {30, 0, 100} }; - arb::morphology cell_morphology = any_cast(R.get_cell_description(0)).morphology(); + arb::morphology cell_morphology = any_cast(recipe.get_cell_description(0)).morphology(); arb::place_pwlin placed_cell(cell_morphology); auto probe0_metadata = sim.get_probe_metadata(cell_member_type{0, 0}); diff --git a/example/lfp/neuron_lfp_example.py b/example/lfp/neuron_lfp_example.py index c3db1fdada..4b8b931566 100755 --- a/example/lfp/neuron_lfp_example.py +++ b/example/lfp/neuron_lfp_example.py @@ -1,11 +1,11 @@ #!/usr/env/bin python # -*- coding: utf-8 -*- # Author: Torbjørn Ness -''' +""" NEURON and Python - Creating a multi-compartment model with synaptic input with randomized activation times -''' -# Import modules for plotting and NEURON itself +""" +# Import modules for plotting and NEURON itself import matplotlib.pyplot as plt import neuron import numpy as np @@ -21,8 +21,8 @@ class Cell: def __init__(self): cvode = neuron.h.CVode() cvode.use_fast_imem(1) - self.tstop = 100. # simulation duration in ms - self.v_init = -65 # membrane voltage(s) at t = 0 + self.tstop = 100.0 # simulation duration in ms + self.v_init = -65 # membrane voltage(s) at t = 0 neuron.h.dt = 0.1 @@ -37,13 +37,13 @@ def __init__(self): self.totnsegs = counter # Total number of compartments in cell model self.collect_geometry() - self.insert_synapse(self.seclist[0]) self.initiate_recorders() def make_cell(self): - neuron.h(""" + neuron.h( + """ create soma[1] create apic[1] objref all @@ -67,7 +67,8 @@ def make_cell(self): apic[0] { insert pas } soma[0] { insert hh } - """) + """ + ) def initiate_recorders(self): self.imem = [] # Record membrane currents @@ -96,16 +97,16 @@ def insert_synapse(self, syn_sec): """ print(syn_sec.diam) syn = neuron.h.ExpSyn(0.5, sec=syn_sec) - syn.e = 0. # reversal potential of synapse conductance in mV - syn.tau = 2. # time constant of synapse conductance in ms + syn.e = 0.0 # reversal potential of synapse conductance in mV + syn.tau = 2.0 # time constant of synapse conductance in ms - ns = neuron.h.NetStim(0.5) # spike time generator object (~presynaptic) - ns.noise = 1. # Fractional randomness (intervals from exp dist) - ns.start = 0. # approximate time of first spike - ns.number = 1000 # number of spikes - ns.interval = 10. # average interspike interval - nc = neuron.h.NetCon(ns, syn) # Connect generator to synapse - nc.weight[0] = .005 # Set synapse weight + ns = neuron.h.NetStim(0.5) # spike time generator object (~presynaptic) + ns.noise = 1.0 # Fractional randomness (intervals from exp dist) + ns.start = 0.0 # approximate time of first spike + ns.number = 1000 # number of spikes + ns.interval = 10.0 # average interspike interval + nc = neuron.h.NetCon(ns, syn) # Connect generator to synapse + nc.weight[0] = 0.005 # Set synapse weight # Everything must be stored or NEURON will forget they ever existed self.ns = ns @@ -130,13 +131,13 @@ def collect_geometry(self): counter = 0 - #loop over all segments + # loop over all segments for sec in neuron.h.allsec(): n3d = int(neuron.h.n3d()) nseg = sec.nseg - gsen2 = 1./2/nseg + gsen2 = 1.0 / 2 / nseg if n3d > 0: - #create interpolation objects for the xyz pt3d info: + # create interpolation objects for the xyz pt3d info: L = np.zeros(n3d) x = np.zeros(n3d) y = np.zeros(n3d) @@ -147,33 +148,33 @@ def collect_geometry(self): y[i] = neuron.h.y3d(i) z[i] = neuron.h.z3d(i) - #normalize as seg.x [0, 1] + # normalize as seg.x [0, 1] L /= sec.L - #temporary store position of segment midpoints + # temporary store position of segment midpoints segx = np.zeros(nseg) for i, seg in enumerate(sec): segx[i] = seg.x - #can't be >0 which may happen due to NEURON->Python float transfer: + # can't be >0 which may happen due to NEURON->Python float transfer: segx0 = (segx - gsen2).round(decimals=6) segx1 = (segx + gsen2).round(decimals=6) - #fill vectors with interpolated coordinates of start and end points - xstartvec[counter:counter+nseg] = np.interp(segx0, L, x) - xendvec[counter:counter+nseg] = np.interp(segx1, L, x) + # fill vectors with interpolated coordinates of start and end points + xstartvec[counter : counter + nseg] = np.interp(segx0, L, x) + xendvec[counter : counter + nseg] = np.interp(segx1, L, x) - ystartvec[counter:counter+nseg] = np.interp(segx0, L, y) - yendvec[counter:counter+nseg] = np.interp(segx1, L, y) + ystartvec[counter : counter + nseg] = np.interp(segx0, L, y) + yendvec[counter : counter + nseg] = np.interp(segx1, L, y) - zstartvec[counter:counter+nseg] = np.interp(segx0, L, z) - zendvec[counter:counter+nseg] = np.interp(segx1, L, z) + zstartvec[counter : counter + nseg] = np.interp(segx0, L, z) + zendvec[counter : counter + nseg] = np.interp(segx1, L, z) - #fill in values area, diam, length + # fill in values area, diam, length for i, seg in enumerate(sec): areavec[counter] = neuron.h.area(seg.x) diamvec[counter] = seg.diam - lengthvec[counter] = sec.L/nseg + lengthvec[counter] = sec.L / nseg counter += 1 # starting position of each compartment (segment) @@ -204,7 +205,7 @@ def simulate(self): self.vmem = np.array(self.vmem) self.imem = np.array(self.imem) self.syn_i = np.array(self.syn_i) - self.tvec = np.array(self.tvec)[:self.vmem.shape[1]] + self.tvec = np.array(self.tvec)[: self.vmem.shape[1]] class ExtElectrode: @@ -238,9 +239,11 @@ def calc_mapping(self, cell): """ self.mapping = np.zeros((self.num_elecs, cell.totnsegs)) for e_idx in range(self.num_elecs): - r2 = ((cell.xmid - self.elec_x[e_idx])**2 + - (cell.ymid - self.elec_y[e_idx])**2 + - (cell.zmid - self.elec_z[e_idx])**2) + r2 = ( + (cell.xmid - self.elec_x[e_idx]) ** 2 + + (cell.ymid - self.elec_y[e_idx]) ** 2 + + (cell.zmid - self.elec_z[e_idx]) ** 2 + ) self.mapping[e_idx] = 1 / (4 * np.pi * self.sigma * np.sqrt(r2)) @@ -251,22 +254,43 @@ def plot_results(cell, electrode): ################################################################################ fig = plt.figure(figsize=(9, 5)) fig.subplots_adjust(wspace=0.5, hspace=0.9) - ax_morph = fig.add_subplot(131, aspect=1, xlim=[-150, 150], ylim=[-100, 600], - title="morphology", xlabel="x ($\mu$m)", ylabel="y ($\mu$m)") - ax_syn = fig.add_subplot(332, ylabel='nA', title="synaptic current", xlabel='time (ms)') - ax_vmem = fig.add_subplot(335, ylabel='mV', xlabel='time (ms)', title="membrane potential") - ax_imem = fig.add_subplot(338, ylabel='nA', xlabel='time (ms)', title="membrane current") - ax_ep = fig.add_subplot(133, ylabel='$\mu$V', xlabel="time (ms)", title="Extracellular potential") + ax_morph = fig.add_subplot( + 131, + aspect=1, + xlim=[-150, 150], + ylim=[-100, 600], + title="morphology", + xlabel=r"x ($\mu$m)", + ylabel=r"y ($\mu$m)", + ) + ax_syn = fig.add_subplot( + 332, ylabel="nA", title="synaptic current", xlabel="time (ms)" + ) + ax_vmem = fig.add_subplot( + 335, ylabel="mV", xlabel="time (ms)", title="membrane potential" + ) + ax_imem = fig.add_subplot( + 338, ylabel="nA", xlabel="time (ms)", title="membrane current" + ) + ax_ep = fig.add_subplot( + 133, ylabel=r"$\mu$V", xlabel="time (ms)", title="Extracellular potential" + ) plot_comp_idx = 0 - plot_comp_clr = 'r' + plot_comp_clr = "r" for idx in range(cell.totnsegs): - ax_morph.plot([cell.xstart[idx], cell.xend[idx]], - [cell.zstart[idx], cell.zend[idx]], lw=cell.diam[idx] / 2, c='k') - ax_morph.plot(cell.xmid[plot_comp_idx], cell.zmid[plot_comp_idx], marker='*', c=plot_comp_clr) - - ax_syn.plot(cell.tvec, cell.syn_i, c='k', lw=2) + ax_morph.plot( + [cell.xstart[idx], cell.xend[idx]], + [cell.zstart[idx], cell.zend[idx]], + lw=cell.diam[idx] / 2, + c="k", + ) + ax_morph.plot( + cell.xmid[plot_comp_idx], cell.zmid[plot_comp_idx], marker="*", c=plot_comp_clr + ) + + ax_syn.plot(cell.tvec, cell.syn_i, c="k", lw=2) ax_vmem.plot(cell.tvec, cell.vmem[0, :], c=plot_comp_clr, lw=2) ax_imem.plot(cell.tvec, cell.imem[0, :], c=plot_comp_clr, lw=2) @@ -274,13 +298,16 @@ def plot_results(cell, electrode): e_clr = electrode.elec_clr(e_idx) sig = 1000 * electrode.extracellular_potential[e_idx] # convert to uV ax_ep.plot(cell.tvec, sig, c=e_clr) - ax_morph.plot(electrode.elec_x[e_idx], electrode.elec_z[e_idx], marker='o', c=e_clr) + ax_morph.plot( + electrode.elec_x[e_idx], electrode.elec_z[e_idx], marker="o", c=e_clr + ) - fig.savefig('example_nrn_EP.png') + fig.savefig("example_nrn_EP.png") plt.close(fig) -if __name__ == '__main__': + +if __name__ == "__main__": cell = Cell() cell.simulate() @@ -293,4 +320,3 @@ def plot_results(cell, electrode): electrode.calc_extracellular_potential(cell) plot_results(cell, electrode) - diff --git a/example/lfp/plot-lfp.py b/example/lfp/plot-lfp.py index bbbeff05be..ed210ef389 100755 --- a/example/lfp/plot-lfp.py +++ b/example/lfp/plot-lfp.py @@ -18,38 +18,60 @@ # "morphology": { "unit": , "samples": [[[ ] ...] ...] # "probe": [ ], "electrodes": [[ ] ...] } + def subplot_timeseries(fig, index, jdict, key): data = jdict[key] - sub = fig.add_subplot(index, ylabel=data['unit'], title=key, xlabel='time (ms)') - ts = data['time'] - vss = data['values'] if 'values' in data else [data['value']] + sub = fig.add_subplot(index, ylabel=data["unit"], title=key, xlabel="time (ms)") + ts = data["time"] + vss = data["values"] if "values" in data else [data["value"]] + + for vs in vss: + sub.plot(ts, vs) - for vs in vss: sub.plot(ts, vs) def subplot_morphology(fig, index, jdict, key, xlim, ylim): data = jdict[key] - unit = data['unit'] - sub = fig.add_subplot(index, xlabel='x ('+unit+')', ylabel='y ('+unit+')', title=key, xlim=xlim, ylim=ylim) - - for samples in data['samples']: - polys = [([x0-s0*dy, x0+s0*dy, x1+s1*dy, x1-s1*dy], [y0+s0*dx, y0-s0*dx, y1-s1*dx, y1+s1*dx]) - for ((x0, y0, r0), (x1, y1, r1)) in zip(samples, samples[1:]) - for dx, dy in [(x1-x0, y1-y0)] - for d in [math.sqrt(dx*dx+dy*dy)] - if d>0 - for s0, s1 in [(r0/d, r1/d)]] - - for xs, ys in polys: sub.fill(xs, ys, 'k') - sub.plot(*[u for x, y in data['electrodes'] for u in [[x], [y], 'o']]) - sub.plot(*[u for x, y in [data['probe']] for u in [[x], [y], 'r*']]) - -P = argparse.ArgumentParser(description='Plot results of LFP demo.') + unit = data["unit"] + sub = fig.add_subplot( + index, + xlabel="x (" + unit + ")", + ylabel="y (" + unit + ")", + title=key, + xlim=xlim, + ylim=ylim, + ) + + for samples in data["samples"]: + polys = [ + ( + [x0 - s0 * dy, x0 + s0 * dy, x1 + s1 * dy, x1 - s1 * dy], + [y0 + s0 * dx, y0 - s0 * dx, y1 - s1 * dx, y1 + s1 * dx], + ) + for ((x0, y0, r0), (x1, y1, r1)) in zip(samples, samples[1:]) + for dx, dy in [(x1 - x0, y1 - y0)] + for d in [math.sqrt(dx * dx + dy * dy)] + if d > 0 + for s0, s1 in [(r0 / d, r1 / d)] + ] + + for xs, ys in polys: + sub.fill(xs, ys, "k") + sub.plot(*[u for x, y in data["electrodes"] for u in [[x], [y], "o"]]) + sub.plot(*[u for x, y in [data["probe"]] for u in [[x], [y], "r*"]]) + + +P = argparse.ArgumentParser(description="Plot results of LFP demo.") P.add_argument( - 'input', metavar='FILE', nargs='?', type=argparse.FileType('r'), default=sys.stdin, - help='LFP example output in JSON') + "input", + metavar="FILE", + nargs="?", + type=argparse.FileType("r"), + default=sys.stdin, + help="LFP example output in JSON", +) P.add_argument( - '-o', '--output', metavar='FILE', dest='outfile', - help='save plot to file FILE') + "-o", "--output", metavar="FILE", dest="outfile", help="save plot to file FILE" +) args = P.parse_args() j = json.load(args.input) @@ -57,11 +79,11 @@ def subplot_morphology(fig, index, jdict, key, xlim, ylim): fig = plt.figure(figsize=(9, 5)) fig.subplots_adjust(wspace=0.6, hspace=0.9) -subplot_morphology(fig, 131, j, 'morphology', xlim=[-100, 100], ylim=[-100, 600]) -subplot_timeseries(fig, 332, j, 'synaptic current') -subplot_timeseries(fig, 335, j, 'membrane potential') -subplot_timeseries(fig, 338, j, 'ionic current density') -subplot_timeseries(fig, 133, j, 'extracellular potential') +subplot_morphology(fig, 131, j, "morphology", xlim=[-100, 100], ylim=[-100, 600]) +subplot_timeseries(fig, 332, j, "synaptic current") +subplot_timeseries(fig, 335, j, "membrane potential") +subplot_timeseries(fig, 338, j, "ionic current density") +subplot_timeseries(fig, 133, j, "extracellular potential") if args.outfile: fig.savefig(args.outfile) diff --git a/example/plasticity/CMakeLists.txt b/example/plasticity/CMakeLists.txt new file mode 100644 index 0000000000..904ea0943a --- /dev/null +++ b/example/plasticity/CMakeLists.txt @@ -0,0 +1,4 @@ +add_executable(plasticity EXCLUDE_FROM_ALL plasticity.cpp) +add_dependencies(examples plasticity) + +target_link_libraries(plasticity PRIVATE arbor arborio arborenv) diff --git a/example/plasticity/branch_cell.hpp b/example/plasticity/branch_cell.hpp new file mode 100644 index 0000000000..527f26012c --- /dev/null +++ b/example/plasticity/branch_cell.hpp @@ -0,0 +1,138 @@ +#pragma once + +#include +#include + +#include + +#include + +#include +#include +#include +#include + +#include +#include + +using namespace arborio::literals; + +// Parameters used to generate the random cell morphologies. +struct cell_parameters { + cell_parameters() = default; + + // Maximum number of levels in the cell (not including the soma) + unsigned max_depth = 5; + + // The following parameters are described as ranges. + // The first value is at the soma, and the last value is used on the last level. + // Values at levels in between are found by linear interpolation. + std::array branch_probs = {1.0, 0.5}; // Probability of a branch occuring. + std::array compartments = {20, 2}; // Compartment count on a branch. + std::array lengths = {200, 20}; // Length of branch in μm. + + // The number of synapses per cell. + unsigned synapses = 1; +}; + +cell_parameters parse_cell_parameters(nlohmann::json& json) { + cell_parameters params; + sup::param_from_json(params.max_depth, "depth", json); + sup::param_from_json(params.branch_probs, "branch-probs", json); + sup::param_from_json(params.compartments, "compartments", json); + sup::param_from_json(params.lengths, "lengths", json); + sup::param_from_json(params.synapses, "synapses", json); + + return params; +} + +// Helper used to interpolate in branch_cell. +template +double interp(const std::array& r, unsigned i, unsigned n) { + double p = i * 1./(n-1); + double r0 = r[0]; + double r1 = r[1]; + return r[0] + p*(r1-r0); +} + +arb::cable_cell branch_cell(arb::cell_gid_type gid, const cell_parameters& params) { + arb::segment_tree tree; + + // Add soma. + double srad = 12.6157/2.0; // soma radius + int stag = 1; // soma tag + tree.append(arb::mnpos, {0, 0,-srad, srad}, {0, 0, srad, srad}, stag); // For area of 500 μm². + + std::vector> levels; + levels.push_back({0}); + + // Standard mersenne_twister_engine seeded with gid. + std::mt19937 gen(gid); + std::uniform_real_distribution dis(0, 1); + + double drad = 0.5; // Diameter of 1 μm for each dendrite cable. + int dtag = 3; // Dendrite tag. + + double dist_from_soma = srad; // Start dendrite at the edge of the soma. + for (unsigned i=0; i sec_ids; + for (unsigned sec: levels[i]) { + for (unsigned j=0; j<2; ++j) { + if (dis(gen) 1) { + decor.place(arb::ls::uniform("dend"_lab, 0, params.synapses - 2, gid), arb::synapse("expsyn"), "extra_syns"); + } + + // Make a CV between every sample in the sample tree. + decor.set_default(arb::cv_policy_every_segment()); + + arb::cable_cell cell(arb::morphology(tree), labels, decor); + + return cell; +} diff --git a/example/plasticity/plasticity.cpp b/example/plasticity/plasticity.cpp new file mode 100644 index 0000000000..4b97d458be --- /dev/null +++ b/example/plasticity/plasticity.cpp @@ -0,0 +1,104 @@ +#include +#include +#include +#include + +#include + +#include +#include +#include +#include +#include + +using namespace arborio::literals; + +// Fan out network with n members +// - one spike source at gid 0 +// - n-1 passive, soma-only cable cells +// Starts out disconnected, but new connections from the source to the cable cells may be added. +struct recipe: public arb::recipe { + const std::string // Textuals labels for + syn = "synapse", // exponential synapse on cable cells + det = "detector", // spike detector on cable cells + src = "src"; // spike source + const double // Parameters + r_soma = 12.6157/2.0, // soma radius; A=500 μm² + f_spike = 0.25, // spike source interval + weight = 5.5, // connection weight + delay = 0.05; // delay + arb::locset center = "(location 0 0.5)"_ls; // Soma center + arb::region all = "(all)"_reg; // Whole cell + arb::cell_size_type n_ = 0; // Cell count + + mutable std::unordered_map> connected; // lookup table for connections + // Required but uninteresting methods + recipe(arb::cell_size_type n): n_{n} {} + arb::cell_size_type num_cells() const override { return n_; } + arb::cell_kind get_cell_kind(arb::cell_gid_type gid) const override { return 0 == gid ? arb::cell_kind::spike_source : arb::cell_kind::cable; } + std::any get_global_properties(arb::cell_kind kind) const override { + if (kind == arb::cell_kind::spike_source) return {}; + arb::cable_cell_global_properties ccp; + ccp.default_parameters = arb::neuron_parameter_defaults; + return ccp; + } + // For printing Um + std::vector get_probes(arb::cell_gid_type gid) const override { + if (gid == 0) return {}; + return {arb::cable_probe_membrane_voltage{center}}; + } + // Look up the (potential) connection to this cell + std::vector connections_on(arb::cell_gid_type gid) const override { return connected[gid]; } + // Connect cell `to` to the spike source + void add_connection(arb::cell_gid_type to) { assert(to > 0); connected[to] = {arb::cell_connection({0, src}, {syn}, weight, delay)}; } + // Return the cell at gid + arb::util::unique_any get_cell_description(arb::cell_gid_type gid) const override { + // source at gid 0 + if (gid == 0) return arb::spike_source_cell{src, arb::regular_schedule(f_spike)}; + // all others are receiving cable cells; single CV w/ HH + arb::segment_tree tree; tree.append(arb::mnpos, {-r_soma, 0, 0, r_soma}, {r_soma, 0, 0, r_soma}, 1); + auto decor = arb::decor{}; + decor.paint(all, arb::density("hh", {{"gl", 5}})); + decor.place(center, arb::synapse("expsyn"), syn); + decor.place(center, arb::threshold_detector{-10.0}, det); + decor.set_default(arb::cv_policy_every_segment()); + return arb::cable_cell({tree}, {}, decor); + } +}; + +void sampler(arb::probe_metadata pm, std::size_t n, const arb::sample_record* samples) { + auto* loc = arb::util::any_cast(pm.meta); + std::cout << std::fixed << std::setprecision(4); + for (std::size_t i = 0; i(samples[i].data); + std::cout << "| " << samples[i].time << " | " << loc->pos << " | " << *value << " |\n"; + } +} + +void spike_cb(const std::vector& spikes) { + for(const auto& spike: spikes) std::cout << " * " << spike.source << "@" << spike.time << '\n'; +} + +void print_header(double from, double to) { + std::cout << "\n" + << "Running simulation from " << from << "ms to " << to << "ms\n" + << "Spikes are marked: *\n" + << "\n" + << "| Time/ms | Position/um | Um/mV |\n" + << "|---------+-------------+----------|\n"; +} + +const double dt = 0.05; + +int main(int argc, char** argv) { + auto rec = recipe(3); + rec.add_connection(1); + auto sim = arb::simulation(rec); + sim.add_sampler(arb::all_probes, arb::regular_schedule(dt), sampler, arb::sampling_policy::exact); + sim.set_local_spike_callback(spike_cb); + print_header(0, 1); + sim.run(1.0, dt); + rec.add_connection(2); + print_header(1, 2); + sim.run(2.0, dt); +} diff --git a/example/plasticity/readme.md b/example/plasticity/readme.md new file mode 100644 index 0000000000..e2cac0b56a --- /dev/null +++ b/example/plasticity/readme.md @@ -0,0 +1,22 @@ +# Plasticity Example + +A miniapp that demonstrates how to use mutable connectivity. The simulation is +run in two parts with different connectivity. + +All cells will print out their _generated_ spikes and (cable cells only!) their +membrane potential at the soma. The topology is this +``` + +--------------+ + | 0 Spike | + | Source | + | f=1/0.0125ms | + +--------------+ + / \ + / \ <--- This connection will not be present for the first part + / \ and enabled for the second part of the simulation. + / \ + +---------+ +---------+ + | 1 Cable | | 2 Cable | + | Cell | | Cell | + +---------+ +---------+ +``` diff --git a/example/probe-demo/probe-demo.cpp b/example/probe-demo/probe-demo.cpp index 585ea25436..16bcef344b 100644 --- a/example/probe-demo/probe-demo.cpp +++ b/example/probe-demo/probe-demo.cpp @@ -32,7 +32,7 @@ const char* help_msg = " --until=TIME simulate until TIME [ms]\n" " -n, --n-cv=N discretize with N CVs\n" " -t, --sample=TIME take a sample every TIME [ms]\n" - " -x, --at=X take sample at relative position X along cable\n" + " -x, --at=X take sample at relative position X along cable or index of synapse\n" " --exact use exact time sampling\n" " -h, --help print extended usage information and exit\n" "\n" @@ -56,6 +56,7 @@ const char* help_msg = " hh_m HH state variable m at X\n" " hh_h HH state variable h at X\n" " hh_n HH state variable n at X\n" + " expsyn_g expsyn state variable g at X" "\n" "where X is the relative position along the cable as described above, or else:\n" "\n" @@ -68,7 +69,8 @@ const char* help_msg = " all_c_k internal potassium concentration [mmol/L] in each CV\n" " all_hh_m HH state variable m in each CV\n" " all_hh_h HH state variable h in each CV\n" - " all_hh_n HH state variable n in each CV\n"; + " all_hh_n HH state variable n in each CV\n" + " all_expsyn_g expsyn state variable g for all synapses\n"; struct options { double sim_end = 100.0; // [ms] @@ -118,12 +120,19 @@ struct cable_recipe: public arb::recipe { arb::segment_tree tree; tree.append(arb::mnpos, {0, 0, 0, 0.5*diam}, {length, 0, 0, 0.5*diam}, 1); - arb::decor decor; - decor.paint(arb::reg::all(), arb::density("hh")); // HH mechanism over whole cell. - decor.place(arb::mlocation{0, 0.}, arb::i_clamp{1.}, "iclamp"); // Inject a 1 nA current indefinitely. - + auto decor = arb::decor{} + .paint(arb::reg::all(), arb::density("hh")) // HH mechanism over whole cell. + .place(arb::mlocation{0, 0.}, arb::i_clamp{1.}, "iclamp") // Inject a 1 nA current indefinitely. + .place(arb::mlocation{0, 0.}, arb::synapse("expsyn"), "synapse1") // a synapse + .place(arb::mlocation{0, 0.5}, arb::synapse("expsyn"), "synapse2"); // another synapse return arb::cable_cell(tree, {}, decor); } + + virtual std::vector event_generators(arb::cell_gid_type) const override { + return {arb::poisson_generator({"synapse1"}, .005, 0., 0.1, std::minstd_rand{}), + arb::poisson_generator({"synapse2"}, .1, 0., 0.1, std::minstd_rand{})}; + } + }; int main(int argc, char** argv) { @@ -135,8 +144,7 @@ int main(int argc, char** argv) { cable_recipe R(opt.probe_addr, opt.n_cv); - auto context = arb::make_context(); - arb::simulation sim(R, arb::partition_load_balance(R, context), context); + arb::simulation sim(R); sim.add_sampler(arb::all_probes, arb::regular_schedule(opt.sample_dt), @@ -160,7 +168,10 @@ int main(int argc, char** argv) { void scalar_sampler(arb::probe_metadata pm, std::size_t n, const arb::sample_record* samples) { auto* loc = any_cast(pm.meta); - assert(loc); + auto* point_info = any_cast(pm.meta); + assert((loc != nullptr) || (point_info != nullptr)); + + loc = loc ? loc : &(point_info->loc); std::cout << std::fixed << std::setprecision(4); for (std::size_t i = 0; i(pm.meta); - assert(cables_ptr); - unsigned n_cable = cables_ptr->size(); + auto* point_info_ptr = any_cast*>(pm.meta); + + assert((cables_ptr != nullptr) || (point_info_ptr != nullptr)); + + unsigned n_entities = cables_ptr ? cables_ptr->size() : point_info_ptr->size(); std::cout << std::fixed << std::setprecision(4); for (std::size_t i = 0; i(samples[i].data); assert(value_range); - assert(n_cable==value_range->second-value_range->first); - - for (unsigned j = 0; jfirst[j] << '\n'; + const auto& [lo, hi] = *value_range; + assert(n_entities==hi-lo); + + for (unsigned j = 0; j> probe_spec; diff --git a/example/ring/branch_cell.hpp b/example/ring/branch_cell.hpp index 527f26012c..503827c0c1 100644 --- a/example/ring/branch_cell.hpp +++ b/example/ring/branch_cell.hpp @@ -110,21 +110,13 @@ arb::cable_cell branch_cell(arb::cell_gid_type gid, const cell_parameters& param labels.set("soma", tagged(stag)); labels.set("dend", tagged(dtag)); - arb::decor decor; - - decor.paint("soma"_lab, arb::density("hh")); - decor.paint("dend"_lab, arb::density("pas")); - - decor.set_default(arb::axial_resistivity{100}); // [Ω·cm] - - // Add spike threshold detector at the soma. - decor.place(arb::mlocation{0,0}, arb::threshold_detector{10}, "detector"); - - // Add a synapse to the mid point of the first dendrite. - decor.place(arb::mlocation{0, 0.5}, arb::synapse("expsyn"), "primary_syn"); - + auto decor = arb::decor{} + .paint("soma"_lab, arb::density("hh")) + .paint("dend"_lab, arb::density("pas")) + .set_default(arb::axial_resistivity{100}) // [Ω·cm] + .place(arb::mlocation{0,0}, arb::threshold_detector{10}, "detector") // Add spike threshold detector at the soma. + .place(arb::mlocation{0, 0.5}, arb::synapse("expsyn"), "primary_syn"); // Add a synapse to the mid point of the first dendrite. // Add additional synapses that will not be connected to anything. - if (params.synapses > 1) { decor.place(arb::ls::uniform("dend"_lab, 0, params.synapses - 2, gid), arb::synapse("expsyn"), "extra_syns"); } diff --git a/example/ring/ring.cpp b/example/ring/ring.cpp index 8e66f2ef2e..cf8967537a 100644 --- a/example/ring/ring.cpp +++ b/example/ring/ring.cpp @@ -13,6 +13,7 @@ #include +#include #include #include #include @@ -44,9 +45,9 @@ struct ring_params { ring_params() = default; std::string name = "default"; - unsigned num_cells = 10; + unsigned num_cells = 100; double min_delay = 10; - double duration = 200; + double duration = 1000; cell_parameters cell; }; @@ -99,7 +100,7 @@ class ring_recipe: public arb::recipe { std::vector event_generators(cell_gid_type gid) const override { std::vector gens; if (!gid) { - gens.push_back(arb::explicit_generator({{{"primary_syn"}, 1.0, event_weight_}})); + gens.push_back(arb::explicit_generator({"primary_syn"}, event_weight_, std::vector{1.0f})); } return gens; } @@ -160,21 +161,20 @@ int main(int argc, char** argv) { // Create an instance of our recipe. ring_recipe recipe(params.num_cells, params.cell, params.min_delay); - auto decomp = arb::partition_load_balance(recipe, context); - // Construct the model. - arb::simulation sim(recipe, decomp, context); + auto decomposition = arb::partition_load_balance(recipe, context); + arb::simulation sim(recipe, context, decomposition); // Set up the probe that will measure voltage in the cell. // The id of the only probe on the cell: the cell_member type points to (cell 0, probe 0) - auto probe_id = cell_member_type{0, 0}; + auto probeset_id = cell_member_type{0, 0}; // The schedule for sampling is 10 samples every 1 ms. auto sched = arb::regular_schedule(1); // This is where the voltage samples will be stored as (time, value) pairs arb::trace_vector voltage; - // Now attach the sampler at probe_id, with sampling schedule sched, writing to voltage - sim.add_sampler(arb::one_probe(probe_id), sched, arb::make_simple_sampler(voltage)); + // Now attach the sampler at probeset_id, with sampling schedule sched, writing to voltage + sim.add_sampler(arb::one_probe(probeset_id), sched, arb::make_simple_sampler(voltage)); // Set up recording of spikes to a vector on the root process. std::vector recorded_spikes; @@ -187,7 +187,10 @@ int main(int argc, char** argv) { meters.checkpoint("model-init", context); - std::cout << "running simulation" << std::endl; + if (root) { + sim.set_epoch_callback(arb::epoch_progress_bar()); + } + std::cout << "running simulation\n" << std::endl; // Run the simulation for 100 ms, with time steps of 0.025 ms. sim.run(params.duration, 0.025); diff --git a/example/single/single.cpp b/example/single/single.cpp index 2721d2fd4d..26afc366ee 100644 --- a/example/single/single.cpp +++ b/example/single/single.cpp @@ -65,17 +65,12 @@ struct single_recipe: public arb::recipe { dict.set("soma", tagged(1)); dict.set("dend", join(tagged(3), tagged(4), tagged(42))); - arb::decor decor; - - // Add HH mechanism to soma, passive channels to dendrites. - decor.paint("soma"_lab, arb::density("hh")); - decor.paint("dend"_lab, arb::density("pas")); - - // Add synapse to last branch. - - arb::cell_lid_type last_branch = morpho.num_branches()-1; - arb::mlocation end_last_branch = { last_branch, 1. }; - decor.place(end_last_branch, arb::synapse("exp2syn"), "synapse"); + auto decor = arb::decor{} + // Add HH mechanism to soma, passive channels to dendrites. + .paint("soma"_lab, arb::density("hh")) + .paint("dend"_lab, arb::density("pas")) + // Add synapse to last branch. + .place(arb::mlocation{ morpho.num_branches()-1, 1. }, arb::synapse("exp2syn"), "synapse"); return arb::cable_cell(morpho, dict, decor); } @@ -89,8 +84,7 @@ int main(int argc, char** argv) { options opt = parse_options(argc, argv); single_recipe R(opt.swc_file.empty()? default_morphology(): read_swc(opt.swc_file), opt.policy); - auto context = arb::make_context(); - arb::simulation sim(R, arb::partition_load_balance(R, context), context); + arb::simulation sim(R); // Attach a sampler to the probe described in the recipe, sampling every 0.1 ms. diff --git a/ext/CMakeLists.txt b/ext/CMakeLists.txt index 5c89d3d245..ade8698f2f 100644 --- a/ext/CMakeLists.txt +++ b/ext/CMakeLists.txt @@ -6,17 +6,22 @@ if(ARB_USE_BUNDLED_JSON) set(json_library_name ext-json PARENT_SCOPE) endif() +# Random123 (DE Shaw Research) counter-based random number generators (header-only) + +if(ARB_USE_BUNDLED_RANDOM123) + check_git_submodule(random123 random123) + if(NOT random123_avail) + message(FATAL_ERROR "Required Random123 submodule is not available.") + endif() + target_include_directories(ext-random123 INTERFACE $/random123/include) + message(STATUS "Using Random123 submodule: ${CMAKE_CURRENT_SOURCE_DIR}>/random123") +endif() + # tinyopt command line parsing libary (header-only). add_library(ext-tinyopt INTERFACE) target_include_directories(ext-tinyopt INTERFACE tinyopt/include) -# Random123 (DE Shaw Research) counter-based random number generators (header-only) - -add_library(ext-random123 INTERFACE) -target_include_directories(ext-random123 INTERFACE $/random123/include) -install(TARGETS ext-random123 EXPORT arbor-targets) - # Google benchmark for microbenchmarks: check_git_submodule(gbench google-benchmark) diff --git a/ext/json b/ext/json new file mode 160000 index 0000000000..db78ac1d77 --- /dev/null +++ b/ext/json @@ -0,0 +1 @@ +Subproject commit db78ac1d7716f56fc9f1b030b715f872f93964e4 diff --git a/ext/json/LICENSE.MIT b/ext/json/LICENSE.MIT deleted file mode 100644 index ffef714b96..0000000000 --- a/ext/json/LICENSE.MIT +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2013-2020 Niels Lohmann - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/ext/json/README.md b/ext/json/README.md deleted file mode 100644 index ba257d9460..0000000000 --- a/ext/json/README.md +++ /dev/null @@ -1,1630 +0,0 @@ -[![JSON for Modern C++](https://raw.githubusercontent.com/nlohmann/json/master/doc/json.gif)](https://github.com/nlohmann/json/releases) - -[![Build Status](https://travis-ci.org/nlohmann/json.svg?branch=master)](https://travis-ci.org/nlohmann/json) -[![Build Status](https://ci.appveyor.com/api/projects/status/1acb366xfyg3qybk/branch/develop?svg=true)](https://ci.appveyor.com/project/nlohmann/json) -[![Ubuntu](https://github.com/nlohmann/json/workflows/Ubuntu/badge.svg)](https://github.com/nlohmann/json/actions?query=workflow%3AUbuntu) -[![macOS](https://github.com/nlohmann/json/workflows/macOS/badge.svg)](https://github.com/nlohmann/json/actions?query=workflow%3AmacOS) -[![Windows](https://github.com/nlohmann/json/workflows/Windows/badge.svg)](https://github.com/nlohmann/json/actions?query=workflow%3AWindows) -[![Build Status](https://circleci.com/gh/nlohmann/json.svg?style=svg)](https://circleci.com/gh/nlohmann/json) -[![Coverage Status](https://coveralls.io/repos/github/nlohmann/json/badge.svg?branch=develop)](https://coveralls.io/github/nlohmann/json?branch=develop) -[![Coverity Scan Build Status](https://scan.coverity.com/projects/5550/badge.svg)](https://scan.coverity.com/projects/nlohmann-json) -[![Codacy Badge](https://api.codacy.com/project/badge/Grade/f3732b3327e34358a0e9d1fe9f661f08)](https://www.codacy.com/app/nlohmann/json?utm_source=github.com&utm_medium=referral&utm_content=nlohmann/json&utm_campaign=Badge_Grade) -[![Language grade: C/C++](https://img.shields.io/lgtm/grade/cpp/g/nlohmann/json.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/nlohmann/json/context:cpp) -[![Fuzzing Status](https://oss-fuzz-build-logs.storage.googleapis.com/badges/json.svg)](https://bugs.chromium.org/p/oss-fuzz/issues/list?sort=-opened&can=1&q=proj:json) -[![Try online](https://img.shields.io/badge/try-online-blue.svg)](https://wandbox.org/permlink/3lCHrFUZANONKv7a) -[![Documentation](https://img.shields.io/badge/docs-doxygen-blue.svg)](https://nlohmann.github.io/json/doxygen/index.html) -[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/nlohmann/json/master/LICENSE.MIT) -[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fnlohmann%2Fjson.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2Fnlohmann%2Fjson?ref=badge_shield) -[![GitHub Releases](https://img.shields.io/github/release/nlohmann/json.svg)](https://github.com/nlohmann/json/releases) -[![GitHub Downloads](https://img.shields.io/github/downloads/nlohmann/json/total)](https://github.com/nlohmann/json/releases) -[![GitHub Issues](https://img.shields.io/github/issues/nlohmann/json.svg)](https://github.com/nlohmann/json/issues) -[![Average time to resolve an issue](https://isitmaintained.com/badge/resolution/nlohmann/json.svg)](https://isitmaintained.com/project/nlohmann/json "Average time to resolve an issue") -[![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/289/badge)](https://bestpractices.coreinfrastructure.org/projects/289) -[![GitHub Sponsors](https://img.shields.io/badge/GitHub-Sponsors-ff69b4)](https://github.com/sponsors/nlohmann) - -- [Design goals](#design-goals) -- [Sponsors](#sponsors) -- [Integration](#integration) - - [CMake](#cmake) - - [Package Managers](#package-managers) - - [Pkg-config](#pkg-config) -- [Examples](#examples) - - [JSON as first-class data type](#json-as-first-class-data-type) - - [Serialization / Deserialization](#serialization--deserialization) - - [STL-like access](#stl-like-access) - - [Conversion from STL containers](#conversion-from-stl-containers) - - [JSON Pointer and JSON Patch](#json-pointer-and-json-patch) - - [JSON Merge Patch](#json-merge-patch) - - [Implicit conversions](#implicit-conversions) - - [Conversions to/from arbitrary types](#arbitrary-types-conversions) - - [Specializing enum conversion](#specializing-enum-conversion) - - [Binary formats (BSON, CBOR, MessagePack, and UBJSON)](#binary-formats-bson-cbor-messagepack-and-ubjson) -- [Supported compilers](#supported-compilers) -- [License](#license) -- [Contact](#contact) -- [Thanks](#thanks) -- [Used third-party tools](#used-third-party-tools) -- [Projects using JSON for Modern C++](#projects-using-json-for-modern-c) -- [Notes](#notes) -- [Execute unit tests](#execute-unit-tests) - -## Design goals - -There are myriads of [JSON](https://json.org) libraries out there, and each may even have its reason to exist. Our class had these design goals: - -- **Intuitive syntax**. In languages such as Python, JSON feels like a first class data type. We used all the operator magic of modern C++ to achieve the same feeling in your code. Check out the [examples below](#examples) and you'll know what I mean. - -- **Trivial integration**. Our whole code consists of a single header file [`json.hpp`](https://github.com/nlohmann/json/blob/develop/single_include/nlohmann/json.hpp). That's it. No library, no subproject, no dependencies, no complex build system. The class is written in vanilla C++11. All in all, everything should require no adjustment of your compiler flags or project settings. - -- **Serious testing**. Our class is heavily [unit-tested](https://github.com/nlohmann/json/tree/develop/test/src) and covers [100%](https://coveralls.io/r/nlohmann/json) of the code, including all exceptional behavior. Furthermore, we checked with [Valgrind](https://valgrind.org) and the [Clang Sanitizers](https://clang.llvm.org/docs/index.html) that there are no memory leaks. [Google OSS-Fuzz](https://github.com/google/oss-fuzz/tree/master/projects/json) additionally runs fuzz tests against all parsers 24/7, effectively executing billions of tests so far. To maintain high quality, the project is following the [Core Infrastructure Initiative (CII) best practices](https://bestpractices.coreinfrastructure.org/projects/289). - -Other aspects were not so important to us: - -- **Memory efficiency**. Each JSON object has an overhead of one pointer (the maximal size of a union) and one enumeration element (1 byte). The default generalization uses the following C++ data types: `std::string` for strings, `int64_t`, `uint64_t` or `double` for numbers, `std::map` for objects, `std::vector` for arrays, and `bool` for Booleans. However, you can template the generalized class `basic_json` to your needs. - -- **Speed**. There are certainly [faster JSON libraries](https://github.com/miloyip/nativejson-benchmark#parsing-time) out there. However, if your goal is to speed up your development by adding JSON support with a single header, then this library is the way to go. If you know how to use a `std::vector` or `std::map`, you are already set. - -See the [contribution guidelines](https://github.com/nlohmann/json/blob/master/.github/CONTRIBUTING.md#please-dont) for more information. - - -## Sponsors - -You can sponsor this library at [GitHub Sponsors](https://github.com/sponsors/nlohmann). - -### :label: Named Sponsors - -- [Michael Hartmann](https://github.com/reFX-Mike) -- [Stefan Hagen](https://github.com/sthagen) -- [Steve Sperandeo](https://github.com/homer6) - -Thanks everyone! - - -## Integration - -[`json.hpp`](https://github.com/nlohmann/json/blob/develop/single_include/nlohmann/json.hpp) is the single required file in `single_include/nlohmann` or [released here](https://github.com/nlohmann/json/releases). You need to add - -```cpp -#include - -// for convenience -using json = nlohmann::json; -``` - -to the files you want to process JSON and set the necessary switches to enable C++11 (e.g., `-std=c++11` for GCC and Clang). - -You can further use file [`include/nlohmann/json_fwd.hpp`](https://github.com/nlohmann/json/blob/develop/include/nlohmann/json_fwd.hpp) for forward-declarations. The installation of json_fwd.hpp (as part of cmake's install step), can be achieved by setting `-DJSON_MultipleHeaders=ON`. - -### CMake - -You can also use the `nlohmann_json::nlohmann_json` interface target in CMake. This target populates the appropriate usage requirements for `INTERFACE_INCLUDE_DIRECTORIES` to point to the appropriate include directories and `INTERFACE_COMPILE_FEATURES` for the necessary C++11 flags. - -#### External - -To use this library from a CMake project, you can locate it directly with `find_package()` and use the namespaced imported target from the generated package configuration: - -```cmake -# CMakeLists.txt -find_package(nlohmann_json 3.2.0 REQUIRED) -... -add_library(foo ...) -... -target_link_libraries(foo PRIVATE nlohmann_json::nlohmann_json) -``` - -The package configuration file, `nlohmann_jsonConfig.cmake`, can be used either from an install tree or directly out of the build tree. - -#### Embedded - -To embed the library directly into an existing CMake project, place the entire source tree in a subdirectory and call `add_subdirectory()` in your `CMakeLists.txt` file: - -```cmake -# Typically you don't care so much for a third party library's tests to be -# run from your own project's code. -set(JSON_BuildTests OFF CACHE INTERNAL "") - -# If you only include this third party in PRIVATE source files, you do not -# need to install it when your main project gets installed. -# set(JSON_Install OFF CACHE INTERNAL "") - -# Don't use include(nlohmann_json/CMakeLists.txt) since that carries with it -# unintended consequences that will break the build. It's generally -# discouraged (although not necessarily well documented as such) to use -# include(...) for pulling in other CMake projects anyways. -add_subdirectory(nlohmann_json) -... -add_library(foo ...) -... -target_link_libraries(foo PRIVATE nlohmann_json::nlohmann_json) -``` - -##### Embedded (FetchContent) - -Since CMake v3.11, -[FetchContent](https://cmake.org/cmake/help/v3.11/module/FetchContent.html) can -be used to automatically download the repository as a dependency at configure type. - -Example: -```cmake -include(FetchContent) - -FetchContent_Declare(json - GIT_REPOSITORY https://github.com/nlohmann/json.git - GIT_TAG v3.7.3) - -FetchContent_GetProperties(json) -if(NOT json_POPULATED) - FetchContent_Populate(json) - add_subdirectory(${json_SOURCE_DIR} ${json_BINARY_DIR} EXCLUDE_FROM_ALL) -endif() - -target_link_libraries(foo PRIVATE nlohmann_json::nlohmann_json) -``` - -**Note**: The repository https://github.com/nlohmann/json download size is huge. -It contains all the dataset used for the benchmarks. You might want to depend on -a smaller repository. For instance, you might want to replace the URL above by -https://github.com/ArthurSonzogni/nlohmann_json_cmake_fetchcontent - -#### Supporting Both - -To allow your project to support either an externally supplied or an embedded JSON library, you can use a pattern akin to the following: - -``` cmake -# Top level CMakeLists.txt -project(FOO) -... -option(FOO_USE_EXTERNAL_JSON "Use an external JSON library" OFF) -... -add_subdirectory(thirdparty) -... -add_library(foo ...) -... -# Note that the namespaced target will always be available regardless of the -# import method -target_link_libraries(foo PRIVATE nlohmann_json::nlohmann_json) -``` -```cmake -# thirdparty/CMakeLists.txt -... -if(FOO_USE_EXTERNAL_JSON) - find_package(nlohmann_json 3.2.0 REQUIRED) -else() - set(JSON_BuildTests OFF CACHE INTERNAL "") - add_subdirectory(nlohmann_json) -endif() -... -``` - -`thirdparty/nlohmann_json` is then a complete copy of this source tree. - -### Package Managers - -:beer: If you are using OS X and [Homebrew](https://brew.sh), just type `brew tap nlohmann/json` and `brew install nlohmann-json` and you're set. If you want the bleeding edge rather than the latest release, use `brew install nlohmann-json --HEAD`. - -If you are using the [Meson Build System](https://mesonbuild.com), add this source tree as a [meson subproject](https://mesonbuild.com/Subprojects.html#using-a-subproject). You may also use the `include.zip` published in this project's [Releases](https://github.com/nlohmann/json/releases) to reduce the size of the vendored source tree. Alternatively, you can get a wrap file by downloading it from [Meson WrapDB](https://wrapdb.mesonbuild.com/nlohmann_json), or simply use `meson wrap install nlohmann_json`. Please see the meson project for any issues regarding the packaging. - -The provided meson.build can also be used as an alternative to cmake for installing `nlohmann_json` system-wide in which case a pkg-config file is installed. To use it, simply have your build system require the `nlohmann_json` pkg-config dependency. In Meson, it is preferred to use the [`dependency()`](https://mesonbuild.com/Reference-manual.html#dependency) object with a subproject fallback, rather than using the subproject directly. - -If you are using [Conan](https://www.conan.io/) to manage your dependencies, merely add `nlohmann_json/x.y.z` to your `conanfile`'s requires, where `x.y.z` is the release version you want to use. Please file issues [here](https://github.com/conan-io/conan-center-index/issues) if you experience problems with the packages. - -If you are using [Spack](https://www.spack.io/) to manage your dependencies, you can use the [`nlohmann-json` package](https://spack.readthedocs.io/en/latest/package_list.html#nlohmann-json). Please see the [spack project](https://github.com/spack/spack) for any issues regarding the packaging. - -If you are using [hunter](https://github.com/cpp-pm/hunter) on your project for external dependencies, then you can use the [nlohmann_json package](https://hunter.readthedocs.io/en/latest/packages/pkg/nlohmann_json.html). Please see the hunter project for any issues regarding the packaging. - -If you are using [Buckaroo](https://buckaroo.pm), you can install this library's module with `buckaroo add github.com/buckaroo-pm/nlohmann-json`. Please file issues [here](https://github.com/buckaroo-pm/nlohmann-json). There is a demo repo [here](https://github.com/njlr/buckaroo-nholmann-json-example). - -If you are using [vcpkg](https://github.com/Microsoft/vcpkg/) on your project for external dependencies, then you can use the [nlohmann-json package](https://github.com/Microsoft/vcpkg/tree/master/ports/nlohmann-json). Please see the vcpkg project for any issues regarding the packaging. - -If you are using [cget](https://cget.readthedocs.io/en/latest/), you can install the latest development version with `cget install nlohmann/json`. A specific version can be installed with `cget install nlohmann/json@v3.1.0`. Also, the multiple header version can be installed by adding the `-DJSON_MultipleHeaders=ON` flag (i.e., `cget install nlohmann/json -DJSON_MultipleHeaders=ON`). - -If you are using [CocoaPods](https://cocoapods.org), you can use the library by adding pod `"nlohmann_json", '~>3.1.2'` to your podfile (see [an example](https://bitbucket.org/benman/nlohmann_json-cocoapod/src/master/)). Please file issues [here](https://bitbucket.org/benman/nlohmann_json-cocoapod/issues?status=new&status=open). - -If you are using [NuGet](https://www.nuget.org), you can use the package [nlohmann.json](https://www.nuget.org/packages/nlohmann.json/). Please check [this extensive description](https://github.com/nlohmann/json/issues/1132#issuecomment-452250255) on how to use the package. Please files issues [here](https://github.com/hnkb/nlohmann-json-nuget/issues). - -If you are using [conda](https://conda.io/), you can use the package [nlohmann_json](https://github.com/conda-forge/nlohmann_json-feedstock) from [conda-forge](https://conda-forge.org) executing `conda install -c conda-forge nlohmann_json`. Please file issues [here](https://github.com/conda-forge/nlohmann_json-feedstock/issues). - -If you are using [MSYS2](https://www.msys2.org/), your can use the [mingw-w64-nlohmann-json](https://packages.msys2.org/base/mingw-w64-nlohmann-json) package, just type `pacman -S mingw-w64-i686-nlohmann-json` or `pacman -S mingw-w64-x86_64-nlohmann-json` for installation. Please file issues [here](https://github.com/msys2/MINGW-packages/issues/new?title=%5Bnlohmann-json%5D) if you experience problems with the packages. - -If you are using [`build2`](https://build2.org), you can use the [`nlohmann-json`](https://cppget.org/nlohmann-json) package from the public repository https://cppget.org or directly from the [package's sources repository](https://github.com/build2-packaging/nlohmann-json). In your project's `manifest` file, just add `depends: nlohmann-json` (probably with some [version constraints](https://build2.org/build2-toolchain/doc/build2-toolchain-intro.xhtml#guide-add-remove-deps)). If you are not familiar with using dependencies in `build2`, [please read this introduction](https://build2.org/build2-toolchain/doc/build2-toolchain-intro.xhtml). -Please file issues [here](https://github.com/build2-packaging/nlohmann-json) if you experience problems with the packages. - -If you are using [`wsjcpp`](https://wsjcpp.org), you can use the command `wsjcpp install "https://github.com/nlohmann/json:develop"` to get the latest version. Note you can change the branch ":develop" to an existing tag or another branch. - -### Pkg-config - -If you are using bare Makefiles, you can use `pkg-config` to generate the include flags that point to where the library is installed: - -```sh -pkg-config nlohmann_json --cflags -``` - -Users of the Meson build system will also be able to use a system wide library, which will be found by `pkg-config`: - -```meson -json = dependency('nlohmann_json', required: true) -``` - -## Examples - -Beside the examples below, you may want to check the [documentation](https://nlohmann.github.io/json/) where each function contains a separate code example (e.g., check out [`emplace()`](https://nlohmann.github.io/json/classnlohmann_1_1basic__json_a5338e282d1d02bed389d852dd670d98d.html#a5338e282d1d02bed389d852dd670d98d)). All [example files](https://github.com/nlohmann/json/tree/develop/doc/examples) can be compiled and executed on their own (e.g., file [emplace.cpp](https://github.com/nlohmann/json/blob/develop/doc/examples/emplace.cpp)). - -### JSON as first-class data type - -Here are some examples to give you an idea how to use the class. - -Assume you want to create the JSON object - -```json -{ - "pi": 3.141, - "happy": true, - "name": "Niels", - "nothing": null, - "answer": { - "everything": 42 - }, - "list": [1, 0, 2], - "object": { - "currency": "USD", - "value": 42.99 - } -} -``` - -With this library, you could write: - -```cpp -// create an empty structure (null) -json j; - -// add a number that is stored as double (note the implicit conversion of j to an object) -j["pi"] = 3.141; - -// add a Boolean that is stored as bool -j["happy"] = true; - -// add a string that is stored as std::string -j["name"] = "Niels"; - -// add another null object by passing nullptr -j["nothing"] = nullptr; - -// add an object inside the object -j["answer"]["everything"] = 42; - -// add an array that is stored as std::vector (using an initializer list) -j["list"] = { 1, 0, 2 }; - -// add another object (using an initializer list of pairs) -j["object"] = { {"currency", "USD"}, {"value", 42.99} }; - -// instead, you could also write (which looks very similar to the JSON above) -json j2 = { - {"pi", 3.141}, - {"happy", true}, - {"name", "Niels"}, - {"nothing", nullptr}, - {"answer", { - {"everything", 42} - }}, - {"list", {1, 0, 2}}, - {"object", { - {"currency", "USD"}, - {"value", 42.99} - }} -}; -``` - -Note that in all these cases, you never need to "tell" the compiler which JSON value type you want to use. If you want to be explicit or express some edge cases, the functions [`json::array()`](https://nlohmann.github.io/json/classnlohmann_1_1basic__json_a9ad7ec0bc1082ed09d10900fbb20a21f.html#a9ad7ec0bc1082ed09d10900fbb20a21f) and [`json::object()`](https://nlohmann.github.io/json/classnlohmann_1_1basic__json_aaf509a7c029100d292187068f61c99b8.html#aaf509a7c029100d292187068f61c99b8) will help: - -```cpp -// a way to express the empty array [] -json empty_array_explicit = json::array(); - -// ways to express the empty object {} -json empty_object_implicit = json({}); -json empty_object_explicit = json::object(); - -// a way to express an _array_ of key/value pairs [["currency", "USD"], ["value", 42.99]] -json array_not_object = json::array({ {"currency", "USD"}, {"value", 42.99} }); -``` - -### Serialization / Deserialization - -#### To/from strings - -You can create a JSON value (deserialization) by appending `_json` to a string literal: - -```cpp -// create object from string literal -json j = "{ \"happy\": true, \"pi\": 3.141 }"_json; - -// or even nicer with a raw string literal -auto j2 = R"( - { - "happy": true, - "pi": 3.141 - } -)"_json; -``` - -Note that without appending the `_json` suffix, the passed string literal is not parsed, but just used as JSON string value. That is, `json j = "{ \"happy\": true, \"pi\": 3.141 }"` would just store the string `"{ "happy": true, "pi": 3.141 }"` rather than parsing the actual object. - -The above example can also be expressed explicitly using [`json::parse()`](https://nlohmann.github.io/json/classnlohmann_1_1basic__json_a265a473e939184aa42655c9ccdf34e58.html#a265a473e939184aa42655c9ccdf34e58): - -```cpp -// parse explicitly -auto j3 = json::parse("{ \"happy\": true, \"pi\": 3.141 }"); -``` - -You can also get a string representation of a JSON value (serialize): - -```cpp -// explicit conversion to string -std::string s = j.dump(); // {"happy":true,"pi":3.141} - -// serialization with pretty printing -// pass in the amount of spaces to indent -std::cout << j.dump(4) << std::endl; -// { -// "happy": true, -// "pi": 3.141 -// } -``` - -Note the difference between serialization and assignment: - -```cpp -// store a string in a JSON value -json j_string = "this is a string"; - -// retrieve the string value -auto cpp_string = j_string.get(); -// retrieve the string value (alternative when an variable already exists) -std::string cpp_string2; -j_string.get_to(cpp_string2); - -// retrieve the serialized value (explicit JSON serialization) -std::string serialized_string = j_string.dump(); - -// output of original string -std::cout << cpp_string << " == " << cpp_string2 << " == " << j_string.get() << '\n'; -// output of serialized value -std::cout << j_string << " == " << serialized_string << std::endl; -``` - -[`.dump()`](https://nlohmann.github.io/json/classnlohmann_1_1basic__json_a50ec80b02d0f3f51130d4abb5d1cfdc5.html#a50ec80b02d0f3f51130d4abb5d1cfdc5) always returns the serialized value, and [`.get()`](https://nlohmann.github.io/json/classnlohmann_1_1basic__json_aa6602bb24022183ab989439e19345d08.html#aa6602bb24022183ab989439e19345d08) returns the originally stored string value. - -Note the library only supports UTF-8. When you store strings with different encodings in the library, calling [`dump()`](https://nlohmann.github.io/json/classnlohmann_1_1basic__json_a50ec80b02d0f3f51130d4abb5d1cfdc5.html#a50ec80b02d0f3f51130d4abb5d1cfdc5) may throw an exception unless `json::error_handler_t::replace` or `json::error_handler_t::ignore` are used as error handlers. - -#### To/from streams (e.g. files, string streams) - -You can also use streams to serialize and deserialize: - -```cpp -// deserialize from standard input -json j; -std::cin >> j; - -// serialize to standard output -std::cout << j; - -// the setw manipulator was overloaded to set the indentation for pretty printing -std::cout << std::setw(4) << j << std::endl; -``` - -These operators work for any subclasses of `std::istream` or `std::ostream`. Here is the same example with files: - -```cpp -// read a JSON file -std::ifstream i("file.json"); -json j; -i >> j; - -// write prettified JSON to another file -std::ofstream o("pretty.json"); -o << std::setw(4) << j << std::endl; -``` - -Please note that setting the exception bit for `failbit` is inappropriate for this use case. It will result in program termination due to the `noexcept` specifier in use. - -#### Read from iterator range - -You can also parse JSON from an iterator range; that is, from any container accessible by iterators whose `value_type` is an integral type of 1, 2 or 4 bytes, which will be interpreted as UTF-8, UTF-16 and UTF-32 respectively. For instance, a `std::vector`, or a `std::list`: - -```cpp -std::vector v = {'t', 'r', 'u', 'e'}; -json j = json::parse(v.begin(), v.end()); -``` - -You may leave the iterators for the range [begin, end): - -```cpp -std::vector v = {'t', 'r', 'u', 'e'}; -json j = json::parse(v); -``` - -#### Custom data source - -Since the parse function accepts arbitrary iterator ranges, you can provide your own data sources by implementing the `LegacyInputIterator` concept. - -```cpp -struct MyContainer { - void advance(); - const char& get_current(); -}; - -struct MyIterator { - using difference_type = std::ptrdiff_t; - using value_type = char; - using pointer = const char*; - using reference = const char&; - using iterator_category = std::input_iterator_tag; - - MyIterator& operator++() { - MyContainer.advance(); - return *this; - } - - bool operator!=(const MyIterator& rhs) const { - return rhs.target != target; - } - - reference operator*() const { - return target.get_current(); - } - - MyContainer* target = nullptr; -}; - -MyIterator begin(MyContainer& tgt) { - return MyIterator{&tgt}; -} - -MyIterator end(const MyContainer&) { - return {}; -} - -void foo() { - MyContainer c; - json j = json::parse(c); -} -``` - -#### SAX interface - -The library uses a SAX-like interface with the following functions: - -```cpp -// called when null is parsed -bool null(); - -// called when a boolean is parsed; value is passed -bool boolean(bool val); - -// called when a signed or unsigned integer number is parsed; value is passed -bool number_integer(number_integer_t val); -bool number_unsigned(number_unsigned_t val); - -// called when a floating-point number is parsed; value and original string is passed -bool number_float(number_float_t val, const string_t& s); - -// called when a string is parsed; value is passed and can be safely moved away -bool string(string_t& val); -// called when a binary value is parsed; value is passed and can be safely moved away -bool binary(binary_t& val); - -// called when an object or array begins or ends, resp. The number of elements is passed (or -1 if not known) -bool start_object(std::size_t elements); -bool end_object(); -bool start_array(std::size_t elements); -bool end_array(); -// called when an object key is parsed; value is passed and can be safely moved away -bool key(string_t& val); - -// called when a parse error occurs; byte position, the last token, and an exception is passed -bool parse_error(std::size_t position, const std::string& last_token, const detail::exception& ex); -``` - -The return value of each function determines whether parsing should proceed. - -To implement your own SAX handler, proceed as follows: - -1. Implement the SAX interface in a class. You can use class `nlohmann::json_sax` as base class, but you can also use any class where the functions described above are implemented and public. -2. Create an object of your SAX interface class, e.g. `my_sax`. -3. Call `bool json::sax_parse(input, &my_sax)`; where the first parameter can be any input like a string or an input stream and the second parameter is a pointer to your SAX interface. - -Note the `sax_parse` function only returns a `bool` indicating the result of the last executed SAX event. It does not return a `json` value - it is up to you to decide what to do with the SAX events. Furthermore, no exceptions are thrown in case of a parse error - it is up to you what to do with the exception object passed to your `parse_error` implementation. Internally, the SAX interface is used for the DOM parser (class `json_sax_dom_parser`) as well as the acceptor (`json_sax_acceptor`), see file [`json_sax.hpp`](https://github.com/nlohmann/json/blob/develop/include/nlohmann/detail/input/json_sax.hpp). - -### STL-like access - -We designed the JSON class to behave just like an STL container. In fact, it satisfies the [**ReversibleContainer**](https://en.cppreference.com/w/cpp/named_req/ReversibleContainer) requirement. - -```cpp -// create an array using push_back -json j; -j.push_back("foo"); -j.push_back(1); -j.push_back(true); - -// also use emplace_back -j.emplace_back(1.78); - -// iterate the array -for (json::iterator it = j.begin(); it != j.end(); ++it) { - std::cout << *it << '\n'; -} - -// range-based for -for (auto& element : j) { - std::cout << element << '\n'; -} - -// getter/setter -const auto tmp = j[0].get(); -j[1] = 42; -bool foo = j.at(2); - -// comparison -j == "[\"foo\", 42, true]"_json; // true - -// other stuff -j.size(); // 3 entries -j.empty(); // false -j.type(); // json::value_t::array -j.clear(); // the array is empty again - -// convenience type checkers -j.is_null(); -j.is_boolean(); -j.is_number(); -j.is_object(); -j.is_array(); -j.is_string(); - -// create an object -json o; -o["foo"] = 23; -o["bar"] = false; -o["baz"] = 3.141; - -// also use emplace -o.emplace("weather", "sunny"); - -// special iterator member functions for objects -for (json::iterator it = o.begin(); it != o.end(); ++it) { - std::cout << it.key() << " : " << it.value() << "\n"; -} - -// the same code as range for -for (auto& el : o.items()) { - std::cout << el.key() << " : " << el.value() << "\n"; -} - -// even easier with structured bindings (C++17) -for (auto& [key, value] : o.items()) { - std::cout << key << " : " << value << "\n"; -} - -// find an entry -if (o.contains("foo")) { - // there is an entry with key "foo" -} - -// or via find and an iterator -if (o.find("foo") != o.end()) { - // there is an entry with key "foo" -} - -// or simpler using count() -int foo_present = o.count("foo"); // 1 -int fob_present = o.count("fob"); // 0 - -// delete an entry -o.erase("foo"); -``` - - -### Conversion from STL containers - -Any sequence container (`std::array`, `std::vector`, `std::deque`, `std::forward_list`, `std::list`) whose values can be used to construct JSON values (e.g., integers, floating point numbers, Booleans, string types, or again STL containers described in this section) can be used to create a JSON array. The same holds for similar associative containers (`std::set`, `std::multiset`, `std::unordered_set`, `std::unordered_multiset`), but in these cases the order of the elements of the array depends on how the elements are ordered in the respective STL container. - -```cpp -std::vector c_vector {1, 2, 3, 4}; -json j_vec(c_vector); -// [1, 2, 3, 4] - -std::deque c_deque {1.2, 2.3, 3.4, 5.6}; -json j_deque(c_deque); -// [1.2, 2.3, 3.4, 5.6] - -std::list c_list {true, true, false, true}; -json j_list(c_list); -// [true, true, false, true] - -std::forward_list c_flist {12345678909876, 23456789098765, 34567890987654, 45678909876543}; -json j_flist(c_flist); -// [12345678909876, 23456789098765, 34567890987654, 45678909876543] - -std::array c_array {{1, 2, 3, 4}}; -json j_array(c_array); -// [1, 2, 3, 4] - -std::set c_set {"one", "two", "three", "four", "one"}; -json j_set(c_set); // only one entry for "one" is used -// ["four", "one", "three", "two"] - -std::unordered_set c_uset {"one", "two", "three", "four", "one"}; -json j_uset(c_uset); // only one entry for "one" is used -// maybe ["two", "three", "four", "one"] - -std::multiset c_mset {"one", "two", "one", "four"}; -json j_mset(c_mset); // both entries for "one" are used -// maybe ["one", "two", "one", "four"] - -std::unordered_multiset c_umset {"one", "two", "one", "four"}; -json j_umset(c_umset); // both entries for "one" are used -// maybe ["one", "two", "one", "four"] -``` - -Likewise, any associative key-value containers (`std::map`, `std::multimap`, `std::unordered_map`, `std::unordered_multimap`) whose keys can construct an `std::string` and whose values can be used to construct JSON values (see examples above) can be used to create a JSON object. Note that in case of multimaps only one key is used in the JSON object and the value depends on the internal order of the STL container. - -```cpp -std::map c_map { {"one", 1}, {"two", 2}, {"three", 3} }; -json j_map(c_map); -// {"one": 1, "three": 3, "two": 2 } - -std::unordered_map c_umap { {"one", 1.2}, {"two", 2.3}, {"three", 3.4} }; -json j_umap(c_umap); -// {"one": 1.2, "two": 2.3, "three": 3.4} - -std::multimap c_mmap { {"one", true}, {"two", true}, {"three", false}, {"three", true} }; -json j_mmap(c_mmap); // only one entry for key "three" is used -// maybe {"one": true, "two": true, "three": true} - -std::unordered_multimap c_ummap { {"one", true}, {"two", true}, {"three", false}, {"three", true} }; -json j_ummap(c_ummap); // only one entry for key "three" is used -// maybe {"one": true, "two": true, "three": true} -``` - -### JSON Pointer and JSON Patch - -The library supports **JSON Pointer** ([RFC 6901](https://tools.ietf.org/html/rfc6901)) as alternative means to address structured values. On top of this, **JSON Patch** ([RFC 6902](https://tools.ietf.org/html/rfc6902)) allows to describe differences between two JSON values - effectively allowing patch and diff operations known from Unix. - -```cpp -// a JSON value -json j_original = R"({ - "baz": ["one", "two", "three"], - "foo": "bar" -})"_json; - -// access members with a JSON pointer (RFC 6901) -j_original["/baz/1"_json_pointer]; -// "two" - -// a JSON patch (RFC 6902) -json j_patch = R"([ - { "op": "replace", "path": "/baz", "value": "boo" }, - { "op": "add", "path": "/hello", "value": ["world"] }, - { "op": "remove", "path": "/foo"} -])"_json; - -// apply the patch -json j_result = j_original.patch(j_patch); -// { -// "baz": "boo", -// "hello": ["world"] -// } - -// calculate a JSON patch from two JSON values -json::diff(j_result, j_original); -// [ -// { "op":" replace", "path": "/baz", "value": ["one", "two", "three"] }, -// { "op": "remove","path": "/hello" }, -// { "op": "add", "path": "/foo", "value": "bar" } -// ] -``` - -### JSON Merge Patch - -The library supports **JSON Merge Patch** ([RFC 7386](https://tools.ietf.org/html/rfc7386)) as a patch format. Instead of using JSON Pointer (see above) to specify values to be manipulated, it describes the changes using a syntax that closely mimics the document being modified. - -```cpp -// a JSON value -json j_document = R"({ - "a": "b", - "c": { - "d": "e", - "f": "g" - } -})"_json; - -// a patch -json j_patch = R"({ - "a":"z", - "c": { - "f": null - } -})"_json; - -// apply the patch -j_document.merge_patch(j_patch); -// { -// "a": "z", -// "c": { -// "d": "e" -// } -// } -``` - -### Implicit conversions - -Supported types can be implicitly converted to JSON values. - -It is recommended to **NOT USE** implicit conversions **FROM** a JSON value. -You can find more details about this recommendation [here](https://www.github.com/nlohmann/json/issues/958). -You can switch off implicit conversions by defining `JSON_USE_IMPLICIT_CONVERSIONS` to `0` before including the `json.hpp` header. When using CMake, you can also achieve this by setting the option `JSON_ImplicitConversions` to `OFF`. - -```cpp -// strings -std::string s1 = "Hello, world!"; -json js = s1; -auto s2 = js.get(); -// NOT RECOMMENDED -std::string s3 = js; -std::string s4; -s4 = js; - -// Booleans -bool b1 = true; -json jb = b1; -auto b2 = jb.get(); -// NOT RECOMMENDED -bool b3 = jb; -bool b4; -b4 = jb; - -// numbers -int i = 42; -json jn = i; -auto f = jn.get(); -// NOT RECOMMENDED -double f2 = jb; -double f3; -f3 = jb; - -// etc. -``` - -Note that `char` types are not automatically converted to JSON strings, but to integer numbers. A conversion to a string must be specified explicitly: - -```cpp -char ch = 'A'; // ASCII value 65 -json j_default = ch; // stores integer number 65 -json j_string = std::string(1, ch); // stores string "A" -``` - -### Arbitrary types conversions - -Every type can be serialized in JSON, not just STL containers and scalar types. Usually, you would do something along those lines: - -```cpp -namespace ns { - // a simple struct to model a person - struct person { - std::string name; - std::string address; - int age; - }; -} - -ns::person p = {"Ned Flanders", "744 Evergreen Terrace", 60}; - -// convert to JSON: copy each value into the JSON object -json j; -j["name"] = p.name; -j["address"] = p.address; -j["age"] = p.age; - -// ... - -// convert from JSON: copy each value from the JSON object -ns::person p { - j["name"].get(), - j["address"].get(), - j["age"].get() -}; -``` - -It works, but that's quite a lot of boilerplate... Fortunately, there's a better way: - -```cpp -// create a person -ns::person p {"Ned Flanders", "744 Evergreen Terrace", 60}; - -// conversion: person -> json -json j = p; - -std::cout << j << std::endl; -// {"address":"744 Evergreen Terrace","age":60,"name":"Ned Flanders"} - -// conversion: json -> person -auto p2 = j.get(); - -// that's it -assert(p == p2); -``` - -#### Basic usage - -To make this work with one of your types, you only need to provide two functions: - -```cpp -using nlohmann::json; - -namespace ns { - void to_json(json& j, const person& p) { - j = json{{"name", p.name}, {"address", p.address}, {"age", p.age}}; - } - - void from_json(const json& j, person& p) { - j.at("name").get_to(p.name); - j.at("address").get_to(p.address); - j.at("age").get_to(p.age); - } -} // namespace ns -``` - -That's all! When calling the `json` constructor with your type, your custom `to_json` method will be automatically called. -Likewise, when calling `get()` or `get_to(your_type&)`, the `from_json` method will be called. - -Some important things: - -* Those methods **MUST** be in your type's namespace (which can be the global namespace), or the library will not be able to locate them (in this example, they are in namespace `ns`, where `person` is defined). -* Those methods **MUST** be available (e.g., proper headers must be included) everywhere you use these conversions. Look at [issue 1108](https://github.com/nlohmann/json/issues/1108) for errors that may occur otherwise. -* When using `get()`, `your_type` **MUST** be [DefaultConstructible](https://en.cppreference.com/w/cpp/named_req/DefaultConstructible). (There is a way to bypass this requirement described later.) -* In function `from_json`, use function [`at()`](https://nlohmann.github.io/json/classnlohmann_1_1basic__json_a93403e803947b86f4da2d1fb3345cf2c.html#a93403e803947b86f4da2d1fb3345cf2c) to access the object values rather than `operator[]`. In case a key does not exist, `at` throws an exception that you can handle, whereas `operator[]` exhibits undefined behavior. -* You do not need to add serializers or deserializers for STL types like `std::vector`: the library already implements these. - -#### Simplify your life with macros - -If you just want to serialize/deserialize some structs, the `to_json`/`from_json` functions can be a lot of boilerplate. - -There are two macros to make your life easier as long as you (1) want to use a JSON object as serialization and (2) want to use the member variable names as object keys in that object: - -- `NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE(name, member1, member2, ...)` is to be defined inside of the namespace of the class/struct to create code for. -- `NLOHMANN_DEFINE_TYPE_INTRUSIVE(name, member1, member2, ...)` is to be defined inside of the class/struct to create code for. This macro can also access private members. - -In both macros, the first parameter is the name of the class/struct, and all remaining parameters name the members. - -##### Examples - -The `to_json`/`from_json` functions for the `person` struct above can be created with: - -```cpp -namespace ns { - NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE(person, name, address, age) -} -``` - -Here is an example with private members, where `NLOHMANN_DEFINE_TYPE_INTRUSIVE` is needed: - -```cpp -namespace ns { - class address { - private: - std::string street; - int housenumber; - int postcode; - - public: - NLOHMANN_DEFINE_TYPE_INTRUSIVE(address, street, housenumber, postcode) - }; -} -``` - -#### How do I convert third-party types? - -This requires a bit more advanced technique. But first, let's see how this conversion mechanism works: - -The library uses **JSON Serializers** to convert types to json. -The default serializer for `nlohmann::json` is `nlohmann::adl_serializer` (ADL means [Argument-Dependent Lookup](https://en.cppreference.com/w/cpp/language/adl)). - -It is implemented like this (simplified): - -```cpp -template -struct adl_serializer { - static void to_json(json& j, const T& value) { - // calls the "to_json" method in T's namespace - } - - static void from_json(const json& j, T& value) { - // same thing, but with the "from_json" method - } -}; -``` - -This serializer works fine when you have control over the type's namespace. However, what about `boost::optional` or `std::filesystem::path` (C++17)? Hijacking the `boost` namespace is pretty bad, and it's illegal to add something other than template specializations to `std`... - -To solve this, you need to add a specialization of `adl_serializer` to the `nlohmann` namespace, here's an example: - -```cpp -// partial specialization (full specialization works too) -namespace nlohmann { - template - struct adl_serializer> { - static void to_json(json& j, const boost::optional& opt) { - if (opt == boost::none) { - j = nullptr; - } else { - j = *opt; // this will call adl_serializer::to_json which will - // find the free function to_json in T's namespace! - } - } - - static void from_json(const json& j, boost::optional& opt) { - if (j.is_null()) { - opt = boost::none; - } else { - opt = j.get(); // same as above, but with - // adl_serializer::from_json - } - } - }; -} -``` - -#### How can I use `get()` for non-default constructible/non-copyable types? - -There is a way, if your type is [MoveConstructible](https://en.cppreference.com/w/cpp/named_req/MoveConstructible). You will need to specialize the `adl_serializer` as well, but with a special `from_json` overload: - -```cpp -struct move_only_type { - move_only_type() = delete; - move_only_type(int ii): i(ii) {} - move_only_type(const move_only_type&) = delete; - move_only_type(move_only_type&&) = default; - - int i; -}; - -namespace nlohmann { - template <> - struct adl_serializer { - // note: the return type is no longer 'void', and the method only takes - // one argument - static move_only_type from_json(const json& j) { - return {j.get()}; - } - - // Here's the catch! You must provide a to_json method! Otherwise you - // will not be able to convert move_only_type to json, since you fully - // specialized adl_serializer on that type - static void to_json(json& j, move_only_type t) { - j = t.i; - } - }; -} -``` - -#### Can I write my own serializer? (Advanced use) - -Yes. You might want to take a look at [`unit-udt.cpp`](https://github.com/nlohmann/json/blob/develop/test/src/unit-udt.cpp) in the test suite, to see a few examples. - -If you write your own serializer, you'll need to do a few things: - -- use a different `basic_json` alias than `nlohmann::json` (the last template parameter of `basic_json` is the `JSONSerializer`) -- use your `basic_json` alias (or a template parameter) in all your `to_json`/`from_json` methods -- use `nlohmann::to_json` and `nlohmann::from_json` when you need ADL - -Here is an example, without simplifications, that only accepts types with a size <= 32, and uses ADL. - -```cpp -// You should use void as a second template argument -// if you don't need compile-time checks on T -template::type> -struct less_than_32_serializer { - template - static void to_json(BasicJsonType& j, T value) { - // we want to use ADL, and call the correct to_json overload - using nlohmann::to_json; // this method is called by adl_serializer, - // this is where the magic happens - to_json(j, value); - } - - template - static void from_json(const BasicJsonType& j, T& value) { - // same thing here - using nlohmann::from_json; - from_json(j, value); - } -}; -``` - -Be **very** careful when reimplementing your serializer, you can stack overflow if you don't pay attention: - -```cpp -template -struct bad_serializer -{ - template - static void to_json(BasicJsonType& j, const T& value) { - // this calls BasicJsonType::json_serializer::to_json(j, value); - // if BasicJsonType::json_serializer == bad_serializer ... oops! - j = value; - } - - template - static void to_json(const BasicJsonType& j, T& value) { - // this calls BasicJsonType::json_serializer::from_json(j, value); - // if BasicJsonType::json_serializer == bad_serializer ... oops! - value = j.template get(); // oops! - } -}; -``` - -### Specializing enum conversion - -By default, enum values are serialized to JSON as integers. In some cases this could result in undesired behavior. If an enum is modified or re-ordered after data has been serialized to JSON, the later de-serialized JSON data may be undefined or a different enum value than was originally intended. - -It is possible to more precisely specify how a given enum is mapped to and from JSON as shown below: - -```cpp -// example enum type declaration -enum TaskState { - TS_STOPPED, - TS_RUNNING, - TS_COMPLETED, - TS_INVALID=-1, -}; - -// map TaskState values to JSON as strings -NLOHMANN_JSON_SERIALIZE_ENUM( TaskState, { - {TS_INVALID, nullptr}, - {TS_STOPPED, "stopped"}, - {TS_RUNNING, "running"}, - {TS_COMPLETED, "completed"}, -}) -``` - -The `NLOHMANN_JSON_SERIALIZE_ENUM()` macro declares a set of `to_json()` / `from_json()` functions for type `TaskState` while avoiding repetition and boilerplate serialization code. - -**Usage:** - -```cpp -// enum to JSON as string -json j = TS_STOPPED; -assert(j == "stopped"); - -// json string to enum -json j3 = "running"; -assert(j3.get() == TS_RUNNING); - -// undefined json value to enum (where the first map entry above is the default) -json jPi = 3.14; -assert(jPi.get() == TS_INVALID ); -``` - -Just as in [Arbitrary Type Conversions](#arbitrary-types-conversions) above, -- `NLOHMANN_JSON_SERIALIZE_ENUM()` MUST be declared in your enum type's namespace (which can be the global namespace), or the library will not be able to locate it and it will default to integer serialization. -- It MUST be available (e.g., proper headers must be included) everywhere you use the conversions. - -Other Important points: -- When using `get()`, undefined JSON values will default to the first pair specified in your map. Select this default pair carefully. -- If an enum or JSON value is specified more than once in your map, the first matching occurrence from the top of the map will be returned when converting to or from JSON. - -### Binary formats (BSON, CBOR, MessagePack, and UBJSON) - -Though JSON is a ubiquitous data format, it is not a very compact format suitable for data exchange, for instance over a network. Hence, the library supports [BSON](http://bsonspec.org) (Binary JSON), [CBOR](https://cbor.io) (Concise Binary Object Representation), [MessagePack](https://msgpack.org), and [UBJSON](http://ubjson.org) (Universal Binary JSON Specification) to efficiently encode JSON values to byte vectors and to decode such vectors. - -```cpp -// create a JSON value -json j = R"({"compact": true, "schema": 0})"_json; - -// serialize to BSON -std::vector v_bson = json::to_bson(j); - -// 0x1B, 0x00, 0x00, 0x00, 0x08, 0x63, 0x6F, 0x6D, 0x70, 0x61, 0x63, 0x74, 0x00, 0x01, 0x10, 0x73, 0x63, 0x68, 0x65, 0x6D, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -// roundtrip -json j_from_bson = json::from_bson(v_bson); - -// serialize to CBOR -std::vector v_cbor = json::to_cbor(j); - -// 0xA2, 0x67, 0x63, 0x6F, 0x6D, 0x70, 0x61, 0x63, 0x74, 0xF5, 0x66, 0x73, 0x63, 0x68, 0x65, 0x6D, 0x61, 0x00 - -// roundtrip -json j_from_cbor = json::from_cbor(v_cbor); - -// serialize to MessagePack -std::vector v_msgpack = json::to_msgpack(j); - -// 0x82, 0xA7, 0x63, 0x6F, 0x6D, 0x70, 0x61, 0x63, 0x74, 0xC3, 0xA6, 0x73, 0x63, 0x68, 0x65, 0x6D, 0x61, 0x00 - -// roundtrip -json j_from_msgpack = json::from_msgpack(v_msgpack); - -// serialize to UBJSON -std::vector v_ubjson = json::to_ubjson(j); - -// 0x7B, 0x69, 0x07, 0x63, 0x6F, 0x6D, 0x70, 0x61, 0x63, 0x74, 0x54, 0x69, 0x06, 0x73, 0x63, 0x68, 0x65, 0x6D, 0x61, 0x69, 0x00, 0x7D - -// roundtrip -json j_from_ubjson = json::from_ubjson(v_ubjson); -``` - -The library also supports binary types from BSON, CBOR (byte strings), and MessagePack (bin, ext, fixext). They are stored by default as `std::vector` to be processed outside of the library. - -```cpp -// CBOR byte string with payload 0xCAFE -std::vector v = {0x42, 0xCA, 0xFE}; - -// read value -json j = json::from_cbor(v); - -// the JSON value has type binary -j.is_binary(); // true - -// get reference to stored binary value -auto& binary = j.get_binary(); - -// the binary value has no subtype (CBOR has no binary subtypes) -binary.has_subtype(); // false - -// access std::vector member functions -binary.size(); // 2 -binary[0]; // 0xCA -binary[1]; // 0xFE - -// set subtype to 0x10 -binary.set_subtype(0x10); - -// serialize to MessagePack -auto cbor = json::to_msgpack(j); // 0xD5 (fixext2), 0x10, 0xCA, 0xFE -``` - - -## Supported compilers - -Though it's 2020 already, the support for C++11 is still a bit sparse. Currently, the following compilers are known to work: - -- GCC 4.8 - 10.1 (and possibly later) -- Clang 3.4 - 10.0 (and possibly later) -- Apple Clang 9.1 - 12.0 (and possibly later) -- Intel C++ Compiler 17.0.2 (and possibly later) -- Microsoft Visual C++ 2015 / Build Tools 14.0.25123.0 (and possibly later) -- Microsoft Visual C++ 2017 / Build Tools 15.5.180.51428 (and possibly later) -- Microsoft Visual C++ 2019 / Build Tools 16.3.1+1def00d3d (and possibly later) - -I would be happy to learn about other compilers/versions. - -Please note: - -- GCC 4.8 has a bug [57824](https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57824)): multiline raw strings cannot be the arguments to macros. Don't use multiline raw strings directly in macros with this compiler. -- Android defaults to using very old compilers and C++ libraries. To fix this, add the following to your `Application.mk`. This will switch to the LLVM C++ library, the Clang compiler, and enable C++11 and other features disabled by default. - - ``` - APP_STL := c++_shared - NDK_TOOLCHAIN_VERSION := clang3.6 - APP_CPPFLAGS += -frtti -fexceptions - ``` - - The code compiles successfully with [Android NDK](https://developer.android.com/ndk/index.html?hl=ml), Revision 9 - 11 (and possibly later) and [CrystaX's Android NDK](https://www.crystax.net/en/android/ndk) version 10. - -- For GCC running on MinGW or Android SDK, the error `'to_string' is not a member of 'std'` (or similarly, for `strtod` or `strtof`) may occur. Note this is not an issue with the code, but rather with the compiler itself. On Android, see above to build with a newer environment. For MinGW, please refer to [this site](https://tehsausage.com/mingw-to-string) and [this discussion](https://github.com/nlohmann/json/issues/136) for information on how to fix this bug. For Android NDK using `APP_STL := gnustl_static`, please refer to [this discussion](https://github.com/nlohmann/json/issues/219). - -- Unsupported versions of GCC and Clang are rejected by `#error` directives. This can be switched off by defining `JSON_SKIP_UNSUPPORTED_COMPILER_CHECK`. Note that you can expect no support in this case. - -The following compilers are currently used in continuous integration at [Travis](https://travis-ci.org/nlohmann/json), [AppVeyor](https://ci.appveyor.com/project/nlohmann/json), [GitHub Actions](https://github.com/nlohmann/json/actions), and [CircleCI](https://circleci.com/gh/nlohmann/json): - -| Compiler | Operating System | CI Provider | -|-----------------------------------------------------------------|--------------------|----------------| -| Apple Clang 9.1.0 (clang-902.0.39.1); Xcode 9.3 | macOS 10.13.3 | Travis | -| Apple Clang 9.1.0 (clang-902.0.39.2); Xcode 9.4.1 | macOS 10.13.6 | Travis | -| Apple Clang 10.0.0 (clang-1000.11.45.2); Xcode 10.0 | macOS 10.13.6 | Travis | -| Apple Clang 10.0.0 (clang-1000.11.45.5); Xcode 10.1 | macOS 10.13.6 | Travis | -| Apple Clang 10.0.1 (clang-1001.0.46.4); Xcode 10.2.1 | macOS 10.14.4 | Travis | -| Apple Clang 11.0.0 (clang-1100.0.33.12); Xcode 11.2.1 | macOS 10.14.6 | Travis | -| Apple Clang 11.0.3 (clang-1103.0.32.59); Xcode 11.4.1 | macOS 10.15.4 | GitHub Actions | -| Apple Clang 12.0.0 (clang-1200.0.22.7); Xcode 11.4.1 | macOS 10.15.5 | Travis | -| Clang 3.5.0 (3.5.0-4ubuntu2~trusty2) | Ubuntu 14.04.5 LTS | Travis | -| Clang 3.6.2 (3.6.2-svn240577-1~exp1) | Ubuntu 14.04.5 LTS | Travis | -| Clang 3.7.1 (3.7.1-svn253571-1~exp1) | Ubuntu 14.04.5 LTS | Travis | -| Clang 3.8.0 (3.8.0-2ubuntu3~trusty5) | Ubuntu 14.04.5 LTS | Travis | -| Clang 3.9.1 (3.9.1-4ubuntu3~14.04.3) | Ubuntu 14.04.5 LTS | Travis | -| Clang 4.0.1 (4.0.1-svn305264-1~exp1) | Ubuntu 14.04.5 LTS | Travis | -| Clang 5.0.2 (version 5.0.2-svn328729-1~exp1~20180509123505.100) | Ubuntu 14.04.5 LTS | Travis | -| Clang 6.0.1 (6.0.1-svn334776-1~exp1~20190309042707.121) | Ubuntu 14.04.5 LTS | Travis | -| Clang 7.1.0 (7.1.0-svn353565-1~exp1~20190419134007.64) | Ubuntu 14.04.5 LTS | Travis | -| Clang 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) | Ubuntu 18.04.4 LTS | Travis | -| Clang 9.0.0 (x86_64-pc-windows-msvc) | Windows-10.0.17763 | GitHub Actions | -| Clang 10.0.0 (x86_64-pc-windows-msvc) | Windows-10.0.17763 | GitHub Actions | -| GCC 4.8.5 (Ubuntu 4.8.5-4ubuntu8~14.04.2) | Ubuntu 14.04.5 LTS | Travis | -| GCC 4.9.4 (Ubuntu 4.9.4-2ubuntu1~14.04.1) | Ubuntu 14.04.5 LTS | Travis | -| GCC 5.5.0 (Ubuntu 5.5.0-12ubuntu1~14.04) | Ubuntu 14.04.5 LTS | Travis | -| GCC 6.3.0 (Debian 6.3.0-18+deb9u1) | Debian 9 | Circle CI | -| GCC 6.5.0 (Ubuntu 6.5.0-2ubuntu1~14.04.1) | Ubuntu 14.04.5 LTS | Travis | -| GCC 7.3.0 (x86_64-posix-seh-rev0, Built by MinGW-W64 project) | Windows-6.3.9600 | AppVeyor | -| GCC 7.5.0 (Ubuntu 7.5.0-3ubuntu1~14.04.1) | Ubuntu 14.04.5 LTS | Travis | -| GCC 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) | Ubuntu 18.04.4 LTS | GitHub Actions | -| GCC 8.4.0 (Ubuntu 8.4.0-1ubuntu1~14.04) | Ubuntu 14.04.5 LTS | Travis | -| GCC 9.3.0 (Ubuntu 9.3.0-11ubuntu0~14.04) | Ubuntu 14.04.5 LTS | Travis | -| GCC 10.1.0 (Arch Linux latest) | Arch Linux | Circle CI | -| MSVC 19.0.24241.7 (Build Engine version 14.0.25420.1) | Windows-6.3.9600 | AppVeyor | -| MSVC 19.16.27035.0 (15.9.21+g9802d43bc3 for .NET Framework) | Windows-10.0.14393 | AppVeyor | -| MSVC 19.25.28614.0 (Build Engine version 16.5.0+d4cbfca49 for .NET Framework) | Windows-10.0.17763 | AppVeyor | -| MSVC 19.25.28614.0 (Build Engine version 16.5.0+d4cbfca49 for .NET Framework) | Windows-10.0.17763 | GitHub Actions | -| MSVC 19.25.28614.0 (Build Engine version 16.5.0+d4cbfca49 for .NET Framework) with ClangCL 10.0.0 | Windows-10.0.17763 | GitHub Actions | - -## License - - - -The class is licensed under the [MIT License](http://opensource.org/licenses/MIT): - -Copyright © 2013-2019 [Niels Lohmann](http://nlohmann.me) - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -* * * - -The class contains the UTF-8 Decoder from Bjoern Hoehrmann which is licensed under the [MIT License](http://opensource.org/licenses/MIT) (see above). Copyright © 2008-2009 [Björn Hoehrmann](https://bjoern.hoehrmann.de/) - -The class contains a slightly modified version of the Grisu2 algorithm from Florian Loitsch which is licensed under the [MIT License](http://opensource.org/licenses/MIT) (see above). Copyright © 2009 [Florian Loitsch](https://florian.loitsch.com/) - -The class contains a copy of [Hedley](https://nemequ.github.io/hedley/) from Evan Nemerson which is licensed as [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/). - -## Contact - -If you have questions regarding the library, I would like to invite you to [open an issue at GitHub](https://github.com/nlohmann/json/issues/new/choose). Please describe your request, problem, or question as detailed as possible, and also mention the version of the library you are using as well as the version of your compiler and operating system. Opening an issue at GitHub allows other users and contributors to this library to collaborate. For instance, I have little experience with MSVC, and most issues in this regard have been solved by a growing community. If you have a look at the [closed issues](https://github.com/nlohmann/json/issues?q=is%3Aissue+is%3Aclosed), you will see that we react quite timely in most cases. - -Only if your request would contain confidential information, please [send me an email](mailto:mail@nlohmann.me). For encrypted messages, please use [this key](https://keybase.io/nlohmann/pgp_keys.asc). - -## Security - -[Commits by Niels Lohmann](https://github.com/nlohmann/json/commits) and [releases](https://github.com/nlohmann/json/releases) are signed with this [PGP Key](https://keybase.io/nlohmann/pgp_keys.asc?fingerprint=797167ae41c0a6d9232e48457f3cea63ae251b69). - -## Thanks - -I deeply appreciate the help of the following people. - - - -- [Teemperor](https://github.com/Teemperor) implemented CMake support and lcov integration, realized escape and Unicode handling in the string parser, and fixed the JSON serialization. -- [elliotgoodrich](https://github.com/elliotgoodrich) fixed an issue with double deletion in the iterator classes. -- [kirkshoop](https://github.com/kirkshoop) made the iterators of the class composable to other libraries. -- [wancw](https://github.com/wanwc) fixed a bug that hindered the class to compile with Clang. -- Tomas Åblad found a bug in the iterator implementation. -- [Joshua C. Randall](https://github.com/jrandall) fixed a bug in the floating-point serialization. -- [Aaron Burghardt](https://github.com/aburgh) implemented code to parse streams incrementally. Furthermore, he greatly improved the parser class by allowing the definition of a filter function to discard undesired elements while parsing. -- [Daniel Kopeček](https://github.com/dkopecek) fixed a bug in the compilation with GCC 5.0. -- [Florian Weber](https://github.com/Florianjw) fixed a bug in and improved the performance of the comparison operators. -- [Eric Cornelius](https://github.com/EricMCornelius) pointed out a bug in the handling with NaN and infinity values. He also improved the performance of the string escaping. -- [易思龙](https://github.com/likebeta) implemented a conversion from anonymous enums. -- [kepkin](https://github.com/kepkin) patiently pushed forward the support for Microsoft Visual studio. -- [gregmarr](https://github.com/gregmarr) simplified the implementation of reverse iterators and helped with numerous hints and improvements. In particular, he pushed forward the implementation of user-defined types. -- [Caio Luppi](https://github.com/caiovlp) fixed a bug in the Unicode handling. -- [dariomt](https://github.com/dariomt) fixed some typos in the examples. -- [Daniel Frey](https://github.com/d-frey) cleaned up some pointers and implemented exception-safe memory allocation. -- [Colin Hirsch](https://github.com/ColinH) took care of a small namespace issue. -- [Huu Nguyen](https://github.com/whoshuu) correct a variable name in the documentation. -- [Silverweed](https://github.com/silverweed) overloaded `parse()` to accept an rvalue reference. -- [dariomt](https://github.com/dariomt) fixed a subtlety in MSVC type support and implemented the `get_ref()` function to get a reference to stored values. -- [ZahlGraf](https://github.com/ZahlGraf) added a workaround that allows compilation using Android NDK. -- [whackashoe](https://github.com/whackashoe) replaced a function that was marked as unsafe by Visual Studio. -- [406345](https://github.com/406345) fixed two small warnings. -- [Glen Fernandes](https://github.com/glenfe) noted a potential portability problem in the `has_mapped_type` function. -- [Corbin Hughes](https://github.com/nibroc) fixed some typos in the contribution guidelines. -- [twelsby](https://github.com/twelsby) fixed the array subscript operator, an issue that failed the MSVC build, and floating-point parsing/dumping. He further added support for unsigned integer numbers and implemented better roundtrip support for parsed numbers. -- [Volker Diels-Grabsch](https://github.com/vog) fixed a link in the README file. -- [msm-](https://github.com/msm-) added support for American Fuzzy Lop. -- [Annihil](https://github.com/Annihil) fixed an example in the README file. -- [Themercee](https://github.com/Themercee) noted a wrong URL in the README file. -- [Lv Zheng](https://github.com/lv-zheng) fixed a namespace issue with `int64_t` and `uint64_t`. -- [abc100m](https://github.com/abc100m) analyzed the issues with GCC 4.8 and proposed a [partial solution](https://github.com/nlohmann/json/pull/212). -- [zewt](https://github.com/zewt) added useful notes to the README file about Android. -- [Róbert Márki](https://github.com/robertmrk) added a fix to use move iterators and improved the integration via CMake. -- [Chris Kitching](https://github.com/ChrisKitching) cleaned up the CMake files. -- [Tom Needham](https://github.com/06needhamt) fixed a subtle bug with MSVC 2015 which was also proposed by [Michael K.](https://github.com/Epidal). -- [Mário Feroldi](https://github.com/thelostt) fixed a small typo. -- [duncanwerner](https://github.com/duncanwerner) found a really embarrassing performance regression in the 2.0.0 release. -- [Damien](https://github.com/dtoma) fixed one of the last conversion warnings. -- [Thomas Braun](https://github.com/t-b) fixed a warning in a test case and adjusted MSVC calls in the CI. -- [Théo DELRIEU](https://github.com/theodelrieu) patiently and constructively oversaw the long way toward [iterator-range parsing](https://github.com/nlohmann/json/issues/290). He also implemented the magic behind the serialization/deserialization of user-defined types and split the single header file into smaller chunks. -- [Stefan](https://github.com/5tefan) fixed a minor issue in the documentation. -- [Vasil Dimov](https://github.com/vasild) fixed the documentation regarding conversions from `std::multiset`. -- [ChristophJud](https://github.com/ChristophJud) overworked the CMake files to ease project inclusion. -- [Vladimir Petrigo](https://github.com/vpetrigo) made a SFINAE hack more readable and added Visual Studio 17 to the build matrix. -- [Denis Andrejew](https://github.com/seeekr) fixed a grammar issue in the README file. -- [Pierre-Antoine Lacaze](https://github.com/palacaze) found a subtle bug in the `dump()` function. -- [TurpentineDistillery](https://github.com/TurpentineDistillery) pointed to [`std::locale::classic()`](https://en.cppreference.com/w/cpp/locale/locale/classic) to avoid too much locale joggling, found some nice performance improvements in the parser, improved the benchmarking code, and realized locale-independent number parsing and printing. -- [cgzones](https://github.com/cgzones) had an idea how to fix the Coverity scan. -- [Jared Grubb](https://github.com/jaredgrubb) silenced a nasty documentation warning. -- [Yixin Zhang](https://github.com/qwename) fixed an integer overflow check. -- [Bosswestfalen](https://github.com/Bosswestfalen) merged two iterator classes into a smaller one. -- [Daniel599](https://github.com/Daniel599) helped to get Travis execute the tests with Clang's sanitizers. -- [Jonathan Lee](https://github.com/vjon) fixed an example in the README file. -- [gnzlbg](https://github.com/gnzlbg) supported the implementation of user-defined types. -- [Alexej Harm](https://github.com/qis) helped to get the user-defined types working with Visual Studio. -- [Jared Grubb](https://github.com/jaredgrubb) supported the implementation of user-defined types. -- [EnricoBilla](https://github.com/EnricoBilla) noted a typo in an example. -- [Martin Hořeňovský](https://github.com/horenmar) found a way for a 2x speedup for the compilation time of the test suite. -- [ukhegg](https://github.com/ukhegg) found proposed an improvement for the examples section. -- [rswanson-ihi](https://github.com/rswanson-ihi) noted a typo in the README. -- [Mihai Stan](https://github.com/stanmihai4) fixed a bug in the comparison with `nullptr`s. -- [Tushar Maheshwari](https://github.com/tusharpm) added [cotire](https://github.com/sakra/cotire) support to speed up the compilation. -- [TedLyngmo](https://github.com/TedLyngmo) noted a typo in the README, removed unnecessary bit arithmetic, and fixed some `-Weffc++` warnings. -- [Krzysztof Woś](https://github.com/krzysztofwos) made exceptions more visible. -- [ftillier](https://github.com/ftillier) fixed a compiler warning. -- [tinloaf](https://github.com/tinloaf) made sure all pushed warnings are properly popped. -- [Fytch](https://github.com/Fytch) found a bug in the documentation. -- [Jay Sistar](https://github.com/Type1J) implemented a Meson build description. -- [Henry Lee](https://github.com/HenryRLee) fixed a warning in ICC and improved the iterator implementation. -- [Vincent Thiery](https://github.com/vthiery) maintains a package for the Conan package manager. -- [Steffen](https://github.com/koemeet) fixed a potential issue with MSVC and `std::min`. -- [Mike Tzou](https://github.com/Chocobo1) fixed some typos. -- [amrcode](https://github.com/amrcode) noted a misleading documentation about comparison of floats. -- [Oleg Endo](https://github.com/olegendo) reduced the memory consumption by replacing `` with ``. -- [dan-42](https://github.com/dan-42) cleaned up the CMake files to simplify including/reusing of the library. -- [Nikita Ofitserov](https://github.com/himikof) allowed for moving values from initializer lists. -- [Greg Hurrell](https://github.com/wincent) fixed a typo. -- [Dmitry Kukovinets](https://github.com/DmitryKuk) fixed a typo. -- [kbthomp1](https://github.com/kbthomp1) fixed an issue related to the Intel OSX compiler. -- [Markus Werle](https://github.com/daixtrose) fixed a typo. -- [WebProdPP](https://github.com/WebProdPP) fixed a subtle error in a precondition check. -- [Alex](https://github.com/leha-bot) noted an error in a code sample. -- [Tom de Geus](https://github.com/tdegeus) reported some warnings with ICC and helped fixing them. -- [Perry Kundert](https://github.com/pjkundert) simplified reading from input streams. -- [Sonu Lohani](https://github.com/sonulohani) fixed a small compilation error. -- [Jamie Seward](https://github.com/jseward) fixed all MSVC warnings. -- [Nate Vargas](https://github.com/eld00d) added a Doxygen tag file. -- [pvleuven](https://github.com/pvleuven) helped fixing a warning in ICC. -- [Pavel](https://github.com/crea7or) helped fixing some warnings in MSVC. -- [Jamie Seward](https://github.com/jseward) avoided unnecessary string copies in `find()` and `count()`. -- [Mitja](https://github.com/Itja) fixed some typos. -- [Jorrit Wronski](https://github.com/jowr) updated the Hunter package links. -- [Matthias Möller](https://github.com/TinyTinni) added a `.natvis` for the MSVC debug view. -- [bogemic](https://github.com/bogemic) fixed some C++17 deprecation warnings. -- [Eren Okka](https://github.com/erengy) fixed some MSVC warnings. -- [abolz](https://github.com/abolz) integrated the Grisu2 algorithm for proper floating-point formatting, allowing more roundtrip checks to succeed. -- [Vadim Evard](https://github.com/Pipeliner) fixed a Markdown issue in the README. -- [zerodefect](https://github.com/zerodefect) fixed a compiler warning. -- [Kert](https://github.com/kaidokert) allowed to template the string type in the serialization and added the possibility to override the exceptional behavior. -- [mark-99](https://github.com/mark-99) helped fixing an ICC error. -- [Patrik Huber](https://github.com/patrikhuber) fixed links in the README file. -- [johnfb](https://github.com/johnfb) found a bug in the implementation of CBOR's indefinite length strings. -- [Paul Fultz II](https://github.com/pfultz2) added a note on the cget package manager. -- [Wilson Lin](https://github.com/wla80) made the integration section of the README more concise. -- [RalfBielig](https://github.com/ralfbielig) detected and fixed a memory leak in the parser callback. -- [agrianius](https://github.com/agrianius) allowed to dump JSON to an alternative string type. -- [Kevin Tonon](https://github.com/ktonon) overworked the C++11 compiler checks in CMake. -- [Axel Huebl](https://github.com/ax3l) simplified a CMake check and added support for the [Spack package manager](https://spack.io). -- [Carlos O'Ryan](https://github.com/coryan) fixed a typo. -- [James Upjohn](https://github.com/jammehcow) fixed a version number in the compilers section. -- [Chuck Atkins](https://github.com/chuckatkins) adjusted the CMake files to the CMake packaging guidelines and provided documentation for the CMake integration. -- [Jan Schöppach](https://github.com/dns13) fixed a typo. -- [martin-mfg](https://github.com/martin-mfg) fixed a typo. -- [Matthias Möller](https://github.com/TinyTinni) removed the dependency from `std::stringstream`. -- [agrianius](https://github.com/agrianius) added code to use alternative string implementations. -- [Daniel599](https://github.com/Daniel599) allowed to use more algorithms with the `items()` function. -- [Julius Rakow](https://github.com/jrakow) fixed the Meson include directory and fixed the links to [cppreference.com](cppreference.com). -- [Sonu Lohani](https://github.com/sonulohani) fixed the compilation with MSVC 2015 in debug mode. -- [grembo](https://github.com/grembo) fixed the test suite and re-enabled several test cases. -- [Hyeon Kim](https://github.com/simnalamburt) introduced the macro `JSON_INTERNAL_CATCH` to control the exception handling inside the library. -- [thyu](https://github.com/thyu) fixed a compiler warning. -- [David Guthrie](https://github.com/LEgregius) fixed a subtle compilation error with Clang 3.4.2. -- [Dennis Fischer](https://github.com/dennisfischer) allowed to call `find_package` without installing the library. -- [Hyeon Kim](https://github.com/simnalamburt) fixed an issue with a double macro definition. -- [Ben Berman](https://github.com/rivertam) made some error messages more understandable. -- [zakalibit](https://github.com/zakalibit) fixed a compilation problem with the Intel C++ compiler. -- [mandreyel](https://github.com/mandreyel) fixed a compilation problem. -- [Kostiantyn Ponomarenko](https://github.com/koponomarenko) added version and license information to the Meson build file. -- [Henry Schreiner](https://github.com/henryiii) added support for GCC 4.8. -- [knilch](https://github.com/knilch0r) made sure the test suite does not stall when run in the wrong directory. -- [Antonio Borondo](https://github.com/antonioborondo) fixed an MSVC 2017 warning. -- [Dan Gendreau](https://github.com/dgendreau) implemented the `NLOHMANN_JSON_SERIALIZE_ENUM` macro to quickly define a enum/JSON mapping. -- [efp](https://github.com/efp) added line and column information to parse errors. -- [julian-becker](https://github.com/julian-becker) added BSON support. -- [Pratik Chowdhury](https://github.com/pratikpc) added support for structured bindings. -- [David Avedissian](https://github.com/davedissian) added support for Clang 5.0.1 (PS4 version). -- [Jonathan Dumaresq](https://github.com/dumarjo) implemented an input adapter to read from `FILE*`. -- [kjpus](https://github.com/kjpus) fixed a link in the documentation. -- [Manvendra Singh](https://github.com/manu-chroma) fixed a typo in the documentation. -- [ziggurat29](https://github.com/ziggurat29) fixed an MSVC warning. -- [Sylvain Corlay](https://github.com/SylvainCorlay) added code to avoid an issue with MSVC. -- [mefyl](https://github.com/mefyl) fixed a bug when JSON was parsed from an input stream. -- [Millian Poquet](https://github.com/mpoquet) allowed to install the library via Meson. -- [Michael Behrns-Miller](https://github.com/moodboom) found an issue with a missing namespace. -- [Nasztanovics Ferenc](https://github.com/naszta) fixed a compilation issue with libc 2.12. -- [Andreas Schwab](https://github.com/andreas-schwab) fixed the endian conversion. -- [Mark-Dunning](https://github.com/Mark-Dunning) fixed a warning in MSVC. -- [Gareth Sylvester-Bradley](https://github.com/garethsb-sony) added `operator/` for JSON Pointers. -- [John-Mark](https://github.com/johnmarkwayve) noted a missing header. -- [Vitaly Zaitsev](https://github.com/xvitaly) fixed compilation with GCC 9.0. -- [Laurent Stacul](https://github.com/stac47) fixed compilation with GCC 9.0. -- [Ivor Wanders](https://github.com/iwanders) helped reducing the CMake requirement to version 3.1. -- [njlr](https://github.com/njlr) updated the Buckaroo instructions. -- [Lion](https://github.com/lieff) fixed a compilation issue with GCC 7 on CentOS. -- [Isaac Nickaein](https://github.com/nickaein) improved the integer serialization performance and implemented the `contains()` function. -- [past-due](https://github.com/past-due) suppressed an unfixable warning. -- [Elvis Oric](https://github.com/elvisoric) improved Meson support. -- [Matěj Plch](https://github.com/Afforix) fixed an example in the README. -- [Mark Beckwith](https://github.com/wythe) fixed a typo. -- [scinart](https://github.com/scinart) fixed bug in the serializer. -- [Patrick Boettcher](https://github.com/pboettch) implemented `push_back()` and `pop_back()` for JSON Pointers. -- [Bruno Oliveira](https://github.com/nicoddemus) added support for Conda. -- [Michele Caini](https://github.com/skypjack) fixed links in the README. -- [Hani](https://github.com/hnkb) documented how to install the library with NuGet. -- [Mark Beckwith](https://github.com/wythe) fixed a typo. -- [yann-morin-1998](https://github.com/yann-morin-1998) helped reducing the CMake requirement to version 3.1. -- [Konstantin Podsvirov](https://github.com/podsvirov) maintains a package for the MSYS2 software distro. -- [remyabel](https://github.com/remyabel) added GNUInstallDirs to the CMake files. -- [Taylor Howard](https://github.com/taylorhoward92) fixed a unit test. -- [Gabe Ron](https://github.com/Macr0Nerd) implemented the `to_string` method. -- [Watal M. Iwasaki](https://github.com/heavywatal) fixed a Clang warning. -- [Viktor Kirilov](https://github.com/onqtam) switched the unit tests from [Catch](https://github.com/philsquared/Catch) to [doctest](https://github.com/onqtam/doctest) -- [Juncheng E](https://github.com/ejcjason) fixed a typo. -- [tete17](https://github.com/tete17) fixed a bug in the `contains` function. -- [Xav83](https://github.com/Xav83) fixed some cppcheck warnings. -- [0xflotus](https://github.com/0xflotus) fixed some typos. -- [Christian Deneke](https://github.com/chris0x44) added a const version of `json_pointer::back`. -- [Julien Hamaide](https://github.com/crazyjul) made the `items()` function work with custom string types. -- [Evan Nemerson](https://github.com/nemequ) updated fixed a bug in Hedley and updated this library accordingly. -- [Florian Pigorsch](https://github.com/flopp) fixed a lot of typos. -- [Camille Bégué](https://github.com/cbegue) fixed an issue in the conversion from `std::pair` and `std::tuple` to `json`. -- [Anthony VH](https://github.com/AnthonyVH) fixed a compile error in an enum deserialization. -- [Yuriy Vountesmery](https://github.com/ua-code-dragon) noted a subtle bug in a preprocessor check. -- [Chen](https://github.com/dota17) fixed numerous issues in the library. -- [Antony Kellermann](https://github.com/aokellermann) added a CI step for GCC 10.1. -- [Alex](https://github.com/gistrec) fixed an MSVC warning. -- [Rainer](https://github.com/rvjr) proposed an improvement in the floating-point serialization in CBOR. -- [Francois Chabot](https://github.com/FrancoisChabot) made performance improvements in the input adapters. -- [Arthur Sonzogni](https://github.com/ArthurSonzogni) documented how the library can be included via `FetchContent`. -- [Rimas Misevičius](https://github.com/rmisev) fixed an error message. -- [Alexander Myasnikov](https://github.com/alexandermyasnikov) fixed some examples and a link in the README. -- [Hubert Chathi](https://github.com/uhoreg) made CMake's version config file architecture-independent. -- [OmnipotentEntity](https://github.com/OmnipotentEntity) implemented the binary values for CBOR, MessagePack, BSON, and UBJSON. -- [ArtemSarmini](https://github.com/ArtemSarmini) fixed a compilation issue with GCC 10 and fixed a leak. -- [Evgenii Sopov](https://github.com/sea-kg) integrated the library to the wsjcpp package manager. -- [Sergey Linev](https://github.com/linev) fixed a compiler warning. -- [Miguel Magalhães](https://github.com/magamig) fixed the year in the copyright. -- [Gareth Sylvester-Bradley](https://github.com/garethsb-sony) fixed a compilation issue with MSVC. -- [Alexander “weej” Jones](https://github.com/alex-weej) fixed an example in the README. -- [Antoine Cœur](https://github.com/Coeur) fixed some typos in the documentation. -- [jothepro](https://github.com/jothepro) updated links to the Hunter package. -- [Dave Lee](https://github.com/kastiglione) fixed link in the README. -- [Joël Lamotte](https://github.com/Klaim) added instruction for using Build2's package manager. -- [Paul Jurczak](https://github.com/pauljurczak) fixed an example in the README. -- [Sonu Lohani](https://github.com/sonulohani) fixed a warning. -- [Carlos Gomes Martinho](https://github.com/gocarlos) updated the Conan package source. -- [Konstantin Podsvirov](https://github.com/podsvirov) fixed the MSYS2 package documentation. -- [Tridacnid](https://github.com/Tridacnid) improved the CMake tests. -- [Michael](https://github.com/MBalszun) fixed MSVC warnings. -- [Quentin Barbarat](https://github.com/quentin-dev) fixed an example in the documentation. -- [XyFreak](https://github.com/XyFreak) fixed a compiler warning. -- [TotalCaesar659](https://github.com/TotalCaesar659) fixed links in the README. -- [Tanuj Garg](https://github.com/tanuj208) improved the fuzzer coverage for UBSAN input. -- [AODQ](https://github.com/AODQ) fixed a compiler warning. -- [jwittbrodt](https://github.com/jwittbrodt) made `NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE` inline. -- [pfeatherstone](https://github.com/pfeatherstone) improved the upper bound of arguments of the `NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE`/`NLOHMANN_DEFINE_TYPE_INTRUSIVE` macros. -- [Jan Procházka](https://github.com/jprochazk) fixed a bug in the CBOR parser for binary and string values. -- [T0b1-iOS](https://github.com/T0b1-iOS) fixed a bug in the new hash implementation. -- [Matthew Bauer](https://github.com/matthewbauer) adjusted the CBOR writer to create tags for binary subtypes. -- [gatopeich](https://github.com/gatopeich) implemented an ordered map container for `nlohmann::ordered_json`. -- [Érico Nogueira Rolim](https://github.com/ericonr) added support for pkg-config. -- [KonanM](https://github.com/KonanM) proposed an implementation for the `NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE`/`NLOHMANN_DEFINE_TYPE_INTRUSIVE` macros. -- [Guillaume Racicot](https://github.com/gracicot) implemented `string_view` support and allowed C++20 support. -- [Alex Reinking](https://github.com/alexreinking) improved CMake support for `FetchContent`. - -Thanks a lot for helping out! Please [let me know](mailto:mail@nlohmann.me) if I forgot someone. - - -## Used third-party tools - -The library itself consists of a single header file licensed under the MIT license. However, it is built, tested, documented, and whatnot using a lot of third-party tools and services. Thanks a lot! - -- [**amalgamate.py - Amalgamate C source and header files**](https://github.com/edlund/amalgamate) to create a single header file -- [**American fuzzy lop**](https://lcamtuf.coredump.cx/afl/) for fuzz testing -- [**AppVeyor**](https://www.appveyor.com) for [continuous integration](https://ci.appveyor.com/project/nlohmann/json) on Windows -- [**Artistic Style**](http://astyle.sourceforge.net) for automatic source code indentation -- [**CircleCI**](https://circleci.com) for [continuous integration](https://circleci.com/gh/nlohmann/json). -- [**Clang**](https://clang.llvm.org) for compilation with code sanitizers -- [**CMake**](https://cmake.org) for build automation -- [**Codacity**](https://www.codacy.com) for further [code analysis](https://www.codacy.com/app/nlohmann/json) -- [**Coveralls**](https://coveralls.io) to measure [code coverage](https://coveralls.io/github/nlohmann/json) -- [**Coverity Scan**](https://scan.coverity.com) for [static analysis](https://scan.coverity.com/projects/nlohmann-json) -- [**cppcheck**](http://cppcheck.sourceforge.net) for static analysis -- [**doctest**](https://github.com/onqtam/doctest) for the unit tests -- [**Doxygen**](https://www.doxygen.nl/index.html) to generate [documentation](https://nlohmann.github.io/json/doxygen/index.html) -- [**git-update-ghpages**](https://github.com/rstacruz/git-update-ghpages) to upload the documentation to gh-pages -- [**GitHub Changelog Generator**](https://github.com/skywinder/github-changelog-generator) to generate the [ChangeLog](https://github.com/nlohmann/json/blob/develop/ChangeLog.md) -- [**Google Benchmark**](https://github.com/google/benchmark) to implement the benchmarks -- [**Hedley**](https://nemequ.github.io/hedley/) to avoid re-inventing several compiler-agnostic feature macros -- [**lcov**](http://ltp.sourceforge.net/coverage/lcov.php) to process coverage information and create a HTML view -- [**libFuzzer**](https://llvm.org/docs/LibFuzzer.html) to implement fuzz testing for OSS-Fuzz -- [**OSS-Fuzz**](https://github.com/google/oss-fuzz) for continuous fuzz testing of the library ([project repository](https://github.com/google/oss-fuzz/tree/master/projects/json)) -- [**Probot**](https://probot.github.io) for automating maintainer tasks such as closing stale issues, requesting missing information, or detecting toxic comments. -- [**send_to_wandbox**](https://github.com/nlohmann/json/blob/develop/doc/scripts/send_to_wandbox.py) to send code examples to [Wandbox](http://melpon.org/wandbox) -- [**Travis**](https://travis-ci.org) for [continuous integration](https://travis-ci.org/nlohmann/json) on Linux and macOS -- [**Valgrind**](https://valgrind.org) to check for correct memory management -- [**Wandbox**](https://wandbox.org) for [online examples](https://wandbox.org/permlink/3lCHrFUZANONKv7a) - - -## Projects using JSON for Modern C++ - -The library is currently used in Apple macOS Sierra and iOS 10. I am not sure what they are using the library for, but I am happy that it runs on so many devices. - - -## Notes - -### Character encoding - -The library supports **Unicode input** as follows: - -- Only **UTF-8** encoded input is supported which is the default encoding for JSON according to [RFC 8259](https://tools.ietf.org/html/rfc8259.html#section-8.1). -- `std::u16string` and `std::u32string` can be parsed, assuming UTF-16 and UTF-32 encoding, respectively. These encodings are not supported when reading from files or other input containers. -- Other encodings such as Latin-1 or ISO 8859-1 are **not** supported and will yield parse or serialization errors. -- [Unicode noncharacters](https://www.unicode.org/faq/private_use.html#nonchar1) will not be replaced by the library. -- Invalid surrogates (e.g., incomplete pairs such as `\uDEAD`) will yield parse errors. -- The strings stored in the library are UTF-8 encoded. When using the default string type (`std::string`), note that its length/size functions return the number of stored bytes rather than the number of characters or glyphs. -- When you store strings with different encodings in the library, calling [`dump()`](https://nlohmann.github.io/json/classnlohmann_1_1basic__json_a50ec80b02d0f3f51130d4abb5d1cfdc5.html#a50ec80b02d0f3f51130d4abb5d1cfdc5) may throw an exception unless `json::error_handler_t::replace` or `json::error_handler_t::ignore` are used as error handlers. - -### Comments in JSON - -This library does not support comments by default. It does so for three reasons: - -1. Comments are not part of the [JSON specification](https://tools.ietf.org/html/rfc8259). You may argue that `//` or `/* */` are allowed in JavaScript, but JSON is not JavaScript. -2. This was not an oversight: Douglas Crockford [wrote on this](https://plus.google.com/118095276221607585885/posts/RK8qyGVaGSr) in May 2012: - - > I removed comments from JSON because I saw people were using them to hold parsing directives, a practice which would have destroyed interoperability. I know that the lack of comments makes some people sad, but it shouldn't. - - > Suppose you are using JSON to keep configuration files, which you would like to annotate. Go ahead and insert all the comments you like. Then pipe it through JSMin before handing it to your JSON parser. - -3. It is dangerous for interoperability if some libraries would add comment support while others don't. Please check [The Harmful Consequences of the Robustness Principle](https://tools.ietf.org/html/draft-iab-protocol-maintenance-01) on this. - -However, you can pass set parameter `ignore_comments` to true in the `parse` function to ignore `//` or `/* */` comments. Comments will then be treated as whitespace. - -### Order of object keys - -By default, the library does not preserve the **insertion order of object elements**. This is standards-compliant, as the [JSON standard](https://tools.ietf.org/html/rfc8259.html) defines objects as "an unordered collection of zero or more name/value pairs". - -If you do want to preserve the insertion order, you can try the type [`nlohmann::ordered_json`](https://github.com/nlohmann/json/issues/2179). Alternatively, you can use a more sophisticated ordered map like [`tsl::ordered_map`](https://github.com/Tessil/ordered-map) ([integration](https://github.com/nlohmann/json/issues/546#issuecomment-304447518)) or [`nlohmann::fifo_map`](https://github.com/nlohmann/fifo_map) ([integration](https://github.com/nlohmann/json/issues/485#issuecomment-333652309)). - -### Memory Release - -We checked with Valgrind and the Address Sanitizer (ASAN) that there are no memory leaks. - -If you find that a parsing program with this library does not release memory, please consider the following case and it maybe unrelated to this library. - -**Your program is compiled with glibc.** There is a tunable threshold that glibc uses to decide whether to actually return memory to the system or whether to cache it for later reuse. If in your program you make lots of small allocations and those small allocations are not a contiguous block and are presumably below the threshold, then they will not get returned to the OS. -Here is a related issue [#1924](https://github.com/nlohmann/json/issues/1924). - -### Further notes - -- The code contains numerous debug **assertions** which can be switched off by defining the preprocessor macro `NDEBUG`, see the [documentation of `assert`](https://en.cppreference.com/w/cpp/error/assert). In particular, note [`operator[]`](https://nlohmann.github.io/json/classnlohmann_1_1basic__json_a233b02b0839ef798942dd46157cc0fe6.html#a233b02b0839ef798942dd46157cc0fe6) implements **unchecked access** for const objects: If the given key is not present, the behavior is undefined (think of a dereferenced null pointer) and yields an [assertion failure](https://github.com/nlohmann/json/issues/289) if assertions are switched on. If you are not sure whether an element in an object exists, use checked access with the [`at()` function](https://nlohmann.github.io/json/classnlohmann_1_1basic__json_a73ae333487310e3302135189ce8ff5d8.html#a73ae333487310e3302135189ce8ff5d8). Furthermore, you can define `JSON_ASSERT(x)` to replace calls to `assert(x)`. -- As the exact type of a number is not defined in the [JSON specification](https://tools.ietf.org/html/rfc8259.html), this library tries to choose the best fitting C++ number type automatically. As a result, the type `double` may be used to store numbers which may yield [**floating-point exceptions**](https://github.com/nlohmann/json/issues/181) in certain rare situations if floating-point exceptions have been unmasked in the calling code. These exceptions are not caused by the library and need to be fixed in the calling code, such as by re-masking the exceptions prior to calling library functions. -- The code can be compiled without C++ **runtime type identification** features; that is, you can use the `-fno-rtti` compiler flag. -- **Exceptions** are used widely within the library. They can, however, be switched off with either using the compiler flag `-fno-exceptions` or by defining the symbol `JSON_NOEXCEPTION`. In this case, exceptions are replaced by `abort()` calls. You can further control this behavior by defining `JSON_THROW_USER` (overriding `throw`), `JSON_TRY_USER` (overriding `try`), and `JSON_CATCH_USER` (overriding `catch`). Note that `JSON_THROW_USER` should leave the current scope (e.g., by throwing or aborting), as continuing after it may yield undefined behavior. - -## Execute unit tests - -To compile and run the tests, you need to execute - -```sh -$ mkdir build -$ cd build -$ cmake .. -DJSON_BuildTests=On -$ cmake --build . -$ ctest --output-on-failure -``` - -Note that during the `ctest` stage, several JSON test files are downloaded from an [external repository](https://github.com/nlohmann/json_test_data). If policies forbid downloading artifacts during testing, you can download the files yourself and pass the directory with the test files via `-DJSON_TestDataDirectory=path` to CMake. Then, no Internet connectivity is required. See [issue #2189](https://github.com/nlohmann/json/issues/2189) for more information. - -In case you have downloaded the library rather than checked out the code via Git, test `cmake_fetch_content_configure`. Please execute `ctest -LE git_required` to skip these tests. See [issue #2189](https://github.com/nlohmann/json/issues/2189) for more information. diff --git a/ext/json/single_include/nlohmann/json.hpp b/ext/json/single_include/nlohmann/json.hpp deleted file mode 100644 index a70aaf8cbc..0000000000 --- a/ext/json/single_include/nlohmann/json.hpp +++ /dev/null @@ -1,25447 +0,0 @@ -/* - __ _____ _____ _____ - __| | __| | | | JSON for Modern C++ -| | |__ | | | | | | version 3.9.1 -|_____|_____|_____|_|___| https://github.com/nlohmann/json - -Licensed under the MIT License . -SPDX-License-Identifier: MIT -Copyright (c) 2013-2019 Niels Lohmann . - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -*/ - -#ifndef INCLUDE_NLOHMANN_JSON_HPP_ -#define INCLUDE_NLOHMANN_JSON_HPP_ - -#define NLOHMANN_JSON_VERSION_MAJOR 3 -#define NLOHMANN_JSON_VERSION_MINOR 9 -#define NLOHMANN_JSON_VERSION_PATCH 1 - -#include // all_of, find, for_each -#include // nullptr_t, ptrdiff_t, size_t -#include // hash, less -#include // initializer_list -#include // istream, ostream -#include // random_access_iterator_tag -#include // unique_ptr -#include // accumulate -#include // string, stoi, to_string -#include // declval, forward, move, pair, swap -#include // vector - -// #include - - -#include - -// #include - - -#include // transform -#include // array -#include // forward_list -#include // inserter, front_inserter, end -#include // map -#include // string -#include // tuple, make_tuple -#include // is_arithmetic, is_same, is_enum, underlying_type, is_convertible -#include // unordered_map -#include // pair, declval -#include // valarray - -// #include - - -#include // exception -#include // runtime_error -#include // to_string - -// #include - - -#include // size_t - -namespace nlohmann -{ -namespace detail -{ -/// struct to capture the start position of the current token -struct position_t -{ - /// the total number of characters read - std::size_t chars_read_total = 0; - /// the number of characters read in the current line - std::size_t chars_read_current_line = 0; - /// the number of lines read - std::size_t lines_read = 0; - - /// conversion to size_t to preserve SAX interface - constexpr operator size_t() const - { - return chars_read_total; - } -}; - -} // namespace detail -} // namespace nlohmann - -// #include - - -#include // pair -// #include -/* Hedley - https://nemequ.github.io/hedley - * Created by Evan Nemerson - * - * To the extent possible under law, the author(s) have dedicated all - * copyright and related and neighboring rights to this software to - * the public domain worldwide. This software is distributed without - * any warranty. - * - * For details, see . - * SPDX-License-Identifier: CC0-1.0 - */ - -#if !defined(JSON_HEDLEY_VERSION) || (JSON_HEDLEY_VERSION < 13) -#if defined(JSON_HEDLEY_VERSION) - #undef JSON_HEDLEY_VERSION -#endif -#define JSON_HEDLEY_VERSION 13 - -#if defined(JSON_HEDLEY_STRINGIFY_EX) - #undef JSON_HEDLEY_STRINGIFY_EX -#endif -#define JSON_HEDLEY_STRINGIFY_EX(x) #x - -#if defined(JSON_HEDLEY_STRINGIFY) - #undef JSON_HEDLEY_STRINGIFY -#endif -#define JSON_HEDLEY_STRINGIFY(x) JSON_HEDLEY_STRINGIFY_EX(x) - -#if defined(JSON_HEDLEY_CONCAT_EX) - #undef JSON_HEDLEY_CONCAT_EX -#endif -#define JSON_HEDLEY_CONCAT_EX(a,b) a##b - -#if defined(JSON_HEDLEY_CONCAT) - #undef JSON_HEDLEY_CONCAT -#endif -#define JSON_HEDLEY_CONCAT(a,b) JSON_HEDLEY_CONCAT_EX(a,b) - -#if defined(JSON_HEDLEY_CONCAT3_EX) - #undef JSON_HEDLEY_CONCAT3_EX -#endif -#define JSON_HEDLEY_CONCAT3_EX(a,b,c) a##b##c - -#if defined(JSON_HEDLEY_CONCAT3) - #undef JSON_HEDLEY_CONCAT3 -#endif -#define JSON_HEDLEY_CONCAT3(a,b,c) JSON_HEDLEY_CONCAT3_EX(a,b,c) - -#if defined(JSON_HEDLEY_VERSION_ENCODE) - #undef JSON_HEDLEY_VERSION_ENCODE -#endif -#define JSON_HEDLEY_VERSION_ENCODE(major,minor,revision) (((major) * 1000000) + ((minor) * 1000) + (revision)) - -#if defined(JSON_HEDLEY_VERSION_DECODE_MAJOR) - #undef JSON_HEDLEY_VERSION_DECODE_MAJOR -#endif -#define JSON_HEDLEY_VERSION_DECODE_MAJOR(version) ((version) / 1000000) - -#if defined(JSON_HEDLEY_VERSION_DECODE_MINOR) - #undef JSON_HEDLEY_VERSION_DECODE_MINOR -#endif -#define JSON_HEDLEY_VERSION_DECODE_MINOR(version) (((version) % 1000000) / 1000) - -#if defined(JSON_HEDLEY_VERSION_DECODE_REVISION) - #undef JSON_HEDLEY_VERSION_DECODE_REVISION -#endif -#define JSON_HEDLEY_VERSION_DECODE_REVISION(version) ((version) % 1000) - -#if defined(JSON_HEDLEY_GNUC_VERSION) - #undef JSON_HEDLEY_GNUC_VERSION -#endif -#if defined(__GNUC__) && defined(__GNUC_PATCHLEVEL__) - #define JSON_HEDLEY_GNUC_VERSION JSON_HEDLEY_VERSION_ENCODE(__GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__) -#elif defined(__GNUC__) - #define JSON_HEDLEY_GNUC_VERSION JSON_HEDLEY_VERSION_ENCODE(__GNUC__, __GNUC_MINOR__, 0) -#endif - -#if defined(JSON_HEDLEY_GNUC_VERSION_CHECK) - #undef JSON_HEDLEY_GNUC_VERSION_CHECK -#endif -#if defined(JSON_HEDLEY_GNUC_VERSION) - #define JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_GNUC_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) -#else - #define JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) (0) -#endif - -#if defined(JSON_HEDLEY_MSVC_VERSION) - #undef JSON_HEDLEY_MSVC_VERSION -#endif -#if defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 140000000) - #define JSON_HEDLEY_MSVC_VERSION JSON_HEDLEY_VERSION_ENCODE(_MSC_FULL_VER / 10000000, (_MSC_FULL_VER % 10000000) / 100000, (_MSC_FULL_VER % 100000) / 100) -#elif defined(_MSC_FULL_VER) - #define JSON_HEDLEY_MSVC_VERSION JSON_HEDLEY_VERSION_ENCODE(_MSC_FULL_VER / 1000000, (_MSC_FULL_VER % 1000000) / 10000, (_MSC_FULL_VER % 10000) / 10) -#elif defined(_MSC_VER) - #define JSON_HEDLEY_MSVC_VERSION JSON_HEDLEY_VERSION_ENCODE(_MSC_VER / 100, _MSC_VER % 100, 0) -#endif - -#if defined(JSON_HEDLEY_MSVC_VERSION_CHECK) - #undef JSON_HEDLEY_MSVC_VERSION_CHECK -#endif -#if !defined(_MSC_VER) - #define JSON_HEDLEY_MSVC_VERSION_CHECK(major,minor,patch) (0) -#elif defined(_MSC_VER) && (_MSC_VER >= 1400) - #define JSON_HEDLEY_MSVC_VERSION_CHECK(major,minor,patch) (_MSC_FULL_VER >= ((major * 10000000) + (minor * 100000) + (patch))) -#elif defined(_MSC_VER) && (_MSC_VER >= 1200) - #define JSON_HEDLEY_MSVC_VERSION_CHECK(major,minor,patch) (_MSC_FULL_VER >= ((major * 1000000) + (minor * 10000) + (patch))) -#else - #define JSON_HEDLEY_MSVC_VERSION_CHECK(major,minor,patch) (_MSC_VER >= ((major * 100) + (minor))) -#endif - -#if defined(JSON_HEDLEY_INTEL_VERSION) - #undef JSON_HEDLEY_INTEL_VERSION -#endif -#if defined(__INTEL_COMPILER) && defined(__INTEL_COMPILER_UPDATE) - #define JSON_HEDLEY_INTEL_VERSION JSON_HEDLEY_VERSION_ENCODE(__INTEL_COMPILER / 100, __INTEL_COMPILER % 100, __INTEL_COMPILER_UPDATE) -#elif defined(__INTEL_COMPILER) - #define JSON_HEDLEY_INTEL_VERSION JSON_HEDLEY_VERSION_ENCODE(__INTEL_COMPILER / 100, __INTEL_COMPILER % 100, 0) -#endif - -#if defined(JSON_HEDLEY_INTEL_VERSION_CHECK) - #undef JSON_HEDLEY_INTEL_VERSION_CHECK -#endif -#if defined(JSON_HEDLEY_INTEL_VERSION) - #define JSON_HEDLEY_INTEL_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_INTEL_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) -#else - #define JSON_HEDLEY_INTEL_VERSION_CHECK(major,minor,patch) (0) -#endif - -#if defined(JSON_HEDLEY_PGI_VERSION) - #undef JSON_HEDLEY_PGI_VERSION -#endif -#if defined(__PGI) && defined(__PGIC__) && defined(__PGIC_MINOR__) && defined(__PGIC_PATCHLEVEL__) - #define JSON_HEDLEY_PGI_VERSION JSON_HEDLEY_VERSION_ENCODE(__PGIC__, __PGIC_MINOR__, __PGIC_PATCHLEVEL__) -#endif - -#if defined(JSON_HEDLEY_PGI_VERSION_CHECK) - #undef JSON_HEDLEY_PGI_VERSION_CHECK -#endif -#if defined(JSON_HEDLEY_PGI_VERSION) - #define JSON_HEDLEY_PGI_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_PGI_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) -#else - #define JSON_HEDLEY_PGI_VERSION_CHECK(major,minor,patch) (0) -#endif - -#if defined(JSON_HEDLEY_SUNPRO_VERSION) - #undef JSON_HEDLEY_SUNPRO_VERSION -#endif -#if defined(__SUNPRO_C) && (__SUNPRO_C > 0x1000) - #define JSON_HEDLEY_SUNPRO_VERSION JSON_HEDLEY_VERSION_ENCODE((((__SUNPRO_C >> 16) & 0xf) * 10) + ((__SUNPRO_C >> 12) & 0xf), (((__SUNPRO_C >> 8) & 0xf) * 10) + ((__SUNPRO_C >> 4) & 0xf), (__SUNPRO_C & 0xf) * 10) -#elif defined(__SUNPRO_C) - #define JSON_HEDLEY_SUNPRO_VERSION JSON_HEDLEY_VERSION_ENCODE((__SUNPRO_C >> 8) & 0xf, (__SUNPRO_C >> 4) & 0xf, (__SUNPRO_C) & 0xf) -#elif defined(__SUNPRO_CC) && (__SUNPRO_CC > 0x1000) - #define JSON_HEDLEY_SUNPRO_VERSION JSON_HEDLEY_VERSION_ENCODE((((__SUNPRO_CC >> 16) & 0xf) * 10) + ((__SUNPRO_CC >> 12) & 0xf), (((__SUNPRO_CC >> 8) & 0xf) * 10) + ((__SUNPRO_CC >> 4) & 0xf), (__SUNPRO_CC & 0xf) * 10) -#elif defined(__SUNPRO_CC) - #define JSON_HEDLEY_SUNPRO_VERSION JSON_HEDLEY_VERSION_ENCODE((__SUNPRO_CC >> 8) & 0xf, (__SUNPRO_CC >> 4) & 0xf, (__SUNPRO_CC) & 0xf) -#endif - -#if defined(JSON_HEDLEY_SUNPRO_VERSION_CHECK) - #undef JSON_HEDLEY_SUNPRO_VERSION_CHECK -#endif -#if defined(JSON_HEDLEY_SUNPRO_VERSION) - #define JSON_HEDLEY_SUNPRO_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_SUNPRO_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) -#else - #define JSON_HEDLEY_SUNPRO_VERSION_CHECK(major,minor,patch) (0) -#endif - -#if defined(JSON_HEDLEY_EMSCRIPTEN_VERSION) - #undef JSON_HEDLEY_EMSCRIPTEN_VERSION -#endif -#if defined(__EMSCRIPTEN__) - #define JSON_HEDLEY_EMSCRIPTEN_VERSION JSON_HEDLEY_VERSION_ENCODE(__EMSCRIPTEN_major__, __EMSCRIPTEN_minor__, __EMSCRIPTEN_tiny__) -#endif - -#if defined(JSON_HEDLEY_EMSCRIPTEN_VERSION_CHECK) - #undef JSON_HEDLEY_EMSCRIPTEN_VERSION_CHECK -#endif -#if defined(JSON_HEDLEY_EMSCRIPTEN_VERSION) - #define JSON_HEDLEY_EMSCRIPTEN_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_EMSCRIPTEN_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) -#else - #define JSON_HEDLEY_EMSCRIPTEN_VERSION_CHECK(major,minor,patch) (0) -#endif - -#if defined(JSON_HEDLEY_ARM_VERSION) - #undef JSON_HEDLEY_ARM_VERSION -#endif -#if defined(__CC_ARM) && defined(__ARMCOMPILER_VERSION) - #define JSON_HEDLEY_ARM_VERSION JSON_HEDLEY_VERSION_ENCODE(__ARMCOMPILER_VERSION / 1000000, (__ARMCOMPILER_VERSION % 1000000) / 10000, (__ARMCOMPILER_VERSION % 10000) / 100) -#elif defined(__CC_ARM) && defined(__ARMCC_VERSION) - #define JSON_HEDLEY_ARM_VERSION JSON_HEDLEY_VERSION_ENCODE(__ARMCC_VERSION / 1000000, (__ARMCC_VERSION % 1000000) / 10000, (__ARMCC_VERSION % 10000) / 100) -#endif - -#if defined(JSON_HEDLEY_ARM_VERSION_CHECK) - #undef JSON_HEDLEY_ARM_VERSION_CHECK -#endif -#if defined(JSON_HEDLEY_ARM_VERSION) - #define JSON_HEDLEY_ARM_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_ARM_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) -#else - #define JSON_HEDLEY_ARM_VERSION_CHECK(major,minor,patch) (0) -#endif - -#if defined(JSON_HEDLEY_IBM_VERSION) - #undef JSON_HEDLEY_IBM_VERSION -#endif -#if defined(__ibmxl__) - #define JSON_HEDLEY_IBM_VERSION JSON_HEDLEY_VERSION_ENCODE(__ibmxl_version__, __ibmxl_release__, __ibmxl_modification__) -#elif defined(__xlC__) && defined(__xlC_ver__) - #define JSON_HEDLEY_IBM_VERSION JSON_HEDLEY_VERSION_ENCODE(__xlC__ >> 8, __xlC__ & 0xff, (__xlC_ver__ >> 8) & 0xff) -#elif defined(__xlC__) - #define JSON_HEDLEY_IBM_VERSION JSON_HEDLEY_VERSION_ENCODE(__xlC__ >> 8, __xlC__ & 0xff, 0) -#endif - -#if defined(JSON_HEDLEY_IBM_VERSION_CHECK) - #undef JSON_HEDLEY_IBM_VERSION_CHECK -#endif -#if defined(JSON_HEDLEY_IBM_VERSION) - #define JSON_HEDLEY_IBM_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_IBM_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) -#else - #define JSON_HEDLEY_IBM_VERSION_CHECK(major,minor,patch) (0) -#endif - -#if defined(JSON_HEDLEY_TI_VERSION) - #undef JSON_HEDLEY_TI_VERSION -#endif -#if \ - defined(__TI_COMPILER_VERSION__) && \ - ( \ - defined(__TMS470__) || defined(__TI_ARM__) || \ - defined(__MSP430__) || \ - defined(__TMS320C2000__) \ - ) -#if (__TI_COMPILER_VERSION__ >= 16000000) - #define JSON_HEDLEY_TI_VERSION JSON_HEDLEY_VERSION_ENCODE(__TI_COMPILER_VERSION__ / 1000000, (__TI_COMPILER_VERSION__ % 1000000) / 1000, (__TI_COMPILER_VERSION__ % 1000)) -#endif -#endif - -#if defined(JSON_HEDLEY_TI_VERSION_CHECK) - #undef JSON_HEDLEY_TI_VERSION_CHECK -#endif -#if defined(JSON_HEDLEY_TI_VERSION) - #define JSON_HEDLEY_TI_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TI_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) -#else - #define JSON_HEDLEY_TI_VERSION_CHECK(major,minor,patch) (0) -#endif - -#if defined(JSON_HEDLEY_TI_CL2000_VERSION) - #undef JSON_HEDLEY_TI_CL2000_VERSION -#endif -#if defined(__TI_COMPILER_VERSION__) && defined(__TMS320C2000__) - #define JSON_HEDLEY_TI_CL2000_VERSION JSON_HEDLEY_VERSION_ENCODE(__TI_COMPILER_VERSION__ / 1000000, (__TI_COMPILER_VERSION__ % 1000000) / 1000, (__TI_COMPILER_VERSION__ % 1000)) -#endif - -#if defined(JSON_HEDLEY_TI_CL2000_VERSION_CHECK) - #undef JSON_HEDLEY_TI_CL2000_VERSION_CHECK -#endif -#if defined(JSON_HEDLEY_TI_CL2000_VERSION) - #define JSON_HEDLEY_TI_CL2000_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TI_CL2000_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) -#else - #define JSON_HEDLEY_TI_CL2000_VERSION_CHECK(major,minor,patch) (0) -#endif - -#if defined(JSON_HEDLEY_TI_CL430_VERSION) - #undef JSON_HEDLEY_TI_CL430_VERSION -#endif -#if defined(__TI_COMPILER_VERSION__) && defined(__MSP430__) - #define JSON_HEDLEY_TI_CL430_VERSION JSON_HEDLEY_VERSION_ENCODE(__TI_COMPILER_VERSION__ / 1000000, (__TI_COMPILER_VERSION__ % 1000000) / 1000, (__TI_COMPILER_VERSION__ % 1000)) -#endif - -#if defined(JSON_HEDLEY_TI_CL430_VERSION_CHECK) - #undef JSON_HEDLEY_TI_CL430_VERSION_CHECK -#endif -#if defined(JSON_HEDLEY_TI_CL430_VERSION) - #define JSON_HEDLEY_TI_CL430_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TI_CL430_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) -#else - #define JSON_HEDLEY_TI_CL430_VERSION_CHECK(major,minor,patch) (0) -#endif - -#if defined(JSON_HEDLEY_TI_ARMCL_VERSION) - #undef JSON_HEDLEY_TI_ARMCL_VERSION -#endif -#if defined(__TI_COMPILER_VERSION__) && (defined(__TMS470__) || defined(__TI_ARM__)) - #define JSON_HEDLEY_TI_ARMCL_VERSION JSON_HEDLEY_VERSION_ENCODE(__TI_COMPILER_VERSION__ / 1000000, (__TI_COMPILER_VERSION__ % 1000000) / 1000, (__TI_COMPILER_VERSION__ % 1000)) -#endif - -#if defined(JSON_HEDLEY_TI_ARMCL_VERSION_CHECK) - #undef JSON_HEDLEY_TI_ARMCL_VERSION_CHECK -#endif -#if defined(JSON_HEDLEY_TI_ARMCL_VERSION) - #define JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TI_ARMCL_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) -#else - #define JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(major,minor,patch) (0) -#endif - -#if defined(JSON_HEDLEY_TI_CL6X_VERSION) - #undef JSON_HEDLEY_TI_CL6X_VERSION -#endif -#if defined(__TI_COMPILER_VERSION__) && defined(__TMS320C6X__) - #define JSON_HEDLEY_TI_CL6X_VERSION JSON_HEDLEY_VERSION_ENCODE(__TI_COMPILER_VERSION__ / 1000000, (__TI_COMPILER_VERSION__ % 1000000) / 1000, (__TI_COMPILER_VERSION__ % 1000)) -#endif - -#if defined(JSON_HEDLEY_TI_CL6X_VERSION_CHECK) - #undef JSON_HEDLEY_TI_CL6X_VERSION_CHECK -#endif -#if defined(JSON_HEDLEY_TI_CL6X_VERSION) - #define JSON_HEDLEY_TI_CL6X_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TI_CL6X_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) -#else - #define JSON_HEDLEY_TI_CL6X_VERSION_CHECK(major,minor,patch) (0) -#endif - -#if defined(JSON_HEDLEY_TI_CL7X_VERSION) - #undef JSON_HEDLEY_TI_CL7X_VERSION -#endif -#if defined(__TI_COMPILER_VERSION__) && defined(__C7000__) - #define JSON_HEDLEY_TI_CL7X_VERSION JSON_HEDLEY_VERSION_ENCODE(__TI_COMPILER_VERSION__ / 1000000, (__TI_COMPILER_VERSION__ % 1000000) / 1000, (__TI_COMPILER_VERSION__ % 1000)) -#endif - -#if defined(JSON_HEDLEY_TI_CL7X_VERSION_CHECK) - #undef JSON_HEDLEY_TI_CL7X_VERSION_CHECK -#endif -#if defined(JSON_HEDLEY_TI_CL7X_VERSION) - #define JSON_HEDLEY_TI_CL7X_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TI_CL7X_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) -#else - #define JSON_HEDLEY_TI_CL7X_VERSION_CHECK(major,minor,patch) (0) -#endif - -#if defined(JSON_HEDLEY_TI_CLPRU_VERSION) - #undef JSON_HEDLEY_TI_CLPRU_VERSION -#endif -#if defined(__TI_COMPILER_VERSION__) && defined(__PRU__) - #define JSON_HEDLEY_TI_CLPRU_VERSION JSON_HEDLEY_VERSION_ENCODE(__TI_COMPILER_VERSION__ / 1000000, (__TI_COMPILER_VERSION__ % 1000000) / 1000, (__TI_COMPILER_VERSION__ % 1000)) -#endif - -#if defined(JSON_HEDLEY_TI_CLPRU_VERSION_CHECK) - #undef JSON_HEDLEY_TI_CLPRU_VERSION_CHECK -#endif -#if defined(JSON_HEDLEY_TI_CLPRU_VERSION) - #define JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TI_CLPRU_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) -#else - #define JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(major,minor,patch) (0) -#endif - -#if defined(JSON_HEDLEY_CRAY_VERSION) - #undef JSON_HEDLEY_CRAY_VERSION -#endif -#if defined(_CRAYC) - #if defined(_RELEASE_PATCHLEVEL) - #define JSON_HEDLEY_CRAY_VERSION JSON_HEDLEY_VERSION_ENCODE(_RELEASE_MAJOR, _RELEASE_MINOR, _RELEASE_PATCHLEVEL) - #else - #define JSON_HEDLEY_CRAY_VERSION JSON_HEDLEY_VERSION_ENCODE(_RELEASE_MAJOR, _RELEASE_MINOR, 0) - #endif -#endif - -#if defined(JSON_HEDLEY_CRAY_VERSION_CHECK) - #undef JSON_HEDLEY_CRAY_VERSION_CHECK -#endif -#if defined(JSON_HEDLEY_CRAY_VERSION) - #define JSON_HEDLEY_CRAY_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_CRAY_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) -#else - #define JSON_HEDLEY_CRAY_VERSION_CHECK(major,minor,patch) (0) -#endif - -#if defined(JSON_HEDLEY_IAR_VERSION) - #undef JSON_HEDLEY_IAR_VERSION -#endif -#if defined(__IAR_SYSTEMS_ICC__) - #if __VER__ > 1000 - #define JSON_HEDLEY_IAR_VERSION JSON_HEDLEY_VERSION_ENCODE((__VER__ / 1000000), ((__VER__ / 1000) % 1000), (__VER__ % 1000)) - #else - #define JSON_HEDLEY_IAR_VERSION JSON_HEDLEY_VERSION_ENCODE(VER / 100, __VER__ % 100, 0) - #endif -#endif - -#if defined(JSON_HEDLEY_IAR_VERSION_CHECK) - #undef JSON_HEDLEY_IAR_VERSION_CHECK -#endif -#if defined(JSON_HEDLEY_IAR_VERSION) - #define JSON_HEDLEY_IAR_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_IAR_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) -#else - #define JSON_HEDLEY_IAR_VERSION_CHECK(major,minor,patch) (0) -#endif - -#if defined(JSON_HEDLEY_TINYC_VERSION) - #undef JSON_HEDLEY_TINYC_VERSION -#endif -#if defined(__TINYC__) - #define JSON_HEDLEY_TINYC_VERSION JSON_HEDLEY_VERSION_ENCODE(__TINYC__ / 1000, (__TINYC__ / 100) % 10, __TINYC__ % 100) -#endif - -#if defined(JSON_HEDLEY_TINYC_VERSION_CHECK) - #undef JSON_HEDLEY_TINYC_VERSION_CHECK -#endif -#if defined(JSON_HEDLEY_TINYC_VERSION) - #define JSON_HEDLEY_TINYC_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TINYC_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) -#else - #define JSON_HEDLEY_TINYC_VERSION_CHECK(major,minor,patch) (0) -#endif - -#if defined(JSON_HEDLEY_DMC_VERSION) - #undef JSON_HEDLEY_DMC_VERSION -#endif -#if defined(__DMC__) - #define JSON_HEDLEY_DMC_VERSION JSON_HEDLEY_VERSION_ENCODE(__DMC__ >> 8, (__DMC__ >> 4) & 0xf, __DMC__ & 0xf) -#endif - -#if defined(JSON_HEDLEY_DMC_VERSION_CHECK) - #undef JSON_HEDLEY_DMC_VERSION_CHECK -#endif -#if defined(JSON_HEDLEY_DMC_VERSION) - #define JSON_HEDLEY_DMC_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_DMC_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) -#else - #define JSON_HEDLEY_DMC_VERSION_CHECK(major,minor,patch) (0) -#endif - -#if defined(JSON_HEDLEY_COMPCERT_VERSION) - #undef JSON_HEDLEY_COMPCERT_VERSION -#endif -#if defined(__COMPCERT_VERSION__) - #define JSON_HEDLEY_COMPCERT_VERSION JSON_HEDLEY_VERSION_ENCODE(__COMPCERT_VERSION__ / 10000, (__COMPCERT_VERSION__ / 100) % 100, __COMPCERT_VERSION__ % 100) -#endif - -#if defined(JSON_HEDLEY_COMPCERT_VERSION_CHECK) - #undef JSON_HEDLEY_COMPCERT_VERSION_CHECK -#endif -#if defined(JSON_HEDLEY_COMPCERT_VERSION) - #define JSON_HEDLEY_COMPCERT_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_COMPCERT_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) -#else - #define JSON_HEDLEY_COMPCERT_VERSION_CHECK(major,minor,patch) (0) -#endif - -#if defined(JSON_HEDLEY_PELLES_VERSION) - #undef JSON_HEDLEY_PELLES_VERSION -#endif -#if defined(__POCC__) - #define JSON_HEDLEY_PELLES_VERSION JSON_HEDLEY_VERSION_ENCODE(__POCC__ / 100, __POCC__ % 100, 0) -#endif - -#if defined(JSON_HEDLEY_PELLES_VERSION_CHECK) - #undef JSON_HEDLEY_PELLES_VERSION_CHECK -#endif -#if defined(JSON_HEDLEY_PELLES_VERSION) - #define JSON_HEDLEY_PELLES_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_PELLES_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) -#else - #define JSON_HEDLEY_PELLES_VERSION_CHECK(major,minor,patch) (0) -#endif - -#if defined(JSON_HEDLEY_GCC_VERSION) - #undef JSON_HEDLEY_GCC_VERSION -#endif -#if \ - defined(JSON_HEDLEY_GNUC_VERSION) && \ - !defined(__clang__) && \ - !defined(JSON_HEDLEY_INTEL_VERSION) && \ - !defined(JSON_HEDLEY_PGI_VERSION) && \ - !defined(JSON_HEDLEY_ARM_VERSION) && \ - !defined(JSON_HEDLEY_TI_VERSION) && \ - !defined(JSON_HEDLEY_TI_ARMCL_VERSION) && \ - !defined(JSON_HEDLEY_TI_CL430_VERSION) && \ - !defined(JSON_HEDLEY_TI_CL2000_VERSION) && \ - !defined(JSON_HEDLEY_TI_CL6X_VERSION) && \ - !defined(JSON_HEDLEY_TI_CL7X_VERSION) && \ - !defined(JSON_HEDLEY_TI_CLPRU_VERSION) && \ - !defined(__COMPCERT__) - #define JSON_HEDLEY_GCC_VERSION JSON_HEDLEY_GNUC_VERSION -#endif - -#if defined(JSON_HEDLEY_GCC_VERSION_CHECK) - #undef JSON_HEDLEY_GCC_VERSION_CHECK -#endif -#if defined(JSON_HEDLEY_GCC_VERSION) - #define JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_GCC_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) -#else - #define JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) (0) -#endif - -#if defined(JSON_HEDLEY_HAS_ATTRIBUTE) - #undef JSON_HEDLEY_HAS_ATTRIBUTE -#endif -#if defined(__has_attribute) - #define JSON_HEDLEY_HAS_ATTRIBUTE(attribute) __has_attribute(attribute) -#else - #define JSON_HEDLEY_HAS_ATTRIBUTE(attribute) (0) -#endif - -#if defined(JSON_HEDLEY_GNUC_HAS_ATTRIBUTE) - #undef JSON_HEDLEY_GNUC_HAS_ATTRIBUTE -#endif -#if defined(__has_attribute) - #define JSON_HEDLEY_GNUC_HAS_ATTRIBUTE(attribute,major,minor,patch) __has_attribute(attribute) -#else - #define JSON_HEDLEY_GNUC_HAS_ATTRIBUTE(attribute,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) -#endif - -#if defined(JSON_HEDLEY_GCC_HAS_ATTRIBUTE) - #undef JSON_HEDLEY_GCC_HAS_ATTRIBUTE -#endif -#if defined(__has_attribute) - #define JSON_HEDLEY_GCC_HAS_ATTRIBUTE(attribute,major,minor,patch) __has_attribute(attribute) -#else - #define JSON_HEDLEY_GCC_HAS_ATTRIBUTE(attribute,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) -#endif - -#if defined(JSON_HEDLEY_HAS_CPP_ATTRIBUTE) - #undef JSON_HEDLEY_HAS_CPP_ATTRIBUTE -#endif -#if \ - defined(__has_cpp_attribute) && \ - defined(__cplusplus) && \ - (!defined(JSON_HEDLEY_SUNPRO_VERSION) || JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,15,0)) - #define JSON_HEDLEY_HAS_CPP_ATTRIBUTE(attribute) __has_cpp_attribute(attribute) -#else - #define JSON_HEDLEY_HAS_CPP_ATTRIBUTE(attribute) (0) -#endif - -#if defined(JSON_HEDLEY_HAS_CPP_ATTRIBUTE_NS) - #undef JSON_HEDLEY_HAS_CPP_ATTRIBUTE_NS -#endif -#if !defined(__cplusplus) || !defined(__has_cpp_attribute) - #define JSON_HEDLEY_HAS_CPP_ATTRIBUTE_NS(ns,attribute) (0) -#elif \ - !defined(JSON_HEDLEY_PGI_VERSION) && \ - !defined(JSON_HEDLEY_IAR_VERSION) && \ - (!defined(JSON_HEDLEY_SUNPRO_VERSION) || JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,15,0)) && \ - (!defined(JSON_HEDLEY_MSVC_VERSION) || JSON_HEDLEY_MSVC_VERSION_CHECK(19,20,0)) - #define JSON_HEDLEY_HAS_CPP_ATTRIBUTE_NS(ns,attribute) JSON_HEDLEY_HAS_CPP_ATTRIBUTE(ns::attribute) -#else - #define JSON_HEDLEY_HAS_CPP_ATTRIBUTE_NS(ns,attribute) (0) -#endif - -#if defined(JSON_HEDLEY_GNUC_HAS_CPP_ATTRIBUTE) - #undef JSON_HEDLEY_GNUC_HAS_CPP_ATTRIBUTE -#endif -#if defined(__has_cpp_attribute) && defined(__cplusplus) - #define JSON_HEDLEY_GNUC_HAS_CPP_ATTRIBUTE(attribute,major,minor,patch) __has_cpp_attribute(attribute) -#else - #define JSON_HEDLEY_GNUC_HAS_CPP_ATTRIBUTE(attribute,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) -#endif - -#if defined(JSON_HEDLEY_GCC_HAS_CPP_ATTRIBUTE) - #undef JSON_HEDLEY_GCC_HAS_CPP_ATTRIBUTE -#endif -#if defined(__has_cpp_attribute) && defined(__cplusplus) - #define JSON_HEDLEY_GCC_HAS_CPP_ATTRIBUTE(attribute,major,minor,patch) __has_cpp_attribute(attribute) -#else - #define JSON_HEDLEY_GCC_HAS_CPP_ATTRIBUTE(attribute,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) -#endif - -#if defined(JSON_HEDLEY_HAS_BUILTIN) - #undef JSON_HEDLEY_HAS_BUILTIN -#endif -#if defined(__has_builtin) - #define JSON_HEDLEY_HAS_BUILTIN(builtin) __has_builtin(builtin) -#else - #define JSON_HEDLEY_HAS_BUILTIN(builtin) (0) -#endif - -#if defined(JSON_HEDLEY_GNUC_HAS_BUILTIN) - #undef JSON_HEDLEY_GNUC_HAS_BUILTIN -#endif -#if defined(__has_builtin) - #define JSON_HEDLEY_GNUC_HAS_BUILTIN(builtin,major,minor,patch) __has_builtin(builtin) -#else - #define JSON_HEDLEY_GNUC_HAS_BUILTIN(builtin,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) -#endif - -#if defined(JSON_HEDLEY_GCC_HAS_BUILTIN) - #undef JSON_HEDLEY_GCC_HAS_BUILTIN -#endif -#if defined(__has_builtin) - #define JSON_HEDLEY_GCC_HAS_BUILTIN(builtin,major,minor,patch) __has_builtin(builtin) -#else - #define JSON_HEDLEY_GCC_HAS_BUILTIN(builtin,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) -#endif - -#if defined(JSON_HEDLEY_HAS_FEATURE) - #undef JSON_HEDLEY_HAS_FEATURE -#endif -#if defined(__has_feature) - #define JSON_HEDLEY_HAS_FEATURE(feature) __has_feature(feature) -#else - #define JSON_HEDLEY_HAS_FEATURE(feature) (0) -#endif - -#if defined(JSON_HEDLEY_GNUC_HAS_FEATURE) - #undef JSON_HEDLEY_GNUC_HAS_FEATURE -#endif -#if defined(__has_feature) - #define JSON_HEDLEY_GNUC_HAS_FEATURE(feature,major,minor,patch) __has_feature(feature) -#else - #define JSON_HEDLEY_GNUC_HAS_FEATURE(feature,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) -#endif - -#if defined(JSON_HEDLEY_GCC_HAS_FEATURE) - #undef JSON_HEDLEY_GCC_HAS_FEATURE -#endif -#if defined(__has_feature) - #define JSON_HEDLEY_GCC_HAS_FEATURE(feature,major,minor,patch) __has_feature(feature) -#else - #define JSON_HEDLEY_GCC_HAS_FEATURE(feature,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) -#endif - -#if defined(JSON_HEDLEY_HAS_EXTENSION) - #undef JSON_HEDLEY_HAS_EXTENSION -#endif -#if defined(__has_extension) - #define JSON_HEDLEY_HAS_EXTENSION(extension) __has_extension(extension) -#else - #define JSON_HEDLEY_HAS_EXTENSION(extension) (0) -#endif - -#if defined(JSON_HEDLEY_GNUC_HAS_EXTENSION) - #undef JSON_HEDLEY_GNUC_HAS_EXTENSION -#endif -#if defined(__has_extension) - #define JSON_HEDLEY_GNUC_HAS_EXTENSION(extension,major,minor,patch) __has_extension(extension) -#else - #define JSON_HEDLEY_GNUC_HAS_EXTENSION(extension,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) -#endif - -#if defined(JSON_HEDLEY_GCC_HAS_EXTENSION) - #undef JSON_HEDLEY_GCC_HAS_EXTENSION -#endif -#if defined(__has_extension) - #define JSON_HEDLEY_GCC_HAS_EXTENSION(extension,major,minor,patch) __has_extension(extension) -#else - #define JSON_HEDLEY_GCC_HAS_EXTENSION(extension,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) -#endif - -#if defined(JSON_HEDLEY_HAS_DECLSPEC_ATTRIBUTE) - #undef JSON_HEDLEY_HAS_DECLSPEC_ATTRIBUTE -#endif -#if defined(__has_declspec_attribute) - #define JSON_HEDLEY_HAS_DECLSPEC_ATTRIBUTE(attribute) __has_declspec_attribute(attribute) -#else - #define JSON_HEDLEY_HAS_DECLSPEC_ATTRIBUTE(attribute) (0) -#endif - -#if defined(JSON_HEDLEY_GNUC_HAS_DECLSPEC_ATTRIBUTE) - #undef JSON_HEDLEY_GNUC_HAS_DECLSPEC_ATTRIBUTE -#endif -#if defined(__has_declspec_attribute) - #define JSON_HEDLEY_GNUC_HAS_DECLSPEC_ATTRIBUTE(attribute,major,minor,patch) __has_declspec_attribute(attribute) -#else - #define JSON_HEDLEY_GNUC_HAS_DECLSPEC_ATTRIBUTE(attribute,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) -#endif - -#if defined(JSON_HEDLEY_GCC_HAS_DECLSPEC_ATTRIBUTE) - #undef JSON_HEDLEY_GCC_HAS_DECLSPEC_ATTRIBUTE -#endif -#if defined(__has_declspec_attribute) - #define JSON_HEDLEY_GCC_HAS_DECLSPEC_ATTRIBUTE(attribute,major,minor,patch) __has_declspec_attribute(attribute) -#else - #define JSON_HEDLEY_GCC_HAS_DECLSPEC_ATTRIBUTE(attribute,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) -#endif - -#if defined(JSON_HEDLEY_HAS_WARNING) - #undef JSON_HEDLEY_HAS_WARNING -#endif -#if defined(__has_warning) - #define JSON_HEDLEY_HAS_WARNING(warning) __has_warning(warning) -#else - #define JSON_HEDLEY_HAS_WARNING(warning) (0) -#endif - -#if defined(JSON_HEDLEY_GNUC_HAS_WARNING) - #undef JSON_HEDLEY_GNUC_HAS_WARNING -#endif -#if defined(__has_warning) - #define JSON_HEDLEY_GNUC_HAS_WARNING(warning,major,minor,patch) __has_warning(warning) -#else - #define JSON_HEDLEY_GNUC_HAS_WARNING(warning,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) -#endif - -#if defined(JSON_HEDLEY_GCC_HAS_WARNING) - #undef JSON_HEDLEY_GCC_HAS_WARNING -#endif -#if defined(__has_warning) - #define JSON_HEDLEY_GCC_HAS_WARNING(warning,major,minor,patch) __has_warning(warning) -#else - #define JSON_HEDLEY_GCC_HAS_WARNING(warning,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) -#endif - -/* JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_ is for - HEDLEY INTERNAL USE ONLY. API subject to change without notice. */ -#if defined(JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_) - #undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_ -#endif -#if defined(__cplusplus) -# if JSON_HEDLEY_HAS_WARNING("-Wc++98-compat") -# if JSON_HEDLEY_HAS_WARNING("-Wc++17-extensions") -# define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_(xpr) \ - JSON_HEDLEY_DIAGNOSTIC_PUSH \ - _Pragma("clang diagnostic ignored \"-Wc++98-compat\"") \ - _Pragma("clang diagnostic ignored \"-Wc++17-extensions\"") \ - xpr \ - JSON_HEDLEY_DIAGNOSTIC_POP -# else -# define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_(xpr) \ - JSON_HEDLEY_DIAGNOSTIC_PUSH \ - _Pragma("clang diagnostic ignored \"-Wc++98-compat\"") \ - xpr \ - JSON_HEDLEY_DIAGNOSTIC_POP -# endif -# endif -#endif -#if !defined(JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_(x) x -#endif - -#if defined(JSON_HEDLEY_CONST_CAST) - #undef JSON_HEDLEY_CONST_CAST -#endif -#if defined(__cplusplus) -# define JSON_HEDLEY_CONST_CAST(T, expr) (const_cast(expr)) -#elif \ - JSON_HEDLEY_HAS_WARNING("-Wcast-qual") || \ - JSON_HEDLEY_GCC_VERSION_CHECK(4,6,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) -# define JSON_HEDLEY_CONST_CAST(T, expr) (__extension__ ({ \ - JSON_HEDLEY_DIAGNOSTIC_PUSH \ - JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL \ - ((T) (expr)); \ - JSON_HEDLEY_DIAGNOSTIC_POP \ - })) -#else -# define JSON_HEDLEY_CONST_CAST(T, expr) ((T) (expr)) -#endif - -#if defined(JSON_HEDLEY_REINTERPRET_CAST) - #undef JSON_HEDLEY_REINTERPRET_CAST -#endif -#if defined(__cplusplus) - #define JSON_HEDLEY_REINTERPRET_CAST(T, expr) (reinterpret_cast(expr)) -#else - #define JSON_HEDLEY_REINTERPRET_CAST(T, expr) ((T) (expr)) -#endif - -#if defined(JSON_HEDLEY_STATIC_CAST) - #undef JSON_HEDLEY_STATIC_CAST -#endif -#if defined(__cplusplus) - #define JSON_HEDLEY_STATIC_CAST(T, expr) (static_cast(expr)) -#else - #define JSON_HEDLEY_STATIC_CAST(T, expr) ((T) (expr)) -#endif - -#if defined(JSON_HEDLEY_CPP_CAST) - #undef JSON_HEDLEY_CPP_CAST -#endif -#if defined(__cplusplus) -# if JSON_HEDLEY_HAS_WARNING("-Wold-style-cast") -# define JSON_HEDLEY_CPP_CAST(T, expr) \ - JSON_HEDLEY_DIAGNOSTIC_PUSH \ - _Pragma("clang diagnostic ignored \"-Wold-style-cast\"") \ - ((T) (expr)) \ - JSON_HEDLEY_DIAGNOSTIC_POP -# elif JSON_HEDLEY_IAR_VERSION_CHECK(8,3,0) -# define JSON_HEDLEY_CPP_CAST(T, expr) \ - JSON_HEDLEY_DIAGNOSTIC_PUSH \ - _Pragma("diag_suppress=Pe137") \ - JSON_HEDLEY_DIAGNOSTIC_POP \ -# else -# define JSON_HEDLEY_CPP_CAST(T, expr) ((T) (expr)) -# endif -#else -# define JSON_HEDLEY_CPP_CAST(T, expr) (expr) -#endif - -#if \ - (defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)) || \ - defined(__clang__) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(3,0,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ - JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) || \ - JSON_HEDLEY_PGI_VERSION_CHECK(18,4,0) || \ - JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ - JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ - JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,7,0) || \ - JSON_HEDLEY_TI_CL430_VERSION_CHECK(2,0,1) || \ - JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,1,0) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,0,0) || \ - JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ - JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) || \ - JSON_HEDLEY_CRAY_VERSION_CHECK(5,0,0) || \ - JSON_HEDLEY_TINYC_VERSION_CHECK(0,9,17) || \ - JSON_HEDLEY_SUNPRO_VERSION_CHECK(8,0,0) || \ - (JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) && defined(__C99_PRAGMA_OPERATOR)) - #define JSON_HEDLEY_PRAGMA(value) _Pragma(#value) -#elif JSON_HEDLEY_MSVC_VERSION_CHECK(15,0,0) - #define JSON_HEDLEY_PRAGMA(value) __pragma(value) -#else - #define JSON_HEDLEY_PRAGMA(value) -#endif - -#if defined(JSON_HEDLEY_DIAGNOSTIC_PUSH) - #undef JSON_HEDLEY_DIAGNOSTIC_PUSH -#endif -#if defined(JSON_HEDLEY_DIAGNOSTIC_POP) - #undef JSON_HEDLEY_DIAGNOSTIC_POP -#endif -#if defined(__clang__) - #define JSON_HEDLEY_DIAGNOSTIC_PUSH _Pragma("clang diagnostic push") - #define JSON_HEDLEY_DIAGNOSTIC_POP _Pragma("clang diagnostic pop") -#elif JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) - #define JSON_HEDLEY_DIAGNOSTIC_PUSH _Pragma("warning(push)") - #define JSON_HEDLEY_DIAGNOSTIC_POP _Pragma("warning(pop)") -#elif JSON_HEDLEY_GCC_VERSION_CHECK(4,6,0) - #define JSON_HEDLEY_DIAGNOSTIC_PUSH _Pragma("GCC diagnostic push") - #define JSON_HEDLEY_DIAGNOSTIC_POP _Pragma("GCC diagnostic pop") -#elif JSON_HEDLEY_MSVC_VERSION_CHECK(15,0,0) - #define JSON_HEDLEY_DIAGNOSTIC_PUSH __pragma(warning(push)) - #define JSON_HEDLEY_DIAGNOSTIC_POP __pragma(warning(pop)) -#elif JSON_HEDLEY_ARM_VERSION_CHECK(5,6,0) - #define JSON_HEDLEY_DIAGNOSTIC_PUSH _Pragma("push") - #define JSON_HEDLEY_DIAGNOSTIC_POP _Pragma("pop") -#elif \ - JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ - JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ - JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,4,0) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(8,1,0) || \ - JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ - JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) - #define JSON_HEDLEY_DIAGNOSTIC_PUSH _Pragma("diag_push") - #define JSON_HEDLEY_DIAGNOSTIC_POP _Pragma("diag_pop") -#elif JSON_HEDLEY_PELLES_VERSION_CHECK(2,90,0) - #define JSON_HEDLEY_DIAGNOSTIC_PUSH _Pragma("warning(push)") - #define JSON_HEDLEY_DIAGNOSTIC_POP _Pragma("warning(pop)") -#else - #define JSON_HEDLEY_DIAGNOSTIC_PUSH - #define JSON_HEDLEY_DIAGNOSTIC_POP -#endif - -#if defined(JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED) - #undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED -#endif -#if JSON_HEDLEY_HAS_WARNING("-Wdeprecated-declarations") - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("clang diagnostic ignored \"-Wdeprecated-declarations\"") -#elif JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("warning(disable:1478 1786)") -#elif JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("diag_suppress 1215,1444") -#elif JSON_HEDLEY_GCC_VERSION_CHECK(4,3,0) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"") -#elif JSON_HEDLEY_MSVC_VERSION_CHECK(15,0,0) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED __pragma(warning(disable:4996)) -#elif \ - JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ - (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ - (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ - (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ - (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ - JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ - JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("diag_suppress 1291,1718") -#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,13,0) && !defined(__cplusplus) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("error_messages(off,E_DEPRECATED_ATT,E_DEPRECATED_ATT_MESS)") -#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,13,0) && defined(__cplusplus) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("error_messages(off,symdeprecated,symdeprecated2)") -#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("diag_suppress=Pe1444,Pe1215") -#elif JSON_HEDLEY_PELLES_VERSION_CHECK(2,90,0) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("warn(disable:2241)") -#else - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED -#endif - -#if defined(JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS) - #undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS -#endif -#if JSON_HEDLEY_HAS_WARNING("-Wunknown-pragmas") - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("clang diagnostic ignored \"-Wunknown-pragmas\"") -#elif JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("warning(disable:161)") -#elif JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("diag_suppress 1675") -#elif JSON_HEDLEY_GCC_VERSION_CHECK(4,3,0) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("GCC diagnostic ignored \"-Wunknown-pragmas\"") -#elif JSON_HEDLEY_MSVC_VERSION_CHECK(15,0,0) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS __pragma(warning(disable:4068)) -#elif \ - JSON_HEDLEY_TI_VERSION_CHECK(16,9,0) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(8,0,0) || \ - JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ - JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,3,0) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("diag_suppress 163") -#elif JSON_HEDLEY_TI_CL6X_VERSION_CHECK(8,0,0) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("diag_suppress 163") -#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("diag_suppress=Pe161") -#else - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS -#endif - -#if defined(JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES) - #undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES -#endif -#if JSON_HEDLEY_HAS_WARNING("-Wunknown-attributes") - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("clang diagnostic ignored \"-Wunknown-attributes\"") -#elif JSON_HEDLEY_GCC_VERSION_CHECK(4,6,0) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"") -#elif JSON_HEDLEY_INTEL_VERSION_CHECK(17,0,0) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("warning(disable:1292)") -#elif JSON_HEDLEY_MSVC_VERSION_CHECK(19,0,0) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES __pragma(warning(disable:5030)) -#elif JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("diag_suppress 1097") -#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,14,0) && defined(__cplusplus) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("error_messages(off,attrskipunsup)") -#elif \ - JSON_HEDLEY_TI_VERSION_CHECK(18,1,0) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(8,3,0) || \ - JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("diag_suppress 1173") -#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("diag_suppress=Pe1097") -#else - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES -#endif - -#if defined(JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL) - #undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL -#endif -#if JSON_HEDLEY_HAS_WARNING("-Wcast-qual") - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL _Pragma("clang diagnostic ignored \"-Wcast-qual\"") -#elif JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL _Pragma("warning(disable:2203 2331)") -#elif JSON_HEDLEY_GCC_VERSION_CHECK(3,0,0) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL _Pragma("GCC diagnostic ignored \"-Wcast-qual\"") -#else - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL -#endif - -#if defined(JSON_HEDLEY_DEPRECATED) - #undef JSON_HEDLEY_DEPRECATED -#endif -#if defined(JSON_HEDLEY_DEPRECATED_FOR) - #undef JSON_HEDLEY_DEPRECATED_FOR -#endif -#if JSON_HEDLEY_MSVC_VERSION_CHECK(14,0,0) - #define JSON_HEDLEY_DEPRECATED(since) __declspec(deprecated("Since " # since)) - #define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) __declspec(deprecated("Since " #since "; use " #replacement)) -#elif defined(__cplusplus) && (__cplusplus >= 201402L) - #define JSON_HEDLEY_DEPRECATED(since) JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[deprecated("Since " #since)]]) - #define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[deprecated("Since " #since "; use " #replacement)]]) -#elif \ - JSON_HEDLEY_HAS_EXTENSION(attribute_deprecated_with_message) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(4,5,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ - JSON_HEDLEY_ARM_VERSION_CHECK(5,6,0) || \ - JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,13,0) || \ - JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) || \ - JSON_HEDLEY_TI_VERSION_CHECK(18,1,0) || \ - JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(18,1,0) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(8,3,0) || \ - JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ - JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,3,0) - #define JSON_HEDLEY_DEPRECATED(since) __attribute__((__deprecated__("Since " #since))) - #define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) __attribute__((__deprecated__("Since " #since "; use " #replacement))) -#elif \ - JSON_HEDLEY_HAS_ATTRIBUTE(deprecated) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(3,1,0) || \ - JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ - JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ - (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ - (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ - (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ - (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ - JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ - JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) - #define JSON_HEDLEY_DEPRECATED(since) __attribute__((__deprecated__)) - #define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) __attribute__((__deprecated__)) -#elif \ - JSON_HEDLEY_MSVC_VERSION_CHECK(13,10,0) || \ - JSON_HEDLEY_PELLES_VERSION_CHECK(6,50,0) - #define JSON_HEDLEY_DEPRECATED(since) __declspec(deprecated) - #define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) __declspec(deprecated) -#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) - #define JSON_HEDLEY_DEPRECATED(since) _Pragma("deprecated") - #define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) _Pragma("deprecated") -#else - #define JSON_HEDLEY_DEPRECATED(since) - #define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) -#endif - -#if defined(JSON_HEDLEY_UNAVAILABLE) - #undef JSON_HEDLEY_UNAVAILABLE -#endif -#if \ - JSON_HEDLEY_HAS_ATTRIBUTE(warning) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(4,3,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) - #define JSON_HEDLEY_UNAVAILABLE(available_since) __attribute__((__warning__("Not available until " #available_since))) -#else - #define JSON_HEDLEY_UNAVAILABLE(available_since) -#endif - -#if defined(JSON_HEDLEY_WARN_UNUSED_RESULT) - #undef JSON_HEDLEY_WARN_UNUSED_RESULT -#endif -#if defined(JSON_HEDLEY_WARN_UNUSED_RESULT_MSG) - #undef JSON_HEDLEY_WARN_UNUSED_RESULT_MSG -#endif -#if (JSON_HEDLEY_HAS_CPP_ATTRIBUTE(nodiscard) >= 201907L) - #define JSON_HEDLEY_WARN_UNUSED_RESULT JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[nodiscard]]) - #define JSON_HEDLEY_WARN_UNUSED_RESULT_MSG(msg) JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[nodiscard(msg)]]) -#elif JSON_HEDLEY_HAS_CPP_ATTRIBUTE(nodiscard) - #define JSON_HEDLEY_WARN_UNUSED_RESULT JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[nodiscard]]) - #define JSON_HEDLEY_WARN_UNUSED_RESULT_MSG(msg) JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[nodiscard]]) -#elif \ - JSON_HEDLEY_HAS_ATTRIBUTE(warn_unused_result) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(3,4,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ - JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ - (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ - (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ - (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ - (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ - JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ - JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) || \ - (JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,15,0) && defined(__cplusplus)) || \ - JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) - #define JSON_HEDLEY_WARN_UNUSED_RESULT __attribute__((__warn_unused_result__)) - #define JSON_HEDLEY_WARN_UNUSED_RESULT_MSG(msg) __attribute__((__warn_unused_result__)) -#elif defined(_Check_return_) /* SAL */ - #define JSON_HEDLEY_WARN_UNUSED_RESULT _Check_return_ - #define JSON_HEDLEY_WARN_UNUSED_RESULT_MSG(msg) _Check_return_ -#else - #define JSON_HEDLEY_WARN_UNUSED_RESULT - #define JSON_HEDLEY_WARN_UNUSED_RESULT_MSG(msg) -#endif - -#if defined(JSON_HEDLEY_SENTINEL) - #undef JSON_HEDLEY_SENTINEL -#endif -#if \ - JSON_HEDLEY_HAS_ATTRIBUTE(sentinel) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(4,0,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ - JSON_HEDLEY_ARM_VERSION_CHECK(5,4,0) - #define JSON_HEDLEY_SENTINEL(position) __attribute__((__sentinel__(position))) -#else - #define JSON_HEDLEY_SENTINEL(position) -#endif - -#if defined(JSON_HEDLEY_NO_RETURN) - #undef JSON_HEDLEY_NO_RETURN -#endif -#if JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) - #define JSON_HEDLEY_NO_RETURN __noreturn -#elif JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) - #define JSON_HEDLEY_NO_RETURN __attribute__((__noreturn__)) -#elif defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L - #define JSON_HEDLEY_NO_RETURN _Noreturn -#elif defined(__cplusplus) && (__cplusplus >= 201103L) - #define JSON_HEDLEY_NO_RETURN JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[noreturn]]) -#elif \ - JSON_HEDLEY_HAS_ATTRIBUTE(noreturn) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(3,2,0) || \ - JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \ - JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ - JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ - JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ - (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ - (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ - (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ - (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ - JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ - JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) - #define JSON_HEDLEY_NO_RETURN __attribute__((__noreturn__)) -#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,10,0) - #define JSON_HEDLEY_NO_RETURN _Pragma("does_not_return") -#elif JSON_HEDLEY_MSVC_VERSION_CHECK(13,10,0) - #define JSON_HEDLEY_NO_RETURN __declspec(noreturn) -#elif JSON_HEDLEY_TI_CL6X_VERSION_CHECK(6,0,0) && defined(__cplusplus) - #define JSON_HEDLEY_NO_RETURN _Pragma("FUNC_NEVER_RETURNS;") -#elif JSON_HEDLEY_COMPCERT_VERSION_CHECK(3,2,0) - #define JSON_HEDLEY_NO_RETURN __attribute((noreturn)) -#elif JSON_HEDLEY_PELLES_VERSION_CHECK(9,0,0) - #define JSON_HEDLEY_NO_RETURN __declspec(noreturn) -#else - #define JSON_HEDLEY_NO_RETURN -#endif - -#if defined(JSON_HEDLEY_NO_ESCAPE) - #undef JSON_HEDLEY_NO_ESCAPE -#endif -#if JSON_HEDLEY_HAS_ATTRIBUTE(noescape) - #define JSON_HEDLEY_NO_ESCAPE __attribute__((__noescape__)) -#else - #define JSON_HEDLEY_NO_ESCAPE -#endif - -#if defined(JSON_HEDLEY_UNREACHABLE) - #undef JSON_HEDLEY_UNREACHABLE -#endif -#if defined(JSON_HEDLEY_UNREACHABLE_RETURN) - #undef JSON_HEDLEY_UNREACHABLE_RETURN -#endif -#if defined(JSON_HEDLEY_ASSUME) - #undef JSON_HEDLEY_ASSUME -#endif -#if \ - JSON_HEDLEY_MSVC_VERSION_CHECK(13,10,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) - #define JSON_HEDLEY_ASSUME(expr) __assume(expr) -#elif JSON_HEDLEY_HAS_BUILTIN(__builtin_assume) - #define JSON_HEDLEY_ASSUME(expr) __builtin_assume(expr) -#elif \ - JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,2,0) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(4,0,0) - #if defined(__cplusplus) - #define JSON_HEDLEY_ASSUME(expr) std::_nassert(expr) - #else - #define JSON_HEDLEY_ASSUME(expr) _nassert(expr) - #endif -#endif -#if \ - (JSON_HEDLEY_HAS_BUILTIN(__builtin_unreachable) && (!defined(JSON_HEDLEY_ARM_VERSION))) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(4,5,0) || \ - JSON_HEDLEY_PGI_VERSION_CHECK(18,10,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ - JSON_HEDLEY_IBM_VERSION_CHECK(13,1,5) - #define JSON_HEDLEY_UNREACHABLE() __builtin_unreachable() -#elif defined(JSON_HEDLEY_ASSUME) - #define JSON_HEDLEY_UNREACHABLE() JSON_HEDLEY_ASSUME(0) -#endif -#if !defined(JSON_HEDLEY_ASSUME) - #if defined(JSON_HEDLEY_UNREACHABLE) - #define JSON_HEDLEY_ASSUME(expr) JSON_HEDLEY_STATIC_CAST(void, ((expr) ? 1 : (JSON_HEDLEY_UNREACHABLE(), 1))) - #else - #define JSON_HEDLEY_ASSUME(expr) JSON_HEDLEY_STATIC_CAST(void, expr) - #endif -#endif -#if defined(JSON_HEDLEY_UNREACHABLE) - #if \ - JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,2,0) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(4,0,0) - #define JSON_HEDLEY_UNREACHABLE_RETURN(value) return (JSON_HEDLEY_STATIC_CAST(void, JSON_HEDLEY_ASSUME(0)), (value)) - #else - #define JSON_HEDLEY_UNREACHABLE_RETURN(value) JSON_HEDLEY_UNREACHABLE() - #endif -#else - #define JSON_HEDLEY_UNREACHABLE_RETURN(value) return (value) -#endif -#if !defined(JSON_HEDLEY_UNREACHABLE) - #define JSON_HEDLEY_UNREACHABLE() JSON_HEDLEY_ASSUME(0) -#endif - -JSON_HEDLEY_DIAGNOSTIC_PUSH -#if JSON_HEDLEY_HAS_WARNING("-Wpedantic") - #pragma clang diagnostic ignored "-Wpedantic" -#endif -#if JSON_HEDLEY_HAS_WARNING("-Wc++98-compat-pedantic") && defined(__cplusplus) - #pragma clang diagnostic ignored "-Wc++98-compat-pedantic" -#endif -#if JSON_HEDLEY_GCC_HAS_WARNING("-Wvariadic-macros",4,0,0) - #if defined(__clang__) - #pragma clang diagnostic ignored "-Wvariadic-macros" - #elif defined(JSON_HEDLEY_GCC_VERSION) - #pragma GCC diagnostic ignored "-Wvariadic-macros" - #endif -#endif -#if defined(JSON_HEDLEY_NON_NULL) - #undef JSON_HEDLEY_NON_NULL -#endif -#if \ - JSON_HEDLEY_HAS_ATTRIBUTE(nonnull) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(3,3,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ - JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) - #define JSON_HEDLEY_NON_NULL(...) __attribute__((__nonnull__(__VA_ARGS__))) -#else - #define JSON_HEDLEY_NON_NULL(...) -#endif -JSON_HEDLEY_DIAGNOSTIC_POP - -#if defined(JSON_HEDLEY_PRINTF_FORMAT) - #undef JSON_HEDLEY_PRINTF_FORMAT -#endif -#if defined(__MINGW32__) && JSON_HEDLEY_GCC_HAS_ATTRIBUTE(format,4,4,0) && !defined(__USE_MINGW_ANSI_STDIO) - #define JSON_HEDLEY_PRINTF_FORMAT(string_idx,first_to_check) __attribute__((__format__(ms_printf, string_idx, first_to_check))) -#elif defined(__MINGW32__) && JSON_HEDLEY_GCC_HAS_ATTRIBUTE(format,4,4,0) && defined(__USE_MINGW_ANSI_STDIO) - #define JSON_HEDLEY_PRINTF_FORMAT(string_idx,first_to_check) __attribute__((__format__(gnu_printf, string_idx, first_to_check))) -#elif \ - JSON_HEDLEY_HAS_ATTRIBUTE(format) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(3,1,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ - JSON_HEDLEY_ARM_VERSION_CHECK(5,6,0) || \ - JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ - JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ - (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ - (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ - (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ - (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ - JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ - JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) - #define JSON_HEDLEY_PRINTF_FORMAT(string_idx,first_to_check) __attribute__((__format__(__printf__, string_idx, first_to_check))) -#elif JSON_HEDLEY_PELLES_VERSION_CHECK(6,0,0) - #define JSON_HEDLEY_PRINTF_FORMAT(string_idx,first_to_check) __declspec(vaformat(printf,string_idx,first_to_check)) -#else - #define JSON_HEDLEY_PRINTF_FORMAT(string_idx,first_to_check) -#endif - -#if defined(JSON_HEDLEY_CONSTEXPR) - #undef JSON_HEDLEY_CONSTEXPR -#endif -#if defined(__cplusplus) - #if __cplusplus >= 201103L - #define JSON_HEDLEY_CONSTEXPR JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_(constexpr) - #endif -#endif -#if !defined(JSON_HEDLEY_CONSTEXPR) - #define JSON_HEDLEY_CONSTEXPR -#endif - -#if defined(JSON_HEDLEY_PREDICT) - #undef JSON_HEDLEY_PREDICT -#endif -#if defined(JSON_HEDLEY_LIKELY) - #undef JSON_HEDLEY_LIKELY -#endif -#if defined(JSON_HEDLEY_UNLIKELY) - #undef JSON_HEDLEY_UNLIKELY -#endif -#if defined(JSON_HEDLEY_UNPREDICTABLE) - #undef JSON_HEDLEY_UNPREDICTABLE -#endif -#if JSON_HEDLEY_HAS_BUILTIN(__builtin_unpredictable) - #define JSON_HEDLEY_UNPREDICTABLE(expr) __builtin_unpredictable((expr)) -#endif -#if \ - JSON_HEDLEY_HAS_BUILTIN(__builtin_expect_with_probability) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(9,0,0) -# define JSON_HEDLEY_PREDICT(expr, value, probability) __builtin_expect_with_probability( (expr), (value), (probability)) -# define JSON_HEDLEY_PREDICT_TRUE(expr, probability) __builtin_expect_with_probability(!!(expr), 1 , (probability)) -# define JSON_HEDLEY_PREDICT_FALSE(expr, probability) __builtin_expect_with_probability(!!(expr), 0 , (probability)) -# define JSON_HEDLEY_LIKELY(expr) __builtin_expect (!!(expr), 1 ) -# define JSON_HEDLEY_UNLIKELY(expr) __builtin_expect (!!(expr), 0 ) -#elif \ - JSON_HEDLEY_HAS_BUILTIN(__builtin_expect) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(3,0,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ - (JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,15,0) && defined(__cplusplus)) || \ - JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ - JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ - JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ - JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,7,0) || \ - JSON_HEDLEY_TI_CL430_VERSION_CHECK(3,1,0) || \ - JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,1,0) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(6,1,0) || \ - JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ - JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) || \ - JSON_HEDLEY_TINYC_VERSION_CHECK(0,9,27) || \ - JSON_HEDLEY_CRAY_VERSION_CHECK(8,1,0) -# define JSON_HEDLEY_PREDICT(expr, expected, probability) \ - (((probability) >= 0.9) ? __builtin_expect((expr), (expected)) : (JSON_HEDLEY_STATIC_CAST(void, expected), (expr))) -# define JSON_HEDLEY_PREDICT_TRUE(expr, probability) \ - (__extension__ ({ \ - double hedley_probability_ = (probability); \ - ((hedley_probability_ >= 0.9) ? __builtin_expect(!!(expr), 1) : ((hedley_probability_ <= 0.1) ? __builtin_expect(!!(expr), 0) : !!(expr))); \ - })) -# define JSON_HEDLEY_PREDICT_FALSE(expr, probability) \ - (__extension__ ({ \ - double hedley_probability_ = (probability); \ - ((hedley_probability_ >= 0.9) ? __builtin_expect(!!(expr), 0) : ((hedley_probability_ <= 0.1) ? __builtin_expect(!!(expr), 1) : !!(expr))); \ - })) -# define JSON_HEDLEY_LIKELY(expr) __builtin_expect(!!(expr), 1) -# define JSON_HEDLEY_UNLIKELY(expr) __builtin_expect(!!(expr), 0) -#else -# define JSON_HEDLEY_PREDICT(expr, expected, probability) (JSON_HEDLEY_STATIC_CAST(void, expected), (expr)) -# define JSON_HEDLEY_PREDICT_TRUE(expr, probability) (!!(expr)) -# define JSON_HEDLEY_PREDICT_FALSE(expr, probability) (!!(expr)) -# define JSON_HEDLEY_LIKELY(expr) (!!(expr)) -# define JSON_HEDLEY_UNLIKELY(expr) (!!(expr)) -#endif -#if !defined(JSON_HEDLEY_UNPREDICTABLE) - #define JSON_HEDLEY_UNPREDICTABLE(expr) JSON_HEDLEY_PREDICT(expr, 1, 0.5) -#endif - -#if defined(JSON_HEDLEY_MALLOC) - #undef JSON_HEDLEY_MALLOC -#endif -#if \ - JSON_HEDLEY_HAS_ATTRIBUTE(malloc) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(3,1,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ - JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \ - JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ - JSON_HEDLEY_IBM_VERSION_CHECK(12,1,0) || \ - JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ - (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ - (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ - (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ - (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ - JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ - JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) - #define JSON_HEDLEY_MALLOC __attribute__((__malloc__)) -#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,10,0) - #define JSON_HEDLEY_MALLOC _Pragma("returns_new_memory") -#elif JSON_HEDLEY_MSVC_VERSION_CHECK(14, 0, 0) - #define JSON_HEDLEY_MALLOC __declspec(restrict) -#else - #define JSON_HEDLEY_MALLOC -#endif - -#if defined(JSON_HEDLEY_PURE) - #undef JSON_HEDLEY_PURE -#endif -#if \ - JSON_HEDLEY_HAS_ATTRIBUTE(pure) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(2,96,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ - JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \ - JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ - JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ - JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ - (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ - (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ - (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ - (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ - JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ - JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) || \ - JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) -# define JSON_HEDLEY_PURE __attribute__((__pure__)) -#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,10,0) -# define JSON_HEDLEY_PURE _Pragma("does_not_write_global_data") -#elif defined(__cplusplus) && \ - ( \ - JSON_HEDLEY_TI_CL430_VERSION_CHECK(2,0,1) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(4,0,0) || \ - JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) \ - ) -# define JSON_HEDLEY_PURE _Pragma("FUNC_IS_PURE;") -#else -# define JSON_HEDLEY_PURE -#endif - -#if defined(JSON_HEDLEY_CONST) - #undef JSON_HEDLEY_CONST -#endif -#if \ - JSON_HEDLEY_HAS_ATTRIBUTE(const) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(2,5,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ - JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \ - JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ - JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ - JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ - (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ - (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ - (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ - (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ - JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ - JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) || \ - JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) - #define JSON_HEDLEY_CONST __attribute__((__const__)) -#elif \ - JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,10,0) - #define JSON_HEDLEY_CONST _Pragma("no_side_effect") -#else - #define JSON_HEDLEY_CONST JSON_HEDLEY_PURE -#endif - -#if defined(JSON_HEDLEY_RESTRICT) - #undef JSON_HEDLEY_RESTRICT -#endif -#if defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) && !defined(__cplusplus) - #define JSON_HEDLEY_RESTRICT restrict -#elif \ - JSON_HEDLEY_GCC_VERSION_CHECK(3,1,0) || \ - JSON_HEDLEY_MSVC_VERSION_CHECK(14,0,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ - JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ - JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ - JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) || \ - JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ - JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,2,4) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(8,1,0) || \ - JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ - (JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,14,0) && defined(__cplusplus)) || \ - JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) || \ - defined(__clang__) - #define JSON_HEDLEY_RESTRICT __restrict -#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,3,0) && !defined(__cplusplus) - #define JSON_HEDLEY_RESTRICT _Restrict -#else - #define JSON_HEDLEY_RESTRICT -#endif - -#if defined(JSON_HEDLEY_INLINE) - #undef JSON_HEDLEY_INLINE -#endif -#if \ - (defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)) || \ - (defined(__cplusplus) && (__cplusplus >= 199711L)) - #define JSON_HEDLEY_INLINE inline -#elif \ - defined(JSON_HEDLEY_GCC_VERSION) || \ - JSON_HEDLEY_ARM_VERSION_CHECK(6,2,0) - #define JSON_HEDLEY_INLINE __inline__ -#elif \ - JSON_HEDLEY_MSVC_VERSION_CHECK(12,0,0) || \ - JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ - JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,1,0) || \ - JSON_HEDLEY_TI_CL430_VERSION_CHECK(3,1,0) || \ - JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,2,0) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(8,0,0) || \ - JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ - JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) - #define JSON_HEDLEY_INLINE __inline -#else - #define JSON_HEDLEY_INLINE -#endif - -#if defined(JSON_HEDLEY_ALWAYS_INLINE) - #undef JSON_HEDLEY_ALWAYS_INLINE -#endif -#if \ - JSON_HEDLEY_HAS_ATTRIBUTE(always_inline) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(4,0,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ - JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \ - JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ - JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ - JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ - (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ - (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ - (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ - (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ - JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ - JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) -# define JSON_HEDLEY_ALWAYS_INLINE __attribute__((__always_inline__)) JSON_HEDLEY_INLINE -#elif JSON_HEDLEY_MSVC_VERSION_CHECK(12,0,0) -# define JSON_HEDLEY_ALWAYS_INLINE __forceinline -#elif defined(__cplusplus) && \ - ( \ - JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ - JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ - JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(6,1,0) || \ - JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ - JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) \ - ) -# define JSON_HEDLEY_ALWAYS_INLINE _Pragma("FUNC_ALWAYS_INLINE;") -#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) -# define JSON_HEDLEY_ALWAYS_INLINE _Pragma("inline=forced") -#else -# define JSON_HEDLEY_ALWAYS_INLINE JSON_HEDLEY_INLINE -#endif - -#if defined(JSON_HEDLEY_NEVER_INLINE) - #undef JSON_HEDLEY_NEVER_INLINE -#endif -#if \ - JSON_HEDLEY_HAS_ATTRIBUTE(noinline) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(4,0,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ - JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \ - JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ - JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ - JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ - (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ - (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ - (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ - (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ - JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ - JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) - #define JSON_HEDLEY_NEVER_INLINE __attribute__((__noinline__)) -#elif JSON_HEDLEY_MSVC_VERSION_CHECK(13,10,0) - #define JSON_HEDLEY_NEVER_INLINE __declspec(noinline) -#elif JSON_HEDLEY_PGI_VERSION_CHECK(10,2,0) - #define JSON_HEDLEY_NEVER_INLINE _Pragma("noinline") -#elif JSON_HEDLEY_TI_CL6X_VERSION_CHECK(6,0,0) && defined(__cplusplus) - #define JSON_HEDLEY_NEVER_INLINE _Pragma("FUNC_CANNOT_INLINE;") -#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) - #define JSON_HEDLEY_NEVER_INLINE _Pragma("inline=never") -#elif JSON_HEDLEY_COMPCERT_VERSION_CHECK(3,2,0) - #define JSON_HEDLEY_NEVER_INLINE __attribute((noinline)) -#elif JSON_HEDLEY_PELLES_VERSION_CHECK(9,0,0) - #define JSON_HEDLEY_NEVER_INLINE __declspec(noinline) -#else - #define JSON_HEDLEY_NEVER_INLINE -#endif - -#if defined(JSON_HEDLEY_PRIVATE) - #undef JSON_HEDLEY_PRIVATE -#endif -#if defined(JSON_HEDLEY_PUBLIC) - #undef JSON_HEDLEY_PUBLIC -#endif -#if defined(JSON_HEDLEY_IMPORT) - #undef JSON_HEDLEY_IMPORT -#endif -#if defined(_WIN32) || defined(__CYGWIN__) -# define JSON_HEDLEY_PRIVATE -# define JSON_HEDLEY_PUBLIC __declspec(dllexport) -# define JSON_HEDLEY_IMPORT __declspec(dllimport) -#else -# if \ - JSON_HEDLEY_HAS_ATTRIBUTE(visibility) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(3,3,0) || \ - JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ - JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ - JSON_HEDLEY_IBM_VERSION_CHECK(13,1,0) || \ - ( \ - defined(__TI_EABI__) && \ - ( \ - (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) \ - ) \ - ) -# define JSON_HEDLEY_PRIVATE __attribute__((__visibility__("hidden"))) -# define JSON_HEDLEY_PUBLIC __attribute__((__visibility__("default"))) -# else -# define JSON_HEDLEY_PRIVATE -# define JSON_HEDLEY_PUBLIC -# endif -# define JSON_HEDLEY_IMPORT extern -#endif - -#if defined(JSON_HEDLEY_NO_THROW) - #undef JSON_HEDLEY_NO_THROW -#endif -#if \ - JSON_HEDLEY_HAS_ATTRIBUTE(nothrow) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(3,3,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) - #define JSON_HEDLEY_NO_THROW __attribute__((__nothrow__)) -#elif \ - JSON_HEDLEY_MSVC_VERSION_CHECK(13,1,0) || \ - JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) - #define JSON_HEDLEY_NO_THROW __declspec(nothrow) -#else - #define JSON_HEDLEY_NO_THROW -#endif - -#if defined(JSON_HEDLEY_FALL_THROUGH) - #undef JSON_HEDLEY_FALL_THROUGH -#endif -#if \ - JSON_HEDLEY_HAS_ATTRIBUTE(fallthrough) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(7,0,0) - #define JSON_HEDLEY_FALL_THROUGH __attribute__((__fallthrough__)) -#elif JSON_HEDLEY_HAS_CPP_ATTRIBUTE_NS(clang,fallthrough) - #define JSON_HEDLEY_FALL_THROUGH JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[clang::fallthrough]]) -#elif JSON_HEDLEY_HAS_CPP_ATTRIBUTE(fallthrough) - #define JSON_HEDLEY_FALL_THROUGH JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[fallthrough]]) -#elif defined(__fallthrough) /* SAL */ - #define JSON_HEDLEY_FALL_THROUGH __fallthrough -#else - #define JSON_HEDLEY_FALL_THROUGH -#endif - -#if defined(JSON_HEDLEY_RETURNS_NON_NULL) - #undef JSON_HEDLEY_RETURNS_NON_NULL -#endif -#if \ - JSON_HEDLEY_HAS_ATTRIBUTE(returns_nonnull) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(4,9,0) - #define JSON_HEDLEY_RETURNS_NON_NULL __attribute__((__returns_nonnull__)) -#elif defined(_Ret_notnull_) /* SAL */ - #define JSON_HEDLEY_RETURNS_NON_NULL _Ret_notnull_ -#else - #define JSON_HEDLEY_RETURNS_NON_NULL -#endif - -#if defined(JSON_HEDLEY_ARRAY_PARAM) - #undef JSON_HEDLEY_ARRAY_PARAM -#endif -#if \ - defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) && \ - !defined(__STDC_NO_VLA__) && \ - !defined(__cplusplus) && \ - !defined(JSON_HEDLEY_PGI_VERSION) && \ - !defined(JSON_HEDLEY_TINYC_VERSION) - #define JSON_HEDLEY_ARRAY_PARAM(name) (name) -#else - #define JSON_HEDLEY_ARRAY_PARAM(name) -#endif - -#if defined(JSON_HEDLEY_IS_CONSTANT) - #undef JSON_HEDLEY_IS_CONSTANT -#endif -#if defined(JSON_HEDLEY_REQUIRE_CONSTEXPR) - #undef JSON_HEDLEY_REQUIRE_CONSTEXPR -#endif -/* JSON_HEDLEY_IS_CONSTEXPR_ is for - HEDLEY INTERNAL USE ONLY. API subject to change without notice. */ -#if defined(JSON_HEDLEY_IS_CONSTEXPR_) - #undef JSON_HEDLEY_IS_CONSTEXPR_ -#endif -#if \ - JSON_HEDLEY_HAS_BUILTIN(__builtin_constant_p) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(3,4,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ - JSON_HEDLEY_TINYC_VERSION_CHECK(0,9,19) || \ - JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ - JSON_HEDLEY_IBM_VERSION_CHECK(13,1,0) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(6,1,0) || \ - (JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,10,0) && !defined(__cplusplus)) || \ - JSON_HEDLEY_CRAY_VERSION_CHECK(8,1,0) - #define JSON_HEDLEY_IS_CONSTANT(expr) __builtin_constant_p(expr) -#endif -#if !defined(__cplusplus) -# if \ - JSON_HEDLEY_HAS_BUILTIN(__builtin_types_compatible_p) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(3,4,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ - JSON_HEDLEY_IBM_VERSION_CHECK(13,1,0) || \ - JSON_HEDLEY_CRAY_VERSION_CHECK(8,1,0) || \ - JSON_HEDLEY_ARM_VERSION_CHECK(5,4,0) || \ - JSON_HEDLEY_TINYC_VERSION_CHECK(0,9,24) -#if defined(__INTPTR_TYPE__) - #define JSON_HEDLEY_IS_CONSTEXPR_(expr) __builtin_types_compatible_p(__typeof__((1 ? (void*) ((__INTPTR_TYPE__) ((expr) * 0)) : (int*) 0)), int*) -#else - #include - #define JSON_HEDLEY_IS_CONSTEXPR_(expr) __builtin_types_compatible_p(__typeof__((1 ? (void*) ((intptr_t) ((expr) * 0)) : (int*) 0)), int*) -#endif -# elif \ - ( \ - defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 201112L) && \ - !defined(JSON_HEDLEY_SUNPRO_VERSION) && \ - !defined(JSON_HEDLEY_PGI_VERSION) && \ - !defined(JSON_HEDLEY_IAR_VERSION)) || \ - JSON_HEDLEY_HAS_EXTENSION(c_generic_selections) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(4,9,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(17,0,0) || \ - JSON_HEDLEY_IBM_VERSION_CHECK(12,1,0) || \ - JSON_HEDLEY_ARM_VERSION_CHECK(5,3,0) -#if defined(__INTPTR_TYPE__) - #define JSON_HEDLEY_IS_CONSTEXPR_(expr) _Generic((1 ? (void*) ((__INTPTR_TYPE__) ((expr) * 0)) : (int*) 0), int*: 1, void*: 0) -#else - #include - #define JSON_HEDLEY_IS_CONSTEXPR_(expr) _Generic((1 ? (void*) ((intptr_t) * 0) : (int*) 0), int*: 1, void*: 0) -#endif -# elif \ - defined(JSON_HEDLEY_GCC_VERSION) || \ - defined(JSON_HEDLEY_INTEL_VERSION) || \ - defined(JSON_HEDLEY_TINYC_VERSION) || \ - defined(JSON_HEDLEY_TI_ARMCL_VERSION) || \ - JSON_HEDLEY_TI_CL430_VERSION_CHECK(18,12,0) || \ - defined(JSON_HEDLEY_TI_CL2000_VERSION) || \ - defined(JSON_HEDLEY_TI_CL6X_VERSION) || \ - defined(JSON_HEDLEY_TI_CL7X_VERSION) || \ - defined(JSON_HEDLEY_TI_CLPRU_VERSION) || \ - defined(__clang__) -# define JSON_HEDLEY_IS_CONSTEXPR_(expr) ( \ - sizeof(void) != \ - sizeof(*( \ - 1 ? \ - ((void*) ((expr) * 0L) ) : \ -((struct { char v[sizeof(void) * 2]; } *) 1) \ - ) \ - ) \ - ) -# endif -#endif -#if defined(JSON_HEDLEY_IS_CONSTEXPR_) - #if !defined(JSON_HEDLEY_IS_CONSTANT) - #define JSON_HEDLEY_IS_CONSTANT(expr) JSON_HEDLEY_IS_CONSTEXPR_(expr) - #endif - #define JSON_HEDLEY_REQUIRE_CONSTEXPR(expr) (JSON_HEDLEY_IS_CONSTEXPR_(expr) ? (expr) : (-1)) -#else - #if !defined(JSON_HEDLEY_IS_CONSTANT) - #define JSON_HEDLEY_IS_CONSTANT(expr) (0) - #endif - #define JSON_HEDLEY_REQUIRE_CONSTEXPR(expr) (expr) -#endif - -#if defined(JSON_HEDLEY_BEGIN_C_DECLS) - #undef JSON_HEDLEY_BEGIN_C_DECLS -#endif -#if defined(JSON_HEDLEY_END_C_DECLS) - #undef JSON_HEDLEY_END_C_DECLS -#endif -#if defined(JSON_HEDLEY_C_DECL) - #undef JSON_HEDLEY_C_DECL -#endif -#if defined(__cplusplus) - #define JSON_HEDLEY_BEGIN_C_DECLS extern "C" { - #define JSON_HEDLEY_END_C_DECLS } - #define JSON_HEDLEY_C_DECL extern "C" -#else - #define JSON_HEDLEY_BEGIN_C_DECLS - #define JSON_HEDLEY_END_C_DECLS - #define JSON_HEDLEY_C_DECL -#endif - -#if defined(JSON_HEDLEY_STATIC_ASSERT) - #undef JSON_HEDLEY_STATIC_ASSERT -#endif -#if \ - !defined(__cplusplus) && ( \ - (defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 201112L)) || \ - JSON_HEDLEY_HAS_FEATURE(c_static_assert) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(6,0,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ - defined(_Static_assert) \ - ) -# define JSON_HEDLEY_STATIC_ASSERT(expr, message) _Static_assert(expr, message) -#elif \ - (defined(__cplusplus) && (__cplusplus >= 201103L)) || \ - JSON_HEDLEY_MSVC_VERSION_CHECK(16,0,0) -# define JSON_HEDLEY_STATIC_ASSERT(expr, message) JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_(static_assert(expr, message)) -#else -# define JSON_HEDLEY_STATIC_ASSERT(expr, message) -#endif - -#if defined(JSON_HEDLEY_NULL) - #undef JSON_HEDLEY_NULL -#endif -#if defined(__cplusplus) - #if __cplusplus >= 201103L - #define JSON_HEDLEY_NULL JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_(nullptr) - #elif defined(NULL) - #define JSON_HEDLEY_NULL NULL - #else - #define JSON_HEDLEY_NULL JSON_HEDLEY_STATIC_CAST(void*, 0) - #endif -#elif defined(NULL) - #define JSON_HEDLEY_NULL NULL -#else - #define JSON_HEDLEY_NULL ((void*) 0) -#endif - -#if defined(JSON_HEDLEY_MESSAGE) - #undef JSON_HEDLEY_MESSAGE -#endif -#if JSON_HEDLEY_HAS_WARNING("-Wunknown-pragmas") -# define JSON_HEDLEY_MESSAGE(msg) \ - JSON_HEDLEY_DIAGNOSTIC_PUSH \ - JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS \ - JSON_HEDLEY_PRAGMA(message msg) \ - JSON_HEDLEY_DIAGNOSTIC_POP -#elif \ - JSON_HEDLEY_GCC_VERSION_CHECK(4,4,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) -# define JSON_HEDLEY_MESSAGE(msg) JSON_HEDLEY_PRAGMA(message msg) -#elif JSON_HEDLEY_CRAY_VERSION_CHECK(5,0,0) -# define JSON_HEDLEY_MESSAGE(msg) JSON_HEDLEY_PRAGMA(_CRI message msg) -#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) -# define JSON_HEDLEY_MESSAGE(msg) JSON_HEDLEY_PRAGMA(message(msg)) -#elif JSON_HEDLEY_PELLES_VERSION_CHECK(2,0,0) -# define JSON_HEDLEY_MESSAGE(msg) JSON_HEDLEY_PRAGMA(message(msg)) -#else -# define JSON_HEDLEY_MESSAGE(msg) -#endif - -#if defined(JSON_HEDLEY_WARNING) - #undef JSON_HEDLEY_WARNING -#endif -#if JSON_HEDLEY_HAS_WARNING("-Wunknown-pragmas") -# define JSON_HEDLEY_WARNING(msg) \ - JSON_HEDLEY_DIAGNOSTIC_PUSH \ - JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS \ - JSON_HEDLEY_PRAGMA(clang warning msg) \ - JSON_HEDLEY_DIAGNOSTIC_POP -#elif \ - JSON_HEDLEY_GCC_VERSION_CHECK(4,8,0) || \ - JSON_HEDLEY_PGI_VERSION_CHECK(18,4,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) -# define JSON_HEDLEY_WARNING(msg) JSON_HEDLEY_PRAGMA(GCC warning msg) -#elif JSON_HEDLEY_MSVC_VERSION_CHECK(15,0,0) -# define JSON_HEDLEY_WARNING(msg) JSON_HEDLEY_PRAGMA(message(msg)) -#else -# define JSON_HEDLEY_WARNING(msg) JSON_HEDLEY_MESSAGE(msg) -#endif - -#if defined(JSON_HEDLEY_REQUIRE) - #undef JSON_HEDLEY_REQUIRE -#endif -#if defined(JSON_HEDLEY_REQUIRE_MSG) - #undef JSON_HEDLEY_REQUIRE_MSG -#endif -#if JSON_HEDLEY_HAS_ATTRIBUTE(diagnose_if) -# if JSON_HEDLEY_HAS_WARNING("-Wgcc-compat") -# define JSON_HEDLEY_REQUIRE(expr) \ - JSON_HEDLEY_DIAGNOSTIC_PUSH \ - _Pragma("clang diagnostic ignored \"-Wgcc-compat\"") \ - __attribute__((diagnose_if(!(expr), #expr, "error"))) \ - JSON_HEDLEY_DIAGNOSTIC_POP -# define JSON_HEDLEY_REQUIRE_MSG(expr,msg) \ - JSON_HEDLEY_DIAGNOSTIC_PUSH \ - _Pragma("clang diagnostic ignored \"-Wgcc-compat\"") \ - __attribute__((diagnose_if(!(expr), msg, "error"))) \ - JSON_HEDLEY_DIAGNOSTIC_POP -# else -# define JSON_HEDLEY_REQUIRE(expr) __attribute__((diagnose_if(!(expr), #expr, "error"))) -# define JSON_HEDLEY_REQUIRE_MSG(expr,msg) __attribute__((diagnose_if(!(expr), msg, "error"))) -# endif -#else -# define JSON_HEDLEY_REQUIRE(expr) -# define JSON_HEDLEY_REQUIRE_MSG(expr,msg) -#endif - -#if defined(JSON_HEDLEY_FLAGS) - #undef JSON_HEDLEY_FLAGS -#endif -#if JSON_HEDLEY_HAS_ATTRIBUTE(flag_enum) - #define JSON_HEDLEY_FLAGS __attribute__((__flag_enum__)) -#endif - -#if defined(JSON_HEDLEY_FLAGS_CAST) - #undef JSON_HEDLEY_FLAGS_CAST -#endif -#if JSON_HEDLEY_INTEL_VERSION_CHECK(19,0,0) -# define JSON_HEDLEY_FLAGS_CAST(T, expr) (__extension__ ({ \ - JSON_HEDLEY_DIAGNOSTIC_PUSH \ - _Pragma("warning(disable:188)") \ - ((T) (expr)); \ - JSON_HEDLEY_DIAGNOSTIC_POP \ - })) -#else -# define JSON_HEDLEY_FLAGS_CAST(T, expr) JSON_HEDLEY_STATIC_CAST(T, expr) -#endif - -#if defined(JSON_HEDLEY_EMPTY_BASES) - #undef JSON_HEDLEY_EMPTY_BASES -#endif -#if JSON_HEDLEY_MSVC_VERSION_CHECK(19,0,23918) && !JSON_HEDLEY_MSVC_VERSION_CHECK(20,0,0) - #define JSON_HEDLEY_EMPTY_BASES __declspec(empty_bases) -#else - #define JSON_HEDLEY_EMPTY_BASES -#endif - -/* Remaining macros are deprecated. */ - -#if defined(JSON_HEDLEY_GCC_NOT_CLANG_VERSION_CHECK) - #undef JSON_HEDLEY_GCC_NOT_CLANG_VERSION_CHECK -#endif -#if defined(__clang__) - #define JSON_HEDLEY_GCC_NOT_CLANG_VERSION_CHECK(major,minor,patch) (0) -#else - #define JSON_HEDLEY_GCC_NOT_CLANG_VERSION_CHECK(major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) -#endif - -#if defined(JSON_HEDLEY_CLANG_HAS_ATTRIBUTE) - #undef JSON_HEDLEY_CLANG_HAS_ATTRIBUTE -#endif -#define JSON_HEDLEY_CLANG_HAS_ATTRIBUTE(attribute) JSON_HEDLEY_HAS_ATTRIBUTE(attribute) - -#if defined(JSON_HEDLEY_CLANG_HAS_CPP_ATTRIBUTE) - #undef JSON_HEDLEY_CLANG_HAS_CPP_ATTRIBUTE -#endif -#define JSON_HEDLEY_CLANG_HAS_CPP_ATTRIBUTE(attribute) JSON_HEDLEY_HAS_CPP_ATTRIBUTE(attribute) - -#if defined(JSON_HEDLEY_CLANG_HAS_BUILTIN) - #undef JSON_HEDLEY_CLANG_HAS_BUILTIN -#endif -#define JSON_HEDLEY_CLANG_HAS_BUILTIN(builtin) JSON_HEDLEY_HAS_BUILTIN(builtin) - -#if defined(JSON_HEDLEY_CLANG_HAS_FEATURE) - #undef JSON_HEDLEY_CLANG_HAS_FEATURE -#endif -#define JSON_HEDLEY_CLANG_HAS_FEATURE(feature) JSON_HEDLEY_HAS_FEATURE(feature) - -#if defined(JSON_HEDLEY_CLANG_HAS_EXTENSION) - #undef JSON_HEDLEY_CLANG_HAS_EXTENSION -#endif -#define JSON_HEDLEY_CLANG_HAS_EXTENSION(extension) JSON_HEDLEY_HAS_EXTENSION(extension) - -#if defined(JSON_HEDLEY_CLANG_HAS_DECLSPEC_DECLSPEC_ATTRIBUTE) - #undef JSON_HEDLEY_CLANG_HAS_DECLSPEC_DECLSPEC_ATTRIBUTE -#endif -#define JSON_HEDLEY_CLANG_HAS_DECLSPEC_ATTRIBUTE(attribute) JSON_HEDLEY_HAS_DECLSPEC_ATTRIBUTE(attribute) - -#if defined(JSON_HEDLEY_CLANG_HAS_WARNING) - #undef JSON_HEDLEY_CLANG_HAS_WARNING -#endif -#define JSON_HEDLEY_CLANG_HAS_WARNING(warning) JSON_HEDLEY_HAS_WARNING(warning) - -#endif /* !defined(JSON_HEDLEY_VERSION) || (JSON_HEDLEY_VERSION < X) */ - - -// This file contains all internal macro definitions -// You MUST include macro_unscope.hpp at the end of json.hpp to undef all of them - -// exclude unsupported compilers -#if !defined(JSON_SKIP_UNSUPPORTED_COMPILER_CHECK) - #if defined(__clang__) - #if (__clang_major__ * 10000 + __clang_minor__ * 100 + __clang_patchlevel__) < 30400 - #error "unsupported Clang version - see https://github.com/nlohmann/json#supported-compilers" - #endif - #elif defined(__GNUC__) && !(defined(__ICC) || defined(__INTEL_COMPILER)) - #if (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) < 40800 - #error "unsupported GCC version - see https://github.com/nlohmann/json#supported-compilers" - #endif - #endif -#endif - -// C++ language standard detection -#if (defined(__cplusplus) && __cplusplus >= 202002L) || (defined(_MSVC_LANG) && _MSVC_LANG >= 202002L) - #define JSON_HAS_CPP_20 - #define JSON_HAS_CPP_17 - #define JSON_HAS_CPP_14 -#elif (defined(__cplusplus) && __cplusplus >= 201703L) || (defined(_HAS_CXX17) && _HAS_CXX17 == 1) // fix for issue #464 - #define JSON_HAS_CPP_17 - #define JSON_HAS_CPP_14 -#elif (defined(__cplusplus) && __cplusplus >= 201402L) || (defined(_HAS_CXX14) && _HAS_CXX14 == 1) - #define JSON_HAS_CPP_14 -#endif - -// disable float-equal warnings on GCC/clang -#if defined(__clang__) || defined(__GNUC__) || defined(__GNUG__) - #pragma GCC diagnostic push - #pragma GCC diagnostic ignored "-Wfloat-equal" -#endif - -// disable documentation warnings on clang -#if defined(__clang__) - #pragma GCC diagnostic push - #pragma GCC diagnostic ignored "-Wdocumentation" -#endif - -// allow to disable exceptions -#if (defined(__cpp_exceptions) || defined(__EXCEPTIONS) || defined(_CPPUNWIND)) && !defined(JSON_NOEXCEPTION) - #define JSON_THROW(exception) throw exception - #define JSON_TRY try - #define JSON_CATCH(exception) catch(exception) - #define JSON_INTERNAL_CATCH(exception) catch(exception) -#else - #include - #define JSON_THROW(exception) std::abort() - #define JSON_TRY if(true) - #define JSON_CATCH(exception) if(false) - #define JSON_INTERNAL_CATCH(exception) if(false) -#endif - -// override exception macros -#if defined(JSON_THROW_USER) - #undef JSON_THROW - #define JSON_THROW JSON_THROW_USER -#endif -#if defined(JSON_TRY_USER) - #undef JSON_TRY - #define JSON_TRY JSON_TRY_USER -#endif -#if defined(JSON_CATCH_USER) - #undef JSON_CATCH - #define JSON_CATCH JSON_CATCH_USER - #undef JSON_INTERNAL_CATCH - #define JSON_INTERNAL_CATCH JSON_CATCH_USER -#endif -#if defined(JSON_INTERNAL_CATCH_USER) - #undef JSON_INTERNAL_CATCH - #define JSON_INTERNAL_CATCH JSON_INTERNAL_CATCH_USER -#endif - -// allow to override assert -#if !defined(JSON_ASSERT) - #include // assert - #define JSON_ASSERT(x) assert(x) -#endif - -/*! -@brief macro to briefly define a mapping between an enum and JSON -@def NLOHMANN_JSON_SERIALIZE_ENUM -@since version 3.4.0 -*/ -#define NLOHMANN_JSON_SERIALIZE_ENUM(ENUM_TYPE, ...) \ - template \ - inline void to_json(BasicJsonType& j, const ENUM_TYPE& e) \ - { \ - static_assert(std::is_enum::value, #ENUM_TYPE " must be an enum!"); \ - static const std::pair m[] = __VA_ARGS__; \ - auto it = std::find_if(std::begin(m), std::end(m), \ - [e](const std::pair& ej_pair) -> bool \ - { \ - return ej_pair.first == e; \ - }); \ - j = ((it != std::end(m)) ? it : std::begin(m))->second; \ - } \ - template \ - inline void from_json(const BasicJsonType& j, ENUM_TYPE& e) \ - { \ - static_assert(std::is_enum::value, #ENUM_TYPE " must be an enum!"); \ - static const std::pair m[] = __VA_ARGS__; \ - auto it = std::find_if(std::begin(m), std::end(m), \ - [&j](const std::pair& ej_pair) -> bool \ - { \ - return ej_pair.second == j; \ - }); \ - e = ((it != std::end(m)) ? it : std::begin(m))->first; \ - } - -// Ugly macros to avoid uglier copy-paste when specializing basic_json. They -// may be removed in the future once the class is split. - -#define NLOHMANN_BASIC_JSON_TPL_DECLARATION \ - template class ObjectType, \ - template class ArrayType, \ - class StringType, class BooleanType, class NumberIntegerType, \ - class NumberUnsignedType, class NumberFloatType, \ - template class AllocatorType, \ - template class JSONSerializer, \ - class BinaryType> - -#define NLOHMANN_BASIC_JSON_TPL \ - basic_json - -// Macros to simplify conversion from/to types - -#define NLOHMANN_JSON_EXPAND( x ) x -#define NLOHMANN_JSON_GET_MACRO(_1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16, _17, _18, _19, _20, _21, _22, _23, _24, _25, _26, _27, _28, _29, _30, _31, _32, _33, _34, _35, _36, _37, _38, _39, _40, _41, _42, _43, _44, _45, _46, _47, _48, _49, _50, _51, _52, _53, _54, _55, _56, _57, _58, _59, _60, _61, _62, _63, _64, NAME,...) NAME -#define NLOHMANN_JSON_PASTE(...) NLOHMANN_JSON_EXPAND(NLOHMANN_JSON_GET_MACRO(__VA_ARGS__, \ - NLOHMANN_JSON_PASTE64, \ - NLOHMANN_JSON_PASTE63, \ - NLOHMANN_JSON_PASTE62, \ - NLOHMANN_JSON_PASTE61, \ - NLOHMANN_JSON_PASTE60, \ - NLOHMANN_JSON_PASTE59, \ - NLOHMANN_JSON_PASTE58, \ - NLOHMANN_JSON_PASTE57, \ - NLOHMANN_JSON_PASTE56, \ - NLOHMANN_JSON_PASTE55, \ - NLOHMANN_JSON_PASTE54, \ - NLOHMANN_JSON_PASTE53, \ - NLOHMANN_JSON_PASTE52, \ - NLOHMANN_JSON_PASTE51, \ - NLOHMANN_JSON_PASTE50, \ - NLOHMANN_JSON_PASTE49, \ - NLOHMANN_JSON_PASTE48, \ - NLOHMANN_JSON_PASTE47, \ - NLOHMANN_JSON_PASTE46, \ - NLOHMANN_JSON_PASTE45, \ - NLOHMANN_JSON_PASTE44, \ - NLOHMANN_JSON_PASTE43, \ - NLOHMANN_JSON_PASTE42, \ - NLOHMANN_JSON_PASTE41, \ - NLOHMANN_JSON_PASTE40, \ - NLOHMANN_JSON_PASTE39, \ - NLOHMANN_JSON_PASTE38, \ - NLOHMANN_JSON_PASTE37, \ - NLOHMANN_JSON_PASTE36, \ - NLOHMANN_JSON_PASTE35, \ - NLOHMANN_JSON_PASTE34, \ - NLOHMANN_JSON_PASTE33, \ - NLOHMANN_JSON_PASTE32, \ - NLOHMANN_JSON_PASTE31, \ - NLOHMANN_JSON_PASTE30, \ - NLOHMANN_JSON_PASTE29, \ - NLOHMANN_JSON_PASTE28, \ - NLOHMANN_JSON_PASTE27, \ - NLOHMANN_JSON_PASTE26, \ - NLOHMANN_JSON_PASTE25, \ - NLOHMANN_JSON_PASTE24, \ - NLOHMANN_JSON_PASTE23, \ - NLOHMANN_JSON_PASTE22, \ - NLOHMANN_JSON_PASTE21, \ - NLOHMANN_JSON_PASTE20, \ - NLOHMANN_JSON_PASTE19, \ - NLOHMANN_JSON_PASTE18, \ - NLOHMANN_JSON_PASTE17, \ - NLOHMANN_JSON_PASTE16, \ - NLOHMANN_JSON_PASTE15, \ - NLOHMANN_JSON_PASTE14, \ - NLOHMANN_JSON_PASTE13, \ - NLOHMANN_JSON_PASTE12, \ - NLOHMANN_JSON_PASTE11, \ - NLOHMANN_JSON_PASTE10, \ - NLOHMANN_JSON_PASTE9, \ - NLOHMANN_JSON_PASTE8, \ - NLOHMANN_JSON_PASTE7, \ - NLOHMANN_JSON_PASTE6, \ - NLOHMANN_JSON_PASTE5, \ - NLOHMANN_JSON_PASTE4, \ - NLOHMANN_JSON_PASTE3, \ - NLOHMANN_JSON_PASTE2, \ - NLOHMANN_JSON_PASTE1)(__VA_ARGS__)) -#define NLOHMANN_JSON_PASTE2(func, v1) func(v1) -#define NLOHMANN_JSON_PASTE3(func, v1, v2) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE2(func, v2) -#define NLOHMANN_JSON_PASTE4(func, v1, v2, v3) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE3(func, v2, v3) -#define NLOHMANN_JSON_PASTE5(func, v1, v2, v3, v4) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE4(func, v2, v3, v4) -#define NLOHMANN_JSON_PASTE6(func, v1, v2, v3, v4, v5) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE5(func, v2, v3, v4, v5) -#define NLOHMANN_JSON_PASTE7(func, v1, v2, v3, v4, v5, v6) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE6(func, v2, v3, v4, v5, v6) -#define NLOHMANN_JSON_PASTE8(func, v1, v2, v3, v4, v5, v6, v7) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE7(func, v2, v3, v4, v5, v6, v7) -#define NLOHMANN_JSON_PASTE9(func, v1, v2, v3, v4, v5, v6, v7, v8) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE8(func, v2, v3, v4, v5, v6, v7, v8) -#define NLOHMANN_JSON_PASTE10(func, v1, v2, v3, v4, v5, v6, v7, v8, v9) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE9(func, v2, v3, v4, v5, v6, v7, v8, v9) -#define NLOHMANN_JSON_PASTE11(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE10(func, v2, v3, v4, v5, v6, v7, v8, v9, v10) -#define NLOHMANN_JSON_PASTE12(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE11(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -#define NLOHMANN_JSON_PASTE13(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE12(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12) -#define NLOHMANN_JSON_PASTE14(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE13(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13) -#define NLOHMANN_JSON_PASTE15(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE14(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14) -#define NLOHMANN_JSON_PASTE16(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE15(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15) -#define NLOHMANN_JSON_PASTE17(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE16(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16) -#define NLOHMANN_JSON_PASTE18(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE17(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17) -#define NLOHMANN_JSON_PASTE19(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE18(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18) -#define NLOHMANN_JSON_PASTE20(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE19(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19) -#define NLOHMANN_JSON_PASTE21(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE20(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20) -#define NLOHMANN_JSON_PASTE22(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE21(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21) -#define NLOHMANN_JSON_PASTE23(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE22(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22) -#define NLOHMANN_JSON_PASTE24(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE23(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23) -#define NLOHMANN_JSON_PASTE25(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE24(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24) -#define NLOHMANN_JSON_PASTE26(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE25(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25) -#define NLOHMANN_JSON_PASTE27(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE26(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26) -#define NLOHMANN_JSON_PASTE28(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE27(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27) -#define NLOHMANN_JSON_PASTE29(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE28(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28) -#define NLOHMANN_JSON_PASTE30(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE29(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29) -#define NLOHMANN_JSON_PASTE31(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE30(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30) -#define NLOHMANN_JSON_PASTE32(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE31(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31) -#define NLOHMANN_JSON_PASTE33(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE32(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32) -#define NLOHMANN_JSON_PASTE34(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE33(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33) -#define NLOHMANN_JSON_PASTE35(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE34(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34) -#define NLOHMANN_JSON_PASTE36(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE35(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35) -#define NLOHMANN_JSON_PASTE37(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE36(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36) -#define NLOHMANN_JSON_PASTE38(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE37(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37) -#define NLOHMANN_JSON_PASTE39(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE38(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38) -#define NLOHMANN_JSON_PASTE40(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE39(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39) -#define NLOHMANN_JSON_PASTE41(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE40(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40) -#define NLOHMANN_JSON_PASTE42(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE41(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41) -#define NLOHMANN_JSON_PASTE43(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE42(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42) -#define NLOHMANN_JSON_PASTE44(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE43(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43) -#define NLOHMANN_JSON_PASTE45(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE44(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44) -#define NLOHMANN_JSON_PASTE46(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE45(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45) -#define NLOHMANN_JSON_PASTE47(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE46(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46) -#define NLOHMANN_JSON_PASTE48(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE47(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47) -#define NLOHMANN_JSON_PASTE49(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE48(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48) -#define NLOHMANN_JSON_PASTE50(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE49(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49) -#define NLOHMANN_JSON_PASTE51(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE50(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50) -#define NLOHMANN_JSON_PASTE52(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE51(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51) -#define NLOHMANN_JSON_PASTE53(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE52(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52) -#define NLOHMANN_JSON_PASTE54(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE53(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53) -#define NLOHMANN_JSON_PASTE55(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE54(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54) -#define NLOHMANN_JSON_PASTE56(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE55(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55) -#define NLOHMANN_JSON_PASTE57(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE56(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56) -#define NLOHMANN_JSON_PASTE58(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE57(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57) -#define NLOHMANN_JSON_PASTE59(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE58(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58) -#define NLOHMANN_JSON_PASTE60(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE59(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59) -#define NLOHMANN_JSON_PASTE61(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE60(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60) -#define NLOHMANN_JSON_PASTE62(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60, v61) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE61(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60, v61) -#define NLOHMANN_JSON_PASTE63(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60, v61, v62) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE62(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60, v61, v62) -#define NLOHMANN_JSON_PASTE64(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60, v61, v62, v63) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE63(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60, v61, v62, v63) - -#define NLOHMANN_JSON_TO(v1) nlohmann_json_j[#v1] = nlohmann_json_t.v1; -#define NLOHMANN_JSON_FROM(v1) nlohmann_json_j.at(#v1).get_to(nlohmann_json_t.v1); - -/*! -@brief macro -@def NLOHMANN_DEFINE_TYPE_INTRUSIVE -@since version 3.9.0 -*/ -#define NLOHMANN_DEFINE_TYPE_INTRUSIVE(Type, ...) \ - friend void to_json(nlohmann::json& nlohmann_json_j, const Type& nlohmann_json_t) { NLOHMANN_JSON_EXPAND(NLOHMANN_JSON_PASTE(NLOHMANN_JSON_TO, __VA_ARGS__)) } \ - friend void from_json(const nlohmann::json& nlohmann_json_j, Type& nlohmann_json_t) { NLOHMANN_JSON_EXPAND(NLOHMANN_JSON_PASTE(NLOHMANN_JSON_FROM, __VA_ARGS__)) } - -/*! -@brief macro -@def NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE -@since version 3.9.0 -*/ -#define NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE(Type, ...) \ - inline void to_json(nlohmann::json& nlohmann_json_j, const Type& nlohmann_json_t) { NLOHMANN_JSON_EXPAND(NLOHMANN_JSON_PASTE(NLOHMANN_JSON_TO, __VA_ARGS__)) } \ - inline void from_json(const nlohmann::json& nlohmann_json_j, Type& nlohmann_json_t) { NLOHMANN_JSON_EXPAND(NLOHMANN_JSON_PASTE(NLOHMANN_JSON_FROM, __VA_ARGS__)) } - -#ifndef JSON_USE_IMPLICIT_CONVERSIONS - #define JSON_USE_IMPLICIT_CONVERSIONS 1 -#endif - -#if JSON_USE_IMPLICIT_CONVERSIONS - #define JSON_EXPLICIT -#else - #define JSON_EXPLICIT explicit -#endif - - -namespace nlohmann -{ -namespace detail -{ -//////////////// -// exceptions // -//////////////// - -/*! -@brief general exception of the @ref basic_json class - -This class is an extension of `std::exception` objects with a member @a id for -exception ids. It is used as the base class for all exceptions thrown by the -@ref basic_json class. This class can hence be used as "wildcard" to catch -exceptions. - -Subclasses: -- @ref parse_error for exceptions indicating a parse error -- @ref invalid_iterator for exceptions indicating errors with iterators -- @ref type_error for exceptions indicating executing a member function with - a wrong type -- @ref out_of_range for exceptions indicating access out of the defined range -- @ref other_error for exceptions indicating other library errors - -@internal -@note To have nothrow-copy-constructible exceptions, we internally use - `std::runtime_error` which can cope with arbitrary-length error messages. - Intermediate strings are built with static functions and then passed to - the actual constructor. -@endinternal - -@liveexample{The following code shows how arbitrary library exceptions can be -caught.,exception} - -@since version 3.0.0 -*/ -class exception : public std::exception -{ - public: - /// returns the explanatory string - JSON_HEDLEY_RETURNS_NON_NULL - const char* what() const noexcept override - { - return m.what(); - } - - /// the id of the exception - const int id; - - protected: - JSON_HEDLEY_NON_NULL(3) - exception(int id_, const char* what_arg) : id(id_), m(what_arg) {} - - static std::string name(const std::string& ename, int id_) - { - return "[json.exception." + ename + "." + std::to_string(id_) + "] "; - } - - private: - /// an exception object as storage for error messages - std::runtime_error m; -}; - -/*! -@brief exception indicating a parse error - -This exception is thrown by the library when a parse error occurs. Parse errors -can occur during the deserialization of JSON text, CBOR, MessagePack, as well -as when using JSON Patch. - -Member @a byte holds the byte index of the last read character in the input -file. - -Exceptions have ids 1xx. - -name / id | example message | description ------------------------------- | --------------- | ------------------------- -json.exception.parse_error.101 | parse error at 2: unexpected end of input; expected string literal | This error indicates a syntax error while deserializing a JSON text. The error message describes that an unexpected token (character) was encountered, and the member @a byte indicates the error position. -json.exception.parse_error.102 | parse error at 14: missing or wrong low surrogate | JSON uses the `\uxxxx` format to describe Unicode characters. Code points above above 0xFFFF are split into two `\uxxxx` entries ("surrogate pairs"). This error indicates that the surrogate pair is incomplete or contains an invalid code point. -json.exception.parse_error.103 | parse error: code points above 0x10FFFF are invalid | Unicode supports code points up to 0x10FFFF. Code points above 0x10FFFF are invalid. -json.exception.parse_error.104 | parse error: JSON patch must be an array of objects | [RFC 6902](https://tools.ietf.org/html/rfc6902) requires a JSON Patch document to be a JSON document that represents an array of objects. -json.exception.parse_error.105 | parse error: operation must have string member 'op' | An operation of a JSON Patch document must contain exactly one "op" member, whose value indicates the operation to perform. Its value must be one of "add", "remove", "replace", "move", "copy", or "test"; other values are errors. -json.exception.parse_error.106 | parse error: array index '01' must not begin with '0' | An array index in a JSON Pointer ([RFC 6901](https://tools.ietf.org/html/rfc6901)) may be `0` or any number without a leading `0`. -json.exception.parse_error.107 | parse error: JSON pointer must be empty or begin with '/' - was: 'foo' | A JSON Pointer must be a Unicode string containing a sequence of zero or more reference tokens, each prefixed by a `/` character. -json.exception.parse_error.108 | parse error: escape character '~' must be followed with '0' or '1' | In a JSON Pointer, only `~0` and `~1` are valid escape sequences. -json.exception.parse_error.109 | parse error: array index 'one' is not a number | A JSON Pointer array index must be a number. -json.exception.parse_error.110 | parse error at 1: cannot read 2 bytes from vector | When parsing CBOR or MessagePack, the byte vector ends before the complete value has been read. -json.exception.parse_error.112 | parse error at 1: error reading CBOR; last byte: 0xF8 | Not all types of CBOR or MessagePack are supported. This exception occurs if an unsupported byte was read. -json.exception.parse_error.113 | parse error at 2: expected a CBOR string; last byte: 0x98 | While parsing a map key, a value that is not a string has been read. -json.exception.parse_error.114 | parse error: Unsupported BSON record type 0x0F | The parsing of the corresponding BSON record type is not implemented (yet). -json.exception.parse_error.115 | parse error at byte 5: syntax error while parsing UBJSON high-precision number: invalid number text: 1A | A UBJSON high-precision number could not be parsed. - -@note For an input with n bytes, 1 is the index of the first character and n+1 - is the index of the terminating null byte or the end of file. This also - holds true when reading a byte vector (CBOR or MessagePack). - -@liveexample{The following code shows how a `parse_error` exception can be -caught.,parse_error} - -@sa - @ref exception for the base class of the library exceptions -@sa - @ref invalid_iterator for exceptions indicating errors with iterators -@sa - @ref type_error for exceptions indicating executing a member function with - a wrong type -@sa - @ref out_of_range for exceptions indicating access out of the defined range -@sa - @ref other_error for exceptions indicating other library errors - -@since version 3.0.0 -*/ -class parse_error : public exception -{ - public: - /*! - @brief create a parse error exception - @param[in] id_ the id of the exception - @param[in] pos the position where the error occurred (or with - chars_read_total=0 if the position cannot be - determined) - @param[in] what_arg the explanatory string - @return parse_error object - */ - static parse_error create(int id_, const position_t& pos, const std::string& what_arg) - { - std::string w = exception::name("parse_error", id_) + "parse error" + - position_string(pos) + ": " + what_arg; - return parse_error(id_, pos.chars_read_total, w.c_str()); - } - - static parse_error create(int id_, std::size_t byte_, const std::string& what_arg) - { - std::string w = exception::name("parse_error", id_) + "parse error" + - (byte_ != 0 ? (" at byte " + std::to_string(byte_)) : "") + - ": " + what_arg; - return parse_error(id_, byte_, w.c_str()); - } - - /*! - @brief byte index of the parse error - - The byte index of the last read character in the input file. - - @note For an input with n bytes, 1 is the index of the first character and - n+1 is the index of the terminating null byte or the end of file. - This also holds true when reading a byte vector (CBOR or MessagePack). - */ - const std::size_t byte; - - private: - parse_error(int id_, std::size_t byte_, const char* what_arg) - : exception(id_, what_arg), byte(byte_) {} - - static std::string position_string(const position_t& pos) - { - return " at line " + std::to_string(pos.lines_read + 1) + - ", column " + std::to_string(pos.chars_read_current_line); - } -}; - -/*! -@brief exception indicating errors with iterators - -This exception is thrown if iterators passed to a library function do not match -the expected semantics. - -Exceptions have ids 2xx. - -name / id | example message | description ------------------------------------ | --------------- | ------------------------- -json.exception.invalid_iterator.201 | iterators are not compatible | The iterators passed to constructor @ref basic_json(InputIT first, InputIT last) are not compatible, meaning they do not belong to the same container. Therefore, the range (@a first, @a last) is invalid. -json.exception.invalid_iterator.202 | iterator does not fit current value | In an erase or insert function, the passed iterator @a pos does not belong to the JSON value for which the function was called. It hence does not define a valid position for the deletion/insertion. -json.exception.invalid_iterator.203 | iterators do not fit current value | Either iterator passed to function @ref erase(IteratorType first, IteratorType last) does not belong to the JSON value from which values shall be erased. It hence does not define a valid range to delete values from. -json.exception.invalid_iterator.204 | iterators out of range | When an iterator range for a primitive type (number, boolean, or string) is passed to a constructor or an erase function, this range has to be exactly (@ref begin(), @ref end()), because this is the only way the single stored value is expressed. All other ranges are invalid. -json.exception.invalid_iterator.205 | iterator out of range | When an iterator for a primitive type (number, boolean, or string) is passed to an erase function, the iterator has to be the @ref begin() iterator, because it is the only way to address the stored value. All other iterators are invalid. -json.exception.invalid_iterator.206 | cannot construct with iterators from null | The iterators passed to constructor @ref basic_json(InputIT first, InputIT last) belong to a JSON null value and hence to not define a valid range. -json.exception.invalid_iterator.207 | cannot use key() for non-object iterators | The key() member function can only be used on iterators belonging to a JSON object, because other types do not have a concept of a key. -json.exception.invalid_iterator.208 | cannot use operator[] for object iterators | The operator[] to specify a concrete offset cannot be used on iterators belonging to a JSON object, because JSON objects are unordered. -json.exception.invalid_iterator.209 | cannot use offsets with object iterators | The offset operators (+, -, +=, -=) cannot be used on iterators belonging to a JSON object, because JSON objects are unordered. -json.exception.invalid_iterator.210 | iterators do not fit | The iterator range passed to the insert function are not compatible, meaning they do not belong to the same container. Therefore, the range (@a first, @a last) is invalid. -json.exception.invalid_iterator.211 | passed iterators may not belong to container | The iterator range passed to the insert function must not be a subrange of the container to insert to. -json.exception.invalid_iterator.212 | cannot compare iterators of different containers | When two iterators are compared, they must belong to the same container. -json.exception.invalid_iterator.213 | cannot compare order of object iterators | The order of object iterators cannot be compared, because JSON objects are unordered. -json.exception.invalid_iterator.214 | cannot get value | Cannot get value for iterator: Either the iterator belongs to a null value or it is an iterator to a primitive type (number, boolean, or string), but the iterator is different to @ref begin(). - -@liveexample{The following code shows how an `invalid_iterator` exception can be -caught.,invalid_iterator} - -@sa - @ref exception for the base class of the library exceptions -@sa - @ref parse_error for exceptions indicating a parse error -@sa - @ref type_error for exceptions indicating executing a member function with - a wrong type -@sa - @ref out_of_range for exceptions indicating access out of the defined range -@sa - @ref other_error for exceptions indicating other library errors - -@since version 3.0.0 -*/ -class invalid_iterator : public exception -{ - public: - static invalid_iterator create(int id_, const std::string& what_arg) - { - std::string w = exception::name("invalid_iterator", id_) + what_arg; - return invalid_iterator(id_, w.c_str()); - } - - private: - JSON_HEDLEY_NON_NULL(3) - invalid_iterator(int id_, const char* what_arg) - : exception(id_, what_arg) {} -}; - -/*! -@brief exception indicating executing a member function with a wrong type - -This exception is thrown in case of a type error; that is, a library function is -executed on a JSON value whose type does not match the expected semantics. - -Exceptions have ids 3xx. - -name / id | example message | description ------------------------------ | --------------- | ------------------------- -json.exception.type_error.301 | cannot create object from initializer list | To create an object from an initializer list, the initializer list must consist only of a list of pairs whose first element is a string. When this constraint is violated, an array is created instead. -json.exception.type_error.302 | type must be object, but is array | During implicit or explicit value conversion, the JSON type must be compatible to the target type. For instance, a JSON string can only be converted into string types, but not into numbers or boolean types. -json.exception.type_error.303 | incompatible ReferenceType for get_ref, actual type is object | To retrieve a reference to a value stored in a @ref basic_json object with @ref get_ref, the type of the reference must match the value type. For instance, for a JSON array, the @a ReferenceType must be @ref array_t &. -json.exception.type_error.304 | cannot use at() with string | The @ref at() member functions can only be executed for certain JSON types. -json.exception.type_error.305 | cannot use operator[] with string | The @ref operator[] member functions can only be executed for certain JSON types. -json.exception.type_error.306 | cannot use value() with string | The @ref value() member functions can only be executed for certain JSON types. -json.exception.type_error.307 | cannot use erase() with string | The @ref erase() member functions can only be executed for certain JSON types. -json.exception.type_error.308 | cannot use push_back() with string | The @ref push_back() and @ref operator+= member functions can only be executed for certain JSON types. -json.exception.type_error.309 | cannot use insert() with | The @ref insert() member functions can only be executed for certain JSON types. -json.exception.type_error.310 | cannot use swap() with number | The @ref swap() member functions can only be executed for certain JSON types. -json.exception.type_error.311 | cannot use emplace_back() with string | The @ref emplace_back() member function can only be executed for certain JSON types. -json.exception.type_error.312 | cannot use update() with string | The @ref update() member functions can only be executed for certain JSON types. -json.exception.type_error.313 | invalid value to unflatten | The @ref unflatten function converts an object whose keys are JSON Pointers back into an arbitrary nested JSON value. The JSON Pointers must not overlap, because then the resulting value would not be well defined. -json.exception.type_error.314 | only objects can be unflattened | The @ref unflatten function only works for an object whose keys are JSON Pointers. -json.exception.type_error.315 | values in object must be primitive | The @ref unflatten function only works for an object whose keys are JSON Pointers and whose values are primitive. -json.exception.type_error.316 | invalid UTF-8 byte at index 10: 0x7E | The @ref dump function only works with UTF-8 encoded strings; that is, if you assign a `std::string` to a JSON value, make sure it is UTF-8 encoded. | -json.exception.type_error.317 | JSON value cannot be serialized to requested format | The dynamic type of the object cannot be represented in the requested serialization format (e.g. a raw `true` or `null` JSON object cannot be serialized to BSON) | - -@liveexample{The following code shows how a `type_error` exception can be -caught.,type_error} - -@sa - @ref exception for the base class of the library exceptions -@sa - @ref parse_error for exceptions indicating a parse error -@sa - @ref invalid_iterator for exceptions indicating errors with iterators -@sa - @ref out_of_range for exceptions indicating access out of the defined range -@sa - @ref other_error for exceptions indicating other library errors - -@since version 3.0.0 -*/ -class type_error : public exception -{ - public: - static type_error create(int id_, const std::string& what_arg) - { - std::string w = exception::name("type_error", id_) + what_arg; - return type_error(id_, w.c_str()); - } - - private: - JSON_HEDLEY_NON_NULL(3) - type_error(int id_, const char* what_arg) : exception(id_, what_arg) {} -}; - -/*! -@brief exception indicating access out of the defined range - -This exception is thrown in case a library function is called on an input -parameter that exceeds the expected range, for instance in case of array -indices or nonexisting object keys. - -Exceptions have ids 4xx. - -name / id | example message | description -------------------------------- | --------------- | ------------------------- -json.exception.out_of_range.401 | array index 3 is out of range | The provided array index @a i is larger than @a size-1. -json.exception.out_of_range.402 | array index '-' (3) is out of range | The special array index `-` in a JSON Pointer never describes a valid element of the array, but the index past the end. That is, it can only be used to add elements at this position, but not to read it. -json.exception.out_of_range.403 | key 'foo' not found | The provided key was not found in the JSON object. -json.exception.out_of_range.404 | unresolved reference token 'foo' | A reference token in a JSON Pointer could not be resolved. -json.exception.out_of_range.405 | JSON pointer has no parent | The JSON Patch operations 'remove' and 'add' can not be applied to the root element of the JSON value. -json.exception.out_of_range.406 | number overflow parsing '10E1000' | A parsed number could not be stored as without changing it to NaN or INF. -json.exception.out_of_range.407 | number overflow serializing '9223372036854775808' | UBJSON and BSON only support integer numbers up to 9223372036854775807. (until version 3.8.0) | -json.exception.out_of_range.408 | excessive array size: 8658170730974374167 | The size (following `#`) of an UBJSON array or object exceeds the maximal capacity. | -json.exception.out_of_range.409 | BSON key cannot contain code point U+0000 (at byte 2) | Key identifiers to be serialized to BSON cannot contain code point U+0000, since the key is stored as zero-terminated c-string | - -@liveexample{The following code shows how an `out_of_range` exception can be -caught.,out_of_range} - -@sa - @ref exception for the base class of the library exceptions -@sa - @ref parse_error for exceptions indicating a parse error -@sa - @ref invalid_iterator for exceptions indicating errors with iterators -@sa - @ref type_error for exceptions indicating executing a member function with - a wrong type -@sa - @ref other_error for exceptions indicating other library errors - -@since version 3.0.0 -*/ -class out_of_range : public exception -{ - public: - static out_of_range create(int id_, const std::string& what_arg) - { - std::string w = exception::name("out_of_range", id_) + what_arg; - return out_of_range(id_, w.c_str()); - } - - private: - JSON_HEDLEY_NON_NULL(3) - out_of_range(int id_, const char* what_arg) : exception(id_, what_arg) {} -}; - -/*! -@brief exception indicating other library errors - -This exception is thrown in case of errors that cannot be classified with the -other exception types. - -Exceptions have ids 5xx. - -name / id | example message | description ------------------------------- | --------------- | ------------------------- -json.exception.other_error.501 | unsuccessful: {"op":"test","path":"/baz", "value":"bar"} | A JSON Patch operation 'test' failed. The unsuccessful operation is also printed. - -@sa - @ref exception for the base class of the library exceptions -@sa - @ref parse_error for exceptions indicating a parse error -@sa - @ref invalid_iterator for exceptions indicating errors with iterators -@sa - @ref type_error for exceptions indicating executing a member function with - a wrong type -@sa - @ref out_of_range for exceptions indicating access out of the defined range - -@liveexample{The following code shows how an `other_error` exception can be -caught.,other_error} - -@since version 3.0.0 -*/ -class other_error : public exception -{ - public: - static other_error create(int id_, const std::string& what_arg) - { - std::string w = exception::name("other_error", id_) + what_arg; - return other_error(id_, w.c_str()); - } - - private: - JSON_HEDLEY_NON_NULL(3) - other_error(int id_, const char* what_arg) : exception(id_, what_arg) {} -}; -} // namespace detail -} // namespace nlohmann - -// #include - -// #include - - -#include // size_t -#include // conditional, enable_if, false_type, integral_constant, is_constructible, is_integral, is_same, remove_cv, remove_reference, true_type - -namespace nlohmann -{ -namespace detail -{ -// alias templates to reduce boilerplate -template -using enable_if_t = typename std::enable_if::type; - -template -using uncvref_t = typename std::remove_cv::type>::type; - -// implementation of C++14 index_sequence and affiliates -// source: https://stackoverflow.com/a/32223343 -template -struct index_sequence -{ - using type = index_sequence; - using value_type = std::size_t; - static constexpr std::size_t size() noexcept - { - return sizeof...(Ints); - } -}; - -template -struct merge_and_renumber; - -template -struct merge_and_renumber, index_sequence> - : index_sequence < I1..., (sizeof...(I1) + I2)... > {}; - -template -struct make_index_sequence - : merge_and_renumber < typename make_index_sequence < N / 2 >::type, - typename make_index_sequence < N - N / 2 >::type > {}; - -template<> struct make_index_sequence<0> : index_sequence<> {}; -template<> struct make_index_sequence<1> : index_sequence<0> {}; - -template -using index_sequence_for = make_index_sequence; - -// dispatch utility (taken from ranges-v3) -template struct priority_tag : priority_tag < N - 1 > {}; -template<> struct priority_tag<0> {}; - -// taken from ranges-v3 -template -struct static_const -{ - static constexpr T value{}; -}; - -template -constexpr T static_const::value; -} // namespace detail -} // namespace nlohmann - -// #include - - -#include // numeric_limits -#include // false_type, is_constructible, is_integral, is_same, true_type -#include // declval - -// #include - - -#include // random_access_iterator_tag - -// #include - - -namespace nlohmann -{ -namespace detail -{ -template struct make_void -{ - using type = void; -}; -template using void_t = typename make_void::type; -} // namespace detail -} // namespace nlohmann - -// #include - - -namespace nlohmann -{ -namespace detail -{ -template -struct iterator_types {}; - -template -struct iterator_types < - It, - void_t> -{ - using difference_type = typename It::difference_type; - using value_type = typename It::value_type; - using pointer = typename It::pointer; - using reference = typename It::reference; - using iterator_category = typename It::iterator_category; -}; - -// This is required as some compilers implement std::iterator_traits in a way that -// doesn't work with SFINAE. See https://github.com/nlohmann/json/issues/1341. -template -struct iterator_traits -{ -}; - -template -struct iterator_traits < T, enable_if_t < !std::is_pointer::value >> - : iterator_types -{ -}; - -template -struct iterator_traits::value>> -{ - using iterator_category = std::random_access_iterator_tag; - using value_type = T; - using difference_type = ptrdiff_t; - using pointer = T*; - using reference = T&; -}; -} // namespace detail -} // namespace nlohmann - -// #include - -// #include - -// #include - - -#include - -// #include - - -// https://en.cppreference.com/w/cpp/experimental/is_detected -namespace nlohmann -{ -namespace detail -{ -struct nonesuch -{ - nonesuch() = delete; - ~nonesuch() = delete; - nonesuch(nonesuch const&) = delete; - nonesuch(nonesuch const&&) = delete; - void operator=(nonesuch const&) = delete; - void operator=(nonesuch&&) = delete; -}; - -template class Op, - class... Args> -struct detector -{ - using value_t = std::false_type; - using type = Default; -}; - -template class Op, class... Args> -struct detector>, Op, Args...> -{ - using value_t = std::true_type; - using type = Op; -}; - -template class Op, class... Args> -using is_detected = typename detector::value_t; - -template class Op, class... Args> -using detected_t = typename detector::type; - -template class Op, class... Args> -using detected_or = detector; - -template class Op, class... Args> -using detected_or_t = typename detected_or::type; - -template class Op, class... Args> -using is_detected_exact = std::is_same>; - -template class Op, class... Args> -using is_detected_convertible = - std::is_convertible, To>; -} // namespace detail -} // namespace nlohmann - -// #include -#ifndef INCLUDE_NLOHMANN_JSON_FWD_HPP_ -#define INCLUDE_NLOHMANN_JSON_FWD_HPP_ - -#include // int64_t, uint64_t -#include // map -#include // allocator -#include // string -#include // vector - -/*! -@brief namespace for Niels Lohmann -@see https://github.com/nlohmann -@since version 1.0.0 -*/ -namespace nlohmann -{ -/*! -@brief default JSONSerializer template argument - -This serializer ignores the template arguments and uses ADL -([argument-dependent lookup](https://en.cppreference.com/w/cpp/language/adl)) -for serialization. -*/ -template -struct adl_serializer; - -template class ObjectType = - std::map, - template class ArrayType = std::vector, - class StringType = std::string, class BooleanType = bool, - class NumberIntegerType = std::int64_t, - class NumberUnsignedType = std::uint64_t, - class NumberFloatType = double, - template class AllocatorType = std::allocator, - template class JSONSerializer = - adl_serializer, - class BinaryType = std::vector> -class basic_json; - -/*! -@brief JSON Pointer - -A JSON pointer defines a string syntax for identifying a specific value -within a JSON document. It can be used with functions `at` and -`operator[]`. Furthermore, JSON pointers are the base for JSON patches. - -@sa [RFC 6901](https://tools.ietf.org/html/rfc6901) - -@since version 2.0.0 -*/ -template -class json_pointer; - -/*! -@brief default JSON class - -This type is the default specialization of the @ref basic_json class which -uses the standard template types. - -@since version 1.0.0 -*/ -using json = basic_json<>; - -template -struct ordered_map; - -/*! -@brief ordered JSON class - -This type preserves the insertion order of object keys. - -@since version 3.9.0 -*/ -using ordered_json = basic_json; - -} // namespace nlohmann - -#endif // INCLUDE_NLOHMANN_JSON_FWD_HPP_ - - -namespace nlohmann -{ -/*! -@brief detail namespace with internal helper functions - -This namespace collects functions that should not be exposed, -implementations of some @ref basic_json methods, and meta-programming helpers. - -@since version 2.1.0 -*/ -namespace detail -{ -///////////// -// helpers // -///////////// - -// Note to maintainers: -// -// Every trait in this file expects a non CV-qualified type. -// The only exceptions are in the 'aliases for detected' section -// (i.e. those of the form: decltype(T::member_function(std::declval()))) -// -// In this case, T has to be properly CV-qualified to constraint the function arguments -// (e.g. to_json(BasicJsonType&, const T&)) - -template struct is_basic_json : std::false_type {}; - -NLOHMANN_BASIC_JSON_TPL_DECLARATION -struct is_basic_json : std::true_type {}; - -////////////////////// -// json_ref helpers // -////////////////////// - -template -class json_ref; - -template -struct is_json_ref : std::false_type {}; - -template -struct is_json_ref> : std::true_type {}; - -////////////////////////// -// aliases for detected // -////////////////////////// - -template -using mapped_type_t = typename T::mapped_type; - -template -using key_type_t = typename T::key_type; - -template -using value_type_t = typename T::value_type; - -template -using difference_type_t = typename T::difference_type; - -template -using pointer_t = typename T::pointer; - -template -using reference_t = typename T::reference; - -template -using iterator_category_t = typename T::iterator_category; - -template -using iterator_t = typename T::iterator; - -template -using to_json_function = decltype(T::to_json(std::declval()...)); - -template -using from_json_function = decltype(T::from_json(std::declval()...)); - -template -using get_template_function = decltype(std::declval().template get()); - -// trait checking if JSONSerializer::from_json(json const&, udt&) exists -template -struct has_from_json : std::false_type {}; - -// trait checking if j.get is valid -// use this trait instead of std::is_constructible or std::is_convertible, -// both rely on, or make use of implicit conversions, and thus fail when T -// has several constructors/operator= (see https://github.com/nlohmann/json/issues/958) -template -struct is_getable -{ - static constexpr bool value = is_detected::value; -}; - -template -struct has_from_json < BasicJsonType, T, - enable_if_t < !is_basic_json::value >> -{ - using serializer = typename BasicJsonType::template json_serializer; - - static constexpr bool value = - is_detected_exact::value; -}; - -// This trait checks if JSONSerializer::from_json(json const&) exists -// this overload is used for non-default-constructible user-defined-types -template -struct has_non_default_from_json : std::false_type {}; - -template -struct has_non_default_from_json < BasicJsonType, T, enable_if_t < !is_basic_json::value >> -{ - using serializer = typename BasicJsonType::template json_serializer; - - static constexpr bool value = - is_detected_exact::value; -}; - -// This trait checks if BasicJsonType::json_serializer::to_json exists -// Do not evaluate the trait when T is a basic_json type, to avoid template instantiation infinite recursion. -template -struct has_to_json : std::false_type {}; - -template -struct has_to_json < BasicJsonType, T, enable_if_t < !is_basic_json::value >> -{ - using serializer = typename BasicJsonType::template json_serializer; - - static constexpr bool value = - is_detected_exact::value; -}; - - -/////////////////// -// is_ functions // -/////////////////// - -template -struct is_iterator_traits : std::false_type {}; - -template -struct is_iterator_traits> -{ - private: - using traits = iterator_traits; - - public: - static constexpr auto value = - is_detected::value && - is_detected::value && - is_detected::value && - is_detected::value && - is_detected::value; -}; - -// source: https://stackoverflow.com/a/37193089/4116453 - -template -struct is_complete_type : std::false_type {}; - -template -struct is_complete_type : std::true_type {}; - -template -struct is_compatible_object_type_impl : std::false_type {}; - -template -struct is_compatible_object_type_impl < - BasicJsonType, CompatibleObjectType, - enable_if_t < is_detected::value&& - is_detected::value >> -{ - - using object_t = typename BasicJsonType::object_t; - - // macOS's is_constructible does not play well with nonesuch... - static constexpr bool value = - std::is_constructible::value && - std::is_constructible::value; -}; - -template -struct is_compatible_object_type - : is_compatible_object_type_impl {}; - -template -struct is_constructible_object_type_impl : std::false_type {}; - -template -struct is_constructible_object_type_impl < - BasicJsonType, ConstructibleObjectType, - enable_if_t < is_detected::value&& - is_detected::value >> -{ - using object_t = typename BasicJsonType::object_t; - - static constexpr bool value = - (std::is_default_constructible::value && - (std::is_move_assignable::value || - std::is_copy_assignable::value) && - (std::is_constructible::value && - std::is_same < - typename object_t::mapped_type, - typename ConstructibleObjectType::mapped_type >::value)) || - (has_from_json::value || - has_non_default_from_json < - BasicJsonType, - typename ConstructibleObjectType::mapped_type >::value); -}; - -template -struct is_constructible_object_type - : is_constructible_object_type_impl {}; - -template -struct is_compatible_string_type_impl : std::false_type {}; - -template -struct is_compatible_string_type_impl < - BasicJsonType, CompatibleStringType, - enable_if_t::value >> -{ - static constexpr auto value = - std::is_constructible::value; -}; - -template -struct is_compatible_string_type - : is_compatible_string_type_impl {}; - -template -struct is_constructible_string_type_impl : std::false_type {}; - -template -struct is_constructible_string_type_impl < - BasicJsonType, ConstructibleStringType, - enable_if_t::value >> -{ - static constexpr auto value = - std::is_constructible::value; -}; - -template -struct is_constructible_string_type - : is_constructible_string_type_impl {}; - -template -struct is_compatible_array_type_impl : std::false_type {}; - -template -struct is_compatible_array_type_impl < - BasicJsonType, CompatibleArrayType, - enable_if_t < is_detected::value&& - is_detected::value&& -// This is needed because json_reverse_iterator has a ::iterator type... -// Therefore it is detected as a CompatibleArrayType. -// The real fix would be to have an Iterable concept. - !is_iterator_traits < - iterator_traits>::value >> -{ - static constexpr bool value = - std::is_constructible::value; -}; - -template -struct is_compatible_array_type - : is_compatible_array_type_impl {}; - -template -struct is_constructible_array_type_impl : std::false_type {}; - -template -struct is_constructible_array_type_impl < - BasicJsonType, ConstructibleArrayType, - enable_if_t::value >> - : std::true_type {}; - -template -struct is_constructible_array_type_impl < - BasicJsonType, ConstructibleArrayType, - enable_if_t < !std::is_same::value&& - std::is_default_constructible::value&& -(std::is_move_assignable::value || - std::is_copy_assignable::value)&& -is_detected::value&& -is_detected::value&& -is_complete_type < -detected_t>::value >> -{ - static constexpr bool value = - // This is needed because json_reverse_iterator has a ::iterator type, - // furthermore, std::back_insert_iterator (and other iterators) have a - // base class `iterator`... Therefore it is detected as a - // ConstructibleArrayType. The real fix would be to have an Iterable - // concept. - !is_iterator_traits>::value && - - (std::is_same::value || - has_from_json::value || - has_non_default_from_json < - BasicJsonType, typename ConstructibleArrayType::value_type >::value); -}; - -template -struct is_constructible_array_type - : is_constructible_array_type_impl {}; - -template -struct is_compatible_integer_type_impl : std::false_type {}; - -template -struct is_compatible_integer_type_impl < - RealIntegerType, CompatibleNumberIntegerType, - enable_if_t < std::is_integral::value&& - std::is_integral::value&& - !std::is_same::value >> -{ - // is there an assert somewhere on overflows? - using RealLimits = std::numeric_limits; - using CompatibleLimits = std::numeric_limits; - - static constexpr auto value = - std::is_constructible::value && - CompatibleLimits::is_integer && - RealLimits::is_signed == CompatibleLimits::is_signed; -}; - -template -struct is_compatible_integer_type - : is_compatible_integer_type_impl {}; - -template -struct is_compatible_type_impl: std::false_type {}; - -template -struct is_compatible_type_impl < - BasicJsonType, CompatibleType, - enable_if_t::value >> -{ - static constexpr bool value = - has_to_json::value; -}; - -template -struct is_compatible_type - : is_compatible_type_impl {}; - -// https://en.cppreference.com/w/cpp/types/conjunction -template struct conjunction : std::true_type { }; -template struct conjunction : B1 { }; -template -struct conjunction -: std::conditional, B1>::type {}; - -template -struct is_constructible_tuple : std::false_type {}; - -template -struct is_constructible_tuple> : conjunction...> {}; -} // namespace detail -} // namespace nlohmann - -// #include - - -#include // array -#include // size_t -#include // uint8_t -#include // string - -namespace nlohmann -{ -namespace detail -{ -/////////////////////////// -// JSON type enumeration // -/////////////////////////// - -/*! -@brief the JSON type enumeration - -This enumeration collects the different JSON types. It is internally used to -distinguish the stored values, and the functions @ref basic_json::is_null(), -@ref basic_json::is_object(), @ref basic_json::is_array(), -@ref basic_json::is_string(), @ref basic_json::is_boolean(), -@ref basic_json::is_number() (with @ref basic_json::is_number_integer(), -@ref basic_json::is_number_unsigned(), and @ref basic_json::is_number_float()), -@ref basic_json::is_discarded(), @ref basic_json::is_primitive(), and -@ref basic_json::is_structured() rely on it. - -@note There are three enumeration entries (number_integer, number_unsigned, and -number_float), because the library distinguishes these three types for numbers: -@ref basic_json::number_unsigned_t is used for unsigned integers, -@ref basic_json::number_integer_t is used for signed integers, and -@ref basic_json::number_float_t is used for floating-point numbers or to -approximate integers which do not fit in the limits of their respective type. - -@sa @ref basic_json::basic_json(const value_t value_type) -- create a JSON -value with the default value for a given type - -@since version 1.0.0 -*/ -enum class value_t : std::uint8_t -{ - null, ///< null value - object, ///< object (unordered set of name/value pairs) - array, ///< array (ordered collection of values) - string, ///< string value - boolean, ///< boolean value - number_integer, ///< number value (signed integer) - number_unsigned, ///< number value (unsigned integer) - number_float, ///< number value (floating-point) - binary, ///< binary array (ordered collection of bytes) - discarded ///< discarded by the parser callback function -}; - -/*! -@brief comparison operator for JSON types - -Returns an ordering that is similar to Python: -- order: null < boolean < number < object < array < string < binary -- furthermore, each type is not smaller than itself -- discarded values are not comparable -- binary is represented as a b"" string in python and directly comparable to a - string; however, making a binary array directly comparable with a string would - be surprising behavior in a JSON file. - -@since version 1.0.0 -*/ -inline bool operator<(const value_t lhs, const value_t rhs) noexcept -{ - static constexpr std::array order = {{ - 0 /* null */, 3 /* object */, 4 /* array */, 5 /* string */, - 1 /* boolean */, 2 /* integer */, 2 /* unsigned */, 2 /* float */, - 6 /* binary */ - } - }; - - const auto l_index = static_cast(lhs); - const auto r_index = static_cast(rhs); - return l_index < order.size() && r_index < order.size() && order[l_index] < order[r_index]; -} -} // namespace detail -} // namespace nlohmann - - -namespace nlohmann -{ -namespace detail -{ -template -void from_json(const BasicJsonType& j, typename std::nullptr_t& n) -{ - if (JSON_HEDLEY_UNLIKELY(!j.is_null())) - { - JSON_THROW(type_error::create(302, "type must be null, but is " + std::string(j.type_name()))); - } - n = nullptr; -} - -// overloads for basic_json template parameters -template < typename BasicJsonType, typename ArithmeticType, - enable_if_t < std::is_arithmetic::value&& - !std::is_same::value, - int > = 0 > -void get_arithmetic_value(const BasicJsonType& j, ArithmeticType& val) -{ - switch (static_cast(j)) - { - case value_t::number_unsigned: - { - val = static_cast(*j.template get_ptr()); - break; - } - case value_t::number_integer: - { - val = static_cast(*j.template get_ptr()); - break; - } - case value_t::number_float: - { - val = static_cast(*j.template get_ptr()); - break; - } - - default: - JSON_THROW(type_error::create(302, "type must be number, but is " + std::string(j.type_name()))); - } -} - -template -void from_json(const BasicJsonType& j, typename BasicJsonType::boolean_t& b) -{ - if (JSON_HEDLEY_UNLIKELY(!j.is_boolean())) - { - JSON_THROW(type_error::create(302, "type must be boolean, but is " + std::string(j.type_name()))); - } - b = *j.template get_ptr(); -} - -template -void from_json(const BasicJsonType& j, typename BasicJsonType::string_t& s) -{ - if (JSON_HEDLEY_UNLIKELY(!j.is_string())) - { - JSON_THROW(type_error::create(302, "type must be string, but is " + std::string(j.type_name()))); - } - s = *j.template get_ptr(); -} - -template < - typename BasicJsonType, typename ConstructibleStringType, - enable_if_t < - is_constructible_string_type::value&& - !std::is_same::value, - int > = 0 > -void from_json(const BasicJsonType& j, ConstructibleStringType& s) -{ - if (JSON_HEDLEY_UNLIKELY(!j.is_string())) - { - JSON_THROW(type_error::create(302, "type must be string, but is " + std::string(j.type_name()))); - } - - s = *j.template get_ptr(); -} - -template -void from_json(const BasicJsonType& j, typename BasicJsonType::number_float_t& val) -{ - get_arithmetic_value(j, val); -} - -template -void from_json(const BasicJsonType& j, typename BasicJsonType::number_unsigned_t& val) -{ - get_arithmetic_value(j, val); -} - -template -void from_json(const BasicJsonType& j, typename BasicJsonType::number_integer_t& val) -{ - get_arithmetic_value(j, val); -} - -template::value, int> = 0> -void from_json(const BasicJsonType& j, EnumType& e) -{ - typename std::underlying_type::type val; - get_arithmetic_value(j, val); - e = static_cast(val); -} - -// forward_list doesn't have an insert method -template::value, int> = 0> -void from_json(const BasicJsonType& j, std::forward_list& l) -{ - if (JSON_HEDLEY_UNLIKELY(!j.is_array())) - { - JSON_THROW(type_error::create(302, "type must be array, but is " + std::string(j.type_name()))); - } - l.clear(); - std::transform(j.rbegin(), j.rend(), - std::front_inserter(l), [](const BasicJsonType & i) - { - return i.template get(); - }); -} - -// valarray doesn't have an insert method -template::value, int> = 0> -void from_json(const BasicJsonType& j, std::valarray& l) -{ - if (JSON_HEDLEY_UNLIKELY(!j.is_array())) - { - JSON_THROW(type_error::create(302, "type must be array, but is " + std::string(j.type_name()))); - } - l.resize(j.size()); - std::transform(j.begin(), j.end(), std::begin(l), - [](const BasicJsonType & elem) - { - return elem.template get(); - }); -} - -template -auto from_json(const BasicJsonType& j, T (&arr)[N]) --> decltype(j.template get(), void()) -{ - for (std::size_t i = 0; i < N; ++i) - { - arr[i] = j.at(i).template get(); - } -} - -template -void from_json_array_impl(const BasicJsonType& j, typename BasicJsonType::array_t& arr, priority_tag<3> /*unused*/) -{ - arr = *j.template get_ptr(); -} - -template -auto from_json_array_impl(const BasicJsonType& j, std::array& arr, - priority_tag<2> /*unused*/) --> decltype(j.template get(), void()) -{ - for (std::size_t i = 0; i < N; ++i) - { - arr[i] = j.at(i).template get(); - } -} - -template -auto from_json_array_impl(const BasicJsonType& j, ConstructibleArrayType& arr, priority_tag<1> /*unused*/) --> decltype( - arr.reserve(std::declval()), - j.template get(), - void()) -{ - using std::end; - - ConstructibleArrayType ret; - ret.reserve(j.size()); - std::transform(j.begin(), j.end(), - std::inserter(ret, end(ret)), [](const BasicJsonType & i) - { - // get() returns *this, this won't call a from_json - // method when value_type is BasicJsonType - return i.template get(); - }); - arr = std::move(ret); -} - -template -void from_json_array_impl(const BasicJsonType& j, ConstructibleArrayType& arr, - priority_tag<0> /*unused*/) -{ - using std::end; - - ConstructibleArrayType ret; - std::transform( - j.begin(), j.end(), std::inserter(ret, end(ret)), - [](const BasicJsonType & i) - { - // get() returns *this, this won't call a from_json - // method when value_type is BasicJsonType - return i.template get(); - }); - arr = std::move(ret); -} - -template < typename BasicJsonType, typename ConstructibleArrayType, - enable_if_t < - is_constructible_array_type::value&& - !is_constructible_object_type::value&& - !is_constructible_string_type::value&& - !std::is_same::value&& - !is_basic_json::value, - int > = 0 > -auto from_json(const BasicJsonType& j, ConstructibleArrayType& arr) --> decltype(from_json_array_impl(j, arr, priority_tag<3> {}), -j.template get(), -void()) -{ - if (JSON_HEDLEY_UNLIKELY(!j.is_array())) - { - JSON_THROW(type_error::create(302, "type must be array, but is " + - std::string(j.type_name()))); - } - - from_json_array_impl(j, arr, priority_tag<3> {}); -} - -template -void from_json(const BasicJsonType& j, typename BasicJsonType::binary_t& bin) -{ - if (JSON_HEDLEY_UNLIKELY(!j.is_binary())) - { - JSON_THROW(type_error::create(302, "type must be binary, but is " + std::string(j.type_name()))); - } - - bin = *j.template get_ptr(); -} - -template::value, int> = 0> -void from_json(const BasicJsonType& j, ConstructibleObjectType& obj) -{ - if (JSON_HEDLEY_UNLIKELY(!j.is_object())) - { - JSON_THROW(type_error::create(302, "type must be object, but is " + std::string(j.type_name()))); - } - - ConstructibleObjectType ret; - auto inner_object = j.template get_ptr(); - using value_type = typename ConstructibleObjectType::value_type; - std::transform( - inner_object->begin(), inner_object->end(), - std::inserter(ret, ret.begin()), - [](typename BasicJsonType::object_t::value_type const & p) - { - return value_type(p.first, p.second.template get()); - }); - obj = std::move(ret); -} - -// overload for arithmetic types, not chosen for basic_json template arguments -// (BooleanType, etc..); note: Is it really necessary to provide explicit -// overloads for boolean_t etc. in case of a custom BooleanType which is not -// an arithmetic type? -template < typename BasicJsonType, typename ArithmeticType, - enable_if_t < - std::is_arithmetic::value&& - !std::is_same::value&& - !std::is_same::value&& - !std::is_same::value&& - !std::is_same::value, - int > = 0 > -void from_json(const BasicJsonType& j, ArithmeticType& val) -{ - switch (static_cast(j)) - { - case value_t::number_unsigned: - { - val = static_cast(*j.template get_ptr()); - break; - } - case value_t::number_integer: - { - val = static_cast(*j.template get_ptr()); - break; - } - case value_t::number_float: - { - val = static_cast(*j.template get_ptr()); - break; - } - case value_t::boolean: - { - val = static_cast(*j.template get_ptr()); - break; - } - - default: - JSON_THROW(type_error::create(302, "type must be number, but is " + std::string(j.type_name()))); - } -} - -template -void from_json(const BasicJsonType& j, std::pair& p) -{ - p = {j.at(0).template get(), j.at(1).template get()}; -} - -template -void from_json_tuple_impl(const BasicJsonType& j, Tuple& t, index_sequence /*unused*/) -{ - t = std::make_tuple(j.at(Idx).template get::type>()...); -} - -template -void from_json(const BasicJsonType& j, std::tuple& t) -{ - from_json_tuple_impl(j, t, index_sequence_for {}); -} - -template < typename BasicJsonType, typename Key, typename Value, typename Compare, typename Allocator, - typename = enable_if_t < !std::is_constructible < - typename BasicJsonType::string_t, Key >::value >> -void from_json(const BasicJsonType& j, std::map& m) -{ - if (JSON_HEDLEY_UNLIKELY(!j.is_array())) - { - JSON_THROW(type_error::create(302, "type must be array, but is " + std::string(j.type_name()))); - } - m.clear(); - for (const auto& p : j) - { - if (JSON_HEDLEY_UNLIKELY(!p.is_array())) - { - JSON_THROW(type_error::create(302, "type must be array, but is " + std::string(p.type_name()))); - } - m.emplace(p.at(0).template get(), p.at(1).template get()); - } -} - -template < typename BasicJsonType, typename Key, typename Value, typename Hash, typename KeyEqual, typename Allocator, - typename = enable_if_t < !std::is_constructible < - typename BasicJsonType::string_t, Key >::value >> -void from_json(const BasicJsonType& j, std::unordered_map& m) -{ - if (JSON_HEDLEY_UNLIKELY(!j.is_array())) - { - JSON_THROW(type_error::create(302, "type must be array, but is " + std::string(j.type_name()))); - } - m.clear(); - for (const auto& p : j) - { - if (JSON_HEDLEY_UNLIKELY(!p.is_array())) - { - JSON_THROW(type_error::create(302, "type must be array, but is " + std::string(p.type_name()))); - } - m.emplace(p.at(0).template get(), p.at(1).template get()); - } -} - -struct from_json_fn -{ - template - auto operator()(const BasicJsonType& j, T& val) const - noexcept(noexcept(from_json(j, val))) - -> decltype(from_json(j, val), void()) - { - return from_json(j, val); - } -}; -} // namespace detail - -/// namespace to hold default `from_json` function -/// to see why this is required: -/// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2015/n4381.html -namespace -{ -constexpr const auto& from_json = detail::static_const::value; -} // namespace -} // namespace nlohmann - -// #include - - -#include // copy -#include // begin, end -#include // string -#include // tuple, get -#include // is_same, is_constructible, is_floating_point, is_enum, underlying_type -#include // move, forward, declval, pair -#include // valarray -#include // vector - -// #include - - -#include // size_t -#include // input_iterator_tag -#include // string, to_string -#include // tuple_size, get, tuple_element - -// #include - -// #include - - -namespace nlohmann -{ -namespace detail -{ -template -void int_to_string( string_type& target, std::size_t value ) -{ - // For ADL - using std::to_string; - target = to_string(value); -} -template class iteration_proxy_value -{ - public: - using difference_type = std::ptrdiff_t; - using value_type = iteration_proxy_value; - using pointer = value_type * ; - using reference = value_type & ; - using iterator_category = std::input_iterator_tag; - using string_type = typename std::remove_cv< typename std::remove_reference().key() ) >::type >::type; - - private: - /// the iterator - IteratorType anchor; - /// an index for arrays (used to create key names) - std::size_t array_index = 0; - /// last stringified array index - mutable std::size_t array_index_last = 0; - /// a string representation of the array index - mutable string_type array_index_str = "0"; - /// an empty string (to return a reference for primitive values) - const string_type empty_str = ""; - - public: - explicit iteration_proxy_value(IteratorType it) noexcept : anchor(it) {} - - /// dereference operator (needed for range-based for) - iteration_proxy_value& operator*() - { - return *this; - } - - /// increment operator (needed for range-based for) - iteration_proxy_value& operator++() - { - ++anchor; - ++array_index; - - return *this; - } - - /// equality operator (needed for InputIterator) - bool operator==(const iteration_proxy_value& o) const - { - return anchor == o.anchor; - } - - /// inequality operator (needed for range-based for) - bool operator!=(const iteration_proxy_value& o) const - { - return anchor != o.anchor; - } - - /// return key of the iterator - const string_type& key() const - { - JSON_ASSERT(anchor.m_object != nullptr); - - switch (anchor.m_object->type()) - { - // use integer array index as key - case value_t::array: - { - if (array_index != array_index_last) - { - int_to_string( array_index_str, array_index ); - array_index_last = array_index; - } - return array_index_str; - } - - // use key from the object - case value_t::object: - return anchor.key(); - - // use an empty key for all primitive types - default: - return empty_str; - } - } - - /// return value of the iterator - typename IteratorType::reference value() const - { - return anchor.value(); - } -}; - -/// proxy class for the items() function -template class iteration_proxy -{ - private: - /// the container to iterate - typename IteratorType::reference container; - - public: - /// construct iteration proxy from a container - explicit iteration_proxy(typename IteratorType::reference cont) noexcept - : container(cont) {} - - /// return iterator begin (needed for range-based for) - iteration_proxy_value begin() noexcept - { - return iteration_proxy_value(container.begin()); - } - - /// return iterator end (needed for range-based for) - iteration_proxy_value end() noexcept - { - return iteration_proxy_value(container.end()); - } -}; -// Structured Bindings Support -// For further reference see https://blog.tartanllama.xyz/structured-bindings/ -// And see https://github.com/nlohmann/json/pull/1391 -template = 0> -auto get(const nlohmann::detail::iteration_proxy_value& i) -> decltype(i.key()) -{ - return i.key(); -} -// Structured Bindings Support -// For further reference see https://blog.tartanllama.xyz/structured-bindings/ -// And see https://github.com/nlohmann/json/pull/1391 -template = 0> -auto get(const nlohmann::detail::iteration_proxy_value& i) -> decltype(i.value()) -{ - return i.value(); -} -} // namespace detail -} // namespace nlohmann - -// The Addition to the STD Namespace is required to add -// Structured Bindings Support to the iteration_proxy_value class -// For further reference see https://blog.tartanllama.xyz/structured-bindings/ -// And see https://github.com/nlohmann/json/pull/1391 -namespace std -{ -#if defined(__clang__) - // Fix: https://github.com/nlohmann/json/issues/1401 - #pragma clang diagnostic push - #pragma clang diagnostic ignored "-Wmismatched-tags" -#endif -template -class tuple_size<::nlohmann::detail::iteration_proxy_value> - : public std::integral_constant {}; - -template -class tuple_element> -{ - public: - using type = decltype( - get(std::declval < - ::nlohmann::detail::iteration_proxy_value> ())); -}; -#if defined(__clang__) - #pragma clang diagnostic pop -#endif -} // namespace std - -// #include - -// #include - -// #include - - -namespace nlohmann -{ -namespace detail -{ -////////////////// -// constructors // -////////////////// - -template struct external_constructor; - -template<> -struct external_constructor -{ - template - static void construct(BasicJsonType& j, typename BasicJsonType::boolean_t b) noexcept - { - j.m_type = value_t::boolean; - j.m_value = b; - j.assert_invariant(); - } -}; - -template<> -struct external_constructor -{ - template - static void construct(BasicJsonType& j, const typename BasicJsonType::string_t& s) - { - j.m_type = value_t::string; - j.m_value = s; - j.assert_invariant(); - } - - template - static void construct(BasicJsonType& j, typename BasicJsonType::string_t&& s) - { - j.m_type = value_t::string; - j.m_value = std::move(s); - j.assert_invariant(); - } - - template < typename BasicJsonType, typename CompatibleStringType, - enable_if_t < !std::is_same::value, - int > = 0 > - static void construct(BasicJsonType& j, const CompatibleStringType& str) - { - j.m_type = value_t::string; - j.m_value.string = j.template create(str); - j.assert_invariant(); - } -}; - -template<> -struct external_constructor -{ - template - static void construct(BasicJsonType& j, const typename BasicJsonType::binary_t& b) - { - j.m_type = value_t::binary; - typename BasicJsonType::binary_t value{b}; - j.m_value = value; - j.assert_invariant(); - } - - template - static void construct(BasicJsonType& j, typename BasicJsonType::binary_t&& b) - { - j.m_type = value_t::binary; - typename BasicJsonType::binary_t value{std::move(b)}; - j.m_value = value; - j.assert_invariant(); - } -}; - -template<> -struct external_constructor -{ - template - static void construct(BasicJsonType& j, typename BasicJsonType::number_float_t val) noexcept - { - j.m_type = value_t::number_float; - j.m_value = val; - j.assert_invariant(); - } -}; - -template<> -struct external_constructor -{ - template - static void construct(BasicJsonType& j, typename BasicJsonType::number_unsigned_t val) noexcept - { - j.m_type = value_t::number_unsigned; - j.m_value = val; - j.assert_invariant(); - } -}; - -template<> -struct external_constructor -{ - template - static void construct(BasicJsonType& j, typename BasicJsonType::number_integer_t val) noexcept - { - j.m_type = value_t::number_integer; - j.m_value = val; - j.assert_invariant(); - } -}; - -template<> -struct external_constructor -{ - template - static void construct(BasicJsonType& j, const typename BasicJsonType::array_t& arr) - { - j.m_type = value_t::array; - j.m_value = arr; - j.assert_invariant(); - } - - template - static void construct(BasicJsonType& j, typename BasicJsonType::array_t&& arr) - { - j.m_type = value_t::array; - j.m_value = std::move(arr); - j.assert_invariant(); - } - - template < typename BasicJsonType, typename CompatibleArrayType, - enable_if_t < !std::is_same::value, - int > = 0 > - static void construct(BasicJsonType& j, const CompatibleArrayType& arr) - { - using std::begin; - using std::end; - j.m_type = value_t::array; - j.m_value.array = j.template create(begin(arr), end(arr)); - j.assert_invariant(); - } - - template - static void construct(BasicJsonType& j, const std::vector& arr) - { - j.m_type = value_t::array; - j.m_value = value_t::array; - j.m_value.array->reserve(arr.size()); - for (const bool x : arr) - { - j.m_value.array->push_back(x); - } - j.assert_invariant(); - } - - template::value, int> = 0> - static void construct(BasicJsonType& j, const std::valarray& arr) - { - j.m_type = value_t::array; - j.m_value = value_t::array; - j.m_value.array->resize(arr.size()); - if (arr.size() > 0) - { - std::copy(std::begin(arr), std::end(arr), j.m_value.array->begin()); - } - j.assert_invariant(); - } -}; - -template<> -struct external_constructor -{ - template - static void construct(BasicJsonType& j, const typename BasicJsonType::object_t& obj) - { - j.m_type = value_t::object; - j.m_value = obj; - j.assert_invariant(); - } - - template - static void construct(BasicJsonType& j, typename BasicJsonType::object_t&& obj) - { - j.m_type = value_t::object; - j.m_value = std::move(obj); - j.assert_invariant(); - } - - template < typename BasicJsonType, typename CompatibleObjectType, - enable_if_t < !std::is_same::value, int > = 0 > - static void construct(BasicJsonType& j, const CompatibleObjectType& obj) - { - using std::begin; - using std::end; - - j.m_type = value_t::object; - j.m_value.object = j.template create(begin(obj), end(obj)); - j.assert_invariant(); - } -}; - -///////////// -// to_json // -///////////// - -template::value, int> = 0> -void to_json(BasicJsonType& j, T b) noexcept -{ - external_constructor::construct(j, b); -} - -template::value, int> = 0> -void to_json(BasicJsonType& j, const CompatibleString& s) -{ - external_constructor::construct(j, s); -} - -template -void to_json(BasicJsonType& j, typename BasicJsonType::string_t&& s) -{ - external_constructor::construct(j, std::move(s)); -} - -template::value, int> = 0> -void to_json(BasicJsonType& j, FloatType val) noexcept -{ - external_constructor::construct(j, static_cast(val)); -} - -template::value, int> = 0> -void to_json(BasicJsonType& j, CompatibleNumberUnsignedType val) noexcept -{ - external_constructor::construct(j, static_cast(val)); -} - -template::value, int> = 0> -void to_json(BasicJsonType& j, CompatibleNumberIntegerType val) noexcept -{ - external_constructor::construct(j, static_cast(val)); -} - -template::value, int> = 0> -void to_json(BasicJsonType& j, EnumType e) noexcept -{ - using underlying_type = typename std::underlying_type::type; - external_constructor::construct(j, static_cast(e)); -} - -template -void to_json(BasicJsonType& j, const std::vector& e) -{ - external_constructor::construct(j, e); -} - -template < typename BasicJsonType, typename CompatibleArrayType, - enable_if_t < is_compatible_array_type::value&& - !is_compatible_object_type::value&& - !is_compatible_string_type::value&& - !std::is_same::value&& - !is_basic_json::value, - int > = 0 > -void to_json(BasicJsonType& j, const CompatibleArrayType& arr) -{ - external_constructor::construct(j, arr); -} - -template -void to_json(BasicJsonType& j, const typename BasicJsonType::binary_t& bin) -{ - external_constructor::construct(j, bin); -} - -template::value, int> = 0> -void to_json(BasicJsonType& j, const std::valarray& arr) -{ - external_constructor::construct(j, std::move(arr)); -} - -template -void to_json(BasicJsonType& j, typename BasicJsonType::array_t&& arr) -{ - external_constructor::construct(j, std::move(arr)); -} - -template < typename BasicJsonType, typename CompatibleObjectType, - enable_if_t < is_compatible_object_type::value&& !is_basic_json::value, int > = 0 > -void to_json(BasicJsonType& j, const CompatibleObjectType& obj) -{ - external_constructor::construct(j, obj); -} - -template -void to_json(BasicJsonType& j, typename BasicJsonType::object_t&& obj) -{ - external_constructor::construct(j, std::move(obj)); -} - -template < - typename BasicJsonType, typename T, std::size_t N, - enable_if_t < !std::is_constructible::value, - int > = 0 > -void to_json(BasicJsonType& j, const T(&arr)[N]) -{ - external_constructor::construct(j, arr); -} - -template < typename BasicJsonType, typename T1, typename T2, enable_if_t < std::is_constructible::value&& std::is_constructible::value, int > = 0 > -void to_json(BasicJsonType& j, const std::pair& p) -{ - j = { p.first, p.second }; -} - -// for https://github.com/nlohmann/json/pull/1134 -template>::value, int> = 0> -void to_json(BasicJsonType& j, const T& b) -{ - j = { {b.key(), b.value()} }; -} - -template -void to_json_tuple_impl(BasicJsonType& j, const Tuple& t, index_sequence /*unused*/) -{ - j = { std::get(t)... }; -} - -template::value, int > = 0> -void to_json(BasicJsonType& j, const T& t) -{ - to_json_tuple_impl(j, t, make_index_sequence::value> {}); -} - -struct to_json_fn -{ - template - auto operator()(BasicJsonType& j, T&& val) const noexcept(noexcept(to_json(j, std::forward(val)))) - -> decltype(to_json(j, std::forward(val)), void()) - { - return to_json(j, std::forward(val)); - } -}; -} // namespace detail - -/// namespace to hold default `to_json` function -namespace -{ -constexpr const auto& to_json = detail::static_const::value; -} // namespace -} // namespace nlohmann - - -namespace nlohmann -{ - -template -struct adl_serializer -{ - /*! - @brief convert a JSON value to any value type - - This function is usually called by the `get()` function of the - @ref basic_json class (either explicit or via conversion operators). - - @param[in] j JSON value to read from - @param[in,out] val value to write to - */ - template - static auto from_json(BasicJsonType&& j, ValueType& val) noexcept( - noexcept(::nlohmann::from_json(std::forward(j), val))) - -> decltype(::nlohmann::from_json(std::forward(j), val), void()) - { - ::nlohmann::from_json(std::forward(j), val); - } - - /*! - @brief convert any value type to a JSON value - - This function is usually called by the constructors of the @ref basic_json - class. - - @param[in,out] j JSON value to write to - @param[in] val value to read from - */ - template - static auto to_json(BasicJsonType& j, ValueType&& val) noexcept( - noexcept(::nlohmann::to_json(j, std::forward(val)))) - -> decltype(::nlohmann::to_json(j, std::forward(val)), void()) - { - ::nlohmann::to_json(j, std::forward(val)); - } -}; - -} // namespace nlohmann - -// #include - - -#include // uint8_t -#include // tie -#include // move - -namespace nlohmann -{ - -/*! -@brief an internal type for a backed binary type - -This type extends the template parameter @a BinaryType provided to `basic_json` -with a subtype used by BSON and MessagePack. This type exists so that the user -does not have to specify a type themselves with a specific naming scheme in -order to override the binary type. - -@tparam BinaryType container to store bytes (`std::vector` by - default) - -@since version 3.8.0 -*/ -template -class byte_container_with_subtype : public BinaryType -{ - public: - /// the type of the underlying container - using container_type = BinaryType; - - byte_container_with_subtype() noexcept(noexcept(container_type())) - : container_type() - {} - - byte_container_with_subtype(const container_type& b) noexcept(noexcept(container_type(b))) - : container_type(b) - {} - - byte_container_with_subtype(container_type&& b) noexcept(noexcept(container_type(std::move(b)))) - : container_type(std::move(b)) - {} - - byte_container_with_subtype(const container_type& b, std::uint8_t subtype) noexcept(noexcept(container_type(b))) - : container_type(b) - , m_subtype(subtype) - , m_has_subtype(true) - {} - - byte_container_with_subtype(container_type&& b, std::uint8_t subtype) noexcept(noexcept(container_type(std::move(b)))) - : container_type(std::move(b)) - , m_subtype(subtype) - , m_has_subtype(true) - {} - - bool operator==(const byte_container_with_subtype& rhs) const - { - return std::tie(static_cast(*this), m_subtype, m_has_subtype) == - std::tie(static_cast(rhs), rhs.m_subtype, rhs.m_has_subtype); - } - - bool operator!=(const byte_container_with_subtype& rhs) const - { - return !(rhs == *this); - } - - /*! - @brief sets the binary subtype - - Sets the binary subtype of the value, also flags a binary JSON value as - having a subtype, which has implications for serialization. - - @complexity Constant. - - @exceptionsafety No-throw guarantee: this member function never throws - exceptions. - - @sa @ref subtype() -- return the binary subtype - @sa @ref clear_subtype() -- clears the binary subtype - @sa @ref has_subtype() -- returns whether or not the binary value has a - subtype - - @since version 3.8.0 - */ - void set_subtype(std::uint8_t subtype) noexcept - { - m_subtype = subtype; - m_has_subtype = true; - } - - /*! - @brief return the binary subtype - - Returns the numerical subtype of the value if it has a subtype. If it does - not have a subtype, this function will return size_t(-1) as a sentinel - value. - - @return the numerical subtype of the binary value - - @complexity Constant. - - @exceptionsafety No-throw guarantee: this member function never throws - exceptions. - - @sa @ref set_subtype() -- sets the binary subtype - @sa @ref clear_subtype() -- clears the binary subtype - @sa @ref has_subtype() -- returns whether or not the binary value has a - subtype - - @since version 3.8.0 - */ - constexpr std::uint8_t subtype() const noexcept - { - return m_subtype; - } - - /*! - @brief return whether the value has a subtype - - @return whether the value has a subtype - - @complexity Constant. - - @exceptionsafety No-throw guarantee: this member function never throws - exceptions. - - @sa @ref subtype() -- return the binary subtype - @sa @ref set_subtype() -- sets the binary subtype - @sa @ref clear_subtype() -- clears the binary subtype - - @since version 3.8.0 - */ - constexpr bool has_subtype() const noexcept - { - return m_has_subtype; - } - - /*! - @brief clears the binary subtype - - Clears the binary subtype and flags the value as not having a subtype, which - has implications for serialization; for instance MessagePack will prefer the - bin family over the ext family. - - @complexity Constant. - - @exceptionsafety No-throw guarantee: this member function never throws - exceptions. - - @sa @ref subtype() -- return the binary subtype - @sa @ref set_subtype() -- sets the binary subtype - @sa @ref has_subtype() -- returns whether or not the binary value has a - subtype - - @since version 3.8.0 - */ - void clear_subtype() noexcept - { - m_subtype = 0; - m_has_subtype = false; - } - - private: - std::uint8_t m_subtype = 0; - bool m_has_subtype = false; -}; - -} // namespace nlohmann - -// #include - -// #include - -// #include - -// #include - - -#include // size_t, uint8_t -#include // hash - -namespace nlohmann -{ -namespace detail -{ - -// boost::hash_combine -inline std::size_t combine(std::size_t seed, std::size_t h) noexcept -{ - seed ^= h + 0x9e3779b9 + (seed << 6U) + (seed >> 2U); - return seed; -} - -/*! -@brief hash a JSON value - -The hash function tries to rely on std::hash where possible. Furthermore, the -type of the JSON value is taken into account to have different hash values for -null, 0, 0U, and false, etc. - -@tparam BasicJsonType basic_json specialization -@param j JSON value to hash -@return hash value of j -*/ -template -std::size_t hash(const BasicJsonType& j) -{ - using string_t = typename BasicJsonType::string_t; - using number_integer_t = typename BasicJsonType::number_integer_t; - using number_unsigned_t = typename BasicJsonType::number_unsigned_t; - using number_float_t = typename BasicJsonType::number_float_t; - - const auto type = static_cast(j.type()); - switch (j.type()) - { - case BasicJsonType::value_t::null: - case BasicJsonType::value_t::discarded: - { - return combine(type, 0); - } - - case BasicJsonType::value_t::object: - { - auto seed = combine(type, j.size()); - for (const auto& element : j.items()) - { - const auto h = std::hash {}(element.key()); - seed = combine(seed, h); - seed = combine(seed, hash(element.value())); - } - return seed; - } - - case BasicJsonType::value_t::array: - { - auto seed = combine(type, j.size()); - for (const auto& element : j) - { - seed = combine(seed, hash(element)); - } - return seed; - } - - case BasicJsonType::value_t::string: - { - const auto h = std::hash {}(j.template get_ref()); - return combine(type, h); - } - - case BasicJsonType::value_t::boolean: - { - const auto h = std::hash {}(j.template get()); - return combine(type, h); - } - - case BasicJsonType::value_t::number_integer: - { - const auto h = std::hash {}(j.template get()); - return combine(type, h); - } - - case nlohmann::detail::value_t::number_unsigned: - { - const auto h = std::hash {}(j.template get()); - return combine(type, h); - } - - case nlohmann::detail::value_t::number_float: - { - const auto h = std::hash {}(j.template get()); - return combine(type, h); - } - - case nlohmann::detail::value_t::binary: - { - auto seed = combine(type, j.get_binary().size()); - const auto h = std::hash {}(j.get_binary().has_subtype()); - seed = combine(seed, h); - seed = combine(seed, j.get_binary().subtype()); - for (const auto byte : j.get_binary()) - { - seed = combine(seed, std::hash {}(byte)); - } - return seed; - } - - default: // LCOV_EXCL_LINE - JSON_ASSERT(false); // LCOV_EXCL_LINE - } -} - -} // namespace detail -} // namespace nlohmann - -// #include - - -#include // generate_n -#include // array -#include // ldexp -#include // size_t -#include // uint8_t, uint16_t, uint32_t, uint64_t -#include // snprintf -#include // memcpy -#include // back_inserter -#include // numeric_limits -#include // char_traits, string -#include // make_pair, move - -// #include - -// #include - - -#include // array -#include // size_t -#include //FILE * -#include // strlen -#include // istream -#include // begin, end, iterator_traits, random_access_iterator_tag, distance, next -#include // shared_ptr, make_shared, addressof -#include // accumulate -#include // string, char_traits -#include // enable_if, is_base_of, is_pointer, is_integral, remove_pointer -#include // pair, declval - -// #include - -// #include - - -namespace nlohmann -{ -namespace detail -{ -/// the supported input formats -enum class input_format_t { json, cbor, msgpack, ubjson, bson }; - -//////////////////// -// input adapters // -//////////////////// - -/*! -Input adapter for stdio file access. This adapter read only 1 byte and do not use any - buffer. This adapter is a very low level adapter. -*/ -class file_input_adapter -{ - public: - using char_type = char; - - JSON_HEDLEY_NON_NULL(2) - explicit file_input_adapter(std::FILE* f) noexcept - : m_file(f) - {} - - // make class move-only - file_input_adapter(const file_input_adapter&) = delete; - file_input_adapter(file_input_adapter&&) = default; - file_input_adapter& operator=(const file_input_adapter&) = delete; - file_input_adapter& operator=(file_input_adapter&&) = delete; - - std::char_traits::int_type get_character() noexcept - { - return std::fgetc(m_file); - } - - private: - /// the file pointer to read from - std::FILE* m_file; -}; - - -/*! -Input adapter for a (caching) istream. Ignores a UFT Byte Order Mark at -beginning of input. Does not support changing the underlying std::streambuf -in mid-input. Maintains underlying std::istream and std::streambuf to support -subsequent use of standard std::istream operations to process any input -characters following those used in parsing the JSON input. Clears the -std::istream flags; any input errors (e.g., EOF) will be detected by the first -subsequent call for input from the std::istream. -*/ -class input_stream_adapter -{ - public: - using char_type = char; - - ~input_stream_adapter() - { - // clear stream flags; we use underlying streambuf I/O, do not - // maintain ifstream flags, except eof - if (is != nullptr) - { - is->clear(is->rdstate() & std::ios::eofbit); - } - } - - explicit input_stream_adapter(std::istream& i) - : is(&i), sb(i.rdbuf()) - {} - - // delete because of pointer members - input_stream_adapter(const input_stream_adapter&) = delete; - input_stream_adapter& operator=(input_stream_adapter&) = delete; - input_stream_adapter& operator=(input_stream_adapter&& rhs) = delete; - - input_stream_adapter(input_stream_adapter&& rhs) noexcept : is(rhs.is), sb(rhs.sb) - { - rhs.is = nullptr; - rhs.sb = nullptr; - } - - // std::istream/std::streambuf use std::char_traits::to_int_type, to - // ensure that std::char_traits::eof() and the character 0xFF do not - // end up as the same value, eg. 0xFFFFFFFF. - std::char_traits::int_type get_character() - { - auto res = sb->sbumpc(); - // set eof manually, as we don't use the istream interface. - if (JSON_HEDLEY_UNLIKELY(res == EOF)) - { - is->clear(is->rdstate() | std::ios::eofbit); - } - return res; - } - - private: - /// the associated input stream - std::istream* is = nullptr; - std::streambuf* sb = nullptr; -}; - -// General-purpose iterator-based adapter. It might not be as fast as -// theoretically possible for some containers, but it is extremely versatile. -template -class iterator_input_adapter -{ - public: - using char_type = typename std::iterator_traits::value_type; - - iterator_input_adapter(IteratorType first, IteratorType last) - : current(std::move(first)), end(std::move(last)) {} - - typename std::char_traits::int_type get_character() - { - if (JSON_HEDLEY_LIKELY(current != end)) - { - auto result = std::char_traits::to_int_type(*current); - std::advance(current, 1); - return result; - } - else - { - return std::char_traits::eof(); - } - } - - private: - IteratorType current; - IteratorType end; - - template - friend struct wide_string_input_helper; - - bool empty() const - { - return current == end; - } - -}; - - -template -struct wide_string_input_helper; - -template -struct wide_string_input_helper -{ - // UTF-32 - static void fill_buffer(BaseInputAdapter& input, - std::array::int_type, 4>& utf8_bytes, - size_t& utf8_bytes_index, - size_t& utf8_bytes_filled) - { - utf8_bytes_index = 0; - - if (JSON_HEDLEY_UNLIKELY(input.empty())) - { - utf8_bytes[0] = std::char_traits::eof(); - utf8_bytes_filled = 1; - } - else - { - // get the current character - const auto wc = input.get_character(); - - // UTF-32 to UTF-8 encoding - if (wc < 0x80) - { - utf8_bytes[0] = static_cast::int_type>(wc); - utf8_bytes_filled = 1; - } - else if (wc <= 0x7FF) - { - utf8_bytes[0] = static_cast::int_type>(0xC0u | ((static_cast(wc) >> 6u) & 0x1Fu)); - utf8_bytes[1] = static_cast::int_type>(0x80u | (static_cast(wc) & 0x3Fu)); - utf8_bytes_filled = 2; - } - else if (wc <= 0xFFFF) - { - utf8_bytes[0] = static_cast::int_type>(0xE0u | ((static_cast(wc) >> 12u) & 0x0Fu)); - utf8_bytes[1] = static_cast::int_type>(0x80u | ((static_cast(wc) >> 6u) & 0x3Fu)); - utf8_bytes[2] = static_cast::int_type>(0x80u | (static_cast(wc) & 0x3Fu)); - utf8_bytes_filled = 3; - } - else if (wc <= 0x10FFFF) - { - utf8_bytes[0] = static_cast::int_type>(0xF0u | ((static_cast(wc) >> 18u) & 0x07u)); - utf8_bytes[1] = static_cast::int_type>(0x80u | ((static_cast(wc) >> 12u) & 0x3Fu)); - utf8_bytes[2] = static_cast::int_type>(0x80u | ((static_cast(wc) >> 6u) & 0x3Fu)); - utf8_bytes[3] = static_cast::int_type>(0x80u | (static_cast(wc) & 0x3Fu)); - utf8_bytes_filled = 4; - } - else - { - // unknown character - utf8_bytes[0] = static_cast::int_type>(wc); - utf8_bytes_filled = 1; - } - } - } -}; - -template -struct wide_string_input_helper -{ - // UTF-16 - static void fill_buffer(BaseInputAdapter& input, - std::array::int_type, 4>& utf8_bytes, - size_t& utf8_bytes_index, - size_t& utf8_bytes_filled) - { - utf8_bytes_index = 0; - - if (JSON_HEDLEY_UNLIKELY(input.empty())) - { - utf8_bytes[0] = std::char_traits::eof(); - utf8_bytes_filled = 1; - } - else - { - // get the current character - const auto wc = input.get_character(); - - // UTF-16 to UTF-8 encoding - if (wc < 0x80) - { - utf8_bytes[0] = static_cast::int_type>(wc); - utf8_bytes_filled = 1; - } - else if (wc <= 0x7FF) - { - utf8_bytes[0] = static_cast::int_type>(0xC0u | ((static_cast(wc) >> 6u))); - utf8_bytes[1] = static_cast::int_type>(0x80u | (static_cast(wc) & 0x3Fu)); - utf8_bytes_filled = 2; - } - else if (0xD800 > wc || wc >= 0xE000) - { - utf8_bytes[0] = static_cast::int_type>(0xE0u | ((static_cast(wc) >> 12u))); - utf8_bytes[1] = static_cast::int_type>(0x80u | ((static_cast(wc) >> 6u) & 0x3Fu)); - utf8_bytes[2] = static_cast::int_type>(0x80u | (static_cast(wc) & 0x3Fu)); - utf8_bytes_filled = 3; - } - else - { - if (JSON_HEDLEY_UNLIKELY(!input.empty())) - { - const auto wc2 = static_cast(input.get_character()); - const auto charcode = 0x10000u + (((static_cast(wc) & 0x3FFu) << 10u) | (wc2 & 0x3FFu)); - utf8_bytes[0] = static_cast::int_type>(0xF0u | (charcode >> 18u)); - utf8_bytes[1] = static_cast::int_type>(0x80u | ((charcode >> 12u) & 0x3Fu)); - utf8_bytes[2] = static_cast::int_type>(0x80u | ((charcode >> 6u) & 0x3Fu)); - utf8_bytes[3] = static_cast::int_type>(0x80u | (charcode & 0x3Fu)); - utf8_bytes_filled = 4; - } - else - { - utf8_bytes[0] = static_cast::int_type>(wc); - utf8_bytes_filled = 1; - } - } - } - } -}; - -// Wraps another input apdater to convert wide character types into individual bytes. -template -class wide_string_input_adapter -{ - public: - using char_type = char; - - wide_string_input_adapter(BaseInputAdapter base) - : base_adapter(base) {} - - typename std::char_traits::int_type get_character() noexcept - { - // check if buffer needs to be filled - if (utf8_bytes_index == utf8_bytes_filled) - { - fill_buffer(); - - JSON_ASSERT(utf8_bytes_filled > 0); - JSON_ASSERT(utf8_bytes_index == 0); - } - - // use buffer - JSON_ASSERT(utf8_bytes_filled > 0); - JSON_ASSERT(utf8_bytes_index < utf8_bytes_filled); - return utf8_bytes[utf8_bytes_index++]; - } - - private: - BaseInputAdapter base_adapter; - - template - void fill_buffer() - { - wide_string_input_helper::fill_buffer(base_adapter, utf8_bytes, utf8_bytes_index, utf8_bytes_filled); - } - - /// a buffer for UTF-8 bytes - std::array::int_type, 4> utf8_bytes = {{0, 0, 0, 0}}; - - /// index to the utf8_codes array for the next valid byte - std::size_t utf8_bytes_index = 0; - /// number of valid bytes in the utf8_codes array - std::size_t utf8_bytes_filled = 0; -}; - - -template -struct iterator_input_adapter_factory -{ - using iterator_type = IteratorType; - using char_type = typename std::iterator_traits::value_type; - using adapter_type = iterator_input_adapter; - - static adapter_type create(IteratorType first, IteratorType last) - { - return adapter_type(std::move(first), std::move(last)); - } -}; - -template -struct is_iterator_of_multibyte -{ - using value_type = typename std::iterator_traits::value_type; - enum - { - value = sizeof(value_type) > 1 - }; -}; - -template -struct iterator_input_adapter_factory::value>> -{ - using iterator_type = IteratorType; - using char_type = typename std::iterator_traits::value_type; - using base_adapter_type = iterator_input_adapter; - using adapter_type = wide_string_input_adapter; - - static adapter_type create(IteratorType first, IteratorType last) - { - return adapter_type(base_adapter_type(std::move(first), std::move(last))); - } -}; - -// General purpose iterator-based input -template -typename iterator_input_adapter_factory::adapter_type input_adapter(IteratorType first, IteratorType last) -{ - using factory_type = iterator_input_adapter_factory; - return factory_type::create(first, last); -} - -// Convenience shorthand from container to iterator -template -auto input_adapter(const ContainerType& container) -> decltype(input_adapter(begin(container), end(container))) -{ - // Enable ADL - using std::begin; - using std::end; - - return input_adapter(begin(container), end(container)); -} - -// Special cases with fast paths -inline file_input_adapter input_adapter(std::FILE* file) -{ - return file_input_adapter(file); -} - -inline input_stream_adapter input_adapter(std::istream& stream) -{ - return input_stream_adapter(stream); -} - -inline input_stream_adapter input_adapter(std::istream&& stream) -{ - return input_stream_adapter(stream); -} - -using contiguous_bytes_input_adapter = decltype(input_adapter(std::declval(), std::declval())); - -// Null-delimited strings, and the like. -template < typename CharT, - typename std::enable_if < - std::is_pointer::value&& - !std::is_array::value&& - std::is_integral::type>::value&& - sizeof(typename std::remove_pointer::type) == 1, - int >::type = 0 > -contiguous_bytes_input_adapter input_adapter(CharT b) -{ - auto length = std::strlen(reinterpret_cast(b)); - const auto* ptr = reinterpret_cast(b); - return input_adapter(ptr, ptr + length); -} - -template -auto input_adapter(T (&array)[N]) -> decltype(input_adapter(array, array + N)) -{ - return input_adapter(array, array + N); -} - -// This class only handles inputs of input_buffer_adapter type. -// It's required so that expressions like {ptr, len} can be implicitely casted -// to the correct adapter. -class span_input_adapter -{ - public: - template < typename CharT, - typename std::enable_if < - std::is_pointer::value&& - std::is_integral::type>::value&& - sizeof(typename std::remove_pointer::type) == 1, - int >::type = 0 > - span_input_adapter(CharT b, std::size_t l) - : ia(reinterpret_cast(b), reinterpret_cast(b) + l) {} - - template::iterator_category, std::random_access_iterator_tag>::value, - int>::type = 0> - span_input_adapter(IteratorType first, IteratorType last) - : ia(input_adapter(first, last)) {} - - contiguous_bytes_input_adapter&& get() - { - return std::move(ia); - } - - private: - contiguous_bytes_input_adapter ia; -}; -} // namespace detail -} // namespace nlohmann - -// #include - - -#include -#include // string -#include // move -#include // vector - -// #include - -// #include - - -namespace nlohmann -{ - -/*! -@brief SAX interface - -This class describes the SAX interface used by @ref nlohmann::json::sax_parse. -Each function is called in different situations while the input is parsed. The -boolean return value informs the parser whether to continue processing the -input. -*/ -template -struct json_sax -{ - using number_integer_t = typename BasicJsonType::number_integer_t; - using number_unsigned_t = typename BasicJsonType::number_unsigned_t; - using number_float_t = typename BasicJsonType::number_float_t; - using string_t = typename BasicJsonType::string_t; - using binary_t = typename BasicJsonType::binary_t; - - /*! - @brief a null value was read - @return whether parsing should proceed - */ - virtual bool null() = 0; - - /*! - @brief a boolean value was read - @param[in] val boolean value - @return whether parsing should proceed - */ - virtual bool boolean(bool val) = 0; - - /*! - @brief an integer number was read - @param[in] val integer value - @return whether parsing should proceed - */ - virtual bool number_integer(number_integer_t val) = 0; - - /*! - @brief an unsigned integer number was read - @param[in] val unsigned integer value - @return whether parsing should proceed - */ - virtual bool number_unsigned(number_unsigned_t val) = 0; - - /*! - @brief an floating-point number was read - @param[in] val floating-point value - @param[in] s raw token value - @return whether parsing should proceed - */ - virtual bool number_float(number_float_t val, const string_t& s) = 0; - - /*! - @brief a string was read - @param[in] val string value - @return whether parsing should proceed - @note It is safe to move the passed string. - */ - virtual bool string(string_t& val) = 0; - - /*! - @brief a binary string was read - @param[in] val binary value - @return whether parsing should proceed - @note It is safe to move the passed binary. - */ - virtual bool binary(binary_t& val) = 0; - - /*! - @brief the beginning of an object was read - @param[in] elements number of object elements or -1 if unknown - @return whether parsing should proceed - @note binary formats may report the number of elements - */ - virtual bool start_object(std::size_t elements) = 0; - - /*! - @brief an object key was read - @param[in] val object key - @return whether parsing should proceed - @note It is safe to move the passed string. - */ - virtual bool key(string_t& val) = 0; - - /*! - @brief the end of an object was read - @return whether parsing should proceed - */ - virtual bool end_object() = 0; - - /*! - @brief the beginning of an array was read - @param[in] elements number of array elements or -1 if unknown - @return whether parsing should proceed - @note binary formats may report the number of elements - */ - virtual bool start_array(std::size_t elements) = 0; - - /*! - @brief the end of an array was read - @return whether parsing should proceed - */ - virtual bool end_array() = 0; - - /*! - @brief a parse error occurred - @param[in] position the position in the input where the error occurs - @param[in] last_token the last read token - @param[in] ex an exception object describing the error - @return whether parsing should proceed (must return false) - */ - virtual bool parse_error(std::size_t position, - const std::string& last_token, - const detail::exception& ex) = 0; - - virtual ~json_sax() = default; -}; - - -namespace detail -{ -/*! -@brief SAX implementation to create a JSON value from SAX events - -This class implements the @ref json_sax interface and processes the SAX events -to create a JSON value which makes it basically a DOM parser. The structure or -hierarchy of the JSON value is managed by the stack `ref_stack` which contains -a pointer to the respective array or object for each recursion depth. - -After successful parsing, the value that is passed by reference to the -constructor contains the parsed value. - -@tparam BasicJsonType the JSON type -*/ -template -class json_sax_dom_parser -{ - public: - using number_integer_t = typename BasicJsonType::number_integer_t; - using number_unsigned_t = typename BasicJsonType::number_unsigned_t; - using number_float_t = typename BasicJsonType::number_float_t; - using string_t = typename BasicJsonType::string_t; - using binary_t = typename BasicJsonType::binary_t; - - /*! - @param[in, out] r reference to a JSON value that is manipulated while - parsing - @param[in] allow_exceptions_ whether parse errors yield exceptions - */ - explicit json_sax_dom_parser(BasicJsonType& r, const bool allow_exceptions_ = true) - : root(r), allow_exceptions(allow_exceptions_) - {} - - // make class move-only - json_sax_dom_parser(const json_sax_dom_parser&) = delete; - json_sax_dom_parser(json_sax_dom_parser&&) = default; - json_sax_dom_parser& operator=(const json_sax_dom_parser&) = delete; - json_sax_dom_parser& operator=(json_sax_dom_parser&&) = default; - ~json_sax_dom_parser() = default; - - bool null() - { - handle_value(nullptr); - return true; - } - - bool boolean(bool val) - { - handle_value(val); - return true; - } - - bool number_integer(number_integer_t val) - { - handle_value(val); - return true; - } - - bool number_unsigned(number_unsigned_t val) - { - handle_value(val); - return true; - } - - bool number_float(number_float_t val, const string_t& /*unused*/) - { - handle_value(val); - return true; - } - - bool string(string_t& val) - { - handle_value(val); - return true; - } - - bool binary(binary_t& val) - { - handle_value(std::move(val)); - return true; - } - - bool start_object(std::size_t len) - { - ref_stack.push_back(handle_value(BasicJsonType::value_t::object)); - - if (JSON_HEDLEY_UNLIKELY(len != std::size_t(-1) && len > ref_stack.back()->max_size())) - { - JSON_THROW(out_of_range::create(408, - "excessive object size: " + std::to_string(len))); - } - - return true; - } - - bool key(string_t& val) - { - // add null at given key and store the reference for later - object_element = &(ref_stack.back()->m_value.object->operator[](val)); - return true; - } - - bool end_object() - { - ref_stack.pop_back(); - return true; - } - - bool start_array(std::size_t len) - { - ref_stack.push_back(handle_value(BasicJsonType::value_t::array)); - - if (JSON_HEDLEY_UNLIKELY(len != std::size_t(-1) && len > ref_stack.back()->max_size())) - { - JSON_THROW(out_of_range::create(408, - "excessive array size: " + std::to_string(len))); - } - - return true; - } - - bool end_array() - { - ref_stack.pop_back(); - return true; - } - - template - bool parse_error(std::size_t /*unused*/, const std::string& /*unused*/, - const Exception& ex) - { - errored = true; - static_cast(ex); - if (allow_exceptions) - { - JSON_THROW(ex); - } - return false; - } - - constexpr bool is_errored() const - { - return errored; - } - - private: - /*! - @invariant If the ref stack is empty, then the passed value will be the new - root. - @invariant If the ref stack contains a value, then it is an array or an - object to which we can add elements - */ - template - JSON_HEDLEY_RETURNS_NON_NULL - BasicJsonType* handle_value(Value&& v) - { - if (ref_stack.empty()) - { - root = BasicJsonType(std::forward(v)); - return &root; - } - - JSON_ASSERT(ref_stack.back()->is_array() || ref_stack.back()->is_object()); - - if (ref_stack.back()->is_array()) - { - ref_stack.back()->m_value.array->emplace_back(std::forward(v)); - return &(ref_stack.back()->m_value.array->back()); - } - - JSON_ASSERT(ref_stack.back()->is_object()); - JSON_ASSERT(object_element); - *object_element = BasicJsonType(std::forward(v)); - return object_element; - } - - /// the parsed JSON value - BasicJsonType& root; - /// stack to model hierarchy of values - std::vector ref_stack {}; - /// helper to hold the reference for the next object element - BasicJsonType* object_element = nullptr; - /// whether a syntax error occurred - bool errored = false; - /// whether to throw exceptions in case of errors - const bool allow_exceptions = true; -}; - -template -class json_sax_dom_callback_parser -{ - public: - using number_integer_t = typename BasicJsonType::number_integer_t; - using number_unsigned_t = typename BasicJsonType::number_unsigned_t; - using number_float_t = typename BasicJsonType::number_float_t; - using string_t = typename BasicJsonType::string_t; - using binary_t = typename BasicJsonType::binary_t; - using parser_callback_t = typename BasicJsonType::parser_callback_t; - using parse_event_t = typename BasicJsonType::parse_event_t; - - json_sax_dom_callback_parser(BasicJsonType& r, - const parser_callback_t cb, - const bool allow_exceptions_ = true) - : root(r), callback(cb), allow_exceptions(allow_exceptions_) - { - keep_stack.push_back(true); - } - - // make class move-only - json_sax_dom_callback_parser(const json_sax_dom_callback_parser&) = delete; - json_sax_dom_callback_parser(json_sax_dom_callback_parser&&) = default; - json_sax_dom_callback_parser& operator=(const json_sax_dom_callback_parser&) = delete; - json_sax_dom_callback_parser& operator=(json_sax_dom_callback_parser&&) = default; - ~json_sax_dom_callback_parser() = default; - - bool null() - { - handle_value(nullptr); - return true; - } - - bool boolean(bool val) - { - handle_value(val); - return true; - } - - bool number_integer(number_integer_t val) - { - handle_value(val); - return true; - } - - bool number_unsigned(number_unsigned_t val) - { - handle_value(val); - return true; - } - - bool number_float(number_float_t val, const string_t& /*unused*/) - { - handle_value(val); - return true; - } - - bool string(string_t& val) - { - handle_value(val); - return true; - } - - bool binary(binary_t& val) - { - handle_value(std::move(val)); - return true; - } - - bool start_object(std::size_t len) - { - // check callback for object start - const bool keep = callback(static_cast(ref_stack.size()), parse_event_t::object_start, discarded); - keep_stack.push_back(keep); - - auto val = handle_value(BasicJsonType::value_t::object, true); - ref_stack.push_back(val.second); - - // check object limit - if (ref_stack.back() && JSON_HEDLEY_UNLIKELY(len != std::size_t(-1) && len > ref_stack.back()->max_size())) - { - JSON_THROW(out_of_range::create(408, "excessive object size: " + std::to_string(len))); - } - - return true; - } - - bool key(string_t& val) - { - BasicJsonType k = BasicJsonType(val); - - // check callback for key - const bool keep = callback(static_cast(ref_stack.size()), parse_event_t::key, k); - key_keep_stack.push_back(keep); - - // add discarded value at given key and store the reference for later - if (keep && ref_stack.back()) - { - object_element = &(ref_stack.back()->m_value.object->operator[](val) = discarded); - } - - return true; - } - - bool end_object() - { - if (ref_stack.back() && !callback(static_cast(ref_stack.size()) - 1, parse_event_t::object_end, *ref_stack.back())) - { - // discard object - *ref_stack.back() = discarded; - } - - JSON_ASSERT(!ref_stack.empty()); - JSON_ASSERT(!keep_stack.empty()); - ref_stack.pop_back(); - keep_stack.pop_back(); - - if (!ref_stack.empty() && ref_stack.back() && ref_stack.back()->is_structured()) - { - // remove discarded value - for (auto it = ref_stack.back()->begin(); it != ref_stack.back()->end(); ++it) - { - if (it->is_discarded()) - { - ref_stack.back()->erase(it); - break; - } - } - } - - return true; - } - - bool start_array(std::size_t len) - { - const bool keep = callback(static_cast(ref_stack.size()), parse_event_t::array_start, discarded); - keep_stack.push_back(keep); - - auto val = handle_value(BasicJsonType::value_t::array, true); - ref_stack.push_back(val.second); - - // check array limit - if (ref_stack.back() && JSON_HEDLEY_UNLIKELY(len != std::size_t(-1) && len > ref_stack.back()->max_size())) - { - JSON_THROW(out_of_range::create(408, "excessive array size: " + std::to_string(len))); - } - - return true; - } - - bool end_array() - { - bool keep = true; - - if (ref_stack.back()) - { - keep = callback(static_cast(ref_stack.size()) - 1, parse_event_t::array_end, *ref_stack.back()); - if (!keep) - { - // discard array - *ref_stack.back() = discarded; - } - } - - JSON_ASSERT(!ref_stack.empty()); - JSON_ASSERT(!keep_stack.empty()); - ref_stack.pop_back(); - keep_stack.pop_back(); - - // remove discarded value - if (!keep && !ref_stack.empty() && ref_stack.back()->is_array()) - { - ref_stack.back()->m_value.array->pop_back(); - } - - return true; - } - - template - bool parse_error(std::size_t /*unused*/, const std::string& /*unused*/, - const Exception& ex) - { - errored = true; - static_cast(ex); - if (allow_exceptions) - { - JSON_THROW(ex); - } - return false; - } - - constexpr bool is_errored() const - { - return errored; - } - - private: - /*! - @param[in] v value to add to the JSON value we build during parsing - @param[in] skip_callback whether we should skip calling the callback - function; this is required after start_array() and - start_object() SAX events, because otherwise we would call the - callback function with an empty array or object, respectively. - - @invariant If the ref stack is empty, then the passed value will be the new - root. - @invariant If the ref stack contains a value, then it is an array or an - object to which we can add elements - - @return pair of boolean (whether value should be kept) and pointer (to the - passed value in the ref_stack hierarchy; nullptr if not kept) - */ - template - std::pair handle_value(Value&& v, const bool skip_callback = false) - { - JSON_ASSERT(!keep_stack.empty()); - - // do not handle this value if we know it would be added to a discarded - // container - if (!keep_stack.back()) - { - return {false, nullptr}; - } - - // create value - auto value = BasicJsonType(std::forward(v)); - - // check callback - const bool keep = skip_callback || callback(static_cast(ref_stack.size()), parse_event_t::value, value); - - // do not handle this value if we just learnt it shall be discarded - if (!keep) - { - return {false, nullptr}; - } - - if (ref_stack.empty()) - { - root = std::move(value); - return {true, &root}; - } - - // skip this value if we already decided to skip the parent - // (https://github.com/nlohmann/json/issues/971#issuecomment-413678360) - if (!ref_stack.back()) - { - return {false, nullptr}; - } - - // we now only expect arrays and objects - JSON_ASSERT(ref_stack.back()->is_array() || ref_stack.back()->is_object()); - - // array - if (ref_stack.back()->is_array()) - { - ref_stack.back()->m_value.array->push_back(std::move(value)); - return {true, &(ref_stack.back()->m_value.array->back())}; - } - - // object - JSON_ASSERT(ref_stack.back()->is_object()); - // check if we should store an element for the current key - JSON_ASSERT(!key_keep_stack.empty()); - const bool store_element = key_keep_stack.back(); - key_keep_stack.pop_back(); - - if (!store_element) - { - return {false, nullptr}; - } - - JSON_ASSERT(object_element); - *object_element = std::move(value); - return {true, object_element}; - } - - /// the parsed JSON value - BasicJsonType& root; - /// stack to model hierarchy of values - std::vector ref_stack {}; - /// stack to manage which values to keep - std::vector keep_stack {}; - /// stack to manage which object keys to keep - std::vector key_keep_stack {}; - /// helper to hold the reference for the next object element - BasicJsonType* object_element = nullptr; - /// whether a syntax error occurred - bool errored = false; - /// callback function - const parser_callback_t callback = nullptr; - /// whether to throw exceptions in case of errors - const bool allow_exceptions = true; - /// a discarded value for the callback - BasicJsonType discarded = BasicJsonType::value_t::discarded; -}; - -template -class json_sax_acceptor -{ - public: - using number_integer_t = typename BasicJsonType::number_integer_t; - using number_unsigned_t = typename BasicJsonType::number_unsigned_t; - using number_float_t = typename BasicJsonType::number_float_t; - using string_t = typename BasicJsonType::string_t; - using binary_t = typename BasicJsonType::binary_t; - - bool null() - { - return true; - } - - bool boolean(bool /*unused*/) - { - return true; - } - - bool number_integer(number_integer_t /*unused*/) - { - return true; - } - - bool number_unsigned(number_unsigned_t /*unused*/) - { - return true; - } - - bool number_float(number_float_t /*unused*/, const string_t& /*unused*/) - { - return true; - } - - bool string(string_t& /*unused*/) - { - return true; - } - - bool binary(binary_t& /*unused*/) - { - return true; - } - - bool start_object(std::size_t /*unused*/ = std::size_t(-1)) - { - return true; - } - - bool key(string_t& /*unused*/) - { - return true; - } - - bool end_object() - { - return true; - } - - bool start_array(std::size_t /*unused*/ = std::size_t(-1)) - { - return true; - } - - bool end_array() - { - return true; - } - - bool parse_error(std::size_t /*unused*/, const std::string& /*unused*/, const detail::exception& /*unused*/) - { - return false; - } -}; -} // namespace detail - -} // namespace nlohmann - -// #include - - -#include // array -#include // localeconv -#include // size_t -#include // snprintf -#include // strtof, strtod, strtold, strtoll, strtoull -#include // initializer_list -#include // char_traits, string -#include // move -#include // vector - -// #include - -// #include - -// #include - - -namespace nlohmann -{ -namespace detail -{ -/////////// -// lexer // -/////////// - -template -class lexer_base -{ - public: - /// token types for the parser - enum class token_type - { - uninitialized, ///< indicating the scanner is uninitialized - literal_true, ///< the `true` literal - literal_false, ///< the `false` literal - literal_null, ///< the `null` literal - value_string, ///< a string -- use get_string() for actual value - value_unsigned, ///< an unsigned integer -- use get_number_unsigned() for actual value - value_integer, ///< a signed integer -- use get_number_integer() for actual value - value_float, ///< an floating point number -- use get_number_float() for actual value - begin_array, ///< the character for array begin `[` - begin_object, ///< the character for object begin `{` - end_array, ///< the character for array end `]` - end_object, ///< the character for object end `}` - name_separator, ///< the name separator `:` - value_separator, ///< the value separator `,` - parse_error, ///< indicating a parse error - end_of_input, ///< indicating the end of the input buffer - literal_or_value ///< a literal or the begin of a value (only for diagnostics) - }; - - /// return name of values of type token_type (only used for errors) - JSON_HEDLEY_RETURNS_NON_NULL - JSON_HEDLEY_CONST - static const char* token_type_name(const token_type t) noexcept - { - switch (t) - { - case token_type::uninitialized: - return ""; - case token_type::literal_true: - return "true literal"; - case token_type::literal_false: - return "false literal"; - case token_type::literal_null: - return "null literal"; - case token_type::value_string: - return "string literal"; - case token_type::value_unsigned: - case token_type::value_integer: - case token_type::value_float: - return "number literal"; - case token_type::begin_array: - return "'['"; - case token_type::begin_object: - return "'{'"; - case token_type::end_array: - return "']'"; - case token_type::end_object: - return "'}'"; - case token_type::name_separator: - return "':'"; - case token_type::value_separator: - return "','"; - case token_type::parse_error: - return ""; - case token_type::end_of_input: - return "end of input"; - case token_type::literal_or_value: - return "'[', '{', or a literal"; - // LCOV_EXCL_START - default: // catch non-enum values - return "unknown token"; - // LCOV_EXCL_STOP - } - } -}; -/*! -@brief lexical analysis - -This class organizes the lexical analysis during JSON deserialization. -*/ -template -class lexer : public lexer_base -{ - using number_integer_t = typename BasicJsonType::number_integer_t; - using number_unsigned_t = typename BasicJsonType::number_unsigned_t; - using number_float_t = typename BasicJsonType::number_float_t; - using string_t = typename BasicJsonType::string_t; - using char_type = typename InputAdapterType::char_type; - using char_int_type = typename std::char_traits::int_type; - - public: - using token_type = typename lexer_base::token_type; - - explicit lexer(InputAdapterType&& adapter, bool ignore_comments_ = false) - : ia(std::move(adapter)) - , ignore_comments(ignore_comments_) - , decimal_point_char(static_cast(get_decimal_point())) - {} - - // delete because of pointer members - lexer(const lexer&) = delete; - lexer(lexer&&) = default; - lexer& operator=(lexer&) = delete; - lexer& operator=(lexer&&) = default; - ~lexer() = default; - - private: - ///////////////////// - // locales - ///////////////////// - - /// return the locale-dependent decimal point - JSON_HEDLEY_PURE - static char get_decimal_point() noexcept - { - const auto* loc = localeconv(); - JSON_ASSERT(loc != nullptr); - return (loc->decimal_point == nullptr) ? '.' : *(loc->decimal_point); - } - - ///////////////////// - // scan functions - ///////////////////// - - /*! - @brief get codepoint from 4 hex characters following `\u` - - For input "\u c1 c2 c3 c4" the codepoint is: - (c1 * 0x1000) + (c2 * 0x0100) + (c3 * 0x0010) + c4 - = (c1 << 12) + (c2 << 8) + (c3 << 4) + (c4 << 0) - - Furthermore, the possible characters '0'..'9', 'A'..'F', and 'a'..'f' - must be converted to the integers 0x0..0x9, 0xA..0xF, 0xA..0xF, resp. The - conversion is done by subtracting the offset (0x30, 0x37, and 0x57) - between the ASCII value of the character and the desired integer value. - - @return codepoint (0x0000..0xFFFF) or -1 in case of an error (e.g. EOF or - non-hex character) - */ - int get_codepoint() - { - // this function only makes sense after reading `\u` - JSON_ASSERT(current == 'u'); - int codepoint = 0; - - const auto factors = { 12u, 8u, 4u, 0u }; - for (const auto factor : factors) - { - get(); - - if (current >= '0' && current <= '9') - { - codepoint += static_cast((static_cast(current) - 0x30u) << factor); - } - else if (current >= 'A' && current <= 'F') - { - codepoint += static_cast((static_cast(current) - 0x37u) << factor); - } - else if (current >= 'a' && current <= 'f') - { - codepoint += static_cast((static_cast(current) - 0x57u) << factor); - } - else - { - return -1; - } - } - - JSON_ASSERT(0x0000 <= codepoint && codepoint <= 0xFFFF); - return codepoint; - } - - /*! - @brief check if the next byte(s) are inside a given range - - Adds the current byte and, for each passed range, reads a new byte and - checks if it is inside the range. If a violation was detected, set up an - error message and return false. Otherwise, return true. - - @param[in] ranges list of integers; interpreted as list of pairs of - inclusive lower and upper bound, respectively - - @pre The passed list @a ranges must have 2, 4, or 6 elements; that is, - 1, 2, or 3 pairs. This precondition is enforced by an assertion. - - @return true if and only if no range violation was detected - */ - bool next_byte_in_range(std::initializer_list ranges) - { - JSON_ASSERT(ranges.size() == 2 || ranges.size() == 4 || ranges.size() == 6); - add(current); - - for (auto range = ranges.begin(); range != ranges.end(); ++range) - { - get(); - if (JSON_HEDLEY_LIKELY(*range <= current && current <= *(++range))) - { - add(current); - } - else - { - error_message = "invalid string: ill-formed UTF-8 byte"; - return false; - } - } - - return true; - } - - /*! - @brief scan a string literal - - This function scans a string according to Sect. 7 of RFC 7159. While - scanning, bytes are escaped and copied into buffer token_buffer. Then the - function returns successfully, token_buffer is *not* null-terminated (as it - may contain \0 bytes), and token_buffer.size() is the number of bytes in the - string. - - @return token_type::value_string if string could be successfully scanned, - token_type::parse_error otherwise - - @note In case of errors, variable error_message contains a textual - description. - */ - token_type scan_string() - { - // reset token_buffer (ignore opening quote) - reset(); - - // we entered the function by reading an open quote - JSON_ASSERT(current == '\"'); - - while (true) - { - // get next character - switch (get()) - { - // end of file while parsing string - case std::char_traits::eof(): - { - error_message = "invalid string: missing closing quote"; - return token_type::parse_error; - } - - // closing quote - case '\"': - { - return token_type::value_string; - } - - // escapes - case '\\': - { - switch (get()) - { - // quotation mark - case '\"': - add('\"'); - break; - // reverse solidus - case '\\': - add('\\'); - break; - // solidus - case '/': - add('/'); - break; - // backspace - case 'b': - add('\b'); - break; - // form feed - case 'f': - add('\f'); - break; - // line feed - case 'n': - add('\n'); - break; - // carriage return - case 'r': - add('\r'); - break; - // tab - case 't': - add('\t'); - break; - - // unicode escapes - case 'u': - { - const int codepoint1 = get_codepoint(); - int codepoint = codepoint1; // start with codepoint1 - - if (JSON_HEDLEY_UNLIKELY(codepoint1 == -1)) - { - error_message = "invalid string: '\\u' must be followed by 4 hex digits"; - return token_type::parse_error; - } - - // check if code point is a high surrogate - if (0xD800 <= codepoint1 && codepoint1 <= 0xDBFF) - { - // expect next \uxxxx entry - if (JSON_HEDLEY_LIKELY(get() == '\\' && get() == 'u')) - { - const int codepoint2 = get_codepoint(); - - if (JSON_HEDLEY_UNLIKELY(codepoint2 == -1)) - { - error_message = "invalid string: '\\u' must be followed by 4 hex digits"; - return token_type::parse_error; - } - - // check if codepoint2 is a low surrogate - if (JSON_HEDLEY_LIKELY(0xDC00 <= codepoint2 && codepoint2 <= 0xDFFF)) - { - // overwrite codepoint - codepoint = static_cast( - // high surrogate occupies the most significant 22 bits - (static_cast(codepoint1) << 10u) - // low surrogate occupies the least significant 15 bits - + static_cast(codepoint2) - // there is still the 0xD800, 0xDC00 and 0x10000 noise - // in the result so we have to subtract with: - // (0xD800 << 10) + DC00 - 0x10000 = 0x35FDC00 - - 0x35FDC00u); - } - else - { - error_message = "invalid string: surrogate U+D800..U+DBFF must be followed by U+DC00..U+DFFF"; - return token_type::parse_error; - } - } - else - { - error_message = "invalid string: surrogate U+D800..U+DBFF must be followed by U+DC00..U+DFFF"; - return token_type::parse_error; - } - } - else - { - if (JSON_HEDLEY_UNLIKELY(0xDC00 <= codepoint1 && codepoint1 <= 0xDFFF)) - { - error_message = "invalid string: surrogate U+DC00..U+DFFF must follow U+D800..U+DBFF"; - return token_type::parse_error; - } - } - - // result of the above calculation yields a proper codepoint - JSON_ASSERT(0x00 <= codepoint && codepoint <= 0x10FFFF); - - // translate codepoint into bytes - if (codepoint < 0x80) - { - // 1-byte characters: 0xxxxxxx (ASCII) - add(static_cast(codepoint)); - } - else if (codepoint <= 0x7FF) - { - // 2-byte characters: 110xxxxx 10xxxxxx - add(static_cast(0xC0u | (static_cast(codepoint) >> 6u))); - add(static_cast(0x80u | (static_cast(codepoint) & 0x3Fu))); - } - else if (codepoint <= 0xFFFF) - { - // 3-byte characters: 1110xxxx 10xxxxxx 10xxxxxx - add(static_cast(0xE0u | (static_cast(codepoint) >> 12u))); - add(static_cast(0x80u | ((static_cast(codepoint) >> 6u) & 0x3Fu))); - add(static_cast(0x80u | (static_cast(codepoint) & 0x3Fu))); - } - else - { - // 4-byte characters: 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx - add(static_cast(0xF0u | (static_cast(codepoint) >> 18u))); - add(static_cast(0x80u | ((static_cast(codepoint) >> 12u) & 0x3Fu))); - add(static_cast(0x80u | ((static_cast(codepoint) >> 6u) & 0x3Fu))); - add(static_cast(0x80u | (static_cast(codepoint) & 0x3Fu))); - } - - break; - } - - // other characters after escape - default: - error_message = "invalid string: forbidden character after backslash"; - return token_type::parse_error; - } - - break; - } - - // invalid control characters - case 0x00: - { - error_message = "invalid string: control character U+0000 (NUL) must be escaped to \\u0000"; - return token_type::parse_error; - } - - case 0x01: - { - error_message = "invalid string: control character U+0001 (SOH) must be escaped to \\u0001"; - return token_type::parse_error; - } - - case 0x02: - { - error_message = "invalid string: control character U+0002 (STX) must be escaped to \\u0002"; - return token_type::parse_error; - } - - case 0x03: - { - error_message = "invalid string: control character U+0003 (ETX) must be escaped to \\u0003"; - return token_type::parse_error; - } - - case 0x04: - { - error_message = "invalid string: control character U+0004 (EOT) must be escaped to \\u0004"; - return token_type::parse_error; - } - - case 0x05: - { - error_message = "invalid string: control character U+0005 (ENQ) must be escaped to \\u0005"; - return token_type::parse_error; - } - - case 0x06: - { - error_message = "invalid string: control character U+0006 (ACK) must be escaped to \\u0006"; - return token_type::parse_error; - } - - case 0x07: - { - error_message = "invalid string: control character U+0007 (BEL) must be escaped to \\u0007"; - return token_type::parse_error; - } - - case 0x08: - { - error_message = "invalid string: control character U+0008 (BS) must be escaped to \\u0008 or \\b"; - return token_type::parse_error; - } - - case 0x09: - { - error_message = "invalid string: control character U+0009 (HT) must be escaped to \\u0009 or \\t"; - return token_type::parse_error; - } - - case 0x0A: - { - error_message = "invalid string: control character U+000A (LF) must be escaped to \\u000A or \\n"; - return token_type::parse_error; - } - - case 0x0B: - { - error_message = "invalid string: control character U+000B (VT) must be escaped to \\u000B"; - return token_type::parse_error; - } - - case 0x0C: - { - error_message = "invalid string: control character U+000C (FF) must be escaped to \\u000C or \\f"; - return token_type::parse_error; - } - - case 0x0D: - { - error_message = "invalid string: control character U+000D (CR) must be escaped to \\u000D or \\r"; - return token_type::parse_error; - } - - case 0x0E: - { - error_message = "invalid string: control character U+000E (SO) must be escaped to \\u000E"; - return token_type::parse_error; - } - - case 0x0F: - { - error_message = "invalid string: control character U+000F (SI) must be escaped to \\u000F"; - return token_type::parse_error; - } - - case 0x10: - { - error_message = "invalid string: control character U+0010 (DLE) must be escaped to \\u0010"; - return token_type::parse_error; - } - - case 0x11: - { - error_message = "invalid string: control character U+0011 (DC1) must be escaped to \\u0011"; - return token_type::parse_error; - } - - case 0x12: - { - error_message = "invalid string: control character U+0012 (DC2) must be escaped to \\u0012"; - return token_type::parse_error; - } - - case 0x13: - { - error_message = "invalid string: control character U+0013 (DC3) must be escaped to \\u0013"; - return token_type::parse_error; - } - - case 0x14: - { - error_message = "invalid string: control character U+0014 (DC4) must be escaped to \\u0014"; - return token_type::parse_error; - } - - case 0x15: - { - error_message = "invalid string: control character U+0015 (NAK) must be escaped to \\u0015"; - return token_type::parse_error; - } - - case 0x16: - { - error_message = "invalid string: control character U+0016 (SYN) must be escaped to \\u0016"; - return token_type::parse_error; - } - - case 0x17: - { - error_message = "invalid string: control character U+0017 (ETB) must be escaped to \\u0017"; - return token_type::parse_error; - } - - case 0x18: - { - error_message = "invalid string: control character U+0018 (CAN) must be escaped to \\u0018"; - return token_type::parse_error; - } - - case 0x19: - { - error_message = "invalid string: control character U+0019 (EM) must be escaped to \\u0019"; - return token_type::parse_error; - } - - case 0x1A: - { - error_message = "invalid string: control character U+001A (SUB) must be escaped to \\u001A"; - return token_type::parse_error; - } - - case 0x1B: - { - error_message = "invalid string: control character U+001B (ESC) must be escaped to \\u001B"; - return token_type::parse_error; - } - - case 0x1C: - { - error_message = "invalid string: control character U+001C (FS) must be escaped to \\u001C"; - return token_type::parse_error; - } - - case 0x1D: - { - error_message = "invalid string: control character U+001D (GS) must be escaped to \\u001D"; - return token_type::parse_error; - } - - case 0x1E: - { - error_message = "invalid string: control character U+001E (RS) must be escaped to \\u001E"; - return token_type::parse_error; - } - - case 0x1F: - { - error_message = "invalid string: control character U+001F (US) must be escaped to \\u001F"; - return token_type::parse_error; - } - - // U+0020..U+007F (except U+0022 (quote) and U+005C (backspace)) - case 0x20: - case 0x21: - case 0x23: - case 0x24: - case 0x25: - case 0x26: - case 0x27: - case 0x28: - case 0x29: - case 0x2A: - case 0x2B: - case 0x2C: - case 0x2D: - case 0x2E: - case 0x2F: - case 0x30: - case 0x31: - case 0x32: - case 0x33: - case 0x34: - case 0x35: - case 0x36: - case 0x37: - case 0x38: - case 0x39: - case 0x3A: - case 0x3B: - case 0x3C: - case 0x3D: - case 0x3E: - case 0x3F: - case 0x40: - case 0x41: - case 0x42: - case 0x43: - case 0x44: - case 0x45: - case 0x46: - case 0x47: - case 0x48: - case 0x49: - case 0x4A: - case 0x4B: - case 0x4C: - case 0x4D: - case 0x4E: - case 0x4F: - case 0x50: - case 0x51: - case 0x52: - case 0x53: - case 0x54: - case 0x55: - case 0x56: - case 0x57: - case 0x58: - case 0x59: - case 0x5A: - case 0x5B: - case 0x5D: - case 0x5E: - case 0x5F: - case 0x60: - case 0x61: - case 0x62: - case 0x63: - case 0x64: - case 0x65: - case 0x66: - case 0x67: - case 0x68: - case 0x69: - case 0x6A: - case 0x6B: - case 0x6C: - case 0x6D: - case 0x6E: - case 0x6F: - case 0x70: - case 0x71: - case 0x72: - case 0x73: - case 0x74: - case 0x75: - case 0x76: - case 0x77: - case 0x78: - case 0x79: - case 0x7A: - case 0x7B: - case 0x7C: - case 0x7D: - case 0x7E: - case 0x7F: - { - add(current); - break; - } - - // U+0080..U+07FF: bytes C2..DF 80..BF - case 0xC2: - case 0xC3: - case 0xC4: - case 0xC5: - case 0xC6: - case 0xC7: - case 0xC8: - case 0xC9: - case 0xCA: - case 0xCB: - case 0xCC: - case 0xCD: - case 0xCE: - case 0xCF: - case 0xD0: - case 0xD1: - case 0xD2: - case 0xD3: - case 0xD4: - case 0xD5: - case 0xD6: - case 0xD7: - case 0xD8: - case 0xD9: - case 0xDA: - case 0xDB: - case 0xDC: - case 0xDD: - case 0xDE: - case 0xDF: - { - if (JSON_HEDLEY_UNLIKELY(!next_byte_in_range({0x80, 0xBF}))) - { - return token_type::parse_error; - } - break; - } - - // U+0800..U+0FFF: bytes E0 A0..BF 80..BF - case 0xE0: - { - if (JSON_HEDLEY_UNLIKELY(!(next_byte_in_range({0xA0, 0xBF, 0x80, 0xBF})))) - { - return token_type::parse_error; - } - break; - } - - // U+1000..U+CFFF: bytes E1..EC 80..BF 80..BF - // U+E000..U+FFFF: bytes EE..EF 80..BF 80..BF - case 0xE1: - case 0xE2: - case 0xE3: - case 0xE4: - case 0xE5: - case 0xE6: - case 0xE7: - case 0xE8: - case 0xE9: - case 0xEA: - case 0xEB: - case 0xEC: - case 0xEE: - case 0xEF: - { - if (JSON_HEDLEY_UNLIKELY(!(next_byte_in_range({0x80, 0xBF, 0x80, 0xBF})))) - { - return token_type::parse_error; - } - break; - } - - // U+D000..U+D7FF: bytes ED 80..9F 80..BF - case 0xED: - { - if (JSON_HEDLEY_UNLIKELY(!(next_byte_in_range({0x80, 0x9F, 0x80, 0xBF})))) - { - return token_type::parse_error; - } - break; - } - - // U+10000..U+3FFFF F0 90..BF 80..BF 80..BF - case 0xF0: - { - if (JSON_HEDLEY_UNLIKELY(!(next_byte_in_range({0x90, 0xBF, 0x80, 0xBF, 0x80, 0xBF})))) - { - return token_type::parse_error; - } - break; - } - - // U+40000..U+FFFFF F1..F3 80..BF 80..BF 80..BF - case 0xF1: - case 0xF2: - case 0xF3: - { - if (JSON_HEDLEY_UNLIKELY(!(next_byte_in_range({0x80, 0xBF, 0x80, 0xBF, 0x80, 0xBF})))) - { - return token_type::parse_error; - } - break; - } - - // U+100000..U+10FFFF F4 80..8F 80..BF 80..BF - case 0xF4: - { - if (JSON_HEDLEY_UNLIKELY(!(next_byte_in_range({0x80, 0x8F, 0x80, 0xBF, 0x80, 0xBF})))) - { - return token_type::parse_error; - } - break; - } - - // remaining bytes (80..C1 and F5..FF) are ill-formed - default: - { - error_message = "invalid string: ill-formed UTF-8 byte"; - return token_type::parse_error; - } - } - } - } - - /*! - * @brief scan a comment - * @return whether comment could be scanned successfully - */ - bool scan_comment() - { - switch (get()) - { - // single-line comments skip input until a newline or EOF is read - case '/': - { - while (true) - { - switch (get()) - { - case '\n': - case '\r': - case std::char_traits::eof(): - case '\0': - return true; - - default: - break; - } - } - } - - // multi-line comments skip input until */ is read - case '*': - { - while (true) - { - switch (get()) - { - case std::char_traits::eof(): - case '\0': - { - error_message = "invalid comment; missing closing '*/'"; - return false; - } - - case '*': - { - switch (get()) - { - case '/': - return true; - - default: - { - unget(); - continue; - } - } - } - - default: - continue; - } - } - } - - // unexpected character after reading '/' - default: - { - error_message = "invalid comment; expecting '/' or '*' after '/'"; - return false; - } - } - } - - JSON_HEDLEY_NON_NULL(2) - static void strtof(float& f, const char* str, char** endptr) noexcept - { - f = std::strtof(str, endptr); - } - - JSON_HEDLEY_NON_NULL(2) - static void strtof(double& f, const char* str, char** endptr) noexcept - { - f = std::strtod(str, endptr); - } - - JSON_HEDLEY_NON_NULL(2) - static void strtof(long double& f, const char* str, char** endptr) noexcept - { - f = std::strtold(str, endptr); - } - - /*! - @brief scan a number literal - - This function scans a string according to Sect. 6 of RFC 7159. - - The function is realized with a deterministic finite state machine derived - from the grammar described in RFC 7159. Starting in state "init", the - input is read and used to determined the next state. Only state "done" - accepts the number. State "error" is a trap state to model errors. In the - table below, "anything" means any character but the ones listed before. - - state | 0 | 1-9 | e E | + | - | . | anything - ---------|----------|----------|----------|---------|---------|----------|----------- - init | zero | any1 | [error] | [error] | minus | [error] | [error] - minus | zero | any1 | [error] | [error] | [error] | [error] | [error] - zero | done | done | exponent | done | done | decimal1 | done - any1 | any1 | any1 | exponent | done | done | decimal1 | done - decimal1 | decimal2 | decimal2 | [error] | [error] | [error] | [error] | [error] - decimal2 | decimal2 | decimal2 | exponent | done | done | done | done - exponent | any2 | any2 | [error] | sign | sign | [error] | [error] - sign | any2 | any2 | [error] | [error] | [error] | [error] | [error] - any2 | any2 | any2 | done | done | done | done | done - - The state machine is realized with one label per state (prefixed with - "scan_number_") and `goto` statements between them. The state machine - contains cycles, but any cycle can be left when EOF is read. Therefore, - the function is guaranteed to terminate. - - During scanning, the read bytes are stored in token_buffer. This string is - then converted to a signed integer, an unsigned integer, or a - floating-point number. - - @return token_type::value_unsigned, token_type::value_integer, or - token_type::value_float if number could be successfully scanned, - token_type::parse_error otherwise - - @note The scanner is independent of the current locale. Internally, the - locale's decimal point is used instead of `.` to work with the - locale-dependent converters. - */ - token_type scan_number() // lgtm [cpp/use-of-goto] - { - // reset token_buffer to store the number's bytes - reset(); - - // the type of the parsed number; initially set to unsigned; will be - // changed if minus sign, decimal point or exponent is read - token_type number_type = token_type::value_unsigned; - - // state (init): we just found out we need to scan a number - switch (current) - { - case '-': - { - add(current); - goto scan_number_minus; - } - - case '0': - { - add(current); - goto scan_number_zero; - } - - case '1': - case '2': - case '3': - case '4': - case '5': - case '6': - case '7': - case '8': - case '9': - { - add(current); - goto scan_number_any1; - } - - // all other characters are rejected outside scan_number() - default: // LCOV_EXCL_LINE - JSON_ASSERT(false); // LCOV_EXCL_LINE - } - -scan_number_minus: - // state: we just parsed a leading minus sign - number_type = token_type::value_integer; - switch (get()) - { - case '0': - { - add(current); - goto scan_number_zero; - } - - case '1': - case '2': - case '3': - case '4': - case '5': - case '6': - case '7': - case '8': - case '9': - { - add(current); - goto scan_number_any1; - } - - default: - { - error_message = "invalid number; expected digit after '-'"; - return token_type::parse_error; - } - } - -scan_number_zero: - // state: we just parse a zero (maybe with a leading minus sign) - switch (get()) - { - case '.': - { - add(decimal_point_char); - goto scan_number_decimal1; - } - - case 'e': - case 'E': - { - add(current); - goto scan_number_exponent; - } - - default: - goto scan_number_done; - } - -scan_number_any1: - // state: we just parsed a number 0-9 (maybe with a leading minus sign) - switch (get()) - { - case '0': - case '1': - case '2': - case '3': - case '4': - case '5': - case '6': - case '7': - case '8': - case '9': - { - add(current); - goto scan_number_any1; - } - - case '.': - { - add(decimal_point_char); - goto scan_number_decimal1; - } - - case 'e': - case 'E': - { - add(current); - goto scan_number_exponent; - } - - default: - goto scan_number_done; - } - -scan_number_decimal1: - // state: we just parsed a decimal point - number_type = token_type::value_float; - switch (get()) - { - case '0': - case '1': - case '2': - case '3': - case '4': - case '5': - case '6': - case '7': - case '8': - case '9': - { - add(current); - goto scan_number_decimal2; - } - - default: - { - error_message = "invalid number; expected digit after '.'"; - return token_type::parse_error; - } - } - -scan_number_decimal2: - // we just parsed at least one number after a decimal point - switch (get()) - { - case '0': - case '1': - case '2': - case '3': - case '4': - case '5': - case '6': - case '7': - case '8': - case '9': - { - add(current); - goto scan_number_decimal2; - } - - case 'e': - case 'E': - { - add(current); - goto scan_number_exponent; - } - - default: - goto scan_number_done; - } - -scan_number_exponent: - // we just parsed an exponent - number_type = token_type::value_float; - switch (get()) - { - case '+': - case '-': - { - add(current); - goto scan_number_sign; - } - - case '0': - case '1': - case '2': - case '3': - case '4': - case '5': - case '6': - case '7': - case '8': - case '9': - { - add(current); - goto scan_number_any2; - } - - default: - { - error_message = - "invalid number; expected '+', '-', or digit after exponent"; - return token_type::parse_error; - } - } - -scan_number_sign: - // we just parsed an exponent sign - switch (get()) - { - case '0': - case '1': - case '2': - case '3': - case '4': - case '5': - case '6': - case '7': - case '8': - case '9': - { - add(current); - goto scan_number_any2; - } - - default: - { - error_message = "invalid number; expected digit after exponent sign"; - return token_type::parse_error; - } - } - -scan_number_any2: - // we just parsed a number after the exponent or exponent sign - switch (get()) - { - case '0': - case '1': - case '2': - case '3': - case '4': - case '5': - case '6': - case '7': - case '8': - case '9': - { - add(current); - goto scan_number_any2; - } - - default: - goto scan_number_done; - } - -scan_number_done: - // unget the character after the number (we only read it to know that - // we are done scanning a number) - unget(); - - char* endptr = nullptr; - errno = 0; - - // try to parse integers first and fall back to floats - if (number_type == token_type::value_unsigned) - { - const auto x = std::strtoull(token_buffer.data(), &endptr, 10); - - // we checked the number format before - JSON_ASSERT(endptr == token_buffer.data() + token_buffer.size()); - - if (errno == 0) - { - value_unsigned = static_cast(x); - if (value_unsigned == x) - { - return token_type::value_unsigned; - } - } - } - else if (number_type == token_type::value_integer) - { - const auto x = std::strtoll(token_buffer.data(), &endptr, 10); - - // we checked the number format before - JSON_ASSERT(endptr == token_buffer.data() + token_buffer.size()); - - if (errno == 0) - { - value_integer = static_cast(x); - if (value_integer == x) - { - return token_type::value_integer; - } - } - } - - // this code is reached if we parse a floating-point number or if an - // integer conversion above failed - strtof(value_float, token_buffer.data(), &endptr); - - // we checked the number format before - JSON_ASSERT(endptr == token_buffer.data() + token_buffer.size()); - - return token_type::value_float; - } - - /*! - @param[in] literal_text the literal text to expect - @param[in] length the length of the passed literal text - @param[in] return_type the token type to return on success - */ - JSON_HEDLEY_NON_NULL(2) - token_type scan_literal(const char_type* literal_text, const std::size_t length, - token_type return_type) - { - JSON_ASSERT(std::char_traits::to_char_type(current) == literal_text[0]); - for (std::size_t i = 1; i < length; ++i) - { - if (JSON_HEDLEY_UNLIKELY(std::char_traits::to_char_type(get()) != literal_text[i])) - { - error_message = "invalid literal"; - return token_type::parse_error; - } - } - return return_type; - } - - ///////////////////// - // input management - ///////////////////// - - /// reset token_buffer; current character is beginning of token - void reset() noexcept - { - token_buffer.clear(); - token_string.clear(); - token_string.push_back(std::char_traits::to_char_type(current)); - } - - /* - @brief get next character from the input - - This function provides the interface to the used input adapter. It does - not throw in case the input reached EOF, but returns a - `std::char_traits::eof()` in that case. Stores the scanned characters - for use in error messages. - - @return character read from the input - */ - char_int_type get() - { - ++position.chars_read_total; - ++position.chars_read_current_line; - - if (next_unget) - { - // just reset the next_unget variable and work with current - next_unget = false; - } - else - { - current = ia.get_character(); - } - - if (JSON_HEDLEY_LIKELY(current != std::char_traits::eof())) - { - token_string.push_back(std::char_traits::to_char_type(current)); - } - - if (current == '\n') - { - ++position.lines_read; - position.chars_read_current_line = 0; - } - - return current; - } - - /*! - @brief unget current character (read it again on next get) - - We implement unget by setting variable next_unget to true. The input is not - changed - we just simulate ungetting by modifying chars_read_total, - chars_read_current_line, and token_string. The next call to get() will - behave as if the unget character is read again. - */ - void unget() - { - next_unget = true; - - --position.chars_read_total; - - // in case we "unget" a newline, we have to also decrement the lines_read - if (position.chars_read_current_line == 0) - { - if (position.lines_read > 0) - { - --position.lines_read; - } - } - else - { - --position.chars_read_current_line; - } - - if (JSON_HEDLEY_LIKELY(current != std::char_traits::eof())) - { - JSON_ASSERT(!token_string.empty()); - token_string.pop_back(); - } - } - - /// add a character to token_buffer - void add(char_int_type c) - { - token_buffer.push_back(static_cast(c)); - } - - public: - ///////////////////// - // value getters - ///////////////////// - - /// return integer value - constexpr number_integer_t get_number_integer() const noexcept - { - return value_integer; - } - - /// return unsigned integer value - constexpr number_unsigned_t get_number_unsigned() const noexcept - { - return value_unsigned; - } - - /// return floating-point value - constexpr number_float_t get_number_float() const noexcept - { - return value_float; - } - - /// return current string value (implicitly resets the token; useful only once) - string_t& get_string() - { - return token_buffer; - } - - ///////////////////// - // diagnostics - ///////////////////// - - /// return position of last read token - constexpr position_t get_position() const noexcept - { - return position; - } - - /// return the last read token (for errors only). Will never contain EOF - /// (an arbitrary value that is not a valid char value, often -1), because - /// 255 may legitimately occur. May contain NUL, which should be escaped. - std::string get_token_string() const - { - // escape control characters - std::string result; - for (const auto c : token_string) - { - if (static_cast(c) <= '\x1F') - { - // escape control characters - std::array cs{{}}; - (std::snprintf)(cs.data(), cs.size(), "", static_cast(c)); - result += cs.data(); - } - else - { - // add character as is - result.push_back(static_cast(c)); - } - } - - return result; - } - - /// return syntax error message - JSON_HEDLEY_RETURNS_NON_NULL - constexpr const char* get_error_message() const noexcept - { - return error_message; - } - - ///////////////////// - // actual scanner - ///////////////////// - - /*! - @brief skip the UTF-8 byte order mark - @return true iff there is no BOM or the correct BOM has been skipped - */ - bool skip_bom() - { - if (get() == 0xEF) - { - // check if we completely parse the BOM - return get() == 0xBB && get() == 0xBF; - } - - // the first character is not the beginning of the BOM; unget it to - // process is later - unget(); - return true; - } - - void skip_whitespace() - { - do - { - get(); - } - while (current == ' ' || current == '\t' || current == '\n' || current == '\r'); - } - - token_type scan() - { - // initially, skip the BOM - if (position.chars_read_total == 0 && !skip_bom()) - { - error_message = "invalid BOM; must be 0xEF 0xBB 0xBF if given"; - return token_type::parse_error; - } - - // read next character and ignore whitespace - skip_whitespace(); - - // ignore comments - while (ignore_comments && current == '/') - { - if (!scan_comment()) - { - return token_type::parse_error; - } - - // skip following whitespace - skip_whitespace(); - } - - switch (current) - { - // structural characters - case '[': - return token_type::begin_array; - case ']': - return token_type::end_array; - case '{': - return token_type::begin_object; - case '}': - return token_type::end_object; - case ':': - return token_type::name_separator; - case ',': - return token_type::value_separator; - - // literals - case 't': - { - std::array true_literal = {{'t', 'r', 'u', 'e'}}; - return scan_literal(true_literal.data(), true_literal.size(), token_type::literal_true); - } - case 'f': - { - std::array false_literal = {{'f', 'a', 'l', 's', 'e'}}; - return scan_literal(false_literal.data(), false_literal.size(), token_type::literal_false); - } - case 'n': - { - std::array null_literal = {{'n', 'u', 'l', 'l'}}; - return scan_literal(null_literal.data(), null_literal.size(), token_type::literal_null); - } - - // string - case '\"': - return scan_string(); - - // number - case '-': - case '0': - case '1': - case '2': - case '3': - case '4': - case '5': - case '6': - case '7': - case '8': - case '9': - return scan_number(); - - // end of input (the null byte is needed when parsing from - // string literals) - case '\0': - case std::char_traits::eof(): - return token_type::end_of_input; - - // error - default: - error_message = "invalid literal"; - return token_type::parse_error; - } - } - - private: - /// input adapter - InputAdapterType ia; - - /// whether comments should be ignored (true) or signaled as errors (false) - const bool ignore_comments = false; - - /// the current character - char_int_type current = std::char_traits::eof(); - - /// whether the next get() call should just return current - bool next_unget = false; - - /// the start position of the current token - position_t position {}; - - /// raw input token string (for error messages) - std::vector token_string {}; - - /// buffer for variable-length tokens (numbers, strings) - string_t token_buffer {}; - - /// a description of occurred lexer errors - const char* error_message = ""; - - // number values - number_integer_t value_integer = 0; - number_unsigned_t value_unsigned = 0; - number_float_t value_float = 0; - - /// the decimal point - const char_int_type decimal_point_char = '.'; -}; -} // namespace detail -} // namespace nlohmann - -// #include - -// #include - - -#include // size_t -#include // declval -#include // string - -// #include - -// #include - - -namespace nlohmann -{ -namespace detail -{ -template -using null_function_t = decltype(std::declval().null()); - -template -using boolean_function_t = - decltype(std::declval().boolean(std::declval())); - -template -using number_integer_function_t = - decltype(std::declval().number_integer(std::declval())); - -template -using number_unsigned_function_t = - decltype(std::declval().number_unsigned(std::declval())); - -template -using number_float_function_t = decltype(std::declval().number_float( - std::declval(), std::declval())); - -template -using string_function_t = - decltype(std::declval().string(std::declval())); - -template -using binary_function_t = - decltype(std::declval().binary(std::declval())); - -template -using start_object_function_t = - decltype(std::declval().start_object(std::declval())); - -template -using key_function_t = - decltype(std::declval().key(std::declval())); - -template -using end_object_function_t = decltype(std::declval().end_object()); - -template -using start_array_function_t = - decltype(std::declval().start_array(std::declval())); - -template -using end_array_function_t = decltype(std::declval().end_array()); - -template -using parse_error_function_t = decltype(std::declval().parse_error( - std::declval(), std::declval(), - std::declval())); - -template -struct is_sax -{ - private: - static_assert(is_basic_json::value, - "BasicJsonType must be of type basic_json<...>"); - - using number_integer_t = typename BasicJsonType::number_integer_t; - using number_unsigned_t = typename BasicJsonType::number_unsigned_t; - using number_float_t = typename BasicJsonType::number_float_t; - using string_t = typename BasicJsonType::string_t; - using binary_t = typename BasicJsonType::binary_t; - using exception_t = typename BasicJsonType::exception; - - public: - static constexpr bool value = - is_detected_exact::value && - is_detected_exact::value && - is_detected_exact::value && - is_detected_exact::value && - is_detected_exact::value && - is_detected_exact::value && - is_detected_exact::value && - is_detected_exact::value && - is_detected_exact::value && - is_detected_exact::value && - is_detected_exact::value && - is_detected_exact::value && - is_detected_exact::value; -}; - -template -struct is_sax_static_asserts -{ - private: - static_assert(is_basic_json::value, - "BasicJsonType must be of type basic_json<...>"); - - using number_integer_t = typename BasicJsonType::number_integer_t; - using number_unsigned_t = typename BasicJsonType::number_unsigned_t; - using number_float_t = typename BasicJsonType::number_float_t; - using string_t = typename BasicJsonType::string_t; - using binary_t = typename BasicJsonType::binary_t; - using exception_t = typename BasicJsonType::exception; - - public: - static_assert(is_detected_exact::value, - "Missing/invalid function: bool null()"); - static_assert(is_detected_exact::value, - "Missing/invalid function: bool boolean(bool)"); - static_assert(is_detected_exact::value, - "Missing/invalid function: bool boolean(bool)"); - static_assert( - is_detected_exact::value, - "Missing/invalid function: bool number_integer(number_integer_t)"); - static_assert( - is_detected_exact::value, - "Missing/invalid function: bool number_unsigned(number_unsigned_t)"); - static_assert(is_detected_exact::value, - "Missing/invalid function: bool number_float(number_float_t, const string_t&)"); - static_assert( - is_detected_exact::value, - "Missing/invalid function: bool string(string_t&)"); - static_assert( - is_detected_exact::value, - "Missing/invalid function: bool binary(binary_t&)"); - static_assert(is_detected_exact::value, - "Missing/invalid function: bool start_object(std::size_t)"); - static_assert(is_detected_exact::value, - "Missing/invalid function: bool key(string_t&)"); - static_assert(is_detected_exact::value, - "Missing/invalid function: bool end_object()"); - static_assert(is_detected_exact::value, - "Missing/invalid function: bool start_array(std::size_t)"); - static_assert(is_detected_exact::value, - "Missing/invalid function: bool end_array()"); - static_assert( - is_detected_exact::value, - "Missing/invalid function: bool parse_error(std::size_t, const " - "std::string&, const exception&)"); -}; -} // namespace detail -} // namespace nlohmann - -// #include - - -namespace nlohmann -{ -namespace detail -{ - -/// how to treat CBOR tags -enum class cbor_tag_handler_t -{ - error, ///< throw a parse_error exception in case of a tag - ignore ///< ignore tags -}; - -/*! -@brief determine system byte order - -@return true if and only if system's byte order is little endian - -@note from https://stackoverflow.com/a/1001328/266378 -*/ -static inline bool little_endianess(int num = 1) noexcept -{ - return *reinterpret_cast(&num) == 1; -} - - -/////////////////// -// binary reader // -/////////////////// - -/*! -@brief deserialization of CBOR, MessagePack, and UBJSON values -*/ -template> -class binary_reader -{ - using number_integer_t = typename BasicJsonType::number_integer_t; - using number_unsigned_t = typename BasicJsonType::number_unsigned_t; - using number_float_t = typename BasicJsonType::number_float_t; - using string_t = typename BasicJsonType::string_t; - using binary_t = typename BasicJsonType::binary_t; - using json_sax_t = SAX; - using char_type = typename InputAdapterType::char_type; - using char_int_type = typename std::char_traits::int_type; - - public: - /*! - @brief create a binary reader - - @param[in] adapter input adapter to read from - */ - explicit binary_reader(InputAdapterType&& adapter) : ia(std::move(adapter)) - { - (void)detail::is_sax_static_asserts {}; - } - - // make class move-only - binary_reader(const binary_reader&) = delete; - binary_reader(binary_reader&&) = default; - binary_reader& operator=(const binary_reader&) = delete; - binary_reader& operator=(binary_reader&&) = default; - ~binary_reader() = default; - - /*! - @param[in] format the binary format to parse - @param[in] sax_ a SAX event processor - @param[in] strict whether to expect the input to be consumed completed - @param[in] tag_handler how to treat CBOR tags - - @return - */ - JSON_HEDLEY_NON_NULL(3) - bool sax_parse(const input_format_t format, - json_sax_t* sax_, - const bool strict = true, - const cbor_tag_handler_t tag_handler = cbor_tag_handler_t::error) - { - sax = sax_; - bool result = false; - - switch (format) - { - case input_format_t::bson: - result = parse_bson_internal(); - break; - - case input_format_t::cbor: - result = parse_cbor_internal(true, tag_handler); - break; - - case input_format_t::msgpack: - result = parse_msgpack_internal(); - break; - - case input_format_t::ubjson: - result = parse_ubjson_internal(); - break; - - default: // LCOV_EXCL_LINE - JSON_ASSERT(false); // LCOV_EXCL_LINE - } - - // strict mode: next byte must be EOF - if (result && strict) - { - if (format == input_format_t::ubjson) - { - get_ignore_noop(); - } - else - { - get(); - } - - if (JSON_HEDLEY_UNLIKELY(current != std::char_traits::eof())) - { - return sax->parse_error(chars_read, get_token_string(), - parse_error::create(110, chars_read, exception_message(format, "expected end of input; last byte: 0x" + get_token_string(), "value"))); - } - } - - return result; - } - - private: - ////////// - // BSON // - ////////// - - /*! - @brief Reads in a BSON-object and passes it to the SAX-parser. - @return whether a valid BSON-value was passed to the SAX parser - */ - bool parse_bson_internal() - { - std::int32_t document_size{}; - get_number(input_format_t::bson, document_size); - - if (JSON_HEDLEY_UNLIKELY(!sax->start_object(std::size_t(-1)))) - { - return false; - } - - if (JSON_HEDLEY_UNLIKELY(!parse_bson_element_list(/*is_array*/false))) - { - return false; - } - - return sax->end_object(); - } - - /*! - @brief Parses a C-style string from the BSON input. - @param[in, out] result A reference to the string variable where the read - string is to be stored. - @return `true` if the \x00-byte indicating the end of the string was - encountered before the EOF; false` indicates an unexpected EOF. - */ - bool get_bson_cstr(string_t& result) - { - auto out = std::back_inserter(result); - while (true) - { - get(); - if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::bson, "cstring"))) - { - return false; - } - if (current == 0x00) - { - return true; - } - *out++ = static_cast(current); - } - } - - /*! - @brief Parses a zero-terminated string of length @a len from the BSON - input. - @param[in] len The length (including the zero-byte at the end) of the - string to be read. - @param[in, out] result A reference to the string variable where the read - string is to be stored. - @tparam NumberType The type of the length @a len - @pre len >= 1 - @return `true` if the string was successfully parsed - */ - template - bool get_bson_string(const NumberType len, string_t& result) - { - if (JSON_HEDLEY_UNLIKELY(len < 1)) - { - auto last_token = get_token_string(); - return sax->parse_error(chars_read, last_token, parse_error::create(112, chars_read, exception_message(input_format_t::bson, "string length must be at least 1, is " + std::to_string(len), "string"))); - } - - return get_string(input_format_t::bson, len - static_cast(1), result) && get() != std::char_traits::eof(); - } - - /*! - @brief Parses a byte array input of length @a len from the BSON input. - @param[in] len The length of the byte array to be read. - @param[in, out] result A reference to the binary variable where the read - array is to be stored. - @tparam NumberType The type of the length @a len - @pre len >= 0 - @return `true` if the byte array was successfully parsed - */ - template - bool get_bson_binary(const NumberType len, binary_t& result) - { - if (JSON_HEDLEY_UNLIKELY(len < 0)) - { - auto last_token = get_token_string(); - return sax->parse_error(chars_read, last_token, parse_error::create(112, chars_read, exception_message(input_format_t::bson, "byte array length cannot be negative, is " + std::to_string(len), "binary"))); - } - - // All BSON binary values have a subtype - std::uint8_t subtype{}; - get_number(input_format_t::bson, subtype); - result.set_subtype(subtype); - - return get_binary(input_format_t::bson, len, result); - } - - /*! - @brief Read a BSON document element of the given @a element_type. - @param[in] element_type The BSON element type, c.f. http://bsonspec.org/spec.html - @param[in] element_type_parse_position The position in the input stream, - where the `element_type` was read. - @warning Not all BSON element types are supported yet. An unsupported - @a element_type will give rise to a parse_error.114: - Unsupported BSON record type 0x... - @return whether a valid BSON-object/array was passed to the SAX parser - */ - bool parse_bson_element_internal(const char_int_type element_type, - const std::size_t element_type_parse_position) - { - switch (element_type) - { - case 0x01: // double - { - double number{}; - return get_number(input_format_t::bson, number) && sax->number_float(static_cast(number), ""); - } - - case 0x02: // string - { - std::int32_t len{}; - string_t value; - return get_number(input_format_t::bson, len) && get_bson_string(len, value) && sax->string(value); - } - - case 0x03: // object - { - return parse_bson_internal(); - } - - case 0x04: // array - { - return parse_bson_array(); - } - - case 0x05: // binary - { - std::int32_t len{}; - binary_t value; - return get_number(input_format_t::bson, len) && get_bson_binary(len, value) && sax->binary(value); - } - - case 0x08: // boolean - { - return sax->boolean(get() != 0); - } - - case 0x0A: // null - { - return sax->null(); - } - - case 0x10: // int32 - { - std::int32_t value{}; - return get_number(input_format_t::bson, value) && sax->number_integer(value); - } - - case 0x12: // int64 - { - std::int64_t value{}; - return get_number(input_format_t::bson, value) && sax->number_integer(value); - } - - default: // anything else not supported (yet) - { - std::array cr{{}}; - (std::snprintf)(cr.data(), cr.size(), "%.2hhX", static_cast(element_type)); - return sax->parse_error(element_type_parse_position, std::string(cr.data()), parse_error::create(114, element_type_parse_position, "Unsupported BSON record type 0x" + std::string(cr.data()))); - } - } - } - - /*! - @brief Read a BSON element list (as specified in the BSON-spec) - - The same binary layout is used for objects and arrays, hence it must be - indicated with the argument @a is_array which one is expected - (true --> array, false --> object). - - @param[in] is_array Determines if the element list being read is to be - treated as an object (@a is_array == false), or as an - array (@a is_array == true). - @return whether a valid BSON-object/array was passed to the SAX parser - */ - bool parse_bson_element_list(const bool is_array) - { - string_t key; - - while (auto element_type = get()) - { - if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::bson, "element list"))) - { - return false; - } - - const std::size_t element_type_parse_position = chars_read; - if (JSON_HEDLEY_UNLIKELY(!get_bson_cstr(key))) - { - return false; - } - - if (!is_array && !sax->key(key)) - { - return false; - } - - if (JSON_HEDLEY_UNLIKELY(!parse_bson_element_internal(element_type, element_type_parse_position))) - { - return false; - } - - // get_bson_cstr only appends - key.clear(); - } - - return true; - } - - /*! - @brief Reads an array from the BSON input and passes it to the SAX-parser. - @return whether a valid BSON-array was passed to the SAX parser - */ - bool parse_bson_array() - { - std::int32_t document_size{}; - get_number(input_format_t::bson, document_size); - - if (JSON_HEDLEY_UNLIKELY(!sax->start_array(std::size_t(-1)))) - { - return false; - } - - if (JSON_HEDLEY_UNLIKELY(!parse_bson_element_list(/*is_array*/true))) - { - return false; - } - - return sax->end_array(); - } - - ////////// - // CBOR // - ////////// - - /*! - @param[in] get_char whether a new character should be retrieved from the - input (true) or whether the last read character should - be considered instead (false) - @param[in] tag_handler how CBOR tags should be treated - - @return whether a valid CBOR value was passed to the SAX parser - */ - bool parse_cbor_internal(const bool get_char, - const cbor_tag_handler_t tag_handler) - { - switch (get_char ? get() : current) - { - // EOF - case std::char_traits::eof(): - return unexpect_eof(input_format_t::cbor, "value"); - - // Integer 0x00..0x17 (0..23) - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case 0x09: - case 0x0A: - case 0x0B: - case 0x0C: - case 0x0D: - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - return sax->number_unsigned(static_cast(current)); - - case 0x18: // Unsigned integer (one-byte uint8_t follows) - { - std::uint8_t number{}; - return get_number(input_format_t::cbor, number) && sax->number_unsigned(number); - } - - case 0x19: // Unsigned integer (two-byte uint16_t follows) - { - std::uint16_t number{}; - return get_number(input_format_t::cbor, number) && sax->number_unsigned(number); - } - - case 0x1A: // Unsigned integer (four-byte uint32_t follows) - { - std::uint32_t number{}; - return get_number(input_format_t::cbor, number) && sax->number_unsigned(number); - } - - case 0x1B: // Unsigned integer (eight-byte uint64_t follows) - { - std::uint64_t number{}; - return get_number(input_format_t::cbor, number) && sax->number_unsigned(number); - } - - // Negative integer -1-0x00..-1-0x17 (-1..-24) - case 0x20: - case 0x21: - case 0x22: - case 0x23: - case 0x24: - case 0x25: - case 0x26: - case 0x27: - case 0x28: - case 0x29: - case 0x2A: - case 0x2B: - case 0x2C: - case 0x2D: - case 0x2E: - case 0x2F: - case 0x30: - case 0x31: - case 0x32: - case 0x33: - case 0x34: - case 0x35: - case 0x36: - case 0x37: - return sax->number_integer(static_cast(0x20 - 1 - current)); - - case 0x38: // Negative integer (one-byte uint8_t follows) - { - std::uint8_t number{}; - return get_number(input_format_t::cbor, number) && sax->number_integer(static_cast(-1) - number); - } - - case 0x39: // Negative integer -1-n (two-byte uint16_t follows) - { - std::uint16_t number{}; - return get_number(input_format_t::cbor, number) && sax->number_integer(static_cast(-1) - number); - } - - case 0x3A: // Negative integer -1-n (four-byte uint32_t follows) - { - std::uint32_t number{}; - return get_number(input_format_t::cbor, number) && sax->number_integer(static_cast(-1) - number); - } - - case 0x3B: // Negative integer -1-n (eight-byte uint64_t follows) - { - std::uint64_t number{}; - return get_number(input_format_t::cbor, number) && sax->number_integer(static_cast(-1) - - static_cast(number)); - } - - // Binary data (0x00..0x17 bytes follow) - case 0x40: - case 0x41: - case 0x42: - case 0x43: - case 0x44: - case 0x45: - case 0x46: - case 0x47: - case 0x48: - case 0x49: - case 0x4A: - case 0x4B: - case 0x4C: - case 0x4D: - case 0x4E: - case 0x4F: - case 0x50: - case 0x51: - case 0x52: - case 0x53: - case 0x54: - case 0x55: - case 0x56: - case 0x57: - case 0x58: // Binary data (one-byte uint8_t for n follows) - case 0x59: // Binary data (two-byte uint16_t for n follow) - case 0x5A: // Binary data (four-byte uint32_t for n follow) - case 0x5B: // Binary data (eight-byte uint64_t for n follow) - case 0x5F: // Binary data (indefinite length) - { - binary_t b; - return get_cbor_binary(b) && sax->binary(b); - } - - // UTF-8 string (0x00..0x17 bytes follow) - case 0x60: - case 0x61: - case 0x62: - case 0x63: - case 0x64: - case 0x65: - case 0x66: - case 0x67: - case 0x68: - case 0x69: - case 0x6A: - case 0x6B: - case 0x6C: - case 0x6D: - case 0x6E: - case 0x6F: - case 0x70: - case 0x71: - case 0x72: - case 0x73: - case 0x74: - case 0x75: - case 0x76: - case 0x77: - case 0x78: // UTF-8 string (one-byte uint8_t for n follows) - case 0x79: // UTF-8 string (two-byte uint16_t for n follow) - case 0x7A: // UTF-8 string (four-byte uint32_t for n follow) - case 0x7B: // UTF-8 string (eight-byte uint64_t for n follow) - case 0x7F: // UTF-8 string (indefinite length) - { - string_t s; - return get_cbor_string(s) && sax->string(s); - } - - // array (0x00..0x17 data items follow) - case 0x80: - case 0x81: - case 0x82: - case 0x83: - case 0x84: - case 0x85: - case 0x86: - case 0x87: - case 0x88: - case 0x89: - case 0x8A: - case 0x8B: - case 0x8C: - case 0x8D: - case 0x8E: - case 0x8F: - case 0x90: - case 0x91: - case 0x92: - case 0x93: - case 0x94: - case 0x95: - case 0x96: - case 0x97: - return get_cbor_array(static_cast(static_cast(current) & 0x1Fu), tag_handler); - - case 0x98: // array (one-byte uint8_t for n follows) - { - std::uint8_t len{}; - return get_number(input_format_t::cbor, len) && get_cbor_array(static_cast(len), tag_handler); - } - - case 0x99: // array (two-byte uint16_t for n follow) - { - std::uint16_t len{}; - return get_number(input_format_t::cbor, len) && get_cbor_array(static_cast(len), tag_handler); - } - - case 0x9A: // array (four-byte uint32_t for n follow) - { - std::uint32_t len{}; - return get_number(input_format_t::cbor, len) && get_cbor_array(static_cast(len), tag_handler); - } - - case 0x9B: // array (eight-byte uint64_t for n follow) - { - std::uint64_t len{}; - return get_number(input_format_t::cbor, len) && get_cbor_array(static_cast(len), tag_handler); - } - - case 0x9F: // array (indefinite length) - return get_cbor_array(std::size_t(-1), tag_handler); - - // map (0x00..0x17 pairs of data items follow) - case 0xA0: - case 0xA1: - case 0xA2: - case 0xA3: - case 0xA4: - case 0xA5: - case 0xA6: - case 0xA7: - case 0xA8: - case 0xA9: - case 0xAA: - case 0xAB: - case 0xAC: - case 0xAD: - case 0xAE: - case 0xAF: - case 0xB0: - case 0xB1: - case 0xB2: - case 0xB3: - case 0xB4: - case 0xB5: - case 0xB6: - case 0xB7: - return get_cbor_object(static_cast(static_cast(current) & 0x1Fu), tag_handler); - - case 0xB8: // map (one-byte uint8_t for n follows) - { - std::uint8_t len{}; - return get_number(input_format_t::cbor, len) && get_cbor_object(static_cast(len), tag_handler); - } - - case 0xB9: // map (two-byte uint16_t for n follow) - { - std::uint16_t len{}; - return get_number(input_format_t::cbor, len) && get_cbor_object(static_cast(len), tag_handler); - } - - case 0xBA: // map (four-byte uint32_t for n follow) - { - std::uint32_t len{}; - return get_number(input_format_t::cbor, len) && get_cbor_object(static_cast(len), tag_handler); - } - - case 0xBB: // map (eight-byte uint64_t for n follow) - { - std::uint64_t len{}; - return get_number(input_format_t::cbor, len) && get_cbor_object(static_cast(len), tag_handler); - } - - case 0xBF: // map (indefinite length) - return get_cbor_object(std::size_t(-1), tag_handler); - - case 0xC6: // tagged item - case 0xC7: - case 0xC8: - case 0xC9: - case 0xCA: - case 0xCB: - case 0xCC: - case 0xCD: - case 0xCE: - case 0xCF: - case 0xD0: - case 0xD1: - case 0xD2: - case 0xD3: - case 0xD4: - case 0xD8: // tagged item (1 bytes follow) - case 0xD9: // tagged item (2 bytes follow) - case 0xDA: // tagged item (4 bytes follow) - case 0xDB: // tagged item (8 bytes follow) - { - switch (tag_handler) - { - case cbor_tag_handler_t::error: - { - auto last_token = get_token_string(); - return sax->parse_error(chars_read, last_token, parse_error::create(112, chars_read, exception_message(input_format_t::cbor, "invalid byte: 0x" + last_token, "value"))); - } - - case cbor_tag_handler_t::ignore: - { - switch (current) - { - case 0xD8: - { - std::uint8_t len{}; - get_number(input_format_t::cbor, len); - break; - } - case 0xD9: - { - std::uint16_t len{}; - get_number(input_format_t::cbor, len); - break; - } - case 0xDA: - { - std::uint32_t len{}; - get_number(input_format_t::cbor, len); - break; - } - case 0xDB: - { - std::uint64_t len{}; - get_number(input_format_t::cbor, len); - break; - } - default: - break; - } - return parse_cbor_internal(true, tag_handler); - } - - default: // LCOV_EXCL_LINE - JSON_ASSERT(false); // LCOV_EXCL_LINE - } - } - - case 0xF4: // false - return sax->boolean(false); - - case 0xF5: // true - return sax->boolean(true); - - case 0xF6: // null - return sax->null(); - - case 0xF9: // Half-Precision Float (two-byte IEEE 754) - { - const auto byte1_raw = get(); - if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::cbor, "number"))) - { - return false; - } - const auto byte2_raw = get(); - if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::cbor, "number"))) - { - return false; - } - - const auto byte1 = static_cast(byte1_raw); - const auto byte2 = static_cast(byte2_raw); - - // code from RFC 7049, Appendix D, Figure 3: - // As half-precision floating-point numbers were only added - // to IEEE 754 in 2008, today's programming platforms often - // still only have limited support for them. It is very - // easy to include at least decoding support for them even - // without such support. An example of a small decoder for - // half-precision floating-point numbers in the C language - // is shown in Fig. 3. - const auto half = static_cast((byte1 << 8u) + byte2); - const double val = [&half] - { - const int exp = (half >> 10u) & 0x1Fu; - const unsigned int mant = half & 0x3FFu; - JSON_ASSERT(0 <= exp&& exp <= 32); - JSON_ASSERT(mant <= 1024); - switch (exp) - { - case 0: - return std::ldexp(mant, -24); - case 31: - return (mant == 0) - ? std::numeric_limits::infinity() - : std::numeric_limits::quiet_NaN(); - default: - return std::ldexp(mant + 1024, exp - 25); - } - }(); - return sax->number_float((half & 0x8000u) != 0 - ? static_cast(-val) - : static_cast(val), ""); - } - - case 0xFA: // Single-Precision Float (four-byte IEEE 754) - { - float number{}; - return get_number(input_format_t::cbor, number) && sax->number_float(static_cast(number), ""); - } - - case 0xFB: // Double-Precision Float (eight-byte IEEE 754) - { - double number{}; - return get_number(input_format_t::cbor, number) && sax->number_float(static_cast(number), ""); - } - - default: // anything else (0xFF is handled inside the other types) - { - auto last_token = get_token_string(); - return sax->parse_error(chars_read, last_token, parse_error::create(112, chars_read, exception_message(input_format_t::cbor, "invalid byte: 0x" + last_token, "value"))); - } - } - } - - /*! - @brief reads a CBOR string - - This function first reads starting bytes to determine the expected - string length and then copies this number of bytes into a string. - Additionally, CBOR's strings with indefinite lengths are supported. - - @param[out] result created string - - @return whether string creation completed - */ - bool get_cbor_string(string_t& result) - { - if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::cbor, "string"))) - { - return false; - } - - switch (current) - { - // UTF-8 string (0x00..0x17 bytes follow) - case 0x60: - case 0x61: - case 0x62: - case 0x63: - case 0x64: - case 0x65: - case 0x66: - case 0x67: - case 0x68: - case 0x69: - case 0x6A: - case 0x6B: - case 0x6C: - case 0x6D: - case 0x6E: - case 0x6F: - case 0x70: - case 0x71: - case 0x72: - case 0x73: - case 0x74: - case 0x75: - case 0x76: - case 0x77: - { - return get_string(input_format_t::cbor, static_cast(current) & 0x1Fu, result); - } - - case 0x78: // UTF-8 string (one-byte uint8_t for n follows) - { - std::uint8_t len{}; - return get_number(input_format_t::cbor, len) && get_string(input_format_t::cbor, len, result); - } - - case 0x79: // UTF-8 string (two-byte uint16_t for n follow) - { - std::uint16_t len{}; - return get_number(input_format_t::cbor, len) && get_string(input_format_t::cbor, len, result); - } - - case 0x7A: // UTF-8 string (four-byte uint32_t for n follow) - { - std::uint32_t len{}; - return get_number(input_format_t::cbor, len) && get_string(input_format_t::cbor, len, result); - } - - case 0x7B: // UTF-8 string (eight-byte uint64_t for n follow) - { - std::uint64_t len{}; - return get_number(input_format_t::cbor, len) && get_string(input_format_t::cbor, len, result); - } - - case 0x7F: // UTF-8 string (indefinite length) - { - while (get() != 0xFF) - { - string_t chunk; - if (!get_cbor_string(chunk)) - { - return false; - } - result.append(chunk); - } - return true; - } - - default: - { - auto last_token = get_token_string(); - return sax->parse_error(chars_read, last_token, parse_error::create(113, chars_read, exception_message(input_format_t::cbor, "expected length specification (0x60-0x7B) or indefinite string type (0x7F); last byte: 0x" + last_token, "string"))); - } - } - } - - /*! - @brief reads a CBOR byte array - - This function first reads starting bytes to determine the expected - byte array length and then copies this number of bytes into the byte array. - Additionally, CBOR's byte arrays with indefinite lengths are supported. - - @param[out] result created byte array - - @return whether byte array creation completed - */ - bool get_cbor_binary(binary_t& result) - { - if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::cbor, "binary"))) - { - return false; - } - - switch (current) - { - // Binary data (0x00..0x17 bytes follow) - case 0x40: - case 0x41: - case 0x42: - case 0x43: - case 0x44: - case 0x45: - case 0x46: - case 0x47: - case 0x48: - case 0x49: - case 0x4A: - case 0x4B: - case 0x4C: - case 0x4D: - case 0x4E: - case 0x4F: - case 0x50: - case 0x51: - case 0x52: - case 0x53: - case 0x54: - case 0x55: - case 0x56: - case 0x57: - { - return get_binary(input_format_t::cbor, static_cast(current) & 0x1Fu, result); - } - - case 0x58: // Binary data (one-byte uint8_t for n follows) - { - std::uint8_t len{}; - return get_number(input_format_t::cbor, len) && - get_binary(input_format_t::cbor, len, result); - } - - case 0x59: // Binary data (two-byte uint16_t for n follow) - { - std::uint16_t len{}; - return get_number(input_format_t::cbor, len) && - get_binary(input_format_t::cbor, len, result); - } - - case 0x5A: // Binary data (four-byte uint32_t for n follow) - { - std::uint32_t len{}; - return get_number(input_format_t::cbor, len) && - get_binary(input_format_t::cbor, len, result); - } - - case 0x5B: // Binary data (eight-byte uint64_t for n follow) - { - std::uint64_t len{}; - return get_number(input_format_t::cbor, len) && - get_binary(input_format_t::cbor, len, result); - } - - case 0x5F: // Binary data (indefinite length) - { - while (get() != 0xFF) - { - binary_t chunk; - if (!get_cbor_binary(chunk)) - { - return false; - } - result.insert(result.end(), chunk.begin(), chunk.end()); - } - return true; - } - - default: - { - auto last_token = get_token_string(); - return sax->parse_error(chars_read, last_token, parse_error::create(113, chars_read, exception_message(input_format_t::cbor, "expected length specification (0x40-0x5B) or indefinite binary array type (0x5F); last byte: 0x" + last_token, "binary"))); - } - } - } - - /*! - @param[in] len the length of the array or std::size_t(-1) for an - array of indefinite size - @param[in] tag_handler how CBOR tags should be treated - @return whether array creation completed - */ - bool get_cbor_array(const std::size_t len, - const cbor_tag_handler_t tag_handler) - { - if (JSON_HEDLEY_UNLIKELY(!sax->start_array(len))) - { - return false; - } - - if (len != std::size_t(-1)) - { - for (std::size_t i = 0; i < len; ++i) - { - if (JSON_HEDLEY_UNLIKELY(!parse_cbor_internal(true, tag_handler))) - { - return false; - } - } - } - else - { - while (get() != 0xFF) - { - if (JSON_HEDLEY_UNLIKELY(!parse_cbor_internal(false, tag_handler))) - { - return false; - } - } - } - - return sax->end_array(); - } - - /*! - @param[in] len the length of the object or std::size_t(-1) for an - object of indefinite size - @param[in] tag_handler how CBOR tags should be treated - @return whether object creation completed - */ - bool get_cbor_object(const std::size_t len, - const cbor_tag_handler_t tag_handler) - { - if (JSON_HEDLEY_UNLIKELY(!sax->start_object(len))) - { - return false; - } - - string_t key; - if (len != std::size_t(-1)) - { - for (std::size_t i = 0; i < len; ++i) - { - get(); - if (JSON_HEDLEY_UNLIKELY(!get_cbor_string(key) || !sax->key(key))) - { - return false; - } - - if (JSON_HEDLEY_UNLIKELY(!parse_cbor_internal(true, tag_handler))) - { - return false; - } - key.clear(); - } - } - else - { - while (get() != 0xFF) - { - if (JSON_HEDLEY_UNLIKELY(!get_cbor_string(key) || !sax->key(key))) - { - return false; - } - - if (JSON_HEDLEY_UNLIKELY(!parse_cbor_internal(true, tag_handler))) - { - return false; - } - key.clear(); - } - } - - return sax->end_object(); - } - - ///////////// - // MsgPack // - ///////////// - - /*! - @return whether a valid MessagePack value was passed to the SAX parser - */ - bool parse_msgpack_internal() - { - switch (get()) - { - // EOF - case std::char_traits::eof(): - return unexpect_eof(input_format_t::msgpack, "value"); - - // positive fixint - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case 0x09: - case 0x0A: - case 0x0B: - case 0x0C: - case 0x0D: - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case 0x20: - case 0x21: - case 0x22: - case 0x23: - case 0x24: - case 0x25: - case 0x26: - case 0x27: - case 0x28: - case 0x29: - case 0x2A: - case 0x2B: - case 0x2C: - case 0x2D: - case 0x2E: - case 0x2F: - case 0x30: - case 0x31: - case 0x32: - case 0x33: - case 0x34: - case 0x35: - case 0x36: - case 0x37: - case 0x38: - case 0x39: - case 0x3A: - case 0x3B: - case 0x3C: - case 0x3D: - case 0x3E: - case 0x3F: - case 0x40: - case 0x41: - case 0x42: - case 0x43: - case 0x44: - case 0x45: - case 0x46: - case 0x47: - case 0x48: - case 0x49: - case 0x4A: - case 0x4B: - case 0x4C: - case 0x4D: - case 0x4E: - case 0x4F: - case 0x50: - case 0x51: - case 0x52: - case 0x53: - case 0x54: - case 0x55: - case 0x56: - case 0x57: - case 0x58: - case 0x59: - case 0x5A: - case 0x5B: - case 0x5C: - case 0x5D: - case 0x5E: - case 0x5F: - case 0x60: - case 0x61: - case 0x62: - case 0x63: - case 0x64: - case 0x65: - case 0x66: - case 0x67: - case 0x68: - case 0x69: - case 0x6A: - case 0x6B: - case 0x6C: - case 0x6D: - case 0x6E: - case 0x6F: - case 0x70: - case 0x71: - case 0x72: - case 0x73: - case 0x74: - case 0x75: - case 0x76: - case 0x77: - case 0x78: - case 0x79: - case 0x7A: - case 0x7B: - case 0x7C: - case 0x7D: - case 0x7E: - case 0x7F: - return sax->number_unsigned(static_cast(current)); - - // fixmap - case 0x80: - case 0x81: - case 0x82: - case 0x83: - case 0x84: - case 0x85: - case 0x86: - case 0x87: - case 0x88: - case 0x89: - case 0x8A: - case 0x8B: - case 0x8C: - case 0x8D: - case 0x8E: - case 0x8F: - return get_msgpack_object(static_cast(static_cast(current) & 0x0Fu)); - - // fixarray - case 0x90: - case 0x91: - case 0x92: - case 0x93: - case 0x94: - case 0x95: - case 0x96: - case 0x97: - case 0x98: - case 0x99: - case 0x9A: - case 0x9B: - case 0x9C: - case 0x9D: - case 0x9E: - case 0x9F: - return get_msgpack_array(static_cast(static_cast(current) & 0x0Fu)); - - // fixstr - case 0xA0: - case 0xA1: - case 0xA2: - case 0xA3: - case 0xA4: - case 0xA5: - case 0xA6: - case 0xA7: - case 0xA8: - case 0xA9: - case 0xAA: - case 0xAB: - case 0xAC: - case 0xAD: - case 0xAE: - case 0xAF: - case 0xB0: - case 0xB1: - case 0xB2: - case 0xB3: - case 0xB4: - case 0xB5: - case 0xB6: - case 0xB7: - case 0xB8: - case 0xB9: - case 0xBA: - case 0xBB: - case 0xBC: - case 0xBD: - case 0xBE: - case 0xBF: - case 0xD9: // str 8 - case 0xDA: // str 16 - case 0xDB: // str 32 - { - string_t s; - return get_msgpack_string(s) && sax->string(s); - } - - case 0xC0: // nil - return sax->null(); - - case 0xC2: // false - return sax->boolean(false); - - case 0xC3: // true - return sax->boolean(true); - - case 0xC4: // bin 8 - case 0xC5: // bin 16 - case 0xC6: // bin 32 - case 0xC7: // ext 8 - case 0xC8: // ext 16 - case 0xC9: // ext 32 - case 0xD4: // fixext 1 - case 0xD5: // fixext 2 - case 0xD6: // fixext 4 - case 0xD7: // fixext 8 - case 0xD8: // fixext 16 - { - binary_t b; - return get_msgpack_binary(b) && sax->binary(b); - } - - case 0xCA: // float 32 - { - float number{}; - return get_number(input_format_t::msgpack, number) && sax->number_float(static_cast(number), ""); - } - - case 0xCB: // float 64 - { - double number{}; - return get_number(input_format_t::msgpack, number) && sax->number_float(static_cast(number), ""); - } - - case 0xCC: // uint 8 - { - std::uint8_t number{}; - return get_number(input_format_t::msgpack, number) && sax->number_unsigned(number); - } - - case 0xCD: // uint 16 - { - std::uint16_t number{}; - return get_number(input_format_t::msgpack, number) && sax->number_unsigned(number); - } - - case 0xCE: // uint 32 - { - std::uint32_t number{}; - return get_number(input_format_t::msgpack, number) && sax->number_unsigned(number); - } - - case 0xCF: // uint 64 - { - std::uint64_t number{}; - return get_number(input_format_t::msgpack, number) && sax->number_unsigned(number); - } - - case 0xD0: // int 8 - { - std::int8_t number{}; - return get_number(input_format_t::msgpack, number) && sax->number_integer(number); - } - - case 0xD1: // int 16 - { - std::int16_t number{}; - return get_number(input_format_t::msgpack, number) && sax->number_integer(number); - } - - case 0xD2: // int 32 - { - std::int32_t number{}; - return get_number(input_format_t::msgpack, number) && sax->number_integer(number); - } - - case 0xD3: // int 64 - { - std::int64_t number{}; - return get_number(input_format_t::msgpack, number) && sax->number_integer(number); - } - - case 0xDC: // array 16 - { - std::uint16_t len{}; - return get_number(input_format_t::msgpack, len) && get_msgpack_array(static_cast(len)); - } - - case 0xDD: // array 32 - { - std::uint32_t len{}; - return get_number(input_format_t::msgpack, len) && get_msgpack_array(static_cast(len)); - } - - case 0xDE: // map 16 - { - std::uint16_t len{}; - return get_number(input_format_t::msgpack, len) && get_msgpack_object(static_cast(len)); - } - - case 0xDF: // map 32 - { - std::uint32_t len{}; - return get_number(input_format_t::msgpack, len) && get_msgpack_object(static_cast(len)); - } - - // negative fixint - case 0xE0: - case 0xE1: - case 0xE2: - case 0xE3: - case 0xE4: - case 0xE5: - case 0xE6: - case 0xE7: - case 0xE8: - case 0xE9: - case 0xEA: - case 0xEB: - case 0xEC: - case 0xED: - case 0xEE: - case 0xEF: - case 0xF0: - case 0xF1: - case 0xF2: - case 0xF3: - case 0xF4: - case 0xF5: - case 0xF6: - case 0xF7: - case 0xF8: - case 0xF9: - case 0xFA: - case 0xFB: - case 0xFC: - case 0xFD: - case 0xFE: - case 0xFF: - return sax->number_integer(static_cast(current)); - - default: // anything else - { - auto last_token = get_token_string(); - return sax->parse_error(chars_read, last_token, parse_error::create(112, chars_read, exception_message(input_format_t::msgpack, "invalid byte: 0x" + last_token, "value"))); - } - } - } - - /*! - @brief reads a MessagePack string - - This function first reads starting bytes to determine the expected - string length and then copies this number of bytes into a string. - - @param[out] result created string - - @return whether string creation completed - */ - bool get_msgpack_string(string_t& result) - { - if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::msgpack, "string"))) - { - return false; - } - - switch (current) - { - // fixstr - case 0xA0: - case 0xA1: - case 0xA2: - case 0xA3: - case 0xA4: - case 0xA5: - case 0xA6: - case 0xA7: - case 0xA8: - case 0xA9: - case 0xAA: - case 0xAB: - case 0xAC: - case 0xAD: - case 0xAE: - case 0xAF: - case 0xB0: - case 0xB1: - case 0xB2: - case 0xB3: - case 0xB4: - case 0xB5: - case 0xB6: - case 0xB7: - case 0xB8: - case 0xB9: - case 0xBA: - case 0xBB: - case 0xBC: - case 0xBD: - case 0xBE: - case 0xBF: - { - return get_string(input_format_t::msgpack, static_cast(current) & 0x1Fu, result); - } - - case 0xD9: // str 8 - { - std::uint8_t len{}; - return get_number(input_format_t::msgpack, len) && get_string(input_format_t::msgpack, len, result); - } - - case 0xDA: // str 16 - { - std::uint16_t len{}; - return get_number(input_format_t::msgpack, len) && get_string(input_format_t::msgpack, len, result); - } - - case 0xDB: // str 32 - { - std::uint32_t len{}; - return get_number(input_format_t::msgpack, len) && get_string(input_format_t::msgpack, len, result); - } - - default: - { - auto last_token = get_token_string(); - return sax->parse_error(chars_read, last_token, parse_error::create(113, chars_read, exception_message(input_format_t::msgpack, "expected length specification (0xA0-0xBF, 0xD9-0xDB); last byte: 0x" + last_token, "string"))); - } - } - } - - /*! - @brief reads a MessagePack byte array - - This function first reads starting bytes to determine the expected - byte array length and then copies this number of bytes into a byte array. - - @param[out] result created byte array - - @return whether byte array creation completed - */ - bool get_msgpack_binary(binary_t& result) - { - // helper function to set the subtype - auto assign_and_return_true = [&result](std::int8_t subtype) - { - result.set_subtype(static_cast(subtype)); - return true; - }; - - switch (current) - { - case 0xC4: // bin 8 - { - std::uint8_t len{}; - return get_number(input_format_t::msgpack, len) && - get_binary(input_format_t::msgpack, len, result); - } - - case 0xC5: // bin 16 - { - std::uint16_t len{}; - return get_number(input_format_t::msgpack, len) && - get_binary(input_format_t::msgpack, len, result); - } - - case 0xC6: // bin 32 - { - std::uint32_t len{}; - return get_number(input_format_t::msgpack, len) && - get_binary(input_format_t::msgpack, len, result); - } - - case 0xC7: // ext 8 - { - std::uint8_t len{}; - std::int8_t subtype{}; - return get_number(input_format_t::msgpack, len) && - get_number(input_format_t::msgpack, subtype) && - get_binary(input_format_t::msgpack, len, result) && - assign_and_return_true(subtype); - } - - case 0xC8: // ext 16 - { - std::uint16_t len{}; - std::int8_t subtype{}; - return get_number(input_format_t::msgpack, len) && - get_number(input_format_t::msgpack, subtype) && - get_binary(input_format_t::msgpack, len, result) && - assign_and_return_true(subtype); - } - - case 0xC9: // ext 32 - { - std::uint32_t len{}; - std::int8_t subtype{}; - return get_number(input_format_t::msgpack, len) && - get_number(input_format_t::msgpack, subtype) && - get_binary(input_format_t::msgpack, len, result) && - assign_and_return_true(subtype); - } - - case 0xD4: // fixext 1 - { - std::int8_t subtype{}; - return get_number(input_format_t::msgpack, subtype) && - get_binary(input_format_t::msgpack, 1, result) && - assign_and_return_true(subtype); - } - - case 0xD5: // fixext 2 - { - std::int8_t subtype{}; - return get_number(input_format_t::msgpack, subtype) && - get_binary(input_format_t::msgpack, 2, result) && - assign_and_return_true(subtype); - } - - case 0xD6: // fixext 4 - { - std::int8_t subtype{}; - return get_number(input_format_t::msgpack, subtype) && - get_binary(input_format_t::msgpack, 4, result) && - assign_and_return_true(subtype); - } - - case 0xD7: // fixext 8 - { - std::int8_t subtype{}; - return get_number(input_format_t::msgpack, subtype) && - get_binary(input_format_t::msgpack, 8, result) && - assign_and_return_true(subtype); - } - - case 0xD8: // fixext 16 - { - std::int8_t subtype{}; - return get_number(input_format_t::msgpack, subtype) && - get_binary(input_format_t::msgpack, 16, result) && - assign_and_return_true(subtype); - } - - default: // LCOV_EXCL_LINE - return false; // LCOV_EXCL_LINE - } - } - - /*! - @param[in] len the length of the array - @return whether array creation completed - */ - bool get_msgpack_array(const std::size_t len) - { - if (JSON_HEDLEY_UNLIKELY(!sax->start_array(len))) - { - return false; - } - - for (std::size_t i = 0; i < len; ++i) - { - if (JSON_HEDLEY_UNLIKELY(!parse_msgpack_internal())) - { - return false; - } - } - - return sax->end_array(); - } - - /*! - @param[in] len the length of the object - @return whether object creation completed - */ - bool get_msgpack_object(const std::size_t len) - { - if (JSON_HEDLEY_UNLIKELY(!sax->start_object(len))) - { - return false; - } - - string_t key; - for (std::size_t i = 0; i < len; ++i) - { - get(); - if (JSON_HEDLEY_UNLIKELY(!get_msgpack_string(key) || !sax->key(key))) - { - return false; - } - - if (JSON_HEDLEY_UNLIKELY(!parse_msgpack_internal())) - { - return false; - } - key.clear(); - } - - return sax->end_object(); - } - - //////////// - // UBJSON // - //////////// - - /*! - @param[in] get_char whether a new character should be retrieved from the - input (true, default) or whether the last read - character should be considered instead - - @return whether a valid UBJSON value was passed to the SAX parser - */ - bool parse_ubjson_internal(const bool get_char = true) - { - return get_ubjson_value(get_char ? get_ignore_noop() : current); - } - - /*! - @brief reads a UBJSON string - - This function is either called after reading the 'S' byte explicitly - indicating a string, or in case of an object key where the 'S' byte can be - left out. - - @param[out] result created string - @param[in] get_char whether a new character should be retrieved from the - input (true, default) or whether the last read - character should be considered instead - - @return whether string creation completed - */ - bool get_ubjson_string(string_t& result, const bool get_char = true) - { - if (get_char) - { - get(); // TODO(niels): may we ignore N here? - } - - if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::ubjson, "value"))) - { - return false; - } - - switch (current) - { - case 'U': - { - std::uint8_t len{}; - return get_number(input_format_t::ubjson, len) && get_string(input_format_t::ubjson, len, result); - } - - case 'i': - { - std::int8_t len{}; - return get_number(input_format_t::ubjson, len) && get_string(input_format_t::ubjson, len, result); - } - - case 'I': - { - std::int16_t len{}; - return get_number(input_format_t::ubjson, len) && get_string(input_format_t::ubjson, len, result); - } - - case 'l': - { - std::int32_t len{}; - return get_number(input_format_t::ubjson, len) && get_string(input_format_t::ubjson, len, result); - } - - case 'L': - { - std::int64_t len{}; - return get_number(input_format_t::ubjson, len) && get_string(input_format_t::ubjson, len, result); - } - - default: - auto last_token = get_token_string(); - return sax->parse_error(chars_read, last_token, parse_error::create(113, chars_read, exception_message(input_format_t::ubjson, "expected length type specification (U, i, I, l, L); last byte: 0x" + last_token, "string"))); - } - } - - /*! - @param[out] result determined size - @return whether size determination completed - */ - bool get_ubjson_size_value(std::size_t& result) - { - switch (get_ignore_noop()) - { - case 'U': - { - std::uint8_t number{}; - if (JSON_HEDLEY_UNLIKELY(!get_number(input_format_t::ubjson, number))) - { - return false; - } - result = static_cast(number); - return true; - } - - case 'i': - { - std::int8_t number{}; - if (JSON_HEDLEY_UNLIKELY(!get_number(input_format_t::ubjson, number))) - { - return false; - } - result = static_cast(number); - return true; - } - - case 'I': - { - std::int16_t number{}; - if (JSON_HEDLEY_UNLIKELY(!get_number(input_format_t::ubjson, number))) - { - return false; - } - result = static_cast(number); - return true; - } - - case 'l': - { - std::int32_t number{}; - if (JSON_HEDLEY_UNLIKELY(!get_number(input_format_t::ubjson, number))) - { - return false; - } - result = static_cast(number); - return true; - } - - case 'L': - { - std::int64_t number{}; - if (JSON_HEDLEY_UNLIKELY(!get_number(input_format_t::ubjson, number))) - { - return false; - } - result = static_cast(number); - return true; - } - - default: - { - auto last_token = get_token_string(); - return sax->parse_error(chars_read, last_token, parse_error::create(113, chars_read, exception_message(input_format_t::ubjson, "expected length type specification (U, i, I, l, L) after '#'; last byte: 0x" + last_token, "size"))); - } - } - } - - /*! - @brief determine the type and size for a container - - In the optimized UBJSON format, a type and a size can be provided to allow - for a more compact representation. - - @param[out] result pair of the size and the type - - @return whether pair creation completed - */ - bool get_ubjson_size_type(std::pair& result) - { - result.first = string_t::npos; // size - result.second = 0; // type - - get_ignore_noop(); - - if (current == '$') - { - result.second = get(); // must not ignore 'N', because 'N' maybe the type - if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::ubjson, "type"))) - { - return false; - } - - get_ignore_noop(); - if (JSON_HEDLEY_UNLIKELY(current != '#')) - { - if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::ubjson, "value"))) - { - return false; - } - auto last_token = get_token_string(); - return sax->parse_error(chars_read, last_token, parse_error::create(112, chars_read, exception_message(input_format_t::ubjson, "expected '#' after type information; last byte: 0x" + last_token, "size"))); - } - - return get_ubjson_size_value(result.first); - } - - if (current == '#') - { - return get_ubjson_size_value(result.first); - } - - return true; - } - - /*! - @param prefix the previously read or set type prefix - @return whether value creation completed - */ - bool get_ubjson_value(const char_int_type prefix) - { - switch (prefix) - { - case std::char_traits::eof(): // EOF - return unexpect_eof(input_format_t::ubjson, "value"); - - case 'T': // true - return sax->boolean(true); - case 'F': // false - return sax->boolean(false); - - case 'Z': // null - return sax->null(); - - case 'U': - { - std::uint8_t number{}; - return get_number(input_format_t::ubjson, number) && sax->number_unsigned(number); - } - - case 'i': - { - std::int8_t number{}; - return get_number(input_format_t::ubjson, number) && sax->number_integer(number); - } - - case 'I': - { - std::int16_t number{}; - return get_number(input_format_t::ubjson, number) && sax->number_integer(number); - } - - case 'l': - { - std::int32_t number{}; - return get_number(input_format_t::ubjson, number) && sax->number_integer(number); - } - - case 'L': - { - std::int64_t number{}; - return get_number(input_format_t::ubjson, number) && sax->number_integer(number); - } - - case 'd': - { - float number{}; - return get_number(input_format_t::ubjson, number) && sax->number_float(static_cast(number), ""); - } - - case 'D': - { - double number{}; - return get_number(input_format_t::ubjson, number) && sax->number_float(static_cast(number), ""); - } - - case 'H': - { - return get_ubjson_high_precision_number(); - } - - case 'C': // char - { - get(); - if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::ubjson, "char"))) - { - return false; - } - if (JSON_HEDLEY_UNLIKELY(current > 127)) - { - auto last_token = get_token_string(); - return sax->parse_error(chars_read, last_token, parse_error::create(113, chars_read, exception_message(input_format_t::ubjson, "byte after 'C' must be in range 0x00..0x7F; last byte: 0x" + last_token, "char"))); - } - string_t s(1, static_cast(current)); - return sax->string(s); - } - - case 'S': // string - { - string_t s; - return get_ubjson_string(s) && sax->string(s); - } - - case '[': // array - return get_ubjson_array(); - - case '{': // object - return get_ubjson_object(); - - default: // anything else - { - auto last_token = get_token_string(); - return sax->parse_error(chars_read, last_token, parse_error::create(112, chars_read, exception_message(input_format_t::ubjson, "invalid byte: 0x" + last_token, "value"))); - } - } - } - - /*! - @return whether array creation completed - */ - bool get_ubjson_array() - { - std::pair size_and_type; - if (JSON_HEDLEY_UNLIKELY(!get_ubjson_size_type(size_and_type))) - { - return false; - } - - if (size_and_type.first != string_t::npos) - { - if (JSON_HEDLEY_UNLIKELY(!sax->start_array(size_and_type.first))) - { - return false; - } - - if (size_and_type.second != 0) - { - if (size_and_type.second != 'N') - { - for (std::size_t i = 0; i < size_and_type.first; ++i) - { - if (JSON_HEDLEY_UNLIKELY(!get_ubjson_value(size_and_type.second))) - { - return false; - } - } - } - } - else - { - for (std::size_t i = 0; i < size_and_type.first; ++i) - { - if (JSON_HEDLEY_UNLIKELY(!parse_ubjson_internal())) - { - return false; - } - } - } - } - else - { - if (JSON_HEDLEY_UNLIKELY(!sax->start_array(std::size_t(-1)))) - { - return false; - } - - while (current != ']') - { - if (JSON_HEDLEY_UNLIKELY(!parse_ubjson_internal(false))) - { - return false; - } - get_ignore_noop(); - } - } - - return sax->end_array(); - } - - /*! - @return whether object creation completed - */ - bool get_ubjson_object() - { - std::pair size_and_type; - if (JSON_HEDLEY_UNLIKELY(!get_ubjson_size_type(size_and_type))) - { - return false; - } - - string_t key; - if (size_and_type.first != string_t::npos) - { - if (JSON_HEDLEY_UNLIKELY(!sax->start_object(size_and_type.first))) - { - return false; - } - - if (size_and_type.second != 0) - { - for (std::size_t i = 0; i < size_and_type.first; ++i) - { - if (JSON_HEDLEY_UNLIKELY(!get_ubjson_string(key) || !sax->key(key))) - { - return false; - } - if (JSON_HEDLEY_UNLIKELY(!get_ubjson_value(size_and_type.second))) - { - return false; - } - key.clear(); - } - } - else - { - for (std::size_t i = 0; i < size_and_type.first; ++i) - { - if (JSON_HEDLEY_UNLIKELY(!get_ubjson_string(key) || !sax->key(key))) - { - return false; - } - if (JSON_HEDLEY_UNLIKELY(!parse_ubjson_internal())) - { - return false; - } - key.clear(); - } - } - } - else - { - if (JSON_HEDLEY_UNLIKELY(!sax->start_object(std::size_t(-1)))) - { - return false; - } - - while (current != '}') - { - if (JSON_HEDLEY_UNLIKELY(!get_ubjson_string(key, false) || !sax->key(key))) - { - return false; - } - if (JSON_HEDLEY_UNLIKELY(!parse_ubjson_internal())) - { - return false; - } - get_ignore_noop(); - key.clear(); - } - } - - return sax->end_object(); - } - - // Note, no reader for UBJSON binary types is implemented because they do - // not exist - - bool get_ubjson_high_precision_number() - { - // get size of following number string - std::size_t size{}; - auto res = get_ubjson_size_value(size); - if (JSON_HEDLEY_UNLIKELY(!res)) - { - return res; - } - - // get number string - std::vector number_vector; - for (std::size_t i = 0; i < size; ++i) - { - get(); - if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::ubjson, "number"))) - { - return false; - } - number_vector.push_back(static_cast(current)); - } - - // parse number string - auto number_ia = detail::input_adapter(std::forward(number_vector)); - auto number_lexer = detail::lexer(std::move(number_ia), false); - const auto result_number = number_lexer.scan(); - const auto number_string = number_lexer.get_token_string(); - const auto result_remainder = number_lexer.scan(); - - using token_type = typename detail::lexer_base::token_type; - - if (JSON_HEDLEY_UNLIKELY(result_remainder != token_type::end_of_input)) - { - return sax->parse_error(chars_read, number_string, parse_error::create(115, chars_read, exception_message(input_format_t::ubjson, "invalid number text: " + number_lexer.get_token_string(), "high-precision number"))); - } - - switch (result_number) - { - case token_type::value_integer: - return sax->number_integer(number_lexer.get_number_integer()); - case token_type::value_unsigned: - return sax->number_unsigned(number_lexer.get_number_unsigned()); - case token_type::value_float: - return sax->number_float(number_lexer.get_number_float(), std::move(number_string)); - default: - return sax->parse_error(chars_read, number_string, parse_error::create(115, chars_read, exception_message(input_format_t::ubjson, "invalid number text: " + number_lexer.get_token_string(), "high-precision number"))); - } - } - - /////////////////////// - // Utility functions // - /////////////////////// - - /*! - @brief get next character from the input - - This function provides the interface to the used input adapter. It does - not throw in case the input reached EOF, but returns a -'ve valued - `std::char_traits::eof()` in that case. - - @return character read from the input - */ - char_int_type get() - { - ++chars_read; - return current = ia.get_character(); - } - - /*! - @return character read from the input after ignoring all 'N' entries - */ - char_int_type get_ignore_noop() - { - do - { - get(); - } - while (current == 'N'); - - return current; - } - - /* - @brief read a number from the input - - @tparam NumberType the type of the number - @param[in] format the current format (for diagnostics) - @param[out] result number of type @a NumberType - - @return whether conversion completed - - @note This function needs to respect the system's endianess, because - bytes in CBOR, MessagePack, and UBJSON are stored in network order - (big endian) and therefore need reordering on little endian systems. - */ - template - bool get_number(const input_format_t format, NumberType& result) - { - // step 1: read input into array with system's byte order - std::array vec; - for (std::size_t i = 0; i < sizeof(NumberType); ++i) - { - get(); - if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(format, "number"))) - { - return false; - } - - // reverse byte order prior to conversion if necessary - if (is_little_endian != InputIsLittleEndian) - { - vec[sizeof(NumberType) - i - 1] = static_cast(current); - } - else - { - vec[i] = static_cast(current); // LCOV_EXCL_LINE - } - } - - // step 2: convert array into number of type T and return - std::memcpy(&result, vec.data(), sizeof(NumberType)); - return true; - } - - /*! - @brief create a string by reading characters from the input - - @tparam NumberType the type of the number - @param[in] format the current format (for diagnostics) - @param[in] len number of characters to read - @param[out] result string created by reading @a len bytes - - @return whether string creation completed - - @note We can not reserve @a len bytes for the result, because @a len - may be too large. Usually, @ref unexpect_eof() detects the end of - the input before we run out of string memory. - */ - template - bool get_string(const input_format_t format, - const NumberType len, - string_t& result) - { - bool success = true; - for (NumberType i = 0; i < len; i++) - { - get(); - if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(format, "string"))) - { - success = false; - break; - } - result.push_back(static_cast(current)); - }; - return success; - } - - /*! - @brief create a byte array by reading bytes from the input - - @tparam NumberType the type of the number - @param[in] format the current format (for diagnostics) - @param[in] len number of bytes to read - @param[out] result byte array created by reading @a len bytes - - @return whether byte array creation completed - - @note We can not reserve @a len bytes for the result, because @a len - may be too large. Usually, @ref unexpect_eof() detects the end of - the input before we run out of memory. - */ - template - bool get_binary(const input_format_t format, - const NumberType len, - binary_t& result) - { - bool success = true; - for (NumberType i = 0; i < len; i++) - { - get(); - if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(format, "binary"))) - { - success = false; - break; - } - result.push_back(static_cast(current)); - } - return success; - } - - /*! - @param[in] format the current format (for diagnostics) - @param[in] context further context information (for diagnostics) - @return whether the last read character is not EOF - */ - JSON_HEDLEY_NON_NULL(3) - bool unexpect_eof(const input_format_t format, const char* context) const - { - if (JSON_HEDLEY_UNLIKELY(current == std::char_traits::eof())) - { - return sax->parse_error(chars_read, "", - parse_error::create(110, chars_read, exception_message(format, "unexpected end of input", context))); - } - return true; - } - - /*! - @return a string representation of the last read byte - */ - std::string get_token_string() const - { - std::array cr{{}}; - (std::snprintf)(cr.data(), cr.size(), "%.2hhX", static_cast(current)); - return std::string{cr.data()}; - } - - /*! - @param[in] format the current format - @param[in] detail a detailed error message - @param[in] context further context information - @return a message string to use in the parse_error exceptions - */ - std::string exception_message(const input_format_t format, - const std::string& detail, - const std::string& context) const - { - std::string error_msg = "syntax error while parsing "; - - switch (format) - { - case input_format_t::cbor: - error_msg += "CBOR"; - break; - - case input_format_t::msgpack: - error_msg += "MessagePack"; - break; - - case input_format_t::ubjson: - error_msg += "UBJSON"; - break; - - case input_format_t::bson: - error_msg += "BSON"; - break; - - default: // LCOV_EXCL_LINE - JSON_ASSERT(false); // LCOV_EXCL_LINE - } - - return error_msg + " " + context + ": " + detail; - } - - private: - /// input adapter - InputAdapterType ia; - - /// the current character - char_int_type current = std::char_traits::eof(); - - /// the number of characters read - std::size_t chars_read = 0; - - /// whether we can assume little endianess - const bool is_little_endian = little_endianess(); - - /// the SAX parser - json_sax_t* sax = nullptr; -}; -} // namespace detail -} // namespace nlohmann - -// #include - -// #include - -// #include - - -#include // isfinite -#include // uint8_t -#include // function -#include // string -#include // move -#include // vector - -// #include - -// #include - -// #include - -// #include - -// #include - -// #include - -// #include - - -namespace nlohmann -{ -namespace detail -{ -//////////// -// parser // -//////////// - -enum class parse_event_t : uint8_t -{ - /// the parser read `{` and started to process a JSON object - object_start, - /// the parser read `}` and finished processing a JSON object - object_end, - /// the parser read `[` and started to process a JSON array - array_start, - /// the parser read `]` and finished processing a JSON array - array_end, - /// the parser read a key of a value in an object - key, - /// the parser finished reading a JSON value - value -}; - -template -using parser_callback_t = - std::function; - -/*! -@brief syntax analysis - -This class implements a recursive descent parser. -*/ -template -class parser -{ - using number_integer_t = typename BasicJsonType::number_integer_t; - using number_unsigned_t = typename BasicJsonType::number_unsigned_t; - using number_float_t = typename BasicJsonType::number_float_t; - using string_t = typename BasicJsonType::string_t; - using lexer_t = lexer; - using token_type = typename lexer_t::token_type; - - public: - /// a parser reading from an input adapter - explicit parser(InputAdapterType&& adapter, - const parser_callback_t cb = nullptr, - const bool allow_exceptions_ = true, - const bool skip_comments = false) - : callback(cb) - , m_lexer(std::move(adapter), skip_comments) - , allow_exceptions(allow_exceptions_) - { - // read first token - get_token(); - } - - /*! - @brief public parser interface - - @param[in] strict whether to expect the last token to be EOF - @param[in,out] result parsed JSON value - - @throw parse_error.101 in case of an unexpected token - @throw parse_error.102 if to_unicode fails or surrogate error - @throw parse_error.103 if to_unicode fails - */ - void parse(const bool strict, BasicJsonType& result) - { - if (callback) - { - json_sax_dom_callback_parser sdp(result, callback, allow_exceptions); - sax_parse_internal(&sdp); - result.assert_invariant(); - - // in strict mode, input must be completely read - if (strict && (get_token() != token_type::end_of_input)) - { - sdp.parse_error(m_lexer.get_position(), - m_lexer.get_token_string(), - parse_error::create(101, m_lexer.get_position(), - exception_message(token_type::end_of_input, "value"))); - } - - // in case of an error, return discarded value - if (sdp.is_errored()) - { - result = value_t::discarded; - return; - } - - // set top-level value to null if it was discarded by the callback - // function - if (result.is_discarded()) - { - result = nullptr; - } - } - else - { - json_sax_dom_parser sdp(result, allow_exceptions); - sax_parse_internal(&sdp); - result.assert_invariant(); - - // in strict mode, input must be completely read - if (strict && (get_token() != token_type::end_of_input)) - { - sdp.parse_error(m_lexer.get_position(), - m_lexer.get_token_string(), - parse_error::create(101, m_lexer.get_position(), - exception_message(token_type::end_of_input, "value"))); - } - - // in case of an error, return discarded value - if (sdp.is_errored()) - { - result = value_t::discarded; - return; - } - } - } - - /*! - @brief public accept interface - - @param[in] strict whether to expect the last token to be EOF - @return whether the input is a proper JSON text - */ - bool accept(const bool strict = true) - { - json_sax_acceptor sax_acceptor; - return sax_parse(&sax_acceptor, strict); - } - - template - JSON_HEDLEY_NON_NULL(2) - bool sax_parse(SAX* sax, const bool strict = true) - { - (void)detail::is_sax_static_asserts {}; - const bool result = sax_parse_internal(sax); - - // strict mode: next byte must be EOF - if (result && strict && (get_token() != token_type::end_of_input)) - { - return sax->parse_error(m_lexer.get_position(), - m_lexer.get_token_string(), - parse_error::create(101, m_lexer.get_position(), - exception_message(token_type::end_of_input, "value"))); - } - - return result; - } - - private: - template - JSON_HEDLEY_NON_NULL(2) - bool sax_parse_internal(SAX* sax) - { - // stack to remember the hierarchy of structured values we are parsing - // true = array; false = object - std::vector states; - // value to avoid a goto (see comment where set to true) - bool skip_to_state_evaluation = false; - - while (true) - { - if (!skip_to_state_evaluation) - { - // invariant: get_token() was called before each iteration - switch (last_token) - { - case token_type::begin_object: - { - if (JSON_HEDLEY_UNLIKELY(!sax->start_object(std::size_t(-1)))) - { - return false; - } - - // closing } -> we are done - if (get_token() == token_type::end_object) - { - if (JSON_HEDLEY_UNLIKELY(!sax->end_object())) - { - return false; - } - break; - } - - // parse key - if (JSON_HEDLEY_UNLIKELY(last_token != token_type::value_string)) - { - return sax->parse_error(m_lexer.get_position(), - m_lexer.get_token_string(), - parse_error::create(101, m_lexer.get_position(), - exception_message(token_type::value_string, "object key"))); - } - if (JSON_HEDLEY_UNLIKELY(!sax->key(m_lexer.get_string()))) - { - return false; - } - - // parse separator (:) - if (JSON_HEDLEY_UNLIKELY(get_token() != token_type::name_separator)) - { - return sax->parse_error(m_lexer.get_position(), - m_lexer.get_token_string(), - parse_error::create(101, m_lexer.get_position(), - exception_message(token_type::name_separator, "object separator"))); - } - - // remember we are now inside an object - states.push_back(false); - - // parse values - get_token(); - continue; - } - - case token_type::begin_array: - { - if (JSON_HEDLEY_UNLIKELY(!sax->start_array(std::size_t(-1)))) - { - return false; - } - - // closing ] -> we are done - if (get_token() == token_type::end_array) - { - if (JSON_HEDLEY_UNLIKELY(!sax->end_array())) - { - return false; - } - break; - } - - // remember we are now inside an array - states.push_back(true); - - // parse values (no need to call get_token) - continue; - } - - case token_type::value_float: - { - const auto res = m_lexer.get_number_float(); - - if (JSON_HEDLEY_UNLIKELY(!std::isfinite(res))) - { - return sax->parse_error(m_lexer.get_position(), - m_lexer.get_token_string(), - out_of_range::create(406, "number overflow parsing '" + m_lexer.get_token_string() + "'")); - } - - if (JSON_HEDLEY_UNLIKELY(!sax->number_float(res, m_lexer.get_string()))) - { - return false; - } - - break; - } - - case token_type::literal_false: - { - if (JSON_HEDLEY_UNLIKELY(!sax->boolean(false))) - { - return false; - } - break; - } - - case token_type::literal_null: - { - if (JSON_HEDLEY_UNLIKELY(!sax->null())) - { - return false; - } - break; - } - - case token_type::literal_true: - { - if (JSON_HEDLEY_UNLIKELY(!sax->boolean(true))) - { - return false; - } - break; - } - - case token_type::value_integer: - { - if (JSON_HEDLEY_UNLIKELY(!sax->number_integer(m_lexer.get_number_integer()))) - { - return false; - } - break; - } - - case token_type::value_string: - { - if (JSON_HEDLEY_UNLIKELY(!sax->string(m_lexer.get_string()))) - { - return false; - } - break; - } - - case token_type::value_unsigned: - { - if (JSON_HEDLEY_UNLIKELY(!sax->number_unsigned(m_lexer.get_number_unsigned()))) - { - return false; - } - break; - } - - case token_type::parse_error: - { - // using "uninitialized" to avoid "expected" message - return sax->parse_error(m_lexer.get_position(), - m_lexer.get_token_string(), - parse_error::create(101, m_lexer.get_position(), - exception_message(token_type::uninitialized, "value"))); - } - - default: // the last token was unexpected - { - return sax->parse_error(m_lexer.get_position(), - m_lexer.get_token_string(), - parse_error::create(101, m_lexer.get_position(), - exception_message(token_type::literal_or_value, "value"))); - } - } - } - else - { - skip_to_state_evaluation = false; - } - - // we reached this line after we successfully parsed a value - if (states.empty()) - { - // empty stack: we reached the end of the hierarchy: done - return true; - } - - if (states.back()) // array - { - // comma -> next value - if (get_token() == token_type::value_separator) - { - // parse a new value - get_token(); - continue; - } - - // closing ] - if (JSON_HEDLEY_LIKELY(last_token == token_type::end_array)) - { - if (JSON_HEDLEY_UNLIKELY(!sax->end_array())) - { - return false; - } - - // We are done with this array. Before we can parse a - // new value, we need to evaluate the new state first. - // By setting skip_to_state_evaluation to false, we - // are effectively jumping to the beginning of this if. - JSON_ASSERT(!states.empty()); - states.pop_back(); - skip_to_state_evaluation = true; - continue; - } - - return sax->parse_error(m_lexer.get_position(), - m_lexer.get_token_string(), - parse_error::create(101, m_lexer.get_position(), - exception_message(token_type::end_array, "array"))); - } - else // object - { - // comma -> next value - if (get_token() == token_type::value_separator) - { - // parse key - if (JSON_HEDLEY_UNLIKELY(get_token() != token_type::value_string)) - { - return sax->parse_error(m_lexer.get_position(), - m_lexer.get_token_string(), - parse_error::create(101, m_lexer.get_position(), - exception_message(token_type::value_string, "object key"))); - } - - if (JSON_HEDLEY_UNLIKELY(!sax->key(m_lexer.get_string()))) - { - return false; - } - - // parse separator (:) - if (JSON_HEDLEY_UNLIKELY(get_token() != token_type::name_separator)) - { - return sax->parse_error(m_lexer.get_position(), - m_lexer.get_token_string(), - parse_error::create(101, m_lexer.get_position(), - exception_message(token_type::name_separator, "object separator"))); - } - - // parse values - get_token(); - continue; - } - - // closing } - if (JSON_HEDLEY_LIKELY(last_token == token_type::end_object)) - { - if (JSON_HEDLEY_UNLIKELY(!sax->end_object())) - { - return false; - } - - // We are done with this object. Before we can parse a - // new value, we need to evaluate the new state first. - // By setting skip_to_state_evaluation to false, we - // are effectively jumping to the beginning of this if. - JSON_ASSERT(!states.empty()); - states.pop_back(); - skip_to_state_evaluation = true; - continue; - } - - return sax->parse_error(m_lexer.get_position(), - m_lexer.get_token_string(), - parse_error::create(101, m_lexer.get_position(), - exception_message(token_type::end_object, "object"))); - } - } - } - - /// get next token from lexer - token_type get_token() - { - return last_token = m_lexer.scan(); - } - - std::string exception_message(const token_type expected, const std::string& context) - { - std::string error_msg = "syntax error "; - - if (!context.empty()) - { - error_msg += "while parsing " + context + " "; - } - - error_msg += "- "; - - if (last_token == token_type::parse_error) - { - error_msg += std::string(m_lexer.get_error_message()) + "; last read: '" + - m_lexer.get_token_string() + "'"; - } - else - { - error_msg += "unexpected " + std::string(lexer_t::token_type_name(last_token)); - } - - if (expected != token_type::uninitialized) - { - error_msg += "; expected " + std::string(lexer_t::token_type_name(expected)); - } - - return error_msg; - } - - private: - /// callback function - const parser_callback_t callback = nullptr; - /// the type of the last read token - token_type last_token = token_type::uninitialized; - /// the lexer - lexer_t m_lexer; - /// whether to throw exceptions in case of errors - const bool allow_exceptions = true; -}; -} // namespace detail -} // namespace nlohmann - -// #include - - -// #include - - -#include // ptrdiff_t -#include // numeric_limits - -namespace nlohmann -{ -namespace detail -{ -/* -@brief an iterator for primitive JSON types - -This class models an iterator for primitive JSON types (boolean, number, -string). It's only purpose is to allow the iterator/const_iterator classes -to "iterate" over primitive values. Internally, the iterator is modeled by -a `difference_type` variable. Value begin_value (`0`) models the begin, -end_value (`1`) models past the end. -*/ -class primitive_iterator_t -{ - private: - using difference_type = std::ptrdiff_t; - static constexpr difference_type begin_value = 0; - static constexpr difference_type end_value = begin_value + 1; - - /// iterator as signed integer type - difference_type m_it = (std::numeric_limits::min)(); - - public: - constexpr difference_type get_value() const noexcept - { - return m_it; - } - - /// set iterator to a defined beginning - void set_begin() noexcept - { - m_it = begin_value; - } - - /// set iterator to a defined past the end - void set_end() noexcept - { - m_it = end_value; - } - - /// return whether the iterator can be dereferenced - constexpr bool is_begin() const noexcept - { - return m_it == begin_value; - } - - /// return whether the iterator is at end - constexpr bool is_end() const noexcept - { - return m_it == end_value; - } - - friend constexpr bool operator==(primitive_iterator_t lhs, primitive_iterator_t rhs) noexcept - { - return lhs.m_it == rhs.m_it; - } - - friend constexpr bool operator<(primitive_iterator_t lhs, primitive_iterator_t rhs) noexcept - { - return lhs.m_it < rhs.m_it; - } - - primitive_iterator_t operator+(difference_type n) noexcept - { - auto result = *this; - result += n; - return result; - } - - friend constexpr difference_type operator-(primitive_iterator_t lhs, primitive_iterator_t rhs) noexcept - { - return lhs.m_it - rhs.m_it; - } - - primitive_iterator_t& operator++() noexcept - { - ++m_it; - return *this; - } - - primitive_iterator_t const operator++(int) noexcept - { - auto result = *this; - ++m_it; - return result; - } - - primitive_iterator_t& operator--() noexcept - { - --m_it; - return *this; - } - - primitive_iterator_t const operator--(int) noexcept - { - auto result = *this; - --m_it; - return result; - } - - primitive_iterator_t& operator+=(difference_type n) noexcept - { - m_it += n; - return *this; - } - - primitive_iterator_t& operator-=(difference_type n) noexcept - { - m_it -= n; - return *this; - } -}; -} // namespace detail -} // namespace nlohmann - - -namespace nlohmann -{ -namespace detail -{ -/*! -@brief an iterator value - -@note This structure could easily be a union, but MSVC currently does not allow -unions members with complex constructors, see https://github.com/nlohmann/json/pull/105. -*/ -template struct internal_iterator -{ - /// iterator for JSON objects - typename BasicJsonType::object_t::iterator object_iterator {}; - /// iterator for JSON arrays - typename BasicJsonType::array_t::iterator array_iterator {}; - /// generic iterator for all other types - primitive_iterator_t primitive_iterator {}; -}; -} // namespace detail -} // namespace nlohmann - -// #include - - -#include // iterator, random_access_iterator_tag, bidirectional_iterator_tag, advance, next -#include // conditional, is_const, remove_const - -// #include - -// #include - -// #include - -// #include - -// #include - -// #include - -// #include - - -namespace nlohmann -{ -namespace detail -{ -// forward declare, to be able to friend it later on -template class iteration_proxy; -template class iteration_proxy_value; - -/*! -@brief a template for a bidirectional iterator for the @ref basic_json class -This class implements a both iterators (iterator and const_iterator) for the -@ref basic_json class. -@note An iterator is called *initialized* when a pointer to a JSON value has - been set (e.g., by a constructor or a copy assignment). If the iterator is - default-constructed, it is *uninitialized* and most methods are undefined. - **The library uses assertions to detect calls on uninitialized iterators.** -@requirement The class satisfies the following concept requirements: -- -[BidirectionalIterator](https://en.cppreference.com/w/cpp/named_req/BidirectionalIterator): - The iterator that can be moved can be moved in both directions (i.e. - incremented and decremented). -@since version 1.0.0, simplified in version 2.0.9, change to bidirectional - iterators in version 3.0.0 (see https://github.com/nlohmann/json/issues/593) -*/ -template -class iter_impl -{ - /// allow basic_json to access private members - friend iter_impl::value, typename std::remove_const::type, const BasicJsonType>::type>; - friend BasicJsonType; - friend iteration_proxy; - friend iteration_proxy_value; - - using object_t = typename BasicJsonType::object_t; - using array_t = typename BasicJsonType::array_t; - // make sure BasicJsonType is basic_json or const basic_json - static_assert(is_basic_json::type>::value, - "iter_impl only accepts (const) basic_json"); - - public: - - /// The std::iterator class template (used as a base class to provide typedefs) is deprecated in C++17. - /// The C++ Standard has never required user-defined iterators to derive from std::iterator. - /// A user-defined iterator should provide publicly accessible typedefs named - /// iterator_category, value_type, difference_type, pointer, and reference. - /// Note that value_type is required to be non-const, even for constant iterators. - using iterator_category = std::bidirectional_iterator_tag; - - /// the type of the values when the iterator is dereferenced - using value_type = typename BasicJsonType::value_type; - /// a type to represent differences between iterators - using difference_type = typename BasicJsonType::difference_type; - /// defines a pointer to the type iterated over (value_type) - using pointer = typename std::conditional::value, - typename BasicJsonType::const_pointer, - typename BasicJsonType::pointer>::type; - /// defines a reference to the type iterated over (value_type) - using reference = - typename std::conditional::value, - typename BasicJsonType::const_reference, - typename BasicJsonType::reference>::type; - - /// default constructor - iter_impl() = default; - - /*! - @brief constructor for a given JSON instance - @param[in] object pointer to a JSON object for this iterator - @pre object != nullptr - @post The iterator is initialized; i.e. `m_object != nullptr`. - */ - explicit iter_impl(pointer object) noexcept : m_object(object) - { - JSON_ASSERT(m_object != nullptr); - - switch (m_object->m_type) - { - case value_t::object: - { - m_it.object_iterator = typename object_t::iterator(); - break; - } - - case value_t::array: - { - m_it.array_iterator = typename array_t::iterator(); - break; - } - - default: - { - m_it.primitive_iterator = primitive_iterator_t(); - break; - } - } - } - - /*! - @note The conventional copy constructor and copy assignment are implicitly - defined. Combined with the following converting constructor and - assignment, they support: (1) copy from iterator to iterator, (2) - copy from const iterator to const iterator, and (3) conversion from - iterator to const iterator. However conversion from const iterator - to iterator is not defined. - */ - - /*! - @brief const copy constructor - @param[in] other const iterator to copy from - @note This copy constructor had to be defined explicitly to circumvent a bug - occurring on msvc v19.0 compiler (VS 2015) debug build. For more - information refer to: https://github.com/nlohmann/json/issues/1608 - */ - iter_impl(const iter_impl& other) noexcept - : m_object(other.m_object), m_it(other.m_it) - {} - - /*! - @brief converting assignment - @param[in] other const iterator to copy from - @return const/non-const iterator - @note It is not checked whether @a other is initialized. - */ - iter_impl& operator=(const iter_impl& other) noexcept - { - m_object = other.m_object; - m_it = other.m_it; - return *this; - } - - /*! - @brief converting constructor - @param[in] other non-const iterator to copy from - @note It is not checked whether @a other is initialized. - */ - iter_impl(const iter_impl::type>& other) noexcept - : m_object(other.m_object), m_it(other.m_it) - {} - - /*! - @brief converting assignment - @param[in] other non-const iterator to copy from - @return const/non-const iterator - @note It is not checked whether @a other is initialized. - */ - iter_impl& operator=(const iter_impl::type>& other) noexcept - { - m_object = other.m_object; - m_it = other.m_it; - return *this; - } - - private: - /*! - @brief set the iterator to the first value - @pre The iterator is initialized; i.e. `m_object != nullptr`. - */ - void set_begin() noexcept - { - JSON_ASSERT(m_object != nullptr); - - switch (m_object->m_type) - { - case value_t::object: - { - m_it.object_iterator = m_object->m_value.object->begin(); - break; - } - - case value_t::array: - { - m_it.array_iterator = m_object->m_value.array->begin(); - break; - } - - case value_t::null: - { - // set to end so begin()==end() is true: null is empty - m_it.primitive_iterator.set_end(); - break; - } - - default: - { - m_it.primitive_iterator.set_begin(); - break; - } - } - } - - /*! - @brief set the iterator past the last value - @pre The iterator is initialized; i.e. `m_object != nullptr`. - */ - void set_end() noexcept - { - JSON_ASSERT(m_object != nullptr); - - switch (m_object->m_type) - { - case value_t::object: - { - m_it.object_iterator = m_object->m_value.object->end(); - break; - } - - case value_t::array: - { - m_it.array_iterator = m_object->m_value.array->end(); - break; - } - - default: - { - m_it.primitive_iterator.set_end(); - break; - } - } - } - - public: - /*! - @brief return a reference to the value pointed to by the iterator - @pre The iterator is initialized; i.e. `m_object != nullptr`. - */ - reference operator*() const - { - JSON_ASSERT(m_object != nullptr); - - switch (m_object->m_type) - { - case value_t::object: - { - JSON_ASSERT(m_it.object_iterator != m_object->m_value.object->end()); - return m_it.object_iterator->second; - } - - case value_t::array: - { - JSON_ASSERT(m_it.array_iterator != m_object->m_value.array->end()); - return *m_it.array_iterator; - } - - case value_t::null: - JSON_THROW(invalid_iterator::create(214, "cannot get value")); - - default: - { - if (JSON_HEDLEY_LIKELY(m_it.primitive_iterator.is_begin())) - { - return *m_object; - } - - JSON_THROW(invalid_iterator::create(214, "cannot get value")); - } - } - } - - /*! - @brief dereference the iterator - @pre The iterator is initialized; i.e. `m_object != nullptr`. - */ - pointer operator->() const - { - JSON_ASSERT(m_object != nullptr); - - switch (m_object->m_type) - { - case value_t::object: - { - JSON_ASSERT(m_it.object_iterator != m_object->m_value.object->end()); - return &(m_it.object_iterator->second); - } - - case value_t::array: - { - JSON_ASSERT(m_it.array_iterator != m_object->m_value.array->end()); - return &*m_it.array_iterator; - } - - default: - { - if (JSON_HEDLEY_LIKELY(m_it.primitive_iterator.is_begin())) - { - return m_object; - } - - JSON_THROW(invalid_iterator::create(214, "cannot get value")); - } - } - } - - /*! - @brief post-increment (it++) - @pre The iterator is initialized; i.e. `m_object != nullptr`. - */ - iter_impl const operator++(int) - { - auto result = *this; - ++(*this); - return result; - } - - /*! - @brief pre-increment (++it) - @pre The iterator is initialized; i.e. `m_object != nullptr`. - */ - iter_impl& operator++() - { - JSON_ASSERT(m_object != nullptr); - - switch (m_object->m_type) - { - case value_t::object: - { - std::advance(m_it.object_iterator, 1); - break; - } - - case value_t::array: - { - std::advance(m_it.array_iterator, 1); - break; - } - - default: - { - ++m_it.primitive_iterator; - break; - } - } - - return *this; - } - - /*! - @brief post-decrement (it--) - @pre The iterator is initialized; i.e. `m_object != nullptr`. - */ - iter_impl const operator--(int) - { - auto result = *this; - --(*this); - return result; - } - - /*! - @brief pre-decrement (--it) - @pre The iterator is initialized; i.e. `m_object != nullptr`. - */ - iter_impl& operator--() - { - JSON_ASSERT(m_object != nullptr); - - switch (m_object->m_type) - { - case value_t::object: - { - std::advance(m_it.object_iterator, -1); - break; - } - - case value_t::array: - { - std::advance(m_it.array_iterator, -1); - break; - } - - default: - { - --m_it.primitive_iterator; - break; - } - } - - return *this; - } - - /*! - @brief comparison: equal - @pre The iterator is initialized; i.e. `m_object != nullptr`. - */ - bool operator==(const iter_impl& other) const - { - // if objects are not the same, the comparison is undefined - if (JSON_HEDLEY_UNLIKELY(m_object != other.m_object)) - { - JSON_THROW(invalid_iterator::create(212, "cannot compare iterators of different containers")); - } - - JSON_ASSERT(m_object != nullptr); - - switch (m_object->m_type) - { - case value_t::object: - return (m_it.object_iterator == other.m_it.object_iterator); - - case value_t::array: - return (m_it.array_iterator == other.m_it.array_iterator); - - default: - return (m_it.primitive_iterator == other.m_it.primitive_iterator); - } - } - - /*! - @brief comparison: not equal - @pre The iterator is initialized; i.e. `m_object != nullptr`. - */ - bool operator!=(const iter_impl& other) const - { - return !operator==(other); - } - - /*! - @brief comparison: smaller - @pre The iterator is initialized; i.e. `m_object != nullptr`. - */ - bool operator<(const iter_impl& other) const - { - // if objects are not the same, the comparison is undefined - if (JSON_HEDLEY_UNLIKELY(m_object != other.m_object)) - { - JSON_THROW(invalid_iterator::create(212, "cannot compare iterators of different containers")); - } - - JSON_ASSERT(m_object != nullptr); - - switch (m_object->m_type) - { - case value_t::object: - JSON_THROW(invalid_iterator::create(213, "cannot compare order of object iterators")); - - case value_t::array: - return (m_it.array_iterator < other.m_it.array_iterator); - - default: - return (m_it.primitive_iterator < other.m_it.primitive_iterator); - } - } - - /*! - @brief comparison: less than or equal - @pre The iterator is initialized; i.e. `m_object != nullptr`. - */ - bool operator<=(const iter_impl& other) const - { - return !other.operator < (*this); - } - - /*! - @brief comparison: greater than - @pre The iterator is initialized; i.e. `m_object != nullptr`. - */ - bool operator>(const iter_impl& other) const - { - return !operator<=(other); - } - - /*! - @brief comparison: greater than or equal - @pre The iterator is initialized; i.e. `m_object != nullptr`. - */ - bool operator>=(const iter_impl& other) const - { - return !operator<(other); - } - - /*! - @brief add to iterator - @pre The iterator is initialized; i.e. `m_object != nullptr`. - */ - iter_impl& operator+=(difference_type i) - { - JSON_ASSERT(m_object != nullptr); - - switch (m_object->m_type) - { - case value_t::object: - JSON_THROW(invalid_iterator::create(209, "cannot use offsets with object iterators")); - - case value_t::array: - { - std::advance(m_it.array_iterator, i); - break; - } - - default: - { - m_it.primitive_iterator += i; - break; - } - } - - return *this; - } - - /*! - @brief subtract from iterator - @pre The iterator is initialized; i.e. `m_object != nullptr`. - */ - iter_impl& operator-=(difference_type i) - { - return operator+=(-i); - } - - /*! - @brief add to iterator - @pre The iterator is initialized; i.e. `m_object != nullptr`. - */ - iter_impl operator+(difference_type i) const - { - auto result = *this; - result += i; - return result; - } - - /*! - @brief addition of distance and iterator - @pre The iterator is initialized; i.e. `m_object != nullptr`. - */ - friend iter_impl operator+(difference_type i, const iter_impl& it) - { - auto result = it; - result += i; - return result; - } - - /*! - @brief subtract from iterator - @pre The iterator is initialized; i.e. `m_object != nullptr`. - */ - iter_impl operator-(difference_type i) const - { - auto result = *this; - result -= i; - return result; - } - - /*! - @brief return difference - @pre The iterator is initialized; i.e. `m_object != nullptr`. - */ - difference_type operator-(const iter_impl& other) const - { - JSON_ASSERT(m_object != nullptr); - - switch (m_object->m_type) - { - case value_t::object: - JSON_THROW(invalid_iterator::create(209, "cannot use offsets with object iterators")); - - case value_t::array: - return m_it.array_iterator - other.m_it.array_iterator; - - default: - return m_it.primitive_iterator - other.m_it.primitive_iterator; - } - } - - /*! - @brief access to successor - @pre The iterator is initialized; i.e. `m_object != nullptr`. - */ - reference operator[](difference_type n) const - { - JSON_ASSERT(m_object != nullptr); - - switch (m_object->m_type) - { - case value_t::object: - JSON_THROW(invalid_iterator::create(208, "cannot use operator[] for object iterators")); - - case value_t::array: - return *std::next(m_it.array_iterator, n); - - case value_t::null: - JSON_THROW(invalid_iterator::create(214, "cannot get value")); - - default: - { - if (JSON_HEDLEY_LIKELY(m_it.primitive_iterator.get_value() == -n)) - { - return *m_object; - } - - JSON_THROW(invalid_iterator::create(214, "cannot get value")); - } - } - } - - /*! - @brief return the key of an object iterator - @pre The iterator is initialized; i.e. `m_object != nullptr`. - */ - const typename object_t::key_type& key() const - { - JSON_ASSERT(m_object != nullptr); - - if (JSON_HEDLEY_LIKELY(m_object->is_object())) - { - return m_it.object_iterator->first; - } - - JSON_THROW(invalid_iterator::create(207, "cannot use key() for non-object iterators")); - } - - /*! - @brief return the value of an iterator - @pre The iterator is initialized; i.e. `m_object != nullptr`. - */ - reference value() const - { - return operator*(); - } - - private: - /// associated JSON instance - pointer m_object = nullptr; - /// the actual iterator of the associated instance - internal_iterator::type> m_it {}; -}; -} // namespace detail -} // namespace nlohmann - -// #include - -// #include - - -#include // ptrdiff_t -#include // reverse_iterator -#include // declval - -namespace nlohmann -{ -namespace detail -{ -////////////////////// -// reverse_iterator // -////////////////////// - -/*! -@brief a template for a reverse iterator class - -@tparam Base the base iterator type to reverse. Valid types are @ref -iterator (to create @ref reverse_iterator) and @ref const_iterator (to -create @ref const_reverse_iterator). - -@requirement The class satisfies the following concept requirements: -- -[BidirectionalIterator](https://en.cppreference.com/w/cpp/named_req/BidirectionalIterator): - The iterator that can be moved can be moved in both directions (i.e. - incremented and decremented). -- [OutputIterator](https://en.cppreference.com/w/cpp/named_req/OutputIterator): - It is possible to write to the pointed-to element (only if @a Base is - @ref iterator). - -@since version 1.0.0 -*/ -template -class json_reverse_iterator : public std::reverse_iterator -{ - public: - using difference_type = std::ptrdiff_t; - /// shortcut to the reverse iterator adapter - using base_iterator = std::reverse_iterator; - /// the reference type for the pointed-to element - using reference = typename Base::reference; - - /// create reverse iterator from iterator - explicit json_reverse_iterator(const typename base_iterator::iterator_type& it) noexcept - : base_iterator(it) {} - - /// create reverse iterator from base class - explicit json_reverse_iterator(const base_iterator& it) noexcept : base_iterator(it) {} - - /// post-increment (it++) - json_reverse_iterator const operator++(int) - { - return static_cast(base_iterator::operator++(1)); - } - - /// pre-increment (++it) - json_reverse_iterator& operator++() - { - return static_cast(base_iterator::operator++()); - } - - /// post-decrement (it--) - json_reverse_iterator const operator--(int) - { - return static_cast(base_iterator::operator--(1)); - } - - /// pre-decrement (--it) - json_reverse_iterator& operator--() - { - return static_cast(base_iterator::operator--()); - } - - /// add to iterator - json_reverse_iterator& operator+=(difference_type i) - { - return static_cast(base_iterator::operator+=(i)); - } - - /// add to iterator - json_reverse_iterator operator+(difference_type i) const - { - return static_cast(base_iterator::operator+(i)); - } - - /// subtract from iterator - json_reverse_iterator operator-(difference_type i) const - { - return static_cast(base_iterator::operator-(i)); - } - - /// return difference - difference_type operator-(const json_reverse_iterator& other) const - { - return base_iterator(*this) - base_iterator(other); - } - - /// access to successor - reference operator[](difference_type n) const - { - return *(this->operator+(n)); - } - - /// return the key of an object iterator - auto key() const -> decltype(std::declval().key()) - { - auto it = --this->base(); - return it.key(); - } - - /// return the value of an iterator - reference value() const - { - auto it = --this->base(); - return it.operator * (); - } -}; -} // namespace detail -} // namespace nlohmann - -// #include - -// #include - - -#include // all_of -#include // isdigit -#include // max -#include // accumulate -#include // string -#include // move -#include // vector - -// #include - -// #include - -// #include - - -namespace nlohmann -{ -template -class json_pointer -{ - // allow basic_json to access private members - NLOHMANN_BASIC_JSON_TPL_DECLARATION - friend class basic_json; - - public: - /*! - @brief create JSON pointer - - Create a JSON pointer according to the syntax described in - [Section 3 of RFC6901](https://tools.ietf.org/html/rfc6901#section-3). - - @param[in] s string representing the JSON pointer; if omitted, the empty - string is assumed which references the whole JSON value - - @throw parse_error.107 if the given JSON pointer @a s is nonempty and does - not begin with a slash (`/`); see example below - - @throw parse_error.108 if a tilde (`~`) in the given JSON pointer @a s is - not followed by `0` (representing `~`) or `1` (representing `/`); see - example below - - @liveexample{The example shows the construction several valid JSON pointers - as well as the exceptional behavior.,json_pointer} - - @since version 2.0.0 - */ - explicit json_pointer(const std::string& s = "") - : reference_tokens(split(s)) - {} - - /*! - @brief return a string representation of the JSON pointer - - @invariant For each JSON pointer `ptr`, it holds: - @code {.cpp} - ptr == json_pointer(ptr.to_string()); - @endcode - - @return a string representation of the JSON pointer - - @liveexample{The example shows the result of `to_string`.,json_pointer__to_string} - - @since version 2.0.0 - */ - std::string to_string() const - { - return std::accumulate(reference_tokens.begin(), reference_tokens.end(), - std::string{}, - [](const std::string & a, const std::string & b) - { - return a + "/" + escape(b); - }); - } - - /// @copydoc to_string() - operator std::string() const - { - return to_string(); - } - - /*! - @brief append another JSON pointer at the end of this JSON pointer - - @param[in] ptr JSON pointer to append - @return JSON pointer with @a ptr appended - - @liveexample{The example shows the usage of `operator/=`.,json_pointer__operator_add} - - @complexity Linear in the length of @a ptr. - - @sa @ref operator/=(std::string) to append a reference token - @sa @ref operator/=(std::size_t) to append an array index - @sa @ref operator/(const json_pointer&, const json_pointer&) for a binary operator - - @since version 3.6.0 - */ - json_pointer& operator/=(const json_pointer& ptr) - { - reference_tokens.insert(reference_tokens.end(), - ptr.reference_tokens.begin(), - ptr.reference_tokens.end()); - return *this; - } - - /*! - @brief append an unescaped reference token at the end of this JSON pointer - - @param[in] token reference token to append - @return JSON pointer with @a token appended without escaping @a token - - @liveexample{The example shows the usage of `operator/=`.,json_pointer__operator_add} - - @complexity Amortized constant. - - @sa @ref operator/=(const json_pointer&) to append a JSON pointer - @sa @ref operator/=(std::size_t) to append an array index - @sa @ref operator/(const json_pointer&, std::size_t) for a binary operator - - @since version 3.6.0 - */ - json_pointer& operator/=(std::string token) - { - push_back(std::move(token)); - return *this; - } - - /*! - @brief append an array index at the end of this JSON pointer - - @param[in] array_idx array index to append - @return JSON pointer with @a array_idx appended - - @liveexample{The example shows the usage of `operator/=`.,json_pointer__operator_add} - - @complexity Amortized constant. - - @sa @ref operator/=(const json_pointer&) to append a JSON pointer - @sa @ref operator/=(std::string) to append a reference token - @sa @ref operator/(const json_pointer&, std::string) for a binary operator - - @since version 3.6.0 - */ - json_pointer& operator/=(std::size_t array_idx) - { - return *this /= std::to_string(array_idx); - } - - /*! - @brief create a new JSON pointer by appending the right JSON pointer at the end of the left JSON pointer - - @param[in] lhs JSON pointer - @param[in] rhs JSON pointer - @return a new JSON pointer with @a rhs appended to @a lhs - - @liveexample{The example shows the usage of `operator/`.,json_pointer__operator_add_binary} - - @complexity Linear in the length of @a lhs and @a rhs. - - @sa @ref operator/=(const json_pointer&) to append a JSON pointer - - @since version 3.6.0 - */ - friend json_pointer operator/(const json_pointer& lhs, - const json_pointer& rhs) - { - return json_pointer(lhs) /= rhs; - } - - /*! - @brief create a new JSON pointer by appending the unescaped token at the end of the JSON pointer - - @param[in] ptr JSON pointer - @param[in] token reference token - @return a new JSON pointer with unescaped @a token appended to @a ptr - - @liveexample{The example shows the usage of `operator/`.,json_pointer__operator_add_binary} - - @complexity Linear in the length of @a ptr. - - @sa @ref operator/=(std::string) to append a reference token - - @since version 3.6.0 - */ - friend json_pointer operator/(const json_pointer& ptr, std::string token) - { - return json_pointer(ptr) /= std::move(token); - } - - /*! - @brief create a new JSON pointer by appending the array-index-token at the end of the JSON pointer - - @param[in] ptr JSON pointer - @param[in] array_idx array index - @return a new JSON pointer with @a array_idx appended to @a ptr - - @liveexample{The example shows the usage of `operator/`.,json_pointer__operator_add_binary} - - @complexity Linear in the length of @a ptr. - - @sa @ref operator/=(std::size_t) to append an array index - - @since version 3.6.0 - */ - friend json_pointer operator/(const json_pointer& ptr, std::size_t array_idx) - { - return json_pointer(ptr) /= array_idx; - } - - /*! - @brief returns the parent of this JSON pointer - - @return parent of this JSON pointer; in case this JSON pointer is the root, - the root itself is returned - - @complexity Linear in the length of the JSON pointer. - - @liveexample{The example shows the result of `parent_pointer` for different - JSON Pointers.,json_pointer__parent_pointer} - - @since version 3.6.0 - */ - json_pointer parent_pointer() const - { - if (empty()) - { - return *this; - } - - json_pointer res = *this; - res.pop_back(); - return res; - } - - /*! - @brief remove last reference token - - @pre not `empty()` - - @liveexample{The example shows the usage of `pop_back`.,json_pointer__pop_back} - - @complexity Constant. - - @throw out_of_range.405 if JSON pointer has no parent - - @since version 3.6.0 - */ - void pop_back() - { - if (JSON_HEDLEY_UNLIKELY(empty())) - { - JSON_THROW(detail::out_of_range::create(405, "JSON pointer has no parent")); - } - - reference_tokens.pop_back(); - } - - /*! - @brief return last reference token - - @pre not `empty()` - @return last reference token - - @liveexample{The example shows the usage of `back`.,json_pointer__back} - - @complexity Constant. - - @throw out_of_range.405 if JSON pointer has no parent - - @since version 3.6.0 - */ - const std::string& back() const - { - if (JSON_HEDLEY_UNLIKELY(empty())) - { - JSON_THROW(detail::out_of_range::create(405, "JSON pointer has no parent")); - } - - return reference_tokens.back(); - } - - /*! - @brief append an unescaped token at the end of the reference pointer - - @param[in] token token to add - - @complexity Amortized constant. - - @liveexample{The example shows the result of `push_back` for different - JSON Pointers.,json_pointer__push_back} - - @since version 3.6.0 - */ - void push_back(const std::string& token) - { - reference_tokens.push_back(token); - } - - /// @copydoc push_back(const std::string&) - void push_back(std::string&& token) - { - reference_tokens.push_back(std::move(token)); - } - - /*! - @brief return whether pointer points to the root document - - @return true iff the JSON pointer points to the root document - - @complexity Constant. - - @exceptionsafety No-throw guarantee: this function never throws exceptions. - - @liveexample{The example shows the result of `empty` for different JSON - Pointers.,json_pointer__empty} - - @since version 3.6.0 - */ - bool empty() const noexcept - { - return reference_tokens.empty(); - } - - private: - /*! - @param[in] s reference token to be converted into an array index - - @return integer representation of @a s - - @throw parse_error.106 if an array index begins with '0' - @throw parse_error.109 if an array index begins not with a digit - @throw out_of_range.404 if string @a s could not be converted to an integer - @throw out_of_range.410 if an array index exceeds size_type - */ - static typename BasicJsonType::size_type array_index(const std::string& s) - { - using size_type = typename BasicJsonType::size_type; - - // error condition (cf. RFC 6901, Sect. 4) - if (JSON_HEDLEY_UNLIKELY(s.size() > 1 && s[0] == '0')) - { - JSON_THROW(detail::parse_error::create(106, 0, - "array index '" + s + - "' must not begin with '0'")); - } - - // error condition (cf. RFC 6901, Sect. 4) - if (JSON_HEDLEY_UNLIKELY(s.size() > 1 && !(s[0] >= '1' && s[0] <= '9'))) - { - JSON_THROW(detail::parse_error::create(109, 0, "array index '" + s + "' is not a number")); - } - - std::size_t processed_chars = 0; - unsigned long long res = 0; - JSON_TRY - { - res = std::stoull(s, &processed_chars); - } - JSON_CATCH(std::out_of_range&) - { - JSON_THROW(detail::out_of_range::create(404, "unresolved reference token '" + s + "'")); - } - - // check if the string was completely read - if (JSON_HEDLEY_UNLIKELY(processed_chars != s.size())) - { - JSON_THROW(detail::out_of_range::create(404, "unresolved reference token '" + s + "'")); - } - - // only triggered on special platforms (like 32bit), see also - // https://github.com/nlohmann/json/pull/2203 - if (res >= static_cast((std::numeric_limits::max)())) - { - JSON_THROW(detail::out_of_range::create(410, "array index " + s + " exceeds size_type")); // LCOV_EXCL_LINE - } - - return static_cast(res); - } - - json_pointer top() const - { - if (JSON_HEDLEY_UNLIKELY(empty())) - { - JSON_THROW(detail::out_of_range::create(405, "JSON pointer has no parent")); - } - - json_pointer result = *this; - result.reference_tokens = {reference_tokens[0]}; - return result; - } - - /*! - @brief create and return a reference to the pointed to value - - @complexity Linear in the number of reference tokens. - - @throw parse_error.109 if array index is not a number - @throw type_error.313 if value cannot be unflattened - */ - BasicJsonType& get_and_create(BasicJsonType& j) const - { - auto result = &j; - - // in case no reference tokens exist, return a reference to the JSON value - // j which will be overwritten by a primitive value - for (const auto& reference_token : reference_tokens) - { - switch (result->type()) - { - case detail::value_t::null: - { - if (reference_token == "0") - { - // start a new array if reference token is 0 - result = &result->operator[](0); - } - else - { - // start a new object otherwise - result = &result->operator[](reference_token); - } - break; - } - - case detail::value_t::object: - { - // create an entry in the object - result = &result->operator[](reference_token); - break; - } - - case detail::value_t::array: - { - // create an entry in the array - result = &result->operator[](array_index(reference_token)); - break; - } - - /* - The following code is only reached if there exists a reference - token _and_ the current value is primitive. In this case, we have - an error situation, because primitive values may only occur as - single value; that is, with an empty list of reference tokens. - */ - default: - JSON_THROW(detail::type_error::create(313, "invalid value to unflatten")); - } - } - - return *result; - } - - /*! - @brief return a reference to the pointed to value - - @note This version does not throw if a value is not present, but tries to - create nested values instead. For instance, calling this function - with pointer `"/this/that"` on a null value is equivalent to calling - `operator[]("this").operator[]("that")` on that value, effectively - changing the null value to an object. - - @param[in] ptr a JSON value - - @return reference to the JSON value pointed to by the JSON pointer - - @complexity Linear in the length of the JSON pointer. - - @throw parse_error.106 if an array index begins with '0' - @throw parse_error.109 if an array index was not a number - @throw out_of_range.404 if the JSON pointer can not be resolved - */ - BasicJsonType& get_unchecked(BasicJsonType* ptr) const - { - for (const auto& reference_token : reference_tokens) - { - // convert null values to arrays or objects before continuing - if (ptr->is_null()) - { - // check if reference token is a number - const bool nums = - std::all_of(reference_token.begin(), reference_token.end(), - [](const unsigned char x) - { - return std::isdigit(x); - }); - - // change value to array for numbers or "-" or to object otherwise - *ptr = (nums || reference_token == "-") - ? detail::value_t::array - : detail::value_t::object; - } - - switch (ptr->type()) - { - case detail::value_t::object: - { - // use unchecked object access - ptr = &ptr->operator[](reference_token); - break; - } - - case detail::value_t::array: - { - if (reference_token == "-") - { - // explicitly treat "-" as index beyond the end - ptr = &ptr->operator[](ptr->m_value.array->size()); - } - else - { - // convert array index to number; unchecked access - ptr = &ptr->operator[](array_index(reference_token)); - } - break; - } - - default: - JSON_THROW(detail::out_of_range::create(404, "unresolved reference token '" + reference_token + "'")); - } - } - - return *ptr; - } - - /*! - @throw parse_error.106 if an array index begins with '0' - @throw parse_error.109 if an array index was not a number - @throw out_of_range.402 if the array index '-' is used - @throw out_of_range.404 if the JSON pointer can not be resolved - */ - BasicJsonType& get_checked(BasicJsonType* ptr) const - { - for (const auto& reference_token : reference_tokens) - { - switch (ptr->type()) - { - case detail::value_t::object: - { - // note: at performs range check - ptr = &ptr->at(reference_token); - break; - } - - case detail::value_t::array: - { - if (JSON_HEDLEY_UNLIKELY(reference_token == "-")) - { - // "-" always fails the range check - JSON_THROW(detail::out_of_range::create(402, - "array index '-' (" + std::to_string(ptr->m_value.array->size()) + - ") is out of range")); - } - - // note: at performs range check - ptr = &ptr->at(array_index(reference_token)); - break; - } - - default: - JSON_THROW(detail::out_of_range::create(404, "unresolved reference token '" + reference_token + "'")); - } - } - - return *ptr; - } - - /*! - @brief return a const reference to the pointed to value - - @param[in] ptr a JSON value - - @return const reference to the JSON value pointed to by the JSON - pointer - - @throw parse_error.106 if an array index begins with '0' - @throw parse_error.109 if an array index was not a number - @throw out_of_range.402 if the array index '-' is used - @throw out_of_range.404 if the JSON pointer can not be resolved - */ - const BasicJsonType& get_unchecked(const BasicJsonType* ptr) const - { - for (const auto& reference_token : reference_tokens) - { - switch (ptr->type()) - { - case detail::value_t::object: - { - // use unchecked object access - ptr = &ptr->operator[](reference_token); - break; - } - - case detail::value_t::array: - { - if (JSON_HEDLEY_UNLIKELY(reference_token == "-")) - { - // "-" cannot be used for const access - JSON_THROW(detail::out_of_range::create(402, - "array index '-' (" + std::to_string(ptr->m_value.array->size()) + - ") is out of range")); - } - - // use unchecked array access - ptr = &ptr->operator[](array_index(reference_token)); - break; - } - - default: - JSON_THROW(detail::out_of_range::create(404, "unresolved reference token '" + reference_token + "'")); - } - } - - return *ptr; - } - - /*! - @throw parse_error.106 if an array index begins with '0' - @throw parse_error.109 if an array index was not a number - @throw out_of_range.402 if the array index '-' is used - @throw out_of_range.404 if the JSON pointer can not be resolved - */ - const BasicJsonType& get_checked(const BasicJsonType* ptr) const - { - for (const auto& reference_token : reference_tokens) - { - switch (ptr->type()) - { - case detail::value_t::object: - { - // note: at performs range check - ptr = &ptr->at(reference_token); - break; - } - - case detail::value_t::array: - { - if (JSON_HEDLEY_UNLIKELY(reference_token == "-")) - { - // "-" always fails the range check - JSON_THROW(detail::out_of_range::create(402, - "array index '-' (" + std::to_string(ptr->m_value.array->size()) + - ") is out of range")); - } - - // note: at performs range check - ptr = &ptr->at(array_index(reference_token)); - break; - } - - default: - JSON_THROW(detail::out_of_range::create(404, "unresolved reference token '" + reference_token + "'")); - } - } - - return *ptr; - } - - /*! - @throw parse_error.106 if an array index begins with '0' - @throw parse_error.109 if an array index was not a number - */ - bool contains(const BasicJsonType* ptr) const - { - for (const auto& reference_token : reference_tokens) - { - switch (ptr->type()) - { - case detail::value_t::object: - { - if (!ptr->contains(reference_token)) - { - // we did not find the key in the object - return false; - } - - ptr = &ptr->operator[](reference_token); - break; - } - - case detail::value_t::array: - { - if (JSON_HEDLEY_UNLIKELY(reference_token == "-")) - { - // "-" always fails the range check - return false; - } - if (JSON_HEDLEY_UNLIKELY(reference_token.size() == 1 && !("0" <= reference_token && reference_token <= "9"))) - { - // invalid char - return false; - } - if (JSON_HEDLEY_UNLIKELY(reference_token.size() > 1)) - { - if (JSON_HEDLEY_UNLIKELY(!('1' <= reference_token[0] && reference_token[0] <= '9'))) - { - // first char should be between '1' and '9' - return false; - } - for (std::size_t i = 1; i < reference_token.size(); i++) - { - if (JSON_HEDLEY_UNLIKELY(!('0' <= reference_token[i] && reference_token[i] <= '9'))) - { - // other char should be between '0' and '9' - return false; - } - } - } - - const auto idx = array_index(reference_token); - if (idx >= ptr->size()) - { - // index out of range - return false; - } - - ptr = &ptr->operator[](idx); - break; - } - - default: - { - // we do not expect primitive values if there is still a - // reference token to process - return false; - } - } - } - - // no reference token left means we found a primitive value - return true; - } - - /*! - @brief split the string input to reference tokens - - @note This function is only called by the json_pointer constructor. - All exceptions below are documented there. - - @throw parse_error.107 if the pointer is not empty or begins with '/' - @throw parse_error.108 if character '~' is not followed by '0' or '1' - */ - static std::vector split(const std::string& reference_string) - { - std::vector result; - - // special case: empty reference string -> no reference tokens - if (reference_string.empty()) - { - return result; - } - - // check if nonempty reference string begins with slash - if (JSON_HEDLEY_UNLIKELY(reference_string[0] != '/')) - { - JSON_THROW(detail::parse_error::create(107, 1, - "JSON pointer must be empty or begin with '/' - was: '" + - reference_string + "'")); - } - - // extract the reference tokens: - // - slash: position of the last read slash (or end of string) - // - start: position after the previous slash - for ( - // search for the first slash after the first character - std::size_t slash = reference_string.find_first_of('/', 1), - // set the beginning of the first reference token - start = 1; - // we can stop if start == 0 (if slash == std::string::npos) - start != 0; - // set the beginning of the next reference token - // (will eventually be 0 if slash == std::string::npos) - start = (slash == std::string::npos) ? 0 : slash + 1, - // find next slash - slash = reference_string.find_first_of('/', start)) - { - // use the text between the beginning of the reference token - // (start) and the last slash (slash). - auto reference_token = reference_string.substr(start, slash - start); - - // check reference tokens are properly escaped - for (std::size_t pos = reference_token.find_first_of('~'); - pos != std::string::npos; - pos = reference_token.find_first_of('~', pos + 1)) - { - JSON_ASSERT(reference_token[pos] == '~'); - - // ~ must be followed by 0 or 1 - if (JSON_HEDLEY_UNLIKELY(pos == reference_token.size() - 1 || - (reference_token[pos + 1] != '0' && - reference_token[pos + 1] != '1'))) - { - JSON_THROW(detail::parse_error::create(108, 0, "escape character '~' must be followed with '0' or '1'")); - } - } - - // finally, store the reference token - unescape(reference_token); - result.push_back(reference_token); - } - - return result; - } - - /*! - @brief replace all occurrences of a substring by another string - - @param[in,out] s the string to manipulate; changed so that all - occurrences of @a f are replaced with @a t - @param[in] f the substring to replace with @a t - @param[in] t the string to replace @a f - - @pre The search string @a f must not be empty. **This precondition is - enforced with an assertion.** - - @since version 2.0.0 - */ - static void replace_substring(std::string& s, const std::string& f, - const std::string& t) - { - JSON_ASSERT(!f.empty()); - for (auto pos = s.find(f); // find first occurrence of f - pos != std::string::npos; // make sure f was found - s.replace(pos, f.size(), t), // replace with t, and - pos = s.find(f, pos + t.size())) // find next occurrence of f - {} - } - - /// escape "~" to "~0" and "/" to "~1" - static std::string escape(std::string s) - { - replace_substring(s, "~", "~0"); - replace_substring(s, "/", "~1"); - return s; - } - - /// unescape "~1" to tilde and "~0" to slash (order is important!) - static void unescape(std::string& s) - { - replace_substring(s, "~1", "/"); - replace_substring(s, "~0", "~"); - } - - /*! - @param[in] reference_string the reference string to the current value - @param[in] value the value to consider - @param[in,out] result the result object to insert values to - - @note Empty objects or arrays are flattened to `null`. - */ - static void flatten(const std::string& reference_string, - const BasicJsonType& value, - BasicJsonType& result) - { - switch (value.type()) - { - case detail::value_t::array: - { - if (value.m_value.array->empty()) - { - // flatten empty array as null - result[reference_string] = nullptr; - } - else - { - // iterate array and use index as reference string - for (std::size_t i = 0; i < value.m_value.array->size(); ++i) - { - flatten(reference_string + "/" + std::to_string(i), - value.m_value.array->operator[](i), result); - } - } - break; - } - - case detail::value_t::object: - { - if (value.m_value.object->empty()) - { - // flatten empty object as null - result[reference_string] = nullptr; - } - else - { - // iterate object and use keys as reference string - for (const auto& element : *value.m_value.object) - { - flatten(reference_string + "/" + escape(element.first), element.second, result); - } - } - break; - } - - default: - { - // add primitive value with its reference string - result[reference_string] = value; - break; - } - } - } - - /*! - @param[in] value flattened JSON - - @return unflattened JSON - - @throw parse_error.109 if array index is not a number - @throw type_error.314 if value is not an object - @throw type_error.315 if object values are not primitive - @throw type_error.313 if value cannot be unflattened - */ - static BasicJsonType - unflatten(const BasicJsonType& value) - { - if (JSON_HEDLEY_UNLIKELY(!value.is_object())) - { - JSON_THROW(detail::type_error::create(314, "only objects can be unflattened")); - } - - BasicJsonType result; - - // iterate the JSON object values - for (const auto& element : *value.m_value.object) - { - if (JSON_HEDLEY_UNLIKELY(!element.second.is_primitive())) - { - JSON_THROW(detail::type_error::create(315, "values in object must be primitive")); - } - - // assign value to reference pointed to by JSON pointer; Note that if - // the JSON pointer is "" (i.e., points to the whole value), function - // get_and_create returns a reference to result itself. An assignment - // will then create a primitive value. - json_pointer(element.first).get_and_create(result) = element.second; - } - - return result; - } - - /*! - @brief compares two JSON pointers for equality - - @param[in] lhs JSON pointer to compare - @param[in] rhs JSON pointer to compare - @return whether @a lhs is equal to @a rhs - - @complexity Linear in the length of the JSON pointer - - @exceptionsafety No-throw guarantee: this function never throws exceptions. - */ - friend bool operator==(json_pointer const& lhs, - json_pointer const& rhs) noexcept - { - return lhs.reference_tokens == rhs.reference_tokens; - } - - /*! - @brief compares two JSON pointers for inequality - - @param[in] lhs JSON pointer to compare - @param[in] rhs JSON pointer to compare - @return whether @a lhs is not equal @a rhs - - @complexity Linear in the length of the JSON pointer - - @exceptionsafety No-throw guarantee: this function never throws exceptions. - */ - friend bool operator!=(json_pointer const& lhs, - json_pointer const& rhs) noexcept - { - return !(lhs == rhs); - } - - /// the reference tokens - std::vector reference_tokens; -}; -} // namespace nlohmann - -// #include - - -#include -#include - -// #include - - -namespace nlohmann -{ -namespace detail -{ -template -class json_ref -{ - public: - using value_type = BasicJsonType; - - json_ref(value_type&& value) - : owned_value(std::move(value)) - , value_ref(&owned_value) - , is_rvalue(true) - {} - - json_ref(const value_type& value) - : value_ref(const_cast(&value)) - , is_rvalue(false) - {} - - json_ref(std::initializer_list init) - : owned_value(init) - , value_ref(&owned_value) - , is_rvalue(true) - {} - - template < - class... Args, - enable_if_t::value, int> = 0 > - json_ref(Args && ... args) - : owned_value(std::forward(args)...) - , value_ref(&owned_value) - , is_rvalue(true) - {} - - // class should be movable only - json_ref(json_ref&&) = default; - json_ref(const json_ref&) = delete; - json_ref& operator=(const json_ref&) = delete; - json_ref& operator=(json_ref&&) = delete; - ~json_ref() = default; - - value_type moved_or_copied() const - { - if (is_rvalue) - { - return std::move(*value_ref); - } - return *value_ref; - } - - value_type const& operator*() const - { - return *static_cast(value_ref); - } - - value_type const* operator->() const - { - return static_cast(value_ref); - } - - private: - mutable value_type owned_value = nullptr; - value_type* value_ref = nullptr; - const bool is_rvalue = true; -}; -} // namespace detail -} // namespace nlohmann - -// #include - -// #include - -// #include - -// #include - - -#include // reverse -#include // array -#include // uint8_t, uint16_t, uint32_t, uint64_t -#include // memcpy -#include // numeric_limits -#include // string -#include // isnan, isinf - -// #include - -// #include - -// #include - - -#include // copy -#include // size_t -#include // streamsize -#include // back_inserter -#include // shared_ptr, make_shared -#include // basic_ostream -#include // basic_string -#include // vector -// #include - - -namespace nlohmann -{ -namespace detail -{ -/// abstract output adapter interface -template struct output_adapter_protocol -{ - virtual void write_character(CharType c) = 0; - virtual void write_characters(const CharType* s, std::size_t length) = 0; - virtual ~output_adapter_protocol() = default; -}; - -/// a type to simplify interfaces -template -using output_adapter_t = std::shared_ptr>; - -/// output adapter for byte vectors -template -class output_vector_adapter : public output_adapter_protocol -{ - public: - explicit output_vector_adapter(std::vector& vec) noexcept - : v(vec) - {} - - void write_character(CharType c) override - { - v.push_back(c); - } - - JSON_HEDLEY_NON_NULL(2) - void write_characters(const CharType* s, std::size_t length) override - { - std::copy(s, s + length, std::back_inserter(v)); - } - - private: - std::vector& v; -}; - -/// output adapter for output streams -template -class output_stream_adapter : public output_adapter_protocol -{ - public: - explicit output_stream_adapter(std::basic_ostream& s) noexcept - : stream(s) - {} - - void write_character(CharType c) override - { - stream.put(c); - } - - JSON_HEDLEY_NON_NULL(2) - void write_characters(const CharType* s, std::size_t length) override - { - stream.write(s, static_cast(length)); - } - - private: - std::basic_ostream& stream; -}; - -/// output adapter for basic_string -template> -class output_string_adapter : public output_adapter_protocol -{ - public: - explicit output_string_adapter(StringType& s) noexcept - : str(s) - {} - - void write_character(CharType c) override - { - str.push_back(c); - } - - JSON_HEDLEY_NON_NULL(2) - void write_characters(const CharType* s, std::size_t length) override - { - str.append(s, length); - } - - private: - StringType& str; -}; - -template> -class output_adapter -{ - public: - output_adapter(std::vector& vec) - : oa(std::make_shared>(vec)) {} - - output_adapter(std::basic_ostream& s) - : oa(std::make_shared>(s)) {} - - output_adapter(StringType& s) - : oa(std::make_shared>(s)) {} - - operator output_adapter_t() - { - return oa; - } - - private: - output_adapter_t oa = nullptr; -}; -} // namespace detail -} // namespace nlohmann - - -namespace nlohmann -{ -namespace detail -{ -/////////////////// -// binary writer // -/////////////////// - -/*! -@brief serialization to CBOR and MessagePack values -*/ -template -class binary_writer -{ - using string_t = typename BasicJsonType::string_t; - using binary_t = typename BasicJsonType::binary_t; - using number_float_t = typename BasicJsonType::number_float_t; - - public: - /*! - @brief create a binary writer - - @param[in] adapter output adapter to write to - */ - explicit binary_writer(output_adapter_t adapter) : oa(adapter) - { - JSON_ASSERT(oa); - } - - /*! - @param[in] j JSON value to serialize - @pre j.type() == value_t::object - */ - void write_bson(const BasicJsonType& j) - { - switch (j.type()) - { - case value_t::object: - { - write_bson_object(*j.m_value.object); - break; - } - - default: - { - JSON_THROW(type_error::create(317, "to serialize to BSON, top-level type must be object, but is " + std::string(j.type_name()))); - } - } - } - - /*! - @param[in] j JSON value to serialize - */ - void write_cbor(const BasicJsonType& j) - { - switch (j.type()) - { - case value_t::null: - { - oa->write_character(to_char_type(0xF6)); - break; - } - - case value_t::boolean: - { - oa->write_character(j.m_value.boolean - ? to_char_type(0xF5) - : to_char_type(0xF4)); - break; - } - - case value_t::number_integer: - { - if (j.m_value.number_integer >= 0) - { - // CBOR does not differentiate between positive signed - // integers and unsigned integers. Therefore, we used the - // code from the value_t::number_unsigned case here. - if (j.m_value.number_integer <= 0x17) - { - write_number(static_cast(j.m_value.number_integer)); - } - else if (j.m_value.number_integer <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0x18)); - write_number(static_cast(j.m_value.number_integer)); - } - else if (j.m_value.number_integer <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0x19)); - write_number(static_cast(j.m_value.number_integer)); - } - else if (j.m_value.number_integer <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0x1A)); - write_number(static_cast(j.m_value.number_integer)); - } - else - { - oa->write_character(to_char_type(0x1B)); - write_number(static_cast(j.m_value.number_integer)); - } - } - else - { - // The conversions below encode the sign in the first - // byte, and the value is converted to a positive number. - const auto positive_number = -1 - j.m_value.number_integer; - if (j.m_value.number_integer >= -24) - { - write_number(static_cast(0x20 + positive_number)); - } - else if (positive_number <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0x38)); - write_number(static_cast(positive_number)); - } - else if (positive_number <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0x39)); - write_number(static_cast(positive_number)); - } - else if (positive_number <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0x3A)); - write_number(static_cast(positive_number)); - } - else - { - oa->write_character(to_char_type(0x3B)); - write_number(static_cast(positive_number)); - } - } - break; - } - - case value_t::number_unsigned: - { - if (j.m_value.number_unsigned <= 0x17) - { - write_number(static_cast(j.m_value.number_unsigned)); - } - else if (j.m_value.number_unsigned <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0x18)); - write_number(static_cast(j.m_value.number_unsigned)); - } - else if (j.m_value.number_unsigned <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0x19)); - write_number(static_cast(j.m_value.number_unsigned)); - } - else if (j.m_value.number_unsigned <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0x1A)); - write_number(static_cast(j.m_value.number_unsigned)); - } - else - { - oa->write_character(to_char_type(0x1B)); - write_number(static_cast(j.m_value.number_unsigned)); - } - break; - } - - case value_t::number_float: - { - if (std::isnan(j.m_value.number_float)) - { - // NaN is 0xf97e00 in CBOR - oa->write_character(to_char_type(0xF9)); - oa->write_character(to_char_type(0x7E)); - oa->write_character(to_char_type(0x00)); - } - else if (std::isinf(j.m_value.number_float)) - { - // Infinity is 0xf97c00, -Infinity is 0xf9fc00 - oa->write_character(to_char_type(0xf9)); - oa->write_character(j.m_value.number_float > 0 ? to_char_type(0x7C) : to_char_type(0xFC)); - oa->write_character(to_char_type(0x00)); - } - else - { - write_compact_float(j.m_value.number_float, detail::input_format_t::cbor); - } - break; - } - - case value_t::string: - { - // step 1: write control byte and the string length - const auto N = j.m_value.string->size(); - if (N <= 0x17) - { - write_number(static_cast(0x60 + N)); - } - else if (N <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0x78)); - write_number(static_cast(N)); - } - else if (N <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0x79)); - write_number(static_cast(N)); - } - else if (N <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0x7A)); - write_number(static_cast(N)); - } - // LCOV_EXCL_START - else if (N <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0x7B)); - write_number(static_cast(N)); - } - // LCOV_EXCL_STOP - - // step 2: write the string - oa->write_characters( - reinterpret_cast(j.m_value.string->c_str()), - j.m_value.string->size()); - break; - } - - case value_t::array: - { - // step 1: write control byte and the array size - const auto N = j.m_value.array->size(); - if (N <= 0x17) - { - write_number(static_cast(0x80 + N)); - } - else if (N <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0x98)); - write_number(static_cast(N)); - } - else if (N <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0x99)); - write_number(static_cast(N)); - } - else if (N <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0x9A)); - write_number(static_cast(N)); - } - // LCOV_EXCL_START - else if (N <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0x9B)); - write_number(static_cast(N)); - } - // LCOV_EXCL_STOP - - // step 2: write each element - for (const auto& el : *j.m_value.array) - { - write_cbor(el); - } - break; - } - - case value_t::binary: - { - if (j.m_value.binary->has_subtype()) - { - write_number(static_cast(0xd8)); - write_number(j.m_value.binary->subtype()); - } - - // step 1: write control byte and the binary array size - const auto N = j.m_value.binary->size(); - if (N <= 0x17) - { - write_number(static_cast(0x40 + N)); - } - else if (N <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0x58)); - write_number(static_cast(N)); - } - else if (N <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0x59)); - write_number(static_cast(N)); - } - else if (N <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0x5A)); - write_number(static_cast(N)); - } - // LCOV_EXCL_START - else if (N <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0x5B)); - write_number(static_cast(N)); - } - // LCOV_EXCL_STOP - - // step 2: write each element - oa->write_characters( - reinterpret_cast(j.m_value.binary->data()), - N); - - break; - } - - case value_t::object: - { - // step 1: write control byte and the object size - const auto N = j.m_value.object->size(); - if (N <= 0x17) - { - write_number(static_cast(0xA0 + N)); - } - else if (N <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0xB8)); - write_number(static_cast(N)); - } - else if (N <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0xB9)); - write_number(static_cast(N)); - } - else if (N <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0xBA)); - write_number(static_cast(N)); - } - // LCOV_EXCL_START - else if (N <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0xBB)); - write_number(static_cast(N)); - } - // LCOV_EXCL_STOP - - // step 2: write each element - for (const auto& el : *j.m_value.object) - { - write_cbor(el.first); - write_cbor(el.second); - } - break; - } - - default: - break; - } - } - - /*! - @param[in] j JSON value to serialize - */ - void write_msgpack(const BasicJsonType& j) - { - switch (j.type()) - { - case value_t::null: // nil - { - oa->write_character(to_char_type(0xC0)); - break; - } - - case value_t::boolean: // true and false - { - oa->write_character(j.m_value.boolean - ? to_char_type(0xC3) - : to_char_type(0xC2)); - break; - } - - case value_t::number_integer: - { - if (j.m_value.number_integer >= 0) - { - // MessagePack does not differentiate between positive - // signed integers and unsigned integers. Therefore, we used - // the code from the value_t::number_unsigned case here. - if (j.m_value.number_unsigned < 128) - { - // positive fixnum - write_number(static_cast(j.m_value.number_integer)); - } - else if (j.m_value.number_unsigned <= (std::numeric_limits::max)()) - { - // uint 8 - oa->write_character(to_char_type(0xCC)); - write_number(static_cast(j.m_value.number_integer)); - } - else if (j.m_value.number_unsigned <= (std::numeric_limits::max)()) - { - // uint 16 - oa->write_character(to_char_type(0xCD)); - write_number(static_cast(j.m_value.number_integer)); - } - else if (j.m_value.number_unsigned <= (std::numeric_limits::max)()) - { - // uint 32 - oa->write_character(to_char_type(0xCE)); - write_number(static_cast(j.m_value.number_integer)); - } - else if (j.m_value.number_unsigned <= (std::numeric_limits::max)()) - { - // uint 64 - oa->write_character(to_char_type(0xCF)); - write_number(static_cast(j.m_value.number_integer)); - } - } - else - { - if (j.m_value.number_integer >= -32) - { - // negative fixnum - write_number(static_cast(j.m_value.number_integer)); - } - else if (j.m_value.number_integer >= (std::numeric_limits::min)() && - j.m_value.number_integer <= (std::numeric_limits::max)()) - { - // int 8 - oa->write_character(to_char_type(0xD0)); - write_number(static_cast(j.m_value.number_integer)); - } - else if (j.m_value.number_integer >= (std::numeric_limits::min)() && - j.m_value.number_integer <= (std::numeric_limits::max)()) - { - // int 16 - oa->write_character(to_char_type(0xD1)); - write_number(static_cast(j.m_value.number_integer)); - } - else if (j.m_value.number_integer >= (std::numeric_limits::min)() && - j.m_value.number_integer <= (std::numeric_limits::max)()) - { - // int 32 - oa->write_character(to_char_type(0xD2)); - write_number(static_cast(j.m_value.number_integer)); - } - else if (j.m_value.number_integer >= (std::numeric_limits::min)() && - j.m_value.number_integer <= (std::numeric_limits::max)()) - { - // int 64 - oa->write_character(to_char_type(0xD3)); - write_number(static_cast(j.m_value.number_integer)); - } - } - break; - } - - case value_t::number_unsigned: - { - if (j.m_value.number_unsigned < 128) - { - // positive fixnum - write_number(static_cast(j.m_value.number_integer)); - } - else if (j.m_value.number_unsigned <= (std::numeric_limits::max)()) - { - // uint 8 - oa->write_character(to_char_type(0xCC)); - write_number(static_cast(j.m_value.number_integer)); - } - else if (j.m_value.number_unsigned <= (std::numeric_limits::max)()) - { - // uint 16 - oa->write_character(to_char_type(0xCD)); - write_number(static_cast(j.m_value.number_integer)); - } - else if (j.m_value.number_unsigned <= (std::numeric_limits::max)()) - { - // uint 32 - oa->write_character(to_char_type(0xCE)); - write_number(static_cast(j.m_value.number_integer)); - } - else if (j.m_value.number_unsigned <= (std::numeric_limits::max)()) - { - // uint 64 - oa->write_character(to_char_type(0xCF)); - write_number(static_cast(j.m_value.number_integer)); - } - break; - } - - case value_t::number_float: - { - write_compact_float(j.m_value.number_float, detail::input_format_t::msgpack); - break; - } - - case value_t::string: - { - // step 1: write control byte and the string length - const auto N = j.m_value.string->size(); - if (N <= 31) - { - // fixstr - write_number(static_cast(0xA0 | N)); - } - else if (N <= (std::numeric_limits::max)()) - { - // str 8 - oa->write_character(to_char_type(0xD9)); - write_number(static_cast(N)); - } - else if (N <= (std::numeric_limits::max)()) - { - // str 16 - oa->write_character(to_char_type(0xDA)); - write_number(static_cast(N)); - } - else if (N <= (std::numeric_limits::max)()) - { - // str 32 - oa->write_character(to_char_type(0xDB)); - write_number(static_cast(N)); - } - - // step 2: write the string - oa->write_characters( - reinterpret_cast(j.m_value.string->c_str()), - j.m_value.string->size()); - break; - } - - case value_t::array: - { - // step 1: write control byte and the array size - const auto N = j.m_value.array->size(); - if (N <= 15) - { - // fixarray - write_number(static_cast(0x90 | N)); - } - else if (N <= (std::numeric_limits::max)()) - { - // array 16 - oa->write_character(to_char_type(0xDC)); - write_number(static_cast(N)); - } - else if (N <= (std::numeric_limits::max)()) - { - // array 32 - oa->write_character(to_char_type(0xDD)); - write_number(static_cast(N)); - } - - // step 2: write each element - for (const auto& el : *j.m_value.array) - { - write_msgpack(el); - } - break; - } - - case value_t::binary: - { - // step 0: determine if the binary type has a set subtype to - // determine whether or not to use the ext or fixext types - const bool use_ext = j.m_value.binary->has_subtype(); - - // step 1: write control byte and the byte string length - const auto N = j.m_value.binary->size(); - if (N <= (std::numeric_limits::max)()) - { - std::uint8_t output_type{}; - bool fixed = true; - if (use_ext) - { - switch (N) - { - case 1: - output_type = 0xD4; // fixext 1 - break; - case 2: - output_type = 0xD5; // fixext 2 - break; - case 4: - output_type = 0xD6; // fixext 4 - break; - case 8: - output_type = 0xD7; // fixext 8 - break; - case 16: - output_type = 0xD8; // fixext 16 - break; - default: - output_type = 0xC7; // ext 8 - fixed = false; - break; - } - - } - else - { - output_type = 0xC4; // bin 8 - fixed = false; - } - - oa->write_character(to_char_type(output_type)); - if (!fixed) - { - write_number(static_cast(N)); - } - } - else if (N <= (std::numeric_limits::max)()) - { - std::uint8_t output_type = use_ext - ? 0xC8 // ext 16 - : 0xC5; // bin 16 - - oa->write_character(to_char_type(output_type)); - write_number(static_cast(N)); - } - else if (N <= (std::numeric_limits::max)()) - { - std::uint8_t output_type = use_ext - ? 0xC9 // ext 32 - : 0xC6; // bin 32 - - oa->write_character(to_char_type(output_type)); - write_number(static_cast(N)); - } - - // step 1.5: if this is an ext type, write the subtype - if (use_ext) - { - write_number(static_cast(j.m_value.binary->subtype())); - } - - // step 2: write the byte string - oa->write_characters( - reinterpret_cast(j.m_value.binary->data()), - N); - - break; - } - - case value_t::object: - { - // step 1: write control byte and the object size - const auto N = j.m_value.object->size(); - if (N <= 15) - { - // fixmap - write_number(static_cast(0x80 | (N & 0xF))); - } - else if (N <= (std::numeric_limits::max)()) - { - // map 16 - oa->write_character(to_char_type(0xDE)); - write_number(static_cast(N)); - } - else if (N <= (std::numeric_limits::max)()) - { - // map 32 - oa->write_character(to_char_type(0xDF)); - write_number(static_cast(N)); - } - - // step 2: write each element - for (const auto& el : *j.m_value.object) - { - write_msgpack(el.first); - write_msgpack(el.second); - } - break; - } - - default: - break; - } - } - - /*! - @param[in] j JSON value to serialize - @param[in] use_count whether to use '#' prefixes (optimized format) - @param[in] use_type whether to use '$' prefixes (optimized format) - @param[in] add_prefix whether prefixes need to be used for this value - */ - void write_ubjson(const BasicJsonType& j, const bool use_count, - const bool use_type, const bool add_prefix = true) - { - switch (j.type()) - { - case value_t::null: - { - if (add_prefix) - { - oa->write_character(to_char_type('Z')); - } - break; - } - - case value_t::boolean: - { - if (add_prefix) - { - oa->write_character(j.m_value.boolean - ? to_char_type('T') - : to_char_type('F')); - } - break; - } - - case value_t::number_integer: - { - write_number_with_ubjson_prefix(j.m_value.number_integer, add_prefix); - break; - } - - case value_t::number_unsigned: - { - write_number_with_ubjson_prefix(j.m_value.number_unsigned, add_prefix); - break; - } - - case value_t::number_float: - { - write_number_with_ubjson_prefix(j.m_value.number_float, add_prefix); - break; - } - - case value_t::string: - { - if (add_prefix) - { - oa->write_character(to_char_type('S')); - } - write_number_with_ubjson_prefix(j.m_value.string->size(), true); - oa->write_characters( - reinterpret_cast(j.m_value.string->c_str()), - j.m_value.string->size()); - break; - } - - case value_t::array: - { - if (add_prefix) - { - oa->write_character(to_char_type('[')); - } - - bool prefix_required = true; - if (use_type && !j.m_value.array->empty()) - { - JSON_ASSERT(use_count); - const CharType first_prefix = ubjson_prefix(j.front()); - const bool same_prefix = std::all_of(j.begin() + 1, j.end(), - [this, first_prefix](const BasicJsonType & v) - { - return ubjson_prefix(v) == first_prefix; - }); - - if (same_prefix) - { - prefix_required = false; - oa->write_character(to_char_type('$')); - oa->write_character(first_prefix); - } - } - - if (use_count) - { - oa->write_character(to_char_type('#')); - write_number_with_ubjson_prefix(j.m_value.array->size(), true); - } - - for (const auto& el : *j.m_value.array) - { - write_ubjson(el, use_count, use_type, prefix_required); - } - - if (!use_count) - { - oa->write_character(to_char_type(']')); - } - - break; - } - - case value_t::binary: - { - if (add_prefix) - { - oa->write_character(to_char_type('[')); - } - - if (use_type && !j.m_value.binary->empty()) - { - JSON_ASSERT(use_count); - oa->write_character(to_char_type('$')); - oa->write_character('U'); - } - - if (use_count) - { - oa->write_character(to_char_type('#')); - write_number_with_ubjson_prefix(j.m_value.binary->size(), true); - } - - if (use_type) - { - oa->write_characters( - reinterpret_cast(j.m_value.binary->data()), - j.m_value.binary->size()); - } - else - { - for (size_t i = 0; i < j.m_value.binary->size(); ++i) - { - oa->write_character(to_char_type('U')); - oa->write_character(j.m_value.binary->data()[i]); - } - } - - if (!use_count) - { - oa->write_character(to_char_type(']')); - } - - break; - } - - case value_t::object: - { - if (add_prefix) - { - oa->write_character(to_char_type('{')); - } - - bool prefix_required = true; - if (use_type && !j.m_value.object->empty()) - { - JSON_ASSERT(use_count); - const CharType first_prefix = ubjson_prefix(j.front()); - const bool same_prefix = std::all_of(j.begin(), j.end(), - [this, first_prefix](const BasicJsonType & v) - { - return ubjson_prefix(v) == first_prefix; - }); - - if (same_prefix) - { - prefix_required = false; - oa->write_character(to_char_type('$')); - oa->write_character(first_prefix); - } - } - - if (use_count) - { - oa->write_character(to_char_type('#')); - write_number_with_ubjson_prefix(j.m_value.object->size(), true); - } - - for (const auto& el : *j.m_value.object) - { - write_number_with_ubjson_prefix(el.first.size(), true); - oa->write_characters( - reinterpret_cast(el.first.c_str()), - el.first.size()); - write_ubjson(el.second, use_count, use_type, prefix_required); - } - - if (!use_count) - { - oa->write_character(to_char_type('}')); - } - - break; - } - - default: - break; - } - } - - private: - ////////// - // BSON // - ////////// - - /*! - @return The size of a BSON document entry header, including the id marker - and the entry name size (and its null-terminator). - */ - static std::size_t calc_bson_entry_header_size(const string_t& name) - { - const auto it = name.find(static_cast(0)); - if (JSON_HEDLEY_UNLIKELY(it != BasicJsonType::string_t::npos)) - { - JSON_THROW(out_of_range::create(409, - "BSON key cannot contain code point U+0000 (at byte " + std::to_string(it) + ")")); - } - - return /*id*/ 1ul + name.size() + /*zero-terminator*/1u; - } - - /*! - @brief Writes the given @a element_type and @a name to the output adapter - */ - void write_bson_entry_header(const string_t& name, - const std::uint8_t element_type) - { - oa->write_character(to_char_type(element_type)); // boolean - oa->write_characters( - reinterpret_cast(name.c_str()), - name.size() + 1u); - } - - /*! - @brief Writes a BSON element with key @a name and boolean value @a value - */ - void write_bson_boolean(const string_t& name, - const bool value) - { - write_bson_entry_header(name, 0x08); - oa->write_character(value ? to_char_type(0x01) : to_char_type(0x00)); - } - - /*! - @brief Writes a BSON element with key @a name and double value @a value - */ - void write_bson_double(const string_t& name, - const double value) - { - write_bson_entry_header(name, 0x01); - write_number(value); - } - - /*! - @return The size of the BSON-encoded string in @a value - */ - static std::size_t calc_bson_string_size(const string_t& value) - { - return sizeof(std::int32_t) + value.size() + 1ul; - } - - /*! - @brief Writes a BSON element with key @a name and string value @a value - */ - void write_bson_string(const string_t& name, - const string_t& value) - { - write_bson_entry_header(name, 0x02); - - write_number(static_cast(value.size() + 1ul)); - oa->write_characters( - reinterpret_cast(value.c_str()), - value.size() + 1); - } - - /*! - @brief Writes a BSON element with key @a name and null value - */ - void write_bson_null(const string_t& name) - { - write_bson_entry_header(name, 0x0A); - } - - /*! - @return The size of the BSON-encoded integer @a value - */ - static std::size_t calc_bson_integer_size(const std::int64_t value) - { - return (std::numeric_limits::min)() <= value && value <= (std::numeric_limits::max)() - ? sizeof(std::int32_t) - : sizeof(std::int64_t); - } - - /*! - @brief Writes a BSON element with key @a name and integer @a value - */ - void write_bson_integer(const string_t& name, - const std::int64_t value) - { - if ((std::numeric_limits::min)() <= value && value <= (std::numeric_limits::max)()) - { - write_bson_entry_header(name, 0x10); // int32 - write_number(static_cast(value)); - } - else - { - write_bson_entry_header(name, 0x12); // int64 - write_number(static_cast(value)); - } - } - - /*! - @return The size of the BSON-encoded unsigned integer in @a j - */ - static constexpr std::size_t calc_bson_unsigned_size(const std::uint64_t value) noexcept - { - return (value <= static_cast((std::numeric_limits::max)())) - ? sizeof(std::int32_t) - : sizeof(std::int64_t); - } - - /*! - @brief Writes a BSON element with key @a name and unsigned @a value - */ - void write_bson_unsigned(const string_t& name, - const std::uint64_t value) - { - if (value <= static_cast((std::numeric_limits::max)())) - { - write_bson_entry_header(name, 0x10 /* int32 */); - write_number(static_cast(value)); - } - else if (value <= static_cast((std::numeric_limits::max)())) - { - write_bson_entry_header(name, 0x12 /* int64 */); - write_number(static_cast(value)); - } - else - { - JSON_THROW(out_of_range::create(407, "integer number " + std::to_string(value) + " cannot be represented by BSON as it does not fit int64")); - } - } - - /*! - @brief Writes a BSON element with key @a name and object @a value - */ - void write_bson_object_entry(const string_t& name, - const typename BasicJsonType::object_t& value) - { - write_bson_entry_header(name, 0x03); // object - write_bson_object(value); - } - - /*! - @return The size of the BSON-encoded array @a value - */ - static std::size_t calc_bson_array_size(const typename BasicJsonType::array_t& value) - { - std::size_t array_index = 0ul; - - const std::size_t embedded_document_size = std::accumulate(std::begin(value), std::end(value), std::size_t(0), [&array_index](std::size_t result, const typename BasicJsonType::array_t::value_type & el) - { - return result + calc_bson_element_size(std::to_string(array_index++), el); - }); - - return sizeof(std::int32_t) + embedded_document_size + 1ul; - } - - /*! - @return The size of the BSON-encoded binary array @a value - */ - static std::size_t calc_bson_binary_size(const typename BasicJsonType::binary_t& value) - { - return sizeof(std::int32_t) + value.size() + 1ul; - } - - /*! - @brief Writes a BSON element with key @a name and array @a value - */ - void write_bson_array(const string_t& name, - const typename BasicJsonType::array_t& value) - { - write_bson_entry_header(name, 0x04); // array - write_number(static_cast(calc_bson_array_size(value))); - - std::size_t array_index = 0ul; - - for (const auto& el : value) - { - write_bson_element(std::to_string(array_index++), el); - } - - oa->write_character(to_char_type(0x00)); - } - - /*! - @brief Writes a BSON element with key @a name and binary value @a value - */ - void write_bson_binary(const string_t& name, - const binary_t& value) - { - write_bson_entry_header(name, 0x05); - - write_number(static_cast(value.size())); - write_number(value.has_subtype() ? value.subtype() : std::uint8_t(0x00)); - - oa->write_characters(reinterpret_cast(value.data()), value.size()); - } - - /*! - @brief Calculates the size necessary to serialize the JSON value @a j with its @a name - @return The calculated size for the BSON document entry for @a j with the given @a name. - */ - static std::size_t calc_bson_element_size(const string_t& name, - const BasicJsonType& j) - { - const auto header_size = calc_bson_entry_header_size(name); - switch (j.type()) - { - case value_t::object: - return header_size + calc_bson_object_size(*j.m_value.object); - - case value_t::array: - return header_size + calc_bson_array_size(*j.m_value.array); - - case value_t::binary: - return header_size + calc_bson_binary_size(*j.m_value.binary); - - case value_t::boolean: - return header_size + 1ul; - - case value_t::number_float: - return header_size + 8ul; - - case value_t::number_integer: - return header_size + calc_bson_integer_size(j.m_value.number_integer); - - case value_t::number_unsigned: - return header_size + calc_bson_unsigned_size(j.m_value.number_unsigned); - - case value_t::string: - return header_size + calc_bson_string_size(*j.m_value.string); - - case value_t::null: - return header_size + 0ul; - - // LCOV_EXCL_START - default: - JSON_ASSERT(false); - return 0ul; - // LCOV_EXCL_STOP - } - } - - /*! - @brief Serializes the JSON value @a j to BSON and associates it with the - key @a name. - @param name The name to associate with the JSON entity @a j within the - current BSON document - @return The size of the BSON entry - */ - void write_bson_element(const string_t& name, - const BasicJsonType& j) - { - switch (j.type()) - { - case value_t::object: - return write_bson_object_entry(name, *j.m_value.object); - - case value_t::array: - return write_bson_array(name, *j.m_value.array); - - case value_t::binary: - return write_bson_binary(name, *j.m_value.binary); - - case value_t::boolean: - return write_bson_boolean(name, j.m_value.boolean); - - case value_t::number_float: - return write_bson_double(name, j.m_value.number_float); - - case value_t::number_integer: - return write_bson_integer(name, j.m_value.number_integer); - - case value_t::number_unsigned: - return write_bson_unsigned(name, j.m_value.number_unsigned); - - case value_t::string: - return write_bson_string(name, *j.m_value.string); - - case value_t::null: - return write_bson_null(name); - - // LCOV_EXCL_START - default: - JSON_ASSERT(false); - return; - // LCOV_EXCL_STOP - } - } - - /*! - @brief Calculates the size of the BSON serialization of the given - JSON-object @a j. - @param[in] j JSON value to serialize - @pre j.type() == value_t::object - */ - static std::size_t calc_bson_object_size(const typename BasicJsonType::object_t& value) - { - std::size_t document_size = std::accumulate(value.begin(), value.end(), std::size_t(0), - [](size_t result, const typename BasicJsonType::object_t::value_type & el) - { - return result += calc_bson_element_size(el.first, el.second); - }); - - return sizeof(std::int32_t) + document_size + 1ul; - } - - /*! - @param[in] j JSON value to serialize - @pre j.type() == value_t::object - */ - void write_bson_object(const typename BasicJsonType::object_t& value) - { - write_number(static_cast(calc_bson_object_size(value))); - - for (const auto& el : value) - { - write_bson_element(el.first, el.second); - } - - oa->write_character(to_char_type(0x00)); - } - - ////////// - // CBOR // - ////////// - - static constexpr CharType get_cbor_float_prefix(float /*unused*/) - { - return to_char_type(0xFA); // Single-Precision Float - } - - static constexpr CharType get_cbor_float_prefix(double /*unused*/) - { - return to_char_type(0xFB); // Double-Precision Float - } - - ///////////// - // MsgPack // - ///////////// - - static constexpr CharType get_msgpack_float_prefix(float /*unused*/) - { - return to_char_type(0xCA); // float 32 - } - - static constexpr CharType get_msgpack_float_prefix(double /*unused*/) - { - return to_char_type(0xCB); // float 64 - } - - //////////// - // UBJSON // - //////////// - - // UBJSON: write number (floating point) - template::value, int>::type = 0> - void write_number_with_ubjson_prefix(const NumberType n, - const bool add_prefix) - { - if (add_prefix) - { - oa->write_character(get_ubjson_float_prefix(n)); - } - write_number(n); - } - - // UBJSON: write number (unsigned integer) - template::value, int>::type = 0> - void write_number_with_ubjson_prefix(const NumberType n, - const bool add_prefix) - { - if (n <= static_cast((std::numeric_limits::max)())) - { - if (add_prefix) - { - oa->write_character(to_char_type('i')); // int8 - } - write_number(static_cast(n)); - } - else if (n <= (std::numeric_limits::max)()) - { - if (add_prefix) - { - oa->write_character(to_char_type('U')); // uint8 - } - write_number(static_cast(n)); - } - else if (n <= static_cast((std::numeric_limits::max)())) - { - if (add_prefix) - { - oa->write_character(to_char_type('I')); // int16 - } - write_number(static_cast(n)); - } - else if (n <= static_cast((std::numeric_limits::max)())) - { - if (add_prefix) - { - oa->write_character(to_char_type('l')); // int32 - } - write_number(static_cast(n)); - } - else if (n <= static_cast((std::numeric_limits::max)())) - { - if (add_prefix) - { - oa->write_character(to_char_type('L')); // int64 - } - write_number(static_cast(n)); - } - else - { - if (add_prefix) - { - oa->write_character(to_char_type('H')); // high-precision number - } - - const auto number = BasicJsonType(n).dump(); - write_number_with_ubjson_prefix(number.size(), true); - for (std::size_t i = 0; i < number.size(); ++i) - { - oa->write_character(to_char_type(static_cast(number[i]))); - } - } - } - - // UBJSON: write number (signed integer) - template < typename NumberType, typename std::enable_if < - std::is_signed::value&& - !std::is_floating_point::value, int >::type = 0 > - void write_number_with_ubjson_prefix(const NumberType n, - const bool add_prefix) - { - if ((std::numeric_limits::min)() <= n && n <= (std::numeric_limits::max)()) - { - if (add_prefix) - { - oa->write_character(to_char_type('i')); // int8 - } - write_number(static_cast(n)); - } - else if (static_cast((std::numeric_limits::min)()) <= n && n <= static_cast((std::numeric_limits::max)())) - { - if (add_prefix) - { - oa->write_character(to_char_type('U')); // uint8 - } - write_number(static_cast(n)); - } - else if ((std::numeric_limits::min)() <= n && n <= (std::numeric_limits::max)()) - { - if (add_prefix) - { - oa->write_character(to_char_type('I')); // int16 - } - write_number(static_cast(n)); - } - else if ((std::numeric_limits::min)() <= n && n <= (std::numeric_limits::max)()) - { - if (add_prefix) - { - oa->write_character(to_char_type('l')); // int32 - } - write_number(static_cast(n)); - } - else if ((std::numeric_limits::min)() <= n && n <= (std::numeric_limits::max)()) - { - if (add_prefix) - { - oa->write_character(to_char_type('L')); // int64 - } - write_number(static_cast(n)); - } - // LCOV_EXCL_START - else - { - if (add_prefix) - { - oa->write_character(to_char_type('H')); // high-precision number - } - - const auto number = BasicJsonType(n).dump(); - write_number_with_ubjson_prefix(number.size(), true); - for (std::size_t i = 0; i < number.size(); ++i) - { - oa->write_character(to_char_type(static_cast(number[i]))); - } - } - // LCOV_EXCL_STOP - } - - /*! - @brief determine the type prefix of container values - */ - CharType ubjson_prefix(const BasicJsonType& j) const noexcept - { - switch (j.type()) - { - case value_t::null: - return 'Z'; - - case value_t::boolean: - return j.m_value.boolean ? 'T' : 'F'; - - case value_t::number_integer: - { - if ((std::numeric_limits::min)() <= j.m_value.number_integer && j.m_value.number_integer <= (std::numeric_limits::max)()) - { - return 'i'; - } - if ((std::numeric_limits::min)() <= j.m_value.number_integer && j.m_value.number_integer <= (std::numeric_limits::max)()) - { - return 'U'; - } - if ((std::numeric_limits::min)() <= j.m_value.number_integer && j.m_value.number_integer <= (std::numeric_limits::max)()) - { - return 'I'; - } - if ((std::numeric_limits::min)() <= j.m_value.number_integer && j.m_value.number_integer <= (std::numeric_limits::max)()) - { - return 'l'; - } - if ((std::numeric_limits::min)() <= j.m_value.number_integer && j.m_value.number_integer <= (std::numeric_limits::max)()) - { - return 'L'; - } - // anything else is treated as high-precision number - return 'H'; // LCOV_EXCL_LINE - } - - case value_t::number_unsigned: - { - if (j.m_value.number_unsigned <= static_cast((std::numeric_limits::max)())) - { - return 'i'; - } - if (j.m_value.number_unsigned <= static_cast((std::numeric_limits::max)())) - { - return 'U'; - } - if (j.m_value.number_unsigned <= static_cast((std::numeric_limits::max)())) - { - return 'I'; - } - if (j.m_value.number_unsigned <= static_cast((std::numeric_limits::max)())) - { - return 'l'; - } - if (j.m_value.number_unsigned <= static_cast((std::numeric_limits::max)())) - { - return 'L'; - } - // anything else is treated as high-precision number - return 'H'; // LCOV_EXCL_LINE - } - - case value_t::number_float: - return get_ubjson_float_prefix(j.m_value.number_float); - - case value_t::string: - return 'S'; - - case value_t::array: // fallthrough - case value_t::binary: - return '['; - - case value_t::object: - return '{'; - - default: // discarded values - return 'N'; - } - } - - static constexpr CharType get_ubjson_float_prefix(float /*unused*/) - { - return 'd'; // float 32 - } - - static constexpr CharType get_ubjson_float_prefix(double /*unused*/) - { - return 'D'; // float 64 - } - - /////////////////////// - // Utility functions // - /////////////////////// - - /* - @brief write a number to output input - @param[in] n number of type @a NumberType - @tparam NumberType the type of the number - @tparam OutputIsLittleEndian Set to true if output data is - required to be little endian - - @note This function needs to respect the system's endianess, because bytes - in CBOR, MessagePack, and UBJSON are stored in network order (big - endian) and therefore need reordering on little endian systems. - */ - template - void write_number(const NumberType n) - { - // step 1: write number to array of length NumberType - std::array vec; - std::memcpy(vec.data(), &n, sizeof(NumberType)); - - // step 2: write array to output (with possible reordering) - if (is_little_endian != OutputIsLittleEndian) - { - // reverse byte order prior to conversion if necessary - std::reverse(vec.begin(), vec.end()); - } - - oa->write_characters(vec.data(), sizeof(NumberType)); - } - - void write_compact_float(const number_float_t n, detail::input_format_t format) - { - if (static_cast(n) >= static_cast(std::numeric_limits::lowest()) && - static_cast(n) <= static_cast((std::numeric_limits::max)()) && - static_cast(static_cast(n)) == static_cast(n)) - { - oa->write_character(format == detail::input_format_t::cbor - ? get_cbor_float_prefix(static_cast(n)) - : get_msgpack_float_prefix(static_cast(n))); - write_number(static_cast(n)); - } - else - { - oa->write_character(format == detail::input_format_t::cbor - ? get_cbor_float_prefix(n) - : get_msgpack_float_prefix(n)); - write_number(n); - } - } - - public: - // The following to_char_type functions are implement the conversion - // between uint8_t and CharType. In case CharType is not unsigned, - // such a conversion is required to allow values greater than 128. - // See for a discussion. - template < typename C = CharType, - enable_if_t < std::is_signed::value && std::is_signed::value > * = nullptr > - static constexpr CharType to_char_type(std::uint8_t x) noexcept - { - return *reinterpret_cast(&x); - } - - template < typename C = CharType, - enable_if_t < std::is_signed::value && std::is_unsigned::value > * = nullptr > - static CharType to_char_type(std::uint8_t x) noexcept - { - static_assert(sizeof(std::uint8_t) == sizeof(CharType), "size of CharType must be equal to std::uint8_t"); - static_assert(std::is_trivial::value, "CharType must be trivial"); - CharType result; - std::memcpy(&result, &x, sizeof(x)); - return result; - } - - template::value>* = nullptr> - static constexpr CharType to_char_type(std::uint8_t x) noexcept - { - return x; - } - - template < typename InputCharType, typename C = CharType, - enable_if_t < - std::is_signed::value && - std::is_signed::value && - std::is_same::type>::value - > * = nullptr > - static constexpr CharType to_char_type(InputCharType x) noexcept - { - return x; - } - - private: - /// whether we can assume little endianess - const bool is_little_endian = little_endianess(); - - /// the output - output_adapter_t oa = nullptr; -}; -} // namespace detail -} // namespace nlohmann - -// #include - -// #include - - -#include // reverse, remove, fill, find, none_of -#include // array -#include // localeconv, lconv -#include // labs, isfinite, isnan, signbit -#include // size_t, ptrdiff_t -#include // uint8_t -#include // snprintf -#include // numeric_limits -#include // string, char_traits -#include // is_same -#include // move - -// #include - - -#include // array -#include // signbit, isfinite -#include // intN_t, uintN_t -#include // memcpy, memmove -#include // numeric_limits -#include // conditional - -// #include - - -namespace nlohmann -{ -namespace detail -{ - -/*! -@brief implements the Grisu2 algorithm for binary to decimal floating-point -conversion. - -This implementation is a slightly modified version of the reference -implementation which may be obtained from -http://florian.loitsch.com/publications (bench.tar.gz). - -The code is distributed under the MIT license, Copyright (c) 2009 Florian Loitsch. - -For a detailed description of the algorithm see: - -[1] Loitsch, "Printing Floating-Point Numbers Quickly and Accurately with - Integers", Proceedings of the ACM SIGPLAN 2010 Conference on Programming - Language Design and Implementation, PLDI 2010 -[2] Burger, Dybvig, "Printing Floating-Point Numbers Quickly and Accurately", - Proceedings of the ACM SIGPLAN 1996 Conference on Programming Language - Design and Implementation, PLDI 1996 -*/ -namespace dtoa_impl -{ - -template -Target reinterpret_bits(const Source source) -{ - static_assert(sizeof(Target) == sizeof(Source), "size mismatch"); - - Target target; - std::memcpy(&target, &source, sizeof(Source)); - return target; -} - -struct diyfp // f * 2^e -{ - static constexpr int kPrecision = 64; // = q - - std::uint64_t f = 0; - int e = 0; - - constexpr diyfp(std::uint64_t f_, int e_) noexcept : f(f_), e(e_) {} - - /*! - @brief returns x - y - @pre x.e == y.e and x.f >= y.f - */ - static diyfp sub(const diyfp& x, const diyfp& y) noexcept - { - JSON_ASSERT(x.e == y.e); - JSON_ASSERT(x.f >= y.f); - - return {x.f - y.f, x.e}; - } - - /*! - @brief returns x * y - @note The result is rounded. (Only the upper q bits are returned.) - */ - static diyfp mul(const diyfp& x, const diyfp& y) noexcept - { - static_assert(kPrecision == 64, "internal error"); - - // Computes: - // f = round((x.f * y.f) / 2^q) - // e = x.e + y.e + q - - // Emulate the 64-bit * 64-bit multiplication: - // - // p = u * v - // = (u_lo + 2^32 u_hi) (v_lo + 2^32 v_hi) - // = (u_lo v_lo ) + 2^32 ((u_lo v_hi ) + (u_hi v_lo )) + 2^64 (u_hi v_hi ) - // = (p0 ) + 2^32 ((p1 ) + (p2 )) + 2^64 (p3 ) - // = (p0_lo + 2^32 p0_hi) + 2^32 ((p1_lo + 2^32 p1_hi) + (p2_lo + 2^32 p2_hi)) + 2^64 (p3 ) - // = (p0_lo ) + 2^32 (p0_hi + p1_lo + p2_lo ) + 2^64 (p1_hi + p2_hi + p3) - // = (p0_lo ) + 2^32 (Q ) + 2^64 (H ) - // = (p0_lo ) + 2^32 (Q_lo + 2^32 Q_hi ) + 2^64 (H ) - // - // (Since Q might be larger than 2^32 - 1) - // - // = (p0_lo + 2^32 Q_lo) + 2^64 (Q_hi + H) - // - // (Q_hi + H does not overflow a 64-bit int) - // - // = p_lo + 2^64 p_hi - - const std::uint64_t u_lo = x.f & 0xFFFFFFFFu; - const std::uint64_t u_hi = x.f >> 32u; - const std::uint64_t v_lo = y.f & 0xFFFFFFFFu; - const std::uint64_t v_hi = y.f >> 32u; - - const std::uint64_t p0 = u_lo * v_lo; - const std::uint64_t p1 = u_lo * v_hi; - const std::uint64_t p2 = u_hi * v_lo; - const std::uint64_t p3 = u_hi * v_hi; - - const std::uint64_t p0_hi = p0 >> 32u; - const std::uint64_t p1_lo = p1 & 0xFFFFFFFFu; - const std::uint64_t p1_hi = p1 >> 32u; - const std::uint64_t p2_lo = p2 & 0xFFFFFFFFu; - const std::uint64_t p2_hi = p2 >> 32u; - - std::uint64_t Q = p0_hi + p1_lo + p2_lo; - - // The full product might now be computed as - // - // p_hi = p3 + p2_hi + p1_hi + (Q >> 32) - // p_lo = p0_lo + (Q << 32) - // - // But in this particular case here, the full p_lo is not required. - // Effectively we only need to add the highest bit in p_lo to p_hi (and - // Q_hi + 1 does not overflow). - - Q += std::uint64_t{1} << (64u - 32u - 1u); // round, ties up - - const std::uint64_t h = p3 + p2_hi + p1_hi + (Q >> 32u); - - return {h, x.e + y.e + 64}; - } - - /*! - @brief normalize x such that the significand is >= 2^(q-1) - @pre x.f != 0 - */ - static diyfp normalize(diyfp x) noexcept - { - JSON_ASSERT(x.f != 0); - - while ((x.f >> 63u) == 0) - { - x.f <<= 1u; - x.e--; - } - - return x; - } - - /*! - @brief normalize x such that the result has the exponent E - @pre e >= x.e and the upper e - x.e bits of x.f must be zero. - */ - static diyfp normalize_to(const diyfp& x, const int target_exponent) noexcept - { - const int delta = x.e - target_exponent; - - JSON_ASSERT(delta >= 0); - JSON_ASSERT(((x.f << delta) >> delta) == x.f); - - return {x.f << delta, target_exponent}; - } -}; - -struct boundaries -{ - diyfp w; - diyfp minus; - diyfp plus; -}; - -/*! -Compute the (normalized) diyfp representing the input number 'value' and its -boundaries. - -@pre value must be finite and positive -*/ -template -boundaries compute_boundaries(FloatType value) -{ - JSON_ASSERT(std::isfinite(value)); - JSON_ASSERT(value > 0); - - // Convert the IEEE representation into a diyfp. - // - // If v is denormal: - // value = 0.F * 2^(1 - bias) = ( F) * 2^(1 - bias - (p-1)) - // If v is normalized: - // value = 1.F * 2^(E - bias) = (2^(p-1) + F) * 2^(E - bias - (p-1)) - - static_assert(std::numeric_limits::is_iec559, - "internal error: dtoa_short requires an IEEE-754 floating-point implementation"); - - constexpr int kPrecision = std::numeric_limits::digits; // = p (includes the hidden bit) - constexpr int kBias = std::numeric_limits::max_exponent - 1 + (kPrecision - 1); - constexpr int kMinExp = 1 - kBias; - constexpr std::uint64_t kHiddenBit = std::uint64_t{1} << (kPrecision - 1); // = 2^(p-1) - - using bits_type = typename std::conditional::type; - - const std::uint64_t bits = reinterpret_bits(value); - const std::uint64_t E = bits >> (kPrecision - 1); - const std::uint64_t F = bits & (kHiddenBit - 1); - - const bool is_denormal = E == 0; - const diyfp v = is_denormal - ? diyfp(F, kMinExp) - : diyfp(F + kHiddenBit, static_cast(E) - kBias); - - // Compute the boundaries m- and m+ of the floating-point value - // v = f * 2^e. - // - // Determine v- and v+, the floating-point predecessor and successor if v, - // respectively. - // - // v- = v - 2^e if f != 2^(p-1) or e == e_min (A) - // = v - 2^(e-1) if f == 2^(p-1) and e > e_min (B) - // - // v+ = v + 2^e - // - // Let m- = (v- + v) / 2 and m+ = (v + v+) / 2. All real numbers _strictly_ - // between m- and m+ round to v, regardless of how the input rounding - // algorithm breaks ties. - // - // ---+-------------+-------------+-------------+-------------+--- (A) - // v- m- v m+ v+ - // - // -----------------+------+------+-------------+-------------+--- (B) - // v- m- v m+ v+ - - const bool lower_boundary_is_closer = F == 0 && E > 1; - const diyfp m_plus = diyfp(2 * v.f + 1, v.e - 1); - const diyfp m_minus = lower_boundary_is_closer - ? diyfp(4 * v.f - 1, v.e - 2) // (B) - : diyfp(2 * v.f - 1, v.e - 1); // (A) - - // Determine the normalized w+ = m+. - const diyfp w_plus = diyfp::normalize(m_plus); - - // Determine w- = m- such that e_(w-) = e_(w+). - const diyfp w_minus = diyfp::normalize_to(m_minus, w_plus.e); - - return {diyfp::normalize(v), w_minus, w_plus}; -} - -// Given normalized diyfp w, Grisu needs to find a (normalized) cached -// power-of-ten c, such that the exponent of the product c * w = f * 2^e lies -// within a certain range [alpha, gamma] (Definition 3.2 from [1]) -// -// alpha <= e = e_c + e_w + q <= gamma -// -// or -// -// f_c * f_w * 2^alpha <= f_c 2^(e_c) * f_w 2^(e_w) * 2^q -// <= f_c * f_w * 2^gamma -// -// Since c and w are normalized, i.e. 2^(q-1) <= f < 2^q, this implies -// -// 2^(q-1) * 2^(q-1) * 2^alpha <= c * w * 2^q < 2^q * 2^q * 2^gamma -// -// or -// -// 2^(q - 2 + alpha) <= c * w < 2^(q + gamma) -// -// The choice of (alpha,gamma) determines the size of the table and the form of -// the digit generation procedure. Using (alpha,gamma)=(-60,-32) works out well -// in practice: -// -// The idea is to cut the number c * w = f * 2^e into two parts, which can be -// processed independently: An integral part p1, and a fractional part p2: -// -// f * 2^e = ( (f div 2^-e) * 2^-e + (f mod 2^-e) ) * 2^e -// = (f div 2^-e) + (f mod 2^-e) * 2^e -// = p1 + p2 * 2^e -// -// The conversion of p1 into decimal form requires a series of divisions and -// modulos by (a power of) 10. These operations are faster for 32-bit than for -// 64-bit integers, so p1 should ideally fit into a 32-bit integer. This can be -// achieved by choosing -// -// -e >= 32 or e <= -32 := gamma -// -// In order to convert the fractional part -// -// p2 * 2^e = p2 / 2^-e = d[-1] / 10^1 + d[-2] / 10^2 + ... -// -// into decimal form, the fraction is repeatedly multiplied by 10 and the digits -// d[-i] are extracted in order: -// -// (10 * p2) div 2^-e = d[-1] -// (10 * p2) mod 2^-e = d[-2] / 10^1 + ... -// -// The multiplication by 10 must not overflow. It is sufficient to choose -// -// 10 * p2 < 16 * p2 = 2^4 * p2 <= 2^64. -// -// Since p2 = f mod 2^-e < 2^-e, -// -// -e <= 60 or e >= -60 := alpha - -constexpr int kAlpha = -60; -constexpr int kGamma = -32; - -struct cached_power // c = f * 2^e ~= 10^k -{ - std::uint64_t f; - int e; - int k; -}; - -/*! -For a normalized diyfp w = f * 2^e, this function returns a (normalized) cached -power-of-ten c = f_c * 2^e_c, such that the exponent of the product w * c -satisfies (Definition 3.2 from [1]) - - alpha <= e_c + e + q <= gamma. -*/ -inline cached_power get_cached_power_for_binary_exponent(int e) -{ - // Now - // - // alpha <= e_c + e + q <= gamma (1) - // ==> f_c * 2^alpha <= c * 2^e * 2^q - // - // and since the c's are normalized, 2^(q-1) <= f_c, - // - // ==> 2^(q - 1 + alpha) <= c * 2^(e + q) - // ==> 2^(alpha - e - 1) <= c - // - // If c were an exact power of ten, i.e. c = 10^k, one may determine k as - // - // k = ceil( log_10( 2^(alpha - e - 1) ) ) - // = ceil( (alpha - e - 1) * log_10(2) ) - // - // From the paper: - // "In theory the result of the procedure could be wrong since c is rounded, - // and the computation itself is approximated [...]. In practice, however, - // this simple function is sufficient." - // - // For IEEE double precision floating-point numbers converted into - // normalized diyfp's w = f * 2^e, with q = 64, - // - // e >= -1022 (min IEEE exponent) - // -52 (p - 1) - // -52 (p - 1, possibly normalize denormal IEEE numbers) - // -11 (normalize the diyfp) - // = -1137 - // - // and - // - // e <= +1023 (max IEEE exponent) - // -52 (p - 1) - // -11 (normalize the diyfp) - // = 960 - // - // This binary exponent range [-1137,960] results in a decimal exponent - // range [-307,324]. One does not need to store a cached power for each - // k in this range. For each such k it suffices to find a cached power - // such that the exponent of the product lies in [alpha,gamma]. - // This implies that the difference of the decimal exponents of adjacent - // table entries must be less than or equal to - // - // floor( (gamma - alpha) * log_10(2) ) = 8. - // - // (A smaller distance gamma-alpha would require a larger table.) - - // NB: - // Actually this function returns c, such that -60 <= e_c + e + 64 <= -34. - - constexpr int kCachedPowersMinDecExp = -300; - constexpr int kCachedPowersDecStep = 8; - - static constexpr std::array kCachedPowers = - { - { - { 0xAB70FE17C79AC6CA, -1060, -300 }, - { 0xFF77B1FCBEBCDC4F, -1034, -292 }, - { 0xBE5691EF416BD60C, -1007, -284 }, - { 0x8DD01FAD907FFC3C, -980, -276 }, - { 0xD3515C2831559A83, -954, -268 }, - { 0x9D71AC8FADA6C9B5, -927, -260 }, - { 0xEA9C227723EE8BCB, -901, -252 }, - { 0xAECC49914078536D, -874, -244 }, - { 0x823C12795DB6CE57, -847, -236 }, - { 0xC21094364DFB5637, -821, -228 }, - { 0x9096EA6F3848984F, -794, -220 }, - { 0xD77485CB25823AC7, -768, -212 }, - { 0xA086CFCD97BF97F4, -741, -204 }, - { 0xEF340A98172AACE5, -715, -196 }, - { 0xB23867FB2A35B28E, -688, -188 }, - { 0x84C8D4DFD2C63F3B, -661, -180 }, - { 0xC5DD44271AD3CDBA, -635, -172 }, - { 0x936B9FCEBB25C996, -608, -164 }, - { 0xDBAC6C247D62A584, -582, -156 }, - { 0xA3AB66580D5FDAF6, -555, -148 }, - { 0xF3E2F893DEC3F126, -529, -140 }, - { 0xB5B5ADA8AAFF80B8, -502, -132 }, - { 0x87625F056C7C4A8B, -475, -124 }, - { 0xC9BCFF6034C13053, -449, -116 }, - { 0x964E858C91BA2655, -422, -108 }, - { 0xDFF9772470297EBD, -396, -100 }, - { 0xA6DFBD9FB8E5B88F, -369, -92 }, - { 0xF8A95FCF88747D94, -343, -84 }, - { 0xB94470938FA89BCF, -316, -76 }, - { 0x8A08F0F8BF0F156B, -289, -68 }, - { 0xCDB02555653131B6, -263, -60 }, - { 0x993FE2C6D07B7FAC, -236, -52 }, - { 0xE45C10C42A2B3B06, -210, -44 }, - { 0xAA242499697392D3, -183, -36 }, - { 0xFD87B5F28300CA0E, -157, -28 }, - { 0xBCE5086492111AEB, -130, -20 }, - { 0x8CBCCC096F5088CC, -103, -12 }, - { 0xD1B71758E219652C, -77, -4 }, - { 0x9C40000000000000, -50, 4 }, - { 0xE8D4A51000000000, -24, 12 }, - { 0xAD78EBC5AC620000, 3, 20 }, - { 0x813F3978F8940984, 30, 28 }, - { 0xC097CE7BC90715B3, 56, 36 }, - { 0x8F7E32CE7BEA5C70, 83, 44 }, - { 0xD5D238A4ABE98068, 109, 52 }, - { 0x9F4F2726179A2245, 136, 60 }, - { 0xED63A231D4C4FB27, 162, 68 }, - { 0xB0DE65388CC8ADA8, 189, 76 }, - { 0x83C7088E1AAB65DB, 216, 84 }, - { 0xC45D1DF942711D9A, 242, 92 }, - { 0x924D692CA61BE758, 269, 100 }, - { 0xDA01EE641A708DEA, 295, 108 }, - { 0xA26DA3999AEF774A, 322, 116 }, - { 0xF209787BB47D6B85, 348, 124 }, - { 0xB454E4A179DD1877, 375, 132 }, - { 0x865B86925B9BC5C2, 402, 140 }, - { 0xC83553C5C8965D3D, 428, 148 }, - { 0x952AB45CFA97A0B3, 455, 156 }, - { 0xDE469FBD99A05FE3, 481, 164 }, - { 0xA59BC234DB398C25, 508, 172 }, - { 0xF6C69A72A3989F5C, 534, 180 }, - { 0xB7DCBF5354E9BECE, 561, 188 }, - { 0x88FCF317F22241E2, 588, 196 }, - { 0xCC20CE9BD35C78A5, 614, 204 }, - { 0x98165AF37B2153DF, 641, 212 }, - { 0xE2A0B5DC971F303A, 667, 220 }, - { 0xA8D9D1535CE3B396, 694, 228 }, - { 0xFB9B7CD9A4A7443C, 720, 236 }, - { 0xBB764C4CA7A44410, 747, 244 }, - { 0x8BAB8EEFB6409C1A, 774, 252 }, - { 0xD01FEF10A657842C, 800, 260 }, - { 0x9B10A4E5E9913129, 827, 268 }, - { 0xE7109BFBA19C0C9D, 853, 276 }, - { 0xAC2820D9623BF429, 880, 284 }, - { 0x80444B5E7AA7CF85, 907, 292 }, - { 0xBF21E44003ACDD2D, 933, 300 }, - { 0x8E679C2F5E44FF8F, 960, 308 }, - { 0xD433179D9C8CB841, 986, 316 }, - { 0x9E19DB92B4E31BA9, 1013, 324 }, - } - }; - - // This computation gives exactly the same results for k as - // k = ceil((kAlpha - e - 1) * 0.30102999566398114) - // for |e| <= 1500, but doesn't require floating-point operations. - // NB: log_10(2) ~= 78913 / 2^18 - JSON_ASSERT(e >= -1500); - JSON_ASSERT(e <= 1500); - const int f = kAlpha - e - 1; - const int k = (f * 78913) / (1 << 18) + static_cast(f > 0); - - const int index = (-kCachedPowersMinDecExp + k + (kCachedPowersDecStep - 1)) / kCachedPowersDecStep; - JSON_ASSERT(index >= 0); - JSON_ASSERT(static_cast(index) < kCachedPowers.size()); - - const cached_power cached = kCachedPowers[static_cast(index)]; - JSON_ASSERT(kAlpha <= cached.e + e + 64); - JSON_ASSERT(kGamma >= cached.e + e + 64); - - return cached; -} - -/*! -For n != 0, returns k, such that pow10 := 10^(k-1) <= n < 10^k. -For n == 0, returns 1 and sets pow10 := 1. -*/ -inline int find_largest_pow10(const std::uint32_t n, std::uint32_t& pow10) -{ - // LCOV_EXCL_START - if (n >= 1000000000) - { - pow10 = 1000000000; - return 10; - } - // LCOV_EXCL_STOP - else if (n >= 100000000) - { - pow10 = 100000000; - return 9; - } - else if (n >= 10000000) - { - pow10 = 10000000; - return 8; - } - else if (n >= 1000000) - { - pow10 = 1000000; - return 7; - } - else if (n >= 100000) - { - pow10 = 100000; - return 6; - } - else if (n >= 10000) - { - pow10 = 10000; - return 5; - } - else if (n >= 1000) - { - pow10 = 1000; - return 4; - } - else if (n >= 100) - { - pow10 = 100; - return 3; - } - else if (n >= 10) - { - pow10 = 10; - return 2; - } - else - { - pow10 = 1; - return 1; - } -} - -inline void grisu2_round(char* buf, int len, std::uint64_t dist, std::uint64_t delta, - std::uint64_t rest, std::uint64_t ten_k) -{ - JSON_ASSERT(len >= 1); - JSON_ASSERT(dist <= delta); - JSON_ASSERT(rest <= delta); - JSON_ASSERT(ten_k > 0); - - // <--------------------------- delta ----> - // <---- dist ---------> - // --------------[------------------+-------------------]-------------- - // M- w M+ - // - // ten_k - // <------> - // <---- rest ----> - // --------------[------------------+----+--------------]-------------- - // w V - // = buf * 10^k - // - // ten_k represents a unit-in-the-last-place in the decimal representation - // stored in buf. - // Decrement buf by ten_k while this takes buf closer to w. - - // The tests are written in this order to avoid overflow in unsigned - // integer arithmetic. - - while (rest < dist - && delta - rest >= ten_k - && (rest + ten_k < dist || dist - rest > rest + ten_k - dist)) - { - JSON_ASSERT(buf[len - 1] != '0'); - buf[len - 1]--; - rest += ten_k; - } -} - -/*! -Generates V = buffer * 10^decimal_exponent, such that M- <= V <= M+. -M- and M+ must be normalized and share the same exponent -60 <= e <= -32. -*/ -inline void grisu2_digit_gen(char* buffer, int& length, int& decimal_exponent, - diyfp M_minus, diyfp w, diyfp M_plus) -{ - static_assert(kAlpha >= -60, "internal error"); - static_assert(kGamma <= -32, "internal error"); - - // Generates the digits (and the exponent) of a decimal floating-point - // number V = buffer * 10^decimal_exponent in the range [M-, M+]. The diyfp's - // w, M- and M+ share the same exponent e, which satisfies alpha <= e <= gamma. - // - // <--------------------------- delta ----> - // <---- dist ---------> - // --------------[------------------+-------------------]-------------- - // M- w M+ - // - // Grisu2 generates the digits of M+ from left to right and stops as soon as - // V is in [M-,M+]. - - JSON_ASSERT(M_plus.e >= kAlpha); - JSON_ASSERT(M_plus.e <= kGamma); - - std::uint64_t delta = diyfp::sub(M_plus, M_minus).f; // (significand of (M+ - M-), implicit exponent is e) - std::uint64_t dist = diyfp::sub(M_plus, w ).f; // (significand of (M+ - w ), implicit exponent is e) - - // Split M+ = f * 2^e into two parts p1 and p2 (note: e < 0): - // - // M+ = f * 2^e - // = ((f div 2^-e) * 2^-e + (f mod 2^-e)) * 2^e - // = ((p1 ) * 2^-e + (p2 )) * 2^e - // = p1 + p2 * 2^e - - const diyfp one(std::uint64_t{1} << -M_plus.e, M_plus.e); - - auto p1 = static_cast(M_plus.f >> -one.e); // p1 = f div 2^-e (Since -e >= 32, p1 fits into a 32-bit int.) - std::uint64_t p2 = M_plus.f & (one.f - 1); // p2 = f mod 2^-e - - // 1) - // - // Generate the digits of the integral part p1 = d[n-1]...d[1]d[0] - - JSON_ASSERT(p1 > 0); - - std::uint32_t pow10; - const int k = find_largest_pow10(p1, pow10); - - // 10^(k-1) <= p1 < 10^k, pow10 = 10^(k-1) - // - // p1 = (p1 div 10^(k-1)) * 10^(k-1) + (p1 mod 10^(k-1)) - // = (d[k-1] ) * 10^(k-1) + (p1 mod 10^(k-1)) - // - // M+ = p1 + p2 * 2^e - // = d[k-1] * 10^(k-1) + (p1 mod 10^(k-1)) + p2 * 2^e - // = d[k-1] * 10^(k-1) + ((p1 mod 10^(k-1)) * 2^-e + p2) * 2^e - // = d[k-1] * 10^(k-1) + ( rest) * 2^e - // - // Now generate the digits d[n] of p1 from left to right (n = k-1,...,0) - // - // p1 = d[k-1]...d[n] * 10^n + d[n-1]...d[0] - // - // but stop as soon as - // - // rest * 2^e = (d[n-1]...d[0] * 2^-e + p2) * 2^e <= delta * 2^e - - int n = k; - while (n > 0) - { - // Invariants: - // M+ = buffer * 10^n + (p1 + p2 * 2^e) (buffer = 0 for n = k) - // pow10 = 10^(n-1) <= p1 < 10^n - // - const std::uint32_t d = p1 / pow10; // d = p1 div 10^(n-1) - const std::uint32_t r = p1 % pow10; // r = p1 mod 10^(n-1) - // - // M+ = buffer * 10^n + (d * 10^(n-1) + r) + p2 * 2^e - // = (buffer * 10 + d) * 10^(n-1) + (r + p2 * 2^e) - // - JSON_ASSERT(d <= 9); - buffer[length++] = static_cast('0' + d); // buffer := buffer * 10 + d - // - // M+ = buffer * 10^(n-1) + (r + p2 * 2^e) - // - p1 = r; - n--; - // - // M+ = buffer * 10^n + (p1 + p2 * 2^e) - // pow10 = 10^n - // - - // Now check if enough digits have been generated. - // Compute - // - // p1 + p2 * 2^e = (p1 * 2^-e + p2) * 2^e = rest * 2^e - // - // Note: - // Since rest and delta share the same exponent e, it suffices to - // compare the significands. - const std::uint64_t rest = (std::uint64_t{p1} << -one.e) + p2; - if (rest <= delta) - { - // V = buffer * 10^n, with M- <= V <= M+. - - decimal_exponent += n; - - // We may now just stop. But instead look if the buffer could be - // decremented to bring V closer to w. - // - // pow10 = 10^n is now 1 ulp in the decimal representation V. - // The rounding procedure works with diyfp's with an implicit - // exponent of e. - // - // 10^n = (10^n * 2^-e) * 2^e = ulp * 2^e - // - const std::uint64_t ten_n = std::uint64_t{pow10} << -one.e; - grisu2_round(buffer, length, dist, delta, rest, ten_n); - - return; - } - - pow10 /= 10; - // - // pow10 = 10^(n-1) <= p1 < 10^n - // Invariants restored. - } - - // 2) - // - // The digits of the integral part have been generated: - // - // M+ = d[k-1]...d[1]d[0] + p2 * 2^e - // = buffer + p2 * 2^e - // - // Now generate the digits of the fractional part p2 * 2^e. - // - // Note: - // No decimal point is generated: the exponent is adjusted instead. - // - // p2 actually represents the fraction - // - // p2 * 2^e - // = p2 / 2^-e - // = d[-1] / 10^1 + d[-2] / 10^2 + ... - // - // Now generate the digits d[-m] of p1 from left to right (m = 1,2,...) - // - // p2 * 2^e = d[-1]d[-2]...d[-m] * 10^-m - // + 10^-m * (d[-m-1] / 10^1 + d[-m-2] / 10^2 + ...) - // - // using - // - // 10^m * p2 = ((10^m * p2) div 2^-e) * 2^-e + ((10^m * p2) mod 2^-e) - // = ( d) * 2^-e + ( r) - // - // or - // 10^m * p2 * 2^e = d + r * 2^e - // - // i.e. - // - // M+ = buffer + p2 * 2^e - // = buffer + 10^-m * (d + r * 2^e) - // = (buffer * 10^m + d) * 10^-m + 10^-m * r * 2^e - // - // and stop as soon as 10^-m * r * 2^e <= delta * 2^e - - JSON_ASSERT(p2 > delta); - - int m = 0; - for (;;) - { - // Invariant: - // M+ = buffer * 10^-m + 10^-m * (d[-m-1] / 10 + d[-m-2] / 10^2 + ...) * 2^e - // = buffer * 10^-m + 10^-m * (p2 ) * 2^e - // = buffer * 10^-m + 10^-m * (1/10 * (10 * p2) ) * 2^e - // = buffer * 10^-m + 10^-m * (1/10 * ((10*p2 div 2^-e) * 2^-e + (10*p2 mod 2^-e)) * 2^e - // - JSON_ASSERT(p2 <= (std::numeric_limits::max)() / 10); - p2 *= 10; - const std::uint64_t d = p2 >> -one.e; // d = (10 * p2) div 2^-e - const std::uint64_t r = p2 & (one.f - 1); // r = (10 * p2) mod 2^-e - // - // M+ = buffer * 10^-m + 10^-m * (1/10 * (d * 2^-e + r) * 2^e - // = buffer * 10^-m + 10^-m * (1/10 * (d + r * 2^e)) - // = (buffer * 10 + d) * 10^(-m-1) + 10^(-m-1) * r * 2^e - // - JSON_ASSERT(d <= 9); - buffer[length++] = static_cast('0' + d); // buffer := buffer * 10 + d - // - // M+ = buffer * 10^(-m-1) + 10^(-m-1) * r * 2^e - // - p2 = r; - m++; - // - // M+ = buffer * 10^-m + 10^-m * p2 * 2^e - // Invariant restored. - - // Check if enough digits have been generated. - // - // 10^-m * p2 * 2^e <= delta * 2^e - // p2 * 2^e <= 10^m * delta * 2^e - // p2 <= 10^m * delta - delta *= 10; - dist *= 10; - if (p2 <= delta) - { - break; - } - } - - // V = buffer * 10^-m, with M- <= V <= M+. - - decimal_exponent -= m; - - // 1 ulp in the decimal representation is now 10^-m. - // Since delta and dist are now scaled by 10^m, we need to do the - // same with ulp in order to keep the units in sync. - // - // 10^m * 10^-m = 1 = 2^-e * 2^e = ten_m * 2^e - // - const std::uint64_t ten_m = one.f; - grisu2_round(buffer, length, dist, delta, p2, ten_m); - - // By construction this algorithm generates the shortest possible decimal - // number (Loitsch, Theorem 6.2) which rounds back to w. - // For an input number of precision p, at least - // - // N = 1 + ceil(p * log_10(2)) - // - // decimal digits are sufficient to identify all binary floating-point - // numbers (Matula, "In-and-Out conversions"). - // This implies that the algorithm does not produce more than N decimal - // digits. - // - // N = 17 for p = 53 (IEEE double precision) - // N = 9 for p = 24 (IEEE single precision) -} - -/*! -v = buf * 10^decimal_exponent -len is the length of the buffer (number of decimal digits) -The buffer must be large enough, i.e. >= max_digits10. -*/ -JSON_HEDLEY_NON_NULL(1) -inline void grisu2(char* buf, int& len, int& decimal_exponent, - diyfp m_minus, diyfp v, diyfp m_plus) -{ - JSON_ASSERT(m_plus.e == m_minus.e); - JSON_ASSERT(m_plus.e == v.e); - - // --------(-----------------------+-----------------------)-------- (A) - // m- v m+ - // - // --------------------(-----------+-----------------------)-------- (B) - // m- v m+ - // - // First scale v (and m- and m+) such that the exponent is in the range - // [alpha, gamma]. - - const cached_power cached = get_cached_power_for_binary_exponent(m_plus.e); - - const diyfp c_minus_k(cached.f, cached.e); // = c ~= 10^-k - - // The exponent of the products is = v.e + c_minus_k.e + q and is in the range [alpha,gamma] - const diyfp w = diyfp::mul(v, c_minus_k); - const diyfp w_minus = diyfp::mul(m_minus, c_minus_k); - const diyfp w_plus = diyfp::mul(m_plus, c_minus_k); - - // ----(---+---)---------------(---+---)---------------(---+---)---- - // w- w w+ - // = c*m- = c*v = c*m+ - // - // diyfp::mul rounds its result and c_minus_k is approximated too. w, w- and - // w+ are now off by a small amount. - // In fact: - // - // w - v * 10^k < 1 ulp - // - // To account for this inaccuracy, add resp. subtract 1 ulp. - // - // --------+---[---------------(---+---)---------------]---+-------- - // w- M- w M+ w+ - // - // Now any number in [M-, M+] (bounds included) will round to w when input, - // regardless of how the input rounding algorithm breaks ties. - // - // And digit_gen generates the shortest possible such number in [M-, M+]. - // Note that this does not mean that Grisu2 always generates the shortest - // possible number in the interval (m-, m+). - const diyfp M_minus(w_minus.f + 1, w_minus.e); - const diyfp M_plus (w_plus.f - 1, w_plus.e ); - - decimal_exponent = -cached.k; // = -(-k) = k - - grisu2_digit_gen(buf, len, decimal_exponent, M_minus, w, M_plus); -} - -/*! -v = buf * 10^decimal_exponent -len is the length of the buffer (number of decimal digits) -The buffer must be large enough, i.e. >= max_digits10. -*/ -template -JSON_HEDLEY_NON_NULL(1) -void grisu2(char* buf, int& len, int& decimal_exponent, FloatType value) -{ - static_assert(diyfp::kPrecision >= std::numeric_limits::digits + 3, - "internal error: not enough precision"); - - JSON_ASSERT(std::isfinite(value)); - JSON_ASSERT(value > 0); - - // If the neighbors (and boundaries) of 'value' are always computed for double-precision - // numbers, all float's can be recovered using strtod (and strtof). However, the resulting - // decimal representations are not exactly "short". - // - // The documentation for 'std::to_chars' (https://en.cppreference.com/w/cpp/utility/to_chars) - // says "value is converted to a string as if by std::sprintf in the default ("C") locale" - // and since sprintf promotes float's to double's, I think this is exactly what 'std::to_chars' - // does. - // On the other hand, the documentation for 'std::to_chars' requires that "parsing the - // representation using the corresponding std::from_chars function recovers value exactly". That - // indicates that single precision floating-point numbers should be recovered using - // 'std::strtof'. - // - // NB: If the neighbors are computed for single-precision numbers, there is a single float - // (7.0385307e-26f) which can't be recovered using strtod. The resulting double precision - // value is off by 1 ulp. -#if 0 - const boundaries w = compute_boundaries(static_cast(value)); -#else - const boundaries w = compute_boundaries(value); -#endif - - grisu2(buf, len, decimal_exponent, w.minus, w.w, w.plus); -} - -/*! -@brief appends a decimal representation of e to buf -@return a pointer to the element following the exponent. -@pre -1000 < e < 1000 -*/ -JSON_HEDLEY_NON_NULL(1) -JSON_HEDLEY_RETURNS_NON_NULL -inline char* append_exponent(char* buf, int e) -{ - JSON_ASSERT(e > -1000); - JSON_ASSERT(e < 1000); - - if (e < 0) - { - e = -e; - *buf++ = '-'; - } - else - { - *buf++ = '+'; - } - - auto k = static_cast(e); - if (k < 10) - { - // Always print at least two digits in the exponent. - // This is for compatibility with printf("%g"). - *buf++ = '0'; - *buf++ = static_cast('0' + k); - } - else if (k < 100) - { - *buf++ = static_cast('0' + k / 10); - k %= 10; - *buf++ = static_cast('0' + k); - } - else - { - *buf++ = static_cast('0' + k / 100); - k %= 100; - *buf++ = static_cast('0' + k / 10); - k %= 10; - *buf++ = static_cast('0' + k); - } - - return buf; -} - -/*! -@brief prettify v = buf * 10^decimal_exponent - -If v is in the range [10^min_exp, 10^max_exp) it will be printed in fixed-point -notation. Otherwise it will be printed in exponential notation. - -@pre min_exp < 0 -@pre max_exp > 0 -*/ -JSON_HEDLEY_NON_NULL(1) -JSON_HEDLEY_RETURNS_NON_NULL -inline char* format_buffer(char* buf, int len, int decimal_exponent, - int min_exp, int max_exp) -{ - JSON_ASSERT(min_exp < 0); - JSON_ASSERT(max_exp > 0); - - const int k = len; - const int n = len + decimal_exponent; - - // v = buf * 10^(n-k) - // k is the length of the buffer (number of decimal digits) - // n is the position of the decimal point relative to the start of the buffer. - - if (k <= n && n <= max_exp) - { - // digits[000] - // len <= max_exp + 2 - - std::memset(buf + k, '0', static_cast(n) - static_cast(k)); - // Make it look like a floating-point number (#362, #378) - buf[n + 0] = '.'; - buf[n + 1] = '0'; - return buf + (static_cast(n) + 2); - } - - if (0 < n && n <= max_exp) - { - // dig.its - // len <= max_digits10 + 1 - - JSON_ASSERT(k > n); - - std::memmove(buf + (static_cast(n) + 1), buf + n, static_cast(k) - static_cast(n)); - buf[n] = '.'; - return buf + (static_cast(k) + 1U); - } - - if (min_exp < n && n <= 0) - { - // 0.[000]digits - // len <= 2 + (-min_exp - 1) + max_digits10 - - std::memmove(buf + (2 + static_cast(-n)), buf, static_cast(k)); - buf[0] = '0'; - buf[1] = '.'; - std::memset(buf + 2, '0', static_cast(-n)); - return buf + (2U + static_cast(-n) + static_cast(k)); - } - - if (k == 1) - { - // dE+123 - // len <= 1 + 5 - - buf += 1; - } - else - { - // d.igitsE+123 - // len <= max_digits10 + 1 + 5 - - std::memmove(buf + 2, buf + 1, static_cast(k) - 1); - buf[1] = '.'; - buf += 1 + static_cast(k); - } - - *buf++ = 'e'; - return append_exponent(buf, n - 1); -} - -} // namespace dtoa_impl - -/*! -@brief generates a decimal representation of the floating-point number value in [first, last). - -The format of the resulting decimal representation is similar to printf's %g -format. Returns an iterator pointing past-the-end of the decimal representation. - -@note The input number must be finite, i.e. NaN's and Inf's are not supported. -@note The buffer must be large enough. -@note The result is NOT null-terminated. -*/ -template -JSON_HEDLEY_NON_NULL(1, 2) -JSON_HEDLEY_RETURNS_NON_NULL -char* to_chars(char* first, const char* last, FloatType value) -{ - static_cast(last); // maybe unused - fix warning - JSON_ASSERT(std::isfinite(value)); - - // Use signbit(value) instead of (value < 0) since signbit works for -0. - if (std::signbit(value)) - { - value = -value; - *first++ = '-'; - } - - if (value == 0) // +-0 - { - *first++ = '0'; - // Make it look like a floating-point number (#362, #378) - *first++ = '.'; - *first++ = '0'; - return first; - } - - JSON_ASSERT(last - first >= std::numeric_limits::max_digits10); - - // Compute v = buffer * 10^decimal_exponent. - // The decimal digits are stored in the buffer, which needs to be interpreted - // as an unsigned decimal integer. - // len is the length of the buffer, i.e. the number of decimal digits. - int len = 0; - int decimal_exponent = 0; - dtoa_impl::grisu2(first, len, decimal_exponent, value); - - JSON_ASSERT(len <= std::numeric_limits::max_digits10); - - // Format the buffer like printf("%.*g", prec, value) - constexpr int kMinExp = -4; - // Use digits10 here to increase compatibility with version 2. - constexpr int kMaxExp = std::numeric_limits::digits10; - - JSON_ASSERT(last - first >= kMaxExp + 2); - JSON_ASSERT(last - first >= 2 + (-kMinExp - 1) + std::numeric_limits::max_digits10); - JSON_ASSERT(last - first >= std::numeric_limits::max_digits10 + 6); - - return dtoa_impl::format_buffer(first, len, decimal_exponent, kMinExp, kMaxExp); -} - -} // namespace detail -} // namespace nlohmann - -// #include - -// #include - -// #include - -// #include - -// #include - -// #include - - -namespace nlohmann -{ -namespace detail -{ -/////////////////// -// serialization // -/////////////////// - -/// how to treat decoding errors -enum class error_handler_t -{ - strict, ///< throw a type_error exception in case of invalid UTF-8 - replace, ///< replace invalid UTF-8 sequences with U+FFFD - ignore ///< ignore invalid UTF-8 sequences -}; - -template -class serializer -{ - using string_t = typename BasicJsonType::string_t; - using number_float_t = typename BasicJsonType::number_float_t; - using number_integer_t = typename BasicJsonType::number_integer_t; - using number_unsigned_t = typename BasicJsonType::number_unsigned_t; - using binary_char_t = typename BasicJsonType::binary_t::value_type; - static constexpr std::uint8_t UTF8_ACCEPT = 0; - static constexpr std::uint8_t UTF8_REJECT = 1; - - public: - /*! - @param[in] s output stream to serialize to - @param[in] ichar indentation character to use - @param[in] error_handler_ how to react on decoding errors - */ - serializer(output_adapter_t s, const char ichar, - error_handler_t error_handler_ = error_handler_t::strict) - : o(std::move(s)) - , loc(std::localeconv()) - , thousands_sep(loc->thousands_sep == nullptr ? '\0' : std::char_traits::to_char_type(* (loc->thousands_sep))) - , decimal_point(loc->decimal_point == nullptr ? '\0' : std::char_traits::to_char_type(* (loc->decimal_point))) - , indent_char(ichar) - , indent_string(512, indent_char) - , error_handler(error_handler_) - {} - - // delete because of pointer members - serializer(const serializer&) = delete; - serializer& operator=(const serializer&) = delete; - serializer(serializer&&) = delete; - serializer& operator=(serializer&&) = delete; - ~serializer() = default; - - /*! - @brief internal implementation of the serialization function - - This function is called by the public member function dump and organizes - the serialization internally. The indentation level is propagated as - additional parameter. In case of arrays and objects, the function is - called recursively. - - - strings and object keys are escaped using `escape_string()` - - integer numbers are converted implicitly via `operator<<` - - floating-point numbers are converted to a string using `"%g"` format - - binary values are serialized as objects containing the subtype and the - byte array - - @param[in] val value to serialize - @param[in] pretty_print whether the output shall be pretty-printed - @param[in] ensure_ascii If @a ensure_ascii is true, all non-ASCII characters - in the output are escaped with `\uXXXX` sequences, and the result consists - of ASCII characters only. - @param[in] indent_step the indent level - @param[in] current_indent the current indent level (only used internally) - */ - void dump(const BasicJsonType& val, - const bool pretty_print, - const bool ensure_ascii, - const unsigned int indent_step, - const unsigned int current_indent = 0) - { - switch (val.m_type) - { - case value_t::object: - { - if (val.m_value.object->empty()) - { - o->write_characters("{}", 2); - return; - } - - if (pretty_print) - { - o->write_characters("{\n", 2); - - // variable to hold indentation for recursive calls - const auto new_indent = current_indent + indent_step; - if (JSON_HEDLEY_UNLIKELY(indent_string.size() < new_indent)) - { - indent_string.resize(indent_string.size() * 2, ' '); - } - - // first n-1 elements - auto i = val.m_value.object->cbegin(); - for (std::size_t cnt = 0; cnt < val.m_value.object->size() - 1; ++cnt, ++i) - { - o->write_characters(indent_string.c_str(), new_indent); - o->write_character('\"'); - dump_escaped(i->first, ensure_ascii); - o->write_characters("\": ", 3); - dump(i->second, true, ensure_ascii, indent_step, new_indent); - o->write_characters(",\n", 2); - } - - // last element - JSON_ASSERT(i != val.m_value.object->cend()); - JSON_ASSERT(std::next(i) == val.m_value.object->cend()); - o->write_characters(indent_string.c_str(), new_indent); - o->write_character('\"'); - dump_escaped(i->first, ensure_ascii); - o->write_characters("\": ", 3); - dump(i->second, true, ensure_ascii, indent_step, new_indent); - - o->write_character('\n'); - o->write_characters(indent_string.c_str(), current_indent); - o->write_character('}'); - } - else - { - o->write_character('{'); - - // first n-1 elements - auto i = val.m_value.object->cbegin(); - for (std::size_t cnt = 0; cnt < val.m_value.object->size() - 1; ++cnt, ++i) - { - o->write_character('\"'); - dump_escaped(i->first, ensure_ascii); - o->write_characters("\":", 2); - dump(i->second, false, ensure_ascii, indent_step, current_indent); - o->write_character(','); - } - - // last element - JSON_ASSERT(i != val.m_value.object->cend()); - JSON_ASSERT(std::next(i) == val.m_value.object->cend()); - o->write_character('\"'); - dump_escaped(i->first, ensure_ascii); - o->write_characters("\":", 2); - dump(i->second, false, ensure_ascii, indent_step, current_indent); - - o->write_character('}'); - } - - return; - } - - case value_t::array: - { - if (val.m_value.array->empty()) - { - o->write_characters("[]", 2); - return; - } - - if (pretty_print) - { - o->write_characters("[\n", 2); - - // variable to hold indentation for recursive calls - const auto new_indent = current_indent + indent_step; - if (JSON_HEDLEY_UNLIKELY(indent_string.size() < new_indent)) - { - indent_string.resize(indent_string.size() * 2, ' '); - } - - // first n-1 elements - for (auto i = val.m_value.array->cbegin(); - i != val.m_value.array->cend() - 1; ++i) - { - o->write_characters(indent_string.c_str(), new_indent); - dump(*i, true, ensure_ascii, indent_step, new_indent); - o->write_characters(",\n", 2); - } - - // last element - JSON_ASSERT(!val.m_value.array->empty()); - o->write_characters(indent_string.c_str(), new_indent); - dump(val.m_value.array->back(), true, ensure_ascii, indent_step, new_indent); - - o->write_character('\n'); - o->write_characters(indent_string.c_str(), current_indent); - o->write_character(']'); - } - else - { - o->write_character('['); - - // first n-1 elements - for (auto i = val.m_value.array->cbegin(); - i != val.m_value.array->cend() - 1; ++i) - { - dump(*i, false, ensure_ascii, indent_step, current_indent); - o->write_character(','); - } - - // last element - JSON_ASSERT(!val.m_value.array->empty()); - dump(val.m_value.array->back(), false, ensure_ascii, indent_step, current_indent); - - o->write_character(']'); - } - - return; - } - - case value_t::string: - { - o->write_character('\"'); - dump_escaped(*val.m_value.string, ensure_ascii); - o->write_character('\"'); - return; - } - - case value_t::binary: - { - if (pretty_print) - { - o->write_characters("{\n", 2); - - // variable to hold indentation for recursive calls - const auto new_indent = current_indent + indent_step; - if (JSON_HEDLEY_UNLIKELY(indent_string.size() < new_indent)) - { - indent_string.resize(indent_string.size() * 2, ' '); - } - - o->write_characters(indent_string.c_str(), new_indent); - - o->write_characters("\"bytes\": [", 10); - - if (!val.m_value.binary->empty()) - { - for (auto i = val.m_value.binary->cbegin(); - i != val.m_value.binary->cend() - 1; ++i) - { - dump_integer(*i); - o->write_characters(", ", 2); - } - dump_integer(val.m_value.binary->back()); - } - - o->write_characters("],\n", 3); - o->write_characters(indent_string.c_str(), new_indent); - - o->write_characters("\"subtype\": ", 11); - if (val.m_value.binary->has_subtype()) - { - dump_integer(val.m_value.binary->subtype()); - } - else - { - o->write_characters("null", 4); - } - o->write_character('\n'); - o->write_characters(indent_string.c_str(), current_indent); - o->write_character('}'); - } - else - { - o->write_characters("{\"bytes\":[", 10); - - if (!val.m_value.binary->empty()) - { - for (auto i = val.m_value.binary->cbegin(); - i != val.m_value.binary->cend() - 1; ++i) - { - dump_integer(*i); - o->write_character(','); - } - dump_integer(val.m_value.binary->back()); - } - - o->write_characters("],\"subtype\":", 12); - if (val.m_value.binary->has_subtype()) - { - dump_integer(val.m_value.binary->subtype()); - o->write_character('}'); - } - else - { - o->write_characters("null}", 5); - } - } - return; - } - - case value_t::boolean: - { - if (val.m_value.boolean) - { - o->write_characters("true", 4); - } - else - { - o->write_characters("false", 5); - } - return; - } - - case value_t::number_integer: - { - dump_integer(val.m_value.number_integer); - return; - } - - case value_t::number_unsigned: - { - dump_integer(val.m_value.number_unsigned); - return; - } - - case value_t::number_float: - { - dump_float(val.m_value.number_float); - return; - } - - case value_t::discarded: - { - o->write_characters("", 11); - return; - } - - case value_t::null: - { - o->write_characters("null", 4); - return; - } - - default: // LCOV_EXCL_LINE - JSON_ASSERT(false); // LCOV_EXCL_LINE - } - } - - private: - /*! - @brief dump escaped string - - Escape a string by replacing certain special characters by a sequence of an - escape character (backslash) and another character and other control - characters by a sequence of "\u" followed by a four-digit hex - representation. The escaped string is written to output stream @a o. - - @param[in] s the string to escape - @param[in] ensure_ascii whether to escape non-ASCII characters with - \uXXXX sequences - - @complexity Linear in the length of string @a s. - */ - void dump_escaped(const string_t& s, const bool ensure_ascii) - { - std::uint32_t codepoint; - std::uint8_t state = UTF8_ACCEPT; - std::size_t bytes = 0; // number of bytes written to string_buffer - - // number of bytes written at the point of the last valid byte - std::size_t bytes_after_last_accept = 0; - std::size_t undumped_chars = 0; - - for (std::size_t i = 0; i < s.size(); ++i) - { - const auto byte = static_cast(s[i]); - - switch (decode(state, codepoint, byte)) - { - case UTF8_ACCEPT: // decode found a new code point - { - switch (codepoint) - { - case 0x08: // backspace - { - string_buffer[bytes++] = '\\'; - string_buffer[bytes++] = 'b'; - break; - } - - case 0x09: // horizontal tab - { - string_buffer[bytes++] = '\\'; - string_buffer[bytes++] = 't'; - break; - } - - case 0x0A: // newline - { - string_buffer[bytes++] = '\\'; - string_buffer[bytes++] = 'n'; - break; - } - - case 0x0C: // formfeed - { - string_buffer[bytes++] = '\\'; - string_buffer[bytes++] = 'f'; - break; - } - - case 0x0D: // carriage return - { - string_buffer[bytes++] = '\\'; - string_buffer[bytes++] = 'r'; - break; - } - - case 0x22: // quotation mark - { - string_buffer[bytes++] = '\\'; - string_buffer[bytes++] = '\"'; - break; - } - - case 0x5C: // reverse solidus - { - string_buffer[bytes++] = '\\'; - string_buffer[bytes++] = '\\'; - break; - } - - default: - { - // escape control characters (0x00..0x1F) or, if - // ensure_ascii parameter is used, non-ASCII characters - if ((codepoint <= 0x1F) || (ensure_ascii && (codepoint >= 0x7F))) - { - if (codepoint <= 0xFFFF) - { - (std::snprintf)(string_buffer.data() + bytes, 7, "\\u%04x", - static_cast(codepoint)); - bytes += 6; - } - else - { - (std::snprintf)(string_buffer.data() + bytes, 13, "\\u%04x\\u%04x", - static_cast(0xD7C0u + (codepoint >> 10u)), - static_cast(0xDC00u + (codepoint & 0x3FFu))); - bytes += 12; - } - } - else - { - // copy byte to buffer (all previous bytes - // been copied have in default case above) - string_buffer[bytes++] = s[i]; - } - break; - } - } - - // write buffer and reset index; there must be 13 bytes - // left, as this is the maximal number of bytes to be - // written ("\uxxxx\uxxxx\0") for one code point - if (string_buffer.size() - bytes < 13) - { - o->write_characters(string_buffer.data(), bytes); - bytes = 0; - } - - // remember the byte position of this accept - bytes_after_last_accept = bytes; - undumped_chars = 0; - break; - } - - case UTF8_REJECT: // decode found invalid UTF-8 byte - { - switch (error_handler) - { - case error_handler_t::strict: - { - std::string sn(3, '\0'); - (std::snprintf)(&sn[0], sn.size(), "%.2X", byte); - JSON_THROW(type_error::create(316, "invalid UTF-8 byte at index " + std::to_string(i) + ": 0x" + sn)); - } - - case error_handler_t::ignore: - case error_handler_t::replace: - { - // in case we saw this character the first time, we - // would like to read it again, because the byte - // may be OK for itself, but just not OK for the - // previous sequence - if (undumped_chars > 0) - { - --i; - } - - // reset length buffer to the last accepted index; - // thus removing/ignoring the invalid characters - bytes = bytes_after_last_accept; - - if (error_handler == error_handler_t::replace) - { - // add a replacement character - if (ensure_ascii) - { - string_buffer[bytes++] = '\\'; - string_buffer[bytes++] = 'u'; - string_buffer[bytes++] = 'f'; - string_buffer[bytes++] = 'f'; - string_buffer[bytes++] = 'f'; - string_buffer[bytes++] = 'd'; - } - else - { - string_buffer[bytes++] = detail::binary_writer::to_char_type('\xEF'); - string_buffer[bytes++] = detail::binary_writer::to_char_type('\xBF'); - string_buffer[bytes++] = detail::binary_writer::to_char_type('\xBD'); - } - - // write buffer and reset index; there must be 13 bytes - // left, as this is the maximal number of bytes to be - // written ("\uxxxx\uxxxx\0") for one code point - if (string_buffer.size() - bytes < 13) - { - o->write_characters(string_buffer.data(), bytes); - bytes = 0; - } - - bytes_after_last_accept = bytes; - } - - undumped_chars = 0; - - // continue processing the string - state = UTF8_ACCEPT; - break; - } - - default: // LCOV_EXCL_LINE - JSON_ASSERT(false); // LCOV_EXCL_LINE - } - break; - } - - default: // decode found yet incomplete multi-byte code point - { - if (!ensure_ascii) - { - // code point will not be escaped - copy byte to buffer - string_buffer[bytes++] = s[i]; - } - ++undumped_chars; - break; - } - } - } - - // we finished processing the string - if (JSON_HEDLEY_LIKELY(state == UTF8_ACCEPT)) - { - // write buffer - if (bytes > 0) - { - o->write_characters(string_buffer.data(), bytes); - } - } - else - { - // we finish reading, but do not accept: string was incomplete - switch (error_handler) - { - case error_handler_t::strict: - { - std::string sn(3, '\0'); - (std::snprintf)(&sn[0], sn.size(), "%.2X", static_cast(s.back())); - JSON_THROW(type_error::create(316, "incomplete UTF-8 string; last byte: 0x" + sn)); - } - - case error_handler_t::ignore: - { - // write all accepted bytes - o->write_characters(string_buffer.data(), bytes_after_last_accept); - break; - } - - case error_handler_t::replace: - { - // write all accepted bytes - o->write_characters(string_buffer.data(), bytes_after_last_accept); - // add a replacement character - if (ensure_ascii) - { - o->write_characters("\\ufffd", 6); - } - else - { - o->write_characters("\xEF\xBF\xBD", 3); - } - break; - } - - default: // LCOV_EXCL_LINE - JSON_ASSERT(false); // LCOV_EXCL_LINE - } - } - } - - /*! - @brief count digits - - Count the number of decimal (base 10) digits for an input unsigned integer. - - @param[in] x unsigned integer number to count its digits - @return number of decimal digits - */ - inline unsigned int count_digits(number_unsigned_t x) noexcept - { - unsigned int n_digits = 1; - for (;;) - { - if (x < 10) - { - return n_digits; - } - if (x < 100) - { - return n_digits + 1; - } - if (x < 1000) - { - return n_digits + 2; - } - if (x < 10000) - { - return n_digits + 3; - } - x = x / 10000u; - n_digits += 4; - } - } - - /*! - @brief dump an integer - - Dump a given integer to output stream @a o. Works internally with - @a number_buffer. - - @param[in] x integer number (signed or unsigned) to dump - @tparam NumberType either @a number_integer_t or @a number_unsigned_t - */ - template < typename NumberType, detail::enable_if_t < - std::is_same::value || - std::is_same::value || - std::is_same::value, - int > = 0 > - void dump_integer(NumberType x) - { - static constexpr std::array, 100> digits_to_99 - { - { - {{'0', '0'}}, {{'0', '1'}}, {{'0', '2'}}, {{'0', '3'}}, {{'0', '4'}}, {{'0', '5'}}, {{'0', '6'}}, {{'0', '7'}}, {{'0', '8'}}, {{'0', '9'}}, - {{'1', '0'}}, {{'1', '1'}}, {{'1', '2'}}, {{'1', '3'}}, {{'1', '4'}}, {{'1', '5'}}, {{'1', '6'}}, {{'1', '7'}}, {{'1', '8'}}, {{'1', '9'}}, - {{'2', '0'}}, {{'2', '1'}}, {{'2', '2'}}, {{'2', '3'}}, {{'2', '4'}}, {{'2', '5'}}, {{'2', '6'}}, {{'2', '7'}}, {{'2', '8'}}, {{'2', '9'}}, - {{'3', '0'}}, {{'3', '1'}}, {{'3', '2'}}, {{'3', '3'}}, {{'3', '4'}}, {{'3', '5'}}, {{'3', '6'}}, {{'3', '7'}}, {{'3', '8'}}, {{'3', '9'}}, - {{'4', '0'}}, {{'4', '1'}}, {{'4', '2'}}, {{'4', '3'}}, {{'4', '4'}}, {{'4', '5'}}, {{'4', '6'}}, {{'4', '7'}}, {{'4', '8'}}, {{'4', '9'}}, - {{'5', '0'}}, {{'5', '1'}}, {{'5', '2'}}, {{'5', '3'}}, {{'5', '4'}}, {{'5', '5'}}, {{'5', '6'}}, {{'5', '7'}}, {{'5', '8'}}, {{'5', '9'}}, - {{'6', '0'}}, {{'6', '1'}}, {{'6', '2'}}, {{'6', '3'}}, {{'6', '4'}}, {{'6', '5'}}, {{'6', '6'}}, {{'6', '7'}}, {{'6', '8'}}, {{'6', '9'}}, - {{'7', '0'}}, {{'7', '1'}}, {{'7', '2'}}, {{'7', '3'}}, {{'7', '4'}}, {{'7', '5'}}, {{'7', '6'}}, {{'7', '7'}}, {{'7', '8'}}, {{'7', '9'}}, - {{'8', '0'}}, {{'8', '1'}}, {{'8', '2'}}, {{'8', '3'}}, {{'8', '4'}}, {{'8', '5'}}, {{'8', '6'}}, {{'8', '7'}}, {{'8', '8'}}, {{'8', '9'}}, - {{'9', '0'}}, {{'9', '1'}}, {{'9', '2'}}, {{'9', '3'}}, {{'9', '4'}}, {{'9', '5'}}, {{'9', '6'}}, {{'9', '7'}}, {{'9', '8'}}, {{'9', '9'}}, - } - }; - - // special case for "0" - if (x == 0) - { - o->write_character('0'); - return; - } - - // use a pointer to fill the buffer - auto buffer_ptr = number_buffer.begin(); - - const bool is_negative = std::is_same::value && !(x >= 0); // see issue #755 - number_unsigned_t abs_value; - - unsigned int n_chars; - - if (is_negative) - { - *buffer_ptr = '-'; - abs_value = remove_sign(static_cast(x)); - - // account one more byte for the minus sign - n_chars = 1 + count_digits(abs_value); - } - else - { - abs_value = static_cast(x); - n_chars = count_digits(abs_value); - } - - // spare 1 byte for '\0' - JSON_ASSERT(n_chars < number_buffer.size() - 1); - - // jump to the end to generate the string from backward - // so we later avoid reversing the result - buffer_ptr += n_chars; - - // Fast int2ascii implementation inspired by "Fastware" talk by Andrei Alexandrescu - // See: https://www.youtube.com/watch?v=o4-CwDo2zpg - while (abs_value >= 100) - { - const auto digits_index = static_cast((abs_value % 100)); - abs_value /= 100; - *(--buffer_ptr) = digits_to_99[digits_index][1]; - *(--buffer_ptr) = digits_to_99[digits_index][0]; - } - - if (abs_value >= 10) - { - const auto digits_index = static_cast(abs_value); - *(--buffer_ptr) = digits_to_99[digits_index][1]; - *(--buffer_ptr) = digits_to_99[digits_index][0]; - } - else - { - *(--buffer_ptr) = static_cast('0' + abs_value); - } - - o->write_characters(number_buffer.data(), n_chars); - } - - /*! - @brief dump a floating-point number - - Dump a given floating-point number to output stream @a o. Works internally - with @a number_buffer. - - @param[in] x floating-point number to dump - */ - void dump_float(number_float_t x) - { - // NaN / inf - if (!std::isfinite(x)) - { - o->write_characters("null", 4); - return; - } - - // If number_float_t is an IEEE-754 single or double precision number, - // use the Grisu2 algorithm to produce short numbers which are - // guaranteed to round-trip, using strtof and strtod, resp. - // - // NB: The test below works if == . - static constexpr bool is_ieee_single_or_double - = (std::numeric_limits::is_iec559 && std::numeric_limits::digits == 24 && std::numeric_limits::max_exponent == 128) || - (std::numeric_limits::is_iec559 && std::numeric_limits::digits == 53 && std::numeric_limits::max_exponent == 1024); - - dump_float(x, std::integral_constant()); - } - - void dump_float(number_float_t x, std::true_type /*is_ieee_single_or_double*/) - { - char* begin = number_buffer.data(); - char* end = ::nlohmann::detail::to_chars(begin, begin + number_buffer.size(), x); - - o->write_characters(begin, static_cast(end - begin)); - } - - void dump_float(number_float_t x, std::false_type /*is_ieee_single_or_double*/) - { - // get number of digits for a float -> text -> float round-trip - static constexpr auto d = std::numeric_limits::max_digits10; - - // the actual conversion - std::ptrdiff_t len = (std::snprintf)(number_buffer.data(), number_buffer.size(), "%.*g", d, x); - - // negative value indicates an error - JSON_ASSERT(len > 0); - // check if buffer was large enough - JSON_ASSERT(static_cast(len) < number_buffer.size()); - - // erase thousands separator - if (thousands_sep != '\0') - { - const auto end = std::remove(number_buffer.begin(), - number_buffer.begin() + len, thousands_sep); - std::fill(end, number_buffer.end(), '\0'); - JSON_ASSERT((end - number_buffer.begin()) <= len); - len = (end - number_buffer.begin()); - } - - // convert decimal point to '.' - if (decimal_point != '\0' && decimal_point != '.') - { - const auto dec_pos = std::find(number_buffer.begin(), number_buffer.end(), decimal_point); - if (dec_pos != number_buffer.end()) - { - *dec_pos = '.'; - } - } - - o->write_characters(number_buffer.data(), static_cast(len)); - - // determine if need to append ".0" - const bool value_is_int_like = - std::none_of(number_buffer.begin(), number_buffer.begin() + len + 1, - [](char c) - { - return c == '.' || c == 'e'; - }); - - if (value_is_int_like) - { - o->write_characters(".0", 2); - } - } - - /*! - @brief check whether a string is UTF-8 encoded - - The function checks each byte of a string whether it is UTF-8 encoded. The - result of the check is stored in the @a state parameter. The function must - be called initially with state 0 (accept). State 1 means the string must - be rejected, because the current byte is not allowed. If the string is - completely processed, but the state is non-zero, the string ended - prematurely; that is, the last byte indicated more bytes should have - followed. - - @param[in,out] state the state of the decoding - @param[in,out] codep codepoint (valid only if resulting state is UTF8_ACCEPT) - @param[in] byte next byte to decode - @return new state - - @note The function has been edited: a std::array is used. - - @copyright Copyright (c) 2008-2009 Bjoern Hoehrmann - @sa http://bjoern.hoehrmann.de/utf-8/decoder/dfa/ - */ - static std::uint8_t decode(std::uint8_t& state, std::uint32_t& codep, const std::uint8_t byte) noexcept - { - static const std::array utf8d = - { - { - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 00..1F - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 20..3F - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 40..5F - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 60..7F - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, // 80..9F - 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, // A0..BF - 8, 8, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, // C0..DF - 0xA, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x4, 0x3, 0x3, // E0..EF - 0xB, 0x6, 0x6, 0x6, 0x5, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, // F0..FF - 0x0, 0x1, 0x2, 0x3, 0x5, 0x8, 0x7, 0x1, 0x1, 0x1, 0x4, 0x6, 0x1, 0x1, 0x1, 0x1, // s0..s0 - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, // s1..s2 - 1, 2, 1, 1, 1, 1, 1, 2, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, // s3..s4 - 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, // s5..s6 - 1, 3, 1, 1, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 // s7..s8 - } - }; - - const std::uint8_t type = utf8d[byte]; - - codep = (state != UTF8_ACCEPT) - ? (byte & 0x3fu) | (codep << 6u) - : (0xFFu >> type) & (byte); - - std::size_t index = 256u + static_cast(state) * 16u + static_cast(type); - JSON_ASSERT(index < 400); - state = utf8d[index]; - return state; - } - - /* - * Overload to make the compiler happy while it is instantiating - * dump_integer for number_unsigned_t. - * Must never be called. - */ - number_unsigned_t remove_sign(number_unsigned_t x) - { - JSON_ASSERT(false); // LCOV_EXCL_LINE - return x; // LCOV_EXCL_LINE - } - - /* - * Helper function for dump_integer - * - * This function takes a negative signed integer and returns its absolute - * value as unsigned integer. The plus/minus shuffling is necessary as we can - * not directly remove the sign of an arbitrary signed integer as the - * absolute values of INT_MIN and INT_MAX are usually not the same. See - * #1708 for details. - */ - inline number_unsigned_t remove_sign(number_integer_t x) noexcept - { - JSON_ASSERT(x < 0 && x < (std::numeric_limits::max)()); - return static_cast(-(x + 1)) + 1; - } - - private: - /// the output of the serializer - output_adapter_t o = nullptr; - - /// a (hopefully) large enough character buffer - std::array number_buffer{{}}; - - /// the locale - const std::lconv* loc = nullptr; - /// the locale's thousand separator character - const char thousands_sep = '\0'; - /// the locale's decimal point character - const char decimal_point = '\0'; - - /// string buffer - std::array string_buffer{{}}; - - /// the indentation character - const char indent_char; - /// the indentation string - string_t indent_string; - - /// error_handler how to react on decoding errors - const error_handler_t error_handler; -}; -} // namespace detail -} // namespace nlohmann - -// #include - -// #include - -// #include - - -#include // less -#include // allocator -#include // pair -#include // vector - -namespace nlohmann -{ - -/// ordered_map: a minimal map-like container that preserves insertion order -/// for use within nlohmann::basic_json -template , - class Allocator = std::allocator>> - struct ordered_map : std::vector, Allocator> -{ - using key_type = Key; - using mapped_type = T; - using Container = std::vector, Allocator>; - using typename Container::iterator; - using typename Container::const_iterator; - using typename Container::size_type; - using typename Container::value_type; - - // Explicit constructors instead of `using Container::Container` - // otherwise older compilers choke on it (GCC <= 5.5, xcode <= 9.4) - ordered_map(const Allocator& alloc = Allocator()) : Container{alloc} {} - template - ordered_map(It first, It last, const Allocator& alloc = Allocator()) - : Container{first, last, alloc} {} - ordered_map(std::initializer_list init, const Allocator& alloc = Allocator() ) - : Container{init, alloc} {} - - std::pair emplace(const key_type& key, T&& t) - { - for (auto it = this->begin(); it != this->end(); ++it) - { - if (it->first == key) - { - return {it, false}; - } - } - Container::emplace_back(key, t); - return {--this->end(), true}; - } - - T& operator[](const Key& key) - { - return emplace(key, T{}).first->second; - } - - const T& operator[](const Key& key) const - { - return at(key); - } - - T& at(const Key& key) - { - for (auto it = this->begin(); it != this->end(); ++it) - { - if (it->first == key) - { - return it->second; - } - } - - throw std::out_of_range("key not found"); - } - - const T& at(const Key& key) const - { - for (auto it = this->begin(); it != this->end(); ++it) - { - if (it->first == key) - { - return it->second; - } - } - - throw std::out_of_range("key not found"); - } - - size_type erase(const Key& key) - { - for (auto it = this->begin(); it != this->end(); ++it) - { - if (it->first == key) - { - // Since we cannot move const Keys, re-construct them in place - for (auto next = it; ++next != this->end(); ++it) - { - it->~value_type(); // Destroy but keep allocation - new (&*it) value_type{std::move(*next)}; - } - Container::pop_back(); - return 1; - } - } - return 0; - } - - iterator erase(iterator pos) - { - auto it = pos; - - // Since we cannot move const Keys, re-construct them in place - for (auto next = it; ++next != this->end(); ++it) - { - it->~value_type(); // Destroy but keep allocation - new (&*it) value_type{std::move(*next)}; - } - Container::pop_back(); - return pos; - } - - size_type count(const Key& key) const - { - for (auto it = this->begin(); it != this->end(); ++it) - { - if (it->first == key) - { - return 1; - } - } - return 0; - } - - iterator find(const Key& key) - { - for (auto it = this->begin(); it != this->end(); ++it) - { - if (it->first == key) - { - return it; - } - } - return Container::end(); - } - - const_iterator find(const Key& key) const - { - for (auto it = this->begin(); it != this->end(); ++it) - { - if (it->first == key) - { - return it; - } - } - return Container::end(); - } - - std::pair insert( value_type&& value ) - { - return emplace(value.first, std::move(value.second)); - } - - std::pair insert( const value_type& value ) - { - for (auto it = this->begin(); it != this->end(); ++it) - { - if (it->first == value.first) - { - return {it, false}; - } - } - Container::push_back(value); - return {--this->end(), true}; - } -}; - -} // namespace nlohmann - - -/*! -@brief namespace for Niels Lohmann -@see https://github.com/nlohmann -@since version 1.0.0 -*/ -namespace nlohmann -{ - -/*! -@brief a class to store JSON values - -@tparam ObjectType type for JSON objects (`std::map` by default; will be used -in @ref object_t) -@tparam ArrayType type for JSON arrays (`std::vector` by default; will be used -in @ref array_t) -@tparam StringType type for JSON strings and object keys (`std::string` by -default; will be used in @ref string_t) -@tparam BooleanType type for JSON booleans (`bool` by default; will be used -in @ref boolean_t) -@tparam NumberIntegerType type for JSON integer numbers (`int64_t` by -default; will be used in @ref number_integer_t) -@tparam NumberUnsignedType type for JSON unsigned integer numbers (@c -`uint64_t` by default; will be used in @ref number_unsigned_t) -@tparam NumberFloatType type for JSON floating-point numbers (`double` by -default; will be used in @ref number_float_t) -@tparam BinaryType type for packed binary data for compatibility with binary -serialization formats (`std::vector` by default; will be used in -@ref binary_t) -@tparam AllocatorType type of the allocator to use (`std::allocator` by -default) -@tparam JSONSerializer the serializer to resolve internal calls to `to_json()` -and `from_json()` (@ref adl_serializer by default) - -@requirement The class satisfies the following concept requirements: -- Basic - - [DefaultConstructible](https://en.cppreference.com/w/cpp/named_req/DefaultConstructible): - JSON values can be default constructed. The result will be a JSON null - value. - - [MoveConstructible](https://en.cppreference.com/w/cpp/named_req/MoveConstructible): - A JSON value can be constructed from an rvalue argument. - - [CopyConstructible](https://en.cppreference.com/w/cpp/named_req/CopyConstructible): - A JSON value can be copy-constructed from an lvalue expression. - - [MoveAssignable](https://en.cppreference.com/w/cpp/named_req/MoveAssignable): - A JSON value van be assigned from an rvalue argument. - - [CopyAssignable](https://en.cppreference.com/w/cpp/named_req/CopyAssignable): - A JSON value can be copy-assigned from an lvalue expression. - - [Destructible](https://en.cppreference.com/w/cpp/named_req/Destructible): - JSON values can be destructed. -- Layout - - [StandardLayoutType](https://en.cppreference.com/w/cpp/named_req/StandardLayoutType): - JSON values have - [standard layout](https://en.cppreference.com/w/cpp/language/data_members#Standard_layout): - All non-static data members are private and standard layout types, the - class has no virtual functions or (virtual) base classes. -- Library-wide - - [EqualityComparable](https://en.cppreference.com/w/cpp/named_req/EqualityComparable): - JSON values can be compared with `==`, see @ref - operator==(const_reference,const_reference). - - [LessThanComparable](https://en.cppreference.com/w/cpp/named_req/LessThanComparable): - JSON values can be compared with `<`, see @ref - operator<(const_reference,const_reference). - - [Swappable](https://en.cppreference.com/w/cpp/named_req/Swappable): - Any JSON lvalue or rvalue of can be swapped with any lvalue or rvalue of - other compatible types, using unqualified function call @ref swap(). - - [NullablePointer](https://en.cppreference.com/w/cpp/named_req/NullablePointer): - JSON values can be compared against `std::nullptr_t` objects which are used - to model the `null` value. -- Container - - [Container](https://en.cppreference.com/w/cpp/named_req/Container): - JSON values can be used like STL containers and provide iterator access. - - [ReversibleContainer](https://en.cppreference.com/w/cpp/named_req/ReversibleContainer); - JSON values can be used like STL containers and provide reverse iterator - access. - -@invariant The member variables @a m_value and @a m_type have the following -relationship: -- If `m_type == value_t::object`, then `m_value.object != nullptr`. -- If `m_type == value_t::array`, then `m_value.array != nullptr`. -- If `m_type == value_t::string`, then `m_value.string != nullptr`. -The invariants are checked by member function assert_invariant(). - -@internal -@note ObjectType trick from https://stackoverflow.com/a/9860911 -@endinternal - -@see [RFC 7159: The JavaScript Object Notation (JSON) Data Interchange -Format](http://rfc7159.net/rfc7159) - -@since version 1.0.0 - -@nosubgrouping -*/ -NLOHMANN_BASIC_JSON_TPL_DECLARATION -class basic_json -{ - private: - template friend struct detail::external_constructor; - friend ::nlohmann::json_pointer; - - template - friend class ::nlohmann::detail::parser; - friend ::nlohmann::detail::serializer; - template - friend class ::nlohmann::detail::iter_impl; - template - friend class ::nlohmann::detail::binary_writer; - template - friend class ::nlohmann::detail::binary_reader; - template - friend class ::nlohmann::detail::json_sax_dom_parser; - template - friend class ::nlohmann::detail::json_sax_dom_callback_parser; - - /// workaround type for MSVC - using basic_json_t = NLOHMANN_BASIC_JSON_TPL; - - // convenience aliases for types residing in namespace detail; - using lexer = ::nlohmann::detail::lexer_base; - - template - static ::nlohmann::detail::parser parser( - InputAdapterType adapter, - detail::parser_callback_tcb = nullptr, - const bool allow_exceptions = true, - const bool ignore_comments = false - ) - { - return ::nlohmann::detail::parser(std::move(adapter), - std::move(cb), allow_exceptions, ignore_comments); - } - - using primitive_iterator_t = ::nlohmann::detail::primitive_iterator_t; - template - using internal_iterator = ::nlohmann::detail::internal_iterator; - template - using iter_impl = ::nlohmann::detail::iter_impl; - template - using iteration_proxy = ::nlohmann::detail::iteration_proxy; - template using json_reverse_iterator = ::nlohmann::detail::json_reverse_iterator; - - template - using output_adapter_t = ::nlohmann::detail::output_adapter_t; - - template - using binary_reader = ::nlohmann::detail::binary_reader; - template using binary_writer = ::nlohmann::detail::binary_writer; - - using serializer = ::nlohmann::detail::serializer; - - public: - using value_t = detail::value_t; - /// JSON Pointer, see @ref nlohmann::json_pointer - using json_pointer = ::nlohmann::json_pointer; - template - using json_serializer = JSONSerializer; - /// how to treat decoding errors - using error_handler_t = detail::error_handler_t; - /// how to treat CBOR tags - using cbor_tag_handler_t = detail::cbor_tag_handler_t; - /// helper type for initializer lists of basic_json values - using initializer_list_t = std::initializer_list>; - - using input_format_t = detail::input_format_t; - /// SAX interface type, see @ref nlohmann::json_sax - using json_sax_t = json_sax; - - //////////////// - // exceptions // - //////////////// - - /// @name exceptions - /// Classes to implement user-defined exceptions. - /// @{ - - /// @copydoc detail::exception - using exception = detail::exception; - /// @copydoc detail::parse_error - using parse_error = detail::parse_error; - /// @copydoc detail::invalid_iterator - using invalid_iterator = detail::invalid_iterator; - /// @copydoc detail::type_error - using type_error = detail::type_error; - /// @copydoc detail::out_of_range - using out_of_range = detail::out_of_range; - /// @copydoc detail::other_error - using other_error = detail::other_error; - - /// @} - - - ///////////////////// - // container types // - ///////////////////// - - /// @name container types - /// The canonic container types to use @ref basic_json like any other STL - /// container. - /// @{ - - /// the type of elements in a basic_json container - using value_type = basic_json; - - /// the type of an element reference - using reference = value_type&; - /// the type of an element const reference - using const_reference = const value_type&; - - /// a type to represent differences between iterators - using difference_type = std::ptrdiff_t; - /// a type to represent container sizes - using size_type = std::size_t; - - /// the allocator type - using allocator_type = AllocatorType; - - /// the type of an element pointer - using pointer = typename std::allocator_traits::pointer; - /// the type of an element const pointer - using const_pointer = typename std::allocator_traits::const_pointer; - - /// an iterator for a basic_json container - using iterator = iter_impl; - /// a const iterator for a basic_json container - using const_iterator = iter_impl; - /// a reverse iterator for a basic_json container - using reverse_iterator = json_reverse_iterator; - /// a const reverse iterator for a basic_json container - using const_reverse_iterator = json_reverse_iterator; - - /// @} - - - /*! - @brief returns the allocator associated with the container - */ - static allocator_type get_allocator() - { - return allocator_type(); - } - - /*! - @brief returns version information on the library - - This function returns a JSON object with information about the library, - including the version number and information on the platform and compiler. - - @return JSON object holding version information - key | description - ----------- | --------------- - `compiler` | Information on the used compiler. It is an object with the following keys: `c++` (the used C++ standard), `family` (the compiler family; possible values are `clang`, `icc`, `gcc`, `ilecpp`, `msvc`, `pgcpp`, `sunpro`, and `unknown`), and `version` (the compiler version). - `copyright` | The copyright line for the library as string. - `name` | The name of the library as string. - `platform` | The used platform as string. Possible values are `win32`, `linux`, `apple`, `unix`, and `unknown`. - `url` | The URL of the project as string. - `version` | The version of the library. It is an object with the following keys: `major`, `minor`, and `patch` as defined by [Semantic Versioning](http://semver.org), and `string` (the version string). - - @liveexample{The following code shows an example output of the `meta()` - function.,meta} - - @exceptionsafety Strong guarantee: if an exception is thrown, there are no - changes to any JSON value. - - @complexity Constant. - - @since 2.1.0 - */ - JSON_HEDLEY_WARN_UNUSED_RESULT - static basic_json meta() - { - basic_json result; - - result["copyright"] = "(C) 2013-2020 Niels Lohmann"; - result["name"] = "JSON for Modern C++"; - result["url"] = "https://github.com/nlohmann/json"; - result["version"]["string"] = - std::to_string(NLOHMANN_JSON_VERSION_MAJOR) + "." + - std::to_string(NLOHMANN_JSON_VERSION_MINOR) + "." + - std::to_string(NLOHMANN_JSON_VERSION_PATCH); - result["version"]["major"] = NLOHMANN_JSON_VERSION_MAJOR; - result["version"]["minor"] = NLOHMANN_JSON_VERSION_MINOR; - result["version"]["patch"] = NLOHMANN_JSON_VERSION_PATCH; - -#ifdef _WIN32 - result["platform"] = "win32"; -#elif defined __linux__ - result["platform"] = "linux"; -#elif defined __APPLE__ - result["platform"] = "apple"; -#elif defined __unix__ - result["platform"] = "unix"; -#else - result["platform"] = "unknown"; -#endif - -#if defined(__ICC) || defined(__INTEL_COMPILER) - result["compiler"] = {{"family", "icc"}, {"version", __INTEL_COMPILER}}; -#elif defined(__clang__) - result["compiler"] = {{"family", "clang"}, {"version", __clang_version__}}; -#elif defined(__GNUC__) || defined(__GNUG__) - result["compiler"] = {{"family", "gcc"}, {"version", std::to_string(__GNUC__) + "." + std::to_string(__GNUC_MINOR__) + "." + std::to_string(__GNUC_PATCHLEVEL__)}}; -#elif defined(__HP_cc) || defined(__HP_aCC) - result["compiler"] = "hp" -#elif defined(__IBMCPP__) - result["compiler"] = {{"family", "ilecpp"}, {"version", __IBMCPP__}}; -#elif defined(_MSC_VER) - result["compiler"] = {{"family", "msvc"}, {"version", _MSC_VER}}; -#elif defined(__PGI) - result["compiler"] = {{"family", "pgcpp"}, {"version", __PGI}}; -#elif defined(__SUNPRO_CC) - result["compiler"] = {{"family", "sunpro"}, {"version", __SUNPRO_CC}}; -#else - result["compiler"] = {{"family", "unknown"}, {"version", "unknown"}}; -#endif - -#ifdef __cplusplus - result["compiler"]["c++"] = std::to_string(__cplusplus); -#else - result["compiler"]["c++"] = "unknown"; -#endif - return result; - } - - - /////////////////////////// - // JSON value data types // - /////////////////////////// - - /// @name JSON value data types - /// The data types to store a JSON value. These types are derived from - /// the template arguments passed to class @ref basic_json. - /// @{ - -#if defined(JSON_HAS_CPP_14) - // Use transparent comparator if possible, combined with perfect forwarding - // on find() and count() calls prevents unnecessary string construction. - using object_comparator_t = std::less<>; -#else - using object_comparator_t = std::less; -#endif - - /*! - @brief a type for an object - - [RFC 7159](http://rfc7159.net/rfc7159) describes JSON objects as follows: - > An object is an unordered collection of zero or more name/value pairs, - > where a name is a string and a value is a string, number, boolean, null, - > object, or array. - - To store objects in C++, a type is defined by the template parameters - described below. - - @tparam ObjectType the container to store objects (e.g., `std::map` or - `std::unordered_map`) - @tparam StringType the type of the keys or names (e.g., `std::string`). - The comparison function `std::less` is used to order elements - inside the container. - @tparam AllocatorType the allocator to use for objects (e.g., - `std::allocator`) - - #### Default type - - With the default values for @a ObjectType (`std::map`), @a StringType - (`std::string`), and @a AllocatorType (`std::allocator`), the default - value for @a object_t is: - - @code {.cpp} - std::map< - std::string, // key_type - basic_json, // value_type - std::less, // key_compare - std::allocator> // allocator_type - > - @endcode - - #### Behavior - - The choice of @a object_t influences the behavior of the JSON class. With - the default type, objects have the following behavior: - - - When all names are unique, objects will be interoperable in the sense - that all software implementations receiving that object will agree on - the name-value mappings. - - When the names within an object are not unique, it is unspecified which - one of the values for a given key will be chosen. For instance, - `{"key": 2, "key": 1}` could be equal to either `{"key": 1}` or - `{"key": 2}`. - - Internally, name/value pairs are stored in lexicographical order of the - names. Objects will also be serialized (see @ref dump) in this order. - For instance, `{"b": 1, "a": 2}` and `{"a": 2, "b": 1}` will be stored - and serialized as `{"a": 2, "b": 1}`. - - When comparing objects, the order of the name/value pairs is irrelevant. - This makes objects interoperable in the sense that they will not be - affected by these differences. For instance, `{"b": 1, "a": 2}` and - `{"a": 2, "b": 1}` will be treated as equal. - - #### Limits - - [RFC 7159](http://rfc7159.net/rfc7159) specifies: - > An implementation may set limits on the maximum depth of nesting. - - In this class, the object's limit of nesting is not explicitly constrained. - However, a maximum depth of nesting may be introduced by the compiler or - runtime environment. A theoretical limit can be queried by calling the - @ref max_size function of a JSON object. - - #### Storage - - Objects are stored as pointers in a @ref basic_json type. That is, for any - access to object values, a pointer of type `object_t*` must be - dereferenced. - - @sa @ref array_t -- type for an array value - - @since version 1.0.0 - - @note The order name/value pairs are added to the object is *not* - preserved by the library. Therefore, iterating an object may return - name/value pairs in a different order than they were originally stored. In - fact, keys will be traversed in alphabetical order as `std::map` with - `std::less` is used by default. Please note this behavior conforms to [RFC - 7159](http://rfc7159.net/rfc7159), because any order implements the - specified "unordered" nature of JSON objects. - */ - using object_t = ObjectType>>; - - /*! - @brief a type for an array - - [RFC 7159](http://rfc7159.net/rfc7159) describes JSON arrays as follows: - > An array is an ordered sequence of zero or more values. - - To store objects in C++, a type is defined by the template parameters - explained below. - - @tparam ArrayType container type to store arrays (e.g., `std::vector` or - `std::list`) - @tparam AllocatorType allocator to use for arrays (e.g., `std::allocator`) - - #### Default type - - With the default values for @a ArrayType (`std::vector`) and @a - AllocatorType (`std::allocator`), the default value for @a array_t is: - - @code {.cpp} - std::vector< - basic_json, // value_type - std::allocator // allocator_type - > - @endcode - - #### Limits - - [RFC 7159](http://rfc7159.net/rfc7159) specifies: - > An implementation may set limits on the maximum depth of nesting. - - In this class, the array's limit of nesting is not explicitly constrained. - However, a maximum depth of nesting may be introduced by the compiler or - runtime environment. A theoretical limit can be queried by calling the - @ref max_size function of a JSON array. - - #### Storage - - Arrays are stored as pointers in a @ref basic_json type. That is, for any - access to array values, a pointer of type `array_t*` must be dereferenced. - - @sa @ref object_t -- type for an object value - - @since version 1.0.0 - */ - using array_t = ArrayType>; - - /*! - @brief a type for a string - - [RFC 7159](http://rfc7159.net/rfc7159) describes JSON strings as follows: - > A string is a sequence of zero or more Unicode characters. - - To store objects in C++, a type is defined by the template parameter - described below. Unicode values are split by the JSON class into - byte-sized characters during deserialization. - - @tparam StringType the container to store strings (e.g., `std::string`). - Note this container is used for keys/names in objects, see @ref object_t. - - #### Default type - - With the default values for @a StringType (`std::string`), the default - value for @a string_t is: - - @code {.cpp} - std::string - @endcode - - #### Encoding - - Strings are stored in UTF-8 encoding. Therefore, functions like - `std::string::size()` or `std::string::length()` return the number of - bytes in the string rather than the number of characters or glyphs. - - #### String comparison - - [RFC 7159](http://rfc7159.net/rfc7159) states: - > Software implementations are typically required to test names of object - > members for equality. Implementations that transform the textual - > representation into sequences of Unicode code units and then perform the - > comparison numerically, code unit by code unit, are interoperable in the - > sense that implementations will agree in all cases on equality or - > inequality of two strings. For example, implementations that compare - > strings with escaped characters unconverted may incorrectly find that - > `"a\\b"` and `"a\u005Cb"` are not equal. - - This implementation is interoperable as it does compare strings code unit - by code unit. - - #### Storage - - String values are stored as pointers in a @ref basic_json type. That is, - for any access to string values, a pointer of type `string_t*` must be - dereferenced. - - @since version 1.0.0 - */ - using string_t = StringType; - - /*! - @brief a type for a boolean - - [RFC 7159](http://rfc7159.net/rfc7159) implicitly describes a boolean as a - type which differentiates the two literals `true` and `false`. - - To store objects in C++, a type is defined by the template parameter @a - BooleanType which chooses the type to use. - - #### Default type - - With the default values for @a BooleanType (`bool`), the default value for - @a boolean_t is: - - @code {.cpp} - bool - @endcode - - #### Storage - - Boolean values are stored directly inside a @ref basic_json type. - - @since version 1.0.0 - */ - using boolean_t = BooleanType; - - /*! - @brief a type for a number (integer) - - [RFC 7159](http://rfc7159.net/rfc7159) describes numbers as follows: - > The representation of numbers is similar to that used in most - > programming languages. A number is represented in base 10 using decimal - > digits. It contains an integer component that may be prefixed with an - > optional minus sign, which may be followed by a fraction part and/or an - > exponent part. Leading zeros are not allowed. (...) Numeric values that - > cannot be represented in the grammar below (such as Infinity and NaN) - > are not permitted. - - This description includes both integer and floating-point numbers. - However, C++ allows more precise storage if it is known whether the number - is a signed integer, an unsigned integer or a floating-point number. - Therefore, three different types, @ref number_integer_t, @ref - number_unsigned_t and @ref number_float_t are used. - - To store integer numbers in C++, a type is defined by the template - parameter @a NumberIntegerType which chooses the type to use. - - #### Default type - - With the default values for @a NumberIntegerType (`int64_t`), the default - value for @a number_integer_t is: - - @code {.cpp} - int64_t - @endcode - - #### Default behavior - - - The restrictions about leading zeros is not enforced in C++. Instead, - leading zeros in integer literals lead to an interpretation as octal - number. Internally, the value will be stored as decimal number. For - instance, the C++ integer literal `010` will be serialized to `8`. - During deserialization, leading zeros yield an error. - - Not-a-number (NaN) values will be serialized to `null`. - - #### Limits - - [RFC 7159](http://rfc7159.net/rfc7159) specifies: - > An implementation may set limits on the range and precision of numbers. - - When the default type is used, the maximal integer number that can be - stored is `9223372036854775807` (INT64_MAX) and the minimal integer number - that can be stored is `-9223372036854775808` (INT64_MIN). Integer numbers - that are out of range will yield over/underflow when used in a - constructor. During deserialization, too large or small integer numbers - will be automatically be stored as @ref number_unsigned_t or @ref - number_float_t. - - [RFC 7159](http://rfc7159.net/rfc7159) further states: - > Note that when such software is used, numbers that are integers and are - > in the range \f$[-2^{53}+1, 2^{53}-1]\f$ are interoperable in the sense - > that implementations will agree exactly on their numeric values. - - As this range is a subrange of the exactly supported range [INT64_MIN, - INT64_MAX], this class's integer type is interoperable. - - #### Storage - - Integer number values are stored directly inside a @ref basic_json type. - - @sa @ref number_float_t -- type for number values (floating-point) - - @sa @ref number_unsigned_t -- type for number values (unsigned integer) - - @since version 1.0.0 - */ - using number_integer_t = NumberIntegerType; - - /*! - @brief a type for a number (unsigned) - - [RFC 7159](http://rfc7159.net/rfc7159) describes numbers as follows: - > The representation of numbers is similar to that used in most - > programming languages. A number is represented in base 10 using decimal - > digits. It contains an integer component that may be prefixed with an - > optional minus sign, which may be followed by a fraction part and/or an - > exponent part. Leading zeros are not allowed. (...) Numeric values that - > cannot be represented in the grammar below (such as Infinity and NaN) - > are not permitted. - - This description includes both integer and floating-point numbers. - However, C++ allows more precise storage if it is known whether the number - is a signed integer, an unsigned integer or a floating-point number. - Therefore, three different types, @ref number_integer_t, @ref - number_unsigned_t and @ref number_float_t are used. - - To store unsigned integer numbers in C++, a type is defined by the - template parameter @a NumberUnsignedType which chooses the type to use. - - #### Default type - - With the default values for @a NumberUnsignedType (`uint64_t`), the - default value for @a number_unsigned_t is: - - @code {.cpp} - uint64_t - @endcode - - #### Default behavior - - - The restrictions about leading zeros is not enforced in C++. Instead, - leading zeros in integer literals lead to an interpretation as octal - number. Internally, the value will be stored as decimal number. For - instance, the C++ integer literal `010` will be serialized to `8`. - During deserialization, leading zeros yield an error. - - Not-a-number (NaN) values will be serialized to `null`. - - #### Limits - - [RFC 7159](http://rfc7159.net/rfc7159) specifies: - > An implementation may set limits on the range and precision of numbers. - - When the default type is used, the maximal integer number that can be - stored is `18446744073709551615` (UINT64_MAX) and the minimal integer - number that can be stored is `0`. Integer numbers that are out of range - will yield over/underflow when used in a constructor. During - deserialization, too large or small integer numbers will be automatically - be stored as @ref number_integer_t or @ref number_float_t. - - [RFC 7159](http://rfc7159.net/rfc7159) further states: - > Note that when such software is used, numbers that are integers and are - > in the range \f$[-2^{53}+1, 2^{53}-1]\f$ are interoperable in the sense - > that implementations will agree exactly on their numeric values. - - As this range is a subrange (when considered in conjunction with the - number_integer_t type) of the exactly supported range [0, UINT64_MAX], - this class's integer type is interoperable. - - #### Storage - - Integer number values are stored directly inside a @ref basic_json type. - - @sa @ref number_float_t -- type for number values (floating-point) - @sa @ref number_integer_t -- type for number values (integer) - - @since version 2.0.0 - */ - using number_unsigned_t = NumberUnsignedType; - - /*! - @brief a type for a number (floating-point) - - [RFC 7159](http://rfc7159.net/rfc7159) describes numbers as follows: - > The representation of numbers is similar to that used in most - > programming languages. A number is represented in base 10 using decimal - > digits. It contains an integer component that may be prefixed with an - > optional minus sign, which may be followed by a fraction part and/or an - > exponent part. Leading zeros are not allowed. (...) Numeric values that - > cannot be represented in the grammar below (such as Infinity and NaN) - > are not permitted. - - This description includes both integer and floating-point numbers. - However, C++ allows more precise storage if it is known whether the number - is a signed integer, an unsigned integer or a floating-point number. - Therefore, three different types, @ref number_integer_t, @ref - number_unsigned_t and @ref number_float_t are used. - - To store floating-point numbers in C++, a type is defined by the template - parameter @a NumberFloatType which chooses the type to use. - - #### Default type - - With the default values for @a NumberFloatType (`double`), the default - value for @a number_float_t is: - - @code {.cpp} - double - @endcode - - #### Default behavior - - - The restrictions about leading zeros is not enforced in C++. Instead, - leading zeros in floating-point literals will be ignored. Internally, - the value will be stored as decimal number. For instance, the C++ - floating-point literal `01.2` will be serialized to `1.2`. During - deserialization, leading zeros yield an error. - - Not-a-number (NaN) values will be serialized to `null`. - - #### Limits - - [RFC 7159](http://rfc7159.net/rfc7159) states: - > This specification allows implementations to set limits on the range and - > precision of numbers accepted. Since software that implements IEEE - > 754-2008 binary64 (double precision) numbers is generally available and - > widely used, good interoperability can be achieved by implementations - > that expect no more precision or range than these provide, in the sense - > that implementations will approximate JSON numbers within the expected - > precision. - - This implementation does exactly follow this approach, as it uses double - precision floating-point numbers. Note values smaller than - `-1.79769313486232e+308` and values greater than `1.79769313486232e+308` - will be stored as NaN internally and be serialized to `null`. - - #### Storage - - Floating-point number values are stored directly inside a @ref basic_json - type. - - @sa @ref number_integer_t -- type for number values (integer) - - @sa @ref number_unsigned_t -- type for number values (unsigned integer) - - @since version 1.0.0 - */ - using number_float_t = NumberFloatType; - - /*! - @brief a type for a packed binary type - - This type is a type designed to carry binary data that appears in various - serialized formats, such as CBOR's Major Type 2, MessagePack's bin, and - BSON's generic binary subtype. This type is NOT a part of standard JSON and - exists solely for compatibility with these binary types. As such, it is - simply defined as an ordered sequence of zero or more byte values. - - Additionally, as an implementation detail, the subtype of the binary data is - carried around as a `std::uint8_t`, which is compatible with both of the - binary data formats that use binary subtyping, (though the specific - numbering is incompatible with each other, and it is up to the user to - translate between them). - - [CBOR's RFC 7049](https://tools.ietf.org/html/rfc7049) describes this type - as: - > Major type 2: a byte string. The string's length in bytes is represented - > following the rules for positive integers (major type 0). - - [MessagePack's documentation on the bin type - family](https://github.com/msgpack/msgpack/blob/master/spec.md#bin-format-family) - describes this type as: - > Bin format family stores an byte array in 2, 3, or 5 bytes of extra bytes - > in addition to the size of the byte array. - - [BSON's specifications](http://bsonspec.org/spec.html) describe several - binary types; however, this type is intended to represent the generic binary - type which has the description: - > Generic binary subtype - This is the most commonly used binary subtype and - > should be the 'default' for drivers and tools. - - None of these impose any limitations on the internal representation other - than the basic unit of storage be some type of array whose parts are - decomposable into bytes. - - The default representation of this binary format is a - `std::vector`, which is a very common way to represent a byte - array in modern C++. - - #### Default type - - The default values for @a BinaryType is `std::vector` - - #### Storage - - Binary Arrays are stored as pointers in a @ref basic_json type. That is, - for any access to array values, a pointer of the type `binary_t*` must be - dereferenced. - - #### Notes on subtypes - - - CBOR - - Binary values are represented as byte strings. No subtypes are - supported and will be ignored when CBOR is written. - - MessagePack - - If a subtype is given and the binary array contains exactly 1, 2, 4, 8, - or 16 elements, the fixext family (fixext1, fixext2, fixext4, fixext8) - is used. For other sizes, the ext family (ext8, ext16, ext32) is used. - The subtype is then added as singed 8-bit integer. - - If no subtype is given, the bin family (bin8, bin16, bin32) is used. - - BSON - - If a subtype is given, it is used and added as unsigned 8-bit integer. - - If no subtype is given, the generic binary subtype 0x00 is used. - - @sa @ref binary -- create a binary array - - @since version 3.8.0 - */ - using binary_t = nlohmann::byte_container_with_subtype; - /// @} - - private: - - /// helper for exception-safe object creation - template - JSON_HEDLEY_RETURNS_NON_NULL - static T* create(Args&& ... args) - { - AllocatorType alloc; - using AllocatorTraits = std::allocator_traits>; - - auto deleter = [&](T * object) - { - AllocatorTraits::deallocate(alloc, object, 1); - }; - std::unique_ptr object(AllocatorTraits::allocate(alloc, 1), deleter); - AllocatorTraits::construct(alloc, object.get(), std::forward(args)...); - JSON_ASSERT(object != nullptr); - return object.release(); - } - - //////////////////////// - // JSON value storage // - //////////////////////// - - /*! - @brief a JSON value - - The actual storage for a JSON value of the @ref basic_json class. This - union combines the different storage types for the JSON value types - defined in @ref value_t. - - JSON type | value_t type | used type - --------- | --------------- | ------------------------ - object | object | pointer to @ref object_t - array | array | pointer to @ref array_t - string | string | pointer to @ref string_t - boolean | boolean | @ref boolean_t - number | number_integer | @ref number_integer_t - number | number_unsigned | @ref number_unsigned_t - number | number_float | @ref number_float_t - binary | binary | pointer to @ref binary_t - null | null | *no value is stored* - - @note Variable-length types (objects, arrays, and strings) are stored as - pointers. The size of the union should not exceed 64 bits if the default - value types are used. - - @since version 1.0.0 - */ - union json_value - { - /// object (stored with pointer to save storage) - object_t* object; - /// array (stored with pointer to save storage) - array_t* array; - /// string (stored with pointer to save storage) - string_t* string; - /// binary (stored with pointer to save storage) - binary_t* binary; - /// boolean - boolean_t boolean; - /// number (integer) - number_integer_t number_integer; - /// number (unsigned integer) - number_unsigned_t number_unsigned; - /// number (floating-point) - number_float_t number_float; - - /// default constructor (for null values) - json_value() = default; - /// constructor for booleans - json_value(boolean_t v) noexcept : boolean(v) {} - /// constructor for numbers (integer) - json_value(number_integer_t v) noexcept : number_integer(v) {} - /// constructor for numbers (unsigned) - json_value(number_unsigned_t v) noexcept : number_unsigned(v) {} - /// constructor for numbers (floating-point) - json_value(number_float_t v) noexcept : number_float(v) {} - /// constructor for empty values of a given type - json_value(value_t t) - { - switch (t) - { - case value_t::object: - { - object = create(); - break; - } - - case value_t::array: - { - array = create(); - break; - } - - case value_t::string: - { - string = create(""); - break; - } - - case value_t::binary: - { - binary = create(); - break; - } - - case value_t::boolean: - { - boolean = boolean_t(false); - break; - } - - case value_t::number_integer: - { - number_integer = number_integer_t(0); - break; - } - - case value_t::number_unsigned: - { - number_unsigned = number_unsigned_t(0); - break; - } - - case value_t::number_float: - { - number_float = number_float_t(0.0); - break; - } - - case value_t::null: - { - object = nullptr; // silence warning, see #821 - break; - } - - default: - { - object = nullptr; // silence warning, see #821 - if (JSON_HEDLEY_UNLIKELY(t == value_t::null)) - { - JSON_THROW(other_error::create(500, "961c151d2e87f2686a955a9be24d316f1362bf21 3.9.1")); // LCOV_EXCL_LINE - } - break; - } - } - } - - /// constructor for strings - json_value(const string_t& value) - { - string = create(value); - } - - /// constructor for rvalue strings - json_value(string_t&& value) - { - string = create(std::move(value)); - } - - /// constructor for objects - json_value(const object_t& value) - { - object = create(value); - } - - /// constructor for rvalue objects - json_value(object_t&& value) - { - object = create(std::move(value)); - } - - /// constructor for arrays - json_value(const array_t& value) - { - array = create(value); - } - - /// constructor for rvalue arrays - json_value(array_t&& value) - { - array = create(std::move(value)); - } - - /// constructor for binary arrays - json_value(const typename binary_t::container_type& value) - { - binary = create(value); - } - - /// constructor for rvalue binary arrays - json_value(typename binary_t::container_type&& value) - { - binary = create(std::move(value)); - } - - /// constructor for binary arrays (internal type) - json_value(const binary_t& value) - { - binary = create(value); - } - - /// constructor for rvalue binary arrays (internal type) - json_value(binary_t&& value) - { - binary = create(std::move(value)); - } - - void destroy(value_t t) noexcept - { - // flatten the current json_value to a heap-allocated stack - std::vector stack; - - // move the top-level items to stack - if (t == value_t::array) - { - stack.reserve(array->size()); - std::move(array->begin(), array->end(), std::back_inserter(stack)); - } - else if (t == value_t::object) - { - stack.reserve(object->size()); - for (auto&& it : *object) - { - stack.push_back(std::move(it.second)); - } - } - - while (!stack.empty()) - { - // move the last item to local variable to be processed - basic_json current_item(std::move(stack.back())); - stack.pop_back(); - - // if current_item is array/object, move - // its children to the stack to be processed later - if (current_item.is_array()) - { - std::move(current_item.m_value.array->begin(), current_item.m_value.array->end(), - std::back_inserter(stack)); - - current_item.m_value.array->clear(); - } - else if (current_item.is_object()) - { - for (auto&& it : *current_item.m_value.object) - { - stack.push_back(std::move(it.second)); - } - - current_item.m_value.object->clear(); - } - - // it's now safe that current_item get destructed - // since it doesn't have any children - } - - switch (t) - { - case value_t::object: - { - AllocatorType alloc; - std::allocator_traits::destroy(alloc, object); - std::allocator_traits::deallocate(alloc, object, 1); - break; - } - - case value_t::array: - { - AllocatorType alloc; - std::allocator_traits::destroy(alloc, array); - std::allocator_traits::deallocate(alloc, array, 1); - break; - } - - case value_t::string: - { - AllocatorType alloc; - std::allocator_traits::destroy(alloc, string); - std::allocator_traits::deallocate(alloc, string, 1); - break; - } - - case value_t::binary: - { - AllocatorType alloc; - std::allocator_traits::destroy(alloc, binary); - std::allocator_traits::deallocate(alloc, binary, 1); - break; - } - - default: - { - break; - } - } - } - }; - - /*! - @brief checks the class invariants - - This function asserts the class invariants. It needs to be called at the - end of every constructor to make sure that created objects respect the - invariant. Furthermore, it has to be called each time the type of a JSON - value is changed, because the invariant expresses a relationship between - @a m_type and @a m_value. - */ - void assert_invariant() const noexcept - { - JSON_ASSERT(m_type != value_t::object || m_value.object != nullptr); - JSON_ASSERT(m_type != value_t::array || m_value.array != nullptr); - JSON_ASSERT(m_type != value_t::string || m_value.string != nullptr); - JSON_ASSERT(m_type != value_t::binary || m_value.binary != nullptr); - } - - public: - ////////////////////////// - // JSON parser callback // - ////////////////////////// - - /*! - @brief parser event types - - The parser callback distinguishes the following events: - - `object_start`: the parser read `{` and started to process a JSON object - - `key`: the parser read a key of a value in an object - - `object_end`: the parser read `}` and finished processing a JSON object - - `array_start`: the parser read `[` and started to process a JSON array - - `array_end`: the parser read `]` and finished processing a JSON array - - `value`: the parser finished reading a JSON value - - @image html callback_events.png "Example when certain parse events are triggered" - - @sa @ref parser_callback_t for more information and examples - */ - using parse_event_t = detail::parse_event_t; - - /*! - @brief per-element parser callback type - - With a parser callback function, the result of parsing a JSON text can be - influenced. When passed to @ref parse, it is called on certain events - (passed as @ref parse_event_t via parameter @a event) with a set recursion - depth @a depth and context JSON value @a parsed. The return value of the - callback function is a boolean indicating whether the element that emitted - the callback shall be kept or not. - - We distinguish six scenarios (determined by the event type) in which the - callback function can be called. The following table describes the values - of the parameters @a depth, @a event, and @a parsed. - - parameter @a event | description | parameter @a depth | parameter @a parsed - ------------------ | ----------- | ------------------ | ------------------- - parse_event_t::object_start | the parser read `{` and started to process a JSON object | depth of the parent of the JSON object | a JSON value with type discarded - parse_event_t::key | the parser read a key of a value in an object | depth of the currently parsed JSON object | a JSON string containing the key - parse_event_t::object_end | the parser read `}` and finished processing a JSON object | depth of the parent of the JSON object | the parsed JSON object - parse_event_t::array_start | the parser read `[` and started to process a JSON array | depth of the parent of the JSON array | a JSON value with type discarded - parse_event_t::array_end | the parser read `]` and finished processing a JSON array | depth of the parent of the JSON array | the parsed JSON array - parse_event_t::value | the parser finished reading a JSON value | depth of the value | the parsed JSON value - - @image html callback_events.png "Example when certain parse events are triggered" - - Discarding a value (i.e., returning `false`) has different effects - depending on the context in which function was called: - - - Discarded values in structured types are skipped. That is, the parser - will behave as if the discarded value was never read. - - In case a value outside a structured type is skipped, it is replaced - with `null`. This case happens if the top-level element is skipped. - - @param[in] depth the depth of the recursion during parsing - - @param[in] event an event of type parse_event_t indicating the context in - the callback function has been called - - @param[in,out] parsed the current intermediate parse result; note that - writing to this value has no effect for parse_event_t::key events - - @return Whether the JSON value which called the function during parsing - should be kept (`true`) or not (`false`). In the latter case, it is either - skipped completely or replaced by an empty discarded object. - - @sa @ref parse for examples - - @since version 1.0.0 - */ - using parser_callback_t = detail::parser_callback_t; - - ////////////////// - // constructors // - ////////////////// - - /// @name constructors and destructors - /// Constructors of class @ref basic_json, copy/move constructor, copy - /// assignment, static functions creating objects, and the destructor. - /// @{ - - /*! - @brief create an empty value with a given type - - Create an empty JSON value with a given type. The value will be default - initialized with an empty value which depends on the type: - - Value type | initial value - ----------- | ------------- - null | `null` - boolean | `false` - string | `""` - number | `0` - object | `{}` - array | `[]` - binary | empty array - - @param[in] v the type of the value to create - - @complexity Constant. - - @exceptionsafety Strong guarantee: if an exception is thrown, there are no - changes to any JSON value. - - @liveexample{The following code shows the constructor for different @ref - value_t values,basic_json__value_t} - - @sa @ref clear() -- restores the postcondition of this constructor - - @since version 1.0.0 - */ - basic_json(const value_t v) - : m_type(v), m_value(v) - { - assert_invariant(); - } - - /*! - @brief create a null object - - Create a `null` JSON value. It either takes a null pointer as parameter - (explicitly creating `null`) or no parameter (implicitly creating `null`). - The passed null pointer itself is not read -- it is only used to choose - the right constructor. - - @complexity Constant. - - @exceptionsafety No-throw guarantee: this constructor never throws - exceptions. - - @liveexample{The following code shows the constructor with and without a - null pointer parameter.,basic_json__nullptr_t} - - @since version 1.0.0 - */ - basic_json(std::nullptr_t = nullptr) noexcept - : basic_json(value_t::null) - { - assert_invariant(); - } - - /*! - @brief create a JSON value - - This is a "catch all" constructor for all compatible JSON types; that is, - types for which a `to_json()` method exists. The constructor forwards the - parameter @a val to that method (to `json_serializer::to_json` method - with `U = uncvref_t`, to be exact). - - Template type @a CompatibleType includes, but is not limited to, the - following types: - - **arrays**: @ref array_t and all kinds of compatible containers such as - `std::vector`, `std::deque`, `std::list`, `std::forward_list`, - `std::array`, `std::valarray`, `std::set`, `std::unordered_set`, - `std::multiset`, and `std::unordered_multiset` with a `value_type` from - which a @ref basic_json value can be constructed. - - **objects**: @ref object_t and all kinds of compatible associative - containers such as `std::map`, `std::unordered_map`, `std::multimap`, - and `std::unordered_multimap` with a `key_type` compatible to - @ref string_t and a `value_type` from which a @ref basic_json value can - be constructed. - - **strings**: @ref string_t, string literals, and all compatible string - containers can be used. - - **numbers**: @ref number_integer_t, @ref number_unsigned_t, - @ref number_float_t, and all convertible number types such as `int`, - `size_t`, `int64_t`, `float` or `double` can be used. - - **boolean**: @ref boolean_t / `bool` can be used. - - **binary**: @ref binary_t / `std::vector` may be used, - unfortunately because string literals cannot be distinguished from binary - character arrays by the C++ type system, all types compatible with `const - char*` will be directed to the string constructor instead. This is both - for backwards compatibility, and due to the fact that a binary type is not - a standard JSON type. - - See the examples below. - - @tparam CompatibleType a type such that: - - @a CompatibleType is not derived from `std::istream`, - - @a CompatibleType is not @ref basic_json (to avoid hijacking copy/move - constructors), - - @a CompatibleType is not a different @ref basic_json type (i.e. with different template arguments) - - @a CompatibleType is not a @ref basic_json nested type (e.g., - @ref json_pointer, @ref iterator, etc ...) - - @ref @ref json_serializer has a - `to_json(basic_json_t&, CompatibleType&&)` method - - @tparam U = `uncvref_t` - - @param[in] val the value to be forwarded to the respective constructor - - @complexity Usually linear in the size of the passed @a val, also - depending on the implementation of the called `to_json()` - method. - - @exceptionsafety Depends on the called constructor. For types directly - supported by the library (i.e., all types for which no `to_json()` function - was provided), strong guarantee holds: if an exception is thrown, there are - no changes to any JSON value. - - @liveexample{The following code shows the constructor with several - compatible types.,basic_json__CompatibleType} - - @since version 2.1.0 - */ - template < typename CompatibleType, - typename U = detail::uncvref_t, - detail::enable_if_t < - !detail::is_basic_json::value && detail::is_compatible_type::value, int > = 0 > - basic_json(CompatibleType && val) noexcept(noexcept( - JSONSerializer::to_json(std::declval(), - std::forward(val)))) - { - JSONSerializer::to_json(*this, std::forward(val)); - assert_invariant(); - } - - /*! - @brief create a JSON value from an existing one - - This is a constructor for existing @ref basic_json types. - It does not hijack copy/move constructors, since the parameter has different - template arguments than the current ones. - - The constructor tries to convert the internal @ref m_value of the parameter. - - @tparam BasicJsonType a type such that: - - @a BasicJsonType is a @ref basic_json type. - - @a BasicJsonType has different template arguments than @ref basic_json_t. - - @param[in] val the @ref basic_json value to be converted. - - @complexity Usually linear in the size of the passed @a val, also - depending on the implementation of the called `to_json()` - method. - - @exceptionsafety Depends on the called constructor. For types directly - supported by the library (i.e., all types for which no `to_json()` function - was provided), strong guarantee holds: if an exception is thrown, there are - no changes to any JSON value. - - @since version 3.2.0 - */ - template < typename BasicJsonType, - detail::enable_if_t < - detail::is_basic_json::value&& !std::is_same::value, int > = 0 > - basic_json(const BasicJsonType& val) - { - using other_boolean_t = typename BasicJsonType::boolean_t; - using other_number_float_t = typename BasicJsonType::number_float_t; - using other_number_integer_t = typename BasicJsonType::number_integer_t; - using other_number_unsigned_t = typename BasicJsonType::number_unsigned_t; - using other_string_t = typename BasicJsonType::string_t; - using other_object_t = typename BasicJsonType::object_t; - using other_array_t = typename BasicJsonType::array_t; - using other_binary_t = typename BasicJsonType::binary_t; - - switch (val.type()) - { - case value_t::boolean: - JSONSerializer::to_json(*this, val.template get()); - break; - case value_t::number_float: - JSONSerializer::to_json(*this, val.template get()); - break; - case value_t::number_integer: - JSONSerializer::to_json(*this, val.template get()); - break; - case value_t::number_unsigned: - JSONSerializer::to_json(*this, val.template get()); - break; - case value_t::string: - JSONSerializer::to_json(*this, val.template get_ref()); - break; - case value_t::object: - JSONSerializer::to_json(*this, val.template get_ref()); - break; - case value_t::array: - JSONSerializer::to_json(*this, val.template get_ref()); - break; - case value_t::binary: - JSONSerializer::to_json(*this, val.template get_ref()); - break; - case value_t::null: - *this = nullptr; - break; - case value_t::discarded: - m_type = value_t::discarded; - break; - default: // LCOV_EXCL_LINE - JSON_ASSERT(false); // LCOV_EXCL_LINE - } - assert_invariant(); - } - - /*! - @brief create a container (array or object) from an initializer list - - Creates a JSON value of type array or object from the passed initializer - list @a init. In case @a type_deduction is `true` (default), the type of - the JSON value to be created is deducted from the initializer list @a init - according to the following rules: - - 1. If the list is empty, an empty JSON object value `{}` is created. - 2. If the list consists of pairs whose first element is a string, a JSON - object value is created where the first elements of the pairs are - treated as keys and the second elements are as values. - 3. In all other cases, an array is created. - - The rules aim to create the best fit between a C++ initializer list and - JSON values. The rationale is as follows: - - 1. The empty initializer list is written as `{}` which is exactly an empty - JSON object. - 2. C++ has no way of describing mapped types other than to list a list of - pairs. As JSON requires that keys must be of type string, rule 2 is the - weakest constraint one can pose on initializer lists to interpret them - as an object. - 3. In all other cases, the initializer list could not be interpreted as - JSON object type, so interpreting it as JSON array type is safe. - - With the rules described above, the following JSON values cannot be - expressed by an initializer list: - - - the empty array (`[]`): use @ref array(initializer_list_t) - with an empty initializer list in this case - - arrays whose elements satisfy rule 2: use @ref - array(initializer_list_t) with the same initializer list - in this case - - @note When used without parentheses around an empty initializer list, @ref - basic_json() is called instead of this function, yielding the JSON null - value. - - @param[in] init initializer list with JSON values - - @param[in] type_deduction internal parameter; when set to `true`, the type - of the JSON value is deducted from the initializer list @a init; when set - to `false`, the type provided via @a manual_type is forced. This mode is - used by the functions @ref array(initializer_list_t) and - @ref object(initializer_list_t). - - @param[in] manual_type internal parameter; when @a type_deduction is set - to `false`, the created JSON value will use the provided type (only @ref - value_t::array and @ref value_t::object are valid); when @a type_deduction - is set to `true`, this parameter has no effect - - @throw type_error.301 if @a type_deduction is `false`, @a manual_type is - `value_t::object`, but @a init contains an element which is not a pair - whose first element is a string. In this case, the constructor could not - create an object. If @a type_deduction would have be `true`, an array - would have been created. See @ref object(initializer_list_t) - for an example. - - @complexity Linear in the size of the initializer list @a init. - - @exceptionsafety Strong guarantee: if an exception is thrown, there are no - changes to any JSON value. - - @liveexample{The example below shows how JSON values are created from - initializer lists.,basic_json__list_init_t} - - @sa @ref array(initializer_list_t) -- create a JSON array - value from an initializer list - @sa @ref object(initializer_list_t) -- create a JSON object - value from an initializer list - - @since version 1.0.0 - */ - basic_json(initializer_list_t init, - bool type_deduction = true, - value_t manual_type = value_t::array) - { - // check if each element is an array with two elements whose first - // element is a string - bool is_an_object = std::all_of(init.begin(), init.end(), - [](const detail::json_ref& element_ref) - { - return element_ref->is_array() && element_ref->size() == 2 && (*element_ref)[0].is_string(); - }); - - // adjust type if type deduction is not wanted - if (!type_deduction) - { - // if array is wanted, do not create an object though possible - if (manual_type == value_t::array) - { - is_an_object = false; - } - - // if object is wanted but impossible, throw an exception - if (JSON_HEDLEY_UNLIKELY(manual_type == value_t::object && !is_an_object)) - { - JSON_THROW(type_error::create(301, "cannot create object from initializer list")); - } - } - - if (is_an_object) - { - // the initializer list is a list of pairs -> create object - m_type = value_t::object; - m_value = value_t::object; - - std::for_each(init.begin(), init.end(), [this](const detail::json_ref& element_ref) - { - auto element = element_ref.moved_or_copied(); - m_value.object->emplace( - std::move(*((*element.m_value.array)[0].m_value.string)), - std::move((*element.m_value.array)[1])); - }); - } - else - { - // the initializer list describes an array -> create array - m_type = value_t::array; - m_value.array = create(init.begin(), init.end()); - } - - assert_invariant(); - } - - /*! - @brief explicitly create a binary array (without subtype) - - Creates a JSON binary array value from a given binary container. Binary - values are part of various binary formats, such as CBOR, MessagePack, and - BSON. This constructor is used to create a value for serialization to those - formats. - - @note Note, this function exists because of the difficulty in correctly - specifying the correct template overload in the standard value ctor, as both - JSON arrays and JSON binary arrays are backed with some form of a - `std::vector`. Because JSON binary arrays are a non-standard extension it - was decided that it would be best to prevent automatic initialization of a - binary array type, for backwards compatibility and so it does not happen on - accident. - - @param[in] init container containing bytes to use as binary type - - @return JSON binary array value - - @complexity Linear in the size of @a init. - - @exceptionsafety Strong guarantee: if an exception is thrown, there are no - changes to any JSON value. - - @since version 3.8.0 - */ - JSON_HEDLEY_WARN_UNUSED_RESULT - static basic_json binary(const typename binary_t::container_type& init) - { - auto res = basic_json(); - res.m_type = value_t::binary; - res.m_value = init; - return res; - } - - /*! - @brief explicitly create a binary array (with subtype) - - Creates a JSON binary array value from a given binary container. Binary - values are part of various binary formats, such as CBOR, MessagePack, and - BSON. This constructor is used to create a value for serialization to those - formats. - - @note Note, this function exists because of the difficulty in correctly - specifying the correct template overload in the standard value ctor, as both - JSON arrays and JSON binary arrays are backed with some form of a - `std::vector`. Because JSON binary arrays are a non-standard extension it - was decided that it would be best to prevent automatic initialization of a - binary array type, for backwards compatibility and so it does not happen on - accident. - - @param[in] init container containing bytes to use as binary type - @param[in] subtype subtype to use in MessagePack and BSON - - @return JSON binary array value - - @complexity Linear in the size of @a init. - - @exceptionsafety Strong guarantee: if an exception is thrown, there are no - changes to any JSON value. - - @since version 3.8.0 - */ - JSON_HEDLEY_WARN_UNUSED_RESULT - static basic_json binary(const typename binary_t::container_type& init, std::uint8_t subtype) - { - auto res = basic_json(); - res.m_type = value_t::binary; - res.m_value = binary_t(init, subtype); - return res; - } - - /// @copydoc binary(const typename binary_t::container_type&) - JSON_HEDLEY_WARN_UNUSED_RESULT - static basic_json binary(typename binary_t::container_type&& init) - { - auto res = basic_json(); - res.m_type = value_t::binary; - res.m_value = std::move(init); - return res; - } - - /// @copydoc binary(const typename binary_t::container_type&, std::uint8_t) - JSON_HEDLEY_WARN_UNUSED_RESULT - static basic_json binary(typename binary_t::container_type&& init, std::uint8_t subtype) - { - auto res = basic_json(); - res.m_type = value_t::binary; - res.m_value = binary_t(std::move(init), subtype); - return res; - } - - /*! - @brief explicitly create an array from an initializer list - - Creates a JSON array value from a given initializer list. That is, given a - list of values `a, b, c`, creates the JSON value `[a, b, c]`. If the - initializer list is empty, the empty array `[]` is created. - - @note This function is only needed to express two edge cases that cannot - be realized with the initializer list constructor (@ref - basic_json(initializer_list_t, bool, value_t)). These cases - are: - 1. creating an array whose elements are all pairs whose first element is a - string -- in this case, the initializer list constructor would create an - object, taking the first elements as keys - 2. creating an empty array -- passing the empty initializer list to the - initializer list constructor yields an empty object - - @param[in] init initializer list with JSON values to create an array from - (optional) - - @return JSON array value - - @complexity Linear in the size of @a init. - - @exceptionsafety Strong guarantee: if an exception is thrown, there are no - changes to any JSON value. - - @liveexample{The following code shows an example for the `array` - function.,array} - - @sa @ref basic_json(initializer_list_t, bool, value_t) -- - create a JSON value from an initializer list - @sa @ref object(initializer_list_t) -- create a JSON object - value from an initializer list - - @since version 1.0.0 - */ - JSON_HEDLEY_WARN_UNUSED_RESULT - static basic_json array(initializer_list_t init = {}) - { - return basic_json(init, false, value_t::array); - } - - /*! - @brief explicitly create an object from an initializer list - - Creates a JSON object value from a given initializer list. The initializer - lists elements must be pairs, and their first elements must be strings. If - the initializer list is empty, the empty object `{}` is created. - - @note This function is only added for symmetry reasons. In contrast to the - related function @ref array(initializer_list_t), there are - no cases which can only be expressed by this function. That is, any - initializer list @a init can also be passed to the initializer list - constructor @ref basic_json(initializer_list_t, bool, value_t). - - @param[in] init initializer list to create an object from (optional) - - @return JSON object value - - @throw type_error.301 if @a init is not a list of pairs whose first - elements are strings. In this case, no object can be created. When such a - value is passed to @ref basic_json(initializer_list_t, bool, value_t), - an array would have been created from the passed initializer list @a init. - See example below. - - @complexity Linear in the size of @a init. - - @exceptionsafety Strong guarantee: if an exception is thrown, there are no - changes to any JSON value. - - @liveexample{The following code shows an example for the `object` - function.,object} - - @sa @ref basic_json(initializer_list_t, bool, value_t) -- - create a JSON value from an initializer list - @sa @ref array(initializer_list_t) -- create a JSON array - value from an initializer list - - @since version 1.0.0 - */ - JSON_HEDLEY_WARN_UNUSED_RESULT - static basic_json object(initializer_list_t init = {}) - { - return basic_json(init, false, value_t::object); - } - - /*! - @brief construct an array with count copies of given value - - Constructs a JSON array value by creating @a cnt copies of a passed value. - In case @a cnt is `0`, an empty array is created. - - @param[in] cnt the number of JSON copies of @a val to create - @param[in] val the JSON value to copy - - @post `std::distance(begin(),end()) == cnt` holds. - - @complexity Linear in @a cnt. - - @exceptionsafety Strong guarantee: if an exception is thrown, there are no - changes to any JSON value. - - @liveexample{The following code shows examples for the @ref - basic_json(size_type\, const basic_json&) - constructor.,basic_json__size_type_basic_json} - - @since version 1.0.0 - */ - basic_json(size_type cnt, const basic_json& val) - : m_type(value_t::array) - { - m_value.array = create(cnt, val); - assert_invariant(); - } - - /*! - @brief construct a JSON container given an iterator range - - Constructs the JSON value with the contents of the range `[first, last)`. - The semantics depends on the different types a JSON value can have: - - In case of a null type, invalid_iterator.206 is thrown. - - In case of other primitive types (number, boolean, or string), @a first - must be `begin()` and @a last must be `end()`. In this case, the value is - copied. Otherwise, invalid_iterator.204 is thrown. - - In case of structured types (array, object), the constructor behaves as - similar versions for `std::vector` or `std::map`; that is, a JSON array - or object is constructed from the values in the range. - - @tparam InputIT an input iterator type (@ref iterator or @ref - const_iterator) - - @param[in] first begin of the range to copy from (included) - @param[in] last end of the range to copy from (excluded) - - @pre Iterators @a first and @a last must be initialized. **This - precondition is enforced with an assertion (see warning).** If - assertions are switched off, a violation of this precondition yields - undefined behavior. - - @pre Range `[first, last)` is valid. Usually, this precondition cannot be - checked efficiently. Only certain edge cases are detected; see the - description of the exceptions below. A violation of this precondition - yields undefined behavior. - - @warning A precondition is enforced with a runtime assertion that will - result in calling `std::abort` if this precondition is not met. - Assertions can be disabled by defining `NDEBUG` at compile time. - See https://en.cppreference.com/w/cpp/error/assert for more - information. - - @throw invalid_iterator.201 if iterators @a first and @a last are not - compatible (i.e., do not belong to the same JSON value). In this case, - the range `[first, last)` is undefined. - @throw invalid_iterator.204 if iterators @a first and @a last belong to a - primitive type (number, boolean, or string), but @a first does not point - to the first element any more. In this case, the range `[first, last)` is - undefined. See example code below. - @throw invalid_iterator.206 if iterators @a first and @a last belong to a - null value. In this case, the range `[first, last)` is undefined. - - @complexity Linear in distance between @a first and @a last. - - @exceptionsafety Strong guarantee: if an exception is thrown, there are no - changes to any JSON value. - - @liveexample{The example below shows several ways to create JSON values by - specifying a subrange with iterators.,basic_json__InputIt_InputIt} - - @since version 1.0.0 - */ - template < class InputIT, typename std::enable_if < - std::is_same::value || - std::is_same::value, int >::type = 0 > - basic_json(InputIT first, InputIT last) - { - JSON_ASSERT(first.m_object != nullptr); - JSON_ASSERT(last.m_object != nullptr); - - // make sure iterator fits the current value - if (JSON_HEDLEY_UNLIKELY(first.m_object != last.m_object)) - { - JSON_THROW(invalid_iterator::create(201, "iterators are not compatible")); - } - - // copy type from first iterator - m_type = first.m_object->m_type; - - // check if iterator range is complete for primitive values - switch (m_type) - { - case value_t::boolean: - case value_t::number_float: - case value_t::number_integer: - case value_t::number_unsigned: - case value_t::string: - { - if (JSON_HEDLEY_UNLIKELY(!first.m_it.primitive_iterator.is_begin() - || !last.m_it.primitive_iterator.is_end())) - { - JSON_THROW(invalid_iterator::create(204, "iterators out of range")); - } - break; - } - - default: - break; - } - - switch (m_type) - { - case value_t::number_integer: - { - m_value.number_integer = first.m_object->m_value.number_integer; - break; - } - - case value_t::number_unsigned: - { - m_value.number_unsigned = first.m_object->m_value.number_unsigned; - break; - } - - case value_t::number_float: - { - m_value.number_float = first.m_object->m_value.number_float; - break; - } - - case value_t::boolean: - { - m_value.boolean = first.m_object->m_value.boolean; - break; - } - - case value_t::string: - { - m_value = *first.m_object->m_value.string; - break; - } - - case value_t::object: - { - m_value.object = create(first.m_it.object_iterator, - last.m_it.object_iterator); - break; - } - - case value_t::array: - { - m_value.array = create(first.m_it.array_iterator, - last.m_it.array_iterator); - break; - } - - case value_t::binary: - { - m_value = *first.m_object->m_value.binary; - break; - } - - default: - JSON_THROW(invalid_iterator::create(206, "cannot construct with iterators from " + - std::string(first.m_object->type_name()))); - } - - assert_invariant(); - } - - - /////////////////////////////////////// - // other constructors and destructor // - /////////////////////////////////////// - - template, - std::is_same>::value, int> = 0 > - basic_json(const JsonRef& ref) : basic_json(ref.moved_or_copied()) {} - - /*! - @brief copy constructor - - Creates a copy of a given JSON value. - - @param[in] other the JSON value to copy - - @post `*this == other` - - @complexity Linear in the size of @a other. - - @exceptionsafety Strong guarantee: if an exception is thrown, there are no - changes to any JSON value. - - @requirement This function helps `basic_json` satisfying the - [Container](https://en.cppreference.com/w/cpp/named_req/Container) - requirements: - - The complexity is linear. - - As postcondition, it holds: `other == basic_json(other)`. - - @liveexample{The following code shows an example for the copy - constructor.,basic_json__basic_json} - - @since version 1.0.0 - */ - basic_json(const basic_json& other) - : m_type(other.m_type) - { - // check of passed value is valid - other.assert_invariant(); - - switch (m_type) - { - case value_t::object: - { - m_value = *other.m_value.object; - break; - } - - case value_t::array: - { - m_value = *other.m_value.array; - break; - } - - case value_t::string: - { - m_value = *other.m_value.string; - break; - } - - case value_t::boolean: - { - m_value = other.m_value.boolean; - break; - } - - case value_t::number_integer: - { - m_value = other.m_value.number_integer; - break; - } - - case value_t::number_unsigned: - { - m_value = other.m_value.number_unsigned; - break; - } - - case value_t::number_float: - { - m_value = other.m_value.number_float; - break; - } - - case value_t::binary: - { - m_value = *other.m_value.binary; - break; - } - - default: - break; - } - - assert_invariant(); - } - - /*! - @brief move constructor - - Move constructor. Constructs a JSON value with the contents of the given - value @a other using move semantics. It "steals" the resources from @a - other and leaves it as JSON null value. - - @param[in,out] other value to move to this object - - @post `*this` has the same value as @a other before the call. - @post @a other is a JSON null value. - - @complexity Constant. - - @exceptionsafety No-throw guarantee: this constructor never throws - exceptions. - - @requirement This function helps `basic_json` satisfying the - [MoveConstructible](https://en.cppreference.com/w/cpp/named_req/MoveConstructible) - requirements. - - @liveexample{The code below shows the move constructor explicitly called - via std::move.,basic_json__moveconstructor} - - @since version 1.0.0 - */ - basic_json(basic_json&& other) noexcept - : m_type(std::move(other.m_type)), - m_value(std::move(other.m_value)) - { - // check that passed value is valid - other.assert_invariant(); - - // invalidate payload - other.m_type = value_t::null; - other.m_value = {}; - - assert_invariant(); - } - - /*! - @brief copy assignment - - Copy assignment operator. Copies a JSON value via the "copy and swap" - strategy: It is expressed in terms of the copy constructor, destructor, - and the `swap()` member function. - - @param[in] other value to copy from - - @complexity Linear. - - @requirement This function helps `basic_json` satisfying the - [Container](https://en.cppreference.com/w/cpp/named_req/Container) - requirements: - - The complexity is linear. - - @liveexample{The code below shows and example for the copy assignment. It - creates a copy of value `a` which is then swapped with `b`. Finally\, the - copy of `a` (which is the null value after the swap) is - destroyed.,basic_json__copyassignment} - - @since version 1.0.0 - */ - basic_json& operator=(basic_json other) noexcept ( - std::is_nothrow_move_constructible::value&& - std::is_nothrow_move_assignable::value&& - std::is_nothrow_move_constructible::value&& - std::is_nothrow_move_assignable::value - ) - { - // check that passed value is valid - other.assert_invariant(); - - using std::swap; - swap(m_type, other.m_type); - swap(m_value, other.m_value); - - assert_invariant(); - return *this; - } - - /*! - @brief destructor - - Destroys the JSON value and frees all allocated memory. - - @complexity Linear. - - @requirement This function helps `basic_json` satisfying the - [Container](https://en.cppreference.com/w/cpp/named_req/Container) - requirements: - - The complexity is linear. - - All stored elements are destroyed and all memory is freed. - - @since version 1.0.0 - */ - ~basic_json() noexcept - { - assert_invariant(); - m_value.destroy(m_type); - } - - /// @} - - public: - /////////////////////// - // object inspection // - /////////////////////// - - /// @name object inspection - /// Functions to inspect the type of a JSON value. - /// @{ - - /*! - @brief serialization - - Serialization function for JSON values. The function tries to mimic - Python's `json.dumps()` function, and currently supports its @a indent - and @a ensure_ascii parameters. - - @param[in] indent If indent is nonnegative, then array elements and object - members will be pretty-printed with that indent level. An indent level of - `0` will only insert newlines. `-1` (the default) selects the most compact - representation. - @param[in] indent_char The character to use for indentation if @a indent is - greater than `0`. The default is ` ` (space). - @param[in] ensure_ascii If @a ensure_ascii is true, all non-ASCII characters - in the output are escaped with `\uXXXX` sequences, and the result consists - of ASCII characters only. - @param[in] error_handler how to react on decoding errors; there are three - possible values: `strict` (throws and exception in case a decoding error - occurs; default), `replace` (replace invalid UTF-8 sequences with U+FFFD), - and `ignore` (ignore invalid UTF-8 sequences during serialization; all - bytes are copied to the output unchanged). - - @return string containing the serialization of the JSON value - - @throw type_error.316 if a string stored inside the JSON value is not - UTF-8 encoded and @a error_handler is set to strict - - @note Binary values are serialized as object containing two keys: - - "bytes": an array of bytes as integers - - "subtype": the subtype as integer or "null" if the binary has no subtype - - @complexity Linear. - - @exceptionsafety Strong guarantee: if an exception is thrown, there are no - changes in the JSON value. - - @liveexample{The following example shows the effect of different @a indent\, - @a indent_char\, and @a ensure_ascii parameters to the result of the - serialization.,dump} - - @see https://docs.python.org/2/library/json.html#json.dump - - @since version 1.0.0; indentation character @a indent_char, option - @a ensure_ascii and exceptions added in version 3.0.0; error - handlers added in version 3.4.0; serialization of binary values added - in version 3.8.0. - */ - string_t dump(const int indent = -1, - const char indent_char = ' ', - const bool ensure_ascii = false, - const error_handler_t error_handler = error_handler_t::strict) const - { - string_t result; - serializer s(detail::output_adapter(result), indent_char, error_handler); - - if (indent >= 0) - { - s.dump(*this, true, ensure_ascii, static_cast(indent)); - } - else - { - s.dump(*this, false, ensure_ascii, 0); - } - - return result; - } - - /*! - @brief return the type of the JSON value (explicit) - - Return the type of the JSON value as a value from the @ref value_t - enumeration. - - @return the type of the JSON value - Value type | return value - ------------------------- | ------------------------- - null | value_t::null - boolean | value_t::boolean - string | value_t::string - number (integer) | value_t::number_integer - number (unsigned integer) | value_t::number_unsigned - number (floating-point) | value_t::number_float - object | value_t::object - array | value_t::array - binary | value_t::binary - discarded | value_t::discarded - - @complexity Constant. - - @exceptionsafety No-throw guarantee: this member function never throws - exceptions. - - @liveexample{The following code exemplifies `type()` for all JSON - types.,type} - - @sa @ref operator value_t() -- return the type of the JSON value (implicit) - @sa @ref type_name() -- return the type as string - - @since version 1.0.0 - */ - constexpr value_t type() const noexcept - { - return m_type; - } - - /*! - @brief return whether type is primitive - - This function returns true if and only if the JSON type is primitive - (string, number, boolean, or null). - - @return `true` if type is primitive (string, number, boolean, or null), - `false` otherwise. - - @complexity Constant. - - @exceptionsafety No-throw guarantee: this member function never throws - exceptions. - - @liveexample{The following code exemplifies `is_primitive()` for all JSON - types.,is_primitive} - - @sa @ref is_structured() -- returns whether JSON value is structured - @sa @ref is_null() -- returns whether JSON value is `null` - @sa @ref is_string() -- returns whether JSON value is a string - @sa @ref is_boolean() -- returns whether JSON value is a boolean - @sa @ref is_number() -- returns whether JSON value is a number - @sa @ref is_binary() -- returns whether JSON value is a binary array - - @since version 1.0.0 - */ - constexpr bool is_primitive() const noexcept - { - return is_null() || is_string() || is_boolean() || is_number() || is_binary(); - } - - /*! - @brief return whether type is structured - - This function returns true if and only if the JSON type is structured - (array or object). - - @return `true` if type is structured (array or object), `false` otherwise. - - @complexity Constant. - - @exceptionsafety No-throw guarantee: this member function never throws - exceptions. - - @liveexample{The following code exemplifies `is_structured()` for all JSON - types.,is_structured} - - @sa @ref is_primitive() -- returns whether value is primitive - @sa @ref is_array() -- returns whether value is an array - @sa @ref is_object() -- returns whether value is an object - - @since version 1.0.0 - */ - constexpr bool is_structured() const noexcept - { - return is_array() || is_object(); - } - - /*! - @brief return whether value is null - - This function returns true if and only if the JSON value is null. - - @return `true` if type is null, `false` otherwise. - - @complexity Constant. - - @exceptionsafety No-throw guarantee: this member function never throws - exceptions. - - @liveexample{The following code exemplifies `is_null()` for all JSON - types.,is_null} - - @since version 1.0.0 - */ - constexpr bool is_null() const noexcept - { - return m_type == value_t::null; - } - - /*! - @brief return whether value is a boolean - - This function returns true if and only if the JSON value is a boolean. - - @return `true` if type is boolean, `false` otherwise. - - @complexity Constant. - - @exceptionsafety No-throw guarantee: this member function never throws - exceptions. - - @liveexample{The following code exemplifies `is_boolean()` for all JSON - types.,is_boolean} - - @since version 1.0.0 - */ - constexpr bool is_boolean() const noexcept - { - return m_type == value_t::boolean; - } - - /*! - @brief return whether value is a number - - This function returns true if and only if the JSON value is a number. This - includes both integer (signed and unsigned) and floating-point values. - - @return `true` if type is number (regardless whether integer, unsigned - integer or floating-type), `false` otherwise. - - @complexity Constant. - - @exceptionsafety No-throw guarantee: this member function never throws - exceptions. - - @liveexample{The following code exemplifies `is_number()` for all JSON - types.,is_number} - - @sa @ref is_number_integer() -- check if value is an integer or unsigned - integer number - @sa @ref is_number_unsigned() -- check if value is an unsigned integer - number - @sa @ref is_number_float() -- check if value is a floating-point number - - @since version 1.0.0 - */ - constexpr bool is_number() const noexcept - { - return is_number_integer() || is_number_float(); - } - - /*! - @brief return whether value is an integer number - - This function returns true if and only if the JSON value is a signed or - unsigned integer number. This excludes floating-point values. - - @return `true` if type is an integer or unsigned integer number, `false` - otherwise. - - @complexity Constant. - - @exceptionsafety No-throw guarantee: this member function never throws - exceptions. - - @liveexample{The following code exemplifies `is_number_integer()` for all - JSON types.,is_number_integer} - - @sa @ref is_number() -- check if value is a number - @sa @ref is_number_unsigned() -- check if value is an unsigned integer - number - @sa @ref is_number_float() -- check if value is a floating-point number - - @since version 1.0.0 - */ - constexpr bool is_number_integer() const noexcept - { - return m_type == value_t::number_integer || m_type == value_t::number_unsigned; - } - - /*! - @brief return whether value is an unsigned integer number - - This function returns true if and only if the JSON value is an unsigned - integer number. This excludes floating-point and signed integer values. - - @return `true` if type is an unsigned integer number, `false` otherwise. - - @complexity Constant. - - @exceptionsafety No-throw guarantee: this member function never throws - exceptions. - - @liveexample{The following code exemplifies `is_number_unsigned()` for all - JSON types.,is_number_unsigned} - - @sa @ref is_number() -- check if value is a number - @sa @ref is_number_integer() -- check if value is an integer or unsigned - integer number - @sa @ref is_number_float() -- check if value is a floating-point number - - @since version 2.0.0 - */ - constexpr bool is_number_unsigned() const noexcept - { - return m_type == value_t::number_unsigned; - } - - /*! - @brief return whether value is a floating-point number - - This function returns true if and only if the JSON value is a - floating-point number. This excludes signed and unsigned integer values. - - @return `true` if type is a floating-point number, `false` otherwise. - - @complexity Constant. - - @exceptionsafety No-throw guarantee: this member function never throws - exceptions. - - @liveexample{The following code exemplifies `is_number_float()` for all - JSON types.,is_number_float} - - @sa @ref is_number() -- check if value is number - @sa @ref is_number_integer() -- check if value is an integer number - @sa @ref is_number_unsigned() -- check if value is an unsigned integer - number - - @since version 1.0.0 - */ - constexpr bool is_number_float() const noexcept - { - return m_type == value_t::number_float; - } - - /*! - @brief return whether value is an object - - This function returns true if and only if the JSON value is an object. - - @return `true` if type is object, `false` otherwise. - - @complexity Constant. - - @exceptionsafety No-throw guarantee: this member function never throws - exceptions. - - @liveexample{The following code exemplifies `is_object()` for all JSON - types.,is_object} - - @since version 1.0.0 - */ - constexpr bool is_object() const noexcept - { - return m_type == value_t::object; - } - - /*! - @brief return whether value is an array - - This function returns true if and only if the JSON value is an array. - - @return `true` if type is array, `false` otherwise. - - @complexity Constant. - - @exceptionsafety No-throw guarantee: this member function never throws - exceptions. - - @liveexample{The following code exemplifies `is_array()` for all JSON - types.,is_array} - - @since version 1.0.0 - */ - constexpr bool is_array() const noexcept - { - return m_type == value_t::array; - } - - /*! - @brief return whether value is a string - - This function returns true if and only if the JSON value is a string. - - @return `true` if type is string, `false` otherwise. - - @complexity Constant. - - @exceptionsafety No-throw guarantee: this member function never throws - exceptions. - - @liveexample{The following code exemplifies `is_string()` for all JSON - types.,is_string} - - @since version 1.0.0 - */ - constexpr bool is_string() const noexcept - { - return m_type == value_t::string; - } - - /*! - @brief return whether value is a binary array - - This function returns true if and only if the JSON value is a binary array. - - @return `true` if type is binary array, `false` otherwise. - - @complexity Constant. - - @exceptionsafety No-throw guarantee: this member function never throws - exceptions. - - @liveexample{The following code exemplifies `is_binary()` for all JSON - types.,is_binary} - - @since version 3.8.0 - */ - constexpr bool is_binary() const noexcept - { - return m_type == value_t::binary; - } - - /*! - @brief return whether value is discarded - - This function returns true if and only if the JSON value was discarded - during parsing with a callback function (see @ref parser_callback_t). - - @note This function will always be `false` for JSON values after parsing. - That is, discarded values can only occur during parsing, but will be - removed when inside a structured value or replaced by null in other cases. - - @return `true` if type is discarded, `false` otherwise. - - @complexity Constant. - - @exceptionsafety No-throw guarantee: this member function never throws - exceptions. - - @liveexample{The following code exemplifies `is_discarded()` for all JSON - types.,is_discarded} - - @since version 1.0.0 - */ - constexpr bool is_discarded() const noexcept - { - return m_type == value_t::discarded; - } - - /*! - @brief return the type of the JSON value (implicit) - - Implicitly return the type of the JSON value as a value from the @ref - value_t enumeration. - - @return the type of the JSON value - - @complexity Constant. - - @exceptionsafety No-throw guarantee: this member function never throws - exceptions. - - @liveexample{The following code exemplifies the @ref value_t operator for - all JSON types.,operator__value_t} - - @sa @ref type() -- return the type of the JSON value (explicit) - @sa @ref type_name() -- return the type as string - - @since version 1.0.0 - */ - constexpr operator value_t() const noexcept - { - return m_type; - } - - /// @} - - private: - ////////////////// - // value access // - ////////////////// - - /// get a boolean (explicit) - boolean_t get_impl(boolean_t* /*unused*/) const - { - if (JSON_HEDLEY_LIKELY(is_boolean())) - { - return m_value.boolean; - } - - JSON_THROW(type_error::create(302, "type must be boolean, but is " + std::string(type_name()))); - } - - /// get a pointer to the value (object) - object_t* get_impl_ptr(object_t* /*unused*/) noexcept - { - return is_object() ? m_value.object : nullptr; - } - - /// get a pointer to the value (object) - constexpr const object_t* get_impl_ptr(const object_t* /*unused*/) const noexcept - { - return is_object() ? m_value.object : nullptr; - } - - /// get a pointer to the value (array) - array_t* get_impl_ptr(array_t* /*unused*/) noexcept - { - return is_array() ? m_value.array : nullptr; - } - - /// get a pointer to the value (array) - constexpr const array_t* get_impl_ptr(const array_t* /*unused*/) const noexcept - { - return is_array() ? m_value.array : nullptr; - } - - /// get a pointer to the value (string) - string_t* get_impl_ptr(string_t* /*unused*/) noexcept - { - return is_string() ? m_value.string : nullptr; - } - - /// get a pointer to the value (string) - constexpr const string_t* get_impl_ptr(const string_t* /*unused*/) const noexcept - { - return is_string() ? m_value.string : nullptr; - } - - /// get a pointer to the value (boolean) - boolean_t* get_impl_ptr(boolean_t* /*unused*/) noexcept - { - return is_boolean() ? &m_value.boolean : nullptr; - } - - /// get a pointer to the value (boolean) - constexpr const boolean_t* get_impl_ptr(const boolean_t* /*unused*/) const noexcept - { - return is_boolean() ? &m_value.boolean : nullptr; - } - - /// get a pointer to the value (integer number) - number_integer_t* get_impl_ptr(number_integer_t* /*unused*/) noexcept - { - return is_number_integer() ? &m_value.number_integer : nullptr; - } - - /// get a pointer to the value (integer number) - constexpr const number_integer_t* get_impl_ptr(const number_integer_t* /*unused*/) const noexcept - { - return is_number_integer() ? &m_value.number_integer : nullptr; - } - - /// get a pointer to the value (unsigned number) - number_unsigned_t* get_impl_ptr(number_unsigned_t* /*unused*/) noexcept - { - return is_number_unsigned() ? &m_value.number_unsigned : nullptr; - } - - /// get a pointer to the value (unsigned number) - constexpr const number_unsigned_t* get_impl_ptr(const number_unsigned_t* /*unused*/) const noexcept - { - return is_number_unsigned() ? &m_value.number_unsigned : nullptr; - } - - /// get a pointer to the value (floating-point number) - number_float_t* get_impl_ptr(number_float_t* /*unused*/) noexcept - { - return is_number_float() ? &m_value.number_float : nullptr; - } - - /// get a pointer to the value (floating-point number) - constexpr const number_float_t* get_impl_ptr(const number_float_t* /*unused*/) const noexcept - { - return is_number_float() ? &m_value.number_float : nullptr; - } - - /// get a pointer to the value (binary) - binary_t* get_impl_ptr(binary_t* /*unused*/) noexcept - { - return is_binary() ? m_value.binary : nullptr; - } - - /// get a pointer to the value (binary) - constexpr const binary_t* get_impl_ptr(const binary_t* /*unused*/) const noexcept - { - return is_binary() ? m_value.binary : nullptr; - } - - /*! - @brief helper function to implement get_ref() - - This function helps to implement get_ref() without code duplication for - const and non-const overloads - - @tparam ThisType will be deduced as `basic_json` or `const basic_json` - - @throw type_error.303 if ReferenceType does not match underlying value - type of the current JSON - */ - template - static ReferenceType get_ref_impl(ThisType& obj) - { - // delegate the call to get_ptr<>() - auto ptr = obj.template get_ptr::type>(); - - if (JSON_HEDLEY_LIKELY(ptr != nullptr)) - { - return *ptr; - } - - JSON_THROW(type_error::create(303, "incompatible ReferenceType for get_ref, actual type is " + std::string(obj.type_name()))); - } - - public: - /// @name value access - /// Direct access to the stored value of a JSON value. - /// @{ - - /*! - @brief get special-case overload - - This overloads avoids a lot of template boilerplate, it can be seen as the - identity method - - @tparam BasicJsonType == @ref basic_json - - @return a copy of *this - - @complexity Constant. - - @since version 2.1.0 - */ - template::type, basic_json_t>::value, - int> = 0> - basic_json get() const - { - return *this; - } - - /*! - @brief get special-case overload - - This overloads converts the current @ref basic_json in a different - @ref basic_json type - - @tparam BasicJsonType == @ref basic_json - - @return a copy of *this, converted into @tparam BasicJsonType - - @complexity Depending on the implementation of the called `from_json()` - method. - - @since version 3.2.0 - */ - template < typename BasicJsonType, detail::enable_if_t < - !std::is_same::value&& - detail::is_basic_json::value, int > = 0 > - BasicJsonType get() const - { - return *this; - } - - /*! - @brief get a value (explicit) - - Explicit type conversion between the JSON value and a compatible value - which is [CopyConstructible](https://en.cppreference.com/w/cpp/named_req/CopyConstructible) - and [DefaultConstructible](https://en.cppreference.com/w/cpp/named_req/DefaultConstructible). - The value is converted by calling the @ref json_serializer - `from_json()` method. - - The function is equivalent to executing - @code {.cpp} - ValueType ret; - JSONSerializer::from_json(*this, ret); - return ret; - @endcode - - This overloads is chosen if: - - @a ValueType is not @ref basic_json, - - @ref json_serializer has a `from_json()` method of the form - `void from_json(const basic_json&, ValueType&)`, and - - @ref json_serializer does not have a `from_json()` method of - the form `ValueType from_json(const basic_json&)` - - @tparam ValueTypeCV the provided value type - @tparam ValueType the returned value type - - @return copy of the JSON value, converted to @a ValueType - - @throw what @ref json_serializer `from_json()` method throws - - @liveexample{The example below shows several conversions from JSON values - to other types. There a few things to note: (1) Floating-point numbers can - be converted to integers\, (2) A JSON array can be converted to a standard - `std::vector`\, (3) A JSON object can be converted to C++ - associative containers such as `std::unordered_map`.,get__ValueType_const} - - @since version 2.1.0 - */ - template < typename ValueTypeCV, typename ValueType = detail::uncvref_t, - detail::enable_if_t < - !detail::is_basic_json::value && - detail::has_from_json::value && - !detail::has_non_default_from_json::value, - int > = 0 > - ValueType get() const noexcept(noexcept( - JSONSerializer::from_json(std::declval(), std::declval()))) - { - // we cannot static_assert on ValueTypeCV being non-const, because - // there is support for get(), which is why we - // still need the uncvref - static_assert(!std::is_reference::value, - "get() cannot be used with reference types, you might want to use get_ref()"); - static_assert(std::is_default_constructible::value, - "types must be DefaultConstructible when used with get()"); - - ValueType ret; - JSONSerializer::from_json(*this, ret); - return ret; - } - - /*! - @brief get a value (explicit); special case - - Explicit type conversion between the JSON value and a compatible value - which is **not** [CopyConstructible](https://en.cppreference.com/w/cpp/named_req/CopyConstructible) - and **not** [DefaultConstructible](https://en.cppreference.com/w/cpp/named_req/DefaultConstructible). - The value is converted by calling the @ref json_serializer - `from_json()` method. - - The function is equivalent to executing - @code {.cpp} - return JSONSerializer::from_json(*this); - @endcode - - This overloads is chosen if: - - @a ValueType is not @ref basic_json and - - @ref json_serializer has a `from_json()` method of the form - `ValueType from_json(const basic_json&)` - - @note If @ref json_serializer has both overloads of - `from_json()`, this one is chosen. - - @tparam ValueTypeCV the provided value type - @tparam ValueType the returned value type - - @return copy of the JSON value, converted to @a ValueType - - @throw what @ref json_serializer `from_json()` method throws - - @since version 2.1.0 - */ - template < typename ValueTypeCV, typename ValueType = detail::uncvref_t, - detail::enable_if_t < !std::is_same::value && - detail::has_non_default_from_json::value, - int > = 0 > - ValueType get() const noexcept(noexcept( - JSONSerializer::from_json(std::declval()))) - { - static_assert(!std::is_reference::value, - "get() cannot be used with reference types, you might want to use get_ref()"); - return JSONSerializer::from_json(*this); - } - - /*! - @brief get a value (explicit) - - Explicit type conversion between the JSON value and a compatible value. - The value is filled into the input parameter by calling the @ref json_serializer - `from_json()` method. - - The function is equivalent to executing - @code {.cpp} - ValueType v; - JSONSerializer::from_json(*this, v); - @endcode - - This overloads is chosen if: - - @a ValueType is not @ref basic_json, - - @ref json_serializer has a `from_json()` method of the form - `void from_json(const basic_json&, ValueType&)`, and - - @tparam ValueType the input parameter type. - - @return the input parameter, allowing chaining calls. - - @throw what @ref json_serializer `from_json()` method throws - - @liveexample{The example below shows several conversions from JSON values - to other types. There a few things to note: (1) Floating-point numbers can - be converted to integers\, (2) A JSON array can be converted to a standard - `std::vector`\, (3) A JSON object can be converted to C++ - associative containers such as `std::unordered_map`.,get_to} - - @since version 3.3.0 - */ - template < typename ValueType, - detail::enable_if_t < - !detail::is_basic_json::value&& - detail::has_from_json::value, - int > = 0 > - ValueType & get_to(ValueType& v) const noexcept(noexcept( - JSONSerializer::from_json(std::declval(), v))) - { - JSONSerializer::from_json(*this, v); - return v; - } - - // specialization to allow to call get_to with a basic_json value - // see https://github.com/nlohmann/json/issues/2175 - template::value, - int> = 0> - ValueType & get_to(ValueType& v) const - { - v = *this; - return v; - } - - template < - typename T, std::size_t N, - typename Array = T (&)[N], - detail::enable_if_t < - detail::has_from_json::value, int > = 0 > - Array get_to(T (&v)[N]) const - noexcept(noexcept(JSONSerializer::from_json( - std::declval(), v))) - { - JSONSerializer::from_json(*this, v); - return v; - } - - - /*! - @brief get a pointer value (implicit) - - Implicit pointer access to the internally stored JSON value. No copies are - made. - - @warning Writing data to the pointee of the result yields an undefined - state. - - @tparam PointerType pointer type; must be a pointer to @ref array_t, @ref - object_t, @ref string_t, @ref boolean_t, @ref number_integer_t, - @ref number_unsigned_t, or @ref number_float_t. Enforced by a static - assertion. - - @return pointer to the internally stored JSON value if the requested - pointer type @a PointerType fits to the JSON value; `nullptr` otherwise - - @complexity Constant. - - @liveexample{The example below shows how pointers to internal values of a - JSON value can be requested. Note that no type conversions are made and a - `nullptr` is returned if the value and the requested pointer type does not - match.,get_ptr} - - @since version 1.0.0 - */ - template::value, int>::type = 0> - auto get_ptr() noexcept -> decltype(std::declval().get_impl_ptr(std::declval())) - { - // delegate the call to get_impl_ptr<>() - return get_impl_ptr(static_cast(nullptr)); - } - - /*! - @brief get a pointer value (implicit) - @copydoc get_ptr() - */ - template < typename PointerType, typename std::enable_if < - std::is_pointer::value&& - std::is_const::type>::value, int >::type = 0 > - constexpr auto get_ptr() const noexcept -> decltype(std::declval().get_impl_ptr(std::declval())) - { - // delegate the call to get_impl_ptr<>() const - return get_impl_ptr(static_cast(nullptr)); - } - - /*! - @brief get a pointer value (explicit) - - Explicit pointer access to the internally stored JSON value. No copies are - made. - - @warning The pointer becomes invalid if the underlying JSON object - changes. - - @tparam PointerType pointer type; must be a pointer to @ref array_t, @ref - object_t, @ref string_t, @ref boolean_t, @ref number_integer_t, - @ref number_unsigned_t, or @ref number_float_t. - - @return pointer to the internally stored JSON value if the requested - pointer type @a PointerType fits to the JSON value; `nullptr` otherwise - - @complexity Constant. - - @liveexample{The example below shows how pointers to internal values of a - JSON value can be requested. Note that no type conversions are made and a - `nullptr` is returned if the value and the requested pointer type does not - match.,get__PointerType} - - @sa @ref get_ptr() for explicit pointer-member access - - @since version 1.0.0 - */ - template::value, int>::type = 0> - auto get() noexcept -> decltype(std::declval().template get_ptr()) - { - // delegate the call to get_ptr - return get_ptr(); - } - - /*! - @brief get a pointer value (explicit) - @copydoc get() - */ - template::value, int>::type = 0> - constexpr auto get() const noexcept -> decltype(std::declval().template get_ptr()) - { - // delegate the call to get_ptr - return get_ptr(); - } - - /*! - @brief get a reference value (implicit) - - Implicit reference access to the internally stored JSON value. No copies - are made. - - @warning Writing data to the referee of the result yields an undefined - state. - - @tparam ReferenceType reference type; must be a reference to @ref array_t, - @ref object_t, @ref string_t, @ref boolean_t, @ref number_integer_t, or - @ref number_float_t. Enforced by static assertion. - - @return reference to the internally stored JSON value if the requested - reference type @a ReferenceType fits to the JSON value; throws - type_error.303 otherwise - - @throw type_error.303 in case passed type @a ReferenceType is incompatible - with the stored JSON value; see example below - - @complexity Constant. - - @liveexample{The example shows several calls to `get_ref()`.,get_ref} - - @since version 1.1.0 - */ - template::value, int>::type = 0> - ReferenceType get_ref() - { - // delegate call to get_ref_impl - return get_ref_impl(*this); - } - - /*! - @brief get a reference value (implicit) - @copydoc get_ref() - */ - template < typename ReferenceType, typename std::enable_if < - std::is_reference::value&& - std::is_const::type>::value, int >::type = 0 > - ReferenceType get_ref() const - { - // delegate call to get_ref_impl - return get_ref_impl(*this); - } - - /*! - @brief get a value (implicit) - - Implicit type conversion between the JSON value and a compatible value. - The call is realized by calling @ref get() const. - - @tparam ValueType non-pointer type compatible to the JSON value, for - instance `int` for JSON integer numbers, `bool` for JSON booleans, or - `std::vector` types for JSON arrays. The character type of @ref string_t - as well as an initializer list of this type is excluded to avoid - ambiguities as these types implicitly convert to `std::string`. - - @return copy of the JSON value, converted to type @a ValueType - - @throw type_error.302 in case passed type @a ValueType is incompatible - to the JSON value type (e.g., the JSON value is of type boolean, but a - string is requested); see example below - - @complexity Linear in the size of the JSON value. - - @liveexample{The example below shows several conversions from JSON values - to other types. There a few things to note: (1) Floating-point numbers can - be converted to integers\, (2) A JSON array can be converted to a standard - `std::vector`\, (3) A JSON object can be converted to C++ - associative containers such as `std::unordered_map`.,operator__ValueType} - - @since version 1.0.0 - */ - template < typename ValueType, typename std::enable_if < - !std::is_pointer::value&& - !std::is_same>::value&& - !std::is_same::value&& - !detail::is_basic_json::value - && !std::is_same>::value -#if defined(JSON_HAS_CPP_17) && (defined(__GNUC__) || (defined(_MSC_VER) && _MSC_VER >= 1910 && _MSC_VER <= 1914)) - && !std::is_same::value -#endif - && detail::is_detected::value - , int >::type = 0 > - JSON_EXPLICIT operator ValueType() const - { - // delegate the call to get<>() const - return get(); - } - - /*! - @return reference to the binary value - - @throw type_error.302 if the value is not binary - - @sa @ref is_binary() to check if the value is binary - - @since version 3.8.0 - */ - binary_t& get_binary() - { - if (!is_binary()) - { - JSON_THROW(type_error::create(302, "type must be binary, but is " + std::string(type_name()))); - } - - return *get_ptr(); - } - - /// @copydoc get_binary() - const binary_t& get_binary() const - { - if (!is_binary()) - { - JSON_THROW(type_error::create(302, "type must be binary, but is " + std::string(type_name()))); - } - - return *get_ptr(); - } - - /// @} - - - //////////////////// - // element access // - //////////////////// - - /// @name element access - /// Access to the JSON value. - /// @{ - - /*! - @brief access specified array element with bounds checking - - Returns a reference to the element at specified location @a idx, with - bounds checking. - - @param[in] idx index of the element to access - - @return reference to the element at index @a idx - - @throw type_error.304 if the JSON value is not an array; in this case, - calling `at` with an index makes no sense. See example below. - @throw out_of_range.401 if the index @a idx is out of range of the array; - that is, `idx >= size()`. See example below. - - @exceptionsafety Strong guarantee: if an exception is thrown, there are no - changes in the JSON value. - - @complexity Constant. - - @since version 1.0.0 - - @liveexample{The example below shows how array elements can be read and - written using `at()`. It also demonstrates the different exceptions that - can be thrown.,at__size_type} - */ - reference at(size_type idx) - { - // at only works for arrays - if (JSON_HEDLEY_LIKELY(is_array())) - { - JSON_TRY - { - return m_value.array->at(idx); - } - JSON_CATCH (std::out_of_range&) - { - // create better exception explanation - JSON_THROW(out_of_range::create(401, "array index " + std::to_string(idx) + " is out of range")); - } - } - else - { - JSON_THROW(type_error::create(304, "cannot use at() with " + std::string(type_name()))); - } - } - - /*! - @brief access specified array element with bounds checking - - Returns a const reference to the element at specified location @a idx, - with bounds checking. - - @param[in] idx index of the element to access - - @return const reference to the element at index @a idx - - @throw type_error.304 if the JSON value is not an array; in this case, - calling `at` with an index makes no sense. See example below. - @throw out_of_range.401 if the index @a idx is out of range of the array; - that is, `idx >= size()`. See example below. - - @exceptionsafety Strong guarantee: if an exception is thrown, there are no - changes in the JSON value. - - @complexity Constant. - - @since version 1.0.0 - - @liveexample{The example below shows how array elements can be read using - `at()`. It also demonstrates the different exceptions that can be thrown., - at__size_type_const} - */ - const_reference at(size_type idx) const - { - // at only works for arrays - if (JSON_HEDLEY_LIKELY(is_array())) - { - JSON_TRY - { - return m_value.array->at(idx); - } - JSON_CATCH (std::out_of_range&) - { - // create better exception explanation - JSON_THROW(out_of_range::create(401, "array index " + std::to_string(idx) + " is out of range")); - } - } - else - { - JSON_THROW(type_error::create(304, "cannot use at() with " + std::string(type_name()))); - } - } - - /*! - @brief access specified object element with bounds checking - - Returns a reference to the element at with specified key @a key, with - bounds checking. - - @param[in] key key of the element to access - - @return reference to the element at key @a key - - @throw type_error.304 if the JSON value is not an object; in this case, - calling `at` with a key makes no sense. See example below. - @throw out_of_range.403 if the key @a key is is not stored in the object; - that is, `find(key) == end()`. See example below. - - @exceptionsafety Strong guarantee: if an exception is thrown, there are no - changes in the JSON value. - - @complexity Logarithmic in the size of the container. - - @sa @ref operator[](const typename object_t::key_type&) for unchecked - access by reference - @sa @ref value() for access by value with a default value - - @since version 1.0.0 - - @liveexample{The example below shows how object elements can be read and - written using `at()`. It also demonstrates the different exceptions that - can be thrown.,at__object_t_key_type} - */ - reference at(const typename object_t::key_type& key) - { - // at only works for objects - if (JSON_HEDLEY_LIKELY(is_object())) - { - JSON_TRY - { - return m_value.object->at(key); - } - JSON_CATCH (std::out_of_range&) - { - // create better exception explanation - JSON_THROW(out_of_range::create(403, "key '" + key + "' not found")); - } - } - else - { - JSON_THROW(type_error::create(304, "cannot use at() with " + std::string(type_name()))); - } - } - - /*! - @brief access specified object element with bounds checking - - Returns a const reference to the element at with specified key @a key, - with bounds checking. - - @param[in] key key of the element to access - - @return const reference to the element at key @a key - - @throw type_error.304 if the JSON value is not an object; in this case, - calling `at` with a key makes no sense. See example below. - @throw out_of_range.403 if the key @a key is is not stored in the object; - that is, `find(key) == end()`. See example below. - - @exceptionsafety Strong guarantee: if an exception is thrown, there are no - changes in the JSON value. - - @complexity Logarithmic in the size of the container. - - @sa @ref operator[](const typename object_t::key_type&) for unchecked - access by reference - @sa @ref value() for access by value with a default value - - @since version 1.0.0 - - @liveexample{The example below shows how object elements can be read using - `at()`. It also demonstrates the different exceptions that can be thrown., - at__object_t_key_type_const} - */ - const_reference at(const typename object_t::key_type& key) const - { - // at only works for objects - if (JSON_HEDLEY_LIKELY(is_object())) - { - JSON_TRY - { - return m_value.object->at(key); - } - JSON_CATCH (std::out_of_range&) - { - // create better exception explanation - JSON_THROW(out_of_range::create(403, "key '" + key + "' not found")); - } - } - else - { - JSON_THROW(type_error::create(304, "cannot use at() with " + std::string(type_name()))); - } - } - - /*! - @brief access specified array element - - Returns a reference to the element at specified location @a idx. - - @note If @a idx is beyond the range of the array (i.e., `idx >= size()`), - then the array is silently filled up with `null` values to make `idx` a - valid reference to the last stored element. - - @param[in] idx index of the element to access - - @return reference to the element at index @a idx - - @throw type_error.305 if the JSON value is not an array or null; in that - cases, using the [] operator with an index makes no sense. - - @complexity Constant if @a idx is in the range of the array. Otherwise - linear in `idx - size()`. - - @liveexample{The example below shows how array elements can be read and - written using `[]` operator. Note the addition of `null` - values.,operatorarray__size_type} - - @since version 1.0.0 - */ - reference operator[](size_type idx) - { - // implicitly convert null value to an empty array - if (is_null()) - { - m_type = value_t::array; - m_value.array = create(); - assert_invariant(); - } - - // operator[] only works for arrays - if (JSON_HEDLEY_LIKELY(is_array())) - { - // fill up array with null values if given idx is outside range - if (idx >= m_value.array->size()) - { - m_value.array->insert(m_value.array->end(), - idx - m_value.array->size() + 1, - basic_json()); - } - - return m_value.array->operator[](idx); - } - - JSON_THROW(type_error::create(305, "cannot use operator[] with a numeric argument with " + std::string(type_name()))); - } - - /*! - @brief access specified array element - - Returns a const reference to the element at specified location @a idx. - - @param[in] idx index of the element to access - - @return const reference to the element at index @a idx - - @throw type_error.305 if the JSON value is not an array; in that case, - using the [] operator with an index makes no sense. - - @complexity Constant. - - @liveexample{The example below shows how array elements can be read using - the `[]` operator.,operatorarray__size_type_const} - - @since version 1.0.0 - */ - const_reference operator[](size_type idx) const - { - // const operator[] only works for arrays - if (JSON_HEDLEY_LIKELY(is_array())) - { - return m_value.array->operator[](idx); - } - - JSON_THROW(type_error::create(305, "cannot use operator[] with a numeric argument with " + std::string(type_name()))); - } - - /*! - @brief access specified object element - - Returns a reference to the element at with specified key @a key. - - @note If @a key is not found in the object, then it is silently added to - the object and filled with a `null` value to make `key` a valid reference. - In case the value was `null` before, it is converted to an object. - - @param[in] key key of the element to access - - @return reference to the element at key @a key - - @throw type_error.305 if the JSON value is not an object or null; in that - cases, using the [] operator with a key makes no sense. - - @complexity Logarithmic in the size of the container. - - @liveexample{The example below shows how object elements can be read and - written using the `[]` operator.,operatorarray__key_type} - - @sa @ref at(const typename object_t::key_type&) for access by reference - with range checking - @sa @ref value() for access by value with a default value - - @since version 1.0.0 - */ - reference operator[](const typename object_t::key_type& key) - { - // implicitly convert null value to an empty object - if (is_null()) - { - m_type = value_t::object; - m_value.object = create(); - assert_invariant(); - } - - // operator[] only works for objects - if (JSON_HEDLEY_LIKELY(is_object())) - { - return m_value.object->operator[](key); - } - - JSON_THROW(type_error::create(305, "cannot use operator[] with a string argument with " + std::string(type_name()))); - } - - /*! - @brief read-only access specified object element - - Returns a const reference to the element at with specified key @a key. No - bounds checking is performed. - - @warning If the element with key @a key does not exist, the behavior is - undefined. - - @param[in] key key of the element to access - - @return const reference to the element at key @a key - - @pre The element with key @a key must exist. **This precondition is - enforced with an assertion.** - - @throw type_error.305 if the JSON value is not an object; in that case, - using the [] operator with a key makes no sense. - - @complexity Logarithmic in the size of the container. - - @liveexample{The example below shows how object elements can be read using - the `[]` operator.,operatorarray__key_type_const} - - @sa @ref at(const typename object_t::key_type&) for access by reference - with range checking - @sa @ref value() for access by value with a default value - - @since version 1.0.0 - */ - const_reference operator[](const typename object_t::key_type& key) const - { - // const operator[] only works for objects - if (JSON_HEDLEY_LIKELY(is_object())) - { - JSON_ASSERT(m_value.object->find(key) != m_value.object->end()); - return m_value.object->find(key)->second; - } - - JSON_THROW(type_error::create(305, "cannot use operator[] with a string argument with " + std::string(type_name()))); - } - - /*! - @brief access specified object element - - Returns a reference to the element at with specified key @a key. - - @note If @a key is not found in the object, then it is silently added to - the object and filled with a `null` value to make `key` a valid reference. - In case the value was `null` before, it is converted to an object. - - @param[in] key key of the element to access - - @return reference to the element at key @a key - - @throw type_error.305 if the JSON value is not an object or null; in that - cases, using the [] operator with a key makes no sense. - - @complexity Logarithmic in the size of the container. - - @liveexample{The example below shows how object elements can be read and - written using the `[]` operator.,operatorarray__key_type} - - @sa @ref at(const typename object_t::key_type&) for access by reference - with range checking - @sa @ref value() for access by value with a default value - - @since version 1.1.0 - */ - template - JSON_HEDLEY_NON_NULL(2) - reference operator[](T* key) - { - // implicitly convert null to object - if (is_null()) - { - m_type = value_t::object; - m_value = value_t::object; - assert_invariant(); - } - - // at only works for objects - if (JSON_HEDLEY_LIKELY(is_object())) - { - return m_value.object->operator[](key); - } - - JSON_THROW(type_error::create(305, "cannot use operator[] with a string argument with " + std::string(type_name()))); - } - - /*! - @brief read-only access specified object element - - Returns a const reference to the element at with specified key @a key. No - bounds checking is performed. - - @warning If the element with key @a key does not exist, the behavior is - undefined. - - @param[in] key key of the element to access - - @return const reference to the element at key @a key - - @pre The element with key @a key must exist. **This precondition is - enforced with an assertion.** - - @throw type_error.305 if the JSON value is not an object; in that case, - using the [] operator with a key makes no sense. - - @complexity Logarithmic in the size of the container. - - @liveexample{The example below shows how object elements can be read using - the `[]` operator.,operatorarray__key_type_const} - - @sa @ref at(const typename object_t::key_type&) for access by reference - with range checking - @sa @ref value() for access by value with a default value - - @since version 1.1.0 - */ - template - JSON_HEDLEY_NON_NULL(2) - const_reference operator[](T* key) const - { - // at only works for objects - if (JSON_HEDLEY_LIKELY(is_object())) - { - JSON_ASSERT(m_value.object->find(key) != m_value.object->end()); - return m_value.object->find(key)->second; - } - - JSON_THROW(type_error::create(305, "cannot use operator[] with a string argument with " + std::string(type_name()))); - } - - /*! - @brief access specified object element with default value - - Returns either a copy of an object's element at the specified key @a key - or a given default value if no element with key @a key exists. - - The function is basically equivalent to executing - @code {.cpp} - try { - return at(key); - } catch(out_of_range) { - return default_value; - } - @endcode - - @note Unlike @ref at(const typename object_t::key_type&), this function - does not throw if the given key @a key was not found. - - @note Unlike @ref operator[](const typename object_t::key_type& key), this - function does not implicitly add an element to the position defined by @a - key. This function is furthermore also applicable to const objects. - - @param[in] key key of the element to access - @param[in] default_value the value to return if @a key is not found - - @tparam ValueType type compatible to JSON values, for instance `int` for - JSON integer numbers, `bool` for JSON booleans, or `std::vector` types for - JSON arrays. Note the type of the expected value at @a key and the default - value @a default_value must be compatible. - - @return copy of the element at key @a key or @a default_value if @a key - is not found - - @throw type_error.302 if @a default_value does not match the type of the - value at @a key - @throw type_error.306 if the JSON value is not an object; in that case, - using `value()` with a key makes no sense. - - @complexity Logarithmic in the size of the container. - - @liveexample{The example below shows how object elements can be queried - with a default value.,basic_json__value} - - @sa @ref at(const typename object_t::key_type&) for access by reference - with range checking - @sa @ref operator[](const typename object_t::key_type&) for unchecked - access by reference - - @since version 1.0.0 - */ - // using std::is_convertible in a std::enable_if will fail when using explicit conversions - template < class ValueType, typename std::enable_if < - detail::is_getable::value - && !std::is_same::value, int >::type = 0 > - ValueType value(const typename object_t::key_type& key, const ValueType& default_value) const - { - // at only works for objects - if (JSON_HEDLEY_LIKELY(is_object())) - { - // if key is found, return value and given default value otherwise - const auto it = find(key); - if (it != end()) - { - return it->template get(); - } - - return default_value; - } - - JSON_THROW(type_error::create(306, "cannot use value() with " + std::string(type_name()))); - } - - /*! - @brief overload for a default value of type const char* - @copydoc basic_json::value(const typename object_t::key_type&, const ValueType&) const - */ - string_t value(const typename object_t::key_type& key, const char* default_value) const - { - return value(key, string_t(default_value)); - } - - /*! - @brief access specified object element via JSON Pointer with default value - - Returns either a copy of an object's element at the specified key @a key - or a given default value if no element with key @a key exists. - - The function is basically equivalent to executing - @code {.cpp} - try { - return at(ptr); - } catch(out_of_range) { - return default_value; - } - @endcode - - @note Unlike @ref at(const json_pointer&), this function does not throw - if the given key @a key was not found. - - @param[in] ptr a JSON pointer to the element to access - @param[in] default_value the value to return if @a ptr found no value - - @tparam ValueType type compatible to JSON values, for instance `int` for - JSON integer numbers, `bool` for JSON booleans, or `std::vector` types for - JSON arrays. Note the type of the expected value at @a key and the default - value @a default_value must be compatible. - - @return copy of the element at key @a key or @a default_value if @a key - is not found - - @throw type_error.302 if @a default_value does not match the type of the - value at @a ptr - @throw type_error.306 if the JSON value is not an object; in that case, - using `value()` with a key makes no sense. - - @complexity Logarithmic in the size of the container. - - @liveexample{The example below shows how object elements can be queried - with a default value.,basic_json__value_ptr} - - @sa @ref operator[](const json_pointer&) for unchecked access by reference - - @since version 2.0.2 - */ - template::value, int>::type = 0> - ValueType value(const json_pointer& ptr, const ValueType& default_value) const - { - // at only works for objects - if (JSON_HEDLEY_LIKELY(is_object())) - { - // if pointer resolves a value, return it or use default value - JSON_TRY - { - return ptr.get_checked(this).template get(); - } - JSON_INTERNAL_CATCH (out_of_range&) - { - return default_value; - } - } - - JSON_THROW(type_error::create(306, "cannot use value() with " + std::string(type_name()))); - } - - /*! - @brief overload for a default value of type const char* - @copydoc basic_json::value(const json_pointer&, ValueType) const - */ - JSON_HEDLEY_NON_NULL(3) - string_t value(const json_pointer& ptr, const char* default_value) const - { - return value(ptr, string_t(default_value)); - } - - /*! - @brief access the first element - - Returns a reference to the first element in the container. For a JSON - container `c`, the expression `c.front()` is equivalent to `*c.begin()`. - - @return In case of a structured type (array or object), a reference to the - first element is returned. In case of number, string, boolean, or binary - values, a reference to the value is returned. - - @complexity Constant. - - @pre The JSON value must not be `null` (would throw `std::out_of_range`) - or an empty array or object (undefined behavior, **guarded by - assertions**). - @post The JSON value remains unchanged. - - @throw invalid_iterator.214 when called on `null` value - - @liveexample{The following code shows an example for `front()`.,front} - - @sa @ref back() -- access the last element - - @since version 1.0.0 - */ - reference front() - { - return *begin(); - } - - /*! - @copydoc basic_json::front() - */ - const_reference front() const - { - return *cbegin(); - } - - /*! - @brief access the last element - - Returns a reference to the last element in the container. For a JSON - container `c`, the expression `c.back()` is equivalent to - @code {.cpp} - auto tmp = c.end(); - --tmp; - return *tmp; - @endcode - - @return In case of a structured type (array or object), a reference to the - last element is returned. In case of number, string, boolean, or binary - values, a reference to the value is returned. - - @complexity Constant. - - @pre The JSON value must not be `null` (would throw `std::out_of_range`) - or an empty array or object (undefined behavior, **guarded by - assertions**). - @post The JSON value remains unchanged. - - @throw invalid_iterator.214 when called on a `null` value. See example - below. - - @liveexample{The following code shows an example for `back()`.,back} - - @sa @ref front() -- access the first element - - @since version 1.0.0 - */ - reference back() - { - auto tmp = end(); - --tmp; - return *tmp; - } - - /*! - @copydoc basic_json::back() - */ - const_reference back() const - { - auto tmp = cend(); - --tmp; - return *tmp; - } - - /*! - @brief remove element given an iterator - - Removes the element specified by iterator @a pos. The iterator @a pos must - be valid and dereferenceable. Thus the `end()` iterator (which is valid, - but is not dereferenceable) cannot be used as a value for @a pos. - - If called on a primitive type other than `null`, the resulting JSON value - will be `null`. - - @param[in] pos iterator to the element to remove - @return Iterator following the last removed element. If the iterator @a - pos refers to the last element, the `end()` iterator is returned. - - @tparam IteratorType an @ref iterator or @ref const_iterator - - @post Invalidates iterators and references at or after the point of the - erase, including the `end()` iterator. - - @throw type_error.307 if called on a `null` value; example: `"cannot use - erase() with null"` - @throw invalid_iterator.202 if called on an iterator which does not belong - to the current JSON value; example: `"iterator does not fit current - value"` - @throw invalid_iterator.205 if called on a primitive type with invalid - iterator (i.e., any iterator which is not `begin()`); example: `"iterator - out of range"` - - @complexity The complexity depends on the type: - - objects: amortized constant - - arrays: linear in distance between @a pos and the end of the container - - strings and binary: linear in the length of the member - - other types: constant - - @liveexample{The example shows the result of `erase()` for different JSON - types.,erase__IteratorType} - - @sa @ref erase(IteratorType, IteratorType) -- removes the elements in - the given range - @sa @ref erase(const typename object_t::key_type&) -- removes the element - from an object at the given key - @sa @ref erase(const size_type) -- removes the element from an array at - the given index - - @since version 1.0.0 - */ - template < class IteratorType, typename std::enable_if < - std::is_same::value || - std::is_same::value, int >::type - = 0 > - IteratorType erase(IteratorType pos) - { - // make sure iterator fits the current value - if (JSON_HEDLEY_UNLIKELY(this != pos.m_object)) - { - JSON_THROW(invalid_iterator::create(202, "iterator does not fit current value")); - } - - IteratorType result = end(); - - switch (m_type) - { - case value_t::boolean: - case value_t::number_float: - case value_t::number_integer: - case value_t::number_unsigned: - case value_t::string: - case value_t::binary: - { - if (JSON_HEDLEY_UNLIKELY(!pos.m_it.primitive_iterator.is_begin())) - { - JSON_THROW(invalid_iterator::create(205, "iterator out of range")); - } - - if (is_string()) - { - AllocatorType alloc; - std::allocator_traits::destroy(alloc, m_value.string); - std::allocator_traits::deallocate(alloc, m_value.string, 1); - m_value.string = nullptr; - } - else if (is_binary()) - { - AllocatorType alloc; - std::allocator_traits::destroy(alloc, m_value.binary); - std::allocator_traits::deallocate(alloc, m_value.binary, 1); - m_value.binary = nullptr; - } - - m_type = value_t::null; - assert_invariant(); - break; - } - - case value_t::object: - { - result.m_it.object_iterator = m_value.object->erase(pos.m_it.object_iterator); - break; - } - - case value_t::array: - { - result.m_it.array_iterator = m_value.array->erase(pos.m_it.array_iterator); - break; - } - - default: - JSON_THROW(type_error::create(307, "cannot use erase() with " + std::string(type_name()))); - } - - return result; - } - - /*! - @brief remove elements given an iterator range - - Removes the element specified by the range `[first; last)`. The iterator - @a first does not need to be dereferenceable if `first == last`: erasing - an empty range is a no-op. - - If called on a primitive type other than `null`, the resulting JSON value - will be `null`. - - @param[in] first iterator to the beginning of the range to remove - @param[in] last iterator past the end of the range to remove - @return Iterator following the last removed element. If the iterator @a - second refers to the last element, the `end()` iterator is returned. - - @tparam IteratorType an @ref iterator or @ref const_iterator - - @post Invalidates iterators and references at or after the point of the - erase, including the `end()` iterator. - - @throw type_error.307 if called on a `null` value; example: `"cannot use - erase() with null"` - @throw invalid_iterator.203 if called on iterators which does not belong - to the current JSON value; example: `"iterators do not fit current value"` - @throw invalid_iterator.204 if called on a primitive type with invalid - iterators (i.e., if `first != begin()` and `last != end()`); example: - `"iterators out of range"` - - @complexity The complexity depends on the type: - - objects: `log(size()) + std::distance(first, last)` - - arrays: linear in the distance between @a first and @a last, plus linear - in the distance between @a last and end of the container - - strings and binary: linear in the length of the member - - other types: constant - - @liveexample{The example shows the result of `erase()` for different JSON - types.,erase__IteratorType_IteratorType} - - @sa @ref erase(IteratorType) -- removes the element at a given position - @sa @ref erase(const typename object_t::key_type&) -- removes the element - from an object at the given key - @sa @ref erase(const size_type) -- removes the element from an array at - the given index - - @since version 1.0.0 - */ - template < class IteratorType, typename std::enable_if < - std::is_same::value || - std::is_same::value, int >::type - = 0 > - IteratorType erase(IteratorType first, IteratorType last) - { - // make sure iterator fits the current value - if (JSON_HEDLEY_UNLIKELY(this != first.m_object || this != last.m_object)) - { - JSON_THROW(invalid_iterator::create(203, "iterators do not fit current value")); - } - - IteratorType result = end(); - - switch (m_type) - { - case value_t::boolean: - case value_t::number_float: - case value_t::number_integer: - case value_t::number_unsigned: - case value_t::string: - case value_t::binary: - { - if (JSON_HEDLEY_LIKELY(!first.m_it.primitive_iterator.is_begin() - || !last.m_it.primitive_iterator.is_end())) - { - JSON_THROW(invalid_iterator::create(204, "iterators out of range")); - } - - if (is_string()) - { - AllocatorType alloc; - std::allocator_traits::destroy(alloc, m_value.string); - std::allocator_traits::deallocate(alloc, m_value.string, 1); - m_value.string = nullptr; - } - else if (is_binary()) - { - AllocatorType alloc; - std::allocator_traits::destroy(alloc, m_value.binary); - std::allocator_traits::deallocate(alloc, m_value.binary, 1); - m_value.binary = nullptr; - } - - m_type = value_t::null; - assert_invariant(); - break; - } - - case value_t::object: - { - result.m_it.object_iterator = m_value.object->erase(first.m_it.object_iterator, - last.m_it.object_iterator); - break; - } - - case value_t::array: - { - result.m_it.array_iterator = m_value.array->erase(first.m_it.array_iterator, - last.m_it.array_iterator); - break; - } - - default: - JSON_THROW(type_error::create(307, "cannot use erase() with " + std::string(type_name()))); - } - - return result; - } - - /*! - @brief remove element from a JSON object given a key - - Removes elements from a JSON object with the key value @a key. - - @param[in] key value of the elements to remove - - @return Number of elements removed. If @a ObjectType is the default - `std::map` type, the return value will always be `0` (@a key was not - found) or `1` (@a key was found). - - @post References and iterators to the erased elements are invalidated. - Other references and iterators are not affected. - - @throw type_error.307 when called on a type other than JSON object; - example: `"cannot use erase() with null"` - - @complexity `log(size()) + count(key)` - - @liveexample{The example shows the effect of `erase()`.,erase__key_type} - - @sa @ref erase(IteratorType) -- removes the element at a given position - @sa @ref erase(IteratorType, IteratorType) -- removes the elements in - the given range - @sa @ref erase(const size_type) -- removes the element from an array at - the given index - - @since version 1.0.0 - */ - size_type erase(const typename object_t::key_type& key) - { - // this erase only works for objects - if (JSON_HEDLEY_LIKELY(is_object())) - { - return m_value.object->erase(key); - } - - JSON_THROW(type_error::create(307, "cannot use erase() with " + std::string(type_name()))); - } - - /*! - @brief remove element from a JSON array given an index - - Removes element from a JSON array at the index @a idx. - - @param[in] idx index of the element to remove - - @throw type_error.307 when called on a type other than JSON object; - example: `"cannot use erase() with null"` - @throw out_of_range.401 when `idx >= size()`; example: `"array index 17 - is out of range"` - - @complexity Linear in distance between @a idx and the end of the container. - - @liveexample{The example shows the effect of `erase()`.,erase__size_type} - - @sa @ref erase(IteratorType) -- removes the element at a given position - @sa @ref erase(IteratorType, IteratorType) -- removes the elements in - the given range - @sa @ref erase(const typename object_t::key_type&) -- removes the element - from an object at the given key - - @since version 1.0.0 - */ - void erase(const size_type idx) - { - // this erase only works for arrays - if (JSON_HEDLEY_LIKELY(is_array())) - { - if (JSON_HEDLEY_UNLIKELY(idx >= size())) - { - JSON_THROW(out_of_range::create(401, "array index " + std::to_string(idx) + " is out of range")); - } - - m_value.array->erase(m_value.array->begin() + static_cast(idx)); - } - else - { - JSON_THROW(type_error::create(307, "cannot use erase() with " + std::string(type_name()))); - } - } - - /// @} - - - //////////// - // lookup // - //////////// - - /// @name lookup - /// @{ - - /*! - @brief find an element in a JSON object - - Finds an element in a JSON object with key equivalent to @a key. If the - element is not found or the JSON value is not an object, end() is - returned. - - @note This method always returns @ref end() when executed on a JSON type - that is not an object. - - @param[in] key key value of the element to search for. - - @return Iterator to an element with key equivalent to @a key. If no such - element is found or the JSON value is not an object, past-the-end (see - @ref end()) iterator is returned. - - @complexity Logarithmic in the size of the JSON object. - - @liveexample{The example shows how `find()` is used.,find__key_type} - - @sa @ref contains(KeyT&&) const -- checks whether a key exists - - @since version 1.0.0 - */ - template - iterator find(KeyT&& key) - { - auto result = end(); - - if (is_object()) - { - result.m_it.object_iterator = m_value.object->find(std::forward(key)); - } - - return result; - } - - /*! - @brief find an element in a JSON object - @copydoc find(KeyT&&) - */ - template - const_iterator find(KeyT&& key) const - { - auto result = cend(); - - if (is_object()) - { - result.m_it.object_iterator = m_value.object->find(std::forward(key)); - } - - return result; - } - - /*! - @brief returns the number of occurrences of a key in a JSON object - - Returns the number of elements with key @a key. If ObjectType is the - default `std::map` type, the return value will always be `0` (@a key was - not found) or `1` (@a key was found). - - @note This method always returns `0` when executed on a JSON type that is - not an object. - - @param[in] key key value of the element to count - - @return Number of elements with key @a key. If the JSON value is not an - object, the return value will be `0`. - - @complexity Logarithmic in the size of the JSON object. - - @liveexample{The example shows how `count()` is used.,count} - - @since version 1.0.0 - */ - template - size_type count(KeyT&& key) const - { - // return 0 for all nonobject types - return is_object() ? m_value.object->count(std::forward(key)) : 0; - } - - /*! - @brief check the existence of an element in a JSON object - - Check whether an element exists in a JSON object with key equivalent to - @a key. If the element is not found or the JSON value is not an object, - false is returned. - - @note This method always returns false when executed on a JSON type - that is not an object. - - @param[in] key key value to check its existence. - - @return true if an element with specified @a key exists. If no such - element with such key is found or the JSON value is not an object, - false is returned. - - @complexity Logarithmic in the size of the JSON object. - - @liveexample{The following code shows an example for `contains()`.,contains} - - @sa @ref find(KeyT&&) -- returns an iterator to an object element - @sa @ref contains(const json_pointer&) const -- checks the existence for a JSON pointer - - @since version 3.6.0 - */ - template < typename KeyT, typename std::enable_if < - !std::is_same::type, json_pointer>::value, int >::type = 0 > - bool contains(KeyT && key) const - { - return is_object() && m_value.object->find(std::forward(key)) != m_value.object->end(); - } - - /*! - @brief check the existence of an element in a JSON object given a JSON pointer - - Check whether the given JSON pointer @a ptr can be resolved in the current - JSON value. - - @note This method can be executed on any JSON value type. - - @param[in] ptr JSON pointer to check its existence. - - @return true if the JSON pointer can be resolved to a stored value, false - otherwise. - - @post If `j.contains(ptr)` returns true, it is safe to call `j[ptr]`. - - @throw parse_error.106 if an array index begins with '0' - @throw parse_error.109 if an array index was not a number - - @complexity Logarithmic in the size of the JSON object. - - @liveexample{The following code shows an example for `contains()`.,contains_json_pointer} - - @sa @ref contains(KeyT &&) const -- checks the existence of a key - - @since version 3.7.0 - */ - bool contains(const json_pointer& ptr) const - { - return ptr.contains(this); - } - - /// @} - - - /////////////// - // iterators // - /////////////// - - /// @name iterators - /// @{ - - /*! - @brief returns an iterator to the first element - - Returns an iterator to the first element. - - @image html range-begin-end.svg "Illustration from cppreference.com" - - @return iterator to the first element - - @complexity Constant. - - @requirement This function helps `basic_json` satisfying the - [Container](https://en.cppreference.com/w/cpp/named_req/Container) - requirements: - - The complexity is constant. - - @liveexample{The following code shows an example for `begin()`.,begin} - - @sa @ref cbegin() -- returns a const iterator to the beginning - @sa @ref end() -- returns an iterator to the end - @sa @ref cend() -- returns a const iterator to the end - - @since version 1.0.0 - */ - iterator begin() noexcept - { - iterator result(this); - result.set_begin(); - return result; - } - - /*! - @copydoc basic_json::cbegin() - */ - const_iterator begin() const noexcept - { - return cbegin(); - } - - /*! - @brief returns a const iterator to the first element - - Returns a const iterator to the first element. - - @image html range-begin-end.svg "Illustration from cppreference.com" - - @return const iterator to the first element - - @complexity Constant. - - @requirement This function helps `basic_json` satisfying the - [Container](https://en.cppreference.com/w/cpp/named_req/Container) - requirements: - - The complexity is constant. - - Has the semantics of `const_cast(*this).begin()`. - - @liveexample{The following code shows an example for `cbegin()`.,cbegin} - - @sa @ref begin() -- returns an iterator to the beginning - @sa @ref end() -- returns an iterator to the end - @sa @ref cend() -- returns a const iterator to the end - - @since version 1.0.0 - */ - const_iterator cbegin() const noexcept - { - const_iterator result(this); - result.set_begin(); - return result; - } - - /*! - @brief returns an iterator to one past the last element - - Returns an iterator to one past the last element. - - @image html range-begin-end.svg "Illustration from cppreference.com" - - @return iterator one past the last element - - @complexity Constant. - - @requirement This function helps `basic_json` satisfying the - [Container](https://en.cppreference.com/w/cpp/named_req/Container) - requirements: - - The complexity is constant. - - @liveexample{The following code shows an example for `end()`.,end} - - @sa @ref cend() -- returns a const iterator to the end - @sa @ref begin() -- returns an iterator to the beginning - @sa @ref cbegin() -- returns a const iterator to the beginning - - @since version 1.0.0 - */ - iterator end() noexcept - { - iterator result(this); - result.set_end(); - return result; - } - - /*! - @copydoc basic_json::cend() - */ - const_iterator end() const noexcept - { - return cend(); - } - - /*! - @brief returns a const iterator to one past the last element - - Returns a const iterator to one past the last element. - - @image html range-begin-end.svg "Illustration from cppreference.com" - - @return const iterator one past the last element - - @complexity Constant. - - @requirement This function helps `basic_json` satisfying the - [Container](https://en.cppreference.com/w/cpp/named_req/Container) - requirements: - - The complexity is constant. - - Has the semantics of `const_cast(*this).end()`. - - @liveexample{The following code shows an example for `cend()`.,cend} - - @sa @ref end() -- returns an iterator to the end - @sa @ref begin() -- returns an iterator to the beginning - @sa @ref cbegin() -- returns a const iterator to the beginning - - @since version 1.0.0 - */ - const_iterator cend() const noexcept - { - const_iterator result(this); - result.set_end(); - return result; - } - - /*! - @brief returns an iterator to the reverse-beginning - - Returns an iterator to the reverse-beginning; that is, the last element. - - @image html range-rbegin-rend.svg "Illustration from cppreference.com" - - @complexity Constant. - - @requirement This function helps `basic_json` satisfying the - [ReversibleContainer](https://en.cppreference.com/w/cpp/named_req/ReversibleContainer) - requirements: - - The complexity is constant. - - Has the semantics of `reverse_iterator(end())`. - - @liveexample{The following code shows an example for `rbegin()`.,rbegin} - - @sa @ref crbegin() -- returns a const reverse iterator to the beginning - @sa @ref rend() -- returns a reverse iterator to the end - @sa @ref crend() -- returns a const reverse iterator to the end - - @since version 1.0.0 - */ - reverse_iterator rbegin() noexcept - { - return reverse_iterator(end()); - } - - /*! - @copydoc basic_json::crbegin() - */ - const_reverse_iterator rbegin() const noexcept - { - return crbegin(); - } - - /*! - @brief returns an iterator to the reverse-end - - Returns an iterator to the reverse-end; that is, one before the first - element. - - @image html range-rbegin-rend.svg "Illustration from cppreference.com" - - @complexity Constant. - - @requirement This function helps `basic_json` satisfying the - [ReversibleContainer](https://en.cppreference.com/w/cpp/named_req/ReversibleContainer) - requirements: - - The complexity is constant. - - Has the semantics of `reverse_iterator(begin())`. - - @liveexample{The following code shows an example for `rend()`.,rend} - - @sa @ref crend() -- returns a const reverse iterator to the end - @sa @ref rbegin() -- returns a reverse iterator to the beginning - @sa @ref crbegin() -- returns a const reverse iterator to the beginning - - @since version 1.0.0 - */ - reverse_iterator rend() noexcept - { - return reverse_iterator(begin()); - } - - /*! - @copydoc basic_json::crend() - */ - const_reverse_iterator rend() const noexcept - { - return crend(); - } - - /*! - @brief returns a const reverse iterator to the last element - - Returns a const iterator to the reverse-beginning; that is, the last - element. - - @image html range-rbegin-rend.svg "Illustration from cppreference.com" - - @complexity Constant. - - @requirement This function helps `basic_json` satisfying the - [ReversibleContainer](https://en.cppreference.com/w/cpp/named_req/ReversibleContainer) - requirements: - - The complexity is constant. - - Has the semantics of `const_cast(*this).rbegin()`. - - @liveexample{The following code shows an example for `crbegin()`.,crbegin} - - @sa @ref rbegin() -- returns a reverse iterator to the beginning - @sa @ref rend() -- returns a reverse iterator to the end - @sa @ref crend() -- returns a const reverse iterator to the end - - @since version 1.0.0 - */ - const_reverse_iterator crbegin() const noexcept - { - return const_reverse_iterator(cend()); - } - - /*! - @brief returns a const reverse iterator to one before the first - - Returns a const reverse iterator to the reverse-end; that is, one before - the first element. - - @image html range-rbegin-rend.svg "Illustration from cppreference.com" - - @complexity Constant. - - @requirement This function helps `basic_json` satisfying the - [ReversibleContainer](https://en.cppreference.com/w/cpp/named_req/ReversibleContainer) - requirements: - - The complexity is constant. - - Has the semantics of `const_cast(*this).rend()`. - - @liveexample{The following code shows an example for `crend()`.,crend} - - @sa @ref rend() -- returns a reverse iterator to the end - @sa @ref rbegin() -- returns a reverse iterator to the beginning - @sa @ref crbegin() -- returns a const reverse iterator to the beginning - - @since version 1.0.0 - */ - const_reverse_iterator crend() const noexcept - { - return const_reverse_iterator(cbegin()); - } - - public: - /*! - @brief wrapper to access iterator member functions in range-based for - - This function allows to access @ref iterator::key() and @ref - iterator::value() during range-based for loops. In these loops, a - reference to the JSON values is returned, so there is no access to the - underlying iterator. - - For loop without iterator_wrapper: - - @code{cpp} - for (auto it = j_object.begin(); it != j_object.end(); ++it) - { - std::cout << "key: " << it.key() << ", value:" << it.value() << '\n'; - } - @endcode - - Range-based for loop without iterator proxy: - - @code{cpp} - for (auto it : j_object) - { - // "it" is of type json::reference and has no key() member - std::cout << "value: " << it << '\n'; - } - @endcode - - Range-based for loop with iterator proxy: - - @code{cpp} - for (auto it : json::iterator_wrapper(j_object)) - { - std::cout << "key: " << it.key() << ", value:" << it.value() << '\n'; - } - @endcode - - @note When iterating over an array, `key()` will return the index of the - element as string (see example). - - @param[in] ref reference to a JSON value - @return iteration proxy object wrapping @a ref with an interface to use in - range-based for loops - - @liveexample{The following code shows how the wrapper is used,iterator_wrapper} - - @exceptionsafety Strong guarantee: if an exception is thrown, there are no - changes in the JSON value. - - @complexity Constant. - - @note The name of this function is not yet final and may change in the - future. - - @deprecated This stream operator is deprecated and will be removed in - future 4.0.0 of the library. Please use @ref items() instead; - that is, replace `json::iterator_wrapper(j)` with `j.items()`. - */ - JSON_HEDLEY_DEPRECATED_FOR(3.1.0, items()) - static iteration_proxy iterator_wrapper(reference ref) noexcept - { - return ref.items(); - } - - /*! - @copydoc iterator_wrapper(reference) - */ - JSON_HEDLEY_DEPRECATED_FOR(3.1.0, items()) - static iteration_proxy iterator_wrapper(const_reference ref) noexcept - { - return ref.items(); - } - - /*! - @brief helper to access iterator member functions in range-based for - - This function allows to access @ref iterator::key() and @ref - iterator::value() during range-based for loops. In these loops, a - reference to the JSON values is returned, so there is no access to the - underlying iterator. - - For loop without `items()` function: - - @code{cpp} - for (auto it = j_object.begin(); it != j_object.end(); ++it) - { - std::cout << "key: " << it.key() << ", value:" << it.value() << '\n'; - } - @endcode - - Range-based for loop without `items()` function: - - @code{cpp} - for (auto it : j_object) - { - // "it" is of type json::reference and has no key() member - std::cout << "value: " << it << '\n'; - } - @endcode - - Range-based for loop with `items()` function: - - @code{cpp} - for (auto& el : j_object.items()) - { - std::cout << "key: " << el.key() << ", value:" << el.value() << '\n'; - } - @endcode - - The `items()` function also allows to use - [structured bindings](https://en.cppreference.com/w/cpp/language/structured_binding) - (C++17): - - @code{cpp} - for (auto& [key, val] : j_object.items()) - { - std::cout << "key: " << key << ", value:" << val << '\n'; - } - @endcode - - @note When iterating over an array, `key()` will return the index of the - element as string (see example). For primitive types (e.g., numbers), - `key()` returns an empty string. - - @warning Using `items()` on temporary objects is dangerous. Make sure the - object's lifetime exeeds the iteration. See - for more - information. - - @return iteration proxy object wrapping @a ref with an interface to use in - range-based for loops - - @liveexample{The following code shows how the function is used.,items} - - @exceptionsafety Strong guarantee: if an exception is thrown, there are no - changes in the JSON value. - - @complexity Constant. - - @since version 3.1.0, structured bindings support since 3.5.0. - */ - iteration_proxy items() noexcept - { - return iteration_proxy(*this); - } - - /*! - @copydoc items() - */ - iteration_proxy items() const noexcept - { - return iteration_proxy(*this); - } - - /// @} - - - ////////////// - // capacity // - ////////////// - - /// @name capacity - /// @{ - - /*! - @brief checks whether the container is empty. - - Checks if a JSON value has no elements (i.e. whether its @ref size is `0`). - - @return The return value depends on the different types and is - defined as follows: - Value type | return value - ----------- | ------------- - null | `true` - boolean | `false` - string | `false` - number | `false` - binary | `false` - object | result of function `object_t::empty()` - array | result of function `array_t::empty()` - - @liveexample{The following code uses `empty()` to check if a JSON - object contains any elements.,empty} - - @complexity Constant, as long as @ref array_t and @ref object_t satisfy - the Container concept; that is, their `empty()` functions have constant - complexity. - - @iterators No changes. - - @exceptionsafety No-throw guarantee: this function never throws exceptions. - - @note This function does not return whether a string stored as JSON value - is empty - it returns whether the JSON container itself is empty which is - false in the case of a string. - - @requirement This function helps `basic_json` satisfying the - [Container](https://en.cppreference.com/w/cpp/named_req/Container) - requirements: - - The complexity is constant. - - Has the semantics of `begin() == end()`. - - @sa @ref size() -- returns the number of elements - - @since version 1.0.0 - */ - bool empty() const noexcept - { - switch (m_type) - { - case value_t::null: - { - // null values are empty - return true; - } - - case value_t::array: - { - // delegate call to array_t::empty() - return m_value.array->empty(); - } - - case value_t::object: - { - // delegate call to object_t::empty() - return m_value.object->empty(); - } - - default: - { - // all other types are nonempty - return false; - } - } - } - - /*! - @brief returns the number of elements - - Returns the number of elements in a JSON value. - - @return The return value depends on the different types and is - defined as follows: - Value type | return value - ----------- | ------------- - null | `0` - boolean | `1` - string | `1` - number | `1` - binary | `1` - object | result of function object_t::size() - array | result of function array_t::size() - - @liveexample{The following code calls `size()` on the different value - types.,size} - - @complexity Constant, as long as @ref array_t and @ref object_t satisfy - the Container concept; that is, their size() functions have constant - complexity. - - @iterators No changes. - - @exceptionsafety No-throw guarantee: this function never throws exceptions. - - @note This function does not return the length of a string stored as JSON - value - it returns the number of elements in the JSON value which is 1 in - the case of a string. - - @requirement This function helps `basic_json` satisfying the - [Container](https://en.cppreference.com/w/cpp/named_req/Container) - requirements: - - The complexity is constant. - - Has the semantics of `std::distance(begin(), end())`. - - @sa @ref empty() -- checks whether the container is empty - @sa @ref max_size() -- returns the maximal number of elements - - @since version 1.0.0 - */ - size_type size() const noexcept - { - switch (m_type) - { - case value_t::null: - { - // null values are empty - return 0; - } - - case value_t::array: - { - // delegate call to array_t::size() - return m_value.array->size(); - } - - case value_t::object: - { - // delegate call to object_t::size() - return m_value.object->size(); - } - - default: - { - // all other types have size 1 - return 1; - } - } - } - - /*! - @brief returns the maximum possible number of elements - - Returns the maximum number of elements a JSON value is able to hold due to - system or library implementation limitations, i.e. `std::distance(begin(), - end())` for the JSON value. - - @return The return value depends on the different types and is - defined as follows: - Value type | return value - ----------- | ------------- - null | `0` (same as `size()`) - boolean | `1` (same as `size()`) - string | `1` (same as `size()`) - number | `1` (same as `size()`) - binary | `1` (same as `size()`) - object | result of function `object_t::max_size()` - array | result of function `array_t::max_size()` - - @liveexample{The following code calls `max_size()` on the different value - types. Note the output is implementation specific.,max_size} - - @complexity Constant, as long as @ref array_t and @ref object_t satisfy - the Container concept; that is, their `max_size()` functions have constant - complexity. - - @iterators No changes. - - @exceptionsafety No-throw guarantee: this function never throws exceptions. - - @requirement This function helps `basic_json` satisfying the - [Container](https://en.cppreference.com/w/cpp/named_req/Container) - requirements: - - The complexity is constant. - - Has the semantics of returning `b.size()` where `b` is the largest - possible JSON value. - - @sa @ref size() -- returns the number of elements - - @since version 1.0.0 - */ - size_type max_size() const noexcept - { - switch (m_type) - { - case value_t::array: - { - // delegate call to array_t::max_size() - return m_value.array->max_size(); - } - - case value_t::object: - { - // delegate call to object_t::max_size() - return m_value.object->max_size(); - } - - default: - { - // all other types have max_size() == size() - return size(); - } - } - } - - /// @} - - - /////////////// - // modifiers // - /////////////// - - /// @name modifiers - /// @{ - - /*! - @brief clears the contents - - Clears the content of a JSON value and resets it to the default value as - if @ref basic_json(value_t) would have been called with the current value - type from @ref type(): - - Value type | initial value - ----------- | ------------- - null | `null` - boolean | `false` - string | `""` - number | `0` - binary | An empty byte vector - object | `{}` - array | `[]` - - @post Has the same effect as calling - @code {.cpp} - *this = basic_json(type()); - @endcode - - @liveexample{The example below shows the effect of `clear()` to different - JSON types.,clear} - - @complexity Linear in the size of the JSON value. - - @iterators All iterators, pointers and references related to this container - are invalidated. - - @exceptionsafety No-throw guarantee: this function never throws exceptions. - - @sa @ref basic_json(value_t) -- constructor that creates an object with the - same value than calling `clear()` - - @since version 1.0.0 - */ - void clear() noexcept - { - switch (m_type) - { - case value_t::number_integer: - { - m_value.number_integer = 0; - break; - } - - case value_t::number_unsigned: - { - m_value.number_unsigned = 0; - break; - } - - case value_t::number_float: - { - m_value.number_float = 0.0; - break; - } - - case value_t::boolean: - { - m_value.boolean = false; - break; - } - - case value_t::string: - { - m_value.string->clear(); - break; - } - - case value_t::binary: - { - m_value.binary->clear(); - break; - } - - case value_t::array: - { - m_value.array->clear(); - break; - } - - case value_t::object: - { - m_value.object->clear(); - break; - } - - default: - break; - } - } - - /*! - @brief add an object to an array - - Appends the given element @a val to the end of the JSON value. If the - function is called on a JSON null value, an empty array is created before - appending @a val. - - @param[in] val the value to add to the JSON array - - @throw type_error.308 when called on a type other than JSON array or - null; example: `"cannot use push_back() with number"` - - @complexity Amortized constant. - - @liveexample{The example shows how `push_back()` and `+=` can be used to - add elements to a JSON array. Note how the `null` value was silently - converted to a JSON array.,push_back} - - @since version 1.0.0 - */ - void push_back(basic_json&& val) - { - // push_back only works for null objects or arrays - if (JSON_HEDLEY_UNLIKELY(!(is_null() || is_array()))) - { - JSON_THROW(type_error::create(308, "cannot use push_back() with " + std::string(type_name()))); - } - - // transform null object into an array - if (is_null()) - { - m_type = value_t::array; - m_value = value_t::array; - assert_invariant(); - } - - // add element to array (move semantics) - m_value.array->push_back(std::move(val)); - // if val is moved from, basic_json move constructor marks it null so we do not call the destructor - } - - /*! - @brief add an object to an array - @copydoc push_back(basic_json&&) - */ - reference operator+=(basic_json&& val) - { - push_back(std::move(val)); - return *this; - } - - /*! - @brief add an object to an array - @copydoc push_back(basic_json&&) - */ - void push_back(const basic_json& val) - { - // push_back only works for null objects or arrays - if (JSON_HEDLEY_UNLIKELY(!(is_null() || is_array()))) - { - JSON_THROW(type_error::create(308, "cannot use push_back() with " + std::string(type_name()))); - } - - // transform null object into an array - if (is_null()) - { - m_type = value_t::array; - m_value = value_t::array; - assert_invariant(); - } - - // add element to array - m_value.array->push_back(val); - } - - /*! - @brief add an object to an array - @copydoc push_back(basic_json&&) - */ - reference operator+=(const basic_json& val) - { - push_back(val); - return *this; - } - - /*! - @brief add an object to an object - - Inserts the given element @a val to the JSON object. If the function is - called on a JSON null value, an empty object is created before inserting - @a val. - - @param[in] val the value to add to the JSON object - - @throw type_error.308 when called on a type other than JSON object or - null; example: `"cannot use push_back() with number"` - - @complexity Logarithmic in the size of the container, O(log(`size()`)). - - @liveexample{The example shows how `push_back()` and `+=` can be used to - add elements to a JSON object. Note how the `null` value was silently - converted to a JSON object.,push_back__object_t__value} - - @since version 1.0.0 - */ - void push_back(const typename object_t::value_type& val) - { - // push_back only works for null objects or objects - if (JSON_HEDLEY_UNLIKELY(!(is_null() || is_object()))) - { - JSON_THROW(type_error::create(308, "cannot use push_back() with " + std::string(type_name()))); - } - - // transform null object into an object - if (is_null()) - { - m_type = value_t::object; - m_value = value_t::object; - assert_invariant(); - } - - // add element to array - m_value.object->insert(val); - } - - /*! - @brief add an object to an object - @copydoc push_back(const typename object_t::value_type&) - */ - reference operator+=(const typename object_t::value_type& val) - { - push_back(val); - return *this; - } - - /*! - @brief add an object to an object - - This function allows to use `push_back` with an initializer list. In case - - 1. the current value is an object, - 2. the initializer list @a init contains only two elements, and - 3. the first element of @a init is a string, - - @a init is converted into an object element and added using - @ref push_back(const typename object_t::value_type&). Otherwise, @a init - is converted to a JSON value and added using @ref push_back(basic_json&&). - - @param[in] init an initializer list - - @complexity Linear in the size of the initializer list @a init. - - @note This function is required to resolve an ambiguous overload error, - because pairs like `{"key", "value"}` can be both interpreted as - `object_t::value_type` or `std::initializer_list`, see - https://github.com/nlohmann/json/issues/235 for more information. - - @liveexample{The example shows how initializer lists are treated as - objects when possible.,push_back__initializer_list} - */ - void push_back(initializer_list_t init) - { - if (is_object() && init.size() == 2 && (*init.begin())->is_string()) - { - basic_json&& key = init.begin()->moved_or_copied(); - push_back(typename object_t::value_type( - std::move(key.get_ref()), (init.begin() + 1)->moved_or_copied())); - } - else - { - push_back(basic_json(init)); - } - } - - /*! - @brief add an object to an object - @copydoc push_back(initializer_list_t) - */ - reference operator+=(initializer_list_t init) - { - push_back(init); - return *this; - } - - /*! - @brief add an object to an array - - Creates a JSON value from the passed parameters @a args to the end of the - JSON value. If the function is called on a JSON null value, an empty array - is created before appending the value created from @a args. - - @param[in] args arguments to forward to a constructor of @ref basic_json - @tparam Args compatible types to create a @ref basic_json object - - @return reference to the inserted element - - @throw type_error.311 when called on a type other than JSON array or - null; example: `"cannot use emplace_back() with number"` - - @complexity Amortized constant. - - @liveexample{The example shows how `push_back()` can be used to add - elements to a JSON array. Note how the `null` value was silently converted - to a JSON array.,emplace_back} - - @since version 2.0.8, returns reference since 3.7.0 - */ - template - reference emplace_back(Args&& ... args) - { - // emplace_back only works for null objects or arrays - if (JSON_HEDLEY_UNLIKELY(!(is_null() || is_array()))) - { - JSON_THROW(type_error::create(311, "cannot use emplace_back() with " + std::string(type_name()))); - } - - // transform null object into an array - if (is_null()) - { - m_type = value_t::array; - m_value = value_t::array; - assert_invariant(); - } - - // add element to array (perfect forwarding) -#ifdef JSON_HAS_CPP_17 - return m_value.array->emplace_back(std::forward(args)...); -#else - m_value.array->emplace_back(std::forward(args)...); - return m_value.array->back(); -#endif - } - - /*! - @brief add an object to an object if key does not exist - - Inserts a new element into a JSON object constructed in-place with the - given @a args if there is no element with the key in the container. If the - function is called on a JSON null value, an empty object is created before - appending the value created from @a args. - - @param[in] args arguments to forward to a constructor of @ref basic_json - @tparam Args compatible types to create a @ref basic_json object - - @return a pair consisting of an iterator to the inserted element, or the - already-existing element if no insertion happened, and a bool - denoting whether the insertion took place. - - @throw type_error.311 when called on a type other than JSON object or - null; example: `"cannot use emplace() with number"` - - @complexity Logarithmic in the size of the container, O(log(`size()`)). - - @liveexample{The example shows how `emplace()` can be used to add elements - to a JSON object. Note how the `null` value was silently converted to a - JSON object. Further note how no value is added if there was already one - value stored with the same key.,emplace} - - @since version 2.0.8 - */ - template - std::pair emplace(Args&& ... args) - { - // emplace only works for null objects or arrays - if (JSON_HEDLEY_UNLIKELY(!(is_null() || is_object()))) - { - JSON_THROW(type_error::create(311, "cannot use emplace() with " + std::string(type_name()))); - } - - // transform null object into an object - if (is_null()) - { - m_type = value_t::object; - m_value = value_t::object; - assert_invariant(); - } - - // add element to array (perfect forwarding) - auto res = m_value.object->emplace(std::forward(args)...); - // create result iterator and set iterator to the result of emplace - auto it = begin(); - it.m_it.object_iterator = res.first; - - // return pair of iterator and boolean - return {it, res.second}; - } - - /// Helper for insertion of an iterator - /// @note: This uses std::distance to support GCC 4.8, - /// see https://github.com/nlohmann/json/pull/1257 - template - iterator insert_iterator(const_iterator pos, Args&& ... args) - { - iterator result(this); - JSON_ASSERT(m_value.array != nullptr); - - auto insert_pos = std::distance(m_value.array->begin(), pos.m_it.array_iterator); - m_value.array->insert(pos.m_it.array_iterator, std::forward(args)...); - result.m_it.array_iterator = m_value.array->begin() + insert_pos; - - // This could have been written as: - // result.m_it.array_iterator = m_value.array->insert(pos.m_it.array_iterator, cnt, val); - // but the return value of insert is missing in GCC 4.8, so it is written this way instead. - - return result; - } - - /*! - @brief inserts element - - Inserts element @a val before iterator @a pos. - - @param[in] pos iterator before which the content will be inserted; may be - the end() iterator - @param[in] val element to insert - @return iterator pointing to the inserted @a val. - - @throw type_error.309 if called on JSON values other than arrays; - example: `"cannot use insert() with string"` - @throw invalid_iterator.202 if @a pos is not an iterator of *this; - example: `"iterator does not fit current value"` - - @complexity Constant plus linear in the distance between @a pos and end of - the container. - - @liveexample{The example shows how `insert()` is used.,insert} - - @since version 1.0.0 - */ - iterator insert(const_iterator pos, const basic_json& val) - { - // insert only works for arrays - if (JSON_HEDLEY_LIKELY(is_array())) - { - // check if iterator pos fits to this JSON value - if (JSON_HEDLEY_UNLIKELY(pos.m_object != this)) - { - JSON_THROW(invalid_iterator::create(202, "iterator does not fit current value")); - } - - // insert to array and return iterator - return insert_iterator(pos, val); - } - - JSON_THROW(type_error::create(309, "cannot use insert() with " + std::string(type_name()))); - } - - /*! - @brief inserts element - @copydoc insert(const_iterator, const basic_json&) - */ - iterator insert(const_iterator pos, basic_json&& val) - { - return insert(pos, val); - } - - /*! - @brief inserts elements - - Inserts @a cnt copies of @a val before iterator @a pos. - - @param[in] pos iterator before which the content will be inserted; may be - the end() iterator - @param[in] cnt number of copies of @a val to insert - @param[in] val element to insert - @return iterator pointing to the first element inserted, or @a pos if - `cnt==0` - - @throw type_error.309 if called on JSON values other than arrays; example: - `"cannot use insert() with string"` - @throw invalid_iterator.202 if @a pos is not an iterator of *this; - example: `"iterator does not fit current value"` - - @complexity Linear in @a cnt plus linear in the distance between @a pos - and end of the container. - - @liveexample{The example shows how `insert()` is used.,insert__count} - - @since version 1.0.0 - */ - iterator insert(const_iterator pos, size_type cnt, const basic_json& val) - { - // insert only works for arrays - if (JSON_HEDLEY_LIKELY(is_array())) - { - // check if iterator pos fits to this JSON value - if (JSON_HEDLEY_UNLIKELY(pos.m_object != this)) - { - JSON_THROW(invalid_iterator::create(202, "iterator does not fit current value")); - } - - // insert to array and return iterator - return insert_iterator(pos, cnt, val); - } - - JSON_THROW(type_error::create(309, "cannot use insert() with " + std::string(type_name()))); - } - - /*! - @brief inserts elements - - Inserts elements from range `[first, last)` before iterator @a pos. - - @param[in] pos iterator before which the content will be inserted; may be - the end() iterator - @param[in] first begin of the range of elements to insert - @param[in] last end of the range of elements to insert - - @throw type_error.309 if called on JSON values other than arrays; example: - `"cannot use insert() with string"` - @throw invalid_iterator.202 if @a pos is not an iterator of *this; - example: `"iterator does not fit current value"` - @throw invalid_iterator.210 if @a first and @a last do not belong to the - same JSON value; example: `"iterators do not fit"` - @throw invalid_iterator.211 if @a first or @a last are iterators into - container for which insert is called; example: `"passed iterators may not - belong to container"` - - @return iterator pointing to the first element inserted, or @a pos if - `first==last` - - @complexity Linear in `std::distance(first, last)` plus linear in the - distance between @a pos and end of the container. - - @liveexample{The example shows how `insert()` is used.,insert__range} - - @since version 1.0.0 - */ - iterator insert(const_iterator pos, const_iterator first, const_iterator last) - { - // insert only works for arrays - if (JSON_HEDLEY_UNLIKELY(!is_array())) - { - JSON_THROW(type_error::create(309, "cannot use insert() with " + std::string(type_name()))); - } - - // check if iterator pos fits to this JSON value - if (JSON_HEDLEY_UNLIKELY(pos.m_object != this)) - { - JSON_THROW(invalid_iterator::create(202, "iterator does not fit current value")); - } - - // check if range iterators belong to the same JSON object - if (JSON_HEDLEY_UNLIKELY(first.m_object != last.m_object)) - { - JSON_THROW(invalid_iterator::create(210, "iterators do not fit")); - } - - if (JSON_HEDLEY_UNLIKELY(first.m_object == this)) - { - JSON_THROW(invalid_iterator::create(211, "passed iterators may not belong to container")); - } - - // insert to array and return iterator - return insert_iterator(pos, first.m_it.array_iterator, last.m_it.array_iterator); - } - - /*! - @brief inserts elements - - Inserts elements from initializer list @a ilist before iterator @a pos. - - @param[in] pos iterator before which the content will be inserted; may be - the end() iterator - @param[in] ilist initializer list to insert the values from - - @throw type_error.309 if called on JSON values other than arrays; example: - `"cannot use insert() with string"` - @throw invalid_iterator.202 if @a pos is not an iterator of *this; - example: `"iterator does not fit current value"` - - @return iterator pointing to the first element inserted, or @a pos if - `ilist` is empty - - @complexity Linear in `ilist.size()` plus linear in the distance between - @a pos and end of the container. - - @liveexample{The example shows how `insert()` is used.,insert__ilist} - - @since version 1.0.0 - */ - iterator insert(const_iterator pos, initializer_list_t ilist) - { - // insert only works for arrays - if (JSON_HEDLEY_UNLIKELY(!is_array())) - { - JSON_THROW(type_error::create(309, "cannot use insert() with " + std::string(type_name()))); - } - - // check if iterator pos fits to this JSON value - if (JSON_HEDLEY_UNLIKELY(pos.m_object != this)) - { - JSON_THROW(invalid_iterator::create(202, "iterator does not fit current value")); - } - - // insert to array and return iterator - return insert_iterator(pos, ilist.begin(), ilist.end()); - } - - /*! - @brief inserts elements - - Inserts elements from range `[first, last)`. - - @param[in] first begin of the range of elements to insert - @param[in] last end of the range of elements to insert - - @throw type_error.309 if called on JSON values other than objects; example: - `"cannot use insert() with string"` - @throw invalid_iterator.202 if iterator @a first or @a last does does not - point to an object; example: `"iterators first and last must point to - objects"` - @throw invalid_iterator.210 if @a first and @a last do not belong to the - same JSON value; example: `"iterators do not fit"` - - @complexity Logarithmic: `O(N*log(size() + N))`, where `N` is the number - of elements to insert. - - @liveexample{The example shows how `insert()` is used.,insert__range_object} - - @since version 3.0.0 - */ - void insert(const_iterator first, const_iterator last) - { - // insert only works for objects - if (JSON_HEDLEY_UNLIKELY(!is_object())) - { - JSON_THROW(type_error::create(309, "cannot use insert() with " + std::string(type_name()))); - } - - // check if range iterators belong to the same JSON object - if (JSON_HEDLEY_UNLIKELY(first.m_object != last.m_object)) - { - JSON_THROW(invalid_iterator::create(210, "iterators do not fit")); - } - - // passed iterators must belong to objects - if (JSON_HEDLEY_UNLIKELY(!first.m_object->is_object())) - { - JSON_THROW(invalid_iterator::create(202, "iterators first and last must point to objects")); - } - - m_value.object->insert(first.m_it.object_iterator, last.m_it.object_iterator); - } - - /*! - @brief updates a JSON object from another object, overwriting existing keys - - Inserts all values from JSON object @a j and overwrites existing keys. - - @param[in] j JSON object to read values from - - @throw type_error.312 if called on JSON values other than objects; example: - `"cannot use update() with string"` - - @complexity O(N*log(size() + N)), where N is the number of elements to - insert. - - @liveexample{The example shows how `update()` is used.,update} - - @sa https://docs.python.org/3.6/library/stdtypes.html#dict.update - - @since version 3.0.0 - */ - void update(const_reference j) - { - // implicitly convert null value to an empty object - if (is_null()) - { - m_type = value_t::object; - m_value.object = create(); - assert_invariant(); - } - - if (JSON_HEDLEY_UNLIKELY(!is_object())) - { - JSON_THROW(type_error::create(312, "cannot use update() with " + std::string(type_name()))); - } - if (JSON_HEDLEY_UNLIKELY(!j.is_object())) - { - JSON_THROW(type_error::create(312, "cannot use update() with " + std::string(j.type_name()))); - } - - for (auto it = j.cbegin(); it != j.cend(); ++it) - { - m_value.object->operator[](it.key()) = it.value(); - } - } - - /*! - @brief updates a JSON object from another object, overwriting existing keys - - Inserts all values from from range `[first, last)` and overwrites existing - keys. - - @param[in] first begin of the range of elements to insert - @param[in] last end of the range of elements to insert - - @throw type_error.312 if called on JSON values other than objects; example: - `"cannot use update() with string"` - @throw invalid_iterator.202 if iterator @a first or @a last does does not - point to an object; example: `"iterators first and last must point to - objects"` - @throw invalid_iterator.210 if @a first and @a last do not belong to the - same JSON value; example: `"iterators do not fit"` - - @complexity O(N*log(size() + N)), where N is the number of elements to - insert. - - @liveexample{The example shows how `update()` is used__range.,update} - - @sa https://docs.python.org/3.6/library/stdtypes.html#dict.update - - @since version 3.0.0 - */ - void update(const_iterator first, const_iterator last) - { - // implicitly convert null value to an empty object - if (is_null()) - { - m_type = value_t::object; - m_value.object = create(); - assert_invariant(); - } - - if (JSON_HEDLEY_UNLIKELY(!is_object())) - { - JSON_THROW(type_error::create(312, "cannot use update() with " + std::string(type_name()))); - } - - // check if range iterators belong to the same JSON object - if (JSON_HEDLEY_UNLIKELY(first.m_object != last.m_object)) - { - JSON_THROW(invalid_iterator::create(210, "iterators do not fit")); - } - - // passed iterators must belong to objects - if (JSON_HEDLEY_UNLIKELY(!first.m_object->is_object() - || !last.m_object->is_object())) - { - JSON_THROW(invalid_iterator::create(202, "iterators first and last must point to objects")); - } - - for (auto it = first; it != last; ++it) - { - m_value.object->operator[](it.key()) = it.value(); - } - } - - /*! - @brief exchanges the values - - Exchanges the contents of the JSON value with those of @a other. Does not - invoke any move, copy, or swap operations on individual elements. All - iterators and references remain valid. The past-the-end iterator is - invalidated. - - @param[in,out] other JSON value to exchange the contents with - - @complexity Constant. - - @liveexample{The example below shows how JSON values can be swapped with - `swap()`.,swap__reference} - - @since version 1.0.0 - */ - void swap(reference other) noexcept ( - std::is_nothrow_move_constructible::value&& - std::is_nothrow_move_assignable::value&& - std::is_nothrow_move_constructible::value&& - std::is_nothrow_move_assignable::value - ) - { - std::swap(m_type, other.m_type); - std::swap(m_value, other.m_value); - assert_invariant(); - } - - /*! - @brief exchanges the values - - Exchanges the contents of the JSON value from @a left with those of @a right. Does not - invoke any move, copy, or swap operations on individual elements. All - iterators and references remain valid. The past-the-end iterator is - invalidated. implemented as a friend function callable via ADL. - - @param[in,out] left JSON value to exchange the contents with - @param[in,out] right JSON value to exchange the contents with - - @complexity Constant. - - @liveexample{The example below shows how JSON values can be swapped with - `swap()`.,swap__reference} - - @since version 1.0.0 - */ - friend void swap(reference left, reference right) noexcept ( - std::is_nothrow_move_constructible::value&& - std::is_nothrow_move_assignable::value&& - std::is_nothrow_move_constructible::value&& - std::is_nothrow_move_assignable::value - ) - { - left.swap(right); - } - - /*! - @brief exchanges the values - - Exchanges the contents of a JSON array with those of @a other. Does not - invoke any move, copy, or swap operations on individual elements. All - iterators and references remain valid. The past-the-end iterator is - invalidated. - - @param[in,out] other array to exchange the contents with - - @throw type_error.310 when JSON value is not an array; example: `"cannot - use swap() with string"` - - @complexity Constant. - - @liveexample{The example below shows how arrays can be swapped with - `swap()`.,swap__array_t} - - @since version 1.0.0 - */ - void swap(array_t& other) - { - // swap only works for arrays - if (JSON_HEDLEY_LIKELY(is_array())) - { - std::swap(*(m_value.array), other); - } - else - { - JSON_THROW(type_error::create(310, "cannot use swap() with " + std::string(type_name()))); - } - } - - /*! - @brief exchanges the values - - Exchanges the contents of a JSON object with those of @a other. Does not - invoke any move, copy, or swap operations on individual elements. All - iterators and references remain valid. The past-the-end iterator is - invalidated. - - @param[in,out] other object to exchange the contents with - - @throw type_error.310 when JSON value is not an object; example: - `"cannot use swap() with string"` - - @complexity Constant. - - @liveexample{The example below shows how objects can be swapped with - `swap()`.,swap__object_t} - - @since version 1.0.0 - */ - void swap(object_t& other) - { - // swap only works for objects - if (JSON_HEDLEY_LIKELY(is_object())) - { - std::swap(*(m_value.object), other); - } - else - { - JSON_THROW(type_error::create(310, "cannot use swap() with " + std::string(type_name()))); - } - } - - /*! - @brief exchanges the values - - Exchanges the contents of a JSON string with those of @a other. Does not - invoke any move, copy, or swap operations on individual elements. All - iterators and references remain valid. The past-the-end iterator is - invalidated. - - @param[in,out] other string to exchange the contents with - - @throw type_error.310 when JSON value is not a string; example: `"cannot - use swap() with boolean"` - - @complexity Constant. - - @liveexample{The example below shows how strings can be swapped with - `swap()`.,swap__string_t} - - @since version 1.0.0 - */ - void swap(string_t& other) - { - // swap only works for strings - if (JSON_HEDLEY_LIKELY(is_string())) - { - std::swap(*(m_value.string), other); - } - else - { - JSON_THROW(type_error::create(310, "cannot use swap() with " + std::string(type_name()))); - } - } - - /*! - @brief exchanges the values - - Exchanges the contents of a JSON string with those of @a other. Does not - invoke any move, copy, or swap operations on individual elements. All - iterators and references remain valid. The past-the-end iterator is - invalidated. - - @param[in,out] other binary to exchange the contents with - - @throw type_error.310 when JSON value is not a string; example: `"cannot - use swap() with boolean"` - - @complexity Constant. - - @liveexample{The example below shows how strings can be swapped with - `swap()`.,swap__binary_t} - - @since version 3.8.0 - */ - void swap(binary_t& other) - { - // swap only works for strings - if (JSON_HEDLEY_LIKELY(is_binary())) - { - std::swap(*(m_value.binary), other); - } - else - { - JSON_THROW(type_error::create(310, "cannot use swap() with " + std::string(type_name()))); - } - } - - /// @copydoc swap(binary_t) - void swap(typename binary_t::container_type& other) - { - // swap only works for strings - if (JSON_HEDLEY_LIKELY(is_binary())) - { - std::swap(*(m_value.binary), other); - } - else - { - JSON_THROW(type_error::create(310, "cannot use swap() with " + std::string(type_name()))); - } - } - - /// @} - - public: - ////////////////////////////////////////// - // lexicographical comparison operators // - ////////////////////////////////////////// - - /// @name lexicographical comparison operators - /// @{ - - /*! - @brief comparison: equal - - Compares two JSON values for equality according to the following rules: - - Two JSON values are equal if (1) they are from the same type and (2) - their stored values are the same according to their respective - `operator==`. - - Integer and floating-point numbers are automatically converted before - comparison. Note that two NaN values are always treated as unequal. - - Two JSON null values are equal. - - @note Floating-point inside JSON values numbers are compared with - `json::number_float_t::operator==` which is `double::operator==` by - default. To compare floating-point while respecting an epsilon, an alternative - [comparison function](https://github.com/mariokonrad/marnav/blob/master/include/marnav/math/floatingpoint.hpp#L34-#L39) - could be used, for instance - @code {.cpp} - template::value, T>::type> - inline bool is_same(T a, T b, T epsilon = std::numeric_limits::epsilon()) noexcept - { - return std::abs(a - b) <= epsilon; - } - @endcode - Or you can self-defined operator equal function like this: - @code {.cpp} - bool my_equal(const_reference lhs, const_reference rhs) { - const auto lhs_type lhs.type(); - const auto rhs_type rhs.type(); - if (lhs_type == rhs_type) { - switch(lhs_type) - // self_defined case - case value_t::number_float: - return std::abs(lhs - rhs) <= std::numeric_limits::epsilon(); - // other cases remain the same with the original - ... - } - ... - } - @endcode - - @note NaN values never compare equal to themselves or to other NaN values. - - @param[in] lhs first JSON value to consider - @param[in] rhs second JSON value to consider - @return whether the values @a lhs and @a rhs are equal - - @exceptionsafety No-throw guarantee: this function never throws exceptions. - - @complexity Linear. - - @liveexample{The example demonstrates comparing several JSON - types.,operator__equal} - - @since version 1.0.0 - */ - friend bool operator==(const_reference lhs, const_reference rhs) noexcept - { - const auto lhs_type = lhs.type(); - const auto rhs_type = rhs.type(); - - if (lhs_type == rhs_type) - { - switch (lhs_type) - { - case value_t::array: - return *lhs.m_value.array == *rhs.m_value.array; - - case value_t::object: - return *lhs.m_value.object == *rhs.m_value.object; - - case value_t::null: - return true; - - case value_t::string: - return *lhs.m_value.string == *rhs.m_value.string; - - case value_t::boolean: - return lhs.m_value.boolean == rhs.m_value.boolean; - - case value_t::number_integer: - return lhs.m_value.number_integer == rhs.m_value.number_integer; - - case value_t::number_unsigned: - return lhs.m_value.number_unsigned == rhs.m_value.number_unsigned; - - case value_t::number_float: - return lhs.m_value.number_float == rhs.m_value.number_float; - - case value_t::binary: - return *lhs.m_value.binary == *rhs.m_value.binary; - - default: - return false; - } - } - else if (lhs_type == value_t::number_integer && rhs_type == value_t::number_float) - { - return static_cast(lhs.m_value.number_integer) == rhs.m_value.number_float; - } - else if (lhs_type == value_t::number_float && rhs_type == value_t::number_integer) - { - return lhs.m_value.number_float == static_cast(rhs.m_value.number_integer); - } - else if (lhs_type == value_t::number_unsigned && rhs_type == value_t::number_float) - { - return static_cast(lhs.m_value.number_unsigned) == rhs.m_value.number_float; - } - else if (lhs_type == value_t::number_float && rhs_type == value_t::number_unsigned) - { - return lhs.m_value.number_float == static_cast(rhs.m_value.number_unsigned); - } - else if (lhs_type == value_t::number_unsigned && rhs_type == value_t::number_integer) - { - return static_cast(lhs.m_value.number_unsigned) == rhs.m_value.number_integer; - } - else if (lhs_type == value_t::number_integer && rhs_type == value_t::number_unsigned) - { - return lhs.m_value.number_integer == static_cast(rhs.m_value.number_unsigned); - } - - return false; - } - - /*! - @brief comparison: equal - @copydoc operator==(const_reference, const_reference) - */ - template::value, int>::type = 0> - friend bool operator==(const_reference lhs, const ScalarType rhs) noexcept - { - return lhs == basic_json(rhs); - } - - /*! - @brief comparison: equal - @copydoc operator==(const_reference, const_reference) - */ - template::value, int>::type = 0> - friend bool operator==(const ScalarType lhs, const_reference rhs) noexcept - { - return basic_json(lhs) == rhs; - } - - /*! - @brief comparison: not equal - - Compares two JSON values for inequality by calculating `not (lhs == rhs)`. - - @param[in] lhs first JSON value to consider - @param[in] rhs second JSON value to consider - @return whether the values @a lhs and @a rhs are not equal - - @complexity Linear. - - @exceptionsafety No-throw guarantee: this function never throws exceptions. - - @liveexample{The example demonstrates comparing several JSON - types.,operator__notequal} - - @since version 1.0.0 - */ - friend bool operator!=(const_reference lhs, const_reference rhs) noexcept - { - return !(lhs == rhs); - } - - /*! - @brief comparison: not equal - @copydoc operator!=(const_reference, const_reference) - */ - template::value, int>::type = 0> - friend bool operator!=(const_reference lhs, const ScalarType rhs) noexcept - { - return lhs != basic_json(rhs); - } - - /*! - @brief comparison: not equal - @copydoc operator!=(const_reference, const_reference) - */ - template::value, int>::type = 0> - friend bool operator!=(const ScalarType lhs, const_reference rhs) noexcept - { - return basic_json(lhs) != rhs; - } - - /*! - @brief comparison: less than - - Compares whether one JSON value @a lhs is less than another JSON value @a - rhs according to the following rules: - - If @a lhs and @a rhs have the same type, the values are compared using - the default `<` operator. - - Integer and floating-point numbers are automatically converted before - comparison - - In case @a lhs and @a rhs have different types, the values are ignored - and the order of the types is considered, see - @ref operator<(const value_t, const value_t). - - @param[in] lhs first JSON value to consider - @param[in] rhs second JSON value to consider - @return whether @a lhs is less than @a rhs - - @complexity Linear. - - @exceptionsafety No-throw guarantee: this function never throws exceptions. - - @liveexample{The example demonstrates comparing several JSON - types.,operator__less} - - @since version 1.0.0 - */ - friend bool operator<(const_reference lhs, const_reference rhs) noexcept - { - const auto lhs_type = lhs.type(); - const auto rhs_type = rhs.type(); - - if (lhs_type == rhs_type) - { - switch (lhs_type) - { - case value_t::array: - // note parentheses are necessary, see - // https://github.com/nlohmann/json/issues/1530 - return (*lhs.m_value.array) < (*rhs.m_value.array); - - case value_t::object: - return (*lhs.m_value.object) < (*rhs.m_value.object); - - case value_t::null: - return false; - - case value_t::string: - return (*lhs.m_value.string) < (*rhs.m_value.string); - - case value_t::boolean: - return (lhs.m_value.boolean) < (rhs.m_value.boolean); - - case value_t::number_integer: - return (lhs.m_value.number_integer) < (rhs.m_value.number_integer); - - case value_t::number_unsigned: - return (lhs.m_value.number_unsigned) < (rhs.m_value.number_unsigned); - - case value_t::number_float: - return (lhs.m_value.number_float) < (rhs.m_value.number_float); - - case value_t::binary: - return (*lhs.m_value.binary) < (*rhs.m_value.binary); - - default: - return false; - } - } - else if (lhs_type == value_t::number_integer && rhs_type == value_t::number_float) - { - return static_cast(lhs.m_value.number_integer) < rhs.m_value.number_float; - } - else if (lhs_type == value_t::number_float && rhs_type == value_t::number_integer) - { - return lhs.m_value.number_float < static_cast(rhs.m_value.number_integer); - } - else if (lhs_type == value_t::number_unsigned && rhs_type == value_t::number_float) - { - return static_cast(lhs.m_value.number_unsigned) < rhs.m_value.number_float; - } - else if (lhs_type == value_t::number_float && rhs_type == value_t::number_unsigned) - { - return lhs.m_value.number_float < static_cast(rhs.m_value.number_unsigned); - } - else if (lhs_type == value_t::number_integer && rhs_type == value_t::number_unsigned) - { - return lhs.m_value.number_integer < static_cast(rhs.m_value.number_unsigned); - } - else if (lhs_type == value_t::number_unsigned && rhs_type == value_t::number_integer) - { - return static_cast(lhs.m_value.number_unsigned) < rhs.m_value.number_integer; - } - - // We only reach this line if we cannot compare values. In that case, - // we compare types. Note we have to call the operator explicitly, - // because MSVC has problems otherwise. - return operator<(lhs_type, rhs_type); - } - - /*! - @brief comparison: less than - @copydoc operator<(const_reference, const_reference) - */ - template::value, int>::type = 0> - friend bool operator<(const_reference lhs, const ScalarType rhs) noexcept - { - return lhs < basic_json(rhs); - } - - /*! - @brief comparison: less than - @copydoc operator<(const_reference, const_reference) - */ - template::value, int>::type = 0> - friend bool operator<(const ScalarType lhs, const_reference rhs) noexcept - { - return basic_json(lhs) < rhs; - } - - /*! - @brief comparison: less than or equal - - Compares whether one JSON value @a lhs is less than or equal to another - JSON value by calculating `not (rhs < lhs)`. - - @param[in] lhs first JSON value to consider - @param[in] rhs second JSON value to consider - @return whether @a lhs is less than or equal to @a rhs - - @complexity Linear. - - @exceptionsafety No-throw guarantee: this function never throws exceptions. - - @liveexample{The example demonstrates comparing several JSON - types.,operator__greater} - - @since version 1.0.0 - */ - friend bool operator<=(const_reference lhs, const_reference rhs) noexcept - { - return !(rhs < lhs); - } - - /*! - @brief comparison: less than or equal - @copydoc operator<=(const_reference, const_reference) - */ - template::value, int>::type = 0> - friend bool operator<=(const_reference lhs, const ScalarType rhs) noexcept - { - return lhs <= basic_json(rhs); - } - - /*! - @brief comparison: less than or equal - @copydoc operator<=(const_reference, const_reference) - */ - template::value, int>::type = 0> - friend bool operator<=(const ScalarType lhs, const_reference rhs) noexcept - { - return basic_json(lhs) <= rhs; - } - - /*! - @brief comparison: greater than - - Compares whether one JSON value @a lhs is greater than another - JSON value by calculating `not (lhs <= rhs)`. - - @param[in] lhs first JSON value to consider - @param[in] rhs second JSON value to consider - @return whether @a lhs is greater than to @a rhs - - @complexity Linear. - - @exceptionsafety No-throw guarantee: this function never throws exceptions. - - @liveexample{The example demonstrates comparing several JSON - types.,operator__lessequal} - - @since version 1.0.0 - */ - friend bool operator>(const_reference lhs, const_reference rhs) noexcept - { - return !(lhs <= rhs); - } - - /*! - @brief comparison: greater than - @copydoc operator>(const_reference, const_reference) - */ - template::value, int>::type = 0> - friend bool operator>(const_reference lhs, const ScalarType rhs) noexcept - { - return lhs > basic_json(rhs); - } - - /*! - @brief comparison: greater than - @copydoc operator>(const_reference, const_reference) - */ - template::value, int>::type = 0> - friend bool operator>(const ScalarType lhs, const_reference rhs) noexcept - { - return basic_json(lhs) > rhs; - } - - /*! - @brief comparison: greater than or equal - - Compares whether one JSON value @a lhs is greater than or equal to another - JSON value by calculating `not (lhs < rhs)`. - - @param[in] lhs first JSON value to consider - @param[in] rhs second JSON value to consider - @return whether @a lhs is greater than or equal to @a rhs - - @complexity Linear. - - @exceptionsafety No-throw guarantee: this function never throws exceptions. - - @liveexample{The example demonstrates comparing several JSON - types.,operator__greaterequal} - - @since version 1.0.0 - */ - friend bool operator>=(const_reference lhs, const_reference rhs) noexcept - { - return !(lhs < rhs); - } - - /*! - @brief comparison: greater than or equal - @copydoc operator>=(const_reference, const_reference) - */ - template::value, int>::type = 0> - friend bool operator>=(const_reference lhs, const ScalarType rhs) noexcept - { - return lhs >= basic_json(rhs); - } - - /*! - @brief comparison: greater than or equal - @copydoc operator>=(const_reference, const_reference) - */ - template::value, int>::type = 0> - friend bool operator>=(const ScalarType lhs, const_reference rhs) noexcept - { - return basic_json(lhs) >= rhs; - } - - /// @} - - /////////////////// - // serialization // - /////////////////// - - /// @name serialization - /// @{ - - /*! - @brief serialize to stream - - Serialize the given JSON value @a j to the output stream @a o. The JSON - value will be serialized using the @ref dump member function. - - - The indentation of the output can be controlled with the member variable - `width` of the output stream @a o. For instance, using the manipulator - `std::setw(4)` on @a o sets the indentation level to `4` and the - serialization result is the same as calling `dump(4)`. - - - The indentation character can be controlled with the member variable - `fill` of the output stream @a o. For instance, the manipulator - `std::setfill('\\t')` sets indentation to use a tab character rather than - the default space character. - - @param[in,out] o stream to serialize to - @param[in] j JSON value to serialize - - @return the stream @a o - - @throw type_error.316 if a string stored inside the JSON value is not - UTF-8 encoded - - @complexity Linear. - - @liveexample{The example below shows the serialization with different - parameters to `width` to adjust the indentation level.,operator_serialize} - - @since version 1.0.0; indentation character added in version 3.0.0 - */ - friend std::ostream& operator<<(std::ostream& o, const basic_json& j) - { - // read width member and use it as indentation parameter if nonzero - const bool pretty_print = o.width() > 0; - const auto indentation = pretty_print ? o.width() : 0; - - // reset width to 0 for subsequent calls to this stream - o.width(0); - - // do the actual serialization - serializer s(detail::output_adapter(o), o.fill()); - s.dump(j, pretty_print, false, static_cast(indentation)); - return o; - } - - /*! - @brief serialize to stream - @deprecated This stream operator is deprecated and will be removed in - future 4.0.0 of the library. Please use - @ref operator<<(std::ostream&, const basic_json&) - instead; that is, replace calls like `j >> o;` with `o << j;`. - @since version 1.0.0; deprecated since version 3.0.0 - */ - JSON_HEDLEY_DEPRECATED_FOR(3.0.0, operator<<(std::ostream&, const basic_json&)) - friend std::ostream& operator>>(const basic_json& j, std::ostream& o) - { - return o << j; - } - - /// @} - - - ///////////////////// - // deserialization // - ///////////////////// - - /// @name deserialization - /// @{ - - /*! - @brief deserialize from a compatible input - - @tparam InputType A compatible input, for instance - - an std::istream object - - a FILE pointer - - a C-style array of characters - - a pointer to a null-terminated string of single byte characters - - an object obj for which begin(obj) and end(obj) produces a valid pair of - iterators. - - @param[in] i input to read from - @param[in] cb a parser callback function of type @ref parser_callback_t - which is used to control the deserialization by filtering unwanted values - (optional) - @param[in] allow_exceptions whether to throw exceptions in case of a - parse error (optional, true by default) - @param[in] ignore_comments whether comments should be ignored and treated - like whitespace (true) or yield a parse error (true); (optional, false by - default) - - @return deserialized JSON value; in case of a parse error and - @a allow_exceptions set to `false`, the return value will be - value_t::discarded. - - @throw parse_error.101 if a parse error occurs; example: `""unexpected end - of input; expected string literal""` - @throw parse_error.102 if to_unicode fails or surrogate error - @throw parse_error.103 if to_unicode fails - - @complexity Linear in the length of the input. The parser is a predictive - LL(1) parser. The complexity can be higher if the parser callback function - @a cb or reading from the input @a i has a super-linear complexity. - - @note A UTF-8 byte order mark is silently ignored. - - @liveexample{The example below demonstrates the `parse()` function reading - from an array.,parse__array__parser_callback_t} - - @liveexample{The example below demonstrates the `parse()` function with - and without callback function.,parse__string__parser_callback_t} - - @liveexample{The example below demonstrates the `parse()` function with - and without callback function.,parse__istream__parser_callback_t} - - @liveexample{The example below demonstrates the `parse()` function reading - from a contiguous container.,parse__contiguouscontainer__parser_callback_t} - - @since version 2.0.3 (contiguous containers); version 3.9.0 allowed to - ignore comments. - */ - template - JSON_HEDLEY_WARN_UNUSED_RESULT - static basic_json parse(InputType&& i, - const parser_callback_t cb = nullptr, - const bool allow_exceptions = true, - const bool ignore_comments = false) - { - basic_json result; - parser(detail::input_adapter(std::forward(i)), cb, allow_exceptions, ignore_comments).parse(true, result); - return result; - } - - /*! - @brief deserialize from a pair of character iterators - - The value_type of the iterator must be a integral type with size of 1, 2 or - 4 bytes, which will be interpreted respectively as UTF-8, UTF-16 and UTF-32. - - @param[in] first iterator to start of character range - @param[in] last iterator to end of character range - @param[in] cb a parser callback function of type @ref parser_callback_t - which is used to control the deserialization by filtering unwanted values - (optional) - @param[in] allow_exceptions whether to throw exceptions in case of a - parse error (optional, true by default) - @param[in] ignore_comments whether comments should be ignored and treated - like whitespace (true) or yield a parse error (true); (optional, false by - default) - - @return deserialized JSON value; in case of a parse error and - @a allow_exceptions set to `false`, the return value will be - value_t::discarded. - - @throw parse_error.101 if a parse error occurs; example: `""unexpected end - of input; expected string literal""` - @throw parse_error.102 if to_unicode fails or surrogate error - @throw parse_error.103 if to_unicode fails - */ - template - JSON_HEDLEY_WARN_UNUSED_RESULT - static basic_json parse(IteratorType first, - IteratorType last, - const parser_callback_t cb = nullptr, - const bool allow_exceptions = true, - const bool ignore_comments = false) - { - basic_json result; - parser(detail::input_adapter(std::move(first), std::move(last)), cb, allow_exceptions, ignore_comments).parse(true, result); - return result; - } - - JSON_HEDLEY_WARN_UNUSED_RESULT - JSON_HEDLEY_DEPRECATED_FOR(3.8.0, parse(ptr, ptr + len)) - static basic_json parse(detail::span_input_adapter&& i, - const parser_callback_t cb = nullptr, - const bool allow_exceptions = true, - const bool ignore_comments = false) - { - basic_json result; - parser(i.get(), cb, allow_exceptions, ignore_comments).parse(true, result); - return result; - } - - /*! - @brief check if the input is valid JSON - - Unlike the @ref parse(InputType&&, const parser_callback_t,const bool) - function, this function neither throws an exception in case of invalid JSON - input (i.e., a parse error) nor creates diagnostic information. - - @tparam InputType A compatible input, for instance - - an std::istream object - - a FILE pointer - - a C-style array of characters - - a pointer to a null-terminated string of single byte characters - - an object obj for which begin(obj) and end(obj) produces a valid pair of - iterators. - - @param[in] i input to read from - @param[in] ignore_comments whether comments should be ignored and treated - like whitespace (true) or yield a parse error (true); (optional, false by - default) - - @return Whether the input read from @a i is valid JSON. - - @complexity Linear in the length of the input. The parser is a predictive - LL(1) parser. - - @note A UTF-8 byte order mark is silently ignored. - - @liveexample{The example below demonstrates the `accept()` function reading - from a string.,accept__string} - */ - template - static bool accept(InputType&& i, - const bool ignore_comments = false) - { - return parser(detail::input_adapter(std::forward(i)), nullptr, false, ignore_comments).accept(true); - } - - template - static bool accept(IteratorType first, IteratorType last, - const bool ignore_comments = false) - { - return parser(detail::input_adapter(std::move(first), std::move(last)), nullptr, false, ignore_comments).accept(true); - } - - JSON_HEDLEY_WARN_UNUSED_RESULT - JSON_HEDLEY_DEPRECATED_FOR(3.8.0, accept(ptr, ptr + len)) - static bool accept(detail::span_input_adapter&& i, - const bool ignore_comments = false) - { - return parser(i.get(), nullptr, false, ignore_comments).accept(true); - } - - /*! - @brief generate SAX events - - The SAX event lister must follow the interface of @ref json_sax. - - This function reads from a compatible input. Examples are: - - an std::istream object - - a FILE pointer - - a C-style array of characters - - a pointer to a null-terminated string of single byte characters - - an object obj for which begin(obj) and end(obj) produces a valid pair of - iterators. - - @param[in] i input to read from - @param[in,out] sax SAX event listener - @param[in] format the format to parse (JSON, CBOR, MessagePack, or UBJSON) - @param[in] strict whether the input has to be consumed completely - @param[in] ignore_comments whether comments should be ignored and treated - like whitespace (true) or yield a parse error (true); (optional, false by - default); only applies to the JSON file format. - - @return return value of the last processed SAX event - - @throw parse_error.101 if a parse error occurs; example: `""unexpected end - of input; expected string literal""` - @throw parse_error.102 if to_unicode fails or surrogate error - @throw parse_error.103 if to_unicode fails - - @complexity Linear in the length of the input. The parser is a predictive - LL(1) parser. The complexity can be higher if the SAX consumer @a sax has - a super-linear complexity. - - @note A UTF-8 byte order mark is silently ignored. - - @liveexample{The example below demonstrates the `sax_parse()` function - reading from string and processing the events with a user-defined SAX - event consumer.,sax_parse} - - @since version 3.2.0 - */ - template - JSON_HEDLEY_NON_NULL(2) - static bool sax_parse(InputType&& i, SAX* sax, - input_format_t format = input_format_t::json, - const bool strict = true, - const bool ignore_comments = false) - { - auto ia = detail::input_adapter(std::forward(i)); - return format == input_format_t::json - ? parser(std::move(ia), nullptr, true, ignore_comments).sax_parse(sax, strict) - : detail::binary_reader(std::move(ia)).sax_parse(format, sax, strict); - } - - template - JSON_HEDLEY_NON_NULL(3) - static bool sax_parse(IteratorType first, IteratorType last, SAX* sax, - input_format_t format = input_format_t::json, - const bool strict = true, - const bool ignore_comments = false) - { - auto ia = detail::input_adapter(std::move(first), std::move(last)); - return format == input_format_t::json - ? parser(std::move(ia), nullptr, true, ignore_comments).sax_parse(sax, strict) - : detail::binary_reader(std::move(ia)).sax_parse(format, sax, strict); - } - - template - JSON_HEDLEY_DEPRECATED_FOR(3.8.0, sax_parse(ptr, ptr + len, ...)) - JSON_HEDLEY_NON_NULL(2) - static bool sax_parse(detail::span_input_adapter&& i, SAX* sax, - input_format_t format = input_format_t::json, - const bool strict = true, - const bool ignore_comments = false) - { - auto ia = i.get(); - return format == input_format_t::json - ? parser(std::move(ia), nullptr, true, ignore_comments).sax_parse(sax, strict) - : detail::binary_reader(std::move(ia)).sax_parse(format, sax, strict); - } - - /*! - @brief deserialize from stream - @deprecated This stream operator is deprecated and will be removed in - version 4.0.0 of the library. Please use - @ref operator>>(std::istream&, basic_json&) - instead; that is, replace calls like `j << i;` with `i >> j;`. - @since version 1.0.0; deprecated since version 3.0.0 - */ - JSON_HEDLEY_DEPRECATED_FOR(3.0.0, operator>>(std::istream&, basic_json&)) - friend std::istream& operator<<(basic_json& j, std::istream& i) - { - return operator>>(i, j); - } - - /*! - @brief deserialize from stream - - Deserializes an input stream to a JSON value. - - @param[in,out] i input stream to read a serialized JSON value from - @param[in,out] j JSON value to write the deserialized input to - - @throw parse_error.101 in case of an unexpected token - @throw parse_error.102 if to_unicode fails or surrogate error - @throw parse_error.103 if to_unicode fails - - @complexity Linear in the length of the input. The parser is a predictive - LL(1) parser. - - @note A UTF-8 byte order mark is silently ignored. - - @liveexample{The example below shows how a JSON value is constructed by - reading a serialization from a stream.,operator_deserialize} - - @sa parse(std::istream&, const parser_callback_t) for a variant with a - parser callback function to filter values while parsing - - @since version 1.0.0 - */ - friend std::istream& operator>>(std::istream& i, basic_json& j) - { - parser(detail::input_adapter(i)).parse(false, j); - return i; - } - - /// @} - - /////////////////////////// - // convenience functions // - /////////////////////////// - - /*! - @brief return the type as string - - Returns the type name as string to be used in error messages - usually to - indicate that a function was called on a wrong JSON type. - - @return a string representation of a the @a m_type member: - Value type | return value - ----------- | ------------- - null | `"null"` - boolean | `"boolean"` - string | `"string"` - number | `"number"` (for all number types) - object | `"object"` - array | `"array"` - binary | `"binary"` - discarded | `"discarded"` - - @exceptionsafety No-throw guarantee: this function never throws exceptions. - - @complexity Constant. - - @liveexample{The following code exemplifies `type_name()` for all JSON - types.,type_name} - - @sa @ref type() -- return the type of the JSON value - @sa @ref operator value_t() -- return the type of the JSON value (implicit) - - @since version 1.0.0, public since 2.1.0, `const char*` and `noexcept` - since 3.0.0 - */ - JSON_HEDLEY_RETURNS_NON_NULL - const char* type_name() const noexcept - { - { - switch (m_type) - { - case value_t::null: - return "null"; - case value_t::object: - return "object"; - case value_t::array: - return "array"; - case value_t::string: - return "string"; - case value_t::boolean: - return "boolean"; - case value_t::binary: - return "binary"; - case value_t::discarded: - return "discarded"; - default: - return "number"; - } - } - } - - - private: - ////////////////////// - // member variables // - ////////////////////// - - /// the type of the current element - value_t m_type = value_t::null; - - /// the value of the current element - json_value m_value = {}; - - ////////////////////////////////////////// - // binary serialization/deserialization // - ////////////////////////////////////////// - - /// @name binary serialization/deserialization support - /// @{ - - public: - /*! - @brief create a CBOR serialization of a given JSON value - - Serializes a given JSON value @a j to a byte vector using the CBOR (Concise - Binary Object Representation) serialization format. CBOR is a binary - serialization format which aims to be more compact than JSON itself, yet - more efficient to parse. - - The library uses the following mapping from JSON values types to - CBOR types according to the CBOR specification (RFC 7049): - - JSON value type | value/range | CBOR type | first byte - --------------- | ------------------------------------------ | ---------------------------------- | --------------- - null | `null` | Null | 0xF6 - boolean | `true` | True | 0xF5 - boolean | `false` | False | 0xF4 - number_integer | -9223372036854775808..-2147483649 | Negative integer (8 bytes follow) | 0x3B - number_integer | -2147483648..-32769 | Negative integer (4 bytes follow) | 0x3A - number_integer | -32768..-129 | Negative integer (2 bytes follow) | 0x39 - number_integer | -128..-25 | Negative integer (1 byte follow) | 0x38 - number_integer | -24..-1 | Negative integer | 0x20..0x37 - number_integer | 0..23 | Integer | 0x00..0x17 - number_integer | 24..255 | Unsigned integer (1 byte follow) | 0x18 - number_integer | 256..65535 | Unsigned integer (2 bytes follow) | 0x19 - number_integer | 65536..4294967295 | Unsigned integer (4 bytes follow) | 0x1A - number_integer | 4294967296..18446744073709551615 | Unsigned integer (8 bytes follow) | 0x1B - number_unsigned | 0..23 | Integer | 0x00..0x17 - number_unsigned | 24..255 | Unsigned integer (1 byte follow) | 0x18 - number_unsigned | 256..65535 | Unsigned integer (2 bytes follow) | 0x19 - number_unsigned | 65536..4294967295 | Unsigned integer (4 bytes follow) | 0x1A - number_unsigned | 4294967296..18446744073709551615 | Unsigned integer (8 bytes follow) | 0x1B - number_float | *any value representable by a float* | Single-Precision Float | 0xFA - number_float | *any value NOT representable by a float* | Double-Precision Float | 0xFB - string | *length*: 0..23 | UTF-8 string | 0x60..0x77 - string | *length*: 23..255 | UTF-8 string (1 byte follow) | 0x78 - string | *length*: 256..65535 | UTF-8 string (2 bytes follow) | 0x79 - string | *length*: 65536..4294967295 | UTF-8 string (4 bytes follow) | 0x7A - string | *length*: 4294967296..18446744073709551615 | UTF-8 string (8 bytes follow) | 0x7B - array | *size*: 0..23 | array | 0x80..0x97 - array | *size*: 23..255 | array (1 byte follow) | 0x98 - array | *size*: 256..65535 | array (2 bytes follow) | 0x99 - array | *size*: 65536..4294967295 | array (4 bytes follow) | 0x9A - array | *size*: 4294967296..18446744073709551615 | array (8 bytes follow) | 0x9B - object | *size*: 0..23 | map | 0xA0..0xB7 - object | *size*: 23..255 | map (1 byte follow) | 0xB8 - object | *size*: 256..65535 | map (2 bytes follow) | 0xB9 - object | *size*: 65536..4294967295 | map (4 bytes follow) | 0xBA - object | *size*: 4294967296..18446744073709551615 | map (8 bytes follow) | 0xBB - binary | *size*: 0..23 | byte string | 0x40..0x57 - binary | *size*: 23..255 | byte string (1 byte follow) | 0x58 - binary | *size*: 256..65535 | byte string (2 bytes follow) | 0x59 - binary | *size*: 65536..4294967295 | byte string (4 bytes follow) | 0x5A - binary | *size*: 4294967296..18446744073709551615 | byte string (8 bytes follow) | 0x5B - - @note The mapping is **complete** in the sense that any JSON value type - can be converted to a CBOR value. - - @note If NaN or Infinity are stored inside a JSON number, they are - serialized properly. This behavior differs from the @ref dump() - function which serializes NaN or Infinity to `null`. - - @note The following CBOR types are not used in the conversion: - - UTF-8 strings terminated by "break" (0x7F) - - arrays terminated by "break" (0x9F) - - maps terminated by "break" (0xBF) - - byte strings terminated by "break" (0x5F) - - date/time (0xC0..0xC1) - - bignum (0xC2..0xC3) - - decimal fraction (0xC4) - - bigfloat (0xC5) - - expected conversions (0xD5..0xD7) - - simple values (0xE0..0xF3, 0xF8) - - undefined (0xF7) - - half-precision floats (0xF9) - - break (0xFF) - - @param[in] j JSON value to serialize - @return CBOR serialization as byte vector - - @complexity Linear in the size of the JSON value @a j. - - @liveexample{The example shows the serialization of a JSON value to a byte - vector in CBOR format.,to_cbor} - - @sa http://cbor.io - @sa @ref from_cbor(detail::input_adapter&&, const bool, const bool, const cbor_tag_handler_t) for the - analogous deserialization - @sa @ref to_msgpack(const basic_json&) for the related MessagePack format - @sa @ref to_ubjson(const basic_json&, const bool, const bool) for the - related UBJSON format - - @since version 2.0.9; compact representation of floating-point numbers - since version 3.8.0 - */ - static std::vector to_cbor(const basic_json& j) - { - std::vector result; - to_cbor(j, result); - return result; - } - - static void to_cbor(const basic_json& j, detail::output_adapter o) - { - binary_writer(o).write_cbor(j); - } - - static void to_cbor(const basic_json& j, detail::output_adapter o) - { - binary_writer(o).write_cbor(j); - } - - /*! - @brief create a MessagePack serialization of a given JSON value - - Serializes a given JSON value @a j to a byte vector using the MessagePack - serialization format. MessagePack is a binary serialization format which - aims to be more compact than JSON itself, yet more efficient to parse. - - The library uses the following mapping from JSON values types to - MessagePack types according to the MessagePack specification: - - JSON value type | value/range | MessagePack type | first byte - --------------- | --------------------------------- | ---------------- | ---------- - null | `null` | nil | 0xC0 - boolean | `true` | true | 0xC3 - boolean | `false` | false | 0xC2 - number_integer | -9223372036854775808..-2147483649 | int64 | 0xD3 - number_integer | -2147483648..-32769 | int32 | 0xD2 - number_integer | -32768..-129 | int16 | 0xD1 - number_integer | -128..-33 | int8 | 0xD0 - number_integer | -32..-1 | negative fixint | 0xE0..0xFF - number_integer | 0..127 | positive fixint | 0x00..0x7F - number_integer | 128..255 | uint 8 | 0xCC - number_integer | 256..65535 | uint 16 | 0xCD - number_integer | 65536..4294967295 | uint 32 | 0xCE - number_integer | 4294967296..18446744073709551615 | uint 64 | 0xCF - number_unsigned | 0..127 | positive fixint | 0x00..0x7F - number_unsigned | 128..255 | uint 8 | 0xCC - number_unsigned | 256..65535 | uint 16 | 0xCD - number_unsigned | 65536..4294967295 | uint 32 | 0xCE - number_unsigned | 4294967296..18446744073709551615 | uint 64 | 0xCF - number_float | *any value representable by a float* | float 32 | 0xCA - number_float | *any value NOT representable by a float* | float 64 | 0xCB - string | *length*: 0..31 | fixstr | 0xA0..0xBF - string | *length*: 32..255 | str 8 | 0xD9 - string | *length*: 256..65535 | str 16 | 0xDA - string | *length*: 65536..4294967295 | str 32 | 0xDB - array | *size*: 0..15 | fixarray | 0x90..0x9F - array | *size*: 16..65535 | array 16 | 0xDC - array | *size*: 65536..4294967295 | array 32 | 0xDD - object | *size*: 0..15 | fix map | 0x80..0x8F - object | *size*: 16..65535 | map 16 | 0xDE - object | *size*: 65536..4294967295 | map 32 | 0xDF - binary | *size*: 0..255 | bin 8 | 0xC4 - binary | *size*: 256..65535 | bin 16 | 0xC5 - binary | *size*: 65536..4294967295 | bin 32 | 0xC6 - - @note The mapping is **complete** in the sense that any JSON value type - can be converted to a MessagePack value. - - @note The following values can **not** be converted to a MessagePack value: - - strings with more than 4294967295 bytes - - byte strings with more than 4294967295 bytes - - arrays with more than 4294967295 elements - - objects with more than 4294967295 elements - - @note Any MessagePack output created @ref to_msgpack can be successfully - parsed by @ref from_msgpack. - - @note If NaN or Infinity are stored inside a JSON number, they are - serialized properly. This behavior differs from the @ref dump() - function which serializes NaN or Infinity to `null`. - - @param[in] j JSON value to serialize - @return MessagePack serialization as byte vector - - @complexity Linear in the size of the JSON value @a j. - - @liveexample{The example shows the serialization of a JSON value to a byte - vector in MessagePack format.,to_msgpack} - - @sa http://msgpack.org - @sa @ref from_msgpack for the analogous deserialization - @sa @ref to_cbor(const basic_json& for the related CBOR format - @sa @ref to_ubjson(const basic_json&, const bool, const bool) for the - related UBJSON format - - @since version 2.0.9 - */ - static std::vector to_msgpack(const basic_json& j) - { - std::vector result; - to_msgpack(j, result); - return result; - } - - static void to_msgpack(const basic_json& j, detail::output_adapter o) - { - binary_writer(o).write_msgpack(j); - } - - static void to_msgpack(const basic_json& j, detail::output_adapter o) - { - binary_writer(o).write_msgpack(j); - } - - /*! - @brief create a UBJSON serialization of a given JSON value - - Serializes a given JSON value @a j to a byte vector using the UBJSON - (Universal Binary JSON) serialization format. UBJSON aims to be more compact - than JSON itself, yet more efficient to parse. - - The library uses the following mapping from JSON values types to - UBJSON types according to the UBJSON specification: - - JSON value type | value/range | UBJSON type | marker - --------------- | --------------------------------- | ----------- | ------ - null | `null` | null | `Z` - boolean | `true` | true | `T` - boolean | `false` | false | `F` - number_integer | -9223372036854775808..-2147483649 | int64 | `L` - number_integer | -2147483648..-32769 | int32 | `l` - number_integer | -32768..-129 | int16 | `I` - number_integer | -128..127 | int8 | `i` - number_integer | 128..255 | uint8 | `U` - number_integer | 256..32767 | int16 | `I` - number_integer | 32768..2147483647 | int32 | `l` - number_integer | 2147483648..9223372036854775807 | int64 | `L` - number_unsigned | 0..127 | int8 | `i` - number_unsigned | 128..255 | uint8 | `U` - number_unsigned | 256..32767 | int16 | `I` - number_unsigned | 32768..2147483647 | int32 | `l` - number_unsigned | 2147483648..9223372036854775807 | int64 | `L` - number_unsigned | 2147483649..18446744073709551615 | high-precision | `H` - number_float | *any value* | float64 | `D` - string | *with shortest length indicator* | string | `S` - array | *see notes on optimized format* | array | `[` - object | *see notes on optimized format* | map | `{` - - @note The mapping is **complete** in the sense that any JSON value type - can be converted to a UBJSON value. - - @note The following values can **not** be converted to a UBJSON value: - - strings with more than 9223372036854775807 bytes (theoretical) - - @note The following markers are not used in the conversion: - - `Z`: no-op values are not created. - - `C`: single-byte strings are serialized with `S` markers. - - @note Any UBJSON output created @ref to_ubjson can be successfully parsed - by @ref from_ubjson. - - @note If NaN or Infinity are stored inside a JSON number, they are - serialized properly. This behavior differs from the @ref dump() - function which serializes NaN or Infinity to `null`. - - @note The optimized formats for containers are supported: Parameter - @a use_size adds size information to the beginning of a container and - removes the closing marker. Parameter @a use_type further checks - whether all elements of a container have the same type and adds the - type marker to the beginning of the container. The @a use_type - parameter must only be used together with @a use_size = true. Note - that @a use_size = true alone may result in larger representations - - the benefit of this parameter is that the receiving side is - immediately informed on the number of elements of the container. - - @note If the JSON data contains the binary type, the value stored is a list - of integers, as suggested by the UBJSON documentation. In particular, - this means that serialization and the deserialization of a JSON - containing binary values into UBJSON and back will result in a - different JSON object. - - @param[in] j JSON value to serialize - @param[in] use_size whether to add size annotations to container types - @param[in] use_type whether to add type annotations to container types - (must be combined with @a use_size = true) - @return UBJSON serialization as byte vector - - @complexity Linear in the size of the JSON value @a j. - - @liveexample{The example shows the serialization of a JSON value to a byte - vector in UBJSON format.,to_ubjson} - - @sa http://ubjson.org - @sa @ref from_ubjson(detail::input_adapter&&, const bool, const bool) for the - analogous deserialization - @sa @ref to_cbor(const basic_json& for the related CBOR format - @sa @ref to_msgpack(const basic_json&) for the related MessagePack format - - @since version 3.1.0 - */ - static std::vector to_ubjson(const basic_json& j, - const bool use_size = false, - const bool use_type = false) - { - std::vector result; - to_ubjson(j, result, use_size, use_type); - return result; - } - - static void to_ubjson(const basic_json& j, detail::output_adapter o, - const bool use_size = false, const bool use_type = false) - { - binary_writer(o).write_ubjson(j, use_size, use_type); - } - - static void to_ubjson(const basic_json& j, detail::output_adapter o, - const bool use_size = false, const bool use_type = false) - { - binary_writer(o).write_ubjson(j, use_size, use_type); - } - - - /*! - @brief Serializes the given JSON object `j` to BSON and returns a vector - containing the corresponding BSON-representation. - - BSON (Binary JSON) is a binary format in which zero or more ordered key/value pairs are - stored as a single entity (a so-called document). - - The library uses the following mapping from JSON values types to BSON types: - - JSON value type | value/range | BSON type | marker - --------------- | --------------------------------- | ----------- | ------ - null | `null` | null | 0x0A - boolean | `true`, `false` | boolean | 0x08 - number_integer | -9223372036854775808..-2147483649 | int64 | 0x12 - number_integer | -2147483648..2147483647 | int32 | 0x10 - number_integer | 2147483648..9223372036854775807 | int64 | 0x12 - number_unsigned | 0..2147483647 | int32 | 0x10 - number_unsigned | 2147483648..9223372036854775807 | int64 | 0x12 - number_unsigned | 9223372036854775808..18446744073709551615| -- | -- - number_float | *any value* | double | 0x01 - string | *any value* | string | 0x02 - array | *any value* | document | 0x04 - object | *any value* | document | 0x03 - binary | *any value* | binary | 0x05 - - @warning The mapping is **incomplete**, since only JSON-objects (and things - contained therein) can be serialized to BSON. - Also, integers larger than 9223372036854775807 cannot be serialized to BSON, - and the keys may not contain U+0000, since they are serialized a - zero-terminated c-strings. - - @throw out_of_range.407 if `j.is_number_unsigned() && j.get() > 9223372036854775807` - @throw out_of_range.409 if a key in `j` contains a NULL (U+0000) - @throw type_error.317 if `!j.is_object()` - - @pre The input `j` is required to be an object: `j.is_object() == true`. - - @note Any BSON output created via @ref to_bson can be successfully parsed - by @ref from_bson. - - @param[in] j JSON value to serialize - @return BSON serialization as byte vector - - @complexity Linear in the size of the JSON value @a j. - - @liveexample{The example shows the serialization of a JSON value to a byte - vector in BSON format.,to_bson} - - @sa http://bsonspec.org/spec.html - @sa @ref from_bson(detail::input_adapter&&, const bool strict) for the - analogous deserialization - @sa @ref to_ubjson(const basic_json&, const bool, const bool) for the - related UBJSON format - @sa @ref to_cbor(const basic_json&) for the related CBOR format - @sa @ref to_msgpack(const basic_json&) for the related MessagePack format - */ - static std::vector to_bson(const basic_json& j) - { - std::vector result; - to_bson(j, result); - return result; - } - - /*! - @brief Serializes the given JSON object `j` to BSON and forwards the - corresponding BSON-representation to the given output_adapter `o`. - @param j The JSON object to convert to BSON. - @param o The output adapter that receives the binary BSON representation. - @pre The input `j` shall be an object: `j.is_object() == true` - @sa @ref to_bson(const basic_json&) - */ - static void to_bson(const basic_json& j, detail::output_adapter o) - { - binary_writer(o).write_bson(j); - } - - /*! - @copydoc to_bson(const basic_json&, detail::output_adapter) - */ - static void to_bson(const basic_json& j, detail::output_adapter o) - { - binary_writer(o).write_bson(j); - } - - - /*! - @brief create a JSON value from an input in CBOR format - - Deserializes a given input @a i to a JSON value using the CBOR (Concise - Binary Object Representation) serialization format. - - The library maps CBOR types to JSON value types as follows: - - CBOR type | JSON value type | first byte - ---------------------- | --------------- | ---------- - Integer | number_unsigned | 0x00..0x17 - Unsigned integer | number_unsigned | 0x18 - Unsigned integer | number_unsigned | 0x19 - Unsigned integer | number_unsigned | 0x1A - Unsigned integer | number_unsigned | 0x1B - Negative integer | number_integer | 0x20..0x37 - Negative integer | number_integer | 0x38 - Negative integer | number_integer | 0x39 - Negative integer | number_integer | 0x3A - Negative integer | number_integer | 0x3B - Byte string | binary | 0x40..0x57 - Byte string | binary | 0x58 - Byte string | binary | 0x59 - Byte string | binary | 0x5A - Byte string | binary | 0x5B - UTF-8 string | string | 0x60..0x77 - UTF-8 string | string | 0x78 - UTF-8 string | string | 0x79 - UTF-8 string | string | 0x7A - UTF-8 string | string | 0x7B - UTF-8 string | string | 0x7F - array | array | 0x80..0x97 - array | array | 0x98 - array | array | 0x99 - array | array | 0x9A - array | array | 0x9B - array | array | 0x9F - map | object | 0xA0..0xB7 - map | object | 0xB8 - map | object | 0xB9 - map | object | 0xBA - map | object | 0xBB - map | object | 0xBF - False | `false` | 0xF4 - True | `true` | 0xF5 - Null | `null` | 0xF6 - Half-Precision Float | number_float | 0xF9 - Single-Precision Float | number_float | 0xFA - Double-Precision Float | number_float | 0xFB - - @warning The mapping is **incomplete** in the sense that not all CBOR - types can be converted to a JSON value. The following CBOR types - are not supported and will yield parse errors (parse_error.112): - - date/time (0xC0..0xC1) - - bignum (0xC2..0xC3) - - decimal fraction (0xC4) - - bigfloat (0xC5) - - expected conversions (0xD5..0xD7) - - simple values (0xE0..0xF3, 0xF8) - - undefined (0xF7) - - @warning CBOR allows map keys of any type, whereas JSON only allows - strings as keys in object values. Therefore, CBOR maps with keys - other than UTF-8 strings are rejected (parse_error.113). - - @note Any CBOR output created @ref to_cbor can be successfully parsed by - @ref from_cbor. - - @param[in] i an input in CBOR format convertible to an input adapter - @param[in] strict whether to expect the input to be consumed until EOF - (true by default) - @param[in] allow_exceptions whether to throw exceptions in case of a - parse error (optional, true by default) - @param[in] tag_handler how to treat CBOR tags (optional, error by default) - - @return deserialized JSON value; in case of a parse error and - @a allow_exceptions set to `false`, the return value will be - value_t::discarded. - - @throw parse_error.110 if the given input ends prematurely or the end of - file was not reached when @a strict was set to true - @throw parse_error.112 if unsupported features from CBOR were - used in the given input @a v or if the input is not valid CBOR - @throw parse_error.113 if a string was expected as map key, but not found - - @complexity Linear in the size of the input @a i. - - @liveexample{The example shows the deserialization of a byte vector in CBOR - format to a JSON value.,from_cbor} - - @sa http://cbor.io - @sa @ref to_cbor(const basic_json&) for the analogous serialization - @sa @ref from_msgpack(detail::input_adapter&&, const bool, const bool) for the - related MessagePack format - @sa @ref from_ubjson(detail::input_adapter&&, const bool, const bool) for the - related UBJSON format - - @since version 2.0.9; parameter @a start_index since 2.1.1; changed to - consume input adapters, removed start_index parameter, and added - @a strict parameter since 3.0.0; added @a allow_exceptions parameter - since 3.2.0; added @a tag_handler parameter since 3.9.0. - */ - template - JSON_HEDLEY_WARN_UNUSED_RESULT - static basic_json from_cbor(InputType&& i, - const bool strict = true, - const bool allow_exceptions = true, - const cbor_tag_handler_t tag_handler = cbor_tag_handler_t::error) - { - basic_json result; - detail::json_sax_dom_parser sdp(result, allow_exceptions); - auto ia = detail::input_adapter(std::forward(i)); - const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::cbor, &sdp, strict, tag_handler); - return res ? result : basic_json(value_t::discarded); - } - - /*! - @copydoc from_cbor(detail::input_adapter&&, const bool, const bool, const cbor_tag_handler_t) - */ - template - JSON_HEDLEY_WARN_UNUSED_RESULT - static basic_json from_cbor(IteratorType first, IteratorType last, - const bool strict = true, - const bool allow_exceptions = true, - const cbor_tag_handler_t tag_handler = cbor_tag_handler_t::error) - { - basic_json result; - detail::json_sax_dom_parser sdp(result, allow_exceptions); - auto ia = detail::input_adapter(std::move(first), std::move(last)); - const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::cbor, &sdp, strict, tag_handler); - return res ? result : basic_json(value_t::discarded); - } - - template - JSON_HEDLEY_WARN_UNUSED_RESULT - JSON_HEDLEY_DEPRECATED_FOR(3.8.0, from_cbor(ptr, ptr + len)) - static basic_json from_cbor(const T* ptr, std::size_t len, - const bool strict = true, - const bool allow_exceptions = true, - const cbor_tag_handler_t tag_handler = cbor_tag_handler_t::error) - { - return from_cbor(ptr, ptr + len, strict, allow_exceptions, tag_handler); - } - - - JSON_HEDLEY_WARN_UNUSED_RESULT - JSON_HEDLEY_DEPRECATED_FOR(3.8.0, from_cbor(ptr, ptr + len)) - static basic_json from_cbor(detail::span_input_adapter&& i, - const bool strict = true, - const bool allow_exceptions = true, - const cbor_tag_handler_t tag_handler = cbor_tag_handler_t::error) - { - basic_json result; - detail::json_sax_dom_parser sdp(result, allow_exceptions); - auto ia = i.get(); - const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::cbor, &sdp, strict, tag_handler); - return res ? result : basic_json(value_t::discarded); - } - - /*! - @brief create a JSON value from an input in MessagePack format - - Deserializes a given input @a i to a JSON value using the MessagePack - serialization format. - - The library maps MessagePack types to JSON value types as follows: - - MessagePack type | JSON value type | first byte - ---------------- | --------------- | ---------- - positive fixint | number_unsigned | 0x00..0x7F - fixmap | object | 0x80..0x8F - fixarray | array | 0x90..0x9F - fixstr | string | 0xA0..0xBF - nil | `null` | 0xC0 - false | `false` | 0xC2 - true | `true` | 0xC3 - float 32 | number_float | 0xCA - float 64 | number_float | 0xCB - uint 8 | number_unsigned | 0xCC - uint 16 | number_unsigned | 0xCD - uint 32 | number_unsigned | 0xCE - uint 64 | number_unsigned | 0xCF - int 8 | number_integer | 0xD0 - int 16 | number_integer | 0xD1 - int 32 | number_integer | 0xD2 - int 64 | number_integer | 0xD3 - str 8 | string | 0xD9 - str 16 | string | 0xDA - str 32 | string | 0xDB - array 16 | array | 0xDC - array 32 | array | 0xDD - map 16 | object | 0xDE - map 32 | object | 0xDF - bin 8 | binary | 0xC4 - bin 16 | binary | 0xC5 - bin 32 | binary | 0xC6 - ext 8 | binary | 0xC7 - ext 16 | binary | 0xC8 - ext 32 | binary | 0xC9 - fixext 1 | binary | 0xD4 - fixext 2 | binary | 0xD5 - fixext 4 | binary | 0xD6 - fixext 8 | binary | 0xD7 - fixext 16 | binary | 0xD8 - negative fixint | number_integer | 0xE0-0xFF - - @note Any MessagePack output created @ref to_msgpack can be successfully - parsed by @ref from_msgpack. - - @param[in] i an input in MessagePack format convertible to an input - adapter - @param[in] strict whether to expect the input to be consumed until EOF - (true by default) - @param[in] allow_exceptions whether to throw exceptions in case of a - parse error (optional, true by default) - - @return deserialized JSON value; in case of a parse error and - @a allow_exceptions set to `false`, the return value will be - value_t::discarded. - - @throw parse_error.110 if the given input ends prematurely or the end of - file was not reached when @a strict was set to true - @throw parse_error.112 if unsupported features from MessagePack were - used in the given input @a i or if the input is not valid MessagePack - @throw parse_error.113 if a string was expected as map key, but not found - - @complexity Linear in the size of the input @a i. - - @liveexample{The example shows the deserialization of a byte vector in - MessagePack format to a JSON value.,from_msgpack} - - @sa http://msgpack.org - @sa @ref to_msgpack(const basic_json&) for the analogous serialization - @sa @ref from_cbor(detail::input_adapter&&, const bool, const bool, const cbor_tag_handler_t) for the - related CBOR format - @sa @ref from_ubjson(detail::input_adapter&&, const bool, const bool) for - the related UBJSON format - @sa @ref from_bson(detail::input_adapter&&, const bool, const bool) for - the related BSON format - - @since version 2.0.9; parameter @a start_index since 2.1.1; changed to - consume input adapters, removed start_index parameter, and added - @a strict parameter since 3.0.0; added @a allow_exceptions parameter - since 3.2.0 - */ - template - JSON_HEDLEY_WARN_UNUSED_RESULT - static basic_json from_msgpack(InputType&& i, - const bool strict = true, - const bool allow_exceptions = true) - { - basic_json result; - detail::json_sax_dom_parser sdp(result, allow_exceptions); - auto ia = detail::input_adapter(std::forward(i)); - const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::msgpack, &sdp, strict); - return res ? result : basic_json(value_t::discarded); - } - - /*! - @copydoc from_msgpack(detail::input_adapter&&, const bool, const bool) - */ - template - JSON_HEDLEY_WARN_UNUSED_RESULT - static basic_json from_msgpack(IteratorType first, IteratorType last, - const bool strict = true, - const bool allow_exceptions = true) - { - basic_json result; - detail::json_sax_dom_parser sdp(result, allow_exceptions); - auto ia = detail::input_adapter(std::move(first), std::move(last)); - const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::msgpack, &sdp, strict); - return res ? result : basic_json(value_t::discarded); - } - - - template - JSON_HEDLEY_WARN_UNUSED_RESULT - JSON_HEDLEY_DEPRECATED_FOR(3.8.0, from_msgpack(ptr, ptr + len)) - static basic_json from_msgpack(const T* ptr, std::size_t len, - const bool strict = true, - const bool allow_exceptions = true) - { - return from_msgpack(ptr, ptr + len, strict, allow_exceptions); - } - - JSON_HEDLEY_WARN_UNUSED_RESULT - JSON_HEDLEY_DEPRECATED_FOR(3.8.0, from_msgpack(ptr, ptr + len)) - static basic_json from_msgpack(detail::span_input_adapter&& i, - const bool strict = true, - const bool allow_exceptions = true) - { - basic_json result; - detail::json_sax_dom_parser sdp(result, allow_exceptions); - auto ia = i.get(); - const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::msgpack, &sdp, strict); - return res ? result : basic_json(value_t::discarded); - } - - - /*! - @brief create a JSON value from an input in UBJSON format - - Deserializes a given input @a i to a JSON value using the UBJSON (Universal - Binary JSON) serialization format. - - The library maps UBJSON types to JSON value types as follows: - - UBJSON type | JSON value type | marker - ----------- | --------------------------------------- | ------ - no-op | *no value, next value is read* | `N` - null | `null` | `Z` - false | `false` | `F` - true | `true` | `T` - float32 | number_float | `d` - float64 | number_float | `D` - uint8 | number_unsigned | `U` - int8 | number_integer | `i` - int16 | number_integer | `I` - int32 | number_integer | `l` - int64 | number_integer | `L` - high-precision number | number_integer, number_unsigned, or number_float - depends on number string | 'H' - string | string | `S` - char | string | `C` - array | array (optimized values are supported) | `[` - object | object (optimized values are supported) | `{` - - @note The mapping is **complete** in the sense that any UBJSON value can - be converted to a JSON value. - - @param[in] i an input in UBJSON format convertible to an input adapter - @param[in] strict whether to expect the input to be consumed until EOF - (true by default) - @param[in] allow_exceptions whether to throw exceptions in case of a - parse error (optional, true by default) - - @return deserialized JSON value; in case of a parse error and - @a allow_exceptions set to `false`, the return value will be - value_t::discarded. - - @throw parse_error.110 if the given input ends prematurely or the end of - file was not reached when @a strict was set to true - @throw parse_error.112 if a parse error occurs - @throw parse_error.113 if a string could not be parsed successfully - - @complexity Linear in the size of the input @a i. - - @liveexample{The example shows the deserialization of a byte vector in - UBJSON format to a JSON value.,from_ubjson} - - @sa http://ubjson.org - @sa @ref to_ubjson(const basic_json&, const bool, const bool) for the - analogous serialization - @sa @ref from_cbor(detail::input_adapter&&, const bool, const bool, const cbor_tag_handler_t) for the - related CBOR format - @sa @ref from_msgpack(detail::input_adapter&&, const bool, const bool) for - the related MessagePack format - @sa @ref from_bson(detail::input_adapter&&, const bool, const bool) for - the related BSON format - - @since version 3.1.0; added @a allow_exceptions parameter since 3.2.0 - */ - template - JSON_HEDLEY_WARN_UNUSED_RESULT - static basic_json from_ubjson(InputType&& i, - const bool strict = true, - const bool allow_exceptions = true) - { - basic_json result; - detail::json_sax_dom_parser sdp(result, allow_exceptions); - auto ia = detail::input_adapter(std::forward(i)); - const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::ubjson, &sdp, strict); - return res ? result : basic_json(value_t::discarded); - } - - /*! - @copydoc from_ubjson(detail::input_adapter&&, const bool, const bool) - */ - template - JSON_HEDLEY_WARN_UNUSED_RESULT - static basic_json from_ubjson(IteratorType first, IteratorType last, - const bool strict = true, - const bool allow_exceptions = true) - { - basic_json result; - detail::json_sax_dom_parser sdp(result, allow_exceptions); - auto ia = detail::input_adapter(std::move(first), std::move(last)); - const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::ubjson, &sdp, strict); - return res ? result : basic_json(value_t::discarded); - } - - template - JSON_HEDLEY_WARN_UNUSED_RESULT - JSON_HEDLEY_DEPRECATED_FOR(3.8.0, from_ubjson(ptr, ptr + len)) - static basic_json from_ubjson(const T* ptr, std::size_t len, - const bool strict = true, - const bool allow_exceptions = true) - { - return from_ubjson(ptr, ptr + len, strict, allow_exceptions); - } - - JSON_HEDLEY_WARN_UNUSED_RESULT - JSON_HEDLEY_DEPRECATED_FOR(3.8.0, from_ubjson(ptr, ptr + len)) - static basic_json from_ubjson(detail::span_input_adapter&& i, - const bool strict = true, - const bool allow_exceptions = true) - { - basic_json result; - detail::json_sax_dom_parser sdp(result, allow_exceptions); - auto ia = i.get(); - const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::ubjson, &sdp, strict); - return res ? result : basic_json(value_t::discarded); - } - - - /*! - @brief Create a JSON value from an input in BSON format - - Deserializes a given input @a i to a JSON value using the BSON (Binary JSON) - serialization format. - - The library maps BSON record types to JSON value types as follows: - - BSON type | BSON marker byte | JSON value type - --------------- | ---------------- | --------------------------- - double | 0x01 | number_float - string | 0x02 | string - document | 0x03 | object - array | 0x04 | array - binary | 0x05 | still unsupported - undefined | 0x06 | still unsupported - ObjectId | 0x07 | still unsupported - boolean | 0x08 | boolean - UTC Date-Time | 0x09 | still unsupported - null | 0x0A | null - Regular Expr. | 0x0B | still unsupported - DB Pointer | 0x0C | still unsupported - JavaScript Code | 0x0D | still unsupported - Symbol | 0x0E | still unsupported - JavaScript Code | 0x0F | still unsupported - int32 | 0x10 | number_integer - Timestamp | 0x11 | still unsupported - 128-bit decimal float | 0x13 | still unsupported - Max Key | 0x7F | still unsupported - Min Key | 0xFF | still unsupported - - @warning The mapping is **incomplete**. The unsupported mappings - are indicated in the table above. - - @param[in] i an input in BSON format convertible to an input adapter - @param[in] strict whether to expect the input to be consumed until EOF - (true by default) - @param[in] allow_exceptions whether to throw exceptions in case of a - parse error (optional, true by default) - - @return deserialized JSON value; in case of a parse error and - @a allow_exceptions set to `false`, the return value will be - value_t::discarded. - - @throw parse_error.114 if an unsupported BSON record type is encountered - - @complexity Linear in the size of the input @a i. - - @liveexample{The example shows the deserialization of a byte vector in - BSON format to a JSON value.,from_bson} - - @sa http://bsonspec.org/spec.html - @sa @ref to_bson(const basic_json&) for the analogous serialization - @sa @ref from_cbor(detail::input_adapter&&, const bool, const bool, const cbor_tag_handler_t) for the - related CBOR format - @sa @ref from_msgpack(detail::input_adapter&&, const bool, const bool) for - the related MessagePack format - @sa @ref from_ubjson(detail::input_adapter&&, const bool, const bool) for the - related UBJSON format - */ - template - JSON_HEDLEY_WARN_UNUSED_RESULT - static basic_json from_bson(InputType&& i, - const bool strict = true, - const bool allow_exceptions = true) - { - basic_json result; - detail::json_sax_dom_parser sdp(result, allow_exceptions); - auto ia = detail::input_adapter(std::forward(i)); - const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::bson, &sdp, strict); - return res ? result : basic_json(value_t::discarded); - } - - /*! - @copydoc from_bson(detail::input_adapter&&, const bool, const bool) - */ - template - JSON_HEDLEY_WARN_UNUSED_RESULT - static basic_json from_bson(IteratorType first, IteratorType last, - const bool strict = true, - const bool allow_exceptions = true) - { - basic_json result; - detail::json_sax_dom_parser sdp(result, allow_exceptions); - auto ia = detail::input_adapter(std::move(first), std::move(last)); - const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::bson, &sdp, strict); - return res ? result : basic_json(value_t::discarded); - } - - template - JSON_HEDLEY_WARN_UNUSED_RESULT - JSON_HEDLEY_DEPRECATED_FOR(3.8.0, from_bson(ptr, ptr + len)) - static basic_json from_bson(const T* ptr, std::size_t len, - const bool strict = true, - const bool allow_exceptions = true) - { - return from_bson(ptr, ptr + len, strict, allow_exceptions); - } - - JSON_HEDLEY_WARN_UNUSED_RESULT - JSON_HEDLEY_DEPRECATED_FOR(3.8.0, from_bson(ptr, ptr + len)) - static basic_json from_bson(detail::span_input_adapter&& i, - const bool strict = true, - const bool allow_exceptions = true) - { - basic_json result; - detail::json_sax_dom_parser sdp(result, allow_exceptions); - auto ia = i.get(); - const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::bson, &sdp, strict); - return res ? result : basic_json(value_t::discarded); - } - /// @} - - ////////////////////////// - // JSON Pointer support // - ////////////////////////// - - /// @name JSON Pointer functions - /// @{ - - /*! - @brief access specified element via JSON Pointer - - Uses a JSON pointer to retrieve a reference to the respective JSON value. - No bound checking is performed. Similar to @ref operator[](const typename - object_t::key_type&), `null` values are created in arrays and objects if - necessary. - - In particular: - - If the JSON pointer points to an object key that does not exist, it - is created an filled with a `null` value before a reference to it - is returned. - - If the JSON pointer points to an array index that does not exist, it - is created an filled with a `null` value before a reference to it - is returned. All indices between the current maximum and the given - index are also filled with `null`. - - The special value `-` is treated as a synonym for the index past the - end. - - @param[in] ptr a JSON pointer - - @return reference to the element pointed to by @a ptr - - @complexity Constant. - - @throw parse_error.106 if an array index begins with '0' - @throw parse_error.109 if an array index was not a number - @throw out_of_range.404 if the JSON pointer can not be resolved - - @liveexample{The behavior is shown in the example.,operatorjson_pointer} - - @since version 2.0.0 - */ - reference operator[](const json_pointer& ptr) - { - return ptr.get_unchecked(this); - } - - /*! - @brief access specified element via JSON Pointer - - Uses a JSON pointer to retrieve a reference to the respective JSON value. - No bound checking is performed. The function does not change the JSON - value; no `null` values are created. In particular, the special value - `-` yields an exception. - - @param[in] ptr JSON pointer to the desired element - - @return const reference to the element pointed to by @a ptr - - @complexity Constant. - - @throw parse_error.106 if an array index begins with '0' - @throw parse_error.109 if an array index was not a number - @throw out_of_range.402 if the array index '-' is used - @throw out_of_range.404 if the JSON pointer can not be resolved - - @liveexample{The behavior is shown in the example.,operatorjson_pointer_const} - - @since version 2.0.0 - */ - const_reference operator[](const json_pointer& ptr) const - { - return ptr.get_unchecked(this); - } - - /*! - @brief access specified element via JSON Pointer - - Returns a reference to the element at with specified JSON pointer @a ptr, - with bounds checking. - - @param[in] ptr JSON pointer to the desired element - - @return reference to the element pointed to by @a ptr - - @throw parse_error.106 if an array index in the passed JSON pointer @a ptr - begins with '0'. See example below. - - @throw parse_error.109 if an array index in the passed JSON pointer @a ptr - is not a number. See example below. - - @throw out_of_range.401 if an array index in the passed JSON pointer @a ptr - is out of range. See example below. - - @throw out_of_range.402 if the array index '-' is used in the passed JSON - pointer @a ptr. As `at` provides checked access (and no elements are - implicitly inserted), the index '-' is always invalid. See example below. - - @throw out_of_range.403 if the JSON pointer describes a key of an object - which cannot be found. See example below. - - @throw out_of_range.404 if the JSON pointer @a ptr can not be resolved. - See example below. - - @exceptionsafety Strong guarantee: if an exception is thrown, there are no - changes in the JSON value. - - @complexity Constant. - - @since version 2.0.0 - - @liveexample{The behavior is shown in the example.,at_json_pointer} - */ - reference at(const json_pointer& ptr) - { - return ptr.get_checked(this); - } - - /*! - @brief access specified element via JSON Pointer - - Returns a const reference to the element at with specified JSON pointer @a - ptr, with bounds checking. - - @param[in] ptr JSON pointer to the desired element - - @return reference to the element pointed to by @a ptr - - @throw parse_error.106 if an array index in the passed JSON pointer @a ptr - begins with '0'. See example below. - - @throw parse_error.109 if an array index in the passed JSON pointer @a ptr - is not a number. See example below. - - @throw out_of_range.401 if an array index in the passed JSON pointer @a ptr - is out of range. See example below. - - @throw out_of_range.402 if the array index '-' is used in the passed JSON - pointer @a ptr. As `at` provides checked access (and no elements are - implicitly inserted), the index '-' is always invalid. See example below. - - @throw out_of_range.403 if the JSON pointer describes a key of an object - which cannot be found. See example below. - - @throw out_of_range.404 if the JSON pointer @a ptr can not be resolved. - See example below. - - @exceptionsafety Strong guarantee: if an exception is thrown, there are no - changes in the JSON value. - - @complexity Constant. - - @since version 2.0.0 - - @liveexample{The behavior is shown in the example.,at_json_pointer_const} - */ - const_reference at(const json_pointer& ptr) const - { - return ptr.get_checked(this); - } - - /*! - @brief return flattened JSON value - - The function creates a JSON object whose keys are JSON pointers (see [RFC - 6901](https://tools.ietf.org/html/rfc6901)) and whose values are all - primitive. The original JSON value can be restored using the @ref - unflatten() function. - - @return an object that maps JSON pointers to primitive values - - @note Empty objects and arrays are flattened to `null` and will not be - reconstructed correctly by the @ref unflatten() function. - - @complexity Linear in the size the JSON value. - - @liveexample{The following code shows how a JSON object is flattened to an - object whose keys consist of JSON pointers.,flatten} - - @sa @ref unflatten() for the reverse function - - @since version 2.0.0 - */ - basic_json flatten() const - { - basic_json result(value_t::object); - json_pointer::flatten("", *this, result); - return result; - } - - /*! - @brief unflatten a previously flattened JSON value - - The function restores the arbitrary nesting of a JSON value that has been - flattened before using the @ref flatten() function. The JSON value must - meet certain constraints: - 1. The value must be an object. - 2. The keys must be JSON pointers (see - [RFC 6901](https://tools.ietf.org/html/rfc6901)) - 3. The mapped values must be primitive JSON types. - - @return the original JSON from a flattened version - - @note Empty objects and arrays are flattened by @ref flatten() to `null` - values and can not unflattened to their original type. Apart from - this example, for a JSON value `j`, the following is always true: - `j == j.flatten().unflatten()`. - - @complexity Linear in the size the JSON value. - - @throw type_error.314 if value is not an object - @throw type_error.315 if object values are not primitive - - @liveexample{The following code shows how a flattened JSON object is - unflattened into the original nested JSON object.,unflatten} - - @sa @ref flatten() for the reverse function - - @since version 2.0.0 - */ - basic_json unflatten() const - { - return json_pointer::unflatten(*this); - } - - /// @} - - ////////////////////////// - // JSON Patch functions // - ////////////////////////// - - /// @name JSON Patch functions - /// @{ - - /*! - @brief applies a JSON patch - - [JSON Patch](http://jsonpatch.com) defines a JSON document structure for - expressing a sequence of operations to apply to a JSON) document. With - this function, a JSON Patch is applied to the current JSON value by - executing all operations from the patch. - - @param[in] json_patch JSON patch document - @return patched document - - @note The application of a patch is atomic: Either all operations succeed - and the patched document is returned or an exception is thrown. In - any case, the original value is not changed: the patch is applied - to a copy of the value. - - @throw parse_error.104 if the JSON patch does not consist of an array of - objects - - @throw parse_error.105 if the JSON patch is malformed (e.g., mandatory - attributes are missing); example: `"operation add must have member path"` - - @throw out_of_range.401 if an array index is out of range. - - @throw out_of_range.403 if a JSON pointer inside the patch could not be - resolved successfully in the current JSON value; example: `"key baz not - found"` - - @throw out_of_range.405 if JSON pointer has no parent ("add", "remove", - "move") - - @throw other_error.501 if "test" operation was unsuccessful - - @complexity Linear in the size of the JSON value and the length of the - JSON patch. As usually only a fraction of the JSON value is affected by - the patch, the complexity can usually be neglected. - - @liveexample{The following code shows how a JSON patch is applied to a - value.,patch} - - @sa @ref diff -- create a JSON patch by comparing two JSON values - - @sa [RFC 6902 (JSON Patch)](https://tools.ietf.org/html/rfc6902) - @sa [RFC 6901 (JSON Pointer)](https://tools.ietf.org/html/rfc6901) - - @since version 2.0.0 - */ - basic_json patch(const basic_json& json_patch) const - { - // make a working copy to apply the patch to - basic_json result = *this; - - // the valid JSON Patch operations - enum class patch_operations {add, remove, replace, move, copy, test, invalid}; - - const auto get_op = [](const std::string & op) - { - if (op == "add") - { - return patch_operations::add; - } - if (op == "remove") - { - return patch_operations::remove; - } - if (op == "replace") - { - return patch_operations::replace; - } - if (op == "move") - { - return patch_operations::move; - } - if (op == "copy") - { - return patch_operations::copy; - } - if (op == "test") - { - return patch_operations::test; - } - - return patch_operations::invalid; - }; - - // wrapper for "add" operation; add value at ptr - const auto operation_add = [&result](json_pointer & ptr, basic_json val) - { - // adding to the root of the target document means replacing it - if (ptr.empty()) - { - result = val; - return; - } - - // make sure the top element of the pointer exists - json_pointer top_pointer = ptr.top(); - if (top_pointer != ptr) - { - result.at(top_pointer); - } - - // get reference to parent of JSON pointer ptr - const auto last_path = ptr.back(); - ptr.pop_back(); - basic_json& parent = result[ptr]; - - switch (parent.m_type) - { - case value_t::null: - case value_t::object: - { - // use operator[] to add value - parent[last_path] = val; - break; - } - - case value_t::array: - { - if (last_path == "-") - { - // special case: append to back - parent.push_back(val); - } - else - { - const auto idx = json_pointer::array_index(last_path); - if (JSON_HEDLEY_UNLIKELY(idx > parent.size())) - { - // avoid undefined behavior - JSON_THROW(out_of_range::create(401, "array index " + std::to_string(idx) + " is out of range")); - } - - // default case: insert add offset - parent.insert(parent.begin() + static_cast(idx), val); - } - break; - } - - // if there exists a parent it cannot be primitive - default: // LCOV_EXCL_LINE - JSON_ASSERT(false); // LCOV_EXCL_LINE - } - }; - - // wrapper for "remove" operation; remove value at ptr - const auto operation_remove = [&result](json_pointer & ptr) - { - // get reference to parent of JSON pointer ptr - const auto last_path = ptr.back(); - ptr.pop_back(); - basic_json& parent = result.at(ptr); - - // remove child - if (parent.is_object()) - { - // perform range check - auto it = parent.find(last_path); - if (JSON_HEDLEY_LIKELY(it != parent.end())) - { - parent.erase(it); - } - else - { - JSON_THROW(out_of_range::create(403, "key '" + last_path + "' not found")); - } - } - else if (parent.is_array()) - { - // note erase performs range check - parent.erase(json_pointer::array_index(last_path)); - } - }; - - // type check: top level value must be an array - if (JSON_HEDLEY_UNLIKELY(!json_patch.is_array())) - { - JSON_THROW(parse_error::create(104, 0, "JSON patch must be an array of objects")); - } - - // iterate and apply the operations - for (const auto& val : json_patch) - { - // wrapper to get a value for an operation - const auto get_value = [&val](const std::string & op, - const std::string & member, - bool string_type) -> basic_json & - { - // find value - auto it = val.m_value.object->find(member); - - // context-sensitive error message - const auto error_msg = (op == "op") ? "operation" : "operation '" + op + "'"; - - // check if desired value is present - if (JSON_HEDLEY_UNLIKELY(it == val.m_value.object->end())) - { - JSON_THROW(parse_error::create(105, 0, error_msg + " must have member '" + member + "'")); - } - - // check if result is of type string - if (JSON_HEDLEY_UNLIKELY(string_type && !it->second.is_string())) - { - JSON_THROW(parse_error::create(105, 0, error_msg + " must have string member '" + member + "'")); - } - - // no error: return value - return it->second; - }; - - // type check: every element of the array must be an object - if (JSON_HEDLEY_UNLIKELY(!val.is_object())) - { - JSON_THROW(parse_error::create(104, 0, "JSON patch must be an array of objects")); - } - - // collect mandatory members - const auto op = get_value("op", "op", true).template get(); - const auto path = get_value(op, "path", true).template get(); - json_pointer ptr(path); - - switch (get_op(op)) - { - case patch_operations::add: - { - operation_add(ptr, get_value("add", "value", false)); - break; - } - - case patch_operations::remove: - { - operation_remove(ptr); - break; - } - - case patch_operations::replace: - { - // the "path" location must exist - use at() - result.at(ptr) = get_value("replace", "value", false); - break; - } - - case patch_operations::move: - { - const auto from_path = get_value("move", "from", true).template get(); - json_pointer from_ptr(from_path); - - // the "from" location must exist - use at() - basic_json v = result.at(from_ptr); - - // The move operation is functionally identical to a - // "remove" operation on the "from" location, followed - // immediately by an "add" operation at the target - // location with the value that was just removed. - operation_remove(from_ptr); - operation_add(ptr, v); - break; - } - - case patch_operations::copy: - { - const auto from_path = get_value("copy", "from", true).template get(); - const json_pointer from_ptr(from_path); - - // the "from" location must exist - use at() - basic_json v = result.at(from_ptr); - - // The copy is functionally identical to an "add" - // operation at the target location using the value - // specified in the "from" member. - operation_add(ptr, v); - break; - } - - case patch_operations::test: - { - bool success = false; - JSON_TRY - { - // check if "value" matches the one at "path" - // the "path" location must exist - use at() - success = (result.at(ptr) == get_value("test", "value", false)); - } - JSON_INTERNAL_CATCH (out_of_range&) - { - // ignore out of range errors: success remains false - } - - // throw an exception if test fails - if (JSON_HEDLEY_UNLIKELY(!success)) - { - JSON_THROW(other_error::create(501, "unsuccessful: " + val.dump())); - } - - break; - } - - default: - { - // op must be "add", "remove", "replace", "move", "copy", or - // "test" - JSON_THROW(parse_error::create(105, 0, "operation value '" + op + "' is invalid")); - } - } - } - - return result; - } - - /*! - @brief creates a diff as a JSON patch - - Creates a [JSON Patch](http://jsonpatch.com) so that value @a source can - be changed into the value @a target by calling @ref patch function. - - @invariant For two JSON values @a source and @a target, the following code - yields always `true`: - @code {.cpp} - source.patch(diff(source, target)) == target; - @endcode - - @note Currently, only `remove`, `add`, and `replace` operations are - generated. - - @param[in] source JSON value to compare from - @param[in] target JSON value to compare against - @param[in] path helper value to create JSON pointers - - @return a JSON patch to convert the @a source to @a target - - @complexity Linear in the lengths of @a source and @a target. - - @liveexample{The following code shows how a JSON patch is created as a - diff for two JSON values.,diff} - - @sa @ref patch -- apply a JSON patch - @sa @ref merge_patch -- apply a JSON Merge Patch - - @sa [RFC 6902 (JSON Patch)](https://tools.ietf.org/html/rfc6902) - - @since version 2.0.0 - */ - JSON_HEDLEY_WARN_UNUSED_RESULT - static basic_json diff(const basic_json& source, const basic_json& target, - const std::string& path = "") - { - // the patch - basic_json result(value_t::array); - - // if the values are the same, return empty patch - if (source == target) - { - return result; - } - - if (source.type() != target.type()) - { - // different types: replace value - result.push_back( - { - {"op", "replace"}, {"path", path}, {"value", target} - }); - return result; - } - - switch (source.type()) - { - case value_t::array: - { - // first pass: traverse common elements - std::size_t i = 0; - while (i < source.size() && i < target.size()) - { - // recursive call to compare array values at index i - auto temp_diff = diff(source[i], target[i], path + "/" + std::to_string(i)); - result.insert(result.end(), temp_diff.begin(), temp_diff.end()); - ++i; - } - - // i now reached the end of at least one array - // in a second pass, traverse the remaining elements - - // remove my remaining elements - const auto end_index = static_cast(result.size()); - while (i < source.size()) - { - // add operations in reverse order to avoid invalid - // indices - result.insert(result.begin() + end_index, object( - { - {"op", "remove"}, - {"path", path + "/" + std::to_string(i)} - })); - ++i; - } - - // add other remaining elements - while (i < target.size()) - { - result.push_back( - { - {"op", "add"}, - {"path", path + "/-"}, - {"value", target[i]} - }); - ++i; - } - - break; - } - - case value_t::object: - { - // first pass: traverse this object's elements - for (auto it = source.cbegin(); it != source.cend(); ++it) - { - // escape the key name to be used in a JSON patch - const auto key = json_pointer::escape(it.key()); - - if (target.find(it.key()) != target.end()) - { - // recursive call to compare object values at key it - auto temp_diff = diff(it.value(), target[it.key()], path + "/" + key); - result.insert(result.end(), temp_diff.begin(), temp_diff.end()); - } - else - { - // found a key that is not in o -> remove it - result.push_back(object( - { - {"op", "remove"}, {"path", path + "/" + key} - })); - } - } - - // second pass: traverse other object's elements - for (auto it = target.cbegin(); it != target.cend(); ++it) - { - if (source.find(it.key()) == source.end()) - { - // found a key that is not in this -> add it - const auto key = json_pointer::escape(it.key()); - result.push_back( - { - {"op", "add"}, {"path", path + "/" + key}, - {"value", it.value()} - }); - } - } - - break; - } - - default: - { - // both primitive type: replace value - result.push_back( - { - {"op", "replace"}, {"path", path}, {"value", target} - }); - break; - } - } - - return result; - } - - /// @} - - //////////////////////////////// - // JSON Merge Patch functions // - //////////////////////////////// - - /// @name JSON Merge Patch functions - /// @{ - - /*! - @brief applies a JSON Merge Patch - - The merge patch format is primarily intended for use with the HTTP PATCH - method as a means of describing a set of modifications to a target - resource's content. This function applies a merge patch to the current - JSON value. - - The function implements the following algorithm from Section 2 of - [RFC 7396 (JSON Merge Patch)](https://tools.ietf.org/html/rfc7396): - - ``` - define MergePatch(Target, Patch): - if Patch is an Object: - if Target is not an Object: - Target = {} // Ignore the contents and set it to an empty Object - for each Name/Value pair in Patch: - if Value is null: - if Name exists in Target: - remove the Name/Value pair from Target - else: - Target[Name] = MergePatch(Target[Name], Value) - return Target - else: - return Patch - ``` - - Thereby, `Target` is the current object; that is, the patch is applied to - the current value. - - @param[in] apply_patch the patch to apply - - @complexity Linear in the lengths of @a patch. - - @liveexample{The following code shows how a JSON Merge Patch is applied to - a JSON document.,merge_patch} - - @sa @ref patch -- apply a JSON patch - @sa [RFC 7396 (JSON Merge Patch)](https://tools.ietf.org/html/rfc7396) - - @since version 3.0.0 - */ - void merge_patch(const basic_json& apply_patch) - { - if (apply_patch.is_object()) - { - if (!is_object()) - { - *this = object(); - } - for (auto it = apply_patch.begin(); it != apply_patch.end(); ++it) - { - if (it.value().is_null()) - { - erase(it.key()); - } - else - { - operator[](it.key()).merge_patch(it.value()); - } - } - } - else - { - *this = apply_patch; - } - } - - /// @} -}; - -/*! -@brief user-defined to_string function for JSON values - -This function implements a user-defined to_string for JSON objects. - -@param[in] j a JSON object -@return a std::string object -*/ - -NLOHMANN_BASIC_JSON_TPL_DECLARATION -std::string to_string(const NLOHMANN_BASIC_JSON_TPL& j) -{ - return j.dump(); -} -} // namespace nlohmann - -/////////////////////// -// nonmember support // -/////////////////////// - -// specialization of std::swap, and std::hash -namespace std -{ - -/// hash value for JSON objects -template<> -struct hash -{ - /*! - @brief return a hash value for a JSON object - - @since version 1.0.0 - */ - std::size_t operator()(const nlohmann::json& j) const - { - return nlohmann::detail::hash(j); - } -}; - -/// specialization for std::less -/// @note: do not remove the space after '<', -/// see https://github.com/nlohmann/json/pull/679 -template<> -struct less<::nlohmann::detail::value_t> -{ - /*! - @brief compare two value_t enum values - @since version 3.0.0 - */ - bool operator()(nlohmann::detail::value_t lhs, - nlohmann::detail::value_t rhs) const noexcept - { - return nlohmann::detail::operator<(lhs, rhs); - } -}; - -// C++20 prohibit function specialization in the std namespace. -#ifndef JSON_HAS_CPP_20 - -/*! -@brief exchanges the values of two JSON objects - -@since version 1.0.0 -*/ -template<> -inline void swap(nlohmann::json& j1, nlohmann::json& j2) noexcept( - is_nothrow_move_constructible::value&& - is_nothrow_move_assignable::value - ) -{ - j1.swap(j2); -} - -#endif - -} // namespace std - -/*! -@brief user-defined string literal for JSON values - -This operator implements a user-defined string literal for JSON objects. It -can be used by adding `"_json"` to a string literal and returns a JSON object -if no parse error occurred. - -@param[in] s a string representation of a JSON object -@param[in] n the length of string @a s -@return a JSON object - -@since version 1.0.0 -*/ -JSON_HEDLEY_NON_NULL(1) -inline nlohmann::json operator "" _json(const char* s, std::size_t n) -{ - return nlohmann::json::parse(s, s + n); -} - -/*! -@brief user-defined string literal for JSON pointer - -This operator implements a user-defined string literal for JSON Pointers. It -can be used by adding `"_json_pointer"` to a string literal and returns a JSON pointer -object if no parse error occurred. - -@param[in] s a string representation of a JSON Pointer -@param[in] n the length of string @a s -@return a JSON pointer object - -@since version 2.0.0 -*/ -JSON_HEDLEY_NON_NULL(1) -inline nlohmann::json::json_pointer operator "" _json_pointer(const char* s, std::size_t n) -{ - return nlohmann::json::json_pointer(std::string(s, n)); -} - -// #include - - -// restore GCC/clang diagnostic settings -#if defined(__clang__) || defined(__GNUC__) || defined(__GNUG__) - #pragma GCC diagnostic pop -#endif -#if defined(__clang__) - #pragma GCC diagnostic pop -#endif - -// clean up -#undef JSON_ASSERT -#undef JSON_INTERNAL_CATCH -#undef JSON_CATCH -#undef JSON_THROW -#undef JSON_TRY -#undef JSON_HAS_CPP_14 -#undef JSON_HAS_CPP_17 -#undef NLOHMANN_BASIC_JSON_TPL_DECLARATION -#undef NLOHMANN_BASIC_JSON_TPL -#undef JSON_EXPLICIT - -// #include -#undef JSON_HEDLEY_ALWAYS_INLINE -#undef JSON_HEDLEY_ARM_VERSION -#undef JSON_HEDLEY_ARM_VERSION_CHECK -#undef JSON_HEDLEY_ARRAY_PARAM -#undef JSON_HEDLEY_ASSUME -#undef JSON_HEDLEY_BEGIN_C_DECLS -#undef JSON_HEDLEY_CLANG_HAS_ATTRIBUTE -#undef JSON_HEDLEY_CLANG_HAS_BUILTIN -#undef JSON_HEDLEY_CLANG_HAS_CPP_ATTRIBUTE -#undef JSON_HEDLEY_CLANG_HAS_DECLSPEC_DECLSPEC_ATTRIBUTE -#undef JSON_HEDLEY_CLANG_HAS_EXTENSION -#undef JSON_HEDLEY_CLANG_HAS_FEATURE -#undef JSON_HEDLEY_CLANG_HAS_WARNING -#undef JSON_HEDLEY_COMPCERT_VERSION -#undef JSON_HEDLEY_COMPCERT_VERSION_CHECK -#undef JSON_HEDLEY_CONCAT -#undef JSON_HEDLEY_CONCAT3 -#undef JSON_HEDLEY_CONCAT3_EX -#undef JSON_HEDLEY_CONCAT_EX -#undef JSON_HEDLEY_CONST -#undef JSON_HEDLEY_CONSTEXPR -#undef JSON_HEDLEY_CONST_CAST -#undef JSON_HEDLEY_CPP_CAST -#undef JSON_HEDLEY_CRAY_VERSION -#undef JSON_HEDLEY_CRAY_VERSION_CHECK -#undef JSON_HEDLEY_C_DECL -#undef JSON_HEDLEY_DEPRECATED -#undef JSON_HEDLEY_DEPRECATED_FOR -#undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL -#undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_ -#undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED -#undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES -#undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS -#undef JSON_HEDLEY_DIAGNOSTIC_POP -#undef JSON_HEDLEY_DIAGNOSTIC_PUSH -#undef JSON_HEDLEY_DMC_VERSION -#undef JSON_HEDLEY_DMC_VERSION_CHECK -#undef JSON_HEDLEY_EMPTY_BASES -#undef JSON_HEDLEY_EMSCRIPTEN_VERSION -#undef JSON_HEDLEY_EMSCRIPTEN_VERSION_CHECK -#undef JSON_HEDLEY_END_C_DECLS -#undef JSON_HEDLEY_FLAGS -#undef JSON_HEDLEY_FLAGS_CAST -#undef JSON_HEDLEY_GCC_HAS_ATTRIBUTE -#undef JSON_HEDLEY_GCC_HAS_BUILTIN -#undef JSON_HEDLEY_GCC_HAS_CPP_ATTRIBUTE -#undef JSON_HEDLEY_GCC_HAS_DECLSPEC_ATTRIBUTE -#undef JSON_HEDLEY_GCC_HAS_EXTENSION -#undef JSON_HEDLEY_GCC_HAS_FEATURE -#undef JSON_HEDLEY_GCC_HAS_WARNING -#undef JSON_HEDLEY_GCC_NOT_CLANG_VERSION_CHECK -#undef JSON_HEDLEY_GCC_VERSION -#undef JSON_HEDLEY_GCC_VERSION_CHECK -#undef JSON_HEDLEY_GNUC_HAS_ATTRIBUTE -#undef JSON_HEDLEY_GNUC_HAS_BUILTIN -#undef JSON_HEDLEY_GNUC_HAS_CPP_ATTRIBUTE -#undef JSON_HEDLEY_GNUC_HAS_DECLSPEC_ATTRIBUTE -#undef JSON_HEDLEY_GNUC_HAS_EXTENSION -#undef JSON_HEDLEY_GNUC_HAS_FEATURE -#undef JSON_HEDLEY_GNUC_HAS_WARNING -#undef JSON_HEDLEY_GNUC_VERSION -#undef JSON_HEDLEY_GNUC_VERSION_CHECK -#undef JSON_HEDLEY_HAS_ATTRIBUTE -#undef JSON_HEDLEY_HAS_BUILTIN -#undef JSON_HEDLEY_HAS_CPP_ATTRIBUTE -#undef JSON_HEDLEY_HAS_CPP_ATTRIBUTE_NS -#undef JSON_HEDLEY_HAS_DECLSPEC_ATTRIBUTE -#undef JSON_HEDLEY_HAS_EXTENSION -#undef JSON_HEDLEY_HAS_FEATURE -#undef JSON_HEDLEY_HAS_WARNING -#undef JSON_HEDLEY_IAR_VERSION -#undef JSON_HEDLEY_IAR_VERSION_CHECK -#undef JSON_HEDLEY_IBM_VERSION -#undef JSON_HEDLEY_IBM_VERSION_CHECK -#undef JSON_HEDLEY_IMPORT -#undef JSON_HEDLEY_INLINE -#undef JSON_HEDLEY_INTEL_VERSION -#undef JSON_HEDLEY_INTEL_VERSION_CHECK -#undef JSON_HEDLEY_IS_CONSTANT -#undef JSON_HEDLEY_IS_CONSTEXPR_ -#undef JSON_HEDLEY_LIKELY -#undef JSON_HEDLEY_MALLOC -#undef JSON_HEDLEY_MESSAGE -#undef JSON_HEDLEY_MSVC_VERSION -#undef JSON_HEDLEY_MSVC_VERSION_CHECK -#undef JSON_HEDLEY_NEVER_INLINE -#undef JSON_HEDLEY_NON_NULL -#undef JSON_HEDLEY_NO_ESCAPE -#undef JSON_HEDLEY_NO_RETURN -#undef JSON_HEDLEY_NO_THROW -#undef JSON_HEDLEY_NULL -#undef JSON_HEDLEY_PELLES_VERSION -#undef JSON_HEDLEY_PELLES_VERSION_CHECK -#undef JSON_HEDLEY_PGI_VERSION -#undef JSON_HEDLEY_PGI_VERSION_CHECK -#undef JSON_HEDLEY_PREDICT -#undef JSON_HEDLEY_PRINTF_FORMAT -#undef JSON_HEDLEY_PRIVATE -#undef JSON_HEDLEY_PUBLIC -#undef JSON_HEDLEY_PURE -#undef JSON_HEDLEY_REINTERPRET_CAST -#undef JSON_HEDLEY_REQUIRE -#undef JSON_HEDLEY_REQUIRE_CONSTEXPR -#undef JSON_HEDLEY_REQUIRE_MSG -#undef JSON_HEDLEY_RESTRICT -#undef JSON_HEDLEY_RETURNS_NON_NULL -#undef JSON_HEDLEY_SENTINEL -#undef JSON_HEDLEY_STATIC_ASSERT -#undef JSON_HEDLEY_STATIC_CAST -#undef JSON_HEDLEY_STRINGIFY -#undef JSON_HEDLEY_STRINGIFY_EX -#undef JSON_HEDLEY_SUNPRO_VERSION -#undef JSON_HEDLEY_SUNPRO_VERSION_CHECK -#undef JSON_HEDLEY_TINYC_VERSION -#undef JSON_HEDLEY_TINYC_VERSION_CHECK -#undef JSON_HEDLEY_TI_ARMCL_VERSION -#undef JSON_HEDLEY_TI_ARMCL_VERSION_CHECK -#undef JSON_HEDLEY_TI_CL2000_VERSION -#undef JSON_HEDLEY_TI_CL2000_VERSION_CHECK -#undef JSON_HEDLEY_TI_CL430_VERSION -#undef JSON_HEDLEY_TI_CL430_VERSION_CHECK -#undef JSON_HEDLEY_TI_CL6X_VERSION -#undef JSON_HEDLEY_TI_CL6X_VERSION_CHECK -#undef JSON_HEDLEY_TI_CL7X_VERSION -#undef JSON_HEDLEY_TI_CL7X_VERSION_CHECK -#undef JSON_HEDLEY_TI_CLPRU_VERSION -#undef JSON_HEDLEY_TI_CLPRU_VERSION_CHECK -#undef JSON_HEDLEY_TI_VERSION -#undef JSON_HEDLEY_TI_VERSION_CHECK -#undef JSON_HEDLEY_UNAVAILABLE -#undef JSON_HEDLEY_UNLIKELY -#undef JSON_HEDLEY_UNPREDICTABLE -#undef JSON_HEDLEY_UNREACHABLE -#undef JSON_HEDLEY_UNREACHABLE_RETURN -#undef JSON_HEDLEY_VERSION -#undef JSON_HEDLEY_VERSION_DECODE_MAJOR -#undef JSON_HEDLEY_VERSION_DECODE_MINOR -#undef JSON_HEDLEY_VERSION_DECODE_REVISION -#undef JSON_HEDLEY_VERSION_ENCODE -#undef JSON_HEDLEY_WARNING -#undef JSON_HEDLEY_WARN_UNUSED_RESULT -#undef JSON_HEDLEY_WARN_UNUSED_RESULT_MSG -#undef JSON_HEDLEY_FALL_THROUGH - - - -#endif // INCLUDE_NLOHMANN_JSON_HPP_ diff --git a/ext/pybind11 b/ext/pybind11 new file mode 160000 index 0000000000..aa304c9c7d --- /dev/null +++ b/ext/pybind11 @@ -0,0 +1 @@ +Subproject commit aa304c9c7d725ffb9d10af08a3b34cb372307020 diff --git a/ext/random123 b/ext/random123 new file mode 160000 index 0000000000..726a093cd9 --- /dev/null +++ b/ext/random123 @@ -0,0 +1 @@ +Subproject commit 726a093cd9a73f3ec3c8d7a70ff10ed8efec8d13 diff --git a/ext/random123/LICENSE b/ext/random123/LICENSE deleted file mode 100644 index c6094acaf2..0000000000 --- a/ext/random123/LICENSE +++ /dev/null @@ -1,31 +0,0 @@ -/** @page LICENSE -Copyright 2010-2012, D. E. Shaw Research. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright - notice, this list of conditions, and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright - notice, this list of conditions, and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -* Neither the name of D. E. Shaw Research nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -*/ diff --git a/ext/random123/include/Random123/MicroURNG.hpp b/ext/random123/include/Random123/MicroURNG.hpp deleted file mode 100644 index 9ea7732551..0000000000 --- a/ext/random123/include/Random123/MicroURNG.hpp +++ /dev/null @@ -1,146 +0,0 @@ -/* -Copyright 2010-2011, D. E. Shaw Research. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright - notice, this list of conditions, and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright - notice, this list of conditions, and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -* Neither the name of D. E. Shaw Research nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -*/ -#ifndef __MicroURNG_dot_hpp__ -#define __MicroURNG_dot_hpp__ - -#include -#include - -namespace r123{ -/** - Given a CBRNG whose ctr_type has an unsigned integral value_type, - MicroURNG(c, k) is a type that satisfies the - requirements of a C++11 Uniform Random Number Generator. - - The intended purpose is for a MicroURNG to be passed - as an argument to a C++11 Distribution, e.g., - std::normal_distribution. See examples/MicroURNG.cpp. - - The MicroURNG functor has a period of "only" - - ctr_type.size()*2^32, - - after which it will silently repeat. - - The high 32 bits of the highest word in the counter c, passed to - the constructor must be zero. MicroURNG uses these bits to - "count". - - Older versions of the library permitted a second template - parameter by which the caller could control the number of - bits devoted to the URNG's internal counter. This flexibility - has been disabled because URNGs created with different - numbers of counter bits could, conceivably "collide". - -\code - typedef ?someCBRNG? RNG; - RNG::ctr_type c = ...; // under application control - RNG::key_type k = ...; // - std::normal_distribution nd; - MicroURNG urng(c, k); - for(???){ - ... - nd(urng); // may be called several hundred times with BITS=10 - ... - } -\endcode -*/ - -template -class MicroURNG{ - // According to C++11, a URNG requires only a result_type, - // operator()(), min() and max() methods. Everything else - // (ctr_type, key_type, reset() method, etc.) is "value added" - // for the benefit of users that "know" that they're dealing with - // a MicroURNG. -public: - typedef CBRNG cbrng_type; - static const int BITS = 32; - typedef typename cbrng_type::ctr_type ctr_type; - typedef typename cbrng_type::key_type key_type; - typedef typename cbrng_type::ukey_type ukey_type; - typedef typename ctr_type::value_type result_type; - - R123_STATIC_ASSERT( std::numeric_limits::digits >= BITS, "The result_type must have at least 32 bits" ); - - result_type operator()(){ - if(last_elem == 0){ - // jam n into the high bits of c - const size_t W = std::numeric_limits::digits; - ctr_type c = c0; - c[c0.size()-1] |= n<<(W-BITS); - rdata = b(c,k); - n++; - last_elem = rdata.size(); - } - return rdata[--last_elem]; - } - MicroURNG(cbrng_type _b, ctr_type _c0, ukey_type _uk) : b(_b), c0(_c0), k(_uk), n(0), last_elem(0) { - chkhighbits(); - } - MicroURNG(ctr_type _c0, ukey_type _uk) : b(), c0(_c0), k(_uk), n(0), last_elem(0) { - chkhighbits(); - } - - // _Min and _Max work around a bug in the library shipped with MacOS Xcode 4.5.2. - // See the commment in conventional/Engine.hpp. - const static result_type _Min = 0; - const static result_type _Max = ~((result_type)0); - - static R123_CONSTEXPR result_type min R123_NO_MACRO_SUBST () { return _Min; } - static R123_CONSTEXPR result_type max R123_NO_MACRO_SUBST () { return _Max; } - // extra methods: - const ctr_type& counter() const{ return c0; } - void reset(ctr_type _c0, ukey_type _uk){ - c0 = _c0; - chkhighbits(); - k = _uk; - n = 0; - last_elem = 0; - } - -private: - cbrng_type b; - ctr_type c0; - key_type k; - R123_ULONG_LONG n; - size_t last_elem; - ctr_type rdata; - void chkhighbits(){ - result_type r = c0[c0.size()-1]; - result_type mask = ((uint64_t)std::numeric_limits::max R123_NO_MACRO_SUBST ())>>BITS; - if((r&mask) != r) - throw std::runtime_error("MicroURNG: c0, does not have high bits clear"); - } -}; -} // namespace r123 -#endif diff --git a/ext/random123/include/Random123/ReinterpretCtr.hpp b/ext/random123/include/Random123/ReinterpretCtr.hpp deleted file mode 100644 index 164a38b0a5..0000000000 --- a/ext/random123/include/Random123/ReinterpretCtr.hpp +++ /dev/null @@ -1,88 +0,0 @@ -/* -Copyright 2010-2011, D. E. Shaw Research. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright - notice, this list of conditions, and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright - notice, this list of conditions, and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -* Neither the name of D. E. Shaw Research nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -*/ -#ifndef __ReinterpretCtr_dot_hpp__ -#define __ReinterpretCtr_dot_hpp__ - -#include "features/compilerfeatures.h" -#include - -namespace r123{ -/*! - ReinterpretCtr uses memcpy to map back and forth - between a CBRNG's ctr_type and the specified ToType. For example, - after: - - typedef ReinterpretCtr G; - - G is a bona fide CBRNG with ctr_type r123array4x32. - - WARNING: ReinterpretCtr is endian dependent. The - values returned by G, declared as above, - will depend on the endianness of the machine on which it runs. - */ - -template -struct ReinterpretCtr{ - typedef ToType ctr_type; - typedef typename CBRNG::key_type key_type; - typedef typename CBRNG::ctr_type bctype; - typedef typename CBRNG::ukey_type ukey_type; - R123_STATIC_ASSERT(sizeof(ToType) == sizeof(bctype) && sizeof(typename bctype::value_type) != 16, - "ReinterpretCtr: sizeof(ToType) is not the same as sizeof(CBRNG::ctr_type) or CBRNG::ctr_type::value_type looks like it might be __m128i"); - // It's amazingly difficult to safely do conversions with __m128i. - // If we use the operator() implementation below with a CBRNG - // whose ctr_type is r123array1xm128i, gcc4.6 optimizes away the - // memcpys, inlines the operator()(c,k), and produces assembly - // language that ends with an aesenclast instruction with a - // destination operand pointing to an unaligned memory address ... - // Segfault! See: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50444 - // MSVC also produces code that crashes. We suspect a - // similar mechanism but haven't done the debugging necessary to - // be sure. We were able to 'fix' gcc4.6 by making bc a mutable - // data member rather than declaring it in the scope of - // operator(). That didn't fix the MSVC problems, though. - // - // Conclusion - don't touch __m128i, at least for now. The - // easiest (but highly imprecise) way to do that is the static - // assertion above that rejects bctype::value_types of size 16. - - // Sep 2011. - ctr_type operator()(ctr_type c, key_type k){ - bctype bc; - std::memcpy(&bc, &c, sizeof(c)); - CBRNG b; - bc = b(bc, k); - std::memcpy(&c, &bc, sizeof(bc)); - return c; - } -}; -} // namespace r123 -#endif diff --git a/ext/random123/include/Random123/aes.h b/ext/random123/include/Random123/aes.h deleted file mode 100644 index 3095fac37d..0000000000 --- a/ext/random123/include/Random123/aes.h +++ /dev/null @@ -1,398 +0,0 @@ -/* -Copyright 2010-2011, D. E. Shaw Research. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright - notice, this list of conditions, and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright - notice, this list of conditions, and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -* Neither the name of D. E. Shaw Research nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -*/ -#ifndef __Random123_aes_dot_hpp__ -#define __Random123_aes_dot_hpp__ - -#include "features/compilerfeatures.h" -#include "array.h" - -/* Implement a bona fide AES block cipher. It's minimally -// checked against the test vector in FIPS-197 in ut_aes.cpp. */ -#if R123_USE_AES_NI - -/** @ingroup AESNI */ -typedef struct r123array1xm128i aesni1xm128i_ctr_t; -/** @ingroup AESNI */ -typedef struct r123array1xm128i aesni1xm128i_ukey_t; -/** @ingroup AESNI */ -typedef struct r123array4x32 aesni4x32_ukey_t; -/** @ingroup AESNI */ -enum r123_enum_aesni1xm128i { aesni1xm128i_rounds = 10 }; - -/** \cond HIDDEN_FROM_DOXYGEN */ -R123_STATIC_INLINE __m128i AES_128_ASSIST (__m128i temp1, __m128i temp2) { - __m128i temp3; - temp2 = _mm_shuffle_epi32 (temp2 ,0xff); - temp3 = _mm_slli_si128 (temp1, 0x4); - temp1 = _mm_xor_si128 (temp1, temp3); - temp3 = _mm_slli_si128 (temp3, 0x4); - temp1 = _mm_xor_si128 (temp1, temp3); - temp3 = _mm_slli_si128 (temp3, 0x4); - temp1 = _mm_xor_si128 (temp1, temp3); - temp1 = _mm_xor_si128 (temp1, temp2); - return temp1; -} - -R123_STATIC_INLINE void aesni1xm128iexpand(aesni1xm128i_ukey_t uk, __m128i ret[11]) -{ - __m128i rkey = uk.v[0].m; - __m128i tmp2; - - ret[0] = rkey; - tmp2 = _mm_aeskeygenassist_si128(rkey, 0x1); - rkey = AES_128_ASSIST(rkey, tmp2); - ret[1] = rkey; - - tmp2 = _mm_aeskeygenassist_si128(rkey, 0x2); - rkey = AES_128_ASSIST(rkey, tmp2); - ret[2] = rkey; - - tmp2 = _mm_aeskeygenassist_si128(rkey, 0x4); - rkey = AES_128_ASSIST(rkey, tmp2); - ret[3] = rkey; - - tmp2 = _mm_aeskeygenassist_si128(rkey, 0x8); - rkey = AES_128_ASSIST(rkey, tmp2); - ret[4] = rkey; - - tmp2 = _mm_aeskeygenassist_si128(rkey, 0x10); - rkey = AES_128_ASSIST(rkey, tmp2); - ret[5] = rkey; - - tmp2 = _mm_aeskeygenassist_si128(rkey, 0x20); - rkey = AES_128_ASSIST(rkey, tmp2); - ret[6] = rkey; - - tmp2 = _mm_aeskeygenassist_si128(rkey, 0x40); - rkey = AES_128_ASSIST(rkey, tmp2); - ret[7] = rkey; - - tmp2 = _mm_aeskeygenassist_si128(rkey, 0x80); - rkey = AES_128_ASSIST(rkey, tmp2); - ret[8] = rkey; - - tmp2 = _mm_aeskeygenassist_si128(rkey, 0x1b); - rkey = AES_128_ASSIST(rkey, tmp2); - ret[9] = rkey; - - tmp2 = _mm_aeskeygenassist_si128(rkey, 0x36); - rkey = AES_128_ASSIST(rkey, tmp2); - ret[10] = rkey; -} -/** \endcond */ - -#ifdef __cplusplus -/** @ingroup AESNI */ -struct aesni1xm128i_key_t{ - __m128i k[11]; - aesni1xm128i_key_t(){ - aesni1xm128i_ukey_t uk; - uk.v[0].m = _mm_setzero_si128(); - aesni1xm128iexpand(uk, k); - } - aesni1xm128i_key_t(const aesni1xm128i_ukey_t& uk){ - aesni1xm128iexpand(uk, k); - } - aesni1xm128i_key_t(const aesni4x32_ukey_t& uk){ - aesni1xm128i_ukey_t uk128; - uk128.v[0].m = _mm_set_epi32(uk.v[3], uk.v[2], uk.v[1], uk.v[0]); - aesni1xm128iexpand(uk128, k); - } - aesni1xm128i_key_t& operator=(const aesni1xm128i_ukey_t& uk){ - aesni1xm128iexpand(uk, k); - return *this; - } - aesni1xm128i_key_t& operator=(const aesni4x32_ukey_t& uk){ - aesni1xm128i_ukey_t uk128; - uk128.v[0].m = _mm_set_epi32(uk.v[3], uk.v[2], uk.v[1], uk.v[0]); - aesni1xm128iexpand(uk128, k); - return *this; - } - bool operator==(const aesni1xm128i_key_t& rhs) const{ - for(int i=0; i<11; ++i){ - // Sigh... No r123m128i(__m128i) constructor! - r123m128i li; li.m = k[i]; - r123m128i ri; ri.m = rhs.k[i]; - if( li != ri ) return false; - } - return true; - } - bool operator!=(const aesni1xm128i_key_t& rhs) const{ - return !(*this == rhs); - } - friend std::ostream& operator<<(std::ostream& os, const aesni1xm128i_key_t& v){ - r123m128i ki; - for(int i=0; i<10; ++i){ - ki.m = v.k[i]; - os << ki << " "; - } - ki.m = v.k[10]; - return os << ki; - } - friend std::istream& operator>>(std::istream& is, aesni1xm128i_key_t& v){ - r123m128i ki; - for(int i=0; i<11; ++i){ - is >> ki; - v.k[i] = ki; - } - return is; - } -}; -#else -typedef struct { - __m128i k[11]; -}aesni1xm128i_key_t; - -/** @ingroup AESNI */ -R123_STATIC_INLINE aesni1xm128i_key_t aesni1xm128ikeyinit(aesni1xm128i_ukey_t uk){ - aesni1xm128i_key_t ret; - aesni1xm128iexpand(uk, ret.k); - return ret; -} -#endif - -/** @ingroup AESNI */ -R123_STATIC_INLINE aesni1xm128i_ctr_t aesni1xm128i(aesni1xm128i_ctr_t in, aesni1xm128i_key_t k) { - __m128i x = _mm_xor_si128(k.k[0], in.v[0].m); - x = _mm_aesenc_si128(x, k.k[1]); - x = _mm_aesenc_si128(x, k.k[2]); - x = _mm_aesenc_si128(x, k.k[3]); - x = _mm_aesenc_si128(x, k.k[4]); - x = _mm_aesenc_si128(x, k.k[5]); - x = _mm_aesenc_si128(x, k.k[6]); - x = _mm_aesenc_si128(x, k.k[7]); - x = _mm_aesenc_si128(x, k.k[8]); - x = _mm_aesenc_si128(x, k.k[9]); - x = _mm_aesenclast_si128(x, k.k[10]); - { - aesni1xm128i_ctr_t ret; - ret.v[0].m = x; - return ret; - } -} - -/** @ingroup AESNI */ -R123_STATIC_INLINE aesni1xm128i_ctr_t aesni1xm128i_R(unsigned R, aesni1xm128i_ctr_t in, aesni1xm128i_key_t k){ - R123_ASSERT(R==10); - return aesni1xm128i(in, k); -} - - -/** @ingroup AESNI */ -typedef struct r123array4x32 aesni4x32_ctr_t; -/** @ingroup AESNI */ -typedef aesni1xm128i_key_t aesni4x32_key_t; -/** @ingroup AESNI */ -enum r123_enum_aesni4x32 { aesni4x32_rounds = 10 }; -/** @ingroup AESNI */ -R123_STATIC_INLINE aesni4x32_key_t aesni4x32keyinit(aesni4x32_ukey_t uk){ - aesni1xm128i_ukey_t uk128; - aesni4x32_key_t ret; - uk128.v[0].m = _mm_set_epi32(uk.v[3], uk.v[2], uk.v[1], uk.v[0]); - aesni1xm128iexpand(uk128, ret.k); - return ret; -} - -/** @ingroup AESNI */ -/** The aesni4x32_R function provides a C API to the @ref AESNI "AESNI" CBRNG, allowing the number of rounds to be specified explicitly **/ -R123_STATIC_INLINE aesni4x32_ctr_t aesni4x32_R(unsigned int Nrounds, aesni4x32_ctr_t c, aesni4x32_key_t k){ - aesni1xm128i_ctr_t c128; - c128.v[0].m = _mm_set_epi32(c.v[3], c.v[2], c.v[1], c.v[0]); - c128 = aesni1xm128i_R(Nrounds, c128, k); - _mm_storeu_si128((__m128i*)&c.v[0], c128.v[0].m); - return c; -} - -#define aesni4x32_rounds aesni1xm128i_rounds - -/** The aesni4x32 macro provides a C API to the @ref AESNI "AESNI" CBRNG, uses the default number of rounds i.e. \c aesni4x32_rounds **/ -/** @ingroup AESNI */ -#define aesni4x32(c,k) aesni4x32_R(aesni4x32_rounds, c, k) - -#ifdef __cplusplus -namespace r123{ -/** -@defgroup AESNI ARS and AESNI Classes and Typedefs - -The ARS4x32, ARS1xm128i, AESNI4x32 and AESNI1xm128i classes export the member functions, typedefs and -operator overloads required by a @ref CBRNG "CBRNG" class. - -ARS1xm128i and AESNI1xm128i are based on the AES block cipher and rely on the AES-NI hardware instructions -available on some some new (2011) CPUs. - -The ARS1xm128i CBRNG and the use of AES for random number generation are described in -
Parallel Random Numbers: As Easy as 1, 2, 3 . -Although it uses some cryptographic primitives, ARS1xm128i uses a cryptographically weak key schedule and is \b not suitable for cryptographic use. - -@class AESNI1xm128i -@ingroup AESNI -AESNI exports the member functions, typedefs and operator overloads required by a @ref CBRNG class. - -AESNI1xm128i uses the crypotgraphic AES round function, including the cryptographic key schedule. - -In contrast to the other CBRNGs in the Random123 library, the AESNI1xm128i_R::key_type is opaque -and is \b not identical to the AESNI1xm128i_R::ukey_type. Creating a key_type, using either the constructor -or assignment operator, is significantly more time-consuming than running the bijection (hundreds -of clock cycles vs. tens of clock cycles). - -AESNI1xm128i is only available when the feature-test macro R123_USE_AES_NI is true, which -should occur only when the compiler is configured to generate AES-NI instructions (or -when defaults are overridden by compile-time, compiler-command-line options). - -As of September 2011, the authors know of no statistical flaws with AESNI1xm128i. It -would be an event of major cryptographic note if any such flaws were ever found. -*/ -struct AESNI1xm128i{ - typedef aesni1xm128i_ctr_t ctr_type; - typedef aesni1xm128i_ukey_t ukey_type; - typedef aesni1xm128i_key_t key_type; - static const unsigned int rounds=10; - ctr_type operator()(ctr_type ctr, key_type key) const{ - return aesni1xm128i(ctr, key); - } -}; - -/* @class AESNI4x32 */ -struct AESNI4x32{ - typedef aesni4x32_ctr_t ctr_type; - typedef aesni4x32_ukey_t ukey_type; - typedef aesni4x32_key_t key_type; - static const unsigned int rounds=10; - ctr_type operator()(ctr_type ctr, key_type key) const{ - return aesni4x32(ctr, key); - } -}; - -/** @ingroup AESNI - @class AESNI1xm128i_R - -AESNI1xm128i_R is provided for completeness, but is only instantiable with ROUNDS=10, in -which case it is identical to AESNI1xm128i */ -template -struct AESNI1xm128i_R : public AESNI1xm128i{ - R123_STATIC_ASSERT(ROUNDS==10, "AESNI1xm128i_R is only valid with R=10"); -}; - -/** @class AESNI4x32_R **/ -template -struct AESNI4x32_R : public AESNI4x32{ - R123_STATIC_ASSERT(ROUNDS==10, "AESNI4x32_R is only valid with R=10"); -}; -} // namespace r123 -#endif /* __cplusplus */ - -#endif /* R123_USE_AES_NI */ - -#if R123_USE_AES_OPENSSL -#include "string.h" -#include -typedef struct r123array16x8 aesopenssl16x8_ctr_t; -typedef struct r123array16x8 aesopenssl16x8_ukey_t; -#ifdef __cplusplus -struct aesopenssl16x8_key_t{ - AES_KEY k; - aesopenssl16x8_key_t(){ - aesopenssl16x8_ukey_t ukey={{}}; - AES_set_encrypt_key((const unsigned char *)&ukey.v[0], 128, &k); - } - aesopenssl16x8_key_t(const aesopenssl16x8_ukey_t& ukey){ - AES_set_encrypt_key((const unsigned char *)&ukey.v[0], 128, &k); - } - aesopenssl16x8_key_t& operator=(const aesopenssl16x8_ukey_t& ukey){ - AES_set_encrypt_key((const unsigned char *)&ukey.v[0], 128, &k); - return *this; - } - bool operator==(const aesopenssl16x8_key_t& rhs) const{ - return (k.rounds == rhs.k.rounds) && 0==::memcmp(&k.rd_key[0], &rhs.k.rd_key[0], (k.rounds+1) * 4 * sizeof(uint32_t)); - } - bool operator!=(const aesopenssl16x8_key_t& rhs) const{ - return !(*this == rhs); - } - friend std::ostream& operator<<(std::ostream& os, const aesopenssl16x8_key_t& v){ - os << v.k.rounds; - const unsigned int *p = &v.k.rd_key[0]; - for(int i=0; i<(v.k.rounds+1); ++i){ - os << " " << p[0] << " " << p[1] << " " << p[2] << " " << p[3]; - p += 4; - } - return os; - } - friend std::istream& operator>>(std::istream& is, aesopenssl16x8_key_t& v){ - is >> v.k.rounds; - unsigned int *p = &v.k.rd_key[0]; - for(int i=0; i<(v.k.rounds+1); ++i){ - is >> p[0] >> p[1] >> p[2] >> p[3]; - p += 4; - } - return is; - } -}; -#else -typedef struct aesopenssl16x8_key_t{ - AES_KEY k; -}aesopenssl16x8_key_t; -R123_STATIC_INLINE struct aesopenssl16x8_key_t aesopenssl16x8keyinit(aesopenssl16x8_ukey_t uk){ - aesopenssl16x8_key_t ret; - AES_set_encrypt_key((const unsigned char *)&uk.v[0], 128, &ret.k); - return ret; -} -#endif - -R123_STATIC_INLINE R123_FORCE_INLINE(aesopenssl16x8_ctr_t aesopenssl16x8_R(aesopenssl16x8_ctr_t ctr, aesopenssl16x8_key_t key)); -R123_STATIC_INLINE -aesopenssl16x8_ctr_t aesopenssl16x8_R(aesopenssl16x8_ctr_t ctr, aesopenssl16x8_key_t key){ - aesopenssl16x8_ctr_t ret; - AES_encrypt((const unsigned char*)&ctr.v[0], (unsigned char *)&ret.v[0], &key.k); - return ret; -} - -#define aesopenssl16x8_rounds aesni4x32_rounds -#define aesopenssl16x8(c,k) aesopenssl16x8_R(aesopenssl16x8_rounds) - -#ifdef __cplusplus -namespace r123{ -struct AESOpenSSL16x8{ - typedef aesopenssl16x8_ctr_t ctr_type; - typedef aesopenssl16x8_key_t key_type; - typedef aesopenssl16x8_ukey_t ukey_type; - static const unsigned int rounds=10; - ctr_type operator()(const ctr_type& in, const key_type& k){ - ctr_type out; - AES_encrypt((const unsigned char *)&in[0], (unsigned char *)&out[0], &k.k); - return out; - } -}; -} // namespace r123 -#endif /* __cplusplus */ -#endif /* R123_USE_AES_OPENSSL */ - -#endif diff --git a/ext/random123/include/Random123/array.h b/ext/random123/include/Random123/array.h deleted file mode 100644 index c560c3fee1..0000000000 --- a/ext/random123/include/Random123/array.h +++ /dev/null @@ -1,348 +0,0 @@ -/* -Copyright 2010-2011, D. E. Shaw Research. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright - notice, this list of conditions, and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright - notice, this list of conditions, and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -* Neither the name of D. E. Shaw Research nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -*/ -#ifndef _r123array_dot_h__ -#define _r123array_dot_h__ -#include "features/compilerfeatures.h" -#include "features/sse.h" - -#if !defined(__cplusplus) || defined(__METAL_MACOS__) -#define CXXMETHODS(_N, W, T) -#define CXXOVERLOADS(_N, W, T) -#define CXXMETHODS_REQUIRING_STL -#else - -#include -#include -#include -#include -#include -#include - -/** @defgroup arrayNxW The r123arrayNxW classes - - Each of the r123arrayNxW is a fixed size array of N W-bit unsigned integers. - It is functionally equivalent to the C++11 std::array, - but does not require C++11 features or libraries. - - In addition to meeting most of the requirements of a Container, - it also has a member function, incr(), which increments the zero-th - element and carrys overflows into higher indexed elements. Thus, - by using incr(), sequences of up to 2^(N*W) distinct values - can be produced. - - If SSE is supported by the compiler, then the class - r123array1xm128i is also defined, in which the data member is an - array of one r123m128i object. - - When compiling with __CUDA_ARCH__ defined, the reverse iterator - methods (rbegin, rend, crbegin, crend) are not defined because - CUDA does not support std::reverse_iterator. - -*/ - -/** @cond HIDDEN_FROM_DOXYGEN */ - -template -inline R123_CUDA_DEVICE value_type assemble_from_u32(uint32_t *p32){ - value_type v=0; - for(size_t i=0; i<(3+sizeof(value_type))/4; ++i) - v |= ((value_type)(*p32++)) << (32*i); - return v; -} - -/** @endcond */ - -#ifdef __CUDA_ARCH__ -/* CUDA can't handle std::reverse_iterator. We *could* implement it - ourselves, but let's not bother until somebody really feels a need - to reverse-iterate through an r123array */ -#define CXXMETHODS_REQUIRING_STL -#else -#define CXXMETHODS_REQUIRING_STL \ - public: \ - typedef std::reverse_iterator reverse_iterator; \ - typedef std::reverse_iterator const_reverse_iterator; \ - R123_CUDA_DEVICE reverse_iterator rbegin(){ return reverse_iterator(end()); } \ - R123_CUDA_DEVICE const_reverse_iterator rbegin() const{ return const_reverse_iterator(end()); } \ - R123_CUDA_DEVICE reverse_iterator rend(){ return reverse_iterator(begin()); } \ - R123_CUDA_DEVICE const_reverse_iterator rend() const{ return const_reverse_iterator(begin()); } \ - R123_CUDA_DEVICE const_reverse_iterator crbegin() const{ return const_reverse_iterator(cend()); } \ - R123_CUDA_DEVICE const_reverse_iterator crend() const{ return const_reverse_iterator(cbegin()); } -#endif - -// Work-alike methods and typedefs modeled on std::array: -#define CXXMETHODS(_N, W, T) \ - typedef T value_type; \ - typedef T* iterator; \ - typedef const T* const_iterator; \ - typedef value_type& reference; \ - typedef const value_type& const_reference; \ - typedef size_t size_type; \ - typedef ptrdiff_t difference_type; \ - typedef T* pointer; \ - typedef const T* const_pointer; \ - /* Boost.array has static_size. C++11 specializes tuple_size */ \ - enum {static_size = _N}; \ - R123_CUDA_DEVICE reference operator[](size_type i){return v[i];} \ - R123_CUDA_DEVICE const_reference operator[](size_type i) const {return v[i];} \ - R123_CUDA_DEVICE reference at(size_type i){ if(i >= _N) R123_THROW(std::out_of_range("array index out of range")); return (*this)[i]; } \ - R123_CUDA_DEVICE const_reference at(size_type i) const { if(i >= _N) R123_THROW(std::out_of_range("array index out of range")); return (*this)[i]; } \ - R123_CUDA_DEVICE size_type size() const { return _N; } \ - R123_CUDA_DEVICE size_type max_size() const { return _N; } \ - R123_CUDA_DEVICE bool empty() const { return _N==0; }; \ - R123_CUDA_DEVICE iterator begin() { return &v[0]; } \ - R123_CUDA_DEVICE iterator end() { return &v[_N]; } \ - R123_CUDA_DEVICE const_iterator begin() const { return &v[0]; } \ - R123_CUDA_DEVICE const_iterator end() const { return &v[_N]; } \ - R123_CUDA_DEVICE const_iterator cbegin() const { return &v[0]; } \ - R123_CUDA_DEVICE const_iterator cend() const { return &v[_N]; } \ - R123_CUDA_DEVICE pointer data(){ return &v[0]; } \ - R123_CUDA_DEVICE const_pointer data() const{ return &v[0]; } \ - R123_CUDA_DEVICE reference front(){ return v[0]; } \ - R123_CUDA_DEVICE const_reference front() const{ return v[0]; } \ - R123_CUDA_DEVICE reference back(){ return v[_N-1]; } \ - R123_CUDA_DEVICE const_reference back() const{ return v[_N-1]; } \ - R123_CUDA_DEVICE bool operator==(const r123array##_N##x##W& rhs) const{ \ - /* CUDA3 does not have std::equal */ \ - for (size_t i = 0; i < _N; ++i) \ - if (v[i] != rhs.v[i]) return false; \ - return true; \ - } \ - R123_CUDA_DEVICE bool operator!=(const r123array##_N##x##W& rhs) const{ return !(*this == rhs); } \ - /* CUDA3 does not have std::fill_n */ \ - R123_CUDA_DEVICE void fill(const value_type& val){ for (size_t i = 0; i < _N; ++i) v[i] = val; } \ - R123_CUDA_DEVICE void swap(r123array##_N##x##W& rhs){ \ - /* CUDA3 does not have std::swap_ranges */ \ - for (size_t i = 0; i < _N; ++i) { \ - T tmp = v[i]; \ - v[i] = rhs.v[i]; \ - rhs.v[i] = tmp; \ - } \ - } \ - R123_CUDA_DEVICE r123array##_N##x##W& incr(R123_ULONG_LONG n=1){ \ - /* This test is tricky because we're trying to avoid spurious \ - complaints about illegal shifts, yet still be compile-time \ - evaulated. */ \ - if(sizeof(T)>((sizeof(T)3?3:0] is to silence \ - a spurious error from icpc \ - */ \ - ++v[_N>1?1:0]; \ - if(_N==2 || R123_BUILTIN_EXPECT(!!v[_N>1?1:0], 1)) return *this; \ - ++v[_N>2?2:0]; \ - if(_N==3 || R123_BUILTIN_EXPECT(!!v[_N>2?2:0], 1)) return *this; \ - ++v[_N>3?3:0]; \ - for(size_t i=4; i<_N; ++i){ \ - if( R123_BUILTIN_EXPECT(!!v[i-1], 1) ) return *this; \ - ++v[i]; \ - } \ - return *this; \ - } \ - /* seed(SeedSeq) would be a constructor if having a constructor */ \ - /* didn't cause headaches with defaults */ \ - template \ - R123_CUDA_DEVICE static r123array##_N##x##W seed(SeedSeq &ss){ \ - r123array##_N##x##W ret; \ - const size_t Ngen = _N*((3+sizeof(value_type))/4); \ - uint32_t u32[Ngen]; \ - uint32_t *p32 = &u32[0]; \ - ss.generate(&u32[0], &u32[Ngen]); \ - for(size_t i=0; i<_N; ++i){ \ - ret.v[i] = assemble_from_u32(p32); \ - p32 += (3+sizeof(value_type))/4; \ - } \ - return ret; \ - } \ -protected: \ - R123_CUDA_DEVICE r123array##_N##x##W& incr_carefully(R123_ULONG_LONG n){ \ - /* n may be greater than the maximum value of a single value_type */ \ - value_type vtn; \ - vtn = n; \ - v[0] += n; \ - const unsigned rshift = 8* ((sizeof(n)>sizeof(value_type))? sizeof(value_type) : 0); \ - for(size_t i=1; i<_N; ++i){ \ - if(rshift){ \ - n >>= rshift; \ - }else{ \ - n=0; \ - } \ - if( v[i-1] < vtn ) \ - ++n; \ - if( n==0 ) break; \ - vtn = n; \ - v[i] += n; \ - } \ - return *this; \ - } \ - -/** @cond HIDDEN_FROM_DOXYGEN */ - -// There are several tricky considerations for the insertion and extraction -// operators: -// - we would like to be able to print r123array16x8 as a sequence of 16 integers, -// not as 16 bytes. -// - we would like to be able to print r123array1xm128i. -// - we do not want an int conversion operator in r123m128i because it causes -// lots of ambiguity problems with automatic promotions. -// Solution: r123arrayinsertable and r123arrayextractable - -template -struct r123arrayinsertable{ - const T& v; - r123arrayinsertable(const T& t_) : v(t_) {} - friend std::ostream& operator<<(std::ostream& os, const r123arrayinsertable& t){ - return os << t.v; - } -}; - -template<> -struct r123arrayinsertable{ - const uint8_t& v; - r123arrayinsertable(const uint8_t& t_) : v(t_) {} - friend std::ostream& operator<<(std::ostream& os, const r123arrayinsertable& t){ - return os << (int)t.v; - } -}; - -template -struct r123arrayextractable{ - T& v; - r123arrayextractable(T& t_) : v(t_) {} - friend std::istream& operator>>(std::istream& is, r123arrayextractable& t){ - return is >> t.v; - } -}; - -template<> -struct r123arrayextractable{ - uint8_t& v; - r123arrayextractable(uint8_t& t_) : v(t_) {} - friend std::istream& operator>>(std::istream& is, r123arrayextractable& t){ - int i; - is >> i; - t.v = i; - return is; - } -}; -/** @endcond */ - -#define CXXOVERLOADS(_N, W, T) \ - \ -inline std::ostream& operator<<(std::ostream& os, const r123array##_N##x##W& a){ \ - os << r123arrayinsertable(a.v[0]); \ - for(size_t i=1; i<_N; ++i) \ - os << " " << r123arrayinsertable(a.v[i]); \ - return os; \ -} \ - \ -inline std::istream& operator>>(std::istream& is, r123array##_N##x##W& a){ \ - for(size_t i=0; i<_N; ++i){ \ - r123arrayextractable x(a.v[i]); \ - is >> x; \ - } \ - return is; \ -} \ - \ -namespace r123{ \ - typedef r123array##_N##x##W Array##_N##x##W; \ -} - -#endif /* __cplusplus */ - -/* _r123array_tpl expands to a declaration of struct r123arrayNxW. - - In C, it's nothing more than a struct containing an array of N - objects of type T. - - In C++ it's the same, but endowed with an assortment of member - functions, typedefs and friends. In C++, r123arrayNxW looks a lot - like std::array, has most of the capabilities of a container, - and satisfies the requirements outlined in compat/Engine.hpp for - counter and key types. ArrayNxW, in the r123 namespace is - a typedef equivalent to r123arrayNxW. -*/ - -#define _r123array_tpl(_N, W, T) \ - /** @ingroup arrayNxW */ \ - /** @see arrayNxW */ \ -struct r123array##_N##x##W{ \ - T v[_N]; \ - CXXMETHODS(_N, W, T) \ - CXXMETHODS_REQUIRING_STL \ -}; \ - \ -CXXOVERLOADS(_N, W, T) - - -_r123array_tpl(1, 32, uint32_t) /* r123array1x32 */ -_r123array_tpl(2, 32, uint32_t) /* r123array2x32 */ -_r123array_tpl(4, 32, uint32_t) /* r123array4x32 */ -_r123array_tpl(8, 32, uint32_t) /* r123array8x32 */ - -#if R123_USE_64BIT -_r123array_tpl(1, 64, uint64_t) /* r123array1x64 */ -_r123array_tpl(2, 64, uint64_t) /* r123array2x64 */ -_r123array_tpl(4, 64, uint64_t) /* r123array4x64 */ -#endif - -_r123array_tpl(16, 8, uint8_t) /* r123array16x8 for ARSsw, AESsw */ - -#if R123_USE_SSE -_r123array_tpl(1, m128i, r123m128i) /* r123array1x128i for ARSni, AESni */ -#endif - -/* In C++, it's natural to use sizeof(a::value_type), but in C it's - pretty convoluted to figure out the width of the value_type of an - r123arrayNxW: -*/ -#define R123_W(a) (8*sizeof(((a *)0)->v[0])) - -/** @namespace r123 - Most of the Random123 C++ API is contained in the r123 namespace. -*/ - -#endif - diff --git a/ext/random123/include/Random123/ars.h b/ext/random123/include/Random123/ars.h deleted file mode 100644 index a027b6fe04..0000000000 --- a/ext/random123/include/Random123/ars.h +++ /dev/null @@ -1,204 +0,0 @@ -/* -Copyright 2010-2011, D. E. Shaw Research. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright - notice, this list of conditions, and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright - notice, this list of conditions, and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -* Neither the name of D. E. Shaw Research nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -*/ -#ifndef __Random123_ars_dot_hpp__ -#define __Random123_ars_dot_hpp__ - -#include "features/compilerfeatures.h" -#include "array.h" - -#if R123_USE_AES_NI - -#ifndef ARS1xm128i_DEFAULT_ROUNDS -#define ARS1xm128i_DEFAULT_ROUNDS 7 -#endif - -/** @ingroup AESNI */ -enum r123_enum_ars1xm128i {ars1xm128i_rounds = ARS1xm128i_DEFAULT_ROUNDS}; - -/* ARS1xm128i with Weyl keys. Fast, and Crush-resistant, but NOT CRYPTO. */ -/** @ingroup AESNI */ -typedef struct r123array1xm128i ars1xm128i_ctr_t; -/** @ingroup AESNI */ -typedef struct r123array1xm128i ars1xm128i_key_t; -/** @ingroup AESNI */ -typedef struct r123array1xm128i ars1xm128i_ukey_t; -/** @ingroup AESNI */ -R123_STATIC_INLINE ars1xm128i_key_t ars1xm128ikeyinit(ars1xm128i_ukey_t uk) { return uk; } -/** @ingroup AESNI */ -R123_STATIC_INLINE ars1xm128i_ctr_t ars1xm128i_R(unsigned int Nrounds, ars1xm128i_ctr_t in, ars1xm128i_key_t k){ - __m128i kweyl = _mm_set_epi64x(R123_64BIT(0xBB67AE8584CAA73B), /* sqrt(3) - 1.0 */ - R123_64BIT(0x9E3779B97F4A7C15)); /* golden ratio */ - /* N.B. the aesenc instructions do the xor *after* - // so if we want to follow the AES pattern, we - // have to do the initial xor explicitly */ - __m128i kk = k.v[0].m; - __m128i v = _mm_xor_si128(in.v[0].m, kk); - ars1xm128i_ctr_t ret; - R123_ASSERT(Nrounds<=10); - if( Nrounds>1 ){ - kk = _mm_add_epi64(kk, kweyl); - v = _mm_aesenc_si128(v, kk); - } - if( Nrounds>2 ){ - kk = _mm_add_epi64(kk, kweyl); - v = _mm_aesenc_si128(v, kk); - } - if( Nrounds>3 ){ - kk = _mm_add_epi64(kk, kweyl); - v = _mm_aesenc_si128(v, kk); - } - if( Nrounds>4 ){ - kk = _mm_add_epi64(kk, kweyl); - v = _mm_aesenc_si128(v, kk); - } - if( Nrounds>5 ){ - kk = _mm_add_epi64(kk, kweyl); - v = _mm_aesenc_si128(v, kk); - } - if( Nrounds>6 ){ - kk = _mm_add_epi64(kk, kweyl); - v = _mm_aesenc_si128(v, kk); - } - if( Nrounds>7 ){ - kk = _mm_add_epi64(kk, kweyl); - v = _mm_aesenc_si128(v, kk); - } - if( Nrounds>8 ){ - kk = _mm_add_epi64(kk, kweyl); - v = _mm_aesenc_si128(v, kk); - } - if( Nrounds>9 ){ - kk = _mm_add_epi64(kk, kweyl); - v = _mm_aesenc_si128(v, kk); - } - kk = _mm_add_epi64(kk, kweyl); - v = _mm_aesenclast_si128(v, kk); - ret.v[0].m = v; - return ret; -} - -/** @def ars1xm128i -@ingroup AESNI -The ars1mx128i macro provides a C API interface to the @ref AESNI "ARS" CBRNG with the default number of rounds i.e. \c ars1xm128i_rounds **/ -#define ars1xm128i(c,k) ars1xm128i_R(ars1xm128i_rounds, c, k) - -/** @ingroup AESNI */ -typedef struct r123array4x32 ars4x32_ctr_t; -/** @ingroup AESNI */ -typedef struct r123array4x32 ars4x32_key_t; -/** @ingroup AESNI */ -typedef struct r123array4x32 ars4x32_ukey_t; -/** @ingroup AESNI */ -enum r123_enum_ars4x32 {ars4x32_rounds = ARS1xm128i_DEFAULT_ROUNDS}; -/** @ingroup AESNI */ -R123_STATIC_INLINE ars4x32_key_t ars4x32keyinit(ars4x32_ukey_t uk) { return uk; } -/** @ingroup AESNI */ -R123_STATIC_INLINE ars4x32_ctr_t ars4x32_R(unsigned int Nrounds, ars4x32_ctr_t c, ars4x32_key_t k){ - ars1xm128i_ctr_t c128; - ars1xm128i_key_t k128; - c128.v[0].m = _mm_set_epi32(c.v[3], c.v[2], c.v[1], c.v[0]); - k128.v[0].m = _mm_set_epi32(k.v[3], k.v[2], k.v[1], k.v[0]); - c128 = ars1xm128i_R(Nrounds, c128, k128); - _mm_storeu_si128((__m128i*)&c.v[0], c128.v[0].m); - return c; -} - -/** @def ars4x32 -@ingroup AESNI -The ars4x32 macro provides a C API interface to the @ref AESNI "ARS" CBRNG with the default number of rounds i.e. \c ars4x32_rounds **/ -#define ars4x32(c,k) ars4x32_R(ars4x32_rounds, c, k) - -#ifdef __cplusplus -namespace r123{ -/** -@ingroup AESNI - -ARS1xm128i_R exports the member functions, typedefs and operator overloads required by a @ref CBRNG class. - -ARS1xm128i uses the crypotgraphic AES round function, but a @b non-cryptographc key schedule -to save time and space. - -ARS1xm128i is only available when the feature-test macro R123_USE_AES_NI is true, which -should occur only when the compiler is configured to generate AES-NI instructions (or -when defaults are overridden by compile-time, compiler-command-line options). - -The template argument, ROUNDS, is the number of times the ARS round -functions will be applied. - -As of September 2011, the authors know of no statistical flaws with -ROUNDS=5 or more. - -@class ARS1xm128i_R - -*/ -template -struct ARS1xm128i_R{ - typedef ars1xm128i_ctr_t ctr_type; - typedef ars1xm128i_key_t key_type; - typedef ars1xm128i_key_t ukey_type; - static const unsigned int rounds=ROUNDS; - R123_FORCE_INLINE(ctr_type operator()(ctr_type ctr, key_type key) const){ - return ars1xm128i_R(ROUNDS, ctr, key); - } -}; - -/** @class ARS4x32_R - @ingroup AESNI -*/ - -template -struct ARS4x32_R{ - typedef ars4x32_ctr_t ctr_type; - typedef ars4x32_key_t key_type; - typedef ars4x32_key_t ukey_type; - static const unsigned int rounds=ROUNDS; - R123_FORCE_INLINE(ctr_type operator()(ctr_type ctr, key_type key) const){ - return ars4x32_R(ROUNDS, ctr, key); - } -}; -/** -@ingroup AESNI - -@class ARS1xm128i_R - ARS1xm128i is equivalent to ARS1xm128i_R<7>. With 7 rounds, - the ARS1xm128i CBRNG has a considerable safety margin over the minimum number - of rounds with no known statistical flaws, but still has excellent - performance. */ -typedef ARS1xm128i_R ARS1xm128i; -typedef ARS4x32_R ARS4x32; -} // namespace r123 - -#endif /* __cplusplus */ - -#endif /* R123_USE_AES_NI */ - -#endif diff --git a/ext/random123/include/Random123/boxmuller.hpp b/ext/random123/include/Random123/boxmuller.hpp deleted file mode 100644 index 43b6db4991..0000000000 --- a/ext/random123/include/Random123/boxmuller.hpp +++ /dev/null @@ -1,134 +0,0 @@ -/* -Copyright 2010-2011, D. E. Shaw Research. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright - notice, this list of conditions, and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright - notice, this list of conditions, and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -* Neither the name of D. E. Shaw Research nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -*/ - -// This file implements the Box-Muller method for generating gaussian -// random variables (GRVs). Box-Muller has the advantage of -// deterministically requiring exactly two uniform random variables as -// input and producing exactly two GRVs as output, which makes it -// especially well-suited to the counter-based generators in -// Random123. Other methods (e.g., Ziggurat, polar) require an -// indeterminate number of inputs for each output and so require a -// 'MicroURNG' to be used with Random123. The down side of Box-Muller -// is that it calls sincos, log and sqrt, which may be slow. However, -// on GPUs, these functions are remarkably fast, which makes -// Box-Muller the fastest GRV generator we know of on GPUs. -// -// This file exports two structs and one overloaded function, -// all in the r123 namespace: -// struct r123::float2{ float x,y; } -// struct r123::double2{ double x,y; } -// -// r123::float2 r123::boxmuller(uint32_t u0, uint32_t u1); -// r123::double2 r123::boxmuller(uint64_t u0, uint64_t u1); -// -// float2 and double2 are identical to their synonymous global- -// namespace structures in CUDA. -// -// This file may not be as portable, and has not been tested as -// rigorously as other files in the library, e.g., the generators. -// Nevertheless, we hope it is useful and we encourage developers to -// copy it and modify it for their own use. We invite comments and -// improvements. - -#ifndef _r123_BOXMULLER_HPP__ -#define _r123_BOXMULLER_HPP__ - -#include -#include -#include - -namespace r123{ - -typedef ::float2 float2; -typedef ::double2 double2; - -#if !defined(R123_NO_SINCOS) && defined(__APPLE__) -/* MacOS X 10.10.5 (2015) doesn't have sincosf */ -#define R123_NO_SINCOS 1 -#endif - -#if R123_NO_SINCOS /* enable this if sincos and sincosf are not in the math library */ -R123_CUDA_DEVICE R123_STATIC_INLINE void sincosf(float x, float *s, float *c) { - *s = sinf(x); - *c = cosf(x); -} - -R123_CUDA_DEVICE R123_STATIC_INLINE void sincos(double x, double *s, double *c) { - *s = sin(x); - *c = cos(x); -} -#endif /* sincos is not in the math library */ - -#if !defined(CUDART_VERSION) || CUDART_VERSION < 5000 /* enabled if sincospi and sincospif are not in math lib */ - -R123_CUDA_DEVICE R123_STATIC_INLINE void sincospif(float x, float *s, float *c){ - const float PIf = 3.1415926535897932f; - sincosf(PIf*x, s, c); -} - -R123_CUDA_DEVICE R123_STATIC_INLINE void sincospi(double x, double *s, double *c) { - const double PI = 3.1415926535897932; - sincos(PI*x, s, c); -} -#endif /* sincospi is not in math lib */ - -/* - * take two 32bit unsigned random values and return a float2 with - * two random floats in a normal distribution via a Box-Muller transform - */ -R123_CUDA_DEVICE R123_STATIC_INLINE float2 boxmuller(uint32_t u0, uint32_t u1) { - float r; - float2 f; - sincospif(uneg11(u0), &f.x, &f.y); - r = sqrtf(-2.f * logf(u01(u1))); // u01 is guaranteed to avoid 0. - f.x *= r; - f.y *= r; - return f; -} - -/* - * take two 64bit unsigned random values and return a double2 with - * two random doubles in a normal distribution via a Box-Muller transform - */ -R123_CUDA_DEVICE R123_STATIC_INLINE double2 boxmuller(uint64_t u0, uint64_t u1) { - double r; - double2 f; - - sincospi(uneg11(u0), &f.x, &f.y); - r = sqrt(-2. * log(u01(u1))); // u01 is guaranteed to avoid 0. - f.x *= r; - f.y *= r; - return f; -} -} // namespace r123 - -#endif /* BOXMULLER_H__ */ diff --git a/ext/random123/include/Random123/conventional/Engine.hpp b/ext/random123/include/Random123/conventional/Engine.hpp deleted file mode 100644 index bd2da2e191..0000000000 --- a/ext/random123/include/Random123/conventional/Engine.hpp +++ /dev/null @@ -1,276 +0,0 @@ -/* -Copyright 2010-2011, D. E. Shaw Research. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright - notice, this list of conditions, and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright - notice, this list of conditions, and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -* Neither the name of D. E. Shaw Research nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -*/ -#ifndef __Engine_dot_hpp_ -#define __Engine_dot_hpp_ - -#include "../features/compilerfeatures.h" -#include "../array.h" -#include -#include -#include -#include -#include -#if R123_USE_CXX11_TYPE_TRAITS -#include -#endif - -namespace r123{ -/** - If G satisfies the requirements of a CBRNG, and has a ctr_type whose - value_type is an unsigned integral type, then Engine satisfies - the requirements of a C++11 "Uniform Random Number Engine" and can - be used in any context where such an object is expected. - - Note that wrapping a counter based RNG with a traditional API in - this way obscures much of the power of counter based PRNGs. - Nevertheless, it may be of value in applications that are already - coded to work with the C++11 random number engines. - - The MicroURNG template in MicroURNG.hpp - provides the more limited functionality of a C++11 "Uniform - Random Number Generator", but leaves the application in control - of counters and keys and hence may be preferable to the Engine template. - For example, a MicroURNG allows one to use C++11 "Random Number - Distributions" without giving up control over the counters - and keys. -*/ - -template -struct Engine { - typedef CBRNG cbrng_type; - typedef typename CBRNG::ctr_type ctr_type; - typedef typename CBRNG::key_type key_type; - typedef typename CBRNG::ukey_type ukey_type; - typedef typename ctr_type::value_type result_type; - -protected: - cbrng_type b; - key_type key; - ctr_type c; - ctr_type v; - - void fix_invariant(){ - if( v.back() != 0 ) { - result_type vv = v.back(); - v = b(c, key); - v.back() = vv; - } - } -public: - explicit Engine() : b(), c() { - ukey_type x = {{}}; - v.back() = 0; - key = x; - } - explicit Engine(result_type r) : b(), c() { - ukey_type x = {{typename ukey_type::value_type(r)}}; - v.back() = 0; - key = x; - } - // 26.5.3 says that the SeedSeq templates shouldn't particpate in - // overload resolution unless the type qualifies as a SeedSeq. - // How that is determined is unspecified, except that "as a - // minimum a type shall not qualify as a SeedSeq if it is - // implicitly convertible to a result_type." - // - // First, we make sure that even the non-const copy constructor - // works as expected. In addition, if we've got C++11 - // type_traits, we use enable_if and is_convertible to implement - // the convertible-to-result_type restriction. Otherwise, the - // template is unconditional and will match in some surpirsing - // and undesirable situations. - Engine(Engine& e) : b(e.b), key(e.key), c(e.c){ - v.back() = e.v.back(); - fix_invariant(); - } - Engine(const Engine& e) : b(e.b), key(e.key), c(e.c){ - v.back() = e.v.back(); - fix_invariant(); - } - - template - explicit Engine(SeedSeq &s -#if R123_USE_CXX11_TYPE_TRAITS - , typename std::enable_if::value>::type* =0 -#endif - ) - : b(), c() { - ukey_type ukey = ukey_type::seed(s); - key = ukey; - v.back() = 0; - } - void seed(result_type r){ - *this = Engine(r); - } - template - void seed(SeedSeq &s -#if R123_USE_CXX11_TYPE_TRAITS - , typename std::enable_if::value>::type* =0 -#endif - ){ - *this = Engine(s); - } - void seed(){ - *this = Engine(); - } - friend bool operator==(const Engine& lhs, const Engine& rhs){ - return lhs.c==rhs.c && lhs.v.back() == rhs.v.back() && lhs.key == rhs.key; - } - friend bool operator!=(const Engine& lhs, const Engine& rhs){ - return lhs.c!=rhs.c || lhs.v.back()!=rhs.v.back() || lhs.key!=rhs.key; - } - - friend std::ostream& operator<<(std::ostream& os, const Engine& be){ - return os << be.c << " " << be.key << " " << be.v.back(); - } - - friend std::istream& operator>>(std::istream& is, Engine& be){ - is >> be.c >> be.key >> be.v.back(); - be.fix_invariant(); - return is; - } - - // The shipped with MacOS Xcode 4.5.2 imposes a - // non-standard requirement that URNGs also have static data - // members: _Min and _Max. Later versions of libc++ impose the - // requirement only when constexpr isn't supported. Although the - // Xcode 4.5.2 requirement is clearly non-standard, it is unlikely - // to be fixed and it is very easy work around. We certainly - // don't want to go to great lengths to accommodate every buggy - // library we come across, but in this particular case, the effort - // is low and the benefit is high, so it's worth doing. Thanks to - // Yan Zhou for pointing this out to us. See similar code in - // ../MicroURNG.hpp - const static result_type _Min = 0; - const static result_type _Max = ~((result_type)0); - - static R123_CONSTEXPR result_type min R123_NO_MACRO_SUBST () { return _Min; } - static R123_CONSTEXPR result_type max R123_NO_MACRO_SUBST () { return _Max; } - - result_type operator()(){ - if( c.size() == 1 ) // short-circuit the scalar case. Compilers aren't mind-readers. - return b(c.incr(), key)[0]; - result_type& elem = v.back(); - if( elem == 0 ){ - v = b(c.incr(), key); - result_type ret = v.back(); - elem = c.size()-1; - return ret; - } - return v[--elem]; - } - - void discard(R123_ULONG_LONG skip){ - // don't forget: elem counts down - size_t nelem = c.size(); - size_t sub = skip % nelem; - result_type& elem = v.back(); - skip /= nelem; - if (elem < sub) { - elem += nelem; - skip++; - } - elem -= sub; - c.incr(skip); - fix_invariant(); - } - - //-------------------------- - // Some bonus methods, not required for a Random Number - // Engine - - // Constructors and seed() method for ukey_type seem useful - // We need const and non-const to supersede the SeedSeq template. - explicit Engine(const ukey_type &uk) : key(uk), c(){ v.back() = 0; } - explicit Engine(ukey_type &uk) : key(uk), c(){ v.back() = 0; } - void seed(const ukey_type& uk){ - *this = Engine(uk); - } - void seed(ukey_type& uk){ - *this = Engine(uk); - } - -#if R123_USE_CXX11_TYPE_TRAITS - template - explicit Engine(const key_type& k, - typename std::enable_if::value, DUMMY>::type* = 0) - : key(k), c(){ v.back() = 0; } - - template - void seed(const key_type& k, - typename std::enable_if::value, DUMMY>::type* = 0){ - *this = Engine(k); - } -#endif - - // Forward the e(counter) to the CBRNG we are templated - // on, using the current value of the key. - ctr_type operator()(const ctr_type& c) const{ - return b(c, key); - } - - key_type getkey() const{ - return key; - } - - // N.B. setkey(k) is different from seed(k) because seed(k) zeros - // the counter (per the C++11 requirements for an Engine), whereas - // setkey does not. - void setkey(const key_type& k){ - key = k; - fix_invariant(); - } - - // Maybe the caller want's to know the details of - // the internal state, e.g., so it can call a different - // bijection with the same counter. - std::pair getcounter() const { - return std::make_pair(c, v.back()); - } - - // And the inverse. - void setcounter(const ctr_type& _c, result_type _elem){ - static const size_t nelem = c.size(); - if( _elem >= nelem ) - throw std::range_error("Engine::setcounter called with elem out of range"); - c = _c; - v.back() = _elem; - fix_invariant(); - } - - void setcounter(const std::pair& ce){ - setcounter(ce.first, ce.second); - } -}; -} // namespace r123 - -#endif diff --git a/ext/random123/include/Random123/conventional/gsl_cbrng.h b/ext/random123/include/Random123/conventional/gsl_cbrng.h deleted file mode 100644 index 44457d002b..0000000000 --- a/ext/random123/include/Random123/conventional/gsl_cbrng.h +++ /dev/null @@ -1,128 +0,0 @@ -/* -Copyright 2010-2011, D. E. Shaw Research. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright - notice, this list of conditions, and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright - notice, this list of conditions, and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -* Neither the name of D. E. Shaw Research nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -*/ -#ifndef __r123_compat_gslrng_dot_h__ -#define __r123_compat_gslrng_dot_h__ - -#include -#include - -/** - The macro: GSL_CBRNG(NAME, CBRNGNAME) - declares the necessary structs and constants that define a - gsl_rng_NAME type based on the counter-based RNG CBRNGNAME. For example: - - Usage: - - @code - #include - #include // this file - GSL_CBRNG(cbrng, threefry4x32); // creates gsl_rng_cbrng - - int main(int argc, char **argv){ - gsl_rng *r = gsl_rng_alloc(gsl_rng_cbrng); - ... use r as you would use any other gsl_rng ... - } - @endcode - - It requires that NAME be the name of a CBRNG that follows the - naming and stylistic conventions of the Random123 library. - - Note that wrapping a \ref CBRNG "counter-based PRNG" with a traditional API in - this way obscures much of the power of the CBRNG API. - Nevertheless, it may be of value to applications that are already - coded to work with GSL random number generators, and that wish - to use the RNGs in the Random123 library. - - */ - -#define GSL_CBRNG(NAME, CBRNGNAME) \ -const gsl_rng_type *gsl_rng_##NAME; \ - \ -typedef struct{ \ - CBRNGNAME##_ctr_t ctr; \ - CBRNGNAME##_ctr_t r; \ - CBRNGNAME##_key_t key; \ - int elem; \ -} NAME##_state; \ - \ -static unsigned long int NAME##_get(void *vstate){ \ - NAME##_state *st = (NAME##_state *)vstate; \ - const int N=sizeof(st->ctr.v)/sizeof(st->ctr.v[0]); \ - if( st->elem == 0 ){ \ - ++st->ctr.v[0]; \ - if( N>1 && st->ctr.v[0] == 0 ) ++st->ctr.v[1]; \ - if( N>2 && st->ctr.v[1] == 0 ) ++st->ctr.v[2]; \ - if( N>3 && st->ctr.v[2] == 0 ) ++st->ctr.v[3]; \ - st->r = CBRNGNAME(st->ctr, st->key); \ - st->elem = N; \ - } \ - return 0xffffffffUL & st->r.v[--st->elem]; \ -} \ - \ -static double \ -NAME##_get_double (void * vstate) \ -{ \ - return NAME##_get (vstate)/4294967296.0; \ -} \ - \ -static void NAME##_set(void *vstate, unsigned long int s){ \ - NAME##_state *st = (NAME##_state *)vstate; \ - st->elem = 0; \ - /* Assume that key and ctr have an array member, v, \ - as if they are r123arrayNxW. If not, this will fail \ - to compile. In particular, this macro fails to compile \ - when the underlying CBRNG requires use of keyinit */ \ - memset(&st->ctr.v[0], 0, sizeof(st->ctr.v)); \ - memset(&st->key.v[0], 0, sizeof(st->key.v)); \ - /* GSL 1.15 documentation says this about gsl_rng_set: \ - Note that the most generators only accept 32-bit seeds, with higher \ - values being reduced modulo 2^32. For generators with smaller \ - ranges the maximum seed value will typically be lower. \ - so we won't jump through any hoops here to deal with \ - high bits if sizeof(unsigned long) > sizeof(uint32_t). */ \ - st->key.v[0] = s; \ -} \ - \ -static const gsl_rng_type NAME##_type = { \ - #NAME, \ - 0xffffffffUL, \ - 0, \ - sizeof(NAME##_state), \ - &NAME##_set, \ - &NAME##_get, \ - &NAME##_get_double \ -}; \ - \ -const gsl_rng_type *gsl_rng_##NAME = &NAME##_type - -#endif - diff --git a/ext/random123/include/Random123/features/clangfeatures.h b/ext/random123/include/Random123/features/clangfeatures.h deleted file mode 100644 index 1e3c8cfdb9..0000000000 --- a/ext/random123/include/Random123/features/clangfeatures.h +++ /dev/null @@ -1,93 +0,0 @@ -/* -Copyright 2010-2016, D. E. Shaw Research. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright - notice, this list of conditions, and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright - notice, this list of conditions, and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -* Neither the name of D. E. Shaw Research nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -*/ -#ifndef __clangfeatures_dot_hpp -#define __clangfeatures_dot_hpp - -#ifndef R123_USE_X86INTRIN_H -#if (defined(__x86_64__)||defined(__i386__)) -#define R123_USE_X86INTRIN_H 1 -#else -#define R123_USE_X86INTRIN_H 0 -#endif -#endif - -#ifndef R123_USE_CXX11_UNRESTRICTED_UNIONS -#define R123_USE_CXX11_UNRESTRICTED_UNIONS __has_feature(cxx_unrestricted_unions) -#endif - -#ifndef R123_USE_CXX11_STATIC_ASSERT -#define R123_USE_CXX11_STATIC_ASSERT __has_feature(cxx_static_assert) -#endif - -// With clang-3.6, -Wall warns about unused-local-typedefs. -// The "obvious" thing to do is to ignore -Wunused-local-typedefs, -// but that doesn't work because earlier versions of clang blow -// up on an 'unknown warning group'. So we briefly ignore -Wall... -// It's tempting to just give up on static assertions in pre-c++11 code. -#if !R123_USE_CXX11_STATIC_ASSERT && !defined(R123_STATIC_ASSERT) -#define R123_STATIC_ASSERT(expr, msg) \ -_Pragma("clang diagnostic push") \ -_Pragma("clang diagnostic ignored \"-Wall\"") \ -typedef char static_assertion[(!!(expr))*2-1] \ -_Pragma("clang diagnostic pop") -#endif - -#ifndef R123_USE_CXX11_CONSTEXPR -#define R123_USE_CXX11_CONSTEXPR __has_feature(cxx_constexpr) -#endif - -#ifndef R123_USE_CXX11_EXPLICIT_CONVERSIONS -#define R123_USE_CXX11_EXPLICIT_CONVERSIONS __has_feature(cxx_explicit_conversions) -#endif - -// With clang-3.0, the apparently simpler: -// #define R123_USE_CXX11_RANDOM __has_include() -// dumps core. -#ifndef R123_USE_CXX11_RANDOM -#if __cplusplus>=201103L && __has_include() -#define R123_USE_CXX11_RANDOM 1 -#else -#define R123_USE_CXX11_RANDOM 0 -#endif -#endif - -#ifndef R123_USE_CXX11_TYPE_TRAITS -#if __cplusplus>=201103L && __has_include() -#define R123_USE_CXX11_TYPE_TRAITS 1 -#else -#define R123_USE_CXX11_TYPE_TRAITS 0 -#endif -#endif - -#include "gccfeatures.h" - -#endif diff --git a/ext/random123/include/Random123/features/compilerfeatures.h b/ext/random123/include/Random123/features/compilerfeatures.h deleted file mode 100644 index d2fe1e7ca2..0000000000 --- a/ext/random123/include/Random123/features/compilerfeatures.h +++ /dev/null @@ -1,341 +0,0 @@ -/* -Copyright 2010-2011, D. E. Shaw Research. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright - notice, this list of conditions, and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright - notice, this list of conditions, and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -* Neither the name of D. E. Shaw Research nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -*/ -/** - -@page porting Preprocessor symbols for porting Random123 to different platforms. - -The Random123 library is portable across C, C++, CUDA, OpenCL environments, -and multiple operating systems (Linux, Windows 7, Mac OS X, FreeBSD, Solaris). -This level of portability requires the abstraction of some features -and idioms that are either not standardized (e.g., asm statments), or for which -different vendors have their own standards (e.g., SSE intrinsics) or for -which vendors simply refuse to conform to well-established standards (e.g., ). - -Random123/features/compilerfeatures.h -conditionally includes a compiler-or-OS-specific Random123/featires/XXXfeatures.h file which -defines appropriate values for the preprocessor symbols which can be used with -a specific compiler or OS. Those symbols will then -be used by other header files and source files in the Random123 -library (and may be used by applications) to control what actually -gets presented to the compiler. - -Most of the symbols are boolean valued. In general, they will -\b always be defined with value either 1 or 0, so do -\b NOT use \#ifdef. Use \#if R123_USE_SOMETHING instead. - -Library users can override any value by defining the pp-symbol with a compiler option, -e.g., - - cc -DR123_USE_MULHILO64_C99 - -will use a strictly c99 version of the full-width 64x64->128-bit multiplication -function, even if it would be disabled by default. - -All boolean-valued pre-processor symbols in Random123/features/compilerfeatures.h start with the prefix R123_USE_ -@verbatim - AES_NI - AES_OPENSSL - SSE4_2 - SSE4_1 - SSE - - STD_RANDOM - - GNU_UINT128 - ASM_GNU - ASM_MSASM - - CPUID_MSVC - - CXX11_RANDOM - CXX11_TYPE_TRAITS - CXX11_STATIC_ASSERT - CXX11_CONSTEXPR - CXX11_UNRESTRICTED_UNIONS - CXX11_EXPLICIT_CONVERSIONS - CXX11_LONG_LONG - CXX11_STD_ARRAY - CXX11 - - X86INTRIN_H - IA32INTRIN_H - XMMINTRIN_H - EMMINTRIN_H - SMMINTRIN_H - WMMINTRIN_H - INTRIN_H - - MULHILO32_ASM - MULHILO64_ASM - MULHILO64_MSVC_INTRIN - MULHILO64_CUDA_INTRIN - MULHILO64_OPENCL_INTRIN - MULHILO64_C99 - - U01_DOUBLE - -@endverbatim -Most have obvious meanings. Some non-obvious ones: - -AES_NI and AES_OPENSSL are not mutually exclusive. You can have one, -both or neither. - -GNU_UINT128 says that it's safe to use __uint128_t, but it -does not require its use. In particular, it should be -used in mulhilo only if MULHILO64_ASM is unset. - -If the XXXINTRIN_H macros are true, then one should -@code -#include -@endcode -to gain accesss to compiler intrinsics. - -The CXX11_SOME_FEATURE macros allow the code to use specific -features of the C++11 language and library. The catchall -In the absence of a specific CXX11_SOME_FEATURE, the feature -is controlled by the catch-all R123_USE_CXX11 macro. - -U01_DOUBLE defaults on, and can be turned off (set to 0) -if one does not want the utility functions that convert to double -(i.e. u01_*_53()), e.g. on OpenCL without the cl_khr_fp64 extension. - -There are a number of invariants that are always true. Application code may -choose to rely on these: - -
    -
  • ASM_GNU and ASM_MASM are mutually exclusive -
  • The "higher" SSE values imply the lower ones. -
- -There are also non-boolean valued symbols: - -
    -
  • R123_STATIC_INLINE - - According to both C99 and GNU99, the 'static inline' declaration allows - the compiler to not emit code if the function is not used. - Note that the semantics of 'inline', 'static' and 'extern' in - gcc have changed over time and are subject to modification by - command line options, e.g., -std=gnu89, -fgnu-inline. - Nevertheless, it appears that the meaning of 'static inline' - has not changed over time and (with a little luck) the use of 'static inline' - here will be portable between versions of gcc and to other C99 - compilers. - See: http://gcc.gnu.org/onlinedocs/gcc/Inline.html - http://www.greenend.org.uk/rjk/2003/03/inline.html - -
  • R123_FORCE_INLINE(decl) - - which expands to 'decl', adorned with the compiler-specific - embellishments to strongly encourage that the declared function be - inlined. If there is no such compiler-specific magic, it should - expand to decl, unadorned. - -
  • R123_CUDA_DEVICE - which expands to __device__ (or something else with - sufficiently similar semantics) when CUDA is in use, and expands - to nothing in other cases. - -
  • R123_METAL_THREAD_ADDRESS_SPACE - which expands to 'thread' (or - something else with sufficiently similar semantics) when compiling a - Metal kernel, and expands to nothing in other cases. - -
  • R123_ASSERT(x) - which expands to assert(x), or maybe to nothing at - all if we're in an environment so feature-poor that you can't even - call assert (I'm looking at you, CUDA and OpenCL), or even include - assert.h safely (OpenCL). - -
  • R123_STATIC_ASSERT(expr,msg) - which expands to - static_assert(expr,msg), or to an expression that - will raise a compile-time exception if expr is not true. - -
  • R123_ULONG_LONG - which expands to a declaration of the longest available - unsigned integer. - -
  • R123_64BIT(x) - expands to something equivalent to - UINT64_C(x) from , even in environments where - is not available, e.g., MSVC and OpenCL. - -
  • R123_BUILTIN_EXPECT(expr,likely_value) - expands to something with - the semantics of gcc's __builtin_expect(expr,likely_value). If - the environment has nothing like __builtin_expect, it should expand - to just expr. -
- - -\cond HIDDEN_FROM_DOXYGEN -*/ - -/* -N.B. When something is added to the list of features, it should be -added to each of the *features.h files, AND to examples/ut_features.cpp. -*/ - -/* N.B. most other compilers (icc, nvcc, open64, llvm) will also define __GNUC__, so order matters. */ -#if defined(__METAL_MACOS__) -#include "metalfeatures.h" -#elif defined(__OPENCL_VERSION__) && __OPENCL_VERSION__ > 0 -#include "openclfeatures.h" -#elif defined(__ICC) -#include "iccfeatures.h" -#elif defined(__xlC__) -#include "xlcfeatures.h" -#elif defined(__SUNPRO_C) || defined(__SUNPRO_CC) -#include "sunprofeatures.h" -#elif defined(__OPEN64__) -#include "open64features.h" -#elif defined(__clang__) -#include "clangfeatures.h" -#elif defined(__GNUC__) -#include "gccfeatures.h" -#elif defined(__PGI) -#include "pgccfeatures.h" -#elif defined(_MSC_FULL_VER) -#include "msvcfeatures.h" -#else -#error "Can't identify compiler. You'll need to add a new xxfeatures.hpp" -{ /* maybe an unbalanced brace will terminate the compilation */ -#endif - -#ifndef R123_USE_CXX11 -#define R123_USE_CXX11 (__cplusplus >= 201103L) -#endif - -#ifndef R123_USE_CXX11_UNRESTRICTED_UNIONS -#define R123_USE_CXX11_UNRESTRICTED_UNIONS R123_USE_CXX11 -#endif - -#ifndef R123_USE_CXX11_STATIC_ASSERT -#define R123_USE_CXX11_STATIC_ASSERT R123_USE_CXX11 -#endif - -#ifndef R123_USE_CXX11_CONSTEXPR -#define R123_USE_CXX11_CONSTEXPR R123_USE_CXX11 -#endif - -#ifndef R123_USE_CXX11_EXPLICIT_CONVERSIONS -#define R123_USE_CXX11_EXPLICIT_CONVERSIONS R123_USE_CXX11 -#endif - -#ifndef R123_USE_CXX11_RANDOM -#define R123_USE_CXX11_RANDOM R123_USE_CXX11 -#endif - -#ifndef R123_USE_CXX11_TYPE_TRAITS -#define R123_USE_CXX11_TYPE_TRAITS R123_USE_CXX11 -#endif - -#ifndef R123_USE_CXX11_LONG_LONG -#define R123_USE_CXX11_LONG_LONG R123_USE_CXX11 -#endif - -#ifndef R123_USE_CXX11_STD_ARRAY -#define R123_USE_CXX11_STD_ARRAY R123_USE_CXX11 -#endif - -#ifndef R123_USE_MULHILO64_C99 -#define R123_USE_MULHILO64_C99 0 -#endif - -#ifndef R123_USE_MULHILO64_MULHI_INTRIN -#define R123_USE_MULHILO64_MULHI_INTRIN 0 -#endif - -#ifndef R123_USE_MULHILO32_MULHI_INTRIN -#define R123_USE_MULHILO32_MULHI_INTRIN 0 -#endif - -#ifndef R123_STATIC_ASSERT -#if R123_USE_CXX11_STATIC_ASSERT -#define R123_STATIC_ASSERT(expr, msg) static_assert(expr, msg) -#else - /* if msg always_looked_like_this, we could paste it into the name. Worth it? */ -#define R123_STATIC_ASSERT(expr, msg) typedef char static_assertion[(!!(expr))*2-1] -#endif -#endif - -#ifndef R123_CONSTEXPR -#if R123_USE_CXX11_CONSTEXPR -#define R123_CONSTEXPR constexpr -#else -#define R123_CONSTEXPR -#endif -#endif - -#ifndef R123_USE_64BIT -#define R123_USE_64BIT 1 -#endif - -#ifndef R123_USE_PHILOX_64BIT -#define R123_USE_PHILOX_64BIT (R123_USE_64BIT && (R123_USE_MULHILO64_ASM || R123_USE_MULHILO64_MSVC_INTRIN || R123_USE_MULHILO64_CUDA_INTRIN || R123_USE_GNU_UINT128 || R123_USE_MULHILO64_C99 || R123_USE_MULHILO64_OPENCL_INTRIN || R123_USE_MULHILO64_MULHI_INTRIN)) -#endif - -#ifndef R123_ULONG_LONG -#if defined(__cplusplus) && !R123_USE_CXX11_LONG_LONG -/* C++98 doesn't have long long. It doesn't have uint64_t either, but - we will have typedef'ed uint64_t to something in the xxxfeatures.h. - With luck, it won't elicit complaints from -pedantic. Cross your - fingers... */ -#define R123_ULONG_LONG uint64_t -#else -#define R123_ULONG_LONG unsigned long long -#endif -#endif - -/* UINT64_C should have been #defined by XXXfeatures.h, either by - #include or through compiler-dependent hacks */ -#ifndef R123_64BIT -#define R123_64BIT(x) UINT64_C(x) -#endif - -#ifndef R123_THROW -#define R123_THROW(x) throw (x) -#endif - -#ifndef R123_METAL_THREAD_ADDRESS_SPACE -#define R123_METAL_THREAD_ADDRESS_SPACE -#endif - -#ifndef R123_METAL_CONSTANT_ADDRESS_SPACE -#define R123_METAL_CONSTANT_ADDRESS_SPACE -#endif - -/* - * Windows.h (and perhaps other "well-meaning" code define min and - * max, so there's a high chance that our definition of min, max - * methods or use of std::numeric_limits min and max will cause - * complaints in any program that happened to include Windows.h or - * suchlike first. We use the null macro below in our own header - * files definition or use of min, max to defensively preclude - * this problem. It may not be enough; one might need to #define - * NOMINMAX before including Windows.h or compile with -DNOMINMAX. - */ -#define R123_NO_MACRO_SUBST - -/** \endcond */ diff --git a/ext/random123/include/Random123/features/gccfeatures.h b/ext/random123/include/Random123/features/gccfeatures.h deleted file mode 100644 index 701f3c6678..0000000000 --- a/ext/random123/include/Random123/features/gccfeatures.h +++ /dev/null @@ -1,263 +0,0 @@ -/* -Copyright 2010-2011, D. E. Shaw Research. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright - notice, this list of conditions, and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright - notice, this list of conditions, and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -* Neither the name of D. E. Shaw Research nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -*/ -#ifndef __gccfeatures_dot_hpp -#define __gccfeatures_dot_hpp - -#define R123_GNUC_VERSION (__GNUC__*10000 + __GNUC_MINOR__*100 + __GNUC_PATCHLEVEL__) - -#if !defined(__x86_64__) && !defined(__i386__) && !defined(__powerpc__) && !defined(__arm__) && !defined(__aarch64__) -# error "This code has only been tested on x86, powerpc and a few arm platforms." -#include -{ /* maybe an unbalanced brace will terminate the compilation */ - /* Feel free to try the Random123 library on other architectures by changing - the conditions that reach this error, but you should consider it a - porting exercise and expect to encounter bugs and deficiencies. - Please let the authors know of any successes (or failures). */ -#endif - -#ifdef __powerpc__ -#include -#endif - -#ifndef R123_STATIC_INLINE -#define R123_STATIC_INLINE static __inline__ -#endif - -#ifndef R123_FORCE_INLINE -#if R123_GNUC_VERSION >= 40000 -#define R123_FORCE_INLINE(decl) decl __attribute__((always_inline)) -#else -#define R123_FORCE_INLINE(decl) decl -#endif -#endif - -#ifndef R123_CUDA_DEVICE -#define R123_CUDA_DEVICE -#endif - -#ifndef R123_ASSERT -#include -#define R123_ASSERT(x) assert(x) -#endif - -#ifndef R123_BUILTIN_EXPECT -#define R123_BUILTIN_EXPECT(expr,likely) __builtin_expect(expr,likely) -#endif - -/* According to the C++0x standard, we should be able to test the numeric - value of __cplusplus == 199701L for C++98, __cplusplus == 201103L for C++11 - But gcc has had an open bug http://gcc.gnu.org/bugzilla/show_bug.cgi?id=1773 - since early 2001, which was finally fixed in 4.7 (early 2012). For - earlier versions, the only way to detect whether --std=c++0x was requested - on the command line is to look at the __GCC_EXPERIMENTAL_CXX0X__ pp-symbol. -*/ -#if defined(__GCC_EXPERIMENTAL_CXX0X__) -#define GNU_CXX11 (__cplusplus>=201103L || (R123_GNUC_VERSION<40700 && 1/* defined(__GCC_EXPERIMENTAL_CXX0X__) */)) -#else -#define GNU_CXX11 (__cplusplus>=201103L || (R123_GNUC_VERSION<40700 && 0/* defined(__GCC_EXPERIMENTAL_CXX0X__) */)) -#endif - -#ifndef R123_USE_CXX11_UNRESTRICTED_UNIONS -#define R123_USE_CXX11_UNRESTRICTED_UNIONS ((R123_GNUC_VERSION >= 40600) && GNU_CXX11) -#endif - -#ifndef R123_USE_CXX11_STATIC_ASSERT -#define R123_USE_CXX11_STATIC_ASSERT ((R123_GNUC_VERSION >= 40300) && GNU_CXX11) -#endif - -#ifndef R123_USE_CXX11_CONSTEXPR -#define R123_USE_CXX11_CONSTEXPR ((R123_GNUC_VERSION >= 40600) && GNU_CXX11) -#endif - -#ifndef R123_USE_CXX11_EXPLICIT_CONVERSIONS -#define R123_USE_CXX11_EXPLICIT_CONVERSIONS ((R123_GNUC_VERSION >= 40500) && GNU_CXX11) -#endif - -#ifndef R123_USE_CXX11_RANDOM -#define R123_USE_CXX11_RANDOM ((R123_GNUC_VERSION>=40500) && GNU_CXX11) -#endif - -#ifndef R123_USE_CXX11_TYPE_TRAITS -#define R123_USE_CXX11_TYPE_TRAITS ((R123_GNUC_VERSION>=40400) && GNU_CXX11) -#endif - -#ifndef R123_USE_AES_NI -#ifdef __AES__ -#define R123_USE_AES_NI 1 -#else -#define R123_USE_AES_NI 0 -#endif -#endif - -#ifndef R123_USE_SSE4_2 -#ifdef __SSE4_2__ -#define R123_USE_SSE4_2 1 -#else -#define R123_USE_SSE4_2 0 -#endif -#endif - -#ifndef R123_USE_SSE4_1 -#ifdef __SSE4_1__ -#define R123_USE_SSE4_1 1 -#else -#define R123_USE_SSE4_1 0 -#endif -#endif - -#ifndef R123_USE_SSE -/* There's no point in trying to compile SSE code in Random123 - unless SSE2 is available. */ -#ifdef __SSE2__ -#define R123_USE_SSE 1 -#else -#define R123_USE_SSE 0 -#endif -#endif - -#ifndef R123_USE_AES_OPENSSL -/* There isn't really a good way to tell at compile time whether - openssl is available. Without a pre-compilation configure-like - tool, it's less error-prone to guess that it isn't available. Add - -DR123_USE_AES_OPENSSL=1 and any necessary LDFLAGS or LDLIBS to - play with openssl */ -#define R123_USE_AES_OPENSSL 0 -#endif - -#ifndef R123_USE_GNU_UINT128 -#if defined(__x86_64__) || defined(__aarch64__) -#define R123_USE_GNU_UINT128 1 -#else -#define R123_USE_GNU_UINT128 0 -#endif -#endif - -#ifndef R123_USE_ASM_GNU -#if (defined(__x86_64__)||defined(__i386__)) -#define R123_USE_ASM_GNU 1 -#else -#define R123_USE_ASM_GNU 1 -#endif -#endif - -#ifndef R123_USE_CPUID_MSVC -#define R123_USE_CPUID_MSVC 0 -#endif - -#ifndef R123_USE_X86INTRIN_H -#if (defined(__x86_64__)||defined(__i386__)) -#define R123_USE_X86INTRIN_H (1/* (defined(__x86_64__)||defined(__i386__)) */ && R123_GNUC_VERSION >= 40402) -#else -#define R123_USE_X86INTRIN_H (0/* (defined(__x86_64__)||defined(__i386__)) */ && R123_GNUC_VERSION >= 40402) -#endif -#endif - -#ifndef R123_USE_IA32INTRIN_H -#define R123_USE_IA32INTRIN_H 0 -#endif - -#ifndef R123_USE_XMMINTRIN_H -#define R123_USE_XMMINTRIN_H 0 -#endif - -#ifndef R123_USE_EMMINTRIN_H -/* gcc -m64 on Solaris 10 defines __SSE2__ but doesn't have - emmintrin.h in the include search path. This is - so broken that I refuse to try to work around it. If this - affects you, figure out where your emmintrin.h lives and - add an appropriate -I to your CPPFLAGS. Or add -DR123_USE_SSE=0. */ -#define R123_USE_EMMINTRIN_H (R123_USE_SSE && (R123_GNUC_VERSION < 40402)) -#endif - -#ifndef R123_USE_SMMINTRIN_H -#define R123_USE_SMMINTRIN_H ((R123_USE_SSE4_1 || R123_USE_SSE4_2) && (R123_GNUC_VERSION < 40402)) -#endif - -#ifndef R123_USE_WMMINTRIN_H -#define R123_USE_WMMINTRIN_H 0 -#endif - -#ifndef R123_USE_INTRIN_H -#define R123_USE_INTRIN_H 0 -#endif - -#ifndef R123_USE_MULHILO32_ASM -#define R123_USE_MULHILO32_ASM 0 -#endif - -#ifndef R123_USE_MULHILO64_ASM -#define R123_USE_MULHILO64_ASM 0 -#endif - -#ifndef R123_USE_MULHILO64_MSVC_INTRIN -#define R123_USE_MULHILO64_MSVC_INTRIN 0 -#endif - -#ifndef R123_USE_MULHILO64_CUDA_INTRIN -#define R123_USE_MULHILO64_CUDA_INTRIN 0 -#endif - -#ifndef R123_USE_MULHILO64_OPENCL_INTRIN -#define R123_USE_MULHILO64_OPENCL_INTRIN 0 -#endif - -#ifndef R123_USE_MULHILO64_MULHI_INTRIN -#if (defined(__powerpc64__)) -#define R123_USE_MULHILO64_MULHI_INTRIN 1 -#else -#define R123_USE_MULHILO64_MULHI_INTRIN 0 -#endif -#endif - -#ifndef R123_MULHILO64_MULHI_INTRIN -#define R123_MULHILO64_MULHI_INTRIN __mulhdu -#endif - -#ifndef R123_USE_MULHILO32_MULHI_INTRIN -#define R123_USE_MULHILO32_MULHI_INTRIN 0 -#endif - -#ifndef R123_MULHILO32_MULHI_INTRIN -#define R123_MULHILO32_MULHI_INTRIN __mulhwu -#endif - -#ifndef __STDC_CONSTANT_MACROS -#define __STDC_CONSTANT_MACROS -#endif -#include -#ifndef UINT64_C -#error UINT64_C not defined. You must define __STDC_CONSTANT_MACROS before you #include -#endif - -/* If you add something, it must go in all the other XXfeatures.hpp - and in ../ut_features.cpp */ -#endif diff --git a/ext/random123/include/Random123/features/iccfeatures.h b/ext/random123/include/Random123/features/iccfeatures.h deleted file mode 100644 index 7e72dec1d3..0000000000 --- a/ext/random123/include/Random123/features/iccfeatures.h +++ /dev/null @@ -1,212 +0,0 @@ -/* -Copyright 2010-2011, D. E. Shaw Research. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright - notice, this list of conditions, and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright - notice, this list of conditions, and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -* Neither the name of D. E. Shaw Research nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -*/ -#ifndef __icpcfeatures_dot_hpp -#define __icpcfeatures_dot_hpp - -// icc relies on gcc libraries and other toolchain components. -#define R123_GNUC_VERSION (__GNUC__*10000 + __GNUC_MINOR__*100 + __GNUC_PATCHLEVEL__) - -#if !defined(__x86_64__) && !defined(__i386__) -# error "This code has only been tested on x86 platforms." -{ // maybe an unbalanced brace will terminate the compilation -// You are invited to try Easy123 on other architectures, by changing -// the conditions that reach this error, but you should consider it a -// porting exercise and expect to encounter bugs and deficiencies. -// Please let the authors know of any successes (or failures). -#endif - -#ifndef R123_STATIC_INLINE -#define R123_STATIC_INLINE static inline -#endif - -#ifndef R123_FORCE_INLINE -#define R123_FORCE_INLINE(decl) decl __attribute__((always_inline)) -#endif - -#ifndef R123_CUDA_DEVICE -#define R123_CUDA_DEVICE -#endif - -#ifndef R123_ASSERT -#include -#define R123_ASSERT(x) assert(x) -#endif - -#ifndef R123_BUILTIN_EXPECT -#define R123_BUILTIN_EXPECT(expr,likely) __builtin_expect(expr,likely) -#endif - -// The basic idiom is: -// #ifndef R123_SOMETHING -// #if some condition -// #define R123_SOMETHING 1 -// #else -// #define R123_SOMETHING 0 -// #endif -// #endif -// This idiom allows an external user to override any decision -// in this file with a command-line -DR123_SOMETHING=1 or -DR123_SOMETHINE=0 - -// An alternative idiom is: -// #ifndef R123_SOMETHING -// #define R123_SOMETHING (some boolean expression) -// #endif -// where the boolean expression might contain previously-defined R123_SOMETHING_ELSE -// pp-symbols. - -#ifndef R123_USE_SSE4_2 -#ifdef __SSE4_2__ -#define R123_USE_SSE4_2 1 -#else -#define R123_USE_SSE4_2 0 -#endif -#endif - -#ifndef R123_USE_SSE4_1 -#ifdef __SSE4_1__ -#define R123_USE_SSE4_1 1 -#else -#define R123_USE_SSE4_1 0 -#endif -#endif - -#ifndef R123_USE_SSE -#ifdef __SSE2__ -#define R123_USE_SSE 1 -#else -#define R123_USE_SSE 0 -#endif -#endif - -#ifndef R123_USE_AES_NI -// Unlike gcc, icc (version 12) does not pre-define an __AES__ -// pp-symbol when -maes or -xHost is on the command line. This feels -// like a defect in icc (it defines __SSE4_2__ in analogous -// circumstances), but until Intel fixes it, we're better off erring -// on the side of caution and not generating instructions that are -// going to raise SIGILL when executed. To get the AES-NI -// instructions with icc, the caller must puts something like -// -DR123_USE_AES_NI=1 or -D__AES__ on the command line. FWIW, the -// AES-NI Whitepaper by Gueron says that icc has supported AES-NI from -// 11.1 onwards. -// -#if defined(__AES__) -#define R123_USE_AES_NI ((__ICC>=1101) && 1/*defined(__AES__)*/) -#else -#define R123_USE_AES_NI ((__ICC>=1101) && 0/*defined(__AES__)*/) -#endif -#endif - -#ifndef R123_USE_AES_OPENSSL -/* There isn't really a good way to tell at compile time whether - openssl is available. Without a pre-compilation configure-like - tool, it's less error-prone to guess that it isn't available. Add - -DR123_USE_AES_OPENSSL=1 and any necessary LDFLAGS or LDLIBS to - play with openssl */ -#define R123_USE_AES_OPENSSL 0 -#endif - -#ifndef R123_USE_GNU_UINT128 -#define R123_USE_GNU_UINT128 0 -#endif - -#ifndef R123_USE_ASM_GNU -#define R123_USE_ASM_GNU 1 -#endif - -#ifndef R123_USE_CPUID_MSVC -#define R123_USE_CPUID_MSVC 0 -#endif - -#ifndef R123_USE_X86INTRIN_H -#define R123_USE_X86INTRIN_H 0 -#endif - -#ifndef R123_USE_IA32INTRIN_H -#define R123_USE_IA32INTRIN_H 1 -#endif - -#ifndef R123_USE_XMMINTRIN_H -#define R123_USE_XMMINTRIN_H 0 -#endif - -#ifndef R123_USE_EMMINTRIN_H -#define R123_USE_EMMINTRIN_H 1 -#endif - -#ifndef R123_USE_SMMINTRIN_H -#define R123_USE_SMMINTRIN_H 1 -#endif - -#ifndef R123_USE_WMMINTRIN_H -#define R123_USE_WMMINTRIN_H 1 -#endif - -#ifndef R123_USE_INTRIN_H -#define R123_USE_INTRIN_H 0 -#endif - -#ifndef R123_USE_MULHILO16_ASM -#define R123_USE_MULHILO16_ASM 0 -#endif - -#ifndef R123_USE_MULHILO32_ASM -#define R123_USE_MULHILO32_ASM 0 -#endif - -#ifndef R123_USE_MULHILO64_ASM -#define R123_USE_MULHILO64_ASM 1 -#endif - -#ifndef R123_USE_MULHILO64_MSVC_INTRIN -#define R123_USE_MULHILO64_MSVC_INTRIN 0 -#endif - -#ifndef R123_USE_MULHILO64_CUDA_INTRIN -#define R123_USE_MULHILO64_CUDA_INTRIN 0 -#endif - -#ifndef R123_USE_MULHILO64_OPENCL_INTRIN -#define R123_USE_MULHILO64_OPENCL_INTRIN 0 -#endif - -#ifndef __STDC_CONSTANT_MACROS -#define __STDC_CONSTANT_MACROS -#endif -#include -#ifndef UINT64_C -#error UINT64_C not defined. You must define __STDC_CONSTANT_MACROS before you #include -#endif - -// If you add something, it must go in all the other XXfeatures.hpp -// and in ../ut_features.cpp -#endif diff --git a/ext/random123/include/Random123/features/metalfeatures.h b/ext/random123/include/Random123/features/metalfeatures.h deleted file mode 100644 index bafe51a684..0000000000 --- a/ext/random123/include/Random123/features/metalfeatures.h +++ /dev/null @@ -1,111 +0,0 @@ -/* -Copyright 2010-2011, D. E. Shaw Research. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright - notice, this list of conditions, and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright - notice, this list of conditions, and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -* Neither the name of D. E. Shaw Research nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -*/ - -/* - * Written by Tom Schoonjans - */ - -#ifndef __metalfeatures_dot_hpp -#define __metalfeatures_dot_hpp - -#ifndef R123_STATIC_INLINE -#define R123_STATIC_INLINE inline -#endif - -#ifndef R123_FORCE_INLINE -#define R123_FORCE_INLINE(decl) decl __attribute__((always_inline)) -#endif - -#ifndef R123_CUDA_DEVICE -#define R123_CUDA_DEVICE -#endif - -#ifndef R123_METAL_THREAD_ADDRESS_SPACE -#define R123_METAL_THREAD_ADDRESS_SPACE thread -#endif - -#ifndef R123_METAL_CONSTANT_ADDRESS_SPACE -#define R123_METAL_CONSTANT_ADDRESS_SPACE constant -#endif - -#ifndef R123_ASSERT -#define R123_ASSERT(x) -#endif - -#ifndef R123_BUILTIN_EXPECT -#define R123_BUILTIN_EXPECT(expr,likely) expr -#endif - -#ifndef R123_USE_GNU_UINT128 -#define R123_USE_GNU_UINT128 0 -#endif - -#ifndef R123_USE_MULHILO64_ASM -#define R123_USE_MULHILO64_ASM 0 -#endif - -#ifndef R123_USE_MULHILO64_MSVC_INTRIN -#define R123_USE_MULHILO64_MSVC_INTRIN 0 -#endif - -#ifndef R123_USE_MULHILO64_CUDA_INTRIN -#define R123_USE_MULHILO64_CUDA_INTRIN 0 -#endif - -#ifndef R123_USE_MULHILO64_OPENCL_INTRIN -#define R123_USE_MULHILO64_OPENCL_INTRIN 0 -#endif - -#ifndef R123_USE_MULHILO32_MULHI_INTRIN -#define R123_USE_MULHILO32_MULHI_INTRIN 1 -#endif - -#if R123_USE_MULHILO32_MULHI_INTRIN -#include -#define R123_MULHILO32_MULHI_INTRIN metal::mulhi -#endif - -#ifndef R123_USE_AES_NI -#define R123_USE_AES_NI 0 -#endif - -#ifndef R123_USE_64BIT -#define R123_USE_64BIT 0 /* Metal currently (Feb 2019, Specification-2) does not support 64-bit variable types */ -#endif - -#ifndef R123_ULONG_LONG -/* the longest integer type in Metal (Feb 2019, Specification-2) is a - * 32-bit unsigned int. Let's hope for the best... */ -#define R123_ULONG_LONG unsigned int -#endif - -#endif diff --git a/ext/random123/include/Random123/features/msvcfeatures.h b/ext/random123/include/Random123/features/msvcfeatures.h deleted file mode 100644 index 9eb9520912..0000000000 --- a/ext/random123/include/Random123/features/msvcfeatures.h +++ /dev/null @@ -1,200 +0,0 @@ -/* -Copyright 2010-2011, D. E. Shaw Research. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright - notice, this list of conditions, and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright - notice, this list of conditions, and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -* Neither the name of D. E. Shaw Research nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -*/ -#ifndef __msvcfeatures_dot_hpp -#define __msvcfeatures_dot_hpp - -//#if _MSVC_FULL_VER <= 15 -//#error "We've only tested MSVC_FULL_VER==15." -//#endif - -#if !defined(_M_IX86) && !defined(_M_X64) -# error "This code has only been tested on x86 platforms." -{ // maybe an unbalanced brace will terminate the compilation -// You are invited to try Random123 on other architectures, by changing -// the conditions that reach this error, but you should consider it a -// porting exercise and expect to encounter bugs and deficiencies. -// Please let the authors know of any successes (or failures). -#endif - -#ifndef R123_STATIC_INLINE -#define R123_STATIC_INLINE static __inline -#endif - -#ifndef R123_FORCE_INLINE -#define R123_FORCE_INLINE(decl) _forceinline decl -#endif - -#ifndef R123_CUDA_DEVICE -#define R123_CUDA_DEVICE -#endif - -#ifndef R123_ASSERT -#include -#define R123_ASSERT(x) assert(x) -#endif - -#ifndef R123_BUILTIN_EXPECT -#define R123_BUILTIN_EXPECT(expr,likely) expr -#endif - -// The basic idiom is: -// #ifndef R123_SOMETHING -// #if some condition -// #define R123_SOMETHING 1 -// #else -// #define R123_SOMETHING 0 -// #endif -// #endif -// This idiom allows an external user to override any decision -// in this file with a command-line -DR123_SOMETHING=1 or -DR123_SOMETHINE=0 - -// An alternative idiom is: -// #ifndef R123_SOMETHING -// #define R123_SOMETHING (some boolean expression) -// #endif -// where the boolean expression might contain previously-defined R123_SOMETHING_ELSE -// pp-symbols. - -#ifndef R123_USE_AES_NI -#if defined(_M_X64) -#define R123_USE_AES_NI 1 -#else -#define R123_USE_AES_NI 0 -#endif -#endif - -#ifndef R123_USE_SSE4_2 -#if defined(_M_X64) -#define R123_USE_SSE4_2 1 -#else -#define R123_USE_SSE4_2 0 -#endif -#endif - -#ifndef R123_USE_SSE4_1 -#if defined(_M_X64) -#define R123_USE_SSE4_1 1 -#else -#define R123_USE_SSE4_1 0 -#endif -#endif - -#ifndef R123_USE_SSE -#define R123_USE_SSE 1 -#endif - -#ifndef R123_USE_AES_OPENSSL -#define R123_USE_AES_OPENSSL 0 -#endif - -#ifndef R123_USE_GNU_UINT128 -#define R123_USE_GNU_UINT128 0 -#endif - -#ifndef R123_USE_ASM_GNU -#define R123_USE_ASM_GNU 0 -#endif - -#ifndef R123_USE_CPUID_MSVC -#define R123_USE_CPUID_MSVC 1 -#endif - -#ifndef R123_USE_X86INTRIN_H -#define R123_USE_X86INTRIN_H 0 -#endif - -#ifndef R123_USE_IA32INTRIN_H -#define R123_USE_IA32INTRIN_H 0 -#endif - -#ifndef R123_USE_XMMINTRIN_H -#define R123_USE_XMMINTRIN_H 0 -#endif - -#ifndef R123_USE_EMMINTRIN_H -#define R123_USE_EMMINTRIN_H 1 -#endif - -#ifndef R123_USE_SMMINTRIN_H -#define R123_USE_SMMINTRIN_H 1 -#endif - -#ifndef R123_USE_WMMINTRIN_H -#define R123_USE_WMMINTRIN_H 1 -#endif - -#ifndef R123_USE_INTRIN_H -#define R123_USE_INTRIN_H 1 -#endif - -#ifndef R123_USE_MULHILO16_ASM -#define R123_USE_MULHILO16_ASM 0 -#endif - -#ifndef R123_USE_MULHILO32_ASM -#define R123_USE_MULHILO32_ASM 0 -#endif - -#ifndef R123_USE_MULHILO64_ASM -#define R123_USE_MULHILO64_ASM 0 -#endif - -#ifndef R123_USE_MULHILO64_MSVC_INTRIN -#if defined(_M_X64) -#define R123_USE_MULHILO64_MSVC_INTRIN 1 -#else -#define R123_USE_MULHILO64_MSVC_INTRIN 0 -#endif -#endif - -#ifndef R123_USE_MULHILO64_CUDA_INTRIN -#define R123_USE_MULHILO64_CUDA_INTRIN 0 -#endif - -#ifndef R123_USE_MULHILO64_OPENCL_INTRIN -#define R123_USE_MULHILO64_OPENCL_INTRIN 0 -#endif - -#ifndef __STDC_CONSTANT_MACROS -#define __STDC_CONSTANT_MACROS -#endif -#include -#ifndef UINT64_C -#error UINT64_C not defined. You must define __STDC_CONSTANT_MACROS before you #include -#endif - -#pragma warning(disable:4244) -#pragma warning(disable:4996) - -// If you add something, it must go in all the other XXfeatures.hpp -// and in ../ut_features.cpp -#endif diff --git a/ext/random123/include/Random123/features/nvccfeatures.h b/ext/random123/include/Random123/features/nvccfeatures.h deleted file mode 100644 index d1ff8bf521..0000000000 --- a/ext/random123/include/Random123/features/nvccfeatures.h +++ /dev/null @@ -1,125 +0,0 @@ -/* -Copyright 2010-2011, D. E. Shaw Research. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright - notice, this list of conditions, and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright - notice, this list of conditions, and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -* Neither the name of D. E. Shaw Research nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -*/ -#ifndef __r123_nvcc_features_dot_h__ -#define __r123_nvcc_features_dot_h__ - -#if !defined(CUDART_VERSION) -#error "why are we in nvccfeatures.h if CUDART_VERSION is not defined" -#endif - -#if CUDART_VERSION < 4010 -#error "CUDA versions earlier than 4.1 produce incorrect results for some templated functions in namespaces. Random123 isunsupported. See comments in nvccfeatures.h" -// This test was added in Random123-1.08 (August, 2013) because we -// discovered that Ftype(maxTvalue()) with Ftype=double and -// T=uint64_t in examples/uniform.hpp produces -1 for CUDA4.0 and -// earlier. We can't be sure this bug doesn't also affect invocations -// of other templated functions, e.g., essentially all of Random123. -// Thus, we no longer trust CUDA versions earlier than 4.1 even though -// we had previously tested and timed Random123 with CUDA 3.x and 4.0. -// If you feel lucky or desperate, you can change #error to #warning, but -// please take extra care to be sure that you are getting correct -// results. -#endif - -// nvcc falls through to gcc or msvc. So first define -// a couple of things and then include either gccfeatures.h -// or msvcfeatures.h - -//#ifdef __CUDA_ARCH__ allows Philox32 and Philox64 to be compiled -//for both device and host functions in CUDA by setting compiler flags -//for the device function -#ifdef __CUDA_ARCH__ -#ifndef R123_CUDA_DEVICE -#define R123_CUDA_DEVICE __device__ -#endif - -#ifndef R123_USE_MULHILO64_CUDA_INTRIN -#define R123_USE_MULHILO64_CUDA_INTRIN 1 -#endif - -#ifndef R123_THROW -// No exceptions in CUDA, at least upto 4.0 -#define R123_THROW(x) R123_ASSERT(0) -#endif - -#ifndef R123_ASSERT -#define R123_ASSERT(x) if((x)) ; else asm("trap;") -#endif - -#else // ! __CUDA_ARCH__ -// If we're using nvcc not compiling for the CUDA architecture, -// then we must be compiling for the host. In that case, -// tell the philox code to use the mulhilo64 asm because -// nvcc doesn't grok uint128_t. -#ifndef R123_USE_MULHILO64_ASM -#define R123_USE_MULHILO64_ASM 1 -#endif - -#endif // __CUDA_ARCH__ - -#ifndef R123_BUILTIN_EXPECT -#define R123_BUILTIN_EXPECT(expr,likely) expr -#endif - -#ifndef R123_USE_AES_NI -#define R123_USE_AES_NI 0 -#endif - -#ifndef R123_USE_SSE4_2 -#define R123_USE_SSE4_2 0 -#endif - -#ifndef R123_USE_SSE4_1 -#define R123_USE_SSE4_1 0 -#endif - -#ifndef R123_USE_SSE -#define R123_USE_SSE 0 -#endif - -#ifndef R123_USE_GNU_UINT128 -#define R123_USE_GNU_UINT128 0 -#endif - -#ifndef R123_ULONG_LONG -// uint64_t, which is what we'd get without this, is -// not the same as unsigned long long -#define R123_ULONG_LONG unsigned long long -#endif - -#if defined(__GNUC__) -#include "gccfeatures.h" -#elif defined(_MSC_FULL_VER) -#include "msvcfeatures.h" -#endif - -#endif diff --git a/ext/random123/include/Random123/features/open64features.h b/ext/random123/include/Random123/features/open64features.h deleted file mode 100644 index 8da9f5f51e..0000000000 --- a/ext/random123/include/Random123/features/open64features.h +++ /dev/null @@ -1,50 +0,0 @@ -/* -Copyright 2010-2011, D. E. Shaw Research. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright - notice, this list of conditions, and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright - notice, this list of conditions, and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -* Neither the name of D. E. Shaw Research nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -*/ -#ifndef __open64features_dot_hpp -#define __open64features_dot_hpp - -/* The gcc features are mostly right. We just override a few and then include gccfeatures.h */ - -/* Open64 4.2.3 and 4.2.4 accept the __uint128_t code without complaint - but produce incorrect code for 64-bit philox. The MULHILO64_ASM - seems to work fine */ -#ifndef R123_USE_GNU_UINT128 -#define R123_USE_GNU_UINT128 0 -#endif - -#ifndef R123_USE_MULHILO64_ASM -#define R123_USE_MULHILO64_ASM 1 -#endif - -#include "gccfeatures.h" - -#endif diff --git a/ext/random123/include/Random123/features/openclfeatures.h b/ext/random123/include/Random123/features/openclfeatures.h deleted file mode 100644 index af03d30923..0000000000 --- a/ext/random123/include/Random123/features/openclfeatures.h +++ /dev/null @@ -1,89 +0,0 @@ -/* -Copyright 2010-2011, D. E. Shaw Research. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright - notice, this list of conditions, and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright - notice, this list of conditions, and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -* Neither the name of D. E. Shaw Research nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -*/ -#ifndef __openclfeatures_dot_hpp -#define __openclfeatures_dot_hpp - -#ifndef R123_STATIC_INLINE -#define R123_STATIC_INLINE inline -#endif - -#ifndef R123_FORCE_INLINE -#define R123_FORCE_INLINE(decl) decl __attribute__((always_inline)) -#endif - -#ifndef R123_CUDA_DEVICE -#define R123_CUDA_DEVICE -#endif - -#ifndef R123_ASSERT -#define R123_ASSERT(x) -#endif - -#ifndef R123_BUILTIN_EXPECT -#define R123_BUILTIN_EXPECT(expr,likely) expr -#endif - -#ifndef R123_USE_GNU_UINT128 -#define R123_USE_GNU_UINT128 0 -#endif - -#ifndef R123_USE_MULHILO64_ASM -#define R123_USE_MULHILO64_ASM 0 -#endif - -#ifndef R123_USE_MULHILO64_MSVC_INTRIN -#define R123_USE_MULHILO64_MSVC_INTRIN 0 -#endif - -#ifndef R123_USE_MULHILO64_CUDA_INTRIN -#define R123_USE_MULHILO64_CUDA_INTRIN 0 -#endif - -#ifndef R123_USE_MULHILO64_OPENCL_INTRIN -#define R123_USE_MULHILO64_OPENCL_INTRIN 1 -#endif - -#ifndef R123_USE_AES_NI -#define R123_USE_AES_NI 0 -#endif - -// XXX ATI APP SDK 2.4 clBuildProgram SEGVs if one uses uint64_t instead of -// ulong to mul_hi. And gets lots of complaints from stdint.h -// on some machines. -// But these typedefs mean we cannot include stdint.h with -// these headers? Do we need R123_64T, R123_32T, R123_8T? -typedef ulong uint64_t; -typedef uint uint32_t; -typedef uchar uint8_t; -#define UINT64_C(x) ((ulong)(x##UL)) - -#endif diff --git a/ext/random123/include/Random123/features/pgccfeatures.h b/ext/random123/include/Random123/features/pgccfeatures.h deleted file mode 100644 index 18ace1353b..0000000000 --- a/ext/random123/include/Random123/features/pgccfeatures.h +++ /dev/null @@ -1,194 +0,0 @@ -/* -Copyright 2010-2011, D. E. Shaw Research. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright - notice, this list of conditions, and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright - notice, this list of conditions, and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -* Neither the name of D. E. Shaw Research nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Copyright (c) 2013, Los Alamos National Security, LLC -All rights reserved. - -Copyright 2013. Los Alamos National Security, LLC. This software was produced -under U.S. Government contract DE-AC52-06NA25396 for Los Alamos National -Laboratory (LANL), which is operated by Los Alamos National Security, LLC for -the U.S. Department of Energy. The U.S. Government has rights to use, -reproduce, and distribute this software. NEITHER THE GOVERNMENT NOR LOS -ALAMOS NATIONAL SECURITY, LLC MAKES ANY WARRANTY, EXPRESS OR IMPLIED, OR -ASSUMES ANY LIABILITY FOR THE USE OF THIS SOFTWARE. If software is modified -to produce derivative works, such modified software should be clearly marked, -so as not to confuse it with the version available from LANL. -*/ -#ifndef __pgccfeatures_dot_hpp -#define __pgccfeatures_dot_hpp - -#if !defined(__x86_64__) && !defined(__i386__) -# error "This code has only been tested on x86 platforms." -#include -{ /* maybe an unbalanced brace will terminate the compilation */ - /* Feel free to try the Random123 library on other architectures by changing - the conditions that reach this error, but you should consider it a - porting exercise and expect to encounter bugs and deficiencies. - Please let the authors know of any successes (or failures). */ -#endif - -#ifndef R123_STATIC_INLINE -#define R123_STATIC_INLINE static inline -#endif - -/* Found this example in PGI's emmintrin.h. */ -#ifndef R123_FORCE_INLINE -#define R123_FORCE_INLINE(decl) decl __attribute__((__always_inline__)) -#endif - -#ifndef R123_CUDA_DEVICE -#define R123_CUDA_DEVICE -#endif - -#ifndef R123_ASSERT -#include -#define R123_ASSERT(x) assert(x) -#endif - -#ifndef R123_BUILTIN_EXPECT -#define R123_BUILTIN_EXPECT(expr,likely) (expr) -#endif - -/* PGI through 13.2 doesn't appear to support AES-NI. */ -#ifndef R123_USE_AES_NI -#define R123_USE_AES_NI 0 -#endif - -/* PGI through 13.2 appears to support MMX, SSE, SSE3, SSE3, SSSE3, SSE4a, and - ABM, but not SSE4.1 or SSE4.2. */ -#ifndef R123_USE_SSE4_2 -#define R123_USE_SSE4_2 0 -#endif - -#ifndef R123_USE_SSE4_1 -#define R123_USE_SSE4_1 0 -#endif - -#ifndef R123_USE_SSE -/* There's no point in trying to compile SSE code in Random123 - unless SSE2 is available. */ -#ifdef __SSE2__ -#define R123_USE_SSE 1 -#else -#define R123_USE_SSE 0 -#endif -#endif - -#ifndef R123_USE_AES_OPENSSL -/* There isn't really a good way to tell at compile time whether - openssl is available. Without a pre-compilation configure-like - tool, it's less error-prone to guess that it isn't available. Add - -DR123_USE_AES_OPENSSL=1 and any necessary LDFLAGS or LDLIBS to - play with openssl */ -#define R123_USE_AES_OPENSSL 0 -#endif - -#ifndef R123_USE_GNU_UINT128 -#define R123_USE_GNU_UINT128 0 -#endif - -#ifndef R123_USE_ASM_GNU -#define R123_USE_ASM_GNU 1 -#endif - -#ifndef R123_USE_CPUID_MSVC -#define R123_USE_CPUID_MSVC 0 -#endif - -#ifndef R123_USE_X86INTRIN_H -#define R123_USE_X86INTRIN_H 0 -#endif - -#ifndef R123_USE_IA32INTRIN_H -#define R123_USE_IA32INTRIN_H 0 -#endif - -/* emmintrin.h from PGI #includes xmmintrin.h but then complains at link time - about undefined references to _mm_castsi128_ps(__m128i). Why? */ -#ifndef R123_USE_XMMINTRIN_H -#define R123_USE_XMMINTRIN_H 1 -#endif - -#ifndef R123_USE_EMMINTRIN_H -#define R123_USE_EMMINTRIN_H 1 -#endif - -#ifndef R123_USE_SMMINTRIN_H -#define R123_USE_SMMINTRIN_H 0 -#endif - -#ifndef R123_USE_WMMINTRIN_H -#define R123_USE_WMMINTRIN_H 0 -#endif - -#ifndef R123_USE_INTRIN_H -#ifdef __ABM__ -#define R123_USE_INTRIN_H 1 -#else -#define R123_USE_INTRIN_H 0 -#endif -#endif - -#ifndef R123_USE_MULHILO32_ASM -#define R123_USE_MULHILO32_ASM 0 -#endif - -#ifndef R123_USE_MULHILO64_MULHI_INTRIN -#define R123_USE_MULHILO64_MULHI_INTRIN 0 -#endif - -#ifndef R123_USE_MULHILO64_ASM -#define R123_USE_MULHILO64_ASM 1 -#endif - -#ifndef R123_USE_MULHILO64_MSVC_INTRIN -#define R123_USE_MULHILO64_MSVC_INTRIN 0 -#endif - -#ifndef R123_USE_MULHILO64_CUDA_INTRIN -#define R123_USE_MULHILO64_CUDA_INTRIN 0 -#endif - -#ifndef R123_USE_MULHILO64_OPENCL_INTRIN -#define R123_USE_MULHILO64_OPENCL_INTRIN 0 -#endif - -#ifndef __STDC_CONSTANT_MACROS -#define __STDC_CONSTANT_MACROS -#endif -#include -#ifndef UINT64_C -#error UINT64_C not defined. You must define __STDC_CONSTANT_MACROS before you #include -#endif - -/* If you add something, it must go in all the other XXfeatures.hpp - and in ../ut_features.cpp */ -#endif diff --git a/ext/random123/include/Random123/features/sse.h b/ext/random123/include/Random123/features/sse.h deleted file mode 100644 index 3a49ebd865..0000000000 --- a/ext/random123/include/Random123/features/sse.h +++ /dev/null @@ -1,280 +0,0 @@ -/* -Copyright 2010-2011, D. E. Shaw Research. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright - notice, this list of conditions, and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright - notice, this list of conditions, and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -* Neither the name of D. E. Shaw Research nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -*/ -#ifndef _Random123_sse_dot_h__ -#define _Random123_sse_dot_h__ - -#if R123_USE_SSE - -#if R123_USE_X86INTRIN_H -#include -#endif -#if R123_USE_IA32INTRIN_H -#include -#endif -#if R123_USE_XMMINTRIN_H -#include -#endif -#if R123_USE_EMMINTRIN_H -#include -#endif -#if R123_USE_SMMINTRIN_H -#include -#endif -#if R123_USE_WMMINTRIN_H -#include -#endif -#if R123_USE_INTRIN_H -#include -#endif -#ifdef __cplusplus -#include -#include -#include -#endif - -#if R123_USE_ASM_GNU - -/* bit25 of CX tells us whether AES is enabled. */ -R123_STATIC_INLINE int haveAESNI(){ - unsigned int eax, ebx, ecx, edx; - __asm__ __volatile__ ("cpuid": "=a" (eax), "=b" (ebx), "=c" (ecx), "=d" (edx) : - "a" (1)); - return (ecx>>25) & 1; -} -#elif R123_USE_CPUID_MSVC -R123_STATIC_INLINE int haveAESNI(){ - int CPUInfo[4]; - __cpuid(CPUInfo, 1); - return (CPUInfo[2]>>25)&1; -} -#else /* R123_USE_CPUID_??? */ -#warning "No R123_USE_CPUID_XXX method chosen. haveAESNI will always return false" -R123_STATIC_INLINE int haveAESNI(){ - return 0; -} -#endif /* R123_USE_ASM_GNU || R123_USE_CPUID_MSVC */ - -// There is a lot of annoying and inexplicable variation in the -// SSE intrinsics available in different compilation environments. -// The details seem to depend on the compiler, the version and -// the target architecture. Rather than insisting on -// R123_USE_feature tests for each of these in each of the -// compilerfeatures.h files we just keep the complexity localized -// to here... -#if (defined(__ICC) && __ICC<1210) || (defined(_MSC_VER) && !defined(_WIN64)) -/* Is there an intrinsic to assemble an __m128i from two 64-bit words? - If not, use the 4x32-bit intrisic instead. N.B. It looks like Intel - added _mm_set_epi64x to icc version 12.1 in Jan 2012. -*/ -R123_STATIC_INLINE __m128i _mm_set_epi64x(uint64_t v1, uint64_t v0){ - union{ - uint64_t u64; - uint32_t u32[2]; - } u1, u0; - u1.u64 = v1; - u0.u64 = v0; - return _mm_set_epi32(u1.u32[1], u1.u32[0], u0.u32[1], u0.u32[0]); -} -#endif -/* _mm_extract_lo64 abstracts the task of extracting the low 64-bit - word from an __m128i. The _mm_cvtsi128_si64 intrinsic does the job - on 64-bit platforms. Unfortunately, both MSVC and Open64 fail - assertions in ut_M128.cpp and ut_carray.cpp when we use the - _mm_cvtsi128_si64 intrinsic. (See - https://bugs.open64.net/show_bug.cgi?id=873 for the Open64 bug). - On 32-bit platforms, there's no MOVQ, so there's no intrinsic. - Finally, even if the intrinsic exists, it may be spelled with or - without the 'x'. -*/ -#if !defined(__x86_64__) || defined(_MSC_VER) || defined(__OPEN64__) -R123_STATIC_INLINE uint64_t _mm_extract_lo64(__m128i si){ - union{ - uint64_t u64[2]; - __m128i m; - }u; - _mm_store_si128(&u.m, si); - return u.u64[0]; -} -#elif defined(__llvm__) || defined(__ICC) -R123_STATIC_INLINE uint64_t _mm_extract_lo64(__m128i si){ - return (uint64_t)_mm_cvtsi128_si64(si); -} -#else /* GNUC, others */ -/* FWIW, gcc's emmintrin.h has had the 'x' spelling - since at least gcc-3.4.4. The no-'x' spelling showed up - around 4.2. */ -R123_STATIC_INLINE uint64_t _mm_extract_lo64(__m128i si){ - return (uint64_t)_mm_cvtsi128_si64x(si); -} -#endif -#if defined(__GNUC__) && __GNUC__ < 4 -/* the cast builtins showed up in gcc4. */ -R123_STATIC_INLINE __m128 _mm_castsi128_ps(__m128i si){ - return (__m128)si; -} -#endif - -#ifdef __cplusplus - -struct r123m128i{ - __m128i m; -#if R123_USE_CXX11_UNRESTRICTED_UNIONS - // C++98 forbids a union member from having *any* constructors. - // C++11 relaxes this, and allows union members to have constructors - // as long as there is a "trivial" default construtor. So in C++11 - // we can provide a r123m128i constructor with an __m128i argument, and still - // have the default (and hence trivial) default constructor. - r123m128i() = default; - r123m128i(__m128i _m): m(_m){} -#endif - r123m128i& operator=(const __m128i& rhs){ m=rhs; return *this;} - r123m128i& operator=(R123_ULONG_LONG n){ m = _mm_set_epi64x(0, n); return *this;} -#if R123_USE_CXX11_EXPLICIT_CONVERSIONS - // With C++11 we can attach explicit to the bool conversion operator - // to disambiguate undesired promotions. For g++, this works - // only in 4.5 and above. - explicit operator bool() const {return _bool();} -#else - // Pre-C++11, we have to do something else. Google for the "safe bool" - // idiom for other ideas... - operator const void*() const{return _bool()?this:0;} -#endif - operator __m128i() const {return m;} - -private: -#if R123_USE_SSE4_1 - bool _bool() const{ return !_mm_testz_si128(m,m); } -#else - bool _bool() const{ return 0xf != _mm_movemask_ps(_mm_castsi128_ps(_mm_cmpeq_epi32(m, _mm_setzero_si128()))); } -#endif -}; - -R123_STATIC_INLINE r123m128i& operator++(r123m128i& v){ - __m128i& c = v.m; - __m128i zeroone = _mm_set_epi64x(R123_64BIT(0), R123_64BIT(1)); - c = _mm_add_epi64(c, zeroone); - //return c; -#if R123_USE_SSE4_1 - __m128i zerofff = _mm_set_epi64x(0, ~(R123_64BIT(0))); - if( R123_BUILTIN_EXPECT(_mm_testz_si128(c,zerofff), 0) ){ - __m128i onezero = _mm_set_epi64x(R123_64BIT(1), R123_64BIT(0)); - c = _mm_add_epi64(c, onezero); - } -#else - unsigned mask = _mm_movemask_ps( _mm_castsi128_ps(_mm_cmpeq_epi32(c, _mm_setzero_si128()))); - // The low two bits of mask are 11 iff the low 64 bits of - // c are zero. - if( R123_BUILTIN_EXPECT((mask&0x3) == 0x3, 0) ){ - __m128i onezero = _mm_set_epi64x(1,0); - c = _mm_add_epi64(c, onezero); - } -#endif - return v; -} - -R123_STATIC_INLINE r123m128i& operator+=(r123m128i& lhs, R123_ULONG_LONG n){ - __m128i c = lhs.m; - __m128i incr128 = _mm_set_epi64x(0, n); - c = _mm_add_epi64(c, incr128); - // return c; // NO CARRY! - - int64_t lo64 = _mm_extract_lo64(c); - if((uint64_t)lo64 < n) - c = _mm_add_epi64(c, _mm_set_epi64x(1,0)); - lhs.m = c; - return lhs; -} - -// We need this one because it's present, but never used in r123array1xm128i::incr -R123_STATIC_INLINE bool operator<=(R123_ULONG_LONG, const r123m128i &){ - throw std::runtime_error("operator<=(unsigned long long, r123m128i) is unimplemented.");} - -// The comparisons aren't implemented, but if we leave them out, and -// somebody writes, e.g., M1 < M2, the compiler will do an implicit -// conversion through void*. Sigh... -R123_STATIC_INLINE bool operator<(const r123m128i&, const r123m128i&){ - throw std::runtime_error("operator<(r123m128i, r123m128i) is unimplemented.");} -R123_STATIC_INLINE bool operator<=(const r123m128i&, const r123m128i&){ - throw std::runtime_error("operator<=(r123m128i, r123m128i) is unimplemented.");} -R123_STATIC_INLINE bool operator>(const r123m128i&, const r123m128i&){ - throw std::runtime_error("operator>(r123m128i, r123m128i) is unimplemented.");} -R123_STATIC_INLINE bool operator>=(const r123m128i&, const r123m128i&){ - throw std::runtime_error("operator>=(r123m128i, r123m128i) is unimplemented.");} - -R123_STATIC_INLINE bool operator==(const r123m128i &lhs, const r123m128i &rhs){ - return 0xf==_mm_movemask_ps(_mm_castsi128_ps(_mm_cmpeq_epi32(lhs, rhs))); } -R123_STATIC_INLINE bool operator!=(const r123m128i &lhs, const r123m128i &rhs){ - return !(lhs==rhs);} -R123_STATIC_INLINE bool operator==(R123_ULONG_LONG lhs, const r123m128i &rhs){ - r123m128i LHS; LHS.m=_mm_set_epi64x(0, lhs); return LHS == rhs; } -R123_STATIC_INLINE bool operator!=(R123_ULONG_LONG lhs, const r123m128i &rhs){ - return !(lhs==rhs);} -R123_STATIC_INLINE std::ostream& operator<<(std::ostream& os, const r123m128i& m){ - union{ - uint64_t u64[2]; - __m128i m; - }u; - _mm_storeu_si128(&u.m, m.m); - return os << u.u64[0] << " " << u.u64[1]; -} - -R123_STATIC_INLINE std::istream& operator>>(std::istream& is, r123m128i& m){ - uint64_t u64[2]; - is >> u64[0] >> u64[1]; - m.m = _mm_set_epi64x(u64[1], u64[0]); - return is; -} - -template inline T assemble_from_u32(uint32_t *p32); // forward declaration - -template <> -inline r123m128i assemble_from_u32(uint32_t *p32){ - r123m128i ret; - ret.m = _mm_set_epi32(p32[3], p32[2], p32[1], p32[0]); - return ret; -} - -#else - -typedef struct { - __m128i m; -} r123m128i; - -#endif /* __cplusplus */ - -#else /* !R123_USE_SSE */ -R123_STATIC_INLINE int haveAESNI(){ - return 0; -} -#endif /* R123_USE_SSE */ - -#endif /* _Random123_sse_dot_h__ */ diff --git a/ext/random123/include/Random123/features/sunprofeatures.h b/ext/random123/include/Random123/features/sunprofeatures.h deleted file mode 100644 index c9cdc00f5e..0000000000 --- a/ext/random123/include/Random123/features/sunprofeatures.h +++ /dev/null @@ -1,172 +0,0 @@ -/* -Copyright 2010-2011, D. E. Shaw Research. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright - notice, this list of conditions, and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright - notice, this list of conditions, and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -* Neither the name of D. E. Shaw Research nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -*/ -#ifndef __sunprofeatures_dot_hpp -#define __sunprofeatures_dot_hpp - -#ifndef R123_STATIC_INLINE -#define R123_STATIC_INLINE static inline -#endif - -#ifndef R123_FORCE_INLINE -#define R123_FORCE_INLINE(decl) decl -#endif - -#ifndef R123_CUDA_DEVICE -#define R123_CUDA_DEVICE -#endif - -#ifndef R123_ASSERT -#include -#define R123_ASSERT(x) assert(x) -#endif - -#ifndef R123_BUILTIN_EXPECT -#define R123_BUILTIN_EXPECT(expr,likely) expr -#endif - -// The basic idiom is: -// #ifndef R123_SOMETHING -// #if some condition -// #define R123_SOMETHING 1 -// #else -// #define R123_SOMETHING 0 -// #endif -// #endif -// This idiom allows an external user to override any decision -// in this file with a command-line -DR123_SOMETHING=1 or -DR123_SOMETHINE=0 - -// An alternative idiom is: -// #ifndef R123_SOMETHING -// #define R123_SOMETHING (some boolean expression) -// #endif -// where the boolean expression might contain previously-defined R123_SOMETHING_ELSE -// pp-symbols. - -#ifndef R123_USE_AES_NI -#define R123_USE_AES_NI 0 -#endif - -#ifndef R123_USE_SSE4_2 -#define R123_USE_SSE4_2 0 -#endif - -#ifndef R123_USE_SSE4_1 -#define R123_USE_SSE4_1 0 -#endif - -#ifndef R123_USE_SSE -#define R123_USE_SSE 0 -#endif - -#ifndef R123_USE_AES_OPENSSL -#define R123_USE_AES_OPENSSL 0 -#endif - -#ifndef R123_USE_GNU_UINT128 -#define R123_USE_GNU_UINT128 0 -#endif - -#ifndef R123_USE_ASM_GNU -#define R123_USE_ASM_GNU 0 -#endif - -#ifndef R123_USE_CPUID_MSVC -#define R123_USE_CPUID_MSVC 0 -#endif - -#ifndef R123_USE_X86INTRIN_H -#define R123_USE_X86INTRIN_H 0 -#endif - -#ifndef R123_USE_IA32INTRIN_H -#define R123_USE_IA32INTRIN_H 0 -#endif - -#ifndef R123_USE_XMMINTRIN_H -#define R123_USE_XMMINTRIN_H 0 -#endif - -#ifndef R123_USE_EMMINTRIN_H -#define R123_USE_EMMINTRIN_H 0 -#endif - -#ifndef R123_USE_SMMINTRIN_H -#define R123_USE_SMMINTRIN_H 0 -#endif - -#ifndef R123_USE_WMMINTRIN_H -#define R123_USE_WMMINTRIN_H 0 -#endif - -#ifndef R123_USE_INTRIN_H -#define R123_USE_INTRIN_H 0 -#endif - -#ifndef R123_USE_MULHILO16_ASM -#define R123_USE_MULHILO16_ASM 0 -#endif - -#ifndef R123_USE_MULHILO32_ASM -#define R123_USE_MULHILO32_ASM 0 -#endif - -#ifndef R123_USE_MULHILO64_ASM -#define R123_USE_MULHILO64_ASM 0 -#endif - -#ifndef R123_USE_MULHILO64_MSVC_INTRIN -#define R123_USE_MULHILO64_MSVC_INTRIN 0 -#endif - -#ifndef R123_USE_MULHILO64_CUDA_INTRIN -#define R123_USE_MULHILO64_CUDA_INTRIN 0 -#endif - -#ifndef R123_USE_MULHILO64_OPENCL_INTRIN -#define R123_USE_MULHILO64_OPENCL_INTRIN 0 -#endif - -#ifndef R123_USE_PHILOX_64BIT -#define R123_USE_PHILOX_64BIT 0 -#endif - -#ifndef __STDC_CONSTANT_MACROS -#define __STDC_CONSTANT_MACROS -#endif -#include -#ifndef UINT64_C -#error UINT64_C not defined. You must define __STDC_CONSTANT_MACROS before you #include -#endif - -// If you add something, it must go in all the other XXfeatures.hpp -// and in ../ut_features.cpp -#endif diff --git a/ext/random123/include/Random123/features/xlcfeatures.h b/ext/random123/include/Random123/features/xlcfeatures.h deleted file mode 100644 index ccb98ee553..0000000000 --- a/ext/random123/include/Random123/features/xlcfeatures.h +++ /dev/null @@ -1,210 +0,0 @@ -/* -Copyright 2010-2011, D. E. Shaw Research. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright - notice, this list of conditions, and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright - notice, this list of conditions, and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -* Neither the name of D. E. Shaw Research nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Copyright (c) 2013, Los Alamos National Security, LLC -All rights reserved. - -Copyright 2013. Los Alamos National Security, LLC. This software was produced -under U.S. Government contract DE-AC52-06NA25396 for Los Alamos National -Laboratory (LANL), which is operated by Los Alamos National Security, LLC for -the U.S. Department of Energy. The U.S. Government has rights to use, -reproduce, and distribute this software. NEITHER THE GOVERNMENT NOR LOS -ALAMOS NATIONAL SECURITY, LLC MAKES ANY WARRANTY, EXPRESS OR IMPLIED, OR -ASSUMES ANY LIABILITY FOR THE USE OF THIS SOFTWARE. If software is modified -to produce derivative works, such modified software should be clearly marked, -so as not to confuse it with the version available from LANL. -*/ -#ifndef __xlcfeatures_dot_hpp -#define __xlcfeatures_dot_hpp - -#if !defined(__x86_64__) && !defined(__i386__) && !defined(__powerpc__) -# error "This code has only been tested on x86 and PowerPC platforms." -#include -{ /* maybe an unbalanced brace will terminate the compilation */ - /* Feel free to try the Random123 library on other architectures by changing - the conditions that reach this error, but you should consider it a - porting exercise and expect to encounter bugs and deficiencies. - Please let the authors know of any successes (or failures). */ -#endif - -#ifdef __cplusplus -/* builtins are automatically available to xlc. To use them with xlc++, - one must include builtins.h. c.f - http://publib.boulder.ibm.com/infocenter/cellcomp/v101v121/index.jsp?topic=/com.ibm.xlcpp101.cell.doc/compiler_ref/compiler_builtins.html -*/ -#include -#endif - -#ifndef R123_STATIC_INLINE -#define R123_STATIC_INLINE static inline -#endif - -#ifndef R123_FORCE_INLINE -#define R123_FORCE_INLINE(decl) decl __attribute__((__always_inline__)) -#endif - -#ifndef R123_CUDA_DEVICE -#define R123_CUDA_DEVICE -#endif - -#ifndef R123_ASSERT -#include -#define R123_ASSERT(x) assert(x) -#endif - -#ifndef R123_BUILTIN_EXPECT -#define R123_BUILTIN_EXPECT(expr,likely) __builtin_expect(expr,likely) -#endif - -#ifndef R123_USE_AES_NI -#define R123_USE_AES_NI 0 -#endif - -#ifndef R123_USE_SSE4_2 -#define R123_USE_SSE4_2 0 -#endif - -#ifndef R123_USE_SSE4_1 -#define R123_USE_SSE4_1 0 -#endif - -#ifndef R123_USE_SSE -#define R123_USE_SSE 0 -#endif - -#ifndef R123_USE_AES_OPENSSL -/* There isn't really a good way to tell at compile time whether - openssl is available. Without a pre-compilation configure-like - tool, it's less error-prone to guess that it isn't available. Add - -DR123_USE_AES_OPENSSL=1 and any necessary LDFLAGS or LDLIBS to - play with openssl */ -#define R123_USE_AES_OPENSSL 0 -#endif - -#ifndef R123_USE_GNU_UINT128 -#define R123_USE_GNU_UINT128 0 -#endif - -#ifndef R123_USE_ASM_GNU -#define R123_USE_ASM_GNU 1 -#endif - -#ifndef R123_USE_CPUID_MSVC -#define R123_USE_CPUID_MSVC 0 -#endif - -#ifndef R123_USE_X86INTRIN_H -#define R123_USE_X86INTRIN_H 0 -#endif - -#ifndef R123_USE_IA32INTRIN_H -#define R123_USE_IA32INTRIN_H 0 -#endif - -#ifndef R123_USE_XMMINTRIN_H -#define R123_USE_XMMINTRIN_H 0 -#endif - -#ifndef R123_USE_EMMINTRIN_H -#define R123_USE_EMMINTRIN_H 0 -#endif - -#ifndef R123_USE_SMMINTRIN_H -#define R123_USE_SMMINTRIN_H 0 -#endif - -#ifndef R123_USE_WMMINTRIN_H -#define R123_USE_WMMINTRIN_H 0 -#endif - -#ifndef R123_USE_INTRIN_H -#ifdef __ABM__ -#define R123_USE_INTRIN_H 1 -#else -#define R123_USE_INTRIN_H 0 -#endif -#endif - -#ifndef R123_USE_MULHILO32_ASM -#define R123_USE_MULHILO32_ASM 0 -#endif - -#ifndef R123_USE_MULHILO64_MULHI_INTRIN -#if (defined(__powerpc64__)) -#define R123_USE_MULHILO64_MULHI_INTRIN 1 -#else -#define R123_USE_MULHILO64_MULHI_INTRIN 0 -#endif -#endif - -#ifndef R123_MULHILO64_MULHI_INTRIN -#define R123_MULHILO64_MULHI_INTRIN __mulhdu -#endif - -#ifndef R123_USE_MULHILO32_MULHI_INTRIN -#define R123_USE_MULHILO32_MULHI_INTRIN 0 -#endif - -#ifndef R123_MULHILO32_MULHI_INTRIN -#define R123_MULHILO32_MULHI_INTRIN __mulhwu -#endif - -#ifndef R123_USE_MULHILO64_ASM -#if defined(__powerpc64__) -#define R123_USE_MULHILO64_ASM (1 /*defined(__powerpc64__)*/ && !(R123_USE_MULHILO64_MULHI_INTRIN)) -#else -#define R123_USE_MULHILO64_ASM (0 /*defined(__powerpc64__)*/ && !(R123_USE_MULHILO64_MULHI_INTRIN)) -#endif -#endif - -#ifndef R123_USE_MULHILO64_MSVC_INTRIN -#define R123_USE_MULHILO64_MSVC_INTRIN 0 -#endif - -#ifndef R123_USE_MULHILO64_CUDA_INTRIN -#define R123_USE_MULHILO64_CUDA_INTRIN 0 -#endif - -#ifndef R123_USE_MULHILO64_OPENCL_INTRIN -#define R123_USE_MULHILO64_OPENCL_INTRIN 0 -#endif - -#ifndef __STDC_CONSTANT_MACROS -#define __STDC_CONSTANT_MACROS -#endif -#include -#ifndef UINT64_C -#error UINT64_C not defined. You must define __STDC_CONSTANT_MACROS before you #include -#endif - -/* If you add something, it must go in all the other XXfeatures.hpp - and in ../ut_features.cpp */ -#endif diff --git a/ext/random123/include/Random123/gsl_microrng.h b/ext/random123/include/Random123/gsl_microrng.h deleted file mode 100644 index 4f09412152..0000000000 --- a/ext/random123/include/Random123/gsl_microrng.h +++ /dev/null @@ -1,136 +0,0 @@ -/* -Copyright 2010-2011, D. E. Shaw Research. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright - notice, this list of conditions, and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright - notice, this list of conditions, and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -* Neither the name of D. E. Shaw Research nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -*/ -#ifndef __r123_gslmicrorng_dot_h__ -#define __r123_gslmicrorng_dot_h__ - - -#include -#include - -/** The macro: GSL_MICRORNG(NAME, CBRNGNAME) is the GSL - analog analog of the C++ r123::MicroURNG template. It declares a gsl_rng - type named gsl_rng_NAME which uses the underlying CBRNGNAME - and can be invoked a limited number of times between calls to NAME_reset. - - When the underlying CBRNG's \c ctr_t is an \ref arrayNxW "r123arrayNxW", - and the gsl_rng_NAME may called up to \c N*2^32 times - between calls to \c NAME_reset. - - \c NAME_reset takes a gsl_rng_NAME type, a counter and a key as arguments. - It restarts the micro-rng with a new base counter and key. - - Note that you must call NAME_reset before the first use - of a gsl_rng. NAME_reset is not called automatically by - gsl_rng_alloc(). - - @code - #include - #include // this file - GSL_MICRORNG(microcbrng, threefry4x64, 20) // creates gsl_rng_microcbrng - - int main(int argc, char** argv) { - gsl_rng *r = gsl_rng_alloc(gsl_rng_microcbrng); - threefry4x64_ctr_t c = {{}}; - threefry4x64_key_t k = {{}}; - - for (...) { - c.v[0] = ??; // some application variable - microcbrng_reset(r, c, k); - for (...) { - // gaussian calls r several times. It is safe for - // r to be used upto 2^20 times in this loop - something[i] = gsl_ran_gaussian(r, 1.5); - } - } - } - @endcode - -*/ - -#define GSL_MICRORNG(NAME, CBRNGNAME) \ -const gsl_rng_type *gsl_rng_##NAME; \ - \ -typedef struct{ \ - CBRNGNAME##_ctr_t ctr; \ - CBRNGNAME##_ctr_t r; \ - CBRNGNAME##_key_t key; \ - R123_ULONG_LONG n; \ - int elem; \ -} NAME##_state; \ - \ -static unsigned long int NAME##_get(void *vstate){ \ - NAME##_state *st = (NAME##_state *)vstate; \ - const int N=sizeof(st->ctr.v)/sizeof(st->ctr.v[0]); \ - if( st->elem == 0 ){ \ - CBRNGNAME##_ctr_t c = st->ctr; \ - c.v[N-1] |= st->n<<(R123_W(CBRNGNAME##_ctr_t)-32); \ - st->n++; \ - st->r = CBRNGNAME(c, st->key); \ - st->elem = N; \ - } \ - return 0xffffffff & st->r.v[--st->elem]; \ -} \ - \ -static double \ -NAME##_get_double (void * vstate) \ -{ \ - return NAME##_get (vstate)/4294967296.; \ -} \ - \ -static void NAME##_set(void *vstate, unsigned long int s){ \ - NAME##_state *st = (NAME##_state *)vstate; \ - (void)s; /* ignored */ \ - st->elem = 0; \ - st->n = ~0; /* will abort if _reset is not called */ \ -} \ - \ -static const gsl_rng_type NAME##_type = { \ - #NAME, \ - 0xffffffffUL, \ - 0, \ - sizeof(NAME##_state), \ - &NAME##_set, \ - &NAME##_get, \ - &NAME##_get_double \ -}; \ - \ -R123_STATIC_INLINE void NAME##_reset(const gsl_rng* gr, CBRNGNAME##_ctr_t c, CBRNGNAME##_key_t k) { \ - NAME##_state* state = (NAME##_state *)gr->state; \ - state->ctr = c; \ - state->key = k; \ - state->n = 0; \ - state->elem = 0; \ -} \ - \ -const gsl_rng_type *gsl_rng_##NAME = &NAME##_type - -#endif diff --git a/ext/random123/include/Random123/philox.h b/ext/random123/include/Random123/philox.h deleted file mode 100644 index 7bf4d19577..0000000000 --- a/ext/random123/include/Random123/philox.h +++ /dev/null @@ -1,493 +0,0 @@ -/* -Copyright 2010-2011, D. E. Shaw Research. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright - notice, this list of conditions, and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright - notice, this list of conditions, and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -* Neither the name of D. E. Shaw Research nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -*/ -#ifndef _philox_dot_h_ -#define _philox_dot_h_ - -/** \cond HIDDEN_FROM_DOXYGEN */ - -#include "features/compilerfeatures.h" -#include "array.h" - - -/* -// Macros _Foo_tpl are code generation 'templates' They define -// inline functions with names obtained by mangling Foo and the -// macro arguments. E.g., -// _mulhilo_tpl(32, uint32_t, uint64_t) -// expands to a definition of: -// mulhilo32(uint32_t, uint32_t, uint32_t *, uint32_t *) -// We then 'instantiate the template' to define -// several different functions, e.g., -// mulhilo32 -// mulhilo64 -// These functions will be visible to user code, and may -// also be used later in subsequent templates and definitions. - -// A template for mulhilo using a temporary of twice the word-width. -// Gcc figures out that this can be reduced to a single 'mul' instruction, -// despite the apparent use of double-wide variables, shifts, etc. It's -// obviously not guaranteed that all compilers will be that smart, so -// other implementations might be preferable, e.g., using an intrinsic -// or an asm block. On the other hand, for 32-bit multiplies, -// this *is* perfectly standard C99 - any C99 compiler should -// understand it and produce correct code. For 64-bit multiplies, -// it's only usable if the compiler recognizes that it can do -// arithmetic on a 128-bit type. That happens to be true for gcc on -// x86-64, and powerpc64 but not much else. -*/ -#define _mulhilo_dword_tpl(W, Word, Dword) \ -R123_CUDA_DEVICE R123_STATIC_INLINE Word mulhilo##W(Word a, Word b, Word* hip){ \ - Dword product = ((Dword)a)*((Dword)b); \ - *hip = product>>W; \ - return (Word)product; \ -} - -/* -// A template for mulhilo using gnu-style asm syntax. -// INSN can be "mulw", "mull" or "mulq". -// FIXME - porting to other architectures, we'll need still-more conditional -// branching here. Note that intrinsics are usually preferable. -*/ -#ifdef __powerpc__ -#define _mulhilo_asm_tpl(W, Word, INSN) \ -R123_STATIC_INLINE Word mulhilo##W(Word ax, Word b, Word *hip){ \ - Word dx = 0; \ - __asm__("\n\t" \ - INSN " %0,%1,%2\n\t" \ - : "=r"(dx) \ - : "r"(b), "r"(ax) \ - ); \ - *hip = dx; \ - return ax*b; \ -} -#else -#define _mulhilo_asm_tpl(W, Word, INSN) \ -R123_STATIC_INLINE Word mulhilo##W(Word ax, Word b, Word *hip){ \ - Word dx; \ - __asm__("\n\t" \ - INSN " %2\n\t" \ - : "=a"(ax), "=d"(dx) \ - : "r"(b), "0"(ax) \ - ); \ - *hip = dx; \ - return ax; \ -} -#endif /* __powerpc__ */ - -/* -// A template for mulhilo using MSVC-style intrinsics -// For example,_umul128 is an msvc intrinsic, c.f. -// http://msdn.microsoft.com/en-us/library/3dayytw9.aspx -*/ -#define _mulhilo_msvc_intrin_tpl(W, Word, INTRIN) \ -R123_STATIC_INLINE Word mulhilo##W(Word a, Word b, Word* hip){ \ - return INTRIN(a, b, hip); \ -} - -/* N.B. This really should be called _mulhilo_mulhi_intrin. It just - happens that CUDA was the first time we used the idiom. */ -#define _mulhilo_cuda_intrin_tpl(W, Word, INTRIN) \ -R123_CUDA_DEVICE R123_STATIC_INLINE Word mulhilo##W(Word a, Word b, R123_METAL_THREAD_ADDRESS_SPACE Word* hip){ \ - *hip = INTRIN(a, b); \ - return a*b; \ -} - -/* -// A template for mulhilo using only word-size operations and -// C99 operators (no adc, no mulhi). It -// requires four multiplies and a dozen or so shifts, adds -// and tests. It's *SLOW*. It can be used to -// implement philoxNx32 on platforms that completely lack -// 64-bit types, e.g., Metal. -// On 32-bit platforms, it could be used to -// implement philoxNx64, but on such platforms both the philoxNx32 -// and the threefryNx64 cbrngs are going to have much better -// performance. It is enabled below by R123_USE_MULHILO64_C99, -// but that is currently (Feb 2019) only set by -// features/metalfeatures.h headers. It can, of course, be -// set with a compile-time -D option. -*/ -#define _mulhilo_c99_tpl(W, Word) \ -R123_STATIC_INLINE Word mulhilo##W(Word a, Word b, R123_METAL_THREAD_ADDRESS_SPACE Word *hip){ \ - const unsigned WHALF = W/2; \ - const Word LOMASK = ((((Word)1)<>WHALF; \ - Word alo = a& LOMASK; \ - Word bhi = b>>WHALF; \ - Word blo = b& LOMASK; \ - \ - Word ahbl = ahi*blo; \ - Word albh = alo*bhi; \ - \ - Word ahbl_albh = ((ahbl&LOMASK) + (albh&LOMASK)); \ - Word hi = ahi*bhi + (ahbl>>WHALF) + (albh>>WHALF); \ - hi += ahbl_albh >> WHALF; /* carry from the sum of lo(ahbl) + lo(albh) ) */ \ - /* carry from the sum with alo*blo */ \ - hi += ((lo >> WHALF) < (ahbl_albh&LOMASK)); \ - *hip = hi; \ - return lo; \ -} - -/* -// A template for mulhilo on a platform that can't do it -// We could put a C version here, but is it better to run *VERY* -// slowly or to just stop and force the user to find another CBRNG? -*/ -#define _mulhilo_fail_tpl(W, Word) \ -R123_STATIC_INLINE Word mulhilo##W(Word a, Word b, Word *hip){ \ - R123_STATIC_ASSERT(0, "mulhilo" #W " is not implemented on this machine\n"); \ -} - -/* -// N.B. There's an MSVC intrinsic called _emul, -// which *might* compile into better code than -// _mulhilo_dword_tpl -*/ -#if R123_USE_MULHILO32_ASM -#ifdef __powerpc__ -_mulhilo_asm_tpl(32, uint32_t, "mulhwu") -#else -_mulhilo_asm_tpl(32, uint32_t, "mull") -#endif /* __powerpc__ */ -#else -#if R123_USE_64BIT -_mulhilo_dword_tpl(32, uint32_t, uint64_t) -#elif R123_USE_MULHILO32_MULHI_INTRIN -_mulhilo_cuda_intrin_tpl(32, uint32_t, R123_MULHILO32_MULHI_INTRIN) -#else -_mulhilo_c99_tpl(32, uint32_t) -#endif -#endif - -#if R123_USE_PHILOX_64BIT -#if R123_USE_MULHILO64_ASM -#ifdef __powerpc64__ -_mulhilo_asm_tpl(64, uint64_t, "mulhdu") -#else -_mulhilo_asm_tpl(64, uint64_t, "mulq") -#endif /* __powerpc64__ */ -#elif R123_USE_MULHILO64_MSVC_INTRIN -_mulhilo_msvc_intrin_tpl(64, uint64_t, _umul128) -#elif R123_USE_MULHILO64_CUDA_INTRIN -_mulhilo_cuda_intrin_tpl(64, uint64_t, __umul64hi) -#elif R123_USE_MULHILO64_OPENCL_INTRIN -_mulhilo_cuda_intrin_tpl(64, uint64_t, mul_hi) -#elif R123_USE_MULHILO64_MULHI_INTRIN -_mulhilo_cuda_intrin_tpl(64, uint64_t, R123_MULHILO64_MULHI_INTRIN) -#elif R123_USE_GNU_UINT128 -_mulhilo_dword_tpl(64, uint64_t, __uint128_t) -#elif R123_USE_MULHILO64_C99 -_mulhilo_c99_tpl(64, uint64_t) -#else -_mulhilo_fail_tpl(64, uint64_t) -#endif -#endif - -/* -// The multipliers and Weyl constants are "hard coded". -// To change them, you can #define them with different -// values before #include-ing this file. -// This isn't terribly elegant, but it works for C as -// well as C++. A nice C++-only solution would be to -// use template parameters in the style of -*/ -#ifndef PHILOX_M2x64_0 -#define PHILOX_M2x64_0 R123_64BIT(0xD2B74407B1CE6E93) -#endif - -#ifndef PHILOX_M4x64_0 -#define PHILOX_M4x64_0 R123_64BIT(0xD2E7470EE14C6C93) -#endif - -#ifndef PHILOX_M4x64_1 -#define PHILOX_M4x64_1 R123_64BIT(0xCA5A826395121157) -#endif - -#ifndef PHILOX_M2x32_0 -#define PHILOX_M2x32_0 ((uint32_t)0xd256d193) -#endif - -#ifndef PHILOX_M4x32_0 -#define PHILOX_M4x32_0 ((uint32_t)0xD2511F53) -#endif -#ifndef PHILOX_M4x32_1 -#define PHILOX_M4x32_1 ((uint32_t)0xCD9E8D57) -#endif - -#ifndef PHILOX_W64_0 -#define PHILOX_W64_0 R123_64BIT(0x9E3779B97F4A7C15) /* golden ratio */ -#endif -#ifndef PHILOX_W64_1 -#define PHILOX_W64_1 R123_64BIT(0xBB67AE8584CAA73B) /* sqrt(3)-1 */ -#endif - -#ifndef PHILOX_W32_0 -#define PHILOX_W32_0 ((uint32_t)0x9E3779B9) -#endif -#ifndef PHILOX_W32_1 -#define PHILOX_W32_1 ((uint32_t)0xBB67AE85) -#endif - -/** \endcond */ -#ifndef PHILOX2x32_DEFAULT_ROUNDS -#define PHILOX2x32_DEFAULT_ROUNDS 10 -#endif - -#ifndef PHILOX2x64_DEFAULT_ROUNDS -#define PHILOX2x64_DEFAULT_ROUNDS 10 -#endif - -#ifndef PHILOX4x32_DEFAULT_ROUNDS -#define PHILOX4x32_DEFAULT_ROUNDS 10 -#endif - -#ifndef PHILOX4x64_DEFAULT_ROUNDS -#define PHILOX4x64_DEFAULT_ROUNDS 10 -#endif -/** \cond HIDDEN_FROM_DOXYGEN */ - -/* The ignored fourth argument allows us to instantiate the - same macro regardless of N. */ -#define _philox2xWround_tpl(W, T) \ -R123_CUDA_DEVICE R123_STATIC_INLINE R123_FORCE_INLINE(struct r123array2x##W _philox2x##W##round(struct r123array2x##W ctr, struct r123array1x##W key)); \ -R123_CUDA_DEVICE R123_STATIC_INLINE struct r123array2x##W _philox2x##W##round(struct r123array2x##W ctr, struct r123array1x##W key){ \ - T hi; \ - T lo = mulhilo##W(PHILOX_M2x##W##_0, ctr.v[0], &hi); \ - struct r123array2x##W out = {{hi^key.v[0]^ctr.v[1], lo}}; \ - return out; \ -} -#define _philox2xWbumpkey_tpl(W) \ -R123_CUDA_DEVICE R123_STATIC_INLINE struct r123array1x##W _philox2x##W##bumpkey( struct r123array1x##W key) { \ - key.v[0] += PHILOX_W##W##_0; \ - return key; \ -} - -#define _philox4xWround_tpl(W, T) \ -R123_CUDA_DEVICE R123_STATIC_INLINE R123_FORCE_INLINE(struct r123array4x##W _philox4x##W##round(struct r123array4x##W ctr, struct r123array2x##W key)); \ -R123_CUDA_DEVICE R123_STATIC_INLINE struct r123array4x##W _philox4x##W##round(struct r123array4x##W ctr, struct r123array2x##W key){ \ - T hi0; \ - T hi1; \ - T lo0 = mulhilo##W(PHILOX_M4x##W##_0, ctr.v[0], &hi0); \ - T lo1 = mulhilo##W(PHILOX_M4x##W##_1, ctr.v[2], &hi1); \ - struct r123array4x##W out = {{hi1^ctr.v[1]^key.v[0], lo1, \ - hi0^ctr.v[3]^key.v[1], lo0}}; \ - return out; \ -} - -#define _philox4xWbumpkey_tpl(W) \ -R123_CUDA_DEVICE R123_STATIC_INLINE struct r123array2x##W _philox4x##W##bumpkey( struct r123array2x##W key) { \ - key.v[0] += PHILOX_W##W##_0; \ - key.v[1] += PHILOX_W##W##_1; \ - return key; \ -} - -/** \endcond */ -#define _philoxNxW_tpl(N, Nhalf, W, T) \ -/** @ingroup PhiloxNxW */ \ -enum r123_enum_philox##N##x##W { philox##N##x##W##_rounds = PHILOX##N##x##W##_DEFAULT_ROUNDS }; \ -typedef struct r123array##N##x##W philox##N##x##W##_ctr_t; \ -typedef struct r123array##Nhalf##x##W philox##N##x##W##_key_t; \ -typedef struct r123array##Nhalf##x##W philox##N##x##W##_ukey_t; \ -R123_CUDA_DEVICE R123_STATIC_INLINE philox##N##x##W##_key_t philox##N##x##W##keyinit(philox##N##x##W##_ukey_t uk) { return uk; } \ -R123_CUDA_DEVICE R123_STATIC_INLINE R123_FORCE_INLINE(philox##N##x##W##_ctr_t philox##N##x##W##_R(unsigned int R, philox##N##x##W##_ctr_t ctr, philox##N##x##W##_key_t key)); \ -R123_CUDA_DEVICE R123_STATIC_INLINE philox##N##x##W##_ctr_t philox##N##x##W##_R(unsigned int R, philox##N##x##W##_ctr_t ctr, philox##N##x##W##_key_t key) { \ - R123_ASSERT(R<=16); \ - if(R>0){ ctr = _philox##N##x##W##round(ctr, key); } \ - if(R>1){ key = _philox##N##x##W##bumpkey(key); ctr = _philox##N##x##W##round(ctr, key); } \ - if(R>2){ key = _philox##N##x##W##bumpkey(key); ctr = _philox##N##x##W##round(ctr, key); } \ - if(R>3){ key = _philox##N##x##W##bumpkey(key); ctr = _philox##N##x##W##round(ctr, key); } \ - if(R>4){ key = _philox##N##x##W##bumpkey(key); ctr = _philox##N##x##W##round(ctr, key); } \ - if(R>5){ key = _philox##N##x##W##bumpkey(key); ctr = _philox##N##x##W##round(ctr, key); } \ - if(R>6){ key = _philox##N##x##W##bumpkey(key); ctr = _philox##N##x##W##round(ctr, key); } \ - if(R>7){ key = _philox##N##x##W##bumpkey(key); ctr = _philox##N##x##W##round(ctr, key); } \ - if(R>8){ key = _philox##N##x##W##bumpkey(key); ctr = _philox##N##x##W##round(ctr, key); } \ - if(R>9){ key = _philox##N##x##W##bumpkey(key); ctr = _philox##N##x##W##round(ctr, key); } \ - if(R>10){ key = _philox##N##x##W##bumpkey(key); ctr = _philox##N##x##W##round(ctr, key); } \ - if(R>11){ key = _philox##N##x##W##bumpkey(key); ctr = _philox##N##x##W##round(ctr, key); } \ - if(R>12){ key = _philox##N##x##W##bumpkey(key); ctr = _philox##N##x##W##round(ctr, key); } \ - if(R>13){ key = _philox##N##x##W##bumpkey(key); ctr = _philox##N##x##W##round(ctr, key); } \ - if(R>14){ key = _philox##N##x##W##bumpkey(key); ctr = _philox##N##x##W##round(ctr, key); } \ - if(R>15){ key = _philox##N##x##W##bumpkey(key); ctr = _philox##N##x##W##round(ctr, key); } \ - return ctr; \ -} - -_philox2xWbumpkey_tpl(32) -_philox4xWbumpkey_tpl(32) -_philox2xWround_tpl(32, uint32_t) /* philox2x32round */ -_philox4xWround_tpl(32, uint32_t) /* philo4x32round */ - -_philoxNxW_tpl(2, 1, 32, uint32_t) /* philox2x32bijection */ -_philoxNxW_tpl(4, 2, 32, uint32_t) /* philox4x32bijection */ -#if R123_USE_PHILOX_64BIT -/** \cond HIDDEN_FROM_DOXYGEN */ -_philox2xWbumpkey_tpl(64) -_philox4xWbumpkey_tpl(64) -_philox2xWround_tpl(64, uint64_t) /* philo2x64round */ -_philox4xWround_tpl(64, uint64_t) /* philo4x64round */ -/** \endcond */ -_philoxNxW_tpl(2, 1, 64, uint64_t) /* philox2x64bijection */ -_philoxNxW_tpl(4, 2, 64, uint64_t) /* philox4x64bijection */ -#endif /* R123_USE_PHILOX_64BIT */ - -#define philox2x32(c,k) philox2x32_R(philox2x32_rounds, c, k) -#define philox4x32(c,k) philox4x32_R(philox4x32_rounds, c, k) -#if R123_USE_PHILOX_64BIT -#define philox2x64(c,k) philox2x64_R(philox2x64_rounds, c, k) -#define philox4x64(c,k) philox4x64_R(philox4x64_rounds, c, k) -#endif /* R123_USE_PHILOX_64BIT */ - -#if defined(__cplusplus) - -#define _PhiloxNxW_base_tpl(CType, KType, N, W) \ -namespace r123{ \ -template \ -struct Philox##N##x##W##_R{ \ - typedef CType ctr_type; \ - typedef KType key_type; \ - typedef KType ukey_type; \ - static const R123_METAL_CONSTANT_ADDRESS_SPACE unsigned int rounds=ROUNDS; \ - inline R123_CUDA_DEVICE R123_FORCE_INLINE(ctr_type operator()(ctr_type ctr, key_type key) const){ \ - R123_STATIC_ASSERT(ROUNDS<=16, "philox is only unrolled up to 16 rounds\n"); \ - return philox##N##x##W##_R(ROUNDS, ctr, key); \ - } \ -}; \ -typedef Philox##N##x##W##_R Philox##N##x##W; \ - } // namespace r123 - -_PhiloxNxW_base_tpl(r123array2x32, r123array1x32, 2, 32) // Philox2x32_R -_PhiloxNxW_base_tpl(r123array4x32, r123array2x32, 4, 32) // Philox4x32_R -#if R123_USE_PHILOX_64BIT -_PhiloxNxW_base_tpl(r123array2x64, r123array1x64, 2, 64) // Philox2x64_R -_PhiloxNxW_base_tpl(r123array4x64, r123array2x64, 4, 64) // Philox4x64_R -#endif - -/* The _tpl macros don't quite work to do string-pasting inside comments. - so we just write out the boilerplate documentation four times... */ - -/** -@defgroup PhiloxNxW Philox Classes and Typedefs - -The PhiloxNxW classes export the member functions, typedefs and -operator overloads required by a @ref CBRNG "CBRNG" class. - -As described in -Parallel Random Numbers: As Easy as 1, 2, 3 . -The Philox family of counter-based RNGs use integer multiplication, xor and permutation of W-bit words -to scramble its N-word input key. Philox is a mnemonic for Product HI LO Xor). - - -@class r123::Philox2x32_R -@ingroup PhiloxNxW - -exports the member functions, typedefs and operator overloads required by a @ref CBRNG "CBRNG" class. - -The template argument, ROUNDS, is the number of times the Philox round -function will be applied. - -As of November 2011, the authors know of no statistical flaws with -ROUNDS=6 or more for Philox2x32. - -@typedef r123::Philox2x32 -@ingroup PhiloxNxW - Philox2x32 is equivalent to Philox2x32_R<10>. With 10 rounds, - Philox2x32 has a considerable safety margin over the minimum number - of rounds with no known statistical flaws, but still has excellent - performance. - - - -@class r123::Philox2x64_R -@ingroup PhiloxNxW - -exports the member functions, typedefs and operator overloads required by a @ref CBRNG "CBRNG" class. - -The template argument, ROUNDS, is the number of times the Philox round -function will be applied. - -As of September 2011, the authors know of no statistical flaws with -ROUNDS=6 or more for Philox2x64. - -@typedef r123::Philox2x64 -@ingroup PhiloxNxW - Philox2x64 is equivalent to Philox2x64_R<10>. With 10 rounds, - Philox2x64 has a considerable safety margin over the minimum number - of rounds with no known statistical flaws, but still has excellent - performance. - - - -@class r123::Philox4x32_R -@ingroup PhiloxNxW - -exports the member functions, typedefs and operator overloads required by a @ref CBRNG "CBRNG" class. - -The template argument, ROUNDS, is the number of times the Philox round -function will be applied. - -In November 2011, the authors recorded some suspicious p-values (approximately 1.e-7) from -some very long (longer than the default BigCrush length) SimpPoker tests. Despite -the fact that even longer tests reverted to "passing" p-values, a cloud remains over -Philox4x32 with 7 rounds. The authors know of no statistical flaws with -ROUNDS=8 or more for Philox4x32. - -@typedef r123::Philox4x32 -@ingroup PhiloxNxW - Philox4x32 is equivalent to Philox4x32_R<10>. With 10 rounds, - Philox4x32 has a considerable safety margin over the minimum number - of rounds with no known statistical flaws, but still has excellent - performance. - - - -@class r123::Philox4x64_R -@ingroup PhiloxNxW - -exports the member functions, typedefs and operator overloads required by a @ref CBRNG "CBRNG" class. - -The template argument, ROUNDS, is the number of times the Philox round -function will be applied. - -As of September 2011, the authors know of no statistical flaws with -ROUNDS=7 or more for Philox4x64. - -@typedef r123::Philox4x64 -@ingroup PhiloxNxW - Philox4x64 is equivalent to Philox4x64_R<10>. With 10 rounds, - Philox4x64 has a considerable safety margin over the minimum number - of rounds with no known statistical flaws, but still has excellent - performance. -*/ - -#endif /* __cplusplus */ - -#endif /* _philox_dot_h_ */ diff --git a/ext/random123/include/Random123/threefry.h b/ext/random123/include/Random123/threefry.h deleted file mode 100644 index 390ceffe68..0000000000 --- a/ext/random123/include/Random123/threefry.h +++ /dev/null @@ -1,870 +0,0 @@ -/* -Copyright 2010-2011, D. E. Shaw Research. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright - notice, this list of conditions, and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright - notice, this list of conditions, and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -* Neither the name of D. E. Shaw Research nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -*/ -#ifndef _threefry_dot_h_ -#define _threefry_dot_h_ -#include "features/compilerfeatures.h" -#include "array.h" - -/** \cond HIDDEN_FROM_DOXYGEN */ -/* Significant parts of this file were copied from - from: - Skein_FinalRnd/ReferenceImplementation/skein.h - Skein_FinalRnd/ReferenceImplementation/skein_block.c - - in http://csrc.nist.gov/groups/ST/hash/sha-3/Round3/documents/Skein_FinalRnd.zip - - This file has been modified so that it may no longer perform its originally - intended function. If you're looking for a Skein or Threefish source code, - please consult the original file. - - The original file had the following header: -************************************************************************** -** -** Interface declarations and internal definitions for Skein hashing. -** -** Source code author: Doug Whiting, 2008. -** -** This algorithm and source code is released to the public domain. -** -*************************************************************************** - -*/ - -/* See comment at the top of philox.h for the macro pre-process - strategy. */ - -/* Rotation constants: */ -enum r123_enum_threefry64x4 { - /* These are the R_256 constants from the Threefish reference sources - with names changed to R_64x4... */ - R_64x4_0_0=14, R_64x4_0_1=16, - R_64x4_1_0=52, R_64x4_1_1=57, - R_64x4_2_0=23, R_64x4_2_1=40, - R_64x4_3_0= 5, R_64x4_3_1=37, - R_64x4_4_0=25, R_64x4_4_1=33, - R_64x4_5_0=46, R_64x4_5_1=12, - R_64x4_6_0=58, R_64x4_6_1=22, - R_64x4_7_0=32, R_64x4_7_1=32 -}; - -enum r123_enum_threefry64x2 { - /* - // Output from skein_rot_search: (srs64_B64-X1000) - // Random seed = 1. BlockSize = 128 bits. sampleCnt = 1024. rounds = 8, minHW_or=57 - // Start: Tue Mar 1 10:07:48 2011 - // rMin = 0.136. #0325[*15] [CRC=455A682F. hw_OR=64. cnt=16384. blkSize= 128].format - */ - R_64x2_0_0=16, - R_64x2_1_0=42, - R_64x2_2_0=12, - R_64x2_3_0=31, - R_64x2_4_0=16, - R_64x2_5_0=32, - R_64x2_6_0=24, - R_64x2_7_0=21 - /* 4 rounds: minHW = 4 [ 4 4 4 4 ] - // 5 rounds: minHW = 8 [ 8 8 8 8 ] - // 6 rounds: minHW = 16 [ 16 16 16 16 ] - // 7 rounds: minHW = 32 [ 32 32 32 32 ] - // 8 rounds: minHW = 64 [ 64 64 64 64 ] - // 9 rounds: minHW = 64 [ 64 64 64 64 ] - //10 rounds: minHW = 64 [ 64 64 64 64 ] - //11 rounds: minHW = 64 [ 64 64 64 64 ] */ -}; - -enum r123_enum_threefry32x4 { - /* Output from skein_rot_search: (srs-B128-X5000.out) - // Random seed = 1. BlockSize = 64 bits. sampleCnt = 1024. rounds = 8, minHW_or=28 - // Start: Mon Aug 24 22:41:36 2009 - // ... - // rMin = 0.472. #0A4B[*33] [CRC=DD1ECE0F. hw_OR=31. cnt=16384. blkSize= 128].format */ - R_32x4_0_0=10, R_32x4_0_1=26, - R_32x4_1_0=11, R_32x4_1_1=21, - R_32x4_2_0=13, R_32x4_2_1=27, - R_32x4_3_0=23, R_32x4_3_1= 5, - R_32x4_4_0= 6, R_32x4_4_1=20, - R_32x4_5_0=17, R_32x4_5_1=11, - R_32x4_6_0=25, R_32x4_6_1=10, - R_32x4_7_0=18, R_32x4_7_1=20 - - /* 4 rounds: minHW = 3 [ 3 3 3 3 ] - // 5 rounds: minHW = 7 [ 7 7 7 7 ] - // 6 rounds: minHW = 12 [ 13 12 13 12 ] - // 7 rounds: minHW = 22 [ 22 23 22 23 ] - // 8 rounds: minHW = 31 [ 31 31 31 31 ] - // 9 rounds: minHW = 32 [ 32 32 32 32 ] - //10 rounds: minHW = 32 [ 32 32 32 32 ] - //11 rounds: minHW = 32 [ 32 32 32 32 ] */ - -}; - -enum r123_enum_threefry32x2 { - /* Output from skein_rot_search (srs32x2-X5000.out) - // Random seed = 1. BlockSize = 64 bits. sampleCnt = 1024. rounds = 8, minHW_or=28 - // Start: Tue Jul 12 11:11:33 2011 - // rMin = 0.334. #0206[*07] [CRC=1D9765C0. hw_OR=32. cnt=16384. blkSize= 64].format */ - R_32x2_0_0=13, - R_32x2_1_0=15, - R_32x2_2_0=26, - R_32x2_3_0= 6, - R_32x2_4_0=17, - R_32x2_5_0=29, - R_32x2_6_0=16, - R_32x2_7_0=24 - - /* 4 rounds: minHW = 4 [ 4 4 4 4 ] - // 5 rounds: minHW = 6 [ 6 8 6 8 ] - // 6 rounds: minHW = 9 [ 9 12 9 12 ] - // 7 rounds: minHW = 16 [ 16 24 16 24 ] - // 8 rounds: minHW = 32 [ 32 32 32 32 ] - // 9 rounds: minHW = 32 [ 32 32 32 32 ] - //10 rounds: minHW = 32 [ 32 32 32 32 ] - //11 rounds: minHW = 32 [ 32 32 32 32 ] */ - }; - -enum r123_enum_threefry_wcnt { - WCNT2=2, - WCNT4=4 -}; - -#if R123_USE_64BIT -R123_CUDA_DEVICE R123_STATIC_INLINE R123_FORCE_INLINE(uint64_t RotL_64(uint64_t x, unsigned int N)); -R123_CUDA_DEVICE R123_STATIC_INLINE uint64_t RotL_64(uint64_t x, unsigned int N) -{ - return (x << (N & 63)) | (x >> ((64-N) & 63)); -} -#endif - -R123_CUDA_DEVICE R123_STATIC_INLINE R123_FORCE_INLINE(uint32_t RotL_32(uint32_t x, unsigned int N)); -R123_CUDA_DEVICE R123_STATIC_INLINE uint32_t RotL_32(uint32_t x, unsigned int N) -{ - return (x << (N & 31)) | (x >> ((32-N) & 31)); -} - -#define SKEIN_MK_64(hi32,lo32) ((lo32) + (((uint64_t) (hi32)) << 32)) -#define SKEIN_KS_PARITY64 SKEIN_MK_64(0x1BD11BDA,0xA9FC1A22) -#define SKEIN_KS_PARITY32 0x1BD11BDA - -/** \endcond */ - -#ifndef THREEFRY2x32_DEFAULT_ROUNDS -#define THREEFRY2x32_DEFAULT_ROUNDS 20 -#endif - -#ifndef THREEFRY2x64_DEFAULT_ROUNDS -#define THREEFRY2x64_DEFAULT_ROUNDS 20 -#endif - -#ifndef THREEFRY4x32_DEFAULT_ROUNDS -#define THREEFRY4x32_DEFAULT_ROUNDS 20 -#endif - -#ifndef THREEFRY4x64_DEFAULT_ROUNDS -#define THREEFRY4x64_DEFAULT_ROUNDS 20 -#endif - -#define _threefry2x_tpl(W) \ -typedef struct r123array2x##W threefry2x##W##_ctr_t; \ -typedef struct r123array2x##W threefry2x##W##_key_t; \ -typedef struct r123array2x##W threefry2x##W##_ukey_t; \ -R123_CUDA_DEVICE R123_STATIC_INLINE threefry2x##W##_key_t threefry2x##W##keyinit(threefry2x##W##_ukey_t uk) { return uk; } \ -R123_CUDA_DEVICE R123_STATIC_INLINE R123_FORCE_INLINE(threefry2x##W##_ctr_t threefry2x##W##_R(unsigned int Nrounds, threefry2x##W##_ctr_t in, threefry2x##W##_key_t k)); \ -R123_CUDA_DEVICE R123_STATIC_INLINE \ -threefry2x##W##_ctr_t threefry2x##W##_R(unsigned int Nrounds, threefry2x##W##_ctr_t in, threefry2x##W##_key_t k){ \ - threefry2x##W##_ctr_t X; \ - uint##W##_t ks[2+1]; \ - int i; /* avoid size_t to avoid need for stddef.h */ \ - R123_ASSERT(Nrounds<=32); \ - ks[2] = SKEIN_KS_PARITY##W; \ - for (i=0;i < 2; i++) \ - { \ - ks[i] = k.v[i]; \ - X.v[i] = in.v[i]; \ - ks[2] ^= k.v[i]; \ - } \ - \ - /* Insert initial key before round 0 */ \ - X.v[0] += ks[0]; X.v[1] += ks[1]; \ - \ - if(Nrounds>0){ X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x2_0_0); X.v[1] ^= X.v[0]; } \ - if(Nrounds>1){ X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x2_1_0); X.v[1] ^= X.v[0]; } \ - if(Nrounds>2){ X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x2_2_0); X.v[1] ^= X.v[0]; } \ - if(Nrounds>3){ X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x2_3_0); X.v[1] ^= X.v[0]; } \ - if(Nrounds>3){ \ - /* InjectKey(r=1) */ \ - X.v[0] += ks[1]; X.v[1] += ks[2]; \ - X.v[1] += 1; /* X.v[2-1] += r */ \ - } \ - if(Nrounds>4){ X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x2_4_0); X.v[1] ^= X.v[0]; } \ - if(Nrounds>5){ X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x2_5_0); X.v[1] ^= X.v[0]; } \ - if(Nrounds>6){ X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x2_6_0); X.v[1] ^= X.v[0]; } \ - if(Nrounds>7){ X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x2_7_0); X.v[1] ^= X.v[0]; } \ - if(Nrounds>7){ \ - /* InjectKey(r=2) */ \ - X.v[0] += ks[2]; X.v[1] += ks[0]; \ - X.v[1] += 2; \ - } \ - if(Nrounds>8){ X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x2_0_0); X.v[1] ^= X.v[0]; } \ - if(Nrounds>9){ X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x2_1_0); X.v[1] ^= X.v[0]; } \ - if(Nrounds>10){ X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x2_2_0); X.v[1] ^= X.v[0]; } \ - if(Nrounds>11){ X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x2_3_0); X.v[1] ^= X.v[0]; } \ - if(Nrounds>11){ \ - /* InjectKey(r=3) */ \ - X.v[0] += ks[0]; X.v[1] += ks[1]; \ - X.v[1] += 3; \ - } \ - if(Nrounds>12){ X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x2_4_0); X.v[1] ^= X.v[0]; } \ - if(Nrounds>13){ X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x2_5_0); X.v[1] ^= X.v[0]; } \ - if(Nrounds>14){ X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x2_6_0); X.v[1] ^= X.v[0]; } \ - if(Nrounds>15){ X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x2_7_0); X.v[1] ^= X.v[0]; } \ - if(Nrounds>15){ \ - /* InjectKey(r=4) */ \ - X.v[0] += ks[1]; X.v[1] += ks[2]; \ - X.v[1] += 4; \ - } \ - if(Nrounds>16){ X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x2_0_0); X.v[1] ^= X.v[0]; } \ - if(Nrounds>17){ X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x2_1_0); X.v[1] ^= X.v[0]; } \ - if(Nrounds>18){ X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x2_2_0); X.v[1] ^= X.v[0]; } \ - if(Nrounds>19){ X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x2_3_0); X.v[1] ^= X.v[0]; } \ - if(Nrounds>19){ \ - /* InjectKey(r=5) */ \ - X.v[0] += ks[2]; X.v[1] += ks[0]; \ - X.v[1] += 5; \ - } \ - if(Nrounds>20){ X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x2_4_0); X.v[1] ^= X.v[0]; } \ - if(Nrounds>21){ X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x2_5_0); X.v[1] ^= X.v[0]; } \ - if(Nrounds>22){ X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x2_6_0); X.v[1] ^= X.v[0]; } \ - if(Nrounds>23){ X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x2_7_0); X.v[1] ^= X.v[0]; } \ - if(Nrounds>23){ \ - /* InjectKey(r=6) */ \ - X.v[0] += ks[0]; X.v[1] += ks[1]; \ - X.v[1] += 6; \ - } \ - if(Nrounds>24){ X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x2_0_0); X.v[1] ^= X.v[0]; } \ - if(Nrounds>25){ X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x2_1_0); X.v[1] ^= X.v[0]; } \ - if(Nrounds>26){ X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x2_2_0); X.v[1] ^= X.v[0]; } \ - if(Nrounds>27){ X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x2_3_0); X.v[1] ^= X.v[0]; } \ - if(Nrounds>27){ \ - /* InjectKey(r=7) */ \ - X.v[0] += ks[1]; X.v[1] += ks[2]; \ - X.v[1] += 7; \ - } \ - if(Nrounds>28){ X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x2_4_0); X.v[1] ^= X.v[0]; } \ - if(Nrounds>29){ X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x2_5_0); X.v[1] ^= X.v[0]; } \ - if(Nrounds>30){ X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x2_6_0); X.v[1] ^= X.v[0]; } \ - if(Nrounds>31){ X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x2_7_0); X.v[1] ^= X.v[0]; } \ - if(Nrounds>31){ \ - /* InjectKey(r=8) */ \ - X.v[0] += ks[2]; X.v[1] += ks[0]; \ - X.v[1] += 8; \ - } \ - return X; \ -} \ - /** @ingroup ThreefryNxW */ \ -enum r123_enum_threefry2x##W { threefry2x##W##_rounds = THREEFRY2x##W##_DEFAULT_ROUNDS }; \ -R123_CUDA_DEVICE R123_STATIC_INLINE R123_FORCE_INLINE(threefry2x##W##_ctr_t threefry2x##W(threefry2x##W##_ctr_t in, threefry2x##W##_key_t k)); \ -R123_CUDA_DEVICE R123_STATIC_INLINE \ -threefry2x##W##_ctr_t threefry2x##W(threefry2x##W##_ctr_t in, threefry2x##W##_key_t k){ \ - return threefry2x##W##_R(threefry2x##W##_rounds, in, k); \ -} - - -#define _threefry4x_tpl(W) \ -typedef struct r123array4x##W threefry4x##W##_ctr_t; \ -typedef struct r123array4x##W threefry4x##W##_key_t; \ -typedef struct r123array4x##W threefry4x##W##_ukey_t; \ -R123_CUDA_DEVICE R123_STATIC_INLINE threefry4x##W##_key_t threefry4x##W##keyinit(threefry4x##W##_ukey_t uk) { return uk; } \ -R123_CUDA_DEVICE R123_STATIC_INLINE R123_FORCE_INLINE(threefry4x##W##_ctr_t threefry4x##W##_R(unsigned int Nrounds, threefry4x##W##_ctr_t in, threefry4x##W##_key_t k)); \ -R123_CUDA_DEVICE R123_STATIC_INLINE \ -threefry4x##W##_ctr_t threefry4x##W##_R(unsigned int Nrounds, threefry4x##W##_ctr_t in, threefry4x##W##_key_t k){ \ - threefry4x##W##_ctr_t X; \ - uint##W##_t ks[4+1]; \ - int i; /* avoid size_t to avoid need for stddef.h */ \ - R123_ASSERT(Nrounds<=72); \ - ks[4] = SKEIN_KS_PARITY##W; \ - for (i=0;i < 4; i++) \ - { \ - ks[i] = k.v[i]; \ - X.v[i] = in.v[i]; \ - ks[4] ^= k.v[i]; \ - } \ - \ - /* Insert initial key before round 0 */ \ - X.v[0] += ks[0]; X.v[1] += ks[1]; X.v[2] += ks[2]; X.v[3] += ks[3]; \ - \ - if(Nrounds>0){ \ - X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_0_0); X.v[1] ^= X.v[0]; \ - X.v[2] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_0_1); X.v[3] ^= X.v[2]; \ - } \ - if(Nrounds>1){ \ - X.v[0] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_1_0); X.v[3] ^= X.v[0]; \ - X.v[2] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_1_1); X.v[1] ^= X.v[2]; \ - } \ - if(Nrounds>2){ \ - X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_2_0); X.v[1] ^= X.v[0]; \ - X.v[2] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_2_1); X.v[3] ^= X.v[2]; \ - } \ - if(Nrounds>3){ \ - X.v[0] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_3_0); X.v[3] ^= X.v[0]; \ - X.v[2] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_3_1); X.v[1] ^= X.v[2]; \ - } \ - if(Nrounds>3){ \ - /* InjectKey(r=1) */ \ - X.v[0] += ks[1]; X.v[1] += ks[2]; X.v[2] += ks[3]; X.v[3] += ks[4]; \ - X.v[4-1] += 1; /* X.v[WCNT4-1] += r */ \ - } \ - \ - if(Nrounds>4){ \ - X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_4_0); X.v[1] ^= X.v[0]; \ - X.v[2] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_4_1); X.v[3] ^= X.v[2]; \ - } \ - if(Nrounds>5){ \ - X.v[0] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_5_0); X.v[3] ^= X.v[0]; \ - X.v[2] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_5_1); X.v[1] ^= X.v[2]; \ - } \ - if(Nrounds>6){ \ - X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_6_0); X.v[1] ^= X.v[0]; \ - X.v[2] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_6_1); X.v[3] ^= X.v[2]; \ - } \ - if(Nrounds>7){ \ - X.v[0] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_7_0); X.v[3] ^= X.v[0]; \ - X.v[2] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_7_1); X.v[1] ^= X.v[2]; \ - } \ - if(Nrounds>7){ \ - /* InjectKey(r=2) */ \ - X.v[0] += ks[2]; X.v[1] += ks[3]; X.v[2] += ks[4]; X.v[3] += ks[0]; \ - X.v[4-1] += 2; /* X.v[WCNT4-1] += r */ \ - } \ - \ - if(Nrounds>8){ \ - X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_0_0); X.v[1] ^= X.v[0]; \ - X.v[2] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_0_1); X.v[3] ^= X.v[2]; \ - } \ - if(Nrounds>9){ \ - X.v[0] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_1_0); X.v[3] ^= X.v[0]; \ - X.v[2] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_1_1); X.v[1] ^= X.v[2]; \ - } \ - if(Nrounds>10){ \ - X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_2_0); X.v[1] ^= X.v[0]; \ - X.v[2] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_2_1); X.v[3] ^= X.v[2]; \ - } \ - if(Nrounds>11){ \ - X.v[0] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_3_0); X.v[3] ^= X.v[0]; \ - X.v[2] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_3_1); X.v[1] ^= X.v[2]; \ - } \ - if(Nrounds>11){ \ - /* InjectKey(r=3) */ \ - X.v[0] += ks[3]; X.v[1] += ks[4]; X.v[2] += ks[0]; X.v[3] += ks[1]; \ - X.v[4-1] += 3; /* X.v[WCNT4-1] += r */ \ - } \ - \ - if(Nrounds>12){ \ - X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_4_0); X.v[1] ^= X.v[0]; \ - X.v[2] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_4_1); X.v[3] ^= X.v[2]; \ - } \ - if(Nrounds>13){ \ - X.v[0] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_5_0); X.v[3] ^= X.v[0]; \ - X.v[2] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_5_1); X.v[1] ^= X.v[2]; \ - } \ - if(Nrounds>14){ \ - X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_6_0); X.v[1] ^= X.v[0]; \ - X.v[2] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_6_1); X.v[3] ^= X.v[2]; \ - } \ - if(Nrounds>15){ \ - X.v[0] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_7_0); X.v[3] ^= X.v[0]; \ - X.v[2] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_7_1); X.v[1] ^= X.v[2]; \ - } \ - if(Nrounds>15){ \ - /* InjectKey(r=1) */ \ - X.v[0] += ks[4]; X.v[1] += ks[0]; X.v[2] += ks[1]; X.v[3] += ks[2]; \ - X.v[4-1] += 4; /* X.v[WCNT4-1] += r */ \ - } \ - \ - if(Nrounds>16){ \ - X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_0_0); X.v[1] ^= X.v[0]; \ - X.v[2] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_0_1); X.v[3] ^= X.v[2]; \ - } \ - if(Nrounds>17){ \ - X.v[0] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_1_0); X.v[3] ^= X.v[0]; \ - X.v[2] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_1_1); X.v[1] ^= X.v[2]; \ - } \ - if(Nrounds>18){ \ - X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_2_0); X.v[1] ^= X.v[0]; \ - X.v[2] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_2_1); X.v[3] ^= X.v[2]; \ - } \ - if(Nrounds>19){ \ - X.v[0] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_3_0); X.v[3] ^= X.v[0]; \ - X.v[2] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_3_1); X.v[1] ^= X.v[2]; \ - } \ - if(Nrounds>19){ \ - /* InjectKey(r=1) */ \ - X.v[0] += ks[0]; X.v[1] += ks[1]; X.v[2] += ks[2]; X.v[3] += ks[3]; \ - X.v[4-1] += 5; /* X.v[WCNT4-1] += r */ \ - } \ - \ - if(Nrounds>20){ \ - X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_4_0); X.v[1] ^= X.v[0]; \ - X.v[2] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_4_1); X.v[3] ^= X.v[2]; \ - } \ - if(Nrounds>21){ \ - X.v[0] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_5_0); X.v[3] ^= X.v[0]; \ - X.v[2] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_5_1); X.v[1] ^= X.v[2]; \ - } \ - if(Nrounds>22){ \ - X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_6_0); X.v[1] ^= X.v[0]; \ - X.v[2] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_6_1); X.v[3] ^= X.v[2]; \ - } \ - if(Nrounds>23){ \ - X.v[0] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_7_0); X.v[3] ^= X.v[0]; \ - X.v[2] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_7_1); X.v[1] ^= X.v[2]; \ - } \ - if(Nrounds>23){ \ - /* InjectKey(r=1) */ \ - X.v[0] += ks[1]; X.v[1] += ks[2]; X.v[2] += ks[3]; X.v[3] += ks[4]; \ - X.v[4-1] += 6; /* X.v[WCNT4-1] += r */ \ - } \ - \ - if(Nrounds>24){ \ - X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_0_0); X.v[1] ^= X.v[0]; \ - X.v[2] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_0_1); X.v[3] ^= X.v[2]; \ - } \ - if(Nrounds>25){ \ - X.v[0] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_1_0); X.v[3] ^= X.v[0]; \ - X.v[2] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_1_1); X.v[1] ^= X.v[2]; \ - } \ - if(Nrounds>26){ \ - X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_2_0); X.v[1] ^= X.v[0]; \ - X.v[2] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_2_1); X.v[3] ^= X.v[2]; \ - } \ - if(Nrounds>27){ \ - X.v[0] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_3_0); X.v[3] ^= X.v[0]; \ - X.v[2] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_3_1); X.v[1] ^= X.v[2]; \ - } \ - if(Nrounds>27){ \ - /* InjectKey(r=1) */ \ - X.v[0] += ks[2]; X.v[1] += ks[3]; X.v[2] += ks[4]; X.v[3] += ks[0]; \ - X.v[4-1] += 7; /* X.v[WCNT4-1] += r */ \ - } \ - \ - if(Nrounds>28){ \ - X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_4_0); X.v[1] ^= X.v[0]; \ - X.v[2] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_4_1); X.v[3] ^= X.v[2]; \ - } \ - if(Nrounds>29){ \ - X.v[0] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_5_0); X.v[3] ^= X.v[0]; \ - X.v[2] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_5_1); X.v[1] ^= X.v[2]; \ - } \ - if(Nrounds>30){ \ - X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_6_0); X.v[1] ^= X.v[0]; \ - X.v[2] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_6_1); X.v[3] ^= X.v[2]; \ - } \ - if(Nrounds>31){ \ - X.v[0] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_7_0); X.v[3] ^= X.v[0]; \ - X.v[2] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_7_1); X.v[1] ^= X.v[2]; \ - } \ - if(Nrounds>31){ \ - /* InjectKey(r=1) */ \ - X.v[0] += ks[3]; X.v[1] += ks[4]; X.v[2] += ks[0]; X.v[3] += ks[1]; \ - X.v[4-1] += 8; /* X.v[WCNT4-1] += r */ \ - } \ - \ - if(Nrounds>32){ \ - X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_0_0); X.v[1] ^= X.v[0]; \ - X.v[2] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_0_1); X.v[3] ^= X.v[2]; \ - } \ - if(Nrounds>33){ \ - X.v[0] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_1_0); X.v[3] ^= X.v[0]; \ - X.v[2] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_1_1); X.v[1] ^= X.v[2]; \ - } \ - if(Nrounds>34){ \ - X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_2_0); X.v[1] ^= X.v[0]; \ - X.v[2] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_2_1); X.v[3] ^= X.v[2]; \ - } \ - if(Nrounds>35){ \ - X.v[0] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_3_0); X.v[3] ^= X.v[0]; \ - X.v[2] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_3_1); X.v[1] ^= X.v[2]; \ - } \ - if(Nrounds>35){ \ - /* InjectKey(r=1) */ \ - X.v[0] += ks[4]; X.v[1] += ks[0]; X.v[2] += ks[1]; X.v[3] += ks[2]; \ - X.v[4-1] += 9; /* X.v[WCNT4-1] += r */ \ - } \ - \ - if(Nrounds>36){ \ - X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_4_0); X.v[1] ^= X.v[0]; \ - X.v[2] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_4_1); X.v[3] ^= X.v[2]; \ - } \ - if(Nrounds>37){ \ - X.v[0] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_5_0); X.v[3] ^= X.v[0]; \ - X.v[2] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_5_1); X.v[1] ^= X.v[2]; \ - } \ - if(Nrounds>38){ \ - X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_6_0); X.v[1] ^= X.v[0]; \ - X.v[2] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_6_1); X.v[3] ^= X.v[2]; \ - } \ - if(Nrounds>39){ \ - X.v[0] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_7_0); X.v[3] ^= X.v[0]; \ - X.v[2] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_7_1); X.v[1] ^= X.v[2]; \ - } \ - if(Nrounds>39){ \ - /* InjectKey(r=1) */ \ - X.v[0] += ks[0]; X.v[1] += ks[1]; X.v[2] += ks[2]; X.v[3] += ks[3]; \ - X.v[4-1] += 10; /* X.v[WCNT4-1] += r */ \ - } \ - \ - if(Nrounds>40){ \ - X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_0_0); X.v[1] ^= X.v[0]; \ - X.v[2] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_0_1); X.v[3] ^= X.v[2]; \ - } \ - if(Nrounds>41){ \ - X.v[0] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_1_0); X.v[3] ^= X.v[0]; \ - X.v[2] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_1_1); X.v[1] ^= X.v[2]; \ - } \ - if(Nrounds>42){ \ - X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_2_0); X.v[1] ^= X.v[0]; \ - X.v[2] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_2_1); X.v[3] ^= X.v[2]; \ - } \ - if(Nrounds>43){ \ - X.v[0] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_3_0); X.v[3] ^= X.v[0]; \ - X.v[2] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_3_1); X.v[1] ^= X.v[2]; \ - } \ - if(Nrounds>43){ \ - /* InjectKey(r=1) */ \ - X.v[0] += ks[1]; X.v[1] += ks[2]; X.v[2] += ks[3]; X.v[3] += ks[4]; \ - X.v[4-1] += 11; /* X.v[WCNT4-1] += r */ \ - } \ - \ - if(Nrounds>44){ \ - X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_4_0); X.v[1] ^= X.v[0]; \ - X.v[2] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_4_1); X.v[3] ^= X.v[2]; \ - } \ - if(Nrounds>45){ \ - X.v[0] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_5_0); X.v[3] ^= X.v[0]; \ - X.v[2] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_5_1); X.v[1] ^= X.v[2]; \ - } \ - if(Nrounds>46){ \ - X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_6_0); X.v[1] ^= X.v[0]; \ - X.v[2] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_6_1); X.v[3] ^= X.v[2]; \ - } \ - if(Nrounds>47){ \ - X.v[0] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_7_0); X.v[3] ^= X.v[0]; \ - X.v[2] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_7_1); X.v[1] ^= X.v[2]; \ - } \ - if(Nrounds>47){ \ - /* InjectKey(r=1) */ \ - X.v[0] += ks[2]; X.v[1] += ks[3]; X.v[2] += ks[4]; X.v[3] += ks[0]; \ - X.v[4-1] += 12; /* X.v[WCNT4-1] += r */ \ - } \ - \ - if(Nrounds>48){ \ - X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_0_0); X.v[1] ^= X.v[0]; \ - X.v[2] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_0_1); X.v[3] ^= X.v[2]; \ - } \ - if(Nrounds>49){ \ - X.v[0] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_1_0); X.v[3] ^= X.v[0]; \ - X.v[2] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_1_1); X.v[1] ^= X.v[2]; \ - } \ - if(Nrounds>50){ \ - X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_2_0); X.v[1] ^= X.v[0]; \ - X.v[2] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_2_1); X.v[3] ^= X.v[2]; \ - } \ - if(Nrounds>51){ \ - X.v[0] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_3_0); X.v[3] ^= X.v[0]; \ - X.v[2] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_3_1); X.v[1] ^= X.v[2]; \ - } \ - if(Nrounds>51){ \ - /* InjectKey(r=1) */ \ - X.v[0] += ks[3]; X.v[1] += ks[4]; X.v[2] += ks[0]; X.v[3] += ks[1]; \ - X.v[4-1] += 13; /* X.v[WCNT4-1] += r */ \ - } \ - \ - if(Nrounds>52){ \ - X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_4_0); X.v[1] ^= X.v[0]; \ - X.v[2] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_4_1); X.v[3] ^= X.v[2]; \ - } \ - if(Nrounds>53){ \ - X.v[0] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_5_0); X.v[3] ^= X.v[0]; \ - X.v[2] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_5_1); X.v[1] ^= X.v[2]; \ - } \ - if(Nrounds>54){ \ - X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_6_0); X.v[1] ^= X.v[0]; \ - X.v[2] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_6_1); X.v[3] ^= X.v[2]; \ - } \ - if(Nrounds>55){ \ - X.v[0] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_7_0); X.v[3] ^= X.v[0]; \ - X.v[2] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_7_1); X.v[1] ^= X.v[2]; \ - } \ - if(Nrounds>55){ \ - /* InjectKey(r=1) */ \ - X.v[0] += ks[4]; X.v[1] += ks[0]; X.v[2] += ks[1]; X.v[3] += ks[2]; \ - X.v[4-1] += 14; /* X.v[WCNT4-1] += r */ \ - } \ - \ - if(Nrounds>56){ \ - X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_0_0); X.v[1] ^= X.v[0]; \ - X.v[2] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_0_1); X.v[3] ^= X.v[2]; \ - } \ - if(Nrounds>57){ \ - X.v[0] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_1_0); X.v[3] ^= X.v[0]; \ - X.v[2] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_1_1); X.v[1] ^= X.v[2]; \ - } \ - if(Nrounds>58){ \ - X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_2_0); X.v[1] ^= X.v[0]; \ - X.v[2] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_2_1); X.v[3] ^= X.v[2]; \ - } \ - if(Nrounds>59){ \ - X.v[0] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_3_0); X.v[3] ^= X.v[0]; \ - X.v[2] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_3_1); X.v[1] ^= X.v[2]; \ - } \ - if(Nrounds>59){ \ - /* InjectKey(r=1) */ \ - X.v[0] += ks[0]; X.v[1] += ks[1]; X.v[2] += ks[2]; X.v[3] += ks[3]; \ - X.v[4-1] += 15; /* X.v[WCNT4-1] += r */ \ - } \ - \ - if(Nrounds>60){ \ - X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_4_0); X.v[1] ^= X.v[0]; \ - X.v[2] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_4_1); X.v[3] ^= X.v[2]; \ - } \ - if(Nrounds>61){ \ - X.v[0] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_5_0); X.v[3] ^= X.v[0]; \ - X.v[2] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_5_1); X.v[1] ^= X.v[2]; \ - } \ - if(Nrounds>62){ \ - X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_6_0); X.v[1] ^= X.v[0]; \ - X.v[2] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_6_1); X.v[3] ^= X.v[2]; \ - } \ - if(Nrounds>63){ \ - X.v[0] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_7_0); X.v[3] ^= X.v[0]; \ - X.v[2] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_7_1); X.v[1] ^= X.v[2]; \ - } \ - if(Nrounds>63){ \ - /* InjectKey(r=1) */ \ - X.v[0] += ks[1]; X.v[1] += ks[2]; X.v[2] += ks[3]; X.v[3] += ks[4]; \ - X.v[4-1] += 16; /* X.v[WCNT4-1] += r */ \ - } \ - \ - if(Nrounds>64){ \ - X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_0_0); X.v[1] ^= X.v[0]; \ - X.v[2] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_0_1); X.v[3] ^= X.v[2]; \ - } \ - if(Nrounds>65){ \ - X.v[0] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_1_0); X.v[3] ^= X.v[0]; \ - X.v[2] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_1_1); X.v[1] ^= X.v[2]; \ - } \ - if(Nrounds>66){ \ - X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_2_0); X.v[1] ^= X.v[0]; \ - X.v[2] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_2_1); X.v[3] ^= X.v[2]; \ - } \ - if(Nrounds>67){ \ - X.v[0] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_3_0); X.v[3] ^= X.v[0]; \ - X.v[2] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_3_1); X.v[1] ^= X.v[2]; \ - } \ - if(Nrounds>67){ \ - /* InjectKey(r=1) */ \ - X.v[0] += ks[2]; X.v[1] += ks[3]; X.v[2] += ks[4]; X.v[3] += ks[0]; \ - X.v[4-1] += 17; /* X.v[WCNT4-1] += r */ \ - } \ - \ - if(Nrounds>68){ \ - X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_4_0); X.v[1] ^= X.v[0]; \ - X.v[2] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_4_1); X.v[3] ^= X.v[2]; \ - } \ - if(Nrounds>69){ \ - X.v[0] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_5_0); X.v[3] ^= X.v[0]; \ - X.v[2] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_5_1); X.v[1] ^= X.v[2]; \ - } \ - if(Nrounds>70){ \ - X.v[0] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_6_0); X.v[1] ^= X.v[0]; \ - X.v[2] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_6_1); X.v[3] ^= X.v[2]; \ - } \ - if(Nrounds>71){ \ - X.v[0] += X.v[3]; X.v[3] = RotL_##W(X.v[3],R_##W##x4_7_0); X.v[3] ^= X.v[0]; \ - X.v[2] += X.v[1]; X.v[1] = RotL_##W(X.v[1],R_##W##x4_7_1); X.v[1] ^= X.v[2]; \ - } \ - if(Nrounds>71){ \ - /* InjectKey(r=1) */ \ - X.v[0] += ks[3]; X.v[1] += ks[4]; X.v[2] += ks[0]; X.v[3] += ks[1]; \ - X.v[4-1] += 18; /* X.v[WCNT4-1] += r */ \ - } \ - \ - return X; \ -} \ - \ - /** @ingroup ThreefryNxW */ \ -enum r123_enum_threefry4x##W { threefry4x##W##_rounds = THREEFRY4x##W##_DEFAULT_ROUNDS }; \ -R123_CUDA_DEVICE R123_STATIC_INLINE R123_FORCE_INLINE(threefry4x##W##_ctr_t threefry4x##W(threefry4x##W##_ctr_t in, threefry4x##W##_key_t k)); \ -R123_CUDA_DEVICE R123_STATIC_INLINE \ -threefry4x##W##_ctr_t threefry4x##W(threefry4x##W##_ctr_t in, threefry4x##W##_key_t k){ \ - return threefry4x##W##_R(threefry4x##W##_rounds, in, k); \ -} - -#if R123_USE_64BIT -_threefry2x_tpl(64) -_threefry4x_tpl(64) -#endif -_threefry2x_tpl(32) -_threefry4x_tpl(32) - -/* gcc4.5 and 4.6 seem to optimize a macro-ized threefryNxW better - than a static inline function. Why? */ -#define threefry2x32(c,k) threefry2x32_R(threefry2x32_rounds, c, k) -#define threefry4x32(c,k) threefry4x32_R(threefry4x32_rounds, c, k) -#define threefry2x64(c,k) threefry2x64_R(threefry2x64_rounds, c, k) -#define threefry4x64(c,k) threefry4x64_R(threefry4x64_rounds, c, k) - -#if defined(__cplusplus) -#define _threefryNxWclass_tpl(NxW) \ -namespace r123{ \ -template \ - struct Threefry##NxW##_R{ \ - typedef threefry##NxW##_ctr_t ctr_type; \ - typedef threefry##NxW##_key_t key_type; \ - typedef threefry##NxW##_key_t ukey_type; \ - static const R123_METAL_CONSTANT_ADDRESS_SPACE unsigned int rounds=ROUNDS; \ - inline R123_CUDA_DEVICE R123_FORCE_INLINE(ctr_type operator()(ctr_type ctr, key_type key)){ \ - R123_STATIC_ASSERT(ROUNDS<=72, "threefry is only unrolled up to 72 rounds\n"); \ - return threefry##NxW##_R(ROUNDS, ctr, key); \ - } \ -}; \ - typedef Threefry##NxW##_R Threefry##NxW; \ -} // namespace r123 - -_threefryNxWclass_tpl(2x32) -_threefryNxWclass_tpl(4x32) -#if R123_USE_64BIT -_threefryNxWclass_tpl(2x64) -_threefryNxWclass_tpl(4x64) -#endif - -/* The _tpl macros don't quite work to do string-pasting inside comments. - so we just write out the boilerplate documentation four times... */ - -/** -@defgroup ThreefryNxW Threefry Classes and Typedefs - -The ThreefryNxW classes export the member functions, typedefs and -operator overloads required by a @ref CBRNG "CBRNG" class. - -As described in -Parallel Random Numbers: As Easy as 1, 2, 3 , -the Threefry family is closely related to the Threefish block cipher from - Skein Hash Function. -Threefry is \b not suitable for cryptographic use. - -Threefry uses integer addition, bitwise rotation, xor and permutation of words to randomize its output. - -@class r123::Threefry2x32_R -@ingroup ThreefryNxW - -exports the member functions, typedefs and operator overloads required by a @ref CBRNG "CBRNG" class. - -The template argument, ROUNDS, is the number of times the Threefry round -function will be applied. - -As of September 2011, the authors know of no statistical flaws with -ROUNDS=13 or more for Threefry2x32. - -@typedef r123::Threefry2x32 -@ingroup ThreefryNxW - Threefry2x32 is equivalent to Threefry2x32_R<20>. With 20 rounds, - Threefry2x32 has a considerable safety margin over the minimum number - of rounds with no known statistical flaws, but still has excellent - performance. - -@class r123::Threefry2x64_R -@ingroup ThreefryNxW - -exports the member functions, typedefs and operator overloads required by a @ref CBRNG "CBRNG" class. - -The template argument, ROUNDS, is the number of times the Threefry round -function will be applied. - -In November 2011, the authors discovered that 13 rounds of -Threefry2x64 sequenced by strided, interleaved key and counter -increments failed a very long (longer than the default BigCrush -length) WeightDistrub test. At the same time, it was confirmed that -14 rounds passes much longer tests (up to 5x10^12 samples) of a -similar nature. The authors know of no statistical flaws with -ROUNDS=14 or more for Threefry2x64. - -@typedef r123::Threefry2x64 -@ingroup ThreefryNxW - Threefry2x64 is equivalent to Threefry2x64_R<20>. With 20 rounds, - Threefry2x64 has a considerable safety margin over the minimum number - of rounds with no known statistical flaws, but still has excellent - performance. - - - -@class r123::Threefry4x32_R -@ingroup ThreefryNxW - -exports the member functions, typedefs and operator overloads required by a @ref CBRNG "CBRNG" class. - -The template argument, ROUNDS, is the number of times the Threefry round -function will be applied. - -As of September 2011, the authors know of no statistical flaws with -ROUNDS=12 or more for Threefry4x32. - -@typedef r123::Threefry4x32 -@ingroup ThreefryNxW - Threefry4x32 is equivalent to Threefry4x32_R<20>. With 20 rounds, - Threefry4x32 has a considerable safety margin over the minimum number - of rounds with no known statistical flaws, but still has excellent - performance. - - - -@class r123::Threefry4x64_R -@ingroup ThreefryNxW - -exports the member functions, typedefs and operator overloads required by a @ref CBRNG "CBRNG" class. - -The template argument, ROUNDS, is the number of times the Threefry round -function will be applied. - -As of September 2011, the authors know of no statistical flaws with -ROUNDS=12 or more for Threefry4x64. - -@typedef r123::Threefry4x64 -@ingroup ThreefryNxW - Threefry4x64 is equivalent to Threefry4x64_R<20>. With 20 rounds, - Threefry4x64 has a considerable safety margin over the minimum number - of rounds with no known statistical flaws, but still has excellent - performance. -*/ - -#endif - -#endif diff --git a/ext/random123/include/Random123/u01fixedpt.h b/ext/random123/include/Random123/u01fixedpt.h deleted file mode 100644 index 2058f8b57e..0000000000 --- a/ext/random123/include/Random123/u01fixedpt.h +++ /dev/null @@ -1,200 +0,0 @@ -/* -Copyright 2011, D. E. Shaw Research. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright - notice, this list of conditions, and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright - notice, this list of conditions, and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -* Neither the name of D. E. Shaw Research nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -*/ -#ifndef _random123_ufixed01_dot_h_ -#define _random123_ufixed01_dot_h_ - -#include "features/compilerfeatures.h" - -/** @defgroup u01fixedpt The u01fixedpt conversion functions - - These functions convert unsigned W-bit integers to uniformly - spaced real values (float or double) between 0.0 and 1.0 with - mantissas of M bits. - - PLEASE THINK CAREFULLY BEFORE USING THESE FUNCTIONS. THEY MAY - NOT BE WHAT YOU WANT. YOU MAY BE MUCH BETTER SERVED BY THE - FUNCTIONS IN ./uniform.hpp. - - These functions produce a finite number *uniformly spaced* values - in the range from 0.0 to 1.0 with uniform probability. The price - of uniform spacing is that they may not utilize the entire space - of possible outputs. E.g., u01fixedpt_closed_open_32_24 will never - produce a non-zero value less than 2^-24, even though such values - are representable in single-precision floating point. - - There are 12 functions, corresponding to the following choices: - - - W = 32 or 64 - - M = 24 (float) or 53 (double) - - open0 or closed0 : whether the output is open or closed at 0.0 - - open1 or closed1 : whether the output is open or closed at 1.0 - - The W=64 M=24 cases are not implemented. To obtain an M=24 float - from a uint64_t, use a cast (possibly with right-shift and bitwise - and) to convert some of the bits of the uint64_t to a uint32_t and - then use u01fixedpt_x_y_32_float. Note that the 64-bit random integers - produced by the Random123 library are random in "all the bits", so - with a little extra effort you can obtain two floats this way -- - one from the high bits and one from the low bits of the 64-bit - value. - - If the output is open at one end, then the extreme - value (0.0 or 1.0) will never be returned. Conversely, if the output - is closed at one end, then the extreme value is a possible - return value. - - The values returned are as follows. All values are returned - with equal frequency, except as noted in the closed_closed case: - - closed_open: Let P=min(M,W) - there are 2^P possible output values: - {0, 1, 2, ..., 2^P-1}/2^P - - open_closed: Let P=min(M,W) - there are 2^P possible values: - {1, 2, ..., 2^P}/2^P - - open_open: Let P=min(M, W+1) - there are 2^(P-1) possible values: - {1, 3, 5, ..., 2^P-1}/2^P - - closed_closed: Let P=min(M, W-1) - there are 1+2^P possible values: - {0, 1, 2, ... 2^P}/2^P - The extreme values (0.0 and 1.0) are - returned with half the frequency of - all others. - - On x86 hardware, especially on 32bit machines, the use of - internal 80bit x87-style floating point may result in - 'bonus' precision, which may cause closed intervals to not - be really closed, i.e. the conversions below might not - convert UINT{32,64}_MAX to 1.0. This sort of issue is - likely to occur when storing the output of a u01fixedpt_*_32_float - function in a double, though one can imagine getting extra - precision artifacts when going from 64_53 as well. Other - artifacts may exist on some GPU hardware. The tests in - kat_u01_main.h try to expose such issues, but caveat emptor. - - @cond HIDDEN_FROM_DOXYGEN - */ - -/* Hex floats were standardized by C in 1999, but weren't standardized - by C++ until 2011. So, we're obliged to write out our constants in - decimal, even though they're most naturally expressed in binary. - We cross our fingers and hope that the compiler does the compile-time - constant arithmetic properly. -*/ -#define R123_0x1p_31f (1.f/(1024.f*1024.f*1024.f*2.f)) -#define R123_0x1p_24f (128.f*R123_0x1p_31f) -#define R123_0x1p_23f (256.f*R123_0x1p_31f) -#define R123_0x1p_32 (1./(1024.*1024.*1024.*4.)) -#define R123_0x1p_63 (2.*R123_0x1p_32*R123_0x1p_32) -#define R123_0x1p_53 (1024.*R123_0x1p_63) -#define R123_0x1p_52 (2048.*R123_0x1p_63) - -/** @endcond */ - -#ifndef R123_USE_U01_DOUBLE -#define R123_USE_U01_DOUBLE 1 -#endif - -#ifdef __cplusplus -extern "C"{ -#endif - -/* narrowing conversions: uint32_t to float */ -R123_CUDA_DEVICE R123_STATIC_INLINE float u01fixedpt_closed_closed_32_float(uint32_t i){ - /* N.B. we ignore the high bit, so output is not monotonic */ - return ((i&0x7fffffc0) + (i&0x40))*R123_0x1p_31f; /* 0x1.p-31f */ -} - -R123_CUDA_DEVICE R123_STATIC_INLINE float u01fixedpt_closed_open_32_float(uint32_t i){ - return (i>>8)*R123_0x1p_24f; /* 0x1.0p-24f; */ -} - -R123_CUDA_DEVICE R123_STATIC_INLINE float u01fixedpt_open_closed_32_float(uint32_t i){ - return (1+(i>>8))*R123_0x1p_24f; /* *0x1.0p-24f; */ -} - -R123_CUDA_DEVICE R123_STATIC_INLINE float u01fixedpt_open_open_32_float(uint32_t i){ - return (0.5f+(i>>9))*R123_0x1p_23f; /* 0x1.p-23f; */ -} - -#if R123_USE_U01_DOUBLE -/* narrowing conversions: uint64_t to double */ -R123_CUDA_DEVICE R123_STATIC_INLINE double u01fixedpt_closed_closed_64_double(uint64_t i){ - /* N.B. we ignore the high bit, so output is not monotonic */ - return ((i&R123_64BIT(0x7ffffffffffffe00)) + (i&0x200))*R123_0x1p_63; /* 0x1.p-63; */ -} - -R123_CUDA_DEVICE R123_STATIC_INLINE double u01fixedpt_closed_open_64_double(uint64_t i){ - return (i>>11)*R123_0x1p_53; /* 0x1.0p-53; */ -} - -R123_CUDA_DEVICE R123_STATIC_INLINE double u01fixedpt_open_closed_64_double(uint64_t i){ - return (1+(i>>11))*R123_0x1p_53; /* 0x1.0p-53; */ -} - -R123_CUDA_DEVICE R123_STATIC_INLINE double u01fixedpt_open_open_64_double(uint64_t i){ - return (0.5+(i>>12))*R123_0x1p_52; /* 0x1.0p-52; */ -} - -/* widening conversions: u32 to double */ -R123_CUDA_DEVICE R123_STATIC_INLINE double u01fixedpt_closed_closed_32_double(uint32_t i){ - /* j = i+(i&1) takes on 2^31+1 possible values with a 'trapezoid' distribution: - p_j = 1 0 2 0 2 .... 2 0 2 0 1 - j = 0 1 2 3 4 .... 2^32 - by converting to double *before* doing the add, we don't wrap the high bit. - */ - return (((double)(i&1)) + i)*R123_0x1p_32; /* 0x1.p-32; */ -} - -R123_CUDA_DEVICE R123_STATIC_INLINE double u01fixedpt_closed_open_32_double(uint32_t i){ - return i*R123_0x1p_32; /* 0x1.p-32; */ -} - -R123_CUDA_DEVICE R123_STATIC_INLINE double u01fixedpt_open_closed_32_double(uint32_t i){ - return (1.+i)*R123_0x1p_32; /* 0x1.p-32; */ -} - -R123_CUDA_DEVICE R123_STATIC_INLINE double u01fixedpt_open_open_32_double(uint32_t i){ - return (0.5+i)*R123_0x1p_32; /* 0x1.p-32; */ -} -#endif /* R123_USE_U01_DOUBLE */ - -#ifdef __cplusplus -} -#endif - -/** @} */ -#endif diff --git a/ext/random123/include/Random123/uniform.hpp b/ext/random123/include/Random123/uniform.hpp deleted file mode 100644 index 5b3f3f1246..0000000000 --- a/ext/random123/include/Random123/uniform.hpp +++ /dev/null @@ -1,310 +0,0 @@ -/* -Copyright 2010-2011, D. E. Shaw Research. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright - notice, this list of conditions, and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright - notice, this list of conditions, and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -* Neither the name of D. E. Shaw Research nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -*/ - -#ifndef __r123_uniform_dot_hpp -#define __r123_uniform_dot_hpp - -/** @defgroup uniform Uniform distribution scalar conversion functions - -This file provides some simple functions that can be used to convert -integers of various widths to floats and doubles with various -characteristics. It can be used to generate real-valued, uniformly -distributed random variables from the random integers produced by -the Random123 CBRNGs. - -There are three templated functions: - - - u01: output is as dense as possible in (0,1}, never 0.0. May - return 1.0 if and only if the number of output mantissa bits - is less than the width of the input. - - - uneg11: output is as dense as possible in {-1,1}, never 0.0. May - return 1.0 or -1.0 if and only if the number of output mantissa bits - is less than the width of the input. - - - u01fixedpt: output is "fixed point", equispaced, open at both ends, - and is never 0.0, 0.5 nor 1.0. - -The behavior of u01 and uneg11 depend on the pre-processor symbol: -R123_UNIFORM_FLOAT_STORE. When #defined to a non-zero value, u01 -and uneg11 declare a volatile intermediate result, with the -intention of forcing architectures that have "extra bits" in their -floating point registers to more closely conform to IEEE -arithmetic. When compiled this way, u01 and uneg11 will be -significantly slower, as they will incur a memory write and read on -every call. Without it, they may fail the "known answer test" -implemented in ut_uniform_IEEEkat.cpp even though they perform -perfectly reasonable int to float conversions. We have used -this option to get 32-bit x86 to produce the same results as -64-bit x86-64 code, but we do not recommend it for normal -use. - -Three additional functions are defined when C++11 or newer is in use: - - - u01all - - uneg11all - - u01fixedptall - -These functions apply the corresponding conversion to every -element of their argument, which must be a staticly sized -array, e.g., an r123array or a std::array of an integer type. - -This file may not be as portable, and has not been tested as -rigorously as other files in the library, e.g., the generators. -Nevertheless, we hope it is useful and we encourage developers to -copy it and modify it for their own use. We invite comments and -improvements. -*/ - -#include -#include -#if R123_USE_CXX11_TYPE_TRAITS -#include -#endif -#if __cplusplus >= 201103L -#include -#endif - -namespace r123{ -/** -@{ -@cond HIDDEN_FROM_DOXYGEN -*/ - -#if R123_USE_CXX11_TYPE_TRAITS -using std::make_signed; -using std::make_unsigned; -#else -// Sigh... We could try to find another , e.g., from -// boost or TR1. Or we can do it ourselves in the r123 namespace. -// It's not clear which will cause less headache... -template struct make_signed{}; -template struct make_unsigned{}; -#define R123_MK_SIGNED_UNSIGNED(ST, UT) \ -template<> struct make_signed{ typedef ST type; }; \ -template<> struct make_signed{ typedef ST type; }; \ -template<> struct make_unsigned{ typedef UT type; }; \ -template<> struct make_unsigned{ typedef UT type; } - -R123_MK_SIGNED_UNSIGNED(int8_t, uint8_t); -R123_MK_SIGNED_UNSIGNED(int16_t, uint16_t); -R123_MK_SIGNED_UNSIGNED(int32_t, uint32_t); -R123_MK_SIGNED_UNSIGNED(int64_t, uint64_t); -#if R123_USE_GNU_UINT128 -R123_MK_SIGNED_UNSIGNED(__int128_t, __uint128_t); -#endif -#undef R123_MK_SIGNED_UNSIGNED -#endif - -#if defined(_LIBCPP_HAS_NO_CONSTEXPR) -// Amazing! cuda thinks numeric_limits::max() is a __host__ function, so -// we can't use it in a device function. -// -// The LIBCPP_HAS_NO_CONSTEXP test catches situations where the libc++ -// library thinks that the compiler doesn't support constexpr, but we -// think it does. As a consequence, the library declares -// numeric_limits::max without constexpr. This workaround should only -// affect a narrow range of compiler/library pairings. -// -// In both cases, we find max() by computing ~(unsigned)0 right-shifted -// by is_signed. -template -R123_CONSTEXPR R123_STATIC_INLINE R123_CUDA_DEVICE T maxTvalue(){ - typedef typename make_unsigned::type uT; - return (~uT(0)) >> std::numeric_limits::is_signed; - } -#else -template -R123_CONSTEXPR R123_STATIC_INLINE T maxTvalue(){ - return std::numeric_limits::max(); -} -#endif -/** @endcond - @} - */ - -//! Return a uniform real value in (0, 1] -/** - @ingroup uniform - Input is a W-bit integer (signed or unsigned). It is cast to - a W-bit unsigned integer, multiplied by Ftype(2^-W) and added to - Ftype(2^(-W-1)). A good compiler should optimize it down to an - int-to-float conversion followed by a multiply and an add, which - might be fused, depending on the architecture. - - If the input is a uniformly distributed integer, and if Ftype - arithmetic follows IEEE754 round-to-nearest rules, then the - result is a uniformly distributed floating point number in (0, 1]. - -- The result is never exactly 0.0. -- The smallest value returned is 2^-(W-1). -- Let M be the number of mantissa bits in Ftype (typically 24 or 53). - - If W>M then the largest value retured is 1.0. - - If W<=M then the largest value returned is Ftype(1.0 - 2^(-W-1)). -*/ -template -R123_CUDA_DEVICE R123_STATIC_INLINE Ftype u01(Itype in){ - typedef typename make_unsigned::type Utype; - R123_CONSTEXPR Ftype factor = Ftype(1.)/(maxTvalue() + Ftype(1.)); - R123_CONSTEXPR Ftype halffactor = Ftype(0.5)*factor; -#if R123_UNIFORM_FLOAT_STORE - volatile Ftype x = Utype(in)*factor; return x+halffactor; -#else - return Utype(in)*factor + halffactor; -#endif -} - -//! Return a signed value in [-1,1] -/** - @ingroup uniform - The argument is converted to a W-bit signed integer, multiplied by Ftype(2^-(W-1)) and - then added to Ftype(2^-W). A good compiler should optimize - it down to an int-to-float conversion followed by a multiply and - an add, which might be fused, depending on the architecture. - - If the input is a uniformly distributed integer, and if Ftype - arithmetic follows IEEE754 round-to-nearest rules, then the - output is a uniformly distributed floating point number in [-1, 1]. - -- The result is never exactly 0.0. -- The smallest absolute value returned is 2^-W -- Let M be the number of mantissa bits in Ftype. - - If W>M then the largest value retured is 1.0 and the smallest is -1.0. - - If W<=M then the largest value returned is the Ftype(1.0 - 2^-W) - and the smallest value returned is -Ftype(1.0 - 2^-W). -*/ -template -R123_CUDA_DEVICE R123_STATIC_INLINE Ftype uneg11(Itype in){ - typedef typename make_signed::type Stype; - R123_CONSTEXPR Ftype factor = Ftype(1.)/(maxTvalue() + Ftype(1.)); - R123_CONSTEXPR Ftype halffactor = Ftype(0.5)*factor; -#if R123_UNIFORM_FLOAT_STORE - volatile Ftype x = Stype(in)*factor; return x+halffactor; -#else - return Stype(in)*factor + halffactor; -#endif -} - -//! Return a value in (0,1) chosen from a set of equally spaced fixed-point values -/** - @ingroup uniform - Let: - - W = width of Itype, e.g., 32 or 64, regardless of signedness. - - M = mantissa bits of Ftype, e.g., 24, 53 or 64 - - B = min(M, W) - - Then the 2^(B-1) possible output values are: 2^-B*{1, 3, 5, ..., 2^B - 1} - - The smallest output is: 2^-B - - The largest output is: 1 - 2^-B - - The output is never exactly 0.0, nor 0.5, nor 1.0. - - The 2^(B-1) possible outputs: - - are equally likely, - - are uniformly spaced by 2^-(B-1), - - are balanced around 0.5 -*/ -template -R123_CUDA_DEVICE R123_STATIC_INLINE Ftype u01fixedpt(Itype in){ - typedef typename make_unsigned::type Utype; - R123_CONSTEXPR int excess = std::numeric_limits::digits - std::numeric_limits::digits; - if(excess>=0){ - R123_CONSTEXPR int ex_nowarn = (excess>=0) ? excess : 0; - R123_CONSTEXPR Ftype factor = Ftype(1.)/(Ftype(1.) + ((maxTvalue()>>ex_nowarn))); - return (1 | (Utype(in)>>ex_nowarn)) * factor; - }else - return u01(in); -} - -#if R123_USE_CXX11_STD_ARRAY - -//! Apply u01 to every item in an r123array, returning a std::array -/** @ingroup uniform - * Only in C++11 and newer. - * The argument type may be any integer collection with a constexpr static_size member, - * e.g., an r123array or a std::array of an integer type. - */ -template -static inline -std::array u01all(CollType in) -{ - std::array ret; - size_t i=0; - for(auto e : in){ - ret[i++] = u01(e); - } - return ret; -} - -//! Apply uneg11 to every item in an r123array, returning a std::array -/** @ingroup uniform - * Only in C++11 and newer. - * The argument type may be any integer collection with a constexpr static_size member, - * e.g., an r123array or a std::array of an integer type. - */ -template -static inline -std::array uneg11all(CollType in) -{ - std::array ret; - size_t i=0; - for(auto e : in){ - ret[i++] = uneg11(e); - } - return ret; -} - -//! Apply u01fixedpt to every item in an r123array, returning a std::array -/** @ingroup uniform - * Only in C++11 and newer. - * The argument type may be any integer collection with a constexpr static_size member, - * e.g., an r123array or a std::array of an integer type. -*/ -template -static inline -std::array u01fixedptall(CollType in) -{ - std::array ret; - size_t i=0; - for(auto e : in){ - ret[i++] = u01fixedpt(e); - } - return ret; -} -#endif // __cplusplus >= 201103L - -} // namespace r123 - -#endif - diff --git a/mechanisms/BuildModules.cmake b/mechanisms/BuildModules.cmake index 3aadf9fcb4..83b8467cbb 100644 --- a/mechanisms/BuildModules.cmake +++ b/mechanisms/BuildModules.cmake @@ -123,11 +123,17 @@ function("make_catalogue") list(APPEND catalogue_${MK_CAT_NAME}_source ${MK_CAT_OUT_DIR}/${mech}_gpu.cpp ${MK_CAT_OUT_DIR}/${mech}_gpu.cu) endif() endforeach() + set(${MK_CAT_OUTPUT} ${catalogue_${MK_CAT_NAME}_source} PARENT_SCOPE) if(${MK_CAT_STANDALONE}) add_library(${MK_CAT_NAME}-catalogue SHARED ${catalogue_${MK_CAT_NAME}_source}) target_compile_definitions(${MK_CAT_NAME}-catalogue PUBLIC STANDALONE=1) + + if(ARB_WITH_GPU) + target_compile_definitions(${MK_CAT_NAME}-catalogue PUBLIC ARB_GPU_ENABLED) + endif() + target_compile_options(${MK_CAT_NAME}-catalogue PUBLIC ${MK_CAT_CXX_FLAGS_TARGET}) set_target_properties(${MK_CAT_NAME}-catalogue PROPERTIES diff --git a/mechanisms/CMakeLists.txt b/mechanisms/CMakeLists.txt index a219475fac..97dbf7e336 100644 --- a/mechanisms/CMakeLists.txt +++ b/mechanisms/CMakeLists.txt @@ -27,7 +27,7 @@ make_catalogue( NAME default SOURCES "${CMAKE_CURRENT_SOURCE_DIR}/default" OUTPUT "CAT_DEFAULT_SOURCES" - MOD exp2syn expsyn expsyn_stdp hh kamt kdrmt nax nernst pas gj + MOD exp2syn expsyn expsyn_curr expsyn_stdp hh kamt kdrmt nax nernst pas gj decay inject CXX PREFIX "${PROJECT_SOURCE_DIR}/mechanisms" CXX_FLAGS_TARGET "${ARB_CXX_FLAGS_TARGET_FULL}" diff --git a/mechanisms/default/decay.mod b/mechanisms/default/decay.mod new file mode 100644 index 0000000000..3dadbb834b --- /dev/null +++ b/mechanisms/default/decay.mod @@ -0,0 +1,21 @@ +NEURON { + SUFFIX decay + USEION x WRITE xd + RANGE F, tau +} + +PARAMETER { tau = 5 } + +INITIAL { F = xd } + +STATE { F } + +BREAKPOINT { + SOLVE dF METHOD cnexp + xd = F +} + +DERIVATIVE dF { + F = xd + F' = -tau*F +} diff --git a/mechanisms/default/exp2syn.mod b/mechanisms/default/exp2syn.mod index 591fcbca8a..3be17ba267 100644 --- a/mechanisms/default/exp2syn.mod +++ b/mechanisms/default/exp2syn.mod @@ -14,13 +14,9 @@ PARAMETER { e = 0 (mV) } -ASSIGNED { - factor -} +ASSIGNED { factor } -STATE { - A B -} +STATE { A B } INITIAL { LOCAL tp diff --git a/mechanisms/default/expsyn.mod b/mechanisms/default/expsyn.mod index 1ac2f3e55e..3e718df60d 100644 --- a/mechanisms/default/expsyn.mod +++ b/mechanisms/default/expsyn.mod @@ -21,7 +21,7 @@ STATE { } INITIAL { - g=0 + g = 0 } BREAKPOINT { diff --git a/mechanisms/default/expsyn_curr.mod b/mechanisms/default/expsyn_curr.mod new file mode 100644 index 0000000000..2086e6708f --- /dev/null +++ b/mechanisms/default/expsyn_curr.mod @@ -0,0 +1,46 @@ +: Exponential current-based synapse + +NEURON { + POINT_PROCESS expsyn_curr + RANGE w, tau, R_mem + NONSPECIFIC_CURRENT I +} + +UNITS { + (ms) = (milliseconds) + (mV) = (millivolt) + (MOhm) = (megaohm) +} + +PARAMETER { + R_mem = 10.0 (MOhm) : membrane resistance + tau = 5.0 (ms) : synaptic time constant + w = 4.20075 (mV) : weight +} + +STATE { + g (mV) : instantaneous synaptic conductance +} + +INITIAL { + g = 0 +} + +BREAKPOINT { + SOLVE state METHOD sparse : to match with expsyn_curr_calcium_plasticity + + I = -g / R_mem +} + +DERIVATIVE state { + : Exponential decay of postsynaptic potential + g' = -g / tau +} + +NET_RECEIVE(weight) { + if (weight >= 0) { + : Start of postsynaptic potential + g = g + w + } +} + diff --git a/mechanisms/default/gj.mod b/mechanisms/default/gj.mod index 00d72cf82f..ab3927d709 100644 --- a/mechanisms/default/gj.mod +++ b/mechanisms/default/gj.mod @@ -3,11 +3,10 @@ NEURON { NONSPECIFIC_CURRENT i RANGE g } + INITIAL {} -PARAMETER { - g = 1 -} +PARAMETER { g = 1 } BREAKPOINT { i = g*(v - v_peer) diff --git a/mechanisms/default/hh.mod b/mechanisms/default/hh.mod index 1c26322e1d..9c64142fb7 100644 --- a/mechanisms/default/hh.mod +++ b/mechanisms/default/hh.mod @@ -25,13 +25,12 @@ ASSIGNED { q10 } BREAKPOINT { SOLVE states METHOD cnexp - LOCAL gk, m_, n_, n2 + LOCAL gk, gna, n2 - n_ = n - m_ = m - n2 = n_*n_ + n2 = n*n gk = gkbar*n2*n2 - ina = gnabar*m_*m_*m_*h*(v - ena) + gna = gnabar*m*m*m*h + ina = gna*(v - ena) ik = gk*(v - ek) il = gl*(v - el) } @@ -54,6 +53,7 @@ INITIAL { : potassium activation system alpha = n_alpha(v) beta = n_beta(v) + n = alpha/(alpha + beta) } diff --git a/mechanisms/default/inject.mod b/mechanisms/default/inject.mod new file mode 100644 index 0000000000..5eb469cc71 --- /dev/null +++ b/mechanisms/default/inject.mod @@ -0,0 +1,20 @@ +NEURON { + POINT_PROCESS inject + USEION x WRITE xd + RANGE alpha, beta +} + +ASSIGNED { beta } + +PARAMETER { alpha = 200 } + +INITIAL { beta = 0 } + +BREAKPOINT { + xd = xd + beta + beta = 0 +} + +NET_RECEIVE(weight) { + beta = alpha*weight +} diff --git a/mechanisms/default/kamt.mod b/mechanisms/default/kamt.mod index e218e8b3f8..3fbba9b615 100644 --- a/mechanisms/default/kamt.mod +++ b/mechanisms/default/kamt.mod @@ -6,33 +6,29 @@ TITLE K-A : ik has units (mA/cm2) NEURON { - THREADSAFE SUFFIX kamt USEION k READ ek WRITE ik - RANGE gbar, q10 - GLOBAL minf, mtau, hinf, htau + RANGE gbar } PARAMETER { - gbar = 0.002 (mho/cm2) + gbar = 0.002 (mho/cm2) celsius - a0m=0.04 - vhalfm=-45 - zetam=0.1 - gmm=0.75 - - a0h=0.018 - vhalfh=-70 - zetah=0.2 - gmh=0.99 - - sha=9.9 - shi=5.7 - q10=3 + a0m = 0.04 + vhalfm = -45 + zetam = 0.1 + gmm = 0.75 + + a0h = 0.018 + vhalfh = -70 + zetah = 0.2 + gmh = 0.99 + + sha = 9.9 + shi = 5.7 } - UNITS { (mA) = (milliamp) (mV) = (millivolt) @@ -40,18 +36,9 @@ UNITS { (um) = (micron) } -ASSIGNED { - v (mV) - minf - mtau (ms) - hinf - htau (ms) -} +ASSIGNED { v (mV) } -STATE { - m - h -} +STATE { m h } BREAKPOINT { SOLVE states METHOD cnexp @@ -59,40 +46,21 @@ BREAKPOINT { } INITIAL { - trates(v,celsius) - m=minf - h=hinf + m = minf(v) + h = hinf(v) } DERIVATIVE states { - trates(v,celsius) - m' = (minf-m)/mtau - h' = (hinf-h)/htau -} - -PROCEDURE trates(v,celsius) { LOCAL qt - qt=q10^((celsius-24)/10) - - minf = 1/(1 + exp(-(v-sha-7.6)/14)) - mtau = betm(v)/(qt*a0m*(1+alpm(v))) - - hinf = 1/(1 + exp((v-shi+47.4)/6)) - htau = beth(v)/(qt*a0h*(1+alph(v))) -} - -FUNCTION alpm(v) { - alpm = exp(zetam*(v-vhalfm)) + qt = 3^((celsius-24)/10) + m' = (minf(v) - m)*qt*a0m*(1 + alpm(v))/betm(v) + h' = (hinf(v) - h)*qt*a0h*(1 + alph(v))/beth(v) } -FUNCTION betm(v) { - betm = exp(zetam*gmm*(v-vhalfm)) -} +FUNCTION minf(v) { minf = 1/(1 + exp(-(v-sha-7.6)/14)) } +FUNCTION hinf(v) { hinf = 1/(1 + exp((v-shi+47.4)/6)) } -FUNCTION alph(v) { - alph = exp(zetah*(v-vhalfh)) -} - -FUNCTION beth(v) { - beth = exp(zetah*gmh*(v-vhalfh)) -} +FUNCTION alpm(v) { alpm = exp(zetam*(v - vhalfm)) } +FUNCTION betm(v) { betm = exp(zetam*gmm*(v - vhalfm)) } +FUNCTION alph(v) { alph = exp(zetah*(v - vhalfh)) } +FUNCTION beth(v) { beth = exp(zetah*gmh*(v - vhalfh)) } diff --git a/mechanisms/default/kdrmt.mod b/mechanisms/default/kdrmt.mod index 86a697a051..e7ccae312a 100644 --- a/mechanisms/default/kdrmt.mod +++ b/mechanisms/default/kdrmt.mod @@ -9,21 +9,19 @@ NEURON { THREADSAFE SUFFIX kdrmt USEION k READ ek WRITE ik - RANGE gbar, q10, vhalfm - GLOBAL minf, mtau + RANGE gbar, vhalfm } PARAMETER { - gbar = 0.002 (mho/cm2) - + gbar = 0.002 (mho/cm2) celsius - a0m=0.0035 - vhalfm=-50 - zetam=0.055 - gmm=0.5 - q10=3 - alpm=0 - betm=0 + a0m = 0.0035 + vhalfm = -50 + zetam = 0.055 + gmm = 0.5 + q10 = 3 + alpm = 0 + betm = 0 } @@ -34,39 +32,27 @@ UNITS { (um) = (micron) } -ASSIGNED { - v (mV) - minf - mtau (ms) -} +ASSIGNED { v(mV) } -STATE { - m -} +STATE { m } BREAKPOINT { SOLVE states METHOD cnexp - ik = gbar*m*(v - ek) + LOCAL gk + gk = gbar*m + ik = gk*(v - ek) } INITIAL { - trates(v,celsius) - m=minf + m = minf(v) } DERIVATIVE states { - trates(v,celsius) - m' = (minf-m)/mtau -} + LOCAL qt, tmp -PROCEDURE trates(v,celsius) { - LOCAL qt - LOCAL alpm_t, betm_t - LOCAL tmp - qt=q10^((celsius-24)/10) - minf = 1/(1 + exp(-(v-21)/10)) - tmp = zetam*(v-vhalfm) - alpm_t = exp(tmp) - betm_t = exp(gmm*tmp) - mtau = betm_t/(qt*a0m*(1+alpm_t)) + qt = q10^(0.1*(celsius - 24)) + tmp = zetam*(v - vhalfm) + m' = qt*a0m*(1 + exp(tmp))*(minf(v) - m)*exp(-gmm*tmp) } + +FUNCTION minf(v) { minf = 1/(1 + exp((21 - v)/10)) } diff --git a/mechanisms/default/nax.mod b/mechanisms/default/nax.mod index 911b835597..11a789b3d7 100644 --- a/mechanisms/default/nax.mod +++ b/mechanisms/default/nax.mod @@ -10,26 +10,26 @@ NEURON { } PARAMETER { - sh = 5 (mV) - gbar = 0.010 (mho/cm2) - - tha = -30 (mV) : v 1/2 for act - qa = 7.2 (mV) : act slope (4.5) - Ra = 0.4 (/ms) : open (v) - Rb = 0.124 (/ms) : close (v) - - thi1 = -45 (mV) : v 1/2 for inact - thi2 = -45 (mV) : v 1/2 for inact - qd = 1.5 (mV) : inact tau slope - qg = 1.5 (mV) - mmin=0.02 - hmin=0.5 - q10=2 - Rg = 0.01 (/ms) : inact recov (v) - Rd = .03 (/ms) : inact (v) - - thinf = -50 (mV) : inact inf slope - qinf = 4 (mV) : inact inf slope + sh = 5 (mV) + gbar = 0.010 (mho/cm2) + + tha = -30 (mV) : v 1/2 for act + qa = 7.2 (mV) : act slope (4.5) + Ra = 0.4 (/ms) : open (v) + Rb = 0.124 (/ms) : close (v) + + thi1 = -45 (mV) : v 1/2 for inact + thi2 = -45 (mV) : v 1/2 for inact + qd = 1.5 (mV) : inact tau slope + qg = 1.5 (mV) + mmin = 0.02 + hmin = 0.5 + q10 = 2 + Rg = 0.01 (/ms) : inact recov (v) + Rd = .03 (/ms) : inact (v) + + thinf = -50 (mV) : inact inf slope + qinf = 4 (mV) : inact inf slope celsius } @@ -42,53 +42,51 @@ UNITS { (um) = (micron) } -ASSIGNED { - v (mV) - thegna (mho/cm2) - minf - hinf - mtau (ms) - htau (ms) -} +ASSIGNED { v (mV) } -STATE { - m - h -} +STATE { m h } BREAKPOINT { SOLVE states METHOD cnexp - thegna = gbar*m*m*m*h - ina = thegna * (v - ena) + LOCAL gna + gna = gbar*m*m*m*h + ina = gna * (v - ena) } INITIAL { - trates(v,sh,celsius) - m=minf - h=hinf + LOCAL a, b, u + + u = tha + sh - v + a = trap0( u, Ra, qa) + b = trap0(-u, Rb, qa) + m = a/(a + b) + + u = thi1 + sh - v + a = trap0( u, Rd, qd) + b = trap0(-u, Rg, qg) + h = 1/(1 + exp((v - thinf - sh)/qinf)) + } DERIVATIVE states { - trates(v,sh,celsius) - m' = (minf-m)/mtau - h' = (hinf-h)/htau -} + LOCAL a, b, u, qt, hinf, minf, htau, mtau, iq -PROCEDURE trates(vm,sh2,celsius) { - LOCAL a, b, qt - qt=q10^((celsius-24)/10) - a = trap0(vm,tha+sh2,Ra,qa) - b = trap0(-vm,-tha-sh2,Rb,qa) - mtau = max(1/(a+b)/qt, mmin) - minf = a/(a+b) - - a = trap0(vm,thi1+sh2,Rd,qd) - b = trap0(-vm,-thi2-sh2,Rg,qg) - htau = max(1/(a+b)/qt, hmin) - hinf = 1/(1+exp((vm-thinf-sh2)/qinf)) -} + iq = q10^(-0.1*(celsius - 24)) + + u = tha + sh - v + a = trap0( u, Ra, qa) + b = trap0(-u, Rb, qa) + mtau = max(iq/(a + b), mmin) + minf = a/(a + b) -FUNCTION trap0(v,th,a,q) { - : trap0 = a * (v - th) / (1 - exp(-(v - th)/q)) - trap0 = a*q*exprelr(-(v-th)/q) + u = thi1 + sh - v + a = trap0( u, Rd, qd) + b = trap0(-u, Rg, qg) + htau = max(iq/(a + b), hmin) + hinf = 1/(1 + exp((v - thinf - sh)/qinf)) + + m' = (minf - m)/mtau + h' = (hinf - h)/htau } + +FUNCTION trap0(v, a, q) { trap0 = a*q*exprelr(v/q) } diff --git a/mechanisms/default/nernst.mod b/mechanisms/default/nernst.mod index aca2a7170f..e16042536a 100644 --- a/mechanisms/default/nernst.mod +++ b/mechanisms/default/nernst.mod @@ -16,16 +16,13 @@ PARAMETER { celsius : temperature in °C (set externally) } -ASSIGNED { - coeff -} +ASSIGNED { coeff } INITIAL { - coeff = R*(celsius+273.15)/(zx*F)*1000 + coeff = R*(celsius + 273.15)/(zx*F)*1000 } -STATE { -} +STATE {} BREAKPOINT { ex = coeff*log(xo/xi) diff --git a/mechanisms/generate_catalogue b/mechanisms/generate_catalogue index b0491e5ebf..2a63f7d16e 100755 --- a/mechanisms/generate_catalogue +++ b/mechanisms/generate_catalogue @@ -96,56 +96,69 @@ def generate(catalogue, modpfx='', arbpfx='', modules=[], backends=[], namespace r'''// Automatically generated by: // $cmdline -#include <${arbpfx}mechcat.hpp> -#include <${arbpfx}mechanism.hpp> #include <${arbpfx}mechanism_abi.h> -$backend_includes + $module_includes -namespace arb { +#ifdef STANDALONE +extern "C" { + [[gnu::visibility("default")]] const void* get_catalogue(int* n) { + static arb_mechanism cat[${n_modules}] = { + ${insert_modules} + }; + *n = ${n_modules}; + return (void*)cat; + } +} +#else + +#include <${arbpfx}mechcat.hpp> +#include <${arbpfx}mechanism.hpp> +#include <${arbpfx}assert.hpp> +namespace arb { mechanism_catalogue build_${catalogue}_catalogue() { mechanism_catalogue cat; +#define ADD(make) do { \ + auto mech = make(); \ + auto ty = mech.type(); \ + auto nm = ty.name; \ + auto ig = mech.i_gpu(); \ + auto ic = mech.i_cpu(); \ + arb_assert(ic || ig); \ + cat.add(nm, ty); \ + if (ic) cat.register_implementation(nm, std::make_unique(ty, *ic)); \ + if (ig) cat.register_implementation(nm, std::make_unique(ty, *ig)); \ +} while (false) + $add_modules - $register_modules + +#undef ADD + return cat; } -const mechanism_catalogue& global_${catalogue}_catalogue() { +ARB_ARBOR_API const mechanism_catalogue& global_${catalogue}_catalogue() { static mechanism_catalogue cat = build_${catalogue}_catalogue(); return cat; } - } // namespace arb - -#ifdef STANDALONE -extern "C" { - [[gnu::visibility("default")]] const void* get_catalogue() { - static auto cat = arb::build_${catalogue}_catalogue(); - return (void*)&cat; - } -} #endif ''') def indent(n, lines): return '{{:<{0!s}}}'.format(n+1).format('\n').join(lines) - # TODO: use the commented include list below when private/public - # headers are resolved. - return src.safe_substitute(dict( cmdline=" ".join(sys.argv), arbpfx=arbpfx, catalogue=catalogue, - backend_includes = indent(0, []), - module_includes = indent(0, + module_includes=indent(0, ['#include "{}{}.hpp"'.format(modpfx, m) for m in modules]), - add_modules = indent(4, - [f'cat.add("{mod}", make_arb_{catalogue}_catalogue_{mod}());' for mod in modules]), - register_modules = indent(4, - [f'cat.register_implementation("{mod}", std::make_unique(make_arb_{catalogue}_catalogue_{mod}(), *make_arb_{catalogue}_catalogue_{mod}_interface_{be}()));' for mod in modules for be in backends]) + add_modules=indent(4, [f'ADD(make_arb_{catalogue}_catalogue_{mod});' for mod in modules]), + n_modules=len(modules), + insert_modules=indent(12, [f'make_arb_{catalogue}_catalogue_{mod}(),' for mod in modules]), )) diff --git a/modcc/CMakeLists.txt b/modcc/CMakeLists.txt index 32af1a7379..62fb49f5a6 100644 --- a/modcc/CMakeLists.txt +++ b/modcc/CMakeLists.txt @@ -30,17 +30,31 @@ set(libmodcc_sources set(modcc_sources modcc.cpp) add_library(libmodcc STATIC ${libmodcc_sources}) -target_include_directories(libmodcc PUBLIC .) +target_link_libraries(libmodcc PUBLIC arbor-public-headers) + if (ARB_USE_BUNDLED_FMT) - target_include_directories(libmodcc PRIVATE ../ext/fmt/include) + target_include_directories(libmodcc + PUBLIC + $ + $ + PRIVATE + $) + target_compile_definitions(libmodcc PRIVATE FMT_HEADER_ONLY) -else () +else() + target_include_directories(libmodcc + PUBLIC + $ + $) find_package(fmt REQUIRED) target_link_libraries(libmodcc PRIVATE fmt::fmt-header-only) -endif () +endif() set_target_properties(libmodcc PROPERTIES OUTPUT_NAME modcc) +export_visibility(libmodcc) + + add_executable(modcc ${modcc_sources}) target_link_libraries(modcc PRIVATE libmodcc ext-tinyopt) set_target_properties(modcc libmodcc PROPERTIES EXCLUDE_FROM_ALL ${ARB_WITH_EXTERNAL_MODCC}) diff --git a/modcc/astmanip.cpp b/modcc/astmanip.cpp index 4d58b09226..040e340ab8 100644 --- a/modcc/astmanip.cpp +++ b/modcc/astmanip.cpp @@ -12,7 +12,7 @@ static std::string unique_local_name(scope_ptr scope, std::string const& prefix) } } -local_assignment make_unique_local_assign(scope_ptr scope, Expression* e, std::string const& prefix) { +ARB_LIBMODCC_API local_assignment make_unique_local_assign(scope_ptr scope, Expression* e, std::string const& prefix) { Location loc = e->location(); std::string name = unique_local_name(scope, prefix); @@ -28,7 +28,7 @@ local_assignment make_unique_local_assign(scope_ptr scope, Expression* e, std::s return { std::move(local), std::move(ass), std::move(id), scope }; } -local_declaration make_unique_local_decl(scope_ptr scope, Location loc, std::string const& prefix) { +ARB_LIBMODCC_API local_declaration make_unique_local_decl(scope_ptr scope, Location loc, std::string const& prefix) { std::string name = unique_local_name(scope, prefix); auto local = make_expression(loc, name); diff --git a/modcc/astmanip.hpp b/modcc/astmanip.hpp index e42586ff9b..0e961b8bb7 100644 --- a/modcc/astmanip.hpp +++ b/modcc/astmanip.hpp @@ -7,6 +7,7 @@ #include "expression.hpp" #include "location.hpp" #include "scope.hpp" +#include // Create new local variable symbol and local declaration expression in current scope. // Returns the local declaration expression. @@ -17,7 +18,7 @@ struct local_declaration { scope_ptr scope; }; -local_declaration make_unique_local_decl( +ARB_LIBMODCC_API local_declaration make_unique_local_decl( scope_ptr scope, Location loc, std::string const& prefix="ll"); @@ -34,7 +35,7 @@ struct local_assignment { scope_ptr scope; }; -local_assignment make_unique_local_assign( +ARB_LIBMODCC_API local_assignment make_unique_local_assign( scope_ptr scope, Expression* e, std::string const& prefix="ll"); diff --git a/modcc/blocks.cpp b/modcc/blocks.cpp index bc9d57ec25..8e979ca596 100644 --- a/modcc/blocks.cpp +++ b/modcc/blocks.cpp @@ -18,7 +18,7 @@ std::ostream& operator<<(std::ostream& os, const std::vector& v) { return os; } -std::ostream& operator<<(std::ostream& os, Id const& V) { +ARB_LIBMODCC_API std::ostream& operator<<(std::ostream& os, Id const& V) { if(V.units.size()) os << "(" << V.token << "," << V.value << "," << V.units << ")"; else @@ -27,19 +27,19 @@ std::ostream& operator<<(std::ostream& os, Id const& V) { return os; } -std::ostream& operator<<(std::ostream& os, UnitsBlock::units_pair const& p) { +ARB_LIBMODCC_API std::ostream& operator<<(std::ostream& os, UnitsBlock::units_pair const& p) { return os << "(" << p.first << ", " << p.second << ")"; } -std::ostream& operator<<(std::ostream& os, IonDep const& I) { +ARB_LIBMODCC_API std::ostream& operator<<(std::ostream& os, IonDep const& I) { return os << "(" << I.name << ": read " << I.read << " write " << I.write << ")"; } -std::ostream& operator<<(std::ostream& os, moduleKind const& k) { +ARB_LIBMODCC_API std::ostream& operator<<(std::ostream& os, moduleKind const& k) { return os << (k==moduleKind::density ? "density" : "point process"); } -std::ostream& operator<<(std::ostream& os, NeuronBlock const& N) { +ARB_LIBMODCC_API std::ostream& operator<<(std::ostream& os, NeuronBlock const& N) { os << blue("NeuronBlock") << std::endl; os << " kind : " << N.kind << std::endl; os << " name : " << N.name << std::endl; @@ -51,27 +51,27 @@ std::ostream& operator<<(std::ostream& os, NeuronBlock const& N) { return os; } -std::ostream& operator<<(std::ostream& os, StateBlock const& B) { +ARB_LIBMODCC_API std::ostream& operator<<(std::ostream& os, StateBlock const& B) { os << blue("StateBlock") << std::endl; return os << " variables : " << B.state_variables << std::endl; } -std::ostream& operator<<(std::ostream& os, UnitsBlock const& U) { +ARB_LIBMODCC_API std::ostream& operator<<(std::ostream& os, UnitsBlock const& U) { os << blue("UnitsBlock") << std::endl; os << " aliases : " << U.unit_aliases << std::endl; return os; } -std::ostream& operator<<(std::ostream& os, ParameterBlock const& P) { +ARB_LIBMODCC_API std::ostream& operator<<(std::ostream& os, ParameterBlock const& P) { os << blue("ParameterBlock") << std::endl; os << " parameters : " << P.parameters << std::endl; return os; } -std::ostream& operator<<(std::ostream& os, AssignedBlock const& A) { +ARB_LIBMODCC_API std::ostream& operator<<(std::ostream& os, AssignedBlock const& A) { os << blue("AssignedBlock") << std::endl; os << " parameters : " << A.parameters << std::endl; diff --git a/modcc/blocks.hpp b/modcc/blocks.hpp index df77a04939..ff0f0b138f 100644 --- a/modcc/blocks.hpp +++ b/modcc/blocks.hpp @@ -8,6 +8,7 @@ #include "identifier.hpp" #include "location.hpp" #include "token.hpp" +#include // describes a relationship with an ion channel struct IonDep { @@ -31,6 +32,9 @@ struct IonDep { bool uses_concentration_int() const { return has_variable(name + "i"); }; + bool uses_concentration_diff() const { + return has_variable(name + "d"); + }; bool uses_concentration_ext() const { return has_variable(name + "o"); }; @@ -161,20 +165,20 @@ struct AssignedBlock { // helpers for pretty printing block information //////////////////////////////////////////////// -std::ostream& operator<<(std::ostream& os, Id const& V); +ARB_LIBMODCC_API std::ostream& operator<<(std::ostream& os, Id const& V); -std::ostream& operator<<(std::ostream& os, UnitsBlock::units_pair const& p); +ARB_LIBMODCC_API std::ostream& operator<<(std::ostream& os, UnitsBlock::units_pair const& p); -std::ostream& operator<<(std::ostream& os, IonDep const& I); +ARB_LIBMODCC_API std::ostream& operator<<(std::ostream& os, IonDep const& I); -std::ostream& operator<<(std::ostream& os, moduleKind const& k); +ARB_LIBMODCC_API std::ostream& operator<<(std::ostream& os, moduleKind const& k); -std::ostream& operator<<(std::ostream& os, NeuronBlock const& N); +ARB_LIBMODCC_API std::ostream& operator<<(std::ostream& os, NeuronBlock const& N); -std::ostream& operator<<(std::ostream& os, StateBlock const& B); +ARB_LIBMODCC_API std::ostream& operator<<(std::ostream& os, StateBlock const& B); -std::ostream& operator<<(std::ostream& os, UnitsBlock const& U); +ARB_LIBMODCC_API std::ostream& operator<<(std::ostream& os, UnitsBlock const& U); -std::ostream& operator<<(std::ostream& os, ParameterBlock const& P); +ARB_LIBMODCC_API std::ostream& operator<<(std::ostream& os, ParameterBlock const& P); -std::ostream& operator<<(std::ostream& os, AssignedBlock const& A); +ARB_LIBMODCC_API std::ostream& operator<<(std::ostream& os, AssignedBlock const& A); diff --git a/modcc/error.hpp b/modcc/error.hpp index e66fc45478..919d124884 100644 --- a/modcc/error.hpp +++ b/modcc/error.hpp @@ -71,6 +71,3 @@ class compiler_exception : public std::exception { private: error_entry error_info_; }; - - - diff --git a/modcc/errorvisitor.hpp b/modcc/errorvisitor.hpp index c9b633857b..c12cfe6617 100644 --- a/modcc/errorvisitor.hpp +++ b/modcc/errorvisitor.hpp @@ -3,8 +3,9 @@ #include #include "visitor.hpp" #include "expression.hpp" +#include -class ErrorVisitor : public Visitor { +class ARB_LIBMODCC_API ErrorVisitor : public Visitor { public: ErrorVisitor(std::string const& m) : module_name_(m) diff --git a/modcc/expression.cpp b/modcc/expression.cpp index 8cb81f7106..8eb9fab2bf 100644 --- a/modcc/expression.cpp +++ b/modcc/expression.cpp @@ -1147,7 +1147,7 @@ void CompartmentExpression::accept(Visitor *v) { v->visit(this); } -expression_ptr unary_expression( Location loc, +ARB_LIBMODCC_API expression_ptr unary_expression( Location loc, tok op, expression_ptr&& e ) @@ -1178,7 +1178,7 @@ expression_ptr unary_expression( Location loc, return nullptr; } -expression_ptr binary_expression( tok op, +ARB_LIBMODCC_API expression_ptr binary_expression( tok op, expression_ptr&& lhs, expression_ptr&& rhs ) @@ -1186,7 +1186,7 @@ expression_ptr binary_expression( tok op, return binary_expression(Location(), op, std::move(lhs), std::move(rhs)); } -expression_ptr binary_expression(Location loc, +ARB_LIBMODCC_API expression_ptr binary_expression(Location loc, tok op, expression_ptr&& lhs, expression_ptr&& rhs diff --git a/modcc/expression.hpp b/modcc/expression.hpp index 280791a7d5..d369e7a99e 100644 --- a/modcc/expression.hpp +++ b/modcc/expression.hpp @@ -11,45 +11,47 @@ #include "identifier.hpp" #include "scope.hpp" #include "token.hpp" +#include #include "io/pprintf.hpp" class Visitor; -class Expression; -class CallExpression; -class BlockExpression; -class IfExpression; -class LocalDeclaration; -class ArgumentExpression; -class FunctionExpression; -class DerivativeExpression; -class PrototypeExpression; -class ProcedureExpression; -class IdentifierExpression; -class NumberExpression; -class IntegerExpression; -class BinaryExpression; -class UnaryExpression; -class AssignmentExpression; -class ConserveExpression; -class LinearExpression; -class ReactionExpression; -class StoichExpression; -class StoichTermExpression; -class CompartmentExpression; -class ConditionalExpression; -class InitialBlock; -class SolveExpression; -class Symbol; -class ConductanceExpression; -class PDiffExpression; -class VariableExpression; -class NetReceiveExpression; -class PostEventExpression; -class APIMethod; -class IndexedVariable; -class LocalVariable; +class ARB_LIBMODCC_API Expression; +struct ARB_LIBMODCC_API ErrorExpression; +class ARB_LIBMODCC_API CallExpression; +class ARB_LIBMODCC_API BlockExpression; +class ARB_LIBMODCC_API IfExpression; +class ARB_LIBMODCC_API LocalDeclaration; +class ARB_LIBMODCC_API ArgumentExpression; +class ARB_LIBMODCC_API FunctionExpression; +class ARB_LIBMODCC_API DerivativeExpression; +class ARB_LIBMODCC_API PrototypeExpression; +class ARB_LIBMODCC_API ProcedureExpression; +class ARB_LIBMODCC_API IdentifierExpression; +class ARB_LIBMODCC_API NumberExpression; +class ARB_LIBMODCC_API IntegerExpression; +class ARB_LIBMODCC_API BinaryExpression; +class ARB_LIBMODCC_API UnaryExpression; +class ARB_LIBMODCC_API AssignmentExpression; +class ARB_LIBMODCC_API ConserveExpression; +class ARB_LIBMODCC_API LinearExpression; +class ARB_LIBMODCC_API ReactionExpression; +class ARB_LIBMODCC_API StoichExpression; +class ARB_LIBMODCC_API StoichTermExpression; +class ARB_LIBMODCC_API CompartmentExpression; +class ARB_LIBMODCC_API ConditionalExpression; +class ARB_LIBMODCC_API InitialBlock; +class ARB_LIBMODCC_API SolveExpression; +class ARB_LIBMODCC_API Symbol; +class ARB_LIBMODCC_API ConductanceExpression; +class ARB_LIBMODCC_API PDiffExpression; +class ARB_LIBMODCC_API VariableExpression; +class ARB_LIBMODCC_API NetReceiveExpression; +class ARB_LIBMODCC_API PostEventExpression; +class ARB_LIBMODCC_API APIMethod; +class ARB_LIBMODCC_API IndexedVariable; +class ARB_LIBMODCC_API LocalVariable; using expression_ptr = std::unique_ptr; using symbol_ptr = std::unique_ptr; @@ -68,10 +70,9 @@ symbol_ptr make_symbol(Args&&... args) { } // helper functions for generating unary and binary expressions -expression_ptr unary_expression(Location, tok, expression_ptr&&); -expression_ptr unary_expression(tok, expression_ptr&&); -expression_ptr binary_expression(Location, tok, expression_ptr&&, expression_ptr&&); -expression_ptr binary_expression(tok, expression_ptr&&, expression_ptr&&); +ARB_LIBMODCC_API expression_ptr unary_expression(Location, tok, expression_ptr&&); +ARB_LIBMODCC_API expression_ptr binary_expression(Location, tok, expression_ptr&&, expression_ptr&&); +ARB_LIBMODCC_API expression_ptr binary_expression(tok, expression_ptr&&, expression_ptr&&); /// specifies special properties of a ProcedureExpression enum class procedureKind { @@ -118,7 +119,7 @@ static std::string to_string(solverMethod m) { return std::string(""); } -class Expression { +class ARB_LIBMODCC_API Expression { public: explicit Expression(Location location) : location_(location) @@ -209,7 +210,21 @@ class Expression { scope_ptr scope_; }; -class Symbol : public Expression { +struct ARB_LIBMODCC_API ErrorExpression : public Expression { + explicit ErrorExpression(Location location): Expression(location) + {} + + std::string to_string() const override { + return "Error" + error_string_; + } + + void accept(Visitor *) override { + throw compiler_exception{"Attempted to visit error expression.", location()}; + } +}; + + +class ARB_LIBMODCC_API Symbol : public Expression { public : Symbol(Location loc, std::string name, symbolKind kind) : Expression(std::move(loc)), @@ -251,7 +266,7 @@ enum class localVariableKind { }; // an identifier -class IdentifierExpression : public Expression { +class ARB_LIBMODCC_API IdentifierExpression : public Expression { public: IdentifierExpression(Location loc, std::string const& spelling) : Expression(loc), spelling_(spelling) @@ -304,7 +319,7 @@ class IdentifierExpression : public Expression { }; // an identifier for a derivative -class DerivativeExpression : public IdentifierExpression { +class ARB_LIBMODCC_API DerivativeExpression : public IdentifierExpression { public: DerivativeExpression(Location loc, std::string const& name) : IdentifierExpression(loc, name) @@ -326,7 +341,7 @@ class DerivativeExpression : public IdentifierExpression { }; // a number -class NumberExpression : public Expression { +class ARB_LIBMODCC_API NumberExpression : public Expression { public: NumberExpression(Location loc, std::string const& value) : Expression(loc), value_(std::stold(value)) @@ -356,7 +371,7 @@ class NumberExpression : public Expression { }; // an integral number -class IntegerExpression : public NumberExpression { +class ARB_LIBMODCC_API IntegerExpression : public NumberExpression { public: IntegerExpression(Location loc, std::string const& value) : NumberExpression(loc, value), integer_(std::stoll(value)) @@ -388,7 +403,7 @@ class IntegerExpression : public NumberExpression { // declaration of a LOCAL variable -class LocalDeclaration : public Expression { +class ARB_LIBMODCC_API LocalDeclaration : public Expression { public: LocalDeclaration(Location loc) : Expression(loc) @@ -417,7 +432,7 @@ class LocalDeclaration : public Expression { }; // declaration of an argument -class ArgumentExpression : public Expression { +class ARB_LIBMODCC_API ArgumentExpression : public Expression { public: ArgumentExpression(Location loc, Token const& tok) : Expression(loc), @@ -447,7 +462,7 @@ class ArgumentExpression : public Expression { }; // variable definition -class VariableExpression : public Symbol { +class ARB_LIBMODCC_API VariableExpression : public Symbol { public: VariableExpression(Location loc, std::string name) : Symbol(loc, std::move(name), symbolKind::variable) @@ -528,7 +543,7 @@ class VariableExpression : public Symbol { // Printers will rewrite reads from or assignments from indexed variables // according to its data source and ion channel. -class IndexedVariable : public Symbol { +class ARB_LIBMODCC_API IndexedVariable : public Symbol { public: IndexedVariable(Location loc, std::string lookup_name, @@ -569,7 +584,7 @@ class IndexedVariable : public Symbol { sourceKind data_source_; }; -class LocalVariable : public Symbol { +class ARB_LIBMODCC_API LocalVariable : public Symbol { public : LocalVariable(Location loc, std::string name, @@ -630,7 +645,7 @@ private : // a SOLVE statement -class SolveExpression : public Expression { +class ARB_LIBMODCC_API SolveExpression : public Expression { public: SolveExpression( Location loc, @@ -685,7 +700,7 @@ class SolveExpression : public Expression { }; // a CONDUCTANCE statement -class ConductanceExpression : public Expression { +class ARB_LIBMODCC_API ConductanceExpression : public Expression { public: ConductanceExpression( Location loc, @@ -729,7 +744,7 @@ class ConductanceExpression : public Expression { // of Expressions surrounded by {} //////////////////////////////////////////////////////////////////////////////// -class BlockExpression : public Expression { +class ARB_LIBMODCC_API BlockExpression : public Expression { protected: expr_list_type statements_; bool is_nested_ = false; @@ -777,7 +792,7 @@ class BlockExpression : public Expression { std::string to_string() const override; }; -class IfExpression : public Expression { +class ARB_LIBMODCC_API IfExpression : public Expression { public: IfExpression(Location loc, expression_ptr&& con, expression_ptr&& tb, expression_ptr&& fb) : Expression(loc), condition_(std::move(con)), true_branch_(std::move(tb)), false_branch_(std::move(fb)) @@ -811,7 +826,7 @@ class IfExpression : public Expression { }; // a proceduce prototype -class PrototypeExpression : public Expression { +class ARB_LIBMODCC_API PrototypeExpression : public Expression { public: PrototypeExpression( Location loc, @@ -877,7 +892,7 @@ class ReactionExpression : public Expression { expression_ptr rev_rate_; }; -class CompartmentExpression : public Expression { +class ARB_LIBMODCC_API CompartmentExpression : public Expression { public: CompartmentExpression(Location loc, expression_ptr&& scale_factor, @@ -904,7 +919,7 @@ class CompartmentExpression : public Expression { std::vector state_vars_; }; -class StoichTermExpression : public Expression { +class ARB_LIBMODCC_API StoichTermExpression : public Expression { public: StoichTermExpression(Location loc, expression_ptr&& coeff, @@ -938,7 +953,7 @@ class StoichTermExpression : public Expression { expression_ptr ident_; }; -class StoichExpression : public Expression { +class ARB_LIBMODCC_API StoichExpression : public Expression { public: StoichExpression(Location loc, std::vector&& terms) : Expression(loc), terms_(std::move(terms)) @@ -964,7 +979,7 @@ class StoichExpression : public Expression { // marks a call site in the AST // is used to mark both function and procedure calls -class CallExpression : public Expression { +class ARB_LIBMODCC_API CallExpression : public Expression { public: CallExpression(Location loc, std::string spelling, std::vector&& args) : Expression(loc), spelling_(std::move(spelling)), args_(std::move(args)) @@ -1010,7 +1025,7 @@ class CallExpression : public Expression { std::vector args_; }; -class ProcedureExpression : public Symbol { +class ARB_LIBMODCC_API ProcedureExpression : public Symbol { public: ProcedureExpression( Location loc, std::string name, @@ -1063,7 +1078,7 @@ class ProcedureExpression : public Symbol { procedureKind kind_ = procedureKind::normal; }; -class APIMethod : public ProcedureExpression { +class ARB_LIBMODCC_API APIMethod : public ProcedureExpression { public: APIMethod( Location loc, std::string name, @@ -1082,7 +1097,7 @@ class APIMethod : public ProcedureExpression { /// stores the INITIAL block in a NET_RECEIVE block, if there is one /// should not be used anywhere but NET_RECEIVE -class InitialBlock : public BlockExpression { +class ARB_LIBMODCC_API InitialBlock : public BlockExpression { public: InitialBlock( Location loc, @@ -1102,7 +1117,7 @@ class InitialBlock : public BlockExpression { }; /// handle NetReceiveExpressions as a special case of ProcedureExpression -class NetReceiveExpression : public ProcedureExpression { +class ARB_LIBMODCC_API NetReceiveExpression : public ProcedureExpression { public: NetReceiveExpression( Location loc, std::string name, @@ -1123,7 +1138,7 @@ class NetReceiveExpression : public ProcedureExpression { }; /// handle PostEventExpression as a special case of ProcedureExpression -class PostEventExpression : public ProcedureExpression { +class ARB_LIBMODCC_API PostEventExpression : public ProcedureExpression { public: PostEventExpression( Location loc, std::string name, @@ -1140,7 +1155,7 @@ class PostEventExpression : public ProcedureExpression { void accept(Visitor *v) override; }; -class FunctionExpression : public Symbol { +class ARB_LIBMODCC_API FunctionExpression : public Symbol { public: FunctionExpression( Location loc, std::string name, @@ -1192,7 +1207,7 @@ class FunctionExpression : public Symbol { //////////////////////////////////////////////////////////// /// Unary expression -class UnaryExpression : public Expression { +class ARB_LIBMODCC_API UnaryExpression : public Expression { protected: expression_ptr expression_; tok op_; @@ -1219,7 +1234,7 @@ class UnaryExpression : public Expression { }; /// negation unary expression, i.e. -x -class NegUnaryExpression : public UnaryExpression { +class ARB_LIBMODCC_API NegUnaryExpression : public UnaryExpression { public: NegUnaryExpression(Location loc, expression_ptr e) : UnaryExpression(loc, tok::minus, std::move(e)) @@ -1229,7 +1244,7 @@ class NegUnaryExpression : public UnaryExpression { }; /// exponential unary expression, i.e. e^x or exp(x) -class ExpUnaryExpression : public UnaryExpression { +class ARB_LIBMODCC_API ExpUnaryExpression : public UnaryExpression { public: ExpUnaryExpression(Location loc, expression_ptr e) : UnaryExpression(loc, tok::exp, std::move(e)) @@ -1239,7 +1254,7 @@ class ExpUnaryExpression : public UnaryExpression { }; // logarithm unary expression, i.e. log_10(x) -class LogUnaryExpression : public UnaryExpression { +class ARB_LIBMODCC_API LogUnaryExpression : public UnaryExpression { public: LogUnaryExpression(Location loc, expression_ptr e) : UnaryExpression(loc, tok::log, std::move(e)) @@ -1249,7 +1264,7 @@ class LogUnaryExpression : public UnaryExpression { }; // absolute value unary expression, i.e. abs(x) -class AbsUnaryExpression : public UnaryExpression { +class ARB_LIBMODCC_API AbsUnaryExpression : public UnaryExpression { public: AbsUnaryExpression(Location loc, expression_ptr e) : UnaryExpression(loc, tok::abs, std::move(e)) @@ -1258,7 +1273,7 @@ class AbsUnaryExpression : public UnaryExpression { void accept(Visitor *v) override; }; -class SafeInvUnaryExpression : public UnaryExpression { +class ARB_LIBMODCC_API SafeInvUnaryExpression : public UnaryExpression { public: SafeInvUnaryExpression(Location loc, expression_ptr e) : UnaryExpression(loc, tok::safeinv, std::move(e)) @@ -1269,7 +1284,7 @@ class SafeInvUnaryExpression : public UnaryExpression { // exprel reciprocal unary expression, // i.e. x/(exp(x)-1)=x/expm1(x) with exprelr(0)=1 -class ExprelrUnaryExpression : public UnaryExpression { +class ARB_LIBMODCC_API ExprelrUnaryExpression : public UnaryExpression { public: ExprelrUnaryExpression(Location loc, expression_ptr e) : UnaryExpression(loc, tok::exprelr, std::move(e)) @@ -1279,7 +1294,7 @@ class ExprelrUnaryExpression : public UnaryExpression { }; // cosine unary expression, i.e. cos(x) -class CosUnaryExpression : public UnaryExpression { +class ARB_LIBMODCC_API CosUnaryExpression : public UnaryExpression { public: CosUnaryExpression(Location loc, expression_ptr e) : UnaryExpression(loc, tok::cos, std::move(e)) @@ -1289,7 +1304,7 @@ class CosUnaryExpression : public UnaryExpression { }; // sin unary expression, i.e. sin(x) -class SinUnaryExpression : public UnaryExpression { +class ARB_LIBMODCC_API SinUnaryExpression : public UnaryExpression { public: SinUnaryExpression(Location loc, expression_ptr e) : UnaryExpression(loc, tok::sin, std::move(e)) @@ -1306,7 +1321,7 @@ class SinUnaryExpression : public UnaryExpression { /// binary expression base class /// never used directly in the AST, instead the specializations that derive from /// it are inserted into the AST. -class BinaryExpression : public Expression { +class ARB_LIBMODCC_API BinaryExpression : public Expression { protected: expression_ptr lhs_; expression_ptr rhs_; @@ -1334,7 +1349,7 @@ class BinaryExpression : public Expression { void accept(Visitor *v) override; }; -class AssignmentExpression : public BinaryExpression { +class ARB_LIBMODCC_API AssignmentExpression : public BinaryExpression { public: AssignmentExpression(Location loc, expression_ptr&& lhs, expression_ptr&& rhs) : BinaryExpression(loc, tok::eq, std::move(lhs), std::move(rhs)) @@ -1347,7 +1362,7 @@ class AssignmentExpression : public BinaryExpression { void accept(Visitor *v) override; }; -class ConserveExpression : public BinaryExpression { +class ARB_LIBMODCC_API ConserveExpression : public BinaryExpression { public: ConserveExpression(Location loc, expression_ptr&& lhs, expression_ptr&& rhs) : BinaryExpression(loc, tok::eq, std::move(lhs), std::move(rhs)) @@ -1361,7 +1376,7 @@ class ConserveExpression : public BinaryExpression { void accept(Visitor *v) override; }; -class LinearExpression : public BinaryExpression { +class ARB_LIBMODCC_API LinearExpression : public BinaryExpression { public: LinearExpression(Location loc, expression_ptr&& lhs, expression_ptr&& rhs) : BinaryExpression(loc, tok::eq, std::move(lhs), std::move(rhs)) @@ -1375,7 +1390,7 @@ class LinearExpression : public BinaryExpression { void accept(Visitor *v) override; }; -class AddBinaryExpression : public BinaryExpression { +class ARB_LIBMODCC_API AddBinaryExpression : public BinaryExpression { public: AddBinaryExpression(Location loc, expression_ptr&& lhs, expression_ptr&& rhs) : BinaryExpression(loc, tok::plus, std::move(lhs), std::move(rhs)) @@ -1384,7 +1399,7 @@ class AddBinaryExpression : public BinaryExpression { void accept(Visitor *v) override; }; -class SubBinaryExpression : public BinaryExpression { +class ARB_LIBMODCC_API SubBinaryExpression : public BinaryExpression { public: SubBinaryExpression(Location loc, expression_ptr&& lhs, expression_ptr&& rhs) : BinaryExpression(loc, tok::minus, std::move(lhs), std::move(rhs)) @@ -1393,7 +1408,7 @@ class SubBinaryExpression : public BinaryExpression { void accept(Visitor *v) override; }; -class MulBinaryExpression : public BinaryExpression { +class ARB_LIBMODCC_API MulBinaryExpression : public BinaryExpression { public: MulBinaryExpression(Location loc, expression_ptr&& lhs, expression_ptr&& rhs) : BinaryExpression(loc, tok::times, std::move(lhs), std::move(rhs)) @@ -1402,7 +1417,7 @@ class MulBinaryExpression : public BinaryExpression { void accept(Visitor *v) override; }; -class DivBinaryExpression : public BinaryExpression { +class ARB_LIBMODCC_API DivBinaryExpression : public BinaryExpression { public: DivBinaryExpression(Location loc, expression_ptr&& lhs, expression_ptr&& rhs) : BinaryExpression(loc, tok::divide, std::move(lhs), std::move(rhs)) @@ -1411,7 +1426,7 @@ class DivBinaryExpression : public BinaryExpression { void accept(Visitor *v) override; }; -class MinBinaryExpression : public BinaryExpression { +class ARB_LIBMODCC_API MinBinaryExpression : public BinaryExpression { public: MinBinaryExpression(Location loc, expression_ptr&& lhs, expression_ptr&& rhs) : BinaryExpression(loc, tok::min, std::move(lhs), std::move(rhs)) @@ -1423,7 +1438,7 @@ class MinBinaryExpression : public BinaryExpression { void accept(Visitor *v) override; }; -class MaxBinaryExpression : public BinaryExpression { +class ARB_LIBMODCC_API MaxBinaryExpression : public BinaryExpression { public: MaxBinaryExpression(Location loc, expression_ptr&& lhs, expression_ptr&& rhs) : BinaryExpression(loc, tok::max, std::move(lhs), std::move(rhs)) @@ -1435,7 +1450,7 @@ class MaxBinaryExpression : public BinaryExpression { void accept(Visitor *v) override; }; -class PowBinaryExpression : public BinaryExpression { +class ARB_LIBMODCC_API PowBinaryExpression : public BinaryExpression { public: PowBinaryExpression(Location loc, expression_ptr&& lhs, expression_ptr&& rhs) : BinaryExpression(loc, tok::pow, std::move(lhs), std::move(rhs)) @@ -1447,7 +1462,7 @@ class PowBinaryExpression : public BinaryExpression { void accept(Visitor *v) override; }; -class ConditionalExpression : public BinaryExpression { +class ARB_LIBMODCC_API ConditionalExpression : public BinaryExpression { public: ConditionalExpression(Location loc, tok op, expression_ptr&& lhs, expression_ptr&& rhs) : BinaryExpression(loc, op, std::move(lhs), std::move(rhs)) @@ -1458,7 +1473,7 @@ class ConditionalExpression : public BinaryExpression { void accept(Visitor *v) override; }; -class PDiffExpression : public Expression { +class ARB_LIBMODCC_API PDiffExpression : public Expression { public: PDiffExpression(Location loc, expression_ptr&& var, expression_ptr&& arg) : Expression(loc), var_(std::move(var)), arg_(std::move(arg)) diff --git a/modcc/functionexpander.cpp b/modcc/functionexpander.cpp index d53e839658..e4dde3f0ca 100644 --- a/modcc/functionexpander.cpp +++ b/modcc/functionexpander.cpp @@ -5,7 +5,7 @@ #include "error.hpp" #include "functionexpander.hpp" -expression_ptr insert_unique_local_assignment(expr_list_type& stmts, Expression* e) { +ARB_LIBMODCC_API expression_ptr insert_unique_local_assignment(expr_list_type& stmts, Expression* e) { auto zero = make_expression(e->location(), 0.); auto exprs = make_unique_local_assign(e->scope(), zero); @@ -34,7 +34,7 @@ expression_ptr insert_unique_local_assignment(expr_list_type& stmts, Expression* // ll0_ = foo(ll1_, y, 1) // a = 2 + ll0_ ///////////////////////////////////////////////////////////////////// -expression_ptr lower_functions(BlockExpression* block) { +ARB_LIBMODCC_API expression_ptr lower_functions(BlockExpression* block) { auto v = std::make_unique(); block->accept(v.get()); return v->as_block(false); diff --git a/modcc/functionexpander.hpp b/modcc/functionexpander.hpp index cfb04b7f4f..7c5671c37d 100644 --- a/modcc/functionexpander.hpp +++ b/modcc/functionexpander.hpp @@ -5,16 +5,17 @@ #include "expression.hpp" #include "scope.hpp" #include "visitor.hpp" +#include // Make a local declaration and assignment for the given expression, // and insert at the front and back respectively of the statement list. // Return the new unique local identifier. -expression_ptr insert_unique_local_assignment(expr_list_type& stmts, Expression* e); +ARB_LIBMODCC_API expression_ptr insert_unique_local_assignment(expr_list_type& stmts, Expression* e); // prototype for lowering function calls and arguments -expression_ptr lower_functions(BlockExpression* block); +ARB_LIBMODCC_API expression_ptr lower_functions(BlockExpression* block); -class FunctionCallLowerer : public BlockRewriterBase { +class ARB_LIBMODCC_API FunctionCallLowerer : public BlockRewriterBase { public: using BlockRewriterBase::visit; diff --git a/modcc/functioninliner.cpp b/modcc/functioninliner.cpp index ddfcbf6283..6d727e7f29 100644 --- a/modcc/functioninliner.cpp +++ b/modcc/functioninliner.cpp @@ -17,7 +17,7 @@ // argument renaming. This means that if a local variable shadows a function // argument, the local variable takes precedence. -expression_ptr inline_function_calls(std::string calling_func, BlockExpression* block) { +ARB_LIBMODCC_API expression_ptr inline_function_calls(std::string calling_func, BlockExpression* block) { auto inline_block = block->clone(); // The function inliner will inline one function at a time diff --git a/modcc/functioninliner.hpp b/modcc/functioninliner.hpp index ba4bada981..2fac9a72cb 100644 --- a/modcc/functioninliner.hpp +++ b/modcc/functioninliner.hpp @@ -4,10 +4,11 @@ #include "scope.hpp" #include "visitor.hpp" +#include -expression_ptr inline_function_calls(std::string calling_func, BlockExpression* block); +ARB_LIBMODCC_API expression_ptr inline_function_calls(std::string calling_func, BlockExpression* block); -class FunctionInliner : public BlockRewriterBase { +class ARB_LIBMODCC_API FunctionInliner : public BlockRewriterBase { public: using BlockRewriterBase::visit; FunctionInliner(std::string calling_func) : BlockRewriterBase(), calling_func_(calling_func) {}; @@ -61,4 +62,4 @@ class FunctionInliner : public BlockRewriterBase { inlining_executed_ = false; BlockRewriterBase::reset(); } -}; \ No newline at end of file +}; diff --git a/modcc/identifier.hpp b/modcc/identifier.hpp index dd31222f1e..47c835f0f9 100644 --- a/modcc/identifier.hpp +++ b/modcc/identifier.hpp @@ -49,7 +49,9 @@ enum class sourceKind { dt, time, ion_current, + ion_conductivity, ion_current_density, + ion_diffusive, ion_revpot, ion_iconc, ion_econc, @@ -95,6 +97,7 @@ inline std::string to_string(sourceKind v) { case sourceKind::dt: return "dt"; case sourceKind::ion_current: return "ion_current"; case sourceKind::ion_current_density: return "ion_current_density"; + case sourceKind::ion_diffusive: return "ion_diffusive"; case sourceKind::ion_revpot: return "ion_revpot"; case sourceKind::ion_iconc: return "ion_iconc"; case sourceKind::ion_econc: return "ion_econc"; @@ -122,6 +125,7 @@ inline sourceKind ion_source(const std::string& ion, const std::string& var, mod else if (var=="i"+ion) return mkind==moduleKind::density? sourceKind::ion_current_density: sourceKind::ion_current; else if (var=="e"+ion) return sourceKind::ion_revpot; else if (var==ion+"i") return sourceKind::ion_iconc; + else if (var==ion+"d") return sourceKind::ion_diffusive; else if (var==ion+"o") return sourceKind::ion_econc; else return sourceKind::no_source; } diff --git a/modcc/io/prefixbuf.cpp b/modcc/io/prefixbuf.cpp index 916e795070..6b85f907df 100644 --- a/modcc/io/prefixbuf.cpp +++ b/modcc/io/prefixbuf.cpp @@ -56,7 +56,7 @@ prefixbuf::int_type prefixbuf::overflow(int_type ch) { // setprefix implementation: -std::ostream& operator<<(std::ostream& os, const setprefix& sp) { +ARB_LIBMODCC_API std::ostream& operator<<(std::ostream& os, const setprefix& sp) { if (auto pbuf = dynamic_cast(os.rdbuf())) { pbuf->prefix = sp.prefix_; } @@ -111,7 +111,7 @@ static void indent_stack_callback(std::ios_base::event ev, std::ios_base& ios, i } } -std::ostream& operator<<(std::ostream& os, indent_manip in) { +ARB_LIBMODCC_API std::ostream& operator<<(std::ostream& os, indent_manip in) { int xindex = indent_manip::xindex(); void*& pword = os.pword(xindex); long& iword = os.iword(xindex); diff --git a/modcc/io/prefixbuf.hpp b/modcc/io/prefixbuf.hpp index 107637073c..34e044ce61 100644 --- a/modcc/io/prefixbuf.hpp +++ b/modcc/io/prefixbuf.hpp @@ -8,6 +8,8 @@ #include #include +#include + namespace io { // `prefixbuf` acts an output-only filter for another streambuf, inserting @@ -28,7 +30,7 @@ namespace io { // A flag determines if the prefixbuf should or should not emit the prefix // for empty lines. -class prefixbuf: public std::streambuf { +class ARB_LIBMODCC_API prefixbuf: public std::streambuf { public: explicit prefixbuf(std::streambuf* inner, bool prefix_empty_lines=false): inner_(inner), prefix_empty_lines_(prefix_empty_lines) {} @@ -75,7 +77,7 @@ class prefixbuf: public std::streambuf { // The manipulator `indent(0)` can be used to reset the prefix of the underlying // stream to match the current indentation level. -class setprefix { +class ARB_LIBMODCC_API setprefix { public: explicit setprefix(std::string prefix): prefix_(std::move(prefix)) {} @@ -85,7 +87,7 @@ class setprefix { std::string prefix_; }; -struct indent_manip { +struct ARB_LIBMODCC_API indent_manip { enum action_enum {push, pop, settab}; explicit constexpr indent_manip(action_enum action, unsigned value=0): @@ -119,7 +121,7 @@ inline indent_manip settab(unsigned w) { // Acts very much like a `std::ostringstream`, but with prefix // and indent functionality. -class pfxstringstream: public std::ostream { +class ARB_LIBMODCC_API pfxstringstream: public std::ostream { public: pfxstringstream(): std::ostream(nullptr), diff --git a/modcc/kineticrewriter.cpp b/modcc/kineticrewriter.cpp index bb6ef0b77f..b3aef7ab9f 100644 --- a/modcc/kineticrewriter.cpp +++ b/modcc/kineticrewriter.cpp @@ -30,7 +30,7 @@ class KineticRewriter : public BlockRewriterBase { std::map dterms; }; -expression_ptr kinetic_rewrite(BlockExpression* block) { +ARB_LIBMODCC_API expression_ptr kinetic_rewrite(BlockExpression* block) { KineticRewriter visitor; block->accept(&visitor); return visitor.as_block(false); diff --git a/modcc/kineticrewriter.hpp b/modcc/kineticrewriter.hpp index 3dfb2648a1..3d640eff95 100644 --- a/modcc/kineticrewriter.hpp +++ b/modcc/kineticrewriter.hpp @@ -1,6 +1,7 @@ #pragma once #include "expression.hpp" +#include // Translate a supplied KINETIC block to equivalent DERIVATIVE block. -expression_ptr kinetic_rewrite(BlockExpression*); +ARB_LIBMODCC_API expression_ptr kinetic_rewrite(BlockExpression*); diff --git a/modcc/lexer.hpp b/modcc/lexer.hpp index f897db5856..82690dfa51 100644 --- a/modcc/lexer.hpp +++ b/modcc/lexer.hpp @@ -11,6 +11,7 @@ #include "location.hpp" #include "error.hpp" #include "token.hpp" +#include // status of the lexer enum class lexerStatus { @@ -29,7 +30,7 @@ bool is_keyword(Token const& t); // class that implements the lexer // takes a range of characters as input parameters -class Lexer { +class ARB_LIBMODCC_API Lexer { public: Lexer(const char* begin, const char* end) : begin_(begin), diff --git a/modcc/linearrewriter.cpp b/modcc/linearrewriter.cpp index e3513694fc..ea055c5e21 100644 --- a/modcc/linearrewriter.cpp +++ b/modcc/linearrewriter.cpp @@ -25,7 +25,7 @@ class LinearRewriter : public BlockRewriterBase { std::vector state_vars; }; -expression_ptr linear_rewrite(BlockExpression* block, std::vector state_vars) { +ARB_LIBMODCC_API expression_ptr linear_rewrite(BlockExpression* block, std::vector state_vars) { LinearRewriter visitor(state_vars); block->accept(&visitor); return visitor.as_block(false); diff --git a/modcc/linearrewriter.hpp b/modcc/linearrewriter.hpp index 32b3386334..a517981c0d 100644 --- a/modcc/linearrewriter.hpp +++ b/modcc/linearrewriter.hpp @@ -1,6 +1,7 @@ #pragma once #include "expression.hpp" +#include // Translate a supplied LINEAR block. -expression_ptr linear_rewrite(BlockExpression*, std::vector); +ARB_LIBMODCC_API expression_ptr linear_rewrite(BlockExpression*, std::vector); diff --git a/modcc/modcc.cpp b/modcc/modcc.cpp index 6e9b51ba7f..3eea843b0c 100644 --- a/modcc/modcc.cpp +++ b/modcc/modcc.cpp @@ -25,12 +25,12 @@ using std::cerr; // Options and option parsing: int report_error(const std::string& message) { - cerr << red("error: ") << message << "\n"; + cerr << red("error trace:\n") << message << "\n"; return 1; } int report_ice(const std::string& message) { - cerr << red("internal compiler error: ") << message << "\n" + cerr << red("internal compiler error:\n") << message << "\n" << "\nPlease report this error to the modcc developers.\n"; return 1; } @@ -223,6 +223,7 @@ int main(int argc, char **argv) { emit_header("semantic analysis"); m.semantic(); if (m.has_warning()) { + cerr << yellow("Warnings:\n"); cerr << m.warning_string() << "\n"; } if (m.has_error()) { diff --git a/modcc/module.cpp b/modcc/module.cpp index 56d22f0326..7dafa6ed0d 100644 --- a/modcc/module.cpp +++ b/modcc/module.cpp @@ -36,6 +36,7 @@ class NrnCurrentRewriter: public BlockRewriterBase { if (src==sourceKind::current_density || src==sourceKind::current || src==sourceKind::ion_current_density || + src==sourceKind::ion_conductivity || src==sourceKind::ion_current) { return src; @@ -49,12 +50,16 @@ class NrnCurrentRewriter: public BlockRewriterBase { bool has_current_update_ = false; std::set current_vars_; - std::set conductivity_exps_; + std::map conductivity_exps_; public: + + std::string non_specific_current = ""; using BlockRewriterBase::visit; virtual void finalize() override { + // Take current name 'iX' and strip off leading 'i' to get ion name. + auto i2ion = [this](const auto& name) { return id("conductivity_" + name.substr(1) + "_"); }; if (has_current_update_) { expression_ptr current_sum, conductivity_sum; for (auto& curr: current_vars_) { @@ -66,13 +71,18 @@ class NrnCurrentRewriter: public BlockRewriterBase { Location{}, std::move(current_sum), std::move(curr_id)); } } - for (auto& cond: conductivity_exps_) { + for (auto& [name, cond]: conductivity_exps_) { if (!conductivity_sum) { conductivity_sum = cond->clone(); } else { conductivity_sum = make_expression( Location{}, std::move(conductivity_sum), cond->clone()); } + if (name != non_specific_current) { + statements_.push_back(make_expression(loc_, + i2ion(name), + cond->clone())); + } } if (current_sum) { statements_.push_back(make_expression(loc_, @@ -93,13 +103,13 @@ class NrnCurrentRewriter: public BlockRewriterBase { sourceKind current_source = current_update(e); if (current_source != sourceKind::no_source) { has_current_update_ = true; - - auto visited_current = current_vars_.count(e->lhs()->is_identifier()->name()); - current_vars_.insert(e->lhs()->is_identifier()->name()); + auto name = e->lhs()->is_identifier()->name(); + auto visited_current = current_vars_.count(name); + current_vars_.insert(name); linear_test_result L = linear_test(e->rhs(), {"v"}); if (L.coef.count("v") && !visited_current) { - conductivity_exps_.insert(L.coef.at("v")->clone()); + conductivity_exps_[name] = L.coef.at("v")->clone(); } } } @@ -109,7 +119,7 @@ std::string Module::error_string() const { std::string str; for (const error_entry& entry: errors()) { if (!str.empty()) str += '\n'; - str += red("error "); + str += red(" * "); str += white(pprintf("%:% ", source_name(), entry.location)); str += entry.message; } @@ -120,7 +130,7 @@ std::string Module::warning_string() const { std::string str; for (auto& entry: warnings()) { if (!str.empty()) str += '\n'; - str += purple("warning "); + str += purple(" * "); str += white(pprintf("%:% ", source_name(), entry.location)); str += entry.message; } @@ -480,6 +490,9 @@ bool Module::semantic() { // compute_currents : update contributions to currents //.......................................................... NrnCurrentRewriter compute_currents_rewriter; + // Register non-specific current name + if (neuron_block_.has_nonspecific_current()) compute_currents_rewriter.non_specific_current = neuron_block_.nonspecific_current.spelling; + breakpoint->accept(&compute_currents_rewriter); for (auto& s: breakpoint->body()->statements()) { @@ -677,7 +690,6 @@ void Module::add_variables_to_symbols() { // Otherwise create an indexed variable and associate it // with the state variable if present (via a different name) // for ion state updates. - VariableExpression* state = nullptr; if (has_symbol(name)) { state = symbols_[name].get()->is_variable(); @@ -710,12 +722,25 @@ void Module::add_variables_to_symbols() { create_indexed_variable(i.spelling, current_kind, accessKind::noaccess, "", i.location); } - for(auto const& ion : neuron_block_.ions) { - for(auto const& var : ion.read) { - update_ion_symbols(var, accessKind::read, ion.name); - } - for(auto const& var : ion.write) { + std::set cond; + for(auto const& ion: neuron_block_.ions) { + for(auto const& var: ion.write) { update_ion_symbols(var, accessKind::write, ion.name); + auto name = "conductivity_" + ion.name + "_"; + if (cond.find(name) == cond.end()) { + create_indexed_variable(name, sourceKind::ion_conductivity, accessKind::write, ion.name, var.location); + cond.insert(name); + } + } + + for(auto const& var: ion.read) { + // Skip vars we have already processed as WRITE, since those can be read as well. + if (std::count_if(ion.write.begin(), + ion.write.end(), + [&var](const auto& it) { return var.spelling == it.spelling; })) { + continue; + } + update_ion_symbols(var, accessKind::read, ion.name); } if(ion.uses_valence()) { diff --git a/modcc/module.hpp b/modcc/module.hpp index 1854bd55c8..8411328fb9 100644 --- a/modcc/module.hpp +++ b/modcc/module.hpp @@ -8,9 +8,10 @@ #include "blocks.hpp" #include "error.hpp" #include "expression.hpp" +#include // wrapper around a .mod file -class Module: public error_stack { +class ARB_LIBMODCC_API Module: public error_stack { public: using symbol_map = scope_type::symbol_map; using symbol_ptr = scope_type::symbol_ptr; diff --git a/modcc/parser.cpp b/modcc/parser.cpp index 75bf1a5750..965e4946e3 100644 --- a/modcc/parser.cpp +++ b/modcc/parser.cpp @@ -1008,6 +1008,8 @@ expression_ptr Parser::parse_statement() { return parse_solve(); case tok::local: return parse_local(); + case tok::watch: + return parse_watch(); case tok::identifier: return parse_line_expression(); case tok::conserve: @@ -1399,6 +1401,7 @@ expression_ptr Parser::parse_unaryop() { /// expects one of : /// :: number /// :: identifier +/// :: watch /// :: call /// :: parenthesis expression (parsed recursively) /// :: prefix binary operators @@ -1656,6 +1659,19 @@ expression_ptr Parser::parse_conductance() { return nullptr; } +// WATCH (cond) flag +expression_ptr Parser::parse_watch() { + Location loc = location_; // solve location for expression + get_token(); // consume keyword + + parse_parenthesis_expression(); + parse_expression(); + + error("WATCH statements are not supported in modcc.", loc); + return nullptr; +} + + expression_ptr Parser::parse_if() { Token if_token = token_; get_token(); // consume 'if' diff --git a/modcc/parser.hpp b/modcc/parser.hpp index 0bdf0ea84b..bf82af8d96 100644 --- a/modcc/parser.hpp +++ b/modcc/parser.hpp @@ -7,8 +7,9 @@ #include "expression.hpp" #include "lexer.hpp" #include "module.hpp" +#include -class Parser: public Lexer { +class ARB_LIBMODCC_API Parser: public Lexer { public: explicit Parser(Module& m, bool advance = true); Parser(std::string const&); @@ -35,6 +36,7 @@ class Parser: public Lexer { expression_ptr parse_local(); expression_ptr parse_solve(); expression_ptr parse_conductance(); + expression_ptr parse_watch(); expression_ptr parse_block(bool); expression_ptr parse_initial(); expression_ptr parse_compartment_statement(); diff --git a/modcc/printer/cexpr_emit.cpp b/modcc/printer/cexpr_emit.cpp index e9c23e4d22..6e93c1d0c1 100644 --- a/modcc/printer/cexpr_emit.cpp +++ b/modcc/printer/cexpr_emit.cpp @@ -11,7 +11,7 @@ #include "astmanip.hpp" #include "io/prefixbuf.hpp" -std::ostream& operator<<(std::ostream& out, as_c_double wrap) { +ARB_LIBMODCC_API std::ostream& operator<<(std::ostream& out, as_c_double wrap) { bool neg = std::signbit(wrap.value); switch (std::fpclassify(wrap.value)) { diff --git a/modcc/printer/cexpr_emit.hpp b/modcc/printer/cexpr_emit.hpp index 4b278ec85b..86b5f957e8 100644 --- a/modcc/printer/cexpr_emit.hpp +++ b/modcc/printer/cexpr_emit.hpp @@ -6,11 +6,12 @@ #include "expression.hpp" #include "visitor.hpp" #include "marks.hpp" +#include // Common functionality for generating source from binary expressions // and conditional structures with C syntax. -class CExprEmitter: public Visitor { +class ARB_LIBMODCC_API CExprEmitter: public Visitor { public: CExprEmitter(std::ostream& out, Visitor* fallback): out_(out), fallback_(fallback) @@ -37,7 +38,7 @@ inline void cexpr_emit(Expression* e, std::ostream& out, Visitor* fallback) { e->accept(&emitter); } -class SimdExprEmitter: public CExprEmitter { +class ARB_LIBMODCC_API SimdExprEmitter: public CExprEmitter { using CExprEmitter::visit; public: SimdExprEmitter( @@ -95,4 +96,4 @@ struct as_c_double { as_c_double(double value): value(value) {} }; -std::ostream& operator<<(std::ostream&, as_c_double); +ARB_LIBMODCC_API std::ostream& operator<<(std::ostream&, as_c_double); diff --git a/modcc/printer/cprinter.cpp b/modcc/printer/cprinter.cpp index 872f3d4344..8eb2fc2186 100644 --- a/modcc/printer/cprinter.cpp +++ b/modcc/printer/cprinter.cpp @@ -52,21 +52,23 @@ struct index_prop { void emit_procedure_proto(std::ostream&, ProcedureExpression*, const std::string&, const std::string& qualified = ""); void emit_simd_procedure_proto(std::ostream&, ProcedureExpression*, const std::string&, const std::string& qualified = ""); void emit_masked_simd_procedure_proto(std::ostream&, ProcedureExpression*, const std::string&, const std::string& qualified = ""); -void emit_api_body(std::ostream&, APIMethod*, bool cv_loop = true, bool ppack_iface=true); -void emit_simd_api_body(std::ostream&, APIMethod*, const std::vector& scalars); +void emit_api_body(std::ostream&, APIMethod*, const ApiFlags& flags={}); +void emit_simd_api_body(std::ostream&, APIMethod*, const std::vector& scalars, const ApiFlags&); void emit_simd_index_initialize(std::ostream& out, const std::list& indices, simd_expr_constraint constraint); void emit_simd_body_for_loop(std::ostream& out, BlockExpression* body, const std::vector& indexed_vars, const std::list& indices, - const simd_expr_constraint& constraint); + const simd_expr_constraint& constraint, + const ApiFlags&); void emit_simd_for_loop_per_constraint(std::ostream& out, BlockExpression* body, const std::vector& indexed_vars, const std::list& indices, const simd_expr_constraint& constraint, - std::string constraint_name); + std::string constraint_name, + const ApiFlags&); struct cprint { Expression* expr_; @@ -117,7 +119,7 @@ struct simdprint { } }; -std::string emit_cpp_source(const Module& module_, const printer_options& opt) { +ARB_LIBMODCC_API std::string emit_cpp_source(const Module& module_, const printer_options& opt) { auto name = module_.module_name(); auto namespace_name = "kernel_" + name; auto ppack_name = "arb_mechanism_ppack"; @@ -230,11 +232,14 @@ std::string emit_cpp_source(const Module& module_, const printer_options& opt) { } // Make implementations - auto emit_body = [&](APIMethod *p) { + auto emit_body = [&](APIMethod *p, bool add=false) { + auto flags = ApiFlags{} + .additive(add) + .point(moduleKind::point == module_.kind()); if (with_simd) { - emit_simd_api_body(out, p, vars.scalars); + emit_simd_api_body(out, p, vars.scalars, flags); } else { - emit_api_body(out, p); + emit_api_body(out, p, flags); } }; @@ -245,7 +250,6 @@ std::string emit_cpp_source(const Module& module_, const printer_options& opt) { "[[maybe_unused]] auto {0}n_detectors = pp->n_detectors;\\\n" "[[maybe_unused]] auto* {0}vec_ci = pp->vec_ci;\\\n" "[[maybe_unused]] auto* {0}vec_di = pp->vec_di;\\\n" - "[[maybe_unused]] auto* {0}vec_t = pp->vec_t;\\\n" "[[maybe_unused]] auto* {0}vec_dt = pp->vec_dt;\\\n" "[[maybe_unused]] auto* {0}vec_v = pp->vec_v;\\\n" "[[maybe_unused]] auto* {0}vec_i = pp->vec_i;\\\n" @@ -322,7 +326,7 @@ std::string emit_cpp_source(const Module& module_, const printer_options& opt) { out << popindent << "}\n\n"; out << "static void compute_currents(arb_mechanism_ppack* pp) {\n" << indent; - emit_body(current_api); + emit_body(current_api, true); out << popindent << "}\n\n"; out << "static void write_ions(arb_mechanism_ppack* pp) {\n" << indent; @@ -343,7 +347,7 @@ std::string emit_cpp_source(const Module& module_, const printer_options& opt) { pp_var_pfx, net_receive_api->args().empty() ? "weight" : net_receive_api->args().front()->is_argument()->name()); out << indent << indent << indent << indent; - emit_api_body(out, net_receive_api, false, false); + emit_api_body(out, net_receive_api, net_recv_flags); out << popindent << "}\n" << popindent << "}\n" << popindent << "}\n" << popindent << "}\n\n"; } else { out << "static void apply_events(arb_mechanism_ppack*, arb_deliverable_event_stream*) {}\n\n"; @@ -363,7 +367,7 @@ std::string emit_cpp_source(const Module& module_, const printer_options& opt) { pp_var_pfx, time_arg); out << indent << indent << indent << indent; - emit_api_body(out, post_event_api, false, false); + emit_api_body(out, post_event_api, post_evt_flags); out << popindent << "}\n" << popindent << "}\n" << popindent << "}\n" << popindent << "}\n"; } else { out << "static void post_event(arb_mechanism_ppack*) {}\n"; @@ -516,23 +520,42 @@ namespace { }; } +// Return the indices that need to be read at the beginning +// of an APIMethod in the order that they should be read +// eg: +// node_index_ = node_index[i]; +// domain_index_ = vec_di[node_index_]; std::list gather_indexed_vars(const std::vector& indexed_vars, const std::string& index) { std::list indices; for (auto& sym: indexed_vars) { auto d = decode_indexed_variable(sym->external_variable()); if (!d.scalar()) { auto nested = !d.inner_index_var().empty(); - auto outer_index_var = d.outer_index_var(); - auto inner_index_var = nested? d.inner_index_var()+"i_": index; - index_prop index_var = {outer_index_var, inner_index_var, d.index_var_kind}; - auto it = std::find(indices.begin(), indices.end(), index_var); - if (it == indices.end()) { - // If an inner index is required, push the outer index_var to the end of the list - if (nested) { - indices.push_back(index_var); + if (nested) { + // Need to read 2 indices: outer[inner[index]] + index_prop inner_index_prop = {d.inner_index_var(), index, d.index_var_kind}; + index_prop outer_index_prop = {d.outer_index_var(), d.inner_index_var()+"i_", d.index_var_kind}; + + // Check that the outer and inner indices haven't already been added to the list + auto inner_it = std::find(indices.begin(), indices.end(), inner_index_prop); + auto outer_it = std::find(indices.begin(), indices.end(), outer_index_prop); + + // The inner index needs to be read before the outer index + if (inner_it == indices.end()) { + indices.push_front(inner_index_prop); } - else { - indices.push_front(index_var); + if (outer_it == indices.end()) { + indices.push_back(outer_index_prop); + } + } + else { + // Need to read 1 index: outer[index] + index_prop outer_index_prop = {d.outer_index_var(), index, d.index_var_kind}; + auto it = std::find(indices.begin(), indices.end(), outer_index_prop); + + // Check that the index hasn't already been added to the list + if (it == indices.end()) { + indices.push_front(outer_index_prop); } } } @@ -540,64 +563,65 @@ std::list gather_indexed_vars(const std::vector& ind return indices; } -void emit_state_read(std::ostream& out, LocalVariable* local) { - ENTER(out); - out << "arb_value_type " << cprint(local) << " = "; - - if (local->is_read()) { - auto d = decode_indexed_variable(local->external_variable()); - out << scaled(d.scale) << deref(d) << ";\n"; - } - else { - out << "0;\n"; - } - EXIT(out); -} - -void emit_state_update(std::ostream& out, Symbol* from, IndexedVariable* external) { - if (!external->is_write()) return; - ENTER(out); - auto d = decode_indexed_variable(external); - double coeff = 1./d.scale; - - if (d.readonly) { - throw compiler_exception("Cannot assign to read-only external state: "+external->to_string()); - } - - if (d.accumulate) { - out << deref(d) << " = fma(" - << scaled(coeff) << pp_var_pfx << "weight[i_], " - << from->name() << ", " << deref(d) << ");\n"; - } - else { - out << deref(d) << " = " << scaled(coeff) << from->name() << ";\n"; - } - EXIT(out); -} - -void emit_api_body(std::ostream& out, APIMethod* method, bool cv_loop, bool ppack_iface) { +void emit_api_body(std::ostream& out, APIMethod* method, const ApiFlags& flags) { ENTER(out); auto body = method->body(); auto indexed_vars = indexed_locals(method->scope()); std::list indices = gather_indexed_vars(indexed_vars, "i_"); if (!body->statements().empty()) { - ppack_iface && out << "PPACK_IFACE_BLOCK;\n"; - cv_loop && out << fmt::format("for (arb_size_type i_ = 0; i_ < {}width; ++i_) {{\n", pp_var_pfx) - << indent; + if (flags.ppack_iface) out << "PPACK_IFACE_BLOCK;\n"; + if (flags.cv_loop) { + out << fmt::format("for (arb_size_type i_ = 0; i_ < {}width; ++i_) {{\n", + pp_var_pfx) + << indent; + } for (auto index: indices) { - out << "auto " << source_index_i_name(index) << " = " << source_var(index) << "[" << index.index_name << "];\n"; + out << fmt::format("auto {} = {}[{}];\n", + source_index_i_name(index), + source_var(index), + index.index_name); } for (auto& sym: indexed_vars) { - emit_state_read(out, sym); + auto d = decode_indexed_variable(sym->external_variable()); + out << "arb_value_type " << cprint(sym) << " = "; + if (sym->is_read() || (sym->is_write() && d.additive)) { + out << scaled(d.scale) << deref(d) << ";\n"; + } + else { + out << "0;\n"; + } } out << cprint(body); for (auto& sym: indexed_vars) { - emit_state_update(out, sym, sym->external_variable()); + if (!sym->external_variable()->is_write()) continue; + auto d = decode_indexed_variable(sym->external_variable()); + bool use_weight = d.always_use_weight || !flags.is_point; + if (d.readonly) throw compiler_exception("Cannot assign to read-only external state: "+sym->to_string()); + std::string + var, + weight = use_weight ? pp_var_pfx + "weight[i_]" : "1.0", + scale = scaled(1.0/d.scale), + name = sym->name(); + { + std::stringstream v; v << deref(d); var = v.str(); + } + if (d.additive && flags.use_additive) { + out << fmt::format("{3} -= {0};\n" + "{0} = fma({1}{2}, {3}, {0});\n", + var, scale, weight, name); + } + else if (d.accumulate) { + out << fmt::format("{} = fma({}{}, {}, {});\n", + var, scale, weight, name, var); + } + else { + out << var << " = " << scale << name << ";\n"; + } } - cv_loop && out << popindent << "}\n"; + if (flags.cv_loop) out << popindent << "}\n"; } EXIT(out); } @@ -749,7 +773,7 @@ void emit_simd_state_read(std::ostream& out, LocalVariable* local, simd_expr_con ENTER(out); out << "simd_value " << local->name(); - if (local->is_read()) { + if (local->is_read() || (local->is_write() && decode_indexed_variable(local->external_variable()).additive)) { auto d = decode_indexed_variable(local->external_variable()); if (d.scalar()) { out << " = simd_cast(" << pp_var_pfx << d.data_var @@ -794,97 +818,94 @@ void emit_simd_state_read(std::ostream& out, LocalVariable* local, simd_expr_con EXIT(out); } -void emit_simd_state_update(std::ostream& out, Symbol* from, IndexedVariable* external, simd_expr_constraint constraint) { +void emit_simd_state_update(std::ostream& out, + Symbol* from, IndexedVariable* external, + simd_expr_constraint constraint, + const ApiFlags& flags) { if (!external->is_write()) return; + ENTER(out); auto d = decode_indexed_variable(external); - double coeff = 1./d.scale; if (d.readonly) { throw compiler_exception("Cannot assign to read-only external state: "+external->to_string()); } - ENTER(out); + auto ext = external->name(); + auto name = from->name(); + auto data = data_via_ppack(d); + auto node = node_index_i_name(d); + auto index = index_i_name(d.outer_index_var()); + + std::string scaled = name; + if (d.scale != 1.0) { + std::stringstream ss; + ss << "S::mul(" << name << ", simd_cast(" << as_c_double(1/d.scale) << "))"; + scaled = ss.str(); + } - if (d.accumulate) { - switch (d.index_var_kind) { - case index_kind::node: { - switch (constraint) { - case simd_expr_constraint::contiguous: - { - std::string tempvar = "t_" + external->name(); - out << "simd_value " << tempvar << ";\n" - << "assign(" << tempvar << ", indirect(" << data_via_ppack(d) << " + " << node_index_i_name(d) << ", simd_width_));\n"; - if (coeff != 1) { - out << tempvar << " = S::fma(S::mul(w_, simd_cast(" << as_c_double(coeff) << "))," << from->name() << ", " << tempvar << ");\n"; - } else { - out << tempvar << " = S::fma(w_, " << from->name() << ", " << tempvar << ");\n"; - } - out << "indirect(" << data_via_ppack(d) << " + " << node_index_i_name(d) << ", simd_width_) = " << tempvar << ";\n"; - break; - } - case simd_expr_constraint::constant: - { - out << "indirect(" << data_via_ppack(d) << ", simd_cast(" << node_index_i_name(d) << "), simd_width_, constraint_category_)"; - if (coeff != 1) { - out << " += S::mul(w_, S::mul(simd_cast(" << as_c_double(coeff) << "), " << from->name() << "));\n"; - } else { - out << " += S::mul(w_, " << from->name() << ");\n"; - } - break; - } - default : - { - out << "indirect(" << data_via_ppack(d) << ", " << node_index_i_name(d) << ", simd_width_, constraint_category_)"; - if (coeff != 1) { - out << " += S::mul(w_, S::mul(simd_cast(" << as_c_double(coeff) << "), " << from->name() << "));\n"; - } else { - out << " += S::mul(w_, " << from->name() << ");\n"; - } - } - } - break; + std::string weight = (d.always_use_weight || !flags.is_point) ? "w_" : "simd_cast(1.0)"; + + if (d.additive && flags.use_additive) { + if (d.index_var_kind == index_kind::node) { + if (constraint == simd_expr_constraint::contiguous) { + out << fmt::format("indirect({} + {}, simd_width_) = S::mul({}, {});\n", + data, node, weight, scaled); } - default: { - out << "indirect(" << data_via_ppack(d) << ", " << index_i_name(d.outer_index_var()) << ", simd_width_, index_constraint::none)"; - if (coeff != 1) { - out << " += S::mul(w_, S::mul(simd_cast(" << as_c_double(coeff) << "), " << from->name() << "));\n"; - } else { - out << " += S::mul(w_, " << from->name() << ");\n"; - } - break; + else { + // We need this instead of simple assignment! + out << fmt::format("{{\n" + " simd_value t_{}0_ = simd_cast(0.0);\n" + " assign(t_{}0_, indirect({}, simd_cast({}), simd_width_, constraint_category_));\n" + " {} -= t_{}0_;\n" + " indirect({}, simd_cast({}), simd_width_, constraint_category_) += S::mul({}, {});\n" + "}}\n", + name, + name, data, node, + scaled, name, + data, node, weight, scaled); } } + else { + out << fmt::format("indirect({}, {}, simd_width_, index_constraint::none) = S::mul({}, {});\n", + data, index, weight, scaled); + } } - else { - switch (d.index_var_kind) { - case index_kind::node: { - switch (constraint) { + else if (d.accumulate) { + if (d.index_var_kind == index_kind::node) { + std::string tempvar = "t_" + external->name(); + switch (constraint) { case simd_expr_constraint::contiguous: - out << "indirect(" << data_via_ppack(d) << " + " << node_index_i_name(d) << ", simd_width_) = "; + out << "simd_value " << tempvar << ";\n" + << "assign(" << tempvar << ", indirect(" << data << " + " << node << ", simd_width_));\n" + << tempvar << " = S::fma(" << weight << ", " << scaled << ", " << tempvar << ");\n" + << "indirect(" << data << " + " << node << ", simd_width_) = " << tempvar << ";\n"; break; case simd_expr_constraint::constant: - out << "indirect(" << data_via_ppack(d) << ", simd_cast(" << node_index_i_name(d) << "), simd_width_, constraint_category_) = "; + out << "indirect(" << data << ", simd_cast(" << node << "), simd_width_, constraint_category_) += S::mul(" << weight << ", " << scaled << ");\n"; break; default: - out << "indirect(" << data_via_ppack(d) << ", " << node_index_i_name(d) << ", simd_width_, constraint_category_) = "; - } - break; - } - default: { - out << "indirect(" << data_via_ppack(d) - << ", " << index_i_name(d.outer_index_var()) << ", simd_width_, index_constraint::none) = "; - break; + out << "indirect(" << data << ", " << node << ", simd_width_, constraint_category_) += S::mul(" << weight << ", " << scaled << ");\n"; } - } - - if (coeff != 1) { - out << "(S::mul(simd_cast(" << as_c_double(coeff) << ")," << from->name() << "));\n"; } else { - out << from->name() << ";\n"; + out << "indirect(" << data << ", " << index << ", simd_width_, index_constraint::none) += S::mul(" << weight << ", " << scaled << ");\n"; } } - + else if (d.index_var_kind == index_kind::node) { + switch (constraint) { + case simd_expr_constraint::contiguous: + out << "indirect(" << data << " + " << node << ", simd_width_) = " << scaled << ";\n"; + break; + case simd_expr_constraint::constant: + out << "indirect(" << data << ", simd_cast(" << node << "), simd_width_, constraint_category_) = " << scaled << ";\n"; + break; + default: + out << "indirect(" << data << ", " << node << ", simd_width_, constraint_category_) = " << scaled << ";\n"; + } + } + else { + out << "indirect(" << data << ", " << index << ", simd_width_, index_constraint::none) = " << scaled << ";\n"; + } EXIT(out); } @@ -940,7 +961,8 @@ void emit_simd_body_for_loop( const std::vector& indexed_vars, const std::vector& scalars, const std::list& indices, - const simd_expr_constraint& constraint) { + const simd_expr_constraint& constraint, + const ApiFlags& flags) { ENTER(out); emit_simd_index_initialize(out, indices, constraint); @@ -954,56 +976,42 @@ void emit_simd_body_for_loop( out << printer; for (auto& sym: indexed_vars) { - emit_simd_state_update(out, sym, sym->external_variable(), constraint); + emit_simd_state_update(out, sym, sym->external_variable(), constraint, flags); } EXIT(out); } void emit_simd_for_loop_per_constraint(std::ostream& out, BlockExpression* body, - const std::vector& indexed_vars, - const std::vector& scalars, - bool requires_weight, - const std::list& indices, - const simd_expr_constraint& constraint, - std::string underlying_constraint_name) { + const std::vector& indexed_vars, + const std::vector& scalars, + const std::list& indices, + const simd_expr_constraint& constraint, + std::string underlying_constraint_name, + const ApiFlags& flags) { ENTER(out); out << fmt::format("constraint_category_ = index_constraint::{1};\n" "for (auto i_ = 0ul; i_ < {0}index_constraints.n_{1}; i_++) {{\n" " arb_index_type index_ = {0}index_constraints.{1}[i_];\n", pp_var_pfx, underlying_constraint_name) - << indent; - if (requires_weight) { - out << fmt::format("simd_value w_;\n" - "assign(w_, indirect(({}weight+index_), simd_width_));\n", - pp_var_pfx); - } + << indent + << fmt::format("simd_value w_;\n" + "assign(w_, indirect(({}weight+index_), simd_width_));\n", + pp_var_pfx); - emit_simd_body_for_loop(out, body, indexed_vars, scalars, indices, constraint); + emit_simd_body_for_loop(out, body, indexed_vars, scalars, indices, constraint, flags); out << popindent << "}\n"; EXIT(out); } -void emit_simd_api_body(std::ostream& out, APIMethod* method, const std::vector& scalars) { +void emit_simd_api_body(std::ostream& out, APIMethod* method, + const std::vector& scalars, + const ApiFlags& flags) { auto body = method->body(); auto indexed_vars = indexed_locals(method->scope()); - bool requires_weight = false; ENTER(out); - for (auto& s: body->is_block()->statements()) { - if (s->is_assignment()) { - for (auto& v: indexed_vars) { - if (s->is_assignment()->lhs()->is_identifier()->name() == v->external_variable()->name()) { - auto info = decode_indexed_variable(v->external_variable()); - if (info.accumulate) { - requires_weight = true; - } - break; - } - } - } - } std::list indices = gather_indexed_vars(indexed_vars, "index_"); std::vector scalar_indexed_vars; for (auto& sym: indexed_vars) { @@ -1021,26 +1029,25 @@ void emit_simd_api_body(std::ostream& out, APIMethod* method, const std::vector< simd_expr_constraint constraint = simd_expr_constraint::contiguous; std::string underlying_constraint = "contiguous"; - emit_simd_for_loop_per_constraint(out, body, indexed_vars, scalars, requires_weight, indices, constraint, underlying_constraint); + emit_simd_for_loop_per_constraint(out, body, indexed_vars, scalars, indices, constraint, underlying_constraint, flags); //Generate for loop for all independent simd_vectors constraint = simd_expr_constraint::other; underlying_constraint = "independent"; - emit_simd_for_loop_per_constraint(out, body, indexed_vars, scalars, requires_weight, indices, constraint, underlying_constraint); + emit_simd_for_loop_per_constraint(out, body, indexed_vars, scalars, indices, constraint, underlying_constraint, flags); //Generate for loop for all simd_vectors that have no optimizing constraints constraint = simd_expr_constraint::other; underlying_constraint = "none"; - emit_simd_for_loop_per_constraint(out, body, indexed_vars, scalars, requires_weight, indices, constraint, underlying_constraint); + emit_simd_for_loop_per_constraint(out, body, indexed_vars, scalars, indices, constraint, underlying_constraint, flags); //Generate for loop for all constant simd_vectors constraint = simd_expr_constraint::constant; underlying_constraint = "constant"; - emit_simd_for_loop_per_constraint(out, body, indexed_vars, scalars, requires_weight, indices, constraint, underlying_constraint); - + emit_simd_for_loop_per_constraint(out, body, indexed_vars, scalars, indices, constraint, underlying_constraint, flags); } else { // We may nonetheless need to read a global scalar indexed variable. diff --git a/modcc/printer/cprinter.hpp b/modcc/printer/cprinter.hpp index b07b7f1b55..872de3ec97 100644 --- a/modcc/printer/cprinter.hpp +++ b/modcc/printer/cprinter.hpp @@ -5,15 +5,16 @@ #include "module.hpp" #include "visitor.hpp" +#include #include "printer/cexpr_emit.hpp" #include "printer/printeropt.hpp" -std::string emit_cpp_source(const Module& m, const printer_options& opt); +ARB_LIBMODCC_API std::string emit_cpp_source(const Module& m, const printer_options& opt); // CPrinter and SimdPrinter visitors exposed in header for testing purposes only. -class CPrinter: public Visitor { +class ARB_LIBMODCC_API CPrinter: public Visitor { public: CPrinter(std::ostream& out): out_(out) {} @@ -44,7 +45,22 @@ enum class simd_expr_constraint{ other }; -class SimdPrinter: public Visitor { +struct ApiFlags { + bool cv_loop = true; + bool ppack_iface=true; + bool use_additive=false; + bool is_point=false; + + ApiFlags& loop(bool v) { cv_loop = v; return *this; } + ApiFlags& iface(bool v) { ppack_iface = v; return *this; } + ApiFlags& additive(bool v) { use_additive = v; return *this; } + ApiFlags& point(bool v) { is_point = v; return *this; } +}; + +const ApiFlags net_recv_flags = {false, false, true, false}; +const ApiFlags post_evt_flags = {false, false, false, false}; + +class ARB_LIBMODCC_API SimdPrinter: public Visitor { public: SimdPrinter(std::ostream& out): out_(out) {} diff --git a/modcc/printer/gpuprinter.cpp b/modcc/printer/gpuprinter.cpp index 21a24d9c30..ac3fe69c05 100644 --- a/modcc/printer/gpuprinter.cpp +++ b/modcc/printer/gpuprinter.cpp @@ -19,10 +19,19 @@ using io::indent; using io::popindent; using io::quote; -void emit_api_body_cu(std::ostream& out, APIMethod* method, bool is_point_proc, bool cv_loop = true, bool ppack=true); +static std::string scaled(double coeff) { + std::stringstream ss; + if (coeff != 1) { + ss << as_c_double(coeff) << '*'; + } + return ss.str(); +} + + +void emit_api_body_cu(std::ostream& out, APIMethod* method, const ApiFlags&); void emit_procedure_body_cu(std::ostream& out, ProcedureExpression* proc); void emit_state_read_cu(std::ostream& out, LocalVariable* local); -void emit_state_update_cu(std::ostream& out, Symbol* from, IndexedVariable* external, bool is_point_proc); +void emit_state_update_cu(std::ostream& out, Symbol* from, IndexedVariable* external, const ApiFlags&); const char* index_id(Symbol *s); @@ -42,7 +51,7 @@ static std::string ion_field(const IonDep& ion) { return fmt::format("ion_{}", static std::string ion_index(const IonDep& ion) { return fmt::format("ion_{}_index", ion.name); } -std::string emit_gpu_cpp_source(const Module& module_, const printer_options& opt) { +ARB_LIBMODCC_API std::string emit_gpu_cpp_source(const Module& module_, const printer_options& opt) { std::string name = module_.module_name(); std::string class_name = make_class_name(name); std::string ppack_name = make_ppack_name(name); @@ -92,7 +101,7 @@ std::string emit_gpu_cpp_source(const Module& module_, const printer_options& op return out.str(); } -std::string emit_gpu_cu_source(const Module& module_, const printer_options& opt) { +ARB_LIBMODCC_API std::string emit_gpu_cu_source(const Module& module_, const printer_options& opt) { std::string name = module_.module_name(); std::string class_name = make_class_name(name); @@ -127,7 +136,6 @@ std::string emit_gpu_cu_source(const Module& module_, const printer_options& opt "auto {0}n_detectors __attribute__((unused)) = params_.n_detectors;\\\n" "auto* {0}vec_ci __attribute__((unused)) = params_.vec_ci;\\\n" "auto* {0}vec_di __attribute__((unused)) = params_.vec_di;\\\n" - "auto* {0}vec_t __attribute__((unused)) = params_.vec_t;\\\n" "auto* {0}vec_dt __attribute__((unused)) = params_.vec_dt;\\\n" "auto* {0}vec_v __attribute__((unused)) = params_.vec_v;\\\n" "auto* {0}vec_i __attribute__((unused)) = params_.vec_i;\\\n" @@ -211,14 +219,14 @@ std::string emit_gpu_cu_source(const Module& module_, const printer_options& opt } // API methods as __global__ kernels. - auto emit_api_kernel = [&] (APIMethod* e) { + auto emit_api_kernel = [&] (APIMethod* e, bool additive=false) { // Only print the kernel if the method is not empty. if (!e->body()->statements().empty()) { out << "__global__\n" << "void " << e->name() << "(arb_mechanism_ppack params_) {\n" << indent << "int n_ = params_.width;\n" << "int tid_ = threadIdx.x + blockDim.x*blockIdx.x;\n"; - emit_api_body_cu(out, e, is_point_proc); + emit_api_body_cu(out, e, ApiFlags{}.point(is_point_proc).additive(additive)); out << popindent << "}\n\n"; } }; @@ -237,7 +245,7 @@ std::string emit_gpu_cu_source(const Module& module_, const printer_options& opt pp_var_pfx); } emit_api_kernel(state_api); - emit_api_kernel(current_api); + emit_api_kernel(current_api, true); emit_api_kernel(write_ions_api); // event delivery @@ -256,7 +264,7 @@ std::string emit_gpu_cu_source(const Module& module_, const printer_options& opt net_receive_api->args().empty() ? "weight" : net_receive_api->args().front()->is_argument()->name(), pp_var_pfx); out << indent << indent << indent << indent; - emit_api_body_cu(out, net_receive_api, is_point_proc, false, false); + emit_api_body_cu(out, net_receive_api, ApiFlags{}.point(is_point_proc).loop(false).iface(false)); out << popindent << "}\n" << popindent << "}\n" << popindent << "}\n" << popindent << "}\n"; } @@ -277,7 +285,7 @@ std::string emit_gpu_cu_source(const Module& module_, const printer_options& opt time_arg, pp_var_pfx); out << indent << indent << indent << indent; - emit_api_body_cu(out, post_event_api, is_point_proc, false, false); + emit_api_body_cu(out, post_event_api, ApiFlags{}.point(is_point_proc).loop(false).iface(false)); out << popindent << "}\n" << popindent << "}\n" << popindent << "}\n" << popindent << "}\n"; } @@ -357,7 +365,7 @@ static std::string index_i_name(const std::string& index_var) { return index_var+"i_"; } -void emit_api_body_cu(std::ostream& out, APIMethod* e, bool is_point_proc, bool cv_loop, bool ppack) { +void emit_api_body_cu(std::ostream& out, APIMethod* e, const ApiFlags& flags) { auto body = e->body(); auto indexed_vars = indexed_locals(e->scope()); @@ -369,29 +377,48 @@ void emit_api_body_cu(std::ostream& out, APIMethod* e, bool is_point_proc, bool } }; + // Gather the indices that need to be read at the beginning + // of an APIMethod in the order that they should be read + // eg: + // node_index_ = node_index[tid]; + // domain_index_ = vec_di[node_index_]; std::list indices; for (auto& sym: indexed_vars) { auto d = decode_indexed_variable(sym->external_variable()); if (!d.scalar()) { auto nested = !d.inner_index_var().empty(); - auto outer_index_var = d.outer_index_var(); - auto inner_index_var = nested? index_i_name(d.inner_index_var()): "tid_"; - index_prop index_var = {outer_index_var, inner_index_var}; - auto it = std::find(indices.begin(), indices.end(), index_var); - if (it == indices.end()) { - // If an inner index is required, push the outer index_var to the end of the list - if (nested) { - indices.push_back(index_var); + if (nested) { + // Need to read 2 indices: outer[inner[tid]] + index_prop inner_index_prop = {d.inner_index_var(), "tid_"}; + index_prop outer_index_prop = {d.outer_index_var(), index_i_name(d.inner_index_var())}; + + // Check that the outer and inner indices haven't already been added to the list + auto inner_it = std::find(indices.begin(), indices.end(), inner_index_prop); + auto outer_it = std::find(indices.begin(), indices.end(), outer_index_prop); + + // The inner index needs to be read before the outer index + if (inner_it == indices.end()) { + indices.push_front(inner_index_prop); } - else { - indices.push_front(index_var); + if (outer_it == indices.end()) { + indices.push_back(outer_index_prop); + } + } + else { + // Need to read 1 index: outer[index] + index_prop outer_index_prop = {d.outer_index_var(), "tid_"}; + + // Check that the index hasn't already been added to the list + auto it = std::find(indices.begin(), indices.end(), outer_index_prop); + if (it == indices.end()) { + indices.push_front(outer_index_prop); } } } } if (!body->statements().empty()) { - if (is_point_proc) { + if (flags.is_point) { // The run length information is only required if this method will // update an indexed variable, like current or conductance. // This is the case if one of the external variables "is_write". @@ -401,8 +428,8 @@ void emit_api_body_cu(std::ostream& out, APIMethod* e, bool is_point_proc, bool out << "unsigned lane_mask_ = arb::gpu::ballot(0xffffffff, tid_external_variable(), is_point_proc); + emit_state_update_cu(out, sym, sym->external_variable(), flags); } - cv_loop && out << popindent << "}\n"; + if (flags.cv_loop) out << popindent << "}\n"; } } @@ -443,9 +470,8 @@ namespace { void emit_state_read_cu(std::ostream& out, LocalVariable* local) { out << "arb_value_type " << cuprint(local) << " = "; - - if (local->is_read()) { - auto d = decode_indexed_variable(local->external_variable()); + auto d = decode_indexed_variable(local->external_variable()); + if (local->is_read() || (local->is_write() && d.additive)) { if (d.scale != 1) { out << as_c_double(d.scale) << "*"; } @@ -458,36 +484,40 @@ void emit_state_read_cu(std::ostream& out, LocalVariable* local) { void emit_state_update_cu(std::ostream& out, Symbol* from, - IndexedVariable* external, bool is_point_proc) { + IndexedVariable* external, const ApiFlags& flags) { if (!external->is_write()) return; - auto d = decode_indexed_variable(external); - double coeff = 1./d.scale; - if (d.readonly) { throw compiler_exception("Cannot assign to read-only external state: "+external->to_string()); } - if (is_point_proc && d.accumulate) { - out << "::arb::gpu::reduce_by_key("; - if (coeff != 1) out << as_c_double(coeff) << '*'; - - out << pp_var_pfx << "weight[tid_]*" << from->name() << ','; - - auto index_var = d.outer_index_var(); - out << pp_var_pfx << d.data_var << ", " << index_i_name(index_var) << ", lane_mask_);\n"; + auto name = from->name(); + auto scale = scaled(1.0/d.scale); + auto data = pp_var_pfx + d.data_var; + auto index = index_i_name(d.outer_index_var()); + auto var = deref(d); + std::string weight = (d.always_use_weight || !flags.is_point) ? pp_var_pfx + "weight[tid_]" : "1.0"; + weight = scale + weight; + + if (d.additive && flags.use_additive) { + out << name << " -= " << var << ";\n"; + if (flags.is_point) { + out << fmt::format("::arb::gpu::reduce_by_key({}*{}, {}, {}, lane_mask_);\n", weight, name, data, index); + } + else { + out << var << " = fma(" << weight << ", " << name << ", " << var << ");\n"; + } } else if (d.accumulate) { - out << deref(d) << " = fma("; - if (coeff != 1) out << as_c_double(coeff) << '*'; - - out << pp_var_pfx << "weight[tid_], " << from->name() << ", " << deref(d) << ");\n"; + if (flags.is_point) { + out << "::arb::gpu::reduce_by_key(" << weight << "*" << name << ',' << data << ", " << index << ", lane_mask_);\n"; + } + else { + out << var << " = fma(" << weight << ", " << name << ", " << var << ");\n"; + } } else { - out << deref(d) << " = "; - if (coeff != 1) out << as_c_double(coeff) << '*'; - - out << from->name() << ";\n"; + out << var << " = " << scale << name << ";\n"; } } diff --git a/modcc/printer/gpuprinter.hpp b/modcc/printer/gpuprinter.hpp index 9d3a0b7ddc..58f4ecdadb 100644 --- a/modcc/printer/gpuprinter.hpp +++ b/modcc/printer/gpuprinter.hpp @@ -5,11 +5,12 @@ #include "cprinter.hpp" #include "module.hpp" #include "cexpr_emit.hpp" +#include -std::string emit_gpu_cpp_source(const Module& m, const printer_options& opt); -std::string emit_gpu_cu_source(const Module& m, const printer_options& opt); +ARB_LIBMODCC_API std::string emit_gpu_cpp_source(const Module& m, const printer_options& opt); +ARB_LIBMODCC_API std::string emit_gpu_cu_source(const Module& m, const printer_options& opt); -class GpuPrinter: public CPrinter { +class ARB_LIBMODCC_API GpuPrinter: public CPrinter { public: GpuPrinter(std::ostream& out): CPrinter(out) {} diff --git a/modcc/printer/infoprinter.cpp b/modcc/printer/infoprinter.cpp index d0b207d63e..c4211001e5 100644 --- a/modcc/printer/infoprinter.cpp +++ b/modcc/printer/infoprinter.cpp @@ -17,7 +17,7 @@ using io::quote; -std::string build_info_header(const Module& m, const printer_options& opt, bool cpu, bool gpu) { +ARB_LIBMODCC_API std::string build_info_header(const Module& m, const printer_options& opt, bool cpu, bool gpu) { using io::indent; using io::popindent; @@ -29,15 +29,17 @@ std::string build_info_header(const Module& m, const printer_options& opt, bool const auto lowest = std::to_string(std::numeric_limits::lowest()); const auto max = std::to_string(std::numeric_limits::max()); + const auto prefix = std::regex_replace(opt.cpp_namespace, std::regex{"::"}, "_"); + out << fmt::format("#pragma once\n\n" "#include \n" - "#include <{}mechanism_abi.h>\n\n", + "#include <{0}version.hpp>\n" + "#include <{0}mechanism_abi.h>\n\n", arb_header_prefix()); - out << fmt::format("extern \"C\" {{\n" - " arb_mechanism_type make_{0}_{1}() {{\n" + " arb_mechanism_type make_{0}_{1}_type() {{\n" " // Tables\n", - std::regex_replace(opt.cpp_namespace, std::regex{"::"}, "_"), + prefix, name); const auto& [state_ids, global_ids, param_ids] = public_variable_ids(m); @@ -50,9 +52,10 @@ std::string build_info_header(const Module& m, const printer_options& opt, bool id.unit_string(), val, lo, hi); }; auto fmt_ion = [&](const auto& ion) { - return fmt::format(FMT_COMPILE("{{ \"{}\", {}, {}, {}, {}, {}, {}, {} }}"), + return fmt::format(FMT_COMPILE("{{ \"{}\", {}, {}, {}, {}, {}, {}, {}, {} }}"), ion.name, ion.writes_concentration_int(), ion.writes_concentration_ext(), + ion.uses_concentration_diff(), ion.writes_rev_potential(), ion.uses_rev_potential(), ion.uses_valence(), ion.verifies_valence(), ion.expected_valence); }; @@ -108,12 +111,22 @@ std::string build_info_header(const Module& m, const printer_options& opt, bool module_kind_str(m), m.is_linear(), m.has_post_events()) - << fmt::format(" arb_mechanism_interface* make_{0}_{1}_interface_multicore(){2}\n" - " arb_mechanism_interface* make_{0}_{1}_interface_gpu(){3}\n" - "}}\n", - std::regex_replace(opt.cpp_namespace, std::regex{"::"}, "_"), - name, - cpu ? ";" : " { return nullptr; }", - gpu ? ";" : " { return nullptr; }"); + << fmt::format(" arb_mechanism_interface* make_{0}_{1}_interface_multicore();\n" + " arb_mechanism_interface* make_{0}_{1}_interface_gpu();\n" + "\n" + " #ifndef ARB_GPU_ENABLED\n" + " arb_mechanism_interface* make_{0}_{1}_interface_gpu() {{ return nullptr; }}\n" + " #endif\n" + "\n" + " arb_mechanism make_{0}_{1}() {{\n" + " static arb_mechanism result = {{}};\n" + " result.type = make_{0}_{1}_type;\n" + " result.i_cpu = make_{0}_{1}_interface_multicore;\n" + " result.i_gpu = make_{0}_{1}_interface_gpu;\n" + " return result;\n" + " }}\n" + "}} // extern C\n", + prefix, + name); return out.str(); } diff --git a/modcc/printer/infoprinter.hpp b/modcc/printer/infoprinter.hpp index ae43c8994d..41f81a0c4b 100644 --- a/modcc/printer/infoprinter.hpp +++ b/modcc/printer/infoprinter.hpp @@ -3,9 +3,11 @@ #include #include "module.hpp" +#include + #include "printer/printeropt.hpp" // Build header file comprising mechanism metadata // and declarations of backend-specific mechanism implementations. -std::string build_info_header(const Module& m, const printer_options& opt, bool cpu=false, bool gpu=false); +ARB_LIBMODCC_API std::string build_info_header(const Module& m, const printer_options& opt, bool cpu=false, bool gpu=false); diff --git a/modcc/printer/printerutil.cpp b/modcc/printer/printerutil.cpp index 7e7b7c31a8..86a983a768 100644 --- a/modcc/printer/printerutil.cpp +++ b/modcc/printer/printerutil.cpp @@ -6,7 +6,7 @@ #include "module.hpp" #include "printerutil.hpp" -std::vector namespace_components(const std::string& ns) { +ARB_LIBMODCC_API std::vector namespace_components(const std::string& ns) { static std::regex ns_regex("([^:]+)(?:::|$)"); std::vector components; @@ -18,7 +18,7 @@ std::vector namespace_components(const std::string& ns) { return components; } -std::vector indexed_locals(scope_ptr scope) { +ARB_LIBMODCC_API std::vector indexed_locals(scope_ptr scope) { std::vector vars; for (auto& entry: scope->locals()) { LocalVariable* local = entry.second->is_local_variable(); @@ -29,7 +29,7 @@ std::vector indexed_locals(scope_ptr scope) { return vars; } -std::vector pure_locals(scope_ptr scope) { +ARB_LIBMODCC_API std::vector pure_locals(scope_ptr scope) { std::vector vars; for (auto& entry: scope->locals()) { LocalVariable* local = entry.second->is_local_variable(); @@ -40,7 +40,7 @@ std::vector pure_locals(scope_ptr scope) { return vars; } -std::vector normal_procedures(const Module& m) { +ARB_LIBMODCC_API std::vector normal_procedures(const Module& m) { std::vector procs; for (auto& sym: m.symbols()) { @@ -54,7 +54,7 @@ std::vector normal_procedures(const Module& m) { return procs; } -public_variable_ids_t public_variable_ids(const Module& m) { +ARB_LIBMODCC_API public_variable_ids_t public_variable_ids(const Module& m) { public_variable_ids_t ids; ids.state_ids = m.state_block().state_variables; @@ -79,7 +79,7 @@ public_variable_ids_t public_variable_ids(const Module& m) { return ids; } -module_variables_t local_module_variables(const Module& m) { +ARB_LIBMODCC_API module_variables_t local_module_variables(const Module& m) { module_variables_t mv; for (auto& sym: m.symbols()) { @@ -92,7 +92,7 @@ module_variables_t local_module_variables(const Module& m) { return mv; } -std::vector module_normal_procedures(const Module& m) { +ARB_LIBMODCC_API std::vector module_normal_procedures(const Module& m) { std::vector procs; for (auto& sym: m.symbols()) { auto p = sym.second->is_procedure(); @@ -104,17 +104,17 @@ std::vector module_normal_procedures(const Module& m) { return procs; } -APIMethod* find_api_method(const Module& m, const char* which) { +ARB_LIBMODCC_API APIMethod* find_api_method(const Module& m, const char* which) { auto it = m.symbols().find(which); return it==m.symbols().end()? nullptr: it->second->is_api_method(); } -NetReceiveExpression* find_net_receive(const Module& m) { +ARB_LIBMODCC_API NetReceiveExpression* find_net_receive(const Module& m) { auto it = m.symbols().find("net_receive"); return it==m.symbols().end()? nullptr: it->second->is_net_receive(); } -PostEventExpression* find_post_event(const Module& m) { +ARB_LIBMODCC_API PostEventExpression* find_post_event(const Module& m) { auto it = m.symbols().find("post_event"); return it==m.symbols().end()? nullptr: it->second->is_post_event(); } @@ -135,13 +135,15 @@ std::string indexed_variable_info::outer_index_var() const { } } -indexed_variable_info decode_indexed_variable(IndexedVariable* sym) { +ARB_LIBMODCC_API indexed_variable_info decode_indexed_variable(IndexedVariable* sym) { indexed_variable_info v; v.node_index_var = "node_index"; v.index_var_kind = index_kind::node; v.scale = 1; v.accumulate = true; + v.additive = false; v.readonly = true; + v.always_use_weight = true; std::string ion_pfx; if (sym->is_ion()) { @@ -185,17 +187,16 @@ indexed_variable_info decode_indexed_variable(IndexedVariable* sym) { v.data_var = "vec_dt"; v.readonly = true; break; - case sourceKind::time: - v.data_var = "vec_t"; - v.cell_index_var = "vec_di"; - v.index_var_kind = index_kind::cell; - v.readonly = true; - break; case sourceKind::ion_current_density: v.data_var = ion_pfx+".current_density"; v.scale = 0.1; v.readonly = false; break; + case sourceKind::ion_conductivity: + v.data_var = ion_pfx+".conductivity"; + v.scale = 0.1; + v.readonly = false; + break; case sourceKind::ion_current: // unit scale; sourceKind for point processes updating an ionic current variable. v.data_var = ion_pfx+".current_density"; @@ -209,10 +210,18 @@ indexed_variable_info decode_indexed_variable(IndexedVariable* sym) { case sourceKind::ion_iconc: v.data_var = ion_pfx+".internal_concentration"; v.readonly = false; + v.always_use_weight = false; + break; + case sourceKind::ion_diffusive: + v.data_var = ion_pfx+".diffusive_concentration"; + v.readonly = false; + v.accumulate = false; + v.additive = true; break; case sourceKind::ion_econc: v.data_var = ion_pfx+".external_concentration"; v.readonly = false; + v.always_use_weight = false; break; case sourceKind::ion_valence: v.data_var = ion_pfx+".ionic_charge"; diff --git a/modcc/printer/printerutil.hpp b/modcc/printer/printerutil.hpp index 77daace538..5addde91b2 100644 --- a/modcc/printer/printerutil.hpp +++ b/modcc/printer/printerutil.hpp @@ -11,8 +11,9 @@ #include "error.hpp" #include "expression.hpp" #include "module.hpp" +#include -std::vector namespace_components(const std::string& qualified_namespace); +ARB_LIBMODCC_API std::vector namespace_components(const std::string& qualified_namespace); // Can use this in a namespace. No __ allowed anywhere, neither _[A-Z], and in _global namespace_ _ followed by anything is verboten. const static std::string pp_var_pfx = "_pp_var_"; @@ -79,17 +80,17 @@ inline void assert_has_scope(Expression* expr, const std::string& context) { // Scope query functions: // All local variables in scope with `is_indexed()` true. -std::vector indexed_locals(scope_ptr scope); +ARB_LIBMODCC_API std::vector indexed_locals(scope_ptr scope); // All local variables in scope with `is_arg()` and `is_indexed()` false. -std::vector pure_locals(scope_ptr scope); +ARB_LIBMODCC_API std::vector pure_locals(scope_ptr scope); // Module state query functions: // Normal (not API, net_receive) procedures in module: -std::vector normal_procedures(const Module&); +ARB_LIBMODCC_API std::vector normal_procedures(const Module&); struct public_variable_ids_t { std::vector state_ids; @@ -99,7 +100,7 @@ struct public_variable_ids_t { // Public module variables by role. -public_variable_ids_t public_variable_ids(const Module&); +ARB_LIBMODCC_API public_variable_ids_t public_variable_ids(const Module&); struct module_variables_t { std::vector scalars; @@ -108,21 +109,21 @@ struct module_variables_t { // Scalar and array variables with local linkage. -module_variables_t local_module_variables(const Module&); +ARB_LIBMODCC_API module_variables_t local_module_variables(const Module&); // "normal" procedures in a module. // A normal procedure is one that has been declared with the // PROCEDURE keyword in NMODL. -std::vector module_normal_procedures(const Module& m); +ARB_LIBMODCC_API std::vector module_normal_procedures(const Module& m); // Extract key procedures from module. -APIMethod* find_api_method(const Module& m, const char* which); +ARB_LIBMODCC_API APIMethod* find_api_method(const Module& m, const char* which); -NetReceiveExpression* find_net_receive(const Module& m); +ARB_LIBMODCC_API NetReceiveExpression* find_net_receive(const Module& m); -PostEventExpression* find_post_event(const Module& m); +ARB_LIBMODCC_API PostEventExpression* find_post_event(const Module& m); // For generating vectorized code for reading and writing data sources. // node: The data source uses the CV index which is categorized into @@ -139,7 +140,7 @@ enum class index_kind { none }; -struct indexed_variable_info { +struct ARB_LIBMODCC_API indexed_variable_info { std::string data_var; std::string node_index_var; std::string cell_index_var; @@ -148,6 +149,8 @@ struct indexed_variable_info { bool accumulate = true; // true => add with weight_ factor on assignment bool readonly = false; // true => can never be assigned to by a mechanism + bool additive = false; // only additive contributions allowed? + bool always_use_weight = false; // can disable weighting? // Scale is the conversion factor from the data variable // to the NMODL value. @@ -157,7 +160,7 @@ struct indexed_variable_info { std::string outer_index_var() const; }; -indexed_variable_info decode_indexed_variable(IndexedVariable* sym); +ARB_LIBMODCC_API indexed_variable_info decode_indexed_variable(IndexedVariable* sym); template size_t emit_array(std::ostream& out, const C& vars) { diff --git a/modcc/solvers.cpp b/modcc/solvers.cpp index 4e49ded065..23d89a41e1 100644 --- a/modcc/solvers.cpp +++ b/modcc/solvers.cpp @@ -41,7 +41,13 @@ void CnexpSolverVisitor::visit(AssignmentExpression *e) { } auto s = deriv->name(); + linear_test_result r = linear_test(rhs, dvars_); + if (r.has_error()) { + append_errors(r.errors()); + error({"CNExp: Could not determine linearity, maybe use a different solver?", loc}); + return; + } if (!r.monolinear(s)) { error({"System not diagonal linear for cnexp", loc}); @@ -52,7 +58,6 @@ void CnexpSolverVisitor::visit(AssignmentExpression *e) { if (!coef || is_zero(coef)) { // s' = b becomes s = s + b*dt; use b_ as a local variable for // the constant term b. - auto local_b_term = make_unique_local_assign(scope, r.constant.get(), "b_"); statements_.push_back(std::move(local_b_term.local_decl)); statements_.push_back(std::move(local_b_term.assignment)); @@ -964,7 +969,7 @@ class RemoveVariableVisitor: public BlockRewriterBase { } }; -expression_ptr remove_unused_locals(BlockExpression* block) { +ARB_LIBMODCC_API expression_ptr remove_unused_locals(BlockExpression* block) { UnusedVisitor unused_visitor; block->accept(&unused_visitor); diff --git a/modcc/solvers.hpp b/modcc/solvers.hpp index 718c0900ff..719ad0c0e3 100644 --- a/modcc/solvers.hpp +++ b/modcc/solvers.hpp @@ -12,8 +12,9 @@ #include "symdiff.hpp" #include "symge.hpp" #include "visitor.hpp" +#include -expression_ptr remove_unused_locals(BlockExpression* block); +ARB_LIBMODCC_API expression_ptr remove_unused_locals(BlockExpression* block); class SolverVisitorBase: public BlockRewriterBase { protected: @@ -56,7 +57,7 @@ class DirectSolverVisitor : public SolverVisitorBase { } }; -class CnexpSolverVisitor : public SolverVisitorBase { +class ARB_LIBMODCC_API CnexpSolverVisitor : public SolverVisitorBase { public: using SolverVisitorBase::visit; @@ -67,7 +68,7 @@ class CnexpSolverVisitor : public SolverVisitorBase { virtual void visit(AssignmentExpression *e) override; }; -class SystemSolver { +class ARB_LIBMODCC_API SystemSolver { protected: // Symbolic matrix for backwards Euler step. symge::sym_matrix A_; @@ -132,7 +133,7 @@ class SystemSolver { }; -class SparseSolverVisitor : public SolverVisitorBase { +class ARB_LIBMODCC_API SparseSolverVisitor : public SolverVisitorBase { protected: solverVariant solve_variant_; @@ -185,7 +186,7 @@ class SparseSolverVisitor : public SolverVisitorBase { } }; -class SparseNonlinearSolverVisitor : public SolverVisitorBase { +class ARB_LIBMODCC_API SparseNonlinearSolverVisitor : public SolverVisitorBase { protected: // 'Current' differential equation is for variable with this // index in `dvars`. @@ -231,7 +232,7 @@ class SparseNonlinearSolverVisitor : public SolverVisitorBase { } }; -class LinearSolverVisitor : public SolverVisitorBase { +class ARB_LIBMODCC_API LinearSolverVisitor : public SolverVisitorBase { protected: // 'Current' differential equation is for variable with this // index in `dvars`. diff --git a/modcc/symdiff.cpp b/modcc/symdiff.cpp index db32ac3aeb..1b4028eba5 100644 --- a/modcc/symdiff.cpp +++ b/modcc/symdiff.cpp @@ -87,13 +87,13 @@ class FindIdentifierVisitor: public Visitor { bool found_ = false; }; -bool involves_identifier(Expression* e, const identifier_set& ids) { +ARB_LIBMODCC_API bool involves_identifier(Expression* e, const identifier_set& ids) { FindIdentifierVisitor v(ids); e->accept(&v); return v.found(); } -bool involves_identifier(Expression* e, const std::string& id) { +ARB_LIBMODCC_API bool involves_identifier(Expression* e, const std::string& id) { identifier_set ids = {id}; FindIdentifierVisitor v(ids); e->accept(&v); @@ -262,7 +262,7 @@ class SymPDiffVisitor: public Visitor, public error_stack { std::string id_; }; -double expr_value(Expression* e) { +ARB_LIBMODCC_API double expr_value(Expression* e) { return e && e->is_number()? e->is_number()->value(): NAN; } @@ -547,14 +547,14 @@ class ConstantSimplifyVisitor: public Visitor { } }; -expression_ptr constant_simplify(Expression* e) { +ARB_LIBMODCC_API expression_ptr constant_simplify(Expression* e) { ConstantSimplifyVisitor csimp_visitor; e->accept(&csimp_visitor); return csimp_visitor.result(); } -expression_ptr symbolic_pdiff(Expression* e, const std::string& id) { +ARB_LIBMODCC_API expression_ptr symbolic_pdiff(Expression* e, const std::string& id) { if (!involves_identifier(e, id)) { return make_expression(e->location(), 0); } @@ -562,7 +562,17 @@ expression_ptr symbolic_pdiff(Expression* e, const std::string& id) { SymPDiffVisitor pdiff_visitor(id); e->accept(&pdiff_visitor); - if (pdiff_visitor.has_error()) return nullptr; + if (pdiff_visitor.has_error()) { + std::string errors, sep = ""; + + for (const auto& error: pdiff_visitor.errors()) { + errors += sep + error.message; + sep = "\n"; + } + auto res = std::make_unique(e->location()); + res->error(errors); + return res; + } return constant_simplify(pdiff_visitor.result()); } @@ -644,7 +654,7 @@ class SubstituteVisitor: public Visitor { const substitute_map& sub_; }; -expression_ptr substitute(Expression* e, const std::string& id, Expression* sub) { +ARB_LIBMODCC_API expression_ptr substitute(Expression* e, const std::string& id, Expression* sub) { substitute_map subs; subs[id] = sub->clone(); SubstituteVisitor sub_visitor(subs); @@ -652,13 +662,13 @@ expression_ptr substitute(Expression* e, const std::string& id, Expression* sub) return sub_visitor.result(); } -expression_ptr substitute(Expression* e, const substitute_map& sub) { +ARB_LIBMODCC_API expression_ptr substitute(Expression* e, const substitute_map& sub) { SubstituteVisitor sub_visitor(sub); e->accept(&sub_visitor); return sub_visitor.result(); } -linear_test_result linear_test(Expression* e, const std::vector& vars) { +ARB_LIBMODCC_API linear_test_result linear_test(Expression* e, const std::vector& vars) { linear_test_result result; auto loc = e->location(); auto zero = [loc]() { return make_expression(loc, 0); }; @@ -666,17 +676,20 @@ linear_test_result linear_test(Expression* e, const std::vector& va result.constant = e->clone(); for (const auto& id: vars) { auto coef = symbolic_pdiff(e, id); - if (!coef) { - return linear_test_result{}; + if (coef->has_error()) { + auto res = linear_test_result{}; + res.error({coef->error_message(), loc}); + return res; } + if (!coef) return linear_test_result{}; if (!is_zero(coef)) result.coef[id] = std::move(coef); - result.constant = substitute(result.constant, id, zero()); } ConstantSimplifyVisitor csimp_visitor; result.constant->accept(&csimp_visitor); result.constant = csimp_visitor.result(); + if (result.constant.get() == nullptr) throw compiler_exception{"Linear test: simplification of the constant term failed.", loc}; // linearity test: take second order derivatives, test against zero. result.is_linear = true; diff --git a/modcc/symdiff.hpp b/modcc/symdiff.hpp index 9e8192150d..b438748981 100644 --- a/modcc/symdiff.hpp +++ b/modcc/symdiff.hpp @@ -13,19 +13,20 @@ #include #include "expression.hpp" +#include // True if `id` matches the spelling of any identifier in the expression. -bool involves_identifier(Expression* e, const std::string& id); +ARB_LIBMODCC_API bool involves_identifier(Expression* e, const std::string& id); using identifier_set = std::vector; -bool involves_identifier(Expression* e, const identifier_set& ids); +ARB_LIBMODCC_API bool involves_identifier(Expression* e, const identifier_set& ids); // Return new expression formed by folding constants and removing trivial terms. -expression_ptr constant_simplify(Expression* e); +ARB_LIBMODCC_API expression_ptr constant_simplify(Expression* e); // Extract value of expression that is a NumberExpression, or else return NAN. -double expr_value(Expression* e); +ARB_LIBMODCC_API double expr_value(Expression* e); // Test if expression is a NumberExpression with value zero. inline bool is_zero(Expression* e) { @@ -33,14 +34,14 @@ inline bool is_zero(Expression* e) { } // Return new expression of symbolic partial differentiation of argument wrt `id`. -expression_ptr symbolic_pdiff(Expression* e, const std::string& id); +ARB_LIBMODCC_API expression_ptr symbolic_pdiff(Expression* e, const std::string& id); // Substitute all occurances of identifier `id` within expression by a clone of `sub`. // (Only applicable to unary, binary, call and number expressions.) -expression_ptr substitute(Expression* e, const std::string& id, Expression* sub); +ARB_LIBMODCC_API expression_ptr substitute(Expression* e, const std::string& id, Expression* sub); using substitute_map = std::map; -expression_ptr substitute(Expression* e, const substitute_map& sub); +ARB_LIBMODCC_API expression_ptr substitute(Expression* e, const substitute_map& sub); // Convenience interfaces for the above functions work with `expression_ptr` as // well as with `Expression*` values. @@ -80,7 +81,7 @@ inline expression_ptr substitute(const expression_ptr& e, const substitute_map& // Linearity testing -struct linear_test_result { +struct linear_test_result: public error_stack { bool is_linear = false; bool is_homogeneous = false; expression_ptr constant; @@ -112,7 +113,7 @@ struct linear_test_result { } }; -linear_test_result linear_test(Expression* e, const std::vector& vars); +ARB_LIBMODCC_API linear_test_result linear_test(Expression* e, const std::vector& vars); inline linear_test_result linear_test(const expression_ptr& e, const std::vector& vars) { return linear_test(e.get(), vars); diff --git a/modcc/symge.cpp b/modcc/symge.cpp index 0968b0406f..ccc2afade9 100644 --- a/modcc/symge.cpp +++ b/modcc/symge.cpp @@ -81,7 +81,7 @@ double estimate_cost(const sym_matrix& A, pivot p) { // that are symbols that are either primitive, or defined (in the symbol // table) as products or differences of products of other symbols. // Returns a vector of vectors of symbols, partitioned by row of the matrix -std::vector> gj_reduce(sym_matrix& A, symbol_table& table) { +ARB_LIBMODCC_API std::vector> gj_reduce(sym_matrix& A, symbol_table& table) { std::vector> row_symbols; if (A.nrow()>A.ncol()) throw std::runtime_error("improper matrix for reduction"); diff --git a/modcc/symge.hpp b/modcc/symge.hpp index 9343609255..3a3cbc1ecd 100644 --- a/modcc/symge.hpp +++ b/modcc/symge.hpp @@ -3,13 +3,14 @@ #include #include "msparse.hpp" +#include // Symbolic sparse matrix manipulation for symbolic Gauss-Jordan elimination // (used in `sparse` solver). namespace symge { -struct symbol_error: public std::runtime_error { +struct ARB_LIBMODCC_API symbol_error: public std::runtime_error { symbol_error(const std::string& what): std::runtime_error(what) {} }; @@ -154,6 +155,6 @@ using sym_matrix = msparse::matrix; // pivots taken from the diagonal elements. New symbol definitions due to fill-in // will be added via the provided symbol table. // Returns a vector of vectors of symbols, partitioned by row of the matrix -std::vector> gj_reduce(sym_matrix& A, symbol_table& table); +ARB_LIBMODCC_API std::vector> gj_reduce(sym_matrix& A, symbol_table& table); } // namespace symge diff --git a/modcc/token.cpp b/modcc/token.cpp index e884bc0d06..db338d169e 100644 --- a/modcc/token.cpp +++ b/modcc/token.cpp @@ -74,6 +74,7 @@ static Keyword keywords[] = { {"exprelr", tok::exprelr}, {"safeinv", tok::safeinv}, {"CONDUCTANCE", tok::conductance}, + {"WATCH", tok::watch}, {nullptr, tok::reserved}, }; @@ -152,12 +153,13 @@ static TokenString token_strings[] = { {"sin", tok::sin}, {"cnexp", tok::cnexp}, {"CONDUCTANCE", tok::conductance}, + {"WATCH", tok::watch}, {"error", tok::reserved}, }; /// set up lookup tables for converting between tokens and their /// string representations -void initialize_token_maps() { +ARB_LIBMODCC_API void initialize_token_maps() { // ensure that tables are initialized only once std::lock_guard g(mutex); @@ -181,18 +183,18 @@ void initialize_token_maps() { } } -std::string token_string(tok token) { +ARB_LIBMODCC_API std::string token_string(tok token) { auto pos = token_map.find(token); return pos==token_map.end() ? std::string("") : pos->second; } -bool is_keyword(Token const& t) { +ARB_LIBMODCC_API bool is_keyword(Token const& t) { for(Keyword *k=keywords; k->name!=nullptr; ++k) if(t.type == k->type) return true; return false; } -std::ostream& operator<< (std::ostream& os, Token const& t) { +ARB_LIBMODCC_API std::ostream& operator<< (std::ostream& os, Token const& t) { return os << "<<" << token_string(t.type) << ", " << t.spelling << ", " << t.location << ">>"; } diff --git a/modcc/token.hpp b/modcc/token.hpp index 5e6466fe55..a953ae2e56 100644 --- a/modcc/token.hpp +++ b/modcc/token.hpp @@ -5,6 +5,7 @@ #include #include "location.hpp" +#include enum class tok { eof, // end of file @@ -82,6 +83,9 @@ enum class tok { conductance, + // trap unsupported keywords + watch, + reserved, // placeholder for generating keyword lookup }; @@ -118,8 +122,8 @@ extern std::unordered_map keyword_map; // for stringifying a token type extern std::map token_map; -void initialize_token_maps(); -std::string token_string(tok token); -bool is_keyword(Token const& t); -std::ostream& operator<< (std::ostream& os, Token const& t); +ARB_LIBMODCC_API void initialize_token_maps(); +ARB_LIBMODCC_API std::string token_string(tok token); +ARB_LIBMODCC_API bool is_keyword(Token const& t); +ARB_LIBMODCC_API std::ostream& operator<< (std::ostream& os, Token const& t); diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000000..0d73254195 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,72 @@ +[project] +name = "arbor" +dynamic = ["version", "readme"] +license = {file = "LICENSE"} +description = "High performance simulation of networks of multicompartment neurons." +requires-python = ">=3.7" +keywords = ["simulator", "neuroscience", "morphological detail", "HPC", "GPU", "C++"] +authors = [ + {name = "Arbor Dev Team", email = "contact@arbor-sim.org"} +] +maintainers = [ + {name = "Arbor Dev Team", email = "contact@arbor-sim.org"} +] +classifiers = [ + "Development Status :: 5 - Production/Stable", + "Intended Audience :: Science/Research", + "License :: OSI Approved :: BSD License", + "Programming Language :: Python", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: C++" +] +dependencies = [ + "numpy" +] + +[tool.setuptools] +py-modules = ["arbor"] + +[tool.setuptools.dynamic] +version = {file = ["VERSION"]} +readme = {file = ["python/readme.rst"]} + +[project.urls] +homepage = "https://arbor-sim.org" +documentation = "https://docs.arbor-sim.org" +repository = "https://github.com/arbor-sim/arbor" +changelog = "https://github.com/arbor-sim/arbor/releases" + +[build-system] +requires = [ + "setuptools", + "wheel", + "scikit-build", + "cmake>=3.18", + "ninja", +] +build-backend = "setuptools.build_meta" + +[tool.cibuildwheel] +build-frontend = "build" +build = ["cp3*-manylinux_x86_64","cp3*-macosx_universal2"]#,"cp3*-musllinux_x86_64","cp3*-musllinux_aarch64"] +skip = "cp36-*" +test-command = "python3 -m unittest discover -v -s {project}/python" + +[tool.cibuildwheel.macos] +archs = ["x86_64", "universal2", "arm64"] + +[tool.cibuildwheel.macos.environment] +MACOSX_DEPLOYMENT_TARGET = "10.15" + +[tool.cibuildwheel.linux] +archs = ["x86_64"] +manylinux-x86_64-image = "manylinux2014" +before-all = "yum -y install libxml2-devel" +repair-wheel-command = "auditwheel repair -w {dest_dir} {wheel} && python3 /project/scripts/patchwheel.py {dest_dir}" + +[[tool.cibuildwheel.overrides]] +select = "*-musllinux*" +before-all = "apk add libxml2-dev" diff --git a/python/CMakeLists.txt b/python/CMakeLists.txt index 10220bf93a..fd4b68e53b 100644 --- a/python/CMakeLists.txt +++ b/python/CMakeLists.txt @@ -4,7 +4,7 @@ if(ARB_USE_BUNDLED_PYBIND11) include(FindPythonModule) # required for find_python_module # Set up pybind11 as an external project. - set(pb11_src_dir "${PROJECT_SOURCE_DIR}/python/pybind11") + set(pb11_src_dir "${PROJECT_SOURCE_DIR}/ext/pybind11") check_git_submodule(pybind11 "${pb11_src_dir}") if(NOT pybind11_avail) @@ -14,7 +14,7 @@ if(ARB_USE_BUNDLED_PYBIND11) # Set up pybind11, which is used to generate Python bindings. # Pybind11 has good cmake support, so just add the pybind11 directory, # instead of using find_package. - add_subdirectory(pybind11) + add_subdirectory(${pb11_src_dir} pybind11) else() find_package(pybind11 REQUIRED) endif() @@ -38,6 +38,7 @@ set(pyarb_source schedule.cpp simulation.cpp single_cell_model.cpp + env.cpp ) # compile the pyarb sources into an object library that will be @@ -85,8 +86,7 @@ file(COPY "${PROJECT_SOURCE_DIR}/VERSION" DESTINATION "${python_mod_path}") file(WRITE "${CMAKE_BINARY_DIR}/install-prefix" "${CMAKE_INSTALL_PREFIX}") execute_process( - COMMAND ${PYTHON_EXECUTABLE} -c - "import sys,sysconfig;pfx=sys.stdin.read();print(sysconfig.get_path('platlib',vars={} if pfx=='' else {'base':pfx,'platbase':pfx}))" + COMMAND ${PYTHON_EXECUTABLE} "${PROJECT_SOURCE_DIR}/scripts/where.py" INPUT_FILE "${CMAKE_BINARY_DIR}/install-prefix" OUTPUT_VARIABLE ARB_PYTHON_LIB_PATH_DEFAULT OUTPUT_STRIP_TRAILING_WHITESPACE) diff --git a/python/__init__.py b/python/__init__.py index 0a4ac0bbb6..cd72d942a3 100644 --- a/python/__init__.py +++ b/python/__init__.py @@ -4,17 +4,20 @@ # The library will be installed in the same path as this file, which will imports # the compiled part of the wrapper from the _arbor namespace. -from ._arbor import * +from ._arbor import * # noqa: F403 + # Parse VERSION file for the Arbor version string. def get_version(): import os + here = os.path.abspath(os.path.dirname(__file__)) - with open(os.path.join(here, 'VERSION')) as version_file: + with open(os.path.join(here, "VERSION")) as version_file: return version_file.read().strip() + __version__ = get_version() -__config__ = config() +__config__ = config() # noqa:F405 # Remove get_version from arbor module. del get_version diff --git a/python/cable_cell_io.cpp b/python/cable_cell_io.cpp index b5c1272cf5..335371df22 100644 --- a/python/cable_cell_io.cpp +++ b/python/cable_cell_io.cpp @@ -2,84 +2,87 @@ #include #include +#include #include #include +#include #include #include "error.hpp" +#include "util.hpp" #include "strprintf.hpp" +#include "proxy.hpp" namespace pyarb { -arborio::cable_cell_component load_component(const std::string& fname) { - std::ifstream fid{fname}; - if (!fid.good()) { - throw pyarb_error("Can't open file '{}'" + fname); - } - auto component = arborio::parse_component(fid); +namespace py = pybind11; + +arborio::cable_cell_component load_component(py::object fn) { + auto contents = util::read_file_or_buffer(fn); + auto component = arborio::parse_component(contents); if (!component) { - throw pyarb_error("Error while trying to load component from \"" + fname + "\": " + component.error().what()); + throw pyarb_error(std::string{"Error while trying to load component: "} + component.error().what()); } return component.value(); }; template -void write_component(const T& component, const std::string& fname) { - std::ofstream fid(fname); +void write_component(const T& component, py::object fn) { + std::ofstream fid(util::to_path(fn)); arborio::write_component(fid, component, arborio::meta_data{}); } -void write_component(const arborio::cable_cell_component& component, const std::string& fname) { - std::ofstream fid(fname); +void write_component(const arborio::cable_cell_component& component, py::object fn) { + std::ofstream fid(util::to_path(fn)); arborio::write_component(fid, component); } void register_cable_loader(pybind11::module& m) { m.def("load_component", &load_component, - pybind11::arg_v("filename", "the name of the file."), + pybind11::arg("filename_or_descriptor"), "Load arbor-component (decor, morphology, label_dict, cable_cell) from file."); m.def("write_component", - [](const arborio::cable_cell_component& d, const std::string& fname) { - return write_component(d, fname); + [](const arborio::cable_cell_component& d, py::object fn) { + return write_component(d, fn); }, - pybind11::arg_v("object", "the cable_component object."), - pybind11::arg_v("filename", "the name of the file."), + pybind11::arg("object"), + pybind11::arg("filename_or_descriptor"), "Write cable_component to file."); m.def("write_component", - [](const arb::decor& d, const std::string& fname) { - return write_component(d, fname); + [](const arb::decor& d, py::object fn) { + return write_component(d, fn); }, - pybind11::arg_v("object", "the decor object."), - pybind11::arg_v("filename", "the name of the file."), + pybind11::arg("object"), + pybind11::arg("filename_or_descriptor"), "Write decor to file."); m.def("write_component", - [](const arb::label_dict& d, const std::string& fname) { - return write_component(d, fname); + [](const arb::label_dict& d, py::object fn) { + return write_component(d, fn); }, - pybind11::arg_v("object", "the label_dict object."), - pybind11::arg_v("filename", "the name of the file."), + pybind11::arg("object"), + pybind11::arg("filename_or_descriptor"), "Write label_dict to file."); m.def("write_component", - [](const arb::morphology& d, const std::string& fname) { - return write_component(d, fname); + [](const arb::morphology& d, py::object fn) { + return write_component(d, fn); }, - pybind11::arg_v("object", "the morphology object."), - pybind11::arg_v("filename", "the name of the file."), + pybind11::arg("object"), + pybind11::arg("filename_or_descriptor"), "Write morphology to file."); m.def("write_component", - [](const arb::cable_cell& d, const std::string& fname) { - return write_component(d, fname); + [](const arb::cable_cell& d, py::object fn) { + return write_component(d, fn); }, - pybind11::arg_v("object", "the cable_cell object."), - pybind11::arg_v("filename", "the name of the file."), + pybind11::arg("object"), + pybind11::arg("filename_or_descriptor"), "Write cable_cell to file."); // arborio::meta_data @@ -91,7 +94,18 @@ void register_cable_loader(pybind11::module& m) { pybind11::class_ cable_component(m, "cable_component"); cable_component .def_readwrite("meta_data", &arborio::cable_cell_component::meta, "cable-cell component meta-data.") - .def_readwrite("component", &arborio::cable_cell_component::component, "cable-cell component.") + .def_property_readonly( + "component", + [](const arborio::cable_cell_component& c) { + using py_cable_cell_variant = std::variant; + auto cable_cell_variant_visitor = arb::util::overload( + [&](const arb::morphology& p) { return py_cable_cell_variant(p);}, + [&](const arb::label_dict& p) { return py_cable_cell_variant(label_dict_proxy(p));}, + [&](const arb::decor& p) { return py_cable_cell_variant(p);}, + [&](const arb::cable_cell& p) { return py_cable_cell_variant(p);}); + return std::visit(cable_cell_variant_visitor, c.component); + }, + "cable-cell component.") .def("__repr__", [](const arborio::cable_cell_component& comp) { std::stringstream stream; arborio::write_component(stream, comp); diff --git a/python/cable_probes.cpp b/python/cable_probes.cpp index 4ba583e322..a309578ad7 100644 --- a/python/cable_probes.cpp +++ b/python/cable_probes.cpp @@ -195,6 +195,14 @@ arb::probe_info cable_probe_ion_int_concentration_cell(const char* ion) { return arb::cable_probe_ion_int_concentration_cell{ion}; } +arb::probe_info cable_probe_ion_diff_concentration(const char* where, const char* ion) { + return arb::cable_probe_ion_diff_concentration{arborio::parse_locset_expression(where).unwrap(), ion}; +} + +arb::probe_info cable_probe_ion_diff_concentration_cell(const char* ion) { + return arb::cable_probe_ion_diff_concentration_cell{ion}; +} + arb::probe_info cable_probe_ion_ext_concentration(const char* where, const char* ion) { return arb::cable_probe_ion_ext_concentration{arborio::parse_locset_expression(where).unwrap(), ion}; } @@ -284,6 +292,14 @@ void register_cable_probes(pybind11::module& m, pyarb_global_ptr global_ptr) { "Probe specification for cable cell internal ionic concentration for each cable in each CV.", "ion"_a); + m.def("cable_probe_ion_diff_concentration", &cable_probe_ion_diff_concentration, + "Probe specification for cable cell diffusive ionic concentration at points in a location set.", + "where"_a, "ion"_a); + + m.def("cable_probe_ion_diff_concentration_cell", &cable_probe_ion_diff_concentration_cell, + "Probe specification for cable cell diffusive ionic concentration for each cable in each CV.", + "ion"_a); + m.def("cable_probe_ion_ext_concentration", &cable_probe_ion_ext_concentration, "Probe specification for cable cell external ionic concentration at points in a location set.", "where"_a, "ion"_a); diff --git a/python/cells.cpp b/python/cells.cpp index 175ce8125f..9ac0a32d77 100644 --- a/python/cells.cpp +++ b/python/cells.cpp @@ -34,14 +34,23 @@ #include "error.hpp" #include "proxy.hpp" #include "pybind11/cast.h" +#include "pybind11/stl.h" #include "pybind11/pytypes.h" #include "schedule.hpp" #include "strprintf.hpp" namespace pyarb { +template +std::string to_string(const T& t) { + std::stringstream ss; + ss << t; + return ss.str(); +} + // This isn't pretty. Partly because the information in the global parameters // is all over the place. +template <> std::string to_string(const arb::cable_cell_global_properties& props) { std::string s = "{arbor.cable_global_properties"; @@ -131,6 +140,11 @@ std::string mechanism_desc_str(const arb::mechanism_desc& md) { md.name(), util::dictionary_csv(md.values())); } +std::string scaled_density_desc_str(const arb::scaled_mechanism& p) { + return util::pprintf("({}, {})", + mechanism_desc_str(p.t_mech.mech), util::dictionary_csv(p.scale_expr)); +} + void register_cells(pybind11::module& m) { using namespace pybind11::literals; using std::optional; @@ -231,7 +245,8 @@ void register_cells(pybind11::module& m) { "A dictionary of labelled region and locset definitions, with a\n" "unique label assigned to each definition."); label_dict - .def(pybind11::init<>(), "Create an empty label dictionary.") + .def(pybind11::init<>(), + "Create an empty label dictionary.") .def(pybind11::init&>(), "Initialize a label dictionary from a dictionary with string labels as keys," " and corresponding definitions as strings.") @@ -248,6 +263,13 @@ void register_cells(pybind11::module& m) { return ld; }), "Initialize a label dictionary from an iterable of key, definition pairs") + .def("add_swc_tags", + [](label_dict_proxy& l) { return l.add_swc_tags(); }, + "Add standard SWC tagged regions.\n" + " - soma: (tag 1)\n" + " - axon: (tag 2)\n" + " - dend: (tag 3)\n" + " - apic: (tag 4)") .def("__setitem__", [](label_dict_proxy& l, const char* name, const char* desc) { l.set(name, desc);}) @@ -404,6 +426,46 @@ void register_cells(pybind11::module& m) { "`proportion` is the proportion of the CV (itegrated by area or length) included in the region." ); + pybind11::class_ membrane_potential(m, "membrane_potential", "Setting the initial membrane voltage."); + membrane_potential + .def(pybind11::init([](double v) -> arb::init_membrane_potential { return {v}; })) + .def("__repr__", [](const arb::init_membrane_potential& d){return "Vm=" + std::to_string(d.value);}); + + pybind11::class_ membrane_capacitance(m, "membrane_capacitance", "Setting the membrane capacitance."); + membrane_capacitance + .def(pybind11::init([](double v) -> arb::membrane_capacitance { return {v}; })) + .def("__repr__", [](const arb::membrane_capacitance& d){return "Cm=" + std::to_string(d.value);}); + + pybind11::class_ temperature_K(m, "temperature_K", "Setting the temperature."); + temperature_K + .def(pybind11::init([](double v) -> arb::temperature_K { return {v}; })) + .def("__repr__", [](const arb::temperature_K& d){return "T=" + std::to_string(d.value);}); + + pybind11::class_ axial_resistivity(m, "axial_resistivity", "Setting the axial resistivity."); + axial_resistivity + .def(pybind11::init([](double v) -> arb::axial_resistivity { return {v}; })) + .def("__repr__", [](const arb::axial_resistivity& d){return "Ra" + std::to_string(d.value);}); + + pybind11::class_ reversal_potential(m, "reversal_potential", "Setting the initial reversal potential."); + reversal_potential + .def(pybind11::init([](const std::string& i, double v) -> arb::init_reversal_potential { return {i, v}; })) + .def("__repr__", [](const arb::init_reversal_potential& d){return "e" + d.ion + "=" + std::to_string(d.value);}); + + pybind11::class_ int_concentration(m, "int_concentration", "Setting the initial internal ion concentration."); + int_concentration + .def(pybind11::init([](const std::string& i, double v) -> arb::init_int_concentration { return {i, v}; })) + .def("__repr__", [](const arb::init_int_concentration& d){return d.ion + "i" + "=" + std::to_string(d.value);}); + + pybind11::class_ ext_concentration(m, "ext_concentration", "Setting the initial external ion concentration."); + ext_concentration + .def(pybind11::init([](const std::string& i, double v) -> arb::init_ext_concentration { return {i, v}; })) + .def("__repr__", [](const arb::init_ext_concentration& d){return d.ion + "o" + "=" + std::to_string(d.value);}); + + pybind11::class_ ion_diffusivity(m, "ion_diffusivity", "Setting the ion diffusivity."); + ion_diffusivity + .def(pybind11::init([](const std::string& i, double v) -> arb::ion_diffusivity { return {i, v}; })) + .def("__repr__", [](const arb::ion_diffusivity& d){return "D" + d.ion + "=" + std::to_string(d.value);}); + // arb::density pybind11::class_ density(m, "density", "For painting a density mechanism on a region."); @@ -416,6 +478,38 @@ void register_cells(pybind11::module& m) { .def("__repr__", [](const arb::density& d){return "";}) .def("__str__", [](const arb::density& d){return "";}); + // arb::scaled_mechanism + + pybind11::class_> scaled_mechanism( + m, "scaled_mechanism", "For painting a scaled density mechanism on a region."); + scaled_mechanism + .def(pybind11::init( + [](arb::density dens) { return arb::scaled_mechanism(std::move(dens)); })) + .def(pybind11::init( + [](arb::density dens, const std::unordered_map& scales) { + auto s = arb::scaled_mechanism(std::move(dens)); + for (const auto& it: scales) { + s.scale(it.first, arborio::parse_iexpr_expression(it.second).unwrap()); + } + return s; + })) + .def( + "scale", + [](arb::scaled_mechanism& s, std::string name, const std::string& ex) { + s.scale(std::move(name), arborio::parse_iexpr_expression(ex).unwrap()); + return s; + }, + pybind11::arg("name"), + pybind11::arg("ex"), + "Add a scaling expression to a parameter.") + .def("__repr__", + [](const arb::scaled_mechanism& d) { + return " " + scaled_density_desc_str(d) + ">"; + }) + .def("__str__", [](const arb::scaled_mechanism& d) { + return " " + scaled_density_desc_str(d) + ">"; + }); + // arb::synapse pybind11::class_ synapse(m, "synapse", "For placing a synaptic mechanism on a locset."); @@ -497,6 +591,30 @@ void register_cells(pybind11::module& m) { return util::pprintf("(threshold_detector {})", d.threshold);}); // arb::cable_cell_global_properties + pybind11::class_ ion_data(m, "ion_data"); + ion_data + .def_readonly("internal_concentration", &arb::cable_cell_ion_data::init_int_concentration, "Internal concentration.") + .def_readonly("external_concentration", &arb::cable_cell_ion_data::init_ext_concentration, "External concentration.") + .def_readonly("diffusivity", &arb::cable_cell_ion_data::diffusivity, "Diffusivity.") + .def_readonly("reversal_concentration", &arb::cable_cell_ion_data::init_reversal_potential, "Reversal potential."); + + struct ion_settings { + int charge = 0; + std::optional internal_concentration; + std::optional external_concentration; + std::optional diffusivity; + std::optional reversal_potential; + std::string reversal_potential_method = "const"; + }; + + pybind11::class_ py_ion_data(m, "ion_settings"); + ion_data + .def_property_readonly("charge", [](const ion_settings& s) { return s.charge; }, "Valence.") + .def_property_readonly("internal_concentration", [](const ion_settings& s) { return s.internal_concentration; }, "Internal concentration.") + .def_property_readonly("external_concentration", [](const ion_settings& s) { return s.external_concentration; }, "External concentration.") + .def_property_readonly("diffusivity", [](const ion_settings& s) { return s.diffusivity; }, "Diffusivity.") + .def_property_readonly("reversal_potential", [](const ion_settings& s) { return s.reversal_potential; }, "Reversal potential.") + .def_property_readonly("reversal_potential_method", [](const ion_settings& s) { return s.reversal_potential_method; }, "Reversal potential method."); pybind11::class_ gprop(m, "cable_global_properties"); gprop @@ -506,6 +624,21 @@ void register_cells(pybind11::module& m) { arb::check_global_properties(props);}, "Test whether all default parameters and ion species properties have been set.") // set cable properties + .def_property("membrane_potential", + [](const arb::cable_cell_global_properties& props) { return props.default_parameters.init_membrane_potential; }, + [](arb::cable_cell_global_properties& props, double u) { props.default_parameters.init_membrane_potential = u; }) + .def_property("membrane_voltage_limit", + [](const arb::cable_cell_global_properties& props) { return props.membrane_voltage_limit_mV; }, + [](arb::cable_cell_global_properties& props, std::optional u) { props.membrane_voltage_limit_mV = u; }) + .def_property("membrane_capacitance", + [](const arb::cable_cell_global_properties& props) { return props.default_parameters.membrane_capacitance; }, + [](arb::cable_cell_global_properties& props, double u) { props.default_parameters.membrane_capacitance = u; }) + .def_property("temperature", + [](const arb::cable_cell_global_properties& props) { return props.default_parameters.temperature_K; }, + [](arb::cable_cell_global_properties& props, double u) { props.default_parameters.temperature_K = u; }) + .def_property("axial_resisitivity", + [](const arb::cable_cell_global_properties& props) { return props.default_parameters.axial_resistivity; }, + [](arb::cable_cell_global_properties& props, double u) { props.default_parameters.axial_resistivity = u; }) .def("set_property", [](arb::cable_cell_global_properties& props, optional Vm, optional cm, @@ -522,11 +655,18 @@ void register_cells(pybind11::module& m) { pybind11::arg_v("tempK", pybind11::none(), "temperature [Kelvin]."), "Set global default values for cable and cell properties.") // add/modify ion species + .def("unset_ion", + [](arb::cable_cell_global_properties& props, const char* ion) { + props.ion_species.erase(ion); + props.default_parameters.ion_data.erase(ion); + props.default_parameters.reversal_potential_method.erase(ion); + }, + "Remove ion species from properties.") .def("set_ion", [](arb::cable_cell_global_properties& props, const char* ion, optional valence, optional int_con, optional ext_con, optional rev_pot, - pybind11::object method) + pybind11::object method, optional diff) { if (!props.ion_species.count(ion) && !valence) { throw std::runtime_error(util::pprintf("New ion species: '{}', missing valence", ion)); @@ -534,20 +674,22 @@ void register_cells(pybind11::module& m) { if (valence) props.ion_species[ion] = *valence; auto& data = props.default_parameters.ion_data[ion]; - if (int_con) data.init_int_concentration = *int_con; - if (ext_con) data.init_ext_concentration = *ext_con; + if (int_con) data.init_int_concentration = *int_con; + if (ext_con) data.init_ext_concentration = *ext_con; if (rev_pot) data.init_reversal_potential = *rev_pot; + if (diff) data.diffusivity = *diff; if (auto m = maybe_method(method)) { props.default_parameters.reversal_potential_method[ion] = *m; } }, - pybind11::arg_v("ion", "name of the ion species."), + pybind11::arg("ion"), pybind11::arg_v("valence", pybind11::none(), "valence of the ion species."), pybind11::arg_v("int_con", pybind11::none(), "initial internal concentration [mM]."), pybind11::arg_v("ext_con", pybind11::none(), "initial external concentration [mM]."), pybind11::arg_v("rev_pot", pybind11::none(), "reversal potential [mV]."), pybind11::arg_v("method", pybind11::none(), "method for calculating reversal potential."), + pybind11::arg_v("diff", pybind11::none(), "diffusivity [m^2/s]."), "Set the global default properties of ion species named 'ion'.\n" "There are 3 ion species predefined in arbor: 'ca', 'na' and 'k'.\n" "If 'ion' in not one of these ions it will be added to the list, making it\n" @@ -557,6 +699,34 @@ void register_cells(pybind11::module& m) { "specific regions using the paint interface, while the method for calculating\n" "reversal potential is global for all compartments in the cell, and can't be\n" "overriden locally.") + .def_property_readonly("ion_data", + [](const arb::cable_cell_global_properties& props) { return props.default_parameters.ion_data; }) + .def_property_readonly("ion_valence", + [](const arb::cable_cell_global_properties& props) { return props.ion_species; }) + .def_property_readonly("ion_reversal_potential", + [](const arb::cable_cell_global_properties& props) { return props.default_parameters.reversal_potential_method; }) + .def_property_readonly("ions", + [](arb::cable_cell_global_properties& g) { + std::unordered_map result; + for (const auto& [k, v]: g.ion_species) { + auto& ion = result[k]; + ion.charge = v; + auto& data = g.default_parameters.ion_data; + if (data.count(k)) { + auto& i = data.at(k); + ion.diffusivity = i.diffusivity; + ion.external_concentration = i.init_ext_concentration; + ion.internal_concentration = i.init_int_concentration; + ion.reversal_potential = i.init_reversal_potential; + } + auto& revpot = g.default_parameters.reversal_potential_method; + if (revpot.count(k)) { + ion.reversal_potential_method = revpot.at(k).name(); + } + } + return result; + }, + "Return a view of all ion settings.") .def_readwrite("catalogue", &arb::cable_cell_global_properties::catalogue, "The mechanism catalogue.") @@ -587,6 +757,7 @@ void register_cells(pybind11::module& m) { if (cm) d.set_default(arb::membrane_capacitance{*cm}); if (rL) d.set_default(arb::axial_resistivity{*rL}); if (tempK) d.set_default(arb::temperature_K{*tempK}); + return d; }, pybind11::arg_v("Vm", pybind11::none(), "initial membrane voltage [mV]."), pybind11::arg_v("cm", pybind11::none(), "membrane capacitance [F/m²]."), @@ -597,36 +768,67 @@ void register_cells(pybind11::module& m) { .def("set_ion", [](arb::decor& d, const char* ion, optional int_con, optional ext_con, - optional rev_pot, pybind11::object method) + optional rev_pot, pybind11::object method, + optional diff) { if (int_con) d.set_default(arb::init_int_concentration{ion, *int_con}); if (ext_con) d.set_default(arb::init_ext_concentration{ion, *ext_con}); if (rev_pot) d.set_default(arb::init_reversal_potential{ion, *rev_pot}); - if (auto m = maybe_method(method)) { - d.set_default(arb::ion_reversal_potential_method{ion, *m}); - } + if (diff) d.set_default(arb::ion_diffusivity{ion, *diff}); + if (auto m = maybe_method(method)) d.set_default(arb::ion_reversal_potential_method{ion, *m}); + return d; }, - pybind11::arg_v("ion", "name of the ion species."), + pybind11::arg("ion"), pybind11::arg_v("int_con", pybind11::none(), "initial internal concentration [mM]."), pybind11::arg_v("ext_con", pybind11::none(), "initial external concentration [mM]."), pybind11::arg_v("rev_pot", pybind11::none(), "reversal potential [mV]."), pybind11::arg_v("method", pybind11::none(), "method for calculating reversal potential."), + pybind11::arg_v("diff", pybind11::none(), "diffusivity [m^2/s]."), "Set the properties of ion species named 'ion' that will be applied\n" "by default everywhere on the cell. Species concentrations and reversal\n" "potential can be overridden on specific regions using the paint interface, \n" "while the method for calculating reversal potential is global for all\n" "compartments in the cell, and can't be overriden locally.") + .def("paintings", + [](arb::decor& dec) { + std::vector> result; + for (const auto& [k, v]: dec.paintings()) { + result.emplace_back(to_string(k), v); + } + return result; + }, + "Return a view of all painted items.") + .def("placements", + [](arb::decor& dec) { + std::vector> result; + for (const auto& [k, v, t]: dec.placements()) { + result.emplace_back(to_string(k), v, t); + } + return result; + }, + "Return a view of all placed items.") + .def("defaults", + [](arb::decor& dec) { + return dec.defaults().serialize(); + }, + "Return a view of all defaults.") // Paint mechanisms. .def("paint", [](arb::decor& dec, const char* region, const arb::density& mechanism) { - dec.paint(arborio::parse_region_expression(region).unwrap(), mechanism); + return dec.paint(arborio::parse_region_expression(region).unwrap(), mechanism); }, "region"_a, "mechanism"_a, "Associate a density mechanism with a region.") + .def("paint", + [](arb::decor& dec, const char* region, const arb::scaled_mechanism& mechanism) { + dec.paint(arborio::parse_region_expression(region).unwrap(), mechanism); + }, + "region"_a, "mechanism"_a, + "Associate a scaled density mechanism with a region.") // Paint membrane/static properties. .def("paint", [](arb::decor& dec, - const char* region, + const char* region, optional Vm, optional cm, optional rL, optional tempK) { @@ -635,8 +837,9 @@ void register_cells(pybind11::module& m) { if (cm) dec.paint(r, arb::membrane_capacitance{*cm}); if (rL) dec.paint(r, arb::axial_resistivity{*rL}); if (tempK) dec.paint(r, arb::temperature_K{*tempK}); + return dec; }, - pybind11::arg_v("region", "the region label or description."), + pybind11::arg("region"), pybind11::arg_v("Vm", pybind11::none(), "initial membrane voltage [mV]."), pybind11::arg_v("cm", pybind11::none(), "membrane capacitance [F/m²]."), pybind11::arg_v("rL", pybind11::none(), "axial resistivity [Ω·cm]."), @@ -645,16 +848,20 @@ void register_cells(pybind11::module& m) { // Paint ion species initial conditions on a region. .def("paint", [](arb::decor& dec, const char* region, const char* name, - optional int_con, optional ext_con, optional rev_pot) { + optional int_con, optional ext_con, + optional rev_pot, optional diff) { auto r = arborio::parse_region_expression(region).unwrap(); if (int_con) dec.paint(r, arb::init_int_concentration{name, *int_con}); if (ext_con) dec.paint(r, arb::init_ext_concentration{name, *ext_con}); if (rev_pot) dec.paint(r, arb::init_reversal_potential{name, *rev_pot}); + if (diff) dec.paint(r, arb::ion_diffusivity{name, *diff}); + return dec; }, "region"_a, pybind11::kw_only(), "ion_name"_a, pybind11::arg_v("int_con", pybind11::none(), "Initial internal concentration [mM]"), pybind11::arg_v("ext_con", pybind11::none(), "Initial external concentration [mM]"), pybind11::arg_v("rev_pot", pybind11::none(), "Initial reversal potential [mV]"), + pybind11::arg_v("diff", pybind11::none(), "Diffusivity [m^2/s]"), "Set ion species properties conditions on a region.") // Place synapses .def("place", @@ -689,14 +896,16 @@ void register_cells(pybind11::module& m) { "Add a voltage spike detector at each location in locations." "The group of spike detectors has the label 'label', used for forming connections between cells.") .def("discretization", - [](arb::decor& dec, const arb::cv_policy& p) { dec.set_default(p); }, - pybind11::arg_v("policy", "A cv_policy used to discretise the cell into compartments for simulation")) + [](arb::decor& dec, const arb::cv_policy& p) { return dec.set_default(p); }, + pybind11::arg("policy"), + "A cv_policy used to discretise the cell into compartments for simulation") .def("discretization", [](arb::decor& dec, const std::string& p) { - dec.set_default(arborio::parse_cv_policy_expression(p).unwrap()); + return dec.set_default(arborio::parse_cv_policy_expression(p).unwrap()); }, - pybind11::arg_v("policy", "An s-expression string representing a cv_policy used to discretise the " - "cell into compartments for simulation")); + pybind11::arg("policy"), + "An s-expression string representing a cv_policy used to discretise the " + "cell into compartments for simulation"); // arb::cable_cell diff --git a/python/context.cpp b/python/context.cpp index 80fcbc61c9..2f0e6ffd6f 100644 --- a/python/context.cpp +++ b/python/context.cpp @@ -92,7 +92,7 @@ context_shim create_context(unsigned threads, pybind11::object gpu, pybind11::ob return context_shim(arb::make_context(alloc, c->comm)); } #endif - return context_shim(arb::make_context(alloc)); + return context_shim{arb::make_context(alloc)}; } std::ostream& operator<<(std::ostream& o, const proc_allocation_shim& alloc) { @@ -123,7 +123,7 @@ void register_contexts(pybind11::module& m) { .def("__repr__", util::to_string); // context - pybind11::class_ context(m, "context", "An opaque handle for the hardware resources used in a simulation."); + pybind11::class_> context(m, "context", "An opaque handle for the hardware resources used in a simulation."); context .def(pybind11::init( [](unsigned threads, pybind11::object gpu, pybind11::object mpi){ @@ -161,7 +161,12 @@ void register_contexts(pybind11::module& m) { throw pyarb_error("Attempt to set an MPI communicator but Arbor is not configured with MPI support."); } #else - const char* mpi_err_str = "mpi must be None, or an MPI communicator"; + const char* mpi_err_str = "mpi must be None, or a known MPI communicator type. Supported MPI implementations = native" +#ifdef ARB_WITH_MPI4PY + ", mpi4py."; +#else + ". Consider installing mpi4py and rebuilding Arbor."; +#endif if (can_convert_to_mpi_comm(mpi)) { return context_shim(arb::make_context(a, convert_to_mpi_comm(mpi))); } diff --git a/python/context.hpp b/python/context.hpp index 8fff4bc3b2..3ba8bfe4e5 100644 --- a/python/context.hpp +++ b/python/context.hpp @@ -6,7 +6,7 @@ namespace pyarb { struct context_shim { arb::context context; - context_shim(arb::context&& c): context(std::move(c)) {} + context_shim(arb::context c): context{c} {} }; } // namespace pyarb diff --git a/python/env.cpp b/python/env.cpp new file mode 100644 index 0000000000..e194078169 --- /dev/null +++ b/python/env.cpp @@ -0,0 +1,35 @@ +#include + +#include + +#include "mpi.hpp" +#include "error.hpp" + +namespace pyarb { + + void register_arborenv(pybind11::module& m) { + auto s = m.def_submodule("env", "Wrappers for arborenv."); + s.def("find_private_gpu", + [] (pybind11::object mpi) { +#ifndef ARB_GPU_ENABLED + throw pyarb_error("Private GPU: Arbor is not configured with GPU support."); +#else +#ifndef ARB_MPI_ENABLED + throw pyarb_error("Private GPU: Arbor is not configured with MPI."); +#else + auto err = ""Private GPU: Invalid MPI Communicator.""; + if (can_convert_to_mpi_comm(mpi)) { + return arbenv::find_private_gpu(can_convert_to_mpi_comm(mpi)); + } + else if (auto c = py2optional(mpi, err)) { + return arbenv::find_private_gpu(c->comm); + } else { + throw pyarb_error(err); + } +#endif +#endif + }, + "Identify a private GPU id per node, only available if built with GPU and MPI.\n" + " mpi: The MPI communicator."); + } +} diff --git a/python/example/brunel.py b/python/example/brunel.py index 30dc11e241..a147e73784 100755 --- a/python/example/brunel.py +++ b/python/example/brunel.py @@ -1,42 +1,58 @@ #!/usr/bin/env python3 import arbor -import numpy,argparse - -''' -A Brunel network consists of nexc excitatory LIF neurons and ninh inhibitory LIF neurons. -Each neuron in the network receives in_degree_prop * nexc excitatory connections -chosen randomly, in_degree_prop * ninh inhibitory connections and next (external) Poisson connections. -All the connections have the same delay. The strenght of excitatory and Poisson connections is given by -parameter weight, whereas the strength of inhibitory connections is rel_inh_strength * weight. -Poisson neurons all spike independently with expected number of spikes given by parameter poiss_lambda. -Because of the refractory period, the activity is mostly driven by Poisson neurons and -recurrent connections have a small effect. +import argparse +import numpy as np +from numpy.random import RandomState + +""" +A Brunel network consists of nexc excitatory LIF neurons and ninh inhibitory +LIF neurons. Each neuron in the network receives in_degree_prop * nexc +excitatory connections chosen randomly, in_degree_prop * ninh inhibitory +connections and next (external) Poisson connections. All the connections have +the same delay. The strenght of excitatory and Poisson connections is given by +parameter weight, whereas the strength of inhibitory connections is +rel_inh_strength * weight. Poisson neurons all spike independently with expected +number of spikes given by parameter poiss_lambda. Because of the refractory +period, the activity is mostly driven by Poisson neurons and recurrent +connections have a small effect. Call with parameters, for example: ./brunel.py -n 400 -m 100 -e 20 -p 0.1 -w 1.2 -d 1 -g 0.5 -l 5 -t 100 -s 1 -G 50 -S 123 -f spikes.txt +""" -''' # Samples m unique values in interval [start, end) - gid. # We exclude gid because we don't want self-loops. -def sample_subset(gid, start, end, m): - gen = numpy.random.RandomState(gid+42) - s = set() - while len(s) < m: - val = gen.randint(low=start,high=end) - if val != gid: - s.add(val) - return s - -class brunel_recipe (arbor.recipe): - def __init__(self, nexc, ninh, next, in_degree_prop, weight, delay, rel_inh_strength, poiss_lambda, seed = 42): +def sample_subset(gen, gid, start, end, m): + idx = np.arange(start, end) + if start <= gid < end: + idx = np.delete(idx, gid - start) + gen.shuffle(idx) + return idx[:m] + + +class brunel_recipe(arbor.recipe): + def __init__( + self, + nexc, + ninh, + next, + in_degree_prop, + weight, + delay, + rel_inh_strength, + poiss_lambda, + seed=42, + ): arbor.recipe.__init__(self) # Make sure that in_degree_prop in the interval (0, 1] - if not 0.020.3f}" for v in d[ix, :]) + " |") + print("|-" + "-+-".join("-" * 20 for _ in range(d.shape[1])) + "-|") +ax.legend() +fg.savefig("results.pdf") diff --git a/python/example/dynamic-catalogue.py b/python/example/dynamic-catalogue.py index 773eab0415..64c74cc926 100644 --- a/python/example/dynamic-catalogue.py +++ b/python/example/dynamic-catalogue.py @@ -4,7 +4,8 @@ import arbor as arb -cat = 'cat-catalogue.so' +cat = Path("cat-catalogue.so").resolve() + class recipe(arb.recipe): def __init__(self): @@ -13,9 +14,7 @@ def __init__(self): self.tree.append(arb.mnpos, (0, 0, 0, 10), (1, 0, 0, 10), 1) self.props = arb.neuron_cable_properties() self.props.catalogue = arb.load_catalogue(cat) - d = arb.decor() - d.paint('(all)', 'dummy') - d.set_property(Vm=0.0) + d = arb.decor().paint("(all)", "dummy").set_property(Vm=0.0) self.cell = arb.cable_cell(self.tree, arb.label_dict(), d) def global_properties(self, _): @@ -30,15 +29,16 @@ def cell_kind(self, gid): def cell_description(self, gid): return self.cell -if not Path(cat).is_file(): - print("""Catalogue not found in this directory. -Please ensure it has been compiled by calling") - /scripts/build-catalogue cat /python/examples/cat -where is the location of the arbor source tree.""") + +if not cat.is_file(): + print( + """Catalogue not found in this directory. +Please ensure it has been compiled by calling + /scripts/build-catalogue cat /python/example/cat +where is the location of the arbor source tree.""" + ) exit(1) rcp = recipe() -ctx = arb.context() -dom = arb.partition_load_balance(rcp, ctx) -sim = arb.simulation(rcp, dom, ctx) +sim = arb.simulation(rcp) sim.run(tfinal=30) diff --git a/python/example/gap_junctions.py b/python/example/gap_junctions.py index 8985b3f330..2f93e22424 100644 --- a/python/example/gap_junctions.py +++ b/python/example/gap_junctions.py @@ -1,7 +1,8 @@ #!/usr/bin/env python3 import arbor -import pandas, seaborn +import pandas +import seaborn import matplotlib.pyplot as plt # Construct chains of cells linked with gap junctions, @@ -18,49 +19,47 @@ def make_cable_cell(gid): - + # Build a segment tree tree = arbor.segment_tree() # Soma with radius 5 μm and length 2 * radius = 10 μm, (tag = 1) - s = tree.append(arbor.mnpos, arbor.mpoint(-10, 0, 0, 5), arbor.mpoint(0, 0, 0, 5), tag=1) + s = tree.append( + arbor.mnpos, arbor.mpoint(-10, 0, 0, 5), arbor.mpoint(0, 0, 0, 5), tag=1 + ) # Single dendrite with radius 2 μm and length 40 μm, (tag = 2) - b = tree.append(s, arbor.mpoint(0, 0, 0, 2), arbor.mpoint(40, 0, 0, 2), tag=2) + tree.append(s, arbor.mpoint(0, 0, 0, 2), arbor.mpoint(40, 0, 0, 2), tag=2) # Label dictionary for cell components - labels = arbor.label_dict() - labels['soma'] = '(tag 1)' - labels['dend'] = '(tag 2)' - - # Mark location for synapse site at midpoint of dendrite (branch 0 = soma + dendrite) - labels['synapse_site'] = '(location 0 0.6)' - - # Gap junction site at connection point of soma and dendrite - labels['gj_site'] = '(location 0 0.2)' - - # Label root of the tree - labels['root'] = '(root)' + labels = arbor.label_dict( + { + # Mark location for synapse site at midpoint of dendrite (branch 0 soma + dendrite) + "synapse_site": "(location 0 0.6)", + # Gap junction site at connection point of soma and dendrite + "gj_site": "(location 0 0.2)", + # Label root of the tree + "root": "(root)", + } + ).add_swc_tags() # Paint dynamics onto the cell, hh on soma and passive properties on dendrite - decor = arbor.decor() - decor.paint('"soma"', arbor.density("hh")) - decor.paint('"dend"', arbor.density("pas")) - - # Attach one synapse and gap junction each on their labeled sites - decor.place('"synapse_site"', arbor.synapse('expsyn'), 'syn') - decor.place('"gj_site"', arbor.junction('gj'), 'gj') - - # Attach spike detector to cell root - decor.place('"root"', arbor.spike_detector(-10), 'detector') + decor = ( + arbor.decor() + .paint('"soma"', arbor.density("hh")) + .paint('"dend"', arbor.density("pas")) + # Attach one synapse and gap junction each on their labeled sites + .place('"synapse_site"', arbor.synapse("expsyn"), "syn") + .place('"gj_site"', arbor.junction("gj"), "gj") + # Attach spike detector to cell root + .place('"root"', arbor.spike_detector(-10), "detector") + ) - cell = arbor.cable_cell(tree, labels, decor) + return arbor.cable_cell(tree, labels, decor) - return cell # Create a recipe that generates connected chains of cells class chain_recipe(arbor.recipe): - def __init__(self, ncells_per_chain, nchains): arbor.recipe.__init__(self) self.nchains = nchains @@ -81,34 +80,34 @@ def connections_on(self, gid): if (gid == 0) or (gid % self.ncells_per_chain > 0): return [] else: - src = gid-1 - w = 0.05 - d = 10 - return [arbor.connection((src,'detector'), 'syn', w, d)] - + src = gid - 1 + w = 0.05 + d = 10 + return [arbor.connection((src, "detector"), "syn", w, d)] + # Create gap junction connections between a cell within a chain and its neighbor(s) def gap_junctions_on(self, gid): conns = [] - chain_begin = int(gid/self.ncells_per_chain) * self.ncells_per_chain - chain_end = chain_begin + self.ncells_per_chain + chain_begin = int(gid / self.ncells_per_chain) * self.ncells_per_chain + chain_end = chain_begin + self.ncells_per_chain next_cell = gid + 1 prev_cell = gid - 1 if next_cell < chain_end: - conns.append(arbor.gap_junction_connection((gid+1, 'gj'), 'gj', 0.015)) + conns.append(arbor.gap_junction_connection((gid + 1, "gj"), "gj", 0.015)) if prev_cell >= chain_begin: - conns.append(arbor.gap_junction_connection((gid-1, 'gj'), 'gj', 0.015)) - + conns.append(arbor.gap_junction_connection((gid - 1, "gj"), "gj", 0.015)) + return conns # Event generator at first cell def event_generators(self, gid): - if gid==0: + if gid == 0: sched = arbor.explicit_schedule([1]) weight = 0.1 - return [arbor.event_generator('syn', weight, sched)] + return [arbor.event_generator("syn", weight, sched)] return [] # Place a probe at the root of each cell @@ -118,6 +117,7 @@ def probes(self, gid): def global_properties(self, kind): return self.props + # Number of cells per chain ncells_per_chain = 5 @@ -127,13 +127,11 @@ def global_properties(self, kind): # Total number of cells ncells = nchains * ncells_per_chain -#Instantiate recipe +# Instantiate recipe recipe = chain_recipe(ncells_per_chain, nchains) -# Create a default execution context, domain decomposition and simulation -context = arbor.context() -decomp = arbor.partition_load_balance(recipe, context) -sim = arbor.simulation(recipe, decomp, context) +# Create a default simulation +sim = arbor.simulation(recipe) # Set spike generators to record sim.record(arbor.spike_recording.all) @@ -143,20 +141,24 @@ def global_properties(self, kind): # Run simulation for 100 ms sim.run(100) -print('Simulation finished') +print("Simulation finished") # Print spike times -print('spikes:') +print("spikes:") for sp in sim.spikes(): - print(' ', sp) + print(" ", sp) # Plot the results print("Plotting results ...") df_list = [] for gid in range(ncells): samples, meta = sim.samples(handles[gid])[0] - df_list.append(pandas.DataFrame({'t/ms': samples[:, 0], 'U/mV': samples[:, 1], 'Cell': f"cell {gid}"})) - -df = pandas.concat(df_list,ignore_index=True) -seaborn.relplot(data=df, kind="line", x="t/ms", y="U/mV",hue="Cell",ci=None) + df_list.append( + pandas.DataFrame( + {"t/ms": samples[:, 0], "U/mV": samples[:, 1], "Cell": f"cell {gid}"} + ) + ) + +df = pandas.concat(df_list, ignore_index=True) +seaborn.relplot(data=df, kind="line", x="t/ms", y="U/mV", hue="Cell", ci=None) plt.show() diff --git a/python/example/network_ring.py b/python/example/network_ring.py index 6794d23815..6013131001 100755 --- a/python/example/network_ring.py +++ b/python/example/network_ring.py @@ -2,7 +2,8 @@ # This script is included in documentation. Adapt line numbers if touched. import arbor -import pandas, seaborn +import pandas # You may have to pip install these +import seaborn # You may have to pip install these from math import sqrt # Construct a cell with the following morphology. @@ -15,52 +16,63 @@ # \ # b2 + def make_cable_cell(gid): # (1) Build a segment tree tree = arbor.segment_tree() # Soma (tag=1) with radius 6 μm, modelled as cylinder of length 2*radius - s = tree.append(arbor.mnpos, arbor.mpoint(-12, 0, 0, 6), arbor.mpoint(0, 0, 0, 6), tag=1) + s = tree.append( + arbor.mnpos, arbor.mpoint(-12, 0, 0, 6), arbor.mpoint(0, 0, 0, 6), tag=1 + ) - # Single dendrite (tag=3) of length 50 μm and radius 2 μm attached to soma. + # (b0) Single dendrite (tag=3) of length 50 μm and radius 2 μm attached to soma. b0 = tree.append(s, arbor.mpoint(0, 0, 0, 2), arbor.mpoint(50, 0, 0, 2), tag=3) # Attach two dendrites (tag=3) of length 50 μm to the end of the first dendrite. - # Radius tapers from 2 to 0.5 μm over the length of the dendrite. - b1 = tree.append(b0, arbor.mpoint(50, 0, 0, 2), arbor.mpoint(50+50/sqrt(2), 50/sqrt(2), 0, 0.5), tag=3) - # Constant radius of 1 μm over the length of the dendrite. - b2 = tree.append(b0, arbor.mpoint(50, 0, 0, 1), arbor.mpoint(50+50/sqrt(2), -50/sqrt(2), 0, 1), tag=3) + # (b1) Radius tapers from 2 to 0.5 μm over the length of the dendrite. + tree.append( + b0, + arbor.mpoint(50, 0, 0, 2), + arbor.mpoint(50 + 50 / sqrt(2), 50 / sqrt(2), 0, 0.5), + tag=3, + ) + # (b2) Constant radius of 1 μm over the length of the dendrite. + tree.append( + b0, + arbor.mpoint(50, 0, 0, 1), + arbor.mpoint(50 + 50 / sqrt(2), -50 / sqrt(2), 0, 1), + tag=3, + ) # Associate labels to tags - labels = arbor.label_dict() - labels['soma'] = '(tag 1)' - labels['dend'] = '(tag 3)' - - # (2) Mark location for synapse at the midpoint of branch 1 (the first dendrite). - labels['synapse_site'] = '(location 1 0.5)' - # Mark the root of the tree. - labels['root'] = '(root)' + labels = arbor.label_dict( + { + "soma": "(tag 1)", + "dend": "(tag 3)", + # (2) Mark location for synapse at the midpoint of branch 1 (the first dendrite). + "synapse_site": "(location 1 0.5)", + # Mark the root of the tree. + "root": "(root)", + } + ) # (3) Create a decor and a cable_cell - decor = arbor.decor() - - # Put hh dynamics on soma, and passive properties on the dendrites. - decor.paint('"soma"', arbor.density('hh')) - decor.paint('"dend"', arbor.density('pas')) - - # (4) Attach a single synapse. - decor.place('"synapse_site"', arbor.synapse('expsyn'), 'syn') + decor = ( + arbor.decor() + # Put hh dynamics on soma, and passive properties on the dendrites. + .paint('"soma"', arbor.density("hh")).paint('"dend"', arbor.density("pas")) + # (4) Attach a single synapse. + .place('"synapse_site"', arbor.synapse("expsyn"), "syn") + # Attach a spike detector with threshold of -10 mV. + .place('"root"', arbor.spike_detector(-10), "detector") + ) - # Attach a spike detector with threshold of -10 mV. - decor.place('"root"', arbor.spike_detector(-10), 'detector') + return arbor.cable_cell(tree, labels, decor) - cell = arbor.cable_cell(tree, labels, decor) - - return cell # (5) Create a recipe that generates a network of connected cells. -class ring_recipe (arbor.recipe): - +class ring_recipe(arbor.recipe): def __init__(self, ncells): # The base C++ class constructor must be called first, to ensure that # all memory in the C++ class is initialized correctly. @@ -84,17 +96,17 @@ def cell_kind(self, gid): # (8) Make a ring network. For each gid, provide a list of incoming connections. def connections_on(self, gid): - src = (gid-1)%self.ncells - w = 0.01 # 0.01 μS on expsyn - d = 5 # ms delay - return [arbor.connection((src,'detector'), 'syn', w, d)] + src = (gid - 1) % self.ncells + w = 0.01 # 0.01 μS on expsyn + d = 5 # ms delay + return [arbor.connection((src, "detector"), "syn", w, d)] # (9) Attach a generator to the first cell in the ring. def event_generators(self, gid): - if gid==0: - sched = arbor.explicit_schedule([1]) # one event at 1 ms - weight = 0.1 # 0.1 μS on expsyn - return [arbor.event_generator('syn', weight, sched)] + if gid == 0: + sched = arbor.explicit_schedule([1]) # one event at 1 ms + weight = 0.1 # 0.1 μS on expsyn + return [arbor.event_generator("syn", weight, sched)] return [] # (10) Place a probe at the root of each cell. @@ -104,14 +116,14 @@ def probes(self, gid): def global_properties(self, kind): return self.props + # (11) Instantiate recipe ncells = 4 recipe = ring_recipe(ncells) -# (12) Create a default execution context, domain decomposition and simulation -context = arbor.context() -decomp = arbor.partition_load_balance(recipe, context) -sim = arbor.simulation(recipe, decomp, context) +# (12) Create an execution context using all locally available threads and simulation +ctx = arbor.context("avail_threads") +sim = arbor.simulation(recipe, ctx) # (13) Set spike generators to record sim.record(arbor.spike_recording.all) @@ -121,19 +133,25 @@ def global_properties(self, kind): # (15) Run simulation for 100 ms sim.run(100) -print('Simulation finished') +print("Simulation finished") # (16) Print spike times -print('spikes:') +print("spikes:") for sp in sim.spikes(): - print(' ', sp) + print(" ", sp) # (17) Plot the recorded voltages over time. print("Plotting results ...") df_list = [] for gid in range(ncells): samples, meta = sim.samples(handles[gid])[0] - df_list.append(pandas.DataFrame({'t/ms': samples[:, 0], 'U/mV': samples[:, 1], 'Cell': f"cell {gid}"})) - -df = pandas.concat(df_list,ignore_index=True) -seaborn.relplot(data=df, kind="line", x="t/ms", y="U/mV",hue="Cell",ci=None).savefig('network_ring_result.svg') + df_list.append( + pandas.DataFrame( + {"t/ms": samples[:, 0], "U/mV": samples[:, 1], "Cell": f"cell {gid}"} + ) + ) + +df = pandas.concat(df_list, ignore_index=True) +seaborn.relplot(data=df, kind="line", x="t/ms", y="U/mV", hue="Cell", ci=None).savefig( + "network_ring_result.svg" +) diff --git a/python/example/network_ring_gpu.py b/python/example/network_ring_gpu.py new file mode 100644 index 0000000000..3d071d1649 --- /dev/null +++ b/python/example/network_ring_gpu.py @@ -0,0 +1,184 @@ +#!/usr/bin/env python3 +# This script is included in documentation. Adapt line numbers if touched. + +import arbor +import pandas # You may have to pip install these +import seaborn # You may have to pip install these +from math import sqrt + +# Construct a cell with the following morphology. +# The soma (at the root of the tree) is marked 's', and +# the end of each branch i is marked 'bi'. +# +# b1 +# / +# s----b0 +# \ +# b2 + + +def make_cable_cell(gid): + # (1) Build a segment tree + tree = arbor.segment_tree() + + # Soma (tag=1) with radius 6 μm, modelled as cylinder of length 2*radius + s = tree.append( + arbor.mnpos, arbor.mpoint(-12, 0, 0, 6), arbor.mpoint(0, 0, 0, 6), tag=1 + ) + + # Single dendrite (tag=3) of length 50 μm and radius 2 μm attached to soma. + b0 = tree.append(s, arbor.mpoint(0, 0, 0, 2), arbor.mpoint(50, 0, 0, 2), tag=3) + + # Attach two dendrites (tag=3) of length 50 μm to the end of the first dendrite. + # As there's no further use for them, we discard the returned handles. + # (b1) Radius tapers from 2 to 0.5 μm over the length of the dendrite. + _ = tree.append( + b0, + arbor.mpoint(50, 0, 0, 2), + arbor.mpoint(50 + 50 / sqrt(2), 50 / sqrt(2), 0, 0.5), + tag=3, + ) + # (b2) Constant radius of 1 μm over the length of the dendrite. + _ = tree.append( + b0, + arbor.mpoint(50, 0, 0, 1), + arbor.mpoint(50 + 50 / sqrt(2), -50 / sqrt(2), 0, 1), + tag=3, + ) + + # Associate labels to tags + labels = arbor.label_dict() + labels["soma"] = "(tag 1)" + labels["dend"] = "(tag 3)" + + # (2) Mark location for synapse at the midpoint of branch 1 (the first dendrite). + labels["synapse_site"] = "(location 1 0.5)" + # Mark the root of the tree. + labels["root"] = "(root)" + + # (3) Create a decor and a cable_cell + decor = arbor.decor() + + # Put hh dynamics on soma, and passive properties on the dendrites. + decor.paint('"soma"', arbor.density("hh")) + decor.paint('"dend"', arbor.density("pas")) + + # (4) Attach a single synapse. + decor.place('"synapse_site"', arbor.synapse("expsyn"), "syn") + + # Attach a spike detector with threshold of -10 mV. + decor.place('"root"', arbor.spike_detector(-10), "detector") + + cell = arbor.cable_cell(tree, labels, decor) + + return cell + + +# (5) Create a recipe that generates a network of connected cells. +class ring_recipe(arbor.recipe): + def __init__(self, ncells): + # The base C++ class constructor must be called first, to ensure that + # all memory in the C++ class is initialized correctly. + arbor.recipe.__init__(self) + self.ncells = ncells + self.props = arbor.neuron_cable_properties() + + # (6) The num_cells method that returns the total number of cells in the model + # must be implemented. + def num_cells(self): + return self.ncells + + # (7) The cell_description method returns a cell + def cell_description(self, gid): + return make_cable_cell(gid) + + # The kind method returns the type of cell with gid. + # Note: this must agree with the type returned by cell_description. + def cell_kind(self, gid): + return arbor.cell_kind.cable + + # (8) Make a ring network. For each gid, provide a list of incoming connections. + def connections_on(self, gid): + src = (gid - 1) % self.ncells + w = 0.01 # 0.01 μS on expsyn + d = 5 # ms delay + return [arbor.connection((src, "detector"), "syn", w, d)] + + # (9) Attach a generator to the first cell in the ring. + def event_generators(self, gid): + if gid == 0: + sched = arbor.explicit_schedule([1]) # one event at 1 ms + weight = 0.1 # 0.1 μS on expsyn + return [arbor.event_generator("syn", weight, sched)] + return [] + + # (10) Place a probe at the root of each cell. + def probes(self, gid): + return [arbor.cable_probe_membrane_voltage('"root"')] + + def global_properties(self, kind): + return self.props + + +# (11) Set up the hardware context +# gpu_id set to None will not use a GPU. +# gpu_id=0 instructs Arbor to the first GPU present in your system +context = arbor.context(threads="avail_threads", gpu_id=None) +print(context) + +# (12) Set up and start the meter manager +meters = arbor.meter_manager() +meters.start(context) + +# (13) Instantiate recipe +ncells = 50 +recipe = ring_recipe(ncells) +meters.checkpoint("recipe-create", context) + +# (14) Define a hint at to the execution. +hint = arbor.partition_hint() +hint.prefer_gpu = True +hint.gpu_group_size = 1000 +print(hint) +hints = {arbor.cell_kind.cable: hint} + +# (15) Domain decomp +decomp = arbor.partition_load_balance(recipe, context, hints) +print(decomp) +meters.checkpoint("load-balance", context) + +# (16) Simulation init and set spike generators to record +sim = arbor.simulation(recipe, context, decomp) +sim.record(arbor.spike_recording.all) +handles = [sim.sample((gid, 0), arbor.regular_schedule(1)) for gid in range(ncells)] +meters.checkpoint("simulation-init", context) + +# (17) Run simulation +sim.run(ncells * 5) +print("Simulation finished") +meters.checkpoint("simulation-run", context) + +# (18) Results +# Print profiling information +print(f"{arbor.meter_report(meters, context)}") + +# Print spike times +print("spikes:") +for sp in sim.spikes(): + print(" ", sp) + +# Plot the recorded voltages over time. +print("Plotting results ...") +df_list = [] +for gid in range(ncells): + samples, meta = sim.samples(handles[gid])[0] + df_list.append( + pandas.DataFrame( + {"t/ms": samples[:, 0], "U/mV": samples[:, 1], "Cell": f"cell {gid}"} + ) + ) + +df = pandas.concat(df_list, ignore_index=True) +seaborn.relplot(data=df, kind="line", x="t/ms", y="U/mV", hue="Cell", ci=None).savefig( + "network_ring_gpu_result.svg" +) diff --git a/python/example/network_ring_mpi.py b/python/example/network_ring_mpi.py index a403d9484d..6892a498ee 100644 --- a/python/example/network_ring_mpi.py +++ b/python/example/network_ring_mpi.py @@ -2,7 +2,7 @@ # This script is included in documentation. Adapt line numbers if touched. import arbor -import pandas, seaborn +import pandas from math import sqrt # Run with srun -n NJOBS python network_ring_mpi.py @@ -17,52 +17,64 @@ # \ # b2 + def make_cable_cell(gid): # (1) Build a segment tree tree = arbor.segment_tree() # Soma (tag=1) with radius 6 μm, modelled as cylinder of length 2*radius - s = tree.append(arbor.mnpos, arbor.mpoint(-12, 0, 0, 6), arbor.mpoint(0, 0, 0, 6), tag=1) + s = tree.append( + arbor.mnpos, arbor.mpoint(-12, 0, 0, 6), arbor.mpoint(0, 0, 0, 6), tag=1 + ) # Single dendrite (tag=3) of length 50 μm and radius 2 μm attached to soma. b0 = tree.append(s, arbor.mpoint(0, 0, 0, 2), arbor.mpoint(50, 0, 0, 2), tag=3) # Attach two dendrites (tag=3) of length 50 μm to the end of the first dendrite. - # Radius tapers from 2 to 0.5 μm over the length of the dendrite. - b1 = tree.append(b0, arbor.mpoint(50, 0, 0, 2), arbor.mpoint(50+50/sqrt(2), 50/sqrt(2), 0, 0.5), tag=3) - # Constant radius of 1 μm over the length of the dendrite. - b2 = tree.append(b0, arbor.mpoint(50, 0, 0, 1), arbor.mpoint(50+50/sqrt(2), -50/sqrt(2), 0, 1), tag=3) + # As there's no further use for them, we discard the returned handles. + # (b1) Radius tapers from 2 to 0.5 μm over the length of the dendrite. + _ = tree.append( + b0, + arbor.mpoint(50, 0, 0, 2), + arbor.mpoint(50 + 50 / sqrt(2), 50 / sqrt(2), 0, 0.5), + tag=3, + ) + # (b2) Constant radius of 1 μm over the length of the dendrite. + _ = tree.append( + b0, + arbor.mpoint(50, 0, 0, 1), + arbor.mpoint(50 + 50 / sqrt(2), -50 / sqrt(2), 0, 1), + tag=3, + ) # Associate labels to tags - labels = arbor.label_dict() - labels['soma'] = '(tag 1)' - labels['dend'] = '(tag 3)' - - # (2) Mark location for synapse at the midpoint of branch 1 (the first dendrite). - labels['synapse_site'] = '(location 1 0.5)' - # Mark the root of the tree. - labels['root'] = '(root)' + labels = arbor.label_dict( + { + "soma": "(tag 1)", + "dend": "(tag 3)", + # (2) Mark location for synapse at the midpoint of branch 1 (the first dendrite). + "synapse_site": "(location 1 0.5)", + # Mark the root of the tree. + "root": "(root)", + } + ) # (3) Create a decor and a cable_cell - decor = arbor.decor() - - # Put hh dynamics on soma, and passive properties on the dendrites. - decor.paint('"soma"', arbor.density('hh')) - decor.paint('"dend"', arbor.density('pas')) - - # (4) Attach a single synapse. - decor.place('"synapse_site"', arbor.synapse('expsyn'), 'syn') + decor = ( + arbor.decor() + # Put hh dynamics on soma, and passive properties on the dendrites. + .paint('"soma"', arbor.density("hh")).paint('"dend"', arbor.density("pas")) + # (4) Attach a single synapse. + .place('"synapse_site"', arbor.synapse("expsyn"), "syn") + # Attach a spike detector with threshold of -10 mV. + .place('"root"', arbor.spike_detector(-10), "detector") + ) - # Attach a spike detector with threshold of -10 mV. - decor.place('"root"', arbor.spike_detector(-10), 'detector') + return arbor.cable_cell(tree, labels, decor) - cell = arbor.cable_cell(tree, labels, decor) - - return cell # (5) Create a recipe that generates a network of connected cells. -class ring_recipe (arbor.recipe): - +class ring_recipe(arbor.recipe): def __init__(self, ncells): # The base C++ class constructor must be called first, to ensure that # all memory in the C++ class is initialized correctly. @@ -86,17 +98,17 @@ def cell_kind(self, gid): # (8) Make a ring network. For each gid, provide a list of incoming connections. def connections_on(self, gid): - src = (gid-1)%self.ncells - w = 0.01 # 0.01 μS on expsyn - d = 5 # ms delay - return [arbor.connection((src,'detector'), 'syn', w, d)] + src = (gid - 1) % self.ncells + w = 0.01 # 0.01 μS on expsyn + d = 5 # ms delay + return [arbor.connection((src, "detector"), "syn", w, d)] # (9) Attach a generator to the first cell in the ring. def event_generators(self, gid): - if gid==0: - sched = arbor.explicit_schedule([1]) # one event at 1 ms - weight = 0.1 # 0.1 μS on expsyn - return [arbor.event_generator('syn', weight, sched)] + if gid == 0: + sched = arbor.explicit_schedule([1]) # one event at 1 ms + weight = 0.1 # 0.1 μS on expsyn + return [arbor.event_generator("syn", weight, sched)] return [] # (10) Place a probe at the root of each cell. @@ -106,6 +118,7 @@ def probes(self, gid): def global_properties(self, kind): return self.props + # (11) Instantiate recipe ncells = 500 recipe = ring_recipe(ncells) @@ -118,8 +131,7 @@ def global_properties(self, kind): print(context) # (13) Create a default domain decomposition and simulation -decomp = arbor.partition_load_balance(recipe, context) -sim = arbor.simulation(recipe, decomp, context) +sim = arbor.simulation(recipe, context) # (14) Set spike generators to record sim.record(arbor.spike_recording.all) @@ -129,17 +141,21 @@ def global_properties(self, kind): handles = [sim.sample((gid, 0), arbor.regular_schedule(1)) for gid in range(ncells)] # (16) Run simulation -sim.run(ncells*5) -print('Simulation finished') +sim.run(ncells * 5) +print("Simulation finished") -# (17) Plot the recorded voltages over time. -print('Storing results ...') +# (17) Store the recorded voltages +print("Storing results ...") df_list = [] for gid in range(ncells): if len(sim.samples(handles[gid])): samples, meta = sim.samples(handles[gid])[0] - df_list.append(pandas.DataFrame({'t/ms': samples[:, 0], 'U/mV': samples[:, 1], 'Cell': f"cell {gid}"})) + df_list.append( + pandas.DataFrame( + {"t/ms": samples[:, 0], "U/mV": samples[:, 1], "Cell": f"cell {gid}"} + ) + ) if len(df_list): - df = pandas.concat(df_list,ignore_index=True) - df.to_csv(f"result_mpi_{context.rank}.csv", float_format='%g') + df = pandas.concat(df_list, ignore_index=True) + df.to_csv(f"result_mpi_{context.rank}.csv", float_format="%g") diff --git a/python/example/network_ring_mpi_plot.py b/python/example/network_ring_mpi_plot.py index 5f54baefa8..d5ea5d325b 100644 --- a/python/example/network_ring_mpi_plot.py +++ b/python/example/network_ring_mpi_plot.py @@ -2,7 +2,8 @@ # This script is included in documentation. Adapt line numbers if touched. import glob -import pandas, seaborn +import pandas +import seaborn results = glob.glob("result_mpi_*.csv") @@ -10,5 +11,7 @@ for result in results: df_list.append(pandas.read_csv(result)) -df = pandas.concat(df_list,ignore_index=True) -seaborn.relplot(data=df, kind="line", x="t/ms", y="U/mV",hue="Cell",ci=None).savefig('mpi_result.svg') +df = pandas.concat(df_list, ignore_index=True) +seaborn.relplot(data=df, kind="line", x="t/ms", y="U/mV", hue="Cell", ci=None).savefig( + "mpi_result.svg" +) diff --git a/python/example/two_cell_gap_junctions.py b/python/example/network_two_cells_gap_junctions.py similarity index 53% rename from python/example/two_cell_gap_junctions.py rename to python/example/network_two_cells_gap_junctions.py index 844b2f90a0..95fd830ec4 100755 --- a/python/example/two_cell_gap_junctions.py +++ b/python/example/network_two_cells_gap_junctions.py @@ -4,15 +4,15 @@ import argparse import numpy as np -import pandas +import pandas # You may have to pip install these. import seaborn # You may have to pip install these. import matplotlib.pyplot as plt class TwoCellsWithGapJunction(arbor.recipe): - def __init__(self, probes, - Vms, length, radius, cm, rL, g, gj_g, - cv_policy_max_extent): + def __init__( + self, probes, Vms, length, radius, cm, rL, g, gj_g, cv_policy_max_extent + ): """ probes -- list of probes @@ -73,22 +73,24 @@ def cell_description(self, gid): tree = arbor.segment_tree() - tree.append(arbor.mnpos, - arbor.mpoint(0, 0, 0, self.radius), - arbor.mpoint(self.length, 0, 0, self.radius), - tag=1) - - labels = arbor.label_dict({'cell' : '(tag 1)', 'gj_site': '(location 0 0.5)'}) - - decor = arbor.decor() - decor.set_property(Vm=self.Vms[gid]) - decor.set_property(cm=self.cm) - decor.set_property(rL=self.rL) - - # add a gap junction mechanism at the "gj_site" location and label that specific mechanism on that location "gj_label" - junction_mech = arbor.junction('gj', {"g" : self.gj_g}) - decor.place('"gj_site"', junction_mech, 'gj_label') - decor.paint('"cell"', arbor.density(f'pas/e={self.Vms[gid]}', {'g': self.g})) + tree.append( + arbor.mnpos, + arbor.mpoint(0, 0, 0, self.radius), + arbor.mpoint(self.length, 0, 0, self.radius), + tag=1, + ) + + labels = arbor.label_dict({"cell": "(tag 1)", "gj_site": "(location 0 0.5)"}) + + decor = ( + arbor.decor() + .set_property(Vm=self.Vms[gid]) + .set_property(cm=self.cm) + .set_property(rL=self.rL) + # add a gap junction mechanism at the "gj_site" location and label that specific mechanism on that location "gj_label" + .place('"gj_site"', arbor.junction("gj", {"g": self.gj_g}), "gj_label") + .paint('"cell"', arbor.density(f"pas/e={self.Vms[gid]}", {"g": self.g})) + ) if self.cv_policy_max_extent is not None: policy = arbor.cv_policy_max_extent(self.cv_policy_max_extent) @@ -99,34 +101,51 @@ def cell_description(self, gid): return arbor.cable_cell(tree, labels, decor) def gap_junctions_on(self, gid): - assert gid in [0, 1] - # create a bidirectional gap junction from cell 0 at label "gj_label" to cell 1 at label "gj_label" and back. - return [arbor.gap_junction_connection((1 if gid == 0 else 0, 'gj_label'), 'gj_label', 1)] + + if gid == 0: + tgt = 1 + elif gid == 1: + tgt = 0 + else: + raise RuntimeError("Invalid GID for example.") + return [arbor.gap_junction_connection((tgt, "gj_label"), "gj_label", 1)] if __name__ == "__main__": - parser = argparse.ArgumentParser(description='Two cells connected via a gap junction') + parser = argparse.ArgumentParser( + description="Two cells connected via a gap junction" + ) parser.add_argument( - '--Vms', help="membrane leak potentials in mV", type=float, default=[-100, -60], nargs=2) - parser.add_argument( - '--length', help="cell length in μm", type=float, default=100) - parser.add_argument( - '--radius', help="cell radius in μm", type=float, default=3) + "--Vms", + help="membrane leak potentials in mV", + type=float, + default=[-100, -60], + nargs=2, + ) + parser.add_argument("--length", help="cell length in μm", type=float, default=100) + parser.add_argument("--radius", help="cell radius in μm", type=float, default=3) parser.add_argument( - '--cm', help="membrane capacitance in F/m^2", type=float, default=0.005) + "--cm", help="membrane capacitance in F/m^2", type=float, default=0.005 + ) parser.add_argument( - '--rL', help="axial resistivity in Ω·cm", type=float, default=90) + "--rL", help="axial resistivity in Ω·cm", type=float, default=90 + ) parser.add_argument( - '--g', help="membrane conductivity in S/cm^2", type=float, default=0.001) + "--g", help="membrane conductivity in S/cm^2", type=float, default=0.001 + ) parser.add_argument( - '--gj_g', help="gap junction conductivity in μS", type=float, default=0.01) + "--gj_g", help="gap junction conductivity in μS", type=float, default=0.01 + ) - parser.add_argument('--cv_policy_max_extent', - help="maximum extent of control volume in μm", type=float) + parser.add_argument( + "--cv_policy_max_extent", + help="maximum extent of control volume in μm", + type=float, + ) # parse the command line arguments args = parser.parse_args() @@ -135,17 +154,15 @@ def gap_junctions_on(self, gid): probes = [arbor.cable_probe_membrane_voltage('"gj_site"')] recipe = TwoCellsWithGapJunction(probes, **vars(args)) - # create a default execution context and a default domain decomposition - context = arbor.context() - domains = arbor.partition_load_balance(recipe, context) - # configure the simulation and handles for the probes - sim = arbor.simulation(recipe, domains, context) + sim = arbor.simulation(recipe) dt = 0.01 handles = [] for gid in [0, 1]: - handles += [sim.sample((gid, i), arbor.regular_schedule(dt)) for i in range(len(probes))] + handles += [ + sim.sample((gid, i), arbor.regular_schedule(dt)) for i in range(len(probes)) + ] # run the simulation for 5 ms sim.run(tfinal=5, dt=dt) @@ -155,33 +172,39 @@ def gap_junctions_on(self, gid): df_list = [] for probe in range(len(handles)): samples, meta = sim.samples(handles[probe])[0] - df_list.append(pandas.DataFrame({'t/ms': samples[:, 0], 'U/mV': samples[:, 1], 'Cell': f"{probe}"})) + df_list.append( + pandas.DataFrame( + {"t/ms": samples[:, 0], "U/mV": samples[:, 1], "Cell": f"{probe}"} + ) + ) - df = pandas.concat(df_list,ignore_index=True) + df = pandas.concat(df_list, ignore_index=True) fig, ax = plt.subplots() # plot the membrane potentials of the two cells as function of time - seaborn.lineplot(ax=ax,data=df, x="t/ms", y="U/mV",hue="Cell",ci=None) + seaborn.lineplot(ax=ax, data=df, x="t/ms", y="U/mV", hue="Cell", ci=None) # area of cells - area = args.length*1e-6 * 2*np.pi*args.radius*1e-6 + area = args.length * 1e-6 * 2 * np.pi * args.radius * 1e-6 # total conductance and resistance - cell_g = args.g/1e-4 * area - cell_R = 1/cell_g + cell_g = args.g / 1e-4 * area + cell_R = 1 / cell_g # gap junction conductance and resistance in base units - si_gj_g = args.gj_g*1e-6 - si_gj_R = 1/si_gj_g + si_gj_g = args.gj_g * 1e-6 + si_gj_R = 1 / si_gj_g # indicate the expected equilibrium potentials - for (i, j) in [[0,1], [1,0]]: - weighted_potential = args.Vms[i] + ((args.Vms[j] - args.Vms[i])*(si_gj_R + cell_R))/(2*cell_R + si_gj_R) - ax.axhline(weighted_potential, linestyle='dashed', color='black', alpha=0.5) + for (i, j) in [[0, 1], [1, 0]]: + weighted_potential = args.Vms[i] + ( + (args.Vms[j] - args.Vms[i]) * (si_gj_R + cell_R) + ) / (2 * cell_R + si_gj_R) + ax.axhline(weighted_potential, linestyle="dashed", color="black", alpha=0.5) # plot the initial/nominal resting potentials for gid, Vm in enumerate(args.Vms): - ax.axhline(Vm, linestyle='dashed', color='black', alpha=0.5) + ax.axhline(Vm, linestyle="dashed", color="black", alpha=0.5) - fig.savefig('two_cell_gap_junctions_result.svg') + fig.savefig("two_cell_gap_junctions_result.svg") diff --git a/python/example/plasticity.py b/python/example/plasticity.py new file mode 100644 index 0000000000..ee20edccfc --- /dev/null +++ b/python/example/plasticity.py @@ -0,0 +1,111 @@ +import arbor as A + + +class recipe(A.recipe): + def __init__(self, n): + # Call our parent; needed for proper initialization. + A.recipe.__init__(self) + # Cell count; should be at least 3 for the example to work. + assert n >= 3 + self.cells = n + # Uniform weights and delays for the connectivity. + self.weight = 0.75 + self.delay = 0.1 + # Track the connections from the source cell to a given gid. + self.connected = set() + + def num_cells(self): + return self.cells + + def cell_kind(self, gid): + # Cell 0 is the spike source, all others cable cells. + if gid == 0: + return A.cell_kind.spike_source + else: + return A.cell_kind.cable + + def global_properties(self, kind): + # Cable cells return the NRN defaults. + if kind == A.cell_kind.cable: + return A.neuron_cable_properties() + # Spike source cells have nothing to report. + return None + + def cell_description(self, gid): + # Cell 0 is reserved for the spike source, spiking every 0.0125ms. + if gid == 0: + return A.spike_source_cell("source", A.regular_schedule(0.0125)) + # All cells >= 1 are cable cells w/ a simple, soma-only morphology + # comprising two segments of radius r=3um and length l=3um *each*. + # + # +-- --+ ^ + # | * | 3um + # +-- --+ v + # < 6um > + # + # * Detectors and Synapses are here, at the midpoint. + r = 3 + tree = A.segment_tree() + tree.append(A.mnpos, A.mpoint(-r, 0, 0, r), A.mpoint(r, 0, 0, r), tag=1) + # ... and a synapse/detector pair + decor = A.decor() + # - just have a leaky membrane here. + decor.paint("(all)", A.density("pas")) + # - synapse to receive incoming spikes from the source cell. + decor.place("(location 0 0.5)", A.synapse("expsyn"), "synapse") + # - detector for reporting spikes on the cable cells. + decor.place("(location 0 0.5)", A.spike_detector(-10.0), "detector") + # return the cable cell description + return A.cable_cell(tree, A.label_dict(), decor) + + def connections_on(self, gid): + # If we have added a connection to this cell, return it, else nothing. + if gid in self.connected: + # Connect spike source to synapse(s) + return [A.connection((0, "source"), "synapse", self.weight, self.delay)] + return [] + + def add_connection_to_spike_source(self, to): + """Add a connection from the spike source at gid=0 to the cable cell + gid=. Note that we try to minimize the information stored here, + which is important with large networks. Also we cannot connect the + source back to itself. + """ + assert to != 0 + self.connected.add(to) + + +# Make an unconnected network with 2 cable cells and one spike source, +rec = recipe(3) + +# but before setting up anything, connect cable cell gid=1 to spike source gid=0 +# and make the simulation of the simple network +# +# spike_source ----> cable_cell +# +# cable_cell +# +# Note that the connection is just _recorded_ in the recipe, the actual connectivity +# is set up in the simulation construction. +rec.add_connection_to_spike_source(1) +sim = A.simulation(rec) +sim.record(A.spike_recording.all) + +# then run the simulation for a bit +sim.run(0.25, 0.025) + +# update the simulation to +# +# spike_source ----> cable_cell +# \ +# ----> cable_cell +rec.add_connection_to_spike_source(2) +sim.update(rec) + +# and run the simulation for another bit. +sim.run(0.5, 0.025) + +# When finished, print spike times and locations. +print("spikes:") +for sp in sim.spikes(): + print(" ", sp) diff --git a/python/example/probe_lfpykit.py b/python/example/probe_lfpykit.py new file mode 100644 index 0000000000..8519b933f7 --- /dev/null +++ b/python/example/probe_lfpykit.py @@ -0,0 +1,456 @@ +#!/usr/bin/env python + +# Example utilizing the **`LFPykit`** module (https://lfpykit.readthedocs.io, +# https://github.com/LFPy/LFPykit) for predictions of extracellular +# potentials using the line source approximation implementation +# `LineSourcePotential` with a passive neuron model set up in Arbor +# (https://arbor.readthedocs.io, https://github.com/arbor-sim/arbor). +# +# The neuron receives sinusoid synaptic current input in one arbitrary +# chosen control volume (CV). +# Its morphology is defined in the file `single_cell_detailed.swc` + +# import modules +import sys +import numpy as np +import arbor +import lfpykit +import matplotlib.pyplot as plt +from matplotlib.collections import PolyCollection + + +class Recipe(arbor.recipe): + def __init__(self, cell): + super().__init__() + + self.the_cell = cell + + self.vprobeset_id = (0, 0) + self.iprobeset_id = (0, 1) + self.cprobeset_id = (0, 2) + + self.the_props = arbor.neuron_cable_properties() + + def num_cells(self): + return 1 + + def num_sources(self, gid): + return 0 + + def cell_kind(self, gid): + return arbor.cell_kind.cable + + def cell_description(self, gid): + return self.the_cell + + def global_properties(self, kind): + return self.the_props + + def probes(self, gid): + return [ + arbor.cable_probe_membrane_voltage_cell(), + arbor.cable_probe_total_current_cell(), + arbor.cable_probe_stimulus_current_cell(), + ] + + +# Read the SWC filename from input +# Example from docs: single_cell_detailed.swc +if len(sys.argv) < 2: + print("No SWC file passed to the program") + sys.exit(0) + +filename = sys.argv[1] + +# define morphology (needed for ``arbor.place_pwlin`` and ``arbor.cable_cell`` below) +morphology = arbor.load_swc_arbor(filename) + +# define a location on morphology for current clamp +clamp_location = arbor.location(4, 1 / 6) + + +def make_cable_cell(morphology, clamp_location): + # number of CVs per branch + cvs_per_branch = 3 + + # Label dictionary + labels = arbor.label_dict() + + # decor + decor = ( + arbor.decor() + # set initial voltage, temperature, axial resistivity, membrane capacitance + .set_property( + Vm=-65, # Initial membrane voltage (mV) + tempK=300, # Temperature (Kelvin) + rL=10000, # Axial resistivity (Ω cm) + cm=0.01, # Membrane capacitance (F/m**2) + ) + # set passive mechanism all over + # passive mech w. leak reversal potential (mV) + .paint("(all)", arbor.density("pas/e=-65", {"g": 0.0001})) + ) + + # set number of CVs per branch + policy = arbor.cv_policy_fixed_per_branch(cvs_per_branch) + decor.discretization(policy) + + # place sinusoid input current + iclamp = arbor.iclamp( + 5, # stimulation onset (ms) + 1e8, # stimulation duration (ms) + -0.001, # stimulation amplitude (nA) + frequency=0.1, # stimulation frequency (kHz) + phase=0, + ) # stimulation phase) + decor.place(str(clamp_location), iclamp, '"iclamp"') + + # create ``arbor.place_pwlin`` object + p = arbor.place_pwlin(morphology) + + # create cell and set properties + cell = arbor.cable_cell(morphology, labels, decor) + + return p, cell + + +# get place_pwlin and cable_cell objects +p, cell = make_cable_cell(morphology, clamp_location) + +# instantiate recipe with cell +recipe = Recipe(cell) + +# instantiate simulation +sim = arbor.simulation(recipe) + +# set up sampling on probes with sampling every 1 ms +schedule = arbor.regular_schedule(1.0) +v_handle = sim.sample(recipe.vprobeset_id, schedule, arbor.sampling_policy.exact) +i_handle = sim.sample(recipe.iprobeset_id, schedule, arbor.sampling_policy.exact) +c_handle = sim.sample(recipe.cprobeset_id, schedule, arbor.sampling_policy.exact) + +# run simulation for 500 ms of simulated activity and collect results. +sim.run(tfinal=500) + +# extract time, V_m, I_m and I_c for each CV +V_m_samples, V_m_meta = sim.samples(v_handle)[0] +I_m_samples, I_m_meta = sim.samples(i_handle)[0] +I_c_samples, I_c_meta = sim.samples(c_handle)[0] + +# drop recorded V_m values and corresponding metadata of +# zero-sized CVs (branch-point potentials). +# Here this is done as the V_m values are only used for visualization purposes +inds = np.array([m.dist != m.prox for m in V_m_meta]) +V_m_samples = V_m_samples[:, np.r_[True, inds]] +V_m_meta = np.array(V_m_meta)[inds].tolist() + +# assert that the remaining cables comprising the metadata for each probe +# are identical, as well as the reported sample times. +assert V_m_meta == I_m_meta +assert (V_m_samples[:, 0] == I_m_samples[:, 0]).all() + +# prep recorded data for plotting and computation of extracellular potentials +time = V_m_samples[:, 0] +V_m = V_m_samples[:, 1:] + +# Add stimulation current to transmembrane current to mimic sinusoid synapse +# current embedded in the membrane. +I_m = I_c_samples[:, 1:] + I_m_samples[:, 1:] # (nA) + + +############################################################################### +# Compute extracellular potentials +############################################################################### + +# ## Compute extracellular potentials +# First we define a couple of classes to interface the LFPykit +# library (https://LFPykit.readthedocs.io, https://github.com/LFPy/LFPykit): +class ArborCellGeometry(lfpykit.CellGeometry): + """ + Class inherited from ``lfpykit.CellGeometry`` for easier forward-model + predictions in Arbor that keeps track of arbor.segment information + for each CV. + + Parameters + ---------- + p: ``arbor.place_pwlin`` object + 3-d locations and cables in a morphology (cf. ``arbor.place_pwlin``) + cables: ``list`` + ``list`` of corresponding ``arbor.cable`` objects where transmembrane + currents are recorded (cf. ``arbor.cable_probe_total_current_cell``) + + See also + -------- + lfpykit.CellGeometry + """ + + def __init__(self, p, cables): + x, y, z, d = [np.array([], dtype=float).reshape((0, 2))] * 4 + CV_ind = np.array([], dtype=int) # tracks which CV owns segment + for i, m in enumerate(cables): + segs = p.segments([m]) + for j, seg in enumerate(segs): + x = np.row_stack([x, [seg.prox.x, seg.dist.x]]) + y = np.row_stack([y, [seg.prox.y, seg.dist.y]]) + z = np.row_stack([z, [seg.prox.z, seg.dist.z]]) + d = np.row_stack([d, [seg.prox.radius * 2, seg.dist.radius * 2]]) + CV_ind = np.r_[CV_ind, i] + + super().__init__(x=x, y=y, z=z, d=d) + self._CV_ind = CV_ind + + +class ArborLineSourcePotential(lfpykit.LineSourcePotential): + """subclass of ``lfpykit.LineSourcePotential`` modified for + instances of ``ArborCellGeometry``. + Each CV may consist of several segments , and this implementation + accounts for their contributions normalized by surface area, that is, + we assume constant transmembrane current density per area across each CV + and constant current source density per unit length per segment + (inherent in the line-source approximation). + + Parameters + ---------- + cell: object + ``ArborCellGeometry`` instance or similar. + x: ndarray of floats + x-position of measurement sites (µm) + y: ndarray of floats + y-position of measurement sites (µm) + z: ndarray of floats + z-position of measurement sites (µm) + sigma: float > 0 + scalar extracellular conductivity (S/m) + + See also + -------- + lfpykit.LineSourcePotential + """ + + def __init__(self, **kwargs): + super().__init__(**kwargs) + self._get_transformation_matrix = super().get_transformation_matrix + + def get_transformation_matrix(self): + """Get linear response matrix + + Returns + ------- + response_matrix: ndarray + shape (n_coords, n_CVs) ndarray + """ + M_tmp = self._get_transformation_matrix() + n_CVs = np.unique(self.cell._CV_ind).size + M = np.zeros((self.x.size, n_CVs)) + for i in range(n_CVs): + inds = self.cell._CV_ind == i + M[:, i] = M_tmp[:, inds] @ ( + self.cell.area[inds] / self.cell.area[inds].sum() + ) + + return M + + +# create ``ArborCellGeometry`` instance +cell_geometry = ArborCellGeometry(p, I_m_meta) + +# define locations where extracellular potential is predicted in vicinity +# of cell. +# Axis limits [x-min, x-max, y-min, y-max] (µm) +axis = np.array([-110, 370, -80, 70]) +dx = 2 # spatial resolution along x-axis (µm) +dz = 2 # spatial resolution along y-axis (µm) +X, Y = np.meshgrid( + np.linspace(axis[0], axis[1], int(np.diff(axis[:2]) // dx) + 1), + np.linspace(axis[2], axis[3], int(np.diff(axis[2:]) // dz) + 1), +) +Z = np.zeros_like(X) + +# ``ArborLineSourcePotential`` instance, get mapping for all segments per CV +lsp = ArborLineSourcePotential( + cell=cell_geometry, x=X.flatten(), y=Y.flatten(), z=Z.flatten() +) +M = lsp.get_transformation_matrix() + +# Extracellular potential in x,y-plane (mV) +V_e = M @ I_m.T + + +############################################################################### +# Plotting +############################################################################### +# Plot the morphology and extracellular potential prediction. +# First we define a couple helper functions: +def create_polygon(x, y, d): + """create an outline for each segment defined by 1D arrays `x`, `y`, `d` + in x,y-plane which can be drawn using `plt.Polygon` + + Parameters + ---------- + x: ndarray + y: ndarray + d: ndarray + + Returns + ------- + x, y: nested list + """ + x_grad = np.gradient(x) + y_grad = np.gradient(y) + theta = np.arctan2(y_grad, x_grad) + + xp = np.r_[ + (x + 0.5 * d * np.sin(theta)).ravel(), + (x - 0.5 * d * np.sin(theta)).ravel()[::-1], + ] + yp = np.r_[ + (y - 0.5 * d * np.cos(theta)).ravel(), + (y + 0.5 * d * np.cos(theta)).ravel()[::-1], + ] + + return list(zip(xp, yp)) + + +def get_cv_polycollection(cell_geometry, V_m, vlims=[-66, -64], cmap="viridis"): + """ + Parameters + ---------- + cell_geometry: ``ArborCellGeometry`` object + V_m: ndarray + membrane voltages at some time point + vlims: list + color limits + cmap: str + matplotlib colormap name + + Returns + ------- + PolyCollection + """ + norm = plt.Normalize(vmin=vlims[0], vmax=vlims[1], clip=True) + colors = [plt.get_cmap(cmap)(norm(v)) for v in V_m] + zips = [] + for i in range(V_m.size): + inds = cell_geometry._CV_ind == i + zips.append( + create_polygon( + cell_geometry.x[ + inds, + ].flatten(), + cell_geometry.y[ + inds, + ].flatten(), + cell_geometry.d[ + inds, + ].flatten(), + ) + ) + polycol = PolyCollection(zips, edgecolors=colors, facecolors=colors, linewidths=0.0) + return polycol + + +def get_segment_outlines(cell_geometry): + """ + Parameters + ---------- + cell_geometry: ``ArborCellGeometry`` object + cmap: str + matplotlib colormap name + + Returns + ------- + PolyCollection + """ + zips = [] + for x_, y_, d_ in zip(cell_geometry.x, cell_geometry.y, cell_geometry.d): + zips.append(create_polygon(x_, y_, d_)) + polycol = PolyCollection(zips, edgecolors="k", facecolors="none", linewidths=0.5) + return polycol + + +def colorbar( + fig, + ax, + im, + width=0.01, + height=1.0, + hoffset=0.01, + voffset=0.0, + orientation="vertical", +): + """ + draw matplotlib colorbar without resizing the parent axes object + """ + rect = np.array(ax.get_position().bounds) + rect = np.array(ax.get_position().bounds) + caxrect = [0] * 4 + caxrect[0] = rect[0] + rect[2] + hoffset * rect[2] + caxrect[1] = rect[1] + voffset * rect[3] + caxrect[2] = rect[2] * width + caxrect[3] = rect[3] * height + cax = fig.add_axes(caxrect) + cax.grid(False) + cb = fig.colorbar(im, cax=cax, orientation=orientation) + return cb + + +# show predictions at the last time point of simulation +time_index = -1 + +# use seaborn style +plt.style.use("seaborn") +plt.rcParams["image.cmap"] = "viridis" + +# create figure and axis +fig, ax = plt.subplots(1, 1, figsize=(16, 6), dpi=100) + +# plot contours of V_e +lim = float(f"{abs(V_e).max() / 3:.1e}") +levels = np.linspace(-lim, lim, 25) +im_V_e = ax.contourf( + X, Y, V_e[:, time_index].reshape(X.shape), cmap="RdBu", levels=levels, extend="both" +) + +# V_e colorbar: +cb = colorbar(fig, ax, im_V_e, height=0.45, voffset=0.55) +cb.set_label("$V_e$ (mV)") + +# add outline of each CV with color coding according to membrane voltage +vlims = [-66.0, -64.0] +polycol = get_cv_polycollection(cell_geometry, V_m[time_index, :], vlims=vlims) +im_V_m = ax.add_collection(polycol) + +# V_m colorbar +cb2 = colorbar(fig, ax, im_V_m, height=0.45) +cb2.set_ticks([0, 0.5, 1]) +cb2.set_ticklabels([vlims[0], np.mean(vlims), vlims[1]]) +cb2.set_label(r"$V_m$ (mV)") + +# draw segment outlines +ax.add_collection(get_segment_outlines(cell_geometry)) + +# add marker denoting clamp location +point = p.at(clamp_location) +ax.plot(point.x, point.y, "ko", ms=10, label="stimulus") + +ax.legend() + +# axis annotations +ax.axis(axis) +ax.set_xlabel(r"$x$ ($\mu$m)", labelpad=0) +ax.set_ylabel(r"$y$ ($\mu$m)", labelpad=0) +ax.set_title(f"$V_e$ and $V_m$ at $t$={time[time_index]} ms") + +# save file +fig.savefig("single_cell_extracellular_potentials.svg", bbox_inches="tight") + +# ## Notes on output: +# The spatial discretization is here deliberately coarse with only 3 CVs +# per branch. +# Hence the branch receiving input about 1/6 of the way from its root +# (from `decor.place('(location 4 0.16667)', iclamp, '"iclamp"')`) is treated +# as 3 separate line sources with inhomogeneous current density per length +# unit. This inhomogeneity is due to the fact that the total transmembrane +# current per CV may distributed across multiple segments with varying surface +# area. The transmembrane current is assumed to be constant per length unit +# per segment. diff --git a/python/example/single_cell_allen.py b/python/example/single_cell_allen.py new file mode 100644 index 0000000000..359b62e245 --- /dev/null +++ b/python/example/single_cell_allen.py @@ -0,0 +1,169 @@ +#!/usr/bin/env python3 + +from collections import defaultdict +from dataclasses import dataclass +import json +import arbor +import seaborn +import pandas +import matplotlib.pyplot as plt + + +# (3) A function that parses the Allen parameter fit file into components for an arbor.decor +# NB. Needs to be adjusted when using a different model +def load_allen_fit(fit): + with open(fit) as fd: + fit = json.load(fd) + + # cable parameters convenience class + @dataclass + class parameters: + cm: float = None + tempK: float = None + Vm: float = None + rL: float = None + + param = defaultdict(parameters) + mechs = defaultdict(dict) + for block in fit["genome"]: + mech = block["mechanism"] or "pas" + region = block["section"] + name = block["name"] + value = float(block["value"]) + if name.endswith("_" + mech): + name = name[: -(len(mech) + 1)] + elif mech == "pas": + # transform names and values + if name == "cm": + # scaling factor NEURON -> Arbor + param[region].cm = value / 100.0 + elif name == "Ra": + param[region].rL = value + elif name == "Vm": + param[region].Vm = value + elif name == "celsius": + param[region].tempK = value + 273.15 + else: + raise Exception(f"Unknown key: {name}") + continue + else: + raise Exception(f"Illegal combination {mech} {name}") + mechs[(region, mech)][name] = value + + regs = [(r, vs) for r, vs in param.items()] + mechs = [(r, m, vs) for (r, m), vs in mechs.items()] + + default = parameters( + tempK=float(fit["conditions"][0]["celsius"]) + 273.15, + Vm=float(fit["conditions"][0]["v_init"]), + rL=float(fit["passive"][0]["ra"]), + ) + + ions = [] + for kv in fit["conditions"][0]["erev"]: + region = kv["section"] + for k, v in kv.items(): + if k == "section": + continue + ion = k[1:] + ions.append((region, ion, float(v))) + + return default, regs, ions, mechs, fit["fitting"][0]["junction_potential"] + + +def make_cell(swc, fit): + # (1) Load the swc file passed into this function + morphology = arbor.load_swc_neuron(swc) + # (2) Label the region tags found in the swc with the names used in the parameter fit file. + # In addition, label the midpoint of the somarbor. + labels = arbor.label_dict().add_swc_tags() + labels["midpoint"] = "(location 0 0.5)" + + # (3) A function that parses the Allen parameter fit file into components for an arbor.decor + dflt, regions, ions, mechanisms, offset = load_allen_fit(fit) + + # (4) Instantiate an empty decor. + decor = arbor.decor() + # (5) assign global electro-physiology parameters + decor.set_property(tempK=dflt.tempK, Vm=dflt.Vm, cm=dflt.cm, rL=dflt.rL) + # (6) override regional electro-physiology parameters + for region, vs in regions: + decor.paint(f'"{region}"', tempK=vs.tempK, Vm=vs.Vm, cm=vs.cm, rL=vs.rL) + # (7) set reversal potentials + for region, ion, e in ions: + decor.paint(f'"{region}"', ion_name=ion, rev_pot=e) + decor.set_ion( + "ca", int_con=5e-5, ext_con=2.0, method=arbor.mechanism("nernst/x=ca") + ) + # (8) assign ion dynamics + for region, mech, values in mechanisms: + nm = mech + vs = {} + sp = "/" + for k, v in values.items(): + if mech == "pas" and k == "e": + nm = f"{nm}{sp}{k}={v}" + sp = "," + else: + vs[k] = v + decor.paint(f'"{region}"', arbor.density(arbor.mechanism(nm, vs))) + # (9) attach stimulus and spike detector + decor.place('"midpoint"', arbor.iclamp(200, 1000, 0.15), "ic") + decor.place('"midpoint"', arbor.spike_detector(-40), "sd") + # (10) discretisation strategy: max compartment length + decor.discretization(arbor.cv_policy_max_extent(20)) + + # (11) Create cell + return arbor.cable_cell(morphology, labels, decor), offset + + +# (12) Create cell, model +cell, offset = make_cell("single_cell_allen.swc", "single_cell_allen_fit.json") +model = arbor.single_cell_model(cell) + +# (13) Set the probe +model.probe("voltage", '"midpoint"', frequency=200) + +# (14) Install the Allen mechanism catalogue. +model.properties.catalogue.extend(arbor.allen_catalogue(), "") + +# (15) Run simulation +model.run(tfinal=1400, dt=0.005) + +# (16) Load and scale reference +reference = ( + 1000.0 * pandas.read_csv("single_cell_allen_neuron_ref.csv")["U/mV"].values[:-1] + + offset +) + +# (17) Plot +df_list = [] +df_list.append( + pandas.DataFrame( + { + "t/ms": model.traces[0].time, + "U/mV": model.traces[0].value, + "Simulator": "Arbor", + } + ) +) +df_list.append( + pandas.DataFrame( + {"t/ms": model.traces[0].time, "U/mV": reference, "Simulator": "Neuron"} + ) +) +df = pandas.concat(df_list, ignore_index=True) +seaborn.relplot(data=df, kind="line", x="t/ms", y="U/mV", hue="Simulator", ci=None) +plt.scatter( + model.spikes, [-40] * len(model.spikes), color=seaborn.color_palette()[2], zorder=20 +) +plt.bar( + 200, + max(reference) - min(reference), + 1000, + min(reference), + align="edge", + label="Stimulus", + color="0.9", +) +plt.savefig("single_cell_allen_result.svg") diff --git a/python/example/single_cell_allen.swc b/python/example/single_cell_allen.swc new file mode 100644 index 0000000000..f7c402fe9b --- /dev/null +++ b/python/example/single_cell_allen.swc @@ -0,0 +1,4855 @@ +# generated by Vaa3D Plugin sort_neuron_swc +# source file(s): C:/Users/alexh/Desktop/Working/Rbp4-Cre_KL100;Ai14-203503.04.01.01_515570710_p_Dendrite.swc +# id,type,x,y,z,r,pid +1 1 357.4977 705.5311 27.0085 6.9553 -1 +2 3 351.3693 708.5444 25.6116 0.4347 1 +3 3 350.3283 709.0054 25.3873 0.4347 2 +4 3 349.2403 709.3349 25.1681 0.4347 3 +5 3 348.1341 709.6083 24.9556 0.4347 4 +6 3 347.0221 709.5328 24.7604 0.4347 5 +7 3 345.909 709.2754 24.5857 0.4347 6 +8 3 344.7959 709.018 24.4289 0.4347 7 +9 3 343.6713 708.8235 24.288 0.4347 8 +10 3 342.5948 709.0752 24.1598 0.4347 9 +11 3 341.5423 709.518 24.043 0.4347 10 +12 3 340.4899 709.9618 23.9364 0.4347 11 +13 3 339.5163 710.5476 23.8728 0.4347 12 +14 3 338.5828 711.2054 23.8571 0.4347 13 +15 3 337.6516 711.8666 23.8748 0.4347 14 +16 3 336.6106 712.3093 23.8879 0.4347 15 +17 3 335.494 712.5404 23.87 0.4347 16 +18 3 334.3672 712.7257 23.819 0.4347 17 +19 3 333.2472 712.9534 23.742 0.4347 18 +20 3 332.1764 713.3423 23.66 0.4347 19 +21 3 331.1674 713.8777 23.5827 0.4347 20 +22 3 330.4147 714.7129 23.5127 0.4347 21 +23 3 329.6745 715.5834 23.445 0.4347 22 +24 3 328.6323 715.5571 23.3433 0.4347 23 +25 3 327.4997 715.4553 23.212 0.4347 24 +26 3 326.5068 715.9655 23.088 0.4347 25 +27 3 325.4074 716.247 22.9754 0.4347 26 +28 3 324.2668 716.3122 22.867 0.4347 27 +29 3 323.5198 717.1393 22.7256 0.4347 28 +30 3 322.6503 717.8692 22.5649 0.4347 29 +31 3 321.5532 718.1769 22.4045 0.4347 30 +32 3 320.4516 718.4732 22.2466 0.4347 31 +33 3 319.4345 718.9937 22.1113 0.4347 32 +34 3 318.5514 719.7213 22.0153 0.4347 33 +35 3 317.2621 719.91 21.9128 0.3362 34 +36 3 316.1295 720.0771 21.882 0.2502 35 +37 3 315.0301 720.3848 21.8529 0.2163 36 +38 3 313.9857 720.8481 21.819 0.2301 37 +39 3 312.9561 721.3446 21.7762 0.3421 38 +40 3 312.0569 722.0356 21.6896 0.3575 39 +41 3 311.1142 722.6717 21.5709 0.2901 40 +42 3 309.9988 722.8238 21.4634 0.2884 41 +43 3 308.8766 723.0366 21.3716 0.2589 42 +44 3 307.8412 723.5136 21.2934 0.2167 43 +45 3 306.7419 723.8122 21.2128 0.1931 44 +46 3 305.6093 723.9552 21.1221 0.2272 45 +47 3 304.4745 724.0834 21.0207 0.2552 46 +48 3 303.3613 724.3362 20.9188 0.2498 47 +49 3 302.2997 724.7583 20.8342 0.2886 48 +50 3 301.2575 725.2285 20.755 0.3534 49 +51 3 300.2245 725.7158 20.6774 0.393 50 +52 3 299.1915 726.2043 20.6041 0.4004 51 +53 3 298.115 726.5876 20.5495 0.3903 52 +54 3 296.9801 726.6127 20.5514 0.3735 53 +55 3 295.8407 726.6345 20.5946 0.3331 54 +56 3 294.8077 727.1081 20.6315 0.3029 55 +57 3 293.7838 727.6172 20.6553 0.3739 56 +58 3 292.6661 727.8437 20.65 0.4602 57 +59 3 291.5255 727.9078 20.6108 0.4971 58 +60 3 290.385 727.9638 20.545 0.4775 59 +61 3 289.2432 728.0187 20.4672 0.4102 60 +62 3 288.1233 728.2452 20.4036 0.3205 61 +63 3 287.0285 728.5758 20.3655 0.3283 62 +64 3 285.9348 728.9122 20.3524 0.4131 63 +65 3 284.8011 729.0655 20.3599 0.4576 64 +66 3 283.6662 729.2039 20.3815 0.4002 65 +67 3 282.5669 728.9248 20.4495 0.4006 66 +68 3 281.4618 728.6548 20.5484 0.3405 67 +69 3 280.463 729.2131 20.6184 0.2965 68 +70 3 279.4643 729.7725 20.6595 0.3438 69 +71 3 278.4668 730.3307 20.6713 0.3789 70 +72 3 277.468 730.889 20.6548 0.4704 71 +73 3 276.4579 731.4244 20.5906 0.5113 72 +74 3 275.4489 731.9587 20.4932 0.5261 73 +75 3 274.4387 732.4929 20.3762 0.5061 74 +76 3 273.4286 733.0272 20.246 0.4713 75 +77 3 271.8979 733.0477 19.9578 0.1716 76 +78 3 270.7791 732.8693 19.8022 0.1716 77 +79 3 269.7014 732.494 19.6636 0.1716 78 +80 3 268.5815 732.3854 19.5378 0.1716 79 +81 3 267.4386 732.4243 19.4177 0.1716 80 +82 3 266.2969 732.3751 19.2959 0.1716 81 +83 3 265.8839 731.6017 19.0691 0.1716 82 +84 3 265.7912 730.4818 18.797 0.1716 83 +85 3 265.2684 729.4899 18.5422 0.1716 84 +86 3 264.3349 729.2439 18.3067 0.1716 85 +87 3 264.0798 730.3388 18.0603 0.1716 86 +88 3 263.3522 731.1281 17.7324 0.1716 87 +89 3 262.2597 731.2803 17.3813 0.1716 88 +90 3 261.1409 731.0812 17.0551 0.1716 89 +91 3 260.0278 730.8295 16.7664 0.1716 90 +92 3 258.997 730.8215 16.525 0.1716 91 +93 3 258.1573 731.4644 16.3548 0.1716 92 +94 3 257.1689 731.1567 16.24 0.1716 93 +95 3 256.6976 730.1271 16.133 0.1716 94 +96 3 256.272 729.1067 16.0152 0.1716 95 +97 3 255.3717 728.609 15.9485 0.1716 96 +98 3 254.373 729.046 15.8774 0.1716 97 +99 3 253.7014 729.9143 15.724 0.1716 98 +100 3 252.8618 730.1637 15.5246 0.1716 99 +101 3 251.8447 729.6558 15.3518 0.1716 100 +102 3 250.8037 729.2039 15.1816 0.1716 101 +103 3 249.9834 728.4397 15.0405 0.1716 102 +104 3 249.1106 727.7053 14.9579 0.1716 103 +105 3 249.0202 726.6276 14.9654 0.1716 104 +106 3 249.3382 725.5362 15.1922 0.1716 105 +107 3 272.1176 734.1551 20.12 0.1144 76 +108 3 271.2504 734.8987 20.0903 0.1748 107 +109 3 270.3844 735.6435 20.0665 0.22 108 +110 3 269.2598 735.7716 20.0802 0.2263 109 +111 3 268.1639 736.0931 20.1522 0.2718 110 +112 3 267.1949 736.6914 20.295 0.3061 111 +113 3 266.2271 737.2943 20.4966 0.3835 112 +114 3 265.5418 738.1832 20.7838 0.3469 113 +115 3 264.8955 739.0984 21.1299 0.3517 114 +116 3 264.5511 740.1634 21.5026 0.2359 115 +117 3 264.2446 741.2411 21.8756 0.1694 116 +118 3 264.4516 742.3645 22.1519 0.1271 117 +119 3 264.6941 743.4833 22.3378 0.1144 118 +120 3 264.9355 744.601 22.5072 0.1144 119 +121 3 317.3033 718.8187 21.324 0.1144 34 +122 3 316.5242 718.0305 21.0554 0.2505 121 +123 3 315.6971 717.693 20.6049 0.2232 122 +124 3 314.8265 717.5465 20.1555 0.2127 123 +125 3 314.2751 716.5455 19.7809 0.2263 124 +126 3 313.3141 716.6702 19.423 0.3204 125 +127 3 312.2342 716.4403 19.0828 0.3891 126 +128 3 311.2961 715.8031 18.7816 0.3437 127 +129 3 311.2321 714.6671 18.5545 0.2969 128 +130 3 310.3672 715.2196 18.3579 0.2569 129 +131 3 309.5058 714.4703 18.1692 0.2994 130 +132 3 308.6501 714.6122 17.9458 0.385 131 +133 3 308.3057 713.5048 17.33 0.3961 132 +134 3 307.2212 713.4545 16.9532 0.3319 133 +135 3 306.0806 713.4053 16.6474 0.3949 134 +136 3 305.0064 713.0335 16.4164 0.3149 135 +137 3 303.9917 712.5061 16.2481 0.321 136 +138 3 302.9301 712.823 16.1249 0.2698 137 +139 3 301.8078 713.0232 16.0292 0.2493 138 +140 3 301.3651 713.5837 15.9006 0.1932 139 +141 3 301.7643 714.6248 15.6934 0.1762 140 +142 3 301.8604 715.7253 15.4669 0.1808 141 +143 3 301.7723 716.8601 15.2566 0.2429 142 +144 3 301.134 717.6792 15.118 0.2119 143 +145 3 300.1948 718.3268 15.0679 0.178 144 +146 3 299.2555 718.9743 15.1922 0.2288 145 +147 3 350.1509 704.7177 26.6764 0.4004 1 +148 3 349.0115 704.6205 26.6613 0.4004 147 +149 3 347.8687 704.6068 26.6689 0.4004 148 +150 3 346.735 704.5232 26.7347 0.4004 149 +151 3 345.6093 704.6502 26.8467 0.4004 150 +152 3 344.582 705.1364 26.9564 0.4004 151 +153 3 343.462 705.3103 27.0567 0.4004 152 +154 3 342.4038 704.8893 27.1471 0.4004 153 +155 3 341.2895 705.0941 27.2602 0.4004 154 +156 3 340.1741 705.3263 27.3888 0.4004 155 +157 3 339.0336 705.2634 27.5153 0.4004 156 +158 3 337.9365 704.9397 27.6284 0.4004 157 +159 3 336.8268 704.6628 27.7393 0.4004 158 +160 3 335.6954 704.5198 27.8681 0.4004 159 +161 3 334.5628 704.3791 28.0076 0.4004 160 +162 3 333.4291 704.2487 28.1537 0.4004 161 +163 3 332.2931 704.132 28.3021 0.4004 162 +164 3 331.1571 704.0142 28.4491 0.4004 163 +165 3 330.0211 703.8975 28.588 0.4004 164 +166 3 328.8817 703.7991 28.7062 0.4004 165 +167 3 327.7434 703.6996 28.8044 0.4004 166 +168 3 326.604 703.6012 28.8828 0.4004 167 +169 3 325.4657 703.5028 28.9425 0.4004 168 +170 3 324.3263 703.401 28.9828 0.4004 169 +171 3 323.2017 703.2168 28.9582 0.4004 170 +172 3 322.076 703.0338 28.8862 0.4004 171 +173 3 320.9503 702.8358 28.8033 0.4004 172 +174 3 319.8246 702.6299 28.728 0.4004 173 +175 3 318.7378 702.273 28.6608 0.4004 174 +176 3 317.6899 701.8165 28.6009 0.4004 175 +177 3 316.6409 701.3589 28.5477 0.4004 176 +178 3 315.7566 701.4894 28.6966 0.1144 177 +179 3 314.6252 701.6564 28.6978 0.1373 178 +180 3 313.4938 701.8234 28.6983 0.1373 179 +181 3 312.431 702.2066 28.6989 0.1374 180 +182 3 311.4334 702.7661 28.7 0.1374 181 +183 3 310.4381 703.3289 28.7011 0.1375 182 +184 3 309.4062 703.2374 28.7031 0.1377 183 +185 3 308.3572 702.7798 28.7056 0.1382 184 +186 3 307.2704 702.432 28.709 0.1389 185 +187 3 306.1401 702.305 28.714 0.1404 186 +188 3 304.9973 702.2627 28.7207 0.143 187 +189 3 303.8533 702.2421 28.7305 0.1477 188 +190 3 302.7093 702.2387 28.7442 0.1572 189 +191 3 301.5836 702.0728 28.7627 0.1714 190 +192 3 300.4693 701.8154 28.7868 0.2144 191 +193 3 299.3402 701.6427 28.8263 0.2128 192 +194 3 298.203 701.5294 28.884 0.2612 193 +195 3 297.0659 701.423 28.954 0.2167 194 +196 3 295.9276 701.3166 29.0307 0.2128 195 +197 3 294.7905 701.1931 29.106 0.1682 196 +198 3 293.6694 700.9757 29.1659 0.1522 197 +199 3 292.5563 700.7137 29.2046 0.1413 198 +200 3 291.4432 700.4506 29.2253 0.1447 199 +201 3 290.3518 700.1097 29.232 0.1515 200 +202 3 289.273 699.7299 29.2286 0.1611 201 +203 3 288.1942 699.3512 29.2177 0.1941 202 +204 3 287.0948 699.0355 29.2012 0.1805 203 +205 3 285.9703 699.0481 29.1777 0.1763 204 +206 3 284.8366 699.2036 29.1441 0.1808 205 +207 3 283.7028 699.3592 29.0987 0.2433 206 +208 3 282.5703 699.516 29.0413 0.2099 207 +209 3 281.4366 699.6487 28.9503 0.1877 208 +210 3 280.3075 699.7493 28.8056 0.1822 209 +211 3 279.1818 699.8409 28.6171 0.228 210 +212 3 278.0446 699.8226 28.446 0.2692 211 +213 3 276.9029 699.7459 28.3195 0.2154 212 +214 3 275.7623 699.6658 28.2366 0.1741 213 +215 3 274.6206 699.5857 28.194 0.1583 214 +216 3 273.4789 699.5057 28.1851 0.1773 215 +217 3 272.3384 699.4267 28.1988 0.2065 216 +218 3 271.1966 699.3466 28.2234 0.2897 217 +219 3 270.0561 699.2689 28.2579 0.3033 218 +220 3 268.9144 699.2048 28.3122 0.3249 219 +221 3 267.7726 699.1464 28.3872 0.267 220 +222 3 266.6309 699.0881 28.478 0.2927 221 +223 3 265.4904 699.0298 28.5788 0.2669 222 +224 3 264.3487 698.9714 28.6852 0.232 223 +225 3 263.2069 698.9131 28.7918 0.2192 224 +226 3 262.0652 698.8536 28.8946 0.286 225 +227 3 260.9235 698.7952 28.9912 0.3143 226 +228 3 259.783 698.7369 29.0802 0.2581 227 +229 3 258.6458 698.6168 29.1522 0.2241 228 +230 3 257.5144 698.4475 29.2018 0.2775 229 +231 3 256.3853 698.269 29.2328 0.2692 230 +232 3 255.255 698.0905 29.2502 0.3172 231 +233 3 254.1247 697.9121 29.258 0.3264 232 +234 3 252.9945 697.7348 29.2606 0.2747 233 +235 3 251.8642 697.5632 29.2611 0.2831 234 +236 3 250.7305 697.4076 29.262 0.2494 235 +237 3 249.5956 697.2588 29.2628 0.1986 236 +238 3 248.4619 697.109 29.2642 0.1621 237 +239 3 247.4289 696.6663 29.2662 0.1571 238 +240 3 246.4599 696.0565 29.269 0.1867 239 +241 3 245.5001 695.4342 29.2726 0.1669 240 +242 3 244.5403 694.8118 29.2779 0.15 241 +243 3 243.5805 694.1895 29.2852 0.1373 242 +244 3 242.6172 693.5729 29.2956 0.1373 243 +245 3 241.6128 693.0283 29.3101 0.1373 244 +246 3 240.5901 692.5147 29.3294 0.1373 245 +247 3 239.5467 692.0479 29.3566 0.1373 246 +248 3 238.4428 691.7699 29.3994 0.1373 247 +249 3 237.3182 691.564 29.458 0.1373 248 +250 3 236.1937 691.3581 29.5266 0.1373 249 +251 3 235.0691 691.151 29.601 0.1373 250 +252 3 233.9446 690.9451 29.6766 0.1373 251 +253 3 232.8074 690.8559 29.7441 0.1373 252 +254 3 231.6657 690.8959 29.7962 0.1373 253 +255 3 230.524 690.9691 29.8354 0.1373 254 +256 3 229.3823 691.0424 29.8668 0.1373 255 +257 3 228.2394 691.1053 29.8962 0.1373 256 +258 3 227.0966 691.1442 29.9298 0.1373 257 +259 3 225.9526 691.1751 29.972 0.1373 258 +260 3 224.8097 691.2071 30.0247 0.1374 259 +261 3 223.6886 691.0469 30.1176 0.1374 260 +262 3 222.5778 690.8044 30.2518 0.1375 261 +263 3 221.467 690.5607 30.4097 0.1377 262 +264 3 220.3905 690.1946 30.5631 0.1382 263 +265 3 219.4272 689.5929 30.6751 0.139 264 +266 3 218.5017 688.9202 30.7367 0.1405 265 +267 3 217.5762 688.2487 30.7507 0.1431 266 +268 3 216.5901 687.6756 30.7101 0.148 267 +269 3 215.5582 687.1916 30.6186 0.1578 268 +270 3 214.5172 686.7272 30.4956 0.1731 269 +271 3 213.475 686.2627 30.3607 0.2137 270 +272 3 212.4339 685.7983 30.2282 0.2303 271 +273 3 211.3311 685.5283 30.1316 0.2029 272 +274 3 210.1974 685.3715 30.0871 0.2057 273 +275 3 209.0626 685.2297 30.095 0.1792 274 +276 3 207.9277 685.0878 30.1496 0.1701 275 +277 3 206.7872 685.0261 30.2635 0.1873 276 +278 3 205.6557 685.0936 30.4536 0.1681 277 +279 3 204.5278 685.1942 30.7051 0.152 278 +280 3 203.3998 685.2949 30.9971 0.1411 279 +281 3 202.2718 685.4013 31.3107 0.1444 280 +282 3 201.1495 685.5557 31.628 0.1502 281 +283 3 200.0295 685.7262 31.9337 0.1623 282 +284 3 198.905 685.8875 32.2092 0.1785 283 +285 3 197.769 686.0076 32.4176 0.2391 284 +286 3 196.6296 686.1129 32.5615 0.2021 285 +287 3 195.4913 686.2192 32.6592 0.1727 286 +288 3 194.353 686.3394 32.7295 0.1565 287 +289 3 193.2205 686.5007 32.7883 0.1703 288 +290 3 192.0902 686.6734 32.8479 0.2111 289 +291 3 190.9599 686.8473 32.9193 0.2129 290 +292 3 190.0195 686.3657 33.059 0.2317 291 +293 3 189.3366 685.4917 33.2774 0.3065 292 +294 3 188.2566 685.5351 33.4614 0.3644 293 +295 3 187.3643 684.8842 33.5994 0.2924 294 +296 3 186.7191 683.9404 33.7607 0.2288 295 +297 3 315.339 700.7595 28.3909 0.2328 177 +298 3 314.3014 700.2813 28.2682 0.2437 297 +299 3 313.2638 699.8031 28.1249 0.2199 298 +300 3 312.2479 699.2872 27.9538 0.2748 299 +301 3 311.2652 698.7232 27.748 0.2394 300 +302 3 310.2848 698.1569 27.5262 0.2677 301 +303 3 309.3101 697.562 27.3328 0.2079 302 +304 3 308.3492 696.9408 27.1964 0.1842 303 +305 3 307.3894 696.3196 27.1099 0.1742 304 +306 3 306.3804 695.7808 27.0665 0.2196 305 +307 3 305.3656 695.2523 27.0558 0.2225 306 +308 3 304.352 694.7226 27.0656 0.2796 307 +309 3 303.3362 694.1964 27.0878 0.2484 308 +310 3 302.3169 693.6781 27.1264 0.2845 309 +311 3 301.2987 693.1599 27.1734 0.237 310 +312 3 300.2794 692.6428 27.2224 0.2484 311 +313 3 299.2601 692.1246 27.2672 0.2442 312 +314 3 298.3014 691.5011 27.2796 0.244 313 +315 3 297.4308 690.7666 27.2359 0.2083 314 +316 3 296.5671 690.0208 27.1578 0.198 315 +317 3 295.7297 689.2406 27.0866 0.2517 316 +318 3 294.8946 688.4592 27.0245 0.2259 317 +319 3 294.0583 687.679 26.9724 0.2147 318 +320 3 293.3502 686.781 26.929 0.2448 319 +321 3 292.769 685.7948 26.8887 0.2831 320 +322 3 292.1868 684.8098 26.8419 0.3238 321 +323 3 291.6056 683.8249 26.7831 0.3187 322 +324 3 290.0589 683.2037 26.5331 0.242 323 +325 3 289.0179 682.7552 26.3488 0.1976 324 +326 3 288.0363 682.1866 26.1755 0.2121 325 +327 3 287.1268 681.4934 26.0467 0.2267 326 +328 3 286.2162 680.8001 25.9594 0.1986 327 +329 3 285.3067 680.1069 25.9095 0.1862 328 +330 3 284.3961 679.4147 25.8882 0.1996 329 +331 3 283.4843 678.7238 25.8832 0.2763 330 +332 3 282.5691 678.0374 25.8832 0.281 331 +333 3 281.6539 677.3498 25.8832 0.271 332 +334 3 280.7399 676.6634 25.8832 0.2287 333 +335 3 279.8807 675.9141 25.8832 0.2663 334 +336 3 279.1051 675.0744 25.8832 0.2293 335 +337 3 278.3283 674.2336 25.8832 0.2217 336 +338 3 277.5516 673.3939 25.8832 0.2547 337 +339 3 276.745 672.5839 25.8832 0.3167 338 +340 3 275.8184 671.9307 25.8832 0.3117 339 +341 3 274.7899 671.4319 25.8832 0.3135 340 +342 3 273.7603 670.932 25.8832 0.2633 341 +343 3 272.7582 670.384 25.8832 0.201 342 +344 3 271.803 669.7548 25.8832 0.1659 343 +345 3 270.8603 669.1062 25.8829 0.167 344 +346 3 269.9176 668.4586 25.8829 0.1909 345 +347 3 268.9738 667.8111 25.8829 0.2441 346 +348 3 268.0312 667.1636 25.8829 0.2994 347 +349 3 267.0874 666.5173 25.8826 0.2698 348 +350 3 266.1424 665.8732 25.8824 0.2834 349 +351 3 265.1964 665.2291 25.8821 0.3193 350 +352 3 264.2503 664.5862 25.8818 0.3344 351 +353 3 263.3042 663.9421 25.8812 0.2686 352 +354 3 262.3592 663.2992 25.8804 0.2591 353 +355 3 261.4132 662.6551 25.8793 0.2677 354 +356 3 260.4556 662.0305 25.8776 0.2709 355 +357 3 259.4638 661.4608 25.8754 0.3381 356 +358 3 258.4513 660.9277 25.8723 0.395 357 +359 3 257.4389 660.3957 25.8681 0.3699 358 +360 3 256.4082 659.9015 25.8622 0.2717 359 +361 3 255.3294 659.5297 25.8538 0.2258 360 +362 3 254.214 659.278 25.842 0.2806 361 +363 3 253.086 659.2231 25.8252 0.2748 362 +364 3 251.9511 659.373 25.8023 0.3286 363 +365 3 250.8174 659.5217 25.7732 0.3435 364 +366 3 249.702 659.7528 25.7278 0.3252 365 +367 3 248.6175 660.1086 25.6547 0.2854 366 +368 3 247.5433 660.4953 25.5615 0.3554 367 +369 3 246.5274 660.9986 25.4705 0.3581 368 +370 3 245.5813 661.6404 25.4013 0.2944 369 +371 3 244.5815 662.1804 25.352 0.281 370 +372 3 243.4775 662.3485 25.3207 0.3185 371 +373 3 242.3358 662.265 25.3028 0.3151 372 +374 3 241.2421 662.4515 25.2913 0.3199 373 +375 3 240.248 663.0075 25.2792 0.2749 374 +376 3 239.2973 663.6447 25.2627 0.2233 375 +377 3 238.3467 664.2808 25.2409 0.2026 376 +378 3 237.34 664.8127 25.2092 0.2576 377 +379 3 236.2394 665.0816 25.1602 0.2493 378 +380 3 235.1046 665.2131 25.0942 0.1985 379 +381 3 233.9686 665.3458 25.0172 0.1612 380 +382 3 232.8337 665.4774 24.9343 0.1584 381 +383 3 231.7241 665.7314 24.8564 0.1745 382 +384 3 230.6601 666.1466 24.7937 0.2163 383 +385 3 229.6157 666.6122 24.7461 0.235 384 +386 3 228.6273 667.1797 24.7078 0.212 385 +387 3 227.7006 667.85 24.6725 0.2201 386 +388 3 226.6573 668.1978 24.6355 0.2182 387 +389 3 225.5156 668.2516 24.5913 0.1829 388 +390 3 224.4231 668.5136 24.5143 0.156 389 +391 3 223.35 668.8911 24.3978 0.1484 390 +392 3 222.524 668.4209 24.2799 0.1582 391 +393 3 221.5745 667.8661 24.1758 0.1741 392 +394 3 220.4934 667.4897 24.0828 0.2155 393 +395 3 219.5668 666.857 23.9837 0.2338 394 +396 3 218.7362 666.0723 23.8717 0.2092 395 +397 3 217.916 665.2772 23.746 0.2182 396 +398 3 217.0706 664.5084 23.6032 0.1989 397 +399 3 216.1268 663.8746 23.4424 0.2225 398 +400 3 215.1418 663.2992 23.2672 0.2074 399 +401 3 214.2037 662.6506 23.0854 0.2358 400 +402 3 213.523 661.7548 22.9152 0.2445 401 +403 3 212.7325 660.9506 22.7374 0.245 402 +404 3 211.6903 660.5502 22.521 0.2067 403 +405 3 210.6001 660.2436 22.2692 0.2127 404 +406 3 209.4801 660.0548 22.008 0.1925 405 +407 3 208.343 659.9747 21.7566 0.1922 406 +408 3 207.2024 659.9153 21.5188 0.241 407 +409 3 206.0722 659.794 21.2839 0.2058 408 +410 3 204.9384 659.7391 21.0515 0.1795 409 +411 3 203.9786 660.2962 20.8642 0.1695 410 +412 3 202.8827 660.3042 20.685 0.1918 411 +413 3 201.7787 660.0365 20.5038 0.2637 412 +414 3 200.9207 659.3032 20.3633 0.2492 413 +415 3 200.0936 658.5127 20.2605 0.2532 414 +416 3 199.2448 657.7462 20.1821 0.3386 415 +417 3 198.2483 657.1948 20.1006 0.3474 416 +418 3 197.2336 656.6697 20.0186 0.2889 417 +419 3 196.2189 656.1458 19.9368 0.2011 418 +420 3 195.1081 655.8952 19.8654 0.1661 419 +421 3 193.9686 655.9673 19.8187 0.1683 420 +422 3 192.8292 656.0611 19.7949 0.1892 421 +423 3 191.6864 656.116 19.7926 0.2601 422 +424 3 190.5721 655.8964 19.8346 0.2359 423 +425 3 189.5185 655.4731 19.8974 0.2611 424 +426 3 188.7611 654.6265 19.9522 0.1957 425 +427 3 187.9283 653.844 19.9447 0.161 426 +428 3 186.8964 653.4002 19.7912 0.1342 427 +429 3 185.8657 652.9574 19.5294 0.1313 428 +430 3 184.8338 652.5136 19.1946 0.1271 429 +431 3 183.803 652.0708 18.8247 0.1144 430 +432 3 182.7712 651.627 18.0057 0.1144 431 +433 3 291.426 682.4944 25.9412 0.1144 323 +434 3 291.2841 681.4053 25.5861 0.1642 433 +435 3 291.1423 680.2773 25.2759 0.2005 434 +436 3 291.0027 679.1425 25.0449 0.1899 435 +437 3 290.8631 678.0065 24.887 0.2052 436 +438 3 290.6343 676.8888 24.7957 0.1777 437 +439 3 290.3403 675.7825 24.7635 0.1706 438 +440 3 290.1253 674.6614 24.7579 0.1725 439 +441 3 290.4387 673.6135 24.7579 0.2164 440 +442 3 290.5611 672.5164 24.7579 0.2168 441 +443 3 290.2305 671.4342 24.7579 0.2676 442 +444 3 289.416 670.6757 24.7579 0.233 443 +445 3 288.4871 670.0088 24.7579 0.2224 444 +446 3 287.5261 669.3887 24.7579 0.2862 445 +447 3 286.8328 668.5056 24.7579 0.2274 446 +448 3 286.4736 667.4256 24.7576 0.1775 447 +449 3 286.167 666.3239 24.7576 0.1413 448 +450 3 285.8639 665.2211 24.7576 0.1446 449 +451 3 285.5618 664.1172 24.7573 0.1508 450 +452 3 285.2598 663.0144 24.757 0.1628 451 +453 3 284.8892 661.9321 24.7568 0.1826 452 +454 3 284.4956 660.8579 24.7565 0.2312 453 +455 3 284.0014 659.8272 24.7559 0.2631 454 +456 3 283.2887 658.9383 24.7551 0.2621 455 +457 3 282.5394 658.0746 24.754 0.3234 456 +458 3 281.7889 657.2108 24.7523 0.3586 457 +459 3 281.0396 656.346 24.75 0.3471 458 +460 3 280.2903 655.4823 24.747 0.3564 459 +461 3 279.5993 654.5705 24.7425 0.3385 460 +462 3 278.9633 653.6198 24.7363 0.3615 461 +463 3 278.3363 652.6623 24.7279 0.3605 462 +464 3 277.7106 651.7059 24.7162 0.3419 463 +465 3 277.0837 650.7484 24.6996 0.2739 464 +466 3 276.4568 649.792 24.6761 0.1968 465 +467 3 275.8035 648.8528 24.6425 0.1581 466 +468 3 275.1412 647.9204 24.5966 0.1528 467 +469 3 274.4776 646.9881 24.5389 0.1632 468 +470 3 273.7661 646.0946 24.4532 0.1988 469 +471 3 272.9447 645.3212 24.3034 0.1867 470 +472 3 272.1073 644.5674 24.1052 0.1994 471 +473 3 271.5547 643.5801 23.938 0.1669 472 +474 3 271.0662 642.5448 23.8174 0.15 473 +475 3 270.5411 641.5289 23.7412 0.1373 474 +476 3 269.9909 640.5256 23.7068 0.1373 475 +477 3 269.4372 639.5246 23.7087 0.1373 476 +478 3 268.8835 638.5236 23.7348 0.1373 477 +479 3 268.3298 637.5226 23.7726 0.1373 478 +480 3 267.863 636.4793 23.8342 0.1373 479 +481 3 267.4249 635.4245 23.9207 0.1373 480 +482 3 266.989 634.3686 24.0279 0.1374 481 +483 3 266.5531 633.3115 24.1503 0.1374 482 +484 3 265.9834 632.3231 24.2878 0.1376 483 +485 3 265.2181 631.48 24.4404 0.1379 484 +486 3 264.431 630.6552 24.6016 0.1383 485 +487 3 263.6931 629.7834 24.7582 0.1392 486 +488 3 262.9884 628.8843 24.9052 0.1408 487 +489 3 262.286 627.9816 25.0432 0.1438 488 +490 3 261.5836 627.0802 25.1748 0.1494 489 +491 3 260.8823 626.1776 25.3025 0.1596 490 +492 3 260.0575 625.3882 25.4318 0.1794 491 +493 3 259.1343 624.7155 25.5679 0.2113 492 +494 3 258.2008 624.0554 25.713 0.2944 493 +495 3 257.2684 623.3953 25.8675 0.3318 494 +496 3 256.3395 622.7295 26.0322 0.2813 495 +497 3 255.509 621.9562 26.2321 0.3111 496 +498 3 254.6899 621.1703 26.4586 0.2263 497 +499 3 253.8708 620.3832 26.7 0.1754 498 +500 3 253.15 619.5012 26.9282 0.1373 499 +501 3 252.4751 618.5802 27.132 0.1373 500 +502 3 251.8047 617.657 27.3092 0.1373 501 +503 3 251.2441 616.6618 27.4492 0.1373 502 +504 3 250.806 615.6047 27.5478 0.1373 503 +505 3 250.3438 614.5591 27.6172 0.1373 504 +506 3 249.5419 613.756 27.6858 0.1373 505 +507 3 248.7056 612.9781 27.7542 0.1373 506 +508 3 247.8705 612.199 27.82 0.1373 507 +509 3 247.2184 611.2621 27.8622 0.1373 508 +510 3 246.8157 610.1947 27.8625 0.1372 509 +511 3 246.4268 609.1205 27.8281 0.1372 510 +512 3 246.0378 608.0452 27.7682 0.1371 511 +513 3 245.8113 606.9263 27.699 0.1368 512 +514 3 246.0298 605.8052 27.6438 0.1364 513 +515 3 246.262 604.6852 27.6058 0.1356 514 +516 3 246.1499 603.5481 27.5842 0.1342 515 +517 3 245.8147 602.4544 27.5744 0.1313 516 +518 3 245.4795 601.3608 27.5713 0.1271 517 +519 3 245.1443 600.2671 27.5713 0.1144 518 +520 3 244.8091 599.1734 27.5713 0.1144 519 +521 3 363.2189 704.1984 22.9911 0.1144 1 +522 3 364.205 703.9696 22.3096 0.2365 521 +523 3 365.3181 703.8689 21.8084 0.2667 522 +524 3 366.3317 704.3425 21.4542 0.2989 523 +525 3 367.4253 704.4443 21.1764 0.245 524 +526 3 368.5327 704.1949 20.9493 0.2392 525 +527 3 369.647 703.9421 20.7875 0.2298 526 +528 3 370.7647 703.6961 20.652 0.2044 527 +529 3 371.8915 703.7899 20.498 0.1968 528 +530 3 372.5528 704.6983 20.2894 0.2204 529 +531 3 373.6075 705.1078 20.1006 0.309 530 +532 3 374.6417 704.6457 19.9142 0.3703 531 +533 3 375.3109 703.9387 19.6496 0.2973 532 +534 3 376.2593 704.5541 19.357 0.2676 533 +535 3 377.2649 705.0655 19.0548 0.2716 534 +536 3 378.3368 705.4487 18.7869 0.2202 535 +537 3 379.1056 706.1546 18.5685 0.1825 536 +538 3 379.0953 707.2849 18.3784 0.1756 537 +539 3 378.8436 708.3968 18.2053 0.2005 538 +540 3 378.9225 709.4173 18.046 0.2929 539 +541 3 379.8126 710.09 17.9099 0.2397 540 +542 3 380.8536 710.5533 17.7814 0.2013 541 +543 3 381.8077 710.4034 17.652 0.18 542 +544 3 382.4323 709.4848 17.4731 0.2421 543 +545 3 383.24 708.7435 17.2049 0.2075 544 +546 3 384.3085 708.859 16.9238 0.1827 545 +547 3 385.4147 709.1324 16.6491 0.1759 546 +548 3 386.5519 709.1256 16.4086 0.2011 547 +549 3 387.6844 708.9665 16.2126 0.294 548 +550 3 388.7976 709.1679 16.0314 0.2417 549 +551 3 389.9084 709.4264 15.8567 0.2052 550 +552 3 391.0284 709.6232 15.6638 0.1874 551 +553 3 392.1563 709.7502 15.4493 0.2557 552 +554 3 393.2763 709.5557 15.2636 0.233 553 +555 3 394.3082 709.0718 15.1161 0.2288 554 +556 3 395.26 708.4403 14.9898 0.2669 555 +557 3 396.3628 708.6805 14.6297 0.3432 556 +558 3 355.0587 699.7905 21.9414 0.4576 1 +559 3 354.1172 699.1396 21.5202 0.4576 558 +560 3 353.0693 698.6946 21.21 0.4576 559 +561 3 352.0111 698.2656 20.9745 0.4576 560 +562 3 350.9472 697.8549 20.7844 0.4576 561 +563 3 349.8672 697.4831 20.6156 0.4576 562 +564 3 348.7873 697.1124 20.445 0.4576 563 +565 3 347.7268 696.6949 20.2745 0.4576 564 +566 3 346.7407 696.1286 20.0984 0.4576 565 +567 3 345.6321 695.8723 19.9396 0.4576 566 +568 3 344.5122 696.1034 19.8274 0.4576 567 +569 3 343.7102 696.1126 19.752 0.2513 568 +570 3 342.5685 696.1446 19.7058 0.3275 569 +571 3 341.5023 696.4466 19.6804 0.3639 570 +572 3 340.5711 697.1113 19.6675 0.3692 571 +573 3 339.5678 697.6375 19.6568 0.3369 572 +574 3 338.505 698.0402 19.6426 0.2521 573 +575 3 337.7271 698.801 19.6218 0.2169 574 +576 3 337.4365 699.89 19.5924 0.246 575 +577 3 336.7856 700.5078 19.5524 0.2994 576 +578 3 336.3394 701.288 19.4998 0.2854 577 +579 3 336.3017 702.3005 19.4233 0.2366 578 +580 3 335.4723 703.0749 19.2956 0.2576 579 +581 3 334.9426 704.0416 19.1352 0.2128 580 +582 3 334.5891 705.0872 18.9697 0.193 581 +583 3 333.8592 705.9624 18.7774 0.1917 582 +584 3 332.9978 706.4623 18.5788 0.2463 583 +585 3 331.9064 706.4932 18.3901 0.3003 584 +586 3 330.862 706.9485 18.1908 0.2865 585 +587 3 329.7797 707.2014 17.985 0.2415 586 +588 3 328.6563 707.0195 17.7839 0.2523 587 +589 3 327.7148 707.3135 17.5622 0.273 588 +590 3 326.8911 708.0937 17.302 0.3075 589 +591 3 326.0446 708.8521 16.9988 0.2757 590 +592 3 325.4897 709.7959 16.69 0.2246 591 +593 3 325.7243 710.8267 16.3842 0.2061 592 +594 3 324.9852 711.5577 16.0409 0.2584 593 +595 3 324.2233 712.3928 15.6979 0.2796 594 +596 3 324.3766 713.3629 14.6297 0.1144 595 +597 3 344.0466 694.6345 19.1822 0.1144 568 +598 3 343.3716 693.7182 19.0128 0.1767 597 +599 3 342.5742 692.9242 18.8213 0.2087 598 +600 3 341.4657 693.1061 18.6455 0.2781 599 +601 3 340.475 693.6655 18.4923 0.3576 600 +602 3 339.3813 693.9939 18.3428 0.4005 601 +603 3 338.2865 694.3211 18.2006 0.4149 602 +604 3 337.1848 694.5567 18.0622 0.415 603 +605 3 336.1358 694.2089 17.9267 0.4303 604 +606 3 335.1508 693.7113 17.7654 0.3855 605 +607 3 334.0949 693.8657 17.5857 0.3128 606 +608 3 333.3479 694.6551 17.4633 0.2439 607 +609 3 332.5482 695.0967 17.379 0.2528 608 +610 3 332.3698 694.3908 17.1654 0.2926 609 +611 3 331.5278 694.1552 16.8801 0.2537 610 +612 3 330.3941 694.2558 16.6057 0.2707 611 +613 3 329.2615 694.4103 16.3682 0.2134 612 +614 3 328.209 694.011 16.135 0.1948 613 +615 3 327.1646 693.5557 15.9158 0.1915 614 +616 3 326.1521 693.0238 15.7567 0.2641 615 +617 3 325.0367 692.8293 15.6036 0.2444 616 +618 3 323.9019 692.8945 15.4473 0.2711 617 +619 3 322.7922 693.1668 15.3322 0.2415 618 +620 3 322.4032 694.2135 15.1922 0.1144 619 +621 3 362.8219 702.1357 24.2976 0.4576 1 +622 3 363.8995 701.8966 23.8252 0.4576 621 +623 3 364.9932 701.5935 23.4374 0.4576 622 +624 3 365.8592 700.9357 23.1507 0.4576 623 +625 3 366.5731 700.0468 22.9202 0.4576 624 +626 3 367.6393 700.4266 22.6974 0.4576 625 +627 3 367.6827 699.0458 22.1936 0.1144 626 +628 3 367.2046 698.0299 22.0934 0.1941 627 +629 3 366.3603 697.2611 22.0097 0.2543 628 +630 3 365.3742 696.7132 21.94 0.2977 629 +631 3 364.2725 696.426 21.8809 0.3659 630 +632 3 363.4179 695.8002 21.8285 0.3232 631 +633 3 363.2303 694.6757 21.7787 0.2641 632 +634 3 362.8436 693.7124 21.7104 0.286 633 +635 3 361.9181 693.0421 21.6076 0.2606 634 +636 3 360.9938 692.3728 21.4774 0.3046 635 +637 3 360.0774 691.691 21.327 0.2873 636 +638 3 359.1782 690.9874 21.1616 0.2787 637 +639 3 358.2814 690.2804 20.9843 0.2617 638 +640 3 357.5057 689.4671 20.8015 0.2354 639 +641 3 357.071 688.4249 20.6242 0.2763 640 +642 3 356.8228 687.3083 20.4495 0.2601 641 +643 3 356.2187 686.511 20.2381 0.2192 642 +644 3 355.2452 685.9664 19.945 0.1969 643 +645 3 354.7178 685.0203 19.5924 0.2383 644 +646 3 354.6446 683.8935 19.2231 0.2557 645 +647 3 353.7202 683.5343 18.783 0.3482 646 +648 3 352.8554 682.8948 18.247 0.3418 647 +649 3 352.4264 681.927 17.6358 0.2782 648 +650 3 352.0019 680.9351 16.9946 0.1822 649 +651 3 351.0947 680.299 16.387 0.1271 650 +652 3 350.1887 679.663 15.1922 0.1144 651 +653 3 368.5259 700.8213 22.5406 0.4004 626 +654 3 369.6699 700.8247 22.4255 0.4004 653 +655 3 370.4066 699.9793 22.255 0.4004 654 +656 3 370.688 699.54 21.6896 0.1144 655 +657 3 371.0049 698.4944 21.3629 0.1643 656 +658 3 371.0198 697.3515 21.2428 0.2007 657 +659 3 371.0198 696.2167 21.0818 0.1902 658 +660 3 371.6353 695.7625 20.9014 0.2059 659 +661 3 372.7758 695.8186 20.7421 0.1795 660 +662 3 373.7139 695.3529 20.5822 0.1706 661 +663 3 373.7082 694.2925 20.3913 0.1883 662 +664 3 373.9175 693.1862 20.2124 0.1698 663 +665 3 374.6577 692.3488 20.0292 0.1552 664 +666 3 375.4791 691.5583 19.8363 0.1471 665 +667 3 376.4355 690.9394 19.6605 0.1554 666 +668 3 377.3049 690.2038 19.486 0.1718 667 +669 3 378.0851 689.3755 19.3007 0.1965 668 +670 3 379.0964 688.8688 19.1246 0.2706 669 +671 3 380.2164 688.6571 18.9546 0.2706 670 +672 3 381.3444 688.5644 18.7552 0.2504 671 +673 3 382.2298 687.8723 18.5842 0.1962 672 +674 3 382.7904 686.8885 18.4089 0.1779 673 +675 3 383.3441 685.8944 18.2297 0.2024 674 +676 3 384.2822 685.2468 18.0855 0.1932 675 +677 3 385.361 684.8693 17.9738 0.2119 676 +678 3 386.4455 684.5055 17.8889 0.1878 677 +679 3 387.4545 683.9667 17.8203 0.1992 678 +680 3 388.5813 683.8077 17.7318 0.178 679 +681 3 389.7173 683.8054 17.4432 0.1144 680 +682 3 370.9523 700.1497 22.1276 0.2518 655 +683 3 372.0071 700.2744 22.0399 0.291 682 +684 3 372.8674 701.0283 21.9848 0.2496 683 +685 3 373.6956 701.0878 21.9484 0.2685 684 +686 3 374.565 700.3499 21.9282 0.2976 685 +687 3 375.5969 699.9415 21.9218 0.2652 686 +688 3 376.6048 700.231 21.9128 0.2805 687 +689 3 377.6184 700.6279 21.9005 0.2866 688 +690 3 378.7326 700.4609 21.8823 0.4061 689 +691 3 379.8103 700.08 21.8571 0.4454 690 +692 3 380.9268 700.0033 21.8235 0.4889 691 +693 3 382.0571 699.8843 21.7809 0.4821 692 +694 3 383.1611 700.0376 21.7073 0.4379 693 +695 3 384.217 700.4598 21.5947 0.394 694 +696 3 385.3061 700.3694 21.4701 0.3566 695 +697 3 386.3826 699.985 21.3548 0.302 696 +698 3 387.4373 700.3236 21.2484 0.2444 697 +699 3 388.1855 701.1816 21.1439 0.2693 698 +700 3 389.2975 700.9368 21.0031 0.2472 699 +701 3 390.4094 700.6908 20.8331 0.1947 700 +702 3 390.8693 700.851 20.6618 0.1542 701 +703 3 391.9458 701.2251 20.4691 0.1452 702 +704 3 392.9125 701.7925 20.2602 0.152 703 +705 3 393.6401 702.6505 20.0396 0.1644 704 +706 3 394.5484 703.2202 19.8363 0.1884 705 +707 3 395.6764 703.3758 19.6689 0.2275 706 +708 3 396.5996 703.9364 19.5079 0.3264 707 +709 3 397.4153 704.7326 19.3416 0.3827 708 +710 3 398.3351 705.4007 19.1834 0.4166 709 +711 3 399.3612 705.8983 19.0448 0.3638 710 +712 3 400.3703 706.4314 18.9073 0.2566 711 +713 3 401.266 707.1236 18.7412 0.216 712 +714 3 402.1229 707.866 18.55 0.174 713 +715 3 403.0049 708.5856 18.361 0.1636 714 +716 3 403.9327 709.2525 18.2081 0.1599 715 +717 3 404.8742 709.9012 18.0972 0.1921 716 +718 3 405.8214 710.543 18.0228 0.1767 717 +719 3 406.8956 710.8747 17.9777 0.1682 718 +720 3 407.9813 711.2225 17.9491 0.1715 719 +721 3 408.8988 711.8826 17.9248 0.1985 720 +722 3 409.7659 712.6285 17.8965 0.2611 721 +723 3 410.7223 713.2485 17.8455 0.3169 722 +724 3 411.7096 713.8228 17.7733 0.3697 723 +725 3 412.6969 714.3971 17.689 0.4841 724 +726 3 413.723 714.897 17.6123 0.503 725 +727 3 414.7824 715.3283 17.5577 0.4455 726 +728 3 415.8486 715.7447 17.5272 0.445 727 +729 3 416.893 716.2081 17.5202 0.5002 728 +730 3 417.8082 716.8819 17.5325 0.5599 729 +731 3 418.6708 717.6335 17.5624 0.5337 730 +732 3 419.4979 718.4217 17.6162 0.4639 731 +733 3 420.3136 719.2214 17.6882 0.4369 732 +734 3 421.1293 720.0222 17.7708 0.3471 733 +735 3 421.9198 720.847 17.8525 0.3742 734 +736 3 422.6394 721.7347 17.9172 0.3999 735 +737 3 423.3383 722.6408 17.9614 0.4522 736 +738 3 424.0579 723.5297 17.9875 0.4123 737 +739 3 424.8461 724.3579 18.0004 0.4309 738 +740 3 425.6549 725.1667 18.0048 0.473 739 +741 3 426.1743 726.1666 18.0057 0.5146 740 +742 3 426.7589 727.1447 18.0057 0.4259 741 +743 3 427.5197 727.9958 18.0054 0.3795 742 +744 3 428.3159 728.8172 18.0054 0.4068 743 +745 3 429.111 729.6398 18.0054 0.479 744 +746 3 429.9072 730.4612 18.0051 0.5081 745 +747 3 430.819 731.1441 18.0051 0.4988 746 +748 3 431.6758 731.8992 18.0048 0.4451 747 +749 3 432.3302 732.8304 18.0046 0.4078 748 +750 3 432.9594 733.7856 18.004 0.3806 749 +751 3 433.7064 734.6493 18.0034 0.3556 750 +752 3 434.4809 735.4913 18.0026 0.2996 751 +753 3 435.2542 736.3345 18.0012 0.2418 752 +754 3 436.1752 737.0048 17.9995 0.2552 753 +755 3 437.0915 737.689 17.997 0.2666 754 +756 3 437.9461 738.4486 17.9934 0.3533 755 +757 3 438.7892 739.2219 17.9886 0.4241 756 +758 3 439.7273 739.8717 17.9819 0.4197 757 +759 3 440.7214 740.438 17.9724 0.3834 758 +760 3 441.7259 740.9848 17.9586 0.3397 759 +761 3 442.7337 741.5271 17.9404 0.2577 760 +762 3 443.7416 742.0682 17.9175 0.2242 761 +763 3 444.603 742.8106 17.8769 0.2748 762 +764 3 445.397 743.632 17.8195 0.2782 763 +765 3 446.1829 744.4614 17.7526 0.2653 764 +766 3 446.97 745.2908 17.6826 0.2207 765 +767 3 447.701 746.1694 17.6201 0.239 766 +768 3 448.3359 747.1201 17.577 0.2392 767 +769 3 448.9903 748.0536 17.5806 0.2892 768 +770 3 449.6549 748.9791 17.624 0.3701 769 +771 3 449.9684 750.0636 17.6473 0.348 770 +772 3 450.0965 751.1962 17.6282 0.3421 771 +773 3 450.2052 752.3322 17.5717 0.2758 772 +774 3 450.0885 753.467 17.5106 0.3062 773 +775 3 449.9363 754.6007 17.4493 0.3051 774 +776 3 449.8139 755.7378 17.3908 0.2397 775 +777 3 449.6961 756.875 17.3396 0.1964 776 +778 3 449.5783 758.0133 17.2908 0.1945 777 +779 3 449.7705 759.1332 17.2248 0.2692 778 +780 3 450.2304 760.1754 17.1284 0.2561 779 +781 3 450.7166 761.2084 17.008 0.2812 780 +782 3 451.1398 762.2678 16.8725 0.3181 781 +783 3 451.4693 763.3603 16.73 0.3178 782 +784 3 451.7896 764.4551 16.5894 0.3079 783 +785 3 452.2941 765.479 16.4732 0.3347 784 +786 3 453.2013 766.1402 16.3444 0.2796 785 +787 3 454.3053 766.3645 16.3178 0.1144 786 +788 3 390.978 700.5398 20.6808 0.1716 701 +789 3 392.0785 700.247 20.3935 0.1716 788 +790 3 393.1882 699.9816 20.2759 0.1716 789 +791 3 394.3162 699.794 20.1586 0.1716 790 +792 3 395.4042 699.9827 20.0144 0.1716 791 +793 3 396.5115 700.1783 19.8528 0.1716 792 +794 3 397.6441 700.0788 19.7092 0.1716 793 +795 3 398.7778 699.9244 19.5871 0.1716 794 +796 3 399.8417 699.5571 19.4491 0.1716 795 +797 3 400.9102 699.1716 19.2976 0.1716 796 +798 3 402.0348 698.992 19.1643 0.1716 797 +799 3 403.1731 698.8879 19.0504 0.1716 798 +800 3 404.3136 698.7987 18.9454 0.1716 799 +801 3 405.4519 698.8135 18.8163 0.1716 800 +802 3 406.557 698.6179 18.655 0.1716 801 +803 3 407.3429 697.8331 18.4988 0.1716 802 +804 3 408.4057 697.9498 18.3184 0.1716 803 +805 3 409.5154 698.2049 18.1185 0.1716 804 +806 3 410.6216 698.4967 17.9421 0.1716 805 +807 3 411.7325 698.7666 17.7901 0.1716 806 +808 3 412.5378 698.0539 17.5963 0.1716 807 +809 3 413.302 697.2325 17.3572 0.1716 808 +810 3 414.0685 696.386 17.1514 0.1716 809 +811 3 414.4403 697.2897 16.9912 0.1716 810 +812 3 415.3898 697.697 16.8675 0.1716 811 +813 3 416.4846 697.3618 16.7745 0.1716 812 +814 3 417.5097 696.8951 16.6942 0.1716 813 +815 3 418.4443 696.2601 16.5922 0.1716 814 +816 3 419.4739 696.2075 16.4878 0.1716 815 +817 3 420.5035 696.3093 16.4049 0.1716 816 +818 3 421.5137 695.7785 16.3411 0.1716 817 +819 3 422.4975 695.1939 16.2932 0.1716 818 +820 3 423.4951 694.6345 16.2571 0.1716 819 +821 3 424.5087 694.1037 16.2274 0.1716 820 +822 3 425.5874 693.9058 16.1952 0.1716 821 +823 3 426.7063 693.8268 16.1451 0.1716 822 +824 3 427.729 693.3544 16.0605 0.1716 823 +825 3 428.7849 693.0123 15.9564 0.1716 824 +826 3 429.8935 693.1896 15.8637 0.1716 825 +827 3 431.01 693.4242 15.7892 0.1716 826 +828 3 431.9115 692.9002 15.7304 0.1716 827 +829 3 432.9056 692.374 15.685 0.1716 828 +830 3 433.9844 691.9953 15.6489 0.1716 829 +831 3 435.0655 691.6269 15.5968 0.1716 830 +832 3 436.1454 691.2574 15.5218 0.1716 831 +833 3 437.2254 690.8879 15.437 0.1716 832 +834 3 438.3087 690.5207 15.3712 0.1716 833 +835 3 439.4356 690.4406 15.3334 0.1716 834 +836 3 440.5109 690.7918 15.3219 0.1716 835 +837 3 441.5199 691.3272 15.3348 0.1716 836 +838 3 442.6182 691.588 15.3902 0.1716 837 +839 3 443.753 691.588 15.4907 0.1716 838 +840 3 444.7163 691.0298 15.5851 0.1716 839 +841 3 445.7013 690.4475 15.6576 0.1716 840 +842 3 446.7377 689.9658 15.7091 0.1716 841 +843 3 447.7822 689.5002 15.741 0.1716 842 +844 3 448.853 689.0976 15.7559 0.1716 843 +845 3 449.9283 688.7074 15.7601 0.1716 844 +846 3 451.062 688.6514 15.7623 0.1716 845 +847 3 452.206 688.6525 15.7654 0.1716 846 +848 3 453.2002 689.1719 15.7693 0.1716 847 +849 3 454.1657 689.784 15.7752 0.1716 848 +850 3 455.2708 690.0368 15.7836 0.1716 849 +851 3 456.4125 690.0608 15.7951 0.1716 850 +852 3 457.5565 690.0619 15.8077 0.1716 851 +853 3 458.6971 689.9796 15.8273 0.1716 852 +854 3 459.7942 689.673 15.8704 0.1716 853 +855 3 460.8856 689.3412 15.93 0.1716 854 +856 3 462.0181 689.3984 15.9508 0.1716 855 +857 3 463.1061 689.7187 15.9071 0.1716 856 +858 3 464.0167 689.0564 15.864 0.1716 857 +859 3 465.0497 688.5667 15.8242 0.1716 858 +860 3 466.1457 688.2418 15.79 0.1716 859 +861 3 467.2336 687.8872 15.7657 0.1716 860 +862 3 468.357 687.6721 15.7553 0.1716 861 +863 3 469.4987 687.7453 15.755 0.1716 862 +864 3 363.9167 708.2172 25.5352 0.4576 1 +865 3 364.8857 708.8247 25.4304 0.4576 864 +866 3 365.333 709.7593 25.389 0.4576 865 +867 3 365.8821 710.6986 25.4047 0.4576 866 +868 3 366.9849 710.869 25.4691 0.4576 867 +869 3 368.0603 711.2442 25.5388 0.4576 868 +870 3 368.9228 711.989 25.5648 0.4576 869 +871 3 369.7763 712.7486 25.5494 0.4576 870 +872 3 370.6297 713.5094 25.5007 0.4576 871 +873 3 371.4843 714.2678 25.4285 0.4576 872 +874 3 372.1832 715.1727 25.3579 0.4576 873 +875 3 372.9623 716.0102 25.2972 0.4576 874 +876 3 374.0788 716.255 25.2479 0.4576 875 +877 3 375.1965 716.4986 25.2053 0.4576 876 +878 3 376.2422 716.9574 25.1404 0.4576 877 +879 3 377.2832 717.4241 25.0583 0.4576 878 +880 3 378.3254 717.8909 24.9659 0.4576 879 +881 3 379.1365 717.5031 24.6453 0.2288 880 +882 3 380.1672 717.0112 24.4504 0.3305 881 +883 3 381.198 716.5181 24.3667 0.3286 882 +884 3 382.231 716.0296 24.2693 0.2726 883 +885 3 383.2709 715.5571 24.1676 0.1946 884 +886 3 384.3154 715.0927 24.0688 0.1541 885 +887 3 385.3598 714.6293 23.9792 0.1448 886 +888 3 386.4032 714.1637 23.9042 0.1519 887 +889 3 387.2955 713.4865 23.8619 0.1618 888 +890 3 388.0528 712.6296 23.861 0.1955 889 +891 3 388.7941 711.759 23.8921 0.183 890 +892 3 389.5343 710.8885 23.9448 0.181 891 +893 3 390.2756 710.0179 24.0089 0.1894 892 +894 3 391.0364 709.1645 24.071 0.2593 893 +895 3 391.8314 708.3431 24.1175 0.2405 894 +896 3 392.789 707.7596 24.145 0.2397 895 +897 3 393.9055 707.6166 24.157 0.3008 896 +898 3 394.6136 706.9325 24.1562 0.3399 897 +899 3 395.5563 706.3422 24.1455 0.3144 898 +900 3 396.6637 706.0585 24.1268 0.2851 899 +901 3 397.4142 705.2028 24.101 0.2581 900 +902 3 398.1646 704.3402 24.0626 0.3044 901 +903 3 399.0558 703.6241 24.0041 0.3799 902 +904 3 399.947 702.9079 23.9288 0.4554 903 +905 3 400.8393 702.1918 23.8398 0.4517 904 +906 3 401.7305 701.4756 23.7409 0.4563 905 +907 3 402.6228 700.7618 23.6362 0.4077 906 +908 3 403.6512 700.2721 23.5183 0.3675 907 +909 3 404.7792 700.1166 23.3811 0.2793 908 +910 3 405.8672 699.794 23.2434 0.2953 909 +911 3 406.7698 699.0904 23.1356 0.2544 910 +912 3 407.6804 698.4006 23.0516 0.2929 911 +913 3 408.7066 697.8983 22.9802 0.2674 912 +914 3 409.8037 697.5746 22.913 0.2322 913 +915 3 410.8996 697.2508 22.8463 0.2222 914 +916 3 411.9967 696.9259 22.7749 0.2796 915 +917 3 413.0938 696.6022 22.696 0.3598 916 +918 3 414.1898 696.2784 22.6097 0.4076 917 +919 3 415.2869 695.9535 22.5159 0.4132 918 +920 3 416.3748 695.6092 22.416 0.4844 919 +921 3 417.3735 695.0521 22.316 0.5496 920 +922 3 418.3013 694.3908 22.1953 0.5372 921 +923 3 419.0941 693.5832 22.0234 0.4746 922 +924 3 419.8732 692.7618 21.821 0.4362 923 +925 3 420.5287 691.8283 21.635 0.4465 924 +926 3 421.1167 690.8547 21.4911 0.413 925 +927 3 422.009 690.1752 21.3828 0.3769 926 +928 3 423.1073 689.9224 21.3052 0.2982 927 +929 3 423.9996 689.2188 21.2467 0.3243 928 +930 3 424.6997 688.3185 21.1775 0.3386 929 +931 3 425.3907 687.425 21.0829 0.3011 930 +932 3 426.3677 686.9297 20.9877 0.3145 931 +933 3 427.5094 686.924 20.9149 0.3933 932 +934 3 428.6454 687.0521 20.8628 0.3925 933 +935 3 429.7596 687.2889 20.83 0.4172 934 +936 3 430.843 687.6561 20.8127 0.4502 935 +937 3 431.9401 687.7991 20.8054 0.4598 936 +938 3 433.0246 687.4548 20.7998 0.3838 937 +939 3 433.9913 686.8587 20.7925 0.3551 938 +940 3 434.9602 686.3657 20.7819 0.3302 939 +941 3 436.0962 686.2478 20.7665 0.2601 940 +942 3 437.2002 685.9653 20.7449 0.2464 941 +943 3 438.16 685.391 20.7169 0.2294 942 +944 3 438.9185 684.5387 20.6825 0.2708 943 +945 3 439.6735 683.6887 20.6178 0.3374 944 +946 3 440.6265 683.1396 20.5153 0.2804 945 +947 3 441.7304 682.8456 20.4173 0.2505 946 +948 3 442.7589 682.3731 20.3412 0.285 947 +949 3 443.7668 681.8366 20.2849 0.3707 948 +950 3 444.8638 681.5712 20.2462 0.4229 949 +951 3 446.0021 681.4579 20.2219 0.4654 950 +952 3 447.0844 681.1353 20.204 0.4653 951 +953 3 448.0362 680.5153 20.1827 0.3901 952 +954 3 449.0875 680.2396 20.155 0.3853 953 +955 3 450.2315 680.2396 20.1191 0.296 954 +956 3 451.3721 680.2807 20.0542 0.2921 955 +957 3 452.5092 680.3402 19.9567 0.3002 956 +958 3 453.6463 680.4432 19.8626 0.3556 957 +959 3 454.7823 680.5736 19.7901 0.376 958 +960 3 455.9229 680.5896 19.7386 0.3562 959 +961 3 457.0589 680.4626 19.7058 0.3709 960 +962 3 458.188 680.283 19.6899 0.3776 961 +963 3 459.3057 680.0428 19.6837 0.3748 962 +964 3 460.4177 679.7728 19.6795 0.33 963 +965 3 461.5251 679.4868 19.6736 0.3238 964 +966 3 462.5936 679.0853 19.6658 0.2829 965 +967 3 463.5728 678.5018 19.6546 0.2344 966 +968 3 464.4457 677.7674 19.6389 0.2416 967 +969 3 465.4398 677.2457 19.6168 0.2409 968 +970 3 466.5324 676.9059 19.5857 0.308 969 +971 3 467.6443 676.6417 19.5451 0.329 970 +972 3 468.7803 676.5662 19.4869 0.2972 971 +973 3 469.8442 676.2264 19.3998 0.2386 972 +974 3 470.2389 675.2082 19.2632 0.2429 973 +975 3 470.915 674.3022 19.1204 0.2754 974 +976 3 471.1678 673.2005 18.9865 0.2161 975 +977 3 470.3476 672.4283 18.5685 0.2288 976 +978 3 379.3584 719.147 24.8581 0.4765 880 +979 3 380.0848 720.0302 24.8374 0.4458 978 +980 3 381.5114 719.8814 23.9179 0.1144 979 +981 3 382.3179 720.339 23.6804 0.2426 980 +982 3 382.0949 721.4556 23.4287 0.2973 981 +983 3 381.9736 722.5687 23.1787 0.2624 982 +984 3 382.477 723.3992 22.9608 0.2874 983 +985 3 383.5317 723.6864 22.7517 0.2416 984 +986 3 383.8681 724.6176 22.4902 0.2598 985 +987 3 383.8509 725.7467 22.2401 0.2509 986 +988 3 384.3211 726.7363 22.043 0.327 987 +989 3 385.1093 727.56 21.8865 0.3622 988 +990 3 385.9158 728.3699 21.7501 0.3693 989 +991 3 386.0577 729.4236 21.5866 0.3216 990 +992 3 385.6664 730.4783 21.4438 0.2994 991 +993 3 385.989 731.4885 21.3226 0.2797 992 +994 3 386.4432 732.5364 21.1999 0.3684 993 +995 3 386.7704 733.6175 21.0347 0.3824 994 +996 3 387.5609 734.3942 20.886 0.3373 995 +997 3 387.9361 735.4341 20.7626 0.3712 996 +998 3 387.9338 736.5758 20.6506 0.4346 997 +999 3 388.6854 737.3984 20.5153 0.4354 998 +1000 3 389.5011 738.1935 20.3641 0.4314 999 +1001 3 390.0296 739.1956 20.1956 0.3369 1000 +1002 3 390.3706 740.2778 20.0094 0.3549 1001 +1003 3 391.0352 741.2056 19.8615 0.366 1002 +1004 3 391.7216 742.1197 19.7523 0.3798 1003 +1005 3 391.9504 743.2305 19.6767 0.3236 1004 +1006 3 391.6656 744.3379 19.6227 0.3876 1005 +1007 3 391.6026 745.467 19.5784 0.3773 1006 +1008 3 392.2902 746.3696 19.532 0.412 1007 +1009 3 393.3266 746.8524 19.4718 0.4435 1008 +1010 3 394.4032 747.2196 19.3883 0.4324 1009 +1011 3 395.2326 747.906 19.2324 0.407 1010 +1012 3 395.2806 749.0432 19.0574 0.3822 1011 +1013 3 395.681 750.0728 18.8622 0.3431 1012 +1014 3 396.4326 750.9273 18.6444 0.3516 1013 +1015 3 397.2357 751.7361 18.4187 0.3173 1014 +1016 3 398.0731 752.5118 18.1952 0.382 1015 +1017 3 398.8865 753.3114 17.9757 0.4513 1016 +1018 3 399.637 754.1683 17.7495 0.4828 1017 +1019 3 400.3096 755.0858 17.5179 0.4399 1018 +1020 3 400.8198 756.0971 17.2858 0.3943 1019 +1021 3 401.1905 757.177 17.0559 0.3729 1020 +1022 3 401.6401 758.2192 16.8227 0.2566 1021 +1023 3 402.3013 759.1355 16.5788 0.1844 1022 +1024 3 403.212 759.7498 16.3201 0.1541 1023 +1025 3 404.3079 760.0427 16.0552 0.1682 1024 +1026 3 404.9222 760.7371 15.8091 0.1955 1025 +1027 3 404.396 761.6306 15.5658 0.2412 1026 +1028 3 403.7965 762.5824 15.3552 0.3497 1027 +1029 3 403.8709 763.6635 15.1861 0.4348 1028 +1030 3 404.3777 764.6782 15.0391 0.4698 1029 +1031 3 404.9508 765.6655 14.9066 0.3299 1030 +1032 3 405.5251 766.6527 14.7988 0.2647 1031 +1033 3 406.0994 767.6434 14.7246 0.2305 1032 +1034 3 406.6714 768.633 14.6762 0.2033 1033 +1035 3 407.2354 769.6294 14.6474 0.2065 1034 +1036 3 407.7857 770.6316 14.6339 0.1805 1035 +1037 3 408.1197 771.7184 14.6297 0.1725 1036 +1038 3 408.3828 772.8315 14.6289 0.1918 1037 +1039 3 409.0155 773.7524 14.6289 0.1765 1038 +1040 3 409.9421 774.4125 14.6283 0.1678 1039 +1041 3 410.7063 775.2522 14.6278 0.17 1040 +1042 3 411.2508 776.2543 14.6272 0.2 1041 +1043 3 411.6204 777.3354 14.6261 0.2433 1042 +1044 3 411.9613 778.4268 14.6247 0.3835 1043 +1045 3 412.1489 779.5536 14.6224 0.3532 1044 +1046 3 412.1775 780.6965 14.6196 0.3324 1045 +1047 3 412.1843 781.8393 14.6157 0.236 1046 +1048 3 412.1924 782.9833 14.6101 0.225 1047 +1049 3 412.1992 784.1273 14.602 0.1912 1048 +1050 3 412.69 785.1421 14.5914 0.1928 1049 +1051 3 413.6407 785.7736 14.5776 0.2273 1050 +1052 3 414.676 786.2586 14.5533 0.2521 1051 +1053 3 415.7994 786.4794 14.5211 0.2599 1052 +1054 3 416.9216 786.6979 14.4824 0.2317 1053 +1055 3 418.0439 786.9187 14.4396 0.2711 1054 +1056 3 419.1639 787.1555 14.3872 0.2415 1055 +1057 3 420.2141 787.5559 14.0669 0.2288 1056 +1058 3 380.992 721.1158 24.8856 0.3202 979 +1059 3 381.7231 721.9898 24.9488 0.3057 1058 +1060 3 382.4358 723.0766 24.929 0.2493 1059 +1061 3 383.0604 724.0284 24.8346 0.287 1060 +1062 3 383.685 724.9814 24.7064 0.2384 1061 +1063 3 384.3062 725.9366 24.568 0.2659 1062 +1064 3 384.916 726.9033 24.4594 0.2045 1063 +1065 3 385.52 727.8746 24.4003 0.1774 1064 +1066 3 386.1263 728.8458 24.3888 0.1643 1065 +1067 3 386.7635 729.7942 24.4269 0.189 1066 +1068 3 387.4213 730.7289 24.5098 0.225 1067 +1069 3 388.078 731.6646 24.626 0.3392 1068 +1070 3 388.7346 732.5993 24.7652 0.3212 1069 +1071 3 389.3478 733.5625 24.9276 0.3732 1070 +1072 3 389.8626 734.5773 25.1202 0.3991 1071 +1073 3 390.3362 735.6126 25.3383 0.4454 1072 +1074 3 390.8098 736.6479 25.5735 0.4264 1073 +1075 3 391.2869 737.6809 25.818 0.3262 1074 +1076 3 391.772 738.7128 26.0618 0.2277 1075 +1077 3 392.2616 739.7424 26.2993 0.1936 1076 +1078 3 392.7501 740.772 26.528 0.21 1077 +1079 3 393.2386 741.8016 26.7476 0.3108 1078 +1080 3 393.8151 742.7832 26.9562 0.2715 1079 +1081 3 394.5107 743.6858 27.1508 0.2668 1080 +1082 3 395.2451 744.561 27.3316 0.2702 1081 +1083 3 395.9224 745.4773 27.4994 0.2174 1082 +1084 3 396.4658 746.4783 27.655 0.1781 1083 +1085 3 396.952 747.5102 27.7984 0.1631 1084 +1086 3 397.3387 748.5821 27.9224 0.198 1085 +1087 3 397.4988 749.7078 28.0143 0.1878 1086 +1088 3 397.572 750.8495 28.0739 0.1896 1087 +1089 3 397.6681 751.9901 28.1089 0.2065 1088 +1090 3 397.9175 753.1009 28.1266 0.2858 1089 +1091 3 398.239 754.1992 28.1327 0.3145 1090 +1092 3 398.5593 755.2974 28.1338 0.2552 1091 +1093 3 398.8808 756.3956 28.1338 0.2343 1092 +1094 3 399.1691 757.5019 28.1338 0.2209 1093 +1095 3 399.4276 758.6161 28.1338 0.188 1094 +1096 3 399.6781 759.7327 28.1338 0.1659 1095 +1097 3 399.9275 760.8492 28.1341 0.1642 1096 +1098 3 400.1781 761.9658 28.1341 0.2 1097 +1099 3 400.5247 763.0537 28.1341 0.1917 1098 +1100 3 400.9468 764.1165 28.1344 0.1945 1099 +1101 3 401.3827 765.1736 28.1344 0.2272 1100 +1102 3 401.854 766.2157 28.1347 0.2677 1101 +1103 3 402.3528 767.2453 28.135 0.2128 1102 +1104 3 402.6468 768.3401 28.1355 0.169 1103 +1105 3 402.8367 769.4681 28.1361 0.1494 1104 +1106 3 403.0278 770.5961 28.1372 0.1572 1105 +1107 3 403.355 771.6886 28.1386 0.1868 1106 +1108 3 403.8412 772.7205 28.1403 0.1673 1107 +1109 3 404.3708 773.7352 28.1428 0.1504 1108 +1110 3 405.0286 774.6653 28.1464 0.1382 1109 +1111 3 405.7768 775.5302 28.1515 0.139 1110 +1112 3 406.5387 776.3836 28.1585 0.1404 1111 +1113 3 407.3006 777.237 28.1683 0.1431 1112 +1114 3 408.0351 778.1133 28.1823 0.148 1113 +1115 3 408.6665 779.0651 28.2019 0.1576 1114 +1116 3 409.2568 780.0444 28.2282 0.173 1115 +1117 3 409.8586 781.018 28.2624 0.2136 1116 +1118 3 410.6663 781.8062 28.3203 0.2293 1117 +1119 3 411.5609 782.5154 28.4029 0.2045 1118 +1120 3 412.4555 783.2247 28.502 0.191 1119 +1121 3 413.3249 783.9672 28.5998 0.2389 1120 +1122 3 414.1806 784.7268 28.6838 0.2016 1121 +1123 3 415.1256 785.3617 28.7538 0.1719 1122 +1124 3 416.0842 785.9852 28.8165 0.1549 1123 +1125 3 416.9514 786.7254 28.8876 0.1673 1124 +1126 3 417.7854 787.5067 28.9713 0.2056 1125 +1127 3 418.6182 788.2892 29.0671 0.2028 1126 +1128 3 419.4693 789.0523 29.1673 0.2116 1127 +1129 3 420.3639 789.7638 29.2569 0.2751 1128 +1130 3 421.2723 790.4582 29.3317 0.2789 1129 +1131 3 422.1852 791.1458 29.4126 0.2664 1130 +1132 3 423.0992 791.8288 29.5067 0.2238 1131 +1133 3 424.019 792.5049 29.605 0.2393 1132 +1134 3 424.9663 793.1444 29.6848 0.2664 1133 +1135 3 425.9215 793.7747 29.741 0.2104 1134 +1136 3 426.6811 794.6098 29.7758 0.1647 1135 +1137 3 427.3618 795.5296 29.7906 0.1411 1136 +1138 3 428.1569 796.3453 29.7895 0.1443 1137 +1139 3 429.1281 796.9356 29.778 0.1502 1138 +1140 3 430.1463 797.4572 29.7601 0.1616 1139 +1141 3 431.1644 797.9789 29.7368 0.1803 1140 +1142 3 432.1815 798.5017 29.7094 0.2279 1141 +1143 3 433.2042 799.0062 29.6537 0.2532 1142 +1144 3 434.2292 799.5016 29.566 0.2615 1143 +1145 3 435.2165 800.0736 29.4871 0.2352 1144 +1146 3 436.1855 800.6833 29.4358 0.2758 1145 +1147 3 437.1933 801.2221 29.4143 0.2593 1146 +1148 3 438.2218 801.7221 29.4218 0.2172 1147 +1149 3 439.2365 802.2506 29.4652 0.1946 1148 +1150 3 440.2101 802.8443 29.5529 0.2275 1149 +1151 3 441.1722 803.4587 29.6733 0.2682 1150 +1152 3 442.0061 804.2286 29.808 0.2137 1151 +1153 3 442.72 805.1197 29.9446 0.1709 1152 +1154 3 443.4087 806.0315 30.0784 0.1524 1153 +1155 3 444.0974 806.9433 30.2067 0.1663 1154 +1156 3 444.7872 807.8562 30.3271 0.1858 1155 +1157 3 445.5388 808.7142 30.4494 0.2534 1156 +1158 3 446.3545 809.5093 30.5813 0.2258 1157 +1159 3 447.0272 810.4233 30.7101 0.2302 1158 +1160 3 447.5385 811.4438 30.8087 0.1983 1159 +1161 3 448.3862 812.1954 30.8762 0.2183 1160 +1162 3 449.4719 812.5226 30.9176 0.2147 1161 +1163 3 450.5873 812.7777 30.9389 0.1765 1162 +1164 3 451.4521 813.519 30.9464 0.144 1163 +1165 3 452.3948 814.1665 30.9473 0.1271 1164 +1166 3 453.5354 814.2626 30.9473 0.1144 1165 +1167 3 454.6748 814.3587 30.9473 0.1144 1166 +1168 3 382.962 722.0974 25.5825 0.1144 1059 +1169 3 384.0888 722.2758 25.6824 0.2883 1168 +1170 3 385.2008 722.5447 25.76 0.3163 1169 +1171 3 386.3128 722.8135 25.8163 0.2734 1170 +1172 3 387.4064 723.151 25.8532 0.196 1171 +1173 3 388.4338 723.6544 25.8723 0.1565 1172 +1174 3 389.4611 724.1566 25.8751 0.1499 1173 +1175 3 390.4895 724.6588 25.872 0.1581 1174 +1176 3 391.5168 725.1622 25.8675 0.1886 1175 +1177 3 392.5419 725.6689 25.8614 0.1705 1176 +1178 3 393.5566 726.1986 25.8524 0.1564 1177 +1179 3 394.5713 726.7271 25.8401 0.1496 1178 +1180 3 395.5849 727.2557 25.823 0.1576 1179 +1181 3 396.5996 727.7842 25.8003 0.1878 1180 +1182 3 397.6144 728.3127 25.7684 0.169 1181 +1183 3 398.6314 728.8344 25.7146 0.154 1182 +1184 3 399.6484 729.3561 25.646 0.144 1183 +1185 3 400.6654 729.8789 25.5693 0.1525 1184 +1186 3 401.6824 730.4005 25.4901 0.1525 1185 +1187 3 402.6994 730.9222 25.3207 0.2288 1186 +1188 4 359.9974 698.7335 27.5814 0.7436 1 +1189 4 360.7753 696.5873 27.8527 0.7436 1188 +1190 4 361.1196 695.5017 28.0199 0.7436 1189 +1191 4 362.2819 693.5626 28.3486 0.7436 1190 +1192 4 363.0118 691.421 28.6059 0.7436 1191 +1193 4 363.8183 689.292 28.8016 0.7436 1192 +1194 4 364.5894 688.0645 28.737 0.6292 1193 +1195 4 364.745 686.9308 28.6891 0.6292 1194 +1196 4 364.8044 685.788 28.6395 0.6292 1195 +1197 4 365.0538 684.6726 28.5897 0.6292 1196 +1198 4 365.6418 683.7105 28.4903 0.6292 1197 +1199 4 366.4678 682.9245 28.4066 0.6292 1198 +1200 4 367.1897 682.0368 28.3531 0.6292 1199 +1201 4 367.7136 681.0209 28.3301 0.6292 1200 +1202 4 367.939 679.8998 28.3357 0.6292 1201 +1203 4 368.0831 678.7695 28.4071 0.6292 1202 +1204 4 368.2319 677.6415 28.5312 0.6292 1203 +1205 4 368.495 676.5284 28.6429 0.6292 1204 +1206 4 368.6998 675.4027 28.7423 0.6292 1205 +1207 4 368.8325 674.2667 28.8333 0.6292 1206 +1208 4 368.8325 673.1227 28.9212 0.6292 1207 +1209 4 368.6654 672.1641 27.5184 0.5148 1208 +1210 4 368.5945 671.0429 27.0466 0.5148 1209 +1211 4 368.5945 669.8989 26.8769 0.5148 1210 +1212 4 367.7754 668.573 26.4424 0.1802 1211 +1213 4 367.2618 667.9576 26.2004 0.2269 1212 +1214 4 366.7332 667.9175 25.8644 0.1144 1213 +1215 4 365.691 667.8695 25.0057 0.194 1214 +1216 4 364.6306 668.2848 24.6784 0.2573 1215 +1217 4 363.5804 668.7241 24.3552 0.2882 1216 +1218 4 362.6194 669.3155 24.0184 0.421 1217 +1219 4 361.7259 669.9859 23.6698 0.4155 1218 +1220 4 360.6471 670.3497 23.3814 0.3686 1219 +1221 4 359.5169 670.5167 23.182 0.3461 1220 +1222 4 358.3832 670.4938 23.03 0.3339 1221 +1223 4 357.3055 670.1106 22.9046 0.2825 1222 +1224 4 356.229 669.7285 22.8004 0.2131 1223 +1225 4 355.1525 669.3452 22.7091 0.1865 1224 +1226 4 354.0703 669.0478 22.6215 0.2151 1225 +1227 4 352.9492 669.2743 22.5498 0.2322 1226 +1228 4 351.8464 669.2823 22.4938 0.2096 1227 +1229 4 350.8591 668.7058 22.4496 0.2033 1228 +1230 4 349.8707 668.1292 22.4098 0.2465 1229 +1231 4 348.88 667.5583 22.3616 0.2889 1230 +1232 4 347.8881 666.9886 22.2989 0.323 1231 +1233 4 346.8974 666.4178 22.2239 0.3724 1232 +1234 4 345.9067 665.848 22.1413 0.4168 1233 +1235 4 344.8908 665.339 22.057 0.3847 1234 +1236 4 343.7743 665.117 21.9831 0.3083 1235 +1237 4 342.6314 665.0919 21.9234 0.25 1236 +1238 4 341.4909 665.0266 21.8722 0.1947 1237 +1239 4 340.364 664.8322 21.8226 0.1783 1238 +1240 4 339.236 664.6377 21.7692 0.1882 1239 +1241 4 338.1081 664.4535 21.6989 0.2397 1240 +1242 4 336.9789 664.3002 21.5866 0.2881 1241 +1243 4 335.8487 664.1492 21.4416 0.2633 1242 +1244 4 334.7195 663.9982 21.2744 0.2008 1243 +1245 4 333.587 663.8895 21.098 0.1662 1244 +1246 4 332.4704 664.0314 20.9345 0.1646 1245 +1247 4 331.4134 664.4684 20.804 0.2008 1246 +1248 4 330.322 664.7727 20.6934 0.1932 1247 +1249 4 329.1826 664.8333 20.58 0.1972 1248 +1250 4 328.042 664.8917 20.4655 0.2325 1249 +1251 4 326.9014 664.9557 20.3591 0.2772 1250 +1252 4 325.8604 665.2657 20.2726 0.2309 1251 +1253 4 324.9681 665.9476 20.2 0.2007 1252 +1254 4 323.9007 665.975 20.1393 0.2177 1253 +1255 4 322.8254 665.8995 20.0718 0.2375 1254 +1256 4 321.8198 666.4052 19.9713 0.2168 1255 +1257 4 320.7707 666.6168 19.8663 0.2288 1256 +1258 4 319.637 666.4658 19.7814 0.2349 1257 +1259 4 318.5354 666.1798 19.7151 0.2111 1258 +1260 4 317.5012 665.6993 19.6641 0.2216 1259 +1261 4 316.427 665.5826 19.6252 0.2052 1260 +1262 4 315.347 665.9418 19.5913 0.235 1261 +1263 4 314.2465 666.2393 19.5532 0.2275 1262 +1264 4 313.1345 666.5013 19.4953 0.2881 1263 +1265 4 312.0306 666.7964 19.4071 0.2683 1264 +1266 4 310.9312 667.1019 19.2912 0.3003 1265 +1267 4 309.8124 667.3261 19.1635 0.3701 1266 +1268 4 308.6752 667.4405 19.0389 0.3337 1267 +1269 4 307.5347 667.5343 18.9185 0.3847 1268 +1270 4 306.5542 668.0422 18.772 0.362 1269 +1271 4 305.6425 668.7241 18.592 0.3169 1270 +1272 4 304.5786 668.8099 18.3882 0.2484 1271 +1273 4 303.4586 668.5971 18.1664 0.2765 1272 +1274 4 302.3295 668.6131 17.9262 0.2613 1273 +1275 4 301.4726 669.3041 17.6725 0.218 1274 +1276 4 300.6054 670.0397 17.411 0.2102 1275 +1277 4 299.5198 670.3051 17.1405 0.1874 1276 +1278 4 298.3998 670.4927 16.8644 0.1852 1277 +1279 4 297.281 670.6803 16.5928 0.2161 1278 +1280 4 296.3052 671.2363 16.3307 0.2175 1279 +1281 4 295.2504 671.6561 16.0989 0.2627 1280 +1282 4 294.1293 671.4777 15.9362 0.2542 1281 +1283 4 293.46 672.3597 15.755 0.4576 1282 +1284 4 367.2263 666.5985 25.5475 0.255 1213 +1285 4 367.6873 665.5895 25.1756 0.2465 1284 +1286 4 368.4504 664.8287 24.8727 0.2972 1285 +1287 4 368.5819 663.7179 24.6075 0.2976 1286 +1288 4 369.1425 662.7638 24.3541 0.2953 1287 +1289 4 370.0623 662.1175 24.1643 0.3049 1288 +1290 4 371.0953 661.6564 23.9946 0.2553 1289 +1291 4 371.6719 660.8293 23.8216 0.2619 1290 +1292 4 372.1421 659.921 23.6849 0.2547 1291 +1293 4 372.8708 659.0847 23.5791 0.3338 1292 +1294 4 373.4428 658.094 23.4856 0.3753 1293 +1295 4 374.2058 657.2589 23.3814 0.3915 1294 +1296 4 375.049 656.4901 23.2666 0.3731 1295 +1297 4 375.9562 655.8003 23.1563 0.3449 1296 +1298 4 376.916 655.1768 23.0586 0.2638 1297 +1299 4 377.8987 654.5911 22.9709 0.2539 1298 +1300 4 378.9363 654.1232 22.8735 0.2401 1299 +1301 4 379.9956 653.7033 22.7632 0.3057 1300 +1302 4 380.9886 653.1462 22.6626 0.3287 1301 +1303 4 381.9255 652.4907 22.5834 0.2783 1302 +1304 4 382.9174 651.9267 22.5232 0.2929 1303 +1305 4 383.9516 651.4382 22.4784 0.2531 1304 +1306 4 384.9274 650.8479 22.4445 0.2754 1305 +1307 4 385.8289 650.1444 22.4143 0.3076 1306 +1308 4 386.696 649.3985 22.3798 0.2973 1307 +1309 4 387.625 648.7361 22.328 0.2747 1308 +1310 4 388.6568 648.2602 22.2443 0.2508 1309 +1311 4 389.7082 647.8186 22.134 0.2326 1310 +1312 4 390.2504 646.9011 22.0304 0.1862 1311 +1313 4 390.8041 645.9081 21.9422 0.1621 1312 +1314 4 391.7376 645.2892 21.8658 0.1597 1313 +1315 4 392.6219 644.5719 21.7969 0.1796 1314 +1316 4 393.2534 643.6258 21.7274 0.2116 1315 +1317 4 394.1732 642.9783 21.6241 0.2953 1316 +1318 4 395.1479 642.388 21.4855 0.3328 1317 +1319 4 396.1169 641.7817 21.3402 0.2859 1318 +1320 4 396.8902 640.9512 21.1756 0.3074 1319 +1321 4 397.397 639.9399 20.9751 0.2779 1320 +1322 4 397.937 638.9332 20.7973 0.3311 1321 +1323 4 398.9963 638.6117 20.6455 0.3638 1322 +1324 4 400.0374 638.1873 20.4876 0.2869 1323 +1325 4 400.2787 637.1096 20.2479 0.2391 1324 +1326 4 400.8404 636.1338 20.0245 0.2638 1325 +1327 4 401.8048 635.6213 19.8528 0.3312 1326 +1328 4 401.8815 634.5036 19.7184 0.3508 1327 +1329 4 402.3642 633.4671 19.6148 0.3265 1328 +1330 4 402.585 632.4192 19.5373 0.2326 1329 +1331 4 402.5393 631.313 19.4659 0.1821 1330 +1332 4 403.3492 630.6609 19.3572 0.1735 1331 +1333 4 404.3102 630.0603 19.2192 0.2034 1332 +1334 4 405.0675 629.2149 19.0817 0.2647 1333 +1335 4 406.0273 628.6497 18.9515 0.3503 1334 +1336 4 407.1427 628.4861 18.7956 0.3022 1335 +1337 4 408.2799 628.4484 18.6096 0.3013 1336 +1338 4 409.4136 628.5228 18.4052 0.3289 1337 +1339 4 410.5461 628.6394 18.1871 0.3527 1338 +1340 4 411.6352 628.9609 17.9878 0.3005 1339 +1341 4 412.6202 629.5318 17.8052 0.3283 1340 +1342 4 412.7277 630.598 17.5988 0.3467 1341 +1343 4 413.5297 631.2432 17.3984 0.3128 1342 +1344 4 414.3168 630.4287 17.1791 0.3522 1343 +1345 4 414.7309 629.3773 16.9705 0.3858 1344 +1346 4 414.7961 628.2448 16.788 0.4114 1345 +1347 4 415.2834 627.2552 16.5866 0.4071 1346 +1348 4 416.2856 626.7084 16.4083 0.422 1347 +1349 4 417.2408 626.0963 16.2484 0.3393 1348 +1350 4 418.108 625.3562 16.1048 0.3776 1349 +1351 4 419.0655 624.7544 15.9922 0.3188 1350 +1352 4 420.1191 624.3174 15.9261 0.383 1351 +1353 4 421.0298 623.6608 15.9166 0.3473 1352 +1354 4 421.7608 622.7867 15.9463 0.3463 1353 +1355 4 422.414 621.8521 15.9768 0.3711 1354 +1356 4 423.1587 621.0318 15.9611 0.4021 1355 +1357 4 424.1872 620.5708 15.8808 0.4173 1356 +1358 4 425.3014 620.3317 15.776 0.4224 1357 +1359 4 426.3631 619.9782 15.6526 0.4296 1358 +1360 4 427.2199 619.2506 15.4994 0.4537 1359 +1361 4 427.983 618.4018 15.3583 0.4456 1360 +1362 4 428.8227 617.6307 15.2544 0.344 1361 +1363 4 429.6441 616.8402 15.178 0.3466 1362 +1364 4 429.2105 615.8095 15.1164 0.3398 1363 +1365 4 428.3456 615.067 15.0623 0.3847 1364 +1366 4 427.2771 614.6632 15.0086 0.4163 1365 +1367 4 426.1663 614.3921 14.9374 0.3834 1366 +1368 4 425.1138 613.9573 14.8173 0.3089 1367 +1369 4 424.0614 613.5226 14.6653 0.2359 1368 +1370 4 423.01 613.0879 14.4959 0.2415 1369 +1371 4 421.9552 612.6555 14.3296 0.2542 1370 +1372 4 420.8913 612.2345 14.2072 0.2669 1371 +1373 4 419.8274 611.8135 14.0669 0.2288 1372 +1374 4 368.9961 668.5628 25.0387 0.1144 1212 +1375 4 370.0726 668.7218 24.6196 0.1722 1374 +1376 4 371.188 668.9609 24.2472 0.212 1375 +1377 4 372.0368 669.6244 23.9319 0.2266 1376 +1378 4 372.7072 670.535 23.6933 0.1986 1377 +1379 4 373.8123 670.257 23.5242 0.1854 1378 +1380 4 374.843 669.7697 23.4046 0.2019 1379 +1381 4 375.9481 669.4848 23.2764 0.2625 1380 +1382 4 377.0532 669.1988 23.1297 0.3431 1381 +1383 4 378.1538 668.8991 22.9681 0.304 1382 +1384 4 379.252 668.5845 22.7959 0.2313 1383 +1385 4 380.3503 668.2745 22.6178 0.2113 1384 +1386 4 381.4565 667.9919 22.4392 0.1894 1385 +1387 4 382.5753 667.7585 22.265 0.1897 1386 +1388 4 383.6942 667.5263 22.0928 0.2209 1387 +1389 4 384.805 667.2712 21.9184 0.2436 1388 +1390 4 385.8563 666.841 21.7241 0.228 1389 +1391 4 386.8344 666.2702 21.5065 0.2501 1390 +1392 4 387.9064 665.8732 21.3153 0.272 1391 +1393 4 388.8925 665.3882 21.138 0.2908 1392 +1394 4 389.1579 664.3208 20.9272 0.3176 1393 +1395 4 389.1236 663.1905 20.6917 0.2919 1394 +1396 4 389.278 662.0728 20.4492 0.2667 1395 +1397 4 389.6098 660.9895 20.2062 0.2265 1396 +1398 4 389.7333 659.8981 19.9937 0.2328 1397 +1399 4 389.3146 658.8513 19.8425 0.3112 1398 +1400 4 389.1396 657.808 19.7456 0.3604 1399 +1401 4 389.4245 656.7006 19.6876 0.3471 1400 +1402 4 389.7894 655.6184 19.6532 0.3713 1401 +1403 4 390.2584 654.5762 19.6291 0.2941 1402 +1404 4 390.8568 653.605 19.6036 0.2858 1403 +1405 4 391.5546 652.6989 19.5717 0.3026 1404 +1406 4 392.4469 652.0285 19.525 0.2913 1405 +1407 4 393.4513 651.5 19.4342 0.2479 1406 +1408 4 394.1069 650.6569 19.3278 0.2759 1407 +1409 4 394.5404 649.5998 19.2438 0.2596 1408 +1410 4 394.9568 648.5359 19.1808 0.2179 1409 +1411 4 395.1182 647.4182 19.1363 0.1946 1410 +1412 4 395.0896 646.2742 19.1078 0.2337 1411 +1413 4 395.0815 645.1313 19.0907 0.2498 1412 +1414 4 395.355 644.0411 19.0744 0.3243 1413 +1415 4 395.784 642.9806 19.0512 0.3605 1414 +1416 4 396.0265 641.8732 19.0196 0.3505 1415 +1417 4 396.2244 640.7487 18.9784 0.3628 1416 +1418 4 396.7381 639.7545 18.9199 0.3503 1417 +1419 4 397.7471 639.472 18.8202 0.3837 1418 +1420 4 398.8739 639.3198 18.6855 0.3995 1419 +1421 4 399.6724 638.5785 18.5528 0.4242 1420 +1422 4 400.305 637.6267 18.4254 0.3783 1421 +1423 4 400.4275 636.5227 18.2756 0.2809 1422 +1424 4 400.4343 635.3833 18.1068 0.2738 1423 +1425 4 400.6414 634.2633 17.9575 0.2198 1424 +1426 4 401.4388 633.5255 17.7856 0.2027 1425 +1427 4 402.1743 632.664 17.6036 0.2251 1426 +1428 4 401.8941 631.5875 17.449 0.2341 1427 +1429 4 401.4696 630.5248 17.3174 0.2948 1428 +1430 4 400.4263 630.5911 17.1973 0.3073 1429 +1431 4 399.7239 629.8944 17.0638 0.2438 1430 +1432 4 400.0236 628.803 16.8742 0.204 1431 +1433 4 400.1815 627.6968 16.6466 0.2096 1432 +1434 4 400.2181 626.5619 16.3946 0.2915 1433 +1435 4 400.5647 625.5003 16.128 0.3257 1434 +1436 4 401.1047 624.4982 15.8556 0.2734 1435 +1437 4 401.4685 623.432 15.5834 0.2809 1436 +1438 4 401.7236 622.3246 15.3154 0.2452 1437 +1439 4 402.1606 621.287 15.0486 0.1907 1438 +1440 4 402.5725 620.2425 14.7829 0.1469 1439 +1441 4 402.4581 619.1774 14.513 0.1313 1440 +1442 4 401.5085 619.7917 14.3189 0.1271 1441 +1443 4 400.5876 620.469 14.1893 0.1144 1442 +1444 4 399.9733 621.4345 14.0669 0.1144 1443 +1445 4 367.7285 670.0179 28.2461 0.1144 1211 +1446 4 366.747 670.1518 29.1861 0.1571 1445 +1447 4 365.627 670.3062 29.5361 0.1867 1446 +1448 4 364.4933 670.4629 29.8421 0.1669 1447 +1449 4 363.3527 670.4423 30.1308 0.15 1448 +1450 4 362.3174 670.0145 30.4511 0.1373 1449 +1451 4 361.2374 669.6896 30.779 0.1373 1450 +1452 4 360.1209 669.9241 31.0565 0.1373 1451 +1453 4 359.0044 670.1621 31.3194 0.1373 1452 +1454 4 357.8878 670.4012 31.57 0.1373 1453 +1455 4 356.7507 670.4343 31.8259 0.1372 1454 +1456 4 355.6158 670.3989 32.0886 0.1372 1455 +1457 4 354.4821 670.3646 32.3599 0.1371 1456 +1458 4 353.3438 670.4034 32.6267 0.1368 1457 +1459 4 352.2067 670.5041 32.8756 0.1364 1458 +1460 4 351.0696 670.6048 33.1114 0.1356 1459 +1461 4 349.937 670.7352 33.3348 0.1342 1460 +1462 4 348.8079 670.8942 33.5482 0.1313 1461 +1463 4 347.6799 671.0521 33.7506 0.1271 1462 +1464 4 346.5508 671.2111 33.941 0.1144 1463 +1465 4 345.4228 671.369 34.3235 0.1144 1464 +1466 4 369.3667 671.6618 29.1838 0.5377 1208 +1467 4 369.822 670.6128 29.3426 0.5377 1466 +1468 4 370.3117 669.5981 29.554 0.5377 1467 +1469 4 370.8127 668.6028 29.8136 0.5377 1468 +1470 4 371.3172 667.5766 30.0006 0.5377 1469 +1471 4 371.7874 666.5344 30.1193 0.5377 1470 +1472 4 372.5528 665.6833 30.179 0.5377 1471 +1473 4 373.1694 665.331 30.1918 0.2288 1472 +1474 4 374.1612 664.7727 30.018 0.1963 1473 +1475 4 375.224 664.3654 29.9499 0.1818 1474 +1476 4 376.3531 664.2442 29.8973 0.1914 1475 +1477 4 377.3541 664.7395 29.8586 0.2606 1476 +1478 4 378.3277 665.3412 29.8332 0.2547 1477 +1479 4 379.3447 665.8641 29.8192 0.2089 1478 +1480 4 380.3983 666.3068 29.8155 0.1779 1479 +1481 4 381.4588 666.7369 29.8127 0.2025 1480 +1482 4 382.5181 667.1682 29.8091 0.1933 1481 +1483 4 383.5477 667.6659 29.804 0.2123 1482 +1484 4 384.5316 668.2482 29.797 0.1882 1483 +1485 4 385.5086 668.8442 29.7867 0.2021 1484 +1486 4 386.4855 669.4391 29.7727 0.1719 1485 +1487 4 387.4625 670.0351 29.7539 0.1591 1486 +1488 4 388.4452 670.6197 29.7287 0.1548 1487 +1489 4 389.5034 671.0452 29.6856 0.1671 1488 +1490 4 390.5753 671.4422 29.6271 0.2059 1489 +1491 4 391.6484 671.838 29.5596 0.1997 1490 +1492 4 392.7203 672.2338 29.4896 0.2241 1491 +1493 4 393.7911 672.6331 29.4235 0.21 1492 +1494 4 394.8459 673.0758 29.379 0.2434 1493 +1495 4 395.8984 673.5254 29.3594 0.2442 1494 +1496 4 396.9497 673.9762 29.3628 0.3147 1495 +1497 4 398.001 674.4258 29.3871 0.339 1496 +1498 4 399.0524 674.8765 29.4302 0.3283 1497 +1499 4 400.1037 675.3295 29.4921 0.2355 1498 +1500 4 401.1356 675.81 29.6008 0.1888 1499 +1501 4 402.1652 676.2939 29.7472 0.1804 1500 +1502 4 403.1936 676.779 29.916 0.2426 1501 +1503 4 404.2427 677.2263 30.0838 0.2091 1502 +1504 4 405.3329 677.5695 30.2131 0.1833 1503 +1505 4 406.4289 677.8944 30.3016 0.1883 1504 +1506 4 407.526 678.2215 30.3537 0.1698 1505 +1507 4 408.6231 678.5464 30.3792 0.1554 1506 +1508 4 409.719 678.8725 30.3887 0.1471 1507 +1509 4 410.8218 679.1791 30.3915 0.156 1508 +1510 4 411.9281 679.4674 30.3943 0.1699 1509 +1511 4 413.0366 679.7534 30.3979 0.2079 1510 +1512 4 414.1509 680.0096 30.4032 0.219 1511 +1513 4 415.2789 680.1995 30.4105 0.1845 1512 +1514 4 416.408 680.3803 30.4209 0.1591 1513 +1515 4 417.5383 680.5599 30.4354 0.154 1514 +1516 4 418.6685 680.7395 30.4548 0.1693 1515 +1517 4 419.7897 680.9637 30.4811 0.1913 1516 +1518 4 420.8296 681.427 30.5259 0.263 1517 +1519 4 421.8569 681.9292 30.585 0.2468 1518 +1520 4 422.883 682.4326 30.6522 0.2537 1519 +1521 4 423.9092 682.9348 30.7208 0.3153 1520 +1522 4 424.9617 683.381 30.7815 0.4221 1521 +1523 4 426.0759 683.6304 30.8185 0.5415 1522 +1524 4 427.1982 683.85 30.83 0.5736 1523 +1525 4 428.3216 684.0697 30.8199 0.5217 1524 +1526 4 429.4301 684.3477 30.7779 0.3941 1525 +1527 4 430.5352 684.6382 30.7096 0.4236 1526 +1528 4 431.6415 684.9277 30.6236 0.4457 1527 +1529 4 432.7466 685.2171 30.5276 0.4164 1528 +1530 4 433.8528 685.5077 30.4262 0.3593 1529 +1531 4 434.958 685.7971 30.324 0.2674 1530 +1532 4 436.0642 686.0877 30.226 0.258 1531 +1533 4 437.1693 686.3771 30.1344 0.2593 1532 +1534 4 438.2756 686.6666 30.0502 0.2849 1533 +1535 4 439.3807 686.9594 29.9762 0.221 1534 +1536 4 440.4697 687.306 29.927 0.185 1535 +1537 4 441.5577 687.6618 29.9015 0.1758 1536 +1538 4 442.6399 688.0325 29.897 0.2225 1537 +1539 4 443.5631 688.6949 29.9093 0.2285 1538 +1540 4 444.4623 689.403 29.9351 0.2875 1539 +1541 4 445.2917 690.1878 29.981 0.2782 1540 +1542 4 445.9953 691.0847 30.0577 0.2652 1541 +1543 4 446.6828 691.9942 30.156 0.221 1542 +1544 4 447.4619 692.8293 30.24 0.2366 1543 +1545 4 448.2661 693.6427 30.3022 0.2497 1544 +1546 4 449.0715 694.456 30.343 0.236 1545 +1547 4 449.9306 695.2111 30.3646 0.2812 1546 +1548 4 450.9019 695.8117 30.3705 0.2512 1547 +1549 4 451.8869 696.3928 30.3668 0.29 1548 +1550 4 452.8718 696.9751 30.3601 0.2471 1549 +1551 4 453.9495 697.3504 30.35 0.2675 1550 +1552 4 455.0615 697.6181 30.3363 0.2775 1551 +1553 4 456.1757 697.8766 30.3173 0.3157 1552 +1554 4 457.29 698.1363 30.2904 0.2923 1553 +1555 4 458.3836 698.4703 30.2515 0.2492 1554 +1556 4 459.4659 698.841 30.198 0.2819 1555 +1557 4 460.5469 699.2151 30.1286 0.2524 1556 +1558 4 461.6269 699.5938 30.0359 0.2927 1557 +1559 4 462.6736 700.0136 29.8654 0.2489 1558 +1560 4 463.717 700.4392 29.6307 0.2863 1559 +1561 4 464.7088 701.002 29.4031 0.2374 1560 +1562 4 465.6755 701.6141 29.2065 0.2638 1561 +1563 4 466.633 702.2307 29.0069 0.2007 1562 +1564 4 467.5871 702.8473 28.7988 0.1703 1563 +1565 4 468.5412 703.4628 28.5933 0.1512 1564 +1566 4 469.3763 704.2372 28.413 0.1643 1565 +1567 4 470.041 705.1662 28.2769 0.1821 1566 +1568 4 470.6908 706.1077 28.1795 0.246 1567 +1569 4 471.5843 706.8147 28.1154 0.2152 1568 +1570 4 472.5109 707.4862 28.0731 0.1951 1569 +1571 4 473.4261 708.1715 28.0412 0.2073 1570 +1572 4 474.2761 708.9379 28.009 0.2179 1571 +1573 4 475.1776 709.6381 27.9493 0.1826 1572 +1574 4 476.0939 710.3176 27.8639 0.1554 1573 +1575 4 477.0366 710.9605 27.7656 0.1471 1574 +1576 4 478.1382 711.2488 27.6878 0.1562 1575 +1577 4 479.2513 711.5131 27.6318 0.1695 1576 +1578 4 480.3645 711.7774 27.5957 0.2104 1577 +1579 4 481.3998 712.2613 27.5778 0.2087 1578 +1580 4 482.4237 712.7715 27.5716 0.2381 1579 +1581 4 483.4464 713.284 27.5713 0.2487 1580 +1582 4 484.5057 713.7153 27.5713 0.2527 1581 +1583 4 485.5639 714.15 27.5713 0.2219 1582 +1584 4 486.589 714.6591 27.5713 0.2359 1583 +1585 4 487.4573 715.3993 27.5713 0.2599 1584 +1586 4 487.8428 716.4758 27.5713 0.1992 1585 +1587 4 487.3806 717.5225 27.5713 0.1398 1586 +1588 4 486.9161 718.5681 27.5713 0.1144 1587 +1589 4 372.8456 663.6996 30.0678 0.617 1472 +1590 4 373.0035 662.567 29.99 0.6017 1589 +1591 4 373.079 661.4253 29.9379 0.5437 1590 +1592 4 373.4096 660.3328 29.9118 0.4666 1591 +1593 4 373.826 659.2666 29.911 0.4053 1592 +1594 4 374.2459 658.2027 29.9331 0.4669 1593 +1595 4 374.5673 657.1056 29.9681 0.417 1594 +1596 4 374.6966 655.9753 30.049 0.434 1595 +1597 4 374.7412 654.8382 30.1585 0.3914 1596 +1598 4 374.843 653.6988 30.2456 0.3297 1597 +1599 4 374.9906 652.5639 30.3106 0.3598 1598 +1600 4 375.2137 651.4416 30.3551 0.4005 1599 +1601 4 375.8612 650.5024 30.3808 0.4354 1600 +1602 4 376.4549 649.5243 30.3906 0.4682 1601 +1603 4 376.6837 648.4043 30.3932 0.4543 1602 +1604 4 376.9423 647.2901 30.3965 0.4492 1603 +1605 4 377.2718 646.1941 30.401 0.4525 1604 +1606 4 377.6218 645.105 30.4074 0.5119 1605 +1607 4 378.0119 644.0297 30.4167 0.4773 1606 +1608 4 378.2693 642.9154 30.4296 0.4305 1607 +1609 4 378.4466 641.7851 30.4478 0.4869 1608 +1610 4 378.7132 640.672 30.4724 0.469 1609 +1611 4 378.9992 639.5646 30.5032 0.4581 1610 +1612 4 379.7176 639.202 29.5534 0.1144 1611 +1613 4 380.7358 638.8782 28.7255 0.3636 1612 +1614 4 381.8214 638.6311 28.3968 0.3216 1613 +1615 4 382.5845 637.9081 27.9944 0.2481 1614 +1616 4 382.4289 636.8877 27.592 0.2047 1615 +1617 4 381.9107 635.881 27.1933 0.2468 1616 +1618 4 382.3168 635.0207 26.8103 0.301 1617 +1619 4 381.961 634.2096 26.439 0.2878 1618 +1620 4 380.8296 634.2485 26.0848 0.244 1619 +1621 4 379.7245 634.3263 25.6995 0.2568 1620 +1622 4 378.5931 634.2668 25.3607 0.282 1621 +1623 4 377.6081 633.7668 25.0463 0.3216 1622 +1624 4 376.8416 632.934 24.7386 0.3146 1623 +1625 4 376.09 632.1069 24.4577 0.2346 1624 +1626 4 375.4345 631.44 24.164 0.1834 1625 +1627 4 374.3328 631.7111 23.8602 0.1883 1626 +1628 4 373.4416 631.297 23.5488 0.17 1627 +1629 4 372.4441 631.5921 23.1963 0.1557 1628 +1630 4 371.3916 631.9605 22.813 0.1477 1629 +1631 4 370.4684 631.3278 22.4325 0.1571 1630 +1632 4 369.8666 630.3703 22.1458 0.1713 1631 +1633 4 368.7878 630.7021 21.9052 0.2135 1632 +1634 4 367.7674 631.21 21.7076 0.2142 1633 +1635 4 366.7447 631.7202 21.5678 0.2488 1634 +1636 4 365.7219 632.2327 21.4852 0.266 1635 +1637 4 364.6992 632.7464 21.4393 0.2977 1636 +1638 4 363.6787 633.2623 21.4141 0.2428 1637 +1639 4 362.6709 633.8057 21.4085 0.2347 1638 +1640 4 361.6664 634.3526 21.4152 0.2217 1639 +1641 4 360.6471 634.8502 21.427 0.1894 1640 +1642 4 359.5123 634.8994 21.4404 0.1686 1641 +1643 4 358.4335 634.5562 21.4715 0.1691 1642 +1644 4 357.4977 633.9144 21.5298 0.2095 1643 +1645 4 356.594 633.3653 21.5614 0.2069 1644 +1646 4 355.546 633.8035 21.5494 0.2349 1645 +1647 4 354.5645 634.0803 21.4659 0.2428 1646 +1648 4 353.4891 633.7382 21.3038 0.2414 1647 +1649 4 352.678 633.1491 21.0921 0.2023 1648 +1650 4 351.9688 632.3426 20.8516 0.1928 1649 +1651 4 350.8991 631.9891 20.6161 0.2123 1650 +1652 4 349.8066 631.6882 20.3675 0.2972 1651 +1653 4 348.7907 631.186 20.1228 0.3332 1652 +1654 4 347.8332 630.5991 19.8523 0.3021 1653 +1655 4 347.617 631.5097 19.5639 0.262 1654 +1656 4 346.6023 631.6882 19.3239 0.2175 1655 +1657 4 345.5029 631.3873 19.1349 0.2185 1656 +1658 4 344.6655 630.614 18.9871 0.2726 1657 +1659 4 343.9562 629.724 18.8451 0.3474 1658 +1660 4 342.9895 629.1256 18.6805 0.382 1659 +1661 4 342.0045 628.5479 18.517 0.3797 1660 +1662 4 341.1946 627.7586 18.3565 0.3538 1661 +1663 4 340.8491 626.6729 18.1686 0.297 1662 +1664 4 340.531 625.6399 17.9382 0.2344 1663 +1665 4 339.5243 625.1388 17.691 0.2534 1664 +1666 4 338.4158 624.9397 17.409 0.205 1665 +1667 4 337.5578 624.4844 17.1324 0.1782 1666 +1668 4 337.6802 623.377 16.9078 0.1665 1667 +1669 4 338.4124 622.7089 16.7177 0.1892 1668 +1670 4 339.4099 623.1128 16.5222 0.2445 1669 +1671 4 340.4247 623.2912 16.345 0.2827 1670 +1672 4 341.3044 622.6712 16.1804 0.3228 1671 +1673 4 341.4234 621.6073 15.9799 0.317 1672 +1674 4 340.7564 620.7664 15.8147 0.2386 1673 +1675 4 339.6376 620.6623 15.7181 0.1921 1674 +1676 4 338.5451 620.3294 15.6206 0.1992 1675 +1677 4 338.4947 619.3124 15.3566 0.2161 1676 +1678 4 339.5678 618.9829 14.6297 0.1144 1677 +1679 4 371.2349 630.8565 21.9428 0.1144 1631 +1680 4 372.2633 630.3875 21.5429 0.2655 1679 +1681 4 373.135 629.6919 21.4203 0.3344 1680 +1682 4 374.0022 629.0032 21.2836 0.3567 1681 +1683 4 374.6726 629.1554 21.037 0.3381 1682 +1684 4 374.6646 630.2776 20.7547 0.2512 1683 +1685 4 375.4894 630.6094 20.4842 0.2295 1684 +1686 4 376.0179 629.5947 20.2636 0.1994 1685 +1687 4 376.5716 628.6257 20.067 0.2086 1686 +1688 4 377.5749 628.1475 19.8464 0.2537 1687 +1689 4 378.5279 628.3454 19.6616 0.3145 1688 +1690 4 378.5874 629.4837 19.4919 0.3108 1689 +1691 4 378.37 630.5476 19.2844 0.2964 1690 +1692 4 378.0211 631.3507 19.0775 0.3069 1691 +1693 4 378.8745 632.1046 18.8706 0.2599 1692 +1694 4 379.768 632.8128 18.6679 0.2663 1693 +1695 4 380.3789 633.7085 18.4512 0.2822 1694 +1696 4 380.4681 634.8193 18.2328 0.2917 1695 +1697 4 379.967 635.7654 18.051 0.407 1696 +1698 4 379.1445 636.5571 17.8934 0.3744 1697 +1699 4 378.6182 637.534 17.7254 0.3661 1698 +1700 4 378.8242 638.5568 17.5655 0.3271 1699 +1701 4 379.4682 639.4994 17.4348 0.2543 1700 +1702 4 379.0381 640.1149 17.3233 0.2359 1701 +1703 4 378.1343 639.5578 17.2197 0.2082 1702 +1704 4 377.1196 639.8346 17.0738 0.2404 1703 +1705 4 376.845 640.823 16.9084 0.238 1704 +1706 4 377.2626 641.8652 16.744 0.305 1705 +1707 4 377.3187 642.9886 16.5407 0.3117 1706 +1708 4 377.6424 644.0857 16.3587 0.3226 1707 +1709 4 378.0577 645.1474 16.203 0.351 1708 +1710 4 378.7795 645.9516 16.0462 0.3638 1709 +1711 4 379.8744 646.1426 15.8656 0.3512 1710 +1712 4 380.8868 645.748 15.6988 0.276 1711 +1713 4 381.4576 644.7801 15.5462 0.274 1712 +1714 4 382.3145 644.374 15.3614 0.2895 1713 +1715 4 383.1256 644.97 15.1584 0.339 1714 +1716 4 383.6244 645.9859 14.9498 0.3305 1715 +1717 4 384.7421 645.8692 14.6297 0.3432 1716 +1718 4 378.998 637.7022 30.6342 0.4451 1611 +1719 4 378.998 636.5605 30.7286 0.4987 1718 +1720 4 378.9855 635.4176 30.8204 0.4514 1719 +1721 4 378.9569 634.2736 30.8924 0.3878 1720 +1722 4 378.9271 633.1308 30.9467 0.3828 1721 +1723 4 378.8985 631.9868 30.9868 0.3969 1722 +1724 4 378.5164 631.6962 31.0136 0.1144 1723 +1725 4 377.6069 631.0052 31.2332 0.1896 1724 +1726 4 376.6986 630.3131 31.3275 0.2454 1725 +1727 4 375.7891 629.6221 31.4387 0.2837 1726 +1728 4 374.9117 628.89 31.5535 0.3278 1727 +1729 4 374.04 628.1498 31.6663 0.3119 1728 +1730 4 373.1682 627.4108 31.7733 0.2988 1729 +1731 4 372.2965 626.6718 31.8707 0.3082 1730 +1732 4 371.4248 625.9327 31.9595 0.2775 1731 +1733 4 370.4924 625.2704 32.0284 0.2253 1732 +1734 4 369.5498 624.6229 32.0807 0.221 1733 +1735 4 368.606 623.9754 32.1227 0.2198 1734 +1736 4 367.6622 623.329 32.1591 0.1859 1735 +1737 4 366.7378 622.6552 32.1997 0.1621 1736 +1738 4 365.8592 621.9253 32.2591 0.1571 1737 +1739 4 364.9875 621.1874 32.3341 0.1867 1738 +1740 4 364.1146 620.4495 32.4187 0.1669 1739 +1741 4 363.3367 619.6121 32.4988 0.15 1740 +1742 4 362.743 618.6374 32.559 0.1373 1741 +1743 4 362.1698 617.6479 32.5987 0.1373 1742 +1744 4 361.5955 616.6583 32.6214 0.1373 1743 +1745 4 361.0224 615.6676 32.632 0.1373 1744 +1746 4 360.5476 614.6277 32.6351 0.1373 1745 +1747 4 360.1243 613.565 32.6354 0.1373 1746 +1748 4 359.7056 612.501 32.6354 0.1373 1747 +1749 4 359.2869 611.436 32.6357 0.1373 1748 +1750 4 358.7458 610.4292 32.6357 0.1374 1749 +1751 4 357.969 609.5941 32.6357 0.1375 1750 +1752 4 357.1717 608.7739 32.636 0.1376 1751 +1753 4 356.3732 607.9536 32.636 0.1379 1752 +1754 4 355.5758 607.1334 32.6362 0.1384 1753 +1755 4 354.7773 606.3143 32.6365 0.1395 1754 +1756 4 353.9799 605.494 32.6371 0.1413 1755 +1757 4 353.0144 604.8877 32.6376 0.1446 1756 +1758 4 351.9951 604.3683 32.6385 0.1507 1757 +1759 4 350.906 604.0206 32.6399 0.1632 1758 +1760 4 349.8112 603.6877 32.6416 0.1803 1759 +1761 4 348.7175 603.3548 32.6441 0.2424 1760 +1762 4 347.6387 602.9738 32.6474 0.2087 1761 +1763 4 346.5691 602.5677 32.6522 0.1825 1762 +1764 4 345.5006 602.1593 32.6589 0.1868 1763 +1765 4 344.4321 601.7497 32.6682 0.167 1764 +1766 4 343.3087 601.5415 32.6813 0.1502 1765 +1767 4 342.1727 601.4111 32.6998 0.1376 1766 +1768 4 341.0298 601.4168 32.7261 0.1379 1767 +1769 4 339.9121 601.6593 32.7614 0.1383 1768 +1770 4 338.7979 601.9145 32.8079 0.1392 1769 +1771 4 337.7042 602.2485 32.881 0.1409 1770 +1772 4 336.6437 602.6649 32.9916 0.1441 1771 +1773 4 335.5844 603.0859 33.1282 0.1497 1772 +1774 4 334.525 603.5069 33.2777 0.1614 1773 +1775 4 333.4657 603.9268 33.4281 0.1769 1774 +1776 4 332.3469 604.1578 33.5423 0.2361 1775 +1777 4 331.2155 604.3306 33.6109 0.1967 1776 +1778 4 330.084 604.4999 33.6395 0.1627 1777 +1779 4 328.9538 604.6704 33.6378 0.1373 1778 +1780 4 327.8143 604.763 33.6014 0.1373 1779 +1781 4 326.6761 604.7321 33.5216 0.1373 1780 +1782 4 325.5378 604.8099 33.4281 0.1373 1781 +1783 4 324.4613 605.1932 33.3598 0.1373 1782 +1784 4 323.3859 605.5833 33.3178 0.1373 1783 +1785 4 322.3117 605.9768 33.3029 0.1373 1784 +1786 4 321.2009 606.2525 33.3158 0.1373 1785 +1787 4 320.0901 606.5259 33.3547 0.1373 1786 +1788 4 318.9792 606.7982 33.4121 0.1373 1787 +1789 4 317.8615 607.0396 33.49 0.1373 1788 +1790 4 316.7324 607.083 33.6356 0.1373 1789 +1791 4 315.6021 607.1208 33.8288 0.1373 1790 +1792 4 314.4639 607.1974 34.0158 0.1373 1791 +1793 4 313.3256 607.3118 34.1603 0.1373 1792 +1794 4 312.1919 607.4594 34.265 0.1373 1793 +1795 4 311.0593 607.6219 34.335 0.1373 1794 +1796 4 309.9268 607.7832 34.3767 0.1373 1795 +1797 4 308.7942 607.9445 34.4047 0.1373 1796 +1798 4 307.6822 608.2133 34.4378 0.1373 1797 +1799 4 306.6595 608.7235 34.4901 0.1373 1798 +1800 4 305.6379 609.2361 34.5562 0.1373 1799 +1801 4 304.6163 609.7486 34.6304 0.1373 1800 +1802 4 303.5947 610.2611 34.7074 0.1373 1801 +1803 4 302.5514 610.729 34.7777 0.1373 1802 +1804 4 301.4646 611.0848 34.827 0.1373 1803 +1805 4 300.3766 611.4394 34.8583 0.1373 1804 +1806 4 299.2887 611.794 34.8757 0.1373 1805 +1807 4 298.179 612.072 34.8838 0.1373 1806 +1808 4 297.035 612.056 34.886 0.1373 1807 +1809 4 295.891 612.04 34.886 0.1373 1808 +1810 4 294.747 612.0228 34.886 0.1373 1809 +1811 4 293.603 612.0068 34.886 0.1373 1810 +1812 4 292.4602 611.9908 34.886 0.1373 1811 +1813 4 291.3162 611.9748 34.886 0.1373 1812 +1814 4 290.1722 611.9588 34.886 0.1372 1813 +1815 4 289.0282 611.9428 34.886 0.1372 1814 +1816 4 287.8842 611.9256 34.886 0.1371 1815 +1817 4 286.7402 611.9096 34.886 0.1368 1816 +1818 4 285.5962 611.8936 34.886 0.1364 1817 +1819 4 284.4522 611.8776 34.886 0.1356 1818 +1820 4 283.3082 611.8673 34.886 0.1342 1819 +1821 4 282.1642 611.889 34.886 0.1313 1820 +1822 4 281.0213 611.9107 34.886 0.1271 1821 +1823 4 279.8773 611.9325 34.886 0.1144 1822 +1824 4 278.7333 611.9542 34.886 0.1144 1823 +1825 4 379.5517 631.0521 31.0192 0.4242 1723 +1826 4 380.2073 630.1152 31.052 0.3541 1825 +1827 4 380.8628 629.1783 31.0926 0.3533 1826 +1828 4 381.5183 628.2402 31.145 0.5249 1827 +1829 4 381.7791 627.1316 31.2351 0.5751 1828 +1830 4 381.8912 625.9968 31.3617 0.5964 1829 +1831 4 382.0022 624.8631 31.5112 0.5267 1830 +1832 4 382.1143 623.7294 31.6716 0.469 1831 +1833 4 382.2779 622.6003 31.8242 0.3591 1832 +1834 4 382.6451 621.5169 31.934 0.2845 1833 +1835 4 383.0112 620.4324 32.004 0.3187 1834 +1836 4 383.3773 619.349 32.0426 0.3464 1835 +1837 4 383.7491 618.2668 32.0586 0.3419 1836 +1838 4 384.122 617.1857 32.0608 0.2615 1837 +1839 4 384.495 616.1035 32.0561 0.2341 1838 +1840 4 384.8679 615.0224 32.0496 0.2786 1839 +1841 4 385.1848 613.875 32.0275 0.3559 1840 +1842 4 385.4902 612.7733 32.0093 0.4093 1841 +1843 4 385.8026 611.6728 31.9841 0.3736 1842 +1844 4 386.3105 610.6478 31.9508 0.2752 1843 +1845 4 386.8013 609.6147 31.904 0.2485 1844 +1846 4 387.2394 608.56 31.8259 0.2445 1845 +1847 4 387.6787 607.5063 31.724 0.2444 1846 +1848 4 388.1169 606.4516 31.6053 0.2091 1847 +1849 4 387.9567 606.161 31.5101 0.1144 1848 +1850 4 387.403 605.1588 31.3446 0.2195 1849 +1851 4 386.8733 604.1453 31.2844 0.238 1850 +1852 4 386.1835 603.2381 31.1898 0.2325 1851 +1853 4 385.2363 602.6203 31.0346 0.1859 1852 +1854 4 384.7375 601.6136 30.8605 0.1621 1853 +1855 4 384.5362 600.4879 30.6902 0.1571 1854 +1856 4 384.1483 599.4217 30.476 0.1867 1855 +1857 4 383.5878 598.4619 30.1896 0.1669 1856 +1858 4 383.0284 597.5032 29.8628 0.15 1857 +1859 4 382.6302 597.0788 29.6187 0.1373 1858 +1860 4 381.8455 596.2459 29.4434 0.1373 1859 +1861 4 381.1122 595.3811 29.3278 0.1373 1860 +1862 4 380.6877 594.3194 29.2659 0.1373 1861 +1863 4 380.3663 593.2212 29.2421 0.1373 1862 +1864 4 380.046 592.123 29.2354 0.1373 1863 +1865 4 379.7211 591.0259 29.2258 0.1373 1864 +1866 4 379.3607 589.9414 29.2124 0.1373 1865 +1867 4 378.9351 588.8797 29.1934 0.1374 1866 +1868 4 378.5713 587.7952 29.1668 0.1374 1867 +1869 4 378.2945 586.6855 29.1315 0.1376 1868 +1870 4 377.9925 585.5839 29.0825 0.1379 1869 +1871 4 377.5555 584.5291 29.0044 0.1383 1870 +1872 4 377.0601 583.5006 28.896 0.1391 1871 +1873 4 376.5648 582.4722 28.7666 0.1407 1872 +1874 4 376.0751 581.4391 28.6286 0.1435 1873 +1875 4 375.5878 580.4061 28.4892 0.1494 1874 +1876 4 375.0993 579.3719 28.3522 0.1571 1875 +1877 4 374.6142 578.3378 28.2204 0.1867 1876 +1878 4 374.1452 577.2956 28.0927 0.1669 1877 +1879 4 373.7139 576.2374 27.9675 0.15 1878 +1880 4 373.2838 575.1792 27.8432 0.1373 1879 +1881 4 372.8525 574.1198 27.7197 0.1373 1880 +1882 4 372.4017 573.0708 27.5965 0.1373 1881 +1883 4 371.8583 572.0652 27.4742 0.1373 1882 +1884 4 371.2715 571.0848 27.3526 0.1374 1883 +1885 4 370.6846 570.1044 27.2317 0.1374 1884 +1886 4 370.0977 569.1228 27.111 0.1376 1885 +1887 4 369.512 568.1413 26.9903 0.1379 1886 +1888 4 368.932 567.1563 26.8699 0.1383 1887 +1889 4 368.352 566.1713 26.7484 0.1392 1888 +1890 4 367.772 565.1863 26.6244 0.1409 1889 +1891 4 367.192 564.2014 26.4972 0.144 1890 +1892 4 366.5937 563.229 26.3626 0.1497 1891 +1893 4 365.8958 562.3286 26.2052 0.1608 1892 +1894 4 365.0893 561.5576 26.0285 0.1788 1893 +1895 4 364.0059 561.1903 25.8661 0.2248 1894 +1896 4 363.0381 560.6961 25.7082 0.2484 1895 +1897 4 362.3803 559.7695 25.5321 0.249 1896 +1898 4 361.6276 558.9138 25.3613 0.2294 1897 +1899 4 360.8039 558.121 25.2118 0.1803 1898 +1900 4 359.9813 557.3282 25.0796 0.1511 1899 +1901 4 359.1577 556.5354 24.9609 0.1393 1900 +1902 4 358.3134 555.7666 24.8592 0.1411 1901 +1903 4 357.4085 555.0665 24.7811 0.1444 1902 +1904 4 356.4601 554.4304 24.7201 0.1503 1903 +1905 4 355.4385 553.9191 24.6674 0.1619 1904 +1906 4 354.3689 553.5141 24.6156 0.1809 1905 +1907 4 353.2718 553.2041 24.5473 0.2281 1906 +1908 4 352.1507 552.9936 24.4507 0.2574 1907 +1909 4 351.2057 552.544 24.3407 0.2515 1908 +1910 4 350.6017 551.5807 24.2432 0.3033 1909 +1911 4 349.6979 550.9561 24.1604 0.3241 1910 +1912 4 348.6065 550.6152 24.0887 0.2698 1911 +1913 4 347.5827 550.1324 24.0153 0.2767 1912 +1914 4 346.6354 549.4929 23.9268 0.225 1913 +1915 4 345.6882 548.8546 23.8221 0.2138 1914 +1916 4 344.7398 548.2162 23.7006 0.2401 1915 +1917 4 343.7651 547.6214 23.5749 0.2887 1916 +1918 4 342.7699 547.0597 23.4441 0.2647 1917 +1919 4 341.7894 546.4774 23.294 0.2034 1918 +1920 4 340.7884 545.9317 23.1269 0.1705 1919 +1921 4 339.7028 545.7097 22.9594 0.1755 1920 +1922 4 338.7407 545.3173 22.7772 0.2063 1921 +1923 4 337.8461 544.6355 22.5624 0.2744 1922 +1924 4 336.7936 544.2283 22.335 0.347 1923 +1925 4 335.6725 544.0406 22.1119 0.399 1924 +1926 4 334.5662 544.2077 21.9131 0.3243 1925 +1927 4 333.81 544.9478 21.7126 0.3302 1926 +1928 4 333.3925 546.0037 21.5054 0.3268 1927 +1929 4 333.0516 547.094 21.3212 0.2749 1928 +1930 4 332.6683 548.1705 21.1436 0.286 1929 +1931 4 332.0037 549.0617 20.932 0.2436 1930 +1932 4 330.9455 549.2699 20.7264 0.2417 1931 +1933 4 329.8404 549.5204 20.5201 0.3231 1932 +1934 4 328.8348 550.0238 20.2756 0.2911 1933 +1935 4 327.7274 550.1622 20.008 0.3184 1934 +1936 4 326.9724 550.9332 19.7386 0.2922 1935 +1937 4 326.1452 551.7134 19.4995 0.273 1936 +1938 4 325.0848 552.1264 19.3242 0.3239 1937 +1939 4 324.0334 552.576 19.206 0.341 1938 +1940 4 322.9604 552.973 19.1349 0.4049 1939 +1941 4 321.8507 553.2498 19.0949 0.3672 1940 +1942 4 320.9709 553.9694 19.0742 0.3689 1941 +1943 4 320.1415 554.7565 19.0498 0.368 1942 +1944 4 319.136 555.2884 18.9916 0.2715 1943 +1945 4 318.1098 555.7941 18.9375 0.2095 1944 +1946 4 317.063 556.2414 18.9431 0.2132 1945 +1947 4 316.0048 556.6681 18.9907 0.2161 1946 +1948 4 314.8757 556.8512 19.0347 0.2415 1947 +1949 4 313.7466 557.0342 19.075 0.3051 1948 +1950 4 312.6174 557.2172 19.131 0.4576 1949 +1951 4 383.0764 597.0158 29.0072 0.1144 1858 +1952 4 383.5889 596.1441 28.3777 0.1381 1951 +1953 4 384.0522 595.3147 28.1249 0.1388 1952 +1954 4 383.7033 594.2737 27.7782 0.14 1953 +1955 4 383.9767 593.5118 27.3722 0.1423 1954 +1956 4 385.0098 593.0427 26.9564 0.1467 1955 +1957 4 386.005 592.4959 26.5457 0.1546 1956 +1958 4 386.6411 591.6196 26.0966 0.1697 1957 +1959 4 386.7635 590.5511 25.5861 0.1956 1958 +1960 4 386.9443 589.5318 24.9866 0.2534 1959 +1961 4 387.4751 588.548 24.4625 0.3145 1960 +1962 4 387.1376 587.5401 23.9952 0.3072 1961 +1963 4 386.6354 586.5231 23.5631 0.3075 1962 +1964 4 387.6204 586.117 23.1333 0.2406 1963 +1965 4 388.3605 585.2567 22.7461 0.2152 1964 +1966 4 389.2151 584.5108 22.3826 0.2613 1965 +1967 4 390.1715 583.9068 22.0192 0.238 1966 +1968 4 390.5227 582.8302 21.6642 0.265 1967 +1969 4 391.224 581.9425 21.3209 0.2028 1968 +1970 4 392.1083 581.2538 20.9975 0.1748 1969 +1971 4 392.3577 580.1418 20.7281 0.1571 1970 +1972 4 392.2513 579.0081 20.466 0.1868 1971 +1973 4 392.1895 577.887 20.2065 0.1671 1972 +1974 4 392.8016 576.9787 19.9178 0.1503 1973 +1975 4 393.8266 576.616 19.6658 0.1379 1974 +1976 4 394.0851 575.535 19.3998 0.1383 1975 +1977 4 393.9799 574.3978 19.1618 0.1391 1976 +1978 4 393.8117 573.2721 18.9417 0.1407 1977 +1979 4 393.6813 572.1487 18.7216 0.1436 1978 +1980 4 393.9467 571.142 18.548 0.1494 1979 +1981 4 393.9215 570.4236 18.4019 0.1571 1980 +1982 4 393.7362 569.4992 18.2339 0.1868 1981 +1983 4 394.4638 568.6732 18.0482 0.1671 1982 +1984 4 395.3904 568.0029 17.8783 0.1503 1983 +1985 4 396.4143 567.519 17.6893 0.1379 1984 +1986 4 397.4782 567.1151 17.4726 0.1383 1985 +1987 4 398.4277 566.5019 17.2483 0.1392 1986 +1988 4 398.7092 565.4517 16.9929 0.1409 1987 +1989 4 399.6084 564.874 16.758 0.1439 1988 +1990 4 400.0213 563.8856 16.4858 0.1502 1989 +1991 4 400.0076 562.7519 16.2201 0.1586 1990 +1992 4 399.6598 561.6823 15.9298 0.1894 1991 +1993 4 399.1816 560.6481 15.6545 0.1721 1992 +1994 4 398.6943 559.6173 15.3992 0.1594 1993 +1995 4 398.231 558.5786 15.1455 0.1551 1994 +1996 4 398.0125 557.4701 14.8932 0.1683 1995 +1997 4 398.39 556.397 14.6983 0.2048 1996 +1998 4 398.3511 555.261 14.5228 0.2132 1997 +1999 4 398.104 554.1513 14.35 0.1738 1998 +2000 4 398.08 553.0085 14.2257 0.1398 1999 +2001 4 398.3305 551.8919 14.1459 0.1144 2000 +2002 4 398.6085 550.7822 14.0669 0.1144 2001 +2003 4 388.8467 605.5764 31.5028 0.1992 1848 +2004 4 389.5778 604.6967 31.4191 0.2544 2003 +2005 4 389.9358 603.6202 31.3113 0.2285 2004 +2006 4 390.1818 602.5151 31.1864 0.2319 2005 +2007 4 390.4278 601.41 31.0607 0.2164 2006 +2008 4 391.1794 601.0919 30.3848 0.1144 2007 +2009 4 392.2536 600.7121 30.1896 0.1373 2008 +2010 4 393.3221 600.8025 30.1185 0.1373 2009 +2011 4 394.3482 601.0187 30.0023 0.1373 2010 +2012 4 395.4385 600.7281 29.822 0.1373 2011 +2013 4 396.5401 600.4581 29.6187 0.1373 2012 +2014 4 397.6601 600.2271 29.4406 0.1373 2013 +2015 4 398.7915 600.0703 29.2992 0.1373 2014 +2016 4 399.9332 600.0269 29.1894 0.1373 2015 +2017 4 401.0624 599.9067 29.0984 0.1373 2016 +2018 4 402.1675 599.6127 29.0074 0.1374 2017 +2019 4 403.2646 599.2958 28.9047 0.1374 2018 +2020 4 404.3628 598.979 28.7854 0.1375 2019 +2021 4 405.4553 598.6449 28.6496 0.1377 2020 +2022 4 406.5261 598.2514 28.4959 0.1382 2021 +2023 4 407.5786 597.8098 28.3262 0.139 2022 +2024 4 408.6299 597.3671 28.1476 0.1405 2023 +2025 4 409.6813 596.9255 27.9644 0.1432 2024 +2026 4 410.7326 596.4839 27.7799 0.1483 2025 +2027 4 411.7965 596.0698 27.608 0.1581 2026 +2028 4 412.8742 595.6831 27.4604 0.1738 2027 +2029 4 413.9438 595.2804 27.326 0.2151 2028 +2030 4 414.9391 594.7404 27.1802 0.2321 2029 +2031 4 415.7262 593.9362 26.9903 0.2099 2030 +2032 4 416.3885 593.0164 26.7498 0.2009 2031 +2033 4 417.1402 592.1824 26.465 0.2569 2032 +2034 4 418.0599 591.5452 26.1405 0.236 2033 +2035 4 419.093 591.0991 25.8079 0.2317 2034 +2036 4 420.2049 590.8829 25.5203 0.2855 2035 +2037 4 421.3455 590.7936 25.2949 0.3135 2036 +2038 4 422.1657 590.2148 25.1138 0.2564 2037 +2039 4 422.8167 589.2824 24.9466 0.2217 2038 +2040 4 423.7891 588.8134 24.7453 0.2695 2039 +2041 4 424.7764 588.2951 24.5171 0.2716 2040 +2042 4 425.8243 587.9291 24.2455 0.2382 2041 +2043 4 426.9488 587.8638 23.9072 0.2424 2042 +2044 4 428.0642 587.746 23.5136 0.2722 2043 +2045 4 429.1338 587.4417 23.0759 0.221 2044 +2046 4 430.0616 586.8789 22.5921 0.185 2045 +2047 4 431.0798 586.7576 22.0962 0.1758 2046 +2048 4 431.6678 587.6728 21.7202 0.2226 2047 +2049 4 432.6448 587.0779 21.4444 0.228 2048 +2050 4 433.6549 586.546 21.245 0.2897 2049 +2051 4 434.736 586.2863 21.0893 0.268 2050 +2052 4 435.8411 586.5574 20.925 0.3153 2051 +2053 4 436.9325 586.8731 20.739 0.3228 2052 +2054 4 438.0021 587.2335 20.5246 0.2676 2053 +2055 4 439.1324 587.2495 20.3143 0.2726 2054 +2056 4 440.2478 587.1168 20.1158 0.2176 2055 +2057 4 441.3632 587.3319 19.9072 0.1995 2056 +2058 4 442.4717 587.6099 19.7254 0.2155 2057 +2059 4 443.586 587.8387 19.5742 0.2337 2058 +2060 4 444.563 587.5801 19.434 0.2091 2059 +2061 4 444.9485 586.5288 19.2634 0.2172 2060 +2062 4 445.4553 585.6548 19.0585 0.201 2061 +2063 4 446.5181 585.2532 18.8479 0.2078 2062 +2064 4 447.5236 584.7659 18.6007 0.2703 2063 +2065 4 448.1814 583.9205 18.277 0.2583 2064 +2066 4 449.1573 584.0772 17.964 0.285 2065 +2067 4 450.2681 584.2545 17.6336 0.326 2066 +2068 4 451.2199 583.6745 17.3216 0.3288 2067 +2069 4 452.2312 583.1677 17.0075 0.3461 2068 +2070 4 453.358 583.3039 16.7418 0.3192 2069 +2071 4 454.4929 583.3016 16.4909 0.3263 2070 +2072 4 455.5397 582.8714 16.2484 0.2924 2071 +2073 4 456.4766 582.2296 15.755 0.2288 2072 +2074 4 390.8796 600.0269 31.1041 0.1797 2007 +2075 4 391.2308 598.9538 31.2757 0.1502 2074 +2076 4 391.5809 597.8807 31.512 0.1376 2075 +2077 4 392.0477 596.8385 31.7447 0.138 2076 +2078 4 392.5945 595.8341 31.9284 0.1384 2077 +2079 4 393.1436 594.8308 32.0589 0.1395 2078 +2080 4 393.4605 593.7326 32.1479 0.1414 2079 +2081 4 393.6458 592.6034 32.2151 0.1449 2080 +2082 4 393.83 591.4743 32.2776 0.1514 2081 +2083 4 394.0153 590.3452 32.349 0.1636 2082 +2084 4 393.6882 590.0992 32.2958 0.1144 2083 +2085 4 392.797 589.4266 32.755 0.1373 2084 +2086 4 391.9333 588.6864 32.9476 0.1373 2085 +2087 4 391.1004 587.9027 33.1142 0.1373 2086 +2088 4 390.2287 587.1626 33.2587 0.1373 2087 +2089 4 389.2357 586.6009 33.4006 0.1373 2088 +2090 4 388.2347 586.0518 33.5376 0.1373 2089 +2091 4 387.2326 585.5026 33.6664 0.1373 2090 +2092 4 386.1046 585.3482 33.7784 0.1373 2091 +2093 4 384.964 585.259 33.8792 0.1373 2092 +2094 4 383.8326 585.1045 33.9912 0.1373 2093 +2095 4 382.7092 584.9078 34.1236 0.1373 2094 +2096 4 381.6029 584.6332 34.2686 0.1373 2095 +2097 4 380.5928 584.1001 34.4103 0.1373 2096 +2098 4 379.5884 583.5555 34.5489 0.1373 2097 +2099 4 378.5839 583.011 34.6819 0.1373 2098 +2100 4 377.5783 582.4653 34.8062 0.1373 2099 +2101 4 376.5739 581.9208 34.9224 0.1373 2100 +2102 4 375.5695 581.3762 35.0336 0.1373 2101 +2103 4 374.5639 580.8317 35.1408 0.1373 2102 +2104 4 373.5595 580.2871 35.2439 0.1372 2103 +2105 4 372.5539 579.7426 35.343 0.1372 2104 +2106 4 371.6787 579.0093 35.4242 0.1371 2105 +2107 4 370.8379 578.2325 35.4903 0.1368 2106 +2108 4 369.9993 577.4546 35.5485 0.1364 2107 +2109 4 369.1608 576.6767 35.6135 0.1356 2108 +2110 4 368.2227 576.0234 35.686 0.1342 2109 +2111 4 367.2194 575.472 35.7658 0.1313 2110 +2112 4 366.1143 575.2021 35.8873 0.1271 2111 +2113 4 364.984 575.1906 36.0651 0.1144 2112 +2114 4 363.8549 575.1803 36.5742 0.1144 2113 +2115 4 394.3391 589.3419 32.4814 0.1846 2083 +2116 4 394.6892 588.2631 32.6626 0.2325 2115 +2117 4 395.0381 587.1832 32.8756 0.2779 2116 +2118 4 395.4705 586.125 33.0649 0.229 2117 +2119 4 395.9224 585.0736 33.2192 0.2121 2118 +2120 4 396.3811 584.0269 33.3606 0.1669 2119 +2121 4 396.8433 582.9847 33.4986 0.15 2120 +2122 4 397.3078 581.9425 33.6344 0.1373 2121 +2123 4 397.8615 580.9415 33.7492 0.1373 2122 +2124 4 398.4152 579.9416 33.8512 0.1374 2123 +2125 4 398.9689 578.9406 33.9413 0.1374 2124 +2126 4 399.5226 577.9396 34.018 0.1376 2125 +2127 4 400.0774 576.9398 34.0838 0.1379 2126 +2128 4 400.6311 575.9388 34.1421 0.1383 2127 +2129 4 401.1848 574.9389 34.1964 0.1392 2128 +2130 4 401.7385 573.9379 34.2457 0.1409 2129 +2131 4 401.9444 572.6978 34.3011 0.144 2130 +2132 4 402.1961 571.5836 34.3176 0.1503 2131 +2133 4 402.41 570.4625 34.323 0.1589 2132 +2134 4 402.5221 569.3276 34.3101 0.1901 2133 +2135 4 402.6182 568.1905 34.2908 0.1732 2134 +2136 4 403.0037 567.162 34.3512 0.1621 2135 +2137 4 403.5506 566.1805 34.496 0.1571 2136 +2138 4 404.0711 565.168 34.6475 0.1867 2137 +2139 4 404.4566 564.095 34.7774 0.1669 2138 +2140 4 404.698 562.9784 34.886 0.15 2139 +2141 4 404.5664 561.8687 34.9706 0.1373 2140 +2142 4 404.4967 560.743 35.0431 0.1373 2141 +2143 4 404.6317 559.6105 35.1218 0.1373 2142 +2144 4 404.8033 558.4814 35.2139 0.1373 2143 +2145 4 404.9417 557.3476 35.3021 0.1373 2144 +2146 4 405.0526 556.2094 35.3718 0.1373 2145 +2147 4 405.1579 555.0699 35.4217 0.1373 2146 +2148 4 405.2631 553.9305 35.4547 0.1373 2147 +2149 4 405.3707 552.7922 35.4757 0.1373 2148 +2150 4 405.4816 551.6528 35.4914 0.1373 2149 +2151 4 405.5915 550.5145 35.5085 0.1373 2150 +2152 4 405.7253 549.3785 35.5309 0.1373 2151 +2153 4 406.0331 548.2837 35.567 0.1373 2152 +2154 4 406.4232 547.2084 35.6177 0.1373 2153 +2155 4 406.8133 546.1342 35.6782 0.1373 2154 +2156 4 407.2045 545.0588 35.7442 0.1373 2155 +2157 4 407.5946 543.9846 35.8117 0.1373 2156 +2158 4 407.9847 542.9092 35.8764 0.1373 2157 +2159 4 408.3874 541.8384 35.9293 0.1374 2158 +2160 4 408.8073 540.7745 35.9654 0.1375 2159 +2161 4 409.5772 539.9886 35.9876 0.1376 2160 +2162 4 410.5187 539.3388 35.9988 0.1379 2161 +2163 4 411.1044 538.4099 36.0024 0.1384 2162 +2164 4 411.4865 537.3322 36.0013 0.1393 2163 +2165 4 411.8572 536.25 35.9976 0.1411 2164 +2166 4 412.3525 535.2227 35.9923 0.1441 2165 +2167 4 412.8845 534.2102 35.9845 0.1506 2166 +2168 4 413.0218 533.1051 35.9736 0.1594 2167 +2169 4 412.9874 531.9611 35.959 0.1909 2168 +2170 4 412.9691 530.8171 35.9408 0.1748 2169 +2171 4 413.4874 529.8676 35.9078 0.1645 2170 +2172 4 414.2321 529.0016 35.8602 0.1646 2171 +2173 4 414.978 528.1345 35.8072 0.1859 2172 +2174 4 415.7227 527.2673 35.7585 0.2374 2173 +2175 4 416.4789 526.4105 35.7314 0.2744 2174 +2176 4 417.2465 525.5628 35.7389 0.2829 2175 +2177 4 418.0176 524.7173 35.7832 0.363 2176 +2178 4 418.6651 523.7861 35.894 0.4279 2177 +2179 4 419.1982 522.7897 36.0847 0.4967 2178 +2180 4 419.7553 521.8036 36.3278 0.5298 2179 +2181 4 420.4806 520.9296 36.5616 0.4785 2180 +2182 4 421.2643 520.0956 36.7688 0.3578 2181 +2183 4 421.667 519.082 37.0185 0.2585 2182 +2184 4 422.0319 518.0226 37.3024 0.2719 2183 +2185 4 422.7206 517.1338 37.5463 0.2523 2184 +2186 4 423.4756 516.2746 37.7476 0.2039 2185 +2187 4 424.0751 515.3102 37.9445 0.1713 2186 +2188 4 424.6253 514.3138 38.1391 0.1771 2187 +2189 4 425.1756 513.3174 38.3214 0.2094 2188 +2190 4 425.727 512.3198 38.4938 0.2793 2189 +2191 4 426.108 511.2479 38.6316 0.3596 2190 +2192 4 426.4443 510.1542 38.7282 0.405 2191 +2193 4 426.8722 509.0949 38.7881 0.4194 2192 +2194 4 427.3275 508.0458 38.8206 0.4418 2193 +2195 4 427.7828 506.9956 38.836 0.3902 2194 +2196 4 428.3365 505.9969 38.843 0.4034 2195 +2197 4 429.1533 505.2133 38.85 0.3574 2196 +2198 4 429.8786 504.3358 38.8604 0.2706 2197 +2199 4 430.0113 503.225 38.8746 0.2311 2198 +2200 4 430.0502 502.081 38.8945 0.2544 2199 +2201 4 430.6142 501.1132 38.9211 0.4013 2200 +2202 4 431.4116 500.2952 38.9575 0.3991 2201 +2203 4 431.7982 499.2256 39.0188 0.3553 2202 +2204 4 432.1609 498.1422 39.0995 0.2386 2203 +2205 4 432.5224 497.0588 39.1927 0.1946 2204 +2206 4 432.8953 495.9778 39.2907 0.191 2205 +2207 4 433.3278 494.9196 39.3739 0.2629 2206 +2208 4 433.7636 493.8614 39.4442 0.244 2207 +2209 4 434.1983 492.8032 39.5058 0.2611 2208 +2210 4 434.6434 491.7495 39.5685 0.2688 2209 +2211 4 435.1387 490.7211 39.6564 0.2844 2210 +2212 4 435.6375 489.6938 39.7681 0.3082 2211 +2213 4 436.1363 488.6665 39.8994 0.2621 2212 +2214 4 436.6316 487.6369 40.042 0.2716 2213 +2215 4 437.1258 486.6073 40.1892 0.2859 2214 +2216 4 437.6212 485.5777 40.3368 0.3288 2215 +2217 4 438.1142 484.5469 40.4799 0.3281 2216 +2218 4 438.6085 483.5173 40.6182 0.2587 2217 +2219 4 439.1027 482.4866 40.7518 0.2319 2218 +2220 4 439.5957 481.457 40.8811 0.2591 2219 +2221 4 440.1117 480.4365 41.0015 0.3945 2220 +2222 4 440.6882 479.4493 41.0998 0.4621 2221 +2223 4 441.2694 478.4631 41.1816 0.4479 2222 +2224 4 441.8677 477.4896 41.2709 0.4123 2223 +2225 4 442.4729 476.5218 41.3759 0.3922 2224 +2226 4 443.0792 475.5551 41.4952 0.3601 2225 +2227 4 443.5757 474.5255 41.6114 0.3898 2226 +2228 4 443.991 473.4593 41.7164 0.356 2227 +2229 4 444.4062 472.3931 41.8177 0.2658 2228 +2230 4 444.8307 471.3349 41.9406 0.2336 2229 +2231 4 445.2551 470.2755 42.0801 0.204 2230 +2232 4 445.6807 469.2173 42.231 0.2325 2231 +2233 4 446.1051 468.1591 42.3881 0.2231 2232 +2234 4 446.5295 467.1009 42.5435 0.2794 2233 +2235 4 446.9414 466.0336 42.6611 0.2545 2234 +2236 4 447.352 464.9651 42.7442 0.2631 2235 +2237 4 447.7627 463.8977 42.8039 0.3569 2236 +2238 4 447.8451 462.7594 42.8504 0.3826 2237 +2239 4 447.8314 461.6154 42.8932 0.3486 2238 +2240 4 447.8154 460.4714 42.9408 0.3382 2239 +2241 4 448.0236 459.348 43.0181 0.2927 2240 +2242 4 448.3919 458.2692 43.1315 0.335 2241 +2243 4 448.7626 457.1904 43.269 0.3713 2242 +2244 4 449.1333 456.1128 43.4199 0.2986 2243 +2245 4 449.5039 455.034 43.5733 0.273 2244 +2246 4 450.0519 454.0307 43.7035 0.2669 2245 +2247 4 450.7417 453.1178 43.7934 0.2833 2246 +2248 4 451.4316 452.2049 43.85 0.2941 2247 +2249 4 452.1225 451.2943 43.8819 0.2938 2248 +2250 4 452.722 450.3196 43.8976 0.3926 2249 +2251 4 453.2002 449.2808 43.9051 0.437 2250 +2252 4 453.6818 448.2432 43.9118 0.3919 2251 +2253 4 454.1897 447.2182 43.9208 0.3551 2252 +2254 4 454.6977 446.192 43.9334 0.4028 2253 +2255 4 455.2056 445.167 43.9516 0.3859 2254 +2256 4 455.7307 444.1511 43.9768 0.4084 2255 +2257 4 456.265 443.1398 44.011 0.4176 2256 +2258 4 456.7981 442.1274 44.0566 0.4781 2257 +2259 4 457.0086 441.2934 44.1294 0.3788 2258 +2260 4 457.2877 440.1849 44.2322 0.4204 2259 +2261 4 457.568 439.0775 44.361 0.3177 2260 +2262 4 457.8471 437.969 44.5105 0.3143 2261 +2263 4 458.1594 436.8753 44.6883 0.3148 2262 +2264 4 458.5701 435.8274 44.9268 0.3964 2263 +2265 4 459.0174 434.7944 45.1928 0.3861 2264 +2266 4 459.5368 433.7751 45.421 0.3503 2265 +2267 4 460.0699 432.7626 45.6056 0.2503 2266 +2268 4 460.5961 431.749 45.764 0.2278 2267 +2269 4 461.1018 430.7286 45.9281 0.1963 2268 +2270 4 461.6051 429.7081 46.0953 0.2029 2269 +2271 4 462.1085 428.6865 46.2664 0.243 2270 +2272 4 462.5203 427.6364 46.4302 0.2971 2271 +2273 4 462.6771 426.5038 46.5508 0.2658 2272 +2274 4 462.8864 425.3838 46.6309 0.2754 2273 +2275 4 463.2399 424.297 46.6763 0.3075 2274 +2276 4 463.5145 423.1862 46.6973 0.2971 2275 +2277 4 463.6792 422.0582 46.7037 0.2742 2276 +2278 4 463.8039 420.9325 46.7043 0.2498 2277 +2279 4 464.186 419.8537 46.7048 0.231 2278 +2280 4 464.5761 418.7795 46.706 0.1832 2279 +2281 4 464.8335 417.6698 46.7076 0.1564 2280 +2282 4 465.028 416.551 46.7096 0.1496 2281 +2283 4 465.3323 415.4528 46.7124 0.1575 2282 +2284 4 465.5748 414.3374 46.7166 0.1875 2283 +2285 4 465.8997 413.2403 46.7222 0.1685 2284 +2286 4 466.3173 412.1821 46.73 0.1528 2285 +2287 4 466.8447 411.1673 46.741 0.1425 2286 +2288 4 467.1421 410.084 46.7566 0.1469 2287 +2289 4 467.3846 408.9743 46.779 0.1556 2288 +2290 4 467.5539 407.8566 46.809 0.1692 2289 +2291 4 467.6958 406.7263 46.8465 0.2065 2290 +2292 4 468.1797 405.7196 46.905 0.2164 2291 +2293 4 468.5893 404.682 47.0128 0.1797 2292 +2294 4 468.7929 403.562 47.1282 0.1501 2293 +2295 4 469.2036 402.5084 47.2265 0.1374 2294 +2296 4 469.4518 401.4102 47.3119 0.1376 2295 +2297 4 469.8625 400.3622 47.3897 0.1379 2296 +2298 4 470.6153 399.5145 47.4639 0.1383 2297 +2299 4 470.9425 398.4586 47.542 0.1391 2298 +2300 4 470.931 397.3226 47.658 0.1407 2299 +2301 4 470.7915 396.2027 47.8416 0.1435 2300 +2302 4 470.7663 395.0735 48.0684 0.1494 2301 +2303 4 470.605 393.9444 48.2672 0.1571 2302 +2304 4 470.5432 392.8038 48.4327 0.1867 2303 +2305 4 470.5398 391.6781 48.6284 0.1669 2304 +2306 4 470.5512 390.5364 48.7794 0.15 2305 +2307 4 470.7217 389.4073 48.8824 0.1373 2306 +2308 4 471.5602 388.666 48.9552 0.1373 2307 +2309 4 471.8279 387.5746 49.0134 0.1373 2308 +2310 4 472.1883 386.4901 49.0613 0.1373 2309 +2311 4 472.4114 385.369 49.1016 0.1373 2310 +2312 4 472.5875 384.2387 49.1543 0.1373 2311 +2313 4 472.8141 383.137 49.2828 0.1373 2312 +2314 4 473.0291 382.0148 49.3954 0.1373 2313 +2315 4 473.5519 380.9989 49.4911 0.1373 2314 +2316 4 473.7361 379.8698 49.5726 0.1373 2315 +2317 4 473.9031 378.7384 49.6415 0.1373 2316 +2318 4 473.9741 377.5978 49.7036 0.1373 2317 +2319 4 474.0953 376.487 49.8319 0.1373 2318 +2320 4 474.5381 375.4368 49.938 0.1373 2319 +2321 4 474.657 374.2985 50.0251 0.1373 2320 +2322 4 474.7177 373.1591 50.0954 0.1373 2321 +2323 4 475.0266 372.0574 50.1528 0.1373 2322 +2324 4 475.3869 370.9717 50.2043 0.1373 2323 +2325 4 475.809 369.9101 50.2555 0.1373 2324 +2326 4 476.0939 368.8027 50.3244 0.1373 2325 +2327 4 476.2666 367.6724 50.4115 0.1373 2326 +2328 4 476.381 366.5479 50.5459 0.1373 2327 +2329 4 476.4874 365.4725 50.8001 0.1373 2328 +2330 4 476.4874 364.3331 51.0454 0.1373 2329 +2331 4 476.5092 363.2051 51.2926 0.1373 2330 +2332 4 476.6179 362.0657 51.4716 0.1373 2331 +2333 4 476.7162 360.9274 51.5864 0.1373 2332 +2334 4 476.7162 359.788 51.6242 0.1373 2333 +2335 4 476.7677 358.6589 51.5866 0.1373 2334 +2336 4 476.945 357.5297 51.5648 0.1373 2335 +2337 4 477.2185 356.4818 51.5914 0.1373 2336 +2338 4 477.8843 355.6078 51.6964 0.1374 2337 +2339 4 478.2378 354.521 51.8062 0.1374 2338 +2340 4 478.5844 353.4422 51.9442 0.1375 2339 +2341 4 478.7629 352.3291 52.129 0.1377 2340 +2342 4 478.9882 351.2217 52.2774 0.1381 2341 +2343 4 479.4458 350.1738 52.3953 0.1388 2342 +2344 4 479.6918 349.0859 52.5213 0.1401 2343 +2345 4 479.6918 347.9533 52.661 0.1425 2344 +2346 4 479.6918 346.8093 52.7604 0.1469 2345 +2347 4 479.6918 345.6653 52.8276 0.1556 2346 +2348 4 479.6918 344.5213 52.8752 0.1692 2347 +2349 4 479.6106 343.3842 52.906 0.2065 2348 +2350 4 479.4916 342.2493 52.9228 0.2164 2349 +2351 4 479.4939 341.1053 52.9351 0.1797 2350 +2352 4 479.6735 339.9865 52.953 0.1501 2351 +2353 4 480.003 338.8917 52.9774 0.1375 2352 +2354 4 480.3679 337.8106 53.0088 0.1377 2353 +2355 4 480.6001 336.7112 53.0474 0.1381 2354 +2356 4 480.8484 335.6324 53.1331 0.1388 2355 +2357 4 481.298 334.5925 53.2454 0.1399 2356 +2358 4 481.6309 333.5023 53.3355 0.1422 2357 +2359 4 481.7487 332.3709 53.4047 0.1463 2358 +2360 4 481.9192 331.2498 53.4565 0.1547 2359 +2361 4 482.3115 330.179 53.4943 0.1669 2360 +2362 4 482.76 329.1254 53.52 0.2053 2361 +2363 4 483.0517 328.026 53.543 0.1994 2362 +2364 4 483.1249 326.8888 53.5685 0.2202 2363 +2365 4 483.1249 325.7597 53.6469 0.2183 2364 +2366 4 483.1249 324.6237 53.7326 0.1832 2365 +2367 4 483.1341 323.4797 53.7855 0.1565 2366 +2368 4 483.2862 322.3506 53.8048 0.1499 2367 +2369 4 483.5768 321.2455 53.7911 0.1579 2368 +2370 4 483.9166 320.153 53.741 0.1883 2369 +2371 4 484.2197 319.0639 53.615 0.1698 2370 +2372 4 484.6545 318.0263 53.4344 0.1552 2371 +2373 4 484.9107 316.9269 53.2512 0.1471 2372 +2374 4 485.0526 315.7932 53.1042 0.1554 2373 +2375 4 485.5983 314.8185 53.0001 0.1718 2374 +2376 4 485.8179 313.7226 52.9348 0.1964 2375 +2377 4 485.6852 312.5923 52.904 0.2703 2376 +2378 4 486.0044 311.5181 52.8945 0.2702 2377 +2379 4 486.6393 310.5697 52.8934 0.2498 2378 +2380 4 487.0832 309.5195 52.8942 0.1953 2379 +2381 4 487.5396 308.4704 52.8951 0.1762 2380 +2382 4 487.9469 307.402 52.8962 0.1991 2381 +2383 4 488.2535 306.3003 52.8979 0.1873 2382 +2384 4 488.3816 305.1643 52.9001 0.2004 2383 +2385 4 488.4011 304.0214 52.9035 0.1687 2384 +2386 4 488.4091 302.8774 52.9082 0.1534 2385 +2387 4 488.6882 301.7712 52.9144 0.1436 2386 +2388 4 489.2648 300.7873 52.9231 0.1488 2387 +2389 4 489.5073 299.6731 52.936 0.1592 2388 +2390 4 489.9638 298.624 52.9544 0.1758 2389 +2391 4 490.0541 297.4846 52.9791 0.2188 2390 +2392 4 490.2177 296.3532 53.0102 0.2398 2391 +2393 4 490.2189 295.2092 53.0468 0.2209 2392 +2394 4 490.2189 294.0778 53.1474 0.2372 2393 +2395 4 490.2246 292.9349 53.2518 0.247 2394 +2396 4 490.2303 291.7909 53.3327 0.2489 2395 +2397 4 490.2372 290.6469 53.3918 0.2175 2396 +2398 4 490.2532 289.5052 53.4304 0.2153 2397 +2399 4 490.9076 288.5912 53.4509 0.2817 2398 +2400 4 491.0368 287.454 53.4551 0.2922 2399 +2401 4 491.1398 286.3157 53.4554 0.2854 2400 +2402 4 491.1467 285.1717 53.4556 0.286 2401 +2403 4 491.1535 284.0277 53.4559 0.2238 2402 +2404 4 491.1901 282.886 53.4568 0.187 2403 +2405 4 491.4475 281.7729 53.4576 0.1949 2404 +2406 4 491.8159 280.6907 53.4587 0.1828 2405 +2407 4 492.1042 279.5833 53.4604 0.1766 2406 +2408 4 492.3124 278.4588 53.4626 0.2 2407 +2409 4 492.492 277.3308 53.466 0.189 2408 +2410 4 492.7814 276.2245 53.4705 0.2036 2409 +2411 4 492.961 275.0977 53.4769 0.1747 2410 +2412 4 493.0137 273.9571 53.4856 0.1649 2411 +2413 4 493.2688 272.8532 53.4979 0.1622 2412 +2414 4 493.6509 271.8018 53.5156 0.1963 2413 +2415 4 493.652 270.6578 53.5405 0.1848 2414 +2416 4 493.652 269.5138 53.5738 0.1834 2415 +2417 4 493.7149 268.3755 53.6164 0.1973 2416 +2418 4 493.8808 267.251 53.6838 0.2572 2417 +2419 4 493.882 266.115 53.8 0.3184 2418 +2420 4 493.8888 264.9733 53.9269 0.3296 2419 +2421 4 493.8968 263.8293 54.0369 0.2746 2420 +2422 4 494.0147 262.707 54.1467 0.198 2421 +2423 4 494.5306 261.7152 54.2814 0.1606 2422 +2424 4 495.1804 260.7851 54.4015 0.1567 2423 +2425 4 495.4847 259.7086 54.4866 0.1745 2424 +2426 4 495.6918 258.5989 54.5476 0.2008 2425 +2427 4 496.0167 257.5052 54.5913 0.2817 2426 +2428 4 496.2603 256.3876 54.6213 0.2758 2427 +2429 4 496.3827 255.2573 54.644 0.334 2428 +2430 4 496.3919 254.1133 54.6694 0.3366 2429 +2431 4 496.5109 252.9796 54.7016 0.3957 2430 +2432 4 496.7156 251.855 54.7445 0.3544 2431 +2433 4 496.8838 250.7351 54.8358 0.3248 2432 +2434 4 497.2625 249.6849 54.9469 0.3851 2433 +2435 4 497.513 248.5981 55.0365 0.5089 2434 +2436 4 497.5839 247.4564 55.1065 0.452 2435 +2437 4 497.9878 246.421 55.16 0.3638 2436 +2438 4 498.2086 245.34 55.2006 0.2309 2437 +2439 4 498.2143 244.196 55.2325 0.1792 2438 +2440 4 498.22 243.052 55.265 0.1676 2439 +2441 4 498.2269 241.908 55.3039 0.1948 2440 +2442 4 498.3653 240.7926 55.4019 0.2376 2441 +2443 4 498.4614 239.6634 55.5134 0.3538 2442 +2444 4 498.8732 238.6304 55.6035 0.3909 2443 +2445 4 499.1158 237.5379 55.6741 0.2957 2444 +2446 4 499.1444 236.395 55.729 0.2281 2445 +2447 4 498.9808 235.2682 55.7715 0.2616 2446 +2448 4 498.9156 234.131 55.8048 0.2385 2447 +2449 4 499.022 232.9939 55.8401 0.266 2448 +2450 4 499.1455 231.8568 55.8894 0.2049 2449 +2451 4 499.5642 230.8237 55.9997 0.1778 2450 +2452 4 499.8044 229.7198 56.1081 0.1665 2451 +2453 4 500.1499 228.6318 56.1974 0.1859 2452 +2454 4 500.2632 227.5004 56.2691 0.2536 2453 +2455 4 500.2815 226.3564 56.3223 0.2263 2454 +2456 4 500.4897 225.2353 56.3595 0.2307 2455 +2457 4 501.3317 224.5283 56.4396 0.2008 2456 +2458 4 501.97 223.5879 56.5138 0.2155 2457 +2459 4 502.1176 222.4588 56.5463 0.2456 2458 +2460 4 502.4254 221.3732 56.4967 0.402 2459 +2461 4 503.0969 220.2086 56.4256 0.3186 2460 +2462 4 503.7718 219.2865 56.4074 0.2597 2461 +2463 4 504.3027 218.2741 56.4108 0.2575 2462 +2464 4 504.7694 217.2399 56.4469 0.3066 2463 +2465 4 505.4581 216.359 56.5636 0.3681 2464 +2466 4 505.9329 215.318 56.6591 0.3964 2465 +2467 4 506.4488 214.2975 56.7314 0.4075 2466 +2468 4 506.9258 213.2588 56.7818 0.4006 2467 +2469 4 507.2999 212.1788 56.8126 0.4061 2468 +2470 4 507.7049 211.1183 56.8252 0.3282 2469 +2471 4 508.2598 210.1231 56.8235 0.2679 2470 +2472 4 508.6418 209.0454 56.8204 0.205 2471 +2473 4 509.0754 208.0055 56.8162 0.1949 2472 +2474 4 509.636 207.0274 56.8106 0.2311 2473 +2475 4 510.0261 205.9566 56.8028 0.2604 2474 +2476 4 510.3601 204.8915 56.7916 0.2687 2475 +2477 4 510.5683 203.7876 56.7753 0.2787 2476 +2478 4 510.947 202.7145 56.7526 0.2096 2477 +2479 4 511.1781 201.5945 56.7235 0.1632 2478 +2480 4 511.4744 200.4929 56.6885 0.1383 2479 +2481 4 511.821 199.4141 56.6166 0.1391 2480 +2482 4 512.0727 198.3101 56.5065 0.1407 2481 +2483 4 512.202 197.1776 56.4147 0.1436 2482 +2484 4 512.4159 196.0759 56.345 0.1495 2483 +2485 4 512.75 194.9891 56.2954 0.1574 2484 +2486 4 513.1881 193.9583 56.2638 0.1874 2485 +2487 4 513.8127 193.0008 56.2478 0.1683 2486 +2488 4 514.3069 191.9746 56.2386 0.1525 2487 +2489 4 514.7142 190.9061 56.226 0.1419 2488 +2490 4 515.0402 189.8125 56.2092 0.1456 2489 +2491 4 515.1764 188.6811 56.1887 0.1534 2490 +2492 4 515.626 187.7007 56.1672 0.1644 2491 +2493 4 516.0836 186.7042 56.0966 0.2009 2492 +2494 4 516.5778 185.6987 56.016 0.1906 2493 +2495 4 517.1132 184.6908 55.9653 0.2066 2494 +2496 4 517.5124 183.6234 55.9628 0.1804 2495 +2497 4 517.9471 182.5744 56.0224 0.1747 2496 +2498 4 518.3258 181.5002 56.096 0.1846 2497 +2499 4 518.5615 180.3825 56.163 0.217 2498 +2500 4 518.8051 179.2659 56.2139 0.3244 2499 +2501 4 519.328 178.2615 56.2444 0.2934 2500 +2502 4 519.8027 177.2239 56.257 0.324 2501 +2503 4 520.0144 176.1062 56.2565 0.2962 2502 +2504 4 520.425 175.0492 56.2517 0.3114 2503 +2505 4 520.7191 173.9486 56.2456 0.2439 2504 +2506 4 521.2442 172.9431 56.2369 0.2407 2505 +2507 4 521.8436 171.9684 56.224 0.2147 2506 +2508 4 522.2131 170.893 56.2058 0.264 2507 +2509 4 522.7657 169.8977 56.1809 0.2251 2508 +2510 4 523.1329 168.8201 56.1498 0.214 2509 +2511 4 523.5859 167.7722 56.1126 0.2405 2510 +2512 4 524.1202 166.7769 56.0146 0.2894 2511 +2513 4 524.6853 165.785 55.9096 0.266 2512 +2514 4 525.0594 164.7074 55.8253 0.2057 2513 +2515 4 525.4243 163.6229 55.7623 0.1753 2514 +2516 4 525.6119 162.496 55.718 0.1813 2515 +2517 4 526.2434 161.558 55.6928 0.2326 2516 +2518 4 526.5523 160.4643 55.6808 0.2476 2517 +2519 4 526.9047 159.3764 55.6679 0.3209 2518 +2520 4 527.3279 158.3136 55.6478 0.3504 2519 +2521 4 527.9652 157.3664 55.6192 0.3499 2520 +2522 4 528.4639 156.3802 55.6802 0.2735 2521 +2523 4 528.2603 155.6481 55.5414 0.2059 2522 +2524 4 528.2203 154.5235 55.3983 0.2059 2523 +2525 4 528.3255 153.3841 55.2762 0.2059 2524 +2526 4 528.4399 152.2458 55.1718 0.2059 2525 +2527 4 528.4788 151.103 55.0822 0.2059 2526 +2528 4 528.8334 150.0196 55.0046 0.2059 2527 +2529 4 529.1275 148.9145 54.9534 0.2059 2528 +2530 4 529.3791 147.8082 54.8498 0.2059 2529 +2531 4 529.5816 146.686 54.7204 0.2059 2530 +2532 4 529.5828 145.542 54.6036 0.2059 2531 +2533 4 529.5153 144.4003 54.4961 0.2059 2532 +2534 4 529.3826 143.2643 54.3936 0.2059 2533 +2535 4 529.8184 142.2072 54.2942 0.2059 2534 +2536 4 530.2532 141.1559 54.1831 0.2059 2535 +2537 4 530.3355 140.0805 53.9409 0.2059 2536 +2538 4 530.4602 138.9571 53.7104 0.2059 2537 +2539 4 530.085 137.8817 53.5139 0.2059 2538 +2540 4 529.5999 136.8739 53.3476 0.2059 2539 +2541 4 529.5862 135.731 53.2 0.2059 2540 +2542 4 529.4581 134.6236 53.0309 0.2059 2541 +2543 4 529.0291 133.5792 52.8346 0.2059 2542 +2544 4 528.6264 132.5187 52.631 0.2059 2543 +2545 4 528.266 131.4319 52.4678 0.2059 2544 +2546 4 527.908 130.3462 52.3401 0.2059 2545 +2547 4 527.5579 129.2571 52.2441 0.2059 2546 +2548 4 527.1506 128.1932 52.169 0.2059 2547 +2549 4 526.4917 127.2849 52.0814 0.2059 2548 +2550 4 526.0112 126.4166 51.9683 0.2059 2549 +2551 4 526.4436 125.379 51.863 0.2059 2550 +2552 4 526.7525 124.3116 51.774 0.2059 2551 +2553 4 526.2503 123.3507 51.6984 0.2059 2552 +2554 4 525.5502 122.4469 51.634 0.2059 2553 +2555 4 525.2482 121.3761 51.5584 0.2059 2554 +2556 4 525.2882 120.2413 51.4567 0.2059 2555 +2557 4 525.3648 119.1018 51.3444 0.2059 2556 +2558 4 525.4209 117.959 51.2439 0.2059 2557 +2559 4 525.4712 116.8161 51.1549 0.2059 2558 +2560 4 525.2379 115.7064 51.0728 0.2059 2559 +2561 4 524.8821 114.6196 50.9944 0.2059 2560 +2562 4 524.3856 113.5906 50.9141 0.2059 2561 +2563 4 524.0572 112.5085 50.7822 0.2059 2562 +2564 4 523.9406 111.3983 50.5702 0.2059 2563 +2565 4 523.1546 110.6596 50.3524 0.2059 2564 +2566 4 522.1182 110.1773 50.1679 0.2059 2565 +2567 4 521.2956 109.3886 50.0119 0.2059 2566 +2568 4 520.6424 108.451 49.8781 0.2059 2567 +2569 4 520.5314 107.3139 49.7613 0.2059 2568 +2570 4 520.5211 106.1744 49.6138 0.2059 2569 +2571 4 520.5886 105.0469 49.3987 0.2059 2570 +2572 4 520.6584 103.9191 49.1296 0.2059 2571 +2573 4 520.806 102.7849 48.8866 0.2059 2572 +2574 4 520.9536 101.6503 48.6646 0.2059 2573 +2575 4 521.0634 100.5281 48.3907 0.2059 2574 +2576 4 521.1572 99.4198 48.0575 0.2059 2575 +2577 4 519.805 98.746 47.497 0.1373 2576 +2578 4 518.7948 98.2441 47.1797 0.1373 2577 +2579 4 518.0512 97.4488 46.858 0.1373 2578 +2580 4 517.819 96.3511 46.5867 0.1373 2579 +2581 4 517.0068 95.9996 46.2501 0.1373 2580 +2582 4 515.8754 95.9715 45.9276 0.1373 2581 +2583 4 514.8938 95.4061 45.6742 0.1373 2582 +2584 4 514.1491 94.546 45.4751 0.1373 2583 +2585 4 513.0543 94.2321 45.2766 0.1373 2584 +2586 4 511.9789 93.8757 45.0786 0.1373 2585 +2587 4 511.1975 93.04 44.9218 0.1373 2586 +2588 4 510.3773 92.2556 44.774 0.1373 2587 +2589 4 509.2619 92.0281 44.583 0.1373 2588 +2590 4 508.1831 91.697 44.3649 0.1373 2589 +2591 4 507.491 90.8002 44.1605 0.1373 2590 +2592 4 507.1947 89.7144 43.9356 0.1373 2591 +2593 4 507.1489 88.624 43.6052 0.1373 2592 +2594 4 506.7817 87.8001 43.2387 0.1373 2593 +2595 4 505.7075 87.6984 42.8442 0.1373 2594 +2596 4 504.6264 87.5546 42.5424 0.1373 2595 +2597 4 503.9274 86.7665 42.3186 0.1373 2596 +2598 4 503.67 85.6567 42.1627 0.1373 2597 +2599 4 503.463 84.5494 42.0596 0.1373 2598 +2600 4 503.7078 83.4525 41.9798 0.1373 2599 +2601 4 503.543 82.4515 41.8852 0.1373 2600 +2602 4 502.9287 81.4914 41.7511 0.1373 2601 +2603 4 502.3659 80.505 41.5778 0.1373 2602 +2604 4 502.0558 79.4291 41.3781 0.1373 2603 +2605 4 502.3613 78.3809 41.195 0.1373 2604 +2606 4 503.1587 77.5929 41.0399 0.1373 2605 +2607 4 503.5076 76.5984 40.9072 0.1373 2606 +2608 4 503.3863 75.4665 40.7873 0.1373 2607 +2609 4 503.2559 74.3305 40.668 0.1373 2608 +2610 4 503.1598 73.2383 40.4415 0.1373 2609 +2611 4 502.6725 72.3227 40.1646 0.1373 2610 +2612 4 502.073 71.3578 39.919 0.1373 2611 +2613 4 501.1772 70.7476 39.6889 0.1373 2612 +2614 4 500.7711 69.8282 39.3635 0.1373 2613 +2615 4 501.3077 68.886 39.0852 0.1373 2614 +2616 4 501.1189 67.7963 38.8724 0.1373 2615 +2617 4 500.9988 66.66 38.6954 0.1373 2616 +2618 4 501.2688 65.553 38.5314 0.1373 2617 +2619 4 502.184 64.9006 38.3729 0.1373 2618 +2620 4 502.9882 64.0932 38.1839 0.1373 2619 +2621 4 503.5705 63.1243 37.9212 0.1373 2620 +2622 4 504.3907 62.4316 37.5284 0.1373 2621 +2623 4 505.211 61.7384 37.0558 0.1373 2622 +2624 4 505.9832 60.9005 36.6506 0.1373 2623 +2625 4 506.7005 60.0097 36.3541 0.1373 2624 +2626 4 507.316 59.0453 36.1575 0.1373 2625 +2627 4 507.9955 58.1289 36.0455 0.1373 2626 +2628 4 508.9805 57.5519 35.9985 0.1373 2627 +2629 4 509.6051 56.6487 35.9836 0.1373 2628 +2630 4 508.9908 55.7008 35.9724 0.1373 2629 +2631 4 508.0355 55.0814 35.9565 0.1373 2630 +2632 4 506.9739 54.6546 35.9349 0.1373 2631 +2633 4 505.91 54.2344 35.9064 0.1373 2632 +2634 4 504.822 53.9061 35.8652 0.1373 2633 +2635 4 503.6826 53.8451 35.796 0.1373 2634 +2636 4 502.542 53.784 35.7084 0.1373 2635 +2637 4 501.4163 53.6546 35.6157 0.1373 2636 +2638 4 500.357 53.2247 35.5452 0.1373 2637 +2639 4 499.3297 52.723 35.4953 0.1373 2638 +2640 4 498.3195 52.1866 35.4645 0.1373 2639 +2641 4 497.2579 51.7814 35.4494 0.1373 2640 +2642 4 496.1242 51.6261 35.4435 0.1373 2641 +2643 4 494.9928 51.46 35.4413 0.1373 2642 +2644 4 493.8694 51.2439 35.4385 0.1373 2643 +2645 4 492.81 50.8852 35.4343 0.1373 2644 +2646 4 491.9795 50.0988 35.4284 0.1373 2645 +2647 4 491.1444 49.335 35.4203 0.1373 2646 +2648 4 490.0919 49.0734 35.4091 0.1373 2647 +2649 4 488.965 49.2179 35.3934 0.1373 2648 +2650 4 487.8371 49.0835 35.371 0.1373 2649 +2651 4 486.7606 48.7067 35.3396 0.1373 2650 +2652 4 485.7127 48.2516 35.296 0.1373 2651 +2653 4 484.6167 47.9426 35.2383 0.1373 2652 +2654 4 483.4841 47.7863 35.1551 0.1373 2653 +2655 4 482.3504 47.6811 35.0249 0.1373 2654 +2656 4 481.2179 47.6013 34.8485 0.1373 2655 +2657 4 480.0876 47.4911 34.6452 0.1373 2656 +2658 4 478.9791 47.2467 34.4448 0.1373 2657 +2659 4 477.9003 46.8703 34.2695 0.1373 2658 +2660 4 476.8203 46.494 34.1225 0.1373 2659 +2661 4 475.7416 46.1175 34.0035 0.1373 2660 +2662 4 474.6467 45.795 33.9097 0.1373 2661 +2663 4 473.5176 45.6716 33.8416 0.1373 2662 +2664 4 472.3748 45.7076 33.7971 0.1373 2663 +2665 4 471.2502 45.5899 33.768 0.1373 2664 +2666 4 470.152 45.2683 33.7495 0.1373 2665 +2667 4 469.2242 44.7017 33.7366 0.1373 2666 +2668 4 468.5847 43.7553 33.7254 0.1373 2667 +2669 4 467.785 42.9968 33.7114 0.1373 2668 +2670 4 466.7703 42.4673 33.6918 0.1373 2669 +2671 4 465.7704 41.9128 33.6641 0.1373 2670 +2672 4 464.8141 41.2881 33.6249 0.1373 2671 +2673 4 463.8863 40.6181 33.5714 0.1373 2672 +2674 4 462.9596 39.9481 33.5014 0.1373 2673 +2675 4 461.9918 39.3477 33.3939 0.1373 2674 +2676 4 460.9737 38.8451 33.2301 0.1373 2675 +2677 4 459.9452 38.3691 33.021 0.1373 2676 +2678 4 458.9167 37.8933 32.7849 0.1373 2677 +2679 4 457.8974 37.391 32.55 0.1373 2678 +2680 4 456.9193 36.806 32.3599 0.1373 2679 +2681 4 455.9709 36.1669 32.2319 0.1373 2680 +2682 4 455.0237 35.5279 32.1465 0.1373 2681 +2683 4 454.0753 34.8887 32.0813 0.1373 2682 +2684 4 453.127 34.2494 32.0152 0.1373 2683 +2685 4 452.2518 33.537 31.8853 0.1373 2684 +2686 4 451.5013 32.7262 31.6254 0.1373 2685 +2687 4 450.601 32.1406 31.2838 0.1373 2686 +2688 4 449.4868 31.9322 30.9467 0.1373 2687 +2689 4 448.4205 31.581 30.609 0.1373 2688 +2690 4 447.487 30.9423 30.2658 0.1373 2689 +2691 4 446.7709 30.0706 29.9188 0.1373 2690 +2692 4 445.9392 29.3291 29.5338 0.1373 2691 +2693 4 445.0217 28.6675 29.1124 0.1373 2692 +2694 4 444.0779 28.0305 28.6751 0.1373 2693 +2695 4 443.1261 27.3996 28.226 0.1373 2694 +2696 4 442.0874 27.0994 27.6878 0.1373 2695 +2697 4 441.0944 27.2624 27.006 0.1373 2696 +2698 4 440.0659 27.0585 26.2682 0.1373 2697 +2699 4 439.0397 26.7046 25.5256 0.1373 2698 +2700 4 438.4689 25.8052 24.81 0.1373 2699 +2701 4 437.8042 24.9069 24.1746 0.1373 2700 +2702 4 436.7918 24.3919 23.6914 0.1373 2701 +2703 4 435.7622 23.8954 23.3397 0.1373 2702 +2704 4 434.7337 23.3986 23.0824 0.1373 2703 +2705 4 433.8426 22.7351 22.5072 0.1373 2704 +2706 4 522.1227 98.343 47.8276 0.1144 2576 +2707 4 522.9888 97.6008 47.8276 0.1782 2706 +2708 4 523.9497 96.9816 47.8276 0.212 2707 +2709 4 524.9736 96.4752 47.8276 0.2818 2708 +2710 4 525.4987 95.5388 47.8276 0.3759 2709 +2711 4 525.827 94.443 47.8276 0.3788 2710 +2712 4 526.2594 93.3855 47.8276 0.3027 2711 +2713 4 526.7662 92.3603 47.8276 0.327 2712 +2714 4 527.6082 91.6135 47.8276 0.2558 2713 +2715 4 528.5886 91.0262 47.8276 0.2309 2714 +2716 4 529.1789 90.0776 47.8276 0.2364 2715 +2717 4 529.4798 88.978 47.8276 0.3394 2716 +2718 4 530.2348 88.1193 47.8276 0.4223 2717 +2719 4 531.0585 87.3247 47.8276 0.4152 2718 +2720 4 531.9726 86.638 47.8276 0.3811 2719 +2721 4 532.9221 86.0128 47.8276 0.3057 2720 +2722 4 534.065 85.9612 47.8276 0.3385 2721 +2723 4 535.2078 85.9025 47.8276 0.3629 2722 +2724 4 536.3404 85.7452 47.8276 0.3562 2723 +2725 4 537.4695 85.575 47.8274 0.3671 2724 +2726 4 538.4522 85.0403 47.8274 0.3888 2725 +2727 4 539.0288 84.0522 47.8274 0.3067 2726 +2728 4 539.7232 83.1864 47.8271 0.2916 2727 +2729 4 540.8123 82.8359 47.8271 0.2842 2728 +2730 4 541.8853 82.441 47.8268 0.3989 2729 +2731 4 542.9378 82.0098 47.8262 0.4456 2730 +2732 4 544.0738 81.8907 47.826 0.4229 2731 +2733 4 545.1663 81.7585 47.8251 0.3391 2732 +2734 4 546.0118 80.9882 47.8243 0.3871 2733 +2735 4 546.9052 80.2817 47.8229 0.4031 2734 +2736 4 547.8982 79.7182 47.8206 0.33 2735 +2737 4 548.7219 78.9561 47.8181 0.236 2736 +2738 4 549.3282 78.0103 47.815 0.2027 2737 +2739 4 550.2869 77.4069 47.8097 0.2579 2738 +2740 4 551.3611 77.0122 47.7988 0.2497 2739 +2741 4 552.4124 76.5707 47.7862 0.1992 2740 +2742 4 553.3951 75.995 47.7896 0.1624 2741 +2743 4 554.3664 75.4064 47.7828 0.1615 2742 +2744 4 555.3994 74.9303 47.6988 0.1769 2743 +2745 4 556.4416 74.4888 47.5364 0.2364 2744 +2746 4 557.5135 74.2045 47.3239 0.1969 2745 +2747 4 558.6518 74.2621 47.0907 0.1632 2746 +2748 4 559.7764 74.4048 46.8569 0.1383 2747 +2749 4 560.8254 74.4088 46.653 0.1392 2748 +2750 4 561.5907 73.5921 46.4817 0.1409 2749 +2751 4 562.1891 72.6171 46.3294 0.144 2750 +2752 4 562.975 71.86 46.1331 0.1503 2751 +2753 4 563.9577 71.3626 45.8427 0.1589 2752 +2754 4 565.0262 71.0578 45.5216 0.1902 2753 +2755 4 566.161 70.9455 45.2402 0.1733 2754 +2756 4 567.2776 71.1046 45.0128 0.1623 2755 +2757 4 568.3861 71.1104 44.8157 0.1574 2756 +2758 4 569.251 70.4386 44.6183 0.1875 2757 +2759 4 570.2977 70.2008 44.4436 0.1683 2758 +2760 4 571.4417 70.1823 44.2848 0.1525 2759 +2761 4 572.5846 70.1683 44.1288 0.142 2760 +2762 4 573.7274 70.1543 43.9726 0.1459 2761 +2763 4 574.8703 70.1402 43.8161 0.1538 2762 +2764 4 576.0063 70.0258 43.6472 0.1652 2763 +2765 4 577.0462 69.5957 43.4361 0.2023 2764 +2766 4 578.1559 69.4096 43.1936 0.1931 2765 +2767 4 579.2495 69.7024 42.9442 0.2119 2766 +2768 4 580.3352 70.0645 42.6835 0.1874 2767 +2769 4 581.0021 70.9124 42.3206 0.2005 2768 +2770 4 581.6542 71.7841 41.8421 0.1691 2769 +2771 4 582.4802 72.4631 41.2675 0.154 2770 +2772 4 583.5693 72.5434 40.677 0.1448 2771 +2773 4 584.6721 72.2924 40.126 0.1509 2772 +2774 4 585.7738 72.0362 39.627 0.1637 2773 +2775 4 586.8766 71.7803 39.1885 0.181 2774 +2776 4 588.0046 71.7429 38.8018 0.2444 2775 +2777 4 589.1222 71.8961 38.4563 0.209 2776 +2778 4 590.2434 72.0555 38.1506 0.1992 2777 +2779 4 591.3702 72.2528 37.9383 0.1398 2778 +2780 4 592.497 72.45 37.6995 0.1144 2779 +2781 4 528.9192 155.9558 56.7518 0.1144 2522 +2782 4 529.767 155.2545 56.9237 0.2725 2781 +2783 4 530.7897 154.7489 56.9856 0.2772 2782 +2784 4 531.5882 153.9801 57.066 0.2479 2783 +2785 4 532.1854 153.0157 57.1984 0.2641 2784 +2786 4 532.7951 152.0548 57.3538 0.2948 2785 +2787 4 533.2996 151.0343 57.4986 0.3488 2786 +2788 4 534.1004 150.3182 57.6414 0.348 2787 +2789 4 534.7182 149.4636 57.8385 0.3792 2788 +2790 4 535.3806 148.5656 58.0507 0.393 2789 +2791 4 536.3964 148.1354 58.2512 0.4035 2790 +2792 4 537.2945 147.481 58.4542 0.3808 2791 +2793 4 537.6892 146.4595 58.7661 0.43 2792 +2794 4 538.4774 145.7822 59.1982 0.422 2793 +2795 4 539.6214 145.7925 59.5647 0.4301 2794 +2796 4 540.5858 145.6301 59.9012 0.3342 2795 +2797 4 540.2529 144.6027 60.3042 0.352 2796 +2798 4 539.8547 143.7894 60.6567 0.3495 2797 +2799 4 540.8454 143.2894 60.9739 0.4035 2798 +2800 4 541.2847 142.2953 61.2424 0.4474 2799 +2801 4 541.2744 141.1513 61.4706 0.4586 2800 +2802 4 541.3969 140.0302 61.6739 0.3631 2801 +2803 4 542.0535 139.1859 61.8898 0.4074 2802 +2804 4 542.955 138.5064 62.134 0.3295 2803 +2805 4 543.8587 137.8863 62.4361 0.2752 2804 +2806 4 544.7019 137.2606 62.8365 0.1946 2805 +2807 4 544.3896 136.2584 63.1809 0.1777 2806 +2808 4 545.013 135.3787 63.446 0.1888 2807 +2809 4 545.8436 134.5939 63.6535 0.2315 2808 +2810 4 546.7256 133.8732 63.8352 0.318 2809 +2811 4 547.4578 133.0014 63.9881 0.443 2810 +2812 4 547.5321 131.8609 64.092 0.5038 2811 +2813 4 547.6019 130.7192 64.1777 0.5304 2812 +2814 4 547.6168 129.5752 64.2547 0.426 2813 +2815 4 547.5653 128.4323 64.3294 0.4065 2814 +2816 4 547.5012 127.2906 64.4104 0.3265 2815 +2817 4 547.3846 126.1523 64.5098 0.2764 2816 +2818 4 547.2988 125.0129 64.6554 0.2789 2817 +2819 4 547.2862 123.886 64.8886 0.3925 2818 +2820 4 547.2736 122.7604 65.1846 0.5318 2819 +2821 4 546.2737 122.4572 65.7947 0.4576 2820 +2822 4 545.2052 122.1197 66.3611 0.4578 2821 +2823 4 544.2191 121.5489 66.5731 0.4436 2822 +2824 4 543.5716 120.644 66.8175 0.3869 2823 +2825 4 543.3439 119.5572 67.1076 0.3154 2824 +2826 4 542.8383 118.6397 67.4114 0.2474 2825 +2827 4 543.1575 117.641 67.8266 0.2661 2826 +2828 4 542.844 116.6628 68.1946 0.285 2827 +2829 4 541.8648 116.124 68.5672 0.3965 2828 +2830 4 540.7802 115.8106 68.9646 0.4599 2829 +2831 4 539.7358 115.3884 69.3554 0.3584 2830 +2832 4 538.8217 114.7604 69.7654 0.3178 2831 +2833 4 537.9077 114.5247 70.2369 0.3278 2832 +2834 4 536.8369 114.5762 70.7176 0.3901 2833 +2835 4 536.0006 113.8684 71.1668 0.5209 2834 +2836 4 535.3039 112.9713 71.5918 0.5759 2835 +2837 4 534.7285 112.0097 72.0269 0.5579 2836 +2838 4 533.9345 111.2338 72.455 0.42 2837 +2839 4 533.2836 110.3156 72.8294 0.3291 2838 +2840 4 532.9564 109.267 73.2542 0.3904 2839 +2841 4 532.1224 108.5409 73.687 0.418 2840 +2842 4 531.0711 108.1176 74.0695 0.4292 2841 +2843 4 530.5792 107.3455 74.464 0.415 2842 +2844 4 531.1512 106.4428 74.965 0.445 2843 +2845 4 531.8799 105.6001 75.4975 0.3409 2844 +2846 4 532.1911 104.6193 76.0547 0.2365 2845 +2847 4 532.6464 103.7833 76.6514 0.1848 2846 +2848 4 533.7263 103.567 77.2075 0.2009 2847 +2849 4 534.4379 102.7834 77.6664 0.2599 2848 +2850 4 535.487 102.664 78.0707 0.3415 2849 +2851 4 536.6115 102.4967 78.428 0.2853 2850 +2852 4 537.2968 101.8433 78.8026 0.2725 2851 +2853 4 536.7648 101.0382 79.2803 0.2628 2852 +2854 4 537.084 100.0499 79.669 0.2918 2853 +2855 4 538.2097 99.915 79.9929 0.2313 2854 +2856 4 539.3148 100.1176 80.2922 0.2163 2855 +2857 4 540.3478 100.5582 80.6134 0.1747 2856 +2858 4 541.4243 100.8896 80.9203 0.1642 2857 +2859 4 542.3921 100.6952 81.1796 0.1642 2858 +2860 4 542.4997 99.7021 81.4299 0.1842 2859 +2861 4 542.4539 98.6687 81.6766 0.238 2860 +2862 4 543.2238 98.52 82.0302 0.2575 2861 +2863 4 544.1196 99.0111 82.5306 0.3397 2862 +2864 4 544.989 99.6767 83.0505 0.3836 2863 +2865 4 545.8424 100.4334 83.4893 0.4186 2864 +2866 4 546.7748 100.1769 83.9009 0.3667 2865 +2867 4 547.6843 100.7756 84.2072 0.2644 2866 +2868 4 548.5903 101.4746 84.4105 0.2192 2867 +2869 4 549.4952 102.1741 84.5426 0.2345 2868 +2870 4 550.4894 102.7309 84.6754 0.3543 2869 +2871 4 551.4995 103.2565 84.8271 0.3618 2870 +2872 4 552.6218 103.1462 84.9629 0.3867 2871 +2873 4 553.7486 103.2533 85.0993 0.3805 2872 +2874 4 554.673 103.9222 85.251 0.394 2873 +2875 4 555.5779 104.6096 85.4112 0.2972 2874 +2876 4 556.1865 105.5769 85.5551 0.252 2875 +2877 4 556.7219 106.5651 85.6853 0.3176 2876 +2878 4 557.7744 106.9407 85.8144 0.2863 2877 +2879 4 558.8818 107.0422 85.962 0.2829 2878 +2880 4 559.8644 107.6057 86.1717 0.3551 2879 +2881 4 560.7899 108.2565 86.4416 0.4513 2880 +2882 4 561.6754 108.9605 86.749 0.4688 2881 +2883 4 562.4831 109.7654 87.061 0.4816 2882 +2884 4 563.3548 110.414 87.3975 0.4868 2883 +2885 4 564.3627 110.7569 87.813 0.358 2884 +2886 4 565.0902 111.5207 88.1927 0.3328 2885 +2887 4 565.7641 112.3816 88.4234 0.278 2886 +2888 4 566.685 113.0213 88.5368 0.3312 2887 +2889 4 567.6963 113.5398 88.6351 0.3639 2888 +2890 4 568.7442 113.591 88.8334 0.2874 2889 +2891 4 569.6708 113.8566 89.1615 0.2399 2890 +2892 4 569.3802 114.551 89.5292 0.2651 2891 +2893 4 568.5268 113.9434 89.9273 0.3337 2892 +2894 4 568.0658 112.9064 90.361 0.3554 2893 +2895 4 568.0898 111.9121 90.9521 0.335 2894 +2896 4 568.0589 110.8042 91.4892 0.2492 2895 +2897 4 566.9572 110.5413 91.9856 0.2078 2896 +2898 4 565.8418 110.3671 92.465 0.2465 2897 +2899 4 564.7379 110.1575 92.9326 0.2156 2898 +2900 4 563.6294 109.9617 93.3736 0.1988 2899 +2901 4 562.5677 109.6903 93.7692 0.1996 2900 +2902 4 562.0186 108.7591 94.1027 0.2757 2901 +2903 4 562.3812 107.6884 94.4356 0.2835 2902 +2904 4 562.3526 106.5873 94.7447 0.2577 2903 +2905 4 561.6823 105.941 95.0446 0.2914 2904 +2906 4 560.6012 105.8382 95.4103 0.3011 2905 +2907 4 559.607 105.3619 95.8367 0.2323 2906 +2908 4 558.7124 104.6878 96.2777 0.1825 2907 +2909 4 557.7286 104.4137 96.6767 0.1711 2908 +2910 4 557.1772 105.1492 97.0766 0.2132 2909 +2911 4 556.7207 106.1443 97.4781 0.214 2910 +2912 4 555.9577 106.9857 97.8034 0.2476 2911 +2913 4 556.5171 107.9195 98.0692 0.2691 2912 +2914 4 557.5856 108.2997 98.3279 0.2766 2913 +2915 4 557.9482 109.2382 98.604 0.3331 2914 +2916 4 557.3248 110.0536 98.861 0.4611 2915 +2917 4 556.4519 110.5568 99.0864 0.4701 2916 +2918 4 555.9508 111.0873 99.3233 0.4523 2917 +2919 4 554.9475 110.6438 99.5086 0.4714 2918 +2920 4 553.8539 110.8612 99.652 0.3692 2919 +2921 4 553.0439 111.5896 99.7679 0.39 2920 +2922 4 553.2956 112.4272 99.8732 0.3218 2921 +2923 4 554.2566 113.0293 100.0026 0.3713 2922 +2924 4 555.317 113.353 100.2064 0.4092 2923 +2925 4 556.1625 113.9828 100.4464 0.3981 2924 +2926 4 556.0034 114.9457 100.665 0.3148 2925 +2927 4 555.9726 116.0657 100.8622 0.3504 2926 +2928 4 555.5401 117.0598 101.0456 0.2953 2927 +2929 4 554.9761 117.9784 101.2441 0.3235 2928 +2930 4 555.2129 119.0538 101.479 0.3139 2929 +2931 4 555.8742 119.945 101.7724 0.2536 2930 +2932 4 556.8683 120.0834 102.2059 0.2345 2931 +2933 4 557.9963 120.0422 102.5881 0.2059 2932 +2934 4 559.138 120.0445 102.9132 0.2347 2933 +2935 4 560.2774 120.0822 103.1971 0.2336 2934 +2936 4 561.4088 119.9461 103.43 0.2677 2935 +2937 4 562.4854 119.5663 103.6011 0.3839 2936 +2938 4 563.6099 119.3741 103.7294 0.457 2937 +2939 4 564.5949 118.8216 103.8901 0.3684 2938 +2940 4 565.6382 118.3674 104.0771 0.2623 2939 +2941 4 566.7365 118.6591 104.2462 0.2401 2940 +2942 4 567.8736 118.6477 104.4473 0.2679 2941 +2943 4 568.9867 118.4337 104.6853 0.2132 2942 +2944 4 570.1113 118.2553 104.9244 0.1694 2943 +2945 4 571.237 118.0768 105.1523 0.1525 2944 +2946 4 572.3615 117.8972 105.366 0.1525 2945 +2947 4 573.4861 117.7187 105.7837 0.2288 2946 +2948 4 547.865 120.938 65.8781 0.5644 2820 +2949 4 547.9588 119.8065 66.1816 0.5768 2948 +2950 4 547.7266 118.6934 66.4199 0.4899 2949 +2951 4 548.445 117.8835 66.6044 0.5188 2950 +2952 4 549.1932 117.0209 66.7758 0.5638 2951 +2953 4 549.5673 115.9536 66.971 0.5761 2952 +2954 4 549.3351 114.8725 67.2241 0.4851 2953 +2955 4 549.0479 113.7891 67.5035 0.4125 2954 +2956 4 549.1211 112.6476 67.7054 0.3829 2955 +2957 4 549.6039 111.6367 67.9162 0.2755 2956 +2958 4 549.0891 111.0711 68.6468 0.1716 2957 +2959 4 548.6395 110.0439 68.9326 0.1716 2958 +2960 4 548.7642 108.9154 69.0536 0.1716 2959 +2961 4 549.1051 107.8338 69.2292 0.1716 2960 +2962 4 549.2962 106.717 69.4487 0.1716 2961 +2963 4 549.4197 105.5913 69.6962 0.1716 2962 +2964 4 549.4998 104.4633 69.9454 0.1716 2963 +2965 4 549.3785 103.326 70.1459 0.1716 2964 +2966 4 549.2699 102.1918 70.2948 0.1716 2965 +2967 4 549.3957 101.0592 70.3923 0.1716 2966 +2968 4 549.6691 99.953 70.4584 0.1716 2967 +2969 4 550.0146 98.8645 70.5421 0.1716 2968 +2970 4 550.3795 97.791 70.7095 0.1716 2969 +2971 4 550.5546 96.7275 71.0321 0.1716 2970 +2972 4 550.7662 95.963 71.547 0.1716 2971 +2973 4 551.813 96.2399 72.03 0.1716 2972 +2974 4 552.3758 95.501 72.4721 0.1716 2973 +2975 4 552.8792 94.478 72.8361 0.1716 2974 +2976 4 553.5118 93.5269 73.0976 0.1716 2975 +2977 4 554.4533 92.8934 73.2735 0.1716 2976 +2978 4 555.5596 93.0258 73.3992 0.1716 2977 +2979 4 556.4896 93.6644 73.5493 0.1716 2978 +2980 4 556.9667 94.6943 73.745 0.1716 2979 +2981 4 557.8693 95.3722 73.9318 0.1716 2980 +2982 4 558.9001 95.4184 74.1448 0.1716 2981 +2983 4 559.3863 94.4716 74.4839 0.1716 2982 +2984 4 560.1093 93.6078 74.7757 0.1716 2983 +2985 4 561.1114 93.0585 75.0352 0.1716 2984 +2986 4 562.1582 92.6097 75.3001 0.1716 2985 +2987 4 563.2347 92.4187 75.5958 0.1716 2986 +2988 4 564.2974 92.8287 75.8954 0.1716 2987 +2989 4 565.1852 93.4108 76.2177 0.1716 2988 +2990 4 565.2664 94.431 76.6567 0.1716 2989 +2991 4 565.5284 95.3593 77.1014 0.1716 2990 +2992 4 566.5145 95.17 77.4547 0.1716 2991 +2993 4 567.6368 95.1379 77.7319 0.1716 2992 +2994 4 568.7785 95.2076 77.9509 0.1716 2993 +2995 4 569.6857 95.7966 78.2085 0.1716 2994 +2996 4 570.2657 96.7484 78.4879 0.1716 2995 +2997 4 570.6913 97.804 78.7296 0.1716 2996 +2998 4 571.8353 97.8085 78.9438 0.1716 2997 +2999 4 572.6464 98.4357 79.1806 0.1716 2998 +3000 4 572.866 99.5048 79.4612 0.1716 2999 +3001 4 573.7515 100.0636 79.7182 0.1716 3000 +3002 4 574.6392 100.6347 79.933 0.1716 3001 +3003 4 574.8417 101.6898 80.1475 0.1716 3002 +3004 4 575.2512 102.6533 80.3678 0.1716 3003 +3005 4 576.3769 102.4621 80.547 0.1716 3004 +3006 4 577.5061 102.6338 80.7041 0.1716 3005 +3007 4 578.4762 103.2168 80.8724 0.1716 3006 +3008 4 579.0711 104.1709 81.0925 0.1716 3007 +3009 4 580.0721 104.7131 81.3341 0.1716 3008 +3010 4 581.0353 105.2757 81.6444 0.1716 3009 +3011 4 582.1267 105.3091 82.0512 0.1716 3010 +3012 4 583.0396 105.8441 82.4684 0.1716 3011 +3013 4 582.8028 106.6738 82.8355 0.1716 3012 +3014 4 581.6668 106.6964 83.1704 0.1716 3013 +3015 4 581.1875 107.3604 83.4957 0.1716 3014 +3016 4 581.8338 108.181 83.8807 0.1716 3015 +3017 4 582.8337 108.3853 84.4301 0.1716 3016 +3018 4 583.8884 108.5132 85.113 0.1716 3017 +3019 4 584.9627 108.7293 85.8581 0.1716 3018 +3020 4 586.014 108.9923 86.644 0.1716 3019 +3021 4 586.9589 109.3249 87.4966 0.1716 3020 +3022 4 587.976 109.5383 88.3375 0.1716 3021 +3023 4 589.0982 109.4794 89.0067 0.1716 3022 +3024 4 590.137 109.8974 89.5154 0.1716 3023 +3025 4 591.2112 110.2858 89.906 0.1716 3024 +3026 4 591.9983 109.6857 90.3255 0.1716 3025 +3027 4 593.021 109.6294 90.7914 0.1716 3026 +3028 4 594.0941 109.9375 91.2358 0.1716 3027 +3029 4 595.1683 110.31 91.6252 0.1716 3028 +3030 4 596.2322 110.7271 91.9243 0.1716 3029 +3031 4 597.3728 110.8068 92.122 0.1716 3030 +3032 4 598.5145 110.8865 92.2793 0.1716 3031 +3033 4 550.455 110.6736 67.8793 0.2175 2957 +3034 4 551.0362 109.7245 67.7099 0.2254 3033 +3035 4 551.527 108.6941 67.6032 0.2518 3034 +3036 4 551.9651 107.6479 67.5984 0.2431 3035 +3037 4 552.3896 106.5988 67.6824 0.2786 3036 +3038 4 553.1332 105.7667 67.8154 0.3224 3037 +3039 4 554.0072 105.0298 67.9554 0.3955 3038 +3040 4 554.2749 103.9644 68.0708 0.4568 3039 +3041 4 554.9956 103.1283 68.1551 0.4728 3040 +3042 4 555.8421 102.3585 68.2147 0.4047 3041 +3043 4 556.8637 101.8767 68.2903 0.4102 3042 +3044 4 557.9517 101.5499 68.3976 0.3526 3043 +3045 4 559.0259 101.1607 68.4894 0.3467 3044 +3046 4 560.0967 100.7568 68.5586 0.3025 3045 +3047 4 560.4902 99.7533 68.6064 0.2684 3046 +3048 4 560.4101 98.6121 68.6356 0.3155 3047 +3049 4 560.3335 97.9138 68.6468 0.2288 3048 +3050 4 560.2168 96.776 68.6608 0.2927 3049 +3051 4 560.147 95.6429 68.6336 0.2368 3050 +3052 4 559.5739 94.6773 68.635 0.2083 3051 +3053 4 558.6861 93.9664 68.707 0.2473 3052 +3054 4 557.8201 93.2246 68.8374 0.2179 3053 +3055 4 557.017 92.4128 69.0105 0.1996 3054 +3056 4 556.2174 91.5972 69.2213 0.2188 3055 +3057 4 555.4166 90.7818 69.4641 0.2248 3056 +3058 4 554.6444 89.9574 69.7659 0.2653 3057 +3059 4 553.8848 89.1313 70.1249 0.3119 3058 +3060 4 553.1606 88.2619 70.5104 0.3082 3059 +3061 4 552.457 87.3722 70.9061 0.2804 3060 +3062 4 551.7535 86.4817 71.3048 0.3307 3061 +3063 4 550.8921 85.7344 71.6772 0.387 3062 +3064 4 549.7927 85.7164 72.1028 0.3288 3063 +3065 4 549.0445 84.9592 72.5514 0.3233 3064 +3066 4 548.7471 83.8695 72.9705 0.3874 3065 +3067 4 548.2014 82.8716 73.3575 0.3748 3066 +3068 4 547.5012 82.0269 73.719 0.4168 3067 +3069 4 546.4247 81.7063 74.0776 0.2919 3068 +3070 4 545.3391 81.4644 74.4293 0.244 3069 +3071 4 545.3517 80.6816 74.7418 0.1794 3070 +3072 4 545.1663 79.755 75.0053 0.1705 3071 +3073 4 544.2065 79.5204 75.2707 0.188 3072 +3074 4 543.4355 80.2839 75.5502 0.1692 3073 +3075 4 543.3439 81.4091 75.8372 0.1541 3074 +3076 4 543.1895 82.5037 76.1928 0.1455 3075 +3077 4 543.6448 83.5176 76.5738 0.1497 3076 +3078 4 544.258 84.4615 76.9482 0.1738 3077 +3079 4 544.9501 85.3677 77.2556 0.1398 3078 +3080 4 545.696 86.2352 77.6499 0.1144 3079 +3081 4 561.7029 98.1237 68.6496 0.1716 3048 +3082 4 562.7897 97.7701 68.6507 0.1716 3081 +3083 4 563.9268 97.7104 68.6524 0.1716 3082 +3084 4 564.8386 97.0724 68.6546 0.1716 3083 +3085 4 565.9471 97.0224 68.6577 0.1716 3084 +3086 4 567.0007 97.4261 68.6622 0.1716 3085 +3087 4 568.139 97.3514 68.668 0.1716 3086 +3088 4 569.1755 96.9478 68.6767 0.1716 3087 +3089 4 570.0163 96.32 68.6885 0.1716 3088 +3090 4 571.1042 96.6377 68.705 0.1716 3089 +3091 4 572.0961 97.2021 68.7291 0.1716 3090 +3092 4 572.9667 97.9307 68.7624 0.1716 3091 +3093 4 573.6611 98.8362 68.8047 0.1716 3092 +3094 4 574.3429 99.748 68.8629 0.1716 3093 +3095 4 575.2467 100.3866 68.964 0.1716 3094 +3096 4 576.3049 100.7759 69.1155 0.1716 3095 +3097 4 577.331 101.247 69.2614 0.1716 3096 +3098 4 578.316 101.8281 69.3473 0.1716 3097 +3099 4 579.325 102.3601 69.3605 0.1716 3098 +3100 4 580.3706 102.8105 69.2857 0.1716 3099 +3101 4 581.4231 103.2415 69.1373 0.1716 3100 +3102 4 582.4802 103.6602 68.9422 0.1716 3101 +3103 4 583.575 103.9494 68.7372 0.1716 3102 +3104 4 584.7076 104.0906 68.5499 0.1716 3103 +3105 4 585.8401 104.2318 68.3864 0.1716 3104 +3106 4 586.9589 104.4473 68.2606 0.1716 3105 +3107 4 588.0778 104.615 68.1811 0.1716 3106 +3108 4 589.1886 104.4127 68.136 0.1716 3107 +3109 4 590.2537 103.9968 68.1153 0.1716 3108 +3110 4 591.3073 103.5504 68.1111 0.1716 3109 +3111 4 592.3346 103.5787 68.1176 0.1716 3110 +3112 4 593.1274 104.3564 68.1313 0.1716 3111 +3113 4 594.0483 104.696 68.1506 0.1716 3112 +3114 4 594.9315 104.0024 68.1761 0.1716 3113 +3115 4 595.6373 103.1052 68.2077 0.1716 3114 +3116 4 596.5548 102.4325 68.2623 0.1716 3115 +3117 4 597.6405 102.0955 68.3502 0.1716 3116 +3118 4 598.7604 101.877 68.451 0.1716 3117 +3119 4 599.901 101.9394 68.53 0.1716 3118 +3120 4 601.0427 102.0127 68.5871 0.1716 3119 +3121 4 601.9751 102.6645 68.6246 0.1716 3120 +3122 4 602.9578 103.2511 68.6442 0.1716 3121 +3123 4 604.0606 103.5535 68.651 0.1716 3122 +3124 4 605.1646 103.8556 68.6529 0.1716 3123 +3125 4 606.2674 104.1579 68.6554 0.1716 3124 +3126 4 607.4434 104.0975 68.9598 0.1716 3125 +3127 4 608.5817 104.039 69.0908 0.1716 3126 +3128 4 609.72 103.9804 69.2423 0.1716 3127 +3129 4 610.8582 103.9219 69.4028 0.1716 3128 +3130 4 612.0 103.8713 69.5512 0.1716 3129 +3131 4 613.1428 103.8345 69.6632 0.1716 3130 +3132 4 614.2868 103.8 69.739 0.1716 3131 +3133 4 615.4171 103.953 69.7892 0.1716 3132 +3134 4 616.5279 104.2229 69.8239 0.1716 3133 +3135 4 617.6616 104.3701 69.8522 0.1716 3134 +3136 4 618.8022 104.4536 69.8816 0.1716 3135 +3137 4 619.9416 104.5419 69.9289 0.1716 3136 +3138 4 621.0799 104.6409 70.0003 0.1716 3137 +3139 4 622.217 104.7412 70.089 0.1716 3138 +3140 4 623.3564 104.8314 70.1792 0.1716 3139 +3141 4 624.4982 104.9018 70.2509 0.1716 3140 +3142 4 625.6399 104.9692 70.3027 0.1716 3141 +3143 4 626.7804 104.8964 70.3371 0.1716 3142 +3144 4 627.9187 104.7826 70.359 0.1716 3143 +3145 4 629.057 104.6657 70.3749 0.1716 3144 +3146 4 630.1621 104.3782 70.392 0.1716 3145 +3147 4 631.2855 104.1702 70.415 0.1716 3146 +3148 4 632.3918 104.4429 70.4441 0.1716 3147 +3149 4 633.5197 104.6354 70.4838 0.1716 3148 +3150 4 634.4807 104.0268 70.5594 0.1716 3149 +3151 4 635.4394 103.4102 70.6588 0.1716 3150 +3152 4 636.4999 102.9814 70.7498 0.1716 3151 +3153 4 637.597 102.6579 70.8179 0.1716 3152 +3154 4 638.6941 102.3345 70.8977 0.1716 3153 +3155 4 606.8005 104.3082 68.6591 0.1716 3125 +3156 4 607.901 104.6188 68.6638 0.1716 3155 +3157 4 608.9809 104.9796 68.6706 0.1716 3156 +3158 4 610.0014 105.4878 68.6801 0.1716 3157 +3159 4 611.1076 105.7311 68.6932 0.1716 3158 +3160 4 612.2516 105.7015 68.7117 0.1716 3159 +3161 4 613.3659 105.8205 68.738 0.1716 3160 +3162 4 614.3978 106.3141 68.7747 0.1716 3161 +3163 4 615.4262 106.8153 68.824 0.1716 3162 +3164 4 616.4444 107.3363 68.8929 0.1716 3163 +3165 4 617.4729 107.8328 68.9979 0.1716 3164 +3166 4 618.5253 108.2731 69.1468 0.1716 3165 +3167 4 619.6007 108.6241 69.3269 0.1716 3166 +3168 4 620.7252 108.7868 69.529 0.1716 3167 +3169 4 621.7388 109.2313 69.799 0.1716 3168 +3170 4 622.6884 109.7887 70.1117 0.1716 3169 +3171 4 623.7683 110.1582 70.3914 0.1716 3170 +3172 4 624.8013 110.6174 70.6779 0.1716 3171 +3173 4 625.8412 110.9572 70.9764 0.1716 3172 +3174 4 626.9818 110.9373 71.2286 0.1716 3173 +3175 4 628.0743 111.1572 71.4171 0.1716 3174 +3176 4 629.1497 111.54 71.5627 0.1716 3175 +3177 4 630.2513 111.505 71.6842 0.1716 3176 +3178 4 631.3725 111.3257 71.8108 0.1716 3177 +3179 4 632.5004 111.3467 71.9832 0.1716 3178 +3180 4 633.6193 111.5011 72.1972 0.1716 3179 +3181 4 634.7038 111.833 72.3988 0.1716 3180 +3182 4 635.7666 112.2556 72.5634 0.1716 3181 +3183 4 636.8717 112.3461 72.7138 0.1716 3182 +3184 4 637.9985 112.179 72.8608 0.1716 3183 +3185 4 639.1288 112.0146 72.984 0.1716 3184 +3186 4 640.2648 111.8855 73.0814 0.1716 3185 +3187 4 641.3985 111.7768 73.1752 0.1716 3186 +3188 4 642.5356 111.6976 73.2514 0.1716 3187 +3189 4 643.6773 111.6371 73.2743 0.1716 3188 +3190 4 644.8042 111.5151 73.206 0.1716 3189 +3191 4 645.9207 111.3543 73.0514 0.1716 3190 +3192 4 647.0521 111.2506 72.8689 0.1716 3191 +3193 4 648.195 111.2008 72.7012 0.1716 3192 +3194 4 649.3333 111.2676 72.5598 0.1716 3193 +3195 4 650.4624 111.4524 72.4447 0.1716 3194 +3196 4 651.5686 111.7323 72.3363 0.1716 3195 +3197 4 652.6428 112.1081 72.2033 0.1716 3196 +3198 4 653.6908 111.9547 72.0566 0.1716 3197 +3199 4 654.6792 111.3841 71.913 0.1716 3198 +3200 4 655.7602 111.4303 71.7517 0.1716 3199 +3201 4 656.8745 111.6738 71.5722 0.1716 3200 +3202 4 657.9888 111.9174 71.3818 0.1716 3201 +3203 4 659.103 112.161 71.185 0.1716 3202 +3204 4 660.2173 112.4047 70.982 0.1716 3203 +3205 4 661.343 112.5792 70.7748 0.1716 3204 +3206 4 662.4732 112.7301 70.5706 0.1716 3205 +3207 4 663.6024 112.8801 70.3738 0.1716 3206 +3208 4 664.7326 113.0302 70.187 0.1716 3207 +3209 4 665.8595 113.2107 70.0176 0.1716 3208 +3210 4 666.9566 113.5232 69.8877 0.1716 3209 +3211 4 668.0468 113.8719 69.7942 0.1716 3210 +3212 4 669.1359 114.2207 69.727 0.1716 3211 +3213 4 670.2261 114.5693 69.6763 0.1716 3212 +3214 4 671.3438 114.8004 69.6256 0.1716 3213 +3215 4 672.481 114.8164 69.5551 0.1716 3214 +3216 4 673.6227 114.7821 69.4652 0.1716 3215 +3217 4 674.7438 114.9686 69.3753 0.1716 3216 +3218 4 675.7883 115.4239 69.3048 0.1716 3217 +3219 4 676.6234 116.1904 69.2552 0.1716 3218 +3220 4 676.3168 117.292 69.2096 0.1716 3219 +3221 4 502.3556 220.458 57.2874 0.1144 2460 +3222 4 502.3796 219.3174 57.5826 0.2217 3221 +3223 4 502.5077 218.1825 57.6859 0.2264 3222 +3224 4 502.788 217.09 57.8477 0.2867 3223 +3225 4 503.2262 216.0616 58.0871 0.2622 3224 +3226 4 503.4572 214.9713 58.3279 0.3069 3225 +3227 4 503.4893 213.8353 58.5651 0.2949 3226 +3228 4 503.5831 212.7028 58.7899 0.2756 3227 +3229 4 503.8222 211.5874 58.97 0.3406 3228 +3230 4 504.0178 210.4617 59.0974 0.3145 3229 +3231 4 504.2146 209.336 59.1881 0.2915 3230 +3232 4 504.3736 208.2183 59.3082 0.2402 3231 +3233 4 504.4262 207.0834 59.4182 0.3006 3232 +3234 4 504.6836 205.9806 59.4936 0.2306 3233 +3235 4 505.1732 204.951 59.5417 0.1835 3234 +3236 4 505.8265 204.0152 59.5641 0.1528 3235 +3237 4 506.1742 202.957 59.563 0.1634 3236 +3238 4 506.3047 201.821 59.5409 0.1989 3237 +3239 4 506.4396 200.6851 59.5098 0.1869 3238 +3240 4 506.6501 199.5765 59.4199 0.1999 3239 +3241 4 506.8709 198.46 59.3261 0.1678 3240 +3242 4 506.9327 197.3206 59.2589 0.1517 3241 +3243 4 506.9464 196.1766 59.22 0.1404 3242 +3244 4 507.1466 195.0543 59.2094 0.143 3243 +3245 4 507.3606 193.9309 59.225 0.1478 3244 +3246 4 507.5688 192.8063 59.2673 0.1574 3245 +3247 4 507.6122 191.6783 59.3732 0.1717 3246 +3248 4 507.6122 190.5378 59.4933 0.215 3247 +3249 4 507.6122 189.3938 59.6002 0.2138 3248 +3250 4 507.6122 188.2498 59.6921 0.2631 3249 +3251 4 507.6122 187.1058 59.7705 0.2203 3250 +3252 4 507.6122 185.9675 59.8741 0.2195 3251 +3253 4 507.6122 184.8281 59.9914 0.1804 3252 +3254 4 507.6122 183.6852 60.0905 0.1762 3253 +3255 4 507.6122 182.5412 60.1703 0.1805 3254 +3256 4 507.6122 181.3972 60.235 0.243 3255 +3257 4 507.6122 180.2532 60.2888 0.2092 3256 +3258 4 507.6122 179.1092 60.3352 0.1859 3257 +3259 4 507.6122 177.9652 60.3854 0.1812 3258 +3260 4 507.5184 176.8258 60.4478 0.2145 3259 +3261 4 507.2313 175.7344 60.5763 0.3012 3260 +3262 4 507.0894 174.6053 60.727 0.3406 3261 +3263 4 506.8046 173.499 60.87 0.3168 3262 +3264 4 506.5037 172.4134 61.0669 0.2839 3263 +3265 4 506.4682 171.2774 61.2472 0.2833 3264 +3266 4 506.6456 170.1483 61.399 0.2182 3265 +3267 4 506.6936 169.018 61.5756 0.1789 3266 +3268 4 506.697 167.8774 61.7434 0.1685 3267 +3269 4 506.697 166.7334 61.8772 0.19 3268 +3270 4 506.697 165.5894 61.978 0.2604 3269 +3271 4 506.697 164.4649 62.1272 0.2424 3270 +3272 4 506.6787 163.322 62.2471 0.2433 3271 +3273 4 506.4888 162.1952 62.326 0.3081 3272 +3274 4 506.2658 161.0741 62.3759 0.3508 3273 +3275 4 505.839 160.0136 62.4028 0.3474 3274 +3276 4 505.7967 158.8764 62.4067 0.2839 3275 +3277 4 505.7853 157.7324 62.3888 0.2159 3276 +3278 4 505.5759 156.609 62.3624 0.1915 3277 +3279 4 505.084 155.5783 62.33 0.2245 3278 +3280 4 504.5864 154.5487 62.2835 0.2494 3279 +3281 4 503.9743 153.8829 62.169 0.183 3280 +3282 4 503.1026 153.1587 62.0738 0.183 3281 +3283 4 502.3212 152.3259 62.0021 0.183 3282 +3284 4 501.5182 151.5125 61.9528 0.183 3283 +3285 4 500.7322 150.682 61.9245 0.183 3284 +3286 4 499.9509 149.8491 61.9156 0.183 3285 +3287 4 499.1581 149.0277 61.9226 0.183 3286 +3288 4 498.3241 148.2441 61.9338 0.183 3287 +3289 4 497.6308 147.3483 61.9497 0.183 3288 +3290 4 497.0005 146.3965 61.9721 0.183 3289 +3291 4 496.21 145.5797 62.0007 0.183 3290 +3292 4 495.4424 144.7435 62.0354 0.183 3291 +3293 4 494.7503 143.8443 62.109 0.183 3292 +3294 4 494.0284 142.9668 62.2138 0.183 3293 +3295 4 493.374 142.0322 62.3045 0.183 3294 +3296 4 492.738 141.0827 62.3728 0.183 3295 +3297 4 492.0699 140.1537 62.4201 0.183 3296 +3298 4 491.5002 139.1653 62.449 0.183 3297 +3299 4 490.9911 138.1414 62.461 0.183 3298 +3300 4 490.4031 137.161 62.4644 0.183 3299 +3301 4 489.815 136.1795 62.4672 0.183 3300 +3302 4 489.2019 135.2139 62.4711 0.183 3301 +3303 4 488.6619 134.2072 62.4764 0.183 3302 +3304 4 488.1276 133.1948 62.484 0.183 3303 +3305 4 487.2571 132.4729 62.4946 0.183 3304 +3306 4 486.383 131.735 62.5097 0.183 3305 +3307 4 485.6509 130.8587 62.5304 0.183 3306 +3308 4 485.1304 129.8429 62.5593 0.183 3307 +3309 4 484.7174 128.7766 62.5993 0.183 3308 +3310 4 484.2644 127.7265 62.6576 0.183 3309 +3311 4 483.9543 126.6259 62.7388 0.183 3310 +3312 4 483.3503 125.6558 62.8482 0.183 3311 +3313 4 482.5392 124.8493 62.9888 0.183 3312 +3314 4 481.8951 124.0027 62.4574 0.1716 3313 +3315 4 481.2568 123.0544 62.3246 0.1716 3314 +3316 4 481.076 121.9355 62.2745 0.1716 3315 +3317 4 481.0646 120.8075 62.1592 0.1716 3316 +3318 4 481.1927 119.6727 62.0603 0.1716 3317 +3319 4 481.2877 118.5321 61.9833 0.1716 3318 +3320 4 481.2934 117.3893 61.927 0.1716 3319 +3321 4 481.2934 116.2453 61.8887 0.1716 3320 +3322 4 481.4936 115.1196 61.8649 0.1716 3321 +3323 4 481.7373 114.0019 61.8506 0.1716 3322 +3324 4 481.7304 112.8593 61.8332 0.1716 3323 +3325 4 481.0943 111.9184 61.8139 0.1716 3324 +3326 4 480.4079 111.006 61.7907 0.1716 3325 +3327 4 479.574 110.2562 61.7016 0.1716 3326 +3328 4 478.5832 109.7009 61.6328 0.1716 3327 +3329 4 477.8339 108.8421 61.6 0.1716 3328 +3330 4 476.9542 108.156 61.6557 0.1716 3329 +3331 4 475.944 107.6371 61.7095 0.1716 3330 +3332 4 475.0895 106.8781 61.7546 0.1716 3331 +3333 4 474.3207 106.0334 61.7873 0.1716 3332 +3334 4 473.6629 105.0991 61.7957 0.1716 3333 +3335 4 473.0554 104.1297 61.78 0.1716 3334 +3336 4 472.5189 103.13 61.7389 0.1716 3335 +3337 4 472.2283 102.0343 61.6599 0.1716 3336 +3338 4 471.9812 100.932 61.5507 0.1716 3337 +3339 4 471.4836 99.9125 61.4648 0.1716 3338 +3340 4 470.7343 99.0586 61.4009 0.1716 3339 +3341 4 469.9792 98.205 61.3572 0.1716 3340 +3342 4 469.517 97.182 61.3312 0.1716 3341 +3343 4 469.3924 96.054 61.32 0.1716 3342 +3344 4 469.3191 94.914 61.3152 0.1716 3343 +3345 4 468.9736 93.8407 61.3085 0.1716 3344 +3346 4 468.6373 92.757 61.2996 0.1716 3345 +3347 4 468.2232 91.7033 61.2864 0.1716 3346 +3348 4 467.8857 90.6228 61.2674 0.1716 3347 +3349 4 467.7416 89.4893 61.2416 0.1716 3348 +3350 4 467.2851 88.4786 61.2086 0.1716 3349 +3351 4 466.8138 87.4474 61.166 0.1716 3350 +3352 4 467.2451 86.5397 61.0778 0.1716 3351 +3353 4 466.911 85.7573 60.9608 0.1716 3352 +3354 4 465.8128 85.4464 60.8644 0.1716 3353 +3355 4 464.7855 84.9436 60.7858 0.1716 3354 +3356 4 463.8199 84.3344 60.7214 0.1716 3355 +3357 4 463.0432 83.5252 60.6665 0.1716 3356 +3358 4 462.6244 82.4609 60.6152 0.1716 3357 +3359 4 462.2138 81.3933 60.5545 0.1716 3358 +3360 4 461.787 80.336 60.4708 0.1716 3359 +3361 4 461.048 79.5467 60.3487 0.1716 3360 +3362 4 459.9555 79.2197 60.1745 0.1716 3361 +3363 4 458.863 78.9097 59.9463 0.1716 3362 +3364 4 457.7716 78.6522 59.642 0.1716 3363 +3365 4 456.8999 78.1697 59.2967 0.1716 3364 +3366 4 456.3954 77.1919 58.9649 0.1716 3365 +3367 4 455.4619 76.6028 58.6256 0.1716 3366 +3368 4 454.4563 76.1003 58.3167 0.1716 3367 +3369 4 453.5056 75.4807 58.0303 0.1716 3368 +3370 4 452.5035 75.4769 57.7808 0.1716 3369 +3371 4 451.4968 75.4404 57.5252 0.1716 3370 +3372 4 450.6822 74.697 57.2709 0.1716 3371 +3373 4 449.7625 74.2661 56.9828 0.1716 3372 +3374 4 448.6471 74.2639 56.6415 0.1716 3373 +3375 4 447.6861 73.7005 56.3399 0.1716 3374 +3376 4 447.86 72.5984 56.0784 0.1716 3375 +3377 4 448.1917 71.504 55.8438 0.1716 3376 +3378 4 447.312 70.9581 55.5453 0.1716 3377 +3379 4 446.4414 70.5473 55.1939 0.1716 3378 +3380 4 447.0043 69.7237 54.8484 0.1716 3379 +3381 4 447.6449 68.7976 54.4681 0.1716 3380 +3382 4 447.4813 67.7428 53.9851 0.1716 3381 +3383 4 447.0672 66.6851 53.5158 0.1716 3382 +3384 4 446.2 66.4203 52.9066 0.1716 3383 +3385 4 446.6096 65.5042 52.2099 0.1716 3384 +3386 4 447.0294 64.4746 51.5738 0.1716 3385 +3387 4 447.2571 63.3557 51.1006 0.1716 3386 +3388 4 447.1644 62.2708 50.7688 0.1716 3387 +3389 4 446.1817 61.73 50.5445 0.1716 3388 +3390 4 445.9255 60.7184 50.3986 0.1716 3389 +3391 4 446.3877 59.7289 50.2477 0.1716 3390 +3392 4 445.7653 58.9342 50.097 0.1716 3391 +3393 4 444.8524 58.2497 49.9498 0.1716 3392 +3394 4 444.0939 57.402 49.8 0.1716 3393 +3395 4 443.5494 56.4039 49.6437 0.1716 3394 +3396 4 442.7452 55.6897 49.429 0.1716 3395 +3397 4 441.6915 55.3832 49.1182 0.1716 3396 +3398 4 441.1138 54.4856 48.7654 0.1716 3397 +3399 4 440.6276 53.4674 48.3966 0.1716 3398 +3400 4 440.4308 52.3518 48.0679 0.1716 3399 +3401 4 440.5716 51.2223 47.8061 0.1716 3400 +3402 4 440.2901 50.1408 47.57 0.1716 3401 +3403 4 439.709 49.2197 47.35 0.1716 3402 +3404 4 439.701 48.1164 47.1635 0.1716 3403 +3405 4 439.0375 47.2094 46.963 0.1716 3404 +3406 4 438.1463 46.4952 46.7866 0.1716 3405 +3407 4 437.2951 45.7348 46.6385 0.1716 3406 +3408 4 436.3491 45.1013 46.492 0.1716 3407 +3409 4 435.324 44.6141 46.3434 0.1716 3408 +3410 4 434.2269 44.2922 46.2185 0.1716 3409 +3411 4 433.1287 43.9822 46.1208 0.1716 3410 +3412 4 432.1689 43.4164 46.0342 0.1716 3411 +3413 4 431.8875 42.449 45.9488 0.1716 3412 +3414 4 431.8177 41.5352 45.8576 0.1716 3413 +3415 4 430.7972 41.0586 45.752 0.1716 3414 +3416 4 429.7001 40.7477 45.6022 0.1716 3415 +3417 4 428.7998 40.1629 45.3438 0.1716 3416 +3418 4 427.9269 39.4905 45.001 0.1716 3417 +3419 4 426.8859 39.0652 44.6751 0.1716 3418 +3420 4 425.9501 38.4549 44.3993 0.1716 3419 +3421 4 425.1573 37.646 44.1224 0.1716 3420 +3422 4 424.6299 36.654 43.8656 0.1716 3421 +3423 4 424.1048 35.6607 43.591 0.1716 3422 +3424 4 423.0157 35.4713 43.349 0.1716 3423 +3425 4 421.8717 35.4497 43.1334 0.1716 3424 +3426 4 420.7438 35.3403 42.9248 0.1716 3425 +3427 4 419.657 35.3038 42.6244 0.1716 3426 +3428 4 419.7073 34.5747 42.3508 0.1716 3427 +3429 4 418.9877 33.9066 42.0563 0.1716 3428 +3430 4 417.9249 33.528 41.7105 0.1716 3429 +3431 4 416.8336 33.7917 41.3258 0.1716 3430 +3432 4 416.0545 32.9876 40.9108 0.1716 3431 +3433 4 416.0888 32.247 40.3844 0.1716 3432 +3434 4 415.7834 31.4862 39.7603 0.1716 3433 +3435 4 415.2663 31.0955 39.0659 0.1716 3434 +3436 4 414.1909 31.3684 38.4096 0.1716 3435 +3437 4 414.0102 30.6386 37.8613 0.1716 3436 +3438 4 413.9175 29.5336 37.3968 0.1716 3437 +3439 4 413.3066 28.6092 37.0339 0.1716 3438 +3440 4 412.6282 29.3309 36.7346 0.1716 3439 +3441 4 411.7473 29.7816 36.4353 0.1716 3440 +3442 4 411.451 28.6901 36.2096 0.1716 3441 +3443 4 411.8457 27.6456 36.0371 0.1716 3442 +3444 4 411.2691 26.9227 35.8187 0.1716 3443 +3445 4 410.1515 26.72 35.6566 0.1716 3444 +3446 4 409.2031 26.0887 35.4488 0.1716 3445 +3447 4 481.4947 124.1171 63.5914 0.183 3313 +3448 4 480.4422 123.703 63.98 0.183 3447 +3449 4 479.5991 123.0921 64.4137 0.183 3448 +3450 4 478.9825 122.1655 64.8096 0.183 3449 +3451 4 478.1188 121.431 65.109 0.183 3450 +3452 4 477.008 121.2491 65.3192 0.183 3451 +3453 4 476.2689 120.4449 65.5138 0.183 3452 +3454 4 475.7644 119.4222 65.6779 0.183 3453 +3455 4 475.1924 118.4315 65.7961 0.183 3454 +3456 4 474.442 117.5689 65.8938 0.183 3455 +3457 4 473.9432 116.5404 65.984 0.183 3456 +3458 4 473.2739 115.6195 66.0694 0.183 3457 +3459 4 472.3061 115.0303 66.1606 0.183 3458 +3460 4 471.6472 114.1268 66.3368 0.183 3459 +3461 4 470.9093 113.28 66.5588 0.183 3460 +3462 4 470.2286 112.3616 66.7372 0.183 3461 +3463 4 469.5823 111.4307 66.8763 0.183 3462 +3464 4 468.6865 110.7207 66.981 0.183 3463 +3465 4 467.7324 110.0903 67.0552 0.183 3464 +3466 4 466.776 109.4643 67.1062 0.183 3465 +3467 4 465.8174 108.8693 67.1754 0.183 3466 +3468 4 464.8175 108.3784 67.291 0.183 3467 +3469 4 463.9069 107.6892 67.3837 0.183 3468 +3470 4 463.0397 106.9704 67.4548 0.183 3469 +3471 4 462.3064 106.0974 67.5069 0.183 3470 +3472 4 461.4702 105.3172 67.5427 0.183 3471 +3473 4 460.7449 104.4517 67.5657 0.183 3472 +3474 4 460.2621 103.4173 67.5836 0.183 3473 +3475 4 459.6764 102.4757 67.6074 0.183 3474 +3476 4 458.7062 101.9075 67.6362 0.183 3475 +3477 4 457.6332 101.5168 67.688 0.183 3476 +3478 4 456.5372 101.2324 67.7765 0.183 3477 +3479 4 455.407 101.078 67.8647 0.183 3478 +3480 4 454.3202 100.7654 67.9252 0.183 3479 +3481 4 453.4919 100.0401 67.9582 0.183 3480 +3482 4 452.6396 99.3232 67.9655 0.183 3481 +3483 4 451.6821 98.7016 67.9493 0.183 3482 +3484 4 450.8561 97.9257 67.8866 0.183 3483 +3485 4 449.9672 97.2284 67.7874 0.183 3484 +3486 4 449.0063 96.6098 67.6992 0.183 3485 +3487 4 447.9927 96.0842 67.6357 0.183 3486 +3488 4 446.8979 95.7706 67.5954 0.183 3487 +3489 4 445.85 95.3302 67.5786 0.183 3488 +3490 4 444.7929 94.8939 67.5844 0.183 3489 +3491 4 443.6821 94.6423 67.6066 0.183 3490 +3492 4 442.609 94.2608 67.6371 0.183 3491 +3493 4 441.6938 93.5908 67.6732 0.183 3492 +3494 4 440.8679 92.8213 67.769 0.183 3493 +3495 4 439.8325 92.3748 67.8728 0.183 3494 +3496 4 438.867 91.7658 67.9549 0.183 3495 +3497 4 437.8099 91.3322 68.0145 0.183 3496 +3498 4 436.6659 91.3105 68.0534 0.183 3497 +3499 4 435.3549 91.8837 68.0764 0.1487 3498 +3500 4 434.2933 91.7693 68.0739 0.1487 3499 +3501 4 433.3369 91.1417 68.0697 0.1487 3500 +3502 4 432.3805 90.5141 68.0638 0.1487 3501 +3503 4 431.4379 89.8667 68.0557 0.1487 3502 +3504 4 430.525 89.1773 68.0442 0.1487 3503 +3505 4 429.6246 88.4717 68.028 0.1487 3504 +3506 4 428.7232 87.7663 68.0061 0.1487 3505 +3507 4 427.8331 87.0484 67.9767 0.1487 3506 +3508 4 427.0094 86.261 67.9311 0.1487 3507 +3509 4 426.2636 85.3958 67.863 0.1487 3508 +3510 4 425.5177 84.5304 67.7802 0.1487 3509 +3511 4 424.7077 83.7324 67.6953 0.1487 3510 +3512 4 423.7548 83.1077 67.6248 0.1487 3511 +3513 4 422.74 82.5801 67.5755 0.1487 3512 +3514 4 421.7905 81.9573 67.545 0.1487 3513 +3515 4 420.9485 81.1825 67.5298 0.1487 3514 +3516 4 420.1226 80.3911 67.5245 0.1487 3515 +3517 4 419.1971 79.7568 67.5242 0.1487 3516 +3518 4 418.1068 79.4197 67.5254 0.1487 3517 +3519 4 416.988 79.1831 67.5268 0.1487 3518 +3520 4 415.8566 79.0584 67.529 0.1487 3519 +3521 4 414.724 78.9518 67.5318 0.1487 3520 +3522 4 413.6704 78.5453 67.536 0.1487 3521 +3523 4 412.69 77.957 67.5419 0.1487 3522 +3524 4 411.7084 77.3684 67.55 0.1487 3523 +3525 4 410.7269 76.7802 67.5618 0.1487 3524 +3526 4 409.7465 76.1918 67.5774 0.1487 3525 +3527 4 408.7649 75.6033 67.5982 0.1487 3526 +3528 4 407.7525 75.0767 67.6301 0.1487 3527 +3529 4 406.6966 74.6383 67.6785 0.1487 3528 +3530 4 405.6327 74.2211 67.7404 0.1487 3529 +3531 4 404.5687 73.8038 67.8101 0.1487 3530 +3532 4 403.5037 73.3866 67.8818 0.1487 3531 +3533 4 402.4169 73.0395 67.9462 0.1487 3532 +3534 4 401.2946 72.8267 67.993 0.1487 3533 +3535 4 400.1609 72.6753 68.0184 0.1487 3534 +3536 4 399.0421 72.4504 68.0263 0.1487 3535 +3537 4 397.9484 72.1143 68.0187 0.1487 3536 +3538 4 396.8662 71.7438 67.9988 0.1487 3537 +3539 4 395.7862 71.3688 67.9675 0.1487 3538 +3540 4 394.7143 70.9706 67.9168 0.1487 3539 +3541 4 393.6515 70.5527 67.8426 0.1487 3540 +3542 4 392.5899 70.1345 67.7538 0.1487 3541 +3543 4 391.4882 69.8768 67.6684 0.1487 3542 +3544 4 390.3465 69.8164 67.6021 0.1487 3543 +3545 4 389.2037 69.7861 67.5559 0.1487 3544 +3546 4 388.062 69.7233 67.5273 0.1487 3545 +3547 4 386.9397 69.5258 67.5116 0.1487 3546 +3548 4 385.8346 69.2277 67.5027 0.1487 3547 +3549 4 384.7306 68.9294 67.4946 0.1487 3548 +3550 4 383.6267 68.6297 67.4836 0.1487 3549 +3551 4 382.5227 68.3277 67.4682 0.1487 3550 +3552 4 381.4199 68.0249 67.4475 0.1487 3551 +3553 4 380.3171 67.7221 67.4206 0.1487 3552 +3554 4 379.2234 67.3878 67.3789 0.1487 3553 +3555 4 378.1469 67.0087 67.3131 0.1487 3554 +3556 4 377.075 66.6161 67.228 0.1487 3555 +3557 4 375.9996 66.2294 67.142 0.1487 3556 +3558 4 374.9197 65.8513 67.0748 0.1487 3557 +3559 4 373.8398 65.4757 67.03 0.1487 3558 +3560 4 372.7587 65.1001 67.0071 0.1487 3559 +3561 4 371.6822 64.7146 67.0026 0.1487 3560 +3562 4 370.5828 64.4095 67.0124 0.1487 3561 +3563 4 369.4491 64.3064 67.0331 0.1487 3562 +3564 4 368.3051 64.3064 67.0634 0.1487 3563 +3565 4 367.1611 64.3064 67.1034 0.1487 3564 +3566 4 366.0171 64.3064 67.1552 0.1487 3565 +3567 4 364.8765 64.2946 67.2414 0.1487 3566 +3568 4 363.7508 64.1584 67.3767 0.1487 3567 +3569 4 362.6537 63.8513 67.5256 0.1487 3568 +3570 4 361.7637 63.1926 67.6656 0.1487 3569 +3571 4 361.1425 62.2479 67.8289 0.1487 3570 +3572 4 360.7844 61.1808 68.0252 0.1487 3571 +3573 4 360.5041 60.0845 68.2455 0.1487 3572 +3574 4 360.082 59.0297 68.4401 0.1487 3573 +3575 4 359.5363 58.0254 68.5952 0.1487 3574 +3576 4 359.3281 56.9268 68.721 0.1487 3575 +3577 4 359.311 55.7833 68.8223 0.1487 3576 +3578 4 359.232 54.6432 68.9144 0.1487 3577 +3579 4 358.7161 53.6767 69.0592 0.1487 3578 +3580 4 357.8855 52.9073 69.2093 0.1487 3579 +3581 4 356.9863 52.231 69.4092 0.1487 3580 +3582 4 356.0471 51.5879 69.5912 0.1487 3581 +3583 4 354.9557 51.28 69.7379 0.1487 3582 +3584 4 353.8358 51.0467 69.8561 0.1487 3583 +3585 4 352.7352 50.7385 69.951 0.1487 3584 +3586 4 351.9505 49.9331 70.0445 0.1487 3585 +3587 4 351.6725 48.8542 70.2002 0.1487 3586 +3588 4 350.9906 47.9461 70.3399 0.1487 3587 +3589 4 350.255 47.0995 70.5356 0.1487 3588 +3590 4 349.9496 45.9981 70.6899 0.1487 3589 +3591 4 349.9279 44.8543 70.8977 0.1487 3590 +3592 4 435.3778 90.8382 68.7772 0.1487 3498 +3593 4 434.8493 89.8389 68.9556 0.1487 3592 +3594 4 434.196 88.9188 69.2026 0.1487 3593 +3595 4 433.1905 88.4877 69.5428 0.1487 3594 +3596 4 432.1689 87.9999 69.8832 0.1487 3595 +3597 4 431.3029 87.2668 70.1988 0.1487 3596 +3598 4 430.7526 86.3218 70.4684 0.1487 3597 +3599 4 430.9356 85.2072 70.7529 0.1487 3598 +3600 4 431.2377 84.1061 71.0007 0.1487 3599 +3601 4 431.3326 82.9799 71.213 0.1487 3600 +3602 4 430.907 82.0772 71.4389 0.1487 3601 +3603 4 429.8134 81.9649 71.7696 0.1487 3602 +3604 4 428.7415 81.7665 72.1563 0.1487 3603 +3605 4 427.8423 81.0999 72.5038 0.1487 3604 +3606 4 427.3286 80.1006 72.8179 0.1487 3605 +3607 4 427.1113 79.001 73.1609 0.1487 3606 +3608 4 427.1444 77.9262 73.5314 0.1487 3607 +3609 4 427.5036 76.8417 73.8394 0.1487 3608 +3610 4 427.7027 75.7199 74.1163 0.1487 3609 +3611 4 427.4407 74.7304 74.426 0.1487 3610 +3612 4 426.4557 74.3206 74.8336 0.1487 3611 +3613 4 425.3438 74.3567 75.2867 0.1487 3612 +3614 4 424.4286 73.9707 75.7638 0.1487 3613 +3615 4 424.464 73.0097 76.2706 0.1487 3614 +3616 4 423.4013 73.0207 76.9216 0.1487 3615 +3617 4 422.4151 72.8849 77.6572 0.1487 3616 +3618 4 422.1474 71.9392 78.3684 0.1487 3617 +3619 4 423.0318 71.5494 79.2106 0.1487 3618 +3620 4 423.8188 71.0577 80.136 0.1487 3619 +3621 4 423.812 70.8252 81.0953 0.1487 3620 +3622 4 423.3532 71.8607 81.9258 0.1487 3621 +3623 4 422.8922 72.8961 82.6596 0.1487 3622 +3624 4 422.4266 73.9284 83.3277 0.1487 3623 +3625 4 421.7711 74.5037 83.9681 0.1487 3624 +3626 4 420.7838 74.461 84.644 0.1487 3625 +3627 4 419.8995 75.1283 85.3289 0.1487 3626 +3628 4 419.0815 75.477 86.0947 0.1487 3627 +3629 4 418.5942 74.8913 86.9828 0.1487 3628 +3630 4 418.9111 73.9296 87.8153 0.1487 3629 +3631 4 419.5082 72.9602 88.4755 0.1487 3630 +3632 4 419.3664 71.9336 89.0019 0.1487 3631 +3633 4 418.2624 71.9396 89.4891 0.1487 3632 +3634 4 417.9261 72.1088 89.8335 0.183 3633 +3635 4 416.9171 72.6406 90.1004 0.183 3634 +3636 4 416.0248 73.3172 90.3512 0.183 3635 +3637 4 415.6255 74.3298 90.5783 0.183 3636 +3638 4 414.883 74.9314 90.769 0.183 3637 +3639 4 413.9152 74.499 90.9387 0.183 3638 +3640 4 412.9302 74.7229 91.1554 0.183 3639 +3641 4 411.9647 75.3104 91.4236 0.183 3640 +3642 4 411.1387 76.069 91.7372 0.183 3641 +3643 4 410.7669 77.1079 92.0937 0.183 3642 +3644 4 410.1194 77.2991 92.4602 0.183 3643 +3645 4 409.3632 76.5195 92.7553 0.183 3644 +3646 4 408.2593 76.3049 92.9872 0.183 3645 +3647 4 407.3143 76.7172 93.2011 0.183 3646 +3648 4 406.6405 77.6213 93.4399 0.183 3647 +3649 4 405.7905 78.2912 93.6897 0.183 3648 +3650 4 404.6992 78.2043 93.9095 0.183 3649 +3651 4 403.5769 77.9996 94.1203 0.183 3650 +3652 4 402.4489 77.8343 94.3281 0.183 3651 +3653 4 401.3141 77.7108 94.528 0.183 3652 +3654 4 400.1758 77.7102 94.7206 0.183 3653 +3655 4 399.0352 77.7517 94.9141 0.183 3654 +3656 4 397.8935 77.7157 95.1098 0.183 3655 +3657 4 396.7815 77.4742 95.291 0.183 3656 +3658 4 395.6547 77.4561 95.4845 0.183 3657 +3659 4 394.6194 77.8717 95.7244 0.183 3658 +3660 4 393.6104 78.3703 96.0033 0.183 3659 +3661 4 392.5899 78.8507 96.3012 0.183 3660 +3662 4 391.4722 79.0154 96.551 0.183 3661 +3663 4 390.3317 79.103 96.7439 0.183 3662 +3664 4 389.1957 79.2312 96.8976 0.183 3663 +3665 4 388.0677 79.4102 97.0326 0.183 3664 +3666 4 386.942 79.5991 97.1608 0.183 3665 +3667 4 385.8026 79.6571 97.2815 0.183 3666 +3668 4 384.6677 79.5343 97.3916 0.183 3667 +3669 4 383.534 79.3778 97.4921 0.183 3668 +3670 4 382.4037 79.2147 97.6058 0.183 3669 +3671 4 381.278 79.0457 97.7455 0.183 3670 +3672 4 380.1535 78.8761 97.9059 0.183 3671 +3673 4 379.0278 78.7062 98.0778 0.183 3672 +3674 4 377.9501 78.3391 98.2262 0.183 3673 +3675 4 376.9102 77.8646 98.3332 0.183 3674 +3676 4 375.8749 77.3773 98.4001 0.183 3675 +3677 4 374.8396 76.89 98.434 0.183 3676 +3678 4 373.8054 76.4023 98.4444 0.183 3677 +3679 4 372.7701 75.9148 98.4399 0.183 3678 +3680 4 371.7371 75.4232 98.4292 0.183 3679 +3681 4 370.7315 74.879 98.4144 0.183 3680 +3682 4 369.6744 74.4444 98.3892 0.183 3681 +3683 4 368.5442 74.3285 98.3564 0.183 3682 +3684 4 367.4013 74.2653 98.3175 0.183 3683 +3685 4 366.2642 74.3656 98.2744 0.183 3684 +3686 4 365.1362 74.2314 98.1929 0.183 3685 +3687 4 364.0688 73.8407 97.9062 0.183 3686 +3688 4 418.2384 71.8999 90.1393 0.1144 3633 +3689 4 417.9821 71.4808 93.2408 0.1368 3688 +3690 4 417.7259 71.0616 94.6002 0.1364 3689 +3691 4 417.1218 70.5702 96.1195 0.1356 3690 +3692 4 416.281 70.0296 97.6287 0.1342 3691 +3693 4 415.3155 69.9113 99.0116 0.1313 3692 +3694 4 414.239 70.1672 100.1854 0.1271 3693 +3695 4 413.2986 70.4656 101.1735 0.1144 3694 +3696 4 413.0984 70.9941 103.5331 0.1144 3695 +3697 4 504.9456 153.566 62.6769 0.1144 3280 +3698 4 505.4261 152.5375 62.904 0.161 3697 +3699 4 505.6045 151.4187 62.9916 0.1792 3698 +3700 4 506.1376 150.4452 63.0711 0.2248 3699 +3701 4 506.5884 149.4041 63.1431 0.2515 3700 +3702 4 506.9476 148.3379 63.2702 0.2391 3701 +3703 4 507.5985 147.4181 63.3856 0.2874 3702 +3704 4 508.4863 146.7066 63.4679 0.26 3703 +3705 4 509.0823 145.7525 63.5272 0.3185 3704 +3706 4 509.8042 144.8716 63.5667 0.2408 3705 +3707 4 510.6965 144.16 63.5888 0.1997 3706 +3708 4 511.3016 143.1991 63.5961 0.1951 3707 +3709 4 512.0041 142.2987 63.6014 0.1829 3708 +3710 4 512.8072 141.4842 63.609 0.1771 3709 +3711 4 513.5199 140.5907 63.6194 0.2001 3710 +3712 4 513.8516 139.4994 63.6336 0.1924 3711 +3713 4 514.6719 138.7123 63.6544 0.1943 3712 +3714 4 515.6328 138.0945 63.6843 0.2337 3713 +3715 4 516.5011 137.3498 63.7244 0.246 3714 +3716 4 517.4506 136.7114 63.7742 0.3358 3715 +3717 4 518.4265 136.1188 63.84 0.2911 3716 +3718 4 519.2124 135.3672 63.9996 0.3183 3717 +3719 4 520.3484 135.2494 64.1567 0.2926 3718 +3720 4 521.473 135.1762 64.3006 0.2707 3719 +3721 4 522.379 134.5687 64.3644 0.3339 3720 +3722 4 522.5117 133.7187 64.6582 0.2907 3721 +3723 4 523.3617 133.1868 64.9947 0.3026 3722 +3724 4 524.4062 132.7337 65.3033 0.3355 3723 +3725 4 525.3054 132.0393 65.5634 0.344 3724 +3726 4 526.1359 131.2546 65.7664 0.3861 3725 +3727 4 526.9596 130.4606 65.9151 0.3362 3726 +3728 4 527.7844 129.6667 66.003 0.2926 3727 +3729 4 528.8334 129.28 66.1097 0.318 3728 +3730 4 529.8367 128.7526 66.2435 0.4212 3729 +3731 4 530.0804 127.6578 66.3645 0.4542 3730 +3732 4 530.3378 126.5424 66.4756 0.4841 3731 +3733 4 530.991 125.6089 66.5795 0.4613 3732 +3734 4 531.6637 124.6823 66.6767 0.4562 3733 +3735 4 532.5514 123.9844 66.8242 0.495 3734 +3736 4 533.5719 123.5623 67.058 0.4475 3735 +3737 4 534.1862 122.5544 67.3907 0.3665 3736 +3738 4 534.7925 121.5843 67.4988 0.4113 3737 +3739 4 535.4435 120.644 67.5744 0.4635 3738 +3740 4 536.0395 119.667 67.622 0.3657 3739 +3741 4 536.353 118.5756 67.6567 0.3292 3740 +3742 4 536.2283 117.4545 67.7239 0.3593 3741 +3743 4 536.0258 116.3322 67.8185 0.3977 3742 +3744 4 536.0521 115.1951 67.912 0.439 3743 +3745 4 536.2706 114.0736 67.986 0.3176 3744 +3746 4 537.1629 113.445 68.0392 0.2523 3745 +3747 4 538.2268 113.0272 68.073 0.2708 3746 +3748 4 538.9087 112.13 68.0907 0.3138 3747 +3749 4 539.3045 111.0575 68.0985 0.4663 3748 +3750 4 539.7701 110.0128 68.1058 0.5107 3749 +3751 4 540.2597 108.9786 68.1159 0.4905 3750 +3752 4 541.0479 108.1507 68.1257 0.4935 3751 +3753 4 541.9185 107.4084 68.1321 0.4174 3752 +3754 4 542.7239 106.171 68.2472 0.3297 3753 +3755 4 543.2124 105.1422 68.28 0.2509 3754 +3756 4 543.3428 104.0468 68.166 0.27 3755 +3757 4 542.9069 102.9929 68.0355 0.3037 3756 +3758 4 542.9046 101.8509 67.891 0.3747 3757 +3759 4 543.0259 100.7133 67.732 0.3517 3758 +3760 4 544.3289 99.3851 67.1591 0.2577 3759 +3761 4 544.0532 98.5156 66.9032 0.2182 3760 +3762 4 543.09 98.1005 66.663 0.1781 3761 +3763 4 542.7067 97.0471 66.4149 0.1705 3762 +3764 4 542.6507 95.9299 66.1083 0.1769 3763 +3765 4 542.6987 94.8258 65.7258 0.2027 3764 +3766 4 542.6255 93.7176 65.2994 0.2969 3765 +3767 4 542.0512 92.8706 64.8824 0.2477 3766 +3768 4 541.0033 92.4248 64.4952 0.2127 3767 +3769 4 540.0492 91.8591 64.0934 0.2186 3768 +3770 4 539.6957 90.8963 63.7022 0.2281 3769 +3771 4 539.7998 89.7611 63.3587 0.254 3770 +3772 4 538.8984 89.1637 62.9894 0.3758 3771 +3773 4 538.1033 88.404 62.5932 0.357 3772 +3774 4 538.1662 87.3094 62.2098 0.2517 3773 +3775 4 537.3139 86.7423 61.8892 0.1706 3774 +3776 4 536.822 85.722 61.6025 0.1517 3775 +3777 4 536.1333 84.8184 61.3026 0.1652 3776 +3778 4 535.3085 84.0438 61.0033 0.1836 3777 +3779 4 534.8966 83.2147 60.7082 0.2492 3778 +3780 4 534.7079 82.2966 60.3562 0.2182 3779 +3781 4 533.6977 81.9301 59.8797 0.2154 3780 +3782 4 532.9827 82.4003 59.2256 0.1731 3781 +3783 4 533.1612 83.3279 58.5038 0.1612 3782 +3784 4 534.0329 83.5079 57.7867 0.1586 3783 +3785 4 534.7983 82.6607 57.1648 0.1746 3784 +3786 4 535.4972 81.7796 56.6272 0.2166 3785 +3787 4 535.4675 80.7654 56.1095 0.2349 3786 +3788 4 534.7697 79.9965 55.552 0.2152 3787 +3789 4 534.0741 79.2794 54.9637 0.2103 3788 +3790 4 533.6691 78.2196 54.4888 0.2758 3789 +3791 4 533.1326 77.3139 54.1108 0.2646 3790 +3792 4 532.0595 77.0501 53.79 0.3156 3791 +3793 4 531.3697 76.3839 53.5514 0.2901 3792 +3794 4 531.3846 75.2822 53.3924 0.3691 3793 +3795 4 532.1442 74.5855 53.2314 0.3599 3794 +3796 4 531.8994 73.9157 53.0813 0.2974 3795 +3797 4 530.9579 73.274 52.9673 0.2875 3796 +3798 4 529.8985 72.8577 52.883 0.3268 3797 +3799 4 528.8083 72.5116 52.817 0.3485 3798 +3800 4 527.7238 72.1492 52.7568 0.2948 3799 +3801 4 526.6553 71.7476 52.6865 0.3068 3800 +3802 4 525.5914 71.3326 52.5986 0.3605 3801 +3803 4 524.516 70.9492 52.5081 0.4213 3802 +3804 4 523.4235 70.6116 52.435 0.3783 3803 +3805 4 522.3264 70.2871 52.383 0.3689 3804 +3806 4 521.1961 70.1744 52.3508 0.3534 3805 +3807 4 520.0555 70.2435 52.3345 0.3156 3806 +3808 4 518.9161 70.3487 52.3289 0.2886 3807 +3809 4 517.7733 70.3571 52.3278 0.259 3808 +3810 4 516.6441 70.1974 52.3272 0.3334 3809 +3811 4 515.5184 69.9912 52.3264 0.3014 3810 +3812 4 514.3893 69.8091 52.3253 0.2655 3811 +3813 4 513.2567 69.6441 52.3236 0.2 3812 +3814 4 512.1242 69.4821 52.3214 0.1884 3813 +3815 4 510.9996 69.2779 52.3183 0.2044 3814 +3816 4 509.8934 68.9878 52.3141 0.282 3815 +3817 4 508.8112 68.6194 52.3079 0.307 3816 +3818 4 507.7587 68.1712 52.2995 0.244 3817 +3819 4 506.887 67.452 52.2878 0.2015 3818 +3820 4 506.0415 66.682 52.2707 0.219 3819 +3821 4 504.9982 66.2488 52.2472 0.2406 3820 +3822 4 503.9114 65.8898 52.2175 0.2193 3821 +3823 4 502.812 65.5755 52.1763 0.249 3822 +3824 4 501.6806 65.4856 52.0979 0.197 3823 +3825 4 500.5503 65.3515 51.9949 0.1634 3824 +3826 4 499.5631 64.8035 51.9084 0.1387 3825 +3827 4 498.5907 64.2001 51.8445 0.1397 3826 +3828 4 497.5954 63.6376 51.8011 0.1419 3827 +3829 4 496.5658 63.1396 51.7765 0.1456 3828 +3830 4 495.4515 62.9024 51.7675 0.1533 3829 +3831 4 494.3247 62.7082 51.7664 0.1645 3830 +3832 4 493.3065 62.2035 51.7664 0.2003 3831 +3833 4 492.2735 61.7119 51.7664 0.1931 3832 +3834 4 491.1718 61.4143 51.7664 0.1933 3833 +3835 4 490.061 61.1395 51.7664 0.2431 3834 +3836 4 489.3574 60.2742 51.7664 0.2102 3835 +3837 4 488.7385 59.3122 51.7664 0.1851 3836 +3838 4 488.1231 58.3472 51.7664 0.1917 3837 +3839 4 487.1907 57.702 51.7664 0.1761 3838 +3840 4 486.1462 57.2356 51.7664 0.1674 3839 +3841 4 485.0983 56.7783 51.7664 0.1675 3840 +3842 4 483.9967 56.4717 51.7664 0.2034 3841 +3843 4 482.8835 56.2085 51.7664 0.2105 3842 +3844 4 482.4271 55.1594 51.7664 0.1694 3843 +3845 4 481.9718 54.1101 51.7664 0.1271 3844 +3846 4 481.5153 53.061 51.7664 0.1144 3845 +3847 4 542.5866 99.4322 68.64 0.3432 3759 +3848 4 542.2205 98.3619 68.8534 0.2963 3847 +3849 4 541.9414 97.2558 69.078 0.3361 3848 +3850 4 541.7504 96.1279 69.2826 0.2855 3849 +3851 4 541.5593 94.9999 69.475 0.2239 3850 +3852 4 541.231 93.8014 69.8519 0.1373 3851 +3853 4 540.2311 93.4087 70.1929 0.1373 3852 +3854 4 539.2576 92.9318 70.637 0.1373 3853 +3855 4 539.1947 92.0327 71.0464 0.1373 3854 +3856 4 540.206 91.5122 71.4414 0.1373 3855 +3857 4 540.3352 90.8347 71.9356 0.1373 3856 +3858 4 539.6854 90.0072 72.5007 0.1373 3857 +3859 4 539.1432 89.0128 73.0276 0.1373 3858 +3860 4 538.7279 87.9606 73.5339 0.1373 3859 +3861 4 538.6135 86.8758 74.067 0.1373 3860 +3862 4 539.0963 85.9586 74.6094 0.1373 3861 +3863 4 539.3594 85.0477 75.1265 0.1373 3862 +3864 4 538.4362 84.4104 75.6316 0.1373 3863 +3865 4 537.4443 83.8784 76.1194 0.1373 3864 +3866 4 536.6801 83.0855 76.6326 0.1373 3865 +3867 4 535.9983 82.1899 77.117 0.1373 3866 +3868 4 535.2215 82.0087 77.5519 0.1373 3867 +3869 4 534.4379 82.8234 77.9951 0.1373 3868 +3870 4 533.5948 83.0125 78.5341 0.1373 3869 +3871 4 532.6521 82.6084 79.1622 0.1373 3870 +3872 4 531.5802 82.2676 79.7493 0.1373 3871 +3873 4 530.4922 81.9247 80.269 0.1373 3872 +3874 4 529.3837 81.8071 80.7184 0.1373 3873 +3875 4 528.4445 82.373 81.0984 0.1373 3874 +3876 4 527.5213 82.491 81.5738 0.1373 3875 +3877 4 526.844 81.7944 82.0996 0.1373 3876 +3878 4 526.8932 82.9131 82.6468 0.1373 3877 +3879 4 526.6862 83.9612 83.2098 0.1373 3878 +3880 4 525.6657 84.4335 83.7603 0.1373 3879 +3881 4 524.6819 84.7588 84.2864 0.1373 3880 +3882 4 524.0275 83.8513 84.7809 0.1373 3881 +3883 4 523.2679 83.1877 85.2404 0.1373 3882 +3884 4 522.2131 83.6217 85.6092 0.1373 3883 +3885 4 521.0977 83.7764 85.9468 0.1373 3884 +3886 4 519.988 83.5853 86.301 0.1373 3885 +3887 4 518.9905 83.1828 86.6536 0.1373 3886 +3888 4 518.2457 82.4505 86.9565 0.1373 3887 +3889 4 517.2459 82.8623 87.2998 0.1373 3888 +3890 4 516.246 82.863 87.761 0.1373 3889 +3891 4 515.4166 82.1329 88.1709 0.1373 3890 +3892 4 514.4076 81.6246 88.5408 0.1373 3891 +3893 4 513.3608 81.1731 88.8854 0.1373 3892 +3894 4 512.5257 80.4273 89.2382 0.1373 3893 +3895 4 512.0796 79.4129 89.614 0.1373 3894 +3896 4 511.6609 78.3823 90.0021 0.1373 3895 +3897 4 510.5729 78.2141 90.3272 0.1373 3896 +3898 4 509.4289 78.2151 90.5853 0.1373 3897 +3899 4 508.3044 78.0153 90.8054 0.1373 3898 +3900 4 507.2153 77.6768 91.0034 0.1373 3899 +3901 4 506.1273 77.3382 91.1826 0.1373 3900 +3902 4 505.0394 76.9993 91.3508 0.1373 3901 +3903 4 503.9514 76.6607 91.7168 0.1373 3902 +3904 4 542.6026 94.8369 67.4677 0.1602 3851 +3905 4 543.6906 94.6349 66.9581 0.1602 3904 +3906 4 544.7305 94.2257 66.484 0.1602 3905 +3907 4 545.6491 93.5533 66.1139 0.1602 3906 +3908 4 546.6879 93.3501 65.8361 0.1602 3907 +3909 4 547.7289 93.824 65.6365 0.1602 3908 +3910 4 548.7985 94.1793 65.4926 0.1602 3909 +3911 4 549.938 94.2149 65.3313 0.1602 3910 +3912 4 551.0751 94.1568 65.1325 0.1602 3911 +3913 4 552.1905 93.9993 64.8754 0.1602 3912 +3914 4 553.2739 93.7295 64.5548 0.1602 3913 +3915 4 554.3687 93.6107 64.2135 0.1602 3914 +3916 4 555.436 93.9631 63.9192 0.1602 3915 +3917 4 556.437 94.0997 63.6997 0.1602 3916 +3918 4 557.2001 93.3558 63.5429 0.1602 3917 +3919 4 557.8956 92.9024 63.4189 0.1602 3918 +3920 4 558.9801 93.2476 63.2957 0.1602 3919 +3921 4 560.0235 93.699 63.184 0.1602 3920 +3922 4 561.0817 94.1048 63.0946 0.1602 3921 +3923 4 562.2005 94.0966 63.0218 0.1602 3922 +3924 4 563.2507 93.6833 62.9625 0.1602 3923 +3925 4 564.0206 92.8762 62.9132 0.1602 3924 +3926 4 564.6784 91.9403 62.8678 0.1602 3925 +3927 4 565.6485 91.655 62.7987 0.1602 3926 +3928 4 566.7868 91.7299 62.6965 0.1602 3927 +3929 4 567.9125 91.6057 62.5797 0.1602 3928 +3930 4 568.9421 91.1371 62.4756 0.1602 3929 +3931 4 569.9843 90.6753 62.3823 0.1602 3930 +3932 4 571.094 90.6487 62.2689 0.1602 3931 +3933 4 572.1155 90.2674 62.1485 0.1602 3932 +3934 4 573.0662 89.6438 62.0374 0.1602 3933 +3935 4 573.7595 88.8985 62.1205 0.1602 3934 +3936 4 574.8623 89.0487 62.2115 0.1602 3935 +3937 4 575.7729 88.3746 62.2952 0.1602 3936 +3938 4 576.9078 88.2991 62.3692 0.1602 3937 +3939 4 578.0495 88.3606 62.4249 0.1602 3938 +3940 4 579.1923 88.4222 62.4574 0.1602 3939 +3941 4 543.2192 107.0681 68.32 0.4576 3753 +3942 4 544.3232 106.779 68.411 0.3822 3941 +3943 4 545.434 106.5134 68.5104 0.3581 3942 +3944 4 546.5586 106.3073 68.5966 0.3066 3943 +3945 4 547.6877 106.1192 68.6689 0.358 3944 +3946 4 548.8271 106.0315 68.7319 0.4275 3945 +3947 4 549.9231 106.3184 68.7887 0.3376 3946 +3948 4 550.8463 106.9844 68.8486 0.3178 3947 +3949 4 551.8885 107.4429 68.9315 0.2545 3948 +3950 4 553.0096 107.2598 69.0637 0.2668 3949 +3951 4 554.1433 107.1399 69.2322 0.3462 3950 +3952 4 555.1512 107.6796 69.3944 0.4471 3951 +3953 4 556.1853 108.1533 69.5943 0.402 3952 +3954 4 557.2275 108.5944 69.8382 0.3005 3953 +3955 4 558.2686 109.0359 70.1084 0.1992 3954 +3956 4 558.4779 108.568 70.3326 0.1626 3955 +3957 4 558.8634 107.4928 70.541 0.1605 3956 +3958 4 559.114 106.3847 70.7669 0.1813 3957 +3959 4 560.0589 105.9349 70.985 0.214 3958 +3960 4 561.1812 106.008 71.1833 0.3032 3959 +3961 4 561.7978 105.0995 71.3989 0.3302 3960 +3962 4 561.799 103.9993 71.6828 0.3657 3961 +3963 4 562.4865 103.1726 72.004 0.3868 3962 +3964 4 563.1866 102.6344 72.4116 0.3004 3963 +3965 4 563.0768 101.5194 72.8216 0.2918 3964 +3966 4 563.0196 100.449 73.2614 0.2264 3965 +3967 4 563.3376 99.3506 73.614 0.2313 3966 +3968 4 563.5001 98.2616 73.9194 0.1997 3967 +3969 4 563.3857 97.1663 74.244 0.2246 3968 +3970 4 563.5882 96.0565 74.515 0.2083 3969 +3971 4 563.9634 94.9803 74.6956 0.2524 3970 +3972 4 564.4622 93.9764 74.818 0.2031 3971 +3973 4 565.2161 93.1224 74.9745 0.1746 3972 +3974 4 566.0729 92.3735 75.1708 0.1597 3973 +3975 4 566.9504 91.6445 75.395 0.1766 3974 +3976 4 567.8988 91.1166 75.6927 0.2209 3975 +3977 4 568.8311 91.5537 76.1118 0.2404 3976 +3978 4 569.283 92.5535 76.6304 0.237 3977 +3979 4 570.1101 92.9293 77.2971 0.1941 3978 +3980 4 571.0951 92.6507 78.129 0.178 3979 +3981 4 570.9224 92.8793 79.2806 0.184 3980 +3982 4 571.6454 93.7259 80.316 0.2492 3981 +3983 4 571.8764 94.5278 81.2235 0.2217 3982 +3984 4 570.9898 95.044 82.112 0.2041 3983 +3985 4 570.3126 95.7358 82.9083 0.2396 3984 +3986 4 570.2154 96.8711 83.498 0.2028 3985 +3987 4 570.5117 97.8984 83.9194 0.1743 3986 +3988 4 571.4635 98.1714 84.2806 0.1586 3987 +3989 4 572.5709 97.898 84.6166 0.1783 3988 +3990 4 573.3385 98.2816 84.9685 0.2053 3989 +3991 4 573.5158 99.3843 85.3756 0.3025 3990 +3992 4 573.6027 100.5099 85.8427 0.2548 3991 +3993 4 573.668 101.6336 86.3587 0.2417 3992 +3994 4 573.0582 101.3422 86.9901 0.1955 3993 +3995 4 572.1567 100.9516 87.7288 0.2158 3994 +3996 4 571.5687 101.9049 88.4041 0.1975 3995 +3997 4 572.0137 102.9185 88.9602 0.2056 3996 +3998 4 572.8088 103.7388 89.4267 0.2452 3997 +3999 4 573.6027 103.6814 89.8699 0.3136 3998 +4000 4 573.2081 103.2785 90.4378 0.2359 3999 +4001 4 572.3238 103.833 91.0622 0.1694 4000 +4002 4 571.2861 103.8865 91.7406 0.1271 4001 +4003 4 570.2028 103.6207 92.3658 0.1144 4002 +4004 4 569.0988 103.357 93.4049 0.1144 4003 +4005 4 558.8589 109.1831 70.462 0.3432 3955 +4006 4 559.9651 109.4589 70.7134 0.2744 4005 +4007 4 560.9501 110.0134 70.8232 0.2859 4006 +4008 4 561.5015 110.9948 70.9271 0.2396 4007 +4009 4 562.5208 111.4203 71.0405 0.2524 4008 +4010 4 563.6099 111.7645 71.1609 0.2553 4009 +4011 4 564.699 112.1085 71.2841 0.2469 4010 +4012 4 565.7995 112.419 71.4034 0.2987 4011 +4013 4 566.9286 112.5943 71.5089 0.2964 4012 +4014 4 568.0612 112.7526 71.6069 0.3117 4013 +4015 4 569.1949 112.911 71.7021 0.2453 4014 +4016 4 570.3195 113.1029 71.8292 0.2396 4015 +4017 4 571.4372 113.3116 71.9978 0.2305 4016 +4018 4 572.5537 113.522 72.1991 0.2065 4017 +4019 4 573.6622 113.7784 72.42 0.1969 4018 +4020 4 574.6335 114.3645 72.6337 0.2383 4019 +4021 4 575.5887 114.9903 72.8322 0.2558 4020 +4022 4 576.5302 115.6355 73.008 0.3479 4021 +4023 4 577.3837 116.3951 73.1452 0.3437 4022 +4024 4 578.443 116.8013 73.2556 0.2695 4023 +4025 4 579.5836 116.8596 73.3536 0.2253 4024 +4026 4 580.7276 116.9042 73.4527 0.2623 4025 +4027 4 581.7606 117.3698 73.6036 0.3249 4026 +4028 4 582.8154 117.7954 73.7993 0.3572 4027 +4029 4 583.9399 117.9693 74.0244 0.2508 4028 +4030 4 585.0679 118.1329 74.2778 0.1738 4029 +4031 4 586.1959 118.2965 74.5438 0.1342 4030 +4032 4 587.3239 118.4612 74.8084 0.1313 4031 +4033 4 588.35 118.9417 75.077 0.1271 4032 +4034 4 589.2103 119.6727 75.3525 0.1144 4033 +4035 4 590.0718 120.4037 75.9618 0.1144 4034 +4036 4 535.1243 123.5051 67.8672 0.1144 3736 +4037 4 536.2294 123.3461 68.0509 0.2153 4036 +4038 4 537.291 123.1356 68.406 0.3028 4037 +4039 4 538.3836 123.0578 68.8797 0.3431 4038 +4040 4 539.4646 122.7867 69.3638 0.3238 4039 +4041 4 540.095 122.0602 69.9222 0.2862 4040 +4042 4 540.6292 121.1656 70.5407 0.339 4041 +4043 4 540.7814 120.1486 71.1416 0.4153 4042 +4044 4 540.6681 119.0172 71.6674 0.3181 4043 +4045 4 541.3797 118.1546 72.154 0.2663 4044 +4046 4 541.6154 117.1776 72.77 0.2336 4045 +4047 4 541.4849 116.0931 73.3939 0.2088 4046 +4048 4 541.3179 115.004 74.0074 0.2172 4047 +4049 4 540.6933 114.0557 74.5363 0.1975 4048 +4050 4 540.4634 112.947 74.9689 0.2192 4049 +4051 4 540.707 111.8429 75.3612 0.2047 4050 +4052 4 541.2333 110.8358 75.7179 0.2143 4051 +4053 4 541.4563 109.7607 76.0595 0.2838 4052 +4054 4 541.08 108.7184 76.4915 0.2767 4053 +4055 4 540.6658 107.695 77.0098 0.3512 4054 +4056 4 540.1362 106.7263 77.5944 0.2929 4055 +4057 4 539.7095 105.724 78.1962 0.3371 4056 +4058 4 539.7403 104.6018 78.7786 0.2511 4057 +4059 4 539.9371 103.5563 79.4242 0.2223 4058 +4060 4 540.4519 102.5516 80.0386 0.2198 4059 +4061 4 540.7024 101.5061 80.624 0.3121 4060 +4062 4 540.5045 100.3953 81.2367 0.3551 4061 +4063 4 540.0961 99.386 81.9011 0.3708 4062 +4064 4 539.3434 98.5533 82.6339 0.2526 4063 +4065 4 539.0436 97.7217 83.4943 0.1771 4064 +4066 4 539.5344 96.9038 84.5502 0.1405 4065 +4067 4 539.285 96.4803 85.7878 0.1431 4066 +4068 4 538.4579 96.3622 87.1441 0.1481 4067 +4069 4 537.7155 95.8944 88.5234 0.1572 4068 +4070 4 537.3929 94.8867 89.7607 0.1754 4069 +4071 4 536.7087 94.0441 90.8331 0.2024 4070 +4072 4 535.9686 93.2325 91.7594 0.285 4071 +4073 4 535.09 92.6242 92.5845 0.2796 4072 +4074 4 534.2709 91.9318 93.322 0.353 4073 +4075 4 534.0627 90.8338 93.9117 0.3136 4074 +4076 4 534.5374 89.8146 94.381 0.2924 4075 +4077 4 535.209 88.8974 95.0928 0.2288 4076 +4078 4 457.5474 441.584 43.8889 0.1144 2258 +4079 4 458.474 440.9125 43.9418 0.1877 4078 +4080 4 459.3995 440.2409 43.9631 0.1687 4079 +4081 4 460.2529 439.4802 43.993 0.1534 4080 +4082 4 461.0789 438.6874 44.0339 0.1435 4081 +4083 4 461.9026 437.8935 44.0871 0.1494 4082 +4084 4 462.6759 437.0526 44.1703 0.1571 4083 +4085 4 463.3783 436.1569 44.2985 0.1867 4084 +4086 4 464.0762 435.2577 44.457 0.1669 4085 +4087 4 464.774 434.3585 44.6289 0.15 4086 +4088 4 465.4719 433.4593 44.7989 0.1373 4087 +4089 4 466.1697 432.5601 44.9548 0.1373 4088 +4090 4 466.9293 431.7067 45.0484 0.1373 4089 +4091 4 467.7541 430.9265 45.0388 0.1373 4090 +4092 4 468.5835 430.1532 44.9537 0.1373 4091 +4093 4 469.3317 429.2917 44.8451 0.1373 4092 +4094 4 469.9094 428.3067 44.774 0.1373 4093 +4095 4 470.4792 427.316 44.7423 0.1373 4094 +4096 4 471.05 426.3253 44.7482 0.1373 4095 +4097 4 471.6197 425.3346 44.7821 0.1373 4096 +4098 4 472.0476 424.2741 44.8174 0.1373 4097 +4099 4 472.2157 423.1439 44.8244 0.1373 4098 +4100 4 472.3782 422.0124 44.8028 0.1374 4099 +4101 4 472.5406 420.8799 44.7602 0.1374 4100 +4102 4 472.7031 419.7485 44.7048 0.1376 4101 +4103 4 472.8655 418.6159 44.644 0.1379 4102 +4104 4 473.028 417.4845 44.5844 0.1383 4103 +4105 4 473.1984 416.3531 44.532 0.1391 4104 +4106 4 473.4055 415.2285 44.4959 0.1407 4105 +4107 4 473.6137 414.1028 44.473 0.1435 4106 +4108 4 473.8219 412.9783 44.4598 0.1493 4107 +4109 4 474.0301 411.8537 44.4536 0.157 4108 +4110 4 474.2978 410.7406 44.4517 0.1866 4109 +4111 4 474.9865 409.83 44.4517 0.1667 4110 +4112 4 475.6329 408.885 44.4517 0.1495 4111 +4113 4 475.9429 407.7845 44.4517 0.1364 4112 +4114 4 476.2518 406.6828 44.4517 0.1356 4113 +4115 4 476.4829 405.5629 44.4517 0.1342 4114 +4116 4 476.6865 404.4372 44.4517 0.1313 4115 +4117 4 477.0491 403.3515 44.4517 0.1271 4116 +4118 4 477.4804 402.2922 44.4517 0.1144 4117 +4119 4 477.9117 401.2328 44.4517 0.1144 4118 +4120 4 402.2121 573.9265 34.4201 0.1144 2130 +4121 4 403.3515 573.9013 34.608 0.1374 4120 +4122 4 404.4932 573.8659 34.694 0.1374 4121 +4123 4 405.6338 573.8041 34.7698 0.1376 4122 +4124 4 406.7767 573.7332 34.8278 0.1379 4123 +4125 4 407.9195 573.692 34.8695 0.1383 4124 +4126 4 409.0624 573.7046 34.8972 0.1391 4125 +4127 4 410.2064 573.7332 34.9135 0.1407 4126 +4128 4 411.3504 573.7629 34.9261 0.1436 4127 +4129 4 412.4944 573.7915 34.9423 0.1495 4128 +4130 4 413.6372 573.8201 34.9647 0.1574 4129 +4131 4 414.7812 573.8487 34.9947 0.1874 4130 +4132 4 415.9241 573.8922 35.037 0.1683 4131 +4133 4 417.0635 573.9814 35.1036 0.1524 4132 +4134 4 418.2006 574.0844 35.1935 0.1417 4133 +4135 4 419.3389 574.1873 35.3016 0.1455 4134 +4136 4 420.4646 574.3818 35.4183 0.1531 4135 +4137 4 421.5217 574.8017 35.5289 0.1638 4136 +4138 4 422.5593 575.281 35.6423 0.1999 4137 +4139 4 423.6003 575.7466 35.7745 0.1886 4138 +4140 4 424.6425 576.2088 35.9246 0.2031 4139 +4141 4 425.6847 576.671 36.0844 0.1738 4140 +4142 4 426.7257 577.1343 36.2477 0.1624 4141 +4143 4 427.8434 577.2796 36.386 0.1614 4142 +4144 4 428.9851 577.2407 36.4868 0.1769 4143 +4145 4 430.128 577.1789 36.554 0.2361 4144 +4146 4 431.2697 577.1183 36.5974 0.1967 4145 +4147 4 432.4126 577.0633 36.6274 0.1627 4146 +4148 4 433.5554 577.0084 36.6528 0.1373 4147 +4149 4 434.6983 576.9547 36.6831 0.1373 4148 +4150 4 435.7976 577.2155 36.7284 0.1373 4149 +4151 4 436.8032 577.7497 36.7948 0.1373 4150 +4152 4 437.7894 578.3298 36.8805 0.1373 4151 +4153 4 438.7755 578.9086 36.9832 0.1373 4152 +4154 4 439.7605 579.4875 37.1006 0.1373 4153 +4155 4 440.7466 580.0663 37.231 0.1374 4154 +4156 4 441.7407 580.6269 37.3856 0.1374 4155 +4157 4 442.7383 581.1795 37.5642 0.1376 4156 +4158 4 443.7359 581.7309 37.7622 0.1379 4157 +4159 4 444.7334 582.2811 37.975 0.1383 4158 +4160 4 445.7996 582.6747 38.1973 0.1392 4159 +4161 4 446.6233 581.9585 38.3964 0.1409 4160 +4162 4 447.423 581.1406 38.577 0.1441 4161 +4163 4 448.043 581.9391 38.8069 0.1499 4162 +4164 4 448.5818 582.9321 39.0768 0.1608 4163 +4165 4 449.1195 583.9262 39.3739 0.1795 4164 +4166 4 449.6572 584.9192 39.6819 0.2232 4165 +4167 4 450.196 585.9122 39.9874 0.2599 4166 +4168 4 451.0106 586.7141 40.2189 0.1992 4167 +4169 4 451.8663 587.4726 40.3712 0.1398 4168 +4170 4 452.722 588.2322 40.5129 0.1144 4169 +4171 4 385.6115 616.2831 32.5788 0.1144 1840 +4172 4 386.4215 617.0782 32.762 0.1803 4171 +4173 4 387.5083 617.4088 32.9745 0.2277 4172 +4174 4 388.563 617.8366 33.206 0.2535 4173 +4175 4 389.4611 618.5333 33.4468 0.2585 4174 +4176 4 390.3591 619.2312 33.684 0.2476 4175 +4177 4 391.256 619.9302 33.9052 0.2112 4176 +4178 4 392.066 620.7367 34.0813 0.2217 4177 +4179 4 392.8084 621.6073 34.2012 0.206 4178 +4180 4 393.5509 622.4779 34.2765 0.233 4179 +4181 4 394.2922 623.3484 34.3193 0.2394 4180 +4182 4 395.0346 624.219 34.3412 0.2353 4181 +4183 4 394.9305 624.8242 34.4112 0.1144 4182 +4184 4 394.7372 625.9499 34.7794 0.1812 4183 +4185 4 394.5439 627.0756 34.9314 0.2262 4184 +4186 4 394.3517 628.2013 35.119 0.2658 4185 +4187 4 394.1606 629.3201 35.359 0.2091 4186 +4188 4 393.7385 630.3703 35.6412 0.1624 4187 +4189 4 393.1139 631.313 35.9514 0.1368 4188 +4190 4 392.4892 632.2556 36.2723 0.1364 4189 +4191 4 391.6999 633.0782 36.5672 0.1356 4190 +4192 4 390.8876 633.8801 36.8264 0.1342 4191 +4193 4 390.0754 634.6809 37.0488 0.1313 4192 +4194 4 389.2632 635.4828 37.2383 0.1271 4193 +4195 4 388.4498 636.2836 37.4002 0.1144 4194 +4196 4 387.6375 637.0856 37.6995 0.1144 4195 +4197 4 396.3708 624.3815 34.365 0.191 4182 +4198 4 397.5068 624.5188 34.3818 0.1717 4197 +4199 4 398.6428 624.6572 34.4047 0.1748 4198 +4200 4 399.7777 624.7945 34.433 0.2206 4199 +4201 4 400.8919 625.045 34.4789 0.2249 4200 +4202 4 401.9501 625.4637 34.5562 0.2809 4201 +4203 4 402.9946 625.9213 34.6497 0.266 4202 +4204 4 404.0345 626.3961 34.7253 0.2422 4203 +4205 4 405.0744 626.8742 34.7754 0.1804 4204 +4206 4 406.1131 627.3524 34.8004 0.1515 4205 +4207 4 407.153 627.8306 34.8012 0.1399 4206 +4208 4 408.1918 628.31 34.7799 0.1422 4207 +4209 4 409.2351 628.7779 34.7404 0.1464 4208 +4210 4 410.3013 629.192 34.6769 0.1542 4209 +4211 4 411.371 629.5935 34.5901 0.1689 4210 +4212 4 412.4417 629.9951 34.4837 0.1949 4211 +4213 4 413.5114 630.3966 34.3616 0.2489 4212 +4214 4 414.5845 630.7902 34.2266 0.3207 4213 +4215 4 415.6747 631.1139 34.0642 0.249 4214 +4216 4 416.7695 631.4239 33.8834 0.1945 4215 +4217 4 417.8632 631.7328 33.6966 0.1706 4216 +4218 4 418.9877 631.9193 33.5331 0.2091 4217 +4219 4 420.1294 631.9479 33.4194 0.2214 4218 +4220 4 421.2723 631.9193 33.357 0.1889 4219 +4221 4 422.4151 631.8621 33.3407 0.1669 4220 +4222 4 423.5454 632.0074 33.3626 0.1698 4221 +4223 4 424.6711 632.211 33.413 0.1921 4222 +4224 4 425.7293 632.6297 33.5023 0.2655 4223 +4225 4 426.6582 633.2784 33.6395 0.2457 4224 +4226 4 427.5689 633.959 33.812 0.2799 4225 +4227 4 428.4783 634.6409 34.0046 0.228 4226 +4228 4 429.4553 635.2323 34.167 0.2341 4227 +4229 4 430.4449 635.8043 34.2938 0.2056 4228 +4230 4 431.4241 636.3958 34.391 0.2317 4229 +4231 4 432.3794 637.0272 34.4683 0.2399 4230 +4232 4 433.3289 637.6645 34.5369 0.2211 4231 +4233 4 434.3562 638.1541 34.6354 0.2369 4232 +4234 4 435.4121 638.5808 34.7735 0.2495 4233 +4235 4 436.4692 639.0006 34.939 0.2394 4234 +4236 4 437.5262 639.4194 35.1179 0.2694 4235 +4237 4 438.2675 640.2613 35.2643 0.3169 4236 +4238 4 438.9299 641.1948 35.3713 0.33 4237 +4239 4 439.8955 641.7771 35.443 0.2599 4238 +4240 4 440.9983 642.0746 35.49 0.2461 4239 +4241 4 442.0965 642.3949 35.5233 0.2281 4240 +4242 4 443.1787 642.7644 35.5547 0.272 4241 +4243 4 444.2587 643.1431 35.5933 0.3219 4242 +4244 4 445.2128 643.7666 35.6597 0.339 4243 +4245 4 446.1543 644.4129 35.7498 0.2782 4244 +4246 4 447.0969 645.0581 35.8571 0.2717 4245 +4247 4 448.043 645.6999 35.9752 0.3157 4246 +4248 4 449.0349 646.265 36.0962 0.24 4247 +4249 4 450.0324 646.8245 36.2149 0.1772 4248 +4250 4 451.0289 647.3839 36.3278 0.1407 4249 +4251 4 452.0264 647.9422 36.4353 0.1435 4250 +4252 4 453.0492 648.4524 36.5313 0.1494 4251 +4253 4 454.0994 648.9054 36.6108 0.1571 4252 +4254 4 455.153 649.3527 36.6811 0.1867 4253 +4255 4 456.2055 649.8012 36.7486 0.167 4254 +4256 4 457.1493 650.4418 36.8365 0.1501 4255 +4257 4 457.9867 651.2151 36.9564 0.1374 4256 +4258 4 458.8161 651.9965 37.1006 0.1376 4257 +4259 4 459.6455 652.7778 37.2588 0.1379 4258 +4260 4 460.476 653.5592 37.4212 0.1383 4259 +4261 4 461.3878 654.2479 37.5522 0.1391 4260 +4262 4 462.3213 654.9091 37.6463 0.1407 4261 +4263 4 463.2559 655.5692 37.7104 0.1435 4262 +4264 4 464.1906 656.2293 37.7558 0.1494 4263 +4265 4 465.1241 656.8894 37.7927 0.1571 4264 +4266 4 466.0599 657.5495 37.8319 0.1867 4265 +4267 4 467.181 657.7325 37.8854 0.1669 4266 +4268 4 468.3216 657.8172 37.9607 0.15 4267 +4269 4 469.4312 658.0906 38.0635 0.1373 4268 +4270 4 470.3853 658.7198 38.1982 0.1373 4269 +4271 4 471.328 659.3593 38.4042 0.1373 4270 +4272 4 472.2409 659.9942 38.724 0.1373 4271 +4273 4 473.1527 660.6303 39.1233 0.1373 4272 +4274 4 474.0644 661.264 39.5676 0.1373 4273 +4275 4 474.9774 661.9001 40.0254 0.1373 4274 +4276 4 475.9303 662.503 40.4404 0.1373 4275 +4277 4 476.953 663.0155 40.731 0.1373 4276 +4278 4 477.9746 663.5292 40.9142 0.1373 4277 +4279 4 478.9974 664.0417 41.0164 0.1372 4278 +4280 4 480.0201 664.5553 41.0626 0.1372 4279 +4281 4 481.0428 665.0678 41.0757 0.1371 4280 +4282 4 482.0656 665.5803 41.0757 0.1368 4281 +4283 4 483.0883 666.0929 41.0757 0.1364 4282 +4284 4 484.2312 666.142 41.0757 0.1356 4283 +4285 4 485.374 666.1695 41.0757 0.1342 4284 +4286 4 486.518 666.1981 41.0757 0.1313 4285 +4287 4 487.662 666.2256 41.0757 0.1271 4286 +4288 4 488.8049 666.2542 41.0757 0.1144 4287 +4289 4 489.9489 666.2816 41.0757 0.1144 4288 +4290 4 364.8159 688.4764 28.8204 0.3432 1193 +4291 4 365.9221 688.688 29.4286 0.2347 4290 +4292 4 367.0284 688.8996 29.6999 0.1866 4291 +4293 4 368.122 689.2211 29.9844 0.1796 4292 +4294 4 369.2146 689.5483 30.2708 0.2256 4293 +4295 4 370.2945 689.8984 30.5665 0.2534 4294 +4296 4 371.3607 690.2724 30.8745 0.2404 4295 +4297 4 372.4258 690.6488 31.1791 0.3009 4296 +4298 4 372.8982 691.6716 31.4306 0.2311 4297 +4299 4 373.3444 692.724 31.6414 0.1843 4298 +4300 4 373.7906 693.7765 31.8189 0.1538 4299 +4301 4 374.2356 694.8301 31.971 0.1681 4300 +4302 4 374.6817 695.8826 32.1076 0.1933 4301 +4303 4 375.3521 696.8058 32.2462 0.2461 4302 +4304 4 376.1426 697.6295 32.3988 0.3154 4303 +4305 4 376.9377 698.4486 32.5634 0.2392 4304 +4306 4 377.7248 699.2757 32.739 0.1759 4305 +4307 4 378.497 700.1166 32.9258 0.1383 4306 +4308 4 379.2669 700.9585 33.1215 0.1391 4307 +4309 4 380.0391 701.7994 33.3242 0.1407 4308 +4310 4 380.8101 702.6402 33.5331 0.1435 4309 +4311 4 381.5812 703.4822 33.7478 0.1494 4310 +4312 4 382.1784 704.4523 33.9769 0.1571 4311 +4313 4 382.6028 705.5071 34.2224 0.1867 4312 +4314 4 383.0272 706.5619 34.4798 0.1669 4313 +4315 4 383.4505 707.6178 34.7435 0.15 4314 +4316 4 383.7674 708.7114 35.0048 0.1373 4315 +4317 4 384.0419 709.8177 35.2587 0.1373 4316 +4318 4 384.3176 710.9228 35.5018 0.1372 4317 +4319 4 384.5934 712.0279 35.733 0.1372 4318 +4320 4 384.9995 713.0941 35.9456 0.1371 4319 +4321 4 385.5841 714.0756 36.1306 0.1368 4320 +4322 4 386.1686 715.0572 36.2942 0.1364 4321 +4323 4 386.7532 716.0388 36.4434 0.1356 4322 +4324 4 387.3378 717.0203 36.58 0.1342 4323 +4325 4 387.9235 718.0019 36.7058 0.1313 4324 +4326 4 388.5081 718.9846 36.8217 0.1271 4325 +4327 4 389.0927 719.9661 36.9286 0.1144 4326 +4328 4 389.6773 720.9477 37.137 0.1144 4327 +4329 2 353.4491 710.893 26.5527 0.2288 1 +4330 2 353.083 711.9684 26.4911 0.2516 4329 +4331 2 353.0109 713.1078 26.4426 0.3073 4330 +4332 2 352.7833 714.2278 26.4023 0.3128 4331 +4333 2 352.3188 715.2711 26.3648 0.3401 4332 +4334 2 351.8406 716.311 26.3253 0.3076 4333 +4335 2 351.3636 717.3509 26.2797 0.3083 4334 +4336 2 350.8522 718.3725 26.2066 0.2418 4335 +4337 2 350.3191 719.3804 26.1002 0.2184 4336 +4338 2 349.7849 720.3894 25.9711 0.2633 4337 +4339 2 349.2518 721.3972 25.83 0.2603 4338 +4340 2 348.7175 722.4051 25.6875 0.2161 4339 +4341 2 348.3 723.4679 25.559 0.2067 4340 +4342 2 348.3171 724.6085 25.4736 0.181 4341 +4343 2 348.348 725.7525 25.4262 0.1734 4342 +4344 2 348.3789 726.8965 25.4089 0.1935 4343 +4345 2 347.9819 727.965 25.4246 0.1801 4344 +4346 2 347.4557 728.9797 25.464 0.1716 4345 +4347 2 346.9283 729.9944 25.5136 0.1902 4346 +4348 2 346.3998 731.008 25.5612 0.1733 4347 +4349 2 345.8724 732.0216 25.6004 0.1624 4348 +4350 2 345.4491 733.0844 25.6018 0.1576 4349 +4351 2 345.0762 734.1643 25.5576 0.1878 4350 +4352 2 344.7044 735.2454 25.4775 0.169 4351 +4353 2 344.3314 736.3253 25.3714 0.1538 4352 +4354 2 343.9585 737.4052 25.2479 0.1443 4353 +4355 2 343.5867 738.4852 25.1157 0.15 4354 +4356 2 343.2137 739.5651 24.9816 0.162 4355 +4357 2 342.8408 740.6462 24.8486 0.1778 4356 +4358 2 342.3763 741.6895 24.717 0.238 4357 +4359 2 341.7917 742.6711 24.5879 0.2 4358 +4360 2 341.206 743.6526 24.4608 0.169 4359 +4361 2 340.6203 744.6353 24.3351 0.1494 4360 +4362 2 340.0357 745.6157 24.2105 0.1571 4361 +4363 2 339.45 746.5973 24.0867 0.1867 4362 +4364 2 338.8642 747.5788 23.9635 0.1669 4363 +4365 2 338.2785 748.5615 23.8403 0.15 4364 +4366 2 337.6939 749.5419 23.7177 0.1374 4365 +4367 2 337.1082 750.5235 23.5956 0.1374 4366 +4368 2 336.5225 751.505 23.4746 0.1375 4367 +4369 2 335.9367 752.4866 23.3548 0.1377 4368 +4370 2 335.3522 753.4681 23.2364 0.1381 4369 +4371 2 334.7664 754.4497 23.1204 0.1389 4370 +4372 2 334.1807 755.4312 23.0079 0.1403 4371 +4373 2 333.595 756.4128 22.9004 0.1425 4372 +4374 2 333.0104 757.3944 22.7987 0.1477 4373 +4375 2 332.4247 758.3759 22.7046 0.154 4374 +4376 2 331.8858 759.3849 22.6246 0.1808 4375 +4377 2 331.4671 760.4488 22.57 0.1567 4376 +4378 2 331.0473 761.5139 22.5355 0.1271 4377 +4379 2 330.6274 762.5778 22.5072 0.1144 4378 +4380 3 351.6519 709.9847 28.4707 0.4347 1 +4381 3 350.8717 710.8187 28.6482 0.4347 4380 +4382 3 350.382 711.8494 28.8033 0.4347 4381 +4383 3 350.1612 712.9683 28.9565 0.4347 4382 +4384 3 349.9416 714.0871 29.108 0.4347 4383 +4385 3 348.8651 714.4646 29.2258 0.4347 4384 +4386 3 347.784 714.8387 29.3208 0.4347 4385 +4387 3 346.7167 715.2505 29.4053 0.4347 4386 +4388 3 345.8118 715.9461 29.5061 0.4347 4387 +4389 3 344.9068 716.6428 29.6187 0.4347 4388 +4390 3 344.0019 717.3383 29.7405 0.4347 4389 +4391 3 343.3682 717.7811 29.8606 0.2143 4390 +4392 3 342.4324 718.4354 29.9816 0.1676 4391 +4393 3 341.4977 719.0898 30.0941 0.1673 4392 +4394 3 340.4384 719.0143 30.1703 0.2061 4393 +4395 3 339.3161 718.8049 30.2042 0.2003 4394 +4396 3 338.1836 718.8804 30.1938 0.2251 4395 +4397 3 337.051 719.0292 30.1501 0.2123 4396 +4398 3 335.9173 719.179 30.0852 0.2449 4397 +4399 3 334.7847 719.33 30.0132 0.2611 4398 +4400 3 333.6579 719.5257 29.9603 0.2775 4399 +4401 3 332.5333 719.7339 29.9334 0.2589 4400 +4402 3 331.4088 719.9421 29.9314 0.3481 4401 +4403 3 330.2831 720.1503 29.951 0.2566 4402 +4404 3 329.154 720.3288 29.995 0.1894 4403 +4405 3 328.0168 720.4329 30.0706 0.1397 4404 +4406 3 326.8774 720.5175 30.1717 0.1417 4405 +4407 3 325.7391 720.6033 30.2896 0.1453 4406 +4408 3 324.5997 720.6891 30.4164 0.1528 4407 +4409 3 323.4614 720.7738 30.5446 0.1632 4408 +4410 3 322.322 720.8596 30.6678 0.1988 4409 +4411 3 321.1883 720.998 30.7754 0.1867 4410 +4412 3 320.0775 721.2634 30.8535 0.1995 4411 +4413 3 318.9724 721.5608 30.9047 0.167 4412 +4414 3 317.8673 721.8583 30.9355 0.1501 4413 +4415 3 316.7633 722.1557 30.9526 0.1376 4414 +4416 3 315.6582 722.452 30.9616 0.1379 4415 +4417 3 314.5531 722.7495 30.9683 0.1383 4416 +4418 3 313.4411 723.0194 30.9767 0.1391 4417 +4419 3 312.3177 723.2288 30.9884 0.1407 4418 +4420 3 311.1897 723.4221 31.0047 0.1435 4419 +4421 3 310.0629 723.6166 31.0279 0.1494 4420 +4422 3 308.9349 723.8099 31.0604 0.1571 4421 +4423 3 307.8264 724.0868 31.1049 0.1867 4422 +4424 3 306.8597 724.6771 31.1632 0.1669 4423 +4425 3 305.7901 725.0432 31.2547 0.15 4424 +4426 3 304.6564 725.0844 31.3908 0.1373 4425 +4427 3 303.5169 725.0809 31.5613 0.1373 4426 +4428 3 302.3786 725.0786 31.7534 0.1373 4427 +4429 3 301.2392 725.0752 31.9539 0.1374 4428 +4430 3 300.0998 725.0718 32.1516 0.1374 4429 +4431 3 298.9604 725.0809 32.333 0.1376 4430 +4432 3 297.8255 725.2136 32.4649 0.1379 4431 +4433 3 296.693 725.3692 32.5503 0.1383 4432 +4434 3 295.5593 725.5248 32.6004 0.1393 4433 +4435 3 294.4256 725.6792 32.6253 0.1411 4434 +4436 3 293.2953 725.8543 32.634 0.1441 4435 +4437 3 292.1662 726.0362 32.6348 0.1504 4436 +4438 3 291.037 726.2204 32.6348 0.1591 4437 +4439 3 289.9079 726.4034 32.6346 0.1906 4438 +4440 3 288.8131 726.7329 32.634 0.1739 4439 +4441 3 287.7949 727.2488 32.6337 0.1635 4440 +4442 3 286.7882 727.7911 32.6329 0.1596 4441 +4443 3 285.7792 728.3299 32.632 0.1915 4442 +4444 3 284.7439 728.8172 32.6306 0.1757 4443 +4445 3 283.7051 729.2966 32.6287 0.1668 4444 +4446 3 282.6664 729.7759 32.6259 0.1659 4445 +4447 3 281.6276 730.2552 32.622 0.2028 4446 +4448 3 280.5889 730.7346 32.6169 0.198 4447 +4449 3 279.5398 731.1922 32.6094 0.202 4448 +4450 3 278.4748 731.6086 32.599 0.2605 4449 +4451 3 277.4074 732.0204 32.5842 0.2364 4450 +4452 3 276.3401 732.4311 32.5646 0.262 4451 +4453 3 275.2727 732.8418 32.5388 0.1975 4452 +4454 3 274.2271 733.3063 32.4946 0.1643 4453 +4455 3 273.1883 733.7822 32.4332 0.1403 4454 +4456 3 272.1507 734.2604 32.3604 0.1428 4455 +4457 3 271.112 734.7386 32.2823 0.1473 4456 +4458 3 270.0629 735.1916 32.2059 0.1563 4457 +4459 3 268.9498 735.4444 32.1482 0.1705 4458 +4460 3 267.8276 735.6664 32.1104 0.2089 4459 +4461 3 266.695 735.8197 32.0886 0.2208 4460 +4462 3 265.5544 735.9135 32.0779 0.188 4461 +4463 3 264.4139 736.0004 32.0746 0.1652 4462 +4464 3 263.2733 736.0862 32.0746 0.1666 4463 +4465 3 262.1327 736.1732 32.0754 0.1861 4464 +4466 3 260.991 736.2601 32.0765 0.254 4465 +4467 3 259.8504 736.3459 32.0779 0.227 4466 +4468 3 258.7076 736.3642 32.0802 0.2317 4467 +4469 3 257.5693 736.2544 32.0832 0.2041 4468 +4470 3 256.4333 736.1251 32.0874 0.2143 4469 +4471 3 255.2962 735.997 32.0933 0.279 4470 +4472 3 254.159 735.8677 32.1017 0.2903 4471 +4473 3 253.0185 735.9169 32.1135 0.2672 4472 +4474 3 251.8825 736.0542 32.13 0.3244 4473 +4475 3 250.7488 736.2006 32.1521 0.2881 4474 +4476 3 249.6162 736.3631 32.181 0.2253 4475 +4477 3 248.5363 736.7303 32.2316 0.2002 4476 +4478 3 247.4644 737.1261 32.2997 0.1685 4477 +4479 3 246.3924 737.5219 32.3781 0.1528 4478 +4480 3 245.3205 737.9178 32.4604 0.1425 4479 +4481 3 244.1891 738.0493 32.5282 0.1469 4480 +4482 3 243.0451 738.071 32.5746 0.1556 4481 +4483 3 241.9102 737.9429 32.6015 0.1687 4482 +4484 3 240.8223 737.5951 32.613 0.2082 4483 +4485 3 239.7389 737.2268 32.6136 0.2075 4484 +4486 3 238.6567 736.8573 32.6066 0.2211 4485 +4487 3 237.5733 736.4889 32.5954 0.2892 4486 +4488 3 236.49 736.1194 32.5794 0.3217 4487 +4489 3 235.4077 735.7499 32.5573 0.2654 4488 +4490 3 234.3255 735.3804 32.5259 0.2686 4489 +4491 3 233.2422 735.0108 32.4814 0.2098 4490 +4492 3 232.1599 734.6413 32.4198 0.1869 4491 +4493 3 231.0766 734.2718 32.3383 0.1832 4492 +4494 3 229.9772 733.9607 32.2249 0.218 4493 +4495 3 228.8503 733.9366 32.0351 0.3082 4494 +4496 3 227.7212 733.9389 31.7856 0.3511 4495 +4497 3 226.5921 733.9412 31.4986 0.348 4496 +4498 3 225.4561 733.9469 31.2133 0.285 4497 +4499 3 224.3144 733.9584 30.9663 0.2184 4498 +4500 3 223.1715 733.9698 30.763 0.1931 4499 +4501 3 222.0298 733.9812 30.6026 0.2426 4500 +4502 3 220.8972 734.138 30.485 0.2091 4501 +4503 3 219.7933 734.4343 30.4055 0.1834 4502 +4504 3 218.6916 734.7409 30.3484 0.1884 4503 +4505 3 217.5888 735.0475 30.3024 0.1701 4504 +4506 3 216.4791 735.3243 30.2585 0.1558 4505 +4507 3 215.3408 735.3964 30.1958 0.1481 4506 +4508 3 214.1991 735.4513 30.116 0.1573 4507 +4509 3 213.0586 735.5073 30.0241 0.1753 4508 +4510 3 211.9203 735.4055 29.9342 0.2034 4509 +4511 3 210.8346 735.0509 29.862 0.2802 4510 +4512 3 209.7524 734.6802 29.8066 0.3038 4511 +4513 3 208.6702 734.3107 29.7654 0.2375 4512 +4514 3 207.5536 734.0613 29.7223 0.192 4513 +4515 3 206.4279 733.8657 29.673 0.189 4514 +4516 3 205.3011 733.6724 29.6198 0.245 4515 +4517 3 204.1754 733.479 29.5666 0.2799 4516 +4518 3 203.0394 733.3475 29.5252 0.3358 4517 +4519 3 201.9217 733.5591 29.5403 0.2534 4518 +4520 3 200.8063 733.7879 29.5991 0.2026 4519 +4521 3 199.7184 733.4573 29.65 0.1861 4520 +4522 3 198.6373 733.0821 29.6856 0.2352 4521 +4523 3 197.5562 732.708 29.7041 0.2828 4522 +4524 3 196.4202 732.6039 29.6853 0.2383 4523 +4525 3 195.2797 732.5375 29.6352 0.229 4524 +4526 3 194.1391 732.4723 29.5708 0.1993 4525 +4527 3 193.002 732.3556 29.5179 0.2053 4526 +4528 3 191.8843 732.1154 29.505 0.2627 4527 +4529 3 190.7666 731.8729 29.5271 0.2591 4528 +4530 3 189.65 731.6292 29.5767 0.214 4529 +4531 3 188.5335 731.3855 29.6442 0.2029 4530 +4532 3 187.4158 731.143 29.72 0.1733 4531 +4533 3 186.3267 730.7941 29.7844 0.1624 4532 +4534 3 185.2456 730.4211 29.834 0.1578 4533 +4535 3 184.1634 730.0482 29.8729 0.188 4534 +4536 3 183.1052 729.6146 29.9127 0.1692 4535 +4537 3 182.0733 729.1238 29.9603 0.1542 4536 +4538 3 181.0414 728.6308 30.0126 0.1451 4537 +4539 3 180.0107 728.1377 30.0653 0.1523 4538 +4540 3 178.9788 727.6446 30.1154 0.1626 4539 +4541 3 177.9824 727.0841 30.1501 0.1967 4540 +4542 3 177.0889 726.3817 30.1286 0.1865 4541 +4543 3 176.1989 725.677 30.067 0.1808 4542 +4544 3 175.3077 724.9711 29.983 0.2203 4543 +4545 3 174.1946 724.8441 30.0087 0.1652 4544 +4546 3 173.0769 724.8075 30.3848 0.1144 4545 +4547 3 344.4824 718.7775 29.822 0.2288 4390 +4548 3 344.757 719.8872 29.822 0.1818 4547 +4549 3 344.9091 721.0197 29.822 0.154 4548 +4550 3 345.0315 722.1569 29.822 0.1447 4549 +4551 3 345.1528 723.2951 29.822 0.151 4550 +4552 3 345.2752 724.4323 29.822 0.1631 4551 +4553 3 345.3965 725.5694 29.822 0.1829 4552 +4554 3 345.5189 726.7077 29.822 0.2331 4553 +4555 3 345.6413 727.8448 29.822 0.2606 4554 +4556 3 346.0005 728.9225 29.822 0.2873 4555 +4557 3 346.6274 729.872 29.822 0.2254 4556 +4558 3 347.3047 730.7941 29.822 0.1935 4557 +4559 3 347.9705 731.7241 29.822 0.1896 4558 +4560 3 348.2656 732.8109 29.822 0.2572 4559 +4561 3 348.467 733.9366 29.8222 0.2485 4560 +4562 3 348.6672 735.0635 29.8222 0.1969 4561 +4563 3 348.8674 736.1892 29.8222 0.1582 4562 +4564 3 349.0676 737.316 29.8225 0.1531 4563 +4565 3 349.2678 738.4428 29.8225 0.1639 4564 +4566 3 349.4668 739.5685 29.8228 0.1992 4565 +4567 3 349.6522 740.6977 29.8231 0.1912 4566 +4568 3 349.8341 741.8268 29.8236 0.1896 4567 +4569 3 350.0148 742.9571 29.8242 0.2361 4568 +4570 3 350.1967 744.0862 29.8253 0.1967 4569 +4571 3 350.3775 745.2165 29.8264 0.1627 4570 +4572 3 350.5582 746.3456 29.8284 0.1373 4571 +4573 3 350.7401 747.4747 29.8309 0.1373 4572 +4574 3 350.9209 748.605 29.8346 0.1373 4573 +4575 3 351.1028 749.7341 29.8393 0.1373 4574 +4576 3 351.2732 750.8655 29.8463 0.1373 4575 +4577 3 351.4311 751.9981 29.8561 0.1374 4576 +4578 3 351.5867 753.1318 29.8701 0.1375 4577 +4579 3 351.7422 754.2655 29.8889 0.1376 4578 +4580 3 351.8978 755.3981 29.9121 0.1379 4579 +4581 3 352.4035 756.4059 29.953 0.1384 4580 +4582 3 353.1402 757.2742 30.014 0.1393 4581 +4583 3 353.9067 758.1208 30.0863 0.1411 4582 +4584 3 354.3918 759.1458 30.1512 0.1444 4583 +4585 3 354.394 760.2807 30.1899 0.1503 4584 +4586 3 354.3529 761.4247 30.2019 0.1621 4585 +4587 3 353.9765 762.4932 30.1543 0.1804 4586 +4588 3 353.5887 763.5628 30.06 0.231 4587 +4589 3 353.7385 764.6896 29.9788 0.2447 4588 +4590 3 353.7557 765.8325 29.9177 0.3148 4589 +4591 3 353.5429 766.9559 29.8791 0.3429 4590 +4592 3 353.3198 768.0782 29.8617 0.3173 4591 +4593 3 353.1082 769.2027 29.8648 0.3034 4592 +4594 3 352.9423 770.3341 29.8822 0.2294 4593 +4595 3 352.9663 771.477 29.9062 0.2126 4594 +4596 3 353.3255 772.5626 29.937 0.1678 4595 +4597 3 353.6779 773.6506 29.9768 0.1516 4596 +4598 3 353.9113 774.766 30.0583 0.1401 4597 +4599 3 354.1446 775.8802 30.1689 0.1427 4598 +4600 3 354.616 776.9224 30.2585 0.1471 4599 +4601 3 354.9443 778.0184 30.3274 0.1559 4600 +4602 3 355.1948 779.1338 30.3775 0.1697 4601 +4603 3 355.4442 780.2503 30.4116 0.2075 4602 +4604 3 355.6936 781.3669 30.434 0.2182 4603 +4605 3 355.9888 782.472 30.4545 0.183 4604 +4606 3 356.3274 783.5645 30.4808 0.1563 4605 +4607 3 356.6798 784.6536 30.5141 0.1494 4606 +4608 3 357.3009 785.6111 30.578 0.1572 4607 +4609 3 357.9244 786.5675 30.6628 0.1868 4608 +4610 3 358.5456 787.525 30.7594 0.1673 4609 +4611 3 358.7916 788.6416 30.8353 0.1506 4610 +4612 3 359.0089 789.765 30.8896 0.1383 4611 +4613 3 358.4301 790.8644 30.7434 0.1144 4612 +4614 3 357.8981 791.8745 30.6566 0.1373 4613 +4615 3 357.1762 792.7588 30.5743 0.1373 4614 +4616 3 356.3068 793.5001 30.5158 0.1373 4615 +4617 3 355.4294 794.2334 30.4822 0.1373 4616 +4618 3 354.6835 795.1006 30.4732 0.1373 4617 +4619 3 354.4947 796.2286 30.4895 0.1372 4618 +4620 3 354.306 797.3566 30.5262 0.1372 4619 +4621 3 354.1195 798.4857 30.5794 0.1371 4620 +4622 3 354.0314 799.6251 30.662 0.1368 4621 +4623 3 353.9833 800.7668 30.7776 0.1364 4622 +4624 3 353.9353 801.9085 30.9333 0.1356 4623 +4625 3 353.8872 803.0514 31.117 0.1342 4624 +4626 3 353.8289 804.1908 31.325 0.1313 4625 +4627 3 353.6985 805.3062 31.5966 0.1271 4626 +4628 3 353.5669 806.4205 31.9032 0.1144 4627 +4629 3 353.4365 807.5359 32.6354 0.1144 4628 +4630 3 359.3247 790.1368 30.9243 0.1391 4612 +4631 3 360.0648 791.0074 30.9411 0.1407 4630 +4632 3 360.7673 791.9111 30.947 0.1435 4631 +4633 3 361.3461 792.895 30.9473 0.1494 4632 +4634 3 361.8952 793.8982 30.9473 0.1571 4633 +4635 3 362.6125 794.7837 30.9473 0.1867 4634 +4636 3 363.3722 795.6394 30.9473 0.1669 4635 +4637 3 364.1329 796.494 30.9473 0.15 4636 +4638 3 364.7015 797.479 30.9473 0.1373 4637 +4639 3 365.1454 798.5326 30.9473 0.1373 4638 +4640 3 365.548 799.6034 30.9473 0.1373 4639 +4641 3 365.8844 800.6959 30.9473 0.1373 4640 +4642 3 365.9599 801.8319 30.9473 0.1373 4641 +4643 3 365.8661 802.9702 30.9476 0.1373 4642 +4644 3 365.7494 804.1084 30.9476 0.1373 4643 +4645 3 365.6704 805.2502 30.9476 0.1373 4644 +4646 3 365.7139 806.3919 30.9476 0.1373 4645 +4647 3 365.9164 807.5153 30.9478 0.1373 4646 +4648 3 366.0937 808.6456 30.9481 0.1374 4647 +4649 3 365.9999 809.7804 30.9484 0.1374 4648 +4650 3 365.9267 810.9221 30.9487 0.1376 4649 +4651 3 366.3511 811.9654 30.9495 0.1379 4650 +4652 3 366.8511 812.995 30.9504 0.1383 4651 +4653 3 367.3521 814.0235 30.9515 0.1391 4652 +4654 3 367.7194 815.1046 30.9532 0.1408 4653 +4655 3 367.9756 816.2188 30.9554 0.1437 4654 +4656 3 368.2204 817.3365 30.9588 0.1496 4655 +4657 3 368.4652 818.4542 30.9632 0.1576 4656 +4658 3 368.702 819.573 30.9697 0.1877 4657 +4659 3 368.9251 820.6953 30.9786 0.1689 4658 +4660 3 369.1459 821.8187 30.9912 0.1535 4659 +4661 3 369.3667 822.941 31.0083 0.1438 4660 +4662 3 369.5349 824.0724 31.033 0.1494 4661 +4663 3 369.6596 825.2095 31.0677 0.1602 4662 +4664 3 369.7797 826.3467 31.1158 0.1777 4663 +4665 3 369.8987 827.4849 31.1788 0.2219 4664 +4666 3 370.1526 828.5981 31.2684 0.2462 4665 +4667 3 370.8184 829.5075 31.4166 0.2297 4666 +4668 3 371.5266 830.3941 31.6117 0.2682 4667 +4669 3 372.2313 831.2853 31.8352 0.2328 4668 +4670 3 372.8914 832.2177 32.0309 0.2281 4669 +4671 3 373.1064 833.3296 32.1983 0.267 4670 +4672 3 373.6762 834.3055 32.3764 0.3371 4671 +4673 3 374.2848 835.2664 32.5595 0.3623 4672 +4674 3 374.8934 836.2274 32.7432 0.3454 4673 +4675 3 375.526 837.1769 32.9104 0.2801 4674 +4676 3 376.1998 838.1013 33.0355 0.2089 4675 +4677 3 376.8771 839.0233 33.1198 0.178 4676 +4678 3 377.5543 839.9454 33.1674 0.2021 4677 +4679 3 378.6034 840.3572 33.189 0.1953 4678 +4680 3 379.6879 840.721 33.1948 0.2034 4679 +4681 3 380.5127 841.5001 33.194 0.2326 4680 +4682 3 381.1545 842.4462 33.1923 0.3319 4681 +4683 3 381.8649 843.3419 33.1901 0.4107 4682 +4684 3 382.6016 844.2171 33.1867 0.3822 4683 +4685 3 383.5374 844.8726 33.182 0.3756 4684 +4686 3 384.6151 845.2558 33.1758 0.3688 4685 +4687 3 385.5474 845.9182 33.1666 0.3283 4686 +4688 3 386.4546 846.6161 33.154 0.3899 4687 +4689 3 387.3595 847.315 33.136 0.4125 4688 +4690 3 388.205 848.085 33.1122 0.3268 4689 +4691 3 389.0435 848.8652 33.0814 0.3295 4690 +4692 3 389.8672 849.6568 33.0254 0.2374 4691 +4693 3 390.6909 850.4485 32.9515 0.1935 4692 +4694 3 391.5146 851.2401 32.8678 0.1836 4693 +4695 3 392.3417 852.0283 32.7813 0.161 4694 +4696 3 393.2614 852.709 32.7169 0.1398 4695 +4697 3 394.1801 853.3897 32.6735 0.1144 4696 +4698 3 395.0998 854.0704 32.6354 0.1144 4697 +4699 3 360.1609 711.7213 28.9923 0.1144 1 +4700 3 361.1139 712.3528 29.2191 0.4038 4699 +4701 3 362.0554 713.0014 29.3983 0.4098 4700 +4702 3 362.9248 713.737 29.5714 0.3456 4701 +4703 3 363.7531 714.5138 29.7542 0.3639 4702 +4704 3 364.5642 715.3089 29.9404 0.4168 4703 +4705 3 365.2266 716.2264 30.1084 0.4231 4704 +4706 3 365.6521 717.288 30.2324 0.308 4705 +4707 3 366.0777 718.3496 30.3164 0.2519 4706 +4708 3 366.6234 719.3026 30.3646 0.3001 4707 +4709 3 367.6473 719.8117 30.387 0.3378 4708 +4710 3 368.2639 720.5701 30.3954 0.3141 4709 +4711 3 368.5693 721.5963 30.3996 0.2674 4710 +4712 3 369.3427 722.4394 30.4055 0.3092 4711 +4713 3 370.0531 723.3295 30.4139 0.3348 4712 +4714 3 370.6274 724.3179 30.4254 0.2909 4713 +4715 3 371.0461 725.3715 30.4416 0.3108 4714 +4716 3 371.3218 726.4823 30.4648 0.3132 4715 +4717 3 371.8343 727.4673 30.4965 0.256 4716 +4718 3 372.6214 728.2967 30.5371 0.2209 4717 +4719 3 373.2369 729.2325 30.5998 0.2687 4718 +4720 3 373.5675 730.3216 30.7009 0.2671 4719 +4721 3 374.0262 731.3375 30.8269 0.2441 4720 +4722 3 374.8819 732.0628 30.9509 0.1841 4721 +4723 3 375.8669 732.6439 31.0702 0.1582 4722 +4724 3 376.8393 733.2434 31.1982 0.1524 4723 +4725 3 377.806 733.852 31.3379 0.1663 4724 +4726 3 378.7715 734.4617 31.4863 0.1858 4725 +4727 3 379.5552 735.2568 31.6498 0.2532 4726 +4728 3 380.1855 736.2063 31.8296 0.2257 4727 +4729 3 380.6546 737.2325 32.0141 0.2291 4728 +4730 3 380.912 738.3422 32.1924 0.1995 4729 +4731 3 381.1122 739.4656 32.3593 0.205 4730 +4732 3 381.071 740.5878 32.5016 0.2659 4731 +4733 3 380.785 741.6941 32.6105 0.2464 4732 +4734 3 380.4566 742.79 32.6948 0.2811 4733 +4735 3 379.983 743.8231 32.7673 0.2306 4734 +4736 3 379.3618 744.7829 32.8395 0.2359 4735 +4737 3 378.7109 745.7233 32.9224 0.2239 4736 +4738 3 378.2522 746.754 33.04 0.1935 4737 +4739 3 378.1046 747.874 33.2158 0.1765 4738 +4740 3 378.0588 749.01 33.4477 0.1813 4739 +4741 3 377.9787 750.1437 33.7238 0.2444 4740 +4742 3 377.5829 751.1859 34.0236 0.2123 4741 +4743 3 377.0189 752.1789 34.3367 0.1893 4742 +4744 3 376.4744 753.181 34.6626 0.1992 4743 +4745 3 376.3691 754.2415 35.0526 0.1912 4744 +4746 3 376.4938 755.3306 35.5138 0.1896 4745 +4747 3 376.6197 756.4197 36.0161 0.2361 4746 +4748 3 376.7444 757.5088 36.5296 0.1967 4747 +4749 3 376.9938 758.6036 36.9639 0.1627 4748 +4750 3 377.3347 759.6961 37.2683 0.1373 4749 +4751 3 377.687 760.784 37.4497 0.1373 4750 +4752 3 377.9524 761.8948 37.5267 0.1373 4751 +4753 3 378.1595 763.0194 37.5262 0.1373 4752 +4754 3 378.3597 764.1451 37.4788 0.1373 4753 +4755 3 378.561 765.2708 37.413 0.1373 4754 +4756 3 378.7612 766.3965 37.343 0.1373 4755 +4757 3 378.9614 767.5222 37.2739 0.1373 4756 +4758 3 379.0919 768.657 37.2142 0.1373 4757 +4759 3 379.1399 769.7999 37.1692 0.1373 4758 +4760 3 379.1662 770.9427 37.1372 0.1373 4759 +4761 3 379.1937 772.0867 37.1134 0.1373 4760 +4762 3 379.5815 773.1289 37.0933 0.1373 4761 +4763 3 380.3617 773.9515 37.0728 0.1373 4762 +4764 3 381.214 774.7145 37.0471 0.1373 4763 +4765 3 382.0651 775.4787 37.014 0.1373 4764 +4766 3 382.8979 776.2623 36.9606 0.1373 4765 +4767 3 383.7182 777.0574 36.8838 0.1373 4766 +4768 3 384.5373 777.8536 36.7884 0.1373 4767 +4769 3 385.3564 778.651 36.68 0.1373 4768 +4770 3 386.1755 779.4484 36.5655 0.1373 4769 +4771 3 386.9946 780.2446 36.4498 0.1373 4770 +4772 3 387.8137 781.042 36.3392 0.1373 4771 +4773 3 388.6328 781.8382 36.2359 0.1373 4772 +4774 3 389.4256 782.6607 36.1474 0.1373 4773 +4775 3 390.1738 783.5267 36.083 0.1373 4774 +4776 3 390.9082 784.4042 36.0402 0.1373 4775 +4777 3 391.6427 785.2805 36.0133 0.1373 4776 +4778 3 392.3771 786.1568 35.9971 0.1373 4777 +4779 3 393.139 787.0114 35.9859 0.1373 4778 +4780 3 393.9398 787.8282 35.975 0.1373 4779 +4781 3 394.7509 788.6336 35.9601 0.1373 4780 +4782 3 395.562 789.4401 35.9402 0.1373 4781 +4783 3 396.3731 790.2466 35.9148 0.1373 4782 +4784 3 397.0492 791.1641 35.8714 0.1373 4783 +4785 3 397.6693 792.1239 35.8095 0.1373 4784 +4786 3 398.2859 793.086 35.7356 0.1373 4785 +4787 3 398.9025 794.0481 35.656 0.1373 4786 +4788 3 399.5157 795.0136 35.5813 0.1373 4787 +4789 3 400.1209 795.9838 35.5244 0.1373 4788 +4790 3 400.7238 796.9562 35.4878 0.1373 4789 +4791 3 401.3266 797.9286 35.467 0.1373 4790 +4792 3 401.9295 798.901 35.4578 0.1373 4791 +4793 3 402.5587 799.8562 35.4561 0.1373 4792 +4794 3 403.2463 800.7691 35.4584 0.1373 4793 +4795 3 403.9498 801.6717 35.462 0.1373 4794 +4796 3 404.6545 802.5732 35.4673 0.1373 4795 +4797 3 405.3581 803.4747 35.4746 0.1373 4796 +4798 3 406.096 804.3487 35.485 0.1373 4797 +4799 3 407.0226 805.0031 35.4995 0.1373 4798 +4800 3 408.0053 805.5876 35.5194 0.1373 4799 +4801 3 408.988 806.1722 35.5454 0.1373 4800 +4802 3 409.7705 806.9879 35.588 0.1373 4801 +4803 3 410.4718 807.8917 35.6485 0.1373 4802 +4804 3 411.1673 808.7988 35.7224 0.1373 4803 +4805 3 411.8629 809.706 35.8056 0.1373 4804 +4806 3 412.5573 810.6144 35.894 0.1373 4805 +4807 3 413.3226 811.4621 35.9836 0.1373 4806 +4808 3 414.2538 812.1142 36.0696 0.1373 4807 +4809 3 415.2262 812.7148 36.1508 0.1373 4808 +4810 3 416.1998 813.3142 36.2261 0.1373 4809 +4811 3 417.1745 813.9137 36.295 0.1373 4810 +4812 3 418.1469 814.5143 36.3563 0.1373 4811 +4813 3 419.1204 815.1137 36.4095 0.1374 4812 +4814 3 420.1203 815.6697 36.4479 0.1374 4813 +4815 3 421.1075 816.2463 36.463 0.1376 4814 +4816 3 422.0342 816.9144 36.4526 0.1379 4815 +4817 3 422.9448 817.6054 36.4246 0.1383 4816 +4818 3 423.8543 818.2975 36.3899 0.1392 4817 +4819 3 424.7649 818.9885 36.3583 0.1409 4818 +4820 3 425.6595 819.7012 36.3418 0.144 4819 +4821 3 426.3688 820.5855 36.3796 0.1499 4820 +4822 3 427.0289 821.5144 36.4697 0.1604 4821 +4823 3 427.6878 822.4445 36.596 0.1811 4822 +4824 3 428.3468 823.3746 36.7424 0.2142 4823 +4825 3 429.0103 824.3046 36.8861 0.3012 4824 +4826 3 429.6795 825.2313 36.9972 0.3376 4825 +4827 3 430.3511 826.1568 37.0703 0.3256 4826 +4828 3 431.0226 827.0834 37.1134 0.2307 4827 +4829 3 431.8692 827.843 37.1353 0.1787 4828 +4830 3 432.8244 828.4688 37.1445 0.1678 4829 +4831 3 433.7956 829.074 37.149 0.1893 4830 +4832 3 434.7246 829.7398 37.1538 0.2566 4831 +4833 3 435.5814 830.4971 37.1602 0.2473 4832 +4834 3 436.6842 830.719 37.1697 0.1948 4833 +4835 3 437.7825 831.0348 37.1826 0.1546 4834 +4836 3 438.454 831.942 37.2008 0.1455 4835 +4837 3 438.7 833.0574 37.226 0.1532 4836 +4838 3 438.9196 834.1796 37.2613 0.1642 4837 +4839 3 438.9208 835.3225 37.3122 0.1997 4838 +4840 3 438.9093 836.4665 37.3831 0.1922 4839 +4841 3 438.8613 837.6105 37.4777 0.1915 4840 +4842 3 438.8121 838.7533 37.5967 0.2398 4841 +4843 3 438.6988 839.8699 37.814 0.2033 4842 +4844 3 438.573 840.9761 38.1147 0.1749 4843 +4845 3 438.446 842.0824 38.4667 0.161 4844 +4846 3 438.4632 843.2127 38.8091 0.1759 4845 +4847 3 438.7606 844.3166 39.0628 0.2344 4846 +4848 3 439.0592 845.4217 39.2344 0.1935 4847 +4849 3 439.455 846.4948 39.3316 0.1567 4848 +4850 3 439.8669 847.5621 39.3756 0.1271 4849 +4851 3 440.2776 848.6295 39.3876 0.1144 4850 +4852 3 440.6894 849.6968 39.3876 0.1144 4851 diff --git a/python/example/single_cell_allen_fit.json b/python/example/single_cell_allen_fit.json new file mode 100644 index 0000000000..7666279396 --- /dev/null +++ b/python/example/single_cell_allen_fit.json @@ -0,0 +1,297 @@ +{ + "passive": [ + { + "ra": 100 + } + ], + "fitting": [ + { + "junction_potential": -14.0, + "sweeps": [ + 38 + ] + } + ], + "conditions": [ + { + "celsius": 34, + "erev": [ + { + "ena": 53.0, + "section": "soma", + "ek": -107.0 + }, + { + "ena": 53.0, + "section": "axon", + "ek": -107.0 + }, + { + "ena": 53.0, + "section": "apic", + "ek": -107.0 + }, + { + "ena": 53.0, + "section": "dend", + "ek": -107.0 + } + ], + "v_init": -90 + } + ], + "genome": [ + { + "section": "soma", + "name": "g_pas", + "value": "0.000119174", + "mechanism": "" + }, + { + "section": "soma", + "name": "e_pas", + "value": "-76.4024", + "mechanism": "" + }, + { + "section": "axon", + "name": "g_pas", + "value": "0.00147346", + "mechanism": "" + }, + { + "section": "axon", + "name": "e_pas", + "value": "-64.8595", + "mechanism": "" + }, + { + "section": "apic", + "name": "g_pas", + "value": "0.00041148", + "mechanism": "" + }, + { + "section": "apic", + "name": "e_pas", + "value": "-81.3599", + "mechanism": "" + }, + { + "section": "dend", + "name": "g_pas", + "value": "9.57001e-05", + "mechanism": "" + }, + { + "section": "dend", + "name": "e_pas", + "value": "-88.2554", + "mechanism": "" + }, + { + "section": "soma", + "name": "cm", + "value": "4.21567", + "mechanism": "" + }, + { + "section": "soma", + "name": "Ra", + "value": "133.577", + "mechanism": "" + }, + { + "section": "axon", + "name": "cm", + "value": "9.0228", + "mechanism": "" + }, + { + "section": "axon", + "name": "Ra", + "value": "80.3823", + "mechanism": "" + }, + { + "section": "apic", + "name": "cm", + "value": "8.34542", + "mechanism": "" + }, + { + "section": "apic", + "name": "Ra", + "value": "136.032", + "mechanism": "" + }, + { + "section": "dend", + "name": "cm", + "value": "2.11248", + "mechanism": "" + }, + { + "section": "dend", + "name": "Ra", + "value": "68.355", + "mechanism": "" + }, + { + "section": "axon", + "name": "gbar_NaV", + "value": "0.035766", + "mechanism": "NaV" + }, + { + "section": "axon", + "name": "gbar_K_T", + "value": "7.51307e-05", + "mechanism": "K_T" + }, + { + "section": "axon", + "name": "gbar_Kd", + "value": "0.00700751", + "mechanism": "Kd" + }, + { + "section": "axon", + "name": "gbar_Kv2like", + "value": "0.0675078", + "mechanism": "Kv2like" + }, + { + "section": "axon", + "name": "gbar_Kv3_1", + "value": "0.592911", + "mechanism": "Kv3_1" + }, + { + "section": "axon", + "name": "gbar_SK", + "value": "0.000701147", + "mechanism": "SK" + }, + { + "section": "axon", + "name": "gbar_Ca_HVA", + "value": "2.17253e-06", + "mechanism": "Ca_HVA" + }, + { + "section": "axon", + "name": "gbar_Ca_LVA", + "value": "0.00698184", + "mechanism": "Ca_LVA" + }, + { + "section": "axon", + "name": "gamma_CaDynamics", + "value": "0.0416279", + "mechanism": "CaDynamics" + }, + { + "section": "axon", + "name": "decay_CaDynamics", + "value": "226.076", + "mechanism": "CaDynamics" + }, + { + "section": "soma", + "name": "gbar_NaV", + "value": "0.0499779", + "mechanism": "NaV" + }, + { + "section": "soma", + "name": "gbar_SK", + "value": "0.000733676", + "mechanism": "SK" + }, + { + "section": "soma", + "name": "gbar_Kv3_1", + "value": "0.186718", + "mechanism": "Kv3_1" + }, + { + "section": "soma", + "name": "gbar_Ca_HVA", + "value": "9.96973e-05", + "mechanism": "Ca_HVA" + }, + { + "section": "soma", + "name": "gbar_Ca_LVA", + "value": "0.00344495", + "mechanism": "Ca_LVA" + }, + { + "section": "soma", + "name": "gamma_CaDynamics", + "value": "0.0177038", + "mechanism": "CaDynamics" + }, + { + "section": "soma", + "name": "decay_CaDynamics", + "value": "42.2507", + "mechanism": "CaDynamics" + }, + { + "section": "soma", + "name": "gbar_Ih", + "value": "1.07608e-07", + "mechanism": "Ih" + }, + { + "section": "apic", + "name": "gbar_NaV", + "value": "0.000375636", + "mechanism": "NaV" + }, + { + "section": "apic", + "name": "gbar_Kv3_1", + "value": "0.797015", + "mechanism": "Kv3_1" + }, + { + "section": "apic", + "name": "gbar_Im_v2", + "value": "0.00854163", + "mechanism": "Im_v2" + }, + { + "section": "apic", + "name": "gbar_Ih", + "value": "7.40408e-07", + "mechanism": "Ih" + }, + { + "section": "dend", + "name": "gbar_NaV", + "value": "0.0472215", + "mechanism": "NaV" + }, + { + "section": "dend", + "name": "gbar_Kv3_1", + "value": "0.186859", + "mechanism": "Kv3_1" + }, + { + "section": "dend", + "name": "gbar_Im_v2", + "value": "0.00132163", + "mechanism": "Im_v2" + }, + { + "section": "dend", + "name": "gbar_Ih", + "value": "9.18815e-06", + "mechanism": "Ih" + } + ] +} \ No newline at end of file diff --git a/python/example/single_cell_allen_neuron_ref.csv b/python/example/single_cell_allen_neuron_ref.csv new file mode 100644 index 0000000000..d5918228b9 --- /dev/null +++ b/python/example/single_cell_allen_neuron_ref.csv @@ -0,0 +1,280002 @@ +,t/ms,U/mV +0,0.0,-0.076 +1,0.005,-0.07599806872322823 +2,0.01,-0.0759961258381583 +3,0.015000000000000001,-0.07599416315956893 +4,0.02,-0.07599217924182801 +5,0.024999999999999998,-0.07599017493382494 +6,0.029999999999999995,-0.07598815183116515 +7,0.034999999999999996,-0.07598611169710213 +8,0.04,-0.07598405624217373 +9,0.045000000000000005,-0.07598198704544463 +10,0.05000000000000001,-0.07597990553349503 +11,0.055000000000000014,-0.0759778129828847 +12,0.06000000000000002,-0.07597571053157563 +13,0.06500000000000002,-0.07597359919306224 +14,0.07000000000000002,-0.07597147987054327 +15,0.07500000000000002,-0.07596935337006161 +16,0.08000000000000003,-0.07596722041225311 +17,0.08500000000000003,-0.0759650816426634 +18,0.09000000000000004,-0.07596293764072655 +19,0.09500000000000004,-0.07596078892754829 +20,0.10000000000000005,-0.0759586359726461 +21,0.10500000000000005,-0.07595647919979068 +22,0.11000000000000006,-0.0759543189920784 +23,0.11500000000000006,-0.07595215569634733 +24,0.12000000000000006,-0.0759499896270337 +25,0.12500000000000006,-0.07594782106955057 +26,0.13000000000000006,-0.07594565028325792 +27,0.13500000000000006,-0.07594347750408235 +28,0.14000000000000007,-0.07594130294683535 +29,0.14500000000000007,-0.07593912680727112 +30,0.15000000000000008,-0.07593694926391893 +31,0.15500000000000008,-0.075934770479719 +32,0.1600000000000001,-0.07593259060348694 +33,0.1650000000000001,-0.0759304097712278 +34,0.1700000000000001,-0.0759282281073176 +35,0.1750000000000001,-0.07592604572556795 +36,0.1800000000000001,-0.07592386273018674 +37,0.1850000000000001,-0.07592167921664668 +38,0.1900000000000001,-0.07591949527247131 +39,0.19500000000000012,-0.07591731097794732 +40,0.20000000000000012,-0.07591512640677069 +41,0.20500000000000013,-0.07591294162663322 +42,0.21000000000000013,-0.07591075669975554 +43,0.21500000000000014,-0.07590857168337153 +44,0.22000000000000014,-0.07590638663016899 +45,0.22500000000000014,-0.07590420158869049 +46,0.23000000000000015,-0.07590201660369827 +47,0.23500000000000015,-0.07589983171650647 +48,0.24000000000000016,-0.07589764696528352 +49,0.24500000000000016,-0.07589546238532749 +50,0.25000000000000017,-0.075893278009317 +51,0.25500000000000017,-0.07589109386753948 +52,0.2600000000000002,-0.07588890998809919 +53,0.2650000000000002,-0.07588672639710656 +54,0.2700000000000002,-0.07588454311885065 +55,0.2750000000000002,-0.07588236017595608 +56,0.2800000000000002,-0.07588017758952599 +57,0.2850000000000002,-0.07587799537927202 +58,0.2900000000000002,-0.0758758135636328 +59,0.2950000000000002,-0.07587363215988156 +60,0.3000000000000002,-0.07587145118422431 +61,0.3050000000000002,-0.07586927065188889 +62,0.3100000000000002,-0.07586709057720618 +63,0.3150000000000002,-0.07586491097368388 +64,0.32000000000000023,-0.07586273185407368 +65,0.32500000000000023,-0.07586055323043232 +66,0.33000000000000024,-0.07585837511417717 +67,0.33500000000000024,-0.07585619751613674 +68,0.34000000000000025,-0.07585402044659666 +69,0.34500000000000025,-0.07585184391534147 +70,0.35000000000000026,-0.07584966793169284 +71,0.35500000000000026,-0.07584749250454395 +72,0.36000000000000026,-0.07584531764239126 +73,0.36500000000000027,-0.07584314335336313 +74,0.3700000000000003,-0.07584096964524592 +75,0.3750000000000003,-0.07583879652550793 +76,0.3800000000000003,-0.07583662400132107 +77,0.3850000000000003,-0.07583445207958069 +78,0.3900000000000003,-0.0758322807669237 +79,0.3950000000000003,-0.07583011006974502 +80,0.4000000000000003,-0.07582793999421278 +81,0.4050000000000003,-0.07582577054628212 +82,0.4100000000000003,-0.07582360173170773 +83,0.4150000000000003,-0.07582143355605558 +84,0.4200000000000003,-0.07581926602471352 +85,0.4250000000000003,-0.07581709914290097 +86,0.4300000000000003,-0.07581493291567805 +87,0.43500000000000033,-0.07581276734795368 +88,0.44000000000000034,-0.07581060244449338 +89,0.44500000000000034,-0.07580843820992618 +90,0.45000000000000034,-0.07580627464875123 +91,0.45500000000000035,-0.07580411176534375 +92,0.46000000000000035,-0.07580194956396069 +93,0.46500000000000036,-0.0757997880487459 +94,0.47000000000000036,-0.075797627223735 +95,0.47500000000000037,-0.07579546709285984 +96,0.48000000000000037,-0.07579330765995279 +97,0.4850000000000004,-0.07579114892875062 +98,0.4900000000000004,-0.07578899090289822 +99,0.4950000000000004,-0.07578683358595212 +100,0.5000000000000003,-0.07578467698138364 +101,0.5050000000000002,-0.0757825210925821 +102,0.5100000000000001,-0.07578036592285765 +103,0.515,-0.07577821147544403 +104,0.5199999999999999,-0.07577605775350113 +105,0.5249999999999998,-0.07577390476011756 +106,0.5299999999999997,-0.07577175249831287 +107,0.5349999999999996,-0.0757696009710399 +108,0.5399999999999995,-0.07576745018118673 +109,0.5449999999999994,-0.07576530013157888 +110,0.5499999999999993,-0.07576315082498114 +111,0.5549999999999992,-0.07576100226409942 +112,0.559999999999999,-0.07575885445158254 +113,0.564999999999999,-0.0757567073900239 +114,0.5699999999999988,-0.07575456108196309 +115,0.5749999999999987,-0.07575241552988748 +116,0.5799999999999986,-0.07575027073623368 +117,0.5849999999999985,-0.07574812670338892 +118,0.5899999999999984,-0.07574598343369252 +119,0.5949999999999983,-0.07574384092943716 +120,0.5999999999999982,-0.07574169919287013 +121,0.6049999999999981,-0.07573955822619459 +122,0.609999999999998,-0.07573741803157075 +123,0.6149999999999979,-0.07573527861111692 +124,0.6199999999999978,-0.07573313996691075 +125,0.6249999999999977,-0.07573100210099014 +126,0.6299999999999976,-0.07572886501535431 +127,0.6349999999999975,-0.07572672871196476 +128,0.6399999999999973,-0.07572459319274623 +129,0.6449999999999972,-0.07572245845958761 +130,0.6499999999999971,-0.0757203245143428 +131,0.654999999999997,-0.07571819135883148 +132,0.6599999999999969,-0.07571605899484006 +133,0.6649999999999968,-0.07571392742412235 +134,0.6699999999999967,-0.07571179664840036 +135,0.6749999999999966,-0.07570966666936499 +136,0.6799999999999965,-0.07570753748867678 +137,0.6849999999999964,-0.07570540910796651 +138,0.6899999999999963,-0.07570328152883594 +139,0.6949999999999962,-0.07570115475285835 +140,0.6999999999999961,-0.07569902878157914 +141,0.704999999999996,-0.07569690361651649 +142,0.7099999999999959,-0.07569477925916185 +143,0.7149999999999958,-0.0756926557109805 +144,0.7199999999999956,-0.07569053297341201 +145,0.7249999999999955,-0.07568841104787083 +146,0.7299999999999954,-0.07568628993574672 +147,0.7349999999999953,-0.07568416963840516 +148,0.7399999999999952,-0.07568205015718787 +149,0.7449999999999951,-0.0756799314934132 +150,0.749999999999995,-0.07567781364837656 +151,0.7549999999999949,-0.07567569662335075 +152,0.7599999999999948,-0.07567358041958638 +153,0.7649999999999947,-0.07567146503831229 +154,0.7699999999999946,-0.07566935048073578 +155,0.7749999999999945,-0.07566723674804303 +156,0.7799999999999944,-0.0756651238413994 +157,0.7849999999999943,-0.07566301176194971 +158,0.7899999999999942,-0.07566090051081864 +159,0.794999999999994,-0.07565879008911083 +160,0.7999999999999939,-0.07565668049791138 +161,0.8049999999999938,-0.07565457173828591 +162,0.8099999999999937,-0.07565246381128093 +163,0.8149999999999936,-0.07565035671792411 +164,0.8199999999999935,-0.07564825045922438 +165,0.8249999999999934,-0.07564614503617231 +166,0.8299999999999933,-0.0756440404497402 +167,0.8349999999999932,-0.07564193670088239 +168,0.8399999999999931,-0.07563983379053538 +169,0.844999999999993,-0.07563773171961809 +170,0.8499999999999929,-0.07563563048903202 +171,0.8549999999999928,-0.07563353009966137 +172,0.8599999999999927,-0.07563143055237335 +173,0.8649999999999926,-0.07562933184801823 +174,0.8699999999999924,-0.0756272339874295 +175,0.8749999999999923,-0.07562513697142413 +176,0.8799999999999922,-0.07562304080080261 +177,0.8849999999999921,-0.07562094547634912 +178,0.889999999999992,-0.07561885099883177 +179,0.8949999999999919,-0.07561675736900254 +180,0.8999999999999918,-0.07561466458759764 +181,0.9049999999999917,-0.07561257265533741 +182,0.9099999999999916,-0.07561048157292664 +183,0.9149999999999915,-0.07560839134105457 +184,0.9199999999999914,-0.07560630196039503 +185,0.9249999999999913,-0.07560421343160659 +186,0.9299999999999912,-0.0756021257553326 +187,0.9349999999999911,-0.07560003893220138 +188,0.939999999999991,-0.07559795296282626 +189,0.9449999999999908,-0.0755958678478057 +190,0.9499999999999907,-0.07559378358772341 +191,0.9549999999999906,-0.07559170018314842 +192,0.9599999999999905,-0.07558961763463518 +193,0.9649999999999904,-0.07558753594272365 +194,0.9699999999999903,-0.07558545510793942 +195,0.9749999999999902,-0.07558337513079375 +196,0.9799999999999901,-0.07558129601178368 +197,0.98499999999999,-0.07557921775139215 +198,0.9899999999999899,-0.07557714035008803 +199,0.9949999999999898,-0.07557506380832624 +200,0.9999999999999897,-0.07557298812654778 +201,1.0049999999999897,-0.07557091330517991 +202,1.0099999999999896,-0.07556883934463614 +203,1.0149999999999895,-0.07556676624531629 +204,1.0199999999999894,-0.07556469400760671 +205,1.0249999999999893,-0.07556262263188018 +206,1.0299999999999891,-0.07556055211849616 +207,1.034999999999989,-0.07555848246780068 +208,1.039999999999989,-0.0755564136801266 +209,1.0449999999999888,-0.07555434575579352 +210,1.0499999999999887,-0.07555227869510799 +211,1.0549999999999886,-0.07555021249836351 +212,1.0599999999999885,-0.07554814716584062 +213,1.0649999999999884,-0.07554608269780697 +214,1.0699999999999883,-0.07554401909451741 +215,1.0749999999999882,-0.07554195635621407 +216,1.079999999999988,-0.07553989448312638 +217,1.084999999999988,-0.07553783347547119 +218,1.0899999999999879,-0.07553577333345285 +219,1.0949999999999878,-0.07553371405726327 +220,1.0999999999999877,-0.07553165564708196 +221,1.1049999999999875,-0.07552959810307616 +222,1.1099999999999874,-0.07552754142540084 +223,1.1149999999999873,-0.0755254856141989 +224,1.1199999999999872,-0.07552343066960109 +225,1.1249999999999871,-0.07552137659172617 +226,1.129999999999987,-0.07551932338068099 +227,1.134999999999987,-0.07551727103656053 +228,1.1399999999999868,-0.075515219559448 +229,1.1449999999999867,-0.07551316894941487 +230,1.1499999999999866,-0.07551111920652102 +231,1.1549999999999865,-0.0755090703308147 +232,1.1599999999999864,-0.07550702232233278 +233,1.1649999999999863,-0.07550497518110058 +234,1.1699999999999862,-0.07550292890713219 +235,1.174999999999986,-0.07550088350043041 +236,1.179999999999986,-0.07549883896098683 +237,1.1849999999999858,-0.07549679528878195 +238,1.1899999999999857,-0.07549475248378522 +239,1.1949999999999856,-0.07549271054595515 +240,1.1999999999999855,-0.07549066947523933 +241,1.2049999999999854,-0.07548862927157458 +242,1.2099999999999853,-0.07548658993488697 +243,1.2149999999999852,-0.07548455146509189 +244,1.219999999999985,-0.07548251386209423 +245,1.224999999999985,-0.07548047712578827 +246,1.2299999999999849,-0.07547844125605795 +247,1.2349999999999848,-0.07547640625277682 +248,1.2399999999999847,-0.07547437211580818 +249,1.2449999999999846,-0.07547233884500512 +250,1.2499999999999845,-0.07547030644021063 +251,1.2549999999999844,-0.07546827490125765 +252,1.2599999999999842,-0.07546624422796919 +253,1.2649999999999841,-0.07546421442015833 +254,1.269999999999984,-0.07546218547762838 +255,1.274999999999984,-0.07546015740017294 +256,1.2799999999999838,-0.07545813018757591 +257,1.2849999999999837,-0.07545610383961167 +258,1.2899999999999836,-0.07545407835604512 +259,1.2949999999999835,-0.0754520537366317 +260,1.2999999999999834,-0.07545002998111756 +261,1.3049999999999833,-0.0754480070892396 +262,1.3099999999999832,-0.0754459850607255 +263,1.314999999999983,-0.07544396389529391 +264,1.319999999999983,-0.0754419435926544 +265,1.3249999999999829,-0.07543992415250766 +266,1.3299999999999828,-0.07543790557454548 +267,1.3349999999999826,-0.07543588785845091 +268,1.3399999999999825,-0.07543387100389827 +269,1.3449999999999824,-0.07543185501055327 +270,1.3499999999999823,-0.0754298398780731 +271,1.3549999999999822,-0.07542782560610642 +272,1.3599999999999821,-0.0754258121942936 +273,1.364999999999982,-0.07542379964226663 +274,1.369999999999982,-0.07542178794964934 +275,1.3749999999999818,-0.07541977711605732 +276,1.3799999999999817,-0.07541776714109819 +277,1.3849999999999816,-0.07541575802437152 +278,1.3899999999999815,-0.07541374976546898 +279,1.3949999999999814,-0.07541174236397442 +280,1.3999999999999813,-0.07540973581946395 +281,1.4049999999999812,-0.07540773013150592 +282,1.409999999999981,-0.0754057252996612 +283,1.414999999999981,-0.07540372132348304 +284,1.4199999999999808,-0.0754017182025173 +285,1.4249999999999807,-0.07539971593630244 +286,1.4299999999999806,-0.07539771452436968 +287,1.4349999999999805,-0.07539571396624295 +288,1.4399999999999804,-0.07539371426143912 +289,1.4449999999999803,-0.07539171540946797 +290,1.4499999999999802,-0.07538971740983227 +291,1.45499999999998,-0.07538772026202795 +292,1.45999999999998,-0.07538572396554404 +293,1.4649999999999799,-0.07538372851986286 +294,1.4699999999999798,-0.07538173392446004 +295,1.4749999999999797,-0.0753797401788046 +296,1.4799999999999796,-0.07537774728235903 +297,1.4849999999999794,-0.0753757552345794 +298,1.4899999999999793,-0.07537376403491534 +299,1.4949999999999792,-0.07537177368281021 +300,1.4999999999999791,-0.07536978417770117 +301,1.504999999999979,-0.07536779551901913 +302,1.509999999999979,-0.07536580770618904 +303,1.5149999999999788,-0.07536382073862975 +304,1.5199999999999787,-0.07536183461575419 +305,1.5249999999999786,-0.07535984933696943 +306,1.5299999999999785,-0.07535786490167676 +307,1.5349999999999784,-0.07535588130927173 +308,1.5399999999999783,-0.07535389855914428 +309,1.5449999999999782,-0.07535191665067868 +310,1.549999999999978,-0.07534993558325379 +311,1.554999999999978,-0.07534795535624297 +312,1.5599999999999778,-0.07534597596901428 +313,1.5649999999999777,-0.0753439974209304 +314,1.5699999999999776,-0.07534201971134882 +315,1.5749999999999775,-0.07534004283962191 +316,1.5799999999999774,-0.07533806680509687 +317,1.5849999999999773,-0.07533609160711598 +318,1.5899999999999772,-0.07533411724501646 +319,1.594999999999977,-0.07533214371813073 +320,1.599999999999977,-0.07533017102578633 +321,1.604999999999977,-0.07532819916730608 +322,1.6099999999999768,-0.07532622814200814 +323,1.6149999999999767,-0.07532425794920598 +324,1.6199999999999766,-0.07532228858820861 +325,1.6249999999999765,-0.07532032005832048 +326,1.6299999999999764,-0.07531835235884164 +327,1.6349999999999763,-0.07531638548906779 +328,1.6399999999999761,-0.07531441944829033 +329,1.644999999999976,-0.07531245423579642 +330,1.649999999999976,-0.07531048985086909 +331,1.6549999999999758,-0.07530852629278724 +332,1.6599999999999757,-0.07530656356082573 +333,1.6649999999999756,-0.07530460165425544 +334,1.6699999999999755,-0.07530264057234334 +335,1.6749999999999754,-0.07530068031435255 +336,1.6799999999999753,-0.0752987208795424 +337,1.6849999999999752,-0.07529676226716847 +338,1.689999999999975,-0.0752948044764827 +339,1.694999999999975,-0.07529284750673337 +340,1.6999999999999749,-0.07529089135716523 +341,1.7049999999999748,-0.07528893602701953 +342,1.7099999999999747,-0.0752869815155341 +343,1.7149999999999745,-0.0752850278219434 +344,1.7199999999999744,-0.07528307494547853 +345,1.7249999999999743,-0.07528112288536735 +346,1.7299999999999742,-0.07527917164083452 +347,1.7349999999999741,-0.07527722121110153 +348,1.739999999999974,-0.0752752715953868 +349,1.744999999999974,-0.07527332279290569 +350,1.7499999999999738,-0.07527137480287059 +351,1.7549999999999737,-0.07526942762449099 +352,1.7599999999999736,-0.07526748125697343 +353,1.7649999999999735,-0.0752655356995217 +354,1.7699999999999734,-0.07526359095133678 +355,1.7749999999999733,-0.07526164701161699 +356,1.7799999999999732,-0.07525970387955792 +357,1.784999999999973,-0.07525776155435261 +358,1.789999999999973,-0.07525582003519152 +359,1.7949999999999728,-0.0752538793212626 +360,1.7999999999999727,-0.07525193941175133 +361,1.8049999999999726,-0.07525000030584084 +362,1.8099999999999725,-0.07524806200271185 +363,1.8149999999999724,-0.0752461245015428 +364,1.8199999999999723,-0.0752441878015099 +365,1.8249999999999722,-0.07524225190178713 +366,1.829999999999972,-0.07524031680154629 +367,1.834999999999972,-0.0752383824999571 +368,1.8399999999999719,-0.07523644899618721 +369,1.8449999999999718,-0.07523451628940227 +370,1.8499999999999717,-0.07523258437876594 +371,1.8549999999999716,-0.07523065326343996 +372,1.8599999999999715,-0.07522872294258423 +373,1.8649999999999713,-0.07522679341535678 +374,1.8699999999999712,-0.07522486468091388 +375,1.8749999999999711,-0.07522293673841006 +376,1.879999999999971,-0.07522100958699814 +377,1.884999999999971,-0.07521908322582928 +378,1.8899999999999708,-0.07521715765405308 +379,1.8949999999999707,-0.07521523287081754 +380,1.8999999999999706,-0.07521330887526913 +381,1.9049999999999705,-0.07521138566655286 +382,1.9099999999999704,-0.07520946324381231 +383,1.9149999999999703,-0.07520754160618966 +384,1.9199999999999702,-0.0752056207528257 +385,1.92499999999997,-0.07520370068285998 +386,1.92999999999997,-0.0752017813954307 +387,1.9349999999999699,-0.0751998628896749 +388,1.9399999999999697,-0.07519794516472834 +389,1.9449999999999696,-0.07519602821972572 +390,1.9499999999999695,-0.07519411205380057 +391,1.9549999999999694,-0.07519219666608534 +392,1.9599999999999693,-0.07519028205571147 +393,1.9649999999999692,-0.0751883682218094 +394,1.969999999999969,-0.07518645516350857 +395,1.974999999999969,-0.07518454287993755 +396,1.979999999999969,-0.07518263137022396 +397,1.9849999999999688,-0.07518072063349462 +398,1.9899999999999687,-0.07517881066887551 +399,1.9949999999999686,-0.07517690147549183 +400,1.9999999999999685,-0.07517499305246803 +401,2.0049999999999684,-0.07517308539892785 +402,2.0099999999999683,-0.07517117851399438 +403,2.014999999999968,-0.07516927239679003 +404,2.019999999999968,-0.0751673670464366 +405,2.024999999999968,-0.07516546246205535 +406,2.029999999999968,-0.075163558642767 +407,2.0349999999999677,-0.07516165558769171 +408,2.0399999999999676,-0.0751597532959492 +409,2.0449999999999675,-0.07515785176665875 +410,2.0499999999999674,-0.07515595099893921 +411,2.0549999999999673,-0.07515405099190904 +412,2.059999999999967,-0.0751521517446864 +413,2.064999999999967,-0.07515025325638905 +414,2.069999999999967,-0.07514835552613454 +415,2.074999999999967,-0.07514645855304011 +416,2.0799999999999668,-0.07514456233622278 +417,2.0849999999999667,-0.07514266687479938 +418,2.0899999999999666,-0.07514077216788656 +419,2.0949999999999664,-0.07513887821460083 +420,2.0999999999999663,-0.07513698501405858 +421,2.1049999999999662,-0.07513509256537615 +422,2.109999999999966,-0.07513320086766975 +423,2.114999999999966,-0.07513130992005565 +424,2.119999999999966,-0.07512941972165 +425,2.124999999999966,-0.0751275302715691 +426,2.1299999999999657,-0.07512564156892922 +427,2.1349999999999656,-0.07512375361284672 +428,2.1399999999999655,-0.07512186640243806 +429,2.1449999999999654,-0.07511997993681986 +430,2.1499999999999653,-0.07511809421510886 +431,2.154999999999965,-0.07511620923642197 +432,2.159999999999965,-0.07511432499987632 +433,2.164999999999965,-0.07511244150458928 +434,2.169999999999965,-0.07511055874967844 +435,2.1749999999999647,-0.07510867673426169 +436,2.1799999999999646,-0.07510679545745721 +437,2.1849999999999645,-0.0751049149183835 +438,2.1899999999999644,-0.0751030351161594 +439,2.1949999999999643,-0.07510115604990414 +440,2.199999999999964,-0.0750992777187373 +441,2.204999999999964,-0.07509740012177891 +442,2.209999999999964,-0.07509552325814944 +443,2.214999999999964,-0.07509364712696977 +444,2.219999999999964,-0.07509177172736128 +445,2.2249999999999637,-0.07508989705844586 +446,2.2299999999999636,-0.07508802311934591 +447,2.2349999999999635,-0.07508614990918437 +448,2.2399999999999634,-0.07508427742708475 +449,2.2449999999999632,-0.07508240567217112 +450,2.249999999999963,-0.07508053464356816 +451,2.254999999999963,-0.07507866434040118 +452,2.259999999999963,-0.0750767947617961 +453,2.264999999999963,-0.07507492590687953 +454,2.2699999999999627,-0.07507305777477874 +455,2.2749999999999626,-0.07507119036462169 +456,2.2799999999999625,-0.07506932367553706 +457,2.2849999999999624,-0.07506745770665428 +458,2.2899999999999623,-0.07506559245710351 +459,2.294999999999962,-0.07506372792601566 +460,2.299999999999962,-0.07506186411252244 +461,2.304999999999962,-0.07506000101575638 +462,2.309999999999962,-0.07505813863485081 +463,2.3149999999999618,-0.07505627696893989 +464,2.3199999999999616,-0.07505441601715863 +465,2.3249999999999615,-0.07505255577864295 +466,2.3299999999999614,-0.07505069625252958 +467,2.3349999999999613,-0.07504883743795619 +468,2.3399999999999612,-0.07504697933406139 +469,2.344999999999961,-0.07504512193998467 +470,2.349999999999961,-0.0750432652548665 +471,2.354999999999961,-0.07504140927784829 +472,2.359999999999961,-0.07503955400807243 +473,2.3649999999999607,-0.0750376994446823 +474,2.3699999999999606,-0.07503584558682229 +475,2.3749999999999605,-0.07503399243363781 +476,2.3799999999999604,-0.07503213998427526 +477,2.3849999999999603,-0.07503028823788215 +478,2.38999999999996,-0.07502843719360701 +479,2.39499999999996,-0.07502658685059943 +480,2.39999999999996,-0.07502473720801012 +481,2.40499999999996,-0.07502288826499084 +482,2.4099999999999597,-0.07502104002069451 +483,2.4149999999999596,-0.07501919247427516 +484,2.4199999999999595,-0.07501734562488793 +485,2.4249999999999594,-0.07501549947168915 +486,2.4299999999999593,-0.07501365401383622 +487,2.434999999999959,-0.07501180925048781 +488,2.439999999999959,-0.07500996518080374 +489,2.444999999999959,-0.075008121803945 +490,2.449999999999959,-0.07500627911907382 +491,2.4549999999999588,-0.07500443712535358 +492,2.4599999999999587,-0.07500259582194896 +493,2.4649999999999586,-0.07500075520802585 +494,2.4699999999999585,-0.07499891528275139 +495,2.4749999999999583,-0.07499707604529395 +496,2.4799999999999582,-0.07499523749482319 +497,2.484999999999958,-0.07499339963051006 +498,2.489999999999958,-0.07499156245152677 +499,2.494999999999958,-0.07498972595704687 +500,2.499999999999958,-0.07498789014624513 +501,2.5049999999999577,-0.07498605501829772 +502,2.5099999999999576,-0.07498422057238212 +503,2.5149999999999575,-0.0749823868076771 +504,2.5199999999999574,-0.07498055372336282 +505,2.5249999999999573,-0.07497872131862075 +506,2.529999999999957,-0.07497688959263377 +507,2.534999999999957,-0.07497505854458608 +508,2.539999999999957,-0.07497322817366325 +509,2.544999999999957,-0.0749713984790523 +510,2.5499999999999567,-0.07496956945994158 +511,2.5549999999999566,-0.07496774111552085 +512,2.5599999999999565,-0.0749659134449813 +513,2.5649999999999564,-0.0749640864475155 +514,2.5699999999999563,-0.07496226012231746 +515,2.574999999999956,-0.07496043446858264 +516,2.579999999999956,-0.0749586094855079 +517,2.584999999999956,-0.07495678517229155 +518,2.589999999999956,-0.07495496152813337 +519,2.594999999999956,-0.07495313855223458 +520,2.5999999999999557,-0.07495131624379786 +521,2.6049999999999556,-0.07494949460202738 +522,2.6099999999999555,-0.07494767362612874 +523,2.6149999999999554,-0.07494585331530906 +524,2.6199999999999553,-0.07494403366877697 +525,2.624999999999955,-0.07494221468574251 +526,2.629999999999955,-0.0749403963654173 +527,2.634999999999955,-0.07493857870701441 +528,2.639999999999955,-0.07493676170974847 +529,2.6449999999999547,-0.07493494537283556 +530,2.6499999999999546,-0.07493312969549333 +531,2.6549999999999545,-0.07493131467694096 +532,2.6599999999999544,-0.0749295003163991 +533,2.6649999999999543,-0.07492768661309 +534,2.669999999999954,-0.07492587356623745 +535,2.674999999999954,-0.07492406117506671 +536,2.679999999999954,-0.07492224943880467 +537,2.684999999999954,-0.07492043835667972 +538,2.6899999999999538,-0.07491862792792185 +539,2.6949999999999537,-0.07491681815176257 +540,2.6999999999999535,-0.07491500902743498 +541,2.7049999999999534,-0.07491320055417375 +542,2.7099999999999533,-0.07491139273121511 +543,2.7149999999999532,-0.07490958555779688 +544,2.719999999999953,-0.07490777903315846 +545,2.724999999999953,-0.0749059731565408 +546,2.729999999999953,-0.07490416792718649 +547,2.734999999999953,-0.0749023633443397 +548,2.7399999999999527,-0.07490055940724615 +549,2.7449999999999526,-0.07489875611515322 +550,2.7499999999999525,-0.07489695346730985 +551,2.7549999999999524,-0.07489515146296657 +552,2.7599999999999523,-0.07489335010137556 +553,2.764999999999952,-0.07489154938179059 +554,2.769999999999952,-0.07488974930346702 +555,2.774999999999952,-0.07488794986566186 +556,2.779999999999952,-0.0748861510676337 +557,2.7849999999999517,-0.0748843529086428 +558,2.7899999999999516,-0.07488255538795098 +559,2.7949999999999515,-0.07488075850482172 +560,2.7999999999999514,-0.0748789622585201 +561,2.8049999999999513,-0.07487716664831288 +562,2.809999999999951,-0.07487537167346839 +563,2.814999999999951,-0.07487357733325664 +564,2.819999999999951,-0.07487178362694923 +565,2.824999999999951,-0.0748699905538194 +566,2.8299999999999508,-0.07486819811314208 +567,2.8349999999999507,-0.07486640630419375 +568,2.8399999999999506,-0.0748646151262526 +569,2.8449999999999505,-0.07486282457859846 +570,2.8499999999999504,-0.07486103466051275 +571,2.8549999999999502,-0.07485924537127857 +572,2.85999999999995,-0.07485745671018065 +573,2.86499999999995,-0.07485566867650541 +574,2.86999999999995,-0.07485388126954083 +575,2.87499999999995,-0.07485209448857663 +576,2.8799999999999497,-0.07485030833290411 +577,2.8849999999999496,-0.07484852280181625 +578,2.8899999999999495,-0.07484673789460766 +579,2.8949999999999494,-0.07484495361057464 +580,2.8999999999999493,-0.07484316994901509 +581,2.904999999999949,-0.07484138690922862 +582,2.909999999999949,-0.07483960449051644 +583,2.914999999999949,-0.07483782269218142 +584,2.919999999999949,-0.0748360415135281 +585,2.9249999999999488,-0.07483426095386268 +586,2.9299999999999486,-0.074832481012493 +587,2.9349999999999485,-0.07483070168872855 +588,2.9399999999999484,-0.07482892298188046 +589,2.9449999999999483,-0.07482714489126154 +590,2.949999999999948,-0.07482536741618626 +591,2.954999999999948,-0.0748235905559707 +592,2.959999999999948,-0.07482181430993264 +593,2.964999999999948,-0.07482003867739147 +594,2.969999999999948,-0.07481826365766826 +595,2.9749999999999477,-0.07481648925008576 +596,2.9799999999999476,-0.0748147154539683 +597,2.9849999999999475,-0.0748129422686419 +598,2.9899999999999474,-0.07481116969343424 +599,2.9949999999999473,-0.07480939772767464 +600,2.999999999999947,-0.07480762637069407 +601,3.004999999999947,-0.07480585562182515 +602,3.009999999999947,-0.07480408548040214 +603,3.014999999999947,-0.07480231594576095 +604,3.0199999999999467,-0.07480054701723915 +605,3.0249999999999466,-0.07479877869417595 +606,3.0299999999999465,-0.07479701097591218 +607,3.0349999999999464,-0.07479524386179036 +608,3.0399999999999463,-0.07479347735115459 +609,3.044999999999946,-0.07479171144335069 +610,3.049999999999946,-0.07478994613772603 +611,3.054999999999946,-0.07478818143362972 +612,3.059999999999946,-0.07478641733041243 +613,3.0649999999999458,-0.07478465382742648 +614,3.0699999999999457,-0.07478289092402586 +615,3.0749999999999456,-0.07478112861956618 +616,3.0799999999999454,-0.07477936691340464 +617,3.0849999999999453,-0.07477760580490014 +618,3.0899999999999452,-0.07477584529341319 +619,3.094999999999945,-0.07477408537830588 +620,3.099999999999945,-0.07477232605894196 +621,3.104999999999945,-0.07477056733468683 +622,3.109999999999945,-0.07476880920490749 +623,3.1149999999999447,-0.07476705166897256 +624,3.1199999999999446,-0.07476529472625228 +625,3.1249999999999445,-0.07476353837611852 +626,3.1299999999999444,-0.07476178261794475 +627,3.1349999999999443,-0.07476002745110608 +628,3.139999999999944,-0.0747582728749792 +629,3.144999999999944,-0.07475651888894244 +630,3.149999999999944,-0.07475476549237572 +631,3.154999999999944,-0.0747530126846606 +632,3.1599999999999437,-0.07475126046518021 +633,3.1649999999999436,-0.07474950883331928 +634,3.1699999999999435,-0.07474775778846417 +635,3.1749999999999434,-0.07474600733000283 +636,3.1799999999999433,-0.0747442574573248 +637,3.184999999999943,-0.07474250816982121 +638,3.189999999999943,-0.0747407594668848 +639,3.194999999999943,-0.07473901134790989 +640,3.199999999999943,-0.07473726381229241 +641,3.204999999999943,-0.07473551685942983 +642,3.2099999999999427,-0.07473377048872125 +643,3.2149999999999426,-0.07473202469956731 +644,3.2199999999999425,-0.07473027949137029 +645,3.2249999999999424,-0.07472853486353397 +646,3.2299999999999423,-0.07472679081546375 +647,3.234999999999942,-0.07472504734656663 +648,3.239999999999942,-0.0747233044562511 +649,3.244999999999942,-0.07472156214392729 +650,3.249999999999942,-0.07471982040900686 +651,3.2549999999999417,-0.07471807925090303 +652,3.2599999999999416,-0.0747163386690306 +653,3.2649999999999415,-0.07471459866280593 +654,3.2699999999999414,-0.07471285923164689 +655,3.2749999999999413,-0.07471112037497295 +656,3.279999999999941,-0.07470938209220511 +657,3.284999999999941,-0.0747076443827659 +658,3.289999999999941,-0.07470590724607944 +659,3.294999999999941,-0.07470417068157133 +660,3.2999999999999408,-0.07470243468866876 +661,3.3049999999999407,-0.07470069926680044 +662,3.3099999999999405,-0.0746989644153966 +663,3.3149999999999404,-0.07469723013388903 +664,3.3199999999999403,-0.07469549642171099 +665,3.3249999999999402,-0.07469376327829731 +666,3.32999999999994,-0.07469203070308435 +667,3.33499999999994,-0.07469029869550996 +668,3.33999999999994,-0.0746885672550135 +669,3.34499999999994,-0.07468683638103588 +670,3.3499999999999397,-0.07468510607301948 +671,3.3549999999999396,-0.07468337633040824 +672,3.3599999999999395,-0.07468164715264752 +673,3.3649999999999394,-0.07467991853918429 +674,3.3699999999999393,-0.0746781904894669 +675,3.374999999999939,-0.07467646300294528 +676,3.379999999999939,-0.07467473607907082 +677,3.384999999999939,-0.07467300971729642 +678,3.389999999999939,-0.0746712839170764 +679,3.3949999999999387,-0.07466955867786668 +680,3.3999999999999386,-0.07466783399912455 +681,3.4049999999999385,-0.07466610988030883 +682,3.4099999999999384,-0.07466438632087982 +683,3.4149999999999383,-0.07466266332029924 +684,3.419999999999938,-0.07466094087803031 +685,3.424999999999938,-0.07465921899353772 +686,3.429999999999938,-0.07465749766628763 +687,3.434999999999938,-0.07465577689574764 +688,3.4399999999999378,-0.07465405668138679 +689,3.4449999999999377,-0.0746523370226756 +690,3.4499999999999376,-0.07465061791908602 +691,3.4549999999999375,-0.07464889937009145 +692,3.4599999999999373,-0.07464718137516672 +693,3.4649999999999372,-0.07464546393378815 +694,3.469999999999937,-0.07464374704543343 +695,3.474999999999937,-0.07464203070958171 +696,3.479999999999937,-0.07464031492571356 +697,3.484999999999937,-0.07463859969331098 +698,3.4899999999999367,-0.0746368850118574 +699,3.4949999999999366,-0.07463517088083767 +700,3.4999999999999365,-0.07463345729973803 +701,3.5049999999999364,-0.07463174426804615 +702,3.5099999999999363,-0.07463003178525113 +703,3.514999999999936,-0.07462831985084342 +704,3.519999999999936,-0.07462660846431494 +705,3.524999999999936,-0.07462489762515895 +706,3.529999999999936,-0.07462318733287014 +707,3.5349999999999357,-0.0746214775869446 +708,3.5399999999999356,-0.07461976838687974 +709,3.5449999999999355,-0.07461805973217445 +710,3.5499999999999354,-0.07461635162232892 +711,3.5549999999999353,-0.07461464405684479 +712,3.559999999999935,-0.07461293703522502 +713,3.564999999999935,-0.07461123055697397 +714,3.569999999999935,-0.07460952462159734 +715,3.574999999999935,-0.07460781922860224 +716,3.579999999999935,-0.0746061143774971 +717,3.5849999999999347,-0.07460441006779174 +718,3.5899999999999346,-0.07460270629899729 +719,3.5949999999999345,-0.07460100307062628 +720,3.5999999999999344,-0.07459930038219256 +721,3.6049999999999343,-0.07459759823321134 +722,3.609999999999934,-0.07459589662319915 +723,3.614999999999934,-0.07459419555167388 +724,3.619999999999934,-0.07459249501815472 +725,3.624999999999934,-0.07459079502216223 +726,3.6299999999999337,-0.07458909556321827 +727,3.6349999999999336,-0.07458739664084603 +728,3.6399999999999335,-0.07458569825457004 +729,3.6449999999999334,-0.0745840004039161 +730,3.6499999999999333,-0.07458230308841138 +731,3.654999999999933,-0.07458060630758433 +732,3.659999999999933,-0.07457891006096468 +733,3.664999999999933,-0.07457721434808351 +734,3.669999999999933,-0.07457551916847316 +735,3.6749999999999328,-0.0745738245216673 +736,3.6799999999999327,-0.07457213040720087 +737,3.6849999999999326,-0.07457043682461012 +738,3.6899999999999324,-0.07456874377343253 +739,3.6949999999999323,-0.07456705125320694 +740,3.6999999999999322,-0.07456535926347341 +741,3.704999999999932,-0.0745636678037733 +742,3.709999999999932,-0.07456197687364921 +743,3.714999999999932,-0.07456028647264507 +744,3.719999999999932,-0.074558596600306 +745,3.7249999999999317,-0.07455690725617843 +746,3.7299999999999316,-0.07455521843981006 +747,3.7349999999999315,-0.07455353015074975 +748,3.7399999999999314,-0.07455184238854774 +749,3.7449999999999313,-0.07455015515275543 +750,3.749999999999931,-0.07454846844292547 +751,3.754999999999931,-0.07454678225861178 +752,3.759999999999931,-0.07454509659936949 +753,3.764999999999931,-0.07454341146475499 +754,3.7699999999999307,-0.07454172685432586 +755,3.7749999999999306,-0.07454004276764095 +756,3.7799999999999305,-0.0745383592042603 +757,3.7849999999999304,-0.07453667616374518 +758,3.7899999999999303,-0.07453499364565808 +759,3.79499999999993,-0.07453331164956267 +760,3.79999999999993,-0.0745316301750239 +761,3.80499999999993,-0.07452994922160783 +762,3.80999999999993,-0.07452826878888177 +763,3.81499999999993,-0.07452658887641425 +764,3.8199999999999297,-0.07452490948377496 +765,3.8249999999999296,-0.07452323061053479 +766,3.8299999999999295,-0.0745215522562658 +767,3.8349999999999294,-0.07451987442054128 +768,3.8399999999999292,-0.07451819710293565 +769,3.844999999999929,-0.07451652030302455 +770,3.849999999999929,-0.07451484402038475 +771,3.854999999999929,-0.07451316825459421 +772,3.859999999999929,-0.07451149300523208 +773,3.8649999999999287,-0.07450981827187862 +774,3.8699999999999286,-0.0745081440541153 +775,3.8749999999999285,-0.0745064703515247 +776,3.8799999999999284,-0.0745047971636906 +777,3.8849999999999283,-0.0745031244901979 +778,3.889999999999928,-0.07450145233063266 +779,3.894999999999928,-0.07449978068458206 +780,3.899999999999928,-0.07449810955163444 +781,3.904999999999928,-0.07449643893137928 +782,3.9099999999999278,-0.07449476882340714 +783,3.9149999999999276,-0.07449309922730979 +784,3.9199999999999275,-0.07449143014268006 +785,3.9249999999999274,-0.07448976156911194 +786,3.9299999999999273,-0.0744880935062005 +787,3.9349999999999272,-0.07448642595354195 +788,3.939999999999927,-0.07448475891073364 +789,3.944999999999927,-0.07448309237737395 +790,3.949999999999927,-0.07448142635306244 +791,3.954999999999927,-0.07447976083739975 +792,3.9599999999999267,-0.0744780958299876 +793,3.9649999999999266,-0.07447643133042879 +794,3.9699999999999265,-0.07447476733832727 +795,3.9749999999999264,-0.07447310385328802 +796,3.9799999999999263,-0.07447144087491714 +797,3.984999999999926,-0.07446977840282178 +798,3.989999999999926,-0.0744681164366102 +799,3.994999999999926,-0.07446645497589172 +800,3.999999999999926,-0.0744647940202767 +801,4.004999999999926,-0.07446313356937664 +802,4.009999999999927,-0.07446147362280403 +803,4.014999999999928,-0.07445981418017247 +804,4.0199999999999285,-0.07445815524109661 +805,4.024999999999929,-0.0744564968051921 +806,4.02999999999993,-0.07445483887207573 +807,4.034999999999931,-0.07445318144136526 +808,4.039999999999932,-0.07445152451267954 +809,4.044999999999932,-0.07444986808563844 +810,4.049999999999933,-0.07444821215986287 +811,4.054999999999934,-0.07444655673497479 +812,4.059999999999935,-0.07444490181059718 +813,4.0649999999999356,-0.07444324738635404 +814,4.069999999999936,-0.07444159346187039 +815,4.074999999999937,-0.0744399400367723 +816,4.079999999999938,-0.07443828711068683 +817,4.084999999999939,-0.07443663468324208 +818,4.0899999999999395,-0.07443498275406712 +819,4.09499999999994,-0.07443333132279208 +820,4.099999999999941,-0.07443168038904804 +821,4.104999999999942,-0.07443002995246714 +822,4.109999999999943,-0.07442838001268247 +823,4.114999999999943,-0.07442673056932815 +824,4.119999999999944,-0.07442508162203926 +825,4.124999999999945,-0.0744234331704519 +826,4.129999999999946,-0.07442178521420313 +827,4.1349999999999465,-0.07442013775293099 +828,4.139999999999947,-0.07441849078627455 +829,4.144999999999948,-0.07441684431387378 +830,4.149999999999949,-0.07441519833536968 +831,4.15499999999995,-0.0744135528504042 +832,4.15999999999995,-0.07441190785862026 +833,4.164999999999951,-0.07441026335966172 +834,4.169999999999952,-0.07440861935317344 +835,4.174999999999953,-0.07440697583880122 +836,4.1799999999999535,-0.07440533281619179 +837,4.184999999999954,-0.07440369028499288 +838,4.189999999999955,-0.07440204824485312 +839,4.194999999999956,-0.07440040669542211 +840,4.199999999999957,-0.07439876563635038 +841,4.204999999999957,-0.0743971250672894 +842,4.209999999999958,-0.07439548498789161 +843,4.214999999999959,-0.07439384539781033 +844,4.21999999999996,-0.0743922062966998 +845,4.224999999999961,-0.07439056768421529 +846,4.229999999999961,-0.07438892956001286 +847,4.234999999999962,-0.07438729192374956 +848,4.239999999999963,-0.07438565477508335 +849,4.244999999999964,-0.07438401811367311 +850,4.2499999999999645,-0.07438238193917861 +851,4.254999999999965,-0.07438074625126054 +852,4.259999999999966,-0.07437911104958049 +853,4.264999999999967,-0.07437747633380096 +854,4.269999999999968,-0.07437584210358533 +855,4.274999999999968,-0.07437420835859791 +856,4.279999999999969,-0.07437257509850387 +857,4.28499999999997,-0.07437094232296929 +858,4.289999999999971,-0.0743693100316611 +859,4.2949999999999715,-0.07436767822424717 +860,4.299999999999972,-0.07436604690039622 +861,4.304999999999973,-0.07436441605977784 +862,4.309999999999974,-0.0743627857020625 +863,4.314999999999975,-0.07436115582692157 +864,4.319999999999975,-0.07435952643402724 +865,4.324999999999976,-0.07435789752305261 +866,4.329999999999977,-0.0743562690936716 +867,4.334999999999978,-0.07435464114555904 +868,4.3399999999999785,-0.07435301367839058 +869,4.344999999999979,-0.07435138669184273 +870,4.34999999999998,-0.07434976018559286 +871,4.354999999999981,-0.0743481341593192 +872,4.359999999999982,-0.0743465086127008 +873,4.3649999999999824,-0.07434488354541757 +874,4.369999999999983,-0.07434325895715027 +875,4.374999999999984,-0.07434163484758045 +876,4.379999999999985,-0.07434001121639056 +877,4.384999999999986,-0.0743383880632638 +878,4.389999999999986,-0.07433676538788428 +879,4.394999999999987,-0.0743351431899369 +880,4.399999999999988,-0.07433352146910738 +881,4.404999999999989,-0.07433190022508226 +882,4.4099999999999895,-0.07433027945754891 +883,4.41499999999999,-0.07432865916619551 +884,4.419999999999991,-0.07432703935071104 +885,4.424999999999992,-0.07432542001078528 +886,4.429999999999993,-0.07432380114610887 +887,4.434999999999993,-0.0743221827563732 +888,4.439999999999994,-0.07432056484127048 +889,4.444999999999995,-0.07431894740049369 +890,4.449999999999996,-0.07431733043373666 +891,4.4549999999999965,-0.07431571394069397 +892,4.459999999999997,-0.074314097921061 +893,4.464999999999998,-0.07431248237453394 +894,4.469999999999999,-0.07431086730080974 +895,4.475,-0.07430925269958612 +896,4.48,-0.07430763857056158 +897,4.485000000000001,-0.07430602491343544 +898,4.490000000000002,-0.07430441172790775 +899,4.495000000000003,-0.07430279901367935 +900,4.5000000000000036,-0.07430118677045183 +901,4.505000000000004,-0.0742995749979276 +902,4.510000000000005,-0.07429796369580974 +903,4.515000000000006,-0.07429635286380216 +904,4.520000000000007,-0.07429474250160951 +905,4.5250000000000075,-0.0742931326089372 +906,4.530000000000008,-0.07429152318549137 +907,4.535000000000009,-0.07428991423097894 +908,4.54000000000001,-0.07428830574510756 +909,4.545000000000011,-0.0742866977275856 +910,4.550000000000011,-0.07428509017812225 +911,4.555000000000012,-0.07428348309642735 +912,4.560000000000013,-0.07428187648221153 +913,4.565000000000014,-0.07428027033518614 +914,4.5700000000000145,-0.07427866465506325 +915,4.575000000000015,-0.07427705944155567 +916,4.580000000000016,-0.07427545469437696 +917,4.585000000000017,-0.07427385041324136 +918,4.590000000000018,-0.07427224659786386 +919,4.595000000000018,-0.07427064324796015 +920,4.600000000000019,-0.07426904036324666 +921,4.60500000000002,-0.0742674379434405 +922,4.610000000000021,-0.07426583598825953 +923,4.6150000000000215,-0.0742642344974223 +924,4.620000000000022,-0.07426263347064806 +925,4.625000000000023,-0.07426103290765679 +926,4.630000000000024,-0.07425943280816913 +927,4.635000000000025,-0.07425783317190646 +928,4.640000000000025,-0.07425623399859081 +929,4.645000000000026,-0.07425463528794499 +930,4.650000000000027,-0.07425303703969237 +931,4.655000000000028,-0.07425143925355715 +932,4.660000000000029,-0.07424984192926412 +933,4.665000000000029,-0.07424824506653879 +934,4.67000000000003,-0.07424664866510733 +935,4.675000000000031,-0.07424505272469663 +936,4.680000000000032,-0.07424345724503421 +937,4.6850000000000325,-0.0742418622258483 +938,4.690000000000033,-0.07424026766686782 +939,4.695000000000034,-0.0742386735678223 +940,4.700000000000035,-0.07423707992844196 +941,4.705000000000036,-0.0742354867484577 +942,4.710000000000036,-0.0742338940276011 +943,4.715000000000037,-0.07423230176560434 +944,4.720000000000038,-0.07423070996220035 +945,4.725000000000039,-0.07422911861712263 +946,4.7300000000000395,-0.07422752773010534 +947,4.73500000000004,-0.07422593730088335 +948,4.740000000000041,-0.07422434732919214 +949,4.745000000000042,-0.07422275781476785 +950,4.750000000000043,-0.07422116875734723 +951,4.755000000000043,-0.07421958015666771 +952,4.760000000000044,-0.07421799201246738 +953,4.765000000000045,-0.0742164043244849 +954,4.770000000000046,-0.07421481709245961 +955,4.7750000000000465,-0.07421323031613149 +956,4.780000000000047,-0.07421164399524112 +957,4.785000000000048,-0.07421005812952973 +958,4.790000000000049,-0.07420847271873918 +959,4.79500000000005,-0.07420688776261193 +960,4.8000000000000504,-0.07420530326089109 +961,4.805000000000051,-0.07420371921332038 +962,4.810000000000052,-0.07420213561964412 +963,4.815000000000053,-0.07420055247960726 +964,4.820000000000054,-0.07419896979295537 +965,4.825000000000054,-0.07419738755943461 +966,4.830000000000055,-0.0741958057787918 +967,4.835000000000056,-0.07419422445077428 +968,4.840000000000057,-0.0741926435751301 +969,4.8450000000000575,-0.0741910631516078 +970,4.850000000000058,-0.07418948317995659 +971,4.855000000000059,-0.07418790365992631 +972,4.86000000000006,-0.0741863245912673 +973,4.865000000000061,-0.07418474597373056 +974,4.870000000000061,-0.07418316780706766 +975,4.875000000000062,-0.07418159009103077 +976,4.880000000000063,-0.07418001282537265 +977,4.885000000000064,-0.07417843600984662 +978,4.8900000000000645,-0.07417685964420663 +979,4.895000000000065,-0.07417528372820717 +980,4.900000000000066,-0.0741737082616033 +981,4.905000000000067,-0.07417213324415069 +982,4.910000000000068,-0.07417055867560558 +983,4.915000000000068,-0.07416898455572478 +984,4.920000000000069,-0.07416741088426566 +985,4.92500000000007,-0.07416583766098617 +986,4.930000000000071,-0.07416426488564483 +987,4.9350000000000716,-0.0741626925580007 +988,4.940000000000072,-0.07416112067781343 +989,4.945000000000073,-0.07415954924484322 +990,4.950000000000074,-0.07415797825885083 +991,4.955000000000075,-0.07415640771959758 +992,4.9600000000000755,-0.07415483762684534 +993,4.965000000000076,-0.07415326798035651 +994,4.970000000000077,-0.07415169877989411 +995,4.975000000000078,-0.07415013002522162 +996,4.980000000000079,-0.07414856171610315 +997,4.985000000000079,-0.07414699385230328 +998,4.99000000000008,-0.0741454264335872 +999,4.995000000000081,-0.07414385945972057 +1000,5.000000000000082,-0.07414229293046967 +1001,5.0050000000000825,-0.07414072684560123 +1002,5.010000000000083,-0.07413916120488262 +1003,5.015000000000084,-0.07413759600808162 +1004,5.020000000000085,-0.07413603125496664 +1005,5.025000000000086,-0.07413446694530659 +1006,5.030000000000086,-0.07413290307887088 +1007,5.035000000000087,-0.07413133965542949 +1008,5.040000000000088,-0.07412977667475287 +1009,5.045000000000089,-0.07412821413661207 +1010,5.0500000000000895,-0.07412665204077855 +1011,5.05500000000009,-0.0741250903870244 +1012,5.060000000000091,-0.07412352917512216 +1013,5.065000000000092,-0.0741219684048449 +1014,5.070000000000093,-0.07412040807596623 +1015,5.075000000000093,-0.07411884818826021 +1016,5.080000000000094,-0.07411728874150147 +1017,5.085000000000095,-0.0741157297354651 +1018,5.090000000000096,-0.07411417116992672 +1019,5.095000000000097,-0.07411261304466246 +1020,5.100000000000097,-0.07411105535944895 +1021,5.105000000000098,-0.0741094981140633 +1022,5.110000000000099,-0.07410794130828312 +1023,5.1150000000001,-0.07410638494188654 +1024,5.1200000000001005,-0.07410482901465214 +1025,5.125000000000101,-0.07410327352635906 +1026,5.130000000000102,-0.07410171847678688 +1027,5.135000000000103,-0.07410016386571569 +1028,5.140000000000104,-0.07409860969292603 +1029,5.145000000000104,-0.074097055958199 +1030,5.150000000000105,-0.07409550266131609 +1031,5.155000000000106,-0.07409394980205936 +1032,5.160000000000107,-0.0740923973802113 +1033,5.1650000000001075,-0.07409084539555488 +1034,5.170000000000108,-0.07408929384787356 +1035,5.175000000000109,-0.0740877427369513 +1036,5.18000000000011,-0.07408619206257248 +1037,5.185000000000111,-0.07408464182452199 +1038,5.190000000000111,-0.07408309202258515 +1039,5.195000000000112,-0.0740815426565478 +1040,5.200000000000113,-0.07407999372619622 +1041,5.205000000000114,-0.07407844523131717 +1042,5.2100000000001145,-0.07407689717169784 +1043,5.215000000000115,-0.07407534954712591 +1044,5.220000000000116,-0.07407380235738953 +1045,5.225000000000117,-0.07407225560227727 +1046,5.230000000000118,-0.07407070928157819 +1047,5.2350000000001184,-0.0740691633950818 +1048,5.240000000000119,-0.07406761794257803 +1049,5.24500000000012,-0.0740660729238573 +1050,5.250000000000121,-0.07406452833871051 +1051,5.255000000000122,-0.0740629841869289 +1052,5.260000000000122,-0.07406144046830428 +1053,5.265000000000123,-0.07405989718262881 +1054,5.270000000000124,-0.07405835432969517 +1055,5.275000000000125,-0.07405681190929642 +1056,5.2800000000001255,-0.07405526992122609 +1057,5.285000000000126,-0.07405372836527815 +1058,5.290000000000127,-0.074052187241247 +1059,5.295000000000128,-0.07405064654892748 +1060,5.300000000000129,-0.07404910628811487 +1061,5.305000000000129,-0.07404756645860486 +1062,5.31000000000013,-0.07404602706019361 +1063,5.315000000000131,-0.07404448809267766 +1064,5.320000000000132,-0.07404294955585404 +1065,5.3250000000001325,-0.07404141144952013 +1066,5.330000000000133,-0.07403987377347379 +1067,5.335000000000134,-0.0740383365275133 +1068,5.340000000000135,-0.07403679971143734 +1069,5.345000000000136,-0.07403526332504502 +1070,5.350000000000136,-0.07403372736813589 +1071,5.355000000000137,-0.07403219184050987 +1072,5.360000000000138,-0.07403065674196734 +1073,5.365000000000139,-0.07402912207230906 +1074,5.3700000000001396,-0.07402758783133626 +1075,5.37500000000014,-0.0740260540188505 +1076,5.380000000000141,-0.07402452063465383 +1077,5.385000000000142,-0.07402298767854863 +1078,5.390000000000143,-0.07402145515033776 +1079,5.3950000000001435,-0.07401992304982444 +1080,5.400000000000144,-0.0740183913768123 +1081,5.405000000000145,-0.07401686013110541 +1082,5.410000000000146,-0.07401532931250818 +1083,5.415000000000147,-0.07401379892082544 +1084,5.420000000000147,-0.07401226895586245 +1085,5.425000000000148,-0.07401073941742486 +1086,5.430000000000149,-0.07400921030531868 +1087,5.43500000000015,-0.07400768161935034 +1088,5.4400000000001505,-0.07400615335932664 +1089,5.445000000000151,-0.07400462552505484 +1090,5.450000000000152,-0.07400309811634248 +1091,5.455000000000153,-0.07400157113299759 +1092,5.460000000000154,-0.0740000445748285 +1093,5.465000000000154,-0.07399851844164401 +1094,5.470000000000155,-0.07399699273325325 +1095,5.475000000000156,-0.07399546744946574 +1096,5.480000000000157,-0.0739939425900914 +1097,5.4850000000001575,-0.0739924181549405 +1098,5.490000000000158,-0.0739908941438237 +1099,5.495000000000159,-0.0739893705565521 +1100,5.50000000000016,-0.07398784739293704 +1101,5.505000000000161,-0.07398632465279037 +1102,5.510000000000161,-0.07398480233592425 +1103,5.515000000000162,-0.0739832804421512 +1104,5.520000000000163,-0.07398175897128416 +1105,5.525000000000164,-0.07398023792313638 +1106,5.530000000000165,-0.07397871729752152 +1107,5.535000000000165,-0.07397719709425359 +1108,5.540000000000166,-0.07397567731314696 +1109,5.545000000000167,-0.07397415795401639 +1110,5.550000000000168,-0.07397263901667699 +1111,5.5550000000001685,-0.07397112050094419 +1112,5.560000000000169,-0.07396960240663387 +1113,5.56500000000017,-0.07396808473356219 +1114,5.570000000000171,-0.07396656748154569 +1115,5.575000000000172,-0.07396505065040127 +1116,5.580000000000172,-0.0739635342399462 +1117,5.585000000000173,-0.07396201824999807 +1118,5.590000000000174,-0.07396050268037485 +1119,5.595000000000175,-0.07395898753089485 +1120,5.6000000000001755,-0.07395747280137674 +1121,5.605000000000176,-0.07395595849163952 +1122,5.610000000000177,-0.07395444460150256 +1123,5.615000000000178,-0.07395293113078555 +1124,5.620000000000179,-0.07395141807930854 +1125,5.625000000000179,-0.07394990544689194 +1126,5.63000000000018,-0.07394839323335646 +1127,5.635000000000181,-0.0739468814385232 +1128,5.640000000000182,-0.07394537006221356 +1129,5.6450000000001825,-0.0739438591042493 +1130,5.650000000000183,-0.0739423485644525 +1131,5.655000000000184,-0.07394083844264561 +1132,5.660000000000185,-0.0739393287386514 +1133,5.665000000000186,-0.07393781945229294 +1134,5.6700000000001864,-0.07393631058339367 +1135,5.675000000000187,-0.07393480213177737 +1136,5.680000000000188,-0.07393329409726812 +1137,5.685000000000189,-0.07393178647969033 +1138,5.69000000000019,-0.07393027927886876 +1139,5.69500000000019,-0.07392877249462851 +1140,5.700000000000191,-0.07392726612679495 +1141,5.705000000000192,-0.07392576017519381 +1142,5.710000000000193,-0.07392425463965117 +1143,5.7150000000001935,-0.07392274951999336 +1144,5.720000000000194,-0.0739212448160471 +1145,5.725000000000195,-0.0739197405276394 +1146,5.730000000000196,-0.0739182366545976 +1147,5.735000000000197,-0.07391673319674934 +1148,5.740000000000197,-0.07391523015392258 +1149,5.745000000000198,-0.0739137275259456 +1150,5.750000000000199,-0.07391222531264703 +1151,5.7550000000002,-0.07391072351385573 +1152,5.7600000000002005,-0.07390922212940096 +1153,5.765000000000201,-0.07390772115911223 +1154,5.770000000000202,-0.07390622060281939 +1155,5.775000000000203,-0.0739047204603526 +1156,5.780000000000204,-0.07390322073154229 +1157,5.785000000000204,-0.07390172141621924 +1158,5.790000000000205,-0.07390022251421453 +1159,5.795000000000206,-0.07389872402535953 +1160,5.800000000000207,-0.0738972259494859 +1161,5.8050000000002075,-0.07389572828642564 +1162,5.810000000000208,-0.07389423103601102 +1163,5.815000000000209,-0.07389273419807464 +1164,5.82000000000021,-0.07389123777244934 +1165,5.825000000000211,-0.07388974175896834 +1166,5.8300000000002115,-0.07388824615746509 +1167,5.835000000000212,-0.07388675096777336 +1168,5.840000000000213,-0.07388525618972723 +1169,5.845000000000214,-0.07388376182316106 +1170,5.850000000000215,-0.07388226786790947 +1171,5.855000000000215,-0.07388077432380742 +1172,5.860000000000216,-0.07387928119069015 +1173,5.865000000000217,-0.07387778846839319 +1174,5.870000000000218,-0.07387629615675231 +1175,5.8750000000002185,-0.07387480425560367 +1176,5.880000000000219,-0.07387331276478361 +1177,5.88500000000022,-0.0738718216841288 +1178,5.890000000000221,-0.07387033101347623 +1179,5.895000000000222,-0.0738688407526631 +1180,5.900000000000222,-0.07386735090152696 +1181,5.905000000000223,-0.07386586145990559 +1182,5.910000000000224,-0.07386437242763708 +1183,5.915000000000225,-0.07386288380455978 +1184,5.9200000000002255,-0.07386139559051236 +1185,5.925000000000226,-0.0738599077853337 +1186,5.930000000000227,-0.07385842038886302 +1187,5.935000000000228,-0.0738569334009398 +1188,5.940000000000229,-0.07385544682140374 +1189,5.945000000000229,-0.0738539606500949 +1190,5.95000000000023,-0.07385247488685356 +1191,5.955000000000231,-0.07385098953152028 +1192,5.960000000000232,-0.07384950458393587 +1193,5.965000000000233,-0.07384802004394145 +1194,5.970000000000233,-0.0738465359113784 +1195,5.975000000000234,-0.07384505218608833 +1196,5.980000000000235,-0.0738435688679132 +1197,5.985000000000236,-0.07384208595669511 +1198,5.9900000000002365,-0.07384060345227655 +1199,5.995000000000237,-0.0738391213545002 +1200,6.000000000000238,-0.07383763966320903 +1201,6.005000000000239,-0.07383615837824624 +1202,6.01000000000024,-0.07383467749945534 +1203,6.01500000000024,-0.07383319702668006 +1204,6.020000000000241,-0.07383171695976445 +1205,6.025000000000242,-0.07383023729855273 +1206,6.030000000000243,-0.07382875804288944 +1207,6.0350000000002435,-0.07382727919261935 +1208,6.040000000000244,-0.07382580074758749 +1209,6.045000000000245,-0.07382432270763917 +1210,6.050000000000246,-0.07382284507261991 +1211,6.055000000000247,-0.07382136784237553 +1212,6.060000000000247,-0.07381989101675206 +1213,6.065000000000248,-0.0738184145955958 +1214,6.070000000000249,-0.07381693857875332 +1215,6.07500000000025,-0.07381546296607142 +1216,6.0800000000002505,-0.07381398775739711 +1217,6.085000000000251,-0.07381251295257774 +1218,6.090000000000252,-0.0738110385514608 +1219,6.095000000000253,-0.0738095645538941 +1220,6.100000000000254,-0.07380809095972571 +1221,6.1050000000002544,-0.07380661776880386 +1222,6.110000000000255,-0.0738051449809771 +1223,6.115000000000256,-0.07380367259609417 +1224,6.120000000000257,-0.07380220061400411 +1225,6.125000000000258,-0.07380072903455613 +1226,6.130000000000258,-0.07379925785759975 +1227,6.135000000000259,-0.07379778708298466 +1228,6.14000000000026,-0.07379631671056087 +1229,6.145000000000261,-0.07379484674017855 +1230,6.1500000000002615,-0.07379337717168817 +1231,6.155000000000262,-0.07379190800494037 +1232,6.160000000000263,-0.07379043923978608 +1233,6.165000000000264,-0.07378897087607644 +1234,6.170000000000265,-0.07378750291366283 +1235,6.175000000000265,-0.07378603535239686 +1236,6.180000000000266,-0.07378456819213038 +1237,6.185000000000267,-0.07378310143271545 +1238,6.190000000000268,-0.07378163507400438 +1239,6.1950000000002685,-0.07378016911584971 +1240,6.200000000000269,-0.0737787035581042 +1241,6.20500000000027,-0.07377723840062082 +1242,6.210000000000271,-0.0737757736432528 +1243,6.215000000000272,-0.07377430928585359 +1244,6.220000000000272,-0.07377284532827684 +1245,6.225000000000273,-0.07377138177037647 +1246,6.230000000000274,-0.07376991861200657 +1247,6.235000000000275,-0.07376845585302151 +1248,6.2400000000002755,-0.07376699349327583 +1249,6.245000000000276,-0.0737655315326243 +1250,6.250000000000277,-0.07376406997092194 +1251,6.255000000000278,-0.07376260880802399 +1252,6.260000000000279,-0.07376114804378586 +1253,6.2650000000002795,-0.07375968767806325 +1254,6.27000000000028,-0.07375822771071201 +1255,6.275000000000281,-0.07375676814158824 +1256,6.280000000000282,-0.07375530897054826 +1257,6.285000000000283,-0.0737538501974486 +1258,6.290000000000283,-0.07375239182214599 +1259,6.295000000000284,-0.07375093384449741 +1260,6.300000000000285,-0.07374947626436001 +1261,6.305000000000286,-0.07374801908159118 +1262,6.3100000000002865,-0.0737465622960485 +1263,6.315000000000287,-0.07374510590758981 +1264,6.320000000000288,-0.07374364991607311 +1265,6.325000000000289,-0.0737421943213566 +1266,6.33000000000029,-0.07374073912329876 +1267,6.33500000000029,-0.07373928432175818 +1268,6.340000000000291,-0.07373782991659374 +1269,6.345000000000292,-0.07373637590766449 +1270,6.350000000000293,-0.0737349222948297 +1271,6.3550000000002935,-0.07373346907794882 +1272,6.360000000000294,-0.07373201625688154 +1273,6.365000000000295,-0.07373056383148771 +1274,6.370000000000296,-0.07372911180162744 +1275,6.375000000000297,-0.07372766016716101 +1276,6.380000000000297,-0.07372620892794887 +1277,6.385000000000298,-0.07372475808385175 +1278,6.390000000000299,-0.07372330763473048 +1279,6.3950000000003,-0.07372185758044618 +1280,6.400000000000301,-0.07372040792086014 +1281,6.405000000000301,-0.07371895865583382 +1282,6.410000000000302,-0.0737175097852289 +1283,6.415000000000303,-0.07371606130890726 +1284,6.420000000000304,-0.07371461322673098 +1285,6.4250000000003045,-0.07371316553856232 +1286,6.430000000000305,-0.07371171824426376 +1287,6.435000000000306,-0.07371027134369791 +1288,6.440000000000307,-0.07370882483672768 +1289,6.445000000000308,-0.07370737872321606 +1290,6.450000000000308,-0.0737059330030263 +1291,6.455000000000309,-0.07370448767602186 +1292,6.46000000000031,-0.07370304274206632 +1293,6.465000000000311,-0.0737015982010235 +1294,6.4700000000003115,-0.07370015405275741 +1295,6.475000000000312,-0.07369871029713222 +1296,6.480000000000313,-0.07369726693401232 +1297,6.485000000000314,-0.07369582396326226 +1298,6.490000000000315,-0.0736943813847468 +1299,6.495000000000315,-0.07369293919833086 +1300,6.500000000000316,-0.07369149740387958 +1301,6.505000000000317,-0.07369005600125826 +1302,6.510000000000318,-0.07368861499033239 +1303,6.5150000000003185,-0.07368717437096764 +1304,6.520000000000319,-0.07368573414302988 +1305,6.52500000000032,-0.07368429430638514 +1306,6.530000000000321,-0.07368285486089965 +1307,6.535000000000322,-0.07368141580643983 +1308,6.5400000000003224,-0.07367997714287225 +1309,6.545000000000323,-0.07367853887006366 +1310,6.550000000000324,-0.07367710098788104 +1311,6.555000000000325,-0.07367566349619148 +1312,6.560000000000326,-0.0736742263948623 +1313,6.565000000000326,-0.07367278968376098 +1314,6.570000000000327,-0.07367135336275517 +1315,6.575000000000328,-0.07366991743171271 +1316,6.580000000000329,-0.07366848189050161 +1317,6.5850000000003295,-0.07366704673899005 +1318,6.59000000000033,-0.0736656119770464 +1319,6.595000000000331,-0.07366417760453918 +1320,6.600000000000332,-0.0736627436213371 +1321,6.605000000000333,-0.07366131002730904 +1322,6.610000000000333,-0.07365987682232407 +1323,6.615000000000334,-0.07365844400625139 +1324,6.620000000000335,-0.07365701157896042 +1325,6.625000000000336,-0.07365557954032069 +1326,6.6300000000003365,-0.07365414789020197 +1327,6.635000000000337,-0.07365271662847415 +1328,6.640000000000338,-0.07365128575500732 +1329,6.645000000000339,-0.0736498552696717 +1330,6.65000000000034,-0.07364842517233773 +1331,6.65500000000034,-0.07364699546287595 +1332,6.660000000000341,-0.07364556614115714 +1333,6.665000000000342,-0.07364413720705218 +1334,6.670000000000343,-0.07364270866043218 +1335,6.6750000000003435,-0.07364128050116836 +1336,6.680000000000344,-0.07363985272913212 +1337,6.685000000000345,-0.07363842534419504 +1338,6.690000000000346,-0.07363699834622885 +1339,6.695000000000347,-0.07363557173510545 +1340,6.7000000000003475,-0.07363414551069689 +1341,6.705000000000348,-0.07363271967287538 +1342,6.710000000000349,-0.07363129422151334 +1343,6.71500000000035,-0.07362986915648326 +1344,6.720000000000351,-0.07362844447765787 +1345,6.725000000000351,-0.07362702018491002 +1346,6.730000000000352,-0.07362559627811274 +1347,6.735000000000353,-0.0736241727571392 +1348,6.740000000000354,-0.07362274962186273 +1349,6.7450000000003545,-0.07362132687215683 +1350,6.750000000000355,-0.07361990450789514 +1351,6.755000000000356,-0.07361848252895149 +1352,6.760000000000357,-0.07361706093519983 +1353,6.765000000000358,-0.07361563972651428 +1354,6.770000000000358,-0.07361421890276909 +1355,6.775000000000359,-0.07361279846383871 +1356,6.78000000000036,-0.07361137840959772 +1357,6.785000000000361,-0.07360995873992085 +1358,6.7900000000003615,-0.07360853945468296 +1359,6.795000000000362,-0.07360712055375912 +1360,6.800000000000363,-0.0736057020370245 +1361,6.805000000000364,-0.07360428390435446 +1362,6.810000000000365,-0.07360286615562449 +1363,6.815000000000365,-0.0736014487907102 +1364,6.820000000000366,-0.07360003180948743 +1365,6.825000000000367,-0.0735986152118321 +1366,6.830000000000368,-0.07359719899762028 +1367,6.835000000000369,-0.07359578316672823 +1368,6.840000000000369,-0.07359436771903233 +1369,6.84500000000037,-0.0735929526544091 +1370,6.850000000000371,-0.07359153797273524 +1371,6.855000000000372,-0.07359012367388756 +1372,6.8600000000003725,-0.07358870975774305 +1373,6.865000000000373,-0.0735872962241788 +1374,6.870000000000374,-0.07358588307307208 +1375,6.875000000000375,-0.0735844703043003 +1376,6.880000000000376,-0.07358305791774103 +1377,6.885000000000376,-0.07358164591327193 +1378,6.890000000000377,-0.07358023429077085 +1379,6.895000000000378,-0.07357882305011576 +1380,6.900000000000379,-0.0735774121911848 +1381,6.9050000000003795,-0.0735760017138562 +1382,6.91000000000038,-0.07357459161800839 +1383,6.915000000000381,-0.0735731819035199 +1384,6.920000000000382,-0.07357177257026942 +1385,6.925000000000383,-0.07357036361813578 +1386,6.930000000000383,-0.07356895504699791 +1387,6.935000000000384,-0.07356754685673494 +1388,6.940000000000385,-0.07356613904722611 +1389,6.945000000000386,-0.0735647316183508 +1390,6.9500000000003865,-0.07356332456998849 +1391,6.955000000000387,-0.07356191790201885 +1392,6.960000000000388,-0.07356051161432169 +1393,6.965000000000389,-0.0735591057067769 +1394,6.97000000000039,-0.07355770017926457 +1395,6.97500000000039,-0.07355629503166486 +1396,6.980000000000391,-0.07355489026385813 +1397,6.985000000000392,-0.07355348587572481 +1398,6.990000000000393,-0.07355208186714553 +1399,6.995000000000394,-0.07355067823800102 +1400,7.000000000000394,-0.0735492749881721 +1401,7.005000000000395,-0.07354787211753981 +1402,7.010000000000396,-0.07354646962598527 +1403,7.015000000000397,-0.07354506751338973 +1404,7.0200000000003975,-0.07354366577963457 +1405,7.025000000000398,-0.07354226442460132 +1406,7.030000000000399,-0.07354086344817166 +1407,7.0350000000004,-0.07353946285022733 +1408,7.040000000000401,-0.07353806263065027 +1409,7.045000000000401,-0.07353666278932251 +1410,7.050000000000402,-0.07353526332612621 +1411,7.055000000000403,-0.07353386424094367 +1412,7.060000000000404,-0.07353246553365733 +1413,7.0650000000004045,-0.07353106720414972 +1414,7.070000000000405,-0.07352966925230353 +1415,7.075000000000406,-0.07352827167800159 +1416,7.080000000000407,-0.0735268744811268 +1417,7.085000000000408,-0.07352547766156223 +1418,7.090000000000408,-0.07352408121919105 +1419,7.095000000000409,-0.07352268515389658 +1420,7.10000000000041,-0.07352128946556225 +1421,7.105000000000411,-0.0735198941540716 +1422,7.1100000000004115,-0.07351849921930835 +1423,7.115000000000412,-0.07351710466115628 +1424,7.120000000000413,-0.07351571047949933 +1425,7.125000000000414,-0.07351431667422152 +1426,7.130000000000415,-0.07351292324520704 +1427,7.1350000000004155,-0.07351153019234019 +1428,7.140000000000416,-0.07351013751550538 +1429,7.145000000000417,-0.07350874521458714 +1430,7.150000000000418,-0.07350735328947014 +1431,7.155000000000419,-0.07350596174003912 +1432,7.160000000000419,-0.07350457056617903 +1433,7.16500000000042,-0.07350317976777485 +1434,7.170000000000421,-0.07350178934471172 +1435,7.175000000000422,-0.0735003992968749 +1436,7.1800000000004225,-0.07349900962414975 +1437,7.185000000000423,-0.07349762032642178 +1438,7.190000000000424,-0.07349623140357658 +1439,7.195000000000425,-0.0734948428554999 +1440,7.200000000000426,-0.07349345468207755 +1441,7.205000000000426,-0.0734920668831955 +1442,7.210000000000427,-0.07349067945873981 +1443,7.215000000000428,-0.07348929240859668 +1444,7.220000000000429,-0.07348790573265243 +1445,7.2250000000004295,-0.07348651943079347 +1446,7.23000000000043,-0.07348513350290632 +1447,7.235000000000431,-0.07348374794887765 +1448,7.240000000000432,-0.0734823627685942 +1449,7.245000000000433,-0.07348097796194288 +1450,7.250000000000433,-0.07347959352881063 +1451,7.255000000000434,-0.0734782094690846 +1452,7.260000000000435,-0.07347682578265195 +1453,7.265000000000436,-0.07347544246940006 +1454,7.270000000000437,-0.07347405952921635 +1455,7.275000000000437,-0.07347267696198835 +1456,7.280000000000438,-0.07347129476760375 +1457,7.285000000000439,-0.0734699129459503 +1458,7.29000000000044,-0.07346853149691589 +1459,7.2950000000004405,-0.07346715042038851 +1460,7.300000000000441,-0.07346576971625625 +1461,7.305000000000442,-0.07346438938440733 +1462,7.310000000000443,-0.07346300942473007 +1463,7.315000000000444,-0.07346162983711288 +1464,7.320000000000444,-0.07346025062144432 +1465,7.325000000000445,-0.07345887177761302 +1466,7.330000000000446,-0.07345749330550774 +1467,7.335000000000447,-0.07345611520501732 +1468,7.3400000000004475,-0.07345473747603076 +1469,7.345000000000448,-0.07345336011843709 +1470,7.350000000000449,-0.0734519831321255 +1471,7.35500000000045,-0.07345060651698529 +1472,7.360000000000451,-0.07344923027290584 +1473,7.365000000000451,-0.07344785439977664 +1474,7.370000000000452,-0.07344647889748729 +1475,7.375000000000453,-0.07344510376592749 +1476,7.380000000000454,-0.07344372900498705 +1477,7.3850000000004545,-0.07344235461455588 +1478,7.390000000000455,-0.073440980594524 +1479,7.395000000000456,-0.07343960694478155 +1480,7.400000000000457,-0.0734382336652187 +1481,7.405000000000458,-0.07343686075572582 +1482,7.410000000000458,-0.07343548821619332 +1483,7.415000000000459,-0.07343411604651172 +1484,7.42000000000046,-0.07343274424657166 +1485,7.425000000000461,-0.07343137281626387 +1486,7.430000000000462,-0.07343000175547919 +1487,7.435000000000462,-0.07342863106410853 +1488,7.440000000000463,-0.07342726074204294 +1489,7.445000000000464,-0.07342589078917354 +1490,7.450000000000465,-0.07342452120539159 +1491,7.4550000000004655,-0.0734231519905884 +1492,7.460000000000466,-0.07342178314465539 +1493,7.465000000000467,-0.07342041466748413 +1494,7.470000000000468,-0.07341904655896622 +1495,7.475000000000469,-0.07341767881899339 +1496,7.480000000000469,-0.07341631144745746 +1497,7.48500000000047,-0.07341494444425037 +1498,7.490000000000471,-0.07341357780926412 +1499,7.495000000000472,-0.07341221154239085 +1500,7.5000000000004725,-0.07341084564352277 +1501,7.505000000000473,-0.07340948011255216 +1502,7.510000000000474,-0.07340811494937147 +1503,7.515000000000475,-0.07340675015387316 +1504,7.520000000000476,-0.07340538572594986 +1505,7.525000000000476,-0.07340402166549424 +1506,7.530000000000477,-0.07340265797239912 +1507,7.535000000000478,-0.07340129464655734 +1508,7.540000000000479,-0.07339993168786191 +1509,7.5450000000004795,-0.07339856909620587 +1510,7.55000000000048,-0.07339720687148242 +1511,7.555000000000481,-0.0733958450135848 +1512,7.560000000000482,-0.07339448352240636 +1513,7.565000000000483,-0.07339312239784054 +1514,7.5700000000004835,-0.0733917616397809 +1515,7.575000000000484,-0.07339040124812105 +1516,7.580000000000485,-0.0733890412227547 +1517,7.585000000000486,-0.07338768156357568 +1518,7.590000000000487,-0.07338632227047791 +1519,7.595000000000487,-0.07338496334335536 +1520,7.600000000000488,-0.07338360478210211 +1521,7.605000000000489,-0.07338224658661237 +1522,7.61000000000049,-0.07338088875678038 +1523,7.6150000000004905,-0.07337953129250051 +1524,7.620000000000491,-0.0733781741936672 +1525,7.625000000000492,-0.07337681746017499 +1526,7.630000000000493,-0.07337546109191853 +1527,7.635000000000494,-0.07337410508879251 +1528,7.640000000000494,-0.07337274945069173 +1529,7.645000000000495,-0.07337139417751111 +1530,7.650000000000496,-0.0733700392691456 +1531,7.655000000000497,-0.0733686847254903 +1532,7.6600000000004975,-0.07336733054644035 +1533,7.665000000000498,-0.07336597673189098 +1534,7.670000000000499,-0.07336462328173755 +1535,7.6750000000005,-0.07336327019587548 +1536,7.680000000000501,-0.07336191747420025 +1537,7.685000000000501,-0.07336056511660746 +1538,7.690000000000502,-0.0733592131229928 +1539,7.695000000000503,-0.07335786149325202 +1540,7.700000000000504,-0.07335651022728099 +1541,7.705000000000505,-0.0733551593249756 +1542,7.710000000000505,-0.07335380878623192 +1543,7.715000000000506,-0.07335245861094603 +1544,7.720000000000507,-0.07335110879901413 +1545,7.725000000000508,-0.07334975935033247 +1546,7.7300000000005085,-0.07334841026479744 +1547,7.735000000000509,-0.07334706154230546 +1548,7.74000000000051,-0.07334571318275306 +1549,7.745000000000511,-0.07334436518603686 +1550,7.750000000000512,-0.07334301755205352 +1551,7.755000000000512,-0.07334167028069985 +1552,7.760000000000513,-0.07334032337187268 +1553,7.765000000000514,-0.07333897682546897 +1554,7.770000000000515,-0.07333763064138575 +1555,7.7750000000005155,-0.07333628481952009 +1556,7.780000000000516,-0.0733349393597692 +1557,7.785000000000517,-0.07333359426203033 +1558,7.790000000000518,-0.07333224952620084 +1559,7.795000000000519,-0.07333090515217815 +1560,7.800000000000519,-0.07332956113985978 +1561,7.80500000000052,-0.0733282174891433 +1562,7.810000000000521,-0.0733268741999264 +1563,7.815000000000522,-0.07332553127210682 +1564,7.8200000000005225,-0.07332418870558238 +1565,7.825000000000523,-0.07332284650025102 +1566,7.830000000000524,-0.0733215046560107 +1567,7.835000000000525,-0.07332016317275951 +1568,7.840000000000526,-0.07331882205039557 +1569,7.845000000000526,-0.07331748128881711 +1570,7.850000000000527,-0.07331614088792245 +1571,7.855000000000528,-0.07331480084760994 +1572,7.860000000000529,-0.07331346116777808 +1573,7.86500000000053,-0.07331212184832536 +1574,7.87000000000053,-0.07331078288915044 +1575,7.875000000000531,-0.07330944429015197 +1576,7.880000000000532,-0.07330810605122876 +1577,7.885000000000533,-0.0733067681722796 +1578,7.8900000000005335,-0.07330543065320345 +1579,7.895000000000534,-0.07330409349389931 +1580,7.900000000000535,-0.07330275669426625 +1581,7.905000000000536,-0.07330142025420341 +1582,7.910000000000537,-0.07330008417361 +1583,7.915000000000537,-0.07329874845238536 +1584,7.920000000000538,-0.07329741309042882 +1585,7.925000000000539,-0.07329607808763985 +1586,7.93000000000054,-0.073294743443918 +1587,7.9350000000005405,-0.07329340915916284 +1588,7.940000000000541,-0.07329207523327405 +1589,7.945000000000542,-0.07329074166615138 +1590,7.950000000000543,-0.07328940845769465 +1591,7.955000000000544,-0.07328807560780376 +1592,7.960000000000544,-0.07328674311637867 +1593,7.965000000000545,-0.07328541098331944 +1594,7.970000000000546,-0.07328407920852617 +1595,7.975000000000547,-0.07328274779189904 +1596,7.9800000000005475,-0.07328141673333834 +1597,7.985000000000548,-0.07328008603274437 +1598,7.990000000000549,-0.07327875569001754 +1599,7.99500000000055,-0.07327742570505837 +1600,8.00000000000055,-0.07327609607776736 +1601,8.00500000000055,-0.07327476680804516 +1602,8.010000000000549,-0.07327343789579244 +1603,8.015000000000548,-0.07327210934090998 +1604,8.020000000000547,-0.0732707811432986 +1605,8.025000000000546,-0.07326945330285922 +1606,8.030000000000545,-0.07326812581949281 +1607,8.035000000000544,-0.07326679869310042 +1608,8.040000000000543,-0.07326547192358315 +1609,8.045000000000542,-0.0732641455108422 +1610,8.05000000000054,-0.07326281945477882 +1611,8.05500000000054,-0.07326149375529434 +1612,8.060000000000539,-0.07326016841229015 +1613,8.065000000000538,-0.07325884342566771 +1614,8.070000000000537,-0.07325751879532856 +1615,8.075000000000536,-0.07325619452117431 +1616,8.080000000000535,-0.0732548706031066 +1617,8.085000000000534,-0.07325354704102723 +1618,8.090000000000533,-0.07325222383483794 +1619,8.095000000000532,-0.07325090098444062 +1620,8.10000000000053,-0.07324957848973723 +1621,8.10500000000053,-0.07324825635062977 +1622,8.110000000000529,-0.07324693456702033 +1623,8.115000000000528,-0.07324561313881105 +1624,8.120000000000527,-0.07324429206590413 +1625,8.125000000000526,-0.07324297134820186 +1626,8.130000000000525,-0.07324165098560659 +1627,8.135000000000524,-0.07324033097802071 +1628,8.140000000000523,-0.07323901132534671 +1629,8.145000000000522,-0.07323769202748714 +1630,8.15000000000052,-0.07323637308434461 +1631,8.15500000000052,-0.07323505449582178 +1632,8.160000000000519,-0.07323373626182142 +1633,8.165000000000518,-0.07323241838224631 +1634,8.170000000000517,-0.07323110085699934 +1635,8.175000000000516,-0.07322978368598342 +1636,8.180000000000515,-0.07322846686910159 +1637,8.185000000000514,-0.07322715040625688 +1638,8.190000000000513,-0.07322583429735245 +1639,8.195000000000512,-0.07322451854229149 +1640,8.20000000000051,-0.07322320314097724 +1641,8.20500000000051,-0.07322188809331305 +1642,8.210000000000509,-0.0732205733992023 +1643,8.215000000000508,-0.07321925905854842 +1644,8.220000000000507,-0.07321794507125495 +1645,8.225000000000506,-0.07321663143722544 +1646,8.230000000000505,-0.07321531815636356 +1647,8.235000000000504,-0.073214005228573 +1648,8.240000000000503,-0.07321269265375753 +1649,8.245000000000502,-0.07321138043182097 +1650,8.250000000000501,-0.07321006856266722 +1651,8.2550000000005,-0.07320875704620022 +1652,8.260000000000499,-0.073207445882324 +1653,8.265000000000498,-0.07320613507094262 +1654,8.270000000000497,-0.07320482461196025 +1655,8.275000000000496,-0.07320351450528106 +1656,8.280000000000495,-0.07320220475080932 +1657,8.285000000000494,-0.07320089534844937 +1658,8.290000000000493,-0.07319958629810557 +1659,8.295000000000492,-0.07319827759968235 +1660,8.300000000000491,-0.07319696925308426 +1661,8.30500000000049,-0.07319566125821583 +1662,8.310000000000489,-0.07319435361498172 +1663,8.315000000000488,-0.07319304632328659 +1664,8.320000000000487,-0.0731917393830352 +1665,8.325000000000486,-0.07319043279413234 +1666,8.330000000000485,-0.07318912655648288 +1667,8.335000000000484,-0.07318782066999176 +1668,8.340000000000483,-0.07318651513456394 +1669,8.345000000000482,-0.07318520995010448 +1670,8.350000000000481,-0.0731839051165185 +1671,8.35500000000048,-0.07318260063371113 +1672,8.360000000000479,-0.0731812965015876 +1673,8.365000000000478,-0.0731799927200532 +1674,8.370000000000477,-0.07317868928901325 +1675,8.375000000000476,-0.07317738620837316 +1676,8.380000000000475,-0.07317608347803839 +1677,8.385000000000474,-0.07317478109791445 +1678,8.390000000000473,-0.0731734790679069 +1679,8.395000000000472,-0.07317217738792137 +1680,8.400000000000471,-0.07317087605786354 +1681,8.40500000000047,-0.07316957507763917 +1682,8.410000000000469,-0.07316827444715404 +1683,8.415000000000468,-0.07316697416631401 +1684,8.420000000000467,-0.073165674235025 +1685,8.425000000000466,-0.07316437465319298 +1686,8.430000000000465,-0.07316307542072398 +1687,8.435000000000464,-0.07316177653752406 +1688,8.440000000000463,-0.0731604780034994 +1689,8.445000000000462,-0.07315917981855616 +1690,8.450000000000461,-0.0731578819826006 +1691,8.45500000000046,-0.07315658449553904 +1692,8.46000000000046,-0.07315528735727783 +1693,8.465000000000458,-0.0731539905677234 +1694,8.470000000000457,-0.07315269412678221 +1695,8.475000000000456,-0.07315139803436081 +1696,8.480000000000455,-0.07315010229036577 +1697,8.485000000000454,-0.07314880689470372 +1698,8.490000000000453,-0.07314751184728138 +1699,8.495000000000452,-0.07314621714800548 +1700,8.500000000000451,-0.07314492279678281 +1701,8.50500000000045,-0.07314362879352025 +1702,8.51000000000045,-0.07314233513812471 +1703,8.515000000000448,-0.07314104183050314 +1704,8.520000000000447,-0.07313974887056258 +1705,8.525000000000446,-0.0731384562582101 +1706,8.530000000000445,-0.07313716399335282 +1707,8.535000000000444,-0.07313587207589792 +1708,8.540000000000443,-0.07313458050575264 +1709,8.545000000000442,-0.07313328928282427 +1710,8.550000000000441,-0.07313199840702013 +1711,8.55500000000044,-0.07313070787824764 +1712,8.56000000000044,-0.07312941769641425 +1713,8.565000000000438,-0.07312812786142743 +1714,8.570000000000437,-0.07312683837319477 +1715,8.575000000000436,-0.07312554923162383 +1716,8.580000000000435,-0.07312426043662228 +1717,8.585000000000434,-0.07312297198809785 +1718,8.590000000000433,-0.07312168388595829 +1719,8.595000000000432,-0.07312039613011141 +1720,8.600000000000431,-0.07311910872046508 +1721,8.60500000000043,-0.0731178216569272 +1722,8.61000000000043,-0.07311653493940576 +1723,8.615000000000428,-0.07311524856780875 +1724,8.620000000000427,-0.07311396254204426 +1725,8.625000000000426,-0.07311267686202043 +1726,8.630000000000425,-0.0731113915276454 +1727,8.635000000000424,-0.0731101065388274 +1728,8.640000000000423,-0.07310882189547471 +1729,8.645000000000422,-0.07310753759749565 +1730,8.650000000000421,-0.0731062536447986 +1731,8.65500000000042,-0.07310497003729198 +1732,8.66000000000042,-0.07310368677488427 +1733,8.665000000000418,-0.07310240385748398 +1734,8.670000000000417,-0.07310112128499971 +1735,8.675000000000416,-0.07309983905734006 +1736,8.680000000000415,-0.07309855717441373 +1737,8.685000000000414,-0.07309727563612943 +1738,8.690000000000413,-0.07309599444239592 +1739,8.695000000000412,-0.07309471359312206 +1740,8.700000000000411,-0.07309343308821668 +1741,8.70500000000041,-0.07309215292758875 +1742,8.71000000000041,-0.07309087311114719 +1743,8.715000000000408,-0.07308959363880105 +1744,8.720000000000407,-0.07308831451045938 +1745,8.725000000000406,-0.07308703572603131 +1746,8.730000000000405,-0.07308575728542602 +1747,8.735000000000404,-0.07308447918855268 +1748,8.740000000000403,-0.07308320143532059 +1749,8.745000000000402,-0.07308192402563904 +1750,8.750000000000401,-0.07308064695941739 +1751,8.7550000000004,-0.07307937023656505 +1752,8.7600000000004,-0.07307809385699147 +1753,8.765000000000398,-0.07307681782060615 +1754,8.770000000000397,-0.07307554212731866 +1755,8.775000000000396,-0.07307426677703856 +1756,8.780000000000395,-0.07307299176967551 +1757,8.785000000000394,-0.0730717171051392 +1758,8.790000000000393,-0.07307044278333936 +1759,8.795000000000393,-0.07306916880418579 +1760,8.800000000000392,-0.07306789516758831 +1761,8.80500000000039,-0.07306662187345679 +1762,8.81000000000039,-0.07306534892170118 +1763,8.815000000000389,-0.07306407631223141 +1764,8.820000000000388,-0.07306280404495753 +1765,8.825000000000387,-0.0730615321197896 +1766,8.830000000000386,-0.07306026053663771 +1767,8.835000000000385,-0.07305898929541203 +1768,8.840000000000384,-0.07305771839602276 +1769,8.845000000000383,-0.07305644783838015 +1770,8.850000000000382,-0.07305517762239448 +1771,8.85500000000038,-0.0730539077479761 +1772,8.86000000000038,-0.07305263821503538 +1773,8.865000000000379,-0.07305136902348278 +1774,8.870000000000378,-0.07305010017322874 +1775,8.875000000000377,-0.0730488316641838 +1776,8.880000000000376,-0.0730475634962585 +1777,8.885000000000375,-0.07304629566936349 +1778,8.890000000000374,-0.07304502818340938 +1779,8.895000000000373,-0.0730437610383069 +1780,8.900000000000372,-0.07304249423396678 +1781,8.90500000000037,-0.07304122777029981 +1782,8.91000000000037,-0.07303996164721682 +1783,8.915000000000369,-0.07303869586462869 +1784,8.920000000000368,-0.07303743042244634 +1785,8.925000000000367,-0.07303616532058073 +1786,8.930000000000366,-0.07303490055894286 +1787,8.935000000000365,-0.0730336361374438 +1788,8.940000000000364,-0.07303237205599465 +1789,8.945000000000363,-0.07303110831450654 +1790,8.950000000000362,-0.07302984491289063 +1791,8.95500000000036,-0.07302858185105819 +1792,8.96000000000036,-0.07302731912892046 +1793,8.965000000000359,-0.07302605674638878 +1794,8.970000000000358,-0.07302479470337447 +1795,8.975000000000357,-0.07302353299978896 +1796,8.980000000000356,-0.07302227163554367 +1797,8.985000000000355,-0.07302101061055011 +1798,8.990000000000354,-0.07301974992471978 +1799,8.995000000000353,-0.07301848957796427 +1800,9.000000000000352,-0.07301722957019517 +1801,9.00500000000035,-0.07301596990132417 +1802,9.01000000000035,-0.07301471057126294 +1803,9.015000000000349,-0.07301345157992323 +1804,9.020000000000348,-0.07301219292721682 +1805,9.025000000000347,-0.07301093461305554 +1806,9.030000000000346,-0.07300967663735125 +1807,9.035000000000345,-0.07300841900001587 +1808,9.040000000000344,-0.07300716170096132 +1809,9.045000000000343,-0.07300590474009962 +1810,9.050000000000342,-0.07300464811734278 +1811,9.05500000000034,-0.07300339183260289 +1812,9.06000000000034,-0.07300213588579206 +1813,9.065000000000339,-0.07300088027682244 +1814,9.070000000000338,-0.07299962500560625 +1815,9.075000000000337,-0.0729983700720557 +1816,9.080000000000336,-0.07299711547608309 +1817,9.085000000000335,-0.07299586121760074 +1818,9.090000000000334,-0.07299460729652099 +1819,9.095000000000333,-0.07299335371275628 +1820,9.100000000000332,-0.07299210046621901 +1821,9.10500000000033,-0.0729908475568217 +1822,9.11000000000033,-0.07298959498447684 +1823,9.115000000000329,-0.07298834274909702 +1824,9.120000000000328,-0.07298709085059482 +1825,9.125000000000327,-0.07298583928888291 +1826,9.130000000000326,-0.07298458806387396 +1827,9.135000000000325,-0.0729833371754807 +1828,9.140000000000324,-0.07298208662361588 +1829,9.145000000000323,-0.07298083640819233 +1830,9.150000000000322,-0.07297958652912287 +1831,9.15500000000032,-0.07297833698632039 +1832,9.16000000000032,-0.07297708777969782 +1833,9.165000000000319,-0.07297583890916809 +1834,9.170000000000318,-0.07297459037464424 +1835,9.175000000000317,-0.07297334217603929 +1836,9.180000000000316,-0.07297209431326634 +1837,9.185000000000315,-0.07297084678623848 +1838,9.190000000000314,-0.0729695995948689 +1839,9.195000000000313,-0.07296835273907076 +1840,9.200000000000312,-0.07296710621875732 +1841,9.205000000000311,-0.07296586003384185 +1842,9.21000000000031,-0.07296461418423766 +1843,9.215000000000309,-0.0729633686698581 +1844,9.220000000000308,-0.07296212349061655 +1845,9.225000000000307,-0.07296087864642645 +1846,9.230000000000306,-0.07295963413720126 +1847,9.235000000000305,-0.0729583899628545 +1848,9.240000000000304,-0.07295714612329969 +1849,9.245000000000303,-0.07295590261845042 +1850,9.250000000000302,-0.07295465944822031 +1851,9.255000000000301,-0.07295341661252303 +1852,9.2600000000003,-0.07295217411127225 +1853,9.265000000000299,-0.07295093194438171 +1854,9.270000000000298,-0.07294969011176518 +1855,9.275000000000297,-0.07294844861333646 +1856,9.280000000000296,-0.07294720744900941 +1857,9.285000000000295,-0.07294596661869791 +1858,9.290000000000294,-0.07294472612231585 +1859,9.295000000000293,-0.07294348595977722 +1860,9.300000000000292,-0.072942246130996 +1861,9.305000000000291,-0.07294100663588622 +1862,9.31000000000029,-0.07293976747436196 +1863,9.315000000000289,-0.0729385286463373 +1864,9.320000000000288,-0.0729372901517264 +1865,9.325000000000287,-0.07293605199044344 +1866,9.330000000000286,-0.0729348141624026 +1867,9.335000000000285,-0.07293357666751817 +1868,9.340000000000284,-0.07293233950570442 +1869,9.345000000000283,-0.07293110267687566 +1870,9.350000000000282,-0.0729298661809463 +1871,9.355000000000281,-0.07292863001783068 +1872,9.36000000000028,-0.07292739418744325 +1873,9.365000000000279,-0.07292615868969848 +1874,9.370000000000278,-0.0729249235245109 +1875,9.375000000000277,-0.07292368869179501 +1876,9.380000000000276,-0.07292245419146541 +1877,9.385000000000275,-0.0729212200234367 +1878,9.390000000000274,-0.07291998618762353 +1879,9.395000000000273,-0.0729187526839406 +1880,9.400000000000272,-0.0729175195123026 +1881,9.405000000000271,-0.07291628667262433 +1882,9.41000000000027,-0.07291505416482054 +1883,9.41500000000027,-0.07291382198880605 +1884,9.420000000000268,-0.07291259014449573 +1885,9.425000000000267,-0.07291135863180451 +1886,9.430000000000266,-0.07291012745064727 +1887,9.435000000000265,-0.07290889660093901 +1888,9.440000000000264,-0.0729076660825947 +1889,9.445000000000263,-0.07290643589552942 +1890,9.450000000000262,-0.0729052060396582 +1891,9.455000000000261,-0.07290397651489616 +1892,9.46000000000026,-0.07290274732115845 +1893,9.46500000000026,-0.07290151845836022 +1894,9.470000000000258,-0.07290028992641669 +1895,9.475000000000257,-0.07289906172524312 +1896,9.480000000000256,-0.07289783385475476 +1897,9.485000000000255,-0.07289660631486695 +1898,9.490000000000254,-0.07289537910549503 +1899,9.495000000000253,-0.07289415222655438 +1900,9.500000000000252,-0.07289292567796038 +1901,9.505000000000251,-0.07289169945962852 +1902,9.51000000000025,-0.07289047357147427 +1903,9.51500000000025,-0.07288924801341314 +1904,9.520000000000248,-0.07288802278536069 +1905,9.525000000000247,-0.0728867978872325 +1906,9.530000000000246,-0.0728855733189442 +1907,9.535000000000245,-0.07288434908041143 +1908,9.540000000000244,-0.07288312517154986 +1909,9.545000000000243,-0.07288190159227524 +1910,9.550000000000242,-0.07288067834250331 +1911,9.555000000000241,-0.07287945542214984 +1912,9.56000000000024,-0.07287823283113065 +1913,9.56500000000024,-0.07287701056936162 +1914,9.570000000000238,-0.0728757886367586 +1915,9.575000000000237,-0.07287456703323754 +1916,9.580000000000236,-0.07287334575871436 +1917,9.585000000000235,-0.07287212481310508 +1918,9.590000000000234,-0.07287090419632568 +1919,9.595000000000233,-0.07286968390829224 +1920,9.600000000000232,-0.07286846394892081 +1921,9.605000000000231,-0.07286724431812754 +1922,9.61000000000023,-0.07286602501582856 +1923,9.61500000000023,-0.07286480604194004 +1924,9.620000000000228,-0.07286358739637823 +1925,9.625000000000227,-0.07286236907905932 +1926,9.630000000000226,-0.07286115108989964 +1927,9.635000000000225,-0.07285993342881547 +1928,9.640000000000224,-0.07285871609572316 +1929,9.645000000000223,-0.07285749909053908 +1930,9.650000000000222,-0.07285628241317964 +1931,9.655000000000221,-0.07285506606356129 +1932,9.66000000000022,-0.0728538500416005 +1933,9.66500000000022,-0.07285263434721376 +1934,9.670000000000218,-0.07285141898031759 +1935,9.675000000000217,-0.07285020394082858 +1936,9.680000000000216,-0.07284898922866331 +1937,9.685000000000215,-0.07284777484373843 +1938,9.690000000000214,-0.0728465607859706 +1939,9.695000000000213,-0.0728453470552765 +1940,9.700000000000212,-0.07284413365157284 +1941,9.705000000000211,-0.07284292057477641 +1942,9.71000000000021,-0.072841707824804 +1943,9.71500000000021,-0.07284049540157239 +1944,9.720000000000208,-0.07283928330499845 +1945,9.725000000000207,-0.07283807153499906 +1946,9.730000000000206,-0.07283686009149114 +1947,9.735000000000205,-0.07283564897439161 +1948,9.740000000000204,-0.07283443818361748 +1949,9.745000000000203,-0.07283322771908572 +1950,9.750000000000203,-0.07283201758071338 +1951,9.755000000000202,-0.07283080776841754 +1952,9.7600000000002,-0.07282959828211526 +1953,9.7650000000002,-0.07282838912172371 +1954,9.770000000000199,-0.07282718028716002 +1955,9.775000000000198,-0.0728259717783414 +1956,9.780000000000197,-0.07282476359518507 +1957,9.785000000000196,-0.07282355573760825 +1958,9.790000000000195,-0.07282234820552824 +1959,9.795000000000194,-0.07282114099886237 +1960,9.800000000000193,-0.07281993411752796 +1961,9.805000000000192,-0.07281872756144239 +1962,9.81000000000019,-0.07281752133052305 +1963,9.81500000000019,-0.07281631542468739 +1964,9.820000000000189,-0.07281510984385287 +1965,9.825000000000188,-0.07281390458793696 +1966,9.830000000000187,-0.0728126996568572 +1967,9.835000000000186,-0.07281149505053117 +1968,9.840000000000185,-0.0728102907688764 +1969,9.845000000000184,-0.07280908681181053 +1970,9.850000000000183,-0.07280788317925119 +1971,9.855000000000182,-0.07280667987111608 +1972,9.86000000000018,-0.07280547688732286 +1973,9.86500000000018,-0.07280427422778928 +1974,9.870000000000179,-0.07280307189243311 +1975,9.875000000000178,-0.07280186988117213 +1976,9.880000000000177,-0.07280066819392415 +1977,9.885000000000176,-0.07279946683060705 +1978,9.890000000000175,-0.07279826579113868 +1979,9.895000000000174,-0.07279706507543694 +1980,9.900000000000173,-0.0727958646834198 +1981,9.905000000000172,-0.0727946646150052 +1982,9.91000000000017,-0.07279346487011112 +1983,9.91500000000017,-0.07279226544865564 +1984,9.920000000000169,-0.07279106635055675 +1985,9.925000000000168,-0.07278986757573255 +1986,9.930000000000167,-0.07278866912410119 +1987,9.935000000000166,-0.07278747099558076 +1988,9.940000000000165,-0.07278627319008946 +1989,9.945000000000164,-0.07278507570754547 +1990,9.950000000000163,-0.07278387854786703 +1991,9.955000000000162,-0.07278268171097237 +1992,9.96000000000016,-0.0727814851967798 +1993,9.96500000000016,-0.07278028900520761 +1994,9.970000000000159,-0.07277909313617416 +1995,9.975000000000158,-0.0727778975895978 +1996,9.980000000000157,-0.07277670236539695 +1997,9.985000000000156,-0.07277550746349 +1998,9.990000000000155,-0.07277431288379545 +1999,9.995000000000154,-0.07277311862623173 +2000,10.000000000000153,-0.0727719246907174 +2001,10.005000000000152,-0.07277073107717097 +2002,10.01000000000015,-0.07276953778551101 +2003,10.01500000000015,-0.07276834481565611 +2004,10.020000000000149,-0.0727671521675249 +2005,10.025000000000148,-0.07276595984103604 +2006,10.030000000000147,-0.07276476783610819 +2007,10.035000000000146,-0.07276357615266006 +2008,10.040000000000145,-0.0727623847906104 +2009,10.045000000000144,-0.07276119374987797 +2010,10.050000000000143,-0.07276000303038153 +2011,10.055000000000142,-0.07275881263203993 +2012,10.06000000000014,-0.07275762255477199 +2013,10.06500000000014,-0.0727564327984966 +2014,10.070000000000139,-0.07275524336313265 +2015,10.075000000000138,-0.07275405424859907 +2016,10.080000000000137,-0.07275286545481482 +2017,10.085000000000136,-0.07275167698169888 +2018,10.090000000000135,-0.07275048882917025 +2019,10.095000000000134,-0.07274930099714799 +2020,10.100000000000133,-0.07274811348555113 +2021,10.105000000000132,-0.07274692629429878 +2022,10.11000000000013,-0.07274573942331009 +2023,10.11500000000013,-0.07274455287250414 +2024,10.120000000000129,-0.07274336664180016 +2025,10.125000000000128,-0.07274218073111732 +2026,10.130000000000127,-0.07274099514037485 +2027,10.135000000000126,-0.07273980986949201 +2028,10.140000000000125,-0.07273862491838808 +2029,10.145000000000124,-0.07273744028698235 +2030,10.150000000000123,-0.07273625597519419 +2031,10.155000000000122,-0.07273507198294293 +2032,10.160000000000121,-0.07273388831014796 +2033,10.16500000000012,-0.0727327049567287 +2034,10.170000000000119,-0.07273152192260461 +2035,10.175000000000118,-0.07273033920769514 +2036,10.180000000000117,-0.07272915681191978 +2037,10.185000000000116,-0.07272797473519806 +2038,10.190000000000115,-0.07272679297744952 +2039,10.195000000000114,-0.07272561153859373 +2040,10.200000000000113,-0.07272443041855031 +2041,10.205000000000112,-0.07272324961723886 +2042,10.210000000000111,-0.07272206913457904 +2043,10.21500000000011,-0.07272088897049055 +2044,10.220000000000109,-0.07271970912489308 +2045,10.225000000000108,-0.07271852959770633 +2046,10.230000000000107,-0.0727173503888501 +2047,10.235000000000106,-0.07271617149824416 +2048,10.240000000000105,-0.07271499292580832 +2049,10.245000000000104,-0.07271381467146242 +2050,10.250000000000103,-0.07271263673512629 +2051,10.255000000000102,-0.07271145911671986 +2052,10.260000000000101,-0.07271028181616303 +2053,10.2650000000001,-0.07270910483337574 +2054,10.270000000000099,-0.07270792816827792 +2055,10.275000000000098,-0.07270675182078959 +2056,10.280000000000097,-0.07270557579083078 +2057,10.285000000000096,-0.07270440007832152 +2058,10.290000000000095,-0.07270322468318186 +2059,10.295000000000094,-0.07270204960533191 +2060,10.300000000000093,-0.07270087484469179 +2061,10.305000000000092,-0.07269970040118162 +2062,10.310000000000091,-0.07269852627472159 +2063,10.31500000000009,-0.07269735246523189 +2064,10.320000000000089,-0.07269617897263274 +2065,10.325000000000088,-0.07269500579684439 +2066,10.330000000000087,-0.07269383293778711 +2067,10.335000000000086,-0.07269266039538118 +2068,10.340000000000085,-0.07269148816954694 +2069,10.345000000000084,-0.07269031626020474 +2070,10.350000000000083,-0.07268914466727493 +2071,10.355000000000082,-0.07268797339067792 +2072,10.360000000000081,-0.07268680243033414 +2073,10.36500000000008,-0.07268563178616402 +2074,10.37000000000008,-0.07268446145808806 +2075,10.375000000000078,-0.0726832914460267 +2076,10.380000000000077,-0.07268212174990052 +2077,10.385000000000076,-0.07268095236963004 +2078,10.390000000000075,-0.07267978330513583 +2079,10.395000000000074,-0.07267861455633849 +2080,10.400000000000073,-0.07267744612315864 +2081,10.405000000000072,-0.07267627800551693 +2082,10.410000000000071,-0.07267511020333403 +2083,10.41500000000007,-0.07267394271653063 +2084,10.42000000000007,-0.07267277554502745 +2085,10.425000000000068,-0.07267160868874524 +2086,10.430000000000067,-0.07267044214760476 +2087,10.435000000000066,-0.0726692759215268 +2088,10.440000000000065,-0.07266811001043219 +2089,10.445000000000064,-0.07266694441424178 +2090,10.450000000000063,-0.07266577913287639 +2091,10.455000000000062,-0.07266461416625697 +2092,10.460000000000061,-0.07266344951430441 +2093,10.46500000000006,-0.07266228517693964 +2094,10.47000000000006,-0.07266112115408363 +2095,10.475000000000058,-0.07265995744565737 +2096,10.480000000000057,-0.07265879405158188 +2097,10.485000000000056,-0.07265763097177819 +2098,10.490000000000055,-0.07265646820616735 +2099,10.495000000000054,-0.07265530575467045 +2100,10.500000000000053,-0.07265414361720861 +2101,10.505000000000052,-0.07265298179370296 +2102,10.510000000000051,-0.07265182028407463 +2103,10.51500000000005,-0.07265065908824483 +2104,10.52000000000005,-0.07264949820613477 +2105,10.525000000000048,-0.07264833763766565 +2106,10.530000000000047,-0.07264717738275875 +2107,10.535000000000046,-0.07264601744133531 +2108,10.540000000000045,-0.07264485781331664 +2109,10.545000000000044,-0.0726436984986241 +2110,10.550000000000043,-0.072642539497179 +2111,10.555000000000042,-0.07264138080890273 +2112,10.560000000000041,-0.07264022243371666 +2113,10.56500000000004,-0.07263906437154223 +2114,10.57000000000004,-0.07263790662230088 +2115,10.575000000000038,-0.07263674918591406 +2116,10.580000000000037,-0.07263559206230327 +2117,10.585000000000036,-0.07263443525139003 +2118,10.590000000000035,-0.07263327875309586 +2119,10.595000000000034,-0.0726321225673423 +2120,10.600000000000033,-0.07263096669405099 +2121,10.605000000000032,-0.07262981113314348 +2122,10.610000000000031,-0.07262865588454143 +2123,10.61500000000003,-0.07262750094816649 +2124,10.62000000000003,-0.07262634632394031 +2125,10.625000000000028,-0.07262519201178462 +2126,10.630000000000027,-0.07262403801162112 +2127,10.635000000000026,-0.07262288432337156 +2128,10.640000000000025,-0.07262173094695773 +2129,10.645000000000024,-0.07262057788230139 +2130,10.650000000000023,-0.07261942512932437 +2131,10.655000000000022,-0.07261827268794849 +2132,10.660000000000021,-0.07261712055809563 +2133,10.66500000000002,-0.07261596873968768 +2134,10.67000000000002,-0.07261481723264651 +2135,10.675000000000018,-0.07261366603689409 +2136,10.680000000000017,-0.07261251515235234 +2137,10.685000000000016,-0.07261136457894325 +2138,10.690000000000015,-0.07261021431658882 +2139,10.695000000000014,-0.07260906436521104 +2140,10.700000000000014,-0.072607914724732 +2141,10.705000000000013,-0.07260676539507374 +2142,10.710000000000012,-0.07260561637615834 +2143,10.71500000000001,-0.07260446766790793 +2144,10.72000000000001,-0.07260331927024463 +2145,10.725000000000009,-0.0726021711830906 +2146,10.730000000000008,-0.07260102340636804 +2147,10.735000000000007,-0.0725998759399991 +2148,10.740000000000006,-0.07259872878390604 +2149,10.745000000000005,-0.07259758193801111 +2150,10.750000000000004,-0.07259643540223656 +2151,10.755000000000003,-0.07259528917650471 +2152,10.760000000000002,-0.07259414326073783 +2153,10.765,-0.0725929976548583 +2154,10.77,-0.07259185235878844 +2155,10.774999999999999,-0.07259070737245067 +2156,10.779999999999998,-0.07258956269576736 +2157,10.784999999999997,-0.07258841832866093 +2158,10.789999999999996,-0.07258727427105385 +2159,10.794999999999995,-0.07258613052286861 +2160,10.799999999999994,-0.07258498708402765 +2161,10.804999999999993,-0.0725838439544535 +2162,10.809999999999992,-0.07258270113406871 +2163,10.81499999999999,-0.07258155862279583 +2164,10.81999999999999,-0.07258041642055743 +2165,10.824999999999989,-0.07257927452727612 +2166,10.829999999999988,-0.07257813294287455 +2167,10.834999999999987,-0.07257699166727533 +2168,10.839999999999986,-0.07257585070040112 +2169,10.844999999999985,-0.07257471004217464 +2170,10.849999999999984,-0.07257356969251859 +2171,10.854999999999983,-0.07257242965135571 +2172,10.859999999999982,-0.07257128991860874 +2173,10.86499999999998,-0.07257015049420046 +2174,10.86999999999998,-0.07256901137805367 +2175,10.874999999999979,-0.07256787257009122 +2176,10.879999999999978,-0.0725667340702359 +2177,10.884999999999977,-0.0725655958784106 +2178,10.889999999999976,-0.07256445799453821 +2179,10.894999999999975,-0.07256332041854163 +2180,10.899999999999974,-0.0725621831503438 +2181,10.904999999999973,-0.07256104618986765 +2182,10.909999999999972,-0.07255990953703616 +2183,10.91499999999997,-0.07255877319177233 +2184,10.91999999999997,-0.07255763715399918 +2185,10.924999999999969,-0.07255650142363973 +2186,10.929999999999968,-0.07255536600061704 +2187,10.934999999999967,-0.0725542308848542 +2188,10.939999999999966,-0.0725530960762743 +2189,10.944999999999965,-0.07255196157480047 +2190,10.949999999999964,-0.07255082738035586 +2191,10.954999999999963,-0.07254969349286361 +2192,10.959999999999962,-0.07254855991224692 +2193,10.96499999999996,-0.07254742663842899 +2194,10.96999999999996,-0.07254629367133306 +2195,10.974999999999959,-0.07254516101088239 +2196,10.979999999999958,-0.07254402865700021 +2197,10.984999999999957,-0.07254289660960986 +2198,10.989999999999956,-0.07254176486863462 +2199,10.994999999999955,-0.07254063343399784 +2200,10.999999999999954,-0.07253950230562288 +2201,11.004999999999953,-0.0725383714834331 +2202,11.009999999999952,-0.0725372409673519 +2203,11.01499999999995,-0.0725361107573027 +2204,11.01999999999995,-0.07253498085320893 +2205,11.024999999999949,-0.07253385125499409 +2206,11.029999999999948,-0.07253272196258162 +2207,11.034999999999947,-0.07253159297589504 +2208,11.039999999999946,-0.07253046429485786 +2209,11.044999999999945,-0.07252933591939364 +2210,11.049999999999944,-0.07252820784942596 +2211,11.054999999999943,-0.07252708008487836 +2212,11.059999999999942,-0.07252595262567448 +2213,11.06499999999994,-0.07252482547173794 +2214,11.06999999999994,-0.07252369862299239 +2215,11.074999999999939,-0.07252257207936148 +2216,11.079999999999938,-0.07252144584076892 +2217,11.084999999999937,-0.07252031990713842 +2218,11.089999999999936,-0.0725191942783937 +2219,11.094999999999935,-0.07251806895445852 +2220,11.099999999999934,-0.07251694393525665 +2221,11.104999999999933,-0.07251581922071187 +2222,11.109999999999932,-0.07251469481074803 +2223,11.114999999999931,-0.07251357070528892 +2224,11.11999999999993,-0.07251244690425843 +2225,11.124999999999929,-0.0725113234075804 +2226,11.129999999999928,-0.07251020021517876 +2227,11.134999999999927,-0.07250907732697741 +2228,11.139999999999926,-0.07250795474290027 +2229,11.144999999999925,-0.07250683246287132 +2230,11.149999999999924,-0.07250571048681452 +2231,11.154999999999923,-0.07250458881465388 +2232,11.159999999999922,-0.07250346744631343 +2233,11.164999999999921,-0.0725023463817172 +2234,11.16999999999992,-0.07250122562078921 +2235,11.174999999999919,-0.0725001051634536 +2236,11.179999999999918,-0.07249898500963442 +2237,11.184999999999917,-0.07249786515925581 +2238,11.189999999999916,-0.07249674561224191 +2239,11.194999999999915,-0.07249562636851688 +2240,11.199999999999914,-0.0724945074280049 +2241,11.204999999999913,-0.07249338879063015 +2242,11.209999999999912,-0.07249227045631687 +2243,11.214999999999911,-0.07249115242498931 +2244,11.21999999999991,-0.0724900346965717 +2245,11.224999999999909,-0.07248891727098834 +2246,11.229999999999908,-0.07248780014816353 +2247,11.234999999999907,-0.07248668332802159 +2248,11.239999999999906,-0.07248556681048685 +2249,11.244999999999905,-0.07248445059548368 +2250,11.249999999999904,-0.07248333468293645 +2251,11.254999999999903,-0.07248221907276958 +2252,11.259999999999902,-0.07248110376490748 +2253,11.264999999999901,-0.07247998875927458 +2254,11.2699999999999,-0.07247887405579534 +2255,11.274999999999899,-0.07247775965439426 +2256,11.279999999999898,-0.07247664555499583 +2257,11.284999999999897,-0.07247553175752455 +2258,11.289999999999896,-0.07247441826190498 +2259,11.294999999999895,-0.07247330506806168 +2260,11.299999999999894,-0.07247219217591921 +2261,11.304999999999893,-0.07247107958540219 +2262,11.309999999999892,-0.07246996729643523 +2263,11.314999999999891,-0.07246885530894297 +2264,11.31999999999989,-0.07246774362285005 +2265,11.32499999999989,-0.07246663223808118 +2266,11.329999999999888,-0.07246552115456104 +2267,11.334999999999887,-0.07246441037221434 +2268,11.339999999999886,-0.0724632998909658 +2269,11.344999999999885,-0.07246218971074021 +2270,11.349999999999884,-0.07246107983146233 +2271,11.354999999999883,-0.07245997025305695 +2272,11.359999999999882,-0.0724588609754489 +2273,11.364999999999881,-0.072457751998563 +2274,11.36999999999988,-0.0724566433223241 +2275,11.37499999999988,-0.07245553494665709 +2276,11.379999999999878,-0.07245442687148683 +2277,11.384999999999877,-0.07245331909673827 +2278,11.389999999999876,-0.07245221162233632 +2279,11.394999999999875,-0.07245110444820593 +2280,11.399999999999874,-0.07244999757427206 +2281,11.404999999999873,-0.07244889100045973 +2282,11.409999999999872,-0.07244778472669391 +2283,11.414999999999871,-0.07244667875289966 +2284,11.41999999999987,-0.072445573079002 +2285,11.42499999999987,-0.07244446770492603 +2286,11.429999999999868,-0.0724433626305968 +2287,11.434999999999867,-0.07244225785593943 +2288,11.439999999999866,-0.07244115338087904 +2289,11.444999999999865,-0.07244004920534079 +2290,11.449999999999864,-0.07243894532924983 +2291,11.454999999999863,-0.07243784175253132 +2292,11.459999999999862,-0.0724367384751105 +2293,11.464999999999861,-0.07243563549691254 +2294,11.46999999999986,-0.07243453281786272 +2295,11.47499999999986,-0.07243343043788629 +2296,11.479999999999858,-0.07243232835690852 +2297,11.484999999999857,-0.0724312265748547 +2298,11.489999999999856,-0.07243012509165017 +2299,11.494999999999855,-0.07242902390722024 +2300,11.499999999999854,-0.07242792302149027 +2301,11.504999999999853,-0.07242682243438563 +2302,11.509999999999852,-0.0724257221458317 +2303,11.514999999999851,-0.0724246221557539 +2304,11.51999999999985,-0.07242352246407768 +2305,11.52499999999985,-0.07242242307072846 +2306,11.529999999999848,-0.07242132397563171 +2307,11.534999999999847,-0.07242022517871291 +2308,11.539999999999846,-0.07241912667989758 +2309,11.544999999999845,-0.07241802847911125 +2310,11.549999999999844,-0.07241693057627943 +2311,11.554999999999843,-0.0724158329713277 +2312,11.559999999999842,-0.07241473566418165 +2313,11.564999999999841,-0.07241363865476685 +2314,11.56999999999984,-0.07241254194300895 +2315,11.57499999999984,-0.07241144552883355 +2316,11.579999999999838,-0.07241034941216634 +2317,11.584999999999837,-0.07240925359293297 +2318,11.589999999999836,-0.07240815807105913 +2319,11.594999999999835,-0.07240706284647055 +2320,11.599999999999834,-0.07240596791909294 +2321,11.604999999999833,-0.07240487328885206 +2322,11.609999999999832,-0.07240377895567368 +2323,11.614999999999831,-0.07240268491948357 +2324,11.61999999999983,-0.07240159118020753 +2325,11.62499999999983,-0.07240049773777141 +2326,11.629999999999828,-0.07239940459210102 +2327,11.634999999999827,-0.07239831174312224 +2328,11.639999999999826,-0.07239721919076093 +2329,11.644999999999825,-0.07239612693494302 +2330,11.649999999999824,-0.07239503497559437 +2331,11.654999999999824,-0.07239394331264096 +2332,11.659999999999823,-0.07239285194600872 +2333,11.664999999999822,-0.07239176087562363 +2334,11.66999999999982,-0.07239067010141167 +2335,11.67499999999982,-0.07238957962329885 +2336,11.679999999999819,-0.0723884894412112 +2337,11.684999999999818,-0.07238739955507477 +2338,11.689999999999817,-0.0723863099648156 +2339,11.694999999999816,-0.07238522067035978 +2340,11.699999999999815,-0.07238413167163343 +2341,11.704999999999814,-0.07238304296856264 +2342,11.709999999999813,-0.07238195456107355 +2343,11.714999999999812,-0.07238086644909231 +2344,11.71999999999981,-0.07237977863254512 +2345,11.72499999999981,-0.07237869111135814 +2346,11.729999999999809,-0.0723776038854576 +2347,11.734999999999808,-0.0723765169547697 +2348,11.739999999999807,-0.0723754303192207 +2349,11.744999999999806,-0.07237434397873686 +2350,11.749999999999805,-0.07237325793324448 +2351,11.754999999999804,-0.07237217218266984 +2352,11.759999999999803,-0.07237108672693926 +2353,11.764999999999802,-0.07237000156597907 +2354,11.7699999999998,-0.07236891669971564 +2355,11.7749999999998,-0.07236783212807534 +2356,11.779999999999799,-0.07236674785098454 +2357,11.784999999999798,-0.07236566386836966 +2358,11.789999999999797,-0.07236458018015714 +2359,11.794999999999796,-0.0723634967862734 +2360,11.799999999999795,-0.07236241368664492 +2361,11.804999999999794,-0.07236133088119817 +2362,11.809999999999793,-0.07236024836985964 +2363,11.814999999999792,-0.07235916615255589 +2364,11.81999999999979,-0.0723580842292134 +2365,11.82499999999979,-0.07235700259975876 +2366,11.829999999999789,-0.07235592126411851 +2367,11.834999999999788,-0.07235484022221926 +2368,11.839999999999787,-0.07235375947398762 +2369,11.844999999999786,-0.07235267901935018 +2370,11.849999999999785,-0.07235159885823361 +2371,11.854999999999784,-0.07235051899056458 +2372,11.859999999999783,-0.07234943941626974 +2373,11.864999999999782,-0.07234836013527582 +2374,11.86999999999978,-0.07234728114750949 +2375,11.87499999999978,-0.07234620245289752 +2376,11.879999999999779,-0.07234512405136663 +2377,11.884999999999778,-0.07234404594284359 +2378,11.889999999999777,-0.0723429681272552 +2379,11.894999999999776,-0.07234189060452827 +2380,11.899999999999775,-0.07234081337458959 +2381,11.904999999999774,-0.07233973643736602 +2382,11.909999999999773,-0.0723386597927844 +2383,11.914999999999772,-0.07233758344077161 +2384,11.91999999999977,-0.07233650738125455 +2385,11.92499999999977,-0.07233543161416012 +2386,11.929999999999769,-0.07233435613941523 +2387,11.934999999999768,-0.07233328095694687 +2388,11.939999999999767,-0.07233220606668195 +2389,11.944999999999766,-0.07233113146854749 +2390,11.949999999999765,-0.07233005716247046 +2391,11.954999999999764,-0.07232898314837788 +2392,11.959999999999763,-0.07232790942619678 +2393,11.964999999999762,-0.07232683599585422 +2394,11.96999999999976,-0.07232576285727726 +2395,11.97499999999976,-0.072324690010393 +2396,11.979999999999759,-0.07232361745512851 +2397,11.984999999999758,-0.07232254519141094 +2398,11.989999999999757,-0.0723214732191674 +2399,11.994999999999756,-0.07232040153832507 +2400,11.999999999999755,-0.07231933014881112 +2401,12.004999999999754,-0.07231825905055272 +2402,12.009999999999753,-0.0723171882434771 +2403,12.014999999999752,-0.07231611772751147 +2404,12.01999999999975,-0.07231504750258307 +2405,12.02499999999975,-0.07231397756861918 +2406,12.029999999999749,-0.07231290792554705 +2407,12.034999999999748,-0.072311838573294 +2408,12.039999999999747,-0.07231076951178733 +2409,12.044999999999746,-0.07230970074095436 +2410,12.049999999999745,-0.07230863226072246 +2411,12.054999999999744,-0.07230756407101896 +2412,12.059999999999743,-0.07230649617177128 +2413,12.064999999999742,-0.07230542856290678 +2414,12.069999999999741,-0.07230436124435291 +2415,12.07499999999974,-0.07230329421603708 +2416,12.079999999999739,-0.07230222747788674 +2417,12.084999999999738,-0.07230116102982938 +2418,12.089999999999737,-0.07230009487179245 +2419,12.094999999999736,-0.0722990290037035 +2420,12.099999999999735,-0.07229796342549001 +2421,12.104999999999734,-0.07229689813707954 +2422,12.109999999999733,-0.07229583313839963 +2423,12.114999999999732,-0.07229476842937786 +2424,12.119999999999731,-0.0722937040099418 +2425,12.12499999999973,-0.07229263988001906 +2426,12.129999999999729,-0.07229157603953729 +2427,12.134999999999728,-0.07229051248842411 +2428,12.139999999999727,-0.07228944922660718 +2429,12.144999999999726,-0.07228838625401417 +2430,12.149999999999725,-0.07228732357057277 +2431,12.154999999999724,-0.07228626117621069 +2432,12.159999999999723,-0.07228519907085568 +2433,12.164999999999722,-0.07228413725443544 +2434,12.169999999999721,-0.07228307572687775 +2435,12.17499999999972,-0.0722820144881104 +2436,12.179999999999719,-0.07228095353806117 +2437,12.184999999999718,-0.07227989287665787 +2438,12.189999999999717,-0.07227883250382833 +2439,12.194999999999716,-0.0722777724195004 +2440,12.199999999999715,-0.07227671262360193 +2441,12.204999999999714,-0.07227565311606081 +2442,12.209999999999713,-0.07227459389680493 +2443,12.214999999999712,-0.0722735349657622 +2444,12.219999999999711,-0.07227247632286057 +2445,12.22499999999971,-0.07227141796802798 +2446,12.229999999999709,-0.07227035990119236 +2447,12.234999999999708,-0.07226930212228175 +2448,12.239999999999707,-0.0722682446312241 +2449,12.244999999999706,-0.07226718742794744 +2450,12.249999999999705,-0.07226613051237979 +2451,12.254999999999704,-0.07226507388444922 +2452,12.259999999999703,-0.07226401754408379 +2453,12.264999999999702,-0.07226296149121157 +2454,12.269999999999701,-0.07226190572576068 +2455,12.2749999999997,-0.0722608502476592 +2456,12.2799999999997,-0.07225979505683529 +2457,12.284999999999698,-0.07225874015321711 +2458,12.289999999999697,-0.0722576855367328 +2459,12.294999999999696,-0.07225663120731055 +2460,12.299999999999695,-0.07225557716487857 +2461,12.304999999999694,-0.07225452340936508 +2462,12.309999999999693,-0.0722534699406983 +2463,12.314999999999692,-0.07225241675880648 +2464,12.319999999999691,-0.0722513638636179 +2465,12.32499999999969,-0.07225031125506082 +2466,12.32999999999969,-0.07224925893306357 +2467,12.334999999999688,-0.07224820689755446 +2468,12.339999999999687,-0.0722471551484618 +2469,12.344999999999686,-0.07224610368571398 +2470,12.349999999999685,-0.07224505250923934 +2471,12.354999999999684,-0.07224400161896627 +2472,12.359999999999683,-0.07224295101482317 +2473,12.364999999999682,-0.07224190069673846 +2474,12.369999999999681,-0.07224085066464057 +2475,12.37499999999968,-0.07223980091845796 +2476,12.37999999999968,-0.07223875145811909 +2477,12.384999999999678,-0.07223770228355243 +2478,12.389999999999677,-0.07223665339468653 +2479,12.394999999999676,-0.07223560479144986 +2480,12.399999999999675,-0.07223455647377097 +2481,12.404999999999674,-0.0722335084415784 +2482,12.409999999999673,-0.07223246069480073 +2483,12.414999999999672,-0.07223141323336653 +2484,12.419999999999671,-0.07223036605720441 +2485,12.42499999999967,-0.07222931916624299 +2486,12.42999999999967,-0.07222827256041091 +2487,12.434999999999668,-0.07222722623963679 +2488,12.439999999999667,-0.07222618020384933 +2489,12.444999999999666,-0.0722251344529772 +2490,12.449999999999665,-0.07222408898694907 +2491,12.454999999999664,-0.0722230438056937 +2492,12.459999999999663,-0.07222199890913981 +2493,12.464999999999662,-0.07222095429721616 +2494,12.469999999999661,-0.07221990996985148 +2495,12.47499999999966,-0.07221886592697456 +2496,12.47999999999966,-0.07221782216851422 +2497,12.484999999999658,-0.07221677869439927 +2498,12.489999999999657,-0.07221573550455852 +2499,12.494999999999656,-0.07221469259892085 +2500,12.499999999999655,-0.0722136499774151 +2501,12.504999999999654,-0.07221260763997016 +2502,12.509999999999653,-0.07221156558651493 +2503,12.514999999999652,-0.0722105238169783 +2504,12.519999999999651,-0.07220948233128921 +2505,12.52499999999965,-0.07220844112937662 +2506,12.52999999999965,-0.07220740021116949 +2507,12.534999999999648,-0.07220635957659678 +2508,12.539999999999647,-0.0722053192255875 +2509,12.544999999999646,-0.07220427915807066 +2510,12.549999999999645,-0.07220323937397528 +2511,12.554999999999644,-0.07220219987323041 +2512,12.559999999999643,-0.07220116065576511 +2513,12.564999999999642,-0.07220012172150846 +2514,12.569999999999641,-0.07219908307038954 +2515,12.57499999999964,-0.07219804470233745 +2516,12.57999999999964,-0.07219700661728135 +2517,12.584999999999638,-0.07219596881515035 +2518,12.589999999999637,-0.07219493129587364 +2519,12.594999999999636,-0.07219389405938034 +2520,12.599999999999635,-0.07219285710559968 +2521,12.604999999999634,-0.07219182043446089 +2522,12.609999999999634,-0.07219078404589314 +2523,12.614999999999633,-0.07218974793982569 +2524,12.619999999999632,-0.0721887121161878 +2525,12.62499999999963,-0.07218767657490874 +2526,12.62999999999963,-0.07218664131591779 +2527,12.634999999999629,-0.07218560633914424 +2528,12.639999999999628,-0.07218457164451744 +2529,12.644999999999627,-0.07218353723196673 +2530,12.649999999999626,-0.07218250310142144 +2531,12.654999999999625,-0.07218146925281092 +2532,12.659999999999624,-0.0721804356860646 +2533,12.664999999999623,-0.07217940240111184 +2534,12.669999999999622,-0.07217836939788208 +2535,12.67499999999962,-0.07217733667630474 +2536,12.67999999999962,-0.07217630423630927 +2537,12.684999999999619,-0.07217527207782516 +2538,12.689999999999618,-0.07217424020078185 +2539,12.694999999999617,-0.07217320860510887 +2540,12.699999999999616,-0.0721721772907357 +2541,12.704999999999615,-0.0721711462575919 +2542,12.709999999999614,-0.07217011550560701 +2543,12.714999999999613,-0.07216908503471056 +2544,12.719999999999612,-0.07216805484483217 +2545,12.72499999999961,-0.07216702493590141 +2546,12.72999999999961,-0.07216599530784788 +2547,12.734999999999609,-0.07216496596060122 +2548,12.739999999999608,-0.07216393689409108 +2549,12.744999999999607,-0.07216290810824709 +2550,12.749999999999606,-0.07216187960299895 +2551,12.754999999999605,-0.07216085137827634 +2552,12.759999999999604,-0.07215982343400894 +2553,12.764999999999603,-0.0721587957701265 +2554,12.769999999999602,-0.07215776838655875 +2555,12.7749999999996,-0.07215674128323546 +2556,12.7799999999996,-0.07215571446008637 +2557,12.784999999999599,-0.07215468791704127 +2558,12.789999999999598,-0.07215366165402998 +2559,12.794999999999597,-0.07215263567098229 +2560,12.799999999999596,-0.07215160996782806 +2561,12.804999999999595,-0.0721505845444971 +2562,12.809999999999594,-0.07214955940091931 +2563,12.814999999999593,-0.07214853453702456 +2564,12.819999999999592,-0.07214750995274274 +2565,12.82499999999959,-0.07214648564800376 +2566,12.82999999999959,-0.07214546162273756 +2567,12.834999999999589,-0.07214443787687407 +2568,12.839999999999588,-0.07214341441034325 +2569,12.844999999999587,-0.07214239122307507 +2570,12.849999999999586,-0.07214136831499954 +2571,12.854999999999585,-0.07214034568604666 +2572,12.859999999999584,-0.07213932333614645 +2573,12.864999999999583,-0.07213830126522895 +2574,12.869999999999582,-0.0721372794732242 +2575,12.87499999999958,-0.07213625796006229 +2576,12.87999999999958,-0.07213523672567328 +2577,12.884999999999579,-0.07213421576998731 +2578,12.889999999999578,-0.07213319509293448 +2579,12.894999999999577,-0.0721321746944449 +2580,12.899999999999576,-0.07213115457444874 +2581,12.904999999999575,-0.07213013473287617 +2582,12.909999999999574,-0.07212911516965737 +2583,12.914999999999573,-0.07212809588472252 +2584,12.919999999999572,-0.07212707687800184 +2585,12.92499999999957,-0.07212605814942555 +2586,12.92999999999957,-0.07212503969892392 +2587,12.934999999999569,-0.07212402152642718 +2588,12.939999999999568,-0.0721230036318656 +2589,12.944999999999567,-0.0721219860151695 +2590,12.949999999999566,-0.07212096867626916 +2591,12.954999999999565,-0.07211995161509492 +2592,12.959999999999564,-0.07211893483157711 +2593,12.964999999999563,-0.07211791832564607 +2594,12.969999999999562,-0.0721169020972322 +2595,12.97499999999956,-0.07211588614626585 +2596,12.97999999999956,-0.07211487047267744 +2597,12.984999999999559,-0.07211385507639738 +2598,12.989999999999558,-0.0721128399573561 +2599,12.994999999999557,-0.07211182511548403 +2600,12.999999999999556,-0.07211081055071167 +2601,13.004999999999555,-0.07210979626296946 +2602,13.009999999999554,-0.0721087822521879 +2603,13.014999999999553,-0.07210776851829753 +2604,13.019999999999552,-0.07210675506122885 +2605,13.024999999999551,-0.07210574188091241 +2606,13.02999999999955,-0.07210472897727876 +2607,13.034999999999549,-0.07210371635025849 +2608,13.039999999999548,-0.07210270399978214 +2609,13.044999999999547,-0.07210169192578035 +2610,13.049999999999546,-0.07210068012818373 +2611,13.054999999999545,-0.0720996686069229 +2612,13.059999999999544,-0.07209865736192855 +2613,13.064999999999543,-0.0720976463931313 +2614,13.069999999999542,-0.07209663570046185 +2615,13.074999999999541,-0.07209562528385088 +2616,13.07999999999954,-0.07209461514322912 +2617,13.084999999999539,-0.07209360527852729 +2618,13.089999999999538,-0.07209259568967613 +2619,13.094999999999537,-0.0720915863766064 +2620,13.099999999999536,-0.07209057733924888 +2621,13.104999999999535,-0.07208956857753435 +2622,13.109999999999534,-0.07208856009139362 +2623,13.114999999999533,-0.07208755188075751 +2624,13.119999999999532,-0.07208654394555683 +2625,13.124999999999531,-0.07208553628572245 +2626,13.12999999999953,-0.07208452890118525 +2627,13.134999999999529,-0.07208352179187609 +2628,13.139999999999528,-0.07208251495772589 +2629,13.144999999999527,-0.07208150839866552 +2630,13.149999999999526,-0.07208050211462594 +2631,13.154999999999525,-0.0720794961055381 +2632,13.159999999999524,-0.07207849037133293 +2633,13.164999999999523,-0.07207748491194142 +2634,13.169999999999522,-0.07207647972729457 +2635,13.174999999999521,-0.07207547481732338 +2636,13.17999999999952,-0.07207447018195884 +2637,13.184999999999519,-0.072073465821132 +2638,13.189999999999518,-0.07207246173477394 +2639,13.194999999999517,-0.0720714579228157 +2640,13.199999999999516,-0.07207045438518836 +2641,13.204999999999515,-0.07206945112182302 +2642,13.209999999999514,-0.0720684481326508 +2643,13.214999999999513,-0.07206744541760282 +2644,13.219999999999512,-0.07206644297661023 +2645,13.224999999999511,-0.07206544080960418 +2646,13.22999999999951,-0.07206443891651586 +2647,13.23499999999951,-0.07206343729727642 +2648,13.239999999999508,-0.07206243595181709 +2649,13.244999999999507,-0.07206143488006911 +2650,13.249999999999506,-0.07206043408196366 +2651,13.254999999999505,-0.07205943355743205 +2652,13.259999999999504,-0.0720584333064055 +2653,13.264999999999503,-0.07205743332881533 +2654,13.269999999999502,-0.07205643362459278 +2655,13.274999999999501,-0.07205543419366922 +2656,13.2799999999995,-0.07205443503597593 +2657,13.2849999999995,-0.07205343615144427 +2658,13.289999999999498,-0.07205243754000562 +2659,13.294999999999497,-0.07205143920159132 +2660,13.299999999999496,-0.07205044113613278 +2661,13.304999999999495,-0.07204944334356138 +2662,13.309999999999494,-0.07204844582380855 +2663,13.314999999999493,-0.07204744857680573 +2664,13.319999999999492,-0.07204645160248434 +2665,13.324999999999491,-0.07204545490077587 +2666,13.32999999999949,-0.07204445847161178 +2667,13.33499999999949,-0.07204346231492358 +2668,13.339999999999488,-0.07204246643064276 +2669,13.344999999999487,-0.07204147081870088 +2670,13.349999999999486,-0.07204047547902943 +2671,13.354999999999485,-0.07203948041156003 +2672,13.359999999999484,-0.07203848561622418 +2673,13.364999999999483,-0.0720374910929535 +2674,13.369999999999482,-0.07203649684167959 +2675,13.374999999999481,-0.07203550286233405 +2676,13.37999999999948,-0.07203450915484853 +2677,13.38499999999948,-0.07203351571915467 +2678,13.389999999999478,-0.07203252255518411 +2679,13.394999999999477,-0.07203152966286853 +2680,13.399999999999476,-0.07203053704213966 +2681,13.404999999999475,-0.07202954469292916 +2682,13.409999999999474,-0.07202855261516877 +2683,13.414999999999473,-0.07202756080879025 +2684,13.419999999999472,-0.0720265692737253 +2685,13.424999999999471,-0.07202557800990572 +2686,13.42999999999947,-0.07202458701726328 +2687,13.43499999999947,-0.07202359629572977 +2688,13.439999999999468,-0.07202260584523702 +2689,13.444999999999467,-0.07202161566571685 +2690,13.449999999999466,-0.07202062575710111 +2691,13.454999999999465,-0.07201963611932162 +2692,13.459999999999464,-0.07201864675231029 +2693,13.464999999999463,-0.072017657655999 +2694,13.469999999999462,-0.07201666883031965 +2695,13.474999999999461,-0.07201568027520415 +2696,13.47999999999946,-0.07201469199058443 +2697,13.48499999999946,-0.07201370397639244 +2698,13.489999999999458,-0.07201271623256014 +2699,13.494999999999457,-0.07201172875901952 +2700,13.499999999999456,-0.07201074155570257 +2701,13.504999999999455,-0.07200975462254128 +2702,13.509999999999454,-0.07200876795946769 +2703,13.514999999999453,-0.07200778156641383 +2704,13.519999999999452,-0.07200679544331175 +2705,13.524999999999451,-0.07200580959009352 +2706,13.52999999999945,-0.07200482400669123 +2707,13.53499999999945,-0.07200383869303696 +2708,13.539999999999448,-0.07200285364906284 +2709,13.544999999999447,-0.07200186887470096 +2710,13.549999999999446,-0.07200088436988351 +2711,13.554999999999445,-0.07199990013454262 +2712,13.559999999999444,-0.07199891616861047 +2713,13.564999999999444,-0.07199793247201924 +2714,13.569999999999443,-0.07199694904470114 +2715,13.574999999999442,-0.07199596588658838 +2716,13.57999999999944,-0.0719949829976132 +2717,13.58499999999944,-0.07199400037770784 +2718,13.589999999999439,-0.07199301802680456 +2719,13.594999999999438,-0.07199203594483565 +2720,13.599999999999437,-0.07199105413173337 +2721,13.604999999999436,-0.07199007258743008 +2722,13.609999999999435,-0.07198909131185804 +2723,13.614999999999434,-0.07198811030494963 +2724,13.619999999999433,-0.07198712956663718 +2725,13.624999999999432,-0.07198614909685307 +2726,13.62999999999943,-0.07198516889552967 +2727,13.63499999999943,-0.07198418896259938 +2728,13.639999999999429,-0.0719832092979946 +2729,13.644999999999428,-0.07198222990164775 +2730,13.649999999999427,-0.07198125077349131 +2731,13.654999999999426,-0.0719802719134577 +2732,13.659999999999425,-0.0719792933214794 +2733,13.664999999999424,-0.0719783149974889 +2734,13.669999999999423,-0.07197733694141868 +2735,13.674999999999422,-0.07197635915320127 +2736,13.67999999999942,-0.0719753816327692 +2737,13.68499999999942,-0.07197440438005502 +2738,13.689999999999419,-0.07197342739499128 +2739,13.694999999999418,-0.07197245067751055 +2740,13.699999999999417,-0.07197147422754543 +2741,13.704999999999416,-0.0719704980450285 +2742,13.709999999999415,-0.07196952212989241 +2743,13.714999999999414,-0.07196854648206978 +2744,13.719999999999413,-0.07196757110149327 +2745,13.724999999999412,-0.0719665959880955 +2746,13.72999999999941,-0.0719656211418092 +2747,13.73499999999941,-0.07196464656256703 +2748,13.739999999999409,-0.0719636722503017 +2749,13.744999999999408,-0.07196269820494595 +2750,13.749999999999407,-0.07196172442643249 +2751,13.754999999999406,-0.0719607509146941 +2752,13.759999999999405,-0.07195977766966354 +2753,13.764999999999404,-0.07195880469127357 +2754,13.769999999999403,-0.07195783197945702 +2755,13.774999999999402,-0.07195685953414666 +2756,13.7799999999994,-0.07195588735527533 +2757,13.7849999999994,-0.07195491544277591 +2758,13.789999999999399,-0.07195394379658118 +2759,13.794999999999398,-0.07195297241662409 +2760,13.799999999999397,-0.07195200130283745 +2761,13.804999999999396,-0.07195103045515419 +2762,13.809999999999395,-0.07195005987350726 +2763,13.814999999999394,-0.07194908955782954 +2764,13.819999999999393,-0.07194811950805398 +2765,13.824999999999392,-0.07194714972411356 +2766,13.82999999999939,-0.07194618020594123 +2767,13.83499999999939,-0.07194521095346999 +2768,13.839999999999389,-0.07194424196663285 +2769,13.844999999999388,-0.07194327324536279 +2770,13.849999999999387,-0.07194230478959289 +2771,13.854999999999386,-0.07194133659925615 +2772,13.859999999999385,-0.07194036867428565 +2773,13.864999999999384,-0.07193940101461448 +2774,13.869999999999383,-0.07193843362017571 +2775,13.874999999999382,-0.07193746649090246 +2776,13.87999999999938,-0.07193649962672785 +2777,13.88499999999938,-0.071935533027585 +2778,13.889999999999379,-0.07193456669340706 +2779,13.894999999999378,-0.07193360062412721 +2780,13.899999999999377,-0.07193263481967861 +2781,13.904999999999376,-0.07193166927999445 +2782,13.909999999999375,-0.07193070400500795 +2783,13.914999999999374,-0.07192973899465233 +2784,13.919999999999373,-0.07192877424886082 +2785,13.924999999999372,-0.07192780976756667 +2786,13.92999999999937,-0.07192684555070317 +2787,13.93499999999937,-0.07192588159820357 +2788,13.939999999999369,-0.07192491791000118 +2789,13.944999999999368,-0.0719239544860293 +2790,13.949999999999367,-0.07192299132622126 +2791,13.954999999999366,-0.0719220284305104 +2792,13.959999999999365,-0.07192106579883009 +2793,13.964999999999364,-0.07192010343111366 +2794,13.969999999999363,-0.07191914132729453 +2795,13.974999999999362,-0.07191817948730607 +2796,13.979999999999361,-0.07191721791108169 +2797,13.98499999999936,-0.07191625659855486 +2798,13.989999999999359,-0.07191529554965896 +2799,13.994999999999358,-0.0719143347643275 +2800,13.999999999999357,-0.0719133742424939 +2801,14.004999999999356,-0.07191241398409169 +2802,14.009999999999355,-0.07191145398905434 +2803,14.014999999999354,-0.07191049425731538 +2804,14.019999999999353,-0.07190953478880834 +2805,14.024999999999352,-0.07190857558346674 +2806,14.029999999999351,-0.07190761664122414 +2807,14.03499999999935,-0.07190665796201413 +2808,14.039999999999349,-0.07190569954577031 +2809,14.044999999999348,-0.07190474139242624 +2810,14.049999999999347,-0.07190378350191555 +2811,14.054999999999346,-0.07190282587417189 +2812,14.059999999999345,-0.07190186850912889 +2813,14.064999999999344,-0.0719009114067202 +2814,14.069999999999343,-0.0718999545668795 +2815,14.074999999999342,-0.0718989979895405 +2816,14.079999999999341,-0.07189804167463686 +2817,14.08499999999934,-0.07189708562210233 +2818,14.089999999999339,-0.07189612983187063 +2819,14.094999999999338,-0.07189517430387551 +2820,14.099999999999337,-0.07189421903805072 +2821,14.104999999999336,-0.07189326403433006 +2822,14.109999999999335,-0.0718923092926473 +2823,14.114999999999334,-0.07189135481293625 +2824,14.119999999999333,-0.07189040059513072 +2825,14.124999999999332,-0.07188944663916455 +2826,14.129999999999331,-0.07188849294497157 +2827,14.13499999999933,-0.07188753951248568 +2828,14.139999999999329,-0.07188658634164072 +2829,14.144999999999328,-0.0718856334323706 +2830,14.149999999999327,-0.07188468078460922 +2831,14.154999999999326,-0.0718837283982905 +2832,14.159999999999325,-0.07188277627334837 +2833,14.164999999999324,-0.07188182440971679 +2834,14.169999999999323,-0.07188087280732972 +2835,14.174999999999322,-0.0718799214661211 +2836,14.179999999999321,-0.07187897038602498 +2837,14.18499999999932,-0.07187801956697533 +2838,14.18999999999932,-0.07187706900890618 +2839,14.194999999999318,-0.07187611871175158 +2840,14.199999999999317,-0.07187516867544555 +2841,14.204999999999316,-0.07187421889992218 +2842,14.209999999999315,-0.07187326938511554 +2843,14.214999999999314,-0.0718723201309597 +2844,14.219999999999313,-0.07187137113738881 +2845,14.224999999999312,-0.07187042240433696 +2846,14.229999999999311,-0.07186947393173829 +2847,14.23499999999931,-0.07186852571952695 +2848,14.23999999999931,-0.07186757776763714 +2849,14.244999999999308,-0.07186663007600298 +2850,14.249999999999307,-0.0718656826445587 +2851,14.254999999999306,-0.0718647354732385 +2852,14.259999999999305,-0.07186378856197659 +2853,14.264999999999304,-0.07186284191070723 +2854,14.269999999999303,-0.07186189551936467 +2855,14.274999999999302,-0.07186094938788315 +2856,14.279999999999301,-0.07186000351619697 +2857,14.2849999999993,-0.07185905790424042 +2858,14.2899999999993,-0.0718581125519478 +2859,14.294999999999298,-0.07185716745925344 +2860,14.299999999999297,-0.07185622262609166 +2861,14.304999999999296,-0.07185527805239685 +2862,14.309999999999295,-0.07185433373810333 +2863,14.314999999999294,-0.07185338968314553 +2864,14.319999999999293,-0.07185244588745779 +2865,14.324999999999292,-0.07185150235097455 +2866,14.329999999999291,-0.07185055907363024 +2867,14.33499999999929,-0.07184961605535928 +2868,14.33999999999929,-0.07184867329609612 +2869,14.344999999999288,-0.07184773079577525 +2870,14.349999999999287,-0.07184678855433113 +2871,14.354999999999286,-0.07184584657169825 +2872,14.359999999999285,-0.07184490484781113 +2873,14.364999999999284,-0.07184396338260429 +2874,14.369999999999283,-0.07184302217601225 +2875,14.374999999999282,-0.0718420812279696 +2876,14.379999999999281,-0.07184114053841088 +2877,14.38499999999928,-0.07184020010727067 +2878,14.38999999999928,-0.07183925993448358 +2879,14.394999999999278,-0.07183832001998419 +2880,14.399999999999277,-0.07183738036370715 +2881,14.404999999999276,-0.07183644096558708 +2882,14.409999999999275,-0.07183550182555866 +2883,14.414999999999274,-0.07183456294355652 +2884,14.419999999999273,-0.07183362431951536 +2885,14.424999999999272,-0.07183268595336986 +2886,14.429999999999271,-0.07183174784505475 +2887,14.43499999999927,-0.07183080999450474 +2888,14.43999999999927,-0.07182987240165456 +2889,14.444999999999268,-0.07182893506643898 +2890,14.449999999999267,-0.07182799798879275 +2891,14.454999999999266,-0.07182706116865066 +2892,14.459999999999265,-0.0718261246059475 +2893,14.464999999999264,-0.07182518830061807 +2894,14.469999999999263,-0.07182425225259721 +2895,14.474999999999262,-0.07182331646181975 +2896,14.479999999999261,-0.07182238092822053 +2897,14.48499999999926,-0.07182144565173443 +2898,14.48999999999926,-0.0718205106322963 +2899,14.494999999999258,-0.07181957586984107 +2900,14.499999999999257,-0.07181864136430365 +2901,14.504999999999256,-0.07181770711561893 +2902,14.509999999999255,-0.07181677312372187 +2903,14.514999999999254,-0.0718158393885474 +2904,14.519999999999254,-0.0718149059100305 +2905,14.524999999999253,-0.07181397268810613 +2906,14.529999999999252,-0.07181303972270932 +2907,14.53499999999925,-0.07181210701377505 +2908,14.53999999999925,-0.07181117456123835 +2909,14.544999999999249,-0.07181024236503425 +2910,14.549999999999248,-0.07180931042509779 +2911,14.554999999999247,-0.07180837874136407 +2912,14.559999999999246,-0.07180744731376812 +2913,14.564999999999245,-0.07180651614224508 +2914,14.569999999999244,-0.07180558522673001 +2915,14.574999999999243,-0.07180465456715807 +2916,14.579999999999242,-0.07180372416346437 +2917,14.58499999999924,-0.07180279401558406 +2918,14.58999999999924,-0.07180186412345234 +2919,14.594999999999239,-0.07180093448700432 +2920,14.599999999999238,-0.07180000510617525 +2921,14.604999999999237,-0.07179907598090031 +2922,14.609999999999236,-0.07179814711111472 +2923,14.614999999999235,-0.07179721849675372 +2924,14.619999999999234,-0.07179629013775256 +2925,14.624999999999233,-0.07179536203404648 +2926,14.629999999999232,-0.07179443418557079 +2927,14.63499999999923,-0.07179350659226075 +2928,14.63999999999923,-0.07179257925405168 +2929,14.644999999999229,-0.07179165217087889 +2930,14.649999999999228,-0.07179072534267772 +2931,14.654999999999227,-0.07178979876938352 +2932,14.659999999999226,-0.07178887245093164 +2933,14.664999999999225,-0.07178794638725747 +2934,14.669999999999224,-0.07178702057829638 +2935,14.674999999999223,-0.07178609502398378 +2936,14.679999999999222,-0.07178516972425508 +2937,14.68499999999922,-0.07178424467904575 +2938,14.68999999999922,-0.07178331988829117 +2939,14.694999999999219,-0.07178239535192685 +2940,14.699999999999218,-0.07178147106988826 +2941,14.704999999999217,-0.07178054704211087 +2942,14.709999999999216,-0.07177962326853018 +2943,14.714999999999215,-0.07177869974908173 +2944,14.719999999999214,-0.07177777648370103 +2945,14.724999999999213,-0.07177685347232361 +2946,14.729999999999212,-0.07177593071488506 +2947,14.73499999999921,-0.07177500821132092 +2948,14.73999999999921,-0.07177408596156681 +2949,14.744999999999209,-0.07177316396555831 +2950,14.749999999999208,-0.07177224222323103 +2951,14.754999999999207,-0.07177132073452061 +2952,14.759999999999206,-0.0717703994993627 +2953,14.764999999999205,-0.07176947851769293 +2954,14.769999999999204,-0.07176855778944699 +2955,14.774999999999203,-0.07176763731456055 +2956,14.779999999999202,-0.07176671709296932 +2957,14.7849999999992,-0.07176579712460901 +2958,14.7899999999992,-0.07176487740941535 +2959,14.794999999999199,-0.07176395794732407 +2960,14.799999999999198,-0.07176303873827093 +2961,14.804999999999197,-0.0717621197821917 +2962,14.809999999999196,-0.07176120107902217 +2963,14.814999999999195,-0.07176028262869812 +2964,14.819999999999194,-0.07175936443115538 +2965,14.824999999999193,-0.07175844648632974 +2966,14.829999999999192,-0.07175752879415709 +2967,14.83499999999919,-0.07175661135457324 +2968,14.83999999999919,-0.07175569416751407 +2969,14.844999999999189,-0.07175477723291546 +2970,14.849999999999188,-0.07175386055071331 +2971,14.854999999999187,-0.07175294412084354 +2972,14.859999999999186,-0.07175202794324204 +2973,14.864999999999185,-0.07175111201784477 +2974,14.869999999999184,-0.07175019634458768 +2975,14.874999999999183,-0.07174928092340672 +2976,14.879999999999182,-0.0717483657542379 +2977,14.88499999999918,-0.07174745083701717 +2978,14.88999999999918,-0.07174653617168056 +2979,14.894999999999179,-0.0717456217581641 +2980,14.899999999999178,-0.07174470759640379 +2981,14.904999999999177,-0.07174379368633571 +2982,14.909999999999176,-0.0717428800278959 +2983,14.914999999999175,-0.07174196662102046 +2984,14.919999999999174,-0.07174105346564548 +2985,14.924999999999173,-0.07174014056170704 +2986,14.929999999999172,-0.07173922790914126 +2987,14.934999999999171,-0.0717383155078843 +2988,14.93999999999917,-0.07173740335787228 +2989,14.944999999999169,-0.07173649145904137 +2990,14.949999999999168,-0.07173557981132775 +2991,14.954999999999167,-0.07173466841466761 +2992,14.959999999999166,-0.07173375726899714 +2993,14.964999999999165,-0.07173284637425255 +2994,14.969999999999164,-0.07173193573037007 +2995,14.974999999999163,-0.07173102533728595 +2996,14.979999999999162,-0.07173011519493648 +2997,14.984999999999161,-0.07172920530325787 +2998,14.98999999999916,-0.07172829566218646 +2999,14.994999999999159,-0.0717273862716585 +3000,14.999999999999158,-0.07172647713161034 +3001,15.004999999999157,-0.0717255682419783 +3002,15.009999999999156,-0.0717246596026987 +3003,15.014999999999155,-0.07172375121370793 +3004,15.019999999999154,-0.07172284307494234 +3005,15.024999999999153,-0.0717219351863383 +3006,15.029999999999152,-0.07172102754783222 +3007,15.034999999999151,-0.07172012015936052 +3008,15.03999999999915,-0.07171921302085961 +3009,15.044999999999149,-0.07171830613226594 +3010,15.049999999999148,-0.07171739949351594 +3011,15.054999999999147,-0.0717164931045461 +3012,15.059999999999146,-0.07171558696529289 +3013,15.064999999999145,-0.0717146810756928 +3014,15.069999999999144,-0.07171377543568234 +3015,15.074999999999143,-0.07171287004519804 +3016,15.079999999999142,-0.07171196490417642 +3017,15.084999999999141,-0.07171106001255405 +3018,15.08999999999914,-0.07171015537026747 +3019,15.094999999999139,-0.07170925097725328 +3020,15.099999999999138,-0.07170834683344805 +3021,15.104999999999137,-0.07170744293878839 +3022,15.109999999999136,-0.07170653929321093 +3023,15.114999999999135,-0.07170563589665228 +3024,15.119999999999134,-0.07170473274904912 +3025,15.124999999999133,-0.07170382985033809 +3026,15.129999999999132,-0.07170292720045585 +3027,15.134999999999131,-0.07170202479933911 +3028,15.13999999999913,-0.07170112264692458 +3029,15.14499999999913,-0.07170022074314894 +3030,15.149999999999128,-0.07169931908794894 +3031,15.154999999999127,-0.07169841768126133 +3032,15.159999999999126,-0.07169751652302284 +3033,15.164999999999125,-0.07169661561317028 +3034,15.169999999999124,-0.07169571495164041 +3035,15.174999999999123,-0.07169481453837004 +3036,15.179999999999122,-0.07169391437329597 +3037,15.184999999999121,-0.07169301445635504 +3038,15.18999999999912,-0.07169211478748407 +3039,15.19499999999912,-0.07169121536661992 +3040,15.199999999999118,-0.07169031619369946 +3041,15.204999999999117,-0.07168941726865959 +3042,15.209999999999116,-0.07168851859143717 +3043,15.214999999999115,-0.07168762016196914 +3044,15.219999999999114,-0.07168672198019241 +3045,15.224999999999113,-0.0716858240460439 +3046,15.229999999999112,-0.0716849263594606 +3047,15.234999999999111,-0.07168402892037944 +3048,15.23999999999911,-0.07168313172873741 +3049,15.24499999999911,-0.07168223478447149 +3050,15.249999999999108,-0.07168133808751871 +3051,15.254999999999107,-0.07168044163781608 +3052,15.259999999999106,-0.07167954543530061 +3053,15.264999999999105,-0.07167864947990937 +3054,15.269999999999104,-0.07167775377157942 +3055,15.274999999999103,-0.07167685831024782 +3056,15.279999999999102,-0.07167596309585168 +3057,15.284999999999101,-0.07167506812832809 +3058,15.2899999999991,-0.07167417340761416 +3059,15.2949999999991,-0.07167327893364703 +3060,15.299999999999098,-0.07167238470636383 +3061,15.304999999999097,-0.07167149072570171 +3062,15.309999999999096,-0.07167059699159788 +3063,15.314999999999095,-0.07166970350398948 +3064,15.319999999999094,-0.07166881026281374 +3065,15.324999999999093,-0.07166791726800785 +3066,15.329999999999092,-0.07166702451950906 +3067,15.334999999999091,-0.07166613201725458 +3068,15.33999999999909,-0.07166523976118168 +3069,15.34499999999909,-0.07166434775122763 +3070,15.349999999999088,-0.0716634559873297 +3071,15.354999999999087,-0.07166256446942518 +3072,15.359999999999086,-0.0716616731974514 +3073,15.364999999999085,-0.07166078217134567 +3074,15.369999999999084,-0.07165989139104531 +3075,15.374999999999083,-0.07165900085648769 +3076,15.379999999999082,-0.07165811056761015 +3077,15.384999999999081,-0.0716572205243501 +3078,15.38999999999908,-0.07165633072664492 +3079,15.39499999999908,-0.07165544117443198 +3080,15.399999999999078,-0.07165455186764876 +3081,15.404999999999077,-0.07165366280623262 +3082,15.409999999999076,-0.07165277399012104 +3083,15.414999999999075,-0.07165188541925151 +3084,15.419999999999074,-0.07165099709356144 +3085,15.424999999999073,-0.07165010901298836 +3086,15.429999999999072,-0.07164922117746977 +3087,15.434999999999071,-0.07164833358694317 +3088,15.43999999999907,-0.07164744624134609 +3089,15.44499999999907,-0.07164655914061606 +3090,15.449999999999068,-0.07164567228469067 +3091,15.454999999999067,-0.07164478567350745 +3092,15.459999999999066,-0.07164389930700397 +3093,15.464999999999065,-0.07164301318511788 +3094,15.469999999999064,-0.07164212730778675 +3095,15.474999999999064,-0.07164124167494822 +3096,15.479999999999063,-0.07164035628653992 +3097,15.484999999999062,-0.0716394711424995 +3098,15.48999999999906,-0.07163858624276462 +3099,15.49499999999906,-0.07163770158727296 +3100,15.499999999999059,-0.07163681717596222 +3101,15.504999999999058,-0.0716359330087701 +3102,15.509999999999057,-0.07163504908563431 +3103,15.514999999999056,-0.07163416540649259 +3104,15.519999999999055,-0.07163328197128269 +3105,15.524999999999054,-0.07163239877994236 +3106,15.529999999999053,-0.0716315158324094 +3107,15.534999999999052,-0.07163063312862156 +3108,15.53999999999905,-0.07162975066851665 +3109,15.54499999999905,-0.0716288684520325 +3110,15.549999999999049,-0.07162798647910693 +3111,15.554999999999048,-0.07162710474967778 +3112,15.559999999999047,-0.07162622326368288 +3113,15.564999999999046,-0.07162534202106015 +3114,15.569999999999045,-0.07162446102174744 +3115,15.574999999999044,-0.07162358026568265 +3116,15.579999999999043,-0.07162269975280369 +3117,15.584999999999042,-0.0716218194830485 +3118,15.58999999999904,-0.07162093945635499 +3119,15.59499999999904,-0.07162005967266112 +3120,15.599999999999039,-0.07161918013190485 +3121,15.604999999999038,-0.07161830083402418 +3122,15.609999999999037,-0.07161742177895708 +3123,15.614999999999036,-0.07161654296664156 +3124,15.619999999999035,-0.07161566439701564 +3125,15.624999999999034,-0.07161478607001735 +3126,15.629999999999033,-0.07161390798558473 +3127,15.634999999999032,-0.07161303014365585 +3128,15.63999999999903,-0.07161215254416878 +3129,15.64499999999903,-0.0716112751870616 +3130,15.649999999999029,-0.07161039807227243 +3131,15.654999999999028,-0.07160952119973936 +3132,15.659999999999027,-0.07160864456940053 +3133,15.664999999999026,-0.07160776818119408 +3134,15.669999999999025,-0.07160689203505816 +3135,15.674999999999024,-0.07160601613093093 +3136,15.679999999999023,-0.07160514046875058 +3137,15.684999999999022,-0.07160426504845531 +3138,15.68999999999902,-0.07160338986998332 +3139,15.69499999999902,-0.07160251493327284 +3140,15.699999999999019,-0.07160164023826211 +3141,15.704999999999018,-0.07160076578488937 +3142,15.709999999999017,-0.07159989157309289 +3143,15.714999999999016,-0.07159901760281094 +3144,15.719999999999015,-0.07159814387398182 +3145,15.724999999999014,-0.07159727038654383 +3146,15.729999999999013,-0.07159639714043527 +3147,15.734999999999012,-0.07159552413559449 +3148,15.73999999999901,-0.07159465137195983 +3149,15.74499999999901,-0.07159377884946964 +3150,15.749999999999009,-0.0715929065680623 +3151,15.754999999999008,-0.0715920345276762 +3152,15.759999999999007,-0.07159116272824971 +3153,15.764999999999006,-0.07159029116972128 +3154,15.769999999999005,-0.07158941985202932 +3155,15.774999999999004,-0.07158854877511227 +3156,15.779999999999003,-0.07158767793890859 +3157,15.784999999999002,-0.07158680734335672 +3158,15.789999999999,-0.07158593698839516 +3159,15.794999999999,-0.0715850668739624 +3160,15.799999999998999,-0.07158419699999695 +3161,15.804999999998998,-0.07158332736643733 +3162,15.809999999998997,-0.07158245797322206 +3163,15.814999999998996,-0.07158158882028971 +3164,15.819999999998995,-0.07158071990757883 +3165,15.824999999998994,-0.07157985123502798 +3166,15.829999999998993,-0.07157898280257578 +3167,15.834999999998992,-0.0715781146101608 +3168,15.83999999999899,-0.07157724665772168 +3169,15.84499999999899,-0.07157637894519703 +3170,15.849999999998989,-0.0715755114725255 +3171,15.854999999998988,-0.07157464423964573 +3172,15.859999999998987,-0.07157377724649641 +3173,15.864999999998986,-0.07157291049301621 +3174,15.869999999998985,-0.07157204397914382 +3175,15.874999999998984,-0.07157117770481798 +3176,15.879999999998983,-0.07157031166997739 +3177,15.884999999998982,-0.07156944587456078 +3178,15.889999999998981,-0.07156858031850692 +3179,15.89499999999898,-0.07156771500175454 +3180,15.899999999998979,-0.07156684992424246 +3181,15.904999999998978,-0.07156598508590944 +3182,15.909999999998977,-0.0715651204866943 +3183,15.914999999998976,-0.07156425612653584 +3184,15.919999999998975,-0.0715633920053729 +3185,15.924999999998974,-0.07156252812314433 +3186,15.929999999998973,-0.07156166447978898 +3187,15.934999999998972,-0.07156080107524573 +3188,15.939999999998971,-0.07155993790945346 +3189,15.94499999999897,-0.07155907498235105 +3190,15.949999999998969,-0.07155821229387743 +3191,15.954999999998968,-0.07155734984397152 +3192,15.959999999998967,-0.07155648763257227 +3193,15.964999999998966,-0.07155562565961862 +3194,15.969999999998965,-0.07155476392504953 +3195,15.974999999998964,-0.071553902428804 +3196,15.979999999998963,-0.071553041170821 +3197,15.984999999998962,-0.07155218015103953 +3198,15.989999999998961,-0.07155131936939864 +3199,15.99499999999896,-0.07155045882583734 +3200,15.999999999998959,-0.07154959852029467 +3201,16.00499999999896,-0.07154873845270973 +3202,16.009999999998964,-0.07154787862302155 +3203,16.014999999998967,-0.07154701903116922 +3204,16.01999999999897,-0.07154615967709187 +3205,16.024999999998972,-0.07154530056072857 +3206,16.029999999998974,-0.07154444168201847 +3207,16.034999999998977,-0.07154358304090072 +3208,16.03999999999898,-0.07154272463731445 +3209,16.044999999998982,-0.07154186647119884 +3210,16.049999999998985,-0.07154100854249308 +3211,16.054999999998987,-0.07154015085113634 +3212,16.05999999999899,-0.07153929339706784 +3213,16.064999999998992,-0.0715384361802268 +3214,16.069999999998995,-0.07153757920055244 +3215,16.074999999998997,-0.07153672245798402 +3216,16.079999999999,-0.07153586595246082 +3217,16.084999999999003,-0.07153500968392208 +3218,16.089999999999005,-0.07153415365230711 +3219,16.094999999999008,-0.0715332978575552 +3220,16.09999999999901,-0.07153244229960566 +3221,16.104999999999013,-0.07153158697839784 +3222,16.109999999999015,-0.07153073189387105 +3223,16.114999999999018,-0.07152987704596467 +3224,16.11999999999902,-0.07152902243461806 +3225,16.124999999999023,-0.0715281680597706 +3226,16.129999999999026,-0.07152731392136166 +3227,16.134999999999028,-0.07152646001933069 +3228,16.13999999999903,-0.07152560635361709 +3229,16.144999999999033,-0.07152475292416029 +3230,16.149999999999036,-0.07152389973089975 +3231,16.15499999999904,-0.07152304677377491 +3232,16.15999999999904,-0.07152219405272527 +3233,16.164999999999043,-0.07152134156769031 +3234,16.169999999999046,-0.07152048931860953 +3235,16.17499999999905,-0.07151963730542245 +3236,16.17999999999905,-0.07151878552806858 +3237,16.184999999999054,-0.07151793398648748 +3238,16.189999999999056,-0.0715170826806187 +3239,16.19499999999906,-0.0715162316104018 +3240,16.19999999999906,-0.07151538077577638 +3241,16.204999999999064,-0.07151453017668202 +3242,16.209999999999066,-0.07151367981305833 +3243,16.21499999999907,-0.07151282968484492 +3244,16.21999999999907,-0.07151197979198144 +3245,16.224999999999074,-0.07151113013440755 +3246,16.229999999999077,-0.07151028071206289 +3247,16.23499999999908,-0.07150943152488715 +3248,16.239999999999082,-0.07150858257282 +3249,16.244999999999084,-0.07150773385580117 +3250,16.249999999999087,-0.07150688537377034 +3251,16.25499999999909,-0.07150603712666728 +3252,16.259999999999092,-0.0715051891144317 +3253,16.264999999999095,-0.07150434133700335 +3254,16.269999999999097,-0.07150349379432203 +3255,16.2749999999991,-0.0715026464863275 +3256,16.279999999999102,-0.07150179941295955 +3257,16.284999999999105,-0.07150095257415799 +3258,16.289999999999107,-0.07150010596986266 +3259,16.29499999999911,-0.07149925960001338 +3260,16.299999999999113,-0.07149841346454998 +3261,16.304999999999115,-0.07149756756341236 +3262,16.309999999999118,-0.07149672189654037 +3263,16.31499999999912,-0.0714958764638739 +3264,16.319999999999123,-0.07149503126535287 +3265,16.324999999999125,-0.07149418630091717 +3266,16.329999999999128,-0.07149334157050673 +3267,16.33499999999913,-0.07149249707406151 +3268,16.339999999999133,-0.07149165281152145 +3269,16.344999999999136,-0.07149080878282651 +3270,16.349999999999138,-0.07148996498791671 +3271,16.35499999999914,-0.071489121426732 +3272,16.359999999999143,-0.0714882780992124 +3273,16.364999999999146,-0.07148743500529796 +3274,16.36999999999915,-0.07148659214492867 +3275,16.37499999999915,-0.0714857495180446 +3276,16.379999999999153,-0.07148490712458581 +3277,16.384999999999156,-0.07148406496449237 +3278,16.38999999999916,-0.07148322303770438 +3279,16.39499999999916,-0.07148238134416192 +3280,16.399999999999164,-0.07148153988380512 +3281,16.404999999999166,-0.07148069865657411 +3282,16.40999999999917,-0.07147985766240901 +3283,16.41499999999917,-0.07147901690124998 +3284,16.419999999999174,-0.0714781763730372 +3285,16.424999999999176,-0.07147733607771084 +3286,16.42999999999918,-0.0714764960152111 +3287,16.43499999999918,-0.07147565618547817 +3288,16.439999999999184,-0.0714748165884523 +3289,16.444999999999187,-0.0714739772240737 +3290,16.44999999999919,-0.07147313809228262 +3291,16.454999999999192,-0.07147229919301931 +3292,16.459999999999194,-0.07147146052622406 +3293,16.464999999999197,-0.07147062209183717 +3294,16.4699999999992,-0.07146978388979892 +3295,16.474999999999202,-0.07146894592004961 +3296,16.479999999999205,-0.07146810818252958 +3297,16.484999999999207,-0.07146727067717917 +3298,16.48999999999921,-0.07146643340393874 +3299,16.494999999999212,-0.07146559636274864 +3300,16.499999999999215,-0.07146475955354926 +3301,16.504999999999217,-0.07146392297628097 +3302,16.50999999999922,-0.0714630866308842 +3303,16.514999999999223,-0.07146225051729937 +3304,16.519999999999225,-0.0714614146354669 +3305,16.524999999999228,-0.07146057898532723 +3306,16.52999999999923,-0.07145974356682083 +3307,16.534999999999233,-0.07145890837988818 +3308,16.539999999999235,-0.07145807342446973 +3309,16.544999999999238,-0.071457238700506 +3310,16.54999999999924,-0.07145640420793752 +3311,16.554999999999243,-0.07145556994670477 +3312,16.559999999999246,-0.07145473591674832 +3313,16.564999999999248,-0.07145390211800871 +3314,16.56999999999925,-0.0714530685504265 +3315,16.574999999999253,-0.07145223521394228 +3316,16.579999999999256,-0.07145140210849664 +3317,16.58499999999926,-0.07145056923403018 +3318,16.58999999999926,-0.0714497365904835 +3319,16.594999999999263,-0.07144890417779724 +3320,16.599999999999266,-0.07144807199591206 +3321,16.60499999999927,-0.07144724004476859 +3322,16.60999999999927,-0.07144640832430751 +3323,16.614999999999274,-0.0714455768344695 +3324,16.619999999999276,-0.07144474557519527 +3325,16.62499999999928,-0.07144391454642551 +3326,16.62999999999928,-0.07144308374810096 +3327,16.634999999999284,-0.07144225318016234 +3328,16.639999999999286,-0.07144142284255041 +3329,16.64499999999929,-0.07144059273520592 +3330,16.64999999999929,-0.07143976285806966 +3331,16.654999999999294,-0.0714389332110824 +3332,16.659999999999297,-0.07143810379418494 +3333,16.6649999999993,-0.07143727460731812 +3334,16.669999999999302,-0.07143644565042274 +3335,16.674999999999304,-0.07143561692343965 +3336,16.679999999999307,-0.07143478842630971 +3337,16.68499999999931,-0.07143396015897378 +3338,16.689999999999312,-0.07143313212137274 +3339,16.694999999999315,-0.07143230431344748 +3340,16.699999999999317,-0.0714314767351389 +3341,16.70499999999932,-0.07143064938638795 +3342,16.709999999999322,-0.07142982226713553 +3343,16.714999999999325,-0.0714289953773226 +3344,16.719999999999327,-0.07142816871689012 +3345,16.72499999999933,-0.07142734228577904 +3346,16.729999999999333,-0.0714265160839304 +3347,16.734999999999335,-0.07142569011128513 +3348,16.739999999999338,-0.0714248643677843 +3349,16.74499999999934,-0.0714240388533689 +3350,16.749999999999343,-0.07142321356797997 +3351,16.754999999999345,-0.07142238851155856 +3352,16.759999999999348,-0.07142156368404576 +3353,16.76499999999935,-0.07142073908538261 +3354,16.769999999999353,-0.07141991471551022 +3355,16.774999999999356,-0.0714190905743697 +3356,16.779999999999358,-0.07141826666190214 +3357,16.78499999999936,-0.0714174429780487 +3358,16.789999999999363,-0.07141661952275051 +3359,16.794999999999366,-0.07141579629594873 +3360,16.79999999999937,-0.0714149732975845 +3361,16.80499999999937,-0.07141415052759904 +3362,16.809999999999373,-0.07141332798593354 +3363,16.814999999999376,-0.07141250567252919 +3364,16.81999999999938,-0.0714116835873272 +3365,16.82499999999938,-0.07141086173026885 +3366,16.829999999999384,-0.07141004010129536 +3367,16.834999999999386,-0.07140921870034798 +3368,16.83999999999939,-0.071408397527368 +3369,16.84499999999939,-0.0714075765822967 +3370,16.849999999999394,-0.07140675586507539 +3371,16.854999999999396,-0.07140593537564535 +3372,16.8599999999994,-0.07140511511394795 +3373,16.8649999999994,-0.0714042950799245 +3374,16.869999999999404,-0.07140347527351638 +3375,16.874999999999407,-0.07140265569466493 +3376,16.87999999999941,-0.07140183634331153 +3377,16.884999999999412,-0.07140101721939758 +3378,16.889999999999414,-0.07140019832286447 +3379,16.894999999999417,-0.07139937965365363 +3380,16.89999999999942,-0.0713985612117065 +3381,16.904999999999422,-0.0713977429969645 +3382,16.909999999999425,-0.0713969250093691 +3383,16.914999999999427,-0.07139610724886176 +3384,16.91999999999943,-0.071395289715384 +3385,16.924999999999432,-0.07139447240887727 +3386,16.929999999999435,-0.07139365532928309 +3387,16.934999999999437,-0.07139283847654299 +3388,16.93999999999944,-0.07139202185059851 +3389,16.944999999999443,-0.07139120545139119 +3390,16.949999999999445,-0.07139038927886258 +3391,16.954999999999448,-0.07138957333295427 +3392,16.95999999999945,-0.07138875761360786 +3393,16.964999999999453,-0.07138794212076491 +3394,16.969999999999455,-0.07138712685436706 +3395,16.974999999999458,-0.07138631181435594 +3396,16.97999999999946,-0.07138549700067318 +3397,16.984999999999463,-0.07138468241326042 +3398,16.989999999999466,-0.07138386805205936 +3399,16.994999999999468,-0.07138305391701165 +3400,16.99999999999947,-0.07138224000805898 +3401,17.004999999999473,-0.07138142632514308 +3402,17.009999999999476,-0.07138061286820564 +3403,17.01499999999948,-0.07137979963718842 +3404,17.01999999999948,-0.07137898663203314 +3405,17.024999999999483,-0.07137817385268155 +3406,17.029999999999486,-0.07137736129907545 +3407,17.03499999999949,-0.0713765489711566 +3408,17.03999999999949,-0.0713757368688668 +3409,17.044999999999494,-0.07137492499214786 +3410,17.049999999999496,-0.0713741133409416 +3411,17.0549999999995,-0.07137330191518984 +3412,17.0599999999995,-0.07137249071483445 +3413,17.064999999999504,-0.0713716797398173 +3414,17.069999999999506,-0.07137086899008023 +3415,17.07499999999951,-0.07137005846556514 +3416,17.07999999999951,-0.07136924816621394 +3417,17.084999999999514,-0.07136843809196854 +3418,17.089999999999517,-0.07136762824277085 +3419,17.09499999999952,-0.07136681861856284 +3420,17.099999999999522,-0.07136600921928643 +3421,17.104999999999524,-0.0713652000448836 +3422,17.109999999999527,-0.07136439109529631 +3423,17.11499999999953,-0.07136358237046657 +3424,17.119999999999532,-0.07136277387033639 +3425,17.124999999999535,-0.07136196559484777 +3426,17.129999999999537,-0.07136115754394275 +3427,17.13499999999954,-0.07136034971756336 +3428,17.139999999999542,-0.07135954211565165 +3429,17.144999999999545,-0.07135873473814972 +3430,17.149999999999547,-0.07135792758499962 +3431,17.15499999999955,-0.07135712065614346 +3432,17.159999999999553,-0.07135631395152334 +3433,17.164999999999555,-0.07135550747108138 +3434,17.169999999999558,-0.07135470121475973 +3435,17.17499999999956,-0.07135389518250053 +3436,17.179999999999563,-0.0713530893742459 +3437,17.184999999999565,-0.07135228378993809 +3438,17.189999999999568,-0.07135147842951922 +3439,17.19499999999957,-0.0713506732929315 +3440,17.199999999999573,-0.07134986838011716 +3441,17.204999999999576,-0.07134906369101841 +3442,17.209999999999578,-0.0713482592255775 +3443,17.21499999999958,-0.07134745498373665 +3444,17.219999999999583,-0.07134665096543816 +3445,17.224999999999586,-0.07134584717062428 +3446,17.22999999999959,-0.07134504359923731 +3447,17.23499999999959,-0.07134424025121955 +3448,17.239999999999593,-0.07134343712651331 +3449,17.244999999999596,-0.07134263422506092 +3450,17.2499999999996,-0.07134183154680473 +3451,17.2549999999996,-0.07134102909168707 +3452,17.259999999999604,-0.07134022685965033 +3453,17.264999999999606,-0.07133942485063688 +3454,17.26999999999961,-0.0713386230645891 +3455,17.27499999999961,-0.07133782150144942 +3456,17.279999999999614,-0.07133702016116024 +3457,17.284999999999616,-0.07133621904366401 +3458,17.28999999999962,-0.07133541814890315 +3459,17.29499999999962,-0.07133461747682011 +3460,17.299999999999624,-0.0713338170273574 +3461,17.304999999999627,-0.07133301680045748 +3462,17.30999999999963,-0.07133221679606283 +3463,17.314999999999632,-0.07133141701411597 +3464,17.319999999999634,-0.07133061745455943 +3465,17.324999999999637,-0.07132981811733574 +3466,17.32999999999964,-0.07132901900238744 +3467,17.334999999999642,-0.0713282201096571 +3468,17.339999999999645,-0.07132742143908728 +3469,17.344999999999647,-0.07132662299062058 +3470,17.34999999999965,-0.0713258247641996 +3471,17.354999999999652,-0.07132502675976693 +3472,17.359999999999655,-0.0713242289772652 +3473,17.364999999999657,-0.07132343141663708 +3474,17.36999999999966,-0.07132263407782519 +3475,17.374999999999662,-0.07132183696077218 +3476,17.379999999999665,-0.07132104006542077 +3477,17.384999999999668,-0.07132024339171361 +3478,17.38999999999967,-0.07131944693959341 +3479,17.394999999999673,-0.0713186507090029 +3480,17.399999999999675,-0.07131785469988479 +3481,17.404999999999678,-0.07131705891218183 +3482,17.40999999999968,-0.07131626334583678 +3483,17.414999999999683,-0.07131546800079239 +3484,17.419999999999686,-0.07131467287699143 +3485,17.424999999999688,-0.07131387797437673 +3486,17.42999999999969,-0.07131308329289106 +3487,17.434999999999693,-0.07131228883247724 +3488,17.439999999999696,-0.07131149459307813 +3489,17.4449999999997,-0.07131070057463654 +3490,17.4499999999997,-0.07130990677709535 +3491,17.454999999999703,-0.07130911320039741 +3492,17.459999999999706,-0.07130831984448563 +3493,17.46499999999971,-0.07130752670930286 +3494,17.46999999999971,-0.07130673379479203 +3495,17.474999999999714,-0.07130594110089608 +3496,17.479999999999716,-0.07130514862755791 +3497,17.48499999999972,-0.0713043563747205 +3498,17.48999999999972,-0.07130356434232678 +3499,17.494999999999724,-0.07130277253031973 +3500,17.499999999999726,-0.07130198093864235 +3501,17.50499999999973,-0.07130118956723762 +3502,17.50999999999973,-0.07130039841604854 +3503,17.514999999999734,-0.07129960748501817 +3504,17.519999999999737,-0.0712988167740895 +3505,17.52499999999974,-0.07129802628320561 +3506,17.529999999999742,-0.07129723601230957 +3507,17.534999999999744,-0.07129644596134442 +3508,17.539999999999747,-0.07129565613025327 +3509,17.54499999999975,-0.0712948665189792 +3510,17.549999999999752,-0.07129407712746536 +3511,17.554999999999755,-0.07129328795565484 +3512,17.559999999999757,-0.0712924990034908 +3513,17.56499999999976,-0.07129171027091638 +3514,17.569999999999762,-0.07129092175787476 +3515,17.574999999999765,-0.07129013346430908 +3516,17.579999999999767,-0.07128934539016257 +3517,17.58499999999977,-0.0712885575353784 +3518,17.589999999999772,-0.07128776989989982 +3519,17.594999999999775,-0.07128698248367003 +3520,17.599999999999778,-0.07128619528663228 +3521,17.60499999999978,-0.07128540830872983 +3522,17.609999999999783,-0.07128462154990593 +3523,17.614999999999785,-0.07128383501010387 +3524,17.619999999999788,-0.07128304868926695 +3525,17.62499999999979,-0.07128226258733847 +3526,17.629999999999793,-0.07128147670426174 +3527,17.634999999999796,-0.07128069103998008 +3528,17.639999999999798,-0.07127990559443685 +3529,17.6449999999998,-0.07127912036757542 +3530,17.649999999999803,-0.07127833535933913 +3531,17.654999999999806,-0.07127755056967136 +3532,17.65999999999981,-0.07127676599851553 +3533,17.66499999999981,-0.07127598164581504 +3534,17.669999999999813,-0.0712751975115133 +3535,17.674999999999816,-0.07127441359555374 +3536,17.67999999999982,-0.07127362989787982 +3537,17.68499999999982,-0.07127284641843498 +3538,17.689999999999824,-0.07127206315716271 +3539,17.694999999999826,-0.07127128011400648 +3540,17.69999999999983,-0.0712704972889098 +3541,17.70499999999983,-0.07126971468181616 +3542,17.709999999999834,-0.07126893229266909 +3543,17.714999999999836,-0.07126815012141213 +3544,17.71999999999984,-0.07126736816798884 +3545,17.72499999999984,-0.07126658643234275 +3546,17.729999999999844,-0.07126580491441745 +3547,17.734999999999847,-0.07126502361415651 +3548,17.73999999999985,-0.07126424253150355 +3549,17.744999999999852,-0.07126346166640218 +3550,17.749999999999854,-0.071262681018796 +3551,17.754999999999857,-0.07126190058862868 +3552,17.75999999999986,-0.07126112037584385 +3553,17.764999999999862,-0.07126034038038516 +3554,17.769999999999865,-0.0712595606021963 +3555,17.774999999999867,-0.07125878104122098 +3556,17.77999999999987,-0.07125800169740285 +3557,17.784999999999872,-0.07125722257068566 +3558,17.789999999999875,-0.07125644366101312 +3559,17.794999999999877,-0.07125566496832897 +3560,17.79999999999988,-0.07125488649257697 +3561,17.804999999999882,-0.07125410823370087 +3562,17.809999999999885,-0.07125333019164447 +3563,17.814999999999888,-0.07125255236635154 +3564,17.81999999999989,-0.07125177475776588 +3565,17.824999999999893,-0.07125099736583132 +3566,17.829999999999895,-0.07125022019049168 +3567,17.834999999999898,-0.07124944323169079 +3568,17.8399999999999,-0.07124866648937252 +3569,17.844999999999903,-0.0712478899634807 +3570,17.849999999999905,-0.07124711365395926 +3571,17.854999999999908,-0.07124633756075205 +3572,17.85999999999991,-0.071245561683803 +3573,17.864999999999913,-0.07124478602305602 +3574,17.869999999999916,-0.07124401057845503 +3575,17.87499999999992,-0.07124323534994398 +3576,17.87999999999992,-0.07124246033746681 +3577,17.884999999999923,-0.0712416855409675 +3578,17.889999999999926,-0.07124091096039004 +3579,17.89499999999993,-0.0712401365956784 +3580,17.89999999999993,-0.07123936244677662 +3581,17.904999999999934,-0.07123858851362866 +3582,17.909999999999936,-0.07123781479617859 +3583,17.91499999999994,-0.07123704129437046 +3584,17.91999999999994,-0.0712362680081483 +3585,17.924999999999944,-0.07123549493745619 +3586,17.929999999999946,-0.07123472208223822 +3587,17.93499999999995,-0.07123394944243848 +3588,17.93999999999995,-0.07123317701800105 +3589,17.944999999999954,-0.0712324048088701 +3590,17.949999999999957,-0.07123163281498972 +3591,17.95499999999996,-0.07123086103630408 +3592,17.95999999999996,-0.07123008947275732 +3593,17.964999999999964,-0.0712293181242936 +3594,17.969999999999967,-0.07122854699085712 +3595,17.97499999999997,-0.07122777607239208 +3596,17.979999999999972,-0.07122700536884269 +3597,17.984999999999975,-0.07122623488015314 +3598,17.989999999999977,-0.07122546460626769 +3599,17.99499999999998,-0.07122469454713058 +3600,17.999999999999982,-0.07122392470268608 +3601,18.004999999999985,-0.07122315507287845 +3602,18.009999999999987,-0.07122238565765196 +3603,18.01499999999999,-0.07122161645695091 +3604,18.019999999999992,-0.07122084747071963 +3605,18.024999999999995,-0.07122007869890243 +3606,18.029999999999998,-0.07121931014144364 +3607,18.035,-0.07121854179828761 +3608,18.040000000000003,-0.07121777366937872 +3609,18.045000000000005,-0.0712170057546613 +3610,18.050000000000008,-0.07121623805407977 +3611,18.05500000000001,-0.07121547056757849 +3612,18.060000000000013,-0.07121470329510192 +3613,18.065000000000015,-0.07121393623659443 +3614,18.070000000000018,-0.0712131693920005 +3615,18.07500000000002,-0.07121240276126456 +3616,18.080000000000023,-0.07121163634433106 +3617,18.085000000000026,-0.07121087014114448 +3618,18.09000000000003,-0.07121010415164931 +3619,18.09500000000003,-0.07120933837579005 +3620,18.100000000000033,-0.07120857281351121 +3621,18.105000000000036,-0.07120780746475731 +3622,18.11000000000004,-0.07120704232947289 +3623,18.11500000000004,-0.07120627740760249 +3624,18.120000000000044,-0.07120551269909067 +3625,18.125000000000046,-0.07120474820388202 +3626,18.13000000000005,-0.07120398392192111 +3627,18.13500000000005,-0.07120321985315255 +3628,18.140000000000054,-0.07120245599752094 +3629,18.145000000000056,-0.07120169235497091 +3630,18.15000000000006,-0.07120092892544712 +3631,18.15500000000006,-0.07120016570889418 +3632,18.160000000000064,-0.07119940270525678 +3633,18.165000000000067,-0.07119863991447957 +3634,18.17000000000007,-0.07119787733650726 +3635,18.17500000000007,-0.07119711497128453 +3636,18.180000000000074,-0.07119635281875611 +3637,18.185000000000077,-0.07119559087886673 +3638,18.19000000000008,-0.0711948291515611 +3639,18.195000000000082,-0.07119406763678399 +3640,18.200000000000085,-0.07119330633448016 +3641,18.205000000000087,-0.07119254524459437 +3642,18.21000000000009,-0.07119178436707144 +3643,18.215000000000092,-0.07119102370185613 +3644,18.220000000000095,-0.07119026324889328 +3645,18.225000000000097,-0.07118950300812774 +3646,18.2300000000001,-0.07118874297950428 +3647,18.235000000000102,-0.0711879831629678 +3648,18.240000000000105,-0.07118722355846314 +3649,18.245000000000108,-0.07118646416593519 +3650,18.25000000000011,-0.07118570498532883 +3651,18.255000000000113,-0.07118494601658898 +3652,18.260000000000115,-0.07118418725966054 +3653,18.265000000000118,-0.07118342871448842 +3654,18.27000000000012,-0.07118267038101757 +3655,18.275000000000123,-0.07118191225919294 +3656,18.280000000000125,-0.0711811543489595 +3657,18.285000000000128,-0.07118039665026223 +3658,18.29000000000013,-0.0711796391630461 +3659,18.295000000000133,-0.07117888188725612 +3660,18.300000000000136,-0.07117812482283731 +3661,18.30500000000014,-0.07117736796973467 +3662,18.31000000000014,-0.07117661132789328 +3663,18.315000000000143,-0.07117585489725817 +3664,18.320000000000146,-0.07117509867777438 +3665,18.32500000000015,-0.07117434266938703 +3666,18.33000000000015,-0.07117358687204119 +3667,18.335000000000154,-0.07117283128568196 +3668,18.340000000000156,-0.07117207591025444 +3669,18.34500000000016,-0.07117132074570377 +3670,18.35000000000016,-0.0711705657919751 +3671,18.355000000000164,-0.07116981104901354 +3672,18.360000000000166,-0.07116905651676432 +3673,18.36500000000017,-0.07116830219517256 +3674,18.37000000000017,-0.07116754808418346 +3675,18.375000000000174,-0.07116679418374224 +3676,18.380000000000177,-0.0711660404937941 +3677,18.38500000000018,-0.07116528701428426 +3678,18.39000000000018,-0.07116453374515797 +3679,18.395000000000184,-0.07116378068636046 +3680,18.400000000000187,-0.07116302783783704 +3681,18.40500000000019,-0.07116227519953294 +3682,18.410000000000192,-0.07116152277139348 +3683,18.415000000000195,-0.07116077055336394 +3684,18.420000000000197,-0.07116001854538963 +3685,18.4250000000002,-0.0711592667474159 +3686,18.430000000000202,-0.07115851515938808 +3687,18.435000000000205,-0.0711577637812515 +3688,18.440000000000207,-0.07115701261295154 +3689,18.44500000000021,-0.07115626165443359 +3690,18.450000000000212,-0.07115551090564301 +3691,18.455000000000215,-0.07115476036652522 +3692,18.460000000000218,-0.07115401003702564 +3693,18.46500000000022,-0.07115325991708965 +3694,18.470000000000223,-0.07115251000666276 +3695,18.475000000000225,-0.07115176030569036 +3696,18.480000000000228,-0.07115101081411794 +3697,18.48500000000023,-0.07115026153189098 +3698,18.490000000000233,-0.07114951245895494 +3699,18.495000000000235,-0.07114876359525536 +3700,18.500000000000238,-0.07114801494073772 +3701,18.50500000000024,-0.07114726649534757 +3702,18.510000000000243,-0.07114651825903043 +3703,18.515000000000246,-0.07114577023173187 +3704,18.52000000000025,-0.07114502241339742 +3705,18.52500000000025,-0.07114427480397267 +3706,18.530000000000253,-0.07114352740340323 +3707,18.535000000000256,-0.07114278021163467 +3708,18.54000000000026,-0.07114203322861262 +3709,18.54500000000026,-0.0711412864542827 +3710,18.550000000000264,-0.07114053988859055 +3711,18.555000000000266,-0.07113979353148181 +3712,18.56000000000027,-0.07113904738290217 +3713,18.56500000000027,-0.07113830144279727 +3714,18.570000000000274,-0.07113755571111281 +3715,18.575000000000276,-0.0711368101877945 +3716,18.58000000000028,-0.07113606487278804 +3717,18.58500000000028,-0.07113531976603917 +3718,18.590000000000284,-0.07113457486749358 +3719,18.595000000000287,-0.07113383017709708 +3720,18.60000000000029,-0.0711330856947954 +3721,18.60500000000029,-0.07113234142053432 +3722,18.610000000000294,-0.07113159735425963 +3723,18.615000000000297,-0.0711308534959171 +3724,18.6200000000003,-0.0711301098454526 +3725,18.625000000000302,-0.0711293664028119 +3726,18.630000000000305,-0.07112862316794086 +3727,18.635000000000307,-0.07112788014078532 +3728,18.64000000000031,-0.07112713732129115 +3729,18.645000000000312,-0.07112639470940423 +3730,18.650000000000315,-0.07112565230507042 +3731,18.655000000000317,-0.07112491010823563 +3732,18.66000000000032,-0.07112416811884577 +3733,18.665000000000322,-0.07112342633684678 +3734,18.670000000000325,-0.07112268476218456 +3735,18.675000000000328,-0.07112194339480508 +3736,18.68000000000033,-0.07112120223465432 +3737,18.685000000000333,-0.07112046128167822 +3738,18.690000000000335,-0.07111972053582277 +3739,18.695000000000338,-0.07111897999703398 +3740,18.70000000000034,-0.07111823966525785 +3741,18.705000000000343,-0.07111749954044039 +3742,18.710000000000345,-0.07111675962252766 +3743,18.715000000000348,-0.07111601991146568 +3744,18.72000000000035,-0.07111528040720054 +3745,18.725000000000353,-0.0711145411096783 +3746,18.730000000000356,-0.07111380201884503 +3747,18.73500000000036,-0.07111306313464683 +3748,18.74000000000036,-0.07111232445702982 +3749,18.745000000000363,-0.0711115859859401 +3750,18.750000000000366,-0.07111084772132382 +3751,18.75500000000037,-0.07111010966312714 +3752,18.76000000000037,-0.07110937181129619 +3753,18.765000000000374,-0.07110863416577715 +3754,18.770000000000376,-0.0711078967265162 +3755,18.77500000000038,-0.07110715949345954 +3756,18.78000000000038,-0.07110642246655337 +3757,18.785000000000384,-0.07110568564574392 +3758,18.790000000000386,-0.07110494903097742 +3759,18.79500000000039,-0.0711042126222001 +3760,18.80000000000039,-0.07110347641935823 +3761,18.805000000000394,-0.07110274042239807 +3762,18.810000000000397,-0.07110200463126591 +3763,18.8150000000004,-0.07110126904590805 +3764,18.8200000000004,-0.0711005336662708 +3765,18.825000000000404,-0.07109979849230044 +3766,18.830000000000407,-0.07109906352394334 +3767,18.83500000000041,-0.07109832876114582 +3768,18.840000000000412,-0.07109759420385423 +3769,18.845000000000415,-0.07109685985201497 +3770,18.850000000000417,-0.0710961257055744 +3771,18.85500000000042,-0.0710953917644789 +3772,18.860000000000422,-0.0710946580286749 +3773,18.865000000000425,-0.07109392449810881 +3774,18.870000000000427,-0.07109319117272704 +3775,18.87500000000043,-0.07109245805247606 +3776,18.880000000000432,-0.0710917251373023 +3777,18.885000000000435,-0.07109099242715224 +3778,18.890000000000438,-0.07109025992197233 +3779,18.89500000000044,-0.07108952762170911 +3780,18.900000000000443,-0.07108879552630905 +3781,18.905000000000445,-0.07108806363571865 +3782,18.910000000000448,-0.0710873319498845 +3783,18.91500000000045,-0.07108660046875306 +3784,18.920000000000453,-0.07108586919227093 +3785,18.925000000000455,-0.07108513812038467 +3786,18.930000000000458,-0.07108440725304085 +3787,18.93500000000046,-0.07108367659018607 +3788,18.940000000000463,-0.07108294613176691 +3789,18.945000000000466,-0.07108221587772999 +3790,18.95000000000047,-0.07108148582802196 +3791,18.95500000000047,-0.07108075598258942 +3792,18.960000000000473,-0.07108002634137905 +3793,18.965000000000476,-0.0710792969043375 +3794,18.97000000000048,-0.07107856767141145 +3795,18.97500000000048,-0.07107783864254757 +3796,18.980000000000484,-0.0710771098176926 +3797,18.985000000000486,-0.0710763811967932 +3798,18.99000000000049,-0.07107565277979612 +3799,18.99500000000049,-0.0710749245666481 +3800,19.000000000000494,-0.07107419655729588 +3801,19.005000000000496,-0.07107346875168624 +3802,19.0100000000005,-0.07107274114976592 +3803,19.0150000000005,-0.07107201375148174 +3804,19.020000000000504,-0.07107128655678047 +3805,19.025000000000507,-0.07107055956560891 +3806,19.03000000000051,-0.07106983277791393 +3807,19.03500000000051,-0.07106910619364233 +3808,19.040000000000514,-0.07106837981274096 +3809,19.045000000000517,-0.07106765363515667 +3810,19.05000000000052,-0.07106692766083636 +3811,19.055000000000522,-0.07106620188972688 +3812,19.060000000000525,-0.07106547632177515 +3813,19.065000000000527,-0.07106475095692805 +3814,19.07000000000053,-0.07106402579513252 +3815,19.075000000000532,-0.0710633008363355 +3816,19.080000000000535,-0.07106257608048393 +3817,19.085000000000537,-0.07106185152752474 +3818,19.09000000000054,-0.07106112717740493 +3819,19.095000000000542,-0.07106040303007147 +3820,19.100000000000545,-0.07105967908547135 +3821,19.105000000000548,-0.07105895534355157 +3822,19.11000000000055,-0.07105823180425917 +3823,19.115000000000553,-0.07105750846754115 +3824,19.120000000000555,-0.0710567853333446 +3825,19.125000000000558,-0.07105606240161652 +3826,19.13000000000056,-0.071055339672304 +3827,19.135000000000563,-0.07105461714535412 +3828,19.140000000000565,-0.07105389482071396 +3829,19.145000000000568,-0.07105317269833064 +3830,19.15000000000057,-0.07105245077815127 +3831,19.155000000000573,-0.07105172906012297 +3832,19.160000000000576,-0.07105100754419288 +3833,19.16500000000058,-0.07105028623030817 +3834,19.17000000000058,-0.07104956511841597 +3835,19.175000000000583,-0.07104884420846348 +3836,19.180000000000586,-0.0710481235003979 +3837,19.18500000000059,-0.0710474029941664 +3838,19.19000000000059,-0.07104668268971621 +3839,19.195000000000594,-0.07104596258699455 +3840,19.200000000000596,-0.07104524268594867 +3841,19.2050000000006,-0.07104452298652579 +3842,19.2100000000006,-0.0710438034886732 +3843,19.215000000000604,-0.07104308419233817 +3844,19.220000000000606,-0.07104236509746797 +3845,19.22500000000061,-0.07104164620400992 +3846,19.23000000000061,-0.07104092751191132 +3847,19.235000000000614,-0.07104020902111949 +3848,19.240000000000617,-0.07103949073158175 +3849,19.24500000000062,-0.07103877264324548 +3850,19.25000000000062,-0.07103805475605802 +3851,19.255000000000624,-0.07103733706996675 +3852,19.260000000000627,-0.07103661958491903 +3853,19.26500000000063,-0.07103590230086226 +3854,19.270000000000632,-0.07103518521774388 +3855,19.275000000000635,-0.07103446833551127 +3856,19.280000000000637,-0.0710337516541119 +3857,19.28500000000064,-0.07103303517349317 +3858,19.290000000000642,-0.07103231889360258 +3859,19.295000000000645,-0.07103160281438757 +3860,19.300000000000647,-0.07103088693579564 +3861,19.30500000000065,-0.07103017125777426 +3862,19.310000000000652,-0.07102945578027094 +3863,19.315000000000655,-0.07102874050323321 +3864,19.320000000000658,-0.07102802542660859 +3865,19.32500000000066,-0.07102731055034463 +3866,19.330000000000663,-0.07102659587438886 +3867,19.335000000000665,-0.07102588139868887 +3868,19.340000000000668,-0.07102516712319222 +3869,19.34500000000067,-0.07102445304784652 +3870,19.350000000000673,-0.07102373917259935 +3871,19.355000000000675,-0.07102302549739833 +3872,19.360000000000678,-0.0710223120221911 +3873,19.36500000000068,-0.07102159874692529 +3874,19.370000000000683,-0.07102088567154854 +3875,19.375000000000686,-0.07102017279600853 +3876,19.38000000000069,-0.07101946012025291 +3877,19.38500000000069,-0.0710187476442294 +3878,19.390000000000693,-0.07101803536788566 +3879,19.395000000000696,-0.07101732329116942 +3880,19.4000000000007,-0.0710166114140284 +3881,19.4050000000007,-0.07101589973641034 +3882,19.410000000000704,-0.071015188258263 +3883,19.415000000000706,-0.07101447697953411 +3884,19.42000000000071,-0.07101376590017147 +3885,19.42500000000071,-0.07101305502012284 +3886,19.430000000000714,-0.07101234433933601 +3887,19.435000000000716,-0.07101163385775881 +3888,19.44000000000072,-0.07101092357533904 +3889,19.44500000000072,-0.07101021349202456 +3890,19.450000000000724,-0.07100950360776319 +3891,19.455000000000727,-0.07100879392250281 +3892,19.46000000000073,-0.07100808443619125 +3893,19.46500000000073,-0.07100737514877642 +3894,19.470000000000734,-0.0710066660602062 +3895,19.475000000000737,-0.07100595717042849 +3896,19.48000000000074,-0.07100524847939121 +3897,19.485000000000742,-0.0710045399870423 +3898,19.490000000000745,-0.07100383169332967 +3899,19.495000000000747,-0.07100312359820131 +3900,19.50000000000075,-0.07100241570160518 +3901,19.505000000000752,-0.07100170800348923 +3902,19.510000000000755,-0.07100100050380147 +3903,19.515000000000757,-0.07100029320248988 +3904,19.52000000000076,-0.07099958609950248 +3905,19.525000000000762,-0.07099887919478731 +3906,19.530000000000765,-0.0709981724882924 +3907,19.535000000000768,-0.0709974659799658 +3908,19.54000000000077,-0.07099675966975556 +3909,19.545000000000773,-0.07099605355760977 +3910,19.550000000000775,-0.0709953476434765 +3911,19.555000000000778,-0.07099464192730384 +3912,19.56000000000078,-0.07099393640903993 +3913,19.565000000000783,-0.07099323108863287 +3914,19.570000000000785,-0.07099252596603078 +3915,19.575000000000788,-0.07099182104118183 +3916,19.58000000000079,-0.07099111631403418 +3917,19.585000000000793,-0.07099041178453597 +3918,19.590000000000796,-0.0709897074526354 +3919,19.5950000000008,-0.07098900331828066 +3920,19.6000000000008,-0.07098829938141997 +3921,19.605000000000803,-0.07098759564200152 +3922,19.610000000000806,-0.07098689209997357 +3923,19.61500000000081,-0.07098618875528433 +3924,19.62000000000081,-0.07098548560788207 +3925,19.625000000000814,-0.07098478265771506 +3926,19.630000000000816,-0.07098407990473157 +3927,19.63500000000082,-0.0709833773488799 +3928,19.64000000000082,-0.07098267499010834 +3929,19.645000000000824,-0.07098197282836519 +3930,19.650000000000826,-0.0709812708635988 +3931,19.65500000000083,-0.07098056909575749 +3932,19.66000000000083,-0.07097986752478963 +3933,19.665000000000834,-0.07097916615064356 +3934,19.670000000000837,-0.07097846497326768 +3935,19.67500000000084,-0.07097776399261035 +3936,19.68000000000084,-0.07097706320861996 +3937,19.685000000000844,-0.07097636262124496 +3938,19.690000000000847,-0.07097566223043374 +3939,19.69500000000085,-0.07097496203613474 +3940,19.700000000000852,-0.0709742620382964 +3941,19.705000000000854,-0.07097356223686718 +3942,19.710000000000857,-0.07097286263179557 +3943,19.71500000000086,-0.07097216322303002 +3944,19.720000000000862,-0.07097146401051903 +3945,19.725000000000865,-0.07097076499421112 +3946,19.730000000000867,-0.07097006617405481 +3947,19.73500000000087,-0.07096936754999861 +3948,19.740000000000872,-0.07096866912199107 +3949,19.745000000000875,-0.07096797088998073 +3950,19.750000000000878,-0.07096727285391619 +3951,19.75500000000088,-0.070966575013746 +3952,19.760000000000883,-0.07096587736941876 +3953,19.765000000000885,-0.07096517992088305 +3954,19.770000000000888,-0.0709644826680875 +3955,19.77500000000089,-0.07096378561098074 +3956,19.780000000000893,-0.0709630887495114 +3957,19.785000000000895,-0.07096239208362813 +3958,19.790000000000898,-0.07096169561327959 +3959,19.7950000000009,-0.07096099933841446 +3960,19.800000000000903,-0.0709603032589814 +3961,19.805000000000906,-0.07095960737492914 +3962,19.810000000000908,-0.07095891168620637 +3963,19.81500000000091,-0.0709582161927618 +3964,19.820000000000913,-0.07095752089454417 +3965,19.825000000000916,-0.07095682579150225 +3966,19.83000000000092,-0.07095613088358478 +3967,19.83500000000092,-0.07095543617074052 +3968,19.840000000000924,-0.07095474165291825 +3969,19.845000000000926,-0.07095404733006676 +3970,19.85000000000093,-0.07095335320213486 +3971,19.85500000000093,-0.07095265926907138 +3972,19.860000000000934,-0.07095196553082513 +3973,19.865000000000936,-0.07095127198734495 +3974,19.87000000000094,-0.0709505786385797 +3975,19.87500000000094,-0.07094988548447824 +3976,19.880000000000944,-0.07094919252498946 +3977,19.885000000000947,-0.07094849976006222 +3978,19.89000000000095,-0.07094780718964543 +3979,19.89500000000095,-0.07094711481368801 +3980,19.900000000000954,-0.07094642263213886 +3981,19.905000000000957,-0.07094573064494696 +3982,19.91000000000096,-0.0709450388520612 +3983,19.915000000000962,-0.0709443472534306 +3984,19.920000000000964,-0.07094365584900407 +3985,19.925000000000967,-0.07094296463873065 +3986,19.93000000000097,-0.07094227362255928 +3987,19.935000000000972,-0.07094158280043901 +3988,19.940000000000975,-0.07094089217231883 +3989,19.945000000000977,-0.07094020173814777 +3990,19.95000000000098,-0.0709395114978749 +3991,19.955000000000982,-0.07093882145144925 +3992,19.960000000000985,-0.07093813159881991 +3993,19.965000000000988,-0.07093744193993594 +3994,19.97000000000099,-0.07093675247474643 +3995,19.975000000000993,-0.07093606320320048 +3996,19.980000000000995,-0.0709353741252472 +3997,19.985000000000998,-0.07093468524083572 +3998,19.990000000001,-0.07093399654991518 +3999,19.995000000001003,-0.07093330805243472 +4000,20.000000000001005,-0.07093261974834353 +4001,20.005000000001008,-0.07093193163759075 +4002,20.01000000000101,-0.07093124372012558 +4003,20.015000000001013,-0.0709305559958972 +4004,20.020000000001016,-0.07092986846485486 +4005,20.025000000001018,-0.07092918112694772 +4006,20.03000000000102,-0.07092849398212506 +4007,20.035000000001023,-0.0709278070303361 +4008,20.040000000001026,-0.0709271202715301 +4009,20.04500000000103,-0.07092643370565634 +4010,20.05000000000103,-0.07092574733266409 +4011,20.055000000001034,-0.07092506115250263 +4012,20.060000000001036,-0.07092437516512129 +4013,20.06500000000104,-0.07092368937046936 +4014,20.07000000000104,-0.07092300376849617 +4015,20.075000000001044,-0.07092231835915108 +4016,20.080000000001046,-0.07092163314238341 +4017,20.08500000000105,-0.07092094811814255 +4018,20.09000000000105,-0.07092026328637786 +4019,20.095000000001054,-0.07091957864703874 +4020,20.100000000001057,-0.07091889420007456 +4021,20.10500000000106,-0.07091820994543475 +4022,20.11000000000106,-0.07091752588306874 +4023,20.115000000001064,-0.07091684201292593 +4024,20.120000000001067,-0.07091615833495579 +4025,20.12500000000107,-0.07091547484910778 +4026,20.130000000001072,-0.07091479155533137 +4027,20.135000000001074,-0.07091410845357601 +4028,20.140000000001077,-0.07091342554379122 +4029,20.14500000000108,-0.07091274282592651 +4030,20.150000000001082,-0.07091206029993137 +4031,20.155000000001085,-0.07091137796575535 +4032,20.160000000001087,-0.07091069582334798 +4033,20.16500000000109,-0.07091001387265883 +4034,20.170000000001092,-0.07090933211363742 +4035,20.175000000001095,-0.07090865054623337 +4036,20.180000000001098,-0.07090796917039624 +4037,20.1850000000011,-0.07090728798607565 +4038,20.190000000001103,-0.0709066069932212 +4039,20.195000000001105,-0.07090592619178249 +4040,20.200000000001108,-0.07090524558170919 +4041,20.20500000000111,-0.07090456516295092 +4042,20.210000000001113,-0.07090388493545734 +4043,20.215000000001115,-0.07090320489917813 +4044,20.220000000001118,-0.07090252505406298 +4045,20.22500000000112,-0.07090184540006156 +4046,20.230000000001123,-0.07090116593712359 +4047,20.235000000001126,-0.07090048666519878 +4048,20.240000000001128,-0.07089980758423686 +4049,20.24500000000113,-0.07089912869418759 +4050,20.250000000001133,-0.07089844999500068 +4051,20.255000000001136,-0.07089777148662592 +4052,20.26000000000114,-0.07089709316901308 +4053,20.26500000000114,-0.07089641504211194 +4054,20.270000000001144,-0.07089573710587231 +4055,20.275000000001146,-0.07089505936024401 +4056,20.28000000000115,-0.07089438180517683 +4057,20.28500000000115,-0.07089370444062064 +4058,20.290000000001154,-0.07089302726652527 +4059,20.295000000001156,-0.07089235028284056 +4060,20.30000000000116,-0.07089167348951642 +4061,20.30500000000116,-0.0708909968865027 +4062,20.310000000001164,-0.0708903204737493 +4063,20.315000000001167,-0.07088964425120613 +4064,20.32000000000117,-0.07088896821882308 +4065,20.32500000000117,-0.07088829237655012 +4066,20.330000000001174,-0.07088761672433715 +4067,20.335000000001177,-0.07088694126213416 +4068,20.34000000000118,-0.07088626598989109 +4069,20.345000000001182,-0.07088559090755792 +4070,20.350000000001184,-0.07088491601508463 +4071,20.355000000001187,-0.07088424131242123 +4072,20.36000000000119,-0.07088356679951771 +4073,20.365000000001192,-0.07088289247632412 +4074,20.370000000001195,-0.07088221834279047 +4075,20.375000000001197,-0.0708815443988668 +4076,20.3800000000012,-0.0708808706445032 +4077,20.385000000001202,-0.07088019707964972 +4078,20.390000000001205,-0.07087952370425644 +4079,20.395000000001207,-0.07087885051827346 +4080,20.40000000000121,-0.07087817752165088 +4081,20.405000000001213,-0.0708775047143388 +4082,20.410000000001215,-0.07087683209628735 +4083,20.415000000001218,-0.0708761596674467 +4084,20.42000000000122,-0.07087548742776698 +4085,20.425000000001223,-0.07087481537719834 +4086,20.430000000001225,-0.07087414351569096 +4087,20.435000000001228,-0.07087347184319505 +4088,20.44000000000123,-0.07087280035966079 +4089,20.445000000001233,-0.07087212906503838 +4090,20.450000000001236,-0.07087145795927804 +4091,20.455000000001238,-0.07087078704233003 +4092,20.46000000000124,-0.07087011631414458 +4093,20.465000000001243,-0.07086944577467193 +4094,20.470000000001246,-0.07086877542386236 +4095,20.47500000000125,-0.07086810526166616 +4096,20.48000000000125,-0.0708674352880336 +4097,20.485000000001254,-0.070866765502915 +4098,20.490000000001256,-0.07086609590626067 +4099,20.49500000000126,-0.07086542649802093 +4100,20.50000000000126,-0.07086475727814612 +4101,20.505000000001264,-0.07086408824658658 +4102,20.510000000001266,-0.07086341940329269 +4103,20.51500000000127,-0.07086275074821481 +4104,20.52000000000127,-0.07086208228130333 +4105,20.525000000001274,-0.07086141400250864 +4106,20.530000000001277,-0.07086074591178115 +4107,20.53500000000128,-0.07086007800907129 +4108,20.54000000000128,-0.07085941029432948 +4109,20.545000000001284,-0.07085874276750616 +4110,20.550000000001287,-0.07085807542855178 +4111,20.55500000000129,-0.07085740827741684 +4112,20.560000000001292,-0.07085674131405177 +4113,20.565000000001294,-0.0708560745384071 +4114,20.570000000001297,-0.07085540795043331 +4115,20.5750000000013,-0.07085474155008091 +4116,20.580000000001302,-0.07085407533730041 +4117,20.585000000001305,-0.07085340931204238 +4118,20.590000000001307,-0.07085274347425735 +4119,20.59500000000131,-0.07085207782389588 +4120,20.600000000001312,-0.07085141236090854 +4121,20.605000000001315,-0.07085074708524591 +4122,20.610000000001317,-0.07085008199685859 +4123,20.61500000000132,-0.0708494170956972 +4124,20.620000000001323,-0.07084875238171232 +4125,20.625000000001325,-0.0708480878548546 +4126,20.630000000001328,-0.07084742351507468 +4127,20.63500000000133,-0.07084675936232321 +4128,20.640000000001333,-0.07084609539655087 +4129,20.645000000001335,-0.0708454316177083 +4130,20.650000000001338,-0.07084476802574621 +4131,20.65500000000134,-0.0708441046206153 +4132,20.660000000001343,-0.07084344140226627 +4133,20.665000000001346,-0.07084277837064984 +4134,20.670000000001348,-0.07084211552571675 +4135,20.67500000000135,-0.07084145286741776 +4136,20.680000000001353,-0.0708407903957036 +4137,20.685000000001356,-0.07084012811052505 +4138,20.69000000000136,-0.07083946601183289 +4139,20.69500000000136,-0.0708388040995779 +4140,20.700000000001364,-0.0708381423737109 +4141,20.705000000001366,-0.0708374808341827 +4142,20.71000000000137,-0.07083681948094411 +4143,20.71500000000137,-0.070836158313946 +4144,20.720000000001374,-0.0708354973331392 +4145,20.725000000001376,-0.07083483653847455 +4146,20.73000000000138,-0.07083417592990296 +4147,20.73500000000138,-0.07083351550737528 +4148,20.740000000001384,-0.07083285527084243 +4149,20.745000000001387,-0.0708321952202553 +4150,20.75000000000139,-0.07083153535556483 +4151,20.75500000000139,-0.07083087567672193 +4152,20.760000000001394,-0.07083021618367755 +4153,20.765000000001397,-0.07082955687638263 +4154,20.7700000000014,-0.07082889775478818 +4155,20.775000000001402,-0.0708282388188451 +4156,20.780000000001404,-0.07082758006850445 +4157,20.785000000001407,-0.0708269215037172 +4158,20.79000000000141,-0.07082626312443435 +4159,20.795000000001412,-0.07082560493060693 +4160,20.800000000001415,-0.070824946922186 +4161,20.805000000001417,-0.07082428909912256 +4162,20.81000000000142,-0.07082363146136769 +4163,20.815000000001422,-0.07082297400887248 +4164,20.820000000001425,-0.07082231674158798 +4165,20.825000000001427,-0.0708216596594653 +4166,20.83000000000143,-0.07082100276245552 +4167,20.835000000001433,-0.07082034605050978 +4168,20.840000000001435,-0.0708196895235792 +4169,20.845000000001438,-0.07081903318161491 +4170,20.85000000000144,-0.07081837702456807 +4171,20.855000000001443,-0.07081772105238983 +4172,20.860000000001445,-0.07081706526503136 +4173,20.865000000001448,-0.07081640966244386 +4174,20.87000000000145,-0.07081575424457852 +4175,20.875000000001453,-0.07081509901138654 +4176,20.880000000001456,-0.07081444396281915 +4177,20.885000000001458,-0.07081378909882756 +4178,20.89000000000146,-0.07081313441936303 +4179,20.895000000001463,-0.07081247992437681 +4180,20.900000000001466,-0.07081182561382016 +4181,20.90500000000147,-0.07081117148764438 +4182,20.91000000000147,-0.07081051754580071 +4183,20.915000000001474,-0.07080986378824047 +4184,20.920000000001476,-0.070809210214915 +4185,20.92500000000148,-0.0708085568257756 +4186,20.93000000000148,-0.07080790362077359 +4187,20.935000000001484,-0.07080725059986033 +4188,20.940000000001486,-0.07080659776298717 +4189,20.94500000000149,-0.07080594511010549 +4190,20.95000000000149,-0.07080529264116667 +4191,20.955000000001494,-0.07080464035612208 +4192,20.960000000001497,-0.07080398825492314 +4193,20.9650000000015,-0.07080333633752126 +4194,20.9700000000015,-0.07080268460386788 +4195,20.975000000001504,-0.0708020330539144 +4196,20.980000000001507,-0.07080138168761231 +4197,20.98500000000151,-0.07080073050491305 +4198,20.990000000001512,-0.07080007950576808 +4199,20.995000000001514,-0.07079942869012891 +4200,21.000000000001517,-0.07079877805794701 +4201,21.00500000000152,-0.07079812760917391 +4202,21.010000000001522,-0.0707974773437611 +4203,21.015000000001525,-0.07079682726166013 +4204,21.020000000001527,-0.07079617736282254 +4205,21.02500000000153,-0.07079552764719986 +4206,21.030000000001532,-0.07079487811474368 +4207,21.035000000001535,-0.07079422876540556 +4208,21.040000000001537,-0.0707935795991371 +4209,21.04500000000154,-0.07079293061588986 +4210,21.050000000001543,-0.07079228181561548 +4211,21.055000000001545,-0.07079163319826559 +4212,21.060000000001548,-0.0707909847637918 +4213,21.06500000000155,-0.07079033651214575 +4214,21.070000000001553,-0.07078968844327914 +4215,21.075000000001555,-0.07078904055714358 +4216,21.080000000001558,-0.07078839285369076 +4217,21.08500000000156,-0.0707877453328724 +4218,21.090000000001563,-0.07078709799464017 +4219,21.095000000001566,-0.07078645083894579 +4220,21.100000000001568,-0.07078580386574097 +4221,21.10500000000157,-0.07078515707497748 +4222,21.110000000001573,-0.07078451046660705 +4223,21.115000000001576,-0.07078386404058142 +4224,21.12000000000158,-0.07078321779685239 +4225,21.12500000000158,-0.07078257173537171 +4226,21.130000000001584,-0.07078192585609118 +4227,21.135000000001586,-0.07078128015896262 +4228,21.14000000000159,-0.07078063464393783 +4229,21.14500000000159,-0.07077998931096864 +4230,21.150000000001594,-0.07077934416000689 +4231,21.155000000001596,-0.07077869919100442 +4232,21.1600000000016,-0.0707780544039131 +4233,21.1650000000016,-0.0707774097986848 +4234,21.170000000001604,-0.0707767653752714 +4235,21.175000000001607,-0.0707761211336248 +4236,21.18000000000161,-0.0707754770736969 +4237,21.18500000000161,-0.07077483319543962 +4238,21.190000000001614,-0.07077418949880487 +4239,21.195000000001617,-0.07077354598374462 +4240,21.20000000000162,-0.07077290265021083 +4241,21.205000000001622,-0.07077225949815542 +4242,21.210000000001624,-0.0707716165275304 +4243,21.215000000001627,-0.07077097373828774 +4244,21.22000000000163,-0.07077033113037944 +4245,21.225000000001632,-0.0707696887037575 +4246,21.230000000001635,-0.07076904645837395 +4247,21.235000000001637,-0.07076840439418083 +4248,21.24000000000164,-0.07076776251113018 +4249,21.245000000001642,-0.07076712080917404 +4250,21.250000000001645,-0.07076647928826446 +4251,21.255000000001647,-0.07076583794835356 +4252,21.26000000000165,-0.0707651967893934 +4253,21.265000000001653,-0.0707645558113361 +4254,21.270000000001655,-0.07076391501413375 +4255,21.275000000001658,-0.07076327439773847 +4256,21.28000000000166,-0.0707626339621024 +4257,21.285000000001663,-0.0707619937071777 +4258,21.290000000001665,-0.0707613536329165 +4259,21.295000000001668,-0.07076071373927098 +4260,21.30000000000167,-0.07076007402619333 +4261,21.305000000001673,-0.07075943449363574 +4262,21.310000000001676,-0.07075879514155038 +4263,21.315000000001678,-0.0707581559698895 +4264,21.32000000000168,-0.07075751697860531 +4265,21.325000000001683,-0.07075687816765003 +4266,21.330000000001686,-0.07075623953697592 +4267,21.33500000000169,-0.07075560108653525 +4268,21.34000000000169,-0.07075496281628028 +4269,21.345000000001694,-0.07075432472616329 +4270,21.350000000001696,-0.07075368681613659 +4271,21.3550000000017,-0.07075304908615243 +4272,21.3600000000017,-0.07075241153616318 +4273,21.365000000001704,-0.07075177416612115 +4274,21.370000000001706,-0.07075113697597867 +4275,21.37500000000171,-0.0707504999656881 +4276,21.38000000000171,-0.07074986313520178 +4277,21.385000000001714,-0.0707492264844721 +4278,21.390000000001717,-0.07074859001345145 +4279,21.39500000000172,-0.07074795372209221 +4280,21.40000000000172,-0.07074731761034679 +4281,21.405000000001724,-0.0707466816781676 +4282,21.410000000001727,-0.07074604592550707 +4283,21.41500000000173,-0.07074541035231764 +4284,21.420000000001732,-0.07074477495855176 +4285,21.425000000001734,-0.0707441397441619 +4286,21.430000000001737,-0.07074350470910054 +4287,21.43500000000174,-0.07074286985332015 +4288,21.440000000001742,-0.07074223517677322 +4289,21.445000000001745,-0.07074160067941228 +4290,21.450000000001747,-0.07074096636118982 +4291,21.45500000000175,-0.07074033222205839 +4292,21.460000000001752,-0.07073969826197052 +4293,21.465000000001755,-0.07073906448087877 +4294,21.470000000001757,-0.0707384308787357 +4295,21.47500000000176,-0.0707377974554939 +4296,21.480000000001763,-0.07073716421110592 +4297,21.485000000001765,-0.0707365311455244 +4298,21.490000000001768,-0.07073589825870191 +4299,21.49500000000177,-0.07073526555059109 +4300,21.500000000001773,-0.07073463302114458 +4301,21.505000000001775,-0.070734000670315 +4302,21.510000000001778,-0.07073336849805502 +4303,21.51500000000178,-0.0707327365043173 +4304,21.520000000001783,-0.07073210468905453 +4305,21.525000000001786,-0.07073147305221936 +4306,21.530000000001788,-0.07073084159376453 +4307,21.53500000000179,-0.07073021031364271 +4308,21.540000000001793,-0.07072957921180667 +4309,21.545000000001796,-0.0707289482882091 +4310,21.5500000000018,-0.07072831754280277 +4311,21.5550000000018,-0.07072768697554042 +4312,21.560000000001803,-0.07072705658637483 +4313,21.565000000001806,-0.07072642637525876 +4314,21.57000000000181,-0.07072579634214501 +4315,21.57500000000181,-0.07072516648698639 +4316,21.580000000001814,-0.07072453680973569 +4317,21.585000000001816,-0.07072390731034572 +4318,21.59000000000182,-0.07072327798876936 +4319,21.59500000000182,-0.07072264884495942 +4320,21.600000000001824,-0.07072201987886878 +4321,21.605000000001827,-0.07072139109045028 +4322,21.61000000000183,-0.07072076247965682 +4323,21.61500000000183,-0.07072013404644127 +4324,21.620000000001834,-0.07071950579075656 +4325,21.625000000001837,-0.07071887771255557 +4326,21.63000000000184,-0.07071824981179124 +4327,21.635000000001842,-0.0707176220884165 +4328,21.640000000001844,-0.07071699454238431 +4329,21.645000000001847,-0.07071636717364761 +4330,21.65000000000185,-0.07071573998215938 +4331,21.655000000001852,-0.07071511296787258 +4332,21.660000000001855,-0.07071448613074023 +4333,21.665000000001857,-0.0707138594707153 +4334,21.67000000000186,-0.07071323298775084 +4335,21.675000000001862,-0.07071260668179984 +4336,21.680000000001865,-0.07071198055281534 +4337,21.685000000001867,-0.07071135460075041 +4338,21.69000000000187,-0.0707107288255581 +4339,21.695000000001873,-0.07071010322719146 +4340,21.700000000001875,-0.07070947780560359 +4341,21.705000000001878,-0.07070885256074758 +4342,21.71000000000188,-0.07070822749257652 +4343,21.715000000001883,-0.07070760260104351 +4344,21.720000000001885,-0.07070697788610172 +4345,21.725000000001888,-0.07070635334770427 +4346,21.73000000000189,-0.07070572898580428 +4347,21.735000000001893,-0.07070510480035495 +4348,21.740000000001896,-0.07070448079130941 +4349,21.745000000001898,-0.07070385695862086 +4350,21.7500000000019,-0.0707032333022425 +4351,21.755000000001903,-0.07070260982212752 +4352,21.760000000001906,-0.07070198651822913 +4353,21.76500000000191,-0.07070136339050058 +4354,21.77000000000191,-0.07070074043889508 +4355,21.775000000001913,-0.07070011766336588 +4356,21.780000000001916,-0.07069949506386626 +4357,21.78500000000192,-0.07069887264034948 +4358,21.79000000000192,-0.07069825039276881 +4359,21.795000000001924,-0.07069762832107757 +4360,21.800000000001926,-0.07069700642522903 +4361,21.80500000000193,-0.07069638470517652 +4362,21.81000000000193,-0.07069576316087335 +4363,21.815000000001934,-0.07069514179227289 +4364,21.820000000001937,-0.07069452059932847 +4365,21.82500000000194,-0.07069389958199344 +4366,21.83000000000194,-0.07069327874022119 +4367,21.835000000001944,-0.07069265807396509 +4368,21.840000000001947,-0.07069203758317853 +4369,21.84500000000195,-0.07069141726781492 +4370,21.850000000001952,-0.07069079712782766 +4371,21.855000000001954,-0.0706901771631702 +4372,21.860000000001957,-0.07068955737379598 +4373,21.86500000000196,-0.07068893775965841 +4374,21.870000000001962,-0.07068831832071099 +4375,21.875000000001965,-0.07068769905690717 +4376,21.880000000001967,-0.07068707996820042 +4377,21.88500000000197,-0.07068646105454426 +4378,21.890000000001972,-0.07068584231589219 +4379,21.895000000001975,-0.07068522375219771 +4380,21.900000000001977,-0.07068460536341437 +4381,21.90500000000198,-0.07068398714949567 +4382,21.910000000001983,-0.07068336911039518 +4383,21.915000000001985,-0.07068275124606646 +4384,21.920000000001988,-0.07068213355646309 +4385,21.92500000000199,-0.07068151604153863 +4386,21.930000000001993,-0.07068089870124669 +4387,21.935000000001995,-0.07068028153554087 +4388,21.940000000001998,-0.07067966454437477 +4389,21.945000000002,-0.07067904772770205 +4390,21.950000000002003,-0.0706784310854763 +4391,21.955000000002006,-0.07067781461765121 +4392,21.960000000002008,-0.07067719832418042 +4393,21.96500000000201,-0.07067658220501759 +4394,21.970000000002013,-0.07067596626011641 +4395,21.975000000002016,-0.07067535048943059 +4396,21.98000000000202,-0.0706747348929138 +4397,21.98500000000202,-0.0706741194705198 +4398,21.990000000002023,-0.07067350422220228 +4399,21.995000000002026,-0.07067288914791499 +4400,22.00000000000203,-0.07067227424761167 +4401,22.00500000000203,-0.07067165952124609 +4402,22.010000000002034,-0.070671044968772 +4403,22.015000000002036,-0.0706704305901432 +4404,22.02000000000204,-0.07066981638531349 +4405,22.02500000000204,-0.07066920235423663 +4406,22.030000000002044,-0.07066858849686648 +4407,22.035000000002047,-0.07066797481315684 +4408,22.04000000000205,-0.07066736130306157 +4409,22.04500000000205,-0.0706667479665345 +4410,22.050000000002054,-0.07066613480352947 +4411,22.055000000002057,-0.07066552181400039 +4412,22.06000000000206,-0.07066490899790111 +4413,22.065000000002062,-0.07066429635518554 +4414,22.070000000002064,-0.07066368388580756 +4415,22.075000000002067,-0.0706630715897211 +4416,22.08000000000207,-0.0706624594668801 +4417,22.085000000002072,-0.07066184751723846 +4418,22.090000000002075,-0.07066123574075014 +4419,22.095000000002077,-0.07066062413736911 +4420,22.10000000000208,-0.07066001270704933 +4421,22.105000000002082,-0.0706594014497448 +4422,22.110000000002085,-0.07065879036540948 +4423,22.115000000002087,-0.07065817945399738 +4424,22.12000000000209,-0.0706575687154625 +4425,22.125000000002093,-0.07065695814975889 +4426,22.130000000002095,-0.07065634775684057 +4427,22.135000000002098,-0.0706557375366616 +4428,22.1400000000021,-0.07065512748917603 +4429,22.145000000002103,-0.0706545176143379 +4430,22.150000000002105,-0.07065390791210133 +4431,22.155000000002108,-0.07065329838242039 +4432,22.16000000000211,-0.0706526890252492 +4433,22.165000000002113,-0.07065207984054184 +4434,22.170000000002116,-0.07065147082825245 +4435,22.175000000002118,-0.07065086198833516 +4436,22.18000000000212,-0.07065025332074411 +4437,22.185000000002123,-0.07064964482543347 +4438,22.190000000002126,-0.0706490365023574 +4439,22.19500000000213,-0.07064842835147009 +4440,22.20000000000213,-0.07064782037272571 +4441,22.205000000002133,-0.07064721256607845 +4442,22.210000000002136,-0.07064660493148255 +4443,22.21500000000214,-0.0706459974688922 +4444,22.22000000000214,-0.07064539017826169 +4445,22.225000000002144,-0.07064478305954519 +4446,22.230000000002146,-0.070644176112697 +4447,22.23500000000215,-0.07064356933767137 +4448,22.24000000000215,-0.07064296273442258 +4449,22.245000000002154,-0.07064235630290493 +4450,22.250000000002156,-0.0706417500430727 +4451,22.25500000000216,-0.0706411439548802 +4452,22.26000000000216,-0.07064053803828178 +4453,22.265000000002164,-0.07063993229323172 +4454,22.270000000002167,-0.07063932671968441 +4455,22.27500000000217,-0.07063872131759417 +4456,22.280000000002172,-0.07063811608691539 +4457,22.285000000002174,-0.07063751102760243 +4458,22.290000000002177,-0.07063690613960968 +4459,22.29500000000218,-0.07063630142289154 +4460,22.300000000002182,-0.07063569687740241 +4461,22.305000000002185,-0.07063509250309671 +4462,22.310000000002187,-0.07063448829992888 +4463,22.31500000000219,-0.07063388426785334 +4464,22.320000000002192,-0.07063328040682457 +4465,22.325000000002195,-0.070632676716797 +4466,22.330000000002197,-0.07063207319772515 +4467,22.3350000000022,-0.07063146984956346 +4468,22.340000000002203,-0.07063086667226645 +4469,22.345000000002205,-0.07063026366578862 +4470,22.350000000002208,-0.07062966083008447 +4471,22.35500000000221,-0.07062905816510856 +4472,22.360000000002213,-0.07062845567081541 +4473,22.365000000002215,-0.07062785334715957 +4474,22.370000000002218,-0.0706272511940956 +4475,22.37500000000222,-0.0706266492115781 +4476,22.380000000002223,-0.07062604739956162 +4477,22.385000000002226,-0.07062544575800075 +4478,22.390000000002228,-0.07062484428685012 +4479,22.39500000000223,-0.07062424298606433 +4480,22.400000000002233,-0.07062364185559801 +4481,22.405000000002236,-0.07062304089540579 +4482,22.41000000000224,-0.07062244010544234 +4483,22.41500000000224,-0.0706218394856623 +4484,22.420000000002243,-0.07062123903602033 +4485,22.425000000002246,-0.07062063875647114 +4486,22.43000000000225,-0.0706200386469694 +4487,22.43500000000225,-0.07061943870746983 +4488,22.440000000002254,-0.07061883893792713 +4489,22.445000000002256,-0.07061823933829603 +4490,22.45000000000226,-0.07061763990853126 +4491,22.45500000000226,-0.07061704064858758 +4492,22.460000000002264,-0.07061644155841973 +4493,22.465000000002266,-0.07061584263798248 +4494,22.47000000000227,-0.07061524388723062 +4495,22.47500000000227,-0.07061464530611893 +4496,22.480000000002274,-0.07061404689460221 +4497,22.485000000002277,-0.07061344865263529 +4498,22.49000000000228,-0.07061285058017296 +4499,22.495000000002282,-0.0706122526771701 +4500,22.500000000002284,-0.0706116549435815 +4501,22.505000000002287,-0.07061105737936205 +4502,22.51000000000229,-0.07061045998446662 +4503,22.515000000002292,-0.07060986275885006 +4504,22.520000000002295,-0.07060926570246727 +4505,22.525000000002297,-0.07060866881527315 +4506,22.5300000000023,-0.0706080720972226 +4507,22.535000000002302,-0.07060747554827057 +4508,22.540000000002305,-0.07060687916837197 +4509,22.545000000002307,-0.07060628295748173 +4510,22.55000000000231,-0.07060568691555481 +4511,22.555000000002313,-0.0706050910425462 +4512,22.560000000002315,-0.07060449533841083 +4513,22.565000000002318,-0.07060389980310372 +4514,22.57000000000232,-0.07060330443657983 +4515,22.575000000002323,-0.0706027092387942 +4516,22.580000000002325,-0.07060211420970186 +4517,22.585000000002328,-0.07060151934925779 +4518,22.59000000000233,-0.07060092465741706 +4519,22.595000000002333,-0.0706003301341347 +4520,22.600000000002336,-0.07059973577936582 +4521,22.605000000002338,-0.07059914159306545 +4522,22.61000000000234,-0.07059854757518866 +4523,22.615000000002343,-0.07059795372569058 +4524,22.620000000002346,-0.07059736004452631 +4525,22.62500000000235,-0.07059676653165095 +4526,22.63000000000235,-0.07059617318701962 +4527,22.635000000002353,-0.07059558001058747 +4528,22.640000000002356,-0.07059498700230964 +4529,22.64500000000236,-0.07059439416214129 +4530,22.65000000000236,-0.07059380149003759 +4531,22.655000000002364,-0.07059320898595373 +4532,22.660000000002366,-0.07059261664984487 +4533,22.66500000000237,-0.07059202448166624 +4534,22.67000000000237,-0.07059143248137306 +4535,22.675000000002374,-0.07059084064892053 +4536,22.680000000002376,-0.0705902489842639 +4537,22.68500000000238,-0.07058965748735839 +4538,22.69000000000238,-0.07058906615815928 +4539,22.695000000002384,-0.07058847499662184 +4540,22.700000000002387,-0.07058788400270133 +4541,22.70500000000239,-0.07058729317635304 +4542,22.710000000002392,-0.07058670251753228 +4543,22.715000000002394,-0.07058611202619433 +4544,22.720000000002397,-0.07058552170229454 +4545,22.7250000000024,-0.07058493154578824 +4546,22.730000000002402,-0.07058434155663075 +4547,22.735000000002405,-0.07058375173477743 +4548,22.740000000002407,-0.07058316208018367 +4549,22.74500000000241,-0.07058257259280482 +4550,22.750000000002412,-0.07058198327259625 +4551,22.755000000002415,-0.07058139411951338 +4552,22.760000000002417,-0.07058080513351161 +4553,22.76500000000242,-0.07058021631454636 +4554,22.770000000002423,-0.07057962766257306 +4555,22.775000000002425,-0.07057903917754713 +4556,22.780000000002428,-0.07057845085942403 +4557,22.78500000000243,-0.07057786270815923 +4558,22.790000000002433,-0.07057727472370819 +4559,22.795000000002435,-0.07057668690602639 +4560,22.800000000002438,-0.07057609925506934 +4561,22.80500000000244,-0.07057551177079252 +4562,22.810000000002443,-0.07057492445315146 +4563,22.815000000002446,-0.07057433730210165 +4564,22.820000000002448,-0.07057375031759869 +4565,22.82500000000245,-0.07057316349959805 +4566,22.830000000002453,-0.07057257684805535 +4567,22.835000000002456,-0.07057199036292612 +4568,22.84000000000246,-0.07057140404416595 +4569,22.84500000000246,-0.07057081789173043 +4570,22.850000000002463,-0.07057023190557515 +4571,22.855000000002466,-0.07056964608565575 +4572,22.86000000000247,-0.07056906043192782 +4573,22.86500000000247,-0.070568474944347 +4574,22.870000000002474,-0.07056788962286892 +4575,22.875000000002476,-0.07056730446744926 +4576,22.88000000000248,-0.07056671947804367 +4577,22.88500000000248,-0.07056613465460783 +4578,22.890000000002484,-0.07056554999709741 +4579,22.895000000002486,-0.0705649655054681 +4580,22.90000000000249,-0.07056438117967564 +4581,22.90500000000249,-0.07056379701967574 +4582,22.910000000002494,-0.07056321302542412 +4583,22.915000000002497,-0.0705626291968765 +4584,22.9200000000025,-0.07056204553398865 +4585,22.925000000002502,-0.07056146203671632 +4586,22.930000000002504,-0.0705608787050153 +4587,22.935000000002507,-0.07056029553884134 +4588,22.94000000000251,-0.07055971253815027 +4589,22.945000000002512,-0.07055912970289785 +4590,22.950000000002515,-0.07055854703303993 +4591,22.955000000002517,-0.07055796452853233 +4592,22.96000000000252,-0.07055738218933086 +4593,22.965000000002522,-0.07055680001539137 +4594,22.970000000002525,-0.07055621800666975 +4595,22.975000000002527,-0.07055563616312184 +4596,22.98000000000253,-0.0705550544847035 +4597,22.985000000002533,-0.07055447297137066 +4598,22.990000000002535,-0.07055389162307919 +4599,22.995000000002538,-0.07055331043978502 +4600,23.00000000000254,-0.07055272942144405 +4601,23.005000000002543,-0.07055214856801223 +4602,23.010000000002545,-0.07055156787944547 +4603,23.015000000002548,-0.07055098735569976 +4604,23.02000000000255,-0.07055040699673104 +4605,23.025000000002553,-0.07054982680249529 +4606,23.030000000002556,-0.07054924677294849 +4607,23.035000000002558,-0.07054866690804665 +4608,23.04000000000256,-0.07054808720774573 +4609,23.045000000002563,-0.07054750767200181 +4610,23.050000000002566,-0.07054692830077088 +4611,23.05500000000257,-0.07054634909400898 +4612,23.06000000000257,-0.07054577005167215 +4613,23.065000000002573,-0.07054519117371648 +4614,23.070000000002576,-0.07054461246009801 +4615,23.07500000000258,-0.07054403391077282 +4616,23.08000000000258,-0.07054345552569703 +4617,23.085000000002584,-0.07054287730482671 +4618,23.090000000002586,-0.07054229924811797 +4619,23.09500000000259,-0.07054172135552696 +4620,23.10000000000259,-0.07054114362700979 +4621,23.105000000002594,-0.07054056606252261 +4622,23.110000000002596,-0.07053998866202159 +4623,23.1150000000026,-0.07053941142546286 +4624,23.1200000000026,-0.07053883435280263 +4625,23.125000000002604,-0.07053825744399705 +4626,23.130000000002607,-0.07053768069900236 +4627,23.13500000000261,-0.07053710411777475 +4628,23.140000000002612,-0.07053652770027041 +4629,23.145000000002614,-0.07053595144644562 +4630,23.150000000002617,-0.07053537535625656 +4631,23.15500000000262,-0.07053479942965953 +4632,23.160000000002622,-0.07053422366661077 +4633,23.165000000002625,-0.07053364806706655 +4634,23.170000000002627,-0.07053307263098316 +4635,23.17500000000263,-0.07053249735831688 +4636,23.180000000002632,-0.070531922249024 +4637,23.185000000002635,-0.07053134730306088 +4638,23.190000000002637,-0.0705307725203838 +4639,23.19500000000264,-0.0705301979009491 +4640,23.200000000002643,-0.07052962344471313 +4641,23.205000000002645,-0.07052904915163226 +4642,23.210000000002648,-0.07052847502166285 +4643,23.21500000000265,-0.07052790105476126 +4644,23.220000000002653,-0.0705273272508839 +4645,23.225000000002655,-0.07052675360998716 +4646,23.230000000002658,-0.07052618013202744 +4647,23.23500000000266,-0.07052560681696116 +4648,23.240000000002663,-0.07052503366474476 +4649,23.245000000002666,-0.07052446067533467 +4650,23.250000000002668,-0.07052388784868734 +4651,23.25500000000267,-0.07052331518475924 +4652,23.260000000002673,-0.07052274268350683 +4653,23.265000000002676,-0.07052217034488661 +4654,23.27000000000268,-0.07052159816885506 +4655,23.27500000000268,-0.07052102615536869 +4656,23.280000000002683,-0.070520454304384 +4657,23.285000000002686,-0.07051988261585754 +4658,23.29000000000269,-0.07051931108974582 +4659,23.29500000000269,-0.0705187397260054 +4660,23.300000000002694,-0.07051816852459283 +4661,23.305000000002696,-0.07051759748546468 +4662,23.3100000000027,-0.0705170266085775 +4663,23.3150000000027,-0.07051645589388794 +4664,23.320000000002704,-0.07051588534135254 +4665,23.325000000002706,-0.07051531495092793 +4666,23.33000000000271,-0.07051474472257073 +4667,23.33500000000271,-0.07051417465623758 +4668,23.340000000002714,-0.07051360475188509 +4669,23.345000000002717,-0.07051303500946993 +4670,23.35000000000272,-0.07051246542894878 +4671,23.355000000002722,-0.07051189601027828 +4672,23.360000000002724,-0.07051132675341512 +4673,23.365000000002727,-0.070510757658316 +4674,23.37000000000273,-0.07051018872493764 +4675,23.375000000002732,-0.07050961995323672 +4676,23.380000000002735,-0.07050905134316998 +4677,23.385000000002737,-0.07050848289469416 +4678,23.39000000000274,-0.07050791460776601 +4679,23.395000000002742,-0.07050734648234228 +4680,23.400000000002745,-0.0705067785183797 +4681,23.405000000002747,-0.07050621071583511 +4682,23.41000000000275,-0.07050564307466525 +4683,23.415000000002753,-0.07050507559482695 +4684,23.420000000002755,-0.070504508276277 +4685,23.425000000002758,-0.07050394111897221 +4686,23.43000000000276,-0.07050337412286943 +4687,23.435000000002763,-0.07050280728792549 +4688,23.440000000002765,-0.07050224061409725 +4689,23.445000000002768,-0.07050167410134155 +4690,23.45000000000277,-0.0705011077496153 +4691,23.455000000002773,-0.07050054155887533 +4692,23.460000000002776,-0.07049997552907857 +4693,23.465000000002778,-0.07049940966018191 +4694,23.47000000000278,-0.07049884395214227 +4695,23.475000000002783,-0.07049827840491656 +4696,23.480000000002786,-0.07049771301846172 +4697,23.48500000000279,-0.07049714779273471 +4698,23.49000000000279,-0.07049658272769246 +4699,23.495000000002793,-0.07049601782329196 +4700,23.500000000002796,-0.07049545307949015 +4701,23.5050000000028,-0.07049488849624405 +4702,23.5100000000028,-0.07049432407351064 +4703,23.515000000002804,-0.07049375981124695 +4704,23.520000000002806,-0.07049319570940997 +4705,23.52500000000281,-0.07049263176795675 +4706,23.53000000000281,-0.07049206798684432 +4707,23.535000000002814,-0.07049150436602972 +4708,23.540000000002816,-0.07049094090547002 +4709,23.54500000000282,-0.07049037760512228 +4710,23.55000000000282,-0.0704898144649436 +4711,23.555000000002824,-0.07048925148489105 +4712,23.560000000002827,-0.07048868866492174 +4713,23.56500000000283,-0.07048812600499278 +4714,23.570000000002832,-0.0704875635050613 +4715,23.575000000002834,-0.07048700116508443 +4716,23.580000000002837,-0.07048643898501929 +4717,23.58500000000284,-0.07048587696482307 +4718,23.590000000002842,-0.07048531510445291 +4719,23.595000000002845,-0.070484753403866 +4720,23.600000000002847,-0.0704841918630195 +4721,23.60500000000285,-0.07048363048187063 +4722,23.610000000002852,-0.07048306926037659 +4723,23.615000000002855,-0.0704825081984946 +4724,23.620000000002857,-0.07048194729618187 +4725,23.62500000000286,-0.07048138655339566 +4726,23.630000000002862,-0.07048082597009318 +4727,23.635000000002865,-0.07048026554623173 +4728,23.640000000002868,-0.07047970528176854 +4729,23.64500000000287,-0.07047914517666093 +4730,23.650000000002873,-0.07047858523086614 +4731,23.655000000002875,-0.07047802544434151 +4732,23.660000000002878,-0.07047746581704434 +4733,23.66500000000288,-0.07047690634893193 +4734,23.670000000002883,-0.07047634703996164 +4735,23.675000000002886,-0.07047578789009079 +4736,23.680000000002888,-0.07047522889927674 +4737,23.68500000000289,-0.07047467006747683 +4738,23.690000000002893,-0.07047411139464847 +4739,23.695000000002896,-0.07047355288074901 +4740,23.7000000000029,-0.07047299452573585 +4741,23.7050000000029,-0.07047243632956642 +4742,23.710000000002903,-0.0704718782921981 +4743,23.715000000002906,-0.07047132041358832 +4744,23.72000000000291,-0.07047076269369452 +4745,23.72500000000291,-0.07047020513247415 +4746,23.730000000002914,-0.07046964772988466 +4747,23.735000000002916,-0.0704690904858835 +4748,23.74000000000292,-0.07046853340042818 +4749,23.74500000000292,-0.07046797647347615 +4750,23.750000000002924,-0.07046741970498492 +4751,23.755000000002926,-0.070466863094912 +4752,23.76000000000293,-0.0704663066432149 +4753,23.76500000000293,-0.07046575034985117 +4754,23.770000000002934,-0.07046519421477832 +4755,23.775000000002937,-0.07046463823795389 +4756,23.78000000000294,-0.07046408241933548 +4757,23.785000000002942,-0.07046352675888064 +4758,23.790000000002944,-0.07046297125654692 +4759,23.795000000002947,-0.07046241591229196 +4760,23.80000000000295,-0.07046186072607333 +4761,23.805000000002952,-0.07046130569784863 +4762,23.810000000002955,-0.0704607508275755 +4763,23.815000000002957,-0.07046019611521157 +4764,23.82000000000296,-0.07045964156071446 +4765,23.825000000002962,-0.07045908716404185 +4766,23.830000000002965,-0.07045853292515139 +4767,23.835000000002967,-0.07045797884400075 +4768,23.84000000000297,-0.07045742492054761 +4769,23.845000000002972,-0.07045687115474966 +4770,23.850000000002975,-0.07045631754656462 +4771,23.855000000002978,-0.07045576409595018 +4772,23.86000000000298,-0.07045521080286408 +4773,23.865000000002983,-0.07045465766726405 +4774,23.870000000002985,-0.07045410468910786 +4775,23.875000000002988,-0.07045355186835321 +4776,23.88000000000299,-0.0704529992049579 +4777,23.885000000002993,-0.07045244669887972 +4778,23.890000000002996,-0.0704518943500764 +4779,23.895000000002998,-0.07045134215850578 +4780,23.900000000003,-0.07045079012412567 +4781,23.905000000003003,-0.07045023824689386 +4782,23.910000000003006,-0.0704496865267682 +4783,23.91500000000301,-0.0704491349637065 +4784,23.92000000000301,-0.07044858355766664 +4785,23.925000000003013,-0.07044803230860645 +4786,23.930000000003016,-0.07044748121648382 +4787,23.93500000000302,-0.07044693028125662 +4788,23.94000000000302,-0.07044637950288272 +4789,23.945000000003024,-0.07044582888132005 +4790,23.950000000003026,-0.07044527841652648 +4791,23.95500000000303,-0.07044472810845996 +4792,23.96000000000303,-0.07044417795707841 +4793,23.965000000003034,-0.07044362796233977 +4794,23.970000000003036,-0.070443078124202 +4795,23.97500000000304,-0.07044252844262304 +4796,23.98000000000304,-0.07044197891756088 +4797,23.985000000003044,-0.07044142954897349 +4798,23.990000000003047,-0.07044088033681886 +4799,23.99500000000305,-0.070440331281055 +4800,24.000000000003052,-0.0704397823816399 +4801,24.005000000003054,-0.07043923363853162 +4802,24.010000000003057,-0.07043868505168815 +4803,24.01500000000306,-0.07043813662106757 +4804,24.020000000003062,-0.0704375883466279 +4805,24.025000000003065,-0.07043704022832724 +4806,24.030000000003067,-0.07043649226612363 +4807,24.03500000000307,-0.07043594445997514 +4808,24.040000000003072,-0.07043539680983991 +4809,24.045000000003075,-0.07043484931567602 +4810,24.050000000003077,-0.07043430197744158 +4811,24.05500000000308,-0.07043375479509473 +4812,24.060000000003082,-0.07043320776859359 +4813,24.065000000003085,-0.0704326608978963 +4814,24.070000000003088,-0.07043211418296103 +4815,24.07500000000309,-0.07043156762374593 +4816,24.080000000003093,-0.07043102122020921 +4817,24.085000000003095,-0.070430474972309 +4818,24.090000000003098,-0.07042992888000355 +4819,24.0950000000031,-0.07042938294325103 +4820,24.100000000003103,-0.07042883716200966 +4821,24.105000000003105,-0.07042829153623768 +4822,24.110000000003108,-0.07042774606589332 +4823,24.11500000000311,-0.07042720075093484 +4824,24.120000000003113,-0.07042665559132047 +4825,24.125000000003116,-0.0704261105870085 +4826,24.13000000000312,-0.07042556573795719 +4827,24.13500000000312,-0.07042502104412483 +4828,24.140000000003123,-0.07042447650546975 +4829,24.145000000003126,-0.07042393212195022 +4830,24.15000000000313,-0.07042338789352456 +4831,24.15500000000313,-0.07042284382015113 +4832,24.160000000003134,-0.07042229990178824 +4833,24.165000000003136,-0.07042175613839424 +4834,24.17000000000314,-0.07042121252992752 +4835,24.17500000000314,-0.07042066907634642 +4836,24.180000000003144,-0.07042012577760931 +4837,24.185000000003146,-0.07041958263367461 +4838,24.19000000000315,-0.0704190396445007 +4839,24.19500000000315,-0.070418496810046 +4840,24.200000000003154,-0.07041795413026891 +4841,24.205000000003157,-0.07041741160512788 +4842,24.21000000000316,-0.07041686923458135 +4843,24.21500000000316,-0.07041632701858776 +4844,24.220000000003164,-0.07041578495710557 +4845,24.225000000003167,-0.07041524305009327 +4846,24.23000000000317,-0.07041470129750933 +4847,24.235000000003172,-0.07041415969931224 +4848,24.240000000003175,-0.0704136182554605 +4849,24.245000000003177,-0.0704130769659126 +4850,24.25000000000318,-0.07041253583062712 +4851,24.255000000003182,-0.07041199484956255 +4852,24.260000000003185,-0.07041145402267743 +4853,24.265000000003187,-0.07041091334993033 +4854,24.27000000000319,-0.0704103728312798 +4855,24.275000000003192,-0.07040983246668439 +4856,24.280000000003195,-0.07040929225610273 +4857,24.285000000003198,-0.0704087521994934 +4858,24.2900000000032,-0.07040821229681499 +4859,24.295000000003203,-0.07040767254802612 +4860,24.300000000003205,-0.0704071329530854 +4861,24.305000000003208,-0.07040659351195147 +4862,24.31000000000321,-0.07040605422458299 +4863,24.315000000003213,-0.07040551509093859 +4864,24.320000000003215,-0.07040497611097696 +4865,24.325000000003218,-0.07040443728465676 +4866,24.33000000000322,-0.07040389861193666 +4867,24.335000000003223,-0.07040336009277537 +4868,24.340000000003226,-0.0704028217271316 +4869,24.34500000000323,-0.07040228351496404 +4870,24.35000000000323,-0.07040174545623144 +4871,24.355000000003233,-0.07040120755089252 +4872,24.360000000003236,-0.07040066979890604 +4873,24.36500000000324,-0.07040013220023073 +4874,24.37000000000324,-0.07039959475482538 +4875,24.375000000003244,-0.07039905746264874 +4876,24.380000000003246,-0.07039852032365963 +4877,24.38500000000325,-0.07039798333781681 +4878,24.39000000000325,-0.0703974465050791 +4879,24.395000000003254,-0.07039690982540532 +4880,24.400000000003256,-0.07039637329875428 +4881,24.40500000000326,-0.07039583692508483 +4882,24.41000000000326,-0.07039530070435582 +4883,24.415000000003264,-0.0703947646365261 +4884,24.420000000003267,-0.07039422872155451 +4885,24.42500000000327,-0.07039369295939996 +4886,24.43000000000327,-0.07039315735002133 +4887,24.435000000003274,-0.0703926218933775 +4888,24.440000000003277,-0.07039208658942739 +4889,24.44500000000328,-0.07039155143812992 +4890,24.450000000003282,-0.07039101643944401 +4891,24.455000000003285,-0.07039048159332859 +4892,24.460000000003287,-0.07038994689974261 +4893,24.46500000000329,-0.07038941235864503 +4894,24.470000000003292,-0.07038887796999482 +4895,24.475000000003295,-0.07038834373375095 +4896,24.480000000003297,-0.07038780964987243 +4897,24.4850000000033,-0.07038727571831821 +4898,24.490000000003302,-0.07038674193904733 +4899,24.495000000003305,-0.07038620831201879 +4900,24.500000000003308,-0.07038567483719164 +4901,24.50500000000331,-0.07038514151452491 +4902,24.510000000003313,-0.07038460834397763 +4903,24.515000000003315,-0.07038407532550886 +4904,24.520000000003318,-0.07038354245907767 +4905,24.52500000000332,-0.07038300974464316 +4906,24.530000000003323,-0.0703824771821644 +4907,24.535000000003325,-0.07038194477160048 +4908,24.540000000003328,-0.0703814125129105 +4909,24.54500000000333,-0.07038088040605361 +4910,24.550000000003333,-0.07038034845098891 +4911,24.555000000003336,-0.07037981664767554 +4912,24.56000000000334,-0.07037928499607266 +4913,24.56500000000334,-0.07037875349613941 +4914,24.570000000003343,-0.07037822214783497 +4915,24.575000000003346,-0.07037769095111854 +4916,24.58000000000335,-0.07037715990594927 +4917,24.58500000000335,-0.07037662901228638 +4918,24.590000000003354,-0.07037609827008905 +4919,24.595000000003356,-0.07037556767931652 +4920,24.60000000000336,-0.07037503723992802 +4921,24.60500000000336,-0.07037450695188278 +4922,24.610000000003364,-0.07037397681514004 +4923,24.615000000003366,-0.07037344682965907 +4924,24.62000000000337,-0.07037291699539915 +4925,24.62500000000337,-0.07037238731231953 +4926,24.630000000003374,-0.07037185778037951 +4927,24.635000000003377,-0.07037132839953839 +4928,24.64000000000338,-0.07037079916975547 +4929,24.64500000000338,-0.07037027009099008 +4930,24.650000000003384,-0.07036974116320152 +4931,24.655000000003387,-0.07036921238634918 +4932,24.66000000000339,-0.07036868376039236 +4933,24.665000000003392,-0.07036815528529043 +4934,24.670000000003395,-0.07036762696100275 +4935,24.675000000003397,-0.07036709878748873 +4936,24.6800000000034,-0.07036657076470773 +4937,24.685000000003402,-0.07036604289261915 +4938,24.690000000003405,-0.07036551517118239 +4939,24.695000000003407,-0.07036498760035689 +4940,24.70000000000341,-0.07036446018010208 +4941,24.705000000003412,-0.07036393291037736 +4942,24.710000000003415,-0.07036340579114221 +4943,24.715000000003418,-0.07036287882235608 +4944,24.72000000000342,-0.07036235200397843 +4945,24.725000000003423,-0.07036182533596874 +4946,24.730000000003425,-0.07036129881828651 +4947,24.735000000003428,-0.07036077245089123 +4948,24.74000000000343,-0.0703602462337424 +4949,24.745000000003433,-0.07035972016679955 +4950,24.750000000003435,-0.07035919425002218 +4951,24.755000000003438,-0.07035866848336987 +4952,24.76000000000344,-0.07035814286680213 +4953,24.765000000003443,-0.07035761740027853 +4954,24.770000000003446,-0.07035709208375863 +4955,24.77500000000345,-0.07035656691720202 +4956,24.78000000000345,-0.07035604190056828 +4957,24.785000000003453,-0.07035551703381701 +4958,24.790000000003456,-0.07035499231690781 +4959,24.79500000000346,-0.07035446774980031 +4960,24.80000000000346,-0.07035394333245412 +4961,24.805000000003464,-0.07035341906482888 +4962,24.810000000003466,-0.07035289494688425 +4963,24.81500000000347,-0.07035237097857987 +4964,24.82000000000347,-0.07035184715987541 +4965,24.825000000003474,-0.07035132349073056 +4966,24.830000000003476,-0.070350799971105 +4967,24.83500000000348,-0.0703502766009584 +4968,24.84000000000348,-0.0703497533802505 +4969,24.845000000003484,-0.070349230308941 +4970,24.850000000003487,-0.07034870738698962 +4971,24.85500000000349,-0.07034818461435612 +4972,24.86000000000349,-0.0703476619910002 +4973,24.865000000003494,-0.07034713951688168 +4974,24.870000000003497,-0.07034661719196028 +4975,24.8750000000035,-0.07034609501619578 +4976,24.880000000003502,-0.07034557298954798 +4977,24.885000000003505,-0.07034505111197666 +4978,24.890000000003507,-0.07034452938344164 +4979,24.89500000000351,-0.07034400780390271 +4980,24.900000000003512,-0.07034348637331972 +4981,24.905000000003515,-0.0703429650916525 +4982,24.910000000003517,-0.07034244395886088 +4983,24.91500000000352,-0.07034192297490474 +4984,24.920000000003522,-0.07034140213974392 +4985,24.925000000003525,-0.07034088145333832 +4986,24.930000000003528,-0.0703403609156478 +4987,24.93500000000353,-0.07033984052663225 +4988,24.940000000003533,-0.07033932028625159 +4989,24.945000000003535,-0.07033880019446573 +4990,24.950000000003538,-0.07033828025123459 +4991,24.95500000000354,-0.07033776045651811 +4992,24.960000000003543,-0.07033724081027623 +4993,24.965000000003545,-0.07033672131246892 +4994,24.970000000003548,-0.0703362019630561 +4995,24.97500000000355,-0.07033568276199778 +4996,24.980000000003553,-0.07033516370925394 +4997,24.985000000003556,-0.07033464480478455 +4998,24.99000000000356,-0.07033412604854963 +4999,24.99500000000356,-0.0703336074405092 +5000,25.000000000003563,-0.07033308898062328 +5001,25.005000000003566,-0.07033257066885187 +5002,25.01000000000357,-0.07033205250515505 +5003,25.01500000000357,-0.07033153448949285 +5004,25.020000000003574,-0.07033101662182535 +5005,25.025000000003576,-0.07033049890211261 +5006,25.03000000000358,-0.0703299813303147 +5007,25.03500000000358,-0.07032946390639175 +5008,25.040000000003584,-0.07032894663030383 +5009,25.045000000003586,-0.07032842950201104 +5010,25.05000000000359,-0.07032791252147352 +5011,25.05500000000359,-0.07032739568865141 +5012,25.060000000003594,-0.07032687900350483 +5013,25.065000000003597,-0.07032636246599394 +5014,25.0700000000036,-0.07032584607607889 +5015,25.0750000000036,-0.07032532983371986 +5016,25.080000000003604,-0.07032481373887703 +5017,25.085000000003607,-0.07032429779151059 +5018,25.09000000000361,-0.07032378199158074 +5019,25.095000000003612,-0.07032326633904766 +5020,25.100000000003615,-0.07032275083387161 +5021,25.105000000003617,-0.07032223547601281 +5022,25.11000000000362,-0.07032172026543149 +5023,25.115000000003622,-0.07032120520208789 +5024,25.120000000003625,-0.07032069028594227 +5025,25.125000000003627,-0.07032017551695494 +5026,25.13000000000363,-0.07031966089508612 +5027,25.135000000003632,-0.07031914642029612 +5028,25.140000000003635,-0.07031863209254524 +5029,25.145000000003638,-0.07031811791179379 +5030,25.15000000000364,-0.0703176038780021 +5031,25.155000000003643,-0.07031708999113045 +5032,25.160000000003645,-0.07031657625113924 +5033,25.165000000003648,-0.07031606265798877 +5034,25.17000000000365,-0.0703155492116394 +5035,25.175000000003653,-0.07031503591205152 +5036,25.180000000003655,-0.07031452275918548 +5037,25.185000000003658,-0.07031400975300167 +5038,25.19000000000366,-0.0703134968934605 +5039,25.195000000003663,-0.07031298418052237 +5040,25.200000000003666,-0.07031247161414768 +5041,25.20500000000367,-0.07031195919429688 +5042,25.21000000000367,-0.07031144692093039 +5043,25.215000000003673,-0.07031093479400863 +5044,25.220000000003676,-0.07031042281349209 +5045,25.22500000000368,-0.07030991097934124 +5046,25.23000000000368,-0.07030939929151653 +5047,25.235000000003684,-0.07030888774997844 +5048,25.240000000003686,-0.07030837635468747 +5049,25.24500000000369,-0.07030786510560412 +5050,25.25000000000369,-0.07030735400268891 +5051,25.255000000003694,-0.07030684304590237 +5052,25.260000000003696,-0.07030633223520501 +5053,25.2650000000037,-0.07030582157055738 +5054,25.2700000000037,-0.07030531105192005 +5055,25.275000000003704,-0.07030480067925354 +5056,25.280000000003707,-0.07030429045251847 +5057,25.28500000000371,-0.0703037803716754 +5058,25.29000000000371,-0.0703032704366849 +5059,25.295000000003714,-0.0703027606475076 +5060,25.300000000003717,-0.07030225100410409 +5061,25.30500000000372,-0.07030174150643499 +5062,25.310000000003722,-0.07030123215446095 +5063,25.315000000003725,-0.07030072294814259 +5064,25.320000000003727,-0.07030021388744057 +5065,25.32500000000373,-0.07029970497231552 +5066,25.330000000003732,-0.07029919620272816 +5067,25.335000000003735,-0.07029868757863912 +5068,25.340000000003737,-0.07029817910000911 +5069,25.34500000000374,-0.07029767076679883 +5070,25.350000000003742,-0.07029716257896898 +5071,25.355000000003745,-0.07029665453648028 +5072,25.360000000003748,-0.07029614663929346 +5073,25.36500000000375,-0.07029563888736924 +5074,25.370000000003753,-0.07029513128066837 +5075,25.375000000003755,-0.07029462381915162 +5076,25.380000000003758,-0.07029411650277977 +5077,25.38500000000376,-0.07029360933151355 +5078,25.390000000003763,-0.07029310230531378 +5079,25.395000000003765,-0.07029259542414124 +5080,25.400000000003768,-0.07029208868795674 +5081,25.40500000000377,-0.07029158209672107 +5082,25.410000000003773,-0.0702910756503951 +5083,25.415000000003776,-0.07029056934893961 +5084,25.42000000000378,-0.07029006319231548 +5085,25.42500000000378,-0.07028955718048358 +5086,25.430000000003783,-0.07028905131340471 +5087,25.435000000003786,-0.0702885455910398 +5088,25.44000000000379,-0.0702880400133497 +5089,25.44500000000379,-0.07028753458029531 +5090,25.450000000003794,-0.07028702929183754 +5091,25.455000000003796,-0.07028652414793729 +5092,25.4600000000038,-0.07028601914855546 +5093,25.4650000000038,-0.07028551429365303 +5094,25.470000000003804,-0.0702850095831909 +5095,25.475000000003806,-0.07028450501713003 +5096,25.48000000000381,-0.07028400059543138 +5097,25.48500000000381,-0.07028349631805593 +5098,25.490000000003814,-0.07028299218496464 +5099,25.495000000003817,-0.07028248819611851 +5100,25.50000000000382,-0.07028198435147853 +5101,25.50500000000382,-0.07028148065100571 +5102,25.510000000003824,-0.07028097709466107 +5103,25.515000000003827,-0.07028047368240563 +5104,25.52000000000383,-0.07027997041420044 +5105,25.525000000003832,-0.07027946729000652 +5106,25.530000000003835,-0.07027896430978496 +5107,25.535000000003837,-0.0702784614734968 +5108,25.54000000000384,-0.07027795878110311 +5109,25.545000000003842,-0.070277456232565 +5110,25.550000000003845,-0.07027695382784356 +5111,25.555000000003847,-0.07027645156689986 +5112,25.56000000000385,-0.07027594944969506 +5113,25.565000000003852,-0.07027544747619026 +5114,25.570000000003855,-0.07027494564634658 +5115,25.575000000003858,-0.07027444396012518 +5116,25.58000000000386,-0.07027394241748722 +5117,25.585000000003863,-0.07027344101839383 +5118,25.590000000003865,-0.07027293976280621 +5119,25.595000000003868,-0.07027243865068554 +5120,25.60000000000387,-0.070271937681993 +5121,25.605000000003873,-0.07027143685668978 +5122,25.610000000003875,-0.0702709361747371 +5123,25.615000000003878,-0.07027043563609618 +5124,25.62000000000388,-0.07026993524072826 +5125,25.625000000003883,-0.07026943498859457 +5126,25.630000000003886,-0.07026893487965634 +5127,25.63500000000389,-0.07026843491387486 +5128,25.64000000000389,-0.07026793509121138 +5129,25.645000000003893,-0.07026743541162717 +5130,25.650000000003896,-0.07026693587508352 +5131,25.6550000000039,-0.07026643648154174 +5132,25.6600000000039,-0.07026593723096311 +5133,25.665000000003904,-0.07026543812330897 +5134,25.670000000003906,-0.07026493915854062 +5135,25.67500000000391,-0.07026444033661942 +5136,25.68000000000391,-0.07026394165750673 +5137,25.685000000003914,-0.07026344312116385 +5138,25.690000000003916,-0.07026294472755217 +5139,25.69500000000392,-0.07026244647663306 +5140,25.70000000000392,-0.07026194836836791 +5141,25.705000000003924,-0.07026145040271811 +5142,25.710000000003927,-0.07026095257964507 +5143,25.71500000000393,-0.07026045489911018 +5144,25.72000000000393,-0.07025995736107485 +5145,25.725000000003934,-0.07025945996550055 +5146,25.730000000003937,-0.0702589627123487 +5147,25.73500000000394,-0.07025846560158075 +5148,25.740000000003942,-0.07025796863315815 +5149,25.745000000003945,-0.0702574718070424 +5150,25.750000000003947,-0.07025697512319494 +5151,25.75500000000395,-0.07025647858157726 +5152,25.760000000003952,-0.07025598218215087 +5153,25.765000000003955,-0.07025548592487729 +5154,25.770000000003957,-0.07025498980971802 +5155,25.77500000000396,-0.07025449383663458 +5156,25.780000000003962,-0.07025399800558851 +5157,25.785000000003965,-0.07025350231654137 +5158,25.790000000003968,-0.0702530067694547 +5159,25.79500000000397,-0.07025251136429006 +5160,25.800000000003973,-0.07025201610100902 +5161,25.805000000003975,-0.07025152097957317 +5162,25.810000000003978,-0.07025102599994412 +5163,25.81500000000398,-0.07025053116208345 +5164,25.820000000003983,-0.07025003646595278 +5165,25.825000000003985,-0.07024954191151372 +5166,25.830000000003988,-0.07024904749872792 +5167,25.83500000000399,-0.070248553227557 +5168,25.840000000003993,-0.07024805909796264 +5169,25.845000000003996,-0.07024756510990646 +5170,25.850000000004,-0.07024707126335016 +5171,25.855000000004,-0.07024657755825538 +5172,25.860000000004003,-0.07024608399458386 +5173,25.865000000004006,-0.07024559057229726 +5174,25.87000000000401,-0.07024509729135729 +5175,25.87500000000401,-0.07024460415172569 +5176,25.880000000004014,-0.07024411115336415 +5177,25.885000000004016,-0.07024361829623443 +5178,25.89000000000402,-0.07024312558029827 +5179,25.89500000000402,-0.07024263300551742 +5180,25.900000000004024,-0.07024214057185366 +5181,25.905000000004026,-0.07024164827926874 +5182,25.91000000000403,-0.07024115612772446 +5183,25.91500000000403,-0.07024066411718259 +5184,25.920000000004034,-0.07024017224760497 +5185,25.925000000004037,-0.07023968051895337 +5186,25.93000000000404,-0.07023918893118963 +5187,25.93500000000404,-0.07023869748427558 +5188,25.940000000004044,-0.07023820617817306 +5189,25.945000000004047,-0.07023771501284391 +5190,25.95000000000405,-0.07023722398825 +5191,25.955000000004052,-0.07023673310435319 +5192,25.960000000004054,-0.07023624236111538 +5193,25.965000000004057,-0.07023575175849843 +5194,25.97000000000406,-0.07023526129646424 +5195,25.975000000004062,-0.07023477097497471 +5196,25.980000000004065,-0.07023428079399177 +5197,25.985000000004067,-0.07023379075347735 +5198,25.99000000000407,-0.07023330085339337 +5199,25.995000000004072,-0.07023281109370179 +5200,26.000000000004075,-0.07023232147436453 +5201,26.005000000004078,-0.0702318319953436 +5202,26.01000000000408,-0.07023134265660094 +5203,26.015000000004083,-0.07023085345809855 +5204,26.020000000004085,-0.0702303643997984 +5205,26.025000000004088,-0.0702298754816625 +5206,26.03000000000409,-0.07022938670365286 +5207,26.035000000004093,-0.07022889806573152 +5208,26.040000000004095,-0.07022840956786047 +5209,26.045000000004098,-0.07022792121000176 +5210,26.0500000000041,-0.07022743299211746 +5211,26.055000000004103,-0.07022694491416961 +5212,26.060000000004106,-0.07022645697612027 +5213,26.065000000004108,-0.07022596917793153 +5214,26.07000000000411,-0.07022548151956548 +5215,26.075000000004113,-0.0702249940009842 +5216,26.080000000004116,-0.0702245066221498 +5217,26.08500000000412,-0.07022401938302439 +5218,26.09000000000412,-0.07022353228357009 +5219,26.095000000004124,-0.07022304532374905 +5220,26.100000000004126,-0.07022255850352341 +5221,26.10500000000413,-0.0702220718228553 +5222,26.11000000000413,-0.0702215852817069 +5223,26.115000000004134,-0.07022109888004036 +5224,26.120000000004136,-0.07022061261781788 +5225,26.12500000000414,-0.07022012649500166 +5226,26.13000000000414,-0.07021964051155387 +5227,26.135000000004144,-0.07021915466743672 +5228,26.140000000004147,-0.07021866896261246 +5229,26.14500000000415,-0.07021818339704328 +5230,26.15000000000415,-0.07021769797069143 +5231,26.155000000004154,-0.07021721268351913 +5232,26.160000000004157,-0.07021672753548869 +5233,26.16500000000416,-0.07021624252656235 +5234,26.170000000004162,-0.07021575765670235 +5235,26.175000000004164,-0.07021527292587103 +5236,26.180000000004167,-0.07021478833403064 +5237,26.18500000000417,-0.07021430388114348 +5238,26.190000000004172,-0.0702138195671719 +5239,26.195000000004175,-0.07021333539207818 +5240,26.200000000004177,-0.07021285135582467 +5241,26.20500000000418,-0.07021236745837371 +5242,26.210000000004182,-0.07021188369968764 +5243,26.215000000004185,-0.07021140007972883 +5244,26.220000000004188,-0.07021091659845966 +5245,26.22500000000419,-0.07021043325584246 +5246,26.230000000004193,-0.07020995005183965 +5247,26.235000000004195,-0.07020946698641363 +5248,26.240000000004198,-0.07020898405952679 +5249,26.2450000000042,-0.07020850127114155 +5250,26.250000000004203,-0.07020801862122032 +5251,26.255000000004205,-0.07020753610972555 +5252,26.260000000004208,-0.07020705373661969 +5253,26.26500000000421,-0.07020657150186517 +5254,26.270000000004213,-0.07020608940542447 +5255,26.275000000004216,-0.07020560744726004 +5256,26.280000000004218,-0.07020512562733439 +5257,26.28500000000422,-0.07020464394560998 +5258,26.290000000004223,-0.07020416240204931 +5259,26.295000000004226,-0.0702036809966149 +5260,26.30000000000423,-0.07020319972926928 +5261,26.30500000000423,-0.07020271859997494 +5262,26.310000000004234,-0.07020223760869444 +5263,26.315000000004236,-0.07020175675539034 +5264,26.32000000000424,-0.07020127604002517 +5265,26.32500000000424,-0.07020079546256149 +5266,26.330000000004244,-0.0702003150229619 +5267,26.335000000004246,-0.07019983472118894 +5268,26.34000000000425,-0.07019935455720526 +5269,26.34500000000425,-0.0701988745309734 +5270,26.350000000004254,-0.07019839464245602 +5271,26.355000000004257,-0.0701979148916157 +5272,26.36000000000426,-0.0701974352784151 +5273,26.36500000000426,-0.07019695580281685 +5274,26.370000000004264,-0.0701964764647836 +5275,26.375000000004267,-0.07019599726427798 +5276,26.38000000000427,-0.07019551820126269 +5277,26.385000000004272,-0.0701950392757004 +5278,26.390000000004274,-0.07019456048755379 +5279,26.395000000004277,-0.07019408183678555 +5280,26.40000000000428,-0.07019360332335838 +5281,26.405000000004282,-0.07019312494723501 +5282,26.410000000004285,-0.07019264670837813 +5283,26.415000000004287,-0.07019216860675051 +5284,26.42000000000429,-0.07019169064231488 +5285,26.425000000004292,-0.07019121281503397 +5286,26.430000000004295,-0.07019073512487058 +5287,26.435000000004298,-0.07019025757178743 +5288,26.4400000000043,-0.07018978015574732 +5289,26.445000000004303,-0.07018930287671306 +5290,26.450000000004305,-0.07018882573464741 +5291,26.455000000004308,-0.07018834872951318 +5292,26.46000000000431,-0.0701878718612732 +5293,26.465000000004313,-0.0701873951298903 +5294,26.470000000004315,-0.0701869185353273 +5295,26.475000000004318,-0.07018644207754703 +5296,26.48000000000432,-0.07018596575651237 +5297,26.485000000004323,-0.07018548957218618 +5298,26.490000000004326,-0.0701850135245313 +5299,26.495000000004328,-0.07018453761351065 +5300,26.50000000000433,-0.07018406183908708 +5301,26.505000000004333,-0.07018358620122352 +5302,26.510000000004336,-0.07018311069988287 +5303,26.51500000000434,-0.07018263533502803 +5304,26.52000000000434,-0.07018216010662194 +5305,26.525000000004344,-0.07018168501462753 +5306,26.530000000004346,-0.07018121005900776 +5307,26.53500000000435,-0.07018073523972558 +5308,26.54000000000435,-0.07018026055674395 +5309,26.545000000004354,-0.07017978601002582 +5310,26.550000000004356,-0.07017931159953421 +5311,26.55500000000436,-0.07017883732523209 +5312,26.56000000000436,-0.07017836318708244 +5313,26.565000000004364,-0.0701778891850483 +5314,26.570000000004367,-0.07017741531909269 +5315,26.57500000000437,-0.07017694158917863 +5316,26.58000000000437,-0.07017646799526915 +5317,26.585000000004374,-0.0701759945373273 +5318,26.590000000004377,-0.07017552121531614 +5319,26.59500000000438,-0.07017504802919873 +5320,26.600000000004382,-0.07017457497893816 +5321,26.605000000004384,-0.07017410206449749 +5322,26.610000000004387,-0.07017362928583983 +5323,26.61500000000439,-0.07017315664292827 +5324,26.620000000004392,-0.07017268413572592 +5325,26.625000000004395,-0.07017221176419591 +5326,26.630000000004397,-0.07017173952830136 +5327,26.6350000000044,-0.07017126742800542 +5328,26.640000000004402,-0.07017079546327123 +5329,26.645000000004405,-0.07017032363406196 +5330,26.650000000004407,-0.07016985194034076 +5331,26.65500000000441,-0.0701693803820708 +5332,26.660000000004413,-0.07016890895921528 +5333,26.665000000004415,-0.07016843767173737 +5334,26.670000000004418,-0.07016796651960033 +5335,26.67500000000442,-0.07016749550276731 +5336,26.680000000004423,-0.07016702462120157 +5337,26.685000000004425,-0.07016655387486631 +5338,26.690000000004428,-0.07016608326372478 +5339,26.69500000000443,-0.07016561278774026 +5340,26.700000000004433,-0.07016514244687598 +5341,26.705000000004436,-0.07016467224109521 +5342,26.710000000004438,-0.0701642021703612 +5343,26.71500000000444,-0.0701637322346373 +5344,26.720000000004443,-0.07016326243388675 +5345,26.725000000004446,-0.07016279276807286 +5346,26.73000000000445,-0.07016232323715897 +5347,26.73500000000445,-0.07016185384110839 +5348,26.740000000004454,-0.07016138457988444 +5349,26.745000000004456,-0.07016091545345048 +5350,26.75000000000446,-0.07016044646176983 +5351,26.75500000000446,-0.07015997760480588 +5352,26.760000000004464,-0.070159508882522 +5353,26.765000000004466,-0.07015904029488154 +5354,26.77000000000447,-0.0701585718418479 +5355,26.77500000000447,-0.07015810352338449 +5356,26.780000000004474,-0.07015763533945468 +5357,26.785000000004477,-0.07015716729002192 +5358,26.79000000000448,-0.07015669937504962 +5359,26.79500000000448,-0.07015623159450121 +5360,26.800000000004484,-0.07015576394834012 +5361,26.805000000004487,-0.07015529643652983 +5362,26.81000000000449,-0.07015482905903378 +5363,26.815000000004492,-0.07015436181581544 +5364,26.820000000004494,-0.07015389470683829 +5365,26.825000000004497,-0.07015342773206583 +5366,26.8300000000045,-0.07015296089146152 +5367,26.835000000004502,-0.0701524941849889 +5368,26.840000000004505,-0.07015202761261148 +5369,26.845000000004507,-0.07015156117429276 +5370,26.85000000000451,-0.07015109486999631 +5371,26.855000000004512,-0.07015062869968565 +5372,26.860000000004515,-0.07015016266332434 +5373,26.865000000004517,-0.07014969676087593 +5374,26.87000000000452,-0.07014923099230398 +5375,26.875000000004523,-0.07014876535757208 +5376,26.880000000004525,-0.07014829985664384 +5377,26.885000000004528,-0.07014783448948282 +5378,26.89000000000453,-0.07014736925605264 +5379,26.895000000004533,-0.07014690415631693 +5380,26.900000000004535,-0.07014643919023927 +5381,26.905000000004538,-0.07014597435778336 +5382,26.91000000000454,-0.0701455096589128 +5383,26.915000000004543,-0.07014504509359122 +5384,26.920000000004546,-0.07014458066178234 +5385,26.925000000004548,-0.07014411636344978 +5386,26.93000000000455,-0.07014365219855724 +5387,26.935000000004553,-0.07014318816706841 +5388,26.940000000004556,-0.07014272426894697 +5389,26.94500000000456,-0.07014226050415664 +5390,26.95000000000456,-0.07014179687266113 +5391,26.955000000004564,-0.07014133337442419 +5392,26.960000000004566,-0.0701408700094095 +5393,26.96500000000457,-0.07014040677758084 +5394,26.97000000000457,-0.07013994367890194 +5395,26.975000000004574,-0.07013948071333659 +5396,26.980000000004576,-0.07013901788084853 +5397,26.98500000000458,-0.07013855518140155 +5398,26.99000000000458,-0.07013809261495944 +5399,26.995000000004584,-0.070137630181486 +5400,27.000000000004587,-0.07013716788094504 +5401,27.00500000000459,-0.07013670571330036 +5402,27.01000000000459,-0.07013624367851579 +5403,27.015000000004594,-0.07013578177655515 +5404,27.020000000004597,-0.0701353200073823 +5405,27.0250000000046,-0.0701348583709611 +5406,27.030000000004602,-0.0701343968672554 +5407,27.035000000004604,-0.07013393549622904 +5408,27.040000000004607,-0.07013347425784594 +5409,27.04500000000461,-0.07013301315206996 +5410,27.050000000004612,-0.070132552178865 +5411,27.055000000004615,-0.070132091338195 +5412,27.060000000004617,-0.07013163063002384 +5413,27.06500000000462,-0.07013117005431545 +5414,27.070000000004622,-0.07013070961103375 +5415,27.075000000004625,-0.07013024930014271 +5416,27.080000000004627,-0.07012978912160625 +5417,27.08500000000463,-0.07012932907538835 +5418,27.090000000004633,-0.07012886916145299 +5419,27.095000000004635,-0.07012840937976411 +5420,27.100000000004638,-0.07012794973028572 +5421,27.10500000000464,-0.07012749021298183 +5422,27.110000000004643,-0.07012703082781643 +5423,27.115000000004645,-0.07012657157475354 +5424,27.120000000004648,-0.07012611245375715 +5425,27.12500000000465,-0.07012565346479133 +5426,27.130000000004653,-0.0701251946078201 +5427,27.135000000004656,-0.07012473588280753 +5428,27.140000000004658,-0.07012427728971767 +5429,27.14500000000466,-0.07012381882851458 +5430,27.150000000004663,-0.07012336049916233 +5431,27.155000000004666,-0.07012290230162503 +5432,27.16000000000467,-0.07012244423586676 +5433,27.16500000000467,-0.07012198630185164 +5434,27.170000000004674,-0.07012152849954376 +5435,27.175000000004676,-0.07012107082890726 +5436,27.18000000000468,-0.07012061328990625 +5437,27.18500000000468,-0.07012015588250489 +5438,27.190000000004684,-0.07011969860666734 +5439,27.195000000004686,-0.07011924146235772 +5440,27.20000000000469,-0.07011878444954023 +5441,27.20500000000469,-0.07011832756817903 +5442,27.210000000004694,-0.07011787081823831 +5443,27.215000000004697,-0.07011741419968226 +5444,27.2200000000047,-0.07011695771247509 +5445,27.2250000000047,-0.070116501356581 +5446,27.230000000004704,-0.07011604513196423 +5447,27.235000000004707,-0.070115589038589 +5448,27.24000000000471,-0.07011513307641955 +5449,27.245000000004712,-0.07011467724542012 +5450,27.250000000004714,-0.07011422154555495 +5451,27.255000000004717,-0.07011376597678835 +5452,27.26000000000472,-0.07011331053908458 +5453,27.265000000004722,-0.07011285523240791 +5454,27.270000000004725,-0.07011240005672263 +5455,27.275000000004727,-0.07011194501199305 +5456,27.28000000000473,-0.0701114900981835 +5457,27.285000000004732,-0.07011103531525827 +5458,27.290000000004735,-0.0701105806631817 +5459,27.295000000004737,-0.07011012614191811 +5460,27.30000000000474,-0.07010967175143189 +5461,27.305000000004743,-0.07010921749168736 +5462,27.310000000004745,-0.07010876336264889 +5463,27.315000000004748,-0.07010830936428086 +5464,27.32000000000475,-0.07010785549654765 +5465,27.325000000004753,-0.07010740175941364 +5466,27.330000000004755,-0.07010694815284325 +5467,27.335000000004758,-0.0701064946768009 +5468,27.34000000000476,-0.07010604133125097 +5469,27.345000000004763,-0.07010558811615789 +5470,27.350000000004766,-0.07010513503148612 +5471,27.355000000004768,-0.0701046820772001 +5472,27.36000000000477,-0.07010422925326426 +5473,27.365000000004773,-0.07010377655964312 +5474,27.370000000004776,-0.07010332399630109 +5475,27.37500000000478,-0.07010287156320268 +5476,27.38000000000478,-0.07010241926031235 +5477,27.385000000004784,-0.07010196708759464 +5478,27.390000000004786,-0.07010151504501404 +5479,27.39500000000479,-0.07010106313253506 +5480,27.40000000000479,-0.07010061135012224 +5481,27.405000000004794,-0.0701001596977401 +5482,27.410000000004796,-0.07009970817535319 +5483,27.4150000000048,-0.07009925678292607 +5484,27.4200000000048,-0.07009880552042327 +5485,27.425000000004804,-0.0700983543878094 +5486,27.430000000004807,-0.07009790338504901 +5487,27.43500000000481,-0.0700974525121067 +5488,27.44000000000481,-0.07009700176894705 +5489,27.445000000004814,-0.07009655115553469 +5490,27.450000000004817,-0.07009610067183421 +5491,27.45500000000482,-0.07009565031781026 +5492,27.460000000004822,-0.07009520009342746 +5493,27.465000000004824,-0.07009474999865042 +5494,27.470000000004827,-0.07009430003344384 +5495,27.47500000000483,-0.07009385019777235 +5496,27.480000000004832,-0.07009340049160064 +5497,27.485000000004835,-0.07009295091489336 +5498,27.490000000004837,-0.07009250146761521 +5499,27.49500000000484,-0.07009205214973088 +5500,27.500000000004842,-0.07009160296120508 +5501,27.505000000004845,-0.0700911539020025 +5502,27.510000000004847,-0.0700907049720879 +5503,27.51500000000485,-0.07009025617142596 +5504,27.520000000004853,-0.07008980749998146 +5505,27.525000000004855,-0.07008935895771913 +5506,27.530000000004858,-0.07008891054460373 +5507,27.53500000000486,-0.07008846226060002 +5508,27.540000000004863,-0.07008801410567277 +5509,27.545000000004865,-0.07008756607978678 +5510,27.550000000004868,-0.07008711818290683 +5511,27.55500000000487,-0.07008667041499773 +5512,27.560000000004873,-0.07008622277602428 +5513,27.565000000004876,-0.0700857752659513 +5514,27.570000000004878,-0.07008532788474363 +5515,27.57500000000488,-0.07008488063236608 +5516,27.580000000004883,-0.0700844335087835 +5517,27.585000000004886,-0.07008398651396076 +5518,27.59000000000489,-0.07008353964786274 +5519,27.59500000000489,-0.07008309291045427 +5520,27.600000000004894,-0.07008264630170025 +5521,27.605000000004896,-0.07008219982156556 +5522,27.6100000000049,-0.07008175347001512 +5523,27.6150000000049,-0.0700813072470138 +5524,27.620000000004904,-0.07008086115252654 +5525,27.625000000004906,-0.07008041518651827 +5526,27.63000000000491,-0.07007996934895391 +5527,27.63500000000491,-0.07007952363979841 +5528,27.640000000004914,-0.07007907805901671 +5529,27.645000000004917,-0.07007863260657378 +5530,27.65000000000492,-0.07007818728243459 +5531,27.65500000000492,-0.0700777420865641 +5532,27.660000000004924,-0.07007729701892733 +5533,27.665000000004927,-0.07007685207948924 +5534,27.67000000000493,-0.07007640726821486 +5535,27.675000000004932,-0.0700759625850692 +5536,27.680000000004934,-0.07007551803001726 +5537,27.685000000004937,-0.07007507360302406 +5538,27.69000000000494,-0.0700746293040547 +5539,27.695000000004942,-0.07007418513307417 +5540,27.700000000004945,-0.07007374109004755 +5541,27.705000000004947,-0.0700732971749399 +5542,27.71000000000495,-0.0700728533877163 +5543,27.715000000004952,-0.07007240972834182 +5544,27.720000000004955,-0.07007196619678158 +5545,27.725000000004957,-0.07007152279300063 +5546,27.73000000000496,-0.07007107951696415 +5547,27.735000000004963,-0.0700706363686372 +5548,27.740000000004965,-0.07007019334798492 +5549,27.745000000004968,-0.07006975045497246 +5550,27.75000000000497,-0.07006930768956497 +5551,27.755000000004973,-0.07006886505172757 +5552,27.760000000004975,-0.07006842254142545 +5553,27.765000000004978,-0.07006798015862378 +5554,27.77000000000498,-0.07006753790328774 +5555,27.775000000004983,-0.0700670957753825 +5556,27.780000000004986,-0.07006665377487327 +5557,27.785000000004988,-0.07006621190172525 +5558,27.79000000000499,-0.07006577015590368 +5559,27.795000000004993,-0.07006532853737375 +5560,27.800000000004996,-0.07006488704610071 +5561,27.805000000005,-0.0700644456820498 +5562,27.810000000005,-0.07006400444518626 +5563,27.815000000005003,-0.07006356333547535 +5564,27.820000000005006,-0.07006312235288235 +5565,27.82500000000501,-0.07006268149737252 +5566,27.83000000000501,-0.07006224076891117 +5567,27.835000000005014,-0.07006180016746358 +5568,27.840000000005016,-0.07006135969299504 +5569,27.84500000000502,-0.07006091934547087 +5570,27.85000000000502,-0.0700604791248564 +5571,27.855000000005024,-0.07006003903111695 +5572,27.860000000005027,-0.07005959906421785 +5573,27.86500000000503,-0.07005915922412446 +5574,27.87000000000503,-0.07005871951080213 +5575,27.875000000005034,-0.0700582799242162 +5576,27.880000000005037,-0.07005784046433208 +5577,27.88500000000504,-0.07005740113111514 +5578,27.890000000005042,-0.07005696192453077 +5579,27.895000000005044,-0.07005652284454435 +5580,27.900000000005047,-0.0700560838911213 +5581,27.90500000000505,-0.07005564506422705 +5582,27.910000000005052,-0.070055206363827 +5583,27.915000000005055,-0.0700547677898866 +5584,27.920000000005057,-0.0700543293423713 +5585,27.92500000000506,-0.07005389102124651 +5586,27.930000000005062,-0.07005345282647774 +5587,27.935000000005065,-0.07005301475803043 +5588,27.940000000005067,-0.07005257681587006 +5589,27.94500000000507,-0.07005213899996211 +5590,27.950000000005073,-0.0700517013102721 +5591,27.955000000005075,-0.0700512637467655 +5592,27.960000000005078,-0.07005082630940784 +5593,27.96500000000508,-0.07005038899816465 +5594,27.970000000005083,-0.07004995181300144 +5595,27.975000000005085,-0.07004951475388375 +5596,27.980000000005088,-0.07004907782077714 +5597,27.98500000000509,-0.07004864101364716 +5598,27.990000000005093,-0.07004820433245937 +5599,27.995000000005096,-0.07004776777717935 +5600,28.000000000005098,-0.07004733134777268 +5601,28.0050000000051,-0.07004689504420493 +5602,28.010000000005103,-0.07004645886644173 +5603,28.015000000005106,-0.07004602281444866 +5604,28.02000000000511,-0.07004558688819135 +5605,28.02500000000511,-0.07004515108763543 +5606,28.030000000005113,-0.07004471541274652 +5607,28.035000000005116,-0.07004427986349028 +5608,28.04000000000512,-0.07004384443983233 +5609,28.04500000000512,-0.07004340914173836 +5610,28.050000000005124,-0.07004297396917401 +5611,28.055000000005126,-0.07004253892210499 +5612,28.06000000000513,-0.07004210400049697 +5613,28.06500000000513,-0.07004166920431565 +5614,28.070000000005134,-0.07004123453352672 +5615,28.075000000005137,-0.0700407999880959 +5616,28.08000000000514,-0.07004036556798891 +5617,28.08500000000514,-0.07003993127317147 +5618,28.090000000005144,-0.07003949710360934 +5619,28.095000000005147,-0.07003906305926824 +5620,28.10000000000515,-0.07003862914011394 +5621,28.105000000005152,-0.0700381953461122 +5622,28.110000000005154,-0.07003776167722879 +5623,28.115000000005157,-0.07003732813342949 +5624,28.12000000000516,-0.0700368947146801 +5625,28.125000000005162,-0.0700364614209464 +5626,28.130000000005165,-0.0700360282521942 +5627,28.135000000005167,-0.07003559520838933 +5628,28.14000000000517,-0.0700351622894976 +5629,28.145000000005172,-0.07003472949548485 +5630,28.150000000005175,-0.07003429682631693 +5631,28.155000000005177,-0.07003386428195968 +5632,28.16000000000518,-0.07003343186237895 +5633,28.165000000005183,-0.07003299956754061 +5634,28.170000000005185,-0.07003256739741055 +5635,28.175000000005188,-0.07003213535195464 +5636,28.18000000000519,-0.07003170343113878 +5637,28.185000000005193,-0.07003127163492887 +5638,28.190000000005195,-0.07003083996329082 +5639,28.195000000005198,-0.07003040841619054 +5640,28.2000000000052,-0.07002997699359398 +5641,28.205000000005203,-0.07002954569546706 +5642,28.210000000005206,-0.07002911452177571 +5643,28.215000000005208,-0.0700286834724859 +5644,28.22000000000521,-0.07002825254756362 +5645,28.225000000005213,-0.07002782174697479 +5646,28.230000000005216,-0.07002739107068542 +5647,28.23500000000522,-0.0700269605186615 +5648,28.24000000000522,-0.07002653009086901 +5649,28.245000000005223,-0.07002609978727395 +5650,28.250000000005226,-0.07002566960784234 +5651,28.25500000000523,-0.07002523955254022 +5652,28.26000000000523,-0.0700248096213336 +5653,28.265000000005234,-0.07002437981418853 +5654,28.270000000005236,-0.07002395013107106 +5655,28.27500000000524,-0.07002352057194723 +5656,28.28000000000524,-0.07002309113678312 +5657,28.285000000005244,-0.0700226618255448 +5658,28.290000000005247,-0.07002223263819835 +5659,28.29500000000525,-0.07002180357470987 +5660,28.30000000000525,-0.07002137463504543 +5661,28.305000000005254,-0.07002094581917118 +5662,28.310000000005257,-0.07002051712705319 +5663,28.31500000000526,-0.07002008855865763 +5664,28.320000000005262,-0.07001966011395062 +5665,28.325000000005264,-0.0700192317928983 +5666,28.330000000005267,-0.0700188035954668 +5667,28.33500000000527,-0.07001837552162231 +5668,28.340000000005272,-0.07001794757133098 +5669,28.345000000005275,-0.070017519744559 +5670,28.350000000005277,-0.07001709204127253 +5671,28.35500000000528,-0.07001666446143778 +5672,28.360000000005282,-0.07001623700502096 +5673,28.365000000005285,-0.07001580967198828 +5674,28.370000000005287,-0.07001538246230594 +5675,28.37500000000529,-0.07001495537594017 +5676,28.380000000005293,-0.07001452841285723 +5677,28.385000000005295,-0.07001410157302336 +5678,28.390000000005298,-0.07001367485640479 +5679,28.3950000000053,-0.07001324826296781 +5680,28.400000000005303,-0.07001282179267866 +5681,28.405000000005305,-0.07001239544550365 +5682,28.410000000005308,-0.07001196922140906 +5683,28.41500000000531,-0.07001154312036117 +5684,28.420000000005313,-0.07001111714232629 +5685,28.425000000005316,-0.07001069128727073 +5686,28.430000000005318,-0.07001026555516084 +5687,28.43500000000532,-0.07000983994596291 +5688,28.440000000005323,-0.07000941445964332 +5689,28.445000000005326,-0.07000898909616837 +5690,28.45000000000533,-0.07000856385550447 +5691,28.45500000000533,-0.07000813873761794 +5692,28.460000000005333,-0.07000771374247518 +5693,28.465000000005336,-0.07000728887004254 +5694,28.47000000000534,-0.07000686412028644 +5695,28.47500000000534,-0.07000643949317326 +5696,28.480000000005344,-0.07000601498866942 +5697,28.485000000005346,-0.07000559060674134 +5698,28.49000000000535,-0.07000516634735543 +5699,28.49500000000535,-0.07000474221047813 +5700,28.500000000005354,-0.07000431819607587 +5701,28.505000000005356,-0.0700038943041151 +5702,28.51000000000536,-0.07000347053456231 +5703,28.51500000000536,-0.07000304688738393 +5704,28.520000000005364,-0.07000262336254645 +5705,28.525000000005367,-0.07000219996001635 +5706,28.53000000000537,-0.07000177667976011 +5707,28.535000000005372,-0.07000135352174425 +5708,28.540000000005374,-0.07000093048593527 +5709,28.545000000005377,-0.0700005075722997 +5710,28.55000000000538,-0.07000008478080405 +5711,28.555000000005382,-0.06999966211141485 +5712,28.560000000005385,-0.06999923956409866 +5713,28.565000000005387,-0.06999881713882201 +5714,28.57000000000539,-0.0699983948355515 +5715,28.575000000005392,-0.06999797265425364 +5716,28.580000000005395,-0.06999755059489504 +5717,28.585000000005397,-0.0699971286574423 +5718,28.5900000000054,-0.06999670684186199 +5719,28.595000000005403,-0.06999628514812072 +5720,28.600000000005405,-0.0699958635761851 +5721,28.605000000005408,-0.06999544212602174 +5722,28.61000000000541,-0.06999502079759728 +5723,28.615000000005413,-0.06999459959087835 +5724,28.620000000005415,-0.0699941785058316 +5725,28.625000000005418,-0.06999375754242368 +5726,28.63000000000542,-0.06999333670062126 +5727,28.635000000005423,-0.069992915980391 +5728,28.640000000005426,-0.06999249538169956 +5729,28.645000000005428,-0.06999207490451365 +5730,28.65000000000543,-0.06999165454879996 +5731,28.655000000005433,-0.0699912343145252 +5732,28.660000000005436,-0.06999081420165608 +5733,28.66500000000544,-0.0699903942101593 +5734,28.67000000000544,-0.06998997434000162 +5735,28.675000000005443,-0.06998955459114978 +5736,28.680000000005446,-0.06998913496357048 +5737,28.68500000000545,-0.06998871545723051 +5738,28.69000000000545,-0.06998829607209663 +5739,28.695000000005454,-0.0699878768081356 +5740,28.700000000005456,-0.06998745766531422 +5741,28.70500000000546,-0.06998703864359926 +5742,28.71000000000546,-0.06998661974295751 +5743,28.715000000005464,-0.0699862009633558 +5744,28.720000000005466,-0.06998578230476092 +5745,28.72500000000547,-0.06998536376713971 +5746,28.73000000000547,-0.06998494535045897 +5747,28.735000000005474,-0.06998452705468557 +5748,28.740000000005477,-0.06998410887978634 +5749,28.74500000000548,-0.06998369082572817 +5750,28.750000000005482,-0.06998327289247787 +5751,28.755000000005484,-0.06998285508000233 +5752,28.760000000005487,-0.06998243738826845 +5753,28.76500000000549,-0.06998201981724311 +5754,28.770000000005492,-0.0699816023668932 +5755,28.775000000005495,-0.06998118503718563 +5756,28.780000000005497,-0.0699807678280873 +5757,28.7850000000055,-0.06998035073956517 +5758,28.790000000005502,-0.06997993377158614 +5759,28.795000000005505,-0.06997951692411715 +5760,28.800000000005507,-0.06997910019712517 +5761,28.80500000000551,-0.06997868359057711 +5762,28.810000000005513,-0.06997826710444 +5763,28.815000000005515,-0.06997785073868076 +5764,28.820000000005518,-0.06997743449326639 +5765,28.82500000000552,-0.06997701836816389 +5766,28.830000000005523,-0.06997660236334023 +5767,28.835000000005525,-0.06997618647876244 +5768,28.840000000005528,-0.06997577071439753 +5769,28.84500000000553,-0.06997535507021252 +5770,28.850000000005533,-0.06997493954617444 +5771,28.855000000005536,-0.06997452414225033 +5772,28.860000000005538,-0.06997410885840726 +5773,28.86500000000554,-0.06997369369461223 +5774,28.870000000005543,-0.06997327865083237 +5775,28.875000000005546,-0.06997286372703472 +5776,28.88000000000555,-0.06997244892318638 +5777,28.88500000000555,-0.06997203423925441 +5778,28.890000000005553,-0.06997161967520595 +5779,28.895000000005556,-0.06997120523100805 +5780,28.90000000000556,-0.06997079090662789 +5781,28.90500000000556,-0.06997037670203254 +5782,28.910000000005564,-0.06996996261718917 +5783,28.915000000005566,-0.06996954865206491 +5784,28.92000000000557,-0.06996913480662688 +5785,28.92500000000557,-0.06996872108084227 +5786,28.930000000005574,-0.06996830747467825 +5787,28.935000000005576,-0.06996789398810196 +5788,28.94000000000558,-0.06996748062108062 +5789,28.94500000000558,-0.06996706737358137 +5790,28.950000000005584,-0.06996665424557147 +5791,28.955000000005587,-0.06996624123701808 +5792,28.96000000000559,-0.06996582834788843 +5793,28.965000000005592,-0.06996541557814977 +5794,28.970000000005594,-0.06996500292776928 +5795,28.975000000005597,-0.06996459039671422 +5796,28.9800000000056,-0.06996417798495187 +5797,28.985000000005602,-0.06996376569244946 +5798,28.990000000005605,-0.06996335351917425 +5799,28.995000000005607,-0.06996294146509352 +5800,29.00000000000561,-0.06996252953017457 +5801,29.005000000005612,-0.06996211771438467 +5802,29.010000000005615,-0.06996170601769111 +5803,29.015000000005617,-0.06996129444006123 +5804,29.02000000000562,-0.0699608829814623 +5805,29.025000000005623,-0.06996047164186169 +5806,29.030000000005625,-0.0699600604212267 +5807,29.035000000005628,-0.06995964931952468 +5808,29.04000000000563,-0.06995923833672299 +5809,29.045000000005633,-0.06995882747278898 +5810,29.050000000005635,-0.06995841672769 +5811,29.055000000005638,-0.06995800610139342 +5812,29.06000000000564,-0.06995759559386666 +5813,29.065000000005643,-0.06995718520507707 +5814,29.070000000005646,-0.06995677493499207 +5815,29.075000000005648,-0.06995636478357907 +5816,29.08000000000565,-0.06995595475080546 +5817,29.085000000005653,-0.06995554483663868 +5818,29.090000000005656,-0.06995513504104617 +5819,29.09500000000566,-0.06995472536399534 +5820,29.10000000000566,-0.06995431580545367 +5821,29.105000000005663,-0.06995390636538859 +5822,29.110000000005666,-0.06995349704376759 +5823,29.11500000000567,-0.06995308784055813 +5824,29.12000000000567,-0.06995267875572769 +5825,29.125000000005674,-0.06995226978924377 +5826,29.130000000005676,-0.06995186094107383 +5827,29.13500000000568,-0.06995145221118543 +5828,29.14000000000568,-0.06995104359954604 +5829,29.145000000005684,-0.06995063510612322 +5830,29.150000000005686,-0.06995022673088447 +5831,29.15500000000569,-0.06994981847379733 +5832,29.16000000000569,-0.06994941033482938 +5833,29.165000000005694,-0.06994900231394814 +5834,29.170000000005697,-0.0699485944111212 +5835,29.1750000000057,-0.0699481866263161 +5836,29.180000000005702,-0.06994777895950044 +5837,29.185000000005704,-0.0699473714106418 +5838,29.190000000005707,-0.0699469639797078 +5839,29.19500000000571,-0.06994655666666603 +5840,29.200000000005712,-0.06994614947148409 +5841,29.205000000005715,-0.06994574239412961 +5842,29.210000000005717,-0.06994533543457022 +5843,29.21500000000572,-0.06994492859277358 +5844,29.220000000005722,-0.06994452186870731 +5845,29.225000000005725,-0.06994411526233907 +5846,29.230000000005727,-0.06994370877363652 +5847,29.23500000000573,-0.06994330240256733 +5848,29.240000000005733,-0.06994289614909918 +5849,29.245000000005735,-0.06994249001319977 +5850,29.250000000005738,-0.0699420839948368 +5851,29.25500000000574,-0.06994167809397794 +5852,29.260000000005743,-0.06994127231059093 +5853,29.265000000005745,-0.06994086664464348 +5854,29.270000000005748,-0.06994046109610332 +5855,29.27500000000575,-0.06994005566493819 +5856,29.280000000005753,-0.06993965035111584 +5857,29.285000000005756,-0.069939245154604 +5858,29.290000000005758,-0.06993884007537045 +5859,29.29500000000576,-0.06993843511338296 +5860,29.300000000005763,-0.06993803026860931 +5861,29.305000000005766,-0.06993762554101729 +5862,29.31000000000577,-0.06993722093057467 +5863,29.31500000000577,-0.06993681643724926 +5864,29.320000000005773,-0.06993641206100888 +5865,29.325000000005776,-0.06993600780182135 +5866,29.33000000000578,-0.0699356036596545 +5867,29.33500000000578,-0.06993519963447614 +5868,29.340000000005784,-0.06993479572625413 +5869,29.345000000005786,-0.06993439193495633 +5870,29.35000000000579,-0.06993398826055061 +5871,29.35500000000579,-0.0699335847030048 +5872,29.360000000005794,-0.0699331812622868 +5873,29.365000000005796,-0.0699327779383645 +5874,29.3700000000058,-0.06993237473120577 +5875,29.3750000000058,-0.06993197164077852 +5876,29.380000000005804,-0.06993156866705068 +5877,29.385000000005807,-0.06993116580999015 +5878,29.39000000000581,-0.06993076306956485 +5879,29.395000000005812,-0.0699303604457427 +5880,29.400000000005814,-0.06992995793849169 +5881,29.405000000005817,-0.06992955554777971 +5882,29.41000000000582,-0.06992915327357477 +5883,29.415000000005822,-0.0699287511158448 +5884,29.420000000005825,-0.0699283490745578 +5885,29.425000000005827,-0.06992794714968173 +5886,29.43000000000583,-0.06992754534118459 +5887,29.435000000005832,-0.06992714364903438 +5888,29.440000000005835,-0.06992674207319911 +5889,29.445000000005837,-0.06992634061364679 +5890,29.45000000000584,-0.06992593927034543 +5891,29.455000000005843,-0.0699255380432631 +5892,29.460000000005845,-0.06992513693236779 +5893,29.465000000005848,-0.06992473593762759 +5894,29.47000000000585,-0.06992433505901054 +5895,29.475000000005853,-0.06992393429648469 +5896,29.480000000005855,-0.06992353365001813 +5897,29.485000000005858,-0.06992313311957894 +5898,29.49000000000586,-0.06992273270513519 +5899,29.495000000005863,-0.06992233240665499 +5900,29.500000000005866,-0.06992193222410645 +5901,29.505000000005868,-0.06992153215745767 +5902,29.51000000000587,-0.06992113220667677 +5903,29.515000000005873,-0.06992073237173191 +5904,29.520000000005876,-0.06992033265259119 +5905,29.52500000000588,-0.06991993304922277 +5906,29.53000000000588,-0.0699195335615948 +5907,29.535000000005883,-0.06991913418967545 +5908,29.540000000005886,-0.06991873493343288 +5909,29.54500000000589,-0.06991833579283528 +5910,29.55000000000589,-0.06991793676785082 +5911,29.555000000005894,-0.0699175378584477 +5912,29.560000000005896,-0.06991713906459412 +5913,29.5650000000059,-0.0699167403862583 +5914,29.5700000000059,-0.06991634182340845 +5915,29.575000000005904,-0.0699159433760128 +5916,29.580000000005906,-0.06991554504403957 +5917,29.58500000000591,-0.06991514682745703 +5918,29.59000000000591,-0.06991474872623343 +5919,29.595000000005914,-0.069914350740337 +5920,29.600000000005917,-0.06991395286973602 +5921,29.60500000000592,-0.06991355511439877 +5922,29.610000000005922,-0.06991315747429354 +5923,29.615000000005924,-0.0699127599493886 +5924,29.620000000005927,-0.06991236253965226 +5925,29.62500000000593,-0.06991196524505285 +5926,29.630000000005932,-0.06991156806555864 +5927,29.635000000005935,-0.06991117100113799 +5928,29.640000000005937,-0.0699107740517592 +5929,29.64500000000594,-0.06991037721739064 +5930,29.650000000005942,-0.06990998049800067 +5931,29.655000000005945,-0.0699095838935576 +5932,29.660000000005947,-0.06990918740402982 +5933,29.66500000000595,-0.0699087910293857 +5934,29.670000000005953,-0.06990839476959361 +5935,29.675000000005955,-0.06990799862462196 +5936,29.680000000005958,-0.06990760259443914 +5937,29.68500000000596,-0.06990720667901354 +5938,29.690000000005963,-0.06990681087831359 +5939,29.695000000005965,-0.06990641519230771 +5940,29.700000000005968,-0.06990601962096431 +5941,29.70500000000597,-0.06990562416425182 +5942,29.710000000005973,-0.06990522882213872 +5943,29.715000000005976,-0.06990483359459343 +5944,29.720000000005978,-0.06990443848158444 +5945,29.72500000000598,-0.0699040434830802 +5946,29.730000000005983,-0.0699036485990492 +5947,29.735000000005986,-0.0699032538294599 +5948,29.74000000000599,-0.06990285917428082 +5949,29.74500000000599,-0.06990246463348045 +5950,29.750000000005993,-0.06990207020702731 +5951,29.755000000005996,-0.0699016758948899 +5952,29.760000000006,-0.06990128169703674 +5953,29.765000000006,-0.06990088761343638 +5954,29.770000000006004,-0.06990049364405737 +5955,29.775000000006006,-0.06990009978886823 +5956,29.78000000000601,-0.06989970604783756 +5957,29.78500000000601,-0.06989931242093388 +5958,29.790000000006014,-0.0698989189081258 +5959,29.795000000006016,-0.06989852550938187 +5960,29.80000000000602,-0.0698981322246707 +5961,29.80500000000602,-0.06989773905396089 +5962,29.810000000006024,-0.06989734599722103 +5963,29.815000000006027,-0.06989695305441973 +5964,29.82000000000603,-0.06989656022552564 +5965,29.825000000006032,-0.06989616751050735 +5966,29.830000000006034,-0.06989577490933355 +5967,29.835000000006037,-0.06989538242197282 +5968,29.84000000000604,-0.06989499004839388 +5969,29.845000000006042,-0.06989459778856535 +5970,29.850000000006045,-0.06989420564245592 +5971,29.855000000006047,-0.06989381361003424 +5972,29.86000000000605,-0.06989342169126903 +5973,29.865000000006052,-0.06989302988612896 +5974,29.870000000006055,-0.06989263819458275 +5975,29.875000000006057,-0.0698922466165991 +5976,29.88000000000606,-0.06989185515214671 +5977,29.885000000006062,-0.06989146380119435 +5978,29.890000000006065,-0.06989107256371073 +5979,29.895000000006068,-0.06989068143966458 +5980,29.90000000000607,-0.06989029042902464 +5981,29.905000000006073,-0.06988989953175971 +5982,29.910000000006075,-0.06988950874783852 +5983,29.915000000006078,-0.06988911807722986 +5984,29.92000000000608,-0.06988872751990252 +5985,29.925000000006083,-0.06988833707582526 +5986,29.930000000006086,-0.06988794674496691 +5987,29.935000000006088,-0.06988755652729625 +5988,29.94000000000609,-0.06988716642278212 +5989,29.945000000006093,-0.06988677643139332 +5990,29.950000000006096,-0.06988638655309867 +5991,29.9550000000061,-0.06988599678786704 +5992,29.9600000000061,-0.06988560713566726 +5993,29.965000000006103,-0.06988521759646818 +5994,29.970000000006106,-0.06988482817023867 +5995,29.97500000000611,-0.06988443885694759 +5996,29.98000000000611,-0.06988404965656382 +5997,29.985000000006114,-0.06988366056905625 +5998,29.990000000006116,-0.06988327159439377 +5999,29.99500000000612,-0.06988288273254527 +6000,30.00000000000612,-0.06988249398347968 +6001,30.005000000006124,-0.06988210534716591 +6002,30.010000000006126,-0.06988171682357289 +6003,30.01500000000613,-0.06988132841266953 +6004,30.02000000000613,-0.0698809401144248 +6005,30.025000000006134,-0.06988055192880764 +6006,30.030000000006137,-0.06988016385578699 +6007,30.03500000000614,-0.06987977589533183 +6008,30.040000000006142,-0.06987938804741115 +6009,30.045000000006144,-0.0698790003119939 +6010,30.050000000006147,-0.06987861268904907 +6011,30.05500000000615,-0.0698782251785457 +6012,30.060000000006152,-0.06987783778045274 +6013,30.065000000006155,-0.06987745049473923 +6014,30.070000000006157,-0.06987706332137418 +6015,30.07500000000616,-0.06987667626032663 +6016,30.080000000006162,-0.06987628931156561 +6017,30.085000000006165,-0.06987590247506018 +6018,30.090000000006167,-0.06987551575077935 +6019,30.09500000000617,-0.06987512913869223 +6020,30.100000000006172,-0.06987474263876786 +6021,30.105000000006175,-0.06987435625097531 +6022,30.110000000006178,-0.06987396997528368 +6023,30.11500000000618,-0.06987358381166206 +6024,30.120000000006183,-0.06987319776007955 +6025,30.125000000006185,-0.06987281182050525 +6026,30.130000000006188,-0.06987242599290827 +6027,30.13500000000619,-0.06987204027725777 +6028,30.140000000006193,-0.06987165467352284 +6029,30.145000000006196,-0.06987126918167264 +6030,30.150000000006198,-0.0698708838016763 +6031,30.1550000000062,-0.069870498533503 +6032,30.160000000006203,-0.06987011337712189 +6033,30.165000000006206,-0.06986972833250212 +6034,30.17000000000621,-0.0698693433996129 +6035,30.17500000000621,-0.06986895857842342 +6036,30.180000000006213,-0.06986857386890284 +6037,30.185000000006216,-0.0698681892710204 +6038,30.19000000000622,-0.06986780478474529 +6039,30.19500000000622,-0.06986742041004673 +6040,30.200000000006224,-0.06986703614689395 +6041,30.205000000006226,-0.06986665199525618 +6042,30.21000000000623,-0.06986626795510267 +6043,30.21500000000623,-0.06986588402640267 +6044,30.220000000006234,-0.06986550020912542 +6045,30.225000000006236,-0.06986511650324019 +6046,30.23000000000624,-0.06986473290871627 +6047,30.23500000000624,-0.06986434942552293 +6048,30.240000000006244,-0.06986396605362948 +6049,30.245000000006247,-0.06986358279300517 +6050,30.25000000000625,-0.06986319964361934 +6051,30.255000000006252,-0.06986281660544132 +6052,30.260000000006254,-0.06986243367844039 +6053,30.265000000006257,-0.06986205086258589 +6054,30.27000000000626,-0.06986166815784717 +6055,30.275000000006262,-0.06986128556419355 +6056,30.280000000006265,-0.06986090308159441 +6057,30.285000000006267,-0.06986052071001911 +6058,30.29000000000627,-0.06986013844943699 +6059,30.295000000006272,-0.06985975629981744 +6060,30.300000000006275,-0.06985937426112986 +6061,30.305000000006277,-0.06985899233334363 +6062,30.31000000000628,-0.06985861051642812 +6063,30.315000000006282,-0.06985822881035278 +6064,30.320000000006285,-0.06985784721508702 +6065,30.325000000006288,-0.06985746573060024 +6066,30.33000000000629,-0.06985708435686187 +6067,30.335000000006293,-0.06985670309384137 +6068,30.340000000006295,-0.06985632194150819 +6069,30.345000000006298,-0.06985594089983176 +6070,30.3500000000063,-0.06985555996878155 +6071,30.355000000006303,-0.06985517914832703 +6072,30.360000000006305,-0.0698547984384377 +6073,30.365000000006308,-0.06985441783908301 +6074,30.37000000000631,-0.06985403735023248 +6075,30.375000000006313,-0.06985365697185558 +6076,30.380000000006316,-0.06985327670392186 +6077,30.38500000000632,-0.06985289654640078 +6078,30.39000000000632,-0.06985251649926193 +6079,30.395000000006323,-0.0698521365624748 +6080,30.400000000006326,-0.06985175673600895 +6081,30.40500000000633,-0.06985137701983392 +6082,30.41000000000633,-0.06985099741391926 +6083,30.415000000006334,-0.06985061791823455 +6084,30.420000000006336,-0.06985023853274934 +6085,30.42500000000634,-0.06984985925743324 +6086,30.43000000000634,-0.0698494800922558 +6087,30.435000000006344,-0.06984910103718664 +6088,30.440000000006346,-0.06984872209219536 +6089,30.44500000000635,-0.06984834325725157 +6090,30.45000000000635,-0.06984796453232488 +6091,30.455000000006354,-0.06984758591738492 +6092,30.460000000006357,-0.06984720741240132 +6093,30.46500000000636,-0.06984682901734374 +6094,30.47000000000636,-0.0698464507321818 +6095,30.475000000006364,-0.06984607255688519 +6096,30.480000000006367,-0.06984569449142354 +6097,30.48500000000637,-0.06984531653576656 +6098,30.490000000006372,-0.06984493868988391 +6099,30.495000000006375,-0.06984456095374528 +6100,30.500000000006377,-0.06984418332732036 +6101,30.50500000000638,-0.06984380581057886 +6102,30.510000000006382,-0.06984342840349049 +6103,30.515000000006385,-0.06984305110602497 +6104,30.520000000006387,-0.06984267391815203 +6105,30.52500000000639,-0.06984229683984142 +6106,30.530000000006392,-0.06984191987106285 +6107,30.535000000006395,-0.06984154301178609 +6108,30.540000000006398,-0.06984116626198089 +6109,30.5450000000064,-0.06984078962161704 +6110,30.550000000006403,-0.06984041309066429 +6111,30.555000000006405,-0.06984003666909241 +6112,30.560000000006408,-0.06983966035687122 +6113,30.56500000000641,-0.06983928415397052 +6114,30.570000000006413,-0.06983890806036007 +6115,30.575000000006415,-0.06983853207600974 +6116,30.580000000006418,-0.0698381562008893 +6117,30.58500000000642,-0.0698377804349686 +6118,30.590000000006423,-0.0698374047782175 +6119,30.595000000006426,-0.0698370292306058 +6120,30.60000000000643,-0.06983665379210338 +6121,30.60500000000643,-0.06983627846268009 +6122,30.610000000006433,-0.06983590324230579 +6123,30.615000000006436,-0.06983552813095038 +6124,30.62000000000644,-0.06983515312858371 +6125,30.62500000000644,-0.06983477823517571 +6126,30.630000000006444,-0.06983440345069623 +6127,30.635000000006446,-0.0698340287751152 +6128,30.64000000000645,-0.06983365420840254 +6129,30.64500000000645,-0.06983327975052817 +6130,30.650000000006454,-0.069832905401462 +6131,30.655000000006456,-0.069832531161174 +6132,30.66000000000646,-0.06983215702963408 +6133,30.66500000000646,-0.0698317830068122 +6134,30.670000000006464,-0.06983140909267833 +6135,30.675000000006467,-0.06983103528720243 +6136,30.68000000000647,-0.06983066159035448 +6137,30.68500000000647,-0.06983028800210447 +6138,30.690000000006474,-0.06982991452242238 +6139,30.695000000006477,-0.0698295411512782 +6140,30.70000000000648,-0.06982916788864195 +6141,30.705000000006482,-0.06982879473448364 +6142,30.710000000006485,-0.06982842168877329 +6143,30.715000000006487,-0.06982804875148094 +6144,30.72000000000649,-0.0698276759225766 +6145,30.725000000006492,-0.06982730320203034 +6146,30.730000000006495,-0.06982693058981221 +6147,30.735000000006497,-0.06982655808589226 +6148,30.7400000000065,-0.06982618569024057 +6149,30.745000000006502,-0.06982581340282719 +6150,30.750000000006505,-0.06982544122362223 +6151,30.755000000006508,-0.06982506915259577 +6152,30.76000000000651,-0.06982469718971791 +6153,30.765000000006513,-0.06982432533495876 +6154,30.770000000006515,-0.06982395358828843 +6155,30.775000000006518,-0.06982358194967703 +6156,30.78000000000652,-0.0698232104190947 +6157,30.785000000006523,-0.06982283899651158 +6158,30.790000000006525,-0.0698224676818978 +6159,30.795000000006528,-0.06982209647522354 +6160,30.80000000000653,-0.06982172537645895 +6161,30.805000000006533,-0.06982135438557419 +6162,30.810000000006536,-0.06982098350253942 +6163,30.81500000000654,-0.06982061272732486 +6164,30.82000000000654,-0.06982024205990067 +6165,30.825000000006543,-0.06981987150023705 +6166,30.830000000006546,-0.06981950104830423 +6167,30.83500000000655,-0.0698191307040724 +6168,30.84000000000655,-0.0698187604675118 +6169,30.845000000006554,-0.06981839033859263 +6170,30.850000000006556,-0.06981802031728516 +6171,30.85500000000656,-0.06981765040355961 +6172,30.86000000000656,-0.06981728059738625 +6173,30.865000000006564,-0.06981691089873533 +6174,30.870000000006566,-0.06981654130757711 +6175,30.87500000000657,-0.06981617182388189 +6176,30.88000000000657,-0.06981580244761994 +6177,30.885000000006574,-0.06981543317876153 +6178,30.890000000006577,-0.06981506401727697 +6179,30.89500000000658,-0.06981469496313658 +6180,30.90000000000658,-0.06981432601631066 +6181,30.905000000006584,-0.06981395717676954 +6182,30.910000000006587,-0.06981358844448353 +6183,30.91500000000659,-0.06981321981942298 +6184,30.920000000006592,-0.06981285130155825 +6185,30.925000000006595,-0.06981248289085965 +6186,30.930000000006597,-0.06981211458729755 +6187,30.9350000000066,-0.06981174639084237 +6188,30.940000000006602,-0.0698113783014644 +6189,30.945000000006605,-0.06981101031913409 +6190,30.950000000006607,-0.06981064244382179 +6191,30.95500000000661,-0.06981027467549793 +6192,30.960000000006612,-0.06980990701413288 +6193,30.965000000006615,-0.06980953945969706 +6194,30.970000000006618,-0.06980917201216091 +6195,30.97500000000662,-0.06980880467149485 +6196,30.980000000006623,-0.0698084374376693 +6197,30.985000000006625,-0.06980807031065471 +6198,30.990000000006628,-0.06980770329042155 +6199,30.99500000000663,-0.06980733637694024 +6200,31.000000000006633,-0.06980696957018129 +6201,31.005000000006635,-0.06980660287011513 +6202,31.010000000006638,-0.06980623627671227 +6203,31.01500000000664,-0.06980586978994319 +6204,31.020000000006643,-0.06980550340977838 +6205,31.025000000006646,-0.06980513713618837 +6206,31.03000000000665,-0.06980477096914363 +6207,31.03500000000665,-0.06980440490861471 +6208,31.040000000006653,-0.06980403895457213 +6209,31.045000000006656,-0.06980367310698642 +6210,31.05000000000666,-0.0698033073658281 +6211,31.05500000000666,-0.06980294173106777 +6212,31.060000000006664,-0.06980257620267594 +6213,31.065000000006666,-0.0698022107806232 +6214,31.07000000000667,-0.06980184546488011 +6215,31.07500000000667,-0.06980148025541724 +6216,31.080000000006674,-0.06980111515220522 +6217,31.085000000006676,-0.0698007501552146 +6218,31.09000000000668,-0.069800385264416 +6219,31.09500000000668,-0.06980002047978001 +6220,31.100000000006684,-0.06979965580127728 +6221,31.105000000006687,-0.06979929122887843 +6222,31.11000000000669,-0.06979892676255407 +6223,31.11500000000669,-0.06979856240227486 +6224,31.120000000006694,-0.06979819814801144 +6225,31.125000000006697,-0.06979783399973447 +6226,31.1300000000067,-0.06979746995741459 +6227,31.135000000006702,-0.0697971060210225 +6228,31.140000000006705,-0.06979674219052888 +6229,31.145000000006707,-0.06979637846590439 +6230,31.15000000000671,-0.06979601484711973 +6231,31.155000000006712,-0.0697956513341456 +6232,31.160000000006715,-0.06979528792695272 +6233,31.165000000006717,-0.06979492462551182 +6234,31.17000000000672,-0.06979456142979358 +6235,31.175000000006722,-0.06979419833976876 +6236,31.180000000006725,-0.06979383535540809 +6237,31.185000000006728,-0.06979347247668233 +6238,31.19000000000673,-0.06979310970356221 +6239,31.195000000006733,-0.06979274703601851 +6240,31.200000000006735,-0.069792384474022 +6241,31.205000000006738,-0.06979202201754345 +6242,31.21000000000674,-0.06979165966655362 +6243,31.215000000006743,-0.06979129742102334 +6244,31.220000000006745,-0.0697909352809234 +6245,31.225000000006748,-0.06979057324622456 +6246,31.23000000000675,-0.0697902113168977 +6247,31.235000000006753,-0.0697898494929136 +6248,31.240000000006756,-0.06978948777424311 +6249,31.24500000000676,-0.06978912616085706 +6250,31.25000000000676,-0.06978876465272628 +6251,31.255000000006763,-0.06978840324982163 +6252,31.260000000006766,-0.069788041952114 +6253,31.26500000000677,-0.0697876807595742 +6254,31.27000000000677,-0.06978731967217314 +6255,31.275000000006774,-0.0697869586898817 +6256,31.280000000006776,-0.06978659781267077 +6257,31.28500000000678,-0.06978623704051122 +6258,31.29000000000678,-0.06978587637337398 +6259,31.295000000006784,-0.06978551581122996 +6260,31.300000000006786,-0.06978515535405007 +6261,31.30500000000679,-0.06978479500180522 +6262,31.31000000000679,-0.06978443475446638 +6263,31.315000000006794,-0.06978407461200449 +6264,31.320000000006797,-0.06978371457439048 +6265,31.3250000000068,-0.0697833546415953 +6266,31.3300000000068,-0.06978299481358992 +6267,31.335000000006804,-0.06978263509034532 +6268,31.340000000006807,-0.06978227547183248 +6269,31.34500000000681,-0.06978191595802238 +6270,31.350000000006812,-0.06978155654888601 +6271,31.355000000006815,-0.0697811972443944 +6272,31.360000000006817,-0.06978083804451853 +6273,31.36500000000682,-0.06978047894922941 +6274,31.370000000006822,-0.06978011995849807 +6275,31.375000000006825,-0.06977976107229555 +6276,31.380000000006827,-0.0697794022905929 +6277,31.38500000000683,-0.06977904361336114 +6278,31.390000000006832,-0.06977868504057134 +6279,31.395000000006835,-0.06977832657219457 +6280,31.400000000006838,-0.06977796820820188 +6281,31.40500000000684,-0.06977760994856436 +6282,31.410000000006843,-0.06977725179325309 +6283,31.415000000006845,-0.06977689374223914 +6284,31.420000000006848,-0.06977653579549363 +6285,31.42500000000685,-0.06977617795298767 +6286,31.430000000006853,-0.06977582021469236 +6287,31.435000000006855,-0.06977546258057883 +6288,31.440000000006858,-0.06977510505061821 +6289,31.44500000000686,-0.06977474762478163 +6290,31.450000000006863,-0.06977439030304022 +6291,31.455000000006866,-0.06977403308536516 +6292,31.46000000000687,-0.0697736759717276 +6293,31.46500000000687,-0.0697733189620987 +6294,31.470000000006873,-0.06977296205644962 +6295,31.475000000006876,-0.06977260525475155 +6296,31.48000000000688,-0.0697722485569757 +6297,31.48500000000688,-0.06977189196309325 +6298,31.490000000006884,-0.06977153547307538 +6299,31.495000000006886,-0.06977117908689333 +6300,31.50000000000689,-0.06977082280451831 +6301,31.50500000000689,-0.06977046662592153 +6302,31.510000000006894,-0.06977011055107424 +6303,31.515000000006896,-0.06976975457994769 +6304,31.5200000000069,-0.06976939871251311 +6305,31.5250000000069,-0.06976904294874176 +6306,31.530000000006904,-0.0697686872886049 +6307,31.535000000006907,-0.0697683317320738 +6308,31.54000000000691,-0.06976797627911972 +6309,31.54500000000691,-0.06976762092971399 +6310,31.550000000006914,-0.06976726568382786 +6311,31.555000000006917,-0.06976691054143265 +6312,31.56000000000692,-0.06976655550249966 +6313,31.565000000006922,-0.0697662005670002 +6314,31.570000000006925,-0.06976584573490562 +6315,31.575000000006927,-0.0697654910061872 +6316,31.58000000000693,-0.06976513638081631 +6317,31.585000000006932,-0.0697647818587643 +6318,31.590000000006935,-0.0697644274400025 +6319,31.595000000006937,-0.06976407312450228 +6320,31.60000000000694,-0.06976371891223501 +6321,31.605000000006942,-0.06976336480317205 +6322,31.610000000006945,-0.0697630107972848 +6323,31.615000000006948,-0.06976265689454463 +6324,31.62000000000695,-0.06976230309492293 +6325,31.625000000006953,-0.06976194939839113 +6326,31.630000000006955,-0.06976159580492061 +6327,31.635000000006958,-0.06976124231448283 +6328,31.64000000000696,-0.06976088892704918 +6329,31.645000000006963,-0.0697605356425911 +6330,31.650000000006965,-0.06976018246108005 +6331,31.655000000006968,-0.06975982938248744 +6332,31.66000000000697,-0.06975947640678476 +6333,31.665000000006973,-0.06975912353394345 +6334,31.670000000006976,-0.069758770763935 +6335,31.67500000000698,-0.06975841809673085 +6336,31.68000000000698,-0.06975806553230253 +6337,31.685000000006983,-0.0697577130706215 +6338,31.690000000006986,-0.06975736071165926 +6339,31.69500000000699,-0.06975700845538733 +6340,31.70000000000699,-0.06975665630177724 +6341,31.705000000006994,-0.06975630425080048 +6342,31.710000000006996,-0.06975595230242859 +6343,31.715000000007,-0.06975560045663312 +6344,31.720000000007,-0.06975524871338559 +6345,31.725000000007004,-0.06975489707265757 +6346,31.730000000007006,-0.0697545455344206 +6347,31.73500000000701,-0.06975419409864625 +6348,31.74000000000701,-0.0697538427653061 +6349,31.745000000007014,-0.06975349153437173 +6350,31.750000000007017,-0.06975314040581473 +6351,31.75500000000702,-0.0697527893796067 +6352,31.76000000000702,-0.06975243845571921 +6353,31.765000000007024,-0.06975208763412391 +6354,31.770000000007027,-0.06975173691479239 +6355,31.77500000000703,-0.06975138629769628 +6356,31.780000000007032,-0.06975103578280722 +6357,31.785000000007035,-0.06975068537009685 +6358,31.790000000007037,-0.0697503350595368 +6359,31.79500000000704,-0.06974998485109873 +6360,31.800000000007042,-0.06974963474475432 +6361,31.805000000007045,-0.0697492847404752 +6362,31.810000000007047,-0.06974893483823308 +6363,31.81500000000705,-0.06974858503799963 +6364,31.820000000007052,-0.06974823533974654 +6365,31.825000000007055,-0.06974788574344552 +6366,31.830000000007058,-0.06974753624906826 +6367,31.83500000000706,-0.06974718685658648 +6368,31.840000000007063,-0.0697468375659719 +6369,31.845000000007065,-0.06974648837719624 +6370,31.850000000007068,-0.06974613929023124 +6371,31.85500000000707,-0.06974579030504864 +6372,31.860000000007073,-0.06974544142162019 +6373,31.865000000007075,-0.06974509263991763 +6374,31.870000000007078,-0.06974474395991276 +6375,31.87500000000708,-0.06974439538157731 +6376,31.880000000007083,-0.06974404690488308 +6377,31.885000000007086,-0.06974369852980185 +6378,31.89000000000709,-0.06974335025630542 +6379,31.89500000000709,-0.06974300208436558 +6380,31.900000000007093,-0.06974265401395416 +6381,31.905000000007096,-0.06974230604504295 +6382,31.9100000000071,-0.06974195817760376 +6383,31.9150000000071,-0.06974161041160847 +6384,31.920000000007104,-0.06974126274702887 +6385,31.925000000007106,-0.06974091518383682 +6386,31.93000000000711,-0.06974056772200417 +6387,31.93500000000711,-0.06974022036150278 +6388,31.940000000007114,-0.06973987310230452 +6389,31.945000000007116,-0.06973952594438125 +6390,31.95000000000712,-0.06973917888770485 +6391,31.95500000000712,-0.06973883193224722 +6392,31.960000000007124,-0.06973848507798026 +6393,31.965000000007127,-0.06973813832487585 +6394,31.97000000000713,-0.06973779167290592 +6395,31.97500000000713,-0.06973744512204237 +6396,31.980000000007134,-0.06973709867225715 +6397,31.985000000007137,-0.06973675232352217 +6398,31.99000000000714,-0.06973640607580937 +6399,31.995000000007142,-0.06973605992909068 +6400,32.00000000000714,-0.06973571388333809 +6401,32.005000000007136,-0.06973536793852354 +6402,32.01000000000713,-0.069735022094619 +6403,32.01500000000713,-0.06973467635159644 +6404,32.02000000000712,-0.06973433070942783 +6405,32.02500000000712,-0.0697339851680852 +6406,32.030000000007114,-0.06973363972754053 +6407,32.03500000000711,-0.06973329438776579 +6408,32.040000000007105,-0.06973294914873303 +6409,32.0450000000071,-0.06973260401041426 +6410,32.050000000007095,-0.06973225897278149 +6411,32.05500000000709,-0.06973191403580677 +6412,32.060000000007086,-0.06973156919946213 +6413,32.06500000000708,-0.06973122446371963 +6414,32.07000000000708,-0.0697308798285513 +6415,32.07500000000707,-0.06973053529392925 +6416,32.08000000000707,-0.0697301908598255 +6417,32.085000000007064,-0.06972984652621214 +6418,32.09000000000706,-0.06972950229306127 +6419,32.095000000007055,-0.06972915816034497 +6420,32.10000000000705,-0.06972881412803533 +6421,32.105000000007045,-0.06972847019610445 +6422,32.11000000000704,-0.06972812636452447 +6423,32.115000000007036,-0.0697277826332675 +6424,32.12000000000703,-0.06972743900230564 +6425,32.12500000000703,-0.06972709547161107 +6426,32.13000000000702,-0.06972675204115589 +6427,32.13500000000702,-0.06972640871091228 +6428,32.140000000007014,-0.06972606548085239 +6429,32.14500000000701,-0.06972572235094836 +6430,32.150000000007005,-0.06972537932117237 +6431,32.155000000007,-0.06972503639149662 +6432,32.160000000006995,-0.06972469356189326 +6433,32.16500000000699,-0.06972435083233451 +6434,32.170000000006986,-0.06972400820279256 +6435,32.17500000000698,-0.06972366567323962 +6436,32.18000000000698,-0.0697233232436479 +6437,32.18500000000697,-0.06972298091398962 +6438,32.19000000000697,-0.069722638684237 +6439,32.195000000006964,-0.0697222965543623 +6440,32.20000000000696,-0.06972195452433771 +6441,32.205000000006955,-0.06972161259413555 +6442,32.21000000000695,-0.06972127076372803 +6443,32.215000000006945,-0.06972092903308744 +6444,32.22000000000694,-0.06972058740218604 +6445,32.225000000006936,-0.06972024587099608 +6446,32.23000000000693,-0.0697199044394899 +6447,32.23500000000693,-0.06971956310763976 +6448,32.24000000000692,-0.06971922187541796 +6449,32.24500000000692,-0.06971888074279682 +6450,32.250000000006914,-0.06971853970974864 +6451,32.25500000000691,-0.06971819877624576 +6452,32.260000000006904,-0.06971785794226049 +6453,32.2650000000069,-0.06971751720776517 +6454,32.270000000006895,-0.06971717657273215 +6455,32.27500000000689,-0.06971683603713377 +6456,32.280000000006886,-0.06971649560094241 +6457,32.28500000000688,-0.06971615526413041 +6458,32.29000000000688,-0.06971581502667015 +6459,32.29500000000687,-0.06971547488853402 +6460,32.30000000000687,-0.0697151348496944 +6461,32.305000000006864,-0.06971479491012365 +6462,32.31000000000686,-0.06971445506979423 +6463,32.315000000006854,-0.06971411532867851 +6464,32.32000000000685,-0.0697137756867489 +6465,32.325000000006845,-0.06971343614397786 +6466,32.33000000000684,-0.06971309670033779 +6467,32.335000000006836,-0.06971275735580111 +6468,32.34000000000683,-0.0697124181103403 +6469,32.34500000000683,-0.06971207896392781 +6470,32.35000000000682,-0.06971173991653606 +6471,32.35500000000682,-0.06971140096813754 +6472,32.36000000000681,-0.06971106211870473 +6473,32.36500000000681,-0.0697107233682101 +6474,32.370000000006804,-0.06971038471662612 +6475,32.3750000000068,-0.06971004616392532 +6476,32.380000000006795,-0.06970970771008017 +6477,32.38500000000679,-0.0697093693550632 +6478,32.390000000006786,-0.0697090310988469 +6479,32.39500000000678,-0.0697086929414038 +6480,32.40000000000678,-0.06970835488270644 +6481,32.40500000000677,-0.06970801692272734 +6482,32.41000000000677,-0.06970767906143907 +6483,32.41500000000676,-0.06970734129881416 +6484,32.42000000000676,-0.06970700363482517 +6485,32.425000000006754,-0.06970666606944467 +6486,32.43000000000675,-0.06970632860264524 +6487,32.435000000006745,-0.06970599123439944 +6488,32.44000000000674,-0.06970565396467986 +6489,32.445000000006736,-0.0697053167934591 +6490,32.45000000000673,-0.06970497972070976 +6491,32.45500000000673,-0.06970464274640445 +6492,32.46000000000672,-0.06970430587051578 +6493,32.46500000000672,-0.06970396909301638 +6494,32.47000000000671,-0.06970363241387885 +6495,32.47500000000671,-0.06970329583307587 +6496,32.480000000006704,-0.06970295935058006 +6497,32.4850000000067,-0.06970262296636408 +6498,32.490000000006695,-0.06970228668040056 +6499,32.49500000000669,-0.06970195049266219 +6500,32.500000000006686,-0.06970161440312164 +6501,32.50500000000668,-0.06970127841175158 +6502,32.51000000000668,-0.06970094251852471 +6503,32.51500000000667,-0.06970060672341372 +6504,32.52000000000667,-0.0697002710263913 +6505,32.52500000000666,-0.06969993542743015 +6506,32.53000000000666,-0.069699599926503 +6507,32.535000000006654,-0.06969926452358258 +6508,32.54000000000665,-0.06969892921864158 +6509,32.545000000006645,-0.06969859401165278 +6510,32.55000000000664,-0.06969825890258889 +6511,32.555000000006636,-0.06969792389142268 +6512,32.56000000000663,-0.0696975889781269 +6513,32.56500000000663,-0.06969725416267432 +6514,32.57000000000662,-0.0696969194450377 +6515,32.57500000000662,-0.06969658482518981 +6516,32.58000000000661,-0.06969625030310347 +6517,32.58500000000661,-0.06969591587875144 +6518,32.590000000006604,-0.06969558155210652 +6519,32.5950000000066,-0.06969524732314153 +6520,32.600000000006595,-0.06969491319182929 +6521,32.60500000000659,-0.0696945791581426 +6522,32.610000000006586,-0.06969424522205431 +6523,32.61500000000658,-0.06969391138353723 +6524,32.62000000000658,-0.0696935776425642 +6525,32.62500000000657,-0.0696932439991081 +6526,32.63000000000657,-0.06969291045314178 +6527,32.63500000000656,-0.06969257700463807 +6528,32.64000000000656,-0.06969224365356987 +6529,32.645000000006554,-0.06969191039991005 +6530,32.65000000000655,-0.06969157724363148 +6531,32.655000000006545,-0.06969124418470707 +6532,32.66000000000654,-0.0696909112231097 +6533,32.665000000006536,-0.0696905783588123 +6534,32.67000000000653,-0.06969024559178777 +6535,32.67500000000653,-0.06968991292200903 +6536,32.68000000000652,-0.069689580349449 +6537,32.68500000000652,-0.06968924787408062 +6538,32.69000000000651,-0.06968891549587683 +6539,32.69500000000651,-0.06968858321481057 +6540,32.700000000006504,-0.06968825103085478 +6541,32.7050000000065,-0.06968791894398246 +6542,32.710000000006495,-0.06968758695416656 +6543,32.71500000000649,-0.06968725506138006 +6544,32.720000000006486,-0.06968692326559593 +6545,32.72500000000648,-0.06968659156678719 +6546,32.73000000000648,-0.06968625996492679 +6547,32.73500000000647,-0.06968592845998776 +6548,32.74000000000647,-0.06968559705194312 +6549,32.74500000000646,-0.06968526574076588 +6550,32.75000000000646,-0.06968493452642904 +6551,32.755000000006454,-0.06968460340890567 +6552,32.76000000000645,-0.0696842723881688 +6553,32.765000000006445,-0.06968394146419145 +6554,32.77000000000644,-0.0696836106369467 +6555,32.775000000006436,-0.0696832799064076 +6556,32.78000000000643,-0.06968294927254721 +6557,32.78500000000643,-0.06968261873533864 +6558,32.79000000000642,-0.06968228829475492 +6559,32.79500000000642,-0.06968195795076917 +6560,32.80000000000641,-0.06968162770335448 +6561,32.80500000000641,-0.06968129755248394 +6562,32.810000000006404,-0.06968096749813067 +6563,32.8150000000064,-0.06968063754026778 +6564,32.820000000006395,-0.0696803076788684 +6565,32.82500000000639,-0.06967997791390566 +6566,32.830000000006386,-0.06967964824535268 +6567,32.83500000000638,-0.06967931867318262 +6568,32.84000000000638,-0.06967898919736862 +6569,32.84500000000637,-0.06967865981788386 +6570,32.85000000000637,-0.06967833053470147 +6571,32.85500000000636,-0.06967800134779466 +6572,32.86000000000636,-0.0696776722571366 +6573,32.865000000006354,-0.06967734326270045 +6574,32.87000000000635,-0.06967701436445943 +6575,32.875000000006345,-0.06967668556238672 +6576,32.88000000000634,-0.06967635685645554 +6577,32.885000000006336,-0.06967602824663911 +6578,32.89000000000633,-0.06967569973291063 +6579,32.89500000000633,-0.06967537131524335 +6580,32.90000000000632,-0.06967504299361048 +6581,32.90500000000632,-0.06967471476798529 +6582,32.91000000000631,-0.069674386638341 +6583,32.91500000000631,-0.06967405860465088 +6584,32.920000000006304,-0.0696737306668882 +6585,32.9250000000063,-0.06967340282502624 +6586,32.930000000006295,-0.06967307507903824 +6587,32.93500000000629,-0.0696727474288975 +6588,32.940000000006286,-0.0696724198745773 +6589,32.94500000000628,-0.06967209241605096 +6590,32.95000000000628,-0.06967176505329178 +6591,32.95500000000627,-0.06967143778627306 +6592,32.96000000000627,-0.06967111061496813 +6593,32.96500000000626,-0.06967078353935031 +6594,32.97000000000626,-0.06967045655939293 +6595,32.975000000006254,-0.06967012967506933 +6596,32.98000000000625,-0.06966980288635286 +6597,32.985000000006245,-0.06966947619321687 +6598,32.99000000000624,-0.06966914959563471 +6599,32.995000000006236,-0.06966882309357976 +6600,33.00000000000623,-0.06966849668702539 +6601,33.00500000000623,-0.069668170375945 +6602,33.01000000000622,-0.06966784416031195 +6603,33.01500000000622,-0.06966751804009964 +6604,33.02000000000621,-0.06966719201528147 +6605,33.02500000000621,-0.06966686608583086 +6606,33.030000000006204,-0.06966654025172121 +6607,33.0350000000062,-0.06966621451292597 +6608,33.040000000006195,-0.06966588886941853 +6609,33.04500000000619,-0.06966556332117237 +6610,33.050000000006186,-0.06966523786816091 +6611,33.05500000000618,-0.06966491251035759 +6612,33.06000000000618,-0.06966458724773589 +6613,33.06500000000617,-0.06966426208026924 +6614,33.07000000000617,-0.06966393700793115 +6615,33.07500000000616,-0.06966361203069509 +6616,33.08000000000616,-0.06966328714853451 +6617,33.085000000006154,-0.06966296236142294 +6618,33.09000000000615,-0.06966263766933388 +6619,33.095000000006145,-0.06966231307224081 +6620,33.10000000000614,-0.06966198857011725 +6621,33.105000000006136,-0.06966166416293672 +6622,33.11000000000613,-0.06966133985067274 +6623,33.11500000000613,-0.06966101563329888 +6624,33.12000000000612,-0.06966069151078864 +6625,33.12500000000612,-0.06966036748311558 +6626,33.13000000000611,-0.06966004355025325 +6627,33.13500000000611,-0.06965971971217522 +6628,33.140000000006104,-0.06965939596885505 +6629,33.1450000000061,-0.06965907232026632 +6630,33.150000000006095,-0.0696587487663826 +6631,33.15500000000609,-0.0696584253071775 +6632,33.160000000006086,-0.06965810194262459 +6633,33.16500000000608,-0.06965777867269747 +6634,33.17000000000608,-0.06965745549736978 +6635,33.17500000000607,-0.06965713241661511 +6636,33.18000000000607,-0.0696568094304071 +6637,33.18500000000606,-0.06965648653871935 +6638,33.19000000000606,-0.06965616374152553 +6639,33.195000000006054,-0.06965584103879927 +6640,33.20000000000605,-0.06965551843051422 +6641,33.205000000006045,-0.06965519591664403 +6642,33.21000000000604,-0.06965487349716239 +6643,33.215000000006036,-0.06965455117204293 +6644,33.22000000000603,-0.06965422894125936 +6645,33.22500000000603,-0.06965390680478535 +6646,33.23000000000602,-0.0696535847625946 +6647,33.23500000000602,-0.0696532628146608 +6648,33.24000000000601,-0.06965294096095767 +6649,33.24500000000601,-0.0696526192014589 +6650,33.250000000006004,-0.06965229753613823 +6651,33.255000000006,-0.06965197596496939 +6652,33.260000000005995,-0.06965165448792607 +6653,33.26500000000599,-0.06965133310498205 +6654,33.270000000005986,-0.06965101181611107 +6655,33.27500000000598,-0.06965069062128687 +6656,33.28000000000598,-0.06965036952048323 +6657,33.28500000000597,-0.0696500485136739 +6658,33.29000000000597,-0.06964972760083266 +6659,33.29500000000596,-0.06964940678193328 +6660,33.30000000000596,-0.06964908605694956 +6661,33.305000000005954,-0.06964876542585528 +6662,33.31000000000595,-0.06964844488862428 +6663,33.315000000005945,-0.06964812444523032 +6664,33.32000000000594,-0.06964780409564723 +6665,33.325000000005936,-0.06964748383984885 +6666,33.33000000000593,-0.06964716367780899 +6667,33.33500000000593,-0.0696468436095015 +6668,33.34000000000592,-0.0696465236349002 +6669,33.34500000000592,-0.06964620375397897 +6670,33.35000000000591,-0.06964588396671163 +6671,33.35500000000591,-0.06964556427307209 +6672,33.360000000005904,-0.06964524467303415 +6673,33.3650000000059,-0.06964492516657175 +6674,33.370000000005895,-0.06964460575365876 +6675,33.37500000000589,-0.06964428643426904 +6676,33.380000000005886,-0.06964396720837651 +6677,33.38500000000588,-0.06964364807595508 +6678,33.39000000000588,-0.06964332903697863 +6679,33.39500000000587,-0.06964301009142111 +6680,33.40000000000587,-0.06964269123925643 +6681,33.40500000000586,-0.06964237248045851 +6682,33.41000000000586,-0.06964205381500133 +6683,33.415000000005854,-0.06964173524285877 +6684,33.42000000000585,-0.06964141676400483 +6685,33.425000000005845,-0.06964109837841347 +6686,33.43000000000584,-0.06964078008605862 +6687,33.435000000005836,-0.06964046188691426 +6688,33.44000000000583,-0.0696401437809544 +6689,33.44500000000583,-0.069639825768153 +6690,33.45000000000582,-0.06963950784848406 +6691,33.45500000000582,-0.06963919002192157 +6692,33.46000000000581,-0.06963887228843954 +6693,33.46500000000581,-0.069638554648012 +6694,33.470000000005804,-0.06963823710061293 +6695,33.4750000000058,-0.06963791964621639 +6696,33.480000000005795,-0.0696376022847964 +6697,33.48500000000579,-0.069637285016327 +6698,33.490000000005786,-0.06963696784078223 +6699,33.49500000000578,-0.06963665075813617 +6700,33.50000000000578,-0.06963633376836285 +6701,33.50500000000577,-0.06963601687143635 +6702,33.51000000000577,-0.06963570006733075 +6703,33.51500000000576,-0.06963538335602011 +6704,33.52000000000576,-0.06963506673747855 +6705,33.525000000005754,-0.06963475021168011 +6706,33.53000000000575,-0.06963443377859894 +6707,33.535000000005745,-0.06963411743820913 +6708,33.54000000000574,-0.06963380119048479 +6709,33.545000000005736,-0.06963348503540005 +6710,33.55000000000573,-0.06963316897292904 +6711,33.55500000000573,-0.06963285300304588 +6712,33.56000000000572,-0.06963253712572473 +6713,33.56500000000572,-0.06963222134093972 +6714,33.57000000000571,-0.069631905648665 +6715,33.57500000000571,-0.06963159004887476 +6716,33.580000000005704,-0.06963127454154315 +6717,33.5850000000057,-0.06963095912664434 +6718,33.590000000005695,-0.06963064380415253 +6719,33.59500000000569,-0.06963032857404189 +6720,33.600000000005686,-0.06963001343628662 +6721,33.60500000000568,-0.06962969839086093 +6722,33.61000000000568,-0.06962938343773903 +6723,33.61500000000567,-0.0696290685768951 +6724,33.62000000000567,-0.06962875380830343 +6725,33.62500000000566,-0.0696284391319382 +6726,33.63000000000566,-0.06962812454777366 +6727,33.635000000005654,-0.06962781005578403 +6728,33.64000000000565,-0.06962749565594359 +6729,33.645000000005645,-0.06962718134822658 +6730,33.65000000000564,-0.06962686713260728 +6731,33.655000000005636,-0.06962655300905994 +6732,33.66000000000563,-0.06962623897755883 +6733,33.66500000000563,-0.06962592503807825 +6734,33.67000000000562,-0.06962561119059249 +6735,33.67500000000562,-0.06962529743507585 +6736,33.68000000000561,-0.06962498377150261 +6737,33.68500000000561,-0.06962467019984711 +6738,33.690000000005604,-0.06962435672008364 +6739,33.6950000000056,-0.06962404333218654 +6740,33.700000000005595,-0.06962373003613012 +6741,33.70500000000559,-0.06962341683188875 +6742,33.710000000005586,-0.06962310371943674 +6743,33.71500000000558,-0.06962279069874847 +6744,33.72000000000558,-0.06962247776979827 +6745,33.72500000000557,-0.06962216493256052 +6746,33.73000000000557,-0.06962185218700957 +6747,33.73500000000556,-0.06962153953311984 +6748,33.74000000000556,-0.06962122697086566 +6749,33.745000000005554,-0.06962091450022147 +6750,33.75000000000555,-0.06962060212116163 +6751,33.755000000005545,-0.06962028983366055 +6752,33.76000000000554,-0.06961997763769266 +6753,33.765000000005536,-0.06961966553323237 +6754,33.77000000000553,-0.06961935352025408 +6755,33.77500000000553,-0.06961904159873225 +6756,33.78000000000552,-0.06961872976864132 +6757,33.78500000000552,-0.0696184180299557 +6758,33.79000000000551,-0.06961810638264987 +6759,33.79500000000551,-0.06961779482669829 +6760,33.800000000005504,-0.0696174833620754 +6761,33.8050000000055,-0.0696171719887557 +6762,33.810000000005495,-0.06961686070671362 +6763,33.81500000000549,-0.06961654951592369 +6764,33.820000000005486,-0.06961623841636039 +6765,33.82500000000548,-0.06961592740799821 +6766,33.83000000000548,-0.06961561649081166 +6767,33.83500000000547,-0.06961530566477525 +6768,33.84000000000547,-0.0696149949298635 +6769,33.84500000000546,-0.06961468428605093 +6770,33.85000000000546,-0.06961437373331207 +6771,33.855000000005454,-0.06961406327162145 +6772,33.86000000000545,-0.06961375290095363 +6773,33.865000000005445,-0.06961344262128316 +6774,33.87000000000544,-0.06961313243258457 +6775,33.875000000005436,-0.06961282233483246 +6776,33.88000000000543,-0.06961251232800139 +6777,33.88500000000543,-0.06961220241206592 +6778,33.89000000000542,-0.06961189258700066 +6779,33.89500000000542,-0.06961158285278018 +6780,33.90000000000541,-0.0696112732093791 +6781,33.90500000000541,-0.069610963656772 +6782,33.910000000005404,-0.06961065419493351 +6783,33.9150000000054,-0.06961034482383822 +6784,33.920000000005395,-0.06961003554346078 +6785,33.92500000000539,-0.06960972635377581 +6786,33.930000000005386,-0.06960941725475796 +6787,33.93500000000538,-0.06960910824638186 +6788,33.94000000000538,-0.06960879932862217 +6789,33.94500000000537,-0.06960849050145354 +6790,33.95000000000537,-0.06960818176485065 +6791,33.95500000000536,-0.06960787311878813 +6792,33.96000000000536,-0.0696075645632407 +6793,33.965000000005354,-0.06960725609818304 +6794,33.97000000000535,-0.06960694772358982 +6795,33.975000000005345,-0.06960663943943574 +6796,33.98000000000534,-0.06960633124569551 +6797,33.985000000005336,-0.06960602314234385 +6798,33.99000000000533,-0.06960571512935546 +6799,33.99500000000533,-0.06960540720670506 +6800,34.00000000000532,-0.06960509937436742 +6801,34.00500000000532,-0.06960479163231723 +6802,34.01000000000531,-0.06960448398052925 +6803,34.01500000000531,-0.06960417641897824 +6804,34.020000000005304,-0.06960386894763894 +6805,34.0250000000053,-0.06960356156648613 +6806,34.030000000005295,-0.06960325427549457 +6807,34.03500000000529,-0.06960294707463904 +6808,34.040000000005286,-0.06960263996389432 +6809,34.04500000000528,-0.0696023329432352 +6810,34.05000000000528,-0.06960202601263647 +6811,34.05500000000527,-0.06960171917207295 +6812,34.06000000000527,-0.06960141242151945 +6813,34.06500000000526,-0.06960110576095076 +6814,34.07000000000526,-0.06960079919034173 +6815,34.075000000005254,-0.06960049270966719 +6816,34.08000000000525,-0.06960018631890195 +6817,34.085000000005245,-0.06959988001802087 +6818,34.09000000000524,-0.06959957380699881 +6819,34.095000000005236,-0.06959926768581061 +6820,34.10000000000523,-0.06959896165443112 +6821,34.10500000000523,-0.06959865571283524 +6822,34.11000000000522,-0.06959834986099783 +6823,34.11500000000522,-0.06959804409889377 +6824,34.12000000000521,-0.06959773842649795 +6825,34.12500000000521,-0.06959743284378528 +6826,34.130000000005204,-0.06959712735073063 +6827,34.1350000000052,-0.06959682194730894 +6828,34.140000000005195,-0.06959651663349511 +6829,34.14500000000519,-0.06959621140926407 +6830,34.150000000005186,-0.06959590627459075 +6831,34.15500000000518,-0.06959560122945006 +6832,34.160000000005176,-0.06959529627381697 +6833,34.16500000000517,-0.06959499140766641 +6834,34.17000000000517,-0.06959468663097335 +6835,34.17500000000516,-0.06959438194371273 +6836,34.18000000000516,-0.06959407734585955 +6837,34.185000000005154,-0.06959377283738875 +6838,34.19000000000515,-0.06959346841827534 +6839,34.195000000005145,-0.06959316408849428 +6840,34.20000000000514,-0.06959285984802058 +6841,34.205000000005136,-0.06959255569682925 +6842,34.21000000000513,-0.06959225163489528 +6843,34.215000000005126,-0.06959194766219369 +6844,34.22000000000512,-0.0695916437786995 +6845,34.22500000000512,-0.06959133998438774 +6846,34.23000000000511,-0.06959103627923344 +6847,34.23500000000511,-0.06959073266321164 +6848,34.240000000005104,-0.06959042913629739 +6849,34.2450000000051,-0.06959012569846573 +6850,34.250000000005095,-0.06958982234969173 +6851,34.25500000000509,-0.06958951908995045 +6852,34.260000000005085,-0.06958921591921699 +6853,34.26500000000508,-0.06958891283746638 +6854,34.270000000005076,-0.06958860984467376 +6855,34.27500000000507,-0.06958830694081418 +6856,34.28000000000507,-0.06958800412586276 +6857,34.28500000000506,-0.0695877013997946 +6858,34.29000000000506,-0.0695873987625848 +6859,34.295000000005054,-0.0695870962142085 +6860,34.30000000000505,-0.06958679375464082 +6861,34.305000000005045,-0.06958649138385686 +6862,34.31000000000504,-0.06958618910183181 +6863,34.315000000005035,-0.06958588690854078 +6864,34.32000000000503,-0.06958558480395893 +6865,34.325000000005026,-0.06958528278806143 +6866,34.33000000000502,-0.06958498086082342 +6867,34.33500000000502,-0.06958467902222008 +6868,34.34000000000501,-0.0695843772722266 +6869,34.34500000000501,-0.06958407561081817 +6870,34.350000000005004,-0.06958377403796993 +6871,34.355000000005,-0.06958347255365713 +6872,34.360000000004995,-0.06958317115785495 +6873,34.36500000000499,-0.0695828698505386 +6874,34.370000000004985,-0.0695825686316833 +6875,34.37500000000498,-0.06958226750126428 +6876,34.380000000004976,-0.06958196645925677 +6877,34.38500000000497,-0.06958166550563598 +6878,34.39000000000497,-0.06958136464037717 +6879,34.39500000000496,-0.0695810638634556 +6880,34.40000000000496,-0.06958076317484652 +6881,34.405000000004954,-0.06958046257452517 +6882,34.41000000000495,-0.06958016206246684 +6883,34.415000000004945,-0.06957986163864681 +6884,34.42000000000494,-0.06957956130304034 +6885,34.425000000004935,-0.06957926105562272 +6886,34.43000000000493,-0.06957896089636927 +6887,34.435000000004926,-0.06957866082525525 +6888,34.44000000000492,-0.069578360842256 +6889,34.44500000000492,-0.06957806094734682 +6890,34.45000000000491,-0.06957776114050306 +6891,34.45500000000491,-0.06957746142170002 +6892,34.460000000004904,-0.06957716179091301 +6893,34.4650000000049,-0.0695768622481174 +6894,34.470000000004895,-0.06957656279328854 +6895,34.47500000000489,-0.06957626342640179 +6896,34.480000000004885,-0.06957596414743246 +6897,34.48500000000488,-0.06957566495635596 +6898,34.490000000004876,-0.06957536585314766 +6899,34.49500000000487,-0.06957506683778292 +6900,34.50000000000487,-0.06957476791023713 +6901,34.50500000000486,-0.06957446907048569 +6902,34.51000000000486,-0.06957417031850399 +6903,34.515000000004854,-0.06957387165426744 +6904,34.52000000000485,-0.06957357307775144 +6905,34.525000000004844,-0.06957327458893144 +6906,34.53000000000484,-0.06957297618778283 +6907,34.535000000004835,-0.06957267787428104 +6908,34.54000000000483,-0.06957237964840153 +6909,34.545000000004826,-0.06957208151011972 +6910,34.55000000000482,-0.06957178345941106 +6911,34.55500000000482,-0.06957148549625104 +6912,34.56000000000481,-0.0695711876206151 +6913,34.56500000000481,-0.06957088983247868 +6914,34.570000000004804,-0.06957059213181731 +6915,34.5750000000048,-0.06957029451860643 +6916,34.580000000004794,-0.06956999699282156 +6917,34.58500000000479,-0.06956969955443817 +6918,34.590000000004785,-0.06956940220343177 +6919,34.59500000000478,-0.06956910493977787 +6920,34.600000000004776,-0.06956880776345199 +6921,34.60500000000477,-0.06956851067442964 +6922,34.61000000000477,-0.06956821367268633 +6923,34.61500000000476,-0.06956791675819761 +6924,34.62000000000476,-0.06956761993093903 +6925,34.62500000000475,-0.06956732319088614 +6926,34.63000000000475,-0.06956702653801447 +6927,34.635000000004744,-0.0695667299722996 +6928,34.64000000000474,-0.06956643349371709 +6929,34.645000000004735,-0.06956613710224249 +6930,34.65000000000473,-0.06956584079785141 +6931,34.655000000004726,-0.06956554458051942 +6932,34.66000000000472,-0.06956524845022212 +6933,34.66500000000472,-0.0695649524069351 +6934,34.67000000000471,-0.06956465645063395 +6935,34.67500000000471,-0.06956436058129431 +6936,34.6800000000047,-0.06956406479889178 +6937,34.6850000000047,-0.06956376910340198 +6938,34.690000000004694,-0.06956347349480056 +6939,34.69500000000469,-0.06956317797306313 +6940,34.700000000004685,-0.06956288253816535 +6941,34.70500000000468,-0.06956258719008286 +6942,34.710000000004676,-0.06956229192879133 +6943,34.71500000000467,-0.06956199675426641 +6944,34.72000000000467,-0.06956170166648377 +6945,34.72500000000466,-0.06956140666541909 +6946,34.73000000000466,-0.06956111175104804 +6947,34.73500000000465,-0.06956081692334631 +6948,34.74000000000465,-0.06956052218228959 +6949,34.745000000004644,-0.0695602275278536 +6950,34.75000000000464,-0.06955993296001403 +6951,34.755000000004635,-0.06955963847874659 +6952,34.76000000000463,-0.06955934408402702 +6953,34.765000000004626,-0.06955904977583104 +6954,34.77000000000462,-0.06955875555413435 +6955,34.77500000000462,-0.06955846141891273 +6956,34.78000000000461,-0.06955816737014191 +6957,34.78500000000461,-0.06955787340779764 +6958,34.7900000000046,-0.06955757953185565 +6959,34.7950000000046,-0.06955728574229175 +6960,34.800000000004594,-0.0695569920390817 +6961,34.80500000000459,-0.06955669842220125 +6962,34.810000000004585,-0.06955640489162622 +6963,34.81500000000458,-0.06955611144733237 +6964,34.820000000004576,-0.06955581808929552 +6965,34.82500000000457,-0.06955552481749144 +6966,34.83000000000457,-0.06955523163189598 +6967,34.83500000000456,-0.06955493853248493 +6968,34.84000000000456,-0.06955464551923411 +6969,34.84500000000455,-0.06955435259211937 +6970,34.85000000000455,-0.06955405975111653 +6971,34.855000000004544,-0.06955376699620142 +6972,34.86000000000454,-0.06955347432734989 +6973,34.865000000004535,-0.06955318174453781 +6974,34.87000000000453,-0.06955288924774103 +6975,34.875000000004526,-0.0695525968369354 +6976,34.88000000000452,-0.06955230451209683 +6977,34.88500000000452,-0.06955201227320115 +6978,34.89000000000451,-0.06955172012022429 +6979,34.89500000000451,-0.06955142805314211 +6980,34.9000000000045,-0.06955113607193054 +6981,34.9050000000045,-0.06955084417656546 +6982,34.910000000004494,-0.06955055236702279 +6983,34.91500000000449,-0.06955026064327843 +6984,34.920000000004485,-0.06954996900530833 +6985,34.92500000000448,-0.06954967745308839 +6986,34.930000000004476,-0.06954938598659458 +6987,34.93500000000447,-0.0695490946058028 +6988,34.94000000000447,-0.06954880331068904 +6989,34.94500000000446,-0.06954851210122924 +6990,34.95000000000446,-0.06954822097739935 +6991,34.95500000000445,-0.06954792993917534 +6992,34.96000000000445,-0.0695476389865332 +6993,34.965000000004444,-0.0695473481194489 +6994,34.97000000000444,-0.06954705733789843 +6995,34.975000000004435,-0.06954676664185777 +6996,34.98000000000443,-0.06954647603130294 +6997,34.985000000004426,-0.06954618550620995 +6998,34.99000000000442,-0.06954589506655476 +6999,34.99500000000442,-0.06954560471231346 +7000,35.00000000000441,-0.06954531444346201 +7001,35.00500000000441,-0.06954502425997648 +7002,35.0100000000044,-0.0695447341618329 +7003,35.0150000000044,-0.06954444414900732 +7004,35.020000000004394,-0.06954415422147578 +7005,35.02500000000439,-0.06954386437921432 +7006,35.030000000004385,-0.06954357462219904 +7007,35.03500000000438,-0.06954328495040597 +7008,35.040000000004376,-0.06954299536381121 +7009,35.04500000000437,-0.06954270586239085 +7010,35.05000000000437,-0.06954241644612096 +7011,35.05500000000436,-0.06954212711497762 +7012,35.06000000000436,-0.06954183786893696 +7013,35.06500000000435,-0.06954154870797505 +7014,35.07000000000435,-0.06954125963206804 +7015,35.075000000004344,-0.06954097064119205 +7016,35.08000000000434,-0.06954068173532317 +7017,35.085000000004335,-0.06954039291443756 +7018,35.09000000000433,-0.06954010417851136 +7019,35.095000000004326,-0.06953981552752068 +7020,35.10000000000432,-0.06953952696144172 +7021,35.10500000000432,-0.0695392384802506 +7022,35.11000000000431,-0.06953895008392351 +7023,35.11500000000431,-0.0695386617724366 +7024,35.1200000000043,-0.06953837354576604 +7025,35.1250000000043,-0.06953808540388805 +7026,35.130000000004294,-0.06953779734677877 +7027,35.13500000000429,-0.06953750937441443 +7028,35.140000000004285,-0.0695372214867712 +7029,35.14500000000428,-0.06953693368382531 +7030,35.150000000004276,-0.06953664596555297 +7031,35.15500000000427,-0.06953635833193039 +7032,35.16000000000427,-0.0695360707829338 +7033,35.16500000000426,-0.06953578331853946 +7034,35.17000000000426,-0.06953549593872357 +7035,35.17500000000425,-0.06953520864346238 +7036,35.18000000000425,-0.06953492143273217 +7037,35.185000000004244,-0.06953463430650916 +7038,35.19000000000424,-0.06953434726476963 +7039,35.195000000004235,-0.06953406030748986 +7040,35.20000000000423,-0.06953377343464612 +7041,35.205000000004226,-0.06953348664621468 +7042,35.21000000000422,-0.06953319994217184 +7043,35.21500000000422,-0.06953291332249391 +7044,35.22000000000421,-0.06953262678715717 +7045,35.22500000000421,-0.06953234033613792 +7046,35.2300000000042,-0.06953205396941249 +7047,35.2350000000042,-0.0695317676869572 +7048,35.240000000004194,-0.06953148148874837 +7049,35.24500000000419,-0.06953119537476234 +7050,35.250000000004185,-0.06953090934497543 +7051,35.25500000000418,-0.069530623399364 +7052,35.260000000004176,-0.0695303375379044 +7053,35.26500000000417,-0.06953005176057299 +7054,35.27000000000417,-0.06952976606734614 +7055,35.27500000000416,-0.06952948045820019 +7056,35.28000000000416,-0.06952919493311153 +7057,35.28500000000415,-0.06952890949205658 +7058,35.29000000000415,-0.06952862413501167 +7059,35.295000000004144,-0.06952833886195323 +7060,35.30000000000414,-0.06952805367285765 +7061,35.305000000004135,-0.06952776856770135 +7062,35.31000000000413,-0.06952748354646071 +7063,35.315000000004126,-0.06952719860911219 +7064,35.32000000000412,-0.06952691375563219 +7065,35.32500000000412,-0.06952662898599717 +7066,35.33000000000411,-0.06952634430018353 +7067,35.33500000000411,-0.06952605969816776 +7068,35.3400000000041,-0.06952577517992627 +7069,35.3450000000041,-0.06952549074543553 +7070,35.350000000004094,-0.06952520639467201 +7071,35.35500000000409,-0.06952492212761217 +7072,35.360000000004085,-0.0695246379442325 +7073,35.36500000000408,-0.06952435384450946 +7074,35.370000000004076,-0.06952406982841956 +7075,35.37500000000407,-0.06952378589593927 +7076,35.38000000000407,-0.06952350204704512 +7077,35.38500000000406,-0.0695232182817136 +7078,35.39000000000406,-0.06952293459992122 +7079,35.39500000000405,-0.06952265100164451 +7080,35.40000000000405,-0.06952236748685998 +7081,35.405000000004044,-0.06952208405554419 +7082,35.41000000000404,-0.06952180070767365 +7083,35.415000000004035,-0.0695215174432249 +7084,35.42000000000403,-0.06952123426217453 +7085,35.425000000004026,-0.06952095116449905 +7086,35.43000000000402,-0.06952066815017506 +7087,35.43500000000402,-0.0695203852191791 +7088,35.44000000000401,-0.06952010237148774 +7089,35.44500000000401,-0.0695198196070776 +7090,35.450000000004,-0.06951953692592522 +7091,35.455000000004,-0.06951925432800724 +7092,35.460000000003994,-0.06951897181330023 +7093,35.46500000000399,-0.06951868938178081 +7094,35.470000000003985,-0.06951840703342557 +7095,35.47500000000398,-0.06951812476821115 +7096,35.480000000003976,-0.06951784258611417 +7097,35.48500000000397,-0.06951756048711126 +7098,35.49000000000397,-0.06951727847117906 +7099,35.49500000000396,-0.0695169965382942 +7100,35.50000000000396,-0.06951671468843335 +7101,35.50500000000395,-0.06951643292157313 +7102,35.51000000000395,-0.06951615123769024 +7103,35.515000000003944,-0.06951586963676132 +7104,35.52000000000394,-0.06951558811876306 +7105,35.525000000003935,-0.06951530668367213 +7106,35.53000000000393,-0.06951502533146524 +7107,35.535000000003926,-0.06951474406211905 +7108,35.54000000000392,-0.06951446287561028 +7109,35.54500000000392,-0.06951418177191562 +7110,35.55000000000391,-0.06951390075101178 +7111,35.55500000000391,-0.0695136198128755 +7112,35.5600000000039,-0.06951333895748349 +7113,35.5650000000039,-0.06951305818481245 +7114,35.570000000003894,-0.06951277749483915 +7115,35.57500000000389,-0.06951249688754034 +7116,35.580000000003885,-0.06951221636289273 +7117,35.58500000000388,-0.0695119359208731 +7118,35.590000000003876,-0.06951165556145822 +7119,35.59500000000387,-0.06951137528462482 +7120,35.60000000000387,-0.0695110950903497 +7121,35.60500000000386,-0.06951081497860963 +7122,35.61000000000386,-0.06951053494938139 +7123,35.61500000000385,-0.06951025500264178 +7124,35.62000000000385,-0.06950997513836761 +7125,35.625000000003844,-0.06950969535653564 +7126,35.63000000000384,-0.06950941565712272 +7127,35.635000000003835,-0.06950913604010564 +7128,35.64000000000383,-0.06950885650546124 +7129,35.645000000003826,-0.06950857705316633 +7130,35.65000000000382,-0.06950829768319777 +7131,35.65500000000382,-0.06950801839553238 +7132,35.66000000000381,-0.069507739190147 +7133,35.66500000000381,-0.06950746006701848 +7134,35.6700000000038,-0.0695071810261237 +7135,35.6750000000038,-0.06950690206743951 +7136,35.680000000003794,-0.06950662319094278 +7137,35.68500000000379,-0.0695063443966104 +7138,35.690000000003785,-0.06950606568441921 +7139,35.69500000000378,-0.06950578705434617 +7140,35.700000000003776,-0.06950550850636811 +7141,35.70500000000377,-0.06950523004046195 +7142,35.71000000000377,-0.06950495165660461 +7143,35.71500000000376,-0.069504673354773 +7144,35.72000000000376,-0.06950439513494404 +7145,35.72500000000375,-0.06950411699709465 +7146,35.73000000000375,-0.06950383894120175 +7147,35.735000000003744,-0.06950356096724229 +7148,35.74000000000374,-0.06950328307519323 +7149,35.745000000003735,-0.06950300526503149 +7150,35.75000000000373,-0.06950272753673405 +7151,35.755000000003726,-0.06950244989027785 +7152,35.76000000000372,-0.06950217232563986 +7153,35.76500000000372,-0.06950189484279708 +7154,35.77000000000371,-0.06950161744172645 +7155,35.77500000000371,-0.069501340122405 +7156,35.7800000000037,-0.06950106288480969 +7157,35.7850000000037,-0.06950078572891752 +7158,35.790000000003694,-0.06950050865470551 +7159,35.79500000000369,-0.06950023166215066 +7160,35.800000000003685,-0.06949995475123001 +7161,35.80500000000368,-0.06949967792192055 +7162,35.810000000003676,-0.06949940117419934 +7163,35.81500000000367,-0.06949912450804338 +7164,35.82000000000367,-0.06949884792342974 +7165,35.82500000000366,-0.06949857142033546 +7166,35.83000000000366,-0.06949829499873758 +7167,35.83500000000365,-0.06949801865861316 +7168,35.84000000000365,-0.06949774239993929 +7169,35.845000000003644,-0.06949746622269301 +7170,35.85000000000364,-0.06949719012685142 +7171,35.855000000003635,-0.0694969141123916 +7172,35.86000000000363,-0.06949663817929064 +7173,35.865000000003626,-0.06949636232752564 +7174,35.87000000000362,-0.06949608655707366 +7175,35.87500000000362,-0.06949581086791187 +7176,35.88000000000361,-0.06949553526001735 +7177,35.88500000000361,-0.06949525973336722 +7178,35.8900000000036,-0.06949498428793863 +7179,35.8950000000036,-0.06949470892370867 +7180,35.900000000003594,-0.06949443364065451 +7181,35.90500000000359,-0.06949415843875327 +7182,35.910000000003585,-0.06949388331798215 +7183,35.91500000000358,-0.06949360827831826 +7184,35.920000000003576,-0.06949333331973875 +7185,35.92500000000357,-0.06949305844222083 +7186,35.93000000000357,-0.06949278364574166 +7187,35.93500000000356,-0.0694925089302784 +7188,35.94000000000356,-0.06949223429580828 +7189,35.94500000000355,-0.06949195974230846 +7190,35.95000000000355,-0.06949168526975613 +7191,35.955000000003544,-0.06949141087812852 +7192,35.96000000000354,-0.06949113656740283 +7193,35.965000000003535,-0.06949086233755628 +7194,35.97000000000353,-0.0694905881885661 +7195,35.975000000003526,-0.0694903141204095 +7196,35.98000000000352,-0.06949004013306372 +7197,35.98500000000352,-0.069489766226506 +7198,35.99000000000351,-0.0694894924007136 +7199,35.99500000000351,-0.06948921865566376 +7200,36.0000000000035,-0.06948894499133375 +7201,36.0050000000035,-0.06948867140770082 +7202,36.010000000003494,-0.06948839790474226 +7203,36.01500000000349,-0.06948812448243533 +7204,36.020000000003485,-0.06948785114075731 +7205,36.02500000000348,-0.06948757787968551 +7206,36.030000000003476,-0.06948730469919721 +7207,36.03500000000347,-0.06948703159926971 +7208,36.04000000000347,-0.06948675857988033 +7209,36.04500000000346,-0.06948648564100637 +7210,36.05000000000346,-0.06948621278262515 +7211,36.05500000000345,-0.069485940004714 +7212,36.06000000000345,-0.06948566730725025 +7213,36.065000000003444,-0.06948539469021124 +7214,36.07000000000344,-0.06948512215357432 +7215,36.075000000003435,-0.0694848496973168 +7216,36.08000000000343,-0.06948457732141608 +7217,36.085000000003426,-0.06948430502584951 +7218,36.09000000000342,-0.06948403281059444 +7219,36.09500000000342,-0.06948376067562828 +7220,36.10000000000341,-0.06948348862092837 +7221,36.10500000000341,-0.06948321664647211 +7222,36.1100000000034,-0.06948294475223689 +7223,36.1150000000034,-0.06948267293820011 +7224,36.120000000003394,-0.06948240120433917 +7225,36.12500000000339,-0.06948212955063149 +7226,36.130000000003385,-0.06948185797705446 +7227,36.13500000000338,-0.06948158648358553 +7228,36.140000000003376,-0.0694813150702021 +7229,36.14500000000337,-0.06948104373688163 +7230,36.15000000000337,-0.06948077248360154 +7231,36.15500000000336,-0.06948050131033928 +7232,36.16000000000336,-0.06948023021707231 +7233,36.16500000000335,-0.06947995920377807 +7234,36.17000000000335,-0.06947968827043402 +7235,36.175000000003344,-0.06947941741701766 +7236,36.18000000000334,-0.06947914664350643 +7237,36.185000000003335,-0.06947887594987785 +7238,36.19000000000333,-0.06947860533610938 +7239,36.195000000003326,-0.06947833480217849 +7240,36.20000000000332,-0.06947806434806274 +7241,36.20500000000332,-0.06947779397373957 +7242,36.21000000000331,-0.06947752367918654 +7243,36.21500000000331,-0.06947725346438113 +7244,36.2200000000033,-0.0694769833293009 +7245,36.2250000000033,-0.06947671327392334 +7246,36.230000000003294,-0.069476443298226 +7247,36.23500000000329,-0.06947617340218644 +7248,36.240000000003285,-0.06947590358578218 +7249,36.24500000000328,-0.06947563384899079 +7250,36.250000000003276,-0.0694753641917898 +7251,36.25500000000327,-0.06947509461415682 +7252,36.26000000000327,-0.06947482511606938 +7253,36.26500000000326,-0.06947455569750509 +7254,36.27000000000326,-0.06947428635844151 +7255,36.27500000000325,-0.06947401709885623 +7256,36.28000000000325,-0.06947374791872683 +7257,36.285000000003244,-0.06947347881803094 +7258,36.29000000000324,-0.06947320979674615 +7259,36.295000000003235,-0.06947294085485008 +7260,36.30000000000323,-0.06947267199232035 +7261,36.305000000003226,-0.06947240320913456 +7262,36.31000000000322,-0.06947213450527036 +7263,36.31500000000322,-0.06947186588070538 +7264,36.32000000000321,-0.06947159733541727 +7265,36.32500000000321,-0.06947132886938368 +7266,36.3300000000032,-0.06947106048258224 +7267,36.3350000000032,-0.06947079217499062 +7268,36.340000000003194,-0.0694705239465865 +7269,36.34500000000319,-0.06947025579734753 +7270,36.350000000003185,-0.06946998772725141 +7271,36.35500000000318,-0.0694697197362758 +7272,36.360000000003176,-0.06946945182439841 +7273,36.36500000000317,-0.0694691839915969 +7274,36.37000000000317,-0.06946891623784901 +7275,36.37500000000316,-0.06946864856313245 +7276,36.38000000000316,-0.0694683809674249 +7277,36.38500000000315,-0.06946811345070408 +7278,36.39000000000315,-0.06946784601294775 +7279,36.395000000003144,-0.06946757865413361 +7280,36.40000000000314,-0.06946731137423941 +7281,36.405000000003135,-0.06946704417324287 +7282,36.41000000000313,-0.06946677705112177 +7283,36.415000000003126,-0.06946651000785384 +7284,36.42000000000312,-0.06946624304341686 +7285,36.425000000003116,-0.06946597615778859 +7286,36.43000000000311,-0.0694657093509468 +7287,36.43500000000311,-0.06946544262286926 +7288,36.4400000000031,-0.06946517597353376 +7289,36.4450000000031,-0.06946490940291808 +7290,36.450000000003094,-0.06946464291100003 +7291,36.45500000000309,-0.0694643764977574 +7292,36.460000000003085,-0.069464110163168 +7293,36.46500000000308,-0.06946384390720965 +7294,36.470000000003076,-0.06946357772986018 +7295,36.47500000000307,-0.06946331163109738 +7296,36.480000000003066,-0.06946304561089911 +7297,36.48500000000306,-0.0694627796692432 +7298,36.49000000000306,-0.06946251380610749 +7299,36.49500000000305,-0.06946224802146983 +7300,36.50000000000305,-0.06946198231530806 +7301,36.505000000003044,-0.06946171668760007 +7302,36.51000000000304,-0.06946145113832368 +7303,36.515000000003035,-0.06946118566745682 +7304,36.52000000000303,-0.06946092027497733 +7305,36.525000000003025,-0.0694606549608631 +7306,36.53000000000302,-0.06946038972509201 +7307,36.535000000003016,-0.06946012456764199 +7308,36.54000000000301,-0.06945985948849091 +7309,36.54500000000301,-0.06945959448761668 +7310,36.550000000003,-0.06945932956499722 +7311,36.555000000003,-0.06945906472061046 +7312,36.560000000002994,-0.0694587999544343 +7313,36.56500000000299,-0.06945853526644669 +7314,36.570000000002985,-0.06945827065662556 +7315,36.57500000000298,-0.06945800612494886 +7316,36.580000000002975,-0.06945774167139451 +7317,36.58500000000297,-0.06945747729594051 +7318,36.590000000002966,-0.06945721299856478 +7319,36.59500000000296,-0.0694569487792453 +7320,36.60000000000296,-0.06945668463796004 +7321,36.60500000000295,-0.06945642057468698 +7322,36.61000000000295,-0.06945615658940411 +7323,36.615000000002944,-0.06945589268208942 +7324,36.62000000000294,-0.06945562885272089 +7325,36.625000000002935,-0.06945536510127652 +7326,36.63000000000293,-0.06945510142773433 +7327,36.635000000002925,-0.06945483783207233 +7328,36.64000000000292,-0.06945457431426855 +7329,36.645000000002916,-0.06945431087430098 +7330,36.65000000000291,-0.06945404751214768 +7331,36.65500000000291,-0.06945378422778668 +7332,36.6600000000029,-0.06945352102119602 +7333,36.6650000000029,-0.06945325789235375 +7334,36.670000000002894,-0.06945299484123792 +7335,36.67500000000289,-0.06945273186782658 +7336,36.680000000002885,-0.06945246897209781 +7337,36.68500000000288,-0.06945220615402967 +7338,36.690000000002875,-0.06945194341360025 +7339,36.69500000000287,-0.06945168075078761 +7340,36.700000000002866,-0.06945141816556988 +7341,36.70500000000286,-0.06945115565792512 +7342,36.71000000000286,-0.06945089322783143 +7343,36.71500000000285,-0.06945063087526694 +7344,36.72000000000285,-0.06945036860020974 +7345,36.725000000002844,-0.06945010640263796 +7346,36.73000000000284,-0.06944984428252972 +7347,36.735000000002834,-0.06944958223986314 +7348,36.74000000000283,-0.06944932027461635 +7349,36.745000000002825,-0.06944905838676751 +7350,36.75000000000282,-0.06944879657629477 +7351,36.755000000002816,-0.06944853484317626 +7352,36.76000000000281,-0.06944827318739016 +7353,36.76500000000281,-0.06944801160891463 +7354,36.7700000000028,-0.06944775010772783 +7355,36.7750000000028,-0.06944748868380793 +7356,36.780000000002794,-0.06944722733713313 +7357,36.78500000000279,-0.06944696606768162 +7358,36.790000000002784,-0.06944670487543157 +7359,36.79500000000278,-0.06944644376036119 +7360,36.800000000002775,-0.0694461827224487 +7361,36.80500000000277,-0.06944592176167229 +7362,36.810000000002766,-0.06944566087801017 +7363,36.81500000000276,-0.0694454000714406 +7364,36.82000000000276,-0.06944513934194176 +7365,36.82500000000275,-0.06944487868949192 +7366,36.83000000000275,-0.0694446181140693 +7367,36.83500000000274,-0.06944435761565215 +7368,36.84000000000274,-0.06944409719421873 +7369,36.845000000002734,-0.06944383684974728 +7370,36.85000000000273,-0.0694435765822161 +7371,36.855000000002725,-0.06944331639160342 +7372,36.86000000000272,-0.06944305627788752 +7373,36.865000000002716,-0.0694427962410467 +7374,36.87000000000271,-0.0694425362810592 +7375,36.87500000000271,-0.06944227639790337 +7376,36.8800000000027,-0.06944201659155748 +7377,36.8850000000027,-0.06944175686199983 +7378,36.89000000000269,-0.06944149720920872 +7379,36.89500000000269,-0.06944123763316248 +7380,36.900000000002684,-0.06944097813383944 +7381,36.90500000000268,-0.06944071871121792 +7382,36.910000000002675,-0.06944045936527622 +7383,36.91500000000267,-0.06944020009599272 +7384,36.920000000002666,-0.06943994090334575 +7385,36.92500000000266,-0.06943968178731365 +7386,36.93000000000266,-0.06943942274787479 +7387,36.93500000000265,-0.06943916378500752 +7388,36.94000000000265,-0.0694389048986902 +7389,36.94500000000264,-0.06943864608890123 +7390,36.95000000000264,-0.06943838735561896 +7391,36.955000000002634,-0.06943812869882178 +7392,36.96000000000263,-0.0694378701184881 +7393,36.965000000002625,-0.06943761161459627 +7394,36.97000000000262,-0.06943735318712474 +7395,36.975000000002616,-0.0694370948360519 +7396,36.98000000000261,-0.06943683656135614 +7397,36.98500000000261,-0.06943657836301591 +7398,36.9900000000026,-0.06943632024100962 +7399,36.9950000000026,-0.0694360621953157 +7400,37.00000000000259,-0.0694358042259126 +7401,37.00500000000259,-0.06943554633277874 +7402,37.010000000002584,-0.06943528851589256 +7403,37.01500000000258,-0.06943503077523255 +7404,37.020000000002575,-0.06943477311077713 +7405,37.02500000000257,-0.06943451552250479 +7406,37.030000000002566,-0.069434258010394 +7407,37.03500000000256,-0.06943400057442323 +7408,37.04000000000256,-0.06943374321457094 +7409,37.04500000000255,-0.06943348593081564 +7410,37.05000000000255,-0.06943322872313583 +7411,37.05500000000254,-0.06943297159150999 +7412,37.06000000000254,-0.06943271453591664 +7413,37.065000000002534,-0.06943245755633427 +7414,37.07000000000253,-0.06943220065274142 +7415,37.075000000002525,-0.0694319438251166 +7416,37.08000000000252,-0.06943168707343833 +7417,37.085000000002516,-0.06943143039768515 +7418,37.09000000000251,-0.0694311737978356 +7419,37.09500000000251,-0.06943091727386821 +7420,37.1000000000025,-0.06943066082576156 +7421,37.1050000000025,-0.06943040445349419 +7422,37.11000000000249,-0.06943014815704465 +7423,37.11500000000249,-0.06942989193639153 +7424,37.120000000002484,-0.06942963579151339 +7425,37.12500000000248,-0.06942937972238881 +7426,37.130000000002475,-0.06942912372899639 +7427,37.13500000000247,-0.06942886781131469 +7428,37.140000000002466,-0.06942861196932232 +7429,37.14500000000246,-0.06942835620299788 +7430,37.15000000000246,-0.06942810051231997 +7431,37.15500000000245,-0.06942784489726724 +7432,37.16000000000245,-0.06942758935781826 +7433,37.16500000000244,-0.06942733389395168 +7434,37.17000000000244,-0.06942707850564614 +7435,37.175000000002434,-0.06942682319288025 +7436,37.18000000000243,-0.06942656795563266 +7437,37.185000000002425,-0.06942631279388203 +7438,37.19000000000242,-0.069426057707607 +7439,37.195000000002416,-0.06942580269678623 +7440,37.20000000000241,-0.06942554776139839 +7441,37.20500000000241,-0.06942529290142214 +7442,37.2100000000024,-0.06942503811683616 +7443,37.2150000000024,-0.06942478340761914 +7444,37.22000000000239,-0.06942452877374974 +7445,37.22500000000239,-0.0694242742152067 +7446,37.230000000002384,-0.06942401973196867 +7447,37.23500000000238,-0.06942376532401438 +7448,37.240000000002375,-0.06942351099132255 +7449,37.24500000000237,-0.06942325673387187 +7450,37.250000000002366,-0.06942300255164106 +7451,37.25500000000236,-0.06942274844460887 +7452,37.26000000000236,-0.06942249441275403 +7453,37.26500000000235,-0.06942224045605523 +7454,37.27000000000235,-0.06942198657449129 +7455,37.27500000000234,-0.0694217327680409 +7456,37.28000000000234,-0.06942147903668285 +7457,37.285000000002334,-0.06942122538039587 +7458,37.29000000000233,-0.06942097179915875 +7459,37.295000000002325,-0.06942071829295025 +7460,37.30000000000232,-0.06942046486174917 +7461,37.305000000002316,-0.06942021150553428 +7462,37.31000000000231,-0.06941995822428434 +7463,37.31500000000231,-0.06941970501797819 +7464,37.3200000000023,-0.0694194518865946 +7465,37.3250000000023,-0.0694191988301124 +7466,37.33000000000229,-0.06941894584851038 +7467,37.33500000000229,-0.06941869294176736 +7468,37.340000000002284,-0.06941844010986217 +7469,37.34500000000228,-0.06941818735277365 +7470,37.350000000002275,-0.0694179346704806 +7471,37.35500000000227,-0.0694176820629619 +7472,37.360000000002266,-0.06941742953019636 +7473,37.36500000000226,-0.06941717707216286 +7474,37.37000000000226,-0.06941692468884024 +7475,37.37500000000225,-0.06941667238020736 +7476,37.38000000000225,-0.0694164201462431 +7477,37.38500000000224,-0.06941616798692633 +7478,37.39000000000224,-0.06941591590223592 +7479,37.395000000002234,-0.06941566389215077 +7480,37.40000000000223,-0.06941541195664978 +7481,37.405000000002225,-0.06941516009571182 +7482,37.41000000000222,-0.06941490830931579 +7483,37.415000000002216,-0.06941465659744062 +7484,37.42000000000221,-0.06941440496006519 +7485,37.42500000000221,-0.06941415339716848 +7486,37.4300000000022,-0.06941390190872936 +7487,37.4350000000022,-0.06941365049472677 +7488,37.44000000000219,-0.06941339915513967 +7489,37.44500000000219,-0.06941314788994696 +7490,37.450000000002184,-0.06941289669912762 +7491,37.45500000000218,-0.0694126455826606 +7492,37.460000000002175,-0.06941239454052484 +7493,37.46500000000217,-0.06941214357269931 +7494,37.470000000002166,-0.06941189267916299 +7495,37.47500000000216,-0.06941164185989485 +7496,37.48000000000216,-0.06941139111487386 +7497,37.48500000000215,-0.06941114044407902 +7498,37.49000000000215,-0.06941088984748933 +7499,37.49500000000214,-0.06941063932508376 +7500,37.50000000000214,-0.06941038887684134 +7501,37.505000000002134,-0.06941013850274107 +7502,37.51000000000213,-0.06940988820276195 +7503,37.515000000002125,-0.069409637976883 +7504,37.52000000000212,-0.06940938782508327 +7505,37.525000000002116,-0.06940913774734178 +7506,37.53000000000211,-0.06940888774363756 +7507,37.53500000000211,-0.06940863781394964 +7508,37.5400000000021,-0.0694083879582571 +7509,37.5450000000021,-0.06940813817653897 +7510,37.55000000000209,-0.06940788846877431 +7511,37.55500000000209,-0.0694076388349422 +7512,37.560000000002084,-0.06940738927502171 +7513,37.56500000000208,-0.0694071397889919 +7514,37.570000000002075,-0.06940689037683186 +7515,37.57500000000207,-0.06940664103852066 +7516,37.580000000002066,-0.06940639177403742 +7517,37.58500000000206,-0.06940614258336122 +7518,37.59000000000206,-0.06940589346647118 +7519,37.59500000000205,-0.06940564442334639 +7520,37.60000000000205,-0.06940539545396598 +7521,37.60500000000204,-0.06940514655830905 +7522,37.61000000000204,-0.06940489773635476 +7523,37.615000000002034,-0.06940464898808221 +7524,37.62000000000203,-0.06940440031347056 +7525,37.625000000002025,-0.06940415171249893 +7526,37.63000000000202,-0.06940390318514648 +7527,37.635000000002016,-0.06940365473139239 +7528,37.64000000000201,-0.06940340635121577 +7529,37.64500000000201,-0.0694031580445958 +7530,37.650000000002,-0.06940290981151166 +7531,37.655000000002,-0.06940266165194253 +7532,37.66000000000199,-0.06940241356586761 +7533,37.66500000000199,-0.06940216555326605 +7534,37.670000000001984,-0.06940191761411704 +7535,37.67500000000198,-0.06940166974839981 +7536,37.680000000001975,-0.06940142195609354 +7537,37.68500000000197,-0.06940117423717745 +7538,37.690000000001966,-0.06940092659163076 +7539,37.69500000000196,-0.06940067901943268 +7540,37.70000000000196,-0.06940043152056245 +7541,37.70500000000195,-0.06940018409499929 +7542,37.71000000000195,-0.06939993674272243 +7543,37.71500000000194,-0.06939968946371113 +7544,37.72000000000194,-0.06939944225794463 +7545,37.725000000001934,-0.06939919512540219 +7546,37.73000000000193,-0.06939894806606306 +7547,37.735000000001925,-0.0693987010799065 +7548,37.74000000000192,-0.0693984541669118 +7549,37.745000000001916,-0.06939820732705823 +7550,37.75000000000191,-0.06939796056032506 +7551,37.75500000000191,-0.0693977138666916 +7552,37.7600000000019,-0.0693974672461371 +7553,37.7650000000019,-0.06939722069864089 +7554,37.77000000000189,-0.06939697422418228 +7555,37.77500000000189,-0.06939672782274058 +7556,37.780000000001884,-0.06939648149429507 +7557,37.78500000000188,-0.06939623523882511 +7558,37.790000000001875,-0.06939598905631 +7559,37.79500000000187,-0.0693957429467291 +7560,37.800000000001866,-0.0693954969100617 +7561,37.80500000000186,-0.06939525094628718 +7562,37.81000000000186,-0.06939500505538489 +7563,37.81500000000185,-0.06939475923733415 +7564,37.82000000000185,-0.06939451349211435 +7565,37.82500000000184,-0.06939426781970486 +7566,37.83000000000184,-0.06939402222008502 +7567,37.835000000001834,-0.06939377669323424 +7568,37.84000000000183,-0.06939353123913186 +7569,37.845000000001825,-0.06939328585775731 +7570,37.85000000000182,-0.06939304054908994 +7571,37.855000000001816,-0.06939279531310918 +7572,37.86000000000181,-0.06939255014979444 +7573,37.86500000000181,-0.06939230505912508 +7574,37.8700000000018,-0.06939206004108056 +7575,37.8750000000018,-0.06939181509564027 +7576,37.88000000000179,-0.06939157022278365 +7577,37.88500000000179,-0.06939132542249014 +7578,37.890000000001784,-0.06939108069473916 +7579,37.89500000000178,-0.06939083603951017 +7580,37.900000000001775,-0.06939059145678259 +7581,37.90500000000177,-0.0693903469465359 +7582,37.910000000001766,-0.06939010250874954 +7583,37.91500000000176,-0.06938985814340298 +7584,37.92000000000176,-0.06938961385047568 +7585,37.92500000000175,-0.06938936962994714 +7586,37.93000000000175,-0.0693891254817968 +7587,37.93500000000174,-0.0693888814060042 +7588,37.94000000000174,-0.06938863740254879 +7589,37.945000000001734,-0.06938839347141007 +7590,37.95000000000173,-0.06938814961256755 +7591,37.955000000001725,-0.06938790582600074 +7592,37.96000000000172,-0.06938766211168915 +7593,37.965000000001716,-0.06938741846961229 +7594,37.97000000000171,-0.0693871748997497 +7595,37.97500000000171,-0.0693869314020809 +7596,37.9800000000017,-0.06938668797658543 +7597,37.9850000000017,-0.06938644462324281 +7598,37.99000000000169,-0.0693862013420326 +7599,37.99500000000169,-0.06938595813293438 +7600,38.000000000001684,-0.06938571499592767 +7601,38.00500000000168,-0.06938547193099204 +7602,38.010000000001675,-0.06938522893810706 +7603,38.01500000000167,-0.0693849860172523 +7604,38.020000000001666,-0.06938474316840736 +7605,38.02500000000166,-0.06938450039155179 +7606,38.03000000000166,-0.06938425768666522 +7607,38.03500000000165,-0.0693840150537272 +7608,38.04000000000165,-0.06938377249271736 +7609,38.04500000000164,-0.06938353000361529 +7610,38.05000000000164,-0.06938328758640061 +7611,38.055000000001634,-0.06938304524105296 +7612,38.06000000000163,-0.06938280296755192 +7613,38.065000000001625,-0.06938256076587715 +7614,38.07000000000162,-0.06938231863600826 +7615,38.075000000001616,-0.06938207657792489 +7616,38.08000000000161,-0.06938183459160671 +7617,38.08500000000161,-0.06938159267703334 +7618,38.0900000000016,-0.06938135083418447 +7619,38.0950000000016,-0.06938110906303972 +7620,38.10000000000159,-0.06938086736357878 +7621,38.10500000000159,-0.06938062573578131 +7622,38.110000000001584,-0.069380384179627 +7623,38.11500000000158,-0.06938014269509553 +7624,38.120000000001575,-0.06937990128216658 +7625,38.12500000000157,-0.06937965994081984 +7626,38.130000000001566,-0.06937941867103502 +7627,38.13500000000156,-0.0693791774727918 +7628,38.14000000000156,-0.06937893634606994 +7629,38.14500000000155,-0.06937869529084911 +7630,38.15000000000155,-0.06937845430710905 +7631,38.15500000000154,-0.06937821339482948 +7632,38.16000000000154,-0.06937797255399014 +7633,38.165000000001534,-0.06937773178457074 +7634,38.17000000000153,-0.06937749108655104 +7635,38.175000000001525,-0.0693772504599108 +7636,38.18000000000152,-0.06937700990462976 +7637,38.185000000001516,-0.06937676942068767 +7638,38.19000000000151,-0.06937652900806429 +7639,38.19500000000151,-0.06937628866673942 +7640,38.2000000000015,-0.06937604839669283 +7641,38.2050000000015,-0.06937580819790426 +7642,38.21000000000149,-0.06937556807035354 +7643,38.21500000000149,-0.06937532801402044 +7644,38.220000000001484,-0.06937508802888476 +7645,38.22500000000148,-0.0693748481149263 +7646,38.230000000001475,-0.06937460827212485 +7647,38.23500000000147,-0.06937436850046026 +7648,38.240000000001466,-0.06937412879991232 +7649,38.24500000000146,-0.06937388917046088 +7650,38.25000000000146,-0.06937364961208572 +7651,38.25500000000145,-0.06937341012476674 +7652,38.26000000000145,-0.06937317070848373 +7653,38.26500000000144,-0.06937293136321654 +7654,38.27000000000144,-0.06937269208894503 +7655,38.275000000001434,-0.06937245288564906 +7656,38.28000000000143,-0.06937221375330849 +7657,38.285000000001425,-0.06937197469190318 +7658,38.29000000000142,-0.069371735701413 +7659,38.295000000001416,-0.06937149678181784 +7660,38.30000000000141,-0.06937125793309756 +7661,38.30500000000141,-0.0693710191552321 +7662,38.3100000000014,-0.06937078044820129 +7663,38.3150000000014,-0.06937054181198506 +7664,38.32000000000139,-0.06937030324656329 +7665,38.32500000000139,-0.06937006475191594 +7666,38.330000000001384,-0.06936982632802288 +7667,38.33500000000138,-0.06936958797486405 +7668,38.340000000001375,-0.06936934969241937 +7669,38.34500000000137,-0.06936911148066877 +7670,38.350000000001366,-0.06936887333959219 +7671,38.35500000000136,-0.06936863526916956 +7672,38.36000000000136,-0.06936839726938085 +7673,38.36500000000135,-0.069368159340206 +7674,38.37000000000135,-0.06936792148162498 +7675,38.37500000000134,-0.06936768369361772 +7676,38.38000000000134,-0.06936744597616422 +7677,38.385000000001334,-0.06936720832924445 +7678,38.39000000000133,-0.06936697075283839 +7679,38.395000000001325,-0.06936673324692601 +7680,38.40000000000132,-0.0693664958114873 +7681,38.405000000001316,-0.06936625844650228 +7682,38.41000000000131,-0.06936602115195094 +7683,38.41500000000131,-0.06936578392781327 +7684,38.4200000000013,-0.06936554677406931 +7685,38.4250000000013,-0.06936530969069905 +7686,38.43000000000129,-0.06936507267768253 +7687,38.43500000000129,-0.06936483573499977 +7688,38.440000000001284,-0.06936459886263081 +7689,38.44500000000128,-0.06936436206055568 +7690,38.450000000001275,-0.06936412532875443 +7691,38.45500000000127,-0.06936388866720711 +7692,38.460000000001266,-0.06936365207589378 +7693,38.46500000000126,-0.06936341555479447 +7694,38.47000000000126,-0.06936317910388928 +7695,38.47500000000125,-0.06936294272315825 +7696,38.48000000000125,-0.06936270641258149 +7697,38.48500000000124,-0.06936247017213906 +7698,38.49000000000124,-0.06936223400181105 +7699,38.495000000001234,-0.06936199790157756 +7700,38.50000000000123,-0.06936176187141868 +7701,38.505000000001225,-0.06936152591131452 +7702,38.51000000000122,-0.06936129002124516 +7703,38.515000000001216,-0.06936105420119075 +7704,38.52000000000121,-0.0693608184511314 +7705,38.52500000000121,-0.06936058277104722 +7706,38.5300000000012,-0.06936034716091835 +7707,38.5350000000012,-0.06936011162072492 +7708,38.54000000000119,-0.06935987615044709 +7709,38.54500000000119,-0.06935964075006495 +7710,38.550000000001184,-0.06935940541955872 +7711,38.55500000000118,-0.0693591701589085 +7712,38.560000000001175,-0.06935893496809449 +7713,38.56500000000117,-0.06935869984709683 +7714,38.570000000001166,-0.06935846479589572 +7715,38.57500000000116,-0.0693582298144713 +7716,38.58000000000116,-0.06935799490280378 +7717,38.58500000000115,-0.06935776006087335 +7718,38.59000000000115,-0.06935752528866018 +7719,38.59500000000114,-0.0693572905861445 +7720,38.60000000000114,-0.0693570559533065 +7721,38.605000000001134,-0.06935682139012639 +7722,38.61000000000113,-0.06935658689658436 +7723,38.615000000001125,-0.06935635247266066 +7724,38.62000000000112,-0.0693561181183355 +7725,38.625000000001116,-0.06935588383358914 +7726,38.63000000000111,-0.06935564961840177 +7727,38.63500000000111,-0.06935541547275366 +7728,38.6400000000011,-0.06935518139662505 +7729,38.6450000000011,-0.0693549473899962 +7730,38.65000000000109,-0.06935471345284736 +7731,38.65500000000109,-0.06935447958515877 +7732,38.660000000001084,-0.06935424578691073 +7733,38.66500000000108,-0.06935401205808349 +7734,38.670000000001075,-0.06935377839865735 +7735,38.67500000000107,-0.06935354480861257 +7736,38.680000000001066,-0.06935331128792946 +7737,38.68500000000106,-0.0693530778365883 +7738,38.690000000001056,-0.06935284445456939 +7739,38.69500000000105,-0.06935261114185305 +7740,38.70000000000105,-0.06935237789841957 +7741,38.70500000000104,-0.06935214472424928 +7742,38.71000000000104,-0.06935191161932248 +7743,38.715000000001034,-0.06935167858361951 +7744,38.72000000000103,-0.06935144561712071 +7745,38.725000000001025,-0.06935121271980642 +7746,38.73000000000102,-0.06935097989165695 +7747,38.735000000001016,-0.06935074713265267 +7748,38.74000000000101,-0.06935051444277393 +7749,38.745000000001006,-0.06935028182200108 +7750,38.750000000001,-0.0693500492703145 +7751,38.755000000001,-0.06934981678769454 +7752,38.76000000000099,-0.06934958437412157 +7753,38.76500000000099,-0.069349352029576 +7754,38.770000000000984,-0.06934911975403817 +7755,38.77500000000098,-0.0693488875474885 +7756,38.780000000000975,-0.06934865540990738 +7757,38.78500000000097,-0.0693484233412752 +7758,38.790000000000965,-0.06934819134157236 +7759,38.79500000000096,-0.06934795941077929 +7760,38.800000000000956,-0.06934772754887637 +7761,38.80500000000095,-0.06934749575584408 +7762,38.81000000000095,-0.06934726403166279 +7763,38.81500000000094,-0.06934703237631296 +7764,38.82000000000094,-0.06934680078977502 +7765,38.825000000000934,-0.0693465692720294 +7766,38.83000000000093,-0.06934633782305656 +7767,38.835000000000925,-0.06934610644283695 +7768,38.84000000000092,-0.06934587513135104 +7769,38.845000000000915,-0.06934564388857926 +7770,38.85000000000091,-0.0693454127145021 +7771,38.855000000000906,-0.06934518160910004 +7772,38.8600000000009,-0.06934495057235354 +7773,38.8650000000009,-0.0693447196042431 +7774,38.87000000000089,-0.0693444887047492 +7775,38.87500000000089,-0.06934425787385233 +7776,38.880000000000884,-0.069344027111533 +7777,38.88500000000088,-0.06934379641777172 +7778,38.890000000000875,-0.06934356579254897 +7779,38.89500000000087,-0.06934333523584531 +7780,38.900000000000865,-0.0693431047476412 +7781,38.90500000000086,-0.06934287432791723 +7782,38.910000000000856,-0.06934264397665389 +7783,38.91500000000085,-0.06934241369383173 +7784,38.92000000000085,-0.06934218347943129 +7785,38.92500000000084,-0.06934195333343311 +7786,38.93000000000084,-0.06934172325581775 +7787,38.935000000000834,-0.06934149324656576 +7788,38.94000000000083,-0.06934126330565771 +7789,38.945000000000825,-0.06934103343307416 +7790,38.95000000000082,-0.06934080362879569 +7791,38.955000000000815,-0.06934057389280286 +7792,38.96000000000081,-0.06934034422507628 +7793,38.965000000000806,-0.06934011462559653 +7794,38.9700000000008,-0.06933988509434419 +7795,38.9750000000008,-0.06933965563129986 +7796,38.98000000000079,-0.06933942623644415 +7797,38.98500000000079,-0.06933919690975769 +7798,38.990000000000784,-0.06933896765122105 +7799,38.99500000000078,-0.0693387384608149 +7800,39.000000000000774,-0.06933850933851983 +7801,39.00500000000077,-0.06933828028431648 +7802,39.010000000000765,-0.06933805129818546 +7803,39.01500000000076,-0.06933782238010745 +7804,39.020000000000756,-0.0693375935300631 +7805,39.02500000000075,-0.06933736474803301 +7806,39.03000000000075,-0.06933713603399788 +7807,39.03500000000074,-0.06933690738793837 +7808,39.04000000000074,-0.06933667880983513 +7809,39.045000000000734,-0.06933645029966883 +7810,39.05000000000073,-0.06933622185742015 +7811,39.055000000000724,-0.06933599348306979 +7812,39.06000000000072,-0.0693357651765984 +7813,39.065000000000715,-0.0693355369379867 +7814,39.07000000000071,-0.0693353087672154 +7815,39.075000000000706,-0.06933508066426516 +7816,39.0800000000007,-0.06933485262911675 +7817,39.0850000000007,-0.0693346246617508 +7818,39.09000000000069,-0.0693343967621481 +7819,39.09500000000069,-0.06933416893028935 +7820,39.10000000000068,-0.06933394116615527 +7821,39.10500000000068,-0.06933371346972661 +7822,39.110000000000674,-0.0693334858409841 +7823,39.11500000000067,-0.06933325827990848 +7824,39.120000000000665,-0.06933303078648051 +7825,39.12500000000066,-0.06933280336068093 +7826,39.130000000000656,-0.06933257600249051 +7827,39.13500000000065,-0.06933234871189002 +7828,39.14000000000065,-0.06933212148886021 +7829,39.14500000000064,-0.06933189433338187 +7830,39.15000000000064,-0.06933166724543578 +7831,39.15500000000063,-0.06933144022500272 +7832,39.16000000000063,-0.0693312132720635 +7833,39.165000000000624,-0.06933098638659889 +7834,39.17000000000062,-0.06933075956858971 +7835,39.175000000000615,-0.06933053281801677 +7836,39.18000000000061,-0.06933030613486085 +7837,39.185000000000606,-0.06933007951910279 +7838,39.1900000000006,-0.06932985297072343 +7839,39.1950000000006,-0.06932962648970356 +7840,39.20000000000059,-0.06932940007602403 +7841,39.20500000000059,-0.06932917372966567 +7842,39.21000000000058,-0.06932894745060933 +7843,39.21500000000058,-0.06932872123883586 +7844,39.220000000000574,-0.06932849509432612 +7845,39.22500000000057,-0.06932826901706095 +7846,39.230000000000565,-0.06932804300702121 +7847,39.23500000000056,-0.06932781706418778 +7848,39.240000000000556,-0.06932759118854154 +7849,39.24500000000055,-0.06932736538006334 +7850,39.25000000000055,-0.0693271396387341 +7851,39.25500000000054,-0.06932691396453468 +7852,39.26000000000054,-0.069326688357446 +7853,39.26500000000053,-0.06932646281744895 +7854,39.27000000000053,-0.06932623734452442 +7855,39.275000000000524,-0.06932601193865333 +7856,39.28000000000052,-0.0693257865998166 +7857,39.285000000000515,-0.06932556132799514 +7858,39.29000000000051,-0.06932533612316986 +7859,39.295000000000506,-0.06932511098532174 +7860,39.3000000000005,-0.06932488591443166 +7861,39.3050000000005,-0.06932466091048059 +7862,39.31000000000049,-0.06932443597344946 +7863,39.31500000000049,-0.06932421110331924 +7864,39.32000000000048,-0.06932398630007089 +7865,39.32500000000048,-0.06932376156368535 +7866,39.330000000000474,-0.06932353689414357 +7867,39.33500000000047,-0.06932331229142656 +7868,39.340000000000465,-0.06932308775551528 +7869,39.34500000000046,-0.0693228632863907 +7870,39.350000000000456,-0.06932263888403382 +7871,39.35500000000045,-0.06932241454842562 +7872,39.36000000000045,-0.06932219027954711 +7873,39.36500000000044,-0.06932196607737928 +7874,39.37000000000044,-0.06932174194190316 +7875,39.37500000000043,-0.06932151787309974 +7876,39.38000000000043,-0.06932129387095003 +7877,39.385000000000424,-0.06932106993543508 +7878,39.39000000000042,-0.0693208460665359 +7879,39.395000000000415,-0.06932062226423351 +7880,39.40000000000041,-0.06932039852850896 +7881,39.405000000000406,-0.0693201748593433 +7882,39.4100000000004,-0.06931995125671757 +7883,39.4150000000004,-0.06931972772061283 +7884,39.42000000000039,-0.06931950425101013 +7885,39.42500000000039,-0.06931928084789055 +7886,39.43000000000038,-0.06931905751123511 +7887,39.43500000000038,-0.06931883424102495 +7888,39.440000000000374,-0.0693186110372411 +7889,39.44500000000037,-0.06931838789986466 +7890,39.450000000000365,-0.06931816482887672 +7891,39.45500000000036,-0.06931794182425836 +7892,39.460000000000356,-0.0693177188859907 +7893,39.46500000000035,-0.06931749601405485 +7894,39.47000000000035,-0.06931727320843187 +7895,39.47500000000034,-0.06931705046910293 +7896,39.48000000000034,-0.06931682779604911 +7897,39.48500000000033,-0.06931660518925156 +7898,39.49000000000033,-0.06931638264869139 +7899,39.495000000000324,-0.06931616017434974 +7900,39.50000000000032,-0.06931593776620777 +7901,39.505000000000315,-0.0693157154242466 +7902,39.51000000000031,-0.06931549314844737 +7903,39.515000000000306,-0.06931527093879128 +7904,39.5200000000003,-0.06931504879525945 +7905,39.5250000000003,-0.06931482671783304 +7906,39.53000000000029,-0.06931460470649325 +7907,39.53500000000029,-0.06931438276122125 +7908,39.54000000000028,-0.0693141608819982 +7909,39.54500000000028,-0.06931393906880529 +7910,39.550000000000274,-0.06931371732162371 +7911,39.55500000000027,-0.06931349564043468 +7912,39.560000000000265,-0.06931327402521938 +7913,39.56500000000026,-0.069313052475959 +7914,39.570000000000256,-0.06931283099263477 +7915,39.57500000000025,-0.06931260957522792 +7916,39.58000000000025,-0.06931238822371964 +7917,39.58500000000024,-0.06931216693809117 +7918,39.59000000000024,-0.06931194571832375 +7919,39.59500000000023,-0.06931172456439859 +7920,39.60000000000023,-0.06931150347629697 +7921,39.605000000000224,-0.06931128245400009 +7922,39.61000000000022,-0.06931106149748924 +7923,39.615000000000215,-0.06931084060674565 +7924,39.62000000000021,-0.0693106197817506 +7925,39.625000000000206,-0.06931039902248534 +7926,39.6300000000002,-0.06931017832893116 +7927,39.6350000000002,-0.0693099577010693 +7928,39.64000000000019,-0.0693097371388811 +7929,39.64500000000019,-0.06930951664234779 +7930,39.65000000000018,-0.06930929621145068 +7931,39.65500000000018,-0.06930907584617109 +7932,39.660000000000174,-0.06930885554649029 +7933,39.66500000000017,-0.06930863531238958 +7934,39.670000000000165,-0.06930841514385032 +7935,39.67500000000016,-0.06930819504085378 +7936,39.680000000000156,-0.06930797500338129 +7937,39.68500000000015,-0.06930775503141419 +7938,39.69000000000015,-0.0693075351249338 +7939,39.69500000000014,-0.06930731528392146 +7940,39.70000000000014,-0.06930709550835853 +7941,39.70500000000013,-0.06930687579822634 +7942,39.71000000000013,-0.06930665615350623 +7943,39.715000000000124,-0.06930643657417958 +7944,39.72000000000012,-0.06930621706022773 +7945,39.725000000000115,-0.06930599761163207 +7946,39.73000000000011,-0.06930577822837396 +7947,39.735000000000106,-0.06930555891043477 +7948,39.7400000000001,-0.0693053396577959 +7949,39.7450000000001,-0.06930512047043873 +7950,39.75000000000009,-0.06930490134834463 +7951,39.75500000000009,-0.06930468229149503 +7952,39.76000000000008,-0.0693044632998713 +7953,39.76500000000008,-0.06930424437345488 +7954,39.770000000000074,-0.06930402551222715 +7955,39.77500000000007,-0.06930380671616956 +7956,39.780000000000065,-0.06930358798526352 +7957,39.78500000000006,-0.06930336931949044 +7958,39.790000000000056,-0.06930315071883178 +7959,39.79500000000005,-0.06930293218326895 +7960,39.80000000000005,-0.0693027137127834 +7961,39.80500000000004,-0.06930249530735659 +7962,39.81000000000004,-0.06930227696696997 +7963,39.81500000000003,-0.06930205869160498 +7964,39.82000000000003,-0.0693018404812431 +7965,39.825000000000024,-0.06930162233586579 +7966,39.83000000000002,-0.06930140425545452 +7967,39.835000000000015,-0.06930118623999078 +7968,39.84000000000001,-0.06930096828945602 +7969,39.845000000000006,-0.06930075040383177 +7970,39.85,-0.0693005325830995 +7971,39.855,-0.0693003148272407 +7972,39.85999999999999,-0.06930009713623689 +7973,39.86499999999999,-0.06929987951006956 +7974,39.86999999999998,-0.06929966194872023 +7975,39.87499999999998,-0.06929944445217043 +7976,39.879999999999974,-0.06929922702040166 +7977,39.88499999999997,-0.06929900965339546 +7978,39.889999999999965,-0.06929879235113336 +7979,39.89499999999996,-0.0692985751135969 +7980,39.899999999999956,-0.06929835794076762 +7981,39.90499999999995,-0.06929814083262706 +7982,39.90999999999995,-0.06929792378915677 +7983,39.91499999999994,-0.06929770681033832 +7984,39.91999999999994,-0.06929748989615328 +7985,39.92499999999993,-0.06929727304658319 +7986,39.92999999999993,-0.06929705626160963 +7987,39.934999999999924,-0.06929683954121418 +7988,39.93999999999992,-0.06929662288537844 +7989,39.944999999999915,-0.06929640629408398 +7990,39.94999999999991,-0.06929618976731239 +7991,39.954999999999906,-0.06929597330504526 +7992,39.9599999999999,-0.06929575690726422 +7993,39.9649999999999,-0.06929554057395085 +7994,39.96999999999989,-0.06929532430508677 +7995,39.97499999999989,-0.06929510810065359 +7996,39.97999999999988,-0.06929489196063296 +7997,39.98499999999988,-0.06929467588500647 +7998,39.989999999999874,-0.06929445987375576 +7999,39.99499999999987,-0.0692942439268625 +8000,39.999999999999865,-0.06929402804430827 +8001,40.00499999999986,-0.06929381222607478 +8002,40.009999999999856,-0.06929359647214364 +8003,40.01499999999985,-0.06929338078249653 +8004,40.01999999999985,-0.0692931651571151 +8005,40.02499999999984,-0.06929294959598102 +8006,40.02999999999984,-0.06929273409907595 +8007,40.03499999999983,-0.06929251866638157 +8008,40.03999999999983,-0.06929230329787957 +8009,40.044999999999824,-0.06929208799355163 +8010,40.04999999999982,-0.06929187275337945 +8011,40.054999999999815,-0.06929165757734472 +8012,40.05999999999981,-0.06929144246542915 +8013,40.064999999999806,-0.06929122741761441 +8014,40.0699999999998,-0.06929101243388225 +8015,40.0749999999998,-0.06929079751421437 +8016,40.07999999999979,-0.06929058265859249 +8017,40.08499999999979,-0.06929036786699834 +8018,40.08999999999978,-0.06929015313941367 +8019,40.09499999999978,-0.06928993847582018 +8020,40.099999999999774,-0.06928972387619964 +8021,40.10499999999977,-0.06928950934053375 +8022,40.109999999999765,-0.06928929486880432 +8023,40.11499999999976,-0.06928908046099307 +8024,40.119999999999756,-0.06928886611708175 +8025,40.12499999999975,-0.06928865183705216 +8026,40.12999999999975,-0.06928843762088605 +8027,40.13499999999974,-0.0692882234685652 +8028,40.13999999999974,-0.06928800938007137 +8029,40.14499999999973,-0.06928779535538639 +8030,40.14999999999973,-0.069287581394492 +8031,40.154999999999724,-0.06928736749737001 +8032,40.15999999999972,-0.06928715366400225 +8033,40.164999999999715,-0.06928693989437049 +8034,40.16999999999971,-0.06928672618845656 +8035,40.174999999999706,-0.06928651254624225 +8036,40.1799999999997,-0.0692862989677094 +8037,40.1849999999997,-0.06928608545283983 +8038,40.18999999999969,-0.06928587200161536 +8039,40.19499999999969,-0.06928565861401784 +8040,40.19999999999968,-0.06928544529002909 +8041,40.20499999999968,-0.06928523202963097 +8042,40.209999999999674,-0.06928501883280531 +8043,40.21499999999967,-0.06928480569953399 +8044,40.219999999999665,-0.06928459262979886 +8045,40.22499999999966,-0.06928437962358176 +8046,40.229999999999656,-0.0692841666808646 +8047,40.23499999999965,-0.06928395380162922 +8048,40.23999999999965,-0.06928374098585749 +8049,40.24499999999964,-0.06928352823353133 +8050,40.24999999999964,-0.0692833155446326 +8051,40.25499999999963,-0.0692831029191432 +8052,40.25999999999963,-0.06928289035704505 +8053,40.264999999999624,-0.06928267785832001 +8054,40.26999999999962,-0.06928246542295002 +8055,40.274999999999615,-0.069282253050917 +8056,40.27999999999961,-0.06928204074220283 +8057,40.284999999999606,-0.06928182849678945 +8058,40.2899999999996,-0.06928161631465879 +8059,40.2949999999996,-0.06928140419579279 +8060,40.29999999999959,-0.06928119214017338 +8061,40.30499999999959,-0.06928098014778249 +8062,40.30999999999958,-0.06928076821860207 +8063,40.31499999999958,-0.0692805563526141 +8064,40.319999999999574,-0.0692803445498005 +8065,40.32499999999957,-0.06928013281014325 +8066,40.329999999999565,-0.06927992113362431 +8067,40.33499999999956,-0.06927970952022565 +8068,40.339999999999556,-0.06927949796992926 +8069,40.34499999999955,-0.0692792864827171 +8070,40.34999999999955,-0.06927907505857117 +8071,40.35499999999954,-0.06927886369747345 +8072,40.35999999999954,-0.06927865239940596 +8073,40.36499999999953,-0.06927844116435067 +8074,40.36999999999953,-0.0692782299922896 +8075,40.374999999999524,-0.06927801888320476 +8076,40.37999999999952,-0.06927780783707814 +8077,40.384999999999515,-0.0692775968538918 +8078,40.38999999999951,-0.06927738593362774 +8079,40.394999999999506,-0.069277175076268 +8080,40.3999999999995,-0.06927696428179461 +8081,40.4049999999995,-0.0692767535501896 +8082,40.40999999999949,-0.06927654288143503 +8083,40.41499999999949,-0.06927633227551294 +8084,40.41999999999948,-0.0692761217324054 +8085,40.42499999999948,-0.06927591125209445 +8086,40.429999999999474,-0.06927570083456215 +8087,40.43499999999947,-0.06927549047979058 +8088,40.439999999999465,-0.06927528018776181 +8089,40.44499999999946,-0.06927506995845792 +8090,40.449999999999456,-0.06927485979186099 +8091,40.45499999999945,-0.06927464968795312 +8092,40.45999999999945,-0.06927443964671638 +8093,40.46499999999944,-0.06927422966813288 +8094,40.46999999999944,-0.06927401975218471 +8095,40.47499999999943,-0.06927380989885401 +8096,40.47999999999943,-0.06927360010812286 +8097,40.484999999999424,-0.06927339037997339 +8098,40.48999999999942,-0.06927318071438772 +8099,40.494999999999415,-0.06927297111134799 +8100,40.49999999999941,-0.0692727615708363 +8101,40.504999999999406,-0.0692725520928348 +8102,40.5099999999994,-0.06927234267732564 +8103,40.5149999999994,-0.06927213332429097 +8104,40.51999999999939,-0.06927192403371292 +8105,40.52499999999939,-0.06927171480557366 +8106,40.52999999999938,-0.06927150563985535 +8107,40.53499999999938,-0.06927129653654016 +8108,40.539999999999374,-0.06927108749561023 +8109,40.54499999999937,-0.06927087851704777 +8110,40.549999999999365,-0.06927066960083494 +8111,40.55499999999936,-0.06927046074695395 +8112,40.559999999999356,-0.06927025195538696 +8113,40.56499999999935,-0.06927004322611617 +8114,40.56999999999935,-0.06926983455912379 +8115,40.57499999999934,-0.06926962595439201 +8116,40.57999999999934,-0.06926941741190305 +8117,40.58499999999933,-0.06926920893163911 +8118,40.58999999999933,-0.06926900051358242 +8119,40.594999999999324,-0.06926879215771521 +8120,40.59999999999932,-0.06926858386401971 +8121,40.604999999999315,-0.06926837563247813 +8122,40.60999999999931,-0.06926816746307271 +8123,40.614999999999306,-0.06926795935578572 +8124,40.6199999999993,-0.06926775131059938 +8125,40.6249999999993,-0.06926754332749595 +8126,40.62999999999929,-0.06926733540645767 +8127,40.63499999999929,-0.06926712754746685 +8128,40.63999999999928,-0.06926691975050571 +8129,40.64499999999928,-0.06926671201555654 +8130,40.649999999999274,-0.0692665043426016 +8131,40.65499999999927,-0.0692662967316232 +8132,40.659999999999265,-0.06926608918260362 +8133,40.66499999999926,-0.06926588169552511 +8134,40.669999999999256,-0.06926567427037 +8135,40.67499999999925,-0.06926546690712058 +8136,40.67999999999925,-0.06926525960575917 +8137,40.68499999999924,-0.06926505236626807 +8138,40.68999999999924,-0.06926484518862958 +8139,40.69499999999923,-0.06926463807282604 +8140,40.69999999999923,-0.06926443101883978 +8141,40.704999999999224,-0.0692642240266531 +8142,40.70999999999922,-0.06926401709624835 +8143,40.714999999999215,-0.06926381022760786 +8144,40.71999999999921,-0.069263603420714 +8145,40.724999999999206,-0.06926339667554908 +8146,40.7299999999992,-0.06926318999209546 +8147,40.7349999999992,-0.06926298337033553 +8148,40.73999999999919,-0.06926277681025161 +8149,40.74499999999919,-0.0692625703118261 +8150,40.74999999999918,-0.06926236387504137 +8151,40.75499999999918,-0.06926215749987977 +8152,40.759999999999174,-0.06926195118632368 +8153,40.76499999999917,-0.06926174493435552 +8154,40.769999999999165,-0.06926153874395766 +8155,40.77499999999916,-0.0692613326151125 +8156,40.779999999999156,-0.06926112654780243 +8157,40.78499999999915,-0.06926092054200989 +8158,40.78999999999915,-0.06926071459771724 +8159,40.79499999999914,-0.06926050871490694 +8160,40.79999999999914,-0.06926030289356137 +8161,40.80499999999913,-0.06926009713366298 +8162,40.80999999999913,-0.06925989143519419 +8163,40.814999999999124,-0.06925968579813745 +8164,40.81999999999912,-0.06925948022247516 +8165,40.824999999999115,-0.06925927470818981 +8166,40.82999999999911,-0.06925906925526382 +8167,40.834999999999106,-0.06925886386367963 +8168,40.8399999999991,-0.06925865853341974 +8169,40.8449999999991,-0.06925845326446657 +8170,40.84999999999909,-0.06925824805680261 +8171,40.85499999999909,-0.06925804291041034 +8172,40.85999999999908,-0.06925783782527221 +8173,40.86499999999908,-0.06925763280137073 +8174,40.869999999999074,-0.06925742783868838 +8175,40.87499999999907,-0.06925722293720761 +8176,40.879999999999065,-0.06925701809691097 +8177,40.88499999999906,-0.06925681331778093 +8178,40.889999999999056,-0.0692566085998 +8179,40.89499999999905,-0.0692564039429507 +8180,40.89999999999905,-0.06925619934721552 +8181,40.90499999999904,-0.06925599481257702 +8182,40.90999999999904,-0.0692557903390177 +8183,40.91499999999903,-0.06925558592652009 +8184,40.91999999999903,-0.06925538157506671 +8185,40.924999999999024,-0.06925517728464012 +8186,40.92999999999902,-0.06925497305522285 +8187,40.934999999999015,-0.06925476888679745 +8188,40.93999999999901,-0.06925456477934648 +8189,40.944999999999006,-0.06925436073285249 +8190,40.949999999999,-0.06925415674729804 +8191,40.954999999998996,-0.06925395282266571 +8192,40.95999999999899,-0.06925374895893806 +8193,40.96499999999899,-0.06925354515609768 +8194,40.96999999999898,-0.06925334141412712 +8195,40.97499999999898,-0.069253137733009 +8196,40.979999999998974,-0.06925293411272589 +8197,40.98499999999897,-0.06925273055326038 +8198,40.989999999998965,-0.06925252705459507 +8199,40.99499999999896,-0.0692523236167126 +8200,40.999999999998956,-0.06925212023959554 +8201,41.00499999999895,-0.06925191692322652 +8202,41.009999999998946,-0.06925171366758814 +8203,41.01499999999894,-0.06925151047266308 +8204,41.01999999999894,-0.06925130733843389 +8205,41.02499999999893,-0.06925110426488325 +8206,41.02999999999893,-0.06925090125199379 +8207,41.034999999998924,-0.06925069829974816 +8208,41.03999999999892,-0.06925049540812898 +8209,41.044999999998915,-0.06925029257711893 +8210,41.04999999999891,-0.06925008980670065 +8211,41.054999999998905,-0.0692498870968568 +8212,41.0599999999989,-0.06924968444757006 +8213,41.064999999998896,-0.06924948185882308 +8214,41.06999999999889,-0.06924927933059857 +8215,41.07499999999889,-0.06924907686287918 +8216,41.07999999999888,-0.06924887445564759 +8217,41.08499999999888,-0.06924867210888651 +8218,41.089999999998874,-0.06924846982257861 +8219,41.09499999999887,-0.06924826759670662 +8220,41.099999999998865,-0.06924806543125321 +8221,41.10499999999886,-0.06924786332620111 +8222,41.109999999998855,-0.06924766128153305 +8223,41.11499999999885,-0.0692474592972317 +8224,41.119999999998846,-0.06924725737327982 +8225,41.12499999999884,-0.06924705550966011 +8226,41.12999999999884,-0.0692468537063553 +8227,41.13499999999883,-0.06924665196334817 +8228,41.13999999999883,-0.06924645028062143 +8229,41.144999999998824,-0.06924624865815783 +8230,41.14999999999882,-0.0692460470959401 +8231,41.154999999998815,-0.06924584559395101 +8232,41.15999999999881,-0.06924564415217334 +8233,41.164999999998805,-0.06924544277058983 +8234,41.1699999999988,-0.06924524144918326 +8235,41.174999999998796,-0.0692450401879364 +8236,41.17999999999879,-0.06924483898683202 +8237,41.18499999999879,-0.06924463784585293 +8238,41.18999999999878,-0.06924443676498188 +8239,41.19499999999878,-0.06924423574420167 +8240,41.199999999998774,-0.06924403478349513 +8241,41.20499999999877,-0.06924383388284502 +8242,41.209999999998765,-0.06924363304223419 +8243,41.21499999999876,-0.0692434322616454 +8244,41.219999999998755,-0.0692432315410615 +8245,41.22499999999875,-0.06924303088046531 +8246,41.229999999998746,-0.06924283027983964 +8247,41.23499999999874,-0.06924262973916732 +8248,41.23999999999874,-0.06924242925843122 +8249,41.24499999999873,-0.06924222883761412 +8250,41.24999999999873,-0.06924202847669891 +8251,41.254999999998724,-0.06924182817566842 +8252,41.25999999999872,-0.0692416279345055 +8253,41.264999999998714,-0.06924142775319303 +8254,41.26999999999871,-0.06924122763171384 +8255,41.274999999998705,-0.06924102757005082 +8256,41.2799999999987,-0.06924082756818684 +8257,41.284999999998696,-0.06924062762610475 +8258,41.28999999999869,-0.06924042774378747 +8259,41.29499999999869,-0.06924022792121785 +8260,41.29999999999868,-0.0692400281583788 +8261,41.30499999999868,-0.06923982845525321 +8262,41.309999999998674,-0.069239628811824 +8263,41.31499999999867,-0.06923942922807404 +8264,41.319999999998664,-0.06923922970398626 +8265,41.32499999999866,-0.06923903023954357 +8266,41.329999999998655,-0.06923883083472887 +8267,41.33499999999865,-0.06923863148952512 +8268,41.339999999998646,-0.0692384322039152 +8269,41.34499999999864,-0.06923823297788209 +8270,41.34999999999864,-0.0692380338114087 +8271,41.35499999999863,-0.06923783470447797 +8272,41.35999999999863,-0.06923763565707286 +8273,41.36499999999862,-0.06923743666917631 +8274,41.36999999999862,-0.06923723774077128 +8275,41.374999999998614,-0.06923703887184073 +8276,41.37999999999861,-0.0692368400623676 +8277,41.384999999998605,-0.0692366413123349 +8278,41.3899999999986,-0.06923644262172557 +8279,41.394999999998596,-0.06923624399052261 +8280,41.39999999999859,-0.069236045418709 +8281,41.40499999999859,-0.06923584690626773 +8282,41.40999999999858,-0.06923564845318177 +8283,41.41499999999858,-0.06923545005943414 +8284,41.41999999999857,-0.06923525172500784 +8285,41.42499999999857,-0.06923505344988587 +8286,41.429999999998564,-0.06923485523405123 +8287,41.43499999999856,-0.06923465707748695 +8288,41.439999999998555,-0.06923445898017606 +8289,41.44499999999855,-0.06923426094210156 +8290,41.449999999998546,-0.06923406296324648 +8291,41.45499999999854,-0.06923386504359388 +8292,41.45999999999854,-0.06923366718312678 +8293,41.46499999999853,-0.0692334693818282 +8294,41.46999999999853,-0.06923327163968124 +8295,41.47499999999852,-0.0692330739566689 +8296,41.47999999999852,-0.06923287633277428 +8297,41.484999999998514,-0.06923267876798042 +8298,41.48999999999851,-0.06923248126227038 +8299,41.494999999998505,-0.06923228381562724 +8300,41.4999999999985,-0.06923208642803408 +8301,41.504999999998496,-0.06923188909947398 +8302,41.50999999999849,-0.06923169182993001 +8303,41.51499999999849,-0.06923149461938527 +8304,41.51999999999848,-0.06923129746782286 +8305,41.52499999999848,-0.06923110037522587 +8306,41.52999999999847,-0.06923090334157739 +8307,41.53499999999847,-0.06923070636686054 +8308,41.539999999998464,-0.06923050945105844 +8309,41.54499999999846,-0.0692303125941542 +8310,41.549999999998455,-0.06923011579613093 +8311,41.55499999999845,-0.06922991905697176 +8312,41.559999999998446,-0.06922972237665984 +8313,41.56499999999844,-0.0692295257551783 +8314,41.56999999999844,-0.06922932919251025 +8315,41.57499999999843,-0.06922913268863885 +8316,41.57999999999843,-0.06922893624354727 +8317,41.58499999999842,-0.06922873985721864 +8318,41.58999999999842,-0.06922854352963613 +8319,41.594999999998414,-0.0692283472607829 +8320,41.59999999999841,-0.06922815105064212 +8321,41.604999999998405,-0.06922795489919693 +8322,41.6099999999984,-0.06922775880643055 +8323,41.614999999998396,-0.06922756277232614 +8324,41.61999999999839,-0.06922736679686689 +8325,41.62499999999839,-0.06922717088003598 +8326,41.62999999999838,-0.06922697502181663 +8327,41.63499999999838,-0.069226779222192 +8328,41.63999999999837,-0.06922658348114533 +8329,41.64499999999837,-0.0692263877986598 +8330,41.649999999998364,-0.06922619217471865 +8331,41.65499999999836,-0.06922599660930508 +8332,41.659999999998355,-0.0692258011024023 +8333,41.66499999999835,-0.06922560565399356 +8334,41.669999999998346,-0.06922541026406209 +8335,41.67499999999834,-0.06922521493259112 +8336,41.67999999999834,-0.06922501965956389 +8337,41.68499999999833,-0.06922482444496363 +8338,41.68999999999833,-0.06922462928877361 +8339,41.69499999999832,-0.06922443419097708 +8340,41.69999999999832,-0.0692242391515573 +8341,41.704999999998314,-0.06922404417049752 +8342,41.70999999999831,-0.06922384924778102 +8343,41.714999999998305,-0.06922365438339106 +8344,41.7199999999983,-0.06922345957731094 +8345,41.724999999998296,-0.06922326482952391 +8346,41.72999999999829,-0.06922307014001328 +8347,41.73499999999829,-0.06922287550876233 +8348,41.73999999999828,-0.06922268093575436 +8349,41.74499999999828,-0.06922248642097266 +8350,41.74999999999827,-0.06922229196440054 +8351,41.75499999999827,-0.06922209756602131 +8352,41.759999999998264,-0.06922190322581828 +8353,41.76499999999826,-0.06922170894377477 +8354,41.769999999998255,-0.0692215147198741 +8355,41.77499999999825,-0.0692213205540996 +8356,41.779999999998246,-0.06922112644643459 +8357,41.78499999999824,-0.06922093239686243 +8358,41.78999999999824,-0.06922073840536644 +8359,41.79499999999823,-0.06922054447192996 +8360,41.79999999999823,-0.06922035059653635 +8361,41.80499999999822,-0.06922015677916896 +8362,41.80999999999822,-0.06921996301981116 +8363,41.814999999998214,-0.0692197693184463 +8364,41.81999999999821,-0.06921957567505775 +8365,41.824999999998205,-0.0692193820896289 +8366,41.8299999999982,-0.06921918856214308 +8367,41.834999999998196,-0.06921899509258372 +8368,41.83999999999819,-0.0692188016809342 +8369,41.84499999999819,-0.06921860832717788 +8370,41.84999999999818,-0.06921841503129816 +8371,41.85499999999818,-0.06921822179327847 +8372,41.85999999999817,-0.06921802861310218 +8373,41.86499999999817,-0.06921783549075271 +8374,41.869999999998164,-0.06921764242621348 +8375,41.87499999999816,-0.0692174494194679 +8376,41.879999999998155,-0.0692172564704994 +8377,41.88499999999815,-0.06921706357929139 +8378,41.889999999998146,-0.06921687074582732 +8379,41.89499999999814,-0.06921667797009061 +8380,41.89999999999814,-0.06921648525206471 +8381,41.90499999999813,-0.06921629259173306 +8382,41.90999999999813,-0.06921609998907911 +8383,41.91499999999812,-0.06921590744408632 +8384,41.91999999999812,-0.06921571495673812 +8385,41.924999999998114,-0.06921552252701799 +8386,41.92999999999811,-0.0692153301549094 +8387,41.934999999998105,-0.06921513784039583 +8388,41.9399999999981,-0.06921494558346074 +8389,41.944999999998096,-0.06921475338408761 +8390,41.94999999999809,-0.06921456124225994 +8391,41.95499999999809,-0.06921436915796121 +8392,41.95999999999808,-0.06921417713117492 +8393,41.96499999999808,-0.06921398516188455 +8394,41.96999999999807,-0.06921379325007362 +8395,41.97499999999807,-0.06921360139572563 +8396,41.979999999998064,-0.0692134095988241 +8397,41.98499999999806,-0.06921321785935254 +8398,41.989999999998055,-0.06921302617729447 +8399,41.99499999999805,-0.06921283455263341 +8400,41.999999999998046,-0.0692126429853529 +8401,42.00499999999804,-0.06921245147543646 +8402,42.00999999999804,-0.06921226002286766 +8403,42.01499999999803,-0.06921206862763002 +8404,42.01999999999803,-0.0692118772897071 +8405,42.02499999999802,-0.06921168600908241 +8406,42.02999999999802,-0.06921149478573956 +8407,42.034999999998014,-0.06921130361966209 +8408,42.03999999999801,-0.06921111251083356 +8409,42.044999999998005,-0.06921092145923756 +8410,42.049999999998,-0.06921073046485764 +8411,42.054999999997996,-0.06921053952767739 +8412,42.05999999999799,-0.06921034864768039 +8413,42.06499999999799,-0.06921015782485022 +8414,42.06999999999798,-0.06920996705917051 +8415,42.07499999999798,-0.06920977635062482 +8416,42.07999999999797,-0.06920958569919676 +8417,42.08499999999797,-0.06920939510486994 +8418,42.089999999997964,-0.06920920456762797 +8419,42.09499999999796,-0.06920901408745445 +8420,42.099999999997955,-0.06920882366433302 +8421,42.10499999999795,-0.06920863329824731 +8422,42.109999999997946,-0.06920844298918093 +8423,42.11499999999794,-0.0692082527371175 +8424,42.11999999999794,-0.06920806254204069 +8425,42.12499999999793,-0.06920787240393413 +8426,42.12999999999793,-0.06920768232278143 +8427,42.13499999999792,-0.0692074922985663 +8428,42.13999999999792,-0.06920730233127237 +8429,42.144999999997914,-0.06920711242088329 +8430,42.14999999999791,-0.06920692256738273 +8431,42.154999999997905,-0.06920673277075436 +8432,42.1599999999979,-0.06920654303098185 +8433,42.164999999997896,-0.06920635334804888 +8434,42.16999999999789,-0.06920616372193913 +8435,42.17499999999789,-0.06920597415263628 +8436,42.17999999999788,-0.06920578464012404 +8437,42.18499999999788,-0.06920559518438608 +8438,42.18999999999787,-0.06920540578540613 +8439,42.19499999999787,-0.06920521644316788 +8440,42.199999999997864,-0.06920502715765502 +8441,42.20499999999786,-0.06920483792885128 +8442,42.209999999997855,-0.06920464875674037 +8443,42.21499999999785,-0.06920445964130602 +8444,42.219999999997846,-0.06920427058253195 +8445,42.22499999999784,-0.0692040815804019 +8446,42.22999999999784,-0.0692038926348996 +8447,42.23499999999783,-0.06920370374600877 +8448,42.23999999999783,-0.0692035149137132 +8449,42.24499999999782,-0.06920332613799658 +8450,42.24999999999782,-0.06920313741884272 +8451,42.254999999997814,-0.06920294875623532 +8452,42.25999999999781,-0.0692027601501582 +8453,42.264999999997805,-0.06920257160059509 +8454,42.2699999999978,-0.06920238310752977 +8455,42.274999999997796,-0.06920219467094602 +8456,42.27999999999779,-0.0692020062908276 +8457,42.28499999999779,-0.06920181796715831 +8458,42.28999999999778,-0.06920162969992193 +8459,42.29499999999778,-0.06920144148910225 +8460,42.29999999999777,-0.06920125333468309 +8461,42.30499999999777,-0.06920106523664823 +8462,42.309999999997764,-0.06920087719498148 +8463,42.31499999999776,-0.06920068920966667 +8464,42.319999999997755,-0.06920050128068758 +8465,42.32499999999775,-0.06920031340802804 +8466,42.329999999997746,-0.06920012559167188 +8467,42.33499999999774,-0.06919993783160293 +8468,42.33999999999774,-0.06919975012780502 +8469,42.34499999999773,-0.06919956248026199 +8470,42.34999999999773,-0.06919937488895768 +8471,42.35499999999772,-0.06919918735387592 +8472,42.35999999999772,-0.0691989998750006 +8473,42.364999999997714,-0.06919881245231552 +8474,42.36999999999771,-0.06919862508580459 +8475,42.374999999997705,-0.06919843777545162 +8476,42.3799999999977,-0.06919825052124053 +8477,42.384999999997696,-0.06919806332315516 +8478,42.38999999999769,-0.0691978761811794 +8479,42.39499999999769,-0.06919768909529712 +8480,42.39999999999768,-0.06919750206549222 +8481,42.40499999999768,-0.06919731509174858 +8482,42.40999999999767,-0.06919712817405009 +8483,42.41499999999767,-0.06919694131238066 +8484,42.419999999997664,-0.06919675450672418 +8485,42.42499999999766,-0.06919656775706456 +8486,42.429999999997655,-0.06919638106338571 +8487,42.43499999999765,-0.06919619442567158 +8488,42.439999999997646,-0.06919600784390605 +8489,42.44499999999764,-0.06919582131807304 +8490,42.44999999999764,-0.06919563484815652 +8491,42.45499999999763,-0.06919544843414038 +8492,42.45999999999763,-0.0691952620760086 +8493,42.46499999999762,-0.06919507577374508 +8494,42.46999999999762,-0.06919488952733378 +8495,42.474999999997614,-0.06919470333675869 +8496,42.47999999999761,-0.06919451720200372 +8497,42.484999999997605,-0.06919433112305283 +8498,42.4899999999976,-0.06919414509989001 +8499,42.494999999997596,-0.0691939591324992 +8500,42.49999999999759,-0.0691937732208644 +8501,42.50499999999759,-0.06919358736496957 +8502,42.50999999999758,-0.06919340156479871 +8503,42.51499999999758,-0.06919321582033579 +8504,42.51999999999757,-0.0691930301315648 +8505,42.52499999999757,-0.06919284449846974 +8506,42.529999999997564,-0.06919265892103461 +8507,42.53499999999756,-0.0691924733992434 +8508,42.539999999997555,-0.06919228793308016 +8509,42.54499999999755,-0.06919210252252886 +8510,42.549999999997546,-0.06919191716757352 +8511,42.55499999999754,-0.06919173186819817 +8512,42.55999999999754,-0.06919154662438684 +8513,42.56499999999753,-0.06919136143612357 +8514,42.56999999999753,-0.06919117630339237 +8515,42.57499999999752,-0.06919099122617729 +8516,42.57999999999752,-0.06919080620446237 +8517,42.584999999997514,-0.06919062123823168 +8518,42.58999999999751,-0.06919043632746921 +8519,42.594999999997505,-0.06919025147215908 +8520,42.5999999999975,-0.06919006667228533 +8521,42.604999999997496,-0.069189881927832 +8522,42.60999999999749,-0.0691896972387832 +8523,42.61499999999749,-0.06918951260512297 +8524,42.61999999999748,-0.06918932802683542 +8525,42.62499999999748,-0.06918914350390461 +8526,42.62999999999747,-0.06918895903631461 +8527,42.63499999999747,-0.06918877462404954 +8528,42.639999999997464,-0.0691885902670935 +8529,42.64499999999746,-0.06918840596543056 +8530,42.649999999997455,-0.06918822171904485 +8531,42.65499999999745,-0.06918803752792047 +8532,42.659999999997446,-0.0691878533920415 +8533,42.66499999999744,-0.06918766931139211 +8534,42.66999999999744,-0.0691874852859564 +8535,42.67499999999743,-0.06918730131571849 +8536,42.67999999999743,-0.06918711740066252 +8537,42.68499999999742,-0.0691869335407726 +8538,42.68999999999742,-0.0691867497360329 +8539,42.694999999997414,-0.06918656598642754 +8540,42.69999999999741,-0.06918638229194067 +8541,42.704999999997405,-0.06918619865255647 +8542,42.7099999999974,-0.06918601506825907 +8543,42.714999999997396,-0.06918583153903263 +8544,42.71999999999739,-0.0691856480648613 +8545,42.72499999999739,-0.06918546464572928 +8546,42.72999999999738,-0.06918528128162073 +8547,42.73499999999738,-0.06918509797251983 +8548,42.73999999999737,-0.06918491471841075 +8549,42.74499999999737,-0.06918473151927769 +8550,42.749999999997364,-0.06918454837510483 +8551,42.75499999999736,-0.0691843652858764 +8552,42.759999999997355,-0.06918418225157655 +8553,42.76499999999735,-0.0691839992721895 +8554,42.769999999997346,-0.06918381634769946 +8555,42.77499999999734,-0.06918363347809066 +8556,42.77999999999734,-0.06918345066334729 +8557,42.78499999999733,-0.06918326790345357 +8558,42.78999999999733,-0.06918308519839374 +8559,42.79499999999732,-0.06918290254815203 +8560,42.79999999999732,-0.06918271995271266 +8561,42.804999999997314,-0.06918253741205989 +8562,42.80999999999731,-0.06918235492617794 +8563,42.814999999997305,-0.06918217249505107 +8564,42.8199999999973,-0.06918199011866352 +8565,42.824999999997296,-0.06918180779699955 +8566,42.82999999999729,-0.06918162553004342 +8567,42.83499999999729,-0.0691814433177794 +8568,42.83999999999728,-0.06918126116019176 +8569,42.84499999999728,-0.06918107905726475 +8570,42.84999999999727,-0.06918089700898267 +8571,42.85499999999727,-0.0691807150153298 +8572,42.859999999997264,-0.0691805330762904 +8573,42.86499999999726,-0.06918035119184879 +8574,42.869999999997255,-0.06918016936198924 +8575,42.87499999999725,-0.06917998758669608 +8576,42.879999999997246,-0.06917980586595357 +8577,42.88499999999724,-0.06917962419974605 +8578,42.88999999999724,-0.06917944258805782 +8579,42.89499999999723,-0.06917926103087318 +8580,42.89999999999723,-0.06917907952817648 +8581,42.90499999999722,-0.06917889807995202 +8582,42.90999999999722,-0.06917871668618415 +8583,42.914999999997214,-0.06917853534685718 +8584,42.91999999999721,-0.06917835406195547 +8585,42.924999999997205,-0.06917817283146332 +8586,42.9299999999972,-0.06917799165536513 +8587,42.934999999997196,-0.06917781053364522 +8588,42.93999999999719,-0.06917762946628794 +8589,42.94499999999719,-0.06917744845327765 +8590,42.94999999999718,-0.06917726749459872 +8591,42.95499999999718,-0.06917708659023553 +8592,42.95999999999717,-0.0691769057401724 +8593,42.96499999999717,-0.06917672494439375 +8594,42.969999999997164,-0.06917654420288397 +8595,42.97499999999716,-0.0691763635156274 +8596,42.979999999997155,-0.06917618288260848 +8597,42.98499999999715,-0.06917600230381156 +8598,42.989999999997146,-0.06917582177922106 +8599,42.99499999999714,-0.06917564130882135 +8600,42.99999999999714,-0.06917546089259688 +8601,43.00499999999713,-0.06917528053053203 +8602,43.00999999999713,-0.06917510022261121 +8603,43.01499999999712,-0.06917491996881886 +8604,43.01999999999712,-0.06917473976913938 +8605,43.024999999997114,-0.06917455962355722 +8606,43.02999999999711,-0.0691743795320568 +8607,43.034999999997105,-0.06917419949462253 +8608,43.0399999999971,-0.06917401951123889 +8609,43.044999999997096,-0.06917383958189029 +8610,43.04999999999709,-0.06917365970656121 +8611,43.05499999999709,-0.06917347988523607 +8612,43.05999999999708,-0.06917330011789936 +8613,43.06499999999708,-0.0691731204045355 +8614,43.06999999999707,-0.069172940745129 +8615,43.07499999999707,-0.06917276113966431 +8616,43.079999999997064,-0.06917258158812588 +8617,43.08499999999706,-0.06917240209049821 +8618,43.089999999997055,-0.06917222264676579 +8619,43.09499999999705,-0.06917204325691309 +8620,43.099999999997046,-0.06917186392092461 +8621,43.10499999999704,-0.06917168463878484 +8622,43.10999999999704,-0.06917150541047827 +8623,43.11499999999703,-0.06917132623598943 +8624,43.11999999999703,-0.0691711471153028 +8625,43.12499999999702,-0.0691709680484029 +8626,43.12999999999702,-0.06917078903527424 +8627,43.134999999997014,-0.06917061007590135 +8628,43.13999999999701,-0.06917043117026876 +8629,43.144999999997005,-0.06917025231836098 +8630,43.149999999997,-0.06917007352016256 +8631,43.154999999996996,-0.06916989477565803 +8632,43.15999999999699,-0.06916971608483194 +8633,43.164999999996986,-0.06916953744766882 +8634,43.16999999999698,-0.06916935886415322 +8635,43.17499999999698,-0.0691691803342697 +8636,43.17999999999697,-0.06916900185800283 +8637,43.18499999999697,-0.06916882343533716 +8638,43.189999999996964,-0.06916864506625725 +8639,43.19499999999696,-0.06916846675074768 +8640,43.199999999996955,-0.06916828848879303 +8641,43.20499999999695,-0.06916811028037786 +8642,43.209999999996946,-0.06916793212548678 +8643,43.21499999999694,-0.06916775402410434 +8644,43.219999999996936,-0.06916757597621517 +8645,43.22499999999693,-0.06916739798180387 +8646,43.22999999999693,-0.069167220040855 +8647,43.23499999999692,-0.06916704215335319 +8648,43.23999999999692,-0.06916686431928305 +8649,43.244999999996914,-0.06916668653862917 +8650,43.24999999999691,-0.06916650881137622 +8651,43.254999999996905,-0.06916633113750877 +8652,43.2599999999969,-0.06916615351701146 +8653,43.264999999996895,-0.06916597594986892 +8654,43.26999999999689,-0.0691657984360658 +8655,43.274999999996886,-0.06916562097558672 +8656,43.27999999999688,-0.06916544356841632 +8657,43.28499999999688,-0.06916526621453926 +8658,43.28999999999687,-0.06916508891394019 +8659,43.29499999999687,-0.06916491166660374 +8660,43.299999999996864,-0.06916473447251462 +8661,43.30499999999686,-0.06916455733165745 +8662,43.309999999996855,-0.06916438024401692 +8663,43.31499999999685,-0.06916420320957768 +8664,43.319999999996845,-0.06916402622832443 +8665,43.32499999999684,-0.06916384930024183 +8666,43.329999999996836,-0.06916367242531458 +8667,43.33499999999683,-0.06916349560352737 +8668,43.33999999999683,-0.06916331883486489 +8669,43.34499999999682,-0.06916314211931182 +8670,43.34999999999682,-0.06916296545685288 +8671,43.354999999996814,-0.06916278884747278 +8672,43.35999999999681,-0.0691626122911562 +8673,43.364999999996805,-0.06916243578788787 +8674,43.3699999999968,-0.06916225933765253 +8675,43.374999999996795,-0.06916208294043487 +8676,43.37999999999679,-0.06916190659621964 +8677,43.384999999996786,-0.06916173030499155 +8678,43.38999999999678,-0.06916155406673537 +8679,43.39499999999678,-0.0691613778814358 +8680,43.39999999999677,-0.0691612017490776 +8681,43.40499999999677,-0.0691610256696455 +8682,43.409999999996764,-0.0691608496431243 +8683,43.41499999999676,-0.0691606736694987 +8684,43.419999999996755,-0.06916049774875349 +8685,43.42499999999675,-0.06916032188087343 +8686,43.429999999996745,-0.06916014606584328 +8687,43.43499999999674,-0.06915997030364782 +8688,43.439999999996736,-0.06915979459427182 +8689,43.44499999999673,-0.06915961893770006 +8690,43.44999999999673,-0.06915944333391734 +8691,43.45499999999672,-0.06915926778290843 +8692,43.45999999999672,-0.06915909228465815 +8693,43.464999999996714,-0.06915891683915126 +8694,43.46999999999671,-0.06915874144637259 +8695,43.474999999996705,-0.06915856610630694 +8696,43.4799999999967,-0.06915839081893911 +8697,43.484999999996695,-0.06915821558425393 +8698,43.48999999999669,-0.06915804040223619 +8699,43.494999999996686,-0.06915786527287075 +8700,43.49999999999668,-0.06915769019614243 +8701,43.50499999999668,-0.06915751517203603 +8702,43.50999999999667,-0.06915734020053642 +8703,43.51499999999667,-0.06915716528162841 +8704,43.519999999996664,-0.06915699041529687 +8705,43.52499999999666,-0.06915681560152662 +8706,43.529999999996654,-0.06915664084030253 +8707,43.53499999999665,-0.06915646613160945 +8708,43.539999999996645,-0.06915629147543224 +8709,43.54499999999664,-0.06915611687175577 +8710,43.549999999996636,-0.0691559423205649 +8711,43.55499999999663,-0.06915576782184452 +8712,43.55999999999663,-0.06915559337557949 +8713,43.56499999999662,-0.06915541898175467 +8714,43.56999999999662,-0.069155244640355 +8715,43.574999999996614,-0.06915507035136532 +8716,43.57999999999661,-0.06915489611477055 +8717,43.584999999996604,-0.06915472193055557 +8718,43.5899999999966,-0.06915454779870528 +8719,43.594999999996595,-0.0691543737192046 +8720,43.59999999999659,-0.06915419969203844 +8721,43.604999999996586,-0.0691540257171917 +8722,43.60999999999658,-0.06915385179464932 +8723,43.61499999999658,-0.0691536779243962 +8724,43.61999999999657,-0.06915350410641725 +8725,43.62499999999657,-0.06915333034069746 +8726,43.62999999999656,-0.06915315662722171 +8727,43.63499999999656,-0.06915298296597495 +8728,43.639999999996554,-0.06915280935694214 +8729,43.64499999999655,-0.06915263580010823 +8730,43.649999999996545,-0.06915246229545816 +8731,43.65499999999654,-0.06915228884297686 +8732,43.659999999996536,-0.06915211544264932 +8733,43.66499999999653,-0.0691519420944605 +8734,43.66999999999653,-0.06915176879839535 +8735,43.67499999999652,-0.06915159555443887 +8736,43.67999999999652,-0.06915142236257601 +8737,43.68499999999651,-0.06915124922279177 +8738,43.68999999999651,-0.06915107613507111 +8739,43.694999999996504,-0.06915090309939904 +8740,43.6999999999965,-0.06915073011576055 +8741,43.704999999996495,-0.06915055718414062 +8742,43.70999999999649,-0.06915038430452426 +8743,43.714999999996486,-0.06915021147689648 +8744,43.71999999999648,-0.0691500387012423 +8745,43.72499999999648,-0.0691498659775467 +8746,43.72999999999647,-0.06914969330579472 +8747,43.73499999999647,-0.06914952068597137 +8748,43.73999999999646,-0.06914934811806168 +8749,43.74499999999646,-0.0691491756020507 +8750,43.749999999996454,-0.06914900313792342 +8751,43.75499999999645,-0.06914883072566491 +8752,43.759999999996445,-0.0691486583652602 +8753,43.76499999999644,-0.06914848605669434 +8754,43.769999999996436,-0.06914831379995237 +8755,43.77499999999643,-0.06914814159501936 +8756,43.77999999999643,-0.06914796944188037 +8757,43.78499999999642,-0.06914779734052043 +8758,43.78999999999642,-0.06914762529092464 +8759,43.79499999999641,-0.06914745329307805 +8760,43.79999999999641,-0.06914728134696574 +8761,43.804999999996404,-0.0691471094525728 +8762,43.8099999999964,-0.06914693760988429 +8763,43.814999999996395,-0.06914676581888532 +8764,43.81999999999639,-0.06914659407956097 +8765,43.824999999996386,-0.06914642239189633 +8766,43.82999999999638,-0.06914625075587652 +8767,43.83499999999638,-0.06914607917148662 +8768,43.83999999999637,-0.06914590763871174 +8769,43.84499999999637,-0.069145736157537 +8770,43.84999999999636,-0.06914556472794751 +8771,43.85499999999636,-0.0691453933499284 +8772,43.859999999996354,-0.06914522202346476 +8773,43.86499999999635,-0.06914505074854177 +8774,43.869999999996345,-0.06914487952514452 +8775,43.87499999999634,-0.06914470835325816 +8776,43.879999999996336,-0.06914453723286781 +8777,43.88499999999633,-0.06914436616395866 +8778,43.88999999999633,-0.06914419514651583 +8779,43.89499999999632,-0.06914402418052447 +8780,43.89999999999632,-0.06914385326596974 +8781,43.90499999999631,-0.0691436824028368 +8782,43.90999999999631,-0.0691435115911108 +8783,43.914999999996304,-0.06914334083077693 +8784,43.9199999999963,-0.06914317012182036 +8785,43.924999999996295,-0.06914299946422627 +8786,43.92999999999629,-0.06914282885797983 +8787,43.934999999996286,-0.06914265830306622 +8788,43.93999999999628,-0.06914248779947063 +8789,43.94499999999628,-0.06914231734717827 +8790,43.94999999999627,-0.06914214694617431 +8791,43.95499999999627,-0.06914197659644397 +8792,43.95999999999626,-0.06914180629797245 +8793,43.96499999999626,-0.06914163605074497 +8794,43.969999999996254,-0.06914146585474672 +8795,43.97499999999625,-0.06914129570996293 +8796,43.979999999996245,-0.06914112561637883 +8797,43.98499999999624,-0.06914095557397963 +8798,43.989999999996236,-0.06914078558275057 +8799,43.99499999999623,-0.06914061564267687 +8800,43.99999999999623,-0.0691404457537438 +8801,44.00499999999622,-0.06914027591593656 +8802,44.00999999999622,-0.0691401061292404 +8803,44.01499999999621,-0.0691399363936406 +8804,44.01999999999621,-0.06913976670912242 +8805,44.024999999996204,-0.06913959707567106 +8806,44.0299999999962,-0.06913942749327184 +8807,44.034999999996195,-0.06913925796190999 +8808,44.03999999999619,-0.0691390884815708 +8809,44.044999999996186,-0.06913891905223953 +8810,44.04999999999618,-0.06913874967390146 +8811,44.05499999999618,-0.06913858034654188 +8812,44.05999999999617,-0.06913841107014608 +8813,44.06499999999617,-0.06913824184469934 +8814,44.06999999999616,-0.06913807267018696 +8815,44.07499999999616,-0.06913790354659423 +8816,44.079999999996154,-0.06913773447390646 +8817,44.08499999999615,-0.06913756545210896 +8818,44.089999999996145,-0.06913739648118702 +8819,44.09499999999614,-0.06913722756112599 +8820,44.099999999996136,-0.06913705869191114 +8821,44.10499999999613,-0.06913688987352783 +8822,44.10999999999613,-0.06913672110596138 +8823,44.11499999999612,-0.06913655238919711 +8824,44.11999999999612,-0.06913638372322037 +8825,44.12499999999611,-0.06913621510801647 +8826,44.12999999999611,-0.06913604654357079 +8827,44.134999999996104,-0.06913587802986865 +8828,44.1399999999961,-0.06913570956689541 +8829,44.144999999996095,-0.06913554115463642 +8830,44.14999999999609,-0.06913537279307705 +8831,44.154999999996086,-0.06913520448220266 +8832,44.15999999999608,-0.06913503622199861 +8833,44.16499999999608,-0.06913486801245027 +8834,44.16999999999607,-0.06913469985354301 +8835,44.17499999999607,-0.06913453174526223 +8836,44.17999999999606,-0.06913436368759329 +8837,44.18499999999606,-0.0691341956805216 +8838,44.189999999996054,-0.06913402772403253 +8839,44.19499999999605,-0.06913385981811147 +8840,44.199999999996045,-0.06913369196274384 +8841,44.20499999999604,-0.06913352415791503 +8842,44.209999999996036,-0.06913335640361047 +8843,44.21499999999603,-0.06913318869981554 +8844,44.21999999999603,-0.06913302104651566 +8845,44.22499999999602,-0.06913285344369625 +8846,44.22999999999602,-0.06913268589134275 +8847,44.23499999999601,-0.06913251838944058 +8848,44.23999999999601,-0.06913235093797516 +8849,44.244999999996004,-0.06913218353693193 +8850,44.249999999996,-0.06913201618629634 +8851,44.254999999995995,-0.06913184888605382 +8852,44.25999999999599,-0.06913168163618981 +8853,44.264999999995986,-0.06913151443668979 +8854,44.26999999999598,-0.06913134728753918 +8855,44.27499999999598,-0.06913118018872347 +8856,44.27999999999597,-0.0691310131402281 +8857,44.28499999999597,-0.06913084614203854 +8858,44.28999999999596,-0.06913067919414027 +8859,44.29499999999596,-0.06913051229651877 +8860,44.299999999995954,-0.06913034544915951 +8861,44.30499999999595,-0.06913017865204797 +8862,44.309999999995945,-0.06913001190516965 +8863,44.31499999999594,-0.06912984520851004 +8864,44.319999999995936,-0.06912967856205461 +8865,44.32499999999593,-0.06912951196578888 +8866,44.32999999999593,-0.06912934541969834 +8867,44.33499999999592,-0.0691291789237685 +8868,44.33999999999592,-0.0691290124779849 +8869,44.34499999999591,-0.06912884608233302 +8870,44.34999999999591,-0.0691286797367984 +8871,44.354999999995904,-0.06912851344136656 +8872,44.3599999999959,-0.069128347196023 +8873,44.364999999995895,-0.06912818100075327 +8874,44.36999999999589,-0.06912801485554292 +8875,44.374999999995886,-0.06912784876037746 +8876,44.37999999999588,-0.06912768271524246 +8877,44.38499999999588,-0.06912751672012345 +8878,44.38999999999587,-0.069127350775006 +8879,44.39499999999587,-0.06912718487987562 +8880,44.39999999999586,-0.06912701903471792 +8881,44.40499999999586,-0.06912685323951843 +8882,44.409999999995854,-0.06912668749426275 +8883,44.41499999999585,-0.06912652179893641 +8884,44.419999999995845,-0.06912635615352501 +8885,44.42499999999584,-0.06912619055801411 +8886,44.429999999995836,-0.06912602501238932 +8887,44.43499999999583,-0.06912585951663622 +8888,44.43999999999583,-0.06912569407074037 +8889,44.44499999999582,-0.0691255286746874 +8890,44.44999999999582,-0.06912536332846288 +8891,44.45499999999581,-0.06912519803205244 +8892,44.45999999999581,-0.06912503278544166 +8893,44.464999999995804,-0.06912486758861618 +8894,44.4699999999958,-0.06912470244156159 +8895,44.474999999995795,-0.0691245373442635 +8896,44.47999999999579,-0.06912437229670756 +8897,44.484999999995786,-0.06912420729887939 +8898,44.48999999999578,-0.0691240423507646 +8899,44.49499999999578,-0.06912387745234885 +8900,44.49999999999577,-0.06912371260361776 +8901,44.50499999999577,-0.06912354780455698 +8902,44.50999999999576,-0.06912338305515216 +8903,44.51499999999576,-0.06912321835538894 +8904,44.519999999995754,-0.06912305370525298 +8905,44.52499999999575,-0.06912288910472994 +8906,44.529999999995745,-0.06912272455380547 +8907,44.53499999999574,-0.06912256005246525 +8908,44.539999999995736,-0.06912239560069493 +8909,44.54499999999573,-0.06912223119848021 +8910,44.54999999999573,-0.06912206684580674 +8911,44.55499999999572,-0.06912190254266022 +8912,44.55999999999572,-0.06912173828902635 +8913,44.56499999999571,-0.06912157408489077 +8914,44.56999999999571,-0.06912140993023921 +8915,44.574999999995704,-0.06912124582505735 +8916,44.5799999999957,-0.06912108176933093 +8917,44.584999999995695,-0.06912091776304562 +8918,44.58999999999569,-0.06912075380618711 +8919,44.594999999995686,-0.06912058989874116 +8920,44.59999999999568,-0.06912042604069346 +8921,44.60499999999568,-0.06912026223202973 +8922,44.60999999999567,-0.0691200984727357 +8923,44.61499999999567,-0.06911993476279711 +8924,44.61999999999566,-0.06911977110219968 +8925,44.62499999999566,-0.06911960749092914 +8926,44.629999999995654,-0.06911944392897125 +8927,44.63499999999565,-0.06911928041631174 +8928,44.639999999995645,-0.06911911695293636 +8929,44.64499999999564,-0.06911895353883087 +8930,44.649999999995636,-0.06911879017398101 +8931,44.65499999999563,-0.06911862685837256 +8932,44.65999999999563,-0.06911846359199125 +8933,44.66499999999562,-0.0691183003748229 +8934,44.66999999999562,-0.06911813720685324 +8935,44.67499999999561,-0.06911797408806807 +8936,44.67999999999561,-0.06911781101845316 +8937,44.684999999995604,-0.06911764799799429 +8938,44.6899999999956,-0.06911748502667725 +8939,44.694999999995595,-0.06911732210448783 +8940,44.69999999999559,-0.06911715923141182 +8941,44.704999999995586,-0.06911699640743504 +8942,44.70999999999558,-0.06911683363254328 +8943,44.71499999999558,-0.06911667090672234 +8944,44.71999999999557,-0.06911650822995803 +8945,44.72499999999557,-0.06911634560223619 +8946,44.72999999999556,-0.06911618302354261 +8947,44.73499999999556,-0.06911602049386312 +8948,44.739999999995554,-0.06911585801318355 +8949,44.74499999999555,-0.06911569558148975 +8950,44.749999999995545,-0.06911553319876752 +8951,44.75499999999554,-0.06911537086500273 +8952,44.759999999995536,-0.0691152085801812 +8953,44.76499999999553,-0.06911504634428879 +8954,44.76999999999553,-0.06911488415731133 +8955,44.77499999999552,-0.0691147220192347 +8956,44.77999999999552,-0.06911455993004476 +8957,44.78499999999551,-0.06911439788972733 +8958,44.78999999999551,-0.0691142358982683 +8959,44.794999999995504,-0.06911407395565355 +8960,44.7999999999955,-0.06911391206186894 +8961,44.804999999995495,-0.06911375021690036 +8962,44.80999999999549,-0.06911358842073367 +8963,44.814999999995486,-0.06911342667335478 +8964,44.81999999999548,-0.06911326497474957 +8965,44.82499999999548,-0.06911310332490393 +8966,44.82999999999547,-0.06911294172380376 +8967,44.83499999999547,-0.06911278017143495 +8968,44.83999999999546,-0.06911261866778343 +8969,44.84499999999546,-0.06911245721283507 +8970,44.849999999995454,-0.06911229580657581 +8971,44.85499999999545,-0.06911213444899157 +8972,44.859999999995445,-0.06911197314006826 +8973,44.86499999999544,-0.06911181187979179 +8974,44.869999999995436,-0.0691116506681481 +8975,44.87499999999543,-0.06911148950512314 +8976,44.87999999999543,-0.06911132839070282 +8977,44.88499999999542,-0.06911116732487309 +8978,44.88999999999542,-0.06911100630761989 +8979,44.89499999999541,-0.06911084533892917 +8980,44.89999999999541,-0.06911068441878687 +8981,44.904999999995404,-0.06911052354717898 +8982,44.9099999999954,-0.06911036272409142 +8983,44.914999999995395,-0.06911020194951017 +8984,44.91999999999539,-0.0691100412234212 +8985,44.924999999995386,-0.06910988054581045 +8986,44.92999999999538,-0.06910971991666394 +8987,44.93499999999538,-0.06910955933596762 +8988,44.93999999999537,-0.06910939880370748 +8989,44.94499999999537,-0.06910923831986951 +8990,44.94999999999536,-0.06910907788443969 +8991,44.95499999999536,-0.06910891749740403 +8992,44.959999999995354,-0.06910875715874851 +8993,44.96499999999535,-0.06910859686845913 +8994,44.969999999995345,-0.06910843662652191 +8995,44.97499999999534,-0.06910827643292285 +8996,44.979999999995336,-0.06910811628764796 +8997,44.98499999999533,-0.06910795619068327 +8998,44.98999999999533,-0.06910779614201477 +8999,44.99499999999532,-0.06910763614162853 +9000,44.99999999999532,-0.06910747618951055 +9001,45.00499999999531,-0.06910731628564686 +9002,45.00999999999531,-0.0691071564300235 +9003,45.014999999995304,-0.06910699662262652 +9004,45.0199999999953,-0.06910683686344198 +9005,45.024999999995295,-0.06910667715245587 +9006,45.02999999999529,-0.0691065174896543 +9007,45.034999999995286,-0.0691063578750233 +9008,45.03999999999528,-0.06910619830854892 +9009,45.04499999999528,-0.06910603879021723 +9010,45.04999999999527,-0.06910587932001432 +9011,45.05499999999527,-0.06910571989792623 +9012,45.05999999999526,-0.06910556052393904 +9013,45.06499999999526,-0.06910540119803883 +9014,45.069999999995254,-0.0691052419202117 +9015,45.07499999999525,-0.06910508269044373 +9016,45.079999999995245,-0.069104923508721 +9017,45.08499999999524,-0.06910476437502959 +9018,45.089999999995236,-0.06910460528935564 +9019,45.09499999999523,-0.0691044462516852 +9020,45.09999999999523,-0.06910428726200442 +9021,45.10499999999522,-0.06910412832029939 +9022,45.10999999999522,-0.06910396942655621 +9023,45.11499999999521,-0.06910381058076102 +9024,45.11999999999521,-0.06910365178289993 +9025,45.124999999995204,-0.06910349303295907 +9026,45.1299999999952,-0.06910333433092455 +9027,45.134999999995195,-0.06910317567678252 +9028,45.13999999999519,-0.06910301707051913 +9029,45.144999999995186,-0.06910285851212049 +9030,45.14999999999518,-0.06910270000157276 +9031,45.15499999999518,-0.06910254153886207 +9032,45.15999999999517,-0.0691023831239746 +9033,45.16499999999517,-0.06910222475689647 +9034,45.16999999999516,-0.06910206643761385 +9035,45.17499999999516,-0.06910190816611293 +9036,45.179999999995154,-0.06910174994237986 +9037,45.18499999999515,-0.06910159176640081 +9038,45.189999999995145,-0.06910143363816194 +9039,45.19499999999514,-0.06910127555764944 +9040,45.199999999995136,-0.0691011175248495 +9041,45.20499999999513,-0.06910095953974829 +9042,45.20999999999513,-0.069100801602332 +9043,45.21499999999512,-0.06910064371258683 +9044,45.21999999999512,-0.06910048587049898 +9045,45.22499999999511,-0.06910032807605465 +9046,45.22999999999511,-0.06910017032924004 +9047,45.234999999995104,-0.06910001263004137 +9048,45.2399999999951,-0.06909985497844483 +9049,45.244999999995095,-0.06909969737443665 +9050,45.24999999999509,-0.06909953981800306 +9051,45.254999999995086,-0.06909938230913026 +9052,45.25999999999508,-0.0690992248478045 +9053,45.26499999999508,-0.069099067434012 +9054,45.26999999999507,-0.06909891006773898 +9055,45.27499999999507,-0.06909875274897172 +9056,45.27999999999506,-0.06909859547769642 +9057,45.28499999999506,-0.06909843825389936 +9058,45.289999999995054,-0.06909828107756677 +9059,45.29499999999505,-0.0690981239486849 +9060,45.299999999995045,-0.06909796686724001 +9061,45.30499999999504,-0.0690978098332184 +9062,45.309999999995036,-0.06909765284660628 +9063,45.31499999999503,-0.06909749590738996 +9064,45.31999999999503,-0.06909733901555568 +9065,45.32499999999502,-0.06909718217108975 +9066,45.32999999999502,-0.06909702537397841 +9067,45.33499999999501,-0.06909686862420798 +9068,45.33999999999501,-0.06909671192176475 +9069,45.344999999995004,-0.069096555266635 +9070,45.349999999995,-0.069096398658805 +9071,45.354999999994995,-0.06909624209826108 +9072,45.35999999999499,-0.06909608558498956 +9073,45.364999999994986,-0.0690959291189767 +9074,45.36999999999498,-0.06909577270020884 +9075,45.37499999999498,-0.0690956163286723 +9076,45.37999999999497,-0.06909546000435338 +9077,45.38499999999497,-0.0690953037272384 +9078,45.38999999999496,-0.06909514749731371 +9079,45.39499999999496,-0.06909499131456563 +9080,45.399999999994954,-0.06909483517898049 +9081,45.40499999999495,-0.06909467909054463 +9082,45.409999999994945,-0.06909452304924439 +9083,45.41499999999494,-0.06909436705506611 +9084,45.419999999994936,-0.06909421110799613 +9085,45.42499999999493,-0.06909405520802084 +9086,45.429999999994926,-0.06909389935512655 +9087,45.43499999999492,-0.06909374354929966 +9088,45.43999999999492,-0.06909358779052652 +9089,45.44499999999491,-0.06909343207879347 +9090,45.44999999999491,-0.06909327641408691 +9091,45.454999999994904,-0.06909312079639322 +9092,45.4599999999949,-0.06909296522569876 +9093,45.464999999994895,-0.06909280970198993 +9094,45.46999999999489,-0.0690926542252531 +9095,45.474999999994886,-0.06909249879547467 +9096,45.47999999999488,-0.06909234341264103 +9097,45.484999999994876,-0.06909218807673859 +9098,45.48999999999487,-0.06909203278775372 +9099,45.49499999999487,-0.06909187754567286 +9100,45.49999999999486,-0.0690917223504824 +9101,45.50499999999486,-0.06909156720216875 +9102,45.509999999994854,-0.06909141210071834 +9103,45.51499999999485,-0.06909125704611759 +9104,45.519999999994845,-0.06909110203835292 +9105,45.52499999999484,-0.06909094707741074 +9106,45.529999999994835,-0.06909079216327751 +9107,45.53499999999483,-0.06909063729593964 +9108,45.539999999994826,-0.0690904824753836 +9109,45.54499999999482,-0.0690903277015958 +9110,45.54999999999482,-0.06909017297456269 +9111,45.55499999999481,-0.06909001829427075 +9112,45.55999999999481,-0.0690898636607064 +9113,45.564999999994804,-0.06908970907385611 +9114,45.5699999999948,-0.06908955453370637 +9115,45.574999999994795,-0.0690894000402436 +9116,45.57999999999479,-0.06908924559345428 +9117,45.584999999994785,-0.0690890911933249 +9118,45.58999999999478,-0.06908893683984194 +9119,45.594999999994776,-0.06908878253299185 +9120,45.59999999999477,-0.06908862827276113 +9121,45.60499999999477,-0.06908847405913628 +9122,45.60999999999476,-0.06908831989210377 +9123,45.61499999999476,-0.06908816577165011 +9124,45.619999999994754,-0.06908801169776178 +9125,45.62499999999475,-0.06908785767042532 +9126,45.629999999994745,-0.06908770368962719 +9127,45.63499999999474,-0.06908754975535393 +9128,45.639999999994735,-0.06908739586759205 +9129,45.64499999999473,-0.06908724202632807 +9130,45.649999999994726,-0.06908708823154851 +9131,45.65499999999472,-0.06908693448323987 +9132,45.65999999999472,-0.06908678078138872 +9133,45.66499999999471,-0.06908662712598156 +9134,45.66999999999471,-0.06908647351700493 +9135,45.674999999994704,-0.06908631995444539 +9136,45.6799999999947,-0.06908616643828945 +9137,45.684999999994695,-0.0690860129685237 +9138,45.68999999999469,-0.06908585954513466 +9139,45.694999999994685,-0.06908570616810888 +9140,45.69999999999468,-0.06908555283743296 +9141,45.704999999994676,-0.06908539955309341 +9142,45.70999999999467,-0.06908524631507683 +9143,45.71499999999467,-0.06908509312336977 +9144,45.71999999999466,-0.06908493997795882 +9145,45.72499999999466,-0.06908478687883056 +9146,45.729999999994654,-0.06908463382597155 +9147,45.73499999999465,-0.0690844808193684 +9148,45.739999999994644,-0.06908432785900767 +9149,45.74499999999464,-0.06908417494487597 +9150,45.749999999994635,-0.06908402207695988 +9151,45.75499999999463,-0.06908386925524601 +9152,45.759999999994626,-0.06908371647972097 +9153,45.76499999999462,-0.06908356375037138 +9154,45.76999999999462,-0.06908341106718381 +9155,45.77499999999461,-0.06908325843014489 +9156,45.77999999999461,-0.06908310583924124 +9157,45.784999999994604,-0.06908295329445949 +9158,45.7899999999946,-0.06908280079578626 +9159,45.794999999994594,-0.06908264834320818 +9160,45.79999999999459,-0.06908249593671188 +9161,45.804999999994585,-0.069082343576284 +9162,45.80999999999458,-0.06908219126191116 +9163,45.814999999994576,-0.06908203899358004 +9164,45.81999999999457,-0.06908188677127725 +9165,45.82499999999457,-0.06908173459498945 +9166,45.82999999999456,-0.06908158246470333 +9167,45.83499999999456,-0.06908143038040551 +9168,45.83999999999455,-0.06908127834208266 +9169,45.84499999999455,-0.06908112634972145 +9170,45.849999999994544,-0.06908097440330856 +9171,45.85499999999454,-0.06908082250283064 +9172,45.859999999994535,-0.06908067064827439 +9173,45.86499999999453,-0.06908051883962647 +9174,45.869999999994526,-0.06908036707687358 +9175,45.87499999999452,-0.06908021536000242 +9176,45.87999999999452,-0.06908006368899965 +9177,45.88499999999451,-0.06907991206385199 +9178,45.88999999999451,-0.0690797604845461 +9179,45.8949999999945,-0.06907960895106874 +9180,45.8999999999945,-0.06907945746340657 +9181,45.904999999994494,-0.06907930602154633 +9182,45.90999999999449,-0.06907915462547472 +9183,45.914999999994485,-0.06907900327517845 +9184,45.91999999999448,-0.06907885197064426 +9185,45.924999999994476,-0.06907870071185886 +9186,45.92999999999447,-0.06907854949880898 +9187,45.93499999999447,-0.06907839833148137 +9188,45.93999999999446,-0.06907824720986273 +9189,45.94499999999446,-0.06907809613393984 +9190,45.94999999999445,-0.06907794510369941 +9191,45.95499999999445,-0.0690777941191282 +9192,45.959999999994444,-0.06907764318021298 +9193,45.96499999999444,-0.06907749228694048 +9194,45.969999999994435,-0.06907734143929745 +9195,45.97499999999443,-0.06907719063727066 +9196,45.979999999994426,-0.0690770398808469 +9197,45.98499999999442,-0.06907688917001291 +9198,45.98999999999442,-0.06907673850475547 +9199,45.99499999999441,-0.06907658788506135 +9200,45.99999999999441,-0.06907643731091735 +9201,46.0049999999944,-0.06907628678231024 +9202,46.0099999999944,-0.06907613629922682 +9203,46.014999999994394,-0.06907598586165385 +9204,46.01999999999439,-0.06907583546957816 +9205,46.024999999994385,-0.06907568512298652 +9206,46.02999999999438,-0.06907553482186574 +9207,46.034999999994376,-0.06907538456620262 +9208,46.03999999999437,-0.06907523435598398 +9209,46.04499999999437,-0.06907508419119664 +9210,46.04999999999436,-0.0690749340718274 +9211,46.05499999999436,-0.0690747839978631 +9212,46.05999999999435,-0.06907463396929053 +9213,46.06499999999435,-0.06907448398609656 +9214,46.069999999994344,-0.06907433404826799 +9215,46.07499999999434,-0.06907418415579165 +9216,46.079999999994335,-0.0690740343086544 +9217,46.08499999999433,-0.06907388450684308 +9218,46.089999999994326,-0.06907373475034453 +9219,46.09499999999432,-0.06907358503914558 +9220,46.09999999999432,-0.06907343537323313 +9221,46.10499999999431,-0.06907328575259399 +9222,46.10999999999431,-0.06907313617721504 +9223,46.1149999999943,-0.06907298664708313 +9224,46.1199999999943,-0.06907283716218515 +9225,46.124999999994294,-0.06907268772250796 +9226,46.12999999999429,-0.06907253832803843 +9227,46.134999999994285,-0.06907238897876346 +9228,46.13999999999428,-0.0690722396746699 +9229,46.144999999994276,-0.06907209041574465 +9230,46.14999999999427,-0.06907194120197462 +9231,46.15499999999427,-0.06907179203334665 +9232,46.15999999999426,-0.06907164290984769 +9233,46.16499999999426,-0.0690714938314646 +9234,46.16999999999425,-0.06907134479818433 +9235,46.17499999999425,-0.06907119580999374 +9236,46.179999999994244,-0.06907104686687977 +9237,46.18499999999424,-0.06907089796882931 +9238,46.189999999994235,-0.06907074911582932 +9239,46.19499999999423,-0.06907060030786667 +9240,46.199999999994226,-0.06907045154492832 +9241,46.20499999999422,-0.06907030282700119 +9242,46.20999999999422,-0.06907015415407221 +9243,46.21499999999421,-0.06907000552612833 +9244,46.21999999999421,-0.06906985694315647 +9245,46.2249999999942,-0.06906970840514359 +9246,46.2299999999942,-0.06906955991207663 +9247,46.234999999994194,-0.06906941146394255 +9248,46.23999999999419,-0.06906926306072828 +9249,46.244999999994185,-0.06906911470242079 +9250,46.24999999999418,-0.06906896638900706 +9251,46.254999999994176,-0.06906881812047404 +9252,46.25999999999417,-0.06906866989680868 +9253,46.26499999999417,-0.069068521717998 +9254,46.26999999999416,-0.06906837358402894 +9255,46.27499999999416,-0.06906822549488849 +9256,46.27999999999415,-0.06906807745056362 +9257,46.28499999999415,-0.06906792945104134 +9258,46.289999999994144,-0.06906778149630863 +9259,46.29499999999414,-0.06906763358635247 +9260,46.299999999994135,-0.06906748572115988 +9261,46.30499999999413,-0.06906733790071787 +9262,46.309999999994126,-0.0690671901250134 +9263,46.31499999999412,-0.06906704239403351 +9264,46.31999999999412,-0.06906689470776521 +9265,46.32499999999411,-0.06906674706619552 +9266,46.32999999999411,-0.06906659946931146 +9267,46.3349999999941,-0.06906645191710002 +9268,46.3399999999941,-0.06906630440954828 +9269,46.344999999994094,-0.06906615694664324 +9270,46.34999999999409,-0.06906600952837193 +9271,46.354999999994085,-0.0690658621547214 +9272,46.35999999999408,-0.06906571482567866 +9273,46.364999999994076,-0.0690655675412308 +9274,46.36999999999407,-0.06906542030136485 +9275,46.37499999999407,-0.06906527310606786 +9276,46.37999999999406,-0.06906512595532689 +9277,46.38499999999406,-0.06906497884912899 +9278,46.38999999999405,-0.06906483178746123 +9279,46.39499999999405,-0.06906468477031066 +9280,46.399999999994044,-0.06906453779766437 +9281,46.40499999999404,-0.06906439086950943 +9282,46.409999999994035,-0.0690642439858329 +9283,46.41499999999403,-0.06906409714662189 +9284,46.419999999994026,-0.06906395035186345 +9285,46.42499999999402,-0.0690638036015447 +9286,46.42999999999402,-0.0690636568956527 +9287,46.43499999999401,-0.06906351023417458 +9288,46.43999999999401,-0.06906336361709739 +9289,46.444999999994,-0.06906321704440829 +9290,46.449999999994,-0.06906307051609434 +9291,46.454999999993994,-0.06906292403214268 +9292,46.45999999999399,-0.0690627775925404 +9293,46.464999999993985,-0.06906263119727463 +9294,46.46999999999398,-0.06906248484633248 +9295,46.474999999993976,-0.06906233853970108 +9296,46.47999999999397,-0.06906219227736754 +9297,46.48499999999397,-0.06906204605931902 +9298,46.48999999999396,-0.06906189988554264 +9299,46.49499999999396,-0.06906175375602552 +9300,46.49999999999395,-0.06906160767075484 +9301,46.50499999999395,-0.06906146162971771 +9302,46.509999999993944,-0.0690613156329013 +9303,46.51499999999394,-0.06906116968029274 +9304,46.519999999993935,-0.06906102377187923 +9305,46.52499999999393,-0.06906087790764787 +9306,46.529999999993926,-0.06906073208758585 +9307,46.53499999999392,-0.06906058631168034 +9308,46.53999999999392,-0.0690604405799185 +9309,46.54499999999391,-0.06906029489228753 +9310,46.54999999999391,-0.06906014924877459 +9311,46.5549999999939,-0.06906000364936683 +9312,46.5599999999939,-0.06905985809405148 +9313,46.564999999993894,-0.0690597125828157 +9314,46.56999999999389,-0.06905956711564669 +9315,46.574999999993885,-0.06905942169253164 +9316,46.57999999999388,-0.06905927631345776 +9317,46.584999999993876,-0.06905913097841224 +9318,46.58999999999387,-0.0690589856873823 +9319,46.59499999999387,-0.06905884044035511 +9320,46.59999999999386,-0.06905869523731793 +9321,46.60499999999386,-0.06905855007825797 +9322,46.60999999999385,-0.06905840496316241 +9323,46.61499999999385,-0.06905825989201851 +9324,46.619999999993844,-0.06905811486481349 +9325,46.62499999999384,-0.06905796988153458 +9326,46.629999999993835,-0.069057824942169 +9327,46.63499999999383,-0.069057680046704 +9328,46.639999999993826,-0.06905753519512682 +9329,46.64499999999382,-0.0690573903874247 +9330,46.64999999999382,-0.0690572456235849 +9331,46.65499999999381,-0.06905710090359464 +9332,46.65999999999381,-0.06905695622744122 +9333,46.6649999999938,-0.06905681159511187 +9334,46.6699999999938,-0.06905666700659384 +9335,46.674999999993794,-0.06905652246187442 +9336,46.67999999999379,-0.06905637796094088 +9337,46.684999999993785,-0.06905623350378047 +9338,46.68999999999378,-0.0690560890903805 +9339,46.694999999993776,-0.06905594472072821 +9340,46.69999999999377,-0.0690558003948109 +9341,46.70499999999377,-0.06905565611261587 +9342,46.70999999999376,-0.06905551187413039 +9343,46.71499999999376,-0.06905536767934177 +9344,46.71999999999375,-0.06905522352823731 +9345,46.72499999999375,-0.06905507942080429 +9346,46.729999999993744,-0.06905493535703003 +9347,46.73499999999374,-0.06905479133690184 +9348,46.739999999993735,-0.06905464736040703 +9349,46.74499999999373,-0.06905450342753292 +9350,46.749999999993726,-0.0690543595382668 +9351,46.75499999999372,-0.06905421569259601 +9352,46.75999999999372,-0.06905407189050787 +9353,46.76499999999371,-0.06905392813198973 +9354,46.76999999999371,-0.06905378441702889 +9355,46.7749999999937,-0.06905364074561272 +9356,46.7799999999937,-0.06905349711772854 +9357,46.784999999993694,-0.06905335353336371 +9358,46.78999999999369,-0.06905320999250554 +9359,46.794999999993685,-0.06905306649514142 +9360,46.79999999999368,-0.06905292304125868 +9361,46.804999999993676,-0.06905277963084469 +9362,46.80999999999367,-0.0690526362638868 +9363,46.81499999999367,-0.06905249294037237 +9364,46.81999999999366,-0.0690523496602888 +9365,46.82499999999366,-0.06905220642362342 +9366,46.82999999999365,-0.06905206323036363 +9367,46.83499999999365,-0.0690519200804968 +9368,46.839999999993644,-0.06905177697401031 +9369,46.84499999999364,-0.06905163391089156 +9370,46.849999999993635,-0.06905149089112791 +9371,46.85499999999363,-0.06905134791470678 +9372,46.859999999993626,-0.06905120498161556 +9373,46.86499999999362,-0.06905106209184163 +9374,46.86999999999362,-0.06905091924537242 +9375,46.87499999999361,-0.06905077644219532 +9376,46.87999999999361,-0.06905063368229773 +9377,46.8849999999936,-0.06905049096566708 +9378,46.8899999999936,-0.0690503482922908 +9379,46.894999999993594,-0.06905020566215628 +9380,46.89999999999359,-0.06905006307525095 +9381,46.904999999993585,-0.06904992053156225 +9382,46.90999999999358,-0.0690497780310776 +9383,46.914999999993576,-0.06904963557378445 +9384,46.91999999999357,-0.06904949315967021 +9385,46.92499999999357,-0.06904935078872235 +9386,46.92999999999356,-0.0690492084609283 +9387,46.93499999999356,-0.0690490661762755 +9388,46.93999999999355,-0.06904892393475143 +9389,46.94499999999355,-0.06904878173634352 +9390,46.949999999993544,-0.06904863958103923 +9391,46.95499999999354,-0.06904849746882603 +9392,46.959999999993535,-0.06904835539969138 +9393,46.96499999999353,-0.06904821337362277 +9394,46.969999999993526,-0.06904807139060765 +9395,46.97499999999352,-0.0690479294506335 +9396,46.97999999999352,-0.06904778755368779 +9397,46.98499999999351,-0.069047645699758 +9398,46.98999999999351,-0.06904750388883166 +9399,46.9949999999935,-0.06904736212089621 +9400,46.9999999999935,-0.06904722039593918 +9401,47.004999999993494,-0.06904707871394804 +9402,47.00999999999349,-0.0690469370749103 +9403,47.014999999993485,-0.06904679547881347 +9404,47.01999999999348,-0.06904665392564505 +9405,47.024999999993476,-0.06904651241539254 +9406,47.02999999999347,-0.06904637094804349 +9407,47.03499999999347,-0.06904622952358538 +9408,47.03999999999346,-0.06904608814200576 +9409,47.04499999999346,-0.06904594680329212 +9410,47.04999999999345,-0.06904580550743203 +9411,47.05499999999345,-0.06904566425441298 +9412,47.059999999993444,-0.06904552304422254 +9413,47.06499999999344,-0.06904538187684822 +9414,47.069999999993435,-0.0690452407522776 +9415,47.07499999999343,-0.06904509967049817 +9416,47.079999999993426,-0.06904495863149754 +9417,47.08499999999342,-0.06904481763526321 +9418,47.08999999999342,-0.06904467668178278 +9419,47.09499999999341,-0.06904453577104377 +9420,47.09999999999341,-0.06904439490303377 +9421,47.1049999999934,-0.06904425407774034 +9422,47.1099999999934,-0.06904411329515103 +9423,47.114999999993394,-0.06904397255525345 +9424,47.11999999999339,-0.06904383185803514 +9425,47.124999999993385,-0.0690436912034837 +9426,47.12999999999338,-0.06904355059158672 +9427,47.134999999993376,-0.06904341002233177 +9428,47.13999999999337,-0.06904326949570645 +9429,47.14499999999337,-0.06904312901169836 +9430,47.14999999999336,-0.06904298857029506 +9431,47.15499999999336,-0.0690428481714842 +9432,47.15999999999335,-0.06904270781525337 +9433,47.16499999999335,-0.06904256750159016 +9434,47.169999999993344,-0.06904242723048219 +9435,47.17499999999334,-0.06904228700191707 +9436,47.179999999993335,-0.06904214681588244 +9437,47.18499999999333,-0.06904200667236592 +9438,47.189999999993326,-0.0690418665713551 +9439,47.19499999999332,-0.06904172651283763 +9440,47.19999999999332,-0.06904158649680114 +9441,47.20499999999331,-0.06904144652323328 +9442,47.20999999999331,-0.06904130659212165 +9443,47.2149999999933,-0.06904116670345394 +9444,47.2199999999933,-0.06904102685721776 +9445,47.224999999993294,-0.06904088705340078 +9446,47.22999999999329,-0.06904074729199064 +9447,47.234999999993285,-0.069040607572975 +9448,47.23999999999328,-0.06904046789634152 +9449,47.244999999993276,-0.06904032826207787 +9450,47.24999999999327,-0.06904018867017168 +9451,47.25499999999327,-0.06904004912061068 +9452,47.25999999999326,-0.0690399096133825 +9453,47.26499999999326,-0.06903977014847482 +9454,47.26999999999325,-0.06903963072587532 +9455,47.27499999999325,-0.0690394913455717 +9456,47.279999999993244,-0.06903935200755164 +9457,47.28499999999324,-0.06903921271180283 +9458,47.289999999993235,-0.06903907345831296 +9459,47.29499999999323,-0.06903893424706972 +9460,47.299999999993226,-0.06903879507806082 +9461,47.30499999999322,-0.06903865595127395 +9462,47.30999999999322,-0.06903851686669683 +9463,47.31499999999321,-0.0690383778243172 +9464,47.31999999999321,-0.06903823882412272 +9465,47.3249999999932,-0.06903809986610114 +9466,47.3299999999932,-0.06903796095024016 +9467,47.334999999993194,-0.06903782207652753 +9468,47.33999999999319,-0.06903768324495095 +9469,47.344999999993185,-0.06903754445549817 +9470,47.34999999999318,-0.06903740570815695 +9471,47.354999999993176,-0.06903726700291496 +9472,47.35999999999317,-0.06903712833975999 +9473,47.36499999999317,-0.06903698971867978 +9474,47.36999999999316,-0.06903685113966207 +9475,47.37499999999316,-0.0690367126026946 +9476,47.37999999999315,-0.06903657410776516 +9477,47.38499999999315,-0.06903643565486148 +9478,47.389999999993144,-0.06903629724397133 +9479,47.39499999999314,-0.06903615887508247 +9480,47.399999999993135,-0.06903602054818267 +9481,47.40499999999313,-0.06903588226325971 +9482,47.409999999993126,-0.06903574402030135 +9483,47.41499999999312,-0.0690356058192954 +9484,47.41999999999312,-0.06903546766022961 +9485,47.42499999999311,-0.06903532954309177 +9486,47.42999999999311,-0.0690351914678697 +9487,47.4349999999931,-0.06903505343455114 +9488,47.4399999999931,-0.06903491544312394 +9489,47.444999999993094,-0.06903477749357587 +9490,47.44999999999309,-0.06903463958589473 +9491,47.454999999993085,-0.06903450172006834 +9492,47.45999999999308,-0.06903436389608449 +9493,47.464999999993076,-0.06903422611393101 +9494,47.46999999999307,-0.06903408837359572 +9495,47.47499999999307,-0.06903395067506642 +9496,47.47999999999306,-0.06903381301833095 +9497,47.48499999999306,-0.06903367540337713 +9498,47.48999999999305,-0.0690335378301928 +9499,47.49499999999305,-0.06903340029876577 +9500,47.499999999993044,-0.0690332628090839 +9501,47.50499999999304,-0.06903312536113501 +9502,47.509999999993035,-0.06903298795490696 +9503,47.51499999999303,-0.06903285059038759 +9504,47.519999999993026,-0.06903271326756476 +9505,47.52499999999302,-0.06903257598642631 +9506,47.52999999999302,-0.06903243874696009 +9507,47.53499999999301,-0.06903230154915399 +9508,47.53999999999301,-0.06903216439299584 +9509,47.544999999993,-0.06903202727847352 +9510,47.549999999993,-0.06903189020557492 +9511,47.554999999992994,-0.06903175317428788 +9512,47.55999999999299,-0.0690316161846003 +9513,47.564999999992985,-0.06903147923650005 +9514,47.56999999999298,-0.06903134232997502 +9515,47.574999999992976,-0.0690312054650131 +9516,47.57999999999297,-0.06903106864160216 +9517,47.58499999999297,-0.06903093185973012 +9518,47.58999999999296,-0.06903079511938487 +9519,47.59499999999296,-0.06903065842055431 +9520,47.59999999999295,-0.06903052176322633 +9521,47.60499999999295,-0.06903038514738885 +9522,47.609999999992944,-0.06903024857302979 +9523,47.61499999999294,-0.06903011204013705 +9524,47.619999999992935,-0.06902997554869857 +9525,47.62499999999293,-0.06902983909870224 +9526,47.629999999992926,-0.069029702690136 +9527,47.63499999999292,-0.06902956632298778 +9528,47.63999999999292,-0.0690294299972455 +9529,47.64499999999291,-0.06902929371289711 +9530,47.64999999999291,-0.06902915746993053 +9531,47.6549999999929,-0.06902902126833371 +9532,47.6599999999929,-0.0690288851080946 +9533,47.664999999992894,-0.06902874898920115 +9534,47.66999999999289,-0.0690286129116413 +9535,47.674999999992885,-0.069028476875403 +9536,47.67999999999288,-0.06902834088047421 +9537,47.684999999992876,-0.06902820492684292 +9538,47.68999999999287,-0.06902806901449707 +9539,47.694999999992866,-0.06902793314342462 +9540,47.69999999999286,-0.06902779731361355 +9541,47.70499999999286,-0.06902766152505184 +9542,47.70999999999285,-0.06902752577772746 +9543,47.71499999999285,-0.0690273900716284 +9544,47.719999999992844,-0.06902725440674265 +9545,47.72499999999284,-0.06902711878305817 +9546,47.729999999992835,-0.06902698320056298 +9547,47.73499999999283,-0.06902684765924508 +9548,47.739999999992826,-0.06902671215909244 +9549,47.74499999999282,-0.06902657670009307 +9550,47.749999999992816,-0.069026441282235 +9551,47.75499999999281,-0.06902630590550621 +9552,47.75999999999281,-0.06902617056989471 +9553,47.7649999999928,-0.06902603527538854 +9554,47.7699999999928,-0.06902590002197569 +9555,47.774999999992794,-0.0690257648096442 +9556,47.77999999999279,-0.06902562963838209 +9557,47.784999999992785,-0.06902549450817738 +9558,47.78999999999278,-0.06902535941901812 +9559,47.794999999992775,-0.06902522437089233 +9560,47.79999999999277,-0.06902508936378805 +9561,47.804999999992766,-0.06902495439769334 +9562,47.80999999999276,-0.06902481947259621 +9563,47.81499999999276,-0.06902468458848474 +9564,47.81999999999275,-0.06902454974534694 +9565,47.82499999999275,-0.06902441494317092 +9566,47.829999999992744,-0.0690242801819447 +9567,47.83499999999274,-0.06902414546165636 +9568,47.839999999992735,-0.06902401078229396 +9569,47.84499999999273,-0.06902387614384556 +9570,47.849999999992725,-0.06902374154629924 +9571,47.85499999999272,-0.06902360698964308 +9572,47.859999999992716,-0.06902347247386514 +9573,47.86499999999271,-0.06902333799895352 +9574,47.86999999999271,-0.06902320356489629 +9575,47.8749999999927,-0.06902306917168155 +9576,47.8799999999927,-0.06902293481929739 +9577,47.884999999992694,-0.06902280050773191 +9578,47.88999999999269,-0.06902266623697319 +9579,47.894999999992685,-0.06902253200700934 +9580,47.89999999999268,-0.06902239781782847 +9581,47.904999999992675,-0.06902226366941867 +9582,47.90999999999267,-0.06902212956176808 +9583,47.914999999992666,-0.06902199549486482 +9584,47.91999999999266,-0.06902186146869696 +9585,47.92499999999266,-0.06902172748325267 +9586,47.92999999999265,-0.06902159353852004 +9587,47.93499999999265,-0.06902145963448722 +9588,47.939999999992644,-0.06902132577114233 +9589,47.94499999999264,-0.06902119194847352 +9590,47.949999999992635,-0.0690210581664689 +9591,47.95499999999263,-0.06902092442511663 +9592,47.959999999992625,-0.06902079072440487 +9593,47.96499999999262,-0.06902065706432173 +9594,47.969999999992616,-0.06902052344485539 +9595,47.97499999999261,-0.06902038986599399 +9596,47.97999999999261,-0.0690202563277257 +9597,47.9849999999926,-0.06902012283003867 +9598,47.9899999999926,-0.06901998937292106 +9599,47.994999999992594,-0.06901985595636105 +9600,47.99999999999259,-0.06901972258034682 +9601,48.004999999992584,-0.06901958924486652 +9602,48.00999999999258,-0.06901945594990835 +9603,48.014999999992575,-0.06901932269546047 +9604,48.01999999999257,-0.06901918948151108 +9605,48.024999999992566,-0.06901905630804835 +9606,48.02999999999256,-0.06901892317506049 +9607,48.03499999999256,-0.06901879008253568 +9608,48.03999999999255,-0.06901865703046214 +9609,48.04499999999255,-0.06901852401882805 +9610,48.049999999992544,-0.06901839104762161 +9611,48.05499999999254,-0.06901825811683103 +9612,48.059999999992534,-0.06901812522644454 +9613,48.06499999999253,-0.06901799237645033 +9614,48.069999999992525,-0.06901785956683662 +9615,48.07499999999252,-0.06901772679759165 +9616,48.079999999992516,-0.06901759406870363 +9617,48.08499999999251,-0.06901746138016078 +9618,48.08999999999251,-0.06901732873195134 +9619,48.0949999999925,-0.06901719612406354 +9620,48.0999999999925,-0.06901706355648562 +9621,48.10499999999249,-0.06901693102920582 +9622,48.10999999999249,-0.06901679854221239 +9623,48.114999999992484,-0.06901666609549355 +9624,48.11999999999248,-0.06901653368903757 +9625,48.124999999992475,-0.06901640132283271 +9626,48.12999999999247,-0.06901626899686722 +9627,48.134999999992466,-0.06901613671112934 +9628,48.13999999999246,-0.06901600446560735 +9629,48.14499999999246,-0.06901587226028953 +9630,48.14999999999245,-0.06901574009516413 +9631,48.15499999999245,-0.06901560797021944 +9632,48.15999999999244,-0.06901547588544371 +9633,48.16499999999244,-0.06901534384082524 +9634,48.169999999992434,-0.06901521183635231 +9635,48.17499999999243,-0.0690150798720132 +9636,48.179999999992425,-0.06901494794779621 +9637,48.18499999999242,-0.06901481606368962 +9638,48.189999999992416,-0.06901468421968171 +9639,48.19499999999241,-0.06901455241576082 +9640,48.19999999999241,-0.06901442065191524 +9641,48.2049999999924,-0.06901428892813324 +9642,48.2099999999924,-0.06901415724440318 +9643,48.21499999999239,-0.06901402560071335 +9644,48.21999999999239,-0.06901389399705204 +9645,48.224999999992384,-0.06901376243340761 +9646,48.22999999999238,-0.06901363090976835 +9647,48.234999999992375,-0.0690134994261226 +9648,48.23999999999237,-0.0690133679824587 +9649,48.244999999992366,-0.06901323657876496 +9650,48.24999999999236,-0.06901310521502972 +9651,48.25499999999236,-0.06901297389124134 +9652,48.25999999999235,-0.06901284260738813 +9653,48.26499999999235,-0.06901271136345843 +9654,48.26999999999234,-0.06901258015944063 +9655,48.27499999999234,-0.06901244899532305 +9656,48.279999999992334,-0.06901231787109406 +9657,48.28499999999233,-0.069012186786742 +9658,48.289999999992325,-0.06901205574225525 +9659,48.29499999999232,-0.06901192473762216 +9660,48.299999999992316,-0.06901179377283108 +9661,48.30499999999231,-0.06901166284787043 +9662,48.30999999999231,-0.06901153196272854 +9663,48.3149999999923,-0.0690114011173938 +9664,48.3199999999923,-0.0690112703118546 +9665,48.32499999999229,-0.06901113954609933 +9666,48.32999999999229,-0.06901100882011636 +9667,48.334999999992284,-0.06901087813389409 +9668,48.33999999999228,-0.06901074748742089 +9669,48.344999999992275,-0.06901061688068517 +9670,48.34999999999227,-0.06901048631367535 +9671,48.354999999992266,-0.0690103557863798 +9672,48.35999999999226,-0.06901022529878696 +9673,48.36499999999226,-0.06901009485088523 +9674,48.36999999999225,-0.069009964442663 +9675,48.37499999999225,-0.0690098340741087 +9676,48.37999999999224,-0.06900970374521075 +9677,48.38499999999224,-0.06900957345595757 +9678,48.389999999992234,-0.06900944320633759 +9679,48.39499999999223,-0.06900931299633925 +9680,48.399999999992225,-0.06900918282595096 +9681,48.40499999999222,-0.06900905269516118 +9682,48.409999999992216,-0.06900892260395833 +9683,48.41499999999221,-0.06900879255233085 +9684,48.41999999999221,-0.06900866254026719 +9685,48.4249999999922,-0.06900853256775581 +9686,48.4299999999922,-0.06900840263478514 +9687,48.43499999999219,-0.06900827274134366 +9688,48.43999999999219,-0.06900814288741981 +9689,48.444999999992184,-0.06900801307300204 +9690,48.44999999999218,-0.06900788329807886 +9691,48.454999999992175,-0.06900775356263869 +9692,48.45999999999217,-0.06900762386667002 +9693,48.464999999992166,-0.06900749421016132 +9694,48.46999999999216,-0.06900736459310107 +9695,48.47499999999216,-0.06900723501547776 +9696,48.47999999999215,-0.06900710547727987 +9697,48.48499999999215,-0.06900697597849587 +9698,48.48999999999214,-0.06900684651911425 +9699,48.49499999999214,-0.06900671709912354 +9700,48.499999999992134,-0.06900658771851219 +9701,48.50499999999213,-0.06900645837726875 +9702,48.509999999992125,-0.06900632907538168 +9703,48.51499999999212,-0.0690061998128395 +9704,48.519999999992116,-0.06900607058963072 +9705,48.52499999999211,-0.06900594140574386 +9706,48.52999999999211,-0.06900581226116742 +9707,48.5349999999921,-0.06900568315588994 +9708,48.5399999999921,-0.06900555408989992 +9709,48.54499999999209,-0.0690054250631859 +9710,48.54999999999209,-0.06900529607573641 +9711,48.554999999992084,-0.06900516712753998 +9712,48.55999999999208,-0.06900503821858513 +9713,48.564999999992075,-0.06900490934886043 +9714,48.56999999999207,-0.06900478051835437 +9715,48.574999999992066,-0.06900465172705555 +9716,48.57999999999206,-0.0690045229749525 +9717,48.58499999999206,-0.06900439426203377 +9718,48.58999999999205,-0.06900426558828791 +9719,48.59499999999205,-0.06900413695370347 +9720,48.59999999999204,-0.06900400835826902 +9721,48.60499999999204,-0.06900387980197313 +9722,48.609999999992034,-0.06900375128480435 +9723,48.61499999999203,-0.06900362280675126 +9724,48.619999999992025,-0.06900349436780245 +9725,48.62499999999202,-0.06900336596794647 +9726,48.629999999992016,-0.06900323760717192 +9727,48.63499999999201,-0.06900310928546736 +9728,48.63999999999201,-0.0690029810028214 +9729,48.644999999992,-0.06900285275922262 +9730,48.649999999992,-0.06900272455465963 +9731,48.65499999999199,-0.069002596389121 +9732,48.65999999999199,-0.06900246826259533 +9733,48.664999999991984,-0.06900234017507124 +9734,48.66999999999198,-0.06900221212653732 +9735,48.674999999991975,-0.06900208411698219 +9736,48.67999999999197,-0.06900195614639446 +9737,48.684999999991966,-0.06900182821476272 +9738,48.68999999999196,-0.06900170032207564 +9739,48.69499999999196,-0.0690015724683218 +9740,48.69999999999195,-0.06900144465348983 +9741,48.70499999999195,-0.06900131687756837 +9742,48.70999999999194,-0.06900118914054605 +9743,48.71499999999194,-0.06900106144241148 +9744,48.719999999991934,-0.06900093378315333 +9745,48.72499999999193,-0.06900080616276023 +9746,48.729999999991925,-0.06900067858122082 +9747,48.73499999999192,-0.06900055103852375 +9748,48.739999999991916,-0.06900042353465766 +9749,48.74499999999191,-0.06900029606961121 +9750,48.74999999999191,-0.06900016864337306 +9751,48.7549999999919,-0.06900004125593186 +9752,48.7599999999919,-0.06899991390727629 +9753,48.76499999999189,-0.068999786597395 +9754,48.76999999999189,-0.06899965932627668 +9755,48.774999999991884,-0.06899953209390997 +9756,48.77999999999188,-0.06899940490028356 +9757,48.784999999991875,-0.06899927774538613 +9758,48.78999999999187,-0.06899915062920636 +9759,48.794999999991866,-0.06899902355173294 +9760,48.79999999999186,-0.06899889651295457 +9761,48.80499999999186,-0.06899876951285992 +9762,48.80999999999185,-0.06899864255143769 +9763,48.81499999999185,-0.06899851562867658 +9764,48.81999999999184,-0.06899838874456528 +9765,48.82499999999184,-0.0689982618990925 +9766,48.829999999991834,-0.06899813509224696 +9767,48.83499999999183,-0.06899800832401735 +9768,48.839999999991825,-0.0689978815943924 +9769,48.84499999999182,-0.06899775490336081 +9770,48.849999999991816,-0.06899762825091134 +9771,48.85499999999181,-0.06899750163703265 +9772,48.85999999999181,-0.06899737506171351 +9773,48.8649999999918,-0.06899724852494266 +9774,48.8699999999918,-0.06899712202670878 +9775,48.87499999999179,-0.06899699556700066 +9776,48.87999999999179,-0.068996869145807 +9777,48.884999999991784,-0.06899674276311656 +9778,48.88999999999178,-0.06899661641891808 +9779,48.894999999991775,-0.0689964901132003 +9780,48.89999999999177,-0.068996363845952 +9781,48.904999999991766,-0.06899623761716189 +9782,48.90999999999176,-0.06899611142681877 +9783,48.91499999999176,-0.06899598527491138 +9784,48.91999999999175,-0.06899585916142847 +9785,48.92499999999175,-0.06899573308635884 +9786,48.92999999999174,-0.06899560704969124 +9787,48.93499999999174,-0.06899548105141443 +9788,48.939999999991734,-0.06899535509151722 +9789,48.94499999999173,-0.06899522916998836 +9790,48.949999999991725,-0.06899510328681666 +9791,48.95499999999172,-0.06899497744199089 +9792,48.959999999991716,-0.06899485163549983 +9793,48.96499999999171,-0.06899472586733228 +9794,48.96999999999171,-0.06899460013747703 +9795,48.9749999999917,-0.06899447444592291 +9796,48.9799999999917,-0.06899434879265869 +9797,48.98499999999169,-0.06899422317767316 +9798,48.98999999999169,-0.06899409760095518 +9799,48.994999999991684,-0.06899397206249351 +9800,48.99999999999168,-0.06899384656227699 +9801,49.004999999991675,-0.06899372110029442 +9802,49.00999999999167,-0.06899359567653464 +9803,49.014999999991666,-0.06899347029098647 +9804,49.01999999999166,-0.06899334494363872 +9805,49.02499999999166,-0.06899321963448024 +9806,49.02999999999165,-0.06899309436349985 +9807,49.03499999999165,-0.0689929691306864 +9808,49.03999999999164,-0.06899284393602871 +9809,49.04499999999164,-0.06899271877951563 +9810,49.049999999991634,-0.068992593661136 +9811,49.05499999999163,-0.06899246858087868 +9812,49.059999999991625,-0.06899234353873251 +9813,49.06499999999162,-0.06899221853468636 +9814,49.069999999991616,-0.06899209356872908 +9815,49.07499999999161,-0.06899196864084953 +9816,49.07999999999161,-0.06899184375103655 +9817,49.0849999999916,-0.06899171889927905 +9818,49.0899999999916,-0.06899159408556588 +9819,49.09499999999159,-0.06899146930988592 +9820,49.09999999999159,-0.06899134457222802 +9821,49.104999999991584,-0.0689912198725811 +9822,49.10999999999158,-0.06899109521093401 +9823,49.114999999991575,-0.06899097058727564 +9824,49.11999999999157,-0.0689908460015949 +9825,49.124999999991566,-0.06899072145388067 +9826,49.12999999999156,-0.06899059694412184 +9827,49.13499999999156,-0.0689904724723073 +9828,49.13999999999155,-0.06899034803842598 +9829,49.14499999999155,-0.06899022364246678 +9830,49.14999999999154,-0.06899009928441857 +9831,49.15499999999154,-0.0689899749642703 +9832,49.159999999991534,-0.06898985068201087 +9833,49.16499999999153,-0.0689897264376292 +9834,49.169999999991525,-0.06898960223111421 +9835,49.17499999999152,-0.06898947806245481 +9836,49.179999999991516,-0.06898935393163994 +9837,49.18499999999151,-0.06898922983865853 +9838,49.18999999999151,-0.06898910578349951 +9839,49.1949999999915,-0.06898898176615181 +9840,49.1999999999915,-0.06898885778660437 +9841,49.20499999999149,-0.06898873384484613 +9842,49.20999999999149,-0.06898860994086606 +9843,49.214999999991484,-0.06898848607465306 +9844,49.21999999999148,-0.06898836224619613 +9845,49.224999999991475,-0.0689882384554842 +9846,49.22999999999147,-0.06898811470250622 +9847,49.234999999991466,-0.06898799098725117 +9848,49.23999999999146,-0.06898786730970799 +9849,49.24499999999146,-0.06898774366986567 +9850,49.24999999999145,-0.06898762006771317 +9851,49.25499999999145,-0.06898749650323946 +9852,49.25999999999144,-0.06898737297643351 +9853,49.26499999999144,-0.0689872494872843 +9854,49.269999999991434,-0.06898712603578083 +9855,49.27499999999143,-0.06898700262191207 +9856,49.279999999991425,-0.06898687924566702 +9857,49.28499999999142,-0.06898675590703465 +9858,49.289999999991416,-0.06898663260600396 +9859,49.29499999999141,-0.06898650934256398 +9860,49.29999999999141,-0.06898638611670367 +9861,49.3049999999914,-0.06898626292841205 +9862,49.3099999999914,-0.06898613977767812 +9863,49.31499999999139,-0.06898601666449089 +9864,49.31999999999139,-0.06898589358883939 +9865,49.324999999991384,-0.06898577055071262 +9866,49.32999999999138,-0.06898564755009959 +9867,49.334999999991375,-0.06898552458698934 +9868,49.33999999999137,-0.06898540166137089 +9869,49.344999999991366,-0.06898527877323327 +9870,49.34999999999136,-0.0689851559225655 +9871,49.35499999999136,-0.06898503310935662 +9872,49.35999999999135,-0.06898491033359568 +9873,49.36499999999135,-0.0689847875952717 +9874,49.36999999999134,-0.06898466489437374 +9875,49.37499999999134,-0.06898454223089084 +9876,49.379999999991334,-0.06898441960481205 +9877,49.38499999999133,-0.06898429701612642 +9878,49.389999999991325,-0.06898417446482301 +9879,49.39499999999132,-0.06898405195089087 +9880,49.399999999991316,-0.06898392947431908 +9881,49.40499999999131,-0.06898380703509668 +9882,49.40999999999131,-0.06898368463321278 +9883,49.4149999999913,-0.0689835622686564 +9884,49.4199999999913,-0.06898343994141665 +9885,49.42499999999129,-0.06898331765148258 +9886,49.42999999999129,-0.06898319539884329 +9887,49.434999999991284,-0.06898307318348786 +9888,49.43999999999128,-0.06898295100540539 +9889,49.444999999991275,-0.06898282886458493 +9890,49.44999999999127,-0.0689827067610156 +9891,49.454999999991266,-0.06898258469468652 +9892,49.45999999999126,-0.06898246266558672 +9893,49.46499999999126,-0.06898234067370537 +9894,49.46999999999125,-0.06898221871903154 +9895,49.47499999999125,-0.06898209680155433 +9896,49.47999999999124,-0.06898197492126289 +9897,49.48499999999124,-0.0689818530781463 +9898,49.489999999991234,-0.06898173127219369 +9899,49.49499999999123,-0.06898160950339417 +9900,49.499999999991225,-0.06898148777173688 +9901,49.50499999999122,-0.06898136607721093 +9902,49.509999999991216,-0.06898124441980547 +9903,49.51499999999121,-0.0689811227995096 +9904,49.51999999999121,-0.06898100121631248 +9905,49.5249999999912,-0.06898087967020324 +9906,49.5299999999912,-0.06898075816117102 +9907,49.53499999999119,-0.06898063668920497 +9908,49.53999999999119,-0.06898051525429423 +9909,49.544999999991184,-0.06898039385642797 +9910,49.54999999999118,-0.06898027249559531 +9911,49.554999999991175,-0.06898015117178544 +9912,49.55999999999117,-0.0689800298849875 +9913,49.564999999991166,-0.06897990863519066 +9914,49.56999999999116,-0.06897978742238407 +9915,49.57499999999116,-0.06897966624655694 +9916,49.57999999999115,-0.06897954510769838 +9917,49.58499999999115,-0.06897942400579762 +9918,49.58999999999114,-0.06897930294084383 +9919,49.59499999999114,-0.06897918191282615 +9920,49.599999999991134,-0.06897906092173381 +9921,49.60499999999113,-0.06897893996755596 +9922,49.609999999991125,-0.06897881905028182 +9923,49.61499999999112,-0.06897869816990057 +9924,49.619999999991116,-0.0689785773264014 +9925,49.62499999999111,-0.06897845651977354 +9926,49.62999999999111,-0.06897833575000614 +9927,49.6349999999911,-0.06897821501708845 +9928,49.6399999999911,-0.06897809432100965 +9929,49.64499999999109,-0.06897797366175897 +9930,49.64999999999109,-0.0689778530393256 +9931,49.654999999991084,-0.0689777324536988 +9932,49.65999999999108,-0.06897761190486777 +9933,49.664999999991075,-0.06897749139282172 +9934,49.66999999999107,-0.06897737091754988 +9935,49.674999999991066,-0.06897725047904149 +9936,49.67999999999106,-0.06897713007728577 +9937,49.68499999999106,-0.06897700971227197 +9938,49.68999999999105,-0.0689768893839893 +9939,49.69499999999105,-0.06897676909242703 +9940,49.69999999999104,-0.0689766488375744 +9941,49.70499999999104,-0.06897652861942066 +9942,49.709999999991034,-0.06897640843795506 +9943,49.71499999999103,-0.06897628829316683 +9944,49.719999999991025,-0.06897616818504526 +9945,49.72499999999102,-0.06897604811357959 +9946,49.729999999991016,-0.06897592807875907 +9947,49.73499999999101,-0.06897580808057299 +9948,49.73999999999101,-0.06897568811901061 +9949,49.744999999991,-0.06897556819406121 +9950,49.749999999991,-0.06897544830571406 +9951,49.75499999999099,-0.06897532845395843 +9952,49.75999999999099,-0.0689752086387836 +9953,49.764999999990984,-0.06897508886017886 +9954,49.76999999999098,-0.0689749691181335 +9955,49.774999999990975,-0.0689748494126368 +9956,49.77999999999097,-0.06897472974367808 +9957,49.784999999990966,-0.06897461011124657 +9958,49.78999999999096,-0.06897449051533164 +9959,49.79499999999096,-0.06897437095592256 +9960,49.79999999999095,-0.06897425143300863 +9961,49.80499999999095,-0.06897413194657918 +9962,49.80999999999094,-0.06897401249662351 +9963,49.81499999999094,-0.06897389308313091 +9964,49.819999999990934,-0.06897377370609074 +9965,49.82499999999093,-0.06897365436549228 +9966,49.829999999990925,-0.06897353506132486 +9967,49.83499999999092,-0.06897341579357784 +9968,49.839999999990916,-0.06897329656224052 +9969,49.84499999999091,-0.06897317736730223 +9970,49.84999999999091,-0.06897305820875231 +9971,49.8549999999909,-0.0689729390865801 +9972,49.8599999999909,-0.06897282000077493 +9973,49.86499999999089,-0.06897270095132617 +9974,49.86999999999089,-0.06897258193822313 +9975,49.874999999990884,-0.06897246296145518 +9976,49.87999999999088,-0.06897234402101168 +9977,49.884999999990875,-0.06897222511688197 +9978,49.88999999999087,-0.06897210624905542 +9979,49.894999999990866,-0.06897198741752138 +9980,49.89999999999086,-0.06897186862226923 +9981,49.90499999999086,-0.06897174986328833 +9982,49.90999999999085,-0.06897163114056803 +9983,49.91499999999085,-0.06897151245409773 +9984,49.91999999999084,-0.0689713938038668 +9985,49.92499999999084,-0.06897127518986462 +9986,49.929999999990834,-0.06897115661208057 +9987,49.93499999999083,-0.06897103807050405 +9988,49.939999999990825,-0.06897091956512444 +9989,49.94499999999082,-0.06897080109593111 +9990,49.949999999990816,-0.06897068266291348 +9991,49.95499999999081,-0.06897056426606094 +9992,49.959999999990806,-0.06897044590536289 +9993,49.9649999999908,-0.06897032758080872 +9994,49.9699999999908,-0.06897020929238785 +9995,49.97499999999079,-0.06897009104008969 +9996,49.97999999999079,-0.06896997282390364 +9997,49.984999999990784,-0.06896985464381915 +9998,49.98999999999078,-0.0689697364998256 +9999,49.994999999990775,-0.06896961839191242 +10000,49.99999999999077,-0.06896950032006904 +10001,50.004999999990766,-0.0689693822842849 +10002,50.00999999999076,-0.0689692642845494 +10003,50.014999999990756,-0.06896914632085199 +10004,50.01999999999075,-0.06896902839318211 +10005,50.02499999999075,-0.0689689105015292 +10006,50.02999999999074,-0.06896879264588268 +10007,50.03499999999074,-0.06896867482623203 +10008,50.039999999990734,-0.06896855704256667 +10009,50.04499999999073,-0.06896843929487606 +10010,50.049999999990725,-0.06896832158314967 +10011,50.05499999999072,-0.06896820390737692 +10012,50.059999999990715,-0.06896808626754729 +10013,50.06499999999071,-0.06896796866365025 +10014,50.069999999990706,-0.06896785109567526 +10015,50.0749999999907,-0.06896773356361177 +10016,50.0799999999907,-0.06896761606744929 +10017,50.08499999999069,-0.06896749860717727 +10018,50.08999999999069,-0.06896738118278517 +10019,50.094999999990684,-0.0689672637942625 +10020,50.09999999999068,-0.06896714644159875 +10021,50.104999999990675,-0.06896702912478338 +10022,50.10999999999067,-0.06896691184380589 +10023,50.114999999990665,-0.06896679459865576 +10024,50.11999999999066,-0.06896667738932251 +10025,50.124999999990656,-0.06896656021579563 +10026,50.12999999999065,-0.06896644307806461 +10027,50.13499999999065,-0.06896632597611897 +10028,50.13999999999064,-0.06896620890994822 +10029,50.14499999999064,-0.06896609187954184 +10030,50.149999999990634,-0.06896597488488937 +10031,50.15499999999063,-0.0689658579259803 +10032,50.159999999990625,-0.06896574100280418 +10033,50.16499999999062,-0.06896562411535051 +10034,50.169999999990615,-0.06896550726360882 +10035,50.17499999999061,-0.06896539044756865 +10036,50.179999999990606,-0.06896527366721952 +10037,50.1849999999906,-0.06896515692255097 +10038,50.1899999999906,-0.06896504021355251 +10039,50.19499999999059,-0.06896492354021372 +10040,50.19999999999059,-0.06896480690252411 +10041,50.204999999990584,-0.06896469030047325 +10042,50.20999999999058,-0.06896457373405067 +10043,50.214999999990575,-0.06896445720324593 +10044,50.21999999999057,-0.06896434070804856 +10045,50.224999999990565,-0.06896422424844817 +10046,50.22999999999056,-0.06896410782443427 +10047,50.234999999990556,-0.06896399143599644 +10048,50.23999999999055,-0.06896387508312425 +10049,50.24499999999055,-0.06896375876580728 +10050,50.24999999999054,-0.06896364248403507 +10051,50.25499999999054,-0.06896352623779721 +10052,50.259999999990534,-0.06896341002708328 +10053,50.26499999999053,-0.06896329385188286 +10054,50.269999999990524,-0.06896317771218556 +10055,50.27499999999052,-0.06896306160798092 +10056,50.279999999990515,-0.06896294553925855 +10057,50.28499999999051,-0.06896282950600804 +10058,50.289999999990506,-0.068962713508219 +10059,50.2949999999905,-0.068962597545881 +10060,50.2999999999905,-0.06896248161898366 +10061,50.30499999999049,-0.06896236572751659 +10062,50.30999999999049,-0.06896224987146937 +10063,50.314999999990484,-0.06896213405083164 +10064,50.31999999999048,-0.06896201826559299 +10065,50.324999999990474,-0.06896190251574305 +10066,50.32999999999047,-0.06896178680127144 +10067,50.334999999990465,-0.06896167112216776 +10068,50.33999999999046,-0.06896155547842166 +10069,50.344999999990456,-0.06896143987002275 +10070,50.34999999999045,-0.06896132429696067 +10071,50.35499999999045,-0.06896120875922504 +10072,50.35999999999044,-0.06896109325680552 +10073,50.36499999999044,-0.06896097778969174 +10074,50.36999999999043,-0.06896086235787333 +10075,50.37499999999043,-0.06896074696133994 +10076,50.379999999990424,-0.06896063160008122 +10077,50.38499999999042,-0.06896051627408682 +10078,50.389999999990415,-0.0689604009833464 +10079,50.39499999999041,-0.0689602857278496 +10080,50.399999999990406,-0.06896017050758609 +10081,50.4049999999904,-0.06896005532254552 +10082,50.4099999999904,-0.06895994017271759 +10083,50.41499999999039,-0.06895982505809192 +10084,50.41999999999039,-0.06895970997865823 +10085,50.42499999999038,-0.06895959493440616 +10086,50.42999999999038,-0.0689594799253254 +10087,50.434999999990374,-0.06895936495140562 +10088,50.43999999999037,-0.0689592500126365 +10089,50.444999999990365,-0.06895913510900775 +10090,50.44999999999036,-0.06895902024050904 +10091,50.454999999990356,-0.06895890540713007 +10092,50.45999999999035,-0.06895879060886051 +10093,50.46499999999035,-0.06895867584569008 +10094,50.46999999999034,-0.06895856111760848 +10095,50.47499999999034,-0.06895844642460541 +10096,50.47999999999033,-0.06895833176667057 +10097,50.48499999999033,-0.06895821714379367 +10098,50.489999999990324,-0.06895810255596443 +10099,50.49499999999032,-0.06895798800317256 +10100,50.499999999990315,-0.06895787348540777 +10101,50.50499999999031,-0.06895775900265978 +10102,50.509999999990306,-0.06895764455491833 +10103,50.5149999999903,-0.06895753014217314 +10104,50.5199999999903,-0.06895741576441393 +10105,50.52499999999029,-0.06895730142163044 +10106,50.52999999999029,-0.06895718711381238 +10107,50.53499999999028,-0.06895707284094953 +10108,50.53999999999028,-0.0689569586030316 +10109,50.544999999990274,-0.06895684440004834 +10110,50.54999999999027,-0.06895673023198949 +10111,50.554999999990265,-0.06895661609884483 +10112,50.55999999999026,-0.06895650200060408 +10113,50.564999999990256,-0.068956387937257 +10114,50.56999999999025,-0.06895627390879336 +10115,50.57499999999025,-0.06895615991520292 +10116,50.57999999999024,-0.06895604595647542 +10117,50.58499999999024,-0.06895593203260066 +10118,50.58999999999023,-0.06895581814356838 +10119,50.59499999999023,-0.06895570428936837 +10120,50.599999999990224,-0.0689555904699904 +10121,50.60499999999022,-0.06895547668542425 +10122,50.609999999990215,-0.06895536293565968 +10123,50.61499999999021,-0.0689552492206865 +10124,50.619999999990206,-0.0689551355404945 +10125,50.6249999999902,-0.06895502189507345 +10126,50.6299999999902,-0.06895490828441316 +10127,50.63499999999019,-0.0689547947085034 +10128,50.63999999999019,-0.06895468116733398 +10129,50.64499999999018,-0.06895456766089472 +10130,50.64999999999018,-0.06895445418917541 +10131,50.654999999990174,-0.06895434075216585 +10132,50.65999999999017,-0.06895422734985586 +10133,50.664999999990165,-0.06895411398223525 +10134,50.66999999999016,-0.06895400064929381 +10135,50.674999999990156,-0.06895388735102141 +10136,50.67999999999015,-0.06895377408740783 +10137,50.68499999999015,-0.0689536608584429 +10138,50.68999999999014,-0.06895354766411646 +10139,50.69499999999014,-0.06895343450441832 +10140,50.69999999999013,-0.06895332137933835 +10141,50.70499999999013,-0.06895320828886635 +10142,50.709999999990124,-0.06895309523299217 +10143,50.71499999999012,-0.06895298221170565 +10144,50.719999999990115,-0.06895286922499662 +10145,50.72499999999011,-0.06895275627285494 +10146,50.729999999990106,-0.06895264335527047 +10147,50.7349999999901,-0.06895253047223306 +10148,50.7399999999901,-0.06895241762373254 +10149,50.74499999999009,-0.06895230480975881 +10150,50.74999999999009,-0.06895219203030169 +10151,50.75499999999008,-0.06895207928535106 +10152,50.75999999999008,-0.06895196657489679 +10153,50.764999999990074,-0.06895185389892874 +10154,50.76999999999007,-0.0689517412574368 +10155,50.774999999990065,-0.06895162865041084 +10156,50.77999999999006,-0.06895151607784072 +10157,50.784999999990056,-0.06895140353971635 +10158,50.78999999999005,-0.0689512910360276 +10159,50.79499999999005,-0.06895117856676435 +10160,50.79999999999004,-0.06895106613191648 +10161,50.80499999999004,-0.0689509537314739 +10162,50.80999999999003,-0.06895084136542651 +10163,50.81499999999003,-0.0689507290337642 +10164,50.819999999990024,-0.06895061673647687 +10165,50.82499999999002,-0.06895050447355443 +10166,50.829999999990015,-0.0689503922449868 +10167,50.83499999999001,-0.06895028005076384 +10168,50.839999999990006,-0.0689501678908755 +10169,50.84499999999,-0.0689500557653117 +10170,50.84999999999,-0.06894994367406236 +10171,50.85499999998999,-0.06894983161711737 +10172,50.85999999998999,-0.06894971959446668 +10173,50.86499999998998,-0.06894960760610021 +10174,50.86999999998998,-0.06894949565200788 +10175,50.874999999989974,-0.06894938373217964 +10176,50.87999999998997,-0.06894927184660542 +10177,50.884999999989965,-0.06894915999527514 +10178,50.88999999998996,-0.06894904817817876 +10179,50.894999999989956,-0.06894893639530622 +10180,50.89999999998995,-0.06894882464664746 +10181,50.90499999998995,-0.06894871293219244 +10182,50.90999999998994,-0.0689486012519311 +10183,50.91499999998994,-0.0689484896058534 +10184,50.91999999998993,-0.06894837799394929 +10185,50.92499999998993,-0.06894826641620876 +10186,50.929999999989924,-0.06894815487262174 +10187,50.93499999998992,-0.0689480433631782 +10188,50.939999999989915,-0.06894793188786813 +10189,50.94499999998991,-0.06894782044668148 +10190,50.949999999989906,-0.06894770903960823 +10191,50.9549999999899,-0.06894759766663837 +10192,50.9599999999899,-0.06894748632776188 +10193,50.96499999998989,-0.06894737502296873 +10194,50.96999999998989,-0.0689472637522489 +10195,50.97499999998988,-0.0689471525155924 +10196,50.97999999998988,-0.0689470413129892 +10197,50.984999999989874,-0.06894693014442932 +10198,50.98999999998987,-0.06894681900990274 +10199,50.994999999989865,-0.06894670790939947 +10200,50.99999999998986,-0.0689465968429095 +10201,51.004999999989856,-0.06894648581042284 +10202,51.00999999998985,-0.0689463748119295 +10203,51.01499999998985,-0.0689462638474195 +10204,51.01999999998984,-0.06894615291688284 +10205,51.02499999998984,-0.06894604202030954 +10206,51.02999999998983,-0.06894593115768963 +10207,51.03499999998983,-0.06894582032901311 +10208,51.039999999989824,-0.06894570953427004 +10209,51.04499999998982,-0.06894559877345043 +10210,51.049999999989815,-0.0689454880465443 +10211,51.05499999998981,-0.0689453773535417 +10212,51.059999999989806,-0.06894526669443267 +10213,51.0649999999898,-0.06894515606920722 +10214,51.0699999999898,-0.06894504547785542 +10215,51.07499999998979,-0.06894493492036731 +10216,51.07999999998979,-0.06894482439673293 +10217,51.08499999998978,-0.06894471390694235 +10218,51.08999999998978,-0.0689446034509856 +10219,51.094999999989774,-0.06894449302885275 +10220,51.09999999998977,-0.06894438264053386 +10221,51.104999999989765,-0.06894427228601899 +10222,51.10999999998976,-0.06894416196529819 +10223,51.114999999989756,-0.06894405167836155 +10224,51.11999999998975,-0.06894394142519913 +10225,51.12499999998975,-0.06894383120580098 +10226,51.12999999998974,-0.06894372102015722 +10227,51.13499999998974,-0.06894361086825791 +10228,51.13999999998973,-0.06894350075009312 +10229,51.14499999998973,-0.06894339066565296 +10230,51.149999999989724,-0.0689432806149275 +10231,51.15499999998972,-0.06894317059790682 +10232,51.159999999989715,-0.06894306061458101 +10233,51.16499999998971,-0.0689429506649402 +10234,51.169999999989706,-0.06894284074897446 +10235,51.1749999999897,-0.06894273086667389 +10236,51.1799999999897,-0.06894262101802862 +10237,51.18499999998969,-0.06894251120302873 +10238,51.18999999998969,-0.06894240142166434 +10239,51.19499999998968,-0.06894229167392557 +10240,51.19999999998968,-0.0689421819598025 +10241,51.204999999989674,-0.0689420722792853 +10242,51.20999999998967,-0.06894196263236406 +10243,51.214999999989665,-0.0689418530190289 +10244,51.21999999998966,-0.06894174343926995 +10245,51.224999999989656,-0.06894163389307735 +10246,51.22999999998965,-0.06894152438044122 +10247,51.23499999998965,-0.06894141490135171 +10248,51.23999999998964,-0.06894130545579893 +10249,51.24499999998964,-0.06894119604377306 +10250,51.24999999998963,-0.0689410866652642 +10251,51.25499999998963,-0.06894097732026254 +10252,51.259999999989624,-0.06894086800875818 +10253,51.26499999998962,-0.06894075873074129 +10254,51.269999999989615,-0.06894064948620204 +10255,51.27499999998961,-0.0689405402751306 +10256,51.279999999989606,-0.06894043109751706 +10257,51.2849999999896,-0.06894032195335166 +10258,51.2899999999896,-0.06894021284262453 +10259,51.29499999998959,-0.06894010376532582 +10260,51.29999999998959,-0.06893999472144573 +10261,51.30499999998958,-0.06893988571097442 +10262,51.30999999998958,-0.06893977673390209 +10263,51.314999999989574,-0.06893966779021887 +10264,51.31999999998957,-0.068939558879915 +10265,51.324999999989565,-0.06893945000298063 +10266,51.32999999998956,-0.06893934115940595 +10267,51.334999999989556,-0.06893923234918115 +10268,51.33999999998955,-0.06893912357229642 +10269,51.34499999998955,-0.06893901482874197 +10270,51.34999999998954,-0.06893890611850799 +10271,51.35499999998954,-0.06893879744158468 +10272,51.35999999998953,-0.06893868879796225 +10273,51.36499999998953,-0.0689385801876309 +10274,51.369999999989524,-0.06893847161058084 +10275,51.37499999998952,-0.06893836306680229 +10276,51.379999999989515,-0.06893825455628544 +10277,51.38499999998951,-0.06893814607902055 +10278,51.389999999989506,-0.0689380376349978 +10279,51.3949999999895,-0.06893792922420744 +10280,51.3999999999895,-0.06893782084663969 +10281,51.40499999998949,-0.06893771250228475 +10282,51.40999999998949,-0.06893760419113289 +10283,51.41499999998948,-0.06893749591317433 +10284,51.41999999998948,-0.06893738766839931 +10285,51.424999999989474,-0.06893727945679806 +10286,51.42999999998947,-0.06893717127836084 +10287,51.434999999989465,-0.06893706313307787 +10288,51.43999999998946,-0.06893695502093942 +10289,51.444999999989456,-0.06893684694193575 +10290,51.44999999998945,-0.06893673889605709 +10291,51.45499999998945,-0.06893663088329369 +10292,51.45999999998944,-0.06893652290363582 +10293,51.46499999998944,-0.06893641495707375 +10294,51.46999999998943,-0.06893630704359774 +10295,51.47499999998943,-0.06893619916319806 +10296,51.479999999989424,-0.06893609131586498 +10297,51.48499999998942,-0.06893598350158875 +10298,51.489999999989415,-0.06893587572035968 +10299,51.49499999998941,-0.06893576797216802 +10300,51.499999999989406,-0.06893566025700408 +10301,51.5049999999894,-0.06893555257485812 +10302,51.5099999999894,-0.06893544492572043 +10303,51.51499999998939,-0.06893533730958132 +10304,51.51999999998939,-0.06893522972643105 +10305,51.52499999998938,-0.06893512217625992 +10306,51.52999999998938,-0.06893501465905826 +10307,51.534999999989374,-0.06893490717481633 +10308,51.53999999998937,-0.06893479972352447 +10309,51.544999999989365,-0.06893469230517295 +10310,51.54999999998936,-0.0689345849197521 +10311,51.554999999989356,-0.06893447756725221 +10312,51.55999999998935,-0.06893437024766362 +10313,51.56499999998935,-0.06893426296097664 +10314,51.56999999998934,-0.06893415570718159 +10315,51.57499999998934,-0.06893404848626879 +10316,51.57999999998933,-0.06893394129822855 +10317,51.58499999998933,-0.06893383414305121 +10318,51.589999999989324,-0.0689337270207271 +10319,51.59499999998932,-0.06893361993124657 +10320,51.599999999989315,-0.06893351287459992 +10321,51.60499999998931,-0.06893340585077752 +10322,51.609999999989306,-0.06893329885976969 +10323,51.6149999999893,-0.06893319190156678 +10324,51.6199999999893,-0.06893308497615916 +10325,51.62499999998929,-0.06893297808353714 +10326,51.62999999998929,-0.0689328712236911 +10327,51.63499999998928,-0.06893276439661138 +10328,51.63999999998928,-0.06893265760228832 +10329,51.644999999989274,-0.06893255084071234 +10330,51.64999999998927,-0.06893244411187376 +10331,51.654999999989265,-0.06893233741576293 +10332,51.65999999998926,-0.06893223075237026 +10333,51.664999999989256,-0.06893212412168609 +10334,51.66999999998925,-0.0689320175237008 +10335,51.67499999998925,-0.06893191095840479 +10336,51.67999999998924,-0.06893180442578842 +10337,51.68499999998924,-0.06893169792584206 +10338,51.68999999998923,-0.06893159145855611 +10339,51.69499999998923,-0.06893148502392098 +10340,51.699999999989224,-0.06893137862192701 +10341,51.70499999998922,-0.06893127225256462 +10342,51.709999999989215,-0.06893116591582421 +10343,51.71499999998921,-0.06893105961169617 +10344,51.719999999989206,-0.06893095334017091 +10345,51.7249999999892,-0.06893084710123881 +10346,51.7299999999892,-0.0689307408948903 +10347,51.73499999998919,-0.0689306347211158 +10348,51.73999999998919,-0.0689305285799057 +10349,51.74499999998918,-0.0689304224712504 +10350,51.74999999998918,-0.06893031639514037 +10351,51.754999999989174,-0.06893021035156598 +10352,51.75999999998917,-0.06893010434051766 +10353,51.764999999989165,-0.06892999836198585 +10354,51.76999999998916,-0.06892989241596098 +10355,51.774999999989156,-0.06892978650243348 +10356,51.77999999998915,-0.06892968062139376 +10357,51.78499999998915,-0.06892957477283228 +10358,51.78999999998914,-0.06892946895673949 +10359,51.79499999998914,-0.0689293631731058 +10360,51.79999999998913,-0.06892925742192166 +10361,51.80499999998913,-0.06892915170317754 +10362,51.809999999989124,-0.06892904601686387 +10363,51.81499999998912,-0.0689289403629711 +10364,51.819999999989115,-0.06892883474148971 +10365,51.82499999998911,-0.06892872915241013 +10366,51.829999999989106,-0.06892862359572283 +10367,51.8349999999891,-0.06892851807141827 +10368,51.8399999999891,-0.06892841257948694 +10369,51.84499999998909,-0.06892830711991926 +10370,51.84999999998909,-0.06892820169270576 +10371,51.85499999998908,-0.06892809629783686 +10372,51.85999999998908,-0.06892799093530308 +10373,51.864999999989074,-0.06892788560509486 +10374,51.86999999998907,-0.06892778030720272 +10375,51.874999999989065,-0.0689276750416171 +10376,51.87999999998906,-0.06892756980832854 +10377,51.884999999989056,-0.06892746460732752 +10378,51.88999999998905,-0.06892735943860448 +10379,51.89499999998905,-0.06892725430214998 +10380,51.89999999998904,-0.06892714919795448 +10381,51.90499999998904,-0.0689270441260085 +10382,51.90999999998903,-0.06892693908630253 +10383,51.91499999998903,-0.06892683407882709 +10384,51.919999999989024,-0.06892672910357267 +10385,51.92499999998902,-0.0689266241605298 +10386,51.929999999989015,-0.06892651924968898 +10387,51.93499999998901,-0.06892641437104073 +10388,51.939999999989006,-0.06892630952457558 +10389,51.944999999989,-0.06892620471028406 +10390,51.949999999989,-0.06892609992815667 +10391,51.95499999998899,-0.06892599517818394 +10392,51.95999999998899,-0.06892589046035641 +10393,51.96499999998898,-0.06892578577466463 +10394,51.96999999998898,-0.06892568112109912 +10395,51.974999999988974,-0.0689255764996504 +10396,51.97999999998897,-0.06892547191030904 +10397,51.984999999988965,-0.06892536735306556 +10398,51.98999999998896,-0.06892526282791053 +10399,51.994999999988956,-0.06892515833483448 +10400,51.99999999998895,-0.06892505387382797 +10401,52.00499999998895,-0.06892494944488155 +10402,52.00999999998894,-0.06892484504798578 +10403,52.01499999998894,-0.06892474068313122 +10404,52.01999999998893,-0.06892463635030843 +10405,52.02499999998893,-0.06892453204950799 +10406,52.029999999988924,-0.06892442778072044 +10407,52.03499999998892,-0.06892432354393636 +10408,52.039999999988915,-0.06892421933914634 +10409,52.04499999998891,-0.06892411516634095 +10410,52.049999999988906,-0.06892401102551077 +10411,52.0549999999889,-0.06892390691664636 +10412,52.0599999999889,-0.06892380283973831 +10413,52.06499999998889,-0.06892369879477722 +10414,52.06999999998889,-0.06892359478175368 +10415,52.07499999998888,-0.06892349080065828 +10416,52.07999999998888,-0.0689233868514816 +10417,52.084999999988874,-0.06892328293421425 +10418,52.08999999998887,-0.06892317904884682 +10419,52.094999999988865,-0.06892307519536993 +10420,52.09999999998886,-0.06892297137377418 +10421,52.104999999988856,-0.06892286758405015 +10422,52.10999999998885,-0.06892276382618849 +10423,52.11499999998885,-0.06892266010017978 +10424,52.11999999998884,-0.06892255640601466 +10425,52.12499999998884,-0.06892245274368375 +10426,52.12999999998883,-0.06892234911317764 +10427,52.13499999998883,-0.06892224551448699 +10428,52.139999999988824,-0.06892214194760242 +10429,52.14499999998882,-0.06892203841251453 +10430,52.149999999988815,-0.06892193490921397 +10431,52.15499999998881,-0.06892183143769139 +10432,52.159999999988806,-0.0689217279979374 +10433,52.1649999999888,-0.06892162458994265 +10434,52.169999999988796,-0.06892152121369781 +10435,52.17499999998879,-0.06892141786919348 +10436,52.17999999998879,-0.06892131455642032 +10437,52.18499999998878,-0.068921211275369 +10438,52.18999999998878,-0.06892110802603016 +10439,52.194999999988774,-0.06892100480839444 +10440,52.19999999998877,-0.06892090162245253 +10441,52.204999999988765,-0.06892079846819506 +10442,52.20999999998876,-0.06892069534561271 +10443,52.214999999988756,-0.06892059225469614 +10444,52.21999999998875,-0.06892048919543603 +10445,52.224999999988746,-0.06892038616782305 +10446,52.22999999998874,-0.06892028317184784 +10447,52.23499999998874,-0.06892018020750112 +10448,52.23999999998873,-0.06892007727477355 +10449,52.24499999998873,-0.06891997437365582 +10450,52.249999999988724,-0.06891987150413861 +10451,52.25499999998872,-0.0689197686662126 +10452,52.259999999988715,-0.06891966585986849 +10453,52.26499999998871,-0.06891956308509697 +10454,52.269999999988705,-0.06891946034188873 +10455,52.2749999999887,-0.06891935763023448 +10456,52.279999999988696,-0.0689192549501249 +10457,52.28499999998869,-0.0689191523015507 +10458,52.28999999998869,-0.0689190496845026 +10459,52.29499999998868,-0.06891894709897128 +10460,52.29999999998868,-0.0689188445449475 +10461,52.304999999988674,-0.06891874202242193 +10462,52.30999999998867,-0.06891863953138529 +10463,52.314999999988665,-0.0689185370718283 +10464,52.31999999998866,-0.0689184346437417 +10465,52.324999999988655,-0.06891833224711622 +10466,52.32999999998865,-0.06891822988194254 +10467,52.334999999988646,-0.06891812754821143 +10468,52.33999999998864,-0.06891802524591362 +10469,52.34499999998864,-0.06891792297503982 +10470,52.34999999998863,-0.06891782073558078 +10471,52.35499999998863,-0.06891771852752725 +10472,52.359999999988624,-0.06891761635086995 +10473,52.36499999998862,-0.06891751420559965 +10474,52.369999999988615,-0.06891741209170708 +10475,52.37499999998861,-0.068917310009183 +10476,52.379999999988605,-0.06891720795801816 +10477,52.3849999999886,-0.06891710593820331 +10478,52.389999999988596,-0.06891700394972922 +10479,52.39499999998859,-0.06891690199258664 +10480,52.39999999998859,-0.06891680006676634 +10481,52.40499999998858,-0.06891669817225908 +10482,52.40999999998858,-0.06891659630905562 +10483,52.414999999988574,-0.06891649447714676 +10484,52.41999999998857,-0.06891639267652325 +10485,52.424999999988565,-0.06891629090717587 +10486,52.42999999998856,-0.0689161891690954 +10487,52.434999999988555,-0.06891608746227261 +10488,52.43999999998855,-0.06891598578669832 +10489,52.444999999988546,-0.06891588414236328 +10490,52.44999999998854,-0.0689157825292583 +10491,52.45499999998854,-0.06891568094737416 +10492,52.45999999998853,-0.06891557939670166 +10493,52.46499999998853,-0.0689154778772316 +10494,52.469999999988524,-0.06891537638895477 +10495,52.47499999998852,-0.06891527493186198 +10496,52.479999999988515,-0.06891517350594403 +10497,52.48499999998851,-0.06891507211119173 +10498,52.489999999988505,-0.06891497074759591 +10499,52.4949999999885,-0.06891486941514735 +10500,52.499999999988496,-0.06891476811383689 +10501,52.50499999998849,-0.06891466684365533 +10502,52.50999999998849,-0.0689145656045935 +10503,52.51499999998848,-0.06891446439664221 +10504,52.51999999998848,-0.0689143632197923 +10505,52.524999999988474,-0.06891426207403462 +10506,52.52999999998847,-0.06891416095935995 +10507,52.534999999988464,-0.06891405987575916 +10508,52.53999999998846,-0.06891395882322308 +10509,52.544999999988455,-0.06891385780174256 +10510,52.54999999998845,-0.0689137568113084 +10511,52.554999999988446,-0.06891365585191149 +10512,52.55999999998844,-0.06891355492354265 +10513,52.56499999998844,-0.06891345402619274 +10514,52.56999999998843,-0.0689133531598526 +10515,52.57499999998843,-0.0689132523245131 +10516,52.579999999988424,-0.0689131515201651 +10517,52.58499999998842,-0.06891305074679945 +10518,52.589999999988414,-0.06891295000440699 +10519,52.59499999998841,-0.06891284929297863 +10520,52.599999999988405,-0.0689127486125052 +10521,52.6049999999884,-0.0689126479629776 +10522,52.609999999988396,-0.06891254734438665 +10523,52.61499999998839,-0.06891244675672328 +10524,52.61999999998839,-0.06891234619997837 +10525,52.62499999998838,-0.06891224567414275 +10526,52.62999999998838,-0.06891214517920734 +10527,52.63499999998837,-0.06891204471516302 +10528,52.63999999998837,-0.06891194428200068 +10529,52.644999999988364,-0.06891184387971121 +10530,52.64999999998836,-0.06891174350828548 +10531,52.654999999988355,-0.06891164316771442 +10532,52.65999999998835,-0.06891154285798891 +10533,52.664999999988346,-0.06891144257909985 +10534,52.66999999998834,-0.06891134233103816 +10535,52.67499999998834,-0.06891124211379474 +10536,52.67999999998833,-0.06891114192736046 +10537,52.68499999998833,-0.06891104177172629 +10538,52.68999999998832,-0.06891094164688312 +10539,52.69499999998832,-0.06891084155282186 +10540,52.699999999988314,-0.06891074148953343 +10541,52.70499999998831,-0.06891064145700874 +10542,52.709999999988305,-0.06891054145523874 +10543,52.7149999999883,-0.06891044148421435 +10544,52.719999999988296,-0.06891034154392649 +10545,52.72499999998829,-0.0689102416343661 +10546,52.72999999998829,-0.06891014175552411 +10547,52.73499999998828,-0.06891004190739144 +10548,52.73999999998828,-0.06890994208995906 +10549,52.74499999998827,-0.06890984230321791 +10550,52.74999999998827,-0.0689097425471589 +10551,52.754999999988264,-0.06890964282177302 +10552,52.75999999998826,-0.06890954312705119 +10553,52.764999999988255,-0.06890944346298439 +10554,52.76999999998825,-0.06890934382956354 +10555,52.774999999988246,-0.06890924422677962 +10556,52.77999999998824,-0.0689091446546236 +10557,52.78499999998824,-0.0689090451130864 +10558,52.78999999998823,-0.06890894560215904 +10559,52.79499999998823,-0.06890884612183244 +10560,52.79999999998822,-0.06890874667209759 +10561,52.80499999998822,-0.06890864725294547 +10562,52.809999999988214,-0.06890854786436705 +10563,52.81499999998821,-0.06890844850635332 +10564,52.819999999988205,-0.06890834917889523 +10565,52.8249999999882,-0.06890824988198378 +10566,52.829999999988196,-0.06890815061560995 +10567,52.83499999998819,-0.06890805137976476 +10568,52.83999999998819,-0.06890795217443917 +10569,52.84499999998818,-0.06890785299962417 +10570,52.84999999998818,-0.06890775385531075 +10571,52.85499999998817,-0.06890765474148995 +10572,52.85999999998817,-0.06890755565815274 +10573,52.864999999988164,-0.06890745660529012 +10574,52.86999999998816,-0.06890735758289308 +10575,52.874999999988155,-0.06890725859095267 +10576,52.87999999998815,-0.0689071596294599 +10577,52.884999999988146,-0.06890706069840576 +10578,52.88999999998814,-0.06890696179778126 +10579,52.89499999998814,-0.06890686292757744 +10580,52.89999999998813,-0.06890676408778532 +10581,52.90499999998813,-0.06890666527839591 +10582,52.90999999998812,-0.06890656649940025 +10583,52.91499999998812,-0.06890646775078935 +10584,52.919999999988114,-0.06890636903255426 +10585,52.92499999998811,-0.068906270344686 +10586,52.929999999988105,-0.06890617168717561 +10587,52.9349999999881,-0.06890607306001416 +10588,52.939999999988096,-0.06890597446319265 +10589,52.94499999998809,-0.06890587589670215 +10590,52.94999999998809,-0.06890577736053367 +10591,52.95499999998808,-0.06890567885467831 +10592,52.95999999998808,-0.06890558037912708 +10593,52.96499999998807,-0.06890548193387107 +10594,52.96999999998807,-0.06890538351890133 +10595,52.974999999988064,-0.06890528513420888 +10596,52.97999999998806,-0.06890518677978481 +10597,52.984999999988055,-0.0689050884556202 +10598,52.98999999998805,-0.06890499016170609 +10599,52.994999999988046,-0.06890489189803357 +10600,52.99999999998804,-0.0689047936645937 +10601,53.00499999998804,-0.06890469546137756 +10602,53.00999999998803,-0.06890459728837622 +10603,53.01499999998803,-0.06890449914558078 +10604,53.01999999998802,-0.06890440103298229 +10605,53.02499999998802,-0.06890430295057186 +10606,53.029999999988014,-0.06890420489834057 +10607,53.03499999998801,-0.0689041068762795 +10608,53.039999999988005,-0.06890400888437977 +10609,53.044999999988,-0.06890391092263244 +10610,53.049999999987996,-0.06890381299102863 +10611,53.05499999998799,-0.06890371508955945 +10612,53.05999999998799,-0.06890361721821596 +10613,53.06499999998798,-0.0689035193769893 +10614,53.06999999998798,-0.06890342156587057 +10615,53.07499999998797,-0.06890332378485087 +10616,53.07999999998797,-0.06890322603392134 +10617,53.084999999987964,-0.06890312831307306 +10618,53.08999999998796,-0.06890303062229716 +10619,53.094999999987955,-0.06890293296158478 +10620,53.09999999998795,-0.06890283533092702 +10621,53.104999999987946,-0.06890273773031501 +10622,53.10999999998794,-0.06890264015973989 +10623,53.11499999998794,-0.06890254261919278 +10624,53.11999999998793,-0.0689024451086648 +10625,53.12499999998793,-0.0689023476281471 +10626,53.12999999998792,-0.06890225017763084 +10627,53.13499999998792,-0.06890215275710712 +10628,53.139999999987914,-0.0689020553665671 +10629,53.14499999998791,-0.06890195800600192 +10630,53.149999999987905,-0.06890186067540273 +10631,53.1549999999879,-0.06890176337476069 +10632,53.159999999987896,-0.06890166610406695 +10633,53.16499999998789,-0.06890156886331265 +10634,53.16999999998789,-0.06890147165248896 +10635,53.17499999998788,-0.06890137447158703 +10636,53.17999999998788,-0.06890127732059804 +10637,53.18499999998787,-0.06890118019951315 +10638,53.18999999998787,-0.06890108310832352 +10639,53.194999999987864,-0.06890098604702033 +10640,53.19999999998786,-0.06890088901559474 +10641,53.204999999987855,-0.06890079201403794 +10642,53.20999999998785,-0.06890069504234109 +10643,53.214999999987846,-0.06890059810049538 +10644,53.21999999998784,-0.06890050118849202 +10645,53.22499999998784,-0.06890040430632215 +10646,53.22999999998783,-0.06890030745397697 +10647,53.23499999998783,-0.0689002106314477 +10648,53.23999999998782,-0.0689001138387255 +10649,53.24499999998782,-0.06890001707580158 +10650,53.249999999987814,-0.06889992034266715 +10651,53.25499999998781,-0.06889982363931337 +10652,53.259999999987805,-0.06889972696573148 +10653,53.2649999999878,-0.06889963032191267 +10654,53.269999999987796,-0.06889953370784815 +10655,53.27499999998779,-0.06889943712352913 +10656,53.27999999998779,-0.06889934056894682 +10657,53.28499999998778,-0.06889924404409245 +10658,53.28999999998778,-0.06889914754895723 +10659,53.29499999998777,-0.06889905108353238 +10660,53.29999999998777,-0.06889895464780911 +10661,53.304999999987764,-0.06889885824177866 +10662,53.30999999998776,-0.06889876186543226 +10663,53.314999999987755,-0.06889866551876112 +10664,53.31999999998775,-0.06889856920175651 +10665,53.324999999987746,-0.06889847291440962 +10666,53.32999999998774,-0.06889837665671172 +10667,53.33499999998774,-0.06889828042865404 +10668,53.33999999998773,-0.06889818423022781 +10669,53.34499999998773,-0.0688980880614243 +10670,53.34999999998772,-0.06889799192223475 +10671,53.35499999998772,-0.0688978958126504 +10672,53.359999999987714,-0.06889779973266252 +10673,53.36499999998771,-0.06889770368226235 +10674,53.369999999987705,-0.06889760766144115 +10675,53.3749999999877,-0.0688975116701902 +10676,53.379999999987696,-0.06889741570850073 +10677,53.38499999998769,-0.06889731977636403 +10678,53.38999999998769,-0.06889722387377135 +10679,53.39499999998768,-0.06889712800071397 +10680,53.39999999998768,-0.06889703215718317 +10681,53.40499999998767,-0.06889693634317019 +10682,53.40999999998767,-0.06889684055866635 +10683,53.414999999987664,-0.06889674480366291 +10684,53.41999999998766,-0.06889664907815116 +10685,53.424999999987655,-0.06889655338212237 +10686,53.42999999998765,-0.06889645771556786 +10687,53.434999999987646,-0.06889636207847889 +10688,53.43999999998764,-0.06889626647084676 +10689,53.44499999998764,-0.06889617089266276 +10690,53.44999999998763,-0.06889607534391819 +10691,53.45499999998763,-0.06889597982460435 +10692,53.45999999998762,-0.06889588433471257 +10693,53.46499999998762,-0.06889578887423412 +10694,53.469999999987614,-0.06889569344316031 +10695,53.47499999998761,-0.06889559804148246 +10696,53.479999999987605,-0.06889550266919187 +10697,53.4849999999876,-0.06889540732627988 +10698,53.489999999987596,-0.06889531201273778 +10699,53.49499999998759,-0.0688952167285569 +10700,53.49999999998759,-0.06889512147372856 +10701,53.50499999998758,-0.06889502624824409 +10702,53.50999999998758,-0.06889493105209482 +10703,53.51499999998757,-0.06889483588527208 +10704,53.51999999998757,-0.06889474074776718 +10705,53.524999999987564,-0.06889464563957147 +10706,53.52999999998756,-0.06889455056067628 +10707,53.534999999987555,-0.06889445551107297 +10708,53.53999999998755,-0.06889436049075286 +10709,53.544999999987546,-0.0688942654997073 +10710,53.54999999998754,-0.06889417053792765 +10711,53.55499999998754,-0.06889407560540524 +10712,53.55999999998753,-0.06889398070213142 +10713,53.56499999998753,-0.06889388582809755 +10714,53.56999999998752,-0.06889379098329501 +10715,53.57499999998752,-0.06889369616771512 +10716,53.579999999987514,-0.06889360138134927 +10717,53.58499999998751,-0.06889350662418882 +10718,53.589999999987505,-0.06889341189622512 +10719,53.5949999999875,-0.06889331719744955 +10720,53.599999999987496,-0.06889322252785347 +10721,53.60499999998749,-0.06889312788742827 +10722,53.60999999998749,-0.06889303327616532 +10723,53.61499999998748,-0.06889293869405598 +10724,53.61999999998748,-0.06889284414109167 +10725,53.62499999998747,-0.06889274961726374 +10726,53.62999999998747,-0.06889265512256361 +10727,53.634999999987464,-0.06889256065698264 +10728,53.63999999998746,-0.06889246622051222 +10729,53.644999999987455,-0.06889237181314375 +10730,53.64999999998745,-0.06889227743486863 +10731,53.654999999987446,-0.06889218308567825 +10732,53.65999999998744,-0.06889208876556403 +10733,53.66499999998744,-0.06889199447451735 +10734,53.66999999998743,-0.06889190021252962 +10735,53.67499999998743,-0.06889180597959225 +10736,53.67999999998742,-0.06889171177569665 +10737,53.68499999998742,-0.06889161760083425 +10738,53.689999999987414,-0.06889152345499643 +10739,53.69499999998741,-0.06889142933817465 +10740,53.699999999987405,-0.0688913352503603 +10741,53.7049999999874,-0.06889124119154481 +10742,53.709999999987396,-0.06889114716171961 +10743,53.71499999998739,-0.06889105316087611 +10744,53.71999999998739,-0.06889095918900576 +10745,53.72499999998738,-0.06889086524609998 +10746,53.72999999998738,-0.06889077133215021 +10747,53.73499999998737,-0.0688906774471479 +10748,53.73999999998737,-0.06889058359108446 +10749,53.744999999987364,-0.06889048976395136 +10750,53.74999999998736,-0.06889039596574002 +10751,53.754999999987355,-0.06889030219644192 +10752,53.75999999998735,-0.06889020845604849 +10753,53.764999999987346,-0.06889011474455117 +10754,53.76999999998734,-0.06889002106194142 +10755,53.77499999998734,-0.0688899274082107 +10756,53.77999999998733,-0.06888983378335048 +10757,53.78499999998733,-0.06888974018735222 +10758,53.78999999998732,-0.06888964662020736 +10759,53.79499999998732,-0.06888955308190739 +10760,53.799999999987314,-0.06888945957244379 +10761,53.80499999998731,-0.06888936609180799 +10762,53.809999999987305,-0.06888927263999149 +10763,53.8149999999873,-0.06888917921698577 +10764,53.819999999987296,-0.06888908582278229 +10765,53.82499999998729,-0.06888899245737255 +10766,53.82999999998729,-0.06888889912074803 +10767,53.83499999998728,-0.0688888058129002 +10768,53.83999999998728,-0.06888871253382056 +10769,53.84499999998727,-0.06888861928350062 +10770,53.84999999998727,-0.06888852606193183 +10771,53.854999999987264,-0.06888843286910572 +10772,53.85999999998726,-0.06888833970501376 +10773,53.864999999987255,-0.06888824656964748 +10774,53.86999999998725,-0.06888815346299836 +10775,53.874999999987246,-0.06888806038505793 +10776,53.87999999998724,-0.06888796733581766 +10777,53.88499999998724,-0.0688878743152691 +10778,53.88999999998723,-0.06888778132340374 +10779,53.89499999998723,-0.06888768836021311 +10780,53.89999999998722,-0.0688875954256887 +10781,53.90499999998722,-0.06888750251982205 +10782,53.909999999987214,-0.06888740964260469 +10783,53.91499999998721,-0.06888731679402811 +10784,53.919999999987205,-0.06888722397408387 +10785,53.9249999999872,-0.06888713118276349 +10786,53.929999999987196,-0.06888703842005849 +10787,53.93499999998719,-0.06888694568596042 +10788,53.93999999998719,-0.06888685298046081 +10789,53.94499999998718,-0.06888676030355119 +10790,53.94999999998718,-0.06888666765522311 +10791,53.95499999998717,-0.06888657503546812 +10792,53.95999999998717,-0.06888648244427777 +10793,53.964999999987164,-0.06888638988164358 +10794,53.96999999998716,-0.06888629734755713 +10795,53.974999999987155,-0.06888620484200995 +10796,53.97999999998715,-0.06888611236499363 +10797,53.984999999987146,-0.0688860199164997 +10798,53.98999999998714,-0.06888592749651973 +10799,53.99499999998714,-0.06888583510504527 +10800,53.99999999998713,-0.0688857427420679 +10801,54.00499999998713,-0.0688856504075792 +10802,54.00999999998712,-0.0688855581015707 +10803,54.01499999998712,-0.068885465824034 +10804,54.019999999987114,-0.06888537357496066 +10805,54.02499999998711,-0.06888528135434228 +10806,54.029999999987105,-0.06888518916217043 +10807,54.0349999999871,-0.0688850969984367 +10808,54.039999999987096,-0.06888500486313265 +10809,54.04499999998709,-0.06888491275624987 +10810,54.04999999998709,-0.06888482067777997 +10811,54.05499999998708,-0.06888472862771454 +10812,54.05999999998708,-0.06888463660604516 +10813,54.06499999998707,-0.06888454461276343 +10814,54.06999999998707,-0.06888445264786096 +10815,54.074999999987064,-0.06888436071132933 +10816,54.07999999998706,-0.06888426880316018 +10817,54.084999999987055,-0.06888417692334507 +10818,54.08999999998705,-0.06888408507187563 +10819,54.094999999987046,-0.06888399324874347 +10820,54.09999999998704,-0.06888390145394022 +10821,54.10499999998704,-0.06888380968745746 +10822,54.10999999998703,-0.06888371794928684 +10823,54.11499999998703,-0.06888362623941996 +10824,54.11999999998702,-0.06888353455784844 +10825,54.12499999998702,-0.06888344290456395 +10826,54.129999999987014,-0.06888335127955807 +10827,54.13499999998701,-0.06888325968282244 +10828,54.139999999987005,-0.06888316811434869 +10829,54.144999999987,-0.06888307657412847 +10830,54.149999999986996,-0.0688829850621534 +10831,54.15499999998699,-0.06888289357841512 +10832,54.15999999998699,-0.06888280212290529 +10833,54.16499999998698,-0.06888271069561555 +10834,54.16999999998698,-0.06888261929653752 +10835,54.17499999998697,-0.06888252792566289 +10836,54.17999999998697,-0.06888243658298328 +10837,54.184999999986964,-0.06888234526849035 +10838,54.18999999998696,-0.06888225398217578 +10839,54.194999999986955,-0.06888216272403118 +10840,54.19999999998695,-0.06888207149404825 +10841,54.204999999986946,-0.06888198029221865 +10842,54.20999999998694,-0.06888188911853402 +10843,54.21499999998694,-0.06888179797298605 +10844,54.21999999998693,-0.06888170685556641 +10845,54.22499999998693,-0.06888161576626677 +10846,54.22999999998692,-0.06888152470507879 +10847,54.23499999998692,-0.06888143367199417 +10848,54.239999999986914,-0.06888134266700459 +10849,54.24499999998691,-0.0688812516901017 +10850,54.249999999986905,-0.06888116074127723 +10851,54.2549999999869,-0.06888106982052282 +10852,54.259999999986896,-0.0688809789278302 +10853,54.26499999998689,-0.06888088806319104 +10854,54.26999999998689,-0.06888079722659704 +10855,54.27499999998688,-0.0688807064180399 +10856,54.27999999998688,-0.0688806156375113 +10857,54.28499999998687,-0.06888052488500297 +10858,54.28999999998687,-0.0688804341605066 +10859,54.294999999986864,-0.06888034346401388 +10860,54.29999999998686,-0.06888025279551654 +10861,54.304999999986855,-0.06888016215500628 +10862,54.30999999998685,-0.06888007154247482 +10863,54.314999999986846,-0.06887998095791385 +10864,54.31999999998684,-0.06887989040131513 +10865,54.32499999998684,-0.06887979987267036 +10866,54.32999999998683,-0.06887970937197126 +10867,54.33499999998683,-0.06887961889920954 +10868,54.33999999998682,-0.06887952845437696 +10869,54.34499999998682,-0.06887943803746524 +10870,54.349999999986814,-0.06887934764846608 +10871,54.35499999998681,-0.06887925728737125 +10872,54.359999999986805,-0.06887916695417247 +10873,54.3649999999868,-0.06887907664886148 +10874,54.369999999986796,-0.06887898637143001 +10875,54.37499999998679,-0.06887889612186984 +10876,54.37999999998679,-0.0688788059001727 +10877,54.38499999998678,-0.0688787157063303 +10878,54.38999999998678,-0.06887862554033446 +10879,54.39499999998677,-0.06887853540217687 +10880,54.39999999998677,-0.06887844529184932 +10881,54.404999999986764,-0.06887835520934356 +10882,54.40999999998676,-0.06887826515465133 +10883,54.414999999986755,-0.06887817512776442 +10884,54.41999999998675,-0.0688780851286746 +10885,54.424999999986746,-0.06887799515737361 +10886,54.42999999998674,-0.06887790521385323 +10887,54.434999999986736,-0.06887781529810523 +10888,54.43999999998673,-0.0688777254101214 +10889,54.44499999998673,-0.0688776355498935 +10890,54.44999999998672,-0.06887754571741331 +10891,54.45499999998672,-0.06887745591267262 +10892,54.459999999986714,-0.0688773661356632 +10893,54.46499999998671,-0.06887727638637683 +10894,54.469999999986705,-0.06887718666480533 +10895,54.4749999999867,-0.06887709697094045 +10896,54.479999999986696,-0.06887700730477403 +10897,54.48499999998669,-0.06887691766629782 +10898,54.489999999986686,-0.06887682805550364 +10899,54.49499999998668,-0.06887673847238328 +10900,54.49999999998668,-0.06887664891692856 +10901,54.50499999998667,-0.06887655938913126 +10902,54.50999999998667,-0.06887646988898322 +10903,54.514999999986664,-0.06887638041647622 +10904,54.51999999998666,-0.06887629097160206 +10905,54.524999999986655,-0.06887620155435259 +10906,54.52999999998665,-0.0688761121647196 +10907,54.534999999986645,-0.06887602280269493 +10908,54.53999999998664,-0.0688759334682704 +10909,54.544999999986636,-0.0688758441614378 +10910,54.54999999998663,-0.06887575488218899 +10911,54.55499999998663,-0.06887566563051577 +10912,54.55999999998662,-0.06887557640641 +10913,54.56499999998662,-0.06887548720986349 +10914,54.569999999986614,-0.06887539804086808 +10915,54.57499999998661,-0.06887530889941562 +10916,54.579999999986605,-0.06887521978549793 +10917,54.5849999999866,-0.06887513069910688 +10918,54.589999999986595,-0.06887504164023428 +10919,54.59499999998659,-0.06887495260887198 +10920,54.599999999986586,-0.06887486360501185 +10921,54.60499999998658,-0.06887477462864575 +10922,54.60999999998658,-0.0688746856797655 +10923,54.61499999998657,-0.06887459675836295 +10924,54.61999999998657,-0.06887450786443 +10925,54.624999999986564,-0.06887441899795849 +10926,54.62999999998656,-0.06887433015894028 +10927,54.634999999986555,-0.06887424134736722 +10928,54.63999999998655,-0.0688741525632312 +10929,54.644999999986545,-0.0688740638065241 +10930,54.64999999998654,-0.06887397507723776 +10931,54.654999999986536,-0.06887388637536408 +10932,54.65999999998653,-0.06887379770089493 +10933,54.66499999998653,-0.06887370905382217 +10934,54.66999999998652,-0.0688736204341377 +10935,54.67499999998652,-0.0688735318418334 +10936,54.679999999986514,-0.06887344327690116 +10937,54.68499999998651,-0.06887335473933286 +10938,54.689999999986505,-0.06887326622912039 +10939,54.6949999999865,-0.06887317774625565 +10940,54.699999999986495,-0.06887308929073054 +10941,54.70499999998649,-0.06887300086253693 +10942,54.709999999986486,-0.06887291246166674 +10943,54.71499999998648,-0.06887282408811189 +10944,54.71999999998648,-0.06887273574186425 +10945,54.72499999998647,-0.06887264742291575 +10946,54.72999999998647,-0.06887255913125828 +10947,54.734999999986464,-0.06887247086688378 +10948,54.73999999998646,-0.06887238262978412 +10949,54.744999999986454,-0.06887229441995125 +10950,54.74999999998645,-0.06887220623737708 +10951,54.754999999986445,-0.06887211808205354 +10952,54.75999999998644,-0.06887202995397253 +10953,54.764999999986436,-0.06887194185312599 +10954,54.76999999998643,-0.06887185377950585 +10955,54.77499999998643,-0.06887176573310402 +10956,54.77999999998642,-0.06887167771391246 +10957,54.78499999998642,-0.06887158972192309 +10958,54.789999999986414,-0.06887150175712785 +10959,54.79499999998641,-0.06887141381951867 +10960,54.799999999986404,-0.06887132590908751 +10961,54.8049999999864,-0.06887123802582629 +10962,54.809999999986395,-0.06887115016972696 +10963,54.81499999998639,-0.06887106234078148 +10964,54.819999999986386,-0.0688709745389818 +10965,54.82499999998638,-0.06887088676431986 +10966,54.82999999998638,-0.06887079901678764 +10967,54.83499999998637,-0.06887071129637705 +10968,54.83999999998637,-0.0688706236030801 +10969,54.84499999998636,-0.06887053593688873 +10970,54.84999999998636,-0.06887044829779491 +10971,54.854999999986354,-0.0688703606857906 +10972,54.85999999998635,-0.06887027310086777 +10973,54.864999999986345,-0.06887018554301838 +10974,54.86999999998634,-0.06887009801223443 +10975,54.874999999986336,-0.06887001050850786 +10976,54.87999999998633,-0.06886992303183068 +10977,54.88499999998633,-0.06886983558219487 +10978,54.88999999998632,-0.06886974815959239 +10979,54.89499999998632,-0.06886966076401524 +10980,54.89999999998631,-0.0688695733954554 +10981,54.90499999998631,-0.06886948605390485 +10982,54.909999999986304,-0.0688693987393556 +10983,54.9149999999863,-0.06886931145179964 +10984,54.919999999986295,-0.06886922419122897 +10985,54.92499999998629,-0.06886913695763558 +10986,54.929999999986286,-0.06886904975101146 +10987,54.93499999998628,-0.06886896257134863 +10988,54.93999999998628,-0.06886887541863909 +10989,54.94499999998627,-0.06886878829287485 +10990,54.94999999998627,-0.06886870119404793 +10991,54.95499999998626,-0.06886861412215033 +10992,54.95999999998626,-0.06886852707717406 +10993,54.964999999986254,-0.06886844005911114 +10994,54.96999999998625,-0.0688683530679536 +10995,54.974999999986245,-0.06886826610369343 +10996,54.97999999998624,-0.0688681791663227 +10997,54.984999999986236,-0.06886809225583339 +10998,54.98999999998623,-0.06886800537221756 +10999,54.99499999998623,-0.06886791851546722 +11000,54.99999999998622,-0.06886783168557443 +11001,55.00499999998622,-0.0688677448825312 +11002,55.00999999998621,-0.06886765810632957 +11003,55.01499999998621,-0.06886757135696159 +11004,55.019999999986204,-0.06886748463441929 +11005,55.0249999999862,-0.06886739793869472 +11006,55.029999999986195,-0.06886731126977992 +11007,55.03499999998619,-0.06886722462766695 +11008,55.039999999986186,-0.06886713801234785 +11009,55.04499999998618,-0.06886705142381469 +11010,55.04999999998618,-0.06886696486205951 +11011,55.05499999998617,-0.06886687832707436 +11012,55.05999999998617,-0.06886679181885132 +11013,55.06499999998616,-0.06886670533738243 +11014,55.06999999998616,-0.06886661888265978 +11015,55.074999999986154,-0.06886653245467543 +11016,55.07999999998615,-0.06886644605342143 +11017,55.084999999986145,-0.06886635967888986 +11018,55.08999999998614,-0.0688662733310728 +11019,55.094999999986136,-0.06886618700996233 +11020,55.09999999998613,-0.06886610071555052 +11021,55.10499999998613,-0.06886601444782944 +11022,55.10999999998612,-0.0688659282067912 +11023,55.11499999998612,-0.06886584199242786 +11024,55.11999999998611,-0.06886575580473152 +11025,55.12499999998611,-0.06886566964369427 +11026,55.129999999986104,-0.06886558350930819 +11027,55.1349999999861,-0.06886549740156538 +11028,55.139999999986095,-0.06886541132045794 +11029,55.14499999998609,-0.06886532526597795 +11030,55.149999999986086,-0.06886523923811755 +11031,55.15499999998608,-0.06886515323686881 +11032,55.15999999998608,-0.06886506726222383 +11033,55.16499999998607,-0.06886498131417475 +11034,55.16999999998607,-0.06886489539271365 +11035,55.17499999998606,-0.06886480949783265 +11036,55.17999999998606,-0.06886472362952387 +11037,55.184999999986054,-0.06886463778777942 +11038,55.18999999998605,-0.06886455197259142 +11039,55.194999999986045,-0.06886446618395199 +11040,55.19999999998604,-0.06886438042185326 +11041,55.204999999986036,-0.06886429468628734 +11042,55.20999999998603,-0.06886420897724638 +11043,55.21499999998603,-0.0688641232947225 +11044,55.21999999998602,-0.06886403763870781 +11045,55.22499999998602,-0.06886395200919448 +11046,55.22999999998601,-0.06886386640617462 +11047,55.23499999998601,-0.0688637808296404 +11048,55.239999999986004,-0.06886369527958393 +11049,55.244999999986,-0.06886360975599735 +11050,55.249999999985995,-0.06886352425887285 +11051,55.25499999998599,-0.06886343878820252 +11052,55.259999999985986,-0.06886335334397854 +11053,55.26499999998598,-0.06886326792619307 +11054,55.26999999998598,-0.06886318253483827 +11055,55.27499999998597,-0.06886309716990625 +11056,55.27999999998597,-0.06886301183138922 +11057,55.28499999998596,-0.0688629265192793 +11058,55.28999999998596,-0.06886284123356869 +11059,55.294999999985954,-0.06886275597424954 +11060,55.29999999998595,-0.06886267074131401 +11061,55.304999999985945,-0.06886258553475427 +11062,55.30999999998594,-0.06886250035456251 +11063,55.314999999985936,-0.06886241520073091 +11064,55.31999999998593,-0.06886233007325161 +11065,55.32499999998593,-0.06886224497211683 +11066,55.32999999998592,-0.06886215989731873 +11067,55.33499999998592,-0.06886207484884947 +11068,55.33999999998591,-0.06886198982670129 +11069,55.34499999998591,-0.06886190483086635 +11070,55.349999999985904,-0.06886181986133684 +11071,55.3549999999859,-0.06886173491810495 +11072,55.359999999985895,-0.06886165000116287 +11073,55.36499999998589,-0.06886156511050281 +11074,55.369999999985886,-0.06886148024611698 +11075,55.37499999998588,-0.06886139540799753 +11076,55.37999999998588,-0.06886131059613672 +11077,55.38499999998587,-0.06886122581052674 +11078,55.38999999998587,-0.06886114105115977 +11079,55.39499999998586,-0.06886105631802808 +11080,55.39999999998586,-0.06886097161112383 +11081,55.404999999985854,-0.06886088693043925 +11082,55.40999999998585,-0.06886080227596657 +11083,55.414999999985845,-0.06886071764769798 +11084,55.41999999998584,-0.06886063304562572 +11085,55.424999999985836,-0.06886054846974202 +11086,55.42999999998583,-0.0688604639200391 +11087,55.43499999998583,-0.06886037939650917 +11088,55.43999999998582,-0.0688602948991445 +11089,55.44499999998582,-0.06886021042793727 +11090,55.44999999998581,-0.06886012598287977 +11091,55.45499999998581,-0.0688600415639642 +11092,55.459999999985804,-0.06885995717118282 +11093,55.4649999999858,-0.06885987280452785 +11094,55.469999999985795,-0.06885978846399156 +11095,55.47499999998579,-0.06885970414956619 +11096,55.479999999985786,-0.06885961986124396 +11097,55.48499999998578,-0.06885953559901714 +11098,55.48999999998578,-0.068859451362878 +11099,55.49499999998577,-0.06885936715281876 +11100,55.49999999998577,-0.0688592829688317 +11101,55.50499999998576,-0.06885919881090907 +11102,55.50999999998576,-0.06885911467904314 +11103,55.514999999985754,-0.06885903057322618 +11104,55.51999999998575,-0.06885894649345044 +11105,55.524999999985745,-0.06885886243970818 +11106,55.52999999998574,-0.06885877841199169 +11107,55.534999999985736,-0.06885869441029323 +11108,55.53999999998573,-0.06885861043460509 +11109,55.54499999998573,-0.06885852648491952 +11110,55.54999999998572,-0.06885844256122883 +11111,55.55499999998572,-0.06885835866352528 +11112,55.55999999998571,-0.06885827479180116 +11113,55.56499999998571,-0.06885819094604877 +11114,55.569999999985704,-0.06885810712626037 +11115,55.5749999999857,-0.06885802333242826 +11116,55.579999999985695,-0.06885793956454474 +11117,55.58499999998569,-0.06885785582260211 +11118,55.589999999985686,-0.06885777210659265 +11119,55.59499999998568,-0.06885768841650866 +11120,55.59999999998568,-0.06885760475234246 +11121,55.60499999998567,-0.06885752111408633 +11122,55.60999999998567,-0.0688574375017326 +11123,55.61499999998566,-0.06885735391527355 +11124,55.61999999998566,-0.06885727035470152 +11125,55.624999999985654,-0.0688571868200088 +11126,55.62999999998565,-0.0688571033111877 +11127,55.634999999985645,-0.06885701982823056 +11128,55.63999999998564,-0.06885693637112968 +11129,55.644999999985636,-0.06885685293987738 +11130,55.64999999998563,-0.068856769534466 +11131,55.65499999998563,-0.06885668615488785 +11132,55.65999999998562,-0.06885660280113527 +11133,55.66499999998562,-0.06885651947320058 +11134,55.66999999998561,-0.06885643617107612 +11135,55.67499999998561,-0.0688563528947542 +11136,55.679999999985604,-0.06885626964422718 +11137,55.6849999999856,-0.0688561864194874 +11138,55.689999999985595,-0.0688561032205272 +11139,55.69499999998559,-0.0688560200473389 +11140,55.699999999985586,-0.06885593689991487 +11141,55.70499999998558,-0.06885585377824745 +11142,55.70999999998558,-0.06885577068232898 +11143,55.71499999998557,-0.06885568761215183 +11144,55.71999999998557,-0.06885560456770834 +11145,55.72499999998556,-0.06885552154899087 +11146,55.72999999998556,-0.06885543855599177 +11147,55.734999999985554,-0.06885535558870341 +11148,55.73999999998555,-0.06885527264711816 +11149,55.744999999985545,-0.06885518973122837 +11150,55.74999999998554,-0.06885510684102641 +11151,55.754999999985536,-0.06885502397650466 +11152,55.75999999998553,-0.06885494113765547 +11153,55.76499999998553,-0.06885485832447123 +11154,55.76999999998552,-0.06885477553694432 +11155,55.77499999998552,-0.06885469277506709 +11156,55.77999999998551,-0.06885461003883195 +11157,55.78499999998551,-0.06885452732823127 +11158,55.789999999985504,-0.06885444464325743 +11159,55.7949999999855,-0.06885436198390284 +11160,55.799999999985495,-0.06885427935015986 +11161,55.80499999998549,-0.0688541967420209 +11162,55.809999999985486,-0.06885411415947833 +11163,55.81499999998548,-0.06885403160252455 +11164,55.81999999998548,-0.06885394907115198 +11165,55.82499999998547,-0.06885386656535301 +11166,55.82999999998547,-0.06885378408512004 +11167,55.83499999998546,-0.06885370163044548 +11168,55.83999999998546,-0.06885361920132171 +11169,55.844999999985454,-0.06885353679774116 +11170,55.84999999998545,-0.06885345441969623 +11171,55.854999999985445,-0.06885337206717936 +11172,55.85999999998544,-0.06885328974018293 +11173,55.864999999985436,-0.06885320743869937 +11174,55.86999999998543,-0.06885312516272112 +11175,55.87499999998543,-0.06885304291224056 +11176,55.87999999998542,-0.06885296068725016 +11177,55.88499999998542,-0.0688528784877423 +11178,55.88999999998541,-0.06885279631370944 +11179,55.89499999998541,-0.06885271416514399 +11180,55.899999999985404,-0.0688526320420384 +11181,55.9049999999854,-0.0688525499443851 +11182,55.909999999985395,-0.06885246787217651 +11183,55.91499999998539,-0.06885238582540508 +11184,55.919999999985386,-0.06885230380406325 +11185,55.92499999998538,-0.06885222180814347 +11186,55.92999999998538,-0.06885213983763817 +11187,55.93499999998537,-0.06885205789253981 +11188,55.93999999998537,-0.06885197597284085 +11189,55.94499999998536,-0.0688518940785337 +11190,55.94999999998536,-0.06885181220961085 +11191,55.954999999985354,-0.06885173036606476 +11192,55.95999999998535,-0.06885164854788786 +11193,55.964999999985345,-0.06885156675507265 +11194,55.96999999998534,-0.06885148498761154 +11195,55.974999999985336,-0.06885140324549704 +11196,55.97999999998533,-0.06885132152872159 +11197,55.98499999998533,-0.06885123983727766 +11198,55.98999999998532,-0.06885115817115774 +11199,55.99499999998532,-0.0688510765303543 +11200,55.99999999998531,-0.06885099491485978 +11201,56.00499999998531,-0.06885091332466671 +11202,56.009999999985304,-0.06885083175976753 +11203,56.0149999999853,-0.06885075022015474 +11204,56.019999999985295,-0.06885066870582082 +11205,56.02499999998529,-0.06885058721675825 +11206,56.029999999985286,-0.06885050575295953 +11207,56.03499999998528,-0.06885042431441715 +11208,56.03999999998528,-0.0688503429011236 +11209,56.04499999998527,-0.06885026151307136 +11210,56.04999999998527,-0.06885018015025295 +11211,56.05499999998526,-0.06885009881266085 +11212,56.05999999998526,-0.06885001750028756 +11213,56.064999999985254,-0.0688499362131256 +11214,56.06999999998525,-0.06884985495116748 +11215,56.074999999985245,-0.06884977371440568 +11216,56.07999999998524,-0.06884969250283272 +11217,56.084999999985236,-0.06884961131644113 +11218,56.08999999998523,-0.06884953015522341 +11219,56.09499999998523,-0.06884944901917207 +11220,56.09999999998522,-0.06884936790827963 +11221,56.10499999998522,-0.06884928682253863 +11222,56.10999999998521,-0.06884920576194158 +11223,56.11499999998521,-0.068849124726481 +11224,56.119999999985204,-0.06884904371614942 +11225,56.1249999999852,-0.06884896273093935 +11226,56.129999999985195,-0.06884888177084335 +11227,56.13499999998519,-0.06884880083585394 +11228,56.139999999985186,-0.06884871992596367 +11229,56.14499999998518,-0.06884863904116506 +11230,56.14999999998518,-0.06884855818145066 +11231,56.15499999998517,-0.068848477346813 +11232,56.15999999998517,-0.06884839653724463 +11233,56.16499999998516,-0.06884831575273809 +11234,56.16999999998516,-0.06884823499328595 +11235,56.174999999985154,-0.06884815425888073 +11236,56.17999999998515,-0.06884807354951501 +11237,56.184999999985145,-0.06884799286518133 +11238,56.18999999998514,-0.06884791220587225 +11239,56.194999999985136,-0.06884783157158034 +11240,56.19999999998513,-0.06884775096229813 +11241,56.20499999998513,-0.06884767037801821 +11242,56.20999999998512,-0.06884758981873314 +11243,56.21499999998512,-0.06884750928443549 +11244,56.21999999998511,-0.06884742877511782 +11245,56.22499999998511,-0.0688473482907727 +11246,56.229999999985104,-0.06884726783139271 +11247,56.2349999999851,-0.06884718739697045 +11248,56.239999999985095,-0.06884710698749845 +11249,56.24499999998509,-0.06884702660296932 +11250,56.249999999985086,-0.06884694624337565 +11251,56.25499999998508,-0.06884686590870999 +11252,56.25999999998508,-0.06884678559896494 +11253,56.26499999998507,-0.06884670531413312 +11254,56.26999999998507,-0.06884662505420708 +11255,56.27499999998506,-0.06884654481917944 +11256,56.27999999998506,-0.06884646460904278 +11257,56.284999999985054,-0.06884638442378971 +11258,56.28999999998505,-0.0688463042634128 +11259,56.294999999985045,-0.0688462241279047 +11260,56.29999999998504,-0.06884614401725797 +11261,56.304999999985036,-0.06884606393146524 +11262,56.30999999998503,-0.0688459838705191 +11263,56.31499999998503,-0.06884590383441218 +11264,56.31999999998502,-0.06884582382313709 +11265,56.32499999998502,-0.06884574383668642 +11266,56.32999999998501,-0.0688456638750528 +11267,56.33499999998501,-0.06884558393822884 +11268,56.339999999985004,-0.06884550402620718 +11269,56.344999999985,-0.06884542413898044 +11270,56.349999999984995,-0.06884534427654122 +11271,56.35499999998499,-0.06884526443888218 +11272,56.359999999984986,-0.06884518462599594 +11273,56.36499999998498,-0.06884510483787512 +11274,56.36999999998498,-0.06884502507451234 +11275,56.37499999998497,-0.06884494533590028 +11276,56.37999999998497,-0.06884486562203154 +11277,56.38499999998496,-0.06884478593289876 +11278,56.38999999998496,-0.0688447062684946 +11279,56.394999999984954,-0.06884462662881169 +11280,56.39999999998495,-0.06884454701384267 +11281,56.404999999984945,-0.06884446742358022 +11282,56.40999999998494,-0.06884438785801694 +11283,56.414999999984936,-0.06884430831714554 +11284,56.41999999998493,-0.06884422880095863 +11285,56.42499999998493,-0.06884414930944886 +11286,56.42999999998492,-0.06884406984260895 +11287,56.43499999998492,-0.0688439904004315 +11288,56.43999999998491,-0.06884391098290919 +11289,56.44499999998491,-0.0688438315900347 +11290,56.449999999984904,-0.06884375222180067 +11291,56.4549999999849,-0.06884367287819979 +11292,56.459999999984895,-0.06884359355922472 +11293,56.46499999998489,-0.06884351426486814 +11294,56.469999999984886,-0.0688434349951227 +11295,56.47499999998488,-0.06884335574998113 +11296,56.47999999998488,-0.06884327652943607 +11297,56.48499999998487,-0.06884319733348021 +11298,56.48999999998487,-0.06884311816210623 +11299,56.49499999998486,-0.06884303901530682 +11300,56.49999999998486,-0.06884295989307467 +11301,56.504999999984854,-0.06884288079540246 +11302,56.50999999998485,-0.0688428017222829 +11303,56.514999999984845,-0.06884272267370867 +11304,56.51999999998484,-0.06884264364967246 +11305,56.524999999984836,-0.068842564650167 +11306,56.52999999998483,-0.06884248567518494 +11307,56.53499999998483,-0.06884240672471903 +11308,56.53999999998482,-0.06884232779876194 +11309,56.54499999998482,-0.0688422488973064 +11310,56.54999999998481,-0.06884217002034512 +11311,56.55499999998481,-0.0688420911678708 +11312,56.559999999984804,-0.06884201233987614 +11313,56.5649999999848,-0.06884193353635389 +11314,56.569999999984795,-0.06884185475729673 +11315,56.57499999998479,-0.0688417760026974 +11316,56.579999999984786,-0.06884169727254862 +11317,56.58499999998478,-0.0688416185668431 +11318,56.58999999998478,-0.06884153988557358 +11319,56.59499999998477,-0.06884146122873279 +11320,56.59999999998477,-0.06884138259631344 +11321,56.60499999998476,-0.06884130398830829 +11322,56.60999999998476,-0.06884122540471005 +11323,56.614999999984754,-0.06884114684551146 +11324,56.61999999998475,-0.06884106831070527 +11325,56.624999999984745,-0.0688409898002842 +11326,56.62999999998474,-0.06884091131424103 +11327,56.634999999984736,-0.06884083285256845 +11328,56.63999999998473,-0.06884075441525926 +11329,56.64499999998473,-0.06884067600230617 +11330,56.64999999998472,-0.06884059761370194 +11331,56.65499999998472,-0.06884051924943935 +11332,56.65999999998471,-0.06884044090951111 +11333,56.66499999998471,-0.06884036259390999 +11334,56.669999999984704,-0.06884028430262876 +11335,56.6749999999847,-0.06884020603566018 +11336,56.679999999984695,-0.06884012779299703 +11337,56.68499999998469,-0.06884004957463204 +11338,56.689999999984686,-0.06883997138055799 +11339,56.69499999998468,-0.06883989321076764 +11340,56.699999999984676,-0.06883981506525377 +11341,56.70499999998467,-0.06883973694400917 +11342,56.70999999998467,-0.0688396588470266 +11343,56.71499999998466,-0.06883958077429884 +11344,56.71999999998466,-0.06883950272581867 +11345,56.724999999984654,-0.06883942470157885 +11346,56.72999999998465,-0.0688393467015722 +11347,56.734999999984645,-0.06883926872579148 +11348,56.73999999998464,-0.06883919077422948 +11349,56.744999999984636,-0.068839112846879 +11350,56.74999999998463,-0.06883903494373285 +11351,56.754999999984626,-0.06883895706478377 +11352,56.75999999998462,-0.0688388792100246 +11353,56.76499999998462,-0.06883880137944813 +11354,56.76999999998461,-0.06883872357304714 +11355,56.77499999998461,-0.06883864579081447 +11356,56.779999999984604,-0.0688385680327429 +11357,56.7849999999846,-0.06883849029882523 +11358,56.789999999984595,-0.06883841258905429 +11359,56.79499999998459,-0.06883833490342287 +11360,56.799999999984585,-0.06883825724192379 +11361,56.80499999998458,-0.06883817960454987 +11362,56.809999999984576,-0.0688381019912939 +11363,56.81499999998457,-0.06883802440214874 +11364,56.81999999998457,-0.0688379468371072 +11365,56.82499999998456,-0.06883786929616209 +11366,56.82999999998456,-0.06883779177930621 +11367,56.834999999984554,-0.06883771428653244 +11368,56.83999999998455,-0.06883763681783359 +11369,56.844999999984545,-0.06883755937320246 +11370,56.84999999998454,-0.06883748195263194 +11371,56.854999999984535,-0.06883740455611483 +11372,56.85999999998453,-0.06883732718364395 +11373,56.864999999984526,-0.06883724983521218 +11374,56.86999999998452,-0.06883717251081234 +11375,56.87499999998452,-0.06883709521043727 +11376,56.87999999998451,-0.06883701793407983 +11377,56.88499999998451,-0.06883694068173284 +11378,56.889999999984504,-0.06883686345338919 +11379,56.8949999999845,-0.0688367862490417 +11380,56.899999999984495,-0.06883670906868324 +11381,56.90499999998449,-0.06883663191230664 +11382,56.909999999984485,-0.06883655477990479 +11383,56.91499999998448,-0.06883647767147054 +11384,56.919999999984476,-0.06883640058699675 +11385,56.92499999998447,-0.06883632352647628 +11386,56.92999999998447,-0.068836246489902 +11387,56.93499999998446,-0.06883616947726677 +11388,56.93999999998446,-0.06883609248856347 +11389,56.944999999984454,-0.06883601552378496 +11390,56.94999999998445,-0.06883593858292414 +11391,56.954999999984445,-0.06883586166597387 +11392,56.95999999998444,-0.06883578477292701 +11393,56.964999999984435,-0.06883570790377647 +11394,56.96999999998443,-0.06883563105851512 +11395,56.974999999984426,-0.06883555423713585 +11396,56.97999999998442,-0.06883547743963152 +11397,56.98499999998442,-0.06883540066599506 +11398,56.98999999998441,-0.06883532391621933 +11399,56.99499999998441,-0.06883524719029722 +11400,56.999999999984404,-0.06883517048822166 +11401,57.0049999999844,-0.06883509380998552 +11402,57.009999999984394,-0.0688350171555817 +11403,57.01499999998439,-0.0688349405250031 +11404,57.019999999984385,-0.06883486391824262 +11405,57.02499999998438,-0.06883478733529318 +11406,57.029999999984376,-0.06883471077614768 +11407,57.03499999998437,-0.06883463424079903 +11408,57.03999999998437,-0.06883455772924012 +11409,57.04499999998436,-0.0688344812414639 +11410,57.04999999998436,-0.06883440477746325 +11411,57.054999999984354,-0.0688343283372311 +11412,57.05999999998435,-0.06883425192076038 +11413,57.064999999984344,-0.068834175528044 +11414,57.06999999998434,-0.06883409915907489 +11415,57.074999999984335,-0.06883402281384594 +11416,57.07999999998433,-0.06883394649235014 +11417,57.084999999984326,-0.06883387019458037 +11418,57.08999999998432,-0.06883379392052959 +11419,57.09499999998432,-0.06883371767019071 +11420,57.09999999998431,-0.06883364144355669 +11421,57.10499999998431,-0.06883356524062044 +11422,57.1099999999843,-0.06883348906137492 +11423,57.1149999999843,-0.06883341290581306 +11424,57.119999999984294,-0.06883333677392782 +11425,57.12499999998429,-0.06883326066571212 +11426,57.129999999984285,-0.06883318458115892 +11427,57.13499999998428,-0.06883310852026117 +11428,57.139999999984276,-0.06883303248301183 +11429,57.14499999998427,-0.06883295646940382 +11430,57.14999999998427,-0.06883288047943015 +11431,57.15499999998426,-0.06883280451308373 +11432,57.15999999998426,-0.06883272857035755 +11433,57.16499999998425,-0.06883265265124454 +11434,57.16999999998425,-0.0688325767557377 +11435,57.174999999984244,-0.06883250088382999 +11436,57.17999999998424,-0.06883242503551433 +11437,57.184999999984235,-0.06883234921078375 +11438,57.18999999998423,-0.06883227340963119 +11439,57.194999999984226,-0.06883219763204963 +11440,57.19999999998422,-0.06883212187803205 +11441,57.20499999998422,-0.06883204614757142 +11442,57.20999999998421,-0.06883197044066072 +11443,57.21499999998421,-0.06883189475729296 +11444,57.2199999999842,-0.06883181909746108 +11445,57.2249999999842,-0.06883174346115808 +11446,57.229999999984194,-0.06883166784837697 +11447,57.23499999998419,-0.0688315922591107 +11448,57.239999999984185,-0.06883151669335232 +11449,57.24499999998418,-0.06883144115109477 +11450,57.249999999984176,-0.06883136563233105 +11451,57.25499999998417,-0.0688312901370542 +11452,57.25999999998417,-0.06883121466525718 +11453,57.26499999998416,-0.068831139216933 +11454,57.26999999998416,-0.06883106379207467 +11455,57.27499999998415,-0.06883098839067521 +11456,57.27999999998415,-0.06883091301272759 +11457,57.284999999984144,-0.06883083765822486 +11458,57.28999999998414,-0.06883076232716 +11459,57.294999999984135,-0.06883068701952604 +11460,57.29999999998413,-0.068830611735316 +11461,57.304999999984126,-0.06883053647452289 +11462,57.30999999998412,-0.06883046123713973 +11463,57.31499999998412,-0.06883038602315955 +11464,57.31999999998411,-0.06883031083257536 +11465,57.32499999998411,-0.0688302356653802 +11466,57.3299999999841,-0.0688301605215671 +11467,57.3349999999841,-0.06883008540112907 +11468,57.339999999984094,-0.06883001030405916 +11469,57.34499999998409,-0.06882993523035039 +11470,57.349999999984085,-0.0688298601799958 +11471,57.35499999998408,-0.06882978515298845 +11472,57.359999999984076,-0.06882971014932135 +11473,57.36499999998407,-0.06882963516898755 +11474,57.36999999998407,-0.06882956021198011 +11475,57.37499999998406,-0.06882948527829205 +11476,57.37999999998406,-0.06882941036791644 +11477,57.38499999998405,-0.06882933548084633 +11478,57.38999999998405,-0.06882926061707476 +11479,57.394999999984044,-0.06882918577659478 +11480,57.39999999998404,-0.06882911095939945 +11481,57.404999999984035,-0.06882903616548185 +11482,57.40999999998403,-0.068828961394835 +11483,57.414999999984026,-0.068828886647452 +11484,57.41999999998402,-0.06882881192332589 +11485,57.42499999998402,-0.06882873722244975 +11486,57.42999999998401,-0.06882866254481664 +11487,57.43499999998401,-0.06882858789041962 +11488,57.439999999984,-0.0688285132592518 +11489,57.444999999984,-0.0688284386513062 +11490,57.449999999983994,-0.06882836406657593 +11491,57.45499999998399,-0.06882828950505407 +11492,57.459999999983985,-0.06882821496673369 +11493,57.46499999998398,-0.06882814045160789 +11494,57.469999999983976,-0.0688280659596697 +11495,57.47499999998397,-0.06882799149091227 +11496,57.47999999998397,-0.06882791704532865 +11497,57.48499999998396,-0.06882784262291194 +11498,57.48999999998396,-0.06882776822365524 +11499,57.49499999998395,-0.06882769384755164 +11500,57.49999999998395,-0.06882761949459422 +11501,57.504999999983944,-0.06882754516477609 +11502,57.50999999998394,-0.06882747085809035 +11503,57.514999999983935,-0.0688273965745301 +11504,57.51999999998393,-0.06882732231408845 +11505,57.524999999983926,-0.0688272480767585 +11506,57.52999999998392,-0.06882717386253336 +11507,57.53499999998392,-0.06882709967140613 +11508,57.53999999998391,-0.06882702550336994 +11509,57.54499999998391,-0.06882695135841789 +11510,57.5499999999839,-0.0688268772365431 +11511,57.5549999999839,-0.06882680313773869 +11512,57.559999999983894,-0.06882672906199776 +11513,57.56499999998389,-0.06882665500931345 +11514,57.569999999983885,-0.06882658097967889 +11515,57.57499999998388,-0.0688265069730872 +11516,57.579999999983876,-0.06882643298953152 +11517,57.58499999998387,-0.06882635902900494 +11518,57.58999999998387,-0.06882628509150061 +11519,57.59499999998386,-0.06882621117701167 +11520,57.59999999998386,-0.06882613728553126 +11521,57.60499999998385,-0.06882606341705251 +11522,57.60999999998385,-0.06882598957156857 +11523,57.614999999983844,-0.06882591574907257 +11524,57.61999999998384,-0.06882584194955764 +11525,57.624999999983835,-0.06882576817301696 +11526,57.62999999998383,-0.06882569441944364 +11527,57.634999999983826,-0.06882562068883086 +11528,57.63999999998382,-0.06882554698117174 +11529,57.64499999998382,-0.06882547329645947 +11530,57.64999999998381,-0.06882539963468717 +11531,57.65499999998381,-0.06882532599584804 +11532,57.6599999999838,-0.0688252523799352 +11533,57.6649999999838,-0.0688251787869418 +11534,57.669999999983794,-0.06882510521686105 +11535,57.67499999998379,-0.06882503166968608 +11536,57.679999999983785,-0.06882495814541008 +11537,57.68499999998378,-0.0688248846440262 +11538,57.689999999983776,-0.06882481116552762 +11539,57.69499999998377,-0.0688247377099075 +11540,57.69999999998377,-0.06882466427715904 +11541,57.70499999998376,-0.0688245908672754 +11542,57.70999999998376,-0.06882451748024974 +11543,57.71499999998375,-0.06882444411607527 +11544,57.71999999998375,-0.06882437077474518 +11545,57.724999999983744,-0.06882429745625263 +11546,57.72999999998374,-0.06882422416059081 +11547,57.734999999983735,-0.06882415088775291 +11548,57.73999999998373,-0.06882407763773213 +11549,57.744999999983726,-0.06882400441052165 +11550,57.74999999998372,-0.06882393120611469 +11551,57.75499999998372,-0.0688238580245044 +11552,57.75999999998371,-0.06882378486568402 +11553,57.76499999998371,-0.06882371172964673 +11554,57.7699999999837,-0.06882363861638574 +11555,57.7749999999837,-0.06882356552589425 +11556,57.779999999983694,-0.06882349245816548 +11557,57.78499999998369,-0.06882341941319262 +11558,57.789999999983685,-0.06882334639096886 +11559,57.79499999998368,-0.06882327339148746 +11560,57.799999999983676,-0.0688232004147416 +11561,57.80499999998367,-0.06882312746072453 +11562,57.80999999998367,-0.06882305452942943 +11563,57.81499999998366,-0.06882298162084953 +11564,57.81999999998366,-0.06882290873497807 +11565,57.82499999998365,-0.06882283587180825 +11566,57.82999999998365,-0.0688227630313333 +11567,57.834999999983644,-0.06882269021354646 +11568,57.83999999998364,-0.06882261741844095 +11569,57.844999999983635,-0.06882254464601002 +11570,57.84999999998363,-0.06882247189624688 +11571,57.854999999983626,-0.06882239916914477 +11572,57.85999999998362,-0.06882232646469692 +11573,57.86499999998362,-0.0688222537828966 +11574,57.86999999998361,-0.06882218112373703 +11575,57.87499999998361,-0.06882210848721144 +11576,57.8799999999836,-0.0688220358733131 +11577,57.8849999999836,-0.06882196328203524 +11578,57.889999999983594,-0.06882189071337112 +11579,57.89499999998359,-0.06882181816731398 +11580,57.899999999983585,-0.06882174564385708 +11581,57.90499999998358,-0.06882167314299367 +11582,57.909999999983576,-0.06882160066471703 +11583,57.91499999998357,-0.06882152820902038 +11584,57.91999999998357,-0.06882145577589699 +11585,57.92499999998356,-0.06882138336534016 +11586,57.92999999998356,-0.0688213109773431 +11587,57.93499999998355,-0.06882123861189912 +11588,57.93999999998355,-0.06882116626900146 +11589,57.944999999983544,-0.06882109394864341 +11590,57.94999999998354,-0.06882102165081823 +11591,57.954999999983535,-0.06882094937551919 +11592,57.95999999998353,-0.06882087712273958 +11593,57.964999999983526,-0.06882080489247268 +11594,57.96999999998352,-0.06882073268471176 +11595,57.97499999998352,-0.0688206604994501 +11596,57.97999999998351,-0.06882058833668099 +11597,57.98499999998351,-0.0688205161963977 +11598,57.9899999999835,-0.06882044407859356 +11599,57.9949999999835,-0.06882037198326181 +11600,57.999999999983494,-0.06882029991039576 +11601,58.00499999998349,-0.06882022785998872 +11602,58.009999999983485,-0.06882015583203396 +11603,58.01499999998348,-0.0688200838265248 +11604,58.019999999983476,-0.06882001184345451 +11605,58.02499999998347,-0.06881993988281641 +11606,58.02999999998347,-0.06881986794460382 +11607,58.03499999998346,-0.06881979602881001 +11608,58.03999999998346,-0.06881972413542832 +11609,58.04499999998345,-0.06881965226445204 +11610,58.04999999998345,-0.06881958041587447 +11611,58.054999999983444,-0.06881950858968895 +11612,58.05999999998344,-0.06881943678588878 +11613,58.064999999983435,-0.06881936500446728 +11614,58.06999999998343,-0.06881929324541777 +11615,58.074999999983426,-0.06881922150873357 +11616,58.07999999998342,-0.068819149794408 +11617,58.08499999998342,-0.06881907810243437 +11618,58.08999999998341,-0.06881900643280603 +11619,58.09499999998341,-0.0688189347855163 +11620,58.0999999999834,-0.0688188631605585 +11621,58.1049999999834,-0.06881879155792597 +11622,58.109999999983394,-0.06881871997761206 +11623,58.11499999998339,-0.06881864841961009 +11624,58.119999999983385,-0.06881857688391338 +11625,58.12499999998338,-0.0688185053705153 +11626,58.129999999983376,-0.06881843387940917 +11627,58.13499999998337,-0.06881836241058835 +11628,58.13999999998337,-0.06881829096404618 +11629,58.14499999998336,-0.06881821953977602 +11630,58.14999999998336,-0.06881814813777118 +11631,58.15499999998335,-0.06881807675802505 +11632,58.15999999998335,-0.06881800540053097 +11633,58.164999999983344,-0.06881793406528229 +11634,58.16999999998334,-0.06881786275227236 +11635,58.174999999983335,-0.06881779146149457 +11636,58.17999999998333,-0.06881772019294224 +11637,58.184999999983326,-0.06881764894660877 +11638,58.18999999998332,-0.0688175777224875 +11639,58.19499999998332,-0.06881750652057181 +11640,58.19999999998331,-0.06881743534085506 +11641,58.20499999998331,-0.06881736418333062 +11642,58.2099999999833,-0.06881729304799188 +11643,58.2149999999833,-0.06881722193483218 +11644,58.219999999983294,-0.06881715084384492 +11645,58.22499999998329,-0.06881707977502348 +11646,58.229999999983285,-0.06881700872836123 +11647,58.23499999998328,-0.06881693770385156 +11648,58.239999999983276,-0.06881686670148784 +11649,58.24499999998327,-0.06881679572126348 +11650,58.24999999998327,-0.06881672476317184 +11651,58.25499999998326,-0.06881665382720631 +11652,58.25999999998326,-0.0688165829133603 +11653,58.26499999998325,-0.06881651202162721 +11654,58.26999999998325,-0.0688164411520004 +11655,58.274999999983244,-0.06881637030447331 +11656,58.27999999998324,-0.0688162994790393 +11657,58.284999999983235,-0.06881622867569179 +11658,58.28999999998323,-0.06881615789442418 +11659,58.294999999983226,-0.06881608713522988 +11660,58.29999999998322,-0.0688160163981023 +11661,58.30499999998322,-0.06881594568303481 +11662,58.30999999998321,-0.06881587499002087 +11663,58.31499999998321,-0.06881580431905387 +11664,58.3199999999832,-0.06881573367012722 +11665,58.3249999999832,-0.06881566304323435 +11666,58.329999999983194,-0.06881559243836866 +11667,58.33499999998319,-0.06881552185552359 +11668,58.339999999983185,-0.06881545129469253 +11669,58.34499999998318,-0.06881538075586895 +11670,58.349999999983176,-0.06881531023904625 +11671,58.35499999998317,-0.06881523974421784 +11672,58.35999999998317,-0.06881516927137718 +11673,58.36499999998316,-0.06881509882051767 +11674,58.36999999998316,-0.06881502839163278 +11675,58.37499999998315,-0.06881495798471592 +11676,58.37999999998315,-0.06881488759976052 +11677,58.384999999983144,-0.06881481723676006 +11678,58.38999999998314,-0.06881474689570793 +11679,58.394999999983135,-0.06881467657659761 +11680,58.39999999998313,-0.06881460627942253 +11681,58.404999999983126,-0.06881453600417613 +11682,58.40999999998312,-0.06881446575085186 +11683,58.41499999998312,-0.06881439551944317 +11684,58.41999999998311,-0.06881432530994351 +11685,58.42499999998311,-0.06881425512234636 +11686,58.4299999999831,-0.06881418495664514 +11687,58.4349999999831,-0.06881411481283332 +11688,58.439999999983094,-0.06881404469090437 +11689,58.44499999998309,-0.06881397459085173 +11690,58.449999999983085,-0.06881390451266889 +11691,58.45499999998308,-0.0688138344563493 +11692,58.459999999983076,-0.06881376442188641 +11693,58.46499999998307,-0.06881369440927373 +11694,58.46999999998307,-0.0688136244185047 +11695,58.47499999998306,-0.06881355444957281 +11696,58.47999999998306,-0.06881348450247152 +11697,58.48499999998305,-0.0688134145771943 +11698,58.48999999998305,-0.06881334467373465 +11699,58.494999999983044,-0.06881327479208603 +11700,58.49999999998304,-0.06881320493224195 +11701,58.504999999983035,-0.06881313509419586 +11702,58.50999999998303,-0.06881306527794126 +11703,58.514999999983026,-0.06881299548347165 +11704,58.51999999998302,-0.06881292571078051 +11705,58.52499999998302,-0.06881285595986134 +11706,58.52999999998301,-0.06881278623070762 +11707,58.53499999998301,-0.06881271652331285 +11708,58.539999999983,-0.06881264683767052 +11709,58.544999999983,-0.06881257717377413 +11710,58.549999999982994,-0.06881250753161719 +11711,58.55499999998299,-0.06881243791119321 +11712,58.559999999982985,-0.06881236831249567 +11713,58.56499999998298,-0.06881229873551808 +11714,58.569999999982976,-0.06881222918025398 +11715,58.57499999998297,-0.06881215964669685 +11716,58.57999999998297,-0.0688120901348402 +11717,58.58499999998296,-0.06881202064467756 +11718,58.58999999998296,-0.06881195117620244 +11719,58.59499999998295,-0.06881188172940836 +11720,58.59999999998295,-0.06881181230428883 +11721,58.604999999982944,-0.06881174290083739 +11722,58.60999999998294,-0.06881167351904754 +11723,58.614999999982935,-0.06881160415891283 +11724,58.61999999998293,-0.06881153482042678 +11725,58.624999999982926,-0.0688114655035829 +11726,58.62999999998292,-0.06881139620837473 +11727,58.63499999998292,-0.06881132693479582 +11728,58.63999999998291,-0.06881125768283969 +11729,58.64499999998291,-0.06881118845249987 +11730,58.6499999999829,-0.0688111192437699 +11731,58.6549999999829,-0.06881105005664333 +11732,58.659999999982894,-0.06881098089111369 +11733,58.66499999998289,-0.06881091174717453 +11734,58.669999999982885,-0.0688108426248194 +11735,58.67499999998288,-0.06881077352404186 +11736,58.679999999982876,-0.06881070444483542 +11737,58.68499999998287,-0.06881063538719367 +11738,58.68999999998287,-0.06881056635111014 +11739,58.69499999998286,-0.06881049733657839 +11740,58.69999999998286,-0.06881042834359198 +11741,58.70499999998285,-0.06881035937214448 +11742,58.70999999998285,-0.06881029042222943 +11743,58.714999999982844,-0.0688102214938404 +11744,58.71999999998284,-0.06881015258697096 +11745,58.724999999982835,-0.06881008370161466 +11746,58.72999999998283,-0.06881001483776508 +11747,58.734999999982826,-0.0688099459954158 +11748,58.73999999998282,-0.06880987717456039 +11749,58.74499999998282,-0.06880980837519239 +11750,58.74999999998281,-0.06880973959730541 +11751,58.75499999998281,-0.06880967084089303 +11752,58.7599999999828,-0.06880960210594879 +11753,58.7649999999828,-0.0688095333924663 +11754,58.769999999982794,-0.06880946470043915 +11755,58.77499999998279,-0.06880939602986091 +11756,58.779999999982785,-0.06880932738072516 +11757,58.78499999998278,-0.06880925875302552 +11758,58.789999999982776,-0.06880919014675554 +11759,58.79499999998277,-0.06880912156190884 +11760,58.79999999998277,-0.068809052998479 +11761,58.80499999998276,-0.06880898445645962 +11762,58.80999999998276,-0.06880891593584432 +11763,58.81499999998275,-0.06880884743662666 +11764,58.81999999998275,-0.06880877895880025 +11765,58.824999999982744,-0.0688087105023587 +11766,58.82999999998274,-0.06880864206729564 +11767,58.834999999982735,-0.06880857365360464 +11768,58.83999999998273,-0.06880850526127932 +11769,58.844999999982726,-0.0688084368903133 +11770,58.84999999998272,-0.06880836854070016 +11771,58.85499999998272,-0.06880830021243355 +11772,58.85999999998271,-0.06880823190550708 +11773,58.86499999998271,-0.06880816361991438 +11774,58.8699999999827,-0.06880809535564904 +11775,58.8749999999827,-0.06880802711270469 +11776,58.879999999982694,-0.06880795889107495 +11777,58.88499999998269,-0.06880789069075345 +11778,58.889999999982685,-0.06880782251173383 +11779,58.89499999998268,-0.06880775435400972 +11780,58.899999999982676,-0.06880768621757473 +11781,58.90499999998267,-0.0688076181024225 +11782,58.90999999998267,-0.06880755000854666 +11783,58.91499999998266,-0.06880748193594086 +11784,58.91999999998266,-0.06880741388459871 +11785,58.92499999998265,-0.0688073458545139 +11786,58.92999999998265,-0.06880727784568004 +11787,58.934999999982644,-0.06880720985809076 +11788,58.93999999998264,-0.06880714189173973 +11789,58.944999999982635,-0.06880707394662058 +11790,58.94999999998263,-0.06880700602272696 +11791,58.954999999982626,-0.06880693812005255 +11792,58.95999999998262,-0.06880687023859097 +11793,58.964999999982616,-0.06880680237833589 +11794,58.96999999998261,-0.06880673453928095 +11795,58.97499999998261,-0.06880666672141983 +11796,58.9799999999826,-0.06880659892474618 +11797,58.9849999999826,-0.06880653114925366 +11798,58.989999999982594,-0.06880646339493593 +11799,58.99499999998259,-0.06880639566178667 +11800,58.999999999982585,-0.06880632794979953 +11801,59.00499999998258,-0.06880626025896819 +11802,59.009999999982576,-0.06880619258928632 +11803,59.01499999998257,-0.06880612494074759 +11804,59.019999999982566,-0.06880605731334567 +11805,59.02499999998256,-0.06880598970707426 +11806,59.02999999998256,-0.06880592212192702 +11807,59.03499999998255,-0.06880585455789762 +11808,59.03999999998255,-0.06880578701497976 +11809,59.044999999982544,-0.06880571949316712 +11810,59.04999999998254,-0.06880565199245338 +11811,59.054999999982535,-0.06880558451283222 +11812,59.05999999998253,-0.06880551705429735 +11813,59.064999999982525,-0.06880544961684246 +11814,59.06999999998252,-0.06880538220046122 +11815,59.074999999982516,-0.06880531480514733 +11816,59.07999999998251,-0.06880524743089451 +11817,59.08499999998251,-0.06880518007769644 +11818,59.0899999999825,-0.06880511274554682 +11819,59.0949999999825,-0.06880504543443937 +11820,59.099999999982494,-0.06880497814436777 +11821,59.10499999998249,-0.06880491087532574 +11822,59.109999999982485,-0.06880484362730696 +11823,59.11499999998248,-0.06880477640030518 +11824,59.119999999982475,-0.06880470919431408 +11825,59.12499999998247,-0.0688046420093274 +11826,59.129999999982466,-0.06880457484533883 +11827,59.13499999998246,-0.0688045077023421 +11828,59.13999999998246,-0.06880444058033093 +11829,59.14499999998245,-0.06880437347929903 +11830,59.14999999998245,-0.06880430639924014 +11831,59.154999999982444,-0.06880423934014795 +11832,59.15999999998244,-0.06880417230201623 +11833,59.164999999982435,-0.06880410528483867 +11834,59.16999999998243,-0.06880403828860901 +11835,59.174999999982425,-0.06880397131332099 +11836,59.17999999998242,-0.06880390435896833 +11837,59.184999999982416,-0.06880383742554477 +11838,59.18999999998241,-0.06880377051304405 +11839,59.19499999998241,-0.06880370362145992 +11840,59.1999999999824,-0.0688036367507861 +11841,59.2049999999824,-0.06880356990101633 +11842,59.209999999982394,-0.06880350307214436 +11843,59.21499999998239,-0.06880343626416395 +11844,59.219999999982385,-0.06880336947706883 +11845,59.22499999998238,-0.06880330271085276 +11846,59.229999999982375,-0.06880323596550948 +11847,59.23499999998237,-0.06880316924103276 +11848,59.239999999982366,-0.06880310253741634 +11849,59.24499999998236,-0.06880303585465397 +11850,59.24999999998236,-0.06880296919273941 +11851,59.25499999998235,-0.06880290255166643 +11852,59.25999999998235,-0.0688028359314288 +11853,59.264999999982344,-0.06880276933202026 +11854,59.26999999998234,-0.0688027027534346 +11855,59.274999999982334,-0.06880263619566557 +11856,59.27999999998233,-0.06880256965870694 +11857,59.284999999982325,-0.0688025031425525 +11858,59.28999999998232,-0.06880243664719599 +11859,59.294999999982316,-0.0688023701726312 +11860,59.29999999998231,-0.06880230371885192 +11861,59.30499999998231,-0.0688022372858519 +11862,59.3099999999823,-0.06880217087362495 +11863,59.3149999999823,-0.06880210448216482 +11864,59.319999999982294,-0.06880203811146532 +11865,59.32499999998229,-0.06880197176152023 +11866,59.329999999982284,-0.06880190543232333 +11867,59.33499999998228,-0.0688018391238684 +11868,59.339999999982275,-0.06880177283614926 +11869,59.34499999998227,-0.06880170656915967 +11870,59.349999999982266,-0.06880164032289343 +11871,59.35499999998226,-0.06880157409734436 +11872,59.35999999998226,-0.06880150789250622 +11873,59.36499999998225,-0.06880144170837285 +11874,59.36999999998225,-0.06880137554493802 +11875,59.37499999998224,-0.06880130940219556 +11876,59.37999999998224,-0.06880124328013924 +11877,59.384999999982234,-0.0688011771787629 +11878,59.38999999998223,-0.06880111109806034 +11879,59.394999999982225,-0.06880104503802535 +11880,59.39999999998222,-0.06880097899865176 +11881,59.404999999982216,-0.06880091297993339 +11882,59.40999999998221,-0.06880084698186405 +11883,59.41499999998221,-0.06880078100443754 +11884,59.4199999999822,-0.0688007150476477 +11885,59.4249999999822,-0.06880064911148834 +11886,59.42999999998219,-0.0688005831959533 +11887,59.43499999998219,-0.06880051730103637 +11888,59.439999999982184,-0.0688004514267314 +11889,59.44499999998218,-0.06880038557303221 +11890,59.449999999982175,-0.06880031973993264 +11891,59.45499999998217,-0.06880025392742653 +11892,59.459999999982166,-0.0688001881355077 +11893,59.46499999998216,-0.06880012236416998 +11894,59.46999999998216,-0.06880005661340721 +11895,59.47499999998215,-0.06879999088321323 +11896,59.47999999998215,-0.06879992517358188 +11897,59.48499999998214,-0.06879985948450701 +11898,59.48999999998214,-0.06879979381598246 +11899,59.494999999982134,-0.06879972816800206 +11900,59.49999999998213,-0.06879966254055968 +11901,59.504999999982125,-0.06879959693364918 +11902,59.50999999998212,-0.06879953134726437 +11903,59.514999999982116,-0.06879946578139912 +11904,59.51999999998211,-0.0687994002360473 +11905,59.52499999998211,-0.06879933471120277 +11906,59.5299999999821,-0.06879926920685935 +11907,59.5349999999821,-0.06879920372301095 +11908,59.53999999998209,-0.06879913825965141 +11909,59.54499999998209,-0.06879907281677457 +11910,59.549999999982084,-0.06879900739437433 +11911,59.55499999998208,-0.06879894199244455 +11912,59.559999999982075,-0.06879887661097907 +11913,59.56499999998207,-0.0687988112499718 +11914,59.569999999982066,-0.06879874590941658 +11915,59.57499999998206,-0.06879868058930731 +11916,59.57999999998206,-0.06879861528963785 +11917,59.58499999998205,-0.06879855001040208 +11918,59.58999999998205,-0.06879848475159389 +11919,59.59499999998204,-0.06879841951320716 +11920,59.59999999998204,-0.06879835429523576 +11921,59.604999999982034,-0.06879828909767358 +11922,59.60999999998203,-0.0687982239205145 +11923,59.614999999982025,-0.06879815876375243 +11924,59.61999999998202,-0.06879809362738126 +11925,59.624999999982016,-0.06879802851139487 +11926,59.62999999998201,-0.06879796341578714 +11927,59.63499999998201,-0.06879789834055199 +11928,59.639999999982,-0.06879783328568329 +11929,59.644999999982,-0.06879776825117496 +11930,59.64999999998199,-0.0687977032370209 +11931,59.65499999998199,-0.06879763824321501 +11932,59.659999999981984,-0.06879757326975118 +11933,59.66499999998198,-0.06879750831662335 +11934,59.669999999981975,-0.0687974433838254 +11935,59.67499999998197,-0.06879737847135124 +11936,59.679999999981966,-0.06879731357919479 +11937,59.68499999998196,-0.06879724870734996 +11938,59.68999999998196,-0.06879718385581067 +11939,59.69499999998195,-0.06879711902457084 +11940,59.69999999998195,-0.06879705421362436 +11941,59.70499999998194,-0.06879698942296518 +11942,59.70999999998194,-0.06879692465258723 +11943,59.714999999981934,-0.0687968599024844 +11944,59.71999999998193,-0.06879679517265064 +11945,59.724999999981925,-0.06879673046307985 +11946,59.72999999998192,-0.068796665773766 +11947,59.734999999981916,-0.06879660110470298 +11948,59.73999999998191,-0.06879653645588477 +11949,59.74499999998191,-0.06879647182730525 +11950,59.7499999999819,-0.0687964072189584 +11951,59.7549999999819,-0.06879634263083813 +11952,59.75999999998189,-0.06879627806293838 +11953,59.76499999998189,-0.06879621351525311 +11954,59.769999999981884,-0.06879614898777625 +11955,59.77499999998188,-0.06879608448050174 +11956,59.779999999981875,-0.06879601999342354 +11957,59.78499999998187,-0.0687959555265356 +11958,59.789999999981866,-0.06879589107983185 +11959,59.79499999998186,-0.06879582665330625 +11960,59.79999999998186,-0.06879576224695276 +11961,59.80499999998185,-0.06879569786076535 +11962,59.80999999998185,-0.06879563349473794 +11963,59.81499999998184,-0.06879556914886452 +11964,59.81999999998184,-0.06879550482313902 +11965,59.824999999981834,-0.06879544051755546 +11966,59.82999999998183,-0.06879537623210773 +11967,59.834999999981825,-0.06879531196678984 +11968,59.83999999998182,-0.06879524772159575 +11969,59.844999999981816,-0.06879518349651942 +11970,59.84999999998181,-0.06879511929155482 +11971,59.85499999998181,-0.06879505510669595 +11972,59.8599999999818,-0.06879499094193677 +11973,59.8649999999818,-0.06879492679727123 +11974,59.86999999998179,-0.06879486267269334 +11975,59.87499999998179,-0.06879479856819706 +11976,59.879999999981784,-0.06879473448377639 +11977,59.88499999998178,-0.06879467041942532 +11978,59.889999999981775,-0.0687946063751378 +11979,59.89499999998177,-0.06879454235090784 +11980,59.899999999981766,-0.06879447834672942 +11981,59.90499999998176,-0.06879441436259655 +11982,59.90999999998176,-0.06879435039850318 +11983,59.91499999998175,-0.06879428645444334 +11984,59.91999999998175,-0.06879422253041101 +11985,59.92499999998174,-0.06879415862640019 +11986,59.92999999998174,-0.06879409474240489 +11987,59.934999999981734,-0.06879403087841908 +11988,59.93999999998173,-0.06879396703443681 +11989,59.944999999981725,-0.06879390321045205 +11990,59.94999999998172,-0.0687938394064588 +11991,59.954999999981716,-0.06879377562245108 +11992,59.95999999998171,-0.06879371185842291 +11993,59.96499999998171,-0.06879364811436828 +11994,59.9699999999817,-0.06879358439028123 +11995,59.9749999999817,-0.06879352068615574 +11996,59.97999999998169,-0.06879345700198586 +11997,59.98499999998169,-0.06879339333776557 +11998,59.989999999981684,-0.06879332969348893 +11999,59.99499999998168,-0.06879326606914993 +12000,59.999999999981675,-0.06879320246474259 +12001,60.00499999998167,-0.06879313888026097 +12002,60.009999999981666,-0.06879307531569907 +12003,60.01499999998166,-0.06879301177105093 +12004,60.01999999998166,-0.06879294824631058 +12005,60.02499999998165,-0.06879288474147202 +12006,60.02999999998165,-0.06879282125652934 +12007,60.03499999998164,-0.06879275779147653 +12008,60.03999999998164,-0.06879269434630764 +12009,60.044999999981634,-0.06879263092101671 +12010,60.04999999998163,-0.06879256751559779 +12011,60.054999999981625,-0.06879250413004491 +12012,60.05999999998162,-0.0687924407643521 +12013,60.064999999981616,-0.06879237741851343 +12014,60.06999999998161,-0.06879231409252295 +12015,60.07499999998161,-0.0687922507863747 +12016,60.0799999999816,-0.0687921875000627 +12017,60.0849999999816,-0.06879212423358107 +12018,60.08999999998159,-0.06879206098692381 +12019,60.09499999998159,-0.06879199776008499 +12020,60.099999999981584,-0.06879193455305865 +12021,60.10499999998158,-0.06879187136583889 +12022,60.109999999981575,-0.06879180819841975 +12023,60.11499999998157,-0.06879174505079527 +12024,60.119999999981566,-0.06879168192295955 +12025,60.12499999998156,-0.06879161881490664 +12026,60.12999999998156,-0.06879155572663061 +12027,60.13499999998155,-0.06879149265812552 +12028,60.13999999998155,-0.06879142960938546 +12029,60.14499999998154,-0.0687913665804045 +12030,60.14999999998154,-0.0687913035711767 +12031,60.154999999981534,-0.06879124058169614 +12032,60.15999999998153,-0.06879117761195691 +12033,60.164999999981525,-0.06879111466195309 +12034,60.16999999998152,-0.06879105173167875 +12035,60.174999999981516,-0.06879098882112797 +12036,60.17999999998151,-0.06879092593029484 +12037,60.18499999998151,-0.06879086305917347 +12038,60.1899999999815,-0.0687908002077579 +12039,60.1949999999815,-0.06879073737604226 +12040,60.19999999998149,-0.06879067456402063 +12041,60.20499999998149,-0.06879061177168712 +12042,60.209999999981484,-0.06879054899903578 +12043,60.21499999998148,-0.06879048624606075 +12044,60.219999999981475,-0.06879042351275612 +12045,60.22499999998147,-0.06879036079911598 +12046,60.229999999981466,-0.06879029810513443 +12047,60.23499999998146,-0.06879023543080558 +12048,60.23999999998146,-0.06879017277612354 +12049,60.24499999998145,-0.06879011014108241 +12050,60.24999999998145,-0.0687900475256763 +12051,60.25499999998144,-0.06878998492989934 +12052,60.25999999998144,-0.0687899223537456 +12053,60.264999999981434,-0.06878985979720925 +12054,60.26999999998143,-0.06878979726028436 +12055,60.274999999981425,-0.06878973474296507 +12056,60.27999999998142,-0.06878967224524549 +12057,60.284999999981416,-0.06878960976711973 +12058,60.28999999998141,-0.06878954730858193 +12059,60.29499999998141,-0.0687894848696262 +12060,60.2999999999814,-0.06878942245024669 +12061,60.3049999999814,-0.06878936005043751 +12062,60.30999999998139,-0.0687892976701928 +12063,60.31499999998139,-0.06878923530950666 +12064,60.319999999981384,-0.06878917296837327 +12065,60.32499999998138,-0.06878911064678672 +12066,60.329999999981375,-0.06878904834474119 +12067,60.33499999998137,-0.06878898606223077 +12068,60.339999999981366,-0.06878892379924964 +12069,60.34499999998136,-0.06878886155579193 +12070,60.34999999998136,-0.06878879933185177 +12071,60.35499999998135,-0.06878873712742331 +12072,60.35999999998135,-0.0687886749425007 +12073,60.36499999998134,-0.06878861277707808 +12074,60.36999999998134,-0.06878855063114962 +12075,60.374999999981334,-0.06878848850470946 +12076,60.37999999998133,-0.06878842639775175 +12077,60.384999999981325,-0.06878836431027065 +12078,60.38999999998132,-0.06878830224226032 +12079,60.394999999981316,-0.0687882401937149 +12080,60.39999999998131,-0.06878817816462857 +12081,60.40499999998131,-0.06878811615499547 +12082,60.4099999999813,-0.06878805416480978 +12083,60.4149999999813,-0.06878799219406567 +12084,60.41999999998129,-0.06878793024275728 +12085,60.42499999998129,-0.06878786831087881 +12086,60.429999999981284,-0.06878780639842441 +12087,60.43499999998128,-0.06878774450538826 +12088,60.439999999981275,-0.06878768263176453 +12089,60.44499999998127,-0.0687876207775474 +12090,60.449999999981266,-0.06878755894273103 +12091,60.45499999998126,-0.06878749712730962 +12092,60.45999999998126,-0.06878743533127735 +12093,60.46499999998125,-0.06878737355462838 +12094,60.46999999998125,-0.06878731179735692 +12095,60.47499999998124,-0.06878725005945714 +12096,60.47999999998124,-0.06878718834092322 +12097,60.484999999981234,-0.06878712664174937 +12098,60.48999999998123,-0.06878706496192975 +12099,60.494999999981225,-0.0687870033014586 +12100,60.49999999998122,-0.06878694166033007 +12101,60.504999999981216,-0.06878688003853838 +12102,60.50999999998121,-0.0687868184360777 +12103,60.51499999998121,-0.06878675685294225 +12104,60.5199999999812,-0.06878669528912622 +12105,60.5249999999812,-0.06878663374462382 +12106,60.52999999998119,-0.06878657221942924 +12107,60.53499999998119,-0.06878651071353671 +12108,60.539999999981184,-0.06878644922694044 +12109,60.54499999998118,-0.0687863877596346 +12110,60.549999999981175,-0.06878632631161342 +12111,60.55499999998117,-0.06878626488287112 +12112,60.559999999981166,-0.06878620347340192 +12113,60.56499999998116,-0.06878614208320001 +12114,60.56999999998116,-0.06878608071225963 +12115,60.57499999998115,-0.06878601936057499 +12116,60.57999999998115,-0.0687859580281403 +12117,60.58499999998114,-0.0687858967149498 +12118,60.58999999998114,-0.06878583542099771 +12119,60.594999999981134,-0.06878577414627826 +12120,60.59999999998113,-0.06878571289078567 +12121,60.604999999981125,-0.06878565165451415 +12122,60.60999999998112,-0.06878559043745795 +12123,60.614999999981116,-0.06878552923961131 +12124,60.61999999998111,-0.06878546806096845 +12125,60.62499999998111,-0.06878540690152361 +12126,60.6299999999811,-0.06878534576127103 +12127,60.6349999999811,-0.06878528464020495 +12128,60.63999999998109,-0.06878522353831962 +12129,60.64499999998109,-0.06878516245560926 +12130,60.649999999981084,-0.06878510139206812 +12131,60.65499999998108,-0.06878504034769044 +12132,60.659999999981075,-0.06878497932247048 +12133,60.66499999998107,-0.06878491831640249 +12134,60.669999999981066,-0.0687848573294807 +12135,60.67499999998106,-0.06878479636169939 +12136,60.67999999998106,-0.06878473541305281 +12137,60.68499999998105,-0.06878467448353522 +12138,60.68999999998105,-0.06878461357314085 +12139,60.69499999998104,-0.06878455268186397 +12140,60.69999999998104,-0.06878449180969885 +12141,60.704999999981034,-0.06878443095663973 +12142,60.70999999998103,-0.06878437012268092 +12143,60.714999999981025,-0.06878430930781664 +12144,60.71999999998102,-0.06878424851204117 +12145,60.724999999981016,-0.06878418773534876 +12146,60.72999999998101,-0.06878412697773374 +12147,60.73499999998101,-0.06878406623919033 +12148,60.739999999981,-0.06878400551971281 +12149,60.744999999981,-0.06878394481929548 +12150,60.74999999998099,-0.06878388413793259 +12151,60.75499999998099,-0.06878382347561844 +12152,60.759999999980984,-0.0687837628323473 +12153,60.76499999998098,-0.06878370220811345 +12154,60.769999999980975,-0.06878364160291116 +12155,60.77499999998097,-0.06878358101673475 +12156,60.779999999980966,-0.06878352044957847 +12157,60.78499999998096,-0.06878345990143664 +12158,60.78999999998096,-0.06878339937230354 +12159,60.79499999998095,-0.06878333886217347 +12160,60.79999999998095,-0.06878327837104072 +12161,60.80499999998094,-0.06878321789889955 +12162,60.80999999998094,-0.06878315744574431 +12163,60.814999999980934,-0.06878309701156927 +12164,60.81999999998093,-0.06878303659636874 +12165,60.824999999980925,-0.068782976200137 +12166,60.82999999998092,-0.06878291582286838 +12167,60.834999999980916,-0.06878285546455719 +12168,60.83999999998091,-0.06878279512519772 +12169,60.84499999998091,-0.06878273480478428 +12170,60.8499999999809,-0.06878267450331119 +12171,60.8549999999809,-0.06878261422077274 +12172,60.85999999998089,-0.06878255395716328 +12173,60.86499999998089,-0.06878249371247708 +12174,60.869999999980884,-0.06878243348670848 +12175,60.87499999998088,-0.06878237327985182 +12176,60.879999999980875,-0.06878231309190139 +12177,60.88499999998087,-0.06878225292285152 +12178,60.889999999980866,-0.06878219277269654 +12179,60.89499999998086,-0.06878213264143077 +12180,60.89999999998086,-0.06878207252904853 +12181,60.90499999998085,-0.06878201243554415 +12182,60.90999999998085,-0.06878195236091197 +12183,60.91499999998084,-0.06878189230514632 +12184,60.91999999998084,-0.06878183226824151 +12185,60.924999999980834,-0.06878177225019193 +12186,60.92999999998083,-0.06878171225099186 +12187,60.934999999980825,-0.06878165227063567 +12188,60.93999999998082,-0.06878159230911766 +12189,60.944999999980816,-0.06878153236643224 +12190,60.94999999998081,-0.06878147244257368 +12191,60.95499999998081,-0.06878141253753639 +12192,60.9599999999808,-0.06878135265131466 +12193,60.9649999999808,-0.06878129278390288 +12194,60.96999999998079,-0.0687812329352954 +12195,60.97499999998079,-0.06878117310548654 +12196,60.979999999980784,-0.06878111329447066 +12197,60.98499999998078,-0.06878105350224213 +12198,60.989999999980775,-0.0687809937287953 +12199,60.99499999998077,-0.06878093397412452 +12200,60.999999999980766,-0.06878087423822415 +12201,61.00499999998076,-0.06878081452108857 +12202,61.00999999998076,-0.06878075482271215 +12203,61.01499999998075,-0.06878069514308921 +12204,61.01999999998075,-0.06878063548221414 +12205,61.02499999998074,-0.0687805758400813 +12206,61.02999999998074,-0.0687805162166851 +12207,61.034999999980734,-0.06878045661201987 +12208,61.03999999998073,-0.06878039702607998 +12209,61.044999999980725,-0.06878033745885982 +12210,61.04999999998072,-0.06878027791035377 +12211,61.054999999980716,-0.06878021838055619 +12212,61.05999999998071,-0.06878015886946147 +12213,61.06499999998071,-0.068780099377064 +12214,61.0699999999807,-0.06878003990335815 +12215,61.0749999999807,-0.06877998044833832 +12216,61.07999999998069,-0.06877992101199885 +12217,61.08499999998069,-0.06877986159433418 +12218,61.089999999980684,-0.06877980219533868 +12219,61.09499999998068,-0.06877974281500673 +12220,61.099999999980675,-0.06877968345333274 +12221,61.10499999998067,-0.06877962411031109 +12222,61.109999999980666,-0.06877956478593618 +12223,61.11499999998066,-0.06877950548020241 +12224,61.11999999998066,-0.06877944619310417 +12225,61.12499999998065,-0.06877938692463588 +12226,61.12999999998065,-0.06877932767479192 +12227,61.13499999998064,-0.06877926844356669 +12228,61.13999999998064,-0.06877920923095462 +12229,61.144999999980634,-0.06877915003695012 +12230,61.14999999998063,-0.06877909086154756 +12231,61.154999999980625,-0.06877903170474138 +12232,61.15999999998062,-0.068778972566526 +12233,61.164999999980616,-0.0687789134468958 +12234,61.16999999998061,-0.06877885434584521 +12235,61.174999999980606,-0.06877879526336866 +12236,61.1799999999806,-0.06877873619946057 +12237,61.1849999999806,-0.06877867715411533 +12238,61.18999999998059,-0.06877861812732738 +12239,61.19499999998059,-0.06877855911909114 +12240,61.199999999980584,-0.06877850012940105 +12241,61.20499999998058,-0.06877844115825153 +12242,61.209999999980575,-0.06877838220563699 +12243,61.21499999998057,-0.06877832327155187 +12244,61.219999999980566,-0.0687782643559906 +12245,61.22499999998056,-0.06877820545894761 +12246,61.229999999980556,-0.06877814658041734 +12247,61.23499999998055,-0.06877808772039423 +12248,61.23999999998055,-0.0687780288788727 +12249,61.24499999998054,-0.06877797005584722 +12250,61.24999999998054,-0.0687779112513122 +12251,61.254999999980534,-0.06877785246526211 +12252,61.25999999998053,-0.06877779369769137 +12253,61.264999999980525,-0.06877773494859443 +12254,61.26999999998052,-0.06877767621796575 +12255,61.274999999980515,-0.06877761750579976 +12256,61.27999999998051,-0.06877755881209095 +12257,61.284999999980506,-0.06877750013683373 +12258,61.2899999999805,-0.06877744148002256 +12259,61.2949999999805,-0.0687773828416519 +12260,61.29999999998049,-0.06877732422171622 +12261,61.30499999998049,-0.06877726562020996 +12262,61.309999999980484,-0.0687772070371276 +12263,61.31499999998048,-0.06877714847246358 +12264,61.319999999980475,-0.06877708992621238 +12265,61.32499999998047,-0.06877703139836847 +12266,61.329999999980465,-0.06877697288892629 +12267,61.33499999998046,-0.06877691439788032 +12268,61.339999999980456,-0.06877685592522503 +12269,61.34499999998045,-0.0687767974709549 +12270,61.34999999998045,-0.06877673903506441 +12271,61.35499999998044,-0.068776680617548 +12272,61.35999999998044,-0.0687766222184002 +12273,61.364999999980434,-0.06877656383761543 +12274,61.36999999998043,-0.06877650547518821 +12275,61.374999999980425,-0.068776447131113 +12276,61.37999999998042,-0.06877638880538431 +12277,61.384999999980415,-0.06877633049799659 +12278,61.38999999998041,-0.06877627220894433 +12279,61.394999999980406,-0.06877621393822204 +12280,61.3999999999804,-0.0687761556858242 +12281,61.4049999999804,-0.06877609745174529 +12282,61.40999999998039,-0.06877603923597982 +12283,61.41499999998039,-0.06877598103852225 +12284,61.419999999980384,-0.0687759228593671 +12285,61.42499999998038,-0.06877586469850888 +12286,61.429999999980375,-0.06877580655594207 +12287,61.43499999998037,-0.06877574843166118 +12288,61.439999999980365,-0.0687756903256607 +12289,61.44499999998036,-0.06877563223793513 +12290,61.449999999980356,-0.068775574168479 +12291,61.45499999998035,-0.0687755161172868 +12292,61.45999999998035,-0.06877545808435304 +12293,61.46499999998034,-0.06877540006967223 +12294,61.46999999998034,-0.06877534207323888 +12295,61.474999999980334,-0.0687752840950475 +12296,61.47999999998033,-0.06877522613509261 +12297,61.484999999980325,-0.06877516819336874 +12298,61.48999999998032,-0.06877511026987036 +12299,61.494999999980315,-0.06877505236459205 +12300,61.49999999998031,-0.06877499447752831 +12301,61.504999999980306,-0.06877493660867365 +12302,61.5099999999803,-0.06877487875802259 +12303,61.5149999999803,-0.06877482092556966 +12304,61.51999999998029,-0.0687747631113094 +12305,61.52499999998029,-0.06877470531523633 +12306,61.529999999980284,-0.068774647537345 +12307,61.53499999998028,-0.0687745897776299 +12308,61.539999999980274,-0.0687745320360856 +12309,61.54499999998027,-0.06877447431270663 +12310,61.549999999980265,-0.06877441660748751 +12311,61.55499999998026,-0.0687743589204228 +12312,61.559999999980256,-0.06877430125150703 +12313,61.56499999998025,-0.06877424360073474 +12314,61.56999999998025,-0.06877418596810046 +12315,61.57499999998024,-0.06877412835359875 +12316,61.57999999998024,-0.06877407075722416 +12317,61.584999999980234,-0.06877401317897125 +12318,61.58999999998023,-0.06877395561883454 +12319,61.594999999980224,-0.06877389807680857 +12320,61.59999999998022,-0.06877384055288795 +12321,61.604999999980215,-0.06877378304706719 +12322,61.60999999998021,-0.06877372555934085 +12323,61.614999999980206,-0.06877366808970349 +12324,61.6199999999802,-0.0687736106381497 +12325,61.6249999999802,-0.06877355320467399 +12326,61.62999999998019,-0.06877349578927096 +12327,61.63499999998019,-0.06877343839193514 +12328,61.63999999998018,-0.06877338101266113 +12329,61.64499999998018,-0.06877332365144348 +12330,61.649999999980174,-0.06877326630827676 +12331,61.65499999998017,-0.06877320898315555 +12332,61.659999999980165,-0.0687731516760744 +12333,61.66499999998016,-0.0687730943870279 +12334,61.669999999980156,-0.06877303711601061 +12335,61.67499999998015,-0.06877297986301713 +12336,61.67999999998015,-0.06877292262804202 +12337,61.68499999998014,-0.06877286541107988 +12338,61.68999999998014,-0.06877280821212527 +12339,61.69499999998013,-0.06877275103117278 +12340,61.69999999998013,-0.06877269386821698 +12341,61.704999999980124,-0.06877263672325247 +12342,61.70999999998012,-0.06877257959627385 +12343,61.714999999980115,-0.06877252248727568 +12344,61.71999999998011,-0.06877246539625258 +12345,61.724999999980106,-0.06877240832319911 +12346,61.7299999999801,-0.0687723512681099 +12347,61.7349999999801,-0.06877229423097952 +12348,61.73999999998009,-0.06877223721180258 +12349,61.74499999998009,-0.06877218021057367 +12350,61.74999999998008,-0.06877212322728739 +12351,61.75499999998008,-0.06877206626193834 +12352,61.759999999980074,-0.06877200931452113 +12353,61.76499999998007,-0.06877195238503037 +12354,61.769999999980065,-0.06877189547346065 +12355,61.77499999998006,-0.06877183857980658 +12356,61.779999999980056,-0.06877178170406278 +12357,61.78499999998005,-0.06877172484622386 +12358,61.78999999998005,-0.06877166800628443 +12359,61.79499999998004,-0.0687716111842391 +12360,61.79999999998004,-0.06877155438008249 +12361,61.80499999998003,-0.06877149759380921 +12362,61.80999999998003,-0.0687714408254139 +12363,61.814999999980024,-0.06877138407489114 +12364,61.81999999998002,-0.0687713273422356 +12365,61.824999999980015,-0.06877127062744187 +12366,61.82999999998001,-0.06877121393050459 +12367,61.834999999980006,-0.06877115725141839 +12368,61.83999999998,-0.06877110059017788 +12369,61.84499999998,-0.06877104394677772 +12370,61.84999999997999,-0.0687709873212125 +12371,61.85499999997999,-0.06877093071347688 +12372,61.85999999997998,-0.06877087412356549 +12373,61.86499999997998,-0.06877081755147298 +12374,61.869999999979974,-0.06877076099719395 +12375,61.87499999997997,-0.06877070446072307 +12376,61.879999999979965,-0.06877064794205497 +12377,61.88499999997996,-0.06877059144118429 +12378,61.889999999979956,-0.06877053495810569 +12379,61.89499999997995,-0.0687704784928138 +12380,61.89999999997995,-0.06877042204530326 +12381,61.90499999997994,-0.06877036561556875 +12382,61.90999999997994,-0.0687703092036049 +12383,61.91499999997993,-0.06877025280940635 +12384,61.91999999997993,-0.06877019643296776 +12385,61.924999999979924,-0.06877014007428381 +12386,61.92999999997992,-0.06877008373334911 +12387,61.934999999979915,-0.06877002741015835 +12388,61.93999999997991,-0.06876997110470619 +12389,61.944999999979906,-0.06876991481698727 +12390,61.9499999999799,-0.06876985854699627 +12391,61.9549999999799,-0.06876980229472786 +12392,61.95999999997989,-0.06876974606017669 +12393,61.96499999997989,-0.06876968984333744 +12394,61.96999999997988,-0.06876963364420474 +12395,61.97499999997988,-0.06876957746277332 +12396,61.979999999979874,-0.06876952129903781 +12397,61.98499999997987,-0.0687694651529929 +12398,61.989999999979865,-0.06876940902463326 +12399,61.99499999997986,-0.06876935291395357 +12400,61.999999999979856,-0.0687692968209485 +12401,62.00499999997985,-0.06876924074561273 +12402,62.00999999997985,-0.06876918468794097 +12403,62.01499999997984,-0.06876912864792786 +12404,62.01999999997984,-0.0687690726255681 +12405,62.02499999997983,-0.0687690166208564 +12406,62.02999999997983,-0.0687689606337874 +12407,62.034999999979824,-0.06876890466435583 +12408,62.03999999997982,-0.06876884871255637 +12409,62.044999999979815,-0.06876879277838369 +12410,62.04999999997981,-0.0687687368618325 +12411,62.054999999979806,-0.06876868096289751 +12412,62.0599999999798,-0.06876862508157339 +12413,62.0649999999798,-0.06876856921785486 +12414,62.06999999997979,-0.0687685133717366 +12415,62.07499999997979,-0.06876845754321333 +12416,62.07999999997978,-0.06876840173227974 +12417,62.08499999997978,-0.06876834593893054 +12418,62.089999999979774,-0.06876829016316043 +12419,62.09499999997977,-0.06876823440496412 +12420,62.099999999979765,-0.06876817866433632 +12421,62.10499999997976,-0.06876812294127173 +12422,62.109999999979756,-0.06876806723576508 +12423,62.11499999997975,-0.06876801154781108 +12424,62.11999999997975,-0.06876795587740442 +12425,62.12499999997974,-0.06876790022453985 +12426,62.12999999997974,-0.06876784458921206 +12427,62.13499999997973,-0.0687677889714158 +12428,62.13999999997973,-0.06876773337114576 +12429,62.144999999979724,-0.0687676777883967 +12430,62.14999999997972,-0.06876762222316332 +12431,62.154999999979715,-0.06876756667544033 +12432,62.15999999997971,-0.06876751114522249 +12433,62.164999999979706,-0.06876745563250451 +12434,62.1699999999797,-0.06876740013728111 +12435,62.1749999999797,-0.06876734465954705 +12436,62.17999999997969,-0.06876728919929706 +12437,62.18499999997969,-0.06876723375652584 +12438,62.18999999997968,-0.06876717833122817 +12439,62.19499999997968,-0.06876712292339876 +12440,62.199999999979674,-0.06876706753303236 +12441,62.20499999997967,-0.06876701216012371 +12442,62.209999999979665,-0.06876695680466756 +12443,62.21499999997966,-0.06876690146665863 +12444,62.219999999979656,-0.0687668461460917 +12445,62.22499999997965,-0.06876679084296149 +12446,62.22999999997965,-0.06876673555726275 +12447,62.23499999997964,-0.06876668028899025 +12448,62.23999999997964,-0.06876662503813873 +12449,62.24499999997963,-0.06876656980470294 +12450,62.24999999997963,-0.06876651458867764 +12451,62.254999999979624,-0.06876645939005757 +12452,62.25999999997962,-0.06876640420883752 +12453,62.264999999979615,-0.06876634904501222 +12454,62.26999999997961,-0.06876629389857646 +12455,62.274999999979606,-0.06876623876952496 +12456,62.2799999999796,-0.06876618365785252 +12457,62.2849999999796,-0.06876612856355391 +12458,62.28999999997959,-0.06876607348662386 +12459,62.29499999997959,-0.06876601842705718 +12460,62.29999999997958,-0.06876596338484861 +12461,62.30499999997958,-0.06876590835999292 +12462,62.309999999979574,-0.06876585335248492 +12463,62.31499999997957,-0.06876579836231933 +12464,62.319999999979565,-0.06876574338949097 +12465,62.32499999997956,-0.0687656884339946 +12466,62.329999999979556,-0.068765633495825 +12467,62.33499999997955,-0.06876557857497696 +12468,62.33999999997955,-0.06876552367144526 +12469,62.34499999997954,-0.06876546878522467 +12470,62.34999999997954,-0.06876541391630998 +12471,62.35499999997953,-0.06876535906469598 +12472,62.35999999997953,-0.06876530423037748 +12473,62.364999999979524,-0.06876524941334924 +12474,62.36999999997952,-0.06876519461360606 +12475,62.374999999979515,-0.06876513983114274 +12476,62.37999999997951,-0.06876508506595405 +12477,62.384999999979506,-0.06876503031803483 +12478,62.3899999999795,-0.06876497558737982 +12479,62.3949999999795,-0.06876492087398386 +12480,62.39999999997949,-0.06876486617784175 +12481,62.40499999997949,-0.06876481149894828 +12482,62.40999999997948,-0.06876475683729825 +12483,62.41499999997948,-0.06876470219288648 +12484,62.419999999979474,-0.06876464756570776 +12485,62.42499999997947,-0.06876459295575692 +12486,62.429999999979465,-0.06876453836302873 +12487,62.43499999997946,-0.06876448378751805 +12488,62.439999999979456,-0.06876442922921966 +12489,62.44499999997945,-0.06876437468812838 +12490,62.44999999997945,-0.06876432016423903 +12491,62.45499999997944,-0.06876426565754643 +12492,62.45999999997944,-0.06876421116804537 +12493,62.46499999997943,-0.06876415669573072 +12494,62.46999999997943,-0.06876410224059727 +12495,62.474999999979424,-0.06876404780263984 +12496,62.47999999997942,-0.06876399338185327 +12497,62.484999999979415,-0.06876393897823238 +12498,62.48999999997941,-0.06876388459177199 +12499,62.494999999979406,-0.06876383022246693 +12500,62.4999999999794,-0.06876377587031204 +12501,62.5049999999794,-0.06876372153530215 +12502,62.50999999997939,-0.0687636672174321 +12503,62.51499999997939,-0.06876361291669672 +12504,62.51999999997938,-0.06876355863309085 +12505,62.52499999997938,-0.0687635043666093 +12506,62.529999999979374,-0.06876345011724694 +12507,62.53499999997937,-0.06876339588499861 +12508,62.539999999979365,-0.06876334166985913 +12509,62.54499999997936,-0.06876328747182338 +12510,62.549999999979356,-0.06876323329088617 +12511,62.55499999997935,-0.06876317912704237 +12512,62.55999999997935,-0.0687631249802868 +12513,62.56499999997934,-0.06876307085061435 +12514,62.56999999997934,-0.06876301673801986 +12515,62.57499999997933,-0.06876296264249816 +12516,62.57999999997933,-0.06876290856404414 +12517,62.584999999979324,-0.06876285450265263 +12518,62.58999999997932,-0.0687628004583185 +12519,62.594999999979315,-0.0687627464310366 +12520,62.59999999997931,-0.06876269242080178 +12521,62.604999999979306,-0.06876263842760894 +12522,62.6099999999793,-0.06876258445145289 +12523,62.6149999999793,-0.06876253049232856 +12524,62.61999999997929,-0.06876247655023075 +12525,62.62499999997929,-0.06876242262515439 +12526,62.62999999997928,-0.0687623687170943 +12527,62.63499999997928,-0.06876231482604539 +12528,62.639999999979274,-0.0687622609520025 +12529,62.64499999997927,-0.0687622070949605 +12530,62.649999999979265,-0.06876215325491429 +12531,62.65499999997926,-0.06876209943185876 +12532,62.659999999979256,-0.06876204562578876 +12533,62.66499999997925,-0.06876199183669918 +12534,62.66999999997925,-0.0687619380645849 +12535,62.67499999997924,-0.0687618843094408 +12536,62.67999999997924,-0.06876183057126177 +12537,62.68499999997923,-0.0687617768500427 +12538,62.68999999997923,-0.06876172314577847 +12539,62.694999999979224,-0.06876166945846396 +12540,62.69999999997922,-0.06876161578809407 +12541,62.704999999979215,-0.06876156213466371 +12542,62.70999999997921,-0.06876150849816774 +12543,62.714999999979206,-0.06876145487860108 +12544,62.7199999999792,-0.06876140127595862 +12545,62.7249999999792,-0.06876134769023526 +12546,62.72999999997919,-0.06876129412142588 +12547,62.73499999997919,-0.0687612405695254 +12548,62.73999999997918,-0.06876118703452871 +12549,62.74499999997918,-0.06876113351643075 +12550,62.749999999979174,-0.06876108001522639 +12551,62.75499999997917,-0.06876102653091053 +12552,62.759999999979165,-0.0687609730634781 +12553,62.76499999997916,-0.06876091961292402 +12554,62.769999999979156,-0.06876086617924317 +12555,62.77499999997915,-0.06876081276243047 +12556,62.77999999997915,-0.06876075936248086 +12557,62.78499999997914,-0.06876070597938921 +12558,62.78999999997914,-0.06876065261315048 +12559,62.79499999997913,-0.06876059926375958 +12560,62.79999999997913,-0.0687605459312114 +12561,62.804999999979124,-0.06876049261550092 +12562,62.80999999997912,-0.06876043931662303 +12563,62.814999999979115,-0.06876038603457262 +12564,62.81999999997911,-0.06876033276934466 +12565,62.824999999979106,-0.06876027952093407 +12566,62.8299999999791,-0.06876022628933577 +12567,62.8349999999791,-0.06876017307454471 +12568,62.83999999997909,-0.06876011987655581 +12569,62.84499999997909,-0.06876006669536398 +12570,62.84999999997908,-0.0687600135309642 +12571,62.85499999997908,-0.06875996038335137 +12572,62.859999999979074,-0.06875990725252044 +12573,62.86499999997907,-0.06875985413846637 +12574,62.869999999979065,-0.06875980104118407 +12575,62.87499999997906,-0.06875974796066849 +12576,62.879999999979056,-0.06875969489691457 +12577,62.88499999997905,-0.06875964184991727 +12578,62.88999999997905,-0.06875958881967154 +12579,62.89499999997904,-0.06875953580617229 +12580,62.89999999997904,-0.06875948280941452 +12581,62.90499999997903,-0.06875942982939316 +12582,62.90999999997903,-0.06875937686610316 +12583,62.914999999979024,-0.06875932391953947 +12584,62.91999999997902,-0.06875927098969704 +12585,62.924999999979015,-0.06875921807657086 +12586,62.92999999997901,-0.06875916518015586 +12587,62.934999999979006,-0.068759112300447 +12588,62.939999999979,-0.06875905943743925 +12589,62.944999999979,-0.06875900659112757 +12590,62.94999999997899,-0.06875895376150694 +12591,62.95499999997899,-0.06875890094857229 +12592,62.95999999997898,-0.06875884815231863 +12593,62.96499999997898,-0.06875879537274089 +12594,62.969999999978974,-0.06875874260983407 +12595,62.97499999997897,-0.06875868986359314 +12596,62.979999999978965,-0.06875863713401305 +12597,62.98499999997896,-0.06875858442108879 +12598,62.989999999978956,-0.06875853172481533 +12599,62.99499999997895,-0.06875847904518766 +12600,62.99999999997895,-0.06875842638220074 +12601,63.00499999997894,-0.06875837373584956 +12602,63.00999999997894,-0.06875832110612912 +12603,63.01499999997893,-0.06875826849303437 +12604,63.01999999997893,-0.06875821589656034 +12605,63.024999999978924,-0.06875816331670195 +12606,63.02999999997892,-0.06875811075345425 +12607,63.034999999978915,-0.06875805820681219 +12608,63.03999999997891,-0.06875800567677079 +12609,63.044999999978906,-0.06875795316332503 +12610,63.0499999999789,-0.06875790066646989 +12611,63.0549999999789,-0.0687578481862004 +12612,63.05999999997889,-0.0687577957225115 +12613,63.06499999997889,-0.06875774327539824 +12614,63.06999999997888,-0.0687576908448556 +12615,63.07499999997888,-0.06875763843087859 +12616,63.079999999978874,-0.06875758603346219 +12617,63.08499999997887,-0.06875753365260143 +12618,63.089999999978865,-0.06875748128829129 +12619,63.09499999997886,-0.06875742894052679 +12620,63.099999999978856,-0.06875737660930295 +12621,63.10499999997885,-0.06875732429461477 +12622,63.10999999997885,-0.06875727199645726 +12623,63.11499999997884,-0.06875721971482544 +12624,63.11999999997884,-0.0687571674497143 +12625,63.12499999997883,-0.06875711520111888 +12626,63.12999999997883,-0.0687570629690342 +12627,63.134999999978824,-0.06875701075345525 +12628,63.13999999997882,-0.06875695855437708 +12629,63.144999999978815,-0.0687569063717947 +12630,63.14999999997881,-0.06875685420570314 +12631,63.154999999978806,-0.0687568020560974 +12632,63.1599999999788,-0.06875674992297254 +12633,63.1649999999788,-0.06875669780632354 +12634,63.16999999997879,-0.06875664570614548 +12635,63.17499999997879,-0.06875659362243336 +12636,63.17999999997878,-0.06875654155518222 +12637,63.18499999997878,-0.0687564895043871 +12638,63.189999999978774,-0.06875643747004302 +12639,63.19499999997877,-0.06875638545214503 +12640,63.199999999978765,-0.06875633345068814 +12641,63.20499999997876,-0.06875628146566742 +12642,63.209999999978756,-0.06875622949707791 +12643,63.21499999997875,-0.06875617754491464 +12644,63.21999999997875,-0.06875612560917264 +12645,63.22499999997874,-0.06875607368984699 +12646,63.22999999997874,-0.0687560217869327 +12647,63.23499999997873,-0.06875596990042483 +12648,63.23999999997873,-0.06875591803031844 +12649,63.244999999978724,-0.06875586617660856 +12650,63.24999999997872,-0.06875581433929027 +12651,63.254999999978715,-0.06875576251835859 +12652,63.25999999997871,-0.0687557107138086 +12653,63.264999999978706,-0.06875565892563534 +12654,63.2699999999787,-0.06875560715383389 +12655,63.2749999999787,-0.06875555539839927 +12656,63.27999999997869,-0.06875550365932656 +12657,63.28499999997869,-0.06875545193661084 +12658,63.28999999997868,-0.06875540023024716 +12659,63.29499999997868,-0.06875534854023059 +12660,63.299999999978674,-0.06875529686655618 +12661,63.30499999997867,-0.06875524520921901 +12662,63.309999999978665,-0.06875519356821415 +12663,63.31499999997866,-0.06875514194353667 +12664,63.319999999978656,-0.06875509033518164 +12665,63.32499999997865,-0.06875503874314413 +12666,63.32999999997865,-0.06875498716741922 +12667,63.33499999997864,-0.06875493560800197 +12668,63.33999999997864,-0.06875488406488747 +12669,63.34499999997863,-0.06875483253807081 +12670,63.34999999997863,-0.06875478102754706 +12671,63.354999999978624,-0.06875472953331131 +12672,63.35999999997862,-0.06875467805535862 +12673,63.364999999978615,-0.06875462659368411 +12674,63.36999999997861,-0.06875457514828284 +12675,63.374999999978606,-0.0687545237191499 +12676,63.3799999999786,-0.06875447230628039 +12677,63.3849999999786,-0.06875442090966939 +12678,63.38999999997859,-0.068754369529312 +12679,63.39499999997859,-0.06875431816520332 +12680,63.39999999997858,-0.06875426681733841 +12681,63.40499999997858,-0.06875421548571242 +12682,63.409999999978574,-0.0687541641703204 +12683,63.41499999997857,-0.06875411287115749 +12684,63.419999999978565,-0.06875406158821876 +12685,63.42499999997856,-0.06875401032149932 +12686,63.429999999978556,-0.06875395907099427 +12687,63.43499999997855,-0.06875390783669873 +12688,63.439999999978546,-0.06875385661860779 +12689,63.44499999997854,-0.06875380541671657 +12690,63.44999999997854,-0.06875375423102015 +12691,63.45499999997853,-0.0687537030615137 +12692,63.45999999997853,-0.06875365190819227 +12693,63.464999999978524,-0.06875360077105101 +12694,63.46999999997852,-0.06875354965008502 +12695,63.474999999978515,-0.06875349854528942 +12696,63.47999999997851,-0.06875344745665933 +12697,63.484999999978506,-0.06875339638418987 +12698,63.4899999999785,-0.06875334532787616 +12699,63.494999999978496,-0.06875329428771332 +12700,63.49999999997849,-0.06875324326369647 +12701,63.50499999997849,-0.06875319225582076 +12702,63.50999999997848,-0.06875314126408126 +12703,63.51499999997848,-0.06875309028847315 +12704,63.519999999978474,-0.06875303932899153 +12705,63.52499999997847,-0.06875298838563156 +12706,63.529999999978465,-0.06875293745838834 +12707,63.53499999997846,-0.06875288654725703 +12708,63.539999999978455,-0.06875283565223275 +12709,63.54499999997845,-0.06875278477331064 +12710,63.549999999978446,-0.06875273391048584 +12711,63.55499999997844,-0.06875268306375347 +12712,63.55999999997844,-0.06875263223310868 +12713,63.56499999997843,-0.06875258141854663 +12714,63.56999999997843,-0.06875253062006247 +12715,63.574999999978424,-0.0687524798376513 +12716,63.57999999997842,-0.0687524290713083 +12717,63.584999999978415,-0.06875237832102862 +12718,63.58999999997841,-0.06875232758680738 +12719,63.594999999978405,-0.06875227686863977 +12720,63.5999999999784,-0.06875222616652091 +12721,63.604999999978396,-0.06875217548044597 +12722,63.60999999997839,-0.0687521248104101 +12723,63.61499999997839,-0.06875207415640845 +12724,63.61999999997838,-0.06875202351843619 +12725,63.62499999997838,-0.06875197289648848 +12726,63.629999999978374,-0.06875192229056044 +12727,63.63499999997837,-0.06875187170064728 +12728,63.639999999978365,-0.06875182112674416 +12729,63.64499999997836,-0.06875177056884622 +12730,63.649999999978355,-0.06875172002694865 +12731,63.65499999997835,-0.0687516695010466 +12732,63.659999999978346,-0.06875161899113523 +12733,63.66499999997834,-0.06875156849720973 +12734,63.66999999997834,-0.06875151801926527 +12735,63.67499999997833,-0.06875146755729701 +12736,63.67999999997833,-0.06875141711130013 +12737,63.684999999978324,-0.06875136668126981 +12738,63.68999999997832,-0.06875131626720125 +12739,63.694999999978315,-0.06875126586908958 +12740,63.69999999997831,-0.06875121548693001 +12741,63.704999999978305,-0.06875116512071772 +12742,63.7099999999783,-0.06875111477044789 +12743,63.714999999978296,-0.0687510644361157 +12744,63.71999999997829,-0.06875101411771634 +12745,63.72499999997829,-0.06875096381524501 +12746,63.72999999997828,-0.06875091352869687 +12747,63.73499999997828,-0.06875086325806713 +12748,63.739999999978274,-0.06875081300335097 +12749,63.74499999997827,-0.0687507627645436 +12750,63.749999999978264,-0.0687507125416402 +12751,63.75499999997826,-0.06875066233463596 +12752,63.759999999978255,-0.0687506121435261 +12753,63.76499999997825,-0.06875056196830578 +12754,63.769999999978246,-0.06875051180897025 +12755,63.77499999997824,-0.06875046166551468 +12756,63.77999999997824,-0.06875041153793426 +12757,63.78499999997823,-0.06875036142622423 +12758,63.78999999997823,-0.06875031133037977 +12759,63.794999999978224,-0.0687502612503961 +12760,63.79999999997822,-0.06875021118626842 +12761,63.804999999978214,-0.06875016113799194 +12762,63.80999999997821,-0.06875011110556187 +12763,63.814999999978205,-0.06875006108897343 +12764,63.8199999999782,-0.06875001108822183 +12765,63.824999999978196,-0.06874996110330227 +12766,63.82999999997819,-0.06874991113420999 +12767,63.83499999997819,-0.06874986118094019 +12768,63.83999999997818,-0.0687498112434881 +12769,63.84499999997818,-0.06874976132184894 +12770,63.84999999997817,-0.06874971141601793 +12771,63.85499999997817,-0.0687496615259903 +12772,63.859999999978164,-0.06874961165176126 +12773,63.86499999997816,-0.06874956179332606 +12774,63.869999999978155,-0.0687495119506799 +12775,63.87499999997815,-0.06874946212381801 +12776,63.879999999978146,-0.06874941231273564 +12777,63.88499999997814,-0.06874936251742803 +12778,63.88999999997814,-0.06874931273789038 +12779,63.89499999997813,-0.06874926297411796 +12780,63.89999999997813,-0.06874921322610597 +12781,63.90499999997812,-0.06874916349384967 +12782,63.90999999997812,-0.06874911377734429 +12783,63.914999999978114,-0.06874906407658508 +12784,63.91999999997811,-0.06874901439156729 +12785,63.924999999978105,-0.06874896472228613 +12786,63.9299999999781,-0.06874891506873688 +12787,63.934999999978096,-0.06874886543091477 +12788,63.93999999997809,-0.06874881580881503 +12789,63.94499999997809,-0.06874876620243295 +12790,63.94999999997808,-0.06874871661176374 +12791,63.95499999997808,-0.06874866703680267 +12792,63.95999999997807,-0.06874861747754499 +12793,63.96499999997807,-0.06874856793398594 +12794,63.969999999978064,-0.0687485184061208 +12795,63.97499999997806,-0.06874846889394481 +12796,63.979999999978055,-0.06874841939745324 +12797,63.98499999997805,-0.06874836991664135 +12798,63.989999999978046,-0.0687483204515044 +12799,63.99499999997804,-0.06874827100203765 +12800,63.99999999997804,-0.06874822156823635 +12801,64.00499999997804,-0.06874817215009577 +12802,64.00999999997804,-0.06874812274761119 +12803,64.01499999997803,-0.06874807336077789 +12804,64.01999999997803,-0.0687480239895911 +12805,64.02499999997802,-0.0687479746340461 +12806,64.02999999997802,-0.06874792529413819 +12807,64.03499999997801,-0.06874787596986262 +12808,64.03999999997801,-0.06874782666121468 +12809,64.044999999978,-0.06874777736818963 +12810,64.049999999978,-0.06874772809078278 +12811,64.054999999978,-0.06874767882898937 +12812,64.05999999997799,-0.0687476295828047 +12813,64.06499999997799,-0.06874758035222403 +12814,64.06999999997798,-0.06874753113724268 +12815,64.07499999997798,-0.06874748193785589 +12816,64.07999999997797,-0.06874743275405899 +12817,64.08499999997797,-0.06874738358584724 +12818,64.08999999997796,-0.06874733443321596 +12819,64.09499999997796,-0.06874728529616041 +12820,64.09999999997795,-0.06874723617467586 +12821,64.10499999997795,-0.06874718706875765 +12822,64.10999999997794,-0.06874713797840105 +12823,64.11499999997794,-0.06874708890360139 +12824,64.11999999997794,-0.0687470398443539 +12825,64.12499999997793,-0.06874699080065394 +12826,64.12999999997793,-0.06874694177249677 +12827,64.13499999997792,-0.0687468927598777 +12828,64.13999999997792,-0.06874684376279207 +12829,64.14499999997791,-0.06874679478123515 +12830,64.14999999997791,-0.06874674581520224 +12831,64.1549999999779,-0.06874669686468865 +12832,64.1599999999779,-0.0687466479296897 +12833,64.1649999999779,-0.06874659901020067 +12834,64.16999999997789,-0.06874655010621691 +12835,64.17499999997789,-0.06874650121773372 +12836,64.17999999997788,-0.06874645234474641 +12837,64.18499999997788,-0.0687464034872503 +12838,64.18999999997787,-0.06874635464524069 +12839,64.19499999997787,-0.0687463058187129 +12840,64.19999999997786,-0.06874625700766226 +12841,64.20499999997786,-0.0687462082120841 +12842,64.20999999997785,-0.06874615943197371 +12843,64.21499999997785,-0.06874611066732643 +12844,64.21999999997784,-0.0687460619181376 +12845,64.22499999997784,-0.06874601318440253 +12846,64.22999999997784,-0.06874596446611655 +12847,64.23499999997783,-0.06874591576327498 +12848,64.23999999997783,-0.06874586707587316 +12849,64.24499999997782,-0.0687458184039064 +12850,64.24999999997782,-0.06874576974737007 +12851,64.25499999997781,-0.06874572110625947 +12852,64.25999999997781,-0.06874567248056995 +12853,64.2649999999778,-0.06874562387029685 +12854,64.2699999999778,-0.06874557527543551 +12855,64.2749999999778,-0.06874552669598127 +12856,64.27999999997779,-0.06874547813192947 +12857,64.28499999997779,-0.06874542958327542 +12858,64.28999999997778,-0.0687453810500145 +12859,64.29499999997778,-0.06874533253214204 +12860,64.29999999997777,-0.06874528402965341 +12861,64.30499999997777,-0.06874523554254393 +12862,64.30999999997776,-0.06874518707080896 +12863,64.31499999997776,-0.06874513861444383 +12864,64.31999999997775,-0.06874509017344393 +12865,64.32499999997775,-0.06874504174780457 +12866,64.32999999997774,-0.06874499333752115 +12867,64.33499999997774,-0.06874494494258898 +12868,64.33999999997774,-0.06874489656300346 +12869,64.34499999997773,-0.06874484819875992 +12870,64.34999999997773,-0.06874479984985374 +12871,64.35499999997772,-0.06874475151628025 +12872,64.35999999997772,-0.06874470319803484 +12873,64.36499999997771,-0.06874465489511286 +12874,64.36999999997771,-0.06874460660750968 +12875,64.3749999999777,-0.06874455833522068 +12876,64.3799999999777,-0.06874451007824121 +12877,64.3849999999777,-0.06874446183656664 +12878,64.38999999997769,-0.06874441361019236 +12879,64.39499999997768,-0.0687443653991137 +12880,64.39999999997768,-0.06874431720332608 +12881,64.40499999997768,-0.06874426902282484 +12882,64.40999999997767,-0.06874422085760538 +12883,64.41499999997767,-0.06874417270766307 +12884,64.41999999997766,-0.06874412457299328 +12885,64.42499999997766,-0.0687440764535914 +12886,64.42999999997765,-0.06874402834945283 +12887,64.43499999997765,-0.06874398026057289 +12888,64.43999999997764,-0.06874393218694703 +12889,64.44499999997764,-0.06874388412857062 +12890,64.44999999997763,-0.06874383608543903 +12891,64.45499999997763,-0.06874378805754765 +12892,64.45999999997763,-0.06874374004489188 +12893,64.46499999997762,-0.06874369204746711 +12894,64.46999999997762,-0.06874364406526873 +12895,64.47499999997761,-0.06874359609829213 +12896,64.47999999997761,-0.0687435481465327 +12897,64.4849999999776,-0.06874350020998586 +12898,64.4899999999776,-0.06874345228864698 +12899,64.4949999999776,-0.06874340438251147 +12900,64.49999999997759,-0.06874335649157473 +12901,64.50499999997758,-0.06874330861583217 +12902,64.50999999997758,-0.06874326075527919 +12903,64.51499999997758,-0.06874321290991119 +12904,64.51999999997757,-0.06874316507972356 +12905,64.52499999997757,-0.06874311726471173 +12906,64.52999999997756,-0.0687430694648711 +12907,64.53499999997756,-0.06874302168019708 +12908,64.53999999997755,-0.06874297391068508 +12909,64.54499999997755,-0.06874292615633053 +12910,64.54999999997754,-0.06874287841712881 +12911,64.55499999997754,-0.06874283069307537 +12912,64.55999999997753,-0.06874278298416558 +12913,64.56499999997753,-0.06874273529039492 +12914,64.56999999997753,-0.06874268761175877 +12915,64.57499999997752,-0.06874263994825254 +12916,64.57999999997752,-0.06874259229987169 +12917,64.58499999997751,-0.0687425446666116 +12918,64.58999999997751,-0.06874249704846774 +12919,64.5949999999775,-0.06874244944543552 +12920,64.5999999999775,-0.06874240185751034 +12921,64.6049999999775,-0.06874235428468765 +12922,64.60999999997749,-0.06874230672696288 +12923,64.61499999997748,-0.06874225918433147 +12924,64.61999999997748,-0.06874221165678883 +12925,64.62499999997748,-0.0687421641443304 +12926,64.62999999997747,-0.06874211664695164 +12927,64.63499999997747,-0.06874206916464795 +12928,64.63999999997746,-0.06874202169741479 +12929,64.64499999997746,-0.0687419742452476 +12930,64.64999999997745,-0.0687419268081418 +12931,64.65499999997745,-0.06874187938609286 +12932,64.65999999997744,-0.06874183197909621 +12933,64.66499999997744,-0.06874178458714729 +12934,64.66999999997743,-0.06874173721024156 +12935,64.67499999997743,-0.06874168984837445 +12936,64.67999999997743,-0.06874164250154143 +12937,64.68499999997742,-0.06874159516973792 +12938,64.68999999997742,-0.0687415478529594 +12939,64.69499999997741,-0.0687415005512013 +12940,64.69999999997741,-0.06874145326445909 +12941,64.7049999999774,-0.06874140599272821 +12942,64.7099999999774,-0.06874135873600414 +12943,64.7149999999774,-0.06874131149428231 +12944,64.71999999997739,-0.06874126426755821 +12945,64.72499999997738,-0.06874121705582728 +12946,64.72999999997738,-0.06874116985908497 +12947,64.73499999997738,-0.06874112267732678 +12948,64.73999999997737,-0.06874107551054813 +12949,64.74499999997737,-0.06874102835874452 +12950,64.74999999997736,-0.0687409812219114 +12951,64.75499999997736,-0.06874093410004424 +12952,64.75999999997735,-0.06874088699313853 +12953,64.76499999997735,-0.06874083990118972 +12954,64.76999999997734,-0.06874079282419328 +12955,64.77499999997734,-0.0687407457621447 +12956,64.77999999997733,-0.06874069871503945 +12957,64.78499999997733,-0.068740651682873 +12958,64.78999999997733,-0.06874060466564083 +12959,64.79499999997732,-0.06874055766333842 +12960,64.79999999997732,-0.06874051067596125 +12961,64.80499999997731,-0.0687404637035048 +12962,64.80999999997731,-0.06874041674596457 +12963,64.8149999999773,-0.068740369803336 +12964,64.8199999999773,-0.06874032287561464 +12965,64.8249999999773,-0.06874027596279592 +12966,64.82999999997729,-0.06874022906487537 +12967,64.83499999997728,-0.06874018218184844 +12968,64.83999999997728,-0.06874013531371065 +12969,64.84499999997728,-0.06874008846045748 +12970,64.84999999997727,-0.06874004162208444 +12971,64.85499999997727,-0.06873999479858699 +12972,64.85999999997726,-0.06873994798996066 +12973,64.86499999997726,-0.06873990119620095 +12974,64.86999999997725,-0.06873985441730333 +12975,64.87499999997725,-0.06873980765326333 +12976,64.87999999997724,-0.06873976090407642 +12977,64.88499999997724,-0.06873971416973812 +12978,64.88999999997723,-0.06873966745024394 +12979,64.89499999997723,-0.06873962074558938 +12980,64.89999999997723,-0.06873957405576996 +12981,64.90499999997722,-0.06873952738078115 +12982,64.90999999997722,-0.0687394807206185 +12983,64.91499999997721,-0.06873943407527751 +12984,64.91999999997721,-0.06873938744475366 +12985,64.9249999999772,-0.06873934082904251 +12986,64.9299999999772,-0.06873929422813954 +12987,64.9349999999772,-0.0687392476420403 +12988,64.93999999997719,-0.06873920107074027 +12989,64.94499999997718,-0.06873915451423501 +12990,64.94999999997718,-0.06873910797252 +12991,64.95499999997718,-0.06873906144559079 +12992,64.95999999997717,-0.0687390149334429 +12993,64.96499999997717,-0.06873896843607182 +12994,64.96999999997716,-0.0687389219534731 +12995,64.97499999997716,-0.06873887548564227 +12996,64.97999999997715,-0.06873882903257486 +12997,64.98499999997715,-0.06873878259426638 +12998,64.98999999997714,-0.06873873617071238 +12999,64.99499999997714,-0.06873868976190839 +13000,64.99999999997713,-0.06873864336784995 +13001,65.00499999997713,-0.06873859698853256 +13002,65.00999999997713,-0.0687385506239518 +13003,65.01499999997712,-0.06873850427410316 +13004,65.01999999997712,-0.06873845793898223 +13005,65.02499999997711,-0.0687384116185845 +13006,65.02999999997711,-0.06873836531290556 +13007,65.0349999999771,-0.06873831902194091 +13008,65.0399999999771,-0.06873827274568611 +13009,65.0449999999771,-0.06873822648413672 +13010,65.04999999997709,-0.06873818023728827 +13011,65.05499999997708,-0.06873813400513629 +13012,65.05999999997708,-0.06873808778767634 +13013,65.06499999997708,-0.068738041584904 +13014,65.06999999997707,-0.06873799539681479 +13015,65.07499999997707,-0.06873794922340427 +13016,65.07999999997706,-0.06873790306466801 +13017,65.08499999997706,-0.06873785692060153 +13018,65.08999999997705,-0.06873781079120042 +13019,65.09499999997705,-0.06873776467646021 +13020,65.09999999997704,-0.06873771857637649 +13021,65.10499999997704,-0.0687376724909448 +13022,65.10999999997703,-0.06873762642016071 +13023,65.11499999997703,-0.06873758036401978 +13024,65.11999999997703,-0.06873753432251756 +13025,65.12499999997702,-0.06873748829564964 +13026,65.12999999997702,-0.06873744228341157 +13027,65.13499999997701,-0.06873739628579892 +13028,65.13999999997701,-0.06873735030280727 +13029,65.144999999977,-0.06873730433443219 +13030,65.149999999977,-0.06873725838066923 +13031,65.154999999977,-0.06873721244151398 +13032,65.15999999997699,-0.06873716651696203 +13033,65.16499999997698,-0.06873712060700894 +13034,65.16999999997698,-0.06873707471165029 +13035,65.17499999997698,-0.06873702883088166 +13036,65.17999999997697,-0.06873698296469861 +13037,65.18499999997697,-0.06873693711309677 +13038,65.18999999997696,-0.06873689127607166 +13039,65.19499999997696,-0.06873684545361891 +13040,65.19999999997695,-0.06873679964573408 +13041,65.20499999997695,-0.06873675385241278 +13042,65.20999999997694,-0.06873670807365058 +13043,65.21499999997694,-0.06873666230944306 +13044,65.21999999997693,-0.06873661655978583 +13045,65.22499999997693,-0.06873657082467448 +13046,65.22999999997693,-0.06873652510410459 +13047,65.23499999997692,-0.06873647939807177 +13048,65.23999999997692,-0.0687364337065716 +13049,65.24499999997691,-0.0687363880295997 +13050,65.24999999997691,-0.06873634236715163 +13051,65.2549999999769,-0.06873629671922303 +13052,65.2599999999769,-0.06873625108580948 +13053,65.2649999999769,-0.06873620546690658 +13054,65.26999999997689,-0.06873615986250994 +13055,65.27499999997688,-0.06873611427261515 +13056,65.27999999997688,-0.06873606869721784 +13057,65.28499999997688,-0.06873602313631359 +13058,65.28999999997687,-0.06873597758989802 +13059,65.29499999997687,-0.06873593205796677 +13060,65.29999999997686,-0.06873588654051539 +13061,65.30499999997686,-0.06873584103753955 +13062,65.30999999997685,-0.06873579554903483 +13063,65.31499999997685,-0.06873575007499685 +13064,65.31999999997684,-0.06873570461542124 +13065,65.32499999997684,-0.06873565917030361 +13066,65.32999999997683,-0.06873561373963956 +13067,65.33499999997683,-0.06873556832342473 +13068,65.33999999997683,-0.06873552292165475 +13069,65.34499999997682,-0.06873547753432521 +13070,65.34999999997682,-0.06873543216143177 +13071,65.35499999997681,-0.06873538680297005 +13072,65.35999999997681,-0.06873534145893563 +13073,65.3649999999768,-0.0687352961293242 +13074,65.3699999999768,-0.06873525081413134 +13075,65.3749999999768,-0.06873520551335273 +13076,65.37999999997679,-0.06873516022698395 +13077,65.38499999997678,-0.06873511495502066 +13078,65.38999999997678,-0.06873506969745849 +13079,65.39499999997678,-0.06873502445429307 +13080,65.39999999997677,-0.06873497922552003 +13081,65.40499999997677,-0.06873493401113503 +13082,65.40999999997676,-0.06873488881113371 +13083,65.41499999997676,-0.0687348436255117 +13084,65.41999999997675,-0.06873479845426464 +13085,65.42499999997675,-0.06873475329738815 +13086,65.42999999997674,-0.06873470815487791 +13087,65.43499999997674,-0.06873466302672955 +13088,65.43999999997673,-0.06873461791293874 +13089,65.44499999997673,-0.0687345728135011 +13090,65.44999999997673,-0.06873452772841228 +13091,65.45499999997672,-0.06873448265766793 +13092,65.45999999997672,-0.06873443760126371 +13093,65.46499999997671,-0.06873439255919529 +13094,65.46999999997671,-0.0687343475314583 +13095,65.4749999999767,-0.06873430251804839 +13096,65.4799999999767,-0.06873425751896124 +13097,65.4849999999767,-0.06873421253419251 +13098,65.48999999997669,-0.06873416756373785 +13099,65.49499999997668,-0.0687341226075929 +13100,65.49999999997668,-0.06873407766575335 +13101,65.50499999997668,-0.06873403273821485 +13102,65.50999999997667,-0.06873398782497307 +13103,65.51499999997667,-0.06873394292602368 +13104,65.51999999997666,-0.06873389804136235 +13105,65.52499999997666,-0.06873385317098472 +13106,65.52999999997665,-0.06873380831488649 +13107,65.53499999997665,-0.06873376347306333 +13108,65.53999999997664,-0.0687337186455109 +13109,65.54499999997664,-0.06873367383222487 +13110,65.54999999997663,-0.06873362903320093 +13111,65.55499999997663,-0.06873358424843475 +13112,65.55999999997663,-0.06873353947792198 +13113,65.56499999997662,-0.06873349472165835 +13114,65.56999999997662,-0.06873344997963951 +13115,65.57499999997661,-0.06873340525186113 +13116,65.57999999997661,-0.06873336053831892 +13117,65.5849999999766,-0.06873331583900856 +13118,65.5899999999766,-0.06873327115392572 +13119,65.5949999999766,-0.06873322648306608 +13120,65.59999999997659,-0.06873318182642534 +13121,65.60499999997658,-0.06873313718399919 +13122,65.60999999997658,-0.06873309255578333 +13123,65.61499999997658,-0.06873304794177344 +13124,65.61999999997657,-0.06873300334196521 +13125,65.62499999997657,-0.06873295875635432 +13126,65.62999999997656,-0.06873291418493649 +13127,65.63499999997656,-0.06873286962770742 +13128,65.63999999997655,-0.06873282508466277 +13129,65.64499999997655,-0.06873278055579829 +13130,65.64999999997654,-0.06873273604110963 +13131,65.65499999997654,-0.06873269154059253 +13132,65.65999999997653,-0.06873264705424267 +13133,65.66499999997653,-0.06873260258205578 +13134,65.66999999997653,-0.06873255812402754 +13135,65.67499999997652,-0.06873251368015365 +13136,65.67999999997652,-0.06873246925042983 +13137,65.68499999997651,-0.0687324248348518 +13138,65.68999999997651,-0.06873238043341526 +13139,65.6949999999765,-0.06873233604611592 +13140,65.6999999999765,-0.06873229167294949 +13141,65.7049999999765,-0.06873224731391168 +13142,65.70999999997649,-0.06873220296899824 +13143,65.71499999997648,-0.06873215863820484 +13144,65.71999999997648,-0.06873211432152722 +13145,65.72499999997648,-0.0687320700189611 +13146,65.72999999997647,-0.06873202573050219 +13147,65.73499999997647,-0.06873198145614622 +13148,65.73999999997646,-0.06873193719588892 +13149,65.74499999997646,-0.06873189294972601 +13150,65.74999999997645,-0.0687318487176532 +13151,65.75499999997645,-0.06873180449966623 +13152,65.75999999997644,-0.06873176029576082 +13153,65.76499999997644,-0.0687317161059327 +13154,65.76999999997643,-0.06873167193017761 +13155,65.77499999997643,-0.06873162776849127 +13156,65.77999999997643,-0.06873158362086942 +13157,65.78499999997642,-0.0687315394873078 +13158,65.78999999997642,-0.06873149536780213 +13159,65.79499999997641,-0.06873145126234816 +13160,65.79999999997641,-0.06873140717094163 +13161,65.8049999999764,-0.06873136309357826 +13162,65.8099999999764,-0.06873131903025378 +13163,65.8149999999764,-0.06873127498096397 +13164,65.81999999997639,-0.06873123094570457 +13165,65.82499999997638,-0.06873118692447129 +13166,65.82999999997638,-0.0687311429172599 +13167,65.83499999997638,-0.06873109892406615 +13168,65.83999999997637,-0.06873105494488577 +13169,65.84499999997637,-0.06873101097971453 +13170,65.84999999997636,-0.06873096702854815 +13171,65.85499999997636,-0.06873092309138241 +13172,65.85999999997635,-0.06873087916821305 +13173,65.86499999997635,-0.06873083525903582 +13174,65.86999999997634,-0.06873079136384651 +13175,65.87499999997634,-0.06873074748264082 +13176,65.87999999997633,-0.06873070361541456 +13177,65.88499999997633,-0.06873065976216344 +13178,65.88999999997633,-0.06873061592288326 +13179,65.89499999997632,-0.06873057209756976 +13180,65.89999999997632,-0.06873052828621871 +13181,65.90499999997631,-0.06873048448882588 +13182,65.9099999999763,-0.06873044070538703 +13183,65.9149999999763,-0.06873039693589791 +13184,65.9199999999763,-0.06873035318035431 +13185,65.9249999999763,-0.06873030943875201 +13186,65.92999999997629,-0.06873026571108674 +13187,65.93499999997628,-0.0687302219973543 +13188,65.93999999997628,-0.06873017829755047 +13189,65.94499999997628,-0.06873013461167099 +13190,65.94999999997627,-0.06873009093971168 +13191,65.95499999997627,-0.06873004728166827 +13192,65.95999999997626,-0.06873000363753658 +13193,65.96499999997626,-0.06872996000731234 +13194,65.96999999997625,-0.06872991639099138 +13195,65.97499999997625,-0.06872987278856946 +13196,65.97999999997624,-0.06872982920004235 +13197,65.98499999997624,-0.06872978562540585 +13198,65.98999999997623,-0.06872974206465575 +13199,65.99499999997623,-0.06872969851778783 +13200,65.99999999997623,-0.06872965498479787 +13201,66.00499999997622,-0.06872961146568166 +13202,66.00999999997622,-0.06872956796043499 +13203,66.01499999997621,-0.06872952446905366 +13204,66.0199999999762,-0.06872948099153345 +13205,66.0249999999762,-0.06872943752787018 +13206,66.0299999999762,-0.06872939407805961 +13207,66.0349999999762,-0.06872935064209756 +13208,66.03999999997619,-0.06872930721997982 +13209,66.04499999997618,-0.06872926381170219 +13210,66.04999999997618,-0.06872922041726047 +13211,66.05499999997618,-0.06872917703665046 +13212,66.05999999997617,-0.06872913366986795 +13213,66.06499999997617,-0.06872909031690877 +13214,66.06999999997616,-0.0687290469777687 +13215,66.07499999997616,-0.06872900365244357 +13216,66.07999999997615,-0.06872896034092917 +13217,66.08499999997615,-0.0687289170432213 +13218,66.08999999997614,-0.06872887375931579 +13219,66.09499999997614,-0.06872883048920844 +13220,66.09999999997613,-0.06872878723289506 +13221,66.10499999997613,-0.06872874399037147 +13222,66.10999999997613,-0.0687287007616335 +13223,66.11499999997612,-0.06872865754667692 +13224,66.11999999997612,-0.06872861434549761 +13225,66.12499999997611,-0.06872857115809135 +13226,66.1299999999761,-0.06872852798445395 +13227,66.1349999999761,-0.06872848482458124 +13228,66.1399999999761,-0.06872844167846906 +13229,66.1449999999761,-0.06872839854611322 +13230,66.14999999997609,-0.06872835542750953 +13231,66.15499999997608,-0.06872831232265383 +13232,66.15999999997608,-0.06872826923154197 +13233,66.16499999997608,-0.06872822615416975 +13234,66.16999999997607,-0.068728183090533 +13235,66.17499999997607,-0.06872814004062755 +13236,66.17999999997606,-0.06872809700444925 +13237,66.18499999997606,-0.06872805398199393 +13238,66.18999999997605,-0.0687280109732574 +13239,66.19499999997605,-0.06872796797823551 +13240,66.19999999997604,-0.06872792499692411 +13241,66.20499999997604,-0.06872788202931901 +13242,66.20999999997603,-0.06872783907541606 +13243,66.21499999997603,-0.06872779613521111 +13244,66.21999999997603,-0.06872775320869999 +13245,66.22499999997602,-0.06872771029587857 +13246,66.22999999997602,-0.06872766739674266 +13247,66.23499999997601,-0.06872762451128812 +13248,66.239999999976,-0.0687275816395108 +13249,66.244999999976,-0.06872753878140654 +13250,66.249999999976,-0.0687274959369712 +13251,66.254999999976,-0.06872745310620061 +13252,66.25999999997599,-0.06872741028909064 +13253,66.26499999997598,-0.06872736748563714 +13254,66.26999999997598,-0.06872732469583595 +13255,66.27499999997598,-0.06872728191968294 +13256,66.27999999997597,-0.06872723915717395 +13257,66.28499999997597,-0.06872719640830487 +13258,66.28999999997596,-0.06872715367307151 +13259,66.29499999997596,-0.06872711095146979 +13260,66.29999999997595,-0.0687270682434955 +13261,66.30499999997595,-0.06872702554914457 +13262,66.30999999997594,-0.06872698286841283 +13263,66.31499999997594,-0.06872694020129615 +13264,66.31999999997593,-0.06872689754779039 +13265,66.32499999997593,-0.06872685490789142 +13266,66.32999999997593,-0.06872681228159512 +13267,66.33499999997592,-0.06872676966889733 +13268,66.33999999997592,-0.06872672706979396 +13269,66.34499999997591,-0.06872668448428086 +13270,66.3499999999759,-0.06872664191235392 +13271,66.3549999999759,-0.06872659935400899 +13272,66.3599999999759,-0.06872655680924195 +13273,66.3649999999759,-0.06872651427804868 +13274,66.36999999997589,-0.06872647176042507 +13275,66.37499999997588,-0.06872642925636699 +13276,66.37999999997588,-0.06872638676587031 +13277,66.38499999997588,-0.06872634428893094 +13278,66.38999999997587,-0.06872630182554475 +13279,66.39499999997587,-0.06872625937570762 +13280,66.39999999997586,-0.06872621693941543 +13281,66.40499999997586,-0.06872617451666406 +13282,66.40999999997585,-0.06872613210744942 +13283,66.41499999997585,-0.06872608971176739 +13284,66.41999999997584,-0.06872604732961386 +13285,66.42499999997584,-0.06872600496098473 +13286,66.42999999997583,-0.06872596260587586 +13287,66.43499999997583,-0.06872592026428319 +13288,66.43999999997583,-0.06872587793620258 +13289,66.44499999997582,-0.06872583562162994 +13290,66.44999999997582,-0.06872579332056117 +13291,66.45499999997581,-0.06872575103299217 +13292,66.4599999999758,-0.06872570875891883 +13293,66.4649999999758,-0.06872566649833704 +13294,66.4699999999758,-0.06872562425124273 +13295,66.4749999999758,-0.06872558201763179 +13296,66.47999999997579,-0.06872553979750014 +13297,66.48499999997578,-0.06872549759084366 +13298,66.48999999997578,-0.06872545539765827 +13299,66.49499999997578,-0.06872541321793987 +13300,66.49999999997577,-0.06872537105168439 +13301,66.50499999997577,-0.06872532889888773 +13302,66.50999999997576,-0.06872528675954578 +13303,66.51499999997576,-0.06872524463365448 +13304,66.51999999997575,-0.06872520252120976 +13305,66.52499999997575,-0.0687251604222075 +13306,66.52999999997574,-0.06872511833664362 +13307,66.53499999997574,-0.06872507626451405 +13308,66.53999999997573,-0.0687250342058147 +13309,66.54499999997573,-0.06872499216054152 +13310,66.54999999997573,-0.0687249501286904 +13311,66.55499999997572,-0.06872490811025726 +13312,66.55999999997572,-0.06872486610523804 +13313,66.56499999997571,-0.06872482411362865 +13314,66.5699999999757,-0.06872478213542504 +13315,66.5749999999757,-0.06872474017062312 +13316,66.5799999999757,-0.06872469821921882 +13317,66.5849999999757,-0.06872465628120807 +13318,66.58999999997569,-0.0687246143565868 +13319,66.59499999997568,-0.06872457244535095 +13320,66.59999999997568,-0.06872453054749644 +13321,66.60499999997567,-0.06872448866301924 +13322,66.60999999997567,-0.06872444679191522 +13323,66.61499999997567,-0.06872440493418039 +13324,66.61999999997566,-0.06872436308981064 +13325,66.62499999997566,-0.06872432125880193 +13326,66.62999999997565,-0.06872427944115019 +13327,66.63499999997565,-0.06872423763685137 +13328,66.63999999997564,-0.0687241958459014 +13329,66.64499999997564,-0.06872415406829625 +13330,66.64999999997563,-0.06872411230403185 +13331,66.65499999997563,-0.06872407055310414 +13332,66.65999999997562,-0.06872402881550907 +13333,66.66499999997562,-0.06872398709124261 +13334,66.66999999997562,-0.06872394538030067 +13335,66.67499999997561,-0.06872390368267924 +13336,66.6799999999756,-0.06872386199837424 +13337,66.6849999999756,-0.06872382032738165 +13338,66.6899999999756,-0.06872377866969742 +13339,66.6949999999756,-0.0687237370253175 +13340,66.69999999997559,-0.06872369539423785 +13341,66.70499999997558,-0.06872365377645442 +13342,66.70999999997558,-0.0687236121719632 +13343,66.71499999997557,-0.06872357058076012 +13344,66.71999999997557,-0.06872352900284114 +13345,66.72499999997557,-0.06872348743820222 +13346,66.72999999997556,-0.06872344588683936 +13347,66.73499999997556,-0.0687234043487485 +13348,66.73999999997555,-0.06872336282392562 +13349,66.74499999997555,-0.06872332131236666 +13350,66.74999999997554,-0.06872327981406763 +13351,66.75499999997554,-0.06872323832902445 +13352,66.75999999997553,-0.06872319685723313 +13353,66.76499999997553,-0.06872315539868964 +13354,66.76999999997552,-0.06872311395338994 +13355,66.77499999997552,-0.06872307252133002 +13356,66.77999999997552,-0.06872303110250583 +13357,66.78499999997551,-0.06872298969691337 +13358,66.7899999999755,-0.06872294830454863 +13359,66.7949999999755,-0.06872290692540756 +13360,66.7999999999755,-0.06872286555948616 +13361,66.8049999999755,-0.0687228242067804 +13362,66.80999999997549,-0.06872278286728628 +13363,66.81499999997548,-0.06872274154099978 +13364,66.81999999997548,-0.06872270022791688 +13365,66.82499999997547,-0.06872265892803356 +13366,66.82999999997547,-0.06872261764134581 +13367,66.83499999997547,-0.06872257636784963 +13368,66.83999999997546,-0.068722535107541 +13369,66.84499999997546,-0.06872249386041593 +13370,66.84999999997545,-0.06872245262647039 +13371,66.85499999997545,-0.06872241140570039 +13372,66.85999999997544,-0.06872237019810191 +13373,66.86499999997544,-0.06872232900367096 +13374,66.86999999997543,-0.06872228782240354 +13375,66.87499999997543,-0.06872224665429565 +13376,66.87999999997542,-0.06872220549934326 +13377,66.88499999997542,-0.0687221643575424 +13378,66.88999999997542,-0.06872212322888906 +13379,66.89499999997541,-0.06872208211337925 +13380,66.8999999999754,-0.06872204101100898 +13381,66.9049999999754,-0.06872199992177426 +13382,66.9099999999754,-0.06872195884567107 +13383,66.9149999999754,-0.06872191778269544 +13384,66.91999999997539,-0.06872187673284337 +13385,66.92499999997538,-0.06872183569611087 +13386,66.92999999997538,-0.06872179467249397 +13387,66.93499999997537,-0.06872175366198865 +13388,66.93999999997537,-0.06872171266459096 +13389,66.94499999997537,-0.06872167168029689 +13390,66.94999999997536,-0.06872163070910246 +13391,66.95499999997536,-0.06872158975100369 +13392,66.95999999997535,-0.06872154880599661 +13393,66.96499999997535,-0.06872150787407721 +13394,66.96999999997534,-0.06872146695524155 +13395,66.97499999997534,-0.06872142604948563 +13396,66.97999999997533,-0.06872138515680548 +13397,66.98499999997533,-0.06872134427719712 +13398,66.98999999997532,-0.06872130341065658 +13399,66.99499999997532,-0.06872126255717988 +13400,66.99999999997532,-0.06872122171676304 +13401,67.00499999997531,-0.06872118088940211 +13402,67.0099999999753,-0.0687211400750931 +13403,67.0149999999753,-0.06872109927383206 +13404,67.0199999999753,-0.06872105848561504 +13405,67.0249999999753,-0.06872101771043802 +13406,67.02999999997529,-0.06872097694829708 +13407,67.03499999997528,-0.06872093619918823 +13408,67.03999999997528,-0.06872089546310753 +13409,67.04499999997527,-0.06872085474005099 +13410,67.04999999997527,-0.06872081403001468 +13411,67.05499999997527,-0.06872077333299463 +13412,67.05999999997526,-0.06872073264898687 +13413,67.06499999997526,-0.06872069197798746 +13414,67.06999999997525,-0.06872065131999243 +13415,67.07499999997525,-0.06872061067499785 +13416,67.07999999997524,-0.06872057004299972 +13417,67.08499999997524,-0.06872052942399413 +13418,67.08999999997523,-0.06872048881797713 +13419,67.09499999997523,-0.06872044822494475 +13420,67.09999999997522,-0.06872040764489304 +13421,67.10499999997522,-0.06872036707781808 +13422,67.10999999997522,-0.06872032652371589 +13423,67.11499999997521,-0.06872028598258252 +13424,67.1199999999752,-0.06872024545441408 +13425,67.1249999999752,-0.06872020493920657 +13426,67.1299999999752,-0.06872016443695607 +13427,67.1349999999752,-0.06872012394765865 +13428,67.13999999997519,-0.06872008347131037 +13429,67.14499999997518,-0.06872004300790727 +13430,67.14999999997518,-0.06872000255744541 +13431,67.15499999997517,-0.06871996211992087 +13432,67.15999999997517,-0.06871992169532974 +13433,67.16499999997517,-0.06871988128366806 +13434,67.16999999997516,-0.06871984088493188 +13435,67.17499999997516,-0.0687198004991173 +13436,67.17999999997515,-0.06871976012622037 +13437,67.18499999997515,-0.06871971976623717 +13438,67.18999999997514,-0.06871967941916376 +13439,67.19499999997514,-0.06871963908499625 +13440,67.19999999997513,-0.06871959876373067 +13441,67.20499999997513,-0.06871955845536314 +13442,67.20999999997512,-0.06871951815988968 +13443,67.21499999997512,-0.06871947787730641 +13444,67.21999999997512,-0.06871943760760939 +13445,67.22499999997511,-0.06871939735079473 +13446,67.2299999999751,-0.06871935710685848 +13447,67.2349999999751,-0.06871931687579673 +13448,67.2399999999751,-0.06871927665760556 +13449,67.2449999999751,-0.06871923645228106 +13450,67.24999999997509,-0.06871919625981933 +13451,67.25499999997508,-0.06871915608021643 +13452,67.25999999997508,-0.06871911591346849 +13453,67.26499999997507,-0.06871907575957155 +13454,67.26999999997507,-0.06871903561852173 +13455,67.27499999997507,-0.06871899549031513 +13456,67.27999999997506,-0.06871895537494781 +13457,67.28499999997506,-0.06871891527241589 +13458,67.28999999997505,-0.06871887518271545 +13459,67.29499999997505,-0.0687188351058426 +13460,67.29999999997504,-0.06871879504179343 +13461,67.30499999997504,-0.06871875499056404 +13462,67.30999999997503,-0.06871871495215054 +13463,67.31499999997503,-0.06871867492654901 +13464,67.31999999997502,-0.06871863491375557 +13465,67.32499999997502,-0.0687185949137663 +13466,67.32999999997502,-0.06871855492657734 +13467,67.33499999997501,-0.06871851495218478 +13468,67.339999999975,-0.06871847499058471 +13469,67.344999999975,-0.06871843504177326 +13470,67.349999999975,-0.06871839510574652 +13471,67.35499999997499,-0.06871835518250063 +13472,67.35999999997499,-0.06871831527203168 +13473,67.36499999997498,-0.06871827537433578 +13474,67.36999999997498,-0.06871823548940904 +13475,67.37499999997497,-0.0687181956172476 +13476,67.37999999997497,-0.06871815575784754 +13477,67.38499999997497,-0.06871811591120501 +13478,67.38999999997496,-0.0687180760773161 +13479,67.39499999997496,-0.06871803625617695 +13480,67.39999999997495,-0.06871799644778367 +13481,67.40499999997495,-0.0687179566521324 +13482,67.40999999997494,-0.06871791686921924 +13483,67.41499999997494,-0.06871787709904033 +13484,67.41999999997493,-0.06871783734159177 +13485,67.42499999997493,-0.06871779759686972 +13486,67.42999999997492,-0.06871775786487028 +13487,67.43499999997492,-0.0687177181455896 +13488,67.43999999997492,-0.06871767843902381 +13489,67.44499999997491,-0.06871763874516901 +13490,67.4499999999749,-0.06871759906402136 +13491,67.4549999999749,-0.06871755939557699 +13492,67.4599999999749,-0.06871751973983202 +13493,67.46499999997489,-0.0687174800967826 +13494,67.46999999997489,-0.06871744046642486 +13495,67.47499999997488,-0.06871740084875494 +13496,67.47999999997488,-0.06871736124376898 +13497,67.48499999997487,-0.06871732165146312 +13498,67.48999999997487,-0.06871728207183349 +13499,67.49499999997487,-0.06871724250487624 +13500,67.49999999997486,-0.06871720295058752 +13501,67.50499999997486,-0.06871716340896347 +13502,67.50999999997485,-0.06871712388000023 +13503,67.51499999997485,-0.06871708436369396 +13504,67.51999999997484,-0.0687170448600408 +13505,67.52499999997484,-0.06871700536903687 +13506,67.52999999997483,-0.06871696589067837 +13507,67.53499999997483,-0.06871692642496141 +13508,67.53999999997482,-0.06871688697188218 +13509,67.54499999997482,-0.06871684753143681 +13510,67.54999999997482,-0.06871680810362146 +13511,67.55499999997481,-0.06871676868843228 +13512,67.5599999999748,-0.06871672928586545 +13513,67.5649999999748,-0.06871668989591709 +13514,67.5699999999748,-0.06871665051858337 +13515,67.57499999997479,-0.06871661115386049 +13516,67.57999999997479,-0.06871657180174456 +13517,67.58499999997478,-0.06871653246223178 +13518,67.58999999997478,-0.06871649313531829 +13519,67.59499999997477,-0.06871645382100026 +13520,67.59999999997477,-0.06871641451927385 +13521,67.60499999997477,-0.06871637523013525 +13522,67.60999999997476,-0.0687163359535806 +13523,67.61499999997476,-0.0687162966896061 +13524,67.61999999997475,-0.06871625743820789 +13525,67.62499999997475,-0.06871621819938216 +13526,67.62999999997474,-0.06871617897312507 +13527,67.63499999997474,-0.0687161397594328 +13528,67.63999999997473,-0.06871610055830153 +13529,67.64499999997473,-0.06871606136972744 +13530,67.64999999997472,-0.06871602219370669 +13531,67.65499999997472,-0.06871598303023548 +13532,67.65999999997472,-0.06871594387930997 +13533,67.66499999997471,-0.06871590474092637 +13534,67.6699999999747,-0.06871586561508082 +13535,67.6749999999747,-0.06871582650176951 +13536,67.6799999999747,-0.06871578740098865 +13537,67.68499999997469,-0.0687157483127344 +13538,67.68999999997469,-0.06871570923700297 +13539,67.69499999997468,-0.06871567017379053 +13540,67.69999999997468,-0.06871563112309327 +13541,67.70499999997467,-0.0687155920849074 +13542,67.70999999997467,-0.06871555305922908 +13543,67.71499999997467,-0.06871551404605453 +13544,67.71999999997466,-0.06871547504537992 +13545,67.72499999997466,-0.06871543605720146 +13546,67.72999999997465,-0.06871539708151533 +13547,67.73499999997465,-0.06871535811831773 +13548,67.73999999997464,-0.06871531916760487 +13549,67.74499999997464,-0.06871528022937295 +13550,67.74999999997463,-0.06871524130361815 +13551,67.75499999997463,-0.06871520239033668 +13552,67.75999999997462,-0.06871516348952476 +13553,67.76499999997462,-0.06871512460117855 +13554,67.76999999997462,-0.0687150857252943 +13555,67.77499999997461,-0.06871504686186819 +13556,67.7799999999746,-0.06871500801089643 +13557,67.7849999999746,-0.06871496917237524 +13558,67.7899999999746,-0.0687149303463008 +13559,67.79499999997459,-0.06871489153266935 +13560,67.79999999997459,-0.0687148527314771 +13561,67.80499999997458,-0.06871481394272023 +13562,67.80999999997458,-0.06871477516639497 +13563,67.81499999997457,-0.06871473640249755 +13564,67.81999999997457,-0.06871469765102418 +13565,67.82499999997457,-0.06871465891197107 +13566,67.82999999997456,-0.06871462018533445 +13567,67.83499999997456,-0.0687145814711105 +13568,67.83999999997455,-0.06871454276929546 +13569,67.84499999997455,-0.06871450407988558 +13570,67.84999999997454,-0.06871446540287704 +13571,67.85499999997454,-0.0687144267382661 +13572,67.85999999997453,-0.06871438808604896 +13573,67.86499999997453,-0.06871434944622185 +13574,67.86999999997452,-0.068714310818781 +13575,67.87499999997452,-0.06871427220372264 +13576,67.87999999997452,-0.06871423360104299 +13577,67.88499999997451,-0.06871419501073829 +13578,67.8899999999745,-0.06871415643280478 +13579,67.8949999999745,-0.06871411786723866 +13580,67.8999999999745,-0.06871407931403618 +13581,67.90499999997449,-0.06871404077319357 +13582,67.90999999997449,-0.06871400224470708 +13583,67.91499999997448,-0.06871396372857295 +13584,67.91999999997448,-0.06871392522478739 +13585,67.92499999997447,-0.06871388673334666 +13586,67.92999999997447,-0.06871384825424698 +13587,67.93499999997447,-0.0687138097874846 +13588,67.93999999997446,-0.06871377133305578 +13589,67.94499999997446,-0.06871373289095675 +13590,67.94999999997445,-0.06871369446118375 +13591,67.95499999997445,-0.06871365604373303 +13592,67.95999999997444,-0.06871361763860083 +13593,67.96499999997444,-0.0687135792457834 +13594,67.96999999997443,-0.068713540865277 +13595,67.97499999997443,-0.06871350249707789 +13596,67.97999999997442,-0.06871346414118228 +13597,67.98499999997442,-0.06871342579758644 +13598,67.98999999997442,-0.06871338746628664 +13599,67.99499999997441,-0.0687133491472791 +13600,67.9999999999744,-0.06871331084056011 +13601,68.0049999999744,-0.06871327254612593 +13602,68.0099999999744,-0.06871323426397279 +13603,68.01499999997439,-0.06871319599409695 +13604,68.01999999997439,-0.0687131577364947 +13605,68.02499999997438,-0.06871311949116227 +13606,68.02999999997438,-0.06871308125809591 +13607,68.03499999997437,-0.06871304303729192 +13608,68.03999999997437,-0.06871300482874657 +13609,68.04499999997437,-0.06871296663245609 +13610,68.04999999997436,-0.06871292844841677 +13611,68.05499999997436,-0.06871289027662485 +13612,68.05999999997435,-0.06871285211707662 +13613,68.06499999997435,-0.06871281396976835 +13614,68.06999999997434,-0.0687127758346963 +13615,68.07499999997434,-0.06871273771185676 +13616,68.07999999997433,-0.06871269960124599 +13617,68.08499999997433,-0.06871266150286026 +13618,68.08999999997432,-0.06871262341669584 +13619,68.09499999997432,-0.06871258534274904 +13620,68.09999999997432,-0.0687125472810161 +13621,68.10499999997431,-0.06871250923149333 +13622,68.1099999999743,-0.06871247119417699 +13623,68.1149999999743,-0.06871243316906335 +13624,68.1199999999743,-0.0687123951561487 +13625,68.12499999997429,-0.06871235715542935 +13626,68.12999999997429,-0.06871231916690156 +13627,68.13499999997428,-0.0687122811905616 +13628,68.13999999997428,-0.06871224322640578 +13629,68.14499999997427,-0.06871220527443038 +13630,68.14999999997427,-0.06871216733463169 +13631,68.15499999997427,-0.068712129407006 +13632,68.15999999997426,-0.06871209149154958 +13633,68.16499999997426,-0.06871205358825877 +13634,68.16999999997425,-0.06871201569712981 +13635,68.17499999997425,-0.06871197781815903 +13636,68.17999999997424,-0.0687119399513427 +13637,68.18499999997424,-0.06871190209667714 +13638,68.18999999997423,-0.06871186425415862 +13639,68.19499999997423,-0.06871182642378347 +13640,68.19999999997422,-0.06871178860554795 +13641,68.20499999997422,-0.0687117507994484 +13642,68.20999999997422,-0.06871171300548111 +13643,68.21499999997421,-0.06871167522364235 +13644,68.2199999999742,-0.06871163745392847 +13645,68.2249999999742,-0.06871159969633575 +13646,68.2299999999742,-0.0687115619508605 +13647,68.23499999997419,-0.06871152421749901 +13648,68.23999999997419,-0.06871148649624763 +13649,68.24499999997418,-0.06871144878710264 +13650,68.24999999997418,-0.06871141109006035 +13651,68.25499999997417,-0.06871137340511707 +13652,68.25999999997417,-0.06871133573226912 +13653,68.26499999997417,-0.06871129807151281 +13654,68.26999999997416,-0.06871126042284446 +13655,68.27499999997416,-0.06871122278626038 +13656,68.27999999997415,-0.0687111851617569 +13657,68.28499999997415,-0.06871114754933029 +13658,68.28999999997414,-0.06871110994897693 +13659,68.29499999997414,-0.06871107236069311 +13660,68.29999999997413,-0.06871103478447516 +13661,68.30499999997413,-0.06871099722031938 +13662,68.30999999997412,-0.06871095966822213 +13663,68.31499999997412,-0.06871092212817971 +13664,68.31999999997412,-0.06871088460018844 +13665,68.32499999997411,-0.06871084708424466 +13666,68.3299999999741,-0.0687108095803447 +13667,68.3349999999741,-0.06871077208848489 +13668,68.3399999999741,-0.06871073460866155 +13669,68.34499999997409,-0.068710697140871 +13670,68.34999999997409,-0.06871065968510959 +13671,68.35499999997408,-0.06871062224137366 +13672,68.35999999997408,-0.06871058480965953 +13673,68.36499999997407,-0.06871054738996353 +13674,68.36999999997407,-0.068710509982282 +13675,68.37499999997407,-0.06871047258661128 +13676,68.37999999997406,-0.06871043520294771 +13677,68.38499999997406,-0.06871039783128763 +13678,68.38999999997405,-0.06871036047162737 +13679,68.39499999997405,-0.06871032312396329 +13680,68.39999999997404,-0.06871028578829173 +13681,68.40499999997404,-0.068710248464609 +13682,68.40999999997403,-0.0687102111529115 +13683,68.41499999997403,-0.06871017385319554 +13684,68.41999999997402,-0.06871013656545748 +13685,68.42499999997402,-0.06871009928969364 +13686,68.42999999997402,-0.06871006202590041 +13687,68.43499999997401,-0.06871002477407413 +13688,68.439999999974,-0.06870998753421112 +13689,68.444999999974,-0.06870995030630778 +13690,68.449999999974,-0.06870991309036041 +13691,68.45499999997399,-0.06870987588636543 +13692,68.45999999997399,-0.06870983869431914 +13693,68.46499999997398,-0.0687098015142179 +13694,68.46999999997398,-0.06870976434605809 +13695,68.47499999997397,-0.06870972718983608 +13696,68.47999999997397,-0.06870969004554821 +13697,68.48499999997397,-0.06870965291319082 +13698,68.48999999997396,-0.06870961579276032 +13699,68.49499999997396,-0.06870957868425304 +13700,68.49999999997395,-0.06870954158766535 +13701,68.50499999997395,-0.06870950450299361 +13702,68.50999999997394,-0.06870946743023422 +13703,68.51499999997394,-0.0687094303693835 +13704,68.51999999997393,-0.06870939332043784 +13705,68.52499999997393,-0.06870935628339361 +13706,68.52999999997392,-0.06870931925824719 +13707,68.53499999997392,-0.06870928224499494 +13708,68.53999999997392,-0.06870924524363324 +13709,68.54499999997391,-0.06870920825415844 +13710,68.5499999999739,-0.06870917127656695 +13711,68.5549999999739,-0.06870913431085512 +13712,68.5599999999739,-0.06870909735701934 +13713,68.56499999997389,-0.06870906041505599 +13714,68.56999999997389,-0.06870902348496144 +13715,68.57499999997388,-0.06870898656673206 +13716,68.57999999997388,-0.06870894966036427 +13717,68.58499999997387,-0.06870891276585442 +13718,68.58999999997387,-0.0687088758831989 +13719,68.59499999997387,-0.0687088390123941 +13720,68.59999999997386,-0.0687088021534364 +13721,68.60499999997386,-0.06870876530632218 +13722,68.60999999997385,-0.06870872847104784 +13723,68.61499999997385,-0.06870869164760976 +13724,68.61999999997384,-0.06870865483600434 +13725,68.62499999997384,-0.06870861803622798 +13726,68.62999999997383,-0.06870858124827704 +13727,68.63499999997383,-0.06870854447214794 +13728,68.63999999997382,-0.06870850770783705 +13729,68.64499999997382,-0.0687084709553408 +13730,68.64999999997382,-0.06870843421465556 +13731,68.65499999997381,-0.06870839748577773 +13732,68.6599999999738,-0.0687083607687037 +13733,68.6649999999738,-0.06870832406342989 +13734,68.6699999999738,-0.06870828736995269 +13735,68.67499999997379,-0.06870825068826851 +13736,68.67999999997379,-0.06870821401837374 +13737,68.68499999997378,-0.06870817736026479 +13738,68.68999999997378,-0.06870814071393806 +13739,68.69499999997377,-0.06870810407938997 +13740,68.69999999997377,-0.06870806745661692 +13741,68.70499999997377,-0.06870803084561532 +13742,68.70999999997376,-0.06870799424638156 +13743,68.71499999997376,-0.06870795765891206 +13744,68.71999999997375,-0.06870792108320324 +13745,68.72499999997375,-0.06870788451925153 +13746,68.72999999997374,-0.0687078479670533 +13747,68.73499999997374,-0.06870781142660498 +13748,68.73999999997373,-0.068707774897903 +13749,68.74499999997373,-0.06870773838094375 +13750,68.74999999997372,-0.06870770187572368 +13751,68.75499999997372,-0.0687076653822392 +13752,68.75999999997372,-0.0687076289004867 +13753,68.76499999997371,-0.06870759243046264 +13754,68.7699999999737,-0.06870755597216342 +13755,68.7749999999737,-0.06870751952558547 +13756,68.7799999999737,-0.0687074830907252 +13757,68.78499999997369,-0.06870744666757907 +13758,68.78999999997369,-0.06870741025614346 +13759,68.79499999997368,-0.06870737385641483 +13760,68.79999999997368,-0.0687073374683896 +13761,68.80499999997367,-0.06870730109206419 +13762,68.80999999997367,-0.06870726472743503 +13763,68.81499999997367,-0.06870722837449857 +13764,68.81999999997366,-0.06870719203325124 +13765,68.82499999997366,-0.06870715570368945 +13766,68.82999999997365,-0.06870711938580963 +13767,68.83499999997365,-0.06870708307960825 +13768,68.83999999997364,-0.06870704678508173 +13769,68.84499999997364,-0.06870701050222651 +13770,68.84999999997363,-0.06870697423103903 +13771,68.85499999997363,-0.06870693797151571 +13772,68.85999999997362,-0.06870690172365301 +13773,68.86499999997362,-0.0687068654874474 +13774,68.86999999997361,-0.06870682926289526 +13775,68.87499999997361,-0.06870679304999307 +13776,68.8799999999736,-0.06870675684873725 +13777,68.8849999999736,-0.06870672065912428 +13778,68.8899999999736,-0.06870668448115061 +13779,68.89499999997359,-0.06870664831481266 +13780,68.89999999997359,-0.06870661216010687 +13781,68.90499999997358,-0.06870657601702973 +13782,68.90999999997358,-0.06870653988557766 +13783,68.91499999997357,-0.06870650376574715 +13784,68.91999999997357,-0.0687064676575346 +13785,68.92499999997356,-0.06870643156093649 +13786,68.92999999997356,-0.06870639547594928 +13787,68.93499999997356,-0.06870635940256942 +13788,68.93999999997355,-0.06870632334079338 +13789,68.94499999997355,-0.06870628729061759 +13790,68.94999999997354,-0.06870625125203854 +13791,68.95499999997354,-0.06870621522505269 +13792,68.95999999997353,-0.06870617920965648 +13793,68.96499999997353,-0.06870614320584639 +13794,68.96999999997352,-0.06870610721361886 +13795,68.97499999997352,-0.06870607123297039 +13796,68.97999999997351,-0.06870603526389742 +13797,68.98499999997351,-0.06870599930639643 +13798,68.9899999999735,-0.06870596336046388 +13799,68.9949999999735,-0.06870592742609623 +13800,68.9999999999735,-0.06870589150328997 +13801,69.00499999997349,-0.06870585559204156 +13802,69.00999999997349,-0.06870581969234747 +13803,69.01499999997348,-0.0687057838042042 +13804,69.01999999997348,-0.06870574792760817 +13805,69.02499999997347,-0.06870571206255591 +13806,69.02999999997347,-0.06870567620904386 +13807,69.03499999997346,-0.06870564036706851 +13808,69.03999999997346,-0.06870560453662634 +13809,69.04499999997346,-0.06870556871771383 +13810,69.04999999997345,-0.06870553291032747 +13811,69.05499999997345,-0.0687054971144637 +13812,69.05999999997344,-0.06870546133011907 +13813,69.06499999997344,-0.06870542555729 +13814,69.06999999997343,-0.068705389795973 +13815,69.07499999997343,-0.06870535404616457 +13816,69.07999999997342,-0.0687053183078612 +13817,69.08499999997342,-0.06870528258105933 +13818,69.08999999997341,-0.0687052468657555 +13819,69.09499999997341,-0.06870521116194617 +13820,69.0999999999734,-0.06870517546962783 +13821,69.1049999999734,-0.068705139788797 +13822,69.1099999999734,-0.06870510411945015 +13823,69.11499999997339,-0.06870506846158377 +13824,69.11999999997339,-0.06870503281519437 +13825,69.12499999997338,-0.06870499718027843 +13826,69.12999999997338,-0.06870496155683248 +13827,69.13499999997337,-0.06870492594485297 +13828,69.13999999997337,-0.06870489034433645 +13829,69.14499999997336,-0.06870485475527939 +13830,69.14999999997336,-0.06870481917767829 +13831,69.15499999997336,-0.06870478361152965 +13832,69.15999999997335,-0.06870474805682998 +13833,69.16499999997335,-0.0687047125135758 +13834,69.16999999997334,-0.0687046769817636 +13835,69.17499999997334,-0.06870464146138988 +13836,69.17999999997333,-0.06870460595245116 +13837,69.18499999997333,-0.06870457045494394 +13838,69.18999999997332,-0.06870453496886472 +13839,69.19499999997332,-0.06870449949421002 +13840,69.19999999997331,-0.06870446403097637 +13841,69.20499999997331,-0.06870442857916026 +13842,69.2099999999733,-0.06870439313875822 +13843,69.2149999999733,-0.06870435770976675 +13844,69.2199999999733,-0.06870432229218237 +13845,69.22499999997329,-0.0687042868860016 +13846,69.22999999997329,-0.06870425149122095 +13847,69.23499999997328,-0.06870421610783695 +13848,69.23999999997328,-0.0687041807358461 +13849,69.24499999997327,-0.06870414537524494 +13850,69.24999999997327,-0.06870411002602998 +13851,69.25499999997326,-0.06870407468819775 +13852,69.25999999997326,-0.06870403936174478 +13853,69.26499999997326,-0.06870400404666759 +13854,69.26999999997325,-0.06870396874296268 +13855,69.27499999997325,-0.06870393345062663 +13856,69.27999999997324,-0.06870389816965593 +13857,69.28499999997324,-0.06870386290004711 +13858,69.28999999997323,-0.06870382764179672 +13859,69.29499999997323,-0.06870379239490128 +13860,69.29999999997322,-0.06870375715935731 +13861,69.30499999997322,-0.06870372193516136 +13862,69.30999999997321,-0.06870368672230996 +13863,69.31499999997321,-0.06870365152079963 +13864,69.3199999999732,-0.06870361633062692 +13865,69.3249999999732,-0.06870358115178839 +13866,69.3299999999732,-0.06870354598428054 +13867,69.33499999997319,-0.06870351082809992 +13868,69.33999999997319,-0.06870347568324307 +13869,69.34499999997318,-0.06870344054970655 +13870,69.34999999997318,-0.06870340542748687 +13871,69.35499999997317,-0.06870337031658061 +13872,69.35999999997317,-0.06870333521698427 +13873,69.36499999997316,-0.06870330012869444 +13874,69.36999999997316,-0.06870326505170765 +13875,69.37499999997316,-0.06870322998602044 +13876,69.37999999997315,-0.06870319493162935 +13877,69.38499999997315,-0.06870315988853096 +13878,69.38999999997314,-0.0687031248567218 +13879,69.39499999997314,-0.06870308983619841 +13880,69.39999999997313,-0.06870305482695738 +13881,69.40499999997313,-0.06870301982899522 +13882,69.40999999997312,-0.06870298484230852 +13883,69.41499999997312,-0.06870294986689382 +13884,69.41999999997311,-0.06870291490274767 +13885,69.42499999997311,-0.06870287994986662 +13886,69.4299999999731,-0.06870284500824726 +13887,69.4349999999731,-0.06870281007788615 +13888,69.4399999999731,-0.06870277515877982 +13889,69.44499999997309,-0.06870274025092485 +13890,69.44999999997309,-0.06870270535431779 +13891,69.45499999997308,-0.06870267046895522 +13892,69.45999999997308,-0.0687026355948337 +13893,69.46499999997307,-0.06870260073194978 +13894,69.46999999997307,-0.06870256588030006 +13895,69.47499999997306,-0.06870253103988107 +13896,69.47999999997306,-0.06870249621068938 +13897,69.48499999997306,-0.0687024613927216 +13898,69.48999999997305,-0.06870242658597428 +13899,69.49499999997305,-0.06870239179044399 +13900,69.49999999997304,-0.06870235700612728 +13901,69.50499999997304,-0.06870232223302077 +13902,69.50999999997303,-0.068702287471121 +13903,69.51499999997303,-0.06870225272042456 +13904,69.51999999997302,-0.06870221798092802 +13905,69.52499999997302,-0.06870218325262795 +13906,69.52999999997301,-0.06870214853552095 +13907,69.53499999997301,-0.06870211382960359 +13908,69.539999999973,-0.06870207913487245 +13909,69.544999999973,-0.06870204445132412 +13910,69.549999999973,-0.06870200977895516 +13911,69.55499999997299,-0.06870197511776217 +13912,69.55999999997299,-0.06870194046774175 +13913,69.56499999997298,-0.06870190582889046 +13914,69.56999999997298,-0.06870187120120491 +13915,69.57499999997297,-0.06870183658468168 +13916,69.57999999997297,-0.06870180197931734 +13917,69.58499999997296,-0.0687017673851085 +13918,69.58999999997296,-0.06870173280205173 +13919,69.59499999997296,-0.06870169823014366 +13920,69.59999999997295,-0.06870166366938087 +13921,69.60499999997295,-0.06870162911975992 +13922,69.60999999997294,-0.06870159458127745 +13923,69.61499999997294,-0.06870156005393002 +13924,69.61999999997293,-0.06870152553771426 +13925,69.62499999997293,-0.06870149103262675 +13926,69.62999999997292,-0.0687014565386641 +13927,69.63499999997292,-0.06870142205582287 +13928,69.63999999997291,-0.0687013875840997 +13929,69.64499999997291,-0.06870135312349121 +13930,69.6499999999729,-0.06870131867399396 +13931,69.6549999999729,-0.06870128423560456 +13932,69.6599999999729,-0.06870124980831964 +13933,69.66499999997289,-0.06870121539213579 +13934,69.66999999997289,-0.06870118098704962 +13935,69.67499999997288,-0.06870114659305775 +13936,69.67999999997288,-0.06870111221015676 +13937,69.68499999997287,-0.0687010778383433 +13938,69.68999999997287,-0.06870104347761394 +13939,69.69499999997286,-0.06870100912796533 +13940,69.69999999997286,-0.06870097478939403 +13941,69.70499999997286,-0.06870094046189672 +13942,69.70999999997285,-0.06870090614546998 +13943,69.71499999997285,-0.06870087184011042 +13944,69.71999999997284,-0.06870083754581469 +13945,69.72499999997284,-0.06870080326257935 +13946,69.72999999997283,-0.06870076899040109 +13947,69.73499999997283,-0.06870073472927647 +13948,69.73999999997282,-0.06870070047920215 +13949,69.74499999997282,-0.06870066624017475 +13950,69.74999999997281,-0.06870063201219086 +13951,69.75499999997281,-0.06870059779524712 +13952,69.7599999999728,-0.06870056358934018 +13953,69.7649999999728,-0.06870052939446665 +13954,69.7699999999728,-0.06870049521062313 +13955,69.77499999997279,-0.06870046103780629 +13956,69.77999999997279,-0.06870042687601274 +13957,69.78499999997278,-0.06870039272523912 +13958,69.78999999997278,-0.06870035858548204 +13959,69.79499999997277,-0.06870032445673814 +13960,69.79999999997277,-0.06870029033900407 +13961,69.80499999997276,-0.06870025623227645 +13962,69.80999999997276,-0.06870022213655191 +13963,69.81499999997276,-0.06870018805182711 +13964,69.81999999997275,-0.06870015397809867 +13965,69.82499999997275,-0.06870011991536322 +13966,69.82999999997274,-0.06870008586361741 +13967,69.83499999997274,-0.06870005182285788 +13968,69.83999999997273,-0.06870001779308126 +13969,69.84499999997273,-0.06869998377428421 +13970,69.84999999997272,-0.06869994976646336 +13971,69.85499999997272,-0.06869991576961537 +13972,69.85999999997271,-0.06869988178373687 +13973,69.86499999997271,-0.06869984780882452 +13974,69.8699999999727,-0.06869981384487495 +13975,69.8749999999727,-0.0686997798918848 +13976,69.8799999999727,-0.06869974594985075 +13977,69.88499999997269,-0.06869971201876944 +13978,69.88999999997269,-0.0686996780986375 +13979,69.89499999997268,-0.06869964418945163 +13980,69.89999999997268,-0.06869961029120841 +13981,69.90499999997267,-0.06869957640390456 +13982,69.90999999997267,-0.06869954252753671 +13983,69.91499999997266,-0.0686995086621015 +13984,69.91999999997266,-0.06869947480759563 +13985,69.92499999997266,-0.06869944096401571 +13986,69.92999999997265,-0.06869940713135843 +13987,69.93499999997265,-0.06869937330962043 +13988,69.93999999997264,-0.06869933949879838 +13989,69.94499999997264,-0.06869930569888895 +13990,69.94999999997263,-0.0686992719098888 +13991,69.95499999997263,-0.06869923813179458 +13992,69.95999999997262,-0.06869920436460297 +13993,69.96499999997262,-0.06869917060831064 +13994,69.96999999997261,-0.06869913686291425 +13995,69.97499999997261,-0.06869910312841046 +13996,69.9799999999726,-0.06869906940479593 +13997,69.9849999999726,-0.06869903569206737 +13998,69.9899999999726,-0.0686990019902214 +13999,69.99499999997259,-0.06869896829925473 +14000,69.99999999997259,-0.06869893461916403 +14001,70.00499999997258,-0.06869890094994595 +14002,70.00999999997258,-0.06869886729159719 +14003,70.01499999997257,-0.0686988336441144 +14004,70.01999999997257,-0.06869880000749429 +14005,70.02499999997256,-0.06869876638173351 +14006,70.02999999997256,-0.06869873276682874 +14007,70.03499999997256,-0.06869869916277668 +14008,70.03999999997255,-0.06869866556957399 +14009,70.04499999997255,-0.06869863198721736 +14010,70.04999999997254,-0.06869859841570347 +14011,70.05499999997254,-0.06869856485502901 +14012,70.05999999997253,-0.06869853130519066 +14013,70.06499999997253,-0.0686984977661851 +14014,70.06999999997252,-0.06869846423800903 +14015,70.07499999997252,-0.06869843072065913 +14016,70.07999999997251,-0.06869839721413208 +14017,70.08499999997251,-0.06869836371842461 +14018,70.0899999999725,-0.06869833023353336 +14019,70.0949999999725,-0.06869829675945503 +14020,70.0999999999725,-0.06869826329618633 +14021,70.10499999997249,-0.06869822984372395 +14022,70.10999999997249,-0.06869819640206458 +14023,70.11499999997248,-0.06869816297120493 +14024,70.11999999997248,-0.06869812955114166 +14025,70.12499999997247,-0.0686980961418715 +14026,70.12999999997247,-0.06869806274339113 +14027,70.13499999997246,-0.06869802935569727 +14028,70.13999999997246,-0.0686979959787866 +14029,70.14499999997246,-0.06869796261265584 +14030,70.14999999997245,-0.06869792925730168 +14031,70.15499999997245,-0.06869789591272082 +14032,70.15999999997244,-0.06869786257890997 +14033,70.16499999997244,-0.06869782925586584 +14034,70.16999999997243,-0.06869779594358512 +14035,70.17499999997243,-0.06869776264206454 +14036,70.17999999997242,-0.06869772935130078 +14037,70.18499999997242,-0.06869769607129057 +14038,70.18999999997241,-0.0686976628020306 +14039,70.19499999997241,-0.06869762954351762 +14040,70.1999999999724,-0.06869759629574831 +14041,70.2049999999724,-0.0686975630587194 +14042,70.2099999999724,-0.06869752983242758 +14043,70.21499999997239,-0.0686974966168696 +14044,70.21999999997239,-0.06869746341204212 +14045,70.22499999997238,-0.06869743021794193 +14046,70.22999999997238,-0.0686973970345657 +14047,70.23499999997237,-0.06869736386191015 +14048,70.23999999997237,-0.06869733069997201 +14049,70.24499999997236,-0.06869729754874801 +14050,70.24999999997236,-0.06869726440823486 +14051,70.25499999997236,-0.06869723127842929 +14052,70.25999999997235,-0.06869719815932801 +14053,70.26499999997235,-0.06869716505092775 +14054,70.26999999997234,-0.06869713195322524 +14055,70.27499999997234,-0.06869709886621721 +14056,70.27999999997233,-0.06869706578990038 +14057,70.28499999997233,-0.06869703272427148 +14058,70.28999999997232,-0.06869699966932724 +14059,70.29499999997232,-0.06869696662506439 +14060,70.29999999997231,-0.06869693359147966 +14061,70.30499999997231,-0.0686969005685698 +14062,70.3099999999723,-0.06869686755633152 +14063,70.3149999999723,-0.06869683455476155 +14064,70.3199999999723,-0.06869680156385666 +14065,70.32499999997229,-0.06869676858361355 +14066,70.32999999997229,-0.06869673561402896 +14067,70.33499999997228,-0.06869670265509965 +14068,70.33999999997228,-0.06869666970682237 +14069,70.34499999997227,-0.06869663676919381 +14070,70.34999999997227,-0.06869660384221077 +14071,70.35499999997226,-0.06869657092586993 +14072,70.35999999997226,-0.06869653802016808 +14073,70.36499999997226,-0.06869650512510195 +14074,70.36999999997225,-0.06869647224066829 +14075,70.37499999997225,-0.06869643936686383 +14076,70.37999999997224,-0.06869640650368533 +14077,70.38499999997224,-0.06869637365112953 +14078,70.38999999997223,-0.0686963408091932 +14079,70.39499999997223,-0.06869630797787304 +14080,70.39999999997222,-0.06869627515716586 +14081,70.40499999997222,-0.06869624234706838 +14082,70.40999999997221,-0.06869620954757735 +14083,70.41499999997221,-0.06869617675868955 +14084,70.4199999999722,-0.06869614398040172 +14085,70.4249999999722,-0.0686961112127106 +14086,70.4299999999722,-0.06869607845561296 +14087,70.43499999997219,-0.06869604570910556 +14088,70.43999999997219,-0.06869601297318516 +14089,70.44499999997218,-0.06869598024784851 +14090,70.44999999997218,-0.06869594753309238 +14091,70.45499999997217,-0.06869591482891352 +14092,70.45999999997217,-0.0686958821353087 +14093,70.46499999997216,-0.06869584945227468 +14094,70.46999999997216,-0.06869581677980822 +14095,70.47499999997216,-0.0686957841179061 +14096,70.47999999997215,-0.06869575146656508 +14097,70.48499999997215,-0.06869571882578192 +14098,70.48999999997214,-0.06869568619555338 +14099,70.49499999997214,-0.06869565357587624 +14100,70.49999999997213,-0.0686956209667473 +14101,70.50499999997213,-0.0686955883681633 +14102,70.50999999997212,-0.06869555578012099 +14103,70.51499999997212,-0.06869552320261717 +14104,70.51999999997211,-0.06869549063564863 +14105,70.52499999997211,-0.06869545807921212 +14106,70.5299999999721,-0.06869542553330442 +14107,70.5349999999721,-0.0686953929979223 +14108,70.5399999999721,-0.06869536047306256 +14109,70.54499999997209,-0.06869532795872195 +14110,70.54999999997209,-0.06869529545489726 +14111,70.55499999997208,-0.06869526296158529 +14112,70.55999999997208,-0.06869523047878279 +14113,70.56499999997207,-0.06869519800648656 +14114,70.56999999997207,-0.06869516554469339 +14115,70.57499999997206,-0.06869513309340006 +14116,70.57999999997206,-0.06869510065260334 +14117,70.58499999997206,-0.06869506822230004 +14118,70.58999999997205,-0.06869503580248693 +14119,70.59499999997205,-0.06869500339316079 +14120,70.59999999997204,-0.06869497099431843 +14121,70.60499999997204,-0.06869493860595663 +14122,70.60999999997203,-0.06869490622807217 +14123,70.61499999997203,-0.06869487386066188 +14124,70.61999999997202,-0.0686948415037225 +14125,70.62499999997202,-0.06869480915725087 +14126,70.62999999997201,-0.06869477682124377 +14127,70.63499999997201,-0.06869474449569797 +14128,70.639999999972,-0.06869471218061031 +14129,70.644999999972,-0.06869467987597756 +14130,70.649999999972,-0.06869464758179651 +14131,70.65499999997199,-0.06869461529806399 +14132,70.65999999997199,-0.06869458302477678 +14133,70.66499999997198,-0.06869455076193168 +14134,70.66999999997198,-0.06869451850952552 +14135,70.67499999997197,-0.06869448626755505 +14136,70.67999999997197,-0.06869445403601712 +14137,70.68499999997196,-0.06869442181490852 +14138,70.68999999997196,-0.06869438960422607 +14139,70.69499999997196,-0.06869435740396655 +14140,70.69999999997195,-0.06869432521412677 +14141,70.70499999997195,-0.06869429303470358 +14142,70.70999999997194,-0.06869426086569375 +14143,70.71499999997194,-0.0686942287070941 +14144,70.71999999997193,-0.06869419655890144 +14145,70.72499999997193,-0.06869416442111259 +14146,70.72999999997192,-0.06869413229372437 +14147,70.73499999997192,-0.06869410017673357 +14148,70.73999999997191,-0.06869406807013702 +14149,70.74499999997191,-0.06869403597393155 +14150,70.7499999999719,-0.06869400388811396 +14151,70.7549999999719,-0.06869397181268107 +14152,70.7599999999719,-0.0686939397476297 +14153,70.76499999997189,-0.06869390769295668 +14154,70.76999999997189,-0.06869387564865882 +14155,70.77499999997188,-0.06869384361473295 +14156,70.77999999997188,-0.06869381159117588 +14157,70.78499999997187,-0.06869377957798445 +14158,70.78999999997187,-0.06869374757515548 +14159,70.79499999997186,-0.06869371558268579 +14160,70.79999999997186,-0.06869368360057222 +14161,70.80499999997186,-0.06869365162881158 +14162,70.80999999997185,-0.06869361966740072 +14163,70.81499999997185,-0.06869358771633644 +14164,70.81999999997184,-0.06869355577561559 +14165,70.82499999997184,-0.06869352384523503 +14166,70.82999999997183,-0.06869349192519154 +14167,70.83499999997183,-0.06869346001548197 +14168,70.83999999997182,-0.06869342811610318 +14169,70.84499999997182,-0.06869339622705198 +14170,70.84999999997181,-0.06869336434832521 +14171,70.85499999997181,-0.06869333247991971 +14172,70.8599999999718,-0.0686933006218323 +14173,70.8649999999718,-0.06869326877405986 +14174,70.8699999999718,-0.0686932369365992 +14175,70.87499999997179,-0.06869320510944718 +14176,70.87999999997179,-0.06869317329260062 +14177,70.88499999997178,-0.06869314148605637 +14178,70.88999999997178,-0.0686931096898113 +14179,70.89499999997177,-0.0686930779038622 +14180,70.89999999997177,-0.06869304612820597 +14181,70.90499999997176,-0.06869301436283942 +14182,70.90999999997176,-0.06869298260775943 +14183,70.91499999997176,-0.0686929508629628 +14184,70.91999999997175,-0.06869291912844644 +14185,70.92499999997175,-0.06869288740420716 +14186,70.92999999997174,-0.06869285569024182 +14187,70.93499999997174,-0.06869282398654727 +14188,70.93999999997173,-0.06869279229312036 +14189,70.94499999997173,-0.06869276060995796 +14190,70.94999999997172,-0.06869272893705691 +14191,70.95499999997172,-0.06869269727441407 +14192,70.95999999997171,-0.06869266562202632 +14193,70.96499999997171,-0.06869263397989048 +14194,70.9699999999717,-0.06869260234800342 +14195,70.9749999999717,-0.068692570726362 +14196,70.9799999999717,-0.06869253911496312 +14197,70.98499999997169,-0.06869250751380358 +14198,70.98999999997169,-0.06869247592288028 +14199,70.99499999997168,-0.06869244434219007 +14200,70.99999999997168,-0.06869241277172983 +14201,71.00499999997167,-0.06869238121149639 +14202,71.00999999997167,-0.06869234966148664 +14203,71.01499999997166,-0.06869231812169746 +14204,71.01999999997166,-0.0686922865921257 +14205,71.02499999997166,-0.06869225507276823 +14206,71.02999999997165,-0.06869222356362192 +14207,71.03499999997165,-0.06869219206468366 +14208,71.03999999997164,-0.06869216057595029 +14209,71.04499999997164,-0.0686921290974187 +14210,71.04999999997163,-0.06869209762908576 +14211,71.05499999997163,-0.06869206617094836 +14212,71.05999999997162,-0.06869203472300336 +14213,71.06499999997162,-0.06869200328524763 +14214,71.06999999997161,-0.06869197185767807 +14215,71.07499999997161,-0.06869194044029153 +14216,71.0799999999716,-0.06869190903308492 +14217,71.0849999999716,-0.06869187763605508 +14218,71.0899999999716,-0.06869184624919893 +14219,71.09499999997159,-0.06869181487251333 +14220,71.09999999997159,-0.06869178350599518 +14221,71.10499999997158,-0.06869175214964135 +14222,71.10999999997158,-0.06869172080344874 +14223,71.11499999997157,-0.0686916894674142 +14224,71.11999999997157,-0.06869165814153466 +14225,71.12499999997156,-0.06869162682580698 +14226,71.12999999997156,-0.06869159552022806 +14227,71.13499999997155,-0.06869156422479479 +14228,71.13999999997155,-0.06869153293950404 +14229,71.14499999997155,-0.06869150166435273 +14230,71.14999999997154,-0.06869147039933775 +14231,71.15499999997154,-0.06869143914445597 +14232,71.15999999997153,-0.06869140789970431 +14233,71.16499999997153,-0.06869137666507963 +14234,71.16999999997152,-0.06869134544057885 +14235,71.17499999997152,-0.06869131422619888 +14236,71.17999999997151,-0.0686912830219366 +14237,71.18499999997151,-0.0686912518277889 +14238,71.1899999999715,-0.0686912206437527 +14239,71.1949999999715,-0.06869118946982489 +14240,71.1999999999715,-0.06869115830600238 +14241,71.20499999997149,-0.06869112715228205 +14242,71.20999999997149,-0.06869109600866083 +14243,71.21499999997148,-0.0686910648751356 +14244,71.21999999997148,-0.06869103375170327 +14245,71.22499999997147,-0.06869100263836077 +14246,71.22999999997147,-0.06869097153510499 +14247,71.23499999997146,-0.06869094044193284 +14248,71.23999999997146,-0.06869090935884122 +14249,71.24499999997145,-0.06869087828582704 +14250,71.24999999997145,-0.06869084722288722 +14251,71.25499999997145,-0.06869081617001867 +14252,71.25999999997144,-0.0686907851272183 +14253,71.26499999997144,-0.06869075409448301 +14254,71.26999999997143,-0.06869072307180975 +14255,71.27499999997143,-0.0686906920591954 +14256,71.27999999997142,-0.0686906610566369 +14257,71.28499999997142,-0.06869063006413115 +14258,71.28999999997141,-0.06869059908167506 +14259,71.29499999997141,-0.06869056810926559 +14260,71.2999999999714,-0.06869053714689961 +14261,71.3049999999714,-0.06869050619457408 +14262,71.3099999999714,-0.06869047525228589 +14263,71.31499999997139,-0.06869044432003199 +14264,71.31999999997139,-0.06869041339780928 +14265,71.32499999997138,-0.06869038248561471 +14266,71.32999999997138,-0.06869035158344518 +14267,71.33499999997137,-0.06869032069129763 +14268,71.33999999997137,-0.06869028980916897 +14269,71.34499999997136,-0.06869025893705616 +14270,71.34999999997136,-0.0686902280749561 +14271,71.35499999997135,-0.06869019722286572 +14272,71.35999999997135,-0.06869016638078197 +14273,71.36499999997135,-0.06869013554870178 +14274,71.36999999997134,-0.06869010472662206 +14275,71.37499999997134,-0.06869007391453975 +14276,71.37999999997133,-0.0686900431124518 +14277,71.38499999997133,-0.06869001232035515 +14278,71.38999999997132,-0.06868998153824671 +14279,71.39499999997132,-0.06868995076612344 +14280,71.39999999997131,-0.06868992000398226 +14281,71.40499999997131,-0.06868988925182014 +14282,71.4099999999713,-0.06868985850963398 +14283,71.4149999999713,-0.06868982777742073 +14284,71.4199999999713,-0.06868979705517735 +14285,71.42499999997129,-0.06868976634290076 +14286,71.42999999997129,-0.06868973564058793 +14287,71.43499999997128,-0.06868970494823579 +14288,71.43999999997128,-0.06868967426584127 +14289,71.44499999997127,-0.06868964359340135 +14290,71.44999999997127,-0.06868961293091294 +14291,71.45499999997126,-0.06868958227837303 +14292,71.45999999997126,-0.06868955163577853 +14293,71.46499999997125,-0.0686895210031264 +14294,71.46999999997125,-0.06868949038041361 +14295,71.47499999997125,-0.06868945976763707 +14296,71.47999999997124,-0.06868942916479379 +14297,71.48499999997124,-0.06868939857188067 +14298,71.48999999997123,-0.06868936798889469 +14299,71.49499999997123,-0.06868933741583282 +14300,71.49999999997122,-0.06868930685269198 +14301,71.50499999997122,-0.06868927629946914 +14302,71.50999999997121,-0.06868924575616127 +14303,71.51499999997121,-0.06868921522276533 +14304,71.5199999999712,-0.06868918469927826 +14305,71.5249999999712,-0.06868915418569703 +14306,71.5299999999712,-0.06868912368201861 +14307,71.53499999997119,-0.06868909318823997 +14308,71.53999999997119,-0.06868906270435805 +14309,71.54499999997118,-0.06868903223036982 +14310,71.54999999997118,-0.06868900176627225 +14311,71.55499999997117,-0.06868897131206231 +14312,71.55999999997117,-0.06868894086773696 +14313,71.56499999997116,-0.06868891043329317 +14314,71.56999999997116,-0.0686888800087279 +14315,71.57499999997115,-0.06868884959403815 +14316,71.57999999997115,-0.06868881918922086 +14317,71.58499999997115,-0.068688788794273 +14318,71.58999999997114,-0.06868875840919156 +14319,71.59499999997114,-0.0686887280339735 +14320,71.59999999997113,-0.0686886976686158 +14321,71.60499999997113,-0.06868866731311542 +14322,71.60999999997112,-0.06868863696746937 +14323,71.61499999997112,-0.0686886066316746 +14324,71.61999999997111,-0.06868857630572811 +14325,71.62499999997111,-0.06868854598962684 +14326,71.6299999999711,-0.06868851568336781 +14327,71.6349999999711,-0.06868848538694798 +14328,71.6399999999711,-0.06868845510036432 +14329,71.64499999997109,-0.06868842482361384 +14330,71.64999999997109,-0.06868839455669351 +14331,71.65499999997108,-0.06868836429960032 +14332,71.65999999997108,-0.06868833405233124 +14333,71.66499999997107,-0.06868830381488326 +14334,71.66999999997107,-0.06868827358725339 +14335,71.67499999997106,-0.0686882433694386 +14336,71.67999999997106,-0.06868821316143588 +14337,71.68499999997105,-0.0686881829632422 +14338,71.68999999997105,-0.06868815277485457 +14339,71.69499999997105,-0.06868812259626998 +14340,71.69999999997104,-0.06868809242748541 +14341,71.70499999997104,-0.06868806226849788 +14342,71.70999999997103,-0.06868803211930437 +14343,71.71499999997103,-0.06868800197990187 +14344,71.71999999997102,-0.06868797185028737 +14345,71.72499999997102,-0.06868794173045788 +14346,71.72999999997101,-0.0686879116204104 +14347,71.73499999997101,-0.06868788152014191 +14348,71.739999999971,-0.06868785142964942 +14349,71.744999999971,-0.06868782134892992 +14350,71.749999999971,-0.06868779127798043 +14351,71.75499999997099,-0.06868776121679794 +14352,71.75999999997099,-0.06868773116537945 +14353,71.76499999997098,-0.06868770112372197 +14354,71.76999999997098,-0.06868767109182251 +14355,71.77499999997097,-0.06868764106967806 +14356,71.77999999997097,-0.06868761105728566 +14357,71.78499999997096,-0.06868758105464226 +14358,71.78999999997096,-0.06868755106174491 +14359,71.79499999997095,-0.06868752107859062 +14360,71.79999999997095,-0.06868749110517638 +14361,71.80499999997095,-0.06868746114149922 +14362,71.80999999997094,-0.06868743118755613 +14363,71.81499999997094,-0.06868740124334413 +14364,71.81999999997093,-0.06868737130886024 +14365,71.82499999997093,-0.06868734138410147 +14366,71.82999999997092,-0.06868731146906484 +14367,71.83499999997092,-0.06868728156374736 +14368,71.83999999997091,-0.06868725166814606 +14369,71.84499999997091,-0.06868722178225795 +14370,71.8499999999709,-0.06868719190608005 +14371,71.8549999999709,-0.06868716203960937 +14372,71.8599999999709,-0.06868713218284293 +14373,71.86499999997089,-0.06868710233577777 +14374,71.86999999997089,-0.06868707249841088 +14375,71.87499999997088,-0.06868704267073932 +14376,71.87999999997088,-0.06868701285276009 +14377,71.88499999997087,-0.06868698304447023 +14378,71.88999999997087,-0.06868695324586675 +14379,71.89499999997086,-0.06868692345694669 +14380,71.89999999997086,-0.06868689367770708 +14381,71.90499999997085,-0.06868686390814494 +14382,71.90999999997085,-0.06868683414825728 +14383,71.91499999997085,-0.06868680439804116 +14384,71.91999999997084,-0.06868677465749362 +14385,71.92499999997084,-0.06868674492661166 +14386,71.92999999997083,-0.06868671520539232 +14387,71.93499999997083,-0.06868668549383264 +14388,71.93999999997082,-0.06868665579192967 +14389,71.94499999997082,-0.06868662609968043 +14390,71.94999999997081,-0.06868659641708194 +14391,71.95499999997081,-0.06868656674413127 +14392,71.9599999999708,-0.06868653708082545 +14393,71.9649999999708,-0.06868650742716151 +14394,71.9699999999708,-0.06868647778313648 +14395,71.97499999997079,-0.06868644814874741 +14396,71.97999999997079,-0.06868641852399136 +14397,71.98499999997078,-0.06868638890886536 +14398,71.98999999997078,-0.06868635930336643 +14399,71.99499999997077,-0.06868632970749165 +14400,71.99999999997077,-0.06868630012123805 +14401,72.00499999997076,-0.06868627054460268 +14402,72.00999999997076,-0.06868624097758257 +14403,72.01499999997075,-0.06868621142017478 +14404,72.01999999997075,-0.06868618187237638 +14405,72.02499999997075,-0.06868615233418439 +14406,72.02999999997074,-0.06868612280559586 +14407,72.03499999997074,-0.06868609328660785 +14408,72.03999999997073,-0.06868606377721743 +14409,72.04499999997073,-0.06868603427742163 +14410,72.04999999997072,-0.06868600478721751 +14411,72.05499999997072,-0.06868597530660213 +14412,72.05999999997071,-0.06868594583557254 +14413,72.06499999997071,-0.0686859163741258 +14414,72.0699999999707,-0.06868588692225897 +14415,72.0749999999707,-0.0686858574799691 +14416,72.0799999999707,-0.06868582804725323 +14417,72.08499999997069,-0.06868579862410848 +14418,72.08999999997069,-0.06868576921053185 +14419,72.09499999997068,-0.06868573980652043 +14420,72.09999999997068,-0.06868571041207128 +14421,72.10499999997067,-0.06868568102718146 +14422,72.10999999997067,-0.06868565165184803 +14423,72.11499999997066,-0.06868562228606809 +14424,72.11999999997066,-0.06868559292983865 +14425,72.12499999997065,-0.06868556358315682 +14426,72.12999999997065,-0.06868553424601966 +14427,72.13499999997065,-0.06868550491842422 +14428,72.13999999997064,-0.06868547560036758 +14429,72.14499999997064,-0.06868544629184682 +14430,72.14999999997063,-0.068685416992859 +14431,72.15499999997063,-0.0686853877034012 +14432,72.15999999997062,-0.0686853584234705 +14433,72.16499999997062,-0.06868532915306395 +14434,72.16999999997061,-0.06868529989217864 +14435,72.17499999997061,-0.06868527064081163 +14436,72.1799999999706,-0.06868524139896003 +14437,72.1849999999706,-0.06868521216662091 +14438,72.1899999999706,-0.06868518294379132 +14439,72.19499999997059,-0.06868515373046837 +14440,72.19999999997059,-0.0686851245266491 +14441,72.20499999997058,-0.06868509533233065 +14442,72.20999999997058,-0.06868506614751006 +14443,72.21499999997057,-0.06868503697218442 +14444,72.21999999997057,-0.06868500780635081 +14445,72.22499999997056,-0.06868497865000633 +14446,72.22999999997056,-0.06868494950314805 +14447,72.23499999997055,-0.06868492036577308 +14448,72.23999999997055,-0.06868489123787846 +14449,72.24499999997055,-0.06868486211946133 +14450,72.24999999997054,-0.06868483301051874 +14451,72.25499999997054,-0.06868480391104781 +14452,72.25999999997053,-0.06868477482104561 +14453,72.26499999997053,-0.06868474574050924 +14454,72.26999999997052,-0.06868471666943579 +14455,72.27499999997052,-0.06868468760782236 +14456,72.27999999997051,-0.06868465855566604 +14457,72.28499999997051,-0.0686846295129639 +14458,72.2899999999705,-0.06868460047971309 +14459,72.2949999999705,-0.06868457145591066 +14460,72.2999999999705,-0.06868454244155371 +14461,72.30499999997049,-0.06868451343663937 +14462,72.30999999997049,-0.0686844844411647 +14463,72.31499999997048,-0.06868445545512684 +14464,72.31999999997048,-0.06868442647852287 +14465,72.32499999997047,-0.06868439751134989 +14466,72.32999999997047,-0.068684368553605 +14467,72.33499999997046,-0.0686843396052853 +14468,72.33999999997046,-0.06868431066638792 +14469,72.34499999997045,-0.06868428173690994 +14470,72.34999999997045,-0.06868425281684847 +14471,72.35499999997045,-0.06868422390620063 +14472,72.35999999997044,-0.06868419500496352 +14473,72.36499999997044,-0.06868416611313424 +14474,72.36999999997043,-0.06868413723070992 +14475,72.37499999997043,-0.06868410835768764 +14476,72.37999999997042,-0.06868407949406453 +14477,72.38499999997042,-0.06868405063983772 +14478,72.38999999997041,-0.0686840217950043 +14479,72.39499999997041,-0.06868399295956139 +14480,72.3999999999704,-0.0686839641335061 +14481,72.4049999999704,-0.06868393531683555 +14482,72.4099999999704,-0.06868390650954685 +14483,72.41499999997039,-0.06868387771163713 +14484,72.41999999997039,-0.0686838489231035 +14485,72.42499999997038,-0.06868382014394307 +14486,72.42999999997038,-0.06868379137415298 +14487,72.43499999997037,-0.06868376261373034 +14488,72.43999999997037,-0.06868373386267228 +14489,72.44499999997036,-0.0686837051209759 +14490,72.44999999997036,-0.06868367638863833 +14491,72.45499999997035,-0.06868364766565671 +14492,72.45999999997035,-0.06868361895202815 +14493,72.46499999997035,-0.0686835902477498 +14494,72.46999999997034,-0.06868356155281877 +14495,72.47499999997034,-0.06868353286723217 +14496,72.47999999997033,-0.06868350419098714 +14497,72.48499999997033,-0.06868347552408081 +14498,72.48999999997032,-0.06868344686651034 +14499,72.49499999997032,-0.06868341821827283 +14500,72.49999999997031,-0.06868338957936541 +14501,72.50499999997031,-0.06868336094978522 +14502,72.5099999999703,-0.0686833323295294 +14503,72.5149999999703,-0.06868330371859509 +14504,72.5199999999703,-0.06868327511697939 +14505,72.52499999997029,-0.06868324652467946 +14506,72.52999999997029,-0.06868321794169245 +14507,72.53499999997028,-0.06868318936801547 +14508,72.53999999997028,-0.0686831608036457 +14509,72.54499999997027,-0.06868313224858022 +14510,72.54999999997027,-0.06868310370281623 +14511,72.55499999997026,-0.06868307516635083 +14512,72.55999999997026,-0.06868304663918119 +14513,72.56499999997025,-0.06868301812130441 +14514,72.56999999997025,-0.06868298961271768 +14515,72.57499999997025,-0.06868296111341814 +14516,72.57999999997024,-0.0686829326234029 +14517,72.58499999997024,-0.06868290414266914 +14518,72.58999999997023,-0.06868287567121399 +14519,72.59499999997023,-0.0686828472090346 +14520,72.59999999997022,-0.06868281875612814 +14521,72.60499999997022,-0.06868279031249173 +14522,72.60999999997021,-0.06868276187812254 +14523,72.61499999997021,-0.0686827334530177 +14524,72.6199999999702,-0.0686827050371744 +14525,72.6249999999702,-0.06868267663058976 +14526,72.6299999999702,-0.06868264823326094 +14527,72.63499999997019,-0.0686826198451851 +14528,72.63999999997019,-0.0686825914663594 +14529,72.64499999997018,-0.06868256309678099 +14530,72.64999999997018,-0.06868253473644703 +14531,72.65499999997017,-0.06868250638535467 +14532,72.65999999997017,-0.06868247804350108 +14533,72.66499999997016,-0.06868244971088341 +14534,72.66999999997016,-0.06868242138749883 +14535,72.67499999997015,-0.0686823930733445 +14536,72.67999999997015,-0.06868236476841758 +14537,72.68499999997015,-0.06868233647271522 +14538,72.68999999997014,-0.06868230818623461 +14539,72.69499999997014,-0.06868227990897291 +14540,72.69999999997013,-0.06868225164092727 +14541,72.70499999997013,-0.06868222338209486 +14542,72.70999999997012,-0.06868219513247285 +14543,72.71499999997012,-0.06868216689205842 +14544,72.71999999997011,-0.06868213866084873 +14545,72.72499999997011,-0.06868211043884094 +14546,72.7299999999701,-0.06868208222603224 +14547,72.7349999999701,-0.0686820540224198 +14548,72.7399999999701,-0.06868202582800076 +14549,72.74499999997009,-0.06868199764277233 +14550,72.74999999997009,-0.06868196946673168 +14551,72.75499999997008,-0.06868194129987595 +14552,72.75999999997008,-0.06868191314220237 +14553,72.76499999997007,-0.0686818849937081 +14554,72.76999999997007,-0.0686818568543903 +14555,72.77499999997006,-0.06868182872424615 +14556,72.77999999997006,-0.06868180060327284 +14557,72.78499999997005,-0.06868177249146752 +14558,72.78999999997005,-0.06868174438882743 +14559,72.79499999997005,-0.0686817162953497 +14560,72.79999999997004,-0.06868168821103154 +14561,72.80499999997004,-0.06868166013587011 +14562,72.80999999997003,-0.06868163206986264 +14563,72.81499999997003,-0.06868160401300626 +14564,72.81999999997002,-0.06868157596529817 +14565,72.82499999997002,-0.06868154792673557 +14566,72.82999999997001,-0.06868151989731565 +14567,72.83499999997001,-0.0686814918770356 +14568,72.83999999997,-0.06868146386589259 +14569,72.84499999997,-0.06868143586388384 +14570,72.84999999997,-0.0686814078710065 +14571,72.85499999996999,-0.0686813798872578 +14572,72.85999999996999,-0.06868135191263491 +14573,72.86499999996998,-0.06868132394713503 +14574,72.86999999996998,-0.06868129599075536 +14575,72.87499999996997,-0.06868126804349309 +14576,72.87999999996997,-0.06868124010534543 +14577,72.88499999996996,-0.06868121217630954 +14578,72.88999999996996,-0.06868118425638266 +14579,72.89499999996995,-0.06868115634556195 +14580,72.89999999996995,-0.06868112844384465 +14581,72.90499999996995,-0.06868110055122792 +14582,72.90999999996994,-0.068681072667709 +14583,72.91499999996994,-0.06868104479328506 +14584,72.91999999996993,-0.06868101692795331 +14585,72.92499999996993,-0.06868098907171097 +14586,72.92999999996992,-0.06868096122455522 +14587,72.93499999996992,-0.06868093338648329 +14588,72.93999999996991,-0.06868090555749237 +14589,72.94499999996991,-0.06868087773757967 +14590,72.9499999999699,-0.0686808499267424 +14591,72.9549999999699,-0.06868082212497777 +14592,72.9599999999699,-0.06868079433228297 +14593,72.96499999996989,-0.06868076654865525 +14594,72.96999999996989,-0.06868073877409178 +14595,72.97499999996988,-0.0686807110085898 +14596,72.97999999996988,-0.06868068325214649 +14597,72.98499999996987,-0.0686806555047591 +14598,72.98999999996987,-0.06868062776642483 +14599,72.99499999996986,-0.0686806000371409 +14600,72.99999999996986,-0.0686805723169045 +14601,73.00499999996985,-0.06868054460571288 +14602,73.00999999996985,-0.06868051690356325 +14603,73.01499999996985,-0.06868048921045282 +14604,73.01999999996984,-0.06868046152637883 +14605,73.02499999996984,-0.06868043385133847 +14606,73.02999999996983,-0.06868040618532896 +14607,73.03499999996983,-0.06868037852834755 +14608,73.03999999996982,-0.06868035088039144 +14609,73.04499999996982,-0.06868032324145787 +14610,73.04999999996981,-0.06868029561154405 +14611,73.05499999996981,-0.06868026799064722 +14612,73.0599999999698,-0.06868024037876459 +14613,73.0649999999698,-0.0686802127758934 +14614,73.0699999999698,-0.06868018518203087 +14615,73.07499999996979,-0.06868015759717423 +14616,73.07999999996979,-0.06868013002132071 +14617,73.08499999996978,-0.06868010245446753 +14618,73.08999999996978,-0.06868007489661195 +14619,73.09499999996977,-0.06868004734775116 +14620,73.09999999996977,-0.06868001980788242 +14621,73.10499999996976,-0.06867999227700296 +14622,73.10999999996976,-0.06867996475511001 +14623,73.11499999996975,-0.06867993724220081 +14624,73.11999999996975,-0.06867990973827258 +14625,73.12499999996975,-0.06867988224332258 +14626,73.12999999996974,-0.06867985475734804 +14627,73.13499999996974,-0.06867982728034619 +14628,73.13999999996973,-0.06867979981231427 +14629,73.14499999996973,-0.06867977235324954 +14630,73.14999999996972,-0.06867974490314921 +14631,73.15499999996972,-0.06867971746201054 +14632,73.15999999996971,-0.06867969002983078 +14633,73.16499999996971,-0.06867966260660716 +14634,73.1699999999697,-0.06867963519233691 +14635,73.1749999999697,-0.0686796077870173 +14636,73.1799999999697,-0.06867958039064558 +14637,73.18499999996969,-0.06867955300321896 +14638,73.18999999996969,-0.06867952562473473 +14639,73.19499999996968,-0.0686794982551901 +14640,73.19999999996968,-0.06867947089458236 +14641,73.20499999996967,-0.06867944354290871 +14642,73.20999999996967,-0.06867941620016645 +14643,73.21499999996966,-0.0686793888663528 +14644,73.21999999996966,-0.06867936154146503 +14645,73.22499999996965,-0.06867933422550039 +14646,73.22999999996965,-0.06867930691845611 +14647,73.23499999996965,-0.06867927962032946 +14648,73.23999999996964,-0.06867925233111773 +14649,73.24499999996964,-0.06867922505081812 +14650,73.24999999996963,-0.06867919777942792 +14651,73.25499999996963,-0.06867917051694439 +14652,73.25999999996962,-0.06867914326336477 +14653,73.26499999996962,-0.06867911601868631 +14654,73.26999999996961,-0.06867908878290632 +14655,73.27499999996961,-0.06867906155602202 +14656,73.2799999999696,-0.06867903433803067 +14657,73.2849999999696,-0.06867900712892956 +14658,73.2899999999696,-0.06867897992871594 +14659,73.29499999996959,-0.06867895273738707 +14660,73.29999999996959,-0.0686789255549402 +14661,73.30499999996958,-0.06867889838137263 +14662,73.30999999996958,-0.06867887121668162 +14663,73.31499999996957,-0.06867884406086443 +14664,73.31999999996957,-0.0686788169139183 +14665,73.32499999996956,-0.06867878977584056 +14666,73.32999999996956,-0.06867876264662845 +14667,73.33499999996955,-0.06867873552627923 +14668,73.33999999996955,-0.06867870841479018 +14669,73.34499999996955,-0.06867868131215858 +14670,73.34999999996954,-0.06867865421838168 +14671,73.35499999996954,-0.0686786271334568 +14672,73.35999999996953,-0.06867860005738115 +14673,73.36499999996953,-0.06867857299015206 +14674,73.36999999996952,-0.0686785459317668 +14675,73.37499999996952,-0.06867851888222262 +14676,73.37999999996951,-0.06867849184151682 +14677,73.38499999996951,-0.06867846480964668 +14678,73.3899999999695,-0.06867843778660945 +14679,73.3949999999695,-0.06867841077240246 +14680,73.3999999999695,-0.06867838376702295 +14681,73.40499999996949,-0.06867835677046823 +14682,73.40999999996949,-0.06867832978273558 +14683,73.41499999996948,-0.06867830280382227 +14684,73.41999999996948,-0.06867827583372559 +14685,73.42499999996947,-0.06867824887244281 +14686,73.42999999996947,-0.06867822191997124 +14687,73.43499999996946,-0.06867819497630816 +14688,73.43999999996946,-0.06867816804145087 +14689,73.44499999996945,-0.06867814111539663 +14690,73.44999999996945,-0.06867811419814275 +14691,73.45499999996944,-0.06867808728968654 +14692,73.45999999996944,-0.06867806039002523 +14693,73.46499999996944,-0.06867803349915619 +14694,73.46999999996943,-0.06867800661707665 +14695,73.47499999996943,-0.06867797974378394 +14696,73.47999999996942,-0.06867795287927533 +14697,73.48499999996942,-0.06867792602354814 +14698,73.48999999996941,-0.06867789917659964 +14699,73.49499999996941,-0.06867787233842715 +14700,73.4999999999694,-0.06867784550902796 +14701,73.5049999999694,-0.06867781868839935 +14702,73.5099999999694,-0.06867779187653865 +14703,73.51499999996939,-0.06867776507344314 +14704,73.51999999996939,-0.06867773827911013 +14705,73.52499999996938,-0.06867771149353692 +14706,73.52999999996938,-0.06867768471672081 +14707,73.53499999996937,-0.0686776579486591 +14708,73.53999999996937,-0.0686776311893491 +14709,73.54499999996936,-0.06867760443878812 +14710,73.54999999996936,-0.06867757769697345 +14711,73.55499999996935,-0.06867755096390242 +14712,73.55999999996935,-0.06867752423957232 +14713,73.56499999996934,-0.06867749752398046 +14714,73.56999999996934,-0.06867747081712415 +14715,73.57499999996934,-0.0686774441190007 +14716,73.57999999996933,-0.06867741742960742 +14717,73.58499999996933,-0.06867739074894162 +14718,73.58999999996932,-0.06867736407700062 +14719,73.59499999996932,-0.06867733741378174 +14720,73.59999999996931,-0.06867731075928225 +14721,73.60499999996931,-0.0686772841134995 +14722,73.6099999999693,-0.06867725747643083 +14723,73.6149999999693,-0.0686772308480735 +14724,73.6199999999693,-0.06867720422842487 +14725,73.62499999996929,-0.06867717761748225 +14726,73.62999999996929,-0.06867715101524294 +14727,73.63499999996928,-0.06867712442170427 +14728,73.63999999996928,-0.06867709783686357 +14729,73.64499999996927,-0.06867707126071813 +14730,73.64999999996927,-0.06867704469326531 +14731,73.65499999996926,-0.06867701813450242 +14732,73.65999999996926,-0.06867699158442678 +14733,73.66499999996925,-0.0686769650430357 +14734,73.66999999996925,-0.06867693851032654 +14735,73.67499999996924,-0.0686769119862966 +14736,73.67999999996924,-0.0686768854709432 +14737,73.68499999996924,-0.06867685896426368 +14738,73.68999999996923,-0.06867683246625536 +14739,73.69499999996923,-0.06867680597691558 +14740,73.69999999996922,-0.06867677949624168 +14741,73.70499999996922,-0.06867675302423096 +14742,73.70999999996921,-0.06867672656088078 +14743,73.71499999996921,-0.06867670010618847 +14744,73.7199999999692,-0.06867667366015134 +14745,73.7249999999692,-0.06867664722276673 +14746,73.7299999999692,-0.06867662079403199 +14747,73.73499999996919,-0.06867659437394444 +14748,73.73999999996919,-0.06867656796250142 +14749,73.74499999996918,-0.06867654155970028 +14750,73.74999999996918,-0.06867651516553835 +14751,73.75499999996917,-0.06867648878001296 +14752,73.75999999996917,-0.06867646240312146 +14753,73.76499999996916,-0.06867643603486119 +14754,73.76999999996916,-0.06867640967522946 +14755,73.77499999996915,-0.06867638332422367 +14756,73.77999999996915,-0.06867635698184112 +14757,73.78499999996914,-0.06867633064807914 +14758,73.78999999996914,-0.06867630432293513 +14759,73.79499999996914,-0.0686762780064064 +14760,73.79999999996913,-0.06867625169849027 +14761,73.80499999996913,-0.06867622539918415 +14762,73.80999999996912,-0.06867619910848534 +14763,73.81499999996912,-0.0686761728263912 +14764,73.81999999996911,-0.06867614655289907 +14765,73.82499999996911,-0.06867612028800632 +14766,73.8299999999691,-0.06867609403171028 +14767,73.8349999999691,-0.06867606778400831 +14768,73.8399999999691,-0.06867604154489777 +14769,73.84499999996909,-0.068676015314376 +14770,73.84999999996909,-0.06867598909244038 +14771,73.85499999996908,-0.06867596287908821 +14772,73.85999999996908,-0.0686759366743169 +14773,73.86499999996907,-0.06867591047812378 +14774,73.86999999996907,-0.06867588429050622 +14775,73.87499999996906,-0.06867585811146157 +14776,73.87999999996906,-0.06867583194098717 +14777,73.88499999996905,-0.0686758057790804 +14778,73.88999999996905,-0.06867577962573863 +14779,73.89499999996904,-0.06867575348095921 +14780,73.89999999996904,-0.06867572734473948 +14781,73.90499999996904,-0.06867570121707682 +14782,73.90999999996903,-0.0686756750979686 +14783,73.91499999996903,-0.06867564898741217 +14784,73.91999999996902,-0.06867562288540492 +14785,73.92499999996902,-0.06867559679194418 +14786,73.92999999996901,-0.06867557070702734 +14787,73.93499999996901,-0.06867554463065177 +14788,73.939999999969,-0.06867551856281481 +14789,73.944999999969,-0.06867549250351386 +14790,73.949999999969,-0.06867546645274628 +14791,73.95499999996899,-0.06867544041050942 +14792,73.95999999996899,-0.06867541437680068 +14793,73.96499999996898,-0.06867538835161742 +14794,73.96999999996898,-0.068675362334957 +14795,73.97499999996897,-0.06867533632681681 +14796,73.97999999996897,-0.06867531032719423 +14797,73.98499999996896,-0.0686752843360866 +14798,73.98999999996896,-0.06867525835349135 +14799,73.99499999996895,-0.0686752323794058 +14800,73.99999999996895,-0.06867520641382735 +14801,74.00499999996894,-0.0686751804567534 +14802,74.00999999996894,-0.06867515450818129 +14803,74.01499999996894,-0.06867512856810844 +14804,74.01999999996893,-0.0686751026365322 +14805,74.02499999996893,-0.06867507671344997 +14806,74.02999999996892,-0.0686750507988591 +14807,74.03499999996892,-0.06867502489275701 +14808,74.03999999996891,-0.06867499899514107 +14809,74.04499999996891,-0.06867497310600865 +14810,74.0499999999689,-0.06867494722535716 +14811,74.0549999999689,-0.06867492135318397 +14812,74.0599999999689,-0.06867489548948646 +14813,74.06499999996889,-0.06867486963426205 +14814,74.06999999996889,-0.06867484378750809 +14815,74.07499999996888,-0.06867481794922198 +14816,74.07999999996888,-0.06867479211940113 +14817,74.08499999996887,-0.0686747662980429 +14818,74.08999999996887,-0.0686747404851447 +14819,74.09499999996886,-0.06867471468070392 +14820,74.09999999996886,-0.06867468888471794 +14821,74.10499999996885,-0.06867466309718416 +14822,74.10999999996885,-0.0686746373181 +14823,74.11499999996884,-0.06867461154746282 +14824,74.11999999996884,-0.06867458578527004 +14825,74.12499999996884,-0.06867456003151903 +14826,74.12999999996883,-0.06867453428620722 +14827,74.13499999996883,-0.06867450854933199 +14828,74.13999999996882,-0.06867448282089073 +14829,74.14499999996882,-0.06867445710088085 +14830,74.14999999996881,-0.06867443138929977 +14831,74.15499999996881,-0.06867440568614487 +14832,74.1599999999688,-0.06867437999141354 +14833,74.1649999999688,-0.06867435430510321 +14834,74.1699999999688,-0.06867432862721126 +14835,74.17499999996879,-0.06867430295773512 +14836,74.17999999996879,-0.06867427729667218 +14837,74.18499999996878,-0.06867425164401983 +14838,74.18999999996878,-0.0686742259997755 +14839,74.19499999996877,-0.0686742003639366 +14840,74.19999999996877,-0.06867417473650052 +14841,74.20499999996876,-0.06867414911746468 +14842,74.20999999996876,-0.06867412350682649 +14843,74.21499999996875,-0.06867409790458337 +14844,74.21999999996875,-0.06867407231073269 +14845,74.22499999996874,-0.06867404672527193 +14846,74.22999999996874,-0.06867402114819844 +14847,74.23499999996874,-0.06867399557950966 +14848,74.23999999996873,-0.06867397001920302 +14849,74.24499999996873,-0.0686739444672759 +14850,74.24999999996872,-0.06867391892372574 +14851,74.25499999996872,-0.06867389338854996 +14852,74.25999999996871,-0.06867386786174597 +14853,74.26499999996871,-0.06867384234331117 +14854,74.2699999999687,-0.06867381683324301 +14855,74.2749999999687,-0.06867379133153889 +14856,74.2799999999687,-0.06867376583819625 +14857,74.28499999996869,-0.0686737403532125 +14858,74.28999999996869,-0.06867371487658505 +14859,74.29499999996868,-0.06867368940831134 +14860,74.29999999996868,-0.06867366394838878 +14861,74.30499999996867,-0.0686736384968148 +14862,74.30999999996867,-0.06867361305358684 +14863,74.31499999996866,-0.0686735876187023 +14864,74.31999999996866,-0.06867356219215863 +14865,74.32499999996865,-0.06867353677395324 +14866,74.32999999996865,-0.06867351136408358 +14867,74.33499999996864,-0.06867348596254706 +14868,74.33999999996864,-0.06867346056934112 +14869,74.34499999996864,-0.06867343518446317 +14870,74.34999999996863,-0.06867340980791067 +14871,74.35499999996863,-0.06867338443968105 +14872,74.35999999996862,-0.06867335907977172 +14873,74.36499999996862,-0.06867333372818013 +14874,74.36999999996861,-0.06867330838490371 +14875,74.37499999996861,-0.0686732830499399 +14876,74.3799999999686,-0.06867325772328613 +14877,74.3849999999686,-0.06867323240493985 +14878,74.3899999999686,-0.06867320709489846 +14879,74.39499999996859,-0.06867318179315944 +14880,74.39999999996859,-0.06867315649972022 +14881,74.40499999996858,-0.06867313121457823 +14882,74.40999999996858,-0.0686731059377309 +14883,74.41499999996857,-0.0686730806691757 +14884,74.41999999996857,-0.06867305540891006 +14885,74.42499999996856,-0.06867303015693142 +14886,74.42999999996856,-0.06867300491323722 +14887,74.43499999996855,-0.06867297967782492 +14888,74.43999999996855,-0.06867295445069194 +14889,74.44499999996854,-0.06867292923183574 +14890,74.44999999996854,-0.06867290402125377 +14891,74.45499999996854,-0.06867287881894348 +14892,74.45999999996853,-0.0686728536249023 +14893,74.46499999996853,-0.0686728284391277 +14894,74.46999999996852,-0.06867280326161712 +14895,74.47499999996852,-0.06867277809236802 +14896,74.47999999996851,-0.06867275293137784 +14897,74.48499999996851,-0.06867272777864403 +14898,74.4899999999685,-0.06867270263416406 +14899,74.4949999999685,-0.06867267749793536 +14900,74.4999999999685,-0.0686726523699554 +14901,74.50499999996849,-0.06867262725022164 +14902,74.50999999996849,-0.06867260213873153 +14903,74.51499999996848,-0.0686725770354825 +14904,74.51999999996848,-0.06867255194047205 +14905,74.52499999996847,-0.06867252685369761 +14906,74.52999999996847,-0.06867250177515664 +14907,74.53499999996846,-0.06867247670484664 +14908,74.53999999996846,-0.06867245164276502 +14909,74.54499999996845,-0.06867242658890925 +14910,74.54999999996845,-0.0686724015432768 +14911,74.55499999996844,-0.06867237650586515 +14912,74.55999999996844,-0.06867235147667174 +14913,74.56499999996844,-0.06867232645569404 +14914,74.56999999996843,-0.06867230144292953 +14915,74.57499999996843,-0.06867227643837565 +14916,74.57999999996842,-0.06867225144202987 +14917,74.58499999996842,-0.06867222645388969 +14918,74.58999999996841,-0.06867220147395255 +14919,74.59499999996841,-0.06867217650221591 +14920,74.5999999999684,-0.06867215153867726 +14921,74.6049999999684,-0.06867212658333406 +14922,74.6099999999684,-0.06867210163618379 +14923,74.61499999996839,-0.0686720766972239 +14924,74.61999999996839,-0.06867205176645189 +14925,74.62499999996838,-0.06867202684386522 +14926,74.62999999996838,-0.06867200192946138 +14927,74.63499999996837,-0.06867197702323782 +14928,74.63999999996837,-0.06867195212519202 +14929,74.64499999996836,-0.06867192723532146 +14930,74.64999999996836,-0.06867190235362362 +14931,74.65499999996835,-0.06867187748009598 +14932,74.65999999996835,-0.06867185261473603 +14933,74.66499999996834,-0.06867182775754123 +14934,74.66999999996834,-0.06867180290850905 +14935,74.67499999996834,-0.068671778067637 +14936,74.67999999996833,-0.06867175323492254 +14937,74.68499999996833,-0.06867172841036316 +14938,74.68999999996832,-0.06867170359395634 +14939,74.69499999996832,-0.06867167878569957 +14940,74.69999999996831,-0.06867165398559034 +14941,74.70499999996831,-0.06867162919362611 +14942,74.7099999999683,-0.06867160440980441 +14943,74.7149999999683,-0.06867157963412268 +14944,74.7199999999683,-0.06867155486657843 +14945,74.72499999996829,-0.06867153010716914 +14946,74.72999999996829,-0.06867150535589232 +14947,74.73499999996828,-0.06867148061274544 +14948,74.73999999996828,-0.068671455877726 +14949,74.74499999996827,-0.06867143115083146 +14950,74.74999999996827,-0.06867140643205936 +14951,74.75499999996826,-0.06867138172140716 +14952,74.75999999996826,-0.06867135701887238 +14953,74.76499999996825,-0.06867133232445248 +14954,74.76999999996825,-0.06867130763814498 +14955,74.77499999996824,-0.06867128295994737 +14956,74.77999999996824,-0.06867125828985716 +14957,74.78499999996824,-0.06867123362787184 +14958,74.78999999996823,-0.06867120897398889 +14959,74.79499999996823,-0.0686711843282058 +14960,74.79999999996822,-0.06867115969052012 +14961,74.80499999996822,-0.06867113506092933 +14962,74.80999999996821,-0.0686711104394309 +14963,74.81499999996821,-0.06867108582602237 +14964,74.8199999999682,-0.06867106122070123 +14965,74.8249999999682,-0.06867103662346496 +14966,74.8299999999682,-0.06867101203431109 +14967,74.83499999996819,-0.06867098745323712 +14968,74.83999999996819,-0.06867096288024055 +14969,74.84499999996818,-0.06867093831531891 +14970,74.84999999996818,-0.06867091375846966 +14971,74.85499999996817,-0.06867088920969036 +14972,74.85999999996817,-0.06867086466897848 +14973,74.86499999996816,-0.06867084013633155 +14974,74.86999999996816,-0.06867081561174708 +14975,74.87499999996815,-0.06867079109522256 +14976,74.87999999996815,-0.06867076658675553 +14977,74.88499999996814,-0.06867074208634347 +14978,74.88999999996814,-0.06867071759398392 +14979,74.89499999996814,-0.06867069310967439 +14980,74.89999999996813,-0.0686706686334124 +14981,74.90499999996813,-0.06867064416519543 +14982,74.90999999996812,-0.06867061970502103 +14983,74.91499999996812,-0.0686705952528867 +14984,74.91999999996811,-0.06867057080878998 +14985,74.92499999996811,-0.06867054637272837 +14986,74.9299999999681,-0.06867052194469939 +14987,74.9349999999681,-0.06867049752470057 +14988,74.9399999999681,-0.06867047311272942 +14989,74.94499999996809,-0.06867044870878344 +14990,74.94999999996809,-0.06867042431286019 +14991,74.95499999996808,-0.06867039992495719 +14992,74.95999999996808,-0.06867037554507194 +14993,74.96499999996807,-0.06867035117320197 +14994,74.96999999996807,-0.06867032680934482 +14995,74.97499999996806,-0.06867030245349799 +14996,74.97999999996806,-0.06867027810565904 +14997,74.98499999996805,-0.06867025376582546 +14998,74.98999999996805,-0.06867022943399483 +14999,74.99499999996804,-0.06867020511016461 +15000,74.99999999996804,-0.06867018079433239 +15001,75.00499999996804,-0.06867015648649566 +15002,75.00999999996803,-0.06867013218665197 +15003,75.01499999996803,-0.06867010789479885 +15004,75.01999999996802,-0.06867008361093384 +15005,75.02499999996802,-0.06867005933505445 +15006,75.02999999996801,-0.06867003506715823 +15007,75.03499999996801,-0.0686700108072427 +15008,75.039999999968,-0.06866998655530542 +15009,75.044999999968,-0.06866996231134391 +15010,75.049999999968,-0.06866993807535571 +15011,75.05499999996799,-0.06866991384733835 +15012,75.05999999996799,-0.06866988962728938 +15013,75.06499999996798,-0.06866986541520634 +15014,75.06999999996798,-0.06866984121108675 +15015,75.07499999996797,-0.06866981701492818 +15016,75.07999999996797,-0.06866979282672812 +15017,75.08499999996796,-0.06866976864648418 +15018,75.08999999996796,-0.06866974447419386 +15019,75.09499999996795,-0.0686697203098547 +15020,75.09999999996795,-0.06866969615346426 +15021,75.10499999996794,-0.0686696720050201 +15022,75.10999999996794,-0.06866964786451972 +15023,75.11499999996794,-0.06866962373196071 +15024,75.11999999996793,-0.0686695996073406 +15025,75.12499999996793,-0.06866957549065694 +15026,75.12999999996792,-0.06866955138190727 +15027,75.13499999996792,-0.06866952728108915 +15028,75.13999999996791,-0.06866950318820012 +15029,75.14499999996791,-0.06866947910323773 +15030,75.1499999999679,-0.06866945502619955 +15031,75.1549999999679,-0.06866943095708311 +15032,75.1599999999679,-0.06866940689588596 +15033,75.16499999996789,-0.06866938284260568 +15034,75.16999999996789,-0.06866935879723983 +15035,75.17499999996788,-0.06866933475978593 +15036,75.17999999996788,-0.06866931073024155 +15037,75.18499999996787,-0.06866928670860425 +15038,75.18999999996787,-0.06866926269487157 +15039,75.19499999996786,-0.0686692386890411 +15040,75.19999999996786,-0.06866921469111037 +15041,75.20499999996785,-0.06866919070107695 +15042,75.20999999996785,-0.06866916671893841 +15043,75.21499999996784,-0.0686691427446923 +15044,75.21999999996784,-0.06866911877833617 +15045,75.22499999996784,-0.0686690948198676 +15046,75.22999999996783,-0.06866907086928417 +15047,75.23499999996783,-0.0686690469265834 +15048,75.23999999996782,-0.06866902299176289 +15049,75.24499999996782,-0.06866899906482019 +15050,75.24999999996781,-0.06866897514575286 +15051,75.25499999996781,-0.06866895123455848 +15052,75.2599999999678,-0.06866892733123461 +15053,75.2649999999678,-0.06866890343577883 +15054,75.2699999999678,-0.0686688795481887 +15055,75.27499999996779,-0.06866885566846177 +15056,75.27999999996779,-0.06866883179659564 +15057,75.28499999996778,-0.06866880793258787 +15058,75.28999999996778,-0.06866878407643605 +15059,75.29499999996777,-0.06866876022813771 +15060,75.29999999996777,-0.06866873638769046 +15061,75.30499999996776,-0.06866871255509185 +15062,75.30999999996776,-0.06866868873033949 +15063,75.31499999996775,-0.06866866491343092 +15064,75.31999999996775,-0.06866864110436373 +15065,75.32499999996774,-0.06866861730313549 +15066,75.32999999996774,-0.06866859350974379 +15067,75.33499999996774,-0.0686685697241862 +15068,75.33999999996773,-0.0686685459464603 +15069,75.34499999996773,-0.06866852217656368 +15070,75.34999999996772,-0.06866849841449389 +15071,75.35499999996772,-0.06866847466024854 +15072,75.35999999996771,-0.06866845091382523 +15073,75.36499999996771,-0.0686684271752215 +15074,75.3699999999677,-0.06866840344443495 +15075,75.3749999999677,-0.06866837972146315 +15076,75.3799999999677,-0.06866835600630371 +15077,75.38499999996769,-0.06866833229895421 +15078,75.38999999996769,-0.06866830859941223 +15079,75.39499999996768,-0.06866828490767536 +15080,75.39999999996768,-0.06866826122374119 +15081,75.40499999996767,-0.06866823754760729 +15082,75.40999999996767,-0.06866821387927126 +15083,75.41499999996766,-0.0686681902187307 +15084,75.41999999996766,-0.06866816656598321 +15085,75.42499999996765,-0.06866814292102634 +15086,75.42999999996765,-0.06866811928385773 +15087,75.43499999996764,-0.06866809565447493 +15088,75.43999999996764,-0.06866807203287556 +15089,75.44499999996764,-0.06866804841905721 +15090,75.44999999996763,-0.06866802481301748 +15091,75.45499999996763,-0.06866800121475396 +15092,75.45999999996762,-0.06866797762426424 +15093,75.46499999996762,-0.06866795404154591 +15094,75.46999999996761,-0.06866793046659658 +15095,75.47499999996761,-0.06866790689941386 +15096,75.4799999999676,-0.06866788333999534 +15097,75.4849999999676,-0.06866785978833861 +15098,75.4899999999676,-0.0686678362444413 +15099,75.49499999996759,-0.06866781270830095 +15100,75.49999999996759,-0.06866778917991523 +15101,75.50499999996758,-0.06866776565928172 +15102,75.50999999996758,-0.068667742146398 +15103,75.51499999996757,-0.0686677186412617 +15104,75.51999999996757,-0.06866769514387042 +15105,75.52499999996756,-0.06866767165422176 +15106,75.52999999996756,-0.06866764817231334 +15107,75.53499999996755,-0.06866762469814275 +15108,75.53999999996755,-0.0686676012317076 +15109,75.54499999996754,-0.06866757777300551 +15110,75.54999999996754,-0.0686675543220341 +15111,75.55499999996754,-0.06866753087879095 +15112,75.55999999996753,-0.06866750744327368 +15113,75.56499999996753,-0.0686674840154799 +15114,75.56999999996752,-0.06866746059540724 +15115,75.57499999996752,-0.06866743718305329 +15116,75.57999999996751,-0.06866741377841568 +15117,75.58499999996751,-0.06866739038149201 +15118,75.5899999999675,-0.0686673669922799 +15119,75.5949999999675,-0.06866734361077698 +15120,75.5999999999675,-0.06866732023698086 +15121,75.60499999996749,-0.06866729687088914 +15122,75.60999999996748,-0.06866727351249946 +15123,75.61499999996748,-0.06866725016180944 +15124,75.61999999996748,-0.06866722681881668 +15125,75.62499999996747,-0.06866720348351879 +15126,75.62999999996747,-0.06866718015591343 +15127,75.63499999996746,-0.06866715683599818 +15128,75.63999999996746,-0.0686671335237707 +15129,75.64499999996745,-0.0686671102192286 +15130,75.64999999996745,-0.06866708692236947 +15131,75.65499999996744,-0.068667063633191 +15132,75.65999999996744,-0.06866704035169076 +15133,75.66499999996743,-0.06866701707786639 +15134,75.66999999996743,-0.06866699381171552 +15135,75.67499999996743,-0.0686669705532358 +15136,75.67999999996742,-0.06866694730242481 +15137,75.68499999996742,-0.06866692405928022 +15138,75.68999999996741,-0.06866690082379964 +15139,75.69499999996741,-0.06866687759598071 +15140,75.6999999999674,-0.06866685437582105 +15141,75.7049999999674,-0.06866683116331829 +15142,75.7099999999674,-0.06866680795847008 +15143,75.71499999996739,-0.06866678476127404 +15144,75.71999999996738,-0.0686667615717278 +15145,75.72499999996738,-0.06866673838982898 +15146,75.72999999996738,-0.06866671521557526 +15147,75.73499999996737,-0.06866669204896422 +15148,75.73999999996737,-0.06866666888999355 +15149,75.74499999996736,-0.06866664573866085 +15150,75.74999999996736,-0.06866662259496377 +15151,75.75499999996735,-0.06866659945889995 +15152,75.75999999996735,-0.06866657633046704 +15153,75.76499999996734,-0.06866655320966265 +15154,75.76999999996734,-0.06866653009648445 +15155,75.77499999996733,-0.06866650699093006 +15156,75.77999999996733,-0.06866648389299713 +15157,75.78499999996733,-0.06866646080268332 +15158,75.78999999996732,-0.06866643771998625 +15159,75.79499999996732,-0.06866641464490357 +15160,75.79999999996731,-0.06866639157743293 +15161,75.80499999996731,-0.06866636851757196 +15162,75.8099999999673,-0.06866634546531834 +15163,75.8149999999673,-0.06866632242066968 +15164,75.8199999999673,-0.06866629938362366 +15165,75.82499999996729,-0.0686662763541779 +15166,75.82999999996728,-0.06866625333233006 +15167,75.83499999996728,-0.0686662303180778 +15168,75.83999999996728,-0.06866620731141874 +15169,75.84499999996727,-0.06866618431235057 +15170,75.84999999996727,-0.06866616132087092 +15171,75.85499999996726,-0.06866613833697745 +15172,75.85999999996726,-0.06866611536066779 +15173,75.86499999996725,-0.06866609239193963 +15174,75.86999999996725,-0.06866606943079061 +15175,75.87499999996724,-0.06866604647721837 +15176,75.87999999996724,-0.06866602353122059 +15177,75.88499999996723,-0.06866600059279492 +15178,75.88999999996723,-0.068665977661939 +15179,75.89499999996723,-0.06866595473865053 +15180,75.89999999996722,-0.06866593182292713 +15181,75.90499999996722,-0.06866590891476647 +15182,75.90999999996721,-0.06866588601416619 +15183,75.91499999996721,-0.068665863121124 +15184,75.9199999999672,-0.06866584023563752 +15185,75.9249999999672,-0.06866581735770443 +15186,75.9299999999672,-0.06866579448732239 +15187,75.93499999996719,-0.06866577162448906 +15188,75.93999999996718,-0.06866574876920212 +15189,75.94499999996718,-0.0686657259214592 +15190,75.94999999996718,-0.06866570308125801 +15191,75.95499999996717,-0.06866568024859618 +15192,75.95999999996717,-0.0686656574234714 +15193,75.96499999996716,-0.06866563460588133 +15194,75.96999999996716,-0.06866561179582366 +15195,75.97499999996715,-0.06866558899329601 +15196,75.97999999996715,-0.0686655661982961 +15197,75.98499999996714,-0.06866554341082155 +15198,75.98999999996714,-0.06866552063087009 +15199,75.99499999996713,-0.06866549785843935 +15200,75.99999999996713,-0.06866547509352702 +15201,76.00499999996713,-0.06866545233613078 +15202,76.00999999996712,-0.06866542958624829 +15203,76.01499999996712,-0.0686654068438772 +15204,76.01999999996711,-0.06866538410901525 +15205,76.02499999996711,-0.06866536138166006 +15206,76.0299999999671,-0.06866533866180935 +15207,76.0349999999671,-0.06866531594946076 +15208,76.0399999999671,-0.06866529324461199 +15209,76.04499999996709,-0.06866527054726071 +15210,76.04999999996708,-0.06866524785740459 +15211,76.05499999996708,-0.06866522517504134 +15212,76.05999999996708,-0.06866520250016864 +15213,76.06499999996707,-0.06866517983278414 +15214,76.06999999996707,-0.06866515717288554 +15215,76.07499999996706,-0.06866513452047053 +15216,76.07999999996706,-0.06866511187553678 +15217,76.08499999996705,-0.068665089238082 +15218,76.08999999996705,-0.06866506660810383 +15219,76.09499999996704,-0.0686650439856 +15220,76.09999999996704,-0.06866502137056817 +15221,76.10499999996703,-0.06866499876300604 +15222,76.10999999996703,-0.0686649761629113 +15223,76.11499999996703,-0.06866495357028164 +15224,76.11999999996702,-0.06866493098511474 +15225,76.12499999996702,-0.0686649084074083 +15226,76.12999999996701,-0.06866488583715999 +15227,76.13499999996701,-0.06866486327436752 +15228,76.139999999967,-0.06866484071902859 +15229,76.144999999967,-0.06866481817114088 +15230,76.149999999967,-0.06866479563070209 +15231,76.15499999996699,-0.06866477309770991 +15232,76.15999999996698,-0.06866475057216204 +15233,76.16499999996698,-0.06866472805405616 +15234,76.16999999996698,-0.06866470554338999 +15235,76.17499999996697,-0.06866468304016121 +15236,76.17999999996697,-0.06866466054436753 +15237,76.18499999996696,-0.06866463805600663 +15238,76.18999999996696,-0.06866461557507621 +15239,76.19499999996695,-0.068664593101574 +15240,76.19999999996695,-0.06866457063549769 +15241,76.20499999996694,-0.06866454817684495 +15242,76.20999999996694,-0.06866452572561352 +15243,76.21499999996693,-0.06866450328180107 +15244,76.21999999996693,-0.06866448084540534 +15245,76.22499999996693,-0.068664458416424 +15246,76.22999999996692,-0.06866443599485478 +15247,76.23499999996692,-0.06866441358069537 +15248,76.23999999996691,-0.06866439117394349 +15249,76.24499999996691,-0.06866436877459682 +15250,76.2499999999669,-0.0686643463826531 +15251,76.2549999999669,-0.06866432399811004 +15252,76.2599999999669,-0.0686643016209653 +15253,76.26499999996689,-0.06866427925121664 +15254,76.26999999996688,-0.06866425688886174 +15255,76.27499999996688,-0.06866423453389833 +15256,76.27999999996688,-0.06866421218632413 +15257,76.28499999996687,-0.06866418984613683 +15258,76.28999999996687,-0.06866416751333414 +15259,76.29499999996686,-0.06866414518791379 +15260,76.29999999996686,-0.06866412286987349 +15261,76.30499999996685,-0.06866410055921093 +15262,76.30999999996685,-0.06866407825592388 +15263,76.31499999996684,-0.06866405596001002 +15264,76.31999999996684,-0.06866403367146706 +15265,76.32499999996683,-0.06866401139029274 +15266,76.32999999996683,-0.06866398911648477 +15267,76.33499999996683,-0.06866396685004086 +15268,76.33999999996682,-0.06866394459095874 +15269,76.34499999996682,-0.06866392233923614 +15270,76.34999999996681,-0.06866390009487075 +15271,76.35499999996681,-0.06866387785786032 +15272,76.3599999999668,-0.06866385562820257 +15273,76.3649999999668,-0.06866383340589521 +15274,76.3699999999668,-0.068663811190936 +15275,76.37499999996679,-0.06866378898332261 +15276,76.37999999996678,-0.06866376678305278 +15277,76.38499999996678,-0.06866374459012425 +15278,76.38999999996678,-0.06866372240453475 +15279,76.39499999996677,-0.068663700226282 +15280,76.39999999996677,-0.06866367805536373 +15281,76.40499999996676,-0.06866365589177768 +15282,76.40999999996676,-0.06866363373552156 +15283,76.41499999996675,-0.0686636115865931 +15284,76.41999999996675,-0.06866358944499006 +15285,76.42499999996674,-0.06866356731071012 +15286,76.42999999996674,-0.06866354518375106 +15287,76.43499999996673,-0.06866352306411058 +15288,76.43999999996673,-0.06866350095178643 +15289,76.44499999996673,-0.06866347884677636 +15290,76.44999999996672,-0.06866345674907808 +15291,76.45499999996672,-0.06866343465868932 +15292,76.45999999996671,-0.06866341257560783 +15293,76.46499999996671,-0.06866339049983136 +15294,76.4699999999667,-0.06866336843135763 +15295,76.4749999999667,-0.06866334637018437 +15296,76.4799999999667,-0.06866332431630934 +15297,76.48499999996669,-0.06866330226973026 +15298,76.48999999996668,-0.06866328023044489 +15299,76.49499999996668,-0.06866325819845097 +15300,76.49999999996668,-0.06866323617374621 +15301,76.50499999996667,-0.0686632141563284 +15302,76.50999999996667,-0.06866319214619523 +15303,76.51499999996666,-0.06866317014334448 +15304,76.51999999996666,-0.0686631481477739 +15305,76.52499999996665,-0.06866312615948121 +15306,76.52999999996665,-0.06866310417846416 +15307,76.53499999996664,-0.0686630822047205 +15308,76.53999999996664,-0.06866306023824799 +15309,76.54499999996663,-0.06866303827904437 +15310,76.54999999996663,-0.06866301632710739 +15311,76.55499999996663,-0.06866299438243477 +15312,76.55999999996662,-0.06866297244502431 +15313,76.56499999996662,-0.06866295051487373 +15314,76.56999999996661,-0.06866292859198077 +15315,76.57499999996661,-0.06866290667634321 +15316,76.5799999999666,-0.06866288476795879 +15317,76.5849999999666,-0.06866286286682527 +15318,76.5899999999666,-0.06866284097294038 +15319,76.59499999996659,-0.06866281908630191 +15320,76.59999999996658,-0.06866279720690759 +15321,76.60499999996658,-0.06866277533475516 +15322,76.60999999996658,-0.06866275346984244 +15323,76.61499999996657,-0.06866273161216711 +15324,76.61999999996657,-0.06866270976172698 +15325,76.62499999996656,-0.06866268791851977 +15326,76.62999999996656,-0.0686626660825433 +15327,76.63499999996655,-0.06866264425379527 +15328,76.63999999996655,-0.06866262243227347 +15329,76.64499999996654,-0.06866260061797565 +15330,76.64999999996654,-0.06866257881089956 +15331,76.65499999996653,-0.068662557011043 +15332,76.65999999996653,-0.0686625352184037 +15333,76.66499999996653,-0.06866251343297942 +15334,76.66999999996652,-0.06866249165476797 +15335,76.67499999996652,-0.06866246988376706 +15336,76.67999999996651,-0.06866244811997449 +15337,76.68499999996651,-0.06866242636338801 +15338,76.6899999999665,-0.0686624046140054 +15339,76.6949999999665,-0.06866238287182443 +15340,76.6999999999665,-0.06866236113684283 +15341,76.70499999996649,-0.06866233940905841 +15342,76.70999999996648,-0.06866231768846895 +15343,76.71499999996648,-0.06866229597507219 +15344,76.71999999996648,-0.0686622742688659 +15345,76.72499999996647,-0.06866225256984788 +15346,76.72999999996647,-0.06866223087801587 +15347,76.73499999996646,-0.06866220919336767 +15348,76.73999999996646,-0.06866218751590104 +15349,76.74499999996645,-0.06866216584561376 +15350,76.74999999996645,-0.0686621441825036 +15351,76.75499999996644,-0.06866212252656832 +15352,76.75999999996644,-0.06866210087780575 +15353,76.76499999996643,-0.0686620792362136 +15354,76.76999999996643,-0.0686620576017897 +15355,76.77499999996643,-0.0686620359745318 +15356,76.77999999996642,-0.0686620143544377 +15357,76.78499999996642,-0.06866199274150514 +15358,76.78999999996641,-0.06866197113573194 +15359,76.79499999996641,-0.06866194953711588 +15360,76.7999999999664,-0.06866192794565472 +15361,76.8049999999664,-0.06866190636134625 +15362,76.8099999999664,-0.06866188478418828 +15363,76.81499999996639,-0.06866186321417855 +15364,76.81999999996638,-0.06866184165131488 +15365,76.82499999996638,-0.06866182009559502 +15366,76.82999999996638,-0.06866179854701679 +15367,76.83499999996637,-0.06866177700557796 +15368,76.83999999996637,-0.06866175547127633 +15369,76.84499999996636,-0.06866173394410965 +15370,76.84999999996636,-0.06866171242407576 +15371,76.85499999996635,-0.06866169091117243 +15372,76.85999999996635,-0.06866166940539743 +15373,76.86499999996634,-0.06866164790674857 +15374,76.86999999996634,-0.06866162641522364 +15375,76.87499999996633,-0.06866160493082044 +15376,76.87999999996633,-0.06866158345353673 +15377,76.88499999996633,-0.06866156198337035 +15378,76.88999999996632,-0.06866154052031906 +15379,76.89499999996632,-0.06866151906438066 +15380,76.89999999996631,-0.06866149761555294 +15381,76.90499999996631,-0.06866147617383372 +15382,76.9099999999663,-0.06866145473922078 +15383,76.9149999999663,-0.0686614333117119 +15384,76.9199999999663,-0.06866141189130491 +15385,76.92499999996629,-0.06866139047799759 +15386,76.92999999996628,-0.06866136907178774 +15387,76.93499999996628,-0.06866134767267318 +15388,76.93999999996628,-0.06866132628065168 +15389,76.94499999996627,-0.06866130489572106 +15390,76.94999999996627,-0.06866128351787912 +15391,76.95499999996626,-0.06866126214712365 +15392,76.95999999996626,-0.06866124078345247 +15393,76.96499999996625,-0.06866121942686337 +15394,76.96999999996625,-0.06866119807735416 +15395,76.97499999996624,-0.06866117673492265 +15396,76.97999999996624,-0.06866115539956665 +15397,76.98499999996623,-0.06866113407128392 +15398,76.98999999996623,-0.06866111275007233 +15399,76.99499999996623,-0.06866109143592966 +15400,76.99999999996622,-0.06866107012885372 +15401,77.00499999996622,-0.06866104882884233 +15402,77.00999999996621,-0.06866102753589329 +15403,77.01499999996621,-0.06866100625000439 +15404,77.0199999999662,-0.06866098497117348 +15405,77.0249999999662,-0.06866096369939834 +15406,77.0299999999662,-0.0686609424346768 +15407,77.03499999996619,-0.06866092117700666 +15408,77.03999999996618,-0.06866089992638574 +15409,77.04499999996618,-0.06866087868281186 +15410,77.04999999996618,-0.06866085744628284 +15411,77.05499999996617,-0.06866083621679647 +15412,77.05999999996617,-0.06866081499435059 +15413,77.06499999996616,-0.068660793778943 +15414,77.06999999996616,-0.06866077257057154 +15415,77.07499999996615,-0.06866075136923401 +15416,77.07999999996615,-0.06866073017492823 +15417,77.08499999996614,-0.06866070898765203 +15418,77.08999999996614,-0.06866068780740323 +15419,77.09499999996613,-0.06866066663417962 +15420,77.09999999996613,-0.06866064546797906 +15421,77.10499999996613,-0.06866062430879936 +15422,77.10999999996612,-0.06866060315663833 +15423,77.11499999996612,-0.06866058201149382 +15424,77.11999999996611,-0.06866056087336363 +15425,77.12499999996611,-0.06866053974224559 +15426,77.1299999999661,-0.06866051861813753 +15427,77.1349999999661,-0.06866049750103727 +15428,77.1399999999661,-0.06866047639094265 +15429,77.14499999996609,-0.06866045528785147 +15430,77.14999999996608,-0.0686604341917616 +15431,77.15499999996608,-0.06866041310267083 +15432,77.15999999996608,-0.06866039202057701 +15433,77.16499999996607,-0.06866037094547797 +15434,77.16999999996607,-0.06866034987737153 +15435,77.17499999996606,-0.06866032881625553 +15436,77.17999999996606,-0.06866030776212778 +15437,77.18499999996605,-0.06866028671498615 +15438,77.18999999996605,-0.06866026567482846 +15439,77.19499999996604,-0.06866024464165253 +15440,77.19999999996604,-0.06866022361545619 +15441,77.20499999996603,-0.0686602025962373 +15442,77.20999999996603,-0.06866018158399367 +15443,77.21499999996603,-0.06866016057872316 +15444,77.21999999996602,-0.06866013958042361 +15445,77.22499999996602,-0.06866011858909282 +15446,77.22999999996601,-0.06866009760472866 +15447,77.234999999966,-0.06866007662732897 +15448,77.239999999966,-0.06866005565689158 +15449,77.244999999966,-0.06866003469341432 +15450,77.249999999966,-0.06866001373689505 +15451,77.25499999996599,-0.06865999278733162 +15452,77.25999999996598,-0.06865997184472183 +15453,77.26499999996598,-0.06865995090906357 +15454,77.26999999996598,-0.06865992998035467 +15455,77.27499999996597,-0.06865990905859294 +15456,77.27999999996597,-0.06865988814377627 +15457,77.28499999996596,-0.06865986723590249 +15458,77.28999999996596,-0.06865984633496945 +15459,77.29499999996595,-0.06865982544097499 +15460,77.29999999996595,-0.06865980455391694 +15461,77.30499999996594,-0.06865978367379319 +15462,77.30999999996594,-0.06865976280060156 +15463,77.31499999996593,-0.0686597419343399 +15464,77.31999999996593,-0.06865972107500606 +15465,77.32499999996593,-0.0686597002225979 +15466,77.32999999996592,-0.06865967937711329 +15467,77.33499999996592,-0.06865965853855004 +15468,77.33999999996591,-0.06865963770690602 +15469,77.3449999999659,-0.06865961688217909 +15470,77.3499999999659,-0.06865959606436708 +15471,77.3549999999659,-0.06865957525346789 +15472,77.3599999999659,-0.06865955444947933 +15473,77.36499999996589,-0.0686595336523993 +15474,77.36999999996588,-0.06865951286222562 +15475,77.37499999996588,-0.06865949207895615 +15476,77.37999999996588,-0.06865947130258876 +15477,77.38499999996587,-0.06865945053312131 +15478,77.38999999996587,-0.06865942977055164 +15479,77.39499999996586,-0.06865940901487765 +15480,77.39999999996586,-0.06865938826609716 +15481,77.40499999996585,-0.06865936752420804 +15482,77.40999999996585,-0.06865934678920815 +15483,77.41499999996584,-0.06865932606109537 +15484,77.41999999996584,-0.06865930533986755 +15485,77.42499999996583,-0.06865928462552257 +15486,77.42999999996583,-0.06865926391805825 +15487,77.43499999996583,-0.06865924321747251 +15488,77.43999999996582,-0.06865922252376318 +15489,77.44499999996582,-0.06865920183692814 +15490,77.44999999996581,-0.06865918115696525 +15491,77.4549999999658,-0.06865916048387238 +15492,77.4599999999658,-0.0686591398176474 +15493,77.4649999999658,-0.06865911915828818 +15494,77.4699999999658,-0.06865909850579259 +15495,77.47499999996579,-0.06865907786015849 +15496,77.47999999996578,-0.06865905722138377 +15497,77.48499999996578,-0.06865903658946627 +15498,77.48999999996578,-0.0686590159644039 +15499,77.49499999996577,-0.0686589953461945 +15500,77.49999999996577,-0.06865897473483597 +15501,77.50499999996576,-0.06865895413032615 +15502,77.50999999996576,-0.06865893353266295 +15503,77.51499999996575,-0.06865891294184422 +15504,77.51999999996575,-0.06865889235786786 +15505,77.52499999996574,-0.06865887178073171 +15506,77.52999999996574,-0.06865885121043368 +15507,77.53499999996573,-0.06865883064697163 +15508,77.53999999996573,-0.06865881009034347 +15509,77.54499999996573,-0.06865878954054704 +15510,77.54999999996572,-0.06865876899758022 +15511,77.55499999996572,-0.06865874846144092 +15512,77.55999999996571,-0.068658727932127 +15513,77.5649999999657,-0.06865870740963635 +15514,77.5699999999657,-0.06865868689396684 +15515,77.5749999999657,-0.06865866638511638 +15516,77.5799999999657,-0.06865864588308282 +15517,77.58499999996569,-0.06865862538786405 +15518,77.58999999996568,-0.06865860489945796 +15519,77.59499999996568,-0.06865858441786246 +15520,77.59999999996568,-0.06865856394307542 +15521,77.60499999996567,-0.06865854347509469 +15522,77.60999999996567,-0.0686585230139182 +15523,77.61499999996566,-0.06865850255954384 +15524,77.61999999996566,-0.06865848211196947 +15525,77.62499999996565,-0.068658461671193 +15526,77.62999999996565,-0.0686584412372123 +15527,77.63499999996564,-0.0686584208100253 +15528,77.63999999996564,-0.06865840038962984 +15529,77.64499999996563,-0.06865837997602384 +15530,77.64999999996563,-0.06865835956920519 +15531,77.65499999996563,-0.06865833916917179 +15532,77.65999999996562,-0.06865831877592152 +15533,77.66499999996562,-0.06865829838945227 +15534,77.66999999996561,-0.06865827800976196 +15535,77.6749999999656,-0.06865825763684846 +15536,77.6799999999656,-0.06865823727070967 +15537,77.6849999999656,-0.06865821691134351 +15538,77.6899999999656,-0.06865819655874784 +15539,77.69499999996559,-0.0686581762129206 +15540,77.69999999996558,-0.06865815587385964 +15541,77.70499999996558,-0.0686581355415629 +15542,77.70999999996558,-0.06865811521602827 +15543,77.71499999996557,-0.06865809489725364 +15544,77.71999999996557,-0.0686580745852369 +15545,77.72499999996556,-0.06865805427997598 +15546,77.72999999996556,-0.06865803398146877 +15547,77.73499999996555,-0.0686580136897132 +15548,77.73999999996555,-0.06865799340470712 +15549,77.74499999996554,-0.06865797312644847 +15550,77.74999999996554,-0.06865795285493514 +15551,77.75499999996553,-0.06865793259016506 +15552,77.75999999996553,-0.06865791233213611 +15553,77.76499999996553,-0.0686578920808462 +15554,77.76999999996552,-0.06865787183629324 +15555,77.77499999996552,-0.06865785159847515 +15556,77.77999999996551,-0.06865783136738983 +15557,77.7849999999655,-0.0686578111430352 +15558,77.7899999999655,-0.06865779092540913 +15559,77.7949999999655,-0.06865777071450958 +15560,77.7999999999655,-0.06865775051033444 +15561,77.80499999996549,-0.06865773031288161 +15562,77.80999999996548,-0.06865771012214902 +15563,77.81499999996548,-0.06865768993813458 +15564,77.81999999996548,-0.0686576697608362 +15565,77.82499999996547,-0.06865764959025179 +15566,77.82999999996547,-0.06865762942637929 +15567,77.83499999996546,-0.06865760926921657 +15568,77.83999999996546,-0.06865758911876159 +15569,77.84499999996545,-0.06865756897501225 +15570,77.84999999996545,-0.06865754883796647 +15571,77.85499999996544,-0.06865752870762216 +15572,77.85999999996544,-0.06865750858397725 +15573,77.86499999996543,-0.06865748846702964 +15574,77.86999999996543,-0.06865746835677727 +15575,77.87499999996542,-0.06865744825321805 +15576,77.87999999996542,-0.06865742815634991 +15577,77.88499999996542,-0.06865740806617077 +15578,77.88999999996541,-0.06865738798267855 +15579,77.8949999999654,-0.06865736790587115 +15580,77.8999999999654,-0.06865734783574653 +15581,77.9049999999654,-0.06865732777230261 +15582,77.9099999999654,-0.0686573077155373 +15583,77.91499999996539,-0.06865728766544854 +15584,77.91999999996538,-0.06865726762203424 +15585,77.92499999996538,-0.06865724758529235 +15586,77.92999999996537,-0.06865722755522076 +15587,77.93499999996537,-0.06865720753181742 +15588,77.93999999996537,-0.06865718751508026 +15589,77.94499999996536,-0.06865716750500722 +15590,77.94999999996536,-0.06865714750159621 +15591,77.95499999996535,-0.06865712750484516 +15592,77.95999999996535,-0.06865710751475201 +15593,77.96499999996534,-0.0686570875313147 +15594,77.96999999996534,-0.06865706755453116 +15595,77.97499999996533,-0.06865704758439929 +15596,77.97999999996533,-0.06865702762091708 +15597,77.98499999996532,-0.06865700766408242 +15598,77.98999999996532,-0.06865698771389327 +15599,77.99499999996532,-0.06865696777034754 +15600,77.99999999996531,-0.06865694783344319 +15601,78.0049999999653,-0.06865692790317815 +15602,78.0099999999653,-0.06865690797955035 +15603,78.0149999999653,-0.06865688806255772 +15604,78.0199999999653,-0.06865686815219825 +15605,78.02499999996529,-0.06865684824846982 +15606,78.02999999996528,-0.06865682835137038 +15607,78.03499999996528,-0.06865680846089789 +15608,78.03999999996527,-0.06865678857705029 +15609,78.04499999996527,-0.06865676869982552 +15610,78.04999999996527,-0.06865674882922151 +15611,78.05499999996526,-0.06865672896523621 +15612,78.05999999996526,-0.06865670910786756 +15613,78.06499999996525,-0.06865668925711352 +15614,78.06999999996525,-0.06865666941297201 +15615,78.07499999996524,-0.068656649575441 +15616,78.07999999996524,-0.06865662974451842 +15617,78.08499999996523,-0.0686566099202022 +15618,78.08999999996523,-0.06865659010249033 +15619,78.09499999996522,-0.06865657029138074 +15620,78.09999999996522,-0.06865655048687136 +15621,78.10499999996522,-0.06865653068896015 +15622,78.10999999996521,-0.06865651089764506 +15623,78.1149999999652,-0.06865649111292406 +15624,78.1199999999652,-0.06865647133479509 +15625,78.1249999999652,-0.06865645156325609 +15626,78.1299999999652,-0.06865643179830501 +15627,78.13499999996519,-0.06865641203993983 +15628,78.13999999996518,-0.06865639228815848 +15629,78.14499999996518,-0.06865637254295891 +15630,78.14999999996517,-0.06865635280433909 +15631,78.15499999996517,-0.06865633307229696 +15632,78.15999999996517,-0.0686563133468305 +15633,78.16499999996516,-0.06865629362793764 +15634,78.16999999996516,-0.06865627391561635 +15635,78.17499999996515,-0.0686562542098646 +15636,78.17999999996515,-0.06865623451068033 +15637,78.18499999996514,-0.0686562148180615 +15638,78.18999999996514,-0.06865619513200608 +15639,78.19499999996513,-0.06865617545251201 +15640,78.19999999996513,-0.06865615577957727 +15641,78.20499999996512,-0.06865613611319982 +15642,78.20999999996512,-0.06865611645337762 +15643,78.21499999996512,-0.06865609680010863 +15644,78.21999999996511,-0.06865607715339081 +15645,78.2249999999651,-0.06865605751322214 +15646,78.2299999999651,-0.06865603787960056 +15647,78.2349999999651,-0.06865601825252406 +15648,78.2399999999651,-0.06865599863199058 +15649,78.24499999996509,-0.06865597901799811 +15650,78.24999999996508,-0.0686559594105446 +15651,78.25499999996508,-0.06865593980962803 +15652,78.25999999996507,-0.06865592021524636 +15653,78.26499999996507,-0.06865590062739756 +15654,78.26999999996507,-0.0686558810460796 +15655,78.27499999996506,-0.06865586147129046 +15656,78.27999999996506,-0.0686558419030281 +15657,78.28499999996505,-0.0686558223412905 +15658,78.28999999996505,-0.06865580278607562 +15659,78.29499999996504,-0.06865578323738145 +15660,78.29999999996504,-0.06865576369520592 +15661,78.30499999996503,-0.06865574415954706 +15662,78.30999999996503,-0.0686557246304028 +15663,78.31499999996502,-0.06865570510777114 +15664,78.31999999996502,-0.06865568559165006 +15665,78.32499999996502,-0.06865566608203752 +15666,78.32999999996501,-0.06865564657893149 +15667,78.334999999965,-0.06865562708232996 +15668,78.339999999965,-0.06865560759223091 +15669,78.344999999965,-0.06865558810863231 +15670,78.349999999965,-0.06865556863153216 +15671,78.35499999996499,-0.06865554916092842 +15672,78.35999999996498,-0.06865552969681908 +15673,78.36499999996498,-0.0686555102392021 +15674,78.36999999996497,-0.06865549078807548 +15675,78.37499999996497,-0.06865547134343722 +15676,78.37999999996497,-0.06865545190528526 +15677,78.38499999996496,-0.0686554324736176 +15678,78.38999999996496,-0.06865541304843226 +15679,78.39499999996495,-0.06865539362972717 +15680,78.39999999996495,-0.06865537421750036 +15681,78.40499999996494,-0.06865535481174978 +15682,78.40999999996494,-0.06865533541247344 +15683,78.41499999996493,-0.0686553160196693 +15684,78.41999999996493,-0.06865529663333539 +15685,78.42499999996492,-0.06865527725346966 +15686,78.42999999996492,-0.06865525788007013 +15687,78.43499999996492,-0.06865523851313476 +15688,78.43999999996491,-0.06865521915266155 +15689,78.4449999999649,-0.06865519979864851 +15690,78.4499999999649,-0.0686551804510936 +15691,78.4549999999649,-0.06865516110999484 +15692,78.4599999999649,-0.0686551417753502 +15693,78.46499999996489,-0.0686551224471577 +15694,78.46999999996488,-0.0686551031254153 +15695,78.47499999996488,-0.06865508381012102 +15696,78.47999999996487,-0.06865506450127283 +15697,78.48499999996487,-0.06865504519886875 +15698,78.48999999996487,-0.06865502590290677 +15699,78.49499999996486,-0.06865500661338489 +15700,78.49999999996486,-0.06865498733030108 +15701,78.50499999996485,-0.06865496805365338 +15702,78.50999999996485,-0.06865494878343976 +15703,78.51499999996484,-0.06865492951965824 +15704,78.51999999996484,-0.0686549102623068 +15705,78.52499999996483,-0.06865489101138345 +15706,78.52999999996483,-0.06865487176688617 +15707,78.53499999996482,-0.068654852528813 +15708,78.53999999996482,-0.06865483329716192 +15709,78.54499999996482,-0.06865481407193093 +15710,78.54999999996481,-0.06865479485311804 +15711,78.5549999999648,-0.06865477564072124 +15712,78.5599999999648,-0.06865475643473856 +15713,78.5649999999648,-0.06865473723516799 +15714,78.56999999996479,-0.06865471804200753 +15715,78.57499999996479,-0.06865469885525519 +15716,78.57999999996478,-0.06865467967490899 +15717,78.58499999996478,-0.06865466050096693 +15718,78.58999999996477,-0.06865464133342701 +15719,78.59499999996477,-0.06865462217228725 +15720,78.59999999996477,-0.06865460301754565 +15721,78.60499999996476,-0.06865458386920024 +15722,78.60999999996476,-0.068654564727249 +15723,78.61499999996475,-0.06865454559168996 +15724,78.61999999996475,-0.06865452646252113 +15725,78.62499999996474,-0.0686545073397405 +15726,78.62999999996474,-0.06865448822334612 +15727,78.63499999996473,-0.06865446911333599 +15728,78.63999999996473,-0.06865445000970812 +15729,78.64499999996472,-0.06865443091246051 +15730,78.64999999996472,-0.06865441182159121 +15731,78.65499999996472,-0.06865439273709821 +15732,78.65999999996471,-0.06865437365897954 +15733,78.6649999999647,-0.06865435458723321 +15734,78.6699999999647,-0.06865433552185722 +15735,78.6749999999647,-0.06865431646284963 +15736,78.67999999996469,-0.06865429741020841 +15737,78.68499999996469,-0.06865427836393162 +15738,78.68999999996468,-0.06865425932401728 +15739,78.69499999996468,-0.06865424029046338 +15740,78.69999999996467,-0.06865422126326796 +15741,78.70499999996467,-0.06865420224242903 +15742,78.70999999996467,-0.06865418322794463 +15743,78.71499999996466,-0.06865416421981277 +15744,78.71999999996466,-0.06865414521803148 +15745,78.72499999996465,-0.06865412622259878 +15746,78.72999999996465,-0.06865410723351269 +15747,78.73499999996464,-0.06865408825077125 +15748,78.73999999996464,-0.0686540692743725 +15749,78.74499999996463,-0.06865405030431442 +15750,78.74999999996463,-0.06865403134059506 +15751,78.75499999996462,-0.06865401238321246 +15752,78.75999999996462,-0.06865399343216465 +15753,78.76499999996462,-0.06865397448744963 +15754,78.76999999996461,-0.06865395554906546 +15755,78.7749999999646,-0.06865393661701015 +15756,78.7799999999646,-0.06865391769128174 +15757,78.7849999999646,-0.06865389877187826 +15758,78.78999999996459,-0.06865387985879776 +15759,78.79499999996459,-0.06865386095203824 +15760,78.79999999996458,-0.06865384205159773 +15761,78.80499999996458,-0.06865382315747431 +15762,78.80999999996457,-0.06865380426966597 +15763,78.81499999996457,-0.06865378538817077 +15764,78.81999999996457,-0.06865376651298673 +15765,78.82499999996456,-0.06865374764411189 +15766,78.82999999996456,-0.06865372878154428 +15767,78.83499999996455,-0.06865370992528197 +15768,78.83999999996455,-0.06865369107532297 +15769,78.84499999996454,-0.06865367223166531 +15770,78.84999999996454,-0.06865365339430705 +15771,78.85499999996453,-0.06865363456324623 +15772,78.85999999996453,-0.06865361573848086 +15773,78.86499999996452,-0.06865359692000902 +15774,78.86999999996452,-0.06865357810782874 +15775,78.87499999996452,-0.06865355930193805 +15776,78.87999999996451,-0.06865354050233499 +15777,78.8849999999645,-0.06865352170901763 +15778,78.8899999999645,-0.06865350292198397 +15779,78.8949999999645,-0.0686534841412321 +15780,78.89999999996449,-0.06865346536676004 +15781,78.90499999996449,-0.06865344659856584 +15782,78.90999999996448,-0.06865342783664755 +15783,78.91499999996448,-0.0686534090810032 +15784,78.91999999996447,-0.06865339033163087 +15785,78.92499999996447,-0.06865337158852859 +15786,78.92999999996447,-0.0686533528516944 +15787,78.93499999996446,-0.06865333412112636 +15788,78.93999999996446,-0.06865331539682251 +15789,78.94499999996445,-0.06865329667878091 +15790,78.94999999996445,-0.0686532779669996 +15791,78.95499999996444,-0.06865325926147665 +15792,78.95999999996444,-0.0686532405622101 +15793,78.96499999996443,-0.068653221869198 +15794,78.96999999996443,-0.06865320318243842 +15795,78.97499999996442,-0.06865318450192939 +15796,78.97999999996442,-0.06865316582766898 +15797,78.98499999996442,-0.06865314715965522 +15798,78.98999999996441,-0.0686531284978862 +15799,78.9949999999644,-0.06865310984235996 +15800,78.9999999999644,-0.06865309119307457 +15801,79.0049999999644,-0.06865307255002807 +15802,79.00999999996439,-0.06865305391321852 +15803,79.01499999996439,-0.06865303528264396 +15804,79.01999999996438,-0.06865301665830251 +15805,79.02499999996438,-0.06865299804019218 +15806,79.02999999996437,-0.06865297942831103 +15807,79.03499999996437,-0.06865296082265714 +15808,79.03999999996437,-0.06865294222322856 +15809,79.04499999996436,-0.06865292363002336 +15810,79.04999999996436,-0.06865290504303959 +15811,79.05499999996435,-0.06865288646227533 +15812,79.05999999996435,-0.06865286788772862 +15813,79.06499999996434,-0.06865284931939755 +15814,79.06999999996434,-0.06865283075728017 +15815,79.07499999996433,-0.06865281220137456 +15816,79.07999999996433,-0.06865279365167877 +15817,79.08499999996432,-0.06865277510819087 +15818,79.08999999996432,-0.06865275657090894 +15819,79.09499999996432,-0.06865273803983102 +15820,79.09999999996431,-0.0686527195149552 +15821,79.1049999999643,-0.06865270099627957 +15822,79.1099999999643,-0.06865268248380216 +15823,79.1149999999643,-0.06865266397752104 +15824,79.11999999996429,-0.06865264547743431 +15825,79.12499999996429,-0.06865262698354002 +15826,79.12999999996428,-0.06865260849583625 +15827,79.13499999996428,-0.06865259001432107 +15828,79.13999999996427,-0.06865257153899255 +15829,79.14499999996427,-0.06865255306984877 +15830,79.14999999996427,-0.0686525346068878 +15831,79.15499999996426,-0.06865251615010771 +15832,79.15999999996426,-0.0686524976995066 +15833,79.16499999996425,-0.06865247925508251 +15834,79.16999999996425,-0.06865246081683354 +15835,79.17499999996424,-0.06865244238475776 +15836,79.17999999996424,-0.06865242395885326 +15837,79.18499999996423,-0.06865240553911811 +15838,79.18999999996423,-0.06865238712555037 +15839,79.19499999996422,-0.06865236871814816 +15840,79.19999999996422,-0.06865235031690953 +15841,79.20499999996422,-0.06865233192183254 +15842,79.20999999996421,-0.06865231353291532 +15843,79.2149999999642,-0.06865229515015592 +15844,79.2199999999642,-0.06865227677355243 +15845,79.2249999999642,-0.06865225840310293 +15846,79.22999999996419,-0.06865224003880552 +15847,79.23499999996419,-0.06865222168065828 +15848,79.23999999996418,-0.06865220332865928 +15849,79.24499999996418,-0.0686521849828066 +15850,79.24999999996417,-0.06865216664309834 +15851,79.25499999996417,-0.06865214830953259 +15852,79.25999999996417,-0.06865212998210743 +15853,79.26499999996416,-0.06865211166082096 +15854,79.26999999996416,-0.06865209334567124 +15855,79.27499999996415,-0.06865207503665637 +15856,79.27999999996415,-0.06865205673377446 +15857,79.28499999996414,-0.06865203843702358 +15858,79.28999999996414,-0.06865202014640183 +15859,79.29499999996413,-0.06865200186190729 +15860,79.29999999996413,-0.06865198358353804 +15861,79.30499999996412,-0.06865196531129221 +15862,79.30999999996412,-0.06865194704516786 +15863,79.31499999996412,-0.06865192878516312 +15864,79.31999999996411,-0.06865191053127603 +15865,79.3249999999641,-0.06865189228350473 +15866,79.3299999999641,-0.06865187404184728 +15867,79.3349999999641,-0.06865185580630181 +15868,79.33999999996409,-0.0686518375768664 +15869,79.34499999996409,-0.06865181935353915 +15870,79.34999999996408,-0.06865180113631815 +15871,79.35499999996408,-0.0686517829252015 +15872,79.35999999996407,-0.06865176472018729 +15873,79.36499999996407,-0.06865174652127363 +15874,79.36999999996407,-0.06865172832845863 +15875,79.37499999996406,-0.06865171014174039 +15876,79.37999999996406,-0.06865169196111698 +15877,79.38499999996405,-0.06865167378658653 +15878,79.38999999996405,-0.06865165561814714 +15879,79.39499999996404,-0.06865163745579689 +15880,79.39999999996404,-0.06865161929953391 +15881,79.40499999996403,-0.06865160114935628 +15882,79.40999999996403,-0.06865158300526213 +15883,79.41499999996402,-0.06865156486724955 +15884,79.41999999996402,-0.06865154673531665 +15885,79.42499999996402,-0.06865152860946153 +15886,79.42999999996401,-0.06865151048968228 +15887,79.434999999964,-0.06865149237597705 +15888,79.439999999964,-0.0686514742683439 +15889,79.444999999964,-0.06865145616678098 +15890,79.44999999996399,-0.06865143807128636 +15891,79.45499999996399,-0.06865141998185818 +15892,79.45999999996398,-0.06865140189849454 +15893,79.46499999996398,-0.06865138382119355 +15894,79.46999999996397,-0.06865136574995333 +15895,79.47499999996397,-0.06865134768477198 +15896,79.47999999996397,-0.0686513296256476 +15897,79.48499999996396,-0.06865131157257834 +15898,79.48999999996396,-0.06865129352556226 +15899,79.49499999996395,-0.06865127548459754 +15900,79.49999999996395,-0.06865125744968223 +15901,79.50499999996394,-0.0686512394208145 +15902,79.50999999996394,-0.06865122139799242 +15903,79.51499999996393,-0.06865120338121412 +15904,79.51999999996393,-0.06865118537047772 +15905,79.52499999996392,-0.06865116736578135 +15906,79.52999999996392,-0.06865114936712312 +15907,79.53499999996392,-0.06865113137450113 +15908,79.53999999996391,-0.06865111338791352 +15909,79.5449999999639,-0.0686510954073584 +15910,79.5499999999639,-0.06865107743283391 +15911,79.5549999999639,-0.06865105946433815 +15912,79.55999999996389,-0.06865104150186925 +15913,79.56499999996389,-0.06865102354542532 +15914,79.56999999996388,-0.06865100559500449 +15915,79.57499999996388,-0.06865098765060489 +15916,79.57999999996387,-0.06865096971222463 +15917,79.58499999996387,-0.06865095177986184 +15918,79.58999999996387,-0.06865093385351465 +15919,79.59499999996386,-0.06865091593318116 +15920,79.59999999996386,-0.06865089801885954 +15921,79.60499999996385,-0.06865088011054789 +15922,79.60999999996385,-0.06865086220824433 +15923,79.61499999996384,-0.06865084431194701 +15924,79.61999999996384,-0.06865082642165403 +15925,79.62499999996383,-0.06865080853736355 +15926,79.62999999996383,-0.06865079065907366 +15927,79.63499999996382,-0.06865077278678253 +15928,79.63999999996382,-0.06865075492048826 +15929,79.64499999996382,-0.06865073706018901 +15930,79.64999999996381,-0.06865071920588288 +15931,79.6549999999638,-0.06865070135756803 +15932,79.6599999999638,-0.06865068351524256 +15933,79.6649999999638,-0.06865066567890463 +15934,79.66999999996379,-0.06865064784855236 +15935,79.67499999996379,-0.06865063002418391 +15936,79.67999999996378,-0.06865061220579739 +15937,79.68499999996378,-0.06865059439339094 +15938,79.68999999996377,-0.06865057658696269 +15939,79.69499999996377,-0.06865055878651077 +15940,79.69999999996377,-0.06865054099203334 +15941,79.70499999996376,-0.06865052320352852 +15942,79.70999999996376,-0.06865050542099446 +15943,79.71499999996375,-0.06865048764442931 +15944,79.71999999996375,-0.06865046987383117 +15945,79.72499999996374,-0.06865045210919822 +15946,79.72999999996374,-0.06865043435052857 +15947,79.73499999996373,-0.06865041659782038 +15948,79.73999999996373,-0.06865039885107178 +15949,79.74499999996372,-0.06865038111028093 +15950,79.74999999996372,-0.06865036337544596 +15951,79.75499999996372,-0.06865034564656501 +15952,79.75999999996371,-0.06865032792363623 +15953,79.7649999999637,-0.06865031020665775 +15954,79.7699999999637,-0.06865029249562773 +15955,79.7749999999637,-0.06865027479054434 +15956,79.77999999996369,-0.06865025709140567 +15957,79.78499999996369,-0.0686502393982099 +15958,79.78999999996368,-0.06865022171095517 +15959,79.79499999996368,-0.06865020402963963 +15960,79.79999999996367,-0.06865018635426143 +15961,79.80499999996367,-0.06865016868481871 +15962,79.80999999996367,-0.06865015102130963 +15963,79.81499999996366,-0.06865013336373234 +15964,79.81999999996366,-0.06865011571208499 +15965,79.82499999996365,-0.06865009806636571 +15966,79.82999999996365,-0.06865008042657268 +15967,79.83499999996364,-0.06865006279270405 +15968,79.83999999996364,-0.06865004516475795 +15969,79.84499999996363,-0.06865002754273256 +15970,79.84999999996363,-0.06865000992662601 +15971,79.85499999996362,-0.06864999231643647 +15972,79.85999999996362,-0.06864997471216208 +15973,79.86499999996362,-0.06864995711380101 +15974,79.86999999996361,-0.06864993952135141 +15975,79.8749999999636,-0.06864992193481145 +15976,79.8799999999636,-0.06864990435417925 +15977,79.8849999999636,-0.06864988677945301 +15978,79.88999999996359,-0.06864986921063088 +15979,79.89499999996359,-0.068649851647711 +15980,79.89999999996358,-0.06864983409069153 +15981,79.90499999996358,-0.06864981653957064 +15982,79.90999999996357,-0.06864979899434649 +15983,79.91499999996357,-0.06864978145501725 +15984,79.91999999996357,-0.06864976392158106 +15985,79.92499999996356,-0.06864974639403612 +15986,79.92999999996356,-0.06864972887238055 +15987,79.93499999996355,-0.06864971135661253 +15988,79.93999999996355,-0.06864969384673023 +15989,79.94499999996354,-0.06864967634273181 +15990,79.94999999996354,-0.06864965884461544 +15991,79.95499999996353,-0.06864964135237925 +15992,79.95999999996353,-0.06864962386602144 +15993,79.96499999996352,-0.06864960638554019 +15994,79.96999999996352,-0.06864958891093363 +15995,79.97499999996352,-0.06864957144219996 +15996,79.97999999996351,-0.06864955397933732 +15997,79.9849999999635,-0.06864953652234392 +15998,79.9899999999635,-0.06864951907121788 +15999,79.9949999999635,-0.0686495016259574 +16000,79.99999999996349,-0.06864948418656064 +16001,80.00499999996349,-0.06864946675302577 +16002,80.00999999996348,-0.06864944932535098 +16003,80.01499999996348,-0.06864943190353442 +16004,80.01999999996347,-0.06864941448757428 +16005,80.02499999996347,-0.06864939707746871 +16006,80.02999999996347,-0.0686493796732159 +16007,80.03499999996346,-0.06864936227481401 +16008,80.03999999996346,-0.06864934488226124 +16009,80.04499999996345,-0.06864932749555575 +16010,80.04999999996345,-0.06864931011469572 +16011,80.05499999996344,-0.06864929273967932 +16012,80.05999999996344,-0.06864927537050472 +16013,80.06499999996343,-0.06864925800717013 +16014,80.06999999996343,-0.0686492406496737 +16015,80.07499999996342,-0.06864922329801361 +16016,80.07999999996342,-0.06864920595218804 +16017,80.08499999996342,-0.0686491886121952 +16018,80.08999999996341,-0.06864917127803323 +16019,80.0949999999634,-0.06864915394970032 +16020,80.0999999999634,-0.06864913662719467 +16021,80.1049999999634,-0.06864911931051444 +16022,80.10999999996339,-0.06864910199965782 +16023,80.11499999996339,-0.06864908469462298 +16024,80.11999999996338,-0.06864906739540814 +16025,80.12499999996338,-0.06864905010201146 +16026,80.12999999996337,-0.06864903281443112 +16027,80.13499999996337,-0.06864901553266532 +16028,80.13999999996336,-0.06864899825671224 +16029,80.14499999996336,-0.06864898098657006 +16030,80.14999999996336,-0.06864896372223697 +16031,80.15499999996335,-0.06864894646371117 +16032,80.15999999996335,-0.06864892921099083 +16033,80.16499999996334,-0.06864891196407415 +16034,80.16999999996334,-0.06864889472295932 +16035,80.17499999996333,-0.06864887748764452 +16036,80.17999999996333,-0.06864886025812794 +16037,80.18499999996332,-0.06864884303440778 +16038,80.18999999996332,-0.06864882581648221 +16039,80.19499999996331,-0.06864880860434945 +16040,80.19999999996331,-0.06864879139800768 +16041,80.2049999999633,-0.06864877419745512 +16042,80.2099999999633,-0.06864875700268991 +16043,80.2149999999633,-0.06864873981371028 +16044,80.21999999996329,-0.06864872263051441 +16045,80.22499999996329,-0.0686487054531005 +16046,80.22999999996328,-0.06864868828146677 +16047,80.23499999996328,-0.06864867111561136 +16048,80.23999999996327,-0.06864865395553253 +16049,80.24499999996327,-0.06864863680122843 +16050,80.24999999996326,-0.06864861965269728 +16051,80.25499999996326,-0.06864860250993728 +16052,80.25999999996326,-0.06864858537294662 +16053,80.26499999996325,-0.0686485682417235 +16054,80.26999999996325,-0.06864855111626612 +16055,80.27499999996324,-0.06864853399657268 +16056,80.27999999996324,-0.06864851688264138 +16057,80.28499999996323,-0.06864849977447043 +16058,80.28999999996323,-0.06864848267205804 +16059,80.29499999996322,-0.06864846557540238 +16060,80.29999999996322,-0.06864844848450169 +16061,80.30499999996321,-0.06864843139935414 +16062,80.30999999996321,-0.06864841431995797 +16063,80.3149999999632,-0.06864839724631135 +16064,80.3199999999632,-0.06864838017841252 +16065,80.3249999999632,-0.06864836311625964 +16066,80.32999999996319,-0.06864834605985097 +16067,80.33499999996319,-0.06864832900918467 +16068,80.33999999996318,-0.068648311964259 +16069,80.34499999996318,-0.06864829492507211 +16070,80.34999999996317,-0.06864827789162224 +16071,80.35499999996317,-0.06864826086390761 +16072,80.35999999996316,-0.0686482438419264 +16073,80.36499999996316,-0.06864822682567684 +16074,80.36999999996316,-0.06864820981515715 +16075,80.37499999996315,-0.06864819281036552 +16076,80.37999999996315,-0.06864817581130016 +16077,80.38499999996314,-0.0686481588179593 +16078,80.38999999996314,-0.06864814183034114 +16079,80.39499999996313,-0.06864812484844389 +16080,80.39999999996313,-0.06864810787226579 +16081,80.40499999996312,-0.06864809090180501 +16082,80.40999999996312,-0.06864807393705982 +16083,80.41499999996311,-0.0686480569780284 +16084,80.41999999996311,-0.06864804002470896 +16085,80.4249999999631,-0.06864802307709975 +16086,80.4299999999631,-0.06864800613519897 +16087,80.4349999999631,-0.06864798919900483 +16088,80.43999999996309,-0.06864797226851554 +16089,80.44499999996309,-0.06864795534372935 +16090,80.44999999996308,-0.06864793842464446 +16091,80.45499999996308,-0.0686479215112591 +16092,80.45999999996307,-0.06864790460357148 +16093,80.46499999996307,-0.06864788770157983 +16094,80.46999999996306,-0.06864787080528235 +16095,80.47499999996306,-0.06864785391467729 +16096,80.47999999996306,-0.06864783702976286 +16097,80.48499999996305,-0.06864782015053728 +16098,80.48999999996305,-0.06864780327699878 +16099,80.49499999996304,-0.06864778640914558 +16100,80.49999999996304,-0.0686477695469759 +16101,80.50499999996303,-0.06864775269048799 +16102,80.50999999996303,-0.06864773583968005 +16103,80.51499999996302,-0.06864771899455031 +16104,80.51999999996302,-0.06864770215509702 +16105,80.52499999996301,-0.06864768532131837 +16106,80.52999999996301,-0.06864766849321262 +16107,80.534999999963,-0.06864765167077798 +16108,80.539999999963,-0.06864763485401268 +16109,80.544999999963,-0.06864761804291496 +16110,80.54999999996299,-0.06864760123748305 +16111,80.55499999996299,-0.06864758443771517 +16112,80.55999999996298,-0.06864756764360956 +16113,80.56499999996298,-0.06864755085516445 +16114,80.56999999996297,-0.06864753407237809 +16115,80.57499999996297,-0.06864751729524866 +16116,80.57999999996296,-0.06864750052377444 +16117,80.58499999996296,-0.06864748375795365 +16118,80.58999999996296,-0.06864746699778454 +16119,80.59499999996295,-0.06864745024326531 +16120,80.59999999996295,-0.06864743349439423 +16121,80.60499999996294,-0.06864741675116952 +16122,80.60999999996294,-0.06864740001358942 +16123,80.61499999996293,-0.06864738328165217 +16124,80.61999999996293,-0.068647366555356 +16125,80.62499999996292,-0.06864734983469915 +16126,80.62999999996292,-0.06864733311967987 +16127,80.63499999996291,-0.06864731641029638 +16128,80.63999999996291,-0.06864729970654693 +16129,80.6449999999629,-0.06864728300842977 +16130,80.6499999999629,-0.06864726631594312 +16131,80.6549999999629,-0.06864724962908522 +16132,80.65999999996289,-0.06864723294785435 +16133,80.66499999996289,-0.06864721627224872 +16134,80.66999999996288,-0.06864719960226658 +16135,80.67499999996288,-0.06864718293790616 +16136,80.67999999996287,-0.06864716627916571 +16137,80.68499999996287,-0.0686471496260435 +16138,80.68999999996286,-0.06864713297853775 +16139,80.69499999996286,-0.06864711633664672 +16140,80.69999999996286,-0.06864709970036864 +16141,80.70499999996285,-0.06864708306970178 +16142,80.70999999996285,-0.06864706644464437 +16143,80.71499999996284,-0.06864704982519466 +16144,80.71999999996284,-0.06864703321135089 +16145,80.72499999996283,-0.06864701660311133 +16146,80.72999999996283,-0.0686470000004742 +16147,80.73499999996282,-0.06864698340343779 +16148,80.73999999996282,-0.06864696681200032 +16149,80.74499999996281,-0.06864695022616003 +16150,80.74999999996281,-0.0686469336459152 +16151,80.7549999999628,-0.06864691707126407 +16152,80.7599999999628,-0.0686469005022049 +16153,80.7649999999628,-0.06864688393873594 +16154,80.76999999996279,-0.06864686738085544 +16155,80.77499999996279,-0.06864685082856166 +16156,80.77999999996278,-0.06864683428185284 +16157,80.78499999996278,-0.06864681774072723 +16158,80.78999999996277,-0.06864680120518311 +16159,80.79499999996277,-0.06864678467521873 +16160,80.79999999996276,-0.06864676815083234 +16161,80.80499999996276,-0.0686467516320222 +16162,80.80999999996276,-0.06864673511878656 +16163,80.81499999996275,-0.0686467186111237 +16164,80.81999999996275,-0.06864670210903187 +16165,80.82499999996274,-0.06864668561250932 +16166,80.82999999996274,-0.06864666912155432 +16167,80.83499999996273,-0.0686466526361651 +16168,80.83999999996273,-0.06864663615633997 +16169,80.84499999996272,-0.06864661968207716 +16170,80.84999999996272,-0.06864660321337493 +16171,80.85499999996271,-0.06864658675023157 +16172,80.85999999996271,-0.06864657029264531 +16173,80.8649999999627,-0.06864655384061444 +16174,80.8699999999627,-0.0686465373941372 +16175,80.8749999999627,-0.06864652095321187 +16176,80.87999999996269,-0.06864650451783672 +16177,80.88499999996269,-0.06864648808801001 +16178,80.88999999996268,-0.06864647166372999 +16179,80.89499999996268,-0.06864645524499494 +16180,80.89999999996267,-0.06864643883180314 +16181,80.90499999996267,-0.06864642242415285 +16182,80.90999999996266,-0.06864640602204232 +16183,80.91499999996266,-0.06864638962546984 +16184,80.91999999996266,-0.06864637323443366 +16185,80.92499999996265,-0.06864635684893207 +16186,80.92999999996265,-0.06864634046896333 +16187,80.93499999996264,-0.06864632409452573 +16188,80.93999999996264,-0.0686463077256175 +16189,80.94499999996263,-0.06864629136223695 +16190,80.94999999996263,-0.06864627500438233 +16191,80.95499999996262,-0.06864625865205193 +16192,80.95999999996262,-0.06864624230524402 +16193,80.96499999996261,-0.06864622596395686 +16194,80.96999999996261,-0.06864620962818875 +16195,80.9749999999626,-0.06864619329793793 +16196,80.9799999999626,-0.0686461769732027 +16197,80.9849999999626,-0.06864616065398133 +16198,80.98999999996259,-0.06864614434027211 +16199,80.99499999996259,-0.06864612803207329 +16200,80.99999999996258,-0.06864611172938316 +16201,81.00499999996258,-0.06864609543220002 +16202,81.00999999996257,-0.0686460791405221 +16203,81.01499999996257,-0.06864606285434774 +16204,81.01999999996256,-0.06864604657367517 +16205,81.02499999996256,-0.06864603029850268 +16206,81.02999999996256,-0.06864601402882857 +16207,81.03499999996255,-0.06864599776465112 +16208,81.03999999996255,-0.0686459815059686 +16209,81.04499999996254,-0.06864596525277927 +16210,81.04999999996254,-0.06864594900508146 +16211,81.05499999996253,-0.06864593276287342 +16212,81.05999999996253,-0.06864591652615346 +16213,81.06499999996252,-0.06864590029491985 +16214,81.06999999996252,-0.06864588406917087 +16215,81.07499999996251,-0.0686458678489048 +16216,81.07999999996251,-0.06864585163411993 +16217,81.0849999999625,-0.06864583542481456 +16218,81.0899999999625,-0.06864581922098698 +16219,81.0949999999625,-0.06864580302263547 +16220,81.09999999996249,-0.06864578682975829 +16221,81.10499999996249,-0.06864577064235376 +16222,81.10999999996248,-0.06864575446042018 +16223,81.11499999996248,-0.06864573828395582 +16224,81.11999999996247,-0.06864572211295895 +16225,81.12499999996247,-0.0686457059474279 +16226,81.12999999996246,-0.06864568978736094 +16227,81.13499999996246,-0.06864567363275637 +16228,81.13999999996246,-0.06864565748361248 +16229,81.14499999996245,-0.06864564133992755 +16230,81.14999999996245,-0.06864562520169988 +16231,81.15499999996244,-0.06864560906892779 +16232,81.15999999996244,-0.06864559294160953 +16233,81.16499999996243,-0.06864557681974343 +16234,81.16999999996243,-0.06864556070332777 +16235,81.17499999996242,-0.06864554459236083 +16236,81.17999999996242,-0.06864552848684094 +16237,81.18499999996241,-0.06864551238676639 +16238,81.18999999996241,-0.06864549629213546 +16239,81.1949999999624,-0.06864548020294645 +16240,81.1999999999624,-0.06864546411919766 +16241,81.2049999999624,-0.0686454480408874 +16242,81.20999999996239,-0.06864543196801397 +16243,81.21499999996239,-0.06864541590057566 +16244,81.21999999996238,-0.06864539983857076 +16245,81.22499999996238,-0.0686453837819976 +16246,81.22999999996237,-0.06864536773085445 +16247,81.23499999996237,-0.06864535168513963 +16248,81.23999999996236,-0.06864533564485144 +16249,81.24499999996236,-0.0686453196099882 +16250,81.24999999996236,-0.06864530358054817 +16251,81.25499999996235,-0.0686452875565297 +16252,81.25999999996235,-0.06864527153793107 +16253,81.26499999996234,-0.06864525552475058 +16254,81.26999999996234,-0.06864523951698656 +16255,81.27499999996233,-0.0686452235146373 +16256,81.27999999996233,-0.06864520751770109 +16257,81.28499999996232,-0.06864519152617628 +16258,81.28999999996232,-0.06864517554006115 +16259,81.29499999996231,-0.068645159559354 +16260,81.29999999996231,-0.06864514358405316 +16261,81.3049999999623,-0.06864512761415692 +16262,81.3099999999623,-0.06864511164966361 +16263,81.3149999999623,-0.0686450956905715 +16264,81.31999999996229,-0.06864507973687896 +16265,81.32499999996229,-0.06864506378858426 +16266,81.32999999996228,-0.06864504784568572 +16267,81.33499999996228,-0.06864503190818165 +16268,81.33999999996227,-0.06864501597607037 +16269,81.34499999996227,-0.06864500004935019 +16270,81.34999999996226,-0.06864498412801943 +16271,81.35499999996226,-0.0686449682120764 +16272,81.35999999996226,-0.0686449523015194 +16273,81.36499999996225,-0.06864493639634676 +16274,81.36999999996225,-0.06864492049655681 +16275,81.37499999996224,-0.06864490460214784 +16276,81.37999999996224,-0.06864488871311818 +16277,81.38499999996223,-0.06864487282946614 +16278,81.38999999996223,-0.06864485695119003 +16279,81.39499999996222,-0.0686448410782882 +16280,81.39999999996222,-0.06864482521075894 +16281,81.40499999996221,-0.0686448093486006 +16282,81.40999999996221,-0.06864479349181146 +16283,81.4149999999622,-0.06864477764038986 +16284,81.4199999999622,-0.06864476179433411 +16285,81.4249999999622,-0.06864474595364256 +16286,81.42999999996219,-0.0686447301183135 +16287,81.43499999996219,-0.06864471428834527 +16288,81.43999999996218,-0.06864469846373619 +16289,81.44499999996218,-0.06864468264448458 +16290,81.44999999996217,-0.06864466683058876 +16291,81.45499999996217,-0.06864465102204707 +16292,81.45999999996216,-0.06864463521885783 +16293,81.46499999996216,-0.06864461942101936 +16294,81.46999999996216,-0.06864460362852998 +16295,81.47499999996215,-0.06864458784138802 +16296,81.47999999996215,-0.0686445720595918 +16297,81.48499999996214,-0.06864455628313967 +16298,81.48999999996214,-0.06864454051202995 +16299,81.49499999996213,-0.06864452474626095 +16300,81.49999999996213,-0.06864450898583102 +16301,81.50499999996212,-0.0686444932307385 +16302,81.50999999996212,-0.06864447748098168 +16303,81.51499999996211,-0.06864446173655891 +16304,81.51999999996211,-0.06864444599746854 +16305,81.5249999999621,-0.06864443026370887 +16306,81.5299999999621,-0.06864441453527825 +16307,81.5349999999621,-0.06864439881217503 +16308,81.53999999996209,-0.0686443830943975 +16309,81.54499999996209,-0.06864436738194403 +16310,81.54999999996208,-0.06864435167481292 +16311,81.55499999996208,-0.06864433597300254 +16312,81.55999999996207,-0.06864432027651121 +16313,81.56499999996207,-0.06864430458533727 +16314,81.56999999996206,-0.06864428889947904 +16315,81.57499999996206,-0.06864427321893488 +16316,81.57999999996206,-0.0686442575437031 +16317,81.58499999996205,-0.06864424187378206 +16318,81.58999999996205,-0.06864422620917009 +16319,81.59499999996204,-0.06864421054986553 +16320,81.59999999996204,-0.0686441948958667 +16321,81.60499999996203,-0.06864417924717198 +16322,81.60999999996203,-0.06864416360377967 +16323,81.61499999996202,-0.06864414796568814 +16324,81.61999999996202,-0.06864413233289572 +16325,81.62499999996201,-0.06864411670540074 +16326,81.62999999996201,-0.06864410108320158 +16327,81.634999999962,-0.06864408546629654 +16328,81.639999999962,-0.06864406985468396 +16329,81.644999999962,-0.06864405424836223 +16330,81.64999999996199,-0.06864403864732965 +16331,81.65499999996199,-0.06864402305158458 +16332,81.65999999996198,-0.06864400746112537 +16333,81.66499999996198,-0.06864399187595037 +16334,81.66999999996197,-0.0686439762960579 +16335,81.67499999996197,-0.06864396072144634 +16336,81.67999999996196,-0.06864394515211401 +16337,81.68499999996196,-0.06864392958805927 +16338,81.68999999996196,-0.06864391402928048 +16339,81.69499999996195,-0.06864389847577597 +16340,81.69999999996195,-0.06864388292754409 +16341,81.70499999996194,-0.0686438673845832 +16342,81.70999999996194,-0.06864385184689162 +16343,81.71499999996193,-0.06864383631446774 +16344,81.71999999996193,-0.0686438207873099 +16345,81.72499999996192,-0.06864380526541645 +16346,81.72999999996192,-0.06864378974878574 +16347,81.73499999996191,-0.0686437742374161 +16348,81.73999999996191,-0.06864375873130593 +16349,81.7449999999619,-0.06864374323045355 +16350,81.7499999999619,-0.06864372773485733 +16351,81.7549999999619,-0.0686437122445156 +16352,81.75999999996189,-0.06864369675942675 +16353,81.76499999996189,-0.0686436812795891 +16354,81.76999999996188,-0.06864366580500103 +16355,81.77499999996188,-0.06864365033566092 +16356,81.77999999996187,-0.06864363487156706 +16357,81.78499999996187,-0.06864361941271785 +16358,81.78999999996186,-0.06864360395911166 +16359,81.79499999996186,-0.06864358851074683 +16360,81.79999999996186,-0.0686435730676217 +16361,81.80499999996185,-0.06864355762973468 +16362,81.80999999996185,-0.06864354219708407 +16363,81.81499999996184,-0.06864352676966828 +16364,81.81999999996184,-0.06864351134748566 +16365,81.82499999996183,-0.06864349593053454 +16366,81.82999999996183,-0.06864348051881332 +16367,81.83499999996182,-0.06864346511232035 +16368,81.83999999996182,-0.06864344971105397 +16369,81.84499999996181,-0.06864343431501259 +16370,81.84999999996181,-0.06864341892419454 +16371,81.8549999999618,-0.06864340353859819 +16372,81.8599999999618,-0.0686433881582219 +16373,81.8649999999618,-0.06864337278306405 +16374,81.86999999996179,-0.068643357413123 +16375,81.87499999996179,-0.06864334204839712 +16376,81.87999999996178,-0.06864332668888477 +16377,81.88499999996178,-0.06864331133458432 +16378,81.88999999996177,-0.06864329598549412 +16379,81.89499999996177,-0.06864328064161258 +16380,81.89999999996176,-0.06864326530293803 +16381,81.90499999996176,-0.06864324996946887 +16382,81.90999999996176,-0.06864323464120345 +16383,81.91499999996175,-0.06864321931814014 +16384,81.91999999996175,-0.06864320400027732 +16385,81.92499999996174,-0.06864318868761336 +16386,81.92999999996174,-0.06864317338014662 +16387,81.93499999996173,-0.06864315807787548 +16388,81.93999999996173,-0.06864314278079833 +16389,81.94499999996172,-0.06864312748891352 +16390,81.94999999996172,-0.06864311220221943 +16391,81.95499999996171,-0.06864309692071445 +16392,81.95999999996171,-0.06864308164439692 +16393,81.9649999999617,-0.06864306637326524 +16394,81.9699999999617,-0.06864305110731779 +16395,81.9749999999617,-0.06864303584655293 +16396,81.97999999996169,-0.06864302059096906 +16397,81.98499999996169,-0.06864300534056453 +16398,81.98999999996168,-0.06864299009533774 +16399,81.99499999996168,-0.06864297485528706 +16400,81.99999999996167,-0.06864295962041085 +16401,82.00499999996167,-0.06864294439070752 +16402,82.00999999996166,-0.06864292916617544 +16403,82.01499999996166,-0.06864291394681299 +16404,82.01999999996166,-0.06864289873261853 +16405,82.02499999996165,-0.06864288352359048 +16406,82.02999999996165,-0.06864286831972718 +16407,82.03499999996164,-0.06864285312102705 +16408,82.03999999996164,-0.06864283792748845 +16409,82.04499999996163,-0.06864282273910977 +16410,82.04999999996163,-0.06864280755588938 +16411,82.05499999996162,-0.06864279237782568 +16412,82.05999999996162,-0.06864277720491707 +16413,82.06499999996161,-0.06864276203716191 +16414,82.06999999996161,-0.06864274687455858 +16415,82.0749999999616,-0.0686427317171055 +16416,82.0799999999616,-0.068642716564801 +16417,82.0849999999616,-0.06864270141764353 +16418,82.08999999996159,-0.06864268627563144 +16419,82.09499999996159,-0.06864267113876314 +16420,82.09999999996158,-0.06864265600703699 +16421,82.10499999996158,-0.06864264088045141 +16422,82.10999999996157,-0.06864262575900477 +16423,82.11499999996157,-0.06864261064269546 +16424,82.11999999996156,-0.06864259553152188 +16425,82.12499999996156,-0.06864258042548241 +16426,82.12999999996156,-0.06864256532457545 +16427,82.13499999996155,-0.06864255022879939 +16428,82.13999999996155,-0.06864253513815262 +16429,82.14499999996154,-0.06864252005263355 +16430,82.14999999996154,-0.06864250497224055 +16431,82.15499999996153,-0.06864248989697203 +16432,82.15999999996153,-0.06864247482682637 +16433,82.16499999996152,-0.06864245976180196 +16434,82.16999999996152,-0.06864244470189722 +16435,82.17499999996151,-0.06864242964711054 +16436,82.17999999996151,-0.06864241459744029 +16437,82.1849999999615,-0.0686423995528849 +16438,82.1899999999615,-0.06864238451344275 +16439,82.1949999999615,-0.06864236947911224 +16440,82.19999999996149,-0.06864235444989178 +16441,82.20499999996149,-0.06864233942577976 +16442,82.20999999996148,-0.06864232440677456 +16443,82.21499999996148,-0.0686423093928746 +16444,82.21999999996147,-0.0686422943840783 +16445,82.22499999996147,-0.06864227938038403 +16446,82.22999999996146,-0.0686422643817902 +16447,82.23499999996146,-0.06864224938829522 +16448,82.23999999996146,-0.06864223439989746 +16449,82.24499999996145,-0.06864221941659537 +16450,82.24999999996145,-0.06864220443838731 +16451,82.25499999996144,-0.06864218946527172 +16452,82.25999999996144,-0.06864217449724697 +16453,82.26499999996143,-0.06864215953431149 +16454,82.26999999996143,-0.06864214457646368 +16455,82.27499999996142,-0.06864212962370195 +16456,82.27999999996142,-0.06864211467602468 +16457,82.28499999996141,-0.06864209973343031 +16458,82.28999999996141,-0.06864208479591723 +16459,82.2949999999614,-0.06864206986348384 +16460,82.2999999999614,-0.06864205493612857 +16461,82.3049999999614,-0.06864204001384983 +16462,82.30999999996139,-0.06864202509664599 +16463,82.31499999996139,-0.0686420101845155 +16464,82.31999999996138,-0.06864199527745675 +16465,82.32499999996138,-0.06864198037546815 +16466,82.32999999996137,-0.06864196547854812 +16467,82.33499999996137,-0.06864195058669506 +16468,82.33999999996136,-0.0686419356999074 +16469,82.34499999996136,-0.06864192081818353 +16470,82.34999999996136,-0.06864190594152188 +16471,82.35499999996135,-0.06864189106992084 +16472,82.35999999996135,-0.06864187620337886 +16473,82.36499999996134,-0.06864186134189433 +16474,82.36999999996134,-0.06864184648546567 +16475,82.37499999996133,-0.06864183163409131 +16476,82.37999999996133,-0.06864181678776964 +16477,82.38499999996132,-0.06864180194649908 +16478,82.38999999996132,-0.06864178711027806 +16479,82.39499999996131,-0.06864177227910498 +16480,82.39999999996131,-0.06864175745297828 +16481,82.4049999999613,-0.06864174263189636 +16482,82.4099999999613,-0.06864172781585764 +16483,82.4149999999613,-0.06864171300486056 +16484,82.41999999996129,-0.06864169819890353 +16485,82.42499999996129,-0.06864168339798495 +16486,82.42999999996128,-0.06864166860210326 +16487,82.43499999996128,-0.06864165381125686 +16488,82.43999999996127,-0.0686416390254442 +16489,82.44499999996127,-0.06864162424466369 +16490,82.44999999996126,-0.06864160946891375 +16491,82.45499999996126,-0.0686415946981928 +16492,82.45999999996125,-0.06864157993249925 +16493,82.46499999996125,-0.06864156517183158 +16494,82.46999999996125,-0.06864155041618815 +16495,82.47499999996124,-0.06864153566556742 +16496,82.47999999996124,-0.06864152091996781 +16497,82.48499999996123,-0.06864150617938772 +16498,82.48999999996123,-0.0686414914438256 +16499,82.49499999996122,-0.06864147671327989 +16500,82.49999999996122,-0.06864146198774898 +16501,82.50499999996121,-0.06864144726723133 +16502,82.50999999996121,-0.06864143255172536 +16503,82.5149999999612,-0.0686414178412295 +16504,82.5199999999612,-0.06864140313574217 +16505,82.5249999999612,-0.06864138843526181 +16506,82.52999999996119,-0.06864137373978683 +16507,82.53499999996119,-0.06864135904931569 +16508,82.53999999996118,-0.06864134436384678 +16509,82.54499999996118,-0.06864132968337858 +16510,82.54999999996117,-0.06864131500790949 +16511,82.55499999996117,-0.06864130033743794 +16512,82.55999999996116,-0.06864128567196238 +16513,82.56499999996116,-0.06864127101148124 +16514,82.56999999996115,-0.06864125635599296 +16515,82.57499999996115,-0.06864124170549595 +16516,82.57999999996115,-0.06864122705998867 +16517,82.58499999996114,-0.06864121241946954 +16518,82.58999999996114,-0.068641197783937 +16519,82.59499999996113,-0.06864118315338949 +16520,82.59999999996113,-0.06864116852782544 +16521,82.60499999996112,-0.06864115390724329 +16522,82.60999999996112,-0.06864113929164149 +16523,82.61499999996111,-0.06864112468101848 +16524,82.61999999996111,-0.06864111007537266 +16525,82.6249999999611,-0.0686410954747025 +16526,82.6299999999611,-0.06864108087900643 +16527,82.6349999999611,-0.06864106628828288 +16528,82.63999999996109,-0.06864105170253033 +16529,82.64499999996109,-0.06864103712174718 +16530,82.64999999996108,-0.0686410225459319 +16531,82.65499999996108,-0.06864100797508292 +16532,82.65999999996107,-0.06864099340919867 +16533,82.66499999996107,-0.06864097884827762 +16534,82.66999999996106,-0.06864096429231817 +16535,82.67499999996106,-0.0686409497413188 +16536,82.67999999996105,-0.06864093519527795 +16537,82.68499999996105,-0.06864092065419405 +16538,82.68999999996105,-0.06864090611806556 +16539,82.69499999996104,-0.06864089158689092 +16540,82.69999999996104,-0.06864087706066857 +16541,82.70499999996103,-0.06864086253939698 +16542,82.70999999996103,-0.06864084802307457 +16543,82.71499999996102,-0.06864083351169979 +16544,82.71999999996102,-0.06864081900527111 +16545,82.72499999996101,-0.06864080450378696 +16546,82.72999999996101,-0.06864079000724578 +16547,82.734999999961,-0.06864077551564604 +16548,82.739999999961,-0.0686407610289862 +16549,82.744999999961,-0.06864074654726467 +16550,82.74999999996099,-0.06864073207047992 +16551,82.75499999996099,-0.06864071759863041 +16552,82.75999999996098,-0.06864070313171461 +16553,82.76499999996098,-0.06864068866973093 +16554,82.76999999996097,-0.06864067421267783 +16555,82.77499999996097,-0.0686406597605538 +16556,82.77999999996096,-0.06864064531335724 +16557,82.78499999996096,-0.06864063087108664 +16558,82.78999999996095,-0.06864061643374046 +16559,82.79499999996095,-0.06864060200131714 +16560,82.79999999996095,-0.06864058757381512 +16561,82.80499999996094,-0.06864057315123288 +16562,82.80999999996094,-0.06864055873356888 +16563,82.81499999996093,-0.06864054432082156 +16564,82.81999999996093,-0.06864052991298938 +16565,82.82499999996092,-0.0686405155100708 +16566,82.82999999996092,-0.06864050111206428 +16567,82.83499999996091,-0.06864048671896829 +16568,82.83999999996091,-0.06864047233078129 +16569,82.8449999999609,-0.0686404579475017 +16570,82.8499999999609,-0.06864044356912803 +16571,82.8549999999609,-0.0686404291956587 +16572,82.85999999996089,-0.06864041482709218 +16573,82.86499999996089,-0.06864040046342697 +16574,82.86999999996088,-0.06864038610466149 +16575,82.87499999996088,-0.06864037175079422 +16576,82.87999999996087,-0.06864035740182362 +16577,82.88499999996087,-0.06864034305774815 +16578,82.88999999996086,-0.06864032871856626 +16579,82.89499999996086,-0.06864031438427645 +16580,82.89999999996085,-0.06864030005487716 +16581,82.90499999996085,-0.06864028573036686 +16582,82.90999999996085,-0.06864027141074401 +16583,82.91499999996084,-0.06864025709600709 +16584,82.91999999996084,-0.06864024278615456 +16585,82.92499999996083,-0.06864022848118488 +16586,82.92999999996083,-0.06864021418109653 +16587,82.93499999996082,-0.06864019988588797 +16588,82.93999999996082,-0.06864018559555767 +16589,82.94499999996081,-0.0686401713101041 +16590,82.94999999996081,-0.06864015702952572 +16591,82.9549999999608,-0.06864014275382102 +16592,82.9599999999608,-0.06864012848298846 +16593,82.9649999999608,-0.06864011421702651 +16594,82.96999999996079,-0.06864009995593363 +16595,82.97499999996079,-0.06864008569970832 +16596,82.97999999996078,-0.06864007144834904 +16597,82.98499999996078,-0.06864005720185425 +16598,82.98999999996077,-0.06864004296022243 +16599,82.99499999996077,-0.06864002872345207 +16600,82.99999999996076,-0.06864001449154161 +16601,83.00499999996076,-0.06864000026448955 +16602,83.00999999996075,-0.06863998604229435 +16603,83.01499999996075,-0.06863997182495452 +16604,83.01999999996075,-0.0686399576124685 +16605,83.02499999996074,-0.06863994340483477 +16606,83.02999999996074,-0.06863992920205182 +16607,83.03499999996073,-0.0686399150041181 +16608,83.03999999996073,-0.06863990081103213 +16609,83.04499999996072,-0.06863988662279237 +16610,83.04999999996072,-0.0686398724393973 +16611,83.05499999996071,-0.06863985826084537 +16612,83.05999999996071,-0.06863984408713511 +16613,83.0649999999607,-0.06863982991826496 +16614,83.0699999999607,-0.06863981575423343 +16615,83.0749999999607,-0.06863980159503898 +16616,83.07999999996069,-0.0686397874406801 +16617,83.08499999996069,-0.06863977329115527 +16618,83.08999999996068,-0.06863975914646296 +16619,83.09499999996068,-0.06863974500660168 +16620,83.09999999996067,-0.06863973087156988 +16621,83.10499999996067,-0.06863971674136607 +16622,83.10999999996066,-0.06863970261598874 +16623,83.11499999996066,-0.06863968849543636 +16624,83.11999999996065,-0.06863967437970742 +16625,83.12499999996065,-0.06863966026880039 +16626,83.12999999996065,-0.06863964616271377 +16627,83.13499999996064,-0.06863963206144605 +16628,83.13999999996064,-0.06863961796499571 +16629,83.14499999996063,-0.06863960387336124 +16630,83.14999999996063,-0.06863958978654112 +16631,83.15499999996062,-0.06863957570453386 +16632,83.15999999996062,-0.06863956162733793 +16633,83.16499999996061,-0.06863954755495182 +16634,83.16999999996061,-0.06863953348737402 +16635,83.1749999999606,-0.06863951942460304 +16636,83.1799999999606,-0.06863950536663735 +16637,83.1849999999606,-0.06863949131347545 +16638,83.18999999996059,-0.06863947726511582 +16639,83.19499999996059,-0.06863946322155695 +16640,83.19999999996058,-0.06863944918279735 +16641,83.20499999996058,-0.0686394351488355 +16642,83.20999999996057,-0.0686394211196699 +16643,83.21499999996057,-0.06863940709529906 +16644,83.21999999996056,-0.06863939307572145 +16645,83.22499999996056,-0.06863937906093556 +16646,83.22999999996055,-0.06863936505093991 +16647,83.23499999996055,-0.06863935104573297 +16648,83.23999999996055,-0.06863933704531328 +16649,83.24499999996054,-0.06863932304967928 +16650,83.24999999996054,-0.06863930905882949 +16651,83.25499999996053,-0.06863929507276242 +16652,83.25999999996053,-0.06863928109147656 +16653,83.26499999996052,-0.06863926711497041 +16654,83.26999999996052,-0.06863925314324246 +16655,83.27499999996051,-0.06863923917629121 +16656,83.27999999996051,-0.06863922521411517 +16657,83.2849999999605,-0.06863921125671282 +16658,83.2899999999605,-0.06863919730408269 +16659,83.2949999999605,-0.06863918335622325 +16660,83.29999999996049,-0.06863916941313303 +16661,83.30499999996049,-0.06863915547481052 +16662,83.30999999996048,-0.06863914154125424 +16663,83.31499999996048,-0.06863912761246266 +16664,83.31999999996047,-0.06863911368843431 +16665,83.32499999996047,-0.06863909976916767 +16666,83.32999999996046,-0.06863908585466126 +16667,83.33499999996046,-0.06863907194491359 +16668,83.33999999996045,-0.06863905803992314 +16669,83.34499999996045,-0.06863904413968845 +16670,83.34999999996045,-0.06863903024420802 +16671,83.35499999996044,-0.06863901635348033 +16672,83.35999999996044,-0.0686390024675039 +16673,83.36499999996043,-0.06863898858627725 +16674,83.36999999996043,-0.06863897470979888 +16675,83.37499999996042,-0.0686389608380673 +16676,83.37999999996042,-0.068638946971081 +16677,83.38499999996041,-0.06863893310883852 +16678,83.38999999996041,-0.06863891925133835 +16679,83.3949999999604,-0.06863890539857902 +16680,83.3999999999604,-0.06863889155055901 +16681,83.4049999999604,-0.06863887770727685 +16682,83.40999999996039,-0.06863886386873105 +16683,83.41499999996039,-0.06863885003492012 +16684,83.41999999996038,-0.06863883620584259 +16685,83.42499999996038,-0.06863882238149693 +16686,83.42999999996037,-0.0686388085618817 +16687,83.43499999996037,-0.06863879474699539 +16688,83.43999999996036,-0.06863878093683651 +16689,83.44499999996036,-0.0686387671314036 +16690,83.44999999996035,-0.06863875333069515 +16691,83.45499999996035,-0.06863873953470968 +16692,83.45999999996035,-0.06863872574344572 +16693,83.46499999996034,-0.06863871195690177 +16694,83.46999999996034,-0.06863869817507635 +16695,83.47499999996033,-0.068638684397968 +16696,83.47999999996033,-0.0686386706255752 +16697,83.48499999996032,-0.0686386568578965 +16698,83.48999999996032,-0.06863864309493038 +16699,83.49499999996031,-0.0686386293366754 +16700,83.49999999996031,-0.06863861558313007 +16701,83.5049999999603,-0.06863860183429292 +16702,83.5099999999603,-0.06863858809016245 +16703,83.5149999999603,-0.06863857435073717 +16704,83.51999999996029,-0.06863856061601564 +16705,83.52499999996029,-0.06863854688599635 +16706,83.52999999996028,-0.06863853316067782 +16707,83.53499999996028,-0.06863851944005861 +16708,83.53999999996027,-0.06863850572413721 +16709,83.54499999996027,-0.06863849201291214 +16710,83.54999999996026,-0.06863847830638194 +16711,83.55499999996026,-0.06863846460454515 +16712,83.55999999996025,-0.06863845090740027 +16713,83.56499999996025,-0.06863843721494582 +16714,83.56999999996025,-0.06863842352718035 +16715,83.57499999996024,-0.06863840984410237 +16716,83.57999999996024,-0.06863839616571042 +16717,83.58499999996023,-0.06863838249200302 +16718,83.58999999996023,-0.06863836882297869 +16719,83.59499999996022,-0.06863835515863598 +16720,83.59999999996022,-0.0686383414989734 +16721,83.60499999996021,-0.06863832784398946 +16722,83.60999999996021,-0.06863831419368273 +16723,83.6149999999602,-0.06863830054805171 +16724,83.6199999999602,-0.06863828690709496 +16725,83.6249999999602,-0.068638273270811 +16726,83.62999999996019,-0.06863825963919834 +16727,83.63499999996019,-0.06863824601225553 +16728,83.63999999996018,-0.06863823238998108 +16729,83.64499999996018,-0.06863821877237357 +16730,83.64999999996017,-0.06863820515943149 +16731,83.65499999996017,-0.0686381915511534 +16732,83.65999999996016,-0.06863817794753782 +16733,83.66499999996016,-0.06863816434858327 +16734,83.66999999996015,-0.06863815075428832 +16735,83.67499999996015,-0.06863813716465149 +16736,83.67999999996015,-0.0686381235796713 +16737,83.68499999996014,-0.06863810999934632 +16738,83.68999999996014,-0.06863809642367505 +16739,83.69499999996013,-0.06863808285265606 +16740,83.69999999996013,-0.06863806928628786 +16741,83.70499999996012,-0.068638055724569 +16742,83.70999999996012,-0.06863804216749801 +16743,83.71499999996011,-0.06863802861507345 +16744,83.71999999996011,-0.06863801506729383 +16745,83.7249999999601,-0.06863800152415772 +16746,83.7299999999601,-0.06863798798566365 +16747,83.7349999999601,-0.06863797445181014 +16748,83.73999999996009,-0.06863796092259575 +16749,83.74499999996009,-0.06863794739801903 +16750,83.74999999996008,-0.0686379338780785 +16751,83.75499999996008,-0.06863792036277272 +16752,83.75999999996007,-0.06863790685210024 +16753,83.76499999996007,-0.06863789334605958 +16754,83.76999999996006,-0.06863787984464928 +16755,83.77499999996006,-0.0686378663478679 +16756,83.77999999996005,-0.06863785285571398 +16757,83.78499999996005,-0.06863783936818608 +16758,83.78999999996005,-0.06863782588528274 +16759,83.79499999996004,-0.0686378124070025 +16760,83.79999999996004,-0.06863779893334389 +16761,83.80499999996003,-0.06863778546430548 +16762,83.80999999996003,-0.06863777199988581 +16763,83.81499999996002,-0.06863775854008343 +16764,83.81999999996002,-0.06863774508489688 +16765,83.82499999996001,-0.06863773163432471 +16766,83.82999999996001,-0.06863771818836549 +16767,83.83499999996,-0.06863770474701773 +16768,83.83999999996,-0.06863769131028002 +16769,83.84499999996,-0.0686376778781509 +16770,83.84999999995999,-0.06863766445062891 +16771,83.85499999995999,-0.06863765102771259 +16772,83.85999999995998,-0.06863763760940053 +16773,83.86499999995998,-0.06863762419569125 +16774,83.86999999995997,-0.06863761078658331 +16775,83.87499999995997,-0.06863759738207527 +16776,83.87999999995996,-0.06863758398216568 +16777,83.88499999995996,-0.06863757058685309 +16778,83.88999999995995,-0.06863755719613605 +16779,83.89499999995995,-0.06863754381001314 +16780,83.89999999995995,-0.06863753042848288 +16781,83.90499999995994,-0.06863751705154383 +16782,83.90999999995994,-0.06863750367919458 +16783,83.91499999995993,-0.06863749031143367 +16784,83.91999999995993,-0.06863747694825965 +16785,83.92499999995992,-0.06863746358967107 +16786,83.92999999995992,-0.0686374502356665 +16787,83.93499999995991,-0.0686374368862445 +16788,83.93999999995991,-0.06863742354140362 +16789,83.9449999999599,-0.06863741020114243 +16790,83.9499999999599,-0.06863739686545949 +16791,83.9549999999599,-0.06863738353435334 +16792,83.95999999995989,-0.06863737020782255 +16793,83.96499999995989,-0.0686373568858657 +16794,83.96999999995988,-0.06863734356848133 +16795,83.97499999995988,-0.06863733025566801 +16796,83.97999999995987,-0.0686373169474243 +16797,83.98499999995987,-0.06863730364374876 +16798,83.98999999995986,-0.06863729034463995 +16799,83.99499999995986,-0.06863727705009645 +16800,83.99999999995985,-0.0686372637601168 +16801,84.00499999995985,-0.0686372504746996 +16802,84.00999999995985,-0.06863723719384338 +16803,84.01499999995984,-0.06863722391754672 +16804,84.01999999995984,-0.06863721064580819 +16805,84.02499999995983,-0.06863719737862634 +16806,84.02999999995983,-0.06863718411599974 +16807,84.03499999995982,-0.06863717085792698 +16808,84.03999999995982,-0.06863715760440661 +16809,84.04499999995981,-0.0686371443554372 +16810,84.04999999995981,-0.06863713111101731 +16811,84.0549999999598,-0.06863711787114553 +16812,84.0599999999598,-0.0686371046358204 +16813,84.0649999999598,-0.06863709140504051 +16814,84.06999999995979,-0.06863707817880443 +16815,84.07499999995979,-0.06863706495711072 +16816,84.07999999995978,-0.06863705173995797 +16817,84.08499999995978,-0.06863703852734473 +16818,84.08999999995977,-0.06863702531926959 +16819,84.09499999995977,-0.0686370121157311 +16820,84.09999999995976,-0.06863699891672785 +16821,84.10499999995976,-0.0686369857222584 +16822,84.10999999995975,-0.06863697253232134 +16823,84.11499999995975,-0.06863695934691523 +16824,84.11999999995975,-0.06863694616603866 +16825,84.12499999995974,-0.06863693298969019 +16826,84.12999999995974,-0.06863691981786839 +16827,84.13499999995973,-0.06863690665057184 +16828,84.13999999995973,-0.06863689348779914 +16829,84.14499999995972,-0.06863688032954884 +16830,84.14999999995972,-0.06863686717581953 +16831,84.15499999995971,-0.06863685402660978 +16832,84.15999999995971,-0.06863684088191818 +16833,84.1649999999597,-0.06863682774174329 +16834,84.1699999999597,-0.0686368146060837 +16835,84.1749999999597,-0.068636801474938 +16836,84.17999999995969,-0.06863678834830475 +16837,84.18499999995969,-0.06863677522618254 +16838,84.18999999995968,-0.06863676210856993 +16839,84.19499999995968,-0.06863674899546554 +16840,84.19999999995967,-0.06863673588686792 +16841,84.20499999995967,-0.06863672278277565 +16842,84.20999999995966,-0.06863670968318733 +16843,84.21499999995966,-0.06863669658810155 +16844,84.21999999995965,-0.06863668349751685 +16845,84.22499999995965,-0.06863667041143187 +16846,84.22999999995965,-0.06863665732984515 +16847,84.23499999995964,-0.0686366442527553 +16848,84.23999999995964,-0.0686366311801609 +16849,84.24499999995963,-0.06863661811206054 +16850,84.24999999995963,-0.06863660504845279 +16851,84.25499999995962,-0.06863659198933622 +16852,84.25999999995962,-0.06863657893470947 +16853,84.26499999995961,-0.06863656588457107 +16854,84.26999999995961,-0.06863655283891965 +16855,84.2749999999596,-0.06863653979775378 +16856,84.2799999999596,-0.06863652676107204 +16857,84.2849999999596,-0.06863651372887303 +16858,84.28999999995959,-0.06863650070115535 +16859,84.29499999995959,-0.06863648767791757 +16860,84.29999999995958,-0.06863647465915827 +16861,84.30499999995958,-0.06863646164487607 +16862,84.30999999995957,-0.06863644863506954 +16863,84.31499999995957,-0.0686364356297373 +16864,84.31999999995956,-0.06863642262887791 +16865,84.32499999995956,-0.06863640963248997 +16866,84.32999999995955,-0.06863639664057208 +16867,84.33499999995955,-0.06863638365312284 +16868,84.33999999995955,-0.0686363706701408 +16869,84.34499999995954,-0.06863635769162461 +16870,84.34999999995954,-0.06863634471757284 +16871,84.35499999995953,-0.06863633174798407 +16872,84.35999999995953,-0.06863631878285692 +16873,84.36499999995952,-0.06863630582218996 +16874,84.36999999995952,-0.06863629286598182 +16875,84.37499999995951,-0.06863627991423107 +16876,84.37999999995951,-0.06863626696693632 +16877,84.3849999999595,-0.06863625402409615 +16878,84.3899999999595,-0.06863624108570918 +16879,84.3949999999595,-0.06863622815177398 +16880,84.39999999995949,-0.06863621522228917 +16881,84.40499999995949,-0.06863620229725335 +16882,84.40999999995948,-0.06863618937666512 +16883,84.41499999995948,-0.06863617646052306 +16884,84.41999999995947,-0.06863616354882579 +16885,84.42499999995947,-0.0686361506415719 +16886,84.42999999995946,-0.06863613773876 +16887,84.43499999995946,-0.0686361248403887 +16888,84.43999999995945,-0.06863611194645657 +16889,84.44499999995945,-0.06863609905696222 +16890,84.44999999995945,-0.06863608617190428 +16891,84.45499999995944,-0.06863607329128134 +16892,84.45999999995944,-0.06863606041509199 +16893,84.46499999995943,-0.06863604754333485 +16894,84.46999999995943,-0.06863603467600853 +16895,84.47499999995942,-0.0686360218131116 +16896,84.47999999995942,-0.0686360089546427 +16897,84.48499999995941,-0.06863599610060041 +16898,84.48999999995941,-0.06863598325098336 +16899,84.4949999999594,-0.06863597040579014 +16900,84.4999999999594,-0.06863595756501939 +16901,84.5049999999594,-0.06863594472866967 +16902,84.50999999995939,-0.06863593189673962 +16903,84.51499999995939,-0.06863591906922782 +16904,84.51999999995938,-0.06863590624613292 +16905,84.52499999995938,-0.06863589342745349 +16906,84.52999999995937,-0.06863588061318816 +16907,84.53499999995937,-0.06863586780333553 +16908,84.53999999995936,-0.06863585499789422 +16909,84.54499999995936,-0.06863584219686282 +16910,84.54999999995935,-0.06863582940023998 +16911,84.55499999995935,-0.06863581660802427 +16912,84.55999999995935,-0.06863580382021434 +16913,84.56499999995934,-0.06863579103680877 +16914,84.56999999995934,-0.0686357782578062 +16915,84.57499999995933,-0.0686357654832052 +16916,84.57999999995933,-0.06863575271300444 +16917,84.58499999995932,-0.0686357399472025 +16918,84.58999999995932,-0.068635727185798 +16919,84.59499999995931,-0.06863571442878955 +16920,84.59999999995931,-0.06863570167617578 +16921,84.6049999999593,-0.06863568892795528 +16922,84.6099999999593,-0.0686356761841267 +16923,84.6149999999593,-0.06863566344468865 +16924,84.61999999995929,-0.06863565070963973 +16925,84.62499999995929,-0.06863563797897856 +16926,84.62999999995928,-0.06863562525270378 +16927,84.63499999995928,-0.06863561253081397 +16928,84.63999999995927,-0.06863559981330779 +16929,84.64499999995927,-0.06863558710018383 +16930,84.64999999995926,-0.06863557439144072 +16931,84.65499999995926,-0.06863556168707707 +16932,84.65999999995925,-0.06863554898709152 +16933,84.66499999995925,-0.0686355362914827 +16934,84.66999999995924,-0.06863552360024919 +16935,84.67499999995924,-0.06863551091338964 +16936,84.67999999995924,-0.06863549823090266 +16937,84.68499999995923,-0.06863548555278688 +16938,84.68999999995923,-0.06863547287904093 +16939,84.69499999995922,-0.06863546020966341 +16940,84.69999999995922,-0.06863544754465296 +16941,84.70499999995921,-0.06863543488400822 +16942,84.70999999995921,-0.06863542222772778 +16943,84.7149999999592,-0.0686354095758103 +16944,84.7199999999592,-0.06863539692825438 +16945,84.7249999999592,-0.06863538428505865 +16946,84.72999999995919,-0.06863537164622174 +16947,84.73499999995919,-0.06863535901174228 +16948,84.73999999995918,-0.0686353463816189 +16949,84.74499999995918,-0.06863533375585021 +16950,84.74999999995917,-0.06863532113443487 +16951,84.75499999995917,-0.06863530851737147 +16952,84.75999999995916,-0.06863529590465867 +16953,84.76499999995916,-0.06863528329629508 +16954,84.76999999995915,-0.06863527069227932 +16955,84.77499999995915,-0.06863525809261005 +16956,84.77999999995914,-0.06863524549728588 +16957,84.78499999995914,-0.06863523290630547 +16958,84.78999999995914,-0.06863522031966741 +16959,84.79499999995913,-0.06863520773737035 +16960,84.79999999995913,-0.06863519515941294 +16961,84.80499999995912,-0.06863518258579378 +16962,84.80999999995912,-0.06863517001651151 +16963,84.81499999995911,-0.06863515745156479 +16964,84.81999999995911,-0.06863514489095222 +16965,84.8249999999591,-0.06863513233467246 +16966,84.8299999999591,-0.06863511978272413 +16967,84.8349999999591,-0.06863510723510588 +16968,84.83999999995909,-0.06863509469181632 +16969,84.84499999995909,-0.06863508215285412 +16970,84.84999999995908,-0.06863506961821787 +16971,84.85499999995908,-0.06863505708790625 +16972,84.85999999995907,-0.06863504456191788 +16973,84.86499999995907,-0.0686350320402514 +16974,84.86999999995906,-0.06863501952290545 +16975,84.87499999995906,-0.06863500700987867 +16976,84.87999999995905,-0.06863499450116968 +16977,84.88499999995905,-0.06863498199677713 +16978,84.88999999995904,-0.06863496949669967 +16979,84.89499999995904,-0.06863495700093593 +16980,84.89999999995904,-0.06863494450948456 +16981,84.90499999995903,-0.06863493202234418 +16982,84.90999999995903,-0.06863491953951345 +16983,84.91499999995902,-0.06863490706099101 +16984,84.91999999995902,-0.0686348945867755 +16985,84.92499999995901,-0.06863488211686555 +16986,84.92999999995901,-0.06863486965125984 +16987,84.934999999959,-0.06863485718995696 +16988,84.939999999959,-0.0686348447329556 +16989,84.944999999959,-0.06863483228025437 +16990,84.94999999995899,-0.06863481983185195 +16991,84.95499999995899,-0.06863480738774695 +16992,84.95999999995898,-0.06863479494793803 +16993,84.96499999995898,-0.06863478251242384 +16994,84.96999999995897,-0.06863477008120303 +16995,84.97499999995897,-0.06863475765427424 +16996,84.97999999995896,-0.06863474523163611 +16997,84.98499999995896,-0.06863473281328729 +16998,84.98999999995895,-0.06863472039922644 +16999,84.99499999995895,-0.06863470798945219 +17000,84.99999999995894,-0.0686346955839632 +17001,85.00499999995894,-0.06863468318275813 +17002,85.00999999995894,-0.06863467078583561 +17003,85.01499999995893,-0.0686346583931943 +17004,85.01999999995893,-0.06863464600483285 +17005,85.02499999995892,-0.0686346336207499 +17006,85.02999999995892,-0.06863462124094412 +17007,85.03499999995891,-0.06863460886541414 +17008,85.03999999995891,-0.06863459649415864 +17009,85.0449999999589,-0.06863458412717623 +17010,85.0499999999589,-0.0686345717644656 +17011,85.0549999999589,-0.06863455940602539 +17012,85.05999999995889,-0.06863454705185426 +17013,85.06499999995889,-0.06863453470195086 +17014,85.06999999995888,-0.06863452235631384 +17015,85.07499999995888,-0.06863451001494185 +17016,85.07999999995887,-0.06863449767783357 +17017,85.08499999995887,-0.06863448534498763 +17018,85.08999999995886,-0.0686344730164027 +17019,85.09499999995886,-0.06863446069207743 +17020,85.09999999995885,-0.06863444837201048 +17021,85.10499999995885,-0.06863443605620051 +17022,85.10999999995884,-0.06863442374464618 +17023,85.11499999995884,-0.06863441143734612 +17024,85.11999999995884,-0.06863439913429902 +17025,85.12499999995883,-0.06863438683550353 +17026,85.12999999995883,-0.06863437454095832 +17027,85.13499999995882,-0.06863436225066202 +17028,85.13999999995882,-0.06863434996461332 +17029,85.14499999995881,-0.06863433768281087 +17030,85.14999999995881,-0.06863432540525333 +17031,85.1549999999588,-0.06863431313193935 +17032,85.1599999999588,-0.06863430086286762 +17033,85.1649999999588,-0.06863428859803677 +17034,85.16999999995879,-0.0686342763374455 +17035,85.17499999995879,-0.06863426408109244 +17036,85.17999999995878,-0.06863425182897626 +17037,85.18499999995878,-0.06863423958109563 +17038,85.18999999995877,-0.06863422733744921 +17039,85.19499999995877,-0.06863421509803569 +17040,85.19999999995876,-0.06863420286285368 +17041,85.20499999995876,-0.0686341906319019 +17042,85.20999999995875,-0.06863417840517899 +17043,85.21499999995875,-0.06863416618268361 +17044,85.21999999995874,-0.06863415396441445 +17045,85.22499999995874,-0.06863414175037016 +17046,85.22999999995874,-0.06863412954054941 +17047,85.23499999995873,-0.06863411733495087 +17048,85.23999999995873,-0.06863410513357322 +17049,85.24499999995872,-0.0686340929364151 +17050,85.24999999995872,-0.0686340807434752 +17051,85.25499999995871,-0.06863406855475218 +17052,85.25999999995871,-0.06863405637024472 +17053,85.2649999999587,-0.06863404418995148 +17054,85.2699999999587,-0.06863403201387115 +17055,85.2749999999587,-0.06863401984200238 +17056,85.27999999995869,-0.06863400767434384 +17057,85.28499999995869,-0.0686339955108942 +17058,85.28999999995868,-0.06863398335165218 +17059,85.29499999995868,-0.06863397119661639 +17060,85.29999999995867,-0.06863395904578554 +17061,85.30499999995867,-0.06863394689915828 +17062,85.30999999995866,-0.0686339347567333 +17063,85.31499999995866,-0.06863392261850927 +17064,85.31999999995865,-0.06863391048448488 +17065,85.32499999995865,-0.06863389835465877 +17066,85.32999999995864,-0.06863388622902965 +17067,85.33499999995864,-0.06863387410759617 +17068,85.33999999995864,-0.06863386199035704 +17069,85.34499999995863,-0.0686338498773109 +17070,85.34999999995863,-0.06863383776845643 +17071,85.35499999995862,-0.06863382566379234 +17072,85.35999999995862,-0.06863381356331728 +17073,85.36499999995861,-0.06863380146702994 +17074,85.36999999995861,-0.06863378937492899 +17075,85.3749999999586,-0.06863377728701311 +17076,85.3799999999586,-0.068633765203281 +17077,85.3849999999586,-0.06863375312373131 +17078,85.38999999995859,-0.06863374104836274 +17079,85.39499999995859,-0.06863372897717396 +17080,85.39999999995858,-0.06863371691016366 +17081,85.40499999995858,-0.06863370484733052 +17082,85.40999999995857,-0.06863369278867322 +17083,85.41499999995857,-0.06863368073419043 +17084,85.41999999995856,-0.06863366868388086 +17085,85.42499999995856,-0.06863365663774318 +17086,85.42999999995855,-0.06863364459577606 +17087,85.43499999995855,-0.0686336325579782 +17088,85.43999999995854,-0.0686336205243483 +17089,85.44499999995854,-0.06863360849488499 +17090,85.44999999995854,-0.06863359646958703 +17091,85.45499999995853,-0.06863358444845304 +17092,85.45999999995853,-0.06863357243148174 +17093,85.46499999995852,-0.0686335604186718 +17094,85.46999999995852,-0.06863354841002194 +17095,85.47499999995851,-0.0686335364055308 +17096,85.47999999995851,-0.06863352440519709 +17097,85.4849999999585,-0.06863351240901949 +17098,85.4899999999585,-0.06863350041699671 +17099,85.4949999999585,-0.06863348842912742 +17100,85.49999999995849,-0.06863347644541032 +17101,85.50499999995849,-0.0686334644658441 +17102,85.50999999995848,-0.06863345249042745 +17103,85.51499999995848,-0.06863344051915904 +17104,85.51999999995847,-0.06863342855203758 +17105,85.52499999995847,-0.06863341658906176 +17106,85.52999999995846,-0.06863340463023027 +17107,85.53499999995846,-0.06863339267554179 +17108,85.53999999995845,-0.06863338072499502 +17109,85.54499999995845,-0.06863336877858867 +17110,85.54999999995844,-0.0686333568363214 +17111,85.55499999995844,-0.06863334489819194 +17112,85.55999999995844,-0.06863333296419896 +17113,85.56499999995843,-0.06863332103434115 +17114,85.56999999995843,-0.06863330910861723 +17115,85.57499999995842,-0.06863329718702588 +17116,85.57999999995842,-0.06863328526956579 +17117,85.58499999995841,-0.06863327335623566 +17118,85.58999999995841,-0.0686332614470342 +17119,85.5949999999584,-0.06863324954196008 +17120,85.5999999999584,-0.06863323764101203 +17121,85.6049999999584,-0.06863322574418872 +17122,85.60999999995839,-0.06863321385148886 +17123,85.61499999995839,-0.06863320196291114 +17124,85.61999999995838,-0.06863319007845428 +17125,85.62499999995838,-0.06863317819811696 +17126,85.62999999995837,-0.06863316632189788 +17127,85.63499999995837,-0.06863315444979574 +17128,85.63999999995836,-0.06863314258180925 +17129,85.64499999995836,-0.06863313071793711 +17130,85.64999999995835,-0.06863311885817801 +17131,85.65499999995835,-0.06863310700253065 +17132,85.65999999995834,-0.06863309515099375 +17133,85.66499999995834,-0.068633083303566 +17134,85.66999999995834,-0.0686330714602461 +17135,85.67499999995833,-0.06863305962103276 +17136,85.67999999995833,-0.06863304778592468 +17137,85.68499999995832,-0.06863303595492055 +17138,85.68999999995832,-0.06863302412801912 +17139,85.69499999995831,-0.06863301230521904 +17140,85.69999999995831,-0.06863300048651905 +17141,85.7049999999583,-0.06863298867191785 +17142,85.7099999999583,-0.06863297686141412 +17143,85.7149999999583,-0.06863296505500661 +17144,85.71999999995829,-0.068632953252694 +17145,85.72499999995829,-0.06863294145447499 +17146,85.72999999995828,-0.0686329296603483 +17147,85.73499999995828,-0.06863291787031264 +17148,85.73999999995827,-0.06863290608436672 +17149,85.74499999995827,-0.06863289430250923 +17150,85.74999999995826,-0.0686328825247389 +17151,85.75499999995826,-0.06863287075105441 +17152,85.75999999995825,-0.06863285898145452 +17153,85.76499999995825,-0.0686328472159379 +17154,85.76999999995824,-0.06863283545450327 +17155,85.77499999995824,-0.06863282369714933 +17156,85.77999999995824,-0.06863281194387483 +17157,85.78499999995823,-0.06863280019467843 +17158,85.78999999995823,-0.06863278844955889 +17159,85.79499999995822,-0.06863277670851489 +17160,85.79999999995822,-0.06863276497154516 +17161,85.80499999995821,-0.06863275323864841 +17162,85.80999999995821,-0.06863274150982333 +17163,85.8149999999582,-0.06863272978506868 +17164,85.8199999999582,-0.06863271806438313 +17165,85.8249999999582,-0.06863270634776542 +17166,85.82999999995819,-0.06863269463521426 +17167,85.83499999995819,-0.06863268292672836 +17168,85.83999999995818,-0.06863267122230646 +17169,85.84499999995818,-0.06863265952194725 +17170,85.84999999995817,-0.06863264782564944 +17171,85.85499999995817,-0.06863263613341178 +17172,85.85999999995816,-0.06863262444523296 +17173,85.86499999995816,-0.06863261276111171 +17174,85.86999999995815,-0.06863260108104674 +17175,85.87499999995815,-0.06863258940503679 +17176,85.87999999995814,-0.06863257773308054 +17177,85.88499999995814,-0.06863256606517674 +17178,85.88999999995814,-0.06863255440132411 +17179,85.89499999995813,-0.06863254274152136 +17180,85.89999999995813,-0.06863253108576722 +17181,85.90499999995812,-0.06863251943406042 +17182,85.90999999995812,-0.06863250778639965 +17183,85.91499999995811,-0.06863249614278363 +17184,85.91999999995811,-0.06863248450321113 +17185,85.9249999999581,-0.06863247286768083 +17186,85.9299999999581,-0.06863246123619147 +17187,85.9349999999581,-0.06863244960874178 +17188,85.93999999995809,-0.06863243798533047 +17189,85.94499999995809,-0.06863242636595626 +17190,85.94999999995808,-0.0686324147506179 +17191,85.95499999995808,-0.0686324031393141 +17192,85.95999999995807,-0.06863239153204358 +17193,85.96499999995807,-0.06863237992880505 +17194,85.96999999995806,-0.06863236832959727 +17195,85.97499999995806,-0.06863235673441895 +17196,85.97999999995805,-0.06863234514326882 +17197,85.98499999995805,-0.0686323335561456 +17198,85.98999999995804,-0.06863232197304805 +17199,85.99499999995804,-0.06863231039397487 +17200,85.99999999995804,-0.06863229881892477 +17201,86.00499999995803,-0.0686322872478965 +17202,86.00999999995803,-0.0686322756808888 +17203,86.01499999995802,-0.0686322641179004 +17204,86.01999999995802,-0.06863225255893 +17205,86.02499999995801,-0.06863224100397636 +17206,86.02999999995801,-0.06863222945303821 +17207,86.034999999958,-0.06863221790611426 +17208,86.039999999958,-0.06863220636320326 +17209,86.044999999958,-0.06863219482430392 +17210,86.04999999995799,-0.068632183289415 +17211,86.05499999995799,-0.06863217175853524 +17212,86.05999999995798,-0.06863216023166334 +17213,86.06499999995798,-0.06863214870879804 +17214,86.06999999995797,-0.06863213718993809 +17215,86.07499999995797,-0.06863212567508221 +17216,86.07999999995796,-0.06863211416422914 +17217,86.08499999995796,-0.06863210265737761 +17218,86.08999999995795,-0.06863209115452638 +17219,86.09499999995795,-0.06863207965567417 +17220,86.09999999995794,-0.06863206816081968 +17221,86.10499999995794,-0.06863205666996171 +17222,86.10999999995794,-0.06863204518309897 +17223,86.11499999995793,-0.06863203370023019 +17224,86.11999999995793,-0.06863202222135409 +17225,86.12499999995792,-0.06863201074646945 +17226,86.12999999995792,-0.06863199927557498 +17227,86.13499999995791,-0.06863198780866944 +17228,86.13999999995791,-0.06863197634575155 +17229,86.1449999999579,-0.06863196488682007 +17230,86.1499999999579,-0.0686319534318737 +17231,86.1549999999579,-0.06863194198091123 +17232,86.15999999995789,-0.06863193053393137 +17233,86.16499999995789,-0.06863191909093287 +17234,86.16999999995788,-0.06863190765191447 +17235,86.17499999995788,-0.06863189621687492 +17236,86.17999999995787,-0.06863188478581296 +17237,86.18499999995787,-0.06863187335872732 +17238,86.18999999995786,-0.06863186193561675 +17239,86.19499999995786,-0.06863185051648 +17240,86.19999999995785,-0.06863183910131582 +17241,86.20499999995785,-0.06863182769012294 +17242,86.20999999995784,-0.0686318162829001 +17243,86.21499999995784,-0.06863180487964607 +17244,86.21999999995784,-0.06863179348035957 +17245,86.22499999995783,-0.06863178208503935 +17246,86.22999999995783,-0.06863177069368416 +17247,86.23499999995782,-0.06863175930629276 +17248,86.23999999995782,-0.06863174792286386 +17249,86.24499999995781,-0.06863173654339626 +17250,86.24999999995781,-0.06863172516788867 +17251,86.2549999999578,-0.06863171379633984 +17252,86.2599999999578,-0.06863170242874854 +17253,86.2649999999578,-0.0686316910651135 +17254,86.26999999995779,-0.06863167970543348 +17255,86.27499999995779,-0.06863166834970721 +17256,86.27999999995778,-0.06863165699793346 +17257,86.28499999995778,-0.06863164565011098 +17258,86.28999999995777,-0.06863163430623853 +17259,86.29499999995777,-0.06863162296631482 +17260,86.29999999995776,-0.06863161163033864 +17261,86.30499999995776,-0.06863160029830874 +17262,86.30999999995775,-0.06863158897022387 +17263,86.31499999995775,-0.06863157764608274 +17264,86.31999999995774,-0.06863156632588417 +17265,86.32499999995774,-0.06863155500962687 +17266,86.32999999995774,-0.06863154369730962 +17267,86.33499999995773,-0.06863153238893115 +17268,86.33999999995773,-0.06863152108449024 +17269,86.34499999995772,-0.0686315097839856 +17270,86.34999999995772,-0.06863149848741604 +17271,86.35499999995771,-0.06863148719478028 +17272,86.35999999995771,-0.06863147590607709 +17273,86.3649999999577,-0.06863146462130523 +17274,86.3699999999577,-0.06863145334046344 +17275,86.3749999999577,-0.0686314420635505 +17276,86.37999999995769,-0.06863143079056515 +17277,86.38499999995769,-0.06863141952150614 +17278,86.38999999995768,-0.06863140825637228 +17279,86.39499999995768,-0.06863139699516226 +17280,86.39999999995767,-0.06863138573787486 +17281,86.40499999995767,-0.06863137448450887 +17282,86.40999999995766,-0.06863136323506303 +17283,86.41499999995766,-0.06863135198953609 +17284,86.41999999995765,-0.06863134074792683 +17285,86.42499999995765,-0.068631329510234 +17286,86.42999999995764,-0.06863131827645635 +17287,86.43499999995764,-0.06863130704659268 +17288,86.43999999995764,-0.06863129582064172 +17289,86.44499999995763,-0.06863128459860222 +17290,86.44999999995763,-0.06863127338047298 +17291,86.45499999995762,-0.06863126216625275 +17292,86.45999999995762,-0.06863125095594028 +17293,86.46499999995761,-0.06863123974953435 +17294,86.46999999995761,-0.06863122854703371 +17295,86.4749999999576,-0.06863121734843715 +17296,86.4799999999576,-0.06863120615374341 +17297,86.4849999999576,-0.06863119496295125 +17298,86.48999999995759,-0.06863118377605948 +17299,86.49499999995759,-0.06863117259306681 +17300,86.49999999995758,-0.06863116141397203 +17301,86.50499999995758,-0.06863115023877393 +17302,86.50999999995757,-0.06863113906747126 +17303,86.51499999995757,-0.06863112790006276 +17304,86.51999999995756,-0.06863111673654725 +17305,86.52499999995756,-0.06863110557692345 +17306,86.52999999995755,-0.06863109442119016 +17307,86.53499999995755,-0.06863108326934614 +17308,86.53999999995754,-0.06863107212139016 +17309,86.54499999995754,-0.068631060977321 +17310,86.54999999995754,-0.06863104983713741 +17311,86.55499999995753,-0.06863103870083817 +17312,86.55999999995753,-0.06863102756842207 +17313,86.56499999995752,-0.06863101643988787 +17314,86.56999999995752,-0.0686310053152343 +17315,86.57499999995751,-0.06863099419446018 +17316,86.57999999995751,-0.06863098307756428 +17317,86.5849999999575,-0.06863097196454537 +17318,86.5899999999575,-0.06863096085540221 +17319,86.5949999999575,-0.06863094975013358 +17320,86.59999999995749,-0.06863093864873826 +17321,86.60499999995749,-0.06863092755121503 +17322,86.60999999995748,-0.06863091645756264 +17323,86.61499999995748,-0.0686309053677799 +17324,86.61999999995747,-0.06863089428186554 +17325,86.62499999995747,-0.06863088319981837 +17326,86.62999999995746,-0.06863087212163717 +17327,86.63499999995746,-0.0686308610473207 +17328,86.63999999995745,-0.06863084997686775 +17329,86.64499999995745,-0.06863083891027709 +17330,86.64999999995744,-0.0686308278475475 +17331,86.65499999995744,-0.06863081678867775 +17332,86.65999999995744,-0.06863080573366663 +17333,86.66499999995743,-0.06863079468251292 +17334,86.66999999995743,-0.06863078363521538 +17335,86.67499999995742,-0.06863077259177282 +17336,86.67999999995742,-0.06863076155218399 +17337,86.68499999995741,-0.0686307505164477 +17338,86.68999999995741,-0.06863073948456269 +17339,86.6949999999574,-0.06863072845652779 +17340,86.6999999999574,-0.06863071743234175 +17341,86.7049999999574,-0.06863070641200338 +17342,86.70999999995739,-0.06863069539551142 +17343,86.71499999995739,-0.06863068438286468 +17344,86.71999999995738,-0.06863067337406195 +17345,86.72499999995738,-0.068630662369102 +17346,86.72999999995737,-0.06863065136798362 +17347,86.73499999995737,-0.06863064037070558 +17348,86.73999999995736,-0.06863062937726669 +17349,86.74499999995736,-0.06863061838766571 +17350,86.74999999995735,-0.06863060740190143 +17351,86.75499999995735,-0.06863059641997264 +17352,86.75999999995734,-0.06863058544187814 +17353,86.76499999995734,-0.0686305744676167 +17354,86.76999999995734,-0.06863056349718712 +17355,86.77499999995733,-0.06863055253058817 +17356,86.77999999995733,-0.06863054156781864 +17357,86.78499999995732,-0.06863053060887733 +17358,86.78999999995732,-0.06863051965376303 +17359,86.79499999995731,-0.06863050870247452 +17360,86.79999999995731,-0.06863049775501058 +17361,86.8049999999573,-0.06863048681137002 +17362,86.8099999999573,-0.0686304758715516 +17363,86.8149999999573,-0.06863046493555416 +17364,86.81999999995729,-0.06863045400337645 +17365,86.82499999995729,-0.06863044307501726 +17366,86.82999999995728,-0.0686304321504754 +17367,86.83499999995728,-0.06863042122974966 +17368,86.83999999995727,-0.06863041031283883 +17369,86.84499999995727,-0.06863039939974168 +17370,86.84999999995726,-0.06863038849045702 +17371,86.85499999995726,-0.06863037758498367 +17372,86.85999999995725,-0.06863036668332037 +17373,86.86499999995725,-0.06863035578546597 +17374,86.86999999995724,-0.06863034489141921 +17375,86.87499999995724,-0.06863033400117892 +17376,86.87999999995723,-0.06863032311474389 +17377,86.88499999995723,-0.06863031223211291 +17378,86.88999999995723,-0.06863030135328478 +17379,86.89499999995722,-0.06863029047825829 +17380,86.89999999995722,-0.06863027960703223 +17381,86.90499999995721,-0.06863026873960541 +17382,86.90999999995721,-0.06863025787597662 +17383,86.9149999999572,-0.06863024701614467 +17384,86.9199999999572,-0.06863023616010835 +17385,86.9249999999572,-0.06863022530786646 +17386,86.92999999995719,-0.06863021445941779 +17387,86.93499999995718,-0.06863020361476115 +17388,86.93999999995718,-0.06863019277389532 +17389,86.94499999995718,-0.06863018193681913 +17390,86.94999999995717,-0.06863017110353135 +17391,86.95499999995717,-0.06863016027403081 +17392,86.95999999995716,-0.06863014944831627 +17393,86.96499999995716,-0.06863013862638659 +17394,86.96999999995715,-0.06863012780824052 +17395,86.97499999995715,-0.06863011699387689 +17396,86.97999999995714,-0.06863010618329447 +17397,86.98499999995714,-0.0686300953764921 +17398,86.98999999995713,-0.06863008457346859 +17399,86.99499999995713,-0.0686300737742227 +17400,86.99999999995713,-0.06863006297875325 +17401,87.00499999995712,-0.06863005218705905 +17402,87.00999999995712,-0.0686300413991389 +17403,87.01499999995711,-0.06863003061499162 +17404,87.01999999995711,-0.06863001983461602 +17405,87.0249999999571,-0.06863000905801085 +17406,87.0299999999571,-0.06862999828517499 +17407,87.0349999999571,-0.0686299875161072 +17408,87.03999999995709,-0.06862997675080632 +17409,87.04499999995708,-0.0686299659892711 +17410,87.04999999995708,-0.06862995523150041 +17411,87.05499999995708,-0.06862994447749302 +17412,87.05999999995707,-0.06862993372724775 +17413,87.06499999995707,-0.0686299229807634 +17414,87.06999999995706,-0.06862991223803878 +17415,87.07499999995706,-0.06862990149907273 +17416,87.07999999995705,-0.06862989076386403 +17417,87.08499999995705,-0.0686298800324115 +17418,87.08999999995704,-0.06862986930471392 +17419,87.09499999995704,-0.06862985858077014 +17420,87.09999999995703,-0.06862984786057896 +17421,87.10499999995703,-0.06862983714413919 +17422,87.10999999995703,-0.06862982643144964 +17423,87.11499999995702,-0.06862981572250912 +17424,87.11999999995702,-0.06862980501731646 +17425,87.12499999995701,-0.06862979431587045 +17426,87.12999999995701,-0.06862978361816989 +17427,87.134999999957,-0.06862977292421364 +17428,87.139999999957,-0.06862976223400048 +17429,87.144999999957,-0.06862975154752925 +17430,87.14999999995699,-0.06862974086479873 +17431,87.15499999995698,-0.06862973018580774 +17432,87.15999999995698,-0.06862971951055513 +17433,87.16499999995698,-0.0686297088390397 +17434,87.16999999995697,-0.06862969817126024 +17435,87.17499999995697,-0.06862968750721561 +17436,87.17999999995696,-0.06862967684690459 +17437,87.18499999995696,-0.06862966619032601 +17438,87.18999999995695,-0.06862965553747868 +17439,87.19499999995695,-0.06862964488836144 +17440,87.19999999995694,-0.0686296342429731 +17441,87.20499999995694,-0.06862962360131246 +17442,87.20999999995693,-0.06862961296337837 +17443,87.21499999995693,-0.06862960232916962 +17444,87.21999999995693,-0.06862959169868503 +17445,87.22499999995692,-0.06862958107192343 +17446,87.22999999995692,-0.06862957044888367 +17447,87.23499999995691,-0.06862955982956453 +17448,87.23999999995691,-0.06862954921396484 +17449,87.2449999999569,-0.06862953860208343 +17450,87.2499999999569,-0.06862952799391911 +17451,87.2549999999569,-0.06862951738947072 +17452,87.25999999995689,-0.06862950678873708 +17453,87.26499999995688,-0.06862949619171699 +17454,87.26999999995688,-0.06862948559840928 +17455,87.27499999995688,-0.0686294750088128 +17456,87.27999999995687,-0.06862946442292636 +17457,87.28499999995687,-0.06862945384074877 +17458,87.28999999995686,-0.06862944326227886 +17459,87.29499999995686,-0.06862943268751548 +17460,87.29999999995685,-0.06862942211645742 +17461,87.30499999995685,-0.06862941154910353 +17462,87.30999999995684,-0.06862940098545262 +17463,87.31499999995684,-0.06862939042550353 +17464,87.31999999995683,-0.06862937986925509 +17465,87.32499999995683,-0.0686293693167061 +17466,87.32999999995683,-0.06862935876785542 +17467,87.33499999995682,-0.06862934822270186 +17468,87.33999999995682,-0.06862933768124427 +17469,87.34499999995681,-0.06862932714348145 +17470,87.34999999995681,-0.06862931660941224 +17471,87.3549999999568,-0.06862930607903547 +17472,87.3599999999568,-0.06862929555234998 +17473,87.3649999999568,-0.06862928502935457 +17474,87.36999999995679,-0.0686292745100481 +17475,87.37499999995678,-0.0686292639944294 +17476,87.37999999995678,-0.06862925348249728 +17477,87.38499999995678,-0.06862924297425059 +17478,87.38999999995677,-0.06862923246968815 +17479,87.39499999995677,-0.06862922196880882 +17480,87.39999999995676,-0.06862921147161138 +17481,87.40499999995676,-0.06862920097809472 +17482,87.40999999995675,-0.06862919048825764 +17483,87.41499999995675,-0.06862918000209897 +17484,87.41999999995674,-0.06862916951961757 +17485,87.42499999995674,-0.06862915904081225 +17486,87.42999999995673,-0.06862914856568186 +17487,87.43499999995673,-0.06862913809422523 +17488,87.43999999995673,-0.06862912762644119 +17489,87.44499999995672,-0.06862911716232858 +17490,87.44999999995672,-0.06862910670188624 +17491,87.45499999995671,-0.06862909624511301 +17492,87.45999999995671,-0.06862908579200773 +17493,87.4649999999567,-0.0686290753425692 +17494,87.4699999999567,-0.06862906489679631 +17495,87.4749999999567,-0.06862905445468787 +17496,87.47999999995669,-0.06862904401624272 +17497,87.48499999995668,-0.06862903358145969 +17498,87.48999999995668,-0.06862902315033764 +17499,87.49499999995668,-0.0686290127228754 +17500,87.49999999995667,-0.06862900229907182 +17501,87.50499999995667,-0.06862899187892571 +17502,87.50999999995666,-0.06862898146243593 +17503,87.51499999995666,-0.06862897104960132 +17504,87.51999999995665,-0.06862896064042073 +17505,87.52499999995665,-0.06862895023489299 +17506,87.52999999995664,-0.06862893983301695 +17507,87.53499999995664,-0.06862892943479143 +17508,87.53999999995663,-0.06862891904021531 +17509,87.54499999995663,-0.0686289086492874 +17510,87.54999999995663,-0.06862889826200656 +17511,87.55499999995662,-0.06862888787837162 +17512,87.55999999995662,-0.06862887749838145 +17513,87.56499999995661,-0.06862886712203488 +17514,87.56999999995661,-0.06862885674933074 +17515,87.5749999999566,-0.0686288463802679 +17516,87.5799999999566,-0.06862883601484518 +17517,87.5849999999566,-0.06862882565306144 +17518,87.58999999995659,-0.06862881529491553 +17519,87.59499999995658,-0.06862880494040628 +17520,87.59999999995658,-0.06862879458953257 +17521,87.60499999995658,-0.06862878424229321 +17522,87.60999999995657,-0.06862877389868706 +17523,87.61499999995657,-0.06862876355871297 +17524,87.61999999995656,-0.06862875322236979 +17525,87.62499999995656,-0.06862874288965638 +17526,87.62999999995655,-0.06862873256057156 +17527,87.63499999995655,-0.06862872223511421 +17528,87.63999999995654,-0.06862871191328315 +17529,87.64499999995654,-0.06862870159507727 +17530,87.64999999995653,-0.06862869128049538 +17531,87.65499999995653,-0.06862868096953635 +17532,87.65999999995653,-0.06862867066219903 +17533,87.66499999995652,-0.06862866035848227 +17534,87.66999999995652,-0.06862865005838491 +17535,87.67499999995651,-0.06862863976190582 +17536,87.67999999995651,-0.06862862946904384 +17537,87.6849999999565,-0.06862861917979785 +17538,87.6899999999565,-0.06862860889416665 +17539,87.6949999999565,-0.06862859861214914 +17540,87.69999999995649,-0.06862858833374415 +17541,87.70499999995648,-0.06862857805895055 +17542,87.70999999995648,-0.06862856778776719 +17543,87.71499999995648,-0.06862855752019291 +17544,87.71999999995647,-0.06862854725622658 +17545,87.72499999995647,-0.06862853699586707 +17546,87.72999999995646,-0.0686285267391132 +17547,87.73499999995646,-0.06862851648596385 +17548,87.73999999995645,-0.06862850623641788 +17549,87.74499999995645,-0.06862849599047413 +17550,87.74999999995644,-0.06862848574813146 +17551,87.75499999995644,-0.06862847550938875 +17552,87.75999999995643,-0.06862846527424483 +17553,87.76499999995643,-0.06862845504269857 +17554,87.76999999995643,-0.06862844481474885 +17555,87.77499999995642,-0.0686284345903945 +17556,87.77999999995642,-0.06862842436963437 +17557,87.78499999995641,-0.06862841415246734 +17558,87.78999999995641,-0.06862840393889227 +17559,87.7949999999564,-0.06862839372890803 +17560,87.7999999999564,-0.06862838352251346 +17561,87.8049999999564,-0.06862837331970743 +17562,87.80999999995639,-0.06862836312048881 +17563,87.81499999995638,-0.06862835292485645 +17564,87.81999999995638,-0.0686283427328092 +17565,87.82499999995638,-0.06862833254434596 +17566,87.82999999995637,-0.06862832235946556 +17567,87.83499999995637,-0.06862831217816687 +17568,87.83999999995636,-0.06862830200044875 +17569,87.84499999995636,-0.0686282918263101 +17570,87.84999999995635,-0.06862828165574973 +17571,87.85499999995635,-0.06862827148876655 +17572,87.85999999995634,-0.06862826132535939 +17573,87.86499999995634,-0.06862825116552715 +17574,87.86999999995633,-0.06862824100926866 +17575,87.87499999995633,-0.06862823085658282 +17576,87.87999999995633,-0.06862822070746846 +17577,87.88499999995632,-0.06862821056192447 +17578,87.88999999995632,-0.06862820041994973 +17579,87.89499999995631,-0.06862819028154307 +17580,87.89999999995631,-0.06862818014670338 +17581,87.9049999999563,-0.06862817001542953 +17582,87.9099999999563,-0.06862815988772039 +17583,87.9149999999563,-0.06862814976357483 +17584,87.91999999995629,-0.0686281396429917 +17585,87.92499999995628,-0.06862812952596989 +17586,87.92999999995628,-0.06862811941250825 +17587,87.93499999995628,-0.06862810930260568 +17588,87.93999999995627,-0.06862809919626102 +17589,87.94499999995627,-0.06862808909347316 +17590,87.94999999995626,-0.06862807899424096 +17591,87.95499999995626,-0.06862806889856331 +17592,87.95999999995625,-0.06862805880643905 +17593,87.96499999995625,-0.06862804871786708 +17594,87.96999999995624,-0.06862803863284626 +17595,87.97499999995624,-0.06862802855137547 +17596,87.97999999995623,-0.06862801847345358 +17597,87.98499999995623,-0.06862800839907947 +17598,87.98999999995623,-0.06862799832825199 +17599,87.99499999995622,-0.06862798826097004 +17600,87.99999999995622,-0.0686279781972325 +17601,88.00499999995621,-0.06862796813703821 +17602,88.00999999995621,-0.06862795808038608 +17603,88.0149999999562,-0.06862794802727497 +17604,88.0199999999562,-0.06862793797770375 +17605,88.0249999999562,-0.06862792793167131 +17606,88.02999999995619,-0.06862791788917652 +17607,88.03499999995618,-0.06862790785021826 +17608,88.03999999995618,-0.06862789781479542 +17609,88.04499999995618,-0.06862788778290685 +17610,88.04999999995617,-0.06862787775455145 +17611,88.05499999995617,-0.06862786772972808 +17612,88.05999999995616,-0.06862785770843563 +17613,88.06499999995616,-0.06862784769067298 +17614,88.06999999995615,-0.068627837676439 +17615,88.07499999995615,-0.06862782766573258 +17616,88.07999999995614,-0.06862781765855261 +17617,88.08499999995614,-0.06862780765489795 +17618,88.08999999995613,-0.0686277976547675 +17619,88.09499999995613,-0.06862778765816012 +17620,88.09999999995613,-0.0686277776650747 +17621,88.10499999995612,-0.06862776767551013 +17622,88.10999999995612,-0.06862775768946529 +17623,88.11499999995611,-0.06862774770693905 +17624,88.11999999995611,-0.0686277377279303 +17625,88.1249999999561,-0.06862772775243792 +17626,88.1299999999561,-0.06862771778046081 +17627,88.1349999999561,-0.06862770781199784 +17628,88.13999999995609,-0.0686276978470479 +17629,88.14499999995608,-0.06862768788560986 +17630,88.14999999995608,-0.06862767792768262 +17631,88.15499999995608,-0.06862766797326507 +17632,88.15999999995607,-0.06862765802235607 +17633,88.16499999995607,-0.06862764807495454 +17634,88.16999999995606,-0.06862763813105935 +17635,88.17499999995606,-0.06862762819066937 +17636,88.17999999995605,-0.06862761825378351 +17637,88.18499999995605,-0.06862760832040066 +17638,88.18999999995604,-0.06862759839051968 +17639,88.19499999995604,-0.06862758846413948 +17640,88.19999999995603,-0.06862757854125895 +17641,88.20499999995603,-0.06862756862187697 +17642,88.20999999995603,-0.06862755870599242 +17643,88.21499999995602,-0.06862754879360422 +17644,88.21999999995602,-0.06862753888471122 +17645,88.22499999995601,-0.06862752897931236 +17646,88.22999999995601,-0.0686275190774065 +17647,88.234999999956,-0.06862750917899252 +17648,88.239999999956,-0.06862749928406932 +17649,88.244999999956,-0.0686274893926358 +17650,88.24999999995599,-0.06862747950469084 +17651,88.25499999995598,-0.06862746962023335 +17652,88.25999999995598,-0.0686274597392622 +17653,88.26499999995598,-0.06862744986177628 +17654,88.26999999995597,-0.06862743998777453 +17655,88.27499999995597,-0.06862743011725579 +17656,88.27999999995596,-0.06862742025021898 +17657,88.28499999995596,-0.068627410386663 +17658,88.28999999995595,-0.0686274005265867 +17659,88.29499999995595,-0.06862739066998903 +17660,88.29999999995594,-0.06862738081686885 +17661,88.30499999995594,-0.06862737096722507 +17662,88.30999999995593,-0.0686273611210566 +17663,88.31499999995593,-0.0686273512783623 +17664,88.31999999995593,-0.06862734143914109 +17665,88.32499999995592,-0.06862733160339186 +17666,88.32999999995592,-0.06862732177111353 +17667,88.33499999995591,-0.06862731194230497 +17668,88.33999999995591,-0.06862730211696509 +17669,88.3449999999559,-0.06862729229509278 +17670,88.3499999999559,-0.06862728247668692 +17671,88.3549999999559,-0.06862727266174647 +17672,88.35999999995589,-0.06862726285027025 +17673,88.36499999995588,-0.06862725304225722 +17674,88.36999999995588,-0.06862724323770626 +17675,88.37499999995588,-0.06862723343661628 +17676,88.37999999995587,-0.06862722363898617 +17677,88.38499999995587,-0.06862721384481482 +17678,88.38999999995586,-0.06862720405410114 +17679,88.39499999995586,-0.06862719426684405 +17680,88.39999999995585,-0.06862718448304242 +17681,88.40499999995585,-0.06862717470269518 +17682,88.40999999995584,-0.06862716492580122 +17683,88.41499999995584,-0.06862715515235943 +17684,88.41999999995583,-0.06862714538236872 +17685,88.42499999995583,-0.06862713561582802 +17686,88.42999999995583,-0.06862712585273621 +17687,88.43499999995582,-0.0686271160930922 +17688,88.43999999995582,-0.06862710633689488 +17689,88.44499999995581,-0.06862709658414318 +17690,88.4499999999558,-0.06862708683483598 +17691,88.4549999999558,-0.06862707708897221 +17692,88.4599999999558,-0.06862706734655076 +17693,88.4649999999558,-0.06862705760757055 +17694,88.46999999995579,-0.06862704787203047 +17695,88.47499999995578,-0.06862703813992944 +17696,88.47999999995578,-0.06862702841126635 +17697,88.48499999995578,-0.06862701868604014 +17698,88.48999999995577,-0.06862700896424967 +17699,88.49499999995577,-0.06862699924589388 +17700,88.49999999995576,-0.06862698953097168 +17701,88.50499999995576,-0.06862697981948197 +17702,88.50999999995575,-0.06862697011142367 +17703,88.51499999995575,-0.06862696040679568 +17704,88.51999999995574,-0.06862695070559689 +17705,88.52499999995574,-0.06862694100782626 +17706,88.52999999995573,-0.06862693131348266 +17707,88.53499999995573,-0.06862692162256501 +17708,88.53999999995573,-0.06862691193507223 +17709,88.54499999995572,-0.06862690225100324 +17710,88.54999999995572,-0.06862689257035692 +17711,88.55499999995571,-0.06862688289313221 +17712,88.5599999999557,-0.068626873219328 +17713,88.5649999999557,-0.06862686354894322 +17714,88.5699999999557,-0.06862685388197678 +17715,88.5749999999557,-0.06862684421842759 +17716,88.57999999995569,-0.06862683455829457 +17717,88.58499999995568,-0.06862682490157662 +17718,88.58999999995568,-0.06862681524827267 +17719,88.59499999995568,-0.06862680559838163 +17720,88.59999999995567,-0.06862679595190242 +17721,88.60499999995567,-0.06862678630883395 +17722,88.60999999995566,-0.06862677666917515 +17723,88.61499999995566,-0.0686267670329249 +17724,88.61999999995565,-0.06862675740008216 +17725,88.62499999995565,-0.06862674777064581 +17726,88.62999999995564,-0.06862673814461477 +17727,88.63499999995564,-0.068626728521988 +17728,88.63999999995563,-0.06862671890276438 +17729,88.64499999995563,-0.06862670928694282 +17730,88.64999999995563,-0.06862669967452227 +17731,88.65499999995562,-0.06862669006550164 +17732,88.65999999995562,-0.06862668045987984 +17733,88.66499999995561,-0.06862667085765578 +17734,88.6699999999556,-0.06862666125882841 +17735,88.6749999999556,-0.06862665166339661 +17736,88.6799999999556,-0.06862664207135934 +17737,88.6849999999556,-0.06862663248271551 +17738,88.68999999995559,-0.06862662289746403 +17739,88.69499999995558,-0.06862661331560384 +17740,88.69999999995558,-0.06862660373713383 +17741,88.70499999995558,-0.06862659416205295 +17742,88.70999999995557,-0.06862658459036011 +17743,88.71499999995557,-0.06862657502205424 +17744,88.71999999995556,-0.06862656545713426 +17745,88.72499999995556,-0.0686265558955991 +17746,88.72999999995555,-0.06862654633744766 +17747,88.73499999995555,-0.0686265367826789 +17748,88.73999999995554,-0.06862652723129171 +17749,88.74499999995554,-0.06862651768328505 +17750,88.74999999995553,-0.0686265081386578 +17751,88.75499999995553,-0.06862649859740892 +17752,88.75999999995553,-0.06862648905953733 +17753,88.76499999995552,-0.06862647952504196 +17754,88.76999999995552,-0.06862646999392172 +17755,88.77499999995551,-0.06862646046617554 +17756,88.7799999999555,-0.06862645094180236 +17757,88.7849999999555,-0.0686264414208011 +17758,88.7899999999555,-0.06862643190317069 +17759,88.7949999999555,-0.06862642238891008 +17760,88.79999999995549,-0.06862641287801814 +17761,88.80499999995548,-0.06862640337049385 +17762,88.80999999995548,-0.06862639386633612 +17763,88.81499999995548,-0.06862638436554389 +17764,88.81999999995547,-0.06862637486811607 +17765,88.82499999995547,-0.06862636537405162 +17766,88.82999999995546,-0.06862635588334944 +17767,88.83499999995546,-0.06862634639600847 +17768,88.83999999995545,-0.06862633691202766 +17769,88.84499999995545,-0.06862632743140591 +17770,88.84999999995544,-0.06862631795414217 +17771,88.85499999995544,-0.06862630848023536 +17772,88.85999999995543,-0.06862629900968445 +17773,88.86499999995543,-0.06862628954248833 +17774,88.86999999995543,-0.06862628007864593 +17775,88.87499999995542,-0.06862627061815621 +17776,88.87999999995542,-0.06862626116101811 +17777,88.88499999995541,-0.06862625170723054 +17778,88.8899999999554,-0.06862624225679244 +17779,88.8949999999554,-0.06862623280970274 +17780,88.8999999999554,-0.0686262233659604 +17781,88.9049999999554,-0.06862621392556432 +17782,88.90999999995539,-0.06862620448851346 +17783,88.91499999995538,-0.06862619505480676 +17784,88.91999999995538,-0.06862618562444314 +17785,88.92499999995538,-0.06862617619742155 +17786,88.92999999995537,-0.06862616677374091 +17787,88.93499999995537,-0.06862615735340016 +17788,88.93999999995536,-0.06862614793639824 +17789,88.94499999995536,-0.0686261385227341 +17790,88.94999999995535,-0.06862612911240666 +17791,88.95499999995535,-0.06862611970541488 +17792,88.95999999995534,-0.06862611030175769 +17793,88.96499999995534,-0.06862610090143403 +17794,88.96999999995533,-0.06862609150444282 +17795,88.97499999995533,-0.06862608211078303 +17796,88.97999999995533,-0.06862607272045358 +17797,88.98499999995532,-0.06862606333345342 +17798,88.98999999995532,-0.06862605394978148 +17799,88.99499999995531,-0.06862604456943672 +17800,88.9999999999553,-0.06862603519241806 +17801,89.0049999999553,-0.06862602581872446 +17802,89.0099999999553,-0.06862601644835485 +17803,89.0149999999553,-0.06862600708130817 +17804,89.01999999995529,-0.06862599771758338 +17805,89.02499999995528,-0.06862598835717941 +17806,89.02999999995528,-0.0686259790000952 +17807,89.03499999995528,-0.06862596964632971 +17808,89.03999999995527,-0.06862596029588187 +17809,89.04499999995527,-0.06862595094875062 +17810,89.04999999995526,-0.06862594160493492 +17811,89.05499999995526,-0.0686259322644337 +17812,89.05999999995525,-0.06862592292724592 +17813,89.06499999995525,-0.06862591359337052 +17814,89.06999999995524,-0.06862590426280643 +17815,89.07499999995524,-0.06862589493555263 +17816,89.07999999995523,-0.06862588561160803 +17817,89.08499999995523,-0.06862587629097161 +17818,89.08999999995523,-0.06862586697364229 +17819,89.09499999995522,-0.06862585765961902 +17820,89.09999999995522,-0.06862584834890079 +17821,89.10499999995521,-0.0686258390414865 +17822,89.1099999999552,-0.06862582973737512 +17823,89.1149999999552,-0.06862582043656558 +17824,89.1199999999552,-0.06862581113905686 +17825,89.1249999999552,-0.06862580184484787 +17826,89.12999999995519,-0.06862579255393758 +17827,89.13499999995518,-0.06862578326632496 +17828,89.13999999995518,-0.06862577398200893 +17829,89.14499999995517,-0.06862576470098847 +17830,89.14999999995517,-0.0686257554232625 +17831,89.15499999995517,-0.06862574614882999 +17832,89.15999999995516,-0.06862573687768989 +17833,89.16499999995516,-0.06862572760984115 +17834,89.16999999995515,-0.06862571834528272 +17835,89.17499999995515,-0.06862570908401355 +17836,89.17999999995514,-0.0686256998260326 +17837,89.18499999995514,-0.06862569057133883 +17838,89.18999999995513,-0.06862568131993117 +17839,89.19499999995513,-0.06862567207180861 +17840,89.19999999995512,-0.06862566282697007 +17841,89.20499999995512,-0.06862565358541453 +17842,89.20999999995512,-0.06862564434714093 +17843,89.21499999995511,-0.0686256351121482 +17844,89.2199999999551,-0.06862562588043535 +17845,89.2249999999551,-0.06862561665200131 +17846,89.2299999999551,-0.06862560742684504 +17847,89.2349999999551,-0.06862559820496549 +17848,89.23999999995509,-0.0686255889863616 +17849,89.24499999995508,-0.06862557977103237 +17850,89.24999999995508,-0.06862557055897672 +17851,89.25499999995507,-0.06862556135019363 +17852,89.25999999995507,-0.06862555214468205 +17853,89.26499999995507,-0.06862554294244093 +17854,89.26999999995506,-0.06862553374346925 +17855,89.27499999995506,-0.06862552454776595 +17856,89.27999999995505,-0.06862551535533 +17857,89.28499999995505,-0.06862550616616035 +17858,89.28999999995504,-0.06862549698025598 +17859,89.29499999995504,-0.06862548779761582 +17860,89.29999999995503,-0.06862547861823887 +17861,89.30499999995503,-0.06862546944212404 +17862,89.30999999995502,-0.06862546026927034 +17863,89.31499999995502,-0.06862545109967672 +17864,89.31999999995502,-0.06862544193334212 +17865,89.32499999995501,-0.06862543277026552 +17866,89.329999999955,-0.06862542361044588 +17867,89.334999999955,-0.06862541445388216 +17868,89.339999999955,-0.06862540530057332 +17869,89.344999999955,-0.06862539615051834 +17870,89.34999999995499,-0.06862538700371618 +17871,89.35499999995498,-0.06862537786016577 +17872,89.35999999995498,-0.06862536871986612 +17873,89.36499999995497,-0.06862535958281618 +17874,89.36999999995497,-0.06862535044901491 +17875,89.37499999995497,-0.06862534131846126 +17876,89.37999999995496,-0.06862533219115423 +17877,89.38499999995496,-0.06862532306709276 +17878,89.38999999995495,-0.06862531394627583 +17879,89.39499999995495,-0.0686253048287024 +17880,89.39999999995494,-0.06862529571437144 +17881,89.40499999995494,-0.0686252866032819 +17882,89.40999999995493,-0.06862527749543279 +17883,89.41499999995493,-0.06862526839082304 +17884,89.41999999995492,-0.06862525928945164 +17885,89.42499999995492,-0.06862525019131753 +17886,89.42999999995492,-0.06862524109641971 +17887,89.43499999995491,-0.06862523200475713 +17888,89.4399999999549,-0.06862522291632878 +17889,89.4449999999549,-0.06862521383113362 +17890,89.4499999999549,-0.06862520474917061 +17891,89.4549999999549,-0.06862519567043873 +17892,89.45999999995489,-0.06862518659493695 +17893,89.46499999995488,-0.06862517752266423 +17894,89.46999999995488,-0.06862516845361957 +17895,89.47499999995487,-0.06862515938780192 +17896,89.47999999995487,-0.06862515032521024 +17897,89.48499999995487,-0.06862514126584353 +17898,89.48999999995486,-0.06862513220970073 +17899,89.49499999995486,-0.06862512315678086 +17900,89.49999999995485,-0.06862511410708287 +17901,89.50499999995485,-0.06862510506060572 +17902,89.50999999995484,-0.0686250960173484 +17903,89.51499999995484,-0.06862508697730987 +17904,89.51999999995483,-0.06862507794048912 +17905,89.52499999995483,-0.06862506890688512 +17906,89.52999999995482,-0.06862505987649684 +17907,89.53499999995482,-0.06862505084932326 +17908,89.53999999995482,-0.06862504182536336 +17909,89.54499999995481,-0.06862503280461611 +17910,89.5499999999548,-0.06862502378708049 +17911,89.5549999999548,-0.06862501477275548 +17912,89.5599999999548,-0.06862500576164005 +17913,89.5649999999548,-0.06862499675373317 +17914,89.56999999995479,-0.06862498774903383 +17915,89.57499999995478,-0.06862497874754102 +17916,89.57999999995478,-0.0686249697492537 +17917,89.58499999995477,-0.06862496075417085 +17918,89.58999999995477,-0.06862495176229144 +17919,89.59499999995477,-0.06862494277361449 +17920,89.59999999995476,-0.06862493378813891 +17921,89.60499999995476,-0.06862492480586375 +17922,89.60999999995475,-0.06862491582678797 +17923,89.61499999995475,-0.06862490685091054 +17924,89.61999999995474,-0.06862489787823042 +17925,89.62499999995474,-0.06862488890874664 +17926,89.62999999995473,-0.06862487994245815 +17927,89.63499999995473,-0.06862487097936394 +17928,89.63999999995472,-0.06862486201946298 +17929,89.64499999995472,-0.06862485306275427 +17930,89.64999999995472,-0.06862484410923678 +17931,89.65499999995471,-0.06862483515890949 +17932,89.6599999999547,-0.0686248262117714 +17933,89.6649999999547,-0.06862481726782149 +17934,89.6699999999547,-0.06862480832705874 +17935,89.6749999999547,-0.06862479938948213 +17936,89.67999999995469,-0.06862479045509064 +17937,89.68499999995468,-0.06862478152388325 +17938,89.68999999995468,-0.06862477259585899 +17939,89.69499999995467,-0.06862476367101679 +17940,89.69999999995467,-0.06862475474935567 +17941,89.70499999995467,-0.06862474583087462 +17942,89.70999999995466,-0.0686247369155726 +17943,89.71499999995466,-0.06862472800344861 +17944,89.71999999995465,-0.06862471909450164 +17945,89.72499999995465,-0.06862471018873068 +17946,89.72999999995464,-0.06862470128613471 +17947,89.73499999995464,-0.06862469238671272 +17948,89.73999999995463,-0.0686246834904637 +17949,89.74499999995463,-0.06862467459738664 +17950,89.74999999995462,-0.06862466570748052 +17951,89.75499999995462,-0.06862465682074434 +17952,89.75999999995462,-0.06862464793717707 +17953,89.76499999995461,-0.06862463905677774 +17954,89.7699999999546,-0.0686246301795453 +17955,89.7749999999546,-0.06862462130547876 +17956,89.7799999999546,-0.06862461243457711 +17957,89.7849999999546,-0.06862460356683935 +17958,89.78999999995459,-0.06862459470226444 +17959,89.79499999995458,-0.06862458584085138 +17960,89.79999999995458,-0.06862457698259919 +17961,89.80499999995457,-0.06862456812750685 +17962,89.80999999995457,-0.06862455927557334 +17963,89.81499999995457,-0.06862455042679767 +17964,89.81999999995456,-0.06862454158117882 +17965,89.82499999995456,-0.06862453273871578 +17966,89.82999999995455,-0.06862452389940757 +17967,89.83499999995455,-0.06862451506325316 +17968,89.83999999995454,-0.06862450623025156 +17969,89.84499999995454,-0.06862449740040173 +17970,89.84999999995453,-0.06862448857370272 +17971,89.85499999995453,-0.06862447975015348 +17972,89.85999999995452,-0.06862447092975303 +17973,89.86499999995452,-0.06862446211250037 +17974,89.86999999995452,-0.06862445329839448 +17975,89.87499999995451,-0.06862444448743435 +17976,89.8799999999545,-0.068624435679619 +17977,89.8849999999545,-0.06862442687494742 +17978,89.8899999999545,-0.0686244180734186 +17979,89.89499999995449,-0.06862440927503154 +17980,89.89999999995449,-0.06862440047978524 +17981,89.90499999995448,-0.0686243916876787 +17982,89.90999999995448,-0.06862438289871092 +17983,89.91499999995447,-0.0686243741128809 +17984,89.91999999995447,-0.06862436533018763 +17985,89.92499999995447,-0.06862435655063011 +17986,89.92999999995446,-0.06862434777420735 +17987,89.93499999995446,-0.06862433900091836 +17988,89.93999999995445,-0.06862433023076212 +17989,89.94499999995445,-0.06862432146373763 +17990,89.94999999995444,-0.06862431269984391 +17991,89.95499999995444,-0.06862430393907995 +17992,89.95999999995443,-0.06862429518144475 +17993,89.96499999995443,-0.06862428642693733 +17994,89.96999999995442,-0.06862427767555666 +17995,89.97499999995442,-0.06862426892730177 +17996,89.97999999995442,-0.06862426018217166 +17997,89.98499999995441,-0.0686242514401653 +17998,89.9899999999544,-0.06862424270128176 +17999,89.9949999999544,-0.06862423396551999 +18000,89.9999999999544,-0.06862422523287902 +18001,90.00499999995439,-0.06862421650335783 +18002,90.00999999995439,-0.06862420777695545 +18003,90.01499999995438,-0.06862419905367087 +18004,90.01999999995438,-0.0686241903335031 +18005,90.02499999995437,-0.06862418161645115 +18006,90.02999999995437,-0.068624172902514 +18007,90.03499999995437,-0.0686241641916907 +18008,90.03999999995436,-0.06862415548398025 +18009,90.04499999995436,-0.06862414677938164 +18010,90.04999999995435,-0.06862413807789386 +18011,90.05499999995435,-0.06862412937951595 +18012,90.05999999995434,-0.0686241206842469 +18013,90.06499999995434,-0.06862411199208573 +18014,90.06999999995433,-0.06862410330303145 +18015,90.07499999995433,-0.06862409461708306 +18016,90.07999999995432,-0.06862408593423958 +18017,90.08499999995432,-0.0686240772545 +18018,90.08999999995432,-0.06862406857786334 +18019,90.09499999995431,-0.06862405990432861 +18020,90.0999999999543,-0.06862405123389484 +18021,90.1049999999543,-0.068624042566561 +18022,90.1099999999543,-0.06862403390232613 +18023,90.11499999995429,-0.06862402524118924 +18024,90.11999999995429,-0.06862401658314934 +18025,90.12499999995428,-0.06862400792820544 +18026,90.12999999995428,-0.06862399927635655 +18027,90.13499999995427,-0.06862399062760169 +18028,90.13999999995427,-0.06862398198193985 +18029,90.14499999995427,-0.06862397333937006 +18030,90.14999999995426,-0.06862396469989135 +18031,90.15499999995426,-0.0686239560635027 +18032,90.15999999995425,-0.06862394743020316 +18033,90.16499999995425,-0.06862393879999172 +18034,90.16999999995424,-0.0686239301728674 +18035,90.17499999995424,-0.06862392154882922 +18036,90.17999999995423,-0.06862391292787617 +18037,90.18499999995423,-0.06862390431000731 +18038,90.18999999995422,-0.06862389569522162 +18039,90.19499999995422,-0.06862388708351815 +18040,90.19999999995422,-0.06862387847489587 +18041,90.20499999995421,-0.06862386986935384 +18042,90.2099999999542,-0.06862386126689106 +18043,90.2149999999542,-0.06862385266750652 +18044,90.2199999999542,-0.06862384407119929 +18045,90.22499999995419,-0.06862383547796835 +18046,90.22999999995419,-0.06862382688781274 +18047,90.23499999995418,-0.06862381830073146 +18048,90.23999999995418,-0.06862380971672355 +18049,90.24499999995417,-0.068623801135788 +18050,90.24999999995417,-0.06862379255792386 +18051,90.25499999995417,-0.06862378398313014 +18052,90.25999999995416,-0.06862377541140585 +18053,90.26499999995416,-0.06862376684275001 +18054,90.26999999995415,-0.06862375827716168 +18055,90.27499999995415,-0.06862374971463982 +18056,90.27999999995414,-0.06862374115518348 +18057,90.28499999995414,-0.06862373259879169 +18058,90.28999999995413,-0.06862372404546346 +18059,90.29499999995413,-0.06862371549519783 +18060,90.29999999995412,-0.0686237069479938 +18061,90.30499999995412,-0.0686236984038504 +18062,90.30999999995412,-0.06862368986276665 +18063,90.31499999995411,-0.0686236813247416 +18064,90.3199999999541,-0.06862367278977423 +18065,90.3249999999541,-0.06862366425786359 +18066,90.3299999999541,-0.06862365572900872 +18067,90.33499999995409,-0.06862364720320863 +18068,90.33999999995409,-0.06862363868046233 +18069,90.34499999995408,-0.06862363016076885 +18070,90.34999999995408,-0.06862362164412722 +18071,90.35499999995407,-0.06862361313053646 +18072,90.35999999995407,-0.0686236046199956 +18073,90.36499999995407,-0.0686235961125037 +18074,90.36999999995406,-0.06862358760805973 +18075,90.37499999995406,-0.06862357910666275 +18076,90.37999999995405,-0.06862357060831178 +18077,90.38499999995405,-0.06862356211300585 +18078,90.38999999995404,-0.06862355362074399 +18079,90.39499999995404,-0.06862354513152522 +18080,90.39999999995403,-0.06862353664534858 +18081,90.40499999995403,-0.0686235281622131 +18082,90.40999999995402,-0.06862351968211777 +18083,90.41499999995402,-0.06862351120506167 +18084,90.41999999995402,-0.06862350273104381 +18085,90.42499999995401,-0.06862349426006323 +18086,90.429999999954,-0.06862348579211892 +18087,90.434999999954,-0.06862347732720997 +18088,90.439999999954,-0.06862346886533537 +18089,90.44499999995399,-0.06862346040649417 +18090,90.44999999995399,-0.06862345195068538 +18091,90.45499999995398,-0.06862344349790805 +18092,90.45999999995398,-0.06862343504816122 +18093,90.46499999995397,-0.06862342660144391 +18094,90.46999999995397,-0.06862341815775516 +18095,90.47499999995397,-0.06862340971709398 +18096,90.47999999995396,-0.06862340127945943 +18097,90.48499999995396,-0.06862339284485053 +18098,90.48999999995395,-0.06862338441326632 +18099,90.49499999995395,-0.06862337598470583 +18100,90.49999999995394,-0.0686233675591681 +18101,90.50499999995394,-0.06862335913665216 +18102,90.50999999995393,-0.06862335071715704 +18103,90.51499999995393,-0.06862334230068179 +18104,90.51999999995392,-0.06862333388722543 +18105,90.52499999995392,-0.068623325476787 +18106,90.52999999995392,-0.06862331706936554 +18107,90.53499999995391,-0.0686233086649601 +18108,90.5399999999539,-0.06862330026356969 +18109,90.5449999999539,-0.06862329186519336 +18110,90.5499999999539,-0.06862328346983015 +18111,90.55499999995389,-0.06862327507747909 +18112,90.55999999995389,-0.06862326668813923 +18113,90.56499999995388,-0.0686232583018096 +18114,90.56999999995388,-0.06862324991848924 +18115,90.57499999995387,-0.06862324153817718 +18116,90.57999999995387,-0.06862323316087247 +18117,90.58499999995387,-0.06862322478657416 +18118,90.58999999995386,-0.06862321641528127 +18119,90.59499999995386,-0.06862320804699285 +18120,90.59999999995385,-0.06862319968170794 +18121,90.60499999995385,-0.06862319131942556 +18122,90.60999999995384,-0.06862318296014479 +18123,90.61499999995384,-0.06862317460386465 +18124,90.61999999995383,-0.06862316625058416 +18125,90.62499999995383,-0.0686231579003024 +18126,90.62999999995382,-0.06862314955301839 +18127,90.63499999995382,-0.06862314120873118 +18128,90.63999999995382,-0.06862313286743982 +18129,90.64499999995381,-0.06862312452914335 +18130,90.6499999999538,-0.06862311619384079 +18131,90.6549999999538,-0.06862310786153121 +18132,90.6599999999538,-0.06862309953221364 +18133,90.66499999995379,-0.06862309120588714 +18134,90.66999999995379,-0.06862308288255073 +18135,90.67499999995378,-0.06862307456220348 +18136,90.67999999995378,-0.06862306624484442 +18137,90.68499999995377,-0.0686230579304726 +18138,90.68999999995377,-0.06862304961908706 +18139,90.69499999995377,-0.06862304131068687 +18140,90.69999999995376,-0.06862303300527105 +18141,90.70499999995376,-0.06862302470283864 +18142,90.70999999995375,-0.0686230164033887 +18143,90.71499999995375,-0.06862300810692029 +18144,90.71999999995374,-0.06862299981343245 +18145,90.72499999995374,-0.06862299152292421 +18146,90.72999999995373,-0.06862298323539463 +18147,90.73499999995373,-0.06862297495084276 +18148,90.73999999995372,-0.06862296666926766 +18149,90.74499999995372,-0.06862295839066836 +18150,90.74999999995372,-0.06862295011504391 +18151,90.75499999995371,-0.06862294184239336 +18152,90.7599999999537,-0.06862293357271579 +18153,90.7649999999537,-0.0686229253060102 +18154,90.7699999999537,-0.06862291704227567 +18155,90.77499999995369,-0.06862290878151125 +18156,90.77999999995369,-0.068622900523716 +18157,90.78499999995368,-0.06862289226888894 +18158,90.78999999995368,-0.06862288401702915 +18159,90.79499999995367,-0.06862287576813567 +18160,90.79999999995367,-0.06862286752220756 +18161,90.80499999995367,-0.06862285927924386 +18162,90.80999999995366,-0.06862285103924362 +18163,90.81499999995366,-0.0686228428022059 +18164,90.81999999995365,-0.06862283456812976 +18165,90.82499999995365,-0.06862282633701425 +18166,90.82999999995364,-0.06862281810885842 +18167,90.83499999995364,-0.06862280988366133 +18168,90.83999999995363,-0.06862280166142203 +18169,90.84499999995363,-0.06862279344213958 +18170,90.84999999995362,-0.06862278522581304 +18171,90.85499999995362,-0.06862277701244143 +18172,90.85999999995362,-0.06862276880202384 +18173,90.86499999995361,-0.06862276059455932 +18174,90.8699999999536,-0.06862275239004693 +18175,90.8749999999536,-0.06862274418848571 +18176,90.8799999999536,-0.06862273598987473 +18177,90.88499999995359,-0.06862272779421304 +18178,90.88999999995359,-0.0686227196014997 +18179,90.89499999995358,-0.06862271141173377 +18180,90.89999999995358,-0.06862270322491432 +18181,90.90499999995357,-0.06862269504104039 +18182,90.90999999995357,-0.06862268686011103 +18183,90.91499999995357,-0.06862267868212532 +18184,90.91999999995356,-0.06862267050708232 +18185,90.92499999995356,-0.06862266233498107 +18186,90.92999999995355,-0.06862265416582065 +18187,90.93499999995355,-0.0686226459996001 +18188,90.93999999995354,-0.06862263783631849 +18189,90.94499999995354,-0.06862262967597488 +18190,90.94999999995353,-0.06862262151856832 +18191,90.95499999995353,-0.0686226133640979 +18192,90.95999999995352,-0.06862260521256267 +18193,90.96499999995352,-0.06862259706396166 +18194,90.96999999995352,-0.06862258891829397 +18195,90.97499999995351,-0.06862258077555866 +18196,90.9799999999535,-0.06862257263575477 +18197,90.9849999999535,-0.06862256449888139 +18198,90.9899999999535,-0.06862255636493755 +18199,90.99499999995349,-0.06862254823392235 +18200,90.99999999995349,-0.06862254010583482 +18201,91.00499999995348,-0.06862253198067404 +18202,91.00999999995348,-0.06862252385843909 +18203,91.01499999995347,-0.068622515739129 +18204,91.01999999995347,-0.06862250762274286 +18205,91.02499999995347,-0.06862249950927972 +18206,91.02999999995346,-0.06862249139873866 +18207,91.03499999995346,-0.06862248329111874 +18208,91.03999999995345,-0.06862247518641902 +18209,91.04499999995345,-0.06862246708463858 +18210,91.04999999995344,-0.06862245898577646 +18211,91.05499999995344,-0.06862245088983175 +18212,91.05999999995343,-0.06862244279680353 +18213,91.06499999995343,-0.06862243470669083 +18214,91.06999999995342,-0.06862242661949275 +18215,91.07499999995342,-0.06862241853520833 +18216,91.07999999995342,-0.06862241045383666 +18217,91.08499999995341,-0.0686224023753768 +18218,91.0899999999534,-0.06862239429982782 +18219,91.0949999999534,-0.06862238622718879 +18220,91.0999999999534,-0.06862237815745877 +18221,91.10499999995339,-0.06862237009063685 +18222,91.10999999995339,-0.06862236202672209 +18223,91.11499999995338,-0.06862235396571355 +18224,91.11999999995338,-0.06862234590761031 +18225,91.12499999995337,-0.06862233785241145 +18226,91.12999999995337,-0.06862232980011602 +18227,91.13499999995337,-0.06862232175072311 +18228,91.13999999995336,-0.06862231370423177 +18229,91.14499999995336,-0.0686223056606411 +18230,91.14999999995335,-0.06862229761995016 +18231,91.15499999995335,-0.06862228958215802 +18232,91.15999999995334,-0.06862228154726376 +18233,91.16499999995334,-0.06862227351526642 +18234,91.16999999995333,-0.06862226548616512 +18235,91.17499999995333,-0.06862225745995892 +18236,91.17999999995332,-0.06862224943664688 +18237,91.18499999995332,-0.06862224141622808 +18238,91.18999999995332,-0.06862223339870159 +18239,91.19499999995331,-0.06862222538406651 +18240,91.1999999999533,-0.06862221737232188 +18241,91.2049999999533,-0.06862220936346682 +18242,91.2099999999533,-0.06862220135750034 +18243,91.21499999995329,-0.06862219335442157 +18244,91.21999999995329,-0.06862218535422958 +18245,91.22499999995328,-0.06862217735692341 +18246,91.22999999995328,-0.06862216936250219 +18247,91.23499999995327,-0.06862216137096497 +18248,91.23999999995327,-0.06862215338231081 +18249,91.24499999995327,-0.06862214539653881 +18250,91.24999999995326,-0.06862213741364805 +18251,91.25499999995326,-0.0686221294336376 +18252,91.25999999995325,-0.06862212145650654 +18253,91.26499999995325,-0.06862211348225394 +18254,91.26999999995324,-0.0686221055108789 +18255,91.27499999995324,-0.06862209754238048 +18256,91.27999999995323,-0.06862208957675776 +18257,91.28499999995323,-0.06862208161400983 +18258,91.28999999995322,-0.06862207365413578 +18259,91.29499999995322,-0.06862206569713468 +18260,91.29999999995322,-0.0686220577430056 +18261,91.30499999995321,-0.06862204979174763 +18262,91.3099999999532,-0.06862204184335985 +18263,91.3149999999532,-0.06862203389784136 +18264,91.3199999999532,-0.0686220259551912 +18265,91.32499999995319,-0.06862201801540847 +18266,91.32999999995319,-0.06862201007849227 +18267,91.33499999995318,-0.06862200214444167 +18268,91.33999999995318,-0.06862199421325577 +18269,91.34499999995317,-0.06862198628493361 +18270,91.34999999995317,-0.06862197835947433 +18271,91.35499999995317,-0.06862197043687697 +18272,91.35999999995316,-0.06862196251714063 +18273,91.36499999995316,-0.0686219546002644 +18274,91.36999999995315,-0.06862194668624735 +18275,91.37499999995315,-0.06862193877508858 +18276,91.37999999995314,-0.06862193086678717 +18277,91.38499999995314,-0.06862192296134219 +18278,91.38999999995313,-0.06862191505875276 +18279,91.39499999995313,-0.06862190715901793 +18280,91.39999999995312,-0.06862189926213683 +18281,91.40499999995312,-0.06862189136810849 +18282,91.40999999995311,-0.06862188347693204 +18283,91.41499999995311,-0.06862187558860655 +18284,91.4199999999531,-0.06862186770313111 +18285,91.4249999999531,-0.06862185982050481 +18286,91.4299999999531,-0.06862185194072674 +18287,91.43499999995309,-0.068621844063796 +18288,91.43999999995309,-0.06862183618971164 +18289,91.44499999995308,-0.06862182831847279 +18290,91.44999999995308,-0.0686218204500785 +18291,91.45499999995307,-0.0686218125845279 +18292,91.45999999995307,-0.06862180472182006 +18293,91.46499999995306,-0.06862179686195406 +18294,91.46999999995306,-0.06862178900492902 +18295,91.47499999995306,-0.06862178115074401 +18296,91.47999999995305,-0.0686217732993981 +18297,91.48499999995305,-0.06862176545089042 +18298,91.48999999995304,-0.06862175760522006 +18299,91.49499999995304,-0.06862174976238608 +18300,91.49999999995303,-0.06862174192238758 +18301,91.50499999995303,-0.06862173408522368 +18302,91.50999999995302,-0.06862172625089345 +18303,91.51499999995302,-0.06862171841939599 +18304,91.51999999995301,-0.06862171059073038 +18305,91.52499999995301,-0.06862170276489575 +18306,91.529999999953,-0.06862169494189115 +18307,91.534999999953,-0.0686216871217157 +18308,91.539999999953,-0.06862167930436847 +18309,91.54499999995299,-0.06862167148984859 +18310,91.54999999995299,-0.06862166367815511 +18311,91.55499999995298,-0.06862165586928717 +18312,91.55999999995298,-0.06862164806324383 +18313,91.56499999995297,-0.06862164026002422 +18314,91.56999999995297,-0.06862163245962741 +18315,91.57499999995296,-0.0686216246620525 +18316,91.57999999995296,-0.06862161686729859 +18317,91.58499999995296,-0.06862160907536477 +18318,91.58999999995295,-0.06862160128625015 +18319,91.59499999995295,-0.06862159349995382 +18320,91.59999999995294,-0.06862158571647488 +18321,91.60499999995294,-0.06862157793581243 +18322,91.60999999995293,-0.06862157015796555 +18323,91.61499999995293,-0.06862156238293336 +18324,91.61999999995292,-0.06862155461071495 +18325,91.62499999995292,-0.06862154684130943 +18326,91.62999999995291,-0.06862153907471588 +18327,91.63499999995291,-0.06862153131093342 +18328,91.6399999999529,-0.06862152354996112 +18329,91.6449999999529,-0.06862151579179812 +18330,91.6499999999529,-0.06862150803644348 +18331,91.65499999995289,-0.06862150028389634 +18332,91.65999999995289,-0.06862149253415577 +18333,91.66499999995288,-0.06862148478722088 +18334,91.66999999995288,-0.06862147704309078 +18335,91.67499999995287,-0.06862146930176455 +18336,91.67999999995287,-0.06862146156324131 +18337,91.68499999995286,-0.06862145382752018 +18338,91.68999999995286,-0.06862144609460022 +18339,91.69499999995286,-0.06862143836448055 +18340,91.69999999995285,-0.0686214306371603 +18341,91.70499999995285,-0.06862142291263852 +18342,91.70999999995284,-0.06862141519091436 +18343,91.71499999995284,-0.06862140747198692 +18344,91.71999999995283,-0.06862139975585528 +18345,91.72499999995283,-0.06862139204251856 +18346,91.72999999995282,-0.06862138433197587 +18347,91.73499999995282,-0.06862137662422631 +18348,91.73999999995281,-0.06862136891926895 +18349,91.74499999995281,-0.06862136121710297 +18350,91.7499999999528,-0.0686213535177274 +18351,91.7549999999528,-0.0686213458211414 +18352,91.7599999999528,-0.06862133812734406 +18353,91.76499999995279,-0.06862133043633448 +18354,91.76999999995279,-0.06862132274811177 +18355,91.77499999995278,-0.06862131506267502 +18356,91.77999999995278,-0.06862130738002337 +18357,91.78499999995277,-0.0686212997001559 +18358,91.78999999995277,-0.06862129202307175 +18359,91.79499999995276,-0.06862128434876999 +18360,91.79999999995276,-0.06862127667724975 +18361,91.80499999995276,-0.06862126900851015 +18362,91.80999999995275,-0.06862126134255028 +18363,91.81499999995275,-0.06862125367936926 +18364,91.81999999995274,-0.06862124601896619 +18365,91.82499999995274,-0.06862123836134018 +18366,91.82999999995273,-0.06862123070649034 +18367,91.83499999995273,-0.0686212230544158 +18368,91.83999999995272,-0.06862121540511565 +18369,91.84499999995272,-0.06862120775858901 +18370,91.84999999995271,-0.06862120011483498 +18371,91.85499999995271,-0.06862119247385269 +18372,91.8599999999527,-0.06862118483564124 +18373,91.8649999999527,-0.06862117720019972 +18374,91.8699999999527,-0.06862116956752728 +18375,91.87499999995269,-0.06862116193762305 +18376,91.87999999995269,-0.06862115431048608 +18377,91.88499999995268,-0.06862114668611552 +18378,91.88999999995268,-0.06862113906451049 +18379,91.89499999995267,-0.06862113144567009 +18380,91.89999999995267,-0.06862112382959343 +18381,91.90499999995266,-0.06862111621627963 +18382,91.90999999995266,-0.06862110860572782 +18383,91.91499999995266,-0.06862110099793708 +18384,91.91999999995265,-0.06862109339290656 +18385,91.92499999995265,-0.06862108579063536 +18386,91.92999999995264,-0.06862107819112259 +18387,91.93499999995264,-0.06862107059436738 +18388,91.93999999995263,-0.06862106300036884 +18389,91.94499999995263,-0.06862105540912607 +18390,91.94999999995262,-0.06862104782063821 +18391,91.95499999995262,-0.06862104023490437 +18392,91.95999999995261,-0.06862103265192367 +18393,91.96499999995261,-0.06862102507169524 +18394,91.9699999999526,-0.06862101749421816 +18395,91.9749999999526,-0.06862100991949158 +18396,91.9799999999526,-0.06862100234751459 +18397,91.98499999995259,-0.06862099477828634 +18398,91.98999999995259,-0.06862098721180596 +18399,91.99499999995258,-0.06862097964807252 +18400,91.99999999995258,-0.06862097208708517 +18401,92.00499999995257,-0.06862096452884303 +18402,92.00999999995257,-0.06862095697334522 +18403,92.01499999995256,-0.06862094942059085 +18404,92.01999999995256,-0.06862094187057904 +18405,92.02499999995256,-0.06862093432330893 +18406,92.02999999995255,-0.06862092677877962 +18407,92.03499999995255,-0.06862091923699024 +18408,92.03999999995254,-0.06862091169793991 +18409,92.04499999995254,-0.06862090416162774 +18410,92.04999999995253,-0.06862089662805287 +18411,92.05499999995253,-0.06862088909721444 +18412,92.05999999995252,-0.06862088156911152 +18413,92.06499999995252,-0.06862087404374327 +18414,92.06999999995251,-0.06862086652110881 +18415,92.07499999995251,-0.06862085900120726 +18416,92.0799999999525,-0.06862085148403776 +18417,92.0849999999525,-0.0686208439695994 +18418,92.0899999999525,-0.06862083645789133 +18419,92.09499999995249,-0.06862082894891267 +18420,92.09999999995249,-0.06862082144266253 +18421,92.10499999995248,-0.06862081393914005 +18422,92.10999999995248,-0.06862080643834437 +18423,92.11499999995247,-0.06862079894027456 +18424,92.11999999995247,-0.06862079144492983 +18425,92.12499999995246,-0.06862078395230922 +18426,92.12999999995246,-0.06862077646241192 +18427,92.13499999995246,-0.06862076897523703 +18428,92.13999999995245,-0.06862076149078368 +18429,92.14499999995245,-0.068620754009051 +18430,92.14999999995244,-0.06862074653003811 +18431,92.15499999995244,-0.06862073905374415 +18432,92.15999999995243,-0.06862073158016824 +18433,92.16499999995243,-0.06862072410930951 +18434,92.16999999995242,-0.06862071664116708 +18435,92.17499999995242,-0.06862070917574009 +18436,92.17999999995241,-0.06862070171302767 +18437,92.18499999995241,-0.06862069425302894 +18438,92.1899999999524,-0.06862068679574305 +18439,92.1949999999524,-0.06862067934116911 +18440,92.1999999999524,-0.06862067188930625 +18441,92.20499999995239,-0.06862066444015362 +18442,92.20999999995239,-0.06862065699371032 +18443,92.21499999995238,-0.06862064954997552 +18444,92.21999999995238,-0.06862064210894832 +18445,92.22499999995237,-0.06862063467062786 +18446,92.22999999995237,-0.06862062723501326 +18447,92.23499999995236,-0.06862061980210368 +18448,92.23999999995236,-0.06862061237189823 +18449,92.24499999995236,-0.06862060494439606 +18450,92.24999999995235,-0.0686205975195963 +18451,92.25499999995235,-0.06862059009749807 +18452,92.25999999995234,-0.0686205826781005 +18453,92.26499999995234,-0.06862057526140275 +18454,92.26999999995233,-0.06862056784740393 +18455,92.27499999995233,-0.06862056043610319 +18456,92.27999999995232,-0.06862055302749966 +18457,92.28499999995232,-0.06862054562159246 +18458,92.28999999995231,-0.06862053821838072 +18459,92.29499999995231,-0.06862053081786362 +18460,92.2999999999523,-0.06862052342004026 +18461,92.3049999999523,-0.06862051602490978 +18462,92.3099999999523,-0.06862050863247131 +18463,92.31499999995229,-0.06862050124272402 +18464,92.31999999995229,-0.06862049385566701 +18465,92.32499999995228,-0.06862048647129942 +18466,92.32999999995228,-0.06862047908962042 +18467,92.33499999995227,-0.0686204717106291 +18468,92.33999999995227,-0.06862046433432464 +18469,92.34499999995226,-0.06862045696070615 +18470,92.34999999995226,-0.06862044958977279 +18471,92.35499999995226,-0.06862044222152368 +18472,92.35999999995225,-0.06862043485595795 +18473,92.36499999995225,-0.06862042749307477 +18474,92.36999999995224,-0.06862042013287327 +18475,92.37499999995224,-0.06862041277535258 +18476,92.37999999995223,-0.06862040542051183 +18477,92.38499999995223,-0.06862039806835019 +18478,92.38999999995222,-0.06862039071886677 +18479,92.39499999995222,-0.06862038337206074 +18480,92.39999999995221,-0.06862037602793121 +18481,92.40499999995221,-0.06862036868647735 +18482,92.4099999999522,-0.06862036134769828 +18483,92.4149999999522,-0.06862035401159315 +18484,92.4199999999522,-0.0686203466781611 +18485,92.42499999995219,-0.06862033934740129 +18486,92.42999999995219,-0.06862033201931282 +18487,92.43499999995218,-0.06862032469389488 +18488,92.43999999995218,-0.0686203173711466 +18489,92.44499999995217,-0.0686203100510671 +18490,92.44999999995217,-0.06862030273365553 +18491,92.45499999995216,-0.06862029541891106 +18492,92.45999999995216,-0.06862028810683281 +18493,92.46499999995216,-0.06862028079741993 +18494,92.46999999995215,-0.06862027349067157 +18495,92.47499999995215,-0.06862026618658686 +18496,92.47999999995214,-0.06862025888516496 +18497,92.48499999995214,-0.06862025158640501 +18498,92.48999999995213,-0.06862024429030618 +18499,92.49499999995213,-0.06862023699686758 +18500,92.49999999995212,-0.06862022970608836 +18501,92.50499999995212,-0.06862022241796767 +18502,92.50999999995211,-0.06862021513250467 +18503,92.51499999995211,-0.06862020784969851 +18504,92.5199999999521,-0.06862020056954832 +18505,92.5249999999521,-0.06862019329205325 +18506,92.5299999999521,-0.06862018601721245 +18507,92.53499999995209,-0.06862017874502507 +18508,92.53999999995209,-0.06862017147549027 +18509,92.54499999995208,-0.06862016420860718 +18510,92.54999999995208,-0.06862015694437495 +18511,92.55499999995207,-0.06862014968279274 +18512,92.55999999995207,-0.06862014242385969 +18513,92.56499999995206,-0.06862013516757495 +18514,92.56999999995206,-0.06862012791393768 +18515,92.57499999995206,-0.06862012066294702 +18516,92.57999999995205,-0.06862011341460211 +18517,92.58499999995205,-0.06862010616890214 +18518,92.58999999995204,-0.06862009892584622 +18519,92.59499999995204,-0.06862009168543352 +18520,92.59999999995203,-0.0686200844476632 +18521,92.60499999995203,-0.06862007721253437 +18522,92.60999999995202,-0.06862006998004623 +18523,92.61499999995202,-0.0686200627501979 +18524,92.61999999995201,-0.06862005552298857 +18525,92.62499999995201,-0.06862004829841736 +18526,92.629999999952,-0.06862004107648344 +18527,92.634999999952,-0.06862003385718593 +18528,92.639999999952,-0.06862002664052402 +18529,92.64499999995199,-0.06862001942649686 +18530,92.64999999995199,-0.06862001221510358 +18531,92.65499999995198,-0.06862000500634337 +18532,92.65999999995198,-0.06861999780021534 +18533,92.66499999995197,-0.0686199905967187 +18534,92.66999999995197,-0.06861998339585255 +18535,92.67499999995196,-0.06861997619761609 +18536,92.67999999995196,-0.06861996900200845 +18537,92.68499999995196,-0.06861996180902878 +18538,92.68999999995195,-0.06861995461867626 +18539,92.69499999995195,-0.06861994743095004 +18540,92.69999999995194,-0.06861994024584925 +18541,92.70499999995194,-0.06861993306337308 +18542,92.70999999995193,-0.06861992588352069 +18543,92.71499999995193,-0.06861991870629121 +18544,92.71999999995192,-0.0686199115316838 +18545,92.72499999995192,-0.06861990435969763 +18546,92.72999999995191,-0.06861989719033186 +18547,92.73499999995191,-0.06861989002358564 +18548,92.7399999999519,-0.06861988285945815 +18549,92.7449999999519,-0.06861987569794852 +18550,92.7499999999519,-0.06861986853905591 +18551,92.75499999995189,-0.0686198613827795 +18552,92.75999999995189,-0.06861985422911844 +18553,92.76499999995188,-0.0686198470780719 +18554,92.76999999995188,-0.06861983992963903 +18555,92.77499999995187,-0.06861983278381899 +18556,92.77999999995187,-0.06861982564061095 +18557,92.78499999995186,-0.06861981850001404 +18558,92.78999999995186,-0.06861981136202747 +18559,92.79499999995186,-0.06861980422665036 +18560,92.79999999995185,-0.0686197970938819 +18561,92.80499999995185,-0.06861978996372123 +18562,92.80999999995184,-0.06861978283616753 +18563,92.81499999995184,-0.06861977571121995 +18564,92.81999999995183,-0.06861976858887765 +18565,92.82499999995183,-0.0686197614691398 +18566,92.82999999995182,-0.06861975435200557 +18567,92.83499999995182,-0.06861974723747413 +18568,92.83999999995181,-0.06861974012554463 +18569,92.84499999995181,-0.06861973301621623 +18570,92.8499999999518,-0.0686197259094881 +18571,92.8549999999518,-0.0686197188053594 +18572,92.8599999999518,-0.0686197117038293 +18573,92.86499999995179,-0.06861970460489697 +18574,92.86999999995179,-0.06861969750856158 +18575,92.87499999995178,-0.06861969041482227 +18576,92.87999999995178,-0.06861968332367824 +18577,92.88499999995177,-0.06861967623512863 +18578,92.88999999995177,-0.06861966914917261 +18579,92.89499999995176,-0.06861966206580936 +18580,92.89999999995176,-0.06861965498503803 +18581,92.90499999995176,-0.06861964790685779 +18582,92.90999999995175,-0.06861964083126781 +18583,92.91499999995175,-0.06861963375826727 +18584,92.91999999995174,-0.06861962668785533 +18585,92.92499999995174,-0.06861961962003116 +18586,92.92999999995173,-0.06861961255479392 +18587,92.93499999995173,-0.06861960549214279 +18588,92.93999999995172,-0.06861959843207692 +18589,92.94499999995172,-0.0686195913745955 +18590,92.94999999995171,-0.0686195843196977 +18591,92.95499999995171,-0.06861957726738267 +18592,92.9599999999517,-0.0686195702176496 +18593,92.9649999999517,-0.06861956317049764 +18594,92.9699999999517,-0.06861955612592599 +18595,92.97499999995169,-0.06861954908393379 +18596,92.97999999995169,-0.06861954204452023 +18597,92.98499999995168,-0.06861953500768447 +18598,92.98999999995168,-0.0686195279734257 +18599,92.99499999995167,-0.06861952094174308 +18600,92.99999999995167,-0.06861951391263577 +18601,93.00499999995166,-0.06861950688610295 +18602,93.00999999995166,-0.06861949986214382 +18603,93.01499999995166,-0.06861949284075751 +18604,93.01999999995165,-0.0686194858219432 +18605,93.02499999995165,-0.06861947880570009 +18606,93.02999999995164,-0.06861947179202733 +18607,93.03499999995164,-0.06861946478092411 +18608,93.03999999995163,-0.06861945777238959 +18609,93.04499999995163,-0.06861945076642297 +18610,93.04999999995162,-0.06861944376302338 +18611,93.05499999995162,-0.06861943676219004 +18612,93.05999999995161,-0.0686194297639221 +18613,93.06499999995161,-0.06861942276821874 +18614,93.0699999999516,-0.06861941577507914 +18615,93.0749999999516,-0.06861940878450248 +18616,93.0799999999516,-0.06861940179648793 +18617,93.08499999995159,-0.06861939481103466 +18618,93.08999999995159,-0.06861938782814184 +18619,93.09499999995158,-0.06861938084780868 +18620,93.09999999995158,-0.06861937387003432 +18621,93.10499999995157,-0.06861936689481796 +18622,93.10999999995157,-0.06861935992215877 +18623,93.11499999995156,-0.06861935295205591 +18624,93.11999999995156,-0.06861934598450861 +18625,93.12499999995156,-0.068619339019516 +18626,93.12999999995155,-0.06861933205707729 +18627,93.13499999995155,-0.06861932509719164 +18628,93.13999999995154,-0.06861931813985822 +18629,93.14499999995154,-0.06861931118507623 +18630,93.14999999995153,-0.06861930423284485 +18631,93.15499999995153,-0.06861929728316324 +18632,93.15999999995152,-0.06861929033603059 +18633,93.16499999995152,-0.06861928339144607 +18634,93.16999999995151,-0.06861927644940889 +18635,93.17499999995151,-0.06861926950991822 +18636,93.1799999999515,-0.06861926257297321 +18637,93.1849999999515,-0.06861925563857309 +18638,93.1899999999515,-0.068619248706717 +18639,93.19499999995149,-0.06861924177740415 +18640,93.19999999995149,-0.06861923485063372 +18641,93.20499999995148,-0.06861922792640487 +18642,93.20999999995148,-0.0686192210047168 +18643,93.21499999995147,-0.0686192140855687 +18644,93.21999999995147,-0.06861920716895975 +18645,93.22499999995146,-0.06861920025488913 +18646,93.22999999995146,-0.068619193343356 +18647,93.23499999995146,-0.06861918643435957 +18648,93.23999999995145,-0.06861917952789903 +18649,93.24499999995145,-0.06861917262397356 +18650,93.24999999995144,-0.06861916572258232 +18651,93.25499999995144,-0.06861915882372452 +18652,93.25999999995143,-0.06861915192739934 +18653,93.26499999995143,-0.06861914503360596 +18654,93.26999999995142,-0.06861913814234358 +18655,93.27499999995142,-0.06861913125361135 +18656,93.27999999995141,-0.06861912436740852 +18657,93.28499999995141,-0.06861911748373421 +18658,93.2899999999514,-0.06861911060258766 +18659,93.2949999999514,-0.06861910372396801 +18660,93.2999999999514,-0.06861909684787447 +18661,93.30499999995139,-0.06861908997430624 +18662,93.30999999995139,-0.06861908310326248 +18663,93.31499999995138,-0.06861907623474241 +18664,93.31999999995138,-0.0686190693687452 +18665,93.32499999995137,-0.06861906250527004 +18666,93.32999999995137,-0.06861905564431611 +18667,93.33499999995136,-0.06861904878588261 +18668,93.33999999995136,-0.06861904192996873 +18669,93.34499999995136,-0.06861903507657366 +18670,93.34999999995135,-0.06861902822569657 +18671,93.35499999995135,-0.06861902137733668 +18672,93.35999999995134,-0.06861901453149316 +18673,93.36499999995134,-0.06861900768816522 +18674,93.36999999995133,-0.06861900084735201 +18675,93.37499999995133,-0.06861899400905278 +18676,93.37999999995132,-0.06861898717326666 +18677,93.38499999995132,-0.06861898033999289 +18678,93.38999999995131,-0.06861897350923064 +18679,93.39499999995131,-0.0686189666809791 +18680,93.3999999999513,-0.06861895985523747 +18681,93.4049999999513,-0.06861895303200494 +18682,93.4099999999513,-0.0686189462112807 +18683,93.41499999995129,-0.06861893939306396 +18684,93.41999999995129,-0.06861893257735388 +18685,93.42499999995128,-0.06861892576414969 +18686,93.42999999995128,-0.06861891895345054 +18687,93.43499999995127,-0.06861891214525566 +18688,93.43999999995127,-0.06861890533956423 +18689,93.44499999995126,-0.06861889853637547 +18690,93.44999999995126,-0.06861889173568854 +18691,93.45499999995126,-0.06861888493750265 +18692,93.45999999995125,-0.06861887814181698 +18693,93.46499999995125,-0.06861887134863075 +18694,93.46999999995124,-0.06861886455794314 +18695,93.47499999995124,-0.06861885776975336 +18696,93.47999999995123,-0.0686188509840606 +18697,93.48499999995123,-0.06861884420086405 +18698,93.48999999995122,-0.0686188374201629 +18699,93.49499999995122,-0.06861883064195637 +18700,93.49999999995121,-0.06861882386624363 +18701,93.50499999995121,-0.06861881709302389 +18702,93.5099999999512,-0.06861881032229636 +18703,93.5149999999512,-0.06861880355406022 +18704,93.5199999999512,-0.06861879678831469 +18705,93.52499999995119,-0.06861879002505894 +18706,93.52999999995119,-0.06861878326429219 +18707,93.53499999995118,-0.06861877650601363 +18708,93.53999999995118,-0.06861876975022245 +18709,93.54499999995117,-0.06861876299691787 +18710,93.54999999995117,-0.06861875624609907 +18711,93.55499999995116,-0.06861874949776527 +18712,93.55999999995116,-0.06861874275191565 +18713,93.56499999995116,-0.06861873600854942 +18714,93.56999999995115,-0.06861872926766578 +18715,93.57499999995115,-0.06861872252926395 +18716,93.57999999995114,-0.0686187157933431 +18717,93.58499999995114,-0.06861870905990244 +18718,93.58999999995113,-0.06861870232894118 +18719,93.59499999995113,-0.06861869560045852 +18720,93.59999999995112,-0.06861868887445367 +18721,93.60499999995112,-0.06861868215092581 +18722,93.60999999995111,-0.06861867542987415 +18723,93.61499999995111,-0.06861866871129792 +18724,93.6199999999511,-0.06861866199519628 +18725,93.6249999999511,-0.06861865528156846 +18726,93.6299999999511,-0.06861864857041367 +18727,93.63499999995109,-0.0686186418617311 +18728,93.63999999995109,-0.06861863515551994 +18729,93.64499999995108,-0.06861862845177942 +18730,93.64999999995108,-0.06861862175050873 +18731,93.65499999995107,-0.06861861505170708 +18732,93.65999999995107,-0.06861860835537369 +18733,93.66499999995106,-0.06861860166150772 +18734,93.66999999995106,-0.06861859497010843 +18735,93.67499999995105,-0.068618588281175 +18736,93.67999999995105,-0.06861858159470663 +18737,93.68499999995105,-0.06861857491070254 +18738,93.68999999995104,-0.06861856822916193 +18739,93.69499999995104,-0.068618561550084 +18740,93.69999999995103,-0.06861855487346798 +18741,93.70499999995103,-0.06861854819931304 +18742,93.70999999995102,-0.06861854152761843 +18743,93.71499999995102,-0.06861853485838332 +18744,93.71999999995101,-0.06861852819160694 +18745,93.72499999995101,-0.06861852152728849 +18746,93.729999999951,-0.0686185148654272 +18747,93.734999999951,-0.06861850820602225 +18748,93.739999999951,-0.06861850154907284 +18749,93.74499999995099,-0.06861849489457822 +18750,93.74999999995099,-0.06861848824253758 +18751,93.75499999995098,-0.06861848159295011 +18752,93.75999999995098,-0.06861847494581505 +18753,93.76499999995097,-0.06861846830113161 +18754,93.76999999995097,-0.06861846165889897 +18755,93.77499999995096,-0.06861845501911637 +18756,93.77999999995096,-0.068618448381783 +18757,93.78499999995095,-0.0686184417468981 +18758,93.78999999995095,-0.06861843511446085 +18759,93.79499999995095,-0.06861842848447047 +18760,93.79999999995094,-0.0686184218569262 +18761,93.80499999995094,-0.0686184152318272 +18762,93.80999999995093,-0.06861840860917272 +18763,93.81499999995093,-0.06861840198896196 +18764,93.81999999995092,-0.06861839537119414 +18765,93.82499999995092,-0.06861838875586848 +18766,93.82999999995091,-0.06861838214298417 +18767,93.83499999995091,-0.06861837553254044 +18768,93.8399999999509,-0.0686183689245365 +18769,93.8449999999509,-0.06861836231897156 +18770,93.8499999999509,-0.06861835571584486 +18771,93.85499999995089,-0.06861834911515559 +18772,93.85999999995089,-0.06861834251690296 +18773,93.86499999995088,-0.06861833592108618 +18774,93.86999999995088,-0.06861832932770451 +18775,93.87499999995087,-0.06861832273675711 +18776,93.87999999995087,-0.06861831614824322 +18777,93.88499999995086,-0.06861830956216207 +18778,93.88999999995086,-0.06861830297851286 +18779,93.89499999995085,-0.0686182963972948 +18780,93.89999999995085,-0.06861828981850712 +18781,93.90499999995085,-0.06861828324214904 +18782,93.90999999995084,-0.06861827666821976 +18783,93.91499999995084,-0.06861827009671852 +18784,93.91999999995083,-0.06861826352764451 +18785,93.92499999995083,-0.06861825696099698 +18786,93.92999999995082,-0.06861825039677512 +18787,93.93499999995082,-0.06861824383497817 +18788,93.93999999995081,-0.06861823727560533 +18789,93.94499999995081,-0.06861823071865583 +18790,93.9499999999508,-0.06861822416412888 +18791,93.9549999999508,-0.06861821761202372 +18792,93.9599999999508,-0.06861821106233955 +18793,93.96499999995079,-0.0686182045150756 +18794,93.96999999995079,-0.06861819797023107 +18795,93.97499999995078,-0.0686181914278052 +18796,93.97999999995078,-0.06861818488779721 +18797,93.98499999995077,-0.06861817835020632 +18798,93.98999999995077,-0.06861817181503176 +18799,93.99499999995076,-0.06861816528227273 +18800,93.99999999995076,-0.06861815875192846 +18801,94.00499999995075,-0.06861815222399818 +18802,94.00999999995075,-0.0686181456984811 +18803,94.01499999995075,-0.06861813917537646 +18804,94.01999999995074,-0.06861813265468344 +18805,94.02499999995074,-0.06861812613640134 +18806,94.02999999995073,-0.0686181196205293 +18807,94.03499999995073,-0.06861811310706659 +18808,94.03999999995072,-0.06861810659601243 +18809,94.04499999995072,-0.06861810008736603 +18810,94.04999999995071,-0.06861809358112662 +18811,94.05499999995071,-0.06861808707729344 +18812,94.0599999999507,-0.06861808057586569 +18813,94.0649999999507,-0.0686180740768426 +18814,94.0699999999507,-0.06861806758022342 +18815,94.07499999995069,-0.06861806108600733 +18816,94.07999999995069,-0.06861805459419358 +18817,94.08499999995068,-0.0686180481047814 +18818,94.08999999995068,-0.06861804161777002 +18819,94.09499999995067,-0.06861803513315864 +18820,94.09999999995067,-0.06861802865094652 +18821,94.10499999995066,-0.06861802217113287 +18822,94.10999999995066,-0.06861801569371691 +18823,94.11499999995065,-0.06861800921869787 +18824,94.11999999995065,-0.06861800274607499 +18825,94.12499999995065,-0.06861799627584748 +18826,94.12999999995064,-0.0686179898080146 +18827,94.13499999995064,-0.06861798334257554 +18828,94.13999999995063,-0.06861797687952956 +18829,94.14499999995063,-0.06861797041887584 +18830,94.14999999995062,-0.06861796396061366 +18831,94.15499999995062,-0.06861795750474224 +18832,94.15999999995061,-0.06861795105126078 +18833,94.16499999995061,-0.06861794460016854 +18834,94.1699999999506,-0.06861793815146475 +18835,94.1749999999506,-0.06861793170514861 +18836,94.1799999999506,-0.06861792526121938 +18837,94.18499999995059,-0.06861791881967626 +18838,94.18999999995059,-0.06861791238051852 +18839,94.19499999995058,-0.06861790594374535 +18840,94.19999999995058,-0.06861789950935603 +18841,94.20499999995057,-0.06861789307734974 +18842,94.20999999995057,-0.06861788664772574 +18843,94.21499999995056,-0.06861788022048326 +18844,94.21999999995056,-0.06861787379562152 +18845,94.22499999995055,-0.06861786737313978 +18846,94.22999999995055,-0.06861786095303724 +18847,94.23499999995055,-0.06861785453531315 +18848,94.23999999995054,-0.06861784811996673 +18849,94.24499999995054,-0.06861784170699722 +18850,94.24999999995053,-0.06861783529640388 +18851,94.25499999995053,-0.0686178288881859 +18852,94.25999999995052,-0.06861782248234254 +18853,94.26499999995052,-0.06861781607887302 +18854,94.26999999995051,-0.06861780967777659 +18855,94.27499999995051,-0.06861780327905248 +18856,94.2799999999505,-0.06861779688269992 +18857,94.2849999999505,-0.06861779048871815 +18858,94.2899999999505,-0.0686177840971064 +18859,94.29499999995049,-0.0686177777078639 +18860,94.29999999995049,-0.06861777132098991 +18861,94.30499999995048,-0.06861776493648364 +18862,94.30999999995048,-0.06861775855434434 +18863,94.31499999995047,-0.06861775217457124 +18864,94.31999999995047,-0.06861774579716358 +18865,94.32499999995046,-0.0686177394221206 +18866,94.32999999995046,-0.06861773304944152 +18867,94.33499999995045,-0.0686177266791256 +18868,94.33999999995045,-0.06861772031117208 +18869,94.34499999995045,-0.06861771394558018 +18870,94.34999999995044,-0.06861770758234914 +18871,94.35499999995044,-0.06861770122147821 +18872,94.35999999995043,-0.06861769486296664 +18873,94.36499999995043,-0.06861768850681363 +18874,94.36999999995042,-0.06861768215301843 +18875,94.37499999995042,-0.06861767580158032 +18876,94.37999999995041,-0.0686176694524985 +18877,94.38499999995041,-0.06861766310577222 +18878,94.3899999999504,-0.06861765676140072 +18879,94.3949999999504,-0.06861765041938324 +18880,94.3999999999504,-0.06861764407971901 +18881,94.40499999995039,-0.0686176377424073 +18882,94.40999999995039,-0.06861763140744732 +18883,94.41499999995038,-0.06861762507483833 +18884,94.41999999995038,-0.06861761874457956 +18885,94.42499999995037,-0.06861761241667028 +18886,94.42999999995037,-0.06861760609110967 +18887,94.43499999995036,-0.06861759976789705 +18888,94.43999999995036,-0.06861759344703161 +18889,94.44499999995035,-0.0686175871285126 +18890,94.44999999995035,-0.06861758081233928 +18891,94.45499999995035,-0.06861757449851086 +18892,94.45999999995034,-0.06861756818702662 +18893,94.46499999995034,-0.0686175618778858 +18894,94.46999999995033,-0.06861755557108762 +18895,94.47499999995033,-0.06861754926663134 +18896,94.47999999995032,-0.0686175429645162 +18897,94.48499999995032,-0.06861753666474146 +18898,94.48999999995031,-0.06861753036730635 +18899,94.49499999995031,-0.0686175240722101 +18900,94.4999999999503,-0.06861751777945199 +18901,94.5049999999503,-0.06861751148903125 +18902,94.5099999999503,-0.06861750520094712 +18903,94.51499999995029,-0.06861749891519882 +18904,94.51999999995029,-0.06861749263178565 +18905,94.52499999995028,-0.06861748635070683 +18906,94.52999999995028,-0.06861748007196161 +18907,94.53499999995027,-0.06861747379554924 +18908,94.53999999995027,-0.06861746752146894 +18909,94.54499999995026,-0.06861746124972 +18910,94.54999999995026,-0.06861745498030163 +18911,94.55499999995025,-0.06861744871321311 +18912,94.55999999995025,-0.06861744244845366 +18913,94.56499999995025,-0.06861743618602255 +18914,94.56999999995024,-0.06861742992591902 +18915,94.57499999995024,-0.06861742366814232 +18916,94.57999999995023,-0.06861741741269169 +18917,94.58499999995023,-0.06861741115956638 +18918,94.58999999995022,-0.06861740490876565 +18919,94.59499999995022,-0.06861739866028876 +18920,94.59999999995021,-0.06861739241413495 +18921,94.60499999995021,-0.06861738617030345 +18922,94.6099999999502,-0.06861737992879352 +18923,94.6149999999502,-0.06861737368960444 +18924,94.6199999999502,-0.06861736745273542 +18925,94.62499999995019,-0.06861736121818574 +18926,94.62999999995019,-0.06861735498595462 +18927,94.63499999995018,-0.06861734875604134 +18928,94.63999999995018,-0.06861734252844515 +18929,94.64499999995017,-0.06861733630316529 +18930,94.64999999995017,-0.06861733008020102 +18931,94.65499999995016,-0.06861732385955158 +18932,94.65999999995016,-0.06861731764121623 +18933,94.66499999995015,-0.06861731142519423 +18934,94.66999999995015,-0.06861730521148483 +18935,94.67499999995015,-0.06861729900008728 +18936,94.67999999995014,-0.06861729279100084 +18937,94.68499999995014,-0.06861728658422478 +18938,94.68999999995013,-0.0686172803797583 +18939,94.69499999995013,-0.06861727417760069 +18940,94.69999999995012,-0.06861726797775121 +18941,94.70499999995012,-0.0686172617802091 +18942,94.70999999995011,-0.06861725558497364 +18943,94.71499999995011,-0.06861724939204406 +18944,94.7199999999501,-0.06861724320141961 +18945,94.7249999999501,-0.06861723701309957 +18946,94.7299999999501,-0.06861723082708318 +18947,94.73499999995009,-0.0686172246433697 +18948,94.73999999995009,-0.06861721846195838 +18949,94.74499999995008,-0.0686172122828485 +18950,94.74999999995008,-0.06861720610603929 +18951,94.75499999995007,-0.06861719993153002 +18952,94.75999999995007,-0.06861719375931995 +18953,94.76499999995006,-0.06861718758940832 +18954,94.76999999995006,-0.0686171814217944 +18955,94.77499999995005,-0.06861717525647745 +18956,94.77999999995005,-0.06861716909345672 +18957,94.78499999995005,-0.06861716293273148 +18958,94.78999999995004,-0.068617156774301 +18959,94.79499999995004,-0.06861715061816451 +18960,94.79999999995003,-0.06861714446432127 +18961,94.80499999995003,-0.06861713831277055 +18962,94.80999999995002,-0.06861713216351162 +18963,94.81499999995002,-0.06861712601654373 +18964,94.81999999995001,-0.06861711987186613 +18965,94.82499999995001,-0.06861711372947808 +18966,94.82999999995,-0.06861710758937886 +18967,94.83499999995,-0.06861710145156773 +18968,94.83999999995,-0.06861709531604393 +18969,94.84499999994999,-0.06861708918280673 +18970,94.84999999994999,-0.0686170830518554 +18971,94.85499999994998,-0.0686170769231892 +18972,94.85999999994998,-0.06861707079680739 +18973,94.86499999994997,-0.06861706467270923 +18974,94.86999999994997,-0.06861705855089398 +18975,94.87499999994996,-0.06861705243136089 +18976,94.87999999994996,-0.06861704631410925 +18977,94.88499999994995,-0.06861704019913831 +18978,94.88999999994995,-0.06861703408644731 +18979,94.89499999994995,-0.06861702797603557 +18980,94.89999999994994,-0.0686170218679023 +18981,94.90499999994994,-0.0686170157620468 +18982,94.90999999994993,-0.06861700965846831 +18983,94.91499999994993,-0.06861700355716611 +18984,94.91999999994992,-0.06861699745813947 +18985,94.92499999994992,-0.06861699136138762 +18986,94.92999999994991,-0.06861698526690985 +18987,94.93499999994991,-0.06861697917470544 +18988,94.9399999999499,-0.06861697308477362 +18989,94.9449999999499,-0.06861696699711368 +18990,94.9499999999499,-0.06861696091172488 +18991,94.95499999994989,-0.06861695482860648 +18992,94.95999999994989,-0.06861694874775776 +18993,94.96499999994988,-0.06861694266917798 +18994,94.96999999994988,-0.0686169365928664 +18995,94.97499999994987,-0.0686169305188223 +18996,94.97999999994987,-0.06861692444704494 +18997,94.98499999994986,-0.06861691837753359 +18998,94.98999999994986,-0.0686169123102875 +18999,94.99499999994985,-0.06861690624530598 +19000,94.99999999994985,-0.06861690018258826 +19001,95.00499999994985,-0.06861689412213362 +19002,95.00999999994984,-0.06861688806394133 +19003,95.01499999994984,-0.06861688200801065 +19004,95.01999999994983,-0.06861687595434085 +19005,95.02499999994983,-0.06861686990293123 +19006,95.02999999994982,-0.06861686385378103 +19007,95.03499999994982,-0.06861685780688952 +19008,95.03999999994981,-0.06861685176225596 +19009,95.04499999994981,-0.06861684571987965 +19010,95.0499999999498,-0.06861683967975984 +19011,95.0549999999498,-0.06861683364189583 +19012,95.0599999999498,-0.06861682760628685 +19013,95.06499999994979,-0.06861682157293218 +19014,95.06999999994979,-0.06861681554183112 +19015,95.07499999994978,-0.06861680951298291 +19016,95.07999999994978,-0.06861680348638684 +19017,95.08499999994977,-0.06861679746204218 +19018,95.08999999994977,-0.06861679143994819 +19019,95.09499999994976,-0.06861678542010415 +19020,95.09999999994976,-0.06861677940250933 +19021,95.10499999994975,-0.06861677338716303 +19022,95.10999999994975,-0.06861676737406448 +19023,95.11499999994975,-0.06861676136321297 +19024,95.11999999994974,-0.06861675535460779 +19025,95.12499999994974,-0.0686167493482482 +19026,95.12999999994973,-0.06861674334413345 +19027,95.13499999994973,-0.06861673734226287 +19028,95.13999999994972,-0.06861673134263568 +19029,95.14499999994972,-0.06861672534525119 +19030,95.14999999994971,-0.06861671935010867 +19031,95.15499999994971,-0.06861671335720737 +19032,95.1599999999497,-0.0686167073665466 +19033,95.1649999999497,-0.0686167013781256 +19034,95.1699999999497,-0.06861669539194368 +19035,95.17499999994969,-0.0686166894080001 +19036,95.17999999994969,-0.06861668342629414 +19037,95.18499999994968,-0.06861667744682506 +19038,95.18999999994968,-0.06861667146959216 +19039,95.19499999994967,-0.06861666549459472 +19040,95.19999999994967,-0.06861665952183199 +19041,95.20499999994966,-0.06861665355130328 +19042,95.20999999994966,-0.06861664758300784 +19043,95.21499999994965,-0.06861664161694495 +19044,95.21999999994965,-0.06861663565311389 +19045,95.22499999994965,-0.06861662969151396 +19046,95.22999999994964,-0.0686166237321444 +19047,95.23499999994964,-0.06861661777500452 +19048,95.23999999994963,-0.06861661182009361 +19049,95.24499999994963,-0.06861660586741093 +19050,95.24999999994962,-0.06861659991695573 +19051,95.25499999994962,-0.06861659396872735 +19052,95.25999999994961,-0.06861658802272502 +19053,95.26499999994961,-0.06861658207894805 +19054,95.2699999999496,-0.06861657613739572 +19055,95.2749999999496,-0.06861657019806729 +19056,95.2799999999496,-0.06861656426096203 +19057,95.28499999994959,-0.06861655832607925 +19058,95.28999999994959,-0.06861655239341824 +19059,95.29499999994958,-0.06861654646297825 +19060,95.29999999994958,-0.06861654053475857 +19061,95.30499999994957,-0.0686165346087585 +19062,95.30999999994957,-0.06861652868497731 +19063,95.31499999994956,-0.06861652276341428 +19064,95.31999999994956,-0.0686165168440687 +19065,95.32499999994955,-0.06861651092693984 +19066,95.32999999994955,-0.068616505012027 +19067,95.33499999994955,-0.06861649909932943 +19068,95.33999999994954,-0.06861649318884645 +19069,95.34499999994954,-0.06861648728057733 +19070,95.34999999994953,-0.06861648137452135 +19071,95.35499999994953,-0.06861647547067781 +19072,95.35999999994952,-0.06861646956904598 +19073,95.36499999994952,-0.06861646366962515 +19074,95.36999999994951,-0.0686164577724146 +19075,95.37499999994951,-0.06861645187741361 +19076,95.3799999999495,-0.06861644598462148 +19077,95.3849999999495,-0.06861644009403749 +19078,95.3899999999495,-0.06861643420566091 +19079,95.39499999994949,-0.06861642831949105 +19080,95.39999999994949,-0.06861642243552718 +19081,95.40499999994948,-0.0686164165537686 +19082,95.40999999994948,-0.06861641067421459 +19083,95.41499999994947,-0.06861640479686443 +19084,95.41999999994947,-0.0686163989217174 +19085,95.42499999994946,-0.06861639304877282 +19086,95.42999999994946,-0.06861638717802995 +19087,95.43499999994945,-0.06861638130948808 +19088,95.43999999994945,-0.0686163754431465 +19089,95.44499999994945,-0.0686163695790045 +19090,95.44999999994944,-0.06861636371706138 +19091,95.45499999994944,-0.0686163578573164 +19092,95.45999999994943,-0.06861635199976888 +19093,95.46499999994943,-0.06861634614441808 +19094,95.46999999994942,-0.06861634029126333 +19095,95.47499999994942,-0.06861633444030388 +19096,95.47999999994941,-0.06861632859153903 +19097,95.48499999994941,-0.06861632274496808 +19098,95.4899999999494,-0.0686163169005903 +19099,95.4949999999494,-0.06861631105840499 +19100,95.4999999999494,-0.06861630521841146 +19101,95.50499999994939,-0.06861629938060897 +19102,95.50999999994939,-0.06861629354499682 +19103,95.51499999994938,-0.06861628771157431 +19104,95.51999999994938,-0.06861628188034073 +19105,95.52499999994937,-0.06861627605129539 +19106,95.52999999994937,-0.06861627022443754 +19107,95.53499999994936,-0.06861626439976651 +19108,95.53999999994936,-0.06861625857728156 +19109,95.54499999994935,-0.068616252756982 +19110,95.54999999994935,-0.06861624693886713 +19111,95.55499999994935,-0.06861624112293621 +19112,95.55999999994934,-0.06861623530918859 +19113,95.56499999994934,-0.06861622949762351 +19114,95.56999999994933,-0.06861622368824029 +19115,95.57499999994933,-0.06861621788103821 +19116,95.57999999994932,-0.06861621207601656 +19117,95.58499999994932,-0.06861620627317468 +19118,95.58999999994931,-0.0686162004725118 +19119,95.59499999994931,-0.06861619467402724 +19120,95.5999999999493,-0.06861618887772032 +19121,95.6049999999493,-0.0686161830835903 +19122,95.6099999999493,-0.06861617729163651 +19123,95.61499999994929,-0.06861617150185821 +19124,95.61999999994929,-0.0686161657142547 +19125,95.62499999994928,-0.06861615992882532 +19126,95.62999999994928,-0.0686161541455693 +19127,95.63499999994927,-0.06861614836448598 +19128,95.63999999994927,-0.06861614258557465 +19129,95.64499999994926,-0.0686161368088346 +19130,95.64999999994926,-0.06861613103426513 +19131,95.65499999994925,-0.06861612526186553 +19132,95.65999999994925,-0.06861611949163512 +19133,95.66499999994925,-0.06861611372357318 +19134,95.66999999994924,-0.068616107957679 +19135,95.67499999994924,-0.06861610219395191 +19136,95.67999999994923,-0.06861609643239117 +19137,95.68499999994923,-0.06861609067299608 +19138,95.68999999994922,-0.06861608491576597 +19139,95.69499999994922,-0.06861607916070013 +19140,95.69999999994921,-0.06861607340779784 +19141,95.70499999994921,-0.06861606765705842 +19142,95.7099999999492,-0.06861606190848116 +19143,95.7149999999492,-0.06861605616206536 +19144,95.7199999999492,-0.06861605041781031 +19145,95.72499999994919,-0.06861604467571533 +19146,95.72999999994919,-0.06861603893577971 +19147,95.73499999994918,-0.06861603319800276 +19148,95.73999999994918,-0.06861602746238377 +19149,95.74499999994917,-0.06861602172892205 +19150,95.74999999994917,-0.06861601599761688 +19151,95.75499999994916,-0.06861601026846759 +19152,95.75999999994916,-0.06861600454147347 +19153,95.76499999994915,-0.06861599881663383 +19154,95.76999999994915,-0.06861599309394795 +19155,95.77499999994915,-0.06861598737341515 +19156,95.77999999994914,-0.06861598165503473 +19157,95.78499999994914,-0.06861597593880599 +19158,95.78999999994913,-0.06861597022472823 +19159,95.79499999994913,-0.06861596451280078 +19160,95.79999999994912,-0.0686159588030229 +19161,95.80499999994912,-0.06861595309539394 +19162,95.80999999994911,-0.06861594738991317 +19163,95.81499999994911,-0.06861594168657989 +19164,95.8199999999491,-0.06861593598539342 +19165,95.8249999999491,-0.06861593028635306 +19166,95.8299999999491,-0.06861592458945813 +19167,95.83499999994909,-0.06861591889470792 +19168,95.83999999994909,-0.06861591320210174 +19169,95.84499999994908,-0.06861590751163889 +19170,95.84999999994908,-0.06861590182331867 +19171,95.85499999994907,-0.06861589613714039 +19172,95.85999999994907,-0.06861589045310337 +19173,95.86499999994906,-0.06861588477120692 +19174,95.86999999994906,-0.06861587909145032 +19175,95.87499999994905,-0.0686158734138329 +19176,95.87999999994905,-0.06861586773835396 +19177,95.88499999994904,-0.06861586206501279 +19178,95.88999999994904,-0.06861585639380872 +19179,95.89499999994904,-0.06861585072474106 +19180,95.89999999994903,-0.06861584505780911 +19181,95.90499999994903,-0.06861583939301216 +19182,95.90999999994902,-0.06861583373034955 +19183,95.91499999994902,-0.06861582806982057 +19184,95.91999999994901,-0.06861582241142451 +19185,95.92499999994901,-0.06861581675516072 +19186,95.929999999949,-0.06861581110102849 +19187,95.934999999949,-0.06861580544902712 +19188,95.939999999949,-0.06861579979915593 +19189,95.94499999994899,-0.06861579415141422 +19190,95.94999999994899,-0.06861578850580131 +19191,95.95499999994898,-0.06861578286231652 +19192,95.95999999994898,-0.06861577722095914 +19193,95.96499999994897,-0.06861577158172849 +19194,95.96999999994897,-0.06861576594462389 +19195,95.97499999994896,-0.06861576030964463 +19196,95.97999999994896,-0.06861575467679003 +19197,95.98499999994895,-0.06861574904605941 +19198,95.98999999994895,-0.06861574341745207 +19199,95.99499999994894,-0.06861573779096733 +19200,95.99999999994894,-0.0686157321666045 +19201,96.00499999994894,-0.0686157265443629 +19202,96.00999999994893,-0.06861572092424183 +19203,96.01499999994893,-0.06861571530624061 +19204,96.01999999994892,-0.06861570969035853 +19205,96.02499999994892,-0.06861570407659494 +19206,96.02999999994891,-0.06861569846494914 +19207,96.03499999994891,-0.06861569285542042 +19208,96.0399999999489,-0.06861568724800814 +19209,96.0449999999489,-0.06861568164271156 +19210,96.0499999999489,-0.06861567603953005 +19211,96.05499999994889,-0.06861567043846287 +19212,96.05999999994889,-0.06861566483950939 +19213,96.06499999994888,-0.06861565924266887 +19214,96.06999999994888,-0.06861565364794066 +19215,96.07499999994887,-0.06861564805532408 +19216,96.07999999994887,-0.06861564246481841 +19217,96.08499999994886,-0.068615636876423 +19218,96.08999999994886,-0.06861563129013715 +19219,96.09499999994885,-0.06861562570596016 +19220,96.09999999994885,-0.0686156201238914 +19221,96.10499999994884,-0.06861561454393014 +19222,96.10999999994884,-0.0686156089660757 +19223,96.11499999994884,-0.0686156033903274 +19224,96.11999999994883,-0.06861559781668458 +19225,96.12499999994883,-0.06861559224514654 +19226,96.12999999994882,-0.0686155866757126 +19227,96.13499999994882,-0.06861558110838209 +19228,96.13999999994881,-0.0686155755431543 +19229,96.14499999994881,-0.06861556998002856 +19230,96.1499999999488,-0.06861556441900418 +19231,96.1549999999488,-0.06861555886008051 +19232,96.1599999999488,-0.06861555330325685 +19233,96.16499999994879,-0.06861554774853251 +19234,96.16999999994879,-0.06861554219590682 +19235,96.17499999994878,-0.06861553664537909 +19236,96.17999999994878,-0.06861553109694865 +19237,96.18499999994877,-0.0686155255506148 +19238,96.18999999994877,-0.0686155200063769 +19239,96.19499999994876,-0.06861551446423424 +19240,96.19999999994876,-0.06861550892418615 +19241,96.20499999994875,-0.06861550338623194 +19242,96.20999999994875,-0.06861549785037094 +19243,96.21499999994874,-0.06861549231660248 +19244,96.21999999994874,-0.06861548678492586 +19245,96.22499999994874,-0.06861548125534044 +19246,96.22999999994873,-0.06861547572784547 +19247,96.23499999994873,-0.06861547020244035 +19248,96.23999999994872,-0.06861546467912435 +19249,96.24499999994872,-0.06861545915789684 +19250,96.24999999994871,-0.0686154536387571 +19251,96.25499999994871,-0.06861544812170446 +19252,96.2599999999487,-0.06861544260673826 +19253,96.2649999999487,-0.06861543709385781 +19254,96.2699999999487,-0.06861543158306244 +19255,96.27499999994869,-0.06861542607435146 +19256,96.27999999994869,-0.06861542056772421 +19257,96.28499999994868,-0.06861541506318003 +19258,96.28999999994868,-0.06861540956071821 +19259,96.29499999994867,-0.06861540406033809 +19260,96.29999999994867,-0.06861539856203898 +19261,96.30499999994866,-0.06861539306582023 +19262,96.30999999994866,-0.06861538757168116 +19263,96.31499999994865,-0.06861538207962108 +19264,96.31999999994865,-0.06861537658963932 +19265,96.32499999994864,-0.06861537110173521 +19266,96.32999999994864,-0.06861536561590807 +19267,96.33499999994864,-0.06861536013215726 +19268,96.33999999994863,-0.06861535465048205 +19269,96.34499999994863,-0.0686153491708818 +19270,96.34999999994862,-0.06861534369335584 +19271,96.35499999994862,-0.06861533821790348 +19272,96.35999999994861,-0.06861533274452407 +19273,96.36499999994861,-0.06861532727321691 +19274,96.3699999999486,-0.06861532180398135 +19275,96.3749999999486,-0.06861531633681671 +19276,96.3799999999486,-0.0686153108717223 +19277,96.38499999994859,-0.06861530540869748 +19278,96.38999999994859,-0.06861529994774156 +19279,96.39499999994858,-0.06861529448885388 +19280,96.39999999994858,-0.06861528903203376 +19281,96.40499999994857,-0.06861528357728053 +19282,96.40999999994857,-0.06861527812459352 +19283,96.41499999994856,-0.06861527267397206 +19284,96.41999999994856,-0.06861526722541549 +19285,96.42499999994855,-0.06861526177892312 +19286,96.42999999994855,-0.06861525633449428 +19287,96.43499999994854,-0.06861525089212832 +19288,96.43999999994854,-0.06861524545182457 +19289,96.44499999994854,-0.06861524001358234 +19290,96.44999999994853,-0.06861523457740097 +19291,96.45499999994853,-0.0686152291432798 +19292,96.45999999994852,-0.06861522371121817 +19293,96.46499999994852,-0.06861521828121538 +19294,96.46999999994851,-0.06861521285327078 +19295,96.47499999994851,-0.0686152074273837 +19296,96.4799999999485,-0.06861520200355346 +19297,96.4849999999485,-0.06861519658177943 +19298,96.4899999999485,-0.06861519116206091 +19299,96.49499999994849,-0.06861518574439723 +19300,96.49999999994849,-0.06861518032878776 +19301,96.50499999994848,-0.0686151749152318 +19302,96.50999999994848,-0.06861516950372869 +19303,96.51499999994847,-0.06861516409427774 +19304,96.51999999994847,-0.06861515868687833 +19305,96.52499999994846,-0.06861515328152977 +19306,96.52999999994846,-0.0686151478782314 +19307,96.53499999994845,-0.06861514247698254 +19308,96.53999999994845,-0.06861513707778255 +19309,96.54499999994844,-0.06861513168063074 +19310,96.54999999994844,-0.06861512628552646 +19311,96.55499999994844,-0.06861512089246904 +19312,96.55999999994843,-0.06861511550145782 +19313,96.56499999994843,-0.06861511011249213 +19314,96.56999999994842,-0.06861510472557132 +19315,96.57499999994842,-0.0686150993406947 +19316,96.57999999994841,-0.06861509395786164 +19317,96.58499999994841,-0.06861508857707144 +19318,96.5899999999484,-0.06861508319832346 +19319,96.5949999999484,-0.06861507782161703 +19320,96.5999999999484,-0.0686150724469515 +19321,96.60499999994839,-0.06861506707432619 +19322,96.60999999994839,-0.06861506170374046 +19323,96.61499999994838,-0.0686150563351936 +19324,96.61999999994838,-0.068615050968685 +19325,96.62499999994837,-0.06861504560421397 +19326,96.62999999994837,-0.06861504024177986 +19327,96.63499999994836,-0.06861503488138201 +19328,96.63999999994836,-0.06861502952301976 +19329,96.64499999994835,-0.06861502416669243 +19330,96.64999999994835,-0.06861501881239938 +19331,96.65499999994834,-0.06861501346013994 +19332,96.65999999994834,-0.06861500810991344 +19333,96.66499999994834,-0.06861500276171925 +19334,96.66999999994833,-0.06861499741555668 +19335,96.67499999994833,-0.06861499207142509 +19336,96.67999999994832,-0.0686149867293238 +19337,96.68499999994832,-0.06861498138925216 +19338,96.68999999994831,-0.06861497605120953 +19339,96.69499999994831,-0.06861497071519523 +19340,96.6999999999483,-0.0686149653812086 +19341,96.7049999999483,-0.068614960049249 +19342,96.7099999999483,-0.06861495471931575 +19343,96.71499999994829,-0.0686149493914082 +19344,96.71999999994829,-0.0686149440655257 +19345,96.72499999994828,-0.06861493874166757 +19346,96.72999999994828,-0.06861493341983319 +19347,96.73499999994827,-0.06861492810002186 +19348,96.73999999994827,-0.06861492278223295 +19349,96.74499999994826,-0.0686149174664658 +19350,96.74999999994826,-0.06861491215271975 +19351,96.75499999994825,-0.06861490684099415 +19352,96.75999999994825,-0.06861490153128834 +19353,96.76499999994824,-0.06861489622360165 +19354,96.76999999994824,-0.06861489091793344 +19355,96.77499999994824,-0.06861488561428304 +19356,96.77999999994823,-0.06861488031264981 +19357,96.78499999994823,-0.0686148750130331 +19358,96.78999999994822,-0.06861486971543224 +19359,96.79499999994822,-0.06861486441984657 +19360,96.79999999994821,-0.06861485912627545 +19361,96.80499999994821,-0.06861485383471821 +19362,96.8099999999482,-0.06861484854517423 +19363,96.8149999999482,-0.06861484325764282 +19364,96.8199999999482,-0.06861483797212334 +19365,96.82499999994819,-0.06861483268861512 +19366,96.82999999994819,-0.06861482740711754 +19367,96.83499999994818,-0.06861482212762991 +19368,96.83999999994818,-0.0686148168501516 +19369,96.84499999994817,-0.06861481157468195 +19370,96.84999999994817,-0.06861480630122031 +19371,96.85499999994816,-0.06861480102976604 +19372,96.85999999994816,-0.06861479576031847 +19373,96.86499999994815,-0.06861479049287696 +19374,96.86999999994815,-0.06861478522744084 +19375,96.87499999994814,-0.06861477996400947 +19376,96.87999999994814,-0.06861477470258219 +19377,96.88499999994814,-0.06861476944315836 +19378,96.88999999994813,-0.06861476418573735 +19379,96.89499999994813,-0.06861475893031846 +19380,96.89999999994812,-0.06861475367690108 +19381,96.90499999994812,-0.06861474842548454 +19382,96.90999999994811,-0.0686147431760682 +19383,96.91499999994811,-0.06861473792865139 +19384,96.9199999999481,-0.06861473268323347 +19385,96.9249999999481,-0.06861472743981381 +19386,96.9299999999481,-0.06861472219839174 +19387,96.93499999994809,-0.0686147169589666 +19388,96.93999999994809,-0.06861471172153777 +19389,96.94499999994808,-0.0686147064861046 +19390,96.94999999994808,-0.0686147012526664 +19391,96.95499999994807,-0.06861469602122257 +19392,96.95999999994807,-0.06861469079177245 +19393,96.96499999994806,-0.06861468556431538 +19394,96.96999999994806,-0.06861468033885072 +19395,96.97499999994805,-0.0686146751153778 +19396,96.97999999994805,-0.068614669893896 +19397,96.98499999994804,-0.06861466467440468 +19398,96.98999999994804,-0.06861465945690318 +19399,96.99499999994804,-0.06861465424139082 +19400,96.99999999994803,-0.06861464902786701 +19401,97.00499999994803,-0.06861464381633109 +19402,97.00999999994802,-0.06861463860678238 +19403,97.01499999994802,-0.06861463339922026 +19404,97.01999999994801,-0.0686146281936441 +19405,97.02499999994801,-0.0686146229900532 +19406,97.029999999948,-0.06861461778844698 +19407,97.034999999948,-0.06861461258882476 +19408,97.039999999948,-0.06861460739118588 +19409,97.04499999994799,-0.06861460219552973 +19410,97.04999999994799,-0.06861459700185564 +19411,97.05499999994798,-0.068614591810163 +19412,97.05999999994798,-0.06861458662045113 +19413,97.06499999994797,-0.06861458143271938 +19414,97.06999999994797,-0.06861457624696714 +19415,97.07499999994796,-0.06861457106319374 +19416,97.07999999994796,-0.06861456588139855 +19417,97.08499999994795,-0.06861456070158092 +19418,97.08999999994795,-0.06861455552374023 +19419,97.09499999994794,-0.0686145503478758 +19420,97.09999999994794,-0.068614545173987 +19421,97.10499999994794,-0.0686145400020732 +19422,97.10999999994793,-0.06861453483213376 +19423,97.11499999994793,-0.06861452966416802 +19424,97.11999999994792,-0.06861452449817536 +19425,97.12499999994792,-0.06861451933415512 +19426,97.12999999994791,-0.06861451417210666 +19427,97.13499999994791,-0.06861450901202934 +19428,97.1399999999479,-0.06861450385392252 +19429,97.1449999999479,-0.06861449869778558 +19430,97.1499999999479,-0.06861449354361784 +19431,97.15499999994789,-0.06861448839141869 +19432,97.15999999994789,-0.06861448324118748 +19433,97.16499999994788,-0.06861447809292356 +19434,97.16999999994788,-0.06861447294662631 +19435,97.17499999994787,-0.06861446780229508 +19436,97.17999999994787,-0.06861446265992924 +19437,97.18499999994786,-0.06861445751952812 +19438,97.18999999994786,-0.06861445238109111 +19439,97.19499999994785,-0.06861444724461759 +19440,97.19999999994785,-0.06861444211010687 +19441,97.20499999994784,-0.06861443697755834 +19442,97.20999999994784,-0.06861443184697136 +19443,97.21499999994784,-0.06861442671834529 +19444,97.21999999994783,-0.06861442159167949 +19445,97.22499999994783,-0.06861441646697333 +19446,97.22999999994782,-0.06861441134422618 +19447,97.23499999994782,-0.06861440622343737 +19448,97.23999999994781,-0.0686144011046063 +19449,97.24499999994781,-0.06861439598773231 +19450,97.2499999999478,-0.06861439087281476 +19451,97.2549999999478,-0.06861438575985304 +19452,97.2599999999478,-0.06861438064884649 +19453,97.26499999994779,-0.06861437553979449 +19454,97.26999999994779,-0.06861437043269639 +19455,97.27499999994778,-0.06861436532755157 +19456,97.27999999994778,-0.06861436022435938 +19457,97.28499999994777,-0.06861435512311918 +19458,97.28999999994777,-0.06861435002383036 +19459,97.29499999994776,-0.06861434492649225 +19460,97.29999999994776,-0.06861433983110425 +19461,97.30499999994775,-0.0686143347376657 +19462,97.30999999994775,-0.06861432964617599 +19463,97.31499999994774,-0.06861432455663447 +19464,97.31999999994774,-0.0686143194690405 +19465,97.32499999994774,-0.06861431438339345 +19466,97.32999999994773,-0.0686143092996927 +19467,97.33499999994773,-0.0686143042179376 +19468,97.33999999994772,-0.06861429913812754 +19469,97.34499999994772,-0.06861429406026186 +19470,97.34999999994771,-0.06861428898433994 +19471,97.35499999994771,-0.06861428391036116 +19472,97.3599999999477,-0.06861427883832487 +19473,97.3649999999477,-0.06861427376823044 +19474,97.3699999999477,-0.06861426870007724 +19475,97.37499999994769,-0.06861426363386462 +19476,97.37999999994769,-0.068614258569592 +19477,97.38499999994768,-0.0686142535072587 +19478,97.38999999994768,-0.0686142484468641 +19479,97.39499999994767,-0.06861424338840758 +19480,97.39999999994767,-0.0686142383318885 +19481,97.40499999994766,-0.06861423327730624 +19482,97.40999999994766,-0.06861422822466015 +19483,97.41499999994765,-0.06861422317394962 +19484,97.41999999994765,-0.06861421812517401 +19485,97.42499999994764,-0.06861421307833271 +19486,97.42999999994764,-0.06861420803342506 +19487,97.43499999994764,-0.06861420299045044 +19488,97.43999999994763,-0.06861419794940822 +19489,97.44499999994763,-0.06861419291029779 +19490,97.44999999994762,-0.0686141878731185 +19491,97.45499999994762,-0.06861418283786973 +19492,97.45999999994761,-0.06861417780455084 +19493,97.46499999994761,-0.06861417277316122 +19494,97.4699999999476,-0.06861416774370022 +19495,97.4749999999476,-0.06861416271616724 +19496,97.4799999999476,-0.06861415769056164 +19497,97.48499999994759,-0.06861415266688278 +19498,97.48999999994759,-0.06861414764513006 +19499,97.49499999994758,-0.06861414262530283 +19500,97.49999999994758,-0.06861413760740045 +19501,97.50499999994757,-0.06861413259142234 +19502,97.50999999994757,-0.06861412757736783 +19503,97.51499999994756,-0.06861412256523632 +19504,97.51999999994756,-0.06861411755502717 +19505,97.52499999994755,-0.06861411254673976 +19506,97.52999999994755,-0.06861410754037345 +19507,97.53499999994754,-0.06861410253592765 +19508,97.53999999994754,-0.0686140975334017 +19509,97.54499999994754,-0.06861409253279499 +19510,97.54999999994753,-0.06861408753410689 +19511,97.55499999994753,-0.06861408253733677 +19512,97.55999999994752,-0.06861407754248403 +19513,97.56499999994752,-0.06861407254954802 +19514,97.56999999994751,-0.06861406755852813 +19515,97.57499999994751,-0.0686140625694237 +19516,97.5799999999475,-0.06861405758223417 +19517,97.5849999999475,-0.06861405259695887 +19518,97.5899999999475,-0.0686140476135972 +19519,97.59499999994749,-0.06861404263214851 +19520,97.59999999994749,-0.06861403765261222 +19521,97.60499999994748,-0.06861403267498765 +19522,97.60999999994748,-0.06861402769927423 +19523,97.61499999994747,-0.06861402272547132 +19524,97.61999999994747,-0.06861401775357828 +19525,97.62499999994746,-0.06861401278359451 +19526,97.62999999994746,-0.06861400781551938 +19527,97.63499999994745,-0.06861400284935226 +19528,97.63999999994745,-0.06861399788509255 +19529,97.64499999994744,-0.0686139929227396 +19530,97.64999999994744,-0.06861398796229282 +19531,97.65499999994744,-0.06861398300375156 +19532,97.65999999994743,-0.0686139780471152 +19533,97.66499999994743,-0.06861397309238317 +19534,97.66999999994742,-0.06861396813955478 +19535,97.67499999994742,-0.06861396318862947 +19536,97.67999999994741,-0.06861395823960657 +19537,97.68499999994741,-0.0686139532924855 +19538,97.6899999999474,-0.06861394834726563 +19539,97.6949999999474,-0.0686139434039463 +19540,97.6999999999474,-0.06861393846252696 +19541,97.70499999994739,-0.06861393352300695 +19542,97.70999999994739,-0.06861392858538565 +19543,97.71499999994738,-0.06861392364966246 +19544,97.71999999994738,-0.06861391871583673 +19545,97.72499999994737,-0.06861391378390788 +19546,97.72999999994737,-0.06861390885387528 +19547,97.73499999994736,-0.06861390392573828 +19548,97.73999999994736,-0.06861389899949631 +19549,97.74499999994735,-0.06861389407514874 +19550,97.74999999994735,-0.06861388915269492 +19551,97.75499999994734,-0.06861388423213428 +19552,97.75999999994734,-0.06861387931346617 +19553,97.76499999994734,-0.06861387439668999 +19554,97.76999999994733,-0.06861386948180513 +19555,97.77499999994733,-0.06861386456881094 +19556,97.77999999994732,-0.06861385965770685 +19557,97.78499999994732,-0.06861385474849219 +19558,97.78999999994731,-0.06861384984116639 +19559,97.79499999994731,-0.06861384493572881 +19560,97.7999999999473,-0.06861384003217884 +19561,97.8049999999473,-0.06861383513051589 +19562,97.8099999999473,-0.06861383023073932 +19563,97.81499999994729,-0.0686138253328485 +19564,97.81999999994729,-0.06861382043684286 +19565,97.82499999994728,-0.06861381554272174 +19566,97.82999999994728,-0.06861381065048455 +19567,97.83499999994727,-0.06861380576013068 +19568,97.83999999994727,-0.0686138008716595 +19569,97.84499999994726,-0.06861379598507039 +19570,97.84999999994726,-0.06861379110036278 +19571,97.85499999994725,-0.06861378621753601 +19572,97.85999999994725,-0.0686137813365895 +19573,97.86499999994724,-0.06861377645752262 +19574,97.86999999994724,-0.06861377158033476 +19575,97.87499999994724,-0.0686137667050253 +19576,97.87999999994723,-0.06861376183159364 +19577,97.88499999994723,-0.06861375696003916 +19578,97.88999999994722,-0.06861375209036125 +19579,97.89499999994722,-0.0686137472225593 +19580,97.89999999994721,-0.0686137423566327 +19581,97.90499999994721,-0.06861373749258085 +19582,97.9099999999472,-0.0686137326304031 +19583,97.9149999999472,-0.06861372777009889 +19584,97.9199999999472,-0.06861372291166758 +19585,97.92499999994719,-0.06861371805510856 +19586,97.92999999994719,-0.06861371320042123 +19587,97.93499999994718,-0.06861370834760497 +19588,97.93999999994718,-0.06861370349665917 +19589,97.94499999994717,-0.06861369864758322 +19590,97.94999999994717,-0.06861369380037652 +19591,97.95499999994716,-0.06861368895503846 +19592,97.95999999994716,-0.06861368411156842 +19593,97.96499999994715,-0.06861367926996578 +19594,97.96999999994715,-0.06861367443022996 +19595,97.97499999994714,-0.06861366959236036 +19596,97.97999999994714,-0.06861366475635633 +19597,97.98499999994714,-0.06861365992221728 +19598,97.98999999994713,-0.06861365508994262 +19599,97.99499999994713,-0.06861365025953171 +19600,97.99999999994712,-0.06861364543098397 +19601,98.00499999994712,-0.06861364060429878 +19602,98.00999999994711,-0.06861363577947553 +19603,98.01499999994711,-0.06861363095651361 +19604,98.0199999999471,-0.06861362613541243 +19605,98.0249999999471,-0.06861362131617138 +19606,98.0299999999471,-0.06861361649878985 +19607,98.03499999994709,-0.06861361168326721 +19608,98.03999999994709,-0.0686136068696029 +19609,98.04499999994708,-0.06861360205779626 +19610,98.04999999994708,-0.06861359724784673 +19611,98.05499999994707,-0.06861359243975368 +19612,98.05999999994707,-0.06861358763351652 +19613,98.06499999994706,-0.06861358282913463 +19614,98.06999999994706,-0.06861357802660742 +19615,98.07499999994705,-0.06861357322593427 +19616,98.07999999994705,-0.06861356842711458 +19617,98.08499999994704,-0.06861356363014774 +19618,98.08999999994704,-0.06861355883503316 +19619,98.09499999994704,-0.06861355404177023 +19620,98.09999999994703,-0.06861354925035834 +19621,98.10499999994703,-0.0686135444607969 +19622,98.10999999994702,-0.0686135396730853 +19623,98.11499999994702,-0.06861353488722292 +19624,98.11999999994701,-0.06861353010320918 +19625,98.12499999994701,-0.06861352532104348 +19626,98.129999999947,-0.06861352054072521 +19627,98.134999999947,-0.06861351576225375 +19628,98.139999999947,-0.0686135109856285 +19629,98.14499999994699,-0.06861350621084887 +19630,98.14999999994698,-0.06861350143791427 +19631,98.15499999994698,-0.06861349666682408 +19632,98.15999999994698,-0.0686134918975777 +19633,98.16499999994697,-0.06861348713017454 +19634,98.16999999994697,-0.06861348236461397 +19635,98.17499999994696,-0.06861347760089542 +19636,98.17999999994696,-0.0686134728390183 +19637,98.18499999994695,-0.06861346807898196 +19638,98.18999999994695,-0.06861346332078583 +19639,98.19499999994694,-0.06861345856442931 +19640,98.19999999994694,-0.0686134538099118 +19641,98.20499999994693,-0.06861344905723268 +19642,98.20999999994693,-0.0686134443063914 +19643,98.21499999994693,-0.0686134395573873 +19644,98.21999999994692,-0.0686134348102198 +19645,98.22499999994692,-0.06861343006488832 +19646,98.22999999994691,-0.06861342532139224 +19647,98.23499999994691,-0.06861342057973098 +19648,98.2399999999469,-0.06861341583990394 +19649,98.2449999999469,-0.06861341110191051 +19650,98.2499999999469,-0.06861340636575008 +19651,98.25499999994689,-0.06861340163142209 +19652,98.25999999994688,-0.0686133968989259 +19653,98.26499999994688,-0.06861339216826093 +19654,98.26999999994688,-0.06861338743942659 +19655,98.27499999994687,-0.06861338271242227 +19656,98.27999999994687,-0.06861337798724738 +19657,98.28499999994686,-0.06861337326390134 +19658,98.28999999994686,-0.06861336854238351 +19659,98.29499999994685,-0.06861336382269333 +19660,98.29999999994685,-0.0686133591048302 +19661,98.30499999994684,-0.0686133543887935 +19662,98.30999999994684,-0.06861334967458266 +19663,98.31499999994683,-0.06861334496219706 +19664,98.31999999994683,-0.06861334025163614 +19665,98.32499999994683,-0.06861333554289926 +19666,98.32999999994682,-0.06861333083598586 +19667,98.33499999994682,-0.06861332613089534 +19668,98.33999999994681,-0.06861332142762708 +19669,98.34499999994681,-0.0686133167261805 +19670,98.3499999999468,-0.068613312026555 +19671,98.3549999999468,-0.06861330732875001 +19672,98.3599999999468,-0.06861330263276491 +19673,98.36499999994679,-0.06861329793859912 +19674,98.36999999994678,-0.06861329324625204 +19675,98.37499999994678,-0.06861328855572309 +19676,98.37999999994678,-0.06861328386701164 +19677,98.38499999994677,-0.06861327918011713 +19678,98.38999999994677,-0.06861327449503897 +19679,98.39499999994676,-0.06861326981177655 +19680,98.39999999994676,-0.06861326513032927 +19681,98.40499999994675,-0.06861326045069656 +19682,98.40999999994675,-0.0686132557728778 +19683,98.41499999994674,-0.06861325109687243 +19684,98.41999999994674,-0.06861324642267984 +19685,98.42499999994673,-0.06861324175029944 +19686,98.42999999994673,-0.06861323707973065 +19687,98.43499999994673,-0.06861323241097285 +19688,98.43999999994672,-0.06861322774402547 +19689,98.44499999994672,-0.06861322307888791 +19690,98.44999999994671,-0.06861321841555959 +19691,98.45499999994671,-0.0686132137540399 +19692,98.4599999999467,-0.06861320909432829 +19693,98.4649999999467,-0.06861320443642413 +19694,98.4699999999467,-0.06861319978032684 +19695,98.47499999994669,-0.06861319512603584 +19696,98.47999999994668,-0.06861319047355052 +19697,98.48499999994668,-0.0686131858228703 +19698,98.48999999994668,-0.0686131811739946 +19699,98.49499999994667,-0.06861317652692282 +19700,98.49999999994667,-0.0686131718816544 +19701,98.50499999994666,-0.06861316723818871 +19702,98.50999999994666,-0.06861316259652517 +19703,98.51499999994665,-0.0686131579566632 +19704,98.51999999994665,-0.06861315331860221 +19705,98.52499999994664,-0.06861314868234161 +19706,98.52999999994664,-0.06861314404788083 +19707,98.53499999994663,-0.06861313941521925 +19708,98.53999999994663,-0.06861313478435631 +19709,98.54499999994663,-0.0686131301552914 +19710,98.54999999994662,-0.06861312552802395 +19711,98.55499999994662,-0.06861312090255338 +19712,98.55999999994661,-0.06861311627887907 +19713,98.56499999994661,-0.06861311165700047 +19714,98.5699999999466,-0.06861310703691698 +19715,98.5749999999466,-0.06861310241862799 +19716,98.5799999999466,-0.06861309780213294 +19717,98.58499999994659,-0.06861309318743125 +19718,98.58999999994658,-0.06861308857452231 +19719,98.59499999994658,-0.06861308396340554 +19720,98.59999999994658,-0.06861307935408038 +19721,98.60499999994657,-0.06861307474654622 +19722,98.60999999994657,-0.06861307014080248 +19723,98.61499999994656,-0.06861306553684858 +19724,98.61999999994656,-0.06861306093468393 +19725,98.62499999994655,-0.06861305633430795 +19726,98.62999999994655,-0.06861305173572003 +19727,98.63499999994654,-0.06861304713891962 +19728,98.63999999994654,-0.06861304254390613 +19729,98.64499999994653,-0.06861303795067897 +19730,98.64999999994653,-0.06861303335923756 +19731,98.65499999994653,-0.06861302876958132 +19732,98.65999999994652,-0.06861302418170966 +19733,98.66499999994652,-0.06861301959562198 +19734,98.66999999994651,-0.06861301501131772 +19735,98.67499999994651,-0.0686130104287963 +19736,98.6799999999465,-0.06861300584805713 +19737,98.6849999999465,-0.06861300126909962 +19738,98.6899999999465,-0.06861299669192321 +19739,98.69499999994649,-0.06861299211652729 +19740,98.69999999994648,-0.06861298754291129 +19741,98.70499999994648,-0.06861298297107463 +19742,98.70999999994648,-0.06861297840101674 +19743,98.71499999994647,-0.06861297383273701 +19744,98.71999999994647,-0.06861296926623489 +19745,98.72499999994646,-0.06861296470150977 +19746,98.72999999994646,-0.0686129601385611 +19747,98.73499999994645,-0.06861295557738827 +19748,98.73999999994645,-0.06861295101799071 +19749,98.74499999994644,-0.06861294646036785 +19750,98.74999999994644,-0.06861294190451911 +19751,98.75499999994643,-0.06861293735044388 +19752,98.75999999994643,-0.06861293279814162 +19753,98.76499999994643,-0.06861292824761174 +19754,98.76999999994642,-0.06861292369885363 +19755,98.77499999994642,-0.06861291915186676 +19756,98.77999999994641,-0.06861291460665052 +19757,98.78499999994641,-0.06861291006320434 +19758,98.7899999999464,-0.06861290552152764 +19759,98.7949999999464,-0.06861290098161983 +19760,98.7999999999464,-0.06861289644348036 +19761,98.80499999994639,-0.06861289190710862 +19762,98.80999999994638,-0.06861288737250405 +19763,98.81499999994638,-0.06861288283966607 +19764,98.81999999994638,-0.06861287830859411 +19765,98.82499999994637,-0.06861287377928757 +19766,98.82999999994637,-0.0686128692517459 +19767,98.83499999994636,-0.06861286472596849 +19768,98.83999999994636,-0.06861286020195478 +19769,98.84499999994635,-0.06861285567970422 +19770,98.84999999994635,-0.06861285115921621 +19771,98.85499999994634,-0.06861284664049017 +19772,98.85999999994634,-0.06861284212352552 +19773,98.86499999994633,-0.06861283760832168 +19774,98.86999999994633,-0.06861283309487812 +19775,98.87499999994633,-0.0686128285831942 +19776,98.87999999994632,-0.0686128240732694 +19777,98.88499999994632,-0.06861281956510311 +19778,98.88999999994631,-0.06861281505869476 +19779,98.89499999994631,-0.0686128105540438 +19780,98.8999999999463,-0.06861280605114962 +19781,98.9049999999463,-0.06861280155001166 +19782,98.9099999999463,-0.06861279705062935 +19783,98.91499999994629,-0.06861279255300212 +19784,98.91999999994628,-0.06861278805712939 +19785,98.92499999994628,-0.06861278356301058 +19786,98.92999999994628,-0.06861277907064511 +19787,98.93499999994627,-0.06861277458003244 +19788,98.93999999994627,-0.06861277009117196 +19789,98.94499999994626,-0.06861276560406313 +19790,98.94999999994626,-0.06861276111870535 +19791,98.95499999994625,-0.06861275663509805 +19792,98.95999999994625,-0.06861275215324068 +19793,98.96499999994624,-0.06861274767313265 +19794,98.96999999994624,-0.06861274319477337 +19795,98.97499999994623,-0.0686127387181623 +19796,98.97999999994623,-0.06861273424329886 +19797,98.98499999994623,-0.06861272977018247 +19798,98.98999999994622,-0.06861272529881257 +19799,98.99499999994622,-0.06861272082918858 +19800,98.99999999994621,-0.06861271636130992 +19801,99.00499999994621,-0.06861271189517605 +19802,99.0099999999462,-0.06861270743078637 +19803,99.0149999999462,-0.06861270296814033 +19804,99.0199999999462,-0.06861269850723732 +19805,99.02499999994619,-0.06861269404807682 +19806,99.02999999994618,-0.06861268959065824 +19807,99.03499999994618,-0.06861268513498099 +19808,99.03999999994618,-0.06861268068104454 +19809,99.04499999994617,-0.06861267622884828 +19810,99.04999999994617,-0.06861267177839168 +19811,99.05499999994616,-0.06861266732967415 +19812,99.05999999994616,-0.06861266288269512 +19813,99.06499999994615,-0.06861265843745401 +19814,99.06999999994615,-0.06861265399395028 +19815,99.07499999994614,-0.06861264955218334 +19816,99.07999999994614,-0.06861264511215263 +19817,99.08499999994613,-0.06861264067385758 +19818,99.08999999994613,-0.06861263623729762 +19819,99.09499999994613,-0.0686126318024722 +19820,99.09999999994612,-0.06861262736938072 +19821,99.10499999994612,-0.06861262293802263 +19822,99.10999999994611,-0.06861261850839737 +19823,99.11499999994611,-0.06861261408050436 +19824,99.1199999999461,-0.06861260965434304 +19825,99.1249999999461,-0.06861260522991285 +19826,99.1299999999461,-0.0686126008072132 +19827,99.13499999994609,-0.06861259638624355 +19828,99.13999999994608,-0.06861259196700333 +19829,99.14499999994608,-0.06861258754949197 +19830,99.14999999994608,-0.06861258313370888 +19831,99.15499999994607,-0.06861257871965352 +19832,99.15999999994607,-0.06861257430732533 +19833,99.16499999994606,-0.06861256989672375 +19834,99.16999999994606,-0.06861256548784818 +19835,99.17499999994605,-0.06861256108069808 +19836,99.17999999994605,-0.06861255667527287 +19837,99.18499999994604,-0.06861255227157202 +19838,99.18999999994604,-0.06861254786959492 +19839,99.19499999994603,-0.06861254346934104 +19840,99.19999999994603,-0.0686125390708098 +19841,99.20499999994603,-0.06861253467400065 +19842,99.20999999994602,-0.068612530278913 +19843,99.21499999994602,-0.06861252588554631 +19844,99.21999999994601,-0.0686125214939 +19845,99.22499999994601,-0.06861251710397354 +19846,99.229999999946,-0.06861251271576634 +19847,99.234999999946,-0.06861250832927782 +19848,99.239999999946,-0.06861250394450745 +19849,99.24499999994599,-0.06861249956145465 +19850,99.24999999994598,-0.06861249518011887 +19851,99.25499999994598,-0.06861249080049954 +19852,99.25999999994598,-0.06861248642259611 +19853,99.26499999994597,-0.06861248204640799 +19854,99.26999999994597,-0.06861247767193464 +19855,99.27499999994596,-0.06861247329917551 +19856,99.27999999994596,-0.06861246892813001 +19857,99.28499999994595,-0.0686124645587976 +19858,99.28999999994595,-0.0686124601911777 +19859,99.29499999994594,-0.06861245582526977 +19860,99.29999999994594,-0.06861245146107325 +19861,99.30499999994593,-0.06861244709858755 +19862,99.30999999994593,-0.06861244273781214 +19863,99.31499999994593,-0.06861243837874646 +19864,99.31999999994592,-0.06861243402138993 +19865,99.32499999994592,-0.068612429665742 +19866,99.32999999994591,-0.06861242531180212 +19867,99.33499999994591,-0.06861242095956971 +19868,99.3399999999459,-0.06861241660904421 +19869,99.3449999999459,-0.0686124122602251 +19870,99.3499999999459,-0.06861240791311178 +19871,99.35499999994589,-0.0686124035677037 +19872,99.35999999994588,-0.06861239922400032 +19873,99.36499999994588,-0.06861239488200109 +19874,99.36999999994588,-0.06861239054170541 +19875,99.37499999994587,-0.06861238620311275 +19876,99.37999999994587,-0.06861238186622255 +19877,99.38499999994586,-0.06861237753103425 +19878,99.38999999994586,-0.06861237319754727 +19879,99.39499999994585,-0.06861236886576108 +19880,99.39999999994585,-0.06861236453567512 +19881,99.40499999994584,-0.06861236020728885 +19882,99.40999999994584,-0.06861235588060167 +19883,99.41499999994583,-0.06861235155561306 +19884,99.41999999994583,-0.06861234723232246 +19885,99.42499999994583,-0.06861234291072929 +19886,99.42999999994582,-0.068612338590833 +19887,99.43499999994582,-0.06861233427263307 +19888,99.43999999994581,-0.06861232995612888 +19889,99.44499999994581,-0.06861232564131994 +19890,99.4499999999458,-0.06861232132820567 +19891,99.4549999999458,-0.0686123170167855 +19892,99.4599999999458,-0.06861231270705889 +19893,99.46499999994579,-0.06861230839902528 +19894,99.46999999994578,-0.06861230409268411 +19895,99.47499999994578,-0.06861229978803485 +19896,99.47999999994578,-0.06861229548507691 +19897,99.48499999994577,-0.06861229118380976 +19898,99.48999999994577,-0.06861228688423285 +19899,99.49499999994576,-0.06861228258634561 +19900,99.49999999994576,-0.06861227829014749 +19901,99.50499999994575,-0.06861227399563793 +19902,99.50999999994575,-0.0686122697028164 +19903,99.51499999994574,-0.06861226541168233 +19904,99.51999999994574,-0.06861226112223517 +19905,99.52499999994573,-0.06861225683447436 +19906,99.52999999994573,-0.06861225254839937 +19907,99.53499999994573,-0.06861224826400962 +19908,99.53999999994572,-0.06861224398130458 +19909,99.54499999994572,-0.0686122397002837 +19910,99.54999999994571,-0.06861223542094641 +19911,99.55499999994571,-0.06861223114329215 +19912,99.5599999999457,-0.0686122268673204 +19913,99.5649999999457,-0.06861222259303058 +19914,99.5699999999457,-0.06861221832042216 +19915,99.57499999994569,-0.06861221404949457 +19916,99.57999999994568,-0.06861220978024728 +19917,99.58499999994568,-0.06861220551267973 +19918,99.58999999994568,-0.06861220124679136 +19919,99.59499999994567,-0.06861219698258163 +19920,99.59999999994567,-0.06861219272004998 +19921,99.60499999994566,-0.06861218845919588 +19922,99.60999999994566,-0.06861218420001876 +19923,99.61499999994565,-0.06861217994251809 +19924,99.61999999994565,-0.0686121756866933 +19925,99.62499999994564,-0.06861217143254385 +19926,99.62999999994564,-0.0686121671800692 +19927,99.63499999994563,-0.06861216292926878 +19928,99.63999999994563,-0.06861215868014206 +19929,99.64499999994563,-0.06861215443268849 +19930,99.64999999994562,-0.0686121501869075 +19931,99.65499999994562,-0.06861214594279856 +19932,99.65999999994561,-0.06861214170036112 +19933,99.6649999999456,-0.06861213745959463 +19934,99.6699999999456,-0.06861213322049857 +19935,99.6749999999456,-0.06861212898307234 +19936,99.6799999999456,-0.06861212474731541 +19937,99.68499999994559,-0.06861212051322726 +19938,99.68999999994558,-0.06861211628080732 +19939,99.69499999994558,-0.06861211205005506 +19940,99.69999999994558,-0.06861210782096991 +19941,99.70499999994557,-0.06861210359355134 +19942,99.70999999994557,-0.06861209936779879 +19943,99.71499999994556,-0.06861209514371173 +19944,99.71999999994556,-0.06861209092128961 +19945,99.72499999994555,-0.06861208670053186 +19946,99.72999999994555,-0.06861208248143796 +19947,99.73499999994554,-0.06861207826400736 +19948,99.73999999994554,-0.06861207404823952 +19949,99.74499999994553,-0.0686120698341339 +19950,99.74999999994553,-0.06861206562168992 +19951,99.75499999994553,-0.06861206141090707 +19952,99.75999999994552,-0.0686120572017848 +19953,99.76499999994552,-0.06861205299432253 +19954,99.76999999994551,-0.06861204878851977 +19955,99.7749999999455,-0.06861204458437595 +19956,99.7799999999455,-0.06861204038189052 +19957,99.7849999999455,-0.06861203618106294 +19958,99.7899999999455,-0.06861203198189268 +19959,99.79499999994549,-0.06861202778437919 +19960,99.79999999994548,-0.06861202358852192 +19961,99.80499999994548,-0.06861201939432032 +19962,99.80999999994548,-0.06861201520177387 +19963,99.81499999994547,-0.068612011010882 +19964,99.81999999994547,-0.06861200682164419 +19965,99.82499999994546,-0.06861200263405988 +19966,99.82999999994546,-0.06861199844812853 +19967,99.83499999994545,-0.0686119942638496 +19968,99.83999999994545,-0.06861199008122257 +19969,99.84499999994544,-0.06861198590024688 +19970,99.84999999994544,-0.06861198172092199 +19971,99.85499999994543,-0.06861197754324735 +19972,99.85999999994543,-0.06861197336722243 +19973,99.86499999994543,-0.06861196919284668 +19974,99.86999999994542,-0.06861196502011956 +19975,99.87499999994542,-0.06861196084904053 +19976,99.87999999994541,-0.06861195667960905 +19977,99.8849999999454,-0.0686119525118246 +19978,99.8899999999454,-0.06861194834568661 +19979,99.8949999999454,-0.06861194418119457 +19980,99.8999999999454,-0.0686119400183479 +19981,99.90499999994539,-0.06861193585714608 +19982,99.90999999994538,-0.06861193169758857 +19983,99.91499999994538,-0.06861192753967484 +19984,99.91999999994538,-0.06861192338340434 +19985,99.92499999994537,-0.06861191922877655 +19986,99.92999999994537,-0.0686119150757909 +19987,99.93499999994536,-0.06861191092444686 +19988,99.93999999994536,-0.06861190677474392 +19989,99.94499999994535,-0.0686119026266815 +19990,99.94999999994535,-0.06861189848025909 +19991,99.95499999994534,-0.06861189433547614 +19992,99.95999999994534,-0.06861189019233212 +19993,99.96499999994533,-0.06861188605082646 +19994,99.96999999994533,-0.06861188191095868 +19995,99.97499999994533,-0.0686118777727282 +19996,99.97999999994532,-0.06861187363613451 +19997,99.98499999994532,-0.06861186950117704 +19998,99.98999999994531,-0.06861186536785527 +19999,99.9949999999453,-0.06861186123616868 +20000,99.9999999999453,-0.06861185710611671 +20001,100.0049999999453,-0.06861185297769883 +20002,100.0099999999453,-0.06861184885091451 +20003,100.01499999994529,-0.0686118447257632 +20004,100.01999999994528,-0.06861184060224439 +20005,100.02499999994528,-0.06861183648035751 +20006,100.02999999994528,-0.06861183236010204 +20007,100.03499999994527,-0.06861182824147745 +20008,100.03999999994527,-0.0686118241244832 +20009,100.04499999994526,-0.06861182000911878 +20010,100.04999999994526,-0.06861181589538361 +20011,100.05499999994525,-0.06861181178327716 +20012,100.05999999994525,-0.06861180767279894 +20013,100.06499999994524,-0.06861180356394837 +20014,100.06999999994524,-0.06861179945672494 +20015,100.07499999994523,-0.06861179535112812 +20016,100.07999999994523,-0.06861179124715734 +20017,100.08499999994523,-0.0686117871448121 +20018,100.08999999994522,-0.06861178304409185 +20019,100.09499999994522,-0.06861177894499608 +20020,100.09999999994521,-0.06861177484752423 +20021,100.1049999999452,-0.06861177075167578 +20022,100.1099999999452,-0.0686117666574502 +20023,100.1149999999452,-0.06861176256484694 +20024,100.1199999999452,-0.0686117584738655 +20025,100.12499999994519,-0.0686117543845053 +20026,100.12999999994518,-0.06861175029676585 +20027,100.13499999994518,-0.0686117462106466 +20028,100.13999999994518,-0.06861174212614703 +20029,100.14499999994517,-0.06861173804326659 +20030,100.14999999994517,-0.06861173396200475 +20031,100.15499999994516,-0.06861172988236099 +20032,100.15999999994516,-0.06861172580433478 +20033,100.16499999994515,-0.06861172172792558 +20034,100.16999999994515,-0.06861171765313287 +20035,100.17499999994514,-0.0686117135799561 +20036,100.17999999994514,-0.06861170950839475 +20037,100.18499999994513,-0.0686117054384483 +20038,100.18999999994513,-0.06861170137011621 +20039,100.19499999994513,-0.06861169730339794 +20040,100.19999999994512,-0.06861169323829298 +20041,100.20499999994512,-0.06861168917480079 +20042,100.20999999994511,-0.06861168511292084 +20043,100.2149999999451,-0.0686116810526526 +20044,100.2199999999451,-0.06861167699399555 +20045,100.2249999999451,-0.06861167293694914 +20046,100.2299999999451,-0.06861166888151286 +20047,100.23499999994509,-0.06861166482768617 +20048,100.23999999994508,-0.06861166077546856 +20049,100.24499999994508,-0.06861165672485947 +20050,100.24999999994508,-0.06861165267585839 +20051,100.25499999994507,-0.0686116486284648 +20052,100.25999999994507,-0.06861164458267817 +20053,100.26499999994506,-0.06861164053849796 +20054,100.26999999994506,-0.06861163649592364 +20055,100.27499999994505,-0.06861163245495469 +20056,100.27999999994505,-0.06861162841559058 +20057,100.28499999994504,-0.0686116243778308 +20058,100.28999999994504,-0.06861162034167481 +20059,100.29499999994503,-0.06861161630712208 +20060,100.29999999994503,-0.06861161227417208 +20061,100.30499999994503,-0.06861160824282429 +20062,100.30999999994502,-0.06861160421307819 +20063,100.31499999994502,-0.06861160018493324 +20064,100.31999999994501,-0.06861159615838892 +20065,100.324999999945,-0.0686115921334447 +20066,100.329999999945,-0.06861158811010007 +20067,100.334999999945,-0.0686115840883545 +20068,100.339999999945,-0.06861158006820745 +20069,100.34499999994499,-0.0686115760496584 +20070,100.34999999994498,-0.06861157203270683 +20071,100.35499999994498,-0.06861156801735221 +20072,100.35999999994498,-0.06861156400359403 +20073,100.36499999994497,-0.06861155999143174 +20074,100.36999999994497,-0.06861155598086484 +20075,100.37499999994496,-0.06861155197189278 +20076,100.37999999994496,-0.06861154796451507 +20077,100.38499999994495,-0.06861154395873116 +20078,100.38999999994495,-0.06861153995454053 +20079,100.39499999994494,-0.06861153595194268 +20080,100.39999999994494,-0.06861153195093704 +20081,100.40499999994493,-0.06861152795152312 +20082,100.40999999994493,-0.06861152395370039 +20083,100.41499999994492,-0.06861151995746834 +20084,100.41999999994492,-0.06861151596282641 +20085,100.42499999994492,-0.06861151196977414 +20086,100.42999999994491,-0.06861150797831093 +20087,100.4349999999449,-0.06861150398843632 +20088,100.4399999999449,-0.06861150000014976 +20089,100.4449999999449,-0.06861149601345073 +20090,100.4499999999449,-0.06861149202833872 +20091,100.45499999994489,-0.06861148804481321 +20092,100.45999999994488,-0.06861148406287365 +20093,100.46499999994488,-0.06861148008251954 +20094,100.46999999994487,-0.06861147610375036 +20095,100.47499999994487,-0.06861147212656558 +20096,100.47999999994487,-0.0686114681509647 +20097,100.48499999994486,-0.06861146417694718 +20098,100.48999999994486,-0.0686114602045125 +20099,100.49499999994485,-0.06861145623366013 +20100,100.49999999994485,-0.06861145226438958 +20101,100.50499999994484,-0.06861144829670032 +20102,100.50999999994484,-0.06861144433059181 +20103,100.51499999994483,-0.06861144036606355 +20104,100.51999999994483,-0.06861143640311501 +20105,100.52499999994482,-0.06861143244174568 +20106,100.52999999994482,-0.06861142848195503 +20107,100.53499999994482,-0.06861142452374254 +20108,100.53999999994481,-0.06861142056710771 +20109,100.5449999999448,-0.06861141661205 +20110,100.5499999999448,-0.0686114126585689 +20111,100.5549999999448,-0.0686114087066639 +20112,100.5599999999448,-0.06861140475633448 +20113,100.56499999994479,-0.06861140080758012 +20114,100.56999999994478,-0.06861139686040028 +20115,100.57499999994478,-0.06861139291479447 +20116,100.57999999994477,-0.06861138897076215 +20117,100.58499999994477,-0.06861138502830283 +20118,100.58999999994477,-0.06861138108741598 +20119,100.59499999994476,-0.06861137714810107 +20120,100.59999999994476,-0.0686113732103576 +20121,100.60499999994475,-0.06861136927418506 +20122,100.60999999994475,-0.06861136533958291 +20123,100.61499999994474,-0.06861136140655065 +20124,100.61999999994474,-0.06861135747508774 +20125,100.62499999994473,-0.0686113535451937 +20126,100.62999999994473,-0.06861134961686799 +20127,100.63499999994472,-0.0686113456901101 +20128,100.63999999994472,-0.06861134176491952 +20129,100.64499999994472,-0.06861133784129572 +20130,100.64999999994471,-0.06861133391923821 +20131,100.6549999999447,-0.06861132999874645 +20132,100.6599999999447,-0.06861132607981993 +20133,100.6649999999447,-0.06861132216245815 +20134,100.6699999999447,-0.06861131824666057 +20135,100.67499999994469,-0.0686113143324267 +20136,100.67999999994468,-0.06861131041975603 +20137,100.68499999994468,-0.06861130650864801 +20138,100.68999999994467,-0.06861130259910216 +20139,100.69499999994467,-0.06861129869111796 +20140,100.69999999994467,-0.06861129478469488 +20141,100.70499999994466,-0.0686112908798324 +20142,100.70999999994466,-0.06861128697653006 +20143,100.71499999994465,-0.06861128307478728 +20144,100.71999999994465,-0.06861127917460358 +20145,100.72499999994464,-0.06861127527597846 +20146,100.72999999994464,-0.06861127137891139 +20147,100.73499999994463,-0.06861126748340185 +20148,100.73999999994463,-0.06861126358944934 +20149,100.74499999994462,-0.06861125969705334 +20150,100.74999999994462,-0.06861125580621334 +20151,100.75499999994462,-0.06861125191692882 +20152,100.75999999994461,-0.0686112480291993 +20153,100.7649999999446,-0.06861124414302422 +20154,100.7699999999446,-0.06861124025840312 +20155,100.7749999999446,-0.06861123637533545 +20156,100.7799999999446,-0.06861123249382073 +20157,100.78499999994459,-0.06861122861385842 +20158,100.78999999994458,-0.06861122473544802 +20159,100.79499999994458,-0.06861122085858902 +20160,100.79999999994457,-0.06861121698328092 +20161,100.80499999994457,-0.06861121310952319 +20162,100.80999999994457,-0.06861120923731534 +20163,100.81499999994456,-0.06861120536665684 +20164,100.81999999994456,-0.06861120149754718 +20165,100.82499999994455,-0.06861119762998588 +20166,100.82999999994455,-0.06861119376397241 +20167,100.83499999994454,-0.06861118989950626 +20168,100.83999999994454,-0.06861118603658692 +20169,100.84499999994453,-0.06861118217521388 +20170,100.84999999994453,-0.06861117831538663 +20171,100.85499999994452,-0.06861117445710466 +20172,100.85999999994452,-0.06861117060036746 +20173,100.86499999994452,-0.06861116674517455 +20174,100.86999999994451,-0.06861116289152538 +20175,100.8749999999445,-0.06861115903941947 +20176,100.8799999999445,-0.06861115518885631 +20177,100.8849999999445,-0.06861115133983539 +20178,100.8899999999445,-0.06861114749235618 +20179,100.89499999994449,-0.0686111436464182 +20180,100.89999999994448,-0.06861113980202094 +20181,100.90499999994448,-0.06861113595916388 +20182,100.90999999994447,-0.06861113211784652 +20183,100.91499999994447,-0.06861112827806834 +20184,100.91999999994447,-0.06861112443982886 +20185,100.92499999994446,-0.06861112060312755 +20186,100.92999999994446,-0.06861111676796391 +20187,100.93499999994445,-0.06861111293433744 +20188,100.93999999994445,-0.06861110910224764 +20189,100.94499999994444,-0.06861110527169399 +20190,100.94999999994444,-0.06861110144267599 +20191,100.95499999994443,-0.06861109761519313 +20192,100.95999999994443,-0.0686110937892449 +20193,100.96499999994442,-0.06861108996483081 +20194,100.96999999994442,-0.06861108614195036 +20195,100.97499999994442,-0.06861108232060302 +20196,100.97999999994441,-0.06861107850078829 +20197,100.9849999999444,-0.06861107468250568 +20198,100.9899999999444,-0.06861107086575469 +20199,100.9949999999444,-0.06861106705053478 +20200,100.9999999999444,-0.0686110632368455 +20201,101.00499999994439,-0.0686110594246863 +20202,101.00999999994438,-0.0686110556140567 +20203,101.01499999994438,-0.06861105180495618 +20204,101.01999999994437,-0.06861104799738425 +20205,101.02499999994437,-0.0686110441913404 +20206,101.02999999994437,-0.06861104038682413 +20207,101.03499999994436,-0.06861103658383494 +20208,101.03999999994436,-0.06861103278237231 +20209,101.04499999994435,-0.06861102898243575 +20210,101.04999999994435,-0.06861102518402476 +20211,101.05499999994434,-0.06861102138713883 +20212,101.05999999994434,-0.06861101759177747 +20213,101.06499999994433,-0.06861101379794016 +20214,101.06999999994433,-0.06861101000562642 +20215,101.07499999994432,-0.06861100621483572 +20216,101.07999999994432,-0.0686110024255676 +20217,101.08499999994432,-0.06861099863782151 +20218,101.08999999994431,-0.06861099485159698 +20219,101.0949999999443,-0.0686109910668935 +20220,101.0999999999443,-0.06861098728371057 +20221,101.1049999999443,-0.0686109835020477 +20222,101.10999999994429,-0.06861097972190436 +20223,101.11499999994429,-0.06861097594328007 +20224,101.11999999994428,-0.06861097216617433 +20225,101.12499999994428,-0.06861096839058665 +20226,101.12999999994427,-0.06861096461651651 +20227,101.13499999994427,-0.06861096084396341 +20228,101.13999999994427,-0.06861095707292687 +20229,101.14499999994426,-0.06861095330340636 +20230,101.14999999994426,-0.06861094953540141 +20231,101.15499999994425,-0.0686109457689115 +20232,101.15999999994425,-0.06861094200393614 +20233,101.16499999994424,-0.06861093824047483 +20234,101.16999999994424,-0.06861093447852708 +20235,101.17499999994423,-0.06861093071809238 +20236,101.17999999994423,-0.06861092695917023 +20237,101.18499999994422,-0.06861092320176014 +20238,101.18999999994422,-0.06861091944586162 +20239,101.19499999994422,-0.06861091569147414 +20240,101.19999999994421,-0.06861091193859722 +20241,101.2049999999442,-0.06861090818723038 +20242,101.2099999999442,-0.0686109044373731 +20243,101.2149999999442,-0.0686109006890249 +20244,101.21999999994419,-0.06861089694218525 +20245,101.22499999994419,-0.06861089319685368 +20246,101.22999999994418,-0.06861088945302969 +20247,101.23499999994418,-0.06861088571071278 +20248,101.23999999994417,-0.06861088196990245 +20249,101.24499999994417,-0.06861087823059822 +20250,101.24999999994417,-0.06861087449279957 +20251,101.25499999994416,-0.06861087075650601 +20252,101.25999999994416,-0.06861086702171706 +20253,101.26499999994415,-0.06861086328843223 +20254,101.26999999994415,-0.06861085955665099 +20255,101.27499999994414,-0.06861085582637286 +20256,101.27999999994414,-0.06861085209759735 +20257,101.28499999994413,-0.06861084837032395 +20258,101.28999999994413,-0.0686108446445522 +20259,101.29499999994412,-0.06861084092028155 +20260,101.29999999994412,-0.06861083719751154 +20261,101.30499999994412,-0.06861083347624168 +20262,101.30999999994411,-0.06861082975647148 +20263,101.3149999999441,-0.06861082603820041 +20264,101.3199999999441,-0.06861082232142802 +20265,101.3249999999441,-0.06861081860615378 +20266,101.32999999994409,-0.06861081489237722 +20267,101.33499999994409,-0.06861081118009783 +20268,101.33999999994408,-0.06861080746931512 +20269,101.34499999994408,-0.06861080376002861 +20270,101.34999999994407,-0.06861080005223778 +20271,101.35499999994407,-0.06861079634594217 +20272,101.35999999994407,-0.06861079264114125 +20273,101.36499999994406,-0.06861078893783457 +20274,101.36999999994406,-0.0686107852360216 +20275,101.37499999994405,-0.06861078153570187 +20276,101.37999999994405,-0.06861077783687487 +20277,101.38499999994404,-0.06861077413954013 +20278,101.38999999994404,-0.06861077044369714 +20279,101.39499999994403,-0.06861076674934541 +20280,101.39999999994403,-0.06861076305648445 +20281,101.40499999994402,-0.06861075936511377 +20282,101.40999999994402,-0.06861075567523288 +20283,101.41499999994402,-0.0686107519868413 +20284,101.41999999994401,-0.06861074829993852 +20285,101.424999999944,-0.06861074461452406 +20286,101.429999999944,-0.06861074093059742 +20287,101.434999999944,-0.06861073724815812 +20288,101.43999999994399,-0.06861073356720566 +20289,101.44499999994399,-0.06861072988773956 +20290,101.44999999994398,-0.0686107262097593 +20291,101.45499999994398,-0.06861072253326443 +20292,101.45999999994397,-0.06861071885825444 +20293,101.46499999994397,-0.06861071518472885 +20294,101.46999999994397,-0.06861071151268716 +20295,101.47499999994396,-0.06861070784212889 +20296,101.47999999994396,-0.06861070417305354 +20297,101.48499999994395,-0.06861070050546061 +20298,101.48999999994395,-0.06861069683934964 +20299,101.49499999994394,-0.06861069317472013 +20300,101.49999999994394,-0.06861068951157158 +20301,101.50499999994393,-0.06861068584990351 +20302,101.50999999994393,-0.06861068218971544 +20303,101.51499999994392,-0.06861067853100689 +20304,101.51999999994392,-0.06861067487377734 +20305,101.52499999994392,-0.06861067121802633 +20306,101.52999999994391,-0.06861066756375335 +20307,101.5349999999439,-0.06861066391095792 +20308,101.5399999999439,-0.06861066025963956 +20309,101.5449999999439,-0.06861065660979777 +20310,101.54999999994389,-0.06861065296143208 +20311,101.55499999994389,-0.06861064931454199 +20312,101.55999999994388,-0.06861064566912703 +20313,101.56499999994388,-0.06861064202518669 +20314,101.56999999994387,-0.06861063838272048 +20315,101.57499999994387,-0.06861063474172795 +20316,101.57999999994387,-0.0686106311022086 +20317,101.58499999994386,-0.06861062746416191 +20318,101.58999999994386,-0.06861062382758744 +20319,101.59499999994385,-0.06861062019248466 +20320,101.59999999994385,-0.06861061655885313 +20321,101.60499999994384,-0.06861061292669232 +20322,101.60999999994384,-0.06861060929600178 +20323,101.61499999994383,-0.06861060566678101 +20324,101.61999999994383,-0.06861060203902954 +20325,101.62499999994382,-0.06861059841274686 +20326,101.62999999994382,-0.06861059478793248 +20327,101.63499999994382,-0.06861059116458595 +20328,101.63999999994381,-0.06861058754270677 +20329,101.6449999999438,-0.06861058392229445 +20330,101.6499999999438,-0.06861058030334852 +20331,101.6549999999438,-0.06861057668586847 +20332,101.65999999994379,-0.06861057306985384 +20333,101.66499999994379,-0.06861056945530415 +20334,101.66999999994378,-0.06861056584221889 +20335,101.67499999994378,-0.0686105622305976 +20336,101.67999999994377,-0.06861055862043977 +20337,101.68499999994377,-0.06861055501174496 +20338,101.68999999994377,-0.06861055140451264 +20339,101.69499999994376,-0.06861054779874236 +20340,101.69999999994376,-0.06861054419443363 +20341,101.70499999994375,-0.06861054059158596 +20342,101.70999999994375,-0.06861053699019887 +20343,101.71499999994374,-0.06861053339027189 +20344,101.71999999994374,-0.06861052979180451 +20345,101.72499999994373,-0.06861052619479628 +20346,101.72999999994373,-0.06861052259924671 +20347,101.73499999994372,-0.0686105190051553 +20348,101.73999999994372,-0.06861051541252158 +20349,101.74499999994372,-0.06861051182134507 +20350,101.74999999994371,-0.0686105082316253 +20351,101.7549999999437,-0.06861050464336178 +20352,101.7599999999437,-0.06861050105655402 +20353,101.7649999999437,-0.06861049747120154 +20354,101.76999999994369,-0.06861049388730388 +20355,101.77499999994369,-0.06861049030486054 +20356,101.77999999994368,-0.06861048672387103 +20357,101.78499999994368,-0.0686104831443349 +20358,101.78999999994367,-0.06861047956625167 +20359,101.79499999994367,-0.06861047598962083 +20360,101.79999999994367,-0.06861047241444193 +20361,101.80499999994366,-0.06861046884071446 +20362,101.80999999994366,-0.06861046526843796 +20363,101.81499999994365,-0.06861046169761195 +20364,101.81999999994365,-0.06861045812823595 +20365,101.82499999994364,-0.06861045456030948 +20366,101.82999999994364,-0.06861045099383206 +20367,101.83499999994363,-0.06861044742880322 +20368,101.83999999994363,-0.06861044386522247 +20369,101.84499999994362,-0.06861044030308934 +20370,101.84999999994362,-0.06861043674240334 +20371,101.85499999994362,-0.06861043318316401 +20372,101.85999999994361,-0.06861042962537085 +20373,101.8649999999436,-0.0686104260690234 +20374,101.8699999999436,-0.06861042251412118 +20375,101.8749999999436,-0.06861041896066372 +20376,101.87999999994359,-0.06861041540865052 +20377,101.88499999994359,-0.06861041185808113 +20378,101.88999999994358,-0.06861040830895504 +20379,101.89499999994358,-0.06861040476127181 +20380,101.89999999994357,-0.06861040121503094 +20381,101.90499999994357,-0.06861039767023194 +20382,101.90999999994357,-0.06861039412687438 +20383,101.91499999994356,-0.06861039058495774 +20384,101.91999999994356,-0.06861038704448157 +20385,101.92499999994355,-0.06861038350544539 +20386,101.92999999994355,-0.0686103799678487 +20387,101.93499999994354,-0.06861037643169106 +20388,101.93999999994354,-0.06861037289697197 +20389,101.94499999994353,-0.06861036936369097 +20390,101.94999999994353,-0.06861036583184756 +20391,101.95499999994352,-0.0686103623014413 +20392,101.95999999994352,-0.06861035877247168 +20393,101.96499999994352,-0.06861035524493826 +20394,101.96999999994351,-0.06861035171884054 +20395,101.9749999999435,-0.06861034819417808 +20396,101.9799999999435,-0.06861034467095035 +20397,101.9849999999435,-0.06861034114915693 +20398,101.98999999994349,-0.0686103376287973 +20399,101.99499999994349,-0.06861033410987101 +20400,101.99999999994348,-0.06861033059237757 +20401,102.00499999994348,-0.06861032707631655 +20402,102.00999999994347,-0.06861032356168743 +20403,102.01499999994347,-0.06861032004848977 +20404,102.01999999994347,-0.06861031653672307 +20405,102.02499999994346,-0.06861031302638687 +20406,102.02999999994346,-0.0686103095174807 +20407,102.03499999994345,-0.06861030601000408 +20408,102.03999999994345,-0.06861030250395653 +20409,102.04499999994344,-0.0686102989993376 +20410,102.04999999994344,-0.0686102954961468 +20411,102.05499999994343,-0.06861029199438368 +20412,102.05999999994343,-0.06861028849404774 +20413,102.06499999994342,-0.06861028499513852 +20414,102.06999999994342,-0.06861028149765554 +20415,102.07499999994342,-0.06861027800159834 +20416,102.07999999994341,-0.06861027450696647 +20417,102.0849999999434,-0.0686102710137594 +20418,102.0899999999434,-0.06861026752197671 +20419,102.0949999999434,-0.06861026403161792 +20420,102.09999999994339,-0.06861026054268254 +20421,102.10499999994339,-0.06861025705517013 +20422,102.10999999994338,-0.06861025356908018 +20423,102.11499999994338,-0.06861025008441225 +20424,102.11999999994337,-0.06861024660116587 +20425,102.12499999994337,-0.06861024311934055 +20426,102.12999999994337,-0.06861023963893584 +20427,102.13499999994336,-0.06861023615995125 +20428,102.13999999994336,-0.06861023268238634 +20429,102.14499999994335,-0.0686102292062406 +20430,102.14999999994335,-0.0686102257315136 +20431,102.15499999994334,-0.06861022225820484 +20432,102.15999999994334,-0.06861021878631388 +20433,102.16499999994333,-0.06861021531584022 +20434,102.16999999994333,-0.06861021184678341 +20435,102.17499999994332,-0.06861020837914299 +20436,102.17999999994332,-0.06861020491291847 +20437,102.18499999994332,-0.0686102014481094 +20438,102.18999999994331,-0.06861019798471532 +20439,102.1949999999433,-0.06861019452273573 +20440,102.1999999999433,-0.06861019106217017 +20441,102.2049999999433,-0.06861018760301821 +20442,102.20999999994329,-0.06861018414527933 +20443,102.21499999994329,-0.0686101806889531 +20444,102.21999999994328,-0.06861017723403903 +20445,102.22499999994328,-0.06861017378053667 +20446,102.22999999994327,-0.06861017032844555 +20447,102.23499999994327,-0.0686101668777652 +20448,102.23999999994327,-0.06861016342849514 +20449,102.24499999994326,-0.06861015998063492 +20450,102.24999999994326,-0.06861015653418408 +20451,102.25499999994325,-0.06861015308914212 +20452,102.25999999994325,-0.0686101496455086 +20453,102.26499999994324,-0.06861014620328307 +20454,102.26999999994324,-0.06861014276246503 +20455,102.27499999994323,-0.06861013932305404 +20456,102.27999999994323,-0.06861013588504963 +20457,102.28499999994322,-0.06861013244845132 +20458,102.28999999994322,-0.06861012901325866 +20459,102.29499999994322,-0.06861012557947117 +20460,102.29999999994321,-0.0686101221470884 +20461,102.3049999999432,-0.06861011871610988 +20462,102.3099999999432,-0.06861011528653516 +20463,102.3149999999432,-0.06861011185836374 +20464,102.31999999994319,-0.06861010843159518 +20465,102.32499999994319,-0.06861010500622902 +20466,102.32999999994318,-0.06861010158226477 +20467,102.33499999994318,-0.06861009815970201 +20468,102.33999999994317,-0.06861009473854023 +20469,102.34499999994317,-0.068610091318779 +20470,102.34999999994317,-0.06861008790041784 +20471,102.35499999994316,-0.06861008448345629 +20472,102.35999999994316,-0.06861008106789389 +20473,102.36499999994315,-0.06861007765373017 +20474,102.36999999994315,-0.06861007424096469 +20475,102.37499999994314,-0.06861007082959694 +20476,102.37999999994314,-0.0686100674196265 +20477,102.38499999994313,-0.06861006401105288 +20478,102.38999999994313,-0.06861006060387566 +20479,102.39499999994312,-0.06861005719809432 +20480,102.39999999994312,-0.06861005379370845 +20481,102.40499999994312,-0.06861005039071756 +20482,102.40999999994311,-0.06861004698912121 +20483,102.4149999999431,-0.0686100435889189 +20484,102.4199999999431,-0.0686100401901102 +20485,102.4249999999431,-0.06861003679269465 +20486,102.42999999994309,-0.06861003339667177 +20487,102.43499999994309,-0.0686100300020411 +20488,102.43999999994308,-0.0686100266088022 +20489,102.44499999994308,-0.06861002321695457 +20490,102.44999999994307,-0.06861001982649781 +20491,102.45499999994307,-0.0686100164374314 +20492,102.45999999994307,-0.06861001304975493 +20493,102.46499999994306,-0.0686100096634679 +20494,102.46999999994306,-0.06861000627856988 +20495,102.47499999994305,-0.06861000289506038 +20496,102.47999999994305,-0.06860999951293896 +20497,102.48499999994304,-0.06860999613220516 +20498,102.48999999994304,-0.06860999275285852 +20499,102.49499999994303,-0.06860998937489858 +20500,102.49999999994303,-0.06860998599832488 +20501,102.50499999994302,-0.06860998262313694 +20502,102.50999999994302,-0.06860997924933435 +20503,102.51499999994302,-0.06860997587691661 +20504,102.51999999994301,-0.06860997250588327 +20505,102.524999999943,-0.06860996913623388 +20506,102.529999999943,-0.06860996576796796 +20507,102.534999999943,-0.06860996240108509 +20508,102.53999999994299,-0.06860995903558478 +20509,102.54499999994299,-0.06860995567146659 +20510,102.54999999994298,-0.06860995230873006 +20511,102.55499999994298,-0.06860994894737472 +20512,102.55999999994297,-0.06860994558740013 +20513,102.56499999994297,-0.06860994222880583 +20514,102.56999999994297,-0.06860993887159134 +20515,102.57499999994296,-0.06860993551575624 +20516,102.57999999994296,-0.06860993216130004 +20517,102.58499999994295,-0.0686099288082223 +20518,102.58999999994295,-0.06860992545652254 +20519,102.59499999994294,-0.06860992210620034 +20520,102.59999999994294,-0.06860991875725524 +20521,102.60499999994293,-0.06860991540968675 +20522,102.60999999994293,-0.06860991206349445 +20523,102.61499999994292,-0.06860990871867788 +20524,102.61999999994292,-0.06860990537523655 +20525,102.62499999994291,-0.06860990203317005 +20526,102.62999999994291,-0.06860989869247788 +20527,102.6349999999429,-0.06860989535315963 +20528,102.6399999999429,-0.06860989201521481 +20529,102.6449999999429,-0.068609888678643 +20530,102.64999999994289,-0.0686098853434437 +20531,102.65499999994289,-0.06860988200961649 +20532,102.65999999994288,-0.0686098786771609 +20533,102.66499999994288,-0.06860987534607647 +20534,102.66999999994287,-0.06860987201636277 +20535,102.67499999994287,-0.06860986868801934 +20536,102.67999999994286,-0.0686098653610457 +20537,102.68499999994286,-0.06860986203544141 +20538,102.68999999994286,-0.06860985871120603 +20539,102.69499999994285,-0.0686098553883391 +20540,102.69999999994285,-0.06860985206684016 +20541,102.70499999994284,-0.06860984874670877 +20542,102.70999999994284,-0.06860984542794445 +20543,102.71499999994283,-0.06860984211054677 +20544,102.71999999994283,-0.06860983879451527 +20545,102.72499999994282,-0.0686098354798495 +20546,102.72999999994282,-0.06860983216654899 +20547,102.73499999994281,-0.06860982885461332 +20548,102.73999999994281,-0.06860982554404203 +20549,102.7449999999428,-0.06860982223483464 +20550,102.7499999999428,-0.06860981892699072 +20551,102.7549999999428,-0.06860981562050984 +20552,102.75999999994279,-0.06860981231539151 +20553,102.76499999994279,-0.0686098090116353 +20554,102.76999999994278,-0.06860980570924073 +20555,102.77499999994278,-0.06860980240820738 +20556,102.77999999994277,-0.0686097991085348 +20557,102.78499999994277,-0.06860979581022253 +20558,102.78999999994276,-0.0686097925132701 +20559,102.79499999994276,-0.06860978921767708 +20560,102.79999999994276,-0.06860978592344301 +20561,102.80499999994275,-0.06860978263056745 +20562,102.80999999994275,-0.06860977933904995 +20563,102.81499999994274,-0.06860977604889006 +20564,102.81999999994274,-0.06860977276008731 +20565,102.82499999994273,-0.06860976947264127 +20566,102.82999999994273,-0.0686097661865515 +20567,102.83499999994272,-0.06860976290181751 +20568,102.83999999994272,-0.0686097596184389 +20569,102.84499999994271,-0.0686097563364152 +20570,102.84999999994271,-0.06860975305574593 +20571,102.8549999999427,-0.06860974977643068 +20572,102.8599999999427,-0.068609746498469 +20573,102.8649999999427,-0.06860974322186042 +20574,102.86999999994269,-0.0686097399466045 +20575,102.87499999994269,-0.0686097366727008 +20576,102.87999999994268,-0.06860973340014886 +20577,102.88499999994268,-0.06860973012894826 +20578,102.88999999994267,-0.06860972685909851 +20579,102.89499999994267,-0.06860972359059919 +20580,102.89999999994266,-0.06860972032344984 +20581,102.90499999994266,-0.06860971705765002 +20582,102.90999999994266,-0.06860971379319927 +20583,102.91499999994265,-0.06860971053009716 +20584,102.91999999994265,-0.06860970726834324 +20585,102.92499999994264,-0.06860970400793706 +20586,102.92999999994264,-0.06860970074887815 +20587,102.93499999994263,-0.0686096974911661 +20588,102.93999999994263,-0.06860969423480044 +20589,102.94499999994262,-0.06860969097978074 +20590,102.94999999994262,-0.06860968772610654 +20591,102.95499999994261,-0.06860968447377741 +20592,102.95999999994261,-0.06860968122279289 +20593,102.9649999999426,-0.06860967797315252 +20594,102.9699999999426,-0.06860967472485589 +20595,102.9749999999426,-0.06860967147790252 +20596,102.97999999994259,-0.06860966823229199 +20597,102.98499999994259,-0.06860966498802384 +20598,102.98999999994258,-0.06860966174509762 +20599,102.99499999994258,-0.0686096585035129 +20600,102.99999999994257,-0.06860965526326923 +20601,103.00499999994257,-0.06860965202436617 +20602,103.00999999994256,-0.06860964878680327 +20603,103.01499999994256,-0.06860964555058008 +20604,103.01999999994256,-0.06860964231569616 +20605,103.02499999994255,-0.06860963908215108 +20606,103.02999999994255,-0.06860963584994437 +20607,103.03499999994254,-0.0686096326190756 +20608,103.03999999994254,-0.06860962938954432 +20609,103.04499999994253,-0.0686096261613501 +20610,103.04999999994253,-0.06860962293449249 +20611,103.05499999994252,-0.06860961970897105 +20612,103.05999999994252,-0.06860961648478531 +20613,103.06499999994251,-0.06860961326193485 +20614,103.06999999994251,-0.06860961004041924 +20615,103.0749999999425,-0.06860960682023802 +20616,103.0799999999425,-0.06860960360139073 +20617,103.0849999999425,-0.06860960038387696 +20618,103.08999999994249,-0.06860959716769627 +20619,103.09499999994249,-0.06860959395284817 +20620,103.09999999994248,-0.06860959073933226 +20621,103.10499999994248,-0.06860958752714809 +20622,103.10999999994247,-0.06860958431629523 +20623,103.11499999994247,-0.0686095811067732 +20624,103.11999999994246,-0.0686095778985816 +20625,103.12499999994246,-0.06860957469171997 +20626,103.12999999994246,-0.06860957148618786 +20627,103.13499999994245,-0.06860956828198485 +20628,103.13999999994245,-0.06860956507911048 +20629,103.14499999994244,-0.06860956187756431 +20630,103.14999999994244,-0.06860955867734592 +20631,103.15499999994243,-0.06860955547845483 +20632,103.15999999994243,-0.06860955228089065 +20633,103.16499999994242,-0.06860954908465292 +20634,103.16999999994242,-0.06860954588974118 +20635,103.17499999994241,-0.06860954269615499 +20636,103.17999999994241,-0.06860953950389394 +20637,103.1849999999424,-0.06860953631295758 +20638,103.1899999999424,-0.06860953312334545 +20639,103.1949999999424,-0.06860952993505713 +20640,103.19999999994239,-0.06860952674809218 +20641,103.20499999994239,-0.06860952356245015 +20642,103.20999999994238,-0.06860952037813062 +20643,103.21499999994238,-0.06860951719513313 +20644,103.21999999994237,-0.06860951401345725 +20645,103.22499999994237,-0.06860951083310253 +20646,103.22999999994236,-0.06860950765406855 +20647,103.23499999994236,-0.06860950447635486 +20648,103.23999999994236,-0.06860950129996103 +20649,103.24499999994235,-0.06860949812488662 +20650,103.24999999994235,-0.06860949495113118 +20651,103.25499999994234,-0.0686094917786943 +20652,103.25999999994234,-0.0686094886075755 +20653,103.26499999994233,-0.06860948543777437 +20654,103.26999999994233,-0.06860948226929046 +20655,103.27499999994232,-0.06860947910212337 +20656,103.27999999994232,-0.0686094759362726 +20657,103.28499999994231,-0.06860947277173778 +20658,103.28999999994231,-0.06860946960851841 +20659,103.2949999999423,-0.0686094664466141 +20660,103.2999999999423,-0.06860946328602438 +20661,103.3049999999423,-0.06860946012674884 +20662,103.30999999994229,-0.06860945696878705 +20663,103.31499999994229,-0.06860945381213854 +20664,103.31999999994228,-0.06860945065680289 +20665,103.32499999994228,-0.06860944750277967 +20666,103.32999999994227,-0.06860944435006844 +20667,103.33499999994227,-0.06860944119866877 +20668,103.33999999994226,-0.0686094380485802 +20669,103.34499999994226,-0.06860943489980233 +20670,103.34999999994226,-0.06860943175233469 +20671,103.35499999994225,-0.06860942860617686 +20672,103.35999999994225,-0.06860942546132844 +20673,103.36499999994224,-0.06860942231778892 +20674,103.36999999994224,-0.06860941917555793 +20675,103.37499999994223,-0.06860941603463502 +20676,103.37999999994223,-0.06860941289501973 +20677,103.38499999994222,-0.06860940975671166 +20678,103.38999999994222,-0.06860940661971036 +20679,103.39499999994221,-0.06860940348401538 +20680,103.39999999994221,-0.06860940034962631 +20681,103.4049999999422,-0.0686093972165427 +20682,103.4099999999422,-0.06860939408476413 +20683,103.4149999999422,-0.06860939095429017 +20684,103.41999999994219,-0.06860938782512037 +20685,103.42499999994219,-0.0686093846972543 +20686,103.42999999994218,-0.06860938157069155 +20687,103.43499999994218,-0.06860937844543165 +20688,103.43999999994217,-0.0686093753214742 +20689,103.44499999994217,-0.06860937219881873 +20690,103.44999999994216,-0.06860936907746484 +20691,103.45499999994216,-0.0686093659574121 +20692,103.45999999994216,-0.06860936283866005 +20693,103.46499999994215,-0.06860935972120828 +20694,103.46999999994215,-0.06860935660505635 +20695,103.47499999994214,-0.06860935349020383 +20696,103.47999999994214,-0.06860935037665028 +20697,103.48499999994213,-0.06860934726439528 +20698,103.48999999994213,-0.0686093441534384 +20699,103.49499999994212,-0.06860934104377919 +20700,103.49999999994212,-0.06860933793541725 +20701,103.50499999994211,-0.06860933482835212 +20702,103.50999999994211,-0.06860933172258338 +20703,103.5149999999421,-0.0686093286181106 +20704,103.5199999999421,-0.06860932551493333 +20705,103.5249999999421,-0.06860932241305118 +20706,103.52999999994209,-0.06860931931246368 +20707,103.53499999994209,-0.06860931621317043 +20708,103.53999999994208,-0.06860931311517098 +20709,103.54499999994208,-0.06860931001846492 +20710,103.54999999994207,-0.0686093069230518 +20711,103.55499999994207,-0.06860930382893118 +20712,103.55999999994206,-0.06860930073610266 +20713,103.56499999994206,-0.06860929764456582 +20714,103.56999999994206,-0.06860929455432019 +20715,103.57499999994205,-0.06860929146536535 +20716,103.57999999994205,-0.06860928837770087 +20717,103.58499999994204,-0.06860928529132636 +20718,103.58999999994204,-0.06860928220624135 +20719,103.59499999994203,-0.06860927912244542 +20720,103.59999999994203,-0.06860927603993816 +20721,103.60499999994202,-0.06860927295871912 +20722,103.60999999994202,-0.06860926987878788 +20723,103.61499999994201,-0.068609266800144 +20724,103.61999999994201,-0.06860926372278707 +20725,103.624999999942,-0.06860926064671664 +20726,103.629999999942,-0.06860925757193231 +20727,103.634999999942,-0.06860925449843366 +20728,103.63999999994199,-0.06860925142622022 +20729,103.64499999994199,-0.0686092483552916 +20730,103.64999999994198,-0.06860924528564735 +20731,103.65499999994198,-0.06860924221728705 +20732,103.65999999994197,-0.06860923915021028 +20733,103.66499999994197,-0.06860923608441659 +20734,103.66999999994196,-0.06860923301990557 +20735,103.67499999994196,-0.0686092299566768 +20736,103.67999999994196,-0.06860922689472984 +20737,103.68499999994195,-0.06860922383406429 +20738,103.68999999994195,-0.06860922077467968 +20739,103.69499999994194,-0.06860921771657563 +20740,103.69999999994194,-0.06860921465975169 +20741,103.70499999994193,-0.06860921160420744 +20742,103.70999999994193,-0.06860920854994244 +20743,103.71499999994192,-0.06860920549695627 +20744,103.71999999994192,-0.06860920244524853 +20745,103.72499999994191,-0.06860919939481876 +20746,103.72999999994191,-0.06860919634566656 +20747,103.7349999999419,-0.0686091932977915 +20748,103.7399999999419,-0.06860919025119314 +20749,103.7449999999419,-0.06860918720587107 +20750,103.74999999994189,-0.06860918416182486 +20751,103.75499999994189,-0.06860918111905409 +20752,103.75999999994188,-0.06860917807755833 +20753,103.76499999994188,-0.06860917503733717 +20754,103.76999999994187,-0.06860917199839017 +20755,103.77499999994187,-0.06860916896071691 +20756,103.77999999994186,-0.06860916592431696 +20757,103.78499999994186,-0.0686091628891899 +20758,103.78999999994186,-0.06860915985533532 +20759,103.79499999994185,-0.0686091568227528 +20760,103.79999999994185,-0.06860915379144189 +20761,103.80499999994184,-0.06860915076140217 +20762,103.80999999994184,-0.06860914773263325 +20763,103.81499999994183,-0.06860914470513467 +20764,103.81999999994183,-0.06860914167890603 +20765,103.82499999994182,-0.0686091386539469 +20766,103.82999999994182,-0.06860913563025686 +20767,103.83499999994181,-0.06860913260783548 +20768,103.83999999994181,-0.06860912958668235 +20769,103.8449999999418,-0.06860912656679703 +20770,103.8499999999418,-0.06860912354817912 +20771,103.8549999999418,-0.06860912053082818 +20772,103.85999999994179,-0.0686091175147438 +20773,103.86499999994179,-0.06860911449992556 +20774,103.86999999994178,-0.06860911148637303 +20775,103.87499999994178,-0.06860910847408579 +20776,103.87999999994177,-0.06860910546306341 +20777,103.88499999994177,-0.0686091024533055 +20778,103.88999999994176,-0.06860909944481161 +20779,103.89499999994176,-0.06860909643758131 +20780,103.89999999994176,-0.06860909343161421 +20781,103.90499999994175,-0.0686090904269099 +20782,103.90999999994175,-0.06860908742346791 +20783,103.91499999994174,-0.06860908442128787 +20784,103.91999999994174,-0.06860908142036931 +20785,103.92499999994173,-0.06860907842071186 +20786,103.92999999994173,-0.06860907542231506 +20787,103.93499999994172,-0.06860907242517851 +20788,103.93999999994172,-0.0686090694293018 +20789,103.94499999994171,-0.0686090664346845 +20790,103.94999999994171,-0.06860906344132617 +20791,103.9549999999417,-0.06860906044922642 +20792,103.9599999999417,-0.06860905745838483 +20793,103.9649999999417,-0.06860905446880096 +20794,103.96999999994169,-0.0686090514804744 +20795,103.97499999994169,-0.06860904849340475 +20796,103.97999999994168,-0.06860904550759157 +20797,103.98499999994168,-0.06860904252303446 +20798,103.98999999994167,-0.06860903953973298 +20799,103.99499999994167,-0.06860903655768673 +20800,103.99999999994166,-0.06860903357689527 +20801,104.00499999994166,-0.06860903059735822 +20802,104.00999999994166,-0.06860902761907513 +20803,104.01499999994165,-0.06860902464204559 +20804,104.01999999994165,-0.06860902166626917 +20805,104.02499999994164,-0.06860901869174547 +20806,104.02999999994164,-0.06860901571847408 +20807,104.03499999994163,-0.06860901274645458 +20808,104.03999999994163,-0.06860900977568653 +20809,104.04499999994162,-0.06860900680616953 +20810,104.04999999994162,-0.06860900383790318 +20811,104.05499999994161,-0.06860900087088703 +20812,104.05999999994161,-0.06860899790512069 +20813,104.0649999999416,-0.06860899494060373 +20814,104.0699999999416,-0.06860899197733572 +20815,104.0749999999416,-0.06860898901531627 +20816,104.07999999994159,-0.06860898605454496 +20817,104.08499999994159,-0.06860898309502138 +20818,104.08999999994158,-0.06860898013674509 +20819,104.09499999994158,-0.0686089771797157 +20820,104.09999999994157,-0.06860897422393278 +20821,104.10499999994157,-0.06860897126939591 +20822,104.10999999994156,-0.06860896831610469 +20823,104.11499999994156,-0.06860896536405871 +20824,104.11999999994156,-0.06860896241325753 +20825,104.12499999994155,-0.06860895946370074 +20826,104.12999999994155,-0.06860895651538794 +20827,104.13499999994154,-0.06860895356831873 +20828,104.13999999994154,-0.06860895062249266 +20829,104.14499999994153,-0.06860894767790933 +20830,104.14999999994153,-0.06860894473456833 +20831,104.15499999994152,-0.06860894179246924 +20832,104.15999999994152,-0.06860893885161165 +20833,104.16499999994151,-0.06860893591199516 +20834,104.16999999994151,-0.06860893297361934 +20835,104.1749999999415,-0.06860893003648377 +20836,104.1799999999415,-0.06860892710058805 +20837,104.1849999999415,-0.06860892416593176 +20838,104.18999999994149,-0.0686089212325145 +20839,104.19499999994149,-0.06860891830033583 +20840,104.19999999994148,-0.06860891536939537 +20841,104.20499999994148,-0.06860891243969268 +20842,104.20999999994147,-0.06860890951122736 +20843,104.21499999994147,-0.06860890658399901 +20844,104.21999999994146,-0.0686089036580072 +20845,104.22499999994146,-0.06860890073325153 +20846,104.22999999994146,-0.06860889780973158 +20847,104.23499999994145,-0.06860889488744693 +20848,104.23999999994145,-0.06860889196639716 +20849,104.24499999994144,-0.06860888904658191 +20850,104.24999999994144,-0.06860888612800072 +20851,104.25499999994143,-0.06860888321065318 +20852,104.25999999994143,-0.06860888029453892 +20853,104.26499999994142,-0.06860887737965748 +20854,104.26999999994142,-0.06860887446600848 +20855,104.27499999994141,-0.0686088715535915 +20856,104.27999999994141,-0.06860886864240612 +20857,104.2849999999414,-0.06860886573245195 +20858,104.2899999999414,-0.06860886282372856 +20859,104.2949999999414,-0.06860885991623554 +20860,104.29999999994139,-0.0686088570099725 +20861,104.30499999994139,-0.06860885410493901 +20862,104.30999999994138,-0.06860885120113469 +20863,104.31499999994138,-0.06860884829855908 +20864,104.31999999994137,-0.0686088453972118 +20865,104.32499999994137,-0.06860884249709245 +20866,104.32999999994136,-0.06860883959820062 +20867,104.33499999994136,-0.06860883670053587 +20868,104.33999999994136,-0.06860883380409782 +20869,104.34499999994135,-0.06860883090888606 +20870,104.34999999994135,-0.06860882801490018 +20871,104.35499999994134,-0.06860882512213974 +20872,104.35999999994134,-0.06860882223060437 +20873,104.36499999994133,-0.06860881934029364 +20874,104.36999999994133,-0.06860881645120714 +20875,104.37499999994132,-0.06860881356334449 +20876,104.37999999994132,-0.06860881067670525 +20877,104.38499999994131,-0.06860880779128903 +20878,104.38999999994131,-0.06860880490709542 +20879,104.3949999999413,-0.068608802024124 +20880,104.3999999999413,-0.06860879914237439 +20881,104.4049999999413,-0.06860879626184614 +20882,104.40999999994129,-0.06860879338253888 +20883,104.41499999994129,-0.06860879050445219 +20884,104.41999999994128,-0.06860878762758565 +20885,104.42499999994128,-0.06860878475193889 +20886,104.42999999994127,-0.06860878187751146 +20887,104.43499999994127,-0.06860877900430298 +20888,104.43999999994126,-0.06860877613231306 +20889,104.44499999994126,-0.06860877326154124 +20890,104.44999999994126,-0.06860877039198715 +20891,104.45499999994125,-0.06860876752365037 +20892,104.45999999994125,-0.06860876465653051 +20893,104.46499999994124,-0.06860876179062715 +20894,104.46999999994124,-0.0686087589259399 +20895,104.47499999994123,-0.06860875606246833 +20896,104.47999999994123,-0.06860875320021205 +20897,104.48499999994122,-0.06860875033917066 +20898,104.48999999994122,-0.06860874747934374 +20899,104.49499999994121,-0.06860874462073091 +20900,104.49999999994121,-0.06860874176333172 +20901,104.5049999999412,-0.0686087389071458 +20902,104.5099999999412,-0.06860873605217276 +20903,104.5149999999412,-0.06860873319841215 +20904,104.51999999994119,-0.06860873034586361 +20905,104.52499999994119,-0.0686087274945267 +20906,104.52999999994118,-0.06860872464440104 +20907,104.53499999994118,-0.0686087217954862 +20908,104.53999999994117,-0.0686087189477818 +20909,104.54499999994117,-0.06860871610128742 +20910,104.54999999994116,-0.06860871325600268 +20911,104.55499999994116,-0.06860871041192715 +20912,104.55999999994116,-0.06860870756906044 +20913,104.56499999994115,-0.06860870472740214 +20914,104.56999999994115,-0.06860870188695185 +20915,104.57499999994114,-0.06860869904770917 +20916,104.57999999994114,-0.06860869620967369 +20917,104.58499999994113,-0.06860869337284503 +20918,104.58999999994113,-0.06860869053722274 +20919,104.59499999994112,-0.06860868770280647 +20920,104.59999999994112,-0.06860868486959577 +20921,104.60499999994111,-0.06860868203759028 +20922,104.60999999994111,-0.06860867920678958 +20923,104.6149999999411,-0.06860867637719327 +20924,104.6199999999411,-0.06860867354880093 +20925,104.6249999999411,-0.06860867072161217 +20926,104.62999999994109,-0.0686086678956266 +20927,104.63499999994109,-0.06860866507084382 +20928,104.63999999994108,-0.06860866224726339 +20929,104.64499999994108,-0.06860865942488496 +20930,104.64999999994107,-0.0686086566037081 +20931,104.65499999994107,-0.0686086537837324 +20932,104.65999999994106,-0.0686086509649575 +20933,104.66499999994106,-0.06860864814738295 +20934,104.66999999994106,-0.0686086453310084 +20935,104.67499999994105,-0.0686086425158334 +20936,104.67999999994105,-0.06860863970185757 +20937,104.68499999994104,-0.06860863688908052 +20938,104.68999999994104,-0.06860863407750184 +20939,104.69499999994103,-0.06860863126712113 +20940,104.69999999994103,-0.06860862845793798 +20941,104.70499999994102,-0.06860862564995202 +20942,104.70999999994102,-0.06860862284316283 +20943,104.71499999994101,-0.06860862003757 +20944,104.71999999994101,-0.06860861723317313 +20945,104.724999999941,-0.06860861442997185 +20946,104.729999999941,-0.06860861162796575 +20947,104.734999999941,-0.0686086088271544 +20948,104.73999999994099,-0.06860860602753743 +20949,104.74499999994099,-0.06860860322911445 +20950,104.74999999994098,-0.06860860043188503 +20951,104.75499999994098,-0.06860859763584881 +20952,104.75999999994097,-0.06860859484100536 +20953,104.76499999994097,-0.0686085920473543 +20954,104.76999999994096,-0.06860858925489521 +20955,104.77499999994096,-0.06860858646362772 +20956,104.77999999994096,-0.06860858367355141 +20957,104.78499999994095,-0.06860858088466588 +20958,104.78999999994095,-0.06860857809697077 +20959,104.79499999994094,-0.06860857531046563 +20960,104.79999999994094,-0.0686085725251501 +20961,104.80499999994093,-0.06860856974102376 +20962,104.80999999994093,-0.06860856695808623 +20963,104.81499999994092,-0.0686085641763371 +20964,104.81999999994092,-0.06860856139577598 +20965,104.82499999994091,-0.06860855861640247 +20966,104.82999999994091,-0.06860855583821619 +20967,104.8349999999409,-0.06860855306121673 +20968,104.8399999999409,-0.06860855028540368 +20969,104.8449999999409,-0.06860854751077666 +20970,104.84999999994089,-0.06860854473733527 +20971,104.85499999994089,-0.0686085419650791 +20972,104.85999999994088,-0.06860853919400778 +20973,104.86499999994088,-0.0686085364241209 +20974,104.86999999994087,-0.06860853365541805 +20975,104.87499999994087,-0.06860853088789888 +20976,104.87999999994086,-0.06860852812156296 +20977,104.88499999994086,-0.06860852535640989 +20978,104.88999999994085,-0.06860852259243928 +20979,104.89499999994085,-0.06860851982965074 +20980,104.89999999994085,-0.06860851706804388 +20981,104.90499999994084,-0.0686085143076183 +20982,104.90999999994084,-0.0686085115483736 +20983,104.91499999994083,-0.06860850879030939 +20984,104.91999999994083,-0.06860850603342528 +20985,104.92499999994082,-0.06860850327772086 +20986,104.92999999994082,-0.06860850052319575 +20987,104.93499999994081,-0.06860849776984956 +20988,104.93999999994081,-0.06860849501768189 +20989,104.9449999999408,-0.06860849226669234 +20990,104.9499999999408,-0.06860848951688052 +20991,104.9549999999408,-0.06860848676824606 +20992,104.95999999994079,-0.06860848402078852 +20993,104.96499999994079,-0.06860848127450754 +20994,104.96999999994078,-0.06860847852940272 +20995,104.97499999994078,-0.06860847578547366 +20996,104.97999999994077,-0.06860847304271997 +20997,104.98499999994077,-0.06860847030114126 +20998,104.98999999994076,-0.06860846756073713 +20999,104.99499999994076,-0.0686084648215072 +21000,104.99999999994075,-0.06860846208345106 +21001,105.00499999994075,-0.06860845934656834 +21002,105.00999999994075,-0.06860845661085863 +21003,105.01499999994074,-0.06860845387632153 +21004,105.01999999994074,-0.06860845114295669 +21005,105.02499999994073,-0.06860844841076368 +21006,105.02999999994073,-0.0686084456797421 +21007,105.03499999994072,-0.0686084429498916 +21008,105.03999999994072,-0.06860844022121175 +21009,105.04499999994071,-0.06860843749370218 +21010,105.04999999994071,-0.0686084347673625 +21011,105.0549999999407,-0.0686084320421923 +21012,105.0599999999407,-0.06860842931819121 +21013,105.0649999999407,-0.06860842659535882 +21014,105.06999999994069,-0.06860842387369476 +21015,105.07499999994069,-0.06860842115319862 +21016,105.07999999994068,-0.06860841843387001 +21017,105.08499999994068,-0.06860841571570857 +21018,105.08999999994067,-0.06860841299871386 +21019,105.09499999994067,-0.06860841028288553 +21020,105.09999999994066,-0.06860840756822317 +21021,105.10499999994066,-0.0686084048547264 +21022,105.10999999994065,-0.06860840214239484 +21023,105.11499999994065,-0.06860839943122807 +21024,105.11999999994065,-0.06860839672122572 +21025,105.12499999994064,-0.0686083940123874 +21026,105.12999999994064,-0.06860839130471272 +21027,105.13499999994063,-0.06860838859820129 +21028,105.13999999994063,-0.06860838589285272 +21029,105.14499999994062,-0.0686083831886666 +21030,105.14999999994062,-0.0686083804856426 +21031,105.15499999994061,-0.06860837778378027 +21032,105.15999999994061,-0.06860837508307925 +21033,105.1649999999406,-0.06860837238353915 +21034,105.1699999999406,-0.06860836968515957 +21035,105.1749999999406,-0.06860836698794015 +21036,105.17999999994059,-0.06860836429188047 +21037,105.18499999994059,-0.06860836159698015 +21038,105.18999999994058,-0.06860835890323881 +21039,105.19499999994058,-0.06860835621065606 +21040,105.19999999994057,-0.06860835351923152 +21041,105.20499999994057,-0.06860835082896477 +21042,105.20999999994056,-0.06860834813985546 +21043,105.21499999994056,-0.06860834545190321 +21044,105.21999999994055,-0.06860834276510759 +21045,105.22499999994055,-0.06860834007946824 +21046,105.22999999994055,-0.06860833739498476 +21047,105.23499999994054,-0.06860833471165678 +21048,105.23999999994054,-0.06860833202948391 +21049,105.24499999994053,-0.06860832934846575 +21050,105.24999999994053,-0.06860832666860192 +21051,105.25499999994052,-0.06860832398989204 +21052,105.25999999994052,-0.06860832131233573 +21053,105.26499999994051,-0.06860831863593256 +21054,105.26999999994051,-0.0686083159606822 +21055,105.2749999999405,-0.06860831328658425 +21056,105.2799999999405,-0.06860831061363831 +21057,105.2849999999405,-0.06860830794184399 +21058,105.28999999994049,-0.06860830527120092 +21059,105.29499999994049,-0.06860830260170872 +21060,105.29999999994048,-0.06860829993336698 +21061,105.30499999994048,-0.06860829726617533 +21062,105.30999999994047,-0.06860829460013339 +21063,105.31499999994047,-0.06860829193524078 +21064,105.31999999994046,-0.06860828927149709 +21065,105.32499999994046,-0.06860828660890195 +21066,105.32999999994045,-0.06860828394745498 +21067,105.33499999994045,-0.06860828128715579 +21068,105.33999999994045,-0.068608278628004 +21069,105.34499999994044,-0.06860827596999923 +21070,105.34999999994044,-0.06860827331314108 +21071,105.35499999994043,-0.0686082706574292 +21072,105.35999999994043,-0.06860826800286314 +21073,105.36499999994042,-0.06860826534944257 +21074,105.36999999994042,-0.0686082626971671 +21075,105.37499999994041,-0.06860826004603635 +21076,105.37999999994041,-0.06860825739604992 +21077,105.3849999999404,-0.06860825474720744 +21078,105.3899999999404,-0.06860825209950852 +21079,105.3949999999404,-0.06860824945295278 +21080,105.39999999994039,-0.06860824680753982 +21081,105.40499999994039,-0.0686082441632693 +21082,105.40999999994038,-0.0686082415201408 +21083,105.41499999994038,-0.06860823887815395 +21084,105.41999999994037,-0.06860823623730837 +21085,105.42499999994037,-0.06860823359760368 +21086,105.42999999994036,-0.06860823095903948 +21087,105.43499999994036,-0.0686082283216154 +21088,105.43999999994035,-0.06860822568533106 +21089,105.44499999994035,-0.06860822305018609 +21090,105.44999999994035,-0.06860822041618007 +21091,105.45499999994034,-0.06860821778331266 +21092,105.45999999994034,-0.06860821515158347 +21093,105.46499999994033,-0.0686082125209921 +21094,105.46999999994033,-0.06860820989153818 +21095,105.47499999994032,-0.06860820726322134 +21096,105.47999999994032,-0.06860820463604117 +21097,105.48499999994031,-0.06860820200999732 +21098,105.48999999994031,-0.0686081993850894 +21099,105.4949999999403,-0.06860819676131702 +21100,105.4999999999403,-0.0686081941386798 +21101,105.5049999999403,-0.06860819151717737 +21102,105.50999999994029,-0.06860818889680935 +21103,105.51499999994029,-0.06860818627757535 +21104,105.51999999994028,-0.068608183659475 +21105,105.52499999994028,-0.06860818104250792 +21106,105.52999999994027,-0.06860817842667373 +21107,105.53499999994027,-0.06860817581197205 +21108,105.53999999994026,-0.06860817319840248 +21109,105.54499999994026,-0.06860817058596468 +21110,105.54999999994025,-0.06860816797465823 +21111,105.55499999994025,-0.06860816536448278 +21112,105.55999999994025,-0.06860816275543793 +21113,105.56499999994024,-0.06860816014752333 +21114,105.56999999994024,-0.06860815754073857 +21115,105.57499999994023,-0.06860815493508328 +21116,105.57999999994023,-0.06860815233055709 +21117,105.58499999994022,-0.06860814972715963 +21118,105.58999999994022,-0.06860814712489051 +21119,105.59499999994021,-0.06860814452374935 +21120,105.59999999994021,-0.06860814192373578 +21121,105.6049999999402,-0.06860813932484941 +21122,105.6099999999402,-0.06860813672708986 +21123,105.6149999999402,-0.06860813413045676 +21124,105.61999999994019,-0.06860813153494974 +21125,105.62499999994019,-0.0686081289405684 +21126,105.62999999994018,-0.0686081263473124 +21127,105.63499999994018,-0.06860812375518134 +21128,105.63999999994017,-0.06860812116417483 +21129,105.64499999994017,-0.06860811857429253 +21130,105.64999999994016,-0.06860811598553401 +21131,105.65499999994016,-0.06860811339789895 +21132,105.65999999994015,-0.06860811081138694 +21133,105.66499999994015,-0.06860810822599761 +21134,105.66999999994015,-0.06860810564173059 +21135,105.67499999994014,-0.06860810305858549 +21136,105.67999999994014,-0.06860810047656195 +21137,105.68499999994013,-0.06860809789565957 +21138,105.68999999994013,-0.068608095315878 +21139,105.69499999994012,-0.06860809273721687 +21140,105.69999999994012,-0.06860809015967577 +21141,105.70499999994011,-0.06860808758325435 +21142,105.70999999994011,-0.06860808500795222 +21143,105.7149999999401,-0.06860808243376904 +21144,105.7199999999401,-0.06860807986070439 +21145,105.7249999999401,-0.0686080772887579 +21146,105.72999999994009,-0.06860807471792922 +21147,105.73499999994009,-0.06860807214821796 +21148,105.73999999994008,-0.06860806957962375 +21149,105.74499999994008,-0.06860806701214621 +21150,105.74999999994007,-0.06860806444578497 +21151,105.75499999994007,-0.06860806188053967 +21152,105.75999999994006,-0.06860805931640991 +21153,105.76499999994006,-0.06860805675339533 +21154,105.76999999994005,-0.06860805419149556 +21155,105.77499999994005,-0.06860805163071021 +21156,105.77999999994005,-0.06860804907103892 +21157,105.78499999994004,-0.06860804651248131 +21158,105.78999999994004,-0.068608043955037 +21159,105.79499999994003,-0.06860804139870563 +21160,105.79999999994003,-0.06860803884348683 +21161,105.80499999994002,-0.06860803628938021 +21162,105.80999999994002,-0.06860803373638541 +21163,105.81499999994001,-0.06860803118450205 +21164,105.81999999994001,-0.06860802863372976 +21165,105.82499999994,-0.06860802608406817 +21166,105.82999999994,-0.06860802353551691 +21167,105.83499999994,-0.0686080209880756 +21168,105.83999999993999,-0.06860801844174386 +21169,105.84499999993999,-0.06860801589652132 +21170,105.84999999993998,-0.06860801335240763 +21171,105.85499999993998,-0.0686080108094024 +21172,105.85999999993997,-0.06860800826750527 +21173,105.86499999993997,-0.06860800572671584 +21174,105.86999999993996,-0.06860800318703378 +21175,105.87499999993996,-0.06860800064845869 +21176,105.87999999993995,-0.06860799811099019 +21177,105.88499999993995,-0.06860799557462793 +21178,105.88999999993995,-0.06860799303937155 +21179,105.89499999993994,-0.06860799050522065 +21180,105.89999999993994,-0.06860798797217488 +21181,105.90499999993993,-0.06860798544023385 +21182,105.90999999993993,-0.0686079829093972 +21183,105.91499999993992,-0.06860798037966455 +21184,105.91999999993992,-0.06860797785103556 +21185,105.92499999993991,-0.06860797532350982 +21186,105.92999999993991,-0.06860797279708698 +21187,105.9349999999399,-0.06860797027176668 +21188,105.9399999999399,-0.06860796774754853 +21189,105.9449999999399,-0.06860796522443216 +21190,105.94999999993989,-0.06860796270241723 +21191,105.95499999993989,-0.06860796018150334 +21192,105.95999999993988,-0.06860795766169013 +21193,105.96499999993988,-0.06860795514297723 +21194,105.96999999993987,-0.06860795262536425 +21195,105.97499999993987,-0.06860795010885086 +21196,105.97999999993986,-0.06860794759343666 +21197,105.98499999993986,-0.06860794507912131 +21198,105.98999999993985,-0.06860794256590441 +21199,105.99499999993985,-0.06860794005378561 +21200,105.99999999993985,-0.06860793754276455 +21201,106.00499999993984,-0.06860793503284084 +21202,106.00999999993984,-0.0686079325240141 +21203,106.01499999993983,-0.068607930016284 +21204,106.01999999993983,-0.06860792750965015 +21205,106.02499999993982,-0.0686079250041122 +21206,106.02999999993982,-0.06860792249966975 +21207,106.03499999993981,-0.06860791999632247 +21208,106.03999999993981,-0.06860791749406996 +21209,106.0449999999398,-0.06860791499291186 +21210,106.0499999999398,-0.06860791249284781 +21211,106.0549999999398,-0.06860790999387746 +21212,106.05999999993979,-0.0686079074960004 +21213,106.06499999993979,-0.0686079049992163 +21214,106.06999999993978,-0.06860790250352478 +21215,106.07499999993978,-0.06860790000892546 +21216,106.07999999993977,-0.06860789751541799 +21217,106.08499999993977,-0.06860789502300199 +21218,106.08999999993976,-0.06860789253167711 +21219,106.09499999993976,-0.06860789004144298 +21220,106.09999999993975,-0.06860788755229921 +21221,106.10499999993975,-0.06860788506424548 +21222,106.10999999993975,-0.06860788257728138 +21223,106.11499999993974,-0.06860788009140657 +21224,106.11999999993974,-0.06860787760662068 +21225,106.12499999993973,-0.06860787512292334 +21226,106.12999999993973,-0.06860787264031418 +21227,106.13499999993972,-0.06860787015879283 +21228,106.13999999993972,-0.06860786767835893 +21229,106.14499999993971,-0.06860786519901213 +21230,106.14999999993971,-0.06860786272075203 +21231,106.1549999999397,-0.06860786024357832 +21232,106.1599999999397,-0.0686078577674906 +21233,106.1649999999397,-0.06860785529248849 +21234,106.16999999993969,-0.06860785281857165 +21235,106.17499999993969,-0.06860785034573971 +21236,106.17999999993968,-0.0686078478739923 +21237,106.18499999993968,-0.06860784540332907 +21238,106.18999999993967,-0.06860784293374964 +21239,106.19499999993967,-0.06860784046525364 +21240,106.19999999993966,-0.06860783799784073 +21241,106.20499999993966,-0.06860783553151054 +21242,106.20999999993965,-0.06860783306626268 +21243,106.21499999993965,-0.06860783060209683 +21244,106.21999999993965,-0.0686078281390126 +21245,106.22499999993964,-0.06860782567700961 +21246,106.22999999993964,-0.06860782321608754 +21247,106.23499999993963,-0.068607820756246 +21248,106.23999999993963,-0.06860781829748464 +21249,106.24499999993962,-0.06860781583980305 +21250,106.24999999993962,-0.06860781338320093 +21251,106.25499999993961,-0.06860781092767788 +21252,106.25999999993961,-0.06860780847323356 +21253,106.2649999999396,-0.0686078060198676 +21254,106.2699999999396,-0.06860780356757963 +21255,106.2749999999396,-0.06860780111636929 +21256,106.27999999993959,-0.06860779866623622 +21257,106.28499999993959,-0.06860779621718005 +21258,106.28999999993958,-0.06860779376920044 +21259,106.29499999993958,-0.06860779132229701 +21260,106.29999999993957,-0.06860778887646939 +21261,106.30499999993957,-0.06860778643171724 +21262,106.30999999993956,-0.06860778398804018 +21263,106.31499999993956,-0.06860778154543788 +21264,106.31999999993955,-0.06860777910390993 +21265,106.32499999993955,-0.06860777666345601 +21266,106.32999999993955,-0.06860777422407574 +21267,106.33499999993954,-0.06860777178576877 +21268,106.33999999993954,-0.06860776934853471 +21269,106.34499999993953,-0.06860776691237325 +21270,106.34999999993953,-0.06860776447728399 +21271,106.35499999993952,-0.06860776204326659 +21272,106.35999999993952,-0.06860775961032067 +21273,106.36499999993951,-0.06860775717844587 +21274,106.36999999993951,-0.06860775474764186 +21275,106.3749999999395,-0.06860775231790825 +21276,106.3799999999395,-0.0686077498892447 +21277,106.3849999999395,-0.06860774746165084 +21278,106.38999999993949,-0.0686077450351263 +21279,106.39499999993949,-0.06860774260967074 +21280,106.39999999993948,-0.06860774018528379 +21281,106.40499999993948,-0.0686077377619651 +21282,106.40999999993947,-0.0686077353397143 +21283,106.41499999993947,-0.06860773291853103 +21284,106.41999999993946,-0.06860773049841494 +21285,106.42499999993946,-0.06860772807936566 +21286,106.42999999993945,-0.06860772566138283 +21287,106.43499999993945,-0.06860772324446611 +21288,106.43999999993945,-0.06860772082861513 +21289,106.44499999993944,-0.06860771841382954 +21290,106.44999999993944,-0.06860771600010895 +21291,106.45499999993943,-0.06860771358745305 +21292,106.45999999993943,-0.06860771117586145 +21293,106.46499999993942,-0.0686077087653338 +21294,106.46999999993942,-0.06860770635586974 +21295,106.47499999993941,-0.0686077039474689 +21296,106.47999999993941,-0.06860770154013096 +21297,106.4849999999394,-0.06860769913385553 +21298,106.4899999999394,-0.06860769672864227 +21299,106.4949999999394,-0.0686076943244908 +21300,106.49999999993939,-0.06860769192140079 +21301,106.50499999993939,-0.06860768951937186 +21302,106.50999999993938,-0.06860768711840366 +21303,106.51499999993938,-0.06860768471849585 +21304,106.51999999993937,-0.06860768231964805 +21305,106.52499999993937,-0.06860767992185991 +21306,106.52999999993936,-0.06860767752513108 +21307,106.53499999993936,-0.0686076751294612 +21308,106.53999999993935,-0.06860767273484991 +21309,106.54499999993935,-0.06860767034129688 +21310,106.54999999993935,-0.06860766794880169 +21311,106.55499999993934,-0.06860766555736404 +21312,106.55999999993934,-0.06860766316698357 +21313,106.56499999993933,-0.06860766077765992 +21314,106.56999999993933,-0.06860765838939271 +21315,106.57499999993932,-0.06860765600218162 +21316,106.57999999993932,-0.06860765361602628 +21317,106.58499999993931,-0.06860765123092631 +21318,106.58999999993931,-0.06860764884688139 +21319,106.5949999999393,-0.06860764646389114 +21320,106.5999999999393,-0.06860764408195523 +21321,106.6049999999393,-0.0686076417010733 +21322,106.60999999993929,-0.06860763932124497 +21323,106.61499999993929,-0.06860763694246991 +21324,106.61999999993928,-0.06860763456474776 +21325,106.62499999993928,-0.06860763218807815 +21326,106.62999999993927,-0.06860762981246075 +21327,106.63499999993927,-0.06860762743789521 +21328,106.63999999993926,-0.06860762506438114 +21329,106.64499999993926,-0.06860762269191821 +21330,106.64999999993925,-0.06860762032050607 +21331,106.65499999993925,-0.06860761795014436 +21332,106.65999999993925,-0.06860761558083273 +21333,106.66499999993924,-0.06860761321257083 +21334,106.66999999993924,-0.06860761084535828 +21335,106.67499999993923,-0.06860760847919475 +21336,106.67999999993923,-0.06860760611407989 +21337,106.68499999993922,-0.06860760375001335 +21338,106.68999999993922,-0.06860760138699475 +21339,106.69499999993921,-0.06860759902502377 +21340,106.69999999993921,-0.06860759666410002 +21341,106.7049999999392,-0.06860759430422317 +21342,106.7099999999392,-0.06860759194539288 +21343,106.7149999999392,-0.06860758958760879 +21344,106.71999999993919,-0.06860758723087054 +21345,106.72499999993919,-0.06860758487517776 +21346,106.72999999993918,-0.06860758252053013 +21347,106.73499999993918,-0.06860758016692729 +21348,106.73999999993917,-0.06860757781436888 +21349,106.74499999993917,-0.06860757546285455 +21350,106.74999999993916,-0.06860757311238397 +21351,106.75499999993916,-0.06860757076295675 +21352,106.75999999993915,-0.06860756841457255 +21353,106.76499999993915,-0.06860756606723105 +21354,106.76999999993915,-0.06860756372093187 +21355,106.77499999993914,-0.06860756137567466 +21356,106.77999999993914,-0.06860755903145906 +21357,106.78499999993913,-0.06860755668828475 +21358,106.78999999993913,-0.06860755434615134 +21359,106.79499999993912,-0.06860755200505853 +21360,106.79999999993912,-0.06860754966500592 +21361,106.80499999993911,-0.06860754732599318 +21362,106.80999999993911,-0.06860754498801996 +21363,106.8149999999391,-0.06860754265108593 +21364,106.8199999999391,-0.0686075403151907 +21365,106.8249999999391,-0.06860753798033396 +21366,106.82999999993909,-0.06860753564651534 +21367,106.83499999993909,-0.06860753331373447 +21368,106.83999999993908,-0.06860753098199102 +21369,106.84499999993908,-0.06860752865128465 +21370,106.84999999993907,-0.06860752632161501 +21371,106.85499999993907,-0.06860752399298174 +21372,106.85999999993906,-0.06860752166538449 +21373,106.86499999993906,-0.0686075193388229 +21374,106.86999999993905,-0.06860751701329666 +21375,106.87499999993905,-0.06860751468880538 +21376,106.87999999993905,-0.06860751236534875 +21377,106.88499999993904,-0.06860751004292637 +21378,106.88999999993904,-0.06860750772153792 +21379,106.89499999993903,-0.06860750540118307 +21380,106.89999999993903,-0.06860750308186145 +21381,106.90499999993902,-0.06860750076357272 +21382,106.90999999993902,-0.06860749844631651 +21383,106.91499999993901,-0.0686074961300925 +21384,106.91999999993901,-0.06860749381490033 +21385,106.924999999939,-0.06860749150073966 +21386,106.929999999939,-0.06860748918761014 +21387,106.934999999939,-0.06860748687551141 +21388,106.93999999993899,-0.06860748456444314 +21389,106.94499999993899,-0.06860748225440497 +21390,106.94999999993898,-0.06860747994539657 +21391,106.95499999993898,-0.06860747763741756 +21392,106.95999999993897,-0.06860747533046763 +21393,106.96499999993897,-0.0686074730245464 +21394,106.96999999993896,-0.06860747071965353 +21395,106.97499999993896,-0.0686074684157887 +21396,106.97999999993895,-0.06860746611295154 +21397,106.98499999993895,-0.06860746381114172 +21398,106.98999999993895,-0.06860746151035887 +21399,106.99499999993894,-0.06860745921060267 +21400,106.99999999993894,-0.06860745691187276 +21401,107.00499999993893,-0.06860745461416878 +21402,107.00999999993893,-0.06860745231749041 +21403,107.01499999993892,-0.0686074500218373 +21404,107.01999999993892,-0.06860744772720909 +21405,107.02499999993891,-0.06860744543360545 +21406,107.02999999993891,-0.06860744314102603 +21407,107.0349999999389,-0.06860744084947047 +21408,107.0399999999389,-0.06860743855893843 +21409,107.0449999999389,-0.06860743626942957 +21410,107.04999999993889,-0.06860743398094356 +21411,107.05499999993889,-0.06860743169348003 +21412,107.05999999993888,-0.06860742940703866 +21413,107.06499999993888,-0.0686074271216191 +21414,107.06999999993887,-0.06860742483722097 +21415,107.07499999993887,-0.06860742255384397 +21416,107.07999999993886,-0.06860742027148774 +21417,107.08499999993886,-0.06860741799015194 +21418,107.08999999993885,-0.0686074157098362 +21419,107.09499999993885,-0.06860741343054019 +21420,107.09999999993885,-0.06860741115226358 +21421,107.10499999993884,-0.06860740887500603 +21422,107.10999999993884,-0.06860740659876717 +21423,107.11499999993883,-0.06860740432354667 +21424,107.11999999993883,-0.06860740204934421 +21425,107.12499999993882,-0.0686073997761594 +21426,107.12999999993882,-0.06860739750399193 +21427,107.13499999993881,-0.06860739523284146 +21428,107.13999999993881,-0.06860739296270763 +21429,107.1449999999388,-0.06860739069359008 +21430,107.1499999999388,-0.0686073884254885 +21431,107.1549999999388,-0.06860738615840253 +21432,107.15999999993879,-0.06860738389233184 +21433,107.16499999993879,-0.06860738162727609 +21434,107.16999999993878,-0.06860737936323491 +21435,107.17499999993878,-0.06860737710020799 +21436,107.17999999993877,-0.06860737483819496 +21437,107.18499999993877,-0.0686073725771955 +21438,107.18999999993876,-0.06860737031720925 +21439,107.19499999993876,-0.06860736805823588 +21440,107.19999999993875,-0.06860736580027504 +21441,107.20499999993875,-0.06860736354332642 +21442,107.20999999993874,-0.06860736128738963 +21443,107.21499999993874,-0.06860735903246437 +21444,107.21999999993874,-0.06860735677855027 +21445,107.22499999993873,-0.068607354525647 +21446,107.22999999993873,-0.06860735227375422 +21447,107.23499999993872,-0.06860735002287159 +21448,107.23999999993872,-0.06860734777299875 +21449,107.24499999993871,-0.06860734552413539 +21450,107.24999999993871,-0.06860734327628114 +21451,107.2549999999387,-0.06860734102943569 +21452,107.2599999999387,-0.06860733878359868 +21453,107.2649999999387,-0.06860733653876976 +21454,107.26999999993869,-0.0686073342949486 +21455,107.27499999993869,-0.06860733205213489 +21456,107.27999999993868,-0.06860732981032824 +21457,107.28499999993868,-0.06860732756952834 +21458,107.28999999993867,-0.06860732532973483 +21459,107.29499999993867,-0.06860732309094739 +21460,107.29999999993866,-0.06860732085316568 +21461,107.30499999993866,-0.06860731861638936 +21462,107.30999999993865,-0.06860731638061807 +21463,107.31499999993865,-0.06860731414585147 +21464,107.31999999993864,-0.06860731191208926 +21465,107.32499999993864,-0.06860730967933107 +21466,107.32999999993864,-0.06860730744757657 +21467,107.33499999993863,-0.06860730521682541 +21468,107.33999999993863,-0.06860730298707726 +21469,107.34499999993862,-0.0686073007583318 +21470,107.34999999993862,-0.06860729853058865 +21471,107.35499999993861,-0.0686072963038475 +21472,107.35999999993861,-0.06860729407810802 +21473,107.3649999999386,-0.06860729185336985 +21474,107.3699999999386,-0.06860728962963265 +21475,107.3749999999386,-0.06860728740689609 +21476,107.37999999993859,-0.06860728518515984 +21477,107.38499999993859,-0.06860728296442356 +21478,107.38999999993858,-0.0686072807446869 +21479,107.39499999993858,-0.06860727852594954 +21480,107.39999999993857,-0.06860727630821113 +21481,107.40499999993857,-0.06860727409147134 +21482,107.40999999993856,-0.06860727187572982 +21483,107.41499999993856,-0.06860726966098625 +21484,107.41999999993855,-0.06860726744724027 +21485,107.42499999993855,-0.06860726523449158 +21486,107.42999999993854,-0.0686072630227398 +21487,107.43499999993854,-0.06860726081198462 +21488,107.43999999993854,-0.0686072586022257 +21489,107.44499999993853,-0.0686072563934627 +21490,107.44999999993853,-0.06860725418569527 +21491,107.45499999993852,-0.0686072519789231 +21492,107.45999999993852,-0.06860724977314583 +21493,107.46499999993851,-0.06860724756836314 +21494,107.46999999993851,-0.06860724536457471 +21495,107.4749999999385,-0.06860724316178016 +21496,107.4799999999385,-0.0686072409599792 +21497,107.4849999999385,-0.06860723875917145 +21498,107.48999999993849,-0.0686072365593566 +21499,107.49499999993849,-0.06860723436053433 +21500,107.49999999993848,-0.06860723216270427 +21501,107.50499999993848,-0.0686072299658661 +21502,107.50999999993847,-0.06860722777001949 +21503,107.51499999993847,-0.06860722557516408 +21504,107.51999999993846,-0.06860722338129958 +21505,107.52499999993846,-0.06860722118842562 +21506,107.52999999993845,-0.06860721899654187 +21507,107.53499999993845,-0.068607216805648 +21508,107.53999999993844,-0.0686072146157437 +21509,107.54499999993844,-0.0686072124268286 +21510,107.54999999993844,-0.06860721023890237 +21511,107.55499999993843,-0.06860720805196469 +21512,107.55999999993843,-0.06860720586601522 +21513,107.56499999993842,-0.06860720368105362 +21514,107.56999999993842,-0.06860720149707956 +21515,107.57499999993841,-0.06860719931409272 +21516,107.57999999993841,-0.06860719713209273 +21517,107.5849999999384,-0.06860719495107931 +21518,107.5899999999384,-0.06860719277105208 +21519,107.5949999999384,-0.06860719059201073 +21520,107.59999999993839,-0.06860718841395491 +21521,107.60499999993839,-0.06860718623688432 +21522,107.60999999993838,-0.06860718406079859 +21523,107.61499999993838,-0.06860718188569741 +21524,107.61999999993837,-0.06860717971158041 +21525,107.62499999993837,-0.0686071775384473 +21526,107.62999999993836,-0.06860717536629773 +21527,107.63499999993836,-0.06860717319513138 +21528,107.63999999993835,-0.0686071710249479 +21529,107.64499999993835,-0.06860716885574698 +21530,107.64999999993834,-0.06860716668752827 +21531,107.65499999993834,-0.06860716452029143 +21532,107.65999999993834,-0.06860716235403615 +21533,107.66499999993833,-0.06860716018876208 +21534,107.66999999993833,-0.0686071580244689 +21535,107.67499999993832,-0.06860715586115627 +21536,107.67999999993832,-0.06860715369882386 +21537,107.68499999993831,-0.06860715153747135 +21538,107.68999999993831,-0.0686071493770984 +21539,107.6949999999383,-0.06860714721770467 +21540,107.6999999999383,-0.06860714505928983 +21541,107.7049999999383,-0.06860714290185357 +21542,107.70999999993829,-0.06860714074539556 +21543,107.71499999993829,-0.06860713858991543 +21544,107.71999999993828,-0.06860713643541289 +21545,107.72499999993828,-0.06860713428188758 +21546,107.72999999993827,-0.0686071321293392 +21547,107.73499999993827,-0.06860712997776737 +21548,107.73999999993826,-0.06860712782717181 +21549,107.74499999993826,-0.06860712567755217 +21550,107.74999999993825,-0.06860712352890813 +21551,107.75499999993825,-0.06860712138123934 +21552,107.75999999993824,-0.06860711923454547 +21553,107.76499999993824,-0.06860711708882623 +21554,107.76999999993824,-0.06860711494408125 +21555,107.77499999993823,-0.0686071128003102 +21556,107.77999999993823,-0.06860711065751278 +21557,107.78499999993822,-0.06860710851568864 +21558,107.78999999993822,-0.06860710637483744 +21559,107.79499999993821,-0.06860710423495889 +21560,107.79999999993821,-0.06860710209605261 +21561,107.8049999999382,-0.06860709995811831 +21562,107.8099999999382,-0.06860709782115565 +21563,107.8149999999382,-0.0686070956851643 +21564,107.81999999993819,-0.06860709355014391 +21565,107.82499999993819,-0.0686070914160942 +21566,107.82999999993818,-0.06860708928301479 +21567,107.83499999993818,-0.06860708715090538 +21568,107.83999999993817,-0.06860708501976565 +21569,107.84499999993817,-0.06860708288959524 +21570,107.84999999993816,-0.06860708076039386 +21571,107.85499999993816,-0.06860707863216114 +21572,107.85999999993815,-0.0686070765048968 +21573,107.86499999993815,-0.06860707437860047 +21574,107.86999999993814,-0.06860707225327185 +21575,107.87499999993814,-0.06860707012891061 +21576,107.87999999993814,-0.0686070680055164 +21577,107.88499999993813,-0.0686070658830889 +21578,107.88999999993813,-0.06860706376162781 +21579,107.89499999993812,-0.06860706164113277 +21580,107.89999999993812,-0.06860705952160348 +21581,107.90499999993811,-0.06860705740303957 +21582,107.90999999993811,-0.06860705528544077 +21583,107.9149999999381,-0.06860705316880672 +21584,107.9199999999381,-0.06860705105313708 +21585,107.9249999999381,-0.06860704893843156 +21586,107.92999999993809,-0.06860704682468982 +21587,107.93499999993809,-0.06860704471191151 +21588,107.93999999993808,-0.06860704260009634 +21589,107.94499999993808,-0.06860704048924396 +21590,107.94999999993807,-0.06860703837935406 +21591,107.95499999993807,-0.06860703627042629 +21592,107.95999999993806,-0.06860703416246035 +21593,107.96499999993806,-0.0686070320554559 +21594,107.96999999993805,-0.06860702994941263 +21595,107.97499999993805,-0.0686070278443302 +21596,107.97999999993804,-0.06860702574020829 +21597,107.98499999993804,-0.06860702363704657 +21598,107.98999999993804,-0.0686070215348447 +21599,107.99499999993803,-0.0686070194336024 +21600,107.99999999993803,-0.0686070173333193 +21601,108.00499999993802,-0.06860701523399508 +21602,108.00999999993802,-0.06860701313562945 +21603,108.01499999993801,-0.06860701103822206 +21604,108.01999999993801,-0.06860700894177257 +21605,108.024999999938,-0.0686070068462807 +21606,108.029999999938,-0.0686070047517461 +21607,108.034999999938,-0.06860700265816842 +21608,108.03999999993799,-0.06860700056554739 +21609,108.04499999993799,-0.06860699847388264 +21610,108.04999999993798,-0.06860699638317387 +21611,108.05499999993798,-0.06860699429342074 +21612,108.05999999993797,-0.06860699220462295 +21613,108.06499999993797,-0.06860699011678013 +21614,108.06999999993796,-0.06860698802989203 +21615,108.07499999993796,-0.06860698594395827 +21616,108.07999999993795,-0.06860698385897854 +21617,108.08499999993795,-0.06860698177495252 +21618,108.08999999993794,-0.06860697969187989 +21619,108.09499999993794,-0.06860697760976031 +21620,108.09999999993794,-0.06860697552859348 +21621,108.10499999993793,-0.06860697344837907 +21622,108.10999999993793,-0.06860697136911675 +21623,108.11499999993792,-0.06860696929080619 +21624,108.11999999993792,-0.0686069672134471 +21625,108.12499999993791,-0.06860696513703911 +21626,108.12999999993791,-0.06860696306158194 +21627,108.1349999999379,-0.06860696098707525 +21628,108.1399999999379,-0.06860695891351873 +21629,108.1449999999379,-0.06860695684091203 +21630,108.14999999993789,-0.06860695476925485 +21631,108.15499999993789,-0.06860695269854687 +21632,108.15999999993788,-0.06860695062878777 +21633,108.16499999993788,-0.06860694855997722 +21634,108.16999999993787,-0.06860694649211489 +21635,108.17499999993787,-0.06860694442520048 +21636,108.17999999993786,-0.06860694235923365 +21637,108.18499999993786,-0.06860694029421409 +21638,108.18999999993785,-0.06860693823014147 +21639,108.19499999993785,-0.06860693616701548 +21640,108.19999999993784,-0.06860693410483579 +21641,108.20499999993784,-0.06860693204360208 +21642,108.20999999993784,-0.06860692998331402 +21643,108.21499999993783,-0.06860692792397131 +21644,108.21999999993783,-0.06860692586557363 +21645,108.22499999993782,-0.06860692380812064 +21646,108.22999999993782,-0.06860692175161204 +21647,108.23499999993781,-0.06860691969604749 +21648,108.23999999993781,-0.06860691764142668 +21649,108.2449999999378,-0.06860691558774928 +21650,108.2499999999378,-0.068606913535015 +21651,108.2549999999378,-0.06860691148322348 +21652,108.25999999993779,-0.06860690943237444 +21653,108.26499999993779,-0.06860690738246752 +21654,108.26999999993778,-0.06860690533350244 +21655,108.27499999993778,-0.06860690328547885 +21656,108.27999999993777,-0.06860690123839645 +21657,108.28499999993777,-0.0686068991922549 +21658,108.28999999993776,-0.0686068971470539 +21659,108.29499999993776,-0.06860689510279314 +21660,108.29999999993775,-0.06860689305947228 +21661,108.30499999993775,-0.068606891017091 +21662,108.30999999993774,-0.068606888975649 +21663,108.31499999993774,-0.06860688693514594 +21664,108.31999999993774,-0.06860688489558152 +21665,108.32499999993773,-0.0686068828569554 +21666,108.32999999993773,-0.06860688081926729 +21667,108.33499999993772,-0.06860687878251685 +21668,108.33999999993772,-0.06860687674670378 +21669,108.34499999993771,-0.06860687471182775 +21670,108.34999999993771,-0.06860687267788844 +21671,108.3549999999377,-0.06860687064488553 +21672,108.3599999999377,-0.06860686861281871 +21673,108.3649999999377,-0.06860686658168767 +21674,108.36999999993769,-0.06860686455149206 +21675,108.37499999993769,-0.06860686252223161 +21676,108.37999999993768,-0.06860686049390598 +21677,108.38499999993768,-0.06860685846651483 +21678,108.38999999993767,-0.06860685644005789 +21679,108.39499999993767,-0.06860685441453479 +21680,108.39999999993766,-0.06860685238994527 +21681,108.40499999993766,-0.06860685036628895 +21682,108.40999999993765,-0.06860684834356558 +21683,108.41499999993765,-0.06860684632177479 +21684,108.41999999993764,-0.06860684430091628 +21685,108.42499999993764,-0.06860684228098975 +21686,108.42999999993764,-0.06860684026199486 +21687,108.43499999993763,-0.06860683824393132 +21688,108.43999999993763,-0.06860683622679879 +21689,108.44499999993762,-0.06860683421059698 +21690,108.44999999993762,-0.06860683219532554 +21691,108.45499999993761,-0.06860683018098418 +21692,108.45999999993761,-0.06860682816757258 +21693,108.4649999999376,-0.06860682615509041 +21694,108.4699999999376,-0.06860682414353736 +21695,108.4749999999376,-0.06860682213291312 +21696,108.47999999993759,-0.0686068201232174 +21697,108.48499999993759,-0.06860681811444982 +21698,108.48999999993758,-0.06860681610661012 +21699,108.49499999993758,-0.06860681409969799 +21700,108.49999999993757,-0.06860681209371308 +21701,108.50499999993757,-0.06860681008865509 +21702,108.50999999993756,-0.0686068080845237 +21703,108.51499999993756,-0.0686068060813186 +21704,108.51999999993755,-0.06860680407903948 +21705,108.52499999993755,-0.06860680207768602 +21706,108.52999999993754,-0.0686068000772579 +21707,108.53499999993754,-0.06860679807775481 +21708,108.53999999993754,-0.06860679607917647 +21709,108.54499999993753,-0.06860679408152251 +21710,108.54999999993753,-0.06860679208479264 +21711,108.55499999993752,-0.06860679008898656 +21712,108.55999999993752,-0.06860678809410393 +21713,108.56499999993751,-0.06860678610014447 +21714,108.56999999993751,-0.06860678410710783 +21715,108.5749999999375,-0.06860678211499373 +21716,108.5799999999375,-0.06860678012380182 +21717,108.5849999999375,-0.06860677813353182 +21718,108.58999999993749,-0.0686067761441834 +21719,108.59499999993749,-0.06860677415575625 +21720,108.59999999993748,-0.06860677216825008 +21721,108.60499999993748,-0.06860677018166453 +21722,108.60999999993747,-0.06860676819599933 +21723,108.61499999993747,-0.06860676621125414 +21724,108.61999999993746,-0.06860676422742866 +21725,108.62499999993746,-0.06860676224452257 +21726,108.62999999993745,-0.06860676026253558 +21727,108.63499999993745,-0.06860675828146734 +21728,108.63999999993744,-0.06860675630131756 +21729,108.64499999993744,-0.06860675432208593 +21730,108.64999999993744,-0.06860675234377214 +21731,108.65499999993743,-0.06860675036637588 +21732,108.65999999993743,-0.06860674838989682 +21733,108.66499999993742,-0.06860674641433466 +21734,108.66999999993742,-0.0686067444396891 +21735,108.67499999993741,-0.0686067424659598 +21736,108.67999999993741,-0.06860674049314648 +21737,108.6849999999374,-0.06860673852124881 +21738,108.6899999999374,-0.06860673655026647 +21739,108.6949999999374,-0.06860673458019917 +21740,108.69999999993739,-0.06860673261104659 +21741,108.70499999993739,-0.06860673064280844 +21742,108.70999999993738,-0.06860672867548437 +21743,108.71499999993738,-0.0686067267090741 +21744,108.71999999993737,-0.0686067247435773 +21745,108.72499999993737,-0.06860672277899367 +21746,108.72999999993736,-0.0686067208153229 +21747,108.73499999993736,-0.06860671885256468 +21748,108.73999999993735,-0.0686067168907187 +21749,108.74499999993735,-0.06860671492978465 +21750,108.74999999993734,-0.06860671296976222 +21751,108.75499999993734,-0.06860671101065108 +21752,108.75999999993734,-0.06860670905245095 +21753,108.76499999993733,-0.0686067070951615 +21754,108.76999999993733,-0.06860670513878245 +21755,108.77499999993732,-0.06860670318331345 +21756,108.77999999993732,-0.06860670122875422 +21757,108.78499999993731,-0.06860669927510443 +21758,108.78999999993731,-0.0686066973223638 +21759,108.7949999999373,-0.06860669537053199 +21760,108.7999999999373,-0.06860669341960872 +21761,108.8049999999373,-0.06860669146959365 +21762,108.80999999993729,-0.0686066895204865 +21763,108.81499999993729,-0.06860668757228693 +21764,108.81999999993728,-0.06860668562499465 +21765,108.82499999993728,-0.06860668367860936 +21766,108.82999999993727,-0.06860668173313074 +21767,108.83499999993727,-0.06860667978855849 +21768,108.83999999993726,-0.06860667784489227 +21769,108.84499999993726,-0.06860667590213183 +21770,108.84999999993725,-0.06860667396027681 +21771,108.85499999993725,-0.06860667201932694 +21772,108.85999999993724,-0.06860667007928188 +21773,108.86499999993724,-0.06860666814014134 +21774,108.86999999993724,-0.06860666620190502 +21775,108.87499999993723,-0.06860666426457258 +21776,108.87999999993723,-0.06860666232814376 +21777,108.88499999993722,-0.06860666039261822 +21778,108.88999999993722,-0.06860665845799566 +21779,108.89499999993721,-0.06860665652427575 +21780,108.89999999993721,-0.06860665459145822 +21781,108.9049999999372,-0.06860665265954276 +21782,108.9099999999372,-0.06860665072852905 +21783,108.9149999999372,-0.06860664879841677 +21784,108.91999999993719,-0.06860664686920563 +21785,108.92499999993719,-0.06860664494089534 +21786,108.92999999993718,-0.06860664301348557 +21787,108.93499999993718,-0.06860664108697602 +21788,108.93999999993717,-0.06860663916136638 +21789,108.94499999993717,-0.06860663723665635 +21790,108.94999999993716,-0.0686066353128456 +21791,108.95499999993716,-0.06860663338993386 +21792,108.95999999993715,-0.06860663146792081 +21793,108.96499999993715,-0.06860662954680613 +21794,108.96999999993714,-0.06860662762658955 +21795,108.97499999993714,-0.06860662570727072 +21796,108.97999999993714,-0.06860662378884938 +21797,108.98499999993713,-0.06860662187132519 +21798,108.98999999993713,-0.06860661995469787 +21799,108.99499999993712,-0.06860661803896709 +21800,108.99999999993712,-0.06860661612413255 +21801,109.00499999993711,-0.06860661421019396 +21802,109.00999999993711,-0.06860661229715101 +21803,109.0149999999371,-0.06860661038500337 +21804,109.0199999999371,-0.06860660847375079 +21805,109.0249999999371,-0.0686066065633929 +21806,109.02999999993709,-0.06860660465392944 +21807,109.03499999993709,-0.0686066027453601 +21808,109.03999999993708,-0.06860660083768455 +21809,109.04499999993708,-0.06860659893090253 +21810,109.04999999993707,-0.06860659702501369 +21811,109.05499999993707,-0.06860659512001777 +21812,109.05999999993706,-0.06860659321591442 +21813,109.06499999993706,-0.06860659131270336 +21814,109.06999999993705,-0.06860658941038429 +21815,109.07499999993705,-0.0686065875089569 +21816,109.07999999993704,-0.06860658560842091 +21817,109.08499999993704,-0.06860658370877597 +21818,109.08999999993704,-0.06860658181002181 +21819,109.09499999993703,-0.06860657991215811 +21820,109.09999999993703,-0.06860657801518458 +21821,109.10499999993702,-0.06860657611910093 +21822,109.10999999993702,-0.06860657422390681 +21823,109.11499999993701,-0.06860657232960198 +21824,109.11999999993701,-0.06860657043618608 +21825,109.124999999937,-0.06860656854365882 +21826,109.129999999937,-0.06860656665201992 +21827,109.134999999937,-0.06860656476126907 +21828,109.13999999993699,-0.06860656287140597 +21829,109.14499999993699,-0.06860656098243031 +21830,109.14999999993698,-0.06860655909434178 +21831,109.15499999993698,-0.06860655720714008 +21832,109.15999999993697,-0.06860655532082492 +21833,109.16499999993697,-0.068606553435396 +21834,109.16999999993696,-0.068606551550853 +21835,109.17499999993696,-0.06860654966719563 +21836,109.17999999993695,-0.0686065477844236 +21837,109.18499999993695,-0.06860654590253659 +21838,109.18999999993694,-0.06860654402153432 +21839,109.19499999993694,-0.06860654214141645 +21840,109.19999999993694,-0.06860654026218271 +21841,109.20499999993693,-0.0686065383838328 +21842,109.20999999993693,-0.06860653650636642 +21843,109.21499999993692,-0.06860653462978324 +21844,109.21999999993692,-0.06860653275408297 +21845,109.22499999993691,-0.06860653087926534 +21846,109.22999999993691,-0.06860652900533001 +21847,109.2349999999369,-0.06860652713227672 +21848,109.2399999999369,-0.06860652526010512 +21849,109.2449999999369,-0.06860652338881494 +21850,109.24999999993689,-0.06860652151840588 +21851,109.25499999993689,-0.06860651964887762 +21852,109.25999999993688,-0.0686065177802299 +21853,109.26499999993688,-0.06860651591246239 +21854,109.26999999993687,-0.06860651404557479 +21855,109.27499999993687,-0.06860651217956681 +21856,109.27999999993686,-0.06860651031443814 +21857,109.28499999993686,-0.06860650845018848 +21858,109.28999999993685,-0.06860650658681755 +21859,109.29499999993685,-0.06860650472432504 +21860,109.29999999993684,-0.06860650286271064 +21861,109.30499999993684,-0.06860650100197407 +21862,109.30999999993684,-0.068606499142115 +21863,109.31499999993683,-0.06860649728313316 +21864,109.31999999993683,-0.06860649542502822 +21865,109.32499999993682,-0.06860649356779994 +21866,109.32999999993682,-0.06860649171144796 +21867,109.33499999993681,-0.06860648985597202 +21868,109.33999999993681,-0.06860648800137178 +21869,109.3449999999368,-0.06860648614764699 +21870,109.3499999999368,-0.06860648429479732 +21871,109.3549999999368,-0.0686064824428225 +21872,109.35999999993679,-0.06860648059172221 +21873,109.36499999993679,-0.06860647874149614 +21874,109.36999999993678,-0.068606476892144 +21875,109.37499999993678,-0.06860647504366552 +21876,109.37999999993677,-0.06860647319606036 +21877,109.38499999993677,-0.06860647134932826 +21878,109.38999999993676,-0.06860646950346891 +21879,109.39499999993676,-0.068606467658482 +21880,109.39999999993675,-0.06860646581436725 +21881,109.40499999993675,-0.06860646397112434 +21882,109.40999999993674,-0.068606462128753 +21883,109.41499999993674,-0.06860646028725291 +21884,109.41999999993673,-0.06860645844662379 +21885,109.42499999993673,-0.06860645660686533 +21886,109.42999999993673,-0.06860645476797725 +21887,109.43499999993672,-0.06860645292995922 +21888,109.43999999993672,-0.06860645109281097 +21889,109.44499999993671,-0.0686064492565322 +21890,109.44999999993671,-0.06860644742112262 +21891,109.4549999999367,-0.06860644558658192 +21892,109.4599999999367,-0.06860644375290981 +21893,109.4649999999367,-0.068606441920106 +21894,109.46999999993669,-0.06860644008817017 +21895,109.47499999993668,-0.06860643825710205 +21896,109.47999999993668,-0.06860643642690134 +21897,109.48499999993668,-0.06860643459756774 +21898,109.48999999993667,-0.06860643276910094 +21899,109.49499999993667,-0.06860643094150068 +21900,109.49999999993666,-0.06860642911476662 +21901,109.50499999993666,-0.0686064272888985 +21902,109.50999999993665,-0.068606425463896 +21903,109.51499999993665,-0.06860642363975884 +21904,109.51999999993664,-0.06860642181648673 +21905,109.52499999993664,-0.06860641999407936 +21906,109.52999999993663,-0.06860641817253643 +21907,109.53499999993663,-0.06860641635185767 +21908,109.53999999993663,-0.06860641453204278 +21909,109.54499999993662,-0.06860641271309145 +21910,109.54999999993662,-0.06860641089500338 +21911,109.55499999993661,-0.06860640907777829 +21912,109.55999999993661,-0.06860640726141588 +21913,109.5649999999366,-0.06860640544591587 +21914,109.5699999999366,-0.06860640363127794 +21915,109.5749999999366,-0.06860640181750181 +21916,109.57999999993659,-0.0686064000045872 +21917,109.58499999993658,-0.0686063981925338 +21918,109.58999999993658,-0.0686063963813413 +21919,109.59499999993658,-0.06860639457100944 +21920,109.59999999993657,-0.06860639276153789 +21921,109.60499999993657,-0.0686063909529264 +21922,109.60999999993656,-0.06860638914517463 +21923,109.61499999993656,-0.06860638733828234 +21924,109.61999999993655,-0.06860638553224918 +21925,109.62499999993655,-0.06860638372707491 +21926,109.62999999993654,-0.06860638192275918 +21927,109.63499999993654,-0.06860638011930174 +21928,109.63999999993653,-0.06860637831670229 +21929,109.64499999993653,-0.06860637651496053 +21930,109.64999999993653,-0.06860637471407617 +21931,109.65499999993652,-0.0686063729140489 +21932,109.65999999993652,-0.06860637111487845 +21933,109.66499999993651,-0.06860636931656454 +21934,109.66999999993651,-0.06860636751910684 +21935,109.6749999999365,-0.06860636572250507 +21936,109.6799999999365,-0.06860636392675896 +21937,109.6849999999365,-0.0686063621318682 +21938,109.68999999993649,-0.06860636033783249 +21939,109.69499999993648,-0.06860635854465154 +21940,109.69999999993648,-0.06860635675232508 +21941,109.70499999993648,-0.06860635496085281 +21942,109.70999999993647,-0.06860635317023443 +21943,109.71499999993647,-0.06860635138046965 +21944,109.71999999993646,-0.06860634959155817 +21945,109.72499999993646,-0.06860634780349972 +21946,109.72999999993645,-0.06860634601629398 +21947,109.73499999993645,-0.06860634422994069 +21948,109.73999999993644,-0.06860634244443954 +21949,109.74499999993644,-0.06860634065979024 +21950,109.74999999993643,-0.0686063388759925 +21951,109.75499999993643,-0.06860633709304605 +21952,109.75999999993643,-0.06860633531095058 +21953,109.76499999993642,-0.06860633352970578 +21954,109.76999999993642,-0.06860633174931138 +21955,109.77499999993641,-0.06860632996976711 +21956,109.77999999993641,-0.06860632819107264 +21957,109.7849999999364,-0.06860632641322771 +21958,109.7899999999364,-0.06860632463623201 +21959,109.7949999999364,-0.06860632286008526 +21960,109.79999999993639,-0.06860632108478718 +21961,109.80499999993638,-0.06860631931033745 +21962,109.80999999993638,-0.06860631753673582 +21963,109.81499999993638,-0.06860631576398198 +21964,109.81999999993637,-0.06860631399207562 +21965,109.82499999993637,-0.06860631222101647 +21966,109.82999999993636,-0.06860631045080424 +21967,109.83499999993636,-0.06860630868143865 +21968,109.83999999993635,-0.0686063069129194 +21969,109.84499999993635,-0.0686063051452462 +21970,109.84999999993634,-0.06860630337841876 +21971,109.85499999993634,-0.06860630161243679 +21972,109.85999999993633,-0.06860629984730002 +21973,109.86499999993633,-0.06860629808300814 +21974,109.86999999993633,-0.06860629631956087 +21975,109.87499999993632,-0.06860629455695792 +21976,109.87999999993632,-0.068606292795199 +21977,109.88499999993631,-0.06860629103428381 +21978,109.88999999993631,-0.06860628927421208 +21979,109.8949999999363,-0.06860628751498352 +21980,109.8999999999363,-0.06860628575659784 +21981,109.9049999999363,-0.06860628399905476 +21982,109.90999999993629,-0.06860628224235396 +21983,109.91499999993628,-0.06860628048649518 +21984,109.91999999993628,-0.06860627873147813 +21985,109.92499999993628,-0.06860627697730251 +21986,109.92999999993627,-0.06860627522396806 +21987,109.93499999993627,-0.06860627347147445 +21988,109.93999999993626,-0.06860627171982142 +21989,109.94499999993626,-0.06860626996900868 +21990,109.94999999993625,-0.06860626821903594 +21991,109.95499999993625,-0.06860626646990292 +21992,109.95999999993624,-0.06860626472160933 +21993,109.96499999993624,-0.06860626297415486 +21994,109.96999999993623,-0.06860626122753925 +21995,109.97499999993623,-0.06860625948176222 +21996,109.97999999993623,-0.06860625773682345 +21997,109.98499999993622,-0.06860625599272269 +21998,109.98999999993622,-0.06860625424945963 +21999,109.99499999993621,-0.06860625250703399 +22000,109.99999999993621,-0.06860625076544548 +22001,110.0049999999362,-0.06860624902469381 +22002,110.0099999999362,-0.06860624728477871 +22003,110.0149999999362,-0.06860624554569988 +22004,110.01999999993619,-0.06860624380745703 +22005,110.02499999993618,-0.06860624207004991 +22006,110.02999999993618,-0.06860624033347819 +22007,110.03499999993618,-0.06860623859774159 +22008,110.03999999993617,-0.06860623686283986 +22009,110.04499999993617,-0.06860623512877267 +22010,110.04999999993616,-0.06860623339553976 +22011,110.05499999993616,-0.06860623166314085 +22012,110.05999999993615,-0.06860622993157563 +22013,110.06499999993615,-0.06860622820084383 +22014,110.06999999993614,-0.06860622647094518 +22015,110.07499999993614,-0.06860622474187936 +22016,110.07999999993613,-0.06860622301364612 +22017,110.08499999993613,-0.06860622128624515 +22018,110.08999999993613,-0.06860621955967616 +22019,110.09499999993612,-0.0686062178339389 +22020,110.09999999993612,-0.06860621610903306 +22021,110.10499999993611,-0.06860621438495836 +22022,110.10999999993611,-0.06860621266171452 +22023,110.1149999999361,-0.06860621093930123 +22024,110.1199999999361,-0.06860620921771825 +22025,110.1249999999361,-0.06860620749696526 +22026,110.12999999993609,-0.068606205777042 +22027,110.13499999993608,-0.06860620405794818 +22028,110.13999999993608,-0.06860620233968351 +22029,110.14499999993608,-0.0686062006222477 +22030,110.14999999993607,-0.06860619890564049 +22031,110.15499999993607,-0.06860619718986156 +22032,110.15999999993606,-0.06860619547491066 +22033,110.16499999993606,-0.0686061937607875 +22034,110.16999999993605,-0.06860619204749177 +22035,110.17499999993605,-0.06860619033502323 +22036,110.17999999993604,-0.06860618862338157 +22037,110.18499999993604,-0.06860618691256651 +22038,110.18999999993603,-0.06860618520257775 +22039,110.19499999993603,-0.06860618349341505 +22040,110.19999999993603,-0.06860618178507809 +22041,110.20499999993602,-0.06860618007756661 +22042,110.20999999993602,-0.06860617837088032 +22043,110.21499999993601,-0.06860617666501892 +22044,110.21999999993601,-0.06860617495998216 +22045,110.224999999936,-0.06860617325576973 +22046,110.229999999936,-0.06860617155238136 +22047,110.234999999936,-0.06860616984981677 +22048,110.23999999993599,-0.06860616814807567 +22049,110.24499999993598,-0.06860616644715778 +22050,110.24999999993598,-0.06860616474706283 +22051,110.25499999993598,-0.06860616304779052 +22052,110.25999999993597,-0.06860616134934058 +22053,110.26499999993597,-0.06860615965171273 +22054,110.26999999993596,-0.06860615795490668 +22055,110.27499999993596,-0.06860615625892215 +22056,110.27999999993595,-0.06860615456375885 +22057,110.28499999993595,-0.06860615286941651 +22058,110.28999999993594,-0.06860615117589487 +22059,110.29499999993594,-0.06860614948319362 +22060,110.29999999993593,-0.06860614779131248 +22061,110.30499999993593,-0.06860614610025118 +22062,110.30999999993593,-0.06860614441000944 +22063,110.31499999993592,-0.06860614272058696 +22064,110.31999999993592,-0.06860614103198348 +22065,110.32499999993591,-0.06860613934419872 +22066,110.32999999993591,-0.06860613765723239 +22067,110.3349999999359,-0.06860613597108421 +22068,110.3399999999359,-0.0686061342857539 +22069,110.3449999999359,-0.0686061326012412 +22070,110.34999999993589,-0.0686061309175458 +22071,110.35499999993588,-0.06860612923466744 +22072,110.35999999993588,-0.06860612755260583 +22073,110.36499999993588,-0.0686061258713607 +22074,110.36999999993587,-0.06860612419093173 +22075,110.37499999993587,-0.0686061225113187 +22076,110.37999999993586,-0.0686061208325213 +22077,110.38499999993586,-0.06860611915453925 +22078,110.38999999993585,-0.06860611747737226 +22079,110.39499999993585,-0.06860611580102008 +22080,110.39999999993584,-0.06860611412548243 +22081,110.40499999993584,-0.068606112450759 +22082,110.40999999993583,-0.06860611077684954 +22083,110.41499999993583,-0.06860610910375374 +22084,110.41999999993583,-0.06860610743147134 +22085,110.42499999993582,-0.06860610576000208 +22086,110.42999999993582,-0.06860610408934567 +22087,110.43499999993581,-0.06860610241950181 +22088,110.43999999993581,-0.06860610075047023 +22089,110.4449999999358,-0.06860609908225067 +22090,110.4499999999358,-0.06860609741484283 +22091,110.4549999999358,-0.06860609574824644 +22092,110.45999999993579,-0.06860609408246124 +22093,110.46499999993578,-0.06860609241748693 +22094,110.46999999993578,-0.06860609075332322 +22095,110.47499999993578,-0.06860608908996986 +22096,110.47999999993577,-0.06860608742742656 +22097,110.48499999993577,-0.06860608576569303 +22098,110.48999999993576,-0.06860608410476902 +22099,110.49499999993576,-0.06860608244465426 +22100,110.49999999993575,-0.06860608078534841 +22101,110.50499999993575,-0.06860607912685125 +22102,110.50999999993574,-0.0686060774691625 +22103,110.51499999993574,-0.06860607581228186 +22104,110.51999999993573,-0.06860607415620906 +22105,110.52499999993573,-0.06860607250094383 +22106,110.52999999993573,-0.06860607084648587 +22107,110.53499999993572,-0.06860606919283495 +22108,110.53999999993572,-0.06860606753999075 +22109,110.54499999993571,-0.06860606588795301 +22110,110.54999999993571,-0.06860606423672146 +22111,110.5549999999357,-0.0686060625862958 +22112,110.5599999999357,-0.06860606093667576 +22113,110.5649999999357,-0.0686060592878611 +22114,110.56999999993569,-0.06860605763985149 +22115,110.57499999993568,-0.06860605599264669 +22116,110.57999999993568,-0.06860605434624642 +22117,110.58499999993568,-0.0686060527006504 +22118,110.58999999993567,-0.06860605105585835 +22119,110.59499999993567,-0.06860604941186998 +22120,110.59999999993566,-0.06860604776868506 +22121,110.60499999993566,-0.06860604612630328 +22122,110.60999999993565,-0.06860604448472435 +22123,110.61499999993565,-0.06860604284394803 +22124,110.61999999993564,-0.06860604120397402 +22125,110.62499999993564,-0.06860603956480207 +22126,110.62999999993563,-0.06860603792643188 +22127,110.63499999993563,-0.06860603628886318 +22128,110.63999999993563,-0.06860603465209571 +22129,110.64499999993562,-0.06860603301612916 +22130,110.64999999993562,-0.0686060313809633 +22131,110.65499999993561,-0.06860602974659782 +22132,110.65999999993561,-0.06860602811303249 +22133,110.6649999999356,-0.06860602648026698 +22134,110.6699999999356,-0.06860602484830104 +22135,110.6749999999356,-0.06860602321713441 +22136,110.67999999993559,-0.06860602158676679 +22137,110.68499999993558,-0.06860601995719792 +22138,110.68999999993558,-0.06860601832842753 +22139,110.69499999993558,-0.06860601670045532 +22140,110.69999999993557,-0.06860601507328105 +22141,110.70499999993557,-0.06860601344690444 +22142,110.70999999993556,-0.0686060118213252 +22143,110.71499999993556,-0.06860601019654307 +22144,110.71999999993555,-0.06860600857255778 +22145,110.72499999993555,-0.06860600694936902 +22146,110.72999999993554,-0.06860600532697655 +22147,110.73499999993554,-0.0686060037053801 +22148,110.73999999993553,-0.06860600208457938 +22149,110.74499999993553,-0.06860600046457414 +22150,110.74999999993553,-0.06860599884536409 +22151,110.75499999993552,-0.06860599722694895 +22152,110.75999999993552,-0.06860599560932847 +22153,110.76499999993551,-0.06860599399250233 +22154,110.76999999993551,-0.06860599237647032 +22155,110.7749999999355,-0.06860599076123212 +22156,110.7799999999355,-0.06860598914678748 +22157,110.7849999999355,-0.06860598753313613 +22158,110.78999999993549,-0.06860598592027779 +22159,110.79499999993548,-0.06860598430821219 +22160,110.79999999993548,-0.06860598269693906 +22161,110.80499999993548,-0.0686059810864581 +22162,110.80999999993547,-0.06860597947676908 +22163,110.81499999993547,-0.0686059778678717 +22164,110.81999999993546,-0.0686059762597657 +22165,110.82499999993546,-0.06860597465245082 +22166,110.82999999993545,-0.06860597304592675 +22167,110.83499999993545,-0.06860597144019324 +22168,110.83999999993544,-0.06860596983525004 +22169,110.84499999993544,-0.06860596823109685 +22170,110.84999999993543,-0.06860596662773343 +22171,110.85499999993543,-0.06860596502515946 +22172,110.85999999993543,-0.0686059634233747 +22173,110.86499999993542,-0.0686059618223789 +22174,110.86999999993542,-0.06860596022217173 +22175,110.87499999993541,-0.06860595862275297 +22176,110.87999999993541,-0.06860595702412234 +22177,110.8849999999354,-0.06860595542627955 +22178,110.8899999999354,-0.06860595382922435 +22179,110.8949999999354,-0.06860595223295646 +22180,110.89999999993539,-0.0686059506374756 +22181,110.90499999993538,-0.06860594904278151 +22182,110.90999999993538,-0.06860594744887394 +22183,110.91499999993538,-0.06860594585575258 +22184,110.91999999993537,-0.06860594426341718 +22185,110.92499999993537,-0.06860594267186745 +22186,110.92999999993536,-0.06860594108110316 +22187,110.93499999993536,-0.06860593949112401 +22188,110.93999999993535,-0.06860593790192973 +22189,110.94499999993535,-0.06860593631352008 +22190,110.94999999993534,-0.06860593472589475 +22191,110.95499999993534,-0.06860593313905351 +22192,110.95999999993533,-0.06860593155299607 +22193,110.96499999993533,-0.06860592996772216 +22194,110.96999999993533,-0.06860592838323151 +22195,110.97499999993532,-0.06860592679952386 +22196,110.97999999993532,-0.06860592521659892 +22197,110.98499999993531,-0.06860592363445644 +22198,110.9899999999353,-0.06860592205309615 +22199,110.9949999999353,-0.06860592047251778 +22200,110.9999999999353,-0.06860591889272105 +22201,111.0049999999353,-0.0686059173137057 +22202,111.00999999993529,-0.06860591573547146 +22203,111.01499999993528,-0.06860591415801809 +22204,111.01999999993528,-0.06860591258134527 +22205,111.02499999993528,-0.06860591100545275 +22206,111.02999999993527,-0.06860590943034028 +22207,111.03499999993527,-0.06860590785600756 +22208,111.03999999993526,-0.06860590628245436 +22209,111.04499999993526,-0.0686059047096804 +22210,111.04999999993525,-0.06860590313768537 +22211,111.05499999993525,-0.06860590156646906 +22212,111.05999999993524,-0.06860589999603119 +22213,111.06499999993524,-0.06860589842637146 +22214,111.06999999993523,-0.06860589685748963 +22215,111.07499999993523,-0.06860589528938545 +22216,111.07999999993523,-0.06860589372205861 +22217,111.08499999993522,-0.06860589215550887 +22218,111.08999999993522,-0.06860589058973596 +22219,111.09499999993521,-0.06860588902473959 +22220,111.0999999999352,-0.06860588746051952 +22221,111.1049999999352,-0.06860588589707547 +22222,111.1099999999352,-0.06860588433440717 +22223,111.1149999999352,-0.06860588277251438 +22224,111.11999999993519,-0.06860588121139681 +22225,111.12499999993518,-0.06860587965105418 +22226,111.12999999993518,-0.06860587809148624 +22227,111.13499999993518,-0.06860587653269275 +22228,111.13999999993517,-0.0686058749746734 +22229,111.14499999993517,-0.06860587341742795 +22230,111.14999999993516,-0.06860587186095611 +22231,111.15499999993516,-0.06860587030525764 +22232,111.15999999993515,-0.06860586875033227 +22233,111.16499999993515,-0.06860586719617971 +22234,111.16999999993514,-0.06860586564279973 +22235,111.17499999993514,-0.06860586409019202 +22236,111.17999999993513,-0.06860586253835636 +22237,111.18499999993513,-0.06860586098729246 +22238,111.18999999993513,-0.06860585943700005 +22239,111.19499999993512,-0.06860585788747887 +22240,111.19999999993512,-0.06860585633872868 +22241,111.20499999993511,-0.06860585479074917 +22242,111.2099999999351,-0.0686058532435401 +22243,111.2149999999351,-0.0686058516971012 +22244,111.2199999999351,-0.06860585015143222 +22245,111.2249999999351,-0.06860584860653288 +22246,111.22999999993509,-0.0686058470624029 +22247,111.23499999993508,-0.06860584551904204 +22248,111.23999999993508,-0.06860584397645005 +22249,111.24499999993508,-0.06860584243462663 +22250,111.24999999993507,-0.06860584089357151 +22251,111.25499999993507,-0.06860583935328446 +22252,111.25999999993506,-0.0686058378137652 +22253,111.26499999993506,-0.06860583627501346 +22254,111.26999999993505,-0.06860583473702898 +22255,111.27499999993505,-0.0686058331998115 +22256,111.27999999993504,-0.06860583166336075 +22257,111.28499999993504,-0.06860583012767647 +22258,111.28999999993503,-0.0686058285927584 +22259,111.29499999993503,-0.06860582705860627 +22260,111.29999999993503,-0.06860582552521982 +22261,111.30499999993502,-0.06860582399259878 +22262,111.30999999993502,-0.06860582246074289 +22263,111.31499999993501,-0.06860582092965188 +22264,111.319999999935,-0.06860581939932552 +22265,111.324999999935,-0.0686058178697635 +22266,111.329999999935,-0.06860581634096558 +22267,111.334999999935,-0.06860581481293149 +22268,111.33999999993499,-0.06860581328566097 +22269,111.34499999993498,-0.06860581175915377 +22270,111.34999999993498,-0.0686058102334096 +22271,111.35499999993498,-0.06860580870842821 +22272,111.35999999993497,-0.06860580718420936 +22273,111.36499999993497,-0.06860580566075275 +22274,111.36999999993496,-0.06860580413805815 +22275,111.37499999993496,-0.06860580261612527 +22276,111.37999999993495,-0.06860580109495386 +22277,111.38499999993495,-0.06860579957454367 +22278,111.38999999993494,-0.0686057980548944 +22279,111.39499999993494,-0.06860579653600585 +22280,111.39999999993493,-0.0686057950178777 +22281,111.40499999993493,-0.0686057935005097 +22282,111.40999999993493,-0.06860579198390161 +22283,111.41499999993492,-0.06860579046805317 +22284,111.41999999993492,-0.06860578895296408 +22285,111.42499999993491,-0.06860578743863412 +22286,111.4299999999349,-0.06860578592506299 +22287,111.4349999999349,-0.06860578441225046 +22288,111.4399999999349,-0.06860578290019625 +22289,111.4449999999349,-0.06860578138890013 +22290,111.44999999993489,-0.0686057798783618 +22291,111.45499999993488,-0.06860577836858102 +22292,111.45999999993488,-0.06860577685955752 +22293,111.46499999993488,-0.06860577535129103 +22294,111.46999999993487,-0.0686057738437813 +22295,111.47499999993487,-0.0686057723370281 +22296,111.47999999993486,-0.06860577083103113 +22297,111.48499999993486,-0.06860576932579014 +22298,111.48999999993485,-0.06860576782130486 +22299,111.49499999993485,-0.06860576631757503 +22300,111.49999999993484,-0.06860576481460041 +22301,111.50499999993484,-0.06860576331238075 +22302,111.50999999993483,-0.06860576181091574 +22303,111.51499999993483,-0.06860576031020515 +22304,111.51999999993483,-0.06860575881024873 +22305,111.52499999993482,-0.0686057573110462 +22306,111.52999999993482,-0.06860575581259731 +22307,111.53499999993481,-0.06860575431490179 +22308,111.5399999999348,-0.06860575281795939 +22309,111.5449999999348,-0.06860575132176984 +22310,111.5499999999348,-0.06860574982633291 +22311,111.5549999999348,-0.06860574833164831 +22312,111.55999999993479,-0.0686057468377158 +22313,111.56499999993478,-0.06860574534453509 +22314,111.56999999993478,-0.06860574385210597 +22315,111.57499999993478,-0.06860574236042813 +22316,111.57999999993477,-0.06860574086950133 +22317,111.58499999993477,-0.06860573937932533 +22318,111.58999999993476,-0.06860573788989986 +22319,111.59499999993476,-0.06860573640122465 +22320,111.59999999993475,-0.06860573491329945 +22321,111.60499999993475,-0.06860573342612399 +22322,111.60999999993474,-0.06860573193969803 +22323,111.61499999993474,-0.0686057304540213 +22324,111.61999999993473,-0.06860572896909355 +22325,111.62499999993473,-0.06860572748491452 +22326,111.62999999993472,-0.06860572600148393 +22327,111.63499999993472,-0.06860572451880155 +22328,111.63999999993472,-0.0686057230368671 +22329,111.64499999993471,-0.06860572155568034 +22330,111.6499999999347,-0.06860572007524102 +22331,111.6549999999347,-0.06860571859554886 +22332,111.6599999999347,-0.0686057171166036 +22333,111.6649999999347,-0.06860571563840501 +22334,111.66999999993469,-0.0686057141609528 +22335,111.67499999993468,-0.06860571268424673 +22336,111.67999999993468,-0.06860571120828654 +22337,111.68499999993467,-0.06860570973307198 +22338,111.68999999993467,-0.06860570825860278 +22339,111.69499999993467,-0.06860570678487868 +22340,111.69999999993466,-0.06860570531189944 +22341,111.70499999993466,-0.0686057038396648 +22342,111.70999999993465,-0.0686057023681745 +22343,111.71499999993465,-0.06860570089742826 +22344,111.71999999993464,-0.06860569942742586 +22345,111.72499999993464,-0.06860569795816701 +22346,111.72999999993463,-0.06860569648965148 +22347,111.73499999993463,-0.068605695021879 +22348,111.73999999993462,-0.06860569355484933 +22349,111.74499999993462,-0.0686056920885622 +22350,111.74999999993462,-0.06860569062301734 +22351,111.75499999993461,-0.06860568915821452 +22352,111.7599999999346,-0.06860568769415346 +22353,111.7649999999346,-0.06860568623083392 +22354,111.7699999999346,-0.06860568476825565 +22355,111.7749999999346,-0.06860568330641839 +22356,111.77999999993459,-0.06860568184532187 +22357,111.78499999993458,-0.06860568038496584 +22358,111.78999999993458,-0.06860567892535005 +22359,111.79499999993457,-0.06860567746647425 +22360,111.79999999993457,-0.06860567600833817 +22361,111.80499999993457,-0.06860567455094156 +22362,111.80999999993456,-0.06860567309428417 +22363,111.81499999993456,-0.06860567163836574 +22364,111.81999999993455,-0.068605670183186 +22365,111.82499999993455,-0.06860566872874474 +22366,111.82999999993454,-0.06860566727504165 +22367,111.83499999993454,-0.06860566582207651 +22368,111.83999999993453,-0.06860566436984906 +22369,111.84499999993453,-0.06860566291835904 +22370,111.84999999993452,-0.0686056614676062 +22371,111.85499999993452,-0.06860566001759029 +22372,111.85999999993452,-0.06860565856831102 +22373,111.86499999993451,-0.06860565711976818 +22374,111.8699999999345,-0.0686056556719615 +22375,111.8749999999345,-0.06860565422489073 +22376,111.8799999999345,-0.0686056527785556 +22377,111.8849999999345,-0.06860565133295586 +22378,111.88999999993449,-0.06860564988809129 +22379,111.89499999993448,-0.06860564844396158 +22380,111.89999999993448,-0.06860564700056652 +22381,111.90499999993447,-0.06860564555790583 +22382,111.90999999993447,-0.06860564411597928 +22383,111.91499999993447,-0.0686056426747866 +22384,111.91999999993446,-0.06860564123432754 +22385,111.92499999993446,-0.06860563979460184 +22386,111.92999999993445,-0.06860563835560926 +22387,111.93499999993445,-0.06860563691734954 +22388,111.93999999993444,-0.06860563547982243 +22389,111.94499999993444,-0.06860563404302766 +22390,111.94999999993443,-0.068605632606965 +22391,111.95499999993443,-0.0686056311716342 +22392,111.95999999993442,-0.06860562973703498 +22393,111.96499999993442,-0.06860562830316709 +22394,111.96999999993442,-0.06860562687003031 +22395,111.97499999993441,-0.06860562543762436 +22396,111.9799999999344,-0.068605624005949 +22397,111.9849999999344,-0.06860562257500397 +22398,111.9899999999344,-0.06860562114478902 +22399,111.9949999999344,-0.06860561971530389 +22400,111.99999999993439,-0.06860561828654833 +22401,112.00499999993438,-0.06860561685852211 +22402,112.00999999993438,-0.06860561543122497 +22403,112.01499999993437,-0.06860561400465663 +22404,112.01999999993437,-0.06860561257881687 +22405,112.02499999993437,-0.06860561115370539 +22406,112.02999999993436,-0.068605609729322 +22407,112.03499999993436,-0.06860560830566642 +22408,112.03999999993435,-0.0686056068827384 +22409,112.04499999993435,-0.06860560546053769 +22410,112.04999999993434,-0.06860560403906403 +22411,112.05499999993434,-0.06860560261831718 +22412,112.05999999993433,-0.06860560119829688 +22413,112.06499999993433,-0.0686055997790029 +22414,112.06999999993432,-0.06860559836043495 +22415,112.07499999993432,-0.06860559694259281 +22416,112.07999999993432,-0.06860559552547622 +22417,112.08499999993431,-0.06860559410908494 +22418,112.0899999999343,-0.0686055926934187 +22419,112.0949999999343,-0.06860559127847726 +22420,112.0999999999343,-0.06860558986426037 +22421,112.1049999999343,-0.06860558845076777 +22422,112.10999999993429,-0.06860558703799921 +22423,112.11499999993428,-0.06860558562595447 +22424,112.11999999993428,-0.06860558421463325 +22425,112.12499999993427,-0.06860558280403534 +22426,112.12999999993427,-0.06860558139416047 +22427,112.13499999993427,-0.0686055799850084 +22428,112.13999999993426,-0.06860557857657887 +22429,112.14499999993426,-0.06860557716887164 +22430,112.14999999993425,-0.06860557576188644 +22431,112.15499999993425,-0.06860557435562305 +22432,112.15999999993424,-0.06860557295008121 +22433,112.16499999993424,-0.06860557154526066 +22434,112.16999999993423,-0.06860557014116116 +22435,112.17499999993423,-0.06860556873778245 +22436,112.17999999993422,-0.0686055673351243 +22437,112.18499999993422,-0.06860556593318644 +22438,112.18999999993422,-0.06860556453196864 +22439,112.19499999993421,-0.06860556313147063 +22440,112.1999999999342,-0.06860556173169217 +22441,112.2049999999342,-0.06860556033263301 +22442,112.2099999999342,-0.06860555893429292 +22443,112.2149999999342,-0.06860555753667162 +22444,112.21999999993419,-0.06860555613976889 +22445,112.22499999993418,-0.06860555474358447 +22446,112.22999999993418,-0.06860555334811809 +22447,112.23499999993417,-0.06860555195336952 +22448,112.23999999993417,-0.06860555055933852 +22449,112.24499999993417,-0.06860554916602485 +22450,112.24999999993416,-0.06860554777342823 +22451,112.25499999993416,-0.06860554638154842 +22452,112.25999999993415,-0.06860554499038518 +22453,112.26499999993415,-0.06860554359993827 +22454,112.26999999993414,-0.06860554221020743 +22455,112.27499999993414,-0.06860554082119243 +22456,112.27999999993413,-0.06860553943289298 +22457,112.28499999993413,-0.06860553804530888 +22458,112.28999999993412,-0.06860553665843987 +22459,112.29499999993412,-0.06860553527228568 +22460,112.29999999993412,-0.06860553388684608 +22461,112.30499999993411,-0.06860553250212081 +22462,112.3099999999341,-0.06860553111810964 +22463,112.3149999999341,-0.06860552973481232 +22464,112.3199999999341,-0.0686055283522286 +22465,112.3249999999341,-0.06860552697035822 +22466,112.32999999993409,-0.06860552558920097 +22467,112.33499999993408,-0.06860552420875657 +22468,112.33999999993408,-0.06860552282902477 +22469,112.34499999993407,-0.06860552145000533 +22470,112.34999999993407,-0.06860552007169801 +22471,112.35499999993407,-0.06860551869410256 +22472,112.35999999993406,-0.06860551731721874 +22473,112.36499999993406,-0.06860551594104629 +22474,112.36999999993405,-0.06860551456558499 +22475,112.37499999993405,-0.06860551319083456 +22476,112.37999999993404,-0.06860551181679476 +22477,112.38499999993404,-0.06860551044346537 +22478,112.38999999993403,-0.06860550907084612 +22479,112.39499999993403,-0.06860550769893677 +22480,112.39999999993402,-0.06860550632773706 +22481,112.40499999993402,-0.06860550495724678 +22482,112.40999999993402,-0.06860550358746566 +22483,112.41499999993401,-0.06860550221839345 +22484,112.419999999934,-0.06860550085002992 +22485,112.424999999934,-0.06860549948237482 +22486,112.429999999934,-0.06860549811542789 +22487,112.43499999993399,-0.06860549674918891 +22488,112.43999999993399,-0.0686054953836576 +22489,112.44499999993398,-0.06860549401883374 +22490,112.44999999993398,-0.06860549265471709 +22491,112.45499999993397,-0.06860549129130739 +22492,112.45999999993397,-0.06860548992860441 +22493,112.46499999993397,-0.06860548856660788 +22494,112.46999999993396,-0.06860548720531758 +22495,112.47499999993396,-0.06860548584473325 +22496,112.47999999993395,-0.06860548448485466 +22497,112.48499999993395,-0.06860548312568154 +22498,112.48999999993394,-0.06860548176721368 +22499,112.49499999993394,-0.0686054804094508 +22500,112.49999999993393,-0.0686054790523927 +22501,112.50499999993393,-0.06860547769603909 +22502,112.50999999993392,-0.06860547634038974 +22503,112.51499999993392,-0.06860547498544443 +22504,112.51999999993392,-0.06860547363120288 +22505,112.52499999993391,-0.06860547227766488 +22506,112.5299999999339,-0.06860547092483016 +22507,112.5349999999339,-0.06860546957269849 +22508,112.5399999999339,-0.0686054682212696 +22509,112.54499999993389,-0.06860546687054328 +22510,112.54999999993389,-0.06860546552051928 +22511,112.55499999993388,-0.06860546417119735 +22512,112.55999999993388,-0.06860546282257725 +22513,112.56499999993387,-0.06860546147465874 +22514,112.56999999993387,-0.06860546012744156 +22515,112.57499999993387,-0.06860545878092549 +22516,112.57999999993386,-0.06860545743511026 +22517,112.58499999993386,-0.06860545608999566 +22518,112.58999999993385,-0.06860545474558141 +22519,112.59499999993385,-0.0686054534018673 +22520,112.59999999993384,-0.06860545205885306 +22521,112.60499999993384,-0.06860545071653847 +22522,112.60999999993383,-0.06860544937492327 +22523,112.61499999993383,-0.06860544803400723 +22524,112.61999999993382,-0.0686054466937901 +22525,112.62499999993382,-0.06860544535427164 +22526,112.62999999993382,-0.06860544401545161 +22527,112.63499999993381,-0.06860544267732976 +22528,112.6399999999338,-0.06860544133990587 +22529,112.6449999999338,-0.06860544000317967 +22530,112.6499999999338,-0.06860543866715094 +22531,112.65499999993379,-0.06860543733181942 +22532,112.65999999993379,-0.06860543599718487 +22533,112.66499999993378,-0.06860543466324705 +22534,112.66999999993378,-0.06860543333000574 +22535,112.67499999993377,-0.06860543199746068 +22536,112.67999999993377,-0.0686054306656116 +22537,112.68499999993377,-0.06860542933445832 +22538,112.68999999993376,-0.06860542800400056 +22539,112.69499999993376,-0.06860542667423808 +22540,112.69999999993375,-0.06860542534517064 +22541,112.70499999993375,-0.06860542401679802 +22542,112.70999999993374,-0.06860542268911994 +22543,112.71499999993374,-0.06860542136213618 +22544,112.71999999993373,-0.0686054200358465 +22545,112.72499999993373,-0.06860541871025068 +22546,112.72999999993372,-0.06860541738534845 +22547,112.73499999993372,-0.06860541606113957 +22548,112.73999999993372,-0.0686054147376238 +22549,112.74499999993371,-0.06860541341480092 +22550,112.7499999999337,-0.06860541209267068 +22551,112.7549999999337,-0.06860541077123283 +22552,112.7599999999337,-0.06860540945048713 +22553,112.76499999993369,-0.06860540813043335 +22554,112.76999999993369,-0.06860540681107123 +22555,112.77499999993368,-0.06860540549240056 +22556,112.77999999993368,-0.06860540417442108 +22557,112.78499999993367,-0.06860540285713256 +22558,112.78999999993367,-0.06860540154053474 +22559,112.79499999993367,-0.0686054002246274 +22560,112.79999999993366,-0.0686053989094103 +22561,112.80499999993366,-0.0686053975948832 +22562,112.80999999993365,-0.06860539628104585 +22563,112.81499999993365,-0.06860539496789803 +22564,112.81999999993364,-0.06860539365543947 +22565,112.82499999993364,-0.06860539234366995 +22566,112.82999999993363,-0.06860539103258922 +22567,112.83499999993363,-0.06860538972219705 +22568,112.83999999993362,-0.06860538841249322 +22569,112.84499999993362,-0.06860538710347747 +22570,112.84999999993362,-0.06860538579514956 +22571,112.85499999993361,-0.06860538448750925 +22572,112.8599999999336,-0.06860538318055628 +22573,112.8649999999336,-0.06860538187429048 +22574,112.8699999999336,-0.06860538056871154 +22575,112.87499999993359,-0.06860537926381927 +22576,112.87999999993359,-0.06860537795961338 +22577,112.88499999993358,-0.06860537665609368 +22578,112.88999999993358,-0.0686053753532599 +22579,112.89499999993357,-0.06860537405111182 +22580,112.89999999993357,-0.0686053727496492 +22581,112.90499999993357,-0.06860537144887181 +22582,112.90999999993356,-0.06860537014877939 +22583,112.91499999993356,-0.06860536884937171 +22584,112.91999999993355,-0.06860536755064855 +22585,112.92499999993355,-0.06860536625260966 +22586,112.92999999993354,-0.06860536495525478 +22587,112.93499999993354,-0.0686053636585837 +22588,112.93999999993353,-0.06860536236259616 +22589,112.94499999993353,-0.06860536106729195 +22590,112.94999999993352,-0.06860535977267082 +22591,112.95499999993352,-0.06860535847873254 +22592,112.95999999993352,-0.06860535718547686 +22593,112.96499999993351,-0.06860535589290355 +22594,112.9699999999335,-0.06860535460101237 +22595,112.9749999999335,-0.06860535330980308 +22596,112.9799999999335,-0.06860535201927545 +22597,112.98499999993349,-0.06860535072942922 +22598,112.98999999993349,-0.0686053494402642 +22599,112.99499999993348,-0.06860534815178011 +22600,112.99999999993348,-0.06860534686397672 +22601,113.00499999993347,-0.06860534557685383 +22602,113.00999999993347,-0.06860534429041115 +22603,113.01499999993347,-0.06860534300464849 +22604,113.01999999993346,-0.06860534171956559 +22605,113.02499999993346,-0.06860534043516221 +22606,113.02999999993345,-0.06860533915143811 +22607,113.03499999993345,-0.06860533786839308 +22608,113.03999999993344,-0.06860533658602687 +22609,113.04499999993344,-0.06860533530433924 +22610,113.04999999993343,-0.06860533402332995 +22611,113.05499999993343,-0.06860533274299876 +22612,113.05999999993342,-0.06860533146334546 +22613,113.06499999993342,-0.0686053301843698 +22614,113.06999999993342,-0.06860532890607154 +22615,113.07499999993341,-0.06860532762845045 +22616,113.0799999999334,-0.06860532635150629 +22617,113.0849999999334,-0.06860532507523884 +22618,113.0899999999334,-0.06860532379964783 +22619,113.09499999993339,-0.06860532252473307 +22620,113.09999999993339,-0.06860532125049429 +22621,113.10499999993338,-0.06860531997693127 +22622,113.10999999993338,-0.06860531870404377 +22623,113.11499999993337,-0.06860531743183156 +22624,113.11999999993337,-0.06860531616029439 +22625,113.12499999993337,-0.06860531488943206 +22626,113.12999999993336,-0.06860531361924428 +22627,113.13499999993336,-0.06860531234973087 +22628,113.13999999993335,-0.06860531108089157 +22629,113.14499999993335,-0.06860530981272615 +22630,113.14999999993334,-0.06860530854523436 +22631,113.15499999993334,-0.06860530727841599 +22632,113.15999999993333,-0.0686053060122708 +22633,113.16499999993333,-0.06860530474679856 +22634,113.16999999993332,-0.068605303481999 +22635,113.17499999993332,-0.06860530221787192 +22636,113.17999999993332,-0.0686053009544171 +22637,113.18499999993331,-0.06860529969163426 +22638,113.1899999999333,-0.0686052984295232 +22639,113.1949999999333,-0.06860529716808368 +22640,113.1999999999333,-0.06860529590731547 +22641,113.20499999993329,-0.06860529464721832 +22642,113.20999999993329,-0.068605293387792 +22643,113.21499999993328,-0.06860529212903631 +22644,113.21999999993328,-0.06860529087095096 +22645,113.22499999993327,-0.06860528961353576 +22646,113.22999999993327,-0.06860528835679047 +22647,113.23499999993327,-0.06860528710071485 +22648,113.23999999993326,-0.06860528584530866 +22649,113.24499999993326,-0.06860528459057168 +22650,113.24999999993325,-0.06860528333650366 +22651,113.25499999993325,-0.06860528208310439 +22652,113.25999999993324,-0.06860528083037362 +22653,113.26499999993324,-0.06860527957831111 +22654,113.26999999993323,-0.06860527832691667 +22655,113.27499999993323,-0.06860527707619 +22656,113.27999999993322,-0.06860527582613093 +22657,113.28499999993322,-0.0686052745767392 +22658,113.28999999993322,-0.0686052733280146 +22659,113.29499999993321,-0.06860527207995686 +22660,113.2999999999332,-0.06860527083256575 +22661,113.3049999999332,-0.06860526958584107 +22662,113.3099999999332,-0.06860526833978257 +22663,113.31499999993319,-0.06860526709439002 +22664,113.31999999993319,-0.06860526584966319 +22665,113.32499999993318,-0.06860526460560183 +22666,113.32999999993318,-0.06860526336220575 +22667,113.33499999993317,-0.06860526211947468 +22668,113.33999999993317,-0.0686052608774084 +22669,113.34499999993317,-0.06860525963600668 +22670,113.34999999993316,-0.06860525839526929 +22671,113.35499999993316,-0.068605257155196 +22672,113.35999999993315,-0.06860525591578658 +22673,113.36499999993315,-0.06860525467704078 +22674,113.36999999993314,-0.06860525343895839 +22675,113.37499999993314,-0.06860525220153918 +22676,113.37999999993313,-0.0686052509647829 +22677,113.38499999993313,-0.06860524972868934 +22678,113.38999999993312,-0.06860524849325825 +22679,113.39499999993312,-0.0686052472584894 +22680,113.39999999993312,-0.06860524602438259 +22681,113.40499999993311,-0.06860524479093755 +22682,113.4099999999331,-0.06860524355815407 +22683,113.4149999999331,-0.06860524232603192 +22684,113.4199999999331,-0.06860524109457086 +22685,113.42499999993309,-0.06860523986377066 +22686,113.42999999993309,-0.0686052386336311 +22687,113.43499999993308,-0.06860523740415195 +22688,113.43999999993308,-0.06860523617533298 +22689,113.44499999993307,-0.06860523494717394 +22690,113.44999999993307,-0.06860523371967461 +22691,113.45499999993307,-0.06860523249283479 +22692,113.45999999993306,-0.0686052312666542 +22693,113.46499999993306,-0.06860523004113264 +22694,113.46999999993305,-0.06860522881626989 +22695,113.47499999993305,-0.06860522759206569 +22696,113.47999999993304,-0.06860522636851984 +22697,113.48499999993304,-0.0686052251456321 +22698,113.48999999993303,-0.06860522392340222 +22699,113.49499999993303,-0.06860522270183 +22700,113.49999999993302,-0.06860522148091519 +22701,113.50499999993302,-0.06860522026065757 +22702,113.50999999993302,-0.06860521904105692 +22703,113.51499999993301,-0.068605217822113 +22704,113.519999999933,-0.06860521660382557 +22705,113.524999999933,-0.06860521538619442 +22706,113.529999999933,-0.06860521416921932 +22707,113.53499999993299,-0.06860521295290002 +22708,113.53999999993299,-0.06860521173723631 +22709,113.54499999993298,-0.06860521052222798 +22710,113.54999999993298,-0.06860520930787477 +22711,113.55499999993297,-0.06860520809417646 +22712,113.55999999993297,-0.06860520688113284 +22713,113.56499999993297,-0.06860520566874363 +22714,113.56999999993296,-0.06860520445700867 +22715,113.57499999993296,-0.06860520324592768 +22716,113.57999999993295,-0.06860520203550045 +22717,113.58499999993295,-0.06860520082572677 +22718,113.58999999993294,-0.06860519961660638 +22719,113.59499999993294,-0.06860519840813907 +22720,113.59999999993293,-0.06860519720032461 +22721,113.60499999993293,-0.06860519599316277 +22722,113.60999999993292,-0.06860519478665332 +22723,113.61499999993292,-0.06860519358079605 +22724,113.61999999993292,-0.0686051923755907 +22725,113.62499999993291,-0.06860519117103708 +22726,113.6299999999329,-0.06860518996713494 +22727,113.6349999999329,-0.06860518876388405 +22728,113.6399999999329,-0.06860518756128418 +22729,113.64499999993289,-0.06860518635933513 +22730,113.64999999993289,-0.06860518515803664 +22731,113.65499999993288,-0.0686051839573885 +22732,113.65999999993288,-0.0686051827573905 +22733,113.66499999993287,-0.06860518155804238 +22734,113.66999999993287,-0.06860518035934392 +22735,113.67499999993287,-0.06860517916129491 +22736,113.67999999993286,-0.06860517796389512 +22737,113.68499999993286,-0.0686051767671443 +22738,113.68999999993285,-0.06860517557104226 +22739,113.69499999993285,-0.06860517437558875 +22740,113.69999999993284,-0.06860517318078355 +22741,113.70499999993284,-0.06860517198662641 +22742,113.70999999993283,-0.06860517079311715 +22743,113.71499999993283,-0.06860516960025552 +22744,113.71999999993282,-0.06860516840804129 +22745,113.72499999993282,-0.06860516721647425 +22746,113.72999999993282,-0.06860516602555414 +22747,113.73499999993281,-0.06860516483528076 +22748,113.7399999999328,-0.06860516364565389 +22749,113.7449999999328,-0.06860516245667328 +22750,113.7499999999328,-0.06860516126833874 +22751,113.75499999993279,-0.06860516008065001 +22752,113.75999999993279,-0.06860515889360687 +22753,113.76499999993278,-0.06860515770720912 +22754,113.76999999993278,-0.0686051565214565 +22755,113.77499999993277,-0.06860515533634881 +22756,113.77999999993277,-0.06860515415188582 +22757,113.78499999993277,-0.06860515296806731 +22758,113.78999999993276,-0.06860515178489303 +22759,113.79499999993276,-0.06860515060236277 +22760,113.79999999993275,-0.06860514942047631 +22761,113.80499999993275,-0.06860514823923343 +22762,113.80999999993274,-0.0686051470586339 +22763,113.81499999993274,-0.06860514587867748 +22764,113.81999999993273,-0.06860514469936396 +22765,113.82499999993273,-0.06860514352069312 +22766,113.82999999993272,-0.06860514234266472 +22767,113.83499999993272,-0.06860514116527855 +22768,113.83999999993272,-0.06860513998853437 +22769,113.84499999993271,-0.06860513881243198 +22770,113.8499999999327,-0.06860513763697114 +22771,113.8549999999327,-0.06860513646215162 +22772,113.8599999999327,-0.06860513528797321 +22773,113.86499999993269,-0.06860513411443567 +22774,113.86999999993269,-0.0686051329415388 +22775,113.87499999993268,-0.06860513176928236 +22776,113.87999999993268,-0.06860513059766613 +22777,113.88499999993267,-0.06860512942668986 +22778,113.88999999993267,-0.06860512825635337 +22779,113.89499999993266,-0.0686051270866564 +22780,113.89999999993266,-0.06860512591759878 +22781,113.90499999993266,-0.06860512474918022 +22782,113.90999999993265,-0.06860512358140053 +22783,113.91499999993265,-0.06860512241425949 +22784,113.91999999993264,-0.06860512124775688 +22785,113.92499999993264,-0.06860512008189246 +22786,113.92999999993263,-0.068605118916666 +22787,113.93499999993263,-0.06860511775207731 +22788,113.93999999993262,-0.06860511658812614 +22789,113.94499999993262,-0.06860511542481228 +22790,113.94999999993261,-0.06860511426213549 +22791,113.95499999993261,-0.06860511310009557 +22792,113.9599999999326,-0.06860511193869227 +22793,113.9649999999326,-0.0686051107779254 +22794,113.9699999999326,-0.06860510961779473 +22795,113.97499999993259,-0.06860510845830002 +22796,113.97999999993259,-0.06860510729944105 +22797,113.98499999993258,-0.06860510614121762 +22798,113.98999999993258,-0.06860510498362948 +22799,113.99499999993257,-0.06860510382667644 +22800,113.99999999993257,-0.06860510267035826 +22801,114.00499999993256,-0.06860510151467471 +22802,114.00999999993256,-0.06860510035962557 +22803,114.01499999993256,-0.06860509920521063 +22804,114.01999999993255,-0.06860509805142966 +22805,114.02499999993255,-0.06860509689828242 +22806,114.02999999993254,-0.06860509574576874 +22807,114.03499999993254,-0.06860509459388836 +22808,114.03999999993253,-0.06860509344264105 +22809,114.04499999993253,-0.06860509229202662 +22810,114.04999999993252,-0.06860509114204481 +22811,114.05499999993252,-0.06860508999269545 +22812,114.05999999993251,-0.06860508884397827 +22813,114.06499999993251,-0.06860508769589306 +22814,114.0699999999325,-0.06860508654843962 +22815,114.0749999999325,-0.06860508540161772 +22816,114.0799999999325,-0.06860508425542713 +22817,114.08499999993249,-0.06860508310986764 +22818,114.08999999993249,-0.06860508196493902 +22819,114.09499999993248,-0.06860508082064105 +22820,114.09999999993248,-0.06860507967697352 +22821,114.10499999993247,-0.0686050785339362 +22822,114.10999999993247,-0.06860507739152887 +22823,114.11499999993246,-0.0686050762497513 +22824,114.11999999993246,-0.06860507510860331 +22825,114.12499999993246,-0.06860507396808463 +22826,114.12999999993245,-0.06860507282819506 +22827,114.13499999993245,-0.06860507168893439 +22828,114.13999999993244,-0.06860507055030239 +22829,114.14499999993244,-0.06860506941229884 +22830,114.14999999993243,-0.0686050682749235 +22831,114.15499999993243,-0.0686050671381762 +22832,114.15999999993242,-0.06860506600205668 +22833,114.16499999993242,-0.06860506486656472 +22834,114.16999999993241,-0.06860506373170011 +22835,114.17499999993241,-0.06860506259746264 +22836,114.1799999999324,-0.06860506146385209 +22837,114.1849999999324,-0.06860506033086823 +22838,114.1899999999324,-0.06860505919851084 +22839,114.19499999993239,-0.0686050580667797 +22840,114.19999999993239,-0.06860505693567462 +22841,114.20499999993238,-0.06860505580519533 +22842,114.20999999993238,-0.06860505467534164 +22843,114.21499999993237,-0.06860505354611332 +22844,114.21999999993237,-0.06860505241751017 +22845,114.22499999993236,-0.06860505128953195 +22846,114.22999999993236,-0.06860505016217848 +22847,114.23499999993236,-0.06860504903544948 +22848,114.23999999993235,-0.06860504790934478 +22849,114.24499999993235,-0.06860504678386414 +22850,114.24999999993234,-0.06860504565900735 +22851,114.25499999993234,-0.06860504453477419 +22852,114.25999999993233,-0.06860504341116441 +22853,114.26499999993233,-0.06860504228817786 +22854,114.26999999993232,-0.06860504116581426 +22855,114.27499999993232,-0.06860504004407342 +22856,114.27999999993231,-0.06860503892295512 +22857,114.28499999993231,-0.06860503780245913 +22858,114.2899999999323,-0.06860503668258525 +22859,114.2949999999323,-0.06860503556333325 +22860,114.2999999999323,-0.06860503444470291 +22861,114.30499999993229,-0.06860503332669401 +22862,114.30999999993229,-0.06860503220930636 +22863,114.31499999993228,-0.06860503109253971 +22864,114.31999999993228,-0.06860502997639385 +22865,114.32499999993227,-0.06860502886086857 +22866,114.32999999993227,-0.06860502774596365 +22867,114.33499999993226,-0.06860502663167889 +22868,114.33999999993226,-0.06860502551801403 +22869,114.34499999993226,-0.06860502440496889 +22870,114.34999999993225,-0.06860502329254324 +22871,114.35499999993225,-0.06860502218073686 +22872,114.35999999993224,-0.06860502106954952 +22873,114.36499999993224,-0.06860501995898104 +22874,114.36999999993223,-0.06860501884903117 +22875,114.37499999993223,-0.06860501773969971 +22876,114.37999999993222,-0.06860501663098643 +22877,114.38499999993222,-0.06860501552289112 +22878,114.38999999993221,-0.06860501441541358 +22879,114.39499999993221,-0.06860501330855358 +22880,114.3999999999322,-0.0686050122023109 +22881,114.4049999999322,-0.06860501109668533 +22882,114.4099999999322,-0.06860500999167664 +22883,114.41499999993219,-0.06860500888728463 +22884,114.41999999993219,-0.06860500778350907 +22885,114.42499999993218,-0.06860500668034976 +22886,114.42999999993218,-0.06860500557780647 +22887,114.43499999993217,-0.06860500447587899 +22888,114.43999999993217,-0.06860500337456711 +22889,114.44499999993216,-0.06860500227387059 +22890,114.44999999993216,-0.06860500117378925 +22891,114.45499999993216,-0.06860500007432285 +22892,114.45999999993215,-0.06860499897547118 +22893,114.46499999993215,-0.06860499787723402 +22894,114.46999999993214,-0.06860499677961117 +22895,114.47499999993214,-0.0686049956826024 +22896,114.47999999993213,-0.0686049945862075 +22897,114.48499999993213,-0.06860499349042626 +22898,114.48999999993212,-0.06860499239525844 +22899,114.49499999993212,-0.06860499130070384 +22900,114.49999999993211,-0.06860499020676226 +22901,114.50499999993211,-0.06860498911343348 +22902,114.5099999999321,-0.06860498802071727 +22903,114.5149999999321,-0.06860498692861343 +22904,114.5199999999321,-0.06860498583712173 +22905,114.52499999993209,-0.06860498474624196 +22906,114.52999999993209,-0.06860498365597392 +22907,114.53499999993208,-0.06860498256631738 +22908,114.53999999993208,-0.06860498147727212 +22909,114.54499999993207,-0.06860498038883794 +22910,114.54999999993207,-0.06860497930101463 +22911,114.55499999993206,-0.06860497821380196 +22912,114.55999999993206,-0.06860497712719972 +22913,114.56499999993206,-0.0686049760412077 +22914,114.56999999993205,-0.0686049749558257 +22915,114.57499999993205,-0.06860497387105348 +22916,114.57999999993204,-0.06860497278689083 +22917,114.58499999993204,-0.06860497170333754 +22918,114.58999999993203,-0.0686049706203934 +22919,114.59499999993203,-0.0686049695380582 +22920,114.59999999993202,-0.06860496845633172 +22921,114.60499999993202,-0.06860496737521375 +22922,114.60999999993201,-0.06860496629470407 +22923,114.61499999993201,-0.06860496521480246 +22924,114.619999999932,-0.06860496413550872 +22925,114.624999999932,-0.06860496305682265 +22926,114.629999999932,-0.06860496197874401 +22927,114.63499999993199,-0.06860496090127259 +22928,114.63999999993199,-0.06860495982440819 +22929,114.64499999993198,-0.06860495874815058 +22930,114.64999999993198,-0.06860495767249956 +22931,114.65499999993197,-0.06860495659745493 +22932,114.65999999993197,-0.06860495552301646 +22933,114.66499999993196,-0.06860495444918392 +22934,114.66999999993196,-0.06860495337595712 +22935,114.67499999993196,-0.06860495230333585 +22936,114.67999999993195,-0.06860495123131989 +22937,114.68499999993195,-0.06860495015990903 +22938,114.68999999993194,-0.06860494908910304 +22939,114.69499999993194,-0.06860494801890175 +22940,114.69999999993193,-0.06860494694930491 +22941,114.70499999993193,-0.06860494588031232 +22942,114.70999999993192,-0.06860494481192378 +22943,114.71499999993192,-0.06860494374413904 +22944,114.71999999993191,-0.06860494267695792 +22945,114.72499999993191,-0.0686049416103802 +22946,114.7299999999319,-0.06860494054440566 +22947,114.7349999999319,-0.06860493947903412 +22948,114.7399999999319,-0.06860493841426532 +22949,114.74499999993189,-0.06860493735009908 +22950,114.74999999993189,-0.06860493628653518 +22951,114.75499999993188,-0.06860493522357342 +22952,114.75999999993188,-0.06860493416121358 +22953,114.76499999993187,-0.06860493309945544 +22954,114.76999999993187,-0.0686049320382988 +22955,114.77499999993186,-0.06860493097774344 +22956,114.77999999993186,-0.06860492991778915 +22957,114.78499999993186,-0.06860492885843573 +22958,114.78999999993185,-0.06860492779968295 +22959,114.79499999993185,-0.06860492674153063 +22960,114.79999999993184,-0.06860492568397851 +22961,114.80499999993184,-0.06860492462702643 +22962,114.80999999993183,-0.06860492357067413 +22963,114.81499999993183,-0.06860492251492144 +22964,114.81999999993182,-0.06860492145976814 +22965,114.82499999993182,-0.068604920405214 +22966,114.82999999993181,-0.06860491935125884 +22967,114.83499999993181,-0.06860491829790243 +22968,114.8399999999318,-0.06860491724514456 +22969,114.8449999999318,-0.06860491619298503 +22970,114.8499999999318,-0.06860491514142363 +22971,114.85499999993179,-0.06860491409046011 +22972,114.85999999993179,-0.06860491304009432 +22973,114.86499999993178,-0.068604911990326 +22974,114.86999999993178,-0.06860491094115496 +22975,114.87499999993177,-0.068604909892581 +22976,114.87999999993177,-0.0686049088446039 +22977,114.88499999993176,-0.06860490779722346 +22978,114.88999999993176,-0.06860490675043945 +22979,114.89499999993176,-0.06860490570425169 +22980,114.89999999993175,-0.06860490465865995 +22981,114.90499999993175,-0.068604903613664 +22982,114.90999999993174,-0.06860490256926367 +22983,114.91499999993174,-0.06860490152545874 +22984,114.91999999993173,-0.068604900482249 +22985,114.92499999993173,-0.06860489943963421 +22986,114.92999999993172,-0.0686048983976142 +22987,114.93499999993172,-0.06860489735618876 +22988,114.93999999993171,-0.06860489631535766 +22989,114.94499999993171,-0.06860489527512069 +22990,114.9499999999317,-0.06860489423547765 +22991,114.9549999999317,-0.06860489319642832 +22992,114.9599999999317,-0.06860489215797251 +22993,114.96499999993169,-0.06860489112011 +22994,114.96999999993169,-0.06860489008284061 +22995,114.97499999993168,-0.06860488904616409 +22996,114.97999999993168,-0.06860488801008024 +22997,114.98499999993167,-0.06860488697458887 +22998,114.98999999993167,-0.06860488593968975 +22999,114.99499999993166,-0.06860488490538269 +23000,114.99999999993166,-0.06860488387166747 +23001,115.00499999993166,-0.06860488283854389 +23002,115.00999999993165,-0.06860488180601174 +23003,115.01499999993165,-0.0686048807740708 +23004,115.01999999993164,-0.06860487974272086 +23005,115.02499999993164,-0.06860487871196175 +23006,115.02999999993163,-0.06860487768179323 +23007,115.03499999993163,-0.06860487665221508 +23008,115.03999999993162,-0.06860487562322713 +23009,115.04499999993162,-0.06860487459482914 +23010,115.04999999993161,-0.06860487356702091 +23011,115.05499999993161,-0.06860487253980224 +23012,115.0599999999316,-0.06860487151317292 +23013,115.0649999999316,-0.06860487048713275 +23014,115.0699999999316,-0.0686048694616815 +23015,115.07499999993159,-0.068604868436819 +23016,115.07999999993159,-0.068604867412545 +23017,115.08499999993158,-0.0686048663888593 +23018,115.08999999993158,-0.06860486536576174 +23019,115.09499999993157,-0.06860486434325207 +23020,115.09999999993157,-0.06860486332133008 +23021,115.10499999993156,-0.06860486229999557 +23022,115.10999999993156,-0.06860486127924835 +23023,115.11499999993156,-0.0686048602590882 +23024,115.11999999993155,-0.06860485923951491 +23025,115.12499999993155,-0.06860485822052827 +23026,115.12999999993154,-0.06860485720212808 +23027,115.13499999993154,-0.06860485618431415 +23028,115.13999999993153,-0.06860485516708625 +23029,115.14499999993153,-0.06860485415044419 +23030,115.14999999993152,-0.06860485313438776 +23031,115.15499999993152,-0.06860485211891675 +23032,115.15999999993151,-0.06860485110403093 +23033,115.16499999993151,-0.06860485008973012 +23034,115.1699999999315,-0.06860484907601412 +23035,115.1749999999315,-0.06860484806288271 +23036,115.1799999999315,-0.06860484705033569 +23037,115.18499999993149,-0.06860484603837286 +23038,115.18999999993149,-0.068604845026994 +23039,115.19499999993148,-0.06860484401619892 +23040,115.19999999993148,-0.06860484300598739 +23041,115.20499999993147,-0.06860484199635923 +23042,115.20999999993147,-0.06860484098731422 +23043,115.21499999993146,-0.06860483997885217 +23044,115.21999999993146,-0.06860483897097285 +23045,115.22499999993146,-0.06860483796367607 +23046,115.22999999993145,-0.06860483695696164 +23047,115.23499999993145,-0.06860483595082932 +23048,115.23999999993144,-0.06860483494527894 +23049,115.24499999993144,-0.06860483394031026 +23050,115.24999999993143,-0.06860483293592311 +23051,115.25499999993143,-0.06860483193211725 +23052,115.25999999993142,-0.0686048309288925 +23053,115.26499999993142,-0.06860482992624864 +23054,115.26999999993141,-0.06860482892418548 +23055,115.27499999993141,-0.06860482792270281 +23056,115.2799999999314,-0.06860482692180042 +23057,115.2849999999314,-0.06860482592147811 +23058,115.2899999999314,-0.06860482492173568 +23059,115.29499999993139,-0.06860482392257292 +23060,115.29999999993139,-0.06860482292398962 +23061,115.30499999993138,-0.06860482192598558 +23062,115.30999999993138,-0.0686048209285606 +23063,115.31499999993137,-0.06860481993171448 +23064,115.31999999993137,-0.068604818935447 +23065,115.32499999993136,-0.06860481793975798 +23066,115.32999999993136,-0.06860481694464719 +23067,115.33499999993136,-0.06860481595011445 +23068,115.33999999993135,-0.06860481495615953 +23069,115.34499999993135,-0.06860481396278224 +23070,115.34999999993134,-0.06860481296998239 +23071,115.35499999993134,-0.06860481197775975 +23072,115.35999999993133,-0.06860481098611414 +23073,115.36499999993133,-0.06860480999504533 +23074,115.36999999993132,-0.06860480900455315 +23075,115.37499999993132,-0.06860480801463738 +23076,115.37999999993131,-0.0686048070252978 +23077,115.38499999993131,-0.06860480603653421 +23078,115.3899999999313,-0.06860480504834644 +23079,115.3949999999313,-0.06860480406073426 +23080,115.3999999999313,-0.06860480307369747 +23081,115.40499999993129,-0.06860480208723586 +23082,115.40999999993129,-0.06860480110134927 +23083,115.41499999993128,-0.06860480011603744 +23084,115.41999999993128,-0.0686047991313002 +23085,115.42499999993127,-0.06860479814713734 +23086,115.42999999993127,-0.06860479716354864 +23087,115.43499999993126,-0.06860479618053393 +23088,115.43999999993126,-0.06860479519809298 +23089,115.44499999993126,-0.06860479421622562 +23090,115.44999999993125,-0.06860479323493161 +23091,115.45499999993125,-0.06860479225421076 +23092,115.45999999993124,-0.06860479127406288 +23093,115.46499999993124,-0.06860479029448775 +23094,115.46999999993123,-0.06860478931548519 +23095,115.47499999993123,-0.06860478833705497 +23096,115.47999999993122,-0.06860478735919691 +23097,115.48499999993122,-0.0686047863819108 +23098,115.48999999993121,-0.06860478540519643 +23099,115.49499999993121,-0.06860478442905363 +23100,115.4999999999312,-0.06860478345348216 +23101,115.5049999999312,-0.06860478247848184 +23102,115.5099999999312,-0.06860478150405246 +23103,115.51499999993119,-0.06860478053019381 +23104,115.51999999993119,-0.0686047795569057 +23105,115.52499999993118,-0.06860477858418795 +23106,115.52999999993118,-0.06860477761204033 +23107,115.53499999993117,-0.06860477664046263 +23108,115.53999999993117,-0.06860477566945467 +23109,115.54499999993116,-0.06860477469901625 +23110,115.54999999993116,-0.06860477372914715 +23111,115.55499999993116,-0.0686047727598472 +23112,115.55999999993115,-0.06860477179111617 +23113,115.56499999993115,-0.06860477082295385 +23114,115.56999999993114,-0.06860476985536007 +23115,115.57499999993114,-0.06860476888833462 +23116,115.57999999993113,-0.0686047679218773 +23117,115.58499999993113,-0.0686047669559879 +23118,115.58999999993112,-0.06860476599066623 +23119,115.59499999993112,-0.06860476502591208 +23120,115.59999999993111,-0.06860476406172525 +23121,115.60499999993111,-0.06860476309810555 +23122,115.6099999999311,-0.06860476213505277 +23123,115.6149999999311,-0.06860476117256671 +23124,115.6199999999311,-0.06860476021064718 +23125,115.62499999993109,-0.06860475924929398 +23126,115.62999999993109,-0.06860475828850689 +23127,115.63499999993108,-0.06860475732828573 +23128,115.63999999993108,-0.0686047563686303 +23129,115.64499999993107,-0.06860475540954038 +23130,115.64999999993107,-0.06860475445101578 +23131,115.65499999993106,-0.06860475349305631 +23132,115.65999999993106,-0.06860475253566176 +23133,115.66499999993106,-0.06860475157883193 +23134,115.66999999993105,-0.06860475062256664 +23135,115.67499999993105,-0.06860474966686565 +23136,115.67999999993104,-0.06860474871172881 +23137,115.68499999993104,-0.06860474775715587 +23138,115.68999999993103,-0.06860474680314668 +23139,115.69499999993103,-0.068604745849701 +23140,115.69999999993102,-0.06860474489681866 +23141,115.70499999993102,-0.06860474394449945 +23142,115.70999999993101,-0.06860474299274318 +23143,115.71499999993101,-0.06860474204154962 +23144,115.719999999931,-0.06860474109091859 +23145,115.724999999931,-0.06860474014084991 +23146,115.729999999931,-0.06860473919134336 +23147,115.73499999993099,-0.06860473824239874 +23148,115.73999999993099,-0.06860473729401587 +23149,115.74499999993098,-0.06860473634619452 +23150,115.74999999993098,-0.06860473539893451 +23151,115.75499999993097,-0.06860473445223565 +23152,115.75999999993097,-0.06860473350609773 +23153,115.76499999993096,-0.06860473256052056 +23154,115.76999999993096,-0.06860473161550394 +23155,115.77499999993096,-0.06860473067104766 +23156,115.77999999993095,-0.06860472972715154 +23157,115.78499999993095,-0.06860472878381536 +23158,115.78999999993094,-0.06860472784103894 +23159,115.79499999993094,-0.06860472689882206 +23160,115.79999999993093,-0.06860472595716456 +23161,115.80499999993093,-0.06860472501606621 +23162,115.80999999993092,-0.06860472407552681 +23163,115.81499999993092,-0.06860472313554619 +23164,115.81999999993091,-0.06860472219612415 +23165,115.82499999993091,-0.06860472125726046 +23166,115.8299999999309,-0.06860472031895494 +23167,115.8349999999309,-0.0686047193812074 +23168,115.8399999999309,-0.06860471844401762 +23169,115.84499999993089,-0.06860471750738543 +23170,115.84999999993089,-0.06860471657131063 +23171,115.85499999993088,-0.06860471563579301 +23172,115.85999999993088,-0.06860471470083239 +23173,115.86499999993087,-0.06860471376642854 +23174,115.86999999993087,-0.0686047128325813 +23175,115.87499999993086,-0.06860471189929045 +23176,115.87999999993086,-0.0686047109665558 +23177,115.88499999993086,-0.06860471003437715 +23178,115.88999999993085,-0.06860470910275432 +23179,115.89499999993085,-0.06860470817168708 +23180,115.89999999993084,-0.06860470724117526 +23181,115.90499999993084,-0.06860470631121866 +23182,115.90999999993083,-0.06860470538181708 +23183,115.91499999993083,-0.06860470445297033 +23184,115.91999999993082,-0.0686047035246782 +23185,115.92499999993082,-0.0686047025969405 +23186,115.92999999993081,-0.06860470166975703 +23187,115.93499999993081,-0.0686047007431276 +23188,115.9399999999308,-0.06860469981705203 +23189,115.9449999999308,-0.06860469889153009 +23190,115.9499999999308,-0.0686046979665616 +23191,115.95499999993079,-0.06860469704214638 +23192,115.95999999993079,-0.0686046961182842 +23193,115.96499999993078,-0.06860469519497488 +23194,115.96999999993078,-0.06860469427221823 +23195,115.97499999993077,-0.06860469335001405 +23196,115.97999999993077,-0.06860469242836215 +23197,115.98499999993076,-0.06860469150726232 +23198,115.98999999993076,-0.06860469058671438 +23199,115.99499999993076,-0.06860468966671814 +23200,115.99999999993075,-0.06860468874727338 +23201,116.00499999993075,-0.0686046878283799 +23202,116.00999999993074,-0.06860468691003756 +23203,116.01499999993074,-0.0686046859922461 +23204,116.01999999993073,-0.06860468507500536 +23205,116.02499999993073,-0.06860468415831514 +23206,116.02999999993072,-0.06860468324217524 +23207,116.03499999993072,-0.06860468232658548 +23208,116.03999999993071,-0.06860468141154565 +23209,116.04499999993071,-0.06860468049705554 +23210,116.0499999999307,-0.06860467958311499 +23211,116.0549999999307,-0.06860467866972376 +23212,116.0599999999307,-0.06860467775688171 +23213,116.06499999993069,-0.06860467684458861 +23214,116.06999999993069,-0.06860467593284428 +23215,116.07499999993068,-0.0686046750216485 +23216,116.07999999993068,-0.06860467411100112 +23217,116.08499999993067,-0.06860467320090191 +23218,116.08999999993067,-0.0686046722913507 +23219,116.09499999993066,-0.06860467138234727 +23220,116.09999999993066,-0.06860467047389143 +23221,116.10499999993066,-0.068604669565983 +23222,116.10999999993065,-0.06860466865862179 +23223,116.11499999993065,-0.06860466775180758 +23224,116.11999999993064,-0.06860466684554022 +23225,116.12499999993064,-0.06860466593981945 +23226,116.12999999993063,-0.06860466503464514 +23227,116.13499999993063,-0.06860466413001708 +23228,116.13999999993062,-0.06860466322593504 +23229,116.14499999993062,-0.06860466232239887 +23230,116.14999999993061,-0.06860466141940837 +23231,116.15499999993061,-0.0686046605169633 +23232,116.1599999999306,-0.06860465961506354 +23233,116.1649999999306,-0.06860465871370884 +23234,116.1699999999306,-0.06860465781289904 +23235,116.17499999993059,-0.06860465691263393 +23236,116.17999999993059,-0.06860465601291332 +23237,116.18499999993058,-0.06860465511373702 +23238,116.18999999993058,-0.06860465421510484 +23239,116.19499999993057,-0.06860465331701655 +23240,116.19999999993057,-0.06860465241947201 +23241,116.20499999993056,-0.06860465152247101 +23242,116.20999999993056,-0.06860465062601336 +23243,116.21499999993055,-0.06860464973009885 +23244,116.21999999993055,-0.06860464883472729 +23245,116.22499999993055,-0.0686046479398985 +23246,116.22999999993054,-0.06860464704561228 +23247,116.23499999993054,-0.06860464615186845 +23248,116.23999999993053,-0.0686046452586668 +23249,116.24499999993053,-0.06860464436600715 +23250,116.24999999993052,-0.0686046434738893 +23251,116.25499999993052,-0.06860464258231307 +23252,116.25999999993051,-0.06860464169127825 +23253,116.26499999993051,-0.06860464080078466 +23254,116.2699999999305,-0.0686046399108321 +23255,116.2749999999305,-0.06860463902142037 +23256,116.2799999999305,-0.0686046381325493 +23257,116.28499999993049,-0.0686046372442187 +23258,116.28999999993049,-0.06860463635642836 +23259,116.29499999993048,-0.0686046354691781 +23260,116.29999999993048,-0.06860463458246771 +23261,116.30499999993047,-0.06860463369629702 +23262,116.30999999993047,-0.06860463281066582 +23263,116.31499999993046,-0.06860463192557394 +23264,116.31999999993046,-0.06860463104102119 +23265,116.32499999993045,-0.06860463015700734 +23266,116.32999999993045,-0.06860462927353222 +23267,116.33499999993045,-0.06860462839059567 +23268,116.33999999993044,-0.06860462750819746 +23269,116.34499999993044,-0.06860462662633741 +23270,116.34999999993043,-0.06860462574501533 +23271,116.35499999993043,-0.06860462486423102 +23272,116.35999999993042,-0.06860462398398431 +23273,116.36499999993042,-0.068604623104275 +23274,116.36999999993041,-0.06860462222510288 +23275,116.37499999993041,-0.06860462134646779 +23276,116.3799999999304,-0.06860462046836953 +23277,116.3849999999304,-0.06860461959080791 +23278,116.3899999999304,-0.06860461871378272 +23279,116.39499999993039,-0.06860461783729377 +23280,116.39999999993039,-0.0686046169613409 +23281,116.40499999993038,-0.0686046160859239 +23282,116.40999999993038,-0.06860461521104257 +23283,116.41499999993037,-0.06860461433669675 +23284,116.41999999993037,-0.06860461346288622 +23285,116.42499999993036,-0.06860461258961081 +23286,116.42999999993036,-0.06860461171687032 +23287,116.43499999993035,-0.06860461084466457 +23288,116.43999999993035,-0.06860460997299335 +23289,116.44499999993035,-0.06860460910185648 +23290,116.44999999993034,-0.06860460823125378 +23291,116.45499999993034,-0.06860460736118505 +23292,116.45999999993033,-0.0686046064916501 +23293,116.46499999993033,-0.06860460562264874 +23294,116.46999999993032,-0.06860460475418079 +23295,116.47499999993032,-0.06860460388624604 +23296,116.47999999993031,-0.06860460301884432 +23297,116.48499999993031,-0.06860460215197543 +23298,116.4899999999303,-0.0686046012856392 +23299,116.4949999999303,-0.0686046004198354 +23300,116.4999999999303,-0.0686045995545639 +23301,116.50499999993029,-0.06860459868982446 +23302,116.50999999993029,-0.06860459782561691 +23303,116.51499999993028,-0.06860459696194106 +23304,116.51999999993028,-0.06860459609879672 +23305,116.52499999993027,-0.0686045952361837 +23306,116.52999999993027,-0.06860459437410181 +23307,116.53499999993026,-0.06860459351255087 +23308,116.53999999993026,-0.06860459265153068 +23309,116.54499999993025,-0.06860459179104106 +23310,116.54999999993025,-0.06860459093108182 +23311,116.55499999993025,-0.06860459007165276 +23312,116.55999999993024,-0.06860458921275371 +23313,116.56499999993024,-0.06860458835438447 +23314,116.56999999993023,-0.06860458749654487 +23315,116.57499999993023,-0.06860458663923469 +23316,116.57999999993022,-0.06860458578245375 +23317,116.58499999993022,-0.06860458492620188 +23318,116.58999999993021,-0.06860458407047888 +23319,116.59499999993021,-0.06860458321528456 +23320,116.5999999999302,-0.06860458236061874 +23321,116.6049999999302,-0.06860458150648122 +23322,116.6099999999302,-0.06860458065287182 +23323,116.61499999993019,-0.06860457979979034 +23324,116.61999999993019,-0.06860457894723662 +23325,116.62499999993018,-0.06860457809521045 +23326,116.62999999993018,-0.06860457724371165 +23327,116.63499999993017,-0.06860457639274004 +23328,116.63999999993017,-0.06860457554229539 +23329,116.64499999993016,-0.06860457469237757 +23330,116.64999999993016,-0.06860457384298638 +23331,116.65499999993015,-0.0686045729941216 +23332,116.65999999993015,-0.06860457214578307 +23333,116.66499999993015,-0.0686045712979706 +23334,116.66999999993014,-0.06860457045068398 +23335,116.67499999993014,-0.06860456960392305 +23336,116.67999999993013,-0.06860456875768763 +23337,116.68499999993013,-0.06860456791197751 +23338,116.68999999993012,-0.06860456706679251 +23339,116.69499999993012,-0.06860456622213244 +23340,116.69999999993011,-0.06860456537799714 +23341,116.70499999993011,-0.06860456453438638 +23342,116.7099999999301,-0.06860456369129998 +23343,116.7149999999301,-0.06860456284873778 +23344,116.7199999999301,-0.06860456200669958 +23345,116.72499999993009,-0.06860456116518521 +23346,116.72999999993009,-0.06860456032419444 +23347,116.73499999993008,-0.06860455948372712 +23348,116.73999999993008,-0.06860455864378305 +23349,116.74499999993007,-0.06860455780436206 +23350,116.74999999993007,-0.06860455696546394 +23351,116.75499999993006,-0.06860455612708853 +23352,116.75999999993006,-0.06860455528923562 +23353,116.76499999993005,-0.06860455445190505 +23354,116.76999999993005,-0.06860455361509661 +23355,116.77499999993005,-0.06860455277881011 +23356,116.77999999993004,-0.06860455194304539 +23357,116.78499999993004,-0.06860455110780225 +23358,116.78999999993003,-0.0686045502730805 +23359,116.79499999993003,-0.06860454943887997 +23360,116.79999999993002,-0.06860454860520045 +23361,116.80499999993002,-0.06860454777204177 +23362,116.80999999993001,-0.06860454693940375 +23363,116.81499999993001,-0.06860454610728618 +23364,116.81999999993,-0.0686045452756889 +23365,116.82499999993,-0.06860454444461173 +23366,116.82999999993,-0.06860454361405445 +23367,116.83499999992999,-0.0686045427840169 +23368,116.83999999992999,-0.0686045419544989 +23369,116.84499999992998,-0.06860454112550025 +23370,116.84999999992998,-0.06860454029702076 +23371,116.85499999992997,-0.06860453946906027 +23372,116.85999999992997,-0.06860453864161857 +23373,116.86499999992996,-0.06860453781469551 +23374,116.86999999992996,-0.06860453698829086 +23375,116.87499999992995,-0.06860453616240446 +23376,116.87999999992995,-0.06860453533703613 +23377,116.88499999992995,-0.06860453451218566 +23378,116.88999999992994,-0.0686045336878529 +23379,116.89499999992994,-0.06860453286403764 +23380,116.89999999992993,-0.0686045320407397 +23381,116.90499999992993,-0.0686045312179589 +23382,116.90999999992992,-0.06860453039569506 +23383,116.91499999992992,-0.06860452957394797 +23384,116.91999999992991,-0.06860452875271748 +23385,116.92499999992991,-0.06860452793200339 +23386,116.9299999999299,-0.06860452711180552 +23387,116.9349999999299,-0.0686045262921237 +23388,116.9399999999299,-0.06860452547295771 +23389,116.94499999992989,-0.0686045246543074 +23390,116.94999999992989,-0.06860452383617256 +23391,116.95499999992988,-0.06860452301855302 +23392,116.95999999992988,-0.06860452220144861 +23393,116.96499999992987,-0.06860452138485912 +23394,116.96999999992987,-0.06860452056878437 +23395,116.97499999992986,-0.0686045197532242 +23396,116.97999999992986,-0.0686045189381784 +23397,116.98499999992985,-0.0686045181236468 +23398,116.98999999992985,-0.06860451730962921 +23399,116.99499999992985,-0.06860451649612545 +23400,116.99999999992984,-0.06860451568313534 +23401,117.00499999992984,-0.0686045148706587 +23402,117.00999999992983,-0.06860451405869535 +23403,117.01499999992983,-0.06860451324724508 +23404,117.01999999992982,-0.06860451243630773 +23405,117.02499999992982,-0.0686045116258831 +23406,117.02999999992981,-0.06860451081597103 +23407,117.03499999992981,-0.06860451000657133 +23408,117.0399999999298,-0.06860450919768381 +23409,117.0449999999298,-0.06860450838930829 +23410,117.0499999999298,-0.0686045075814446 +23411,117.05499999992979,-0.06860450677409254 +23412,117.05999999992979,-0.06860450596725191 +23413,117.06499999992978,-0.06860450516092258 +23414,117.06999999992978,-0.06860450435510432 +23415,117.07499999992977,-0.06860450354979696 +23416,117.07999999992977,-0.06860450274500034 +23417,117.08499999992976,-0.06860450194071424 +23418,117.08999999992976,-0.06860450113693851 +23419,117.09499999992975,-0.06860450033367296 +23420,117.09999999992975,-0.0686044995309174 +23421,117.10499999992975,-0.06860449872867166 +23422,117.10999999992974,-0.06860449792693554 +23423,117.11499999992974,-0.06860449712570887 +23424,117.11999999992973,-0.06860449632499148 +23425,117.12499999992973,-0.06860449552478316 +23426,117.12999999992972,-0.06860449472508376 +23427,117.13499999992972,-0.06860449392589307 +23428,117.13999999992971,-0.06860449312721091 +23429,117.14499999992971,-0.06860449232903713 +23430,117.1499999999297,-0.0686044915313715 +23431,117.1549999999297,-0.06860449073421389 +23432,117.1599999999297,-0.06860448993756409 +23433,117.16499999992969,-0.0686044891414219 +23434,117.16999999992969,-0.0686044883457872 +23435,117.17499999992968,-0.06860448755065975 +23436,117.17999999992968,-0.06860448675603938 +23437,117.18499999992967,-0.06860448596192593 +23438,117.18999999992967,-0.0686044851683192 +23439,117.19499999992966,-0.06860448437521902 +23440,117.19999999992966,-0.0686044835826252 +23441,117.20499999992965,-0.06860448279053757 +23442,117.20999999992965,-0.06860448199895595 +23443,117.21499999992965,-0.06860448120788014 +23444,117.21999999992964,-0.06860448041730999 +23445,117.22499999992964,-0.06860447962724528 +23446,117.22999999992963,-0.06860447883768586 +23447,117.23499999992963,-0.06860447804863155 +23448,117.23999999992962,-0.06860447726008215 +23449,117.24499999992962,-0.06860447647203749 +23450,117.24999999992961,-0.06860447568449739 +23451,117.25499999992961,-0.06860447489746167 +23452,117.2599999999296,-0.06860447411093014 +23453,117.2649999999296,-0.06860447332490265 +23454,117.2699999999296,-0.06860447253937897 +23455,117.27499999992959,-0.06860447175435896 +23456,117.27999999992959,-0.06860447096984244 +23457,117.28499999992958,-0.06860447018582921 +23458,117.28999999992958,-0.0686044694023191 +23459,117.29499999992957,-0.06860446861931194 +23460,117.29999999992957,-0.06860446783680751 +23461,117.30499999992956,-0.06860446705480568 +23462,117.30999999992956,-0.06860446627330624 +23463,117.31499999992955,-0.06860446549230903 +23464,117.31999999992955,-0.06860446471181386 +23465,117.32499999992955,-0.06860446393182054 +23466,117.32999999992954,-0.06860446315232892 +23467,117.33499999992954,-0.0686044623733388 +23468,117.33999999992953,-0.06860446159484998 +23469,117.34499999992953,-0.06860446081686232 +23470,117.34999999992952,-0.06860446003937562 +23471,117.35499999992952,-0.06860445926238971 +23472,117.35999999992951,-0.06860445848590441 +23473,117.36499999992951,-0.06860445770991953 +23474,117.3699999999295,-0.06860445693443491 +23475,117.3749999999295,-0.06860445615945035 +23476,117.3799999999295,-0.06860445538496568 +23477,117.38499999992949,-0.06860445461098072 +23478,117.38999999992949,-0.0686044538374953 +23479,117.39499999992948,-0.06860445306450923 +23480,117.39999999992948,-0.06860445229202235 +23481,117.40499999992947,-0.06860445152003444 +23482,117.40999999992947,-0.06860445074854538 +23483,117.41499999992946,-0.06860444997755494 +23484,117.41999999992946,-0.06860444920706298 +23485,117.42499999992945,-0.06860444843706928 +23486,117.42999999992945,-0.06860444766757369 +23487,117.43499999992945,-0.06860444689857605 +23488,117.43999999992944,-0.06860444613007614 +23489,117.44499999992944,-0.0686044453620738 +23490,117.44999999992943,-0.06860444459456887 +23491,117.45499999992943,-0.06860444382756115 +23492,117.45999999992942,-0.06860444306105044 +23493,117.46499999992942,-0.06860444229503662 +23494,117.46999999992941,-0.06860444152951947 +23495,117.47499999992941,-0.06860444076449883 +23496,117.4799999999294,-0.06860443999997452 +23497,117.4849999999294,-0.06860443923594635 +23498,117.4899999999294,-0.06860443847241415 +23499,117.49499999992939,-0.06860443770937774 +23500,117.49999999992939,-0.06860443694683695 +23501,117.50499999992938,-0.0686044361847916 +23502,117.50999999992938,-0.06860443542324152 +23503,117.51499999992937,-0.0686044346621865 +23504,117.51999999992937,-0.0686044339016264 +23505,117.52499999992936,-0.06860443314156105 +23506,117.52999999992936,-0.06860443238199024 +23507,117.53499999992935,-0.0686044316229138 +23508,117.53999999992935,-0.06860443086433154 +23509,117.54499999992935,-0.06860443010624333 +23510,117.54999999992934,-0.06860442934864895 +23511,117.55499999992934,-0.06860442859154825 +23512,117.55999999992933,-0.06860442783494103 +23513,117.56499999992933,-0.06860442707882712 +23514,117.56999999992932,-0.06860442632320636 +23515,117.57499999992932,-0.06860442556807855 +23516,117.57999999992931,-0.06860442481344353 +23517,117.58499999992931,-0.06860442405930113 +23518,117.5899999999293,-0.06860442330565114 +23519,117.5949999999293,-0.06860442255249342 +23520,117.5999999999293,-0.06860442179982777 +23521,117.60499999992929,-0.06860442104765403 +23522,117.60999999992929,-0.06860442029597202 +23523,117.61499999992928,-0.06860441954478155 +23524,117.61999999992928,-0.06860441879408247 +23525,117.62499999992927,-0.06860441804387457 +23526,117.62999999992927,-0.0686044172941577 +23527,117.63499999992926,-0.06860441654493167 +23528,117.63999999992926,-0.0686044157961963 +23529,117.64499999992925,-0.06860441504795145 +23530,117.64999999992925,-0.06860441430019691 +23531,117.65499999992925,-0.06860441355293251 +23532,117.65999999992924,-0.06860441280615809 +23533,117.66499999992924,-0.06860441205987344 +23534,117.66999999992923,-0.06860441131407842 +23535,117.67499999992923,-0.06860441056877284 +23536,117.67999999992922,-0.06860440982395652 +23537,117.68499999992922,-0.0686044090796293 +23538,117.68999999992921,-0.06860440833579098 +23539,117.69499999992921,-0.06860440759244141 +23540,117.6999999999292,-0.0686044068495804 +23541,117.7049999999292,-0.06860440610720778 +23542,117.7099999999292,-0.06860440536532338 +23543,117.71499999992919,-0.06860440462392701 +23544,117.71999999992919,-0.06860440388301851 +23545,117.72499999992918,-0.06860440314259769 +23546,117.72999999992918,-0.0686044024026644 +23547,117.73499999992917,-0.06860440166321845 +23548,117.73999999992917,-0.06860440092425965 +23549,117.74499999992916,-0.06860440018578784 +23550,117.74999999992916,-0.06860439944780285 +23551,117.75499999992915,-0.06860439871030449 +23552,117.75999999992915,-0.06860439797329262 +23553,117.76499999992915,-0.06860439723676703 +23554,117.76999999992914,-0.06860439650072757 +23555,117.77499999992914,-0.06860439576517403 +23556,117.77999999992913,-0.06860439503010628 +23557,117.78499999992913,-0.06860439429552412 +23558,117.78999999992912,-0.06860439356142738 +23559,117.79499999992912,-0.06860439282781587 +23560,117.79999999992911,-0.06860439209468945 +23561,117.80499999992911,-0.06860439136204792 +23562,117.8099999999291,-0.06860439062989111 +23563,117.8149999999291,-0.06860438989821886 +23564,117.8199999999291,-0.06860438916703097 +23565,117.82499999992909,-0.0686043884363273 +23566,117.82999999992909,-0.06860438770610766 +23567,117.83499999992908,-0.06860438697637188 +23568,117.83999999992908,-0.06860438624711976 +23569,117.84499999992907,-0.06860438551835117 +23570,117.84999999992907,-0.0686043847900659 +23571,117.85499999992906,-0.06860438406226381 +23572,117.85999999992906,-0.06860438333494469 +23573,117.86499999992905,-0.06860438260810839 +23574,117.86999999992905,-0.06860438188175472 +23575,117.87499999992905,-0.06860438115588353 +23576,117.87999999992904,-0.06860438043049463 +23577,117.88499999992904,-0.06860437970558786 +23578,117.88999999992903,-0.06860437898116303 +23579,117.89499999992903,-0.06860437825721999 +23580,117.89999999992902,-0.06860437753375855 +23581,117.90499999992902,-0.06860437681077852 +23582,117.90999999992901,-0.06860437608827977 +23583,117.91499999992901,-0.06860437536626209 +23584,117.919999999929,-0.06860437464472532 +23585,117.924999999929,-0.0686043739236693 +23586,117.929999999929,-0.06860437320309384 +23587,117.93499999992899,-0.06860437248299878 +23588,117.93999999992899,-0.06860437176338392 +23589,117.94499999992898,-0.06860437104424912 +23590,117.94999999992898,-0.0686043703255942 +23591,117.95499999992897,-0.06860436960741899 +23592,117.95999999992897,-0.06860436888972331 +23593,117.96499999992896,-0.06860436817250698 +23594,117.96999999992896,-0.06860436745576985 +23595,117.97499999992895,-0.06860436673951172 +23596,117.97999999992895,-0.06860436602373245 +23597,117.98499999992895,-0.06860436530843182 +23598,117.98999999992894,-0.06860436459360972 +23599,117.99499999992894,-0.06860436387926594 +23600,117.99999999992893,-0.0686043631654003 +23601,118.00499999992893,-0.06860436245201265 +23602,118.00999999992892,-0.06860436173910281 +23603,118.01499999992892,-0.06860436102667061 +23604,118.01999999992891,-0.0686043603147159 +23605,118.02499999992891,-0.06860435960323846 +23606,118.0299999999289,-0.06860435889223816 +23607,118.0349999999289,-0.06860435818171481 +23608,118.0399999999289,-0.06860435747166825 +23609,118.04499999992889,-0.06860435676209829 +23610,118.04999999992889,-0.06860435605300479 +23611,118.05499999992888,-0.06860435534438752 +23612,118.05999999992888,-0.06860435463624638 +23613,118.06499999992887,-0.06860435392858116 +23614,118.06999999992887,-0.06860435322139169 +23615,118.07499999992886,-0.06860435251467782 +23616,118.07999999992886,-0.06860435180843935 +23617,118.08499999992885,-0.06860435110267613 +23618,118.08999999992885,-0.06860435039738796 +23619,118.09499999992885,-0.06860434969257471 +23620,118.09999999992884,-0.0686043489882362 +23621,118.10499999992884,-0.06860434828437224 +23622,118.10999999992883,-0.06860434758098266 +23623,118.11499999992883,-0.06860434687806731 +23624,118.11999999992882,-0.068604346175626 +23625,118.12499999992882,-0.06860434547365855 +23626,118.12999999992881,-0.06860434477216483 +23627,118.13499999992881,-0.06860434407114464 +23628,118.1399999999288,-0.06860434337059781 +23629,118.1449999999288,-0.06860434267052419 +23630,118.1499999999288,-0.06860434197092359 +23631,118.15499999992879,-0.06860434127179585 +23632,118.15999999992879,-0.06860434057314078 +23633,118.16499999992878,-0.06860433987495825 +23634,118.16999999992878,-0.06860433917724804 +23635,118.17499999992877,-0.06860433848001002 +23636,118.17999999992877,-0.068604337783244 +23637,118.18499999992876,-0.06860433708694981 +23638,118.18999999992876,-0.06860433639112729 +23639,118.19499999992875,-0.06860433569577627 +23640,118.19999999992875,-0.06860433500089659 +23641,118.20499999992875,-0.06860433430648805 +23642,118.20999999992874,-0.06860433361255049 +23643,118.21499999992874,-0.06860433291908376 +23644,118.21999999992873,-0.06860433222608768 +23645,118.22499999992873,-0.06860433153356207 +23646,118.22999999992872,-0.06860433084150679 +23647,118.23499999992872,-0.06860433014992164 +23648,118.23999999992871,-0.06860432945880646 +23649,118.24499999992871,-0.06860432876816108 +23650,118.2499999999287,-0.06860432807798535 +23651,118.2549999999287,-0.06860432738827907 +23652,118.2599999999287,-0.06860432669904208 +23653,118.26499999992869,-0.06860432601027422 +23654,118.26999999992869,-0.06860432532197533 +23655,118.27499999992868,-0.06860432463414522 +23656,118.27999999992868,-0.06860432394678373 +23657,118.28499999992867,-0.06860432325989067 +23658,118.28999999992867,-0.06860432257346592 +23659,118.29499999992866,-0.06860432188750927 +23660,118.29999999992866,-0.06860432120202058 +23661,118.30499999992865,-0.06860432051699965 +23662,118.30999999992865,-0.06860431983244633 +23663,118.31499999992865,-0.06860431914836046 +23664,118.31999999992864,-0.06860431846474187 +23665,118.32499999992864,-0.06860431778159037 +23666,118.32999999992863,-0.06860431709890581 +23667,118.33499999992863,-0.068604316416688 +23668,118.33999999992862,-0.06860431573493682 +23669,118.34499999992862,-0.06860431505365205 +23670,118.34999999992861,-0.06860431437283356 +23671,118.35499999992861,-0.06860431369248114 +23672,118.3599999999286,-0.06860431301259466 +23673,118.3649999999286,-0.06860431233317393 +23674,118.3699999999286,-0.0686043116542188 +23675,118.37499999992859,-0.0686043109757291 +23676,118.37999999992859,-0.06860431029770464 +23677,118.38499999992858,-0.06860430962014528 +23678,118.38999999992858,-0.06860430894305083 +23679,118.39499999992857,-0.06860430826642115 +23680,118.39999999992857,-0.06860430759025606 +23681,118.40499999992856,-0.06860430691455537 +23682,118.40999999992856,-0.06860430623931893 +23683,118.41499999992855,-0.06860430556454658 +23684,118.41999999992855,-0.06860430489023814 +23685,118.42499999992854,-0.06860430421639346 +23686,118.42999999992854,-0.06860430354301235 +23687,118.43499999992854,-0.06860430287009465 +23688,118.43999999992853,-0.06860430219764023 +23689,118.44499999992853,-0.06860430152564886 +23690,118.44999999992852,-0.06860430085412042 +23691,118.45499999992852,-0.06860430018305472 +23692,118.45999999992851,-0.0686042995124516 +23693,118.46499999992851,-0.0686042988423109 +23694,118.4699999999285,-0.06860429817263244 +23695,118.4749999999285,-0.06860429750341607 +23696,118.4799999999285,-0.0686042968346616 +23697,118.48499999992849,-0.06860429616636889 +23698,118.48999999992849,-0.06860429549853773 +23699,118.49499999992848,-0.06860429483116802 +23700,118.49999999992848,-0.06860429416425955 +23701,118.50499999992847,-0.06860429349781215 +23702,118.50999999992847,-0.06860429283182568 +23703,118.51499999992846,-0.06860429216629994 +23704,118.51999999992846,-0.0686042915012348 +23705,118.52499999992845,-0.06860429083663006 +23706,118.52999999992845,-0.06860429017248558 +23707,118.53499999992844,-0.06860428950880118 +23708,118.53999999992844,-0.06860428884557669 +23709,118.54499999992844,-0.06860428818281196 +23710,118.54999999992843,-0.06860428752050682 +23711,118.55499999992843,-0.0686042868586611 +23712,118.55999999992842,-0.06860428619727463 +23713,118.56499999992842,-0.06860428553634725 +23714,118.56999999992841,-0.06860428487587879 +23715,118.57499999992841,-0.0686042842158691 +23716,118.5799999999284,-0.068604283556318 +23717,118.5849999999284,-0.06860428289722532 +23718,118.5899999999284,-0.0686042822385909 +23719,118.59499999992839,-0.06860428158041458 +23720,118.59999999992839,-0.06860428092269619 +23721,118.60499999992838,-0.06860428026543557 +23722,118.60999999992838,-0.06860427960863254 +23723,118.61499999992837,-0.06860427895228695 +23724,118.61999999992837,-0.06860427829639863 +23725,118.62499999992836,-0.06860427764096742 +23726,118.62999999992836,-0.06860427698599315 +23727,118.63499999992835,-0.06860427633147566 +23728,118.63999999992835,-0.06860427567741478 +23729,118.64499999992834,-0.06860427502381033 +23730,118.64999999992834,-0.06860427437066217 +23731,118.65499999992834,-0.06860427371797014 +23732,118.65999999992833,-0.06860427306573404 +23733,118.66499999992833,-0.06860427241395373 +23734,118.66999999992832,-0.06860427176262904 +23735,118.67499999992832,-0.06860427111175982 +23736,118.67999999992831,-0.06860427046134587 +23737,118.68499999992831,-0.06860426981138708 +23738,118.6899999999283,-0.06860426916188322 +23739,118.6949999999283,-0.06860426851283419 +23740,118.6999999999283,-0.06860426786423977 +23741,118.70499999992829,-0.06860426721609984 +23742,118.70999999992829,-0.06860426656841422 +23743,118.71499999992828,-0.06860426592118272 +23744,118.71999999992828,-0.06860426527440522 +23745,118.72499999992827,-0.06860426462808153 +23746,118.72999999992827,-0.06860426398221148 +23747,118.73499999992826,-0.06860426333679492 +23748,118.73999999992826,-0.06860426269183169 +23749,118.74499999992825,-0.06860426204732163 +23750,118.74999999992825,-0.06860426140326455 +23751,118.75499999992824,-0.06860426075966031 +23752,118.75999999992824,-0.06860426011650873 +23753,118.76499999992824,-0.06860425947380965 +23754,118.76999999992823,-0.06860425883156292 +23755,118.77499999992823,-0.06860425818976836 +23756,118.77999999992822,-0.06860425754842582 +23757,118.78499999992822,-0.06860425690753513 +23758,118.78999999992821,-0.06860425626709614 +23759,118.79499999992821,-0.06860425562710866 +23760,118.7999999999282,-0.06860425498757254 +23761,118.8049999999282,-0.06860425434848763 +23762,118.8099999999282,-0.06860425370985375 +23763,118.81499999992819,-0.06860425307167074 +23764,118.81999999992819,-0.06860425243393845 +23765,118.82499999992818,-0.06860425179665669 +23766,118.82999999992818,-0.06860425115982531 +23767,118.83499999992817,-0.06860425052344417 +23768,118.83999999992817,-0.06860424988751307 +23769,118.84499999992816,-0.06860424925203186 +23770,118.84999999992816,-0.0686042486170004 +23771,118.85499999992815,-0.0686042479824185 +23772,118.85999999992815,-0.068604247348286 +23773,118.86499999992814,-0.06860424671460277 +23774,118.86999999992814,-0.0686042460813686 +23775,118.87499999992814,-0.06860424544858336 +23776,118.87999999992813,-0.06860424481624686 +23777,118.88499999992813,-0.06860424418435897 +23778,118.88999999992812,-0.0686042435529195 +23779,118.89499999992812,-0.06860424292192831 +23780,118.89999999992811,-0.06860424229138522 +23781,118.90499999992811,-0.06860424166129007 +23782,118.9099999999281,-0.06860424103164271 +23783,118.9149999999281,-0.06860424040244298 +23784,118.9199999999281,-0.0686042397736907 +23785,118.92499999992809,-0.06860423914538573 +23786,118.92999999992809,-0.0686042385175279 +23787,118.93499999992808,-0.06860423789011703 +23788,118.93999999992808,-0.06860423726315298 +23789,118.94499999992807,-0.06860423663663558 +23790,118.94999999992807,-0.06860423601056466 +23791,118.95499999992806,-0.06860423538494008 +23792,118.95999999992806,-0.06860423475976167 +23793,118.96499999992805,-0.06860423413502927 +23794,118.96999999992805,-0.06860423351074268 +23795,118.97499999992804,-0.0686042328869018 +23796,118.97999999992804,-0.06860423226350644 +23797,118.98499999992804,-0.06860423164055643 +23798,118.98999999992803,-0.0686042310180516 +23799,118.99499999992803,-0.06860423039599184 +23800,118.99999999992802,-0.06860422977437694 +23801,119.00499999992802,-0.06860422915320674 +23802,119.00999999992801,-0.06860422853248112 +23803,119.01499999992801,-0.06860422791219987 +23804,119.019999999928,-0.06860422729236286 +23805,119.024999999928,-0.06860422667296993 +23806,119.029999999928,-0.06860422605402092 +23807,119.03499999992799,-0.06860422543551564 +23808,119.03999999992799,-0.06860422481745396 +23809,119.04499999992798,-0.0686042241998357 +23810,119.04999999992798,-0.0686042235826607 +23811,119.05499999992797,-0.06860422296592883 +23812,119.05999999992797,-0.06860422234963988 +23813,119.06499999992796,-0.06860422173379374 +23814,119.06999999992796,-0.06860422111839022 +23815,119.07499999992795,-0.06860422050342915 +23816,119.07999999992795,-0.0686042198889104 +23817,119.08499999992794,-0.06860421927483379 +23818,119.08999999992794,-0.06860421866119916 +23819,119.09499999992794,-0.06860421804800636 +23820,119.09999999992793,-0.06860421743525523 +23821,119.10499999992793,-0.0686042168229456 +23822,119.10999999992792,-0.0686042162110773 +23823,119.11499999992792,-0.06860421559965019 +23824,119.11999999992791,-0.06860421498866412 +23825,119.12499999992791,-0.0686042143781189 +23826,119.1299999999279,-0.06860421376801439 +23827,119.1349999999279,-0.06860421315835041 +23828,119.1399999999279,-0.06860421254912684 +23829,119.14499999992789,-0.0686042119403435 +23830,119.14999999992789,-0.0686042113320002 +23831,119.15499999992788,-0.06860421072409682 +23832,119.15999999992788,-0.06860421011663319 +23833,119.16499999992787,-0.06860420950960913 +23834,119.16999999992787,-0.06860420890302452 +23835,119.17499999992786,-0.06860420829687916 +23836,119.17999999992786,-0.06860420769117294 +23837,119.18499999992785,-0.06860420708590564 +23838,119.18999999992785,-0.06860420648107714 +23839,119.19499999992784,-0.06860420587668728 +23840,119.19999999992784,-0.06860420527273588 +23841,119.20499999992784,-0.06860420466922282 +23842,119.20999999992783,-0.0686042040661479 +23843,119.21499999992783,-0.06860420346351095 +23844,119.21999999992782,-0.06860420286131186 +23845,119.22499999992782,-0.06860420225955045 +23846,119.22999999992781,-0.06860420165822656 +23847,119.23499999992781,-0.06860420105734004 +23848,119.2399999999278,-0.06860420045689071 +23849,119.2449999999278,-0.06860419985687842 +23850,119.2499999999278,-0.06860419925730304 +23851,119.25499999992779,-0.06860419865816436 +23852,119.25999999992779,-0.06860419805946226 +23853,119.26499999992778,-0.06860419746119657 +23854,119.26999999992778,-0.06860419686336713 +23855,119.27499999992777,-0.0686041962659738 +23856,119.27999999992777,-0.06860419566901639 +23857,119.28499999992776,-0.06860419507249477 +23858,119.28999999992776,-0.06860419447640875 +23859,119.29499999992775,-0.06860419388075821 +23860,119.29999999992775,-0.06860419328554296 +23861,119.30499999992774,-0.06860419269076286 +23862,119.30999999992774,-0.06860419209641774 +23863,119.31499999992774,-0.06860419150250746 +23864,119.31999999992773,-0.06860419090903185 +23865,119.32499999992773,-0.06860419031599076 +23866,119.32999999992772,-0.06860418972338402 +23867,119.33499999992772,-0.06860418913121147 +23868,119.33999999992771,-0.06860418853947296 +23869,119.34499999992771,-0.06860418794816833 +23870,119.3499999999277,-0.06860418735729744 +23871,119.3549999999277,-0.06860418676686011 +23872,119.3599999999277,-0.0686041861768562 +23873,119.36499999992769,-0.06860418558728552 +23874,119.36999999992769,-0.06860418499814795 +23875,119.37499999992768,-0.06860418440944334 +23876,119.37999999992768,-0.06860418382117149 +23877,119.38499999992767,-0.06860418323333227 +23878,119.38999999992767,-0.06860418264592551 +23879,119.39499999992766,-0.06860418205895105 +23880,119.39999999992766,-0.06860418147240877 +23881,119.40499999992765,-0.06860418088629848 +23882,119.40999999992765,-0.06860418030062002 +23883,119.41499999992764,-0.06860417971537325 +23884,119.41999999992764,-0.068604179130558 +23885,119.42499999992764,-0.06860417854617411 +23886,119.42999999992763,-0.06860417796222144 +23887,119.43499999992763,-0.06860417737869984 +23888,119.43999999992762,-0.06860417679560912 +23889,119.44499999992762,-0.06860417621294916 +23890,119.44999999992761,-0.06860417563071977 +23891,119.45499999992761,-0.06860417504892082 +23892,119.4599999999276,-0.06860417446755213 +23893,119.4649999999276,-0.06860417388661356 +23894,119.4699999999276,-0.06860417330610495 +23895,119.47499999992759,-0.06860417272602615 +23896,119.47999999992759,-0.068604172146377 +23897,119.48499999992758,-0.06860417156715734 +23898,119.48999999992758,-0.06860417098836702 +23899,119.49499999992757,-0.06860417041000587 +23900,119.49999999992757,-0.06860416983207374 +23901,119.50499999992756,-0.06860416925457048 +23902,119.50999999992756,-0.06860416867749594 +23903,119.51499999992755,-0.06860416810084995 +23904,119.51999999992755,-0.06860416752463236 +23905,119.52499999992754,-0.06860416694884301 +23906,119.52999999992754,-0.06860416637348177 +23907,119.53499999992754,-0.06860416579854844 +23908,119.53999999992753,-0.06860416522404289 +23909,119.54499999992753,-0.06860416464996498 +23910,119.54999999992752,-0.06860416407631452 +23911,119.55499999992752,-0.06860416350309137 +23912,119.55999999992751,-0.06860416293029538 +23913,119.56499999992751,-0.06860416235792638 +23914,119.5699999999275,-0.06860416178598425 +23915,119.5749999999275,-0.06860416121446879 +23916,119.5799999999275,-0.06860416064337987 +23917,119.58499999992749,-0.06860416007271733 +23918,119.58999999992749,-0.06860415950248101 +23919,119.59499999992748,-0.06860415893267076 +23920,119.59999999992748,-0.06860415836328641 +23921,119.60499999992747,-0.06860415779432785 +23922,119.60999999992747,-0.06860415722579488 +23923,119.61499999992746,-0.06860415665768736 +23924,119.61999999992746,-0.06860415609000514 +23925,119.62499999992745,-0.06860415552274804 +23926,119.62999999992745,-0.06860415495591594 +23927,119.63499999992744,-0.06860415438950866 +23928,119.63999999992744,-0.06860415382352607 +23929,119.64499999992744,-0.068604153257968 +23930,119.64999999992743,-0.06860415269283429 +23931,119.65499999992743,-0.06860415212812479 +23932,119.65999999992742,-0.06860415156383935 +23933,119.66499999992742,-0.06860415099997783 +23934,119.66999999992741,-0.06860415043654004 +23935,119.67499999992741,-0.06860414987352584 +23936,119.6799999999274,-0.06860414931093509 +23937,119.6849999999274,-0.06860414874876763 +23938,119.6899999999274,-0.0686041481870233 +23939,119.69499999992739,-0.06860414762570194 +23940,119.69999999992739,-0.06860414706480342 +23941,119.70499999992738,-0.06860414650432756 +23942,119.70999999992738,-0.06860414594427422 +23943,119.71499999992737,-0.06860414538464325 +23944,119.71999999992737,-0.06860414482543448 +23945,119.72499999992736,-0.06860414426664777 +23946,119.72999999992736,-0.06860414370828295 +23947,119.73499999992735,-0.06860414315033989 +23948,119.73999999992735,-0.06860414259281843 +23949,119.74499999992734,-0.0686041420357184 +23950,119.74999999992734,-0.06860414147903966 +23951,119.75499999992734,-0.06860414092278205 +23952,119.75999999992733,-0.06860414036694543 +23953,119.76499999992733,-0.06860413981152963 +23954,119.76999999992732,-0.06860413925653451 +23955,119.77499999992732,-0.06860413870195992 +23956,119.77999999992731,-0.06860413814780567 +23957,119.78499999992731,-0.06860413759407165 +23958,119.7899999999273,-0.06860413704075768 +23959,119.7949999999273,-0.06860413648786363 +23960,119.7999999999273,-0.06860413593538932 +23961,119.80499999992729,-0.06860413538333462 +23962,119.80999999992729,-0.06860413483169937 +23963,119.81499999992728,-0.06860413428048343 +23964,119.81999999992728,-0.06860413372968661 +23965,119.82499999992727,-0.06860413317930879 +23966,119.82999999992727,-0.0686041326293498 +23967,119.83499999992726,-0.06860413207980952 +23968,119.83999999992726,-0.06860413153068776 +23969,119.84499999992725,-0.06860413098198437 +23970,119.84999999992725,-0.06860413043369921 +23971,119.85499999992724,-0.06860412988583214 +23972,119.85999999992724,-0.06860412933838299 +23973,119.86499999992724,-0.0686041287913516 +23974,119.86999999992723,-0.06860412824473784 +23975,119.87499999992723,-0.06860412769854153 +23976,119.87999999992722,-0.06860412715276254 +23977,119.88499999992722,-0.06860412660740071 +23978,119.88999999992721,-0.0686041260624559 +23979,119.89499999992721,-0.06860412551792794 +23980,119.8999999999272,-0.06860412497381668 +23981,119.9049999999272,-0.06860412443012198 +23982,119.9099999999272,-0.06860412388684368 +23983,119.91499999992719,-0.06860412334398162 +23984,119.91999999992719,-0.06860412280153569 +23985,119.92499999992718,-0.06860412225950567 +23986,119.92999999992718,-0.06860412171789146 +23987,119.93499999992717,-0.06860412117669289 +23988,119.93999999992717,-0.06860412063590982 +23989,119.94499999992716,-0.06860412009554208 +23990,119.94999999992716,-0.06860411955558952 +23991,119.95499999992715,-0.068604119016052 +23992,119.95999999992715,-0.06860411847692936 +23993,119.96499999992714,-0.06860411793822146 +23994,119.96999999992714,-0.06860411739992814 +23995,119.97499999992714,-0.06860411686204926 +23996,119.97999999992713,-0.06860411632458466 +23997,119.98499999992713,-0.06860411578753417 +23998,119.98999999992712,-0.06860411525089767 +23999,119.99499999992712,-0.068604114714675 +24000,119.99999999992711,-0.068604114178866 +24001,120.00499999992711,-0.06860411364347052 +24002,120.0099999999271,-0.06860411310848842 +24003,120.0149999999271,-0.06860411257391953 +24004,120.0199999999271,-0.06860411203976373 +24005,120.02499999992709,-0.06860411150602085 +24006,120.02999999992709,-0.06860411097269072 +24007,120.03499999992708,-0.06860411043977323 +24008,120.03999999992708,-0.0686041099072682 +24009,120.04499999992707,-0.06860410937517548 +24010,120.04999999992707,-0.06860410884349494 +24011,120.05499999992706,-0.06860410831222642 +24012,120.05999999992706,-0.06860410778136974 +24013,120.06499999992705,-0.0686041072509248 +24014,120.06999999992705,-0.06860410672089143 +24015,120.07499999992704,-0.06860410619126946 +24016,120.07999999992704,-0.06860410566205875 +24017,120.08499999992704,-0.06860410513325917 +24018,120.08999999992703,-0.06860410460487054 +24019,120.09499999992703,-0.06860410407689274 +24020,120.09999999992702,-0.0686041035493256 +24021,120.10499999992702,-0.06860410302216897 +24022,120.10999999992701,-0.0686041024954227 +24023,120.11499999992701,-0.06860410196908666 +24024,120.119999999927,-0.06860410144316068 +24025,120.124999999927,-0.0686041009176446 +24026,120.129999999927,-0.0686041003925383 +24027,120.13499999992699,-0.06860409986784162 +24028,120.13999999992699,-0.06860409934355438 +24029,120.14499999992698,-0.06860409881967648 +24030,120.14999999992698,-0.06860409829620774 +24031,120.15499999992697,-0.06860409777314802 +24032,120.15999999992697,-0.06860409725049717 +24033,120.16499999992696,-0.06860409672825502 +24034,120.16999999992696,-0.06860409620642145 +24035,120.17499999992695,-0.0686040956849963 +24036,120.17999999992695,-0.0686040951639794 +24037,120.18499999992694,-0.06860409464337064 +24038,120.18999999992694,-0.06860409412316985 +24039,120.19499999992694,-0.0686040936033769 +24040,120.19999999992693,-0.0686040930839916 +24041,120.20499999992693,-0.06860409256501383 +24042,120.20999999992692,-0.06860409204644344 +24043,120.21499999992692,-0.06860409152828027 +24044,120.21999999992691,-0.06860409101052417 +24045,120.22499999992691,-0.06860409049317501 +24046,120.2299999999269,-0.06860408997623263 +24047,120.2349999999269,-0.06860408945969688 +24048,120.2399999999269,-0.0686040889435676 +24049,120.24499999992689,-0.06860408842784467 +24050,120.24999999992689,-0.06860408791252792 +24051,120.25499999992688,-0.06860408739761721 +24052,120.25999999992688,-0.06860408688311237 +24053,120.26499999992687,-0.06860408636901329 +24054,120.26999999992687,-0.0686040858553198 +24055,120.27499999992686,-0.06860408534203175 +24056,120.27999999992686,-0.06860408482914898 +24057,120.28499999992685,-0.06860408431667137 +24058,120.28999999992685,-0.06860408380459875 +24059,120.29499999992684,-0.06860408329293098 +24060,120.29999999992684,-0.06860408278166791 +24061,120.30499999992684,-0.0686040822708094 +24062,120.30999999992683,-0.06860408176035529 +24063,120.31499999992683,-0.06860408125030543 +24064,120.31999999992682,-0.06860408074065968 +24065,120.32499999992682,-0.0686040802314179 +24066,120.32999999992681,-0.06860407972257992 +24067,120.33499999992681,-0.06860407921414563 +24068,120.3399999999268,-0.06860407870611485 +24069,120.3449999999268,-0.06860407819848743 +24070,120.3499999999268,-0.06860407769126324 +24071,120.35499999992679,-0.06860407718444211 +24072,120.35999999992679,-0.06860407667802393 +24073,120.36499999992678,-0.06860407617200852 +24074,120.36999999992678,-0.06860407566639574 +24075,120.37499999992677,-0.06860407516118545 +24076,120.37999999992677,-0.0686040746563775 +24077,120.38499999992676,-0.06860407415197173 +24078,120.38999999992676,-0.06860407364796801 +24079,120.39499999992675,-0.06860407314436619 +24080,120.39999999992675,-0.0686040726411661 +24081,120.40499999992674,-0.06860407213836762 +24082,120.40999999992674,-0.06860407163597061 +24083,120.41499999992674,-0.0686040711339749 +24084,120.41999999992673,-0.06860407063238035 +24085,120.42499999992673,-0.0686040701311868 +24086,120.42999999992672,-0.06860406963039413 +24087,120.43499999992672,-0.06860406913000218 +24088,120.43999999992671,-0.06860406863001078 +24089,120.44499999992671,-0.06860406813041983 +24090,120.4499999999267,-0.06860406763122916 +24091,120.4549999999267,-0.06860406713243862 +24092,120.4599999999267,-0.06860406663404806 +24093,120.46499999992669,-0.06860406613605732 +24094,120.46999999992669,-0.0686040656384663 +24095,120.47499999992668,-0.06860406514127482 +24096,120.47999999992668,-0.06860406464448274 +24097,120.48499999992667,-0.06860406414808991 +24098,120.48999999992667,-0.06860406365209619 +24099,120.49499999992666,-0.06860406315650143 +24100,120.49999999992666,-0.06860406266130548 +24101,120.50499999992665,-0.0686040621665082 +24102,120.50999999992665,-0.06860406167210946 +24103,120.51499999992664,-0.06860406117810908 +24104,120.51999999992664,-0.06860406068450693 +24105,120.52499999992664,-0.06860406019130288 +24106,120.52999999992663,-0.06860405969849676 +24107,120.53499999992663,-0.06860405920608842 +24108,120.53999999992662,-0.06860405871407774 +24109,120.54499999992662,-0.06860405822246456 +24110,120.54999999992661,-0.06860405773124874 +24111,120.55499999992661,-0.06860405724043012 +24112,120.5599999999266,-0.06860405675000855 +24113,120.5649999999266,-0.06860405625998392 +24114,120.5699999999266,-0.06860405577035605 +24115,120.57499999992659,-0.06860405528112481 +24116,120.57999999992659,-0.06860405479229006 +24117,120.58499999992658,-0.06860405430385164 +24118,120.58999999992658,-0.0686040538158094 +24119,120.59499999992657,-0.06860405332816322 +24120,120.59999999992657,-0.06860405284091294 +24121,120.60499999992656,-0.06860405235405839 +24122,120.60999999992656,-0.06860405186759948 +24123,120.61499999992655,-0.06860405138153602 +24124,120.61999999992655,-0.0686040508958679 +24125,120.62499999992654,-0.06860405041059492 +24126,120.62999999992654,-0.06860404992571699 +24127,120.63499999992653,-0.06860404944123394 +24128,120.63999999992653,-0.06860404895714564 +24129,120.64499999992653,-0.06860404847345193 +24130,120.64999999992652,-0.06860404799015267 +24131,120.65499999992652,-0.0686040475072477 +24132,120.65999999992651,-0.06860404702473691 +24133,120.66499999992651,-0.06860404654262012 +24134,120.6699999999265,-0.0686040460608972 +24135,120.6749999999265,-0.06860404557956802 +24136,120.6799999999265,-0.06860404509863241 +24137,120.68499999992649,-0.06860404461809025 +24138,120.68999999992648,-0.06860404413794137 +24139,120.69499999992648,-0.06860404365818565 +24140,120.69999999992648,-0.06860404317882292 +24141,120.70499999992647,-0.06860404269985305 +24142,120.70999999992647,-0.0686040422212759 +24143,120.71499999992646,-0.06860404174309133 +24144,120.71999999992646,-0.06860404126529919 +24145,120.72499999992645,-0.06860404078789932 +24146,120.72999999992645,-0.0686040403108916 +24147,120.73499999992644,-0.06860403983427585 +24148,120.73999999992644,-0.06860403935805198 +24149,120.74499999992643,-0.0686040388822198 +24150,120.74999999992643,-0.06860403840677919 +24151,120.75499999992643,-0.06860403793172999 +24152,120.75999999992642,-0.06860403745707207 +24153,120.76499999992642,-0.06860403698280529 +24154,120.76999999992641,-0.06860403650892949 +24155,120.77499999992641,-0.06860403603544454 +24156,120.7799999999264,-0.06860403556235029 +24157,120.7849999999264,-0.0686040350896466 +24158,120.7899999999264,-0.06860403461733332 +24159,120.79499999992639,-0.0686040341454103 +24160,120.79999999992638,-0.06860403367387741 +24161,120.80499999992638,-0.06860403320273452 +24162,120.80999999992638,-0.06860403273198144 +24163,120.81499999992637,-0.06860403226161808 +24164,120.81999999992637,-0.06860403179164427 +24165,120.82499999992636,-0.06860403132205987 +24166,120.82999999992636,-0.06860403085286473 +24167,120.83499999992635,-0.06860403038405874 +24168,120.83999999992635,-0.0686040299156417 +24169,120.84499999992634,-0.06860402944761351 +24170,120.84999999992634,-0.06860402897997402 +24171,120.85499999992633,-0.06860402851272308 +24172,120.85999999992633,-0.06860402804586055 +24173,120.86499999992633,-0.06860402757938629 +24174,120.86999999992632,-0.06860402711330013 +24175,120.87499999992632,-0.06860402664760197 +24176,120.87999999992631,-0.06860402618229165 +24177,120.88499999992631,-0.06860402571736901 +24178,120.8899999999263,-0.06860402525283393 +24179,120.8949999999263,-0.06860402478868628 +24180,120.8999999999263,-0.06860402432492588 +24181,120.90499999992629,-0.06860402386155261 +24182,120.90999999992628,-0.06860402339856632 +24183,120.91499999992628,-0.06860402293596687 +24184,120.91999999992628,-0.06860402247375412 +24185,120.92499999992627,-0.06860402201192793 +24186,120.92999999992627,-0.06860402155048814 +24187,120.93499999992626,-0.06860402108943464 +24188,120.93999999992626,-0.06860402062876726 +24189,120.94499999992625,-0.06860402016848588 +24190,120.94999999992625,-0.06860401970859033 +24191,120.95499999992624,-0.0686040192490805 +24192,120.95999999992624,-0.06860401878995621 +24193,120.96499999992623,-0.06860401833121736 +24194,120.96999999992623,-0.06860401787286378 +24195,120.97499999992623,-0.06860401741489534 +24196,120.97999999992622,-0.06860401695731189 +24197,120.98499999992622,-0.06860401650011329 +24198,120.98999999992621,-0.0686040160432994 +24199,120.99499999992621,-0.06860401558687008 +24200,120.9999999999262,-0.06860401513082519 +24201,121.0049999999262,-0.0686040146751646 +24202,121.0099999999262,-0.06860401421988813 +24203,121.01499999992619,-0.06860401376499567 +24204,121.01999999992618,-0.06860401331048707 +24205,121.02499999992618,-0.06860401285636221 +24206,121.02999999992618,-0.06860401240262091 +24207,121.03499999992617,-0.06860401194926305 +24208,121.03999999992617,-0.06860401149628849 +24209,121.04499999992616,-0.06860401104369708 +24210,121.04999999992616,-0.0686040105914887 +24211,121.05499999992615,-0.06860401013966319 +24212,121.05999999992615,-0.0686040096882204 +24213,121.06499999992614,-0.06860400923716022 +24214,121.06999999992614,-0.06860400878648247 +24215,121.07499999992613,-0.06860400833618703 +24216,121.07999999992613,-0.06860400788627379 +24217,121.08499999992613,-0.06860400743674255 +24218,121.08999999992612,-0.06860400698759321 +24219,121.09499999992612,-0.06860400653882562 +24220,121.09999999992611,-0.06860400609043962 +24221,121.10499999992611,-0.0686040056424351 +24222,121.1099999999261,-0.0686040051948119 +24223,121.1149999999261,-0.06860400474756988 +24224,121.1199999999261,-0.0686040043007089 +24225,121.12499999992609,-0.06860400385422882 +24226,121.12999999992608,-0.06860400340812951 +24227,121.13499999992608,-0.06860400296241083 +24228,121.13999999992608,-0.06860400251707263 +24229,121.14499999992607,-0.06860400207211477 +24230,121.14999999992607,-0.0686040016275371 +24231,121.15499999992606,-0.06860400118333951 +24232,121.15999999992606,-0.06860400073952182 +24233,121.16499999992605,-0.06860400029608392 +24234,121.16999999992605,-0.06860399985302568 +24235,121.17499999992604,-0.06860399941034692 +24236,121.17999999992604,-0.06860399896804752 +24237,121.18499999992603,-0.06860399852612736 +24238,121.18999999992603,-0.06860399808458627 +24239,121.19499999992603,-0.06860399764342412 +24240,121.19999999992602,-0.06860399720264078 +24241,121.20499999992602,-0.06860399676223611 +24242,121.20999999992601,-0.06860399632220995 +24243,121.21499999992601,-0.06860399588256218 +24244,121.219999999926,-0.06860399544329265 +24245,121.224999999926,-0.06860399500440122 +24246,121.229999999926,-0.06860399456588774 +24247,121.23499999992599,-0.0686039941277521 +24248,121.23999999992598,-0.06860399368999416 +24249,121.24499999992598,-0.06860399325261375 +24250,121.24999999992598,-0.06860399281561075 +24251,121.25499999992597,-0.06860399237898503 +24252,121.25999999992597,-0.06860399194273643 +24253,121.26499999992596,-0.06860399150686482 +24254,121.26999999992596,-0.06860399107137005 +24255,121.27499999992595,-0.068603990636252 +24256,121.27999999992595,-0.06860399020151052 +24257,121.28499999992594,-0.06860398976714546 +24258,121.28999999992594,-0.06860398933315671 +24259,121.29499999992593,-0.06860398889954412 +24260,121.29999999992593,-0.06860398846630754 +24261,121.30499999992593,-0.06860398803344685 +24262,121.30999999992592,-0.06860398760096187 +24263,121.31499999992592,-0.06860398716885252 +24264,121.31999999992591,-0.06860398673711862 +24265,121.32499999992591,-0.06860398630576005 +24266,121.3299999999259,-0.06860398587477666 +24267,121.3349999999259,-0.06860398544416832 +24268,121.3399999999259,-0.06860398501393487 +24269,121.34499999992589,-0.0686039845840762 +24270,121.34999999992588,-0.06860398415459217 +24271,121.35499999992588,-0.06860398372548263 +24272,121.35999999992588,-0.06860398329674743 +24273,121.36499999992587,-0.06860398286838645 +24274,121.36999999992587,-0.06860398244039956 +24275,121.37499999992586,-0.0686039820127866 +24276,121.37999999992586,-0.06860398158554745 +24277,121.38499999992585,-0.06860398115868195 +24278,121.38999999992585,-0.06860398073218998 +24279,121.39499999992584,-0.06860398030607141 +24280,121.39999999992584,-0.06860397988032609 +24281,121.40499999992583,-0.06860397945495386 +24282,121.40999999992583,-0.06860397902995462 +24283,121.41499999992583,-0.06860397860532821 +24284,121.41999999992582,-0.0686039781810745 +24285,121.42499999992582,-0.06860397775719333 +24286,121.42999999992581,-0.0686039773336846 +24287,121.43499999992581,-0.06860397691054816 +24288,121.4399999999258,-0.06860397648778385 +24289,121.4449999999258,-0.06860397606539156 +24290,121.4499999999258,-0.06860397564337115 +24291,121.45499999992579,-0.06860397522172247 +24292,121.45999999992578,-0.06860397480044537 +24293,121.46499999992578,-0.06860397437953974 +24294,121.46999999992578,-0.06860397395900544 +24295,121.47499999992577,-0.06860397353884233 +24296,121.47999999992577,-0.06860397311905025 +24297,121.48499999992576,-0.0686039726996291 +24298,121.48999999992576,-0.06860397228057871 +24299,121.49499999992575,-0.06860397186189897 +24300,121.49999999992575,-0.06860397144358972 +24301,121.50499999992574,-0.06860397102565083 +24302,121.50999999992574,-0.06860397060808217 +24303,121.51499999992573,-0.06860397019088359 +24304,121.51999999992573,-0.06860396977405496 +24305,121.52499999992573,-0.06860396935759616 +24306,121.52999999992572,-0.06860396894150704 +24307,121.53499999992572,-0.06860396852578746 +24308,121.53999999992571,-0.06860396811043727 +24309,121.54499999992571,-0.06860396769545635 +24310,121.5499999999257,-0.06860396728084457 +24311,121.5549999999257,-0.06860396686660178 +24312,121.5599999999257,-0.06860396645272784 +24313,121.56499999992569,-0.06860396603922264 +24314,121.56999999992568,-0.06860396562608602 +24315,121.57499999992568,-0.06860396521331785 +24316,121.57999999992568,-0.06860396480091799 +24317,121.58499999992567,-0.06860396438888632 +24318,121.58999999992567,-0.06860396397722267 +24319,121.59499999992566,-0.06860396356592692 +24320,121.59999999992566,-0.06860396315499895 +24321,121.60499999992565,-0.06860396274443861 +24322,121.60999999992565,-0.06860396233424576 +24323,121.61499999992564,-0.06860396192442028 +24324,121.61999999992564,-0.06860396151496201 +24325,121.62499999992563,-0.06860396110587084 +24326,121.62999999992563,-0.06860396069714662 +24327,121.63499999992563,-0.0686039602887892 +24328,121.63999999992562,-0.06860395988079848 +24329,121.64499999992562,-0.0686039594731743 +24330,121.64999999992561,-0.06860395906591653 +24331,121.65499999992561,-0.06860395865902502 +24332,121.6599999999256,-0.06860395825249965 +24333,121.6649999999256,-0.0686039578463403 +24334,121.6699999999256,-0.0686039574405468 +24335,121.67499999992559,-0.06860395703511903 +24336,121.67999999992558,-0.06860395663005686 +24337,121.68499999992558,-0.06860395622536014 +24338,121.68999999992558,-0.06860395582102875 +24339,121.69499999992557,-0.06860395541706255 +24340,121.69999999992557,-0.0686039550134614 +24341,121.70499999992556,-0.06860395461022517 +24342,121.70999999992556,-0.06860395420735373 +24343,121.71499999992555,-0.06860395380484692 +24344,121.71999999992555,-0.06860395340270463 +24345,121.72499999992554,-0.06860395300092673 +24346,121.72999999992554,-0.06860395259951306 +24347,121.73499999992553,-0.0686039521984635 +24348,121.73999999992553,-0.06860395179777792 +24349,121.74499999992553,-0.06860395139745618 +24350,121.74999999992552,-0.06860395099749814 +24351,121.75499999992552,-0.06860395059790367 +24352,121.75999999992551,-0.06860395019867262 +24353,121.76499999992551,-0.06860394979980489 +24354,121.7699999999255,-0.0686039494013003 +24355,121.7749999999255,-0.06860394900315875 +24356,121.7799999999255,-0.0686039486053801 +24357,121.78499999992549,-0.06860394820796421 +24358,121.78999999992548,-0.06860394781091093 +24359,121.79499999992548,-0.06860394741422016 +24360,121.79999999992548,-0.06860394701789174 +24361,121.80499999992547,-0.06860394662192555 +24362,121.80999999992547,-0.06860394622632145 +24363,121.81499999992546,-0.06860394583107929 +24364,121.81999999992546,-0.06860394543619895 +24365,121.82499999992545,-0.06860394504168031 +24366,121.82999999992545,-0.0686039446475232 +24367,121.83499999992544,-0.06860394425372753 +24368,121.83999999992544,-0.06860394386029312 +24369,121.84499999992543,-0.06860394346721986 +24370,121.84999999992543,-0.06860394307450762 +24371,121.85499999992543,-0.06860394268215628 +24372,121.85999999992542,-0.06860394229016567 +24373,121.86499999992542,-0.06860394189853566 +24374,121.86999999992541,-0.06860394150726616 +24375,121.87499999992541,-0.068603941116357 +24376,121.8799999999254,-0.06860394072580803 +24377,121.8849999999254,-0.06860394033561916 +24378,121.8899999999254,-0.06860393994579023 +24379,121.89499999992539,-0.06860393955632112 +24380,121.89999999992538,-0.06860393916721166 +24381,121.90499999992538,-0.06860393877846177 +24382,121.90999999992538,-0.06860393839007128 +24383,121.91499999992537,-0.06860393800204007 +24384,121.91999999992537,-0.068603937614368 +24385,121.92499999992536,-0.06860393722705496 +24386,121.92999999992536,-0.06860393684010077 +24387,121.93499999992535,-0.06860393645350535 +24388,121.93999999992535,-0.06860393606726853 +24389,121.94499999992534,-0.06860393568139017 +24390,121.94999999992534,-0.06860393529587018 +24391,121.95499999992533,-0.06860393491070839 +24392,121.95999999992533,-0.06860393452590467 +24393,121.96499999992533,-0.0686039341414589 +24394,121.96999999992532,-0.06860393375737095 +24395,121.97499999992532,-0.0686039333736407 +24396,121.97999999992531,-0.06860393299026797 +24397,121.98499999992531,-0.06860393260725264 +24398,121.9899999999253,-0.06860393222459461 +24399,121.9949999999253,-0.06860393184229373 +24400,121.9999999999253,-0.06860393146034988 +24401,122.00499999992529,-0.06860393107876288 +24402,122.00999999992528,-0.06860393069753265 +24403,122.01499999992528,-0.06860393031665904 +24404,122.01999999992528,-0.06860392993614191 +24405,122.02499999992527,-0.06860392955598114 +24406,122.02999999992527,-0.06860392917617658 +24407,122.03499999992526,-0.06860392879672811 +24408,122.03999999992526,-0.0686039284176356 +24409,122.04499999992525,-0.06860392803889892 +24410,122.04999999992525,-0.06860392766051793 +24411,122.05499999992524,-0.0686039272824925 +24412,122.05999999992524,-0.06860392690482249 +24413,122.06499999992523,-0.06860392652750777 +24414,122.06999999992523,-0.06860392615054822 +24415,122.07499999992523,-0.0686039257739437 +24416,122.07999999992522,-0.06860392539769408 +24417,122.08499999992522,-0.06860392502179923 +24418,122.08999999992521,-0.068603924646259 +24419,122.09499999992521,-0.0686039242710733 +24420,122.0999999999252,-0.06860392389624195 +24421,122.1049999999252,-0.06860392352176484 +24422,122.1099999999252,-0.06860392314764185 +24423,122.11499999992519,-0.06860392277387282 +24424,122.11999999992518,-0.06860392240045765 +24425,122.12499999992518,-0.06860392202739618 +24426,122.12999999992518,-0.0686039216546883 +24427,122.13499999992517,-0.06860392128233388 +24428,122.13999999992517,-0.06860392091033277 +24429,122.14499999992516,-0.06860392053868483 +24430,122.14999999992516,-0.06860392016738996 +24431,122.15499999992515,-0.06860391979644802 +24432,122.15999999992515,-0.06860391942585886 +24433,122.16499999992514,-0.06860391905562237 +24434,122.16999999992514,-0.06860391868573841 +24435,122.17499999992513,-0.06860391831620685 +24436,122.17999999992513,-0.06860391794702755 +24437,122.18499999992513,-0.06860391757820039 +24438,122.18999999992512,-0.06860391720972524 +24439,122.19499999992512,-0.06860391684160196 +24440,122.19999999992511,-0.06860391647383042 +24441,122.2049999999251,-0.0686039161064105 +24442,122.2099999999251,-0.06860391573934208 +24443,122.2149999999251,-0.06860391537262499 +24444,122.2199999999251,-0.06860391500625912 +24445,122.22499999992509,-0.06860391464024435 +24446,122.22999999992508,-0.06860391427458051 +24447,122.23499999992508,-0.06860391390926754 +24448,122.23999999992508,-0.06860391354430524 +24449,122.24499999992507,-0.06860391317969353 +24450,122.24999999992507,-0.06860391281543224 +24451,122.25499999992506,-0.06860391245152125 +24452,122.25999999992506,-0.06860391208796045 +24453,122.26499999992505,-0.0686039117247497 +24454,122.26999999992505,-0.06860391136188886 +24455,122.27499999992504,-0.06860391099937779 +24456,122.27999999992504,-0.0686039106372164 +24457,122.28499999992503,-0.06860391027540451 +24458,122.28999999992503,-0.06860390991394201 +24459,122.29499999992503,-0.06860390955282879 +24460,122.29999999992502,-0.06860390919206469 +24461,122.30499999992502,-0.0686039088316496 +24462,122.30999999992501,-0.0686039084715834 +24463,122.314999999925,-0.06860390811186592 +24464,122.319999999925,-0.06860390775249707 +24465,122.324999999925,-0.06860390739347669 +24466,122.329999999925,-0.06860390703480466 +24467,122.33499999992499,-0.06860390667648086 +24468,122.33999999992498,-0.06860390631850516 +24469,122.34499999992498,-0.06860390596087741 +24470,122.34999999992498,-0.06860390560359751 +24471,122.35499999992497,-0.0686039052466653 +24472,122.35999999992497,-0.06860390489008068 +24473,122.36499999992496,-0.0686039045338435 +24474,122.36999999992496,-0.06860390417795365 +24475,122.37499999992495,-0.06860390382241095 +24476,122.37999999992495,-0.06860390346721534 +24477,122.38499999992494,-0.06860390311236665 +24478,122.38999999992494,-0.06860390275786477 +24479,122.39499999992493,-0.06860390240370955 +24480,122.39999999992493,-0.06860390204990086 +24481,122.40499999992493,-0.06860390169643858 +24482,122.40999999992492,-0.06860390134332259 +24483,122.41499999992492,-0.06860390099055276 +24484,122.41999999992491,-0.06860390063812895 +24485,122.4249999999249,-0.06860390028605103 +24486,122.4299999999249,-0.06860389993431888 +24487,122.4349999999249,-0.06860389958293237 +24488,122.4399999999249,-0.06860389923189135 +24489,122.44499999992489,-0.06860389888119572 +24490,122.44999999992488,-0.06860389853084532 +24491,122.45499999992488,-0.06860389818084006 +24492,122.45999999992488,-0.06860389783117979 +24493,122.46499999992487,-0.06860389748186439 +24494,122.46999999992487,-0.06860389713289372 +24495,122.47499999992486,-0.06860389678426765 +24496,122.47999999992486,-0.06860389643598606 +24497,122.48499999992485,-0.06860389608804882 +24498,122.48999999992485,-0.0686038957404558 +24499,122.49499999992484,-0.06860389539320687 +24500,122.49999999992484,-0.0686038950463019 +24501,122.50499999992483,-0.06860389469974076 +24502,122.50999999992483,-0.06860389435352335 +24503,122.51499999992483,-0.0686038940076495 +24504,122.51999999992482,-0.06860389366211911 +24505,122.52499999992482,-0.06860389331693204 +24506,122.52999999992481,-0.06860389297208815 +24507,122.5349999999248,-0.06860389262758733 +24508,122.5399999999248,-0.06860389228342945 +24509,122.5449999999248,-0.06860389193961439 +24510,122.5499999999248,-0.068603891596142 +24511,122.55499999992479,-0.06860389125301217 +24512,122.55999999992478,-0.06860389091022477 +24513,122.56499999992478,-0.06860389056777966 +24514,122.56999999992478,-0.06860389022567673 +24515,122.57499999992477,-0.06860388988391583 +24516,122.57999999992477,-0.06860388954249684 +24517,122.58499999992476,-0.06860388920141965 +24518,122.58999999992476,-0.06860388886068411 +24519,122.59499999992475,-0.0686038885202901 +24520,122.59999999992475,-0.0686038881802375 +24521,122.60499999992474,-0.06860388784052615 +24522,122.60999999992474,-0.06860388750115597 +24523,122.61499999992473,-0.06860388716212681 +24524,122.61999999992473,-0.06860388682343854 +24525,122.62499999992473,-0.06860388648509104 +24526,122.62999999992472,-0.06860388614708417 +24527,122.63499999992472,-0.06860388580941781 +24528,122.63999999992471,-0.06860388547209184 +24529,122.6449999999247,-0.06860388513510614 +24530,122.6499999999247,-0.06860388479846055 +24531,122.6549999999247,-0.06860388446215498 +24532,122.6599999999247,-0.06860388412618927 +24533,122.66499999992469,-0.06860388379056331 +24534,122.66999999992468,-0.06860388345527699 +24535,122.67499999992468,-0.06860388312033014 +24536,122.67999999992468,-0.06860388278572266 +24537,122.68499999992467,-0.06860388245145442 +24538,122.68999999992467,-0.0686038821175253 +24539,122.69499999992466,-0.06860388178393517 +24540,122.69999999992466,-0.06860388145068388 +24541,122.70499999992465,-0.06860388111777135 +24542,122.70999999992465,-0.06860388078519741 +24543,122.71499999992464,-0.06860388045296197 +24544,122.71999999992464,-0.06860388012106486 +24545,122.72499999992463,-0.06860387978950598 +24546,122.72999999992463,-0.06860387945828521 +24547,122.73499999992463,-0.06860387912740241 +24548,122.73999999992462,-0.06860387879685746 +24549,122.74499999992462,-0.06860387846665023 +24550,122.74999999992461,-0.0686038781367806 +24551,122.7549999999246,-0.06860387780724843 +24552,122.7599999999246,-0.06860387747805359 +24553,122.7649999999246,-0.06860387714919598 +24554,122.7699999999246,-0.06860387682067545 +24555,122.77499999992459,-0.06860387649249189 +24556,122.77999999992458,-0.06860387616464517 +24557,122.78499999992458,-0.06860387583713516 +24558,122.78999999992458,-0.06860387550996173 +24559,122.79499999992457,-0.06860387518312477 +24560,122.79999999992457,-0.06860387485662413 +24561,122.80499999992456,-0.06860387453045971 +24562,122.80999999992456,-0.06860387420463136 +24563,122.81499999992455,-0.06860387387913898 +24564,122.81999999992455,-0.06860387355398241 +24565,122.82499999992454,-0.06860387322916155 +24566,122.82999999992454,-0.06860387290467626 +24567,122.83499999992453,-0.06860387258052644 +24568,122.83999999992453,-0.06860387225671194 +24569,122.84499999992453,-0.06860387193323264 +24570,122.84999999992452,-0.06860387161008842 +24571,122.85499999992452,-0.06860387128727916 +24572,122.85999999992451,-0.0686038709648047 +24573,122.8649999999245,-0.06860387064266496 +24574,122.8699999999245,-0.06860387032085978 +24575,122.8749999999245,-0.06860386999938907 +24576,122.8799999999245,-0.06860386967825266 +24577,122.88499999992449,-0.06860386935745047 +24578,122.88999999992448,-0.06860386903698233 +24579,122.89499999992448,-0.06860386871684816 +24580,122.89999999992447,-0.0686038683970478 +24581,122.90499999992447,-0.06860386807758112 +24582,122.90999999992447,-0.06860386775844804 +24583,122.91499999992446,-0.0686038674396484 +24584,122.91999999992446,-0.06860386712118208 +24585,122.92499999992445,-0.06860386680304896 +24586,122.92999999992445,-0.0686038664852489 +24587,122.93499999992444,-0.0686038661677818 +24588,122.93999999992444,-0.06860386585064752 +24589,122.94499999992443,-0.06860386553384595 +24590,122.94999999992443,-0.06860386521737694 +24591,122.95499999992442,-0.06860386490124037 +24592,122.95999999992442,-0.06860386458543614 +24593,122.96499999992442,-0.06860386426996411 +24594,122.96999999992441,-0.06860386395482415 +24595,122.9749999999244,-0.06860386364001614 +24596,122.9799999999244,-0.06860386332553996 +24597,122.9849999999244,-0.06860386301139548 +24598,122.9899999999244,-0.06860386269758258 +24599,122.99499999992439,-0.06860386238410113 +24600,122.99999999992438,-0.068603862070951 +24601,123.00499999992438,-0.06860386175813207 +24602,123.00999999992437,-0.06860386144564423 +24603,123.01499999992437,-0.06860386113348735 +24604,123.01999999992437,-0.06860386082166128 +24605,123.02499999992436,-0.06860386051016594 +24606,123.02999999992436,-0.06860386019900118 +24607,123.03499999992435,-0.06860385988816686 +24608,123.03999999992435,-0.0686038595776629 +24609,123.04499999992434,-0.06860385926748915 +24610,123.04999999992434,-0.06860385895764547 +24611,123.05499999992433,-0.06860385864813176 +24612,123.05999999992433,-0.0686038583389479 +24613,123.06499999992432,-0.06860385803009375 +24614,123.06999999992432,-0.06860385772156918 +24615,123.07499999992432,-0.0686038574133741 +24616,123.07999999992431,-0.06860385710550836 +24617,123.0849999999243,-0.06860385679797183 +24618,123.0899999999243,-0.0686038564907644 +24619,123.0949999999243,-0.06860385618388595 +24620,123.0999999999243,-0.06860385587733635 +24621,123.10499999992429,-0.06860385557111548 +24622,123.10999999992428,-0.06860385526522321 +24623,123.11499999992428,-0.06860385495965941 +24624,123.11999999992427,-0.06860385465442398 +24625,123.12499999992427,-0.06860385434951678 +24626,123.12999999992427,-0.0686038540449377 +24627,123.13499999992426,-0.06860385374068659 +24628,123.13999999992426,-0.06860385343676334 +24629,123.14499999992425,-0.06860385313316784 +24630,123.14999999992425,-0.06860385282989996 +24631,123.15499999992424,-0.06860385252695957 +24632,123.15999999992424,-0.06860385222434655 +24633,123.16499999992423,-0.06860385192206078 +24634,123.16999999992423,-0.06860385162010213 +24635,123.17499999992422,-0.0686038513184705 +24636,123.17999999992422,-0.06860385101716572 +24637,123.18499999992422,-0.06860385071618773 +24638,123.18999999992421,-0.06860385041553636 +24639,123.1949999999242,-0.0686038501152115 +24640,123.1999999999242,-0.06860384981521303 +24641,123.2049999999242,-0.06860384951554081 +24642,123.2099999999242,-0.06860384921619476 +24643,123.21499999992419,-0.06860384891717472 +24644,123.21999999992418,-0.06860384861848057 +24645,123.22499999992418,-0.06860384832011221 +24646,123.22999999992417,-0.06860384802206948 +24647,123.23499999992417,-0.06860384772435231 +24648,123.23999999992417,-0.06860384742696053 +24649,123.24499999992416,-0.06860384712989404 +24650,123.24999999992416,-0.06860384683315272 +24651,123.25499999992415,-0.06860384653673643 +24652,123.25999999992415,-0.06860384624064506 +24653,123.26499999992414,-0.06860384594487849 +24654,123.26999999992414,-0.0686038456494366 +24655,123.27499999992413,-0.06860384535431925 +24656,123.27999999992413,-0.06860384505952634 +24657,123.28499999992412,-0.06860384476505774 +24658,123.28999999992412,-0.06860384447091332 +24659,123.29499999992412,-0.06860384417709296 +24660,123.29999999992411,-0.06860384388359655 +24661,123.3049999999241,-0.06860384359042397 +24662,123.3099999999241,-0.06860384329757507 +24663,123.3149999999241,-0.06860384300504975 +24664,123.3199999999241,-0.06860384271284789 +24665,123.32499999992409,-0.06860384242096937 +24666,123.32999999992408,-0.06860384212941406 +24667,123.33499999992408,-0.06860384183818184 +24668,123.33999999992407,-0.06860384154727259 +24669,123.34499999992407,-0.06860384125668618 +24670,123.34999999992407,-0.0686038409664225 +24671,123.35499999992406,-0.06860384067648143 +24672,123.35999999992406,-0.06860384038686283 +24673,123.36499999992405,-0.06860384009756659 +24674,123.36999999992405,-0.0686038398085926 +24675,123.37499999992404,-0.06860383951994072 +24676,123.37999999992404,-0.06860383923161086 +24677,123.38499999992403,-0.06860383894360285 +24678,123.38999999992403,-0.0686038386559166 +24679,123.39499999992402,-0.068603838368552 +24680,123.39999999992402,-0.0686038380815089 +24681,123.40499999992402,-0.0686038377947872 +24682,123.40999999992401,-0.06860383750838676 +24683,123.414999999924,-0.06860383722230748 +24684,123.419999999924,-0.06860383693654921 +24685,123.424999999924,-0.06860383665111186 +24686,123.429999999924,-0.06860383636599529 +24687,123.43499999992399,-0.0686038360811994 +24688,123.43999999992398,-0.06860383579672405 +24689,123.44499999992398,-0.0686038355125691 +24690,123.44999999992397,-0.06860383522873448 +24691,123.45499999992397,-0.06860383494522004 +24692,123.45999999992397,-0.06860383466202566 +24693,123.46499999992396,-0.06860383437915123 +24694,123.46999999992396,-0.06860383409659661 +24695,123.47499999992395,-0.06860383381436168 +24696,123.47999999992395,-0.06860383353244634 +24697,123.48499999992394,-0.06860383325085047 +24698,123.48999999992394,-0.06860383296957392 +24699,123.49499999992393,-0.06860383268861661 +24700,123.49999999992393,-0.06860383240797839 +24701,123.50499999992392,-0.06860383212765915 +24702,123.50999999992392,-0.06860383184765875 +24703,123.51499999992392,-0.06860383156797711 +24704,123.51999999992391,-0.06860383128861408 +24705,123.5249999999239,-0.06860383100956954 +24706,123.5299999999239,-0.06860383073084339 +24707,123.5349999999239,-0.0686038304524355 +24708,123.5399999999239,-0.06860383017434574 +24709,123.54499999992389,-0.06860382989657399 +24710,123.54999999992388,-0.06860382961912014 +24711,123.55499999992388,-0.06860382934198407 +24712,123.55999999992387,-0.06860382906516566 +24713,123.56499999992387,-0.06860382878866478 +24714,123.56999999992387,-0.06860382851248131 +24715,123.57499999992386,-0.06860382823661516 +24716,123.57999999992386,-0.06860382796106618 +24717,123.58499999992385,-0.06860382768583424 +24718,123.58999999992385,-0.06860382741091926 +24719,123.59499999992384,-0.0686038271363211 +24720,123.59999999992384,-0.06860382686203964 +24721,123.60499999992383,-0.06860382658807475 +24722,123.60999999992383,-0.06860382631442632 +24723,123.61499999992382,-0.06860382604109423 +24724,123.61999999992382,-0.06860382576807839 +24725,123.62499999992382,-0.06860382549537862 +24726,123.62999999992381,-0.06860382522299484 +24727,123.6349999999238,-0.06860382495092694 +24728,123.6399999999238,-0.06860382467917477 +24729,123.6449999999238,-0.06860382440773821 +24730,123.64999999992379,-0.06860382413661718 +24731,123.65499999992379,-0.06860382386581154 +24732,123.65999999992378,-0.06860382359532116 +24733,123.66499999992378,-0.06860382332514593 +24734,123.66999999992377,-0.06860382305528573 +24735,123.67499999992377,-0.06860382278574044 +24736,123.67999999992377,-0.06860382251650994 +24737,123.68499999992376,-0.0686038222475941 +24738,123.68999999992376,-0.06860382197899284 +24739,123.69499999992375,-0.06860382171070602 +24740,123.69999999992375,-0.06860382144273351 +24741,123.70499999992374,-0.06860382117507519 +24742,123.70999999992374,-0.06860382090773096 +24743,123.71499999992373,-0.06860382064070068 +24744,123.71999999992373,-0.06860382037398424 +24745,123.72499999992372,-0.06860382010758152 +24746,123.72999999992372,-0.06860381984149243 +24747,123.73499999992372,-0.0686038195757168 +24748,123.73999999992371,-0.06860381931025455 +24749,123.7449999999237,-0.06860381904510555 +24750,123.7499999999237,-0.06860381878026968 +24751,123.7549999999237,-0.06860381851574683 +24752,123.75999999992369,-0.06860381825153687 +24753,123.76499999992369,-0.06860381798763968 +24754,123.76999999992368,-0.06860381772405515 +24755,123.77499999992368,-0.06860381746078316 +24756,123.77999999992367,-0.06860381719782359 +24757,123.78499999992367,-0.06860381693517632 +24758,123.78999999992367,-0.06860381667284125 +24759,123.79499999992366,-0.06860381641081824 +24760,123.79999999992366,-0.06860381614910718 +24761,123.80499999992365,-0.06860381588770793 +24762,123.80999999992365,-0.06860381562662042 +24763,123.81499999992364,-0.06860381536584449 +24764,123.81999999992364,-0.06860381510538005 +24765,123.82499999992363,-0.06860381484522697 +24766,123.82999999992363,-0.06860381458538513 +24767,123.83499999992362,-0.0686038143258544 +24768,123.83999999992362,-0.0686038140666347 +24769,123.84499999992362,-0.06860381380772587 +24770,123.84999999992361,-0.06860381354912783 +24771,123.8549999999236,-0.06860381329084042 +24772,123.8599999999236,-0.06860381303286357 +24773,123.8649999999236,-0.06860381277519713 +24774,123.86999999992359,-0.06860381251784099 +24775,123.87499999992359,-0.06860381226079504 +24776,123.87999999992358,-0.06860381200405916 +24777,123.88499999992358,-0.06860381174763322 +24778,123.88999999992357,-0.0686038114915171 +24779,123.89499999992357,-0.06860381123571072 +24780,123.89999999992357,-0.06860381098021393 +24781,123.90499999992356,-0.06860381072502661 +24782,123.90999999992356,-0.06860381047014866 +24783,123.91499999992355,-0.06860381021557996 +24784,123.91999999992355,-0.06860380996132039 +24785,123.92499999992354,-0.06860380970736982 +24786,123.92999999992354,-0.06860380945372815 +24787,123.93499999992353,-0.06860380920039526 +24788,123.93999999992353,-0.06860380894737103 +24789,123.94499999992352,-0.06860380869465535 +24790,123.94999999992352,-0.06860380844224809 +24791,123.95499999992352,-0.06860380819014913 +24792,123.95999999992351,-0.0686038079383584 +24793,123.9649999999235,-0.06860380768687571 +24794,123.9699999999235,-0.06860380743570099 +24795,123.9749999999235,-0.06860380718483411 +24796,123.97999999992349,-0.06860380693427495 +24797,123.98499999992349,-0.06860380668402342 +24798,123.98999999992348,-0.06860380643407939 +24799,123.99499999992348,-0.06860380618444271 +24800,123.99999999992347,-0.06860380593511331 +24801,124.00499999992347,-0.06860380568609105 +24802,124.00999999992347,-0.0686038054373758 +24803,124.01499999992346,-0.06860380518896748 +24804,124.01999999992346,-0.06860380494086596 +24805,124.02499999992345,-0.06860380469307112 +24806,124.02999999992345,-0.06860380444558282 +24807,124.03499999992344,-0.06860380419840098 +24808,124.03999999992344,-0.06860380395152547 +24809,124.04499999992343,-0.06860380370495618 +24810,124.04999999992343,-0.06860380345869298 +24811,124.05499999992342,-0.06860380321273576 +24812,124.05999999992342,-0.06860380296708442 +24813,124.06499999992342,-0.06860380272173881 +24814,124.06999999992341,-0.06860380247669887 +24815,124.0749999999234,-0.06860380223196441 +24816,124.0799999999234,-0.06860380198753536 +24817,124.0849999999234,-0.06860380174341162 +24818,124.08999999992339,-0.06860380149959303 +24819,124.09499999992339,-0.0686038012560795 +24820,124.09999999992338,-0.0686038010128709 +24821,124.10499999992338,-0.06860380076996714 +24822,124.10999999992337,-0.06860380052736809 +24823,124.11499999992337,-0.06860380028507362 +24824,124.11999999992337,-0.06860380004308363 +24825,124.12499999992336,-0.068603799801398 +24826,124.12999999992336,-0.06860379956001661 +24827,124.13499999992335,-0.06860379931893935 +24828,124.13999999992335,-0.0686037990781661 +24829,124.14499999992334,-0.06860379883769677 +24830,124.14999999992334,-0.06860379859753121 +24831,124.15499999992333,-0.06860379835766932 +24832,124.15999999992333,-0.06860379811811099 +24833,124.16499999992332,-0.0686037978788561 +24834,124.16999999992332,-0.06860379763990451 +24835,124.17499999992332,-0.06860379740125615 +24836,124.17999999992331,-0.06860379716291089 +24837,124.1849999999233,-0.06860379692486859 +24838,124.1899999999233,-0.06860379668712917 +24839,124.1949999999233,-0.06860379644969249 +24840,124.19999999992329,-0.06860379621255844 +24841,124.20499999992329,-0.0686037959757269 +24842,124.20999999992328,-0.06860379573919777 +24843,124.21499999992328,-0.06860379550297092 +24844,124.21999999992327,-0.06860379526704626 +24845,124.22499999992327,-0.06860379503142365 +24846,124.22999999992327,-0.06860379479610297 +24847,124.23499999992326,-0.06860379456108415 +24848,124.23999999992326,-0.06860379432636703 +24849,124.24499999992325,-0.0686037940919515 +24850,124.24999999992325,-0.06860379385783746 +24851,124.25499999992324,-0.06860379362402479 +24852,124.25999999992324,-0.06860379339051338 +24853,124.26499999992323,-0.0686037931573031 +24854,124.26999999992323,-0.06860379292439386 +24855,124.27499999992322,-0.06860379269178553 +24856,124.27999999992322,-0.06860379245947801 +24857,124.28499999992322,-0.06860379222747116 +24858,124.28999999992321,-0.06860379199576488 +24859,124.2949999999232,-0.06860379176435906 +24860,124.2999999999232,-0.06860379153325359 +24861,124.3049999999232,-0.06860379130244833 +24862,124.30999999992319,-0.0686037910719432 +24863,124.31499999992319,-0.06860379084173807 +24864,124.31999999992318,-0.0686037906118328 +24865,124.32499999992318,-0.06860379038222733 +24866,124.32999999992317,-0.0686037901529215 +24867,124.33499999992317,-0.06860378992391523 +24868,124.33999999992317,-0.06860378969520838 +24869,124.34499999992316,-0.06860378946680083 +24870,124.34999999992316,-0.0686037892386925 +24871,124.35499999992315,-0.06860378901088325 +24872,124.35999999992315,-0.06860378878337298 +24873,124.36499999992314,-0.06860378855616156 +24874,124.36999999992314,-0.06860378832924889 +24875,124.37499999992313,-0.06860378810263486 +24876,124.37999999992313,-0.06860378787631934 +24877,124.38499999992312,-0.06860378765030223 +24878,124.38999999992312,-0.06860378742458341 +24879,124.39499999992312,-0.06860378719916277 +24880,124.39999999992311,-0.0686037869740402 +24881,124.4049999999231,-0.06860378674921558 +24882,124.4099999999231,-0.06860378652468879 +24883,124.4149999999231,-0.06860378630045973 +24884,124.41999999992309,-0.06860378607652828 +24885,124.42499999992309,-0.06860378585289434 +24886,124.42999999992308,-0.06860378562955777 +24887,124.43499999992308,-0.06860378540651847 +24888,124.43999999992307,-0.06860378518377634 +24889,124.44499999992307,-0.06860378496133124 +24890,124.44999999992307,-0.06860378473918309 +24891,124.45499999992306,-0.06860378451733175 +24892,124.45999999992306,-0.06860378429577711 +24893,124.46499999992305,-0.06860378407451909 +24894,124.46999999992305,-0.06860378385355753 +24895,124.47499999992304,-0.06860378363289235 +24896,124.47999999992304,-0.06860378341252342 +24897,124.48499999992303,-0.06860378319245063 +24898,124.48999999992303,-0.06860378297267386 +24899,124.49499999992302,-0.06860378275319301 +24900,124.49999999992302,-0.06860378253400795 +24901,124.50499999992302,-0.0686037823151186 +24902,124.50999999992301,-0.06860378209652482 +24903,124.514999999923,-0.0686037818782265 +24904,124.519999999923,-0.06860378166022355 +24905,124.524999999923,-0.06860378144251583 +24906,124.52999999992299,-0.06860378122510323 +24907,124.53499999992299,-0.06860378100798566 +24908,124.53999999992298,-0.06860378079116299 +24909,124.54499999992298,-0.0686037805746351 +24910,124.54999999992297,-0.06860378035840191 +24911,124.55499999992297,-0.06860378014246327 +24912,124.55999999992297,-0.06860377992681907 +24913,124.56499999992296,-0.06860377971146923 +24914,124.56999999992296,-0.06860377949641361 +24915,124.57499999992295,-0.06860377928165211 +24916,124.57999999992295,-0.06860377906718462 +24917,124.58499999992294,-0.06860377885301103 +24918,124.58999999992294,-0.06860377863913121 +24919,124.59499999992293,-0.06860377842554506 +24920,124.59999999992293,-0.06860377821225247 +24921,124.60499999992292,-0.06860377799925331 +24922,124.60999999992292,-0.0686037777865475 +24923,124.61499999992292,-0.0686037775741349 +24924,124.61999999992291,-0.06860377736201541 +24925,124.6249999999229,-0.06860377715018892 +24926,124.6299999999229,-0.06860377693865531 +24927,124.6349999999229,-0.06860377672741448 +24928,124.63999999992289,-0.06860377651646632 +24929,124.64499999992289,-0.0686037763058107 +24930,124.64999999992288,-0.06860377609544752 +24931,124.65499999992288,-0.06860377588537667 +24932,124.65999999992287,-0.06860377567559803 +24933,124.66499999992287,-0.0686037754661115 +24934,124.66999999992287,-0.06860377525691697 +24935,124.67499999992286,-0.0686037750480143 +24936,124.67999999992286,-0.06860377483940341 +24937,124.68499999992285,-0.06860377463108418 +24938,124.68999999992285,-0.0686037744230565 +24939,124.69499999992284,-0.06860377421532024 +24940,124.69999999992284,-0.06860377400787532 +24941,124.70499999992283,-0.06860377380072159 +24942,124.70999999992283,-0.068603773593859 +24943,124.71499999992282,-0.06860377338728736 +24944,124.71999999992282,-0.06860377318100662 +24945,124.72499999992282,-0.06860377297501664 +24946,124.72999999992281,-0.06860377276931733 +24947,124.7349999999228,-0.06860377256390857 +24948,124.7399999999228,-0.06860377235879024 +24949,124.7449999999228,-0.06860377215396223 +24950,124.74999999992279,-0.06860377194942442 +24951,124.75499999992279,-0.06860377174517675 +24952,124.75999999992278,-0.06860377154121905 +24953,124.76499999992278,-0.06860377133755123 +24954,124.76999999992277,-0.06860377113417318 +24955,124.77499999992277,-0.06860377093108479 +24956,124.77999999992277,-0.06860377072828594 +24957,124.78499999992276,-0.06860377052577654 +24958,124.78999999992276,-0.06860377032355647 +24959,124.79499999992275,-0.0686037701216256 +24960,124.79999999992275,-0.06860376991998385 +24961,124.80499999992274,-0.0686037697186311 +24962,124.80999999992274,-0.06860376951756723 +24963,124.81499999992273,-0.06860376931679214 +24964,124.81999999992273,-0.06860376911630571 +24965,124.82499999992272,-0.06860376891610784 +24966,124.82999999992272,-0.06860376871619842 +24967,124.83499999992272,-0.06860376851657732 +24968,124.83999999992271,-0.06860376831724445 +24969,124.8449999999227,-0.0686037681181997 +24970,124.8499999999227,-0.06860376791944295 +24971,124.8549999999227,-0.0686037677209741 +24972,124.85999999992269,-0.06860376752279301 +24973,124.86499999992269,-0.0686037673248996 +24974,124.86999999992268,-0.06860376712729377 +24975,124.87499999992268,-0.06860376692997538 +24976,124.87999999992267,-0.06860376673294434 +24977,124.88499999992267,-0.06860376653620053 +24978,124.88999999992267,-0.06860376633974383 +24979,124.89499999992266,-0.06860376614357415 +24980,124.89999999992266,-0.06860376594769137 +24981,124.90499999992265,-0.0686037657520954 +24982,124.90999999992265,-0.0686037655567861 +24983,124.91499999992264,-0.06860376536176338 +24984,124.91999999992264,-0.06860376516702713 +24985,124.92499999992263,-0.06860376497257722 +24986,124.92999999992263,-0.06860376477841357 +24987,124.93499999992262,-0.06860376458453604 +24988,124.93999999992262,-0.06860376439094455 +24989,124.94499999992262,-0.06860376419763897 +24990,124.94999999992261,-0.06860376400461919 +24991,124.9549999999226,-0.06860376381188513 +24992,124.9599999999226,-0.06860376361943665 +24993,124.9649999999226,-0.06860376342727365 +24994,124.96999999992259,-0.06860376323539602 +24995,124.97499999992259,-0.06860376304380364 +24996,124.97999999992258,-0.06860376285249642 +24997,124.98499999992258,-0.06860376266147424 +24998,124.98999999992257,-0.06860376247073699 +24999,124.99499999992257,-0.06860376228028456 +25000,124.99999999992257,-0.06860376209011684 +25001,125.00499999992256,-0.06860376190023375 +25002,125.00999999992256,-0.06860376171063515 +25003,125.01499999992255,-0.06860376152132092 +25004,125.01999999992255,-0.06860376133229099 +25005,125.02499999992254,-0.06860376114354522 +25006,125.02999999992254,-0.0686037609550835 +25007,125.03499999992253,-0.06860376076690575 +25008,125.03999999992253,-0.06860376057901184 +25009,125.04499999992252,-0.06860376039140165 +25010,125.04999999992252,-0.0686037602040751 +25011,125.05499999992252,-0.06860376001703206 +25012,125.05999999992251,-0.06860375983027242 +25013,125.0649999999225,-0.0686037596437961 +25014,125.0699999999225,-0.06860375945760297 +25015,125.0749999999225,-0.0686037592716929 +25016,125.07999999992249,-0.06860375908606582 +25017,125.08499999992249,-0.06860375890072161 +25018,125.08999999992248,-0.06860375871566016 +25019,125.09499999992248,-0.06860375853088134 +25020,125.09999999992247,-0.06860375834638506 +25021,125.10499999992247,-0.06860375816217122 +25022,125.10999999992247,-0.0686037579782397 +25023,125.11499999992246,-0.0686037577945904 +25024,125.11999999992246,-0.0686037576112232 +25025,125.12499999992245,-0.06860375742813801 +25026,125.12999999992245,-0.06860375724533471 +25027,125.13499999992244,-0.06860375706281319 +25028,125.13999999992244,-0.06860375688057334 +25029,125.14499999992243,-0.06860375669861506 +25030,125.14999999992243,-0.06860375651693823 +25031,125.15499999992242,-0.06860375633554276 +25032,125.15999999992242,-0.06860375615442853 +25033,125.16499999992241,-0.06860375597359543 +25034,125.16999999992241,-0.06860375579304337 +25035,125.1749999999224,-0.06860375561277222 +25036,125.1799999999224,-0.06860375543278188 +25037,125.1849999999224,-0.06860375525307223 +25038,125.18999999992239,-0.0686037550736432 +25039,125.19499999992239,-0.06860375489449465 +25040,125.19999999992238,-0.06860375471562646 +25041,125.20499999992238,-0.06860375453703857 +25042,125.20999999992237,-0.06860375435873083 +25043,125.21499999992237,-0.06860375418070315 +25044,125.21999999992236,-0.06860375400295542 +25045,125.22499999992236,-0.06860375382548753 +25046,125.22999999992236,-0.06860375364829938 +25047,125.23499999992235,-0.06860375347139085 +25048,125.23999999992235,-0.06860375329476184 +25049,125.24499999992234,-0.06860375311841224 +25050,125.24999999992234,-0.06860375294234196 +25051,125.25499999992233,-0.06860375276655087 +25052,125.25999999992233,-0.06860375259103887 +25053,125.26499999992232,-0.06860375241580584 +25054,125.26999999992232,-0.0686037522408517 +25055,125.27499999992231,-0.06860375206617633 +25056,125.27999999992231,-0.06860375189177961 +25057,125.2849999999223,-0.06860375171766145 +25058,125.2899999999223,-0.06860375154382174 +25059,125.2949999999223,-0.06860375137026037 +25060,125.29999999992229,-0.06860375119697723 +25061,125.30499999992229,-0.06860375102397222 +25062,125.30999999992228,-0.06860375085124525 +25063,125.31499999992228,-0.06860375067879616 +25064,125.31999999992227,-0.06860375050662489 +25065,125.32499999992227,-0.06860375033473132 +25066,125.32999999992226,-0.06860375016311533 +25067,125.33499999992226,-0.06860374999177683 +25068,125.33999999992226,-0.06860374982071572 +25069,125.34499999992225,-0.06860374964993189 +25070,125.34999999992225,-0.0686037494794252 +25071,125.35499999992224,-0.06860374930919559 +25072,125.35999999992224,-0.06860374913924293 +25073,125.36499999992223,-0.06860374896956711 +25074,125.36999999992223,-0.06860374880016804 +25075,125.37499999992222,-0.0686037486310456 +25076,125.37999999992222,-0.06860374846219967 +25077,125.38499999992221,-0.06860374829363018 +25078,125.38999999992221,-0.068603748125337 +25079,125.3949999999222,-0.06860374795732001 +25080,125.3999999999222,-0.06860374778957913 +25081,125.4049999999222,-0.06860374762211426 +25082,125.40999999992219,-0.06860374745492527 +25083,125.41499999992219,-0.06860374728801207 +25084,125.41999999992218,-0.06860374712137453 +25085,125.42499999992218,-0.06860374695501258 +25086,125.42999999992217,-0.06860374678892607 +25087,125.43499999992217,-0.06860374662311493 +25088,125.43999999992216,-0.06860374645757905 +25089,125.44499999992216,-0.0686037462923183 +25090,125.44999999992216,-0.06860374612733261 +25091,125.45499999992215,-0.06860374596262185 +25092,125.45999999992215,-0.06860374579818591 +25093,125.46499999992214,-0.0686037456340247 +25094,125.46999999992214,-0.0686037454701381 +25095,125.47499999992213,-0.06860374530652602 +25096,125.47999999992213,-0.06860374514318834 +25097,125.48499999992212,-0.06860374498012498 +25098,125.48999999992212,-0.06860374481733579 +25099,125.49499999992211,-0.0686037446548207 +25100,125.49999999992211,-0.0686037444925796 +25101,125.5049999999221,-0.06860374433061237 +25102,125.5099999999221,-0.0686037441689189 +25103,125.5149999999221,-0.0686037440074991 +25104,125.51999999992209,-0.06860374384635287 +25105,125.52499999992209,-0.0686037436854801 +25106,125.52999999992208,-0.06860374352488068 +25107,125.53499999992208,-0.06860374336455449 +25108,125.53999999992207,-0.06860374320450144 +25109,125.54499999992207,-0.06860374304472144 +25110,125.54999999992206,-0.06860374288521436 +25111,125.55499999992206,-0.0686037427259801 +25112,125.55999999992206,-0.06860374256701855 +25113,125.56499999992205,-0.06860374240832964 +25114,125.56999999992205,-0.06860374224991322 +25115,125.57499999992204,-0.06860374209176923 +25116,125.57999999992204,-0.06860374193389751 +25117,125.58499999992203,-0.068603741776298 +25118,125.58999999992203,-0.06860374161897057 +25119,125.59499999992202,-0.06860374146191513 +25120,125.59999999992202,-0.06860374130513155 +25121,125.60499999992201,-0.06860374114861977 +25122,125.60999999992201,-0.06860374099237965 +25123,125.614999999922,-0.06860374083641108 +25124,125.619999999922,-0.06860374068071398 +25125,125.624999999922,-0.06860374052528824 +25126,125.62999999992199,-0.06860374037013375 +25127,125.63499999992199,-0.0686037402152504 +25128,125.63999999992198,-0.06860374006063809 +25129,125.64499999992198,-0.06860373990629673 +25130,125.64999999992197,-0.0686037397522262 +25131,125.65499999992197,-0.06860373959842637 +25132,125.65999999992196,-0.06860373944489719 +25133,125.66499999992196,-0.06860373929163852 +25134,125.66999999992196,-0.06860373913865025 +25135,125.67499999992195,-0.0686037389859323 +25136,125.67999999992195,-0.06860373883348457 +25137,125.68499999992194,-0.06860373868130692 +25138,125.68999999992194,-0.06860373852939929 +25139,125.69499999992193,-0.06860373837776153 +25140,125.69999999992193,-0.06860373822639357 +25141,125.70499999992192,-0.06860373807529528 +25142,125.70999999992192,-0.06860373792446658 +25143,125.71499999992191,-0.06860373777390735 +25144,125.71999999992191,-0.0686037376236175 +25145,125.7249999999219,-0.06860373747359692 +25146,125.7299999999219,-0.06860373732384549 +25147,125.7349999999219,-0.06860373717436313 +25148,125.73999999992189,-0.06860373702514973 +25149,125.74499999992189,-0.06860373687620518 +25150,125.74999999992188,-0.06860373672752937 +25151,125.75499999992188,-0.06860373657912221 +25152,125.75999999992187,-0.06860373643098358 +25153,125.76499999992187,-0.06860373628311339 +25154,125.76999999992186,-0.06860373613551154 +25155,125.77499999992186,-0.06860373598817791 +25156,125.77999999992186,-0.06860373584111241 +25157,125.78499999992185,-0.06860373569431494 +25158,125.78999999992185,-0.06860373554778537 +25159,125.79499999992184,-0.06860373540152363 +25160,125.79999999992184,-0.0686037352555296 +25161,125.80499999992183,-0.06860373510980317 +25162,125.80999999992183,-0.06860373496434424 +25163,125.81499999992182,-0.06860373481915272 +25164,125.81999999992182,-0.06860373467422849 +25165,125.82499999992181,-0.06860373452957147 +25166,125.82999999992181,-0.06860373438518153 +25167,125.8349999999218,-0.06860373424105858 +25168,125.8399999999218,-0.06860373409720251 +25169,125.8449999999218,-0.06860373395361322 +25170,125.84999999992179,-0.06860373381029061 +25171,125.85499999992179,-0.06860373366723459 +25172,125.85999999992178,-0.06860373352444502 +25173,125.86499999992178,-0.06860373338192183 +25174,125.86999999992177,-0.06860373323966491 +25175,125.87499999992177,-0.06860373309767413 +25176,125.87999999992176,-0.06860373295594943 +25177,125.88499999992176,-0.06860373281449067 +25178,125.88999999992176,-0.06860373267329777 +25179,125.89499999992175,-0.06860373253237063 +25180,125.89999999992175,-0.06860373239170914 +25181,125.90499999992174,-0.06860373225131318 +25182,125.90999999992174,-0.06860373211118266 +25183,125.91499999992173,-0.06860373197131749 +25184,125.91999999992173,-0.06860373183171756 +25185,125.92499999992172,-0.06860373169238275 +25186,125.92999999992172,-0.06860373155331298 +25187,125.93499999992171,-0.06860373141450815 +25188,125.93999999992171,-0.06860373127596812 +25189,125.9449999999217,-0.06860373113769283 +25190,125.9499999999217,-0.06860373099968216 +25191,125.9549999999217,-0.068603730861936 +25192,125.95999999992169,-0.06860373072445426 +25193,125.96499999992169,-0.06860373058723684 +25194,125.96999999992168,-0.06860373045028363 +25195,125.97499999992168,-0.06860373031359454 +25196,125.97999999992167,-0.06860373017716943 +25197,125.98499999992167,-0.06860373004100825 +25198,125.98999999992166,-0.06860372990511086 +25199,125.99499999992166,-0.06860372976947718 +25200,125.99999999992166,-0.0686037296341071 +25201,126.00499999992165,-0.06860372949900051 +25202,126.00999999992165,-0.0686037293641573 +25203,126.01499999992164,-0.0686037292295774 +25204,126.01999999992164,-0.06860372909526068 +25205,126.02499999992163,-0.06860372896120705 +25206,126.02999999992163,-0.06860372882741639 +25207,126.03499999992162,-0.06860372869388863 +25208,126.03999999992162,-0.06860372856062365 +25209,126.04499999992161,-0.06860372842762134 +25210,126.04999999992161,-0.06860372829488162 +25211,126.0549999999216,-0.06860372816240438 +25212,126.0599999999216,-0.0686037280301895 +25213,126.0649999999216,-0.0686037278982369 +25214,126.06999999992159,-0.06860372776654647 +25215,126.07499999992159,-0.0686037276351181 +25216,126.07999999992158,-0.06860372750395172 +25217,126.08499999992158,-0.0686037273730472 +25218,126.08999999992157,-0.06860372724240443 +25219,126.09499999992157,-0.06860372711202334 +25220,126.09999999992156,-0.06860372698190381 +25221,126.10499999992156,-0.06860372685204573 +25222,126.10999999992156,-0.06860372672244901 +25223,126.11499999992155,-0.06860372659311355 +25224,126.11999999992155,-0.06860372646403924 +25225,126.12499999992154,-0.06860372633522599 +25226,126.12999999992154,-0.06860372620667368 +25227,126.13499999992153,-0.06860372607838224 +25228,126.13999999992153,-0.06860372595035155 +25229,126.14499999992152,-0.0686037258225815 +25230,126.14999999992152,-0.068603725695072 +25231,126.15499999992151,-0.06860372556782295 +25232,126.15999999992151,-0.06860372544083423 +25233,126.1649999999215,-0.06860372531410577 +25234,126.1699999999215,-0.06860372518763745 +25235,126.1749999999215,-0.06860372506142917 +25236,126.17999999992149,-0.06860372493548084 +25237,126.18499999992149,-0.06860372480979235 +25238,126.18999999992148,-0.0686037246843636 +25239,126.19499999992148,-0.06860372455919449 +25240,126.19999999992147,-0.06860372443428492 +25241,126.20499999992147,-0.06860372430963477 +25242,126.20999999992146,-0.06860372418524398 +25243,126.21499999992146,-0.06860372406111241 +25244,126.21999999992146,-0.06860372393724 +25245,126.22499999992145,-0.0686037238136266 +25246,126.22999999992145,-0.06860372369027214 +25247,126.23499999992144,-0.0686037235671765 +25248,126.23999999992144,-0.06860372344433961 +25249,126.24499999992143,-0.06860372332176135 +25250,126.24999999992143,-0.06860372319944162 +25251,126.25499999992142,-0.06860372307738033 +25252,126.25999999992142,-0.06860372295557736 +25253,126.26499999992141,-0.06860372283403261 +25254,126.26999999992141,-0.06860372271274601 +25255,126.2749999999214,-0.06860372259171743 +25256,126.2799999999214,-0.06860372247094677 +25257,126.2849999999214,-0.06860372235043395 +25258,126.28999999992139,-0.06860372223017887 +25259,126.29499999992139,-0.0686037221101814 +25260,126.29999999992138,-0.06860372199044146 +25261,126.30499999992138,-0.06860372187095895 +25262,126.30999999992137,-0.06860372175173378 +25263,126.31499999992137,-0.06860372163276583 +25264,126.31999999992136,-0.06860372151405501 +25265,126.32499999992136,-0.06860372139560121 +25266,126.32999999992136,-0.06860372127740434 +25267,126.33499999992135,-0.06860372115946431 +25268,126.33999999992135,-0.068603721041781 +25269,126.34499999992134,-0.06860372092435432 +25270,126.34999999992134,-0.06860372080718416 +25271,126.35499999992133,-0.06860372069027043 +25272,126.35999999992133,-0.06860372057361305 +25273,126.36499999992132,-0.06860372045721189 +25274,126.36999999992132,-0.06860372034106685 +25275,126.37499999992131,-0.06860372022517784 +25276,126.37999999992131,-0.06860372010954476 +25277,126.3849999999213,-0.0686037199941675 +25278,126.3899999999213,-0.06860371987904598 +25279,126.3949999999213,-0.0686037197641801 +25280,126.39999999992129,-0.06860371964956974 +25281,126.40499999992129,-0.06860371953521482 +25282,126.40999999992128,-0.06860371942111523 +25283,126.41499999992128,-0.06860371930727088 +25284,126.41999999992127,-0.06860371919368166 +25285,126.42499999992127,-0.06860371908034747 +25286,126.42999999992126,-0.06860371896726822 +25287,126.43499999992126,-0.06860371885444382 +25288,126.43999999992126,-0.06860371874187414 +25289,126.44499999992125,-0.06860371862955908 +25290,126.44999999992125,-0.06860371851749858 +25291,126.45499999992124,-0.06860371840569252 +25292,126.45999999992124,-0.06860371829414079 +25293,126.46499999992123,-0.0686037181828433 +25294,126.46999999992123,-0.06860371807179996 +25295,126.47499999992122,-0.06860371796101065 +25296,126.47999999992122,-0.06860371785047531 +25297,126.48499999992121,-0.0686037177401938 +25298,126.48999999992121,-0.06860371763016604 +25299,126.4949999999212,-0.06860371752039192 +25300,126.4999999999212,-0.06860371741087135 +25301,126.5049999999212,-0.06860371730160422 +25302,126.50999999992119,-0.06860371719259045 +25303,126.51499999992119,-0.06860371708382994 +25304,126.51999999992118,-0.06860371697532257 +25305,126.52499999992118,-0.06860371686706826 +25306,126.52999999992117,-0.0686037167590669 +25307,126.53499999992117,-0.0686037166513184 +25308,126.53999999992116,-0.06860371654382266 +25309,126.54499999992116,-0.06860371643657957 +25310,126.54999999992116,-0.06860371632958905 +25311,126.55499999992115,-0.068603716222851 +25312,126.55999999992115,-0.0686037161163653 +25313,126.56499999992114,-0.06860371601013188 +25314,126.56999999992114,-0.06860371590415063 +25315,126.57499999992113,-0.06860371579842144 +25316,126.57999999992113,-0.06860371569294421 +25317,126.58499999992112,-0.06860371558771886 +25318,126.58999999992112,-0.06860371548274527 +25319,126.59499999992111,-0.06860371537802339 +25320,126.59999999992111,-0.06860371527355306 +25321,126.6049999999211,-0.06860371516933422 +25322,126.6099999999211,-0.06860371506536676 +25323,126.6149999999211,-0.06860371496165059 +25324,126.61999999992109,-0.06860371485818559 +25325,126.62499999992109,-0.06860371475497168 +25326,126.62999999992108,-0.06860371465200876 +25327,126.63499999992108,-0.06860371454929674 +25328,126.63999999992107,-0.06860371444683551 +25329,126.64499999992107,-0.06860371434462498 +25330,126.64999999992106,-0.06860371424266504 +25331,126.65499999992106,-0.06860371414095559 +25332,126.65999999992106,-0.06860371403949655 +25333,126.66499999992105,-0.06860371393828782 +25334,126.66999999992105,-0.06860371383732929 +25335,126.67499999992104,-0.06860371373662086 +25336,126.67999999992104,-0.06860371363616244 +25337,126.68499999992103,-0.06860371353595394 +25338,126.68999999992103,-0.06860371343599526 +25339,126.69499999992102,-0.06860371333628629 +25340,126.69999999992102,-0.06860371323682693 +25341,126.70499999992101,-0.06860371313761711 +25342,126.70999999992101,-0.06860371303865671 +25343,126.714999999921,-0.06860371293994562 +25344,126.719999999921,-0.06860371284148378 +25345,126.724999999921,-0.06860371274327108 +25346,126.72999999992099,-0.0686037126453074 +25347,126.73499999992099,-0.06860371254759265 +25348,126.73999999992098,-0.06860371245012675 +25349,126.74499999992098,-0.0686037123529096 +25350,126.74999999992097,-0.06860371225594107 +25351,126.75499999992097,-0.06860371215922112 +25352,126.75999999992096,-0.06860371206274961 +25353,126.76499999992096,-0.06860371196652645 +25354,126.76999999992096,-0.06860371187055155 +25355,126.77499999992095,-0.0686037117748248 +25356,126.77999999992095,-0.06860371167934612 +25357,126.78499999992094,-0.0686037115841154 +25358,126.78999999992094,-0.06860371148913257 +25359,126.79499999992093,-0.0686037113943975 +25360,126.79999999992093,-0.0686037112999101 +25361,126.80499999992092,-0.06860371120567027 +25362,126.80999999992092,-0.06860371111167793 +25363,126.81499999992091,-0.06860371101793297 +25364,126.81999999992091,-0.0686037109244353 +25365,126.8249999999209,-0.06860371083118483 +25366,126.8299999999209,-0.06860371073818144 +25367,126.8349999999209,-0.06860371064542507 +25368,126.83999999992089,-0.06860371055291559 +25369,126.84499999992089,-0.0686037104606529 +25370,126.84999999992088,-0.06860371036863692 +25371,126.85499999992088,-0.06860371027686755 +25372,126.85999999992087,-0.06860371018534471 +25373,126.86499999992087,-0.06860371009406828 +25374,126.86999999992086,-0.06860371000303817 +25375,126.87499999992086,-0.06860370991225427 +25376,126.87999999992086,-0.06860370982171653 +25377,126.88499999992085,-0.06860370973142481 +25378,126.88999999992085,-0.06860370964137902 +25379,126.89499999992084,-0.06860370955157906 +25380,126.89999999992084,-0.06860370946202485 +25381,126.90499999992083,-0.0686037093727163 +25382,126.90999999992083,-0.0686037092836533 +25383,126.91499999992082,-0.06860370919483573 +25384,126.91999999992082,-0.06860370910626352 +25385,126.92499999992081,-0.06860370901793658 +25386,126.92999999992081,-0.0686037089298548 +25387,126.9349999999208,-0.06860370884201811 +25388,126.9399999999208,-0.06860370875442638 +25389,126.9449999999208,-0.06860370866707953 +25390,126.94999999992079,-0.06860370857997747 +25391,126.95499999992079,-0.06860370849312009 +25392,126.95999999992078,-0.06860370840650729 +25393,126.96499999992078,-0.06860370832013898 +25394,126.96999999992077,-0.06860370823401507 +25395,126.97499999992077,-0.06860370814813548 +25396,126.97999999992076,-0.06860370806250007 +25397,126.98499999992076,-0.0686037079771088 +25398,126.98999999992076,-0.06860370789196152 +25399,126.99499999992075,-0.06860370780705817 +25400,126.99999999992075,-0.06860370772239864 +25401,127.00499999992074,-0.06860370763798283 +25402,127.00999999992074,-0.06860370755381066 +25403,127.01499999992073,-0.06860370746988204 +25404,127.01999999992073,-0.06860370738619685 +25405,127.02499999992072,-0.068603707302755 +25406,127.02999999992072,-0.0686037072195564 +25407,127.03499999992071,-0.06860370713660097 +25408,127.03999999992071,-0.06860370705388859 +25409,127.0449999999207,-0.06860370697141917 +25410,127.0499999999207,-0.06860370688919262 +25411,127.0549999999207,-0.06860370680720886 +25412,127.05999999992069,-0.06860370672546776 +25413,127.06499999992069,-0.06860370664396925 +25414,127.06999999992068,-0.06860370656271321 +25415,127.07499999992068,-0.06860370648169958 +25416,127.07999999992067,-0.06860370640092824 +25417,127.08499999992067,-0.0686037063203991 +25418,127.08999999992066,-0.06860370624011206 +25419,127.09499999992066,-0.06860370616006704 +25420,127.09999999992066,-0.06860370608026395 +25421,127.10499999992065,-0.06860370600070267 +25422,127.10999999992065,-0.06860370592138312 +25423,127.11499999992064,-0.0686037058423052 +25424,127.11999999992064,-0.06860370576346882 +25425,127.12499999992063,-0.06860370568487387 +25426,127.12999999992063,-0.06860370560652027 +25427,127.13499999992062,-0.06860370552840792 +25428,127.13999999992062,-0.06860370545053672 +25429,127.14499999992061,-0.06860370537290661 +25430,127.14999999992061,-0.06860370529551744 +25431,127.1549999999206,-0.06860370521836916 +25432,127.1599999999206,-0.06860370514146165 +25433,127.1649999999206,-0.06860370506479482 +25434,127.16999999992059,-0.0686037049883686 +25435,127.17499999992059,-0.06860370491218284 +25436,127.17999999992058,-0.06860370483623751 +25437,127.18499999992058,-0.06860370476053249 +25438,127.18999999992057,-0.06860370468506766 +25439,127.19499999992057,-0.06860370460984296 +25440,127.19999999992056,-0.06860370453485827 +25441,127.20499999992056,-0.06860370446011352 +25442,127.20999999992056,-0.0686037043856086 +25443,127.21499999992055,-0.06860370431134342 +25444,127.21999999992055,-0.06860370423731789 +25445,127.22499999992054,-0.0686037041635319 +25446,127.22999999992054,-0.06860370408998537 +25447,127.23499999992053,-0.06860370401667822 +25448,127.23999999992053,-0.06860370394361032 +25449,127.24499999992052,-0.06860370387078159 +25450,127.24999999992052,-0.06860370379819195 +25451,127.25499999992051,-0.06860370372584129 +25452,127.25999999992051,-0.06860370365372952 +25453,127.2649999999205,-0.06860370358185654 +25454,127.2699999999205,-0.06860370351022227 +25455,127.2749999999205,-0.06860370343882662 +25456,127.27999999992049,-0.06860370336766947 +25457,127.28499999992049,-0.06860370329675075 +25458,127.28999999992048,-0.06860370322607037 +25459,127.29499999992048,-0.0686037031556282 +25460,127.29999999992047,-0.06860370308542418 +25461,127.30499999992047,-0.06860370301545822 +25462,127.30999999992046,-0.0686037029457302 +25463,127.31499999992046,-0.06860370287624006 +25464,127.31999999992046,-0.06860370280698766 +25465,127.32499999992045,-0.06860370273797294 +25466,127.32999999992045,-0.0686037026691958 +25467,127.33499999992044,-0.06860370260065614 +25468,127.33999999992044,-0.06860370253235387 +25469,127.34499999992043,-0.0686037024642889 +25470,127.34999999992043,-0.06860370239646113 +25471,127.35499999992042,-0.06860370232887049 +25472,127.35999999992042,-0.06860370226151684 +25473,127.36499999992041,-0.06860370219440012 +25474,127.36999999992041,-0.06860370212752025 +25475,127.3749999999204,-0.06860370206087711 +25476,127.3799999999204,-0.06860370199447062 +25477,127.3849999999204,-0.06860370192830066 +25478,127.38999999992039,-0.06860370186236718 +25479,127.39499999992039,-0.06860370179667004 +25480,127.39999999992038,-0.06860370173120918 +25481,127.40499999992038,-0.0686037016659845 +25482,127.40999999992037,-0.06860370160099591 +25483,127.41499999992037,-0.0686037015362433 +25484,127.41999999992036,-0.06860370147172659 +25485,127.42499999992036,-0.0686037014074457 +25486,127.42999999992035,-0.06860370134340052 +25487,127.43499999992035,-0.06860370127959095 +25488,127.43999999992035,-0.0686037012160169 +25489,127.44499999992034,-0.0686037011526783 +25490,127.44999999992034,-0.06860370108957503 +25491,127.45499999992033,-0.068603701026707 +25492,127.45999999992033,-0.06860370096407414 +25493,127.46499999992032,-0.06860370090167633 +25494,127.46999999992032,-0.0686037008395135 +25495,127.47499999992031,-0.06860370077758556 +25496,127.47999999992031,-0.06860370071589239 +25497,127.4849999999203,-0.06860370065443391 +25498,127.4899999999203,-0.06860370059321003 +25499,127.4949999999203,-0.06860370053222065 +25500,127.49999999992029,-0.06860370047146569 +25501,127.50499999992029,-0.06860370041094506 +25502,127.50999999992028,-0.06860370035065864 +25503,127.51499999992028,-0.06860370029060638 +25504,127.51999999992027,-0.06860370023078814 +25505,127.52499999992027,-0.06860370017120386 +25506,127.52999999992026,-0.06860370011185345 +25507,127.53499999992026,-0.06860370005273679 +25508,127.53999999992025,-0.06860369999385381 +25509,127.54499999992025,-0.06860369993520442 +25510,127.54999999992025,-0.06860369987678851 +25511,127.55499999992024,-0.068603699818606 +25512,127.55999999992024,-0.06860369976065679 +25513,127.56499999992023,-0.0686036997029408 +25514,127.56999999992023,-0.06860369964545794 +25515,127.57499999992022,-0.06860369958820808 +25516,127.57999999992022,-0.06860369953119118 +25517,127.58499999992021,-0.06860369947440713 +25518,127.58999999992021,-0.06860369941785582 +25519,127.5949999999202,-0.06860369936153718 +25520,127.5999999999202,-0.0686036993054511 +25521,127.6049999999202,-0.0686036992495975 +25522,127.60999999992019,-0.06860369919397628 +25523,127.61499999992019,-0.06860369913858735 +25524,127.61999999992018,-0.06860369908343064 +25525,127.62499999992018,-0.06860369902850603 +25526,127.62999999992017,-0.06860369897381344 +25527,127.63499999992017,-0.06860369891935277 +25528,127.63999999992016,-0.06860369886512394 +25529,127.64499999992016,-0.06860369881112684 +25530,127.64999999992015,-0.06860369875736139 +25531,127.65499999992015,-0.0686036987038275 +25532,127.65999999992015,-0.0686036986505251 +25533,127.66499999992014,-0.06860369859745406 +25534,127.66999999992014,-0.0686036985446143 +25535,127.67499999992013,-0.06860369849200575 +25536,127.67999999992013,-0.0686036984396283 +25537,127.68499999992012,-0.06860369838748184 +25538,127.68999999992012,-0.0686036983355663 +25539,127.69499999992011,-0.0686036982838816 +25540,127.69999999992011,-0.06860369823242764 +25541,127.7049999999201,-0.0686036981812043 +25542,127.7099999999201,-0.06860369813021154 +25543,127.7149999999201,-0.06860369807944923 +25544,127.71999999992009,-0.06860369802891729 +25545,127.72499999992009,-0.06860369797861564 +25546,127.72999999992008,-0.06860369792854418 +25547,127.73499999992008,-0.06860369787870281 +25548,127.73999999992007,-0.06860369782909144 +25549,127.74499999992007,-0.06860369777971 +25550,127.74999999992006,-0.06860369773055837 +25551,127.75499999992006,-0.06860369768163647 +25552,127.75999999992005,-0.06860369763294422 +25553,127.76499999992005,-0.06860369758448152 +25554,127.76999999992005,-0.06860369753624829 +25555,127.77499999992004,-0.06860369748824442 +25556,127.77999999992004,-0.06860369744046983 +25557,127.78499999992003,-0.06860369739292443 +25558,127.78999999992003,-0.06860369734560813 +25559,127.79499999992002,-0.06860369729852082 +25560,127.79999999992002,-0.06860369725166245 +25561,127.80499999992001,-0.06860369720503287 +25562,127.80999999992001,-0.06860369715863204 +25563,127.81499999992,-0.06860369711245985 +25564,127.81999999992,-0.06860369706651621 +25565,127.82499999992,-0.06860369702080105 +25566,127.82999999991999,-0.06860369697531425 +25567,127.83499999991999,-0.06860369693005573 +25568,127.83999999991998,-0.0686036968850254 +25569,127.84499999991998,-0.06860369684022316 +25570,127.84999999991997,-0.06860369679564894 +25571,127.85499999991997,-0.06860369675130265 +25572,127.85999999991996,-0.06860369670718419 +25573,127.86499999991996,-0.06860369666329345 +25574,127.86999999991995,-0.06860369661963035 +25575,127.87499999991995,-0.06860369657619482 +25576,127.87999999991995,-0.06860369653298676 +25577,127.88499999991994,-0.06860369649000607 +25578,127.88999999991994,-0.06860369644725267 +25579,127.89499999991993,-0.06860369640472648 +25580,127.89999999991993,-0.06860369636242739 +25581,127.90499999991992,-0.06860369632035532 +25582,127.90999999991992,-0.06860369627851015 +25583,127.91499999991991,-0.06860369623689183 +25584,127.91999999991991,-0.06860369619550026 +25585,127.9249999999199,-0.06860369615433536 +25586,127.9299999999199,-0.068603696113397 +25587,127.9349999999199,-0.06860369607268514 +25588,127.93999999991989,-0.06860369603219965 +25589,127.94499999991989,-0.06860369599194045 +25590,127.94999999991988,-0.06860369595190748 +25591,127.95499999991988,-0.06860369591210061 +25592,127.95999999991987,-0.06860369587251977 +25593,127.96499999991987,-0.06860369583316486 +25594,127.96999999991986,-0.0686036957940358 +25595,127.97499999991986,-0.0686036957551325 +25596,127.97999999991985,-0.06860369571645489 +25597,127.98499999991985,-0.06860369567800283 +25598,127.98999999991985,-0.06860369563977627 +25599,127.99499999991984,-0.06860369560177511 +25600,127.99999999991984,-0.06860369556399924 +25601,128.00499999991985,-0.0686036955264486 +25602,128.00999999991984,-0.0686036954891231 +25603,128.01499999991984,-0.06860369545202263 +25604,128.01999999991983,-0.06860369541514713 +25605,128.02499999991983,-0.06860369537849649 +25606,128.02999999991982,-0.06860369534207061 +25607,128.03499999991982,-0.0686036953058694 +25608,128.03999999991981,-0.06860369526989281 +25609,128.0449999999198,-0.06860369523414071 +25610,128.0499999999198,-0.06860369519861304 +25611,128.0549999999198,-0.06860369516330968 +25612,128.0599999999198,-0.06860369512823057 +25613,128.0649999999198,-0.0686036950933756 +25614,128.0699999999198,-0.0686036950587447 +25615,128.07499999991978,-0.06860369502433776 +25616,128.07999999991978,-0.0686036949901547 +25617,128.08499999991977,-0.06860369495619542 +25618,128.08999999991977,-0.06860369492245987 +25619,128.09499999991976,-0.06860369488894791 +25620,128.09999999991976,-0.06860369485565948 +25621,128.10499999991976,-0.0686036948225945 +25622,128.10999999991975,-0.06860369478975285 +25623,128.11499999991975,-0.06860369475713446 +25624,128.11999999991974,-0.06860369472473925 +25625,128.12499999991974,-0.06860369469256711 +25626,128.12999999991973,-0.06860369466061794 +25627,128.13499999991973,-0.06860369462889171 +25628,128.13999999991972,-0.06860369459738827 +25629,128.14499999991972,-0.06860369456610757 +25630,128.14999999991971,-0.0686036945350495 +25631,128.1549999999197,-0.06860369450421398 +25632,128.1599999999197,-0.06860369447360092 +25633,128.1649999999197,-0.06860369444321021 +25634,128.1699999999197,-0.06860369441304182 +25635,128.1749999999197,-0.06860369438309559 +25636,128.1799999999197,-0.06860369435337146 +25637,128.18499999991968,-0.06860369432386937 +25638,128.18999999991968,-0.0686036942945892 +25639,128.19499999991967,-0.06860369426553087 +25640,128.19999999991967,-0.06860369423669428 +25641,128.20499999991966,-0.06860369420807937 +25642,128.20999999991966,-0.06860369417968602 +25643,128.21499999991966,-0.06860369415151417 +25644,128.21999999991965,-0.0686036941235637 +25645,128.22499999991965,-0.06860369409583456 +25646,128.22999999991964,-0.06860369406832663 +25647,128.23499999991964,-0.06860369404103984 +25648,128.23999999991963,-0.06860369401397409 +25649,128.24499999991963,-0.0686036939871293 +25650,128.24999999991962,-0.06860369396050538 +25651,128.25499999991962,-0.06860369393410225 +25652,128.25999999991961,-0.06860369390791979 +25653,128.2649999999196,-0.06860369388195796 +25654,128.2699999999196,-0.06860369385621662 +25655,128.2749999999196,-0.06860369383069571 +25656,128.2799999999196,-0.06860369380539517 +25657,128.2849999999196,-0.06860369378031486 +25658,128.2899999999196,-0.06860369375545472 +25659,128.29499999991958,-0.06860369373081465 +25660,128.29999999991958,-0.06860369370639458 +25661,128.30499999991957,-0.0686036936821944 +25662,128.30999999991957,-0.06860369365821405 +25663,128.31499999991956,-0.06860369363445341 +25664,128.31999999991956,-0.06860369361091241 +25665,128.32499999991956,-0.06860369358759097 +25666,128.32999999991955,-0.06860369356448899 +25667,128.33499999991955,-0.06860369354160639 +25668,128.33999999991954,-0.06860369351894308 +25669,128.34499999991954,-0.06860369349649896 +25670,128.34999999991953,-0.06860369347427397 +25671,128.35499999991953,-0.068603693452268 +25672,128.35999999991952,-0.06860369343048096 +25673,128.36499999991952,-0.06860369340891277 +25674,128.36999999991951,-0.06860369338756335 +25675,128.3749999999195,-0.06860369336643261 +25676,128.3799999999195,-0.06860369334552045 +25677,128.3849999999195,-0.0686036933248268 +25678,128.3899999999195,-0.06860369330435155 +25679,128.3949999999195,-0.06860369328409463 +25680,128.3999999999195,-0.06860369326405595 +25681,128.40499999991948,-0.06860369324423543 +25682,128.40999999991948,-0.06860369322463296 +25683,128.41499999991947,-0.06860369320524848 +25684,128.41999999991947,-0.06860369318608188 +25685,128.42499999991946,-0.0686036931671331 +25686,128.42999999991946,-0.06860369314840203 +25687,128.43499999991946,-0.06860369312988858 +25688,128.43999999991945,-0.06860369311159269 +25689,128.44499999991945,-0.06860369309351426 +25690,128.44999999991944,-0.06860369307565319 +25691,128.45499999991944,-0.06860369305800938 +25692,128.45999999991943,-0.06860369304058278 +25693,128.46499999991943,-0.0686036930233733 +25694,128.46999999991942,-0.06860369300638083 +25695,128.47499999991942,-0.06860369298960531 +25696,128.47999999991941,-0.06860369297304662 +25697,128.4849999999194,-0.0686036929567047 +25698,128.4899999999194,-0.06860369294057946 +25699,128.4949999999194,-0.06860369292467078 +25700,128.4999999999194,-0.06860369290897862 +25701,128.5049999999194,-0.06860369289350286 +25702,128.5099999999194,-0.06860369287824346 +25703,128.51499999991938,-0.06860369286320028 +25704,128.51999999991938,-0.06860369284837325 +25705,128.52499999991937,-0.06860369283376232 +25706,128.52999999991937,-0.06860369281936735 +25707,128.53499999991936,-0.06860369280518826 +25708,128.53999999991936,-0.06860369279122498 +25709,128.54499999991936,-0.06860369277747745 +25710,128.54999999991935,-0.06860369276394554 +25711,128.55499999991935,-0.06860369275062918 +25712,128.55999999991934,-0.06860369273752828 +25713,128.56499999991934,-0.06860369272464276 +25714,128.56999999991933,-0.06860369271197253 +25715,128.57499999991933,-0.06860369269951751 +25716,128.57999999991932,-0.0686036926872776 +25717,128.58499999991932,-0.06860369267525274 +25718,128.5899999999193,-0.0686036926634428 +25719,128.5949999999193,-0.06860369265184774 +25720,128.5999999999193,-0.06860369264046745 +25721,128.6049999999193,-0.06860369262930185 +25722,128.6099999999193,-0.06860369261835085 +25723,128.6149999999193,-0.06860369260761437 +25724,128.6199999999193,-0.0686036925970923 +25725,128.62499999991928,-0.06860369258678459 +25726,128.62999999991928,-0.06860369257669113 +25727,128.63499999991927,-0.06860369256681184 +25728,128.63999999991927,-0.06860369255714666 +25729,128.64499999991926,-0.06860369254769547 +25730,128.64999999991926,-0.06860369253845817 +25731,128.65499999991926,-0.06860369252943473 +25732,128.65999999991925,-0.06860369252062502 +25733,128.66499999991925,-0.06860369251202897 +25734,128.66999999991924,-0.06860369250364651 +25735,128.67499999991924,-0.0686036924954775 +25736,128.67999999991923,-0.06860369248752192 +25737,128.68499999991923,-0.06860369247977964 +25738,128.68999999991922,-0.06860369247225061 +25739,128.69499999991922,-0.0686036924649347 +25740,128.6999999999192,-0.06860369245783185 +25741,128.7049999999192,-0.06860369245094199 +25742,128.7099999999192,-0.068603692444265 +25743,128.7149999999192,-0.06860369243780082 +25744,128.7199999999192,-0.06860369243154935 +25745,128.7249999999192,-0.06860369242551052 +25746,128.7299999999192,-0.06860369241968424 +25747,128.73499999991918,-0.06860369241407041 +25748,128.73999999991918,-0.06860369240866897 +25749,128.74499999991917,-0.0686036924034798 +25750,128.74999999991917,-0.06860369239850285 +25751,128.75499999991916,-0.06860369239373802 +25752,128.75999999991916,-0.06860369238918522 +25753,128.76499999991916,-0.06860369238484437 +25754,128.76999999991915,-0.06860369238071537 +25755,128.77499999991915,-0.06860369237679817 +25756,128.77999999991914,-0.06860369237309266 +25757,128.78499999991914,-0.06860369236959875 +25758,128.78999999991913,-0.06860369236631637 +25759,128.79499999991913,-0.06860369236324543 +25760,128.79999999991912,-0.06860369236038584 +25761,128.80499999991912,-0.06860369235773751 +25762,128.8099999999191,-0.06860369235530038 +25763,128.8149999999191,-0.06860369235307436 +25764,128.8199999999191,-0.06860369235105934 +25765,128.8249999999191,-0.06860369234925524 +25766,128.8299999999191,-0.06860369234766199 +25767,128.8349999999191,-0.0686036923462795 +25768,128.8399999999191,-0.06860369234510769 +25769,128.84499999991908,-0.06860369234414647 +25770,128.84999999991908,-0.06860369234339575 +25771,128.85499999991907,-0.06860369234285547 +25772,128.85999999991907,-0.06860369234252552 +25773,128.86499999991906,-0.06860369234240582 +25774,128.86999999991906,-0.06860369234249629 +25775,128.87499999991905,-0.06860369234279684 +25776,128.87999999991905,-0.06860369234330739 +25777,128.88499999991905,-0.06860369234402786 +25778,128.88999999991904,-0.06860369234495815 +25779,128.89499999991904,-0.06860369234609819 +25780,128.89999999991903,-0.0686036923474479 +25781,128.90499999991903,-0.06860369234900716 +25782,128.90999999991902,-0.06860369235077593 +25783,128.91499999991902,-0.06860369235275411 +25784,128.919999999919,-0.06860369235494161 +25785,128.924999999919,-0.06860369235733836 +25786,128.929999999919,-0.06860369235994426 +25787,128.934999999919,-0.06860369236275923 +25788,128.939999999919,-0.06860369236578319 +25789,128.944999999919,-0.06860369236901605 +25790,128.949999999919,-0.06860369237245773 +25791,128.95499999991898,-0.06860369237610814 +25792,128.95999999991898,-0.0686036923799672 +25793,128.96499999991897,-0.06860369238403483 +25794,128.96999999991897,-0.06860369238831095 +25795,128.97499999991896,-0.06860369239279546 +25796,128.97999999991896,-0.06860369239748827 +25797,128.98499999991895,-0.06860369240238932 +25798,128.98999999991895,-0.06860369240749853 +25799,128.99499999991895,-0.0686036924128158 +25800,128.99999999991894,-0.06860369241834105 +25801,129.00499999991894,-0.0686036924240742 +25802,129.00999999991893,-0.06860369243001514 +25803,129.01499999991893,-0.06860369243616382 +25804,129.01999999991892,-0.06860369244252015 +25805,129.02499999991892,-0.06860369244908404 +25806,129.0299999999189,-0.0686036924558554 +25807,129.0349999999189,-0.06860369246283415 +25808,129.0399999999189,-0.06860369247002022 +25809,129.0449999999189,-0.06860369247741352 +25810,129.0499999999189,-0.06860369248501395 +25811,129.0549999999189,-0.06860369249282146 +25812,129.0599999999189,-0.06860369250083592 +25813,129.06499999991888,-0.06860369250905729 +25814,129.06999999991888,-0.06860369251748545 +25815,129.07499999991887,-0.06860369252612035 +25816,129.07999999991887,-0.0686036925349619 +25817,129.08499999991886,-0.06860369254400998 +25818,129.08999999991886,-0.06860369255326457 +25819,129.09499999991885,-0.06860369256272553 +25820,129.09999999991885,-0.06860369257239281 +25821,129.10499999991885,-0.06860369258226631 +25822,129.10999999991884,-0.06860369259234594 +25823,129.11499999991884,-0.06860369260263165 +25824,129.11999999991883,-0.06860369261312331 +25825,129.12499999991883,-0.06860369262382088 +25826,129.12999999991882,-0.06860369263472425 +25827,129.13499999991882,-0.06860369264583337 +25828,129.1399999999188,-0.06860369265714811 +25829,129.1449999999188,-0.0686036926686684 +25830,129.1499999999188,-0.0686036926803942 +25831,129.1549999999188,-0.06860369269232537 +25832,129.1599999999188,-0.06860369270446187 +25833,129.1649999999188,-0.06860369271680358 +25834,129.1699999999188,-0.06860369272935045 +25835,129.17499999991878,-0.06860369274210237 +25836,129.17999999991878,-0.06860369275505927 +25837,129.18499999991877,-0.06860369276822108 +25838,129.18999999991877,-0.06860369278158769 +25839,129.19499999991876,-0.06860369279515904 +25840,129.19999999991876,-0.06860369280893505 +25841,129.20499999991875,-0.06860369282291562 +25842,129.20999999991875,-0.06860369283710067 +25843,129.21499999991875,-0.06860369285149011 +25844,129.21999999991874,-0.06860369286608388 +25845,129.22499999991874,-0.06860369288088188 +25846,129.22999999991873,-0.06860369289588404 +25847,129.23499999991873,-0.06860369291109027 +25848,129.23999999991872,-0.06860369292650048 +25849,129.24499999991872,-0.0686036929421146 +25850,129.2499999999187,-0.06860369295793255 +25851,129.2549999999187,-0.06860369297395424 +25852,129.2599999999187,-0.06860369299017958 +25853,129.2649999999187,-0.0686036930066085 +25854,129.2699999999187,-0.0686036930232409 +25855,129.2749999999187,-0.06860369304007674 +25856,129.2799999999187,-0.06860369305711589 +25857,129.28499999991868,-0.06860369307435829 +25858,129.28999999991868,-0.06860369309180385 +25859,129.29499999991867,-0.0686036931094525 +25860,129.29999999991867,-0.06860369312730415 +25861,129.30499999991866,-0.0686036931453587 +25862,129.30999999991866,-0.0686036931636161 +25863,129.31499999991865,-0.06860369318207626 +25864,129.31999999991865,-0.06860369320073909 +25865,129.32499999991865,-0.06860369321960451 +25866,129.32999999991864,-0.06860369323867244 +25867,129.33499999991864,-0.06860369325794279 +25868,129.33999999991863,-0.06860369327741547 +25869,129.34499999991863,-0.06860369329709043 +25870,129.34999999991862,-0.06860369331696757 +25871,129.35499999991862,-0.06860369333704679 +25872,129.3599999999186,-0.06860369335732804 +25873,129.3649999999186,-0.06860369337781123 +25874,129.3699999999186,-0.06860369339849626 +25875,129.3749999999186,-0.06860369341938306 +25876,129.3799999999186,-0.06860369344047156 +25877,129.3849999999186,-0.06860369346176166 +25878,129.3899999999186,-0.06860369348325329 +25879,129.39499999991858,-0.06860369350494637 +25880,129.39999999991858,-0.0686036935268408 +25881,129.40499999991857,-0.06860369354893651 +25882,129.40999999991857,-0.06860369357123344 +25883,129.41499999991856,-0.06860369359373146 +25884,129.41999999991856,-0.06860369361643054 +25885,129.42499999991855,-0.06860369363933055 +25886,129.42999999991855,-0.06860369366243145 +25887,129.43499999991855,-0.06860369368573314 +25888,129.43999999991854,-0.06860369370923554 +25889,129.44499999991854,-0.06860369373293856 +25890,129.44999999991853,-0.06860369375684215 +25891,129.45499999991853,-0.06860369378094619 +25892,129.45999999991852,-0.06860369380525061 +25893,129.46499999991852,-0.06860369382975534 +25894,129.4699999999185,-0.0686036938544603 +25895,129.4749999999185,-0.0686036938793654 +25896,129.4799999999185,-0.06860369390447055 +25897,129.4849999999185,-0.0686036939297757 +25898,129.4899999999185,-0.06860369395528072 +25899,129.4949999999185,-0.06860369398098556 +25900,129.4999999999185,-0.06860369400689015 +25901,129.50499999991848,-0.06860369403299438 +25902,129.50999999991848,-0.0686036940592982 +25903,129.51499999991847,-0.0686036940858015 +25904,129.51999999991847,-0.06860369411250421 +25905,129.52499999991846,-0.06860369413940624 +25906,129.52999999991846,-0.06860369416650754 +25907,129.53499999991845,-0.068603694193808 +25908,129.53999999991845,-0.06860369422130755 +25909,129.54499999991845,-0.06860369424900611 +25910,129.54999999991844,-0.0686036942769036 +25911,129.55499999991844,-0.06860369430499992 +25912,129.55999999991843,-0.06860369433329501 +25913,129.56499999991843,-0.06860369436178879 +25914,129.56999999991842,-0.06860369439048117 +25915,129.57499999991842,-0.06860369441937206 +25916,129.5799999999184,-0.06860369444846141 +25917,129.5849999999184,-0.06860369447774911 +25918,129.5899999999184,-0.06860369450723511 +25919,129.5949999999184,-0.0686036945369193 +25920,129.5999999999184,-0.0686036945668016 +25921,129.6049999999184,-0.06860369459688194 +25922,129.6099999999184,-0.06860369462716023 +25923,129.61499999991838,-0.06860369465763641 +25924,129.61999999991838,-0.06860369468831039 +25925,129.62499999991837,-0.06860369471918207 +25926,129.62999999991837,-0.06860369475025141 +25927,129.63499999991836,-0.06860369478151829 +25928,129.63999999991836,-0.06860369481298266 +25929,129.64499999991835,-0.06860369484464442 +25930,129.64999999991835,-0.06860369487650349 +25931,129.65499999991835,-0.06860369490855979 +25932,129.65999999991834,-0.06860369494081324 +25933,129.66499999991834,-0.06860369497326377 +25934,129.66999999991833,-0.0686036950059113 +25935,129.67499999991833,-0.06860369503875574 +25936,129.67999999991832,-0.06860369507179702 +25937,129.68499999991832,-0.06860369510503504 +25938,129.6899999999183,-0.06860369513846974 +25939,129.6949999999183,-0.06860369517210105 +25940,129.6999999999183,-0.06860369520592886 +25941,129.7049999999183,-0.0686036952399531 +25942,129.7099999999183,-0.0686036952741737 +25943,129.7149999999183,-0.06860369530859058 +25944,129.7199999999183,-0.06860369534320364 +25945,129.72499999991828,-0.06860369537801282 +25946,129.72999999991828,-0.06860369541301803 +25947,129.73499999991827,-0.0686036954482192 +25948,129.73999999991827,-0.06860369548361625 +25949,129.74499999991826,-0.06860369551920908 +25950,129.74999999991826,-0.06860369555499764 +25951,129.75499999991825,-0.06860369559098183 +25952,129.75999999991825,-0.06860369562716158 +25953,129.76499999991825,-0.0686036956635368 +25954,129.76999999991824,-0.06860369570010741 +25955,129.77499999991824,-0.06860369573687333 +25956,129.77999999991823,-0.0686036957738345 +25957,129.78499999991823,-0.06860369581099084 +25958,129.78999999991822,-0.06860369584834222 +25959,129.79499999991822,-0.06860369588588863 +25960,129.7999999999182,-0.06860369592362994 +25961,129.8049999999182,-0.06860369596156611 +25962,129.8099999999182,-0.06860369599969703 +25963,129.8149999999182,-0.06860369603802262 +25964,129.8199999999182,-0.06860369607654282 +25965,129.8249999999182,-0.06860369611525755 +25966,129.8299999999182,-0.06860369615416671 +25967,129.83499999991818,-0.06860369619327024 +25968,129.83999999991818,-0.06860369623256805 +25969,129.84499999991817,-0.06860369627206007 +25970,129.84999999991817,-0.06860369631174622 +25971,129.85499999991816,-0.06860369635162641 +25972,129.85999999991816,-0.06860369639170057 +25973,129.86499999991815,-0.06860369643196862 +25974,129.86999999991815,-0.06860369647243048 +25975,129.87499999991815,-0.06860369651308605 +25976,129.87999999991814,-0.06860369655393528 +25977,129.88499999991814,-0.06860369659497809 +25978,129.88999999991813,-0.06860369663621438 +25979,129.89499999991813,-0.0686036966776441 +25980,129.89999999991812,-0.06860369671926714 +25981,129.90499999991812,-0.06860369676108344 +25982,129.9099999999181,-0.06860369680309292 +25983,129.9149999999181,-0.06860369684529549 +25984,129.9199999999181,-0.06860369688769109 +25985,129.9249999999181,-0.06860369693027962 +25986,129.9299999999181,-0.06860369697306103 +25987,129.9349999999181,-0.0686036970160352 +25988,129.9399999999181,-0.06860369705920208 +25989,129.94499999991808,-0.06860369710256159 +25990,129.94999999991808,-0.06860369714611363 +25991,129.95499999991807,-0.06860369718985815 +25992,129.95999999991807,-0.06860369723379506 +25993,129.96499999991806,-0.06860369727792429 +25994,129.96999999991806,-0.06860369732224574 +25995,129.97499999991805,-0.06860369736675934 +25996,129.97999999991805,-0.06860369741146502 +25997,129.98499999991805,-0.0686036974563627 +25998,129.98999999991804,-0.06860369750145229 +25999,129.99499999991804,-0.06860369754673372 +26000,129.99999999991803,-0.0686036975922069 +26001,130.00499999991803,-0.06860369763787177 +26002,130.00999999991802,-0.06860369768372826 +26003,130.01499999991802,-0.06860369772977626 +26004,130.019999999918,-0.06860369777601572 +26005,130.024999999918,-0.06860369782244653 +26006,130.029999999918,-0.06860369786906864 +26007,130.034999999918,-0.06860369791588197 +26008,130.039999999918,-0.06860369796288643 +26009,130.044999999918,-0.06860369801008194 +26010,130.049999999918,-0.06860369805746844 +26011,130.05499999991798,-0.06860369810504582 +26012,130.05999999991798,-0.06860369815281403 +26013,130.06499999991797,-0.06860369820077299 +26014,130.06999999991797,-0.0686036982489226 +26015,130.07499999991796,-0.06860369829726282 +26016,130.07999999991796,-0.06860369834579354 +26017,130.08499999991795,-0.06860369839451468 +26018,130.08999999991795,-0.06860369844342619 +26019,130.09499999991795,-0.06860369849252795 +26020,130.09999999991794,-0.06860369854181993 +26021,130.10499999991794,-0.06860369859130203 +26022,130.10999999991793,-0.06860369864097415 +26023,130.11499999991793,-0.06860369869083625 +26024,130.11999999991792,-0.06860369874088823 +26025,130.12499999991792,-0.06860369879113003 +26026,130.1299999999179,-0.06860369884156155 +26027,130.1349999999179,-0.06860369889218272 +26028,130.1399999999179,-0.06860369894299348 +26029,130.1449999999179,-0.06860369899399373 +26030,130.1499999999179,-0.06860369904518339 +26031,130.1549999999179,-0.0686036990965624 +26032,130.1599999999179,-0.06860369914813068 +26033,130.16499999991788,-0.06860369919988812 +26034,130.16999999991788,-0.0686036992518347 +26035,130.17499999991787,-0.0686036993039703 +26036,130.17999999991787,-0.06860369935629486 +26037,130.18499999991786,-0.06860369940880828 +26038,130.18999999991786,-0.06860369946151051 +26039,130.19499999991785,-0.06860369951440147 +26040,130.19999999991785,-0.06860369956748107 +26041,130.20499999991785,-0.06860369962074922 +26042,130.20999999991784,-0.06860369967420588 +26043,130.21499999991784,-0.06860369972785094 +26044,130.21999999991783,-0.06860369978168435 +26045,130.22499999991783,-0.068603699835706 +26046,130.22999999991782,-0.06860369988991583 +26047,130.23499999991782,-0.06860369994431377 +26048,130.2399999999178,-0.06860369999889974 +26049,130.2449999999178,-0.06860370005367367 +26050,130.2499999999178,-0.06860370010863545 +26051,130.2549999999178,-0.06860370016378503 +26052,130.2599999999178,-0.06860370021912233 +26053,130.2649999999178,-0.06860370027464727 +26054,130.2699999999178,-0.06860370033035977 +26055,130.27499999991778,-0.06860370038625976 +26056,130.27999999991778,-0.06860370044234716 +26057,130.28499999991777,-0.0686037004986219 +26058,130.28999999991777,-0.06860370055508387 +26059,130.29499999991776,-0.06860370061173303 +26060,130.29999999991776,-0.0686037006685693 +26061,130.30499999991775,-0.06860370072559259 +26062,130.30999999991775,-0.06860370078280284 +26063,130.31499999991775,-0.06860370084019994 +26064,130.31999999991774,-0.06860370089778384 +26065,130.32499999991774,-0.06860370095555446 +26066,130.32999999991773,-0.06860370101351172 +26067,130.33499999991773,-0.06860370107165555 +26068,130.33999999991772,-0.06860370112998587 +26069,130.34499999991772,-0.06860370118850259 +26070,130.3499999999177,-0.06860370124720565 +26071,130.3549999999177,-0.06860370130609496 +26072,130.3599999999177,-0.06860370136517045 +26073,130.3649999999177,-0.06860370142443205 +26074,130.3699999999177,-0.06860370148387968 +26075,130.3749999999177,-0.06860370154351325 +26076,130.3799999999177,-0.0686037016033327 +26077,130.38499999991768,-0.06860370166333796 +26078,130.38999999991768,-0.06860370172352893 +26079,130.39499999991767,-0.06860370178390555 +26080,130.39999999991767,-0.06860370184446773 +26081,130.40499999991766,-0.06860370190521542 +26082,130.40999999991766,-0.06860370196614853 +26083,130.41499999991765,-0.06860370202726697 +26084,130.41999999991765,-0.06860370208857067 +26085,130.42499999991765,-0.06860370215005956 +26086,130.42999999991764,-0.06860370221173356 +26087,130.43499999991764,-0.06860370227359261 +26088,130.43999999991763,-0.0686037023356366 +26089,130.44499999991763,-0.06860370239786548 +26090,130.44999999991762,-0.06860370246027916 +26091,130.45499999991762,-0.06860370252287759 +26092,130.4599999999176,-0.06860370258566066 +26093,130.4649999999176,-0.0686037026486283 +26094,130.4699999999176,-0.06860370271178044 +26095,130.4749999999176,-0.06860370277511701 +26096,130.4799999999176,-0.06860370283863794 +26097,130.4849999999176,-0.06860370290234315 +26098,130.4899999999176,-0.06860370296623255 +26099,130.49499999991758,-0.06860370303030607 +26100,130.49999999991758,-0.06860370309456364 +26101,130.50499999991757,-0.06860370315900519 +26102,130.50999999991757,-0.06860370322363062 +26103,130.51499999991756,-0.06860370328843987 +26104,130.51999999991756,-0.06860370335343288 +26105,130.52499999991755,-0.06860370341860954 +26106,130.52999999991755,-0.0686037034839698 +26107,130.53499999991755,-0.06860370354951358 +26108,130.53999999991754,-0.06860370361524079 +26109,130.54499999991754,-0.06860370368115137 +26110,130.54999999991753,-0.06860370374724525 +26111,130.55499999991753,-0.06860370381352233 +26112,130.55999999991752,-0.06860370387998255 +26113,130.56499999991752,-0.06860370394662584 +26114,130.5699999999175,-0.0686037040134521 +26115,130.5749999999175,-0.06860370408046129 +26116,130.5799999999175,-0.06860370414765331 +26117,130.5849999999175,-0.0686037042150281 +26118,130.5899999999175,-0.06860370428258555 +26119,130.5949999999175,-0.06860370435032563 +26120,130.5999999999175,-0.06860370441824824 +26121,130.60499999991748,-0.0686037044863533 +26122,130.60999999991748,-0.06860370455464075 +26123,130.61499999991747,-0.06860370462311052 +26124,130.61999999991747,-0.06860370469176252 +26125,130.62499999991746,-0.06860370476059667 +26126,130.62999999991746,-0.06860370482961291 +26127,130.63499999991745,-0.06860370489881117 +26128,130.63999999991745,-0.06860370496819133 +26129,130.64499999991745,-0.06860370503775337 +26130,130.64999999991744,-0.06860370510749719 +26131,130.65499999991744,-0.06860370517742272 +26132,130.65999999991743,-0.06860370524752987 +26133,130.66499999991743,-0.06860370531781858 +26134,130.66999999991742,-0.06860370538828878 +26135,130.67499999991742,-0.06860370545894039 +26136,130.6799999999174,-0.06860370552977332 +26137,130.6849999999174,-0.0686037056007875 +26138,130.6899999999174,-0.06860370567198289 +26139,130.6949999999174,-0.06860370574335936 +26140,130.6999999999174,-0.06860370581491687 +26141,130.7049999999174,-0.06860370588665533 +26142,130.7099999999174,-0.06860370595857469 +26143,130.71499999991738,-0.06860370603067485 +26144,130.71999999991738,-0.06860370610295576 +26145,130.72499999991737,-0.06860370617541732 +26146,130.72999999991737,-0.06860370624805945 +26147,130.73499999991736,-0.0686037063208821 +26148,130.73999999991736,-0.06860370639388517 +26149,130.74499999991735,-0.06860370646706862 +26150,130.74999999991735,-0.06860370654043234 +26151,130.75499999991735,-0.06860370661397627 +26152,130.75999999991734,-0.06860370668770034 +26153,130.76499999991734,-0.06860370676160447 +26154,130.76999999991733,-0.0686037068356886 +26155,130.77499999991733,-0.06860370690995264 +26156,130.77999999991732,-0.06860370698439651 +26157,130.78499999991732,-0.06860370705902014 +26158,130.7899999999173,-0.06860370713382347 +26159,130.7949999999173,-0.0686037072088064 +26160,130.7999999999173,-0.06860370728396888 +26161,130.8049999999173,-0.06860370735931082 +26162,130.8099999999173,-0.06860370743483216 +26163,130.8149999999173,-0.06860370751053281 +26164,130.8199999999173,-0.06860370758641271 +26165,130.82499999991728,-0.06860370766247177 +26166,130.82999999991728,-0.06860370773870994 +26167,130.83499999991727,-0.06860370781512712 +26168,130.83999999991727,-0.06860370789172325 +26169,130.84499999991726,-0.06860370796849824 +26170,130.84999999991726,-0.06860370804545204 +26171,130.85499999991725,-0.06860370812258457 +26172,130.85999999991725,-0.06860370819989574 +26173,130.86499999991725,-0.06860370827738548 +26174,130.86999999991724,-0.06860370835505372 +26175,130.87499999991724,-0.06860370843290041 +26176,130.87999999991723,-0.06860370851092543 +26177,130.88499999991723,-0.06860370858912875 +26178,130.88999999991722,-0.06860370866751027 +26179,130.89499999991722,-0.0686037087460699 +26180,130.8999999999172,-0.0686037088248076 +26181,130.9049999999172,-0.06860370890372329 +26182,130.9099999999172,-0.06860370898281688 +26183,130.9149999999172,-0.06860370906208832 +26184,130.9199999999172,-0.0686037091415375 +26185,130.9249999999172,-0.06860370922116439 +26186,130.9299999999172,-0.0686037093009689 +26187,130.93499999991718,-0.06860370938095095 +26188,130.93999999991718,-0.06860370946111045 +26189,130.94499999991717,-0.06860370954144736 +26190,130.94999999991717,-0.06860370962196159 +26191,130.95499999991716,-0.06860370970265306 +26192,130.95999999991716,-0.0686037097835217 +26193,130.96499999991715,-0.06860370986456744 +26194,130.96999999991715,-0.06860370994579024 +26195,130.97499999991715,-0.06860371002718994 +26196,130.97999999991714,-0.06860371010876655 +26197,130.98499999991714,-0.06860371019051996 +26198,130.98999999991713,-0.0686037102724501 +26199,130.99499999991713,-0.06860371035455691 +26200,130.99999999991712,-0.0686037104368403 +26201,131.00499999991712,-0.06860371051930021 +26202,131.0099999999171,-0.06860371060193654 +26203,131.0149999999171,-0.06860371068474924 +26204,131.0199999999171,-0.06860371076773823 +26205,131.0249999999171,-0.06860371085090346 +26206,131.0299999999171,-0.06860371093424482 +26207,131.0349999999171,-0.06860371101776225 +26208,131.0399999999171,-0.06860371110145569 +26209,131.04499999991708,-0.06860371118532504 +26210,131.04999999991708,-0.06860371126937025 +26211,131.05499999991707,-0.06860371135359125 +26212,131.05999999991707,-0.06860371143798795 +26213,131.06499999991706,-0.06860371152256028 +26214,131.06999999991706,-0.06860371160730819 +26215,131.07499999991705,-0.06860371169223158 +26216,131.07999999991705,-0.06860371177733036 +26217,131.08499999991704,-0.0686037118626045 +26218,131.08999999991704,-0.0686037119480539 +26219,131.09499999991704,-0.0686037120336785 +26220,131.09999999991703,-0.06860371211947823 +26221,131.10499999991703,-0.06860371220545301 +26222,131.10999999991702,-0.06860371229160277 +26223,131.11499999991702,-0.06860371237792742 +26224,131.119999999917,-0.06860371246442691 +26225,131.124999999917,-0.06860371255110116 +26226,131.129999999917,-0.06860371263795009 +26227,131.134999999917,-0.06860371272497365 +26228,131.139999999917,-0.06860371281217174 +26229,131.144999999917,-0.0686037128995443 +26230,131.149999999917,-0.06860371298709124 +26231,131.15499999991698,-0.06860371307481251 +26232,131.15999999991698,-0.06860371316270805 +26233,131.16499999991697,-0.06860371325077774 +26234,131.16999999991697,-0.06860371333902156 +26235,131.17499999991696,-0.06860371342743939 +26236,131.17999999991696,-0.06860371351603119 +26237,131.18499999991695,-0.06860371360479688 +26238,131.18999999991695,-0.06860371369373638 +26239,131.19499999991694,-0.06860371378284963 +26240,131.19999999991694,-0.06860371387213654 +26241,131.20499999991694,-0.06860371396159705 +26242,131.20999999991693,-0.0686037140512311 +26243,131.21499999991693,-0.06860371414103858 +26244,131.21999999991692,-0.06860371423101945 +26245,131.22499999991692,-0.06860371432117364 +26246,131.2299999999169,-0.06860371441150107 +26247,131.2349999999169,-0.06860371450200164 +26248,131.2399999999169,-0.06860371459267532 +26249,131.2449999999169,-0.06860371468352201 +26250,131.2499999999169,-0.06860371477454166 +26251,131.2549999999169,-0.06860371486573417 +26252,131.2599999999169,-0.0686037149570995 +26253,131.26499999991688,-0.06860371504863753 +26254,131.26999999991688,-0.06860371514034824 +26255,131.27499999991687,-0.06860371523223154 +26256,131.27999999991687,-0.06860371532428736 +26257,131.28499999991686,-0.0686037154165156 +26258,131.28999999991686,-0.06860371550891622 +26259,131.29499999991685,-0.06860371560148915 +26260,131.29999999991685,-0.06860371569423429 +26261,131.30499999991684,-0.0686037157871516 +26262,131.30999999991684,-0.06860371588024099 +26263,131.31499999991684,-0.06860371597350237 +26264,131.31999999991683,-0.06860371606693572 +26265,131.32499999991683,-0.06860371616054092 +26266,131.32999999991682,-0.06860371625431794 +26267,131.33499999991682,-0.06860371634826666 +26268,131.3399999999168,-0.06860371644238704 +26269,131.3449999999168,-0.068603716536679 +26270,131.3499999999168,-0.06860371663114247 +26271,131.3549999999168,-0.06860371672577736 +26272,131.3599999999168,-0.06860371682058362 +26273,131.3649999999168,-0.06860371691556119 +26274,131.36999999991679,-0.06860371701070998 +26275,131.37499999991678,-0.06860371710602992 +26276,131.37999999991678,-0.06860371720152093 +26277,131.38499999991677,-0.06860371729718297 +26278,131.38999999991677,-0.06860371739301593 +26279,131.39499999991676,-0.06860371748901976 +26280,131.39999999991676,-0.06860371758519437 +26281,131.40499999991675,-0.06860371768153972 +26282,131.40999999991675,-0.06860371777805571 +26283,131.41499999991674,-0.06860371787474229 +26284,131.41999999991674,-0.06860371797159937 +26285,131.42499999991674,-0.06860371806862688 +26286,131.42999999991673,-0.06860371816582476 +26287,131.43499999991673,-0.06860371826319293 +26288,131.43999999991672,-0.06860371836073133 +26289,131.44499999991672,-0.06860371845843988 +26290,131.4499999999167,-0.0686037185563185 +26291,131.4549999999167,-0.06860371865436714 +26292,131.4599999999167,-0.06860371875258572 +26293,131.4649999999167,-0.06860371885097416 +26294,131.4699999999167,-0.06860371894953239 +26295,131.4749999999167,-0.06860371904826036 +26296,131.47999999991669,-0.06860371914715797 +26297,131.48499999991668,-0.06860371924622517 +26298,131.48999999991668,-0.06860371934546189 +26299,131.49499999991667,-0.06860371944486804 +26300,131.49999999991667,-0.06860371954444355 +26301,131.50499999991666,-0.06860371964418836 +26302,131.50999999991666,-0.06860371974410241 +26303,131.51499999991665,-0.0686037198441856 +26304,131.51999999991665,-0.0686037199444379 +26305,131.52499999991664,-0.0686037200448592 +26306,131.52999999991664,-0.06860372014544945 +26307,131.53499999991664,-0.06860372024620857 +26308,131.53999999991663,-0.0686037203471365 +26309,131.54499999991663,-0.06860372044823314 +26310,131.54999999991662,-0.06860372054949845 +26311,131.55499999991662,-0.06860372065093234 +26312,131.5599999999166,-0.06860372075253478 +26313,131.5649999999166,-0.06860372085430563 +26314,131.5699999999166,-0.06860372095624488 +26315,131.5749999999166,-0.06860372105835245 +26316,131.5799999999166,-0.06860372116062824 +26317,131.5849999999166,-0.06860372126307221 +26318,131.58999999991659,-0.06860372136568427 +26319,131.59499999991658,-0.06860372146846434 +26320,131.59999999991658,-0.06860372157141238 +26321,131.60499999991657,-0.0686037216745283 +26322,131.60999999991657,-0.06860372177781204 +26323,131.61499999991656,-0.06860372188126351 +26324,131.61999999991656,-0.06860372198488267 +26325,131.62499999991655,-0.06860372208866941 +26326,131.62999999991655,-0.06860372219262371 +26327,131.63499999991654,-0.06860372229674547 +26328,131.63999999991654,-0.0686037224010346 +26329,131.64499999991654,-0.06860372250549107 +26330,131.64999999991653,-0.06860372261011477 +26331,131.65499999991653,-0.06860372271490565 +26332,131.65999999991652,-0.06860372281986367 +26333,131.66499999991652,-0.0686037229249887 +26334,131.6699999999165,-0.06860372303028071 +26335,131.6749999999165,-0.06860372313573963 +26336,131.6799999999165,-0.06860372324136538 +26337,131.6849999999165,-0.06860372334715788 +26338,131.6899999999165,-0.06860372345311708 +26339,131.6949999999165,-0.06860372355924288 +26340,131.69999999991649,-0.06860372366553524 +26341,131.70499999991648,-0.06860372377199409 +26342,131.70999999991648,-0.06860372387861934 +26343,131.71499999991647,-0.06860372398541092 +26344,131.71999999991647,-0.06860372409236878 +26345,131.72499999991646,-0.06860372419949284 +26346,131.72999999991646,-0.06860372430678303 +26347,131.73499999991645,-0.06860372441423929 +26348,131.73999999991645,-0.06860372452186152 +26349,131.74499999991644,-0.0686037246296497 +26350,131.74999999991644,-0.0686037247376037 +26351,131.75499999991644,-0.0686037248457235 +26352,131.75999999991643,-0.068603724954009 +26353,131.76499999991643,-0.06860372506246014 +26354,131.76999999991642,-0.06860372517107687 +26355,131.77499999991642,-0.06860372527985908 +26356,131.7799999999164,-0.06860372538880673 +26357,131.7849999999164,-0.06860372549791974 +26358,131.7899999999164,-0.06860372560719805 +26359,131.7949999999164,-0.06860372571664158 +26360,131.7999999999164,-0.06860372582625027 +26361,131.8049999999164,-0.06860372593602404 +26362,131.80999999991639,-0.06860372604596282 +26363,131.81499999991638,-0.06860372615606654 +26364,131.81999999991638,-0.06860372626633515 +26365,131.82499999991637,-0.06860372637676856 +26366,131.82999999991637,-0.06860372648736672 +26367,131.83499999991636,-0.06860372659812952 +26368,131.83999999991636,-0.06860372670905694 +26369,131.84499999991635,-0.0686037268201489 +26370,131.84999999991635,-0.06860372693140529 +26371,131.85499999991634,-0.06860372704282608 +26372,131.85999999991634,-0.0686037271544112 +26373,131.86499999991634,-0.06860372726616057 +26374,131.86999999991633,-0.06860372737807412 +26375,131.87499999991633,-0.06860372749015177 +26376,131.87999999991632,-0.06860372760239347 +26377,131.88499999991632,-0.06860372771479917 +26378,131.8899999999163,-0.06860372782736875 +26379,131.8949999999163,-0.06860372794010217 +26380,131.8999999999163,-0.06860372805299934 +26381,131.9049999999163,-0.06860372816606024 +26382,131.9099999999163,-0.06860372827928475 +26383,131.9149999999163,-0.06860372839267284 +26384,131.91999999991629,-0.0686037285062244 +26385,131.92499999991628,-0.0686037286199394 +26386,131.92999999991628,-0.06860372873381773 +26387,131.93499999991627,-0.06860372884785935 +26388,131.93999999991627,-0.06860372896206421 +26389,131.94499999991626,-0.06860372907643221 +26390,131.94999999991626,-0.06860372919096326 +26391,131.95499999991625,-0.06860372930565733 +26392,131.95999999991625,-0.06860372942051436 +26393,131.96499999991624,-0.06860372953553424 +26394,131.96999999991624,-0.06860372965071693 +26395,131.97499999991624,-0.06860372976606235 +26396,131.97999999991623,-0.06860372988157044 +26397,131.98499999991623,-0.06860372999724114 +26398,131.98999999991622,-0.06860373011307434 +26399,131.99499999991622,-0.06860373022907003 +26400,131.9999999999162,-0.06860373034522808 +26401,132.0049999999162,-0.06860373046154847 +26402,132.0099999999162,-0.06860373057803111 +26403,132.0149999999162,-0.06860373069467593 +26404,132.0199999999162,-0.06860373081148288 +26405,132.0249999999162,-0.06860373092845187 +26406,132.02999999991619,-0.06860373104558283 +26407,132.03499999991618,-0.0686037311628757 +26408,132.03999999991618,-0.06860373128033043 +26409,132.04499999991617,-0.06860373139794691 +26410,132.04999999991617,-0.06860373151572512 +26411,132.05499999991616,-0.06860373163366495 +26412,132.05999999991616,-0.06860373175176634 +26413,132.06499999991615,-0.06860373187002926 +26414,132.06999999991615,-0.06860373198845358 +26415,132.07499999991614,-0.06860373210703928 +26416,132.07999999991614,-0.06860373222578628 +26417,132.08499999991614,-0.0686037323446945 +26418,132.08999999991613,-0.06860373246376386 +26419,132.09499999991613,-0.06860373258299433 +26420,132.09999999991612,-0.06860373270238582 +26421,132.10499999991612,-0.06860373282193825 +26422,132.1099999999161,-0.06860373294165159 +26423,132.1149999999161,-0.06860373306152573 +26424,132.1199999999161,-0.06860373318156063 +26425,132.1249999999161,-0.0686037333017562 +26426,132.1299999999161,-0.0686037334221124 +26427,132.1349999999161,-0.06860373354262915 +26428,132.13999999991609,-0.06860373366330635 +26429,132.14499999991608,-0.06860373378414399 +26430,132.14999999991608,-0.06860373390514195 +26431,132.15499999991607,-0.06860373402630018 +26432,132.15999999991607,-0.06860373414761864 +26433,132.16499999991606,-0.06860373426909722 +26434,132.16999999991606,-0.06860373439073587 +26435,132.17499999991605,-0.06860373451253453 +26436,132.17999999991605,-0.06860373463449312 +26437,132.18499999991604,-0.06860373475661159 +26438,132.18999999991604,-0.06860373487888984 +26439,132.19499999991604,-0.06860373500132784 +26440,132.19999999991603,-0.0686037351239255 +26441,132.20499999991603,-0.06860373524668273 +26442,132.20999999991602,-0.0686037353695995 +26443,132.21499999991602,-0.06860373549267575 +26444,132.219999999916,-0.06860373561591136 +26445,132.224999999916,-0.06860373573930632 +26446,132.229999999916,-0.06860373586286053 +26447,132.234999999916,-0.06860373598657393 +26448,132.239999999916,-0.06860373611044647 +26449,132.244999999916,-0.06860373623447803 +26450,132.24999999991599,-0.0686037363586686 +26451,132.25499999991598,-0.06860373648301808 +26452,132.25999999991598,-0.06860373660752643 +26453,132.26499999991597,-0.06860373673219355 +26454,132.26999999991597,-0.0686037368570194 +26455,132.27499999991596,-0.0686037369820039 +26456,132.27999999991596,-0.06860373710714697 +26457,132.28499999991595,-0.06860373723244856 +26458,132.28999999991595,-0.06860373735790859 +26459,132.29499999991594,-0.068603737483527 +26460,132.29999999991594,-0.06860373760930373 +26461,132.30499999991594,-0.06860373773523872 +26462,132.30999999991593,-0.06860373786133186 +26463,132.31499999991593,-0.06860373798758314 +26464,132.31999999991592,-0.06860373811399245 +26465,132.32499999991592,-0.06860373824055975 +26466,132.3299999999159,-0.06860373836728495 +26467,132.3349999999159,-0.068603738494168 +26468,132.3399999999159,-0.06860373862120882 +26469,132.3449999999159,-0.06860373874840735 +26470,132.3499999999159,-0.06860373887576353 +26471,132.3549999999159,-0.06860373900327726 +26472,132.35999999991589,-0.06860373913094853 +26473,132.36499999991588,-0.06860373925877723 +26474,132.36999999991588,-0.0686037393867633 +26475,132.37499999991587,-0.06860373951490668 +26476,132.37999999991587,-0.0686037396432073 +26477,132.38499999991586,-0.0686037397716651 +26478,132.38999999991586,-0.06860373990028 +26479,132.39499999991585,-0.06860374002905195 +26480,132.39999999991585,-0.06860374015798086 +26481,132.40499999991584,-0.06860374028706669 +26482,132.40999999991584,-0.06860374041630933 +26483,132.41499999991584,-0.06860374054570877 +26484,132.41999999991583,-0.06860374067526491 +26485,132.42499999991583,-0.06860374080497768 +26486,132.42999999991582,-0.06860374093484703 +26487,132.43499999991582,-0.06860374106487288 +26488,132.4399999999158,-0.06860374119505516 +26489,132.4449999999158,-0.06860374132539383 +26490,132.4499999999158,-0.0686037414558888 +26491,132.4549999999158,-0.06860374158654 +26492,132.4599999999158,-0.06860374171734739 +26493,132.4649999999158,-0.06860374184831088 +26494,132.46999999991579,-0.06860374197943041 +26495,132.47499999991578,-0.06860374211070591 +26496,132.47999999991578,-0.06860374224213732 +26497,132.48499999991577,-0.06860374237372457 +26498,132.48999999991577,-0.0686037425054676 +26499,132.49499999991576,-0.06860374263736632 +26500,132.49999999991576,-0.06860374276942069 +26501,132.50499999991575,-0.06860374290163064 +26502,132.50999999991575,-0.06860374303399609 +26503,132.51499999991574,-0.06860374316651699 +26504,132.51999999991574,-0.06860374329919328 +26505,132.52499999991574,-0.06860374343202486 +26506,132.52999999991573,-0.06860374356501169 +26507,132.53499999991573,-0.0686037436981537 +26508,132.53999999991572,-0.0686037438314508 +26509,132.54499999991572,-0.06860374396490296 +26510,132.5499999999157,-0.0686037440985101 +26511,132.5549999999157,-0.06860374423227214 +26512,132.5599999999157,-0.06860374436618903 +26513,132.5649999999157,-0.0686037445002607 +26514,132.5699999999157,-0.0686037446344871 +26515,132.5749999999157,-0.06860374476886814 +26516,132.57999999991569,-0.06860374490340376 +26517,132.58499999991568,-0.06860374503809391 +26518,132.58999999991568,-0.06860374517293849 +26519,132.59499999991567,-0.06860374530793746 +26520,132.59999999991567,-0.06860374544309075 +26521,132.60499999991566,-0.0686037455783983 +26522,132.60999999991566,-0.06860374571386002 +26523,132.61499999991565,-0.06860374584947587 +26524,132.61999999991565,-0.06860374598524577 +26525,132.62499999991564,-0.06860374612116966 +26526,132.62999999991564,-0.06860374625724748 +26527,132.63499999991564,-0.06860374639347916 +26528,132.63999999991563,-0.06860374652986462 +26529,132.64499999991563,-0.06860374666640381 +26530,132.64999999991562,-0.06860374680309665 +26531,132.65499999991562,-0.06860374693994309 +26532,132.6599999999156,-0.06860374707694307 +26533,132.6649999999156,-0.0686037472140965 +26534,132.6699999999156,-0.06860374735140333 +26535,132.6749999999156,-0.0686037474888635 +26536,132.6799999999156,-0.06860374762647692 +26537,132.6849999999156,-0.06860374776424355 +26538,132.68999999991559,-0.06860374790216332 +26539,132.69499999991558,-0.06860374804023615 +26540,132.69999999991558,-0.068603748178462 +26541,132.70499999991557,-0.06860374831684078 +26542,132.70999999991557,-0.06860374845537243 +26543,132.71499999991556,-0.06860374859405688 +26544,132.71999999991556,-0.06860374873289408 +26545,132.72499999991555,-0.06860374887188396 +26546,132.72999999991555,-0.06860374901102645 +26547,132.73499999991554,-0.0686037491503215 +26548,132.73999999991554,-0.06860374928976902 +26549,132.74499999991554,-0.06860374942936895 +26550,132.74999999991553,-0.06860374956912124 +26551,132.75499999991553,-0.0686037497090258 +26552,132.75999999991552,-0.06860374984908259 +26553,132.76499999991552,-0.06860374998929153 +26554,132.7699999999155,-0.06860375012965257 +26555,132.7749999999155,-0.06860375027016563 +26556,132.7799999999155,-0.06860375041083065 +26557,132.7849999999155,-0.06860375055164757 +26558,132.7899999999155,-0.0686037506926163 +26559,132.7949999999155,-0.0686037508337368 +26560,132.79999999991549,-0.06860375097500902 +26561,132.80499999991548,-0.06860375111643287 +26562,132.80999999991548,-0.06860375125800827 +26563,132.81499999991547,-0.0686037513997352 +26564,132.81999999991547,-0.06860375154161354 +26565,132.82499999991546,-0.06860375168364326 +26566,132.82999999991546,-0.06860375182582429 +26567,132.83499999991545,-0.06860375196815657 +26568,132.83999999991545,-0.06860375211064003 +26569,132.84499999991544,-0.06860375225327461 +26570,132.84999999991544,-0.06860375239606023 +26571,132.85499999991544,-0.06860375253899684 +26572,132.85999999991543,-0.06860375268208435 +26573,132.86499999991543,-0.06860375282532273 +26574,132.86999999991542,-0.0686037529687119 +26575,132.87499999991542,-0.0686037531122518 +26576,132.8799999999154,-0.06860375325594235 +26577,132.8849999999154,-0.0686037533997835 +26578,132.8899999999154,-0.06860375354377518 +26579,132.8949999999154,-0.06860375368791734 +26580,132.8999999999154,-0.06860375383220989 +26581,132.9049999999154,-0.06860375397665279 +26582,132.90999999991539,-0.06860375412124596 +26583,132.91499999991538,-0.06860375426598933 +26584,132.91999999991538,-0.06860375441088284 +26585,132.92499999991537,-0.06860375455592645 +26586,132.92999999991537,-0.06860375470112005 +26587,132.93499999991536,-0.06860375484646362 +26588,132.93999999991536,-0.06860375499195706 +26589,132.94499999991535,-0.06860375513760034 +26590,132.94999999991535,-0.06860375528339337 +26591,132.95499999991534,-0.0686037554293361 +26592,132.95999999991534,-0.06860375557542844 +26593,132.96499999991534,-0.06860375572167035 +26594,132.96999999991533,-0.06860375586806176 +26595,132.97499999991533,-0.06860375601460263 +26596,132.97999999991532,-0.06860375616129286 +26597,132.98499999991532,-0.06860375630813238 +26598,132.9899999999153,-0.06860375645512115 +26599,132.9949999999153,-0.06860375660225909 +26600,132.9999999999153,-0.06860375674954616 +26601,133.0049999999153,-0.06860375689698228 +26602,133.0099999999153,-0.06860375704456738 +26603,133.0149999999153,-0.0686037571923014 +26604,133.01999999991529,-0.06860375734018428 +26605,133.02499999991528,-0.06860375748821597 +26606,133.02999999991528,-0.06860375763639637 +26607,133.03499999991527,-0.06860375778472545 +26608,133.03999999991527,-0.06860375793320313 +26609,133.04499999991526,-0.06860375808182934 +26610,133.04999999991526,-0.06860375823060404 +26611,133.05499999991525,-0.06860375837952712 +26612,133.05999999991525,-0.06860375852859857 +26613,133.06499999991524,-0.06860375867781829 +26614,133.06999999991524,-0.06860375882718624 +26615,133.07499999991524,-0.06860375897670234 +26616,133.07999999991523,-0.06860375912636653 +26617,133.08499999991523,-0.06860375927617873 +26618,133.08999999991522,-0.06860375942613893 +26619,133.09499999991522,-0.06860375957624701 +26620,133.0999999999152,-0.06860375972650291 +26621,133.1049999999152,-0.06860375987690659 +26622,133.1099999999152,-0.068603760027458 +26623,133.1149999999152,-0.06860376017815703 +26624,133.1199999999152,-0.06860376032900364 +26625,133.1249999999152,-0.06860376047999779 +26626,133.12999999991519,-0.06860376063113938 +26627,133.13499999991518,-0.06860376078242836 +26628,133.13999999991518,-0.06860376093386467 +26629,133.14499999991517,-0.06860376108544823 +26630,133.14999999991517,-0.06860376123717898 +26631,133.15499999991516,-0.06860376138905688 +26632,133.15999999991516,-0.06860376154108186 +26633,133.16499999991515,-0.06860376169325383 +26634,133.16999999991515,-0.06860376184557276 +26635,133.17499999991514,-0.06860376199803857 +26636,133.17999999991514,-0.0686037621506512 +26637,133.18499999991514,-0.06860376230341057 +26638,133.18999999991513,-0.06860376245631665 +26639,133.19499999991513,-0.06860376260936935 +26640,133.19999999991512,-0.0686037627625686 +26641,133.20499999991512,-0.06860376291591437 +26642,133.2099999999151,-0.06860376306940659 +26643,133.2149999999151,-0.06860376322304516 +26644,133.2199999999151,-0.06860376337683007 +26645,133.2249999999151,-0.0686037635307612 +26646,133.2299999999151,-0.06860376368483853 +26647,133.2349999999151,-0.06860376383906197 +26648,133.23999999991509,-0.06860376399343147 +26649,133.24499999991508,-0.06860376414794697 +26650,133.24999999991508,-0.06860376430260841 +26651,133.25499999991507,-0.06860376445741573 +26652,133.25999999991507,-0.06860376461236883 +26653,133.26499999991506,-0.0686037647674677 +26654,133.26999999991506,-0.06860376492271224 +26655,133.27499999991505,-0.06860376507810238 +26656,133.27999999991505,-0.06860376523363809 +26657,133.28499999991504,-0.0686037653893193 +26658,133.28999999991504,-0.06860376554514593 +26659,133.29499999991504,-0.06860376570111791 +26660,133.29999999991503,-0.06860376585723521 +26661,133.30499999991503,-0.06860376601349774 +26662,133.30999999991502,-0.06860376616990545 +26663,133.31499999991502,-0.06860376632645827 +26664,133.319999999915,-0.06860376648315615 +26665,133.324999999915,-0.06860376663999902 +26666,133.329999999915,-0.06860376679698682 +26667,133.334999999915,-0.06860376695411947 +26668,133.339999999915,-0.06860376711139693 +26669,133.344999999915,-0.06860376726881913 +26670,133.34999999991498,-0.068603767426386 +26671,133.35499999991498,-0.06860376758409749 +26672,133.35999999991498,-0.06860376774195352 +26673,133.36499999991497,-0.06860376789995404 +26674,133.36999999991497,-0.06860376805809898 +26675,133.37499999991496,-0.06860376821638828 +26676,133.37999999991496,-0.06860376837482188 +26677,133.38499999991495,-0.06860376853339972 +26678,133.38999999991495,-0.06860376869212173 +26679,133.39499999991494,-0.06860376885098786 +26680,133.39999999991494,-0.06860376900999804 +26681,133.40499999991493,-0.06860376916915219 +26682,133.40999999991493,-0.06860376932845028 +26683,133.41499999991493,-0.06860376948789221 +26684,133.41999999991492,-0.06860376964747797 +26685,133.42499999991492,-0.06860376980720745 +26686,133.4299999999149,-0.06860376996708059 +26687,133.4349999999149,-0.06860377012709737 +26688,133.4399999999149,-0.06860377028725768 +26689,133.4449999999149,-0.0686037704475615 +26690,133.4499999999149,-0.06860377060800874 +26691,133.4549999999149,-0.06860377076859932 +26692,133.45999999991488,-0.06860377092933322 +26693,133.46499999991488,-0.06860377109021035 +26694,133.46999999991488,-0.06860377125123066 +26695,133.47499999991487,-0.06860377141239409 +26696,133.47999999991487,-0.06860377157370055 +26697,133.48499999991486,-0.06860377173515002 +26698,133.48999999991486,-0.06860377189674241 +26699,133.49499999991485,-0.06860377205847767 +26700,133.49999999991485,-0.06860377222035574 +26701,133.50499999991484,-0.06860377238237655 +26702,133.50999999991484,-0.06860377254454003 +26703,133.51499999991483,-0.06860377270684614 +26704,133.51999999991483,-0.0686037728692948 +26705,133.52499999991483,-0.06860377303188596 +26706,133.52999999991482,-0.06860377319461955 +26707,133.53499999991482,-0.06860377335749551 +26708,133.5399999999148,-0.06860377352051379 +26709,133.5449999999148,-0.06860377368367429 +26710,133.5499999999148,-0.068603773846977 +26711,133.5549999999148,-0.06860377401042182 +26712,133.5599999999148,-0.06860377417400869 +26713,133.5649999999148,-0.06860377433773758 +26714,133.56999999991478,-0.06860377450160839 +26715,133.57499999991478,-0.06860377466562108 +26716,133.57999999991478,-0.06860377482977557 +26717,133.58499999991477,-0.06860377499407183 +26718,133.58999999991477,-0.06860377515850978 +26719,133.59499999991476,-0.06860377532308935 +26720,133.59999999991476,-0.06860377548781049 +26721,133.60499999991475,-0.06860377565267316 +26722,133.60999999991475,-0.06860377581767725 +26723,133.61499999991474,-0.06860377598282273 +26724,133.61999999991474,-0.06860377614810952 +26725,133.62499999991473,-0.06860377631353756 +26726,133.62999999991473,-0.06860377647910681 +26727,133.63499999991473,-0.0686037766448172 +26728,133.63999999991472,-0.06860377681066866 +26729,133.64499999991472,-0.06860377697666113 +26730,133.6499999999147,-0.06860377714279457 +26731,133.6549999999147,-0.06860377730906889 +26732,133.6599999999147,-0.06860377747548403 +26733,133.6649999999147,-0.06860377764203995 +26734,133.6699999999147,-0.06860377780873658 +26735,133.6749999999147,-0.06860377797557385 +26736,133.67999999991468,-0.0686037781425517 +26737,133.68499999991468,-0.06860377830967006 +26738,133.68999999991468,-0.06860377847692889 +26739,133.69499999991467,-0.06860377864432814 +26740,133.69999999991467,-0.0686037788118677 +26741,133.70499999991466,-0.06860377897954754 +26742,133.70999999991466,-0.06860377914736761 +26743,133.71499999991465,-0.06860377931532782 +26744,133.71999999991465,-0.06860377948342815 +26745,133.72499999991464,-0.06860377965166849 +26746,133.72999999991464,-0.0686037798200488 +26747,133.73499999991463,-0.06860377998856904 +26748,133.73999999991463,-0.06860378015722911 +26749,133.74499999991463,-0.06860378032602897 +26750,133.74999999991462,-0.06860378049496856 +26751,133.75499999991462,-0.06860378066404782 +26752,133.7599999999146,-0.06860378083326668 +26753,133.7649999999146,-0.06860378100262508 +26754,133.7699999999146,-0.06860378117212299 +26755,133.7749999999146,-0.0686037813417603 +26756,133.7799999999146,-0.06860378151153697 +26757,133.7849999999146,-0.06860378168145294 +26758,133.78999999991458,-0.06860378185150816 +26759,133.79499999991458,-0.06860378202170256 +26760,133.79999999991458,-0.06860378219203607 +26761,133.80499999991457,-0.06860378236250864 +26762,133.80999999991457,-0.06860378253312022 +26763,133.81499999991456,-0.06860378270387071 +26764,133.81999999991456,-0.06860378287476009 +26765,133.82499999991455,-0.06860378304578828 +26766,133.82999999991455,-0.06860378321695522 +26767,133.83499999991454,-0.06860378338826087 +26768,133.83999999991454,-0.06860378355970513 +26769,133.84499999991453,-0.06860378373128798 +26770,133.84999999991453,-0.06860378390300934 +26771,133.85499999991453,-0.06860378407486914 +26772,133.85999999991452,-0.06860378424686733 +26773,133.86499999991452,-0.06860378441900386 +26774,133.8699999999145,-0.06860378459127865 +26775,133.8749999999145,-0.06860378476369165 +26776,133.8799999999145,-0.0686037849362428 +26777,133.8849999999145,-0.06860378510893204 +26778,133.8899999999145,-0.06860378528175931 +26779,133.8949999999145,-0.06860378545472455 +26780,133.89999999991448,-0.06860378562782768 +26781,133.90499999991448,-0.06860378580106866 +26782,133.90999999991448,-0.06860378597444743 +26783,133.91499999991447,-0.06860378614796392 +26784,133.91999999991447,-0.06860378632161808 +26785,133.92499999991446,-0.06860378649540984 +26786,133.92999999991446,-0.06860378666933914 +26787,133.93499999991445,-0.06860378684340593 +26788,133.93999999991445,-0.06860378701761015 +26789,133.94499999991444,-0.06860378719195173 +26790,133.94999999991444,-0.06860378736643061 +26791,133.95499999991443,-0.06860378754104673 +26792,133.95999999991443,-0.06860378771580004 +26793,133.96499999991443,-0.06860378789069047 +26794,133.96999999991442,-0.06860378806571797 +26795,133.97499999991442,-0.06860378824088245 +26796,133.9799999999144,-0.06860378841618389 +26797,133.9849999999144,-0.06860378859162221 +26798,133.9899999999144,-0.06860378876719735 +26799,133.9949999999144,-0.06860378894290925 +26800,133.9999999999144,-0.06860378911875785 +26801,134.0049999999144,-0.06860378929474309 +26802,134.00999999991438,-0.06860378947086493 +26803,134.01499999991438,-0.06860378964712328 +26804,134.01999999991438,-0.06860378982351809 +26805,134.02499999991437,-0.0686037900000493 +26806,134.02999999991437,-0.06860379017671686 +26807,134.03499999991436,-0.0686037903535207 +26808,134.03999999991436,-0.06860379053046076 +26809,134.04499999991435,-0.06860379070753699 +26810,134.04999999991435,-0.06860379088474931 +26811,134.05499999991434,-0.06860379106209769 +26812,134.05999999991434,-0.06860379123958203 +26813,134.06499999991433,-0.06860379141720231 +26814,134.06999999991433,-0.06860379159495847 +26815,134.07499999991433,-0.06860379177285042 +26816,134.07999999991432,-0.06860379195087811 +26817,134.08499999991432,-0.06860379212904148 +26818,134.0899999999143,-0.06860379230734048 +26819,134.0949999999143,-0.06860379248577506 +26820,134.0999999999143,-0.06860379266434513 +26821,134.1049999999143,-0.06860379284305065 +26822,134.1099999999143,-0.06860379302189158 +26823,134.1149999999143,-0.06860379320086782 +26824,134.11999999991428,-0.06860379337997932 +26825,134.12499999991428,-0.06860379355922604 +26826,134.12999999991428,-0.06860379373860791 +26827,134.13499999991427,-0.06860379391812486 +26828,134.13999999991427,-0.06860379409777685 +26829,134.14499999991426,-0.06860379427756381 +26830,134.14999999991426,-0.06860379445748568 +26831,134.15499999991425,-0.06860379463754239 +26832,134.15999999991425,-0.06860379481773392 +26833,134.16499999991424,-0.06860379499806016 +26834,134.16999999991424,-0.06860379517852107 +26835,134.17499999991423,-0.0686037953591166 +26836,134.17999999991423,-0.0686037955398467 +26837,134.18499999991423,-0.06860379572071129 +26838,134.18999999991422,-0.06860379590171031 +26839,134.19499999991422,-0.06860379608284371 +26840,134.1999999999142,-0.06860379626411144 +26841,134.2049999999142,-0.06860379644551341 +26842,134.2099999999142,-0.06860379662704959 +26843,134.2149999999142,-0.0686037968087199 +26844,134.2199999999142,-0.06860379699052432 +26845,134.2249999999142,-0.06860379717246275 +26846,134.22999999991418,-0.06860379735453513 +26847,134.23499999991418,-0.06860379753674142 +26848,134.23999999991418,-0.06860379771908157 +26849,134.24499999991417,-0.06860379790155549 +26850,134.24999999991417,-0.06860379808416314 +26851,134.25499999991416,-0.06860379826690446 +26852,134.25999999991416,-0.06860379844977939 +26853,134.26499999991415,-0.06860379863278787 +26854,134.26999999991415,-0.06860379881592985 +26855,134.27499999991414,-0.06860379899920525 +26856,134.27999999991414,-0.06860379918261404 +26857,134.28499999991413,-0.06860379936615614 +26858,134.28999999991413,-0.06860379954983149 +26859,134.29499999991413,-0.06860379973364004 +26860,134.29999999991412,-0.06860379991758174 +26861,134.30499999991412,-0.06860380010165651 +26862,134.3099999999141,-0.0686038002858643 +26863,134.3149999999141,-0.06860380047020505 +26864,134.3199999999141,-0.0686038006546787 +26865,134.3249999999141,-0.06860380083928522 +26866,134.3299999999141,-0.06860380102402451 +26867,134.3349999999141,-0.06860380120889653 +26868,134.33999999991408,-0.06860380139390121 +26869,134.34499999991408,-0.0686038015790385 +26870,134.34999999991408,-0.06860380176430836 +26871,134.35499999991407,-0.0686038019497107 +26872,134.35999999991407,-0.06860380213524547 +26873,134.36499999991406,-0.06860380232091262 +26874,134.36999999991406,-0.06860380250671208 +26875,134.37499999991405,-0.06860380269264381 +26876,134.37999999991405,-0.06860380287870774 +26877,134.38499999991404,-0.06860380306490381 +26878,134.38999999991404,-0.06860380325123197 +26879,134.39499999991403,-0.06860380343769215 +26880,134.39999999991403,-0.0686038036242843 +26881,134.40499999991403,-0.06860380381100835 +26882,134.40999999991402,-0.06860380399786427 +26883,134.41499999991402,-0.06860380418485197 +26884,134.419999999914,-0.06860380437197139 +26885,134.424999999914,-0.06860380455922249 +26886,134.429999999914,-0.06860380474660523 +26887,134.434999999914,-0.06860380493411951 +26888,134.439999999914,-0.0686038051217653 +26889,134.444999999914,-0.06860380530954252 +26890,134.44999999991398,-0.06860380549745114 +26891,134.45499999991398,-0.06860380568549107 +26892,134.45999999991398,-0.06860380587366227 +26893,134.46499999991397,-0.06860380606196467 +26894,134.46999999991397,-0.06860380625039823 +26895,134.47499999991396,-0.0686038064389629 +26896,134.47999999991396,-0.06860380662765858 +26897,134.48499999991395,-0.06860380681648526 +26898,134.48999999991395,-0.06860380700544284 +26899,134.49499999991394,-0.0686038071945313 +26900,134.49999999991394,-0.06860380738375055 +26901,134.50499999991393,-0.06860380757310056 +26902,134.50999999991393,-0.06860380776258124 +26903,134.51499999991393,-0.06860380795219255 +26904,134.51999999991392,-0.06860380814193444 +26905,134.52499999991392,-0.06860380833180683 +26906,134.5299999999139,-0.06860380852180968 +26907,134.5349999999139,-0.06860380871194294 +26908,134.5399999999139,-0.06860380890220652 +26909,134.5449999999139,-0.0686038090926004 +26910,134.5499999999139,-0.0686038092831245 +26911,134.5549999999139,-0.06860380947377875 +26912,134.55999999991388,-0.06860380966456313 +26913,134.56499999991388,-0.06860380985547755 +26914,134.56999999991388,-0.06860381004652195 +26915,134.57499999991387,-0.06860381023769631 +26916,134.57999999991387,-0.06860381042900053 +26917,134.58499999991386,-0.06860381062043458 +26918,134.58999999991386,-0.06860381081199839 +26919,134.59499999991385,-0.06860381100369191 +26920,134.59999999991385,-0.06860381119551506 +26921,134.60499999991384,-0.06860381138746782 +26922,134.60999999991384,-0.0686038115795501 +26923,134.61499999991383,-0.06860381177176185 +26924,134.61999999991383,-0.06860381196410303 +26925,134.62499999991383,-0.06860381215657356 +26926,134.62999999991382,-0.06860381234917338 +26927,134.63499999991382,-0.06860381254190245 +26928,134.6399999999138,-0.06860381273476072 +26929,134.6449999999138,-0.06860381292774811 +26930,134.6499999999138,-0.06860381312086457 +26931,134.6549999999138,-0.06860381331411006 +26932,134.6599999999138,-0.06860381350748448 +26933,134.6649999999138,-0.06860381370098782 +26934,134.66999999991378,-0.06860381389462 +26935,134.67499999991378,-0.06860381408838097 +26936,134.67999999991378,-0.06860381428227066 +26937,134.68499999991377,-0.06860381447628902 +26938,134.68999999991377,-0.068603814670436 +26939,134.69499999991376,-0.06860381486471152 +26940,134.69999999991376,-0.06860381505911554 +26941,134.70499999991375,-0.06860381525364802 +26942,134.70999999991375,-0.06860381544830887 +26943,134.71499999991374,-0.06860381564309806 +26944,134.71999999991374,-0.0686038158380155 +26945,134.72499999991373,-0.06860381603306116 +26946,134.72999999991373,-0.068603816228235 +26947,134.73499999991373,-0.06860381642353691 +26948,134.73999999991372,-0.06860381661896688 +26949,134.74499999991372,-0.06860381681452482 +26950,134.7499999999137,-0.06860381701021069 +26951,134.7549999999137,-0.06860381720602443 +26952,134.7599999999137,-0.06860381740196599 +26953,134.7649999999137,-0.0686038175980353 +26954,134.7699999999137,-0.0686038177942323 +26955,134.7749999999137,-0.06860381799055695 +26956,134.77999999991368,-0.06860381818700918 +26957,134.78499999991368,-0.06860381838358895 +26958,134.78999999991368,-0.06860381858029618 +26959,134.79499999991367,-0.06860381877713083 +26960,134.79999999991367,-0.06860381897409283 +26961,134.80499999991366,-0.06860381917118213 +26962,134.80999999991366,-0.06860381936839871 +26963,134.81499999991365,-0.06860381956574245 +26964,134.81999999991365,-0.06860381976321332 +26965,134.82499999991364,-0.06860381996081126 +26966,134.82999999991364,-0.06860382015853624 +26967,134.83499999991363,-0.06860382035638816 +26968,134.83999999991363,-0.068603820554367 +26969,134.84499999991363,-0.06860382075247269 +26970,134.84999999991362,-0.06860382095070516 +26971,134.85499999991362,-0.06860382114906437 +26972,134.8599999999136,-0.06860382134755023 +26973,134.8649999999136,-0.06860382154616274 +26974,134.8699999999136,-0.06860382174490179 +26975,134.8749999999136,-0.06860382194376738 +26976,134.8799999999136,-0.0686038221427594 +26977,134.8849999999136,-0.06860382234187781 +26978,134.88999999991358,-0.06860382254112257 +26979,134.89499999991358,-0.06860382274049362 +26980,134.89999999991358,-0.06860382293999089 +26981,134.90499999991357,-0.06860382313961431 +26982,134.90999999991357,-0.06860382333936386 +26983,134.91499999991356,-0.06860382353923945 +26984,134.91999999991356,-0.06860382373924105 +26985,134.92499999991355,-0.06860382393936859 +26986,134.92999999991355,-0.06860382413962202 +26987,134.93499999991354,-0.06860382434000128 +26988,134.93999999991354,-0.06860382454050631 +26989,134.94499999991353,-0.06860382474113706 +26990,134.94999999991353,-0.06860382494189347 +26991,134.95499999991353,-0.06860382514277549 +26992,134.95999999991352,-0.06860382534378306 +26993,134.96499999991352,-0.06860382554491612 +26994,134.9699999999135,-0.06860382574617463 +26995,134.9749999999135,-0.06860382594755851 +26996,134.9799999999135,-0.0686038261490677 +26997,134.9849999999135,-0.06860382635070218 +26998,134.9899999999135,-0.06860382655246186 +26999,134.9949999999135,-0.0686038267543467 +27000,134.99999999991348,-0.06860382695635664 +27001,135.00499999991348,-0.06860382715849163 +27002,135.00999999991348,-0.0686038273607516 +27003,135.01499999991347,-0.06860382756313649 +27004,135.01999999991347,-0.06860382776564627 +27005,135.02499999991346,-0.06860382796828086 +27006,135.02999999991346,-0.06860382817104023 +27007,135.03499999991345,-0.0686038283739243 +27008,135.03999999991345,-0.06860382857693302 +27009,135.04499999991344,-0.06860382878006634 +27010,135.04999999991344,-0.06860382898332419 +27011,135.05499999991343,-0.06860382918670653 +27012,135.05999999991343,-0.06860382939021331 +27013,135.06499999991343,-0.06860382959384445 +27014,135.06999999991342,-0.06860382979759992 +27015,135.07499999991342,-0.06860383000147964 +27016,135.0799999999134,-0.06860383020548357 +27017,135.0849999999134,-0.06860383040961163 +27018,135.0899999999134,-0.06860383061386381 +27019,135.0949999999134,-0.06860383081824001 +27020,135.0999999999134,-0.06860383102274022 +27021,135.1049999999134,-0.06860383122736433 +27022,135.10999999991338,-0.06860383143211232 +27023,135.11499999991338,-0.06860383163698412 +27024,135.11999999991338,-0.06860383184197968 +27025,135.12499999991337,-0.06860383204709895 +27026,135.12999999991337,-0.06860383225234186 +27027,135.13499999991336,-0.06860383245770836 +27028,135.13999999991336,-0.06860383266319842 +27029,135.14499999991335,-0.06860383286881196 +27030,135.14999999991335,-0.0686038330745489 +27031,135.15499999991334,-0.06860383328040924 +27032,135.15999999991334,-0.06860383348639287 +27033,135.16499999991333,-0.06860383369249978 +27034,135.16999999991333,-0.06860383389872987 +27035,135.17499999991333,-0.06860383410508313 +27036,135.17999999991332,-0.06860383431155948 +27037,135.18499999991332,-0.06860383451815885 +27038,135.1899999999133,-0.06860383472488123 +27039,135.1949999999133,-0.06860383493172653 +27040,135.1999999999133,-0.0686038351386947 +27041,135.2049999999133,-0.06860383534578568 +27042,135.2099999999133,-0.06860383555299943 +27043,135.2149999999133,-0.06860383576033588 +27044,135.21999999991328,-0.068603835967795 +27045,135.22499999991328,-0.0686038361753767 +27046,135.22999999991328,-0.06860383638308094 +27047,135.23499999991327,-0.06860383659090767 +27048,135.23999999991327,-0.06860383679885683 +27049,135.24499999991326,-0.06860383700692836 +27050,135.24999999991326,-0.06860383721512221 +27051,135.25499999991325,-0.06860383742343834 +27052,135.25999999991325,-0.06860383763187666 +27053,135.26499999991324,-0.06860383784043714 +27054,135.26999999991324,-0.06860383804911972 +27055,135.27499999991323,-0.06860383825792433 +27056,135.27999999991323,-0.06860383846685096 +27057,135.28499999991323,-0.06860383867589952 +27058,135.28999999991322,-0.06860383888506995 +27059,135.29499999991322,-0.0686038390943622 +27060,135.2999999999132,-0.06860383930377623 +27061,135.3049999999132,-0.06860383951331198 +27062,135.3099999999132,-0.06860383972296936 +27063,135.3149999999132,-0.06860383993274838 +27064,135.3199999999132,-0.06860384014264893 +27065,135.3249999999132,-0.06860384035267099 +27066,135.32999999991318,-0.06860384056281449 +27067,135.33499999991318,-0.06860384077307935 +27068,135.33999999991318,-0.06860384098346556 +27069,135.34499999991317,-0.06860384119397304 +27070,135.34999999991317,-0.06860384140460175 +27071,135.35499999991316,-0.06860384161535163 +27072,135.35999999991316,-0.0686038418262226 +27073,135.36499999991315,-0.06860384203721465 +27074,135.36999999991315,-0.06860384224832769 +27075,135.37499999991314,-0.06860384245956169 +27076,135.37999999991314,-0.06860384267091658 +27077,135.38499999991313,-0.0686038428823923 +27078,135.38999999991313,-0.0686038430939888 +27079,135.39499999991313,-0.06860384330570604 +27080,135.39999999991312,-0.06860384351754395 +27081,135.40499999991312,-0.06860384372950248 +27082,135.4099999999131,-0.06860384394158159 +27083,135.4149999999131,-0.0686038441537812 +27084,135.4199999999131,-0.06860384436610126 +27085,135.4249999999131,-0.06860384457854173 +27086,135.4299999999131,-0.06860384479110253 +27087,135.4349999999131,-0.06860384500378364 +27088,135.43999999991308,-0.06860384521658497 +27089,135.44499999991308,-0.06860384542950651 +27090,135.44999999991308,-0.06860384564254816 +27091,135.45499999991307,-0.0686038458557099 +27092,135.45999999991307,-0.06860384606899166 +27093,135.46499999991306,-0.06860384628239338 +27094,135.46999999991306,-0.06860384649591501 +27095,135.47499999991305,-0.0686038467095565 +27096,135.47999999991305,-0.06860384692331781 +27097,135.48499999991304,-0.06860384713719886 +27098,135.48999999991304,-0.06860384735119959 +27099,135.49499999991303,-0.06860384756531997 +27100,135.49999999991303,-0.06860384777955994 +27101,135.50499999991303,-0.06860384799391944 +27102,135.50999999991302,-0.06860384820839843 +27103,135.51499999991302,-0.06860384842299684 +27104,135.519999999913,-0.06860384863771461 +27105,135.524999999913,-0.06860384885255169 +27106,135.529999999913,-0.06860384906750805 +27107,135.534999999913,-0.06860384928258362 +27108,135.539999999913,-0.06860384949777833 +27109,135.544999999913,-0.06860384971309215 +27110,135.54999999991298,-0.06860384992852502 +27111,135.55499999991298,-0.06860385014407686 +27112,135.55999999991297,-0.06860385035974766 +27113,135.56499999991297,-0.06860385057553732 +27114,135.56999999991297,-0.06860385079144582 +27115,135.57499999991296,-0.06860385100747311 +27116,135.57999999991296,-0.06860385122361912 +27117,135.58499999991295,-0.06860385143988379 +27118,135.58999999991295,-0.06860385165626708 +27119,135.59499999991294,-0.06860385187276892 +27120,135.59999999991294,-0.06860385208938927 +27121,135.60499999991293,-0.06860385230612807 +27122,135.60999999991293,-0.06860385252298527 +27123,135.61499999991292,-0.06860385273996084 +27124,135.61999999991292,-0.06860385295705466 +27125,135.62499999991292,-0.06860385317426675 +27126,135.6299999999129,-0.06860385339159701 +27127,135.6349999999129,-0.0686038536090454 +27128,135.6399999999129,-0.06860385382661187 +27129,135.6449999999129,-0.06860385404429636 +27130,135.6499999999129,-0.06860385426209883 +27131,135.6549999999129,-0.06860385448001921 +27132,135.65999999991288,-0.06860385469805745 +27133,135.66499999991288,-0.0686038549162135 +27134,135.66999999991287,-0.0686038551344873 +27135,135.67499999991287,-0.06860385535287881 +27136,135.67999999991287,-0.06860385557138797 +27137,135.68499999991286,-0.06860385579001473 +27138,135.68999999991286,-0.06860385600875901 +27139,135.69499999991285,-0.06860385622762079 +27140,135.69999999991285,-0.0686038564466 +27141,135.70499999991284,-0.06860385666569659 +27142,135.70999999991284,-0.0686038568849105 +27143,135.71499999991283,-0.06860385710424169 +27144,135.71999999991283,-0.06860385732369009 +27145,135.72499999991282,-0.06860385754325567 +27146,135.72999999991282,-0.06860385776293836 +27147,135.73499999991282,-0.0686038579827381 +27148,135.7399999999128,-0.06860385820265487 +27149,135.7449999999128,-0.06860385842268858 +27150,135.7499999999128,-0.06860385864283919 +27151,135.7549999999128,-0.06860385886310665 +27152,135.7599999999128,-0.06860385908349088 +27153,135.7649999999128,-0.06860385930399189 +27154,135.76999999991278,-0.06860385952460957 +27155,135.77499999991278,-0.06860385974534387 +27156,135.77999999991277,-0.06860385996619477 +27157,135.78499999991277,-0.06860386018716218 +27158,135.78999999991277,-0.06860386040824606 +27159,135.79499999991276,-0.06860386062944637 +27160,135.79999999991276,-0.06860386085076306 +27161,135.80499999991275,-0.06860386107219606 +27162,135.80999999991275,-0.06860386129374531 +27163,135.81499999991274,-0.06860386151541077 +27164,135.81999999991274,-0.06860386173719239 +27165,135.82499999991273,-0.06860386195909011 +27166,135.82999999991273,-0.06860386218110388 +27167,135.83499999991272,-0.06860386240323366 +27168,135.83999999991272,-0.06860386262547936 +27169,135.84499999991272,-0.06860386284784098 +27170,135.8499999999127,-0.06860386307031842 +27171,135.8549999999127,-0.06860386329291164 +27172,135.8599999999127,-0.0686038635156206 +27173,135.8649999999127,-0.06860386373844524 +27174,135.8699999999127,-0.0686038639613855 +27175,135.8749999999127,-0.06860386418444134 +27176,135.87999999991268,-0.0686038644076127 +27177,135.88499999991268,-0.06860386463089951 +27178,135.88999999991267,-0.06860386485430175 +27179,135.89499999991267,-0.06860386507781935 +27180,135.89999999991267,-0.06860386530145227 +27181,135.90499999991266,-0.06860386552520044 +27182,135.90999999991266,-0.0686038657490638 +27183,135.91499999991265,-0.06860386597304231 +27184,135.91999999991265,-0.06860386619713595 +27185,135.92499999991264,-0.06860386642134461 +27186,135.92999999991264,-0.06860386664566827 +27187,135.93499999991263,-0.06860386687010687 +27188,135.93999999991263,-0.06860386709466036 +27189,135.94499999991262,-0.06860386731932869 +27190,135.94999999991262,-0.0686038675441118 +27191,135.95499999991262,-0.06860386776900963 +27192,135.9599999999126,-0.06860386799402214 +27193,135.9649999999126,-0.06860386821914928 +27194,135.9699999999126,-0.068603868444391 +27195,135.9749999999126,-0.06860386866974723 +27196,135.9799999999126,-0.06860386889521793 +27197,135.9849999999126,-0.06860386912080305 +27198,135.98999999991258,-0.06860386934650252 +27199,135.99499999991258,-0.06860386957231632 +27200,135.99999999991257,-0.06860386979824436 +27201,136.00499999991257,-0.06860387002428663 +27202,136.00999999991257,-0.06860387025044302 +27203,136.01499999991256,-0.06860387047671353 +27204,136.01999999991256,-0.06860387070309808 +27205,136.02499999991255,-0.06860387092959663 +27206,136.02999999991255,-0.06860387115620914 +27207,136.03499999991254,-0.06860387138293553 +27208,136.03999999991254,-0.06860387160977575 +27209,136.04499999991253,-0.06860387183672977 +27210,136.04999999991253,-0.0686038720637975 +27211,136.05499999991252,-0.06860387229097895 +27212,136.05999999991252,-0.068603872518274 +27213,136.06499999991252,-0.06860387274568265 +27214,136.0699999999125,-0.06860387297320482 +27215,136.0749999999125,-0.06860387320084045 +27216,136.0799999999125,-0.06860387342858952 +27217,136.0849999999125,-0.06860387365645197 +27218,136.0899999999125,-0.06860387388442772 +27219,136.0949999999125,-0.06860387411251674 +27220,136.09999999991248,-0.06860387434071898 +27221,136.10499999991248,-0.06860387456903437 +27222,136.10999999991247,-0.06860387479746288 +27223,136.11499999991247,-0.06860387502600444 +27224,136.11999999991247,-0.06860387525465901 +27225,136.12499999991246,-0.06860387548342653 +27226,136.12999999991246,-0.06860387571230696 +27227,136.13499999991245,-0.06860387594130023 +27228,136.13999999991245,-0.06860387617040631 +27229,136.14499999991244,-0.06860387639962512 +27230,136.14999999991244,-0.06860387662895664 +27231,136.15499999991243,-0.0686038768584008 +27232,136.15999999991243,-0.06860387708795754 +27233,136.16499999991242,-0.06860387731762682 +27234,136.16999999991242,-0.0686038775474086 +27235,136.17499999991242,-0.06860387777730281 +27236,136.1799999999124,-0.06860387800730941 +27237,136.1849999999124,-0.06860387823742833 +27238,136.1899999999124,-0.06860387846765954 +27239,136.1949999999124,-0.06860387869800297 +27240,136.1999999999124,-0.06860387892845858 +27241,136.2049999999124,-0.06860387915902633 +27242,136.20999999991238,-0.06860387938970612 +27243,136.21499999991238,-0.06860387962049795 +27244,136.21999999991237,-0.06860387985140176 +27245,136.22499999991237,-0.06860388008241748 +27246,136.22999999991237,-0.06860388031354506 +27247,136.23499999991236,-0.06860388054478446 +27248,136.23999999991236,-0.06860388077613562 +27249,136.24499999991235,-0.06860388100759851 +27250,136.24999999991235,-0.06860388123917305 +27251,136.25499999991234,-0.06860388147085919 +27252,136.25999999991234,-0.0686038817026569 +27253,136.26499999991233,-0.06860388193456611 +27254,136.26999999991233,-0.06860388216658678 +27255,136.27499999991232,-0.06860388239871884 +27256,136.27999999991232,-0.06860388263096226 +27257,136.28499999991232,-0.06860388286331698 +27258,136.2899999999123,-0.06860388309578297 +27259,136.2949999999123,-0.06860388332836012 +27260,136.2999999999123,-0.06860388356104845 +27261,136.3049999999123,-0.06860388379384785 +27262,136.3099999999123,-0.06860388402675831 +27263,136.3149999999123,-0.06860388425977976 +27264,136.31999999991228,-0.06860388449291216 +27265,136.32499999991228,-0.06860388472615545 +27266,136.32999999991227,-0.06860388495950956 +27267,136.33499999991227,-0.06860388519297446 +27268,136.33999999991227,-0.0686038854265501 +27269,136.34499999991226,-0.06860388566023644 +27270,136.34999999991226,-0.0686038858940334 +27271,136.35499999991225,-0.06860388612794095 +27272,136.35999999991225,-0.06860388636195904 +27273,136.36499999991224,-0.0686038865960876 +27274,136.36999999991224,-0.06860388683032659 +27275,136.37499999991223,-0.06860388706467596 +27276,136.37999999991223,-0.06860388729913565 +27277,136.38499999991222,-0.06860388753370562 +27278,136.38999999991222,-0.06860388776838582 +27279,136.39499999991222,-0.0686038880031762 +27280,136.3999999999122,-0.0686038882380767 +27281,136.4049999999122,-0.06860388847308727 +27282,136.4099999999122,-0.06860388870820787 +27283,136.4149999999122,-0.06860388894343843 +27284,136.4199999999122,-0.0686038891787789 +27285,136.4249999999122,-0.06860388941422926 +27286,136.42999999991218,-0.06860388964978942 +27287,136.43499999991218,-0.06860388988545937 +27288,136.43999999991217,-0.06860389012123902 +27289,136.44499999991217,-0.06860389035712834 +27290,136.44999999991217,-0.06860389059312727 +27291,136.45499999991216,-0.06860389082923576 +27292,136.45999999991216,-0.06860389106545378 +27293,136.46499999991215,-0.06860389130178125 +27294,136.46999999991215,-0.06860389153821814 +27295,136.47499999991214,-0.06860389177476438 +27296,136.47999999991214,-0.06860389201141993 +27297,136.48499999991213,-0.06860389224818475 +27298,136.48999999991213,-0.06860389248505878 +27299,136.49499999991212,-0.06860389272204197 +27300,136.49999999991212,-0.06860389295913426 +27301,136.50499999991212,-0.0686038931963356 +27302,136.5099999999121,-0.06860389343364595 +27303,136.5149999999121,-0.06860389367106527 +27304,136.5199999999121,-0.06860389390859348 +27305,136.5249999999121,-0.06860389414623054 +27306,136.5299999999121,-0.0686038943839764 +27307,136.5349999999121,-0.06860389462183103 +27308,136.53999999991208,-0.06860389485979437 +27309,136.54499999991208,-0.06860389509786634 +27310,136.54999999991207,-0.06860389533604694 +27311,136.55499999991207,-0.06860389557433606 +27312,136.55999999991207,-0.0686038958127337 +27313,136.56499999991206,-0.06860389605123979 +27314,136.56999999991206,-0.06860389628985428 +27315,136.57499999991205,-0.06860389652857711 +27316,136.57999999991205,-0.06860389676740825 +27317,136.58499999991204,-0.06860389700634763 +27318,136.58999999991204,-0.0686038972453952 +27319,136.59499999991203,-0.06860389748455094 +27320,136.59999999991203,-0.06860389772381477 +27321,136.60499999991202,-0.06860389796318665 +27322,136.60999999991202,-0.06860389820266653 +27323,136.61499999991202,-0.06860389844225435 +27324,136.619999999912,-0.06860389868195008 +27325,136.624999999912,-0.06860389892175364 +27326,136.629999999912,-0.06860389916166501 +27327,136.634999999912,-0.06860389940168411 +27328,136.639999999912,-0.06860389964181093 +27329,136.644999999912,-0.06860389988204539 +27330,136.64999999991198,-0.06860390012238743 +27331,136.65499999991198,-0.06860390036283702 +27332,136.65999999991197,-0.06860390060339412 +27333,136.66499999991197,-0.06860390084405865 +27334,136.66999999991197,-0.0686039010848306 +27335,136.67499999991196,-0.06860390132570988 +27336,136.67999999991196,-0.06860390156669646 +27337,136.68499999991195,-0.0686039018077903 +27338,136.68999999991195,-0.06860390204899132 +27339,136.69499999991194,-0.06860390229029947 +27340,136.69999999991194,-0.06860390253171474 +27341,136.70499999991193,-0.06860390277323704 +27342,136.70999999991193,-0.06860390301486635 +27343,136.71499999991192,-0.0686039032566026 +27344,136.71999999991192,-0.06860390349844574 +27345,136.72499999991192,-0.06860390374039572 +27346,136.7299999999119,-0.06860390398245252 +27347,136.7349999999119,-0.06860390422461604 +27348,136.7399999999119,-0.06860390446688627 +27349,136.7449999999119,-0.06860390470926317 +27350,136.7499999999119,-0.06860390495174665 +27351,136.7549999999119,-0.06860390519433666 +27352,136.75999999991188,-0.0686039054370332 +27353,136.76499999991188,-0.06860390567983617 +27354,136.76999999991187,-0.06860390592274553 +27355,136.77499999991187,-0.06860390616576124 +27356,136.77999999991187,-0.06860390640888327 +27357,136.78499999991186,-0.06860390665211154 +27358,136.78999999991186,-0.068603906895446 +27359,136.79499999991185,-0.06860390713888662 +27360,136.79999999991185,-0.06860390738243334 +27361,136.80499999991184,-0.0686039076260861 +27362,136.80999999991184,-0.06860390786984487 +27363,136.81499999991183,-0.06860390811370957 +27364,136.81999999991183,-0.0686039083576802 +27365,136.82499999991182,-0.06860390860175668 +27366,136.82999999991182,-0.06860390884593895 +27367,136.83499999991182,-0.06860390909022698 +27368,136.8399999999118,-0.06860390933462071 +27369,136.8449999999118,-0.0686039095791201 +27370,136.8499999999118,-0.06860390982372509 +27371,136.8549999999118,-0.06860391006843564 +27372,136.8599999999118,-0.0686039103132517 +27373,136.8649999999118,-0.0686039105581732 +27374,136.86999999991178,-0.06860391080320014 +27375,136.87499999991178,-0.06860391104833242 +27376,136.87999999991177,-0.06860391129357 +27377,136.88499999991177,-0.06860391153891286 +27378,136.88999999991177,-0.06860391178436091 +27379,136.89499999991176,-0.06860391202991414 +27380,136.89999999991176,-0.06860391227557247 +27381,136.90499999991175,-0.06860391252133585 +27382,136.90999999991175,-0.06860391276720426 +27383,136.91499999991174,-0.06860391301317763 +27384,136.91999999991174,-0.06860391325925592 +27385,136.92499999991173,-0.06860391350543907 +27386,136.92999999991173,-0.06860391375172703 +27387,136.93499999991172,-0.06860391399811977 +27388,136.93999999991172,-0.06860391424461722 +27389,136.94499999991172,-0.06860391449121934 +27390,136.9499999999117,-0.0686039147379261 +27391,136.9549999999117,-0.0686039149847374 +27392,136.9599999999117,-0.06860391523165324 +27393,136.9649999999117,-0.06860391547867355 +27394,136.9699999999117,-0.06860391572579827 +27395,136.9749999999117,-0.06860391597302738 +27396,136.97999999991168,-0.06860391622036081 +27397,136.98499999991168,-0.06860391646779852 +27398,136.98999999991167,-0.06860391671534047 +27399,136.99499999991167,-0.06860391696298658 +27400,136.99999999991167,-0.06860391721073682 +27401,137.00499999991166,-0.06860391745859114 +27402,137.00999999991166,-0.0686039177065495 +27403,137.01499999991165,-0.06860391795461183 +27404,137.01999999991165,-0.0686039182027781 +27405,137.02499999991164,-0.06860391845104825 +27406,137.02999999991164,-0.06860391869942226 +27407,137.03499999991163,-0.06860391894790004 +27408,137.03999999991163,-0.06860391919648155 +27409,137.04499999991162,-0.06860391944516676 +27410,137.04999999991162,-0.06860391969395561 +27411,137.05499999991162,-0.06860391994284806 +27412,137.0599999999116,-0.06860392019184405 +27413,137.0649999999116,-0.06860392044094354 +27414,137.0699999999116,-0.06860392069014647 +27415,137.0749999999116,-0.06860392093945279 +27416,137.0799999999116,-0.06860392118886248 +27417,137.0849999999116,-0.06860392143837546 +27418,137.08999999991158,-0.06860392168799168 +27419,137.09499999991158,-0.0686039219377111 +27420,137.09999999991157,-0.0686039221875337 +27421,137.10499999991157,-0.06860392243745939 +27422,137.10999999991157,-0.06860392268748813 +27423,137.11499999991156,-0.0686039229376199 +27424,137.11999999991156,-0.06860392318785462 +27425,137.12499999991155,-0.06860392343819224 +27426,137.12999999991155,-0.06860392368863273 +27427,137.13499999991154,-0.06860392393917604 +27428,137.13999999991154,-0.06860392418982211 +27429,137.14499999991153,-0.0686039244405709 +27430,137.14999999991153,-0.06860392469142235 +27431,137.15499999991152,-0.06860392494237642 +27432,137.15999999991152,-0.06860392519343307 +27433,137.16499999991152,-0.06860392544459225 +27434,137.1699999999115,-0.0686039256958539 +27435,137.1749999999115,-0.068603925947218 +27436,137.1799999999115,-0.06860392619868445 +27437,137.1849999999115,-0.06860392645025325 +27438,137.1899999999115,-0.0686039267019243 +27439,137.1949999999115,-0.06860392695369762 +27440,137.19999999991148,-0.0686039272055731 +27441,137.20499999991148,-0.06860392745755073 +27442,137.20999999991147,-0.06860392770963045 +27443,137.21499999991147,-0.06860392796181221 +27444,137.21999999991147,-0.06860392821409596 +27445,137.22499999991146,-0.06860392846648165 +27446,137.22999999991146,-0.06860392871896924 +27447,137.23499999991145,-0.06860392897155869 +27448,137.23999999991145,-0.06860392922424993 +27449,137.24499999991144,-0.06860392947704291 +27450,137.24999999991144,-0.0686039297299376 +27451,137.25499999991143,-0.06860392998293395 +27452,137.25999999991143,-0.06860393023603191 +27453,137.26499999991142,-0.06860393048923143 +27454,137.26999999991142,-0.06860393074253246 +27455,137.27499999991142,-0.06860393099593495 +27456,137.2799999999114,-0.06860393124943887 +27457,137.2849999999114,-0.06860393150304414 +27458,137.2899999999114,-0.06860393175675074 +27459,137.2949999999114,-0.06860393201055862 +27460,137.2999999999114,-0.0686039322644677 +27461,137.3049999999114,-0.06860393251847796 +27462,137.30999999991138,-0.06860393277258936 +27463,137.31499999991138,-0.06860393302680184 +27464,137.31999999991137,-0.06860393328111535 +27465,137.32499999991137,-0.06860393353552983 +27466,137.32999999991137,-0.06860393379004526 +27467,137.33499999991136,-0.06860393404466157 +27468,137.33999999991136,-0.06860393429937872 +27469,137.34499999991135,-0.06860393455419667 +27470,137.34999999991135,-0.06860393480911536 +27471,137.35499999991134,-0.06860393506413474 +27472,137.35999999991134,-0.0686039353192548 +27473,137.36499999991133,-0.06860393557447543 +27474,137.36999999991133,-0.06860393582979663 +27475,137.37499999991132,-0.06860393608521834 +27476,137.37999999991132,-0.06860393634074051 +27477,137.38499999991132,-0.06860393659636307 +27478,137.3899999999113,-0.068603936852086 +27479,137.3949999999113,-0.06860393710790927 +27480,137.3999999999113,-0.06860393736383279 +27481,137.4049999999113,-0.06860393761985653 +27482,137.4099999999113,-0.06860393787598043 +27483,137.4149999999113,-0.06860393813220447 +27484,137.41999999991128,-0.06860393838852859 +27485,137.42499999991128,-0.06860393864495273 +27486,137.42999999991127,-0.06860393890147687 +27487,137.43499999991127,-0.06860393915810092 +27488,137.43999999991127,-0.06860393941482489 +27489,137.44499999991126,-0.06860393967164867 +27490,137.44999999991126,-0.06860393992857226 +27491,137.45499999991125,-0.0686039401855956 +27492,137.45999999991125,-0.06860394044271863 +27493,137.46499999991124,-0.0686039406999413 +27494,137.46999999991124,-0.06860394095726359 +27495,137.47499999991123,-0.06860394121468544 +27496,137.47999999991123,-0.06860394147220679 +27497,137.48499999991122,-0.0686039417298276 +27498,137.48999999991122,-0.06860394198754781 +27499,137.49499999991122,-0.06860394224536741 +27500,137.4999999999112,-0.06860394250328632 +27501,137.5049999999112,-0.06860394276130449 +27502,137.5099999999112,-0.06860394301942191 +27503,137.5149999999112,-0.06860394327763848 +27504,137.5199999999112,-0.06860394353595418 +27505,137.5249999999112,-0.06860394379436899 +27506,137.52999999991118,-0.06860394405288282 +27507,137.53499999991118,-0.06860394431149563 +27508,137.53999999991117,-0.06860394457020741 +27509,137.54499999991117,-0.06860394482901806 +27510,137.54999999991117,-0.06860394508792755 +27511,137.55499999991116,-0.06860394534693585 +27512,137.55999999991116,-0.06860394560604291 +27513,137.56499999991115,-0.06860394586524868 +27514,137.56999999991115,-0.06860394612455309 +27515,137.57499999991114,-0.06860394638395613 +27516,137.57999999991114,-0.06860394664345772 +27517,137.58499999991113,-0.06860394690305784 +27518,137.58999999991113,-0.06860394716275642 +27519,137.59499999991112,-0.06860394742255342 +27520,137.59999999991112,-0.0686039476824488 +27521,137.60499999991112,-0.06860394794244251 +27522,137.6099999999111,-0.06860394820253451 +27523,137.6149999999111,-0.06860394846272475 +27524,137.6199999999111,-0.06860394872301316 +27525,137.6249999999111,-0.06860394898339973 +27526,137.6299999999111,-0.06860394924388438 +27527,137.6349999999111,-0.06860394950446709 +27528,137.63999999991108,-0.0686039497651478 +27529,137.64499999991108,-0.06860395002592647 +27530,137.64999999991107,-0.06860395028680304 +27531,137.65499999991107,-0.06860395054777747 +27532,137.65999999991107,-0.06860395080884972 +27533,137.66499999991106,-0.06860395107001974 +27534,137.66999999991106,-0.06860395133128747 +27535,137.67499999991105,-0.06860395159265288 +27536,137.67999999991105,-0.06860395185411593 +27537,137.68499999991104,-0.06860395211567653 +27538,137.68999999991104,-0.06860395237733467 +27539,137.69499999991103,-0.06860395263909032 +27540,137.69999999991103,-0.0686039529009434 +27541,137.70499999991102,-0.06860395316289387 +27542,137.70999999991102,-0.06860395342494169 +27543,137.71499999991102,-0.06860395368708681 +27544,137.719999999911,-0.0686039539493292 +27545,137.724999999911,-0.06860395421166877 +27546,137.729999999911,-0.06860395447410553 +27547,137.734999999911,-0.06860395473663938 +27548,137.739999999911,-0.0686039549992703 +27549,137.744999999911,-0.06860395526199825 +27550,137.74999999991098,-0.06860395552482318 +27551,137.75499999991098,-0.06860395578774503 +27552,137.75999999991097,-0.06860395605076376 +27553,137.76499999991097,-0.06860395631387932 +27554,137.76999999991097,-0.06860395657709169 +27555,137.77499999991096,-0.06860395684040078 +27556,137.77999999991096,-0.06860395710380658 +27557,137.78499999991095,-0.06860395736730902 +27558,137.78999999991095,-0.06860395763090807 +27559,137.79499999991094,-0.06860395789460368 +27560,137.79999999991094,-0.0686039581583958 +27561,137.80499999991093,-0.06860395842228438 +27562,137.80999999991093,-0.06860395868626938 +27563,137.81499999991092,-0.06860395895035076 +27564,137.81999999991092,-0.06860395921452846 +27565,137.82499999991091,-0.06860395947880243 +27566,137.8299999999109,-0.06860395974317265 +27567,137.8349999999109,-0.06860396000763906 +27568,137.8399999999109,-0.0686039602722016 +27569,137.8449999999109,-0.06860396053686024 +27570,137.8499999999109,-0.06860396080161493 +27571,137.8549999999109,-0.06860396106646562 +27572,137.85999999991088,-0.06860396133141226 +27573,137.86499999991088,-0.06860396159645482 +27574,137.86999999991087,-0.06860396186159323 +27575,137.87499999991087,-0.06860396212682747 +27576,137.87999999991086,-0.06860396239215748 +27577,137.88499999991086,-0.06860396265758321 +27578,137.88999999991086,-0.06860396292310462 +27579,137.89499999991085,-0.06860396318872167 +27580,137.89999999991085,-0.0686039634544343 +27581,137.90499999991084,-0.06860396372024248 +27582,137.90999999991084,-0.06860396398614614 +27583,137.91499999991083,-0.06860396425214527 +27584,137.91999999991083,-0.06860396451823979 +27585,137.92499999991082,-0.06860396478442968 +27586,137.92999999991082,-0.06860396505071488 +27587,137.93499999991081,-0.06860396531709534 +27588,137.9399999999108,-0.06860396558357103 +27589,137.9449999999108,-0.06860396585014188 +27590,137.9499999999108,-0.06860396611680786 +27591,137.9549999999108,-0.06860396638356892 +27592,137.9599999999108,-0.06860396665042502 +27593,137.9649999999108,-0.06860396691737611 +27594,137.96999999991078,-0.06860396718442216 +27595,137.97499999991078,-0.0686039674515631 +27596,137.97999999991077,-0.06860396771879888 +27597,137.98499999991077,-0.06860396798612949 +27598,137.98999999991076,-0.06860396825355486 +27599,137.99499999991076,-0.06860396852107493 +27600,137.99999999991076,-0.06860396878868968 +27601,138.00499999991075,-0.06860396905639907 +27602,138.00999999991075,-0.06860396932420303 +27603,138.01499999991074,-0.06860396959210151 +27604,138.01999999991074,-0.06860396986009448 +27605,138.02499999991073,-0.0686039701281819 +27606,138.02999999991073,-0.06860397039636372 +27607,138.03499999991072,-0.06860397066463989 +27608,138.03999999991072,-0.06860397093301036 +27609,138.04499999991071,-0.06860397120147509 +27610,138.0499999999107,-0.06860397147003404 +27611,138.0549999999107,-0.06860397173868715 +27612,138.0599999999107,-0.0686039720074344 +27613,138.0649999999107,-0.06860397227627571 +27614,138.0699999999107,-0.06860397254521107 +27615,138.0749999999107,-0.06860397281424041 +27616,138.07999999991068,-0.06860397308336369 +27617,138.08499999991068,-0.06860397335258087 +27618,138.08999999991067,-0.0686039736218919 +27619,138.09499999991067,-0.06860397389129673 +27620,138.09999999991066,-0.06860397416079532 +27621,138.10499999991066,-0.06860397443038763 +27622,138.10999999991066,-0.0686039747000736 +27623,138.11499999991065,-0.0686039749698532 +27624,138.11999999991065,-0.06860397523972639 +27625,138.12499999991064,-0.06860397550969309 +27626,138.12999999991064,-0.06860397577975329 +27627,138.13499999991063,-0.06860397604990694 +27628,138.13999999991063,-0.06860397632015398 +27629,138.14499999991062,-0.06860397659049437 +27630,138.14999999991062,-0.06860397686092808 +27631,138.15499999991061,-0.06860397713145502 +27632,138.1599999999106,-0.0686039774020752 +27633,138.1649999999106,-0.06860397767278854 +27634,138.1699999999106,-0.06860397794359503 +27635,138.1749999999106,-0.06860397821449458 +27636,138.1799999999106,-0.06860397848548717 +27637,138.1849999999106,-0.06860397875657276 +27638,138.18999999991058,-0.0686039790277513 +27639,138.19499999991058,-0.06860397929902273 +27640,138.19999999991057,-0.06860397957038701 +27641,138.20499999991057,-0.0686039798418441 +27642,138.20999999991056,-0.06860398011339397 +27643,138.21499999991056,-0.06860398038503655 +27644,138.21999999991056,-0.06860398065677181 +27645,138.22499999991055,-0.06860398092859969 +27646,138.22999999991055,-0.06860398120052016 +27647,138.23499999991054,-0.06860398147253317 +27648,138.23999999991054,-0.06860398174463869 +27649,138.24499999991053,-0.06860398201683665 +27650,138.24999999991053,-0.06860398228912702 +27651,138.25499999991052,-0.06860398256150974 +27652,138.25999999991052,-0.06860398283398479 +27653,138.26499999991051,-0.06860398310655211 +27654,138.2699999999105,-0.06860398337921164 +27655,138.2749999999105,-0.06860398365196337 +27656,138.2799999999105,-0.06860398392480722 +27657,138.2849999999105,-0.06860398419774318 +27658,138.2899999999105,-0.06860398447077116 +27659,138.2949999999105,-0.06860398474389116 +27660,138.29999999991048,-0.06860398501710312 +27661,138.30499999991048,-0.06860398529040698 +27662,138.30999999991047,-0.06860398556380272 +27663,138.31499999991047,-0.06860398583729028 +27664,138.31999999991046,-0.06860398611086961 +27665,138.32499999991046,-0.0686039863845407 +27666,138.32999999991046,-0.06860398665830346 +27667,138.33499999991045,-0.06860398693215786 +27668,138.33999999991045,-0.06860398720610385 +27669,138.34499999991044,-0.06860398748014142 +27670,138.34999999991044,-0.06860398775427048 +27671,138.35499999991043,-0.06860398802849102 +27672,138.35999999991043,-0.06860398830280298 +27673,138.36499999991042,-0.06860398857720632 +27674,138.36999999991042,-0.06860398885170098 +27675,138.37499999991041,-0.06860398912628693 +27676,138.3799999999104,-0.06860398940096413 +27677,138.3849999999104,-0.06860398967573252 +27678,138.3899999999104,-0.06860398995059207 +27679,138.3949999999104,-0.06860399022554273 +27680,138.3999999999104,-0.06860399050058447 +27681,138.4049999999104,-0.0686039907757172 +27682,138.40999999991038,-0.06860399105094094 +27683,138.41499999991038,-0.06860399132625558 +27684,138.41999999991037,-0.06860399160166113 +27685,138.42499999991037,-0.06860399187715752 +27686,138.42999999991036,-0.0686039921527447 +27687,138.43499999991036,-0.06860399242842263 +27688,138.43999999991036,-0.06860399270419129 +27689,138.44499999991035,-0.0686039929800506 +27690,138.44999999991035,-0.06860399325600053 +27691,138.45499999991034,-0.06860399353204104 +27692,138.45999999991034,-0.06860399380817207 +27693,138.46499999991033,-0.06860399408439362 +27694,138.46999999991033,-0.0686039943607056 +27695,138.47499999991032,-0.06860399463710798 +27696,138.47999999991032,-0.06860399491360071 +27697,138.48499999991031,-0.06860399519018377 +27698,138.4899999999103,-0.06860399546685708 +27699,138.4949999999103,-0.06860399574362062 +27700,138.4999999999103,-0.06860399602047434 +27701,138.5049999999103,-0.06860399629741819 +27702,138.5099999999103,-0.06860399657445214 +27703,138.5149999999103,-0.06860399685157613 +27704,138.51999999991028,-0.06860399712879013 +27705,138.52499999991028,-0.06860399740609409 +27706,138.52999999991027,-0.06860399768348795 +27707,138.53499999991027,-0.06860399796097168 +27708,138.53999999991026,-0.06860399823854525 +27709,138.54499999991026,-0.06860399851620859 +27710,138.54999999991026,-0.06860399879396169 +27711,138.55499999991025,-0.06860399907180445 +27712,138.55999999991025,-0.06860399934973688 +27713,138.56499999991024,-0.06860399962775893 +27714,138.56999999991024,-0.06860399990587053 +27715,138.57499999991023,-0.06860400018407165 +27716,138.57999999991023,-0.06860400046236224 +27717,138.58499999991022,-0.06860400074074227 +27718,138.58999999991022,-0.06860400101921169 +27719,138.59499999991021,-0.06860400129777044 +27720,138.5999999999102,-0.0686040015764185 +27721,138.6049999999102,-0.0686040018551558 +27722,138.6099999999102,-0.06860400213398232 +27723,138.6149999999102,-0.06860400241289802 +27724,138.6199999999102,-0.06860400269190282 +27725,138.6249999999102,-0.06860400297099672 +27726,138.62999999991018,-0.06860400325017965 +27727,138.63499999991018,-0.06860400352945156 +27728,138.63999999991017,-0.06860400380881244 +27729,138.64499999991017,-0.06860400408826221 +27730,138.64999999991016,-0.06860400436780086 +27731,138.65499999991016,-0.06860400464742832 +27732,138.65999999991016,-0.06860400492714455 +27733,138.66499999991015,-0.06860400520694951 +27734,138.66999999991015,-0.06860400548684316 +27735,138.67499999991014,-0.06860400576682546 +27736,138.67999999991014,-0.06860400604689634 +27737,138.68499999991013,-0.06860400632705578 +27738,138.68999999991013,-0.06860400660730374 +27739,138.69499999991012,-0.06860400688764018 +27740,138.69999999991012,-0.06860400716806504 +27741,138.70499999991011,-0.06860400744857828 +27742,138.7099999999101,-0.06860400772917985 +27743,138.7149999999101,-0.06860400800986974 +27744,138.7199999999101,-0.06860400829064786 +27745,138.7249999999101,-0.06860400857151419 +27746,138.7299999999101,-0.06860400885246869 +27747,138.7349999999101,-0.06860400913351129 +27748,138.73999999991008,-0.068604009414642 +27749,138.74499999991008,-0.06860400969586072 +27750,138.74999999991007,-0.06860400997716744 +27751,138.75499999991007,-0.0686040102585621 +27752,138.75999999991006,-0.06860401054004467 +27753,138.76499999991006,-0.0686040108216151 +27754,138.76999999991006,-0.06860401110327335 +27755,138.77499999991005,-0.06860401138501938 +27756,138.77999999991005,-0.06860401166685312 +27757,138.78499999991004,-0.06860401194877457 +27758,138.78999999991004,-0.06860401223078365 +27759,138.79499999991003,-0.06860401251288034 +27760,138.79999999991003,-0.06860401279506459 +27761,138.80499999991002,-0.06860401307733635 +27762,138.80999999991002,-0.06860401335969557 +27763,138.81499999991001,-0.06860401364214223 +27764,138.81999999991,-0.06860401392467629 +27765,138.82499999991,-0.06860401420729767 +27766,138.82999999991,-0.06860401449000635 +27767,138.83499999991,-0.06860401477280229 +27768,138.83999999991,-0.06860401505568543 +27769,138.84499999991,-0.06860401533865576 +27770,138.84999999990998,-0.0686040156217132 +27771,138.85499999990998,-0.06860401590485773 +27772,138.85999999990997,-0.06860401618808931 +27773,138.86499999990997,-0.06860401647140787 +27774,138.86999999990996,-0.06860401675481338 +27775,138.87499999990996,-0.06860401703830582 +27776,138.87999999990996,-0.0686040173218851 +27777,138.88499999990995,-0.06860401760555124 +27778,138.88999999990995,-0.06860401788930413 +27779,138.89499999990994,-0.06860401817314377 +27780,138.89999999990994,-0.0686040184570701 +27781,138.90499999990993,-0.06860401874108311 +27782,138.90999999990993,-0.0686040190251827 +27783,138.91499999990992,-0.06860401930936888 +27784,138.91999999990992,-0.06860401959364157 +27785,138.92499999990991,-0.06860401987800074 +27786,138.9299999999099,-0.06860402016244635 +27787,138.9349999999099,-0.06860402044697836 +27788,138.9399999999099,-0.06860402073159672 +27789,138.9449999999099,-0.06860402101630139 +27790,138.9499999999099,-0.06860402130109233 +27791,138.9549999999099,-0.0686040215859695 +27792,138.95999999990988,-0.06860402187093284 +27793,138.96499999990988,-0.06860402215598232 +27794,138.96999999990987,-0.06860402244111789 +27795,138.97499999990987,-0.06860402272633952 +27796,138.97999999990986,-0.06860402301164716 +27797,138.98499999990986,-0.06860402329704077 +27798,138.98999999990986,-0.0686040235825203 +27799,138.99499999990985,-0.06860402386808571 +27800,138.99999999990985,-0.06860402415373697 +27801,139.00499999990984,-0.06860402443947403 +27802,139.00999999990984,-0.06860402472529684 +27803,139.01499999990983,-0.06860402501120537 +27804,139.01999999990983,-0.06860402529719956 +27805,139.02499999990982,-0.06860402558327937 +27806,139.02999999990982,-0.06860402586944477 +27807,139.03499999990981,-0.0686040261556957 +27808,139.0399999999098,-0.06860402644203215 +27809,139.0449999999098,-0.06860402672845405 +27810,139.0499999999098,-0.06860402701496136 +27811,139.0549999999098,-0.06860402730155404 +27812,139.0599999999098,-0.06860402758823206 +27813,139.0649999999098,-0.06860402787499535 +27814,139.06999999990978,-0.0686040281618439 +27815,139.07499999990978,-0.06860402844877764 +27816,139.07999999990977,-0.06860402873579655 +27817,139.08499999990977,-0.06860402902290058 +27818,139.08999999990976,-0.06860402931008967 +27819,139.09499999990976,-0.06860402959736381 +27820,139.09999999990976,-0.06860402988472292 +27821,139.10499999990975,-0.06860403017216699 +27822,139.10999999990975,-0.06860403045969596 +27823,139.11499999990974,-0.0686040307473098 +27824,139.11999999990974,-0.06860403103500845 +27825,139.12499999990973,-0.06860403132279189 +27826,139.12999999990973,-0.06860403161066006 +27827,139.13499999990972,-0.06860403189861292 +27828,139.13999999990972,-0.06860403218665043 +27829,139.14499999990971,-0.06860403247477255 +27830,139.1499999999097,-0.06860403276297924 +27831,139.1549999999097,-0.06860403305127047 +27832,139.1599999999097,-0.06860403333964617 +27833,139.1649999999097,-0.06860403362810631 +27834,139.1699999999097,-0.06860403391665085 +27835,139.1749999999097,-0.06860403420527975 +27836,139.17999999990968,-0.06860403449399295 +27837,139.18499999990968,-0.06860403478279044 +27838,139.18999999990967,-0.06860403507167215 +27839,139.19499999990967,-0.06860403536063804 +27840,139.19999999990966,-0.06860403564968807 +27841,139.20499999990966,-0.06860403593882222 +27842,139.20999999990966,-0.06860403622804043 +27843,139.21499999990965,-0.06860403651734265 +27844,139.21999999990965,-0.06860403680672886 +27845,139.22499999990964,-0.068604037096199 +27846,139.22999999990964,-0.06860403738575303 +27847,139.23499999990963,-0.06860403767539092 +27848,139.23999999990963,-0.06860403796511261 +27849,139.24499999990962,-0.06860403825491806 +27850,139.24999999990962,-0.06860403854480726 +27851,139.25499999990961,-0.06860403883478013 +27852,139.2599999999096,-0.06860403912483663 +27853,139.2649999999096,-0.06860403941497674 +27854,139.2699999999096,-0.0686040397052004 +27855,139.2749999999096,-0.0686040399955076 +27856,139.2799999999096,-0.06860404028589825 +27857,139.2849999999096,-0.06860404057637234 +27858,139.28999999990958,-0.06860404086692982 +27859,139.29499999990958,-0.06860404115757066 +27860,139.29999999990957,-0.0686040414482948 +27861,139.30499999990957,-0.0686040417391022 +27862,139.30999999990956,-0.06860404202999283 +27863,139.31499999990956,-0.06860404232096665 +27864,139.31999999990956,-0.06860404261202359 +27865,139.32499999990955,-0.06860404290316365 +27866,139.32999999990955,-0.06860404319438675 +27867,139.33499999990954,-0.06860404348569286 +27868,139.33999999990954,-0.06860404377708197 +27869,139.34499999990953,-0.06860404406855398 +27870,139.34999999990953,-0.0686040443601089 +27871,139.35499999990952,-0.06860404465174666 +27872,139.35999999990952,-0.06860404494346724 +27873,139.36499999990951,-0.06860404523527058 +27874,139.3699999999095,-0.06860404552715664 +27875,139.3749999999095,-0.0686040458191254 +27876,139.3799999999095,-0.06860404611117678 +27877,139.3849999999095,-0.06860404640331076 +27878,139.3899999999095,-0.0686040466955273 +27879,139.3949999999095,-0.06860404698782636 +27880,139.39999999990948,-0.0686040472802079 +27881,139.40499999990948,-0.06860404757267186 +27882,139.40999999990947,-0.06860404786521822 +27883,139.41499999990947,-0.06860404815784693 +27884,139.41999999990946,-0.06860404845055794 +27885,139.42499999990946,-0.06860404874335123 +27886,139.42999999990946,-0.06860404903622674 +27887,139.43499999990945,-0.06860404932918443 +27888,139.43999999990945,-0.06860404962222427 +27889,139.44499999990944,-0.06860404991534622 +27890,139.44999999990944,-0.0686040502085502 +27891,139.45499999990943,-0.06860405050183623 +27892,139.45999999990943,-0.06860405079520422 +27893,139.46499999990942,-0.06860405108865415 +27894,139.46999999990942,-0.06860405138218598 +27895,139.47499999990941,-0.06860405167579965 +27896,139.4799999999094,-0.06860405196949515 +27897,139.4849999999094,-0.0686040522632724 +27898,139.4899999999094,-0.0686040525571314 +27899,139.4949999999094,-0.06860405285107209 +27900,139.4999999999094,-0.0686040531450944 +27901,139.5049999999094,-0.06860405343919836 +27902,139.50999999990938,-0.06860405373338385 +27903,139.51499999990938,-0.06860405402765088 +27904,139.51999999990937,-0.06860405432199938 +27905,139.52499999990937,-0.06860405461642934 +27906,139.52999999990936,-0.0686040549109407 +27907,139.53499999990936,-0.0686040552055334 +27908,139.53999999990936,-0.06860405550020744 +27909,139.54499999990935,-0.06860405579496275 +27910,139.54999999990935,-0.06860405608979929 +27911,139.55499999990934,-0.06860405638471703 +27912,139.55999999990934,-0.06860405667971592 +27913,139.56499999990933,-0.06860405697479594 +27914,139.56999999990933,-0.06860405726995703 +27915,139.57499999990932,-0.06860405756519915 +27916,139.57999999990932,-0.06860405786052225 +27917,139.58499999990931,-0.0686040581559263 +27918,139.5899999999093,-0.06860405845141125 +27919,139.5949999999093,-0.06860405874697707 +27920,139.5999999999093,-0.06860405904262373 +27921,139.6049999999093,-0.06860405933835118 +27922,139.6099999999093,-0.06860405963415936 +27923,139.6149999999093,-0.06860405993004824 +27924,139.61999999990928,-0.0686040602260178 +27925,139.62499999990928,-0.06860406052206797 +27926,139.62999999990927,-0.06860406081819873 +27927,139.63499999990927,-0.06860406111441002 +27928,139.63999999990926,-0.06860406141070181 +27929,139.64499999990926,-0.06860406170707407 +27930,139.64999999990926,-0.06860406200352674 +27931,139.65499999990925,-0.06860406230005978 +27932,139.65999999990925,-0.06860406259667316 +27933,139.66499999990924,-0.06860406289336685 +27934,139.66999999990924,-0.06860406319014078 +27935,139.67499999990923,-0.06860406348699494 +27936,139.67999999990923,-0.06860406378392926 +27937,139.68499999990922,-0.06860406408094372 +27938,139.68999999990922,-0.06860406437803826 +27939,139.69499999990921,-0.06860406467521286 +27940,139.6999999999092,-0.06860406497246749 +27941,139.7049999999092,-0.06860406526980206 +27942,139.7099999999092,-0.06860406556721658 +27943,139.7149999999092,-0.06860406586471098 +27944,139.7199999999092,-0.06860406616228522 +27945,139.7249999999092,-0.06860406645993927 +27946,139.72999999990918,-0.06860406675767311 +27947,139.73499999990918,-0.06860406705548666 +27948,139.73999999990917,-0.0686040673533799 +27949,139.74499999990917,-0.0686040676513528 +27950,139.74999999990916,-0.06860406794940528 +27951,139.75499999990916,-0.06860406824753733 +27952,139.75999999990916,-0.06860406854574891 +27953,139.76499999990915,-0.06860406884403997 +27954,139.76999999990915,-0.06860406914241048 +27955,139.77499999990914,-0.0686040694408604 +27956,139.77999999990914,-0.06860406973938966 +27957,139.78499999990913,-0.06860407003799826 +27958,139.78999999990913,-0.06860407033668614 +27959,139.79499999990912,-0.06860407063545326 +27960,139.79999999990912,-0.06860407093429957 +27961,139.8049999999091,-0.06860407123322505 +27962,139.8099999999091,-0.06860407153222965 +27963,139.8149999999091,-0.06860407183131334 +27964,139.8199999999091,-0.06860407213047606 +27965,139.8249999999091,-0.06860407242971778 +27966,139.8299999999091,-0.06860407272903846 +27967,139.8349999999091,-0.06860407302843806 +27968,139.83999999990908,-0.06860407332791653 +27969,139.84499999990908,-0.06860407362747384 +27970,139.84999999990907,-0.06860407392710995 +27971,139.85499999990907,-0.06860407422682482 +27972,139.85999999990906,-0.06860407452661842 +27973,139.86499999990906,-0.0686040748264907 +27974,139.86999999990906,-0.06860407512644161 +27975,139.87499999990905,-0.0686040754264711 +27976,139.87999999990905,-0.06860407572657916 +27977,139.88499999990904,-0.06860407602676574 +27978,139.88999999990904,-0.06860407632703079 +27979,139.89499999990903,-0.06860407662737429 +27980,139.89999999990903,-0.06860407692779617 +27981,139.90499999990902,-0.06860407722829642 +27982,139.90999999990902,-0.06860407752887498 +27983,139.914999999909,-0.06860407782953182 +27984,139.919999999909,-0.06860407813026691 +27985,139.924999999909,-0.06860407843108017 +27986,139.929999999909,-0.0686040787319716 +27987,139.934999999909,-0.06860407903294115 +27988,139.939999999909,-0.06860407933398877 +27989,139.944999999909,-0.06860407963511443 +27990,139.94999999990898,-0.06860407993631809 +27991,139.95499999990898,-0.0686040802375997 +27992,139.95999999990897,-0.06860408053895924 +27993,139.96499999990897,-0.06860408084039665 +27994,139.96999999990896,-0.0686040811419119 +27995,139.97499999990896,-0.06860408144350494 +27996,139.97999999990896,-0.06860408174517574 +27997,139.98499999990895,-0.06860408204692425 +27998,139.98999999990895,-0.06860408234875044 +27999,139.99499999990894,-0.06860408265065428 +28000,139.99999999990894,-0.0686040829526357 +28001,140.00499999990893,-0.0686040832546947 +28002,140.00999999990893,-0.06860408355683122 +28003,140.01499999990892,-0.0686040838590452 +28004,140.01999999990892,-0.06860408416133663 +28005,140.0249999999089,-0.06860408446370544 +28006,140.0299999999089,-0.06860408476615164 +28007,140.0349999999089,-0.06860408506867513 +28008,140.0399999999089,-0.06860408537127592 +28009,140.0449999999089,-0.06860408567395394 +28010,140.0499999999089,-0.06860408597670917 +28011,140.0549999999089,-0.06860408627954157 +28012,140.05999999990888,-0.06860408658245108 +28013,140.06499999990888,-0.06860408688543766 +28014,140.06999999990887,-0.06860408718850129 +28015,140.07499999990887,-0.06860408749164193 +28016,140.07999999990886,-0.06860408779485953 +28017,140.08499999990886,-0.06860408809815406 +28018,140.08999999990885,-0.06860408840152547 +28019,140.09499999990885,-0.06860408870497373 +28020,140.09999999990885,-0.06860408900849878 +28021,140.10499999990884,-0.0686040893121006 +28022,140.10999999990884,-0.06860408961577914 +28023,140.11499999990883,-0.06860408991953437 +28024,140.11999999990883,-0.06860409022336626 +28025,140.12499999990882,-0.06860409052727474 +28026,140.12999999990882,-0.06860409083125982 +28027,140.1349999999088,-0.0686040911353214 +28028,140.1399999999088,-0.06860409143945947 +28029,140.1449999999088,-0.06860409174367399 +28030,140.1499999999088,-0.06860409204796493 +28031,140.1549999999088,-0.06860409235233224 +28032,140.1599999999088,-0.06860409265677588 +28033,140.1649999999088,-0.06860409296129581 +28034,140.16999999990878,-0.068604093265892 +28035,140.17499999990878,-0.06860409357056439 +28036,140.17999999990877,-0.06860409387531295 +28037,140.18499999990877,-0.06860409418013767 +28038,140.18999999990876,-0.06860409448503847 +28039,140.19499999990876,-0.06860409479001534 +28040,140.19999999990875,-0.06860409509506822 +28041,140.20499999990875,-0.06860409540019707 +28042,140.20999999990875,-0.06860409570540187 +28043,140.21499999990874,-0.06860409601068256 +28044,140.21999999990874,-0.0686040963160391 +28045,140.22499999990873,-0.06860409662147149 +28046,140.22999999990873,-0.06860409692697964 +28047,140.23499999990872,-0.06860409723256354 +28048,140.23999999990872,-0.06860409753822314 +28049,140.2449999999087,-0.0686040978439584 +28050,140.2499999999087,-0.0686040981497693 +28051,140.2549999999087,-0.06860409845565578 +28052,140.2599999999087,-0.06860409876161781 +28053,140.2649999999087,-0.06860409906765534 +28054,140.2699999999087,-0.06860409937376835 +28055,140.2749999999087,-0.06860409967995679 +28056,140.27999999990868,-0.06860409998622062 +28057,140.28499999990868,-0.0686041002925598 +28058,140.28999999990867,-0.06860410059897429 +28059,140.29499999990867,-0.06860410090546405 +28060,140.29999999990866,-0.06860410121202905 +28061,140.30499999990866,-0.06860410151866925 +28062,140.30999999990865,-0.0686041018253846 +28063,140.31499999990865,-0.06860410213217506 +28064,140.31999999990865,-0.06860410243904061 +28065,140.32499999990864,-0.0686041027459812 +28066,140.32999999990864,-0.06860410305299679 +28067,140.33499999990863,-0.06860410336008735 +28068,140.33999999990863,-0.06860410366725284 +28069,140.34499999990862,-0.06860410397449318 +28070,140.34999999990862,-0.0686041042818084 +28071,140.3549999999086,-0.0686041045891984 +28072,140.3599999999086,-0.06860410489666319 +28073,140.3649999999086,-0.0686041052042027 +28074,140.3699999999086,-0.06860410551181689 +28075,140.3749999999086,-0.06860410581950577 +28076,140.3799999999086,-0.06860410612726923 +28077,140.3849999999086,-0.06860410643510728 +28078,140.38999999990858,-0.06860410674301987 +28079,140.39499999990858,-0.06860410705100695 +28080,140.39999999990857,-0.06860410735906848 +28081,140.40499999990857,-0.06860410766720443 +28082,140.40999999990856,-0.06860410797541476 +28083,140.41499999990856,-0.06860410828369945 +28084,140.41999999990855,-0.06860410859205843 +28085,140.42499999990855,-0.06860410890049166 +28086,140.42999999990855,-0.06860410920899913 +28087,140.43499999990854,-0.0686041095175808 +28088,140.43999999990854,-0.06860410982623662 +28089,140.44499999990853,-0.06860411013496653 +28090,140.44999999990853,-0.06860411044377053 +28091,140.45499999990852,-0.06860411075264855 +28092,140.45999999990852,-0.06860411106160057 +28093,140.4649999999085,-0.06860411137062654 +28094,140.4699999999085,-0.06860411167972644 +28095,140.4749999999085,-0.06860411198890021 +28096,140.4799999999085,-0.0686041122981478 +28097,140.4849999999085,-0.06860411260746922 +28098,140.4899999999085,-0.0686041129168644 +28099,140.4949999999085,-0.0686041132263333 +28100,140.49999999990848,-0.06860411353587588 +28101,140.50499999990848,-0.06860411384549213 +28102,140.50999999990847,-0.06860411415518197 +28103,140.51499999990847,-0.0686041144649454 +28104,140.51999999990846,-0.06860411477478234 +28105,140.52499999990846,-0.0686041150846928 +28106,140.52999999990845,-0.0686041153946767 +28107,140.53499999990845,-0.06860411570473401 +28108,140.53999999990845,-0.06860411601486471 +28109,140.54499999990844,-0.06860411632506876 +28110,140.54999999990844,-0.0686041166353461 +28111,140.55499999990843,-0.06860411694569672 +28112,140.55999999990843,-0.06860411725612056 +28113,140.56499999990842,-0.06860411756661759 +28114,140.56999999990842,-0.06860411787718776 +28115,140.5749999999084,-0.06860411818783105 +28116,140.5799999999084,-0.0686041184985474 +28117,140.5849999999084,-0.06860411880933681 +28118,140.5899999999084,-0.0686041191201992 +28119,140.5949999999084,-0.06860411943113455 +28120,140.5999999999084,-0.06860411974214282 +28121,140.6049999999084,-0.06860412005322399 +28122,140.60999999990838,-0.06860412036437798 +28123,140.61499999990838,-0.06860412067560478 +28124,140.61999999990837,-0.06860412098690437 +28125,140.62499999990837,-0.06860412129827667 +28126,140.62999999990836,-0.06860412160972167 +28127,140.63499999990836,-0.06860412192123931 +28128,140.63999999990835,-0.06860412223282958 +28129,140.64499999990835,-0.06860412254449243 +28130,140.64999999990835,-0.0686041228562278 +28131,140.65499999990834,-0.06860412316803569 +28132,140.65999999990834,-0.06860412347991603 +28133,140.66499999990833,-0.0686041237918688 +28134,140.66999999990833,-0.06860412410389397 +28135,140.67499999990832,-0.06860412441599148 +28136,140.67999999990832,-0.0686041247281613 +28137,140.6849999999083,-0.06860412504040339 +28138,140.6899999999083,-0.06860412535271772 +28139,140.6949999999083,-0.06860412566510425 +28140,140.6999999999083,-0.06860412597756295 +28141,140.7049999999083,-0.06860412629009376 +28142,140.7099999999083,-0.06860412660269666 +28143,140.7149999999083,-0.0686041269153716 +28144,140.71999999990828,-0.06860412722811854 +28145,140.72499999990828,-0.06860412754093748 +28146,140.72999999990827,-0.06860412785382831 +28147,140.73499999990827,-0.06860412816679107 +28148,140.73999999990826,-0.06860412847982568 +28149,140.74499999990826,-0.06860412879293211 +28150,140.74999999990825,-0.06860412910611031 +28151,140.75499999990825,-0.06860412941936027 +28152,140.75999999990825,-0.06860412973268191 +28153,140.76499999990824,-0.06860413004607524 +28154,140.76999999990824,-0.06860413035954019 +28155,140.77499999990823,-0.06860413067307675 +28156,140.77999999990823,-0.06860413098668484 +28157,140.78499999990822,-0.06860413130036445 +28158,140.78999999990822,-0.06860413161411556 +28159,140.7949999999082,-0.0686041319279381 +28160,140.7999999999082,-0.06860413224183205 +28161,140.8049999999082,-0.06860413255579736 +28162,140.8099999999082,-0.06860413286983401 +28163,140.8149999999082,-0.06860413318394194 +28164,140.8199999999082,-0.06860413349812113 +28165,140.8249999999082,-0.06860413381237153 +28166,140.82999999990818,-0.06860413412669311 +28167,140.83499999990818,-0.06860413444108583 +28168,140.83999999990817,-0.06860413475554966 +28169,140.84499999990817,-0.06860413507008456 +28170,140.84999999990816,-0.06860413538469048 +28171,140.85499999990816,-0.0686041356993674 +28172,140.85999999990815,-0.06860413601411526 +28173,140.86499999990815,-0.06860413632893403 +28174,140.86999999990815,-0.0686041366438237 +28175,140.87499999990814,-0.0686041369587842 +28176,140.87999999990814,-0.0686041372738155 +28177,140.88499999990813,-0.06860413758891756 +28178,140.88999999990813,-0.06860413790409037 +28179,140.89499999990812,-0.06860413821933387 +28180,140.89999999990812,-0.06860413853464802 +28181,140.9049999999081,-0.06860413885003279 +28182,140.9099999999081,-0.06860413916548812 +28183,140.9149999999081,-0.068604139481014 +28184,140.9199999999081,-0.0686041397966104 +28185,140.9249999999081,-0.06860414011227725 +28186,140.9299999999081,-0.06860414042801455 +28187,140.9349999999081,-0.06860414074382223 +28188,140.93999999990808,-0.06860414105970027 +28189,140.94499999990808,-0.06860414137564863 +28190,140.94999999990807,-0.06860414169166726 +28191,140.95499999990807,-0.06860414200775614 +28192,140.95999999990806,-0.06860414232391523 +28193,140.96499999990806,-0.06860414264014449 +28194,140.96999999990805,-0.06860414295644388 +28195,140.97499999990805,-0.06860414327281336 +28196,140.97999999990805,-0.0686041435892529 +28197,140.98499999990804,-0.06860414390576246 +28198,140.98999999990804,-0.068604144222342 +28199,140.99499999990803,-0.0686041445389915 +28200,140.99999999990803,-0.06860414485571088 +28201,141.00499999990802,-0.06860414517250016 +28202,141.00999999990802,-0.06860414548935925 +28203,141.014999999908,-0.06860414580628817 +28204,141.019999999908,-0.06860414612328683 +28205,141.024999999908,-0.06860414644035522 +28206,141.029999999908,-0.06860414675749328 +28207,141.034999999908,-0.068604147074701 +28208,141.039999999908,-0.06860414739197834 +28209,141.044999999908,-0.06860414770932526 +28210,141.04999999990798,-0.06860414802674171 +28211,141.05499999990798,-0.06860414834422766 +28212,141.05999999990797,-0.06860414866178309 +28213,141.06499999990797,-0.06860414897940792 +28214,141.06999999990796,-0.06860414929710215 +28215,141.07499999990796,-0.06860414961486574 +28216,141.07999999990795,-0.06860414993269866 +28217,141.08499999990795,-0.06860415025060085 +28218,141.08999999990795,-0.06860415056857228 +28219,141.09499999990794,-0.06860415088661291 +28220,141.09999999990794,-0.06860415120472273 +28221,141.10499999990793,-0.06860415152290165 +28222,141.10999999990793,-0.0686041518411497 +28223,141.11499999990792,-0.06860415215946677 +28224,141.11999999990792,-0.0686041524778529 +28225,141.1249999999079,-0.068604152796308 +28226,141.1299999999079,-0.06860415311483203 +28227,141.1349999999079,-0.068604153433425 +28228,141.1399999999079,-0.06860415375208684 +28229,141.1449999999079,-0.0686041540708175 +28230,141.1499999999079,-0.06860415438961698 +28231,141.1549999999079,-0.06860415470848522 +28232,141.15999999990788,-0.06860415502742218 +28233,141.16499999990788,-0.06860415534642783 +28234,141.16999999990787,-0.06860415566550215 +28235,141.17499999990787,-0.06860415598464507 +28236,141.17999999990786,-0.06860415630385659 +28237,141.18499999990786,-0.06860415662313665 +28238,141.18999999990785,-0.0686041569424852 +28239,141.19499999990785,-0.06860415726190225 +28240,141.19999999990785,-0.06860415758138771 +28241,141.20499999990784,-0.06860415790094157 +28242,141.20999999990784,-0.0686041582205638 +28243,141.21499999990783,-0.06860415854025437 +28244,141.21999999990783,-0.0686041588600132 +28245,141.22499999990782,-0.0686041591798403 +28246,141.22999999990782,-0.0686041594997356 +28247,141.2349999999078,-0.0686041598196991 +28248,141.2399999999078,-0.06860416013973072 +28249,141.2449999999078,-0.06860416045983045 +28250,141.2499999999078,-0.06860416077999826 +28251,141.2549999999078,-0.0686041611002341 +28252,141.2599999999078,-0.06860416142053792 +28253,141.2649999999078,-0.06860416174090972 +28254,141.26999999990778,-0.06860416206134944 +28255,141.27499999990778,-0.06860416238185703 +28256,141.27999999990777,-0.06860416270243248 +28257,141.28499999990777,-0.06860416302307575 +28258,141.28999999990776,-0.06860416334378679 +28259,141.29499999990776,-0.06860416366456557 +28260,141.29999999990775,-0.06860416398541205 +28261,141.30499999990775,-0.06860416430632621 +28262,141.30999999990775,-0.068604164627308 +28263,141.31499999990774,-0.0686041649483574 +28264,141.31999999990774,-0.06860416526947434 +28265,141.32499999990773,-0.06860416559065881 +28266,141.32999999990773,-0.06860416591191076 +28267,141.33499999990772,-0.06860416623323018 +28268,141.33999999990772,-0.068604166554617 +28269,141.3449999999077,-0.06860416687607121 +28270,141.3499999999077,-0.06860416719759274 +28271,141.3549999999077,-0.06860416751918161 +28272,141.3599999999077,-0.06860416784083771 +28273,141.3649999999077,-0.06860416816256107 +28274,141.3699999999077,-0.06860416848435162 +28275,141.3749999999077,-0.06860416880620933 +28276,141.37999999990768,-0.06860416912813418 +28277,141.38499999990768,-0.0686041694501261 +28278,141.38999999990767,-0.06860416977218507 +28279,141.39499999990767,-0.06860417009431108 +28280,141.39999999990766,-0.06860417041650405 +28281,141.40499999990766,-0.06860417073876397 +28282,141.40999999990765,-0.06860417106109079 +28283,141.41499999990765,-0.0686041713834845 +28284,141.41999999990765,-0.06860417170594503 +28285,141.42499999990764,-0.06860417202847238 +28286,141.42999999990764,-0.06860417235106649 +28287,141.43499999990763,-0.0686041726737273 +28288,141.43999999990763,-0.06860417299645483 +28289,141.44499999990762,-0.068604173319249 +28290,141.44999999990762,-0.0686041736421098 +28291,141.4549999999076,-0.06860417396503718 +28292,141.4599999999076,-0.0686041742880311 +28293,141.4649999999076,-0.06860417461109156 +28294,141.4699999999076,-0.06860417493421847 +28295,141.4749999999076,-0.06860417525741183 +28296,141.4799999999076,-0.0686041755806716 +28297,141.4849999999076,-0.06860417590399773 +28298,141.48999999990758,-0.06860417622739019 +28299,141.49499999990758,-0.06860417655084897 +28300,141.49999999990757,-0.06860417687437399 +28301,141.50499999990757,-0.06860417719796524 +28302,141.50999999990756,-0.06860417752162268 +28303,141.51499999990756,-0.06860417784534627 +28304,141.51999999990755,-0.06860417816913598 +28305,141.52499999990755,-0.06860417849299176 +28306,141.52999999990755,-0.06860417881691361 +28307,141.53499999990754,-0.06860417914090146 +28308,141.53999999990754,-0.06860417946495528 +28309,141.54499999990753,-0.06860417978907503 +28310,141.54999999990753,-0.0686041801132607 +28311,141.55499999990752,-0.06860418043751222 +28312,141.55999999990752,-0.0686041807618296 +28313,141.5649999999075,-0.06860418108621276 +28314,141.5699999999075,-0.06860418141066169 +28315,141.5749999999075,-0.06860418173517632 +28316,141.5799999999075,-0.06860418205975666 +28317,141.5849999999075,-0.06860418238440265 +28318,141.5899999999075,-0.06860418270911425 +28319,141.5949999999075,-0.06860418303389144 +28320,141.59999999990748,-0.06860418335873418 +28321,141.60499999990748,-0.06860418368364242 +28322,141.60999999990747,-0.06860418400861615 +28323,141.61499999990747,-0.0686041843336553 +28324,141.61999999990746,-0.06860418465875986 +28325,141.62499999990746,-0.0686041849839298 +28326,141.62999999990745,-0.06860418530916507 +28327,141.63499999990745,-0.06860418563446562 +28328,141.63999999990745,-0.06860418595983146 +28329,141.64499999990744,-0.06860418628526252 +28330,141.64999999990744,-0.06860418661075876 +28331,141.65499999990743,-0.06860418693632016 +28332,141.65999999990743,-0.06860418726194668 +28333,141.66499999990742,-0.06860418758763828 +28334,141.66999999990742,-0.06860418791339494 +28335,141.6749999999074,-0.06860418823921662 +28336,141.6799999999074,-0.06860418856510325 +28337,141.6849999999074,-0.06860418889105485 +28338,141.6899999999074,-0.06860418921707136 +28339,141.6949999999074,-0.06860418954315273 +28340,141.6999999999074,-0.06860418986929893 +28341,141.7049999999074,-0.06860419019550995 +28342,141.70999999990738,-0.06860419052178572 +28343,141.71499999990738,-0.06860419084812623 +28344,141.71999999990737,-0.06860419117453144 +28345,141.72499999990737,-0.06860419150100129 +28346,141.72999999990736,-0.06860419182753578 +28347,141.73499999990736,-0.06860419215413487 +28348,141.73999999990735,-0.0686041924807985 +28349,141.74499999990735,-0.06860419280752666 +28350,141.74999999990735,-0.0686041931343193 +28351,141.75499999990734,-0.0686041934611764 +28352,141.75999999990734,-0.0686041937880979 +28353,141.76499999990733,-0.06860419411508378 +28354,141.76999999990733,-0.06860419444213402 +28355,141.77499999990732,-0.06860419476924855 +28356,141.77999999990732,-0.06860419509642736 +28357,141.7849999999073,-0.06860419542367041 +28358,141.7899999999073,-0.06860419575097765 +28359,141.7949999999073,-0.06860419607834907 +28360,141.7999999999073,-0.0686041964057846 +28361,141.8049999999073,-0.06860419673328426 +28362,141.8099999999073,-0.06860419706084797 +28363,141.8149999999073,-0.0686041973884757 +28364,141.81999999990728,-0.06860419771616742 +28365,141.82499999990728,-0.0686041980439231 +28366,141.82999999990727,-0.06860419837174271 +28367,141.83499999990727,-0.06860419869962621 +28368,141.83999999990726,-0.06860419902757356 +28369,141.84499999990726,-0.06860419935558473 +28370,141.84999999990725,-0.06860419968365968 +28371,141.85499999990725,-0.06860420001179837 +28372,141.85999999990725,-0.06860420034000077 +28373,141.86499999990724,-0.06860420066826686 +28374,141.86999999990724,-0.06860420099659657 +28375,141.87499999990723,-0.06860420132498991 +28376,141.87999999990723,-0.06860420165344683 +28377,141.88499999990722,-0.06860420198196726 +28378,141.88999999990722,-0.06860420231055121 +28379,141.8949999999072,-0.06860420263919863 +28380,141.8999999999072,-0.06860420296790948 +28381,141.9049999999072,-0.06860420329668372 +28382,141.9099999999072,-0.06860420362552133 +28383,141.9149999999072,-0.06860420395442228 +28384,141.9199999999072,-0.06860420428338651 +28385,141.9249999999072,-0.068604204612414 +28386,141.92999999990718,-0.06860420494150471 +28387,141.93499999990718,-0.06860420527065861 +28388,141.93999999990717,-0.06860420559987566 +28389,141.94499999990717,-0.06860420592915585 +28390,141.94999999990716,-0.06860420625849913 +28391,141.95499999990716,-0.06860420658790543 +28392,141.95999999990715,-0.06860420691737477 +28393,141.96499999990715,-0.06860420724690708 +28394,141.96999999990715,-0.06860420757650233 +28395,141.97499999990714,-0.0686042079061605 +28396,141.97999999990714,-0.06860420823588155 +28397,141.98499999990713,-0.06860420856566543 +28398,141.98999999990713,-0.06860420889551214 +28399,141.99499999990712,-0.0686042092254216 +28400,141.99999999990712,-0.06860420955539381 +28401,142.0049999999071,-0.06860420988542872 +28402,142.0099999999071,-0.06860421021552629 +28403,142.0149999999071,-0.06860421054568651 +28404,142.0199999999071,-0.06860421087590933 +28405,142.0249999999071,-0.06860421120619471 +28406,142.0299999999071,-0.06860421153654263 +28407,142.0349999999071,-0.06860421186695304 +28408,142.03999999990708,-0.0686042121974259 +28409,142.04499999990708,-0.06860421252796121 +28410,142.04999999990707,-0.0686042128585589 +28411,142.05499999990707,-0.06860421318921894 +28412,142.05999999990706,-0.06860421351994131 +28413,142.06499999990706,-0.06860421385072597 +28414,142.06999999990705,-0.06860421418157289 +28415,142.07499999990705,-0.06860421451248203 +28416,142.07999999990705,-0.06860421484345335 +28417,142.08499999990704,-0.06860421517448682 +28418,142.08999999990704,-0.06860421550558242 +28419,142.09499999990703,-0.0686042158367401 +28420,142.09999999990703,-0.06860421616795982 +28421,142.10499999990702,-0.06860421649924156 +28422,142.10999999990702,-0.06860421683058528 +28423,142.114999999907,-0.06860421716199094 +28424,142.119999999907,-0.06860421749345852 +28425,142.124999999907,-0.06860421782498798 +28426,142.129999999907,-0.06860421815657927 +28427,142.134999999907,-0.06860421848823237 +28428,142.139999999907,-0.06860421881994723 +28429,142.144999999907,-0.06860421915172385 +28430,142.14999999990698,-0.06860421948356217 +28431,142.15499999990698,-0.06860421981546218 +28432,142.15999999990697,-0.0686042201474238 +28433,142.16499999990697,-0.06860422047944703 +28434,142.16999999990696,-0.06860422081153185 +28435,142.17499999990696,-0.06860422114367819 +28436,142.17999999990695,-0.06860422147588602 +28437,142.18499999990695,-0.06860422180815533 +28438,142.18999999990695,-0.06860422214048606 +28439,142.19499999990694,-0.06860422247287819 +28440,142.19999999990694,-0.06860422280533168 +28441,142.20499999990693,-0.06860422313784652 +28442,142.20999999990693,-0.06860422347042264 +28443,142.21499999990692,-0.06860422380306003 +28444,142.21999999990692,-0.06860422413575863 +28445,142.2249999999069,-0.06860422446851844 +28446,142.2299999999069,-0.0686042248013394 +28447,142.2349999999069,-0.06860422513422149 +28448,142.2399999999069,-0.06860422546716466 +28449,142.2449999999069,-0.0686042258001689 +28450,142.2499999999069,-0.06860422613323415 +28451,142.2549999999069,-0.0686042264663604 +28452,142.25999999990688,-0.0686042267995476 +28453,142.26499999990688,-0.06860422713279572 +28454,142.26999999990687,-0.06860422746610473 +28455,142.27499999990687,-0.0686042277994746 +28456,142.27999999990686,-0.06860422813290527 +28457,142.28499999990686,-0.06860422846639674 +28458,142.28999999990685,-0.06860422879994897 +28459,142.29499999990685,-0.0686042291335619 +28460,142.29999999990685,-0.06860422946723553 +28461,142.30499999990684,-0.0686042298009698 +28462,142.30999999990684,-0.06860423013476467 +28463,142.31499999990683,-0.06860423046862014 +28464,142.31999999990683,-0.06860423080253616 +28465,142.32499999990682,-0.06860423113651269 +28466,142.32999999990682,-0.06860423147054971 +28467,142.3349999999068,-0.06860423180464716 +28468,142.3399999999068,-0.06860423213880502 +28469,142.3449999999068,-0.06860423247302326 +28470,142.3499999999068,-0.06860423280730185 +28471,142.3549999999068,-0.06860423314164077 +28472,142.3599999999068,-0.06860423347603994 +28473,142.3649999999068,-0.06860423381049936 +28474,142.36999999990678,-0.06860423414501901 +28475,142.37499999990678,-0.06860423447959882 +28476,142.37999999990677,-0.06860423481423876 +28477,142.38499999990677,-0.06860423514893883 +28478,142.38999999990676,-0.06860423548369897 +28479,142.39499999990676,-0.06860423581851915 +28480,142.39999999990675,-0.06860423615339935 +28481,142.40499999990675,-0.0686042364883395 +28482,142.40999999990674,-0.0686042368233396 +28483,142.41499999990674,-0.06860423715839961 +28484,142.41999999990674,-0.06860423749351949 +28485,142.42499999990673,-0.06860423782869922 +28486,142.42999999990673,-0.06860423816393875 +28487,142.43499999990672,-0.06860423849923805 +28488,142.43999999990672,-0.0686042388345971 +28489,142.4449999999067,-0.06860423917001585 +28490,142.4499999999067,-0.06860423950549427 +28491,142.4549999999067,-0.06860423984103232 +28492,142.4599999999067,-0.06860424017662999 +28493,142.4649999999067,-0.06860424051228722 +28494,142.4699999999067,-0.068604240848004 +28495,142.4749999999067,-0.06860424118378028 +28496,142.47999999990668,-0.06860424151961603 +28497,142.48499999990668,-0.0686042418555112 +28498,142.48999999990667,-0.0686042421914658 +28499,142.49499999990667,-0.06860424252747975 +28500,142.49999999990666,-0.06860424286355306 +28501,142.50499999990666,-0.06860424319968565 +28502,142.50999999990665,-0.06860424353587753 +28503,142.51499999990665,-0.06860424387212864 +28504,142.51999999990664,-0.06860424420843894 +28505,142.52499999990664,-0.06860424454480843 +28506,142.52999999990664,-0.06860424488123705 +28507,142.53499999990663,-0.06860424521772476 +28508,142.53999999990663,-0.06860424555427155 +28509,142.54499999990662,-0.0686042458908774 +28510,142.54999999990662,-0.06860424622754223 +28511,142.5549999999066,-0.06860424656426603 +28512,142.5599999999066,-0.06860424690104878 +28513,142.5649999999066,-0.06860424723789044 +28514,142.5699999999066,-0.06860424757479094 +28515,142.5749999999066,-0.06860424791175031 +28516,142.5799999999066,-0.06860424824876846 +28517,142.5849999999066,-0.06860424858584538 +28518,142.58999999990658,-0.06860424892298106 +28519,142.59499999990658,-0.06860424926017543 +28520,142.59999999990657,-0.06860424959742846 +28521,142.60499999990657,-0.06860424993474014 +28522,142.60999999990656,-0.06860425027211042 +28523,142.61499999990656,-0.06860425060953929 +28524,142.61999999990655,-0.06860425094702667 +28525,142.62499999990655,-0.06860425128457256 +28526,142.62999999990654,-0.06860425162217695 +28527,142.63499999990654,-0.06860425195983975 +28528,142.63999999990654,-0.06860425229756098 +28529,142.64499999990653,-0.06860425263534058 +28530,142.64999999990653,-0.0686042529731785 +28531,142.65499999990652,-0.06860425331107474 +28532,142.65999999990652,-0.06860425364902926 +28533,142.6649999999065,-0.06860425398704202 +28534,142.6699999999065,-0.06860425432511298 +28535,142.6749999999065,-0.06860425466324212 +28536,142.6799999999065,-0.0686042550014294 +28537,142.6849999999065,-0.06860425533967478 +28538,142.6899999999065,-0.06860425567797825 +28539,142.69499999990649,-0.06860425601633975 +28540,142.69999999990648,-0.06860425635475928 +28541,142.70499999990648,-0.06860425669323676 +28542,142.70999999990647,-0.06860425703177221 +28543,142.71499999990647,-0.06860425737036556 +28544,142.71999999990646,-0.06860425770901679 +28545,142.72499999990646,-0.06860425804772587 +28546,142.72999999990645,-0.06860425838649274 +28547,142.73499999990645,-0.0686042587253174 +28548,142.73999999990644,-0.06860425906419983 +28549,142.74499999990644,-0.06860425940313995 +28550,142.74999999990644,-0.06860425974213775 +28551,142.75499999990643,-0.06860426008119322 +28552,142.75999999990643,-0.06860426042030629 +28553,142.76499999990642,-0.06860426075947694 +28554,142.76999999990642,-0.06860426109870515 +28555,142.7749999999064,-0.06860426143799088 +28556,142.7799999999064,-0.06860426177733407 +28557,142.7849999999064,-0.06860426211673473 +28558,142.7899999999064,-0.0686042624561928 +28559,142.7949999999064,-0.06860426279570826 +28560,142.7999999999064,-0.06860426313528108 +28561,142.80499999990639,-0.0686042634749112 +28562,142.80999999990638,-0.06860426381459862 +28563,142.81499999990638,-0.0686042641543433 +28564,142.81999999990637,-0.0686042644941452 +28565,142.82499999990637,-0.0686042648340043 +28566,142.82999999990636,-0.06860426517392056 +28567,142.83499999990636,-0.06860426551389393 +28568,142.83999999990635,-0.06860426585392439 +28569,142.84499999990635,-0.06860426619401191 +28570,142.84999999990634,-0.06860426653415647 +28571,142.85499999990634,-0.068604266874358 +28572,142.85999999990634,-0.06860426721461652 +28573,142.86499999990633,-0.06860426755493196 +28574,142.86999999990633,-0.06860426789530427 +28575,142.87499999990632,-0.06860426823573347 +28576,142.87999999990632,-0.0686042685762195 +28577,142.8849999999063,-0.06860426891676233 +28578,142.8899999999063,-0.06860426925736192 +28579,142.8949999999063,-0.06860426959801826 +28580,142.8999999999063,-0.06860426993873128 +28581,142.9049999999063,-0.06860427027950099 +28582,142.9099999999063,-0.06860427062032731 +28583,142.91499999990629,-0.06860427096121025 +28584,142.91999999990628,-0.06860427130214976 +28585,142.92499999990628,-0.06860427164314581 +28586,142.92999999990627,-0.06860427198419837 +28587,142.93499999990627,-0.0686042723253074 +28588,142.93999999990626,-0.06860427266647287 +28589,142.94499999990626,-0.06860427300769474 +28590,142.94999999990625,-0.068604273348973 +28591,142.95499999990625,-0.0686042736903076 +28592,142.95999999990624,-0.06860427403169851 +28593,142.96499999990624,-0.0686042743731457 +28594,142.96999999990624,-0.06860427471464914 +28595,142.97499999990623,-0.0686042750562088 +28596,142.97999999990623,-0.06860427539782463 +28597,142.98499999990622,-0.06860427573949661 +28598,142.98999999990622,-0.06860427608122473 +28599,142.9949999999062,-0.06860427642300891 +28600,142.9999999999062,-0.06860427676484916 +28601,143.0049999999062,-0.06860427710674542 +28602,143.0099999999062,-0.06860427744869768 +28603,143.0149999999062,-0.0686042777907059 +28604,143.0199999999062,-0.06860427813277004 +28605,143.02499999990619,-0.06860427847489006 +28606,143.02999999990618,-0.06860427881706596 +28607,143.03499999990618,-0.06860427915929768 +28608,143.03999999990617,-0.0686042795015852 +28609,143.04499999990617,-0.06860427984392849 +28610,143.04999999990616,-0.0686042801863275 +28611,143.05499999990616,-0.06860428052878222 +28612,143.05999999990615,-0.06860428087129258 +28613,143.06499999990615,-0.0686042812138586 +28614,143.06999999990614,-0.06860428155648021 +28615,143.07499999990614,-0.06860428189915742 +28616,143.07999999990614,-0.06860428224189015 +28617,143.08499999990613,-0.06860428258467839 +28618,143.08999999990613,-0.06860428292752209 +28619,143.09499999990612,-0.06860428327042126 +28620,143.09999999990612,-0.06860428361337581 +28621,143.1049999999061,-0.06860428395638576 +28622,143.1099999999061,-0.06860428429945105 +28623,143.1149999999061,-0.06860428464257166 +28624,143.1199999999061,-0.06860428498574754 +28625,143.1249999999061,-0.06860428532897868 +28626,143.1299999999061,-0.06860428567226504 +28627,143.13499999990609,-0.06860428601560657 +28628,143.13999999990608,-0.06860428635900329 +28629,143.14499999990608,-0.0686042867024551 +28630,143.14999999990607,-0.06860428704596201 +28631,143.15499999990607,-0.068604287389524 +28632,143.15999999990606,-0.06860428773314099 +28633,143.16499999990606,-0.068604288076813 +28634,143.16999999990605,-0.06860428842053995 +28635,143.17499999990605,-0.06860428876432184 +28636,143.17999999990604,-0.06860428910815862 +28637,143.18499999990604,-0.06860428945205028 +28638,143.18999999990604,-0.06860428979599678 +28639,143.19499999990603,-0.06860429013999807 +28640,143.19999999990603,-0.06860429048405414 +28641,143.20499999990602,-0.06860429082816497 +28642,143.20999999990602,-0.0686042911723305 +28643,143.214999999906,-0.06860429151655069 +28644,143.219999999906,-0.06860429186082553 +28645,143.224999999906,-0.06860429220515499 +28646,143.229999999906,-0.06860429254953902 +28647,143.234999999906,-0.06860429289397761 +28648,143.239999999906,-0.06860429323847071 +28649,143.24499999990599,-0.06860429358301832 +28650,143.24999999990598,-0.06860429392762037 +28651,143.25499999990598,-0.06860429427227684 +28652,143.25999999990597,-0.06860429461698771 +28653,143.26499999990597,-0.06860429496175292 +28654,143.26999999990596,-0.06860429530657249 +28655,143.27499999990596,-0.06860429565144634 +28656,143.27999999990595,-0.06860429599637445 +28657,143.28499999990595,-0.0686042963413568 +28658,143.28999999990594,-0.06860429668639335 +28659,143.29499999990594,-0.06860429703148409 +28660,143.29999999990594,-0.06860429737662893 +28661,143.30499999990593,-0.06860429772182791 +28662,143.30999999990593,-0.06860429806708095 +28663,143.31499999990592,-0.06860429841238803 +28664,143.31999999990592,-0.06860429875774914 +28665,143.3249999999059,-0.0686042991031642 +28666,143.3299999999059,-0.06860429944863325 +28667,143.3349999999059,-0.06860429979415619 +28668,143.3399999999059,-0.06860430013973302 +28669,143.3449999999059,-0.06860430048536371 +28670,143.3499999999059,-0.06860430083104822 +28671,143.35499999990589,-0.06860430117678652 +28672,143.35999999990588,-0.06860430152257858 +28673,143.36499999990588,-0.06860430186842437 +28674,143.36999999990587,-0.06860430221432387 +28675,143.37499999990587,-0.06860430256027703 +28676,143.37999999990586,-0.0686043029062838 +28677,143.38499999990586,-0.06860430325234419 +28678,143.38999999990585,-0.06860430359845816 +28679,143.39499999990585,-0.06860430394462567 +28680,143.39999999990584,-0.06860430429084668 +28681,143.40499999990584,-0.06860430463712118 +28682,143.40999999990584,-0.06860430498344912 +28683,143.41499999990583,-0.06860430532983047 +28684,143.41999999990583,-0.06860430567626521 +28685,143.42499999990582,-0.0686043060227533 +28686,143.42999999990582,-0.06860430636929472 +28687,143.4349999999058,-0.06860430671588942 +28688,143.4399999999058,-0.0686043070625374 +28689,143.4449999999058,-0.06860430740923858 +28690,143.4499999999058,-0.06860430775599297 +28691,143.4549999999058,-0.06860430810280052 +28692,143.4599999999058,-0.0686043084496612 +28693,143.46499999990579,-0.06860430879657499 +28694,143.46999999990578,-0.06860430914354185 +28695,143.47499999990578,-0.06860430949056173 +28696,143.47999999990577,-0.06860430983763463 +28697,143.48499999990577,-0.06860431018476053 +28698,143.48999999990576,-0.06860431053193936 +28699,143.49499999990576,-0.0686043108791711 +28700,143.49999999990575,-0.06860431122645572 +28701,143.50499999990575,-0.0686043115737932 +28702,143.50999999990574,-0.0686043119211835 +28703,143.51499999990574,-0.06860431226862661 +28704,143.51999999990574,-0.06860431261612246 +28705,143.52499999990573,-0.06860431296367103 +28706,143.52999999990573,-0.06860431331127233 +28707,143.53499999990572,-0.06860431365892627 +28708,143.53999999990572,-0.06860431400663286 +28709,143.5449999999057,-0.06860431435439204 +28710,143.5499999999057,-0.06860431470220381 +28711,143.5549999999057,-0.06860431505006812 +28712,143.5599999999057,-0.06860431539798492 +28713,143.5649999999057,-0.06860431574595421 +28714,143.5699999999057,-0.06860431609397595 +28715,143.57499999990569,-0.06860431644205012 +28716,143.57999999990568,-0.06860431679017667 +28717,143.58499999990568,-0.06860431713835557 +28718,143.58999999990567,-0.06860431748658681 +28719,143.59499999990567,-0.06860431783487034 +28720,143.59999999990566,-0.06860431818320611 +28721,143.60499999990566,-0.06860431853159414 +28722,143.60999999990565,-0.06860431888003438 +28723,143.61499999990565,-0.06860431922852676 +28724,143.61999999990564,-0.06860431957707129 +28725,143.62499999990564,-0.06860431992566794 +28726,143.62999999990564,-0.06860432027431666 +28727,143.63499999990563,-0.06860432062301743 +28728,143.63999999990563,-0.06860432097177022 +28729,143.64499999990562,-0.06860432132057499 +28730,143.64999999990562,-0.06860432166943173 +28731,143.6549999999056,-0.06860432201834038 +28732,143.6599999999056,-0.06860432236730092 +28733,143.6649999999056,-0.06860432271631334 +28734,143.6699999999056,-0.06860432306537757 +28735,143.6749999999056,-0.06860432341449363 +28736,143.6799999999056,-0.06860432376366145 +28737,143.68499999990559,-0.06860432411288099 +28738,143.68999999990558,-0.06860432446215226 +28739,143.69499999990558,-0.0686043248114752 +28740,143.69999999990557,-0.06860432516084979 +28741,143.70499999990557,-0.06860432551027598 +28742,143.70999999990556,-0.06860432585975378 +28743,143.71499999990556,-0.06860432620928311 +28744,143.71999999990555,-0.06860432655886399 +28745,143.72499999990555,-0.06860432690849635 +28746,143.72999999990554,-0.06860432725818018 +28747,143.73499999990554,-0.06860432760791543 +28748,143.73999999990554,-0.0686043279577021 +28749,143.74499999990553,-0.06860432830754012 +28750,143.74999999990553,-0.0686043286574295 +28751,143.75499999990552,-0.0686043290073702 +28752,143.75999999990552,-0.06860432935736216 +28753,143.7649999999055,-0.06860432970740539 +28754,143.7699999999055,-0.06860433005749983 +28755,143.7749999999055,-0.06860433040764545 +28756,143.7799999999055,-0.06860433075784224 +28757,143.7849999999055,-0.06860433110809014 +28758,143.7899999999055,-0.06860433145838914 +28759,143.79499999990549,-0.0686043318087392 +28760,143.79999999990548,-0.06860433215914032 +28761,143.80499999990548,-0.06860433250959243 +28762,143.80999999990547,-0.06860433286009551 +28763,143.81499999990547,-0.06860433321064954 +28764,143.81999999990546,-0.06860433356125449 +28765,143.82499999990546,-0.06860433391191031 +28766,143.82999999990545,-0.068604334262617 +28767,143.83499999990545,-0.0686043346133745 +28768,143.83999999990544,-0.06860433496418279 +28769,143.84499999990544,-0.06860433531504186 +28770,143.84999999990544,-0.06860433566595164 +28771,143.85499999990543,-0.06860433601691213 +28772,143.85999999990543,-0.06860433636792328 +28773,143.86499999990542,-0.06860433671898508 +28774,143.86999999990542,-0.06860433707009748 +28775,143.8749999999054,-0.06860433742126049 +28776,143.8799999999054,-0.06860433777247403 +28777,143.8849999999054,-0.06860433812373809 +28778,143.8899999999054,-0.06860433847505264 +28779,143.8949999999054,-0.06860433882641763 +28780,143.8999999999054,-0.06860433917783307 +28781,143.90499999990539,-0.0686043395292989 +28782,143.90999999990538,-0.06860433988081509 +28783,143.91499999990538,-0.06860434023238163 +28784,143.91999999990537,-0.06860434058399847 +28785,143.92499999990537,-0.0686043409356656 +28786,143.92999999990536,-0.06860434128738296 +28787,143.93499999990536,-0.06860434163915055 +28788,143.93999999990535,-0.06860434199096832 +28789,143.94499999990535,-0.06860434234283624 +28790,143.94999999990534,-0.0686043426947543 +28791,143.95499999990534,-0.06860434304672244 +28792,143.95999999990534,-0.06860434339874066 +28793,143.96499999990533,-0.06860434375080891 +28794,143.96999999990533,-0.06860434410292716 +28795,143.97499999990532,-0.06860434445509539 +28796,143.97999999990532,-0.06860434480731357 +28797,143.9849999999053,-0.06860434515958165 +28798,143.9899999999053,-0.06860434551189964 +28799,143.9949999999053,-0.06860434586426747 +28800,143.9999999999053,-0.06860434621668512 +28801,144.0049999999053,-0.06860434656915258 +28802,144.0099999999053,-0.0686043469216698 +28803,144.01499999990529,-0.06860434727423674 +28804,144.01999999990528,-0.0686043476268534 +28805,144.02499999990528,-0.06860434797951973 +28806,144.02999999990527,-0.0686043483322357 +28807,144.03499999990527,-0.0686043486850013 +28808,144.03999999990526,-0.06860434903781648 +28809,144.04499999990526,-0.0686043493906812 +28810,144.04999999990525,-0.06860434974359546 +28811,144.05499999990525,-0.06860435009655921 +28812,144.05999999990524,-0.06860435044957243 +28813,144.06499999990524,-0.06860435080263506 +28814,144.06999999990524,-0.06860435115574713 +28815,144.07499999990523,-0.06860435150890855 +28816,144.07999999990523,-0.06860435186211933 +28817,144.08499999990522,-0.06860435221537942 +28818,144.08999999990522,-0.0686043525686888 +28819,144.0949999999052,-0.06860435292204743 +28820,144.0999999999052,-0.06860435327545528 +28821,144.1049999999052,-0.06860435362891233 +28822,144.1099999999052,-0.06860435398241856 +28823,144.1149999999052,-0.06860435433597392 +28824,144.1199999999052,-0.06860435468957839 +28825,144.12499999990519,-0.06860435504323194 +28826,144.12999999990518,-0.06860435539693452 +28827,144.13499999990518,-0.06860435575068613 +28828,144.13999999990517,-0.06860435610448672 +28829,144.14499999990517,-0.06860435645833628 +28830,144.14999999990516,-0.06860435681223476 +28831,144.15499999990516,-0.06860435716618213 +28832,144.15999999990515,-0.06860435752017836 +28833,144.16499999990515,-0.06860435787422345 +28834,144.16999999990514,-0.06860435822831736 +28835,144.17499999990514,-0.06860435858246003 +28836,144.17999999990514,-0.06860435893665146 +28837,144.18499999990513,-0.06860435929089159 +28838,144.18999999990513,-0.06860435964518044 +28839,144.19499999990512,-0.06860435999951794 +28840,144.19999999990512,-0.06860436035390408 +28841,144.2049999999051,-0.06860436070833881 +28842,144.2099999999051,-0.06860436106282211 +28843,144.2149999999051,-0.06860436141735396 +28844,144.2199999999051,-0.06860436177193431 +28845,144.2249999999051,-0.06860436212656315 +28846,144.2299999999051,-0.06860436248124044 +28847,144.23499999990509,-0.06860436283596616 +28848,144.23999999990508,-0.06860436319074027 +28849,144.24499999990508,-0.06860436354556275 +28850,144.24999999990507,-0.06860436390043358 +28851,144.25499999990507,-0.0686043642553527 +28852,144.25999999990506,-0.06860436461032009 +28853,144.26499999990506,-0.06860436496533573 +28854,144.26999999990505,-0.0686043653203996 +28855,144.27499999990505,-0.06860436567551165 +28856,144.27999999990504,-0.06860436603067185 +28857,144.28499999990504,-0.0686043663858802 +28858,144.28999999990504,-0.06860436674113664 +28859,144.29499999990503,-0.06860436709644113 +28860,144.29999999990503,-0.0686043674517937 +28861,144.30499999990502,-0.06860436780719426 +28862,144.30999999990502,-0.0686043681626428 +28863,144.314999999905,-0.0686043685181393 +28864,144.319999999905,-0.06860436887368371 +28865,144.324999999905,-0.06860436922927601 +28866,144.329999999905,-0.0686043695849162 +28867,144.334999999905,-0.06860436994060422 +28868,144.339999999905,-0.06860437029634003 +28869,144.34499999990499,-0.06860437065212363 +28870,144.34999999990498,-0.06860437100795498 +28871,144.35499999990498,-0.06860437136383403 +28872,144.35999999990497,-0.06860437171976078 +28873,144.36499999990497,-0.06860437207573519 +28874,144.36999999990496,-0.06860437243175722 +28875,144.37499999990496,-0.06860437278782686 +28876,144.37999999990495,-0.06860437314394408 +28877,144.38499999990495,-0.06860437350010883 +28878,144.38999999990494,-0.0686043738563211 +28879,144.39499999990494,-0.06860437421258084 +28880,144.39999999990494,-0.06860437456888803 +28881,144.40499999990493,-0.06860437492524267 +28882,144.40999999990493,-0.06860437528164469 +28883,144.41499999990492,-0.06860437563809409 +28884,144.41999999990492,-0.06860437599459081 +28885,144.4249999999049,-0.06860437635113485 +28886,144.4299999999049,-0.06860437670772616 +28887,144.4349999999049,-0.06860437706436473 +28888,144.4399999999049,-0.06860437742105052 +28889,144.4449999999049,-0.0686043777777835 +28890,144.4499999999049,-0.06860437813456365 +28891,144.45499999990489,-0.06860437849139094 +28892,144.45999999990488,-0.06860437884826531 +28893,144.46499999990488,-0.06860437920518678 +28894,144.46999999990487,-0.06860437956215529 +28895,144.47499999990487,-0.06860437991917082 +28896,144.47999999990486,-0.06860438027623333 +28897,144.48499999990486,-0.0686043806333428 +28898,144.48999999990485,-0.06860438099049919 +28899,144.49499999990485,-0.0686043813477025 +28900,144.49999999990484,-0.06860438170495267 +28901,144.50499999990484,-0.0686043820622497 +28902,144.50999999990484,-0.06860438241959353 +28903,144.51499999990483,-0.06860438277698415 +28904,144.51999999990483,-0.06860438313442152 +28905,144.52499999990482,-0.06860438349190563 +28906,144.52999999990482,-0.06860438384943644 +28907,144.5349999999048,-0.06860438420701392 +28908,144.5399999999048,-0.06860438456463804 +28909,144.5449999999048,-0.06860438492230878 +28910,144.5499999999048,-0.06860438528002608 +28911,144.5549999999048,-0.06860438563778995 +28912,144.5599999999048,-0.06860438599560034 +28913,144.56499999990478,-0.06860438635345721 +28914,144.56999999990478,-0.06860438671136056 +28915,144.57499999990478,-0.06860438706931035 +28916,144.57999999990477,-0.06860438742730655 +28917,144.58499999990477,-0.06860438778534914 +28918,144.58999999990476,-0.06860438814343807 +28919,144.59499999990476,-0.06860438850157333 +28920,144.59999999990475,-0.06860438885975488 +28921,144.60499999990475,-0.0686043892179827 +28922,144.60999999990474,-0.06860438957625675 +28923,144.61499999990474,-0.06860438993457701 +28924,144.61999999990473,-0.06860439029294345 +28925,144.62499999990473,-0.06860439065135604 +28926,144.62999999990473,-0.06860439100981476 +28927,144.63499999990472,-0.06860439136831957 +28928,144.63999999990472,-0.06860439172687045 +28929,144.6449999999047,-0.06860439208546736 +28930,144.6499999999047,-0.06860439244411026 +28931,144.6549999999047,-0.06860439280279916 +28932,144.6599999999047,-0.068604393161534 +28933,144.6649999999047,-0.06860439352031476 +28934,144.6699999999047,-0.06860439387914141 +28935,144.67499999990468,-0.06860439423801394 +28936,144.67999999990468,-0.0686043945969323 +28937,144.68499999990468,-0.06860439495589646 +28938,144.68999999990467,-0.0686043953149064 +28939,144.69499999990467,-0.06860439567396209 +28940,144.69999999990466,-0.0686043960330635 +28941,144.70499999990466,-0.0686043963922106 +28942,144.70999999990465,-0.06860439675140335 +28943,144.71499999990465,-0.06860439711064176 +28944,144.71999999990464,-0.06860439746992576 +28945,144.72499999990464,-0.06860439782925534 +28946,144.72999999990463,-0.06860439818863048 +28947,144.73499999990463,-0.06860439854805114 +28948,144.73999999990463,-0.06860439890751728 +28949,144.74499999990462,-0.0686043992670289 +28950,144.74999999990462,-0.06860439962658595 +28951,144.7549999999046,-0.0686043999861884 +28952,144.7599999999046,-0.06860440034583623 +28953,144.7649999999046,-0.06860440070552941 +28954,144.7699999999046,-0.06860440106526791 +28955,144.7749999999046,-0.06860440142505171 +28956,144.7799999999046,-0.06860440178488077 +28957,144.78499999990458,-0.06860440214475506 +28958,144.78999999990458,-0.06860440250467456 +28959,144.79499999990458,-0.06860440286463924 +28960,144.79999999990457,-0.06860440322464907 +28961,144.80499999990457,-0.06860440358470403 +28962,144.80999999990456,-0.06860440394480408 +28963,144.81499999990456,-0.06860440430494918 +28964,144.81999999990455,-0.06860440466513934 +28965,144.82499999990455,-0.0686044050253745 +28966,144.82999999990454,-0.06860440538565464 +28967,144.83499999990454,-0.06860440574597973 +28968,144.83999999990453,-0.06860440610634976 +28969,144.84499999990453,-0.06860440646676468 +28970,144.84999999990453,-0.06860440682722445 +28971,144.85499999990452,-0.06860440718772909 +28972,144.85999999990452,-0.06860440754827851 +28973,144.8649999999045,-0.06860440790887273 +28974,144.8699999999045,-0.0686044082695117 +28975,144.8749999999045,-0.0686044086301954 +28976,144.8799999999045,-0.0686044089909238 +28977,144.8849999999045,-0.06860440935169684 +28978,144.8899999999045,-0.06860440971251455 +28979,144.89499999990448,-0.06860441007337686 +28980,144.89999999990448,-0.06860441043428378 +28981,144.90499999990448,-0.06860441079523524 +28982,144.90999999990447,-0.06860441115623123 +28983,144.91499999990447,-0.06860441151727172 +28984,144.91999999990446,-0.06860441187835667 +28985,144.92499999990446,-0.06860441223948609 +28986,144.92999999990445,-0.0686044126006599 +28987,144.93499999990445,-0.06860441296187811 +28988,144.93999999990444,-0.0686044133231407 +28989,144.94499999990444,-0.0686044136844476 +28990,144.94999999990443,-0.06860441404579881 +28991,144.95499999990443,-0.06860441440719428 +28992,144.95999999990443,-0.06860441476863402 +28993,144.96499999990442,-0.06860441513011797 +28994,144.96999999990442,-0.06860441549164611 +28995,144.9749999999044,-0.06860441585321841 +28996,144.9799999999044,-0.06860441621483486 +28997,144.9849999999044,-0.06860441657649541 +28998,144.9899999999044,-0.06860441693820003 +28999,144.9949999999044,-0.0686044172999487 +29000,144.9999999999044,-0.06860441766174141 +29001,145.00499999990438,-0.06860441802357811 +29002,145.00999999990438,-0.06860441838545878 +29003,145.01499999990438,-0.06860441874738338 +29004,145.01999999990437,-0.0686044191093519 +29005,145.02499999990437,-0.0686044194713643 +29006,145.02999999990436,-0.06860441983342055 +29007,145.03499999990436,-0.06860442019552063 +29008,145.03999999990435,-0.06860442055766451 +29009,145.04499999990435,-0.06860442091985217 +29010,145.04999999990434,-0.06860442128208356 +29011,145.05499999990434,-0.06860442164435868 +29012,145.05999999990433,-0.06860442200667748 +29013,145.06499999990433,-0.06860442236903995 +29014,145.06999999990433,-0.06860442273144605 +29015,145.07499999990432,-0.06860442309389575 +29016,145.07999999990432,-0.06860442345638904 +29017,145.0849999999043,-0.06860442381892586 +29018,145.0899999999043,-0.06860442418150621 +29019,145.0949999999043,-0.06860442454413004 +29020,145.0999999999043,-0.06860442490679734 +29021,145.1049999999043,-0.06860442526950809 +29022,145.1099999999043,-0.06860442563226225 +29023,145.11499999990428,-0.06860442599505978 +29024,145.11999999990428,-0.06860442635790068 +29025,145.12499999990428,-0.0686044267207849 +29026,145.12999999990427,-0.06860442708371242 +29027,145.13499999990427,-0.06860442744668321 +29028,145.13999999990426,-0.06860442780969726 +29029,145.14499999990426,-0.06860442817275451 +29030,145.14999999990425,-0.06860442853585495 +29031,145.15499999990425,-0.06860442889899855 +29032,145.15999999990424,-0.06860442926218528 +29033,145.16499999990424,-0.06860442962541512 +29034,145.16999999990423,-0.06860442998868804 +29035,145.17499999990423,-0.068604430352004 +29036,145.17999999990423,-0.068604430715363 +29037,145.18499999990422,-0.06860443107876497 +29038,145.18999999990422,-0.06860443144220993 +29039,145.1949999999042,-0.06860443180569782 +29040,145.1999999999042,-0.06860443216922862 +29041,145.2049999999042,-0.06860443253280231 +29042,145.2099999999042,-0.06860443289641886 +29043,145.2149999999042,-0.06860443326007823 +29044,145.2199999999042,-0.0686044336237804 +29045,145.22499999990418,-0.06860443398752535 +29046,145.22999999990418,-0.06860443435131303 +29047,145.23499999990418,-0.06860443471514345 +29048,145.23999999990417,-0.06860443507901658 +29049,145.24499999990417,-0.06860443544293235 +29050,145.24999999990416,-0.06860443580689075 +29051,145.25499999990416,-0.06860443617089178 +29052,145.25999999990415,-0.06860443653493538 +29053,145.26499999990415,-0.06860443689902153 +29054,145.26999999990414,-0.0686044372631502 +29055,145.27499999990414,-0.0686044376273214 +29056,145.27999999990413,-0.06860443799153504 +29057,145.28499999990413,-0.06860443835579114 +29058,145.28999999990413,-0.06860443872008964 +29059,145.29499999990412,-0.06860443908443055 +29060,145.29999999990412,-0.06860443944881382 +29061,145.3049999999041,-0.06860443981323942 +29062,145.3099999999041,-0.06860444017770734 +29063,145.3149999999041,-0.06860444054221752 +29064,145.3199999999041,-0.06860444090676995 +29065,145.3249999999041,-0.06860444127136463 +29066,145.3299999999041,-0.06860444163600149 +29067,145.33499999990408,-0.06860444200068053 +29068,145.33999999990408,-0.0686044423654017 +29069,145.34499999990408,-0.06860444273016499 +29070,145.34999999990407,-0.06860444309497038 +29071,145.35499999990407,-0.06860444345981782 +29072,145.35999999990406,-0.06860444382470729 +29073,145.36499999990406,-0.06860444418963878 +29074,145.36999999990405,-0.06860444455461225 +29075,145.37499999990405,-0.06860444491962767 +29076,145.37999999990404,-0.06860444528468501 +29077,145.38499999990404,-0.06860444564978425 +29078,145.38999999990403,-0.06860444601492538 +29079,145.39499999990403,-0.06860444638010833 +29080,145.39999999990403,-0.06860444674533311 +29081,145.40499999990402,-0.06860444711059967 +29082,145.40999999990402,-0.06860444747590799 +29083,145.414999999904,-0.06860444784125805 +29084,145.419999999904,-0.06860444820664982 +29085,145.424999999904,-0.06860444857208327 +29086,145.429999999904,-0.06860444893755838 +29087,145.434999999904,-0.0686044493030751 +29088,145.439999999904,-0.06860444966863342 +29089,145.44499999990398,-0.06860445003423332 +29090,145.44999999990398,-0.06860445039987477 +29091,145.45499999990398,-0.06860445076555773 +29092,145.45999999990397,-0.06860445113128218 +29093,145.46499999990397,-0.0686044514970481 +29094,145.46999999990396,-0.06860445186285544 +29095,145.47499999990396,-0.0686044522287042 +29096,145.47999999990395,-0.06860445259459436 +29097,145.48499999990395,-0.06860445296052585 +29098,145.48999999990394,-0.06860445332649867 +29099,145.49499999990394,-0.0686044536925128 +29100,145.49999999990393,-0.06860445405856821 +29101,145.50499999990393,-0.06860445442466487 +29102,145.50999999990393,-0.06860445479080274 +29103,145.51499999990392,-0.0686044551569818 +29104,145.51999999990392,-0.06860445552320203 +29105,145.5249999999039,-0.06860445588946341 +29106,145.5299999999039,-0.0686044562557659 +29107,145.5349999999039,-0.06860445662210947 +29108,145.5399999999039,-0.0686044569884941 +29109,145.5449999999039,-0.06860445735491975 +29110,145.5499999999039,-0.06860445772138643 +29111,145.55499999990388,-0.06860445808789407 +29112,145.55999999990388,-0.06860445845444267 +29113,145.56499999990388,-0.06860445882103218 +29114,145.56999999990387,-0.0686044591876626 +29115,145.57499999990387,-0.06860445955433389 +29116,145.57999999990386,-0.06860445992104601 +29117,145.58499999990386,-0.06860446028779897 +29118,145.58999999990385,-0.06860446065459272 +29119,145.59499999990385,-0.06860446102142721 +29120,145.59999999990384,-0.06860446138830245 +29121,145.60499999990384,-0.06860446175521841 +29122,145.60999999990383,-0.06860446212217504 +29123,145.61499999990383,-0.06860446248917232 +29124,145.61999999990383,-0.06860446285621023 +29125,145.62499999990382,-0.06860446322328877 +29126,145.62999999990382,-0.06860446359040787 +29127,145.6349999999038,-0.0686044639575675 +29128,145.6399999999038,-0.06860446432476767 +29129,145.6449999999038,-0.06860446469200834 +29130,145.6499999999038,-0.06860446505928947 +29131,145.6549999999038,-0.06860446542661104 +29132,145.6599999999038,-0.06860446579397303 +29133,145.66499999990378,-0.06860446616137542 +29134,145.66999999990378,-0.06860446652881816 +29135,145.67499999990378,-0.06860446689630123 +29136,145.67999999990377,-0.06860446726382462 +29137,145.68499999990377,-0.06860446763138829 +29138,145.68999999990376,-0.06860446799899221 +29139,145.69499999990376,-0.06860446836663636 +29140,145.69999999990375,-0.0686044687343207 +29141,145.70499999990375,-0.06860446910204523 +29142,145.70999999990374,-0.06860446946980991 +29143,145.71499999990374,-0.06860446983761471 +29144,145.71999999990373,-0.06860447020545961 +29145,145.72499999990373,-0.06860447057334457 +29146,145.72999999990373,-0.06860447094126958 +29147,145.73499999990372,-0.06860447130923461 +29148,145.73999999990372,-0.06860447167723963 +29149,145.7449999999037,-0.06860447204528461 +29150,145.7499999999037,-0.06860447241336952 +29151,145.7549999999037,-0.06860447278149436 +29152,145.7599999999037,-0.06860447314965906 +29153,145.7649999999037,-0.06860447351786363 +29154,145.7699999999037,-0.06860447388610802 +29155,145.77499999990368,-0.06860447425439223 +29156,145.77999999990368,-0.06860447462271621 +29157,145.78499999990368,-0.06860447499107994 +29158,145.78999999990367,-0.06860447535948339 +29159,145.79499999990367,-0.06860447572792654 +29160,145.79999999990366,-0.06860447609640938 +29161,145.80499999990366,-0.06860447646493184 +29162,145.80999999990365,-0.06860447683349392 +29163,145.81499999990365,-0.0686044772020956 +29164,145.81999999990364,-0.06860447757073684 +29165,145.82499999990364,-0.06860447793941764 +29166,145.82999999990363,-0.06860447830813794 +29167,145.83499999990363,-0.06860447867689773 +29168,145.83999999990363,-0.06860447904569698 +29169,145.84499999990362,-0.06860447941453567 +29170,145.84999999990362,-0.06860447978341375 +29171,145.8549999999036,-0.06860448015233123 +29172,145.8599999999036,-0.06860448052128805 +29173,145.8649999999036,-0.0686044808902842 +29174,145.8699999999036,-0.06860448125931967 +29175,145.8749999999036,-0.06860448162839441 +29176,145.8799999999036,-0.0686044819975084 +29177,145.88499999990358,-0.06860448236666161 +29178,145.88999999990358,-0.06860448273585402 +29179,145.89499999990358,-0.0686044831050856 +29180,145.89999999990357,-0.06860448347435633 +29181,145.90499999990357,-0.06860448384366617 +29182,145.90999999990356,-0.06860448421301511 +29183,145.91499999990356,-0.06860448458240312 +29184,145.91999999990355,-0.06860448495183016 +29185,145.92499999990355,-0.06860448532129622 +29186,145.92999999990354,-0.06860448569080127 +29187,145.93499999990354,-0.06860448606034528 +29188,145.93999999990353,-0.06860448642992822 +29189,145.94499999990353,-0.06860448679955009 +29190,145.94999999990353,-0.06860448716921083 +29191,145.95499999990352,-0.06860448753891042 +29192,145.95999999990352,-0.06860448790864886 +29193,145.9649999999035,-0.06860448827842608 +29194,145.9699999999035,-0.06860448864824209 +29195,145.9749999999035,-0.06860448901809685 +29196,145.9799999999035,-0.06860448938799033 +29197,145.9849999999035,-0.06860448975792252 +29198,145.9899999999035,-0.06860449012789338 +29199,145.99499999990348,-0.0686044904979029 +29200,145.99999999990348,-0.06860449086795105 +29201,146.00499999990348,-0.06860449123803779 +29202,146.00999999990347,-0.06860449160816309 +29203,146.01499999990347,-0.06860449197832694 +29204,146.01999999990346,-0.0686044923485293 +29205,146.02499999990346,-0.06860449271877016 +29206,146.02999999990345,-0.06860449308904948 +29207,146.03499999990345,-0.06860449345936726 +29208,146.03999999990344,-0.06860449382972343 +29209,146.04499999990344,-0.068604494200118 +29210,146.04999999990343,-0.06860449457055093 +29211,146.05499999990343,-0.06860449494102219 +29212,146.05999999990343,-0.06860449531153177 +29213,146.06499999990342,-0.06860449568207964 +29214,146.06999999990342,-0.06860449605266576 +29215,146.0749999999034,-0.06860449642329011 +29216,146.0799999999034,-0.06860449679395268 +29217,146.0849999999034,-0.06860449716465343 +29218,146.0899999999034,-0.06860449753539233 +29219,146.0949999999034,-0.06860449790616936 +29220,146.0999999999034,-0.06860449827698449 +29221,146.10499999990338,-0.0686044986478377 +29222,146.10999999990338,-0.06860449901872896 +29223,146.11499999990338,-0.06860449938965825 +29224,146.11999999990337,-0.06860449976062553 +29225,146.12499999990337,-0.06860450013163079 +29226,146.12999999990336,-0.068604500502674 +29227,146.13499999990336,-0.06860450087375514 +29228,146.13999999990335,-0.06860450124487416 +29229,146.14499999990335,-0.06860450161603106 +29230,146.14999999990334,-0.0686045019872258 +29231,146.15499999990334,-0.06860450235845836 +29232,146.15999999990333,-0.06860450272972872 +29233,146.16499999990333,-0.06860450310103686 +29234,146.16999999990333,-0.06860450347238273 +29235,146.17499999990332,-0.06860450384376633 +29236,146.17999999990332,-0.0686045042151876 +29237,146.1849999999033,-0.06860450458664655 +29238,146.1899999999033,-0.06860450495814313 +29239,146.1949999999033,-0.06860450532967732 +29240,146.1999999999033,-0.06860450570124911 +29241,146.2049999999033,-0.06860450607285845 +29242,146.2099999999033,-0.06860450644450533 +29243,146.21499999990328,-0.06860450681618972 +29244,146.21999999990328,-0.06860450718791161 +29245,146.22499999990328,-0.06860450755967096 +29246,146.22999999990327,-0.06860450793146772 +29247,146.23499999990327,-0.06860450830330192 +29248,146.23999999990326,-0.06860450867517348 +29249,146.24499999990326,-0.0686045090470824 +29250,146.24999999990325,-0.06860450941902867 +29251,146.25499999990325,-0.06860450979101222 +29252,146.25999999990324,-0.06860451016303307 +29253,146.26499999990324,-0.06860451053509117 +29254,146.26999999990323,-0.0686045109071865 +29255,146.27499999990323,-0.06860451127931903 +29256,146.27999999990323,-0.06860451165148873 +29257,146.28499999990322,-0.06860451202369561 +29258,146.28999999990322,-0.06860451239593959 +29259,146.2949999999032,-0.06860451276822069 +29260,146.2999999999032,-0.06860451314053886 +29261,146.3049999999032,-0.06860451351289408 +29262,146.3099999999032,-0.06860451388528632 +29263,146.3149999999032,-0.06860451425771556 +29264,146.3199999999032,-0.06860451463018179 +29265,146.32499999990318,-0.06860451500268495 +29266,146.32999999990318,-0.06860451537522505 +29267,146.33499999990318,-0.06860451574780205 +29268,146.33999999990317,-0.0686045161204159 +29269,146.34499999990317,-0.06860451649306663 +29270,146.34999999990316,-0.06860451686575417 +29271,146.35499999990316,-0.06860451723847849 +29272,146.35999999990315,-0.0686045176112396 +29273,146.36499999990315,-0.06860451798403744 +29274,146.36999999990314,-0.06860451835687202 +29275,146.37499999990314,-0.0686045187297433 +29276,146.37999999990313,-0.06860451910265122 +29277,146.38499999990313,-0.06860451947559582 +29278,146.38999999990313,-0.06860451984857702 +29279,146.39499999990312,-0.06860452022159481 +29280,146.39999999990312,-0.06860452059464918 +29281,146.4049999999031,-0.06860452096774007 +29282,146.4099999999031,-0.06860452134086749 +29283,146.4149999999031,-0.0686045217140314 +29284,146.4199999999031,-0.06860452208723179 +29285,146.4249999999031,-0.06860452246046862 +29286,146.4299999999031,-0.06860452283374185 +29287,146.43499999990308,-0.06860452320705149 +29288,146.43999999990308,-0.06860452358039748 +29289,146.44499999990308,-0.06860452395377983 +29290,146.44999999990307,-0.06860452432719849 +29291,146.45499999990307,-0.06860452470065344 +29292,146.45999999990306,-0.06860452507414466 +29293,146.46499999990306,-0.06860452544767212 +29294,146.46999999990305,-0.06860452582123579 +29295,146.47499999990305,-0.06860452619483565 +29296,146.47999999990304,-0.06860452656847167 +29297,146.48499999990304,-0.06860452694214383 +29298,146.48999999990303,-0.0686045273158521 +29299,146.49499999990303,-0.06860452768959648 +29300,146.49999999990303,-0.06860452806337691 +29301,146.50499999990302,-0.06860452843719339 +29302,146.50999999990302,-0.06860452881104588 +29303,146.514999999903,-0.06860452918493437 +29304,146.519999999903,-0.0686045295588588 +29305,146.524999999903,-0.06860452993281918 +29306,146.529999999903,-0.06860453030681547 +29307,146.534999999903,-0.06860453068084767 +29308,146.539999999903,-0.06860453105491571 +29309,146.54499999990298,-0.0686045314290196 +29310,146.54999999990298,-0.06860453180315929 +29311,146.55499999990298,-0.06860453217733478 +29312,146.55999999990297,-0.06860453255154603 +29313,146.56499999990297,-0.06860453292579302 +29314,146.56999999990296,-0.06860453330007574 +29315,146.57499999990296,-0.06860453367439412 +29316,146.57999999990295,-0.06860453404874818 +29317,146.58499999990295,-0.06860453442313787 +29318,146.58999999990294,-0.06860453479756318 +29319,146.59499999990294,-0.06860453517202407 +29320,146.59999999990293,-0.06860453554652053 +29321,146.60499999990293,-0.06860453592105252 +29322,146.60999999990293,-0.06860453629562002 +29323,146.61499999990292,-0.06860453667022302 +29324,146.61999999990292,-0.06860453704486148 +29325,146.6249999999029,-0.06860453741953539 +29326,146.6299999999029,-0.0686045377942447 +29327,146.6349999999029,-0.06860453816898943 +29328,146.6399999999029,-0.0686045385437695 +29329,146.6449999999029,-0.06860453891858491 +29330,146.6499999999029,-0.06860453929343564 +29331,146.65499999990288,-0.06860453966832165 +29332,146.65999999990288,-0.06860454004324294 +29333,146.66499999990288,-0.06860454041819947 +29334,146.66999999990287,-0.06860454079319121 +29335,146.67499999990287,-0.06860454116821814 +29336,146.67999999990286,-0.06860454154328022 +29337,146.68499999990286,-0.06860454191837745 +29338,146.68999999990285,-0.0686045422935098 +29339,146.69499999990285,-0.06860454266867726 +29340,146.69999999990284,-0.06860454304387976 +29341,146.70499999990284,-0.0686045434191173 +29342,146.70999999990283,-0.06860454379438988 +29343,146.71499999990283,-0.06860454416969744 +29344,146.71999999990283,-0.06860454454503996 +29345,146.72499999990282,-0.06860454492041743 +29346,146.72999999990282,-0.06860454529582982 +29347,146.7349999999028,-0.0686045456712771 +29348,146.7399999999028,-0.06860454604675927 +29349,146.7449999999028,-0.06860454642227626 +29350,146.7499999999028,-0.06860454679782808 +29351,146.7549999999028,-0.06860454717341469 +29352,146.7599999999028,-0.06860454754903607 +29353,146.76499999990278,-0.0686045479246922 +29354,146.76999999990278,-0.06860454830038304 +29355,146.77499999990278,-0.06860454867610859 +29356,146.77999999990277,-0.06860454905186882 +29357,146.78499999990277,-0.06860454942766368 +29358,146.78999999990276,-0.06860454980349318 +29359,146.79499999990276,-0.06860455017935727 +29360,146.79999999990275,-0.06860455055525591 +29361,146.80499999990275,-0.06860455093118913 +29362,146.80999999990274,-0.06860455130715686 +29363,146.81499999990274,-0.06860455168315908 +29364,146.81999999990273,-0.0686045520591958 +29365,146.82499999990273,-0.06860455243526696 +29366,146.82999999990272,-0.06860455281137252 +29367,146.83499999990272,-0.0686045531875125 +29368,146.83999999990272,-0.06860455356368686 +29369,146.8449999999027,-0.06860455393989558 +29370,146.8499999999027,-0.06860455431613861 +29371,146.8549999999027,-0.06860455469241596 +29372,146.8599999999027,-0.06860455506872758 +29373,146.8649999999027,-0.06860455544507346 +29374,146.8699999999027,-0.06860455582145356 +29375,146.87499999990268,-0.06860455619786787 +29376,146.87999999990268,-0.06860455657431637 +29377,146.88499999990267,-0.068604556950799 +29378,146.88999999990267,-0.0686045573273158 +29379,146.89499999990267,-0.06860455770386667 +29380,146.89999999990266,-0.06860455808045166 +29381,146.90499999990266,-0.06860455845707068 +29382,146.90999999990265,-0.06860455883372374 +29383,146.91499999990265,-0.06860455921041082 +29384,146.91999999990264,-0.0686045595871319 +29385,146.92499999990264,-0.06860455996388691 +29386,146.92999999990263,-0.06860456034067587 +29387,146.93499999990263,-0.06860456071749876 +29388,146.93999999990262,-0.06860456109435552 +29389,146.94499999990262,-0.06860456147124615 +29390,146.94999999990262,-0.06860456184817061 +29391,146.9549999999026,-0.0686045622251289 +29392,146.9599999999026,-0.06860456260212097 +29393,146.9649999999026,-0.06860456297914681 +29394,146.9699999999026,-0.06860456335620639 +29395,146.9749999999026,-0.06860456373329969 +29396,146.9799999999026,-0.06860456411042667 +29397,146.98499999990258,-0.06860456448758735 +29398,146.98999999990258,-0.06860456486478167 +29399,146.99499999990257,-0.0686045652420096 +29400,146.99999999990257,-0.06860456561927113 +29401,147.00499999990257,-0.06860456599656624 +29402,147.00999999990256,-0.06860456637389488 +29403,147.01499999990256,-0.06860456675125705 +29404,147.01999999990255,-0.06860456712865273 +29405,147.02499999990255,-0.06860456750608188 +29406,147.02999999990254,-0.06860456788354449 +29407,147.03499999990254,-0.06860456826104053 +29408,147.03999999990253,-0.06860456863856997 +29409,147.04499999990253,-0.06860456901613277 +29410,147.04999999990252,-0.06860456939372894 +29411,147.05499999990252,-0.06860456977135844 +29412,147.05999999990252,-0.06860457014902126 +29413,147.0649999999025,-0.06860457052671735 +29414,147.0699999999025,-0.0686045709044467 +29415,147.0749999999025,-0.0686045712822093 +29416,147.0799999999025,-0.0686045716600051 +29417,147.0849999999025,-0.06860457203783407 +29418,147.0899999999025,-0.06860457241569622 +29419,147.09499999990248,-0.06860457279359149 +29420,147.09999999990248,-0.06860457317151988 +29421,147.10499999990247,-0.06860457354948138 +29422,147.10999999990247,-0.06860457392747593 +29423,147.11499999990247,-0.06860457430550353 +29424,147.11999999990246,-0.06860457468356414 +29425,147.12499999990246,-0.06860457506165774 +29426,147.12999999990245,-0.06860457543978431 +29427,147.13499999990245,-0.06860457581794384 +29428,147.13999999990244,-0.06860457619613629 +29429,147.14499999990244,-0.06860457657436163 +29430,147.14999999990243,-0.06860457695261986 +29431,147.15499999990243,-0.06860457733091091 +29432,147.15999999990242,-0.06860457770923481 +29433,147.16499999990242,-0.0686045780875915 +29434,147.16999999990242,-0.06860457846598098 +29435,147.1749999999024,-0.06860457884440321 +29436,147.1799999999024,-0.06860457922285816 +29437,147.1849999999024,-0.06860457960134583 +29438,147.1899999999024,-0.06860457997986619 +29439,147.1949999999024,-0.0686045803584192 +29440,147.1999999999024,-0.06860458073700484 +29441,147.20499999990238,-0.06860458111562309 +29442,147.20999999990238,-0.06860458149427393 +29443,147.21499999990237,-0.06860458187295734 +29444,147.21999999990237,-0.06860458225167328 +29445,147.22499999990237,-0.06860458263042175 +29446,147.22999999990236,-0.0686045830092027 +29447,147.23499999990236,-0.06860458338801613 +29448,147.23999999990235,-0.06860458376686199 +29449,147.24499999990235,-0.06860458414574028 +29450,147.24999999990234,-0.06860458452465096 +29451,147.25499999990234,-0.06860458490359402 +29452,147.25999999990233,-0.06860458528256942 +29453,147.26499999990233,-0.06860458566157715 +29454,147.26999999990232,-0.06860458604061719 +29455,147.27499999990232,-0.06860458641968949 +29456,147.27999999990232,-0.06860458679879404 +29457,147.2849999999023,-0.06860458717793085 +29458,147.2899999999023,-0.06860458755709983 +29459,147.2949999999023,-0.06860458793630102 +29460,147.2999999999023,-0.06860458831553436 +29461,147.3049999999023,-0.06860458869479984 +29462,147.3099999999023,-0.06860458907409742 +29463,147.31499999990228,-0.0686045894534271 +29464,147.31999999990228,-0.06860458983278883 +29465,147.32499999990227,-0.06860459021218261 +29466,147.32999999990227,-0.06860459059160842 +29467,147.33499999990227,-0.0686045909710662 +29468,147.33999999990226,-0.06860459135055597 +29469,147.34499999990226,-0.06860459173007767 +29470,147.34999999990225,-0.0686045921096313 +29471,147.35499999990225,-0.06860459248921683 +29472,147.35999999990224,-0.06860459286883423 +29473,147.36499999990224,-0.06860459324848349 +29474,147.36999999990223,-0.06860459362816457 +29475,147.37499999990223,-0.06860459400787745 +29476,147.37999999990222,-0.06860459438762213 +29477,147.38499999990222,-0.06860459476739855 +29478,147.38999999990222,-0.06860459514720671 +29479,147.3949999999022,-0.06860459552704659 +29480,147.3999999999022,-0.06860459590691816 +29481,147.4049999999022,-0.06860459628682138 +29482,147.4099999999022,-0.06860459666675624 +29483,147.4149999999022,-0.06860459704672271 +29484,147.4199999999022,-0.06860459742672079 +29485,147.42499999990218,-0.06860459780675042 +29486,147.42999999990218,-0.0686045981868116 +29487,147.43499999990217,-0.0686045985669043 +29488,147.43999999990217,-0.06860459894702851 +29489,147.44499999990217,-0.06860459932718418 +29490,147.44999999990216,-0.06860459970737132 +29491,147.45499999990216,-0.06860460008758988 +29492,147.45999999990215,-0.06860460046783987 +29493,147.46499999990215,-0.06860460084812121 +29494,147.46999999990214,-0.06860460122843391 +29495,147.47499999990214,-0.06860460160877795 +29496,147.47999999990213,-0.0686046019891533 +29497,147.48499999990213,-0.06860460236955992 +29498,147.48999999990212,-0.06860460274999784 +29499,147.49499999990212,-0.06860460313046698 +29500,147.49999999990212,-0.06860460351096735 +29501,147.5049999999021,-0.06860460389149892 +29502,147.5099999999021,-0.06860460427206164 +29503,147.5149999999021,-0.06860460465265551 +29504,147.5199999999021,-0.0686046050332805 +29505,147.5249999999021,-0.0686046054139366 +29506,147.5299999999021,-0.0686046057946238 +29507,147.53499999990208,-0.06860460617534203 +29508,147.53999999990208,-0.0686046065560913 +29509,147.54499999990207,-0.06860460693687156 +29510,147.54999999990207,-0.06860460731768282 +29511,147.55499999990207,-0.06860460769852504 +29512,147.55999999990206,-0.06860460807939821 +29513,147.56499999990206,-0.06860460846030228 +29514,147.56999999990205,-0.06860460884123724 +29515,147.57499999990205,-0.06860460922220307 +29516,147.57999999990204,-0.06860460960319975 +29517,147.58499999990204,-0.06860460998422724 +29518,147.58999999990203,-0.06860461036528553 +29519,147.59499999990203,-0.06860461074637461 +29520,147.59999999990202,-0.06860461112749443 +29521,147.60499999990202,-0.06860461150864498 +29522,147.60999999990202,-0.06860461188982624 +29523,147.614999999902,-0.06860461227103817 +29524,147.619999999902,-0.06860461265228078 +29525,147.624999999902,-0.06860461303355402 +29526,147.629999999902,-0.06860461341485787 +29527,147.634999999902,-0.06860461379619232 +29528,147.639999999902,-0.06860461417755732 +29529,147.64499999990198,-0.06860461455895288 +29530,147.64999999990198,-0.06860461494037895 +29531,147.65499999990197,-0.06860461532183552 +29532,147.65999999990197,-0.06860461570332256 +29533,147.66499999990197,-0.06860461608484006 +29534,147.66999999990196,-0.06860461646638798 +29535,147.67499999990196,-0.06860461684796632 +29536,147.67999999990195,-0.06860461722957503 +29537,147.68499999990195,-0.0686046176112141 +29538,147.68999999990194,-0.0686046179928835 +29539,147.69499999990194,-0.06860461837458323 +29540,147.69999999990193,-0.06860461875631323 +29541,147.70499999990193,-0.0686046191380735 +29542,147.70999999990192,-0.06860461951986402 +29543,147.71499999990192,-0.06860461990168476 +29544,147.71999999990192,-0.0686046202835357 +29545,147.7249999999019,-0.06860462066541681 +29546,147.7299999999019,-0.06860462104732806 +29547,147.7349999999019,-0.06860462142926946 +29548,147.7399999999019,-0.06860462181124097 +29549,147.7449999999019,-0.06860462219324255 +29550,147.7499999999019,-0.0686046225752742 +29551,147.75499999990188,-0.06860462295733588 +29552,147.75999999990188,-0.06860462333942757 +29553,147.76499999990187,-0.06860462372154925 +29554,147.76999999990187,-0.06860462410370091 +29555,147.77499999990187,-0.06860462448588252 +29556,147.77999999990186,-0.06860462486809403 +29557,147.78499999990186,-0.06860462525033546 +29558,147.78999999990185,-0.06860462563260676 +29559,147.79499999990185,-0.06860462601490791 +29560,147.79999999990184,-0.06860462639723891 +29561,147.80499999990184,-0.0686046267795997 +29562,147.80999999990183,-0.06860462716199028 +29563,147.81499999990183,-0.06860462754441062 +29564,147.81999999990182,-0.0686046279268607 +29565,147.82499999990182,-0.0686046283093405 +29566,147.82999999990182,-0.06860462869185 +29567,147.8349999999018,-0.06860462907438916 +29568,147.8399999999018,-0.06860462945695799 +29569,147.8449999999018,-0.06860462983955642 +29570,147.8499999999018,-0.06860463022218447 +29571,147.8549999999018,-0.06860463060484209 +29572,147.8599999999018,-0.06860463098752927 +29573,147.86499999990178,-0.06860463137024599 +29574,147.86999999990178,-0.06860463175299221 +29575,147.87499999990177,-0.06860463213576794 +29576,147.87999999990177,-0.06860463251857311 +29577,147.88499999990177,-0.06860463290140774 +29578,147.88999999990176,-0.06860463328427178 +29579,147.89499999990176,-0.06860463366716524 +29580,147.89999999990175,-0.06860463405008806 +29581,147.90499999990175,-0.06860463443304024 +29582,147.90999999990174,-0.06860463481602175 +29583,147.91499999990174,-0.06860463519903257 +29584,147.91999999990173,-0.06860463558207266 +29585,147.92499999990173,-0.06860463596514202 +29586,147.92999999990172,-0.06860463634824061 +29587,147.93499999990172,-0.06860463673136845 +29588,147.93999999990172,-0.06860463711452545 +29589,147.9449999999017,-0.06860463749771165 +29590,147.9499999999017,-0.068604637880927 +29591,147.9549999999017,-0.06860463826417144 +29592,147.9599999999017,-0.068604638647445 +29593,147.9649999999017,-0.06860463903074765 +29594,147.9699999999017,-0.06860463941407936 +29595,147.97499999990168,-0.0686046397974401 +29596,147.97999999990168,-0.06860464018082986 +29597,147.98499999990167,-0.06860464056424861 +29598,147.98999999990167,-0.06860464094769633 +29599,147.99499999990167,-0.06860464133117299 +29600,147.99999999990166,-0.06860464171467856 +29601,148.00499999990166,-0.06860464209821306 +29602,148.00999999990165,-0.0686046424817764 +29603,148.01499999990165,-0.06860464286536863 +29604,148.01999999990164,-0.0686046432489897 +29605,148.02499999990164,-0.06860464363263956 +29606,148.02999999990163,-0.0686046440163182 +29607,148.03499999990163,-0.06860464440002562 +29608,148.03999999990162,-0.06860464478376178 +29609,148.04499999990162,-0.06860464516752666 +29610,148.04999999990162,-0.06860464555132025 +29611,148.0549999999016,-0.0686046459351425 +29612,148.0599999999016,-0.06860464631899342 +29613,148.0649999999016,-0.06860464670287297 +29614,148.0699999999016,-0.06860464708678113 +29615,148.0749999999016,-0.06860464747071787 +29616,148.0799999999016,-0.06860464785468316 +29617,148.08499999990158,-0.06860464823867701 +29618,148.08999999990158,-0.06860464862269938 +29619,148.09499999990157,-0.06860464900675026 +29620,148.09999999990157,-0.0686046493908296 +29621,148.10499999990157,-0.06860464977493738 +29622,148.10999999990156,-0.0686046501590736 +29623,148.11499999990156,-0.06860465054323822 +29624,148.11999999990155,-0.06860465092743123 +29625,148.12499999990155,-0.06860465131165262 +29626,148.12999999990154,-0.06860465169590234 +29627,148.13499999990154,-0.06860465208018038 +29628,148.13999999990153,-0.0686046524644867 +29629,148.14499999990153,-0.06860465284882131 +29630,148.14999999990152,-0.06860465323318417 +29631,148.15499999990152,-0.06860465361757526 +29632,148.15999999990152,-0.06860465400199454 +29633,148.1649999999015,-0.06860465438644202 +29634,148.1699999999015,-0.06860465477091766 +29635,148.1749999999015,-0.06860465515542144 +29636,148.1799999999015,-0.06860465553995335 +29637,148.1849999999015,-0.06860465592451334 +29638,148.1899999999015,-0.0686046563091014 +29639,148.19499999990148,-0.06860465669371751 +29640,148.19999999990148,-0.06860465707836166 +29641,148.20499999990147,-0.06860465746303382 +29642,148.20999999990147,-0.06860465784773397 +29643,148.21499999990147,-0.06860465823246206 +29644,148.21999999990146,-0.06860465861721811 +29645,148.22499999990146,-0.06860465900200206 +29646,148.22999999990145,-0.06860465938681393 +29647,148.23499999990145,-0.06860465977165366 +29648,148.23999999990144,-0.06860466015652124 +29649,148.24499999990144,-0.06860466054141665 +29650,148.24999999990143,-0.06860466092633988 +29651,148.25499999990143,-0.06860466131129088 +29652,148.25999999990142,-0.06860466169626965 +29653,148.26499999990142,-0.06860466208127616 +29654,148.26999999990142,-0.06860466246631039 +29655,148.2749999999014,-0.06860466285137232 +29656,148.2799999999014,-0.06860466323646192 +29657,148.2849999999014,-0.06860466362157916 +29658,148.2899999999014,-0.06860466400672405 +29659,148.2949999999014,-0.06860466439189655 +29660,148.2999999999014,-0.06860466477709663 +29661,148.30499999990138,-0.06860466516232429 +29662,148.30999999990138,-0.06860466554757948 +29663,148.31499999990137,-0.06860466593286217 +29664,148.31999999990137,-0.06860466631817237 +29665,148.32499999990137,-0.06860466670351006 +29666,148.32999999990136,-0.0686046670888752 +29667,148.33499999990136,-0.06860466747426777 +29668,148.33999999990135,-0.06860466785968776 +29669,148.34499999990135,-0.06860466824513511 +29670,148.34999999990134,-0.06860466863060985 +29671,148.35499999990134,-0.06860466901611194 +29672,148.35999999990133,-0.06860466940164135 +29673,148.36499999990133,-0.06860466978719805 +29674,148.36999999990132,-0.06860467017278203 +29675,148.37499999990132,-0.06860467055839328 +29676,148.37999999990132,-0.06860467094403175 +29677,148.3849999999013,-0.06860467132969744 +29678,148.3899999999013,-0.06860467171539032 +29679,148.3949999999013,-0.06860467210111039 +29680,148.3999999999013,-0.06860467248685759 +29681,148.4049999999013,-0.06860467287263192 +29682,148.4099999999013,-0.06860467325843334 +29683,148.41499999990128,-0.06860467364426186 +29684,148.41999999990128,-0.06860467403011743 +29685,148.42499999990127,-0.06860467441600004 +29686,148.42999999990127,-0.06860467480190967 +29687,148.43499999990127,-0.06860467518784628 +29688,148.43999999990126,-0.06860467557380989 +29689,148.44499999990126,-0.06860467595980044 +29690,148.44999999990125,-0.0686046763458179 +29691,148.45499999990125,-0.06860467673186228 +29692,148.45999999990124,-0.06860467711793355 +29693,148.46499999990124,-0.06860467750403168 +29694,148.46999999990123,-0.06860467789015667 +29695,148.47499999990123,-0.06860467827630846 +29696,148.47999999990122,-0.06860467866248707 +29697,148.48499999990122,-0.06860467904869243 +29698,148.48999999990122,-0.06860467943492457 +29699,148.4949999999012,-0.06860467982118343 +29700,148.4999999999012,-0.068604680207469 +29701,148.5049999999012,-0.06860468059378128 +29702,148.5099999999012,-0.0686046809801202 +29703,148.5149999999012,-0.06860468136648576 +29704,148.5199999999012,-0.06860468175287797 +29705,148.52499999990118,-0.06860468213929677 +29706,148.52999999990118,-0.06860468252574216 +29707,148.53499999990117,-0.06860468291221412 +29708,148.53999999990117,-0.0686046832987126 +29709,148.54499999990117,-0.0686046836852376 +29710,148.54999999990116,-0.0686046840717891 +29711,148.55499999990116,-0.06860468445836707 +29712,148.55999999990115,-0.0686046848449715 +29713,148.56499999990115,-0.06860468523160235 +29714,148.56999999990114,-0.06860468561825961 +29715,148.57499999990114,-0.06860468600494327 +29716,148.57999999990113,-0.06860468639165328 +29717,148.58499999990113,-0.06860468677838964 +29718,148.58999999990112,-0.06860468716515232 +29719,148.59499999990112,-0.0686046875519413 +29720,148.59999999990112,-0.06860468793875656 +29721,148.6049999999011,-0.06860468832559807 +29722,148.6099999999011,-0.06860468871246583 +29723,148.6149999999011,-0.06860468909935981 +29724,148.6199999999011,-0.06860468948627997 +29725,148.6249999999011,-0.0686046898732263 +29726,148.6299999999011,-0.06860469026019878 +29727,148.63499999990108,-0.06860469064719739 +29728,148.63999999990108,-0.0686046910342221 +29729,148.64499999990107,-0.0686046914212729 +29730,148.64999999990107,-0.06860469180834977 +29731,148.65499999990107,-0.06860469219545269 +29732,148.65999999990106,-0.06860469258258162 +29733,148.66499999990106,-0.06860469296973655 +29734,148.66999999990105,-0.06860469335691745 +29735,148.67499999990105,-0.06860469374412433 +29736,148.67999999990104,-0.06860469413135713 +29737,148.68499999990104,-0.06860469451861582 +29738,148.68999999990103,-0.06860469490590043 +29739,148.69499999990103,-0.06860469529321091 +29740,148.69999999990102,-0.06860469568054724 +29741,148.70499999990102,-0.0686046960679094 +29742,148.70999999990102,-0.06860469645529735 +29743,148.714999999901,-0.06860469684271109 +29744,148.719999999901,-0.06860469723015061 +29745,148.724999999901,-0.06860469761761585 +29746,148.729999999901,-0.06860469800510682 +29747,148.734999999901,-0.06860469839262351 +29748,148.739999999901,-0.06860469878016587 +29749,148.74499999990098,-0.06860469916773387 +29750,148.74999999990098,-0.06860469955532751 +29751,148.75499999990097,-0.06860469994294678 +29752,148.75999999990097,-0.06860470033059164 +29753,148.76499999990097,-0.06860470071826207 +29754,148.76999999990096,-0.06860470110595804 +29755,148.77499999990096,-0.06860470149367956 +29756,148.77999999990095,-0.06860470188142657 +29757,148.78499999990095,-0.06860470226919908 +29758,148.78999999990094,-0.06860470265699704 +29759,148.79499999990094,-0.06860470304482047 +29760,148.79999999990093,-0.06860470343266929 +29761,148.80499999990093,-0.06860470382054354 +29762,148.80999999990092,-0.06860470420844315 +29763,148.81499999990092,-0.06860470459636814 +29764,148.81999999990092,-0.06860470498431846 +29765,148.8249999999009,-0.06860470537229409 +29766,148.8299999999009,-0.06860470576029502 +29767,148.8349999999009,-0.06860470614832123 +29768,148.8399999999009,-0.06860470653637268 +29769,148.8449999999009,-0.06860470692444938 +29770,148.8499999999009,-0.06860470731255128 +29771,148.85499999990088,-0.06860470770067836 +29772,148.85999999990088,-0.06860470808883062 +29773,148.86499999990087,-0.06860470847700803 +29774,148.86999999990087,-0.06860470886521057 +29775,148.87499999990087,-0.0686047092534382 +29776,148.87999999990086,-0.06860470964169094 +29777,148.88499999990086,-0.06860471002996872 +29778,148.88999999990085,-0.06860471041827156 +29779,148.89499999990085,-0.0686047108065994 +29780,148.89999999990084,-0.06860471119495225 +29781,148.90499999990084,-0.06860471158333008 +29782,148.90999999990083,-0.06860471197173286 +29783,148.91499999990083,-0.06860471236016058 +29784,148.91999999990082,-0.06860471274861323 +29785,148.92499999990082,-0.06860471313709075 +29786,148.92999999990082,-0.06860471352559316 +29787,148.9349999999008,-0.06860471391412043 +29788,148.9399999999008,-0.06860471430267252 +29789,148.9449999999008,-0.06860471469124943 +29790,148.9499999999008,-0.06860471507985112 +29791,148.9549999999008,-0.06860471546847759 +29792,148.9599999999008,-0.06860471585712878 +29793,148.96499999990078,-0.0686047162458047 +29794,148.96999999990078,-0.06860471663450535 +29795,148.97499999990077,-0.06860471702323068 +29796,148.97999999990077,-0.06860471741198067 +29797,148.98499999990077,-0.0686047178007553 +29798,148.98999999990076,-0.06860471818955456 +29799,148.99499999990076,-0.06860471857837841 +29800,148.99999999990075,-0.06860471896722685 +29801,149.00499999990075,-0.06860471935609984 +29802,149.00999999990074,-0.06860471974499736 +29803,149.01499999990074,-0.06860472013391941 +29804,149.01999999990073,-0.06860472052286597 +29805,149.02499999990073,-0.06860472091183697 +29806,149.02999999990072,-0.06860472130083245 +29807,149.03499999990072,-0.06860472168985235 +29808,149.03999999990072,-0.06860472207889667 +29809,149.0449999999007,-0.0686047224679654 +29810,149.0499999999007,-0.06860472285705847 +29811,149.0549999999007,-0.0686047232461759 +29812,149.0599999999007,-0.06860472363531767 +29813,149.0649999999007,-0.06860472402448374 +29814,149.0699999999007,-0.0686047244136741 +29815,149.07499999990068,-0.06860472480288873 +29816,149.07999999990068,-0.0686047251921276 +29817,149.08499999990067,-0.06860472558139068 +29818,149.08999999990067,-0.06860472597067797 +29819,149.09499999990066,-0.06860472635998946 +29820,149.09999999990066,-0.0686047267493251 +29821,149.10499999990066,-0.0686047271386849 +29822,149.10999999990065,-0.06860472752806882 +29823,149.11499999990065,-0.06860472791747682 +29824,149.11999999990064,-0.06860472830690892 +29825,149.12499999990064,-0.06860472869636505 +29826,149.12999999990063,-0.06860472908584525 +29827,149.13499999990063,-0.06860472947534946 +29828,149.13999999990062,-0.06860472986487766 +29829,149.14499999990062,-0.06860473025442983 +29830,149.14999999990061,-0.06860473064400596 +29831,149.1549999999006,-0.06860473103360602 +29832,149.1599999999006,-0.06860473142323 +29833,149.1649999999006,-0.06860473181287788 +29834,149.1699999999006,-0.06860473220254963 +29835,149.1749999999006,-0.06860473259224523 +29836,149.1799999999006,-0.06860473298196466 +29837,149.18499999990058,-0.0686047333717079 +29838,149.18999999990058,-0.06860473376147494 +29839,149.19499999990057,-0.06860473415126574 +29840,149.19999999990057,-0.06860473454108028 +29841,149.20499999990056,-0.06860473493091855 +29842,149.20999999990056,-0.06860473532078054 +29843,149.21499999990056,-0.0686047357106662 +29844,149.21999999990055,-0.06860473610057555 +29845,149.22499999990055,-0.06860473649050854 +29846,149.22999999990054,-0.06860473688046514 +29847,149.23499999990054,-0.06860473727044536 +29848,149.23999999990053,-0.06860473766044917 +29849,149.24499999990053,-0.06860473805047652 +29850,149.24999999990052,-0.06860473844052743 +29851,149.25499999990052,-0.06860473883060186 +29852,149.25999999990051,-0.06860473922069979 +29853,149.2649999999005,-0.0686047396108212 +29854,149.2699999999005,-0.06860474000096607 +29855,149.2749999999005,-0.06860474039113439 +29856,149.2799999999005,-0.06860474078132611 +29857,149.2849999999005,-0.06860474117154125 +29858,149.2899999999005,-0.06860474156177976 +29859,149.29499999990048,-0.06860474195204162 +29860,149.29999999990048,-0.06860474234232683 +29861,149.30499999990047,-0.06860474273263537 +29862,149.30999999990047,-0.06860474312296717 +29863,149.31499999990046,-0.06860474351332228 +29864,149.31999999990046,-0.06860474390370062 +29865,149.32499999990046,-0.06860474429410221 +29866,149.32999999990045,-0.06860474468452701 +29867,149.33499999990045,-0.06860474507497501 +29868,149.33999999990044,-0.06860474546544618 +29869,149.34499999990044,-0.0686047458559405 +29870,149.34999999990043,-0.06860474624645795 +29871,149.35499999990043,-0.06860474663699853 +29872,149.35999999990042,-0.0686047470275622 +29873,149.36499999990042,-0.06860474741814894 +29874,149.36999999990041,-0.06860474780875872 +29875,149.3749999999004,-0.06860474819939154 +29876,149.3799999999004,-0.06860474859004737 +29877,149.3849999999004,-0.06860474898072619 +29878,149.3899999999004,-0.06860474937142799 +29879,149.3949999999004,-0.06860474976215274 +29880,149.3999999999004,-0.0686047501529004 +29881,149.40499999990038,-0.06860475054367099 +29882,149.40999999990038,-0.06860475093446447 +29883,149.41499999990037,-0.06860475132528081 +29884,149.41999999990037,-0.06860475171611999 +29885,149.42499999990036,-0.06860475210698203 +29886,149.42999999990036,-0.06860475249786684 +29887,149.43499999990036,-0.06860475288877446 +29888,149.43999999990035,-0.06860475327970483 +29889,149.44499999990035,-0.06860475367065798 +29890,149.44999999990034,-0.06860475406163383 +29891,149.45499999990034,-0.0686047544526324 +29892,149.45999999990033,-0.06860475484365364 +29893,149.46499999990033,-0.06860475523469757 +29894,149.46999999990032,-0.06860475562576412 +29895,149.47499999990032,-0.06860475601685331 +29896,149.47999999990031,-0.06860475640796511 +29897,149.4849999999003,-0.0686047567990995 +29898,149.4899999999003,-0.06860475719025644 +29899,149.4949999999003,-0.06860475758143593 +29900,149.4999999999003,-0.06860475797263796 +29901,149.5049999999003,-0.06860475836386247 +29902,149.5099999999003,-0.06860475875510949 +29903,149.51499999990028,-0.06860475914637895 +29904,149.51999999990028,-0.06860475953767087 +29905,149.52499999990027,-0.06860475992898522 +29906,149.52999999990027,-0.06860476032032196 +29907,149.53499999990026,-0.06860476071168108 +29908,149.53999999990026,-0.06860476110306257 +29909,149.54499999990026,-0.0686047614944664 +29910,149.54999999990025,-0.06860476188589255 +29911,149.55499999990025,-0.06860476227734102 +29912,149.55999999990024,-0.06860476266881177 +29913,149.56499999990024,-0.06860476306030479 +29914,149.56999999990023,-0.06860476345182005 +29915,149.57499999990023,-0.06860476384335752 +29916,149.57999999990022,-0.0686047642349172 +29917,149.58499999990022,-0.06860476462649906 +29918,149.58999999990021,-0.0686047650181031 +29919,149.5949999999002,-0.06860476540972926 +29920,149.5999999999002,-0.06860476580137756 +29921,149.6049999999002,-0.06860476619304795 +29922,149.6099999999002,-0.06860476658474043 +29923,149.6149999999002,-0.06860476697645497 +29924,149.6199999999002,-0.06860476736819156 +29925,149.62499999990018,-0.06860476775995017 +29926,149.62999999990018,-0.06860476815173078 +29927,149.63499999990017,-0.06860476854353338 +29928,149.63999999990017,-0.06860476893535794 +29929,149.64499999990016,-0.06860476932720444 +29930,149.64999999990016,-0.06860476971907287 +29931,149.65499999990016,-0.06860477011096319 +29932,149.65999999990015,-0.0686047705028754 +29933,149.66499999990015,-0.06860477089480947 +29934,149.66999999990014,-0.0686047712867654 +29935,149.67499999990014,-0.06860477167874314 +29936,149.67999999990013,-0.06860477207074268 +29937,149.68499999990013,-0.06860477246276402 +29938,149.68999999990012,-0.06860477285480711 +29939,149.69499999990012,-0.06860477324687195 +29940,149.69999999990011,-0.0686047736389585 +29941,149.7049999999001,-0.06860477403106677 +29942,149.7099999999001,-0.06860477442319672 +29943,149.7149999999001,-0.06860477481534834 +29944,149.7199999999001,-0.0686047752075216 +29945,149.7249999999001,-0.06860477559971649 +29946,149.7299999999001,-0.06860477599193299 +29947,149.73499999990008,-0.06860477638417106 +29948,149.73999999990008,-0.0686047767764307 +29949,149.74499999990007,-0.0686047771687119 +29950,149.74999999990007,-0.0686047775610146 +29951,149.75499999990006,-0.06860477795333883 +29952,149.75999999990006,-0.06860477834568454 +29953,149.76499999990006,-0.06860477873805171 +29954,149.76999999990005,-0.06860477913044032 +29955,149.77499999990005,-0.06860477952285036 +29956,149.77999999990004,-0.06860477991528181 +29957,149.78499999990004,-0.06860478030773466 +29958,149.78999999990003,-0.06860478070020887 +29959,149.79499999990003,-0.06860478109270442 +29960,149.79999999990002,-0.0686047814852213 +29961,149.80499999990002,-0.0686047818777595 +29962,149.80999999990001,-0.06860478227031898 +29963,149.8149999999,-0.06860478266289972 +29964,149.8199999999,-0.06860478305550173 +29965,149.8249999999,-0.06860478344812497 +29966,149.8299999999,-0.0686047838407694 +29967,149.8349999999,-0.06860478423343502 +29968,149.8399999999,-0.06860478462612182 +29969,149.84499999989998,-0.06860478501882977 +29970,149.84999999989998,-0.06860478541155886 +29971,149.85499999989997,-0.06860478580430905 +29972,149.85999999989997,-0.06860478619708033 +29973,149.86499999989996,-0.0686047865898727 +29974,149.86999999989996,-0.06860478698268611 +29975,149.87499999989996,-0.06860478737552056 +29976,149.87999999989995,-0.06860478776837602 +29977,149.88499999989995,-0.06860478816125247 +29978,149.88999999989994,-0.06860478855414989 +29979,149.89499999989994,-0.06860478894706827 +29980,149.89999999989993,-0.06860478934000759 +29981,149.90499999989993,-0.06860478973296782 +29982,149.90999999989992,-0.06860479012594894 +29983,149.91499999989992,-0.06860479051895095 +29984,149.91999999989991,-0.06860479091197381 +29985,149.9249999998999,-0.06860479130501751 +29986,149.9299999998999,-0.06860479169808202 +29987,149.9349999998999,-0.06860479209116734 +29988,149.9399999998999,-0.06860479248427344 +29989,149.9449999998999,-0.06860479287740029 +29990,149.9499999998999,-0.06860479327054787 +29991,149.95499999989988,-0.06860479366371619 +29992,149.95999999989988,-0.06860479405690521 +29993,149.96499999989987,-0.0686047944501149 +29994,149.96999999989987,-0.06860479484334525 +29995,149.97499999989986,-0.06860479523659625 +29996,149.97999999989986,-0.06860479562986786 +29997,149.98499999989986,-0.0686047960231601 +29998,149.98999999989985,-0.06860479641647291 +29999,149.99499999989985,-0.06860479680980629 +30000,149.99999999989984,-0.0686047972031602 +30001,150.00499999989984,-0.06860479759653465 +30002,150.00999999989983,-0.0686047979899296 +30003,150.01499999989983,-0.06860479838334504 +30004,150.01999999989982,-0.06860479877678095 +30005,150.02499999989982,-0.0686047991702373 +30006,150.02999999989981,-0.06860479956371408 +30007,150.0349999998998,-0.06860479995721128 +30008,150.0399999998998,-0.06860480035072886 +30009,150.0449999998998,-0.0686048007442668 +30010,150.0499999998998,-0.06860480113782509 +30011,150.0549999998998,-0.06860480153140372 +30012,150.0599999998998,-0.06860480192500268 +30013,150.06499999989978,-0.06860480231862193 +30014,150.06999999989978,-0.06860480271226144 +30015,150.07499999989977,-0.0686048031059212 +30016,150.07999999989977,-0.06860480349960119 +30017,150.08499999989976,-0.06860480389330141 +30018,150.08999999989976,-0.06860480428702183 +30019,150.09499999989976,-0.06860480468076241 +30020,150.09999999989975,-0.06860480507452316 +30021,150.10499999989975,-0.06860480546830405 +30022,150.10999999989974,-0.06860480586210506 +30023,150.11499999989974,-0.06860480625592616 +30024,150.11999999989973,-0.06860480664976736 +30025,150.12499999989973,-0.0686048070436286 +30026,150.12999999989972,-0.0686048074375099 +30027,150.13499999989972,-0.06860480783141121 +30028,150.13999999989971,-0.06860480822533252 +30029,150.1449999998997,-0.06860480861927383 +30030,150.1499999998997,-0.0686048090132351 +30031,150.1549999998997,-0.0686048094072163 +30032,150.1599999998997,-0.06860480980121744 +30033,150.1649999998997,-0.06860481019523848 +30034,150.1699999998997,-0.06860481058927942 +30035,150.17499999989968,-0.06860481098334023 +30036,150.17999999989968,-0.06860481137742089 +30037,150.18499999989967,-0.06860481177152138 +30038,150.18999999989967,-0.06860481216564167 +30039,150.19499999989966,-0.06860481255978175 +30040,150.19999999989966,-0.06860481295394162 +30041,150.20499999989966,-0.06860481334812124 +30042,150.20999999989965,-0.0686048137423206 +30043,150.21499999989965,-0.06860481413653965 +30044,150.21999999989964,-0.06860481453077842 +30045,150.22499999989964,-0.06860481492503688 +30046,150.22999999989963,-0.06860481531931498 +30047,150.23499999989963,-0.06860481571361272 +30048,150.23999999989962,-0.0686048161079301 +30049,150.24499999989962,-0.06860481650226706 +30050,150.24999999989961,-0.06860481689662361 +30051,150.2549999998996,-0.06860481729099971 +30052,150.2599999998996,-0.06860481768539536 +30053,150.2649999998996,-0.06860481807981055 +30054,150.2699999998996,-0.06860481847424522 +30055,150.2749999998996,-0.0686048188686994 +30056,150.2799999998996,-0.06860481926317304 +30057,150.28499999989958,-0.06860481965766613 +30058,150.28999999989958,-0.06860482005217863 +30059,150.29499999989957,-0.06860482044671057 +30060,150.29999999989957,-0.06860482084126189 +30061,150.30499999989956,-0.06860482123583257 +30062,150.30999999989956,-0.06860482163042263 +30063,150.31499999989956,-0.06860482202503201 +30064,150.31999999989955,-0.0686048224196607 +30065,150.32499999989955,-0.0686048228143087 +30066,150.32999999989954,-0.06860482320897597 +30067,150.33499999989954,-0.06860482360366252 +30068,150.33999999989953,-0.06860482399836829 +30069,150.34499999989953,-0.06860482439309329 +30070,150.34999999989952,-0.06860482478783747 +30071,150.35499999989952,-0.06860482518260085 +30072,150.35999999989951,-0.0686048255773834 +30073,150.3649999998995,-0.06860482597218509 +30074,150.3699999998995,-0.0686048263670059 +30075,150.3749999998995,-0.06860482676184583 +30076,150.3799999998995,-0.06860482715670485 +30077,150.3849999998995,-0.06860482755158293 +30078,150.3899999998995,-0.06860482794648005 +30079,150.39499999989948,-0.06860482834139622 +30080,150.39999999989948,-0.0686048287363314 +30081,150.40499999989947,-0.06860482913128557 +30082,150.40999999989947,-0.06860482952625871 +30083,150.41499999989946,-0.06860482992125082 +30084,150.41999999989946,-0.06860483031626186 +30085,150.42499999989946,-0.06860483071129181 +30086,150.42999999989945,-0.06860483110634066 +30087,150.43499999989945,-0.06860483150140842 +30088,150.43999999989944,-0.06860483189649502 +30089,150.44499999989944,-0.06860483229160046 +30090,150.44999999989943,-0.06860483268672474 +30091,150.45499999989943,-0.06860483308186781 +30092,150.45999999989942,-0.06860483347702968 +30093,150.46499999989942,-0.06860483387221032 +30094,150.46999999989941,-0.06860483426740971 +30095,150.4749999998994,-0.06860483466262784 +30096,150.4799999998994,-0.06860483505786466 +30097,150.4849999998994,-0.06860483545312018 +30098,150.4899999998994,-0.06860483584839439 +30099,150.4949999998994,-0.06860483624368725 +30100,150.4999999998994,-0.06860483663899873 +30101,150.50499999989938,-0.06860483703432883 +30102,150.50999999989938,-0.06860483742967755 +30103,150.51499999989937,-0.06860483782504484 +30104,150.51999999989937,-0.06860483822043069 +30105,150.52499999989936,-0.06860483861583509 +30106,150.52999999989936,-0.06860483901125802 +30107,150.53499999989936,-0.06860483940669945 +30108,150.53999999989935,-0.06860483980215938 +30109,150.54499999989935,-0.06860484019763775 +30110,150.54999999989934,-0.0686048405931346 +30111,150.55499999989934,-0.06860484098864987 +30112,150.55999999989933,-0.06860484138418355 +30113,150.56499999989933,-0.06860484177973562 +30114,150.56999999989932,-0.06860484217530607 +30115,150.57499999989932,-0.06860484257089489 +30116,150.57999999989931,-0.06860484296650203 +30117,150.5849999998993,-0.0686048433621275 +30118,150.5899999998993,-0.06860484375777126 +30119,150.5949999998993,-0.06860484415343332 +30120,150.5999999998993,-0.06860484454911364 +30121,150.6049999998993,-0.0686048449448122 +30122,150.6099999998993,-0.06860484534052899 +30123,150.61499999989928,-0.06860484573626399 +30124,150.61999999989928,-0.06860484613201719 +30125,150.62499999989927,-0.06860484652778855 +30126,150.62999999989927,-0.06860484692357806 +30127,150.63499999989926,-0.0686048473193857 +30128,150.63999999989926,-0.06860484771521147 +30129,150.64499999989926,-0.06860484811105531 +30130,150.64999999989925,-0.06860484850691727 +30131,150.65499999989925,-0.06860484890279726 +30132,150.65999999989924,-0.0686048492986953 +30133,150.66499999989924,-0.06860484969461136 +30134,150.66999999989923,-0.06860485009054543 +30135,150.67499999989923,-0.06860485048649749 +30136,150.67999999989922,-0.06860485088246751 +30137,150.68499999989922,-0.06860485127845548 +30138,150.68999999989921,-0.06860485167446137 +30139,150.6949999998992,-0.0686048520704852 +30140,150.6999999998992,-0.06860485246652691 +30141,150.7049999998992,-0.0686048528625865 +30142,150.7099999998992,-0.06860485325866394 +30143,150.7149999998992,-0.06860485365475923 +30144,150.7199999998992,-0.06860485405087233 +30145,150.72499999989918,-0.06860485444700322 +30146,150.72999999989918,-0.06860485484315192 +30147,150.73499999989917,-0.06860485523931836 +30148,150.73999999989917,-0.06860485563550257 +30149,150.74499999989916,-0.0686048560317045 +30150,150.74999999989916,-0.06860485642792413 +30151,150.75499999989916,-0.06860485682416147 +30152,150.75999999989915,-0.06860485722041647 +30153,150.76499999989915,-0.06860485761668912 +30154,150.76999999989914,-0.06860485801297941 +30155,150.77499999989914,-0.06860485840928732 +30156,150.77999999989913,-0.06860485880561283 +30157,150.78499999989913,-0.06860485920195593 +30158,150.78999999989912,-0.06860485959831658 +30159,150.79499999989912,-0.06860485999469478 +30160,150.79999999989911,-0.06860486039109051 +30161,150.8049999998991,-0.06860486078750375 +30162,150.8099999998991,-0.06860486118393447 +30163,150.8149999998991,-0.06860486158038266 +30164,150.8199999998991,-0.06860486197684831 +30165,150.8249999998991,-0.0686048623733314 +30166,150.8299999998991,-0.0686048627698319 +30167,150.83499999989908,-0.0686048631663498 +30168,150.83999999989908,-0.06860486356288509 +30169,150.84499999989907,-0.06860486395943773 +30170,150.84999999989907,-0.06860486435600771 +30171,150.85499999989906,-0.06860486475259502 +30172,150.85999999989906,-0.06860486514919964 +30173,150.86499999989906,-0.06860486554582156 +30174,150.86999999989905,-0.06860486594246074 +30175,150.87499999989905,-0.06860486633911717 +30176,150.87999999989904,-0.06860486673579083 +30177,150.88499999989904,-0.06860486713248172 +30178,150.88999999989903,-0.06860486752918979 +30179,150.89499999989903,-0.06860486792591505 +30180,150.89999999989902,-0.06860486832265747 +30181,150.90499999989902,-0.06860486871941703 +30182,150.90999999989901,-0.06860486911619372 +30183,150.914999999899,-0.06860486951298753 +30184,150.919999999899,-0.06860486990979842 +30185,150.924999999899,-0.06860487030662636 +30186,150.929999999899,-0.06860487070347138 +30187,150.934999999899,-0.06860487110033343 +30188,150.939999999899,-0.06860487149721249 +30189,150.94499999989898,-0.06860487189410855 +30190,150.94999999989898,-0.06860487229102158 +30191,150.95499999989897,-0.06860487268795158 +30192,150.95999999989897,-0.06860487308489853 +30193,150.96499999989896,-0.0686048734818624 +30194,150.96999999989896,-0.06860487387884318 +30195,150.97499999989896,-0.06860487427584086 +30196,150.97999999989895,-0.0686048746728554 +30197,150.98499999989895,-0.0686048750698868 +30198,150.98999999989894,-0.06860487546693504 +30199,150.99499999989894,-0.06860487586400009 +30200,150.99999999989893,-0.06860487626108194 +30201,151.00499999989893,-0.06860487665818057 +30202,151.00999999989892,-0.06860487705529597 +30203,151.01499999989892,-0.06860487745242812 +30204,151.01999999989891,-0.06860487784957699 +30205,151.0249999998989,-0.06860487824674256 +30206,151.0299999998989,-0.06860487864392484 +30207,151.0349999998989,-0.06860487904112378 +30208,151.0399999998989,-0.06860487943833939 +30209,151.0449999998989,-0.06860487983557162 +30210,151.0499999998989,-0.06860488023282048 +30211,151.05499999989888,-0.06860488063008593 +30212,151.05999999989888,-0.06860488102736796 +30213,151.06499999989887,-0.06860488142466657 +30214,151.06999999989887,-0.06860488182198174 +30215,151.07499999989886,-0.06860488221931342 +30216,151.07999999989886,-0.06860488261666163 +30217,151.08499999989886,-0.06860488301402631 +30218,151.08999999989885,-0.06860488341140748 +30219,151.09499999989885,-0.06860488380880511 +30220,151.09999999989884,-0.06860488420621919 +30221,151.10499999989884,-0.06860488460364966 +30222,151.10999999989883,-0.06860488500109656 +30223,151.11499999989883,-0.06860488539855984 +30224,151.11999999989882,-0.0686048857960395 +30225,151.12499999989882,-0.0686048861935355 +30226,151.1299999998988,-0.06860488659104783 +30227,151.1349999998988,-0.06860488698857649 +30228,151.1399999998988,-0.06860488738612143 +30229,151.1449999998988,-0.06860488778368266 +30230,151.1499999998988,-0.06860488818126015 +30231,151.1549999998988,-0.06860488857885388 +30232,151.1599999998988,-0.06860488897646384 +30233,151.16499999989878,-0.06860488937409001 +30234,151.16999999989878,-0.06860488977173236 +30235,151.17499999989877,-0.06860489016939089 +30236,151.17999999989877,-0.06860489056706556 +30237,151.18499999989876,-0.0686048909647564 +30238,151.18999999989876,-0.06860489136246334 +30239,151.19499999989876,-0.06860489176018637 +30240,151.19999999989875,-0.0686048921579255 +30241,151.20499999989875,-0.0686048925556807 +30242,151.20999999989874,-0.06860489295345194 +30243,151.21499999989874,-0.06860489335123922 +30244,151.21999999989873,-0.0686048937490425 +30245,151.22499999989873,-0.06860489414686177 +30246,151.22999999989872,-0.06860489454469702 +30247,151.23499999989872,-0.06860489494254823 +30248,151.2399999998987,-0.06860489534041539 +30249,151.2449999998987,-0.06860489573829846 +30250,151.2499999998987,-0.06860489613619745 +30251,151.2549999998987,-0.06860489653411232 +30252,151.2599999998987,-0.06860489693204308 +30253,151.2649999998987,-0.06860489732998967 +30254,151.2699999998987,-0.06860489772795211 +30255,151.27499999989868,-0.06860489812593036 +30256,151.27999999989868,-0.06860489852392442 +30257,151.28499999989867,-0.06860489892193425 +30258,151.28999999989867,-0.06860489931995986 +30259,151.29499999989866,-0.06860489971800121 +30260,151.29999999989866,-0.06860490011605828 +30261,151.30499999989866,-0.06860490051413108 +30262,151.30999999989865,-0.06860490091221956 +30263,151.31499999989865,-0.06860490131032372 +30264,151.31999999989864,-0.06860490170844355 +30265,151.32499999989864,-0.06860490210657902 +30266,151.32999999989863,-0.0686049025047301 +30267,151.33499999989863,-0.0686049029028968 +30268,151.33999999989862,-0.06860490330107907 +30269,151.34499999989862,-0.06860490369927694 +30270,151.3499999998986,-0.06860490409749033 +30271,151.3549999998986,-0.06860490449571928 +30272,151.3599999998986,-0.06860490489396374 +30273,151.3649999998986,-0.06860490529222371 +30274,151.3699999998986,-0.06860490569049915 +30275,151.3749999998986,-0.06860490608879007 +30276,151.3799999998986,-0.06860490648709643 +30277,151.38499999989858,-0.06860490688541822 +30278,151.38999999989858,-0.06860490728375543 +30279,151.39499999989857,-0.06860490768210802 +30280,151.39999999989857,-0.06860490808047601 +30281,151.40499999989856,-0.06860490847885935 +30282,151.40999999989856,-0.06860490887725802 +30283,151.41499999989855,-0.06860490927567205 +30284,151.41999999989855,-0.06860490967410136 +30285,151.42499999989855,-0.06860491007254597 +30286,151.42999999989854,-0.06860491047100586 +30287,151.43499999989854,-0.068604910869481 +30288,151.43999999989853,-0.06860491126797139 +30289,151.44499999989853,-0.06860491166647699 +30290,151.44999999989852,-0.06860491206499779 +30291,151.45499999989852,-0.06860491246353378 +30292,151.4599999998985,-0.06860491286208495 +30293,151.4649999998985,-0.06860491326065125 +30294,151.4699999998985,-0.06860491365923271 +30295,151.4749999998985,-0.06860491405782926 +30296,151.4799999998985,-0.06860491445644093 +30297,151.4849999998985,-0.06860491485506766 +30298,151.4899999998985,-0.06860491525370947 +30299,151.49499999989848,-0.06860491565236632 +30300,151.49999999989848,-0.0686049160510382 +30301,151.50499999989847,-0.06860491644972509 +30302,151.50999999989847,-0.068604916848427 +30303,151.51499999989846,-0.06860491724714386 +30304,151.51999999989846,-0.06860491764587569 +30305,151.52499999989845,-0.06860491804462247 +30306,151.52999999989845,-0.06860491844338416 +30307,151.53499999989845,-0.06860491884216077 +30308,151.53999999989844,-0.06860491924095227 +30309,151.54499999989844,-0.06860491963975865 +30310,151.54999999989843,-0.06860492003857988 +30311,151.55499999989843,-0.06860492043741594 +30312,151.55999999989842,-0.06860492083626683 +30313,151.56499999989842,-0.06860492123513252 +30314,151.5699999998984,-0.06860492163401301 +30315,151.5749999998984,-0.06860492203290826 +30316,151.5799999998984,-0.06860492243181827 +30317,151.5849999998984,-0.06860492283074301 +30318,151.5899999998984,-0.06860492322968247 +30319,151.5949999998984,-0.06860492362863663 +30320,151.5999999998984,-0.06860492402760547 +30321,151.60499999989838,-0.06860492442658897 +30322,151.60999999989838,-0.06860492482558712 +30323,151.61499999989837,-0.0686049252245999 +30324,151.61999999989837,-0.06860492562362731 +30325,151.62499999989836,-0.06860492602266932 +30326,151.62999999989836,-0.06860492642172591 +30327,151.63499999989835,-0.06860492682079705 +30328,151.63999999989835,-0.06860492721988275 +30329,151.64499999989835,-0.06860492761898296 +30330,151.64999999989834,-0.0686049280180977 +30331,151.65499999989834,-0.06860492841722693 +30332,151.65999999989833,-0.06860492881637063 +30333,151.66499999989833,-0.0686049292155288 +30334,151.66999999989832,-0.06860492961470141 +30335,151.67499999989832,-0.06860493001388844 +30336,151.6799999998983,-0.06860493041308988 +30337,151.6849999998983,-0.06860493081230572 +30338,151.6899999998983,-0.06860493121153591 +30339,151.6949999998983,-0.06860493161078049 +30340,151.6999999998983,-0.0686049320100394 +30341,151.7049999998983,-0.06860493240931263 +30342,151.7099999998983,-0.06860493280860015 +30343,151.71499999989828,-0.06860493320790198 +30344,151.71999999989828,-0.06860493360721807 +30345,151.72499999989827,-0.06860493400654842 +30346,151.72999999989827,-0.068604934405893 +30347,151.73499999989826,-0.06860493480525182 +30348,151.73999999989826,-0.06860493520462484 +30349,151.74499999989825,-0.06860493560401204 +30350,151.74999999989825,-0.06860493600341341 +30351,151.75499999989825,-0.06860493640282894 +30352,151.75999999989824,-0.0686049368022586 +30353,151.76499999989824,-0.06860493720170237 +30354,151.76999999989823,-0.06860493760116025 +30355,151.77499999989823,-0.0686049380006322 +30356,151.77999999989822,-0.06860493840011823 +30357,151.78499999989822,-0.0686049387996183 +30358,151.7899999998982,-0.06860493919913244 +30359,151.7949999998982,-0.06860493959866057 +30360,151.7999999998982,-0.06860493999820269 +30361,151.8049999998982,-0.06860494039775882 +30362,151.8099999998982,-0.0686049407973289 +30363,151.8149999998982,-0.06860494119691292 +30364,151.8199999998982,-0.06860494159651087 +30365,151.82499999989818,-0.06860494199612274 +30366,151.82999999989818,-0.06860494239574852 +30367,151.83499999989817,-0.06860494279538817 +30368,151.83999999989817,-0.06860494319504169 +30369,151.84499999989816,-0.06860494359470905 +30370,151.84999999989816,-0.06860494399439024 +30371,151.85499999989815,-0.06860494439408525 +30372,151.85999999989815,-0.06860494479379405 +30373,151.86499999989815,-0.06860494519351663 +30374,151.86999999989814,-0.06860494559325296 +30375,151.87499999989814,-0.06860494599300306 +30376,151.87999999989813,-0.06860494639276687 +30377,151.88499999989813,-0.0686049467925444 +30378,151.88999999989812,-0.06860494719233563 +30379,151.89499999989812,-0.06860494759214053 +30380,151.8999999998981,-0.0686049479919591 +30381,151.9049999998981,-0.06860494839179129 +30382,151.9099999998981,-0.06860494879163713 +30383,151.9149999998981,-0.06860494919149658 +30384,151.9199999998981,-0.06860494959136962 +30385,151.9249999998981,-0.06860494999125624 +30386,151.9299999998981,-0.06860495039115641 +30387,151.93499999989808,-0.06860495079107012 +30388,151.93999999989808,-0.06860495119099737 +30389,151.94499999989807,-0.06860495159093813 +30390,151.94999999989807,-0.06860495199089238 +30391,151.95499999989806,-0.0686049523908601 +30392,151.95999999989806,-0.06860495279084129 +30393,151.96499999989805,-0.06860495319083593 +30394,151.96999999989805,-0.06860495359084398 +30395,151.97499999989805,-0.06860495399086544 +30396,151.97999999989804,-0.0686049543909003 +30397,151.98499999989804,-0.06860495479094852 +30398,151.98999999989803,-0.06860495519101012 +30399,151.99499999989803,-0.06860495559108505 +30400,151.99999999989802,-0.0686049559911733 +30401,152.00499999989802,-0.06860495639127487 +30402,152.009999999898,-0.06860495679138973 +30403,152.014999999898,-0.06860495719151785 +30404,152.019999999898,-0.06860495759165924 +30405,152.024999999898,-0.06860495799181388 +30406,152.029999999898,-0.06860495839198175 +30407,152.034999999898,-0.0686049587921628 +30408,152.039999999898,-0.06860495919235705 +30409,152.04499999989798,-0.0686049595925645 +30410,152.04999999989798,-0.0686049599927851 +30411,152.05499999989797,-0.06860496039301883 +30412,152.05999999989797,-0.0686049607932657 +30413,152.06499999989796,-0.06860496119352566 +30414,152.06999999989796,-0.06860496159379872 +30415,152.07499999989795,-0.06860496199408486 +30416,152.07999999989795,-0.06860496239438406 +30417,152.08499999989795,-0.06860496279469629 +30418,152.08999999989794,-0.06860496319502156 +30419,152.09499999989794,-0.06860496359535982 +30420,152.09999999989793,-0.06860496399571109 +30421,152.10499999989793,-0.06860496439607533 +30422,152.10999999989792,-0.06860496479645253 +30423,152.11499999989792,-0.06860496519684267 +30424,152.1199999998979,-0.06860496559724574 +30425,152.1249999998979,-0.06860496599766171 +30426,152.1299999998979,-0.06860496639809058 +30427,152.1349999998979,-0.06860496679853233 +30428,152.1399999998979,-0.06860496719898694 +30429,152.1449999998979,-0.06860496759945438 +30430,152.1499999998979,-0.06860496799993467 +30431,152.15499999989788,-0.06860496840042773 +30432,152.15999999989788,-0.06860496880093363 +30433,152.16499999989787,-0.06860496920145227 +30434,152.16999999989787,-0.0686049696019837 +30435,152.17499999989786,-0.06860497000252785 +30436,152.17999999989786,-0.06860497040308473 +30437,152.18499999989785,-0.06860497080365434 +30438,152.18999999989785,-0.06860497120423663 +30439,152.19499999989785,-0.0686049716048316 +30440,152.19999999989784,-0.06860497200543923 +30441,152.20499999989784,-0.06860497240605952 +30442,152.20999999989783,-0.06860497280669242 +30443,152.21499999989783,-0.06860497320733794 +30444,152.21999999989782,-0.06860497360799604 +30445,152.22499999989782,-0.06860497400866675 +30446,152.2299999998978,-0.06860497440935001 +30447,152.2349999998978,-0.06860497481004581 +30448,152.2399999998978,-0.06860497521075413 +30449,152.2449999998978,-0.06860497561147498 +30450,152.2499999998978,-0.06860497601220833 +30451,152.2549999998978,-0.06860497641295414 +30452,152.2599999998978,-0.06860497681371244 +30453,152.26499999989778,-0.06860497721448319 +30454,152.26999999989778,-0.06860497761526635 +30455,152.27499999989777,-0.06860497801606194 +30456,152.27999999989777,-0.06860497841686991 +30457,152.28499999989776,-0.06860497881769029 +30458,152.28999999989776,-0.06860497921852302 +30459,152.29499999989775,-0.0686049796193681 +30460,152.29999999989775,-0.06860498002022551 +30461,152.30499999989775,-0.06860498042109525 +30462,152.30999999989774,-0.06860498082197727 +30463,152.31499999989774,-0.0686049812228716 +30464,152.31999999989773,-0.06860498162377819 +30465,152.32499999989773,-0.06860498202469703 +30466,152.32999999989772,-0.0686049824256281 +30467,152.33499999989772,-0.06860498282657139 +30468,152.3399999998977,-0.0686049832275269 +30469,152.3449999998977,-0.06860498362849457 +30470,152.3499999998977,-0.06860498402947443 +30471,152.3549999998977,-0.06860498443046643 +30472,152.3599999998977,-0.06860498483147058 +30473,152.3649999998977,-0.06860498523248684 +30474,152.3699999998977,-0.06860498563351522 +30475,152.37499999989768,-0.06860498603455567 +30476,152.37999999989768,-0.0686049864356082 +30477,152.38499999989767,-0.06860498683667278 +30478,152.38999999989767,-0.06860498723774941 +30479,152.39499999989766,-0.06860498763883807 +30480,152.39999999989766,-0.06860498803993874 +30481,152.40499999989765,-0.0686049884410514 +30482,152.40999999989765,-0.06860498884217602 +30483,152.41499999989765,-0.0686049892433126 +30484,152.41999999989764,-0.06860498964446113 +30485,152.42499999989764,-0.0686049900456216 +30486,152.42999999989763,-0.06860499044679397 +30487,152.43499999989763,-0.06860499084797823 +30488,152.43999999989762,-0.06860499124917437 +30489,152.44499999989762,-0.06860499165038236 +30490,152.4499999998976,-0.06860499205160221 +30491,152.4549999998976,-0.06860499245283389 +30492,152.4599999998976,-0.06860499285407738 +30493,152.4649999998976,-0.06860499325533267 +30494,152.4699999998976,-0.06860499365659975 +30495,152.4749999998976,-0.0686049940578786 +30496,152.4799999998976,-0.06860499445916916 +30497,152.48499999989758,-0.06860499486047147 +30498,152.48999999989758,-0.06860499526178551 +30499,152.49499999989757,-0.06860499566311123 +30500,152.49999999989757,-0.06860499606444866 +30501,152.50499999989756,-0.06860499646579774 +30502,152.50999999989756,-0.06860499686715847 +30503,152.51499999989755,-0.06860499726853085 +30504,152.51999999989755,-0.06860499766991485 +30505,152.52499999989755,-0.06860499807131044 +30506,152.52999999989754,-0.06860499847271764 +30507,152.53499999989754,-0.0686049988741364 +30508,152.53999999989753,-0.06860499927556671 +30509,152.54499999989753,-0.06860499967700856 +30510,152.54999999989752,-0.06860500007846194 +30511,152.55499999989752,-0.06860500047992683 +30512,152.5599999998975,-0.06860500088140321 +30513,152.5649999998975,-0.06860500128289107 +30514,152.5699999998975,-0.06860500168439039 +30515,152.5749999998975,-0.06860500208590115 +30516,152.5799999998975,-0.06860500248742334 +30517,152.5849999998975,-0.06860500288895693 +30518,152.5899999998975,-0.06860500329050193 +30519,152.59499999989748,-0.06860500369205831 +30520,152.59999999989748,-0.06860500409362603 +30521,152.60499999989747,-0.06860500449520512 +30522,152.60999999989747,-0.06860500489679554 +30523,152.61499999989746,-0.06860500529839728 +30524,152.61999999989746,-0.06860500570001031 +30525,152.62499999989745,-0.06860500610163463 +30526,152.62999999989745,-0.06860500650327021 +30527,152.63499999989745,-0.06860500690491707 +30528,152.63999999989744,-0.06860500730657514 +30529,152.64499999989744,-0.06860500770824443 +30530,152.64999999989743,-0.06860500810992493 +30531,152.65499999989743,-0.06860500851161662 +30532,152.65999999989742,-0.06860500891331948 +30533,152.66499999989742,-0.0686050093150335 +30534,152.6699999998974,-0.06860500971675866 +30535,152.6749999998974,-0.06860501011849494 +30536,152.6799999998974,-0.06860501052024233 +30537,152.6849999998974,-0.06860501092200082 +30538,152.6899999998974,-0.06860501132377038 +30539,152.6949999998974,-0.06860501172555102 +30540,152.6999999998974,-0.06860501212734267 +30541,152.70499999989738,-0.06860501252914537 +30542,152.70999999989738,-0.06860501293095908 +30543,152.71499999989737,-0.06860501333278378 +30544,152.71999999989737,-0.06860501373461948 +30545,152.72499999989736,-0.06860501413646614 +30546,152.72999999989736,-0.06860501453832374 +30547,152.73499999989735,-0.06860501494019229 +30548,152.73999999989735,-0.06860501534207175 +30549,152.74499999989735,-0.06860501574396212 +30550,152.74999999989734,-0.06860501614586338 +30551,152.75499999989734,-0.06860501654777551 +30552,152.75999999989733,-0.06860501694969848 +30553,152.76499999989733,-0.0686050173516323 +30554,152.76999999989732,-0.06860501775357694 +30555,152.77499999989732,-0.06860501815553241 +30556,152.7799999998973,-0.06860501855749865 +30557,152.7849999998973,-0.06860501895947567 +30558,152.7899999998973,-0.06860501936146346 +30559,152.7949999998973,-0.06860501976346199 +30560,152.7999999998973,-0.06860502016547126 +30561,152.8049999998973,-0.06860502056749124 +30562,152.8099999998973,-0.06860502096952191 +30563,152.81499999989728,-0.06860502137156325 +30564,152.81999999989728,-0.06860502177361529 +30565,152.82499999989727,-0.06860502217567795 +30566,152.82999999989727,-0.06860502257775125 +30567,152.83499999989726,-0.06860502297983519 +30568,152.83999999989726,-0.06860502338192971 +30569,152.84499999989725,-0.06860502378403482 +30570,152.84999999989725,-0.06860502418615051 +30571,152.85499999989725,-0.06860502458827676 +30572,152.85999999989724,-0.06860502499041356 +30573,152.86499999989724,-0.06860502539256087 +30574,152.86999999989723,-0.06860502579471871 +30575,152.87499999989723,-0.06860502619688702 +30576,152.87999999989722,-0.06860502659906582 +30577,152.88499999989722,-0.06860502700125508 +30578,152.8899999998972,-0.06860502740345478 +30579,152.8949999998972,-0.06860502780566494 +30580,152.8999999998972,-0.06860502820788549 +30581,152.9049999998972,-0.06860502861011644 +30582,152.9099999998972,-0.06860502901235778 +30583,152.9149999998972,-0.0686050294146095 +30584,152.9199999998972,-0.06860502981687155 +30585,152.92499999989718,-0.06860503021914395 +30586,152.92999999989718,-0.06860503062142669 +30587,152.93499999989717,-0.06860503102371972 +30588,152.93999999989717,-0.06860503142602305 +30589,152.94499999989716,-0.06860503182833665 +30590,152.94999999989716,-0.06860503223066051 +30591,152.95499999989715,-0.06860503263299463 +30592,152.95999999989715,-0.06860503303533896 +30593,152.96499999989715,-0.0686050334376935 +30594,152.96999999989714,-0.06860503384005825 +30595,152.97499999989714,-0.06860503424243318 +30596,152.97999999989713,-0.06860503464481828 +30597,152.98499999989713,-0.06860503504721352 +30598,152.98999999989712,-0.0686050354496189 +30599,152.99499999989712,-0.06860503585203442 +30600,152.9999999998971,-0.06860503625446003 +30601,153.0049999998971,-0.06860503665689574 +30602,153.0099999998971,-0.06860503705934151 +30603,153.0149999998971,-0.06860503746179736 +30604,153.0199999998971,-0.06860503786426322 +30605,153.0249999998971,-0.06860503826673912 +30606,153.0299999998971,-0.06860503866922504 +30607,153.03499999989708,-0.06860503907172096 +30608,153.03999999989708,-0.06860503947422684 +30609,153.04499999989707,-0.06860503987674271 +30610,153.04999999989707,-0.06860504027926852 +30611,153.05499999989706,-0.06860504068180427 +30612,153.05999999989706,-0.06860504108434994 +30613,153.06499999989705,-0.06860504148690551 +30614,153.06999999989705,-0.06860504188947097 +30615,153.07499999989705,-0.0686050422920463 +30616,153.07999999989704,-0.06860504269463148 +30617,153.08499999989704,-0.06860504309722651 +30618,153.08999999989703,-0.06860504349983138 +30619,153.09499999989703,-0.06860504390244604 +30620,153.09999999989702,-0.06860504430507051 +30621,153.10499999989702,-0.06860504470770476 +30622,153.109999999897,-0.06860504511034879 +30623,153.114999999897,-0.06860504551300255 +30624,153.119999999897,-0.06860504591566606 +30625,153.124999999897,-0.06860504631833927 +30626,153.129999999897,-0.0686050467210222 +30627,153.134999999897,-0.06860504712371482 +30628,153.139999999897,-0.06860504752641709 +30629,153.14499999989698,-0.06860504792912904 +30630,153.14999999989698,-0.06860504833185063 +30631,153.15499999989697,-0.06860504873458184 +30632,153.15999999989697,-0.06860504913732267 +30633,153.16499999989696,-0.0686050495400731 +30634,153.16999999989696,-0.0686050499428331 +30635,153.17499999989695,-0.06860505034560267 +30636,153.17999999989695,-0.0686050507483818 +30637,153.18499999989695,-0.06860505115117047 +30638,153.18999999989694,-0.06860505155396864 +30639,153.19499999989694,-0.06860505195677633 +30640,153.19999999989693,-0.06860505235959351 +30641,153.20499999989693,-0.06860505276242014 +30642,153.20999999989692,-0.06860505316525625 +30643,153.21499999989692,-0.06860505356810181 +30644,153.2199999998969,-0.06860505397095679 +30645,153.2249999998969,-0.0686050543738212 +30646,153.2299999998969,-0.06860505477669498 +30647,153.2349999998969,-0.06860505517957816 +30648,153.2399999998969,-0.06860505558247071 +30649,153.2449999998969,-0.06860505598537261 +30650,153.2499999998969,-0.06860505638828386 +30651,153.25499999989688,-0.06860505679120442 +30652,153.25999999989688,-0.06860505719413429 +30653,153.26499999989687,-0.06860505759707346 +30654,153.26999999989687,-0.06860505800002188 +30655,153.27499999989686,-0.06860505840297958 +30656,153.27999999989686,-0.06860505880594653 +30657,153.28499999989685,-0.06860505920892271 +30658,153.28999999989685,-0.0686050596119081 +30659,153.29499999989685,-0.0686050600149027 +30660,153.29999999989684,-0.06860506041790648 +30661,153.30499999989684,-0.06860506082091944 +30662,153.30999999989683,-0.06860506122394155 +30663,153.31499999989683,-0.0686050616269728 +30664,153.31999999989682,-0.06860506203001318 +30665,153.32499999989682,-0.06860506243306266 +30666,153.3299999998968,-0.06860506283612124 +30667,153.3349999998968,-0.0686050632391889 +30668,153.3399999998968,-0.06860506364226562 +30669,153.3449999998968,-0.0686050640453514 +30670,153.3499999998968,-0.06860506444844622 +30671,153.3549999998968,-0.06860506485155005 +30672,153.3599999998968,-0.06860506525466288 +30673,153.36499999989678,-0.06860506565778471 +30674,153.36999999989678,-0.0686050660609155 +30675,153.37499999989677,-0.06860506646405527 +30676,153.37999999989677,-0.06860506686720398 +30677,153.38499999989676,-0.0686050672703616 +30678,153.38999999989676,-0.06860506767352816 +30679,153.39499999989675,-0.06860506807670361 +30680,153.39999999989675,-0.06860506847988794 +30681,153.40499999989675,-0.06860506888308113 +30682,153.40999999989674,-0.06860506928628318 +30683,153.41499999989674,-0.06860506968949408 +30684,153.41999999989673,-0.06860507009271379 +30685,153.42499999989673,-0.06860507049594232 +30686,153.42999999989672,-0.06860507089917964 +30687,153.43499999989672,-0.06860507130242574 +30688,153.4399999998967,-0.06860507170568061 +30689,153.4449999998967,-0.06860507210894423 +30690,153.4499999998967,-0.06860507251221658 +30691,153.4549999998967,-0.06860507291549764 +30692,153.4599999998967,-0.06860507331878742 +30693,153.4649999998967,-0.0686050737220859 +30694,153.4699999998967,-0.06860507412539303 +30695,153.47499999989668,-0.06860507452870883 +30696,153.47999999989668,-0.06860507493203327 +30697,153.48499999989667,-0.06860507533536635 +30698,153.48999999989667,-0.06860507573870804 +30699,153.49499999989666,-0.06860507614205832 +30700,153.49999999989666,-0.0686050765454172 +30701,153.50499999989665,-0.06860507694878464 +30702,153.50999999989665,-0.06860507735216063 +30703,153.51499999989665,-0.06860507775554517 +30704,153.51999999989664,-0.06860507815893822 +30705,153.52499999989664,-0.0686050785623398 +30706,153.52999999989663,-0.06860507896574987 +30707,153.53499999989663,-0.06860507936916842 +30708,153.53999999989662,-0.06860507977259545 +30709,153.54499999989662,-0.06860508017603091 +30710,153.5499999998966,-0.06860508057947481 +30711,153.5549999998966,-0.06860508098292716 +30712,153.5599999998966,-0.06860508138638788 +30713,153.5649999998966,-0.06860508178985701 +30714,153.5699999998966,-0.06860508219333451 +30715,153.5749999998966,-0.06860508259682038 +30716,153.5799999998966,-0.06860508300031459 +30717,153.58499999989658,-0.06860508340381713 +30718,153.58999999989658,-0.06860508380732801 +30719,153.59499999989657,-0.06860508421084717 +30720,153.59999999989657,-0.06860508461437462 +30721,153.60499999989656,-0.06860508501791034 +30722,153.60999999989656,-0.06860508542145433 +30723,153.61499999989655,-0.06860508582500655 +30724,153.61999999989655,-0.06860508622856701 +30725,153.62499999989654,-0.06860508663213569 +30726,153.62999999989654,-0.06860508703571254 +30727,153.63499999989654,-0.0686050874392976 +30728,153.63999999989653,-0.06860508784289081 +30729,153.64499999989653,-0.06860508824649218 +30730,153.64999999989652,-0.0686050886501017 +30731,153.65499999989652,-0.06860508905371936 +30732,153.6599999998965,-0.06860508945734511 +30733,153.6649999998965,-0.06860508986097896 +30734,153.6699999998965,-0.0686050902646209 +30735,153.6749999998965,-0.0686050906682709 +30736,153.6799999998965,-0.06860509107192896 +30737,153.6849999998965,-0.06860509147559504 +30738,153.6899999998965,-0.06860509187926915 +30739,153.69499999989648,-0.06860509228295128 +30740,153.69999999989648,-0.06860509268664139 +30741,153.70499999989647,-0.06860509309033948 +30742,153.70999999989647,-0.06860509349404553 +30743,153.71499999989646,-0.06860509389775955 +30744,153.71999999989646,-0.06860509430148148 +30745,153.72499999989645,-0.06860509470521134 +30746,153.72999999989645,-0.0686050951089491 +30747,153.73499999989644,-0.06860509551269477 +30748,153.73999999989644,-0.0686050959164483 +30749,153.74499999989644,-0.06860509632020968 +30750,153.74999999989643,-0.06860509672397892 +30751,153.75499999989643,-0.068605097127756 +30752,153.75999999989642,-0.0686050975315409 +30753,153.76499999989642,-0.06860509793533359 +30754,153.7699999998964,-0.06860509833913407 +30755,153.7749999998964,-0.06860509874294234 +30756,153.7799999998964,-0.06860509914675834 +30757,153.7849999998964,-0.06860509955058211 +30758,153.7899999998964,-0.06860509995441359 +30759,153.7949999998964,-0.0686051003582528 +30760,153.7999999998964,-0.06860510076209969 +30761,153.80499999989638,-0.06860510116595428 +30762,153.80999999989638,-0.06860510156981654 +30763,153.81499999989637,-0.06860510197368647 +30764,153.81999999989637,-0.06860510237756402 +30765,153.82499999989636,-0.06860510278144923 +30766,153.82999999989636,-0.06860510318534202 +30767,153.83499999989635,-0.06860510358924242 +30768,153.83999999989635,-0.06860510399315041 +30769,153.84499999989634,-0.06860510439706596 +30770,153.84999999989634,-0.06860510480098907 +30771,153.85499999989634,-0.06860510520491972 +30772,153.85999999989633,-0.0686051056088579 +30773,153.86499999989633,-0.06860510601280359 +30774,153.86999999989632,-0.06860510641675677 +30775,153.87499999989632,-0.06860510682071744 +30776,153.8799999998963,-0.06860510722468559 +30777,153.8849999998963,-0.06860510762866118 +30778,153.8899999998963,-0.06860510803264422 +30779,153.8949999998963,-0.06860510843663467 +30780,153.8999999998963,-0.06860510884063253 +30781,153.9049999998963,-0.06860510924463781 +30782,153.90999999989629,-0.06860510964865044 +30783,153.91499999989628,-0.06860511005267046 +30784,153.91999999989628,-0.06860511045669782 +30785,153.92499999989627,-0.06860511086073252 +30786,153.92999999989627,-0.06860511126477455 +30787,153.93499999989626,-0.06860511166882388 +30788,153.93999999989626,-0.06860511207288052 +30789,153.94499999989625,-0.06860511247694442 +30790,153.94999999989625,-0.0686051128810156 +30791,153.95499999989624,-0.06860511328509404 +30792,153.95999999989624,-0.06860511368917971 +30793,153.96499999989624,-0.06860511409327259 +30794,153.96999999989623,-0.0686051144973727 +30795,153.97499999989623,-0.06860511490148 +30796,153.97999999989622,-0.06860511530559447 +30797,153.98499999989622,-0.0686051157097161 +30798,153.9899999998962,-0.06860511611384489 +30799,153.9949999998962,-0.06860511651798082 +30800,153.9999999998962,-0.06860511692212387 +30801,154.0049999998962,-0.06860511732627403 +30802,154.0099999998962,-0.06860511773043128 +30803,154.0149999998962,-0.06860511813459562 +30804,154.01999999989619,-0.06860511853876702 +30805,154.02499999989618,-0.06860511894294546 +30806,154.02999999989618,-0.06860511934713096 +30807,154.03499999989617,-0.06860511975132345 +30808,154.03999999989617,-0.06860512015552298 +30809,154.04499999989616,-0.06860512055972948 +30810,154.04999999989616,-0.06860512096394296 +30811,154.05499999989615,-0.06860512136816341 +30812,154.05999999989615,-0.06860512177239082 +30813,154.06499999989614,-0.06860512217662516 +30814,154.06999999989614,-0.06860512258086643 +30815,154.07499999989614,-0.06860512298511459 +30816,154.07999999989613,-0.06860512338936965 +30817,154.08499999989613,-0.0686051237936316 +30818,154.08999999989612,-0.0686051241979004 +30819,154.09499999989612,-0.06860512460217606 +30820,154.0999999998961,-0.06860512500645857 +30821,154.1049999998961,-0.06860512541074788 +30822,154.1099999998961,-0.06860512581504402 +30823,154.1149999998961,-0.06860512621934695 +30824,154.1199999998961,-0.06860512662365664 +30825,154.1249999998961,-0.06860512702797311 +30826,154.12999999989609,-0.06860512743229633 +30827,154.13499999989608,-0.06860512783662628 +30828,154.13999999989608,-0.06860512824096296 +30829,154.14499999989607,-0.06860512864530634 +30830,154.14999999989607,-0.06860512904965643 +30831,154.15499999989606,-0.0686051294540132 +30832,154.15999999989606,-0.06860512985837663 +30833,154.16499999989605,-0.06860513026274671 +30834,154.16999999989605,-0.06860513066712344 +30835,154.17499999989604,-0.06860513107150677 +30836,154.17999999989604,-0.06860513147589672 +30837,154.18499999989604,-0.06860513188029327 +30838,154.18999999989603,-0.06860513228469639 +30839,154.19499999989603,-0.06860513268910609 +30840,154.19999999989602,-0.06860513309352234 +30841,154.20499999989602,-0.06860513349794513 +30842,154.209999999896,-0.06860513390237445 +30843,154.214999999896,-0.06860513430681027 +30844,154.219999999896,-0.0686051347112526 +30845,154.224999999896,-0.06860513511570139 +30846,154.229999999896,-0.06860513552015667 +30847,154.234999999896,-0.0686051359246184 +30848,154.23999999989599,-0.06860513632908656 +30849,154.24499999989598,-0.06860513673356115 +30850,154.24999999989598,-0.06860513713804216 +30851,154.25499999989597,-0.06860513754252956 +30852,154.25999999989597,-0.06860513794702336 +30853,154.26499999989596,-0.06860513835152351 +30854,154.26999999989596,-0.06860513875603001 +30855,154.27499999989595,-0.06860513916054288 +30856,154.27999999989595,-0.06860513956506206 +30857,154.28499999989594,-0.06860513996958756 +30858,154.28999999989594,-0.06860514037411936 +30859,154.29499999989594,-0.06860514077865744 +30860,154.29999999989593,-0.0686051411832018 +30861,154.30499999989593,-0.06860514158775241 +30862,154.30999999989592,-0.06860514199230927 +30863,154.31499999989592,-0.06860514239687235 +30864,154.3199999998959,-0.06860514280144166 +30865,154.3249999998959,-0.06860514320601717 +30866,154.3299999998959,-0.06860514361059886 +30867,154.3349999998959,-0.06860514401518672 +30868,154.3399999998959,-0.06860514441978074 +30869,154.3449999998959,-0.06860514482438092 +30870,154.34999999989589,-0.06860514522898721 +30871,154.35499999989588,-0.06860514563359964 +30872,154.35999999989588,-0.06860514603821817 +30873,154.36499999989587,-0.06860514644284278 +30874,154.36999999989587,-0.06860514684747347 +30875,154.37499999989586,-0.06860514725211023 +30876,154.37999999989586,-0.06860514765675303 +30877,154.38499999989585,-0.06860514806140186 +30878,154.38999999989585,-0.06860514846605673 +30879,154.39499999989584,-0.06860514887071759 +30880,154.39999999989584,-0.06860514927538444 +30881,154.40499999989584,-0.06860514968005726 +30882,154.40999999989583,-0.06860515008473607 +30883,154.41499999989583,-0.06860515048942083 +30884,154.41999999989582,-0.06860515089411151 +30885,154.42499999989582,-0.0686051512988081 +30886,154.4299999998958,-0.06860515170351063 +30887,154.4349999998958,-0.06860515210821905 +30888,154.4399999998958,-0.06860515251293335 +30889,154.4449999998958,-0.06860515291765351 +30890,154.4499999998958,-0.06860515332237954 +30891,154.4549999998958,-0.0686051537271114 +30892,154.45999999989579,-0.06860515413184909 +30893,154.46499999989578,-0.06860515453659259 +30894,154.46999999989578,-0.0686051549413419 +30895,154.47499999989577,-0.06860515534609699 +30896,154.47999999989577,-0.06860515575085784 +30897,154.48499999989576,-0.06860515615562444 +30898,154.48999999989576,-0.0686051565603968 +30899,154.49499999989575,-0.06860515696517487 +30900,154.49999999989575,-0.06860515736995866 +30901,154.50499999989574,-0.06860515777474817 +30902,154.50999999989574,-0.06860515817954335 +30903,154.51499999989574,-0.06860515858434421 +30904,154.51999999989573,-0.06860515898915072 +30905,154.52499999989573,-0.06860515939396289 +30906,154.52999999989572,-0.0686051597987807 +30907,154.53499999989572,-0.06860516020360412 +30908,154.5399999998957,-0.06860516060843314 +30909,154.5449999998957,-0.06860516101326776 +30910,154.5499999998957,-0.06860516141810795 +30911,154.5549999998957,-0.06860516182295372 +30912,154.5599999998957,-0.06860516222780502 +30913,154.5649999998957,-0.06860516263266188 +30914,154.56999999989569,-0.06860516303752423 +30915,154.57499999989568,-0.06860516344239212 +30916,154.57999999989568,-0.06860516384726549 +30917,154.58499999989567,-0.06860516425214433 +30918,154.58999999989567,-0.06860516465702865 +30919,154.59499999989566,-0.06860516506191842 +30920,154.59999999989566,-0.06860516546681365 +30921,154.60499999989565,-0.0686051658717143 +30922,154.60999999989565,-0.06860516627662035 +30923,154.61499999989564,-0.06860516668153181 +30924,154.61999999989564,-0.06860516708644866 +30925,154.62499999989564,-0.06860516749137088 +30926,154.62999999989563,-0.06860516789629846 +30927,154.63499999989563,-0.06860516830123138 +30928,154.63999999989562,-0.06860516870616962 +30929,154.64499999989562,-0.06860516911111318 +30930,154.6499999998956,-0.06860516951606206 +30931,154.6549999998956,-0.06860516992101623 +30932,154.6599999998956,-0.06860517032597567 +30933,154.6649999998956,-0.06860517073094037 +30934,154.6699999998956,-0.06860517113591033 +30935,154.6749999998956,-0.06860517154088551 +30936,154.67999999989559,-0.06860517194586592 +30937,154.68499999989558,-0.06860517235085155 +30938,154.68999999989558,-0.06860517275584237 +30939,154.69499999989557,-0.06860517316083836 +30940,154.69999999989557,-0.06860517356583952 +30941,154.70499999989556,-0.06860517397084584 +30942,154.70999999989556,-0.06860517437585731 +30943,154.71499999989555,-0.0686051747808739 +30944,154.71999999989555,-0.0686051751858956 +30945,154.72499999989554,-0.06860517559092238 +30946,154.72999999989554,-0.06860517599595427 +30947,154.73499999989554,-0.06860517640099123 +30948,154.73999999989553,-0.06860517680603324 +30949,154.74499999989553,-0.06860517721108032 +30950,154.74999999989552,-0.06860517761613243 +30951,154.75499999989552,-0.06860517802118955 +30952,154.7599999998955,-0.06860517842625168 +30953,154.7649999998955,-0.06860517883131878 +30954,154.7699999998955,-0.06860517923639088 +30955,154.7749999998955,-0.06860517964146794 +30956,154.7799999998955,-0.06860518004654995 +30957,154.7849999998955,-0.0686051804516369 +30958,154.78999999989549,-0.06860518085672877 +30959,154.79499999989548,-0.06860518126182555 +30960,154.79999999989548,-0.06860518166692724 +30961,154.80499999989547,-0.0686051820720338 +30962,154.80999999989547,-0.06860518247714524 +30963,154.81499999989546,-0.06860518288226153 +30964,154.81999999989546,-0.06860518328738266 +30965,154.82499999989545,-0.06860518369250862 +30966,154.82999999989545,-0.0686051840976394 +30967,154.83499999989544,-0.06860518450277497 +30968,154.83999999989544,-0.06860518490791534 +30969,154.84499999989544,-0.06860518531306051 +30970,154.84999999989543,-0.06860518571821042 +30971,154.85499999989543,-0.0686051861233651 +30972,154.85999999989542,-0.06860518652852449 +30973,154.86499999989542,-0.0686051869336886 +30974,154.8699999998954,-0.06860518733885744 +30975,154.8749999998954,-0.06860518774403096 +30976,154.8799999998954,-0.06860518814920917 +30977,154.8849999998954,-0.06860518855439204 +30978,154.8899999998954,-0.06860518895957958 +30979,154.8949999998954,-0.06860518936477177 +30980,154.89999999989539,-0.06860518976996856 +30981,154.90499999989538,-0.06860519017516999 +30982,154.90999999989538,-0.06860519058037601 +30983,154.91499999989537,-0.06860519098558662 +30984,154.91999999989537,-0.0686051913908018 +30985,154.92499999989536,-0.06860519179602156 +30986,154.92999999989536,-0.06860519220124586 +30987,154.93499999989535,-0.06860519260647469 +30988,154.93999999989535,-0.06860519301170805 +30989,154.94499999989534,-0.06860519341694592 +30990,154.94999999989534,-0.06860519382218827 +30991,154.95499999989534,-0.0686051942274351 +30992,154.95999999989533,-0.06860519463268643 +30993,154.96499999989533,-0.06860519503794218 +30994,154.96999999989532,-0.06860519544320239 +30995,154.97499999989532,-0.06860519584846704 +30996,154.9799999998953,-0.06860519625373608 +30997,154.9849999998953,-0.06860519665900953 +30998,154.9899999998953,-0.06860519706428739 +30999,154.9949999998953,-0.0686051974695696 +31000,154.9999999998953,-0.0686051978748562 +31001,155.0049999998953,-0.06860519828014712 +31002,155.00999999989529,-0.06860519868544239 +31003,155.01499999989528,-0.06860519909074198 +31004,155.01999999989528,-0.06860519949604588 +31005,155.02499999989527,-0.06860519990135407 +31006,155.02999999989527,-0.06860520030666654 +31007,155.03499999989526,-0.0686052007119833 +31008,155.03999999989526,-0.06860520111730431 +31009,155.04499999989525,-0.06860520152262956 +31010,155.04999999989525,-0.06860520192795903 +31011,155.05499999989524,-0.06860520233329273 +31012,155.05999999989524,-0.06860520273863062 +31013,155.06499999989524,-0.06860520314397271 +31014,155.06999999989523,-0.06860520354931898 +31015,155.07499999989523,-0.06860520395466942 +31016,155.07999999989522,-0.068605204360024 +31017,155.08499999989522,-0.06860520476538272 +31018,155.0899999998952,-0.06860520517074556 +31019,155.0949999998952,-0.06860520557611251 +31020,155.0999999998952,-0.06860520598148356 +31021,155.1049999998952,-0.0686052063868587 +31022,155.1099999998952,-0.06860520679223792 +31023,155.1149999998952,-0.06860520719762117 +31024,155.11999999989519,-0.06860520760300848 +31025,155.12499999989518,-0.06860520800839982 +31026,155.12999999989518,-0.0686052084137952 +31027,155.13499999989517,-0.06860520881919457 +31028,155.13999999989517,-0.06860520922459794 +31029,155.14499999989516,-0.0686052096300053 +31030,155.14999999989516,-0.0686052100354166 +31031,155.15499999989515,-0.06860521044083187 +31032,155.15999999989515,-0.06860521084625107 +31033,155.16499999989514,-0.06860521125167421 +31034,155.16999999989514,-0.06860521165710125 +31035,155.17499999989514,-0.0686052120625322 +31036,155.17999999989513,-0.06860521246796704 +31037,155.18499999989513,-0.06860521287340575 +31038,155.18999999989512,-0.06860521327884833 +31039,155.19499999989512,-0.06860521368429476 +31040,155.1999999998951,-0.068605214089745 +31041,155.2049999998951,-0.06860521449519909 +31042,155.2099999998951,-0.06860521490065699 +31043,155.2149999998951,-0.06860521530611868 +31044,155.2199999998951,-0.06860521571158415 +31045,155.2249999998951,-0.06860521611705339 +31046,155.22999999989509,-0.0686052165225264 +31047,155.23499999989508,-0.06860521692800313 +31048,155.23999999989508,-0.06860521733348361 +31049,155.24499999989507,-0.06860521773896781 +31050,155.24999999989507,-0.0686052181444557 +31051,155.25499999989506,-0.06860521854994729 +31052,155.25999999989506,-0.06860521895544257 +31053,155.26499999989505,-0.06860521936094151 +31054,155.26999999989505,-0.0686052197664441 +31055,155.27499999989504,-0.06860522017195032 +31056,155.27999999989504,-0.06860522057746019 +31057,155.28499999989504,-0.06860522098297367 +31058,155.28999999989503,-0.06860522138849075 +31059,155.29499999989503,-0.06860522179401142 +31060,155.29999999989502,-0.06860522219953566 +31061,155.30499999989502,-0.06860522260506347 +31062,155.309999999895,-0.06860522301059481 +31063,155.314999999895,-0.06860522341612971 +31064,155.319999999895,-0.06860522382166812 +31065,155.324999999895,-0.06860522422721005 +31066,155.329999999895,-0.06860522463275547 +31067,155.334999999895,-0.06860522503830437 +31068,155.33999999989499,-0.06860522544385675 +31069,155.34499999989498,-0.06860522584941259 +31070,155.34999999989498,-0.06860522625497188 +31071,155.35499999989497,-0.0686052266605346 +31072,155.35999999989497,-0.06860522706610074 +31073,155.36499999989496,-0.06860522747167029 +31074,155.36999999989496,-0.06860522787724324 +31075,155.37499999989495,-0.06860522828281956 +31076,155.37999999989495,-0.06860522868839927 +31077,155.38499999989494,-0.06860522909398231 +31078,155.38999999989494,-0.06860522949956871 +31079,155.39499999989494,-0.06860522990515844 +31080,155.39999999989493,-0.06860523031075148 +31081,155.40499999989493,-0.06860523071634782 +31082,155.40999999989492,-0.06860523112194745 +31083,155.41499999989492,-0.06860523152755038 +31084,155.4199999998949,-0.06860523193315655 +31085,155.4249999998949,-0.068605232338766 +31086,155.4299999998949,-0.06860523274437869 +31087,155.4349999998949,-0.06860523314999459 +31088,155.4399999998949,-0.06860523355561371 +31089,155.4449999998949,-0.06860523396123602 +31090,155.44999999989489,-0.06860523436686154 +31091,155.45499999989488,-0.06860523477249023 +31092,155.45999999989488,-0.06860523517812207 +31093,155.46499999989487,-0.06860523558375708 +31094,155.46999999989487,-0.06860523598939522 +31095,155.47499999989486,-0.06860523639503649 +31096,155.47999999989486,-0.06860523680068085 +31097,155.48499999989485,-0.06860523720632834 +31098,155.48999999989485,-0.06860523761197891 +31099,155.49499999989484,-0.06860523801763255 +31100,155.49999999989484,-0.06860523842328925 +31101,155.50499999989484,-0.068605238828949 +31102,155.50999999989483,-0.06860523923461179 +31103,155.51499999989483,-0.0686052396402776 +31104,155.51999999989482,-0.0686052400459464 +31105,155.52499999989482,-0.06860524045161821 +31106,155.5299999998948,-0.06860524085729301 +31107,155.5349999998948,-0.0686052412629708 +31108,155.5399999998948,-0.06860524166865153 +31109,155.5449999998948,-0.06860524207433522 +31110,155.5499999998948,-0.06860524248002182 +31111,155.5549999998948,-0.06860524288571136 +31112,155.55999999989479,-0.06860524329140381 +31113,155.56499999989478,-0.06860524369709915 +31114,155.56999999989478,-0.06860524410279738 +31115,155.57499999989477,-0.06860524450849848 +31116,155.57999999989477,-0.06860524491420243 +31117,155.58499999989476,-0.06860524531990923 +31118,155.58999999989476,-0.06860524572561887 +31119,155.59499999989475,-0.06860524613133132 +31120,155.59999999989475,-0.06860524653704657 +31121,155.60499999989474,-0.06860524694276462 +31122,155.60999999989474,-0.06860524734848547 +31123,155.61499999989474,-0.06860524775420906 +31124,155.61999999989473,-0.06860524815993542 +31125,155.62499999989473,-0.06860524856566452 +31126,155.62999999989472,-0.06860524897139636 +31127,155.63499999989472,-0.06860524937713092 +31128,155.6399999998947,-0.06860524978286817 +31129,155.6449999998947,-0.06860525018860812 +31130,155.6499999998947,-0.06860525059435077 +31131,155.6549999998947,-0.06860525100009607 +31132,155.6599999998947,-0.06860525140584402 +31133,155.6649999998947,-0.06860525181159462 +31134,155.66999999989469,-0.06860525221734785 +31135,155.67499999989468,-0.06860525262310371 +31136,155.67999999989468,-0.06860525302886217 +31137,155.68499999989467,-0.06860525343462322 +31138,155.68999999989467,-0.06860525384038685 +31139,155.69499999989466,-0.06860525424615305 +31140,155.69999999989466,-0.06860525465192181 +31141,155.70499999989465,-0.0686052550576931 +31142,155.70999999989465,-0.06860525546346694 +31143,155.71499999989464,-0.06860525586924328 +31144,155.71999999989464,-0.06860525627502213 +31145,155.72499999989464,-0.06860525668080346 +31146,155.72999999989463,-0.06860525708658728 +31147,155.73499999989463,-0.06860525749237359 +31148,155.73999999989462,-0.06860525789816233 +31149,155.74499999989462,-0.0686052583039535 +31150,155.7499999998946,-0.06860525870974712 +31151,155.7549999998946,-0.06860525911554315 +31152,155.7599999998946,-0.0686052595213416 +31153,155.7649999998946,-0.06860525992714243 +31154,155.7699999998946,-0.06860526033294563 +31155,155.7749999998946,-0.06860526073875121 +31156,155.77999999989459,-0.06860526114455916 +31157,155.78499999989458,-0.06860526155036942 +31158,155.78999999989458,-0.06860526195618204 +31159,155.79499999989457,-0.06860526236199695 +31160,155.79999999989457,-0.06860526276781419 +31161,155.80499999989456,-0.0686052631736337 +31162,155.80999999989456,-0.06860526357945551 +31163,155.81499999989455,-0.06860526398527958 +31164,155.81999999989455,-0.06860526439110591 +31165,155.82499999989454,-0.06860526479693448 +31166,155.82999999989454,-0.06860526520276529 +31167,155.83499999989453,-0.06860526560859831 +31168,155.83999999989453,-0.06860526601443352 +31169,155.84499999989453,-0.06860526642027094 +31170,155.84999999989452,-0.06860526682611054 +31171,155.85499999989452,-0.0686052672319523 +31172,155.8599999998945,-0.06860526763779622 +31173,155.8649999998945,-0.06860526804364228 +31174,155.8699999998945,-0.06860526844949048 +31175,155.8749999998945,-0.0686052688553408 +31176,155.8799999998945,-0.06860526926119322 +31177,155.8849999998945,-0.06860526966704772 +31178,155.88999999989448,-0.06860527007290432 +31179,155.89499999989448,-0.068605270478763 +31180,155.89999999989448,-0.0686052708846237 +31181,155.90499999989447,-0.06860527129048648 +31182,155.90999999989447,-0.06860527169635126 +31183,155.91499999989446,-0.06860527210221808 +31184,155.91999999989446,-0.06860527250808691 +31185,155.92499999989445,-0.06860527291395774 +31186,155.92999999989445,-0.06860527331983053 +31187,155.93499999989444,-0.06860527372570531 +31188,155.93999999989444,-0.06860527413158203 +31189,155.94499999989443,-0.06860527453746072 +31190,155.94999999989443,-0.06860527494334133 +31191,155.95499999989443,-0.06860527534922387 +31192,155.95999999989442,-0.06860527575510832 +31193,155.96499999989442,-0.06860527616099465 +31194,155.9699999998944,-0.06860527656688288 +31195,155.9749999998944,-0.06860527697277297 +31196,155.9799999998944,-0.06860527737866493 +31197,155.9849999998944,-0.06860527778455873 +31198,155.9899999998944,-0.06860527819045435 +31199,155.9949999998944,-0.06860527859635182 +31200,155.99999999989438,-0.0686052790022511 +31201,156.00499999989438,-0.06860527940815217 +31202,156.00999999989438,-0.06860527981405502 +31203,156.01499999989437,-0.06860528021995965 +31204,156.01999999989437,-0.06860528062586604 +31205,156.02499999989436,-0.06860528103177418 +31206,156.02999999989436,-0.06860528143768407 +31207,156.03499999989435,-0.06860528184359568 +31208,156.03999999989435,-0.06860528224950899 +31209,156.04499999989434,-0.06860528265542401 +31210,156.04999999989434,-0.06860528306134071 +31211,156.05499999989433,-0.0686052834672591 +31212,156.05999999989433,-0.06860528387317914 +31213,156.06499999989433,-0.06860528427910084 +31214,156.06999999989432,-0.06860528468502419 +31215,156.07499999989432,-0.06860528509094915 +31216,156.0799999998943,-0.06860528549687574 +31217,156.0849999998943,-0.06860528590280393 +31218,156.0899999998943,-0.06860528630873369 +31219,156.0949999998943,-0.06860528671466505 +31220,156.0999999998943,-0.06860528712059798 +31221,156.1049999998943,-0.06860528752653246 +31222,156.10999999989428,-0.06860528793246848 +31223,156.11499999989428,-0.06860528833840601 +31224,156.11999999989428,-0.06860528874434507 +31225,156.12499999989427,-0.06860528915028564 +31226,156.12999999989427,-0.0686052895562277 +31227,156.13499999989426,-0.06860528996217126 +31228,156.13999999989426,-0.06860529036811627 +31229,156.14499999989425,-0.06860529077406274 +31230,156.14999999989425,-0.06860529118001066 +31231,156.15499999989424,-0.06860529158596 +31232,156.15999999989424,-0.06860529199191077 +31233,156.16499999989423,-0.06860529239786295 +31234,156.16999999989423,-0.06860529280381653 +31235,156.17499999989423,-0.06860529320977149 +31236,156.17999999989422,-0.06860529361572781 +31237,156.18499999989422,-0.06860529402168551 +31238,156.1899999998942,-0.06860529442764456 +31239,156.1949999998942,-0.06860529483360493 +31240,156.1999999998942,-0.06860529523956663 +31241,156.2049999998942,-0.06860529564552965 +31242,156.2099999998942,-0.06860529605149397 +31243,156.2149999998942,-0.06860529645745958 +31244,156.21999999989418,-0.06860529686342647 +31245,156.22499999989418,-0.0686052972693946 +31246,156.22999999989418,-0.068605297675364 +31247,156.23499999989417,-0.06860529808133464 +31248,156.23999999989417,-0.0686052984873065 +31249,156.24499999989416,-0.06860529889327958 +31250,156.24999999989416,-0.06860529929925385 +31251,156.25499999989415,-0.06860529970522933 +31252,156.25999999989415,-0.06860530011120598 +31253,156.26499999989414,-0.0686053005171838 +31254,156.26999999989414,-0.06860530092316279 +31255,156.27499999989413,-0.0686053013291429 +31256,156.27999999989413,-0.06860530173512416 +31257,156.28499999989413,-0.06860530214110654 +31258,156.28999999989412,-0.06860530254709002 +31259,156.29499999989412,-0.0686053029530746 +31260,156.2999999998941,-0.06860530335906026 +31261,156.3049999998941,-0.068605303765047 +31262,156.3099999998941,-0.06860530417103479 +31263,156.3149999998941,-0.06860530457702363 +31264,156.3199999998941,-0.06860530498301351 +31265,156.3249999998941,-0.06860530538900442 +31266,156.32999999989408,-0.06860530579499632 +31267,156.33499999989408,-0.06860530620098923 +31268,156.33999999989408,-0.06860530660698314 +31269,156.34499999989407,-0.06860530701297801 +31270,156.34999999989407,-0.06860530741897386 +31271,156.35499999989406,-0.06860530782497067 +31272,156.35999999989406,-0.0686053082309684 +31273,156.36499999989405,-0.06860530863696707 +31274,156.36999999989405,-0.06860530904296665 +31275,156.37499999989404,-0.06860530944896713 +31276,156.37999999989404,-0.06860530985496852 +31277,156.38499999989403,-0.06860531026097078 +31278,156.38999999989403,-0.0686053106669739 +31279,156.39499999989403,-0.06860531107297789 +31280,156.39999999989402,-0.06860531147898272 +31281,156.40499999989402,-0.06860531188498838 +31282,156.409999999894,-0.06860531229099487 +31283,156.414999999894,-0.06860531269700217 +31284,156.419999999894,-0.06860531310301027 +31285,156.424999999894,-0.06860531350901915 +31286,156.429999999894,-0.06860531391502879 +31287,156.434999999894,-0.06860531432103921 +31288,156.43999999989398,-0.06860531472705036 +31289,156.44499999989398,-0.06860531513306228 +31290,156.44999999989398,-0.06860531553907491 +31291,156.45499999989397,-0.06860531594508826 +31292,156.45999999989397,-0.0686053163511023 +31293,156.46499999989396,-0.06860531675711705 +31294,156.46999999989396,-0.06860531716313246 +31295,156.47499999989395,-0.06860531756914856 +31296,156.47999999989395,-0.06860531797516531 +31297,156.48499999989394,-0.0686053183811827 +31298,156.48999999989394,-0.06860531878720072 +31299,156.49499999989393,-0.06860531919321936 +31300,156.49999999989393,-0.06860531959923862 +31301,156.50499999989393,-0.06860532000525846 +31302,156.50999999989392,-0.0686053204112789 +31303,156.51499999989392,-0.0686053208172999 +31304,156.5199999998939,-0.06860532122332147 +31305,156.5249999998939,-0.06860532162934359 +31306,156.5299999998939,-0.06860532203536626 +31307,156.5349999998939,-0.06860532244138944 +31308,156.5399999998939,-0.06860532284741314 +31309,156.5449999998939,-0.06860532325343734 +31310,156.54999999989388,-0.06860532365946204 +31311,156.55499999989388,-0.06860532406548721 +31312,156.55999999989388,-0.06860532447151285 +31313,156.56499999989387,-0.06860532487753895 +31314,156.56999999989387,-0.0686053252835655 +31315,156.57499999989386,-0.06860532568959246 +31316,156.57999999989386,-0.06860532609561985 +31317,156.58499999989385,-0.06860532650164766 +31318,156.58999999989385,-0.06860532690767587 +31319,156.59499999989384,-0.06860532731370446 +31320,156.59999999989384,-0.06860532771973342 +31321,156.60499999989383,-0.06860532812576274 +31322,156.60999999989383,-0.06860532853179241 +31323,156.61499999989383,-0.06860532893782242 +31324,156.61999999989382,-0.06860532934385276 +31325,156.62499999989382,-0.06860532974988341 +31326,156.6299999998938,-0.06860533015591437 +31327,156.6349999998938,-0.06860533056194562 +31328,156.6399999998938,-0.06860533096797715 +31329,156.6449999998938,-0.06860533137400895 +31330,156.6499999998938,-0.06860533178004101 +31331,156.6549999998938,-0.06860533218607333 +31332,156.65999999989378,-0.06860533259210587 +31333,156.66499999989378,-0.06860533299813863 +31334,156.66999999989378,-0.0686053334041716 +31335,156.67499999989377,-0.06860533381020478 +31336,156.67999999989377,-0.06860533421623816 +31337,156.68499999989376,-0.06860533462227168 +31338,156.68999999989376,-0.06860533502830539 +31339,156.69499999989375,-0.06860533543433923 +31340,156.69999999989375,-0.06860533584037323 +31341,156.70499999989374,-0.06860533624640737 +31342,156.70999999989374,-0.0686053366524416 +31343,156.71499999989373,-0.06860533705847595 +31344,156.71999999989373,-0.0686053374645104 +31345,156.72499999989373,-0.06860533787054493 +31346,156.72999999989372,-0.06860533827657954 +31347,156.73499999989372,-0.06860533868261419 +31348,156.7399999998937,-0.06860533908864891 +31349,156.7449999998937,-0.06860533949468364 +31350,156.7499999998937,-0.06860533990071842 +31351,156.7549999998937,-0.0686053403067532 +31352,156.7599999998937,-0.068605340712788 +31353,156.7649999998937,-0.06860534111882279 +31354,156.76999999989368,-0.06860534152485753 +31355,156.77499999989368,-0.06860534193089227 +31356,156.77999999989368,-0.06860534233692696 +31357,156.78499999989367,-0.06860534274296158 +31358,156.78999999989367,-0.06860534314899615 +31359,156.79499999989366,-0.06860534355503063 +31360,156.79999999989366,-0.06860534396106502 +31361,156.80499999989365,-0.06860534436709931 +31362,156.80999999989365,-0.06860534477313349 +31363,156.81499999989364,-0.06860534517916754 +31364,156.81999999989364,-0.06860534558520147 +31365,156.82499999989363,-0.06860534599123524 +31366,156.82999999989363,-0.06860534639726887 +31367,156.83499999989363,-0.06860534680330231 +31368,156.83999999989362,-0.06860534720933557 +31369,156.84499999989362,-0.06860534761536864 +31370,156.8499999998936,-0.06860534802140152 +31371,156.8549999998936,-0.06860534842743417 +31372,156.8599999998936,-0.0686053488334666 +31373,156.8649999998936,-0.06860534923949878 +31374,156.8699999998936,-0.06860534964553071 +31375,156.8749999998936,-0.06860535005156239 +31376,156.87999999989358,-0.06860535045759379 +31377,156.88499999989358,-0.0686053508636249 +31378,156.88999999989358,-0.06860535126965572 +31379,156.89499999989357,-0.06860535167568624 +31380,156.89999999989357,-0.06860535208171643 +31381,156.90499999989356,-0.06860535248774631 +31382,156.90999999989356,-0.06860535289377581 +31383,156.91499999989355,-0.068605353299805 +31384,156.91999999989355,-0.06860535370583379 +31385,156.92499999989354,-0.06860535411186222 +31386,156.92999999989354,-0.06860535451789027 +31387,156.93499999989353,-0.06860535492391791 +31388,156.93999999989353,-0.06860535532994515 +31389,156.94499999989353,-0.06860535573597196 +31390,156.94999999989352,-0.06860535614199834 +31391,156.95499999989352,-0.06860535654802426 +31392,156.9599999998935,-0.06860535695404973 +31393,156.9649999998935,-0.06860535736007475 +31394,156.9699999998935,-0.06860535776609929 +31395,156.9749999998935,-0.06860535817212333 +31396,156.9799999998935,-0.06860535857814688 +31397,156.9849999998935,-0.06860535898416992 +31398,156.98999999989348,-0.06860535939019242 +31399,156.99499999989348,-0.0686053597962144 +31400,156.99999999989348,-0.06860536020223583 +31401,157.00499999989347,-0.0686053606082567 +31402,157.00999999989347,-0.06860536101427701 +31403,157.01499999989346,-0.06860536142029673 +31404,157.01999999989346,-0.06860536182631585 +31405,157.02499999989345,-0.06860536223233439 +31406,157.02999999989345,-0.0686053626383523 +31407,157.03499999989344,-0.0686053630443696 +31408,157.03999999989344,-0.06860536345038624 +31409,157.04499999989343,-0.06860536385640227 +31410,157.04999999989343,-0.06860536426241762 +31411,157.05499999989343,-0.06860536466843228 +31412,157.05999999989342,-0.06860536507444628 +31413,157.06499999989342,-0.06860536548045959 +31414,157.0699999998934,-0.06860536588647219 +31415,157.0749999998934,-0.06860536629248408 +31416,157.0799999998934,-0.06860536669849523 +31417,157.0849999998934,-0.06860536710450564 +31418,157.0899999998934,-0.06860536751051532 +31419,157.0949999998934,-0.06860536791652423 +31420,157.09999999989338,-0.06860536832253238 +31421,157.10499999989338,-0.06860536872853973 +31422,157.10999999989338,-0.06860536913454629 +31423,157.11499999989337,-0.06860536954055205 +31424,157.11999999989337,-0.068605369946557 +31425,157.12499999989336,-0.06860537035256112 +31426,157.12999999989336,-0.06860537075856439 +31427,157.13499999989335,-0.06860537116456682 +31428,157.13999999989335,-0.06860537157056838 +31429,157.14499999989334,-0.06860537197656907 +31430,157.14999999989334,-0.06860537238256889 +31431,157.15499999989333,-0.0686053727885678 +31432,157.15999999989333,-0.06860537319456582 +31433,157.16499999989333,-0.0686053736005629 +31434,157.16999999989332,-0.06860537400655906 +31435,157.17499999989332,-0.06860537441255428 +31436,157.1799999998933,-0.06860537481854856 +31437,157.1849999998933,-0.06860537522454188 +31438,157.1899999998933,-0.06860537563053422 +31439,157.1949999998933,-0.06860537603652557 +31440,157.1999999998933,-0.06860537644251594 +31441,157.2049999998933,-0.06860537684850529 +31442,157.20999999989328,-0.06860537725449362 +31443,157.21499999989328,-0.06860537766048093 +31444,157.21999999989328,-0.0686053780664672 +31445,157.22499999989327,-0.06860537847245242 +31446,157.22999999989327,-0.06860537887843657 +31447,157.23499999989326,-0.06860537928441966 +31448,157.23999999989326,-0.06860537969040165 +31449,157.24499999989325,-0.06860538009638255 +31450,157.24999999989325,-0.06860538050236235 +31451,157.25499999989324,-0.06860538090834103 +31452,157.25999999989324,-0.06860538131431859 +31453,157.26499999989323,-0.068605381720295 +31454,157.26999999989323,-0.06860538212627026 +31455,157.27499999989323,-0.06860538253224437 +31456,157.27999999989322,-0.06860538293821729 +31457,157.28499999989322,-0.06860538334418904 +31458,157.2899999998932,-0.0686053837501596 +31459,157.2949999998932,-0.06860538415612893 +31460,157.2999999998932,-0.06860538456209705 +31461,157.3049999998932,-0.06860538496806395 +31462,157.3099999998932,-0.06860538537402963 +31463,157.3149999998932,-0.06860538577999403 +31464,157.31999999989318,-0.06860538618595718 +31465,157.32499999989318,-0.06860538659191906 +31466,157.32999999989318,-0.06860538699787964 +31467,157.33499999989317,-0.06860538740383895 +31468,157.33999999989317,-0.06860538780979694 +31469,157.34499999989316,-0.06860538821575363 +31470,157.34999999989316,-0.06860538862170897 +31471,157.35499999989315,-0.06860538902766299 +31472,157.35999999989315,-0.06860538943361565 +31473,157.36499999989314,-0.06860538983956695 +31474,157.36999999989314,-0.06860539024551687 +31475,157.37499999989313,-0.06860539065146543 +31476,157.37999999989313,-0.06860539105741259 +31477,157.38499999989313,-0.06860539146335834 +31478,157.38999999989312,-0.06860539186930269 +31479,157.39499999989312,-0.06860539227524559 +31480,157.3999999998931,-0.06860539268118707 +31481,157.4049999998931,-0.0686053930871271 +31482,157.4099999998931,-0.06860539349306566 +31483,157.4149999998931,-0.06860539389900276 +31484,157.4199999998931,-0.0686053943049384 +31485,157.4249999998931,-0.06860539471087251 +31486,157.42999999989308,-0.06860539511680515 +31487,157.43499999989308,-0.06860539552273624 +31488,157.43999999989308,-0.06860539592866582 +31489,157.44499999989307,-0.06860539633459388 +31490,157.44999999989307,-0.06860539674052038 +31491,157.45499999989306,-0.06860539714644533 +31492,157.45999999989306,-0.0686053975523687 +31493,157.46499999989305,-0.0686053979582905 +31494,157.46999999989305,-0.06860539836421072 +31495,157.47499999989304,-0.06860539877012933 +31496,157.47999999989304,-0.06860539917604631 +31497,157.48499999989303,-0.0686053995819617 +31498,157.48999999989303,-0.06860539998787543 +31499,157.49499999989303,-0.06860540039378754 +31500,157.49999999989302,-0.06860540079969797 +31501,157.50499999989302,-0.06860540120560675 +31502,157.509999999893,-0.06860540161151385 +31503,157.514999999893,-0.06860540201741927 +31504,157.519999999893,-0.06860540242332297 +31505,157.524999999893,-0.06860540282922498 +31506,157.529999999893,-0.06860540323512525 +31507,157.534999999893,-0.0686054036410238 +31508,157.53999999989298,-0.06860540404692062 +31509,157.54499999989298,-0.06860540445281567 +31510,157.54999999989298,-0.06860540485870895 +31511,157.55499999989297,-0.06860540526460047 +31512,157.55999999989297,-0.06860540567049021 +31513,157.56499999989296,-0.06860540607637815 +31514,157.56999999989296,-0.06860540648226428 +31515,157.57499999989295,-0.06860540688814858 +31516,157.57999999989295,-0.06860540729403107 +31517,157.58499999989294,-0.0686054076999117 +31518,157.58999999989294,-0.06860540810579051 +31519,157.59499999989293,-0.06860540851166744 +31520,157.59999999989293,-0.06860540891754249 +31521,157.60499999989293,-0.06860540932341568 +31522,157.60999999989292,-0.06860540972928696 +31523,157.61499999989292,-0.06860541013515635 +31524,157.6199999998929,-0.06860541054102381 +31525,157.6249999998929,-0.06860541094688935 +31526,157.6299999998929,-0.06860541135275296 +31527,157.6349999998929,-0.0686054117586146 +31528,157.6399999998929,-0.06860541216447431 +31529,157.6449999998929,-0.06860541257033205 +31530,157.64999999989288,-0.06860541297618782 +31531,157.65499999989288,-0.06860541338204158 +31532,157.65999999989288,-0.06860541378789334 +31533,157.66499999989287,-0.0686054141937431 +31534,157.66999999989287,-0.06860541459959081 +31535,157.67499999989286,-0.06860541500543652 +31536,157.67999999989286,-0.06860541541128017 +31537,157.68499999989285,-0.06860541581712175 +31538,157.68999999989285,-0.06860541622296128 +31539,157.69499999989284,-0.06860541662879874 +31540,157.69999999989284,-0.0686054170346341 +31541,157.70499999989283,-0.06860541744046737 +31542,157.70999999989283,-0.06860541784629853 +31543,157.71499999989283,-0.06860541825212758 +31544,157.71999999989282,-0.0686054186579545 +31545,157.72499999989282,-0.06860541906377929 +31546,157.7299999998928,-0.06860541946960191 +31547,157.7349999998928,-0.06860541987542237 +31548,157.7399999998928,-0.06860542028124067 +31549,157.7449999998928,-0.06860542068705677 +31550,157.7499999998928,-0.0686054210928707 +31551,157.7549999998928,-0.06860542149868241 +31552,157.75999999989278,-0.06860542190449193 +31553,157.76499999989278,-0.06860542231029919 +31554,157.76999999989278,-0.06860542271610423 +31555,157.77499999989277,-0.06860542312190702 +31556,157.77999999989277,-0.06860542352770756 +31557,157.78499999989276,-0.06860542393350581 +31558,157.78999999989276,-0.06860542433930181 +31559,157.79499999989275,-0.06860542474509551 +31560,157.79999999989275,-0.0686054251508869 +31561,157.80499999989274,-0.068605425556676 +31562,157.80999999989274,-0.06860542596246276 +31563,157.81499999989273,-0.0686054263682472 +31564,157.81999999989273,-0.0686054267740293 +31565,157.82499999989273,-0.06860542717980904 +31566,157.82999999989272,-0.06860542758558642 +31567,157.83499999989272,-0.06860542799136143 +31568,157.8399999998927,-0.06860542839713406 +31569,157.8449999998927,-0.06860542880290428 +31570,157.8499999998927,-0.0686054292086721 +31571,157.8549999998927,-0.06860542961443751 +31572,157.8599999998927,-0.06860543002020049 +31573,157.8649999998927,-0.06860543042596104 +31574,157.86999999989268,-0.06860543083171913 +31575,157.87499999989268,-0.06860543123747477 +31576,157.87999999989268,-0.06860543164322795 +31577,157.88499999989267,-0.06860543204897865 +31578,157.88999999989267,-0.06860543245472683 +31579,157.89499999989266,-0.06860543286047253 +31580,157.89999999989266,-0.06860543326621572 +31581,157.90499999989265,-0.06860543367195639 +31582,157.90999999989265,-0.06860543407769452 +31583,157.91499999989264,-0.06860543448343012 +31584,157.91999999989264,-0.06860543488916317 +31585,157.92499999989263,-0.06860543529489364 +31586,157.92999999989263,-0.06860543570062154 +31587,157.93499999989263,-0.06860543610634685 +31588,157.93999999989262,-0.06860543651206959 +31589,157.94499999989262,-0.06860543691778971 +31590,157.9499999998926,-0.0686054373235072 +31591,157.9549999998926,-0.06860543772922209 +31592,157.9599999998926,-0.06860543813493433 +31593,157.9649999998926,-0.06860543854064394 +31594,157.9699999998926,-0.06860543894635088 +31595,157.9749999998926,-0.06860543935205514 +31596,157.97999999989258,-0.06860543975775672 +31597,157.98499999989258,-0.06860544016345563 +31598,157.98999999989258,-0.06860544056915183 +31599,157.99499999989257,-0.06860544097484532 +31600,157.99999999989257,-0.06860544138053609 +31601,158.00499999989256,-0.06860544178622413 +31602,158.00999999989256,-0.06860544219190944 +31603,158.01499999989255,-0.06860544259759198 +31604,158.01999999989255,-0.06860544300327176 +31605,158.02499999989254,-0.06860544340894878 +31606,158.02999999989254,-0.068605443814623 +31607,158.03499999989253,-0.06860544422029445 +31608,158.03999999989253,-0.06860544462596307 +31609,158.04499999989253,-0.0686054450316289 +31610,158.04999999989252,-0.0686054454372919 +31611,158.05499999989252,-0.06860544584295206 +31612,158.0599999998925,-0.06860544624860937 +31613,158.0649999998925,-0.06860544665426382 +31614,158.0699999998925,-0.06860544705991542 +31615,158.0749999998925,-0.06860544746556414 +31616,158.0799999998925,-0.06860544787120998 +31617,158.0849999998925,-0.06860544827685292 +31618,158.08999999989248,-0.06860544868249294 +31619,158.09499999989248,-0.06860544908813004 +31620,158.09999999989247,-0.06860544949376422 +31621,158.10499999989247,-0.06860544989939547 +31622,158.10999999989247,-0.06860545030502375 +31623,158.11499999989246,-0.06860545071064908 +31624,158.11999999989246,-0.06860545111627143 +31625,158.12499999989245,-0.06860545152189083 +31626,158.12999999989245,-0.06860545192750722 +31627,158.13499999989244,-0.06860545233312061 +31628,158.13999999989244,-0.06860545273873099 +31629,158.14499999989243,-0.06860545314433836 +31630,158.14999999989243,-0.06860545354994269 +31631,158.15499999989242,-0.06860545395554396 +31632,158.15999999989242,-0.06860545436114221 +31633,158.16499999989242,-0.06860545476673738 +31634,158.1699999998924,-0.06860545517232948 +31635,158.1749999998924,-0.0686054555779185 +31636,158.1799999998924,-0.06860545598350443 +31637,158.1849999998924,-0.06860545638908726 +31638,158.1899999998924,-0.06860545679466697 +31639,158.1949999998924,-0.06860545720024355 +31640,158.19999999989238,-0.068605457605817 +31641,158.20499999989238,-0.0686054580113873 +31642,158.20999999989237,-0.06860545841695445 +31643,158.21499999989237,-0.06860545882251844 +31644,158.21999999989237,-0.06860545922807924 +31645,158.22499999989236,-0.06860545963363687 +31646,158.22999999989236,-0.0686054600391913 +31647,158.23499999989235,-0.06860546044474251 +31648,158.23999999989235,-0.06860546085029053 +31649,158.24499999989234,-0.0686054612558353 +31650,158.24999999989234,-0.06860546166137685 +31651,158.25499999989233,-0.06860546206691513 +31652,158.25999999989233,-0.06860546247245017 +31653,158.26499999989232,-0.06860546287798194 +31654,158.26999999989232,-0.06860546328351043 +31655,158.27499999989232,-0.06860546368903563 +31656,158.2799999998923,-0.06860546409455753 +31657,158.2849999998923,-0.06860546450007612 +31658,158.2899999998923,-0.06860546490559141 +31659,158.2949999998923,-0.06860546531110336 +31660,158.2999999998923,-0.06860546571661197 +31661,158.3049999998923,-0.06860546612211724 +31662,158.30999999989228,-0.06860546652761915 +31663,158.31499999989228,-0.06860546693311768 +31664,158.31999999989227,-0.06860546733861284 +31665,158.32499999989227,-0.0686054677441046 +31666,158.32999999989227,-0.06860546814959297 +31667,158.33499999989226,-0.06860546855507792 +31668,158.33999999989226,-0.06860546896055945 +31669,158.34499999989225,-0.06860546936603755 +31670,158.34999999989225,-0.06860546977151222 +31671,158.35499999989224,-0.06860547017698343 +31672,158.35999999989224,-0.06860547058245119 +31673,158.36499999989223,-0.06860547098791547 +31674,158.36999999989223,-0.06860547139337626 +31675,158.37499999989222,-0.06860547179883358 +31676,158.37999999989222,-0.06860547220428738 +31677,158.38499999989222,-0.06860547260973768 +31678,158.3899999998922,-0.06860547301518445 +31679,158.3949999998922,-0.06860547342062769 +31680,158.3999999998922,-0.0686054738260674 +31681,158.4049999998922,-0.06860547423150355 +31682,158.4099999998922,-0.06860547463693614 +31683,158.4149999998922,-0.06860547504236515 +31684,158.41999999989218,-0.0686054754477906 +31685,158.42499999989218,-0.06860547585321244 +31686,158.42999999989217,-0.06860547625863067 +31687,158.43499999989217,-0.0686054766640453 +31688,158.43999999989217,-0.0686054770694563 +31689,158.44499999989216,-0.06860547747486367 +31690,158.44999999989216,-0.0686054778802674 +31691,158.45499999989215,-0.06860547828566747 +31692,158.45999999989215,-0.0686054786910639 +31693,158.46499999989214,-0.06860547909645663 +31694,158.46999999989214,-0.0686054795018457 +31695,158.47499999989213,-0.06860547990723107 +31696,158.47999999989213,-0.06860548031261272 +31697,158.48499999989212,-0.06860548071799068 +31698,158.48999999989212,-0.06860548112336491 +31699,158.49499999989212,-0.06860548152873541 +31700,158.4999999998921,-0.06860548193410217 +31701,158.5049999998921,-0.06860548233946516 +31702,158.5099999998921,-0.0686054827448244 +31703,158.5149999998921,-0.06860548315017986 +31704,158.5199999998921,-0.06860548355553155 +31705,158.5249999998921,-0.06860548396087944 +31706,158.52999999989208,-0.06860548436622352 +31707,158.53499999989208,-0.0686054847715638 +31708,158.53999999989207,-0.06860548517690025 +31709,158.54499999989207,-0.06860548558223287 +31710,158.54999999989207,-0.06860548598756164 +31711,158.55499999989206,-0.06860548639288656 +31712,158.55999999989206,-0.06860548679820762 +31713,158.56499999989205,-0.06860548720352481 +31714,158.56999999989205,-0.06860548760883813 +31715,158.57499999989204,-0.06860548801414752 +31716,158.57999999989204,-0.06860548841945303 +31717,158.58499999989203,-0.06860548882475465 +31718,158.58999999989203,-0.06860548923005232 +31719,158.59499999989202,-0.06860548963534606 +31720,158.59999999989202,-0.06860549004063586 +31721,158.60499999989202,-0.06860549044592171 +31722,158.609999999892,-0.06860549085120358 +31723,158.614999999892,-0.06860549125648151 +31724,158.619999999892,-0.06860549166175543 +31725,158.624999999892,-0.06860549206702538 +31726,158.629999999892,-0.06860549247229132 +31727,158.634999999892,-0.06860549287755324 +31728,158.63999999989198,-0.06860549328281115 +31729,158.64499999989198,-0.06860549368806503 +31730,158.64999999989197,-0.06860549409331486 +31731,158.65499999989197,-0.06860549449856064 +31732,158.65999999989197,-0.06860549490380237 +31733,158.66499999989196,-0.06860549530904 +31734,158.66999999989196,-0.06860549571427357 +31735,158.67499999989195,-0.06860549611950305 +31736,158.67999999989195,-0.06860549652472843 +31737,158.68499999989194,-0.0686054969299497 +31738,158.68999999989194,-0.06860549733516684 +31739,158.69499999989193,-0.06860549774037986 +31740,158.69999999989193,-0.06860549814558874 +31741,158.70499999989192,-0.06860549855079347 +31742,158.70999999989192,-0.06860549895599403 +31743,158.71499999989192,-0.06860549936119043 +31744,158.7199999998919,-0.06860549976638264 +31745,158.7249999998919,-0.06860550017157067 +31746,158.7299999998919,-0.06860550057675449 +31747,158.7349999998919,-0.06860550098193412 +31748,158.7399999998919,-0.06860550138710951 +31749,158.7449999998919,-0.06860550179228068 +31750,158.74999999989188,-0.06860550219744761 +31751,158.75499999989188,-0.0686055026026103 +31752,158.75999999989187,-0.06860550300776871 +31753,158.76499999989187,-0.06860550341292287 +31754,158.76999999989187,-0.06860550381807275 +31755,158.77499999989186,-0.06860550422321834 +31756,158.77999999989186,-0.06860550462835964 +31757,158.78499999989185,-0.06860550503349663 +31758,158.78999999989185,-0.0686055054386293 +31759,158.79499999989184,-0.06860550584375764 +31760,158.79999999989184,-0.06860550624888165 +31761,158.80499999989183,-0.06860550665400132 +31762,158.80999999989183,-0.06860550705911662 +31763,158.81499999989182,-0.06860550746422756 +31764,158.81999999989182,-0.06860550786933411 +31765,158.82499999989182,-0.0686055082744363 +31766,158.8299999998918,-0.06860550867953408 +31767,158.8349999998918,-0.06860550908462745 +31768,158.8399999998918,-0.06860550948971643 +31769,158.8449999998918,-0.06860550989480098 +31770,158.8499999998918,-0.06860551029988107 +31771,158.8549999998918,-0.06860551070495674 +31772,158.85999999989178,-0.06860551111002795 +31773,158.86499999989178,-0.0686055115150947 +31774,158.86999999989177,-0.06860551192015697 +31775,158.87499999989177,-0.06860551232521477 +31776,158.87999999989177,-0.06860551273026806 +31777,158.88499999989176,-0.06860551313531686 +31778,158.88999999989176,-0.06860551354036115 +31779,158.89499999989175,-0.06860551394540092 +31780,158.89999999989175,-0.06860551435043616 +31781,158.90499999989174,-0.06860551475546685 +31782,158.90999999989174,-0.06860551516049299 +31783,158.91499999989173,-0.06860551556551457 +31784,158.91999999989173,-0.06860551597053159 +31785,158.92499999989172,-0.06860551637554402 +31786,158.92999999989172,-0.06860551678055185 +31787,158.93499999989172,-0.0686055171855551 +31788,158.9399999998917,-0.06860551759055375 +31789,158.9449999998917,-0.06860551799554776 +31790,158.9499999998917,-0.06860551840053715 +31791,158.9549999998917,-0.06860551880552192 +31792,158.9599999998917,-0.06860551921050202 +31793,158.9649999998917,-0.06860551961547748 +31794,158.96999999989168,-0.06860552002044826 +31795,158.97499999989168,-0.06860552042541436 +31796,158.97999999989167,-0.06860552083037579 +31797,158.98499999989167,-0.0686055212353325 +31798,158.98999999989167,-0.06860552164028452 +31799,158.99499999989166,-0.06860552204523183 +31800,158.99999999989166,-0.06860552245017441 +31801,159.00499999989165,-0.06860552285511227 +31802,159.00999999989165,-0.06860552326004538 +31803,159.01499999989164,-0.06860552366497373 +31804,159.01999999989164,-0.06860552406989733 +31805,159.02499999989163,-0.06860552447481615 +31806,159.02999999989163,-0.06860552487973018 +31807,159.03499999989162,-0.06860552528463942 +31808,159.03999999989162,-0.06860552568954387 +31809,159.04499999989162,-0.06860552609444351 +31810,159.0499999998916,-0.06860552649933832 +31811,159.0549999998916,-0.06860552690422832 +31812,159.0599999998916,-0.06860552730911346 +31813,159.0649999998916,-0.06860552771399375 +31814,159.0699999998916,-0.06860552811886919 +31815,159.0749999998916,-0.06860552852373976 +31816,159.07999999989158,-0.06860552892860547 +31817,159.08499999989158,-0.06860552933346628 +31818,159.08999999989157,-0.0686055297383222 +31819,159.09499999989157,-0.0686055301431732 +31820,159.09999999989157,-0.0686055305480193 +31821,159.10499999989156,-0.06860553095286047 +31822,159.10999999989156,-0.06860553135769669 +31823,159.11499999989155,-0.06860553176252797 +31824,159.11999999989155,-0.06860553216735431 +31825,159.12499999989154,-0.06860553257217569 +31826,159.12999999989154,-0.0686055329769921 +31827,159.13499999989153,-0.06860553338180352 +31828,159.13999999989153,-0.06860553378660994 +31829,159.14499999989152,-0.06860553419141137 +31830,159.14999999989152,-0.06860553459620777 +31831,159.15499999989152,-0.06860553500099917 +31832,159.1599999998915,-0.06860553540578554 +31833,159.1649999998915,-0.06860553581056685 +31834,159.1699999998915,-0.06860553621534313 +31835,159.1749999998915,-0.06860553662011434 +31836,159.1799999998915,-0.0686055370248805 +31837,159.1849999998915,-0.06860553742964158 +31838,159.18999999989148,-0.06860553783439757 +31839,159.19499999989148,-0.06860553823914846 +31840,159.19999999989147,-0.06860553864389425 +31841,159.20499999989147,-0.06860553904863492 +31842,159.20999999989147,-0.06860553945337047 +31843,159.21499999989146,-0.06860553985810089 +31844,159.21999999989146,-0.06860554026282616 +31845,159.22499999989145,-0.06860554066754626 +31846,159.22999999989145,-0.06860554107226122 +31847,159.23499999989144,-0.068605541476971 +31848,159.23999999989144,-0.06860554188167561 +31849,159.24499999989143,-0.06860554228637503 +31850,159.24999999989143,-0.06860554269106925 +31851,159.25499999989142,-0.06860554309575825 +31852,159.25999999989142,-0.06860554350044204 +31853,159.26499999989142,-0.0686055439051206 +31854,159.2699999998914,-0.06860554430979392 +31855,159.2749999998914,-0.06860554471446198 +31856,159.2799999998914,-0.06860554511912481 +31857,159.2849999998914,-0.06860554552378237 +31858,159.2899999998914,-0.06860554592843465 +31859,159.2949999998914,-0.06860554633308165 +31860,159.29999999989138,-0.06860554673772334 +31861,159.30499999989138,-0.06860554714235974 +31862,159.30999999989137,-0.06860554754699082 +31863,159.31499999989137,-0.0686055479516166 +31864,159.31999999989137,-0.06860554835623703 +31865,159.32499999989136,-0.06860554876085212 +31866,159.32999999989136,-0.06860554916546187 +31867,159.33499999989135,-0.06860554957006625 +31868,159.33999999989135,-0.06860554997466527 +31869,159.34499999989134,-0.0686055503792589 +31870,159.34999999989134,-0.06860555078384716 +31871,159.35499999989133,-0.06860555118843 +31872,159.35999999989133,-0.06860555159300745 +31873,159.36499999989132,-0.06860555199757948 +31874,159.36999999989132,-0.0686055524021461 +31875,159.37499999989132,-0.06860555280670727 +31876,159.3799999998913,-0.068605553211263 +31877,159.3849999998913,-0.06860555361581328 +31878,159.3899999998913,-0.0686055540203581 +31879,159.3949999998913,-0.06860555442489745 +31880,159.3999999998913,-0.06860555482943131 +31881,159.4049999998913,-0.0686055552339597 +31882,159.40999999989128,-0.06860555563848257 +31883,159.41499999989128,-0.06860555604299995 +31884,159.41999999989127,-0.0686055564475118 +31885,159.42499999989127,-0.06860555685201812 +31886,159.42999999989127,-0.06860555725651893 +31887,159.43499999989126,-0.06860555766101417 +31888,159.43999999989126,-0.06860555806550388 +31889,159.44499999989125,-0.068605558469988 +31890,159.44999999989125,-0.06860555887446655 +31891,159.45499999989124,-0.06860555927893952 +31892,159.45999999989124,-0.06860555968340691 +31893,159.46499999989123,-0.0686055600878687 +31894,159.46999999989123,-0.06860556049232487 +31895,159.47499999989122,-0.06860556089677541 +31896,159.47999999989122,-0.06860556130122034 +31897,159.48499999989122,-0.06860556170565962 +31898,159.4899999998912,-0.06860556211009326 +31899,159.4949999998912,-0.06860556251452124 +31900,159.4999999998912,-0.06860556291894357 +31901,159.5049999998912,-0.06860556332336021 +31902,159.5099999998912,-0.06860556372777116 +31903,159.5149999998912,-0.06860556413217643 +31904,159.51999999989118,-0.06860556453657599 +31905,159.52499999989118,-0.06860556494096984 +31906,159.52999999989117,-0.06860556534535797 +31907,159.53499999989117,-0.06860556574974037 +31908,159.53999999989117,-0.06860556615411705 +31909,159.54499999989116,-0.06860556655848796 +31910,159.54999999989116,-0.06860556696285311 +31911,159.55499999989115,-0.0686055673672125 +31912,159.55999999989115,-0.06860556777156612 +31913,159.56499999989114,-0.06860556817591394 +31914,159.56999999989114,-0.06860556858025597 +31915,159.57499999989113,-0.0686055689845922 +31916,159.57999999989113,-0.06860556938892264 +31917,159.58499999989112,-0.06860556979324722 +31918,159.58999999989112,-0.068605570197566 +31919,159.59499999989112,-0.06860557060187893 +31920,159.5999999998911,-0.068605571006186 +31921,159.6049999998911,-0.06860557141048722 +31922,159.6099999998911,-0.06860557181478256 +31923,159.6149999998911,-0.06860557221907204 +31924,159.6199999998911,-0.06860557262335565 +31925,159.6249999998911,-0.06860557302763334 +31926,159.62999999989108,-0.06860557343190513 +31927,159.63499999989108,-0.06860557383617101 +31928,159.63999999989107,-0.06860557424043097 +31929,159.64499999989107,-0.06860557464468499 +31930,159.64999999989107,-0.06860557504893308 +31931,159.65499999989106,-0.06860557545317522 +31932,159.65999999989106,-0.0686055758574114 +31933,159.66499999989105,-0.06860557626164161 +31934,159.66999999989105,-0.06860557666586585 +31935,159.67499999989104,-0.0686055770700841 +31936,159.67999999989104,-0.06860557747429637 +31937,159.68499999989103,-0.06860557787850262 +31938,159.68999999989103,-0.06860557828270285 +31939,159.69499999989102,-0.06860557868689708 +31940,159.69999999989102,-0.06860557909108526 +31941,159.70499999989102,-0.06860557949526741 +31942,159.709999999891,-0.0686055798994435 +31943,159.714999999891,-0.06860558030361354 +31944,159.719999999891,-0.0686055807077775 +31945,159.724999999891,-0.0686055811119354 +31946,159.729999999891,-0.06860558151608721 +31947,159.734999999891,-0.06860558192023294 +31948,159.73999999989098,-0.06860558232437255 +31949,159.74499999989098,-0.06860558272850605 +31950,159.74999999989097,-0.06860558313263343 +31951,159.75499999989097,-0.06860558353675468 +31952,159.75999999989097,-0.0686055839408698 +31953,159.76499999989096,-0.06860558434497875 +31954,159.76999999989096,-0.06860558474908156 +31955,159.77499999989095,-0.0686055851531782 +31956,159.77999999989095,-0.06860558555726866 +31957,159.78499999989094,-0.06860558596135292 +31958,159.78999999989094,-0.06860558636543101 +31959,159.79499999989093,-0.06860558676950289 +31960,159.79999999989093,-0.06860558717356857 +31961,159.80499999989092,-0.06860558757762801 +31962,159.80999999989092,-0.06860558798168123 +31963,159.81499999989092,-0.0686055883857282 +31964,159.8199999998909,-0.06860558878976893 +31965,159.8249999998909,-0.06860558919380341 +31966,159.8299999998909,-0.06860558959783163 +31967,159.8349999998909,-0.06860559000185355 +31968,159.8399999998909,-0.06860559040586921 +31969,159.8449999998909,-0.06860559080987856 +31970,159.84999999989088,-0.06860559121388163 +31971,159.85499999989088,-0.06860559161787838 +31972,159.85999999989087,-0.0686055920218688 +31973,159.86499999989087,-0.0686055924258529 +31974,159.86999999989087,-0.06860559282983067 +31975,159.87499999989086,-0.06860559323380208 +31976,159.87999999989086,-0.06860559363776715 +31977,159.88499999989085,-0.06860559404172584 +31978,159.88999999989085,-0.06860559444567817 +31979,159.89499999989084,-0.06860559484962411 +31980,159.89999999989084,-0.06860559525356366 +31981,159.90499999989083,-0.06860559565749683 +31982,159.90999999989083,-0.06860559606142357 +31983,159.91499999989082,-0.0686055964653439 +31984,159.91999999989082,-0.0686055968692578 +31985,159.92499999989082,-0.06860559727316526 +31986,159.9299999998908,-0.06860559767706628 +31987,159.9349999998908,-0.06860559808096087 +31988,159.9399999998908,-0.06860559848484897 +31989,159.9449999998908,-0.0686055988887306 +31990,159.9499999998908,-0.06860559929260578 +31991,159.9549999998908,-0.06860559969647444 +31992,159.95999999989078,-0.06860560010033662 +31993,159.96499999989078,-0.06860560050419229 +31994,159.96999999989077,-0.06860560090804144 +31995,159.97499999989077,-0.06860560131188406 +31996,159.97999999989077,-0.06860560171572015 +31997,159.98499999989076,-0.0686056021195497 +31998,159.98999999989076,-0.06860560252337271 +31999,159.99499999989075,-0.06860560292718916 +32000,159.99999999989075,-0.06860560333099903 +32001,160.00499999989074,-0.06860560373480233 +32002,160.00999999989074,-0.06860560413859905 +32003,160.01499999989073,-0.06860560454238916 +32004,160.01999999989073,-0.06860560494617268 +32005,160.02499999989072,-0.06860560534994957 +32006,160.02999999989072,-0.06860560575371986 +32007,160.03499999989072,-0.06860560615748351 +32008,160.0399999998907,-0.06860560656124053 +32009,160.0449999998907,-0.06860560696499088 +32010,160.0499999998907,-0.0686056073687346 +32011,160.0549999998907,-0.06860560777247164 +32012,160.0599999998907,-0.06860560817620201 +32013,160.0649999998907,-0.0686056085799257 +32014,160.06999999989068,-0.0686056089836427 +32015,160.07499999989068,-0.06860560938735298 +32016,160.07999999989067,-0.06860560979105657 +32017,160.08499999989067,-0.06860561019475345 +32018,160.08999999989067,-0.06860561059844358 +32019,160.09499999989066,-0.06860561100212698 +32020,160.09999999989066,-0.06860561140580364 +32021,160.10499999989065,-0.06860561180947354 +32022,160.10999999989065,-0.0686056122131367 +32023,160.11499999989064,-0.06860561261679307 +32024,160.11999999989064,-0.06860561302044266 +32025,160.12499999989063,-0.06860561342408547 +32026,160.12999999989063,-0.06860561382772148 +32027,160.13499999989062,-0.06860561423135068 +32028,160.13999999989062,-0.06860561463497308 +32029,160.14499999989062,-0.06860561503858865 +32030,160.1499999998906,-0.06860561544219738 +32031,160.1549999998906,-0.0686056158457993 +32032,160.1599999998906,-0.06860561624939435 +32033,160.1649999998906,-0.06860561665298254 +32034,160.1699999998906,-0.06860561705656386 +32035,160.1749999998906,-0.06860561746013831 +32036,160.17999999989058,-0.06860561786370588 +32037,160.18499999989058,-0.06860561826726655 +32038,160.18999999989057,-0.06860561867082032 +32039,160.19499999989057,-0.06860561907436719 +32040,160.19999999989057,-0.06860561947790712 +32041,160.20499999989056,-0.06860561988144014 +32042,160.20999999989056,-0.06860562028496621 +32043,160.21499999989055,-0.06860562068848534 +32044,160.21999999989055,-0.06860562109199753 +32045,160.22499999989054,-0.06860562149550274 +32046,160.22999999989054,-0.06860562189900099 +32047,160.23499999989053,-0.06860562230249227 +32048,160.23999999989053,-0.06860562270597655 +32049,160.24499999989052,-0.06860562310945383 +32050,160.24999999989052,-0.06860562351292411 +32051,160.25499999989052,-0.06860562391638737 +32052,160.2599999998905,-0.06860562431984361 +32053,160.2649999998905,-0.06860562472329282 +32054,160.2699999998905,-0.06860562512673499 +32055,160.2749999998905,-0.06860562553017012 +32056,160.2799999998905,-0.06860562593359817 +32057,160.2849999998905,-0.06860562633701918 +32058,160.28999999989048,-0.06860562674043309 +32059,160.29499999989048,-0.06860562714383994 +32060,160.29999999989047,-0.06860562754723969 +32061,160.30499999989047,-0.06860562795063234 +32062,160.30999999989047,-0.06860562835401789 +32063,160.31499999989046,-0.0686056287573963 +32064,160.31999999989046,-0.0686056291607676 +32065,160.32499999989045,-0.06860562956413174 +32066,160.32999999989045,-0.06860562996748877 +32067,160.33499999989044,-0.06860563037083862 +32068,160.33999999989044,-0.06860563077418133 +32069,160.34499999989043,-0.06860563117751688 +32070,160.34999999989043,-0.06860563158084523 +32071,160.35499999989042,-0.0686056319841664 +32072,160.35999999989042,-0.06860563238748037 +32073,160.36499999989041,-0.06860563279078714 +32074,160.3699999998904,-0.0686056331940867 +32075,160.3749999998904,-0.06860563359737903 +32076,160.3799999998904,-0.06860563400066415 +32077,160.3849999998904,-0.06860563440394202 +32078,160.3899999998904,-0.06860563480721266 +32079,160.3949999998904,-0.06860563521047602 +32080,160.39999999989038,-0.06860563561373213 +32081,160.40499999989038,-0.06860563601698097 +32082,160.40999999989037,-0.06860563642022252 +32083,160.41499999989037,-0.06860563682345679 +32084,160.41999999989036,-0.06860563722668375 +32085,160.42499999989036,-0.06860563762990342 +32086,160.42999999989036,-0.06860563803311577 +32087,160.43499999989035,-0.0686056384363208 +32088,160.43999999989035,-0.06860563883951848 +32089,160.44499999989034,-0.06860563924270884 +32090,160.44999999989034,-0.06860563964589184 +32091,160.45499999989033,-0.0686056400490675 +32092,160.45999999989033,-0.06860564045223577 +32093,160.46499999989032,-0.0686056408553967 +32094,160.46999999989032,-0.0686056412585502 +32095,160.47499999989031,-0.06860564166169635 +32096,160.4799999998903,-0.06860564206483506 +32097,160.4849999998903,-0.0686056424679664 +32098,160.4899999998903,-0.06860564287109029 +32099,160.4949999998903,-0.06860564327420679 +32100,160.4999999998903,-0.06860564367731584 +32101,160.5049999998903,-0.06860564408041744 +32102,160.50999999989028,-0.06860564448351161 +32103,160.51499999989028,-0.06860564488659832 +32104,160.51999999989027,-0.06860564528967754 +32105,160.52499999989027,-0.0686056456927493 +32106,160.52999999989026,-0.06860564609581356 +32107,160.53499999989026,-0.06860564649887033 +32108,160.53999999989026,-0.0686056469019196 +32109,160.54499999989025,-0.06860564730496137 +32110,160.54999999989025,-0.06860564770799561 +32111,160.55499999989024,-0.06860564811102234 +32112,160.55999999989024,-0.06860564851404152 +32113,160.56499999989023,-0.06860564891705316 +32114,160.56999999989023,-0.06860564932005725 +32115,160.57499999989022,-0.06860564972305379 +32116,160.57999999989022,-0.06860565012604275 +32117,160.58499999989021,-0.06860565052902413 +32118,160.5899999998902,-0.06860565093199793 +32119,160.5949999998902,-0.06860565133496414 +32120,160.5999999998902,-0.06860565173792274 +32121,160.6049999998902,-0.06860565214087373 +32122,160.6099999998902,-0.0686056525438171 +32123,160.6149999998902,-0.06860565294675286 +32124,160.61999999989018,-0.06860565334968097 +32125,160.62499999989018,-0.06860565375260143 +32126,160.62999999989017,-0.06860565415551424 +32127,160.63499999989017,-0.06860565455841941 +32128,160.63999999989016,-0.06860565496131689 +32129,160.64499999989016,-0.0686056553642067 +32130,160.64999999989016,-0.06860565576708882 +32131,160.65499999989015,-0.06860565616996324 +32132,160.65999999989015,-0.06860565657282996 +32133,160.66499999989014,-0.06860565697568898 +32134,160.66999999989014,-0.06860565737854026 +32135,160.67499999989013,-0.06860565778138383 +32136,160.67999999989013,-0.06860565818421965 +32137,160.68499999989012,-0.06860565858704773 +32138,160.68999999989012,-0.06860565898986806 +32139,160.69499999989011,-0.06860565939268064 +32140,160.6999999998901,-0.06860565979548544 +32141,160.7049999998901,-0.06860566019828244 +32142,160.7099999998901,-0.06860566060107169 +32143,160.7149999998901,-0.06860566100385312 +32144,160.7199999998901,-0.06860566140662677 +32145,160.7249999998901,-0.06860566180939259 +32146,160.72999999989008,-0.06860566221215059 +32147,160.73499999989008,-0.06860566261490077 +32148,160.73999999989007,-0.0686056630176431 +32149,160.74499999989007,-0.0686056634203776 +32150,160.74999999989006,-0.06860566382310425 +32151,160.75499999989006,-0.06860566422582304 +32152,160.75999999989006,-0.06860566462853394 +32153,160.76499999989005,-0.06860566503123698 +32154,160.76999999989005,-0.06860566543393214 +32155,160.77499999989004,-0.0686056658366194 +32156,160.77999999989004,-0.06860566623929874 +32157,160.78499999989003,-0.0686056666419702 +32158,160.78999999989003,-0.06860566704463372 +32159,160.79499999989002,-0.06860566744728933 +32160,160.79999999989002,-0.06860566784993698 +32161,160.80499999989001,-0.06860566825257669 +32162,160.80999999989,-0.06860566865520847 +32163,160.81499999989,-0.06860566905783227 +32164,160.81999999989,-0.06860566946044812 +32165,160.82499999989,-0.06860566986305597 +32166,160.82999999989,-0.06860567026565585 +32167,160.83499999989,-0.06860567066824773 +32168,160.83999999988998,-0.06860567107083161 +32169,160.84499999988998,-0.06860567147340747 +32170,160.84999999988997,-0.06860567187597531 +32171,160.85499999988997,-0.06860567227853516 +32172,160.85999999988996,-0.06860567268108694 +32173,160.86499999988996,-0.06860567308363069 +32174,160.86999999988996,-0.06860567348616639 +32175,160.87499999988995,-0.06860567388869404 +32176,160.87999999988995,-0.06860567429121361 +32177,160.88499999988994,-0.06860567469372512 +32178,160.88999999988994,-0.06860567509622854 +32179,160.89499999988993,-0.06860567549872386 +32180,160.89999999988993,-0.06860567590121107 +32181,160.90499999988992,-0.06860567630369019 +32182,160.90999999988992,-0.06860567670616119 +32183,160.91499999988991,-0.06860567710862407 +32184,160.9199999998899,-0.06860567751107881 +32185,160.9249999998899,-0.06860567791352541 +32186,160.9299999998899,-0.06860567831596386 +32187,160.9349999998899,-0.06860567871839415 +32188,160.9399999998899,-0.06860567912081628 +32189,160.9449999998899,-0.06860567952323024 +32190,160.94999999988988,-0.06860567992563602 +32191,160.95499999988988,-0.0686056803280336 +32192,160.95999999988987,-0.06860568073042299 +32193,160.96499999988987,-0.06860568113280417 +32194,160.96999999988986,-0.06860568153517713 +32195,160.97499999988986,-0.06860568193754188 +32196,160.97999999988986,-0.06860568233989837 +32197,160.98499999988985,-0.06860568274224665 +32198,160.98999999988985,-0.06860568314458668 +32199,160.99499999988984,-0.06860568354691846 +32200,160.99999999988984,-0.06860568394924196 +32201,161.00499999988983,-0.0686056843515572 +32202,161.00999999988983,-0.06860568475386415 +32203,161.01499999988982,-0.06860568515616282 +32204,161.01999999988982,-0.0686056855584532 +32205,161.02499999988981,-0.06860568596073527 +32206,161.0299999998898,-0.06860568636300902 +32207,161.0349999998898,-0.06860568676527447 +32208,161.0399999998898,-0.06860568716753158 +32209,161.0449999998898,-0.06860568756978036 +32210,161.0499999998898,-0.0686056879720208 +32211,161.0549999998898,-0.06860568837425286 +32212,161.05999999988978,-0.06860568877647659 +32213,161.06499999988978,-0.06860568917869193 +32214,161.06999999988977,-0.06860568958089891 +32215,161.07499999988977,-0.0686056899830975 +32216,161.07999999988976,-0.0686056903852877 +32217,161.08499999988976,-0.0686056907874695 +32218,161.08999999988976,-0.06860569118964288 +32219,161.09499999988975,-0.06860569159180785 +32220,161.09999999988975,-0.06860569199396441 +32221,161.10499999988974,-0.06860569239611251 +32222,161.10999999988974,-0.0686056927982522 +32223,161.11499999988973,-0.06860569320038343 +32224,161.11999999988973,-0.0686056936025062 +32225,161.12499999988972,-0.06860569400462051 +32226,161.12999999988972,-0.06860569440672633 +32227,161.13499999988971,-0.06860569480882368 +32228,161.1399999998897,-0.06860569521091255 +32229,161.1449999998897,-0.0686056956129929 +32230,161.1499999998897,-0.06860569601506476 +32231,161.1549999998897,-0.06860569641712812 +32232,161.1599999998897,-0.06860569681918294 +32233,161.1649999998897,-0.06860569722122924 +32234,161.16999999988968,-0.06860569762326699 +32235,161.17499999988968,-0.0686056980252962 +32236,161.17999999988967,-0.06860569842731687 +32237,161.18499999988967,-0.06860569882932897 +32238,161.18999999988966,-0.06860569923133251 +32239,161.19499999988966,-0.06860569963332747 +32240,161.19999999988966,-0.06860570003531383 +32241,161.20499999988965,-0.0686057004372916 +32242,161.20999999988965,-0.06860570083926078 +32243,161.21499999988964,-0.06860570124122134 +32244,161.21999999988964,-0.0686057016431733 +32245,161.22499999988963,-0.06860570204511662 +32246,161.22999999988963,-0.06860570244705132 +32247,161.23499999988962,-0.06860570284897738 +32248,161.23999999988962,-0.06860570325089478 +32249,161.24499999988961,-0.06860570365280352 +32250,161.2499999998896,-0.0686057040547036 +32251,161.2549999998896,-0.06860570445659502 +32252,161.2599999998896,-0.06860570485847775 +32253,161.2649999998896,-0.0686057052603518 +32254,161.2699999998896,-0.06860570566221715 +32255,161.2749999998896,-0.06860570606407379 +32256,161.27999999988958,-0.06860570646592172 +32257,161.28499999988958,-0.06860570686776092 +32258,161.28999999988957,-0.06860570726959139 +32259,161.29499999988957,-0.06860570767141315 +32260,161.29999999988956,-0.06860570807322613 +32261,161.30499999988956,-0.06860570847503038 +32262,161.30999999988956,-0.06860570887682588 +32263,161.31499999988955,-0.06860570927861259 +32264,161.31999999988955,-0.06860570968039055 +32265,161.32499999988954,-0.06860571008215971 +32266,161.32999999988954,-0.06860571048392008 +32267,161.33499999988953,-0.06860571088567166 +32268,161.33999999988953,-0.06860571128741443 +32269,161.34499999988952,-0.06860571168914838 +32270,161.34999999988952,-0.06860571209087352 +32271,161.35499999988951,-0.0686057124925898 +32272,161.3599999998895,-0.06860571289429726 +32273,161.3649999998895,-0.06860571329599587 +32274,161.3699999998895,-0.06860571369768563 +32275,161.3749999998895,-0.06860571409936653 +32276,161.3799999998895,-0.06860571450103856 +32277,161.3849999998895,-0.06860571490270169 +32278,161.38999999988948,-0.06860571530435595 +32279,161.39499999988948,-0.06860571570600132 +32280,161.39999999988947,-0.06860571610763778 +32281,161.40499999988947,-0.06860571650926535 +32282,161.40999999988946,-0.06860571691088399 +32283,161.41499999988946,-0.0686057173124937 +32284,161.41999999988946,-0.06860571771409449 +32285,161.42499999988945,-0.06860571811568633 +32286,161.42999999988945,-0.06860571851726922 +32287,161.43499999988944,-0.06860571891884316 +32288,161.43999999988944,-0.06860571932040814 +32289,161.44499999988943,-0.06860571972196415 +32290,161.44999999988943,-0.06860572012351118 +32291,161.45499999988942,-0.06860572052504921 +32292,161.45999999988942,-0.06860572092657824 +32293,161.46499999988941,-0.06860572132809828 +32294,161.4699999998894,-0.06860572172960931 +32295,161.4749999998894,-0.06860572213111132 +32296,161.4799999998894,-0.0686057225326043 +32297,161.4849999998894,-0.06860572293408825 +32298,161.4899999998894,-0.06860572333556315 +32299,161.4949999998894,-0.06860572373702901 +32300,161.49999999988938,-0.06860572413848581 +32301,161.50499999988938,-0.06860572453993355 +32302,161.50999999988937,-0.06860572494137221 +32303,161.51499999988937,-0.06860572534280178 +32304,161.51999999988936,-0.06860572574422227 +32305,161.52499999988936,-0.06860572614563366 +32306,161.52999999988936,-0.06860572654703596 +32307,161.53499999988935,-0.06860572694842913 +32308,161.53999999988935,-0.0686057273498132 +32309,161.54499999988934,-0.06860572775118813 +32310,161.54999999988934,-0.06860572815255392 +32311,161.55499999988933,-0.06860572855391059 +32312,161.55999999988933,-0.06860572895525809 +32313,161.56499999988932,-0.06860572935659642 +32314,161.56999999988932,-0.0686057297579256 +32315,161.57499999988931,-0.0686057301592456 +32316,161.5799999998893,-0.06860573056055642 +32317,161.5849999998893,-0.06860573096185806 +32318,161.5899999998893,-0.0686057313631505 +32319,161.5949999998893,-0.06860573176443373 +32320,161.5999999998893,-0.06860573216570776 +32321,161.6049999998893,-0.06860573256697255 +32322,161.60999999988928,-0.06860573296822813 +32323,161.61499999988928,-0.06860573336947447 +32324,161.61999999988927,-0.06860573377071155 +32325,161.62499999988927,-0.0686057341719394 +32326,161.62999999988926,-0.06860573457315798 +32327,161.63499999988926,-0.0686057349743673 +32328,161.63999999988926,-0.06860573537556734 +32329,161.64499999988925,-0.0686057357767581 +32330,161.64999999988925,-0.06860573617793957 +32331,161.65499999988924,-0.06860573657911173 +32332,161.65999999988924,-0.0686057369802746 +32333,161.66499999988923,-0.06860573738142815 +32334,161.66999999988923,-0.0686057377825724 +32335,161.67499999988922,-0.0686057381837073 +32336,161.67999999988922,-0.06860573858483288 +32337,161.68499999988921,-0.06860573898594911 +32338,161.6899999998892,-0.068605739387056 +32339,161.6949999998892,-0.06860573978815351 +32340,161.6999999998892,-0.06860574018924168 +32341,161.7049999998892,-0.06860574059032046 +32342,161.7099999998892,-0.06860574099138986 +32343,161.7149999998892,-0.06860574139244988 +32344,161.71999999988918,-0.06860574179350049 +32345,161.72499999988918,-0.0686057421945417 +32346,161.72999999988917,-0.0686057425955735 +32347,161.73499999988917,-0.06860574299659589 +32348,161.73999999988916,-0.06860574339760883 +32349,161.74499999988916,-0.06860574379861235 +32350,161.74999999988916,-0.06860574419960644 +32351,161.75499999988915,-0.06860574460059107 +32352,161.75999999988915,-0.06860574500156623 +32353,161.76499999988914,-0.06860574540253193 +32354,161.76999999988914,-0.06860574580348817 +32355,161.77499999988913,-0.06860574620443494 +32356,161.77999999988913,-0.0686057466053722 +32357,161.78499999988912,-0.06860574700629998 +32358,161.78999999988912,-0.06860574740721825 +32359,161.79499999988911,-0.068605747808127 +32360,161.7999999998891,-0.06860574820902625 +32361,161.8049999998891,-0.06860574860991596 +32362,161.8099999998891,-0.06860574901079615 +32363,161.8149999998891,-0.06860574941166679 +32364,161.8199999998891,-0.06860574981252789 +32365,161.8249999998891,-0.06860575021337942 +32366,161.82999999988908,-0.06860575061422139 +32367,161.83499999988908,-0.0686057510150538 +32368,161.83999999988907,-0.06860575141587663 +32369,161.84499999988907,-0.06860575181668986 +32370,161.84999999988906,-0.0686057522174935 +32371,161.85499999988906,-0.06860575261828754 +32372,161.85999999988906,-0.06860575301907197 +32373,161.86499999988905,-0.06860575341984679 +32374,161.86999999988905,-0.06860575382061199 +32375,161.87499999988904,-0.06860575422136755 +32376,161.87999999988904,-0.06860575462211346 +32377,161.88499999988903,-0.06860575502284975 +32378,161.88999999988903,-0.06860575542357637 +32379,161.89499999988902,-0.06860575582429333 +32380,161.89999999988902,-0.06860575622500062 +32381,161.90499999988901,-0.06860575662569823 +32382,161.909999999889,-0.06860575702638617 +32383,161.914999999889,-0.06860575742706441 +32384,161.919999999889,-0.06860575782773295 +32385,161.924999999889,-0.0686057582283918 +32386,161.929999999889,-0.06860575862904092 +32387,161.934999999889,-0.06860575902968033 +32388,161.93999999988898,-0.06860575943031 +32389,161.94499999988898,-0.06860575983092994 +32390,161.94999999988897,-0.06860576023154014 +32391,161.95499999988897,-0.06860576063214058 +32392,161.95999999988896,-0.06860576103273125 +32393,161.96499999988896,-0.06860576143331217 +32394,161.96999999988896,-0.06860576183388331 +32395,161.97499999988895,-0.06860576223444467 +32396,161.97999999988895,-0.06860576263499624 +32397,161.98499999988894,-0.06860576303553802 +32398,161.98999999988894,-0.06860576343607 +32399,161.99499999988893,-0.06860576383659216 +32400,161.99999999988893,-0.06860576423710452 +32401,162.00499999988892,-0.06860576463760702 +32402,162.00999999988892,-0.0686057650380997 +32403,162.01499999988891,-0.06860576543858256 +32404,162.0199999998889,-0.06860576583905555 +32405,162.0249999998889,-0.06860576623951868 +32406,162.0299999998889,-0.06860576663997196 +32407,162.0349999998889,-0.06860576704041538 +32408,162.0399999998889,-0.06860576744084891 +32409,162.0449999998889,-0.06860576784127255 +32410,162.04999999988888,-0.06860576824168631 +32411,162.05499999988888,-0.06860576864209016 +32412,162.05999999988887,-0.0686057690424841 +32413,162.06499999988887,-0.06860576944286813 +32414,162.06999999988886,-0.06860576984324222 +32415,162.07499999988886,-0.0686057702436064 +32416,162.07999999988886,-0.06860577064396065 +32417,162.08499999988885,-0.06860577104430493 +32418,162.08999999988885,-0.06860577144463928 +32419,162.09499999988884,-0.06860577184496365 +32420,162.09999999988884,-0.06860577224527807 +32421,162.10499999988883,-0.06860577264558253 +32422,162.10999999988883,-0.06860577304587699 +32423,162.11499999988882,-0.06860577344616146 +32424,162.11999999988882,-0.06860577384643594 +32425,162.12499999988881,-0.0686057742467004 +32426,162.1299999998888,-0.06860577464695487 +32427,162.1349999998888,-0.06860577504719932 +32428,162.1399999998888,-0.06860577544743375 +32429,162.1449999998888,-0.06860577584765812 +32430,162.1499999998888,-0.06860577624787247 +32431,162.1549999998888,-0.06860577664807677 +32432,162.15999999988878,-0.068605777048271 +32433,162.16499999988878,-0.06860577744845518 +32434,162.16999999988877,-0.0686057778486293 +32435,162.17499999988877,-0.06860577824879334 +32436,162.17999999988876,-0.06860577864894729 +32437,162.18499999988876,-0.06860577904909115 +32438,162.18999999988876,-0.06860577944922491 +32439,162.19499999988875,-0.06860577984934857 +32440,162.19999999988875,-0.0686057802494621 +32441,162.20499999988874,-0.06860578064956552 +32442,162.20999999988874,-0.06860578104965882 +32443,162.21499999988873,-0.06860578144974197 +32444,162.21999999988873,-0.06860578184981499 +32445,162.22499999988872,-0.06860578224987784 +32446,162.22999999988872,-0.06860578264993056 +32447,162.23499999988871,-0.0686057830499731 +32448,162.2399999998887,-0.06860578345000547 +32449,162.2449999998887,-0.06860578385002765 +32450,162.2499999998887,-0.06860578425003964 +32451,162.2549999998887,-0.06860578465004145 +32452,162.2599999998887,-0.06860578505003306 +32453,162.2649999998887,-0.06860578545001447 +32454,162.26999999988868,-0.06860578584998565 +32455,162.27499999988868,-0.06860578624994662 +32456,162.27999999988867,-0.06860578664989736 +32457,162.28499999988867,-0.06860578704983784 +32458,162.28999999988866,-0.06860578744976809 +32459,162.29499999988866,-0.06860578784968809 +32460,162.29999999988866,-0.06860578824959783 +32461,162.30499999988865,-0.0686057886494973 +32462,162.30999999988865,-0.06860578904938651 +32463,162.31499999988864,-0.06860578944926542 +32464,162.31999999988864,-0.06860578984913404 +32465,162.32499999988863,-0.06860579024899238 +32466,162.32999999988863,-0.06860579064884041 +32467,162.33499999988862,-0.06860579104867813 +32468,162.33999999988862,-0.06860579144850552 +32469,162.3449999998886,-0.0686057918483226 +32470,162.3499999998886,-0.06860579224812936 +32471,162.3549999998886,-0.06860579264792577 +32472,162.3599999998886,-0.06860579304771183 +32473,162.3649999998886,-0.06860579344748755 +32474,162.3699999998886,-0.0686057938472529 +32475,162.3749999998886,-0.06860579424700788 +32476,162.37999999988858,-0.06860579464675248 +32477,162.38499999988858,-0.06860579504648671 +32478,162.38999999988857,-0.06860579544621055 +32479,162.39499999988857,-0.068605795845924 +32480,162.39999999988856,-0.06860579624562703 +32481,162.40499999988856,-0.06860579664531966 +32482,162.40999999988856,-0.06860579704500186 +32483,162.41499999988855,-0.06860579744467366 +32484,162.41999999988855,-0.068605797844335 +32485,162.42499999988854,-0.06860579824398592 +32486,162.42999999988854,-0.06860579864362638 +32487,162.43499999988853,-0.0686057990432564 +32488,162.43999999988853,-0.06860579944287595 +32489,162.44499999988852,-0.06860579984248504 +32490,162.44999999988852,-0.06860580024208364 +32491,162.4549999998885,-0.06860580064167177 +32492,162.4599999998885,-0.0686058010412494 +32493,162.4649999998885,-0.06860580144081653 +32494,162.4699999998885,-0.06860580184037318 +32495,162.4749999998885,-0.0686058022399193 +32496,162.4799999998885,-0.06860580263945491 +32497,162.4849999998885,-0.06860580303897999 +32498,162.48999999988848,-0.06860580343849454 +32499,162.49499999988848,-0.06860580383799854 +32500,162.49999999988847,-0.06860580423749199 +32501,162.50499999988847,-0.06860580463697491 +32502,162.50999999988846,-0.06860580503644725 +32503,162.51499999988846,-0.06860580543590904 +32504,162.51999999988846,-0.06860580583536025 +32505,162.52499999988845,-0.06860580623480086 +32506,162.52999999988845,-0.06860580663423091 +32507,162.53499999988844,-0.06860580703365034 +32508,162.53999999988844,-0.06860580743305918 +32509,162.54499999988843,-0.06860580783245739 +32510,162.54999999988843,-0.06860580823184499 +32511,162.55499999988842,-0.06860580863122197 +32512,162.55999999988842,-0.0686058090305883 +32513,162.5649999998884,-0.06860580942994401 +32514,162.5699999998884,-0.06860580982928909 +32515,162.5749999998884,-0.0686058102286235 +32516,162.5799999998884,-0.06860581062794725 +32517,162.5849999998884,-0.06860581102726034 +32518,162.5899999998884,-0.06860581142656275 +32519,162.5949999998884,-0.06860581182585446 +32520,162.59999999988838,-0.0686058122251355 +32521,162.60499999988838,-0.06860581262440585 +32522,162.60999999988837,-0.06860581302366547 +32523,162.61499999988837,-0.06860581342291441 +32524,162.61999999988836,-0.06860581382215263 +32525,162.62499999988836,-0.06860581422138011 +32526,162.62999999988835,-0.06860581462059688 +32527,162.63499999988835,-0.0686058150198029 +32528,162.63999999988835,-0.06860581541899817 +32529,162.64499999988834,-0.06860581581818269 +32530,162.64999999988834,-0.06860581621735645 +32531,162.65499999988833,-0.06860581661651945 +32532,162.65999999988833,-0.06860581701567167 +32533,162.66499999988832,-0.06860581741481311 +32534,162.66999999988832,-0.06860581781394377 +32535,162.6749999998883,-0.06860581821306365 +32536,162.6799999998883,-0.06860581861217271 +32537,162.6849999998883,-0.06860581901127097 +32538,162.6899999998883,-0.06860581941035841 +32539,162.6949999998883,-0.06860581980943502 +32540,162.6999999998883,-0.0686058202085008 +32541,162.7049999998883,-0.06860582060755575 +32542,162.70999999988828,-0.06860582100659987 +32543,162.71499999988828,-0.06860582140563312 +32544,162.71999999988827,-0.06860582180465552 +32545,162.72499999988827,-0.06860582220366707 +32546,162.72999999988826,-0.06860582260266773 +32547,162.73499999988826,-0.06860582300165753 +32548,162.73999999988825,-0.06860582340063644 +32549,162.74499999988825,-0.06860582379960445 +32550,162.74999999988825,-0.06860582419856157 +32551,162.75499999988824,-0.06860582459750778 +32552,162.75999999988824,-0.06860582499644308 +32553,162.76499999988823,-0.06860582539536744 +32554,162.76999999988823,-0.06860582579428089 +32555,162.77499999988822,-0.06860582619318341 +32556,162.77999999988822,-0.06860582659207498 +32557,162.7849999998882,-0.0686058269909556 +32558,162.7899999998882,-0.06860582738982528 +32559,162.7949999998882,-0.068605827788684 +32560,162.7999999998882,-0.06860582818753175 +32561,162.8049999998882,-0.0686058285863685 +32562,162.8099999998882,-0.0686058289851943 +32563,162.8149999998882,-0.06860582938400908 +32564,162.81999999988818,-0.06860582978281289 +32565,162.82499999988818,-0.06860583018160568 +32566,162.82999999988817,-0.06860583058038748 +32567,162.83499999988817,-0.06860583097915825 +32568,162.83999999988816,-0.068605831377918 +32569,162.84499999988816,-0.06860583177666671 +32570,162.84999999988815,-0.06860583217540439 +32571,162.85499999988815,-0.06860583257413101 +32572,162.85999999988815,-0.0686058329728466 +32573,162.86499999988814,-0.06860583337155113 +32574,162.86999999988814,-0.06860583377024458 +32575,162.87499999988813,-0.06860583416892697 +32576,162.87999999988813,-0.06860583456759828 +32577,162.88499999988812,-0.0686058349662585 +32578,162.88999999988812,-0.06860583536490764 +32579,162.8949999998881,-0.06860583576354566 +32580,162.8999999998881,-0.06860583616217258 +32581,162.9049999998881,-0.06860583656078839 +32582,162.9099999998881,-0.06860583695939307 +32583,162.9149999998881,-0.06860583735798663 +32584,162.9199999998881,-0.06860583775656906 +32585,162.9249999998881,-0.06860583815514035 +32586,162.92999999988808,-0.06860583855370049 +32587,162.93499999988808,-0.06860583895224949 +32588,162.93999999988807,-0.0686058393507873 +32589,162.94499999988807,-0.06860583974931396 +32590,162.94999999988806,-0.06860584014782944 +32591,162.95499999988806,-0.06860584054633374 +32592,162.95999999988805,-0.06860584094482686 +32593,162.96499999988805,-0.06860584134330877 +32594,162.96999999988805,-0.06860584174177949 +32595,162.97499999988804,-0.06860584214023899 +32596,162.97999999988804,-0.06860584253868728 +32597,162.98499999988803,-0.06860584293712434 +32598,162.98999999988803,-0.06860584333555018 +32599,162.99499999988802,-0.06860584373396478 +32600,162.99999999988802,-0.06860584413236813 +32601,163.004999999888,-0.06860584453076024 +32602,163.009999999888,-0.06860584492914108 +32603,163.014999999888,-0.06860584532751067 +32604,163.019999999888,-0.06860584572586897 +32605,163.024999999888,-0.06860584612421601 +32606,163.029999999888,-0.06860584652255176 +32607,163.034999999888,-0.06860584692087622 +32608,163.03999999988798,-0.06860584731918938 +32609,163.04499999988798,-0.06860584771749123 +32610,163.04999999988797,-0.06860584811578178 +32611,163.05499999988797,-0.06860584851406101 +32612,163.05999999988796,-0.0686058489123289 +32613,163.06499999988796,-0.06860584931058548 +32614,163.06999999988795,-0.06860584970883071 +32615,163.07499999988795,-0.0686058501070646 +32616,163.07999999988795,-0.06860585050528714 +32617,163.08499999988794,-0.06860585090349831 +32618,163.08999999988794,-0.06860585130169812 +32619,163.09499999988793,-0.06860585169988656 +32620,163.09999999988793,-0.06860585209806362 +32621,163.10499999988792,-0.06860585249622929 +32622,163.10999999988792,-0.06860585289438358 +32623,163.1149999998879,-0.06860585329252647 +32624,163.1199999998879,-0.06860585369065794 +32625,163.1249999998879,-0.068605854088778 +32626,163.1299999998879,-0.06860585448688665 +32627,163.1349999998879,-0.06860585488498386 +32628,163.1399999998879,-0.06860585528306964 +32629,163.1449999998879,-0.068605855681144 +32630,163.14999999988788,-0.06860585607920688 +32631,163.15499999988788,-0.06860585647725832 +32632,163.15999999988787,-0.06860585687529831 +32633,163.16499999988787,-0.06860585727332684 +32634,163.16999999988786,-0.06860585767134389 +32635,163.17499999988786,-0.06860585806934945 +32636,163.17999999988785,-0.06860585846734353 +32637,163.18499999988785,-0.06860585886532611 +32638,163.18999999988785,-0.0686058592632972 +32639,163.19499999988784,-0.06860585966125678 +32640,163.19999999988784,-0.06860586005920483 +32641,163.20499999988783,-0.06860586045714137 +32642,163.20999999988783,-0.0686058608550664 +32643,163.21499999988782,-0.06860586125297988 +32644,163.21999999988782,-0.06860586165088182 +32645,163.2249999998878,-0.06860586204877223 +32646,163.2299999998878,-0.06860586244665107 +32647,163.2349999998878,-0.06860586284451835 +32648,163.2399999998878,-0.06860586324237405 +32649,163.2449999998878,-0.0686058636402182 +32650,163.2499999998878,-0.06860586403805077 +32651,163.2549999998878,-0.06860586443587174 +32652,163.25999999988778,-0.06860586483368113 +32653,163.26499999988778,-0.06860586523147891 +32654,163.26999999988777,-0.06860586562926507 +32655,163.27499999988777,-0.06860586602703962 +32656,163.27999999988776,-0.06860586642480257 +32657,163.28499999988776,-0.06860586682255387 +32658,163.28999999988775,-0.06860586722029356 +32659,163.29499999988775,-0.06860586761802161 +32660,163.29999999988775,-0.068605868015738 +32661,163.30499999988774,-0.06860586841344274 +32662,163.30999999988774,-0.06860586881113583 +32663,163.31499999988773,-0.06860586920881724 +32664,163.31999999988773,-0.06860586960648697 +32665,163.32499999988772,-0.06860587000414503 +32666,163.32999999988772,-0.0686058704017914 +32667,163.3349999998877,-0.06860587079942608 +32668,163.3399999998877,-0.06860587119704907 +32669,163.3449999998877,-0.06860587159466035 +32670,163.3499999998877,-0.06860587199225991 +32671,163.3549999998877,-0.06860587238984775 +32672,163.3599999998877,-0.06860587278742386 +32673,163.3649999998877,-0.06860587318498824 +32674,163.36999999988768,-0.06860587358254089 +32675,163.37499999988768,-0.06860587398008178 +32676,163.37999999988767,-0.06860587437761093 +32677,163.38499999988767,-0.06860587477512832 +32678,163.38999999988766,-0.06860587517263393 +32679,163.39499999988766,-0.06860587557012778 +32680,163.39999999988765,-0.06860587596760985 +32681,163.40499999988765,-0.06860587636508014 +32682,163.40999999988765,-0.06860587676253863 +32683,163.41499999988764,-0.06860587715998533 +32684,163.41999999988764,-0.06860587755742022 +32685,163.42499999988763,-0.0686058779548433 +32686,163.42999999988763,-0.06860587835225455 +32687,163.43499999988762,-0.06860587874965399 +32688,163.43999999988762,-0.06860587914704158 +32689,163.4449999998876,-0.06860587954441734 +32690,163.4499999998876,-0.06860587994178126 +32691,163.4549999998876,-0.06860588033913333 +32692,163.4599999998876,-0.06860588073647354 +32693,163.4649999998876,-0.0686058811338019 +32694,163.4699999998876,-0.06860588153111835 +32695,163.4749999998876,-0.06860588192842296 +32696,163.47999999988758,-0.06860588232571567 +32697,163.48499999988758,-0.0686058827229965 +32698,163.48999999988757,-0.06860588312026543 +32699,163.49499999988757,-0.06860588351752246 +32700,163.49999999988756,-0.06860588391476757 +32701,163.50499999988756,-0.06860588431200076 +32702,163.50999999988755,-0.06860588470922203 +32703,163.51499999988755,-0.06860588510643138 +32704,163.51999999988755,-0.0686058855036288 +32705,163.52499999988754,-0.06860588590081428 +32706,163.52999999988754,-0.06860588629798779 +32707,163.53499999988753,-0.06860588669514937 +32708,163.53999999988753,-0.06860588709229898 +32709,163.54499999988752,-0.0686058874894366 +32710,163.54999999988752,-0.06860588788656227 +32711,163.5549999998875,-0.06860588828367595 +32712,163.5599999998875,-0.06860588868077765 +32713,163.5649999998875,-0.06860588907786733 +32714,163.5699999998875,-0.06860588947494503 +32715,163.5749999998875,-0.06860588987201072 +32716,163.5799999998875,-0.0686058902690644 +32717,163.5849999998875,-0.06860589066610606 +32718,163.58999999988748,-0.0686058910631357 +32719,163.59499999988748,-0.06860589146015329 +32720,163.59999999988747,-0.06860589185715886 +32721,163.60499999988747,-0.06860589225415237 +32722,163.60999999988746,-0.06860589265113383 +32723,163.61499999988746,-0.06860589304810323 +32724,163.61999999988745,-0.06860589344506056 +32725,163.62499999988745,-0.06860589384200583 +32726,163.62999999988745,-0.06860589423893902 +32727,163.63499999988744,-0.06860589463586012 +32728,163.63999999988744,-0.06860589503276913 +32729,163.64499999988743,-0.06860589542966604 +32730,163.64999999988743,-0.06860589582655086 +32731,163.65499999988742,-0.06860589622342354 +32732,163.65999999988742,-0.06860589662028413 +32733,163.6649999998874,-0.06860589701713259 +32734,163.6699999998874,-0.06860589741396891 +32735,163.6749999998874,-0.06860589781079311 +32736,163.6799999998874,-0.06860589820760517 +32737,163.6849999998874,-0.06860589860440507 +32738,163.6899999998874,-0.06860589900119282 +32739,163.6949999998874,-0.06860589939796842 +32740,163.69999999988738,-0.06860589979473183 +32741,163.70499999988738,-0.06860590019148308 +32742,163.70999999988737,-0.06860590058822215 +32743,163.71499999988737,-0.06860590098494902 +32744,163.71999999988736,-0.0686059013816637 +32745,163.72499999988736,-0.06860590177836619 +32746,163.72999999988735,-0.06860590217505647 +32747,163.73499999988735,-0.06860590257173453 +32748,163.73999999988735,-0.06860590296840037 +32749,163.74499999988734,-0.068605903365054 +32750,163.74999999988734,-0.06860590376169537 +32751,163.75499999988733,-0.06860590415832452 +32752,163.75999999988733,-0.06860590455494144 +32753,163.76499999988732,-0.0686059049515461 +32754,163.76999999988732,-0.0686059053481385 +32755,163.7749999998873,-0.06860590574471863 +32756,163.7799999998873,-0.0686059061412865 +32757,163.7849999998873,-0.06860590653784208 +32758,163.7899999998873,-0.06860590693438538 +32759,163.7949999998873,-0.06860590733091641 +32760,163.7999999998873,-0.06860590772743512 +32761,163.8049999998873,-0.06860590812394154 +32762,163.80999999988728,-0.06860590852043566 +32763,163.81499999988728,-0.06860590891691745 +32764,163.81999999988727,-0.06860590931338693 +32765,163.82499999988727,-0.06860590970984408 +32766,163.82999999988726,-0.0686059101062889 +32767,163.83499999988726,-0.06860591050272137 +32768,163.83999999988725,-0.0686059108991415 +32769,163.84499999988725,-0.0686059112955493 +32770,163.84999999988725,-0.06860591169194472 +32771,163.85499999988724,-0.06860591208832777 +32772,163.85999999988724,-0.06860591248469845 +32773,163.86499999988723,-0.06860591288105676 +32774,163.86999999988723,-0.06860591327740267 +32775,163.87499999988722,-0.06860591367373621 +32776,163.87999999988722,-0.06860591407005735 +32777,163.8849999998872,-0.06860591446636609 +32778,163.8899999998872,-0.06860591486266242 +32779,163.8949999998872,-0.06860591525894633 +32780,163.8999999998872,-0.06860591565521781 +32781,163.9049999998872,-0.06860591605147687 +32782,163.9099999998872,-0.06860591644772349 +32783,163.9149999998872,-0.06860591684395767 +32784,163.91999999988718,-0.0686059172401794 +32785,163.92499999988718,-0.0686059176363887 +32786,163.92999999988717,-0.06860591803258552 +32787,163.93499999988717,-0.06860591842876988 +32788,163.93999999988716,-0.06860591882494177 +32789,163.94499999988716,-0.06860591922110118 +32790,163.94999999988715,-0.0686059196172481 +32791,163.95499999988715,-0.06860592001338255 +32792,163.95999999988715,-0.06860592040950449 +32793,163.96499999988714,-0.06860592080561394 +32794,163.96999999988714,-0.06860592120171086 +32795,163.97499999988713,-0.06860592159779527 +32796,163.97999999988713,-0.06860592199386717 +32797,163.98499999988712,-0.06860592238992654 +32798,163.98999999988712,-0.06860592278597337 +32799,163.9949999998871,-0.06860592318200766 +32800,163.9999999998871,-0.0686059235780294 +32801,164.0049999998871,-0.06860592397403859 +32802,164.0099999998871,-0.06860592437003522 +32803,164.0149999998871,-0.06860592476601929 +32804,164.0199999998871,-0.06860592516199078 +32805,164.0249999998871,-0.0686059255579497 +32806,164.02999999988708,-0.06860592595389603 +32807,164.03499999988708,-0.06860592634982977 +32808,164.03999999988707,-0.06860592674575092 +32809,164.04499999988707,-0.06860592714165946 +32810,164.04999999988706,-0.0686059275375554 +32811,164.05499999988706,-0.06860592793343873 +32812,164.05999999988705,-0.06860592832930942 +32813,164.06499999988705,-0.06860592872516749 +32814,164.06999999988705,-0.06860592912101292 +32815,164.07499999988704,-0.06860592951684572 +32816,164.07999999988704,-0.06860592991266587 +32817,164.08499999988703,-0.06860593030847338 +32818,164.08999999988703,-0.06860593070426822 +32819,164.09499999988702,-0.0686059311000504 +32820,164.09999999988702,-0.06860593149581991 +32821,164.104999999887,-0.06860593189157674 +32822,164.109999999887,-0.06860593228732088 +32823,164.114999999887,-0.06860593268305235 +32824,164.119999999887,-0.06860593307877111 +32825,164.124999999887,-0.06860593347447717 +32826,164.129999999887,-0.06860593387017051 +32827,164.134999999887,-0.06860593426585117 +32828,164.13999999988698,-0.06860593466151908 +32829,164.14499999988698,-0.06860593505717429 +32830,164.14999999988697,-0.06860593545281674 +32831,164.15499999988697,-0.06860593584844646 +32832,164.15999999988696,-0.06860593624406344 +32833,164.16499999988696,-0.06860593663966767 +32834,164.16999999988695,-0.06860593703525915 +32835,164.17499999988695,-0.06860593743083786 +32836,164.17999999988695,-0.0686059378264038 +32837,164.18499999988694,-0.06860593822195697 +32838,164.18999999988694,-0.06860593861749736 +32839,164.19499999988693,-0.06860593901302496 +32840,164.19999999988693,-0.06860593940853978 +32841,164.20499999988692,-0.06860593980404178 +32842,164.20999999988692,-0.06860594019953098 +32843,164.2149999998869,-0.06860594059500737 +32844,164.2199999998869,-0.06860594099047095 +32845,164.2249999998869,-0.0686059413859217 +32846,164.2299999998869,-0.06860594178135962 +32847,164.2349999998869,-0.0686059421767847 +32848,164.2399999998869,-0.06860594257219695 +32849,164.2449999998869,-0.06860594296759634 +32850,164.24999999988688,-0.06860594336298287 +32851,164.25499999988688,-0.06860594375835655 +32852,164.25999999988687,-0.06860594415371736 +32853,164.26499999988687,-0.0686059445490653 +32854,164.26999999988686,-0.06860594494440037 +32855,164.27499999988686,-0.06860594533972254 +32856,164.27999999988685,-0.06860594573503183 +32857,164.28499999988685,-0.06860594613032821 +32858,164.28999999988685,-0.06860594652561168 +32859,164.29499999988684,-0.06860594692088226 +32860,164.29999999988684,-0.06860594731613992 +32861,164.30499999988683,-0.06860594771138466 +32862,164.30999999988683,-0.06860594810661647 +32863,164.31499999988682,-0.06860594850183535 +32864,164.31999999988682,-0.06860594889704129 +32865,164.3249999998868,-0.06860594929223429 +32866,164.3299999998868,-0.06860594968741432 +32867,164.3349999998868,-0.06860595008258141 +32868,164.3399999998868,-0.06860595047773553 +32869,164.3449999998868,-0.06860595087287669 +32870,164.3499999998868,-0.06860595126800488 +32871,164.3549999998868,-0.06860595166312007 +32872,164.35999999988678,-0.06860595205822227 +32873,164.36499999988678,-0.06860595245331148 +32874,164.36999999988677,-0.0686059528483877 +32875,164.37499999988677,-0.06860595324345091 +32876,164.37999999988676,-0.06860595363850111 +32877,164.38499999988676,-0.06860595403353828 +32878,164.38999999988675,-0.06860595442856245 +32879,164.39499999988675,-0.06860595482357357 +32880,164.39999999988675,-0.06860595521857167 +32881,164.40499999988674,-0.06860595561355672 +32882,164.40999999988674,-0.06860595600852873 +32883,164.41499999988673,-0.06860595640348767 +32884,164.41999999988673,-0.06860595679843355 +32885,164.42499999988672,-0.06860595719336637 +32886,164.42999999988672,-0.06860595758828614 +32887,164.4349999998867,-0.06860595798319281 +32888,164.4399999998867,-0.0686059583780864 +32889,164.4449999998867,-0.06860595877296691 +32890,164.4499999998867,-0.06860595916783431 +32891,164.4549999998867,-0.06860595956268863 +32892,164.4599999998867,-0.06860595995752983 +32893,164.4649999998867,-0.06860596035235791 +32894,164.46999999988668,-0.06860596074717287 +32895,164.47499999988668,-0.06860596114197472 +32896,164.47999999988667,-0.06860596153676343 +32897,164.48499999988667,-0.068605961931539 +32898,164.48999999988666,-0.06860596232630142 +32899,164.49499999988666,-0.0686059627210507 +32900,164.49999999988665,-0.06860596311578683 +32901,164.50499999988665,-0.0686059635105098 +32902,164.50999999988665,-0.0686059639052196 +32903,164.51499999988664,-0.06860596429991622 +32904,164.51999999988664,-0.06860596469459966 +32905,164.52499999988663,-0.06860596508926993 +32906,164.52999999988663,-0.068605965483927 +32907,164.53499999988662,-0.06860596587857087 +32908,164.53999999988662,-0.06860596627320155 +32909,164.5449999998866,-0.068605966667819 +32910,164.5499999998866,-0.06860596706242325 +32911,164.5549999998866,-0.06860596745701428 +32912,164.5599999998866,-0.06860596785159208 +32913,164.5649999998866,-0.06860596824615665 +32914,164.5699999998866,-0.06860596864070799 +32915,164.5749999998866,-0.06860596903524607 +32916,164.57999999988658,-0.06860596942977092 +32917,164.58499999988658,-0.06860596982428249 +32918,164.58999999988657,-0.06860597021878082 +32919,164.59499999988657,-0.06860597061326587 +32920,164.59999999988656,-0.06860597100773765 +32921,164.60499999988656,-0.06860597140219615 +32922,164.60999999988655,-0.06860597179664137 +32923,164.61499999988655,-0.0686059721910733 +32924,164.61999999988655,-0.06860597258549193 +32925,164.62499999988654,-0.06860597297989725 +32926,164.62999999988654,-0.06860597337428927 +32927,164.63499999988653,-0.06860597376866796 +32928,164.63999999988653,-0.06860597416303335 +32929,164.64499999988652,-0.06860597455738542 +32930,164.64999999988652,-0.06860597495172414 +32931,164.6549999998865,-0.06860597534604952 +32932,164.6599999998865,-0.06860597574036156 +32933,164.6649999998865,-0.06860597613466025 +32934,164.6699999998865,-0.0686059765289456 +32935,164.6749999998865,-0.06860597692321757 +32936,164.6799999998865,-0.06860597731747618 +32937,164.6849999998865,-0.06860597771172142 +32938,164.68999999988648,-0.06860597810595327 +32939,164.69499999988648,-0.06860597850017175 +32940,164.69999999988647,-0.06860597889437682 +32941,164.70499999988647,-0.06860597928856851 +32942,164.70999999988646,-0.06860597968274679 +32943,164.71499999988646,-0.06860598007691167 +32944,164.71999999988645,-0.06860598047106312 +32945,164.72499999988645,-0.06860598086520116 +32946,164.72999999988645,-0.06860598125932578 +32947,164.73499999988644,-0.06860598165343695 +32948,164.73999999988644,-0.0686059820475347 +32949,164.74499999988643,-0.06860598244161899 +32950,164.74999999988643,-0.06860598283568985 +32951,164.75499999988642,-0.06860598322974724 +32952,164.75999999988642,-0.06860598362379118 +32953,164.7649999998864,-0.06860598401782164 +32954,164.7699999998864,-0.06860598441183864 +32955,164.7749999998864,-0.06860598480584215 +32956,164.7799999998864,-0.06860598519983219 +32957,164.7849999998864,-0.06860598559380875 +32958,164.7899999998864,-0.06860598598777179 +32959,164.7949999998864,-0.06860598638172134 +32960,164.79999999988638,-0.0686059867756574 +32961,164.80499999988638,-0.06860598716957993 +32962,164.80999999988637,-0.06860598756348894 +32963,164.81499999988637,-0.06860598795738443 +32964,164.81999999988636,-0.0686059883512664 +32965,164.82499999988636,-0.06860598874513481 +32966,164.82999999988635,-0.0686059891389897 +32967,164.83499999988635,-0.06860598953283104 +32968,164.83999999988634,-0.06860598992665881 +32969,164.84499999988634,-0.06860599032047303 +32970,164.84999999988634,-0.06860599071427369 +32971,164.85499999988633,-0.06860599110806077 +32972,164.85999999988633,-0.0686059915018343 +32973,164.86499999988632,-0.06860599189559423 +32974,164.86999999988632,-0.06860599228934058 +32975,164.8749999998863,-0.06860599268307332 +32976,164.8799999998863,-0.06860599307679248 +32977,164.8849999998863,-0.06860599347049802 +32978,164.8899999998863,-0.06860599386418996 +32979,164.8949999998863,-0.06860599425786827 +32980,164.8999999998863,-0.06860599465153297 +32981,164.9049999998863,-0.06860599504518403 +32982,164.90999999988628,-0.06860599543882147 +32983,164.91499999988628,-0.06860599583244525 +32984,164.91999999988627,-0.06860599622605541 +32985,164.92499999988627,-0.06860599661965192 +32986,164.92999999988626,-0.06860599701323478 +32987,164.93499999988626,-0.06860599740680395 +32988,164.93999999988625,-0.06860599780035946 +32989,164.94499999988625,-0.0686059981939013 +32990,164.94999999988624,-0.06860599858742947 +32991,164.95499999988624,-0.06860599898094395 +32992,164.95999999988624,-0.06860599937444474 +32993,164.96499999988623,-0.06860599976793183 +32994,164.96999999988623,-0.06860600016140522 +32995,164.97499999988622,-0.0686060005548649 +32996,164.97999999988622,-0.06860600094831087 +32997,164.9849999998862,-0.06860600134174312 +32998,164.9899999998862,-0.06860600173516165 +32999,164.9949999998862,-0.06860600212856645 +33000,164.9999999998862,-0.0686060025219575 +33001,165.0049999998862,-0.06860600291533483 +33002,165.0099999998862,-0.06860600330869841 +33003,165.0149999998862,-0.06860600370204822 +33004,165.01999999988618,-0.06860600409538428 +33005,165.02499999988618,-0.06860600448870657 +33006,165.02999999988617,-0.0686060048820151 +33007,165.03499999988617,-0.06860600527530986 +33008,165.03999999988616,-0.06860600566859083 +33009,165.04499999988616,-0.06860600606185802 +33010,165.04999999988615,-0.0686060064551114 +33011,165.05499999988615,-0.06860600684835098 +33012,165.05999999988614,-0.06860600724157678 +33013,165.06499999988614,-0.06860600763478876 +33014,165.06999999988614,-0.06860600802798691 +33015,165.07499999988613,-0.06860600842117126 +33016,165.07999999988613,-0.06860600881434177 +33017,165.08499999988612,-0.06860600920749844 +33018,165.08999999988612,-0.06860600960064128 +33019,165.0949999998861,-0.06860600999377028 +33020,165.0999999998861,-0.06860601038688545 +33021,165.1049999998861,-0.06860601077998675 +33022,165.1099999998861,-0.06860601117307417 +33023,165.1149999998861,-0.06860601156614776 +33024,165.1199999998861,-0.06860601195920746 +33025,165.12499999988609,-0.06860601235225328 +33026,165.12999999988608,-0.06860601274528522 +33027,165.13499999988608,-0.06860601313830327 +33028,165.13999999988607,-0.06860601353130742 +33029,165.14499999988607,-0.06860601392429769 +33030,165.14999999988606,-0.06860601431727403 +33031,165.15499999988606,-0.06860601471023649 +33032,165.15999999988605,-0.06860601510318501 +33033,165.16499999988605,-0.06860601549611961 +33034,165.16999999988604,-0.06860601588904029 +33035,165.17499999988604,-0.06860601628194704 +33036,165.17999999988604,-0.06860601667483984 +33037,165.18499999988603,-0.0686060170677187 +33038,165.18999999988603,-0.06860601746058362 +33039,165.19499999988602,-0.06860601785343456 +33040,165.19999999988602,-0.06860601824627156 +33041,165.204999999886,-0.06860601863909459 +33042,165.209999999886,-0.06860601903190365 +33043,165.214999999886,-0.06860601942469872 +33044,165.219999999886,-0.06860601981747984 +33045,165.224999999886,-0.06860602021024693 +33046,165.229999999886,-0.06860602060300004 +33047,165.23499999988599,-0.06860602099573916 +33048,165.23999999988598,-0.06860602138846428 +33049,165.24499999988598,-0.06860602178117538 +33050,165.24999999988597,-0.06860602217387245 +33051,165.25499999988597,-0.06860602256655551 +33052,165.25999999988596,-0.06860602295922455 +33053,165.26499999988596,-0.06860602335187954 +33054,165.26999999988595,-0.0686060237445205 +33055,165.27499999988595,-0.06860602413714742 +33056,165.27999999988594,-0.06860602452976028 +33057,165.28499999988594,-0.06860602492235908 +33058,165.28999999988594,-0.06860602531494384 +33059,165.29499999988593,-0.06860602570751452 +33060,165.29999999988593,-0.06860602610007113 +33061,165.30499999988592,-0.06860602649261367 +33062,165.30999999988592,-0.06860602688514211 +33063,165.3149999998859,-0.06860602727765648 +33064,165.3199999998859,-0.06860602767015675 +33065,165.3249999998859,-0.06860602806264292 +33066,165.3299999998859,-0.068606028455115 +33067,165.3349999998859,-0.06860602884757296 +33068,165.3399999998859,-0.0686060292400168 +33069,165.34499999988589,-0.06860602963244651 +33070,165.34999999988588,-0.0686060300248621 +33071,165.35499999988588,-0.06860603041726356 +33072,165.35999999988587,-0.06860603080965087 +33073,165.36499999988587,-0.06860603120202406 +33074,165.36999999988586,-0.06860603159438308 +33075,165.37499999988586,-0.06860603198672796 +33076,165.37999999988585,-0.06860603237905867 +33077,165.38499999988585,-0.06860603277137522 +33078,165.38999999988584,-0.06860603316367761 +33079,165.39499999988584,-0.06860603355596581 +33080,165.39999999988584,-0.06860603394823983 +33081,165.40499999988583,-0.06860603434049967 +33082,165.40999999988583,-0.0686060347327453 +33083,165.41499999988582,-0.06860603512497675 +33084,165.41999999988582,-0.06860603551719399 +33085,165.4249999998858,-0.06860603590939703 +33086,165.4299999998858,-0.06860603630158585 +33087,165.4349999998858,-0.06860603669376045 +33088,165.4399999998858,-0.06860603708592082 +33089,165.4449999998858,-0.06860603747806697 +33090,165.4499999998858,-0.06860603787019888 +33091,165.45499999988579,-0.06860603826231655 +33092,165.45999999988578,-0.06860603865441996 +33093,165.46499999988578,-0.06860603904650912 +33094,165.46999999988577,-0.06860603943858404 +33095,165.47499999988577,-0.06860603983064467 +33096,165.47999999988576,-0.06860604022269105 +33097,165.48499999988576,-0.06860604061472315 +33098,165.48999999988575,-0.06860604100674098 +33099,165.49499999988575,-0.06860604139874453 +33100,165.49999999988574,-0.06860604179073378 +33101,165.50499999988574,-0.06860604218270872 +33102,165.50999999988574,-0.06860604257466937 +33103,165.51499999988573,-0.06860604296661572 +33104,165.51999999988573,-0.06860604335854775 +33105,165.52499999988572,-0.06860604375046546 +33106,165.52999999988572,-0.06860604414236884 +33107,165.5349999998857,-0.0686060445342579 +33108,165.5399999998857,-0.06860604492613265 +33109,165.5449999998857,-0.06860604531799303 +33110,165.5499999998857,-0.06860604570983907 +33111,165.5549999998857,-0.06860604610167076 +33112,165.5599999998857,-0.0686060464934881 +33113,165.56499999988569,-0.06860604688529108 +33114,165.56999999988568,-0.0686060472770797 +33115,165.57499999988568,-0.06860604766885393 +33116,165.57999999988567,-0.06860604806061381 +33117,165.58499999988567,-0.06860604845235929 +33118,165.58999999988566,-0.06860604884409038 +33119,165.59499999988566,-0.0686060492358071 +33120,165.59999999988565,-0.0686060496275094 +33121,165.60499999988565,-0.0686060500191973 +33122,165.60999999988564,-0.0686060504108708 +33123,165.61499999988564,-0.06860605080252988 +33124,165.61999999988564,-0.06860605119417454 +33125,165.62499999988563,-0.06860605158580478 +33126,165.62999999988563,-0.06860605197742058 +33127,165.63499999988562,-0.06860605236902194 +33128,165.63999999988562,-0.06860605276060887 +33129,165.6449999998856,-0.06860605315218135 +33130,165.6499999998856,-0.06860605354373937 +33131,165.6549999998856,-0.06860605393528295 +33132,165.6599999998856,-0.06860605432681206 +33133,165.6649999998856,-0.0686060547183267 +33134,165.6699999998856,-0.06860605510982687 +33135,165.67499999988559,-0.06860605550131256 +33136,165.67999999988558,-0.06860605589278376 +33137,165.68499999988558,-0.06860605628424048 +33138,165.68999999988557,-0.06860605667568272 +33139,165.69499999988557,-0.06860605706711043 +33140,165.69999999988556,-0.06860605745852365 +33141,165.70499999988556,-0.06860605784992237 +33142,165.70999999988555,-0.06860605824130656 +33143,165.71499999988555,-0.06860605863267623 +33144,165.71999999988554,-0.06860605902403137 +33145,165.72499999988554,-0.06860605941537198 +33146,165.72999999988554,-0.06860605980669807 +33147,165.73499999988553,-0.0686060601980096 +33148,165.73999999988553,-0.0686060605893066 +33149,165.74499999988552,-0.06860606098058904 +33150,165.74999999988552,-0.06860606137185692 +33151,165.7549999998855,-0.06860606176311022 +33152,165.7599999998855,-0.06860606215434896 +33153,165.7649999998855,-0.06860606254557314 +33154,165.7699999998855,-0.06860606293678273 +33155,165.7749999998855,-0.06860606332797775 +33156,165.7799999998855,-0.06860606371915817 +33157,165.78499999988549,-0.068606064110324 +33158,165.78999999988548,-0.06860606450147522 +33159,165.79499999988548,-0.06860606489261184 +33160,165.79999999988547,-0.06860606528373385 +33161,165.80499999988547,-0.06860606567484125 +33162,165.80999999988546,-0.06860606606593402 +33163,165.81499999988546,-0.06860606645701216 +33164,165.81999999988545,-0.06860606684807567 +33165,165.82499999988545,-0.06860606723912455 +33166,165.82999999988544,-0.06860606763015878 +33167,165.83499999988544,-0.06860606802117836 +33168,165.83999999988544,-0.0686060684121833 +33169,165.84499999988543,-0.06860606880317358 +33170,165.84999999988543,-0.06860606919414919 +33171,165.85499999988542,-0.06860606958511013 +33172,165.85999999988542,-0.06860606997605641 +33173,165.8649999998854,-0.068606070366988 +33174,165.8699999998854,-0.06860607075790491 +33175,165.8749999998854,-0.06860607114880712 +33176,165.8799999998854,-0.06860607153969464 +33177,165.8849999998854,-0.06860607193056747 +33178,165.8899999998854,-0.06860607232142558 +33179,165.89499999988539,-0.068606072712269 +33180,165.89999999988538,-0.0686060731030977 +33181,165.90499999988538,-0.06860607349391168 +33182,165.90999999988537,-0.06860607388471092 +33183,165.91499999988537,-0.06860607427549545 +33184,165.91999999988536,-0.06860607466626523 +33185,165.92499999988536,-0.06860607505702027 +33186,165.92999999988535,-0.06860607544776057 +33187,165.93499999988535,-0.0686060758384861 +33188,165.93999999988534,-0.06860607622919689 +33189,165.94499999988534,-0.0686060766198929 +33190,165.94999999988534,-0.06860607701057415 +33191,165.95499999988533,-0.06860607740124064 +33192,165.95999999988533,-0.06860607779189234 +33193,165.96499999988532,-0.06860607818252927 +33194,165.96999999988532,-0.0686060785731514 +33195,165.9749999998853,-0.06860607896375875 +33196,165.9799999998853,-0.0686060793543513 +33197,165.9849999998853,-0.06860607974492904 +33198,165.9899999998853,-0.06860608013549196 +33199,165.9949999998853,-0.06860608052604007 +33200,165.9999999998853,-0.06860608091657337 +33201,166.00499999988529,-0.06860608130709184 +33202,166.00999999988528,-0.06860608169759548 +33203,166.01499999988528,-0.06860608208808429 +33204,166.01999999988527,-0.06860608247855826 +33205,166.02499999988527,-0.06860608286901738 +33206,166.02999999988526,-0.06860608325946166 +33207,166.03499999988526,-0.06860608364989108 +33208,166.03999999988525,-0.06860608404030563 +33209,166.04499999988525,-0.06860608443070533 +33210,166.04999999988524,-0.06860608482109015 +33211,166.05499999988524,-0.0686060852114601 +33212,166.05999999988524,-0.06860608560181516 +33213,166.06499999988523,-0.06860608599215534 +33214,166.06999999988523,-0.06860608638248063 +33215,166.07499999988522,-0.06860608677279102 +33216,166.07999999988522,-0.0686060871630865 +33217,166.0849999998852,-0.06860608755336708 +33218,166.0899999998852,-0.06860608794363277 +33219,166.0949999998852,-0.06860608833388353 +33220,166.0999999998852,-0.06860608872411934 +33221,166.1049999998852,-0.06860608911434025 +33222,166.1099999998852,-0.06860608950454622 +33223,166.11499999988519,-0.06860608989473725 +33224,166.11999999988518,-0.06860609028491335 +33225,166.12499999988518,-0.0686060906750745 +33226,166.12999999988517,-0.0686060910652207 +33227,166.13499999988517,-0.06860609145535193 +33228,166.13999999988516,-0.0686060918454682 +33229,166.14499999988516,-0.0686060922355695 +33230,166.14999999988515,-0.06860609262565584 +33231,166.15499999988515,-0.0686060930157272 +33232,166.15999999988514,-0.06860609340578357 +33233,166.16499999988514,-0.06860609379582495 +33234,166.16999999988514,-0.06860609418585134 +33235,166.17499999988513,-0.06860609457586272 +33236,166.17999999988513,-0.06860609496585912 +33237,166.18499999988512,-0.0686060953558405 +33238,166.18999999988512,-0.06860609574580687 +33239,166.1949999998851,-0.06860609613575823 +33240,166.1999999998851,-0.06860609652569455 +33241,166.2049999998851,-0.06860609691561585 +33242,166.2099999998851,-0.06860609730552211 +33243,166.2149999998851,-0.06860609769541334 +33244,166.2199999998851,-0.06860609808528952 +33245,166.22499999988509,-0.06860609847515065 +33246,166.22999999988508,-0.06860609886499673 +33247,166.23499999988508,-0.06860609925482775 +33248,166.23999999988507,-0.06860609964464369 +33249,166.24499999988507,-0.06860610003444458 +33250,166.24999999988506,-0.06860610042423039 +33251,166.25499999988506,-0.06860610081400112 +33252,166.25999999988505,-0.06860610120375678 +33253,166.26499999988505,-0.06860610159349734 +33254,166.26999999988504,-0.0686061019832228 +33255,166.27499999988504,-0.06860610237293317 +33256,166.27999999988504,-0.06860610276262842 +33257,166.28499999988503,-0.06860610315230858 +33258,166.28999999988503,-0.0686061035419736 +33259,166.29499999988502,-0.06860610393162353 +33260,166.29999999988502,-0.06860610432125831 +33261,166.304999999885,-0.06860610471087798 +33262,166.309999999885,-0.06860610510048251 +33263,166.314999999885,-0.0686061054900719 +33264,166.319999999885,-0.06860610587964613 +33265,166.324999999885,-0.06860610626920523 +33266,166.329999999885,-0.06860610665874917 +33267,166.33499999988499,-0.06860610704827795 +33268,166.33999999988498,-0.06860610743779157 +33269,166.34499999988498,-0.06860610782729001 +33270,166.34999999988497,-0.06860610821677329 +33271,166.35499999988497,-0.06860610860624139 +33272,166.35999999988496,-0.0686061089956943 +33273,166.36499999988496,-0.06860610938513202 +33274,166.36999999988495,-0.06860610977455454 +33275,166.37499999988495,-0.06860611016396187 +33276,166.37999999988494,-0.068606110553354 +33277,166.38499999988494,-0.0686061109427309 +33278,166.38999999988494,-0.06860611133209261 +33279,166.39499999988493,-0.06860611172143909 +33280,166.39999999988493,-0.06860611211077035 +33281,166.40499999988492,-0.06860611250008637 +33282,166.40999999988492,-0.06860611288938716 +33283,166.4149999998849,-0.0686061132786727 +33284,166.4199999998849,-0.06860611366794302 +33285,166.4249999998849,-0.06860611405719809 +33286,166.4299999998849,-0.06860611444643788 +33287,166.4349999998849,-0.06860611483566244 +33288,166.4399999998849,-0.06860611522487171 +33289,166.44499999988489,-0.06860611561406572 +33290,166.44999999988488,-0.06860611600324447 +33291,166.45499999988488,-0.06860611639240793 +33292,166.45999999988487,-0.0686061167815561 +33293,166.46499999988487,-0.068606117170689 +33294,166.46999999988486,-0.0686061175598066 +33295,166.47499999988486,-0.06860611794890889 +33296,166.47999999988485,-0.06860611833799589 +33297,166.48499999988485,-0.06860611872706757 +33298,166.48999999988484,-0.06860611911612394 +33299,166.49499999988484,-0.06860611950516499 +33300,166.49999999988484,-0.06860611989419071 +33301,166.50499999988483,-0.06860612028320112 +33302,166.50999999988483,-0.0686061206721962 +33303,166.51499999988482,-0.06860612106117593 +33304,166.51999999988482,-0.06860612145014032 +33305,166.5249999998848,-0.06860612183908937 +33306,166.5299999998848,-0.06860612222802305 +33307,166.5349999998848,-0.06860612261694139 +33308,166.5399999998848,-0.06860612300584436 +33309,166.5449999998848,-0.06860612339473196 +33310,166.5499999998848,-0.06860612378360417 +33311,166.55499999988479,-0.06860612417246102 +33312,166.55999999988478,-0.0686061245613025 +33313,166.56499999988478,-0.06860612495012858 +33314,166.56999999988477,-0.06860612533893927 +33315,166.57499999988477,-0.06860612572773457 +33316,166.57999999988476,-0.06860612611651447 +33317,166.58499999988476,-0.06860612650527895 +33318,166.58999999988475,-0.06860612689402802 +33319,166.59499999988475,-0.06860612728276169 +33320,166.59999999988474,-0.06860612767147993 +33321,166.60499999988474,-0.06860612806018274 +33322,166.60999999988474,-0.06860612844887012 +33323,166.61499999988473,-0.06860612883754208 +33324,166.61999999988473,-0.06860612922619858 +33325,166.62499999988472,-0.06860612961483963 +33326,166.62999999988472,-0.06860613000346524 +33327,166.6349999998847,-0.0686061303920754 +33328,166.6399999998847,-0.0686061307806701 +33329,166.6449999998847,-0.06860613116924934 +33330,166.6499999998847,-0.0686061315578131 +33331,166.6549999998847,-0.06860613194636139 +33332,166.6599999998847,-0.0686061323348942 +33333,166.66499999988469,-0.06860613272341153 +33334,166.66999999988468,-0.06860613311191335 +33335,166.67499999988468,-0.0686061335003997 +33336,166.67999999988467,-0.06860613388887053 +33337,166.68499999988467,-0.06860613427732587 +33338,166.68999999988466,-0.06860613466576569 +33339,166.69499999988466,-0.06860613505419003 +33340,166.69999999988465,-0.06860613544259882 +33341,166.70499999988465,-0.0686061358309921 +33342,166.70999999988464,-0.06860613621936984 +33343,166.71499999988464,-0.06860613660773207 +33344,166.71999999988464,-0.06860613699607875 +33345,166.72499999988463,-0.06860613738440989 +33346,166.72999999988463,-0.06860613777272548 +33347,166.73499999988462,-0.06860613816102551 +33348,166.73999999988462,-0.06860613854931001 +33349,166.7449999998846,-0.06860613893757891 +33350,166.7499999998846,-0.06860613932583227 +33351,166.7549999998846,-0.06860613971407005 +33352,166.7599999998846,-0.06860614010229225 +33353,166.7649999998846,-0.06860614049049889 +33354,166.7699999998846,-0.06860614087868992 +33355,166.77499999988459,-0.06860614126686539 +33356,166.77999999988458,-0.06860614165502524 +33357,166.78499999988458,-0.0686061420431695 +33358,166.78999999988457,-0.06860614243129816 +33359,166.79499999988457,-0.0686061428194112 +33360,166.79999999988456,-0.06860614320750864 +33361,166.80499999988456,-0.06860614359559046 +33362,166.80999999988455,-0.06860614398365665 +33363,166.81499999988455,-0.06860614437170721 +33364,166.81999999988454,-0.06860614475974215 +33365,166.82499999988454,-0.06860614514776144 +33366,166.82999999988454,-0.06860614553576509 +33367,166.83499999988453,-0.0686061459237531 +33368,166.83999999988453,-0.06860614631172544 +33369,166.84499999988452,-0.06860614669968212 +33370,166.84999999988452,-0.06860614708762316 +33371,166.8549999998845,-0.06860614747554852 +33372,166.8599999998845,-0.06860614786345821 +33373,166.8649999998845,-0.06860614825135224 +33374,166.8699999998845,-0.06860614863923058 +33375,166.8749999998845,-0.06860614902709324 +33376,166.8799999998845,-0.06860614941494021 +33377,166.88499999988449,-0.06860614980277147 +33378,166.88999999988448,-0.06860615019058704 +33379,166.89499999988448,-0.06860615057838688 +33380,166.89999999988447,-0.06860615096617105 +33381,166.90499999988447,-0.06860615135393948 +33382,166.90999999988446,-0.0686061517416922 +33383,166.91499999988446,-0.06860615212942921 +33384,166.91999999988445,-0.06860615251715048 +33385,166.92499999988445,-0.06860615290485601 +33386,166.92999999988444,-0.06860615329254582 +33387,166.93499999988444,-0.0686061536802199 +33388,166.93999999988444,-0.0686061540678782 +33389,166.94499999988443,-0.06860615445552076 +33390,166.94999999988443,-0.06860615484314758 +33391,166.95499999988442,-0.06860615523075862 +33392,166.95999999988442,-0.0686061556183539 +33393,166.9649999998844,-0.06860615600593341 +33394,166.9699999998844,-0.06860615639349713 +33395,166.9749999998844,-0.06860615678104509 +33396,166.9799999998844,-0.06860615716857725 +33397,166.9849999998844,-0.06860615755609363 +33398,166.9899999998844,-0.06860615794359423 +33399,166.99499999988439,-0.06860615833107901 +33400,166.99999999988438,-0.068606158718548 +33401,167.00499999988438,-0.0686061591060012 +33402,167.00999999988437,-0.06860615949343855 +33403,167.01499999988437,-0.06860615988086011 +33404,167.01999999988436,-0.06860616026826583 +33405,167.02499999988436,-0.06860616065565572 +33406,167.02999999988435,-0.0686061610430298 +33407,167.03499999988435,-0.06860616143038803 +33408,167.03999999988434,-0.06860616181773042 +33409,167.04499999988434,-0.06860616220505698 +33410,167.04999999988434,-0.06860616259236767 +33411,167.05499999988433,-0.06860616297966252 +33412,167.05999999988433,-0.0686061633669415 +33413,167.06499999988432,-0.06860616375420461 +33414,167.06999999988432,-0.06860616414145188 +33415,167.0749999998843,-0.06860616452868325 +33416,167.0799999998843,-0.06860616491589874 +33417,167.0849999998843,-0.06860616530309836 +33418,167.0899999998843,-0.06860616569028209 +33419,167.0949999998843,-0.06860616607744995 +33420,167.0999999998843,-0.06860616646460188 +33421,167.10499999988428,-0.06860616685173793 +33422,167.10999999988428,-0.06860616723885807 +33423,167.11499999988428,-0.06860616762596229 +33424,167.11999999988427,-0.0686061680130506 +33425,167.12499999988427,-0.06860616840012299 +33426,167.12999999988426,-0.06860616878717946 +33427,167.13499999988426,-0.06860616917422001 +33428,167.13999999988425,-0.06860616956124461 +33429,167.14499999988425,-0.06860616994825329 +33430,167.14999999988424,-0.068606170335246 +33431,167.15499999988424,-0.06860617072222279 +33432,167.15999999988423,-0.06860617110918361 +33433,167.16499999988423,-0.06860617149612848 +33434,167.16999999988423,-0.0686061718830574 +33435,167.17499999988422,-0.06860617226997034 +33436,167.17999999988422,-0.06860617265686732 +33437,167.1849999998842,-0.06860617304374832 +33438,167.1899999998842,-0.06860617343061334 +33439,167.1949999998842,-0.06860617381746238 +33440,167.1999999998842,-0.06860617420429543 +33441,167.2049999998842,-0.06860617459111248 +33442,167.2099999998842,-0.06860617497791355 +33443,167.21499999988418,-0.06860617536469858 +33444,167.21999999988418,-0.06860617575146763 +33445,167.22499999988418,-0.06860617613822066 +33446,167.22999999988417,-0.06860617652495768 +33447,167.23499999988417,-0.06860617691167868 +33448,167.23999999988416,-0.06860617729838364 +33449,167.24499999988416,-0.0686061776850726 +33450,167.24999999988415,-0.0686061780717455 +33451,167.25499999988415,-0.06860617845840239 +33452,167.25999999988414,-0.0686061788450432 +33453,167.26499999988414,-0.06860617923166798 +33454,167.26999999988413,-0.06860617961827671 +33455,167.27499999988413,-0.06860618000486939 +33456,167.27999999988413,-0.06860618039144599 +33457,167.28499999988412,-0.06860618077800654 +33458,167.28999999988412,-0.068606181164551 +33459,167.2949999998841,-0.0686061815510794 +33460,167.2999999998841,-0.06860618193759171 +33461,167.3049999998841,-0.06860618232408794 +33462,167.3099999998841,-0.06860618271056808 +33463,167.3149999998841,-0.06860618309703213 +33464,167.3199999998841,-0.06860618348348008 +33465,167.32499999988408,-0.06860618386991194 +33466,167.32999999988408,-0.06860618425632767 +33467,167.33499999988408,-0.0686061846427273 +33468,167.33999999988407,-0.06860618502911082 +33469,167.34499999988407,-0.06860618541547821 +33470,167.34999999988406,-0.06860618580182946 +33471,167.35499999988406,-0.0686061861881646 +33472,167.35999999988405,-0.0686061865744836 +33473,167.36499999988405,-0.06860618696078646 +33474,167.36999999988404,-0.06860618734707319 +33475,167.37499999988404,-0.06860618773334376 +33476,167.37999999988403,-0.06860618811959819 +33477,167.38499999988403,-0.06860618850583645 +33478,167.38999999988403,-0.06860618889205855 +33479,167.39499999988402,-0.06860618927826449 +33480,167.39999999988402,-0.06860618966445427 +33481,167.404999999884,-0.06860619005062786 +33482,167.409999999884,-0.06860619043678527 +33483,167.414999999884,-0.06860619082292649 +33484,167.419999999884,-0.06860619120905154 +33485,167.424999999884,-0.06860619159516039 +33486,167.429999999884,-0.06860619198125303 +33487,167.43499999988398,-0.06860619236732948 +33488,167.43999999988398,-0.06860619275338972 +33489,167.44499999988398,-0.06860619313943375 +33490,167.44999999988397,-0.06860619352546156 +33491,167.45499999988397,-0.06860619391147316 +33492,167.45999999988396,-0.06860619429746852 +33493,167.46499999988396,-0.06860619468344767 +33494,167.46999999988395,-0.06860619506941057 +33495,167.47499999988395,-0.06860619545535725 +33496,167.47999999988394,-0.06860619584128769 +33497,167.48499999988394,-0.06860619622720186 +33498,167.48999999988393,-0.0686061966130998 +33499,167.49499999988393,-0.06860619699898148 +33500,167.49999999988393,-0.0686061973848469 +33501,167.50499999988392,-0.06860619777069604 +33502,167.50999999988392,-0.06860619815652892 +33503,167.5149999998839,-0.06860619854234552 +33504,167.5199999998839,-0.06860619892814586 +33505,167.5249999998839,-0.0686061993139299 +33506,167.5299999998839,-0.06860619969969767 +33507,167.5349999998839,-0.06860620008544915 +33508,167.5399999998839,-0.06860620047118432 +33509,167.54499999988388,-0.06860620085690321 +33510,167.54999999988388,-0.06860620124260577 +33511,167.55499999988388,-0.06860620162829205 +33512,167.55999999988387,-0.06860620201396199 +33513,167.56499999988387,-0.06860620239961562 +33514,167.56999999988386,-0.06860620278525294 +33515,167.57499999988386,-0.06860620317087392 +33516,167.57999999988385,-0.06860620355647856 +33517,167.58499999988385,-0.06860620394206689 +33518,167.58999999988384,-0.06860620432763886 +33519,167.59499999988384,-0.06860620471319451 +33520,167.59999999988383,-0.06860620509873379 +33521,167.60499999988383,-0.06860620548425671 +33522,167.60999999988383,-0.06860620586976329 +33523,167.61499999988382,-0.0686062062552535 +33524,167.61999999988382,-0.06860620664072734 +33525,167.6249999998838,-0.0686062070261848 +33526,167.6299999998838,-0.0686062074116259 +33527,167.6349999998838,-0.06860620779705064 +33528,167.6399999998838,-0.06860620818245897 +33529,167.6449999998838,-0.06860620856785092 +33530,167.6499999998838,-0.06860620895322647 +33531,167.65499999988378,-0.06860620933858563 +33532,167.65999999988378,-0.06860620972392839 +33533,167.66499999988378,-0.06860621010925473 +33534,167.66999999988377,-0.06860621049456468 +33535,167.67499999988377,-0.06860621087985821 +33536,167.67999999988376,-0.06860621126513532 +33537,167.68499999988376,-0.068606211650396 +33538,167.68999999988375,-0.06860621203564027 +33539,167.69499999988375,-0.06860621242086809 +33540,167.69999999988374,-0.06860621280607948 +33541,167.70499999988374,-0.06860621319127444 +33542,167.70999999988373,-0.06860621357645293 +33543,167.71499999988373,-0.06860621396161498 +33544,167.71999999988373,-0.06860621434676058 +33545,167.72499999988372,-0.06860621473188973 +33546,167.72999999988372,-0.06860621511700239 +33547,167.7349999998837,-0.06860621550209861 +33548,167.7399999998837,-0.06860621588717836 +33549,167.7449999998837,-0.06860621627224162 +33550,167.7499999998837,-0.0686062166572884 +33551,167.7549999998837,-0.0686062170423187 +33552,167.7599999998837,-0.06860621742733251 +33553,167.76499999988368,-0.06860621781232983 +33554,167.76999999988368,-0.06860621819731065 +33555,167.77499999988368,-0.06860621858227497 +33556,167.77999999988367,-0.06860621896722278 +33557,167.78499999988367,-0.06860621935215408 +33558,167.78999999988366,-0.06860621973706887 +33559,167.79499999988366,-0.06860622012196714 +33560,167.79999999988365,-0.06860622050684889 +33561,167.80499999988365,-0.0686062208917141 +33562,167.80999999988364,-0.0686062212765628 +33563,167.81499999988364,-0.06860622166139495 +33564,167.81999999988363,-0.06860622204621054 +33565,167.82499999988363,-0.06860622243100961 +33566,167.82999999988363,-0.06860622281579214 +33567,167.83499999988362,-0.0686062232005581 +33568,167.83999999988362,-0.0686062235853075 +33569,167.8449999998836,-0.06860622397004035 +33570,167.8499999998836,-0.06860622435475662 +33571,167.8549999998836,-0.06860622473945632 +33572,167.8599999998836,-0.06860622512413946 +33573,167.8649999998836,-0.068606225508806 +33574,167.8699999998836,-0.06860622589345597 +33575,167.87499999988358,-0.06860622627808935 +33576,167.87999999988358,-0.06860622666270613 +33577,167.88499999988358,-0.06860622704730633 +33578,167.88999999988357,-0.06860622743188992 +33579,167.89499999988357,-0.06860622781645691 +33580,167.89999999988356,-0.06860622820100729 +33581,167.90499999988356,-0.06860622858554105 +33582,167.90999999988355,-0.06860622897005819 +33583,167.91499999988355,-0.06860622935455872 +33584,167.91999999988354,-0.06860622973904262 +33585,167.92499999988354,-0.06860623012350989 +33586,167.92999999988353,-0.06860623050796053 +33587,167.93499999988353,-0.06860623089239451 +33588,167.93999999988353,-0.06860623127681185 +33589,167.94499999988352,-0.06860623166121255 +33590,167.94999999988352,-0.0686062320455966 +33591,167.9549999998835,-0.068606232429964 +33592,167.9599999998835,-0.06860623281431473 +33593,167.9649999998835,-0.0686062331986488 +33594,167.9699999998835,-0.0686062335829662 +33595,167.9749999998835,-0.06860623396726692 +33596,167.9799999998835,-0.06860623435155097 +33597,167.98499999988348,-0.06860623473581834 +33598,167.98999999988348,-0.06860623512006901 +33599,167.99499999988348,-0.068606235504303 +33600,167.99999999988347,-0.06860623588852029 +33601,168.00499999988347,-0.06860623627272087 +33602,168.00999999988346,-0.06860623665690477 +33603,168.01499999988346,-0.06860623704107195 +33604,168.01999999988345,-0.06860623742522241 +33605,168.02499999988345,-0.06860623780935618 +33606,168.02999999988344,-0.06860623819347322 +33607,168.03499999988344,-0.06860623857757353 +33608,168.03999999988343,-0.06860623896165713 +33609,168.04499999988343,-0.06860623934572398 +33610,168.04999999988343,-0.06860623972977409 +33611,168.05499999988342,-0.06860624011380746 +33612,168.05999999988342,-0.06860624049782409 +33613,168.0649999998834,-0.06860624088182396 +33614,168.0699999998834,-0.0686062412658071 +33615,168.0749999998834,-0.06860624164977347 +33616,168.0799999998834,-0.06860624203372308 +33617,168.0849999998834,-0.06860624241765592 +33618,168.0899999998834,-0.068606242801572 +33619,168.09499999988338,-0.06860624318547129 +33620,168.09999999988338,-0.06860624356935381 +33621,168.10499999988338,-0.06860624395321954 +33622,168.10999999988337,-0.0686062443370685 +33623,168.11499999988337,-0.06860624472090066 +33624,168.11999999988336,-0.06860624510471601 +33625,168.12499999988336,-0.06860624548851457 +33626,168.12999999988335,-0.06860624587229633 +33627,168.13499999988335,-0.06860624625606128 +33628,168.13999999988334,-0.06860624663980941 +33629,168.14499999988334,-0.06860624702354073 +33630,168.14999999988333,-0.06860624740725524 +33631,168.15499999988333,-0.06860624779095291 +33632,168.15999999988333,-0.06860624817463375 +33633,168.16499999988332,-0.06860624855829776 +33634,168.16999999988332,-0.06860624894194495 +33635,168.1749999998833,-0.06860624932557528 +33636,168.1799999998833,-0.06860624970918876 +33637,168.1849999998833,-0.0686062500927854 +33638,168.1899999998833,-0.06860625047636519 +33639,168.1949999998833,-0.06860625085992811 +33640,168.1999999998833,-0.06860625124347418 +33641,168.20499999988328,-0.06860625162700337 +33642,168.20999999988328,-0.0686062520105157 +33643,168.21499999988328,-0.06860625239401116 +33644,168.21999999988327,-0.06860625277748975 +33645,168.22499999988327,-0.06860625316095144 +33646,168.22999999988326,-0.06860625354439624 +33647,168.23499999988326,-0.06860625392782416 +33648,168.23999999988325,-0.06860625431123518 +33649,168.24499999988325,-0.0686062546946293 +33650,168.24999999988324,-0.06860625507800651 +33651,168.25499999988324,-0.06860625546136681 +33652,168.25999999988323,-0.06860625584471021 +33653,168.26499999988323,-0.06860625622803669 +33654,168.26999999988323,-0.06860625661134624 +33655,168.27499999988322,-0.06860625699463888 +33656,168.27999999988322,-0.06860625737791458 +33657,168.2849999998832,-0.06860625776117335 +33658,168.2899999998832,-0.06860625814441519 +33659,168.2949999998832,-0.0686062585276401 +33660,168.2999999998832,-0.06860625891084804 +33661,168.3049999998832,-0.06860625929403905 +33662,168.3099999998832,-0.06860625967721311 +33663,168.31499999988318,-0.0686062600603702 +33664,168.31999999988318,-0.06860626044351033 +33665,168.32499999988318,-0.06860626082663349 +33666,168.32999999988317,-0.06860626120973969 +33667,168.33499999988317,-0.06860626159282891 +33668,168.33999999988316,-0.06860626197590117 +33669,168.34499999988316,-0.06860626235895644 +33670,168.34999999988315,-0.06860626274199472 +33671,168.35499999988315,-0.068606263125016 +33672,168.35999999988314,-0.0686062635080203 +33673,168.36499999988314,-0.06860626389100759 +33674,168.36999999988313,-0.06860626427397788 +33675,168.37499999988313,-0.06860626465693118 +33676,168.37999999988313,-0.06860626503986746 +33677,168.38499999988312,-0.06860626542278672 +33678,168.38999999988312,-0.06860626580568896 +33679,168.3949999998831,-0.06860626618857418 +33680,168.3999999998831,-0.06860626657144238 +33681,168.4049999998831,-0.06860626695429355 +33682,168.4099999998831,-0.06860626733712767 +33683,168.4149999998831,-0.06860626771994477 +33684,168.4199999998831,-0.06860626810274482 +33685,168.42499999988308,-0.06860626848552782 +33686,168.42999999988308,-0.06860626886829377 +33687,168.43499999988308,-0.06860626925104266 +33688,168.43999999988307,-0.0686062696337745 +33689,168.44499999988307,-0.06860627001648928 +33690,168.44999999988306,-0.06860627039918699 +33691,168.45499999988306,-0.06860627078186762 +33692,168.45999999988305,-0.06860627116453118 +33693,168.46499999988305,-0.06860627154717767 +33694,168.46999999988304,-0.06860627192980706 +33695,168.47499999988304,-0.06860627231241938 +33696,168.47999999988303,-0.0686062726950146 +33697,168.48499999988303,-0.06860627307759272 +33698,168.48999999988303,-0.06860627346015374 +33699,168.49499999988302,-0.06860627384269767 +33700,168.49999999988302,-0.0686062742252245 +33701,168.504999999883,-0.0686062746077342 +33702,168.509999999883,-0.0686062749902268 +33703,168.514999999883,-0.06860627537270225 +33704,168.519999999883,-0.06860627575516061 +33705,168.524999999883,-0.06860627613760183 +33706,168.529999999883,-0.06860627652002592 +33707,168.53499999988298,-0.06860627690243287 +33708,168.53999999988298,-0.06860627728482269 +33709,168.54499999988298,-0.06860627766719535 +33710,168.54999999988297,-0.06860627804955087 +33711,168.55499999988297,-0.06860627843188924 +33712,168.55999999988296,-0.06860627881421046 +33713,168.56499999988296,-0.0686062791965145 +33714,168.56999999988295,-0.06860627957880139 +33715,168.57499999988295,-0.06860627996107112 +33716,168.57999999988294,-0.06860628034332367 +33717,168.58499999988294,-0.06860628072555904 +33718,168.58999999988293,-0.06860628110777724 +33719,168.59499999988293,-0.06860628148997824 +33720,168.59999999988293,-0.06860628187216207 +33721,168.60499999988292,-0.0686062822543287 +33722,168.60999999988292,-0.06860628263647814 +33723,168.6149999998829,-0.06860628301861038 +33724,168.6199999998829,-0.06860628340072542 +33725,168.6249999998829,-0.06860628378282324 +33726,168.6299999998829,-0.06860628416490386 +33727,168.6349999998829,-0.06860628454696727 +33728,168.6399999998829,-0.06860628492901344 +33729,168.64499999988288,-0.0686062853110424 +33730,168.64999999988288,-0.06860628569305413 +33731,168.65499999988288,-0.06860628607504864 +33732,168.65999999988287,-0.0686062864570259 +33733,168.66499999988287,-0.06860628683898592 +33734,168.66999999988286,-0.06860628722092871 +33735,168.67499999988286,-0.06860628760285424 +33736,168.67999999988285,-0.06860628798476254 +33737,168.68499999988285,-0.06860628836665356 +33738,168.68999999988284,-0.06860628874852734 +33739,168.69499999988284,-0.06860628913038384 +33740,168.69999999988283,-0.06860628951222308 +33741,168.70499999988283,-0.06860628989404506 +33742,168.70999999988283,-0.06860629027584976 +33743,168.71499999988282,-0.06860629065763718 +33744,168.71999999988282,-0.06860629103940731 +33745,168.7249999998828,-0.06860629142116016 +33746,168.7299999998828,-0.06860629180289572 +33747,168.7349999998828,-0.06860629218461399 +33748,168.7399999998828,-0.06860629256631497 +33749,168.7449999998828,-0.06860629294799862 +33750,168.7499999998828,-0.06860629332966497 +33751,168.75499999988278,-0.06860629371131402 +33752,168.75999999988278,-0.06860629409294576 +33753,168.76499999988278,-0.06860629447456017 +33754,168.76999999988277,-0.06860629485615727 +33755,168.77499999988277,-0.06860629523773704 +33756,168.77999999988276,-0.06860629561929947 +33757,168.78499999988276,-0.06860629600084459 +33758,168.78999999988275,-0.06860629638237235 +33759,168.79499999988275,-0.06860629676388279 +33760,168.79999999988274,-0.06860629714537586 +33761,168.80499999988274,-0.06860629752685159 +33762,168.80999999988273,-0.06860629790830997 +33763,168.81499999988273,-0.068606298289751 +33764,168.81999999988273,-0.06860629867117465 +33765,168.82499999988272,-0.06860629905258095 +33766,168.82999999988272,-0.06860629943396988 +33767,168.8349999998827,-0.06860629981534144 +33768,168.8399999998827,-0.06860630019669563 +33769,168.8449999998827,-0.06860630057803244 +33770,168.8499999998827,-0.06860630095935186 +33771,168.8549999998827,-0.06860630134065389 +33772,168.8599999998827,-0.06860630172193852 +33773,168.86499999988268,-0.06860630210320577 +33774,168.86999999988268,-0.06860630248445561 +33775,168.87499999988268,-0.06860630286568806 +33776,168.87999999988267,-0.06860630324690309 +33777,168.88499999988267,-0.0686063036281007 +33778,168.88999999988266,-0.0686063040092809 +33779,168.89499999988266,-0.0686063043904437 +33780,168.89999999988265,-0.06860630477158906 +33781,168.90499999988265,-0.068606305152717 +33782,168.90999999988264,-0.06860630553382752 +33783,168.91499999988264,-0.06860630591492059 +33784,168.91999999988263,-0.06860630629599622 +33785,168.92499999988263,-0.06860630667705442 +33786,168.92999999988263,-0.06860630705809517 +33787,168.93499999988262,-0.06860630743911847 +33788,168.93999999988262,-0.06860630782012432 +33789,168.9449999998826,-0.0686063082011127 +33790,168.9499999998826,-0.06860630858208364 +33791,168.9549999998826,-0.0686063089630371 +33792,168.9599999998826,-0.06860630934397308 +33793,168.9649999998826,-0.06860630972489161 +33794,168.9699999998826,-0.06860631010579264 +33795,168.97499999988258,-0.0686063104866762 +33796,168.97999999988258,-0.06860631086754229 +33797,168.98499999988258,-0.06860631124839088 +33798,168.98999999988257,-0.06860631162922198 +33799,168.99499999988257,-0.06860631201003559 +33800,168.99999999988256,-0.06860631239083168 +33801,169.00499999988256,-0.06860631277161028 +33802,169.00999999988255,-0.06860631315237137 +33803,169.01499999988255,-0.06860631353311496 +33804,169.01999999988254,-0.06860631391384102 +33805,169.02499999988254,-0.06860631429454957 +33806,169.02999999988253,-0.06860631467524059 +33807,169.03499999988253,-0.06860631505591408 +33808,169.03999999988253,-0.06860631543657006 +33809,169.04499999988252,-0.0686063158172085 +33810,169.04999999988252,-0.0686063161978294 +33811,169.0549999998825,-0.06860631657843276 +33812,169.0599999998825,-0.06860631695901857 +33813,169.0649999998825,-0.06860631733958684 +33814,169.0699999998825,-0.06860631772013755 +33815,169.0749999998825,-0.0686063181006707 +33816,169.0799999998825,-0.06860631848118628 +33817,169.08499999988248,-0.0686063188616843 +33818,169.08999999988248,-0.06860631924216476 +33819,169.09499999988248,-0.06860631962262766 +33820,169.09999999988247,-0.06860632000307297 +33821,169.10499999988247,-0.0686063203835007 +33822,169.10999999988246,-0.06860632076391086 +33823,169.11499999988246,-0.06860632114430343 +33824,169.11999999988245,-0.0686063215246784 +33825,169.12499999988245,-0.06860632190503577 +33826,169.12999999988244,-0.06860632228537555 +33827,169.13499999988244,-0.06860632266569773 +33828,169.13999999988243,-0.06860632304600231 +33829,169.14499999988243,-0.06860632342628926 +33830,169.14999999988243,-0.06860632380655862 +33831,169.15499999988242,-0.06860632418681036 +33832,169.15999999988242,-0.06860632456704446 +33833,169.1649999998824,-0.06860632494726096 +33834,169.1699999998824,-0.06860632532745982 +33835,169.1749999998824,-0.06860632570764105 +33836,169.1799999998824,-0.06860632608780465 +33837,169.1849999998824,-0.06860632646795059 +33838,169.1899999998824,-0.06860632684807891 +33839,169.19499999988238,-0.06860632722818957 +33840,169.19999999988238,-0.06860632760828259 +33841,169.20499999988238,-0.06860632798835795 +33842,169.20999999988237,-0.06860632836841565 +33843,169.21499999988237,-0.06860632874845568 +33844,169.21999999988236,-0.06860632912847806 +33845,169.22499999988236,-0.06860632950848276 +33846,169.22999999988235,-0.06860632988846979 +33847,169.23499999988235,-0.06860633026843914 +33848,169.23999999988234,-0.0686063306483908 +33849,169.24499999988234,-0.06860633102832481 +33850,169.24999999988233,-0.0686063314082411 +33851,169.25499999988233,-0.06860633178813971 +33852,169.25999999988233,-0.06860633216802063 +33853,169.26499999988232,-0.06860633254788384 +33854,169.26999999988232,-0.06860633292772936 +33855,169.2749999998823,-0.06860633330755717 +33856,169.2799999998823,-0.06860633368736725 +33857,169.2849999998823,-0.06860633406715964 +33858,169.2899999998823,-0.0686063344469343 +33859,169.2949999998823,-0.06860633482669123 +33860,169.2999999998823,-0.06860633520643046 +33861,169.30499999988228,-0.06860633558615195 +33862,169.30999999988228,-0.06860633596585569 +33863,169.31499999988228,-0.06860633634554171 +33864,169.31999999988227,-0.06860633672521 +33865,169.32499999988227,-0.06860633710486053 +33866,169.32999999988226,-0.06860633748449332 +33867,169.33499999988226,-0.06860633786410836 +33868,169.33999999988225,-0.06860633824370564 +33869,169.34499999988225,-0.06860633862328518 +33870,169.34999999988224,-0.06860633900284693 +33871,169.35499999988224,-0.06860633938239093 +33872,169.35999999988223,-0.06860633976191716 +33873,169.36499999988223,-0.06860634014142561 +33874,169.36999999988222,-0.0686063405209163 +33875,169.37499999988222,-0.06860634090038918 +33876,169.37999999988222,-0.0686063412798443 +33877,169.3849999998822,-0.06860634165928163 +33878,169.3899999998822,-0.06860634203870115 +33879,169.3949999998822,-0.0686063424181029 +33880,169.3999999998822,-0.06860634279748684 +33881,169.4049999998822,-0.06860634317685299 +33882,169.4099999998822,-0.06860634355620132 +33883,169.41499999988218,-0.06860634393553186 +33884,169.41999999988218,-0.06860634431484457 +33885,169.42499999988217,-0.06860634469413945 +33886,169.42999999988217,-0.06860634507341652 +33887,169.43499999988217,-0.06860634545267577 +33888,169.43999999988216,-0.0686063458319172 +33889,169.44499999988216,-0.06860634621114078 +33890,169.44999999988215,-0.06860634659034655 +33891,169.45499999988215,-0.06860634696953445 +33892,169.45999999988214,-0.06860634734870454 +33893,169.46499999988214,-0.06860634772785676 +33894,169.46999999988213,-0.06860634810699114 +33895,169.47499999988213,-0.06860634848610767 +33896,169.47999999988212,-0.06860634886520633 +33897,169.48499999988212,-0.06860634924428713 +33898,169.48999999988212,-0.06860634962335008 +33899,169.4949999998821,-0.06860635000239515 +33900,169.4999999998821,-0.06860635038142235 +33901,169.5049999998821,-0.06860635076043167 +33902,169.5099999998821,-0.06860635113942311 +33903,169.5149999998821,-0.06860635151839668 +33904,169.5199999998821,-0.06860635189735236 +33905,169.52499999988208,-0.06860635227629015 +33906,169.52999999988208,-0.06860635265521005 +33907,169.53499999988207,-0.06860635303411204 +33908,169.53999999988207,-0.06860635341299615 +33909,169.54499999988207,-0.06860635379186235 +33910,169.54999999988206,-0.06860635417071063 +33911,169.55499999988206,-0.068606354549541 +33912,169.55999999988205,-0.06860635492835347 +33913,169.56499999988205,-0.06860635530714801 +33914,169.56999999988204,-0.06860635568592463 +33915,169.57499999988204,-0.06860635606468332 +33916,169.57999999988203,-0.0686063564434241 +33917,169.58499999988203,-0.06860635682214693 +33918,169.58999999988202,-0.06860635720085181 +33919,169.59499999988202,-0.06860635757953878 +33920,169.59999999988202,-0.0686063579582078 +33921,169.604999999882,-0.06860635833685887 +33922,169.609999999882,-0.06860635871549198 +33923,169.614999999882,-0.06860635909410714 +33924,169.619999999882,-0.06860635947270435 +33925,169.624999999882,-0.0686063598512836 +33926,169.629999999882,-0.06860636022984488 +33927,169.63499999988198,-0.06860636060838819 +33928,169.63999999988198,-0.06860636098691353 +33929,169.64499999988197,-0.06860636136542089 +33930,169.64999999988197,-0.06860636174391029 +33931,169.65499999988197,-0.06860636212238168 +33932,169.65999999988196,-0.06860636250083509 +33933,169.66499999988196,-0.06860636287927052 +33934,169.66999999988195,-0.06860636325768794 +33935,169.67499999988195,-0.06860636363608738 +33936,169.67999999988194,-0.0686063640144688 +33937,169.68499999988194,-0.06860636439283223 +33938,169.68999999988193,-0.06860636477117765 +33939,169.69499999988193,-0.06860636514950506 +33940,169.69999999988192,-0.06860636552781446 +33941,169.70499999988192,-0.06860636590610583 +33942,169.70999999988192,-0.06860636628437919 +33943,169.7149999998819,-0.06860636666263453 +33944,169.7199999998819,-0.06860636704087184 +33945,169.7249999998819,-0.0686063674190911 +33946,169.7299999998819,-0.06860636779729233 +33947,169.7349999998819,-0.06860636817547552 +33948,169.7399999998819,-0.06860636855364068 +33949,169.74499999988188,-0.06860636893178779 +33950,169.74999999988188,-0.06860636930991684 +33951,169.75499999988187,-0.06860636968802784 +33952,169.75999999988187,-0.06860637006612078 +33953,169.76499999988187,-0.06860637044419567 +33954,169.76999999988186,-0.06860637082225247 +33955,169.77499999988186,-0.06860637120029123 +33956,169.77999999988185,-0.0686063715783119 +33957,169.78499999988185,-0.0686063719563145 +33958,169.78999999988184,-0.06860637233429903 +33959,169.79499999988184,-0.06860637271226547 +33960,169.79999999988183,-0.06860637309021382 +33961,169.80499999988183,-0.06860637346814409 +33962,169.80999999988182,-0.06860637384605626 +33963,169.81499999988182,-0.06860637422395034 +33964,169.81999999988182,-0.06860637460182632 +33965,169.8249999998818,-0.0686063749796842 +33966,169.8299999998818,-0.06860637535752398 +33967,169.8349999998818,-0.06860637573534564 +33968,169.8399999998818,-0.06860637611314918 +33969,169.8449999998818,-0.06860637649093462 +33970,169.8499999998818,-0.06860637686870193 +33971,169.85499999988178,-0.06860637724645112 +33972,169.85999999988178,-0.06860637762418219 +33973,169.86499999988177,-0.06860637800189512 +33974,169.86999999988177,-0.06860637837958992 +33975,169.87499999988177,-0.06860637875726658 +33976,169.87999999988176,-0.06860637913492511 +33977,169.88499999988176,-0.06860637951256549 +33978,169.88999999988175,-0.06860637989018771 +33979,169.89499999988175,-0.06860638026779178 +33980,169.89999999988174,-0.0686063806453777 +33981,169.90499999988174,-0.06860638102294546 +33982,169.90999999988173,-0.06860638140049505 +33983,169.91499999988173,-0.06860638177802648 +33984,169.91999999988172,-0.06860638215553976 +33985,169.92499999988172,-0.06860638253303485 +33986,169.92999999988172,-0.06860638291051176 +33987,169.9349999998817,-0.06860638328797049 +33988,169.9399999998817,-0.06860638366541105 +33989,169.9449999998817,-0.06860638404283341 +33990,169.9499999998817,-0.06860638442023759 +33991,169.9549999998817,-0.06860638479762358 +33992,169.9599999998817,-0.06860638517499136 +33993,169.96499999988168,-0.06860638555234096 +33994,169.96999999988168,-0.06860638592967234 +33995,169.97499999988167,-0.06860638630698551 +33996,169.97999999988167,-0.06860638668428048 +33997,169.98499999988167,-0.06860638706155724 +33998,169.98999999988166,-0.06860638743881578 +33999,169.99499999988166,-0.06860638781605609 +34000,169.99999999988165,-0.06860638819327818 +34001,170.00499999988165,-0.06860638857048204 +34002,170.00999999988164,-0.06860638894766767 +34003,170.01499999988164,-0.06860638932483507 +34004,170.01999999988163,-0.06860638970198422 +34005,170.02499999988163,-0.06860639007911515 +34006,170.02999999988162,-0.06860639045622784 +34007,170.03499999988162,-0.06860639083332225 +34008,170.03999999988162,-0.06860639121039842 +34009,170.0449999998816,-0.06860639158745636 +34010,170.0499999998816,-0.06860639196449603 +34011,170.0549999998816,-0.06860639234151744 +34012,170.0599999998816,-0.06860639271852056 +34013,170.0649999998816,-0.06860639309550544 +34014,170.0699999998816,-0.06860639347247204 +34015,170.07499999988158,-0.06860639384942036 +34016,170.07999999988158,-0.0686063942263504 +34017,170.08499999988157,-0.06860639460326216 +34018,170.08999999988157,-0.06860639498015564 +34019,170.09499999988157,-0.06860639535703084 +34020,170.09999999988156,-0.06860639573388773 +34021,170.10499999988156,-0.06860639611072632 +34022,170.10999999988155,-0.06860639648754661 +34023,170.11499999988155,-0.0686063968643486 +34024,170.11999999988154,-0.0686063972411323 +34025,170.12499999988154,-0.06860639761789769 +34026,170.12999999988153,-0.06860639799464475 +34027,170.13499999988153,-0.0686063983713735 +34028,170.13999999988152,-0.06860639874808394 +34029,170.14499999988152,-0.06860639912477605 +34030,170.14999999988152,-0.06860639950144982 +34031,170.1549999998815,-0.0686063998781053 +34032,170.1599999998815,-0.0686064002547424 +34033,170.1649999998815,-0.0686064006313612 +34034,170.1699999998815,-0.06860640100796166 +34035,170.1749999998815,-0.06860640138454376 +34036,170.1799999998815,-0.06860640176110752 +34037,170.18499999988148,-0.06860640213765294 +34038,170.18999999988148,-0.06860640251417999 +34039,170.19499999988147,-0.06860640289068869 +34040,170.19999999988147,-0.06860640326717903 +34041,170.20499999988147,-0.06860640364365099 +34042,170.20999999988146,-0.06860640402010461 +34043,170.21499999988146,-0.06860640439653985 +34044,170.21999999988145,-0.06860640477295671 +34045,170.22499999988145,-0.0686064051493552 +34046,170.22999999988144,-0.06860640552573531 +34047,170.23499999988144,-0.06860640590209705 +34048,170.23999999988143,-0.06860640627844038 +34049,170.24499999988143,-0.06860640665476532 +34050,170.24999999988142,-0.06860640703107189 +34051,170.25499999988142,-0.06860640740736004 +34052,170.25999999988142,-0.06860640778362981 +34053,170.2649999998814,-0.06860640815988117 +34054,170.2699999998814,-0.06860640853611412 +34055,170.2749999998814,-0.06860640891232866 +34056,170.2799999998814,-0.0686064092885248 +34057,170.2849999998814,-0.0686064096647025 +34058,170.2899999998814,-0.06860641004086179 +34059,170.29499999988138,-0.06860641041700266 +34060,170.29999999988138,-0.06860641079312511 +34061,170.30499999988137,-0.06860641116922912 +34062,170.30999999988137,-0.0686064115453147 +34063,170.31499999988137,-0.06860641192138185 +34064,170.31999999988136,-0.06860641229743056 +34065,170.32499999988136,-0.0686064126734608 +34066,170.32999999988135,-0.06860641304947263 +34067,170.33499999988135,-0.06860641342546599 +34068,170.33999999988134,-0.06860641380144089 +34069,170.34499999988134,-0.06860641417739735 +34070,170.34999999988133,-0.06860641455333535 +34071,170.35499999988133,-0.06860641492925489 +34072,170.35999999988132,-0.06860641530515595 +34073,170.36499999988132,-0.06860641568103855 +34074,170.36999999988132,-0.06860641605690268 +34075,170.3749999998813,-0.06860641643274833 +34076,170.3799999998813,-0.06860641680857549 +34077,170.3849999998813,-0.06860641718438418 +34078,170.3899999998813,-0.06860641756017438 +34079,170.3949999998813,-0.06860641793594609 +34080,170.3999999998813,-0.06860641831169931 +34081,170.40499999988128,-0.06860641868743403 +34082,170.40999999988128,-0.06860641906315025 +34083,170.41499999988127,-0.06860641943884797 +34084,170.41999999988127,-0.0686064198145272 +34085,170.42499999988127,-0.06860642019018791 +34086,170.42999999988126,-0.0686064205658301 +34087,170.43499999988126,-0.06860642094145379 +34088,170.43999999988125,-0.06860642131705895 +34089,170.44499999988125,-0.06860642169264558 +34090,170.44999999988124,-0.0686064220682137 +34091,170.45499999988124,-0.06860642244376329 +34092,170.45999999988123,-0.06860642281929435 +34093,170.46499999988123,-0.06860642319480686 +34094,170.46999999988122,-0.06860642357030085 +34095,170.47499999988122,-0.06860642394577629 +34096,170.47999999988122,-0.06860642432123318 +34097,170.4849999998812,-0.06860642469667153 +34098,170.4899999998812,-0.06860642507209132 +34099,170.4949999998812,-0.06860642544749256 +34100,170.4999999998812,-0.06860642582287524 +34101,170.5049999998812,-0.06860642619823937 +34102,170.5099999998812,-0.06860642657358491 +34103,170.51499999988118,-0.0686064269489119 +34104,170.51999999988118,-0.06860642732422031 +34105,170.52499999988117,-0.06860642769951017 +34106,170.52999999988117,-0.06860642807478144 +34107,170.53499999988117,-0.06860642845003412 +34108,170.53999999988116,-0.06860642882526823 +34109,170.54499999988116,-0.06860642920048375 +34110,170.54999999988115,-0.06860642957568067 +34111,170.55499999988115,-0.068606429950859 +34112,170.55999999988114,-0.06860643032601874 +34113,170.56499999988114,-0.06860643070115988 +34114,170.56999999988113,-0.06860643107628242 +34115,170.57499999988113,-0.06860643145138634 +34116,170.57999999988112,-0.06860643182647166 +34117,170.58499999988112,-0.06860643220153836 +34118,170.58999999988112,-0.06860643257658645 +34119,170.5949999998811,-0.06860643295161593 +34120,170.5999999998811,-0.06860643332662678 +34121,170.6049999998811,-0.068606433701619 +34122,170.6099999998811,-0.06860643407659259 +34123,170.6149999998811,-0.06860643445154756 +34124,170.6199999998811,-0.06860643482648388 +34125,170.62499999988108,-0.06860643520140157 +34126,170.62999999988108,-0.06860643557630061 +34127,170.63499999988107,-0.06860643595118102 +34128,170.63999999988107,-0.06860643632604277 +34129,170.64499999988107,-0.06860643670088587 +34130,170.64999999988106,-0.06860643707571032 +34131,170.65499999988106,-0.06860643745051612 +34132,170.65999999988105,-0.06860643782530325 +34133,170.66499999988105,-0.06860643820007171 +34134,170.66999999988104,-0.06860643857482152 +34135,170.67499999988104,-0.06860643894955264 +34136,170.67999999988103,-0.06860643932426509 +34137,170.68499999988103,-0.06860643969895888 +34138,170.68999999988102,-0.06860644007363398 +34139,170.69499999988102,-0.06860644044829038 +34140,170.69999999988102,-0.0686064408229281 +34141,170.704999999881,-0.06860644119754715 +34142,170.709999999881,-0.06860644157214749 +34143,170.714999999881,-0.06860644194672913 +34144,170.719999999881,-0.0686064423212921 +34145,170.724999999881,-0.06860644269583635 +34146,170.729999999881,-0.06860644307036189 +34147,170.73499999988098,-0.06860644344486873 +34148,170.73999999988098,-0.06860644381935686 +34149,170.74499999988097,-0.06860644419382626 +34150,170.74999999988097,-0.06860644456827696 +34151,170.75499999988097,-0.06860644494270894 +34152,170.75999999988096,-0.06860644531712218 +34153,170.76499999988096,-0.0686064456915167 +34154,170.76999999988095,-0.06860644606589249 +34155,170.77499999988095,-0.06860644644024955 +34156,170.77999999988094,-0.06860644681458786 +34157,170.78499999988094,-0.06860644718890745 +34158,170.78999999988093,-0.06860644756320827 +34159,170.79499999988093,-0.06860644793749038 +34160,170.79999999988092,-0.0686064483117537 +34161,170.80499999988092,-0.0686064486859983 +34162,170.80999999988092,-0.06860644906022413 +34163,170.8149999998809,-0.06860644943443121 +34164,170.8199999998809,-0.06860644980861953 +34165,170.8249999998809,-0.06860645018278907 +34166,170.8299999998809,-0.06860645055693985 +34167,170.8349999998809,-0.06860645093107186 +34168,170.8399999998809,-0.06860645130518508 +34169,170.84499999988088,-0.06860645167927955 +34170,170.84999999988088,-0.06860645205335524 +34171,170.85499999988087,-0.06860645242741212 +34172,170.85999999988087,-0.06860645280145024 +34173,170.86499999988087,-0.06860645317546954 +34174,170.86999999988086,-0.06860645354947006 +34175,170.87499999988086,-0.06860645392345179 +34176,170.87999999988085,-0.06860645429741472 +34177,170.88499999988085,-0.06860645467135884 +34178,170.88999999988084,-0.06860645504528415 +34179,170.89499999988084,-0.06860645541919067 +34180,170.89999999988083,-0.06860645579307836 +34181,170.90499999988083,-0.06860645616694726 +34182,170.90999999988082,-0.06860645654079732 +34183,170.91499999988082,-0.06860645691462856 +34184,170.91999999988082,-0.06860645728844099 +34185,170.9249999998808,-0.0686064576622346 +34186,170.9299999998808,-0.06860645803600936 +34187,170.9349999998808,-0.06860645840976529 +34188,170.9399999998808,-0.06860645878350238 +34189,170.9449999998808,-0.06860645915722063 +34190,170.9499999998808,-0.06860645953092004 +34191,170.95499999988078,-0.0686064599046006 +34192,170.95999999988078,-0.06860646027826232 +34193,170.96499999988077,-0.06860646065190518 +34194,170.96999999988077,-0.06860646102552918 +34195,170.97499999988077,-0.06860646139913433 +34196,170.97999999988076,-0.06860646177272062 +34197,170.98499999988076,-0.06860646214628806 +34198,170.98999999988075,-0.06860646251983661 +34199,170.99499999988075,-0.0686064628933663 +34200,170.99999999988074,-0.06860646326687711 +34201,171.00499999988074,-0.06860646364036906 +34202,171.00999999988073,-0.06860646401384211 +34203,171.01499999988073,-0.06860646438729628 +34204,171.01999999988072,-0.06860646476073157 +34205,171.02499999988072,-0.06860646513414796 +34206,171.02999999988072,-0.06860646550754548 +34207,171.0349999998807,-0.06860646588092409 +34208,171.0399999998807,-0.06860646625428381 +34209,171.0449999998807,-0.06860646662762462 +34210,171.0499999998807,-0.06860646700094654 +34211,171.0549999998807,-0.06860646737424955 +34212,171.0599999998807,-0.06860646774753365 +34213,171.06499999988068,-0.06860646812079882 +34214,171.06999999988068,-0.06860646849404509 +34215,171.07499999988067,-0.06860646886727244 +34216,171.07999999988067,-0.06860646924048086 +34217,171.08499999988067,-0.06860646961367035 +34218,171.08999999988066,-0.06860646998684092 +34219,171.09499999988066,-0.06860647035999255 +34220,171.09999999988065,-0.06860647073312527 +34221,171.10499999988065,-0.06860647110623903 +34222,171.10999999988064,-0.06860647147933385 +34223,171.11499999988064,-0.06860647185240973 +34224,171.11999999988063,-0.06860647222546666 +34225,171.12499999988063,-0.06860647259850465 +34226,171.12999999988062,-0.06860647297152368 +34227,171.13499999988062,-0.06860647334452377 +34228,171.13999999988062,-0.06860647371750489 +34229,171.1449999998806,-0.06860647409046705 +34230,171.1499999998806,-0.06860647446341024 +34231,171.1549999998806,-0.06860647483633446 +34232,171.1599999998806,-0.06860647520923972 +34233,171.1649999998806,-0.068606475582126 +34234,171.1699999998806,-0.0686064759549933 +34235,171.17499999988058,-0.06860647632784161 +34236,171.17999999988058,-0.06860647670067097 +34237,171.18499999988057,-0.06860647707348133 +34238,171.18999999988057,-0.0686064774462727 +34239,171.19499999988057,-0.06860647781904507 +34240,171.19999999988056,-0.06860647819179845 +34241,171.20499999988056,-0.06860647856453282 +34242,171.20999999988055,-0.0686064789372482 +34243,171.21499999988055,-0.06860647930994458 +34244,171.21999999988054,-0.06860647968262196 +34245,171.22499999988054,-0.06860648005528032 +34246,171.22999999988053,-0.06860648042791967 +34247,171.23499999988053,-0.06860648080053999 +34248,171.23999999988052,-0.06860648117314132 +34249,171.24499999988052,-0.06860648154572362 +34250,171.24999999988052,-0.06860648191828687 +34251,171.2549999998805,-0.0686064822908311 +34252,171.2599999998805,-0.06860648266335632 +34253,171.2649999998805,-0.0686064830358625 +34254,171.2699999998805,-0.06860648340834963 +34255,171.2749999998805,-0.06860648378081774 +34256,171.2799999998805,-0.06860648415326681 +34257,171.28499999988048,-0.06860648452569681 +34258,171.28999999988048,-0.06860648489810778 +34259,171.29499999988047,-0.06860648527049969 +34260,171.29999999988047,-0.06860648564287254 +34261,171.30499999988047,-0.06860648601522634 +34262,171.30999999988046,-0.06860648638756107 +34263,171.31499999988046,-0.06860648675987677 +34264,171.31999999988045,-0.06860648713217338 +34265,171.32499999988045,-0.0686064875044509 +34266,171.32999999988044,-0.06860648787670938 +34267,171.33499999988044,-0.06860648824894879 +34268,171.33999999988043,-0.0686064886211691 +34269,171.34499999988043,-0.06860648899337034 +34270,171.34999999988042,-0.0686064893655525 +34271,171.35499999988042,-0.06860648973771555 +34272,171.35999999988042,-0.06860649010985952 +34273,171.3649999998804,-0.06860649048198442 +34274,171.3699999998804,-0.0686064908540902 +34275,171.3749999998804,-0.06860649122617689 +34276,171.3799999998804,-0.06860649159824447 +34277,171.3849999998804,-0.06860649197029295 +34278,171.3899999998804,-0.06860649234232233 +34279,171.39499999988038,-0.06860649271433258 +34280,171.39999999988038,-0.06860649308632374 +34281,171.40499999988037,-0.06860649345829578 +34282,171.40999999988037,-0.06860649383024868 +34283,171.41499999988037,-0.06860649420218248 +34284,171.41999999988036,-0.06860649457409715 +34285,171.42499999988036,-0.06860649494599268 +34286,171.42999999988035,-0.0686064953178691 +34287,171.43499999988035,-0.06860649568972636 +34288,171.43999999988034,-0.0686064960615645 +34289,171.44499999988034,-0.0686064964333835 +34290,171.44999999988033,-0.06860649680518335 +34291,171.45499999988033,-0.06860649717696407 +34292,171.45999999988032,-0.06860649754872562 +34293,171.46499999988032,-0.06860649792046805 +34294,171.46999999988032,-0.0686064982921913 +34295,171.4749999998803,-0.06860649866389541 +34296,171.4799999998803,-0.06860649903558035 +34297,171.4849999998803,-0.06860649940724613 +34298,171.4899999998803,-0.06860649977889273 +34299,171.4949999998803,-0.06860650015052017 +34300,171.4999999998803,-0.06860650052212842 +34301,171.50499999988028,-0.06860650089371753 +34302,171.50999999988028,-0.06860650126528745 +34303,171.51499999988027,-0.0686065016368382 +34304,171.51999999988027,-0.06860650200836975 +34305,171.52499999988027,-0.06860650237988211 +34306,171.52999999988026,-0.0686065027513753 +34307,171.53499999988026,-0.06860650312284927 +34308,171.53999999988025,-0.06860650349430407 +34309,171.54499999988025,-0.06860650386573966 +34310,171.54999999988024,-0.06860650423715604 +34311,171.55499999988024,-0.06860650460855323 +34312,171.55999999988023,-0.06860650497993123 +34313,171.56499999988023,-0.06860650535129001 +34314,171.56999999988022,-0.06860650572262958 +34315,171.57499999988022,-0.06860650609394993 +34316,171.57999999988022,-0.06860650646525106 +34317,171.5849999998802,-0.06860650683653298 +34318,171.5899999998802,-0.06860650720779567 +34319,171.5949999998802,-0.06860650757903912 +34320,171.5999999998802,-0.06860650795026335 +34321,171.6049999998802,-0.06860650832146835 +34322,171.6099999998802,-0.06860650869265413 +34323,171.61499999988018,-0.06860650906382064 +34324,171.61999999988018,-0.06860650943496792 +34325,171.62499999988017,-0.06860650980609596 +34326,171.62999999988017,-0.06860651017720476 +34327,171.63499999988016,-0.06860651054829431 +34328,171.63999999988016,-0.06860651091936461 +34329,171.64499999988016,-0.06860651129041566 +34330,171.64999999988015,-0.06860651166144745 +34331,171.65499999988015,-0.06860651203245996 +34332,171.65999999988014,-0.06860651240345322 +34333,171.66499999988014,-0.06860651277442721 +34334,171.66999999988013,-0.06860651314538194 +34335,171.67499999988013,-0.0686065135163174 +34336,171.67999999988012,-0.06860651388723356 +34337,171.68499999988012,-0.06860651425813045 +34338,171.68999999988011,-0.06860651462900808 +34339,171.6949999998801,-0.0686065149998664 +34340,171.6999999998801,-0.06860651537070546 +34341,171.7049999998801,-0.06860651574152521 +34342,171.7099999998801,-0.06860651611232568 +34343,171.7149999998801,-0.06860651648310687 +34344,171.7199999998801,-0.06860651685386875 +34345,171.72499999988008,-0.06860651722461131 +34346,171.72999999988008,-0.06860651759533458 +34347,171.73499999988007,-0.06860651796603856 +34348,171.73999999988007,-0.06860651833672321 +34349,171.74499999988006,-0.06860651870738856 +34350,171.74999999988006,-0.0686065190780346 +34351,171.75499999988006,-0.06860651944866131 +34352,171.75999999988005,-0.0686065198192687 +34353,171.76499999988005,-0.06860652018985677 +34354,171.76999999988004,-0.06860652056042552 +34355,171.77499999988004,-0.06860652093097493 +34356,171.77999999988003,-0.06860652130150502 +34357,171.78499999988003,-0.06860652167201577 +34358,171.78999999988002,-0.06860652204250718 +34359,171.79499999988002,-0.06860652241297927 +34360,171.79999999988001,-0.068606522783432 +34361,171.80499999988,-0.06860652315386538 +34362,171.80999999988,-0.06860652352427943 +34363,171.81499999988,-0.06860652389467412 +34364,171.81999999988,-0.06860652426504944 +34365,171.82499999988,-0.06860652463540542 +34366,171.82999999988,-0.06860652500574205 +34367,171.83499999987998,-0.06860652537605931 +34368,171.83999999987998,-0.06860652574635721 +34369,171.84499999987997,-0.06860652611663573 +34370,171.84999999987997,-0.0686065264868949 +34371,171.85499999987996,-0.06860652685713468 +34372,171.85999999987996,-0.0686065272273551 +34373,171.86499999987996,-0.06860652759755613 +34374,171.86999999987995,-0.06860652796773778 +34375,171.87499999987995,-0.06860652833790004 +34376,171.87999999987994,-0.06860652870804292 +34377,171.88499999987994,-0.0686065290781664 +34378,171.88999999987993,-0.06860652944827049 +34379,171.89499999987993,-0.0686065298183552 +34380,171.89999999987992,-0.06860653018842051 +34381,171.90499999987992,-0.06860653055846641 +34382,171.90999999987991,-0.0686065309284929 +34383,171.9149999998799,-0.06860653129849999 +34384,171.9199999998799,-0.06860653166848768 +34385,171.9249999998799,-0.06860653203845596 +34386,171.9299999998799,-0.06860653240840481 +34387,171.9349999998799,-0.06860653277833424 +34388,171.9399999998799,-0.06860653314824428 +34389,171.94499999987988,-0.06860653351813487 +34390,171.94999999987988,-0.06860653388800604 +34391,171.95499999987987,-0.06860653425785779 +34392,171.95999999987987,-0.06860653462769009 +34393,171.96499999987986,-0.06860653499750298 +34394,171.96999999987986,-0.06860653536729641 +34395,171.97499999987986,-0.06860653573707041 +34396,171.97999999987985,-0.06860653610682498 +34397,171.98499999987985,-0.06860653647656009 +34398,171.98999999987984,-0.06860653684627575 +34399,171.99499999987984,-0.06860653721597199 +34400,171.99999999987983,-0.06860653758564875 +34401,172.00499999987983,-0.06860653795530607 +34402,172.00999999987982,-0.06860653832494391 +34403,172.01499999987982,-0.0686065386945623 +34404,172.01999999987981,-0.06860653906416123 +34405,172.0249999998798,-0.06860653943374068 +34406,172.0299999998798,-0.06860653980330067 +34407,172.0349999998798,-0.06860654017284118 +34408,172.0399999998798,-0.06860654054236223 +34409,172.0449999998798,-0.06860654091186379 +34410,172.0499999998798,-0.06860654128134587 +34411,172.05499999987978,-0.06860654165080847 +34412,172.05999999987978,-0.06860654202025158 +34413,172.06499999987977,-0.06860654238967522 +34414,172.06999999987977,-0.06860654275907935 +34415,172.07499999987976,-0.068606543128464 +34416,172.07999999987976,-0.06860654349782916 +34417,172.08499999987976,-0.0686065438671748 +34418,172.08999999987975,-0.06860654423650094 +34419,172.09499999987975,-0.06860654460580759 +34420,172.09999999987974,-0.06860654497509472 +34421,172.10499999987974,-0.06860654534436235 +34422,172.10999999987973,-0.06860654571361045 +34423,172.11499999987973,-0.06860654608283906 +34424,172.11999999987972,-0.06860654645204814 +34425,172.12499999987972,-0.06860654682123771 +34426,172.12999999987971,-0.06860654719040774 +34427,172.1349999998797,-0.06860654755955825 +34428,172.1399999998797,-0.06860654792868924 +34429,172.1449999998797,-0.06860654829780069 +34430,172.1499999998797,-0.06860654866689261 +34431,172.1549999998797,-0.06860654903596498 +34432,172.1599999998797,-0.06860654940501783 +34433,172.16499999987968,-0.06860654977405113 +34434,172.16999999987968,-0.06860655014306488 +34435,172.17499999987967,-0.06860655051205909 +34436,172.17999999987967,-0.06860655088103375 +34437,172.18499999987966,-0.06860655124998884 +34438,172.18999999987966,-0.06860655161892439 +34439,172.19499999987966,-0.06860655198784038 +34440,172.19999999987965,-0.0686065523567368 +34441,172.20499999987965,-0.06860655272561367 +34442,172.20999999987964,-0.06860655309447097 +34443,172.21499999987964,-0.0686065534633087 +34444,172.21999999987963,-0.06860655383212685 +34445,172.22499999987963,-0.06860655420092543 +34446,172.22999999987962,-0.06860655456970445 +34447,172.23499999987962,-0.06860655493846388 +34448,172.23999999987961,-0.06860655530720372 +34449,172.2449999998796,-0.06860655567592398 +34450,172.2499999998796,-0.06860655604462465 +34451,172.2549999998796,-0.06860655641330574 +34452,172.2599999998796,-0.06860655678196723 +34453,172.2649999998796,-0.06860655715060912 +34454,172.2699999998796,-0.06860655751923142 +34455,172.27499999987958,-0.06860655788783411 +34456,172.27999999987958,-0.0686065582564172 +34457,172.28499999987957,-0.06860655862498069 +34458,172.28999999987957,-0.06860655899352458 +34459,172.29499999987956,-0.06860655936204885 +34460,172.29999999987956,-0.0686065597305535 +34461,172.30499999987956,-0.06860656009903854 +34462,172.30999999987955,-0.06860656046750395 +34463,172.31499999987955,-0.06860656083594975 +34464,172.31999999987954,-0.06860656120437593 +34465,172.32499999987954,-0.06860656157278247 +34466,172.32999999987953,-0.06860656194116938 +34467,172.33499999987953,-0.06860656230953666 +34468,172.33999999987952,-0.0686065626778843 +34469,172.34499999987952,-0.06860656304621232 +34470,172.34999999987951,-0.06860656341452068 +34471,172.3549999998795,-0.06860656378280941 +34472,172.3599999998795,-0.06860656415107849 +34473,172.3649999998795,-0.06860656451932792 +34474,172.3699999998795,-0.0686065648875577 +34475,172.3749999998795,-0.06860656525576783 +34476,172.3799999998795,-0.06860656562395831 +34477,172.38499999987948,-0.06860656599212912 +34478,172.38999999987948,-0.06860656636028029 +34479,172.39499999987947,-0.06860656672841178 +34480,172.39999999987947,-0.0686065670965236 +34481,172.40499999987946,-0.06860656746461577 +34482,172.40999999987946,-0.06860656783268824 +34483,172.41499999987946,-0.06860656820074106 +34484,172.41999999987945,-0.0686065685687742 +34485,172.42499999987945,-0.06860656893678765 +34486,172.42999999987944,-0.06860656930478143 +34487,172.43499999987944,-0.06860656967275551 +34488,172.43999999987943,-0.06860657004070991 +34489,172.44499999987943,-0.06860657040864462 +34490,172.44999999987942,-0.06860657077655966 +34491,172.45499999987942,-0.06860657114445498 +34492,172.45999999987941,-0.0686065715123306 +34493,172.4649999998794,-0.06860657188018654 +34494,172.4699999998794,-0.06860657224802276 +34495,172.4749999998794,-0.06860657261583929 +34496,172.4799999998794,-0.0686065729836361 +34497,172.4849999998794,-0.06860657335141321 +34498,172.4899999998794,-0.0686065737191706 +34499,172.49499999987938,-0.06860657408690828 +34500,172.49999999987938,-0.06860657445462623 +34501,172.50499999987937,-0.06860657482232446 +34502,172.50999999987937,-0.06860657519000297 +34503,172.51499999987936,-0.06860657555766175 +34504,172.51999999987936,-0.06860657592530083 +34505,172.52499999987936,-0.06860657629292015 +34506,172.52999999987935,-0.06860657666051975 +34507,172.53499999987935,-0.06860657702809961 +34508,172.53999999987934,-0.06860657739565973 +34509,172.54499999987934,-0.0686065777632001 +34510,172.54999999987933,-0.06860657813072076 +34511,172.55499999987933,-0.06860657849822163 +34512,172.55999999987932,-0.06860657886570277 +34513,172.56499999987932,-0.06860657923316417 +34514,172.56999999987931,-0.06860657960060582 +34515,172.5749999998793,-0.06860657996802769 +34516,172.5799999998793,-0.06860658033542981 +34517,172.5849999998793,-0.06860658070281217 +34518,172.5899999998793,-0.06860658107017477 +34519,172.5949999998793,-0.0686065814375176 +34520,172.5999999998793,-0.06860658180484067 +34521,172.60499999987928,-0.06860658217214395 +34522,172.60999999987928,-0.06860658253942746 +34523,172.61499999987927,-0.06860658290669121 +34524,172.61999999987927,-0.06860658327393516 +34525,172.62499999987926,-0.06860658364115933 +34526,172.62999999987926,-0.06860658400836372 +34527,172.63499999987926,-0.06860658437554834 +34528,172.63999999987925,-0.06860658474271315 +34529,172.64499999987925,-0.06860658510985818 +34530,172.64999999987924,-0.06860658547698341 +34531,172.65499999987924,-0.06860658584408884 +34532,172.65999999987923,-0.06860658621117448 +34533,172.66499999987923,-0.06860658657824031 +34534,172.66999999987922,-0.06860658694528635 +34535,172.67499999987922,-0.06860658731231256 +34536,172.67999999987921,-0.06860658767931896 +34537,172.6849999998792,-0.06860658804630557 +34538,172.6899999998792,-0.06860658841327234 +34539,172.6949999998792,-0.06860658878021933 +34540,172.6999999998792,-0.06860658914714649 +34541,172.7049999998792,-0.06860658951405381 +34542,172.7099999998792,-0.06860658988094132 +34543,172.71499999987918,-0.06860659024780899 +34544,172.71999999987918,-0.06860659061465683 +34545,172.72499999987917,-0.06860659098148486 +34546,172.72999999987917,-0.06860659134829304 +34547,172.73499999987916,-0.06860659171508138 +34548,172.73999999987916,-0.06860659208184988 +34549,172.74499999987916,-0.06860659244859856 +34550,172.74999999987915,-0.06860659281532736 +34551,172.75499999987915,-0.06860659318203634 +34552,172.75999999987914,-0.06860659354872546 +34553,172.76499999987914,-0.06860659391539473 +34554,172.76999999987913,-0.06860659428204414 +34555,172.77499999987913,-0.06860659464867369 +34556,172.77999999987912,-0.06860659501528339 +34557,172.78499999987912,-0.06860659538187322 +34558,172.78999999987911,-0.0686065957484432 +34559,172.7949999998791,-0.06860659611499331 +34560,172.7999999998791,-0.06860659648152354 +34561,172.8049999998791,-0.0686065968480339 +34562,172.8099999998791,-0.06860659721452439 +34563,172.8149999998791,-0.06860659758099501 +34564,172.8199999998791,-0.06860659794744574 +34565,172.82499999987908,-0.0686065983138766 +34566,172.82999999987908,-0.06860659868028757 +34567,172.83499999987907,-0.06860659904667864 +34568,172.83999999987907,-0.06860659941304983 +34569,172.84499999987906,-0.06860659977940113 +34570,172.84999999987906,-0.06860660014573254 +34571,172.85499999987906,-0.06860660051204405 +34572,172.85999999987905,-0.06860660087833567 +34573,172.86499999987905,-0.06860660124460738 +34574,172.86999999987904,-0.06860660161085919 +34575,172.87499999987904,-0.06860660197709109 +34576,172.87999999987903,-0.06860660234330308 +34577,172.88499999987903,-0.06860660270949516 +34578,172.88999999987902,-0.06860660307566732 +34579,172.89499999987902,-0.06860660344181957 +34580,172.89999999987901,-0.0686066038079519 +34581,172.904999999879,-0.0686066041740643 +34582,172.909999999879,-0.0686066045401568 +34583,172.914999999879,-0.06860660490622936 +34584,172.919999999879,-0.06860660527228199 +34585,172.924999999879,-0.06860660563831468 +34586,172.929999999879,-0.06860660600432744 +34587,172.93499999987898,-0.06860660637032027 +34588,172.93999999987898,-0.06860660673629318 +34589,172.94499999987897,-0.06860660710224613 +34590,172.94999999987897,-0.06860660746817913 +34591,172.95499999987896,-0.0686066078340922 +34592,172.95999999987896,-0.06860660819998532 +34593,172.96499999987896,-0.06860660856585848 +34594,172.96999999987895,-0.0686066089317117 +34595,172.97499999987895,-0.06860660929754495 +34596,172.97999999987894,-0.06860660966335826 +34597,172.98499999987894,-0.0686066100291516 +34598,172.98999999987893,-0.06860661039492497 +34599,172.99499999987893,-0.06860661076067838 +34600,172.99999999987892,-0.06860661112641182 +34601,173.00499999987892,-0.0686066114921253 +34602,173.00999999987891,-0.0686066118578188 +34603,173.0149999998789,-0.06860661222349233 +34604,173.0199999998789,-0.06860661258914588 +34605,173.0249999998789,-0.06860661295477946 +34606,173.0299999998789,-0.06860661332039306 +34607,173.0349999998789,-0.06860661368598667 +34608,173.0399999998789,-0.06860661405156028 +34609,173.04499999987888,-0.06860661441711392 +34610,173.04999999987888,-0.06860661478264755 +34611,173.05499999987887,-0.0686066151481612 +34612,173.05999999987887,-0.06860661551365485 +34613,173.06499999987886,-0.0686066158791285 +34614,173.06999999987886,-0.06860661624458216 +34615,173.07499999987886,-0.06860661661001581 +34616,173.07999999987885,-0.06860661697542945 +34617,173.08499999987885,-0.06860661734082307 +34618,173.08999999987884,-0.06860661770619671 +34619,173.09499999987884,-0.06860661807155032 +34620,173.09999999987883,-0.06860661843688393 +34621,173.10499999987883,-0.0686066188021975 +34622,173.10999999987882,-0.06860661916749106 +34623,173.11499999987882,-0.0686066195327646 +34624,173.11999999987881,-0.06860661989801811 +34625,173.1249999998788,-0.0686066202632516 +34626,173.1299999998788,-0.06860662062846505 +34627,173.1349999998788,-0.06860662099365848 +34628,173.1399999998788,-0.06860662135883187 +34629,173.1449999998788,-0.06860662172398523 +34630,173.1499999998788,-0.06860662208911855 +34631,173.15499999987878,-0.06860662245423181 +34632,173.15999999987878,-0.06860662281932504 +34633,173.16499999987877,-0.06860662318439822 +34634,173.16999999987877,-0.06860662354945135 +34635,173.17499999987876,-0.06860662391448445 +34636,173.17999999987876,-0.06860662427949747 +34637,173.18499999987876,-0.06860662464449044 +34638,173.18999999987875,-0.06860662500946337 +34639,173.19499999987875,-0.06860662537441621 +34640,173.19999999987874,-0.068606625739349 +34641,173.20499999987874,-0.06860662610426174 +34642,173.20999999987873,-0.0686066264691544 +34643,173.21499999987873,-0.06860662683402699 +34644,173.21999999987872,-0.06860662719887951 +34645,173.22499999987872,-0.06860662756371196 +34646,173.22999999987871,-0.06860662792852432 +34647,173.2349999998787,-0.06860662829331661 +34648,173.2399999998787,-0.06860662865808881 +34649,173.2449999998787,-0.06860662902284094 +34650,173.2499999998787,-0.06860662938757296 +34651,173.2549999998787,-0.06860662975228492 +34652,173.2599999998787,-0.06860663011697678 +34653,173.26499999987868,-0.06860663048164854 +34654,173.26999999987868,-0.06860663084630021 +34655,173.27499999987867,-0.06860663121093179 +34656,173.27999999987867,-0.06860663157554325 +34657,173.28499999987866,-0.06860663194013462 +34658,173.28999999987866,-0.06860663230470589 +34659,173.29499999987866,-0.06860663266925704 +34660,173.29999999987865,-0.06860663303378808 +34661,173.30499999987865,-0.06860663339829902 +34662,173.30999999987864,-0.06860663376278985 +34663,173.31499999987864,-0.06860663412726055 +34664,173.31999999987863,-0.06860663449171113 +34665,173.32499999987863,-0.0686066348561416 +34666,173.32999999987862,-0.06860663522055194 +34667,173.33499999987862,-0.06860663558494215 +34668,173.33999999987861,-0.06860663594931225 +34669,173.3449999998786,-0.0686066363136622 +34670,173.3499999998786,-0.06860663667799204 +34671,173.3549999998786,-0.06860663704230172 +34672,173.3599999998786,-0.06860663740659126 +34673,173.3649999998786,-0.06860663777086068 +34674,173.3699999998786,-0.06860663813510995 +34675,173.37499999987858,-0.06860663849933907 +34676,173.37999999987858,-0.06860663886354806 +34677,173.38499999987857,-0.0686066392277369 +34678,173.38999999987857,-0.06860663959190558 +34679,173.39499999987856,-0.06860663995605411 +34680,173.39999999987856,-0.06860664032018247 +34681,173.40499999987856,-0.0686066406842907 +34682,173.40999999987855,-0.06860664104837876 +34683,173.41499999987855,-0.06860664141244664 +34684,173.41999999987854,-0.06860664177649436 +34685,173.42499999987854,-0.06860664214052191 +34686,173.42999999987853,-0.0686066425045293 +34687,173.43499999987853,-0.06860664286851652 +34688,173.43999999987852,-0.06860664323248357 +34689,173.44499999987852,-0.06860664359643043 +34690,173.44999999987851,-0.06860664396035712 +34691,173.4549999998785,-0.06860664432426362 +34692,173.4599999998785,-0.06860664468814996 +34693,173.4649999998785,-0.0686066450520161 +34694,173.4699999998785,-0.06860664541586205 +34695,173.4749999998785,-0.06860664577968781 +34696,173.4799999998785,-0.06860664614349338 +34697,173.48499999987848,-0.06860664650727875 +34698,173.48999999987848,-0.06860664687104394 +34699,173.49499999987847,-0.06860664723478892 +34700,173.49999999987847,-0.06860664759851369 +34701,173.50499999987846,-0.06860664796221826 +34702,173.50999999987846,-0.06860664832590263 +34703,173.51499999987846,-0.06860664868956678 +34704,173.51999999987845,-0.06860664905321073 +34705,173.52499999987845,-0.06860664941683448 +34706,173.52999999987844,-0.068606649780438 +34707,173.53499999987844,-0.06860665014402129 +34708,173.53999999987843,-0.06860665050758438 +34709,173.54499999987843,-0.06860665087112724 +34710,173.54999999987842,-0.06860665123464989 +34711,173.55499999987842,-0.0686066515981523 +34712,173.5599999998784,-0.06860665196163448 +34713,173.5649999998784,-0.06860665232509644 +34714,173.5699999998784,-0.06860665268853815 +34715,173.5749999998784,-0.06860665305195963 +34716,173.5799999998784,-0.06860665341536089 +34717,173.5849999998784,-0.0686066537787419 +34718,173.5899999998784,-0.06860665414210265 +34719,173.59499999987838,-0.06860665450544318 +34720,173.59999999987838,-0.06860665486876345 +34721,173.60499999987837,-0.0686066552320635 +34722,173.60999999987837,-0.06860665559534328 +34723,173.61499999987836,-0.06860665595860278 +34724,173.61999999987836,-0.06860665632184205 +34725,173.62499999987836,-0.06860665668506107 +34726,173.62999999987835,-0.06860665704825981 +34727,173.63499999987835,-0.0686066574114383 +34728,173.63999999987834,-0.06860665777459653 +34729,173.64499999987834,-0.06860665813773449 +34730,173.64999999987833,-0.06860665850085218 +34731,173.65499999987833,-0.0686066588639496 +34732,173.65999999987832,-0.06860665922702675 +34733,173.66499999987832,-0.06860665959008361 +34734,173.6699999998783,-0.06860665995312021 +34735,173.6749999998783,-0.06860666031613652 +34736,173.6799999998783,-0.06860666067913254 +34737,173.6849999998783,-0.06860666104210829 +34738,173.6899999998783,-0.06860666140506375 +34739,173.6949999998783,-0.06860666176799891 +34740,173.6999999998783,-0.06860666213091379 +34741,173.70499999987828,-0.06860666249380837 +34742,173.70999999987828,-0.06860666285668267 +34743,173.71499999987827,-0.06860666321953666 +34744,173.71999999987827,-0.06860666358237034 +34745,173.72499999987826,-0.06860666394518374 +34746,173.72999999987826,-0.06860666430797684 +34747,173.73499999987826,-0.0686066646707496 +34748,173.73999999987825,-0.06860666503350209 +34749,173.74499999987825,-0.06860666539623425 +34750,173.74999999987824,-0.0686066657589461 +34751,173.75499999987824,-0.06860666612163763 +34752,173.75999999987823,-0.06860666648430885 +34753,173.76499999987823,-0.06860666684695974 +34754,173.76999999987822,-0.06860666720959031 +34755,173.77499999987822,-0.06860666757220056 +34756,173.7799999998782,-0.06860666793479049 +34757,173.7849999998782,-0.06860666829736009 +34758,173.7899999998782,-0.06860666865990936 +34759,173.7949999998782,-0.0686066690224383 +34760,173.7999999998782,-0.0686066693849469 +34761,173.8049999998782,-0.06860666974743516 +34762,173.8099999998782,-0.0686066701099031 +34763,173.81499999987818,-0.06860667047235067 +34764,173.81999999987818,-0.06860667083477792 +34765,173.82499999987817,-0.0686066711971848 +34766,173.82999999987817,-0.06860667155957136 +34767,173.83499999987816,-0.06860667192193755 +34768,173.83999999987816,-0.0686066722842834 +34769,173.84499999987815,-0.06860667264660888 +34770,173.84999999987815,-0.06860667300891402 +34771,173.85499999987815,-0.06860667337119879 +34772,173.85999999987814,-0.0686066737334632 +34773,173.86499999987814,-0.06860667409570725 +34774,173.86999999987813,-0.06860667445793094 +34775,173.87499999987813,-0.06860667482013424 +34776,173.87999999987812,-0.0686066751823172 +34777,173.88499999987812,-0.06860667554447977 +34778,173.8899999998781,-0.06860667590662198 +34779,173.8949999998781,-0.0686066762687438 +34780,173.8999999998781,-0.06860667663084524 +34781,173.9049999998781,-0.06860667699292632 +34782,173.9099999998781,-0.068606677354987 +34783,173.9149999998781,-0.0686066777170273 +34784,173.9199999998781,-0.06860667807904722 +34785,173.92499999987808,-0.06860667844104675 +34786,173.92999999987808,-0.06860667880302587 +34787,173.93499999987807,-0.06860667916498461 +34788,173.93999999987807,-0.06860667952692297 +34789,173.94499999987806,-0.06860667988884091 +34790,173.94999999987806,-0.06860668025073845 +34791,173.95499999987805,-0.06860668061261559 +34792,173.95999999987805,-0.06860668097447234 +34793,173.96499999987805,-0.06860668133630868 +34794,173.96999999987804,-0.06860668169812462 +34795,173.97499999987804,-0.06860668205992014 +34796,173.97999999987803,-0.06860668242169524 +34797,173.98499999987803,-0.06860668278344993 +34798,173.98999999987802,-0.06860668314518421 +34799,173.99499999987802,-0.06860668350689807 +34800,173.999999999878,-0.0686066838685915 +34801,174.004999999878,-0.06860668423026452 +34802,174.009999999878,-0.0686066845919171 +34803,174.014999999878,-0.06860668495354927 +34804,174.019999999878,-0.068606685315161 +34805,174.024999999878,-0.0686066856767523 +34806,174.029999999878,-0.06860668603832316 +34807,174.03499999987798,-0.06860668639987359 +34808,174.03999999987798,-0.06860668676140358 +34809,174.04499999987797,-0.06860668712291314 +34810,174.04999999987797,-0.06860668748440224 +34811,174.05499999987796,-0.06860668784587091 +34812,174.05999999987796,-0.06860668820731912 +34813,174.06499999987795,-0.0686066885687469 +34814,174.06999999987795,-0.0686066889301542 +34815,174.07499999987795,-0.06860668929154108 +34816,174.07999999987794,-0.06860668965290749 +34817,174.08499999987794,-0.06860669001425344 +34818,174.08999999987793,-0.06860669037557895 +34819,174.09499999987793,-0.068606690736884 +34820,174.09999999987792,-0.06860669109816857 +34821,174.10499999987792,-0.06860669145943268 +34822,174.1099999998779,-0.06860669182067632 +34823,174.1149999998779,-0.06860669218189949 +34824,174.1199999998779,-0.0686066925431022 +34825,174.1249999998779,-0.06860669290428444 +34826,174.1299999998779,-0.06860669326544619 +34827,174.1349999998779,-0.06860669362658746 +34828,174.1399999998779,-0.06860669398770826 +34829,174.14499999987788,-0.06860669434880856 +34830,174.14999999987788,-0.0686066947098884 +34831,174.15499999987787,-0.06860669507094774 +34832,174.15999999987787,-0.0686066954319866 +34833,174.16499999987786,-0.06860669579300496 +34834,174.16999999987786,-0.06860669615400283 +34835,174.17499999987785,-0.06860669651498022 +34836,174.17999999987785,-0.0686066968759371 +34837,174.18499999987785,-0.06860669723687347 +34838,174.18999999987784,-0.06860669759778935 +34839,174.19499999987784,-0.06860669795868474 +34840,174.19999999987783,-0.06860669831955961 +34841,174.20499999987783,-0.06860669868041398 +34842,174.20999999987782,-0.06860669904124785 +34843,174.21499999987782,-0.0686066994020612 +34844,174.2199999998778,-0.06860669976285404 +34845,174.2249999998778,-0.06860670012362635 +34846,174.2299999998778,-0.06860670048437816 +34847,174.2349999998778,-0.06860670084510943 +34848,174.2399999998778,-0.06860670120582019 +34849,174.2449999998778,-0.06860670156651043 +34850,174.2499999998778,-0.06860670192718014 +34851,174.25499999987778,-0.06860670228782932 +34852,174.25999999987778,-0.06860670264845799 +34853,174.26499999987777,-0.06860670300906611 +34854,174.26999999987777,-0.0686067033696537 +34855,174.27499999987776,-0.06860670373022076 +34856,174.27999999987776,-0.06860670409076729 +34857,174.28499999987775,-0.06860670445129327 +34858,174.28999999987775,-0.0686067048117987 +34859,174.29499999987775,-0.0686067051722836 +34860,174.29999999987774,-0.06860670553274795 +34861,174.30499999987774,-0.06860670589319176 +34862,174.30999999987773,-0.06860670625361502 +34863,174.31499999987773,-0.06860670661401772 +34864,174.31999999987772,-0.06860670697439986 +34865,174.32499999987772,-0.06860670733476144 +34866,174.3299999998777,-0.06860670769510248 +34867,174.3349999998777,-0.06860670805542295 +34868,174.3399999998777,-0.06860670841572285 +34869,174.3449999998777,-0.0686067087760022 +34870,174.3499999998777,-0.06860670913626098 +34871,174.3549999998777,-0.06860670949649919 +34872,174.3599999998777,-0.06860670985671684 +34873,174.36499999987768,-0.06860671021691389 +34874,174.36999999987768,-0.0686067105770904 +34875,174.37499999987767,-0.06860671093724632 +34876,174.37999999987767,-0.06860671129738166 +34877,174.38499999987766,-0.06860671165749642 +34878,174.38999999987766,-0.0686067120175906 +34879,174.39499999987765,-0.06860671237766419 +34880,174.39999999987765,-0.06860671273771721 +34881,174.40499999987765,-0.06860671309774961 +34882,174.40999999987764,-0.06860671345776144 +34883,174.41499999987764,-0.06860671381775268 +34884,174.41999999987763,-0.06860671417772332 +34885,174.42499999987763,-0.06860671453767338 +34886,174.42999999987762,-0.06860671489760281 +34887,174.43499999987762,-0.06860671525751166 +34888,174.4399999998776,-0.06860671561739992 +34889,174.4449999998776,-0.06860671597726756 +34890,174.4499999998776,-0.0686067163371146 +34891,174.4549999998776,-0.06860671669694102 +34892,174.4599999998776,-0.06860671705674683 +34893,174.4649999998776,-0.06860671741653204 +34894,174.4699999998776,-0.06860671777629662 +34895,174.47499999987758,-0.0686067181360406 +34896,174.47999999987758,-0.06860671849576395 +34897,174.48499999987757,-0.0686067188554667 +34898,174.48999999987757,-0.0686067192151488 +34899,174.49499999987756,-0.06860671957481028 +34900,174.49999999987756,-0.06860671993445115 +34901,174.50499999987755,-0.06860672029407137 +34902,174.50999999987755,-0.06860672065367097 +34903,174.51499999987755,-0.06860672101324995 +34904,174.51999999987754,-0.06860672137280828 +34905,174.52499999987754,-0.06860672173234597 +34906,174.52999999987753,-0.06860672209186304 +34907,174.53499999987753,-0.06860672245135946 +34908,174.53999999987752,-0.06860672281083524 +34909,174.54499999987752,-0.06860672317029037 +34910,174.5499999998775,-0.06860672352972486 +34911,174.5549999998775,-0.0686067238891387 +34912,174.5599999998775,-0.0686067242485319 +34913,174.5649999998775,-0.06860672460790443 +34914,174.5699999998775,-0.06860672496725631 +34915,174.5749999998775,-0.06860672532658754 +34916,174.5799999998775,-0.06860672568589811 +34917,174.58499999987748,-0.06860672604518803 +34918,174.58999999987748,-0.06860672640445728 +34919,174.59499999987747,-0.06860672676370587 +34920,174.59999999987747,-0.0686067271229338 +34921,174.60499999987746,-0.06860672748214104 +34922,174.60999999987746,-0.06860672784132762 +34923,174.61499999987745,-0.06860672820049353 +34924,174.61999999987745,-0.06860672855963877 +34925,174.62499999987745,-0.06860672891876332 +34926,174.62999999987744,-0.0686067292778672 +34927,174.63499999987744,-0.0686067296369504 +34928,174.63999999987743,-0.06860672999601293 +34929,174.64499999987743,-0.06860673035505478 +34930,174.64999999987742,-0.06860673071407594 +34931,174.65499999987742,-0.06860673107307641 +34932,174.6599999998774,-0.06860673143205619 +34933,174.6649999998774,-0.06860673179101527 +34934,174.6699999998774,-0.06860673214995366 +34935,174.6749999998774,-0.06860673250887137 +34936,174.6799999998774,-0.06860673286776837 +34937,174.6849999998774,-0.06860673322664468 +34938,174.6899999998774,-0.06860673358550028 +34939,174.69499999987738,-0.06860673394433518 +34940,174.69999999987738,-0.06860673430314938 +34941,174.70499999987737,-0.06860673466194286 +34942,174.70999999987737,-0.06860673502071565 +34943,174.71499999987736,-0.06860673537946772 +34944,174.71999999987736,-0.06860673573819907 +34945,174.72499999987735,-0.06860673609690973 +34946,174.72999999987735,-0.06860673645559966 +34947,174.73499999987735,-0.06860673681426888 +34948,174.73999999987734,-0.06860673717291736 +34949,174.74499999987734,-0.06860673753154514 +34950,174.74999999987733,-0.06860673789015218 +34951,174.75499999987733,-0.0686067382487385 +34952,174.75999999987732,-0.06860673860730408 +34953,174.76499999987732,-0.06860673896584894 +34954,174.7699999998773,-0.06860673932437308 +34955,174.7749999998773,-0.06860673968287648 +34956,174.7799999998773,-0.06860674004135915 +34957,174.7849999998773,-0.06860674039982106 +34958,174.7899999998773,-0.06860674075826224 +34959,174.7949999998773,-0.0686067411166827 +34960,174.7999999998773,-0.0686067414750824 +34961,174.80499999987728,-0.06860674183346135 +34962,174.80999999987728,-0.06860674219181956 +34963,174.81499999987727,-0.06860674255015703 +34964,174.81999999987727,-0.06860674290847374 +34965,174.82499999987726,-0.0686067432667697 +34966,174.82999999987726,-0.0686067436250449 +34967,174.83499999987725,-0.06860674398329936 +34968,174.83999999987725,-0.06860674434153305 +34969,174.84499999987725,-0.06860674469974598 +34970,174.84999999987724,-0.06860674505793814 +34971,174.85499999987724,-0.06860674541610955 +34972,174.85999999987723,-0.0686067457742602 +34973,174.86499999987723,-0.06860674613239005 +34974,174.86999999987722,-0.06860674649049917 +34975,174.87499999987722,-0.06860674684858749 +34976,174.8799999998772,-0.06860674720665505 +34977,174.8849999998772,-0.06860674756470182 +34978,174.8899999998772,-0.06860674792272782 +34979,174.8949999998772,-0.06860674828073304 +34980,174.8999999998772,-0.06860674863871749 +34981,174.9049999998772,-0.06860674899668115 +34982,174.9099999998772,-0.06860674935462403 +34983,174.91499999987718,-0.06860674971254611 +34984,174.91999999987718,-0.06860675007044742 +34985,174.92499999987717,-0.06860675042832792 +34986,174.92999999987717,-0.06860675078618765 +34987,174.93499999987716,-0.06860675114402658 +34988,174.93999999987716,-0.06860675150184471 +34989,174.94499999987715,-0.06860675185964205 +34990,174.94999999987715,-0.06860675221741858 +34991,174.95499999987715,-0.06860675257517432 +34992,174.95999999987714,-0.06860675293290924 +34993,174.96499999987714,-0.06860675329062338 +34994,174.96999999987713,-0.0686067536483167 +34995,174.97499999987713,-0.0686067540059892 +34996,174.97999999987712,-0.0686067543636409 +34997,174.98499999987712,-0.06860675472127178 +34998,174.9899999998771,-0.06860675507888186 +34999,174.9949999998771,-0.06860675543647111 +35000,174.9999999998771,-0.06860675579403956 +35001,175.0049999998771,-0.06860675615158718 +35002,175.0099999998771,-0.06860675650911398 +35003,175.0149999998771,-0.06860675686661995 +35004,175.0199999998771,-0.0686067572241051 +35005,175.02499999987708,-0.06860675758156941 +35006,175.02999999987708,-0.0686067579390129 +35007,175.03499999987707,-0.06860675829643556 +35008,175.03999999987707,-0.06860675865383739 +35009,175.04499999987706,-0.06860675901121839 +35010,175.04999999987706,-0.06860675936857853 +35011,175.05499999987705,-0.06860675972591786 +35012,175.05999999987705,-0.06860676008323632 +35013,175.06499999987705,-0.06860676044053396 +35014,175.06999999987704,-0.06860676079781075 +35015,175.07499999987704,-0.0686067611550667 +35016,175.07999999987703,-0.06860676151230179 +35017,175.08499999987703,-0.06860676186951603 +35018,175.08999999987702,-0.06860676222670943 +35019,175.09499999987702,-0.06860676258388197 +35020,175.099999999877,-0.06860676294103367 +35021,175.104999999877,-0.0686067632981645 +35022,175.109999999877,-0.06860676365527446 +35023,175.114999999877,-0.06860676401236358 +35024,175.119999999877,-0.06860676436943183 +35025,175.124999999877,-0.06860676472647921 +35026,175.129999999877,-0.06860676508350573 +35027,175.13499999987698,-0.06860676544051139 +35028,175.13999999987698,-0.06860676579749618 +35029,175.14499999987697,-0.0686067661544601 +35030,175.14999999987697,-0.06860676651140314 +35031,175.15499999987696,-0.06860676686832531 +35032,175.15999999987696,-0.06860676722522659 +35033,175.16499999987695,-0.068606767582107 +35034,175.16999999987695,-0.06860676793896653 +35035,175.17499999987695,-0.06860676829580518 +35036,175.17999999987694,-0.06860676865262295 +35037,175.18499999987694,-0.06860676900941982 +35038,175.18999999987693,-0.06860676936619581 +35039,175.19499999987693,-0.06860676972295092 +35040,175.19999999987692,-0.06860677007968512 +35041,175.20499999987692,-0.06860677043639844 +35042,175.2099999998769,-0.06860677079309085 +35043,175.2149999998769,-0.06860677114976238 +35044,175.2199999998769,-0.06860677150641302 +35045,175.2249999998769,-0.06860677186304275 +35046,175.2299999998769,-0.06860677221965156 +35047,175.2349999998769,-0.06860677257623948 +35048,175.2399999998769,-0.0686067729328065 +35049,175.24499999987688,-0.06860677328935261 +35050,175.24999999987688,-0.0686067736458778 +35051,175.25499999987687,-0.0686067740023821 +35052,175.25999999987687,-0.06860677435886547 +35053,175.26499999987686,-0.06860677471532795 +35054,175.26999999987686,-0.06860677507176949 +35055,175.27499999987685,-0.06860677542819012 +35056,175.27999999987685,-0.06860677578458983 +35057,175.28499999987685,-0.06860677614096862 +35058,175.28999999987684,-0.06860677649732648 +35059,175.29499999987684,-0.06860677685366343 +35060,175.29999999987683,-0.06860677720997943 +35061,175.30499999987683,-0.06860677756627452 +35062,175.30999999987682,-0.06860677792254867 +35063,175.31499999987682,-0.0686067782788019 +35064,175.3199999998768,-0.06860677863503419 +35065,175.3249999998768,-0.06860677899124555 +35066,175.3299999998768,-0.06860677934743596 +35067,175.3349999998768,-0.06860677970360544 +35068,175.3399999998768,-0.06860678005975397 +35069,175.3449999998768,-0.06860678041588156 +35070,175.3499999998768,-0.06860678077198822 +35071,175.35499999987678,-0.06860678112807392 +35072,175.35999999987678,-0.06860678148413868 +35073,175.36499999987677,-0.06860678184018248 +35074,175.36999999987677,-0.06860678219620533 +35075,175.37499999987676,-0.06860678255220724 +35076,175.37999999987676,-0.06860678290818818 +35077,175.38499999987675,-0.06860678326414817 +35078,175.38999999987675,-0.06860678362008718 +35079,175.39499999987675,-0.06860678397600527 +35080,175.39999999987674,-0.06860678433190236 +35081,175.40499999987674,-0.0686067846877785 +35082,175.40999999987673,-0.06860678504363368 +35083,175.41499999987673,-0.06860678539946789 +35084,175.41999999987672,-0.06860678575528113 +35085,175.42499999987672,-0.0686067861110734 +35086,175.4299999998767,-0.06860678646684469 +35087,175.4349999998767,-0.06860678682259502 +35088,175.4399999998767,-0.06860678717832437 +35089,175.4449999998767,-0.06860678753403274 +35090,175.4499999998767,-0.06860678788972012 +35091,175.4549999998767,-0.06860678824538655 +35092,175.4599999998767,-0.06860678860103196 +35093,175.46499999987668,-0.06860678895665641 +35094,175.46999999987668,-0.06860678931225986 +35095,175.47499999987667,-0.06860678966784234 +35096,175.47999999987667,-0.06860679002340382 +35097,175.48499999987666,-0.0686067903789443 +35098,175.48999999987666,-0.06860679073446378 +35099,175.49499999987665,-0.06860679108996229 +35100,175.49999999987665,-0.06860679144543978 +35101,175.50499999987665,-0.0686067918008963 +35102,175.50999999987664,-0.0686067921563318 +35103,175.51499999987664,-0.0686067925117463 +35104,175.51999999987663,-0.06860679286713979 +35105,175.52499999987663,-0.06860679322251229 +35106,175.52999999987662,-0.06860679357786377 +35107,175.53499999987662,-0.06860679393319424 +35108,175.5399999998766,-0.0686067942885037 +35109,175.5449999998766,-0.06860679464379216 +35110,175.5499999998766,-0.0686067949990596 +35111,175.5549999998766,-0.06860679535430603 +35112,175.5599999998766,-0.06860679570953145 +35113,175.5649999998766,-0.06860679606473584 +35114,175.5699999998766,-0.0686067964199192 +35115,175.57499999987658,-0.06860679677508154 +35116,175.57999999987658,-0.06860679713022286 +35117,175.58499999987657,-0.06860679748534315 +35118,175.58999999987657,-0.06860679784044241 +35119,175.59499999987656,-0.06860679819552065 +35120,175.59999999987656,-0.06860679855057787 +35121,175.60499999987655,-0.06860679890561404 +35122,175.60999999987655,-0.06860679926062918 +35123,175.61499999987655,-0.06860679961562327 +35124,175.61999999987654,-0.06860679997059635 +35125,175.62499999987654,-0.06860680032554836 +35126,175.62999999987653,-0.06860680068047935 +35127,175.63499999987653,-0.0686068010353893 +35128,175.63999999987652,-0.0686068013902782 +35129,175.64499999987652,-0.06860680174514605 +35130,175.6499999998765,-0.06860680209999286 +35131,175.6549999998765,-0.06860680245481861 +35132,175.6599999998765,-0.06860680280962331 +35133,175.6649999998765,-0.06860680316440695 +35134,175.6699999998765,-0.06860680351916955 +35135,175.6749999998765,-0.06860680387391109 +35136,175.6799999998765,-0.06860680422863158 +35137,175.68499999987648,-0.068606804583331 +35138,175.68999999987648,-0.06860680493800936 +35139,175.69499999987647,-0.06860680529266666 +35140,175.69999999987647,-0.0686068056473029 +35141,175.70499999987646,-0.06860680600191806 +35142,175.70999999987646,-0.06860680635651216 +35143,175.71499999987645,-0.06860680671108518 +35144,175.71999999987645,-0.06860680706563714 +35145,175.72499999987645,-0.06860680742016803 +35146,175.72999999987644,-0.06860680777467783 +35147,175.73499999987644,-0.06860680812916657 +35148,175.73999999987643,-0.06860680848363422 +35149,175.74499999987643,-0.06860680883808079 +35150,175.74999999987642,-0.0686068091925063 +35151,175.75499999987642,-0.0686068095469107 +35152,175.7599999998764,-0.06860680990129403 +35153,175.7649999998764,-0.06860681025565628 +35154,175.7699999998764,-0.06860681060999743 +35155,175.7749999998764,-0.06860681096431749 +35156,175.7799999998764,-0.06860681131861647 +35157,175.7849999998764,-0.06860681167289434 +35158,175.7899999998764,-0.06860681202715112 +35159,175.79499999987638,-0.06860681238138681 +35160,175.79999999987638,-0.06860681273560142 +35161,175.80499999987637,-0.0686068130897949 +35162,175.80999999987637,-0.06860681344396728 +35163,175.81499999987636,-0.06860681379811857 +35164,175.81999999987636,-0.06860681415224874 +35165,175.82499999987635,-0.06860681450635782 +35166,175.82999999987635,-0.0686068148604458 +35167,175.83499999987635,-0.06860681521451265 +35168,175.83999999987634,-0.06860681556855841 +35169,175.84499999987634,-0.06860681592258304 +35170,175.84999999987633,-0.06860681627658656 +35171,175.85499999987633,-0.06860681663056896 +35172,175.85999999987632,-0.06860681698453024 +35173,175.86499999987632,-0.0686068173384704 +35174,175.8699999998763,-0.06860681769238945 +35175,175.8749999998763,-0.06860681804628739 +35176,175.8799999998763,-0.0686068184001642 +35177,175.8849999998763,-0.06860681875401987 +35178,175.8899999998763,-0.06860681910785442 +35179,175.8949999998763,-0.06860681946166784 +35180,175.8999999998763,-0.06860681981546013 +35181,175.90499999987628,-0.06860682016923128 +35182,175.90999999987628,-0.06860682052298131 +35183,175.91499999987627,-0.0686068208767102 +35184,175.91999999987627,-0.06860682123041795 +35185,175.92499999987626,-0.06860682158410457 +35186,175.92999999987626,-0.06860682193777004 +35187,175.93499999987625,-0.06860682229141438 +35188,175.93999999987625,-0.06860682264503756 +35189,175.94499999987625,-0.06860682299863961 +35190,175.94999999987624,-0.06860682335222051 +35191,175.95499999987624,-0.06860682370578026 +35192,175.95999999987623,-0.06860682405931885 +35193,175.96499999987623,-0.0686068244128363 +35194,175.96999999987622,-0.06860682476633259 +35195,175.97499999987622,-0.06860682511980774 +35196,175.9799999998762,-0.06860682547326172 +35197,175.9849999998762,-0.06860682582669454 +35198,175.9899999998762,-0.06860682618010622 +35199,175.9949999998762,-0.06860682653349671 +35200,175.9999999998762,-0.06860682688686606 +35201,176.0049999998762,-0.06860682724021423 +35202,176.0099999998762,-0.06860682759354124 +35203,176.01499999987618,-0.06860682794684708 +35204,176.01999999987618,-0.06860682830013175 +35205,176.02499999987617,-0.06860682865339525 +35206,176.02999999987617,-0.06860682900663759 +35207,176.03499999987616,-0.06860682935985873 +35208,176.03999999987616,-0.06860682971305872 +35209,176.04499999987615,-0.06860683006623752 +35210,176.04999999987615,-0.06860683041939515 +35211,176.05499999987615,-0.0686068307725316 +35212,176.05999999987614,-0.06860683112564686 +35213,176.06499999987614,-0.06860683147874094 +35214,176.06999999987613,-0.06860683183181383 +35215,176.07499999987613,-0.06860683218486555 +35216,176.07999999987612,-0.06860683253789605 +35217,176.08499999987612,-0.06860683289090538 +35218,176.0899999998761,-0.06860683324389352 +35219,176.0949999998761,-0.06860683359686047 +35220,176.0999999998761,-0.06860683394980621 +35221,176.1049999998761,-0.06860683430273078 +35222,176.1099999998761,-0.06860683465563414 +35223,176.1149999998761,-0.06860683500851629 +35224,176.1199999998761,-0.06860683536137725 +35225,176.12499999987608,-0.068606835714217 +35226,176.12999999987608,-0.06860683606703555 +35227,176.13499999987607,-0.0686068364198329 +35228,176.13999999987607,-0.06860683677260904 +35229,176.14499999987606,-0.06860683712536397 +35230,176.14999999987606,-0.06860683747809769 +35231,176.15499999987605,-0.06860683783081019 +35232,176.15999999987605,-0.0686068381835015 +35233,176.16499999987604,-0.06860683853617158 +35234,176.16999999987604,-0.06860683888882045 +35235,176.17499999987604,-0.0686068392414481 +35236,176.17999999987603,-0.06860683959405452 +35237,176.18499999987603,-0.06860683994663973 +35238,176.18999999987602,-0.0686068402992037 +35239,176.19499999987602,-0.06860684065174646 +35240,176.199999999876,-0.068606841004268 +35241,176.204999999876,-0.06860684135676831 +35242,176.209999999876,-0.0686068417092474 +35243,176.214999999876,-0.06860684206170524 +35244,176.219999999876,-0.06860684241414185 +35245,176.224999999876,-0.06860684276655724 +35246,176.229999999876,-0.06860684311895138 +35247,176.23499999987598,-0.06860684347132429 +35248,176.23999999987598,-0.06860684382367596 +35249,176.24499999987597,-0.06860684417600639 +35250,176.24999999987597,-0.06860684452831557 +35251,176.25499999987596,-0.06860684488060353 +35252,176.25999999987596,-0.06860684523287024 +35253,176.26499999987595,-0.06860684558511569 +35254,176.26999999987595,-0.0686068459373399 +35255,176.27499999987594,-0.06860684628954286 +35256,176.27999999987594,-0.06860684664172458 +35257,176.28499999987594,-0.06860684699388503 +35258,176.28999999987593,-0.06860684734602424 +35259,176.29499999987593,-0.0686068476981422 +35260,176.29999999987592,-0.06860684805023888 +35261,176.30499999987592,-0.06860684840231432 +35262,176.3099999998759,-0.06860684875436848 +35263,176.3149999998759,-0.0686068491064014 +35264,176.3199999998759,-0.06860684945841306 +35265,176.3249999998759,-0.06860684981040345 +35266,176.3299999998759,-0.06860685016237257 +35267,176.3349999998759,-0.06860685051432043 +35268,176.3399999998759,-0.06860685086624702 +35269,176.34499999987588,-0.06860685121815233 +35270,176.34999999987588,-0.06860685157003638 +35271,176.35499999987587,-0.06860685192189915 +35272,176.35999999987587,-0.06860685227374064 +35273,176.36499999987586,-0.06860685262556086 +35274,176.36999999987586,-0.06860685297735981 +35275,176.37499999987585,-0.06860685332913748 +35276,176.37999999987585,-0.06860685368089386 +35277,176.38499999987584,-0.06860685403262896 +35278,176.38999999987584,-0.06860685438434279 +35279,176.39499999987584,-0.06860685473603532 +35280,176.39999999987583,-0.06860685508770656 +35281,176.40499999987583,-0.06860685543935652 +35282,176.40999999987582,-0.06860685579098519 +35283,176.41499999987582,-0.06860685614259258 +35284,176.4199999998758,-0.06860685649417866 +35285,176.4249999998758,-0.06860685684574346 +35286,176.4299999998758,-0.06860685719728694 +35287,176.4349999998758,-0.06860685754880914 +35288,176.4399999998758,-0.06860685790031004 +35289,176.4449999998758,-0.06860685825178965 +35290,176.44999999987579,-0.06860685860324794 +35291,176.45499999987578,-0.06860685895468494 +35292,176.45999999987578,-0.06860685930610064 +35293,176.46499999987577,-0.06860685965749501 +35294,176.46999999987577,-0.06860686000886808 +35295,176.47499999987576,-0.06860686036021986 +35296,176.47999999987576,-0.06860686071155031 +35297,176.48499999987575,-0.06860686106285946 +35298,176.48999999987575,-0.06860686141414728 +35299,176.49499999987574,-0.06860686176541378 +35300,176.49999999987574,-0.06860686211665899 +35301,176.50499999987574,-0.06860686246788286 +35302,176.50999999987573,-0.06860686281908543 +35303,176.51499999987573,-0.06860686317026667 +35304,176.51999999987572,-0.06860686352142657 +35305,176.52499999987572,-0.06860686387256518 +35306,176.5299999998757,-0.06860686422368244 +35307,176.5349999998757,-0.06860686457477837 +35308,176.5399999998757,-0.068606864925853 +35309,176.5449999998757,-0.06860686527690628 +35310,176.5499999998757,-0.06860686562793823 +35311,176.5549999998757,-0.06860686597894884 +35312,176.55999999987569,-0.06860686632993813 +35313,176.56499999987568,-0.06860686668090608 +35314,176.56999999987568,-0.06860686703185269 +35315,176.57499999987567,-0.06860686738277796 +35316,176.57999999987567,-0.0686068677336819 +35317,176.58499999987566,-0.06860686808456448 +35318,176.58999999987566,-0.06860686843542572 +35319,176.59499999987565,-0.06860686878626564 +35320,176.59999999987565,-0.06860686913708419 +35321,176.60499999987564,-0.0686068694878814 +35322,176.60999999987564,-0.06860686983865726 +35323,176.61499999987564,-0.06860687018941178 +35324,176.61999999987563,-0.06860687054014494 +35325,176.62499999987563,-0.06860687089085674 +35326,176.62999999987562,-0.0686068712415472 +35327,176.63499999987562,-0.06860687159221629 +35328,176.6399999998756,-0.06860687194286404 +35329,176.6449999998756,-0.06860687229349041 +35330,176.6499999998756,-0.06860687264409543 +35331,176.6549999998756,-0.06860687299467909 +35332,176.6599999998756,-0.06860687334524139 +35333,176.6649999998756,-0.06860687369578232 +35334,176.66999999987559,-0.06860687404630186 +35335,176.67499999987558,-0.06860687439680006 +35336,176.67999999987558,-0.06860687474727689 +35337,176.68499999987557,-0.06860687509773235 +35338,176.68999999987557,-0.06860687544816642 +35339,176.69499999987556,-0.06860687579857913 +35340,176.69999999987556,-0.06860687614897046 +35341,176.70499999987555,-0.06860687649934041 +35342,176.70999999987555,-0.068606876849689 +35343,176.71499999987554,-0.0686068772000162 +35344,176.71999999987554,-0.06860687755032202 +35345,176.72499999987554,-0.06860687790060646 +35346,176.72999999987553,-0.06860687825086953 +35347,176.73499999987553,-0.06860687860111121 +35348,176.73999999987552,-0.0686068789513315 +35349,176.74499999987552,-0.0686068793015304 +35350,176.7499999998755,-0.06860687965170792 +35351,176.7549999998755,-0.06860688000186403 +35352,176.7599999998755,-0.06860688035199876 +35353,176.7649999998755,-0.0686068807021121 +35354,176.7699999998755,-0.06860688105220403 +35355,176.7749999998755,-0.06860688140227457 +35356,176.77999999987549,-0.06860688175232371 +35357,176.78499999987548,-0.06860688210235147 +35358,176.78999999987548,-0.06860688245235781 +35359,176.79499999987547,-0.06860688280234276 +35360,176.79999999987547,-0.0686068831523063 +35361,176.80499999987546,-0.06860688350224844 +35362,176.80999999987546,-0.06860688385216916 +35363,176.81499999987545,-0.0686068842020685 +35364,176.81999999987545,-0.0686068845519464 +35365,176.82499999987544,-0.0686068849018029 +35366,176.82999999987544,-0.068606885251638 +35367,176.83499999987544,-0.06860688560145167 +35368,176.83999999987543,-0.06860688595124392 +35369,176.84499999987543,-0.06860688630101477 +35370,176.84999999987542,-0.0686068866507642 +35371,176.85499999987542,-0.06860688700049221 +35372,176.8599999998754,-0.0686068873501988 +35373,176.8649999998754,-0.06860688769988398 +35374,176.8699999998754,-0.06860688804954772 +35375,176.8749999998754,-0.06860688839919005 +35376,176.8799999998754,-0.06860688874881095 +35377,176.8849999998754,-0.06860688909841042 +35378,176.88999999987539,-0.06860688944798847 +35379,176.89499999987538,-0.06860688979754508 +35380,176.89999999987538,-0.06860689014708027 +35381,176.90499999987537,-0.06860689049659402 +35382,176.90999999987537,-0.06860689084608633 +35383,176.91499999987536,-0.06860689119555721 +35384,176.91999999987536,-0.06860689154500667 +35385,176.92499999987535,-0.06860689189443467 +35386,176.92999999987535,-0.06860689224384123 +35387,176.93499999987534,-0.06860689259322636 +35388,176.93999999987534,-0.06860689294259005 +35389,176.94499999987534,-0.0686068932919323 +35390,176.94999999987533,-0.0686068936412531 +35391,176.95499999987533,-0.06860689399055245 +35392,176.95999999987532,-0.06860689433983035 +35393,176.96499999987532,-0.0686068946890868 +35394,176.9699999998753,-0.06860689503832179 +35395,176.9749999998753,-0.06860689538753535 +35396,176.9799999998753,-0.06860689573672744 +35397,176.9849999998753,-0.06860689608589808 +35398,176.9899999998753,-0.06860689643504728 +35399,176.9949999998753,-0.068606896784175 +35400,176.99999999987529,-0.06860689713328127 +35401,177.00499999987528,-0.06860689748236609 +35402,177.00999999987528,-0.06860689783142944 +35403,177.01499999987527,-0.06860689818047132 +35404,177.01999999987527,-0.06860689852949174 +35405,177.02499999987526,-0.0686068988784907 +35406,177.02999999987526,-0.0686068992274682 +35407,177.03499999987525,-0.06860689957642421 +35408,177.03999999987525,-0.06860689992535876 +35409,177.04499999987524,-0.06860690027427184 +35410,177.04999999987524,-0.06860690062316345 +35411,177.05499999987524,-0.06860690097203359 +35412,177.05999999987523,-0.06860690132088225 +35413,177.06499999987523,-0.06860690166970942 +35414,177.06999999987522,-0.06860690201851515 +35415,177.07499999987522,-0.06860690236729937 +35416,177.0799999998752,-0.06860690271606212 +35417,177.0849999998752,-0.0686069030648034 +35418,177.0899999998752,-0.06860690341352317 +35419,177.0949999998752,-0.06860690376222146 +35420,177.0999999998752,-0.06860690411089829 +35421,177.1049999998752,-0.0686069044595536 +35422,177.10999999987519,-0.06860690480818744 +35423,177.11499999987518,-0.06860690515679979 +35424,177.11999999987518,-0.06860690550539064 +35425,177.12499999987517,-0.06860690585396001 +35426,177.12999999987517,-0.0686069062025079 +35427,177.13499999987516,-0.06860690655103426 +35428,177.13999999987516,-0.06860690689953915 +35429,177.14499999987515,-0.06860690724802253 +35430,177.14999999987515,-0.06860690759648441 +35431,177.15499999987514,-0.06860690794492479 +35432,177.15999999987514,-0.06860690829334366 +35433,177.16499999987514,-0.06860690864174104 +35434,177.16999999987513,-0.06860690899011693 +35435,177.17499999987513,-0.0686069093384713 +35436,177.17999999987512,-0.06860690968680416 +35437,177.18499999987512,-0.06860691003511551 +35438,177.1899999998751,-0.06860691038340537 +35439,177.1949999998751,-0.0686069107316737 +35440,177.1999999998751,-0.06860691107992051 +35441,177.2049999998751,-0.06860691142814582 +35442,177.2099999998751,-0.06860691177634962 +35443,177.2149999998751,-0.06860691212453189 +35444,177.21999999987509,-0.06860691247269264 +35445,177.22499999987508,-0.06860691282083188 +35446,177.22999999987508,-0.06860691316894961 +35447,177.23499999987507,-0.0686069135170458 +35448,177.23999999987507,-0.06860691386512048 +35449,177.24499999987506,-0.06860691421317362 +35450,177.24999999987506,-0.06860691456120524 +35451,177.25499999987505,-0.06860691490921535 +35452,177.25999999987505,-0.06860691525720393 +35453,177.26499999987504,-0.06860691560517097 +35454,177.26999999987504,-0.06860691595311648 +35455,177.27499999987504,-0.06860691630104046 +35456,177.27999999987503,-0.0686069166489429 +35457,177.28499999987503,-0.06860691699682381 +35458,177.28999999987502,-0.06860691734468319 +35459,177.29499999987502,-0.06860691769252103 +35460,177.299999999875,-0.06860691804033732 +35461,177.304999999875,-0.06860691838813208 +35462,177.309999999875,-0.06860691873590531 +35463,177.314999999875,-0.06860691908365699 +35464,177.319999999875,-0.06860691943138712 +35465,177.324999999875,-0.06860691977909572 +35466,177.32999999987499,-0.06860692012678275 +35467,177.33499999987498,-0.06860692047444825 +35468,177.33999999987498,-0.06860692082209219 +35469,177.34499999987497,-0.06860692116971459 +35470,177.34999999987497,-0.06860692151731544 +35471,177.35499999987496,-0.06860692186489473 +35472,177.35999999987496,-0.06860692221245247 +35473,177.36499999987495,-0.06860692255998867 +35474,177.36999999987495,-0.0686069229075033 +35475,177.37499999987494,-0.06860692325499636 +35476,177.37999999987494,-0.06860692360246788 +35477,177.38499999987494,-0.06860692394991783 +35478,177.38999999987493,-0.06860692429734622 +35479,177.39499999987493,-0.06860692464475304 +35480,177.39999999987492,-0.0686069249921383 +35481,177.40499999987492,-0.068606925339502 +35482,177.4099999998749,-0.06860692568684412 +35483,177.4149999998749,-0.06860692603416468 +35484,177.4199999998749,-0.06860692638146368 +35485,177.4249999998749,-0.06860692672874111 +35486,177.4299999998749,-0.06860692707599696 +35487,177.4349999998749,-0.06860692742323123 +35488,177.43999999987489,-0.06860692777044393 +35489,177.44499999987488,-0.06860692811763507 +35490,177.44999999987488,-0.06860692846480461 +35491,177.45499999987487,-0.06860692881195259 +35492,177.45999999987487,-0.06860692915907897 +35493,177.46499999987486,-0.06860692950618379 +35494,177.46999999987486,-0.06860692985326702 +35495,177.47499999987485,-0.06860693020032867 +35496,177.47999999987485,-0.06860693054736873 +35497,177.48499999987484,-0.0686069308943872 +35498,177.48999999987484,-0.0686069312413841 +35499,177.49499999987484,-0.0686069315883594 +35500,177.49999999987483,-0.06860693193531311 +35501,177.50499999987483,-0.06860693228224524 +35502,177.50999999987482,-0.06860693262915576 +35503,177.51499999987482,-0.0686069329760447 +35504,177.5199999998748,-0.06860693332291204 +35505,177.5249999998748,-0.0686069336697578 +35506,177.5299999998748,-0.06860693401658195 +35507,177.5349999998748,-0.0686069343633845 +35508,177.5399999998748,-0.06860693471016545 +35509,177.5449999998748,-0.06860693505692479 +35510,177.54999999987479,-0.06860693540366254 +35511,177.55499999987478,-0.0686069357503787 +35512,177.55999999987478,-0.06860693609707325 +35513,177.56499999987477,-0.06860693644374619 +35514,177.56999999987477,-0.06860693679039752 +35515,177.57499999987476,-0.06860693713702723 +35516,177.57999999987476,-0.06860693748363535 +35517,177.58499999987475,-0.06860693783022186 +35518,177.58999999987475,-0.06860693817678674 +35519,177.59499999987474,-0.06860693852333001 +35520,177.59999999987474,-0.0686069388698517 +35521,177.60499999987474,-0.06860693921635173 +35522,177.60999999987473,-0.06860693956283016 +35523,177.61499999987473,-0.06860693990928698 +35524,177.61999999987472,-0.06860694025572218 +35525,177.62499999987472,-0.06860694060213575 +35526,177.6299999998747,-0.0686069409485277 +35527,177.6349999998747,-0.06860694129489804 +35528,177.6399999998747,-0.06860694164124675 +35529,177.6449999998747,-0.06860694198757383 +35530,177.6499999998747,-0.06860694233387929 +35531,177.6549999998747,-0.06860694268016311 +35532,177.65999999987469,-0.06860694302642531 +35533,177.66499999987468,-0.06860694337266589 +35534,177.66999999987468,-0.06860694371888482 +35535,177.67499999987467,-0.06860694406508214 +35536,177.67999999987467,-0.0686069444112578 +35537,177.68499999987466,-0.06860694475741184 +35538,177.68999999987466,-0.06860694510354423 +35539,177.69499999987465,-0.068606945449655 +35540,177.69999999987465,-0.06860694579574413 +35541,177.70499999987464,-0.0686069461418116 +35542,177.70999999987464,-0.06860694648785746 +35543,177.71499999987464,-0.06860694683388166 +35544,177.71999999987463,-0.06860694717988423 +35545,177.72499999987463,-0.06860694752586514 +35546,177.72999999987462,-0.0686069478718244 +35547,177.73499999987462,-0.06860694821776203 +35548,177.7399999998746,-0.06860694856367801 +35549,177.7449999998746,-0.06860694890957232 +35550,177.7499999998746,-0.068606949255445 +35551,177.7549999998746,-0.06860694960129603 +35552,177.7599999998746,-0.06860694994712539 +35553,177.7649999998746,-0.06860695029293311 +35554,177.76999999987459,-0.06860695063871917 +35555,177.77499999987458,-0.06860695098448358 +35556,177.77999999987458,-0.06860695133022632 +35557,177.78499999987457,-0.06860695167594742 +35558,177.78999999987457,-0.06860695202164684 +35559,177.79499999987456,-0.0686069523673246 +35560,177.79999999987456,-0.0686069527129807 +35561,177.80499999987455,-0.06860695305861514 +35562,177.80999999987455,-0.06860695340422791 +35563,177.81499999987454,-0.06860695374981901 +35564,177.81999999987454,-0.06860695409538844 +35565,177.82499999987454,-0.06860695444093622 +35566,177.82999999987453,-0.06860695478646232 +35567,177.83499999987453,-0.06860695513196675 +35568,177.83999999987452,-0.06860695547744952 +35569,177.84499999987452,-0.06860695582291061 +35570,177.8499999998745,-0.06860695616835003 +35571,177.8549999998745,-0.06860695651376776 +35572,177.8599999998745,-0.06860695685916382 +35573,177.8649999998745,-0.06860695720453819 +35574,177.8699999998745,-0.06860695754989089 +35575,177.8749999998745,-0.0686069578952219 +35576,177.87999999987449,-0.06860695824053126 +35577,177.88499999987448,-0.06860695858581892 +35578,177.88999999987448,-0.06860695893108489 +35579,177.89499999987447,-0.06860695927632918 +35580,177.89999999987447,-0.06860695962155178 +35581,177.90499999987446,-0.0686069599667527 +35582,177.90999999987446,-0.06860696031193193 +35583,177.91499999987445,-0.06860696065708946 +35584,177.91999999987445,-0.06860696100222531 +35585,177.92499999987444,-0.06860696134733947 +35586,177.92999999987444,-0.06860696169243193 +35587,177.93499999987444,-0.0686069620375027 +35588,177.93999999987443,-0.06860696238255178 +35589,177.94499999987443,-0.06860696272757914 +35590,177.94999999987442,-0.06860696307258482 +35591,177.95499999987442,-0.0686069634175688 +35592,177.9599999998744,-0.06860696376253109 +35593,177.9649999998744,-0.06860696410747165 +35594,177.9699999998744,-0.06860696445239053 +35595,177.9749999998744,-0.0686069647972877 +35596,177.9799999998744,-0.06860696514216318 +35597,177.9849999998744,-0.06860696548701693 +35598,177.98999999987439,-0.068606965831849 +35599,177.99499999987438,-0.06860696617665935 +35600,177.99999999987438,-0.06860696652144799 +35601,178.00499999987437,-0.06860696686621492 +35602,178.00999999987437,-0.06860696721096014 +35603,178.01499999987436,-0.06860696755568364 +35604,178.01999999987436,-0.06860696790038542 +35605,178.02499999987435,-0.0686069682450655 +35606,178.02999999987435,-0.06860696858972386 +35607,178.03499999987434,-0.06860696893436051 +35608,178.03999999987434,-0.06860696927897544 +35609,178.04499999987434,-0.06860696962356864 +35610,178.04999999987433,-0.06860696996814014 +35611,178.05499999987433,-0.06860697031268989 +35612,178.05999999987432,-0.06860697065721795 +35613,178.06499999987432,-0.06860697100172426 +35614,178.0699999998743,-0.06860697134620886 +35615,178.0749999998743,-0.06860697169067172 +35616,178.0799999998743,-0.06860697203511285 +35617,178.0849999998743,-0.06860697237953226 +35618,178.0899999998743,-0.06860697272392993 +35619,178.0949999998743,-0.06860697306830588 +35620,178.09999999987429,-0.0686069734126601 +35621,178.10499999987428,-0.0686069737569926 +35622,178.10999999987428,-0.06860697410130334 +35623,178.11499999987427,-0.06860697444559236 +35624,178.11999999987427,-0.06860697478985964 +35625,178.12499999987426,-0.06860697513410517 +35626,178.12999999987426,-0.06860697547832897 +35627,178.13499999987425,-0.06860697582253104 +35628,178.13999999987425,-0.06860697616671137 +35629,178.14499999987424,-0.06860697651086994 +35630,178.14999999987424,-0.06860697685500677 +35631,178.15499999987424,-0.06860697719912187 +35632,178.15999999987423,-0.06860697754321522 +35633,178.16499999987423,-0.06860697788728681 +35634,178.16999999987422,-0.06860697823133667 +35635,178.17499999987422,-0.06860697857536478 +35636,178.1799999998742,-0.06860697891937113 +35637,178.1849999998742,-0.06860697926335574 +35638,178.1899999998742,-0.0686069796073186 +35639,178.1949999998742,-0.0686069799512597 +35640,178.1999999998742,-0.06860698029517903 +35641,178.2049999998742,-0.06860698063907662 +35642,178.20999999987419,-0.06860698098295247 +35643,178.21499999987418,-0.06860698132680655 +35644,178.21999999987418,-0.06860698167063886 +35645,178.22499999987417,-0.06860698201444941 +35646,178.22999999987417,-0.06860698235823821 +35647,178.23499999987416,-0.06860698270200526 +35648,178.23999999987416,-0.06860698304575052 +35649,178.24499999987415,-0.06860698338947405 +35650,178.24999999987415,-0.06860698373317578 +35651,178.25499999987414,-0.06860698407685575 +35652,178.25999999987414,-0.06860698442051397 +35653,178.26499999987414,-0.06860698476415042 +35654,178.26999999987413,-0.06860698510776508 +35655,178.27499999987413,-0.06860698545135799 +35656,178.27999999987412,-0.06860698579492912 +35657,178.28499999987412,-0.06860698613847847 +35658,178.2899999998741,-0.06860698648200607 +35659,178.2949999998741,-0.06860698682551188 +35660,178.2999999998741,-0.0686069871689959 +35661,178.3049999998741,-0.06860698751245817 +35662,178.3099999998741,-0.06860698785589864 +35663,178.3149999998741,-0.06860698819931735 +35664,178.31999999987409,-0.06860698854271427 +35665,178.32499999987408,-0.0686069888860894 +35666,178.32999999987408,-0.06860698922944275 +35667,178.33499999987407,-0.06860698957277432 +35668,178.33999999987407,-0.06860698991608412 +35669,178.34499999987406,-0.06860699025937211 +35670,178.34999999987406,-0.06860699060263832 +35671,178.35499999987405,-0.06860699094588274 +35672,178.35999999987405,-0.06860699128910538 +35673,178.36499999987404,-0.06860699163230624 +35674,178.36999999987404,-0.06860699197548528 +35675,178.37499999987403,-0.06860699231864256 +35676,178.37999999987403,-0.06860699266177803 +35677,178.38499999987403,-0.0686069930048917 +35678,178.38999999987402,-0.06860699334798359 +35679,178.39499999987402,-0.06860699369105368 +35680,178.399999999874,-0.06860699403410196 +35681,178.404999999874,-0.06860699437712844 +35682,178.409999999874,-0.06860699472013314 +35683,178.414999999874,-0.06860699506311602 +35684,178.419999999874,-0.0686069954060771 +35685,178.424999999874,-0.0686069957490164 +35686,178.42999999987398,-0.06860699609193388 +35687,178.43499999987398,-0.06860699643482955 +35688,178.43999999987398,-0.06860699677770343 +35689,178.44499999987397,-0.0686069971205555 +35690,178.44999999987397,-0.06860699746338575 +35691,178.45499999987396,-0.0686069978061942 +35692,178.45999999987396,-0.06860699814898084 +35693,178.46499999987395,-0.06860699849174566 +35694,178.46999999987395,-0.06860699883448866 +35695,178.47499999987394,-0.06860699917720987 +35696,178.47999999987394,-0.06860699951990926 +35697,178.48499999987393,-0.06860699986258682 +35698,178.48999999987393,-0.06860700020524257 +35699,178.49499999987393,-0.06860700054787651 +35700,178.49999999987392,-0.06860700089048864 +35701,178.50499999987392,-0.06860700123307893 +35702,178.5099999998739,-0.06860700157564742 +35703,178.5149999998739,-0.06860700191819408 +35704,178.5199999998739,-0.0686070022607189 +35705,178.5249999998739,-0.06860700260322192 +35706,178.5299999998739,-0.0686070029457031 +35707,178.5349999998739,-0.06860700328816247 +35708,178.53999999987388,-0.06860700363059999 +35709,178.54499999987388,-0.0686070039730157 +35710,178.54999999987388,-0.06860700431540957 +35711,178.55499999987387,-0.06860700465778162 +35712,178.55999999987387,-0.06860700500013184 +35713,178.56499999987386,-0.06860700534246023 +35714,178.56999999987386,-0.06860700568476678 +35715,178.57499999987385,-0.0686070060270515 +35716,178.57999999987385,-0.06860700636931438 +35717,178.58499999987384,-0.06860700671155542 +35718,178.58999999987384,-0.06860700705377464 +35719,178.59499999987383,-0.068607007395972 +35720,178.59999999987383,-0.06860700773814754 +35721,178.60499999987383,-0.06860700808030125 +35722,178.60999999987382,-0.0686070084224331 +35723,178.61499999987382,-0.0686070087645431 +35724,178.6199999998738,-0.06860700910663128 +35725,178.6249999998738,-0.0686070094486976 +35726,178.6299999998738,-0.06860700979074207 +35727,178.6349999998738,-0.0686070101327647 +35728,178.6399999998738,-0.06860701047476549 +35729,178.6449999998738,-0.06860701081674442 +35730,178.64999999987378,-0.0686070111587015 +35731,178.65499999987378,-0.06860701150063675 +35732,178.65999999987378,-0.06860701184255012 +35733,178.66499999987377,-0.06860701218444167 +35734,178.66999999987377,-0.06860701252631134 +35735,178.67499999987376,-0.06860701286815916 +35736,178.67999999987376,-0.06860701320998512 +35737,178.68499999987375,-0.06860701355178923 +35738,178.68999999987375,-0.06860701389357149 +35739,178.69499999987374,-0.06860701423533189 +35740,178.69999999987374,-0.06860701457707043 +35741,178.70499999987373,-0.0686070149187871 +35742,178.70999999987373,-0.06860701526048192 +35743,178.71499999987373,-0.06860701560215487 +35744,178.71999999987372,-0.06860701594380596 +35745,178.72499999987372,-0.0686070162854352 +35746,178.7299999998737,-0.06860701662704255 +35747,178.7349999998737,-0.06860701696862805 +35748,178.7399999998737,-0.06860701731019168 +35749,178.7449999998737,-0.06860701765173345 +35750,178.7499999998737,-0.06860701799325333 +35751,178.7549999998737,-0.06860701833475136 +35752,178.75999999987368,-0.06860701867622751 +35753,178.76499999987368,-0.06860701901768178 +35754,178.76999999987368,-0.06860701935911417 +35755,178.77499999987367,-0.0686070197005247 +35756,178.77999999987367,-0.06860702004191337 +35757,178.78499999987366,-0.06860702038328013 +35758,178.78999999987366,-0.06860702072462503 +35759,178.79499999987365,-0.06860702106594804 +35760,178.79999999987365,-0.0686070214072492 +35761,178.80499999987364,-0.06860702174852845 +35762,178.80999999987364,-0.06860702208978584 +35763,178.81499999987363,-0.06860702243102133 +35764,178.81999999987363,-0.06860702277223496 +35765,178.82499999987363,-0.06860702311342669 +35766,178.82999999987362,-0.06860702345459654 +35767,178.83499999987362,-0.06860702379574452 +35768,178.8399999998736,-0.06860702413687057 +35769,178.8449999998736,-0.06860702447797476 +35770,178.8499999998736,-0.06860702481905706 +35771,178.8549999998736,-0.06860702516011748 +35772,178.8599999998736,-0.068607025501156 +35773,178.8649999998736,-0.06860702584217263 +35774,178.86999999987358,-0.06860702618316734 +35775,178.87499999987358,-0.06860702652414018 +35776,178.87999999987358,-0.06860702686509113 +35777,178.88499999987357,-0.06860702720602017 +35778,178.88999999987357,-0.06860702754692732 +35779,178.89499999987356,-0.06860702788781257 +35780,178.89999999987356,-0.06860702822867593 +35781,178.90499999987355,-0.06860702856951738 +35782,178.90999999987355,-0.06860702891033693 +35783,178.91499999987354,-0.0686070292511346 +35784,178.91999999987354,-0.06860702959191035 +35785,178.92499999987353,-0.0686070299326642 +35786,178.92999999987353,-0.06860703027339614 +35787,178.93499999987353,-0.06860703061410618 +35788,178.93999999987352,-0.06860703095479431 +35789,178.94499999987352,-0.06860703129546054 +35790,178.9499999998735,-0.06860703163610486 +35791,178.9549999998735,-0.06860703197672727 +35792,178.9599999998735,-0.06860703231732776 +35793,178.9649999998735,-0.06860703265790637 +35794,178.9699999998735,-0.06860703299846305 +35795,178.9749999998735,-0.06860703333899781 +35796,178.97999999987348,-0.06860703367951065 +35797,178.98499999987348,-0.06860703402000158 +35798,178.98999999987348,-0.0686070343604706 +35799,178.99499999987347,-0.0686070347009177 +35800,178.99999999987347,-0.06860703504134288 +35801,179.00499999987346,-0.06860703538174615 +35802,179.00999999987346,-0.0686070357221275 +35803,179.01499999987345,-0.06860703606248691 +35804,179.01999999987345,-0.06860703640282442 +35805,179.02499999987344,-0.06860703674314 +35806,179.02999999987344,-0.06860703708343366 +35807,179.03499999987343,-0.0686070374237054 +35808,179.03999999987343,-0.0686070377639552 +35809,179.04499999987343,-0.06860703810418309 +35810,179.04999999987342,-0.06860703844438905 +35811,179.05499999987342,-0.06860703878457308 +35812,179.0599999998734,-0.06860703912473519 +35813,179.0649999998734,-0.06860703946487536 +35814,179.0699999998734,-0.0686070398049936 +35815,179.0749999998734,-0.06860704014508989 +35816,179.0799999998734,-0.06860704048516428 +35817,179.0849999998734,-0.06860704082521672 +35818,179.08999999987338,-0.06860704116524723 +35819,179.09499999987338,-0.06860704150525579 +35820,179.09999999987338,-0.06860704184524244 +35821,179.10499999987337,-0.06860704218520713 +35822,179.10999999987337,-0.06860704252514989 +35823,179.11499999987336,-0.06860704286507072 +35824,179.11999999987336,-0.0686070432049696 +35825,179.12499999987335,-0.06860704354484655 +35826,179.12999999987335,-0.06860704388470154 +35827,179.13499999987334,-0.06860704422453459 +35828,179.13999999987334,-0.0686070445643457 +35829,179.14499999987333,-0.06860704490413487 +35830,179.14999999987333,-0.0686070452439021 +35831,179.15499999987333,-0.06860704558364737 +35832,179.15999999987332,-0.0686070459233707 +35833,179.16499999987332,-0.0686070462630721 +35834,179.1699999998733,-0.06860704660275152 +35835,179.1749999998733,-0.068607046942409 +35836,179.1799999998733,-0.06860704728204453 +35837,179.1849999998733,-0.06860704762165812 +35838,179.1899999998733,-0.06860704796124974 +35839,179.1949999998733,-0.06860704830081941 +35840,179.19999999987328,-0.06860704864036714 +35841,179.20499999987328,-0.0686070489798929 +35842,179.20999999987328,-0.0686070493193967 +35843,179.21499999987327,-0.06860704965887855 +35844,179.21999999987327,-0.06860704999833844 +35845,179.22499999987326,-0.06860705033777638 +35846,179.22999999987326,-0.06860705067719235 +35847,179.23499999987325,-0.06860705101658636 +35848,179.23999999987325,-0.0686070513559584 +35849,179.24499999987324,-0.0686070516953085 +35850,179.24999999987324,-0.06860705203463663 +35851,179.25499999987323,-0.06860705237394278 +35852,179.25999999987323,-0.06860705271322698 +35853,179.26499999987323,-0.06860705305248921 +35854,179.26999999987322,-0.06860705339172947 +35855,179.27499999987322,-0.06860705373094776 +35856,179.2799999998732,-0.06860705407014409 +35857,179.2849999998732,-0.06860705440931844 +35858,179.2899999998732,-0.06860705474847081 +35859,179.2949999998732,-0.06860705508760123 +35860,179.2999999998732,-0.06860705542670967 +35861,179.3049999998732,-0.06860705576579613 +35862,179.30999999987318,-0.06860705610486063 +35863,179.31499999987318,-0.06860705644390315 +35864,179.31999999987318,-0.0686070567829237 +35865,179.32499999987317,-0.06860705712192225 +35866,179.32999999987317,-0.06860705746089885 +35867,179.33499999987316,-0.06860705779985345 +35868,179.33999999987316,-0.06860705813878609 +35869,179.34499999987315,-0.06860705847769674 +35870,179.34999999987315,-0.06860705881658541 +35871,179.35499999987314,-0.0686070591554521 +35872,179.35999999987314,-0.0686070594942968 +35873,179.36499999987313,-0.0686070598331195 +35874,179.36999999987313,-0.06860706017192024 +35875,179.37499999987313,-0.06860706051069898 +35876,179.37999999987312,-0.06860706084945575 +35877,179.38499999987312,-0.06860706118819053 +35878,179.3899999998731,-0.06860706152690332 +35879,179.3949999998731,-0.06860706186559412 +35880,179.3999999998731,-0.06860706220426294 +35881,179.4049999998731,-0.06860706254290974 +35882,179.4099999998731,-0.06860706288153458 +35883,179.4149999998731,-0.0686070632201374 +35884,179.41999999987308,-0.06860706355871825 +35885,179.42499999987308,-0.0686070638972771 +35886,179.42999999987308,-0.06860706423581395 +35887,179.43499999987307,-0.0686070645743288 +35888,179.43999999987307,-0.06860706491282167 +35889,179.44499999987306,-0.06860706525129252 +35890,179.44999999987306,-0.0686070655897414 +35891,179.45499999987305,-0.06860706592816826 +35892,179.45999999987305,-0.06860706626657312 +35893,179.46499999987304,-0.06860706660495598 +35894,179.46999999987304,-0.06860706694331684 +35895,179.47499999987303,-0.0686070672816557 +35896,179.47999999987303,-0.06860706761997255 +35897,179.48499999987303,-0.0686070679582674 +35898,179.48999999987302,-0.06860706829654024 +35899,179.49499999987302,-0.06860706863479109 +35900,179.499999999873,-0.06860706897301992 +35901,179.504999999873,-0.06860706931122676 +35902,179.509999999873,-0.06860706964941157 +35903,179.514999999873,-0.06860706998757438 +35904,179.519999999873,-0.06860707032571517 +35905,179.524999999873,-0.06860707066383395 +35906,179.52999999987298,-0.06860707100193073 +35907,179.53499999987298,-0.06860707134000547 +35908,179.53999999987298,-0.06860707167805823 +35909,179.54499999987297,-0.06860707201608895 +35910,179.54999999987297,-0.06860707235409767 +35911,179.55499999987296,-0.06860707269208437 +35912,179.55999999987296,-0.06860707303004905 +35913,179.56499999987295,-0.06860707336799172 +35914,179.56999999987295,-0.06860707370591237 +35915,179.57499999987294,-0.068607074043811 +35916,179.57999999987294,-0.0686070743816876 +35917,179.58499999987293,-0.06860707471954218 +35918,179.58999999987293,-0.06860707505737475 +35919,179.59499999987293,-0.06860707539518529 +35920,179.59999999987292,-0.06860707573297381 +35921,179.60499999987292,-0.0686070760707403 +35922,179.6099999998729,-0.06860707640848478 +35923,179.6149999998729,-0.06860707674620721 +35924,179.6199999998729,-0.06860707708390763 +35925,179.6249999998729,-0.06860707742158602 +35926,179.6299999998729,-0.06860707775924238 +35927,179.6349999998729,-0.0686070780968767 +35928,179.63999999987288,-0.068607078434489 +35929,179.64499999987288,-0.06860707877207926 +35930,179.64999999987288,-0.0686070791096475 +35931,179.65499999987287,-0.0686070794471937 +35932,179.65999999987287,-0.06860707978471788 +35933,179.66499999987286,-0.06860708012222 +35934,179.66999999987286,-0.0686070804597001 +35935,179.67499999987285,-0.06860708079715816 +35936,179.67999999987285,-0.06860708113459418 +35937,179.68499999987284,-0.06860708147200818 +35938,179.68999999987284,-0.06860708180940013 +35939,179.69499999987283,-0.06860708214677004 +35940,179.69999999987283,-0.06860708248411791 +35941,179.70499999987283,-0.06860708282144375 +35942,179.70999999987282,-0.06860708315874753 +35943,179.71499999987282,-0.06860708349602927 +35944,179.7199999998728,-0.06860708383328898 +35945,179.7249999998728,-0.06860708417052663 +35946,179.7299999998728,-0.06860708450774225 +35947,179.7349999998728,-0.06860708484493581 +35948,179.7399999998728,-0.06860708518210733 +35949,179.7449999998728,-0.0686070855192568 +35950,179.74999999987278,-0.06860708585638421 +35951,179.75499999987278,-0.0686070861934896 +35952,179.75999999987278,-0.06860708653057292 +35953,179.76499999987277,-0.0686070868676342 +35954,179.76999999987277,-0.06860708720467341 +35955,179.77499999987276,-0.06860708754169059 +35956,179.77999999987276,-0.0686070878786857 +35957,179.78499999987275,-0.06860708821565877 +35958,179.78999999987275,-0.06860708855260979 +35959,179.79499999987274,-0.06860708888953874 +35960,179.79999999987274,-0.06860708922644564 +35961,179.80499999987273,-0.06860708956333048 +35962,179.80999999987273,-0.06860708990019326 +35963,179.81499999987273,-0.06860709023703399 +35964,179.81999999987272,-0.06860709057385266 +35965,179.82499999987272,-0.06860709091064926 +35966,179.8299999998727,-0.06860709124742381 +35967,179.8349999998727,-0.06860709158417629 +35968,179.8399999998727,-0.06860709192090671 +35969,179.8449999998727,-0.06860709225761506 +35970,179.8499999998727,-0.06860709259430137 +35971,179.8549999998727,-0.06860709293096559 +35972,179.85999999987268,-0.06860709326760775 +35973,179.86499999987268,-0.06860709360422786 +35974,179.86999999987268,-0.0686070939408259 +35975,179.87499999987267,-0.06860709427740186 +35976,179.87999999987267,-0.06860709461395575 +35977,179.88499999987266,-0.06860709495048758 +35978,179.88999999987266,-0.06860709528699734 +35979,179.89499999987265,-0.06860709562348502 +35980,179.89999999987265,-0.06860709595995064 +35981,179.90499999987264,-0.06860709629639418 +35982,179.90999999987264,-0.06860709663281564 +35983,179.91499999987263,-0.06860709696921503 +35984,179.91999999987263,-0.06860709730559236 +35985,179.92499999987263,-0.06860709764194761 +35986,179.92999999987262,-0.06860709797828078 +35987,179.93499999987262,-0.06860709831459187 +35988,179.9399999998726,-0.06860709865088087 +35989,179.9449999998726,-0.06860709898714781 +35990,179.9499999998726,-0.06860709932339266 +35991,179.9549999998726,-0.06860709965961544 +35992,179.9599999998726,-0.06860709999581613 +35993,179.9649999998726,-0.06860710033199474 +35994,179.96999999987258,-0.06860710066815127 +35995,179.97499999987258,-0.06860710100428573 +35996,179.97999999987258,-0.06860710134039809 +35997,179.98499999987257,-0.06860710167648837 +35998,179.98999999987257,-0.06860710201255657 +35999,179.99499999987256,-0.06860710234860266 +36000,179.99999999987256,-0.06860710268462668 +36001,180.00499999987255,-0.06860710302062861 +36002,180.00999999987255,-0.06860710335660847 +36003,180.01499999987254,-0.06860710369256622 +36004,180.01999999987254,-0.06860710402850188 +36005,180.02499999987253,-0.06860710436441544 +36006,180.02999999987253,-0.06860710470030694 +36007,180.03499999987253,-0.06860710503617633 +36008,180.03999999987252,-0.06860710537202361 +36009,180.04499999987252,-0.06860710570784882 +36010,180.0499999998725,-0.06860710604365193 +36011,180.0549999998725,-0.06860710637943293 +36012,180.0599999998725,-0.06860710671519185 +36013,180.0649999998725,-0.06860710705092866 +36014,180.0699999998725,-0.0686071073866434 +36015,180.0749999998725,-0.06860710772233601 +36016,180.07999999987248,-0.06860710805800653 +36017,180.08499999987248,-0.06860710839365496 +36018,180.08999999987248,-0.06860710872928127 +36019,180.09499999987247,-0.06860710906488551 +36020,180.09999999987247,-0.06860710940046763 +36021,180.10499999987246,-0.06860710973602765 +36022,180.10999999987246,-0.06860711007156557 +36023,180.11499999987245,-0.06860711040708138 +36024,180.11999999987245,-0.06860711074257508 +36025,180.12499999987244,-0.06860711107804669 +36026,180.12999999987244,-0.06860711141349618 +36027,180.13499999987243,-0.06860711174892357 +36028,180.13999999987243,-0.06860711208432886 +36029,180.14499999987243,-0.06860711241971204 +36030,180.14999999987242,-0.0686071127550731 +36031,180.15499999987242,-0.06860711309041206 +36032,180.1599999998724,-0.0686071134257289 +36033,180.1649999998724,-0.06860711376102363 +36034,180.1699999998724,-0.06860711409629625 +36035,180.1749999998724,-0.06860711443154675 +36036,180.1799999998724,-0.06860711476677514 +36037,180.1849999998724,-0.06860711510198142 +36038,180.18999999987238,-0.06860711543716559 +36039,180.19499999987238,-0.06860711577232763 +36040,180.19999999987238,-0.06860711610746756 +36041,180.20499999987237,-0.06860711644258538 +36042,180.20999999987237,-0.06860711677768107 +36043,180.21499999987236,-0.06860711711275465 +36044,180.21999999987236,-0.06860711744780612 +36045,180.22499999987235,-0.06860711778283546 +36046,180.22999999987235,-0.06860711811784267 +36047,180.23499999987234,-0.06860711845282778 +36048,180.23999999987234,-0.06860711878779076 +36049,180.24499999987233,-0.06860711912273161 +36050,180.24999999987233,-0.06860711945765033 +36051,180.25499999987233,-0.06860711979254694 +36052,180.25999999987232,-0.06860712012742143 +36053,180.26499999987232,-0.06860712046227378 +36054,180.2699999998723,-0.06860712079710402 +36055,180.2749999998723,-0.06860712113191213 +36056,180.2799999998723,-0.06860712146669809 +36057,180.2849999998723,-0.06860712180146193 +36058,180.2899999998723,-0.06860712213620364 +36059,180.2949999998723,-0.06860712247092324 +36060,180.29999999987228,-0.06860712280562069 +36061,180.30499999987228,-0.06860712314029602 +36062,180.30999999987228,-0.06860712347494921 +36063,180.31499999987227,-0.06860712380958026 +36064,180.31999999987227,-0.0686071241441892 +36065,180.32499999987226,-0.06860712447877597 +36066,180.32999999987226,-0.06860712481334064 +36067,180.33499999987225,-0.06860712514788316 +36068,180.33999999987225,-0.06860712548240354 +36069,180.34499999987224,-0.06860712581690179 +36070,180.34999999987224,-0.0686071261513779 +36071,180.35499999987223,-0.06860712648583187 +36072,180.35999999987223,-0.06860712682026371 +36073,180.36499999987223,-0.06860712715467339 +36074,180.36999999987222,-0.06860712748906095 +36075,180.37499999987222,-0.06860712782342636 +36076,180.3799999998722,-0.06860712815776962 +36077,180.3849999998722,-0.06860712849209075 +36078,180.3899999998722,-0.06860712882638974 +36079,180.3949999998722,-0.0686071291606666 +36080,180.3999999998722,-0.06860712949492129 +36081,180.4049999998722,-0.06860712982915383 +36082,180.40999999987218,-0.06860713016336424 +36083,180.41499999987218,-0.0686071304975525 +36084,180.41999999987218,-0.06860713083171863 +36085,180.42499999987217,-0.06860713116586259 +36086,180.42999999987217,-0.0686071314999844 +36087,180.43499999987216,-0.06860713183408407 +36088,180.43999999987216,-0.06860713216816158 +36089,180.44499999987215,-0.06860713250221696 +36090,180.44999999987215,-0.06860713283625018 +36091,180.45499999987214,-0.06860713317026124 +36092,180.45999999987214,-0.06860713350425014 +36093,180.46499999987213,-0.0686071338382169 +36094,180.46999999987213,-0.06860713417216151 +36095,180.47499999987213,-0.06860713450608395 +36096,180.47999999987212,-0.06860713483998426 +36097,180.48499999987212,-0.0686071351738624 +36098,180.4899999998721,-0.06860713550771837 +36099,180.4949999998721,-0.06860713584155219 +36100,180.4999999998721,-0.06860713617536386 +36101,180.5049999998721,-0.06860713650915339 +36102,180.5099999998721,-0.06860713684292073 +36103,180.5149999998721,-0.06860713717666592 +36104,180.51999999987208,-0.06860713751038894 +36105,180.52499999987208,-0.06860713784408981 +36106,180.52999999987208,-0.06860713817776852 +36107,180.53499999987207,-0.06860713851142507 +36108,180.53999999987207,-0.06860713884505944 +36109,180.54499999987206,-0.06860713917867166 +36110,180.54999999987206,-0.06860713951226172 +36111,180.55499999987205,-0.0686071398458296 +36112,180.55999999987205,-0.06860714017937532 +36113,180.56499999987204,-0.06860714051289889 +36114,180.56999999987204,-0.06860714084640027 +36115,180.57499999987203,-0.0686071411798795 +36116,180.57999999987203,-0.06860714151333655 +36117,180.58499999987203,-0.06860714184677143 +36118,180.58999999987202,-0.06860714218018414 +36119,180.59499999987202,-0.06860714251357469 +36120,180.599999999872,-0.06860714284694307 +36121,180.604999999872,-0.06860714318028925 +36122,180.609999999872,-0.06860714351361329 +36123,180.614999999872,-0.06860714384691513 +36124,180.619999999872,-0.06860714418019483 +36125,180.624999999872,-0.06860714451345233 +36126,180.62999999987198,-0.06860714484668766 +36127,180.63499999987198,-0.06860714517990081 +36128,180.63999999987197,-0.0686071455130918 +36129,180.64499999987197,-0.0686071458462606 +36130,180.64999999987197,-0.06860714617940722 +36131,180.65499999987196,-0.06860714651253168 +36132,180.65999999987196,-0.06860714684563393 +36133,180.66499999987195,-0.06860714717871404 +36134,180.66999999987195,-0.06860714751177194 +36135,180.67499999987194,-0.06860714784480768 +36136,180.67999999987194,-0.06860714817782122 +36137,180.68499999987193,-0.06860714851081258 +36138,180.68999999987193,-0.06860714884378176 +36139,180.69499999987192,-0.06860714917672875 +36140,180.69999999987192,-0.06860714950965356 +36141,180.70499999987192,-0.0686071498425562 +36142,180.7099999998719,-0.06860715017543664 +36143,180.7149999998719,-0.06860715050829491 +36144,180.7199999998719,-0.06860715084113099 +36145,180.7249999998719,-0.06860715117394488 +36146,180.7299999998719,-0.06860715150673657 +36147,180.7349999998719,-0.0686071518395061 +36148,180.73999999987188,-0.06860715217225341 +36149,180.74499999987188,-0.06860715250497855 +36150,180.74999999987187,-0.06860715283768148 +36151,180.75499999987187,-0.06860715317036224 +36152,180.75999999987187,-0.0686071535030208 +36153,180.76499999987186,-0.06860715383565717 +36154,180.76999999987186,-0.06860715416827134 +36155,180.77499999987185,-0.06860715450086333 +36156,180.77999999987185,-0.06860715483343313 +36157,180.78499999987184,-0.06860715516598073 +36158,180.78999999987184,-0.06860715549850613 +36159,180.79499999987183,-0.06860715583100933 +36160,180.79999999987183,-0.06860715616349035 +36161,180.80499999987182,-0.06860715649594916 +36162,180.80999999987182,-0.06860715682838577 +36163,180.81499999987182,-0.06860715716080018 +36164,180.8199999998718,-0.0686071574931924 +36165,180.8249999998718,-0.06860715782556243 +36166,180.8299999998718,-0.06860715815791026 +36167,180.8349999998718,-0.06860715849023587 +36168,180.8399999998718,-0.06860715882253927 +36169,180.8449999998718,-0.06860715915482049 +36170,180.84999999987178,-0.0686071594870795 +36171,180.85499999987178,-0.06860715981931631 +36172,180.85999999987177,-0.06860716015153093 +36173,180.86499999987177,-0.06860716048372333 +36174,180.86999999987177,-0.06860716081589352 +36175,180.87499999987176,-0.06860716114804151 +36176,180.87999999987176,-0.06860716148016731 +36177,180.88499999987175,-0.06860716181227089 +36178,180.88999999987175,-0.06860716214435227 +36179,180.89499999987174,-0.06860716247641142 +36180,180.89999999987174,-0.06860716280844838 +36181,180.90499999987173,-0.06860716314046313 +36182,180.90999999987173,-0.06860716347245567 +36183,180.91499999987172,-0.068607163804426 +36184,180.91999999987172,-0.0686071641363741 +36185,180.92499999987172,-0.06860716446830001 +36186,180.9299999998717,-0.06860716480020371 +36187,180.9349999998717,-0.06860716513208519 +36188,180.9399999998717,-0.06860716546394445 +36189,180.9449999998717,-0.06860716579578151 +36190,180.9499999998717,-0.06860716612759636 +36191,180.9549999998717,-0.06860716645938898 +36192,180.95999999987168,-0.06860716679115939 +36193,180.96499999987168,-0.06860716712290758 +36194,180.96999999987167,-0.06860716745463355 +36195,180.97499999987167,-0.06860716778633731 +36196,180.97999999987167,-0.06860716811801887 +36197,180.98499999987166,-0.06860716844967818 +36198,180.98999999987166,-0.0686071687813153 +36199,180.99499999987165,-0.06860716911293017 +36200,180.99999999987165,-0.06860716944452284 +36201,181.00499999987164,-0.06860716977609328 +36202,181.00999999987164,-0.06860717010764152 +36203,181.01499999987163,-0.06860717043916752 +36204,181.01999999987163,-0.0686071707706713 +36205,181.02499999987162,-0.06860717110215286 +36206,181.02999999987162,-0.0686071714336122 +36207,181.03499999987162,-0.0686071717650493 +36208,181.0399999998716,-0.06860717209646418 +36209,181.0449999998716,-0.06860717242785684 +36210,181.0499999998716,-0.06860717275922727 +36211,181.0549999998716,-0.06860717309057547 +36212,181.0599999998716,-0.06860717342190145 +36213,181.0649999998716,-0.0686071737532052 +36214,181.06999999987158,-0.06860717408448673 +36215,181.07499999987158,-0.06860717441574603 +36216,181.07999999987157,-0.0686071747469831 +36217,181.08499999987157,-0.06860717507819793 +36218,181.08999999987157,-0.06860717540939054 +36219,181.09499999987156,-0.06860717574056091 +36220,181.09999999987156,-0.06860717607170905 +36221,181.10499999987155,-0.06860717640283497 +36222,181.10999999987155,-0.06860717673393865 +36223,181.11499999987154,-0.06860717706502009 +36224,181.11999999987154,-0.06860717739607931 +36225,181.12499999987153,-0.06860717772711628 +36226,181.12999999987153,-0.06860717805813103 +36227,181.13499999987152,-0.06860717838912353 +36228,181.13999999987152,-0.0686071787200938 +36229,181.14499999987152,-0.06860717905104184 +36230,181.1499999998715,-0.06860717938196764 +36231,181.1549999998715,-0.0686071797128712 +36232,181.1599999998715,-0.06860718004375252 +36233,181.1649999998715,-0.06860718037461161 +36234,181.1699999998715,-0.06860718070544844 +36235,181.1749999998715,-0.06860718103626305 +36236,181.17999999987148,-0.0686071813670554 +36237,181.18499999987148,-0.06860718169782552 +36238,181.18999999987147,-0.06860718202857341 +36239,181.19499999987147,-0.06860718235929905 +36240,181.19999999987147,-0.06860718269000245 +36241,181.20499999987146,-0.0686071830206836 +36242,181.20999999987146,-0.0686071833513425 +36243,181.21499999987145,-0.06860718368197917 +36244,181.21999999987145,-0.0686071840125936 +36245,181.22499999987144,-0.06860718434318576 +36246,181.22999999987144,-0.06860718467375569 +36247,181.23499999987143,-0.06860718500430338 +36248,181.23999999987143,-0.06860718533482882 +36249,181.24499999987142,-0.068607185665332 +36250,181.24999999987142,-0.06860718599581295 +36251,181.25499999987142,-0.06860718632627164 +36252,181.2599999998714,-0.06860718665670806 +36253,181.2649999998714,-0.06860718698712226 +36254,181.2699999998714,-0.06860718731751421 +36255,181.2749999998714,-0.06860718764788389 +36256,181.2799999998714,-0.06860718797823134 +36257,181.2849999998714,-0.06860718830855653 +36258,181.28999999987138,-0.06860718863885946 +36259,181.29499999987138,-0.06860718896914016 +36260,181.29999999987137,-0.06860718929939859 +36261,181.30499999987137,-0.06860718962963476 +36262,181.30999999987137,-0.06860718995984869 +36263,181.31499999987136,-0.06860719029004035 +36264,181.31999999987136,-0.06860719062020977 +36265,181.32499999987135,-0.06860719095035693 +36266,181.32999999987135,-0.06860719128048183 +36267,181.33499999987134,-0.06860719161058447 +36268,181.33999999987134,-0.06860719194066485 +36269,181.34499999987133,-0.06860719227072298 +36270,181.34999999987133,-0.06860719260075884 +36271,181.35499999987132,-0.06860719293077244 +36272,181.35999999987132,-0.0686071932607638 +36273,181.36499999987132,-0.06860719359073288 +36274,181.3699999998713,-0.06860719392067971 +36275,181.3749999998713,-0.06860719425060427 +36276,181.3799999998713,-0.06860719458050657 +36277,181.3849999998713,-0.06860719491038661 +36278,181.3899999998713,-0.06860719524024439 +36279,181.3949999998713,-0.06860719557007991 +36280,181.39999999987128,-0.06860719589989316 +36281,181.40499999987128,-0.06860719622968416 +36282,181.40999999987127,-0.06860719655945287 +36283,181.41499999987127,-0.06860719688919933 +36284,181.41999999987127,-0.06860719721892351 +36285,181.42499999987126,-0.06860719754862545 +36286,181.42999999987126,-0.06860719787830512 +36287,181.43499999987125,-0.06860719820796252 +36288,181.43999999987125,-0.06860719853759764 +36289,181.44499999987124,-0.0686071988672105 +36290,181.44999999987124,-0.06860719919680108 +36291,181.45499999987123,-0.0686071995263694 +36292,181.45999999987123,-0.06860719985591544 +36293,181.46499999987122,-0.06860720018543921 +36294,181.46999999987122,-0.06860720051494072 +36295,181.47499999987122,-0.06860720084441996 +36296,181.4799999998712,-0.06860720117387692 +36297,181.4849999998712,-0.06860720150331161 +36298,181.4899999998712,-0.06860720183272402 +36299,181.4949999998712,-0.06860720216211416 +36300,181.4999999998712,-0.06860720249148203 +36301,181.5049999998712,-0.06860720282082762 +36302,181.50999999987118,-0.06860720315015094 +36303,181.51499999987118,-0.06860720347945198 +36304,181.51999999987117,-0.06860720380873075 +36305,181.52499999987117,-0.06860720413798725 +36306,181.52999999987117,-0.06860720446722146 +36307,181.53499999987116,-0.06860720479643341 +36308,181.53999999987116,-0.06860720512562307 +36309,181.54499999987115,-0.06860720545479045 +36310,181.54999999987115,-0.06860720578393556 +36311,181.55499999987114,-0.06860720611305839 +36312,181.55999999987114,-0.06860720644215892 +36313,181.56499999987113,-0.06860720677123719 +36314,181.56999999987113,-0.06860720710029317 +36315,181.57499999987112,-0.06860720742932687 +36316,181.57999999987112,-0.06860720775833828 +36317,181.58499999987112,-0.06860720808732743 +36318,181.5899999998711,-0.06860720841629427 +36319,181.5949999998711,-0.06860720874523883 +36320,181.5999999998711,-0.06860720907416112 +36321,181.6049999998711,-0.06860720940306111 +36322,181.6099999998711,-0.06860720973193885 +36323,181.6149999998711,-0.06860721006079427 +36324,181.61999999987108,-0.06860721038962743 +36325,181.62499999987108,-0.06860721071843828 +36326,181.62999999987107,-0.06860721104722686 +36327,181.63499999987107,-0.06860721137599314 +36328,181.63999999987107,-0.06860721170473716 +36329,181.64499999987106,-0.06860721203345886 +36330,181.64999999987106,-0.06860721236215829 +36331,181.65499999987105,-0.06860721269083543 +36332,181.65999999987105,-0.06860721301949027 +36333,181.66499999987104,-0.06860721334812282 +36334,181.66999999987104,-0.0686072136767331 +36335,181.67499999987103,-0.06860721400532108 +36336,181.67999999987103,-0.06860721433388677 +36337,181.68499999987102,-0.06860721466243015 +36338,181.68999999987102,-0.06860721499095125 +36339,181.69499999987102,-0.06860721531945005 +36340,181.699999999871,-0.06860721564792657 +36341,181.704999999871,-0.06860721597638078 +36342,181.709999999871,-0.06860721630481272 +36343,181.714999999871,-0.06860721663322233 +36344,181.719999999871,-0.06860721696160968 +36345,181.724999999871,-0.06860721728997472 +36346,181.72999999987098,-0.06860721761831748 +36347,181.73499999987098,-0.06860721794663792 +36348,181.73999999987097,-0.06860721827493607 +36349,181.74499999987097,-0.06860721860321194 +36350,181.74999999987097,-0.06860721893146549 +36351,181.75499999987096,-0.06860721925969673 +36352,181.75999999987096,-0.0686072195879057 +36353,181.76499999987095,-0.06860721991609235 +36354,181.76999999987095,-0.06860722024425671 +36355,181.77499999987094,-0.06860722057239878 +36356,181.77999999987094,-0.06860722090051853 +36357,181.78499999987093,-0.06860722122861598 +36358,181.78999999987093,-0.06860722155669115 +36359,181.79499999987092,-0.068607221884744 +36360,181.79999999987092,-0.06860722221277454 +36361,181.80499999987092,-0.0686072225407828 +36362,181.8099999998709,-0.06860722286876875 +36363,181.8149999998709,-0.06860722319673239 +36364,181.8199999998709,-0.06860722352467373 +36365,181.8249999998709,-0.06860722385259277 +36366,181.8299999998709,-0.06860722418048949 +36367,181.8349999998709,-0.06860722450836391 +36368,181.83999999987088,-0.06860722483621604 +36369,181.84499999987088,-0.06860722516404584 +36370,181.84999999987087,-0.06860722549185336 +36371,181.85499999987087,-0.06860722581963856 +36372,181.85999999987087,-0.06860722614740145 +36373,181.86499999987086,-0.06860722647514203 +36374,181.86999999987086,-0.0686072268028603 +36375,181.87499999987085,-0.06860722713055627 +36376,181.87999999987085,-0.06860722745822993 +36377,181.88499999987084,-0.06860722778588128 +36378,181.88999999987084,-0.06860722811351032 +36379,181.89499999987083,-0.06860722844111705 +36380,181.89999999987083,-0.06860722876870146 +36381,181.90499999987082,-0.06860722909626357 +36382,181.90999999987082,-0.06860722942380336 +36383,181.91499999987082,-0.06860722975132083 +36384,181.9199999998708,-0.06860723007881599 +36385,181.9249999998708,-0.06860723040628884 +36386,181.9299999998708,-0.06860723073373937 +36387,181.9349999998708,-0.0686072310611676 +36388,181.9399999998708,-0.06860723138857351 +36389,181.9449999998708,-0.0686072317159571 +36390,181.94999999987078,-0.06860723204331838 +36391,181.95499999987078,-0.06860723237065734 +36392,181.95999999987077,-0.06860723269797399 +36393,181.96499999987077,-0.06860723302526832 +36394,181.96999999987077,-0.06860723335254032 +36395,181.97499999987076,-0.06860723367979002 +36396,181.97999999987076,-0.0686072340070174 +36397,181.98499999987075,-0.06860723433422246 +36398,181.98999999987075,-0.06860723466140518 +36399,181.99499999987074,-0.06860723498856561 +36400,181.99999999987074,-0.0686072353157037 +36401,182.00499999987073,-0.0686072356428195 +36402,182.00999999987073,-0.06860723596991294 +36403,182.01499999987072,-0.06860723629698409 +36404,182.01999999987072,-0.06860723662403291 +36405,182.02499999987072,-0.06860723695105941 +36406,182.0299999998707,-0.06860723727806357 +36407,182.0349999998707,-0.06860723760504543 +36408,182.0399999998707,-0.06860723793200495 +36409,182.0449999998707,-0.06860723825894216 +36410,182.0499999998707,-0.06860723858585704 +36411,182.0549999998707,-0.06860723891274961 +36412,182.05999999987068,-0.06860723923961985 +36413,182.06499999987068,-0.06860723956646776 +36414,182.06999999987067,-0.06860723989329334 +36415,182.07499999987067,-0.0686072402200966 +36416,182.07999999987067,-0.06860724054687752 +36417,182.08499999987066,-0.06860724087363612 +36418,182.08999999987066,-0.06860724120037238 +36419,182.09499999987065,-0.06860724152708633 +36420,182.09999999987065,-0.06860724185377795 +36421,182.10499999987064,-0.06860724218044724 +36422,182.10999999987064,-0.06860724250709421 +36423,182.11499999987063,-0.06860724283371884 +36424,182.11999999987063,-0.06860724316032114 +36425,182.12499999987062,-0.06860724348690113 +36426,182.12999999987062,-0.06860724381345877 +36427,182.13499999987062,-0.06860724413999408 +36428,182.1399999998706,-0.06860724446650705 +36429,182.1449999998706,-0.06860724479299771 +36430,182.1499999998706,-0.06860724511946603 +36431,182.1549999998706,-0.06860724544591201 +36432,182.1599999998706,-0.06860724577233568 +36433,182.1649999998706,-0.068607246098737 +36434,182.16999999987058,-0.06860724642511598 +36435,182.17499999987058,-0.06860724675147263 +36436,182.17999999987057,-0.06860724707780695 +36437,182.18499999987057,-0.06860724740411894 +36438,182.18999999987057,-0.06860724773040859 +36439,182.19499999987056,-0.0686072480566759 +36440,182.19999999987056,-0.06860724838292087 +36441,182.20499999987055,-0.06860724870914352 +36442,182.20999999987055,-0.06860724903534383 +36443,182.21499999987054,-0.0686072493615218 +36444,182.21999999987054,-0.06860724968767742 +36445,182.22499999987053,-0.06860725001381071 +36446,182.22999999987053,-0.06860725033992167 +36447,182.23499999987052,-0.06860725066601027 +36448,182.23999999987052,-0.06860725099207655 +36449,182.24499999987052,-0.06860725131812051 +36450,182.2499999998705,-0.0686072516441421 +36451,182.2549999998705,-0.06860725197014135 +36452,182.2599999998705,-0.06860725229611826 +36453,182.2649999998705,-0.06860725262207283 +36454,182.2699999998705,-0.06860725294800507 +36455,182.2749999998705,-0.06860725327391497 +36456,182.27999999987048,-0.06860725359980252 +36457,182.28499999987048,-0.06860725392566773 +36458,182.28999999987047,-0.0686072542515106 +36459,182.29499999987047,-0.06860725457733112 +36460,182.29999999987047,-0.0686072549031293 +36461,182.30499999987046,-0.06860725522890515 +36462,182.30999999987046,-0.06860725555465863 +36463,182.31499999987045,-0.06860725588038978 +36464,182.31999999987045,-0.0686072562060986 +36465,182.32499999987044,-0.06860725653178505 +36466,182.32999999987044,-0.06860725685744917 +36467,182.33499999987043,-0.06860725718309094 +36468,182.33999999987043,-0.06860725750871036 +36469,182.34499999987042,-0.06860725783430743 +36470,182.34999999987042,-0.06860725815988217 +36471,182.35499999987042,-0.06860725848543454 +36472,182.3599999998704,-0.06860725881096458 +36473,182.3649999998704,-0.06860725913647227 +36474,182.3699999998704,-0.0686072594619576 +36475,182.3749999998704,-0.06860725978742059 +36476,182.3799999998704,-0.06860726011286122 +36477,182.3849999998704,-0.06860726043827951 +36478,182.38999999987038,-0.06860726076367546 +36479,182.39499999987038,-0.06860726108904905 +36480,182.39999999987037,-0.06860726141440028 +36481,182.40499999987037,-0.06860726173972917 +36482,182.40999999987037,-0.0686072620650357 +36483,182.41499999987036,-0.06860726239031988 +36484,182.41999999987036,-0.06860726271558171 +36485,182.42499999987035,-0.0686072630408212 +36486,182.42999999987035,-0.06860726336603833 +36487,182.43499999987034,-0.0686072636912331 +36488,182.43999999987034,-0.06860726401640553 +36489,182.44499999987033,-0.06860726434155559 +36490,182.44999999987033,-0.0686072646666833 +36491,182.45499999987032,-0.06860726499178867 +36492,182.45999999987032,-0.06860726531687167 +36493,182.46499999987032,-0.0686072656419323 +36494,182.4699999998703,-0.06860726596697059 +36495,182.4749999998703,-0.06860726629198652 +36496,182.4799999998703,-0.0686072666169801 +36497,182.4849999998703,-0.06860726694195132 +36498,182.4899999998703,-0.06860726726690018 +36499,182.4949999998703,-0.06860726759182668 +36500,182.49999999987028,-0.06860726791673083 +36501,182.50499999987028,-0.06860726824161263 +36502,182.50999999987027,-0.06860726856647206 +36503,182.51499999987027,-0.06860726889130914 +36504,182.51999999987027,-0.06860726921612385 +36505,182.52499999987026,-0.06860726954091621 +36506,182.52999999987026,-0.0686072698656862 +36507,182.53499999987025,-0.06860727019043383 +36508,182.53999999987025,-0.06860727051515912 +36509,182.54499999987024,-0.06860727083986203 +36510,182.54999999987024,-0.06860727116454259 +36511,182.55499999987023,-0.06860727148920077 +36512,182.55999999987023,-0.0686072718138366 +36513,182.56499999987022,-0.06860727213845007 +36514,182.56999999987022,-0.06860727246304119 +36515,182.57499999987022,-0.06860727278760993 +36516,182.5799999998702,-0.06860727311215631 +36517,182.5849999998702,-0.06860727343668033 +36518,182.5899999998702,-0.06860727376118199 +36519,182.5949999998702,-0.06860727408566128 +36520,182.5999999998702,-0.0686072744101182 +36521,182.6049999998702,-0.06860727473455276 +36522,182.60999999987018,-0.06860727505896495 +36523,182.61499999987018,-0.06860727538335479 +36524,182.61999999987017,-0.06860727570772225 +36525,182.62499999987017,-0.06860727603206734 +36526,182.62999999987017,-0.06860727635639008 +36527,182.63499999987016,-0.06860727668069043 +36528,182.63999999987016,-0.06860727700496844 +36529,182.64499999987015,-0.06860727732922407 +36530,182.64999999987015,-0.06860727765345735 +36531,182.65499999987014,-0.06860727797766823 +36532,182.65999999987014,-0.06860727830185677 +36533,182.66499999987013,-0.06860727862602292 +36534,182.66999999987013,-0.0686072789501667 +36535,182.67499999987012,-0.06860727927428811 +36536,182.67999999987012,-0.06860727959838717 +36537,182.68499999987012,-0.06860727992246385 +36538,182.6899999998701,-0.06860728024651816 +36539,182.6949999998701,-0.0686072805705501 +36540,182.6999999998701,-0.06860728089455968 +36541,182.7049999998701,-0.06860728121854688 +36542,182.7099999998701,-0.06860728154251171 +36543,182.7149999998701,-0.06860728186645416 +36544,182.71999999987008,-0.06860728219037425 +36545,182.72499999987008,-0.06860728251427196 +36546,182.72999999987007,-0.06860728283814731 +36547,182.73499999987007,-0.06860728316200027 +36548,182.73999999987007,-0.06860728348583085 +36549,182.74499999987006,-0.06860728380963907 +36550,182.74999999987006,-0.06860728413342491 +36551,182.75499999987005,-0.06860728445718839 +36552,182.75999999987005,-0.06860728478092948 +36553,182.76499999987004,-0.0686072851046482 +36554,182.76999999987004,-0.06860728542834454 +36555,182.77499999987003,-0.06860728575201851 +36556,182.77999999987003,-0.0686072860756701 +36557,182.78499999987002,-0.06860728639929933 +36558,182.78999999987002,-0.06860728672290617 +36559,182.79499999987002,-0.06860728704649065 +36560,182.79999999987,-0.06860728737005273 +36561,182.80499999987,-0.06860728769359244 +36562,182.80999999987,-0.06860728801710979 +36563,182.81499999987,-0.06860728834060474 +36564,182.81999999987,-0.06860728866407732 +36565,182.82499999987,-0.06860728898752752 +36566,182.82999999986998,-0.06860728931095535 +36567,182.83499999986998,-0.0686072896343608 +36568,182.83999999986997,-0.06860728995774386 +36569,182.84499999986997,-0.06860729028110454 +36570,182.84999999986996,-0.06860729060444286 +36571,182.85499999986996,-0.06860729092775879 +36572,182.85999999986996,-0.06860729125105233 +36573,182.86499999986995,-0.06860729157432349 +36574,182.86999999986995,-0.06860729189757228 +36575,182.87499999986994,-0.06860729222079869 +36576,182.87999999986994,-0.0686072925440027 +36577,182.88499999986993,-0.06860729286718434 +36578,182.88999999986993,-0.0686072931903436 +36579,182.89499999986992,-0.06860729351348047 +36580,182.89999999986992,-0.06860729383659496 +36581,182.90499999986991,-0.06860729415968707 +36582,182.9099999998699,-0.0686072944827568 +36583,182.9149999998699,-0.06860729480580414 +36584,182.9199999998699,-0.06860729512882911 +36585,182.9249999998699,-0.06860729545183168 +36586,182.9299999998699,-0.06860729577481187 +36587,182.9349999998699,-0.06860729609776967 +36588,182.93999999986988,-0.06860729642070508 +36589,182.94499999986988,-0.06860729674361812 +36590,182.94999999986987,-0.06860729706650877 +36591,182.95499999986987,-0.06860729738937703 +36592,182.95999999986986,-0.0686072977122229 +36593,182.96499999986986,-0.0686072980350464 +36594,182.96999999986986,-0.0686072983578475 +36595,182.97499999986985,-0.06860729868062622 +36596,182.97999999986985,-0.06860729900338255 +36597,182.98499999986984,-0.06860729932611649 +36598,182.98999999986984,-0.06860729964882804 +36599,182.99499999986983,-0.06860729997151721 +36600,182.99999999986983,-0.06860730029418399 +36601,183.00499999986982,-0.06860730061682839 +36602,183.00999999986982,-0.06860730093945039 +36603,183.01499999986981,-0.06860730126205 +36604,183.0199999998698,-0.06860730158462723 +36605,183.0249999998698,-0.06860730190718206 +36606,183.0299999998698,-0.0686073022297145 +36607,183.0349999998698,-0.06860730255222455 +36608,183.0399999998698,-0.06860730287471221 +36609,183.0449999998698,-0.06860730319717749 +36610,183.04999999986978,-0.06860730351962037 +36611,183.05499999986978,-0.06860730384204086 +36612,183.05999999986977,-0.06860730416443896 +36613,183.06499999986977,-0.06860730448681467 +36614,183.06999999986976,-0.06860730480916799 +36615,183.07499999986976,-0.0686073051314989 +36616,183.07999999986976,-0.06860730545380744 +36617,183.08499999986975,-0.06860730577609359 +36618,183.08999999986975,-0.06860730609835733 +36619,183.09499999986974,-0.06860730642059867 +36620,183.09999999986974,-0.06860730674281765 +36621,183.10499999986973,-0.06860730706501421 +36622,183.10999999986973,-0.06860730738718838 +36623,183.11499999986972,-0.06860730770934016 +36624,183.11999999986972,-0.06860730803146954 +36625,183.12499999986971,-0.06860730835357653 +36626,183.1299999998697,-0.06860730867566112 +36627,183.1349999998697,-0.06860730899772333 +36628,183.1399999998697,-0.06860730931976314 +36629,183.1449999998697,-0.06860730964178054 +36630,183.1499999998697,-0.06860730996377555 +36631,183.1549999998697,-0.06860731028574817 +36632,183.15999999986968,-0.0686073106076984 +36633,183.16499999986968,-0.06860731092962621 +36634,183.16999999986967,-0.06860731125153165 +36635,183.17499999986967,-0.06860731157341467 +36636,183.17999999986966,-0.06860731189527529 +36637,183.18499999986966,-0.06860731221711351 +36638,183.18999999986966,-0.06860731253892935 +36639,183.19499999986965,-0.06860731286072279 +36640,183.19999999986965,-0.06860731318249383 +36641,183.20499999986964,-0.06860731350424247 +36642,183.20999999986964,-0.06860731382596871 +36643,183.21499999986963,-0.06860731414767256 +36644,183.21999999986963,-0.068607314469354 +36645,183.22499999986962,-0.06860731479101304 +36646,183.22999999986962,-0.06860731511264968 +36647,183.23499999986961,-0.06860731543426393 +36648,183.2399999998696,-0.06860731575585577 +36649,183.2449999998696,-0.0686073160774252 +36650,183.2499999998696,-0.06860731639897225 +36651,183.2549999998696,-0.06860731672049689 +36652,183.2599999998696,-0.06860731704199913 +36653,183.2649999998696,-0.06860731736347896 +36654,183.26999999986958,-0.06860731768493639 +36655,183.27499999986958,-0.06860731800637143 +36656,183.27999999986957,-0.06860731832778406 +36657,183.28499999986957,-0.06860731864917428 +36658,183.28999999986956,-0.0686073189705421 +36659,183.29499999986956,-0.06860731929188754 +36660,183.29999999986956,-0.06860731961321057 +36661,183.30499999986955,-0.06860731993451118 +36662,183.30999999986955,-0.06860732025578939 +36663,183.31499999986954,-0.0686073205770452 +36664,183.31999999986954,-0.0686073208982786 +36665,183.32499999986953,-0.0686073212194896 +36666,183.32999999986953,-0.0686073215406782 +36667,183.33499999986952,-0.0686073218618444 +36668,183.33999999986952,-0.06860732218298819 +36669,183.34499999986951,-0.06860732250410957 +36670,183.3499999998695,-0.06860732282520855 +36671,183.3549999998695,-0.06860732314628512 +36672,183.3599999998695,-0.0686073234673393 +36673,183.3649999998695,-0.06860732378837106 +36674,183.3699999998695,-0.06860732410938042 +36675,183.3749999998695,-0.06860732443036736 +36676,183.37999999986948,-0.0686073247513319 +36677,183.38499999986948,-0.06860732507227404 +36678,183.38999999986947,-0.06860732539319377 +36679,183.39499999986947,-0.06860732571409109 +36680,183.39999999986946,-0.06860732603496601 +36681,183.40499999986946,-0.06860732635581851 +36682,183.40999999986946,-0.06860732667664861 +36683,183.41499999986945,-0.0686073269974563 +36684,183.41999999986945,-0.06860732731824158 +36685,183.42499999986944,-0.06860732763900446 +36686,183.42999999986944,-0.06860732795974492 +36687,183.43499999986943,-0.06860732828046298 +36688,183.43999999986943,-0.06860732860115863 +36689,183.44499999986942,-0.06860732892183187 +36690,183.44999999986942,-0.0686073292424827 +36691,183.45499999986941,-0.06860732956311111 +36692,183.4599999998694,-0.06860732988371712 +36693,183.4649999998694,-0.06860733020430071 +36694,183.4699999998694,-0.0686073305248619 +36695,183.4749999998694,-0.06860733084540067 +36696,183.4799999998694,-0.06860733116591704 +36697,183.4849999998694,-0.06860733148641099 +36698,183.48999999986938,-0.06860733180688253 +36699,183.49499999986938,-0.06860733212733167 +36700,183.49999999986937,-0.06860733244775838 +36701,183.50499999986937,-0.0686073327681627 +36702,183.50999999986936,-0.0686073330885446 +36703,183.51499999986936,-0.06860733340890408 +36704,183.51999999986936,-0.06860733372924116 +36705,183.52499999986935,-0.06860733404955582 +36706,183.52999999986935,-0.06860733436984806 +36707,183.53499999986934,-0.0686073346901179 +36708,183.53999999986934,-0.06860733501036533 +36709,183.54499999986933,-0.06860733533059034 +36710,183.54999999986933,-0.06860733565079292 +36711,183.55499999986932,-0.0686073359709731 +36712,183.55999999986932,-0.06860733629113086 +36713,183.56499999986931,-0.06860733661126622 +36714,183.5699999998693,-0.06860733693137917 +36715,183.5749999998693,-0.06860733725146968 +36716,183.5799999998693,-0.0686073375715378 +36717,183.5849999998693,-0.0686073378915835 +36718,183.5899999998693,-0.06860733821160678 +36719,183.5949999998693,-0.06860733853160764 +36720,183.59999999986928,-0.0686073388515861 +36721,183.60499999986928,-0.06860733917154212 +36722,183.60999999986927,-0.06860733949147574 +36723,183.61499999986927,-0.06860733981138695 +36724,183.61999999986926,-0.06860734013127573 +36725,183.62499999986926,-0.06860734045114211 +36726,183.62999999986926,-0.06860734077098606 +36727,183.63499999986925,-0.0686073410908076 +36728,183.63999999986925,-0.0686073414106067 +36729,183.64499999986924,-0.06860734173038341 +36730,183.64999999986924,-0.0686073420501377 +36731,183.65499999986923,-0.06860734236986957 +36732,183.65999999986923,-0.06860734268957903 +36733,183.66499999986922,-0.06860734300926606 +36734,183.66999999986922,-0.06860734332893069 +36735,183.67499999986921,-0.06860734364857288 +36736,183.6799999998692,-0.06860734396819265 +36737,183.6849999998692,-0.06860734428779001 +36738,183.6899999998692,-0.06860734460736495 +36739,183.6949999998692,-0.06860734492691747 +36740,183.6999999998692,-0.06860734524644758 +36741,183.7049999998692,-0.06860734556595527 +36742,183.70999999986918,-0.06860734588544054 +36743,183.71499999986918,-0.06860734620490339 +36744,183.71999999986917,-0.06860734652434382 +36745,183.72499999986917,-0.06860734684376182 +36746,183.72999999986916,-0.0686073471631574 +36747,183.73499999986916,-0.06860734748253057 +36748,183.73999999986916,-0.06860734780188132 +36749,183.74499999986915,-0.06860734812120964 +36750,183.74999999986915,-0.06860734844051555 +36751,183.75499999986914,-0.06860734875979904 +36752,183.75999999986914,-0.0686073490790601 +36753,183.76499999986913,-0.06860734939829874 +36754,183.76999999986913,-0.06860734971751496 +36755,183.77499999986912,-0.06860735003670877 +36756,183.77999999986912,-0.06860735035588014 +36757,183.78499999986911,-0.0686073506750291 +36758,183.7899999998691,-0.06860735099415564 +36759,183.7949999998691,-0.06860735131325976 +36760,183.7999999998691,-0.06860735163234145 +36761,183.8049999998691,-0.06860735195140072 +36762,183.8099999998691,-0.06860735227043756 +36763,183.8149999998691,-0.06860735258945198 +36764,183.81999999986908,-0.06860735290844397 +36765,183.82499999986908,-0.06860735322741356 +36766,183.82999999986907,-0.06860735354636072 +36767,183.83499999986907,-0.06860735386528545 +36768,183.83999999986906,-0.06860735418418776 +36769,183.84499999986906,-0.06860735450306764 +36770,183.84999999986906,-0.0686073548219251 +36771,183.85499999986905,-0.06860735514076013 +36772,183.85999999986905,-0.06860735545957275 +36773,183.86499999986904,-0.06860735577836292 +36774,183.86999999986904,-0.06860735609713069 +36775,183.87499999986903,-0.06860735641587602 +36776,183.87999999986903,-0.06860735673459895 +36777,183.88499999986902,-0.06860735705329943 +36778,183.88999999986902,-0.06860735737197748 +36779,183.89499999986901,-0.06860735769063313 +36780,183.899999999869,-0.06860735800926633 +36781,183.904999999869,-0.06860735832787712 +36782,183.909999999869,-0.06860735864646549 +36783,183.914999999869,-0.06860735896503142 +36784,183.919999999869,-0.06860735928357493 +36785,183.924999999869,-0.06860735960209603 +36786,183.92999999986898,-0.06860735992059469 +36787,183.93499999986898,-0.06860736023907094 +36788,183.93999999986897,-0.06860736055752473 +36789,183.94499999986897,-0.0686073608759561 +36790,183.94999999986896,-0.06860736119436506 +36791,183.95499999986896,-0.06860736151275158 +36792,183.95999999986896,-0.06860736183111568 +36793,183.96499999986895,-0.06860736214945735 +36794,183.96999999986895,-0.06860736246777661 +36795,183.97499999986894,-0.06860736278607342 +36796,183.97999999986894,-0.06860736310434781 +36797,183.98499999986893,-0.06860736342259978 +36798,183.98999999986893,-0.06860736374082932 +36799,183.99499999986892,-0.06860736405903643 +36800,183.99999999986892,-0.0686073643772211 +36801,184.00499999986891,-0.06860736469538335 +36802,184.0099999998689,-0.06860736501352319 +36803,184.0149999998689,-0.06860736533164058 +36804,184.0199999998689,-0.06860736564973555 +36805,184.0249999998689,-0.06860736596780807 +36806,184.0299999998689,-0.06860736628585819 +36807,184.0349999998689,-0.06860736660388586 +36808,184.03999999986888,-0.06860736692189111 +36809,184.04499999986888,-0.06860736723987394 +36810,184.04999999986887,-0.06860736755783434 +36811,184.05499999986887,-0.0686073678757723 +36812,184.05999999986886,-0.06860736819368783 +36813,184.06499999986886,-0.06860736851158095 +36814,184.06999999986886,-0.06860736882945162 +36815,184.07499999986885,-0.06860736914729987 +36816,184.07999999986885,-0.06860736946512568 +36817,184.08499999986884,-0.06860736978292906 +36818,184.08999999986884,-0.06860737010071001 +36819,184.09499999986883,-0.06860737041846854 +36820,184.09999999986883,-0.06860737073620463 +36821,184.10499999986882,-0.06860737105391829 +36822,184.10999999986882,-0.06860737137160952 +36823,184.11499999986881,-0.06860737168927833 +36824,184.1199999998688,-0.0686073720069247 +36825,184.1249999998688,-0.06860737232454864 +36826,184.1299999998688,-0.06860737264215014 +36827,184.1349999998688,-0.06860737295972923 +36828,184.1399999998688,-0.06860737327728586 +36829,184.1449999998688,-0.06860737359482008 +36830,184.14999999986878,-0.06860737391233185 +36831,184.15499999986878,-0.0686073742298212 +36832,184.15999999986877,-0.06860737454728812 +36833,184.16499999986877,-0.0686073748647326 +36834,184.16999999986876,-0.06860737518215465 +36835,184.17499999986876,-0.06860737549955429 +36836,184.17999999986876,-0.06860737581693147 +36837,184.18499999986875,-0.06860737613428623 +36838,184.18999999986875,-0.06860737645161855 +36839,184.19499999986874,-0.06860737676892845 +36840,184.19999999986874,-0.0686073770862159 +36841,184.20499999986873,-0.06860737740348094 +36842,184.20999999986873,-0.06860737772072353 +36843,184.21499999986872,-0.06860737803794369 +36844,184.21999999986872,-0.06860737835514143 +36845,184.22499999986871,-0.06860737867231671 +36846,184.2299999998687,-0.06860737898946959 +36847,184.2349999998687,-0.0686073793066 +36848,184.2399999998687,-0.068607379623708 +36849,184.2449999998687,-0.06860737994079356 +36850,184.2499999998687,-0.06860738025785669 +36851,184.2549999998687,-0.06860738057489739 +36852,184.25999999986868,-0.06860738089191565 +36853,184.26499999986868,-0.06860738120891148 +36854,184.26999999986867,-0.06860738152588487 +36855,184.27499999986867,-0.06860738184283584 +36856,184.27999999986866,-0.06860738215976436 +36857,184.28499999986866,-0.06860738247667045 +36858,184.28999999986866,-0.0686073827935541 +36859,184.29499999986865,-0.06860738311041532 +36860,184.29999999986865,-0.0686073834272541 +36861,184.30499999986864,-0.06860738374407047 +36862,184.30999999986864,-0.06860738406086438 +36863,184.31499999986863,-0.06860738437763586 +36864,184.31999999986863,-0.0686073846943849 +36865,184.32499999986862,-0.06860738501111152 +36866,184.32999999986862,-0.0686073853278157 +36867,184.33499999986861,-0.06860738564449743 +36868,184.3399999998686,-0.06860738596115674 +36869,184.3449999998686,-0.06860738627779361 +36870,184.3499999998686,-0.06860738659440804 +36871,184.3549999998686,-0.06860738691100003 +36872,184.3599999998686,-0.06860738722756961 +36873,184.3649999998686,-0.06860738754411673 +36874,184.36999999986858,-0.06860738786064143 +36875,184.37499999986858,-0.06860738817714368 +36876,184.37999999986857,-0.0686073884936235 +36877,184.38499999986857,-0.06860738881008088 +36878,184.38999999986856,-0.06860738912651583 +36879,184.39499999986856,-0.06860738944292834 +36880,184.39999999986856,-0.0686073897593184 +36881,184.40499999986855,-0.06860739007568604 +36882,184.40999999986855,-0.06860739039203125 +36883,184.41499999986854,-0.06860739070835402 +36884,184.41999999986854,-0.06860739102465435 +36885,184.42499999986853,-0.06860739134093224 +36886,184.42999999986853,-0.0686073916571877 +36887,184.43499999986852,-0.06860739197342071 +36888,184.43999999986852,-0.0686073922896313 +36889,184.44499999986851,-0.06860739260581944 +36890,184.4499999998685,-0.06860739292198516 +36891,184.4549999998685,-0.06860739323812842 +36892,184.4599999998685,-0.06860739355424926 +36893,184.4649999998685,-0.06860739387034766 +36894,184.4699999998685,-0.0686073941864236 +36895,184.4749999998685,-0.06860739450247712 +36896,184.47999999986848,-0.0686073948185082 +36897,184.48499999986848,-0.06860739513451686 +36898,184.48999999986847,-0.06860739545050307 +36899,184.49499999986847,-0.06860739576646684 +36900,184.49999999986846,-0.06860739608240818 +36901,184.50499999986846,-0.06860739639832707 +36902,184.50999999986846,-0.06860739671422353 +36903,184.51499999986845,-0.06860739703009755 +36904,184.51999999986845,-0.06860739734594913 +36905,184.52499999986844,-0.06860739766177827 +36906,184.52999999986844,-0.06860739797758497 +36907,184.53499999986843,-0.06860739829336923 +36908,184.53999999986843,-0.06860739860913105 +36909,184.54499999986842,-0.06860739892487044 +36910,184.54999999986842,-0.06860739924058738 +36911,184.55499999986841,-0.0686073995562819 +36912,184.5599999998684,-0.06860739987195397 +36913,184.5649999998684,-0.0686074001876036 +36914,184.5699999998684,-0.06860740050323079 +36915,184.5749999998684,-0.06860740081883555 +36916,184.5799999998684,-0.06860740113441788 +36917,184.5849999998684,-0.06860740144997776 +36918,184.58999999986838,-0.06860740176551519 +36919,184.59499999986838,-0.06860740208103021 +36920,184.59999999986837,-0.06860740239652276 +36921,184.60499999986837,-0.06860740271199288 +36922,184.60999999986836,-0.06860740302744057 +36923,184.61499999986836,-0.06860740334286582 +36924,184.61999999986836,-0.0686074036582686 +36925,184.62499999986835,-0.06860740397364899 +36926,184.62999999986835,-0.06860740428900691 +36927,184.63499999986834,-0.06860740460434239 +36928,184.63999999986834,-0.06860740491965543 +36929,184.64499999986833,-0.06860740523494605 +36930,184.64999999986833,-0.06860740555021422 +36931,184.65499999986832,-0.06860740586545994 +36932,184.65999999986832,-0.06860740618068323 +36933,184.66499999986831,-0.06860740649588408 +36934,184.6699999998683,-0.06860740681106249 +36935,184.6749999998683,-0.06860740712621846 +36936,184.6799999998683,-0.06860740744135199 +36937,184.6849999998683,-0.0686074077564631 +36938,184.6899999998683,-0.06860740807155175 +36939,184.6949999998683,-0.06860740838661797 +36940,184.69999999986828,-0.06860740870166174 +36941,184.70499999986828,-0.06860740901668308 +36942,184.70999999986827,-0.06860740933168198 +36943,184.71499999986827,-0.06860740964665843 +36944,184.71999999986826,-0.06860740996161244 +36945,184.72499999986826,-0.068607410276544 +36946,184.72999999986826,-0.06860741059145313 +36947,184.73499999986825,-0.06860741090633983 +36948,184.73999999986825,-0.06860741122120408 +36949,184.74499999986824,-0.0686074115360459 +36950,184.74999999986824,-0.06860741185086526 +36951,184.75499999986823,-0.0686074121656622 +36952,184.75999999986823,-0.0686074124804367 +36953,184.76499999986822,-0.06860741279518875 +36954,184.76999999986822,-0.06860741310991836 +36955,184.77499999986821,-0.06860741342462552 +36956,184.7799999998682,-0.06860741373931024 +36957,184.7849999998682,-0.06860741405397254 +36958,184.7899999998682,-0.06860741436861238 +36959,184.7949999998682,-0.0686074146832298 +36960,184.7999999998682,-0.06860741499782476 +36961,184.8049999998682,-0.0686074153123973 +36962,184.80999999986818,-0.06860741562694739 +36963,184.81499999986818,-0.06860741594147503 +36964,184.81999999986817,-0.06860741625598023 +36965,184.82499999986817,-0.06860741657046299 +36966,184.82999999986816,-0.0686074168849233 +36967,184.83499999986816,-0.0686074171993612 +36968,184.83999999986816,-0.06860741751377664 +36969,184.84499999986815,-0.06860741782816965 +36970,184.84999999986815,-0.0686074181425402 +36971,184.85499999986814,-0.06860741845688831 +36972,184.85999999986814,-0.06860741877121398 +36973,184.86499999986813,-0.06860741908551722 +36974,184.86999999986813,-0.06860741939979802 +36975,184.87499999986812,-0.06860741971405637 +36976,184.87999999986812,-0.0686074200282923 +36977,184.8849999998681,-0.06860742034250578 +36978,184.8899999998681,-0.06860742065669681 +36979,184.8949999998681,-0.06860742097086539 +36980,184.8999999998681,-0.06860742128501154 +36981,184.9049999998681,-0.06860742159913526 +36982,184.9099999998681,-0.06860742191323653 +36983,184.9149999998681,-0.06860742222731535 +36984,184.91999999986808,-0.06860742254137175 +36985,184.92499999986808,-0.06860742285540569 +36986,184.92999999986807,-0.06860742316941719 +36987,184.93499999986807,-0.06860742348340625 +36988,184.93999999986806,-0.06860742379737288 +36989,184.94499999986806,-0.06860742411131707 +36990,184.94999999986806,-0.0686074244252388 +36991,184.95499999986805,-0.0686074247391381 +36992,184.95999999986805,-0.06860742505301495 +36993,184.96499999986804,-0.06860742536686937 +36994,184.96999999986804,-0.06860742568070134 +36995,184.97499999986803,-0.06860742599451088 +36996,184.97999999986803,-0.06860742630829797 +36997,184.98499999986802,-0.06860742662206262 +36998,184.98999999986802,-0.06860742693580482 +36999,184.994999999868,-0.0686074272495246 +37000,184.999999999868,-0.06860742756322193 +37001,185.004999999868,-0.0686074278768968 +37002,185.009999999868,-0.06860742819054926 +37003,185.014999999868,-0.06860742850417927 +37004,185.019999999868,-0.06860742881778682 +37005,185.024999999868,-0.06860742913137195 +37006,185.02999999986798,-0.06860742944493463 +37007,185.03499999986798,-0.06860742975847486 +37008,185.03999999986797,-0.06860743007199267 +37009,185.04499999986797,-0.06860743038548803 +37010,185.04999999986796,-0.06860743069896094 +37011,185.05499999986796,-0.06860743101241142 +37012,185.05999999986796,-0.06860743132583945 +37013,185.06499999986795,-0.06860743163924504 +37014,185.06999999986795,-0.0686074319526282 +37015,185.07499999986794,-0.06860743226598891 +37016,185.07999999986794,-0.06860743257932717 +37017,185.08499999986793,-0.068607432892643 +37018,185.08999999986793,-0.06860743320593637 +37019,185.09499999986792,-0.06860743351920733 +37020,185.09999999986792,-0.06860743383245582 +37021,185.1049999998679,-0.06860743414568189 +37022,185.1099999998679,-0.06860743445888551 +37023,185.1149999998679,-0.06860743477206668 +37024,185.1199999998679,-0.06860743508522542 +37025,185.1249999998679,-0.06860743539836171 +37026,185.1299999998679,-0.06860743571147558 +37027,185.1349999998679,-0.068607436024567 +37028,185.13999999986788,-0.06860743633763598 +37029,185.14499999986788,-0.0686074366506825 +37030,185.14999999986787,-0.0686074369637066 +37031,185.15499999986787,-0.06860743727670825 +37032,185.15999999986786,-0.06860743758968744 +37033,185.16499999986786,-0.06860743790264422 +37034,185.16999999986785,-0.06860743821557856 +37035,185.17499999986785,-0.06860743852849045 +37036,185.17999999986785,-0.06860743884137989 +37037,185.18499999986784,-0.06860743915424689 +37038,185.18999999986784,-0.06860743946709146 +37039,185.19499999986783,-0.06860743977991358 +37040,185.19999999986783,-0.06860744009271326 +37041,185.20499999986782,-0.06860744040549051 +37042,185.20999999986782,-0.06860744071824532 +37043,185.2149999998678,-0.06860744103097767 +37044,185.2199999998678,-0.06860744134368758 +37045,185.2249999998678,-0.06860744165637506 +37046,185.2299999998678,-0.0686074419690401 +37047,185.2349999998678,-0.0686074422816827 +37048,185.2399999998678,-0.06860744259430285 +37049,185.2449999998678,-0.06860744290690057 +37050,185.24999999986778,-0.06860744321947586 +37051,185.25499999986778,-0.06860744353202869 +37052,185.25999999986777,-0.06860744384455908 +37053,185.26499999986777,-0.06860744415706703 +37054,185.26999999986776,-0.06860744446955254 +37055,185.27499999986776,-0.06860744478201561 +37056,185.27999999986775,-0.06860744509445624 +37057,185.28499999986775,-0.06860744540687444 +37058,185.28999999986775,-0.06860744571927019 +37059,185.29499999986774,-0.06860744603164351 +37060,185.29999999986774,-0.06860744634399439 +37061,185.30499999986773,-0.0686074466563228 +37062,185.30999999986773,-0.06860744696862879 +37063,185.31499999986772,-0.06860744728091234 +37064,185.31999999986772,-0.06860744759317344 +37065,185.3249999998677,-0.06860744790541212 +37066,185.3299999998677,-0.06860744821762835 +37067,185.3349999998677,-0.06860744852982213 +37068,185.3399999998677,-0.06860744884199349 +37069,185.3449999998677,-0.06860744915414241 +37070,185.3499999998677,-0.06860744946626887 +37071,185.3549999998677,-0.06860744977837291 +37072,185.35999999986768,-0.06860745009045449 +37073,185.36499999986768,-0.06860745040251365 +37074,185.36999999986767,-0.06860745071455035 +37075,185.37499999986767,-0.06860745102656463 +37076,185.37999999986766,-0.06860745133855645 +37077,185.38499999986766,-0.06860745165052583 +37078,185.38999999986765,-0.06860745196247278 +37079,185.39499999986765,-0.0686074522743973 +37080,185.39999999986765,-0.06860745258629936 +37081,185.40499999986764,-0.06860745289817899 +37082,185.40999999986764,-0.06860745321003618 +37083,185.41499999986763,-0.06860745352187093 +37084,185.41999999986763,-0.06860745383368326 +37085,185.42499999986762,-0.06860745414547313 +37086,185.42999999986762,-0.06860745445724056 +37087,185.4349999998676,-0.06860745476898557 +37088,185.4399999998676,-0.06860745508070812 +37089,185.4449999998676,-0.06860745539240824 +37090,185.4499999998676,-0.06860745570408593 +37091,185.4549999998676,-0.06860745601574117 +37092,185.4599999998676,-0.06860745632737397 +37093,185.4649999998676,-0.06860745663898433 +37094,185.46999999986758,-0.06860745695057226 +37095,185.47499999986758,-0.06860745726213774 +37096,185.47999999986757,-0.0686074575736808 +37097,185.48499999986757,-0.0686074578852014 +37098,185.48999999986756,-0.06860745819669957 +37099,185.49499999986756,-0.0686074585081753 +37100,185.49999999986755,-0.0686074588196286 +37101,185.50499999986755,-0.06860745913105945 +37102,185.50999999986755,-0.06860745944246786 +37103,185.51499999986754,-0.06860745975385384 +37104,185.51999999986754,-0.06860746006521737 +37105,185.52499999986753,-0.06860746037655846 +37106,185.52999999986753,-0.06860746068787713 +37107,185.53499999986752,-0.06860746099917334 +37108,185.53999999986752,-0.06860746131044713 +37109,185.5449999998675,-0.06860746162169849 +37110,185.5499999998675,-0.06860746193292741 +37111,185.5549999998675,-0.06860746224413389 +37112,185.5599999998675,-0.06860746255531792 +37113,185.5649999998675,-0.06860746286647952 +37114,185.5699999998675,-0.06860746317761869 +37115,185.5749999998675,-0.0686074634887354 +37116,185.57999999986748,-0.0686074637998297 +37117,185.58499999986748,-0.06860746411090153 +37118,185.58999999986747,-0.06860746442195094 +37119,185.59499999986747,-0.06860746473297791 +37120,185.59999999986746,-0.06860746504398245 +37121,185.60499999986746,-0.06860746535496455 +37122,185.60999999986745,-0.06860746566592421 +37123,185.61499999986745,-0.06860746597686143 +37124,185.61999999986745,-0.06860746628777623 +37125,185.62499999986744,-0.06860746659866857 +37126,185.62999999986744,-0.06860746690953848 +37127,185.63499999986743,-0.06860746722038594 +37128,185.63999999986743,-0.06860746753121098 +37129,185.64499999986742,-0.06860746784201359 +37130,185.64999999986742,-0.06860746815279375 +37131,185.6549999998674,-0.06860746846355148 +37132,185.6599999998674,-0.06860746877428678 +37133,185.6649999998674,-0.06860746908499962 +37134,185.6699999998674,-0.06860746939569005 +37135,185.6749999998674,-0.06860746970635803 +37136,185.6799999998674,-0.06860747001700358 +37137,185.6849999998674,-0.0686074703276267 +37138,185.68999999986738,-0.06860747063822736 +37139,185.69499999986738,-0.06860747094880562 +37140,185.69999999986737,-0.06860747125936142 +37141,185.70499999986737,-0.06860747156989479 +37142,185.70999999986736,-0.06860747188040571 +37143,185.71499999986736,-0.06860747219089422 +37144,185.71999999986735,-0.06860747250136028 +37145,185.72499999986735,-0.0686074728118039 +37146,185.72999999986735,-0.0686074731222251 +37147,185.73499999986734,-0.06860747343262386 +37148,185.73999999986734,-0.06860747374300018 +37149,185.74499999986733,-0.06860747405335406 +37150,185.74999999986733,-0.0686074743636855 +37151,185.75499999986732,-0.06860747467399451 +37152,185.75999999986732,-0.0686074749842811 +37153,185.7649999998673,-0.06860747529454524 +37154,185.7699999998673,-0.06860747560478696 +37155,185.7749999998673,-0.06860747591500624 +37156,185.7799999998673,-0.06860747622520308 +37157,185.7849999998673,-0.06860747653537749 +37158,185.7899999998673,-0.06860747684552947 +37159,185.7949999998673,-0.068607477155659 +37160,185.79999999986728,-0.0686074774657661 +37161,185.80499999986728,-0.06860747777585079 +37162,185.80999999986727,-0.06860747808591301 +37163,185.81499999986727,-0.06860747839595283 +37164,185.81999999986726,-0.0686074787059702 +37165,185.82499999986726,-0.06860747901596513 +37166,185.82999999986725,-0.06860747932593764 +37167,185.83499999986725,-0.0686074796358877 +37168,185.83999999986725,-0.06860747994581534 +37169,185.84499999986724,-0.06860748025572054 +37170,185.84999999986724,-0.06860748056560331 +37171,185.85499999986723,-0.06860748087546366 +37172,185.85999999986723,-0.06860748118530155 +37173,185.86499999986722,-0.06860748149511703 +37174,185.86999999986722,-0.06860748180491007 +37175,185.8749999998672,-0.06860748211468068 +37176,185.8799999998672,-0.06860748242442885 +37177,185.8849999998672,-0.06860748273415458 +37178,185.8899999998672,-0.0686074830438579 +37179,185.8949999998672,-0.06860748335353876 +37180,185.8999999998672,-0.06860748366319722 +37181,185.9049999998672,-0.06860748397283323 +37182,185.90999999986718,-0.06860748428244681 +37183,185.91499999986718,-0.06860748459203796 +37184,185.91999999986717,-0.06860748490160667 +37185,185.92499999986717,-0.06860748521115295 +37186,185.92999999986716,-0.0686074855206768 +37187,185.93499999986716,-0.06860748583017824 +37188,185.93999999986715,-0.06860748613965723 +37189,185.94499999986715,-0.0686074864491138 +37190,185.94999999986715,-0.06860748675854793 +37191,185.95499999986714,-0.06860748706795963 +37192,185.95999999986714,-0.0686074873773489 +37193,185.96499999986713,-0.06860748768671573 +37194,185.96999999986713,-0.06860748799606013 +37195,185.97499999986712,-0.0686074883053821 +37196,185.97999999986712,-0.06860748861468166 +37197,185.9849999998671,-0.06860748892395876 +37198,185.9899999998671,-0.06860748923321346 +37199,185.9949999998671,-0.06860748954244571 +37200,185.9999999998671,-0.06860748985165553 +37201,186.0049999998671,-0.06860749016084293 +37202,186.0099999998671,-0.06860749047000789 +37203,186.0149999998671,-0.06860749077915043 +37204,186.01999999986708,-0.06860749108827054 +37205,186.02499999986708,-0.06860749139736821 +37206,186.02999999986707,-0.06860749170644345 +37207,186.03499999986707,-0.06860749201549628 +37208,186.03999999986706,-0.06860749232452666 +37209,186.04499999986706,-0.06860749263353462 +37210,186.04999999986705,-0.06860749294252015 +37211,186.05499999986705,-0.06860749325148327 +37212,186.05999999986705,-0.06860749356042393 +37213,186.06499999986704,-0.06860749386934217 +37214,186.06999999986704,-0.068607494178238 +37215,186.07499999986703,-0.0686074944871114 +37216,186.07999999986703,-0.06860749479596236 +37217,186.08499999986702,-0.06860749510479089 +37218,186.08999999986702,-0.068607495413597 +37219,186.094999999867,-0.06860749572238067 +37220,186.099999999867,-0.06860749603114193 +37221,186.104999999867,-0.06860749633988074 +37222,186.109999999867,-0.06860749664859714 +37223,186.114999999867,-0.06860749695729111 +37224,186.119999999867,-0.06860749726596264 +37225,186.124999999867,-0.06860749757461178 +37226,186.12999999986698,-0.06860749788323846 +37227,186.13499999986698,-0.06860749819184271 +37228,186.13999999986697,-0.06860749850042454 +37229,186.14499999986697,-0.06860749880898395 +37230,186.14999999986696,-0.06860749911752093 +37231,186.15499999986696,-0.06860749942603549 +37232,186.15999999986695,-0.06860749973452762 +37233,186.16499999986695,-0.06860750004299733 +37234,186.16999999986695,-0.06860750035144461 +37235,186.17499999986694,-0.06860750065986948 +37236,186.17999999986694,-0.06860750096827191 +37237,186.18499999986693,-0.0686075012766519 +37238,186.18999999986693,-0.06860750158500947 +37239,186.19499999986692,-0.06860750189334464 +37240,186.19999999986692,-0.06860750220165736 +37241,186.2049999998669,-0.06860750250994765 +37242,186.2099999998669,-0.06860750281821554 +37243,186.2149999998669,-0.06860750312646098 +37244,186.2199999998669,-0.06860750343468403 +37245,186.2249999998669,-0.06860750374288463 +37246,186.2299999998669,-0.06860750405106282 +37247,186.2349999998669,-0.06860750435921859 +37248,186.23999999986688,-0.06860750466735192 +37249,186.24499999986688,-0.06860750497546284 +37250,186.24999999986687,-0.06860750528355132 +37251,186.25499999986687,-0.06860750559161738 +37252,186.25999999986686,-0.06860750589966103 +37253,186.26499999986686,-0.06860750620768223 +37254,186.26999999986685,-0.06860750651568102 +37255,186.27499999986685,-0.06860750682365739 +37256,186.27999999986685,-0.06860750713161134 +37257,186.28499999986684,-0.06860750743954287 +37258,186.28999999986684,-0.06860750774745197 +37259,186.29499999986683,-0.06860750805533866 +37260,186.29999999986683,-0.06860750836320291 +37261,186.30499999986682,-0.06860750867104475 +37262,186.30999999986682,-0.06860750897886417 +37263,186.3149999998668,-0.06860750928666115 +37264,186.3199999998668,-0.06860750959443573 +37265,186.3249999998668,-0.06860750990218788 +37266,186.3299999998668,-0.06860751020991761 +37267,186.3349999998668,-0.06860751051762491 +37268,186.3399999998668,-0.0686075108253098 +37269,186.3449999998668,-0.06860751113297227 +37270,186.34999999986678,-0.06860751144061232 +37271,186.35499999986678,-0.06860751174822995 +37272,186.35999999986677,-0.06860751205582515 +37273,186.36499999986677,-0.06860751236339793 +37274,186.36999999986676,-0.06860751267094829 +37275,186.37499999986676,-0.06860751297847624 +37276,186.37999999986675,-0.06860751328598177 +37277,186.38499999986675,-0.06860751359346487 +37278,186.38999999986675,-0.06860751390092555 +37279,186.39499999986674,-0.06860751420836382 +37280,186.39999999986674,-0.06860751451577968 +37281,186.40499999986673,-0.06860751482317311 +37282,186.40999999986673,-0.06860751513054411 +37283,186.41499999986672,-0.06860751543789272 +37284,186.41999999986672,-0.0686075157452189 +37285,186.4249999998667,-0.06860751605252265 +37286,186.4299999998667,-0.06860751635980399 +37287,186.4349999998667,-0.0686075166670629 +37288,186.4399999998667,-0.0686075169742994 +37289,186.4449999998667,-0.06860751728151349 +37290,186.4499999998667,-0.06860751758870515 +37291,186.4549999998667,-0.06860751789587441 +37292,186.45999999986668,-0.06860751820302124 +37293,186.46499999986668,-0.06860751851014567 +37294,186.46999999986667,-0.06860751881724766 +37295,186.47499999986667,-0.06860751912432726 +37296,186.47999999986666,-0.06860751943138442 +37297,186.48499999986666,-0.06860751973841918 +37298,186.48999999986665,-0.0686075200454315 +37299,186.49499999986665,-0.06860752035242142 +37300,186.49999999986665,-0.06860752065938892 +37301,186.50499999986664,-0.068607520966334 +37302,186.50999999986664,-0.06860752127325669 +37303,186.51499999986663,-0.06860752158015694 +37304,186.51999999986663,-0.06860752188703478 +37305,186.52499999986662,-0.0686075221938902 +37306,186.52999999986662,-0.06860752250072322 +37307,186.5349999998666,-0.06860752280753381 +37308,186.5399999998666,-0.068607523114322 +37309,186.5449999998666,-0.06860752342108777 +37310,186.5499999998666,-0.06860752372783112 +37311,186.5549999998666,-0.06860752403455207 +37312,186.5599999998666,-0.0686075243412506 +37313,186.5649999998666,-0.06860752464792672 +37314,186.56999999986658,-0.06860752495458042 +37315,186.57499999986658,-0.06860752526121171 +37316,186.57999999986657,-0.06860752556782057 +37317,186.58499999986657,-0.06860752587440704 +37318,186.58999999986656,-0.06860752618097107 +37319,186.59499999986656,-0.06860752648751271 +37320,186.59999999986655,-0.06860752679403194 +37321,186.60499999986655,-0.06860752710052875 +37322,186.60999999986655,-0.06860752740700317 +37323,186.61499999986654,-0.06860752771345516 +37324,186.61999999986654,-0.06860752801988475 +37325,186.62499999986653,-0.06860752832629191 +37326,186.62999999986653,-0.06860752863267666 +37327,186.63499999986652,-0.068607528939039 +37328,186.63999999986652,-0.06860752924537894 +37329,186.6449999998665,-0.06860752955169647 +37330,186.6499999998665,-0.06860752985799158 +37331,186.6549999998665,-0.06860753016426428 +37332,186.6599999998665,-0.06860753047051457 +37333,186.6649999998665,-0.06860753077674246 +37334,186.6699999998665,-0.06860753108294794 +37335,186.6749999998665,-0.06860753138913102 +37336,186.67999999986648,-0.06860753169529167 +37337,186.68499999986648,-0.06860753200142992 +37338,186.68999999986647,-0.06860753230754575 +37339,186.69499999986647,-0.06860753261363918 +37340,186.69999999986646,-0.0686075329197102 +37341,186.70499999986646,-0.0686075332257588 +37342,186.70999999986645,-0.06860753353178502 +37343,186.71499999986645,-0.06860753383778881 +37344,186.71999999986645,-0.0686075341437702 +37345,186.72499999986644,-0.06860753444972917 +37346,186.72999999986644,-0.06860753475566574 +37347,186.73499999986643,-0.0686075350615799 +37348,186.73999999986643,-0.06860753536747168 +37349,186.74499999986642,-0.06860753567334102 +37350,186.74999999986642,-0.06860753597918798 +37351,186.7549999998664,-0.06860753628501251 +37352,186.7599999998664,-0.06860753659081464 +37353,186.7649999998664,-0.06860753689659436 +37354,186.7699999998664,-0.0686075372023517 +37355,186.7749999998664,-0.06860753750808661 +37356,186.7799999998664,-0.06860753781379911 +37357,186.7849999998664,-0.06860753811948922 +37358,186.78999999986638,-0.06860753842515692 +37359,186.79499999986638,-0.06860753873080222 +37360,186.79999999986637,-0.06860753903642511 +37361,186.80499999986637,-0.06860753934202561 +37362,186.80999999986636,-0.06860753964760369 +37363,186.81499999986636,-0.06860753995315937 +37364,186.81999999986635,-0.06860754025869265 +37365,186.82499999986635,-0.06860754056420351 +37366,186.82999999986635,-0.06860754086969198 +37367,186.83499999986634,-0.06860754117515803 +37368,186.83999999986634,-0.06860754148060169 +37369,186.84499999986633,-0.06860754178602296 +37370,186.84999999986633,-0.06860754209142182 +37371,186.85499999986632,-0.06860754239679828 +37372,186.85999999986632,-0.06860754270215233 +37373,186.8649999998663,-0.06860754300748398 +37374,186.8699999998663,-0.06860754331279323 +37375,186.8749999998663,-0.06860754361808008 +37376,186.8799999998663,-0.06860754392334452 +37377,186.8849999998663,-0.06860754422858656 +37378,186.8899999998663,-0.0686075445338062 +37379,186.8949999998663,-0.06860754483900346 +37380,186.89999999986628,-0.0686075451441783 +37381,186.90499999986628,-0.06860754544933075 +37382,186.90999999986627,-0.06860754575446079 +37383,186.91499999986627,-0.06860754605956844 +37384,186.91999999986626,-0.06860754636465367 +37385,186.92499999986626,-0.06860754666971651 +37386,186.92999999986625,-0.06860754697475696 +37387,186.93499999986625,-0.06860754727977501 +37388,186.93999999986625,-0.06860754758477065 +37389,186.94499999986624,-0.06860754788974391 +37390,186.94999999986624,-0.06860754819469476 +37391,186.95499999986623,-0.06860754849962321 +37392,186.95999999986623,-0.06860754880452927 +37393,186.96499999986622,-0.06860754910941291 +37394,186.96999999986622,-0.06860754941427417 +37395,186.9749999998662,-0.06860754971911304 +37396,186.9799999998662,-0.0686075500239295 +37397,186.9849999998662,-0.06860755032872358 +37398,186.9899999998662,-0.06860755063349525 +37399,186.9949999998662,-0.06860755093824453 +37400,186.9999999998662,-0.06860755124297141 +37401,187.0049999998662,-0.0686075515476759 +37402,187.00999999986618,-0.06860755185235799 +37403,187.01499999986618,-0.06860755215701768 +37404,187.01999999986617,-0.06860755246165498 +37405,187.02499999986617,-0.06860755276626988 +37406,187.02999999986616,-0.06860755307086239 +37407,187.03499999986616,-0.0686075533754325 +37408,187.03999999986615,-0.06860755367998023 +37409,187.04499999986615,-0.06860755398450556 +37410,187.04999999986615,-0.06860755428900848 +37411,187.05499999986614,-0.06860755459348902 +37412,187.05999999986614,-0.06860755489794716 +37413,187.06499999986613,-0.06860755520238293 +37414,187.06999999986613,-0.06860755550679629 +37415,187.07499999986612,-0.06860755581118726 +37416,187.07999999986612,-0.06860755611555583 +37417,187.0849999998661,-0.06860755641990202 +37418,187.0899999998661,-0.0686075567242258 +37419,187.0949999998661,-0.0686075570285272 +37420,187.0999999998661,-0.06860755733280621 +37421,187.1049999998661,-0.06860755763706283 +37422,187.1099999998661,-0.06860755794129705 +37423,187.1149999998661,-0.06860755824550889 +37424,187.11999999986608,-0.06860755854969833 +37425,187.12499999986608,-0.06860755885386538 +37426,187.12999999986607,-0.06860755915801005 +37427,187.13499999986607,-0.06860755946213232 +37428,187.13999999986606,-0.0686075597662322 +37429,187.14499999986606,-0.06860756007030969 +37430,187.14999999986605,-0.0686075603743648 +37431,187.15499999986605,-0.0686075606783975 +37432,187.15999999986605,-0.06860756098240783 +37433,187.16499999986604,-0.06860756128639578 +37434,187.16999999986604,-0.06860756159036133 +37435,187.17499999986603,-0.0686075618943045 +37436,187.17999999986603,-0.06860756219822527 +37437,187.18499999986602,-0.06860756250212366 +37438,187.18999999986602,-0.06860756280599967 +37439,187.194999999866,-0.06860756310985328 +37440,187.199999999866,-0.0686075634136845 +37441,187.204999999866,-0.06860756371749335 +37442,187.209999999866,-0.06860756402127981 +37443,187.214999999866,-0.06860756432504386 +37444,187.219999999866,-0.06860756462878556 +37445,187.224999999866,-0.06860756493250485 +37446,187.22999999986598,-0.06860756523620175 +37447,187.23499999986598,-0.06860756553987628 +37448,187.23999999986597,-0.06860756584352842 +37449,187.24499999986597,-0.06860756614715818 +37450,187.24999999986596,-0.06860756645076556 +37451,187.25499999986596,-0.06860756675435055 +37452,187.25999999986595,-0.06860756705791314 +37453,187.26499999986595,-0.06860756736145336 +37454,187.26999999986595,-0.0686075676649712 +37455,187.27499999986594,-0.06860756796846666 +37456,187.27999999986594,-0.06860756827193973 +37457,187.28499999986593,-0.06860756857539042 +37458,187.28999999986593,-0.06860756887881872 +37459,187.29499999986592,-0.06860756918222466 +37460,187.29999999986592,-0.0686075694856082 +37461,187.3049999998659,-0.06860756978896936 +37462,187.3099999998659,-0.06860757009230814 +37463,187.3149999998659,-0.06860757039562454 +37464,187.3199999998659,-0.06860757069891855 +37465,187.3249999998659,-0.06860757100219018 +37466,187.3299999998659,-0.06860757130543946 +37467,187.3349999998659,-0.06860757160866633 +37468,187.33999999986588,-0.06860757191187083 +37469,187.34499999986588,-0.06860757221505295 +37470,187.34999999986587,-0.06860757251821269 +37471,187.35499999986587,-0.06860757282135005 +37472,187.35999999986586,-0.06860757312446504 +37473,187.36499999986586,-0.06860757342755765 +37474,187.36999999986585,-0.06860757373062787 +37475,187.37499999986585,-0.06860757403367572 +37476,187.37999999986584,-0.0686075743367012 +37477,187.38499999986584,-0.06860757463970428 +37478,187.38999999986584,-0.068607574942685 +37479,187.39499999986583,-0.06860757524564334 +37480,187.39999999986583,-0.06860757554857931 +37481,187.40499999986582,-0.0686075758514929 +37482,187.40999999986582,-0.0686075761543841 +37483,187.4149999998658,-0.06860757645725293 +37484,187.4199999998658,-0.06860757676009939 +37485,187.4249999998658,-0.06860757706292347 +37486,187.4299999998658,-0.06860757736572518 +37487,187.4349999998658,-0.06860757766850452 +37488,187.4399999998658,-0.06860757797126148 +37489,187.4449999998658,-0.06860757827399606 +37490,187.44999999986578,-0.06860757857670828 +37491,187.45499999986578,-0.06860757887939813 +37492,187.45999999986577,-0.06860757918206557 +37493,187.46499999986577,-0.06860757948471068 +37494,187.46999999986576,-0.0686075797873334 +37495,187.47499999986576,-0.06860758008993373 +37496,187.47999999986575,-0.0686075803925117 +37497,187.48499999986575,-0.06860758069506731 +37498,187.48999999986574,-0.06860758099760053 +37499,187.49499999986574,-0.0686075813001114 +37500,187.49999999986574,-0.06860758160259987 +37501,187.50499999986573,-0.068607581905066 +37502,187.50999999986573,-0.06860758220750975 +37503,187.51499999986572,-0.06860758250993113 +37504,187.51999999986572,-0.06860758281233012 +37505,187.5249999998657,-0.06860758311470676 +37506,187.5299999998657,-0.06860758341706102 +37507,187.5349999998657,-0.06860758371939292 +37508,187.5399999998657,-0.06860758402170246 +37509,187.5449999998657,-0.06860758432398961 +37510,187.5499999998657,-0.06860758462625441 +37511,187.5549999998657,-0.06860758492849683 +37512,187.55999999986568,-0.06860758523071689 +37513,187.56499999986568,-0.06860758553291459 +37514,187.56999999986567,-0.06860758583508991 +37515,187.57499999986567,-0.06860758613724287 +37516,187.57999999986566,-0.06860758643937345 +37517,187.58499999986566,-0.06860758674148167 +37518,187.58999999986565,-0.06860758704356752 +37519,187.59499999986565,-0.06860758734563101 +37520,187.59999999986564,-0.06860758764767212 +37521,187.60499999986564,-0.06860758794969088 +37522,187.60999999986564,-0.06860758825168728 +37523,187.61499999986563,-0.06860758855366131 +37524,187.61999999986563,-0.06860758885561297 +37525,187.62499999986562,-0.06860758915754227 +37526,187.62999999986562,-0.0686075894594492 +37527,187.6349999998656,-0.06860758976133377 +37528,187.6399999998656,-0.06860759006319597 +37529,187.6449999998656,-0.06860759036503582 +37530,187.6499999998656,-0.0686075906668533 +37531,187.6549999998656,-0.06860759096864841 +37532,187.6599999998656,-0.06860759127042117 +37533,187.66499999986559,-0.06860759157217156 +37534,187.66999999986558,-0.0686075918738996 +37535,187.67499999986558,-0.06860759217560526 +37536,187.67999999986557,-0.06860759247728858 +37537,187.68499999986557,-0.06860759277894952 +37538,187.68999999986556,-0.06860759308058811 +37539,187.69499999986556,-0.06860759338220435 +37540,187.69999999986555,-0.06860759368379822 +37541,187.70499999986555,-0.06860759398536972 +37542,187.70999999986554,-0.06860759428691887 +37543,187.71499999986554,-0.06860759458844566 +37544,187.71999999986554,-0.0686075948899501 +37545,187.72499999986553,-0.06860759519143217 +37546,187.72999999986553,-0.06860759549289189 +37547,187.73499999986552,-0.06860759579432925 +37548,187.73999999986552,-0.06860759609574424 +37549,187.7449999998655,-0.06860759639713689 +37550,187.7499999998655,-0.06860759669850718 +37551,187.7549999998655,-0.06860759699985511 +37552,187.7599999998655,-0.06860759730118067 +37553,187.7649999998655,-0.06860759760248389 +37554,187.7699999998655,-0.06860759790376476 +37555,187.77499999986549,-0.06860759820502327 +37556,187.77999999986548,-0.06860759850625943 +37557,187.78499999986548,-0.06860759880747322 +37558,187.78999999986547,-0.06860759910866468 +37559,187.79499999986547,-0.06860759940983376 +37560,187.79999999986546,-0.0686075997109805 +37561,187.80499999986546,-0.06860760001210486 +37562,187.80999999986545,-0.06860760031320691 +37563,187.81499999986545,-0.06860760061428658 +37564,187.81999999986544,-0.06860760091534392 +37565,187.82499999986544,-0.06860760121637888 +37566,187.82999999986544,-0.06860760151739151 +37567,187.83499999986543,-0.06860760181838177 +37568,187.83999999986543,-0.06860760211934969 +37569,187.84499999986542,-0.06860760242029523 +37570,187.84999999986542,-0.06860760272121846 +37571,187.8549999998654,-0.06860760302211932 +37572,187.8599999998654,-0.06860760332299784 +37573,187.8649999998654,-0.06860760362385399 +37574,187.8699999998654,-0.06860760392468782 +37575,187.8749999998654,-0.06860760422549927 +37576,187.8799999998654,-0.06860760452628839 +37577,187.88499999986539,-0.06860760482705516 +37578,187.88999999986538,-0.06860760512779958 +37579,187.89499999986538,-0.06860760542852164 +37580,187.89999999986537,-0.06860760572922137 +37581,187.90499999986537,-0.06860760602989874 +37582,187.90999999986536,-0.06860760633055377 +37583,187.91499999986536,-0.06860760663118644 +37584,187.91999999986535,-0.06860760693179678 +37585,187.92499999986535,-0.06860760723238477 +37586,187.92999999986534,-0.06860760753295041 +37587,187.93499999986534,-0.0686076078334937 +37588,187.93999999986534,-0.06860760813401466 +37589,187.94499999986533,-0.06860760843451326 +37590,187.94999999986533,-0.06860760873498951 +37591,187.95499999986532,-0.06860760903544343 +37592,187.95999999986532,-0.06860760933587501 +37593,187.9649999998653,-0.06860760963628423 +37594,187.9699999998653,-0.06860760993667113 +37595,187.9749999998653,-0.06860761023703567 +37596,187.9799999998653,-0.06860761053737786 +37597,187.9849999998653,-0.06860761083769772 +37598,187.9899999998653,-0.06860761113799524 +37599,187.99499999986529,-0.06860761143827042 +37600,187.99999999986528,-0.06860761173852324 +37601,188.00499999986528,-0.06860761203875375 +37602,188.00999999986527,-0.0686076123389619 +37603,188.01499999986527,-0.0686076126391477 +37604,188.01999999986526,-0.06860761293931118 +37605,188.02499999986526,-0.0686076132394523 +37606,188.02999999986525,-0.06860761353957111 +37607,188.03499999986525,-0.06860761383966757 +37608,188.03999999986524,-0.06860761413974167 +37609,188.04499999986524,-0.06860761443979345 +37610,188.04999999986524,-0.0686076147398229 +37611,188.05499999986523,-0.06860761503983 +37612,188.05999999986523,-0.06860761533981476 +37613,188.06499999986522,-0.06860761563977719 +37614,188.06999999986522,-0.06860761593971726 +37615,188.0749999998652,-0.06860761623963502 +37616,188.0799999998652,-0.06860761653953044 +37617,188.0849999998652,-0.06860761683940352 +37618,188.0899999998652,-0.06860761713925426 +37619,188.0949999998652,-0.06860761743908267 +37620,188.0999999998652,-0.06860761773888875 +37621,188.10499999986519,-0.06860761803867249 +37622,188.10999999986518,-0.0686076183384339 +37623,188.11499999986518,-0.06860761863817297 +37624,188.11999999986517,-0.06860761893788969 +37625,188.12499999986517,-0.0686076192375841 +37626,188.12999999986516,-0.06860761953725616 +37627,188.13499999986516,-0.06860761983690591 +37628,188.13999999986515,-0.06860762013653332 +37629,188.14499999986515,-0.0686076204361384 +37630,188.14999999986514,-0.06860762073572114 +37631,188.15499999986514,-0.06860762103528155 +37632,188.15999999986514,-0.06860762133481964 +37633,188.16499999986513,-0.06860762163433538 +37634,188.16999999986513,-0.06860762193382881 +37635,188.17499999986512,-0.06860762223329991 +37636,188.17999999986512,-0.06860762253274867 +37637,188.1849999998651,-0.0686076228321751 +37638,188.1899999998651,-0.0686076231315792 +37639,188.1949999998651,-0.06860762343096098 +37640,188.1999999998651,-0.06860762373032042 +37641,188.2049999998651,-0.06860762402965755 +37642,188.2099999998651,-0.06860762432897234 +37643,188.21499999986509,-0.06860762462826481 +37644,188.21999999986508,-0.06860762492753494 +37645,188.22499999986508,-0.06860762522678276 +37646,188.22999999986507,-0.06860762552600826 +37647,188.23499999986507,-0.06860762582521142 +37648,188.23999999986506,-0.06860762612439225 +37649,188.24499999986506,-0.06860762642355077 +37650,188.24999999986505,-0.06860762672268696 +37651,188.25499999986505,-0.06860762702180083 +37652,188.25999999986504,-0.06860762732089236 +37653,188.26499999986504,-0.06860762761996157 +37654,188.26999999986504,-0.06860762791900847 +37655,188.27499999986503,-0.06860762821803303 +37656,188.27999999986503,-0.06860762851703528 +37657,188.28499999986502,-0.0686076288160152 +37658,188.28999999986502,-0.06860762911497281 +37659,188.294999999865,-0.06860762941390809 +37660,188.299999999865,-0.06860762971282106 +37661,188.304999999865,-0.06860763001171169 +37662,188.309999999865,-0.06860763031058001 +37663,188.314999999865,-0.06860763060942601 +37664,188.319999999865,-0.06860763090824969 +37665,188.32499999986499,-0.06860763120705105 +37666,188.32999999986498,-0.06860763150583009 +37667,188.33499999986498,-0.0686076318045868 +37668,188.33999999986497,-0.06860763210332121 +37669,188.34499999986497,-0.0686076324020333 +37670,188.34999999986496,-0.06860763270072306 +37671,188.35499999986496,-0.0686076329993905 +37672,188.35999999986495,-0.06860763329803564 +37673,188.36499999986495,-0.06860763359665846 +37674,188.36999999986494,-0.06860763389525895 +37675,188.37499999986494,-0.06860763419383714 +37676,188.37999999986494,-0.06860763449239302 +37677,188.38499999986493,-0.06860763479092657 +37678,188.38999999986493,-0.0686076350894378 +37679,188.39499999986492,-0.06860763538792673 +37680,188.39999999986492,-0.06860763568639336 +37681,188.4049999998649,-0.06860763598483764 +37682,188.4099999998649,-0.06860763628325962 +37683,188.4149999998649,-0.06860763658165929 +37684,188.4199999998649,-0.06860763688003665 +37685,188.4249999998649,-0.0686076371783917 +37686,188.4299999998649,-0.06860763747672444 +37687,188.43499999986489,-0.06860763777503485 +37688,188.43999999986488,-0.06860763807332297 +37689,188.44499999986488,-0.06860763837158877 +37690,188.44999999986487,-0.06860763866983227 +37691,188.45499999986487,-0.06860763896805346 +37692,188.45999999986486,-0.06860763926625232 +37693,188.46499999986486,-0.06860763956442888 +37694,188.46999999986485,-0.06860763986258313 +37695,188.47499999986485,-0.06860764016071508 +37696,188.47999999986484,-0.06860764045882473 +37697,188.48499999986484,-0.06860764075691204 +37698,188.48999999986484,-0.06860764105497706 +37699,188.49499999986483,-0.06860764135301978 +37700,188.49999999986483,-0.06860764165104019 +37701,188.50499999986482,-0.06860764194903829 +37702,188.50999999986482,-0.06860764224701409 +37703,188.5149999998648,-0.06860764254496758 +37704,188.5199999998648,-0.06860764284289876 +37705,188.5249999998648,-0.06860764314080764 +37706,188.5299999998648,-0.06860764343869422 +37707,188.5349999998648,-0.06860764373655849 +37708,188.5399999998648,-0.06860764403440045 +37709,188.54499999986479,-0.06860764433222012 +37710,188.54999999986478,-0.06860764463001748 +37711,188.55499999986478,-0.06860764492779253 +37712,188.55999999986477,-0.06860764522554529 +37713,188.56499999986477,-0.06860764552327574 +37714,188.56999999986476,-0.06860764582098389 +37715,188.57499999986476,-0.06860764611866974 +37716,188.57999999986475,-0.06860764641633328 +37717,188.58499999986475,-0.06860764671397453 +37718,188.58999999986474,-0.06860764701159348 +37719,188.59499999986474,-0.06860764730919014 +37720,188.59999999986474,-0.0686076476067645 +37721,188.60499999986473,-0.06860764790431653 +37722,188.60999999986473,-0.06860764820184628 +37723,188.61499999986472,-0.06860764849935375 +37724,188.61999999986472,-0.06860764879683891 +37725,188.6249999998647,-0.06860764909430177 +37726,188.6299999998647,-0.06860764939174233 +37727,188.6349999998647,-0.0686076496891606 +37728,188.6399999998647,-0.06860764998655657 +37729,188.6449999998647,-0.06860765028393025 +37730,188.6499999998647,-0.06860765058128163 +37731,188.65499999986469,-0.0686076508786107 +37732,188.65999999986468,-0.06860765117591748 +37733,188.66499999986468,-0.06860765147320198 +37734,188.66999999986467,-0.06860765177046418 +37735,188.67499999986467,-0.0686076520677041 +37736,188.67999999986466,-0.06860765236492171 +37737,188.68499999986466,-0.06860765266211703 +37738,188.68999999986465,-0.06860765295929007 +37739,188.69499999986465,-0.0686076532564408 +37740,188.69999999986464,-0.06860765355356925 +37741,188.70499999986464,-0.06860765385067541 +37742,188.70999999986464,-0.06860765414775927 +37743,188.71499999986463,-0.06860765444482084 +37744,188.71999999986463,-0.06860765474186012 +37745,188.72499999986462,-0.06860765503887711 +37746,188.72999999986462,-0.0686076553358718 +37747,188.7349999998646,-0.06860765563284422 +37748,188.7399999998646,-0.06860765592979437 +37749,188.7449999998646,-0.0686076562267222 +37750,188.7499999998646,-0.06860765652362776 +37751,188.7549999998646,-0.06860765682051102 +37752,188.7599999998646,-0.068607657117372 +37753,188.76499999986459,-0.0686076574142107 +37754,188.76999999986458,-0.0686076577110271 +37755,188.77499999986458,-0.06860765800782122 +37756,188.77999999986457,-0.06860765830459305 +37757,188.78499999986457,-0.06860765860134259 +37758,188.78999999986456,-0.06860765889806986 +37759,188.79499999986456,-0.06860765919477484 +37760,188.79999999986455,-0.06860765949145754 +37761,188.80499999986455,-0.06860765978811796 +37762,188.80999999986454,-0.06860766008475609 +37763,188.81499999986454,-0.06860766038137195 +37764,188.81999999986454,-0.06860766067796552 +37765,188.82499999986453,-0.0686076609745368 +37766,188.82999999986453,-0.0686076612710858 +37767,188.83499999986452,-0.06860766156761253 +37768,188.83999999986452,-0.06860766186411696 +37769,188.8449999998645,-0.06860766216059912 +37770,188.8499999998645,-0.06860766245705899 +37771,188.8549999998645,-0.0686076627534966 +37772,188.8599999998645,-0.06860766304991192 +37773,188.8649999998645,-0.06860766334630496 +37774,188.8699999998645,-0.06860766364267573 +37775,188.87499999986449,-0.06860766393902422 +37776,188.87999999986448,-0.06860766423535043 +37777,188.88499999986448,-0.06860766453165437 +37778,188.88999999986447,-0.06860766482793602 +37779,188.89499999986447,-0.0686076651241954 +37780,188.89999999986446,-0.0686076654204325 +37781,188.90499999986446,-0.06860766571664735 +37782,188.90999999986445,-0.06860766601283991 +37783,188.91499999986445,-0.06860766630901019 +37784,188.91999999986444,-0.06860766660515819 +37785,188.92499999986444,-0.06860766690128392 +37786,188.92999999986444,-0.06860766719738738 +37787,188.93499999986443,-0.06860766749346857 +37788,188.93999999986443,-0.06860766778952748 +37789,188.94499999986442,-0.06860766808556414 +37790,188.94999999986442,-0.06860766838157849 +37791,188.9549999998644,-0.0686076686775706 +37792,188.9599999998644,-0.06860766897354041 +37793,188.9649999998644,-0.06860766926948797 +37794,188.9699999998644,-0.06860766956541327 +37795,188.9749999998644,-0.06860766986131628 +37796,188.9799999998644,-0.06860767015719704 +37797,188.98499999986439,-0.06860767045305552 +37798,188.98999999986438,-0.06860767074889174 +37799,188.99499999986438,-0.06860767104470568 +37800,188.99999999986437,-0.06860767134049736 +37801,189.00499999986437,-0.06860767163626677 +37802,189.00999999986436,-0.06860767193201392 +37803,189.01499999986436,-0.0686076722277388 +37804,189.01999999986435,-0.0686076725234414 +37805,189.02499999986435,-0.06860767281912175 +37806,189.02999999986434,-0.06860767311477983 +37807,189.03499999986434,-0.06860767341041564 +37808,189.03999999986434,-0.06860767370602919 +37809,189.04499999986433,-0.06860767400162049 +37810,189.04999999986433,-0.0686076742971895 +37811,189.05499999986432,-0.06860767459273626 +37812,189.05999999986432,-0.06860767488826076 +37813,189.0649999998643,-0.068607675183763 +37814,189.0699999998643,-0.06860767547924297 +37815,189.0749999998643,-0.06860767577470069 +37816,189.0799999998643,-0.06860767607013614 +37817,189.0849999998643,-0.06860767636554932 +37818,189.0899999998643,-0.06860767666094025 +37819,189.09499999986429,-0.06860767695630894 +37820,189.09999999986428,-0.06860767725165534 +37821,189.10499999986428,-0.06860767754697951 +37822,189.10999999986427,-0.0686076778422814 +37823,189.11499999986427,-0.06860767813756104 +37824,189.11999999986426,-0.06860767843281843 +37825,189.12499999986426,-0.06860767872805354 +37826,189.12999999986425,-0.06860767902326642 +37827,189.13499999986425,-0.06860767931845703 +37828,189.13999999986424,-0.06860767961362539 +37829,189.14499999986424,-0.0686076799087715 +37830,189.14999999986424,-0.06860768020389535 +37831,189.15499999986423,-0.06860768049899693 +37832,189.15999999986423,-0.06860768079407627 +37833,189.16499999986422,-0.06860768108913336 +37834,189.16999999986422,-0.06860768138416819 +37835,189.1749999998642,-0.06860768167918077 +37836,189.1799999998642,-0.06860768197417111 +37837,189.1849999998642,-0.06860768226913917 +37838,189.1899999998642,-0.068607682564085 +37839,189.1949999998642,-0.06860768285900856 +37840,189.1999999998642,-0.06860768315390989 +37841,189.20499999986419,-0.06860768344878897 +37842,189.20999999986418,-0.06860768374364579 +37843,189.21499999986418,-0.06860768403848036 +37844,189.21999999986417,-0.06860768433329269 +37845,189.22499999986417,-0.06860768462808275 +37846,189.22999999986416,-0.06860768492285058 +37847,189.23499999986416,-0.06860768521759615 +37848,189.23999999986415,-0.0686076855123195 +37849,189.24499999986415,-0.06860768580702058 +37850,189.24999999986414,-0.06860768610169941 +37851,189.25499999986414,-0.068607686396356 +37852,189.25999999986414,-0.06860768669099035 +37853,189.26499999986413,-0.06860768698560246 +37854,189.26999999986413,-0.06860768728019231 +37855,189.27499999986412,-0.06860768757475992 +37856,189.27999999986412,-0.0686076878693053 +37857,189.2849999998641,-0.06860768816382842 +37858,189.2899999998641,-0.0686076884583293 +37859,189.2949999998641,-0.06860768875280794 +37860,189.2999999998641,-0.06860768904726434 +37861,189.3049999998641,-0.0686076893416985 +37862,189.3099999998641,-0.06860768963611043 +37863,189.31499999986409,-0.06860768993050011 +37864,189.31999999986408,-0.06860769022486754 +37865,189.32499999986408,-0.06860769051921274 +37866,189.32999999986407,-0.0686076908135357 +37867,189.33499999986407,-0.06860769110783642 +37868,189.33999999986406,-0.0686076914021149 +37869,189.34499999986406,-0.06860769169637114 +37870,189.34999999986405,-0.06860769199060515 +37871,189.35499999986405,-0.06860769228481692 +37872,189.35999999986404,-0.06860769257900645 +37873,189.36499999986404,-0.06860769287317375 +37874,189.36999999986404,-0.06860769316731881 +37875,189.37499999986403,-0.06860769346144165 +37876,189.37999999986403,-0.06860769375554224 +37877,189.38499999986402,-0.0686076940496206 +37878,189.38999999986402,-0.06860769434367671 +37879,189.394999999864,-0.0686076946377106 +37880,189.399999999864,-0.06860769493172227 +37881,189.404999999864,-0.06860769522571168 +37882,189.409999999864,-0.06860769551967887 +37883,189.414999999864,-0.06860769581362383 +37884,189.419999999864,-0.06860769610754656 +37885,189.42499999986399,-0.06860769640144707 +37886,189.42999999986398,-0.06860769669532533 +37887,189.43499999986398,-0.06860769698918137 +37888,189.43999999986397,-0.06860769728301518 +37889,189.44499999986397,-0.06860769757682675 +37890,189.44999999986396,-0.0686076978706161 +37891,189.45499999986396,-0.06860769816438324 +37892,189.45999999986395,-0.06860769845812813 +37893,189.46499999986395,-0.0686076987518508 +37894,189.46999999986394,-0.06860769904555122 +37895,189.47499999986394,-0.06860769933922944 +37896,189.47999999986394,-0.06860769963288543 +37897,189.48499999986393,-0.06860769992651919 +37898,189.48999999986393,-0.06860770022013073 +37899,189.49499999986392,-0.06860770051372005 +37900,189.49999999986392,-0.06860770080728715 +37901,189.5049999998639,-0.06860770110083202 +37902,189.5099999998639,-0.06860770139435467 +37903,189.5149999998639,-0.06860770168785509 +37904,189.5199999998639,-0.06860770198133329 +37905,189.5249999998639,-0.06860770227478927 +37906,189.5299999998639,-0.06860770256822302 +37907,189.53499999986389,-0.06860770286163455 +37908,189.53999999986388,-0.06860770315502387 +37909,189.54499999986388,-0.06860770344839097 +37910,189.54999999986387,-0.06860770374173585 +37911,189.55499999986387,-0.0686077040350585 +37912,189.55999999986386,-0.06860770432835896 +37913,189.56499999986386,-0.06860770462163716 +37914,189.56999999986385,-0.06860770491489318 +37915,189.57499999986385,-0.06860770520812698 +37916,189.57999999986384,-0.06860770550133855 +37917,189.58499999986384,-0.0686077057945279 +37918,189.58999999986384,-0.06860770608769504 +37919,189.59499999986383,-0.06860770638083996 +37920,189.59999999986383,-0.06860770667396267 +37921,189.60499999986382,-0.06860770696706317 +37922,189.60999999986382,-0.06860770726014145 +37923,189.6149999998638,-0.06860770755319753 +37924,189.6199999998638,-0.06860770784623138 +37925,189.6249999998638,-0.06860770813924302 +37926,189.6299999998638,-0.06860770843223246 +37927,189.6349999998638,-0.06860770872519967 +37928,189.6399999998638,-0.0686077090181447 +37929,189.64499999986378,-0.0686077093110675 +37930,189.64999999986378,-0.06860770960396809 +37931,189.65499999986378,-0.06860770989684647 +37932,189.65999999986377,-0.06860771018970264 +37933,189.66499999986377,-0.06860771048253661 +37934,189.66999999986376,-0.06860771077534836 +37935,189.67499999986376,-0.0686077110681379 +37936,189.67999999986375,-0.06860771136090524 +37937,189.68499999986375,-0.06860771165365037 +37938,189.68999999986374,-0.0686077119463733 +37939,189.69499999986374,-0.06860771223907403 +37940,189.69999999986373,-0.06860771253175255 +37941,189.70499999986373,-0.06860771282440885 +37942,189.70999999986373,-0.06860771311704296 +37943,189.71499999986372,-0.06860771340965487 +37944,189.71999999986372,-0.06860771370224457 +37945,189.7249999998637,-0.06860771399481207 +37946,189.7299999998637,-0.06860771428735736 +37947,189.7349999998637,-0.06860771457988045 +37948,189.7399999998637,-0.06860771487238133 +37949,189.7449999998637,-0.06860771516486003 +37950,189.7499999998637,-0.06860771545731652 +37951,189.75499999986368,-0.06860771574975082 +37952,189.75999999986368,-0.0686077160421629 +37953,189.76499999986368,-0.06860771633455277 +37954,189.76999999986367,-0.06860771662692046 +37955,189.77499999986367,-0.06860771691926595 +37956,189.77999999986366,-0.06860771721158924 +37957,189.78499999986366,-0.06860771750389034 +37958,189.78999999986365,-0.06860771779616924 +37959,189.79499999986365,-0.06860771808842596 +37960,189.79999999986364,-0.06860771838066047 +37961,189.80499999986364,-0.0686077186728728 +37962,189.80999999986363,-0.06860771896506292 +37963,189.81499999986363,-0.06860771925723085 +37964,189.81999999986363,-0.06860771954937657 +37965,189.82499999986362,-0.06860771984150012 +37966,189.82999999986362,-0.06860772013360146 +37967,189.8349999998636,-0.06860772042568061 +37968,189.8399999998636,-0.06860772071773757 +37969,189.8449999998636,-0.06860772100977235 +37970,189.8499999998636,-0.06860772130178494 +37971,189.8549999998636,-0.06860772159377533 +37972,189.8599999998636,-0.06860772188574353 +37973,189.86499999986358,-0.06860772217768954 +37974,189.86999999986358,-0.06860772246961337 +37975,189.87499999986358,-0.068607722761515 +37976,189.87999999986357,-0.06860772305339444 +37977,189.88499999986357,-0.0686077233452517 +37978,189.88999999986356,-0.06860772363708677 +37979,189.89499999986356,-0.06860772392889965 +37980,189.89999999986355,-0.06860772422069035 +37981,189.90499999986355,-0.06860772451245886 +37982,189.90999999986354,-0.0686077248042052 +37983,189.91499999986354,-0.06860772509592934 +37984,189.91999999986353,-0.0686077253876313 +37985,189.92499999986353,-0.06860772567931107 +37986,189.92999999986353,-0.06860772597096866 +37987,189.93499999986352,-0.06860772626260407 +37988,189.93999999986352,-0.0686077265542173 +37989,189.9449999998635,-0.06860772684580836 +37990,189.9499999998635,-0.06860772713737723 +37991,189.9549999998635,-0.0686077274289239 +37992,189.9599999998635,-0.06860772772044842 +37993,189.9649999998635,-0.06860772801195074 +37994,189.9699999998635,-0.06860772830343088 +37995,189.97499999986348,-0.06860772859488885 +37996,189.97999999986348,-0.06860772888632463 +37997,189.98499999986348,-0.06860772917773825 +37998,189.98999999986347,-0.06860772946912969 +37999,189.99499999986347,-0.06860772976049895 +38000,189.99999999986346,-0.06860773005184602 +38001,190.00499999986346,-0.06860773034317093 +38002,190.00999999986345,-0.06860773063447366 +38003,190.01499999986345,-0.06860773092575422 +38004,190.01999999986344,-0.06860773121701261 +38005,190.02499999986344,-0.06860773150824881 +38006,190.02999999986343,-0.06860773179946285 +38007,190.03499999986343,-0.06860773209065471 +38008,190.03999999986343,-0.06860773238182441 +38009,190.04499999986342,-0.06860773267297192 +38010,190.04999999986342,-0.06860773296409726 +38011,190.0549999998634,-0.06860773325520045 +38012,190.0599999998634,-0.06860773354628145 +38013,190.0649999998634,-0.0686077338373403 +38014,190.0699999998634,-0.06860773412837697 +38015,190.0749999998634,-0.06860773441939147 +38016,190.0799999998634,-0.0686077347103838 +38017,190.08499999986338,-0.06860773500135396 +38018,190.08999999986338,-0.06860773529230195 +38019,190.09499999986338,-0.06860773558322779 +38020,190.09999999986337,-0.06860773587413146 +38021,190.10499999986337,-0.06860773616501296 +38022,190.10999999986336,-0.0686077364558723 +38023,190.11499999986336,-0.06860773674670946 +38024,190.11999999986335,-0.06860773703752447 +38025,190.12499999986335,-0.06860773732831732 +38026,190.12999999986334,-0.068607737619088 +38027,190.13499999986334,-0.06860773790983651 +38028,190.13999999986333,-0.06860773820056287 +38029,190.14499999986333,-0.06860773849126707 +38030,190.14999999986333,-0.0686077387819491 +38031,190.15499999986332,-0.06860773907260898 +38032,190.15999999986332,-0.0686077393632467 +38033,190.1649999998633,-0.06860773965386226 +38034,190.1699999998633,-0.06860773994445564 +38035,190.1749999998633,-0.06860774023502689 +38036,190.1799999998633,-0.06860774052557596 +38037,190.1849999998633,-0.0686077408161029 +38038,190.1899999998633,-0.06860774110660765 +38039,190.19499999986328,-0.06860774139709025 +38040,190.19999999986328,-0.0686077416875507 +38041,190.20499999986328,-0.068607741977989 +38042,190.20999999986327,-0.06860774226840513 +38043,190.21499999986327,-0.06860774255879912 +38044,190.21999999986326,-0.06860774284917096 +38045,190.22499999986326,-0.06860774313952064 +38046,190.22999999986325,-0.06860774342984817 +38047,190.23499999986325,-0.06860774372015355 +38048,190.23999999986324,-0.06860774401043677 +38049,190.24499999986324,-0.06860774430069785 +38050,190.24999999986323,-0.06860774459093676 +38051,190.25499999986323,-0.06860774488115354 +38052,190.25999999986323,-0.06860774517134816 +38053,190.26499999986322,-0.06860774546152064 +38054,190.26999999986322,-0.06860774575167096 +38055,190.2749999998632,-0.06860774604179913 +38056,190.2799999998632,-0.06860774633190517 +38057,190.2849999998632,-0.06860774662198905 +38058,190.2899999998632,-0.0686077469120508 +38059,190.2949999998632,-0.06860774720209038 +38060,190.2999999998632,-0.06860774749210782 +38061,190.30499999986318,-0.06860774778210312 +38062,190.30999999986318,-0.06860774807207627 +38063,190.31499999986318,-0.0686077483620273 +38064,190.31999999986317,-0.06860774865195617 +38065,190.32499999986317,-0.06860774894186288 +38066,190.32999999986316,-0.06860774923174746 +38067,190.33499999986316,-0.0686077495216099 +38068,190.33999999986315,-0.06860774981145021 +38069,190.34499999986315,-0.06860775010126836 +38070,190.34999999986314,-0.06860775039106438 +38071,190.35499999986314,-0.06860775068083827 +38072,190.35999999986313,-0.06860775097059 +38073,190.36499999986313,-0.06860775126031961 +38074,190.36999999986313,-0.06860775155002706 +38075,190.37499999986312,-0.06860775183971239 +38076,190.37999999986312,-0.06860775212937559 +38077,190.3849999998631,-0.06860775241901663 +38078,190.3899999998631,-0.06860775270863555 +38079,190.3949999998631,-0.06860775299823232 +38080,190.3999999998631,-0.06860775328780698 +38081,190.4049999998631,-0.06860775357735949 +38082,190.4099999998631,-0.06860775386688987 +38083,190.41499999986308,-0.06860775415639812 +38084,190.41999999986308,-0.06860775444588423 +38085,190.42499999986308,-0.0686077547353482 +38086,190.42999999986307,-0.06860775502479005 +38087,190.43499999986307,-0.06860775531420978 +38088,190.43999999986306,-0.06860775560360736 +38089,190.44499999986306,-0.0686077558929828 +38090,190.44999999986305,-0.06860775618233614 +38091,190.45499999986305,-0.06860775647166734 +38092,190.45999999986304,-0.0686077567609764 +38093,190.46499999986304,-0.06860775705026334 +38094,190.46999999986303,-0.06860775733952816 +38095,190.47499999986303,-0.06860775762877086 +38096,190.47999999986303,-0.06860775791799142 +38097,190.48499999986302,-0.06860775820718987 +38098,190.48999999986302,-0.06860775849636618 +38099,190.494999999863,-0.06860775878552036 +38100,190.499999999863,-0.06860775907465243 +38101,190.504999999863,-0.06860775936376236 +38102,190.509999999863,-0.06860775965285017 +38103,190.514999999863,-0.06860775994191586 +38104,190.519999999863,-0.06860776023095944 +38105,190.52499999986298,-0.06860776051998087 +38106,190.52999999986298,-0.0686077608089802 +38107,190.53499999986298,-0.06860776109795741 +38108,190.53999999986297,-0.06860776138691249 +38109,190.54499999986297,-0.06860776167584545 +38110,190.54999999986296,-0.0686077619647563 +38111,190.55499999986296,-0.06860776225364504 +38112,190.55999999986295,-0.06860776254251165 +38113,190.56499999986295,-0.06860776283135614 +38114,190.56999999986294,-0.06860776312017852 +38115,190.57499999986294,-0.06860776340897878 +38116,190.57999999986293,-0.06860776369775692 +38117,190.58499999986293,-0.06860776398651296 +38118,190.58999999986293,-0.06860776427524687 +38119,190.59499999986292,-0.06860776456395867 +38120,190.59999999986292,-0.06860776485264836 +38121,190.6049999998629,-0.06860776514131593 +38122,190.6099999998629,-0.0686077654299614 +38123,190.6149999998629,-0.06860776571858476 +38124,190.6199999998629,-0.068607766007186 +38125,190.6249999998629,-0.06860776629576514 +38126,190.6299999998629,-0.06860776658432215 +38127,190.63499999986288,-0.06860776687285705 +38128,190.63999999986288,-0.06860776716136986 +38129,190.64499999986288,-0.06860776744986057 +38130,190.64999999986287,-0.06860776773832915 +38131,190.65499999986287,-0.06860776802677562 +38132,190.65999999986286,-0.06860776831519999 +38133,190.66499999986286,-0.06860776860360225 +38134,190.66999999986285,-0.06860776889198242 +38135,190.67499999986285,-0.06860776918034046 +38136,190.67999999986284,-0.06860776946867643 +38137,190.68499999986284,-0.06860776975699026 +38138,190.68999999986283,-0.06860777004528201 +38139,190.69499999986283,-0.06860777033355164 +38140,190.69999999986283,-0.06860777062179918 +38141,190.70499999986282,-0.06860777091002461 +38142,190.70999999986282,-0.06860777119822795 +38143,190.7149999998628,-0.06860777148640917 +38144,190.7199999998628,-0.06860777177456831 +38145,190.7249999998628,-0.06860777206270534 +38146,190.7299999998628,-0.06860777235082027 +38147,190.7349999998628,-0.0686077726389131 +38148,190.7399999998628,-0.06860777292698385 +38149,190.74499999986278,-0.06860777321503249 +38150,190.74999999986278,-0.06860777350305902 +38151,190.75499999986278,-0.06860777379106346 +38152,190.75999999986277,-0.06860777407904581 +38153,190.76499999986277,-0.06860777436700607 +38154,190.76999999986276,-0.06860777465494423 +38155,190.77499999986276,-0.0686077749428603 +38156,190.77999999986275,-0.06860777523075427 +38157,190.78499999986275,-0.06860777551862615 +38158,190.78999999986274,-0.06860777580647594 +38159,190.79499999986274,-0.06860777609430364 +38160,190.79999999986273,-0.06860777638210926 +38161,190.80499999986273,-0.06860777666989278 +38162,190.80999999986273,-0.0686077769576542 +38163,190.81499999986272,-0.06860777724539353 +38164,190.81999999986272,-0.06860777753311077 +38165,190.8249999998627,-0.06860777782080593 +38166,190.8299999998627,-0.06860777810847901 +38167,190.8349999998627,-0.06860777839612998 +38168,190.8399999998627,-0.06860777868375888 +38169,190.8449999998627,-0.06860777897136569 +38170,190.8499999998627,-0.06860777925895041 +38171,190.85499999986268,-0.06860777954651306 +38172,190.85999999986268,-0.06860777983405361 +38173,190.86499999986268,-0.06860778012157209 +38174,190.86999999986267,-0.06860778040906848 +38175,190.87499999986267,-0.06860778069654279 +38176,190.87999999986266,-0.06860778098399502 +38177,190.88499999986266,-0.06860778127142515 +38178,190.88999999986265,-0.06860778155883321 +38179,190.89499999986265,-0.06860778184621918 +38180,190.89999999986264,-0.06860778213358308 +38181,190.90499999986264,-0.06860778242092491 +38182,190.90999999986263,-0.06860778270824465 +38183,190.91499999986263,-0.06860778299554231 +38184,190.91999999986263,-0.0686077832828179 +38185,190.92499999986262,-0.0686077835700714 +38186,190.92999999986262,-0.06860778385730282 +38187,190.9349999998626,-0.06860778414451218 +38188,190.9399999998626,-0.06860778443169946 +38189,190.9449999998626,-0.06860778471886467 +38190,190.9499999998626,-0.0686077850060078 +38191,190.9549999998626,-0.06860778529312885 +38192,190.9599999998626,-0.06860778558022783 +38193,190.96499999986258,-0.06860778586730475 +38194,190.96999999986258,-0.06860778615435957 +38195,190.97499999986258,-0.06860778644139234 +38196,190.97999999986257,-0.06860778672840302 +38197,190.98499999986257,-0.06860778701539165 +38198,190.98999999986256,-0.06860778730235821 +38199,190.99499999986256,-0.0686077875893027 +38200,190.99999999986255,-0.06860778787622511 +38201,191.00499999986255,-0.06860778816312546 +38202,191.00999999986254,-0.06860778845000376 +38203,191.01499999986254,-0.06860778873685998 +38204,191.01999999986253,-0.06860778902369413 +38205,191.02499999986253,-0.0686077893105062 +38206,191.02999999986253,-0.06860778959729623 +38207,191.03499999986252,-0.06860778988406419 +38208,191.03999999986252,-0.06860779017081008 +38209,191.0449999998625,-0.06860779045753392 +38210,191.0499999998625,-0.06860779074423567 +38211,191.0549999998625,-0.06860779103091538 +38212,191.0599999998625,-0.06860779131757302 +38213,191.0649999998625,-0.0686077916042086 +38214,191.0699999998625,-0.06860779189082211 +38215,191.07499999986248,-0.06860779217741357 +38216,191.07999999986248,-0.06860779246398298 +38217,191.08499999986248,-0.06860779275053032 +38218,191.08999999986247,-0.0686077930370556 +38219,191.09499999986247,-0.06860779332355882 +38220,191.09999999986246,-0.06860779361003999 +38221,191.10499999986246,-0.06860779389649911 +38222,191.10999999986245,-0.06860779418293617 +38223,191.11499999986245,-0.06860779446935117 +38224,191.11999999986244,-0.0686077947557441 +38225,191.12499999986244,-0.068607795042115 +38226,191.12999999986243,-0.06860779532846384 +38227,191.13499999986243,-0.06860779561479063 +38228,191.13999999986243,-0.06860779590109538 +38229,191.14499999986242,-0.06860779618737806 +38230,191.14999999986242,-0.06860779647363868 +38231,191.1549999998624,-0.06860779675987727 +38232,191.1599999998624,-0.06860779704609381 +38233,191.1649999998624,-0.06860779733228829 +38234,191.1699999998624,-0.06860779761846073 +38235,191.1749999998624,-0.0686077979046111 +38236,191.1799999998624,-0.06860779819073945 +38237,191.18499999986238,-0.06860779847684574 +38238,191.18999999986238,-0.06860779876293 +38239,191.19499999986238,-0.0686077990489922 +38240,191.19999999986237,-0.06860779933503235 +38241,191.20499999986237,-0.06860779962105044 +38242,191.20999999986236,-0.06860779990704652 +38243,191.21499999986236,-0.06860780019302054 +38244,191.21999999986235,-0.06860780047897252 +38245,191.22499999986235,-0.06860780076490247 +38246,191.22999999986234,-0.06860780105081037 +38247,191.23499999986234,-0.06860780133669622 +38248,191.23999999986233,-0.06860780162256004 +38249,191.24499999986233,-0.06860780190840182 +38250,191.24999999986233,-0.06860780219422156 +38251,191.25499999986232,-0.06860780248001926 +38252,191.25999999986232,-0.06860780276579492 +38253,191.2649999998623,-0.06860780305154852 +38254,191.2699999998623,-0.06860780333728012 +38255,191.2749999998623,-0.06860780362298967 +38256,191.2799999998623,-0.06860780390867717 +38257,191.2849999998623,-0.06860780419434265 +38258,191.2899999998623,-0.06860780447998609 +38259,191.29499999986228,-0.0686078047656075 +38260,191.29999999986228,-0.06860780505120687 +38261,191.30499999986228,-0.0686078053367842 +38262,191.30999999986227,-0.06860780562233952 +38263,191.31499999986227,-0.0686078059078728 +38264,191.31999999986226,-0.06860780619338405 +38265,191.32499999986226,-0.06860780647887327 +38266,191.32999999986225,-0.06860780676434047 +38267,191.33499999986225,-0.06860780704978563 +38268,191.33999999986224,-0.06860780733520874 +38269,191.34499999986224,-0.06860780762060985 +38270,191.34999999986223,-0.06860780790598892 +38271,191.35499999986223,-0.06860780819134597 +38272,191.35999999986223,-0.06860780847668099 +38273,191.36499999986222,-0.06860780876199397 +38274,191.36999999986222,-0.06860780904728496 +38275,191.3749999998622,-0.06860780933255392 +38276,191.3799999998622,-0.06860780961780084 +38277,191.3849999998622,-0.06860780990302574 +38278,191.3899999998622,-0.06860781018822862 +38279,191.3949999998622,-0.06860781047340947 +38280,191.3999999998622,-0.06860781075856831 +38281,191.40499999986218,-0.06860781104370513 +38282,191.40999999986218,-0.06860781132881992 +38283,191.41499999986218,-0.0686078116139127 +38284,191.41999999986217,-0.06860781189898346 +38285,191.42499999986217,-0.0686078121840322 +38286,191.42999999986216,-0.06860781246905892 +38287,191.43499999986216,-0.06860781275406362 +38288,191.43999999986215,-0.06860781303904631 +38289,191.44499999986215,-0.06860781332400696 +38290,191.44999999986214,-0.06860781360894562 +38291,191.45499999986214,-0.06860781389386227 +38292,191.45999999986213,-0.06860781417875689 +38293,191.46499999986213,-0.0686078144636295 +38294,191.46999999986213,-0.0686078147484801 +38295,191.47499999986212,-0.06860781503330868 +38296,191.47999999986212,-0.06860781531811526 +38297,191.4849999998621,-0.06860781560289982 +38298,191.4899999998621,-0.06860781588766239 +38299,191.4949999998621,-0.06860781617240294 +38300,191.4999999998621,-0.06860781645712147 +38301,191.5049999998621,-0.068607816741818 +38302,191.5099999998621,-0.06860781702649253 +38303,191.51499999986208,-0.06860781731114504 +38304,191.51999999986208,-0.06860781759577554 +38305,191.52499999986208,-0.06860781788038404 +38306,191.52999999986207,-0.06860781816497054 +38307,191.53499999986207,-0.06860781844953504 +38308,191.53999999986206,-0.06860781873407751 +38309,191.54499999986206,-0.068607819018598 +38310,191.54999999986205,-0.06860781930309648 +38311,191.55499999986205,-0.06860781958757295 +38312,191.55999999986204,-0.06860781987202742 +38313,191.56499999986204,-0.0686078201564599 +38314,191.56999999986203,-0.06860782044087037 +38315,191.57499999986203,-0.06860782072525885 +38316,191.57999999986203,-0.06860782100962533 +38317,191.58499999986202,-0.0686078212939698 +38318,191.58999999986202,-0.06860782157829229 +38319,191.594999999862,-0.06860782186259277 +38320,191.599999999862,-0.06860782214687126 +38321,191.604999999862,-0.06860782243112774 +38322,191.609999999862,-0.06860782271536224 +38323,191.614999999862,-0.06860782299957473 +38324,191.619999999862,-0.06860782328376523 +38325,191.62499999986198,-0.06860782356793374 +38326,191.62999999986198,-0.06860782385208027 +38327,191.63499999986198,-0.06860782413620478 +38328,191.63999999986197,-0.06860782442030731 +38329,191.64499999986197,-0.06860782470438785 +38330,191.64999999986196,-0.06860782498844639 +38331,191.65499999986196,-0.06860782527248295 +38332,191.65999999986195,-0.06860782555649753 +38333,191.66499999986195,-0.0686078258404901 +38334,191.66999999986194,-0.0686078261244607 +38335,191.67499999986194,-0.06860782640840932 +38336,191.67999999986193,-0.06860782669233594 +38337,191.68499999986193,-0.06860782697624056 +38338,191.68999999986193,-0.0686078272601232 +38339,191.69499999986192,-0.06860782754398385 +38340,191.69999999986192,-0.06860782782782253 +38341,191.7049999998619,-0.06860782811163922 +38342,191.7099999998619,-0.06860782839543395 +38343,191.7149999998619,-0.06860782867920667 +38344,191.7199999998619,-0.06860782896295743 +38345,191.7249999998619,-0.0686078292466862 +38346,191.7299999998619,-0.06860782953039297 +38347,191.73499999986188,-0.06860782981407777 +38348,191.73999999986188,-0.0686078300977406 +38349,191.74499999986188,-0.06860783038138145 +38350,191.74999999986187,-0.06860783066500033 +38351,191.75499999986187,-0.06860783094859721 +38352,191.75999999986186,-0.06860783123217214 +38353,191.76499999986186,-0.06860783151572507 +38354,191.76999999986185,-0.06860783179925603 +38355,191.77499999986185,-0.06860783208276501 +38356,191.77999999986184,-0.06860783236625202 +38357,191.78499999986184,-0.06860783264971707 +38358,191.78999999986183,-0.06860783293316014 +38359,191.79499999986183,-0.06860783321658123 +38360,191.79999999986183,-0.06860783349998034 +38361,191.80499999986182,-0.0686078337833575 +38362,191.80999999986182,-0.06860783406671267 +38363,191.8149999998618,-0.06860783435004587 +38364,191.8199999998618,-0.06860783463335711 +38365,191.8249999998618,-0.0686078349166464 +38366,191.8299999998618,-0.06860783519991372 +38367,191.8349999998618,-0.06860783548315905 +38368,191.8399999998618,-0.06860783576638242 +38369,191.84499999986178,-0.06860783604958383 +38370,191.84999999986178,-0.06860783633276327 +38371,191.85499999986177,-0.06860783661592075 +38372,191.85999999986177,-0.06860783689905625 +38373,191.86499999986177,-0.0686078371821698 +38374,191.86999999986176,-0.06860783746526139 +38375,191.87499999986176,-0.06860783774833101 +38376,191.87999999986175,-0.06860783803137867 +38377,191.88499999986175,-0.06860783831440437 +38378,191.88999999986174,-0.0686078385974081 +38379,191.89499999986174,-0.06860783888038988 +38380,191.89999999986173,-0.0686078391633497 +38381,191.90499999986173,-0.06860783944628755 +38382,191.90999999986172,-0.06860783972920347 +38383,191.91499999986172,-0.06860784001209741 +38384,191.91999999986172,-0.06860784029496941 +38385,191.9249999998617,-0.06860784057781945 +38386,191.9299999998617,-0.06860784086064753 +38387,191.9349999998617,-0.06860784114345365 +38388,191.9399999998617,-0.06860784142623783 +38389,191.9449999998617,-0.06860784170900004 +38390,191.9499999998617,-0.0686078419917403 +38391,191.95499999986168,-0.06860784227445862 +38392,191.95999999986168,-0.06860784255715498 +38393,191.96499999986167,-0.06860784283982939 +38394,191.96999999986167,-0.06860784312248186 +38395,191.97499999986167,-0.06860784340511236 +38396,191.97999999986166,-0.06860784368772094 +38397,191.98499999986166,-0.06860784397030754 +38398,191.98999999986165,-0.06860784425287221 +38399,191.99499999986165,-0.06860784453541492 +38400,191.99999999986164,-0.0686078448179357 +38401,192.00499999986164,-0.06860784510043454 +38402,192.00999999986163,-0.06860784538291143 +38403,192.01499999986163,-0.06860784566536636 +38404,192.01999999986162,-0.06860784594779935 +38405,192.02499999986162,-0.0686078462302104 +38406,192.02999999986162,-0.0686078465125995 +38407,192.0349999998616,-0.06860784679496668 +38408,192.0399999998616,-0.0686078470773119 +38409,192.0449999998616,-0.06860784735963518 +38410,192.0499999998616,-0.06860784764193653 +38411,192.0549999998616,-0.06860784792421595 +38412,192.0599999998616,-0.06860784820647342 +38413,192.06499999986158,-0.06860784848870896 +38414,192.06999999986158,-0.06860784877092255 +38415,192.07499999986157,-0.0686078490531142 +38416,192.07999999986157,-0.06860784933528394 +38417,192.08499999986157,-0.06860784961743173 +38418,192.08999999986156,-0.06860784989955758 +38419,192.09499999986156,-0.0686078501816615 +38420,192.09999999986155,-0.06860785046374349 +38421,192.10499999986155,-0.06860785074580354 +38422,192.10999999986154,-0.06860785102784166 +38423,192.11499999986154,-0.06860785130985785 +38424,192.11999999986153,-0.0686078515918521 +38425,192.12499999986153,-0.06860785187382444 +38426,192.12999999986152,-0.06860785215577485 +38427,192.13499999986152,-0.06860785243770333 +38428,192.13999999986152,-0.06860785271960987 +38429,192.1449999998615,-0.0686078530014945 +38430,192.1499999998615,-0.0686078532833572 +38431,192.1549999998615,-0.06860785356519795 +38432,192.1599999998615,-0.0686078538470168 +38433,192.1649999998615,-0.06860785412881372 +38434,192.1699999998615,-0.0686078544105887 +38435,192.17499999986148,-0.06860785469234176 +38436,192.17999999986148,-0.06860785497407292 +38437,192.18499999986147,-0.06860785525578213 +38438,192.18999999986147,-0.06860785553746944 +38439,192.19499999986147,-0.06860785581913481 +38440,192.19999999986146,-0.06860785610077828 +38441,192.20499999986146,-0.06860785638239981 +38442,192.20999999986145,-0.06860785666399945 +38443,192.21499999986145,-0.06860785694557714 +38444,192.21999999986144,-0.06860785722713293 +38445,192.22499999986144,-0.0686078575086668 +38446,192.22999999986143,-0.06860785779017875 +38447,192.23499999986143,-0.06860785807166879 +38448,192.23999999986142,-0.0686078583531369 +38449,192.24499999986142,-0.06860785863458312 +38450,192.24999999986142,-0.0686078589160074 +38451,192.2549999998614,-0.06860785919740978 +38452,192.2599999998614,-0.06860785947879026 +38453,192.2649999998614,-0.06860785976014883 +38454,192.2699999998614,-0.06860786004148549 +38455,192.2749999998614,-0.06860786032280022 +38456,192.2799999998614,-0.06860786060409305 +38457,192.28499999986138,-0.06860786088536397 +38458,192.28999999986138,-0.06860786116661298 +38459,192.29499999986137,-0.06860786144784008 +38460,192.29999999986137,-0.06860786172904529 +38461,192.30499999986137,-0.06860786201022857 +38462,192.30999999986136,-0.06860786229138996 +38463,192.31499999986136,-0.06860786257252945 +38464,192.31999999986135,-0.06860786285364702 +38465,192.32499999986135,-0.06860786313474271 +38466,192.32999999986134,-0.06860786341581647 +38467,192.33499999986134,-0.06860786369686833 +38468,192.33999999986133,-0.06860786397789831 +38469,192.34499999986133,-0.06860786425890637 +38470,192.34999999986132,-0.06860786453989255 +38471,192.35499999986132,-0.06860786482085682 +38472,192.35999999986132,-0.0686078651017992 +38473,192.3649999998613,-0.06860786538271967 +38474,192.3699999998613,-0.06860786566361825 +38475,192.3749999998613,-0.06860786594449492 +38476,192.3799999998613,-0.0686078662253497 +38477,192.3849999998613,-0.06860786650618257 +38478,192.3899999998613,-0.06860786678699357 +38479,192.39499999986128,-0.06860786706778267 +38480,192.39999999986128,-0.06860786734854986 +38481,192.40499999986127,-0.06860786762929517 +38482,192.40999999986127,-0.06860786791001859 +38483,192.41499999986127,-0.06860786819072011 +38484,192.41999999986126,-0.06860786847139975 +38485,192.42499999986126,-0.0686078687520575 +38486,192.42999999986125,-0.06860786903269336 +38487,192.43499999986125,-0.06860786931330734 +38488,192.43999999986124,-0.0686078695938994 +38489,192.44499999986124,-0.0686078698744696 +38490,192.44999999986123,-0.0686078701550179 +38491,192.45499999986123,-0.06860787043554432 +38492,192.45999999986122,-0.06860787071604886 +38493,192.46499999986122,-0.06860787099653153 +38494,192.46999999986122,-0.06860787127699229 +38495,192.4749999998612,-0.06860787155743117 +38496,192.4799999998612,-0.06860787183784817 +38497,192.4849999998612,-0.06860787211824328 +38498,192.4899999998612,-0.06860787239861653 +38499,192.4949999998612,-0.06860787267896788 +38500,192.4999999998612,-0.06860787295929735 +38501,192.50499999986118,-0.06860787323960496 +38502,192.50999999986118,-0.06860787351989067 +38503,192.51499999986117,-0.06860787380015451 +38504,192.51999999986117,-0.06860787408039647 +38505,192.52499999986117,-0.06860787436061656 +38506,192.52999999986116,-0.06860787464081478 +38507,192.53499999986116,-0.06860787492099112 +38508,192.53999999986115,-0.06860787520114557 +38509,192.54499999986115,-0.06860787548127815 +38510,192.54999999986114,-0.06860787576138887 +38511,192.55499999986114,-0.06860787604147771 +38512,192.55999999986113,-0.06860787632154468 +38513,192.56499999986113,-0.06860787660158978 +38514,192.56999999986112,-0.06860787688161302 +38515,192.57499999986112,-0.06860787716161437 +38516,192.57999999986112,-0.06860787744159386 +38517,192.5849999998611,-0.06860787772155148 +38518,192.5899999998611,-0.06860787800148724 +38519,192.5949999998611,-0.06860787828140114 +38520,192.5999999998611,-0.06860787856129315 +38521,192.6049999998611,-0.0686078788411633 +38522,192.6099999998611,-0.0686078791210116 +38523,192.61499999986108,-0.06860787940083801 +38524,192.61999999986108,-0.06860787968064258 +38525,192.62499999986107,-0.06860787996042528 +38526,192.62999999986107,-0.06860788024018612 +38527,192.63499999986107,-0.0686078805199251 +38528,192.63999999986106,-0.06860788079964222 +38529,192.64499999986106,-0.06860788107933748 +38530,192.64999999986105,-0.06860788135901087 +38531,192.65499999986105,-0.06860788163866242 +38532,192.65999999986104,-0.06860788191829209 +38533,192.66499999986104,-0.06860788219789991 +38534,192.66999999986103,-0.06860788247748588 +38535,192.67499999986103,-0.06860788275704997 +38536,192.67999999986102,-0.06860788303659224 +38537,192.68499999986102,-0.06860788331611264 +38538,192.68999999986102,-0.0686078835956112 +38539,192.694999999861,-0.0686078838750879 +38540,192.699999999861,-0.06860788415454273 +38541,192.704999999861,-0.06860788443397572 +38542,192.709999999861,-0.06860788471338687 +38543,192.714999999861,-0.06860788499277615 +38544,192.719999999861,-0.06860788527214359 +38545,192.72499999986098,-0.06860788555148918 +38546,192.72999999986098,-0.06860788583081293 +38547,192.73499999986097,-0.06860788611011483 +38548,192.73999999986097,-0.06860788638939487 +38549,192.74499999986097,-0.06860788666865307 +38550,192.74999999986096,-0.06860788694788943 +38551,192.75499999986096,-0.06860788722710393 +38552,192.75999999986095,-0.0686078875062966 +38553,192.76499999986095,-0.06860788778546742 +38554,192.76999999986094,-0.06860788806461639 +38555,192.77499999986094,-0.06860788834374353 +38556,192.77999999986093,-0.06860788862284882 +38557,192.78499999986093,-0.06860788890193227 +38558,192.78999999986092,-0.06860788918099389 +38559,192.79499999986092,-0.06860788946003368 +38560,192.79999999986092,-0.06860788973905162 +38561,192.8049999998609,-0.0686078900180477 +38562,192.8099999998609,-0.06860789029702198 +38563,192.8149999998609,-0.06860789057597441 +38564,192.8199999998609,-0.068607890854905 +38565,192.8249999998609,-0.06860789113381376 +38566,192.8299999998609,-0.06860789141270067 +38567,192.83499999986088,-0.06860789169156575 +38568,192.83999999986088,-0.06860789197040902 +38569,192.84499999986087,-0.06860789224923043 +38570,192.84999999986087,-0.06860789252803003 +38571,192.85499999986087,-0.06860789280680779 +38572,192.85999999986086,-0.06860789308556371 +38573,192.86499999986086,-0.06860789336429783 +38574,192.86999999986085,-0.0686078936430101 +38575,192.87499999986085,-0.06860789392170055 +38576,192.87999999986084,-0.06860789420036917 +38577,192.88499999986084,-0.06860789447901597 +38578,192.88999999986083,-0.06860789475764094 +38579,192.89499999986083,-0.06860789503624408 +38580,192.89999999986082,-0.06860789531482539 +38581,192.90499999986082,-0.06860789559338487 +38582,192.90999999986082,-0.06860789587192254 +38583,192.9149999998608,-0.06860789615043839 +38584,192.9199999998608,-0.0686078964289324 +38585,192.9249999998608,-0.06860789670740461 +38586,192.9299999998608,-0.068607896985855 +38587,192.9349999998608,-0.06860789726428355 +38588,192.9399999998608,-0.0686078975426903 +38589,192.94499999986078,-0.06860789782107522 +38590,192.94999999986078,-0.06860789809943833 +38591,192.95499999986077,-0.06860789837777963 +38592,192.95999999986077,-0.06860789865609909 +38593,192.96499999986077,-0.06860789893439675 +38594,192.96999999986076,-0.0686078992126726 +38595,192.97499999986076,-0.06860789949092665 +38596,192.97999999986075,-0.06860789976915886 +38597,192.98499999986075,-0.06860790004736927 +38598,192.98999999986074,-0.06860790032555787 +38599,192.99499999986074,-0.06860790060372464 +38600,192.99999999986073,-0.06860790088186962 +38601,193.00499999986073,-0.06860790115999278 +38602,193.00999999986072,-0.06860790143809413 +38603,193.01499999986072,-0.06860790171617367 +38604,193.01999999986072,-0.06860790199423142 +38605,193.0249999998607,-0.06860790227226735 +38606,193.0299999998607,-0.06860790255028147 +38607,193.0349999998607,-0.06860790282827378 +38608,193.0399999998607,-0.06860790310624429 +38609,193.0449999998607,-0.06860790338419301 +38610,193.0499999998607,-0.06860790366211993 +38611,193.05499999986068,-0.06860790394002503 +38612,193.05999999986068,-0.06860790421790833 +38613,193.06499999986067,-0.06860790449576983 +38614,193.06999999986067,-0.06860790477360953 +38615,193.07499999986067,-0.06860790505142744 +38616,193.07999999986066,-0.06860790532922355 +38617,193.08499999986066,-0.06860790560699785 +38618,193.08999999986065,-0.06860790588475035 +38619,193.09499999986065,-0.06860790616248105 +38620,193.09999999986064,-0.06860790644018998 +38621,193.10499999986064,-0.0686079067178771 +38622,193.10999999986063,-0.06860790699554242 +38623,193.11499999986063,-0.06860790727318596 +38624,193.11999999986062,-0.0686079075508077 +38625,193.12499999986062,-0.06860790782840764 +38626,193.12999999986062,-0.0686079081059858 +38627,193.1349999998606,-0.06860790838354217 +38628,193.1399999998606,-0.06860790866107673 +38629,193.1449999998606,-0.06860790893858952 +38630,193.1499999998606,-0.06860790921608051 +38631,193.1549999998606,-0.06860790949354971 +38632,193.1599999998606,-0.06860790977099712 +38633,193.16499999986058,-0.06860791004842276 +38634,193.16999999986058,-0.0686079103258266 +38635,193.17499999986057,-0.06860791060320866 +38636,193.17999999986057,-0.06860791088056893 +38637,193.18499999986057,-0.06860791115790742 +38638,193.18999999986056,-0.06860791143522413 +38639,193.19499999986056,-0.06860791171251905 +38640,193.19999999986055,-0.0686079119897922 +38641,193.20499999986055,-0.06860791226704356 +38642,193.20999999986054,-0.06860791254427315 +38643,193.21499999986054,-0.06860791282148096 +38644,193.21999999986053,-0.06860791309866697 +38645,193.22499999986053,-0.06860791337583122 +38646,193.22999999986052,-0.0686079136529737 +38647,193.23499999986052,-0.06860791393009438 +38648,193.23999999986052,-0.06860791420719331 +38649,193.2449999998605,-0.06860791448427044 +38650,193.2499999998605,-0.0686079147613258 +38651,193.2549999998605,-0.06860791503835939 +38652,193.2599999998605,-0.06860791531537122 +38653,193.2649999998605,-0.06860791559236126 +38654,193.2699999998605,-0.06860791586932954 +38655,193.27499999986048,-0.06860791614627605 +38656,193.27999999986048,-0.0686079164232008 +38657,193.28499999986047,-0.06860791670010376 +38658,193.28999999986047,-0.06860791697698496 +38659,193.29499999986047,-0.06860791725384438 +38660,193.29999999986046,-0.06860791753068204 +38661,193.30499999986046,-0.06860791780749795 +38662,193.30999999986045,-0.06860791808429206 +38663,193.31499999986045,-0.06860791836106443 +38664,193.31999999986044,-0.06860791863781504 +38665,193.32499999986044,-0.06860791891454388 +38666,193.32999999986043,-0.06860791919125095 +38667,193.33499999986043,-0.06860791946793626 +38668,193.33999999986042,-0.06860791974459982 +38669,193.34499999986042,-0.06860792002124161 +38670,193.34999999986042,-0.06860792029786164 +38671,193.3549999998604,-0.06860792057445991 +38672,193.3599999998604,-0.06860792085103642 +38673,193.3649999998604,-0.06860792112759119 +38674,193.3699999998604,-0.06860792140412418 +38675,193.3749999998604,-0.06860792168063543 +38676,193.3799999998604,-0.06860792195712492 +38677,193.38499999986038,-0.06860792223359265 +38678,193.38999999986038,-0.06860792251003862 +38679,193.39499999986037,-0.06860792278646285 +38680,193.39999999986037,-0.06860792306286533 +38681,193.40499999986037,-0.06860792333924605 +38682,193.40999999986036,-0.06860792361560501 +38683,193.41499999986036,-0.06860792389194224 +38684,193.41999999986035,-0.06860792416825771 +38685,193.42499999986035,-0.06860792444455142 +38686,193.42999999986034,-0.0686079247208234 +38687,193.43499999986034,-0.06860792499707362 +38688,193.43999999986033,-0.0686079252733021 +38689,193.44499999986033,-0.06860792554950884 +38690,193.44999999986032,-0.06860792582569383 +38691,193.45499999986032,-0.06860792610185708 +38692,193.45999999986032,-0.06860792637799858 +38693,193.4649999998603,-0.06860792665411834 +38694,193.4699999998603,-0.06860792693021636 +38695,193.4749999998603,-0.06860792720629265 +38696,193.4799999998603,-0.06860792748234718 +38697,193.4849999998603,-0.06860792775837997 +38698,193.4899999998603,-0.06860792803439103 +38699,193.49499999986028,-0.06860792831038033 +38700,193.49999999986028,-0.06860792858634791 +38701,193.50499999986027,-0.06860792886229375 +38702,193.50999999986027,-0.06860792913821785 +38703,193.51499999986027,-0.06860792941412022 +38704,193.51999999986026,-0.06860792969000086 +38705,193.52499999986026,-0.06860792996585975 +38706,193.52999999986025,-0.06860793024169692 +38707,193.53499999986025,-0.06860793051751236 +38708,193.53999999986024,-0.06860793079330606 +38709,193.54499999986024,-0.06860793106907802 +38710,193.54999999986023,-0.06860793134482826 +38711,193.55499999986023,-0.06860793162055677 +38712,193.55999999986022,-0.06860793189626355 +38713,193.56499999986022,-0.0686079321719486 +38714,193.56999999986022,-0.06860793244761193 +38715,193.5749999998602,-0.06860793272325352 +38716,193.5799999998602,-0.06860793299887341 +38717,193.5849999998602,-0.06860793327447157 +38718,193.5899999998602,-0.06860793355004799 +38719,193.5949999998602,-0.0686079338256027 +38720,193.5999999998602,-0.06860793410113566 +38721,193.60499999986018,-0.06860793437664693 +38722,193.60999999986018,-0.06860793465213647 +38723,193.61499999986017,-0.06860793492760428 +38724,193.61999999986017,-0.06860793520305038 +38725,193.62499999986017,-0.06860793547847474 +38726,193.62999999986016,-0.0686079357538774 +38727,193.63499999986016,-0.06860793602925834 +38728,193.63999999986015,-0.06860793630461758 +38729,193.64499999986015,-0.06860793657995506 +38730,193.64999999986014,-0.06860793685527085 +38731,193.65499999986014,-0.06860793713056493 +38732,193.65999999986013,-0.06860793740583729 +38733,193.66499999986013,-0.06860793768108793 +38734,193.66999999986012,-0.06860793795631688 +38735,193.67499999986012,-0.0686079382315241 +38736,193.67999999986012,-0.06860793850670961 +38737,193.6849999998601,-0.06860793878187342 +38738,193.6899999998601,-0.06860793905701551 +38739,193.6949999998601,-0.0686079393321359 +38740,193.6999999998601,-0.06860793960723459 +38741,193.7049999998601,-0.06860793988231155 +38742,193.7099999998601,-0.06860794015736683 +38743,193.71499999986008,-0.06860794043240039 +38744,193.71999999986008,-0.06860794070741225 +38745,193.72499999986007,-0.06860794098240239 +38746,193.72999999986007,-0.06860794125737082 +38747,193.73499999986007,-0.06860794153231757 +38748,193.73999999986006,-0.06860794180724261 +38749,193.74499999986006,-0.06860794208214596 +38750,193.74999999986005,-0.0686079423570276 +38751,193.75499999986005,-0.06860794263188755 +38752,193.75999999986004,-0.06860794290672578 +38753,193.76499999986004,-0.06860794318154233 +38754,193.76999999986003,-0.06860794345633717 +38755,193.77499999986003,-0.06860794373111033 +38756,193.77999999986002,-0.06860794400586179 +38757,193.78499999986002,-0.06860794428059154 +38758,193.78999999986002,-0.0686079445552996 +38759,193.79499999986,-0.06860794482998597 +38760,193.79999999986,-0.06860794510465065 +38761,193.80499999986,-0.06860794537929364 +38762,193.80999999986,-0.06860794565391494 +38763,193.81499999986,-0.06860794592851455 +38764,193.81999999986,-0.06860794620309245 +38765,193.82499999985998,-0.06860794647764869 +38766,193.82999999985998,-0.06860794675218322 +38767,193.83499999985997,-0.06860794702669606 +38768,193.83999999985997,-0.06860794730118723 +38769,193.84499999985997,-0.06860794757565669 +38770,193.84999999985996,-0.06860794785010449 +38771,193.85499999985996,-0.06860794812453061 +38772,193.85999999985995,-0.06860794839893504 +38773,193.86499999985995,-0.06860794867331778 +38774,193.86999999985994,-0.06860794894767884 +38775,193.87499999985994,-0.06860794922201821 +38776,193.87999999985993,-0.0686079494963359 +38777,193.88499999985993,-0.06860794977063192 +38778,193.88999999985992,-0.06860795004490626 +38779,193.89499999985992,-0.06860795031915892 +38780,193.89999999985992,-0.06860795059338991 +38781,193.9049999998599,-0.0686079508675992 +38782,193.9099999998599,-0.06860795114178683 +38783,193.9149999998599,-0.06860795141595279 +38784,193.9199999998599,-0.06860795169009706 +38785,193.9249999998599,-0.06860795196421968 +38786,193.9299999998599,-0.06860795223832061 +38787,193.93499999985988,-0.06860795251239986 +38788,193.93999999985988,-0.06860795278645744 +38789,193.94499999985987,-0.06860795306049337 +38790,193.94999999985987,-0.06860795333450763 +38791,193.95499999985987,-0.06860795360850021 +38792,193.95999999985986,-0.06860795388247112 +38793,193.96499999985986,-0.06860795415642036 +38794,193.96999999985985,-0.06860795443034795 +38795,193.97499999985985,-0.06860795470425386 +38796,193.97999999985984,-0.0686079549781381 +38797,193.98499999985984,-0.06860795525200068 +38798,193.98999999985983,-0.06860795552584159 +38799,193.99499999985983,-0.06860795579966085 +38800,193.99999999985982,-0.06860795607345845 +38801,194.00499999985982,-0.06860795634723436 +38802,194.00999999985982,-0.06860795662098863 +38803,194.0149999998598,-0.06860795689472124 +38804,194.0199999998598,-0.0686079571684322 +38805,194.0249999998598,-0.06860795744212149 +38806,194.0299999998598,-0.06860795771578913 +38807,194.0349999998598,-0.06860795798943511 +38808,194.0399999998598,-0.06860795826305943 +38809,194.04499999985978,-0.0686079585366621 +38810,194.04999999985978,-0.0686079588102431 +38811,194.05499999985977,-0.06860795908380246 +38812,194.05999999985977,-0.06860795935734017 +38813,194.06499999985977,-0.06860795963085621 +38814,194.06999999985976,-0.06860795990435062 +38815,194.07499999985976,-0.06860796017782338 +38816,194.07999999985975,-0.06860796045127449 +38817,194.08499999985975,-0.06860796072470393 +38818,194.08999999985974,-0.06860796099811174 +38819,194.09499999985974,-0.06860796127149789 +38820,194.09999999985973,-0.06860796154486239 +38821,194.10499999985973,-0.06860796181820526 +38822,194.10999999985972,-0.06860796209152648 +38823,194.11499999985972,-0.06860796236482605 +38824,194.11999999985971,-0.06860796263810398 +38825,194.1249999998597,-0.06860796291136027 +38826,194.1299999998597,-0.06860796318459493 +38827,194.1349999998597,-0.06860796345780792 +38828,194.1399999998597,-0.06860796373099928 +38829,194.1449999998597,-0.068607964004169 +38830,194.1499999998597,-0.0686079642773171 +38831,194.15499999985968,-0.06860796455044355 +38832,194.15999999985968,-0.06860796482354835 +38833,194.16499999985967,-0.06860796509663152 +38834,194.16999999985967,-0.06860796536969305 +38835,194.17499999985966,-0.06860796564273296 +38836,194.17999999985966,-0.06860796591575122 +38837,194.18499999985966,-0.06860796618874786 +38838,194.18999999985965,-0.06860796646172286 +38839,194.19499999985965,-0.06860796673467623 +38840,194.19999999985964,-0.06860796700760798 +38841,194.20499999985964,-0.06860796728051807 +38842,194.20999999985963,-0.06860796755340653 +38843,194.21499999985963,-0.06860796782627339 +38844,194.21999999985962,-0.06860796809911861 +38845,194.22499999985962,-0.0686079683719422 +38846,194.22999999985961,-0.06860796864474418 +38847,194.2349999998596,-0.06860796891752452 +38848,194.2399999998596,-0.06860796919028322 +38849,194.2449999998596,-0.06860796946302032 +38850,194.2499999998596,-0.0686079697357358 +38851,194.2549999998596,-0.06860797000842964 +38852,194.2599999998596,-0.06860797028110185 +38853,194.26499999985958,-0.06860797055375245 +38854,194.26999999985958,-0.06860797082638144 +38855,194.27499999985957,-0.0686079710989888 +38856,194.27999999985957,-0.06860797137157454 +38857,194.28499999985956,-0.06860797164413866 +38858,194.28999999985956,-0.06860797191668117 +38859,194.29499999985956,-0.06860797218920206 +38860,194.29999999985955,-0.06860797246170133 +38861,194.30499999985955,-0.068607972734179 +38862,194.30999999985954,-0.06860797300663506 +38863,194.31499999985954,-0.06860797327906948 +38864,194.31999999985953,-0.0686079735514823 +38865,194.32499999985953,-0.06860797382387351 +38866,194.32999999985952,-0.06860797409624311 +38867,194.33499999985952,-0.0686079743685911 +38868,194.33999999985951,-0.06860797464091747 +38869,194.3449999998595,-0.06860797491322225 +38870,194.3499999998595,-0.06860797518550542 +38871,194.3549999998595,-0.06860797545776696 +38872,194.3599999998595,-0.06860797573000693 +38873,194.3649999998595,-0.06860797600222528 +38874,194.3699999998595,-0.06860797627442201 +38875,194.37499999985948,-0.06860797654659716 +38876,194.37999999985948,-0.0686079768187507 +38877,194.38499999985947,-0.06860797709088262 +38878,194.38999999985947,-0.06860797736299294 +38879,194.39499999985946,-0.06860797763508167 +38880,194.39999999985946,-0.0686079779071488 +38881,194.40499999985946,-0.06860797817919434 +38882,194.40999999985945,-0.06860797845121827 +38883,194.41499999985945,-0.06860797872322061 +38884,194.41999999985944,-0.06860797899520135 +38885,194.42499999985944,-0.06860797926716049 +38886,194.42999999985943,-0.06860797953909804 +38887,194.43499999985943,-0.06860797981101399 +38888,194.43999999985942,-0.06860798008290836 +38889,194.44499999985942,-0.06860798035478112 +38890,194.44999999985941,-0.0686079806266323 +38891,194.4549999998594,-0.06860798089846189 +38892,194.4599999998594,-0.06860798117026988 +38893,194.4649999998594,-0.06860798144205629 +38894,194.4699999998594,-0.06860798171382111 +38895,194.4749999998594,-0.06860798198556434 +38896,194.4799999998594,-0.06860798225728598 +38897,194.48499999985938,-0.06860798252898605 +38898,194.48999999985938,-0.06860798280066452 +38899,194.49499999985937,-0.06860798307232141 +38900,194.49999999985937,-0.06860798334395671 +38901,194.50499999985936,-0.06860798361557043 +38902,194.50999999985936,-0.06860798388716256 +38903,194.51499999985936,-0.06860798415873312 +38904,194.51999999985935,-0.06860798443028208 +38905,194.52499999985935,-0.06860798470180948 +38906,194.52999999985934,-0.0686079849733153 +38907,194.53499999985934,-0.06860798524479954 +38908,194.53999999985933,-0.0686079855162622 +38909,194.54499999985933,-0.06860798578770327 +38910,194.54999999985932,-0.06860798605912279 +38911,194.55499999985932,-0.06860798633052072 +38912,194.55999999985931,-0.06860798660189707 +38913,194.5649999998593,-0.06860798687325184 +38914,194.5699999998593,-0.06860798714458505 +38915,194.5749999998593,-0.06860798741589669 +38916,194.5799999998593,-0.06860798768718676 +38917,194.5849999998593,-0.06860798795845527 +38918,194.5899999998593,-0.0686079882297022 +38919,194.59499999985928,-0.06860798850092756 +38920,194.59999999985928,-0.06860798877213135 +38921,194.60499999985927,-0.06860798904331358 +38922,194.60999999985927,-0.06860798931447425 +38923,194.61499999985926,-0.06860798958561333 +38924,194.61999999985926,-0.06860798985673086 +38925,194.62499999985926,-0.06860799012782683 +38926,194.62999999985925,-0.06860799039890123 +38927,194.63499999985925,-0.06860799066995406 +38928,194.63999999985924,-0.06860799094098535 +38929,194.64499999985924,-0.06860799121199505 +38930,194.64999999985923,-0.06860799148298322 +38931,194.65499999985923,-0.06860799175394981 +38932,194.65999999985922,-0.06860799202489484 +38933,194.66499999985922,-0.06860799229581832 +38934,194.66999999985921,-0.06860799256672025 +38935,194.6749999998592,-0.0686079928376006 +38936,194.6799999998592,-0.06860799310845943 +38937,194.6849999998592,-0.06860799337929668 +38938,194.6899999998592,-0.06860799365011239 +38939,194.6949999998592,-0.06860799392090655 +38940,194.6999999998592,-0.06860799419167915 +38941,194.70499999985918,-0.0686079944624302 +38942,194.70999999985918,-0.0686079947331597 +38943,194.71499999985917,-0.06860799500386766 +38944,194.71999999985917,-0.06860799527455406 +38945,194.72499999985916,-0.06860799554521892 +38946,194.72999999985916,-0.06860799581586223 +38947,194.73499999985916,-0.06860799608648399 +38948,194.73999999985915,-0.0686079963570842 +38949,194.74499999985915,-0.06860799662766287 +38950,194.74999999985914,-0.06860799689821999 +38951,194.75499999985914,-0.06860799716875558 +38952,194.75999999985913,-0.06860799743926964 +38953,194.76499999985913,-0.06860799770976214 +38954,194.76999999985912,-0.0686079979802331 +38955,194.77499999985912,-0.06860799825068253 +38956,194.77999999985911,-0.06860799852111042 +38957,194.7849999998591,-0.06860799879151676 +38958,194.7899999998591,-0.06860799906190157 +38959,194.7949999998591,-0.06860799933226484 +38960,194.7999999998591,-0.06860799960260656 +38961,194.8049999998591,-0.06860799987292678 +38962,194.8099999998591,-0.06860800014322543 +38963,194.81499999985908,-0.06860800041350258 +38964,194.81999999985908,-0.06860800068375818 +38965,194.82499999985907,-0.06860800095399225 +38966,194.82999999985907,-0.06860800122420478 +38967,194.83499999985906,-0.06860800149439579 +38968,194.83999999985906,-0.06860800176456527 +38969,194.84499999985906,-0.06860800203471322 +38970,194.84999999985905,-0.06860800230483964 +38971,194.85499999985905,-0.06860800257494455 +38972,194.85999999985904,-0.06860800284502792 +38973,194.86499999985904,-0.06860800311508977 +38974,194.86999999985903,-0.0686080033851301 +38975,194.87499999985903,-0.0686080036551489 +38976,194.87999999985902,-0.06860800392514617 +38977,194.88499999985902,-0.06860800419512192 +38978,194.88999999985901,-0.06860800446507614 +38979,194.894999999859,-0.06860800473500886 +38980,194.899999999859,-0.06860800500492006 +38981,194.904999999859,-0.06860800527480974 +38982,194.909999999859,-0.0686080055446779 +38983,194.914999999859,-0.06860800581452453 +38984,194.919999999859,-0.06860800608434965 +38985,194.92499999985898,-0.06860800635415326 +38986,194.92999999985898,-0.06860800662393536 +38987,194.93499999985897,-0.06860800689369595 +38988,194.93999999985897,-0.06860800716343501 +38989,194.94499999985896,-0.06860800743315258 +38990,194.94999999985896,-0.06860800770284863 +38991,194.95499999985896,-0.06860800797252317 +38992,194.95999999985895,-0.0686080082421762 +38993,194.96499999985895,-0.0686080085118077 +38994,194.96999999985894,-0.06860800878141772 +38995,194.97499999985894,-0.06860800905100622 +38996,194.97999999985893,-0.06860800932057322 +38997,194.98499999985893,-0.06860800959011872 +38998,194.98999999985892,-0.0686080098596427 +38999,194.99499999985892,-0.06860801012914519 +39000,194.99999999985891,-0.06860801039862617 +39001,195.0049999998589,-0.06860801066808564 +39002,195.0099999998589,-0.06860801093752361 +39003,195.0149999998589,-0.06860801120694009 +39004,195.0199999998589,-0.06860801147633507 +39005,195.0249999998589,-0.06860801174570855 +39006,195.0299999998589,-0.06860801201506055 +39007,195.03499999985888,-0.06860801228439102 +39008,195.03999999985888,-0.06860801255370001 +39009,195.04499999985887,-0.06860801282298751 +39010,195.04999999985887,-0.0686080130922535 +39011,195.05499999985886,-0.06860801336149801 +39012,195.05999999985886,-0.06860801363072103 +39013,195.06499999985886,-0.06860801389992253 +39014,195.06999999985885,-0.06860801416910256 +39015,195.07499999985885,-0.06860801443826109 +39016,195.07999999985884,-0.06860801470739815 +39017,195.08499999985884,-0.0686080149765137 +39018,195.08999999985883,-0.06860801524560778 +39019,195.09499999985883,-0.06860801551468036 +39020,195.09999999985882,-0.06860801578373146 +39021,195.10499999985882,-0.06860801605276108 +39022,195.10999999985881,-0.0686080163217692 +39023,195.1149999998588,-0.06860801659075584 +39024,195.1199999998588,-0.068608016859721 +39025,195.1249999998588,-0.06860801712866467 +39026,195.1299999998588,-0.06860801739758686 +39027,195.1349999998588,-0.06860801766648758 +39028,195.1399999998588,-0.06860801793536682 +39029,195.14499999985878,-0.06860801820422457 +39030,195.14999999985878,-0.06860801847306085 +39031,195.15499999985877,-0.06860801874187565 +39032,195.15999999985877,-0.06860801901066899 +39033,195.16499999985876,-0.06860801927944082 +39034,195.16999999985876,-0.0686080195481912 +39035,195.17499999985876,-0.0686080198169201 +39036,195.17999999985875,-0.06860802008562751 +39037,195.18499999985875,-0.06860802035431347 +39038,195.18999999985874,-0.06860802062297795 +39039,195.19499999985874,-0.06860802089162096 +39040,195.19999999985873,-0.06860802116024252 +39041,195.20499999985873,-0.06860802142884259 +39042,195.20999999985872,-0.0686080216974212 +39043,195.21499999985872,-0.06860802196597834 +39044,195.21999999985871,-0.06860802223451401 +39045,195.2249999998587,-0.06860802250302821 +39046,195.2299999998587,-0.06860802277152095 +39047,195.2349999998587,-0.06860802303999224 +39048,195.2399999998587,-0.06860802330844204 +39049,195.2449999998587,-0.06860802357687039 +39050,195.2499999998587,-0.06860802384527728 +39051,195.25499999985868,-0.06860802411366272 +39052,195.25999999985868,-0.0686080243820267 +39053,195.26499999985867,-0.0686080246503692 +39054,195.26999999985867,-0.06860802491869027 +39055,195.27499999985866,-0.06860802518698987 +39056,195.27999999985866,-0.068608025455268 +39057,195.28499999985866,-0.06860802572352469 +39058,195.28999999985865,-0.06860802599175991 +39059,195.29499999985865,-0.06860802625997368 +39060,195.29999999985864,-0.06860802652816601 +39061,195.30499999985864,-0.06860802679633687 +39062,195.30999999985863,-0.0686080270644863 +39063,195.31499999985863,-0.06860802733261426 +39064,195.31999999985862,-0.06860802760072078 +39065,195.32499999985862,-0.06860802786880585 +39066,195.32999999985861,-0.06860802813686946 +39067,195.3349999998586,-0.06860802840491163 +39068,195.3399999998586,-0.06860802867293236 +39069,195.3449999998586,-0.06860802894093165 +39070,195.3499999998586,-0.06860802920890949 +39071,195.3549999998586,-0.06860802947686588 +39072,195.3599999998586,-0.06860802974480083 +39073,195.36499999985858,-0.06860803001271434 +39074,195.36999999985858,-0.0686080302806064 +39075,195.37499999985857,-0.06860803054847703 +39076,195.37999999985857,-0.06860803081632622 +39077,195.38499999985856,-0.06860803108415396 +39078,195.38999999985856,-0.06860803135196028 +39079,195.39499999985856,-0.06860803161974514 +39080,195.39999999985855,-0.0686080318875086 +39081,195.40499999985855,-0.06860803215525059 +39082,195.40999999985854,-0.06860803242297116 +39083,195.41499999985854,-0.06860803269067028 +39084,195.41999999985853,-0.068608032958348 +39085,195.42499999985853,-0.06860803322600426 +39086,195.42999999985852,-0.06860803349363909 +39087,195.43499999985852,-0.06860803376125249 +39088,195.43999999985851,-0.06860803402884447 +39089,195.4449999998585,-0.06860803429641503 +39090,195.4499999998585,-0.06860803456396415 +39091,195.4549999998585,-0.06860803483149185 +39092,195.4599999998585,-0.06860803509899811 +39093,195.4649999998585,-0.06860803536648295 +39094,195.4699999998585,-0.06860803563394638 +39095,195.47499999985848,-0.06860803590138836 +39096,195.47999999985848,-0.06860803616880894 +39097,195.48499999985847,-0.06860803643620808 +39098,195.48999999985847,-0.06860803670358581 +39099,195.49499999985846,-0.06860803697094213 +39100,195.49999999985846,-0.068608037238277 +39101,195.50499999985846,-0.06860803750559047 +39102,195.50999999985845,-0.06860803777288253 +39103,195.51499999985845,-0.06860803804015317 +39104,195.51999999985844,-0.06860803830740238 +39105,195.52499999985844,-0.06860803857463019 +39106,195.52999999985843,-0.06860803884183657 +39107,195.53499999985843,-0.06860803910902155 +39108,195.53999999985842,-0.06860803937618512 +39109,195.54499999985842,-0.06860803964332728 +39110,195.54999999985841,-0.06860803991044802 +39111,195.5549999998584,-0.06860804017754735 +39112,195.5599999998584,-0.06860804044462528 +39113,195.5649999998584,-0.06860804071168179 +39114,195.5699999998584,-0.06860804097871691 +39115,195.5749999998584,-0.06860804124573061 +39116,195.5799999998584,-0.06860804151272289 +39117,195.58499999985838,-0.06860804177969378 +39118,195.58999999985838,-0.06860804204664327 +39119,195.59499999985837,-0.06860804231357134 +39120,195.59999999985837,-0.06860804258047803 +39121,195.60499999985836,-0.06860804284736331 +39122,195.60999999985836,-0.06860804311422719 +39123,195.61499999985836,-0.06860804338106967 +39124,195.61999999985835,-0.06860804364789073 +39125,195.62499999985835,-0.06860804391469043 +39126,195.62999999985834,-0.06860804418146871 +39127,195.63499999985834,-0.0686080444482256 +39128,195.63999999985833,-0.0686080447149611 +39129,195.64499999985833,-0.06860804498167519 +39130,195.64999999985832,-0.0686080452483679 +39131,195.65499999985832,-0.06860804551503921 +39132,195.65999999985831,-0.06860804578168914 +39133,195.6649999998583,-0.06860804604831766 +39134,195.6699999998583,-0.06860804631492479 +39135,195.6749999998583,-0.06860804658151054 +39136,195.6799999998583,-0.0686080468480749 +39137,195.6849999998583,-0.06860804711461786 +39138,195.6899999998583,-0.06860804738113944 +39139,195.69499999985828,-0.06860804764763964 +39140,195.69999999985828,-0.06860804791411844 +39141,195.70499999985827,-0.06860804818057588 +39142,195.70999999985827,-0.06860804844701193 +39143,195.71499999985826,-0.06860804871342659 +39144,195.71999999985826,-0.06860804897981987 +39145,195.72499999985826,-0.06860804924619177 +39146,195.72999999985825,-0.06860804951254229 +39147,195.73499999985825,-0.06860804977887143 +39148,195.73999999985824,-0.0686080500451792 +39149,195.74499999985824,-0.06860805031146558 +39150,195.74999999985823,-0.06860805057773058 +39151,195.75499999985823,-0.06860805084397421 +39152,195.75999999985822,-0.06860805111019647 +39153,195.76499999985822,-0.06860805137639736 +39154,195.76999999985821,-0.06860805164257687 +39155,195.7749999998582,-0.06860805190873501 +39156,195.7799999998582,-0.06860805217487177 +39157,195.7849999998582,-0.06860805244098717 +39158,195.7899999998582,-0.06860805270708119 +39159,195.7949999998582,-0.06860805297315385 +39160,195.7999999998582,-0.06860805323920513 +39161,195.80499999985818,-0.06860805350523505 +39162,195.80999999985818,-0.0686080537712436 +39163,195.81499999985817,-0.06860805403723079 +39164,195.81999999985817,-0.06860805430319661 +39165,195.82499999985816,-0.06860805456914108 +39166,195.82999999985816,-0.06860805483506417 +39167,195.83499999985816,-0.0686080551009659 +39168,195.83999999985815,-0.06860805536684628 +39169,195.84499999985815,-0.06860805563270529 +39170,195.84999999985814,-0.06860805589854295 +39171,195.85499999985814,-0.06860805616435924 +39172,195.85999999985813,-0.06860805643015418 +39173,195.86499999985813,-0.06860805669592776 +39174,195.86999999985812,-0.06860805696167997 +39175,195.87499999985812,-0.06860805722741085 +39176,195.87999999985811,-0.06860805749312038 +39177,195.8849999998581,-0.06860805775880853 +39178,195.8899999998581,-0.06860805802447534 +39179,195.8949999998581,-0.0686080582901208 +39180,195.8999999998581,-0.06860805855574491 +39181,195.9049999998581,-0.06860805882134767 +39182,195.9099999998581,-0.06860805908692907 +39183,195.91499999985808,-0.06860805935248913 +39184,195.91999999985808,-0.06860805961802785 +39185,195.92499999985807,-0.06860805988354522 +39186,195.92999999985807,-0.06860806014904125 +39187,195.93499999985806,-0.06860806041451593 +39188,195.93999999985806,-0.06860806067996927 +39189,195.94499999985806,-0.06860806094540127 +39190,195.94999999985805,-0.06860806121081191 +39191,195.95499999985805,-0.06860806147620122 +39192,195.95999999985804,-0.06860806174156918 +39193,195.96499999985804,-0.0686080620069158 +39194,195.96999999985803,-0.06860806227224109 +39195,195.97499999985803,-0.06860806253754503 +39196,195.97999999985802,-0.06860806280282765 +39197,195.98499999985802,-0.06860806306808892 +39198,195.98999999985801,-0.06860806333332888 +39199,195.994999999858,-0.06860806359854747 +39200,195.999999999858,-0.06860806386374475 +39201,196.004999999858,-0.06860806412892069 +39202,196.009999999858,-0.0686080643940753 +39203,196.014999999858,-0.06860806465920859 +39204,196.019999999858,-0.06860806492432053 +39205,196.02499999985798,-0.06860806518941115 +39206,196.02999999985798,-0.06860806545448044 +39207,196.03499999985797,-0.0686080657195284 +39208,196.03999999985797,-0.06860806598455504 +39209,196.04499999985796,-0.06860806624956035 +39210,196.04999999985796,-0.06860806651454435 +39211,196.05499999985796,-0.06860806677950701 +39212,196.05999999985795,-0.06860806704444834 +39213,196.06499999985795,-0.06860806730936837 +39214,196.06999999985794,-0.06860806757426707 +39215,196.07499999985794,-0.06860806783914444 +39216,196.07999999985793,-0.0686080681040005 +39217,196.08499999985793,-0.06860806836883523 +39218,196.08999999985792,-0.06860806863364866 +39219,196.09499999985792,-0.06860806889844076 +39220,196.0999999998579,-0.06860806916321155 +39221,196.1049999998579,-0.06860806942796104 +39222,196.1099999998579,-0.06860806969268919 +39223,196.1149999998579,-0.06860806995739603 +39224,196.1199999998579,-0.06860807022208157 +39225,196.1249999998579,-0.06860807048674579 +39226,196.1299999998579,-0.0686080707513887 +39227,196.13499999985788,-0.0686080710160103 +39228,196.13999999985788,-0.06860807128061058 +39229,196.14499999985787,-0.06860807154518958 +39230,196.14999999985787,-0.06860807180974726 +39231,196.15499999985786,-0.06860807207428363 +39232,196.15999999985786,-0.06860807233879869 +39233,196.16499999985786,-0.06860807260329246 +39234,196.16999999985785,-0.06860807286776492 +39235,196.17499999985785,-0.06860807313221608 +39236,196.17999999985784,-0.06860807339664593 +39237,196.18499999985784,-0.0686080736610545 +39238,196.18999999985783,-0.06860807392544174 +39239,196.19499999985783,-0.0686080741898077 +39240,196.19999999985782,-0.06860807445415235 +39241,196.20499999985782,-0.0686080747184757 +39242,196.2099999998578,-0.06860807498277777 +39243,196.2149999998578,-0.06860807524705854 +39244,196.2199999998578,-0.068608075511318 +39245,196.2249999998578,-0.0686080757755562 +39246,196.2299999998578,-0.06860807603977306 +39247,196.2349999998578,-0.06860807630396866 +39248,196.2399999998578,-0.06860807656814297 +39249,196.24499999985778,-0.06860807683229599 +39250,196.24999999985778,-0.06860807709642769 +39251,196.25499999985777,-0.06860807736053812 +39252,196.25999999985777,-0.06860807762462726 +39253,196.26499999985776,-0.06860807788869512 +39254,196.26999999985776,-0.0686080781527417 +39255,196.27499999985776,-0.06860807841676698 +39256,196.27999999985775,-0.06860807868077098 +39257,196.28499999985775,-0.0686080789447537 +39258,196.28999999985774,-0.06860807920871514 +39259,196.29499999985774,-0.06860807947265529 +39260,196.29999999985773,-0.06860807973657417 +39261,196.30499999985773,-0.06860808000047176 +39262,196.30999999985772,-0.06860808026434807 +39263,196.31499999985772,-0.06860808052820312 +39264,196.3199999998577,-0.06860808079203687 +39265,196.3249999998577,-0.06860808105584935 +39266,196.3299999998577,-0.06860808131964057 +39267,196.3349999998577,-0.0686080815834105 +39268,196.3399999998577,-0.06860808184715916 +39269,196.3449999998577,-0.06860808211088654 +39270,196.3499999998577,-0.06860808237459266 +39271,196.35499999985768,-0.0686080826382775 +39272,196.35999999985768,-0.06860808290194108 +39273,196.36499999985767,-0.06860808316558338 +39274,196.36999999985767,-0.06860808342920441 +39275,196.37499999985766,-0.06860808369280419 +39276,196.37999999985766,-0.06860808395638268 +39277,196.38499999985765,-0.06860808421993993 +39278,196.38999999985765,-0.0686080844834759 +39279,196.39499999985765,-0.0686080847469906 +39280,196.39999999985764,-0.06860808501048404 +39281,196.40499999985764,-0.06860808527395623 +39282,196.40999999985763,-0.06860808553740715 +39283,196.41499999985763,-0.0686080858008368 +39284,196.41999999985762,-0.06860808606424522 +39285,196.42499999985762,-0.06860808632763236 +39286,196.4299999998576,-0.06860808659099826 +39287,196.4349999998576,-0.06860808685434289 +39288,196.4399999998576,-0.06860808711766626 +39289,196.4449999998576,-0.06860808738096837 +39290,196.4499999998576,-0.06860808764424924 +39291,196.4549999998576,-0.06860808790750884 +39292,196.4599999998576,-0.0686080881707472 +39293,196.46499999985758,-0.0686080884339643 +39294,196.46999999985758,-0.06860808869716017 +39295,196.47499999985757,-0.06860808896033478 +39296,196.47999999985757,-0.06860808922348814 +39297,196.48499999985756,-0.06860808948662024 +39298,196.48999999985756,-0.06860808974973111 +39299,196.49499999985755,-0.06860809001282073 +39300,196.49999999985755,-0.0686080902758891 +39301,196.50499999985755,-0.06860809053893623 +39302,196.50999999985754,-0.0686080908019621 +39303,196.51499999985754,-0.06860809106496675 +39304,196.51999999985753,-0.06860809132795015 +39305,196.52499999985753,-0.06860809159091232 +39306,196.52999999985752,-0.06860809185385322 +39307,196.53499999985752,-0.0686080921167729 +39308,196.5399999998575,-0.06860809237967135 +39309,196.5449999998575,-0.06860809264254855 +39310,196.5499999998575,-0.06860809290540454 +39311,196.5549999998575,-0.06860809316823926 +39312,196.5599999998575,-0.06860809343105277 +39313,196.5649999998575,-0.06860809369384503 +39314,196.5699999998575,-0.06860809395661607 +39315,196.57499999985748,-0.06860809421936588 +39316,196.57999999985748,-0.06860809448209446 +39317,196.58499999985747,-0.06860809474480181 +39318,196.58999999985747,-0.06860809500748792 +39319,196.59499999985746,-0.0686080952701528 +39320,196.59999999985746,-0.06860809553279645 +39321,196.60499999985745,-0.06860809579541889 +39322,196.60999999985745,-0.0686080960580201 +39323,196.61499999985745,-0.06860809632060007 +39324,196.61999999985744,-0.06860809658315883 +39325,196.62499999985744,-0.06860809684569637 +39326,196.62999999985743,-0.06860809710821268 +39327,196.63499999985743,-0.06860809737070776 +39328,196.63999999985742,-0.06860809763318164 +39329,196.64499999985742,-0.06860809789563431 +39330,196.6499999998574,-0.06860809815806573 +39331,196.6549999998574,-0.06860809842047594 +39332,196.6599999998574,-0.06860809868286494 +39333,196.6649999998574,-0.06860809894523273 +39334,196.6699999998574,-0.0686080992075793 +39335,196.6749999998574,-0.06860809946990466 +39336,196.6799999998574,-0.0686080997322088 +39337,196.68499999985738,-0.06860809999449174 +39338,196.68999999985738,-0.06860810025675346 +39339,196.69499999985737,-0.06860810051899396 +39340,196.69999999985737,-0.06860810078121327 +39341,196.70499999985736,-0.06860810104341136 +39342,196.70999999985736,-0.06860810130558825 +39343,196.71499999985735,-0.06860810156774393 +39344,196.71999999985735,-0.0686081018298784 +39345,196.72499999985735,-0.06860810209199168 +39346,196.72999999985734,-0.06860810235408374 +39347,196.73499999985734,-0.0686081026161546 +39348,196.73999999985733,-0.06860810287820426 +39349,196.74499999985733,-0.06860810314023273 +39350,196.74999999985732,-0.06860810340224 +39351,196.75499999985732,-0.06860810366422605 +39352,196.7599999998573,-0.0686081039261909 +39353,196.7649999998573,-0.06860810418813458 +39354,196.7699999998573,-0.06860810445005704 +39355,196.7749999998573,-0.06860810471195831 +39356,196.7799999998573,-0.0686081049738384 +39357,196.7849999998573,-0.06860810523569728 +39358,196.7899999998573,-0.06860810549753496 +39359,196.79499999985728,-0.06860810575935146 +39360,196.79999999985728,-0.06860810602114677 +39361,196.80499999985727,-0.06860810628292088 +39362,196.80999999985727,-0.06860810654467382 +39363,196.81499999985726,-0.06860810680640556 +39364,196.81999999985726,-0.06860810706811611 +39365,196.82499999985725,-0.06860810732980548 +39366,196.82999999985725,-0.06860810759147365 +39367,196.83499999985725,-0.06860810785312065 +39368,196.83999999985724,-0.06860810811474646 +39369,196.84499999985724,-0.06860810837635109 +39370,196.84999999985723,-0.06860810863793454 +39371,196.85499999985723,-0.0686081088994968 +39372,196.85999999985722,-0.06860810916103789 +39373,196.86499999985722,-0.0686081094225578 +39374,196.8699999998572,-0.06860810968405652 +39375,196.8749999998572,-0.06860810994553407 +39376,196.8799999998572,-0.06860811020699044 +39377,196.8849999998572,-0.06860811046842562 +39378,196.8899999998572,-0.06860811072983963 +39379,196.8949999998572,-0.06860811099123248 +39380,196.8999999998572,-0.06860811125260416 +39381,196.90499999985718,-0.06860811151395467 +39382,196.90999999985718,-0.068608111775284 +39383,196.91499999985717,-0.06860811203659216 +39384,196.91999999985717,-0.06860811229787915 +39385,196.92499999985716,-0.06860811255914497 +39386,196.92999999985716,-0.06860811282038962 +39387,196.93499999985715,-0.06860811308161312 +39388,196.93999999985715,-0.06860811334281544 +39389,196.94499999985715,-0.0686081136039966 +39390,196.94999999985714,-0.0686081138651566 +39391,196.95499999985714,-0.06860811412629543 +39392,196.95999999985713,-0.06860811438741311 +39393,196.96499999985713,-0.06860811464850962 +39394,196.96999999985712,-0.06860811490958496 +39395,196.97499999985712,-0.06860811517063915 +39396,196.9799999998571,-0.0686081154316722 +39397,196.9849999998571,-0.06860811569268407 +39398,196.9899999998571,-0.06860811595367479 +39399,196.9949999998571,-0.06860811621464434 +39400,196.9999999998571,-0.06860811647559276 +39401,197.0049999998571,-0.06860811673652001 +39402,197.0099999998571,-0.06860811699742611 +39403,197.01499999985708,-0.06860811725831105 +39404,197.01999999985708,-0.06860811751917485 +39405,197.02499999985707,-0.06860811778001749 +39406,197.02999999985707,-0.068608118040839 +39407,197.03499999985706,-0.06860811830163933 +39408,197.03999999985706,-0.06860811856241854 +39409,197.04499999985705,-0.06860811882317659 +39410,197.04999999985705,-0.06860811908391351 +39411,197.05499999985705,-0.06860811934462928 +39412,197.05999999985704,-0.0686081196053239 +39413,197.06499999985704,-0.06860811986599737 +39414,197.06999999985703,-0.06860812012664971 +39415,197.07499999985703,-0.06860812038728091 +39416,197.07999999985702,-0.06860812064789096 +39417,197.08499999985702,-0.06860812090847988 +39418,197.089999999857,-0.06860812116904765 +39419,197.094999999857,-0.0686081214295943 +39420,197.099999999857,-0.0686081216901198 +39421,197.104999999857,-0.06860812195062417 +39422,197.109999999857,-0.0686081222111074 +39423,197.114999999857,-0.0686081224715695 +39424,197.119999999857,-0.06860812273201047 +39425,197.12499999985698,-0.06860812299243031 +39426,197.12999999985698,-0.06860812325282901 +39427,197.13499999985697,-0.0686081235132066 +39428,197.13999999985697,-0.06860812377356304 +39429,197.14499999985696,-0.06860812403389836 +39430,197.14999999985696,-0.06860812429421256 +39431,197.15499999985695,-0.06860812455450563 +39432,197.15999999985695,-0.06860812481477757 +39433,197.16499999985695,-0.06860812507502838 +39434,197.16999999985694,-0.06860812533525808 +39435,197.17499999985694,-0.06860812559546665 +39436,197.17999999985693,-0.0686081258556541 +39437,197.18499999985693,-0.06860812611582043 +39438,197.18999999985692,-0.06860812637596564 +39439,197.19499999985692,-0.06860812663608973 +39440,197.1999999998569,-0.0686081268961927 +39441,197.2049999998569,-0.06860812715627454 +39442,197.2099999998569,-0.06860812741633528 +39443,197.2149999998569,-0.0686081276763749 +39444,197.2199999998569,-0.06860812793639341 +39445,197.2249999998569,-0.06860812819639081 +39446,197.2299999998569,-0.0686081284563671 +39447,197.23499999985688,-0.06860812871632227 +39448,197.23999999985688,-0.06860812897625633 +39449,197.24499999985687,-0.06860812923616928 +39450,197.24999999985687,-0.06860812949606113 +39451,197.25499999985686,-0.06860812975593186 +39452,197.25999999985686,-0.06860813001578149 +39453,197.26499999985685,-0.06860813027561001 +39454,197.26999999985685,-0.06860813053541744 +39455,197.27499999985685,-0.06860813079520375 +39456,197.27999999985684,-0.06860813105496895 +39457,197.28499999985684,-0.06860813131471306 +39458,197.28999999985683,-0.06860813157443607 +39459,197.29499999985683,-0.06860813183413798 +39460,197.29999999985682,-0.06860813209381879 +39461,197.30499999985682,-0.0686081323534785 +39462,197.3099999998568,-0.06860813261311711 +39463,197.3149999998568,-0.06860813287273462 +39464,197.3199999998568,-0.06860813313233104 +39465,197.3249999998568,-0.06860813339190636 +39466,197.3299999998568,-0.06860813365146058 +39467,197.3349999998568,-0.06860813391099371 +39468,197.3399999998568,-0.06860813417050576 +39469,197.34499999985678,-0.0686081344299967 +39470,197.34999999985678,-0.06860813468946657 +39471,197.35499999985677,-0.06860813494891534 +39472,197.35999999985677,-0.06860813520834301 +39473,197.36499999985676,-0.06860813546774962 +39474,197.36999999985676,-0.06860813572713513 +39475,197.37499999985675,-0.06860813598649956 +39476,197.37999999985675,-0.0686081362458429 +39477,197.38499999985675,-0.06860813650516516 +39478,197.38999999985674,-0.06860813676446634 +39479,197.39499999985674,-0.06860813702374643 +39480,197.39999999985673,-0.06860813728300545 +39481,197.40499999985673,-0.06860813754224339 +39482,197.40999999985672,-0.06860813780146023 +39483,197.41499999985672,-0.06860813806065601 +39484,197.4199999998567,-0.0686081383198307 +39485,197.4249999998567,-0.06860813857898433 +39486,197.4299999998567,-0.06860813883811688 +39487,197.4349999998567,-0.06860813909722835 +39488,197.4399999998567,-0.06860813935631875 +39489,197.4449999998567,-0.06860813961538807 +39490,197.4499999998567,-0.06860813987443631 +39491,197.45499999985668,-0.0686081401334635 +39492,197.45999999985668,-0.06860814039246962 +39493,197.46499999985667,-0.06860814065145467 +39494,197.46999999985667,-0.06860814091041864 +39495,197.47499999985666,-0.06860814116936156 +39496,197.47999999985666,-0.0686081414282834 +39497,197.48499999985665,-0.06860814168718418 +39498,197.48999999985665,-0.06860814194606389 +39499,197.49499999985665,-0.06860814220492255 +39500,197.49999999985664,-0.06860814246376014 +39501,197.50499999985664,-0.06860814272257666 +39502,197.50999999985663,-0.06860814298137213 +39503,197.51499999985663,-0.06860814324014654 +39504,197.51999999985662,-0.06860814349889989 +39505,197.52499999985662,-0.06860814375763219 +39506,197.5299999998566,-0.06860814401634344 +39507,197.5349999998566,-0.06860814427503362 +39508,197.5399999998566,-0.06860814453370274 +39509,197.5449999998566,-0.06860814479235082 +39510,197.5499999998566,-0.06860814505097784 +39511,197.5549999998566,-0.06860814530958381 +39512,197.5599999998566,-0.06860814556816873 +39513,197.56499999985658,-0.0686081458267326 +39514,197.56999999985658,-0.0686081460852754 +39515,197.57499999985657,-0.06860814634379718 +39516,197.57999999985657,-0.0686081466022979 +39517,197.58499999985656,-0.06860814686077757 +39518,197.58999999985656,-0.0686081471192362 +39519,197.59499999985655,-0.06860814737767379 +39520,197.59999999985655,-0.06860814763609034 +39521,197.60499999985655,-0.06860814789448584 +39522,197.60999999985654,-0.0686081481528603 +39523,197.61499999985654,-0.06860814841121372 +39524,197.61999999985653,-0.06860814866954609 +39525,197.62499999985653,-0.06860814892785744 +39526,197.62999999985652,-0.06860814918614774 +39527,197.63499999985652,-0.06860814944441701 +39528,197.6399999998565,-0.06860814970266525 +39529,197.6449999998565,-0.06860814996089243 +39530,197.6499999998565,-0.0686081502190986 +39531,197.6549999998565,-0.06860815047728372 +39532,197.6599999998565,-0.0686081507354478 +39533,197.6649999998565,-0.06860815099359087 +39534,197.6699999998565,-0.06860815125171289 +39535,197.67499999985648,-0.0686081515098139 +39536,197.67999999985648,-0.0686081517678939 +39537,197.68499999985647,-0.06860815202595283 +39538,197.68999999985647,-0.06860815228399077 +39539,197.69499999985646,-0.06860815254200767 +39540,197.69999999985646,-0.06860815280000354 +39541,197.70499999985645,-0.06860815305797839 +39542,197.70999999985645,-0.06860815331593222 +39543,197.71499999985645,-0.06860815357386502 +39544,197.71999999985644,-0.06860815383177679 +39545,197.72499999985644,-0.06860815408966756 +39546,197.72999999985643,-0.0686081543475373 +39547,197.73499999985643,-0.06860815460538602 +39548,197.73999999985642,-0.06860815486321373 +39549,197.74499999985642,-0.06860815512102042 +39550,197.7499999998564,-0.06860815537880609 +39551,197.7549999998564,-0.06860815563657076 +39552,197.7599999998564,-0.0686081558943144 +39553,197.7649999998564,-0.06860815615203704 +39554,197.7699999998564,-0.06860815640973868 +39555,197.7749999998564,-0.06860815666741928 +39556,197.7799999998564,-0.06860815692507889 +39557,197.78499999985638,-0.0686081571827175 +39558,197.78999999985638,-0.06860815744033508 +39559,197.79499999985637,-0.06860815769793166 +39560,197.79999999985637,-0.06860815795550725 +39561,197.80499999985636,-0.06860815821306182 +39562,197.80999999985636,-0.06860815847059538 +39563,197.81499999985635,-0.06860815872810795 +39564,197.81999999985635,-0.06860815898559952 +39565,197.82499999985635,-0.06860815924307008 +39566,197.82999999985634,-0.06860815950051964 +39567,197.83499999985634,-0.0686081597579482 +39568,197.83999999985633,-0.06860816001535576 +39569,197.84499999985633,-0.06860816027274234 +39570,197.84999999985632,-0.06860816053010792 +39571,197.85499999985632,-0.0686081607874525 +39572,197.8599999998563,-0.06860816104477607 +39573,197.8649999998563,-0.06860816130207865 +39574,197.8699999998563,-0.06860816155936025 +39575,197.8749999998563,-0.06860816181662087 +39576,197.8799999998563,-0.06860816207386049 +39577,197.8849999998563,-0.06860816233107912 +39578,197.8899999998563,-0.06860816258827676 +39579,197.89499999985628,-0.0686081628454534 +39580,197.89999999985628,-0.06860816310260907 +39581,197.90499999985627,-0.06860816335974375 +39582,197.90999999985627,-0.06860816361685744 +39583,197.91499999985626,-0.06860816387395015 +39584,197.91999999985626,-0.06860816413102187 +39585,197.92499999985625,-0.06860816438807261 +39586,197.92999999985625,-0.06860816464510237 +39587,197.93499999985625,-0.06860816490211116 +39588,197.93999999985624,-0.06860816515909895 +39589,197.94499999985624,-0.06860816541606579 +39590,197.94999999985623,-0.06860816567301163 +39591,197.95499999985623,-0.06860816592993649 +39592,197.95999999985622,-0.06860816618684039 +39593,197.96499999985622,-0.0686081664437233 +39594,197.9699999998562,-0.06860816670058525 +39595,197.9749999998562,-0.06860816695742623 +39596,197.9799999998562,-0.06860816721424624 +39597,197.9849999998562,-0.06860816747104527 +39598,197.9899999998562,-0.06860816772782333 +39599,197.9949999998562,-0.06860816798458041 +39600,197.9999999998562,-0.06860816824131655 +39601,198.00499999985618,-0.06860816849803171 +39602,198.00999999985618,-0.06860816875472589 +39603,198.01499999985617,-0.06860816901139913 +39604,198.01999999985617,-0.0686081692680514 +39605,198.02499999985616,-0.0686081695246827 +39606,198.02999999985616,-0.06860816978129303 +39607,198.03499999985615,-0.0686081700378824 +39608,198.03999999985615,-0.06860817029445083 +39609,198.04499999985615,-0.0686081705509983 +39610,198.04999999985614,-0.06860817080752481 +39611,198.05499999985614,-0.06860817106403035 +39612,198.05999999985613,-0.06860817132051493 +39613,198.06499999985613,-0.06860817157697856 +39614,198.06999999985612,-0.06860817183342124 +39615,198.07499999985612,-0.06860817208984296 +39616,198.0799999998561,-0.06860817234624374 +39617,198.0849999998561,-0.06860817260262356 +39618,198.0899999998561,-0.06860817285898244 +39619,198.0949999998561,-0.06860817311532036 +39620,198.0999999998561,-0.06860817337163733 +39621,198.1049999998561,-0.06860817362793335 +39622,198.1099999998561,-0.06860817388420842 +39623,198.11499999985608,-0.06860817414046257 +39624,198.11999999985608,-0.06860817439669575 +39625,198.12499999985607,-0.06860817465290801 +39626,198.12999999985607,-0.0686081749090993 +39627,198.13499999985606,-0.06860817516526965 +39628,198.13999999985606,-0.06860817542141907 +39629,198.14499999985605,-0.06860817567754755 +39630,198.14999999985605,-0.06860817593365509 +39631,198.15499999985605,-0.0686081761897417 +39632,198.15999999985604,-0.06860817644580736 +39633,198.16499999985604,-0.06860817670185208 +39634,198.16999999985603,-0.06860817695787588 +39635,198.17499999985603,-0.06860817721387875 +39636,198.17999999985602,-0.06860817746986068 +39637,198.18499999985602,-0.06860817772582167 +39638,198.189999999856,-0.06860817798176175 +39639,198.194999999856,-0.06860817823768088 +39640,198.199999999856,-0.06860817849357907 +39641,198.204999999856,-0.06860817874945635 +39642,198.209999999856,-0.0686081790053127 +39643,198.214999999856,-0.06860817926114811 +39644,198.219999999856,-0.0686081795169626 +39645,198.22499999985598,-0.06860817977275617 +39646,198.22999999985598,-0.06860818002852882 +39647,198.23499999985597,-0.06860818028428055 +39648,198.23999999985597,-0.06860818054001135 +39649,198.24499999985596,-0.06860818079572123 +39650,198.24999999985596,-0.06860818105141019 +39651,198.25499999985595,-0.06860818130707823 +39652,198.25999999985595,-0.06860818156272536 +39653,198.26499999985595,-0.06860818181835156 +39654,198.26999999985594,-0.06860818207395684 +39655,198.27499999985594,-0.06860818232954122 +39656,198.27999999985593,-0.06860818258510469 +39657,198.28499999985593,-0.06860818284064724 +39658,198.28999999985592,-0.06860818309616887 +39659,198.29499999985592,-0.0686081833516696 +39660,198.2999999998559,-0.06860818360714942 +39661,198.3049999998559,-0.06860818386260834 +39662,198.3099999998559,-0.06860818411804633 +39663,198.3149999998559,-0.06860818437346342 +39664,198.3199999998559,-0.0686081846288596 +39665,198.3249999998559,-0.06860818488423488 +39666,198.3299999998559,-0.06860818513958927 +39667,198.33499999985588,-0.06860818539492275 +39668,198.33999999985588,-0.06860818565023531 +39669,198.34499999985587,-0.06860818590552697 +39670,198.34999999985587,-0.06860818616079774 +39671,198.35499999985586,-0.06860818641604761 +39672,198.35999999985586,-0.06860818667127659 +39673,198.36499999985585,-0.06860818692648467 +39674,198.36999999985585,-0.06860818718167185 +39675,198.37499999985585,-0.06860818743683812 +39676,198.37999999985584,-0.0686081876919835 +39677,198.38499999985584,-0.06860818794710799 +39678,198.38999999985583,-0.0686081882022116 +39679,198.39499999985583,-0.0686081884572943 +39680,198.39999999985582,-0.06860818871235612 +39681,198.40499999985582,-0.06860818896739705 +39682,198.4099999998558,-0.0686081892224171 +39683,198.4149999998558,-0.06860818947741625 +39684,198.4199999998558,-0.0686081897323945 +39685,198.4249999998558,-0.06860818998735188 +39686,198.4299999998558,-0.06860819024228837 +39687,198.4349999998558,-0.06860819049720399 +39688,198.4399999998558,-0.0686081907520987 +39689,198.44499999985578,-0.06860819100697255 +39690,198.44999999985578,-0.06860819126182552 +39691,198.45499999985577,-0.0686081915166576 +39692,198.45999999985577,-0.0686081917714688 +39693,198.46499999985576,-0.06860819202625912 +39694,198.46999999985576,-0.06860819228102856 +39695,198.47499999985575,-0.06860819253577714 +39696,198.47999999985575,-0.06860819279050483 +39697,198.48499999985575,-0.06860819304521165 +39698,198.48999999985574,-0.06860819329989759 +39699,198.49499999985574,-0.06860819355456267 +39700,198.49999999985573,-0.06860819380920688 +39701,198.50499999985573,-0.06860819406383022 +39702,198.50999999985572,-0.06860819431843268 +39703,198.51499999985572,-0.06860819457301427 +39704,198.5199999998557,-0.068608194827575 +39705,198.5249999998557,-0.06860819508211488 +39706,198.5299999998557,-0.06860819533663387 +39707,198.5349999998557,-0.068608195591132 +39708,198.5399999998557,-0.06860819584560927 +39709,198.5449999998557,-0.06860819610006569 +39710,198.5499999998557,-0.06860819635450123 +39711,198.55499999985568,-0.06860819660891591 +39712,198.55999999985568,-0.06860819686330974 +39713,198.56499999985567,-0.0686081971176827 +39714,198.56999999985567,-0.06860819737203482 +39715,198.57499999985566,-0.06860819762636607 +39716,198.57999999985566,-0.06860819788067646 +39717,198.58499999985565,-0.068608198134966 +39718,198.58999999985565,-0.0686081983892347 +39719,198.59499999985565,-0.06860819864348253 +39720,198.59999999985564,-0.0686081988977095 +39721,198.60499999985564,-0.06860819915191563 +39722,198.60999999985563,-0.06860819940610091 +39723,198.61499999985563,-0.06860819966026534 +39724,198.61999999985562,-0.06860819991440893 +39725,198.62499999985562,-0.06860820016853167 +39726,198.6299999998556,-0.06860820042263356 +39727,198.6349999998556,-0.06860820067671461 +39728,198.6399999998556,-0.0686082009307748 +39729,198.6449999998556,-0.06860820118481417 +39730,198.6499999998556,-0.06860820143883269 +39731,198.6549999998556,-0.06860820169283036 +39732,198.6599999998556,-0.06860820194680718 +39733,198.66499999985558,-0.06860820220076319 +39734,198.66999999985558,-0.06860820245469834 +39735,198.67499999985557,-0.06860820270861266 +39736,198.67999999985557,-0.06860820296250615 +39737,198.68499999985556,-0.06860820321637881 +39738,198.68999999985556,-0.06860820347023062 +39739,198.69499999985555,-0.0686082037240616 +39740,198.69999999985555,-0.06860820397787175 +39741,198.70499999985554,-0.06860820423166107 +39742,198.70999999985554,-0.06860820448542956 +39743,198.71499999985554,-0.06860820473917723 +39744,198.71999999985553,-0.06860820499290406 +39745,198.72499999985553,-0.06860820524661006 +39746,198.72999999985552,-0.06860820550029523 +39747,198.73499999985552,-0.06860820575395958 +39748,198.7399999998555,-0.0686082060076031 +39749,198.7449999998555,-0.06860820626122581 +39750,198.7499999998555,-0.06860820651482769 +39751,198.7549999998555,-0.06860820676840874 +39752,198.7599999998555,-0.06860820702196899 +39753,198.7649999998555,-0.0686082072755084 +39754,198.7699999998555,-0.068608207529027 +39755,198.77499999985548,-0.06860820778252479 +39756,198.77999999985548,-0.06860820803600176 +39757,198.78499999985547,-0.0686082082894579 +39758,198.78999999985547,-0.06860820854289323 +39759,198.79499999985546,-0.06860820879630776 +39760,198.79999999985546,-0.06860820904970147 +39761,198.80499999985545,-0.06860820930307437 +39762,198.80999999985545,-0.06860820955642646 +39763,198.81499999985544,-0.06860820980975774 +39764,198.81999999985544,-0.0686082100630682 +39765,198.82499999985544,-0.06860821031635786 +39766,198.82999999985543,-0.06860821056962671 +39767,198.83499999985543,-0.06860821082287476 +39768,198.83999999985542,-0.068608211076102 +39769,198.84499999985542,-0.06860821132930843 +39770,198.8499999998554,-0.06860821158249407 +39771,198.8549999998554,-0.06860821183565889 +39772,198.8599999998554,-0.06860821208880293 +39773,198.8649999998554,-0.06860821234192617 +39774,198.8699999998554,-0.0686082125950286 +39775,198.8749999998554,-0.06860821284811022 +39776,198.8799999998554,-0.06860821310117106 +39777,198.88499999985538,-0.0686082133542111 +39778,198.88999999985538,-0.06860821360723035 +39779,198.89499999985537,-0.06860821386022882 +39780,198.89999999985537,-0.06860821411320647 +39781,198.90499999985536,-0.06860821436616334 +39782,198.90999999985536,-0.06860821461909941 +39783,198.91499999985535,-0.0686082148720147 +39784,198.91999999985535,-0.0686082151249092 +39785,198.92499999985534,-0.06860821537778292 +39786,198.92999999985534,-0.06860821563063584 +39787,198.93499999985534,-0.06860821588346798 +39788,198.93999999985533,-0.06860821613627932 +39789,198.94499999985533,-0.0686082163890699 +39790,198.94999999985532,-0.06860821664183968 +39791,198.95499999985532,-0.06860821689458868 +39792,198.9599999998553,-0.06860821714731691 +39793,198.9649999998553,-0.06860821740002435 +39794,198.9699999998553,-0.06860821765271101 +39795,198.9749999998553,-0.0686082179053769 +39796,198.9799999998553,-0.068608218158022 +39797,198.9849999998553,-0.06860821841064633 +39798,198.98999999985529,-0.06860821866324988 +39799,198.99499999985528,-0.06860821891583267 +39800,198.99999999985528,-0.06860821916839467 +39801,199.00499999985527,-0.06860821942093591 +39802,199.00999999985527,-0.06860821967345637 +39803,199.01499999985526,-0.06860821992595606 +39804,199.01999999985526,-0.06860822017843499 +39805,199.02499999985525,-0.06860822043089314 +39806,199.02999999985525,-0.06860822068333053 +39807,199.03499999985524,-0.06860822093574716 +39808,199.03999999985524,-0.06860822118814303 +39809,199.04499999985524,-0.0686082214405181 +39810,199.04999999985523,-0.06860822169287244 +39811,199.05499999985523,-0.068608221945206 +39812,199.05999999985522,-0.0686082221975188 +39813,199.06499999985522,-0.06860822244981084 +39814,199.0699999998552,-0.06860822270208214 +39815,199.0749999998552,-0.06860822295433266 +39816,199.0799999998552,-0.06860822320656243 +39817,199.0849999998552,-0.06860822345877145 +39818,199.0899999998552,-0.0686082237109597 +39819,199.0949999998552,-0.06860822396312721 +39820,199.09999999985519,-0.06860822421527396 +39821,199.10499999985518,-0.06860822446739996 +39822,199.10999999985518,-0.06860822471950521 +39823,199.11499999985517,-0.0686082249715897 +39824,199.11999999985517,-0.06860822522365345 +39825,199.12499999985516,-0.06860822547569645 +39826,199.12999999985516,-0.06860822572771869 +39827,199.13499999985515,-0.06860822597972019 +39828,199.13999999985515,-0.06860822623170096 +39829,199.14499999985514,-0.06860822648366097 +39830,199.14999999985514,-0.06860822673560024 +39831,199.15499999985514,-0.06860822698751878 +39832,199.15999999985513,-0.06860822723941656 +39833,199.16499999985513,-0.06860822749129361 +39834,199.16999999985512,-0.06860822774314991 +39835,199.17499999985512,-0.06860822799498549 +39836,199.1799999998551,-0.06860822824680031 +39837,199.1849999998551,-0.0686082284985944 +39838,199.1899999998551,-0.06860822875036776 +39839,199.1949999998551,-0.06860822900212038 +39840,199.1999999998551,-0.06860822925385228 +39841,199.2049999998551,-0.06860822950556343 +39842,199.20999999985509,-0.06860822975725385 +39843,199.21499999985508,-0.06860823000892356 +39844,199.21999999985508,-0.06860823026057253 +39845,199.22499999985507,-0.06860823051220076 +39846,199.22999999985507,-0.06860823076380829 +39847,199.23499999985506,-0.06860823101539507 +39848,199.23999999985506,-0.06860823126696113 +39849,199.24499999985505,-0.06860823151850647 +39850,199.24999999985505,-0.06860823177003107 +39851,199.25499999985504,-0.06860823202153496 +39852,199.25999999985504,-0.06860823227301811 +39853,199.26499999985504,-0.06860823252448056 +39854,199.26999999985503,-0.06860823277592228 +39855,199.27499999985503,-0.06860823302734328 +39856,199.27999999985502,-0.06860823327874359 +39857,199.28499999985502,-0.06860823353012316 +39858,199.289999999855,-0.06860823378148201 +39859,199.294999999855,-0.06860823403282015 +39860,199.299999999855,-0.06860823428413758 +39861,199.304999999855,-0.0686082345354343 +39862,199.309999999855,-0.0686082347867103 +39863,199.314999999855,-0.0686082350379656 +39864,199.31999999985499,-0.06860823528920018 +39865,199.32499999985498,-0.06860823554041406 +39866,199.32999999985498,-0.06860823579160723 +39867,199.33499999985497,-0.0686082360427797 +39868,199.33999999985497,-0.06860823629393145 +39869,199.34499999985496,-0.06860823654506251 +39870,199.34999999985496,-0.06860823679617287 +39871,199.35499999985495,-0.0686082370472625 +39872,199.35999999985495,-0.06860823729833145 +39873,199.36499999985494,-0.0686082375493797 +39874,199.36999999985494,-0.06860823780040724 +39875,199.37499999985494,-0.06860823805141408 +39876,199.37999999985493,-0.06860823830240023 +39877,199.38499999985493,-0.06860823855336569 +39878,199.38999999985492,-0.06860823880431044 +39879,199.39499999985492,-0.0686082390552345 +39880,199.3999999998549,-0.06860823930613787 +39881,199.4049999998549,-0.06860823955702054 +39882,199.4099999998549,-0.06860823980788253 +39883,199.4149999998549,-0.06860824005872382 +39884,199.4199999998549,-0.06860824030954443 +39885,199.4249999998549,-0.06860824056034434 +39886,199.42999999985489,-0.06860824081112357 +39887,199.43499999985488,-0.06860824106188211 +39888,199.43999999985488,-0.06860824131261997 +39889,199.44499999985487,-0.06860824156333713 +39890,199.44999999985487,-0.06860824181403362 +39891,199.45499999985486,-0.06860824206470942 +39892,199.45999999985486,-0.06860824231536454 +39893,199.46499999985485,-0.06860824256599898 +39894,199.46999999985485,-0.06860824281661275 +39895,199.47499999985484,-0.06860824306720584 +39896,199.47999999985484,-0.06860824331777823 +39897,199.48499999985484,-0.06860824356832997 +39898,199.48999999985483,-0.06860824381886103 +39899,199.49499999985483,-0.06860824406937141 +39900,199.49999999985482,-0.06860824431986112 +39901,199.50499999985482,-0.06860824457033014 +39902,199.5099999998548,-0.06860824482077851 +39903,199.5149999998548,-0.0686082450712062 +39904,199.5199999998548,-0.06860824532161322 +39905,199.5249999998548,-0.06860824557199957 +39906,199.5299999998548,-0.06860824582236526 +39907,199.5349999998548,-0.0686082460727103 +39908,199.53999999985479,-0.06860824632303464 +39909,199.54499999985478,-0.06860824657333832 +39910,199.54999999985478,-0.06860824682362135 +39911,199.55499999985477,-0.0686082470738837 +39912,199.55999999985477,-0.0686082473241254 +39913,199.56499999985476,-0.06860824757434646 +39914,199.56999999985476,-0.06860824782454684 +39915,199.57499999985475,-0.06860824807472657 +39916,199.57999999985475,-0.06860824832488563 +39917,199.58499999985474,-0.06860824857502404 +39918,199.58999999985474,-0.06860824882514178 +39919,199.59499999985474,-0.0686082490752389 +39920,199.59999999985473,-0.06860824932531534 +39921,199.60499999985473,-0.06860824957537114 +39922,199.60999999985472,-0.06860824982540628 +39923,199.61499999985472,-0.06860825007542078 +39924,199.6199999998547,-0.06860825032541462 +39925,199.6249999998547,-0.06860825057538782 +39926,199.6299999998547,-0.06860825082534036 +39927,199.6349999998547,-0.06860825107527227 +39928,199.6399999998547,-0.06860825132518351 +39929,199.6449999998547,-0.06860825157507414 +39930,199.64999999985469,-0.06860825182494411 +39931,199.65499999985468,-0.06860825207479343 +39932,199.65999999985468,-0.06860825232462212 +39933,199.66499999985467,-0.06860825257443016 +39934,199.66999999985467,-0.06860825282421758 +39935,199.67499999985466,-0.06860825307398434 +39936,199.67999999985466,-0.06860825332373048 +39937,199.68499999985465,-0.06860825357345597 +39938,199.68999999985465,-0.06860825382316083 +39939,199.69499999985464,-0.06860825407284504 +39940,199.69999999985464,-0.06860825432250864 +39941,199.70499999985464,-0.06860825457215161 +39942,199.70999999985463,-0.06860825482177395 +39943,199.71499999985463,-0.06860825507137563 +39944,199.71999999985462,-0.06860825532095671 +39945,199.72499999985462,-0.06860825557051715 +39946,199.7299999998546,-0.06860825582005697 +39947,199.7349999998546,-0.06860825606957616 +39948,199.7399999998546,-0.06860825631907473 +39949,199.7449999998546,-0.06860825656855267 +39950,199.7499999998546,-0.06860825681800997 +39951,199.7549999998546,-0.06860825706744668 +39952,199.75999999985459,-0.06860825731686275 +39953,199.76499999985458,-0.0686082575662582 +39954,199.76999999985458,-0.06860825781563304 +39955,199.77499999985457,-0.06860825806498726 +39956,199.77999999985457,-0.06860825831432085 +39957,199.78499999985456,-0.06860825856363384 +39958,199.78999999985456,-0.0686082588129262 +39959,199.79499999985455,-0.06860825906219796 +39960,199.79999999985455,-0.06860825931144911 +39961,199.80499999985454,-0.06860825956067965 +39962,199.80999999985454,-0.06860825980988956 +39963,199.81499999985454,-0.06860826005907887 +39964,199.81999999985453,-0.06860826030824758 +39965,199.82499999985453,-0.06860826055739566 +39966,199.82999999985452,-0.06860826080652314 +39967,199.83499999985452,-0.06860826105563003 +39968,199.8399999998545,-0.06860826130471631 +39969,199.8449999998545,-0.06860826155378198 +39970,199.8499999998545,-0.06860826180282706 +39971,199.8549999998545,-0.06860826205185153 +39972,199.8599999998545,-0.06860826230085539 +39973,199.8649999998545,-0.06860826254983866 +39974,199.86999999985449,-0.06860826279880132 +39975,199.87499999985448,-0.0686082630477434 +39976,199.87999999985448,-0.06860826329666488 +39977,199.88499999985447,-0.06860826354556575 +39978,199.88999999985447,-0.06860826379444604 +39979,199.89499999985446,-0.06860826404330572 +39980,199.89999999985446,-0.06860826429214482 +39981,199.90499999985445,-0.06860826454096333 +39982,199.90999999985445,-0.06860826478976126 +39983,199.91499999985444,-0.06860826503853858 +39984,199.91999999985444,-0.06860826528729531 +39985,199.92499999985444,-0.06860826553603147 +39986,199.92999999985443,-0.06860826578474703 +39987,199.93499999985443,-0.06860826603344201 +39988,199.93999999985442,-0.0686082662821164 +39989,199.94499999985442,-0.06860826653077022 +39990,199.9499999998544,-0.06860826677940345 +39991,199.9549999998544,-0.0686082670280161 +39992,199.9599999998544,-0.06860826727660818 +39993,199.9649999998544,-0.06860826752517966 +39994,199.9699999998544,-0.06860826777373057 +39995,199.9749999998544,-0.0686082680222609 +39996,199.97999999985439,-0.06860826827077067 +39997,199.98499999985438,-0.06860826851925986 +39998,199.98999999985438,-0.06860826876772846 +39999,199.99499999985437,-0.06860826901617649 +40000,199.99999999985437,-0.06860826926460395 +40001,200.00499999985436,-0.0685825399659263 +40002,200.00999999985436,-0.06855907112090855 +40003,200.01499999985435,-0.06853722928632432 +40004,200.01999999985435,-0.06851664347924259 +40005,200.02499999985434,-0.06849707203422237 +40006,200.02999999985434,-0.06847834579156341 +40007,200.03499999985434,-0.0684603401392622 +40008,200.03999999985433,-0.0684429597047947 +40009,200.04499999985433,-0.06842612927598857 +40010,200.04999999985432,-0.06840978808372164 +40011,200.05499999985432,-0.06839388603386898 +40012,200.0599999998543,-0.0683783811338997 +40013,200.0649999998543,-0.06836323768355011 +40014,200.0699999998543,-0.06834842497065016 +40015,200.0749999998543,-0.06833391630989859 +40016,200.0799999998543,-0.06831968831970717 +40017,200.0849999998543,-0.06830572036759552 +40018,200.08999999985429,-0.06829199413711777 +40019,200.09499999985428,-0.06827849328396533 +40020,200.09999999985428,-0.06826520315862875 +40021,200.10499999985427,-0.06825211057957117 +40022,200.10999999985427,-0.06823920364535987 +40023,200.11499999985426,-0.06822647157731454 +40024,200.11999999985426,-0.0682139045864129 +40025,200.12499999985425,-0.06820149375974421 +40026,200.12999999985425,-0.06818923096291375 +40027,200.13499999985424,-0.06817710875561242 +40028,200.13999999985424,-0.06816512031816346 +40029,200.14499999985424,-0.06815325938730513 +40030,200.14999999985423,-0.0681415201998069 +40031,200.15499999985423,-0.06812989744277674 +40032,200.15999999985422,-0.0681183862097188 +40033,200.16499999985422,-0.06810698196156074 +40034,200.1699999998542,-0.06809568049199607 +40035,200.1749999998542,-0.06808447789658917 +40036,200.1799999998542,-0.06807337054517411 +40037,200.1849999998542,-0.06806235505714633 +40038,200.1899999998542,-0.06805142827930291 +40039,200.1949999998542,-0.068040587265934 +40040,200.19999999985419,-0.06802982926090842 +40041,200.20499999985418,-0.06801915168152901 +40042,200.20999999985418,-0.06800855210396246 +40043,200.21499999985417,-0.06799802825007228 +40044,200.21999999985417,-0.06798757797550485 +40045,200.22499999985416,-0.067977199258896 +40046,200.22999999985416,-0.06796689019208162 +40047,200.23499999985415,-0.0679566489712088 +40048,200.23999999985415,-0.06794647388865634 +40049,200.24499999985414,-0.06793636332568295 +40050,200.24999999985414,-0.06792631574573144 +40051,200.25499999985414,-0.06791632968832383 +40052,200.25999999985413,-0.06790640376349064 +40053,200.26499999985413,-0.06789653664668231 +40054,200.26999999985412,-0.06788672707411733 +40055,200.27499999985412,-0.06787697383852552 +40056,200.2799999998541,-0.06786727578524962 +40057,200.2849999998541,-0.06785763180867192 +40058,200.2899999998541,-0.0678480408489361 +40059,200.2949999998541,-0.06783850188893721 +40060,200.2999999998541,-0.06782901395155581 +40061,200.3049999998541,-0.06781957609711387 +40062,200.30999999985409,-0.06781018742103333 +40063,200.31499999985408,-0.06780084705167877 +40064,200.31999999985408,-0.06779155414836854 +40065,200.32499999985407,-0.06778230789953926 +40066,200.32999999985407,-0.06777310752105074 +40067,200.33499999985406,-0.06776395225461919 +40068,200.33999999985406,-0.06775484136636756 +40069,200.34499999985405,-0.06774577414548355 +40070,200.34999999985405,-0.06773674990297571 +40071,200.35499999985404,-0.06772776797051984 +40072,200.35999999985404,-0.0677188276993881 +40073,200.36499999985404,-0.06770992845945387 +40074,200.36999999985403,-0.06770106963826639 +40075,200.37499999985403,-0.06769225064018942 +40076,200.37999999985402,-0.06768347088559876 +40077,200.38499999985402,-0.0676747298101338 +40078,200.389999999854,-0.06766602686399925 +40079,200.394999999854,-0.06765736151131248 +40080,200.399999999854,-0.06764873322949336 +40081,200.404999999854,-0.06764014150869316 +40082,200.409999999854,-0.06763158585125945 +40083,200.414999999854,-0.06762306577123432 +40084,200.41999999985399,-0.06761458079388344 +40085,200.42499999985398,-0.06760613045525342 +40086,200.42999999985398,-0.06759771430175573 +40087,200.43499999985397,-0.06758933188977481 +40088,200.43999999985397,-0.06758098278529893 +40089,200.44499999985396,-0.06757266656357197 +40090,200.44999999985396,-0.06756438280876467 +40091,200.45499999985395,-0.06755613111366396 +40092,200.45999999985395,-0.067547911079379 +40093,200.46499999985394,-0.06753972231506308 +40094,200.46999999985394,-0.06753156443764981 +40095,200.47499999985394,-0.06752343707160295 +40096,200.47999999985393,-0.06751533984867902 +40097,200.48499999985393,-0.06750727240770141 +40098,200.48999999985392,-0.06749923439434577 +40099,200.49499999985392,-0.06749122546093549 +40100,200.4999999998539,-0.06748324526624692 +40101,200.5049999998539,-0.06747529347532356 +40102,200.5099999998539,-0.06746736975929864 +40103,200.5149999998539,-0.06745947379522556 +40104,200.5199999998539,-0.06745160526591601 +40105,200.5249999998539,-0.06744376385978466 +40106,200.52999999985389,-0.06743594927070076 +40107,200.53499999985388,-0.06742816119784564 +40108,200.53999999985388,-0.06742039934557616 +40109,200.54499999985387,-0.06741266342329352 +40110,200.54999999985387,-0.06740495314531732 +40111,200.55499999985386,-0.06739726823076439 +40112,200.55999999985386,-0.06738960840343222 +40113,200.56499999985385,-0.06738197339168686 +40114,200.56999999985385,-0.0673743629283547 +40115,200.57499999985384,-0.06736677675061833 +40116,200.57999999985384,-0.067359214599916 +40117,200.58499999985384,-0.06735167622184458 +40118,200.58999999985383,-0.06734416136606587 +40119,200.59499999985383,-0.06733666978621602 +40120,200.59999999985382,-0.06732920123981795 +40121,200.60499999985382,-0.06732175548819666 +40122,200.6099999998538,-0.06731433229639724 +40123,200.6149999998538,-0.06730693143310544 +40124,200.6199999998538,-0.06729955267057071 +40125,200.6249999998538,-0.06729219578453165 +40126,200.6299999998538,-0.06728486055414364 +40127,200.6349999998538,-0.06727754676190867 +40128,200.63999999985379,-0.06727025419360722 +40129,200.64499999985378,-0.06726298263823204 +40130,200.64999999985378,-0.06725573188792391 +40131,200.65499999985377,-0.06724850173790924 +40132,200.65999999985377,-0.06724129198643918 +40133,200.66499999985376,-0.0672341024347307 +40134,200.66999999985376,-0.06722693288690902 +40135,200.67499999985375,-0.06721978314995172 +40136,200.67999999985375,-0.06721265303363426 +40137,200.68499999985374,-0.06720554235047692 +40138,200.68999999985374,-0.06719845091569321 +40139,200.69499999985374,-0.0671913785471394 +40140,200.69999999985373,-0.06718432506526553 +40141,200.70499999985373,-0.06717729029306752 +40142,200.70999999985372,-0.06717027405604047 +40143,200.71499999985372,-0.06716327618213315 +40144,200.7199999998537,-0.06715629650170356 +40145,200.7249999998537,-0.0671493348474755 +40146,200.7299999998537,-0.06714239105449638 +40147,200.7349999998537,-0.06713546496009565 +40148,200.7399999998537,-0.06712855640384463 +40149,200.7449999998537,-0.06712166522751692 +40150,200.74999999985369,-0.06711479127504986 +40151,200.75499999985368,-0.06710793439250695 +40152,200.75999999985368,-0.06710109442804088 +40153,200.76499999985367,-0.06709427123185763 +40154,200.76999999985367,-0.0670874646561812 +40155,200.77499999985366,-0.06708067455521924 +40156,200.77999999985366,-0.06707390078512922 +40157,200.78499999985365,-0.06706714320398562 +40158,200.78999999985365,-0.06706040167174758 +40159,200.79499999985364,-0.06705367605022744 +40160,200.79999999985364,-0.0670469662030597 +40161,200.80499999985364,-0.06704027199567085 +40162,200.80999999985363,-0.06703359329524977 +40163,200.81499999985363,-0.06702692997071868 +40164,200.81999999985362,-0.06702028189270477 +40165,200.82499999985362,-0.06701364893351236 +40166,200.8299999998536,-0.06700703096709561 +40167,200.8349999998536,-0.06700042786903186 +40168,200.8399999998536,-0.06699383951649547 +40169,200.8449999998536,-0.06698726578823211 +40170,200.8499999998536,-0.06698070656453366 +40171,200.8549999998536,-0.06697416172721359 +40172,200.85999999985358,-0.06696763115958275 +40173,200.86499999985358,-0.06696111474642574 +40174,200.86999999985358,-0.06695461237397761 +40175,200.87499999985357,-0.0669481239299012 +40176,200.87999999985357,-0.06694164930326468 +40177,200.88499999985356,-0.06693518838451971 +40178,200.88999999985356,-0.06692874106547997 +40179,200.89499999985355,-0.06692230723929996 +40180,200.89999999985355,-0.06691588680045443 +40181,200.90499999985354,-0.06690947964471805 +40182,200.90999999985354,-0.06690308566914546 +40183,200.91499999985353,-0.06689670477205173 +40184,200.91999999985353,-0.06689033685299321 +40185,200.92499999985353,-0.06688398181274863 +40186,200.92999999985352,-0.06687763955330067 +40187,200.93499999985352,-0.06687130997781776 +40188,200.9399999998535,-0.06686499299063632 +40189,200.9449999998535,-0.0668586884972432 +40190,200.9499999998535,-0.06685239640425855 +40191,200.9549999998535,-0.06684611661941889 +40192,200.9599999998535,-0.0668398490515606 +40193,200.9649999998535,-0.06683359361060356 +40194,200.96999999985348,-0.06682735020753529 +40195,200.97499999985348,-0.06682111875439511 +40196,200.97999999985348,-0.06681489916425884 +40197,200.98499999985347,-0.0668086913512235 +40198,200.98999999985347,-0.06680249523039257 +40199,200.99499999985346,-0.06679631071786121 +40200,200.99999999985346,-0.06679013773070203 +40201,201.00499999985345,-0.06678397618695081 +40202,201.00999999985345,-0.06677782600559275 +40203,201.01499999985344,-0.06677168710654872 +40204,201.01999999985344,-0.06676555941066192 +40205,201.02499999985343,-0.06675944283968464 +40206,201.02999999985343,-0.0667533373162653 +40207,201.03499999985343,-0.06674724276393577 +40208,201.03999999985342,-0.0667411591070988 +40209,201.04499999985342,-0.06673508627101565 +40210,201.0499999998534,-0.06672902418179408 +40211,201.0549999998534,-0.06672297276637638 +40212,201.0599999998534,-0.06671693195252773 +40213,201.0649999998534,-0.06671090166882457 +40214,201.0699999998534,-0.06670488184464334 +40215,201.0749999998534,-0.0666988724101494 +40216,201.07999999985338,-0.066692873296286 +40217,201.08499999985338,-0.06668688443476349 +40218,201.08999999985338,-0.06668090575804882 +40219,201.09499999985337,-0.06667493719935498 +40220,201.09999999985337,-0.06666897869263091 +40221,201.10499999985336,-0.06666303017255128 +40222,201.10999999985336,-0.06665709157450658 +40223,201.11499999985335,-0.06665116283459341 +40224,201.11999999985335,-0.06664524388960483 +40225,201.12499999985334,-0.06663933467702092 +40226,201.12999999985334,-0.06663343513499945 +40227,201.13499999985333,-0.06662754520236676 +40228,201.13999999985333,-0.06662166481860876 +40229,201.14499999985333,-0.066615793923862 +40230,201.14999999985332,-0.06660993245890495 +40231,201.15499999985332,-0.06660408036514952 +40232,201.1599999998533,-0.06659823758463246 +40233,201.1649999998533,-0.06659240406000712 +40234,201.1699999998533,-0.0665865797345352 +40235,201.1749999998533,-0.0665807645520788 +40236,201.1799999998533,-0.06657495845709234 +40237,201.1849999998533,-0.0665691613946148 +40238,201.18999999985328,-0.06656337331026206 +40239,201.19499999985328,-0.06655759415021929 +40240,201.19999999985328,-0.06655182386123347 +40241,201.20499999985327,-0.06654606239060609 +40242,201.20999999985327,-0.06654030968618588 +40243,201.21499999985326,-0.0665345656963617 +40244,201.21999999985326,-0.0665288303700555 +40245,201.22499999985325,-0.06652310365671549 +40246,201.22999999985325,-0.06651738550630924 +40247,201.23499999985324,-0.06651167586931701 +40248,201.23999999985324,-0.06650597469672521 +40249,201.24499999985323,-0.06650028194001983 +40250,201.24999999985323,-0.06649459755118005 +40251,201.25499999985323,-0.06648892148267194 +40252,201.25999999985322,-0.06648325368744226 +40253,201.26499999985322,-0.06647759411891233 +40254,201.2699999998532,-0.06647194273097197 +40255,201.2749999998532,-0.06646629947797365 +40256,201.2799999998532,-0.06646066431472651 +40257,201.2849999998532,-0.06645503719649073 +40258,201.2899999998532,-0.06644941807897173 +40259,201.2949999998532,-0.06644380691831464 +40260,201.29999999985318,-0.06643820367109876 +40261,201.30499999985318,-0.06643260829433217 +40262,201.30999999985318,-0.06642702074544632 +40263,201.31499999985317,-0.06642144098229075 +40264,201.31999999985317,-0.06641586896312794 +40265,201.32499999985316,-0.06641030464662813 +40266,201.32999999985316,-0.06640474799186435 +40267,201.33499999985315,-0.06639919895830736 +40268,201.33999999985315,-0.06639365750582071 +40269,201.34499999985314,-0.06638812359465608 +40270,201.34999999985314,-0.06638259718544832 +40271,201.35499999985313,-0.06637707823921085 +40272,201.35999999985313,-0.06637156671733101 +40273,201.36499999985313,-0.06636606258156551 +40274,201.36999999985312,-0.06636056579403589 +40275,201.37499999985312,-0.06635507631722413 +40276,201.3799999998531,-0.06634959411396825 +40277,201.3849999998531,-0.06634411914745798 +40278,201.3899999998531,-0.06633865138123057 +40279,201.3949999998531,-0.06633319077916652 +40280,201.3999999998531,-0.06632773730548552 +40281,201.4049999998531,-0.06632229092474233 +40282,201.40999999985308,-0.06631685160182277 +40283,201.41499999985308,-0.06631141930193976 +40284,201.41999999985308,-0.06630599399062946 +40285,201.42499999985307,-0.06630057563374732 +40286,201.42999999985307,-0.06629516419746435 +40287,201.43499999985306,-0.06628975964826342 +40288,201.43999999985306,-0.06628436195293541 +40289,201.44499999985305,-0.06627897107857575 +40290,201.44999999985305,-0.06627358699258071 +40291,201.45499999985304,-0.06626820966264385 +40292,201.45999999985304,-0.06626283905675263 +40293,201.46499999985303,-0.06625747514318488 +40294,201.46999999985303,-0.06625211789050535 +40295,201.47499999985303,-0.06624676726756248 +40296,201.47999999985302,-0.06624142324348506 +40297,201.48499999985302,-0.06623608578767887 +40298,201.489999999853,-0.06623075486982355 +40299,201.494999999853,-0.06622543045986942 +40300,201.499999999853,-0.06622011252803434 +40301,201.504999999853,-0.06621480104480058 +40302,201.509999999853,-0.06620949598091184 +40303,201.514999999853,-0.06620419730737018 +40304,201.51999999985298,-0.06619890499543309 +40305,201.52499999985298,-0.06619361901661053 +40306,201.52999999985298,-0.06618833934266208 +40307,201.53499999985297,-0.06618306594559405 +40308,201.53999999985297,-0.0661777987976567 +40309,201.54499999985296,-0.06617253787134147 +40310,201.54999999985296,-0.0661672831393782 +40311,201.55499999985295,-0.06616203457473245 +40312,201.55999999985295,-0.06615679215060283 +40313,201.56499999985294,-0.0661515558404184 +40314,201.56999999985294,-0.06614632561783604 +40315,201.57499999985293,-0.06614110145673789 +40316,201.57999999985293,-0.06613588333122881 +40317,201.58499999985293,-0.06613067121563393 +40318,201.58999999985292,-0.06612546508449613 +40319,201.59499999985292,-0.06612026491257367 +40320,201.5999999998529,-0.06611507067483771 +40321,201.6049999998529,-0.06610988234647003 +40322,201.6099999998529,-0.06610469990286064 +40323,201.6149999998529,-0.06609952331960546 +40324,201.6199999998529,-0.0660943525725041 +40325,201.6249999998529,-0.06608918763755754 +40326,201.62999999985288,-0.06608402849096601 +40327,201.63499999985288,-0.06607887510912668 +40328,201.63999999985288,-0.06607372746863158 +40329,201.64499999985287,-0.06606858554626543 +40330,201.64999999985287,-0.06606344931900358 +40331,201.65499999985286,-0.06605831876400986 +40332,201.65999999985286,-0.06605319385863456 +40333,201.66499999985285,-0.06604807458041241 +40334,201.66999999985285,-0.06604296090706058 +40335,201.67499999985284,-0.06603785281647669 +40336,201.67999999985284,-0.06603275028673686 +40337,201.68499999985283,-0.06602765329609378 +40338,201.68999999985283,-0.06602256182297482 +40339,201.69499999985283,-0.06601747584598014 +40340,201.69999999985282,-0.06601239534388087 +40341,201.70499999985282,-0.06600732029561719 +40342,201.7099999998528,-0.06600225068029664 +40343,201.7149999998528,-0.06599718647719223 +40344,201.7199999998528,-0.06599212766574075 +40345,201.7249999998528,-0.06598707422554098 +40346,201.7299999998528,-0.06598202613635201 +40347,201.7349999998528,-0.06597698337809149 +40348,201.73999999985278,-0.06597194593083401 +40349,201.74499999985278,-0.06596691377480941 +40350,201.74999999985278,-0.06596188689040117 +40351,201.75499999985277,-0.06595686525814472 +40352,201.75999999985277,-0.06595184885872596 +40353,201.76499999985276,-0.06594683767297957 +40354,201.76999999985276,-0.06594183168188757 +40355,201.77499999985275,-0.06593683086657766 +40356,201.77999999985275,-0.06593183520832177 +40357,201.78499999985274,-0.06592684468853459 +40358,201.78999999985274,-0.06592185928877199 +40359,201.79499999985273,-0.06591687899072966 +40360,201.79999999985273,-0.0659119037762416 +40361,201.80499999985273,-0.0659069336272787 +40362,201.80999999985272,-0.06590196852594737 +40363,201.81499999985272,-0.06589700845448807 +40364,201.8199999998527,-0.06589205339527399 +40365,201.8249999998527,-0.06588710333080973 +40366,201.8299999998527,-0.06588215824372982 +40367,201.8349999998527,-0.06587721811679753 +40368,201.8399999998527,-0.06587228293290351 +40369,201.8449999998527,-0.06586735267506443 +40370,201.84999999985268,-0.06586242732642181 +40371,201.85499999985268,-0.06585750687024068 +40372,201.85999999985268,-0.06585259128990838 +40373,201.86499999985267,-0.06584768056893324 +40374,201.86999999985267,-0.06584277469094349 +40375,201.87499999985266,-0.0658378736396859 +40376,201.87999999985266,-0.06583297739902476 +40377,201.88499999985265,-0.06582808595294051 +40378,201.88999999985265,-0.06582319928552878 +40379,201.89499999985264,-0.06581831738099905 +40380,201.89999999985264,-0.06581344022367365 +40381,201.90499999985263,-0.06580856779798662 +40382,201.90999999985263,-0.06580370008848249 +40383,201.91499999985263,-0.06579883707981533 +40384,201.91999999985262,-0.06579397875674758 +40385,201.92499999985262,-0.065789125104149 +40386,201.9299999998526,-0.0657842761069956 +40387,201.9349999998526,-0.06577943175036861 +40388,201.9399999998526,-0.06577459201945349 +40389,201.9449999998526,-0.06576975689953878 +40390,201.9499999998526,-0.06576492637601522 +40391,201.9549999998526,-0.0657601004343747 +40392,201.95999999985258,-0.0657552790602093 +40393,201.96499999985258,-0.06575046223921019 +40394,201.96999999985258,-0.0657456499571669 +40395,201.97499999985257,-0.06574084219996616 +40396,201.97999999985257,-0.06573603895359106 +40397,201.98499999985256,-0.06573124020412005 +40398,201.98999999985256,-0.06572644593772613 +40399,201.99499999985255,-0.06572165614067581 +40400,201.99999999985255,-0.06571687079932832 +40401,202.00499999985254,-0.06571208990013465 +40402,202.00999999985254,-0.0657073134296367 +40403,202.01499999985253,-0.06570254137446642 +40404,202.01999999985253,-0.06569777372134493 +40405,202.02499999985253,-0.0656930104570817 +40406,202.02999999985252,-0.06568825156857365 +40407,202.03499999985252,-0.06568349704280439 +40408,202.0399999998525,-0.06567874686684338 +40409,202.0449999998525,-0.0656740010278451 +40410,202.0499999998525,-0.06566925951304824 +40411,202.0549999998525,-0.06566452230977494 +40412,202.0599999998525,-0.06565978940543 +40413,202.0649999998525,-0.06565506078750011 +40414,202.06999999985248,-0.06565033644355303 +40415,202.07499999985248,-0.06564561636123689 +40416,202.07999999985248,-0.06564090052827944 +40417,202.08499999985247,-0.06563618893248727 +40418,202.08999999985247,-0.06563148156174509 +40419,202.09499999985246,-0.06562677840401507 +40420,202.09999999985246,-0.065622079447336 +40421,202.10499999985245,-0.06561738467982271 +40422,202.10999999985245,-0.06561269408966526 +40423,202.11499999985244,-0.06560800766512831 +40424,202.11999999985244,-0.06560332539455045 +40425,202.12499999985243,-0.06559864726634346 +40426,202.12999999985243,-0.06559397326899169 +40427,202.13499999985243,-0.06558930339105137 +40428,202.13999999985242,-0.06558463762114998 +40429,202.14499999985242,-0.06557997594798558 +40430,202.1499999998524,-0.06557531836032617 +40431,202.1549999998524,-0.06557066484700907 +40432,202.1599999998524,-0.0655660153969403 +40433,202.1649999998524,-0.06556136999909391 +40434,202.1699999998524,-0.06555672864251144 +40435,202.1749999998524,-0.06555209131630124 +40436,202.17999999985238,-0.06554745800963792 +40437,202.18499999985238,-0.06554282871176174 +40438,202.18999999985238,-0.06553820341197802 +40439,202.19499999985237,-0.06553358209965655 +40440,202.19999999985237,-0.06552896476423108 +40441,202.20499999985236,-0.06552435139519862 +40442,202.20999999985236,-0.06551974198211903 +40443,202.21499999985235,-0.06551513651461434 +40444,202.21999999985235,-0.06551053498236827 +40445,202.22499999985234,-0.06550593737512565 +40446,202.22999999985234,-0.06550134368269193 +40447,202.23499999985233,-0.0654967538949326 +40448,202.23999999985233,-0.06549216800177267 +40449,202.24499999985233,-0.06548758599319614 +40450,202.24999999985232,-0.06548300785924553 +40451,202.25499999985232,-0.06547843359002134 +40452,202.2599999998523,-0.06547386317568152 +40453,202.2649999998523,-0.065469296606441 +40454,202.2699999998523,-0.06546473387257123 +40455,202.2749999998523,-0.0654601749643996 +40456,202.2799999998523,-0.06545561987230905 +40457,202.2849999998523,-0.06545106858673749 +40458,202.28999999985228,-0.06544652109817746 +40459,202.29499999985228,-0.06544197739717554 +40460,202.29999999985228,-0.06543743747433195 +40461,202.30499999985227,-0.06543290132030005 +40462,202.30999999985227,-0.06542836892578593 +40463,202.31499999985226,-0.06542384028154795 +40464,202.31999999985226,-0.06541931537839628 +40465,202.32499999985225,-0.06541479420719243 +40466,202.32999999985225,-0.06541027675884889 +40467,202.33499999985224,-0.06540576302432866 +40468,202.33999999985224,-0.06540125299464478 +40469,202.34499999985223,-0.06539674666086001 +40470,202.34999999985223,-0.0653922440140863 +40471,202.35499999985223,-0.06538774504548447 +40472,202.35999999985222,-0.06538324974626375 +40473,202.36499999985222,-0.06537875810768133 +40474,202.3699999998522,-0.06537427012104212 +40475,202.3749999998522,-0.06536978577769816 +40476,202.3799999998522,-0.06536530506904835 +40477,202.3849999998522,-0.06536082798653801 +40478,202.3899999998522,-0.06535635452165854 +40479,202.3949999998522,-0.06535188466594702 +40480,202.39999999985218,-0.06534741841098575 +40481,202.40499999985218,-0.06534295574840206 +40482,202.40999999985218,-0.06533849666986775 +40483,202.41499999985217,-0.06533404116709883 +40484,202.41999999985217,-0.06532958923185517 +40485,202.42499999985216,-0.06532514085594006 +40486,202.42999999985216,-0.06532069603119994 +40487,202.43499999985215,-0.06531625474952399 +40488,202.43999999985215,-0.06531181700284383 +40489,202.44499999985214,-0.06530738278313312 +40490,202.44999999985214,-0.06530295208240729 +40491,202.45499999985213,-0.06529852489272314 +40492,202.45999999985213,-0.06529410120617854 +40493,202.46499999985213,-0.06528968101491209 +40494,202.46999999985212,-0.0652852643111028 +40495,202.47499999985212,-0.0652808510869698 +40496,202.4799999998521,-0.06527644133477188 +40497,202.4849999998521,-0.06527203504680736 +40498,202.4899999998521,-0.06526763221541367 +40499,202.4949999998521,-0.06526323283296706 +40500,202.4999999998521,-0.0652588368918823 +40501,202.5049999998521,-0.06525444438461232 +40502,202.50999999985208,-0.06525005530364804 +40503,202.51499999985208,-0.06524566964151791 +40504,202.51999999985208,-0.06524128739078772 +40505,202.52499999985207,-0.0652369085440603 +40506,202.52999999985207,-0.06523253309397518 +40507,202.53499999985206,-0.06522816103320835 +40508,202.53999999985206,-0.06522379235447191 +40509,202.54499999985205,-0.06521942705051394 +40510,202.54999999985205,-0.06521506511411798 +40511,202.55499999985204,-0.06521070653810301 +40512,202.55999999985204,-0.065206351315323 +40513,202.56499999985203,-0.06520199943866671 +40514,202.56999999985203,-0.06519765090105739 +40515,202.57499999985203,-0.06519330569545256 +40516,202.57999999985202,-0.06518896381484372 +40517,202.58499999985202,-0.06518462525225607 +40518,202.589999999852,-0.06518029000074829 +40519,202.594999999852,-0.06517595805341227 +40520,202.599999999852,-0.06517162940337282 +40521,202.604999999852,-0.0651673040437875 +40522,202.609999999852,-0.06516298196784631 +40523,202.614999999852,-0.06515866316877146 +40524,202.61999999985198,-0.0651543476398171 +40525,202.62499999985198,-0.06515003537426917 +40526,202.62999999985198,-0.06514572636544504 +40527,202.63499999985197,-0.06514142060669333 +40528,202.63999999985197,-0.06513711809139373 +40529,202.64499999985196,-0.06513281881295667 +40530,202.64999999985196,-0.06512852276482316 +40531,202.65499999985195,-0.06512422994046452 +40532,202.65999999985195,-0.06511994033338217 +40533,202.66499999985194,-0.06511565393710744 +40534,202.66999999985194,-0.06511137074520129 +40535,202.67499999985193,-0.06510709075125413 +40536,202.67999999985193,-0.0651028139488856 +40537,202.68499999985193,-0.06509854033174434 +40538,202.68999999985192,-0.06509426989350776 +40539,202.69499999985192,-0.06509000262788192 +40540,202.6999999998519,-0.06508573852860118 +40541,202.7049999998519,-0.06508147758942812 +40542,202.7099999998519,-0.06507721980415326 +40543,202.7149999998519,-0.0650729651665949 +40544,202.7199999998519,-0.06506871367059887 +40545,202.7249999998519,-0.06506446531003837 +40546,202.72999999985188,-0.06506022007881379 +40547,202.73499999985188,-0.06505597797085244 +40548,202.73999999985188,-0.06505173898010844 +40549,202.74499999985187,-0.06504750310056247 +40550,202.74999999985187,-0.0650432703262216 +40551,202.75499999985186,-0.06503904065111912 +40552,202.75999999985186,-0.06503481406931431 +40553,202.76499999985185,-0.0650305905748923 +40554,202.76999999985185,-0.06502637016196387 +40555,202.77499999985184,-0.06502215282466522 +40556,202.77999999985184,-0.06501793855715791 +40557,202.78499999985183,-0.06501372735362855 +40558,202.78999999985183,-0.06500951920828868 +40559,202.79499999985183,-0.06500531411537462 +40560,202.79999999985182,-0.06500111206914726 +40561,202.80499999985182,-0.06499691306389188 +40562,202.8099999998518,-0.06499271709391805 +40563,202.8149999998518,-0.06498852415355934 +40564,202.8199999998518,-0.06498433423717329 +40565,202.8249999998518,-0.06498014733914112 +40566,202.8299999998518,-0.06497596345386764 +40567,202.8349999998518,-0.0649717825757811 +40568,202.83999999985178,-0.06496760469933294 +40569,202.84499999985178,-0.06496342981899775 +40570,202.84999999985178,-0.06495925792927301 +40571,202.85499999985177,-0.06495508902467897 +40572,202.85999999985177,-0.06495092309975851 +40573,202.86499999985176,-0.06494676014907698 +40574,202.86999999985176,-0.06494260016722202 +40575,202.87499999985175,-0.06493844314880343 +40576,202.87999999985175,-0.06493428908845303 +40577,202.88499999985174,-0.06493013798082449 +40578,202.88999999985174,-0.06492598982059318 +40579,202.89499999985173,-0.06492184460245605 +40580,202.89999999985173,-0.06491770232113148 +40581,202.90499999985173,-0.06491356297135908 +40582,202.90999999985172,-0.06490942654789966 +40583,202.91499999985172,-0.06490529304553497 +40584,202.9199999998517,-0.0649011624590676 +40585,202.9249999998517,-0.06489703478332093 +40586,202.9299999998517,-0.06489291001313884 +40587,202.9349999998517,-0.06488878814338567 +40588,202.9399999998517,-0.06488466916894609 +40589,202.9449999998517,-0.06488055308472492 +40590,202.94999999985168,-0.064876439885647 +40591,202.95499999985168,-0.0648723295666571 +40592,202.95999999985168,-0.06486822212271977 +40593,202.96499999985167,-0.06486411754881921 +40594,202.96999999985167,-0.06486001583995911 +40595,202.97499999985166,-0.06485591699116255 +40596,202.97999999985166,-0.06485182099747192 +40597,202.98499999985165,-0.0648477278539487 +40598,202.98999999985165,-0.06484363755567342 +40599,202.99499999985164,-0.06483955009774549 +40600,202.99999999985164,-0.06483546547528307 +40601,203.00499999985163,-0.06483138368342303 +40602,203.00999999985163,-0.0648273047173207 +40603,203.01499999985163,-0.06482322857214988 +40604,203.01999999985162,-0.06481915524310261 +40605,203.02499999985162,-0.06481508472538917 +40606,203.0299999998516,-0.06481101701423785 +40607,203.0349999998516,-0.06480695210489491 +40608,203.0399999998516,-0.06480288999262447 +40609,203.0449999998516,-0.06479883067270832 +40610,203.0499999998516,-0.06479477414044588 +40611,203.0549999998516,-0.06479072039115408 +40612,203.05999999985158,-0.06478666942016724 +40613,203.06499999985158,-0.06478262122283694 +40614,203.06999999985158,-0.06477857579453195 +40615,203.07499999985157,-0.06477453313063808 +40616,203.07999999985157,-0.06477049322655813 +40617,203.08499999985156,-0.06476645607771174 +40618,203.08999999985156,-0.06476242167953529 +40619,203.09499999985155,-0.06475839002748182 +40620,203.09999999985155,-0.06475436111702089 +40621,203.10499999985154,-0.06475033494363852 +40622,203.10999999985154,-0.06474631150283706 +40623,203.11499999985153,-0.0647422907901351 +40624,203.11999999985153,-0.06473827280106738 +40625,203.12499999985152,-0.06473425753118466 +40626,203.12999999985152,-0.06473024497605365 +40627,203.13499999985152,-0.0647262351312569 +40628,203.1399999998515,-0.06472222799239274 +40629,203.1449999998515,-0.06471822355507514 +40630,203.1499999998515,-0.0647142218149336 +40631,203.1549999998515,-0.06471022276761311 +40632,203.1599999998515,-0.06470622640877403 +40633,203.1649999998515,-0.06470223273409202 +40634,203.16999999985148,-0.0646982417392579 +40635,203.17499999985148,-0.0646942534199776 +40636,203.17999999985147,-0.06469026777197205 +40637,203.18499999985147,-0.0646862847909771 +40638,203.18999999985147,-0.06468230447274345 +40639,203.19499999985146,-0.06467832681303652 +40640,203.19999999985146,-0.0646743518076364 +40641,203.20499999985145,-0.06467037945233772 +40642,203.20999999985145,-0.06466640974294964 +40643,203.21499999985144,-0.06466244267529567 +40644,203.21999999985144,-0.06465847824521365 +40645,203.22499999985143,-0.06465451644855566 +40646,203.22999999985143,-0.06465055728118792 +40647,203.23499999985142,-0.06464660073899071 +40648,203.23999999985142,-0.0646426468178583 +40649,203.24499999985142,-0.06463869551369886 +40650,203.2499999998514,-0.06463474682243434 +40651,203.2549999998514,-0.0646308007400005 +40652,203.2599999998514,-0.06462685726234671 +40653,203.2649999998514,-0.06462291638543595 +40654,203.2699999998514,-0.06461897810524468 +40655,203.2749999998514,-0.06461504241776282 +40656,203.27999999985138,-0.06461110931899361 +40657,203.28499999985138,-0.06460717880495358 +40658,203.28999999985137,-0.06460325087167244 +40659,203.29499999985137,-0.06459932551519305 +40660,203.29999999985137,-0.06459540273157133 +40661,203.30499999985136,-0.06459148251687612 +40662,203.30999999985136,-0.0645875648671892 +40663,203.31499999985135,-0.0645836497786052 +40664,203.31999999985135,-0.06457973724723148 +40665,203.32499999985134,-0.06457582726918808 +40666,203.32999999985134,-0.06457191984060766 +40667,203.33499999985133,-0.06456801495763545 +40668,203.33999999985133,-0.06456411261642912 +40669,203.34499999985132,-0.06456021281315878 +40670,203.34999999985132,-0.06455631554400686 +40671,203.35499999985132,-0.06455242080516803 +40672,203.3599999998513,-0.0645485285928492 +40673,203.3649999998513,-0.0645446389032694 +40674,203.3699999998513,-0.06454075173265976 +40675,203.3749999998513,-0.06453686707726333 +40676,203.3799999998513,-0.0645329849333352 +40677,203.3849999998513,-0.06452910529714224 +40678,203.38999999985128,-0.06452522816496316 +40679,203.39499999985128,-0.06452135353308841 +40680,203.39999999985127,-0.06451748139782014 +40681,203.40499999985127,-0.06451361175547207 +40682,203.40999999985127,-0.06450974460236951 +40683,203.41499999985126,-0.06450587993484921 +40684,203.41999999985126,-0.06450201774925943 +40685,203.42499999985125,-0.0644981580419597 +40686,203.42999999985125,-0.06449430080932092 +40687,203.43499999985124,-0.06449044604772522 +40688,203.43999999985124,-0.06448659375356589 +40689,203.44499999985123,-0.06448274392324738 +40690,203.44999999985123,-0.06447889655318517 +40691,203.45499999985122,-0.06447505163980577 +40692,203.45999999985122,-0.06447120917954664 +40693,203.46499999985122,-0.06446736916885613 +40694,203.4699999998512,-0.06446353160419342 +40695,203.4749999998512,-0.06445969648202847 +40696,203.4799999998512,-0.06445586379884193 +40697,203.4849999998512,-0.06445203355112514 +40698,203.4899999998512,-0.06444820573538008 +40699,203.4949999998512,-0.06444438034811924 +40700,203.49999999985118,-0.0644405573858656 +40701,203.50499999985118,-0.06443673684515262 +40702,203.50999999985117,-0.06443291872252414 +40703,203.51499999985117,-0.0644291030145343 +40704,203.51999999985117,-0.06442528971774758 +40705,203.52499999985116,-0.06442147882873864 +40706,203.52999999985116,-0.06441767034409236 +40707,203.53499999985115,-0.0644138642604037 +40708,203.53999999985115,-0.06441006057427773 +40709,203.54499999985114,-0.0644062592823295 +40710,203.54999999985114,-0.0644024603811841 +40711,203.55499999985113,-0.06439866386747647 +40712,203.55999999985113,-0.06439486973785147 +40713,203.56499999985112,-0.06439107798896375 +40714,203.56999999985112,-0.06438728861747772 +40715,203.57499999985112,-0.06438350162006756 +40716,203.5799999998511,-0.06437971699341707 +40717,203.5849999998511,-0.06437593473421971 +40718,203.5899999998511,-0.0643721548391785 +40719,203.5949999998511,-0.064368377305006 +40720,203.5999999998511,-0.06436460212842421 +40721,203.6049999998511,-0.06436082930616462 +40722,203.60999999985108,-0.06435705883496808 +40723,203.61499999985108,-0.06435329071158474 +40724,203.61999999985107,-0.06434952493277414 +40725,203.62499999985107,-0.06434576149530498 +40726,203.62999999985107,-0.0643420003959552 +40727,203.63499999985106,-0.06433824163151187 +40728,203.63999999985106,-0.06433448519877123 +40729,203.64499999985105,-0.06433073109453853 +40730,203.64999999985105,-0.06432697931562807 +40731,203.65499999985104,-0.06432322985886312 +40732,203.65999999985104,-0.06431948272107589 +40733,203.66499999985103,-0.06431573789910748 +40734,203.66999999985103,-0.06431199538980784 +40735,203.67499999985102,-0.06430825519003572 +40736,203.67999999985102,-0.06430451729665868 +40737,203.68499999985102,-0.06430078170655293 +40738,203.689999999851,-0.0642970484166034 +40739,203.694999999851,-0.06429331742370367 +40740,203.699999999851,-0.06428958872475589 +40741,203.704999999851,-0.06428586231667077 +40742,203.709999999851,-0.06428213819636755 +40743,203.714999999851,-0.06427841636077396 +40744,203.71999999985098,-0.06427469680682611 +40745,203.72499999985098,-0.06427097953146857 +40746,203.72999999985097,-0.06426726453165423 +40747,203.73499999985097,-0.06426355180434427 +40748,203.73999999985097,-0.06425984134650822 +40749,203.74499999985096,-0.0642561331551238 +40750,203.74999999985096,-0.06425242722717692 +40751,203.75499999985095,-0.06424872355966166 +40752,203.75999999985095,-0.06424502214958026 +40753,203.76499999985094,-0.06424132299394301 +40754,203.76999999985094,-0.06423762608976825 +40755,203.77499999985093,-0.06423393143408235 +40756,203.77999999985093,-0.06423023902391964 +40757,203.78499999985092,-0.06422654885632237 +40758,203.78999999985092,-0.06422286092834073 +40759,203.79499999985092,-0.06421917523703273 +40760,203.7999999998509,-0.06421549177946426 +40761,203.8049999998509,-0.06421181055270896 +40762,203.8099999998509,-0.06420813155384823 +40763,203.8149999998509,-0.06420445477997123 +40764,203.8199999998509,-0.06420078022817476 +40765,203.8249999998509,-0.06419710789556328 +40766,203.82999999985088,-0.0641934377792489 +40767,203.83499999985088,-0.06418976987635128 +40768,203.83999999985087,-0.06418610418399764 +40769,203.84499999985087,-0.06418244069932272 +40770,203.84999999985087,-0.06417877941946872 +40771,203.85499999985086,-0.0641751203415853 +40772,203.85999999985086,-0.06417146346282954 +40773,203.86499999985085,-0.06416780878036589 +40774,203.86999999985085,-0.06416415629136615 +40775,203.87499999985084,-0.06416050599300947 +40776,203.87999999985084,-0.0641568578824822 +40777,203.88499999985083,-0.06415321195697803 +40778,203.88999999985083,-0.0641495682136978 +40779,203.89499999985082,-0.0641459266498496 +40780,203.89999999985082,-0.0641422872626486 +40781,203.90499999985082,-0.06413865004931718 +40782,203.9099999998508,-0.06413501500708473 +40783,203.9149999998508,-0.06413138213318773 +40784,203.9199999998508,-0.06412775142486973 +40785,203.9249999998508,-0.06412412287938124 +40786,203.9299999998508,-0.06412049649397973 +40787,203.9349999998508,-0.06411687226592964 +40788,203.93999999985078,-0.0641132501925023 +40789,203.94499999985078,-0.06410963027097594 +40790,203.94999999985077,-0.06410601249863561 +40791,203.95499999985077,-0.06410239687277319 +40792,203.95999999985077,-0.06409878339068739 +40793,203.96499999985076,-0.0640951720496836 +40794,203.96999999985076,-0.064091562847074 +40795,203.97499999985075,-0.06408795578017748 +40796,203.97999999985075,-0.0640843508463196 +40797,203.98499999985074,-0.06408074804283252 +40798,203.98999999985074,-0.0640771473670551 +40799,203.99499999985073,-0.06407354881633269 +40800,203.99999999985073,-0.0640699523880173 +40801,204.00499999985072,-0.06406635807946742 +40802,204.00999999985072,-0.06406276588804806 +40803,204.01499999985072,-0.06405917581113073 +40804,204.0199999998507,-0.06405558784609336 +40805,204.0249999998507,-0.06405200199032032 +40806,204.0299999998507,-0.06404841824120239 +40807,204.0349999998507,-0.0640448365961367 +40808,204.0399999998507,-0.06404125705252676 +40809,204.0449999998507,-0.06403767960778237 +40810,204.04999999985068,-0.06403410425931962 +40811,204.05499999985068,-0.0640305310045609 +40812,204.05999999985067,-0.0640269598409348 +40813,204.06499999985067,-0.06402339076587618 +40814,204.06999999985067,-0.06401982377682605 +40815,204.07499999985066,-0.06401625887123157 +40816,204.07999999985066,-0.0640126960465461 +40817,204.08499999985065,-0.06400913530022904 +40818,204.08999999985065,-0.06400557662974596 +40819,204.09499999985064,-0.06400202003256841 +40820,204.09999999985064,-0.06399846550617404 +40821,204.10499999985063,-0.06399491304804651 +40822,204.10999999985063,-0.06399136265567545 +40823,204.11499999985062,-0.0639878143265565 +40824,204.11999999985062,-0.06398426805819114 +40825,204.12499999985062,-0.0639807238480869 +40826,204.1299999998506,-0.06397718169375712 +40827,204.1349999998506,-0.06397364159272104 +40828,204.1399999998506,-0.06397010354250375 +40829,204.1449999998506,-0.06396656754063615 +40830,204.1499999998506,-0.06396303358465497 +40831,204.1549999998506,-0.06395950167210268 +40832,204.15999999985058,-0.06395597180052753 +40833,204.16499999985058,-0.06395244396748352 +40834,204.16999999985057,-0.0639489181705303 +40835,204.17499999985057,-0.06394539440723328 +40836,204.17999999985057,-0.06394187267516349 +40837,204.18499999985056,-0.06393835297189762 +40838,204.18999999985056,-0.06393483529501795 +40839,204.19499999985055,-0.06393131964211242 +40840,204.19999999985055,-0.06392780601077448 +40841,204.20499999985054,-0.06392429439860317 +40842,204.20999999985054,-0.06392078480320307 +40843,204.21499999985053,-0.06391727722218425 +40844,204.21999999985053,-0.0639137716531623 +40845,204.22499999985052,-0.06391026809375823 +40846,204.22999999985052,-0.06390676654159856 +40847,204.23499999985052,-0.06390326699431517 +40848,204.2399999998505,-0.06389976944954542 +40849,204.2449999998505,-0.063896273904932 +40850,204.2499999998505,-0.06389278035812294 +40851,204.2549999998505,-0.06388928880677172 +40852,204.2599999998505,-0.06388579924853705 +40853,204.2649999998505,-0.06388231168108295 +40854,204.26999999985048,-0.06387882610207878 +40855,204.27499999985048,-0.0638753425091991 +40856,204.27999999985047,-0.06387186090012376 +40857,204.28499999985047,-0.06386838127253777 +40858,204.28999999985047,-0.06386490362413144 +40859,204.29499999985046,-0.06386142795260019 +40860,204.29999999985046,-0.06385795425564463 +40861,204.30499999985045,-0.06385448253097051 +40862,204.30999999985045,-0.06385101277628867 +40863,204.31499999985044,-0.06384754498931512 +40864,204.31999999985044,-0.06384407916777093 +40865,204.32499999985043,-0.06384061530938223 +40866,204.32999999985043,-0.06383715341188019 +40867,204.33499999985042,-0.06383369347300105 +40868,204.33999999985042,-0.06383023549048603 +40869,204.34499999985042,-0.06382677946208132 +40870,204.3499999998504,-0.06382332538553816 +40871,204.3549999998504,-0.06381987325861266 +40872,204.3599999998504,-0.06381642307906593 +40873,204.3649999998504,-0.06381297484466397 +40874,204.3699999998504,-0.0638095285531777 +40875,204.3749999998504,-0.0638060842023829 +40876,204.37999999985038,-0.06380264179006023 +40877,204.38499999985038,-0.06379920131399522 +40878,204.38999999985037,-0.06379576277197817 +40879,204.39499999985037,-0.06379232616180425 +40880,204.39999999985037,-0.0637888914812734 +40881,204.40499999985036,-0.06378545872819034 +40882,204.40999999985036,-0.06378202790036458 +40883,204.41499999985035,-0.06377859899561032 +40884,204.41999999985035,-0.06377517201174654 +40885,204.42499999985034,-0.06377174694659686 +40886,204.42999999985034,-0.06376832379798968 +40887,204.43499999985033,-0.063764902563758 +40888,204.43999999985033,-0.06376148324173951 +40889,204.44499999985032,-0.06375806582977656 +40890,204.44999999985032,-0.06375465032571609 +40891,204.45499999985032,-0.06375123672740966 +40892,204.4599999998503,-0.06374782503271345 +40893,204.4649999998503,-0.06374441523948818 +40894,204.4699999998503,-0.06374100734559915 +40895,204.4749999998503,-0.06373760134891619 +40896,204.4799999998503,-0.06373419724731366 +40897,204.4849999998503,-0.06373079503867045 +40898,204.48999999985028,-0.06372739472086993 +40899,204.49499999985028,-0.06372399629179994 +40900,204.49999999985027,-0.0637205997493528 +40901,204.50499999985027,-0.06371720509142528 +40902,204.50999999985027,-0.06371381231591859 +40903,204.51499999985026,-0.06371042142073832 +40904,204.51999999985026,-0.06370703240379454 +40905,204.52499999985025,-0.06370364526300158 +40906,204.52999999985025,-0.06370025999627826 +40907,204.53499999985024,-0.06369687660154773 +40908,204.53999999985024,-0.06369349507673744 +40909,204.54499999985023,-0.06369011541977919 +40910,204.54999999985023,-0.0636867376286091 +40911,204.55499999985022,-0.06368336170116758 +40912,204.55999999985022,-0.06367998763539931 +40913,204.56499999985022,-0.06367661542925328 +40914,204.5699999998502,-0.06367324508068266 +40915,204.5749999998502,-0.06366987658764493 +40916,204.5799999998502,-0.06366650994810175 +40917,204.5849999998502,-0.063663145160019 +40918,204.5899999998502,-0.06365978222136676 +40919,204.5949999998502,-0.06365642113011927 +40920,204.59999999985018,-0.06365306188425499 +40921,204.60499999985018,-0.06364970448175644 +40922,204.60999999985017,-0.0636463489206104 +40923,204.61499999985017,-0.06364299519880766 +40924,204.61999999985017,-0.06363964331434317 +40925,204.62499999985016,-0.063636293265216 +40926,204.62999999985016,-0.06363294504942923 +40927,204.63499999985015,-0.06362959866499011 +40928,204.63999999985015,-0.06362625410990987 +40929,204.64499999985014,-0.06362291138220379 +40930,204.64999999985014,-0.0636195704798912 +40931,204.65499999985013,-0.06361623140099543 +40932,204.65999999985013,-0.06361289414354383 +40933,204.66499999985012,-0.06360955870556771 +40934,204.66999999985012,-0.06360622508510239 +40935,204.67499999985012,-0.0636028932801871 +40936,204.6799999998501,-0.06359956328886508 +40937,204.6849999998501,-0.06359623510918347 +40938,204.6899999998501,-0.06359290873919334 +40939,204.6949999998501,-0.06358958417694964 +40940,204.6999999998501,-0.0635862614205113 +40941,204.7049999998501,-0.06358294046794102 +40942,204.70999999985008,-0.06357962131730548 +40943,204.71499999985008,-0.06357630396667514 +40944,204.71999999985007,-0.06357298841412436 +40945,204.72499999985007,-0.06356967465773128 +40946,204.72999999985007,-0.06356636269557793 +40947,204.73499999985006,-0.06356305252575006 +40948,204.73999999985006,-0.06355974414633732 +40949,204.74499999985005,-0.06355643755543307 +40950,204.74999999985005,-0.06355313275113444 +40951,204.75499999985004,-0.06354982973154236 +40952,204.75999999985004,-0.06354652849476149 +40953,204.76499999985003,-0.06354322903890022 +40954,204.76999999985003,-0.06353993136207069 +40955,204.77499999985002,-0.0635366354623887 +40956,204.77999999985002,-0.0635333413379738 +40957,204.78499999985002,-0.0635300489869492 +40958,204.78999999985,-0.06352675840744179 +40959,204.79499999985,-0.06352346959758214 +40960,204.79999999985,-0.06352018255550444 +40961,204.80499999985,-0.06351689727934656 +40962,204.80999999985,-0.06351361376725 +40963,204.81499999985,-0.06351033201735981 +40964,204.81999999984998,-0.06350705202782474 +40965,204.82499999984998,-0.06350377379679706 +40966,204.82999999984997,-0.06350049732243268 +40967,204.83499999984997,-0.06349722260289105 +40968,204.83999999984997,-0.06349394963633517 +40969,204.84499999984996,-0.06349067842093165 +40970,204.84999999984996,-0.06348740895485055 +40971,204.85499999984995,-0.06348414123626554 +40972,204.85999999984995,-0.06348087526335376 +40973,204.86499999984994,-0.06347761103429589 +40974,204.86999999984994,-0.06347434854727606 +40975,204.87499999984993,-0.0634710878004819 +40976,204.87999999984993,-0.06346782879210454 +40977,204.88499999984992,-0.06346457152033855 +40978,204.88999999984992,-0.06346131598338196 +40979,204.89499999984992,-0.06345806217943624 +40980,204.8999999998499,-0.06345481010670628 +40981,204.9049999998499,-0.0634515597634004 +40982,204.9099999998499,-0.06344831114773032 +40983,204.9149999998499,-0.06344506425791117 +40984,204.9199999998499,-0.06344181909216147 +40985,204.9249999998499,-0.0634385756487031 +40986,204.92999999984988,-0.06343533392576134 +40987,204.93499999984988,-0.06343209392156479 +40988,204.93999999984987,-0.06342885563434542 +40989,204.94499999984987,-0.06342561906233853 +40990,204.94999999984987,-0.06342238420378274 +40991,204.95499999984986,-0.06341915105692002 +40992,204.95999999984986,-0.0634159196199956 +40993,204.96499999984985,-0.06341268989125803 +40994,204.96999999984985,-0.06340946186895915 +40995,204.97499999984984,-0.06340623555135409 +40996,204.97999999984984,-0.06340301093670121 +40997,204.98499999984983,-0.06339978802326215 +40998,204.98999999984983,-0.0633965668093018 +40999,204.99499999984982,-0.06339334729308824 +41000,204.99999999984982,-0.06339012947289287 +41001,205.00499999984982,-0.06338691334699023 +41002,205.0099999998498,-0.06338369891365811 +41003,205.0149999998498,-0.06338048617117746 +41004,205.0199999998498,-0.06337727511783246 +41005,205.0249999998498,-0.06337406575191047 +41006,205.0299999998498,-0.06337085807170197 +41007,205.0349999998498,-0.06336765207550064 +41008,205.03999999984978,-0.06336444776160333 +41009,205.04499999984978,-0.06336124512830998 +41010,205.04999999984977,-0.06335804417392371 +41011,205.05499999984977,-0.06335484489675074 +41012,205.05999999984977,-0.0633516472951004 +41013,205.06499999984976,-0.06334845136728513 +41014,205.06999999984976,-0.06334525711162049 +41015,205.07499999984975,-0.0633420645264251 +41016,205.07999999984975,-0.06333887361002066 +41017,205.08499999984974,-0.06333568436073195 +41018,205.08999999984974,-0.0633324967768868 +41019,205.09499999984973,-0.06332931085681609 +41020,205.09999999984973,-0.06332612659885377 +41021,205.10499999984972,-0.06332294400133677 +41022,205.10999999984972,-0.06331976306260509 +41023,205.11499999984972,-0.06331658378100175 +41024,205.1199999998497,-0.06331340615487271 +41025,205.1249999998497,-0.06331023018256703 +41026,205.1299999998497,-0.06330705586243666 +41027,205.1349999998497,-0.06330388319283663 +41028,205.1399999998497,-0.06330071217212484 +41029,205.1449999998497,-0.06329754279866222 +41030,205.14999999984968,-0.06329437507081263 +41031,205.15499999984968,-0.0632912089869429 +41032,205.15999999984967,-0.06328804454542279 +41033,205.16499999984967,-0.06328488174462496 +41034,205.16999999984967,-0.06328172058292501 +41035,205.17499999984966,-0.06327856105870149 +41036,205.17999999984966,-0.0632754031703358 +41037,205.18499999984965,-0.06327224691621224 +41038,205.18999999984965,-0.06326909229471805 +41039,205.19499999984964,-0.0632659393042433 +41040,205.19999999984964,-0.06326278794318095 +41041,205.20499999984963,-0.06325963820992683 +41042,205.20999999984963,-0.0632564901028796 +41043,205.21499999984962,-0.06325334362044081 +41044,205.21999999984962,-0.06325019876101481 +41045,205.22499999984962,-0.0632470555230088 +41046,205.2299999998496,-0.06324391390483279 +41047,205.2349999998496,-0.06324077390489963 +41048,205.2399999998496,-0.06323763552162495 +41049,205.2449999998496,-0.06323449875342721 +41050,205.2499999998496,-0.06323136359872761 +41051,205.2549999998496,-0.06322823005595021 +41052,205.25999999984958,-0.06322509812352177 +41053,205.26499999984958,-0.06322196779987188 +41054,205.26999999984957,-0.06321883908343284 +41055,205.27499999984957,-0.06321571197263975 +41056,205.27999999984957,-0.06321258646593042 +41057,205.28499999984956,-0.06320946256174541 +41058,205.28999999984956,-0.06320634025852802 +41059,205.29499999984955,-0.06320321955472424 +41060,205.29999999984955,-0.06320010044878283 +41061,205.30499999984954,-0.0631969829391552 +41062,205.30999999984954,-0.06319386702429548 +41063,205.31499999984953,-0.06319075270266053 +41064,205.31999999984953,-0.06318763997270985 +41065,205.32499999984952,-0.06318452883290561 +41066,205.32999999984952,-0.06318141928171271 +41067,205.33499999984952,-0.06317831131759864 +41068,205.3399999998495,-0.06317520493903361 +41069,205.3449999998495,-0.06317210014449041 +41070,205.3499999998495,-0.06316899693244456 +41071,205.3549999998495,-0.06316589530137413 +41072,205.3599999998495,-0.06316279524975987 +41073,205.3649999998495,-0.06315969677608513 +41074,205.36999999984948,-0.06315659987883586 +41075,205.37499999984948,-0.06315350455650065 +41076,205.37999999984947,-0.06315041080757065 +41077,205.38499999984947,-0.06314731863053964 +41078,205.38999999984946,-0.06314422802390394 +41079,205.39499999984946,-0.0631411389861625 +41080,205.39999999984946,-0.06313805151581679 +41081,205.40499999984945,-0.06313496561137089 +41082,205.40999999984945,-0.06313188127133137 +41083,205.41499999984944,-0.06312879849420745 +41084,205.41999999984944,-0.0631257172785108 +41085,205.42499999984943,-0.06312263762275565 +41086,205.42999999984943,-0.0631195595254588 +41087,205.43499999984942,-0.06311648298513953 +41088,205.43999999984942,-0.06311340800031966 +41089,205.44499999984941,-0.06311033456952347 +41090,205.4499999998494,-0.06310726269127784 +41091,205.4549999998494,-0.06310419236411204 +41092,205.4599999998494,-0.0631011235865579 +41093,205.4649999998494,-0.06309805635714968 +41094,205.4699999998494,-0.06309499067442419 +41095,205.4749999998494,-0.06309192653692061 +41096,205.47999999984938,-0.06308886394318067 +41097,205.48499999984938,-0.0630858028917485 +41098,205.48999999984937,-0.06308274338117072 +41099,205.49499999984937,-0.06307968540999635 +41100,205.49999999984936,-0.0630766289767769 +41101,205.50499999984936,-0.06307357408006627 +41102,205.50999999984936,-0.06307052071842079 +41103,205.51499999984935,-0.06306746889039921 +41104,205.51999999984935,-0.06306441859456272 +41105,205.52499999984934,-0.06306136982947486 +41106,205.52999999984934,-0.0630583225937016 +41107,205.53499999984933,-0.06305527688581132 +41108,205.53999999984933,-0.06305223270437477 +41109,205.54499999984932,-0.06304919004796503 +41110,205.54999999984932,-0.06304614891515764 +41111,205.55499999984931,-0.06304310930453046 +41112,205.5599999998493,-0.06304007121466373 +41113,205.5649999998493,-0.06303703464414001 +41114,205.5699999998493,-0.06303399959154424 +41115,205.5749999998493,-0.0630309660554637 +41116,205.5799999998493,-0.063027934034488 +41117,205.5849999998493,-0.06302490352720908 +41118,205.58999999984928,-0.06302187453222122 +41119,205.59499999984928,-0.063018847048121 +41120,205.59999999984927,-0.0630158210735073 +41121,205.60499999984927,-0.06301279660698135 +41122,205.60999999984926,-0.06300977364714667 +41123,205.61499999984926,-0.06300675219260904 +41124,205.61999999984926,-0.06300373224197657 +41125,205.62499999984925,-0.0630007137938596 +41126,205.62999999984925,-0.06299769684687083 +41127,205.63499999984924,-0.06299468139962515 +41128,205.63999999984924,-0.06299166745073975 +41129,205.64499999984923,-0.0629886549988341 +41130,205.64999999984923,-0.0629856440425299 +41131,205.65499999984922,-0.06298263458045109 +41132,205.65999999984922,-0.06297962661122387 +41133,205.66499999984921,-0.06297662013347669 +41134,205.6699999998492,-0.06297361514584018 +41135,205.6749999998492,-0.06297061164694727 +41136,205.6799999998492,-0.06296760963543303 +41137,205.6849999998492,-0.06296460910993482 +41138,205.6899999998492,-0.06296161006909215 +41139,205.6949999998492,-0.06295861251154676 +41140,205.69999999984918,-0.0629556164359426 +41141,205.70499999984918,-0.06295262184092576 +41142,205.70999999984917,-0.06294962872514459 +41143,205.71499999984917,-0.06294663708724957 +41144,205.71999999984916,-0.06294364692589338 +41145,205.72499999984916,-0.06294065823973084 +41146,205.72999999984916,-0.06293767102741896 +41147,205.73499999984915,-0.06293468528761692 +41148,205.73999999984915,-0.06293170101898601 +41149,205.74499999984914,-0.06292871822018974 +41150,205.74999999984914,-0.06292573688989368 +41151,205.75499999984913,-0.06292275702676561 +41152,205.75999999984913,-0.06291977862947538 +41153,205.76499999984912,-0.06291680169669503 +41154,205.76999999984912,-0.06291382622709867 +41155,205.77499999984911,-0.06291085221936255 +41156,205.7799999998491,-0.062907879672165 +41157,205.7849999998491,-0.06290490858418654 +41158,205.7899999998491,-0.0629019389541097 +41159,205.7949999998491,-0.06289897078061914 +41160,205.7999999998491,-0.06289600406240162 +41161,205.8049999998491,-0.06289303879814598 +41162,205.80999999984908,-0.06289007498654313 +41163,205.81499999984908,-0.06288711262628607 +41164,205.81999999984907,-0.06288415171606986 +41165,205.82499999984907,-0.06288119225459163 +41166,205.82999999984906,-0.06287823424055056 +41167,205.83499999984906,-0.0628752776726479 +41168,205.83999999984906,-0.06287232254958694 +41169,205.84499999984905,-0.06286936887007302 +41170,205.84999999984905,-0.06286641663281352 +41171,205.85499999984904,-0.06286346583651783 +41172,205.85999999984904,-0.06286051647989742 +41173,205.86499999984903,-0.06285756856166573 +41174,205.86999999984903,-0.06285462208053827 +41175,205.87499999984902,-0.06285167703523253 +41176,205.87999999984902,-0.06284873342446802 +41177,205.88499999984901,-0.06284579124696628 +41178,205.889999999849,-0.0628428505014508 +41179,205.894999999849,-0.0628399111866471 +41180,205.899999999849,-0.0628369733012827 +41181,205.904999999849,-0.06283403684408707 +41182,205.909999999849,-0.06283110181379169 +41183,205.914999999849,-0.06282816820913001 +41184,205.91999999984898,-0.06282523602883745 +41185,205.92499999984898,-0.06282230527165139 +41186,205.92999999984897,-0.06281937593631118 +41187,205.93499999984897,-0.06281644802155811 +41188,205.93999999984896,-0.06281352152613548 +41189,205.94499999984896,-0.06281059644878846 +41190,205.94999999984896,-0.06280767278826421 +41191,205.95499999984895,-0.06280475054331183 +41192,205.95999999984895,-0.06280182971268232 +41193,205.96499999984894,-0.06279891029512866 +41194,205.96999999984894,-0.06279599228940569 +41195,205.97499999984893,-0.06279307569427023 +41196,205.97999999984893,-0.06279016050848099 +41197,205.98499999984892,-0.06278724673079861 +41198,205.98999999984892,-0.06278433435998558 +41199,205.99499999984891,-0.06278142339480636 +41200,205.9999999998489,-0.06277851383402727 +41201,206.0049999998489,-0.06277560567641653 +41202,206.0099999998489,-0.06277269892074427 +41203,206.0149999998489,-0.06276979356578248 +41204,206.0199999998489,-0.06276688961030503 +41205,206.0249999998489,-0.06276398705308767 +41206,206.02999999984888,-0.062761085892908 +41207,206.03499999984888,-0.06275818612854553 +41208,206.03999999984887,-0.06275528775878163 +41209,206.04499999984887,-0.06275239078239944 +41210,206.04999999984886,-0.0627494951981841 +41211,206.05499999984886,-0.06274660100492245 +41212,206.05999999984886,-0.06274370820140328 +41213,206.06499999984885,-0.06274081678641717 +41214,206.06999999984885,-0.06273792675875656 +41215,206.07499999984884,-0.0627350381172157 +41216,206.07999999984884,-0.06273215086059068 +41217,206.08499999984883,-0.06272926498767942 +41218,206.08999999984883,-0.06272638049728163 +41219,206.09499999984882,-0.06272349738819886 +41220,206.09999999984882,-0.06272061565923448 +41221,206.10499999984881,-0.06271773530919363 +41222,206.1099999998488,-0.06271485633688327 +41223,206.1149999998488,-0.06271197874111217 +41224,206.1199999998488,-0.0627091025206909 +41225,206.1249999998488,-0.06270622767443176 +41226,206.1299999998488,-0.06270335420114892 +41227,206.1349999998488,-0.06270048209965824 +41228,206.13999999984878,-0.06269761136877745 +41229,206.14499999984878,-0.062694742007326 +41230,206.14999999984877,-0.06269187401412511 +41231,206.15499999984877,-0.06268900738799776 +41232,206.15999999984876,-0.06268614212776873 +41233,206.16499999984876,-0.06268327823226448 +41234,206.16999999984876,-0.06268041570031332 +41235,206.17499999984875,-0.06267755453074522 +41236,206.17999999984875,-0.06267469472239198 +41237,206.18499999984874,-0.06267183627408705 +41238,206.18999999984874,-0.06266897918466569 +41239,206.19499999984873,-0.06266612345296484 +41240,206.19999999984873,-0.0626632690778232 +41241,206.20499999984872,-0.0626604160580812 +41242,206.20999999984872,-0.06265756439258095 +41243,206.21499999984871,-0.06265471408016633 +41244,206.2199999998487,-0.0626518651196829 +41245,206.2249999998487,-0.06264901750997792 +41246,206.2299999998487,-0.06264617124990039 +41247,206.2349999998487,-0.06264332633830098 +41248,206.2399999998487,-0.06264048277403207 +41249,206.2449999998487,-0.06263764055594771 +41250,206.24999999984868,-0.0626347996829037 +41251,206.25499999984868,-0.06263196015375747 +41252,206.25999999984867,-0.06262912196736814 +41253,206.26499999984867,-0.06262628512259652 +41254,206.26999999984866,-0.06262344961830509 +41255,206.27499999984866,-0.06262061545335801 +41256,206.27999999984866,-0.06261778262662111 +41257,206.28499999984865,-0.06261495113696185 +41258,206.28999999984865,-0.06261212098324936 +41259,206.29499999984864,-0.06260929216435447 +41260,206.29999999984864,-0.06260646467914961 +41261,206.30499999984863,-0.06260363852650888 +41262,206.30999999984863,-0.062600813705308 +41263,206.31499999984862,-0.06259799021442439 +41264,206.31999999984862,-0.06259516805273704 +41265,206.32499999984861,-0.0625923472191266 +41266,206.3299999998486,-0.06258952771247536 +41267,206.3349999998486,-0.06258670953166723 +41268,206.3399999998486,-0.06258389267558774 +41269,206.3449999998486,-0.06258107714312403 +41270,206.3499999998486,-0.06257826293316485 +41271,206.3549999998486,-0.0625754500446006 +41272,206.35999999984858,-0.06257263847632326 +41273,206.36499999984858,-0.06256982822722641 +41274,206.36999999984857,-0.06256701929620524 +41275,206.37499999984857,-0.06256421168215653 +41276,206.37999999984856,-0.06256140538397868 +41277,206.38499999984856,-0.06255860040057165 +41278,206.38999999984856,-0.06255579673083698 +41279,206.39499999984855,-0.06255299437367784 +41280,206.39999999984855,-0.06255019332799891 +41281,206.40499999984854,-0.06254739359270652 +41282,206.40999999984854,-0.06254459516670852 +41283,206.41499999984853,-0.06254179804891435 +41284,206.41999999984853,-0.06253900223823503 +41285,206.42499999984852,-0.0625362077335831 +41286,206.42999999984852,-0.0625334145338727 +41287,206.43499999984851,-0.0625306226380195 +41288,206.4399999998485,-0.06252783204494075 +41289,206.4449999998485,-0.06252504275355522 +41290,206.4499999998485,-0.06252225476278324 +41291,206.4549999998485,-0.06251946807154667 +41292,206.4599999998485,-0.06251668267876892 +41293,206.4649999998485,-0.06251389858337494 +41294,206.46999999984848,-0.0625111157842912 +41295,206.47499999984848,-0.0625083342804457 +41296,206.47999999984847,-0.06250555407076795 +41297,206.48499999984847,-0.06250277515418903 +41298,206.48999999984846,-0.062499997529641506 +41299,206.49499999984846,-0.062497221196059445 +41300,206.49999999984846,-0.062494446152378445 +41301,206.50499999984845,-0.062491672397535614 +41302,206.50999999984845,-0.06248889993046954 +41303,206.51499999984844,-0.06248612875012036 +41304,206.51999999984844,-0.062483358855429674 +41305,206.52499999984843,-0.0624805902453406 +41306,206.52999999984843,-0.062477822918797714 +41307,206.53499999984842,-0.06247505687474711 +41308,206.53999999984842,-0.062472292112136375 +41309,206.54499999984841,-0.06246952862991455 +41310,206.5499999998484,-0.062466766427032173 +41311,206.5549999998484,-0.06246400550244125 +41312,206.5599999998484,-0.06246124585509527 +41313,206.5649999998484,-0.0624584874839492 +41314,206.5699999998484,-0.062455730387959436 +41315,206.5749999998484,-0.06245297456608388 +41316,206.57999999984838,-0.06245022001728188 +41317,206.58499999984838,-0.06244746674051423 +41318,206.58999999984837,-0.06244471473474319 +41319,206.59499999984837,-0.06244196399893247 +41320,206.59999999984836,-0.062439214532047205 +41321,206.60499999984836,-0.06243646633305403 +41322,206.60999999984836,-0.06243371940092097 +41323,206.61499999984835,-0.0624309737346175 +41324,206.61999999984835,-0.062428229333114545 +41325,206.62499999984834,-0.06242548619538447 +41326,206.62999999984834,-0.06242274432040103 +41327,206.63499999984833,-0.06242000370713943 +41328,206.63999999984833,-0.06241726435457632 +41329,206.64499999984832,-0.062414526261689744 +41330,206.64999999984832,-0.06241178942745917 +41331,206.65499999984831,-0.062409053850865474 +41332,206.6599999998483,-0.06240631953089096 +41333,206.6649999998483,-0.06240358646651931 +41334,206.6699999998483,-0.062400854656735665 +41335,206.6749999998483,-0.0623981241005265 +41336,206.6799999998483,-0.06239539479687974 +41337,206.6849999998483,-0.06239266674478469 +41338,206.68999999984828,-0.06238993994323207 +41339,206.69499999984828,-0.06238721439121393 +41340,206.69999999984827,-0.06238449008772378 +41341,206.70499999984827,-0.06238176703175647 +41342,206.70999999984826,-0.06237904522230825 +41343,206.71499999984826,-0.062376324658376746 +41344,206.71999999984826,-0.06237360533896097 +41345,206.72499999984825,-0.06237088726306128 +41346,206.72999999984825,-0.062368170429679425 +41347,206.73499999984824,-0.0623654548378185 +41348,206.73999999984824,-0.06236274048648302 +41349,206.74499999984823,-0.06236002737467879 +41350,206.74999999984823,-0.062357315501413026 +41351,206.75499999984822,-0.062354604865694274 +41352,206.75999999984822,-0.06235189546653244 +41353,206.76499999984821,-0.062349187302938786 +41354,206.7699999998482,-0.062346480373925914 +41355,206.7749999998482,-0.062343774678507775 +41356,206.7799999998482,-0.062341070215699644 +41357,206.7849999998482,-0.06233836698451819 +41358,206.7899999998482,-0.06233566498398135 +41359,206.7949999998482,-0.06233296421310844 +41360,206.79999999984818,-0.06233026467092009 +41361,206.80499999984818,-0.062327566356438255 +41362,206.80999999984817,-0.06232486926868623 +41363,206.81499999984817,-0.06232217340668861 +41364,206.81999999984816,-0.06231947876947133 +41365,206.82499999984816,-0.062316785356061645 +41366,206.82999999984816,-0.0623140931654881 +41367,206.83499999984815,-0.062311402196780594 +41368,206.83999999984815,-0.06230871244897029 +41369,206.84499999984814,-0.062306023921089665 +41370,206.84999999984814,-0.06230333661217253 +41371,206.85499999984813,-0.06230065052125397 +41372,206.85999999984813,-0.062297965647370376 +41373,206.86499999984812,-0.06229528198955944 +41374,206.86999999984812,-0.062292599546860145 +41375,206.87499999984811,-0.062289918318312744 +41376,206.8799999998481,-0.06228723830295881 +41377,206.8849999998481,-0.06228455949984118 +41378,206.8899999998481,-0.06228188190800398 +41379,206.8949999998481,-0.06227920552649262 +41380,206.8999999998481,-0.062276530354353765 +41381,206.9049999998481,-0.0622738563906354 +41382,206.90999999984808,-0.062271183634386745 +41383,206.91499999984808,-0.062268512084658285 +41384,206.91999999984807,-0.0622658417405018 +41385,206.92499999984807,-0.06226317260097031 +41386,206.92999999984806,-0.06226050466511811 +41387,206.93499999984806,-0.062257837932000744 +41388,206.93999999984806,-0.06225517240067504 +41389,206.94499999984805,-0.062252508070199046 +41390,206.94999999984805,-0.06224984493963207 +41391,206.95499999984804,-0.06224718300803467 +41392,206.95999999984804,-0.06224452227446867 +41393,206.96499999984803,-0.06224186273799711 +41394,206.96999999984803,-0.062239204397684295 +41395,206.97499999984802,-0.062236547252595746 +41396,206.97999999984802,-0.062233891301798225 +41397,206.98499999984801,-0.06223123654435975 +41398,206.989999999848,-0.06222858297934956 +41399,206.994999999848,-0.06222593060583809 +41400,206.999999999848,-0.06222327942289705 +41401,207.004999999848,-0.062220629429599356 +41402,207.009999999848,-0.06221798062501914 +41403,207.014999999848,-0.06221533300823174 +41404,207.01999999984798,-0.06221268657831374 +41405,207.02499999984798,-0.06221004133434292 +41406,207.02999999984797,-0.06220739727539828 +41407,207.03499999984797,-0.062204754400560024 +41408,207.03999999984796,-0.06220211270890955 +41409,207.04499999984796,-0.062199472199529496 +41410,207.04999999984796,-0.062196832871503675 +41411,207.05499999984795,-0.062194194723917094 +41412,207.05999999984795,-0.06219155775585598 +41413,207.06499999984794,-0.06218892196640773 +41414,207.06999999984794,-0.06218628735466096 +41415,207.07499999984793,-0.06218365391970546 +41416,207.07999999984793,-0.06218102166063221 +41417,207.08499999984792,-0.06217839057653338 +41418,207.08999999984792,-0.0621757606665023 +41419,207.09499999984791,-0.06217313192963353 +41420,207.0999999998479,-0.06217050436502275 +41421,207.1049999998479,-0.06216787797176686 +41422,207.1099999998479,-0.06216525274896391 +41423,207.1149999998479,-0.062162628695713124 +41424,207.1199999998479,-0.062160005811114916 +41425,207.1249999998479,-0.06215738409427084 +41426,207.12999999984788,-0.06215476354428363 +41427,207.13499999984788,-0.06215214416025717 +41428,207.13999999984787,-0.06214952594129652 +41429,207.14499999984787,-0.062146908886507875 +41430,207.14999999984786,-0.06214429299499861 +41431,207.15499999984786,-0.062141678265877236 +41432,207.15999999984786,-0.06213906469825342 +41433,207.16499999984785,-0.06213645229123797 +41434,207.16999999984785,-0.062133841043942865 +41435,207.17499999984784,-0.062131230955481204 +41436,207.17999999984784,-0.06212862202496722 +41437,207.18499999984783,-0.06212601425151631 +41438,207.18999999984783,-0.062123407634245 +41439,207.19499999984782,-0.06212080217227094 +41440,207.19999999984782,-0.06211819786471294 +41441,207.20499999984781,-0.0621155947106909 +41442,207.2099999998478,-0.06211299270932588 +41443,207.2149999998478,-0.062110391859740065 +41444,207.2199999998478,-0.06210779216105674 +41445,207.2249999998478,-0.06210519361240033 +41446,207.2299999998478,-0.06210259621289639 +41447,207.2349999998478,-0.06209999996167156 +41448,207.23999999984778,-0.062097404857853616 +41449,207.24499999984778,-0.06209481090057146 +41450,207.24999999984777,-0.06209221808895506 +41451,207.25499999984777,-0.06208962642213555 +41452,207.25999999984776,-0.062087035899245135 +41453,207.26499999984776,-0.06208444651941714 +41454,207.26999999984776,-0.06208185828178597 +41455,207.27499999984775,-0.062079271185487145 +41456,207.27999999984775,-0.062076685229657286 +41457,207.28499999984774,-0.06207410041343411 +41458,207.28999999984774,-0.06207151673595642 +41459,207.29499999984773,-0.06206893419636411 +41460,207.29999999984773,-0.06206635279379818 +41461,207.30499999984772,-0.06206377252740069 +41462,207.30999999984772,-0.06206119339631481 +41463,207.3149999998477,-0.06205861539968478 +41464,207.3199999998477,-0.062056038536655936 +41465,207.3249999998477,-0.06205346280637467 +41466,207.3299999998477,-0.062050888207988465 +41467,207.3349999998477,-0.06204831474064588 +41468,207.3399999998477,-0.062045742403496536 +41469,207.3449999998477,-0.062043171195691145 +41470,207.34999999984768,-0.06204060111638147 +41471,207.35499999984768,-0.062038032164720334 +41472,207.35999999984767,-0.06203546433986165 +41473,207.36499999984767,-0.06203289764096037 +41474,207.36999999984766,-0.06203033206717254 +41475,207.37499999984766,-0.062027767617655216 +41476,207.37999999984766,-0.06202520429156654 +41477,207.38499999984765,-0.062022642088065696 +41478,207.38999999984765,-0.06202008100631295 +41479,207.39499999984764,-0.06201752104546958 +41480,207.39999999984764,-0.06201496220469794 +41481,207.40499999984763,-0.06201240448316141 +41482,207.40999999984763,-0.06200984788002443 +41483,207.41499999984762,-0.06200729239445246 +41484,207.41999999984762,-0.06200473802561206 +41485,207.4249999998476,-0.06200218477267075 +41486,207.4299999998476,-0.061999632634797124 +41487,207.4349999998476,-0.061997081611160826 +41488,207.4399999998476,-0.0619945317009325 +41489,207.4449999998476,-0.061991982903283845 +41490,207.4499999998476,-0.06198943521738757 +41491,207.4549999998476,-0.06198688864241743 +41492,207.45999999984758,-0.06198434317754818 +41493,207.46499999984758,-0.06198179882195564 +41494,207.46999999984757,-0.06197925557481661 +41495,207.47499999984757,-0.06197671343530891 +41496,207.47999999984756,-0.06197417240261142 +41497,207.48499999984756,-0.061971632475903975 +41498,207.48999999984756,-0.06196909365436747 +41499,207.49499999984755,-0.0619665559371838 +41500,207.49999999984755,-0.06196401932353587 +41501,207.50499999984754,-0.06196148381260757 +41502,207.50999999984754,-0.06195894940358382 +41503,207.51499999984753,-0.06195641609565053 +41504,207.51999999984753,-0.061953883887994624 +41505,207.52499999984752,-0.06195135277980403 +41506,207.52999999984752,-0.061948822770267656 +41507,207.5349999998475,-0.06194629385857542 +41508,207.5399999998475,-0.061943766043918234 +41509,207.5449999998475,-0.061941239325487986 +41510,207.5499999998475,-0.061938713702477576 +41511,207.5549999998475,-0.061936189174080884 +41512,207.5599999998475,-0.06193366573949277 +41513,207.5649999998475,-0.061931143397909096 +41514,207.56999999984748,-0.0619286221485267 +41515,207.57499999984748,-0.06192610199054339 +41516,207.57999999984747,-0.061923582923157965 +41517,207.58499999984747,-0.061921064945570196 +41518,207.58999999984746,-0.06191854805698084 +41519,207.59499999984746,-0.06191603225659162 +41520,207.59999999984746,-0.06191351754360524 +41521,207.60499999984745,-0.06191100391722536 +41522,207.60999999984745,-0.061908491376656626 +41523,207.61499999984744,-0.061905979921104644 +41524,207.61999999984744,-0.06190346954977598 +41525,207.62499999984743,-0.061900960261878156 +41526,207.62999999984743,-0.061898452056619674 +41527,207.63499999984742,-0.06189594493320999 +41528,207.63999999984742,-0.06189343889085951 +41529,207.6449999998474,-0.06189093392877962 +41530,207.6499999998474,-0.06188843004618262 +41531,207.6549999998474,-0.0618859272422818 +41532,207.6599999998474,-0.061883425516291383 +41533,207.6649999998474,-0.06188092486742656 +41534,207.6699999998474,-0.061878425294903436 +41535,207.6749999998474,-0.0618759267979391 +41536,207.67999999984738,-0.061873429375751555 +41537,207.68499999984738,-0.061870933027559756 +41538,207.68999999984737,-0.06186843775258362 +41539,207.69499999984737,-0.06186594355004397 +41540,207.69999999984736,-0.06186345041916257 +41541,207.70499999984736,-0.06186095835916216 +41542,207.70999999984735,-0.06185846736926634 +41543,207.71499999984735,-0.06185597744869971 +41544,207.71999999984735,-0.06185348859668777 +41545,207.72499999984734,-0.06185100081245696 +41546,207.72999999984734,-0.06184851409523465 +41547,207.73499999984733,-0.061846028444249114 +41548,207.73999999984733,-0.06184354385872956 +41549,207.74499999984732,-0.06184106033790613 +41550,207.74999999984732,-0.06183857788100987 +41551,207.7549999998473,-0.06183609648727276 +41552,207.7599999998473,-0.061833616155927675 +41553,207.7649999998473,-0.061831136886208414 +41554,207.7699999998473,-0.061828658677349706 +41555,207.7749999998473,-0.06182618152858719 +41556,207.7799999998473,-0.061823705439157384 +41557,207.7849999998473,-0.06182123040829774 +41558,207.78999999984728,-0.061818756435246626 +41559,207.79499999984728,-0.06181628351924329 +41560,207.79999999984727,-0.0618138116595279 +41561,207.80499999984727,-0.06181134085534151 +41562,207.80999999984726,-0.0618088711059261 +41563,207.81499999984726,-0.06180640241052454 +41564,207.81999999984725,-0.061803934768380586 +41565,207.82499999984725,-0.06180146817873889 +41566,207.82999999984725,-0.06179900264084501 +41567,207.83499999984724,-0.061796538153945375 +41568,207.83999999984724,-0.061794074717287345 +41569,207.84499999984723,-0.06179161233011912 +41570,207.84999999984723,-0.06178915099168982 +41571,207.85499999984722,-0.06178669070124946 +41572,207.85999999984722,-0.06178423145804889 +41573,207.8649999998472,-0.061781773261339906 +41574,207.8699999998472,-0.06177931611037513 +41575,207.8749999998472,-0.06177686000440811 +41576,207.8799999998472,-0.06177440494269323 +41577,207.8849999998472,-0.061771950924485765 +41578,207.8899999998472,-0.06176949794904189 +41579,207.8949999998472,-0.06176704601561862 +41580,207.89999999984718,-0.061764595123473855 +41581,207.90499999984718,-0.061762145271866374 +41582,207.90999999984717,-0.06175969646005581 +41583,207.91499999984717,-0.06175724868730267 +41584,207.91999999984716,-0.06175480195286831 +41585,207.92499999984716,-0.061752356256014995 +41586,207.92999999984715,-0.061749911596005805 +41587,207.93499999984715,-0.06174746797210469 +41588,207.93999999984715,-0.06174502538357649 +41589,207.94499999984714,-0.061742583829686865 +41590,207.94999999984714,-0.061740143309702365 +41591,207.95499999984713,-0.06173770382289035 +41592,207.95999999984713,-0.06173526536851908 +41593,207.96499999984712,-0.06173282794585765 +41594,207.96999999984712,-0.061730391554176 +41595,207.9749999998471,-0.06172795619274491 +41596,207.9799999998471,-0.06172552186083604 +41597,207.9849999998471,-0.06172308855772185 +41598,207.9899999998471,-0.061720656282675694 +41599,207.9949999998471,-0.06171822503497172 +41600,207.9999999998471,-0.06171579481388496 +41601,208.0049999998471,-0.06171336561869126 +41602,208.00999999984708,-0.06171093744866731 +41603,208.01499999984708,-0.06170851030309064 +41604,208.01999999984707,-0.06170608418123962 +41605,208.02499999984707,-0.06170365908239345 +41606,208.02999999984706,-0.061701235005832133 +41607,208.03499999984706,-0.06169881195083656 +41608,208.03999999984705,-0.06169638991668842 +41609,208.04499999984705,-0.061693968902670225 +41610,208.04999999984705,-0.061691548908065316 +41611,208.05499999984704,-0.06168912993215787 +41612,208.05999999984704,-0.06168671197423288 +41613,208.06499999984703,-0.06168429503357616 +41614,208.06999999984703,-0.061681879109474355 +41615,208.07499999984702,-0.061679464201214916 +41616,208.07999999984702,-0.06167705030808612 +41617,208.084999999847,-0.06167463742937707 +41618,208.089999999847,-0.06167222556437765 +41619,208.094999999847,-0.06166981471237861 +41620,208.099999999847,-0.06166740487267147 +41621,208.104999999847,-0.06166499604454856 +41622,208.109999999847,-0.06166258822730306 +41623,208.114999999847,-0.06166018142022891 +41624,208.11999999984698,-0.06165777562262089 +41625,208.12499999984698,-0.06165537083377457 +41626,208.12999999984697,-0.06165296705298634 +41627,208.13499999984697,-0.061650564279553365 +41628,208.13999999984696,-0.06164816251277364 +41629,208.14499999984696,-0.06164576175194593 +41630,208.14999999984695,-0.06164336199636982 +41631,208.15499999984695,-0.06164096324534569 +41632,208.15999999984695,-0.061638565498174716 +41633,208.16499999984694,-0.06163616875415886 +41634,208.16999999984694,-0.06163377301260087 +41635,208.17499999984693,-0.061631378272804314 +41636,208.17999999984693,-0.061628984534073526 +41637,208.18499999984692,-0.061626591795713635 +41638,208.18999999984692,-0.061624200057030565 +41639,208.1949999998469,-0.061621809317331 +41640,208.1999999998469,-0.06161941957592245 +41641,208.2049999998469,-0.06161703083211317 +41642,208.2099999998469,-0.06161464308521222 +41643,208.2149999998469,-0.061612256334529436 +41644,208.2199999998469,-0.06160987057937543 +41645,208.2249999998469,-0.06160748581906158 +41646,208.22999999984688,-0.06160510205290007 +41647,208.23499999984688,-0.06160271928020383 +41648,208.23999999984687,-0.06160033750028659 +41649,208.24499999984687,-0.06159795671246282 +41650,208.24999999984686,-0.06159557691604779 +41651,208.25499999984686,-0.06159319811035754 +41652,208.25999999984685,-0.06159082029470885 +41653,208.26499999984685,-0.0615884434684193 +41654,208.26999999984685,-0.06158606763080722 +41655,208.27499999984684,-0.06158369278119172 +41656,208.27999999984684,-0.06158131891889264 +41657,208.28499999984683,-0.0615789460432306 +41658,208.28999999984683,-0.061576574153527006 +41659,208.29499999984682,-0.061574203249103975 +41660,208.29999999984682,-0.06157183332928443 +41661,208.3049999998468,-0.061569464393392025 +41662,208.3099999998468,-0.06156709644075117 +41663,208.3149999998468,-0.06156472947068703 +41664,208.3199999998468,-0.06156236348252553 +41665,208.3249999998468,-0.06155999847559335 +41666,208.3299999998468,-0.0615576344492179 +41667,208.3349999998468,-0.061555271402727374 +41668,208.33999999984678,-0.06155290933545066 +41669,208.34499999984678,-0.061550548246717456 +41670,208.34999999984677,-0.06154818813585817 +41671,208.35499999984677,-0.06154582900220395 +41672,208.35999999984676,-0.061543470845086705 +41673,208.36499999984676,-0.06154111366383907 +41674,208.36999999984675,-0.061538757457794434 +41675,208.37499999984675,-0.061536402226286924 +41676,208.37999999984675,-0.0615340479686514 +41677,208.38499999984674,-0.06153169468422344 +41678,208.38999999984674,-0.0615293423723394 +41679,208.39499999984673,-0.061526991032336324 +41680,208.39999999984673,-0.06152464066355204 +41681,208.40499999984672,-0.06152229126532505 +41682,208.40999999984672,-0.061519942836994634 +41683,208.4149999998467,-0.061517595377900774 +41684,208.4199999998467,-0.0615152488873842 +41685,208.4249999998467,-0.061512903364786355 +41686,208.4299999998467,-0.061510558809449396 +41687,208.4349999998467,-0.06150821522071624 +41688,208.4399999998467,-0.06150587259793049 +41689,208.4449999998467,-0.06150353094043651 +41690,208.44999999984668,-0.06150119024757933 +41691,208.45499999984668,-0.06149885051870476 +41692,208.45999999984667,-0.06149651175315928 +41693,208.46499999984667,-0.06149417395029014 +41694,208.46999999984666,-0.06149183710944523 +41695,208.47499999984666,-0.06148950122997323 +41696,208.47999999984665,-0.061487166311223494 +41697,208.48499999984665,-0.06148483235254609 +41698,208.48999999984665,-0.06148249935329183 +41699,208.49499999984664,-0.06148016731281219 +41700,208.49999999984664,-0.06147783623045936 +41701,208.50499999984663,-0.061475506105586275 +41702,208.50999999984663,-0.06147317693754656 +41703,208.51499999984662,-0.06147084872569451 +41704,208.51999999984662,-0.06146852146938518 +41705,208.5249999998466,-0.061466195167974295 +41706,208.5299999998466,-0.06146386982081829 +41707,208.5349999998466,-0.061461545427274306 +41708,208.5399999998466,-0.06145922198670016 +41709,208.5449999998466,-0.06145689949845439 +41710,208.5499999998466,-0.06145457796189623 +41711,208.5549999998466,-0.06145225737638562 +41712,208.55999999984658,-0.06144993774128316 +41713,208.56499999984658,-0.061447619055950184 +41714,208.56999999984657,-0.06144530131974868 +41715,208.57499999984657,-0.061442984532041355 +41716,208.57999999984656,-0.06144066869219159 +41717,208.58499999984656,-0.061438353799563486 +41718,208.58999999984655,-0.06143603985352179 +41719,208.59499999984655,-0.061433726853431965 +41720,208.59999999984655,-0.06143141479866014 +41721,208.60499999984654,-0.06142910368857315 +41722,208.60999999984654,-0.061426793522538506 +41723,208.61499999984653,-0.061424484299924385 +41724,208.61999999984653,-0.06142217602009969 +41725,208.62499999984652,-0.06141986868243393 +41726,208.62999999984652,-0.06141756228629737 +41727,208.6349999998465,-0.0614152568310609 +41728,208.6399999998465,-0.061412952316096114 +41729,208.6449999998465,-0.06141064874077527 +41730,208.6499999998465,-0.06140834610447131 +41731,208.6549999998465,-0.06140604440655784 +41732,208.6599999998465,-0.06140374364640915 +41733,208.6649999998465,-0.0614014438234002 +41734,208.66999999984648,-0.0613991449369066 +41735,208.67499999984648,-0.06139684698630464 +41736,208.67999999984647,-0.061394549970971296 +41737,208.68499999984647,-0.061392253890284194 +41738,208.68999999984646,-0.06138995874362164 +41739,208.69499999984646,-0.061387664530362575 +41740,208.69999999984645,-0.06138537124988663 +41741,208.70499999984645,-0.061383078901574094 +41742,208.70999999984645,-0.061380787484805924 +41743,208.71499999984644,-0.061378496998963715 +41744,208.71999999984644,-0.06137620744342973 +41745,208.72499999984643,-0.06137391881758693 +41746,208.72999999984643,-0.061371631120818865 +41747,208.73499999984642,-0.061369344352509785 +41748,208.73999999984642,-0.061367058512044596 +41749,208.7449999998464,-0.06136477359880884 +41750,208.7499999998464,-0.06136248961218871 +41751,208.7549999998464,-0.06136020655157108 +41752,208.7599999998464,-0.061357924416343454 +41753,208.7649999998464,-0.061355643205893984 +41754,208.7699999998464,-0.06135336291961147 +41755,208.7749999998464,-0.061351083556885386 +41756,208.77999999984638,-0.06134880511710581 +41757,208.78499999984638,-0.061346527599663504 +41758,208.78999999984637,-0.06134425100394985 +41759,208.79499999984637,-0.06134197532935689 +41760,208.79999999984636,-0.061339700575277295 +41761,208.80499999984636,-0.06133742674110438 +41762,208.80999999984635,-0.061335153826232114 +41763,208.81499999984635,-0.0613328818300551 +41764,208.81999999984635,-0.061330610751968564 +41765,208.82499999984634,-0.06132834059136839 +41766,208.82999999984634,-0.0613260713476511 +41767,208.83499999984633,-0.06132380302021382 +41768,208.83999999984633,-0.06132153560845434 +41769,208.84499999984632,-0.061319269111771095 +41770,208.84999999984632,-0.06131700352956311 +41771,208.8549999998463,-0.06131473886123007 +41772,208.8599999998463,-0.061312475106172284 +41773,208.8649999998463,-0.06131021226379072 +41774,208.8699999998463,-0.06130795033348692 +41775,208.8749999998463,-0.06130568931466307 +41776,208.8799999998463,-0.061303429206722014 +41777,208.8849999998463,-0.06130117000906721 +41778,208.88999999984628,-0.061298911721102696 +41779,208.89499999984628,-0.0612966543422332 +41780,208.89999999984627,-0.06129439787186402 +41781,208.90499999984627,-0.06129214230940112 +41782,208.90999999984626,-0.061289887654251037 +41783,208.91499999984626,-0.061287633905820954 +41784,208.91999999984625,-0.06128538106351868 +41785,208.92499999984625,-0.06128312912675263 +41786,208.92999999984625,-0.06128087809493184 +41787,208.93499999984624,-0.06127862796746595 +41788,208.93999999984624,-0.061276378743765236 +41789,208.94499999984623,-0.061274130423240564 +41790,208.94999999984623,-0.061271883005303424 +41791,208.95499999984622,-0.061269636489365925 +41792,208.95999999984622,-0.061267390874840774 +41793,208.9649999998462,-0.0612651461611413 +41794,208.9699999998462,-0.06126290234768145 +41795,208.9749999998462,-0.06126065943387573 +41796,208.9799999998462,-0.06125841741913931 +41797,208.9849999998462,-0.06125617630288794 +41798,208.9899999998462,-0.06125393608453797 +41799,208.9949999998462,-0.061251696763506364 +41800,208.99999999984618,-0.061249458339210694 +41801,209.00499999984618,-0.06124722081106911 +41802,209.00999999984617,-0.061244984178500404 +41803,209.01499999984617,-0.061242748440923936 +41804,209.01999999984616,-0.06124051359775966 +41805,209.02499999984616,-0.061238279648428165 +41806,209.02999999984615,-0.06123604659235061 +41807,209.03499999984615,-0.06123381442894875 +41808,209.03999999984615,-0.06123158315764495 +41809,209.04499999984614,-0.06122935277786215 +41810,209.04999999984614,-0.06122712328902391 +41811,209.05499999984613,-0.06122489469055435 +41812,209.05999999984613,-0.06122266698187822 +41813,209.06499999984612,-0.06122044016242083 +41814,209.06999999984612,-0.06121821423160809 +41815,209.0749999998461,-0.061215989188866504 +41816,209.0799999998461,-0.06121376503362316 +41817,209.0849999998461,-0.061211541765305744 +41818,209.0899999998461,-0.0612093193833425 +41819,209.0949999998461,-0.061207097887162304 +41820,209.0999999998461,-0.061204877276194565 +41821,209.1049999998461,-0.06120265754986932 +41822,209.10999999984608,-0.06120043870761714 +41823,209.11499999984608,-0.061198220748869235 +41824,209.11999999984607,-0.06119600367305735 +41825,209.12499999984607,-0.061193787479613834 +41826,209.12999999984606,-0.061191572167971615 +41827,209.13499999984606,-0.06118935773756418 +41828,209.13999999984605,-0.06118714418782562 +41829,209.14499999984605,-0.0611849315181906 +41830,209.14999999984605,-0.06118271972809431 +41831,209.15499999984604,-0.061180508816972595 +41832,209.15999999984604,-0.061178298784261814 +41833,209.16499999984603,-0.06117608962939893 +41834,209.16999999984603,-0.06117388135182145 +41835,209.17499999984602,-0.06117167395096749 +41836,209.17999999984602,-0.0611694674262757 +41837,209.184999999846,-0.06116726177718533 +41838,209.189999999846,-0.061165057003136174 +41839,209.194999999846,-0.061162853103568594 +41840,209.199999999846,-0.06116065007792355 +41841,209.204999999846,-0.06115844792564253 +41842,209.209999999846,-0.06115624664616762 +41843,209.214999999846,-0.06115404623894145 +41844,209.21999999984598,-0.0611518467034072 +41845,209.22499999984598,-0.06114964803900865 +41846,209.22999999984597,-0.06114745024519012 +41847,209.23499999984597,-0.06114525332139647 +41848,209.23999999984596,-0.06114305726707316 +41849,209.24499999984596,-0.0611408620816662 +41850,209.24999999984595,-0.061138667764622144 +41851,209.25499999984595,-0.0611364743153881 +41852,209.25999999984595,-0.061134281733411754 +41853,209.26499999984594,-0.06113209001814133 +41854,209.26999999984594,-0.06112989916902561 +41855,209.27499999984593,-0.061127709185513926 +41856,209.27999999984593,-0.06112552006705619 +41857,209.28499999984592,-0.061123331813102824 +41858,209.28999999984592,-0.06112114442310484 +41859,209.2949999998459,-0.06111895789651378 +41860,209.2999999998459,-0.061116772232781745 +41861,209.3049999998459,-0.061114587431361375 +41862,209.3099999998459,-0.061112403491705866 +41863,209.3149999998459,-0.06111022041326895 +41864,209.3199999998459,-0.06110803819550492 +41865,209.3249999998459,-0.0611058568378686 +41866,209.32999999984588,-0.061103676339815394 +41867,209.33499999984588,-0.06110149670080121 +41868,209.33999999984587,-0.0610993179202825 +41869,209.34499999984587,-0.061097139997716286 +41870,209.34999999984586,-0.06109496293256011 +41871,209.35499999984586,-0.06109278672427206 +41872,209.35999999984585,-0.061090611372310775 +41873,209.36499999984585,-0.06108843687613542 +41874,209.36999999984585,-0.06108626323520571 +41875,209.37499999984584,-0.061084090448981866 +41876,209.37999999984584,-0.0610819185169247 +41877,209.38499999984583,-0.061079747438495514 +41878,209.38999999984583,-0.06107757721315616 +41879,209.39499999984582,-0.06107540784036902 +41880,209.39999999984582,-0.06107323931959704 +41881,209.4049999998458,-0.061071071650303635 +41882,209.4099999998458,-0.06106890483195282 +41883,209.4149999998458,-0.061066738864009096 +41884,209.4199999998458,-0.061064573745937524 +41885,209.4249999998458,-0.06106240947720366 +41886,209.4299999998458,-0.061060246057273615 +41887,209.4349999998458,-0.061058083485614034 +41888,209.43999999984578,-0.06105592176169206 +41889,209.44499999984578,-0.06105376088497539 +41890,209.44999999984577,-0.061051600854932234 +41891,209.45499999984577,-0.06104944167103132 +41892,209.45999999984576,-0.06104728333274191 +41893,209.46499999984576,-0.061045125839533795 +41894,209.46999999984575,-0.06104296919087729 +41895,209.47499999984575,-0.0610408133862432 +41896,209.47999999984575,-0.06103865842510289 +41897,209.48499999984574,-0.061036504306928224 +41898,209.48999999984574,-0.06103435103119158 +41899,209.49499999984573,-0.061032198597365875 +41900,209.49999999984573,-0.061030047004924544 +41901,209.50499999984572,-0.06102789625334151 +41902,209.50999999984572,-0.06102574634209124 +41903,209.5149999998457,-0.0610235972706487 +41904,209.5199999998457,-0.06102144903848936 +41905,209.5249999998457,-0.06101930164508927 +41906,209.5299999998457,-0.06101715508992491 +41907,209.5349999998457,-0.06101500937247332 +41908,209.5399999998457,-0.061012864492212035 +41909,209.5449999998457,-0.0610107204486191 +41910,209.54999999984568,-0.061008577241173076 +41911,209.55499999984568,-0.061006434869353046 +41912,209.55999999984567,-0.06100429333263857 +41913,209.56499999984567,-0.06100215263050976 +41914,209.56999999984566,-0.06100001276244719 +41915,209.57499999984566,-0.060997873727931945 +41916,209.57999999984565,-0.06099573552644566 +41917,209.58499999984565,-0.06099359815747043 +41918,209.58999999984565,-0.06099146162048888 +41919,209.59499999984564,-0.06098932591498412 +41920,209.59999999984564,-0.06098719104043979 +41921,209.60499999984563,-0.06098505699633998 +41922,209.60999999984563,-0.060982923782169324 +41923,209.61499999984562,-0.060980791397412956 +41924,209.61999999984562,-0.06097865984155651 +41925,209.6249999998456,-0.06097652911408609 +41926,209.6299999998456,-0.06097439921448833 +41927,209.6349999998456,-0.06097227014225034 +41928,209.6399999998456,-0.06097014189685973 +41929,209.6449999998456,-0.06096801447780463 +41930,209.6499999998456,-0.06096588788457365 +41931,209.6549999998456,-0.06096376211665587 +41932,209.65999999984558,-0.06096163717354091 +41933,209.66499999984558,-0.06095951305471884 +41934,209.66999999984557,-0.06095738975968026 +41935,209.67499999984557,-0.06095526728791623 +41936,209.67999999984556,-0.060953145638918314 +41937,209.68499999984556,-0.060951024812178574 +41938,209.68999999984555,-0.06094890480718956 +41939,209.69499999984555,-0.0609467856234443 +41940,209.69999999984555,-0.06094466726043632 +41941,209.70499999984554,-0.06094254971765963 +41942,209.70999999984554,-0.06094043299460872 +41943,209.71499999984553,-0.06093831709077857 +41944,209.71999999984553,-0.06093620200566466 +41945,209.72499999984552,-0.060934087738762945 +41946,209.72999999984552,-0.06093197428956984 +41947,209.7349999998455,-0.06092986165758228 +41948,209.7399999998455,-0.06092774984229767 +41949,209.7449999998455,-0.060925638843213906 +41950,209.7499999998455,-0.060923528659829335 +41951,209.7549999998455,-0.060921419291642805 +41952,209.7599999998455,-0.06091931073815364 +41953,209.7649999998455,-0.06091720299886166 +41954,209.76999999984548,-0.06091509607326714 +41955,209.77499999984548,-0.060912989960870835 +41956,209.77999999984547,-0.060910884661173996 +41957,209.78499999984547,-0.060908780173678324 +41958,209.78999999984546,-0.060906676497886024 +41959,209.79499999984546,-0.06090457363329975 +41960,209.79999999984545,-0.060902471579422655 +41961,209.80499999984545,-0.06090037033575834 +41962,209.80999999984545,-0.060898269901810895 +41963,209.81499999984544,-0.060896170277084875 +41964,209.81999999984544,-0.06089407146108533 +41965,209.82499999984543,-0.060891973453317746 +41966,209.82999999984543,-0.060889876253288094 +41967,209.83499999984542,-0.06088777986050282 +41968,209.83999999984542,-0.06088568427446882 +41969,209.8449999998454,-0.06088358949469348 +41970,209.8499999998454,-0.060881495520684656 +41971,209.8549999998454,-0.06087940235195065 +41972,209.8599999998454,-0.06087730998800025 +41973,209.8649999998454,-0.06087521842834269 +41974,209.8699999998454,-0.0608731276724877 +41975,209.8749999998454,-0.06087103771994542 +41976,209.87999999984538,-0.060868948570226525 +41977,209.88499999984538,-0.06086686022284208 +41978,209.88999999984537,-0.06086477267730366 +41979,209.89499999984537,-0.0608626859331233 +41980,209.89999999984536,-0.06086059998981348 +41981,209.90499999984536,-0.060858514846887146 +41982,209.90999999984535,-0.060856430503857695 +41983,209.91499999984535,-0.060854346960239 +41984,209.91999999984534,-0.060852264215545376 +41985,209.92499999984534,-0.06085018226929161 +41986,209.92999999984534,-0.06084810112099294 +41987,209.93499999984533,-0.060846020770165044 +41988,209.93999999984533,-0.06084394121632408 +41989,209.94499999984532,-0.06084186245898666 +41990,209.94999999984532,-0.06083978449766983 +41991,209.9549999998453,-0.060837707331891096 +41992,209.9599999998453,-0.06083563096116845 +41993,209.9649999998453,-0.06083355538502029 +41994,209.9699999998453,-0.0608314806029655 +41995,209.9749999998453,-0.06082940661452338 +41996,209.9799999998453,-0.06082733341921372 +41997,209.9849999998453,-0.06082526101655673 +41998,209.98999999984528,-0.060823189406073085 +41999,209.99499999984528,-0.06082111858728391 +42000,209.99999999984527,-0.060819048559710764 +42001,210.00499999984527,-0.06081697932287567 +42002,210.00999999984526,-0.06081491087630109 +42003,210.01499999984526,-0.060812843219509916 +42004,210.01999999984525,-0.06081077635202553 +42005,210.02499999984525,-0.0608087102733717 +42006,210.02999999984524,-0.0608066449830727 +42007,210.03499999984524,-0.06080458048065319 +42008,210.03999999984524,-0.060802516765638304 +42009,210.04499999984523,-0.060800453837553635 +42010,210.04999999984523,-0.06079839169592518 +42011,210.05499999984522,-0.060796330340279384 +42012,210.05999999984522,-0.06079426977014316 +42013,210.0649999998452,-0.06079220998504384 +42014,210.0699999998452,-0.0607901509845092 +42015,210.0749999998452,-0.060788092768067445 +42016,210.0799999998452,-0.060786035335247235 +42017,210.0849999998452,-0.06078397868557765 +42018,210.0899999998452,-0.06078192281858823 +42019,210.0949999998452,-0.06077986773380893 +42020,210.09999999984518,-0.06077781343077014 +42021,210.10499999984518,-0.060775759909002705 +42022,210.10999999984517,-0.060773707168037885 +42023,210.11499999984517,-0.06077165520740739 +42024,210.11999999984516,-0.060769604026643366 +42025,210.12499999984516,-0.06076755362527835 +42026,210.12999999984515,-0.06076550400284536 +42027,210.13499999984515,-0.060763455158877835 +42028,210.13999999984514,-0.06076140709290962 +42029,210.14499999984514,-0.06075935980447501 +42030,210.14999999984514,-0.06075731329310874 +42031,210.15499999984513,-0.060755267558345934 +42032,210.15999999984513,-0.06075322259972219 +42033,210.16499999984512,-0.060751178416773514 +42034,210.16999999984512,-0.06074913500903634 +42035,210.1749999998451,-0.060747092376047536 +42036,210.1799999998451,-0.06074505051734437 +42037,210.1849999998451,-0.06074300943246458 +42038,210.1899999998451,-0.06074096912094628 +42039,210.1949999998451,-0.060738929582328044 +42040,210.1999999998451,-0.06073689081614886 +42041,210.20499999984509,-0.060734852821948127 +42042,210.20999999984508,-0.060732815599265695 +42043,210.21499999984508,-0.0607307791476418 +42044,210.21999999984507,-0.06072874346661712 +42045,210.22499999984507,-0.060726708555732756 +42046,210.22999999984506,-0.06072467441453023 +42047,210.23499999984506,-0.06072264104255146 +42048,210.23999999984505,-0.060720608439338804 +42049,210.24499999984505,-0.06071857660443505 +42050,210.24999999984504,-0.06071654553738337 +42051,210.25499999984504,-0.0607145152377274 +42052,210.25999999984504,-0.06071248570501115 +42053,210.26499999984503,-0.06071045693877905 +42054,210.26999999984503,-0.060708428938575976 +42055,210.27499999984502,-0.06070640170394719 +42056,210.27999999984502,-0.06070437523443839 +42057,210.284999999845,-0.06070234952959567 +42058,210.289999999845,-0.06070032458896554 +42059,210.294999999845,-0.06069830041209494 +42060,210.299999999845,-0.06069627699853119 +42061,210.304999999845,-0.060694254347822066 +42062,210.309999999845,-0.06069223245951571 +42063,210.31499999984499,-0.06069021133316071 +42064,210.31999999984498,-0.060688190968306036 +42065,210.32499999984498,-0.06068617136450109 +42066,210.32999999984497,-0.06068415252129567 +42067,210.33499999984497,-0.06068213443824 +42068,210.33999999984496,-0.060680117114884684 +42069,210.34499999984496,-0.06067810055078074 +42070,210.34999999984495,-0.060676084745479614 +42071,210.35499999984495,-0.06067406969853313 +42072,210.35999999984494,-0.06067205540949354 +42073,210.36499999984494,-0.06067004187791349 +42074,210.36999999984494,-0.060668029103346045 +42075,210.37499999984493,-0.06066601708534465 +42076,210.37999999984493,-0.06066400582346316 +42077,210.38499999984492,-0.06066199531725584 +42078,210.38999999984492,-0.06065998556627737 +42079,210.3949999998449,-0.06065797657008281 +42080,210.3999999998449,-0.06065596832822763 +42081,210.4049999998449,-0.06065396084026769 +42082,210.4099999998449,-0.06065195410575926 +42083,210.4149999998449,-0.06064994812425903 +42084,210.4199999998449,-0.06064794289532404 +42085,210.42499999984489,-0.06064593841851178 +42086,210.42999999984488,-0.06064393469338009 +42087,210.43499999984488,-0.06064193171948725 +42088,210.43999999984487,-0.060639929496391916 +42089,210.44499999984487,-0.06063792802365315 +42090,210.44999999984486,-0.06063592730083039 +42091,210.45499999984486,-0.06063392732748349 +42092,210.45999999984485,-0.06063192810317269 +42093,210.46499999984485,-0.06062992962745861 +42094,210.46999999984484,-0.06062793189990231 +42095,210.47499999984484,-0.06062593492006519 +42096,210.47999999984484,-0.060623938687509066 +42097,210.48499999984483,-0.06062194320179616 +42098,210.48999999984483,-0.06061994846248905 +42099,210.49499999984482,-0.06061795446915075 +42100,210.49999999984482,-0.06061596122134462 +42101,210.5049999998448,-0.06061396871863444 +42102,210.5099999998448,-0.06061197696058436 +42103,210.5149999998448,-0.06060998594675894 +42104,210.5199999998448,-0.06060799567672312 +42105,210.5249999998448,-0.06060600615004222 +42106,210.5299999998448,-0.06060401736628195 +42107,210.53499999984479,-0.06060202932500842 +42108,210.53999999984478,-0.0606000420257881 +42109,210.54499999984478,-0.06059805546818787 +42110,210.54999999984477,-0.060596069651774984 +42111,210.55499999984477,-0.0605940845761171 +42112,210.55999999984476,-0.06059210024078223 +42113,210.56499999984476,-0.06059011664533878 +42114,210.56999999984475,-0.06058813378935557 +42115,210.57499999984475,-0.06058615167240174 +42116,210.57999999984474,-0.06058417029404687 +42117,210.58499999984474,-0.06058218965386091 +42118,210.58999999984474,-0.06058020975141416 +42119,210.59499999984473,-0.06057823058627734 +42120,210.59999999984473,-0.06057625215802153 +42121,210.60499999984472,-0.0605742744662182 +42122,210.60999999984472,-0.060572297510439174 +42123,210.6149999998447,-0.06057032129025669 +42124,210.6199999998447,-0.060568345805243326 +42125,210.6249999998447,-0.06056637105497208 +42126,210.6299999998447,-0.0605643970390163 +42127,210.6349999998447,-0.06056242375694973 +42128,210.6399999998447,-0.06056045120834645 +42129,210.64499999984469,-0.060558479392780966 +42130,210.64999999984468,-0.06055650830982813 +42131,210.65499999984468,-0.06055453795906317 +42132,210.65999999984467,-0.060552568340061695 +42133,210.66499999984467,-0.0605505994523997 +42134,210.66999999984466,-0.06054863129565352 +42135,210.67499999984466,-0.06054666386939991 +42136,210.67999999984465,-0.060544697173215936 +42137,210.68499999984465,-0.06054273120667909 +42138,210.68999999984464,-0.06054076596936723 +42139,210.69499999984464,-0.060538801460858535 +42140,210.69999999984464,-0.06053683768073163 +42141,210.70499999984463,-0.06053487462856542 +42142,210.70999999984463,-0.06053291230393927 +42143,210.71499999984462,-0.060530950706432864 +42144,210.71999999984462,-0.06052898983562625 +42145,210.7249999998446,-0.06052702969109987 +42146,210.7299999998446,-0.06052507027243452 +42147,210.7349999998446,-0.060523111579211364 +42148,210.7399999998446,-0.06052115361101193 +42149,210.7449999998446,-0.06051919636741811 +42150,210.7499999998446,-0.06051723984801217 +42151,210.75499999984459,-0.06051528405237673 +42152,210.75999999984458,-0.0605133289800948 +42153,210.76499999984458,-0.060511374630749716 +42154,210.76999999984457,-0.060509421003925215 +42155,210.77499999984457,-0.06050746809920537 +42156,210.77999999984456,-0.06050551591617463 +42157,210.78499999984456,-0.0605035644544178 +42158,210.78999999984455,-0.060501613713520044 +42159,210.79499999984455,-0.06049966369306691 +42160,210.79999999984454,-0.06049771439264427 +42161,210.80499999984454,-0.06049576581183838 +42162,210.80999999984454,-0.06049381795023587 +42163,210.81499999984453,-0.06049187080742368 +42164,210.81999999984453,-0.060489924382989176 +42165,210.82499999984452,-0.06048797867652002 +42166,210.82999999984452,-0.06048603368760427 +42167,210.8349999998445,-0.060484089415830326 +42168,210.8399999998445,-0.06048214586078696 +42169,210.8449999998445,-0.060480203022063264 +42170,210.8499999998445,-0.06047826089924874 +42171,210.8549999998445,-0.06047631949193321 +42172,210.8599999998445,-0.06047437879970686 +42173,210.86499999984449,-0.06047243882216023 +42174,210.86999999984448,-0.060470499558884214 +42175,210.87499999984448,-0.060468561009470054 +42176,210.87999999984447,-0.060466623173509364 +42177,210.88499999984447,-0.06046468605059408 +42178,210.88999999984446,-0.06046274964031653 +42179,210.89499999984446,-0.06046081394226937 +42180,210.89999999984445,-0.0604588789560456 +42181,210.90499999984445,-0.060456944681238585 +42182,210.90999999984444,-0.060455011117442045 +42183,210.91499999984444,-0.06045307826425004 +42184,210.91999999984444,-0.06045114612125698 +42185,210.92499999984443,-0.06044921468805764 +42186,210.92999999984443,-0.060447283964247124 +42187,210.93499999984442,-0.060445353949420876 +42188,210.93999999984442,-0.060443424643174724 +42189,210.9449999998444,-0.06044149604510483 +42190,210.9499999998444,-0.06043956815480767 +42191,210.9549999998444,-0.06043764097188012 +42192,210.9599999998444,-0.06043571449591934 +42193,210.9649999998444,-0.060433788726522907 +42194,210.9699999998444,-0.0604318636632887 +42195,210.97499999984439,-0.060429939305814945 +42196,210.97999999984438,-0.060428015653700214 +42197,210.98499999984438,-0.06042609270654343 +42198,210.98999999984437,-0.060424170463943855 +42199,210.99499999984437,-0.0604222489255011 +42200,210.99999999984436,-0.06042032809081511 +42201,211.00499999984436,-0.06041840795948618 +42202,211.00999999984435,-0.060416488531114955 +42203,211.01499999984435,-0.060414569805302396 +42204,211.01999999984434,-0.06041265178164981 +42205,211.02499999984434,-0.060410734459758884 +42206,211.02999999984434,-0.06040881783923159 +42207,211.03499999984433,-0.06040690191967026 +42208,211.03999999984433,-0.0604049867006776 +42209,211.04499999984432,-0.06040307218185659 +42210,211.04999999984432,-0.060401158362810604 +42211,211.0549999998443,-0.06039924524314333 +42212,211.0599999998443,-0.060397332822458794 +42213,211.0649999998443,-0.06039542110036136 +42214,211.0699999998443,-0.06039351007645573 +42215,211.0749999998443,-0.06039159975034694 +42216,211.0799999998443,-0.060389690121640374 +42217,211.08499999984429,-0.06038778118994174 +42218,211.08999999984428,-0.06038587295485706 +42219,211.09499999984428,-0.06038396541599275 +42220,211.09999999984427,-0.06038205857295549 +42221,211.10499999984427,-0.06038015242535235 +42222,211.10999999984426,-0.060378246972790706 +42223,211.11499999984426,-0.06037634221487827 +42224,211.11999999984425,-0.06037443815122308 +42225,211.12499999984425,-0.0603725347814335 +42226,211.12999999984424,-0.060370632105118276 +42227,211.13499999984424,-0.060368730121886434 +42228,211.13999999984424,-0.060366828831347336 +42229,211.14499999984423,-0.06036492823311069 +42230,211.14999999984423,-0.06036302832678652 +42231,211.15499999984422,-0.06036112911198519 +42232,211.15999999984422,-0.0603592305883174 +42233,211.1649999998442,-0.06035733275539417 +42234,211.1699999998442,-0.06035543561282684 +42235,211.1749999998442,-0.06035353916022707 +42236,211.1799999998442,-0.06035164339720689 +42237,211.1849999998442,-0.06034974832337861 +42238,211.1899999998442,-0.06034785393835489 +42239,211.19499999984419,-0.06034596024174873 +42240,211.19999999984418,-0.06034406723317342 +42241,211.20499999984418,-0.0603421749122426 +42242,211.20999999984417,-0.060340283278570224 +42243,211.21499999984417,-0.06033839233177058 +42244,211.21999999984416,-0.06033650207145827 +42245,211.22499999984416,-0.06033461249724823 +42246,211.22999999984415,-0.06033272360875572 +42247,211.23499999984415,-0.060330835405596306 +42248,211.23999999984414,-0.060328947887385895 +42249,211.24499999984414,-0.06032706105374071 +42250,211.24999999984414,-0.060325174904277294 +42251,211.25499999984413,-0.06032328943861251 +42252,211.25999999984413,-0.06032140465636354 +42253,211.26499999984412,-0.06031952055714791 +42254,211.26999999984412,-0.06031763714058343 +42255,211.2749999998441,-0.06031575440628825 +42256,211.2799999998441,-0.06031387235388084 +42257,211.2849999998441,-0.06031199098297999 +42258,211.2899999998441,-0.0603101102932048 +42259,211.2949999998441,-0.0603082302841747 +42260,211.2999999998441,-0.060306350955509416 +42261,211.30499999984409,-0.06030447230682901 +42262,211.30999999984408,-0.06030259433775386 +42263,211.31499999984408,-0.060300717047904656 +42264,211.31999999984407,-0.06029884043690241 +42265,211.32499999984407,-0.06029696450436845 +42266,211.32999999984406,-0.06029508924992439 +42267,211.33499999984406,-0.060293214673192215 +42268,211.33999999984405,-0.06029134077379416 +42269,211.34499999984405,-0.060289467551352845 +42270,211.34999999984404,-0.06028759500549114 +42271,211.35499999984404,-0.060285723135832275 +42272,211.35999999984404,-0.060283851941999755 +42273,211.36499999984403,-0.060281981423617424 +42274,211.36999999984403,-0.06028011158030944 +42275,211.37499999984402,-0.060278242411700246 +42276,211.37999999984402,-0.06027637391741462 +42277,211.384999999844,-0.06027450609707765 +42278,211.389999999844,-0.06027263895031473 +42279,211.394999999844,-0.06027077247675156 +42280,211.399999999844,-0.06026890667601416 +42281,211.404999999844,-0.060267041547728856 +42282,211.409999999844,-0.060265177091522265 +42283,211.41499999984399,-0.06026331330702135 +42284,211.41999999984398,-0.06026145019385335 +42285,211.42499999984398,-0.06025958775164584 +42286,211.42999999984397,-0.06025772598002666 +42287,211.43499999984397,-0.06025586487862401 +42288,211.43999999984396,-0.06025400444706636 +42289,211.44499999984396,-0.060252144684982516 +42290,211.44999999984395,-0.060250285592001546 +42291,211.45499999984395,-0.06024842716775287 +42292,211.45999999984394,-0.06024656941186618 +42293,211.46499999984394,-0.06024471232397149 +42294,211.46999999984394,-0.060242855903699113 +42295,211.47499999984393,-0.060241000150679666 +42296,211.47999999984393,-0.06023914506454409 +42297,211.48499999984392,-0.060237290644923606 +42298,211.48999999984392,-0.06023543689144975 +42299,211.4949999998439,-0.060233583803754355 +42300,211.4999999998439,-0.06023173138146955 +42301,211.5049999998439,-0.06022987962422778 +42302,211.5099999998439,-0.06022802853166178 +42303,211.5149999998439,-0.060226178103404596 +42304,211.5199999998439,-0.06022432833908957 +42305,211.52499999984389,-0.06022247923835035 +42306,211.52999999984388,-0.06022063080082087 +42307,211.53499999984388,-0.0602187830261354 +42308,211.53999999984387,-0.06021693591392845 +42309,211.54499999984387,-0.0602150894638349 +42310,211.54999999984386,-0.060213243675489865 +42311,211.55499999984386,-0.06021139854852879 +42312,211.55999999984385,-0.060209554082587415 +42313,211.56499999984385,-0.06020771027730179 +42314,211.56999999984384,-0.06020586713230823 +42315,211.57499999984384,-0.060204024647243386 +42316,211.57999999984384,-0.06020218282174417 +42317,211.58499999984383,-0.06020034165544783 +42318,211.58999999984383,-0.06019850114799186 +42319,211.59499999984382,-0.0601966612990141 +42320,211.59999999984382,-0.060194822108152635 +42321,211.6049999998438,-0.060192983575045884 +42322,211.6099999998438,-0.06019114569933255 +42323,211.6149999998438,-0.060189308480651633 +42324,211.6199999998438,-0.06018747191864242 +42325,211.6249999998438,-0.060185636012944486 +42326,211.6299999998438,-0.06018380076319771 +42327,211.63499999984379,-0.06018196616904227 +42328,211.63999999984378,-0.060180132230118616 +42329,211.64499999984378,-0.060178298946067514 +42330,211.64999999984377,-0.060176466316529995 +42331,211.65499999984377,-0.060174634341147414 +42332,211.65999999984376,-0.060172803019561384 +42333,211.66499999984376,-0.06017097235141384 +42334,211.66999999984375,-0.060169142336346966 +42335,211.67499999984375,-0.06016731297400328 +42336,211.67999999984374,-0.06016548426402558 +42337,211.68499999984374,-0.06016365620605693 +42338,211.68999999984374,-0.06016182879974069 +42339,211.69499999984373,-0.06016000204472053 +42340,211.69999999984373,-0.06015817594064038 +42341,211.70499999984372,-0.06015635048714448 +42342,211.70999999984372,-0.06015452568387735 +42343,211.7149999998437,-0.06015270153048381 +42344,211.7199999998437,-0.060150878026608935 +42345,211.7249999998437,-0.060149055171898114 +42346,211.7299999998437,-0.060147232965997006 +42347,211.7349999998437,-0.06014541140855157 +42348,211.7399999998437,-0.06014359049920805 +42349,211.74499999984369,-0.06014177023761296 +42350,211.74999999984368,-0.06013995062341312 +42351,211.75499999984368,-0.060138131656255596 +42352,211.75999999984367,-0.060136313335787804 +42353,211.76499999984367,-0.060134495661657385 +42354,211.76999999984366,-0.06013267863351227 +42355,211.77499999984366,-0.06013086225100071 +42356,211.77999999984365,-0.060129046513771205 +42357,211.78499999984365,-0.06012723142147256 +42358,211.78999999984364,-0.06012541697375383 +42359,211.79499999984364,-0.06012360317026439 +42360,211.79999999984364,-0.06012179001065387 +42361,211.80499999984363,-0.0601199774945722 +42362,211.80999999984363,-0.060118165621669564 +42363,211.81499999984362,-0.06011635439159646 +42364,211.81999999984362,-0.06011454380400365 +42365,211.8249999998436,-0.060112733858542156 +42366,211.8299999998436,-0.06011092455486332 +42367,211.8349999998436,-0.060109115892618734 +42368,211.8399999998436,-0.060107307871460264 +42369,211.8449999998436,-0.06010550049104009 +42370,211.8499999998436,-0.06010369375101064 +42371,211.85499999984359,-0.06010188765102463 +42372,211.85999999984358,-0.06010008219073504 +42373,211.86499999984358,-0.060098277369795144 +42374,211.86999999984357,-0.0600964731878585 +42375,211.87499999984357,-0.060094669644578914 +42376,211.87999999984356,-0.0600928667396105 +42377,211.88499999984356,-0.06009106447260761 +42378,211.88999999984355,-0.06008926284322492 +42379,211.89499999984355,-0.060087461851117324 +42380,211.89999999984354,-0.06008566149594006 +42381,211.90499999984354,-0.06008386177734858 +42382,211.90999999984354,-0.06008206269499863 +42383,211.91499999984353,-0.06008026424854625 +42384,211.91999999984353,-0.06007846643764771 +42385,211.92499999984352,-0.0600766692619596 +42386,211.92999999984352,-0.06007487272113876 +42387,211.9349999998435,-0.06007307681484231 +42388,211.9399999998435,-0.06007128154272763 +42389,211.9449999998435,-0.06006948690445239 +42390,211.9499999998435,-0.060067692899674514 +42391,211.9549999998435,-0.0600658995280522 +42392,211.9599999998435,-0.06006410678924394 +42393,211.96499999984349,-0.060062314682908464 +42394,211.96999999984348,-0.060060523208704794 +42395,211.97499999984348,-0.06005873236629222 +42396,211.97999999984347,-0.06005694215533029 +42397,211.98499999984347,-0.06005515257547883 +42398,211.98999999984346,-0.06005336362639794 +42399,211.99499999984346,-0.06005157530774798 +42400,211.99999999984345,-0.06004978761918959 +42401,212.00499999984345,-0.06004800056038366 +42402,212.00999999984344,-0.06004621413099136 +42403,212.01499999984344,-0.06004442833067414 +42404,212.01999999984344,-0.06004264315909369 +42405,212.02499999984343,-0.06004085861591199 +42406,212.02999999984343,-0.06003907470079126 +42407,212.03499999984342,-0.06003729141339402 +42408,212.03999999984342,-0.06003550875338303 +42409,212.0449999998434,-0.06003372672042134 +42410,212.0499999998434,-0.06003194531417225 +42411,212.0549999998434,-0.0600301645342993 +42412,212.0599999998434,-0.06002838438046635 +42413,212.0649999998434,-0.06002660485233749 +42414,212.0699999998434,-0.06002482594957707 +42415,212.07499999984339,-0.06002304767184971 +42416,212.07999999984338,-0.06002127001882032 +42417,212.08499999984338,-0.060019492990154036 +42418,212.08999999984337,-0.06001771658551627 +42419,212.09499999984337,-0.06001594080457271 +42420,212.09999999984336,-0.06001416564698928 +42421,212.10499999984336,-0.0600123911124322 +42422,212.10999999984335,-0.060010617200567926 +42423,212.11499999984335,-0.06000884391106318 +42424,212.11999999984334,-0.060007071243584946 +42425,212.12499999984334,-0.06000529919780048 +42426,212.12999999984333,-0.06000352777337729 +42427,212.13499999984333,-0.06000175696998312 +42428,212.13999999984333,-0.05999998678728602 +42429,212.14499999984332,-0.05999821722495428 +42430,212.14999999984332,-0.059996448282656434 +42431,212.1549999998433,-0.0599946799600613 +42432,212.1599999998433,-0.05999291225683794 +42433,212.1649999998433,-0.05999114517265568 +42434,212.1699999998433,-0.05998937870718409 +42435,212.1749999998433,-0.05998761286009303 +42436,212.1799999998433,-0.05998584763105258 +42437,212.18499999984328,-0.059984083019733105 +42438,212.18999999984328,-0.05998231902580521 +42439,212.19499999984328,-0.059980555648939775 +42440,212.19999999984327,-0.059978792888807905 +42441,212.20499999984327,-0.059977030745081 +42442,212.20999999984326,-0.059975269217430696 +42443,212.21499999984326,-0.05997350830552887 +42444,212.21999999984325,-0.05997174800904769 +42445,212.22499999984325,-0.059969988327659554 +42446,212.22999999984324,-0.05996822926103711 +42447,212.23499999984324,-0.05996647080885328 +42448,212.23999999984323,-0.05996471297078122 +42449,212.24499999984323,-0.05996295574649437 +42450,212.24999999984323,-0.059961199135666395 +42451,212.25499999984322,-0.059959443137971205 +42452,212.25999999984322,-0.05995768775308301 +42453,212.2649999998432,-0.059955932980676224 +42454,212.2699999998432,-0.059954178820425544 +42455,212.2749999998432,-0.0599524252720059 +42456,212.2799999998432,-0.05995067233509248 +42457,212.2849999998432,-0.05994892000936072 +42458,212.2899999998432,-0.05994716829448632 +42459,212.29499999984318,-0.05994541719014522 +42460,212.29999999984318,-0.05994366669601362 +42461,212.30499999984318,-0.05994191681176797 +42462,212.30999999984317,-0.05994016753708495 +42463,212.31499999984317,-0.0599384188716415 +42464,212.31999999984316,-0.05993667081511484 +42465,212.32499999984316,-0.05993492336718238 +42466,212.32999999984315,-0.059933176527521836 +42467,212.33499999984315,-0.05993143029581114 +42468,212.33999999984314,-0.05992968467172848 +42469,212.34499999984314,-0.0599279396549523 +42470,212.34999999984313,-0.05992619524516127 +42471,212.35499999984313,-0.05992445144203434 +42472,212.35999999984313,-0.05992270824525069 +42473,212.36499999984312,-0.05992096565448973 +42474,212.36999999984312,-0.059919223669431164 +42475,212.3749999998431,-0.059917482289754874 +42476,212.3799999998431,-0.05991574151514105 +42477,212.3849999998431,-0.05991400134527011 +42478,212.3899999998431,-0.0599122617798227 +42479,212.3949999998431,-0.05991052281847972 +42480,212.3999999998431,-0.059908784460922335 +42481,212.40499999984308,-0.059907046706831925 +42482,212.40999999984308,-0.05990530955589013 +42483,212.41499999984308,-0.059903573007778835 +42484,212.41999999984307,-0.05990183706218016 +42485,212.42499999984307,-0.0599001017187765 +42486,212.42999999984306,-0.059898366977250435 +42487,212.43499999984306,-0.059896632837284844 +42488,212.43999999984305,-0.05989489929856281 +42489,212.44499999984305,-0.059893166360767684 +42490,212.44999999984304,-0.059891434023583046 +42491,212.45499999984304,-0.05988970228669273 +42492,212.45999999984303,-0.0598879711497808 +42493,212.46499999984303,-0.05988624061253157 +42494,212.46999999984303,-0.05988451067462958 +42495,212.47499999984302,-0.059882781335759645 +42496,212.47999999984302,-0.059881052595606776 +42497,212.484999999843,-0.059879324453856256 +42498,212.489999999843,-0.05987759691019359 +42499,212.494999999843,-0.059875869964304544 +42500,212.499999999843,-0.0598741436158751 +42501,212.504999999843,-0.0598724178645915 +42502,212.509999999843,-0.05987069271014021 +42503,212.51499999984298,-0.05986896815220794 +42504,212.51999999984298,-0.059867244190481644 +42505,212.52499999984298,-0.059865520824648515 +42506,212.52999999984297,-0.059863798054395956 +42507,212.53499999984297,-0.05986207587941165 +42508,212.53999999984296,-0.05986035429938349 +42509,212.54499999984296,-0.05985863331399962 +42510,212.54999999984295,-0.05985691292294841 +42511,212.55499999984295,-0.05985519312591848 +42512,212.55999999984294,-0.05985347392259867 +42513,212.56499999984294,-0.059851755312678064 +42514,212.56999999984293,-0.05985003729584598 +42515,212.57499999984293,-0.05984831987179199 +42516,212.57999999984293,-0.059846603040205865 +42517,212.58499999984292,-0.059844886800777645 +42518,212.58999999984292,-0.05984317115319759 +42519,212.5949999998429,-0.0598414560971562 +42520,212.5999999998429,-0.059839741632344186 +42521,212.6049999998429,-0.05983802775845254 +42522,212.6099999998429,-0.059836314475172445 +42523,212.6149999998429,-0.05983460178219534 +42524,212.6199999998429,-0.05983288967921287 +42525,212.62499999984288,-0.05983117816591695 +42526,212.62999999984288,-0.05982946724199972 +42527,212.63499999984288,-0.05982775690715354 +42528,212.63999999984287,-0.059826047161071004 +42529,212.64499999984287,-0.059824338003444937 +42530,212.64999999984286,-0.059822629433968405 +42531,212.65499999984286,-0.05982092145233469 +42532,212.65999999984285,-0.05981921405823732 +42533,212.66499999984285,-0.05981750725137006 +42534,212.66999999984284,-0.05981580103142689 +42535,212.67499999984284,-0.059814095398102014 +42536,212.67999999984283,-0.059812390351089886 +42537,212.68499999984283,-0.059810685890085195 +42538,212.68999999984283,-0.05980898201478283 +42539,212.69499999984282,-0.059807278724877934 +42540,212.69999999984282,-0.05980557602006586 +42541,212.7049999998428,-0.05980387390004221 +42542,212.7099999998428,-0.05980217236450281 +42543,212.7149999998428,-0.0598004714131437 +42544,212.7199999998428,-0.05979877104566117 +42545,212.7249999998428,-0.059797071261751725 +42546,212.7299999998428,-0.059795372061112094 +42547,212.73499999984278,-0.05979367344343925 +42548,212.73999999984278,-0.05979197540843036 +42549,212.74499999984278,-0.05979027795578287 +42550,212.74999999984277,-0.05978858108519441 +42551,212.75499999984277,-0.05978688479636284 +42552,212.75999999984276,-0.05978518908898627 +42553,212.76499999984276,-0.059783493962763036 +42554,212.76999999984275,-0.05978179941739165 +42555,212.77499999984275,-0.05978010545257091 +42556,212.77999999984274,-0.05977841206799981 +42557,212.78499999984274,-0.059776719263377576 +42558,212.78999999984273,-0.05977502703840365 +42559,212.79499999984273,-0.05977333539277771 +42560,212.79999999984273,-0.05977164432619966 +42561,212.80499999984272,-0.05976995383836962 +42562,212.80999999984272,-0.05976826392898792 +42563,212.8149999998427,-0.05976657459775514 +42564,212.8199999998427,-0.059764885844372076 +42565,212.8249999998427,-0.059763197668539735 +42566,212.8299999998427,-0.05976151006995936 +42567,212.8349999998427,-0.05975982304833241 +42568,212.8399999998427,-0.05975813660336057 +42569,212.84499999984268,-0.05975645073474575 +42570,212.84999999984268,-0.05975476544219008 +42571,212.85499999984268,-0.0597530807253959 +42572,212.85999999984267,-0.05975139658406579 +42573,212.86499999984267,-0.05974971301790252 +42574,212.86999999984266,-0.05974803002660913 +42575,212.87499999984266,-0.059746347609888846 +42576,212.87999999984265,-0.0597446657674451 +42577,212.88499999984265,-0.059742984498981584 +42578,212.88999999984264,-0.05974130380420221 +42579,212.89499999984264,-0.059739623682811056 +42580,212.89999999984263,-0.05973794413451248 +42581,212.90499999984263,-0.059736265159011016 +42582,212.90999999984263,-0.05973458675601144 +42583,212.91499999984262,-0.05973290892521875 +42584,212.91999999984262,-0.05973123166633816 +42585,212.9249999998426,-0.05972955497907509 +42586,212.9299999998426,-0.05972787886313517 +42587,212.9349999998426,-0.05972620331822429 +42588,212.9399999998426,-0.059724528344048525 +42589,212.9449999998426,-0.05972285394031415 +42590,212.9499999998426,-0.0597211801067277 +42591,212.95499999984258,-0.0597195068429959 +42592,212.95999999984258,-0.059717834148825706 +42593,212.96499999984258,-0.05971616202392427 +42594,212.96999999984257,-0.05971449046799899 +42595,212.97499999984257,-0.05971281948075745 +42596,212.97999999984256,-0.05971114906190746 +42597,212.98499999984256,-0.059709479211157074 +42598,212.98999999984255,-0.05970780992821452 +42599,212.99499999984255,-0.05970614121278824 +42600,212.99999999984254,-0.059704473064586934 +42601,213.00499999984254,-0.05970280548331948 +42602,213.00999999984253,-0.05970113846869498 +42603,213.01499999984253,-0.05969947202042275 +42604,213.01999999984253,-0.059697806138212316 +42605,213.02499999984252,-0.05969614082177343 +42606,213.02999999984252,-0.05969447607081605 +42607,213.0349999998425,-0.05969281188505035 +42608,213.0399999998425,-0.05969114826418669 +42609,213.0449999998425,-0.059689485207935704 +42610,213.0499999998425,-0.05968782271600817 +42611,213.0549999998425,-0.05968616078811513 +42612,213.0599999998425,-0.05968449942396781 +42613,213.06499999984248,-0.05968283862327766 +42614,213.06999999984248,-0.059681178385756324 +42615,213.07499999984248,-0.059679518711115695 +42616,213.07999999984247,-0.05967785959906783 +42617,213.08499999984247,-0.05967620104932503 +42618,213.08999999984246,-0.05967454306159979 +42619,213.09499999984246,-0.05967288563560483 +42620,213.09999999984245,-0.05967122877105307 +42621,213.10499999984245,-0.05966957246765763 +42622,213.10999999984244,-0.05966791672513186 +42623,213.11499999984244,-0.059666261543189325 +42624,213.11999999984243,-0.05966460692154377 +42625,213.12499999984243,-0.05966295285990917 +42626,213.12999999984243,-0.05966129935799969 +42627,213.13499999984242,-0.05965964641552975 +42628,213.13999999984242,-0.059657994032213925 +42629,213.1449999998424,-0.05965634220776703 +42630,213.1499999998424,-0.059654690941904065 +42631,213.1549999998424,-0.05965304023434025 +42632,213.1599999998424,-0.059651390084791034 +42633,213.1649999998424,-0.05964974049297203 +42634,213.1699999998424,-0.059648091458599097 +42635,213.17499999984238,-0.05964644298138828 +42636,213.17999999984238,-0.059644795061055834 +42637,213.18499999984238,-0.05964314769731821 +42638,213.18999999984237,-0.059641500889892105 +42639,213.19499999984237,-0.059639854638494375 +42640,213.19999999984236,-0.0596382089428421 +42641,213.20499999984236,-0.05963656380265257 +42642,213.20999999984235,-0.05963491921764329 +42643,213.21499999984235,-0.059633275187531934 +42644,213.21999999984234,-0.05963163171203643 +42645,213.22499999984234,-0.05962998879087486 +42646,213.22999999984233,-0.05962834642376555 +42647,213.23499999984233,-0.05962670461042701 +42648,213.23999999984233,-0.059625063350577975 +42649,213.24499999984232,-0.059623422643937364 +42650,213.24999999984232,-0.05962178249022429 +42651,213.2549999998423,-0.0596201428891581 +42652,213.2599999998423,-0.05961850384045833 +42653,213.2649999998423,-0.05961686534384471 +42654,213.2699999998423,-0.059615227399037185 +42655,213.2749999998423,-0.0596135900057559 +42656,213.2799999998423,-0.059611953163721185 +42657,213.28499999984228,-0.0596103168726536 +42658,213.28999999984228,-0.059608681132273904 +42659,213.29499999984228,-0.059607045942303045 +42660,213.29999999984227,-0.05960541130246218 +42661,213.30499999984227,-0.05960377721247264 +42662,213.30999999984226,-0.059602143672056004 +42663,213.31499999984226,-0.05960051068093402 +42664,213.31999999984225,-0.059598878238828645 +42665,213.32499999984225,-0.059597246345462054 +42666,213.32999999984224,-0.05959561500055658 +42667,213.33499999984224,-0.05959398420383479 +42668,213.33999999984223,-0.05959235395501946 +42669,213.34499999984223,-0.05959072425383353 +42670,213.34999999984223,-0.05958909510000017 +42671,213.35499999984222,-0.059587466493242716 +42672,213.35999999984222,-0.05958583843328475 +42673,213.3649999998422,-0.05958421091985001 +42674,213.3699999998422,-0.059582583952662464 +42675,213.3749999998422,-0.059580957531446245 +42676,213.3799999998422,-0.059579331655925716 +42677,213.3849999998422,-0.059577706325825416 +42678,213.3899999998422,-0.05957608154087011 +42679,213.39499999984218,-0.05957445730078473 +42680,213.39999999984218,-0.05957283360529441 +42681,213.40499999984218,-0.0595712104541245 +42682,213.40999999984217,-0.05956958784700053 +42683,213.41499999984217,-0.05956796578364824 +42684,213.41999999984216,-0.05956634426379354 +42685,213.42499999984216,-0.05956472328716258 +42686,213.42999999984215,-0.05956310285348167 +42687,213.43499999984215,-0.05956148296247731 +42688,213.43999999984214,-0.059559863613876246 +42689,213.44499999984214,-0.059558244807405375 +42690,213.44999999984213,-0.05955662654279179 +42691,213.45499999984213,-0.059555008819762806 +42692,213.45999999984213,-0.0595533916380459 +42693,213.46499999984212,-0.059551774997368766 +42694,213.46999999984212,-0.0595501588974593 +42695,213.4749999998421,-0.05954854333804558 +42696,213.4799999998421,-0.059546928318855864 +42697,213.4849999998421,-0.05954531383961863 +42698,213.4899999998421,-0.05954369990006252 +42699,213.4949999998421,-0.05954208649991641 +42700,213.4999999998421,-0.05954047363890933 +42701,213.50499999984208,-0.05953886131677054 +42702,213.50999999984208,-0.059537249533229454 +42703,213.51499999984208,-0.05953563828801572 +42704,213.51999999984207,-0.059534027580859135 +42705,213.52499999984207,-0.05953241741148971 +42706,213.52999999984206,-0.05953080777963766 +42707,213.53499999984206,-0.05952919868503337 +42708,213.53999999984205,-0.05952759012740744 +42709,213.54499999984205,-0.059525982106490634 +42710,213.54999999984204,-0.059524374622013924 +42711,213.55499999984204,-0.05952276767370849 +42712,213.55999999984203,-0.05952116126130567 +42713,213.56499999984203,-0.05951955538453699 +42714,213.56999999984203,-0.059517950043134205 +42715,213.57499999984202,-0.05951634523682924 +42716,213.57999999984202,-0.059514740965354196 +42717,213.584999999842,-0.059513137228441385 +42718,213.589999999842,-0.05951153402582329 +42719,213.594999999842,-0.05950993135723262 +42720,213.599999999842,-0.05950832922240223 +42721,213.604999999842,-0.05950672762106518 +42722,213.609999999842,-0.059505126552954736 +42723,213.61499999984198,-0.05950352601780432 +42724,213.61999999984198,-0.05950192601534757 +42725,213.62499999984198,-0.059500326545318304 +42726,213.62999999984197,-0.05949872760745052 +42727,213.63499999984197,-0.05949712920147842 +42728,213.63999999984196,-0.05949553132713638 +42729,213.64499999984196,-0.059493933984158975 +42730,213.64999999984195,-0.05949233717228095 +42731,213.65499999984195,-0.059490740891237265 +42732,213.65999999984194,-0.05948914514076305 +42733,213.66499999984194,-0.05948754992059361 +42734,213.66999999984193,-0.05948595523046445 +42735,213.67499999984193,-0.05948436107011129 +42736,213.67999999984193,-0.05948276743926998 +42737,213.68499999984192,-0.05948117433767658 +42738,213.68999999984192,-0.05947958176506735 +42739,213.6949999998419,-0.05947798972117873 +42740,213.6999999998419,-0.05947639820574734 +42741,213.7049999998419,-0.05947480721850999 +42742,213.7099999998419,-0.05947321675920367 +42743,213.7149999998419,-0.059471626827565544 +42744,213.7199999998419,-0.05947003742333298 +42745,213.72499999984188,-0.05946844854624354 +42746,213.72999999984188,-0.05946686019603493 +42747,213.73499999984188,-0.05946527237244509 +42748,213.73999999984187,-0.059463685075212096 +42749,213.74499999984187,-0.05946209830407425 +42750,213.74999999984186,-0.05946051205877001 +42751,213.75499999984186,-0.05945892633903803 +42752,213.75999999984185,-0.05945734114461715 +42753,213.76499999984185,-0.059455756475246375 +42754,213.76999999984184,-0.059454172330664905 +42755,213.77499999984184,-0.05945258871061213 +42756,213.77999999984183,-0.05945100561482762 +42757,213.78499999984183,-0.05944942304305111 +42758,213.78999999984183,-0.059447840995022545 +42759,213.79499999984182,-0.05944625947048204 +42760,213.79999999984182,-0.05944467846916986 +42761,213.8049999998418,-0.05944309799082652 +42762,213.8099999998418,-0.059441518035192646 +42763,213.8149999998418,-0.05943993860200909 +42764,213.8199999998418,-0.059438359691016886 +42765,213.8249999998418,-0.05943678130195721 +42766,213.8299999998418,-0.05943520343457146 +42767,213.83499999984178,-0.059433626088601185 +42768,213.83999999984178,-0.059432049263788145 +42769,213.84499999984178,-0.059430472959874255 +42770,213.84999999984177,-0.05942889717660161 +42771,213.85499999984177,-0.05942732191371251 +42772,213.85999999984176,-0.059425747170949395 +42773,213.86499999984176,-0.05942417294805492 +42774,213.86999999984175,-0.059422599244771904 +42775,213.87499999984175,-0.05942102606084336 +42776,213.87999999984174,-0.059419453396012456 +42777,213.88499999984174,-0.059417881250022564 +42778,213.88999999984173,-0.059416309622617194 +42779,213.89499999984173,-0.05941473851354009 +42780,213.89999999984173,-0.05941316792253513 +42781,213.90499999984172,-0.05941159784934638 +42782,213.90999999984172,-0.059410028293718116 +42783,213.9149999998417,-0.059408459255394744 +42784,213.9199999998417,-0.05940689073412088 +42785,213.9249999998417,-0.0594053227296413 +42786,213.9299999998417,-0.05940375524170097 +42787,213.9349999998417,-0.059402188270045 +42788,213.9399999998417,-0.05940062181441874 +42789,213.94499999984168,-0.05939905587456767 +42790,213.94999999984168,-0.05939749045023744 +42791,213.95499999984168,-0.05939592554117391 +42792,213.95999999984167,-0.05939436114712309 +42793,213.96499999984167,-0.0593927972678312 +42794,213.96999999984166,-0.05939123390304458 +42795,213.97499999984166,-0.059389671052509786 +42796,213.97999999984165,-0.059388108715973546 +42797,213.98499999984165,-0.059386546893182755 +42798,213.98999999984164,-0.05938498558388449 +42799,213.99499999984164,-0.05938342478782599 +42800,213.99999999984163,-0.059381864504754675 +42801,214.00499999984163,-0.059380304734418146 +42802,214.00999999984163,-0.05937874547656418 +42803,214.01499999984162,-0.05937718673094071 +42804,214.01999999984162,-0.059375628497295864 +42805,214.0249999998416,-0.05937407077537793 +42806,214.0299999998416,-0.05937251356493538 +42807,214.0349999998416,-0.05937095686571685 +42808,214.0399999998416,-0.059369400677471165 +42809,214.0449999998416,-0.059367844999947295 +42810,214.0499999998416,-0.05936628983289441 +42811,214.05499999984158,-0.05936473517606184 +42812,214.05999999984158,-0.059363181029199096 +42813,214.06499999984158,-0.05936162739205585 +42814,214.06999999984157,-0.05936007426438195 +42815,214.07499999984157,-0.05935852164592743 +42816,214.07999999984156,-0.059356969536442476 +42817,214.08499999984156,-0.05935541793567745 +42818,214.08999999984155,-0.0593538668433829 +42819,214.09499999984155,-0.059352316259309534 +42820,214.09999999984154,-0.059350766183208226 +42821,214.10499999984154,-0.05934921661483003 +42822,214.10999999984153,-0.059347667553926176 +42823,214.11499999984153,-0.059346119000248054 +42824,214.11999999984153,-0.05934457095354722 +42825,214.12499999984152,-0.059343023413575426 +42826,214.12999999984152,-0.05934147638008456 +42827,214.1349999998415,-0.0593399298528267 +42828,214.1399999998415,-0.0593383838315541 +42829,214.1449999998415,-0.05933683831601917 +42830,214.1499999998415,-0.05933529330597449 +42831,214.1549999998415,-0.059333748801172835 +42832,214.1599999998415,-0.0593322048013671 +42833,214.16499999984148,-0.059330661306310394 +42834,214.16999999984148,-0.05932911831575596 +42835,214.17499999984148,-0.05932757582945726 +42836,214.17999999984147,-0.05932603384716788 +42837,214.18499999984147,-0.059324492368641575 +42838,214.18999999984146,-0.0593229513936323 +42839,214.19499999984146,-0.05932141092189413 +42840,214.19999999984145,-0.059319870953181364 +42841,214.20499999984145,-0.05931833148724843 +42842,214.20999999984144,-0.05931679252384994 +42843,214.21499999984144,-0.059315254062740665 +42844,214.21999999984143,-0.05931371610367555 +42845,214.22499999984143,-0.059312178646409704 +42846,214.22999999984143,-0.059310641690698405 +42847,214.23499999984142,-0.05930910523629709 +42848,214.23999999984142,-0.05930756928296137 +42849,214.2449999998414,-0.059306033830447025 +42850,214.2499999998414,-0.05930449887850999 +42851,214.2549999998414,-0.059302964426906385 +42852,214.2599999998414,-0.05930143047539248 +42853,214.2649999998414,-0.059299897023724714 +42854,214.2699999998414,-0.05929836407165969 +42855,214.27499999984138,-0.05929683161895419 +42856,214.27999999984138,-0.059295299665365134 +42857,214.28499999984138,-0.05929376821064965 +42858,214.28999999984137,-0.059292237254564985 +42859,214.29499999984137,-0.05929070679686858 +42860,214.29999999984136,-0.059289176837318026 +42861,214.30499999984136,-0.05928764737567108 +42862,214.30999999984135,-0.05928611841168569 +42863,214.31499999984135,-0.05928458994511993 +42864,214.31999999984134,-0.059283061975732056 +42865,214.32499999984134,-0.059281534503280484 +42866,214.32999999984133,-0.05928000752752379 +42867,214.33499999984133,-0.05927848104822074 +42868,214.33999999984133,-0.05927695506513023 +42869,214.34499999984132,-0.05927542957801133 +42870,214.34999999984132,-0.05927390458662327 +42871,214.3549999998413,-0.05927238009072546 +42872,214.3599999998413,-0.05927085609007748 +42873,214.3649999998413,-0.05926933258443901 +42874,214.3699999998413,-0.05926780957356997 +42875,214.3749999998413,-0.05926628705723039 +42876,214.3799999998413,-0.05926476503518049 +42877,214.38499999984128,-0.059263243507180645 +42878,214.38999999984128,-0.0592617224729914 +42879,214.39499999984127,-0.05926020193237342 +42880,214.39999999984127,-0.05925868188508759 +42881,214.40499999984127,-0.05925716233089492 +42882,214.40999999984126,-0.05925564326955659 +42883,214.41499999984126,-0.059254124700833945 +42884,214.41999999984125,-0.05925260662448848 +42885,214.42499999984125,-0.05925108904028187 +42886,214.42999999984124,-0.05924957194797592 +42887,214.43499999984124,-0.05924805534733264 +42888,214.43999999984123,-0.059246539238114154 +42889,214.44499999984123,-0.05924502362008278 +42890,214.44999999984122,-0.059243508493000974 +42891,214.45499999984122,-0.059241993856631384 +42892,214.45999999984122,-0.05924047971073677 +42893,214.4649999998412,-0.05923896605508007 +42894,214.4699999998412,-0.059237452889424405 +42895,214.4749999998412,-0.05923594021353304 +42896,214.4799999998412,-0.05923442802716939 +42897,214.4849999998412,-0.05923291633009703 +42898,214.4899999998412,-0.05923140512207971 +42899,214.49499999984118,-0.05922989440288133 +42900,214.49999999984118,-0.05922838417226593 +42901,214.50499999984117,-0.05922687442999775 +42902,214.50999999984117,-0.059225365175841135 +42903,214.51499999984117,-0.05922385640956064 +42904,214.51999999984116,-0.059222348130920935 +42905,214.52499999984116,-0.05922084033968687 +42906,214.52999999984115,-0.05921933303562347 +42907,214.53499999984115,-0.059217826218495875 +42908,214.53999999984114,-0.059216319888069406 +42909,214.54499999984114,-0.05921481404410955 +42910,214.54999999984113,-0.05921330868638194 +42911,214.55499999984113,-0.05921180381465236 +42912,214.55999999984112,-0.05921029942868674 +42913,214.56499999984112,-0.0592087955282512 +42914,214.56999999984112,-0.05920729211311201 +42915,214.5749999998411,-0.05920578918303557 +42916,214.5799999998411,-0.05920428673778845 +42917,214.5849999998411,-0.0592027847771374 +42918,214.5899999998411,-0.05920128330084927 +42919,214.5949999998411,-0.05919978230869113 +42920,214.5999999998411,-0.05919828180043015 +42921,214.60499999984108,-0.0591967817758337 +42922,214.60999999984108,-0.059195282234669265 +42923,214.61499999984107,-0.05919378317670451 +42924,214.61999999984107,-0.05919228460170727 +42925,214.62499999984107,-0.0591907865094455 +42926,214.62999999984106,-0.05918928889968731 +42927,214.63499999984106,-0.059187791772200994 +42928,214.63999999984105,-0.05918629512675499 +42929,214.64499999984105,-0.059184798963117874 +42930,214.64999999984104,-0.059183303281058385 +42931,214.65499999984104,-0.059181808080345434 +42932,214.65999999984103,-0.05918031336074806 +42933,214.66499999984103,-0.05917881912203545 +42934,214.66999999984102,-0.059177325363976976 +42935,214.67499999984102,-0.05917583208634215 +42936,214.67999999984102,-0.059174339288900625 +42937,214.684999999841,-0.05917284697142222 +42938,214.689999999841,-0.0591713551336769 +42939,214.694999999841,-0.059169863775434796 +42940,214.699999999841,-0.05916837289646617 +42941,214.704999999841,-0.05916688249654144 +42942,214.709999999841,-0.059165392575431186 +42943,214.71499999984098,-0.059163903132906155 +42944,214.71999999984098,-0.059162414168737215 +42945,214.72499999984097,-0.05916092568269541 +42946,214.72999999984097,-0.05915943767455191 +42947,214.73499999984097,-0.059157950144078056 +42948,214.73999999984096,-0.05915646309104534 +42949,214.74499999984096,-0.0591549765152254 +42950,214.74999999984095,-0.05915349041639003 +42951,214.75499999984095,-0.05915200479431117 +42952,214.75999999984094,-0.059150519648760905 +42953,214.76499999984094,-0.05914903497951148 +42954,214.76999999984093,-0.05914755078633529 +42955,214.77499999984093,-0.059146067069004875 +42956,214.77999999984092,-0.059144583827292936 +42957,214.78499999984092,-0.059143101060972314 +42958,214.78999999984092,-0.05914161876981601 +42959,214.7949999998409,-0.05914013695359715 +42960,214.7999999998409,-0.05913865561208904 +42961,214.8049999998409,-0.05913717474506513 +42962,214.8099999998409,-0.059135694352299 +42963,214.8149999998409,-0.0591342144335644 +42964,214.8199999998409,-0.05913273498863521 +42965,214.82499999984088,-0.05913125601728548 +42966,214.82999999984088,-0.05912977751928939 +42967,214.83499999984087,-0.059128299494421284 +42968,214.83999999984087,-0.05912682194245565 +42969,214.84499999984087,-0.05912534486316712 +42970,214.84999999984086,-0.05912386825633047 +42971,214.85499999984086,-0.059122392121720636 +42972,214.85999999984085,-0.05912091645911271 +42973,214.86499999984085,-0.05911944126828189 +42974,214.86999999984084,-0.05911796654900357 +42975,214.87499999984084,-0.05911649230105327 +42976,214.87999999984083,-0.05911501852420666 +42977,214.88499999984083,-0.059113545218239555 +42978,214.88999999984082,-0.059112072382927906 +42979,214.89499999984082,-0.05911060001804785 +42980,214.89999999984082,-0.05910912812337561 +42981,214.9049999998408,-0.05910765669868762 +42982,214.9099999998408,-0.05910618574376042 +42983,214.9149999998408,-0.059104715258370716 +42984,214.9199999998408,-0.05910324524229534 +42985,214.9249999998408,-0.059101775695311304 +42986,214.9299999998408,-0.059100306617195716 +42987,214.93499999984078,-0.059098838007725876 +42988,214.93999999984078,-0.059097369866679204 +42989,214.94499999984077,-0.05909590219383328 +42990,214.94999999984077,-0.059094434988965834 +42991,214.95499999984077,-0.0590929682518547 +42992,214.95999999984076,-0.0590915019822779 +42993,214.96499999984076,-0.059090036180013614 +42994,214.96999999984075,-0.05908857084484011 +42995,214.97499999984075,-0.05908710597653584 +42996,214.97999999984074,-0.0590856415748794 +42997,214.98499999984074,-0.05908417763964954 +42998,214.98999999984073,-0.05908271417062511 +42999,214.99499999984073,-0.059081251167585155 +43000,214.99999999984072,-0.05907978863030883 +43001,215.00499999984072,-0.05907832655857544 +43002,215.00999999984072,-0.05907686495216446 +43003,215.0149999998407,-0.059075403810855465 +43004,215.0199999998407,-0.05907394313442822 +43005,215.0249999998407,-0.0590724829226626 +43006,215.0299999998407,-0.05907102317533864 +43007,215.0349999998407,-0.059069563892236505 +43008,215.0399999998407,-0.059068105073136506 +43009,215.04499999984068,-0.059066646717819124 +43010,215.04999999984068,-0.05906518882606494 +43011,215.05499999984067,-0.05906373139765471 +43012,215.05999999984067,-0.059062274432369305 +43013,215.06499999984067,-0.05906081792998978 +43014,215.06999999984066,-0.0590593618902973 +43015,215.07499999984066,-0.059057906313073165 +43016,215.07999999984065,-0.059056451198098846 +43017,215.08499999984065,-0.05905499654515593 +43018,215.08999999984064,-0.05905354235402616 +43019,215.09499999984064,-0.05905208862449142 +43020,215.09999999984063,-0.05905063535633373 +43021,215.10499999984063,-0.059049182549335257 +43022,215.10999999984062,-0.059047730203278304 +43023,215.11499999984062,-0.059046278317945323 +43024,215.11999999984062,-0.05904482689311889 +43025,215.1249999998406,-0.059043375928581755 +43026,215.1299999998406,-0.05904192542411677 +43027,215.1349999998406,-0.05904047537950696 +43028,215.1399999998406,-0.05903902579453546 +43029,215.1449999998406,-0.05903757666898557 +43030,215.1499999998406,-0.05903612800264071 +43031,215.15499999984058,-0.05903467979528448 +43032,215.15999999984058,-0.059033232046700565 +43033,215.16499999984057,-0.05903178475667282 +43034,215.16999999984057,-0.059030337924985236 +43035,215.17499999984057,-0.05902889155142195 +43036,215.17999999984056,-0.05902744563576722 +43037,215.18499999984056,-0.059026000177805474 +43038,215.18999999984055,-0.05902455517732125 +43039,215.19499999984055,-0.05902311063409924 +43040,215.19999999984054,-0.05902166654792427 +43041,215.20499999984054,-0.0590202229185813 +43042,215.20999999984053,-0.05901877974585544 +43043,215.21499999984053,-0.05901733702953193 +43044,215.21999999984052,-0.05901589476939616 +43045,215.22499999984052,-0.05901445296523363 +43046,215.22999999984052,-0.059013011616830015 +43047,215.2349999998405,-0.059011570723971105 +43048,215.2399999998405,-0.05901013028644283 +43049,215.2449999998405,-0.059008690304031275 +43050,215.2499999998405,-0.05900725077652264 +43051,215.2549999998405,-0.05900581170370326 +43052,215.2599999998405,-0.059004373085359635 +43053,215.26499999984048,-0.05900293492127838 +43054,215.26999999984048,-0.059001497211246264 +43055,215.27499999984047,-0.05900005995505018 +43056,215.27999999984047,-0.05899862315247715 +43057,215.28499999984047,-0.05899718680331435 +43058,215.28999999984046,-0.05899575090734909 +43059,215.29499999984046,-0.05899431546436881 +43060,215.29999999984045,-0.0589928804741611 +43061,215.30499999984045,-0.058991445936513655 +43062,215.30999999984044,-0.05899001185121435 +43063,215.31499999984044,-0.058988578218051146 +43064,215.31999999984043,-0.05898714503681218 +43065,215.32499999984043,-0.05898571230728573 +43066,215.32999999984042,-0.058984280029260164 +43067,215.33499999984042,-0.05898284820252402 +43068,215.33999999984042,-0.05898141682686598 +43069,215.3449999998404,-0.05897998590207483 +43070,215.3499999998404,-0.05897855542793951 +43071,215.3549999998404,-0.0589771254042491 +43072,215.3599999998404,-0.05897569583079279 +43073,215.3649999998404,-0.05897426670735993 +43074,215.3699999998404,-0.058972838033740003 +43075,215.37499999984038,-0.05897140980972262 +43076,215.37999999984038,-0.05896998203509752 +43077,215.38499999984037,-0.058968554709654585 +43078,215.38999999984037,-0.05896712783318382 +43079,215.39499999984037,-0.0589657014054754 +43080,215.39999999984036,-0.05896427542631959 +43081,215.40499999984036,-0.05896284989550679 +43082,215.40999999984035,-0.05896142481282759 +43083,215.41499999984035,-0.05896000017807263 +43084,215.41999999984034,-0.05895857599103276 +43085,215.42499999984034,-0.058957152251498925 +43086,215.42999999984033,-0.0589557289592622 +43087,215.43499999984033,-0.05895430611411381 +43088,215.43999999984032,-0.05895288371584509 +43089,215.44499999984032,-0.05895146176424753 +43090,215.44999999984032,-0.05895004025911274 +43091,215.4549999998403,-0.058948619200232484 +43092,215.4599999998403,-0.05894719858739865 +43093,215.4649999998403,-0.058945778420403216 +43094,215.4699999998403,-0.058944358699038364 +43095,215.4749999998403,-0.05894293942309635 +43096,215.4799999998403,-0.05894152059236959 +43097,215.48499999984028,-0.05894010220665062 +43098,215.48999999984028,-0.05893868426573212 +43099,215.49499999984027,-0.05893726676940689 +43100,215.49999999984027,-0.058935849717467875 +43101,215.50499999984027,-0.05893443310970814 +43102,215.50999999984026,-0.05893301694592088 +43103,215.51499999984026,-0.058931601225899445 +43104,215.51999999984025,-0.058930185949437275 +43105,215.52499999984025,-0.058928771116327966 +43106,215.52999999984024,-0.058927356726365246 +43107,215.53499999984024,-0.058925942779342974 +43108,215.53999999984023,-0.058924529275055135 +43109,215.54499999984023,-0.058923116213295844 +43110,215.54999999984022,-0.058921703593859336 +43111,215.55499999984022,-0.05892029141654 +43112,215.55999999984022,-0.058918879681132325 +43113,215.5649999998402,-0.05891746838743098 +43114,215.5699999998402,-0.058916057535230694 +43115,215.5749999998402,-0.0589146471243264 +43116,215.5799999998402,-0.0589132371545131 +43117,215.5849999998402,-0.05891182762558596 +43118,215.5899999998402,-0.05891041853734026 +43119,215.59499999984018,-0.05890900988957142 +43120,215.59999999984018,-0.058907601682074984 +43121,215.60499999984017,-0.058906193914646625 +43122,215.60999999984017,-0.05890478658708213 +43123,215.61499999984017,-0.05890337969917745 +43124,215.61999999984016,-0.05890197325072863 +43125,215.62499999984016,-0.05890056724153188 +43126,215.62999999984015,-0.058899161671383496 +43127,215.63499999984015,-0.05889775654007994 +43128,215.63999999984014,-0.05889635184741776 +43129,215.64499999984014,-0.05889494759319369 +43130,215.64999999984013,-0.05889354377720454 +43131,215.65499999984013,-0.05889214039924727 +43132,215.65999999984012,-0.05889073745911897 +43133,215.66499999984012,-0.05888933495661685 +43134,215.66999999984012,-0.05888793289153826 +43135,215.6749999998401,-0.058886531263680666 +43136,215.6799999998401,-0.058885130072841664 +43137,215.6849999998401,-0.05888372931881897 +43138,215.6899999998401,-0.05888232900141044 +43139,215.6949999998401,-0.05888092912041405 +43140,215.6999999998401,-0.05887952967562792 +43141,215.70499999984008,-0.05887813066685027 +43142,215.70999999984008,-0.058876732093879454 +43143,215.71499999984007,-0.05887533395651395 +43144,215.71999999984007,-0.058873936254552395 +43145,215.72499999984007,-0.05887253898779351 +43146,215.72999999984006,-0.05887114215603616 +43147,215.73499999984006,-0.058869745759079335 +43148,215.73999999984005,-0.05886834979672216 +43149,215.74499999984005,-0.058866954268763864 +43150,215.74999999984004,-0.05886555917500383 +43151,215.75499999984004,-0.05886416451524154 +43152,215.75999999984003,-0.058862770289276625 +43153,215.76499999984003,-0.058861376496908833 +43154,215.76999999984002,-0.05885998313793802 +43155,215.77499999984002,-0.05885859021216419 +43156,215.77999999984002,-0.05885719771938746 +43157,215.78499999984,-0.05885580565940808 +43158,215.78999999984,-0.05885441403202641 +43159,215.79499999984,-0.058853022837042974 +43160,215.79999999984,-0.058851632074258364 +43161,215.80499999984,-0.05885024174347335 +43162,215.80999999984,-0.05884885184448878 +43163,215.81499999983998,-0.058847462377105655 +43164,215.81999999983998,-0.058846073341125106 +43165,215.82499999983997,-0.05884468473634836 +43166,215.82999999983997,-0.05884329656257678 +43167,215.83499999983997,-0.05884190881961188 +43168,215.83999999983996,-0.058840521507255245 +43169,215.84499999983996,-0.058839134625308646 +43170,215.84999999983995,-0.058837748173573914 +43171,215.85499999983995,-0.058836362151853054 +43172,215.85999999983994,-0.058834976559948175 +43173,215.86499999983994,-0.05883359139766149 +43174,215.86999999983993,-0.05883220666479538 +43175,215.87499999983993,-0.058830822361152314 +43176,215.87999999983992,-0.0588294384865349 +43177,215.88499999983992,-0.05882805504074584 +43178,215.88999999983992,-0.058826672023588 +43179,215.8949999998399,-0.05882528943486435 +43180,215.8999999998399,-0.05882390727437797 +43181,215.9049999998399,-0.0588225255419321 +43182,215.9099999998399,-0.05882114423733005 +43183,215.9149999998399,-0.05881976336037529 +43184,215.9199999998399,-0.05881838291087141 +43185,215.92499999983988,-0.0588170028886221 +43186,215.92999999983988,-0.058815623293431187 +43187,215.93499999983987,-0.05881424412510263 +43188,215.93999999983987,-0.058812865383440494 +43189,215.94499999983987,-0.058811487068248965 +43190,215.94999999983986,-0.05881010917933236 +43191,215.95499999983986,-0.0588087317164951 +43192,215.95999999983985,-0.05880735467954176 +43193,215.96499999983985,-0.058805978068277004 +43194,215.96999999983984,-0.05880460188250562 +43195,215.97499999983984,-0.05880322612203256 +43196,215.97999999983983,-0.05880185078666283 +43197,215.98499999983983,-0.05880047587620159 +43198,215.98999999983982,-0.05879910139045414 +43199,215.99499999983982,-0.05879772732922586 +43200,215.99999999983982,-0.0587963536923223 +43201,216.0049999998398,-0.058794980479549085 +43202,216.0099999998398,-0.058793607690711965 +43203,216.0149999998398,-0.05879223532561683 +43204,216.0199999998398,-0.0587908633840697 +43205,216.0249999998398,-0.05878949186587667 +43206,216.0299999998398,-0.05878812077084399 +43207,216.03499999983978,-0.05878675009877803 +43208,216.03999999983978,-0.058785379849485266 +43209,216.04499999983977,-0.05878401002277231 +43210,216.04999999983977,-0.058782640618445854 +43211,216.05499999983977,-0.05878127163631277 +43212,216.05999999983976,-0.058779903076179994 +43213,216.06499999983976,-0.0587785349378546 +43214,216.06999999983975,-0.0587771672211438 +43215,216.07499999983975,-0.058775799925854896 +43216,216.07999999983974,-0.05877443305179534 +43217,216.08499999983974,-0.058773066598772676 +43218,216.08999999983973,-0.05877170056659456 +43219,216.09499999983973,-0.05877033495506881 +43220,216.09999999983972,-0.0587689697640033 +43221,216.10499999983972,-0.05876760499320608 +43222,216.10999999983972,-0.058766240642485285 +43223,216.1149999998397,-0.0587648767116492 +43224,216.1199999998397,-0.05876351320050617 +43225,216.1249999998397,-0.058762150108864715 +43226,216.1299999998397,-0.05876078743653345 +43227,216.1349999998397,-0.0587594251833211 +43228,216.1399999998397,-0.05875806334903652 +43229,216.14499999983968,-0.058756701933488684 +43230,216.14999999983968,-0.058755340936486676 +43231,216.15499999983967,-0.05875398035783969 +43232,216.15999999983967,-0.05875262019735706 +43233,216.16499999983967,-0.05875126045484821 +43234,216.16999999983966,-0.05874990113012271 +43235,216.17499999983966,-0.05874854222299021 +43236,216.17999999983965,-0.058747183733260516 +43237,216.18499999983965,-0.058745825660743524 +43238,216.18999999983964,-0.05874446800524926 +43239,216.19499999983964,-0.058743110766587864 +43240,216.19999999983963,-0.05874175394456958 +43241,216.20499999983963,-0.05874039753900478 +43242,216.20999999983962,-0.058739041549703955 +43243,216.21499999983962,-0.05873768597647771 +43244,216.21999999983962,-0.058736330819136755 +43245,216.2249999998396,-0.058734976077491924 +43246,216.2299999998396,-0.058733621751354166 +43247,216.2349999998396,-0.05873226784053455 +43248,216.2399999998396,-0.05873091434484425 +43249,216.2449999998396,-0.05872956126409457 +43250,216.2499999998396,-0.05872820859809693 +43251,216.25499999983958,-0.058726856346662845 +43252,216.25999999983958,-0.058725504509603954 +43253,216.26499999983957,-0.05872415308673202 +43254,216.26999999983957,-0.058722802077858904 +43255,216.27499999983957,-0.05872145148279661 +43256,216.27999999983956,-0.058720101301357235 +43257,216.28499999983956,-0.058718751533352986 +43258,216.28999999983955,-0.05871740217859619 +43259,216.29499999983955,-0.0587160532368993 +43260,216.29999999983954,-0.058714704708074876 +43261,216.30499999983954,-0.05871335659193559 +43262,216.30999999983953,-0.05871200888829424 +43263,216.31499999983953,-0.05871066159696372 +43264,216.31999999983952,-0.05870931471775704 +43265,216.32499999983952,-0.058707968250487325 +43266,216.32999999983952,-0.058706622194967834 +43267,216.3349999998395,-0.058705276551011924 +43268,216.3399999998395,-0.05870393131843305 +43269,216.3449999998395,-0.05870258649704481 +43270,216.3499999998395,-0.05870124208666089 +43271,216.3549999998395,-0.05869989808709511 +43272,216.3599999998395,-0.05869855449816139 +43273,216.36499999983948,-0.05869721131967376 +43274,216.36999999983948,-0.05869586855144638 +43275,216.37499999983947,-0.05869452619329352 +43276,216.37999999983947,-0.05869318424502953 +43277,216.38499999983947,-0.05869184270646892 +43278,216.38999999983946,-0.05869050157742628 +43279,216.39499999983946,-0.05868916085771633 +43280,216.39999999983945,-0.05868782054715389 +43281,216.40499999983945,-0.0586864806455539 +43282,216.40999999983944,-0.05868514115273142 +43283,216.41499999983944,-0.058683802068501593 +43284,216.41999999983943,-0.05868246339267971 +43285,216.42499999983943,-0.058681125125081154 +43286,216.42999999983942,-0.058679787265521414 +43287,216.43499999983942,-0.058678449813816105 +43288,216.43999999983942,-0.05867711276978095 +43289,216.4449999998394,-0.05867577613323178 +43290,216.4499999998394,-0.05867443990398455 +43291,216.4549999998394,-0.058673104081855304 +43292,216.4599999998394,-0.0586717686666602 +43293,216.4649999998394,-0.05867043365821553 +43294,216.4699999998394,-0.05866909905633769 +43295,216.47499999983938,-0.058667764860843165 +43296,216.47999999983938,-0.05866643107154857 +43297,216.48499999983937,-0.058665097688270634 +43298,216.48999999983937,-0.05866376471082619 +43299,216.49499999983937,-0.058662432139032175 +43300,216.49999999983936,-0.058661099972705646 +43301,216.50499999983936,-0.058659768211663764 +43302,216.50999999983935,-0.058658436855723806 +43303,216.51499999983935,-0.05865710590470316 +43304,216.51999999983934,-0.05865577535841931 +43305,216.52499999983934,-0.05865444521668987 +43306,216.52999999983933,-0.058653115479332545 +43307,216.53499999983933,-0.05865178614616517 +43308,216.53999999983932,-0.058650457217005666 +43309,216.54499999983932,-0.0586491286916721 +43310,216.54999999983932,-0.058647800569982624 +43311,216.5549999998393,-0.05864647285175548 +43312,216.5599999998393,-0.05864514553680904 +43313,216.5649999998393,-0.05864381862496181 +43314,216.5699999998393,-0.05864249211603236 +43315,216.5749999998393,-0.058641166009839395 +43316,216.5799999998393,-0.058639840306201736 +43317,216.58499999983928,-0.05863851500493829 +43318,216.58999999983928,-0.05863719010586809 +43319,216.59499999983927,-0.05863586560881026 +43320,216.59999999983927,-0.058634541513584056 +43321,216.60499999983927,-0.058633217820008826 +43322,216.60999999983926,-0.05863189452790404 +43323,216.61499999983926,-0.05863057163708926 +43324,216.61999999983925,-0.05862924914738416 +43325,216.62499999983925,-0.05862792705860854 +43326,216.62999999983924,-0.05862660537058227 +43327,216.63499999983924,-0.05862528408312538 +43328,216.63999999983923,-0.058623963196057956 +43329,216.64499999983923,-0.058622642709200236 +43330,216.64999999983922,-0.058621322622372546 +43331,216.65499999983922,-0.05862000293539531 +43332,216.65999999983921,-0.05861868364808906 +43333,216.6649999998392,-0.05861736476027446 +43334,216.6699999998392,-0.05861604627177226 +43335,216.6749999998392,-0.058614728182403326 +43336,216.6799999998392,-0.058613410491988635 +43337,216.6849999998392,-0.05861209320034925 +43338,216.6899999998392,-0.05861077630730637 +43339,216.69499999983918,-0.058609459812681265 +43340,216.69999999983918,-0.05860814371629536 +43341,216.70499999983917,-0.058606828017970146 +43342,216.70999999983917,-0.05860551271752724 +43343,216.71499999983916,-0.05860419781478834 +43344,216.71999999983916,-0.05860288330957529 +43345,216.72499999983916,-0.05860156920171004 +43346,216.72999999983915,-0.058600255491014594 +43347,216.73499999983915,-0.058598942177311104 +43348,216.73999999983914,-0.05859762926042183 +43349,216.74499999983914,-0.058596316740169116 +43350,216.74999999983913,-0.058595004616375436 +43351,216.75499999983913,-0.05859369288886335 +43352,216.75999999983912,-0.058592381557455525 +43353,216.76499999983912,-0.058591070621974765 +43354,216.76999999983911,-0.058589760082243945 +43355,216.7749999998391,-0.05858844993808603 +43356,216.7799999998391,-0.05858714018932415 +43357,216.7849999998391,-0.05858583083578148 +43358,216.7899999998391,-0.058584521877281345 +43359,216.7949999998391,-0.05858321331364715 +43360,216.7999999998391,-0.058581905144702406 +43361,216.80499999983908,-0.058580597370270736 +43362,216.80999999983908,-0.05857928999017588 +43363,216.81499999983907,-0.05857798300424166 +43364,216.81999999983907,-0.058576676412292 +43365,216.82499999983906,-0.05857537021415097 +43366,216.82999999983906,-0.058574064409642676 +43367,216.83499999983906,-0.0585727589985914 +43368,216.83999999983905,-0.058571453980821475 +43369,216.84499999983905,-0.058570149356157376 +43370,216.84999999983904,-0.05856884512442366 +43371,216.85499999983904,-0.05856754128544499 +43372,216.85999999983903,-0.05856623783904614 +43373,216.86499999983903,-0.05856493478505199 +43374,216.86999999983902,-0.0585636321232875 +43375,216.87499999983902,-0.05856232985357778 +43376,216.87999999983901,-0.05856102797574799 +43377,216.884999999839,-0.05855972648962343 +43378,216.889999999839,-0.058558425395029506 +43379,216.894999999839,-0.05855712469179169 +43380,216.899999999839,-0.058555824379735597 +43381,216.904999999839,-0.058554524458686925 +43382,216.909999999839,-0.058553224928471495 +43383,216.91499999983898,-0.05855192578891519 +43384,216.91999999983898,-0.05855062703984403 +43385,216.92499999983897,-0.05854932868108415 +43386,216.92999999983897,-0.05854803071246176 +43387,216.93499999983896,-0.05854673313380316 +43388,216.93999999983896,-0.0585454359449348 +43389,216.94499999983896,-0.05854413914568319 +43390,216.94999999983895,-0.058542842735874956 +43391,216.95499999983895,-0.05854154671533684 +43392,216.95999999983894,-0.05854025108389567 +43393,216.96499999983894,-0.05853895584137838 +43394,216.96999999983893,-0.05853766098761202 +43395,216.97499999983893,-0.05853636652242372 +43396,216.97999999983892,-0.058535072445640726 +43397,216.98499999983892,-0.05853377875709038 +43398,216.98999999983891,-0.058532485456600114 +43399,216.9949999998389,-0.058531192543997496 +43400,216.9999999998389,-0.05852990001911016 +43401,217.0049999998389,-0.05852860788176585 +43402,217.0099999998389,-0.05852731613179245 +43403,217.0149999998389,-0.05852602476901788 +43404,217.0199999998389,-0.058524733793270216 +43405,217.02499999983888,-0.0585234432043776 +43406,217.02999999983888,-0.058522153002168294 +43407,217.03499999983887,-0.058520863186470665 +43408,217.03999999983887,-0.05851957375711315 +43409,217.04499999983886,-0.05851828471392433 +43410,217.04999999983886,-0.05851699605673285 +43411,217.05499999983886,-0.058515707785367486 +43412,217.05999999983885,-0.05851441989965708 +43413,217.06499999983885,-0.058513132399430616 +43414,217.06999999983884,-0.05851184528451715 +43415,217.07499999983884,-0.058510558554745844 +43416,217.07999999983883,-0.058509272209945964 +43417,217.08499999983883,-0.05850798624994687 +43418,217.08999999983882,-0.05850670067457803 +43419,217.09499999983882,-0.05850541548366901 +43420,217.09999999983881,-0.05850413067704947 +43421,217.1049999998388,-0.058502846254549185 +43422,217.1099999998388,-0.05850156221599801 +43423,217.1149999998388,-0.0585002785612259 +43424,217.1199999998388,-0.05849899529006292 +43425,217.1249999998388,-0.058497712402339246 +43426,217.1299999998388,-0.05849642989788514 +43427,217.13499999983878,-0.058495147776530955 +43428,217.13999999983878,-0.05849386603810716 +43429,217.14499999983877,-0.0584925846824443 +43430,217.14999999983877,-0.058491303709373055 +43431,217.15499999983876,-0.058490023118724185 +43432,217.15999999983876,-0.058488742910328524 +43433,217.16499999983876,-0.058487463084017054 +43434,217.16999999983875,-0.058486183639620805 +43435,217.17499999983875,-0.05848490457697095 +43436,217.17999999983874,-0.05848362589589874 +43437,217.18499999983874,-0.05848234759623553 +43438,217.18999999983873,-0.058481069677812754 +43439,217.19499999983873,-0.058479792140461985 +43440,217.19999999983872,-0.05847851498401485 +43441,217.20499999983872,-0.058477238208303105 +43442,217.20999999983871,-0.05847596181315859 +43443,217.2149999998387,-0.05847468579841325 +43444,217.2199999998387,-0.058473410163899106 +43445,217.2249999998387,-0.05847213490944832 +43446,217.2299999998387,-0.05847086003489311 +43447,217.2349999998387,-0.05846958554006582 +43448,217.2399999998387,-0.058468311424798886 +43449,217.24499999983868,-0.05846703768892482 +43450,217.24999999983868,-0.058465764332276265 +43451,217.25499999983867,-0.058464491354685934 +43452,217.25999999983867,-0.058463218755986646 +43453,217.26499999983866,-0.058461946536011326 +43454,217.26999999983866,-0.058460674694593 +43455,217.27499999983866,-0.05845940323156477 +43456,217.27999999983865,-0.058458132146759836 +43457,217.28499999983865,-0.058456861440011526 +43458,217.28999999983864,-0.05845559111115323 +43459,217.29499999983864,-0.05845432116001844 +43460,217.29999999983863,-0.05845305158644078 +43461,217.30499999983863,-0.05845178239025393 +43462,217.30999999983862,-0.05845051357129167 +43463,217.31499999983862,-0.05844924512938791 +43464,217.31999999983861,-0.05844797706437662 +43465,217.3249999998386,-0.05844670937609187 +43466,217.3299999998386,-0.058445442064367865 +43467,217.3349999998386,-0.05844417512903887 +43468,217.3399999998386,-0.058442908569939236 +43469,217.3449999998386,-0.05844164238690344 +43470,217.3499999998386,-0.05844037657976606 +43471,217.35499999983858,-0.05843911114836172 +43472,217.35999999983858,-0.05843784609252519 +43473,217.36499999983857,-0.058436581412091314 +43474,217.36999999983857,-0.05843531710689504 +43475,217.37499999983856,-0.05843405317677142 +43476,217.37999999983856,-0.05843278962155557 +43477,217.38499999983856,-0.05843152644108274 +43478,217.38999999983855,-0.05843026363518824 +43479,217.39499999983855,-0.058429001203707503 +43480,217.39999999983854,-0.05842773914647603 +43481,217.40499999983854,-0.05842647746332945 +43482,217.40999999983853,-0.058425216154103454 +43483,217.41499999983853,-0.05842395521863387 +43484,217.41999999983852,-0.05842269465675656 +43485,217.42499999983852,-0.058421434468307554 +43486,217.42999999983851,-0.058420174653122915 +43487,217.4349999998385,-0.05841891521103882 +43488,217.4399999998385,-0.05841765614189156 +43489,217.4449999998385,-0.05841639744551749 +43490,217.4499999998385,-0.0584151391217531 +43491,217.4549999998385,-0.05841388117043494 +43492,217.4599999998385,-0.05841262359139964 +43493,217.46499999983848,-0.05841136638448397 +43494,217.46999999983848,-0.058410109549524775 +43495,217.47499999983847,-0.058408853086358986 +43496,217.47999999983847,-0.05840759699482364 +43497,217.48499999983846,-0.05840634127475583 +43498,217.48999999983846,-0.058405085925992806 +43499,217.49499999983846,-0.05840383094837188 +43500,217.49999999983845,-0.05840257634173044 +43501,217.50499999983845,-0.058401322105906005 +43502,217.50999999983844,-0.058400068240736146 +43503,217.51499999983844,-0.05839881474605856 +43504,217.51999999983843,-0.05839756162171104 +43505,217.52499999983843,-0.05839630886753143 +43506,217.52999999983842,-0.05839505648335772 +43507,217.53499999983842,-0.05839380446902797 +43508,217.53999999983841,-0.05839255282438032 +43509,217.5449999998384,-0.05839130154925302 +43510,217.5499999998384,-0.058390050643484404 +43511,217.5549999998384,-0.058388800106912914 +43512,217.5599999998384,-0.058387549939377066 +43513,217.5649999998384,-0.058386300140715476 +43514,217.5699999998384,-0.05838505071076686 +43515,217.57499999983838,-0.058383801649370015 +43516,217.57999999983838,-0.05838255295636384 +43517,217.58499999983837,-0.05838130463158731 +43518,217.58999999983837,-0.05838005667487953 +43519,217.59499999983836,-0.05837880908607964 +43520,217.59999999983836,-0.05837756186502693 +43521,217.60499999983836,-0.05837631501156075 +43522,217.60999999983835,-0.058375068525520546 +43523,217.61499999983835,-0.05837382240674586 +43524,217.61999999983834,-0.058372576655076315 +43525,217.62499999983834,-0.05837133127035165 +43526,217.62999999983833,-0.05837008625241167 +43527,217.63499999983833,-0.05836884160109628 +43528,217.63999999983832,-0.05836759731624548 +43529,217.64499999983832,-0.05836635339769937 +43530,217.64999999983831,-0.058365109845298135 +43531,217.6549999998383,-0.05836386665888203 +43532,217.6599999998383,-0.05836262383829144 +43533,217.6649999998383,-0.05836138138336682 +43534,217.6699999998383,-0.058360139293948704 +43535,217.6749999998383,-0.05835889756987774 +43536,217.6799999998383,-0.058357656210994646 +43537,217.68499999983828,-0.058356415217140266 +43538,217.68999999983828,-0.05835517458815549 +43539,217.69499999983827,-0.058353934323881335 +43540,217.69999999983827,-0.05835269442415887 +43541,217.70499999983826,-0.05835145488882931 +43542,217.70999999983826,-0.058350215717733904 +43543,217.71499999983826,-0.05834897691071403 +43544,217.71999999983825,-0.058347738467611154 +43545,217.72499999983825,-0.0583465003882668 +43546,217.72999999983824,-0.05834526267252262 +43547,217.73499999983824,-0.058344025320220344 +43548,217.73999999983823,-0.05834278833120176 +43549,217.74499999983823,-0.0583415517053088 +43550,217.74999999983822,-0.05834031544238346 +43551,217.75499999983822,-0.05833907954226783 +43552,217.75999999983821,-0.05833784400480407 +43553,217.7649999998382,-0.05833660882983446 +43554,217.7699999998382,-0.05833537401720135 +43555,217.7749999998382,-0.058334139566747184 +43556,217.7799999998382,-0.0583329054783145 +43557,217.7849999998382,-0.05833167175174593 +43558,217.7899999998382,-0.05833043838688418 +43559,217.79499999983818,-0.05832920538357206 +43560,217.79999999983818,-0.05832797274165246 +43561,217.80499999983817,-0.05832674046096837 +43562,217.80999999983817,-0.05832550854136285 +43563,217.81499999983816,-0.058324276982679085 +43564,217.81999999983816,-0.058323045784760295 +43565,217.82499999983816,-0.05832181494744984 +43566,217.82999999983815,-0.05832058447059113 +43567,217.83499999983815,-0.05831935435402769 +43568,217.83999999983814,-0.058318124597603146 +43569,217.84499999983814,-0.05831689520116116 +43570,217.84999999983813,-0.05831566616454553 +43571,217.85499999983813,-0.05831443748760013 +43572,217.85999999983812,-0.05831320917016892 +43573,217.86499999983812,-0.058311981212095944 +43574,217.86999999983811,-0.058310753613225345 +43575,217.8749999998381,-0.05830952637340134 +43576,217.8799999998381,-0.05830829949246824 +43577,217.8849999998381,-0.058307072970270456 +43578,217.8899999998381,-0.05830584680665247 +43579,217.8949999998381,-0.05830462100145887 +43580,217.8999999998381,-0.05830339555453431 +43581,217.90499999983808,-0.05830217046572355 +43582,217.90999999983808,-0.058300945734871434 +43583,217.91499999983807,-0.05829972136182289 +43584,217.91999999983807,-0.05829849734642292 +43585,217.92499999983806,-0.05829727368851664 +43586,217.92999999983806,-0.05829605038794925 +43587,217.93499999983806,-0.05829482744456602 +43588,217.93999999983805,-0.05829360485821232 +43589,217.94499999983805,-0.05829238262873359 +43590,217.94999999983804,-0.0582911607559754 +43591,217.95499999983804,-0.05828993923978335 +43592,217.95999999983803,-0.05828871808000318 +43593,217.96499999983803,-0.058287497276480665 +43594,217.96999999983802,-0.05828627682906172 +43595,217.97499999983802,-0.0582850567375923 +43596,217.97999999983801,-0.058283837001918484 +43597,217.984999999838,-0.05828261762188642 +43598,217.989999999838,-0.05828139859734233 +43599,217.994999999838,-0.05828017992813256 +43600,217.999999999838,-0.05827896161410351 +43601,218.004999999838,-0.058277743655101674 +43602,218.009999999838,-0.058276526050973644 +43603,218.01499999983798,-0.05827530880156607 +43604,218.01999999983798,-0.05827409190672573 +43605,218.02499999983797,-0.058272875366299444 +43606,218.02999999983797,-0.05827165918013417 +43607,218.03499999983796,-0.0582704433480769 +43608,218.03999999983796,-0.05826922786997473 +43609,218.04499999983796,-0.058268012745674856 +43610,218.04999999983795,-0.05826679797502455 +43611,218.05499999983795,-0.05826558355787117 +43612,218.05999999983794,-0.058264369494062156 +43613,218.06499999983794,-0.05826315578344504 +43614,218.06999999983793,-0.05826194242586745 +43615,218.07499999983793,-0.05826072942117706 +43616,218.07999999983792,-0.05825951676922168 +43617,218.08499999983792,-0.05825830446984915 +43618,218.08999999983791,-0.05825709252290746 +43619,218.0949999998379,-0.05825588092824464 +43620,218.0999999998379,-0.05825466968570882 +43621,218.1049999998379,-0.058253458795148205 +43622,218.1099999998379,-0.05825224825641111 +43623,218.1149999998379,-0.058251038069345895 +43624,218.1199999998379,-0.05824982823380104 +43625,218.12499999983788,-0.05824861874962509 +43626,218.12999999983788,-0.058247409616666704 +43627,218.13499999983787,-0.058246200834774574 +43628,218.13999999983787,-0.058244992403797526 +43629,218.14499999983786,-0.05824378432358445 +43630,218.14999999983786,-0.05824257659398431 +43631,218.15499999983786,-0.05824136921484619 +43632,218.15999999983785,-0.05824016218601922 +43633,218.16499999983785,-0.05823895550735263 +43634,218.16999999983784,-0.05823774917869572 +43635,218.17499999983784,-0.05823654319989791 +43636,218.17999999983783,-0.05823533757080868 +43637,218.18499999983783,-0.05823413229127759 +43638,218.18999999983782,-0.0582329273611543 +43639,218.19499999983782,-0.05823172278028852 +43640,218.19999999983781,-0.058230518548530084 +43641,218.2049999998378,-0.05822931466572891 +43642,218.2099999998378,-0.05822811113173496 +43643,218.2149999998378,-0.058226907946398315 +43644,218.2199999998378,-0.05822570510956912 +43645,218.2249999998378,-0.058224502621097615 +43646,218.2299999998378,-0.05822330048083413 +43647,218.23499999983778,-0.05822209868862906 +43648,218.23999999983778,-0.05822089724433289 +43649,218.24499999983777,-0.0582196961477962 +43650,218.24999999983777,-0.058218495398869634 +43651,218.25499999983776,-0.05821729499740394 +43652,218.25999999983776,-0.05821609494324993 +43653,218.26499999983776,-0.058214895236258515 +43654,218.26999999983775,-0.05821369587628067 +43655,218.27499999983775,-0.05821249686316748 +43656,218.27999999983774,-0.058211298196770074 +43657,218.28499999983774,-0.05821009987693971 +43658,218.28999999983773,-0.05820890190352769 +43659,218.29499999983773,-0.05820770427638543 +43660,218.29999999983772,-0.05820650699536441 +43661,218.30499999983772,-0.05820531006031618 +43662,218.30999999983771,-0.0582041134710924 +43663,218.3149999998377,-0.0582029172275448 +43664,218.3199999998377,-0.058201721329525204 +43665,218.3249999998377,-0.05820052577688548 +43666,218.3299999998377,-0.05819933056947764 +43667,218.3349999998377,-0.05819813570715371 +43668,218.3399999998377,-0.05819694118976585 +43669,218.34499999983768,-0.05819574701716628 +43670,218.34999999983768,-0.058194553189207326 +43671,218.35499999983767,-0.05819335970574135 +43672,218.35999999983767,-0.05819216656662083 +43673,218.36499999983766,-0.05819097377169831 +43674,218.36999999983766,-0.058189781320826445 +43675,218.37499999983766,-0.05818858921385792 +43676,218.37999999983765,-0.058187397450645564 +43677,218.38499999983765,-0.058186206031042235 +43678,218.38999999983764,-0.058185014954900895 +43679,218.39499999983764,-0.05818382422207459 +43680,218.39999999983763,-0.058182633832416446 +43681,218.40499999983763,-0.05818144378577966 +43682,218.40999999983762,-0.058180254082017525 +43683,218.41499999983762,-0.058179064720983394 +43684,218.41999999983761,-0.058177875702530725 +43685,218.4249999998376,-0.05817668702651305 +43686,218.4299999998376,-0.05817549869278396 +43687,218.4349999998376,-0.05817431070119717 +43688,218.4399999998376,-0.05817312305160644 +43689,218.4449999998376,-0.058171935743865616 +43690,218.4499999998376,-0.058170748777828636 +43691,218.45499999983758,-0.05816956215334952 +43692,218.45999999983758,-0.05816837587028235 +43693,218.46499999983757,-0.05816718992848131 +43694,218.46999999983757,-0.05816600432780065 +43695,218.47499999983756,-0.05816481906809472 +43696,218.47999999983756,-0.058163634149217915 +43697,218.48499999983756,-0.05816244957102475 +43698,218.48999999983755,-0.0581612653333698 +43699,218.49499999983755,-0.0581600814361077 +43700,218.49999999983754,-0.058158897879093216 +43701,218.50499999983754,-0.05815771466218115 +43702,218.50999999983753,-0.05815653178522641 +43703,218.51499999983753,-0.05815534924808395 +43704,218.51999999983752,-0.05815416705060885 +43705,218.52499999983752,-0.05815298519265625 +43706,218.52999999983751,-0.05815180367408135 +43707,218.5349999998375,-0.05815062249473945 +43708,218.5399999998375,-0.05814944165448593 +43709,218.5449999998375,-0.05814826115317625 +43710,218.5499999998375,-0.05814708099066594 +43711,218.5549999998375,-0.05814590116681062 +43712,218.5599999998375,-0.05814472168146597 +43713,218.56499999983748,-0.058143542534487766 +43714,218.56999999983748,-0.05814236372573187 +43715,218.57499999983747,-0.058141185255054226 +43716,218.57999999983747,-0.05814000712231082 +43717,218.58499999983746,-0.058138829327357755 +43718,218.58999999983746,-0.0581376518700512 +43719,218.59499999983746,-0.058136474750247406 +43720,218.59999999983745,-0.05813529796780269 +43721,218.60499999983745,-0.05813412152257347 +43722,218.60999999983744,-0.05813294541441623 +43723,218.61499999983744,-0.058131769643187524 +43724,218.61999999983743,-0.058130594208744 +43725,218.62499999983743,-0.05812941911094238 +43726,218.62999999983742,-0.05812824434963946 +43727,218.63499999983742,-0.058127069924692125 +43728,218.6399999998374,-0.05812589583595732 +43729,218.6449999998374,-0.0581247220832921 +43730,218.6499999998374,-0.05812354866655356 +43731,218.6549999998374,-0.05812237558559891 +43732,218.6599999998374,-0.058121202840285394 +43733,218.6649999998374,-0.058120030430470364 +43734,218.6699999998374,-0.05811885835601126 +43735,218.67499999983738,-0.058117686616765585 +43736,218.67999999983738,-0.05811651521259091 +43737,218.68499999983737,-0.05811534414334491 +43738,218.68999999983737,-0.05811417340888532 +43739,218.69499999983736,-0.058113003009069956 +43740,218.69999999983736,-0.0581118329437567 +43741,218.70499999983736,-0.05811066321280353 +43742,218.70999999983735,-0.058109493816068496 +43743,218.71499999983735,-0.05810832475340972 +43744,218.71999999983734,-0.058107156024685414 +43745,218.72499999983734,-0.058105987629753844 +43746,218.72999999983733,-0.05810481956847339 +43747,218.73499999983733,-0.05810365184070247 +43748,218.73999999983732,-0.05810248444629961 +43749,218.74499999983732,-0.0581013173851234 +43750,218.7499999998373,-0.05810015065703249 +43751,218.7549999998373,-0.05809898426188565 +43752,218.7599999998373,-0.05809781819954168 +43753,218.7649999998373,-0.05809665246985949 +43754,218.7699999998373,-0.058095487072698064 +43755,218.7749999998373,-0.058094322007916435 +43756,218.7799999998373,-0.058093157275373744 +43757,218.78499999983728,-0.058091992874929194 +43758,218.78999999983728,-0.05809082880644206 +43759,218.79499999983727,-0.05808966506977173 +43760,218.79999999983727,-0.05808850166477761 +43761,218.80499999983726,-0.058087338591319225 +43762,218.80999999983726,-0.05808617584925617 +43763,218.81499999983726,-0.05808501343844809 +43764,218.81999999983725,-0.05808385135875475 +43765,218.82499999983725,-0.058082689610035945 +43766,218.82999999983724,-0.058081528192151594 +43767,218.83499999983724,-0.05808036710496165 +43768,218.83999999983723,-0.05807920634832617 +43769,218.84499999983723,-0.058078045922105276 +43770,218.84999999983722,-0.05807688582615916 +43771,218.85499999983722,-0.0580757260603481 +43772,218.8599999998372,-0.058074566624532455 +43773,218.8649999998372,-0.05807340751857264 +43774,218.8699999998372,-0.05807224874232915 +43775,218.8749999998372,-0.05807109029566259 +43776,218.8799999998372,-0.05806993217843359 +43777,218.8849999998372,-0.058068774390502884 +43778,218.8899999998372,-0.05806761693173128 +43779,218.89499999983718,-0.058066459801979664 +43780,218.89999999983718,-0.05806530300110897 +43781,218.90499999983717,-0.05806414652898026 +43782,218.90999999983717,-0.058062990385454614 +43783,218.91499999983716,-0.05806183457039323 +43784,218.91999999983716,-0.05806067908365736 +43785,218.92499999983715,-0.05805952392510834 +43786,218.92999999983715,-0.05805836909460757 +43787,218.93499999983715,-0.058057214592016536 +43788,218.93999999983714,-0.05805606041719679 +43789,218.94499999983714,-0.05805490657000998 +43790,218.94999999983713,-0.058053753050317784 +43791,218.95499999983713,-0.058052599857982 +43792,218.95999999983712,-0.0580514469928645 +43793,218.96499999983712,-0.0580502944548272 +43794,218.9699999998371,-0.05804914224373211 +43795,218.9749999998371,-0.058047990359441304 +43796,218.9799999998371,-0.05804683880181695 +43797,218.9849999998371,-0.05804568757072126 +43798,218.9899999998371,-0.05804453666601654 +43799,218.9949999998371,-0.05804338608756518 +43800,218.9999999998371,-0.05804223583522963 +43801,219.00499999983708,-0.058041085908872435 +43802,219.00999999983708,-0.05803993630835616 +43803,219.01499999983707,-0.0580387870335435 +43804,219.01999999983707,-0.058037638084297204 +43805,219.02499999983706,-0.0580364894604801 +43806,219.02999999983706,-0.05803534116195508 +43807,219.03499999983705,-0.05803419318858511 +43808,219.03999999983705,-0.05803304554023323 +43809,219.04499999983705,-0.058031898216762585 +43810,219.04999999983704,-0.058030751218036344 +43811,219.05499999983704,-0.058029604543917784 +43812,219.05999999983703,-0.058028458194270244 +43813,219.06499999983703,-0.05802731216895714 +43814,219.06999999983702,-0.058026166467841964 +43815,219.07499999983702,-0.05802502109078826 +43816,219.079999999837,-0.058023876037659676 +43817,219.084999999837,-0.05802273130831992 +43818,219.089999999837,-0.05802158690263278 +43819,219.094999999837,-0.05802044282046209 +43820,219.099999999837,-0.0580192990616718 +43821,219.104999999837,-0.05801815562612589 +43822,219.109999999837,-0.058017012513688446 +43823,219.11499999983698,-0.05801586972422361 +43824,219.11999999983698,-0.058014727257595614 +43825,219.12499999983697,-0.05801358511366874 +43826,219.12999999983697,-0.058012443292307356 +43827,219.13499999983696,-0.058011301793375894 +43828,219.13999999983696,-0.05801016061673887 +43829,219.14499999983695,-0.05800901976226088 +43830,219.14999999983695,-0.05800787922980656 +43831,219.15499999983695,-0.05800673901924067 +43832,219.15999999983694,-0.058005599130427986 +43833,219.16499999983694,-0.058004459563233385 +43834,219.16999999983693,-0.058003320317521825 +43835,219.17499999983693,-0.058002181393158325 +43836,219.17999999983692,-0.05800104279000797 +43837,219.18499999983692,-0.05799990450793593 +43838,219.1899999998369,-0.05799876654680743 +43839,219.1949999998369,-0.05799762890648779 +43840,219.1999999998369,-0.0579964915868424 +43841,219.2049999998369,-0.057995354587736685 +43842,219.2099999998369,-0.057994217909036194 +43843,219.2149999998369,-0.05799308155060652 +43844,219.2199999998369,-0.05799194551231334 +43845,219.22499999983688,-0.05799080979402237 +43846,219.22999999983688,-0.05798967439559944 +43847,219.23499999983687,-0.057988539316910434 +43848,219.23999999983687,-0.05798740455782131 +43849,219.24499999983686,-0.05798627011819808 +43850,219.24999999983686,-0.05798513599790687 +43851,219.25499999983685,-0.05798400219681382 +43852,219.25999999983685,-0.057982868714785196 +43853,219.26499999983685,-0.057981735551687306 +43854,219.26999999983684,-0.05798060270738654 +43855,219.27499999983684,-0.05797947018174935 +43856,219.27999999983683,-0.05797833797464226 +43857,219.28499999983683,-0.05797720608593187 +43858,219.28999999983682,-0.05797607451548485 +43859,219.29499999983682,-0.05797494326316796 +43860,219.2999999998368,-0.057973812328848 +43861,219.3049999998368,-0.057972681712391845 +43862,219.3099999998368,-0.057971551413666465 +43863,219.3149999998368,-0.057970421432538874 +43864,219.3199999998368,-0.05796929176887618 +43865,219.3249999998368,-0.05796816242254554 +43866,219.3299999998368,-0.0579670333934142 +43867,219.33499999983678,-0.05796590468134946 +43868,219.33999999983678,-0.05796477628621871 +43869,219.34499999983677,-0.05796364820788939 +43870,219.34999999983677,-0.057962520446229036 +43871,219.35499999983676,-0.057961393001105234 +43872,219.35999999983676,-0.05796026587238563 +43873,219.36499999983675,-0.057959139059937985 +43874,219.36999999983675,-0.057958012563630076 +43875,219.37499999983675,-0.05795688638332979 +43876,219.37999999983674,-0.05795576051890507 +43877,219.38499999983674,-0.05795463497022392 +43878,219.38999999983673,-0.057953509737154435 +43879,219.39499999983673,-0.05795238481956477 +43880,219.39999999983672,-0.05795126021732314 +43881,219.40499999983672,-0.05795013593029783 +43882,219.4099999998367,-0.057949011958357236 +43883,219.4149999998367,-0.05794788830136976 +43884,219.4199999998367,-0.05794676495920392 +43885,219.4249999998367,-0.05794564193172829 +43886,219.4299999998367,-0.05794451921881151 +43887,219.4349999998367,-0.05794339682032229 +43888,219.4399999998367,-0.05794227473612942 +43889,219.44499999983668,-0.05794115296610176 +43890,219.44999999983668,-0.0579400315101082 +43891,219.45499999983667,-0.05793891036801776 +43892,219.45999999983667,-0.0579377895396995 +43893,219.46499999983666,-0.05793666902502254 +43894,219.46999999983666,-0.057935548823856084 +43895,219.47499999983665,-0.0579344289360694 +43896,219.47999999983665,-0.057933309361531814 +43897,219.48499999983665,-0.05793219010011275 +43898,219.48999999983664,-0.05793107115168168 +43899,219.49499999983664,-0.05792995251610815 +43900,219.49999999983663,-0.057928834193261766 +43901,219.50499999983663,-0.05792771618301222 +43902,219.50999999983662,-0.057926598485229276 +43903,219.51499999983662,-0.057925481099782745 +43904,219.5199999998366,-0.05792436402654251 +43905,219.5249999998366,-0.05792324726537852 +43906,219.5299999998366,-0.05792213081616083 +43907,219.5349999998366,-0.05792101467875952 +43908,219.5399999998366,-0.05791989885304476 +43909,219.5449999998366,-0.05791878333888678 +43910,219.5499999998366,-0.0579176681361559 +43911,219.55499999983658,-0.05791655324472247 +43912,219.55999999983658,-0.05791543866445693 +43913,219.56499999983657,-0.057914324395229796 +43914,219.56999999983657,-0.05791321043691164 +43915,219.57499999983656,-0.05791209678937311 +43916,219.57999999983656,-0.05791098345248492 +43917,219.58499999983655,-0.05790987042611784 +43918,219.58999999983655,-0.05790875771014273 +43919,219.59499999983655,-0.05790764530443049 +43920,219.59999999983654,-0.057906533208852126 +43921,219.60499999983654,-0.05790542142327868 +43922,219.60999999983653,-0.057904309947581285 +43923,219.61499999983653,-0.05790319878163112 +43924,219.61999999983652,-0.05790208792529944 +43925,219.62499999983652,-0.05790097737845757 +43926,219.6299999998365,-0.05789986714097691 +43927,219.6349999998365,-0.05789875721272891 +43928,219.6399999998365,-0.05789764759358511 +43929,219.6449999998365,-0.057896538283417086 +43930,219.6499999998365,-0.05789542928209652 +43931,219.6549999998365,-0.057894320589495125 +43932,219.6599999998365,-0.05789321220548472 +43933,219.66499999983648,-0.05789210412993715 +43934,219.66999999983648,-0.057890996362724365 +43935,219.67499999983647,-0.057889888903718344 +43936,219.67999999983647,-0.05788878175279118 +43937,219.68499999983646,-0.05788767490981498 +43938,219.68999999983646,-0.05788656837466196 +43939,219.69499999983645,-0.05788546214720439 +43940,219.69999999983645,-0.057884356227314616 +43941,219.70499999983645,-0.057883250614865024 +43942,219.70999999983644,-0.05788214530972807 +43943,219.71499999983644,-0.057881040311776336 +43944,219.71999999983643,-0.05787993562088238 +43945,219.72499999983643,-0.0578788312369189 +43946,219.72999999983642,-0.05787772715975862 +43947,219.73499999983642,-0.05787662338927436 +43948,219.7399999998364,-0.057875519925338965 +43949,219.7449999998364,-0.0578744167678254 +43950,219.7499999998364,-0.05787331391660665 +43951,219.7549999998364,-0.05787221137155579 +43952,219.7599999998364,-0.05787110913254596 +43953,219.7649999998364,-0.05787000719945036 +43954,219.7699999998364,-0.057868905572142255 +43955,219.77499999983638,-0.057867804250495 +43956,219.77999999983638,-0.05786670323438197 +43957,219.78499999983637,-0.05786560252367666 +43958,219.78999999983637,-0.057864502118252586 +43959,219.79499999983636,-0.05786340201798336 +43960,219.79999999983636,-0.05786230222274264 +43961,219.80499999983635,-0.057861202732404166 +43962,219.80999999983635,-0.05786010354684174 +43963,219.81499999983635,-0.057859004665929234 +43964,219.81999999983634,-0.05785790608954056 +43965,219.82499999983634,-0.057856807817549726 +43966,219.82999999983633,-0.05785570984983079 +43967,219.83499999983633,-0.057854612186257884 +43968,219.83999999983632,-0.05785351482670519 +43969,219.84499999983632,-0.057852417771047 +43970,219.8499999998363,-0.05785132101915761 +43971,219.8549999998363,-0.05785022457091142 +43972,219.8599999998363,-0.05784912842618289 +43973,219.8649999998363,-0.05784803258484654 +43974,219.8699999998363,-0.05784693704677696 +43975,219.8749999998363,-0.0578458418118488 +43976,219.8799999998363,-0.05784474687993678 +43977,219.88499999983628,-0.05784365225091568 +43978,219.88999999983628,-0.05784255792466036 +43979,219.89499999983627,-0.05784146390104571 +43980,219.89999999983627,-0.05784037017994675 +43981,219.90499999983626,-0.0578392767612385 +43982,219.90999999983626,-0.057838183644796065 +43983,219.91499999983625,-0.05783709083049462 +43984,219.91999999983625,-0.057835998318209424 +43985,219.92499999983625,-0.057834906107815755 +43986,219.92999999983624,-0.05783381419918901 +43987,219.93499999983624,-0.05783272259220461 +43988,219.93999999983623,-0.057831631286738044 +43989,219.94499999983623,-0.0578305402826649 +43990,219.94999999983622,-0.05782944957986078 +43991,219.95499999983622,-0.057828359178201394 +43992,219.9599999998362,-0.057827269077562506 +43993,219.9649999998362,-0.05782617927781992 +43994,219.9699999998362,-0.05782508977884953 +43995,219.9749999998362,-0.0578240005805273 +43996,219.9799999998362,-0.05782291168272923 +43997,219.9849999998362,-0.05782182308533142 +43998,219.9899999998362,-0.05782073478820999 +43999,219.99499999983618,-0.05781964679124117 +44000,219.99999999983618,-0.057818559094301225 +44001,220.00499999983617,-0.05781747169726648 +44002,220.00999999983617,-0.057816384600013364 +44003,220.01499999983616,-0.057815297802418314 +44004,220.01999999983616,-0.05781421130435788 +44005,220.02499999983615,-0.05781312510570865 +44006,220.02999999983615,-0.05781203920634728 +44007,220.03499999983615,-0.05781095360615049 +44008,220.03999999983614,-0.05780986830499508 +44009,220.04499999983614,-0.05780878330275788 +44010,220.04999999983613,-0.05780769859931582 +44011,220.05499999983613,-0.05780661419454586 +44012,220.05999999983612,-0.057805530088325056 +44013,220.06499999983612,-0.0578044462805305 +44014,220.0699999998361,-0.057803362771039375 +44015,220.0749999998361,-0.0578022795597289 +44016,220.0799999998361,-0.057801196646476385 +44017,220.0849999998361,-0.05780011403115917 +44018,220.0899999998361,-0.057799031713654685 +44019,220.0949999998361,-0.05779794969384041 +44020,220.0999999998361,-0.0577968679715939 +44021,220.10499999983608,-0.05779578654679277 +44022,220.10999999983608,-0.057794705419314696 +44023,220.11499999983607,-0.05779362458903741 +44024,220.11999999983607,-0.05779254405583872 +44025,220.12499999983606,-0.05779146381959649 +44026,220.12999999983606,-0.057790383880188645 +44027,220.13499999983605,-0.05778930423749317 +44028,220.13999999983605,-0.05778822489138813 +44029,220.14499999983605,-0.057787145841751625 +44030,220.14999999983604,-0.057786067088461866 +44031,220.15499999983604,-0.05778498863139707 +44032,220.15999999983603,-0.057783910470435546 +44033,220.16499999983603,-0.05778283260545567 +44034,220.16999999983602,-0.05778175503633587 +44035,220.17499999983602,-0.057780677762954626 +44036,220.179999999836,-0.05777960078519051 +44037,220.184999999836,-0.05777852410292215 +44038,220.189999999836,-0.057777447716028205 +44039,220.194999999836,-0.05777637162438744 +44040,220.199999999836,-0.05777529582787864 +44041,220.204999999836,-0.05777422032638069 +44042,220.209999999836,-0.05777314511977251 +44043,220.21499999983598,-0.057772070207933096 +44044,220.21999999983598,-0.05777099559074151 +44045,220.22499999983597,-0.05776992126807686 +44046,220.22999999983597,-0.05776884723981833 +44047,220.23499999983596,-0.05776777350584517 +44048,220.23999999983596,-0.05776670006603668 +44049,220.24499999983595,-0.05776562692027223 +44050,220.24999999983595,-0.05776455406843124 +44051,220.25499999983595,-0.05776348151039319 +44052,220.25999999983594,-0.05776240924603766 +44053,220.26499999983594,-0.05776133727524425 +44054,220.26999999983593,-0.05776026559789263 +44055,220.27499999983593,-0.057759194213862546 +44056,220.27999999983592,-0.0577581231230338 +44057,220.28499999983592,-0.05775705232528625 +44058,220.2899999998359,-0.057755981820499826 +44059,220.2949999998359,-0.0577549116085545 +44060,220.2999999998359,-0.057753841689330315 +44061,220.3049999998359,-0.057752772062707396 +44062,220.3099999998359,-0.057751702728565904 +44063,220.3149999998359,-0.05775063368678606 +44064,220.3199999998359,-0.05774956493724817 +44065,220.32499999983588,-0.05774849647983258 +44066,220.32999999983588,-0.05774742831441971 +44067,220.33499999983587,-0.05774636044089003 +44068,220.33999999983587,-0.057745292859124095 +44069,220.34499999983586,-0.05774422556900248 +44070,220.34999999983586,-0.05774315857040586 +44071,220.35499999983585,-0.05774209186321494 +44072,220.35999999983585,-0.05774102544731052 +44073,220.36499999983585,-0.05773995932257343 +44074,220.36999999983584,-0.05773889348888457 +44075,220.37499999983584,-0.05773782794612493 +44076,220.37999999983583,-0.0577367626941755 +44077,220.38499999983583,-0.05773569773291739 +44078,220.38999999983582,-0.057734633062231755 +44079,220.39499999983582,-0.057733568681999775 +44080,220.3999999998358,-0.057732504592102746 +44081,220.4049999998358,-0.05773144079242198 +44082,220.4099999998358,-0.05773037728283888 +44083,220.4149999998358,-0.05772931406323488 +44084,220.4199999998358,-0.0577282511334915 +44085,220.4249999998358,-0.05772718849349032 +44086,220.4299999998358,-0.05772612614311295 +44087,220.43499999983578,-0.0577250640822411 +44088,220.43999999983578,-0.057724002310756535 +44089,220.44499999983577,-0.05772294082854104 +44090,220.44999999983577,-0.057721879635476515 +44091,220.45499999983576,-0.05772081873144486 +44092,220.45999999983576,-0.05771975811632811 +44093,220.46499999983575,-0.057718697790008294 +44094,220.46999999983575,-0.057717637752367525 +44095,220.47499999983575,-0.05771657800328799 +44096,220.47999999983574,-0.057715518542651924 +44097,220.48499999983574,-0.0577144593703416 +44098,220.48999999983573,-0.057713400486239394 +44099,220.49499999983573,-0.05771234189022772 +44100,220.49999999983572,-0.05771128358218904 +44101,220.50499999983572,-0.057710225562005904 +44102,220.5099999998357,-0.057709167829560884 +44103,220.5149999998357,-0.05770811038473666 +44104,220.5199999998357,-0.057707053227415914 +44105,220.5249999998357,-0.05770599635748144 +44106,220.5299999998357,-0.05770493977481607 +44107,220.5349999998357,-0.05770388347930269 +44108,220.5399999998357,-0.05770282747082426 +44109,220.54499999983568,-0.05770177174926379 +44110,220.54999999983568,-0.05770071631450435 +44111,220.55499999983567,-0.05769966116642907 +44112,220.55999999983567,-0.05769860630492113 +44113,220.56499999983566,-0.057697551729863794 +44114,220.56999999983566,-0.05769649744114035 +44115,220.57499999983565,-0.05769544343863419 +44116,220.57999999983565,-0.05769438972222872 +44117,220.58499999983565,-0.057693336291807444 +44118,220.58999999983564,-0.05769228314725389 +44119,220.59499999983564,-0.05769123028845166 +44120,220.59999999983563,-0.05769017771528444 +44121,220.60499999983563,-0.05768912542763593 +44122,220.60999999983562,-0.05768807342538993 +44123,220.61499999983562,-0.057687021708430264 +44124,220.6199999998356,-0.057685970276640845 +44125,220.6249999998356,-0.05768491912990562 +44126,220.6299999998356,-0.05768386826810861 +44127,220.6349999998356,-0.05768281769113389 +44128,220.6399999998356,-0.05768176739886559 +44129,220.6449999998356,-0.0576807173911879 +44130,220.6499999998356,-0.057679667667985074 +44131,220.65499999983558,-0.057678618229141436 +44132,220.65999999983558,-0.057677569074541336 +44133,220.66499999983557,-0.05767652020406922 +44134,220.66999999983557,-0.05767547161760956 +44135,220.67499999983556,-0.057674423315046894 +44136,220.67999999983556,-0.05767337529626583 +44137,220.68499999983555,-0.05767232756115104 +44138,220.68999999983555,-0.057671280109587233 +44139,220.69499999983555,-0.057670232941459176 +44140,220.69999999983554,-0.05766918605665173 +44141,220.70499999983554,-0.05766813945504977 +44142,220.70999999983553,-0.057667093136538256 +44143,220.71499999983553,-0.05766604710100219 +44144,220.71999999983552,-0.05766500134832665 +44145,220.72499999983552,-0.05766395587839676 +44146,220.7299999998355,-0.05766291069109769 +44147,220.7349999998355,-0.05766186578631471 +44148,220.7399999998355,-0.0576608211639331 +44149,220.7449999998355,-0.057659776823838216 +44150,220.7499999998355,-0.057658732765915474 +44151,220.7549999998355,-0.05765768899005036 +44152,220.7599999998355,-0.057656645496128395 +44153,220.76499999983548,-0.05765560228403517 +44154,220.76999999983548,-0.05765455935365634 +44155,220.77499999983547,-0.0576535167048776 +44156,220.77999999983547,-0.05765247433758472 +44157,220.78499999983546,-0.05765143225166351 +44158,220.78999999983546,-0.05765039044699985 +44159,220.79499999983545,-0.057649348923479664 +44160,220.79999999983545,-0.05764830768098896 +44161,220.80499999983545,-0.057647266719413795 +44162,220.80999999983544,-0.05764622603864025 +44163,220.81499999983544,-0.05764518563855451 +44164,220.81999999983543,-0.05764414551904278 +44165,220.82499999983543,-0.057643105679991355 +44166,220.82999999983542,-0.05764206612128655 +44167,220.83499999983542,-0.05764102684281477 +44168,220.8399999998354,-0.05763998784446247 +44169,220.8449999998354,-0.05763894912611616 +44170,220.8499999998354,-0.057637910687662386 +44171,220.8549999998354,-0.05763687252898778 +44172,220.8599999998354,-0.05763583464997903 +44173,220.8649999998354,-0.05763479705052285 +44174,220.8699999998354,-0.057633759730506044 +44175,220.87499999983538,-0.057632722689815466 +44176,220.87999999983538,-0.05763168592833802 +44177,220.88499999983537,-0.05763064944596064 +44178,220.88999999983537,-0.05762961324257039 +44179,220.89499999983536,-0.05762857731805431 +44180,220.89999999983536,-0.05762754167229956 +44181,220.90499999983535,-0.0576265063051933 +44182,220.90999999983535,-0.0576254712166228 +44183,220.91499999983535,-0.057624436406475354 +44184,220.91999999983534,-0.05762340187463832 +44185,220.92499999983534,-0.057622367620999114 +44186,220.92999999983533,-0.05762133364544521 +44187,220.93499999983533,-0.05762029994786413 +44188,220.93999999983532,-0.057619266528143455 +44189,220.94499999983532,-0.05761823338617083 +44190,220.9499999998353,-0.05761720052183395 +44191,220.9549999998353,-0.05761616793502057 +44192,220.9599999998353,-0.057615135625618506 +44193,220.9649999998353,-0.057614103593515625 +44194,220.9699999998353,-0.05761307183859984 +44195,220.9749999998353,-0.05761204036075913 +44196,220.9799999998353,-0.05761100915988152 +44197,220.98499999983528,-0.05760997823585511 +44198,220.98999999983528,-0.05760894758856804 +44199,220.99499999983527,-0.057607917217908526 +44200,220.99999999983527,-0.05760688712376479 +44201,221.00499999983526,-0.05760585730602519 +44202,221.00999999983526,-0.057604827764578065 +44203,221.01499999983525,-0.057603798499311853 +44204,221.01999999983525,-0.057602769510115025 +44205,221.02499999983525,-0.05760174079687613 +44206,221.02999999983524,-0.057600712359483754 +44207,221.03499999983524,-0.05759968419782654 +44208,221.03999999983523,-0.05759865631179318 +44209,221.04499999983523,-0.057597628701272455 +44210,221.04999999983522,-0.05759660136615318 +44211,221.05499999983522,-0.05759557430632421 +44212,221.0599999998352,-0.05759454752167447 +44213,221.0649999998352,-0.05759352101209295 +44214,221.0699999998352,-0.05759249477746869 +44215,221.0749999998352,-0.057591468817690755 +44216,221.0799999998352,-0.05759044313264832 +44217,221.0849999998352,-0.057589417722230564 +44218,221.0899999998352,-0.05758839258632676 +44219,221.09499999983518,-0.05758736772482623 +44220,221.09999999983518,-0.057586343137618304 +44221,221.10499999983517,-0.05758531882459243 +44222,221.10999999983517,-0.0575842947856381 +44223,221.11499999983516,-0.057583271020644804 +44224,221.11999999983516,-0.057582247529502154 +44225,221.12499999983515,-0.057581224312099805 +44226,221.12999999983515,-0.057580201368327436 +44227,221.13499999983514,-0.0575791786980748 +44228,221.13999999983514,-0.057578156301231705 +44229,221.14499999983514,-0.05757713417768801 +44230,221.14999999983513,-0.05757611232733363 +44231,221.15499999983513,-0.05757509075005855 +44232,221.15999999983512,-0.05757406944575279 +44233,221.16499999983512,-0.05757304841430642 +44234,221.1699999998351,-0.05757202765560958 +44235,221.1749999998351,-0.05757100716955246 +44236,221.1799999998351,-0.057569986956025304 +44237,221.1849999998351,-0.05756896701491841 +44238,221.1899999998351,-0.05756794734612214 +44239,221.1949999998351,-0.057566927949526885 +44240,221.1999999998351,-0.05756590882502312 +44241,221.20499999983508,-0.05756488997250135 +44242,221.20999999983508,-0.05756387139185215 +44243,221.21499999983507,-0.057562853082966145 +44244,221.21999999983507,-0.05756183504573401 +44245,221.22499999983506,-0.05756081728004649 +44246,221.22999999983506,-0.05755979978579437 +44247,221.23499999983505,-0.05755878256286849 +44248,221.23999999983505,-0.057557765611159724 +44249,221.24499999983504,-0.05755674893055905 +44250,221.24999999983504,-0.05755573252095746 +44251,221.25499999983504,-0.05755471638224601 +44252,221.25999999983503,-0.057553700514315825 +44253,221.26499999983503,-0.05755268491705805 +44254,221.26999999983502,-0.0575516695903639 +44255,221.27499999983502,-0.057550654534124675 +44256,221.279999999835,-0.057549639748231685 +44257,221.284999999835,-0.05754862523257631 +44258,221.289999999835,-0.057547610987049996 +44259,221.294999999835,-0.05754659701154421 +44260,221.299999999835,-0.057545583305950505 +44261,221.304999999835,-0.057544569870160475 +44262,221.309999999835,-0.05754355670406578 +44263,221.31499999983498,-0.057542543807558105 +44264,221.31999999983498,-0.05754153118052922 +44265,221.32499999983497,-0.05754051882287092 +44266,221.32999999983497,-0.05753950673447508 +44267,221.33499999983496,-0.057538494915233614 +44268,221.33999999983496,-0.057537483365038486 +44269,221.34499999983495,-0.057536472083781716 +44270,221.34999999983495,-0.057535461071355404 +44271,221.35499999983494,-0.05753445032765164 +44272,221.35999999983494,-0.05753343985256264 +44273,221.36499999983494,-0.057532429645980626 +44274,221.36999999983493,-0.0575314197077979 +44275,221.37499999983493,-0.05753041003790678 +44276,221.37999999983492,-0.05752940063619967 +44277,221.38499999983492,-0.057528391502569026 +44278,221.3899999998349,-0.057527382636907334 +44279,221.3949999998349,-0.05752637403910717 +44280,221.3999999998349,-0.057525365709061124 +44281,221.4049999998349,-0.057524357646661854 +44282,221.4099999998349,-0.057523349851802096 +44283,221.4149999998349,-0.057522342324374594 +44284,221.41999999983489,-0.057521335064272164 +44285,221.42499999983488,-0.0575203280713877 +44286,221.42999999983488,-0.057519321345614105 +44287,221.43499999983487,-0.05751831488684437 +44288,221.43999999983487,-0.05751730869497151 +44289,221.44499999983486,-0.057516302769888596 +44290,221.44999999983486,-0.05751529711148879 +44291,221.45499999983485,-0.05751429171966527 +44292,221.45999999983485,-0.05751328659431127 +44293,221.46499999983484,-0.05751228173532009 +44294,221.46999999983484,-0.05751127714258506 +44295,221.47499999983484,-0.05751027281599959 +44296,221.47999999983483,-0.05750926875545713 +44297,221.48499999983483,-0.05750826496085118 +44298,221.48999999983482,-0.05750726143207528 +44299,221.49499999983482,-0.05750625816902306 +44300,221.4999999998348,-0.057505255171588145 +44301,221.5049999998348,-0.05750425243966427 +44302,221.5099999998348,-0.05750324997314519 +44303,221.5149999998348,-0.05750224777192473 +44304,221.5199999998348,-0.05750124583589674 +44305,221.5249999998348,-0.05750024416495515 +44306,221.52999999983479,-0.05749924275899393 +44307,221.53499999983478,-0.0574982416179071 +44308,221.53999999983478,-0.057497240741588726 +44309,221.54499999983477,-0.05749624012993294 +44310,221.54999999983477,-0.05749523978283393 +44311,221.55499999983476,-0.05749423970018593 +44312,221.55999999983476,-0.0574932398818832 +44313,221.56499999983475,-0.057492240327820084 +44314,221.56999999983475,-0.057491241037890974 +44315,221.57499999983474,-0.05749024201199031 +44316,221.57999999983474,-0.05748924325001256 +44317,221.58499999983474,-0.0574882447518523 +44318,221.58999999983473,-0.05748724651740408 +44319,221.59499999983473,-0.05748624854656256 +44320,221.59999999983472,-0.05748525083922246 +44321,221.60499999983472,-0.0574842533952785 +44322,221.6099999998347,-0.05748325621462549 +44323,221.6149999998347,-0.05748225929715825 +44324,221.6199999998347,-0.05748126264277172 +44325,221.6249999998347,-0.057480266251360844 +44326,221.6299999998347,-0.05747927012282061 +44327,221.6349999998347,-0.05747827425704608 +44328,221.63999999983469,-0.05747727865393237 +44329,221.64499999983468,-0.05747628331337462 +44330,221.64999999983468,-0.057475288235268054 +44331,221.65499999983467,-0.05747429341950793 +44332,221.65999999983467,-0.05747329886598955 +44333,221.66499999983466,-0.057472304574608286 +44334,221.66999999983466,-0.057471310545259544 +44335,221.67499999983465,-0.057470316777838794 +44336,221.67999999983465,-0.05746932327224154 +44337,221.68499999983464,-0.05746833002836336 +44338,221.68999999983464,-0.05746733704609986 +44339,221.69499999983464,-0.057466344325346724 +44340,221.69999999983463,-0.057465351865999666 +44341,221.70499999983463,-0.05746435966795444 +44342,221.70999999983462,-0.057463367731106885 +44343,221.71499999983462,-0.057462376055352864 +44344,221.7199999998346,-0.057461384640588295 +44345,221.7249999998346,-0.05746039348670915 +44346,221.7299999998346,-0.05745940259361146 +44347,221.7349999998346,-0.05745841196119129 +44348,221.7399999998346,-0.057457421589344776 +44349,221.7449999998346,-0.057456431477968084 +44350,221.74999999983459,-0.05745544162695744 +44351,221.75499999983458,-0.05745445203620912 +44352,221.75999999983458,-0.05745346270561944 +44353,221.76499999983457,-0.0574524736350848 +44354,221.76999999983457,-0.05745148482450161 +44355,221.77499999983456,-0.05745049627376635 +44356,221.77999999983456,-0.057449507982775545 +44357,221.78499999983455,-0.05744851995142578 +44358,221.78999999983455,-0.057447532179613674 +44359,221.79499999983454,-0.057446544667235915 +44360,221.79999999983454,-0.057445557414189226 +44361,221.80499999983454,-0.057444570420370385 +44362,221.80999999983453,-0.05744358368567623 +44363,221.81499999983453,-0.05744259721000363 +44364,221.81999999983452,-0.057441610993249514 +44365,221.82499999983452,-0.05744062503531086 +44366,221.8299999998345,-0.05743963933608471 +44367,221.8349999998345,-0.057438653895468136 +44368,221.8399999998345,-0.057437668713358266 +44369,221.8449999998345,-0.05743668378965226 +44370,221.8499999998345,-0.057435699124247376 +44371,221.8549999998345,-0.057434714717040876 +44372,221.85999999983449,-0.05743373056793009 +44373,221.86499999983448,-0.057432746676812384 +44374,221.86999999983448,-0.05743176304358521 +44375,221.87499999983447,-0.05743077966814603 +44376,221.87999999983447,-0.05742979655039237 +44377,221.88499999983446,-0.05742881369022182 +44378,221.88999999983446,-0.05742783108753199 +44379,221.89499999983445,-0.05742684874222056 +44380,221.89999999983445,-0.05742586665418526 +44381,221.90499999983444,-0.05742488482332385 +44382,221.90999999983444,-0.057423903249534176 +44383,221.91499999983444,-0.0574229219327141 +44384,221.91999999983443,-0.057421940872761555 +44385,221.92499999983443,-0.05742096006957449 +44386,221.92999999983442,-0.05741997952305094 +44387,221.93499999983442,-0.057418999233088984 +44388,221.9399999998344,-0.05741801919958672 +44389,221.9449999998344,-0.05741703942244234 +44390,221.9499999998344,-0.05741605990155405 +44391,221.9549999998344,-0.057415080636820125 +44392,221.9599999998344,-0.05741410162813887 +44393,221.9649999998344,-0.057413122875408645 +44394,221.96999999983439,-0.0574121443785279 +44395,221.97499999983438,-0.05741116613739506 +44396,221.97999999983438,-0.05741018815190866 +44397,221.98499999983437,-0.05740921042196725 +44398,221.98999999983437,-0.05740823294746945 +44399,221.99499999983436,-0.05740725572831391 +44400,221.99999999983436,-0.05740627876439936 +44401,222.00499999983435,-0.05740530205562453 +44402,222.00999999983435,-0.05740432560188825 +44403,222.01499999983434,-0.05740334940308935 +44404,222.01999999983434,-0.05740237345912675 +44405,222.02499999983434,-0.057401397769899394 +44406,222.02999999983433,-0.05740042233530629 +44407,222.03499999983433,-0.05739944715524648 +44408,222.03999999983432,-0.05739847222961907 +44409,222.04499999983432,-0.05739749755832321 +44410,222.0499999998343,-0.057396523141258086 +44411,222.0549999998343,-0.057395548978322934 +44412,222.0599999998343,-0.05739457506941707 +44413,222.0649999998343,-0.05739360141443982 +44414,222.0699999998343,-0.057392628013290564 +44415,222.0749999998343,-0.05739165486586876 +44416,222.07999999983429,-0.05739068197207388 +44417,222.08499999983428,-0.05738970933180546 +44418,222.08999999983428,-0.057388736944963104 +44419,222.09499999983427,-0.057387764811446404 +44420,222.09999999983427,-0.057386792931155076 +44421,222.10499999983426,-0.057385821303988824 +44422,222.10999999983426,-0.05738484992984742 +44423,222.11499999983425,-0.057383878808630696 +44424,222.11999999983425,-0.05738290794023854 +44425,222.12499999983424,-0.05738193732457084 +44426,222.12999999983424,-0.05738096696152759 +44427,222.13499999983424,-0.0573799968510088 +44428,222.13999999983423,-0.05737902699291452 +44429,222.14499999983423,-0.05737805738714488 +44430,222.14999999983422,-0.05737708803360002 +44431,222.15499999983422,-0.05737611893218016 +44432,222.1599999998342,-0.057375150082785556 +44433,222.1649999998342,-0.0573741814853165 +44434,222.1699999998342,-0.057373213139673356 +44435,222.1749999998342,-0.05737224504575652 +44436,222.1799999998342,-0.057371277203466436 +44437,222.1849999998342,-0.0573703096127036 +44438,222.18999999983419,-0.05736934227336855 +44439,222.19499999983418,-0.05736837518536187 +44440,222.19999999983418,-0.057367408348584205 +44441,222.20499999983417,-0.057366441762936246 +44442,222.20999999983417,-0.05736547542831872 +44443,222.21499999983416,-0.0573645093446324 +44444,222.21999999983416,-0.05736354351177811 +44445,222.22499999983415,-0.05736257792965674 +44446,222.22999999983415,-0.0573616125981692 +44447,222.23499999983414,-0.057360647517216465 +44448,222.23999999983414,-0.05735968268669955 +44449,222.24499999983414,-0.057358718106519505 +44450,222.24999999983413,-0.057357753776577466 +44451,222.25499999983413,-0.057356789696774574 +44452,222.25999999983412,-0.057355825867012045 +44453,222.26499999983412,-0.057354862287191125 +44454,222.2699999998341,-0.05735389895721312 +44455,222.2749999998341,-0.05735293587697936 +44456,222.2799999998341,-0.05735197304639125 +44457,222.2849999998341,-0.057351010465350245 +44458,222.2899999998341,-0.057350048133757825 +44459,222.2949999998341,-0.057349086051515515 +44460,222.29999999983409,-0.0573481242185249 +44461,222.30499999983408,-0.05734716263468762 +44462,222.30999999983408,-0.05734620129990535 +44463,222.31499999983407,-0.057345240214079794 +44464,222.31999999983407,-0.05734427937711274 +44465,222.32499999983406,-0.05734331878890601 +44466,222.32999999983406,-0.057342358449361454 +44467,222.33499999983405,-0.057341398358380986 +44468,222.33999999983405,-0.057340438515866565 +44469,222.34499999983404,-0.0573394789217202 +44470,222.34999999983404,-0.05733851957584393 +44471,222.35499999983404,-0.057337560478139864 +44472,222.35999999983403,-0.05733660162851014 +44473,222.36499999983403,-0.057335643026856946 +44474,222.36999999983402,-0.05733468467308251 +44475,222.37499999983402,-0.057333726567089134 +44476,222.379999999834,-0.05733276870877913 +44477,222.384999999834,-0.05733181109805489 +44478,222.389999999834,-0.05733085373481883 +44479,222.394999999834,-0.05732989661897342 +44480,222.399999999834,-0.05732893975042117 +44481,222.404999999834,-0.05732798312906465 +44482,222.40999999983399,-0.05732702675480647 +44483,222.41499999983398,-0.05732607062754928 +44484,222.41999999983398,-0.05732511474719579 +44485,222.42499999983397,-0.05732415911364872 +44486,222.42999999983397,-0.05732320372681089 +44487,222.43499999983396,-0.057322248586585134 +44488,222.43999999983396,-0.05732129369287434 +44489,222.44499999983395,-0.05732033904558142 +44490,222.44999999983395,-0.057319384644609374 +44491,222.45499999983394,-0.05731843048986122 +44492,222.45999999983394,-0.057317476581240014 +44493,222.46499999983394,-0.05731652291864889 +44494,222.46999999983393,-0.057315569501990994 +44495,222.47499999983393,-0.05731461633116955 +44496,222.47999999983392,-0.05731366340608778 +44497,222.48499999983392,-0.05731271072664903 +44498,222.4899999998339,-0.05731175829275661 +44499,222.4949999998339,-0.057310806104313924 +44500,222.4999999998339,-0.05730985416122441 +44501,222.5049999998339,-0.05730890246339155 +44502,222.5099999998339,-0.057307951010718866 +44503,222.5149999998339,-0.05730699980310993 +44504,222.51999999983389,-0.05730604884046838 +44505,222.52499999983388,-0.05730509812269786 +44506,222.52999999983388,-0.05730414764970209 +44507,222.53499999983387,-0.05730319742138482 +44508,222.53999999983387,-0.05730224743764987 +44509,222.54499999983386,-0.05730129769840106 +44510,222.54999999983386,-0.0573003482035423 +44511,222.55499999983385,-0.057299398952977525 +44512,222.55999999983385,-0.057298449946610715 +44513,222.56499999983384,-0.05729750118434592 +44514,222.56999999983384,-0.05729655266608718 +44515,222.57499999983384,-0.057295604391738635 +44516,222.57999999983383,-0.05729465636120446 +44517,222.58499999983383,-0.05729370857438885 +44518,222.58999999983382,-0.05729276103119605 +44519,222.59499999983382,-0.05729181373153038 +44520,222.5999999998338,-0.05729086667529619 +44521,222.6049999998338,-0.057289919862397856 +44522,222.6099999998338,-0.057288973292739825 +44523,222.6149999998338,-0.05728802696622657 +44524,222.6199999998338,-0.057287080882762624 +44525,222.6249999998338,-0.05728613504225256 +44526,222.62999999983379,-0.057285189444600974 +44527,222.63499999983378,-0.05728424408971256 +44528,222.63999999983378,-0.05728329897749199 +44529,222.64499999983377,-0.05728235410784406 +44530,222.64999999983377,-0.05728140948067352 +44531,222.65499999983376,-0.05728046509588523 +44532,222.65999999983376,-0.057279520953384094 +44533,222.66499999983375,-0.057278577053075014 +44534,222.66999999983375,-0.05727763339486298 +44535,222.67499999983374,-0.05727668997865301 +44536,222.67999999983374,-0.057275746804350165 +44537,222.68499999983374,-0.05727480387185956 +44538,222.68999999983373,-0.05727386118108635 +44539,222.69499999983373,-0.05727291873193573 +44540,222.69999999983372,-0.05727197652431295 +44541,222.70499999983372,-0.05727103455812329 +44542,222.7099999998337,-0.05727009283327209 +44543,222.7149999998337,-0.057269151349664725 +44544,222.7199999998337,-0.05726821010720661 +44545,222.7249999998337,-0.05726726910580322 +44546,222.7299999998337,-0.057266328345360065 +44547,222.7349999998337,-0.0572653878257827 +44548,222.73999999983369,-0.057264447546976724 +44549,222.74499999983368,-0.05726350750884778 +44550,222.74999999983368,-0.05726256771130156 +44551,222.75499999983367,-0.05726162815424378 +44552,222.75999999983367,-0.05726068883758023 +44553,222.76499999983366,-0.05725974976121674 +44554,222.76999999983366,-0.05725881092505917 +44555,222.77499999983365,-0.05725787232901341 +44556,222.77999999983365,-0.05725693397298544 +44557,222.78499999983364,-0.057255995856881244 +44558,222.78999999983364,-0.057255057980606865 +44559,222.79499999983364,-0.057254120344068384 +44560,222.79999999983363,-0.05725318294717194 +44561,222.80499999983363,-0.05725224578982371 +44562,222.80999999983362,-0.0572513088719299 +44563,222.81499999983362,-0.05725037219339677 +44564,222.8199999998336,-0.05724943575413065 +44565,222.8249999998336,-0.057248499554037865 +44566,222.8299999998336,-0.05724756359302481 +44567,222.8349999998336,-0.05724662787099793 +44568,222.8399999998336,-0.0572456923878637 +44569,222.8449999998336,-0.05724475714352866 +44570,222.84999999983359,-0.05724382213789936 +44571,222.85499999983358,-0.05724288737088243 +44572,222.85999999983358,-0.05724195284238451 +44573,222.86499999983357,-0.0572410185523123 +44574,222.86999999983357,-0.05724008450057255 +44575,222.87499999983356,-0.057239150687072055 +44576,222.87999999983356,-0.05723821711171765 +44577,222.88499999983355,-0.057237283774416184 +44578,222.88999999983355,-0.05723635067507459 +44579,222.89499999983354,-0.05723541781359982 +44580,222.89999999983354,-0.05723448518989889 +44581,222.90499999983354,-0.05723355280387885 +44582,222.90999999983353,-0.05723262065544678 +44583,222.91499999983353,-0.057231688744509825 +44584,222.91999999983352,-0.057230757070975156 +44585,222.92499999983352,-0.05722982563475 +44586,222.9299999998335,-0.057228894435741626 +44587,222.9349999998335,-0.05722796347385733 +44588,222.9399999998335,-0.05722703274900447 +44589,222.9449999998335,-0.057226102261090435 +44590,222.9499999998335,-0.057225172010022675 +44591,222.9549999998335,-0.05722424199570867 +44592,222.95999999983349,-0.057223312218055926 +44593,222.96499999983348,-0.057222382676972036 +44594,222.96999999983348,-0.057221453372364596 +44595,222.97499999983347,-0.05722052430414125 +44596,222.97999999983347,-0.05721959547220972 +44597,222.98499999983346,-0.057218666876477725 +44598,222.98999999983346,-0.057217738516853064 +44599,222.99499999983345,-0.05721681039324355 +44600,222.99999999983345,-0.05721588250555705 +44601,223.00499999983344,-0.05721495485370148 +44602,223.00999999983344,-0.0572140274375848 +44603,223.01499999983344,-0.057213100257115006 +44604,223.01999999983343,-0.057212173312200125 +44605,223.02499999983343,-0.05721124660274825 +44606,223.02999999983342,-0.0572103201286675 +44607,223.03499999983342,-0.05720939388986607 +44608,223.0399999998334,-0.057208467886252126 +44609,223.0449999998334,-0.057207542117733955 +44610,223.0499999998334,-0.057206616584219834 +44611,223.0549999998334,-0.057205691285618115 +44612,223.0599999998334,-0.05720476622183718 +44613,223.0649999998334,-0.05720384139278545 +44614,223.06999999983339,-0.05720291679837139 +44615,223.07499999983338,-0.05720199243850351 +44616,223.07999999983338,-0.05720106831309036 +44617,223.08499999983337,-0.057200144422040536 +44618,223.08999999983337,-0.05719922076526268 +44619,223.09499999983336,-0.05719829734266547 +44620,223.09999999983336,-0.05719737415415761 +44621,223.10499999983335,-0.057196451199647884 +44622,223.10999999983335,-0.057195528479045084 +44623,223.11499999983334,-0.05719460599225806 +44624,223.11999999983334,-0.05719368373919572 +44625,223.12499999983334,-0.05719276171976698 +44626,223.12999999983333,-0.057191839933880814 +44627,223.13499999983333,-0.05719091838144626 +44628,223.13999999983332,-0.05718999706237236 +44629,223.14499999983332,-0.05718907597656821 +44630,223.1499999998333,-0.057188155123942964 +44631,223.1549999998333,-0.05718723450440581 +44632,223.1599999998333,-0.05718631411786596 +44633,223.1649999998333,-0.0571853939642327 +44634,223.1699999998333,-0.057184474043415354 +44635,223.1749999998333,-0.057183554355323254 +44636,223.17999999983329,-0.0571826348998658 +44637,223.18499999983328,-0.05718171567695244 +44638,223.18999999983328,-0.057180796686492626 +44639,223.19499999983327,-0.05717987792839591 +44640,223.19999999983327,-0.05717895940257185 +44641,223.20499999983326,-0.05717804110893003 +44642,223.20999999983326,-0.057177123047380124 +44643,223.21499999983325,-0.05717620521783181 +44644,223.21999999983325,-0.05717528762019481 +44645,223.22499999983324,-0.057174370254378916 +44646,223.22999999983324,-0.05717345312029393 +44647,223.23499999983324,-0.0571725362178497 +44648,223.23999999983323,-0.05717161954695614 +44649,223.24499999983323,-0.05717070310752317 +44650,223.24999999983322,-0.05716978689946079 +44651,223.25499999983322,-0.057168870922679006 +44652,223.2599999998332,-0.05716795517708789 +44653,223.2649999998332,-0.05716703966259755 +44654,223.2699999998332,-0.05716612437911813 +44655,223.2749999998332,-0.05716520932655982 +44656,223.2799999998332,-0.05716429450483284 +44657,223.2849999998332,-0.05716337991384746 +44658,223.28999999983319,-0.057162465553514015 +44659,223.29499999983318,-0.05716155142374284 +44660,223.29999999983318,-0.05716063752444433 +44661,223.30499999983317,-0.05715972385552893 +44662,223.30999999983317,-0.0571588104169071 +44663,223.31499999983316,-0.05715789720848938 +44664,223.31999999983316,-0.05715698423018631 +44665,223.32499999983315,-0.057156071481908516 +44666,223.32999999983315,-0.05715515896356662 +44667,223.33499999983314,-0.05715424667507131 +44668,223.33999999983314,-0.05715333461633331 +44669,223.34499999983314,-0.057152422787263395 +44670,223.34999999983313,-0.057151511187772355 +44671,223.35499999983313,-0.05715059981777107 +44672,223.35999999983312,-0.057149688677170386 +44673,223.36499999983312,-0.057148777765881266 +44674,223.3699999998331,-0.05714786708381466 +44675,223.3749999998331,-0.05714695663088159 +44676,223.3799999998331,-0.05714604640699311 +44677,223.3849999998331,-0.05714513641206031 +44678,223.3899999998331,-0.05714422664599433 +44679,223.3949999998331,-0.05714331710870633 +44680,223.39999999983308,-0.05714240780010755 +44681,223.40499999983308,-0.05714149872010923 +44682,223.40999999983308,-0.05714058986862267 +44683,223.41499999983307,-0.0571396812455592 +44684,223.41999999983307,-0.05713877285083022 +44685,223.42499999983306,-0.05713786468434714 +44686,223.42999999983306,-0.057136956746021414 +44687,223.43499999983305,-0.057136049035764545 +44688,223.43999999983305,-0.05713514155348807 +44689,223.44499999983304,-0.05713423429910358 +44690,223.44999999983304,-0.05713332727252271 +44691,223.45499999983303,-0.057132420473657096 +44692,223.45999999983303,-0.05713151390241845 +44693,223.46499999983303,-0.05713060755871852 +44694,223.46999999983302,-0.0571297014424691 +44695,223.47499999983302,-0.05712879555358201 +44696,223.479999999833,-0.057127889891969104 +44697,223.484999999833,-0.05712698445754231 +44698,223.489999999833,-0.057126079250213554 +44699,223.494999999833,-0.05712517426989483 +44700,223.499999999833,-0.05712426951649816 +44701,223.504999999833,-0.05712336498993561 +44702,223.50999999983298,-0.057122460690119295 +44703,223.51499999983298,-0.057121556616961375 +44704,223.51999999983298,-0.05712065277037401 +44705,223.52499999983297,-0.05711974915026944 +44706,223.52999999983297,-0.057118845756559934 +44707,223.53499999983296,-0.05711794258915781 +44708,223.53999999983296,-0.05711703964797539 +44709,223.54499999983295,-0.05711613693292509 +44710,223.54999999983295,-0.05711523444391932 +44711,223.55499999983294,-0.057114332180870565 +44712,223.55999999983294,-0.057113430143691316 +44713,223.56499999983293,-0.05711252833229413 +44714,223.56999999983293,-0.0571116267465916 +44715,223.57499999983293,-0.05711072538649634 +44716,223.57999999983292,-0.05710982425192104 +44717,223.58499999983292,-0.057108923342778395 +44718,223.5899999998329,-0.057108022658981156 +44719,223.5949999998329,-0.05710712220044211 +44720,223.5999999998329,-0.05710622196707408 +44721,223.6049999998329,-0.05710532195878993 +44722,223.6099999998329,-0.05710442217550258 +44723,223.6149999998329,-0.057103522617124966 +44724,223.61999999983288,-0.05710262328357008 +44725,223.62499999983288,-0.057101724174750956 +44726,223.62999999983288,-0.057100825290580644 +44727,223.63499999983287,-0.05709992663097226 +44728,223.63999999983287,-0.05709902819583894 +44729,223.64499999983286,-0.05709812998509388 +44730,223.64999999983286,-0.057097231998650286 +44731,223.65499999983285,-0.057096334236421444 +44732,223.65999999983285,-0.057095436698320644 +44733,223.66499999983284,-0.05709453938426123 +44734,223.66999999983284,-0.05709364229415658 +44735,223.67499999983283,-0.05709274542792014 +44736,223.67999999983283,-0.057091848785465346 +44737,223.68499999983283,-0.05709095236670571 +44738,223.68999999983282,-0.05709005617155475 +44739,223.69499999983282,-0.05708916019992607 +44740,223.6999999998328,-0.05708826445173328 +44741,223.7049999998328,-0.057087368926890036 +44742,223.7099999998328,-0.05708647362531004 +44743,223.7149999998328,-0.05708557854690702 +44744,223.7199999998328,-0.05708468369159475 +44745,223.7249999998328,-0.05708378905928706 +44746,223.72999999983278,-0.0570828946498978 +44747,223.73499999983278,-0.057082000463340846 +44748,223.73999999983278,-0.05708110649953015 +44749,223.74499999983277,-0.05708021275837968 +44750,223.74999999983277,-0.057079319239803424 +44751,223.75499999983276,-0.05707842594371545 +44752,223.75999999983276,-0.05707753287002984 +44753,223.76499999983275,-0.057076640018660724 +44754,223.76999999983275,-0.057075747389522265 +44755,223.77499999983274,-0.05707485498252868 +44756,223.77999999983274,-0.05707396279759419 +44757,223.78499999983273,-0.0570730708346331 +44758,223.78999999983273,-0.05707217909355973 +44759,223.79499999983273,-0.05707128757428842 +44760,223.79999999983272,-0.05707039627673359 +44761,223.80499999983272,-0.057069505200809674 +44762,223.8099999998327,-0.05706861434643114 +44763,223.8149999998327,-0.05706772371351251 +44764,223.8199999998327,-0.05706683330196833 +44765,223.8249999998327,-0.05706594311171321 +44766,223.8299999998327,-0.05706505314266177 +44767,223.8349999998327,-0.05706416339472868 +44768,223.83999999983268,-0.057063273867828654 +44769,223.84499999983268,-0.05706238456187644 +44770,223.84999999983268,-0.057061495476786815 +44771,223.85499999983267,-0.05706060661247462 +44772,223.85999999983267,-0.0570597179688547 +44773,223.86499999983266,-0.05705882954584196 +44774,223.86999999983266,-0.05705794134335135 +44775,223.87499999983265,-0.057057053361297835 +44776,223.87999999983265,-0.057056165599596455 +44777,223.88499999983264,-0.05705527805816225 +44778,223.88999999983264,-0.05705439073691031 +44779,223.89499999983263,-0.05705350363575577 +44780,223.89999999983263,-0.05705261675461381 +44781,223.90499999983263,-0.05705173009339963 +44782,223.90999999983262,-0.05705084365202848 +44783,223.91499999983262,-0.05704995743041563 +44784,223.9199999998326,-0.05704907142847644 +44785,223.9249999998326,-0.057048185646126244 +44786,223.9299999998326,-0.05704730008328045 +44787,223.9349999998326,-0.05704641473985449 +44788,223.9399999998326,-0.05704552961576384 +44789,223.9449999998326,-0.05704464471092402 +44790,223.94999999983258,-0.05704376002525058 +44791,223.95499999983258,-0.05704287555865912 +44792,223.95999999983258,-0.057041991311065264 +44793,223.96499999983257,-0.05704110728238467 +44794,223.96999999983257,-0.057040223472533055 +44795,223.97499999983256,-0.05703933988142616 +44796,223.97999999983256,-0.05703845650897975 +44797,223.98499999983255,-0.05703757335510966 +44798,223.98999999983255,-0.05703669041973174 +44799,223.99499999983254,-0.0570358077027619 +44800,223.99999999983254,-0.05703492520411605 +44801,224.00499999983253,-0.05703404292371018 +44802,224.00999999983253,-0.05703316086146028 +44803,224.01499999983253,-0.057032279017282396 +44804,224.01999999983252,-0.05703139739109263 +44805,224.02499999983252,-0.05703051598280709 +44806,224.0299999998325,-0.05702963479234194 +44807,224.0349999998325,-0.05702875381961337 +44808,224.0399999998325,-0.05702787306453763 +44809,224.0449999998325,-0.05702699252703097 +44810,224.0499999998325,-0.05702611220700972 +44811,224.0549999998325,-0.057025232104390214 +44812,224.05999999983248,-0.05702435221908884 +44813,224.06499999983248,-0.057023472551022025 +44814,224.06999999983248,-0.057022593100106225 +44815,224.07499999983247,-0.05702171386625794 +44816,224.07999999983247,-0.057020834849393694 +44817,224.08499999983246,-0.05701995604943008 +44818,224.08999999983246,-0.057019077466283694 +44819,224.09499999983245,-0.057018199099871186 +44820,224.09999999983245,-0.05701732095010924 +44821,224.10499999983244,-0.05701644301691458 +44822,224.10999999983244,-0.05701556530020398 +44823,224.11499999983243,-0.05701468779989421 +44824,224.11999999983243,-0.05701381051590211 +44825,224.12499999983243,-0.057012933448144565 +44826,224.12999999983242,-0.057012056596538484 +44827,224.13499999983242,-0.05701117996100081 +44828,224.1399999998324,-0.05701030354144851 +44829,224.1449999998324,-0.05700942733779863 +44830,224.1499999998324,-0.057008551349968205 +44831,224.1549999998324,-0.05700767557787434 +44832,224.1599999998324,-0.05700680002143416 +44833,224.1649999998324,-0.05700592468056485 +44834,224.16999999983238,-0.0570050495551836 +44835,224.17499999983238,-0.05700417464520767 +44836,224.17999999983238,-0.05700329995055432 +44837,224.18499999983237,-0.057002425471140886 +44838,224.18999999983237,-0.0570015512068847 +44839,224.19499999983236,-0.05700067715770317 +44840,224.19999999983236,-0.05699980332351372 +44841,224.20499999983235,-0.05699892970423382 +44842,224.20999999983235,-0.05699805629978097 +44843,224.21499999983234,-0.0569971831100727 +44844,224.21999999983234,-0.05699631013502659 +44845,224.22499999983233,-0.056995437374560254 +44846,224.22999999983233,-0.05699456482859135 +44847,224.23499999983233,-0.056993692497037556 +44848,224.23999999983232,-0.056992820379816594 +44849,224.24499999983232,-0.05699194847684622 +44850,224.2499999998323,-0.05699107678804424 +44851,224.2549999998323,-0.056990205313328476 +44852,224.2599999998323,-0.056989334052616795 +44853,224.2649999998323,-0.05698846300582713 +44854,224.2699999998323,-0.056987592172877403 +44855,224.2749999998323,-0.05698672155368559 +44856,224.27999999983228,-0.0569858511481697 +44857,224.28499999983228,-0.056984980956247815 +44858,224.28999999983228,-0.056984110977838 +44859,224.29499999983227,-0.05698324121285839 +44860,224.29999999983227,-0.056982371661227146 +44861,224.30499999983226,-0.05698150232286247 +44862,224.30999999983226,-0.056980633197682595 +44863,224.31499999983225,-0.056979764285605784 +44864,224.31999999983225,-0.05697889558655035 +44865,224.32499999983224,-0.05697802710043465 +44866,224.32999999983224,-0.05697715882717705 +44867,224.33499999983223,-0.05697629076669597 +44868,224.33999999983223,-0.05697542291890987 +44869,224.34499999983223,-0.05697455528373723 +44870,224.34999999983222,-0.05697368786109659 +44871,224.35499999983222,-0.0569728206509065 +44872,224.3599999998322,-0.056971953653085564 +44873,224.3649999998322,-0.056971086867552416 +44874,224.3699999998322,-0.056970220294225715 +44875,224.3749999998322,-0.05696935393302418 +44876,224.3799999998322,-0.05696848778386655 +44877,224.3849999998322,-0.05696762184667162 +44878,224.38999999983218,-0.05696675612135819 +44879,224.39499999983218,-0.0569658906078451 +44880,224.39999999983218,-0.05696502530605126 +44881,224.40499999983217,-0.05696416021589558 +44882,224.40999999983217,-0.05696329533729703 +44883,224.41499999983216,-0.0569624306701746 +44884,224.41999999983216,-0.05696156621444732 +44885,224.42499999983215,-0.05696070197003425 +44886,224.42999999983215,-0.05695983793685452 +44887,224.43499999983214,-0.05695897411482723 +44888,224.43999999983214,-0.05695811050387158 +44889,224.44499999983213,-0.05695724710390678 +44890,224.44999999983213,-0.05695638391485207 +44891,224.45499999983213,-0.056955520936626744 +44892,224.45999999983212,-0.05695465816915011 +44893,224.46499999983212,-0.056953795612341526 +44894,224.4699999998321,-0.056952933266120366 +44895,224.4749999998321,-0.05695207113040608 +44896,224.4799999998321,-0.05695120920511812 +44897,224.4849999998321,-0.05695034749017599 +44898,224.4899999998321,-0.05694948598549921 +44899,224.4949999998321,-0.05694862469100735 +44900,224.49999999983208,-0.05694776360662003 +44901,224.50499999983208,-0.05694690273225686 +44902,224.50999999983208,-0.056946042067837536 +44903,224.51499999983207,-0.05694518161328178 +44904,224.51999999983207,-0.056944321368509306 +44905,224.52499999983206,-0.056943461333439915 +44906,224.52999999983206,-0.05694260150799342 +44907,224.53499999983205,-0.05694174189208967 +44908,224.53999999983205,-0.05694088248564856 +44909,224.54499999983204,-0.05694002328859001 +44910,224.54999999983204,-0.056939164300834 +44911,224.55499999983203,-0.05693830552230048 +44912,224.55999999983203,-0.05693744695290951 +44913,224.56499999983203,-0.05693658859258116 +44914,224.56999999983202,-0.056935730441235524 +44915,224.57499999983202,-0.05693487249879271 +44916,224.579999999832,-0.05693401476517294 +44917,224.584999999832,-0.05693315724029637 +44918,224.589999999832,-0.05693229992408327 +44919,224.594999999832,-0.05693144281645391 +44920,224.599999999832,-0.0569305859173286 +44921,224.604999999832,-0.05692972922662769 +44922,224.60999999983198,-0.056928872744271546 +44923,224.61499999983198,-0.05692801647018061 +44924,224.61999999983198,-0.05692716040427531 +44925,224.62499999983197,-0.05692630454647616 +44926,224.62999999983197,-0.05692544889670366 +44927,224.63499999983196,-0.05692459345487838 +44928,224.63999999983196,-0.056923738220920894 +44929,224.64499999983195,-0.05692288319475186 +44930,224.64999999983195,-0.05692202837629192 +44931,224.65499999983194,-0.056921173765461776 +44932,224.65999999983194,-0.056920319362182156 +44933,224.66499999983193,-0.05691946516637383 +44934,224.66999999983193,-0.05691861117795759 +44935,224.67499999983193,-0.056917757396854285 +44936,224.67999999983192,-0.056916903822984796 +44937,224.68499999983192,-0.05691605045627002 +44938,224.6899999998319,-0.05691519729663088 +44939,224.6949999998319,-0.05691434434398838 +44940,224.6999999998319,-0.056913491598263505 +44941,224.7049999998319,-0.05691263905937733 +44942,224.7099999998319,-0.05691178672725091 +44943,224.7149999998319,-0.05691093460180538 +44944,224.71999999983188,-0.056910082682961875 +44945,224.72499999983188,-0.05690923097064157 +44946,224.72999999983188,-0.0569083794647657 +44947,224.73499999983187,-0.05690752816525553 +44948,224.73999999983187,-0.05690667707203233 +44949,224.74499999983186,-0.05690582618501742 +44950,224.74999999983186,-0.05690497550413217 +44951,224.75499999983185,-0.05690412502929796 +44952,224.75999999983185,-0.05690327476043622 +44953,224.76499999983184,-0.05690242469746842 +44954,224.76999999983184,-0.05690157484031604 +44955,224.77499999983183,-0.056900725188900624 +44956,224.77999999983183,-0.05689987574314372 +44957,224.78499999983183,-0.05689902650296695 +44958,224.78999999983182,-0.05689817746829192 +44959,224.79499999983182,-0.05689732863904031 +44960,224.7999999998318,-0.05689648001513383 +44961,224.8049999998318,-0.056895631596494196 +44962,224.8099999998318,-0.056894783383043206 +44963,224.8149999998318,-0.05689393537470264 +44964,224.8199999998318,-0.05689308757139434 +44965,224.8249999998318,-0.05689223997304018 +44966,224.82999999983178,-0.05689139257956208 +44967,224.83499999983178,-0.056890545390881966 +44968,224.83999999983178,-0.056889698406921825 +44969,224.84499999983177,-0.05688885162760366 +44970,224.84999999983177,-0.05688800505284951 +44971,224.85499999983176,-0.05688715868258146 +44972,224.85999999983176,-0.05688631251672163 +44973,224.86499999983175,-0.05688546655519215 +44974,224.86999999983175,-0.05688462079791522 +44975,224.87499999983174,-0.05688377524481302 +44976,224.87999999983174,-0.056882929895807836 +44977,224.88499999983173,-0.05688208475082193 +44978,224.88999999983173,-0.05688123980977763 +44979,224.89499999983173,-0.05688039507259727 +44980,224.89999999983172,-0.05687955053920324 +44981,224.90499999983172,-0.05687870620951796 +44982,224.9099999998317,-0.05687786208346388 +44983,224.9149999998317,-0.05687701816096349 +44984,224.9199999998317,-0.0568761744419393 +44985,224.9249999998317,-0.05687533092631388 +44986,224.9299999998317,-0.05687448761400981 +44987,224.9349999998317,-0.056873644504949694 +44988,224.93999999983168,-0.056872801599056215 +44989,224.94499999983168,-0.05687195889625204 +44990,224.94999999983168,-0.0568711163964599 +44991,224.95499999983167,-0.056870274099602554 +44992,224.95999999983167,-0.056869432005602794 +44993,224.96499999983166,-0.05686859011438342 +44994,224.96999999983166,-0.05686774842586732 +44995,224.97499999983165,-0.056866906939977355 +44996,224.97999999983165,-0.05686606565663647 +44997,224.98499999983164,-0.05686522457576761 +44998,224.98999999983164,-0.056864383697293776 +44999,224.99499999983163,-0.05686354302113799 +45000,224.99999999983163,-0.05686270254722331 +45001,225.00499999983163,-0.05686186227547283 +45002,225.00999999983162,-0.05686102220580968 +45003,225.01499999983162,-0.05686018233815699 +45004,225.0199999998316,-0.05685934267243799 +45005,225.0249999998316,-0.056858503208575883 +45006,225.0299999998316,-0.05685766394649393 +45007,225.0349999998316,-0.05685682488611543 +45008,225.0399999998316,-0.05685598602736371 +45009,225.0449999998316,-0.05685514737016213 +45010,225.04999999983158,-0.05685430891443407 +45011,225.05499999983158,-0.056853470660102955 +45012,225.05999999983158,-0.05685263260709226 +45013,225.06499999983157,-0.05685179475532547 +45014,225.06999999983157,-0.05685095710472611 +45015,225.07499999983156,-0.05685011965521774 +45016,225.07999999983156,-0.05684928240672395 +45017,225.08499999983155,-0.05684844535916835 +45018,225.08999999983155,-0.056847608512474626 +45019,225.09499999983154,-0.056846771866566455 +45020,225.09999999983154,-0.05684593542136757 +45021,225.10499999983153,-0.05684509917680171 +45022,225.10999999983153,-0.05684426313279269 +45023,225.11499999983153,-0.056843427289264316 +45024,225.11999999983152,-0.05684259164614045 +45025,225.12499999983152,-0.05684175620334499 +45026,225.1299999998315,-0.05684092096080184 +45027,225.1349999998315,-0.056840085918434965 +45028,225.1399999998315,-0.05683925107616836 +45029,225.1449999998315,-0.05683841643392603 +45030,225.1499999998315,-0.05683758199163205 +45031,225.1549999998315,-0.056836747749210506 +45032,225.15999999983148,-0.0568359137065855 +45033,225.16499999983148,-0.0568350798636812 +45034,225.16999999983148,-0.05683424622042179 +45035,225.17499999983147,-0.05683341277673149 +45036,225.17999999983147,-0.05683257953253455 +45037,225.18499999983146,-0.056831746487755255 +45038,225.18999999983146,-0.05683091364231791 +45039,225.19499999983145,-0.05683008099614688 +45040,225.19999999983145,-0.05682924854916654 +45041,225.20499999983144,-0.05682841630130132 +45042,225.20999999983144,-0.056827584252475645 +45043,225.21499999983143,-0.05682675240261402 +45044,225.21999999983143,-0.05682592075164094 +45045,225.22499999983143,-0.05682508929948095 +45046,225.22999999983142,-0.056824258046058645 +45047,225.23499999983142,-0.05682342699129863 +45048,225.2399999998314,-0.05682259613512554 +45049,225.2449999998314,-0.05682176547746406 +45050,225.2499999998314,-0.056820935018238886 +45051,225.2549999998314,-0.05682010475737478 +45052,225.2599999998314,-0.05681927469479651 +45053,225.2649999998314,-0.056818444830428874 +45054,225.26999999983138,-0.056817615164196714 +45055,225.27499999983138,-0.05681678569602489 +45056,225.27999999983138,-0.05681595642583834 +45057,225.28499999983137,-0.056815127353561964 +45058,225.28999999983137,-0.05681429847912075 +45059,225.29499999983136,-0.056813469802439696 +45060,225.29999999983136,-0.05681264132344383 +45061,225.30499999983135,-0.05681181304205822 +45062,225.30999999983135,-0.056810984958207966 +45063,225.31499999983134,-0.0568101570718182 +45064,225.31999999983134,-0.05680932938281407 +45065,225.32499999983133,-0.056808501891120786 +45066,225.32999999983133,-0.05680767459666356 +45067,225.33499999983133,-0.056806847499367666 +45068,225.33999999983132,-0.05680602059915839 +45069,225.34499999983132,-0.05680519389596105 +45070,225.3499999998313,-0.056804367389701016 +45071,225.3549999998313,-0.05680354108030366 +45072,225.3599999998313,-0.056802714967694415 +45073,225.3649999998313,-0.05680188905179871 +45074,225.3699999998313,-0.056801063332542055 +45075,225.3749999998313,-0.05680023780984995 +45076,225.37999999983128,-0.05679941248364794 +45077,225.38499999983128,-0.05679858735386162 +45078,225.38999999983128,-0.056797762420416606 +45079,225.39499999983127,-0.05679693768323853 +45080,225.39999999983127,-0.05679611314225305 +45081,225.40499999983126,-0.05679528879738591 +45082,225.40999999983126,-0.056794464648562824 +45083,225.41499999983125,-0.05679364069570957 +45084,225.41999999983125,-0.056792816938751954 +45085,225.42499999983124,-0.05679199337761581 +45086,225.42999999983124,-0.05679117001222701 +45087,225.43499999983123,-0.056790346842511455 +45088,225.43999999983123,-0.05678952386839505 +45089,225.44499999983123,-0.05678870108980378 +45090,225.44999999983122,-0.05678787850666365 +45091,225.45499999983122,-0.05678705611890067 +45092,225.4599999998312,-0.05678623392644089 +45093,225.4649999998312,-0.05678541192921041 +45094,225.4699999998312,-0.05678459012713536 +45095,225.4749999998312,-0.05678376852014188 +45096,225.4799999998312,-0.05678294710815615 +45097,225.4849999998312,-0.0567821258911044 +45098,225.48999999983118,-0.05678130486891287 +45099,225.49499999983118,-0.05678048404150785 +45100,225.49999999983118,-0.056779663408815635 +45101,225.50499999983117,-0.05677884297076257 +45102,225.50999999983117,-0.05677802272727503 +45103,225.51499999983116,-0.05677720267827944 +45104,225.51999999983116,-0.05677638282370221 +45105,225.52499999983115,-0.05677556316346983 +45106,225.52999999983115,-0.05677474369750878 +45107,225.53499999983114,-0.05677392442574561 +45108,225.53999999983114,-0.05677310534810687 +45109,225.54499999983113,-0.05677228646451916 +45110,225.54999999983113,-0.0567714677749091 +45111,225.55499999983113,-0.056770649279203354 +45112,225.55999999983112,-0.056769830977328614 +45113,225.56499999983112,-0.05676901286921158 +45114,225.5699999998311,-0.05676819495477902 +45115,225.5749999998311,-0.056767377233957715 +45116,225.5799999998311,-0.05676655970667447 +45117,225.5849999998311,-0.05676574237285614 +45118,225.5899999998311,-0.05676492523242959 +45119,225.5949999998311,-0.05676410828532174 +45120,225.59999999983108,-0.056763291531459516 +45121,225.60499999983108,-0.0567624749707699 +45122,225.60999999983108,-0.05676165860317988 +45123,225.61499999983107,-0.0567608424286165 +45124,225.61999999983107,-0.056760026447006826 +45125,225.62499999983106,-0.05675921065827794 +45126,225.62999999983106,-0.05675839506235697 +45127,225.63499999983105,-0.056757579659171074 +45128,225.63999999983105,-0.05675676444864745 +45129,225.64499999983104,-0.056755949430713284 +45130,225.64999999983104,-0.05675513460529587 +45131,225.65499999983103,-0.05675431997232245 +45132,225.65999999983103,-0.056753505531720365 +45133,225.66499999983102,-0.05675269128341694 +45134,225.66999999983102,-0.05675187722733955 +45135,225.67499999983102,-0.0567510633634156 +45136,225.679999999831,-0.056750249691572524 +45137,225.684999999831,-0.05674943621173779 +45138,225.689999999831,-0.05674862292383889 +45139,225.694999999831,-0.05674780982780338 +45140,225.699999999831,-0.056746996923558786 +45141,225.704999999831,-0.05674618421103272 +45142,225.70999999983098,-0.056745371690152764 +45143,225.71499999983098,-0.05674455936084661 +45144,225.71999999983097,-0.05674374722304192 +45145,225.72499999983097,-0.05674293527666641 +45146,225.72999999983097,-0.05674212352164784 +45147,225.73499999983096,-0.056741311957913966 +45148,225.73999999983096,-0.056740500585392595 +45149,225.74499999983095,-0.056739689404011556 +45150,225.74999999983095,-0.05673887841369873 +45151,225.75499999983094,-0.05673806761438201 +45152,225.75999999983094,-0.056737257005989306 +45153,225.76499999983093,-0.056736446588448605 +45154,225.76999999983093,-0.056735636361687866 +45155,225.77499999983092,-0.056734826325635125 +45156,225.77999999983092,-0.05673401648021843 +45157,225.78499999983092,-0.05673320682536585 +45158,225.7899999998309,-0.05673239736100553 +45159,225.7949999998309,-0.05673158808706556 +45160,225.7999999998309,-0.056730779003474154 +45161,225.8049999998309,-0.05672997011015948 +45162,225.8099999998309,-0.056729161407049804 +45163,225.8149999998309,-0.05672835289407337 +45164,225.81999999983088,-0.05672754457115848 +45165,225.82499999983088,-0.05672673643823345 +45166,225.82999999983087,-0.056725928495226625 +45167,225.83499999983087,-0.05672512074206641 +45168,225.83999999983087,-0.0567243131786812 +45169,225.84499999983086,-0.05672350580499945 +45170,225.84999999983086,-0.05672269862094964 +45171,225.85499999983085,-0.056721891626460276 +45172,225.85999999983085,-0.056721084821459884 +45173,225.86499999983084,-0.05672027820587704 +45174,225.86999999983084,-0.05671947177964032 +45175,225.87499999983083,-0.05671866554267837 +45176,225.87999999983083,-0.05671785949491984 +45177,225.88499999983082,-0.05671705363629342 +45178,225.88999999983082,-0.05671624796672782 +45179,225.89499999983082,-0.056715442486151804 +45180,225.8999999998308,-0.056714637194494134 +45181,225.9049999998308,-0.05671383209168363 +45182,225.9099999998308,-0.05671302717764911 +45183,225.9149999998308,-0.05671222245231945 +45184,225.9199999998308,-0.056711417915623556 +45185,225.9249999998308,-0.05671061356749035 +45186,225.92999999983078,-0.056709809407848796 +45187,225.93499999983078,-0.056709005436627866 +45188,225.93999999983077,-0.05670820165375659 +45189,225.94499999983077,-0.056707398059164006 +45190,225.94999999983077,-0.056706594652779205 +45191,225.95499999983076,-0.05670579143453128 +45192,225.95999999983076,-0.05670498840434938 +45193,225.96499999983075,-0.05670418556216267 +45194,225.96999999983075,-0.056703382907900335 +45195,225.97499999983074,-0.05670258044149161 +45196,225.97999999983074,-0.05670177816286575 +45197,225.98499999983073,-0.056700976071952056 +45198,225.98999999983073,-0.056700174168679826 +45199,225.99499999983072,-0.05669937245297841 +45200,225.99999999983072,-0.05669857092477719 +45201,226.00499999983072,-0.056697769584005554 +45202,226.0099999998307,-0.056696968430592964 +45203,226.0149999998307,-0.05669616746446887 +45204,226.0199999998307,-0.05669536668556276 +45205,226.0249999998307,-0.05669456609380417 +45206,226.0299999998307,-0.056693765689122655 +45207,226.0349999998307,-0.056692965471447795 +45208,226.03999999983068,-0.05669216544070921 +45209,226.04499999983068,-0.05669136559683652 +45210,226.04999999983067,-0.05669056593975942 +45211,226.05499999983067,-0.05668976646940762 +45212,226.05999999983067,-0.05668896718571082 +45213,226.06499999983066,-0.0566881680885988 +45214,226.06999999983066,-0.05668736917800135 +45215,226.07499999983065,-0.05668657045384829 +45216,226.07999999983065,-0.05668577191606947 +45217,226.08499999983064,-0.05668497356459477 +45218,226.08999999983064,-0.05668417539935409 +45219,226.09499999983063,-0.05668337742027737 +45220,226.09999999983063,-0.05668257962729459 +45221,226.10499999983062,-0.05668178202033573 +45222,226.10999999983062,-0.05668098459933083 +45223,226.11499999983062,-0.05668018736420995 +45224,226.1199999998306,-0.05667939031490315 +45225,226.1249999998306,-0.05667859345134056 +45226,226.1299999998306,-0.05667779677345233 +45227,226.1349999998306,-0.05667700028116862 +45228,226.1399999998306,-0.05667620397441964 +45229,226.1449999998306,-0.05667540785313563 +45230,226.14999999983058,-0.05667461191724682 +45231,226.15499999983058,-0.05667381616668354 +45232,226.15999999983057,-0.05667302060137608 +45233,226.16499999983057,-0.05667222522125479 +45234,226.16999999983057,-0.056671430026250066 +45235,226.17499999983056,-0.0566706350162923 +45236,226.17999999983056,-0.056669840191311924 +45237,226.18499999983055,-0.05666904555123941 +45238,226.18999999983055,-0.05666825109600525 +45239,226.19499999983054,-0.056667456825539975 +45240,226.19999999983054,-0.056666662739774123 +45241,226.20499999983053,-0.05666586883863829 +45242,226.20999999983053,-0.05666507512206309 +45243,226.21499999983052,-0.05666428158997914 +45244,226.21999999983052,-0.05666348824231713 +45245,226.22499999983052,-0.05666269507900774 +45246,226.2299999998305,-0.056661902099981704 +45247,226.2349999998305,-0.05666110930516977 +45248,226.2399999998305,-0.05666031669450274 +45249,226.2449999998305,-0.05665952426791141 +45250,226.2499999998305,-0.05665873202532663 +45251,226.2549999998305,-0.05665793996667927 +45252,226.25999999983048,-0.056657148091900214 +45253,226.26499999983048,-0.056656356400920406 +45254,226.26999999983047,-0.0566555648936708 +45255,226.27499999983047,-0.05665477357008238 +45256,226.27999999983047,-0.056653982430086174 +45257,226.28499999983046,-0.056653191473613224 +45258,226.28999999983046,-0.05665240070059459 +45259,226.29499999983045,-0.05665161011096137 +45260,226.29999999983045,-0.0566508197046447 +45261,226.30499999983044,-0.056650029481575756 +45262,226.30999999983044,-0.05664923944168569 +45263,226.31499999983043,-0.05664844958490575 +45264,226.31999999983043,-0.056647659911167166 +45265,226.32499999983042,-0.056646870420401216 +45266,226.32999999983042,-0.05664608111253921 +45267,226.33499999983042,-0.056645291987512454 +45268,226.3399999998304,-0.05664450304525232 +45269,226.3449999998304,-0.05664371428569021 +45270,226.3499999998304,-0.05664292570875753 +45271,226.3549999998304,-0.05664213731438572 +45272,226.3599999998304,-0.056641349102506254 +45273,226.3649999998304,-0.056640561073050634 +45274,226.36999999983038,-0.05663977322595041 +45275,226.37499999983038,-0.056638985561137105 +45276,226.37999999983037,-0.05663819807854233 +45277,226.38499999983037,-0.0566374107780977 +45278,226.38999999983037,-0.05663662365973487 +45279,226.39499999983036,-0.05663583672338548 +45280,226.39999999983036,-0.05663504996898126 +45281,226.40499999983035,-0.056634263396453936 +45282,226.40999999983035,-0.05663347700573525 +45283,226.41499999983034,-0.05663269079675699 +45284,226.41999999983034,-0.056631904769450986 +45285,226.42499999983033,-0.05663111892374907 +45286,226.42999999983033,-0.056630333259583124 +45287,226.43499999983032,-0.05662954777688505 +45288,226.43999999983032,-0.05662876247558676 +45289,226.44499999983032,-0.0566279773556202 +45290,226.4499999998303,-0.05662719241691738 +45291,226.4549999998303,-0.05662640765941031 +45292,226.4599999998303,-0.05662562308303102 +45293,226.4649999998303,-0.05662483868771157 +45294,226.4699999998303,-0.05662405447338408 +45295,226.4749999998303,-0.05662327043998066 +45296,226.47999999983028,-0.05662248658743347 +45297,226.48499999983028,-0.05662170291567469 +45298,226.48999999983027,-0.056620919424636526 +45299,226.49499999983027,-0.05662013611425123 +45300,226.49999999983027,-0.05661935298445104 +45301,226.50499999983026,-0.05661857003516828 +45302,226.50999999983026,-0.056617787266335255 +45303,226.51499999983025,-0.056617004677884324 +45304,226.51999999983025,-0.05661622226974785 +45305,226.52499999983024,-0.05661544004185825 +45306,226.52999999983024,-0.05661465799414795 +45307,226.53499999983023,-0.05661387612654942 +45308,226.53999999983023,-0.05661309443899515 +45309,226.54499999983022,-0.05661231293141765 +45310,226.54999999983022,-0.056611531603749474 +45311,226.55499999983022,-0.05661075045592318 +45312,226.5599999998302,-0.0566099694878714 +45313,226.5649999998302,-0.056609188699526726 +45314,226.5699999998302,-0.05660840809082184 +45315,226.5749999998302,-0.05660762766168942 +45316,226.5799999998302,-0.05660684741206218 +45317,226.5849999998302,-0.05660606734187286 +45318,226.58999999983018,-0.056605287451054226 +45319,226.59499999983018,-0.056604507739539074 +45320,226.59999999983017,-0.05660372820726022 +45321,226.60499999983017,-0.05660294885415053 +45322,226.60999999983017,-0.05660216968014288 +45323,226.61499999983016,-0.05660139068517017 +45324,226.61999999983016,-0.05660061186916535 +45325,226.62499999983015,-0.05659983323206136 +45326,226.62999999983015,-0.056599054773791194 +45327,226.63499999983014,-0.05659827649428789 +45328,226.63999999983014,-0.05659749839348447 +45329,226.64499999983013,-0.05659672047131402 +45330,226.64999999983013,-0.056595942727709625 +45331,226.65499999983012,-0.05659516516260443 +45332,226.65999999983012,-0.05659438777593159 +45333,226.66499999983012,-0.05659361056762428 +45334,226.6699999998301,-0.05659283353761572 +45335,226.6749999998301,-0.056592056685839144 +45336,226.6799999998301,-0.0565912800122278 +45337,226.6849999998301,-0.056590503516715004 +45338,226.6899999998301,-0.056589727199234066 +45339,226.6949999998301,-0.056588951059718326 +45340,226.69999999983008,-0.05658817509810118 +45341,226.70499999983008,-0.056587399314316014 +45342,226.70999999983007,-0.05658662370829627 +45343,226.71499999983007,-0.0565858482799754 +45344,226.71999999983007,-0.05658507302928688 +45345,226.72499999983006,-0.05658429795616424 +45346,226.72999999983006,-0.056583523060541 +45347,226.73499999983005,-0.05658274834235074 +45348,226.73999999983005,-0.056581973801527054 +45349,226.74499999983004,-0.05658119943800357 +45350,226.74999999983004,-0.05658042525171392 +45351,226.75499999983003,-0.05657965124259178 +45352,226.75999999983003,-0.05657887741057087 +45353,226.76499999983002,-0.056578103755584905 +45354,226.76999999983002,-0.05657733027756766 +45355,226.77499999983002,-0.05657655697645289 +45356,226.77999999983,-0.05657578385217444 +45357,226.78499999983,-0.05657501090466613 +45358,226.78999999983,-0.05657423813386183 +45359,226.79499999983,-0.056573465539695424 +45360,226.79999999983,-0.056572693122100844 +45361,226.80499999983,-0.056571920881012046 +45362,226.80999999982998,-0.05657114881636299 +45363,226.81499999982998,-0.05657037692808768 +45364,226.81999999982997,-0.05656960521612015 +45365,226.82499999982997,-0.05656883368039445 +45366,226.82999999982997,-0.05656806232084467 +45367,226.83499999982996,-0.056567291137404926 +45368,226.83999999982996,-0.056566520130009325 +45369,226.84499999982995,-0.05656574929859205 +45370,226.84999999982995,-0.0565649786430873 +45371,226.85499999982994,-0.05656420816342929 +45372,226.85999999982994,-0.05656343785955225 +45373,226.86499999982993,-0.056562667731390466 +45374,226.86999999982993,-0.05656189777887823 +45375,226.87499999982992,-0.056561128001949866 +45376,226.87999999982992,-0.056560358400539745 +45377,226.88499999982992,-0.056559588974582214 +45378,226.8899999998299,-0.0565588197240117 +45379,226.8949999998299,-0.05655805064876263 +45380,226.8999999998299,-0.05655728174876946 +45381,226.9049999998299,-0.05655651302396667 +45382,226.9099999998299,-0.0565557444742888 +45383,226.9149999998299,-0.05655497609967037 +45384,226.91999999982988,-0.05655420790004594 +45385,226.92499999982988,-0.05655343987535012 +45386,226.92999999982987,-0.056552672025517524 +45387,226.93499999982987,-0.05655190435048279 +45388,226.93999999982987,-0.0565511368501806 +45389,226.94499999982986,-0.056550369524545646 +45390,226.94999999982986,-0.05654960237351267 +45391,226.95499999982985,-0.05654883539701642 +45392,226.95999999982985,-0.05654806859499166 +45393,226.96499999982984,-0.05654730196737322 +45394,226.96999999982984,-0.05654653551409591 +45395,226.97499999982983,-0.0565457692350946 +45396,226.97999999982983,-0.05654500313030418 +45397,226.98499999982982,-0.056544237199659564 +45398,226.98999999982982,-0.05654347144309568 +45399,226.99499999982982,-0.056542705860547514 +45400,226.9999999998298,-0.05654194045195004 +45401,227.0049999998298,-0.056541175217238275 +45402,227.0099999998298,-0.05654041015634728 +45403,227.0149999998298,-0.056539645269212103 +45404,227.0199999998298,-0.05653888055576786 +45405,227.0249999998298,-0.05653811601594967 +45406,227.02999999982978,-0.05653735164969268 +45407,227.03499999982978,-0.05653658745693208 +45408,227.03999999982977,-0.05653582343760307 +45409,227.04499999982977,-0.056535059591640874 +45410,227.04999999982977,-0.056534295918980744 +45411,227.05499999982976,-0.056533532419557976 +45412,227.05999999982976,-0.056532769093307865 +45413,227.06499999982975,-0.05653200594016575 +45414,227.06999999982975,-0.056531242960066994 +45415,227.07499999982974,-0.056530480152946996 +45416,227.07999999982974,-0.056529717518741154 +45417,227.08499999982973,-0.05652895505738492 +45418,227.08999999982973,-0.056528192768813754 +45419,227.09499999982972,-0.056527430652963145 +45420,227.09999999982972,-0.056526668709768614 +45421,227.10499999982972,-0.05652590693916571 +45422,227.1099999998297,-0.056525145341089995 +45423,227.1149999998297,-0.05652438391547709 +45424,227.1199999998297,-0.056523622662262595 +45425,227.1249999998297,-0.05652286158138217 +45426,227.1299999998297,-0.05652210067277149 +45427,227.1349999998297,-0.056521339936366245 +45428,227.13999999982968,-0.05652057937210218 +45429,227.14499999982968,-0.05651981897991503 +45430,227.14999999982967,-0.05651905875974059 +45431,227.15499999982967,-0.05651829871151466 +45432,227.15999999982967,-0.05651753883517307 +45433,227.16499999982966,-0.05651677913065169 +45434,227.16999999982966,-0.05651601959788639 +45435,227.17499999982965,-0.05651526023681308 +45436,227.17999999982965,-0.0565145010473677 +45437,227.18499999982964,-0.05651374202948621 +45438,227.18999999982964,-0.05651298318310461 +45439,227.19499999982963,-0.0565122245081589 +45440,227.19999999982963,-0.05651146600458512 +45441,227.20499999982962,-0.05651070767231934 +45442,227.20999999982962,-0.05650994951129765 +45443,227.21499999982962,-0.05650919152145616 +45444,227.2199999998296,-0.05650843370273103 +45445,227.2249999998296,-0.05650767605505841 +45446,227.2299999998296,-0.05650691857837451 +45447,227.2349999998296,-0.056506161272615534 +45448,227.2399999998296,-0.056505404137717735 +45449,227.2449999998296,-0.05650464717361739 +45450,227.24999999982958,-0.05650389038025078 +45451,227.25499999982958,-0.05650313375755425 +45452,227.25999999982957,-0.05650237730546415 +45453,227.26499999982957,-0.05650162102391684 +45454,227.26999999982957,-0.056500864912848725 +45455,227.27499999982956,-0.056500108972196234 +45456,227.27999999982956,-0.0564993532018958 +45457,227.28499999982955,-0.05649859760188393 +45458,227.28999999982955,-0.05649784217209711 +45459,227.29499999982954,-0.05649708691247186 +45460,227.29999999982954,-0.05649633182294476 +45461,227.30499999982953,-0.05649557690345236 +45462,227.30999999982953,-0.056494822153931284 +45463,227.31499999982952,-0.05649406757431815 +45464,227.31999999982952,-0.056493313164549634 +45465,227.32499999982952,-0.056492558924562404 +45466,227.3299999998295,-0.056491804854293164 +45467,227.3349999998295,-0.056491050953678665 +45468,227.3399999998295,-0.05649029722265566 +45469,227.3449999998295,-0.05648954366116091 +45470,227.3499999998295,-0.05648879026913124 +45471,227.3549999998295,-0.05648803704650349 +45472,227.35999999982948,-0.05648728399321452 +45473,227.36499999982948,-0.05648653110920121 +45474,227.36999999982947,-0.05648577839440047 +45475,227.37499999982947,-0.05648502584874923 +45476,227.37999999982947,-0.05648427347218445 +45477,227.38499999982946,-0.05648352126464314 +45478,227.38999999982946,-0.0564827692260623 +45479,227.39499999982945,-0.056482017356378963 +45480,227.39999999982945,-0.056481265655530195 +45481,227.40499999982944,-0.05648051412345308 +45482,227.40999999982944,-0.05647976276008474 +45483,227.41499999982943,-0.0564790115653623 +45484,227.41999999982943,-0.05647826053922293 +45485,227.42499999982942,-0.05647750968160384 +45486,227.42999999982942,-0.056476758992442214 +45487,227.43499999982942,-0.056476008471675304 +45488,227.4399999998294,-0.05647525811924038 +45489,227.4449999998294,-0.056474507935074726 +45490,227.4499999998294,-0.05647375791911566 +45491,227.4549999998294,-0.05647300807130051 +45492,227.4599999998294,-0.05647225839156666 +45493,227.4649999998294,-0.05647150887985149 +45494,227.46999999982938,-0.0564707595360924 +45495,227.47499999982938,-0.05647001036022686 +45496,227.47999999982937,-0.05646926135219234 +45497,227.48499999982937,-0.05646851251192629 +45498,227.48999999982937,-0.056467763839366254 +45499,227.49499999982936,-0.05646701533444977 +45500,227.49999999982936,-0.056466266997114406 +45501,227.50499999982935,-0.05646551882729774 +45502,227.50999999982935,-0.05646477082493741 +45503,227.51499999982934,-0.056464022989971045 +45504,227.51999999982934,-0.056463275322336304 +45505,227.52499999982933,-0.05646252782197088 +45506,227.52999999982933,-0.056461780488812494 +45507,227.53499999982932,-0.056461033322798886 +45508,227.53999999982932,-0.05646028632386782 +45509,227.54499999982932,-0.05645953949195709 +45510,227.5499999998293,-0.0564587928270045 +45511,227.5549999998293,-0.0564580463289479 +45512,227.5599999998293,-0.05645729999772516 +45513,227.5649999998293,-0.05645655383327416 +45514,227.5699999998293,-0.05645580783553281 +45515,227.5749999998293,-0.05645506200443906 +45516,227.57999999982928,-0.05645431633993087 +45517,227.58499999982928,-0.05645357084194623 +45518,227.58999999982927,-0.05645282551042315 +45519,227.59499999982927,-0.05645208034529968 +45520,227.59999999982927,-0.05645133534651387 +45521,227.60499999982926,-0.05645059051400382 +45522,227.60999999982926,-0.056449845847707625 +45523,227.61499999982925,-0.05644910134756343 +45524,227.61999999982925,-0.056448357013509406 +45525,227.62499999982924,-0.05644761284548373 +45526,227.62999999982924,-0.056446868843424626 +45527,227.63499999982923,-0.05644612500727031 +45528,227.63999999982923,-0.05644538133695905 +45529,227.64499999982922,-0.056444637832429125 +45530,227.64999999982922,-0.056443894493618856 +45531,227.65499999982922,-0.05644315132046659 +45532,227.6599999998292,-0.05644240831291064 +45533,227.6649999998292,-0.05644166547088945 +45534,227.6699999998292,-0.056440922794341375 +45535,227.6749999998292,-0.05644018028320488 +45536,227.6799999998292,-0.0564394379374184 +45537,227.6849999998292,-0.05643869575692044 +45538,227.68999999982918,-0.056437953741649484 +45539,227.69499999982918,-0.05643721189154407 +45540,227.69999999982917,-0.05643647020654275 +45541,227.70499999982917,-0.05643572868658411 +45542,227.70999999982917,-0.05643498733160676 +45543,227.71499999982916,-0.05643424614154932 +45544,227.71999999982916,-0.05643350511635043 +45545,227.72499999982915,-0.056432764255948786 +45546,227.72999999982915,-0.056432023560283075 +45547,227.73499999982914,-0.05643128302929203 +45548,227.73999999982914,-0.056430542662914404 +45549,227.74499999982913,-0.05642980246108897 +45550,227.74999999982913,-0.05642906242375452 +45551,227.75499999982912,-0.05642832255084987 +45552,227.75999999982912,-0.05642758284231388 +45553,227.76499999982912,-0.056426843298085415 +45554,227.7699999998291,-0.05642610391810338 +45555,227.7749999998291,-0.056425364702306684 +45556,227.7799999998291,-0.05642462565063427 +45557,227.7849999998291,-0.05642388676302512 +45558,227.7899999998291,-0.056423148039418225 +45559,227.7949999998291,-0.05642240947975259 +45560,227.79999999982908,-0.056421671083967256 +45561,227.80499999982908,-0.05642093285200129 +45562,227.80999999982907,-0.05642019478379378 +45563,227.81499999982907,-0.05641945687928385 +45564,227.81999999982907,-0.05641871913841062 +45565,227.82499999982906,-0.056417981561113266 +45566,227.82999999982906,-0.056417244147330965 +45567,227.83499999982905,-0.056416506897002935 +45568,227.83999999982905,-0.0564157698100684 +45569,227.84499999982904,-0.05641503288646662 +45570,227.84999999982904,-0.05641429612613689 +45571,227.85499999982903,-0.0564135595290185 +45572,227.85999999982903,-0.05641282309505078 +45573,227.86499999982902,-0.056412086824173105 +45574,227.86999999982902,-0.05641135071632482 +45575,227.87499999982901,-0.05641061477144534 +45576,227.879999999829,-0.056409878989474097 +45577,227.884999999829,-0.05640914337035054 +45578,227.889999999829,-0.056408407914014136 +45579,227.894999999829,-0.05640767262040439 +45580,227.899999999829,-0.056406937489460816 +45581,227.904999999829,-0.05640620252112297 +45582,227.90999999982898,-0.05640546771533041 +45583,227.91499999982898,-0.05640473307202273 +45584,227.91999999982897,-0.056403998591139544 +45585,227.92499999982897,-0.056403264272620504 +45586,227.92999999982896,-0.05640253011640526 +45587,227.93499999982896,-0.05640179612243351 +45588,227.93999999982896,-0.056401062290644975 +45589,227.94499999982895,-0.056400328620979365 +45590,227.94999999982895,-0.056399595113376465 +45591,227.95499999982894,-0.05639886176777604 +45592,227.95999999982894,-0.05639812858411791 +45593,227.96499999982893,-0.0563973955623419 +45594,227.96999999982893,-0.056396662702387856 +45595,227.97499999982892,-0.056395930004195675 +45596,227.97999999982892,-0.056395197467705244 +45597,227.98499999982891,-0.05639446509285649 +45598,227.9899999998289,-0.05639373287958938 +45599,227.9949999998289,-0.05639300082784386 +45600,227.9999999998289,-0.05639226893755995 +45601,228.0049999998289,-0.05639153720867765 +45602,228.0099999998289,-0.05639080564113701 +45603,228.0149999998289,-0.0563900742348781 +45604,228.01999999982888,-0.05638934298984101 +45605,228.02499999982888,-0.05638861190596586 +45606,228.02999999982887,-0.056387880983192785 +45607,228.03499999982887,-0.056387150221461936 +45608,228.03999999982886,-0.056386419620713515 +45609,228.04499999982886,-0.05638568918088771 +45610,228.04999999982886,-0.05638495890192476 +45611,228.05499999982885,-0.05638422878376494 +45612,228.05999999982885,-0.0563834988263485 +45613,228.06499999982884,-0.05638276902961576 +45614,228.06999999982884,-0.05638203939350704 +45615,228.07499999982883,-0.056381309917962696 +45616,228.07999999982883,-0.05638058060292309 +45617,228.08499999982882,-0.056379851448328626 +45618,228.08999999982882,-0.056379122454119725 +45619,228.09499999982881,-0.05637839362023682 +45620,228.0999999998288,-0.05637766494662039 +45621,228.1049999998288,-0.056376936433210914 +45622,228.1099999998288,-0.05637620807994891 +45623,228.1149999998288,-0.05637547988677491 +45624,228.1199999998288,-0.05637475185362948 +45625,228.1249999998288,-0.056374023980453186 +45626,228.12999999982878,-0.05637329626718666 +45627,228.13499999982878,-0.056372568713770506 +45628,228.13999999982877,-0.056371841320145395 +45629,228.14499999982877,-0.05637111408625199 +45630,228.14999999982876,-0.056370387012031 +45631,228.15499999982876,-0.056369660097423134 +45632,228.15999999982876,-0.056368933342369164 +45633,228.16499999982875,-0.05636820674680983 +45634,228.16999999982875,-0.05636748031068593 +45635,228.17499999982874,-0.056366754033938295 +45636,228.17999999982874,-0.05636602791650775 +45637,228.18499999982873,-0.056365301958335154 +45638,228.18999999982873,-0.05636457615936139 +45639,228.19499999982872,-0.05636385051952738 +45640,228.19999999982872,-0.056363125038774047 +45641,228.20499999982871,-0.056362399717042336 +45642,228.2099999998287,-0.05636167455427324 +45643,228.2149999998287,-0.05636094955040774 +45644,228.2199999998287,-0.05636022470538687 +45645,228.2249999998287,-0.056359500019151666 +45646,228.2299999998287,-0.05635877549164322 +45647,228.2349999998287,-0.056358051122802594 +45648,228.23999999982868,-0.05635732691257093 +45649,228.24499999982868,-0.05635660286088935 +45650,228.24999999982867,-0.05635587896769903 +45651,228.25499999982867,-0.05635515523294113 +45652,228.25999999982866,-0.05635443165655687 +45653,228.26499999982866,-0.05635370823848749 +45654,228.26999999982866,-0.05635298497867421 +45655,228.27499999982865,-0.05635226187705834 +45656,228.27999999982865,-0.05635153893358117 +45657,228.28499999982864,-0.05635081614818401 +45658,228.28999999982864,-0.0563500935208082 +45659,228.29499999982863,-0.05634937105139513 +45660,228.29999999982863,-0.056348648739886174 +45661,228.30499999982862,-0.056347926586222744 +45662,228.30999999982862,-0.056347204590346284 +45663,228.31499999982861,-0.056346482752198244 +45664,228.3199999998286,-0.0563457610717201 +45665,228.3249999998286,-0.05634503954885338 +45666,228.3299999998286,-0.056344318183539584 +45667,228.3349999998286,-0.05634359697572028 +45668,228.3399999998286,-0.05634287592533703 +45669,228.3449999998286,-0.05634215503233142 +45670,228.34999999982858,-0.05634143429664508 +45671,228.35499999982858,-0.05634071371821965 +45672,228.35999999982857,-0.05633999329699679 +45673,228.36499999982857,-0.0563392730329182 +45674,228.36999999982856,-0.05633855292592557 +45675,228.37499999982856,-0.05633783297596062 +45676,228.37999999982856,-0.05633711318296513 +45677,228.38499999982855,-0.05633639354688086 +45678,228.38999999982855,-0.05633567406764961 +45679,228.39499999982854,-0.05633495474521321 +45680,228.39999999982854,-0.05633423557951349 +45681,228.40499999982853,-0.056333516570492334 +45682,228.40999999982853,-0.05633279771809161 +45683,228.41499999982852,-0.056332079022253255 +45684,228.41999999982852,-0.05633136048291918 +45685,228.42499999982851,-0.05633064210003136 +45686,228.4299999998285,-0.05632992387353176 +45687,228.4349999998285,-0.05632920580336237 +45688,228.4399999998285,-0.05632848788946524 +45689,228.4449999998285,-0.056327770131782404 +45690,228.4499999998285,-0.05632705253025594 +45691,228.4549999998285,-0.056326335084827935 +45692,228.45999999982848,-0.05632561779544049 +45693,228.46499999982848,-0.056324900662035764 +45694,228.46999999982847,-0.05632418368455589 +45695,228.47499999982847,-0.05632346686294307 +45696,228.47999999982846,-0.05632275019713948 +45697,228.48499999982846,-0.05632203368708739 +45698,228.48999999982846,-0.056321317332729014 +45699,228.49499999982845,-0.05632060113400662 +45700,228.49999999982845,-0.056319885090862526 +45701,228.50499999982844,-0.05631916920323903 +45702,228.50999999982844,-0.05631845347107847 +45703,228.51499999982843,-0.05631773789432322 +45704,228.51999999982843,-0.05631702247291564 +45705,228.52499999982842,-0.056316307206798144 +45706,228.52999999982842,-0.056315592095913164 +45707,228.53499999982841,-0.05631487714020314 +45708,228.5399999998284,-0.05631416233961055 +45709,228.5449999998284,-0.05631344769407788 +45710,228.5499999998284,-0.056312733203547655 +45711,228.5549999998284,-0.056312018867962395 +45712,228.5599999998284,-0.05631130468726467 +45713,228.5649999998284,-0.056310590661397056 +45714,228.56999999982838,-0.05630987679030217 +45715,228.57499999982838,-0.056309163073922634 +45716,228.57999999982837,-0.0563084495122011 +45717,228.58499999982837,-0.056307736105080226 +45718,228.58999999982836,-0.05630702285250271 +45719,228.59499999982836,-0.056306309754411275 +45720,228.59999999982836,-0.05630559681074864 +45721,228.60499999982835,-0.05630488402145757 +45722,228.60999999982835,-0.05630417138648085 +45723,228.61499999982834,-0.05630345890576128 +45724,228.61999999982834,-0.05630274657924168 +45725,228.62499999982833,-0.05630203440686492 +45726,228.62999999982833,-0.056301322388573855 +45727,228.63499999982832,-0.05630061052431135 +45728,228.63999999982832,-0.05629989881402035 +45729,228.64499999982831,-0.056299187257643796 +45730,228.6499999998283,-0.056298475855124624 +45731,228.6549999998283,-0.05629776460640581 +45732,228.6599999998283,-0.05629705351143036 +45733,228.6649999998283,-0.05629634257014131 +45734,228.6699999998283,-0.05629563178248168 +45735,228.6749999998283,-0.05629492114839455 +45736,228.67999999982828,-0.05629421066782301 +45737,228.68499999982828,-0.05629350034071017 +45738,228.68999999982827,-0.05629279016699915 +45739,228.69499999982827,-0.056292080146633124 +45740,228.69999999982826,-0.056291370279555254 +45741,228.70499999982826,-0.056290660565708736 +45742,228.70999999982826,-0.0562899510050368 +45743,228.71499999982825,-0.05628924159748267 +45744,228.71999999982825,-0.056288532342989625 +45745,228.72499999982824,-0.056287823241500945 +45746,228.72999999982824,-0.056287114292959926 +45747,228.73499999982823,-0.0562864054973099 +45748,228.73999999982823,-0.056285696854494235 +45749,228.74499999982822,-0.056284988364456286 +45750,228.74999999982822,-0.056284280027139436 +45751,228.75499999982821,-0.05628357184248712 +45752,228.7599999998282,-0.056282863810442764 +45753,228.7649999998282,-0.05628215593094983 +45754,228.7699999998282,-0.0562814482039518 +45755,228.7749999998282,-0.05628074062939217 +45756,228.7799999998282,-0.05628003320721446 +45757,228.7849999998282,-0.05627932593736222 +45758,228.78999999982818,-0.05627861881977901 +45759,228.79499999982818,-0.05627791185440843 +45760,228.79999999982817,-0.05627720504119408 +45761,228.80499999982817,-0.0562764983800796 +45762,228.80999999982816,-0.05627579187100864 +45763,228.81499999982816,-0.05627508551392486 +45764,228.81999999982816,-0.056274379308771987 +45765,228.82499999982815,-0.056273673255493706 +45766,228.82999999982815,-0.05627296735403377 +45767,228.83499999982814,-0.05627226160433594 +45768,228.83999999982814,-0.05627155600634399 +45769,228.84499999982813,-0.05627085056000172 +45770,228.84999999982813,-0.05627014526525298 +45771,228.85499999982812,-0.05626944012204159 +45772,228.85999999982812,-0.05626873513031143 +45773,228.86499999982811,-0.056268030290006384 +45774,228.8699999998281,-0.05626732560107035 +45775,228.8749999998281,-0.05626662106344729 +45776,228.8799999998281,-0.05626591667708114 +45777,228.8849999998281,-0.05626521244191587 +45778,228.8899999998281,-0.05626450835789548 +45779,228.8949999998281,-0.056263804424963995 +45780,228.89999999982808,-0.056263100643065445 +45781,228.90499999982808,-0.056262397012143896 +45782,228.90999999982807,-0.056261693532143414 +45783,228.91499999982807,-0.05626099020300812 +45784,228.91999999982806,-0.05626028702468213 +45785,228.92499999982806,-0.05625958399710959 +45786,228.92999999982806,-0.056258881120234666 +45787,228.93499999982805,-0.056258178394001546 +45788,228.93999999982805,-0.056257475818354434 +45789,228.94499999982804,-0.056256773393237584 +45790,228.94999999982804,-0.056256071118595215 +45791,228.95499999982803,-0.056255368994371606 +45792,228.95999999982803,-0.056254667020511066 +45793,228.96499999982802,-0.05625396519695789 +45794,228.96999999982802,-0.05625326352365644 +45795,228.97499999982801,-0.056252562000551065 +45796,228.979999999828,-0.05625186062758613 +45797,228.984999999828,-0.05625115940470605 +45798,228.989999999828,-0.05625045833185523 +45799,228.994999999828,-0.05624975740897811 +45800,228.999999999828,-0.05624905663601918 +45801,229.004999999828,-0.0562483560129229 +45802,229.00999999982798,-0.05624765553963378 +45803,229.01499999982798,-0.05624695521609636 +45804,229.01999999982797,-0.05624625504225516 +45805,229.02499999982797,-0.05624555501805476 +45806,229.02999999982796,-0.05624485514343976 +45807,229.03499999982796,-0.056244155418354765 +45808,229.03999999982796,-0.056243455842744414 +45809,229.04499999982795,-0.05624275641655334 +45810,229.04999999982795,-0.05624205713972623 +45811,229.05499999982794,-0.05624135801220777 +45812,229.05999999982794,-0.05624065903394268 +45813,229.06499999982793,-0.0562399602048757 +45814,229.06999999982793,-0.05623926152495159 +45815,229.07499999982792,-0.056238562994115116 +45816,229.07999999982792,-0.056237864612311075 +45817,229.08499999982791,-0.056237166379484296 +45818,229.0899999998279,-0.056236468295579614 +45819,229.0949999998279,-0.056235770360541906 +45820,229.0999999998279,-0.056235072574316036 +45821,229.1049999998279,-0.05623437493684692 +45822,229.1099999998279,-0.05623367744807948 +45823,229.1149999998279,-0.05623298010795865 +45824,229.11999999982788,-0.05623228291642941 +45825,229.12499999982788,-0.05623158587343674 +45826,229.12999999982787,-0.05623088897892565 +45827,229.13499999982787,-0.05623019223284116 +45828,229.13999999982786,-0.05622949563512833 +45829,229.14499999982786,-0.05622879918573223 +45830,229.14999999982786,-0.05622810288459793 +45831,229.15499999982785,-0.05622740673167057 +45832,229.15999999982785,-0.056226710726895265 +45833,229.16499999982784,-0.056226014870217174 +45834,229.16999999982784,-0.056225319161581466 +45835,229.17499999982783,-0.056224623600933346 +45836,229.17999999982783,-0.05622392818821801 +45837,229.18499999982782,-0.05622323292338071 +45838,229.18999999982782,-0.05622253780636669 +45839,229.19499999982781,-0.05622184283712123 +45840,229.1999999998278,-0.05622114801558963 +45841,229.2049999998278,-0.05622045334171722 +45842,229.2099999998278,-0.056219758815449314 +45843,229.2149999998278,-0.05621906443673129 +45844,229.2199999998278,-0.056218370205508524 +45845,229.2249999998278,-0.056217676121726415 +45846,229.22999999982778,-0.05621698218533038 +45847,229.23499999982778,-0.05621628839626587 +45848,229.23999999982777,-0.056215594754478335 +45849,229.24499999982777,-0.05621490125991326 +45850,229.24999999982776,-0.05621420791251616 +45851,229.25499999982776,-0.05621351471223255 +45852,229.25999999982776,-0.056212821659007976 +45853,229.26499999982775,-0.05621212875278799 +45854,229.26999999982775,-0.056211435993518195 +45855,229.27499999982774,-0.056210743381144186 +45856,229.27999999982774,-0.05621005091561159 +45857,229.28499999982773,-0.05620935859686607 +45858,229.28999999982773,-0.056208666424853275 +45859,229.29499999982772,-0.05620797439951889 +45860,229.29999999982772,-0.05620728252080864 +45861,229.30499999982771,-0.05620659078866822 +45862,229.3099999998277,-0.05620589920304342 +45863,229.3149999998277,-0.05620520776387999 +45864,229.3199999998277,-0.05620451647112371 +45865,229.3249999998277,-0.0562038253247204 +45866,229.3299999998277,-0.05620313432461589 +45867,229.3349999998277,-0.05620244347075602 +45868,229.33999999982768,-0.05620175276308669 +45869,229.34499999982768,-0.056201062201553756 +45870,229.34999999982767,-0.05620037178610315 +45871,229.35499999982767,-0.05619968151668078 +45872,229.35999999982766,-0.05619899139323263 +45873,229.36499999982766,-0.05619830141570465 +45874,229.36999999982766,-0.05619761158404285 +45875,229.37499999982765,-0.05619692189819321 +45876,229.37999999982765,-0.0561962323581018 +45877,229.38499999982764,-0.056195542963714644 +45878,229.38999999982764,-0.05619485371497784 +45879,229.39499999982763,-0.05619416461183747 +45880,229.39999999982763,-0.056193475654239634 +45881,229.40499999982762,-0.05619278684213048 +45882,229.40999999982762,-0.05619209817545615 +45883,229.41499999982761,-0.05619140965416284 +45884,229.4199999998276,-0.05619072127819672 +45885,229.4249999998276,-0.056190033047504015 +45886,229.4299999998276,-0.05618934496203097 +45887,229.4349999998276,-0.05618865702172383 +45888,229.4399999998276,-0.05618796922652886 +45889,229.4449999998276,-0.05618728157639237 +45890,229.44999999982758,-0.056186594071260657 +45891,229.45499999982758,-0.056185906711080064 +45892,229.45999999982757,-0.05618521949579696 +45893,229.46499999982757,-0.05618453242535769 +45894,229.46999999982756,-0.056183845499708666 +45895,229.47499999982756,-0.05618315871879631 +45896,229.47999999982756,-0.05618247208256705 +45897,229.48499999982755,-0.056181785590967336 +45898,229.48999999982755,-0.05618109924394365 +45899,229.49499999982754,-0.05618041304144248 +45900,229.49999999982754,-0.05617972698341033 +45901,229.50499999982753,-0.05617904106979377 +45902,229.50999999982753,-0.05617835530053932 +45903,229.51499999982752,-0.05617766967559357 +45904,229.51999999982752,-0.0561769841949031 +45905,229.52499999982751,-0.05617629885841454 +45906,229.5299999998275,-0.05617561366607453 +45907,229.5349999998275,-0.05617492861782971 +45908,229.5399999998275,-0.056174243713626754 +45909,229.5449999998275,-0.056173558953412354 +45910,229.5499999998275,-0.05617287433713322 +45911,229.5549999998275,-0.05617218986473611 +45912,229.55999999982748,-0.05617150553616776 +45913,229.56499999982748,-0.056170821351374925 +45914,229.56999999982747,-0.05617013731030443 +45915,229.57499999982747,-0.05616945341290307 +45916,229.57999999982746,-0.05616876965911767 +45917,229.58499999982746,-0.05616808604889511 +45918,229.58999999982746,-0.05616740258218224 +45919,229.59499999982745,-0.056166719258925954 +45920,229.59999999982745,-0.05616603607907317 +45921,229.60499999982744,-0.0561653530425708 +45922,229.60999999982744,-0.05616467014936582 +45923,229.61499999982743,-0.05616398739940519 +45924,229.61999999982743,-0.056163304792635885 +45925,229.62499999982742,-0.05616262232900494 +45926,229.62999999982742,-0.056161940008459366 +45927,229.63499999982741,-0.05616125783094623 +45928,229.6399999998274,-0.056160575796412586 +45929,229.6449999998274,-0.05615989390480553 +45930,229.6499999998274,-0.05615921215607216 +45931,229.6549999998274,-0.05615853055015961 +45932,229.6599999998274,-0.05615784908701504 +45933,229.6649999998274,-0.05615716776658559 +45934,229.66999999982738,-0.056156486588818465 +45935,229.67499999982738,-0.05615580555366087 +45936,229.67999999982737,-0.05615512466106001 +45937,229.68499999982737,-0.05615444391096317 +45938,229.68999999982736,-0.056153763303317575 +45939,229.69499999982736,-0.05615308283807053 +45940,229.69999999982736,-0.05615240251516934 +45941,229.70499999982735,-0.05615172233456132 +45942,229.70999999982735,-0.05615104229619381 +45943,229.71499999982734,-0.05615036240001418 +45944,229.71999999982734,-0.056149682645969805 +45945,229.72499999982733,-0.05614900303400809 +45946,229.72999999982733,-0.05614832356407645 +45947,229.73499999982732,-0.056147644236122334 +45948,229.73999999982732,-0.05614696505009319 +45949,229.74499999982731,-0.056146286005936505 +45950,229.7499999998273,-0.056145607103599775 +45951,229.7549999998273,-0.05614492834303052 +45952,229.7599999998273,-0.05614424972417626 +45953,229.7649999998273,-0.05614357124698458 +45954,229.7699999998273,-0.056142892911403036 +45955,229.7749999998273,-0.056142214717379235 +45956,229.77999999982728,-0.05614153666486078 +45957,229.78499999982728,-0.05614085875379531 +45958,229.78999999982727,-0.05614018098413048 +45959,229.79499999982727,-0.05613950335581396 +45960,229.79999999982726,-0.056138825868793436 +45961,229.80499999982726,-0.05613814852301663 +45962,229.80999999982726,-0.056137471318431255 +45963,229.81499999982725,-0.05613679425498508 +45964,229.81999999982725,-0.05613611733262586 +45965,229.82499999982724,-0.05613544055130139 +45966,229.82999999982724,-0.056134763910959465 +45967,229.83499999982723,-0.05613408741154793 +45968,229.83999999982723,-0.056133411053014615 +45969,229.84499999982722,-0.05613273483530739 +45970,229.84999999982722,-0.05613205875837413 +45971,229.8549999998272,-0.05613138282216275 +45972,229.8599999998272,-0.056130707026621166 +45973,229.8649999998272,-0.05613003137169733 +45974,229.8699999998272,-0.05612935585733919 +45975,229.8749999998272,-0.05612868048349474 +45976,229.8799999998272,-0.056128005250111954 +45977,229.8849999998272,-0.056127330157138874 +45978,229.88999999982718,-0.056126655204523535 +45979,229.89499999982718,-0.056125980392213976 +45980,229.89999999982717,-0.05612530572015828 +45981,229.90499999982717,-0.05612463118830455 +45982,229.90999999982716,-0.05612395679660088 +45983,229.91499999982716,-0.05612328254499542 +45984,229.91999999982716,-0.05612260843343631 +45985,229.92499999982715,-0.056121934461871734 +45986,229.92999999982715,-0.05612126063024988 +45987,229.93499999982714,-0.05612058693851894 +45988,229.93999999982714,-0.05611991338662716 +45989,229.94499999982713,-0.05611923997452277 +45990,229.94999999982713,-0.056118566702154045 +45991,229.95499999982712,-0.05611789356946926 +45992,229.95999999982712,-0.05611722057641673 +45993,229.9649999998271,-0.056116547722944776 +45994,229.9699999998271,-0.056115875009001726 +45995,229.9749999998271,-0.05611520243453596 +45996,229.9799999998271,-0.056114529999495844 +45997,229.9849999998271,-0.05611385770382978 +45998,229.9899999998271,-0.056113185547486184 +45999,229.9949999998271,-0.05611251353041348 +46000,229.99999999982708,-0.056111841652560134 +46001,230.00499999982708,-0.05611116991387462 +46002,230.00999999982707,-0.05611049831430543 +46003,230.01499999982707,-0.056109826853801066 +46004,230.01999999982706,-0.05610915553231007 +46005,230.02499999982706,-0.05610848434978098 +46006,230.02999999982706,-0.05610781330616237 +46007,230.03499999982705,-0.056107142401402826 +46008,230.03999999982705,-0.05610647163545096 +46009,230.04499999982704,-0.056105801008255386 +46010,230.04999999982704,-0.05610513051976474 +46011,230.05499999982703,-0.056104460169927706 +46012,230.05999999982703,-0.056103789958692946 +46013,230.06499999982702,-0.056103119886009155 +46014,230.06999999982702,-0.056102449951825055 +46015,230.074999999827,-0.05610178015608939 +46016,230.079999999827,-0.05610111049875091 +46017,230.084999999827,-0.05610044097975839 +46018,230.089999999827,-0.05609977159906062 +46019,230.094999999827,-0.05609910235660641 +46020,230.099999999827,-0.05609843325234459 +46021,230.104999999827,-0.056097764286224004 +46022,230.10999999982698,-0.05609709545819354 +46023,230.11499999982698,-0.05609642676820205 +46024,230.11999999982697,-0.056095758216198464 +46025,230.12499999982697,-0.056095089802131695 +46026,230.12999999982696,-0.05609442152595068 +46027,230.13499999982696,-0.056093753387604396 +46028,230.13999999982695,-0.056093085387041795 +46029,230.14499999982695,-0.056092417524211895 +46030,230.14999999982695,-0.05609174979906371 +46031,230.15499999982694,-0.05609108221154627 +46032,230.15999999982694,-0.056090414761608615 +46033,230.16499999982693,-0.05608974744919983 +46034,230.16999999982693,-0.05608908027426901 +46035,230.17499999982692,-0.05608841323676525 +46036,230.17999999982692,-0.05608774633663769 +46037,230.1849999998269,-0.05608707957383547 +46038,230.1899999998269,-0.05608641294830774 +46039,230.1949999998269,-0.05608574646000371 +46040,230.1999999998269,-0.056085080108872545 +46041,230.2049999998269,-0.05608441389486349 +46042,230.2099999998269,-0.056083747817925786 +46043,230.2149999998269,-0.05608308187800867 +46044,230.21999999982688,-0.05608241607506142 +46045,230.22499999982688,-0.056081750409033335 +46046,230.22999999982687,-0.05608108487987373 +46047,230.23499999982687,-0.05608041948753193 +46048,230.23999999982686,-0.05607975423195727 +46049,230.24499999982686,-0.05607908911309913 +46050,230.24999999982685,-0.0560784241309069 +46051,230.25499999982685,-0.05607775928532996 +46052,230.25999999982685,-0.05607709457631775 +46053,230.26499999982684,-0.05607643000381971 +46054,230.26999999982684,-0.0560757655677853 +46055,230.27499999982683,-0.05607510126816398 +46056,230.27999999982683,-0.05607443710490524 +46057,230.28499999982682,-0.05607377307795862 +46058,230.28999999982682,-0.05607310918727363 +46059,230.2949999998268,-0.05607244543279982 +46060,230.2999999998268,-0.056071781814486785 +46061,230.3049999998268,-0.05607111833228407 +46062,230.3099999998268,-0.0560704549861413 +46063,230.3149999998268,-0.056069791776008106 +46064,230.3199999998268,-0.05606912870183411 +46065,230.3249999998268,-0.05606846576356897 +46066,230.32999999982678,-0.05606780296116237 +46067,230.33499999982678,-0.056067140294564013 +46068,230.33999999982677,-0.0560664777637236 +46069,230.34499999982677,-0.056065815368590864 +46070,230.34999999982676,-0.056065153109115556 +46071,230.35499999982676,-0.05606449098524745 +46072,230.35999999982675,-0.05606382899693631 +46073,230.36499999982675,-0.05606316714413197 +46074,230.36999999982675,-0.05606250542678423 +46075,230.37499999982674,-0.056061843844842925 +46076,230.37999999982674,-0.05606118239825793 +46077,230.38499999982673,-0.056060521086979107 +46078,230.38999999982673,-0.05605985991095636 +46079,230.39499999982672,-0.05605919887013961 +46080,230.39999999982672,-0.05605853796447877 +46081,230.4049999998267,-0.0560578771939238 +46082,230.4099999998267,-0.05605721655842466 +46083,230.4149999998267,-0.05605655605793132 +46084,230.4199999998267,-0.0560558956923938 +46085,230.4249999998267,-0.05605523546176212 +46086,230.4299999998267,-0.05605457536598633 +46087,230.4349999998267,-0.056053915405016454 +46088,230.43999999982668,-0.05605325557880258 +46089,230.44499999982668,-0.056052595887294804 +46090,230.44999999982667,-0.05605193633044324 +46091,230.45499999982667,-0.05605127690819801 +46092,230.45999999982666,-0.05605061762050926 +46093,230.46499999982666,-0.056049958467327146 +46094,230.46999999982665,-0.056049299448601875 +46095,230.47499999982665,-0.05604864056428362 +46096,230.47999999982665,-0.05604798181432261 +46097,230.48499999982664,-0.05604732319866908 +46098,230.48999999982664,-0.05604666471727327 +46099,230.49499999982663,-0.05604600637008548 +46100,230.49999999982663,-0.05604534815705597 +46101,230.50499999982662,-0.05604469007813506 +46102,230.50999999982662,-0.05604403213327308 +46103,230.5149999998266,-0.05604337432242035 +46104,230.5199999998266,-0.05604271664552725 +46105,230.5249999998266,-0.05604205910254416 +46106,230.5299999998266,-0.056041401693421464 +46107,230.5349999998266,-0.056040744418109585 +46108,230.5399999998266,-0.05604008727655894 +46109,230.5449999998266,-0.056039430268719985 +46110,230.54999999982658,-0.0560387733945432 +46111,230.55499999982658,-0.05603811665397904 +46112,230.55999999982657,-0.056037460046978044 +46113,230.56499999982657,-0.0560368035734907 +46114,230.56999999982656,-0.05603614723346757 +46115,230.57499999982656,-0.05603549102685921 +46116,230.57999999982655,-0.05603483495361616 +46117,230.58499999982655,-0.056034179013689026 +46118,230.58999999982655,-0.05603352320702844 +46119,230.59499999982654,-0.05603286753358501 +46120,230.59999999982654,-0.05603221199330938 +46121,230.60499999982653,-0.05603155658615219 +46122,230.60999999982653,-0.05603090131206416 +46123,230.61499999982652,-0.056030246170995966 +46124,230.61999999982652,-0.056029591162898316 +46125,230.6249999998265,-0.05602893628772195 +46126,230.6299999998265,-0.05602828154541761 +46127,230.6349999998265,-0.05602762693593607 +46128,230.6399999998265,-0.05602697245922812 +46129,230.6449999998265,-0.05602631811524455 +46130,230.6499999998265,-0.05602566390393618 +46131,230.6549999998265,-0.056025009825253845 +46132,230.65999999982648,-0.05602435587914842 +46133,230.66499999982648,-0.05602370206557076 +46134,230.66999999982647,-0.05602304838447175 +46135,230.67499999982647,-0.056022394835802306 +46136,230.67999999982646,-0.05602174141951335 +46137,230.68499999982646,-0.05602108813555583 +46138,230.68999999982645,-0.05602043498388071 +46139,230.69499999982645,-0.056019781964438936 +46140,230.69999999982645,-0.05601912907718153 +46141,230.70499999982644,-0.0560184763220595 +46142,230.70999999982644,-0.05601782369902388 +46143,230.71499999982643,-0.056017171208025705 +46144,230.71999999982643,-0.05601651884901604 +46145,230.72499999982642,-0.05601586662194598 +46146,230.72999999982642,-0.0560152145267666 +46147,230.7349999998264,-0.056014562563429036 +46148,230.7399999998264,-0.05601391073188442 +46149,230.7449999998264,-0.056013259032083894 +46150,230.7499999998264,-0.05601260746397864 +46151,230.7549999998264,-0.05601195602751983 +46152,230.7599999998264,-0.05601130472265867 +46153,230.7649999998264,-0.056010653549346374 +46154,230.76999999982638,-0.0560100025075342 +46155,230.77499999982638,-0.05600935159717338 +46156,230.77999999982637,-0.056008700818215205 +46157,230.78499999982637,-0.05600805017061096 +46158,230.78999999982636,-0.05600739965431194 +46159,230.79499999982636,-0.056006749269269476 +46160,230.79999999982635,-0.05600609901543493 +46161,230.80499999982635,-0.05600544889275963 +46162,230.80999999982635,-0.05600479890119496 +46163,230.81499999982634,-0.05600414904069233 +46164,230.81999999982634,-0.05600349931120313 +46165,230.82499999982633,-0.0560028497126788 +46166,230.82999999982633,-0.05600220024507077 +46167,230.83499999982632,-0.0560015509083305 +46168,230.83999999982632,-0.0560009017024095 +46169,230.8449999998263,-0.05600025262725923 +46170,230.8499999998263,-0.055999603682831224 +46171,230.8549999998263,-0.055998954869077015 +46172,230.8599999998263,-0.05599830618594812 +46173,230.8649999998263,-0.05599765763339615 +46174,230.8699999998263,-0.055997009211372656 +46175,230.8749999998263,-0.05599636091982924 +46176,230.87999999982628,-0.05599571275871753 +46177,230.88499999982628,-0.055995064727989145 +46178,230.88999999982627,-0.05599441682759574 +46179,230.89499999982627,-0.05599376905748899 +46180,230.89999999982626,-0.05599312141762057 +46181,230.90499999982626,-0.0559924739079422 +46182,230.90999999982625,-0.055991826528405585 +46183,230.91499999982625,-0.05599117927896245 +46184,230.91999999982625,-0.05599053215956455 +46185,230.92499999982624,-0.05598988517016368 +46186,230.92999999982624,-0.055989238310711585 +46187,230.93499999982623,-0.05598859158116011 +46188,230.93999999982623,-0.055987944981461056 +46189,230.94499999982622,-0.05598729851156625 +46190,230.94999999982622,-0.055986652171427564 +46191,230.9549999998262,-0.055986005960996864 +46192,230.9599999998262,-0.05598535988022604 +46193,230.9649999998262,-0.055984713929067 +46194,230.9699999998262,-0.05598406810747166 +46195,230.9749999998262,-0.055983422415391955 +46196,230.9799999998262,-0.05598277685277985 +46197,230.9849999998262,-0.05598213141958731 +46198,230.98999999982618,-0.05598148611576633 +46199,230.99499999982618,-0.05598084094126892 +46200,230.99999999982617,-0.05598019589604711 +46201,231.00499999982617,-0.055979550980052924 +46202,231.00999999982616,-0.05597890619323842 +46203,231.01499999982616,-0.05597826153555568 +46204,231.01999999982615,-0.05597761700695679 +46205,231.02499999982615,-0.055976972607393864 +46206,231.02999999982615,-0.05597632833681902 +46207,231.03499999982614,-0.055975684195184415 +46208,231.03999999982614,-0.05597504018244219 +46209,231.04499999982613,-0.05597439629854452 +46210,231.04999999982613,-0.0559737525434436 +46211,231.05499999982612,-0.05597310891709164 +46212,231.05999999982612,-0.05597246541944087 +46213,231.0649999998261,-0.05597182205044352 +46214,231.0699999998261,-0.05597117881005187 +46215,231.0749999998261,-0.05597053569821817 +46216,231.0799999998261,-0.05596989271489474 +46217,231.0849999998261,-0.05596924986003387 +46218,231.0899999998261,-0.055968607133587894 +46219,231.0949999998261,-0.05596796453550914 +46220,231.09999999982608,-0.05596732206574998 +46221,231.10499999982608,-0.055966679724262794 +46222,231.10999999982607,-0.05596603751099997 +46223,231.11499999982607,-0.05596539542591391 +46224,231.11999999982606,-0.055964753468957046 +46225,231.12499999982606,-0.05596411164008181 +46226,231.12999999982605,-0.05596346993924068 +46227,231.13499999982605,-0.05596282836638612 +46228,231.13999999982605,-0.05596218692147062 +46229,231.14499999982604,-0.0559615456044467 +46230,231.14999999982604,-0.05596090441526687 +46231,231.15499999982603,-0.055960263353883676 +46232,231.15999999982603,-0.05595962242024969 +46233,231.16499999982602,-0.055958981614317484 +46234,231.16999999982602,-0.05595834093603964 +46235,231.174999999826,-0.05595770038536876 +46236,231.179999999826,-0.05595705996225748 +46237,231.184999999826,-0.05595641966665845 +46238,231.189999999826,-0.05595577949852431 +46239,231.194999999826,-0.055955139457807744 +46240,231.199999999826,-0.055954499544461446 +46241,231.204999999826,-0.05595385975843811 +46242,231.20999999982598,-0.05595322009969048 +46243,231.21499999982598,-0.05595258056817129 +46244,231.21999999982597,-0.05595194116383327 +46245,231.22499999982597,-0.05595130188662922 +46246,231.22999999982596,-0.05595066273651193 +46247,231.23499999982596,-0.05595002371343421 +46248,231.23999999982595,-0.05594938481734886 +46249,231.24499999982595,-0.055948746048208736 +46250,231.24999999982595,-0.05594810740596668 +46251,231.25499999982594,-0.05594746889057558 +46252,231.25999999982594,-0.055946830501988315 +46253,231.26499999982593,-0.0559461922401578 +46254,231.26999999982593,-0.055945554105036946 +46255,231.27499999982592,-0.055944916096578694 +46256,231.27999999982592,-0.055944278214735986 +46257,231.2849999998259,-0.055943640459461805 +46258,231.2899999998259,-0.05594300283070913 +46259,231.2949999998259,-0.055942365328430985 +46260,231.2999999998259,-0.05594172795258035 +46261,231.3049999998259,-0.05594109070311029 +46262,231.3099999998259,-0.05594045357997385 +46263,231.3149999998259,-0.05593981658312409 +46264,231.31999999982588,-0.05593917971251409 +46265,231.32499999982588,-0.05593854296809697 +46266,231.32999999982587,-0.05593790634982584 +46267,231.33499999982587,-0.055937269857653835 +46268,231.33999999982586,-0.055936633491534084 +46269,231.34499999982586,-0.05593599725141978 +46270,231.34999999982585,-0.055935361137264085 +46271,231.35499999982585,-0.0559347251490202 +46272,231.35999999982585,-0.05593408928664134 +46273,231.36499999982584,-0.055933453550080746 +46274,231.36999999982584,-0.055932817939291654 +46275,231.37499999982583,-0.05593218245422733 +46276,231.37999999982583,-0.05593154709484105 +46277,231.38499999982582,-0.05593091186108612 +46278,231.38999999982582,-0.055930276752915835 +46279,231.3949999998258,-0.05592964177028353 +46280,231.3999999998258,-0.05592900691314253 +46281,231.4049999998258,-0.05592837218144622 +46282,231.4099999998258,-0.055927737575147976 +46283,231.4149999998258,-0.055927103094201173 +46284,231.4199999998258,-0.05592646873855922 +46285,231.4249999998258,-0.05592583450817556 +46286,231.42999999982578,-0.05592520040300362 +46287,231.43499999982578,-0.05592456642299685 +46288,231.43999999982577,-0.05592393256810873 +46289,231.44499999982577,-0.05592329883829274 +46290,231.44999999982576,-0.0559226652335024 +46291,231.45499999982576,-0.05592203175369122 +46292,231.45999999982575,-0.05592139839881273 +46293,231.46499999982575,-0.055920765168820497 +46294,231.46999999982575,-0.05592013206366808 +46295,231.47499999982574,-0.055919499083309065 +46296,231.47999999982574,-0.05591886622769704 +46297,231.48499999982573,-0.05591823349678563 +46298,231.48999999982573,-0.055917600890528475 +46299,231.49499999982572,-0.05591696840887923 +46300,231.49999999982572,-0.05591633605179155 +46301,231.5049999998257,-0.055915703819219106 +46302,231.5099999998257,-0.0559150717111156 +46303,231.5149999998257,-0.05591443972743474 +46304,231.5199999998257,-0.055913807868130265 +46305,231.5249999998257,-0.055913176133155905 +46306,231.5299999998257,-0.05591254452246543 +46307,231.5349999998257,-0.05591191303601261 +46308,231.53999999982568,-0.055911281673751236 +46309,231.54499999982568,-0.05591065043563512 +46310,231.54999999982567,-0.05591001932161808 +46311,231.55499999982567,-0.05590938833165397 +46312,231.55999999982566,-0.055908757465696624 +46313,231.56499999982566,-0.05590812672369992 +46314,231.56999999982565,-0.05590749610561775 +46315,231.57499999982565,-0.05590686561140402 +46316,231.57999999982565,-0.05590623524101264 +46317,231.58499999982564,-0.055905604994397534 +46318,231.58999999982564,-0.055904974871512664 +46319,231.59499999982563,-0.055904344872311995 +46320,231.59999999982563,-0.055903714996749516 +46321,231.60499999982562,-0.05590308524477921 +46322,231.60999999982562,-0.0559024556163551 +46323,231.6149999998256,-0.055901826111431206 +46324,231.6199999998256,-0.055901196729961584 +46325,231.6249999998256,-0.055900567471900274 +46326,231.6299999998256,-0.05589993833720138 +46327,231.6349999998256,-0.05589930932581896 +46328,231.6399999998256,-0.05589868043770714 +46329,231.6449999998256,-0.05589805167282005 +46330,231.64999999982558,-0.055897423031111816 +46331,231.65499999982558,-0.0558967945125366 +46332,231.65999999982557,-0.05589616611704857 +46333,231.66499999982557,-0.055895537844601904 +46334,231.66999999982556,-0.05589490969515082 +46335,231.67499999982556,-0.055894281668649515 +46336,231.67999999982555,-0.05589365376505224 +46337,231.68499999982555,-0.05589302598431323 +46338,231.68999999982555,-0.055892398326386754 +46339,231.69499999982554,-0.05589177079122709 +46340,231.69999999982554,-0.05589114337878854 +46341,231.70499999982553,-0.05589051608902541 +46342,231.70999999982553,-0.05588988892189203 +46343,231.71499999982552,-0.05588926187734272 +46344,231.71999999982552,-0.055888634955331855 +46345,231.7249999998255,-0.05588800815581381 +46346,231.7299999998255,-0.05588738147874297 +46347,231.7349999998255,-0.055886754924073745 +46348,231.7399999998255,-0.05588612849176055 +46349,231.7449999998255,-0.0558855021817578 +46350,231.7499999998255,-0.05588487599401998 +46351,231.7549999998255,-0.055884249928501536 +46352,231.75999999982548,-0.05588362398515694 +46353,231.76499999982548,-0.055882998163940725 +46354,231.76999999982547,-0.05588237246480737 +46355,231.77499999982547,-0.055881746887711414 +46356,231.77999999982546,-0.0558811214326074 +46357,231.78499999982546,-0.05588049609944989 +46358,231.78999999982545,-0.055879870888193454 +46359,231.79499999982545,-0.05587924579879268 +46360,231.79999999982545,-0.05587862083120219 +46361,231.80499999982544,-0.05587799598537657 +46362,231.80999999982544,-0.0558773712612705 +46363,231.81499999982543,-0.0558767466588386 +46364,231.81999999982543,-0.055876122178035545 +46365,231.82499999982542,-0.05587549781881602 +46366,231.82999999982542,-0.05587487358113472 +46367,231.8349999998254,-0.05587424946494636 +46368,231.8399999998254,-0.05587362547020567 +46369,231.8449999998254,-0.05587300159686738 +46370,231.8499999998254,-0.05587237784488627 +46371,231.8549999998254,-0.055871754214217105 +46372,231.8599999998254,-0.05587113070481466 +46373,231.8649999998254,-0.05587050731663376 +46374,231.86999999982538,-0.05586988404962922 +46375,231.87499999982538,-0.05586926090375587 +46376,231.87999999982537,-0.05586863787896857 +46377,231.88499999982537,-0.05586801497522218 +46378,231.88999999982536,-0.05586739219247158 +46379,231.89499999982536,-0.05586676953067168 +46380,231.89999999982535,-0.05586614698977736 +46381,231.90499999982535,-0.055865524569743585 +46382,231.90999999982535,-0.05586490227052528 +46383,231.91499999982534,-0.0558642800920774 +46384,231.91999999982534,-0.05586365803435491 +46385,231.92499999982533,-0.05586303609731283 +46386,231.92999999982533,-0.05586241428090614 +46387,231.93499999982532,-0.055861792585089845 +46388,231.93999999982532,-0.055861171009819 +46389,231.9449999998253,-0.05586054955504865 +46390,231.9499999998253,-0.055859928220733865 +46391,231.9549999998253,-0.05585930700682971 +46392,231.9599999998253,-0.05585868591329128 +46393,231.9649999998253,-0.055858064940073705 +46394,231.9699999998253,-0.05585744408713208 +46395,231.9749999998253,-0.05585682335442157 +46396,231.97999999982528,-0.05585620274189731 +46397,231.98499999982528,-0.055855582249514486 +46398,231.98999999982527,-0.05585496187722828 +46399,231.99499999982527,-0.05585434162499388 +46400,231.99999999982526,-0.05585372149276651 +46401,232.00499999982526,-0.05585310148050141 +46402,232.00999999982525,-0.055852481588153806 +46403,232.01499999982525,-0.05585186181567897 +46404,232.01999999982525,-0.05585124216303218 +46405,232.02499999982524,-0.05585062263016872 +46406,232.02999999982524,-0.05585000321704389 +46407,232.03499999982523,-0.055849383923613036 +46408,232.03999999982523,-0.05584876474983146 +46409,232.04499999982522,-0.055848145695654536 +46410,232.04999999982522,-0.055847526761037616 +46411,232.0549999998252,-0.05584690794593608 +46412,232.0599999998252,-0.05584628925030533 +46413,232.0649999998252,-0.05584567067410079 +46414,232.0699999998252,-0.05584505221727787 +46415,232.0749999998252,-0.05584443387979201 +46416,232.0799999998252,-0.055843815661598656 +46417,232.0849999998252,-0.0558431975626533 +46418,232.08999999982518,-0.05584257958291141 +46419,232.09499999982518,-0.055841961722328505 +46420,232.09999999982517,-0.05584134398086009 +46421,232.10499999982517,-0.055840726358461684 +46422,232.10999999982516,-0.055840108855088846 +46423,232.11499999982516,-0.055839491470697125 +46424,232.11999999982515,-0.055838874205242105 +46425,232.12499999982515,-0.055838257058679376 +46426,232.12999999982515,-0.05583764003096454 +46427,232.13499999982514,-0.055837023122053214 +46428,232.13999999982514,-0.05583640633190103 +46429,232.14499999982513,-0.055835789660463646 +46430,232.14999999982513,-0.05583517310769672 +46431,232.15499999982512,-0.05583455667355593 +46432,232.15999999982512,-0.05583394035799695 +46433,232.1649999998251,-0.05583332416097552 +46434,232.1699999998251,-0.055832708082447356 +46435,232.1749999998251,-0.0558320921223682 +46436,232.1799999998251,-0.05583147628069378 +46437,232.1849999998251,-0.05583086055737988 +46438,232.1899999998251,-0.055830244952382285 +46439,232.1949999998251,-0.055829629465656797 +46440,232.19999999982508,-0.0558290140971592 +46441,232.20499999982508,-0.055828398846845345 +46442,232.20999999982507,-0.05582778371467107 +46443,232.21499999982507,-0.05582716870059224 +46444,232.21999999982506,-0.0558265538045647 +46445,232.22499999982506,-0.05582593902654435 +46446,232.22999999982505,-0.05582532436648709 +46447,232.23499999982505,-0.055824709824348846 +46448,232.23999999982505,-0.055824095400085524 +46449,232.24499999982504,-0.055823481093653086 +46450,232.24999999982504,-0.05582286690500748 +46451,232.25499999982503,-0.05582225283410468 +46452,232.25999999982503,-0.055821638880900665 +46453,232.26499999982502,-0.05582102504535146 +46454,232.26999999982502,-0.05582041132741307 +46455,232.274999999825,-0.055819797727041535 +46456,232.279999999825,-0.05581918424419288 +46457,232.284999999825,-0.05581857087882319 +46458,232.289999999825,-0.055817957630888544 +46459,232.294999999825,-0.055817344500345 +46460,232.299999999825,-0.055816731487148705 +46461,232.304999999825,-0.055816118591255744 +46462,232.30999999982498,-0.05581550581262226 +46463,232.31499999982498,-0.055814893151204414 +46464,232.31999999982497,-0.05581428060695835 +46465,232.32499999982497,-0.055813668179840265 +46466,232.32999999982496,-0.05581305586980634 +46467,232.33499999982496,-0.055812443676812776 +46468,232.33999999982495,-0.055811831600815806 +46469,232.34499999982495,-0.05581121964177166 +46470,232.34999999982495,-0.055810607799636584 +46471,232.35499999982494,-0.055809996074366854 +46472,232.35999999982494,-0.05580938446591874 +46473,232.36499999982493,-0.05580877297424854 +46474,232.36999999982493,-0.055808161599312574 +46475,232.37499999982492,-0.055807550341067144 +46476,232.37999999982492,-0.05580693919946859 +46477,232.3849999998249,-0.055806328174473264 +46478,232.3899999998249,-0.05580571726603755 +46479,232.3949999998249,-0.05580510647411781 +46480,232.3999999998249,-0.055804495798670445 +46481,232.4049999998249,-0.055803885239651865 +46482,232.4099999998249,-0.05580327479701849 +46483,232.4149999998249,-0.05580266447072676 +46484,232.41999999982488,-0.05580205426073312 +46485,232.42499999982488,-0.05580144416699405 +46486,232.42999999982487,-0.05580083418946602 +46487,232.43499999982487,-0.05580022432810553 +46488,232.43999999982486,-0.055799614582869084 +46489,232.44499999982486,-0.055799004953713226 +46490,232.44999999982485,-0.055798395440594464 +46491,232.45499999982485,-0.055797786043469376 +46492,232.45999999982484,-0.055797176762294516 +46493,232.46499999982484,-0.05579656759702647 +46494,232.46999999982484,-0.055795958547621836 +46495,232.47499999982483,-0.055795349614037225 +46496,232.47999999982483,-0.05579474079622925 +46497,232.48499999982482,-0.05579413209415456 +46498,232.48999999982482,-0.0557935235077698 +46499,232.4949999998248,-0.05579291503703166 +46500,232.4999999998248,-0.0557923066818968 +46501,232.5049999998248,-0.055791698442321916 +46502,232.5099999998248,-0.05579109031826373 +46503,232.5149999998248,-0.05579048230967895 +46504,232.5199999998248,-0.055789874416524325 +46505,232.5249999998248,-0.0557892666387566 +46506,232.52999999982478,-0.055788658976332554 +46507,232.53499999982478,-0.055788051429208965 +46508,232.53999999982477,-0.05578744399734261 +46509,232.54499999982477,-0.055786836680690316 +46510,232.54999999982476,-0.0557862294792089 +46511,232.55499999982476,-0.05578562239285521 +46512,232.55999999982475,-0.055785015421586086 +46513,232.56499999982475,-0.05578440856535839 +46514,232.56999999982474,-0.055783801824129016 +46515,232.57499999982474,-0.05578319519785485 +46516,232.57999999982474,-0.055782588686492815 +46517,232.58499999982473,-0.05578198228999982 +46518,232.58999999982473,-0.0557813760083328 +46519,232.59499999982472,-0.05578076984144872 +46520,232.59999999982472,-0.055780163789304525 +46521,232.6049999998247,-0.05577955785185721 +46522,232.6099999998247,-0.055778952029063744 +46523,232.6149999998247,-0.05577834632088117 +46524,232.6199999998247,-0.055777740727266475 +46525,232.6249999998247,-0.05577713524817672 +46526,232.6299999998247,-0.05577652988356894 +46527,232.6349999998247,-0.05577592463340021 +46528,232.63999999982468,-0.055775319497627596 +46529,232.64499999982468,-0.05577471447620819 +46530,232.64999999982467,-0.055774109569099097 +46531,232.65499999982467,-0.05577350477625744 +46532,232.65999999982466,-0.05577290009764036 +46533,232.66499999982466,-0.055772295533205 +46534,232.66999999982465,-0.055771691082908505 +46535,232.67499999982465,-0.05577108674670807 +46536,232.67999999982464,-0.05577048252456086 +46537,232.68499999982464,-0.055769878416424105 +46538,232.68999999982464,-0.05576927442225502 +46539,232.69499999982463,-0.05576867054201084 +46540,232.69999999982463,-0.05576806677564879 +46541,232.70499999982462,-0.05576746312312614 +46542,232.70999999982462,-0.055766859584400155 +46543,232.7149999998246,-0.055766256159428124 +46544,232.7199999998246,-0.05576565284816736 +46545,232.7249999998246,-0.05576504965057517 +46546,232.7299999998246,-0.055764446566608866 +46547,232.7349999998246,-0.055763843596225826 +46548,232.7399999998246,-0.05576324073938338 +46549,232.74499999982459,-0.05576263799603891 +46550,232.74999999982458,-0.05576203536614979 +46551,232.75499999982458,-0.05576143284967343 +46552,232.75999999982457,-0.055760830446567225 +46553,232.76499999982457,-0.05576022815678861 +46554,232.76999999982456,-0.055759625980295026 +46555,232.77499999982456,-0.05575902391704392 +46556,232.77999999982455,-0.05575842196699277 +46557,232.78499999982455,-0.05575782013009905 +46558,232.78999999982454,-0.05575721840632025 +46559,232.79499999982454,-0.05575661679561388 +46560,232.79999999982454,-0.05575601529793748 +46561,232.80499999982453,-0.055755413913248564 +46562,232.80999999982453,-0.055754812641504684 +46563,232.81499999982452,-0.05575421148266342 +46564,232.81999999982452,-0.05575361043668234 +46565,232.8249999998245,-0.055753009503519024 +46566,232.8299999998245,-0.0557524086831311 +46567,232.8349999998245,-0.05575180797547616 +46568,232.8399999998245,-0.05575120738051184 +46569,232.8449999998245,-0.0557506068981958 +46570,232.8499999998245,-0.0557500065284857 +46571,232.85499999982449,-0.055749406271339196 +46572,232.85999999982448,-0.05574880612671399 +46573,232.86499999982448,-0.05574820609456778 +46574,232.86999999982447,-0.05574760617485828 +46575,232.87499999982447,-0.055747006367543206 +46576,232.87999999982446,-0.05574640667258032 +46577,232.88499999982446,-0.05574580708992737 +46578,232.88999999982445,-0.05574520761954212 +46579,232.89499999982445,-0.05574460826138234 +46580,232.89999999982444,-0.055744009015405854 +46581,232.90499999982444,-0.055743409881570456 +46582,232.90999999982444,-0.055742810859833965 +46583,232.91499999982443,-0.05574221195015423 +46584,232.91999999982443,-0.05574161315248909 +46585,232.92499999982442,-0.05574101446679643 +46586,232.92999999982442,-0.0557404158930341 +46587,232.9349999998244,-0.05573981743116001 +46588,232.9399999998244,-0.05573921908113205 +46589,232.9449999998244,-0.05573862084290815 +46590,232.9499999998244,-0.05573802271644624 +46591,232.9549999998244,-0.05573742470170427 +46592,232.9599999998244,-0.0557368267986402 +46593,232.96499999982439,-0.05573622900721198 +46594,232.96999999982438,-0.05573563132737762 +46595,232.97499999982438,-0.0557350337590951 +46596,232.97999999982437,-0.055734436302322464 +46597,232.98499999982437,-0.05573383895701771 +46598,232.98999999982436,-0.05573324172313889 +46599,232.99499999982436,-0.05573264460064405 +46600,232.99999999982435,-0.05573204758949126 +46601,233.00499999982435,-0.055731450689638605 +46602,233.00999999982434,-0.055730853901044174 +46603,233.01499999982434,-0.05573025722366607 +46604,233.01999999982434,-0.05572966065746243 +46605,233.02499999982433,-0.05572906420239137 +46606,233.02999999982433,-0.055728467858411054 +46607,233.03499999982432,-0.055727871625479625 +46608,233.03999999982432,-0.05572727550355527 +46609,233.0449999998243,-0.055726679492596166 +46610,233.0499999998243,-0.05572608359256053 +46611,233.0549999998243,-0.05572548780340657 +46612,233.0599999998243,-0.05572489212509251 +46613,233.0649999998243,-0.055724296557576596 +46614,233.0699999998243,-0.055723701100817084 +46615,233.07499999982429,-0.05572310575477223 +46616,233.07999999982428,-0.05572251051940033 +46617,233.08499999982428,-0.05572191539465968 +46618,233.08999999982427,-0.05572132038050856 +46619,233.09499999982427,-0.05572072547690532 +46620,233.09999999982426,-0.05572013068380828 +46621,233.10499999982426,-0.055719536001175796 +46622,233.10999999982425,-0.05571894142896623 +46623,233.11499999982425,-0.05571834696713796 +46624,233.11999999982424,-0.055717752615649374 +46625,233.12499999982424,-0.05571715837445886 +46626,233.12999999982424,-0.05571656424352484 +46627,233.13499999982423,-0.05571597022280575 +46628,233.13999999982423,-0.05571537631226002 +46629,233.14499999982422,-0.0557147825118461 +46630,233.14999999982422,-0.05571418882152246 +46631,233.1549999998242,-0.05571359524124759 +46632,233.1599999998242,-0.05571300177097997 +46633,233.1649999998242,-0.05571240841067812 +46634,233.1699999998242,-0.05571181516030056 +46635,233.1749999998242,-0.05571122201980582 +46636,233.1799999998242,-0.05571062898915244 +46637,233.18499999982419,-0.05571003606829899 +46638,233.18999999982418,-0.05570944325720405 +46639,233.19499999982418,-0.055708850555826174 +46640,233.19999999982417,-0.055708257964124 +46641,233.20499999982417,-0.05570766548205613 +46642,233.20999999982416,-0.05570707310958117 +46643,233.21499999982416,-0.05570648084665778 +46644,233.21999999982415,-0.0557058886932446 +46645,233.22499999982415,-0.055705296649300295 +46646,233.22999999982414,-0.055704704714783546 +46647,233.23499999982414,-0.055704112889653046 +46648,233.23999999982414,-0.0557035211738675 +46649,233.24499999982413,-0.05570292956738562 +46650,233.24999999982413,-0.05570233807016615 +46651,233.25499999982412,-0.055701746682167826 +46652,233.25999999982412,-0.05570115540334939 +46653,233.2649999998241,-0.05570056423366964 +46654,233.2699999998241,-0.05569997317308734 +46655,233.2749999998241,-0.055699382221561296 +46656,233.2799999998241,-0.05569879137905031 +46657,233.2849999998241,-0.055698200645513195 +46658,233.2899999998241,-0.0556976100209088 +46659,233.29499999982409,-0.05569701950519597 +46660,233.29999999982408,-0.05569642909833357 +46661,233.30499999982408,-0.05569583880028047 +46662,233.30999999982407,-0.05569524861099555 +46663,233.31499999982407,-0.05569465853043772 +46664,233.31999999982406,-0.05569406855856589 +46665,233.32499999982406,-0.055693478695338985 +46666,233.32999999982405,-0.055692888940715946 +46667,233.33499999982405,-0.055692299294655724 +46668,233.33999999982404,-0.055691709757117284 +46669,233.34499999982404,-0.0556911203280596 +46670,233.34999999982404,-0.05569053100744167 +46671,233.35499999982403,-0.055689941795222485 +46672,233.35999999982403,-0.055689352691361084 +46673,233.36499999982402,-0.055688763695816476 +46674,233.36999999982402,-0.055688174808547715 +46675,233.374999999824,-0.055687586029513854 +46676,233.379999999824,-0.055686997358673954 +46677,233.384999999824,-0.055686408795987095 +46678,233.389999999824,-0.05568582034141238 +46679,233.394999999824,-0.05568523199490892 +46680,233.399999999824,-0.055684643756435837 +46681,233.40499999982399,-0.055684055625952245 +46682,233.40999999982398,-0.0556834676034173 +46683,233.41499999982398,-0.05568287968879017 +46684,233.41999999982397,-0.05568229188203 +46685,233.42499999982397,-0.055681704183096 +46686,233.42999999982396,-0.05568111659194736 +46687,233.43499999982396,-0.055680529108543285 +46688,233.43999999982395,-0.05567994173284299 +46689,233.44499999982395,-0.05567935446480573 +46690,233.44999999982394,-0.05567876730439073 +46691,233.45499999982394,-0.05567818025155727 +46692,233.45999999982394,-0.055677593306264615 +46693,233.46499999982393,-0.05567700646847206 +46694,233.46999999982393,-0.05567641973813889 +46695,233.47499999982392,-0.05567583311522442 +46696,233.47999999982392,-0.055675246599687984 +46697,233.4849999998239,-0.055674660191488916 +46698,233.4899999998239,-0.05567407389058655 +46699,233.4949999998239,-0.055673487696940284 +46700,233.4999999998239,-0.05567290161050947 +46701,233.5049999998239,-0.0556723156312535 +46702,233.5099999998239,-0.05567172975913177 +46703,233.51499999982389,-0.05567114399410369 +46704,233.51999999982388,-0.055670558336128696 +46705,233.52499999982388,-0.05566997278516622 +46706,233.52999999982387,-0.055669387341175734 +46707,233.53499999982387,-0.05566880200411669 +46708,233.53999999982386,-0.055668216773948544 +46709,233.54499999982386,-0.05566763165063081 +46710,233.54999999982385,-0.05566704663412298 +46711,233.55499999982385,-0.055666461724384574 +46712,233.55999999982384,-0.05566587692137513 +46713,233.56499999982384,-0.055665292225054175 +46714,233.56999999982384,-0.05566470763538125 +46715,233.57499999982383,-0.05566412315231594 +46716,233.57999999982383,-0.05566353877581781 +46717,233.58499999982382,-0.05566295450584647 +46718,233.58999999982382,-0.0556623703423615 +46719,233.5949999998238,-0.055661786285322534 +46720,233.5999999998238,-0.05566120233468919 +46721,233.6049999998238,-0.055660618490421115 +46722,233.6099999998238,-0.05566003475247796 +46723,233.6149999998238,-0.05565945112081939 +46724,233.6199999998238,-0.05565886759540507 +46725,233.62499999982379,-0.055658284176194714 +46726,233.62999999982378,-0.05565770086314801 +46727,233.63499999982378,-0.055657117656224685 +46728,233.63999999982377,-0.055656534555384454 +46729,233.64499999982377,-0.05565595156058707 +46730,233.64999999982376,-0.05565536867179229 +46731,233.65499999982376,-0.05565478588895986 +46732,233.65999999982375,-0.05565420321204959 +46733,233.66499999982375,-0.05565362064102125 +46734,233.66999999982374,-0.05565303817583464 +46735,233.67499999982374,-0.05565245581644959 +46736,233.67999999982374,-0.055651873562825915 +46737,233.68499999982373,-0.05565129141492346 +46738,233.68999999982373,-0.0556507093727021 +46739,233.69499999982372,-0.05565012743612167 +46740,233.69999999982372,-0.055649545605142056 +46741,233.7049999998237,-0.05564896387972316 +46742,233.7099999998237,-0.05564838225982487 +46743,233.7149999998237,-0.05564780074540711 +46744,233.7199999998237,-0.05564721933642981 +46745,233.7249999998237,-0.055646638032852906 +46746,233.7299999998237,-0.05564605683463635 +46747,233.73499999982369,-0.055645475741740114 +46748,233.73999999982368,-0.055644894754124166 +46749,233.74499999982368,-0.05564431387174851 +46750,233.74999999982367,-0.05564373309457312 +46751,233.75499999982367,-0.055643152422558045 +46752,233.75999999982366,-0.05564257185566329 +46753,233.76499999982366,-0.0556419913938489 +46754,233.76999999982365,-0.05564141103707492 +46755,233.77499999982365,-0.055640830785301416 +46756,233.77999999982364,-0.05564025063848848 +46757,233.78499999982364,-0.05563967059659619 +46758,233.78999999982364,-0.05563909065958464 +46759,233.79499999982363,-0.05563851082741395 +46760,233.79999999982363,-0.055637931100044245 +46761,233.80499999982362,-0.05563735147743566 +46762,233.80999999982362,-0.055636771959548345 +46763,233.8149999998236,-0.05563619254634246 +46764,233.8199999998236,-0.05563561323777817 +46765,233.8249999998236,-0.055635034033815686 +46766,233.8299999998236,-0.05563445493441519 +46767,233.8349999998236,-0.05563387593953689 +46768,233.8399999998236,-0.05563329704914102 +46769,233.84499999982359,-0.05563271826318781 +46770,233.84999999982358,-0.05563213958163752 +46771,233.85499999982358,-0.055631561004450394 +46772,233.85999999982357,-0.055630982531586715 +46773,233.86499999982357,-0.05563040416300675 +46774,233.86999999982356,-0.055629825898670805 +46775,233.87499999982356,-0.055629247738539195 +46776,233.87999999982355,-0.05562866968257224 +46777,233.88499999982355,-0.05562809173073028 +46778,233.88999999982354,-0.055627513882973635 +46779,233.89499999982354,-0.05562693613926269 +46780,233.89999999982354,-0.055626358499557785 +46781,233.90499999982353,-0.05562578096381932 +46782,233.90999999982353,-0.05562520353200771 +46783,233.91499999982352,-0.055624626204083316 +46784,233.91999999982352,-0.05562404898000658 +46785,233.9249999998235,-0.055623471859737934 +46786,233.9299999998235,-0.055622894843237805 +46787,233.9349999998235,-0.055622317930466667 +46788,233.9399999998235,-0.055621741121384974 +46789,233.9449999998235,-0.0556211644159532 +46790,233.9499999998235,-0.05562058781413185 +46791,233.95499999982349,-0.055620011315881415 +46792,233.95999999982348,-0.05561943492116241 +46793,233.96499999982348,-0.055618858629935375 +46794,233.96999999982347,-0.055618282442160834 +46795,233.97499999982347,-0.055617706357799335 +46796,233.97999999982346,-0.05561713037681146 +46797,233.98499999982346,-0.055616554499157776 +46798,233.98999999982345,-0.05561597872479885 +46799,233.99499999982345,-0.055615403053695306 +46800,233.99999999982344,-0.05561482748580774 +46801,234.00499999982344,-0.05561425202109677 +46802,234.00999999982344,-0.055613676659523055 +46803,234.01499999982343,-0.05561310140104722 +46804,234.01999999982343,-0.055612526245629935 +46805,234.02499999982342,-0.055611951193231875 +46806,234.02999999982342,-0.05561137624381371 +46807,234.0349999998234,-0.05561080139733613 +46808,234.0399999998234,-0.05561022665375985 +46809,234.0449999998234,-0.05560965201304559 +46810,234.0499999998234,-0.05560907747515408 +46811,234.0549999998234,-0.05560850304004606 +46812,234.0599999998234,-0.05560792870768229 +46813,234.06499999982339,-0.05560735447802353 +46814,234.06999999982338,-0.05560678035103055 +46815,234.07499999982338,-0.05560620632666415 +46816,234.07999999982337,-0.05560563240488514 +46817,234.08499999982337,-0.05560505858565432 +46818,234.08999999982336,-0.05560448486893252 +46819,234.09499999982336,-0.05560391125468057 +46820,234.09999999982335,-0.05560333774285934 +46821,234.10499999982335,-0.05560276433342968 +46822,234.10999999982334,-0.05560219102635244 +46823,234.11499999982334,-0.055601617821588546 +46824,234.11999999982334,-0.055601044719098866 +46825,234.12499999982333,-0.055600471718844316 +46826,234.12999999982333,-0.05559989882078582 +46827,234.13499999982332,-0.05559932602488431 +46828,234.13999999982332,-0.05559875333110071 +46829,234.1449999998233,-0.055598180739396 +46830,234.1499999998233,-0.05559760824973114 +46831,234.1549999998233,-0.055597035862067115 +46832,234.1599999998233,-0.05559646357636491 +46833,234.1649999998233,-0.05559589139258553 +46834,234.1699999998233,-0.05559531931068997 +46835,234.17499999982329,-0.055594747330639294 +46836,234.17999999982328,-0.05559417545239451 +46837,234.18499999982328,-0.05559360367591668 +46838,234.18999999982327,-0.055593032001166866 +46839,234.19499999982327,-0.05559246042810612 +46840,234.19999999982326,-0.055591888956695555 +46841,234.20499999982326,-0.05559131758689627 +46842,234.20999999982325,-0.055590746318669344 +46843,234.21499999982325,-0.05559017515197593 +46844,234.21999999982324,-0.05558960408677713 +46845,234.22499999982324,-0.055589033123034114 +46846,234.22999999982324,-0.05558846226070803 +46847,234.23499999982323,-0.05558789149976003 +46848,234.23999999982323,-0.055587320840151305 +46849,234.24499999982322,-0.05558675028184304 +46850,234.24999999982322,-0.05558617982479643 +46851,234.2549999998232,-0.05558560946897271 +46852,234.2599999998232,-0.055585039214333096 +46853,234.2649999998232,-0.05558446906083882 +46854,234.2699999998232,-0.05558389900845113 +46855,234.2749999998232,-0.05558332905713128 +46856,234.2799999998232,-0.05558275920684055 +46857,234.28499999982319,-0.055582189457540225 +46858,234.28999999982318,-0.055581619809191594 +46859,234.29499999982318,-0.05558105026175598 +46860,234.29999999982317,-0.05558048081519468 +46861,234.30499999982317,-0.05557991146946903 +46862,234.30999999982316,-0.05557934222454037 +46863,234.31499999982316,-0.055578773080370056 +46864,234.31999999982315,-0.05557820403691946 +46865,234.32499999982315,-0.05557763509414994 +46866,234.32999999982314,-0.055577066252022904 +46867,234.33499999982314,-0.055576497510499735 +46868,234.33999999982314,-0.055575928869541845 +46869,234.34499999982313,-0.05557536032911065 +46870,234.34999999982313,-0.0555747918891676 +46871,234.35499999982312,-0.05557422354967413 +46872,234.35999999982312,-0.055573655310591705 +46873,234.3649999998231,-0.05557308717188178 +46874,234.3699999998231,-0.05557251913350584 +46875,234.3749999998231,-0.05557195119542537 +46876,234.3799999998231,-0.05557138335760189 +46877,234.3849999998231,-0.0555708156199969 +46878,234.3899999998231,-0.055570247982571916 +46879,234.39499999982309,-0.0555696804452885 +46880,234.39999999982308,-0.05556911300810819 +46881,234.40499999982308,-0.055568545670992536 +46882,234.40999999982307,-0.055567978433903126 +46883,234.41499999982307,-0.055567411296801525 +46884,234.41999999982306,-0.05556684425964933 +46885,234.42499999982306,-0.05556627732240815 +46886,234.42999999982305,-0.0555657104850396 +46887,234.43499999982305,-0.05556514374750532 +46888,234.43999999982304,-0.05556457710976693 +46889,234.44499999982304,-0.0555640105717861 +46890,234.44999999982304,-0.05556344413352449 +46891,234.45499999982303,-0.055562877794943746 +46892,234.45999999982303,-0.055562311556005585 +46893,234.46499999982302,-0.055561745416671686 +46894,234.46999999982302,-0.05556117937690377 +46895,234.474999999823,-0.05556061343666355 +46896,234.479999999823,-0.05556004759591275 +46897,234.484999999823,-0.055559481854613124 +46898,234.489999999823,-0.05555891621272642 +46899,234.494999999823,-0.0555583506702144 +46900,234.499999999823,-0.05555778522703884 +46901,234.50499999982299,-0.05555721988316152 +46902,234.50999999982298,-0.05555665463854425 +46903,234.51499999982298,-0.05555608949314883 +46904,234.51999999982297,-0.0555555244469371 +46905,234.52499999982297,-0.05555495949987086 +46906,234.52999999982296,-0.055554394651911976 +46907,234.53499999982296,-0.05555382990302231 +46908,234.53999999982295,-0.0555532652531637 +46909,234.54499999982295,-0.055552700702298057 +46910,234.54999999982294,-0.05555213625038725 +46911,234.55499999982294,-0.055551571897393175 +46912,234.55999999982294,-0.05555100764327776 +46913,234.56499999982293,-0.0555504434880029 +46914,234.56999999982293,-0.05554987943153056 +46915,234.57499999982292,-0.055549315473822664 +46916,234.57999999982292,-0.055548751614841164 +46917,234.5849999998229,-0.05554818785454805 +46918,234.5899999998229,-0.05554762419290528 +46919,234.5949999998229,-0.05554706062987485 +46920,234.5999999998229,-0.055546497165418755 +46921,234.6049999998229,-0.05554593379949903 +46922,234.6099999998229,-0.05554537053207767 +46923,234.61499999982289,-0.05554480736311672 +46924,234.61999999982288,-0.05554424429257821 +46925,234.62499999982288,-0.055543681320424226 +46926,234.62999999982287,-0.055543118446616815 +46927,234.63499999982287,-0.055542555671118064 +46928,234.63999999982286,-0.055541992993890066 +46929,234.64499999982286,-0.055541430414894906 +46930,234.64999999982285,-0.055540867934094705 +46931,234.65499999982285,-0.0555403055514516 +46932,234.65999999982284,-0.055539743266927705 +46933,234.66499999982284,-0.05553918108048517 +46934,234.66999999982283,-0.05553861899208614 +46935,234.67499999982283,-0.05553805700169281 +46936,234.67999999982283,-0.055537495109267344 +46937,234.68499999982282,-0.05553693331477193 +46938,234.68999999982282,-0.055536371618168774 +46939,234.6949999998228,-0.05553581001942007 +46940,234.6999999998228,-0.05553524851848806 +46941,234.7049999998228,-0.05553468711533498 +46942,234.7099999998228,-0.055534125809923056 +46943,234.7149999998228,-0.05553356460221457 +46944,234.7199999998228,-0.05553300349217177 +46945,234.72499999982278,-0.05553244247975694 +46946,234.72999999982278,-0.05553188156493236 +46947,234.73499999982278,-0.055531320747660345 +46948,234.73999999982277,-0.0555307600279032 +46949,234.74499999982277,-0.05553019940562324 +46950,234.74999999982276,-0.0555296388807828 +46951,234.75499999982276,-0.055529078453344226 +46952,234.75999999982275,-0.05552851812326988 +46953,234.76499999982275,-0.0555279578905221 +46954,234.76999999982274,-0.0555273977550633 +46955,234.77499999982274,-0.055526837716855855 +46956,234.77999999982273,-0.05552627777586216 +46957,234.78499999982273,-0.05552571793204462 +46958,234.78999999982273,-0.05552515818536566 +46959,234.79499999982272,-0.05552459853578771 +46960,234.79999999982272,-0.055524038983273204 +46961,234.8049999998227,-0.0555234795277846 +46962,234.8099999998227,-0.055522920169284375 +46963,234.8149999998227,-0.055522360907735005 +46964,234.8199999998227,-0.05552180174309896 +46965,234.8249999998227,-0.05552124267533874 +46966,234.8299999998227,-0.05552068370441685 +46967,234.83499999982268,-0.05552012483029583 +46968,234.83999999982268,-0.05551956605293819 +46969,234.84499999982268,-0.05551900737230648 +46970,234.84999999982267,-0.055518448788363234 +46971,234.85499999982267,-0.05551789030107102 +46972,234.85999999982266,-0.05551733191039242 +46973,234.86499999982266,-0.05551677361629001 +46974,234.86999999982265,-0.05551621541872639 +46975,234.87499999982265,-0.05551565731766417 +46976,234.87999999982264,-0.055515099313065946 +46977,234.88499999982264,-0.05551454140489436 +46978,234.88999999982263,-0.05551398359311205 +46979,234.89499999982263,-0.055513425877681655 +46980,234.89999999982263,-0.05551286825856585 +46981,234.90499999982262,-0.05551231073572729 +46982,234.90999999982262,-0.055511753309128664 +46983,234.9149999998226,-0.05551119597873266 +46984,234.9199999998226,-0.055510638744501975 +46985,234.9249999998226,-0.05551008160639934 +46986,234.9299999998226,-0.055509524564387465 +46987,234.9349999998226,-0.055508967618429085 +46988,234.9399999998226,-0.05550841076848694 +46989,234.94499999982258,-0.05550785401452379 +46990,234.94999999982258,-0.05550729735650241 +46991,234.95499999982258,-0.05550674079438556 +46992,234.95999999982257,-0.05550618432813606 +46993,234.96499999982257,-0.05550562795771667 +46994,234.96999999982256,-0.055505071683090226 +46995,234.97499999982256,-0.05550451550421954 +46996,234.97999999982255,-0.055503959421067436 +46997,234.98499999982255,-0.05550340343359676 +46998,234.98999999982254,-0.055502847541770366 +46999,234.99499999982254,-0.05550229174555112 +47000,234.99999999982253,-0.05550173604490189 +47001,235.00499999982253,-0.05550118043978557 +47002,235.00999999982253,-0.05550062493016505 +47003,235.01499999982252,-0.055500069516003225 +47004,235.01999999982252,-0.055499514197263025 +47005,235.0249999998225,-0.055498958973907365 +47006,235.0299999998225,-0.05549840384589919 +47007,235.0349999998225,-0.055497848813201446 +47008,235.0399999998225,-0.05549729387577709 +47009,235.0449999998225,-0.05549673903358909 +47010,235.0499999998225,-0.05549618428660043 +47011,235.05499999982248,-0.05549562963477409 +47012,235.05999999982248,-0.05549507507807309 +47013,235.06499999982248,-0.05549452061646042 +47014,235.06999999982247,-0.05549396624989912 +47015,235.07499999982247,-0.0554934119783522 +47016,235.07999999982246,-0.05549285780178274 +47017,235.08499999982246,-0.055492303720153756 +47018,235.08999999982245,-0.05549174973342834 +47019,235.09499999982245,-0.055491195841569536 +47020,235.09999999982244,-0.055490642044540454 +47021,235.10499999982244,-0.05549008834230418 +47022,235.10999999982243,-0.05548953473482382 +47023,235.11499999982243,-0.05548898122206251 +47024,235.11999999982243,-0.055488427803983345 +47025,235.12499999982242,-0.05548787448054948 +47026,235.12999999982242,-0.05548732125172407 +47027,235.1349999998224,-0.05548676811747026 +47028,235.1399999998224,-0.05548621507775123 +47029,235.1449999998224,-0.05548566213253015 +47030,235.1499999998224,-0.05548510928177022 +47031,235.1549999998224,-0.05548455652543463 +47032,235.1599999998224,-0.05548400386348659 +47033,235.16499999982238,-0.05548345129588934 +47034,235.16999999982238,-0.05548289882260609 +47035,235.17499999982238,-0.055482346443600096 +47036,235.17999999982237,-0.055481794158834606 +47037,235.18499999982237,-0.05548124196827287 +47038,235.18999999982236,-0.05548068987187819 +47039,235.19499999982236,-0.05548013786961383 +47040,235.19999999982235,-0.05547958596144308 +47041,235.20499999982235,-0.055479034147329256 +47042,235.20999999982234,-0.05547848242723568 +47043,235.21499999982234,-0.05547793080112567 +47044,235.21999999982233,-0.055477379268962554 +47045,235.22499999982233,-0.05547682783070968 +47046,235.22999999982233,-0.05547627648633042 +47047,235.23499999982232,-0.05547572523578812 +47048,235.23999999982232,-0.05547517407904617 +47049,235.2449999998223,-0.05547462301606795 +47050,235.2499999998223,-0.055474072046816876 +47051,235.2549999998223,-0.05547352117125634 +47052,235.2599999998223,-0.05547297038934976 +47053,235.2649999998223,-0.05547241970106056 +47054,235.2699999998223,-0.055471869106352205 +47055,235.27499999982228,-0.05547131860518812 +47056,235.27999999982228,-0.05547076819753177 +47057,235.28499999982228,-0.055470217883346634 +47058,235.28999999982227,-0.05546966766259618 +47059,235.29499999982227,-0.05546911753524391 +47060,235.29999999982226,-0.05546856750125332 +47061,235.30499999982226,-0.05546801756058791 +47062,235.30999999982225,-0.05546746771321122 +47063,235.31499999982225,-0.05546691795908677 +47064,235.31999999982224,-0.05546636829817811 +47065,235.32499999982224,-0.05546581873044879 +47066,235.32999999982223,-0.05546526925586237 +47067,235.33499999982223,-0.05546471987438241 +47068,235.33999999982223,-0.055464170585972514 +47069,235.34499999982222,-0.05546362139059626 +47070,235.34999999982222,-0.055463072288217265 +47071,235.3549999998222,-0.05546252327879914 +47072,235.3599999998222,-0.055461974362305495 +47073,235.3649999998222,-0.05546142553869998 +47074,235.3699999998222,-0.05546087680794624 +47075,235.3749999998222,-0.055460328170007914 +47076,235.3799999998222,-0.05545977962484868 +47077,235.38499999982218,-0.0554592311724322 +47078,235.38999999982218,-0.05545868281272216 +47079,235.39499999982218,-0.05545813454568227 +47080,235.39999999982217,-0.05545758637127622 +47081,235.40499999982217,-0.055457038289467735 +47082,235.40999999982216,-0.05545649030022054 +47083,235.41499999982216,-0.055455942403498354 +47084,235.41999999982215,-0.05545539459926495 +47085,235.42499999982215,-0.05545484688748407 +47086,235.42999999982214,-0.05545429926811947 +47087,235.43499999982214,-0.05545375174113494 +47088,235.43999999982213,-0.055453204306494246 +47089,235.44499999982213,-0.055452656964161205 +47090,235.44999999982213,-0.05545210971409962 +47091,235.45499999982212,-0.0554515625562733 +47092,235.45999999982212,-0.05545101549064607 +47093,235.4649999998221,-0.05545046851718178 +47094,235.4699999998221,-0.055449921635844265 +47095,235.4749999998221,-0.05544937484659738 +47096,235.4799999998221,-0.055448828149405 +47097,235.4849999998221,-0.055448281544230996 +47098,235.4899999998221,-0.05544773503103926 +47099,235.49499999982208,-0.05544718860979369 +47100,235.49999999982208,-0.05544664228045818 +47101,235.50499999982208,-0.05544609604299664 +47102,235.50999999982207,-0.05544554989737303 +47103,235.51499999982207,-0.05544500384355126 +47104,235.51999999982206,-0.05544445788149528 +47105,235.52499999982206,-0.055443912011169064 +47106,235.52999999982205,-0.055443366232536546 +47107,235.53499999982205,-0.05544282054556173 +47108,235.53999999982204,-0.0554422749502086 +47109,235.54499999982204,-0.05544172944644114 +47110,235.54999999982203,-0.05544118403422337 +47111,235.55499999982203,-0.05544063871351929 +47112,235.55999999982203,-0.05544009348429295 +47113,235.56499999982202,-0.05543954834650835 +47114,235.56999999982202,-0.05543900330012956 +47115,235.574999999822,-0.055438458345120636 +47116,235.579999999822,-0.055437913481445646 +47117,235.584999999822,-0.055437368709068666 +47118,235.589999999822,-0.055436824027953774 +47119,235.594999999822,-0.055436279438065075 +47120,235.599999999822,-0.05543573493936667 +47121,235.60499999982198,-0.05543519053182267 +47122,235.60999999982198,-0.05543464621539721 +47123,235.61499999982198,-0.05543410199005442 +47124,235.61999999982197,-0.05543355785575844 +47125,235.62499999982197,-0.05543301381247343 +47126,235.62999999982196,-0.055432469860163563 +47127,235.63499999982196,-0.05543192599879301 +47128,235.63999999982195,-0.05543138222832594 +47129,235.64499999982195,-0.05543083854872657 +47130,235.64999999982194,-0.0554302949599591 +47131,235.65499999982194,-0.05542975146198774 +47132,235.65999999982193,-0.0554292080547767 +47133,235.66499999982193,-0.05542866473829022 +47134,235.66999999982193,-0.055428121512492566 +47135,235.67499999982192,-0.05542757837734797 +47136,235.67999999982192,-0.055427035332820694 +47137,235.6849999998219,-0.05542649237887503 +47138,235.6899999998219,-0.05542594951547524 +47139,235.6949999998219,-0.05542540674258562 +47140,235.6999999998219,-0.05542486406017048 +47141,235.7049999998219,-0.05542432146819412 +47142,235.7099999998219,-0.05542377896662089 +47143,235.71499999982188,-0.05542323655541509 +47144,235.71999999982188,-0.05542269423454107 +47145,235.72499999982188,-0.05542215200396319 +47146,235.72999999982187,-0.05542160986364581 +47147,235.73499999982187,-0.05542106781355329 +47148,235.73999999982186,-0.055420525853650024 +47149,235.74499999982186,-0.0554199839839004 +47150,235.74999999982185,-0.0554194422042688 +47151,235.75499999982185,-0.055418900514719656 +47152,235.75999999982184,-0.05541835891521737 +47153,235.76499999982184,-0.055417817405726384 +47154,235.76999999982183,-0.05541727598621112 +47155,235.77499999982183,-0.05541673465663605 +47156,235.77999999982183,-0.05541619341696561 +47157,235.78499999982182,-0.05541565226716428 +47158,235.78999999982182,-0.055415111207196534 +47159,235.7949999998218,-0.05541457023702685 +47160,235.7999999998218,-0.05541402935661974 +47161,235.8049999998218,-0.0554134885659397 +47162,235.8099999998218,-0.055412947864951254 +47163,235.8149999998218,-0.05541240725361892 +47164,235.8199999998218,-0.05541186673190724 +47165,235.82499999982178,-0.05541132629978075 +47166,235.82999999982178,-0.055410785957204015 +47167,235.83499999982178,-0.05541024570414159 +47168,235.83999999982177,-0.05540970554055805 +47169,235.84499999982177,-0.05540916546641798 +47170,235.84999999982176,-0.05540862548168596 +47171,235.85499999982176,-0.05540808558632661 +47172,235.85999999982175,-0.05540754578030453 +47173,235.86499999982175,-0.05540700606358436 +47174,235.86999999982174,-0.055406466436130716 +47175,235.87499999982174,-0.055405926897908235 +47176,235.87999999982173,-0.05540538744888157 +47177,235.88499999982173,-0.05540484808901539 +47178,235.88999999982173,-0.05540430881827436 +47179,235.89499999982172,-0.055403769636623156 +47180,235.89999999982172,-0.05540323054402646 +47181,235.9049999998217,-0.05540269154044899 +47182,235.9099999998217,-0.055402152625855426 +47183,235.9149999998217,-0.0554016138002105 +47184,235.9199999998217,-0.055401075063478945 +47185,235.9249999998217,-0.055400536415625486 +47186,235.9299999998217,-0.05539999785661486 +47187,235.93499999982168,-0.05539945938641185 +47188,235.93999999982168,-0.05539892100498119 +47189,235.94499999982168,-0.05539838271228767 +47190,235.94999999982167,-0.055397844508296074 +47191,235.95499999982167,-0.05539730639297119 +47192,235.95999999982166,-0.055396768366277827 +47193,235.96499999982166,-0.05539623042818079 +47194,235.96999999982165,-0.0553956925786449 +47195,235.97499999982165,-0.055395154817634976 +47196,235.97999999982164,-0.05539461714511588 +47197,235.98499999982164,-0.05539407956105245 +47198,235.98999999982163,-0.05539354206540955 +47199,235.99499999982163,-0.055393004658152036 +47200,235.99999999982163,-0.05539246733924481 +47201,236.00499999982162,-0.05539193010865273 +47202,236.00999999982162,-0.055391392966340706 +47203,236.0149999998216,-0.055390855912273634 +47204,236.0199999998216,-0.05539031894641646 +47205,236.0249999998216,-0.05538978206873408 +47206,236.0299999998216,-0.05538924527919143 +47207,236.0349999998216,-0.055388708577753465 +47208,236.0399999998216,-0.05538817196438513 +47209,236.04499999982158,-0.05538763543905138 +47210,236.04999999982158,-0.055387099001717205 +47211,236.05499999982158,-0.055386562652347565 +47212,236.05999999982157,-0.055386026390907464 +47213,236.06499999982157,-0.055385490217361895 +47214,236.06999999982156,-0.05538495413167587 +47215,236.07499999982156,-0.05538441813381441 +47216,236.07999999982155,-0.055383882223742534 +47217,236.08499999982155,-0.05538334640142529 +47218,236.08999999982154,-0.05538281066682771 +47219,236.09499999982154,-0.055382275019914856 +47220,236.09999999982153,-0.0553817394606518 +47221,236.10499999982153,-0.05538120398900361 +47222,236.10999999982153,-0.05538066860493537 +47223,236.11499999982152,-0.05538013330841217 +47224,236.11999999982152,-0.0553795980993991 +47225,236.1249999998215,-0.0553790629778613 +47226,236.1299999998215,-0.055378527943763856 +47227,236.1349999998215,-0.055377992997071926 +47228,236.1399999998215,-0.055377458137750635 +47229,236.1449999998215,-0.055376923365765135 +47230,236.1499999998215,-0.055376388681080586 +47231,236.15499999982148,-0.055375854083662135 +47232,236.15999999982148,-0.05537531957347498 +47233,236.16499999982148,-0.0553747851504843 +47234,236.16999999982147,-0.05537425081465529 +47235,236.17499999982147,-0.055373716565953135 +47236,236.17999999982146,-0.05537318240434307 +47237,236.18499999982146,-0.05537264832979031 +47238,236.18999999982145,-0.05537211434226009 +47239,236.19499999982145,-0.05537158044171764 +47240,236.19999999982144,-0.055371046628128216 +47241,236.20499999982144,-0.055370512901457065 +47242,236.20999999982143,-0.05536997926166947 +47243,236.21499999982143,-0.055369445708730695 +47244,236.21999999982143,-0.055368912242606046 +47245,236.22499999982142,-0.055368378863260785 +47246,236.22999999982142,-0.055367845570660254 +47247,236.2349999998214,-0.05536731236476973 +47248,236.2399999998214,-0.055366779245554554 +47249,236.2449999998214,-0.05536624621298006 +47250,236.2499999998214,-0.05536571326701158 +47251,236.2549999998214,-0.05536518040761448 +47252,236.2599999998214,-0.05536464763475409 +47253,236.26499999982138,-0.05536411494839581 +47254,236.26999999982138,-0.05536358234850499 +47255,236.27499999982138,-0.055363049835047036 +47256,236.27999999982137,-0.055362517407987324 +47257,236.28499999982137,-0.05536198506729127 +47258,236.28999999982136,-0.05536145281292428 +47259,236.29499999982136,-0.05536092064485179 +47260,236.29999999982135,-0.05536038856303922 +47261,236.30499999982135,-0.055359856567452015 +47262,236.30999999982134,-0.05535932465805561 +47263,236.31499999982134,-0.05535879283481549 +47264,236.31999999982133,-0.0553582610976971 +47265,236.32499999982133,-0.05535772944666593 +47266,236.32999999982133,-0.055357197881687456 +47267,236.33499999982132,-0.05535666640272717 +47268,236.33999999982132,-0.05535613500975059 +47269,236.3449999998213,-0.055355603702723216 +47270,236.3499999998213,-0.055355072481610576 +47271,236.3549999998213,-0.0553545413463782 +47272,236.3599999998213,-0.05535401029699162 +47273,236.3649999998213,-0.05535347933341639 +47274,236.3699999998213,-0.05535294845561808 +47275,236.37499999982128,-0.055352417663562234 +47276,236.37999999982128,-0.05535188695721445 +47277,236.38499999982128,-0.05535135633654029 +47278,236.38999999982127,-0.055350825801505354 +47279,236.39499999982127,-0.05535029535207525 +47280,236.39999999982126,-0.05534976498821558 +47281,236.40499999982126,-0.055349234709891976 +47282,236.40999999982125,-0.05534870451707006 +47283,236.41499999982125,-0.05534817440971547 +47284,236.41999999982124,-0.05534764438779387 +47285,236.42499999982124,-0.055347114451270885 +47286,236.42999999982123,-0.05534658460011219 +47287,236.43499999982123,-0.05534605483428348 +47288,236.43999999982123,-0.0553455251537504 +47289,236.44499999982122,-0.055344995558478674 +47290,236.44999999982122,-0.05534446604843399 +47291,236.4549999998212,-0.05534393662358206 +47292,236.4599999998212,-0.055343407283888583 +47293,236.4649999998212,-0.05534287802931931 +47294,236.4699999998212,-0.05534234885983998 +47295,236.4749999998212,-0.055341819775416315 +47296,236.4799999998212,-0.05534129077601408 +47297,236.48499999982118,-0.05534076186159904 +47298,236.48999999982118,-0.05534023303213695 +47299,236.49499999982118,-0.055339704287593605 +47300,236.49999999982117,-0.05533917562793479 +47301,236.50499999982117,-0.05533864705312631 +47302,236.50999999982116,-0.05533811856313396 +47303,236.51499999982116,-0.055337590157923555 +47304,236.51999999982115,-0.05533706183746092 +47305,236.52499999982115,-0.055336533601711896 +47306,236.52999999982114,-0.05533600545064232 +47307,236.53499999982114,-0.05533547738421804 +47308,236.53999999982113,-0.055334949402404916 +47309,236.54499999982113,-0.05533442150516882 +47310,236.54999999982113,-0.055333893692475614 +47311,236.55499999982112,-0.055333365964291205 +47312,236.55999999982112,-0.05533283832058147 +47313,236.5649999998211,-0.055332310761312314 +47314,236.5699999998211,-0.05533178328644965 +47315,236.5749999998211,-0.0553312558959594 +47316,236.5799999998211,-0.05533072858980751 +47317,236.5849999998211,-0.05533020136795989 +47318,236.5899999998211,-0.05532967423038249 +47319,236.59499999982108,-0.05532914717704128 +47320,236.59999999982108,-0.05532862020790222 +47321,236.60499999982108,-0.05532809332293127 +47322,236.60999999982107,-0.05532756652209442 +47323,236.61499999982107,-0.05532703980535766 +47324,236.61999999982106,-0.05532651317268699 +47325,236.62499999982106,-0.05532598662404841 +47326,236.62999999982105,-0.05532546015940795 +47327,236.63499999982105,-0.05532493377873162 +47328,236.63999999982104,-0.055324407481985464 +47329,236.64499999982104,-0.05532388126913551 +47330,236.64999999982103,-0.05532335514014783 +47331,236.65499999982103,-0.055322829094988465 +47332,236.65999999982103,-0.05532230313362349 +47333,236.66499999982102,-0.05532177725601898 +47334,236.66999999982102,-0.05532125146214102 +47335,236.674999999821,-0.05532072575195571 +47336,236.679999999821,-0.05532020012542914 +47337,236.684999999821,-0.05531967458252743 +47338,236.689999999821,-0.05531914912321669 +47339,236.694999999821,-0.055318623747463054 +47340,236.699999999821,-0.05531809845523266 +47341,236.70499999982098,-0.05531757324649165 +47342,236.70999999982098,-0.055317048121206185 +47343,236.71499999982098,-0.05531652307934242 +47344,236.71999999982097,-0.05531599812086652 +47345,236.72499999982097,-0.055315473245744685 +47346,236.72999999982096,-0.05531494845394309 +47347,236.73499999982096,-0.05531442374542793 +47348,236.73999999982095,-0.05531389912016542 +47349,236.74499999982095,-0.05531337457812176 +47350,236.74999999982094,-0.05531285011926317 +47351,236.75499999982094,-0.05531232574355591 +47352,236.75999999982093,-0.05531180145096619 +47353,236.76499999982093,-0.05531127724146026 +47354,236.76999999982093,-0.05531075311500439 +47355,236.77499999982092,-0.05531022907156483 +47356,236.77999999982092,-0.055309705111107874 +47357,236.7849999998209,-0.05530918123359979 +47358,236.7899999998209,-0.05530865743900686 +47359,236.7949999998209,-0.055308133727295414 +47360,236.7999999998209,-0.05530761009843173 +47361,236.8049999998209,-0.05530708655238212 +47362,236.8099999998209,-0.05530656308911293 +47363,236.81499999982088,-0.05530603970859048 +47364,236.81999999982088,-0.05530551641078111 +47365,236.82499999982088,-0.05530499319565118 +47366,236.82999999982087,-0.055304470063167036 +47367,236.83499999982087,-0.055303947013295045 +47368,236.83999999982086,-0.055303424046001595 +47369,236.84499999982086,-0.05530290116125306 +47370,236.84999999982085,-0.05530237835901584 +47371,236.85499999982085,-0.055301855639256305 +47372,236.85999999982084,-0.05530133300194089 +47373,236.86499999982084,-0.05530081044703602 +47374,236.86999999982083,-0.055300287974508096 +47375,236.87499999982083,-0.05529976558432357 +47376,236.87999999982082,-0.055299243276448876 +47377,236.88499999982082,-0.05529872105085048 +47378,236.88999999982082,-0.05529819890749481 +47379,236.8949999998208,-0.055297676846348356 +47380,236.8999999998208,-0.05529715486737759 +47381,236.9049999998208,-0.055296632970549 +47382,236.9099999998208,-0.05529611115582907 +47383,236.9149999998208,-0.0552955894231843 +47384,236.9199999998208,-0.055295067772581204 +47385,236.92499999982078,-0.0552945462039863 +47386,236.92999999982078,-0.055294024717366115 +47387,236.93499999982077,-0.05529350331268717 +47388,236.93999999982077,-0.055292981989916015 +47389,236.94499999982077,-0.055292460749019216 +47390,236.94999999982076,-0.055291939589963306 +47391,236.95499999982076,-0.05529141851271487 +47392,236.95999999982075,-0.05529089751724047 +47393,236.96499999982075,-0.055290376603506705 +47394,236.96999999982074,-0.05528985577148015 +47395,236.97499999982074,-0.055289335021127414 +47396,236.97999999982073,-0.05528881435241512 +47397,236.98499999982073,-0.05528829376530986 +47398,236.98999999982072,-0.05528777325977828 +47399,236.99499999982072,-0.05528725283578699 +47400,236.99999999982072,-0.055286732493302654 +47401,237.0049999998207,-0.0552862122322919 +47402,237.0099999998207,-0.055285692052721415 +47403,237.0149999998207,-0.05528517195455786 +47404,237.0199999998207,-0.055284651937767874 +47405,237.0249999998207,-0.05528413200231817 +47406,237.0299999998207,-0.055283612148175454 +47407,237.03499999982068,-0.05528309237530638 +47408,237.03999999982068,-0.0552825726836777 +47409,237.04499999982067,-0.05528205307325609 +47410,237.04999999982067,-0.05528153354400831 +47411,237.05499999982067,-0.055281014095901075 +47412,237.05999999982066,-0.05528049472890112 +47413,237.06499999982066,-0.0552799754429752 +47414,237.06999999982065,-0.05527945623809008 +47415,237.07499999982065,-0.055278937114212515 +47416,237.07999999982064,-0.055278418071309274 +47417,237.08499999982064,-0.05527789910934715 +47418,237.08999999982063,-0.05527738022829291 +47419,237.09499999982063,-0.05527686142811338 +47420,237.09999999982062,-0.05527634270877535 +47421,237.10499999982062,-0.05527582407024562 +47422,237.10999999982062,-0.05527530551249103 +47423,237.1149999998206,-0.05527478703547841 +47424,237.1199999998206,-0.05527426863917461 +47425,237.1249999998206,-0.05527375032354645 +47426,237.1299999998206,-0.0552732320885608 +47427,237.1349999998206,-0.05527271393418451 +47428,237.1399999998206,-0.05527219586038446 +47429,237.14499999982058,-0.05527167786712752 +47430,237.14999999982058,-0.055271159954380596 +47431,237.15499999982057,-0.05527064212211056 +47432,237.15999999982057,-0.05527012437028432 +47433,237.16499999982057,-0.0552696066988688 +47434,237.16999999982056,-0.05526908910783091 +47435,237.17499999982056,-0.055268571597137564 +47436,237.17999999982055,-0.05526805416675572 +47437,237.18499999982055,-0.0552675368166523 +47438,237.18999999982054,-0.05526701954679426 +47439,237.19499999982054,-0.05526650235714857 +47440,237.19999999982053,-0.0552659852476822 +47441,237.20499999982053,-0.055265468218362104 +47442,237.20999999982052,-0.055264951269155274 +47443,237.21499999982052,-0.055264434400028706 +47444,237.21999999982052,-0.055263917610949405 +47445,237.2249999998205,-0.05526340090188437 +47446,237.2299999998205,-0.05526288427280061 +47447,237.2349999998205,-0.05526236772366515 +47448,237.2399999998205,-0.055261851254445035 +47449,237.2449999998205,-0.05526133486510729 +47450,237.2499999998205,-0.05526081855561896 +47451,237.25499999982048,-0.05526030232594711 +47452,237.25999999982048,-0.0552597861760588 +47453,237.26499999982047,-0.05525927010592109 +47454,237.26999999982047,-0.05525875411550108 +47455,237.27499999982047,-0.05525823820476583 +47456,237.27999999982046,-0.05525772237368247 +47457,237.28499999982046,-0.05525720662221808 +47458,237.28999999982045,-0.05525669095033976 +47459,237.29499999982045,-0.05525617535801464 +47460,237.29999999982044,-0.055255659845209866 +47461,237.30499999982044,-0.05525514441189253 +47462,237.30999999982043,-0.05525462905802981 +47463,237.31499999982043,-0.05525411378358883 +47464,237.31999999982042,-0.055253598588536776 +47465,237.32499999982042,-0.0552530834728408 +47466,237.32999999982042,-0.055252568436468065 +47467,237.3349999998204,-0.05525205347938578 +47468,237.3399999998204,-0.05525153860156111 +47469,237.3449999998204,-0.055251023802961256 +47470,237.3499999998204,-0.055250509083553424 +47471,237.3549999998204,-0.05524999444330483 +47472,237.3599999998204,-0.0552494798821827 +47473,237.36499999982038,-0.05524896540015426 +47474,237.36999999982038,-0.05524845099718674 +47475,237.37499999982037,-0.05524793667324738 +47476,237.37999999982037,-0.05524742242830345 +47477,237.38499999982037,-0.05524690826232221 +47478,237.38999999982036,-0.055246394175270906 +47479,237.39499999982036,-0.05524588016711684 +47480,237.39999999982035,-0.05524536623782727 +47481,237.40499999982035,-0.05524485238736951 +47482,237.40999999982034,-0.055244338615710833 +47483,237.41499999982034,-0.05524382492281856 +47484,237.41999999982033,-0.05524331130866001 +47485,237.42499999982033,-0.05524279777320251 +47486,237.42999999982032,-0.05524228431641338 +47487,237.43499999982032,-0.05524177093825995 +47488,237.43999999982032,-0.05524125763870959 +47489,237.4449999998203,-0.05524074441772963 +47490,237.4499999998203,-0.055240231275287446 +47491,237.4549999998203,-0.055239718211350396 +47492,237.4599999998203,-0.05523920522588586 +47493,237.4649999998203,-0.05523869231886123 +47494,237.4699999998203,-0.05523817949024388 +47495,237.47499999982028,-0.05523766674000123 +47496,237.47999999982028,-0.05523715406810068 +47497,237.48499999982027,-0.05523664147450966 +47498,237.48999999982027,-0.05523612895919555 +47499,237.49499999982027,-0.05523561652212582 +47500,237.49999999982026,-0.055235104163267906 +47501,237.50499999982026,-0.055234591882589244 +47502,237.50999999982025,-0.055234079680057294 +47503,237.51499999982025,-0.05523356755563951 +47504,237.51999999982024,-0.05523305550930336 +47505,237.52499999982024,-0.05523254354101633 +47506,237.52999999982023,-0.055232031650745896 +47507,237.53499999982023,-0.05523151983845955 +47508,237.53999999982022,-0.0552310081041248 +47509,237.54499999982022,-0.055230496447709145 +47510,237.54999999982022,-0.0552299848691801 +47511,237.5549999998202,-0.0552294733685052 +47512,237.5599999998202,-0.05522896194565196 +47513,237.5649999998202,-0.05522845060058792 +47514,237.5699999998202,-0.05522793933328063 +47515,237.5749999998202,-0.05522742814369765 +47516,237.5799999998202,-0.05522691703180654 +47517,237.58499999982018,-0.05522640599757486 +47518,237.58999999982018,-0.05522589504097019 +47519,237.59499999982017,-0.05522538416196011 +47520,237.59999999982017,-0.055224873360512204 +47521,237.60499999982017,-0.05522436263659408 +47522,237.60999999982016,-0.055223851990173344 +47523,237.61499999982016,-0.05522334142121761 +47524,237.61999999982015,-0.05522283092969451 +47525,237.62499999982015,-0.05522232051557165 +47526,237.62999999982014,-0.0552218101788167 +47527,237.63499999982014,-0.05522129991939727 +47528,237.63999999982013,-0.05522078973728103 +47529,237.64499999982013,-0.05522027963243562 +47530,237.64999999982012,-0.05521976960482873 +47531,237.65499999982012,-0.05521925965442802 +47532,237.65999999982012,-0.05521874978120117 +47533,237.6649999998201,-0.05521823998511589 +47534,237.6699999998201,-0.05521773026613985 +47535,237.6749999998201,-0.05521722062424078 +47536,237.6799999998201,-0.05521671105938637 +47537,237.6849999998201,-0.055216201571544346 +47538,237.6899999998201,-0.055215692160682436 +47539,237.69499999982008,-0.055215182826768384 +47540,237.69999999982008,-0.05521467356976992 +47541,237.70499999982007,-0.055214164389654784 +47542,237.70999999982007,-0.055213655286390745 +47543,237.71499999982007,-0.05521314625994558 +47544,237.71999999982006,-0.055212637310287034 +47545,237.72499999982006,-0.055212128437382914 +47546,237.72999999982005,-0.055211619641200985 +47547,237.73499999982005,-0.05521111092170905 +47548,237.73999999982004,-0.0552106022788749 +47549,237.74499999982004,-0.055210093712666365 +47550,237.74999999982003,-0.055209585223051236 +47551,237.75499999982003,-0.05520907680999736 +47552,237.75999999982002,-0.05520856847347254 +47553,237.76499999982002,-0.05520806021344464 +47554,237.76999999982002,-0.0552075520298815 +47555,237.77499999982,-0.055207043922750956 +47556,237.77999999982,-0.055206535892020896 +47557,237.78499999982,-0.05520602793765917 +47558,237.78999999982,-0.05520552005963366 +47559,237.79499999982,-0.055205012257912245 +47560,237.79999999982,-0.055204504532462804 +47561,237.80499999981998,-0.055203996883253253 +47562,237.80999999981998,-0.0552034893102515 +47563,237.81499999981997,-0.055202981813425436 +47564,237.81999999981997,-0.055202474392743 +47565,237.82499999981997,-0.05520196704817211 +47566,237.82999999981996,-0.0552014597796807 +47567,237.83499999981996,-0.055200952587236715 +47568,237.83999999981995,-0.05520044547080811 +47569,237.84499999981995,-0.05519993843036282 +47570,237.84999999981994,-0.05519943146586883 +47571,237.85499999981994,-0.0551989245772941 +47572,237.85999999981993,-0.05519841776460661 +47573,237.86499999981993,-0.05519791102777434 +47574,237.86999999981992,-0.0551974043667653 +47575,237.87499999981992,-0.05519689778154748 +47576,237.87999999981992,-0.05519639127208888 +47577,237.8849999998199,-0.055195884838357516 +47578,237.8899999998199,-0.055195378480321425 +47579,237.8949999998199,-0.05519487219794863 +47580,237.8999999998199,-0.05519436599120715 +47581,237.9049999998199,-0.055193859860065045 +47582,237.9099999998199,-0.05519335380449036 +47583,237.91499999981988,-0.05519284782445115 +47584,237.91999999981988,-0.05519234191991549 +47585,237.92499999981987,-0.05519183609085145 +47586,237.92999999981987,-0.05519133033722712 +47587,237.93499999981987,-0.05519082465901056 +47588,237.93999999981986,-0.05519031905616988 +47589,237.94499999981986,-0.0551898135286732 +47590,237.94999999981985,-0.0551893080764886 +47591,237.95499999981985,-0.055188802699584205 +47592,237.95999999981984,-0.05518829739792814 +47593,237.96499999981984,-0.055187792171488524 +47594,237.96999999981983,-0.05518728702023351 +47595,237.97499999981983,-0.05518678194413124 +47596,237.97999999981982,-0.05518627694314986 +47597,237.98499999981982,-0.05518577201725754 +47598,237.98999999981982,-0.05518526716642242 +47599,237.9949999998198,-0.05518476239061271 +47600,237.9999999998198,-0.05518425768979657 +47601,238.0049999998198,-0.05518375306394218 +47602,238.0099999998198,-0.055183248513017744 +47603,238.0149999998198,-0.055182744036991464 +47604,238.0199999998198,-0.05518223963583155 +47605,238.02499999981978,-0.05518173530950622 +47606,238.02999999981978,-0.0551812310579837 +47607,238.03499999981977,-0.055180726881232205 +47608,238.03999999981977,-0.05518022277921999 +47609,238.04499999981977,-0.05517971875191529 +47610,238.04999999981976,-0.05517921479928636 +47611,238.05499999981976,-0.05517871092130146 +47612,238.05999999981975,-0.05517820711792885 +47613,238.06499999981975,-0.05517770338913681 +47614,238.06999999981974,-0.05517719973489362 +47615,238.07499999981974,-0.055176696155167564 +47616,238.07999999981973,-0.05517619264992693 +47617,238.08499999981973,-0.055175689219140026 +47618,238.08999999981972,-0.055175185862775165 +47619,238.09499999981972,-0.05517468258080065 +47620,238.09999999981972,-0.05517417937318481 +47621,238.1049999998197,-0.05517367623989598 +47622,238.1099999998197,-0.05517317318090249 +47623,238.1149999998197,-0.05517267019617269 +47624,238.1199999998197,-0.055172167285674915 +47625,238.1249999998197,-0.05517166444937753 +47626,238.1299999998197,-0.055171161687248914 +47627,238.13499999981968,-0.05517065899925743 +47628,238.13999999981968,-0.05517015638537144 +47629,238.14499999981967,-0.05516965384555935 +47630,238.14999999981967,-0.055169151379789554 +47631,238.15499999981967,-0.05516864898803044 +47632,238.15999999981966,-0.055168146670250426 +47633,238.16499999981966,-0.05516764442641791 +47634,238.16999999981965,-0.05516714225650132 +47635,238.17499999981965,-0.055166640160469085 +47636,238.17999999981964,-0.05516613813828964 +47637,238.18499999981964,-0.05516563618993142 +47638,238.18999999981963,-0.05516513431536288 +47639,238.19499999981963,-0.05516463251455247 +47640,238.19999999981962,-0.05516413078746865 +47641,238.20499999981962,-0.05516362913407991 +47642,238.20999999981962,-0.0551631275543547 +47643,238.2149999998196,-0.05516262604826153 +47644,238.2199999998196,-0.05516212461576886 +47645,238.2249999998196,-0.055161623256845205 +47646,238.2299999998196,-0.055161121971459066 +47647,238.2349999998196,-0.05516062075957896 +47648,238.2399999998196,-0.0551601196211734 +47649,238.24499999981958,-0.05515961855621089 +47650,238.24999999981958,-0.05515911756465999 +47651,238.25499999981957,-0.05515861664648924 +47652,238.25999999981957,-0.05515811580166715 +47653,238.26499999981957,-0.0551576150301623 +47654,238.26999999981956,-0.05515711433194325 +47655,238.27499999981956,-0.05515661370697856 +47656,238.27999999981955,-0.055156113155236795 +47657,238.28499999981955,-0.05515561267668655 +47658,238.28999999981954,-0.0551551122712964 +47659,238.29499999981954,-0.05515461193903495 +47660,238.29999999981953,-0.05515411167987078 +47661,238.30499999981953,-0.055153611493772514 +47662,238.30999999981952,-0.05515311138070877 +47663,238.31499999981952,-0.05515261134064814 +47664,238.31999999981952,-0.05515211137355928 +47665,238.3249999998195,-0.055151611479410806 +47666,238.3299999998195,-0.055151111658171374 +47667,238.3349999998195,-0.055150611909809626 +47668,238.3399999998195,-0.05515011223429422 +47669,238.3449999998195,-0.0551496126315938 +47670,238.3499999998195,-0.05514911310167705 +47671,238.35499999981948,-0.05514861364451264 +47672,238.35999999981948,-0.05514811426006925 +47673,238.36499999981947,-0.055147614948315576 +47674,238.36999999981947,-0.05514711570922032 +47675,238.37499999981947,-0.05514661654275216 +47676,238.37999999981946,-0.05514611744887981 +47677,238.38499999981946,-0.055145618427572006 +47678,238.38999999981945,-0.05514511947879745 +47679,238.39499999981945,-0.05514462060252488 +47680,238.39999999981944,-0.055144121798723036 +47681,238.40499999981944,-0.05514362306736064 +47682,238.40999999981943,-0.05514312440840645 +47683,238.41499999981943,-0.055142625821829244 +47684,238.41999999981942,-0.05514212730759776 +47685,238.42499999981942,-0.055141628865680775 +47686,238.42999999981942,-0.055141130496047054 +47687,238.4349999998194,-0.0551406321986654 +47688,238.4399999998194,-0.05514013397350459 +47689,238.4449999998194,-0.05513963582053343 +47690,238.4499999998194,-0.05513913773972071 +47691,238.4549999998194,-0.05513863973103524 +47692,238.4599999998194,-0.055138141794445844 +47693,238.46499999981938,-0.05513764392992134 +47694,238.46999999981938,-0.055137146137430565 +47695,238.47499999981937,-0.05513664841694234 +47696,238.47999999981937,-0.05513615076842551 +47697,238.48499999981937,-0.05513565319184893 +47698,238.48999999981936,-0.05513515568718147 +47699,238.49499999981936,-0.05513465825439197 +47700,238.49999999981935,-0.05513416089344931 +47701,238.50499999981935,-0.05513366360432235 +47702,238.50999999981934,-0.055133166386979994 +47703,238.51499999981934,-0.05513266924139113 +47704,238.51999999981933,-0.05513217216752465 +47705,238.52499999981933,-0.055131675165349434 +47706,238.52999999981932,-0.055131178234834426 +47707,238.53499999981932,-0.055130681375948516 +47708,238.53999999981932,-0.05513018458866064 +47709,238.5449999998193,-0.055129687872939724 +47710,238.5499999998193,-0.0551291912287547 +47711,238.5549999998193,-0.0551286946560745 +47712,238.5599999998193,-0.05512819815486809 +47713,238.5649999998193,-0.055127701725104415 +47714,238.5699999998193,-0.05512720536675245 +47715,238.57499999981928,-0.055126709079781136 +47716,238.57999999981928,-0.055126212864159474 +47717,238.58499999981927,-0.05512571671985643 +47718,238.58999999981927,-0.055125220646841 +47719,238.59499999981927,-0.05512472464508217 +47720,238.59999999981926,-0.05512422871454895 +47721,238.60499999981926,-0.055123732855210335 +47722,238.60999999981925,-0.05512323706703535 +47723,238.61499999981925,-0.05512274134999301 +47724,238.61999999981924,-0.05512224570405233 +47725,238.62499999981924,-0.05512175012918238 +47726,238.62999999981923,-0.055121254625352153 +47727,238.63499999981923,-0.055120759192530726 +47728,238.63999999981922,-0.055120263830687154 +47729,238.64499999981922,-0.05511976853979047 +47730,238.64999999981922,-0.055119273319809765 +47731,238.6549999998192,-0.055118778170714096 +47732,238.6599999998192,-0.05511828309247254 +47733,238.6649999998192,-0.05511778808505419 +47734,238.6699999998192,-0.055117293148428136 +47735,238.6749999998192,-0.05511679828256347 +47736,238.6799999998192,-0.05511630348742931 +47737,238.68499999981918,-0.055115808762994746 +47738,238.68999999981918,-0.05511531410922892 +47739,238.69499999981917,-0.05511481952610093 +47740,238.69999999981917,-0.05511432501357993 +47741,238.70499999981917,-0.05511383057163505 +47742,238.70999999981916,-0.055113336200235424 +47743,238.71499999981916,-0.0551128418993502 +47744,238.71999999981915,-0.05511234766894855 +47745,238.72499999981915,-0.0551118535089996 +47746,238.72999999981914,-0.055111359419472566 +47747,238.73499999981914,-0.05511086540033659 +47748,238.73999999981913,-0.05511037145156087 +47749,238.74499999981913,-0.05510987757311458 +47750,238.74999999981912,-0.05510938376496692 +47751,238.75499999981912,-0.05510889002708708 +47752,238.75999999981912,-0.0551083963594443 +47753,238.7649999998191,-0.055107902762007756 +47754,238.7699999998191,-0.05510740923474668 +47755,238.7749999998191,-0.05510691577763031 +47756,238.7799999998191,-0.05510642239062786 +47757,238.7849999998191,-0.055105929073708565 +47758,238.7899999998191,-0.05510543582684169 +47759,238.79499999981908,-0.05510494264999648 +47760,238.79999999981908,-0.055104449543142184 +47761,238.80499999981907,-0.05510395650624807 +47762,238.80999999981907,-0.055103463539283415 +47763,238.81499999981907,-0.055102970642217475 +47764,238.81999999981906,-0.05510247781501954 +47765,238.82499999981906,-0.055101985057658925 +47766,238.82999999981905,-0.05510149237010489 +47767,238.83499999981905,-0.05510099975232676 +47768,238.83999999981904,-0.05510050720429382 +47769,238.84499999981904,-0.0551000147259754 +47770,238.84999999981903,-0.05509952231734081 +47771,238.85499999981903,-0.0550990299783594 +47772,238.85999999981902,-0.055098537709000486 +47773,238.86499999981902,-0.055098045509233404 +47774,238.86999999981902,-0.055097553379027504 +47775,238.874999999819,-0.05509706131835213 +47776,238.879999999819,-0.05509656932717665 +47777,238.884999999819,-0.05509607740547043 +47778,238.889999999819,-0.05509558555320281 +47779,238.894999999819,-0.0550950937703432 +47780,238.899999999819,-0.05509460205686097 +47781,238.90499999981898,-0.055094110412725515 +47782,238.90999999981898,-0.05509361883790622 +47783,238.91499999981897,-0.05509312733237249 +47784,238.91999999981897,-0.05509263589609374 +47785,238.92499999981897,-0.05509214452903938 +47786,238.92999999981896,-0.05509165323117881 +47787,238.93499999981896,-0.055091162002481486 +47788,238.93999999981895,-0.05509067084291682 +47789,238.94499999981895,-0.05509017975245426 +47790,238.94999999981894,-0.05508968873106325 +47791,238.95499999981894,-0.055089197778713246 +47792,238.95999999981893,-0.05508870689537369 +47793,238.96499999981893,-0.05508821608101405 +47794,238.96999999981892,-0.05508772533560379 +47795,238.97499999981892,-0.055087234659112395 +47796,238.97999999981892,-0.055086744051509345 +47797,238.9849999998189,-0.05508625351276412 +47798,238.9899999998189,-0.05508576304284622 +47799,238.9949999998189,-0.05508527264172514 +47800,238.9999999998189,-0.055084782309370396 +47801,239.0049999998189,-0.055084292045751486 +47802,239.0099999998189,-0.05508380185083793 +47803,239.01499999981888,-0.05508331172459926 +47804,239.01999999981888,-0.05508282166700501 +47805,239.02499999981887,-0.055082331678024704 +47806,239.02999999981887,-0.055081841757627883 +47807,239.03499999981887,-0.05508135190578411 +47808,239.03999999981886,-0.055080862122462916 +47809,239.04499999981886,-0.05508037240763389 +47810,239.04999999981885,-0.055079882761266574 +47811,239.05499999981885,-0.055079393183330556 +47812,239.05999999981884,-0.05507890367379539 +47813,239.06499999981884,-0.055078414232630706 +47814,239.06999999981883,-0.05507792485980606 +47815,239.07499999981883,-0.05507743555529105 +47816,239.07999999981882,-0.055076946319055284 +47817,239.08499999981882,-0.05507645715106837 +47818,239.08999999981882,-0.055075968051299926 +47819,239.0949999998188,-0.055075479019719584 +47820,239.0999999998188,-0.05507499005629696 +47821,239.1049999998188,-0.055074501161001675 +47822,239.1099999998188,-0.05507401233380338 +47823,239.1149999998188,-0.055073523574671726 +47824,239.1199999998188,-0.055073034883576344 +47825,239.12499999981878,-0.0550725462604869 +47826,239.12999999981878,-0.05507205770537307 +47827,239.13499999981877,-0.055071569218204504 +47828,239.13999999981877,-0.055071080798950886 +47829,239.14499999981876,-0.055070592447581904 +47830,239.14999999981876,-0.055070104164067234 +47831,239.15499999981876,-0.05506961594837657 +47832,239.15999999981875,-0.055069127800479595 +47833,239.16499999981875,-0.05506863972034604 +47834,239.16999999981874,-0.0550681517079456 +47835,239.17499999981874,-0.05506766376324801 +47836,239.17999999981873,-0.05506717588622296 +47837,239.18499999981873,-0.055066688076840196 +47838,239.18999999981872,-0.055066200335069454 +47839,239.19499999981872,-0.05506571266088048 +47840,239.19999999981871,-0.055065225054243 +47841,239.2049999998187,-0.055064737515126784 +47842,239.2099999998187,-0.055064250043501586 +47843,239.2149999998187,-0.05506376263933717 +47844,239.2199999998187,-0.055063275302603305 +47845,239.2249999998187,-0.055062788033269756 +47846,239.2299999998187,-0.0550623008313063 +47847,239.23499999981868,-0.05506181369668275 +47848,239.23999999981868,-0.05506132662936888 +47849,239.24499999981867,-0.055060839629334495 +47850,239.24999999981867,-0.0550603526965494 +47851,239.25499999981866,-0.0550598658309834 +47852,239.25999999981866,-0.05505937903260632 +47853,239.26499999981866,-0.055058892301387975 +47854,239.26999999981865,-0.05505840563729819 +47855,239.27499999981865,-0.05505791904030682 +47856,239.27999999981864,-0.05505743251038366 +47857,239.28499999981864,-0.0550569460474986 +47858,239.28999999981863,-0.05505645965162147 +47859,239.29499999981863,-0.05505597332272214 +47860,239.29999999981862,-0.05505548706077046 +47861,239.30499999981862,-0.0550550008657363 +47862,239.30999999981861,-0.055054514737589544 +47863,239.3149999998186,-0.05505402867630006 +47864,239.3199999998186,-0.05505354268183776 +47865,239.3249999998186,-0.055053056754172505 +47866,239.3299999998186,-0.05505257089327419 +47867,239.3349999998186,-0.055052085099112746 +47868,239.3399999998186,-0.05505159937165807 +47869,239.34499999981858,-0.055051113710880076 +47870,239.34999999981858,-0.055050628116748684 +47871,239.35499999981857,-0.05505014258923382 +47872,239.35999999981857,-0.05504965712830542 +47873,239.36499999981856,-0.05504917173393341 +47874,239.36999999981856,-0.05504868640608774 +47875,239.37499999981856,-0.05504820114473836 +47876,239.37999999981855,-0.05504771594985523 +47877,239.38499999981855,-0.055047230821408305 +47878,239.38999999981854,-0.055046745759367556 +47879,239.39499999981854,-0.05504626076370295 +47880,239.39999999981853,-0.05504577583438447 +47881,239.40499999981853,-0.0550452909713821 +47882,239.40999999981852,-0.055044806174665825 +47883,239.41499999981852,-0.05504432144420564 +47884,239.41999999981851,-0.055043836779971544 +47885,239.4249999998185,-0.055043352181933555 +47886,239.4299999998185,-0.05504286765006168 +47887,239.4349999998185,-0.05504238318432593 +47888,239.4399999998185,-0.05504189878469633 +47889,239.4449999998185,-0.05504141445114291 +47890,239.4499999998185,-0.05504093018363571 +47891,239.45499999981848,-0.05504044598214476 +47892,239.45999999981848,-0.05503996184664011 +47893,239.46499999981847,-0.05503947777709182 +47894,239.46999999981847,-0.05503899377346994 +47895,239.47499999981846,-0.055038509835744535 +47896,239.47999999981846,-0.05503802596388566 +47897,239.48499999981846,-0.0550375421578634 +47898,239.48999999981845,-0.05503705841764784 +47899,239.49499999981845,-0.05503657474320906 +47900,239.49999999981844,-0.05503609113451715 +47901,239.50499999981844,-0.05503560759154222 +47902,239.50999999981843,-0.05503512411425435 +47903,239.51499999981843,-0.05503464070262365 +47904,239.51999999981842,-0.05503415735662024 +47905,239.52499999981842,-0.055033674076214255 +47906,239.52999999981841,-0.0550331908613758 +47907,239.5349999998184,-0.05503270771207501 +47908,239.5399999998184,-0.05503222462828201 +47909,239.5449999998184,-0.05503174160996696 +47910,239.5499999998184,-0.0550312586571 +47911,239.5549999998184,-0.05503077576965127 +47912,239.5599999998184,-0.05503029294759094 +47913,239.56499999981838,-0.055029810190889164 +47914,239.56999999981838,-0.05502932749951613 +47915,239.57499999981837,-0.055028844873442 +47916,239.57999999981837,-0.05502836231263694 +47917,239.58499999981836,-0.055027879817071156 +47918,239.58999999981836,-0.055027397386714826 +47919,239.59499999981836,-0.05502691502153816 +47920,239.59999999981835,-0.055026432721511344 +47921,239.60499999981835,-0.05502595048660459 +47922,239.60999999981834,-0.055025468316788125 +47923,239.61499999981834,-0.05502498621203215 +47924,239.61999999981833,-0.05502450417230689 +47925,239.62499999981833,-0.05502402219758258 +47926,239.62999999981832,-0.055023540287829464 +47927,239.63499999981832,-0.05502305844301776 +47928,239.63999999981831,-0.05502257666311773 +47929,239.6449999998183,-0.05502209494809962 +47930,239.6499999998183,-0.05502161329793368 +47931,239.6549999998183,-0.05502113171259019 +47932,239.6599999998183,-0.055020650192039396 +47933,239.6649999998183,-0.055020168736251596 +47934,239.6699999998183,-0.05501968734519704 +47935,239.67499999981828,-0.05501920601884604 +47936,239.67999999981828,-0.05501872475716885 +47937,239.68499999981827,-0.0550182435601358 +47938,239.68999999981827,-0.05501776242771717 +47939,239.69499999981826,-0.055017281359883284 +47940,239.69999999981826,-0.05501680035660444 +47941,239.70499999981826,-0.055016319417850935 +47942,239.70999999981825,-0.05501583854359312 +47943,239.71499999981825,-0.05501535773380131 +47944,239.71999999981824,-0.055014876988445836 +47945,239.72499999981824,-0.05501439630749704 +47946,239.72999999981823,-0.05501391569092526 +47947,239.73499999981823,-0.055013435138700856 +47948,239.73999999981822,-0.05501295465079417 +47949,239.74499999981822,-0.05501247422717556 +47950,239.74999999981821,-0.05501199386781539 +47951,239.7549999998182,-0.05501151357268405 +47952,239.7599999998182,-0.0550110333417519 +47953,239.7649999998182,-0.05501055317498931 +47954,239.7699999998182,-0.05501007307236668 +47955,239.7749999998182,-0.0550095930338544 +47956,239.7799999998182,-0.05500911305942286 +47957,239.78499999981818,-0.05500863314904247 +47958,239.78999999981818,-0.055008153302683625 +47959,239.79499999981817,-0.05500767352031676 +47960,239.79999999981817,-0.05500719380191227 +47961,239.80499999981816,-0.05500671414744058 +47962,239.80999999981816,-0.05500623455687213 +47963,239.81499999981816,-0.05500575503017736 +47964,239.81999999981815,-0.05500527556732668 +47965,239.82499999981815,-0.05500479616829056 +47966,239.82999999981814,-0.05500431683303944 +47967,239.83499999981814,-0.05500383756154378 +47968,239.83999999981813,-0.05500335835377402 +47969,239.84499999981813,-0.05500287920970065 +47970,239.84999999981812,-0.05500240012929413 +47971,239.85499999981812,-0.05500192111252494 +47972,239.85999999981811,-0.05500144215936355 +47973,239.8649999998181,-0.055000963269780455 +47974,239.8699999998181,-0.055000484443746146 +47975,239.8749999998181,-0.05500000568123112 +47976,239.8799999998181,-0.05499952698220588 +47977,239.8849999998181,-0.05499904834664093 +47978,239.8899999998181,-0.054998569774506775 +47979,239.89499999981808,-0.05499809126577395 +47980,239.89999999981808,-0.05499761282041297 +47981,239.90499999981807,-0.05499713443839436 +47982,239.90999999981807,-0.05499665611968864 +47983,239.91499999981806,-0.054996177864266374 +47984,239.91999999981806,-0.05499569967209809 +47985,239.92499999981806,-0.05499522154315433 +47986,239.92999999981805,-0.05499474347740566 +47987,239.93499999981805,-0.05499426547482264 +47988,239.93999999981804,-0.05499378753537583 +47989,239.94499999981804,-0.0549933096590358 +47990,239.94999999981803,-0.054992831845773124 +47991,239.95499999981803,-0.05499235409555838 +47992,239.95999999981802,-0.05499187640836216 +47993,239.96499999981802,-0.05499139878415505 +47994,239.96999999981801,-0.05499092122290765 +47995,239.974999999818,-0.05499044372459053 +47996,239.979999999818,-0.05498996628917433 +47997,239.984999999818,-0.05498948891662966 +47998,239.989999999818,-0.05498901160692711 +47999,239.994999999818,-0.054988534360037325 +48000,239.999999999818,-0.05498805717593091 +48001,240.00499999981798,-0.0549875800545785 +48002,240.00999999981798,-0.05498710299595075 +48003,240.01499999981797,-0.05498662600001828 +48004,240.01999999981797,-0.054986149066751734 +48005,240.02499999981796,-0.054985672196121785 +48006,240.02999999981796,-0.054985195388099074 +48007,240.03499999981796,-0.05498471864265426 +48008,240.03999999981795,-0.05498424195975801 +48009,240.04499999981795,-0.054983765339381006 +48010,240.04999999981794,-0.05498328878149392 +48011,240.05499999981794,-0.05498281228606743 +48012,240.05999999981793,-0.05498233585307222 +48013,240.06499999981793,-0.05498185948247898 +48014,240.06999999981792,-0.054981383174258415 +48015,240.07499999981792,-0.054980906928381215 +48016,240.07999999981791,-0.05498043074481811 +48017,240.0849999998179,-0.05497995462353979 +48018,240.0899999998179,-0.054979478564516966 +48019,240.0949999998179,-0.05497900256772037 +48020,240.0999999998179,-0.054978526633120736 +48021,240.1049999998179,-0.05497805076068879 +48022,240.1099999998179,-0.054977574950395264 +48023,240.11499999981788,-0.054977099202210895 +48024,240.11999999981788,-0.054976623516106445 +48025,240.12499999981787,-0.05497614789205265 +48026,240.12999999981787,-0.05497567233002028 +48027,240.13499999981786,-0.05497519682998008 +48028,240.13999999981786,-0.054974721391902834 +48029,240.14499999981786,-0.05497424601575931 +48030,240.14999999981785,-0.054973770701520264 +48031,240.15499999981785,-0.054973295449156495 +48032,240.15999999981784,-0.05497282025863879 +48033,240.16499999981784,-0.054972345129937934 +48034,240.16999999981783,-0.05497187006302474 +48035,240.17499999981783,-0.054971395057869986 +48036,240.17999999981782,-0.05497092011444448 +48037,240.18499999981782,-0.054970445232719045 +48038,240.18999999981781,-0.05496997041266449 +48039,240.1949999998178,-0.054969495654251646 +48040,240.1999999998178,-0.05496902095745132 +48041,240.2049999998178,-0.05496854632223435 +48042,240.2099999998178,-0.05496807174857157 +48043,240.2149999998178,-0.05496759723643383 +48044,240.2199999998178,-0.05496712278579196 +48045,240.22499999981778,-0.05496664839661682 +48046,240.22999999981778,-0.054966174068879256 +48047,240.23499999981777,-0.05496569980255014 +48048,240.23999999981777,-0.05496522559760032 +48049,240.24499999981776,-0.05496475145400069 +48050,240.24999999981776,-0.0549642773717221 +48051,240.25499999981776,-0.054963803350735446 +48052,240.25999999981775,-0.054963329391011596 +48053,240.26499999981775,-0.05496285549252146 +48054,240.26999999981774,-0.054962381655235905 +48055,240.27499999981774,-0.054961907879125846 +48056,240.27999999981773,-0.05496143416416219 +48057,240.28499999981773,-0.05496096051031583 +48058,240.28999999981772,-0.05496048691755769 +48059,240.29499999981772,-0.05496001338585869 +48060,240.29999999981771,-0.05495953991518974 +48061,240.3049999998177,-0.05495906650552178 +48062,240.3099999998177,-0.054958593156825726 +48063,240.3149999998177,-0.054958119869072536 +48064,240.3199999998177,-0.054957646642233134 +48065,240.3249999998177,-0.05495717347627847 +48066,240.3299999998177,-0.054956700371179494 +48067,240.33499999981768,-0.05495622732690717 +48068,240.33999999981768,-0.05495575434343246 +48069,240.34499999981767,-0.054955281420726323 +48070,240.34999999981767,-0.05495480855875973 +48071,240.35499999981766,-0.05495433575750364 +48072,240.35999999981766,-0.05495386301692906 +48073,240.36499999981766,-0.05495339033700697 +48074,240.36999999981765,-0.05495291771770835 +48075,240.37499999981765,-0.05495244515900419 +48076,240.37999999981764,-0.054951972660865496 +48077,240.38499999981764,-0.05495150022326327 +48078,240.38999999981763,-0.05495102784616852 +48079,240.39499999981763,-0.05495055552955225 +48080,240.39999999981762,-0.05495008327338549 +48081,240.40499999981762,-0.05494961107763925 +48082,240.40999999981761,-0.054949138942284564 +48083,240.4149999998176,-0.05494866686729246 +48084,240.4199999998176,-0.05494819485263399 +48085,240.4249999998176,-0.05494772289828018 +48086,240.4299999998176,-0.05494725100420207 +48087,240.4349999998176,-0.05494677917037072 +48088,240.4399999998176,-0.054946307396757176 +48089,240.44499999981758,-0.05494583568333251 +48090,240.44999999981758,-0.05494536403006778 +48091,240.45499999981757,-0.054944892436934054 +48092,240.45999999981757,-0.05494442090390241 +48093,240.46499999981756,-0.05494394943094392 +48094,240.46999999981756,-0.054943478018029665 +48095,240.47499999981756,-0.05494300666513074 +48096,240.47999999981755,-0.05494253537221823 +48097,240.48499999981755,-0.05494206413926324 +48098,240.48999999981754,-0.05494159296623685 +48099,240.49499999981754,-0.05494112185311019 +48100,240.49999999981753,-0.05494065079985437 +48101,240.50499999981753,-0.05494017980644048 +48102,240.50999999981752,-0.05493970887283966 +48103,240.51499999981752,-0.05493923799902304 +48104,240.51999999981751,-0.05493876718496172 +48105,240.5249999998175,-0.054938296430626865 +48106,240.5299999998175,-0.05493782573598959 +48107,240.5349999998175,-0.05493735510102105 +48108,240.5399999998175,-0.05493688452569239 +48109,240.5449999998175,-0.05493641400997477 +48110,240.5499999998175,-0.05493594355383932 +48111,240.55499999981748,-0.054935473157257234 +48112,240.55999999981748,-0.054935002820199655 +48113,240.56499999981747,-0.054934532542637755 +48114,240.56999999981747,-0.05493406232454271 +48115,240.57499999981746,-0.0549335921658857 +48116,240.57999999981746,-0.05493312206663791 +48117,240.58499999981746,-0.05493265202677053 +48118,240.58999999981745,-0.05493218204625474 +48119,240.59499999981745,-0.05493171212506175 +48120,240.59999999981744,-0.05493124226316276 +48121,240.60499999981744,-0.05493077246052896 +48122,240.60999999981743,-0.05493030271713157 +48123,240.61499999981743,-0.05492983303294181 +48124,240.61999999981742,-0.054929363407930906 +48125,240.62499999981742,-0.054928893842070066 +48126,240.62999999981741,-0.05492842433533053 +48127,240.6349999998174,-0.054927954887683525 +48128,240.6399999998174,-0.05492748549910029 +48129,240.6449999998174,-0.05492701616955205 +48130,240.6499999998174,-0.05492654689901007 +48131,240.6549999998174,-0.0549260776874456 +48132,240.6599999998174,-0.05492560853482989 +48133,240.66499999981738,-0.05492513944113421 +48134,240.66999999981738,-0.0549246704063298 +48135,240.67499999981737,-0.05492420143038794 +48136,240.67999999981737,-0.054923732513279915 +48137,240.68499999981736,-0.054923263654976996 +48138,240.68999999981736,-0.05492279485545045 +48139,240.69499999981736,-0.05492232611467158 +48140,240.69999999981735,-0.05492185743261166 +48141,240.70499999981735,-0.054921388809242 +48142,240.70999999981734,-0.054920920244533905 +48143,240.71499999981734,-0.05492045173845865 +48144,240.71999999981733,-0.05491998329098757 +48145,240.72499999981733,-0.05491951490209198 +48146,240.72999999981732,-0.054919046571743166 +48147,240.73499999981732,-0.05491857829991247 +48148,240.73999999981731,-0.05491811008657122 +48149,240.7449999998173,-0.05491764193169074 +48150,240.7499999998173,-0.054917173835242354 +48151,240.7549999998173,-0.05491670579719741 +48152,240.7599999998173,-0.05491623781752726 +48153,240.7649999998173,-0.05491576989620325 +48154,240.7699999998173,-0.05491530203319671 +48155,240.77499999981728,-0.05491483422847901 +48156,240.77999999981728,-0.054914366482021505 +48157,240.78499999981727,-0.05491389879379557 +48158,240.78999999981727,-0.05491343116377257 +48159,240.79499999981726,-0.05491296359192387 +48160,240.79999999981726,-0.05491249607822086 +48161,240.80499999981726,-0.05491202862263491 +48162,240.80999999981725,-0.054911561225137406 +48163,240.81499999981725,-0.054911093885699744 +48164,240.81999999981724,-0.05491062660429333 +48165,240.82499999981724,-0.05491015938088954 +48166,240.82999999981723,-0.054909692215459785 +48167,240.83499999981723,-0.054909225107975475 +48168,240.83999999981722,-0.05490875805840802 +48169,240.84499999981722,-0.05490829106672885 +48170,240.84999999981721,-0.05490782413290937 +48171,240.8549999998172,-0.054907357256921 +48172,240.8599999998172,-0.05490689043873517 +48173,240.8649999998172,-0.054906423678323324 +48174,240.8699999998172,-0.054905956975656894 +48175,240.8749999998172,-0.05490549033070731 +48176,240.8799999998172,-0.05490502374344604 +48177,240.88499999981718,-0.05490455721384451 +48178,240.88999999981718,-0.054904090741874204 +48179,240.89499999981717,-0.05490362432750655 +48180,240.89999999981717,-0.054903157970713025 +48181,240.90499999981716,-0.054902691671465095 +48182,240.90999999981716,-0.05490222542973422 +48183,240.91499999981716,-0.05490175924549188 +48184,240.91999999981715,-0.05490129311870956 +48185,240.92499999981715,-0.05490082704935874 +48186,240.92999999981714,-0.0549003610374109 +48187,240.93499999981714,-0.05489989508283756 +48188,240.93999999981713,-0.05489942918561019 +48189,240.94499999981713,-0.05489896334570028 +48190,240.94999999981712,-0.05489849756307936 +48191,240.95499999981712,-0.054898031837718936 +48192,240.95999999981711,-0.0548975661695905 +48193,240.9649999998171,-0.05489710055866558 +48194,240.9699999998171,-0.05489663500491571 +48195,240.9749999998171,-0.0548961695083124 +48196,240.9799999998171,-0.05489570406882717 +48197,240.9849999998171,-0.05489523868643157 +48198,240.9899999998171,-0.05489477336109714 +48199,240.99499999981708,-0.05489430809279541 +48200,240.99999999981708,-0.054893842881497935 +48201,241.00499999981707,-0.05489337772717624 +48202,241.00999999981707,-0.054892912629801914 +48203,241.01499999981706,-0.05489244758934649 +48204,241.01999999981706,-0.054891982605781535 +48205,241.02499999981706,-0.05489151767907862 +48206,241.02999999981705,-0.05489105280920931 +48207,241.03499999981705,-0.054890587996145185 +48208,241.03999999981704,-0.05489012323985781 +48209,241.04499999981704,-0.05488965854031879 +48210,241.04999999981703,-0.054889193897499695 +48211,241.05499999981703,-0.05488872931137212 +48212,241.05999999981702,-0.05488826478190765 +48213,241.06499999981702,-0.0548878003090779 +48214,241.06999999981701,-0.054887335892854466 +48215,241.074999999817,-0.054886871533208946 +48216,241.079999999817,-0.054886407230112955 +48217,241.084999999817,-0.054885942983538105 +48218,241.089999999817,-0.05488547879345602 +48219,241.094999999817,-0.05488501465983832 +48220,241.099999999817,-0.05488455058265663 +48221,241.10499999981698,-0.05488408656188259 +48222,241.10999999981698,-0.054883622597487816 +48223,241.11499999981697,-0.05488315868944396 +48224,241.11999999981697,-0.05488269483772267 +48225,241.12499999981696,-0.05488223104229559 +48226,241.12999999981696,-0.054881767303134356 +48227,241.13499999981696,-0.05488130362021063 +48228,241.13999999981695,-0.054880839993496085 +48229,241.14499999981695,-0.05488037642296236 +48230,241.14999999981694,-0.05487991290858114 +48231,241.15499999981694,-0.05487944945032407 +48232,241.15999999981693,-0.05487898604816286 +48233,241.16499999981693,-0.054878522702069166 +48234,241.16999999981692,-0.054878059412014665 +48235,241.17499999981692,-0.054877596177971055 +48236,241.1799999998169,-0.05487713299991003 +48237,241.1849999998169,-0.05487666987780327 +48238,241.1899999998169,-0.05487620681162248 +48239,241.1949999998169,-0.05487574380133937 +48240,241.1999999998169,-0.05487528084692562 +48241,241.2049999998169,-0.05487481794835297 +48242,241.2099999998169,-0.05487435510559311 +48243,241.21499999981688,-0.05487389231861778 +48244,241.21999999981688,-0.05487342958739868 +48245,241.22499999981687,-0.05487296691190754 +48246,241.22999999981687,-0.05487250429211609 +48247,241.23499999981686,-0.054872041727996076 +48248,241.23999999981686,-0.05487157921951922 +48249,241.24499999981686,-0.05487111676665727 +48250,241.24999999981685,-0.05487065436938195 +48251,241.25499999981685,-0.05487019202766504 +48252,241.25999999981684,-0.05486972974147828 +48253,241.26499999981684,-0.05486926751079342 +48254,241.26999999981683,-0.05486880533558222 +48255,241.27499999981683,-0.054868343215816455 +48256,241.27999999981682,-0.05486788115146787 +48257,241.28499999981682,-0.054867419142508256 +48258,241.2899999998168,-0.05486695718890938 +48259,241.2949999998168,-0.05486649529064303 +48260,241.2999999998168,-0.05486603344768098 +48261,241.3049999998168,-0.05486557165999501 +48262,241.3099999998168,-0.05486510992755693 +48263,241.3149999998168,-0.05486464825033854 +48264,241.3199999998168,-0.0548641866283116 +48265,241.32499999981678,-0.05486372506144794 +48266,241.32999999981678,-0.05486326354971936 +48267,241.33499999981677,-0.05486280209309767 +48268,241.33999999981677,-0.05486234069155468 +48269,241.34499999981676,-0.05486187934506221 +48270,241.34999999981676,-0.05486141805359208 +48271,241.35499999981676,-0.054860956817116106 +48272,241.35999999981675,-0.05486049563560613 +48273,241.36499999981675,-0.054860034509033984 +48274,241.36999999981674,-0.05485957343737148 +48275,241.37499999981674,-0.05485911242059048 +48276,241.37999999981673,-0.054858651458662824 +48277,241.38499999981673,-0.054858190551560354 +48278,241.38999999981672,-0.05485772969925492 +48279,241.39499999981672,-0.05485726890171839 +48280,241.3999999998167,-0.054856808158922604 +48281,241.4049999998167,-0.05485634747083942 +48282,241.4099999998167,-0.05485588683744072 +48283,241.4149999998167,-0.054855426258698374 +48284,241.4199999998167,-0.05485496573458424 +48285,241.4249999998167,-0.0548545052650702 +48286,241.4299999998167,-0.054854044850128146 +48287,241.43499999981668,-0.054853584489729955 +48288,241.43999999981668,-0.0548531241838475 +48289,241.44499999981667,-0.05485266393245269 +48290,241.44999999981667,-0.054852203735517406 +48291,241.45499999981666,-0.054851743593013556 +48292,241.45999999981666,-0.05485128350491304 +48293,241.46499999981665,-0.05485082347118777 +48294,241.46999999981665,-0.054850363491809634 +48295,241.47499999981665,-0.05484990356675057 +48296,241.47999999981664,-0.05484944369598247 +48297,241.48499999981664,-0.05484898387947729 +48298,241.48999999981663,-0.05484852411720692 +48299,241.49499999981663,-0.054848064409143304 +48300,241.49999999981662,-0.054847604755258364 +48301,241.50499999981662,-0.05484714515552403 +48302,241.5099999998166,-0.05484668560991227 +48303,241.5149999998166,-0.05484622611839499 +48304,241.5199999998166,-0.054845766680944166 +48305,241.5249999998166,-0.05484530729753172 +48306,241.5299999998166,-0.05484484796812963 +48307,241.5349999998166,-0.05484438869270983 +48308,241.5399999998166,-0.05484392947124429 +48309,241.54499999981658,-0.054843470303704976 +48310,241.54999999981658,-0.05484301119006385 +48311,241.55499999981657,-0.05484255213029289 +48312,241.55999999981657,-0.054842093124364055 +48313,241.56499999981656,-0.05484163417224933 +48314,241.56999999981656,-0.0548411752739207 +48315,241.57499999981655,-0.05484071642935015 +48316,241.57999999981655,-0.05484025763850967 +48317,241.58499999981655,-0.054839798901371244 +48318,241.58999999981654,-0.054839340217906866 +48319,241.59499999981654,-0.05483888158808854 +48320,241.59999999981653,-0.054838423011888265 +48321,241.60499999981653,-0.054837964489278065 +48322,241.60999999981652,-0.05483750602022992 +48323,241.61499999981652,-0.05483704760471587 +48324,241.6199999998165,-0.0548365892427079 +48325,241.6249999998165,-0.05483613093417806 +48326,241.6299999998165,-0.054835672679098356 +48327,241.6349999998165,-0.054835214477440816 +48328,241.6399999998165,-0.05483475632917748 +48329,241.6449999998165,-0.05483429823428038 +48330,241.6499999998165,-0.054833840192721556 +48331,241.65499999981648,-0.05483338220447303 +48332,241.65999999981648,-0.05483292426950686 +48333,241.66499999981647,-0.0548324663877951 +48334,241.66999999981647,-0.054832008559309774 +48335,241.67499999981646,-0.054831550784022964 +48336,241.67999999981646,-0.05483109306190671 +48337,241.68499999981645,-0.05483063539293309 +48338,241.68999999981645,-0.054830177777074156 +48339,241.69499999981645,-0.054829720214301984 +48340,241.69999999981644,-0.05482926270458865 +48341,241.70499999981644,-0.054828805247906204 +48342,241.70999999981643,-0.05482834784422676 +48343,241.71499999981643,-0.05482789049352237 +48344,241.71999999981642,-0.05482743319576514 +48345,241.72499999981642,-0.054826975950927136 +48346,241.7299999998164,-0.05482651875898047 +48347,241.7349999998164,-0.05482606161989723 +48348,241.7399999998164,-0.054825604533649513 +48349,241.7449999998164,-0.05482514750020943 +48350,241.7499999998164,-0.054824690519549066 +48351,241.7549999998164,-0.05482423359164055 +48352,241.7599999998164,-0.05482377671645598 +48353,241.76499999981638,-0.05482331989396748 +48354,241.76999999981638,-0.05482286312414718 +48355,241.77499999981637,-0.05482240640696718 +48356,241.77999999981637,-0.05482194974239961 +48357,241.78499999981636,-0.054821493130416614 +48358,241.78999999981636,-0.0548210365709903 +48359,241.79499999981635,-0.05482058006409282 +48360,241.79999999981635,-0.054820123609696327 +48361,241.80499999981635,-0.05481966720777294 +48362,241.80999999981634,-0.054819210858294797 +48363,241.81499999981634,-0.05481875456123408 +48364,241.81999999981633,-0.0548182983165629 +48365,241.82499999981633,-0.054817842124253446 +48366,241.82999999981632,-0.054817385984277864 +48367,241.83499999981632,-0.054816929896608316 +48368,241.8399999998163,-0.05481647386121696 +48369,241.8449999998163,-0.05481601787807597 +48370,241.8499999998163,-0.05481556194715752 +48371,241.8549999998163,-0.05481510606843378 +48372,241.8599999998163,-0.054814650241876935 +48373,241.8649999998163,-0.05481419446745916 +48374,241.8699999998163,-0.05481373874515265 +48375,241.87499999981628,-0.054813283074929574 +48376,241.87999999981628,-0.054812827456762137 +48377,241.88499999981627,-0.05481237189062253 +48378,241.88999999981627,-0.05481191637648296 +48379,241.89499999981626,-0.054811460914315616 +48380,241.89999999981626,-0.05481100550409271 +48381,241.90499999981625,-0.05481055014578644 +48382,241.90999999981625,-0.054810094839369015 +48383,241.91499999981625,-0.05480963958481266 +48384,241.91999999981624,-0.054809184382089586 +48385,241.92499999981624,-0.05480872923117201 +48386,241.92999999981623,-0.05480827413203217 +48387,241.93499999981623,-0.05480781908464228 +48388,241.93999999981622,-0.05480736408897457 +48389,241.94499999981622,-0.05480690914500127 +48390,241.9499999998162,-0.05480645425269462 +48391,241.9549999998162,-0.05480599941202685 +48392,241.9599999998162,-0.054805544622970215 +48393,241.9649999998162,-0.054805089885496955 +48394,241.9699999998162,-0.05480463519957932 +48395,241.9749999998162,-0.05480418056518957 +48396,241.9799999998162,-0.05480372598229994 +48397,241.98499999981618,-0.05480327145088271 +48398,241.98999999981618,-0.05480281697091011 +48399,241.99499999981617,-0.054802362542354446 +48400,241.99999999981617,-0.05480190816518796 +48401,242.00499999981616,-0.05480145383938292 +48402,242.00999999981616,-0.05480099956491159 +48403,242.01499999981615,-0.054800545341746276 +48404,242.01999999981615,-0.05480009116985925 +48405,242.02499999981615,-0.05479963704922277 +48406,242.02999999981614,-0.054799182979809145 +48407,242.03499999981614,-0.05479872896159067 +48408,242.03999999981613,-0.05479827499453961 +48409,242.04499999981613,-0.05479782107862829 +48410,242.04999999981612,-0.054797367213828996 +48411,242.05499999981612,-0.05479691340011401 +48412,242.0599999998161,-0.054796459637455656 +48413,242.0649999998161,-0.05479600592582624 +48414,242.0699999998161,-0.05479555226519807 +48415,242.0749999998161,-0.054795098655543474 +48416,242.0799999998161,-0.054794645096834745 +48417,242.0849999998161,-0.0547941915890442 +48418,242.0899999998161,-0.054793738132144186 +48419,242.09499999981608,-0.05479328472610702 +48420,242.09999999981608,-0.05479283137090502 +48421,242.10499999981607,-0.054792378066510536 +48422,242.10999999981607,-0.05479192481289589 +48423,242.11499999981606,-0.054791471610033414 +48424,242.11999999981606,-0.05479101845789545 +48425,242.12499999981605,-0.05479056535645435 +48426,242.12999999981605,-0.05479011230568246 +48427,242.13499999981605,-0.05478965930555212 +48428,242.13999999981604,-0.054789206356035694 +48429,242.14499999981604,-0.05478875345710553 +48430,242.14999999981603,-0.05478830060873399 +48431,242.15499999981603,-0.05478784781089344 +48432,242.15999999981602,-0.05478739506355623 +48433,242.16499999981602,-0.05478694236669475 +48434,242.169999999816,-0.05478648972028134 +48435,242.174999999816,-0.0547860371242884 +48436,242.179999999816,-0.05478558457868829 +48437,242.184999999816,-0.05478513208345339 +48438,242.189999999816,-0.0547846796385561 +48439,242.194999999816,-0.05478422724396879 +48440,242.199999999816,-0.054783774899663844 +48441,242.20499999981598,-0.054783322605613666 +48442,242.20999999981598,-0.05478287036179063 +48443,242.21499999981597,-0.05478241816816715 +48444,242.21999999981597,-0.054781966024715634 +48445,242.22499999981596,-0.054781513931408454 +48446,242.22999999981596,-0.05478106188821803 +48447,242.23499999981595,-0.05478060989511679 +48448,242.23999999981595,-0.05478015795207711 +48449,242.24499999981595,-0.05477970605907142 +48450,242.24999999981594,-0.05477925421607213 +48451,242.25499999981594,-0.05477880242305167 +48452,242.25999999981593,-0.05477835067998247 +48453,242.26499999981593,-0.05477789898683693 +48454,242.26999999981592,-0.0547774473435875 +48455,242.27499999981592,-0.05477699575020659 +48456,242.2799999998159,-0.05477654420666666 +48457,242.2849999998159,-0.05477609271294013 +48458,242.2899999998159,-0.05477564126899944 +48459,242.2949999998159,-0.05477518987481703 +48460,242.2999999998159,-0.05477473853036535 +48461,242.3049999998159,-0.05477428723561687 +48462,242.3099999998159,-0.054773835990544 +48463,242.31499999981588,-0.054773384795119215 +48464,242.31999999981588,-0.05477293364931498 +48465,242.32499999981587,-0.05477248255310373 +48466,242.32999999981587,-0.05477203150645795 +48467,242.33499999981586,-0.05477158050935009 +48468,242.33999999981586,-0.05477112956175262 +48469,242.34499999981585,-0.05477067866363801 +48470,242.34999999981585,-0.05477022781497874 +48471,242.35499999981585,-0.054769777015747284 +48472,242.35999999981584,-0.05476932626591611 +48473,242.36499999981584,-0.0547688755654577 +48474,242.36999999981583,-0.05476842491434457 +48475,242.37499999981583,-0.05476797431254916 +48476,242.37999999981582,-0.054767523760043985 +48477,242.38499999981582,-0.05476707325680154 +48478,242.3899999998158,-0.054766622802794304 +48479,242.3949999998158,-0.05476617239799478 +48480,242.3999999998158,-0.054765722042375474 +48481,242.4049999998158,-0.05476527173590889 +48482,242.4099999998158,-0.05476482147856753 +48483,242.4149999998158,-0.05476437127032391 +48484,242.4199999998158,-0.054763921111150526 +48485,242.42499999981578,-0.054763471001019894 +48486,242.42999999981578,-0.05476302093990455 +48487,242.43499999981577,-0.05476257092777699 +48488,242.43999999981577,-0.05476212096460975 +48489,242.44499999981576,-0.054761671050375355 +48490,242.44999999981576,-0.054761221185046324 +48491,242.45499999981575,-0.05476077136859519 +48492,242.45999999981575,-0.05476032160099449 +48493,242.46499999981575,-0.054759871882216746 +48494,242.46999999981574,-0.05475942221223451 +48495,242.47499999981574,-0.054758972591020326 +48496,242.47999999981573,-0.05475852301854672 +48497,242.48499999981573,-0.054758073494786244 +48498,242.48999999981572,-0.05475762401971146 +48499,242.49499999981572,-0.054757174593294905 +48500,242.4999999998157,-0.05475672521550914 +48501,242.5049999998157,-0.05475627588632671 +48502,242.5099999998157,-0.054755826605720176 +48503,242.5149999998157,-0.0547553773736621 +48504,242.5199999998157,-0.054754928190125056 +48505,242.5249999998157,-0.05475447905508161 +48506,242.5299999998157,-0.054754029968504314 +48507,242.53499999981568,-0.05475358093036576 +48508,242.53999999981568,-0.054753131940638515 +48509,242.54499999981567,-0.054752682999295164 +48510,242.54999999981567,-0.054752234106308265 +48511,242.55499999981566,-0.05475178526165043 +48512,242.55999999981566,-0.05475133646529422 +48513,242.56499999981565,-0.054750887717212225 +48514,242.56999999981565,-0.054750439017377035 +48515,242.57499999981565,-0.05474999036576125 +48516,242.57999999981564,-0.054749541762337456 +48517,242.58499999981564,-0.05474909320707826 +48518,242.58999999981563,-0.05474864469995626 +48519,242.59499999981563,-0.054748196240944055 +48520,242.59999999981562,-0.05474774783001425 +48521,242.60499999981562,-0.054747299467139444 +48522,242.6099999998156,-0.05474685115229227 +48523,242.6149999998156,-0.05474640288544531 +48524,242.6199999998156,-0.054745954666571194 +48525,242.6249999998156,-0.05474550649564255 +48526,242.6299999998156,-0.05474505837263199 +48527,242.6349999998156,-0.054744610297512125 +48528,242.6399999998156,-0.0547441622702556 +48529,242.64499999981558,-0.05474371429083503 +48530,242.64999999981558,-0.054743266359223046 +48531,242.65499999981557,-0.05474281847539227 +48532,242.65999999981557,-0.054742370639315356 +48533,242.66499999981556,-0.05474192285096493 +48534,242.66999999981556,-0.05474147511031363 +48535,242.67499999981555,-0.05474102741733411 +48536,242.67999999981555,-0.05474057977199901 +48537,242.68499999981555,-0.05474013217428096 +48538,242.68999999981554,-0.05473968462415263 +48539,242.69499999981554,-0.05473923712158667 +48540,242.69999999981553,-0.054738789666555716 +48541,242.70499999981553,-0.05473834225903245 +48542,242.70999999981552,-0.05473789489898951 +48543,242.71499999981552,-0.05473744758639957 +48544,242.7199999998155,-0.05473700032123529 +48545,242.7249999998155,-0.054736553103469324 +48546,242.7299999998155,-0.054736105933074354 +48547,242.7349999998155,-0.054735658810023055 +48548,242.7399999998155,-0.05473521173428809 +48549,242.7449999998155,-0.05473476470584214 +48550,242.7499999998155,-0.05473431772465789 +48551,242.75499999981548,-0.054733870790707996 +48552,242.75999999981548,-0.05473342390396516 +48553,242.76499999981547,-0.05473297706440206 +48554,242.76999999981547,-0.05473253027199141 +48555,242.77499999981546,-0.05473208352670587 +48556,242.77999999981546,-0.054731636828518136 +48557,242.78499999981545,-0.054731190177400905 +48558,242.78999999981545,-0.05473074357332688 +48559,242.79499999981545,-0.05473029701626874 +48560,242.79999999981544,-0.0547298505061992 +48561,242.80499999981544,-0.05472940404309097 +48562,242.80999999981543,-0.054728957626916756 +48563,242.81499999981543,-0.05472851125764925 +48564,242.81999999981542,-0.054728064935261174 +48565,242.82499999981542,-0.05472761865972524 +48566,242.8299999998154,-0.054727172431014166 +48567,242.8349999998154,-0.05472672624910067 +48568,242.8399999998154,-0.05472628011395746 +48569,242.8449999998154,-0.05472583402555728 +48570,242.8499999998154,-0.05472538798387284 +48571,242.8549999998154,-0.054724941988876855 +48572,242.8599999998154,-0.05472449604054207 +48573,242.86499999981538,-0.054724050138841206 +48574,242.86999999981538,-0.05472360428374701 +48575,242.87499999981537,-0.05472315847523221 +48576,242.87999999981537,-0.05472271271326955 +48577,242.88499999981536,-0.05472226699783175 +48578,242.88999999981536,-0.054721821328891564 +48579,242.89499999981535,-0.05472137570642174 +48580,242.89999999981535,-0.05472093013039502 +48581,242.90499999981535,-0.054720484600784165 +48582,242.90999999981534,-0.05472003911756191 +48583,242.91499999981534,-0.05471959368070101 +48584,242.91999999981533,-0.054719148290174234 +48585,242.92499999981533,-0.05471870294595432 +48586,242.92999999981532,-0.054718257648014045 +48587,242.93499999981532,-0.05471781239632616 +48588,242.9399999998153,-0.05471736719086343 +48589,242.9449999998153,-0.05471692203159863 +48590,242.9499999998153,-0.054716476918504516 +48591,242.9549999998153,-0.05471603185155387 +48592,242.9599999998153,-0.05471558683071945 +48593,242.9649999998153,-0.054715141855974044 +48594,242.9699999998153,-0.05471469692729042 +48595,242.97499999981528,-0.05471425204464137 +48596,242.97999999981528,-0.05471380720799967 +48597,242.98499999981527,-0.05471336241733809 +48598,242.98999999981527,-0.05471291767262943 +48599,242.99499999981526,-0.054712472973846474 +48600,242.99999999981526,-0.054712028320962024 +48601,243.00499999981525,-0.05471158371394884 +48602,243.00999999981525,-0.05471113915277975 +48603,243.01499999981525,-0.05471069463742754 +48604,243.01999999981524,-0.054710250167865 +48605,243.02499999981524,-0.05470980574406492 +48606,243.02999999981523,-0.054709361366000124 +48607,243.03499999981523,-0.05470891703364342 +48608,243.03999999981522,-0.054708472746967586 +48609,243.04499999981522,-0.054708028505945465 +48610,243.0499999998152,-0.05470758431054983 +48611,243.0549999998152,-0.05470714016075352 +48612,243.0599999998152,-0.05470669605652936 +48613,243.0649999998152,-0.05470625199785013 +48614,243.0699999998152,-0.05470580798468868 +48615,243.0749999998152,-0.05470536401701782 +48616,243.0799999998152,-0.054704920094810365 +48617,243.08499999981518,-0.05470447621803915 +48618,243.08999999981518,-0.054704032386677 +48619,243.09499999981517,-0.05470358860069675 +48620,243.09999999981517,-0.054703144860071204 +48621,243.10499999981516,-0.05470270116477323 +48622,243.10999999981516,-0.05470225751477564 +48623,243.11499999981515,-0.054701813910051286 +48624,243.11999999981515,-0.054701370350572986 +48625,243.12499999981515,-0.0547009268363136 +48626,243.12999999981514,-0.054700483367245964 +48627,243.13499999981514,-0.05470003994334293 +48628,243.13999999981513,-0.05469959656457733 +48629,243.14499999981513,-0.05469915323092204 +48630,243.14999999981512,-0.05469870994234986 +48631,243.15499999981512,-0.054698266698833695 +48632,243.1599999998151,-0.054697823500346375 +48633,243.1649999998151,-0.05469738034686075 +48634,243.1699999998151,-0.05469693723834971 +48635,243.1749999998151,-0.05469649417478608 +48636,243.1799999998151,-0.05469605115614275 +48637,243.1849999998151,-0.054695608182392545 +48638,243.1899999998151,-0.05469516525350838 +48639,243.19499999981508,-0.05469472236946309 +48640,243.19999999981508,-0.05469427953022955 +48641,243.20499999981507,-0.054693836735780633 +48642,243.20999999981507,-0.05469339398608924 +48643,243.21499999981506,-0.0546929512811282 +48644,243.21999999981506,-0.054692508620870425 +48645,243.22499999981505,-0.05469206600528878 +48646,243.22999999981505,-0.05469162343435615 +48647,243.23499999981505,-0.05469118090804541 +48648,243.23999999981504,-0.05469073842632945 +48649,243.24499999981504,-0.054690295989181154 +48650,243.24999999981503,-0.054689853596573426 +48651,243.25499999981503,-0.05468941124847915 +48652,243.25999999981502,-0.05468896894487121 +48653,243.26499999981502,-0.054688526685722494 +48654,243.269999999815,-0.05468808447100593 +48655,243.274999999815,-0.05468764230069438 +48656,243.279999999815,-0.05468720017476076 +48657,243.284999999815,-0.054686758093177974 +48658,243.289999999815,-0.05468631605591891 +48659,243.294999999815,-0.05468587406295649 +48660,243.299999999815,-0.054685432114263605 +48661,243.30499999981498,-0.054684990209813183 +48662,243.30999999981498,-0.05468454834957812 +48663,243.31499999981497,-0.05468410653353135 +48664,243.31999999981497,-0.05468366476164576 +48665,243.32499999981496,-0.05468322303389428 +48666,243.32999999981496,-0.05468278135024983 +48667,243.33499999981495,-0.05468233971068531 +48668,243.33999999981495,-0.05468189811517367 +48669,243.34499999981495,-0.0546814565636878 +48670,243.34999999981494,-0.05468101505620065 +48671,243.35499999981494,-0.054680573592685154 +48672,243.35999999981493,-0.0546801321731142 +48673,243.36499999981493,-0.05467969079746077 +48674,243.36999999981492,-0.05467924946569775 +48675,243.37499999981492,-0.054678808177798105 +48676,243.3799999998149,-0.05467836693373475 +48677,243.3849999998149,-0.05467792573348063 +48678,243.3899999998149,-0.05467748457700868 +48679,243.3949999998149,-0.054677043464291857 +48680,243.3999999998149,-0.05467660239530308 +48681,243.4049999998149,-0.0546761613700153 +48682,243.4099999998149,-0.05467572038840146 +48683,243.41499999981488,-0.054675279450434516 +48684,243.41999999981488,-0.05467483855608741 +48685,243.42499999981487,-0.05467439770533309 +48686,243.42999999981487,-0.05467395689814451 +48687,243.43499999981486,-0.054673516134494636 +48688,243.43999999981486,-0.054673075414356405 +48689,243.44499999981485,-0.05467263473770278 +48690,243.44999999981485,-0.054672194104506716 +48691,243.45499999981485,-0.054671753514741184 +48692,243.45999999981484,-0.05467131296837914 +48693,243.46499999981484,-0.05467087246539356 +48694,243.46999999981483,-0.05467043200575739 +48695,243.47499999981483,-0.0546699915894436 +48696,243.47999999981482,-0.054669551216425166 +48697,243.48499999981482,-0.054669110886675046 +48698,243.4899999998148,-0.054668670600166225 +48699,243.4949999998148,-0.054668230356871676 +48700,243.4999999998148,-0.05466779015676437 +48701,243.5049999998148,-0.054667349999817275 +48702,243.5099999998148,-0.05466690988600338 +48703,243.5149999998148,-0.05466646981529566 +48704,243.5199999998148,-0.05466602978766709 +48705,243.52499999981478,-0.05466558980309067 +48706,243.52999999981478,-0.054665149861539364 +48707,243.53499999981477,-0.05466470996298617 +48708,243.53999999981477,-0.05466427010740408 +48709,243.54499999981476,-0.054663830294766076 +48710,243.54999999981476,-0.054663390525045145 +48711,243.55499999981475,-0.05466295079821428 +48712,243.55999999981475,-0.054662511114246484 +48713,243.56499999981475,-0.054662071473114734 +48714,243.56999999981474,-0.054661631874792053 +48715,243.57499999981474,-0.054661192319251414 +48716,243.57999999981473,-0.054660752806465825 +48717,243.58499999981473,-0.05466031333640829 +48718,243.58999999981472,-0.05465987390905181 +48719,243.59499999981472,-0.05465943452436939 +48720,243.5999999998147,-0.05465899518233404 +48721,243.6049999998147,-0.05465855588291876 +48722,243.6099999998147,-0.054658116626096556 +48723,243.6149999998147,-0.05465767741184045 +48724,243.6199999998147,-0.054657238240123446 +48725,243.6249999998147,-0.05465679911091856 +48726,243.6299999998147,-0.05465636002419879 +48727,243.63499999981468,-0.05465592097993718 +48728,243.63999999981468,-0.05465548197810672 +48729,243.64499999981467,-0.054655043018680446 +48730,243.64999999981467,-0.05465460410163138 +48731,243.65499999981466,-0.05465416522693253 +48732,243.65999999981466,-0.05465372639455694 +48733,243.66499999981465,-0.054653287604477616 +48734,243.66999999981465,-0.054652848856667574 +48735,243.67499999981464,-0.054652410151099874 +48736,243.67999999981464,-0.05465197148774752 +48737,243.68499999981464,-0.05465153286658355 +48738,243.68999999981463,-0.054651094287581005 +48739,243.69499999981463,-0.0546506557507129 +48740,243.69999999981462,-0.054650217255952274 +48741,243.70499999981462,-0.054649778803272174 +48742,243.7099999998146,-0.05464934039264563 +48743,243.7149999998146,-0.05464890202404567 +48744,243.7199999998146,-0.05464846369744535 +48745,243.7249999998146,-0.054648025412817706 +48746,243.7299999998146,-0.05464758717013578 +48747,243.7349999998146,-0.05464714896937261 +48748,243.7399999998146,-0.05464671081050125 +48749,243.74499999981458,-0.05464627269349474 +48750,243.74999999981458,-0.05464583461832614 +48751,243.75499999981457,-0.05464539658496848 +48752,243.75999999981457,-0.05464495859339482 +48753,243.76499999981456,-0.05464452064357822 +48754,243.76999999981456,-0.05464408273549172 +48755,243.77499999981455,-0.05464364486910839 +48756,243.77999999981455,-0.05464320704440127 +48757,243.78499999981454,-0.05464276926134342 +48758,243.78999999981454,-0.0546423315199079 +48759,243.79499999981454,-0.05464189382006777 +48760,243.79999999981453,-0.05464145616179609 +48761,243.80499999981453,-0.054641018545065936 +48762,243.80999999981452,-0.05464058096985035 +48763,243.81499999981452,-0.05464014343612242 +48764,243.8199999998145,-0.05463970594385518 +48765,243.8249999998145,-0.05463926849302172 +48766,243.8299999998145,-0.05463883108359511 +48767,243.8349999998145,-0.05463839371554842 +48768,243.8399999998145,-0.05463795638885471 +48769,243.8449999998145,-0.054637519103487055 +48770,243.8499999998145,-0.05463708185941853 +48771,243.85499999981448,-0.05463664465662221 +48772,243.85999999981448,-0.05463620749507118 +48773,243.86499999981447,-0.0546357703747385 +48774,243.86999999981447,-0.05463533329559726 +48775,243.87499999981446,-0.05463489625762054 +48776,243.87999999981446,-0.054634459260781414 +48777,243.88499999981445,-0.054634022305052966 +48778,243.88999999981445,-0.05463358539040829 +48779,243.89499999981444,-0.054633148516820454 +48780,243.89999999981444,-0.054632711684262564 +48781,243.90499999981444,-0.05463227489270769 +48782,243.90999999981443,-0.054631838142128915 +48783,243.91499999981443,-0.05463140143249933 +48784,243.91999999981442,-0.05463096476379204 +48785,243.92499999981442,-0.05463052813598013 +48786,243.9299999998144,-0.05463009154903669 +48787,243.9349999998144,-0.05462965500293481 +48788,243.9399999998144,-0.05462921849764758 +48789,243.9449999998144,-0.05462878203314812 +48790,243.9499999998144,-0.0546283456094095 +48791,243.9549999998144,-0.05462790922640483 +48792,243.95999999981439,-0.05462747288410721 +48793,243.96499999981438,-0.05462703658248974 +48794,243.96999999981438,-0.05462660032152552 +48795,243.97499999981437,-0.05462616410118764 +48796,243.97999999981437,-0.05462572792144923 +48797,243.98499999981436,-0.05462529178228337 +48798,243.98999999981436,-0.05462485568366319 +48799,243.99499999981435,-0.05462441962556177 +48800,243.99999999981435,-0.054623983607952245 +48801,244.00499999981434,-0.05462354763080769 +48802,244.00999999981434,-0.05462311169410126 +48803,244.01499999981434,-0.054622675797806025 +48804,244.01999999981433,-0.05462223994189512 +48805,244.02499999981433,-0.05462180412634164 +48806,244.02999999981432,-0.05462136835111872 +48807,244.03499999981432,-0.05462093261619946 +48808,244.0399999998143,-0.05462049692155698 +48809,244.0449999998143,-0.054620061267164406 +48810,244.0499999998143,-0.054619625652994844 +48811,244.0549999998143,-0.054619190079021426 +48812,244.0599999998143,-0.05461875454521726 +48813,244.0649999998143,-0.054618319051555474 +48814,244.06999999981429,-0.05461788359800919 +48815,244.07499999981428,-0.05461744818455152 +48816,244.07999999981428,-0.05461701281115561 +48817,244.08499999981427,-0.05461657747779457 +48818,244.08999999981427,-0.05461614218444153 +48819,244.09499999981426,-0.05461570693106961 +48820,244.09999999981426,-0.05461527171765195 +48821,244.10499999981425,-0.054614836544161674 +48822,244.10999999981425,-0.05461440141057192 +48823,244.11499999981424,-0.0546139663168558 +48824,244.11999999981424,-0.05461353126298646 +48825,244.12499999981424,-0.05461309624893703 +48826,244.12999999981423,-0.05461266127468063 +48827,244.13499999981423,-0.05461222634019043 +48828,244.13999999981422,-0.05461179144543954 +48829,244.14499999981422,-0.05461135659040109 +48830,244.1499999998142,-0.05461092177504824 +48831,244.1549999998142,-0.05461048699935411 +48832,244.1599999998142,-0.05461005226329185 +48833,244.1649999998142,-0.054609617566834585 +48834,244.1699999998142,-0.05460918290995548 +48835,244.1749999998142,-0.05460874829262767 +48836,244.17999999981419,-0.054608313714824275 +48837,244.18499999981418,-0.054607879176518465 +48838,244.18999999981418,-0.05460744467768338 +48839,244.19499999981417,-0.054607010218292146 +48840,244.19999999981417,-0.05460657579831794 +48841,244.20499999981416,-0.05460614141773388 +48842,244.20999999981416,-0.054605707076513126 +48843,244.21499999981415,-0.05460527277462883 +48844,244.21999999981415,-0.054604838512054145 +48845,244.22499999981414,-0.05460440428876221 +48846,244.22999999981414,-0.05460397010472619 +48847,244.23499999981414,-0.05460353595991923 +48848,244.23999999981413,-0.054603101854314474 +48849,244.24499999981413,-0.054602667787885084 +48850,244.24999999981412,-0.054602233760604225 +48851,244.25499999981412,-0.05460179977244504 +48852,244.2599999998141,-0.054601365823380675 +48853,244.2649999998141,-0.054600931913384304 +48854,244.2699999998141,-0.05460049804242908 +48855,244.2749999998141,-0.05460006421048817 +48856,244.2799999998141,-0.05459963041753471 +48857,244.2849999998141,-0.05459919666354189 +48858,244.28999999981409,-0.05459876294848284 +48859,244.29499999981408,-0.05459832927233074 +48860,244.29999999981408,-0.05459789563505876 +48861,244.30499999981407,-0.05459746203664005 +48862,244.30999999981407,-0.054597028477047775 +48863,244.31499999981406,-0.05459659495625509 +48864,244.31999999981406,-0.054596161474235176 +48865,244.32499999981405,-0.05459572803096118 +48866,244.32999999981405,-0.054595294626406304 +48867,244.33499999981404,-0.05459486126054368 +48868,244.33999999981404,-0.0545944279333465 +48869,244.34499999981404,-0.05459399464478791 +48870,244.34999999981403,-0.0545935613948411 +48871,244.35499999981403,-0.05459312818347922 +48872,244.35999999981402,-0.05459269501067546 +48873,244.36499999981402,-0.05459226187640299 +48874,244.369999999814,-0.05459182878063497 +48875,244.374999999814,-0.05459139572334458 +48876,244.379999999814,-0.05459096270450499 +48877,244.384999999814,-0.05459052972408938 +48878,244.389999999814,-0.05459009678207092 +48879,244.394999999814,-0.05458966387842278 +48880,244.39999999981399,-0.054589231013118154 +48881,244.40499999981398,-0.054588798186130195 +48882,244.40999999981398,-0.0545883653974321 +48883,244.41499999981397,-0.05458793264699703 +48884,244.41999999981397,-0.05458749993479819 +48885,244.42499999981396,-0.05458706726080874 +48886,244.42999999981396,-0.05458663462500185 +48887,244.43499999981395,-0.054586202027350726 +48888,244.43999999981395,-0.054585769467828525 +48889,244.44499999981394,-0.05458533694640845 +48890,244.44999999981394,-0.05458490446306367 +48891,244.45499999981394,-0.05458447201776735 +48892,244.45999999981393,-0.05458403961049271 +48893,244.46499999981393,-0.05458360724121292 +48894,244.46999999981392,-0.054583174909901146 +48895,244.47499999981392,-0.054582742616530594 +48896,244.4799999998139,-0.05458231036107445 +48897,244.4849999998139,-0.05458187814350589 +48898,244.4899999998139,-0.0545814459637981 +48899,244.4949999998139,-0.05458101382192429 +48900,244.4999999998139,-0.05458058171785763 +48901,244.5049999998139,-0.05458014965157129 +48902,244.50999999981389,-0.05457971762303849 +48903,244.51499999981388,-0.0545792856322324 +48904,244.51999999981388,-0.05457885367912621 +48905,244.52499999981387,-0.05457842176369313 +48906,244.52999999981387,-0.054577989885906335 +48907,244.53499999981386,-0.054577558045739015 +48908,244.53999999981386,-0.05457712624316436 +48909,244.54499999981385,-0.05457669447815557 +48910,244.54999999981385,-0.05457626275068584 +48911,244.55499999981384,-0.054575831060728365 +48912,244.55999999981384,-0.05457539940825632 +48913,244.56499999981384,-0.054574967793242904 +48914,244.56999999981383,-0.05457453621566133 +48915,244.57499999981383,-0.05457410467548478 +48916,244.57999999981382,-0.054573673172686445 +48917,244.58499999981382,-0.05457324170723952 +48918,244.5899999998138,-0.05457281027911722 +48919,244.5949999998138,-0.054572378888292736 +48920,244.5999999998138,-0.054571947534739255 +48921,244.6049999998138,-0.05457151621842996 +48922,244.6099999998138,-0.05457108493933808 +48923,244.6149999998138,-0.0545706536974368 +48924,244.61999999981379,-0.05457022249269931 +48925,244.62499999981378,-0.054569791325098836 +48926,244.62999999981378,-0.05456936019460855 +48927,244.63499999981377,-0.05456892910120166 +48928,244.63999999981377,-0.05456849804485138 +48929,244.64499999981376,-0.054568067025530895 +48930,244.64999999981376,-0.054567636043213415 +48931,244.65499999981375,-0.05456720509787212 +48932,244.65999999981375,-0.05456677418948024 +48933,244.66499999981374,-0.05456634331801097 +48934,244.66999999981374,-0.0545659124834375 +48935,244.67499999981374,-0.054565481685733046 +48936,244.67999999981373,-0.0545650509248708 +48937,244.68499999981373,-0.054564620200823984 +48938,244.68999999981372,-0.05456418951356578 +48939,244.69499999981372,-0.0545637588630694 +48940,244.6999999998137,-0.05456332824930804 +48941,244.7049999998137,-0.05456289767225492 +48942,244.7099999998137,-0.05456246713188324 +48943,244.7149999998137,-0.054562036628166215 +48944,244.7199999998137,-0.054561606161077025 +48945,244.7249999998137,-0.0545611757305889 +48946,244.72999999981369,-0.05456074533667503 +48947,244.73499999981368,-0.05456031497930863 +48948,244.73999999981368,-0.054559884658462905 +48949,244.74499999981367,-0.05455945437411107 +48950,244.74999999981367,-0.05455902412622632 +48951,244.75499999981366,-0.05455859391478187 +48952,244.75999999981366,-0.05455816373975091 +48953,244.76499999981365,-0.054557733601106675 +48954,244.76999999981365,-0.05455730349882235 +48955,244.77499999981364,-0.05455687343287116 +48956,244.77999999981364,-0.05455644340322631 +48957,244.78499999981364,-0.054556013409861014 +48958,244.78999999981363,-0.054555583452748455 +48959,244.79499999981363,-0.05455515353186186 +48960,244.79999999981362,-0.054554723647174445 +48961,244.80499999981362,-0.05455429379865941 +48962,244.8099999998136,-0.05455386398628998 +48963,244.8149999998136,-0.054553434210039345 +48964,244.8199999998136,-0.05455300446988072 +48965,244.8249999998136,-0.05455257476578733 +48966,244.8299999998136,-0.05455214509773237 +48967,244.8349999998136,-0.054551715465689044 +48968,244.83999999981359,-0.054551285869630574 +48969,244.84499999981358,-0.054550856309530174 +48970,244.84999999981358,-0.05455042678536105 +48971,244.85499999981357,-0.05454999729709643 +48972,244.85999999981357,-0.05454956784470949 +48973,244.86499999981356,-0.054549138428173466 +48974,244.86999999981356,-0.05454870904746157 +48975,244.87499999981355,-0.054548279702547005 +48976,244.87999999981355,-0.054547850393403 +48977,244.88499999981354,-0.05454742112000274 +48978,244.88999999981354,-0.05454699188231945 +48979,244.89499999981354,-0.05454656268032635 +48980,244.89999999981353,-0.05454613351399664 +48981,244.90499999981353,-0.05454570438330353 +48982,244.90999999981352,-0.054545275288220244 +48983,244.91499999981352,-0.05454484622871999 +48984,244.9199999998135,-0.054544417204775986 +48985,244.9249999998135,-0.05454398821636143 +48986,244.9299999998135,-0.05454355926344954 +48987,244.9349999998135,-0.05454313034601354 +48988,244.9399999998135,-0.054542701464026636 +48989,244.9449999998135,-0.054542272617462036 +48990,244.94999999981349,-0.05454184380629296 +48991,244.95499999981348,-0.05454141503049262 +48992,244.95999999981348,-0.05454098629003421 +48993,244.96499999981347,-0.05454055758489098 +48994,244.96999999981347,-0.05454012891503611 +48995,244.97499999981346,-0.05453970028044282 +48996,244.97999999981346,-0.05453927168108433 +48997,244.98499999981345,-0.05453884311693385 +48998,244.98999999981345,-0.054538414587964594 +48999,244.99499999981344,-0.054537986094149775 +49000,244.99999999981344,-0.05453755763546261 +49001,245.00499999981344,-0.05453712921187629 +49002,245.00999999981343,-0.05453670082336406 +49003,245.01499999981343,-0.0545362724698991 +49004,245.01999999981342,-0.054535844151454654 +49005,245.02499999981342,-0.05453541586800391 +49006,245.0299999998134,-0.054534987619520095 +49007,245.0349999998134,-0.05453455940597641 +49008,245.0399999998134,-0.05453413122734608 +49009,245.0449999998134,-0.05453370308360231 +49010,245.0499999998134,-0.05453327497471831 +49011,245.0549999998134,-0.054532846900667294 +49012,245.05999999981339,-0.054532418861422474 +49013,245.06499999981338,-0.05453199085695707 +49014,245.06999999981338,-0.05453156288724428 +49015,245.07499999981337,-0.05453113495225732 +49016,245.07999999981337,-0.0545307070519694 +49017,245.08499999981336,-0.05453027918635374 +49018,245.08999999981336,-0.054529851355383546 +49019,245.09499999981335,-0.05452942355903203 +49020,245.09999999981335,-0.054528995797272405 +49021,245.10499999981334,-0.05452856807007788 +49022,245.10999999981334,-0.054528140377421666 +49023,245.11499999981334,-0.05452771271927696 +49024,245.11999999981333,-0.054527285095617 +49025,245.12499999981333,-0.054526857506414984 +49026,245.12999999981332,-0.054526429951644105 +49027,245.13499999981332,-0.054526002431277594 +49028,245.1399999998133,-0.05452557494528865 +49029,245.1449999998133,-0.05452514749365049 +49030,245.1499999998133,-0.054524720076336325 +49031,245.1549999998133,-0.054524292693319355 +49032,245.1599999998133,-0.054523865344572785 +49033,245.1649999998133,-0.05452343803006983 +49034,245.16999999981329,-0.05452301074978371 +49035,245.17499999981328,-0.05452258350368761 +49036,245.17999999981328,-0.054522156291754754 +49037,245.18499999981327,-0.05452172911395836 +49038,245.18999999981327,-0.05452130197027161 +49039,245.19499999981326,-0.05452087486066772 +49040,245.19999999981326,-0.0545204477851199 +49041,245.20499999981325,-0.05452002074360136 +49042,245.20999999981325,-0.054519593736085316 +49043,245.21499999981324,-0.05451916676254496 +49044,245.21999999981324,-0.054518739822953494 +49045,245.22499999981324,-0.05451831291728412 +49046,245.22999999981323,-0.05451788604551007 +49047,245.23499999981323,-0.05451745920760452 +49048,245.23999999981322,-0.05451703240354068 +49049,245.24499999981322,-0.054516605633291776 +49050,245.2499999998132,-0.054516178896831 +49051,245.2549999998132,-0.05451575219413154 +49052,245.2599999998132,-0.054515325525166615 +49053,245.2649999998132,-0.05451489888990943 +49054,245.2699999998132,-0.054514472288333185 +49055,245.2749999998132,-0.05451404572041106 +49056,245.27999999981319,-0.05451361918611629 +49057,245.28499999981318,-0.05451319268542207 +49058,245.28999999981318,-0.054512766218301596 +49059,245.29499999981317,-0.054512339784728074 +49060,245.29999999981317,-0.05451191338467468 +49061,245.30499999981316,-0.05451148701811465 +49062,245.30999999981316,-0.054511060685021165 +49063,245.31499999981315,-0.05451063438536743 +49064,245.31999999981315,-0.05451020811912663 +49065,245.32499999981314,-0.05450978188627198 +49066,245.32999999981314,-0.054509355686776687 +49067,245.33499999981314,-0.05450892952061393 +49068,245.33999999981313,-0.05450850338775692 +49069,245.34499999981313,-0.05450807728817884 +49070,245.34999999981312,-0.05450765122185288 +49071,245.35499999981312,-0.054507225188752256 +49072,245.3599999998131,-0.054506799188850166 +49073,245.3649999998131,-0.05450637322211979 +49074,245.3699999998131,-0.05450594728853433 +49075,245.3749999998131,-0.05450552138806698 +49076,245.3799999998131,-0.05450509552069093 +49077,245.3849999998131,-0.05450466968637939 +49078,245.38999999981309,-0.054504243885105524 +49079,245.39499999981308,-0.05450381811684255 +49080,245.39999999981308,-0.05450339238156366 +49081,245.40499999981307,-0.054502966679242024 +49082,245.40999999981307,-0.054502541009850844 +49083,245.41499999981306,-0.05450211537336332 +49084,245.41999999981306,-0.05450168976975263 +49085,245.42499999981305,-0.054501264198991976 +49086,245.42999999981305,-0.05450083866105453 +49087,245.43499999981304,-0.054500413155913495 +49088,245.43999999981304,-0.05449998768354205 +49089,245.44499999981304,-0.05449956224391339 +49090,245.44999999981303,-0.054499136837000695 +49091,245.45499999981303,-0.054498711462777155 +49092,245.45999999981302,-0.054498286121215954 +49093,245.46499999981302,-0.054497860812290286 +49094,245.469999999813,-0.05449743553597331 +49095,245.474999999813,-0.054497010292238246 +49096,245.479999999813,-0.054496585081058244 +49097,245.484999999813,-0.054496159902406506 +49098,245.489999999813,-0.054495734756256214 +49099,245.494999999813,-0.05449530964258055 +49100,245.49999999981299,-0.054494884561352694 +49101,245.50499999981298,-0.05449445951254582 +49102,245.50999999981298,-0.05449403449613311 +49103,245.51499999981297,-0.054493609512087746 +49104,245.51999999981297,-0.0544931845603829 +49105,245.52499999981296,-0.05449275964099177 +49106,245.52999999981296,-0.054492334753887504 +49107,245.53499999981295,-0.054491909899043296 +49108,245.53999999981295,-0.054491485076432325 +49109,245.54499999981294,-0.054491060286027765 +49110,245.54999999981294,-0.05449063552780278 +49111,245.55499999981294,-0.054490210801730554 +49112,245.55999999981293,-0.05448978610778426 +49113,245.56499999981293,-0.054489361445937065 +49114,245.56999999981292,-0.05448893681616214 +49115,245.57499999981292,-0.054488512218432664 +49116,245.5799999998129,-0.054488087652721805 +49117,245.5849999998129,-0.05448766311900274 +49118,245.5899999998129,-0.05448723861724862 +49119,245.5949999998129,-0.05448681414743262 +49120,245.5999999998129,-0.054486389709527926 +49121,245.6049999998129,-0.05448596530350768 +49122,245.60999999981289,-0.054485540929345065 +49123,245.61499999981288,-0.05448511658701324 +49124,245.61999999981288,-0.05448469227648538 +49125,245.62499999981287,-0.054484267997734634 +49126,245.62999999981287,-0.054483843750734166 +49127,245.63499999981286,-0.05448341953545715 +49128,245.63999999981286,-0.05448299535187674 +49129,245.64499999981285,-0.05448257119996609 +49130,245.64999999981285,-0.05448214707969838 +49131,245.65499999981284,-0.054481722991046755 +49132,245.65999999981284,-0.05448129893398438 +49133,245.66499999981284,-0.05448087490848441 +49134,245.66999999981283,-0.054480450914519994 +49135,245.67499999981283,-0.05448002695206431 +49136,245.67999999981282,-0.054479603021090485 +49137,245.68499999981282,-0.05447917912157169 +49138,245.6899999998128,-0.05447875525348109 +49139,245.6949999998128,-0.05447833141679182 +49140,245.6999999998128,-0.054477907611477035 +49141,245.7049999998128,-0.054477483837509895 +49142,245.7099999998128,-0.054477060094863534 +49143,245.7149999998128,-0.05447663638351112 +49144,245.71999999981279,-0.054476212703425786 +49145,245.72499999981278,-0.05447578905458069 +49146,245.72999999981278,-0.054475365436948975 +49147,245.73499999981277,-0.0544749418505038 +49148,245.73999999981277,-0.05447451829521829 +49149,245.74499999981276,-0.054474094771065594 +49150,245.74999999981276,-0.05447367127801887 +49151,245.75499999981275,-0.05447324781605124 +49152,245.75999999981275,-0.054472824385135864 +49153,245.76499999981274,-0.05447240098524587 +49154,245.76999999981274,-0.054471977616354396 +49155,245.77499999981274,-0.0544715542784346 +49156,245.77999999981273,-0.054471130971459586 +49157,245.78499999981273,-0.05447070769540253 +49158,245.78999999981272,-0.054470284450236536 +49159,245.79499999981272,-0.05446986123593476 +49160,245.7999999998127,-0.05446943805247032 +49161,245.8049999998127,-0.05446901489981637 +49162,245.8099999998127,-0.05446859177794603 +49163,245.8149999998127,-0.05446816868683243 +49164,245.8199999998127,-0.05446774562644869 +49165,245.8249999998127,-0.05446732259676796 +49166,245.82999999981269,-0.05446689959776336 +49167,245.83499999981268,-0.054466476629408005 +49168,245.83999999981268,-0.054466053691675044 +49169,245.84499999981267,-0.05446563078453758 +49170,245.84999999981267,-0.05446520790796875 +49171,245.85499999981266,-0.05446478506194167 +49172,245.85999999981266,-0.054464362246429476 +49173,245.86499999981265,-0.05446393946140528 +49174,245.86999999981265,-0.054463516706842185 +49175,245.87499999981264,-0.05446309398271333 +49176,245.87999999981264,-0.05446267128899184 +49177,245.88499999981263,-0.054462248625650814 +49178,245.88999999981263,-0.05446182599266338 +49179,245.89499999981263,-0.05446140339000265 +49180,245.89999999981262,-0.054460980817641724 +49181,245.90499999981262,-0.05446055827555374 +49182,245.9099999998126,-0.054460135763711774 +49183,245.9149999998126,-0.05445971328208897 +49184,245.9199999998126,-0.05445929083065842 +49185,245.9249999998126,-0.054458868409393235 +49186,245.9299999998126,-0.05445844601826653 +49187,245.9349999998126,-0.0544580236572514 +49188,245.93999999981258,-0.05445760132632096 +49189,245.94499999981258,-0.0544571790254483 +49190,245.94999999981258,-0.05445675675460653 +49191,245.95499999981257,-0.05445633451376875 +49192,245.95999999981257,-0.05445591230290806 +49193,245.96499999981256,-0.05445549012199756 +49194,245.96999999981256,-0.05445506797101035 +49195,245.97499999981255,-0.054454645849919533 +49196,245.97999999981255,-0.05445422375869818 +49197,245.98499999981254,-0.05445380169731941 +49198,245.98999999981254,-0.0544533796657563 +49199,245.99499999981253,-0.05445295766398196 +49200,245.99999999981253,-0.05445253569196946 +49201,246.00499999981253,-0.0544521137496919 +49202,246.00999999981252,-0.05445169183712238 +49203,246.01499999981252,-0.054451269954233966 +49204,246.0199999998125,-0.05445084810099975 +49205,246.0249999998125,-0.05445042627739282 +49206,246.0299999998125,-0.054450004483386265 +49207,246.0349999998125,-0.05444958271895315 +49208,246.0399999998125,-0.05444916098406657 +49209,246.0449999998125,-0.054448739278699594 +49210,246.04999999981248,-0.054448317602825314 +49211,246.05499999981248,-0.0544478959564168 +49212,246.05999999981248,-0.054447474339447126 +49213,246.06499999981247,-0.05444705275188937 +49214,246.06999999981247,-0.054446631193716614 +49215,246.07499999981246,-0.0544462096649019 +49216,246.07999999981246,-0.05444578816541832 +49217,246.08499999981245,-0.054445366695238945 +49218,246.08999999981245,-0.054444945254336845 +49219,246.09499999981244,-0.054444523842685076 +49220,246.09999999981244,-0.0544441024602567 +49221,246.10499999981243,-0.0544436811070248 +49222,246.10999999981243,-0.05444325978296243 +49223,246.11499999981243,-0.05444283848804264 +49224,246.11999999981242,-0.054442417222238505 +49225,246.12499999981242,-0.05444199598552308 +49226,246.1299999998124,-0.05444157477786941 +49227,246.1349999998124,-0.05444115359925056 +49228,246.1399999998124,-0.05444073244963958 +49229,246.1449999998124,-0.05444031132900955 +49230,246.1499999998124,-0.05443989023733349 +49231,246.1549999998124,-0.05443946917458445 +49232,246.15999999981238,-0.054439048140735496 +49233,246.16499999981238,-0.054438627135759664 +49234,246.16999999981238,-0.05443820615963 +49235,246.17499999981237,-0.05443778521231955 +49236,246.17999999981237,-0.05443736429380138 +49237,246.18499999981236,-0.054436943404048505 +49238,246.18999999981236,-0.05443652254303397 +49239,246.19499999981235,-0.05443610171073082 +49240,246.19999999981235,-0.05443568090711209 +49241,246.20499999981234,-0.0544352601321508 +49242,246.20999999981234,-0.054434839385820014 +49243,246.21499999981233,-0.054434418668092746 +49244,246.21999999981233,-0.05443399797894203 +49245,246.22499999981233,-0.0544335773183409 +49246,246.22999999981232,-0.05443315668626238 +49247,246.23499999981232,-0.0544327360826795 +49248,246.2399999998123,-0.054432315507565276 +49249,246.2449999998123,-0.05443189496089275 +49250,246.2499999998123,-0.054431474442634936 +49251,246.2549999998123,-0.05443105395276486 +49252,246.2599999998123,-0.054430633491255535 +49253,246.2649999998123,-0.05443021305807998 +49254,246.26999999981228,-0.054429792653211226 +49255,246.27499999981228,-0.05442937227662226 +49256,246.27999999981228,-0.05442895192828611 +49257,246.28499999981227,-0.05442853160817579 +49258,246.28999999981227,-0.05442811131626431 +49259,246.29499999981226,-0.054427691052524665 +49260,246.29999999981226,-0.05442727081692988 +49261,246.30499999981225,-0.054426850609452945 +49262,246.30999999981225,-0.054426430430066876 +49263,246.31499999981224,-0.05442601027874467 +49264,246.31999999981224,-0.054425590155459336 +49265,246.32499999981223,-0.05442517006018386 +49266,246.32999999981223,-0.05442474999289125 +49267,246.33499999981223,-0.05442432995355451 +49268,246.33999999981222,-0.05442390994214661 +49269,246.34499999981222,-0.05442348995864056 +49270,246.3499999998122,-0.05442307000300935 +49271,246.3549999998122,-0.05442265007522596 +49272,246.3599999998122,-0.05442223017526338 +49273,246.3649999998122,-0.054421810303094606 +49274,246.3699999998122,-0.05442139045869261 +49275,246.3749999998122,-0.054420970642030386 +49276,246.37999999981218,-0.05442055085308091 +49277,246.38499999981218,-0.054420131091817155 +49278,246.38999999981218,-0.054419711358212115 +49279,246.39499999981217,-0.054419291652238744 +49280,246.39999999981217,-0.05441887197387003 +49281,246.40499999981216,-0.05441845232307894 +49282,246.40999999981216,-0.05441803269983845 +49283,246.41499999981215,-0.05441761310412153 +49284,246.41999999981215,-0.05441719353590115 +49285,246.42499999981214,-0.05441677399515027 +49286,246.42999999981214,-0.05441635448184185 +49287,246.43499999981213,-0.05441593499594886 +49288,246.43999999981213,-0.05441551553744425 +49289,246.44499999981213,-0.05441509610630099 +49290,246.44999999981212,-0.05441467670249203 +49291,246.45499999981212,-0.05441425732599032 +49292,246.4599999998121,-0.05441383797676883 +49293,246.4649999998121,-0.0544134186548005 +49294,246.4699999998121,-0.05441299936005828 +49295,246.4749999998121,-0.054412580092515116 +49296,246.4799999998121,-0.054412160852143954 +49297,246.4849999998121,-0.054411741638917745 +49298,246.48999999981208,-0.05441132245280943 +49299,246.49499999981208,-0.054410903293791946 +49300,246.49999999981208,-0.05441048416183824 +49301,246.50499999981207,-0.05441006505692124 +49302,246.50999999981207,-0.05440964597901389 +49303,246.51499999981206,-0.05440922692808911 +49304,246.51999999981206,-0.05440880790411984 +49305,246.52499999981205,-0.05440838890707902 +49306,246.52999999981205,-0.054407969936939554 +49307,246.53499999981204,-0.05440755099367438 +49308,246.53999999981204,-0.05440713207725642 +49309,246.54499999981203,-0.0544067131876586 +49310,246.54999999981203,-0.05440629432485383 +49311,246.55499999981203,-0.05440587548881504 +49312,246.55999999981202,-0.05440545667951516 +49313,246.56499999981202,-0.05440503789692707 +49314,246.569999999812,-0.0544046191410237 +49315,246.574999999812,-0.054404200411777966 +49316,246.579999999812,-0.054403781709162775 +49317,246.584999999812,-0.05440336303315103 +49318,246.589999999812,-0.05440294438371562 +49319,246.594999999812,-0.054402525760829476 +49320,246.59999999981198,-0.05440210716446548 +49321,246.60499999981198,-0.054401688594596535 +49322,246.60999999981198,-0.05440127005119554 +49323,246.61499999981197,-0.054400851534235385 +49324,246.61999999981197,-0.05440043304368898 +49325,246.62499999981196,-0.0544000145795292 +49326,246.62999999981196,-0.054399596141728936 +49327,246.63499999981195,-0.054399177730261074 +49328,246.63999999981195,-0.054398759345098496 +49329,246.64499999981194,-0.05439834098621409 +49330,246.64999999981194,-0.05439792265358075 +49331,246.65499999981193,-0.05439750434717133 +49332,246.65999999981193,-0.05439708606695872 +49333,246.66499999981193,-0.05439666781291579 +49334,246.66999999981192,-0.054396249585015426 +49335,246.67499999981192,-0.05439583138323049 +49336,246.6799999998119,-0.05439541320753385 +49337,246.6849999998119,-0.05439499505789837 +49338,246.6899999998119,-0.05439457693429691 +49339,246.6949999998119,-0.054394158836702344 +49340,246.6999999998119,-0.05439374076508753 +49341,246.7049999998119,-0.05439332271942531 +49342,246.70999999981188,-0.054392904699688556 +49343,246.71499999981188,-0.05439248670585012 +49344,246.71999999981188,-0.054392068737882854 +49345,246.72499999981187,-0.054391650795759604 +49346,246.72999999981187,-0.05439123287945323 +49347,246.73499999981186,-0.05439081498893655 +49348,246.73999999981186,-0.05439039712418244 +49349,246.74499999981185,-0.05438997928516372 +49350,246.74999999981185,-0.05438956147185324 +49351,246.75499999981184,-0.054389143684223824 +49352,246.75999999981184,-0.054388725922248325 +49353,246.76499999981183,-0.05438830818589956 +49354,246.76999999981183,-0.05438789047515036 +49355,246.77499999981183,-0.05438747278997356 +49356,246.77999999981182,-0.05438705513034198 +49357,246.78499999981182,-0.05438663749622845 +49358,246.7899999998118,-0.054386219887605794 +49359,246.7949999998118,-0.05438580230444681 +49360,246.7999999998118,-0.054385384746724344 +49361,246.8049999998118,-0.05438496721441119 +49362,246.8099999998118,-0.054384549707480176 +49363,246.8149999998118,-0.054384132225904096 +49364,246.81999999981178,-0.05438371476965577 +49365,246.82499999981178,-0.054383297338708 +49366,246.82999999981178,-0.0543828799330336 +49367,246.83499999981177,-0.05438246255260535 +49368,246.83999999981177,-0.054382045197396055 +49369,246.84499999981176,-0.054381627867378525 +49370,246.84999999981176,-0.05438121056252554 +49371,246.85499999981175,-0.054380793282809904 +49372,246.85999999981175,-0.0543803760282044 +49373,246.86499999981174,-0.054379958798681814 +49374,246.86999999981174,-0.05437954159421493 +49375,246.87499999981173,-0.05437912441477654 +49376,246.87999999981173,-0.05437870726033943 +49377,246.88499999981173,-0.054378290130876354 +49378,246.88999999981172,-0.05437787302636011 +49379,246.89499999981172,-0.05437745594676345 +49380,246.8999999998117,-0.054377038892059165 +49381,246.9049999998117,-0.05437662186222002 +49382,246.9099999998117,-0.05437620485721878 +49383,246.9149999998117,-0.0543757878770282 +49384,246.9199999998117,-0.054375370921621057 +49385,246.9249999998117,-0.0543749539909701 +49386,246.92999999981168,-0.054374537085048094 +49387,246.93499999981168,-0.05437412020382777 +49388,246.93999999981168,-0.05437370334728191 +49389,246.94499999981167,-0.05437328651538324 +49390,246.94999999981167,-0.05437286970810453 +49391,246.95499999981166,-0.054372452925418514 +49392,246.95999999981166,-0.05437203616729794 +49393,246.96499999981165,-0.054371619433715525 +49394,246.96999999981165,-0.05437120272464404 +49395,246.97499999981164,-0.05437078604005619 +49396,246.97999999981164,-0.054370369379924725 +49397,246.98499999981163,-0.05436995274422238 +49398,246.98999999981163,-0.054369536132921864 +49399,246.99499999981163,-0.054369119545995916 +49400,246.99999999981162,-0.05436870298341725 +49401,247.00499999981162,-0.05436828644515859 +49402,247.0099999998116,-0.05436786993119266 +49403,247.0149999998116,-0.05436745344149216 +49404,247.0199999998116,-0.05436703697602983 +49405,247.0249999998116,-0.05436662053477835 +49406,247.0299999998116,-0.05436620411771044 +49407,247.0349999998116,-0.05436578772479881 +49408,247.03999999981158,-0.05436537135601616 +49409,247.04499999981158,-0.05436495501133517 +49410,247.04999999981158,-0.05436453869072857 +49411,247.05499999981157,-0.05436412239416903 +49412,247.05999999981157,-0.05436370612162925 +49413,247.06499999981156,-0.05436328987308193 +49414,247.06999999981156,-0.054362873648499746 +49415,247.07499999981155,-0.05436245744785538 +49416,247.07999999981155,-0.054362041271121514 +49417,247.08499999981154,-0.05436162511827084 +49418,247.08999999981154,-0.05436120898927602 +49419,247.09499999981153,-0.05436079288410974 +49420,247.09999999981153,-0.05436037680274467 +49421,247.10499999981153,-0.05435996074515346 +49422,247.10999999981152,-0.0543595447113088 +49423,247.11499999981152,-0.05435912870118334 +49424,247.1199999998115,-0.05435871271474974 +49425,247.1249999998115,-0.05435829675198067 +49426,247.1299999998115,-0.05435788081284878 +49427,247.1349999998115,-0.05435746489732671 +49428,247.1399999998115,-0.054357049005387126 +49429,247.1449999998115,-0.054356633137002675 +49430,247.14999999981148,-0.054356217292146 +49431,247.15499999981148,-0.05435580147078973 +49432,247.15999999981148,-0.05435538567290652 +49433,247.16499999981147,-0.05435496989846901 +49434,247.16999999981147,-0.054354554147449816 +49435,247.17499999981146,-0.054354138419821584 +49436,247.17999999981146,-0.054353722715556926 +49437,247.18499999981145,-0.054353307034628484 +49438,247.18999999981145,-0.054352891377008876 +49439,247.19499999981144,-0.05435247574267072 +49440,247.19999999981144,-0.05435206013158664 +49441,247.20499999981143,-0.05435164454372924 +49442,247.20999999981143,-0.05435122897907114 +49443,247.21499999981143,-0.054350813437584945 +49444,247.21999999981142,-0.054350397919243267 +49445,247.22499999981142,-0.05434998242401869 +49446,247.2299999998114,-0.054349566951883845 +49447,247.2349999998114,-0.05434915150281131 +49448,247.2399999998114,-0.05434873607677368 +49449,247.2449999998114,-0.054348320673743546 +49450,247.2499999998114,-0.054347905293693516 +49451,247.2549999998114,-0.05434748993659616 +49452,247.25999999981138,-0.05434707460242407 +49453,247.26499999981138,-0.05434665929114982 +49454,247.26999999981138,-0.05434624400274599 +49455,247.27499999981137,-0.054345828737185145 +49456,247.27999999981137,-0.054345413494439866 +49457,247.28499999981136,-0.054344998274482734 +49458,247.28999999981136,-0.054344583077286304 +49459,247.29499999981135,-0.054344167902823134 +49460,247.29999999981135,-0.054343752751065795 +49461,247.30499999981134,-0.05434333762198685 +49462,247.30999999981134,-0.05434292251555884 +49463,247.31499999981133,-0.05434250743175432 +49464,247.31999999981133,-0.05434209237054583 +49465,247.32499999981133,-0.05434167733190593 +49466,247.32999999981132,-0.05434126231580716 +49467,247.33499999981132,-0.05434084732222206 +49468,247.3399999998113,-0.05434043235112317 +49469,247.3449999998113,-0.05434001740248303 +49470,247.3499999998113,-0.05433960247627415 +49471,247.3549999998113,-0.054339187572469076 +49472,247.3599999998113,-0.05433877269104032 +49473,247.3649999998113,-0.05433835783196042 +49474,247.36999999981128,-0.054337942995201886 +49475,247.37499999981128,-0.05433752818073724 +49476,247.37999999981128,-0.054337113388538985 +49477,247.38499999981127,-0.054336698618579635 +49478,247.38999999981127,-0.05433628387083169 +49479,247.39499999981126,-0.05433586914526768 +49480,247.39999999981126,-0.05433545444186008 +49481,247.40499999981125,-0.0543350397605814 +49482,247.40999999981125,-0.05433462510140413 +49483,247.41499999981124,-0.054334210464300765 +49484,247.41999999981124,-0.0543337958492438 +49485,247.42499999981123,-0.054333381256205716 +49486,247.42999999981123,-0.05433296668515898 +49487,247.43499999981123,-0.05433255213607609 +49488,247.43999999981122,-0.054332137608929514 +49489,247.44499999981122,-0.05433172310369173 +49490,247.4499999998112,-0.05433130862033521 +49491,247.4549999998112,-0.05433089415883241 +49492,247.4599999998112,-0.054330479719155805 +49493,247.4649999998112,-0.054330065301277854 +49494,247.4699999998112,-0.05432965090517102 +49495,247.4749999998112,-0.05432923653080775 +49496,247.47999999981118,-0.05432882217816049 +49497,247.48499999981118,-0.05432840784720171 +49498,247.48999999981118,-0.054327993537903824 +49499,247.49499999981117,-0.05432757925023928 +49500,247.49999999981117,-0.05432716498418054 +49501,247.50499999981116,-0.05432675073970002 +49502,247.50999999981116,-0.05432633651677016 +49503,247.51499999981115,-0.05432592231536339 +49504,247.51999999981115,-0.05432550813545212 +49505,247.52499999981114,-0.054325093977008805 +49506,247.52999999981114,-0.05432467984000583 +49507,247.53499999981113,-0.05432426572441563 +49508,247.53999999981113,-0.05432385163021061 +49509,247.54499999981113,-0.05432343755736319 +49510,247.54999999981112,-0.054323023505845766 +49511,247.55499999981112,-0.054322609475630744 +49512,247.5599999998111,-0.05432219546669053 +49513,247.5649999998111,-0.05432178147899751 +49514,247.5699999998111,-0.05432136751252408 +49515,247.5749999998111,-0.05432095356724264 +49516,247.5799999998111,-0.054320539643125575 +49517,247.5849999998111,-0.05432012574014526 +49518,247.58999999981108,-0.054319711858274076 +49519,247.59499999981108,-0.054319297997484396 +49520,247.59999999981108,-0.0543188841577486 +49521,247.60499999981107,-0.054318470339039054 +49522,247.60999999981107,-0.05431805654132813 +49523,247.61499999981106,-0.054317642764588205 +49524,247.61999999981106,-0.0543172290087916 +49525,247.62499999981105,-0.054316815273910704 +49526,247.62999999981105,-0.05431640155991786 +49527,247.63499999981104,-0.05431598786678544 +49528,247.63999999981104,-0.05431557419448575 +49529,247.64499999981103,-0.05431516054299115 +49530,247.64999999981103,-0.05431474691227399 +49531,247.65499999981103,-0.054314333302306596 +49532,247.65999999981102,-0.0543139197130613 +49533,247.66499999981102,-0.05431350614451044 +49534,247.669999999811,-0.05431309259662633 +49535,247.674999999811,-0.054312679069381316 +49536,247.679999999811,-0.0543122655627477 +49537,247.684999999811,-0.05431185207669779 +49538,247.689999999811,-0.05431143861120391 +49539,247.694999999811,-0.05431102516623837 +49540,247.69999999981098,-0.05431061174177346 +49541,247.70499999981098,-0.05431019833778149 +49542,247.70999999981098,-0.05430978495423476 +49543,247.71499999981097,-0.054309371591105576 +49544,247.71999999981097,-0.054308958248366214 +49545,247.72499999981096,-0.054308544925988966 +49546,247.72999999981096,-0.054308131623946126 +49547,247.73499999981095,-0.05430771834220995 +49548,247.73999999981095,-0.054307305080752745 +49549,247.74499999981094,-0.05430689183954677 +49550,247.74999999981094,-0.05430647861856429 +49551,247.75499999981093,-0.05430606541777758 +49552,247.75999999981093,-0.0543056522371589 +49553,247.76499999981093,-0.05430523907668051 +49554,247.76999999981092,-0.05430482593631466 +49555,247.77499999981092,-0.054304412816033605 +49556,247.7799999998109,-0.0543039997158096 +49557,247.7849999998109,-0.05430358663561488 +49558,247.7899999998109,-0.0543031735754217 +49559,247.7949999998109,-0.054302760535202284 +49560,247.7999999998109,-0.05430234751492887 +49561,247.8049999998109,-0.054301934514573706 +49562,247.80999999981088,-0.054301521534109 +49563,247.81499999981088,-0.05430110857350698 +49564,247.81999999981088,-0.054300695632739863 +49565,247.82499999981087,-0.054300282711779856 +49566,247.82999999981087,-0.05429986981059919 +49567,247.83499999981086,-0.05429945692917006 +49568,247.83999999981086,-0.05429904406746469 +49569,247.84499999981085,-0.054298631225455266 +49570,247.84999999981085,-0.05429821840311398 +49571,247.85499999981084,-0.05429780560041303 +49572,247.85999999981084,-0.05429739281732461 +49573,247.86499999981083,-0.0542969800538209 +49574,247.86999999981083,-0.05429656730987411 +49575,247.87499999981083,-0.05429615458545638 +49576,247.87999999981082,-0.054295741880539906 +49577,247.88499999981082,-0.05429532919509686 +49578,247.8899999998108,-0.054294916529099395 +49579,247.8949999998108,-0.05429450388251969 +49580,247.8999999998108,-0.054294091255329906 +49581,247.9049999998108,-0.05429367864750219 +49582,247.9099999998108,-0.0542932660590087 +49583,247.9149999998108,-0.05429285348982158 +49584,247.91999999981078,-0.05429244093991298 +49585,247.92499999981078,-0.05429202840925504 +49586,247.92999999981078,-0.054291615897819896 +49587,247.93499999981077,-0.05429120340557968 +49588,247.93999999981077,-0.05429079093250653 +49589,247.94499999981076,-0.05429037847857255 +49590,247.94999999981076,-0.05428996604374989 +49591,247.95499999981075,-0.054289553628010655 +49592,247.95999999981075,-0.05428914123132695 +49593,247.96499999981074,-0.054288728853670906 +49594,247.96999999981074,-0.054288316495014616 +49595,247.97499999981073,-0.054287904155330184 +49596,247.97999999981073,-0.0542874918345897 +49597,247.98499999981073,-0.05428707953276528 +49598,247.98999999981072,-0.054286667249828995 +49599,247.99499999981072,-0.05428625498575295 +49600,247.9999999998107,-0.05428584274050921 +49601,248.0049999998107,-0.05428543051406987 +49602,248.0099999998107,-0.054285018306406994 +49603,248.0149999998107,-0.05428460611749266 +49604,248.0199999998107,-0.054284193947298935 +49605,248.0249999998107,-0.05428378179579788 +49606,248.02999999981068,-0.05428336966296155 +49607,248.03499999981068,-0.054282957548762 +49608,248.03999999981068,-0.054282545453171294 +49609,248.04499999981067,-0.054282133376161466 +49610,248.04999999981067,-0.05428172131770457 +49611,248.05499999981066,-0.05428130927777264 +49612,248.05999999981066,-0.05428089725633771 +49613,248.06499999981065,-0.054280485253371806 +49614,248.06999999981065,-0.05428007326884698 +49615,248.07499999981064,-0.05427966130273522 +49616,248.07999999981064,-0.05427924935500857 +49617,248.08499999981063,-0.05427883742563904 +49618,248.08999999981063,-0.05427842551459864 +49619,248.09499999981063,-0.054278013621859376 +49620,248.09999999981062,-0.05427760174739323 +49621,248.10499999981062,-0.054277189891172244 +49622,248.1099999998106,-0.054276778053168384 +49623,248.1149999998106,-0.05427636623335364 +49624,248.1199999998106,-0.05427595443170002 +49625,248.1249999998106,-0.054275542648179485 +49626,248.1299999998106,-0.05427513088276402 +49627,248.1349999998106,-0.0542747191354256 +49628,248.13999999981058,-0.05427430740613619 +49629,248.14499999981058,-0.05427389569486776 +49630,248.14999999981057,-0.05427348400159228 +49631,248.15499999981057,-0.054273072326281695 +49632,248.15999999981057,-0.054272660668907964 +49633,248.16499999981056,-0.05427224902944303 +49634,248.16999999981056,-0.054271837407858854 +49635,248.17499999981055,-0.05427142580412736 +49636,248.17999999981055,-0.05427101421822049 +49637,248.18499999981054,-0.054270602650110175 +49638,248.18999999981054,-0.054270191099768356 +49639,248.19499999981053,-0.054269779567166936 +49640,248.19999999981053,-0.05426936805227784 +49641,248.20499999981052,-0.054268956555073 +49642,248.20999999981052,-0.05426854507552432 +49643,248.21499999981052,-0.0542681336136037 +49644,248.2199999998105,-0.054267722169283036 +49645,248.2249999998105,-0.054267310742534235 +49646,248.2299999998105,-0.054266899333329205 +49647,248.2349999998105,-0.054266487941639824 +49648,248.2399999998105,-0.05426607656743798 +49649,248.2449999998105,-0.05426566521069555 +49650,248.24999999981048,-0.0542652538713844 +49651,248.25499999981048,-0.05426484254947643 +49652,248.25999999981047,-0.054264431244943484 +49653,248.26499999981047,-0.054264019957757426 +49654,248.26999999981047,-0.05426360868789014 +49655,248.27499999981046,-0.05426319743531346 +49656,248.27999999981046,-0.05426278619999924 +49657,248.28499999981045,-0.05426237498191934 +49658,248.28999999981045,-0.05426196378104558 +49659,248.29499999981044,-0.05426155259734982 +49660,248.29999999981044,-0.05426114143080388 +49661,248.30499999981043,-0.05426073028137959 +49662,248.30999999981043,-0.05426031914904878 +49663,248.31499999981042,-0.05425990803378328 +49664,248.31999999981042,-0.05425949693555488 +49665,248.32499999981042,-0.054259085854335413 +49666,248.3299999998104,-0.05425867479009666 +49667,248.3349999998104,-0.05425826374281046 +49668,248.3399999998104,-0.05425785271244858 +49669,248.3449999998104,-0.05425744169898283 +49670,248.3499999998104,-0.054257030702384995 +49671,248.3549999998104,-0.05425661972262687 +49672,248.35999999981038,-0.05425620875968021 +49673,248.36499999981038,-0.05425579781351681 +49674,248.36999999981037,-0.054255386884108435 +49675,248.37499999981037,-0.05425497597142686 +49676,248.37999999981037,-0.054254565075443836 +49677,248.38499999981036,-0.054254154196131124 +49678,248.38999999981036,-0.05425374333346048 +49679,248.39499999981035,-0.054253332487403653 +49680,248.39999999981035,-0.05425292165793238 +49681,248.40499999981034,-0.054252510845018406 +49682,248.40999999981034,-0.05425210004863347 +49683,248.41499999981033,-0.05425168926874929 +49684,248.41999999981033,-0.0542512785053376 +49685,248.42499999981032,-0.05425086775837012 +49686,248.42999999981032,-0.05425045702781857 +49687,248.43499999981032,-0.054250046313654654 +49688,248.4399999998103,-0.054249635615850084 +49689,248.4449999998103,-0.05424922493437656 +49690,248.4499999998103,-0.05424881426920578 +49691,248.4549999998103,-0.05424840362030945 +49692,248.4599999998103,-0.05424799298765925 +49693,248.4649999998103,-0.05424758237122686 +49694,248.46999999981028,-0.054247171770983954 +49695,248.47499999981028,-0.05424676118690222 +49696,248.47999999981027,-0.05424635061895333 +49697,248.48499999981027,-0.054245940067108936 +49698,248.48999999981027,-0.05424552953134071 +49699,248.49499999981026,-0.0542451190116203 +49700,248.49999999981026,-0.05424470850791937 +49701,248.50499999981025,-0.054244298020209546 +49702,248.50999999981025,-0.05424388754846248 +49703,248.51499999981024,-0.05424347709264981 +49704,248.51999999981024,-0.054243066652743165 +49705,248.52499999981023,-0.05424265622871418 +49706,248.52999999981023,-0.05424224582053448 +49707,248.53499999981022,-0.05424183542817568 +49708,248.53999999981022,-0.054241425051609386 +49709,248.54499999981022,-0.05424101469080721 +49710,248.5499999998102,-0.05424060434574075 +49711,248.5549999998102,-0.054240194016381624 +49712,248.5599999998102,-0.054239783702701404 +49713,248.5649999998102,-0.0542393734046717 +49714,248.5699999998102,-0.05423896312226408 +49715,248.5749999998102,-0.05423855285545014 +49716,248.57999999981018,-0.05423814260420143 +49717,248.58499999981018,-0.054237732368489534 +49718,248.58999999981017,-0.05423732214828603 +49719,248.59499999981017,-0.05423691194356245 +49720,248.59999999981017,-0.05423650175429037 +49721,248.60499999981016,-0.05423609158044134 +49722,248.60999999981016,-0.0542356814219869 +49723,248.61499999981015,-0.05423527127889859 +49724,248.61999999981015,-0.05423486115114796 +49725,248.62499999981014,-0.05423445103870651 +49726,248.62999999981014,-0.054234040941545804 +49727,248.63499999981013,-0.05423363085963733 +49728,248.63999999981013,-0.054233220792952626 +49729,248.64499999981012,-0.05423281074146318 +49730,248.64999999981012,-0.054232400705140536 +49731,248.65499999981012,-0.054231990683956156 +49732,248.6599999998101,-0.05423158067788155 +49733,248.6649999998101,-0.05423117068688822 +49734,248.6699999998101,-0.05423076071094765 +49735,248.6749999998101,-0.054230350750031305 +49736,248.6799999998101,-0.054229940804110685 +49737,248.6849999998101,-0.054229530873157246 +49738,248.68999999981008,-0.054229120957142454 +49739,248.69499999981008,-0.05422871105603777 +49740,248.69999999981007,-0.054228301169814655 +49741,248.70499999981007,-0.05422789129844456 +49742,248.70999999981007,-0.054227481441898935 +49743,248.71499999981006,-0.0542270716001492 +49744,248.71999999981006,-0.05422666177316681 +49745,248.72499999981005,-0.05422625196092319 +49746,248.72999999981005,-0.05422584216338977 +49747,248.73499999981004,-0.054225432380537966 +49748,248.73999999981004,-0.054225022612339205 +49749,248.74499999981003,-0.054224612858764884 +49750,248.74999999981003,-0.05422420311978641 +49751,248.75499999981002,-0.0542237933953752 +49752,248.75999999981002,-0.05422338368550263 +49753,248.76499999981002,-0.05422297399014009 +49754,248.76999999981,-0.054222564309258973 +49755,248.77499999981,-0.054222154642830644 +49756,248.77999999981,-0.05422174499082649 +49757,248.78499999981,-0.054221335353217895 +49758,248.78999999981,-0.0542209257299762 +49759,248.79499999981,-0.05422051612107278 +49760,248.79999999980998,-0.054220106526478976 +49761,248.80499999980998,-0.05421969694616612 +49762,248.80999999980997,-0.0542192873801056 +49763,248.81499999980997,-0.054218877828268716 +49764,248.81999999980997,-0.05421846829062682 +49765,248.82499999980996,-0.05421805876715124 +49766,248.82999999980996,-0.05421764925781328 +49767,248.83499999980995,-0.054217239762584274 +49768,248.83999999980995,-0.05421683028143552 +49769,248.84499999980994,-0.054216420814338334 +49770,248.84999999980994,-0.05421601136126403 +49771,248.85499999980993,-0.05421560192218388 +49772,248.85999999980993,-0.05421519249706919 +49773,248.86499999980992,-0.05421478308589123 +49774,248.86999999980992,-0.054214373688621295 +49775,248.87499999980992,-0.05421396430523065 +49776,248.8799999998099,-0.05421355493569057 +49777,248.8849999998099,-0.054213145579972324 +49778,248.8899999998099,-0.054212736238047156 +49779,248.8949999998099,-0.05421232690988633 +49780,248.8999999998099,-0.05421191759546109 +49781,248.9049999998099,-0.05421150829474267 +49782,248.90999999980988,-0.05421109900770233 +49783,248.91499999980988,-0.05421068973431129 +49784,248.91999999980987,-0.05421028047454077 +49785,248.92499999980987,-0.05420987122836199 +49786,248.92999999980987,-0.054209461995746167 +49787,248.93499999980986,-0.054209052776664525 +49788,248.93999999980986,-0.05420864357108825 +49789,248.94499999980985,-0.054208234378988536 +49790,248.94999999980985,-0.0542078252003366 +49791,248.95499999980984,-0.05420741603510362 +49792,248.95999999980984,-0.05420700688326078 +49793,248.96499999980983,-0.05420659774477925 +49794,248.96999999980983,-0.0542061886196302 +49795,248.97499999980982,-0.054205779507784796 +49796,248.97999999980982,-0.054205370409214214 +49797,248.98499999980982,-0.05420496132388959 +49798,248.9899999998098,-0.05420455225178209 +49799,248.9949999998098,-0.05420414319286285 +49800,248.9999999998098,-0.05420373414710301 +49801,249.0049999998098,-0.0542033251144737 +49802,249.0099999998098,-0.05420291609494605 +49803,249.0149999998098,-0.05420250708849118 +49804,249.01999999980978,-0.054202098095080205 +49805,249.02499999980978,-0.05420168911468423 +49806,249.02999999980977,-0.05420128014727438 +49807,249.03499999980977,-0.05420087119282172 +49808,249.03999999980977,-0.054200462251297384 +49809,249.04499999980976,-0.054200053322672435 +49810,249.04999999980976,-0.054199644406917956 +49811,249.05499999980975,-0.05419923550400503 +49812,249.05999999980975,-0.054198826613904745 +49813,249.06499999980974,-0.05419841773658814 +49814,249.06999999980974,-0.054198008872026276 +49815,249.07499999980973,-0.05419760002019022 +49816,249.07999999980973,-0.05419719118105101 +49817,249.08499999980972,-0.0541967823545797 +49818,249.08999999980972,-0.05419637354074732 +49819,249.09499999980972,-0.0541959647395249 +49820,249.0999999998097,-0.05419555595088346 +49821,249.1049999998097,-0.05419514717479403 +49822,249.1099999998097,-0.054194738411227635 +49823,249.1149999998097,-0.05419432966015526 +49824,249.1199999998097,-0.05419392092154793 +49825,249.1249999998097,-0.05419351219537662 +49826,249.12999999980968,-0.054193103481612326 +49827,249.13499999980968,-0.05419269478022605 +49828,249.13999999980967,-0.05419228609118875 +49829,249.14499999980967,-0.05419187741447141 +49830,249.14999999980967,-0.05419146875004499 +49831,249.15499999980966,-0.05419106009788047 +49832,249.15999999980966,-0.05419065145794879 +49833,249.16499999980965,-0.05419024283022091 +49834,249.16999999980965,-0.05418983421466777 +49835,249.17499999980964,-0.054189425611260306 +49836,249.17999999980964,-0.05418901701996944 +49837,249.18499999980963,-0.05418860844076612 +49838,249.18999999980963,-0.05418819987362126 +49839,249.19499999980962,-0.054187791318505776 +49840,249.19999999980962,-0.05418738277539058 +49841,249.20499999980962,-0.05418697424424656 +49842,249.2099999998096,-0.054186565725044634 +49843,249.2149999998096,-0.05418615721775568 +49844,249.2199999998096,-0.05418574872235058 +49845,249.2249999998096,-0.05418534023880022 +49846,249.2299999998096,-0.054184931767075485 +49847,249.2349999998096,-0.05418452330714723 +49848,249.23999999980958,-0.05418411485898632 +49849,249.24499999980958,-0.05418370642256361 +49850,249.24999999980957,-0.05418329799784993 +49851,249.25499999980957,-0.054182889584816166 +49852,249.25999999980957,-0.05418248118343313 +49853,249.26499999980956,-0.05418207279367164 +49854,249.26999999980956,-0.05418166441550254 +49855,249.27499999980955,-0.054181256048896655 +49856,249.27999999980955,-0.05418084769382479 +49857,249.28499999980954,-0.05418043935025776 +49858,249.28999999980954,-0.05418003101816635 +49859,249.29499999980953,-0.05417962269752137 +49860,249.29999999980953,-0.0541792143882936 +49861,249.30499999980952,-0.054178806090453835 +49862,249.30999999980952,-0.05417839780397284 +49863,249.31499999980952,-0.054177989528821385 +49864,249.3199999998095,-0.05417758126497024 +49865,249.3249999998095,-0.054177173012390174 +49866,249.3299999998095,-0.05417676477105192 +49867,249.3349999998095,-0.05417635654092625 +49868,249.3399999998095,-0.054175948321983886 +49869,249.3449999998095,-0.05417554011419556 +49870,249.34999999980948,-0.054175131917532 +49871,249.35499999980948,-0.054174723731963935 +49872,249.35999999980947,-0.054174315557462084 +49873,249.36499999980947,-0.05417390739399714 +49874,249.36999999980947,-0.05417349924153983 +49875,249.37499999980946,-0.054173091100060834 +49876,249.37999999980946,-0.05417268296953084 +49877,249.38499999980945,-0.05417227484992054 +49878,249.38999999980945,-0.05417186674120062 +49879,249.39499999980944,-0.05417145864334174 +49880,249.39999999980944,-0.05417105055631457 +49881,249.40499999980943,-0.05417064248008977 +49882,249.40999999980943,-0.05417023441463799 +49883,249.41499999980942,-0.054169826359929875 +49884,249.41999999980942,-0.05416941831593607 +49885,249.42499999980942,-0.05416901028262722 +49886,249.4299999998094,-0.05416860225997393 +49887,249.4349999998094,-0.05416819424794683 +49888,249.4399999998094,-0.054167786246516546 +49889,249.4449999998094,-0.054167378255653674 +49890,249.4499999998094,-0.054166970275328824 +49891,249.4549999998094,-0.0541665623055126 +49892,249.45999999980938,-0.054166154346175575 +49893,249.46499999980938,-0.05416574639728835 +49894,249.46999999980937,-0.05416533845882148 +49895,249.47499999980937,-0.05416493053074555 +49896,249.47999999980937,-0.054164522613031126 +49897,249.48499999980936,-0.05416411470564876 +49898,249.48999999980936,-0.054163706808569 +49899,249.49499999980935,-0.05416329892176241 +49900,249.49999999980935,-0.0541628910451995 +49901,249.50499999980934,-0.05416248317885082 +49902,249.50999999980934,-0.05416207532268689 +49903,249.51499999980933,-0.054161667476678235 +49904,249.51999999980933,-0.054161259640795364 +49905,249.52499999980932,-0.054160851815008786 +49906,249.52999999980932,-0.05416044399928899 +49907,249.53499999980932,-0.05416003619360647 +49908,249.5399999998093,-0.054159628397931744 +49909,249.5449999998093,-0.05415922061223525 +49910,249.5499999998093,-0.054158812836487484 +49911,249.5549999998093,-0.054158405070658916 +49912,249.5599999998093,-0.05415799731471999 +49913,249.5649999998093,-0.054157589568641175 +49914,249.56999999980928,-0.054157181832392896 +49915,249.57499999980928,-0.05415677410594562 +49916,249.57999999980927,-0.05415636638926977 +49917,249.58499999980927,-0.05415595868233577 +49918,249.58999999980927,-0.05415555098511405 +49919,249.59499999980926,-0.05415514329757501 +49920,249.59999999980926,-0.054154735619689066 +49921,249.60499999980925,-0.05415432795142663 +49922,249.60999999980925,-0.054153920292758076 +49923,249.61499999980924,-0.0541535126436538 +49924,249.61999999980924,-0.054153105004084184 +49925,249.62499999980923,-0.054152697374019614 +49926,249.62999999980923,-0.054152289753430435 +49927,249.63499999980922,-0.05415188214228702 +49928,249.63999999980922,-0.05415147454055972 +49929,249.64499999980922,-0.05415106694821888 +49930,249.6499999998092,-0.05415065936523486 +49931,249.6549999998092,-0.05415025179157796 +49932,249.6599999998092,-0.054149844227218524 +49933,249.6649999998092,-0.054149436672126884 +49934,249.6699999998092,-0.05414902912627333 +49935,249.6749999998092,-0.054148621589628194 +49936,249.67999999980918,-0.05414821406216177 +49937,249.68499999980918,-0.05414780654384434 +49938,249.68999999980917,-0.0541473990346462 +49939,249.69499999980917,-0.05414699153453762 +49940,249.69999999980917,-0.05414658404348887 +49941,249.70499999980916,-0.05414617656147024 +49942,249.70999999980916,-0.05414576908845197 +49943,249.71499999980915,-0.054145361624404316 +49944,249.71999999980915,-0.05414495416929752 +49945,249.72499999980914,-0.05414454672310183 +49946,249.72999999980914,-0.054144139285787464 +49947,249.73499999980913,-0.054143731857324656 +49948,249.73999999980913,-0.05414332443768362 +49949,249.74499999980912,-0.05414291702683457 +49950,249.74999999980912,-0.0541425096247477 +49951,249.75499999980912,-0.05414210223139323 +49952,249.7599999998091,-0.054141694846741334 +49953,249.7649999998091,-0.054141287470762196 +49954,249.7699999998091,-0.054140880103425985 +49955,249.7749999998091,-0.05414047274470289 +49956,249.7799999998091,-0.05414006539456305 +49957,249.7849999998091,-0.054139658052976644 +49958,249.78999999980908,-0.0541392507199138 +49959,249.79499999980908,-0.054138843395344666 +49960,249.79999999980907,-0.054138436079239384 +49961,249.80499999980907,-0.05413802877156808 +49962,249.80999999980907,-0.05413762147230085 +49963,249.81499999980906,-0.05413721418140783 +49964,249.81999999980906,-0.05413680689885912 +49965,249.82499999980905,-0.05413639962462483 +49966,249.82999999980905,-0.05413599235867504 +49967,249.83499999980904,-0.05413558510097984 +49968,249.83999999980904,-0.0541351778515093 +49969,249.84499999980903,-0.05413477061023349 +49970,249.84999999980903,-0.054134363377122484 +49971,249.85499999980902,-0.05413395615214634 +49972,249.85999999980902,-0.05413354893527509 +49973,249.86499999980902,-0.05413314172647878 +49974,249.869999999809,-0.05413273452572747 +49975,249.874999999809,-0.05413232733299117 +49976,249.879999999809,-0.054131920148239886 +49977,249.884999999809,-0.05413151297144364 +49978,249.889999999809,-0.05413110580257245 +49979,249.894999999809,-0.05413069864159631 +49980,249.89999999980898,-0.054130291488485215 +49981,249.90499999980898,-0.05412988434320913 +49982,249.90999999980897,-0.054129477205738054 +49983,249.91499999980897,-0.054129070076041945 +49984,249.91999999980897,-0.05412866295409077 +49985,249.92499999980896,-0.05412825583985449 +49986,249.92999999980896,-0.05412784873330304 +49987,249.93499999980895,-0.054127441634406366 +49988,249.93999999980895,-0.0541270345431344 +49989,249.94499999980894,-0.05412662745945709 +49990,249.94999999980894,-0.05412622038334432 +49991,249.95499999980893,-0.05412581331476602 +49992,249.95999999980893,-0.05412540625369209 +49993,249.96499999980892,-0.054124999200092436 +49994,249.96999999980892,-0.05412459215393693 +49995,249.97499999980892,-0.054124185115195476 +49996,249.9799999998089,-0.054123778083837934 +49997,249.9849999998089,-0.05412337105983417 +49998,249.9899999998089,-0.05412296404315406 +49999,249.9949999998089,-0.054122557033767435 +50000,249.9999999998089,-0.05412215003164415 +50001,250.0049999998089,-0.05412174303675406 +50002,250.00999999980888,-0.05412133604906697 +50003,250.01499999980888,-0.05412092906855271 +50004,250.01999999980887,-0.0541205220951811 +50005,250.02499999980887,-0.05412011512892194 +50006,250.02999999980887,-0.05411970816974504 +50007,250.03499999980886,-0.054119301217620194 +50008,250.03999999980886,-0.05411889427251717 +50009,250.04499999980885,-0.05411848733440576 +50010,250.04999999980885,-0.05411808040325573 +50011,250.05499999980884,-0.05411767347903686 +50012,250.05999999980884,-0.05411726656171888 +50013,250.06499999980883,-0.054116859651271554 +50014,250.06999999980883,-0.05411645274766461 +50015,250.07499999980882,-0.054116045850867794 +50016,250.07999999980882,-0.054115638960850816 +50017,250.08499999980882,-0.054115232077583404 +50018,250.0899999998088,-0.05411482520103526 +50019,250.0949999998088,-0.0541144183311761 +50020,250.0999999998088,-0.0541140114679756 +50021,250.1049999998088,-0.05411360461140347 +50022,250.1099999998088,-0.05411319776142938 +50023,250.1149999998088,-0.054112790918023 +50024,250.11999999980878,-0.05411238408115398 +50025,250.12499999980878,-0.054111977250792 +50026,250.12999999980877,-0.05411157042690668 +50027,250.13499999980877,-0.054111163609467695 +50028,250.13999999980877,-0.054110756798444654 +50029,250.14499999980876,-0.05411034999380719 +50030,250.14999999980876,-0.05410994319552494 +50031,250.15499999980875,-0.05410953640356748 +50032,250.15999999980875,-0.05410912961790443 +50033,250.16499999980874,-0.05410872283850539 +50034,250.16999999980874,-0.05410831606533994 +50035,250.17499999980873,-0.05410790929837765 +50036,250.17999999980873,-0.05410750253758811 +50037,250.18499999980872,-0.05410709578294086 +50038,250.18999999980872,-0.05410668903440548 +50039,250.19499999980872,-0.0541062822919515 +50040,250.1999999998087,-0.054105875555548466 +50041,250.2049999998087,-0.05410546882516592 +50042,250.2099999998087,-0.05410506210077337 +50043,250.2149999998087,-0.05410465538234034 +50044,250.2199999998087,-0.05410424866983634 +50045,250.2249999998087,-0.05410384196323086 +50046,250.22999999980868,-0.05410343526249342 +50047,250.23499999980868,-0.054103028567593484 +50048,250.23999999980867,-0.05410262187850053 +50049,250.24499999980867,-0.05410221519518403 +50050,250.24999999980867,-0.05410180851761344 +50051,250.25499999980866,-0.05410140184575822 +50052,250.25999999980866,-0.054100995179587816 +50053,250.26499999980865,-0.05410058851907165 +50054,250.26999999980865,-0.05410018186417918 +50055,250.27499999980864,-0.0540997752148798 +50056,250.27999999980864,-0.05409936857114293 +50057,250.28499999980863,-0.054098961932938 +50058,250.28999999980863,-0.054098555300234365 +50059,250.29499999980862,-0.054098148673001445 +50060,250.29999999980862,-0.05409774205120861 +50061,250.30499999980862,-0.05409733543482524 +50062,250.3099999998086,-0.05409692882382069 +50063,250.3149999998086,-0.05409652221816433 +50064,250.3199999998086,-0.05409611561782549 +50065,250.3249999998086,-0.05409570902277353 +50066,250.3299999998086,-0.05409530243297779 +50067,250.3349999998086,-0.05409489584840758 +50068,250.33999999980858,-0.054094489269032195 +50069,250.34499999980858,-0.05409408269482099 +50070,250.34999999980857,-0.054093676125743215 +50071,250.35499999980857,-0.054093269561768194 +50072,250.35999999980857,-0.05409286300286521 +50073,250.36499999980856,-0.05409245644900353 +50074,250.36999999980856,-0.054092049900152435 +50075,250.37499999980855,-0.054091643356281166 +50076,250.37999999980855,-0.054091236817358994 +50077,250.38499999980854,-0.054090830283355144 +50078,250.38999999980854,-0.05409042375423886 +50079,250.39499999980853,-0.05409001722997935 +50080,250.39999999980853,-0.05408961071054587 +50081,250.40499999980852,-0.0540892041959076 +50082,250.40999999980852,-0.054088797686033745 +50083,250.41499999980851,-0.05408839118089351 +50084,250.4199999998085,-0.05408798468045607 +50085,250.4249999998085,-0.054087578184690614 +50086,250.4299999998085,-0.05408717169356629 +50087,250.4349999998085,-0.054086765207052266 +50088,250.4399999998085,-0.0540863587251177 +50089,250.4449999998085,-0.05408595224773174 +50090,250.44999999980848,-0.05408554577486352 +50091,250.45499999980848,-0.05408513930648215 +50092,250.45999999980847,-0.054084732842556764 +50093,250.46499999980847,-0.054084326383056464 +50094,250.46999999980846,-0.054083919927950364 +50095,250.47499999980846,-0.054083513477207544 +50096,250.47999999980846,-0.05408310703079709 +50097,250.48499999980845,-0.05408270058868808 +50098,250.48999999980845,-0.05408229415084959 +50099,250.49499999980844,-0.054081887717250685 +50100,250.49999999980844,-0.05408148128786039 +50101,250.50499999980843,-0.05408107486264775 +50102,250.50999999980843,-0.054080668441581825 +50103,250.51499999980842,-0.05408026202463162 +50104,250.51999999980842,-0.05407985561176616 +50105,250.52499999980841,-0.054079449202954454 +50106,250.5299999998084,-0.05407904279816549 +50107,250.5349999998084,-0.05407863639736827 +50108,250.5399999998084,-0.054078230000531774 +50109,250.5449999998084,-0.05407782360762498 +50110,250.5499999998084,-0.054077417218616856 +50111,250.5549999998084,-0.05407701083347635 +50112,250.55999999980838,-0.05407660445217242 +50113,250.56499999980838,-0.054076198074673995 +50114,250.56999999980837,-0.05407579170095002 +50115,250.57499999980837,-0.054075385330969394 +50116,250.57999999980836,-0.05407497896470106 +50117,250.58499999980836,-0.0540745726021139 +50118,250.58999999980836,-0.05407416624317683 +50119,250.59499999980835,-0.05407375988785873 +50120,250.59999999980835,-0.054073353536128466 +50121,250.60499999980834,-0.054072947187954926 +50122,250.60999999980834,-0.05407254084330697 +50123,250.61499999980833,-0.05407213450215343 +50124,250.61999999980833,-0.054071728164463186 +50125,250.62499999980832,-0.05407132183020505 +50126,250.62999999980832,-0.05407091549934785 +50127,250.63499999980831,-0.05407050917186041 +50128,250.6399999998083,-0.05407010284771154 +50129,250.6449999998083,-0.054069696526870034 +50130,250.6499999998083,-0.054069290209304684 +50131,250.6549999998083,-0.054068883894984286 +50132,250.6599999998083,-0.054068477583877596 +50133,250.6649999998083,-0.0540680712759534 +50134,250.66999999980828,-0.054067664971180436 +50135,250.67499999980828,-0.05406725866952746 +50136,250.67999999980827,-0.0540668523709632 +50137,250.68499999980827,-0.054066446075456416 +50138,250.68999999980826,-0.05406603978297579 +50139,250.69499999980826,-0.054065633493490056 +50140,250.69999999980826,-0.05406522720696792 +50141,250.70499999980825,-0.05406482092337807 +50142,250.70999999980825,-0.054064414642689185 +50143,250.71499999980824,-0.05406400836486995 +50144,250.71999999980824,-0.05406360208988903 +50145,250.72499999980823,-0.054063195817715085 +50146,250.72999999980823,-0.05406278954831676 +50147,250.73499999980822,-0.05406238328166269 +50148,250.73999999980822,-0.054061977017721516 +50149,250.74499999980821,-0.05406157075646186 +50150,250.7499999998082,-0.05406116449785233 +50151,250.7549999998082,-0.05406075824186155 +50152,250.7599999998082,-0.05406035198845809 +50153,250.7649999998082,-0.05405994573761055 +50154,250.7699999998082,-0.0540595394892875 +50155,250.7749999998082,-0.05405913324345751 +50156,250.77999999980818,-0.05405872700008914 +50157,250.78499999980818,-0.054058320759150943 +50158,250.78999999980817,-0.05405791452061146 +50159,250.79499999980817,-0.054057508284439226 +50160,250.79999999980816,-0.054057102050602754 +50161,250.80499999980816,-0.054056695819070556 +50162,250.80999999980816,-0.054056289589811145 +50163,250.81499999980815,-0.05405588336279301 +50164,250.81999999980815,-0.05405547713798464 +50165,250.82499999980814,-0.054055070915354504 +50166,250.82999999980814,-0.05405466469487108 +50167,250.83499999980813,-0.054054258476502824 +50168,250.83999999980813,-0.05405385226021818 +50169,250.84499999980812,-0.054053446045985595 +50170,250.84999999980812,-0.0540530398337735 +50171,250.85499999980811,-0.054052633623550304 +50172,250.8599999998081,-0.05405222741528443 +50173,250.8649999998081,-0.05405182120894428 +50174,250.8699999998081,-0.05405141500449824 +50175,250.8749999998081,-0.054051008801914706 +50176,250.8799999998081,-0.05405060260116204 +50177,250.8849999998081,-0.054050196402208615 +50178,250.88999999980808,-0.05404979020502278 +50179,250.89499999980808,-0.05404938400957289 +50180,250.89999999980807,-0.05404897781582727 +50181,250.90499999980807,-0.054048571623754274 +50182,250.90999999980806,-0.0540481654333222 +50183,250.91499999980806,-0.054047759244499345 +50184,250.91999999980806,-0.05404735305725404 +50185,250.92499999980805,-0.054046946871554556 +50186,250.92999999980805,-0.05404654068736917 +50187,250.93499999980804,-0.05404613450466617 +50188,250.93999999980804,-0.05404572832341381 +50189,250.94499999980803,-0.054045322143580335 +50190,250.94999999980803,-0.054044915965134 +50191,250.95499999980802,-0.05404450978804303 +50192,250.95999999980802,-0.05404410361227565 +50193,250.96499999980801,-0.054043697437800076 +50194,250.969999999808,-0.05404329126458453 +50195,250.974999999808,-0.05404288509259718 +50196,250.979999999808,-0.05404247892180622 +50197,250.984999999808,-0.054042072752179836 +50198,250.989999999808,-0.05404166658368618 +50199,250.994999999808,-0.05404126041629341 +50200,250.99999999980798,-0.05404085424996968 +50201,251.00499999980798,-0.05404044808468313 +50202,251.00999999980797,-0.05404004192040189 +50203,251.01499999980797,-0.05403963575709408 +50204,251.01999999980796,-0.05403922959472779 +50205,251.02499999980796,-0.054038823433271134 +50206,251.02999999980796,-0.0540384172726922 +50207,251.03499999980795,-0.05403801111295907 +50208,251.03999999980795,-0.05403760495403982 +50209,251.04499999980794,-0.0540371987959025 +50210,251.04999999980794,-0.05403679263851515 +50211,251.05499999980793,-0.05403638648184584 +50212,251.05999999980793,-0.054035980325862584 +50213,251.06499999980792,-0.054035574170533396 +50214,251.06999999980792,-0.0540351680158263 +50215,251.07499999980791,-0.0540347618617093 +50216,251.0799999998079,-0.05403435570815037 +50217,251.0849999998079,-0.05403394955511752 +50218,251.0899999998079,-0.0540335434025787 +50219,251.0949999998079,-0.054033137250501885 +50220,251.0999999998079,-0.05403273109885501 +50221,251.1049999998079,-0.05403232494760604 +50222,251.10999999980788,-0.05403191879672291 +50223,251.11499999980788,-0.054031512646173514 +50224,251.11999999980787,-0.05403110649592578 +50225,251.12499999980787,-0.05403070034594764 +50226,251.12999999980786,-0.05403029419620694 +50227,251.13499999980786,-0.05402988804667159 +50228,251.13999999980786,-0.05402948189730947 +50229,251.14499999980785,-0.05402907574808842 +50230,251.14999999980785,-0.05402866959897631 +50231,251.15499999980784,-0.05402826344994098 +50232,251.15999999980784,-0.05402785730095026 +50233,251.16499999980783,-0.05402745115197199 +50234,251.16999999980783,-0.054027045002973964 +50235,251.17499999980782,-0.054026638853924 +50236,251.17999999980782,-0.05402623270478988 +50237,251.18499999980781,-0.054025826555539384 +50238,251.1899999998078,-0.0540254204061403 +50239,251.1949999998078,-0.05402501425656038 +50240,251.1999999998078,-0.05402460810676739 +50241,251.2049999998078,-0.05402420195672907 +50242,251.2099999998078,-0.05402379580641315 +50243,251.2149999998078,-0.05402338965578734 +50244,251.21999999980778,-0.05402298350481938 +50245,251.22499999980778,-0.05402257735347695 +50246,251.22999999980777,-0.054022171201727746 +50247,251.23499999980777,-0.054021765049539455 +50248,251.23999999980776,-0.05402135889687975 +50249,251.24499999980776,-0.054020952743716294 +50250,251.24999999980776,-0.05402054659001674 +50251,251.25499999980775,-0.054020140435748716 +50252,251.25999999980775,-0.054019734280879875 +50253,251.26499999980774,-0.054019328125377825 +50254,251.26999999980774,-0.05401892196921018 +50255,251.27499999980773,-0.054018515812344535 +50256,251.27999999980773,-0.054018109654748486 +50257,251.28499999980772,-0.05401770349638962 +50258,251.28999999980772,-0.054017297337235474 +50259,251.29499999980771,-0.05401689117725364 +50260,251.2999999998077,-0.05401648501641167 +50261,251.3049999998077,-0.054016078854677074 +50262,251.3099999998077,-0.0540156726920174 +50263,251.3149999998077,-0.05401526652840018 +50264,251.3199999998077,-0.05401486036379289 +50265,251.3249999998077,-0.05401445419816304 +50266,251.32999999980768,-0.054014048031478114 +50267,251.33499999980768,-0.0540136418637056 +50268,251.33999999980767,-0.054013235694812964 +50269,251.34499999980767,-0.05401282952476764 +50270,251.34999999980766,-0.054012423353537085 +50271,251.35499999980766,-0.05401201718108874 +50272,251.35999999980766,-0.05401161100739002 +50273,251.36499999980765,-0.05401120483240834 +50274,251.36999999980765,-0.05401079865611111 +50275,251.37499999980764,-0.054010392478465716 +50276,251.37999999980764,-0.054009986299439545 +50277,251.38499999980763,-0.054009580118999964 +50278,251.38999999980763,-0.05400917393711434 +50279,251.39499999980762,-0.054008767753750006 +50280,251.39999999980762,-0.05400836156887432 +50281,251.40499999980761,-0.05400795538245461 +50282,251.4099999998076,-0.05400754919445818 +50283,251.4149999998076,-0.054007143004852355 +50284,251.4199999998076,-0.05400673681360442 +50285,251.4249999998076,-0.054006330620681664 +50286,251.4299999998076,-0.054005924426051365 +50287,251.4349999998076,-0.05400551822968079 +50288,251.43999999980758,-0.054005112031537184 +50289,251.44499999980758,-0.0540047058315878 +50290,251.44999999980757,-0.054004299629799864 +50291,251.45499999980757,-0.05400389342614059 +50292,251.45999999980756,-0.05400348722057721 +50293,251.46499999980756,-0.05400308101307692 +50294,251.46999999980756,-0.05400267480360691 +50295,251.47499999980755,-0.054002268592134355 +50296,251.47999999980755,-0.054001862378626427 +50297,251.48499999980754,-0.05400145616305028 +50298,251.48999999980754,-0.05400104994537305 +50299,251.49499999980753,-0.0540006437255619 +50300,251.49999999980753,-0.05400023750358393 +50301,251.50499999980752,-0.05399983127940627 +50302,251.50999999980752,-0.05399942505299602 +50303,251.51499999980751,-0.05399901882432026 +50304,251.5199999998075,-0.05399861259334608 +50305,251.5249999998075,-0.05399820636004056 +50306,251.5299999998075,-0.05399780012437074 +50307,251.5349999998075,-0.0539973938863037 +50308,251.5399999998075,-0.053996987645806446 +50309,251.5449999998075,-0.05399658140284602 +50310,251.54999999980748,-0.05399617515738943 +50311,251.55499999980748,-0.0539957689094037 +50312,251.55999999980747,-0.053995362658855794 +50313,251.56499999980747,-0.05399495640571273 +50314,251.56999999980746,-0.05399455014994145 +50315,251.57499999980746,-0.05399414389150893 +50316,251.57999999980746,-0.053993737630382115 +50317,251.58499999980745,-0.05399333136652794 +50318,251.58999999980745,-0.05399292509991335 +50319,251.59499999980744,-0.05399251883050525 +50320,251.59999999980744,-0.053992112558270536 +50321,251.60499999980743,-0.053991706283176115 +50322,251.60999999980743,-0.05399130000518886 +50323,251.61499999980742,-0.05399089372427565 +50324,251.61999999980742,-0.053990487440403356 +50325,251.62499999980741,-0.05399008115353881 +50326,251.6299999998074,-0.05398967486364886 +50327,251.6349999998074,-0.053989268570700334 +50328,251.6399999998074,-0.053988862274660036 +50329,251.6449999998074,-0.05398845597549479 +50330,251.6499999998074,-0.053988049673171376 +50331,251.6549999998074,-0.053987643367656574 +50332,251.65999999980738,-0.05398723705891716 +50333,251.66499999980738,-0.05398683074691991 +50334,251.66999999980737,-0.05398642443163155 +50335,251.67499999980737,-0.05398601811301881 +50336,251.67999999980736,-0.05398561179104846 +50337,251.68499999980736,-0.05398520546568716 +50338,251.68999999980736,-0.05398479913690164 +50339,251.69499999980735,-0.053984392804658596 +50340,251.69999999980735,-0.053983986468924716 +50341,251.70499999980734,-0.05398358012966665 +50342,251.70999999980734,-0.05398317378685106 +50343,251.71499999980733,-0.05398276744044459 +50344,251.71999999980733,-0.05398236109041389 +50345,251.72499999980732,-0.05398195473672557 +50346,251.72999999980732,-0.05398154837934625 +50347,251.73499999980731,-0.05398114201824252 +50348,251.7399999998073,-0.053980735653380976 +50349,251.7449999998073,-0.0539803292847282 +50350,251.7499999998073,-0.05397992291225075 +50351,251.7549999998073,-0.053979516535915165 +50352,251.7599999998073,-0.05397911015568802 +50353,251.7649999998073,-0.05397870377153584 +50354,251.76999999980728,-0.05397829738342513 +50355,251.77499999980728,-0.053977890991322414 +50356,251.77999999980727,-0.05397748459519417 +50357,251.78499999980727,-0.0539770781950069 +50358,251.78999999980726,-0.05397667179072707 +50359,251.79499999980726,-0.05397626538232115 +50360,251.79999999980726,-0.053975858969755576 +50361,251.80499999980725,-0.0539754525529968 +50362,251.80999999980725,-0.05397504613201125 +50363,251.81499999980724,-0.05397463970676532 +50364,251.81999999980724,-0.05397423327722543 +50365,251.82499999980723,-0.05397382684335797 +50366,251.82999999980723,-0.05397342040512932 +50367,251.83499999980722,-0.053973013962505846 +50368,251.83999999980722,-0.053972607515453914 +50369,251.84499999980721,-0.053972201063939865 +50370,251.8499999998072,-0.05397179460793002 +50371,251.8549999998072,-0.05397138814739071 +50372,251.8599999998072,-0.053970981682288255 +50373,251.8649999998072,-0.05397057521258894 +50374,251.8699999998072,-0.05397016873825905 +50375,251.8749999998072,-0.05396976225926486 +50376,251.87999999980718,-0.053969355775572624 +50377,251.88499999980718,-0.053968949287148606 +50378,251.88999999980717,-0.053968542793959046 +50379,251.89499999980717,-0.05396813629597017 +50380,251.89999999980716,-0.05396772979314818 +50381,251.90499999980716,-0.053967323285459286 +50382,251.90999999980716,-0.05396691677286968 +50383,251.91499999980715,-0.05396651025534554 +50384,251.91999999980715,-0.05396610373285303 +50385,251.92499999980714,-0.053965697205358314 +50386,251.92999999980714,-0.05396529067282752 +50387,251.93499999980713,-0.053964884135226786 +50388,251.93999999980713,-0.05396447759252223 +50389,251.94499999980712,-0.053964071044679957 +50390,251.94999999980712,-0.053963664491666063 +50391,251.95499999980711,-0.05396325793344664 +50392,251.9599999998071,-0.05396285136998775 +50393,251.9649999998071,-0.05396244480125544 +50394,251.9699999998071,-0.05396203822721577 +50395,251.9749999998071,-0.05396163164783478 +50396,251.9799999998071,-0.053961225063078475 +50397,251.9849999998071,-0.053960818472912876 +50398,251.98999999980708,-0.05396041187730397 +50399,251.99499999980708,-0.053960005276217755 +50400,251.99999999980707,-0.053959598669620204 +50401,252.00499999980707,-0.05395919205747727 +50402,252.00999999980706,-0.05395878543975491 +50403,252.01499999980706,-0.053958378816419045 +50404,252.01999999980706,-0.053957972187435616 +50405,252.02499999980705,-0.053957565552770516 +50406,252.02999999980705,-0.053957158912389676 +50407,252.03499999980704,-0.05395675226625895 +50408,252.03999999980704,-0.05395634561434423 +50409,252.04499999980703,-0.053955938956611375 +50410,252.04999999980703,-0.053955532293026236 +50411,252.05499999980702,-0.053955125623554666 +50412,252.05999999980702,-0.053954718948162464 +50413,252.06499999980701,-0.05395431226681546 +50414,252.069999999807,-0.053953905579479454 +50415,252.074999999807,-0.05395349888612023 +50416,252.079999999807,-0.053953092186703556 +50417,252.084999999807,-0.053952685481195216 +50418,252.089999999807,-0.05395227876956095 +50419,252.094999999807,-0.0539518720517665 +50420,252.09999999980698,-0.05395146532777759 +50421,252.10499999980698,-0.05395105859755992 +50422,252.10999999980697,-0.05395065186107921 +50423,252.11499999980697,-0.05395024511830114 +50424,252.11999999980696,-0.0539498383691914 +50425,252.12499999980696,-0.05394943161371563 +50426,252.12999999980696,-0.0539490248518395 +50427,252.13499999980695,-0.053948618083528646 +50428,252.13999999980695,-0.05394821130874868 +50429,252.14499999980694,-0.05394780452746524 +50430,252.14999999980694,-0.0539473977396439 +50431,252.15499999980693,-0.05394699094525027 +50432,252.15999999980693,-0.053946584144249896 +50433,252.16499999980692,-0.05394617733660837 +50434,252.16999999980692,-0.05394577052229123 +50435,252.17499999980691,-0.053945363701264015 +50436,252.1799999998069,-0.053944956873492246 +50437,252.1849999998069,-0.05394455003894144 +50438,252.1899999998069,-0.053944143197577094 +50439,252.1949999998069,-0.05394373634936468 +50440,252.1999999998069,-0.05394332949426971 +50441,252.2049999998069,-0.053942922632257605 +50442,252.20999999980688,-0.05394251576329383 +50443,252.21499999980688,-0.05394210888734382 +50444,252.21999999980687,-0.053941702004373 +50445,252.22499999980687,-0.05394129511434676 +50446,252.22999999980686,-0.053940888217230525 +50447,252.23499999980686,-0.05394048131298965 +50448,252.23999999980686,-0.05394007440158953 +50449,252.24499999980685,-0.0539396674829955 +50450,252.24999999980685,-0.05393926055717293 +50451,252.25499999980684,-0.05393885362408713 +50452,252.25999999980684,-0.053938446683703435 +50453,252.26499999980683,-0.053938039735987146 +50454,252.26999999980683,-0.053937632780903556 +50455,252.27499999980682,-0.05393722581841794 +50456,252.27999999980682,-0.05393681884849558 +50457,252.28499999980681,-0.053936411871101715 +50458,252.2899999998068,-0.05393600488620157 +50459,252.2949999998068,-0.0539355978937604 +50460,252.2999999998068,-0.05393519089374343 +50461,252.3049999998068,-0.05393478388611583 +50462,252.3099999998068,-0.0539343768708428 +50463,252.3149999998068,-0.053933969847889514 +50464,252.31999999980678,-0.05393356281722114 +50465,252.32499999980678,-0.053933155778802845 +50466,252.32999999980677,-0.05393274873259973 +50467,252.33499999980677,-0.05393234167857693 +50468,252.33999999980676,-0.05393193461669957 +50469,252.34499999980676,-0.05393152754693273 +50470,252.34999999980676,-0.05393112046924149 +50471,252.35499999980675,-0.05393071338359094 +50472,252.35999999980675,-0.05393030628994612 +50473,252.36499999980674,-0.053929899188272075 +50474,252.36999999980674,-0.05392949207853384 +50475,252.37499999980673,-0.05392908496069643 +50476,252.37999999980673,-0.05392867783472485 +50477,252.38499999980672,-0.05392827070058408 +50478,252.38999999980672,-0.053927863558239114 +50479,252.3949999998067,-0.0539274564076549 +50480,252.3999999998067,-0.05392704924879641 +50481,252.4049999998067,-0.05392664208162856 +50482,252.4099999998067,-0.053926234906116276 +50483,252.4149999998067,-0.05392582772222447 +50484,252.4199999998067,-0.05392542052991804 +50485,252.4249999998067,-0.05392501332916187 +50486,252.42999999980668,-0.05392460611992082 +50487,252.43499999980668,-0.05392419890215978 +50488,252.43999999980667,-0.053923791675843546 +50489,252.44499999980667,-0.05392338444093697 +50490,252.44999999980666,-0.05392297719740486 +50491,252.45499999980666,-0.05392256994521203 +50492,252.45999999980666,-0.05392216268432327 +50493,252.46499999980665,-0.05392175541470334 +50494,252.46999999980665,-0.05392134813631701 +50495,252.47499999980664,-0.053920940849129025 +50496,252.47999999980664,-0.053920533553104125 +50497,252.48499999980663,-0.053920126248207016 +50498,252.48999999980663,-0.053919718934402415 +50499,252.49499999980662,-0.05391931161165502 +50500,252.49999999980662,-0.05391890427992951 +50501,252.5049999998066,-0.053918496939190534 +50502,252.5099999998066,-0.05391808958940276 +50503,252.5149999998066,-0.05391768223053082 +50504,252.5199999998066,-0.05391727486253933 +50505,252.5249999998066,-0.05391686748539293 +50506,252.5299999998066,-0.05391646009905618 +50507,252.5349999998066,-0.05391605270349369 +50508,252.53999999980658,-0.05391564529867002 +50509,252.54499999980658,-0.05391523788454973 +50510,252.54999999980657,-0.05391483046109735 +50511,252.55499999980657,-0.053914423028277425 +50512,252.55999999980656,-0.05391401558605445 +50513,252.56499999980656,-0.05391360813439293 +50514,252.56999999980656,-0.05391320067325737 +50515,252.57499999980655,-0.053912793202612205 +50516,252.57999999980655,-0.053912385722421935 +50517,252.58499999980654,-0.05391197823265098 +50518,252.58999999980654,-0.053911570733263775 +50519,252.59499999980653,-0.05391116322422474 +50520,252.59999999980653,-0.053910755705498276 +50521,252.60499999980652,-0.05391034817704876 +50522,252.60999999980652,-0.05390994063884058 +50523,252.6149999998065,-0.053909533090838097 +50524,252.6199999998065,-0.05390912553300565 +50525,252.6249999998065,-0.05390871796530757 +50526,252.6299999998065,-0.053908310387708186 +50527,252.6349999998065,-0.0539079028001718 +50528,252.6399999998065,-0.05390749520266269 +50529,252.6449999998065,-0.05390708759514514 +50530,252.64999999980648,-0.05390667997758341 +50531,252.65499999980648,-0.05390627234994175 +50532,252.65999999980647,-0.053905864712184386 +50533,252.66499999980647,-0.05390545706427554 +50534,252.66999999980646,-0.05390504940617942 +50535,252.67499999980646,-0.05390464173786022 +50536,252.67999999980645,-0.0539042340592821 +50537,252.68499999980645,-0.05390382637040925 +50538,252.68999999980645,-0.0539034186712058 +50539,252.69499999980644,-0.05390301096163587 +50540,252.69999999980644,-0.0539026032416636 +50541,252.70499999980643,-0.05390219551125308 +50542,252.70999999980643,-0.053901787770368415 +50543,252.71499999980642,-0.05390138001897368 +50544,252.71999999980642,-0.053900972257032935 +50545,252.7249999998064,-0.053900564484510215 +50546,252.7299999998064,-0.05390015670136956 +50547,252.7349999998064,-0.05389974890757499 +50548,252.7399999998064,-0.053899341103090505 +50549,252.7449999998064,-0.0538989332878801 +50550,252.7499999998064,-0.05389852546190775 +50551,252.7549999998064,-0.053898117625137416 +50552,252.75999999980638,-0.05389770977753304 +50553,252.76499999980638,-0.05389730191905855 +50554,252.76999999980637,-0.05389689404967787 +50555,252.77499999980637,-0.053896486169354905 +50556,252.77999999980636,-0.05389607827805354 +50557,252.78499999980636,-0.053895670375737635 +50558,252.78999999980635,-0.053895262462371064 +50559,252.79499999980635,-0.05389485453791767 +50560,252.79999999980635,-0.05389444660234128 +50561,252.80499999980634,-0.0538940386556057 +50562,252.80999999980634,-0.053893630697674735 +50563,252.81499999980633,-0.053893222728512186 +50564,252.81999999980633,-0.0538928147480818 +50565,252.82499999980632,-0.05389240675634736 +50566,252.82999999980632,-0.05389199875327257 +50567,252.8349999998063,-0.05389159073882118 +50568,252.8399999998063,-0.053891182712956905 +50569,252.8449999998063,-0.053890774675643426 +50570,252.8499999998063,-0.05389036662684444 +50571,252.8549999998063,-0.05388995856652361 +50572,252.8599999998063,-0.05388955049464457 +50573,252.8649999998063,-0.05388914241117098 +50574,252.86999999980628,-0.053888734316066465 +50575,252.87499999980628,-0.0538883262092946 +50576,252.87999999980627,-0.05388791809081901 +50577,252.88499999980627,-0.05388750996060327 +50578,252.88999999980626,-0.05388710181861093 +50579,252.89499999980626,-0.05388669366480555 +50580,252.89999999980625,-0.05388628549915066 +50581,252.90499999980625,-0.05388587732160977 +50582,252.90999999980625,-0.05388546913214638 +50583,252.91499999980624,-0.053885060930723996 +50584,252.91999999980624,-0.05388465271730608 +50585,252.92499999980623,-0.053884244491856095 +50586,252.92999999980623,-0.053883836254337465 +50587,252.93499999980622,-0.053883428004713636 +50588,252.93999999980622,-0.05388301974294803 +50589,252.9449999998062,-0.053882611469004006 +50590,252.9499999998062,-0.05388220318284498 +50591,252.9549999998062,-0.0538817948844343 +50592,252.9599999998062,-0.05388138657373534 +50593,252.9649999998062,-0.05388097825071142 +50594,252.9699999998062,-0.05388056991532587 +50595,252.9749999998062,-0.053880161567541975 +50596,252.97999999980618,-0.05387975320732305 +50597,252.98499999980618,-0.053879344834632366 +50598,252.98999999980617,-0.053878936449433174 +50599,252.99499999980617,-0.05387852805168873 +50600,252.99999999980616,-0.053878119641362264 +50601,253.00499999980616,-0.05387771121841698 +50602,253.00999999980615,-0.05387730278281608 +50603,253.01499999980615,-0.053876894334522744 +50604,253.01999999980615,-0.053876485873500156 +50605,253.02499999980614,-0.05387607739971147 +50606,253.02999999980614,-0.0538756689131198 +50607,253.03499999980613,-0.053875260413688265 +50608,253.03999999980613,-0.05387485190138 +50609,253.04499999980612,-0.053874443376158085 +50610,253.04999999980612,-0.05387403483798559 +50611,253.0549999998061,-0.053873626286825585 +50612,253.0599999998061,-0.0538732177226411 +50613,253.0649999998061,-0.05387280914539518 +50614,253.0699999998061,-0.05387240055505083 +50615,253.0749999998061,-0.053871991951571045 +50616,253.0799999998061,-0.05387158333491881 +50617,253.0849999998061,-0.05387117470505709 +50618,253.08999999980608,-0.05387076606194884 +50619,253.09499999980608,-0.053870357405557005 +50620,253.09999999980607,-0.053869948735844476 +50621,253.10499999980607,-0.05386954005277419 +50622,253.10999999980606,-0.05386913135630901 +50623,253.11499999980606,-0.05386872264641183 +50624,253.11999999980605,-0.05386831392304548 +50625,253.12499999980605,-0.05386790518617282 +50626,253.12999999980605,-0.05386749643575668 +50627,253.13499999980604,-0.053867087671759864 +50628,253.13999999980604,-0.053866678894145155 +50629,253.14499999980603,-0.05386627010287535 +50630,253.14999999980603,-0.05386586129791319 +50631,253.15499999980602,-0.053865452479221435 +50632,253.15999999980602,-0.05386504364676282 +50633,253.164999999806,-0.05386463480050004 +50634,253.169999999806,-0.05386422594039581 +50635,253.174999999806,-0.05386381706641281 +50636,253.179999999806,-0.0538634081785137 +50637,253.184999999806,-0.053862999276661126 +50638,253.189999999806,-0.05386259036081775 +50639,253.194999999806,-0.05386218143094617 +50640,253.19999999980598,-0.05386177248700899 +50641,253.20499999980598,-0.053861363528968795 +50642,253.20999999980597,-0.05386095455678816 +50643,253.21499999980597,-0.05386054557042964 +50644,253.21999999980596,-0.05386013656985577 +50645,253.22499999980596,-0.05385972755502908 +50646,253.22999999980595,-0.053859318525912074 +50647,253.23499999980595,-0.05385890948246723 +50648,253.23999999980595,-0.05385850042465704 +50649,253.24499999980594,-0.05385809135244395 +50650,253.24999999980594,-0.0538576822657904 +50651,253.25499999980593,-0.053857273164658825 +50652,253.25999999980593,-0.05385686404901162 +50653,253.26499999980592,-0.0538564549188112 +50654,253.26999999980592,-0.05385604577401992 +50655,253.2749999998059,-0.05385563661460015 +50656,253.2799999998059,-0.05385522744051423 +50657,253.2849999998059,-0.05385481825172448 +50658,253.2899999998059,-0.05385440904819323 +50659,253.2949999998059,-0.053853999829882766 +50660,253.2999999998059,-0.05385359059675537 +50661,253.3049999998059,-0.05385318134877331 +50662,253.30999999980588,-0.05385277208589881 +50663,253.31499999980588,-0.05385236280809411 +50664,253.31999999980587,-0.05385195351532144 +50665,253.32499999980587,-0.05385154420754297 +50666,253.32999999980586,-0.053851134884720896 +50667,253.33499999980586,-0.05385072554681737 +50668,253.33999999980585,-0.05385031619379456 +50669,253.34499999980585,-0.053849906825614566 +50670,253.34999999980585,-0.053849497442239526 +50671,253.35499999980584,-0.053849088043631525 +50672,253.35999999980584,-0.05384867862975266 +50673,253.36499999980583,-0.05384826920056497 +50674,253.36999999980583,-0.053847859756030535 +50675,253.37499999980582,-0.05384745029611135 +50676,253.37999999980582,-0.05384704082076945 +50677,253.3849999998058,-0.053846631329966824 +50678,253.3899999998058,-0.05384622182366546 +50679,253.3949999998058,-0.05384581230182733 +50680,253.3999999998058,-0.053845402764414345 +50681,253.4049999998058,-0.05384499321138847 +50682,253.4099999998058,-0.053844583642711615 +50683,253.4149999998058,-0.05384417405834567 +50684,253.41999999980578,-0.05384376445825251 +50685,253.42499999980578,-0.053843354842394005 +50686,253.42999999980577,-0.053842945210732 +50687,253.43499999980577,-0.05384253556322832 +50688,253.43999999980576,-0.05384212589984479 +50689,253.44499999980576,-0.05384171622054319 +50690,253.44999999980575,-0.05384130652528532 +50691,253.45499999980575,-0.05384089681403292 +50692,253.45999999980575,-0.05384048708674775 +50693,253.46499999980574,-0.05384007734339152 +50694,253.46999999980574,-0.05383966758392594 +50695,253.47499999980573,-0.05383925780831274 +50696,253.47999999980573,-0.053838848016513556 +50697,253.48499999980572,-0.05383843820849006 +50698,253.48999999980572,-0.05383802838420391 +50699,253.4949999998057,-0.05383761854361672 +50700,253.4999999998057,-0.05383720868669009 +50701,253.5049999998057,-0.05383679881338563 +50702,253.5099999998057,-0.05383638892366489 +50703,253.5149999998057,-0.05383597901748944 +50704,253.5199999998057,-0.05383556909482081 +50705,253.5249999998057,-0.053835159155620545 +50706,253.52999999980568,-0.05383474919985014 +50707,253.53499999980568,-0.05383433922747108 +50708,253.53999999980567,-0.05383392923844482 +50709,253.54499999980567,-0.05383351923273284 +50710,253.54999999980566,-0.05383310921029657 +50711,253.55499999980566,-0.05383269917109742 +50712,253.55999999980565,-0.053832289115096785 +50713,253.56499999980565,-0.053831879042256066 +50714,253.56999999980565,-0.053831468952536626 +50715,253.57499999980564,-0.0538310588458998 +50716,253.57999999980564,-0.053830648722306945 +50717,253.58499999980563,-0.053830238581719356 +50718,253.58999999980563,-0.053829828424098336 +50719,253.59499999980562,-0.05382941824940517 +50720,253.59999999980562,-0.0538290080576011 +50721,253.6049999998056,-0.053828597848647394 +50722,253.6099999998056,-0.053828187622505255 +50723,253.6149999998056,-0.05382777737913591 +50724,253.6199999998056,-0.05382736711850055 +50725,253.6249999998056,-0.053826956840560346 +50726,253.6299999998056,-0.05382654654527646 +50727,253.6349999998056,-0.05382613623261001 +50728,253.63999999980558,-0.05382572590252214 +50729,253.64499999980558,-0.05382531555497394 +50730,253.64999999980557,-0.05382490518992651 +50731,253.65499999980557,-0.05382449480734091 +50732,253.65999999980556,-0.053824084407178195 +50733,253.66499999980556,-0.053823673989399384 +50734,253.66999999980555,-0.05382326355396549 +50735,253.67499999980555,-0.05382285310083752 +50736,253.67999999980555,-0.053822442629976465 +50737,253.68499999980554,-0.05382203214134327 +50738,253.68999999980554,-0.05382162163489888 +50739,253.69499999980553,-0.05382121111060423 +50740,253.69999999980553,-0.05382080056842021 +50741,253.70499999980552,-0.053820390008307725 +50742,253.70999999980552,-0.05381997943022765 +50743,253.7149999998055,-0.053819568834140824 +50744,253.7199999998055,-0.053819158220008094 +50745,253.7249999998055,-0.05381874758779027 +50746,253.7299999998055,-0.053818336937448155 +50747,253.7349999998055,-0.05381792626894253 +50748,253.7399999998055,-0.05381751558223417 +50749,253.7449999998055,-0.0538171048772838 +50750,253.74999999980548,-0.05381669415405216 +50751,253.75499999980548,-0.05381628341249996 +50752,253.75999999980547,-0.05381587265258789 +50753,253.76499999980547,-0.053815461874276625 +50754,253.76999999980546,-0.05381505107752682 +50755,253.77499999980546,-0.05381464026229911 +50756,253.77999999980545,-0.053814229428554114 +50757,253.78499999980545,-0.053813818576252434 +50758,253.78999999980545,-0.05381340770535465 +50759,253.79499999980544,-0.05381299681582132 +50760,253.79999999980544,-0.053812585907613 +50761,253.80499999980543,-0.053812174980690214 +50762,253.80999999980543,-0.05381176403501347 +50763,253.81499999980542,-0.053811353070543265 +50764,253.81999999980542,-0.05381094208724005 +50765,253.8249999998054,-0.0538105310850643 +50766,253.8299999998054,-0.053810120063976445 +50767,253.8349999998054,-0.053809709023936905 +50768,253.8399999998054,-0.05380929796490608 +50769,253.8449999998054,-0.053808886886844334 +50770,253.8499999998054,-0.05380847578971205 +50771,253.8549999998054,-0.05380806467346956 +50772,253.85999999980538,-0.05380765353807718 +50773,253.86499999980538,-0.05380724238349522 +50774,253.86999999980537,-0.05380683120968398 +50775,253.87499999980537,-0.053806420016603726 +50776,253.87999999980536,-0.0538060088042147 +50777,253.88499999980536,-0.053805597572477125 +50778,253.88999999980535,-0.05380518632135123 +50779,253.89499999980535,-0.053804775050797206 +50780,253.89999999980535,-0.053804363760775235 +50781,253.90499999980534,-0.05380395245124545 +50782,253.90999999980534,-0.053803541122168015 +50783,253.91499999980533,-0.05380312977350303 +50784,253.91999999980533,-0.053802718405210614 +50785,253.92499999980532,-0.05380230701725084 +50786,253.92999999980532,-0.05380189560958377 +50787,253.9349999998053,-0.05380148418216945 +50788,253.9399999998053,-0.05380107273496789 +50789,253.9449999998053,-0.05380066126793912 +50790,253.9499999998053,-0.05380024978104311 +50791,253.9549999998053,-0.053799838274239835 +50792,253.9599999998053,-0.053799426747489235 +50793,253.9649999998053,-0.053799015200751255 +50794,253.96999999980528,-0.05379860363398581 +50795,253.97499999980528,-0.05379819204715277 +50796,253.97999999980527,-0.05379778044021202 +50797,253.98499999980527,-0.05379736881312343 +50798,253.98999999980526,-0.05379695716584681 +50799,253.99499999980526,-0.05379654549834199 +50800,253.99999999980525,-0.05379613381056876 +50801,254.00499999980525,-0.053795722102486905 +50802,254.00999999980525,-0.05379531037405619 +50803,254.01499999980524,-0.05379489862523634 +50804,254.01999999980524,-0.05379448685598709 +50805,254.02499999980523,-0.05379407506626812 +50806,254.02999999980523,-0.053793663256039126 +50807,254.03499999980522,-0.05379325142525977 +50808,254.03999999980522,-0.053792839573889695 +50809,254.0449999998052,-0.053792427701888516 +50810,254.0499999998052,-0.05379201580921584 +50811,254.0549999998052,-0.05379160389583127 +50812,254.0599999998052,-0.05379119196169435 +50813,254.0649999998052,-0.05379078000676465 +50814,254.0699999998052,-0.05379036803100168 +50815,254.0749999998052,-0.05378995603436495 +50816,254.07999999980518,-0.05378954401681395 +50817,254.08499999980518,-0.05378913197830815 +50818,254.08999999980517,-0.053788719918806994 +50819,254.09499999980517,-0.053788307838269905 +50820,254.09999999980516,-0.05378789573665631 +50821,254.10499999980516,-0.05378748361392559 +50822,254.10999999980515,-0.05378707147003712 +50823,254.11499999980515,-0.053786659304950246 +50824,254.11999999980515,-0.05378624711862432 +50825,254.12499999980514,-0.053785834911018626 +50826,254.12999999980514,-0.05378542268209247 +50827,254.13499999980513,-0.053785010431805134 +50828,254.13999999980513,-0.05378459816011585 +50829,254.14499999980512,-0.053784185866983865 +50830,254.14999999980512,-0.05378377355236839 +50831,254.1549999998051,-0.05378336121622863 +50832,254.1599999998051,-0.05378294885852374 +50833,254.1649999998051,-0.053782536479212883 +50834,254.1699999998051,-0.05378212407825518 +50835,254.1749999998051,-0.05378171165560977 +50836,254.1799999998051,-0.053781299211235735 +50837,254.1849999998051,-0.05378088674509215 +50838,254.18999999980508,-0.05378047425713807 +50839,254.19499999980508,-0.053780061747332526 +50840,254.19999999980507,-0.05377964921563454 +50841,254.20499999980507,-0.0537792366620031 +50842,254.20999999980506,-0.053778824086397184 +50843,254.21499999980506,-0.05377841148877575 +50844,254.21999999980505,-0.05377799886909773 +50845,254.22499999980505,-0.05377758622732203 +50846,254.22999999980505,-0.05377717356340756 +50847,254.23499999980504,-0.05377676087731318 +50848,254.23999999980504,-0.053776348168997755 +50849,254.24499999980503,-0.053775935438420124 +50850,254.24999999980503,-0.053775522685539076 +50851,254.25499999980502,-0.053775109910313416 +50852,254.25999999980502,-0.05377469711270193 +50853,254.264999999805,-0.05377428429266337 +50854,254.269999999805,-0.05377387145015645 +50855,254.274999999805,-0.053773458585139905 +50856,254.279999999805,-0.053773045697572415 +50857,254.284999999805,-0.05377263278741265 +50858,254.289999999805,-0.05377221985461927 +50859,254.294999999805,-0.05377180689915089 +50860,254.29999999980498,-0.05377139392096614 +50861,254.30499999980498,-0.05377098092002359 +50862,254.30999999980497,-0.05377056789628183 +50863,254.31499999980497,-0.053770154849699395 +50864,254.31999999980496,-0.053769741780234824 +50865,254.32499999980496,-0.053769328687846625 +50866,254.32999999980495,-0.05376891557249327 +50867,254.33499999980495,-0.05376850243413324 +50868,254.33999999980495,-0.05376808927272498 +50869,254.34499999980494,-0.053767676088226905 +50870,254.34999999980494,-0.053767262880597445 +50871,254.35499999980493,-0.053766849649794966 +50872,254.35999999980493,-0.053766436395777835 +50873,254.36499999980492,-0.05376602311850438 +50874,254.36999999980492,-0.05376560981793294 +50875,254.3749999998049,-0.053765196494021825 +50876,254.3799999998049,-0.0537647831467293 +50877,254.3849999998049,-0.05376436977601364 +50878,254.3899999998049,-0.05376395638183307 +50879,254.3949999998049,-0.053763542964145816 +50880,254.3999999998049,-0.05376312952291006 +50881,254.4049999998049,-0.053762716058084 +50882,254.40999999980488,-0.053762302569625775 +50883,254.41499999980488,-0.05376188905749354 +50884,254.41999999980487,-0.05376147552164538 +50885,254.42499999980487,-0.053761061962039405 +50886,254.42999999980486,-0.05376064837863369 +50887,254.43499999980486,-0.05376023477138628 +50888,254.43999999980485,-0.053759821140255216 +50889,254.44499999980485,-0.05375940748519848 +50890,254.44999999980485,-0.05375899380617409 +50891,254.45499999980484,-0.05375858010313999 +50892,254.45999999980484,-0.053758166376054135 +50893,254.46499999980483,-0.05375775262487444 +50894,254.46999999980483,-0.05375733884955882 +50895,254.47499999980482,-0.05375692505006515 +50896,254.47999999980482,-0.05375651122635129 +50897,254.4849999998048,-0.05375609737837509 +50898,254.4899999998048,-0.05375568350609436 +50899,254.4949999998048,-0.053755269609466895 +50900,254.4999999998048,-0.05375485568845046 +50901,254.5049999998048,-0.05375444174300283 +50902,254.5099999998048,-0.05375402777308172 +50903,254.5149999998048,-0.05375361377864485 +50904,254.51999999980478,-0.05375319975964991 +50905,254.52499999980478,-0.053752785716054546 +50906,254.52999999980477,-0.053752371647816446 +50907,254.53499999980477,-0.05375195755489321 +50908,254.53999999980476,-0.053751543437242436 +50909,254.54499999980476,-0.05375112929482171 +50910,254.54999999980475,-0.053750715127588604 +50911,254.55499999980475,-0.053750300935500664 +50912,254.55999999980475,-0.05374988671851538 +50913,254.56499999980474,-0.053749472476590274 +50914,254.56999999980474,-0.05374905820968279 +50915,254.57499999980473,-0.0537486439177504 +50916,254.57999999980473,-0.053748229600750534 +50917,254.58499999980472,-0.0537478152586406 +50918,254.58999999980472,-0.05374740089137798 +50919,254.5949999998047,-0.05374698649892004 +50920,254.5999999998047,-0.05374657208122413 +50921,254.6049999998047,-0.05374615763824757 +50922,254.6099999998047,-0.053745743169947645 +50923,254.6149999998047,-0.05374532867628166 +50924,254.6199999998047,-0.05374491415720685 +50925,254.6249999998047,-0.053744499612680456 +50926,254.62999999980468,-0.05374408504265969 +50927,254.63499999980468,-0.05374367044710174 +50928,254.63999999980467,-0.05374325582596377 +50929,254.64499999980467,-0.053742841179202944 +50930,254.64999999980466,-0.05374242650677637 +50931,254.65499999980466,-0.05374201180864115 +50932,254.65999999980465,-0.05374159708475438 +50933,254.66499999980465,-0.05374118233507309 +50934,254.66999999980465,-0.05374076755955433 +50935,254.67499999980464,-0.05374035275815511 +50936,254.67999999980464,-0.05373993793083244 +50937,254.68499999980463,-0.05373952307754327 +50938,254.68999999980463,-0.05373910819824455 +50939,254.69499999980462,-0.05373869329289321 +50940,254.69999999980462,-0.05373827836144614 +50941,254.7049999998046,-0.053737863403860234 +50942,254.7099999998046,-0.053737448420092336 +50943,254.7149999998046,-0.053737033410099284 +50944,254.7199999998046,-0.05373661837383791 +50945,254.7249999998046,-0.05373620331126499 +50946,254.7299999998046,-0.05373578822233728 +50947,254.7349999998046,-0.05373537310701154 +50948,254.73999999980458,-0.05373495796524449 +50949,254.74499999980458,-0.05373454279699284 +50950,254.74999999980457,-0.05373412760221325 +50951,254.75499999980457,-0.053733712380862386 +50952,254.75999999980456,-0.05373329713289688 +50953,254.76499999980456,-0.053732881858273344 +50954,254.76999999980455,-0.053732466556948355 +50955,254.77499999980455,-0.05373205122887849 +50956,254.77999999980455,-0.053731635874020287 +50957,254.78499999980454,-0.053731220492330256 +50958,254.78999999980454,-0.053730805083764904 +50959,254.79499999980453,-0.05373038964828071 +50960,254.79999999980453,-0.05372997418583411 +50961,254.80499999980452,-0.053729558696381546 +50962,254.80999999980452,-0.05372914317987942 +50963,254.8149999998045,-0.053728727636284106 +50964,254.8199999998045,-0.053728312065551974 +50965,254.8249999998045,-0.053727896467639355 +50966,254.8299999998045,-0.053727480842502576 +50967,254.8349999998045,-0.05372706519009791 +50968,254.8399999998045,-0.05372664951038162 +50969,254.8449999998045,-0.05372623380330998 +50970,254.84999999980448,-0.05372581806883919 +50971,254.85499999980448,-0.05372540230692545 +50972,254.85999999980447,-0.05372498651752494 +50973,254.86499999980447,-0.05372457070059382 +50974,254.86999999980446,-0.0537241548560882 +50975,254.87499999980446,-0.05372373898396421 +50976,254.87999999980445,-0.05372332308417792 +50977,254.88499999980445,-0.053722907156685394 +50978,254.88999999980444,-0.053722491201442665 +50979,254.89499999980444,-0.05372207521840575 +50980,254.89999999980444,-0.05372165920753062 +50981,254.90499999980443,-0.05372124316877327 +50982,254.90999999980443,-0.05372082710208963 +50983,254.91499999980442,-0.05372041100743562 +50984,254.91999999980442,-0.053719994884767135 +50985,254.9249999998044,-0.053719578734040055 +50986,254.9299999998044,-0.05371916255521023 +50987,254.9349999998044,-0.05371874634823348 +50988,254.9399999998044,-0.05371833011306562 +50989,254.9449999998044,-0.05371791384966241 +50990,254.9499999998044,-0.05371749755797962 +50991,254.9549999998044,-0.053717081237972975 +50992,254.95999999980438,-0.05371666488959819 +50993,254.96499999980438,-0.05371624851281095 +50994,254.96999999980437,-0.05371583210756691 +50995,254.97499999980437,-0.05371541567382171 +50996,254.97999999980436,-0.053714999211530966 +50997,254.98499999980436,-0.05371458272065027 +50998,254.98999999980435,-0.053714166201135186 +50999,254.99499999980435,-0.05371374965294125 +51000,254.99999999980434,-0.05371333307602399 +51001,255.00499999980434,-0.0537129164703389 +51002,255.00999999980434,-0.05371249983584144 +51003,255.01499999980433,-0.05371208317248709 +51004,255.01999999980433,-0.05371166648023123 +51005,255.02499999980432,-0.053711249759029286 +51006,255.02999999980432,-0.05371083300883663 +51007,255.0349999998043,-0.053710416229608614 +51008,255.0399999998043,-0.05370999942130055 +51009,255.0449999998043,-0.05370958258386776 +51010,255.0499999998043,-0.05370916571726551 +51011,255.0549999998043,-0.05370874882144906 +51012,255.0599999998043,-0.053708331896373654 +51013,255.0649999998043,-0.05370791494199448 +51014,255.06999999980428,-0.05370749795826673 +51015,255.07499999980428,-0.05370708094514556 +51016,255.07999999980427,-0.05370666390258612 +51017,255.08499999980427,-0.053706246830543494 +51018,255.08999999980426,-0.053705829728972775 +51019,255.09499999980426,-0.05370541259782904 +51020,255.09999999980425,-0.05370499543706731 +51021,255.10499999980425,-0.0537045782466426 +51022,255.10999999980424,-0.05370416102650991 +51023,255.11499999980424,-0.053703743776624194 +51024,255.11999999980424,-0.053703326496940394 +51025,255.12499999980423,-0.05370290918741341 +51026,255.12999999980423,-0.05370249184799816 +51027,255.13499999980422,-0.0537020744786495 +51028,255.13999999980422,-0.053701657079322264 +51029,255.1449999998042,-0.05370123964997127 +51030,255.1499999998042,-0.053700822190551306 +51031,255.1549999998042,-0.05370040470101715 +51032,255.1599999998042,-0.05369998718132355 +51033,255.1649999998042,-0.05369956963142522 +51034,255.1699999998042,-0.053699152051276844 +51035,255.1749999998042,-0.0536987344408331 +51036,255.17999999980418,-0.05369831680004862 +51037,255.18499999980418,-0.053697899128878034 +51038,255.18999999980417,-0.05369748142727595 +51039,255.19499999980417,-0.05369706369519692 +51040,255.19999999980416,-0.05369664593259549 +51041,255.20499999980416,-0.05369622813942617 +51042,255.20999999980415,-0.05369581031564347 +51043,255.21499999980415,-0.05369539246120186 +51044,255.21999999980414,-0.053694974576055786 +51045,255.22499999980414,-0.05369455666015966 +51046,255.22999999980414,-0.05369413871346788 +51047,255.23499999980413,-0.05369372073593482 +51048,255.23999999980413,-0.05369330272751482 +51049,255.24499999980412,-0.0536928846881622 +51050,255.24999999980412,-0.053692466617831246 +51051,255.2549999998041,-0.05369204851647625 +51052,255.2599999998041,-0.053691630384051434 +51053,255.2649999998041,-0.053691212220511035 +51054,255.2699999998041,-0.05369079402580923 +51055,255.2749999998041,-0.05369037579990019 +51056,255.2799999998041,-0.05368995754273807 +51057,255.28499999980409,-0.05368953925427698 +51058,255.28999999980408,-0.05368912093447101 +51059,255.29499999980408,-0.053688702583274225 +51060,255.29999999980407,-0.05368828420064067 +51061,255.30499999980407,-0.05368786578652437 +51062,255.30999999980406,-0.0536874473408793 +51063,255.31499999980406,-0.05368702886365943 +51064,255.31999999980405,-0.05368661035481871 +51065,255.32499999980405,-0.05368619181431104 +51066,255.32999999980404,-0.05368577324209032 +51067,255.33499999980404,-0.05368535463811041 +51068,255.33999999980404,-0.05368493600232514 +51069,255.34499999980403,-0.05368451733468833 +51070,255.34999999980403,-0.05368409863515375 +51071,255.35499999980402,-0.053683679903675174 +51072,255.35999999980402,-0.05368326114020633 +51073,255.364999999804,-0.05368284234470093 +51074,255.369999999804,-0.05368242351711265 +51075,255.374999999804,-0.05368200465739517 +51076,255.379999999804,-0.053681585765502096 +51077,255.384999999804,-0.05368116684138704 +51078,255.389999999804,-0.05368074788500357 +51079,255.39499999980399,-0.05368032889630526 +51080,255.39999999980398,-0.05367990987524562 +51081,255.40499999980398,-0.05367949082177816 +51082,255.40999999980397,-0.05367907173585636 +51083,255.41499999980397,-0.05367865261743364 +51084,255.41999999980396,-0.05367823346646346 +51085,255.42499999980396,-0.053677814282899194 +51086,255.42999999980395,-0.053677395066694215 +51087,255.43499999980395,-0.05367697581780189 +51088,255.43999999980394,-0.053676556536175514 +51089,255.44499999980394,-0.05367613722176837 +51090,255.44999999980394,-0.05367571787453375 +51091,255.45499999980393,-0.053675298494424865 +51092,255.45999999980393,-0.05367487908139495 +51093,255.46499999980392,-0.05367445963539719 +51094,255.46999999980392,-0.053674040156384724 +51095,255.4749999998039,-0.0536736206443107 +51096,255.4799999998039,-0.05367320109912824 +51097,255.4849999998039,-0.05367278152079039 +51098,255.4899999998039,-0.053672361909250246 +51099,255.4949999998039,-0.053671942264460794 +51100,255.4999999998039,-0.053671522586375066 +51101,255.50499999980389,-0.05367110287494602 +51102,255.50999999980388,-0.05367068313012661 +51103,255.51499999980388,-0.05367026335186975 +51104,255.51999999980387,-0.05366984354012834 +51105,255.52499999980387,-0.05366942369485526 +51106,255.52999999980386,-0.05366900381600333 +51107,255.53499999980386,-0.05366858390352537 +51108,255.53999999980385,-0.05366816395737418 +51109,255.54499999980385,-0.05366774397750251 +51110,255.54999999980384,-0.053667323963863096 +51111,255.55499999980384,-0.053666903916408645 +51112,255.55999999980384,-0.05366648383509182 +51113,255.56499999980383,-0.053666063719865306 +51114,255.56999999980383,-0.05366564357068171 +51115,255.57499999980382,-0.053665223387493625 +51116,255.57999999980382,-0.053664803170253635 +51117,255.5849999998038,-0.053664382918914275 +51118,255.5899999998038,-0.05366396263342807 +51119,255.5949999998038,-0.053663542313747516 +51120,255.5999999998038,-0.05366312195982506 +51121,255.6049999998038,-0.05366270157161316 +51122,255.6099999998038,-0.0536622811490642 +51123,255.61499999980379,-0.053661860692130574 +51124,255.61999999980378,-0.053661440200764646 +51125,255.62499999980378,-0.05366101967491872 +51126,255.62999999980377,-0.05366059911454512 +51127,255.63499999980377,-0.053660178519596105 +51128,255.63999999980376,-0.053659757890023925 +51129,255.64499999980376,-0.05365933722578079 +51130,255.64999999980375,-0.0536589165268189 +51131,255.65499999980375,-0.05365849579309041 +51132,255.65999999980374,-0.05365807502454746 +51133,255.66499999980374,-0.05365765422114215 +51134,255.66999999980374,-0.053657233382826575 +51135,255.67499999980373,-0.053656812509552766 +51136,255.67999999980373,-0.05365639160127276 +51137,255.68499999980372,-0.053655970657938555 +51138,255.68999999980372,-0.05365554967950212 +51139,255.6949999998037,-0.05365512866591539 +51140,255.6999999998037,-0.05365470761713029 +51141,255.7049999998037,-0.0536542865330987 +51142,255.7099999998037,-0.053653865413772484 +51143,255.7149999998037,-0.053653444259103455 +51144,255.7199999998037,-0.05365302306904343 +51145,255.72499999980369,-0.05365260184354418 +51146,255.72999999980368,-0.05365218058255745 +51147,255.73499999980368,-0.05365175928603496 +51148,255.73999999980367,-0.05365133795392841 +51149,255.74499999980367,-0.05365091658618944 +51150,255.74999999980366,-0.0536504951827697 +51151,255.75499999980366,-0.053650073743620796 +51152,255.75999999980365,-0.053649652268694295 +51153,255.76499999980365,-0.053649230757941764 +51154,255.76999999980364,-0.053648809211314714 +51155,255.77499999980364,-0.053648387628764636 +51156,255.77999999980364,-0.05364796601024301 +51157,255.78499999980363,-0.05364754435570126 +51158,255.78999999980363,-0.05364712266509079 +51159,255.79499999980362,-0.053646700938363 +51160,255.79999999980362,-0.05364627917546922 +51161,255.8049999998036,-0.05364585737636078 +51162,255.8099999998036,-0.05364543554098899 +51163,255.8149999998036,-0.05364501366930509 +51164,255.8199999998036,-0.05364459176126033 +51165,255.8249999998036,-0.05364416981680593 +51166,255.8299999998036,-0.05364374783589307 +51167,255.83499999980359,-0.05364332581847289 +51168,255.83999999980358,-0.05364290376449651 +51169,255.84499999980358,-0.05364248167391504 +51170,255.84999999980357,-0.053642059546679534 +51171,255.85499999980357,-0.05364163738274104 +51172,255.85999999980356,-0.05364121518205056 +51173,255.86499999980356,-0.05364079294455908 +51174,255.86999999980355,-0.05364037067021755 +51175,255.87499999980355,-0.05363994835897688 +51176,255.87999999980354,-0.053639526010787975 +51177,255.88499999980354,-0.053639103625601696 +51178,255.88999999980354,-0.05363868120336888 +51179,255.89499999980353,-0.05363825874404033 +51180,255.89999999980353,-0.053637836247566836 +51181,255.90499999980352,-0.053637413713899136 +51182,255.90999999980352,-0.05363699114298796 +51183,255.9149999998035,-0.05363656853478396 +51184,255.9199999998035,-0.05363614588923784 +51185,255.9249999998035,-0.053635723206300216 +51186,255.9299999998035,-0.05363530048592169 +51187,255.9349999998035,-0.053634877728052845 +51188,255.9399999998035,-0.05363445493264422 +51189,255.94499999980349,-0.05363403209964632 +51190,255.94999999980348,-0.053633609229009636 +51191,255.95499999980348,-0.05363318632068463 +51192,255.95999999980347,-0.053632763374621716 +51193,255.96499999980347,-0.053632340390771305 +51194,255.96999999980346,-0.053631917369083765 +51195,255.97499999980346,-0.05363149430950942 +51196,255.97999999980345,-0.05363107121199859 +51197,255.98499999980345,-0.053630648076501544 +51198,255.98999999980344,-0.05363022490296855 +51199,255.99499999980344,-0.053629801691349815 +51200,255.99999999980344,-0.05362937844159552 +51201,256.00499999980343,-0.05362895515365584 +51202,256.0099999998034,-0.053628531827480896 +51203,256.0149999998034,-0.05362810846302081 +51204,256.0199999998034,-0.05362768506022563 +51205,256.0249999998034,-0.053627261619045415 +51206,256.0299999998034,-0.053626838139430165 +51207,256.0349999998034,-0.05362641462132986 +51208,256.0399999998034,-0.05362599106469445 +51209,256.0449999998034,-0.05362556746947387 +51210,256.0499999998034,-0.05362514383561799 +51211,256.0549999998034,-0.05362472016307669 +51212,256.0599999998034,-0.053624296451799794 +51213,256.0649999998034,-0.053623872701737116 +51214,256.0699999998034,-0.05362344891283841 +51215,256.07499999980337,-0.05362302508505343 +51216,256.07999999980336,-0.053622601218331865 +51217,256.08499999980336,-0.05362217731262342 +51218,256.08999999980335,-0.05362175336787774 +51219,256.09499999980335,-0.053621329384044444 +51220,256.09999999980334,-0.05362090536107311 +51221,256.10499999980334,-0.05362048129891332 +51222,256.10999999980334,-0.05362005719751459 +51223,256.11499999980333,-0.053619633056826405 +51224,256.1199999998033,-0.053619208876798254 +51225,256.1249999998033,-0.05361878465737956 +51226,256.1299999998033,-0.053618360398519756 +51227,256.1349999998033,-0.0536179361001682 +51228,256.1399999998033,-0.05361751176227422 +51229,256.1449999998033,-0.053617087384787154 +51230,256.1499999998033,-0.053616662967656284 +51231,256.1549999998033,-0.05361623851083087 +51232,256.1599999998033,-0.053615814014260126 +51233,256.1649999998033,-0.05361538947789323 +51234,256.1699999998033,-0.05361496490167937 +51235,256.1749999998033,-0.053614540285567655 +51236,256.1799999998033,-0.0536141156295072 +51237,256.18499999980327,-0.05361369093344706 +51238,256.18999999980326,-0.053613266197336286 +51239,256.19499999980326,-0.05361284142112389 +51240,256.19999999980325,-0.053612416604758836 +51241,256.20499999980325,-0.05361199174819006 +51242,256.20999999980324,-0.053611566851366504 +51243,256.21499999980324,-0.05361114191423703 +51244,256.21999999980324,-0.05361071693675048 +51245,256.22499999980323,-0.0536102919188557 +51246,256.2299999998032,-0.053609866860501454 +51247,256.2349999998032,-0.05360944176163652 +51248,256.2399999998032,-0.05360901662220961 +51249,256.2449999998032,-0.05360859144216943 +51250,256.2499999998032,-0.053608166221464644 +51251,256.2549999998032,-0.05360774096004387 +51252,256.2599999998032,-0.053607315657855724 +51253,256.2649999998032,-0.05360689031484877 +51254,256.2699999998032,-0.05360646493097154 +51255,256.2749999998032,-0.05360603950617255 +51256,256.2799999998032,-0.05360561404040027 +51257,256.2849999998032,-0.05360518853360315 +51258,256.2899999998032,-0.053604762985729595 +51259,256.29499999980317,-0.053604337396727986 +51260,256.29999999980316,-0.05360391176654668 +51261,256.30499999980316,-0.053603486095133976 +51262,256.30999999980315,-0.05360306038243816 +51263,256.31499999980315,-0.0536026346284075 +51264,256.31999999980314,-0.05360220883299022 +51265,256.32499999980314,-0.05360178299613449 +51266,256.32999999980314,-0.05360135711778847 +51267,256.33499999980313,-0.0536009311979003 +51268,256.3399999998031,-0.05360050523641806 +51269,256.3449999998031,-0.05360007923328982 +51270,256.3499999998031,-0.05359965318846359 +51271,256.3549999998031,-0.053599227101887394 +51272,256.3599999998031,-0.053598800973509185 +51273,256.3649999998031,-0.0535983748032769 +51274,256.3699999998031,-0.05359794859113842 +51275,256.3749999998031,-0.05359752233704164 +51276,256.3799999998031,-0.05359709604093438 +51277,256.3849999998031,-0.05359666970276444 +51278,256.3899999998031,-0.05359624332247961 +51279,256.3949999998031,-0.05359581690002761 +51280,256.3999999998031,-0.053595390435356154 +51281,256.40499999980307,-0.05359496392841291 +51282,256.40999999980306,-0.05359453737914554 +51283,256.41499999980306,-0.05359411078750162 +51284,256.41999999980305,-0.05359368415342876 +51285,256.42499999980305,-0.05359325747687447 +51286,256.42999999980304,-0.053592830757786286 +51287,256.43499999980304,-0.05359240399611168 +51288,256.43999999980304,-0.05359197719179811 +51289,256.44499999980303,-0.05359155034479297 +51290,256.449999999803,-0.053591123455043646 +51291,256.454999999803,-0.05359069652249748 +51292,256.459999999803,-0.0535902695471018 +51293,256.464999999803,-0.053589842528803874 +51294,256.469999999803,-0.053589415467550965 +51295,256.474999999803,-0.05358898836329027 +51296,256.479999999803,-0.05358856121596898 +51297,256.484999999803,-0.05358813402553426 +51298,256.489999999803,-0.0535877067919332 +51299,256.494999999803,-0.0535872795151129 +51300,256.499999999803,-0.0535868521950204 +51301,256.504999999803,-0.05358642483160273 +51302,256.509999999803,-0.05358599742480687 +51303,256.51499999980297,-0.05358556997457976 +51304,256.51999999980296,-0.05358514248086833 +51305,256.52499999980296,-0.05358471494361946 +51306,256.52999999980295,-0.05358428736277999 +51307,256.53499999980295,-0.053583859738296755 +51308,256.53999999980294,-0.05358343207011652 +51309,256.54499999980294,-0.05358300435818605 +51310,256.54999999980294,-0.05358257660245205 +51311,256.55499999980293,-0.05358214880286121 +51312,256.5599999998029,-0.05358172095936018 +51313,256.5649999998029,-0.053581293071895575 +51314,256.5699999998029,-0.05358086514041398 +51315,256.5749999998029,-0.05358043716486194 +51316,256.5799999998029,-0.05358000914518596 +51317,256.5849999998029,-0.05357958108133252 +51318,256.5899999998029,-0.053579152973248084 +51319,256.5949999998029,-0.05357872482087906 +51320,256.5999999998029,-0.05357829662417183 +51321,256.6049999998029,-0.05357786838307273 +51322,256.6099999998029,-0.05357744009752807 +51323,256.6149999998029,-0.05357701176748414 +51324,256.61999999980287,-0.05357658339288717 +51325,256.62499999980287,-0.05357615497368337 +51326,256.62999999980286,-0.05357572650981892 +51327,256.63499999980286,-0.05357529800123996 +51328,256.63999999980285,-0.053574869447892595 +51329,256.64499999980285,-0.053574440849722904 +51330,256.64999999980284,-0.053574012206676916 +51331,256.65499999980284,-0.05357358351870063 +51332,256.65999999980284,-0.05357315478574003 +51333,256.66499999980283,-0.05357272600774104 +51334,256.6699999998028,-0.05357229718464956 +51335,256.6749999998028,-0.053571868316411454 +51336,256.6799999998028,-0.05357143940297257 +51337,256.6849999998028,-0.0535710104442787 +51338,256.6899999998028,-0.05357058144027559 +51339,256.6949999998028,-0.053570152390908975 +51340,256.6999999998028,-0.05356972329612455 +51341,256.7049999998028,-0.05356929415586798 +51342,256.7099999998028,-0.053568864970084874 +51343,256.7149999998028,-0.05356843573872084 +51344,256.7199999998028,-0.05356800646172141 +51345,256.7249999998028,-0.05356757713903211 +51346,256.72999999980277,-0.05356714777059843 +51347,256.73499999980277,-0.05356671835636581 +51348,256.73999999980276,-0.05356628889627967 +51349,256.74499999980276,-0.053565859390285395 +51350,256.74999999980275,-0.05356542983832833 +51351,256.75499999980275,-0.053565000240353766 +51352,256.75999999980274,-0.053564570596306996 +51353,256.76499999980274,-0.053564140906133234 +51354,256.76999999980274,-0.053563711169777706 +51355,256.77499999980273,-0.05356328138718557 +51356,256.7799999998027,-0.05356285155830196 +51357,256.7849999998027,-0.05356242168307197 +51358,256.7899999998027,-0.053561991761440685 +51359,256.7949999998027,-0.05356156179335309 +51360,256.7999999998027,-0.05356113177875422 +51361,256.8049999998027,-0.053560701717589 +51362,256.8099999998027,-0.053560271609802354 +51363,256.8149999998027,-0.05355984145533918 +51364,256.8199999998027,-0.05355941125414431 +51365,256.8249999998027,-0.05355898100616257 +51366,256.8299999998027,-0.05355855071133873 +51367,256.8349999998027,-0.053558120369617525 +51368,256.83999999980267,-0.05355768998094368 +51369,256.84499999980267,-0.05355725954526186 +51370,256.84999999980266,-0.053556829062516687 +51371,256.85499999980266,-0.05355639853265277 +51372,256.85999999980265,-0.05355596795561466 +51373,256.86499999980265,-0.0535555373313469 +51374,256.86999999980264,-0.05355510665979397 +51375,256.87499999980264,-0.053554675940900326 +51376,256.87999999980264,-0.05355424517461039 +51377,256.88499999980263,-0.05355381436086853 +51378,256.8899999998026,-0.053553383499619106 +51379,256.8949999998026,-0.05355295259080641 +51380,256.8999999998026,-0.053552521634374746 +51381,256.9049999998026,-0.05355209063026833 +51382,256.9099999998026,-0.05355165957843135 +51383,256.9149999998026,-0.053551228478808 +51384,256.9199999998026,-0.053550797331342395 +51385,256.9249999998026,-0.05355036613597862 +51386,256.9299999998026,-0.053549934892660744 +51387,256.9349999998026,-0.053549503601332774 +51388,256.9399999998026,-0.05354907226193869 +51389,256.9449999998026,-0.05354864087442243 +51390,256.94999999980257,-0.05354820943872792 +51391,256.95499999980257,-0.05354777795479903 +51392,256.95999999980256,-0.05354734642257958 +51393,256.96499999980256,-0.053546914842013384 +51394,256.96999999980255,-0.053546483213044185 +51395,256.97499999980255,-0.05354605153561573 +51396,256.97999999980254,-0.05354561980967169 +51397,256.98499999980254,-0.05354518803515572 +51398,256.98999999980254,-0.053544756212011435 +51399,256.99499999980253,-0.0535443243401824 +51400,256.9999999998025,-0.05354389241961217 +51401,257.0049999998025,-0.05354346045024424 +51402,257.0099999998025,-0.05354302843202207 +51403,257.0149999998025,-0.053542596364889096 +51404,257.0199999998025,-0.05354216424878871 +51405,257.0249999998025,-0.05354173208366426 +51406,257.0299999998025,-0.053541299869459054 +51407,257.0349999998025,-0.05354086760611638 +51408,257.0399999998025,-0.05354043529357948 +51409,257.0449999998025,-0.05354000293179155 +51410,257.0499999998025,-0.053539570520695766 +51411,257.0549999998025,-0.053539138060235233 +51412,257.05999999980247,-0.053538705550353075 +51413,257.06499999980247,-0.053538272990992314 +51414,257.06999999980246,-0.05353784038209598 +51415,257.07499999980246,-0.05353740772360706 +51416,257.07999999980245,-0.05353697501546849 +51417,257.08499999980245,-0.05353654225762315 +51418,257.08999999980244,-0.05353610945001393 +51419,257.09499999980244,-0.05353567659258364 +51420,257.09999999980244,-0.053535243685275076 +51421,257.10499999980243,-0.05353481072803099 +51422,257.1099999998024,-0.053534377720794085 +51423,257.1149999998024,-0.05353394466350704 +51424,257.1199999998024,-0.0535335115561125 +51425,257.1249999998024,-0.05353307839855304 +51426,257.1299999998024,-0.05353264519077125 +51427,257.1349999998024,-0.05353221193270963 +51428,257.1399999998024,-0.053531778624310675 +51429,257.1449999998024,-0.05353134526551682 +51430,257.1499999998024,-0.05353091185627048 +51431,257.1549999998024,-0.053530478396514015 +51432,257.1599999998024,-0.05353004488618976 +51433,257.1649999998024,-0.05352961132524 +51434,257.16999999980237,-0.05352917771360698 +51435,257.17499999980237,-0.05352874405123294 +51436,257.17999999980236,-0.05352831033806003 +51437,257.18499999980236,-0.05352787657403039 +51438,257.18999999980235,-0.05352744275908613 +51439,257.19499999980235,-0.053527008893169296 +51440,257.19999999980234,-0.05352657497622192 +51441,257.20499999980234,-0.053526141008185986 +51442,257.20999999980233,-0.05352570698900343 +51443,257.21499999980233,-0.05352527291861614 +51444,257.2199999998023,-0.05352483879696601 +51445,257.2249999998023,-0.05352440462399484 +51446,257.2299999998023,-0.053523970399644426 +51447,257.2349999998023,-0.05352353612385652 +51448,257.2399999998023,-0.05352310179657282 +51449,257.2449999998023,-0.05352266741773501 +51450,257.2499999998023,-0.053522232987284694 +51451,257.2549999998023,-0.05352179850516349 +51452,257.2599999998023,-0.053521363971312935 +51453,257.2649999998023,-0.05352092938567455 +51454,257.2699999998023,-0.05352049474818979 +51455,257.2749999998023,-0.0535200600588001 +51456,257.27999999980227,-0.05351962531744687 +51457,257.28499999980227,-0.05351919052407145 +51458,257.28999999980226,-0.053518755678615165 +51459,257.29499999980226,-0.053518320781019285 +51460,257.29999999980225,-0.053517885831225034 +51461,257.30499999980225,-0.05351745082917361 +51462,257.30999999980224,-0.053517015774806186 +51463,257.31499999980224,-0.053516580668063855 +51464,257.31999999980223,-0.05351614550888769 +51465,257.32499999980223,-0.053515710297218744 +51466,257.3299999998022,-0.05351527503299801 +51467,257.3349999998022,-0.05351483971616642 +51468,257.3399999998022,-0.05351440434666492 +51469,257.3449999998022,-0.053513968924434364 +51470,257.3499999998022,-0.053513533449415604 +51471,257.3549999998022,-0.053513097921549416 +51472,257.3599999998022,-0.053512662340776576 +51473,257.3649999998022,-0.05351222670703777 +51474,257.3699999998022,-0.05351179102027369 +51475,257.3749999998022,-0.05351135528042498 +51476,257.3799999998022,-0.05351091948743222 +51477,257.3849999998022,-0.05351048364123595 +51478,257.38999999980217,-0.0535100477417767 +51479,257.39499999980217,-0.05350961178899493 +51480,257.39999999980216,-0.05350917578283108 +51481,257.40499999980216,-0.053508739723225535 +51482,257.40999999980215,-0.05350830361011864 +51483,257.41499999980215,-0.05350786744345072 +51484,257.41999999980214,-0.05350743122316203 +51485,257.42499999980214,-0.0535069949491928 +51486,257.42999999980213,-0.05350655862148321 +51487,257.43499999980213,-0.053506122239973405 +51488,257.4399999998021,-0.053505685804603506 +51489,257.4449999998021,-0.05350524931531355 +51490,257.4499999998021,-0.05350481277204358 +51491,257.4549999998021,-0.05350437617473357 +51492,257.4599999998021,-0.053503939523323454 +51493,257.4649999998021,-0.05350350281775313 +51494,257.4699999998021,-0.05350306605796247 +51495,257.4749999998021,-0.05350262924389128 +51496,257.4799999998021,-0.053502192375479325 +51497,257.4849999998021,-0.05350175545266636 +51498,257.4899999998021,-0.05350131847539206 +51499,257.4949999998021,-0.05350088144359607 +51500,257.49999999980207,-0.05350044435721801 +51501,257.50499999980207,-0.053500007216197444 +51502,257.50999999980206,-0.0534995700204739 +51503,257.51499999980206,-0.05349913276998686 +51504,257.51999999980205,-0.05349869546467576 +51505,257.52499999980205,-0.05349825810448 +51506,257.52999999980204,-0.053497820689338955 +51507,257.53499999980204,-0.05349738321919192 +51508,257.53999999980203,-0.05349694569397818 +51509,257.54499999980203,-0.05349650811363695 +51510,257.549999999802,-0.05349607047810744 +51511,257.554999999802,-0.0534956327873288 +51512,257.559999999802,-0.053495195041240125 +51513,257.564999999802,-0.05349475723978047 +51514,257.569999999802,-0.05349431938288888 +51515,257.574999999802,-0.05349388147050432 +51516,257.579999999802,-0.05349344350256573 +51517,257.584999999802,-0.053493005479012 +51518,257.589999999802,-0.05349256739978199 +51519,257.594999999802,-0.05349212926481451 +51520,257.599999999802,-0.05349169107404832 +51521,257.604999999802,-0.05349125282742215 +51522,257.60999999980197,-0.05349081452487467 +51523,257.61499999980197,-0.05349037616634452 +51524,257.61999999980196,-0.053489937751770314 +51525,257.62499999980196,-0.05348949928109059 +51526,257.62999999980195,-0.05348906075424387 +51527,257.63499999980195,-0.053488622171168614 +51528,257.63999999980194,-0.05348818353180326 +51529,257.64499999980194,-0.05348774483608617 +51530,257.64999999980193,-0.05348730608395569 +51531,257.65499999980193,-0.053486867275350125 +51532,257.6599999998019,-0.053486428410207724 +51533,257.6649999998019,-0.05348598948846669 +51534,257.6699999998019,-0.0534855505100652 +51535,257.6749999998019,-0.053485111474941366 +51536,257.6799999998019,-0.05348467238303327 +51537,257.6849999998019,-0.05348423323427896 +51538,257.6899999998019,-0.053483794028616416 +51539,257.6949999998019,-0.05348335476598359 +51540,257.6999999998019,-0.053482915446318405 +51541,257.7049999998019,-0.0534824760695587 +51542,257.7099999998019,-0.053482036635642306 +51543,257.7149999998019,-0.053481597144506995 +51544,257.71999999980187,-0.0534811575960905 +51545,257.72499999980187,-0.0534807179903305 +51546,257.72999999980186,-0.053480278327164656 +51547,257.73499999980186,-0.05347983860653055 +51548,257.73999999980185,-0.05347939882836576 +51549,257.74499999980185,-0.053478958992607774 +51550,257.74999999980184,-0.05347851909919407 +51551,257.75499999980184,-0.053478079148062095 +51552,257.75999999980183,-0.05347763913914919 +51553,257.76499999980183,-0.05347719907239272 +51554,257.7699999998018,-0.05347675894772996 +51555,257.7749999998018,-0.053476318765098174 +51556,257.7799999998018,-0.05347587852443455 +51557,257.7849999998018,-0.05347543822567624 +51558,257.7899999998018,-0.053474997868760386 +51559,257.7949999998018,-0.05347455745362403 +51560,257.7999999998018,-0.05347411698020422 +51561,257.8049999998018,-0.053473676448437917 +51562,257.8099999998018,-0.05347323585826207 +51563,257.8149999998018,-0.053472795209613566 +51564,257.8199999998018,-0.05347235450242926 +51565,257.8249999998018,-0.053471913736645935 +51566,257.82999999980177,-0.053471472912200356 +51567,257.83499999980177,-0.053471032029029246 +51568,257.83999999980176,-0.053470591087069266 +51569,257.84499999980176,-0.05347015008625704 +51570,257.84999999980175,-0.05346970902652913 +51571,257.85499999980175,-0.05346926790782209 +51572,257.85999999980174,-0.053468826730072395 +51573,257.86499999980174,-0.05346838549321649 +51574,257.86999999980173,-0.05346794419719076 +51575,257.87499999980173,-0.05346750284193158 +51576,257.8799999998017,-0.05346706142737523 +51577,257.8849999998017,-0.05346661995345798 +51578,257.8899999998017,-0.05346617842011605 +51579,257.8949999998017,-0.053465736827285615 +51580,257.8999999998017,-0.053465295174902776 +51581,257.9049999998017,-0.05346485346290363 +51582,257.9099999998017,-0.05346441169122421 +51583,257.9149999998017,-0.053463969859800516 +51584,257.9199999998017,-0.05346352796856846 +51585,257.9249999998017,-0.05346308601746394 +51586,257.9299999998017,-0.053462644006422824 +51587,257.9349999998017,-0.053462201935380906 +51588,257.93999999980167,-0.05346175980427394 +51589,257.94499999980167,-0.053461317613037636 +51590,257.94999999980166,-0.053460875361607665 +51591,257.95499999980166,-0.053460433049919646 +51592,257.95999999980165,-0.05345999067790915 +51593,257.96499999980165,-0.0534595482455117 +51594,257.96999999980164,-0.05345910575266278 +51595,257.97499999980164,-0.05345866319929783 +51596,257.97999999980163,-0.05345822058535224 +51597,257.98499999980163,-0.05345777791076134 +51598,257.9899999998016,-0.05345733517546042 +51599,257.9949999998016,-0.053456892379384724 +51600,257.9999999998016,-0.05345644952246949 +51601,258.0049999998016,-0.05345600660464983 +51602,258.0099999998016,-0.053455563625860875 +51603,258.0149999998016,-0.05345512058603768 +51604,258.0199999998016,-0.05345467748511525 +51605,258.0249999998016,-0.05345423432302857 +51606,258.0299999998016,-0.053453791099712565 +51607,258.0349999998016,-0.05345334781510208 +51608,258.0399999998016,-0.053452904469131965 +51609,258.0449999998016,-0.05345246106173698 +51610,258.04999999980157,-0.053452017592851876 +51611,258.05499999980157,-0.05345157406241133 +51612,258.05999999980156,-0.05345113047034998 +51613,258.06499999980156,-0.053450686816602415 +51614,258.06999999980155,-0.05345024310110318 +51615,258.07499999980155,-0.05344979932378677 +51616,258.07999999980154,-0.05344935548458763 +51617,258.08499999980154,-0.05344891158344015 +51618,258.08999999980153,-0.05344846762027871 +51619,258.09499999980153,-0.053448023595037586 +51620,258.0999999998015,-0.053447579507651055 +51621,258.1049999998015,-0.053447135358053316 +51622,258.1099999998015,-0.05344669114617854 +51623,258.1149999998015,-0.053446246871960826 +51624,258.1199999998015,-0.05344580253533425 +51625,258.1249999998015,-0.05344535813623283 +51626,258.1299999998015,-0.053444913674590526 +51627,258.1349999998015,-0.053444469150341276 +51628,258.1399999998015,-0.053444024563418936 +51629,258.1449999998015,-0.053443579913757346 +51630,258.1499999998015,-0.05344313520129028 +51631,258.1549999998015,-0.053442690425951456 +51632,258.15999999980147,-0.05344224558767455 +51633,258.16499999980147,-0.05344180068639321 +51634,258.16999999980146,-0.05344135572204101 +51635,258.17499999980146,-0.053440910694551494 +51636,258.17999999980145,-0.05344046560385813 +51637,258.18499999980145,-0.053440020449894376 +51638,258.18999999980144,-0.053439575232593614 +51639,258.19499999980144,-0.053439129951889174 +51640,258.19999999980143,-0.05343868460771435 +51641,258.20499999980143,-0.05343823920000239 +51642,258.2099999998014,-0.05343779372868648 +51643,258.2149999998014,-0.053437348193699746 +51644,258.2199999998014,-0.05343690259497532 +51645,258.2249999998014,-0.05343645693244623 +51646,258.2299999998014,-0.05343601120604548 +51647,258.2349999998014,-0.053435565415705995 +51648,258.2399999998014,-0.0534351195613607 +51649,258.2449999998014,-0.05343467364294242 +51650,258.2499999998014,-0.05343422766038397 +51651,258.2549999998014,-0.053433781613618093 +51652,258.2599999998014,-0.05343333550257749 +51653,258.2649999998014,-0.05343288932719482 +51654,258.26999999980137,-0.053432443087402665 +51655,258.27499999980137,-0.05343199678313359 +51656,258.27999999980136,-0.053431550414320086 +51657,258.28499999980136,-0.05343110398089462 +51658,258.28999999980135,-0.053430657482789586 +51659,258.29499999980135,-0.053430210919937327 +51660,258.29999999980134,-0.05342976429227015 +51661,258.30499999980134,-0.053429317599720305 +51662,258.30999999980133,-0.05342887084221999 +51663,258.31499999980133,-0.05342842401970137 +51664,258.3199999998013,-0.05342797713209653 +51665,258.3249999998013,-0.053427530179337525 +51666,258.3299999998013,-0.053427083161356366 +51667,258.3349999998013,-0.05342663607808498 +51668,258.3399999998013,-0.0534261889294553 +51669,258.3449999998013,-0.05342574171539914 +51670,258.3499999998013,-0.053425294435848314 +51671,258.3549999998013,-0.05342484709073458 +51672,258.3599999998013,-0.053424399679989604 +51673,258.3649999998013,-0.05342395220354506 +51674,258.3699999998013,-0.053423504661332534 +51675,258.3749999998013,-0.05342305705328356 +51676,258.37999999980127,-0.05342260937932965 +51677,258.38499999980127,-0.053422161639402235 +51678,258.38999999980126,-0.05342171383343271 +51679,258.39499999980126,-0.0534212659613524 +51680,258.39999999980125,-0.05342081802309262 +51681,258.40499999980125,-0.053420370018584594 +51682,258.40999999980124,-0.05341992194775949 +51683,258.41499999980124,-0.05341947381054847 +51684,258.41999999980123,-0.0534190256068826 +51685,258.42499999980123,-0.05341857733669292 +51686,258.4299999998012,-0.05341812899991041 +51687,258.4349999998012,-0.053417680596466 +51688,258.4399999998012,-0.05341723212629057 +51689,258.4449999998012,-0.05341678358931493 +51690,258.4499999998012,-0.053416334985469875 +51691,258.4549999998012,-0.053415886314686106 +51692,258.4599999998012,-0.053415437576894306 +51693,258.4649999998012,-0.053414988772025086 +51694,258.4699999998012,-0.053414539900009 +51695,258.4749999998012,-0.053414090960776595 +51696,258.4799999998012,-0.053413641954258295 +51697,258.4849999998012,-0.05341319288038453 +51698,258.48999999980117,-0.053412743739085645 +51699,258.49499999980117,-0.05341229453029195 +51700,258.49999999980116,-0.05341184525393369 +51701,258.50499999980116,-0.05341139590994108 +51702,258.50999999980115,-0.05341094649824426 +51703,258.51499999980115,-0.05341049701877332 +51704,258.51999999980114,-0.0534100474714583 +51705,258.52499999980114,-0.0534095978562292 +51706,258.52999999980113,-0.05340914817301594 +51707,258.53499999980113,-0.05340869842174841 +51708,258.5399999998011,-0.053408248602356455 +51709,258.5449999998011,-0.053407798714769826 +51710,258.5499999998011,-0.05340734875891826 +51711,258.5549999998011,-0.053406898734731444 +51712,258.5599999998011,-0.05340644864213897 +51713,258.5649999998011,-0.053405998481070416 +51714,258.5699999998011,-0.053405548251455284 +51715,258.5749999998011,-0.053405097953223034 +51716,258.5799999998011,-0.053404647586303075 +51717,258.5849999998011,-0.053404197150624756 +51718,258.5899999998011,-0.053403746646117384 +51719,258.5949999998011,-0.053403296072710195 +51720,258.59999999980107,-0.053402845430332364 +51721,258.60499999980107,-0.053402394718913046 +51722,258.60999999980106,-0.053401943938381324 +51723,258.61499999980106,-0.053401493088666215 +51724,258.61999999980105,-0.05340104216969671 +51725,258.62499999980105,-0.053400591181401724 +51726,258.62999999980104,-0.05340014012371012 +51727,258.63499999980104,-0.05339968899655071 +51728,258.63999999980103,-0.05339923779985224 +51729,258.64499999980103,-0.05339878653354344 +51730,258.649999999801,-0.05339833519755295 +51731,258.654999999801,-0.05339788379180936 +51732,258.659999999801,-0.05339743231624121 +51733,258.664999999801,-0.053396980770776994 +51734,258.669999999801,-0.05339652915534514 +51735,258.674999999801,-0.053396077469874015 +51736,258.679999999801,-0.05339562571429197 +51737,258.684999999801,-0.05339517388852724 +51738,258.689999999801,-0.05339472199250807 +51739,258.694999999801,-0.05339427002616259 +51740,258.699999999801,-0.053393817989418925 +51741,258.704999999801,-0.053393365882205106 +51742,258.70999999980097,-0.05339291370444913 +51743,258.71499999980097,-0.053392461456078934 +51744,258.71999999980096,-0.05339200913702241 +51745,258.72499999980096,-0.05339155674720738 +51746,258.72999999980095,-0.053391104286561616 +51747,258.73499999980095,-0.05339065175501283 +51748,258.73999999980094,-0.05339019915248868 +51749,258.74499999980094,-0.053389746478916776 +51750,258.74999999980093,-0.05338929373422468 +51751,258.75499999980093,-0.05338884091833988 +51752,258.7599999998009,-0.05338838803118981 +51753,258.7649999998009,-0.053387935072701835 +51754,258.7699999998009,-0.053387482042803316 +51755,258.7749999998009,-0.053387028941421506 +51756,258.7799999998009,-0.05338657576848361 +51757,258.7849999998009,-0.053386122523916814 +51758,258.7899999998009,-0.053385669207648194 +51759,258.7949999998009,-0.05338521581960481 +51760,258.7999999998009,-0.05338476235971365 +51761,258.8049999998009,-0.053384308827901635 +51762,258.8099999998009,-0.05338385522409565 +51763,258.8149999998009,-0.05338340154822254 +51764,258.81999999980087,-0.053382947800209024 +51765,258.82499999980087,-0.05338249397998185 +51766,258.82999999980086,-0.05338204008746764 +51767,258.83499999980086,-0.05338158612259301 +51768,258.83999999980085,-0.05338113208528448 +51769,258.84499999980085,-0.053380677975468534 +51770,258.84999999980084,-0.05338022379307159 +51771,258.85499999980084,-0.053379769538020046 +51772,258.85999999980083,-0.05337931521024017 +51773,258.86499999980083,-0.053378860809658236 +51774,258.8699999998008,-0.05337840633620043 +51775,258.8749999998008,-0.05337795178979289 +51776,258.8799999998008,-0.05337749717036171 +51777,258.8849999998008,-0.053377042477832905 +51778,258.8899999998008,-0.05337658771213243 +51779,258.8949999998008,-0.05337613287318621 +51780,258.8999999998008,-0.053375677960920076 +51781,258.9049999998008,-0.05337522297525982 +51782,258.9099999998008,-0.053374767916131195 +51783,258.9149999998008,-0.05337431278345986 +51784,258.9199999998008,-0.05337385757717144 +51785,258.9249999998008,-0.05337340229719151 +51786,258.92999999980077,-0.05337294694344554 +51787,258.93499999980077,-0.053372491515858995 +51788,258.93999999980076,-0.05337203601435726 +51789,258.94499999980076,-0.05337158043886568 +51790,258.94999999980075,-0.05337112478930949 +51791,258.95499999980075,-0.05337066906561393 +51792,258.95999999980074,-0.05337021326770413 +51793,258.96499999980074,-0.05336975739550519 +51794,258.96999999980073,-0.053369301448942155 +51795,258.97499999980073,-0.05336884542793999 +51796,258.9799999998007,-0.05336838933242362 +51797,258.9849999998007,-0.053367933162317915 +51798,258.9899999998007,-0.05336747691754765 +51799,258.9949999998007,-0.053367020598037586 +51800,258.9999999998007,-0.0533665642037124 +51801,259.0049999998007,-0.05336610773449671 +51802,259.0099999998007,-0.053365651190315076 +51803,259.0149999998007,-0.05336519457109202 +51804,259.0199999998007,-0.05336473787675197 +51805,259.0249999998007,-0.05336428110721933 +51806,259.0299999998007,-0.053363824262418404 +51807,259.0349999998007,-0.053363367342273475 +51808,259.03999999980067,-0.053362910346708745 +51809,259.04499999980067,-0.05336245327564836 +51810,259.04999999980066,-0.053361996129016404 +51811,259.05499999980066,-0.053361538906736915 +51812,259.05999999980065,-0.05336108160873385 +51813,259.06499999980065,-0.053360624234931125 +51814,259.06999999980064,-0.053360166785252586 +51815,259.07499999980064,-0.053359709259622023 +51816,259.07999999980063,-0.05335925165796316 +51817,259.08499999980063,-0.05335879398019965 +51818,259.0899999998006,-0.05335833622625512 +51819,259.0949999998006,-0.05335787839605311 +51820,259.0999999998006,-0.05335742048951711 +51821,259.1049999998006,-0.05335696250657054 +51822,259.1099999998006,-0.05335650444713677 +51823,259.1149999998006,-0.05335604631113911 +51824,259.1199999998006,-0.05335558809850079 +51825,259.1249999998006,-0.053355129809145 +51826,259.1299999998006,-0.05335467144299484 +51827,259.1349999998006,-0.0533542129999734 +51828,259.1399999998006,-0.05335375448000367 +51829,259.1449999998006,-0.053353295883008585 +51830,259.14999999980057,-0.05335283720891103 +51831,259.15499999980057,-0.053352378457633805 +51832,259.15999999980056,-0.05335191962909967 +51833,259.16499999980056,-0.053351460723231325 +51834,259.16999999980055,-0.0533510017399514 +51835,259.17499999980055,-0.05335054267918247 +51836,259.17999999980054,-0.053350083540847026 +51837,259.18499999980054,-0.05334962432486752 +51838,259.18999999980053,-0.05334916503116635 +51839,259.19499999980053,-0.053348705659665825 +51840,259.1999999998005,-0.05334824621028821 +51841,259.2049999998005,-0.0533477866829557 +51842,259.2099999998005,-0.053347327077590434 +51843,259.2149999998005,-0.0533468673941145 +51844,259.2199999998005,-0.05334640763244988 +51845,259.2249999998005,-0.05334594779251854 +51846,259.2299999998005,-0.053345487874242384 +51847,259.2349999998005,-0.0533450278775432 +51848,259.2399999998005,-0.05334456780234278 +51849,259.2449999998005,-0.05334410764856281 +51850,259.2499999998005,-0.05334364741612494 +51851,259.2549999998005,-0.05334318710495073 +51852,259.25999999980047,-0.0533427267149617 +51853,259.26499999980047,-0.053342266246079295 +51854,259.26999999980046,-0.05334180569822489 +51855,259.27499999980046,-0.05334134507131982 +51856,259.27999999980045,-0.05334088436528535 +51857,259.28499999980045,-0.05334042358004266 +51858,259.28999999980044,-0.05333996271551288 +51859,259.29499999980044,-0.053339501771617094 +51860,259.29999999980043,-0.05333904074827629 +51861,259.30499999980043,-0.05333857964541143 +51862,259.3099999998004,-0.053338118462943375 +51863,259.3149999998004,-0.05333765720079295 +51864,259.3199999998004,-0.053337195858880894 +51865,259.3249999998004,-0.0533367344371279 +51866,259.3299999998004,-0.0533362729354546 +51867,259.3349999998004,-0.053335811353781536 +51868,259.3399999998004,-0.053335349692029216 +51869,259.3449999998004,-0.05333488795011806 +51870,259.3499999998004,-0.053334426127968446 +51871,259.3549999998004,-0.05333396422550065 +51872,259.3599999998004,-0.05333350224263494 +51873,259.3649999998004,-0.053333040179291476 +51874,259.36999999980037,-0.05333257803539037 +51875,259.37499999980037,-0.05333211581085166 +51876,259.37999999980036,-0.05333165350559533 +51877,259.38499999980036,-0.05333119111954129 +51878,259.38999999980035,-0.053330728652609384 +51879,259.39499999980035,-0.0533302661047194 +51880,259.39999999980034,-0.053329803475791054 +51881,259.40499999980034,-0.053329340765744006 +51882,259.40999999980033,-0.05332887797449785 +51883,259.41499999980033,-0.0533284151019721 +51884,259.4199999998003,-0.053327952148086215 +51885,259.4249999998003,-0.05332748911275958 +51886,259.4299999998003,-0.05332702599591154 +51887,259.4349999998003,-0.05332656279746135 +51888,259.4399999998003,-0.0533260995173282 +51889,259.4449999998003,-0.053325636155431226 +51890,259.4499999998003,-0.053325172711689475 +51891,259.4549999998003,-0.05332470918602197 +51892,259.4599999998003,-0.05332424557834762 +51893,259.4649999998003,-0.0533237818885853 +51894,259.4699999998003,-0.05332331811665383 +51895,259.4749999998003,-0.05332285426247191 +51896,259.47999999980027,-0.05332239032595822 +51897,259.48499999980027,-0.05332192630703138 +51898,259.48999999980026,-0.05332146220560989 +51899,259.49499999980026,-0.05332099802161224 +51900,259.49999999980025,-0.05332053375495683 +51901,259.50499999980025,-0.053320069405561984 +51902,259.50999999980024,-0.05331960497334597 +51903,259.51499999980024,-0.053319140458227 +51904,259.51999999980023,-0.05331867586012319 +51905,259.52499999980023,-0.05331821117895262 +51906,259.5299999998002,-0.05331774641463329 +51907,259.5349999998002,-0.05331728156708313 +51908,259.5399999998002,-0.053316816636219996 +51909,259.5449999998002,-0.0533163516219617 +51910,259.5499999998002,-0.05331588652422596 +51911,259.5549999998002,-0.053315421342930436 +51912,259.5599999998002,-0.053314956077992734 +51913,259.5649999998002,-0.05331449072933037 +51914,259.5699999998002,-0.05331402529686081 +51915,259.5749999998002,-0.05331355978050144 +51916,259.5799999998002,-0.053313094180169586 +51917,259.5849999998002,-0.05331262849578249 +51918,259.58999999980017,-0.05331216272725736 +51919,259.59499999980017,-0.0533116968745113 +51920,259.59999999980016,-0.05331123093746136 +51921,259.60499999980016,-0.053310764916024524 +51922,259.60999999980015,-0.053310298810117715 +51923,259.61499999980015,-0.05330983261965777 +51924,259.61999999980014,-0.05330936634456145 +51925,259.62499999980014,-0.05330889998474549 +51926,259.62999999980013,-0.053308433540126515 +51927,259.63499999980013,-0.0533079670106211 +51928,259.6399999998001,-0.05330750039614573 +51929,259.6449999998001,-0.053307033696616844 +51930,259.6499999998001,-0.05330656691195081 +51931,259.6549999998001,-0.05330610004206392 +51932,259.6599999998001,-0.05330563308687239 +51933,259.6649999998001,-0.053305166046292374 +51934,259.6699999998001,-0.05330469892023996 +51935,259.6749999998001,-0.05330423170863117 +51936,259.6799999998001,-0.05330376441138193 +51937,259.6849999998001,-0.053303297028408136 +51938,259.6899999998001,-0.05330282955962559 +51939,259.6949999998001,-0.053302362004950025 +51940,259.69999999980007,-0.0533018943642971 +51941,259.70499999980007,-0.05330142663758241 +51942,259.70999999980006,-0.053300958824721495 +51943,259.71499999980006,-0.05330049092562979 +51944,259.71999999980005,-0.053300022940222694 +51945,259.72499999980005,-0.05329955486841551 +51946,259.72999999980004,-0.05329908671012349 +51947,259.73499999980004,-0.053298618465261814 +51948,259.73999999980003,-0.053298150133745566 +51949,259.74499999980003,-0.053297681715489785 +51950,259.7499999998,-0.05329721321040944 +51951,259.7549999998,-0.05329674461841941 +51952,259.7599999998,-0.053296275939434506 +51953,259.7649999998,-0.0532958071733695 +51954,259.7699999998,-0.05329533832013904 +51955,259.7749999998,-0.05329486937965776 +51956,259.7799999998,-0.05329440035184017 +51957,259.7849999998,-0.05329393123660073 +51958,259.7899999998,-0.05329346203385384 +51959,259.7949999998,-0.053292992743513824 +51960,259.7999999998,-0.053292523365494913 +51961,259.8049999998,-0.05329205389971129 +51962,259.80999999979997,-0.05329158434607706 +51963,259.81499999979997,-0.053291114704506246 +51964,259.81999999979996,-0.05329064497491281 +51965,259.82499999979996,-0.05329017515721064 +51966,259.82999999979995,-0.05328970525131355 +51967,259.83499999979995,-0.053289235257135276 +51968,259.83999999979994,-0.053288765174589504 +51969,259.84499999979994,-0.05328829500358981 +51970,259.84999999979993,-0.053287824744049715 +51971,259.85499999979993,-0.05328735439588269 +51972,259.8599999997999,-0.0532868839590021 +51973,259.8649999997999,-0.053286413433321245 +51974,259.8699999997999,-0.05328594281875337 +51975,259.8749999997999,-0.05328547211521162 +51976,259.8799999997999,-0.05328500132260909 +51977,259.8849999997999,-0.05328453044085879 +51978,259.8899999997999,-0.053284059469873656 +51979,259.8949999997999,-0.05328358840956656 +51980,259.8999999997999,-0.053283117259850285 +51981,259.9049999997999,-0.05328264602063756 +51982,259.9099999997999,-0.05328217469184101 +51983,259.9149999997999,-0.05328170327337323 +51984,259.91999999979987,-0.05328123176514669 +51985,259.92499999979987,-0.05328076016707382 +51986,259.92999999979986,-0.05328028847906698 +51987,259.93499999979986,-0.05327981670103844 +51988,259.93999999979985,-0.053279344832900394 +51989,259.94499999979985,-0.05327887287456497 +51990,259.94999999979984,-0.05327840082594422 +51991,259.95499999979984,-0.05327792868695012 +51992,259.95999999979983,-0.053277456457494564 +51993,259.96499999979983,-0.05327698413748938 +51994,259.9699999997998,-0.053276511726846325 +51995,259.9749999997998,-0.053276039225477065 +51996,259.9799999997998,-0.05327556663329321 +51997,259.9849999997998,-0.0532750939502063 +51998,259.9899999997998,-0.05327462117612775 +51999,259.9949999997998,-0.053274148310968966 +52000,259.9999999997998,-0.05327367535464124 +52001,260.0049999997998,-0.053273202307055796 +52002,260.0099999997998,-0.05327272916812378 +52003,260.0149999997998,-0.05327225593775626 +52004,260.0199999997998,-0.05327178261586424 +52005,260.0249999997998,-0.05327130920235864 +52006,260.02999999979977,-0.053270835697150305 +52007,260.03499999979977,-0.05327036210015001 +52008,260.03999999979976,-0.05326988841126844 +52009,260.04499999979976,-0.053269414630416206 +52010,260.04999999979975,-0.05326894075750386 +52011,260.05499999979975,-0.053268466792441856 +52012,260.05999999979974,-0.053267992735140594 +52013,260.06499999979974,-0.053267518585510376 +52014,260.06999999979973,-0.05326704434346144 +52015,260.07499999979973,-0.053266570008903925 +52016,260.0799999997997,-0.053266095581747934 +52017,260.0849999997997,-0.05326562106190345 +52018,260.0899999997997,-0.05326514644928041 +52019,260.0949999997997,-0.053264671743788655 +52020,260.0999999997997,-0.05326419694533796 +52021,260.1049999997997,-0.053263722053838024 +52022,260.1099999997997,-0.05326324706919846 +52023,260.1149999997997,-0.05326277199132879 +52024,260.1199999997997,-0.053262296820138486 +52025,260.1249999997997,-0.053261821555536944 +52026,260.1299999997997,-0.05326134619743344 +52027,260.1349999997997,-0.053260870745737224 +52028,260.13999999979967,-0.05326039520035742 +52029,260.14499999979967,-0.05325991956120312 +52030,260.14999999979966,-0.05325944382818331 +52031,260.15499999979966,-0.053258968001206886 +52032,260.15999999979965,-0.05325849208018269 +52033,260.16499999979965,-0.05325801606501949 +52034,260.16999999979964,-0.05325753995562596 +52035,260.17499999979964,-0.053257063751910694 +52036,260.17999999979963,-0.0532565874537822 +52037,260.18499999979963,-0.05325611106114894 +52038,260.1899999997996,-0.05325563457391927 +52039,260.1949999997996,-0.05325515799200146 +52040,260.1999999997996,-0.05325468131530371 +52041,260.2049999997996,-0.05325420454373416 +52042,260.2099999997996,-0.05325372767720083 +52043,260.2149999997996,-0.0532532507156117 +52044,260.2199999997996,-0.053252773658874646 +52045,260.2249999997996,-0.05325229650689748 +52046,260.2299999997996,-0.05325181925958792 +52047,260.2349999997996,-0.05325134191685361 +52048,260.2399999997996,-0.05325086447860211 +52049,260.2449999997996,-0.053250386944740914 +52050,260.24999999979957,-0.0532499093151774 +52051,260.25499999979957,-0.05324943158981893 +52052,260.25999999979956,-0.05324895376857272 +52053,260.26499999979956,-0.05324847585134593 +52054,260.26999999979955,-0.05324799783804565 +52055,260.27499999979955,-0.05324751972857888 +52056,260.27999999979954,-0.05324704152285253 +52057,260.28499999979954,-0.05324656322077344 +52058,260.28999999979953,-0.053246084822248366 +52059,260.29499999979953,-0.05324560632718398 +52060,260.2999999997995,-0.05324512773548689 +52061,260.3049999997995,-0.05324464904706359 +52062,260.3099999997995,-0.05324417026182052 +52063,260.3149999997995,-0.05324369137966403 +52064,260.3199999997995,-0.05324321240050038 +52065,260.3249999997995,-0.05324273332423576 +52066,260.3299999997995,-0.053242254150776276 +52067,260.3349999997995,-0.05324177488002793 +52068,260.3399999997995,-0.05324129551189668 +52069,260.3449999997995,-0.053240816046288386 +52070,260.3499999997995,-0.05324033648310881 +52071,260.3549999997995,-0.05323985682226365 +52072,260.35999999979947,-0.05323937706365851 +52073,260.36499999979947,-0.053238897207198904 +52074,260.36999999979946,-0.0532384172527903 +52075,260.37499999979946,-0.05323793720033804 +52076,260.37999999979945,-0.05323745704974741 +52077,260.38499999979945,-0.05323697680092359 +52078,260.38999999979944,-0.05323649645377171 +52079,260.39499999979944,-0.05323601600819679 +52080,260.39999999979943,-0.05323553546410376 +52081,260.40499999979943,-0.053235054821397496 +52082,260.4099999997994,-0.05323457407998276 +52083,260.4149999997994,-0.05323409323976427 +52084,260.4199999997994,-0.0532336123006466 +52085,260.4249999997994,-0.0532331312625343 +52086,260.4299999997994,-0.0532326501253318 +52087,260.4349999997994,-0.053232168888943464 +52088,260.4399999997994,-0.05323168755327356 +52089,260.4449999997994,-0.05323120611822627 +52090,260.4499999997994,-0.05323072458370571 +52091,260.4549999997994,-0.05323024294961588 +52092,260.4599999997994,-0.05322976121586073 +52093,260.4649999997994,-0.05322927938234409 +52094,260.46999999979937,-0.05322879744896973 +52095,260.47499999979937,-0.05322831541564133 +52096,260.47999999979936,-0.05322783328226249 +52097,260.48499999979936,-0.05322735104873672 +52098,260.48999999979935,-0.05322686871496742 +52099,260.49499999979935,-0.053226386280857955 +52100,260.49999999979934,-0.053225903746311545 +52101,260.50499999979934,-0.05322542111123139 +52102,260.50999999979933,-0.05322493837552054 +52103,260.51499999979933,-0.053224455539082005 +52104,260.5199999997993,-0.05322397260181867 +52105,260.5249999997993,-0.05322348956363338 +52106,260.5299999997993,-0.05322300642442886 +52107,260.5349999997993,-0.05322252318410776 +52108,260.5399999997993,-0.05322203984257264 +52109,260.5449999997993,-0.053221556399725985 +52110,260.5499999997993,-0.05322107285547017 +52111,260.5549999997993,-0.0532205892097075 +52112,260.5599999997993,-0.053220105462340184 +52113,260.5649999997993,-0.05321962161327037 +52114,260.5699999997993,-0.05321913766240007 +52115,260.5749999997993,-0.05321865360963126 +52116,260.57999999979927,-0.0532181694548658 +52117,260.58499999979927,-0.05321768519800545 +52118,260.58999999979926,-0.05321720083895193 +52119,260.59499999979926,-0.05321671637760682 +52120,260.59999999979925,-0.05321623181387163 +52121,260.60499999979925,-0.053215747147647804 +52122,260.60999999979924,-0.05321526237883667 +52123,260.61499999979924,-0.05321477750733948 +52124,260.61999999979923,-0.05321429253305741 +52125,260.62499999979923,-0.0532138074558915 +52126,260.6299999997992,-0.053213322275742755 +52127,260.6349999997992,-0.05321283699251208 +52128,260.6399999997992,-0.05321235160610027 +52129,260.6449999997992,-0.053211866116408046 +52130,260.6499999997992,-0.05321138052333604 +52131,260.6549999997992,-0.05321089482678478 +52132,260.6599999997992,-0.053210409026654734 +52133,260.6649999997992,-0.053209923122846246 +52134,260.6699999997992,-0.053209437115259606 +52135,260.6749999997992,-0.05320895100379498 +52136,260.6799999997992,-0.05320846478835247 +52137,260.6849999997992,-0.05320797846883208 +52138,260.68999999979917,-0.05320749204513372 +52139,260.69499999979917,-0.053207005517157215 +52140,260.69999999979916,-0.05320651888480228 +52141,260.70499999979916,-0.053206032147968575 +52142,260.70999999979915,-0.05320554530655565 +52143,260.71499999979915,-0.05320505836046297 +52144,260.71999999979914,-0.053204571309589895 +52145,260.72499999979914,-0.05320408415383571 +52146,260.72999999979913,-0.0532035968930996 +52147,260.73499999979913,-0.053203109527280676 +52148,260.7399999997991,-0.05320262205627793 +52149,260.7449999997991,-0.05320213447999028 +52150,260.7499999997991,-0.05320164679831655 +52151,260.7549999997991,-0.053201159011155484 +52152,260.7599999997991,-0.05320067111840571 +52153,260.7649999997991,-0.053200183119965785 +52154,260.7699999997991,-0.05319969501573416 +52155,260.7749999997991,-0.05319920680560921 +52156,260.7799999997991,-0.0531987184894892 +52157,260.7849999997991,-0.053198230067272305 +52158,260.7899999997991,-0.05319774153885662 +52159,260.7949999997991,-0.053197252904140145 +52160,260.79999999979907,-0.05319676416302079 +52161,260.80499999979907,-0.05319627531539635 +52162,260.80999999979906,-0.05319578636116455 +52163,260.81499999979906,-0.053195297300223036 +52164,260.81999999979905,-0.05319480813246931 +52165,260.82499999979905,-0.05319431885780083 +52166,260.82999999979904,-0.05319382947611493 +52167,260.83499999979904,-0.05319333998730886 +52168,260.83999999979903,-0.05319285039127979 +52169,260.84499999979903,-0.05319236068792479 +52170,260.849999999799,-0.053191870877140814 +52171,260.854999999799,-0.05319138095882475 +52172,260.859999999799,-0.05319089093287339 +52173,260.864999999799,-0.053190400799183406 +52174,260.869999999799,-0.053189910557651404 +52175,260.874999999799,-0.05318942020817389 +52176,260.879999999799,-0.05318892975064725 +52177,260.884999999799,-0.05318843918496782 +52178,260.889999999799,-0.053187948511031806 +52179,260.894999999799,-0.05318745772873532 +52180,260.899999999799,-0.053186966837974414 +52181,260.904999999799,-0.053186475838645 +52182,260.90999999979897,-0.05318598473064291 +52183,260.91499999979897,-0.0531854935138639 +52184,260.91999999979896,-0.053185002188203614 +52185,260.92499999979896,-0.05318451075355759 +52186,260.92999999979895,-0.053184019209821305 +52187,260.93499999979895,-0.0531835275568901 +52188,260.93999999979894,-0.05318303579465923 +52189,260.94499999979894,-0.053182543923023885 +52190,260.94999999979893,-0.053182051941879124 +52191,260.95499999979893,-0.053181559851119914 +52192,260.9599999997989,-0.053181067650641144 +52193,260.9649999997989,-0.053180575340337585 +52194,260.9699999997989,-0.05318008292010391 +52195,260.9749999997989,-0.05317959038983473 +52196,260.9799999997989,-0.05317909774942453 +52197,260.9849999997989,-0.0531786049987677 +52198,260.9899999997989,-0.05317811213775853 +52199,260.9949999997989,-0.053177619166291226 +52200,260.9999999997989,-0.05317712608425988 +52201,261.0049999997989,-0.0531766328915585 +52202,261.0099999997989,-0.053176139588080984 +52203,261.0149999997989,-0.05317564617372115 +52204,261.01999999979887,-0.053175152648372706 +52205,261.02499999979887,-0.05317465901192925 +52206,261.02999999979886,-0.05317416526428431 +52207,261.03499999979886,-0.05317367140533131 +52208,261.03999999979885,-0.05317317743496353 +52209,261.04499999979885,-0.05317268335307422 +52210,261.04999999979884,-0.05317218915955648 +52211,261.05499999979884,-0.05317169485430334 +52212,261.05999999979883,-0.0531712004372077 +52213,261.06499999979883,-0.053170705908162405 +52214,261.0699999997988,-0.05317021126706017 +52215,261.0749999997988,-0.05316971651379362 +52216,261.0799999997988,-0.05316922164825526 +52217,261.0849999997988,-0.053168726670337535 +52218,261.0899999997988,-0.05316823157993275 +52219,261.0949999997988,-0.05316773637693314 +52220,261.0999999997988,-0.05316724106123083 +52221,261.1049999997988,-0.053166745632717824 +52222,261.1099999997988,-0.05316625009128606 +52223,261.1149999997988,-0.053165754436827355 +52224,261.1199999997988,-0.05316525866923344 +52225,261.1249999997988,-0.05316476278839592 +52226,261.12999999979877,-0.053164266794206314 +52227,261.13499999979877,-0.05316377068655605 +52228,261.13999999979876,-0.053163274465336446 +52229,261.14499999979876,-0.05316277813043871 +52230,261.14999999979875,-0.05316228168175395 +52231,261.15499999979875,-0.0531617851191732 +52232,261.15999999979874,-0.053161288442587364 +52233,261.16499999979874,-0.05316079165188724 +52234,261.16999999979873,-0.05316029474696353 +52235,261.17499999979873,-0.05315979772770686 +52236,261.1799999997987,-0.05315930059400772 +52237,261.1849999997987,-0.05315880334575651 +52238,261.1899999997987,-0.05315830598284353 +52239,261.1949999997987,-0.05315780850515897 +52240,261.1999999997987,-0.05315731091259294 +52241,261.2049999997987,-0.05315681320503541 +52242,261.2099999997987,-0.053156315382376265 +52243,261.2149999997987,-0.05315581744450529 +52244,261.2199999997987,-0.05315531939131218 +52245,261.2249999997987,-0.05315482122268649 +52246,261.2299999997987,-0.05315432293851771 +52247,261.2349999997987,-0.05315382453869519 +52248,261.23999999979867,-0.05315332602310821 +52249,261.24499999979867,-0.05315282739164593 +52250,261.24999999979866,-0.053152328644197396 +52251,261.25499999979866,-0.05315182978065157 +52252,261.25999999979865,-0.053151330800897297 +52253,261.26499999979865,-0.05315083170482332 +52254,261.26999999979864,-0.05315033249231827 +52255,261.27499999979864,-0.05314983316327069 +52256,261.27999999979863,-0.05314933371756901 +52257,261.28499999979863,-0.05314883415510154 +52258,261.2899999997986,-0.053148334475756516 +52259,261.2949999997986,-0.05314783467942204 +52260,261.2999999997986,-0.053147334765986105 +52261,261.3049999997986,-0.05314683473533663 +52262,261.3099999997986,-0.0531463345873614 +52263,261.3149999997986,-0.05314583432194812 +52264,261.3199999997986,-0.05314533393898435 +52265,261.3249999997986,-0.05314483343835758 +52266,261.3299999997986,-0.05314433281995518 +52267,261.3349999997986,-0.053143832083664425 +52268,261.3399999997986,-0.053143331229372454 +52269,261.3449999997986,-0.05314283025696632 +52270,261.34999999979857,-0.05314232916633297 +52271,261.35499999979857,-0.05314182795735924 +52272,261.35999999979856,-0.05314132662993185 +52273,261.36499999979856,-0.05314082518393744 +52274,261.36999999979855,-0.053140323619262506 +52275,261.37499999979855,-0.05313982193579347 +52276,261.37999999979854,-0.05313932013341661 +52277,261.38499999979854,-0.05313881821201812 +52278,261.38999999979853,-0.05313831617148411 +52279,261.39499999979853,-0.053137814011700514 +52280,261.3999999997985,-0.05313731173255323 +52281,261.4049999997985,-0.05313680933392799 +52282,261.4099999997985,-0.05313630681571046 +52283,261.4149999997985,-0.053135804177786156 +52284,261.4199999997985,-0.05313530142004053 +52285,261.4249999997985,-0.0531347985423589 +52286,261.4299999997985,-0.05313429554462645 +52287,261.4349999997985,-0.05313379242672832 +52288,261.4399999997985,-0.05313328918854948 +52289,261.4449999997985,-0.05313278582997482 +52290,261.4499999997985,-0.05313228235088911 +52291,261.4549999997985,-0.05313177875117701 +52292,261.45999999979847,-0.053131275030723076 +52293,261.46499999979847,-0.05313077118941175 +52294,261.46999999979846,-0.05313026722712736 +52295,261.47499999979846,-0.05312976314375414 +52296,261.47999999979845,-0.053129258939176166 +52297,261.48499999979845,-0.05312875461327748 +52298,261.48999999979844,-0.053128250165941936 +52299,261.49499999979844,-0.05312774559705332 +52300,261.49999999979843,-0.0531272409064953 +52301,261.50499999979843,-0.05312673609415144 +52302,261.5099999997984,-0.053126231159905175 +52303,261.5149999997984,-0.053125726103639824 +52304,261.5199999997984,-0.05312522092523861 +52305,261.5249999997984,-0.05312471562458465 +52306,261.5299999997984,-0.053124210201560926 +52307,261.5349999997984,-0.053123704656050326 +52308,261.5399999997984,-0.05312319898793561 +52309,261.5449999997984,-0.05312269319709944 +52310,261.5499999997984,-0.053122187283424355 +52311,261.5549999997984,-0.05312168124679279 +52312,261.5599999997984,-0.05312117508708705 +52313,261.5649999997984,-0.053120668804189364 +52314,261.56999999979837,-0.0531201623979818 +52315,261.57499999979837,-0.05311965586834633 +52316,261.57999999979836,-0.05311914921516483 +52317,261.58499999979836,-0.05311864243831903 +52318,261.58999999979835,-0.05311813553769059 +52319,261.59499999979835,-0.05311762851316101 +52320,261.59999999979834,-0.053117121364611705 +52321,261.60499999979834,-0.05311661409192397 +52322,261.60999999979833,-0.05311610669497895 +52323,261.61499999979833,-0.05311559917365774 +52324,261.6199999997983,-0.053115091527841274 +52325,261.6249999997983,-0.05311458375741037 +52326,261.6299999997983,-0.05311407586224576 +52327,261.6349999997983,-0.05311356784222804 +52328,261.6399999997983,-0.05311305969723769 +52329,261.6449999997983,-0.05311255142715508 +52330,261.6499999997983,-0.05311204303186047 +52331,261.6549999997983,-0.053111534511233974 +52332,261.6599999997983,-0.05311102586515563 +52333,261.6649999997983,-0.053110517093505324 +52334,261.6699999997983,-0.053110008196162864 +52335,261.6749999997983,-0.053109499173007904 +52336,261.67999999979827,-0.053108990023920014 +52337,261.68499999979826,-0.05310848074877861 +52338,261.68999999979826,-0.05310797134746301 +52339,261.69499999979826,-0.05310746181985243 +52340,261.69999999979825,-0.05310695216582595 +52341,261.70499999979825,-0.05310644238526251 +52342,261.70999999979824,-0.053105932478041 +52343,261.71499999979824,-0.053105422444040117 +52344,261.71999999979823,-0.053104912283138475 +52345,261.72499999979823,-0.05310440199521457 +52346,261.7299999997982,-0.05310389158014679 +52347,261.7349999997982,-0.05310338103781338 +52348,261.7399999997982,-0.05310287036809247 +52349,261.7449999997982,-0.05310235957086208 +52350,261.7499999997982,-0.05310184864600011 +52351,261.7549999997982,-0.05310133759338433 +52352,261.7599999997982,-0.05310082641289242 +52353,261.7649999997982,-0.0531003151044019 +52354,261.7699999997982,-0.0530998036677902 +52355,261.7749999997982,-0.05309929210293461 +52356,261.7799999997982,-0.05309878040971232 +52357,261.7849999997982,-0.05309826858800038 +52358,261.78999999979817,-0.05309775663767573 +52359,261.79499999979816,-0.05309724455861519 +52360,261.79999999979816,-0.05309673235069546 +52361,261.80499999979816,-0.05309622001379312 +52362,261.80999999979815,-0.0530957075477846 +52363,261.81499999979815,-0.053095194952546255 +52364,261.81999999979814,-0.053094682227954285 +52365,261.82499999979814,-0.05309416937388478 +52366,261.82999999979813,-0.053093656390213725 +52367,261.83499999979813,-0.05309314327681695 +52368,261.8399999997981,-0.05309263003357019 +52369,261.8449999997981,-0.053092116660349034 +52370,261.8499999997981,-0.053091603157028974 +52371,261.8549999997981,-0.05309108952348535 +52372,261.8599999997981,-0.05309057575959341 +52373,261.8649999997981,-0.05309006186522825 +52374,261.8699999997981,-0.05308954784026487 +52375,261.8749999997981,-0.053089033684578124 +52376,261.8799999997981,-0.053088519398042766 +52377,261.8849999997981,-0.053088004980533385 +52378,261.8899999997981,-0.0530874904319245 +52379,261.8949999997981,-0.05308697575209047 +52380,261.89999999979807,-0.05308646094090554 +52381,261.90499999979806,-0.05308594599824383 +52382,261.90999999979806,-0.05308543092397933 +52383,261.91499999979806,-0.05308491571798591 +52384,261.91999999979805,-0.05308440038013733 +52385,261.92499999979805,-0.05308388491030719 +52386,261.92999999979804,-0.053083369308369 +52387,261.93499999979804,-0.05308285357419612 +52388,261.93999999979803,-0.05308233770766181 +52389,261.94499999979803,-0.05308182170863917 +52390,261.949999999798,-0.053081305577001206 +52391,261.954999999798,-0.053080789312620766 +52392,261.959999999798,-0.053080272915370603 +52393,261.964999999798,-0.053079756385123335 +52394,261.969999999798,-0.05307923972175144 +52395,261.974999999798,-0.05307872292512727 +52396,261.979999999798,-0.05307820599512307 +52397,261.984999999798,-0.05307768893161095 +52398,261.989999999798,-0.05307717173446288 +52399,261.994999999798,-0.05307665440355071 +52400,261.999999999798,-0.05307613693874616 +52401,262.004999999798,-0.05307561933992083 +52402,262.00999999979797,-0.05307510160694621 +52403,262.01499999979796,-0.05307458373969359 +52404,262.01999999979796,-0.05307406573803422 +52405,262.02499999979796,-0.05307354760183917 +52406,262.02999999979795,-0.053073029330979384 +52407,262.03499999979795,-0.0530725109253257 +52408,262.03999999979794,-0.053071992384748815 +52409,262.04499999979794,-0.05307147370911928 +52410,262.04999999979793,-0.05307095489830752 +52411,262.05499999979793,-0.05307043595218387 +52412,262.0599999997979,-0.0530699168706185 +52413,262.0649999997979,-0.05306939765348145 +52414,262.0699999997979,-0.05306887830064262 +52415,262.0749999997979,-0.05306835881197183 +52416,262.0799999997979,-0.05306783918733872 +52417,262.0849999997979,-0.053067319426612816 +52418,262.0899999997979,-0.0530667995296635 +52419,262.0949999997979,-0.05306627949636004 +52420,262.0999999997979,-0.05306575932657158 +52421,262.1049999997979,-0.0530652390201671 +52422,262.1099999997979,-0.05306471857701549 +52423,262.1149999997979,-0.05306419799698546 +52424,262.11999999979787,-0.05306367727994564 +52425,262.12499999979786,-0.05306315642576448 +52426,262.12999999979786,-0.05306263543431032 +52427,262.13499999979786,-0.05306211430545139 +52428,262.13999999979785,-0.05306159303905575 +52429,262.14499999979785,-0.05306107163499134 +52430,262.14999999979784,-0.05306055009312597 +52431,262.15499999979784,-0.053060028413327305 +52432,262.15999999979783,-0.053059506595462894 +52433,262.16499999979783,-0.053058984639400154 +52434,262.1699999997978,-0.05305846254500634 +52435,262.1749999997978,-0.0530579403121486 +52436,262.1799999997978,-0.05305741794069394 +52437,262.1849999997978,-0.05305689543050923 +52438,262.1899999997978,-0.053056372781461206 +52439,262.1949999997978,-0.053055849993416476 +52440,262.1999999997978,-0.05305532706624149 +52441,262.2049999997978,-0.053054803999802586 +52442,262.2099999997978,-0.05305428079396596 +52443,262.2149999997978,-0.05305375744859768 +52444,262.2199999997978,-0.05305323396356366 +52445,262.2249999997978,-0.053052710338729686 +52446,262.22999999979777,-0.05305218657396141 +52447,262.23499999979776,-0.05305166266912435 +52448,262.23999999979776,-0.05305113862408389 +52449,262.24499999979776,-0.05305061443870527 +52450,262.24999999979775,-0.05305009011285358 +52451,262.25499999979775,-0.05304956564639382 +52452,262.25999999979774,-0.05304904103919078 +52453,262.26499999979774,-0.053048516291109196 +52454,262.26999999979773,-0.05304799140201359 +52455,262.2749999997977,-0.053047466371768395 +52456,262.2799999997977,-0.05304694120023788 +52457,262.2849999997977,-0.0530464158872862 +52458,262.2899999997977,-0.053045890432777354 +52459,262.2949999997977,-0.0530453648365752 +52460,262.2999999997977,-0.053044839098543475 +52461,262.3049999997977,-0.053044313218545754 +52462,262.3099999997977,-0.05304378719644548 +52463,262.3149999997977,-0.05304326103210597 +52464,262.3199999997977,-0.05304273472539039 +52465,262.3249999997977,-0.05304220827616176 +52466,262.3299999997977,-0.05304168168428298 +52467,262.3349999997977,-0.05304115494961678 +52468,262.33999999979767,-0.05304062807202578 +52469,262.34499999979766,-0.05304010105137245 +52470,262.34999999979766,-0.05303957388751911 +52471,262.35499999979766,-0.05303904658032795 +52472,262.35999999979765,-0.053038519129660996 +52473,262.36499999979765,-0.05303799153538017 +52474,262.36999999979764,-0.053037463797347216 +52475,262.37499999979764,-0.05303693591542376 +52476,262.37999999979763,-0.05303640788947128 +52477,262.3849999997976,-0.0530358797193511 +52478,262.3899999997976,-0.05303535140492443 +52479,262.3949999997976,-0.0530348229460523 +52480,262.3999999997976,-0.05303429434259563 +52481,262.4049999997976,-0.05303376559441517 +52482,262.4099999997976,-0.05303323670137155 +52483,262.4149999997976,-0.05303270766332524 +52484,262.4199999997976,-0.05303217848013657 +52485,262.4249999997976,-0.053031649151665736 +52486,262.4299999997976,-0.05303111967777276 +52487,262.4349999997976,-0.05303059005831759 +52488,262.4399999997976,-0.05303006029315994 +52489,262.4449999997976,-0.05302953038215942 +52490,262.44999999979757,-0.05302900032517553 +52491,262.45499999979756,-0.05302847012206756 +52492,262.45999999979756,-0.05302793977269471 +52493,262.46499999979756,-0.05302740927691599 +52494,262.46999999979755,-0.05302687863459029 +52495,262.47499999979755,-0.05302634784557635 +52496,262.47999999979754,-0.05302581690973277 +52497,262.48499999979754,-0.053025285826917984 +52498,262.48999999979753,-0.05302475459699028 +52499,262.4949999997975,-0.05302422321980784 +52500,262.4999999997975,-0.05302369169522865 +52501,262.5049999997975,-0.053023160023110576 +52502,262.5099999997975,-0.05302262820331133 +52503,262.5149999997975,-0.053022096235688466 +52504,262.5199999997975,-0.0530215641200994 +52505,262.5249999997975,-0.05302103185640141 +52506,262.5299999997975,-0.05302049944445162 +52507,262.5349999997975,-0.05301996688410698 +52508,262.5399999997975,-0.05301943417522433 +52509,262.5449999997975,-0.053018901317660336 +52510,262.5499999997975,-0.05301836831127153 +52511,262.5549999997975,-0.053017835155914274 +52512,262.55999999979747,-0.0530173018514448 +52513,262.56499999979746,-0.053016768397719176 +52514,262.56999999979746,-0.053016234794593345 +52515,262.57499999979746,-0.05301570104192307 +52516,262.57999999979745,-0.05301516713956397 +52517,262.58499999979745,-0.05301463308737154 +52518,262.58999999979744,-0.053014098885201096 +52519,262.59499999979744,-0.05301356453290779 +52520,262.59999999979743,-0.05301303003034667 +52521,262.6049999997974,-0.053012495377372605 +52522,262.6099999997974,-0.0530119605738403 +52523,262.6149999997974,-0.05301142561960433 +52524,262.6199999997974,-0.05301089051451909 +52525,262.6249999997974,-0.05301035525843886 +52526,262.6299999997974,-0.053009819851217756 +52527,262.6349999997974,-0.05300928429270972 +52528,262.6399999997974,-0.05300874858276858 +52529,262.6449999997974,-0.053008212721247956 +52530,262.6499999997974,-0.053007676708001356 +52531,262.6549999997974,-0.05300714054288213 +52532,262.6599999997974,-0.05300660422574346 +52533,262.6649999997974,-0.05300606775643839 +52534,262.66999999979737,-0.053005531134819775 +52535,262.67499999979736,-0.05300499436074037 +52536,262.67999999979736,-0.05300445743405274 +52537,262.68499999979736,-0.05300392035460931 +52538,262.68999999979735,-0.05300338312226232 +52539,262.69499999979735,-0.05300284573686389 +52540,262.69999999979734,-0.053002308198265964 +52541,262.70499999979734,-0.05300177050632036 +52542,262.70999999979733,-0.05300123266087869 +52543,262.7149999997973,-0.05300069466179244 +52544,262.7199999997973,-0.05300015650891294 +52545,262.7249999997973,-0.052999618202091356 +52546,262.7299999997973,-0.052999079741178706 +52547,262.7349999997973,-0.052998541126025846 +52548,262.7399999997973,-0.052998002356483456 +52549,262.7449999997973,-0.05299746343240209 +52550,262.7499999997973,-0.052996924353632124 +52551,262.7549999997973,-0.05299638512002379 +52552,262.7599999997973,-0.052995845731427155 +52553,262.7649999997973,-0.05299530618769211 +52554,262.7699999997973,-0.05299476648866842 +52555,262.7749999997973,-0.05299422663420566 +52556,262.77999999979727,-0.052993686624153255 +52557,262.78499999979726,-0.052993146458360486 +52558,262.78999999979726,-0.05299260613667646 +52559,262.79499999979726,-0.05299206565895013 +52560,262.79999999979725,-0.05299152502503029 +52561,262.80499999979725,-0.05299098423476555 +52562,262.80999999979724,-0.0529904432880044 +52563,262.81499999979724,-0.052989902184595136 +52564,262.81999999979723,-0.05298936092438591 +52565,262.8249999997972,-0.05298881950722469 +52566,262.8299999997972,-0.05298827793295932 +52567,262.8349999997972,-0.05298773620143746 +52568,262.8399999997972,-0.052987194312506605 +52569,262.8449999997972,-0.05298665226601409 +52570,262.8499999997972,-0.0529861100618071 +52571,262.8549999997972,-0.05298556769973263 +52572,262.8599999997972,-0.05298502517963753 +52573,262.8649999997972,-0.0529844825013685 +52574,262.8699999997972,-0.05298393966477205 +52575,262.8749999997972,-0.052983396669694545 +52576,262.8799999997972,-0.05298285351598217 +52577,262.8849999997972,-0.052982310203480966 +52578,262.88999999979717,-0.05298176673203679 +52579,262.89499999979716,-0.05298122310149535 +52580,262.89999999979716,-0.052980679311702174 +52581,262.90499999979716,-0.05298013536250264 +52582,262.90999999979715,-0.052979591253741944 +52583,262.91499999979715,-0.05297904698526514 +52584,262.91999999979714,-0.05297850255691709 +52585,262.92499999979714,-0.052977957968542516 +52586,262.92999999979713,-0.05297741321998593 +52587,262.9349999997971,-0.05297686831109174 +52588,262.9399999997971,-0.05297632324170412 +52589,262.9449999997971,-0.052975778011667134 +52590,262.9499999997971,-0.052975232620824646 +52591,262.9549999997971,-0.052974687069020365 +52592,262.9599999997971,-0.052974141356097834 +52593,262.9649999997971,-0.05297359548190041 +52594,262.9699999997971,-0.05297304944627129 +52595,262.9749999997971,-0.05297250324905352 +52596,262.9799999997971,-0.052971956890089954 +52597,262.9849999997971,-0.05297141036922331 +52598,262.9899999997971,-0.05297086368629608 +52599,262.9949999997971,-0.05297031684115063 +52600,262.99999999979707,-0.05296976983362916 +52601,263.00499999979706,-0.052969222663573665 +52602,263.00999999979706,-0.052968675330826005 +52603,263.01499999979706,-0.05296812783522785 +52604,263.01999999979705,-0.05296758017662069 +52605,263.02499999979705,-0.05296703235484587 +52606,263.02999999979704,-0.05296648436974455 +52607,263.03499999979704,-0.05296593622115772 +52608,263.03999999979703,-0.05296538790892621 +52609,263.044999999797,-0.05296483943289064 +52610,263.049999999797,-0.05296429079289151 +52611,263.054999999797,-0.05296374198876909 +52612,263.059999999797,-0.05296319302036352 +52613,263.064999999797,-0.05296264388751476 +52614,263.069999999797,-0.05296209459006259 +52615,263.074999999797,-0.05296154512784662 +52616,263.079999999797,-0.05296099550070628 +52617,263.084999999797,-0.05296044570848082 +52618,263.089999999797,-0.052959895751009345 +52619,263.094999999797,-0.05295934562813075 +52620,263.099999999797,-0.05295879533968378 +52621,263.104999999797,-0.052958244885506975 +52622,263.10999999979697,-0.05295769426543873 +52623,263.11499999979696,-0.05295714347931727 +52624,263.11999999979696,-0.0529565925269806 +52625,263.12499999979696,-0.0529560414082666 +52626,263.12999999979695,-0.05295549012301295 +52627,263.13499999979695,-0.052954938671057133 +52628,263.13999999979694,-0.0529543870522365 +52629,263.14499999979694,-0.05295383526638818 +52630,263.14999999979693,-0.05295328331334915 +52631,263.1549999997969,-0.05295273119295621 +52632,263.1599999997969,-0.05295217890504597 +52633,263.1649999997969,-0.052951626449454864 +52634,263.1699999997969,-0.05295107382601916 +52635,263.1749999997969,-0.05295052103457492 +52636,263.1799999997969,-0.05294996807495807 +52637,263.1849999997969,-0.052949414947004315 +52638,263.1899999997969,-0.05294886165054919 +52639,263.1949999997969,-0.052948308185428075 +52640,263.1999999997969,-0.052947754551476156 +52641,263.2049999997969,-0.052947200748528406 +52642,263.2099999997969,-0.05294664677641966 +52643,263.2149999997969,-0.05294609263498455 +52644,263.21999999979687,-0.05294553832405755 +52645,263.22499999979686,-0.052944983843472924 +52646,263.22999999979686,-0.05294442919306478 +52647,263.23499999979686,-0.05294387437266701 +52648,263.23999999979685,-0.05294331938211336 +52649,263.24499999979685,-0.05294276422123737 +52650,263.24999999979684,-0.0529422088898724 +52651,263.25499999979684,-0.05294165338785166 +52652,263.25999999979683,-0.052941097715008115 +52653,263.2649999997968,-0.05294054187117459 +52654,263.2699999997968,-0.05293998585618371 +52655,263.2749999997968,-0.052939429669867935 +52656,263.2799999997968,-0.052938873312059515 +52657,263.2849999997968,-0.05293831678259053 +52658,263.2899999997968,-0.05293776008129288 +52659,263.2949999997968,-0.05293720320799825 +52660,263.2999999997968,-0.05293664616253817 +52661,263.3049999997968,-0.05293608894474397 +52662,263.3099999997968,-0.052935531554446816 +52663,263.3149999997968,-0.052934973991477646 +52664,263.3199999997968,-0.05293441625566726 +52665,263.3249999997968,-0.05293385834684624 +52666,263.32999999979677,-0.05293330026484496 +52667,263.33499999979676,-0.05293274200949367 +52668,263.33999999979676,-0.05293218358062236 +52669,263.34499999979676,-0.0529316249780609 +52670,263.34999999979675,-0.05293106620163891 +52671,263.35499999979675,-0.05293050725118587 +52672,263.35999999979674,-0.05292994812653105 +52673,263.36499999979674,-0.05292938882750352 +52674,263.36999999979673,-0.05292882935393217 +52675,263.3749999997967,-0.05292826970564572 +52676,263.3799999997967,-0.052927709882472654 +52677,263.3849999997967,-0.05292714988424132 +52678,263.3899999997967,-0.05292658971077983 +52679,263.3949999997967,-0.05292602936191612 +52680,263.3999999997967,-0.052925468837477965 +52681,263.4049999997967,-0.052924908137292906 +52682,263.4099999997967,-0.05292434726118829 +52683,263.4149999997967,-0.052923786208991304 +52684,263.4199999997967,-0.05292322498052894 +52685,263.4249999997967,-0.05292266357562798 +52686,263.4299999997967,-0.052922101994115 +52687,263.4349999997967,-0.05292154023581641 +52688,263.43999999979667,-0.05292097830055843 +52689,263.44499999979666,-0.052920416188167056 +52690,263.44999999979666,-0.05291985389846812 +52691,263.45499999979666,-0.052919291431287235 +52692,263.45999999979665,-0.052918728786449834 +52693,263.46499999979665,-0.05291816596378116 +52694,263.46999999979664,-0.05291760296310625 +52695,263.47499999979664,-0.052917039784249935 +52696,263.47999999979663,-0.05291647642703687 +52697,263.4849999997966,-0.0529159128912915 +52698,263.4899999997966,-0.05291534917683809 +52699,263.4949999997966,-0.052914785283500694 +52700,263.4999999997966,-0.05291422121110317 +52701,263.5049999997966,-0.05291365695946918 +52702,263.5099999997966,-0.0529130925284222 +52703,263.5149999997966,-0.05291252791778548 +52704,263.5199999997966,-0.0529119631273821 +52705,263.5249999997966,-0.05291139815703491 +52706,263.5299999997966,-0.052910833006566606 +52707,263.5349999997966,-0.05291026767579966 +52708,263.5399999997966,-0.05290970216455632 +52709,263.5449999997966,-0.052909136472658685 +52710,263.54999999979657,-0.05290857059992861 +52711,263.55499999979656,-0.05290800454618777 +52712,263.55999999979656,-0.05290743831125764 +52713,263.56499999979656,-0.05290687189495948 +52714,263.56999999979655,-0.052906305297114375 +52715,263.57499999979655,-0.05290573851754317 +52716,263.57999999979654,-0.05290517155606655 +52717,263.58499999979654,-0.052904604412504955 +52718,263.58999999979653,-0.05290403708667866 +52719,263.5949999997965,-0.05290346957840771 +52720,263.5999999997965,-0.052902901887511976 +52721,263.6049999997965,-0.052902334013811086 +52722,263.6099999997965,-0.052901765957124494 +52723,263.6149999997965,-0.05290119771727145 +52724,263.6199999997965,-0.05290062929407097 +52725,263.6249999997965,-0.052900060687341904 +52726,263.6299999997965,-0.052899491896902885 +52727,263.6349999997965,-0.05289892292257231 +52728,263.6399999997965,-0.05289835376416842 +52729,263.6449999997965,-0.0528977844215092 +52730,263.6499999997965,-0.05289721489441247 +52731,263.6549999997965,-0.05289664518269582 +52732,263.65999999979647,-0.05289607528617664 +52733,263.66499999979646,-0.05289550520467211 +52734,263.66999999979646,-0.05289493493799921 +52735,263.67499999979646,-0.052894364485974704 +52736,263.67999999979645,-0.052893793848415145 +52737,263.68499999979645,-0.052893223025136875 +52738,263.68999999979644,-0.05289265201595606 +52739,263.69499999979644,-0.05289208082068861 +52740,263.69999999979643,-0.05289150943915024 +52741,263.7049999997964,-0.05289093787115648 +52742,263.7099999997964,-0.052890366116522626 +52743,263.7149999997964,-0.05288979417506377 +52744,263.7199999997964,-0.05288922204659478 +52745,263.7249999997964,-0.05288864973093034 +52746,263.7299999997964,-0.05288807722788491 +52747,263.7349999997964,-0.05288750453727272 +52748,263.7399999997964,-0.0528869316589078 +52749,263.7449999997964,-0.05288635859260398 +52750,263.7499999997964,-0.05288578533817487 +52751,263.7549999997964,-0.052885211895433853 +52752,263.7599999997964,-0.05288463826419412 +52753,263.7649999997964,-0.052884064444268644 +52754,263.76999999979637,-0.052883490435470165 +52755,263.77499999979636,-0.052882916237611224 +52756,263.77999999979636,-0.052882341850504146 +52757,263.78499999979636,-0.052881767273961044 +52758,263.78999999979635,-0.0528811925077938 +52759,263.79499999979635,-0.0528806175518141 +52760,263.79999999979634,-0.0528800424058334 +52761,263.80499999979634,-0.052879467069662935 +52762,263.80999999979633,-0.05287889154311375 +52763,263.8149999997963,-0.05287831582599667 +52764,263.8199999997963,-0.052877739918122245 +52765,263.8249999997963,-0.052877163819300875 +52766,263.8299999997963,-0.05287658752934272 +52767,263.8349999997963,-0.052876011048057704 +52768,263.8399999997963,-0.05287543437525557 +52769,263.8449999997963,-0.0528748575107458 +52770,263.8499999997963,-0.05287428045433768 +52771,263.8549999997963,-0.052873703205840256 +52772,263.8599999997963,-0.052873125765062395 +52773,263.8649999997963,-0.052872548131812705 +52774,263.8699999997963,-0.05287197030589958 +52775,263.8749999997963,-0.052871392287131204 +52776,263.87999999979627,-0.05287081407531552 +52777,263.88499999979626,-0.052870235670260286 +52778,263.88999999979626,-0.05286965707177299 +52779,263.89499999979625,-0.05286907827966094 +52780,263.89999999979625,-0.052868499293731205 +52781,263.90499999979625,-0.05286792011379062 +52782,263.90999999979624,-0.0528673407396458 +52783,263.91499999979624,-0.05286676117110314 +52784,263.91999999979623,-0.05286618140796881 +52785,263.9249999997962,-0.052865601450048774 +52786,263.9299999997962,-0.05286502129714874 +52787,263.9349999997962,-0.05286444094907421 +52788,263.9399999997962,-0.05286386040563045 +52789,263.9449999997962,-0.052863279666622506 +52790,263.9499999997962,-0.052862698731855194 +52791,263.9549999997962,-0.05286211760113311 +52792,263.9599999997962,-0.0528615362742606 +52793,263.9649999997962,-0.05286095475104182 +52794,263.9699999997962,-0.052860373031280675 +52795,263.9749999997962,-0.052859791114780834 +52796,263.9799999997962,-0.05285920900134576 +52797,263.9849999997962,-0.052858626690778676 +52798,263.98999999979617,-0.05285804418288257 +52799,263.99499999979616,-0.052857461477460205 +52800,263.99999999979616,-0.05285687857431413 +52801,264.00499999979615,-0.05285629547324662 +52802,264.00999999979615,-0.05285571217405976 +52803,264.01499999979615,-0.052855128676555396 +52804,264.01999999979614,-0.05285454498053512 +52805,264.02499999979614,-0.05285396108580034 +52806,264.02999999979613,-0.05285337699215218 +52807,264.0349999997961,-0.05285279269939156 +52808,264.0399999997961,-0.05285220820731915 +52809,264.0449999997961,-0.05285162351573541 +52810,264.0499999997961,-0.05285103862444055 +52811,264.0549999997961,-0.052850453533234545 +52812,264.0599999997961,-0.05284986824191714 +52813,264.0649999997961,-0.05284928275028784 +52814,264.0699999997961,-0.05284869705814593 +52815,264.0749999997961,-0.05284811116529045 +52816,264.0799999997961,-0.0528475250715202 +52817,264.0849999997961,-0.05284693877663373 +52818,264.0899999997961,-0.0528463522804294 +52819,264.0949999997961,-0.05284576558270528 +52820,264.09999999979607,-0.05284517868325925 +52821,264.10499999979606,-0.05284459158188891 +52822,264.10999999979606,-0.052844004278391636 +52823,264.11499999979605,-0.05284341677256458 +52824,264.11999999979605,-0.052842829064204636 +52825,264.12499999979605,-0.052842241153108475 +52826,264.12999999979604,-0.05284165303907251 +52827,264.13499999979604,-0.052841064721892934 +52828,264.13999999979603,-0.05284047620136569 +52829,264.144999999796,-0.05283988747728648 +52830,264.149999999796,-0.052839298549450776 +52831,264.154999999796,-0.05283870941765378 +52832,264.159999999796,-0.05283812008169046 +52833,264.164999999796,-0.05283753054135558 +52834,264.169999999796,-0.05283694079644361 +52835,264.174999999796,-0.05283635084674883 +52836,264.179999999796,-0.05283576069206522 +52837,264.184999999796,-0.05283517033218655 +52838,264.189999999796,-0.05283457976690633 +52839,264.194999999796,-0.052833988996017836 +52840,264.199999999796,-0.0528333980193141 +52841,264.204999999796,-0.052832806836587906 +52842,264.20999999979597,-0.052832215447631795 +52843,264.21499999979596,-0.05283162385223805 +52844,264.21999999979596,-0.05283103205019873 +52845,264.22499999979595,-0.05283044004130561 +52846,264.22999999979595,-0.05282984782535026 +52847,264.23499999979595,-0.052829255402123965 +52848,264.23999999979594,-0.052828662771417796 +52849,264.24499999979594,-0.052828069933022546 +52850,264.24999999979593,-0.05282747688672878 +52851,264.2549999997959,-0.0528268836323268 +52852,264.2599999997959,-0.05282629016960667 +52853,264.2649999997959,-0.052825696498358186 +52854,264.2699999997959,-0.05282510261837091 +52855,264.2749999997959,-0.05282450852943414 +52856,264.2799999997959,-0.052823914231336956 +52857,264.2849999997959,-0.05282331972386814 +52858,264.2899999997959,-0.05282272500681624 +52859,264.2949999997959,-0.05282213007996957 +52860,264.2999999997959,-0.052821534943116165 +52861,264.3049999997959,-0.052820939596043816 +52862,264.3099999997959,-0.05282034403854007 +52863,264.3149999997959,-0.052819748270392194 +52864,264.31999999979587,-0.05281915229138724 +52865,264.32499999979586,-0.05281855610131197 +52866,264.32999999979586,-0.05281795969995289 +52867,264.33499999979585,-0.05281736308709628 +52868,264.33999999979585,-0.052816766262528146 +52869,264.34499999979585,-0.052816169226034236 +52870,264.34999999979584,-0.05281557197740004 +52871,264.35499999979584,-0.052814974516410804 +52872,264.35999999979583,-0.052814376842851486 +52873,264.3649999997958,-0.052813778956506824 +52874,264.3699999997958,-0.052813180857161274 +52875,264.3749999997958,-0.05281258254459902 +52876,264.3799999997958,-0.052811984018604034 +52877,264.3849999997958,-0.05281138527895999 +52878,264.3899999997958,-0.0528107863254503 +52879,264.3949999997958,-0.052810187157858124 +52880,264.3999999997958,-0.052809587775966366 +52881,264.4049999997958,-0.05280898817955766 +52882,264.4099999997958,-0.0528083883684144 +52883,264.4149999997958,-0.052807788342318675 +52884,264.4199999997958,-0.05280718810105236 +52885,264.4249999997958,-0.05280658764439703 +52886,264.42999999979577,-0.05280598697213401 +52887,264.43499999979576,-0.05280538608404436 +52888,264.43999999979576,-0.05280478497990886 +52889,264.44499999979575,-0.05280418365950806 +52890,264.44999999979575,-0.05280358212262222 +52891,264.45499999979575,-0.05280298036903133 +52892,264.45999999979574,-0.05280237839851515 +52893,264.46499999979574,-0.05280177621085311 +52894,264.46999999979573,-0.05280117380582442 +52895,264.4749999997957,-0.05280057118320802 +52896,264.4799999997957,-0.05279996834278256 +52897,264.4849999997957,-0.05279936528432646 +52898,264.4899999997957,-0.05279876200761781 +52899,264.4949999997957,-0.05279815851243448 +52900,264.4999999997957,-0.052797554798554074 +52901,264.5049999997957,-0.05279695086575389 +52902,264.5099999997957,-0.05279634671381096 +52903,264.5149999997957,-0.05279574234250208 +52904,264.5199999997957,-0.05279513775160375 +52905,264.5249999997957,-0.052794532940892196 +52906,264.5299999997957,-0.05279392791014338 +52907,264.5349999997957,-0.05279332265913298 +52908,264.53999999979567,-0.052792717187636416 +52909,264.54499999979566,-0.05279211149542881 +52910,264.54999999979566,-0.052791505582285056 +52911,264.55499999979565,-0.052790899447979725 +52912,264.55999999979565,-0.05279029309228713 +52913,264.56499999979565,-0.05278968651498132 +52914,264.56999999979564,-0.05278907971583604 +52915,264.57499999979564,-0.05278847269462479 +52916,264.57999999979563,-0.05278786545112077 +52917,264.5849999997956,-0.05278725798509692 +52918,264.5899999997956,-0.05278665029632589 +52919,264.5949999997956,-0.05278604238458006 +52920,264.5999999997956,-0.05278543424963152 +52921,264.6049999997956,-0.052784825891252114 +52922,264.6099999997956,-0.05278421730921335 +52923,264.6149999997956,-0.05278360850328649 +52924,264.6199999997956,-0.052782999473242526 +52925,264.6249999997956,-0.05278239021885214 +52926,264.6299999997956,-0.052781780739885764 +52927,264.6349999997956,-0.052781171036113524 +52928,264.6399999997956,-0.05278056110730526 +52929,264.6449999997956,-0.052779950953230556 +52930,264.64999999979557,-0.052779340573658684 +52931,264.65499999979556,-0.05277872996835865 +52932,264.65999999979556,-0.05277811913709917 +52933,264.66499999979555,-0.052777508079648684 +52934,264.66999999979555,-0.05277689679577533 +52935,264.67499999979555,-0.05277628528524697 +52936,264.67999999979554,-0.05277567354783119 +52937,264.68499999979554,-0.05277506158329527 +52938,264.68999999979553,-0.05277444939140621 +52939,264.6949999997955,-0.05277383697193072 +52940,264.6999999997955,-0.052773224324635236 +52941,264.7049999997955,-0.05277261144928589 +52942,264.7099999997955,-0.052771998345648545 +52943,264.7149999997955,-0.05277138501348874 +52944,264.7199999997955,-0.05277077145257175 +52945,264.7249999997955,-0.052770157662662555 +52946,264.7299999997955,-0.05276954364352585 +52947,264.7349999997955,-0.05276892939492602 +52948,264.7399999997955,-0.05276831491662718 +52949,264.7449999997955,-0.05276770020839314 +52950,264.7499999997955,-0.052767085269987406 +52951,264.7549999997955,-0.052766470101173225 +52952,264.75999999979547,-0.05276585470171352 +52953,264.76499999979546,-0.05276523907137093 +52954,264.76999999979546,-0.052764623209907796 +52955,264.77499999979545,-0.05276400711708618 +52956,264.77999999979545,-0.05276339079266782 +52957,264.78499999979545,-0.05276277423641418 +52958,264.78999999979544,-0.05276215744808641 +52959,264.79499999979544,-0.05276154042744538 +52960,264.79999999979543,-0.05276092317425166 +52961,264.8049999997954,-0.05276030568826552 +52962,264.8099999997954,-0.05275968796924691 +52963,264.8149999997954,-0.05275907001695552 +52964,264.8199999997954,-0.05275845183115071 +52965,264.8249999997954,-0.052757833411591536 +52966,264.8299999997954,-0.05275721475803678 +52967,264.8349999997954,-0.05275659587024492 +52968,264.8399999997954,-0.0527559767479741 +52969,264.8449999997954,-0.052755357390982215 +52970,264.8499999997954,-0.052754737799026785 +52971,264.8549999997954,-0.0527541179718651 +52972,264.8599999997954,-0.05275349790925409 +52973,264.8649999997954,-0.05275287761095043 +52974,264.86999999979537,-0.05275225707671047 +52975,264.87499999979536,-0.05275163630629021 +52976,264.87999999979536,-0.05275101529944541 +52977,264.88499999979535,-0.05275039405593151 +52978,264.88999999979535,-0.05274977257550362 +52979,264.89499999979535,-0.05274915085791653 +52980,264.89999999979534,-0.05274852890292479 +52981,264.90499999979534,-0.052747906710282566 +52982,264.90999999979533,-0.05274728427974377 +52983,264.9149999997953,-0.052746661611061965 +52984,264.9199999997953,-0.05274603870399044 +52985,264.9249999997953,-0.05274541555828213 +52986,264.9299999997953,-0.05274479217368971 +52987,264.9349999997953,-0.0527441685499655 +52988,264.9399999997953,-0.05274354468686153 +52989,264.9449999997953,-0.05274292058412952 +52990,264.9499999997953,-0.05274229624152086 +52991,264.9549999997953,-0.05274167165878666 +52992,264.9599999997953,-0.052741046835677666 +52993,264.9649999997953,-0.05274042177194436 +52994,264.9699999997953,-0.05273979646733686 +52995,264.9749999997953,-0.05273917092160502 +52996,264.97999999979527,-0.05273854513449834 +52997,264.98499999979526,-0.052737919105766015 +52998,264.98999999979526,-0.05273729283515692 +52999,264.99499999979525,-0.05273666632241964 +53000,264.99999999979525,-0.052736039567302384 +53001,265.00499999979525,-0.052735412569553095 +53002,265.00999999979524,-0.05273478532891937 +53003,265.01499999979524,-0.052734157845148504 +53004,265.01999999979523,-0.05273353011798746 +53005,265.0249999997952,-0.05273290214718287 +53006,265.0299999997952,-0.05273227393248107 +53007,265.0349999997952,-0.05273164547362803 +53008,265.0399999997952,-0.05273101677036947 +53009,265.0449999997952,-0.05273038782245071 +53010,265.0499999997952,-0.0527297586296168 +53011,265.0549999997952,-0.05272912919161245 +53012,265.0599999997952,-0.052728499508182015 +53013,265.0649999997952,-0.05272786957906958 +53014,265.0699999997952,-0.05272723940401886 +53015,265.0749999997952,-0.052726608982773274 +53016,265.0799999997952,-0.05272597831507588 +53017,265.0849999997952,-0.052725347400669434 +53018,265.08999999979517,-0.05272471623929637 +53019,265.09499999979516,-0.05272408483069877 +53020,265.09999999979516,-0.0527234531746184 +53021,265.10499999979515,-0.0527228212707967 +53022,265.10999999979515,-0.05272218911897477 +53023,265.11499999979515,-0.052721556718893385 +53024,265.11999999979514,-0.05272092407029298 +53025,265.12499999979514,-0.052720291172913665 +53026,265.12999999979513,-0.052719658026495225 +53027,265.1349999997951,-0.0527190246307771 +53028,265.1399999997951,-0.0527183909854984 +53029,265.1449999997951,-0.05271775709039791 +53030,265.1499999997951,-0.05271712294521407 +53031,265.1549999997951,-0.052716488549684984 +53032,265.1599999997951,-0.052715853903548424 +53033,265.1649999997951,-0.052715219006541816 +53034,265.1699999997951,-0.05271458385840227 +53035,265.1749999997951,-0.052713948458866525 +53036,265.1799999997951,-0.05271331280767102 +53037,265.1849999997951,-0.05271267690455183 +53038,265.1899999997951,-0.052712040749244696 +53039,265.1949999997951,-0.052711404341485024 +53040,265.19999999979507,-0.05271076768100788 +53041,265.20499999979506,-0.052710130767547984 +53042,265.20999999979506,-0.05270949360083971 +53043,265.21499999979505,-0.0527088561806171 +53044,265.21999999979505,-0.05270821850661386 +53045,265.22499999979505,-0.052707580578563326 +53046,265.22999999979504,-0.0527069423961985 +53047,265.23499999979504,-0.052706303959252056 +53048,265.23999999979503,-0.05270566526745631 +53049,265.244999999795,-0.05270502632054324 +53050,265.249999999795,-0.052704387118244454 +53051,265.254999999795,-0.05270374766029124 +53052,265.259999999795,-0.052703107946414536 +53053,265.264999999795,-0.052702467976344904 +53054,265.269999999795,-0.052701827749812594 +53055,265.274999999795,-0.05270118726654748 +53056,265.279999999795,-0.0527005465262791 +53057,265.284999999795,-0.052699905528736636 +53058,265.289999999795,-0.052699264273648926 +53059,265.294999999795,-0.05269862276074444 +53060,265.299999999795,-0.05269798098975133 +53061,265.304999999795,-0.05269733896039735 +53062,265.30999999979497,-0.052696696672409914 +53063,265.31499999979496,-0.052696054125516104 +53064,265.31999999979496,-0.05269541131944263 +53065,265.32499999979495,-0.05269476825391584 +53066,265.32999999979495,-0.052694124928661754 +53067,265.33499999979495,-0.05269348134340599 +53068,265.33999999979494,-0.052692837497873866 +53069,265.34499999979494,-0.0526921933917903 +53070,265.34999999979493,-0.052691549024879845 +53071,265.3549999997949,-0.05269090439686673 +53072,265.3599999997949,-0.052690259507474795 +53073,265.3649999997949,-0.05268961435642754 +53074,265.3699999997949,-0.052688968943448086 +53075,265.3749999997949,-0.05268832326825921 +53076,265.3799999997949,-0.05268767733058333 +53077,265.3849999997949,-0.05268703113014246 +53078,265.3899999997949,-0.0526863846666583 +53079,265.3949999997949,-0.052685737939852165 +53080,265.3999999997949,-0.052685090949445 +53081,265.4049999997949,-0.05268444369515739 +53082,265.4099999997949,-0.05268379617670955 +53083,265.4149999997949,-0.05268314839382136 +53084,265.41999999979487,-0.05268250034621227 +53085,265.42499999979486,-0.052681852033601415 +53086,265.42999999979486,-0.05268120345570755 +53087,265.43499999979485,-0.05268055461224904 +53088,265.43999999979485,-0.052679905502943894 +53089,265.44499999979485,-0.052679256127509774 +53090,265.44999999979484,-0.05267860648566392 +53091,265.45499999979484,-0.05267795657712326 +53092,265.45999999979483,-0.052677306401604285 +53093,265.4649999997948,-0.05267665595882316 +53094,265.4699999997948,-0.05267600524849566 +53095,265.4749999997948,-0.052675354270337184 +53096,265.4799999997948,-0.05267470302406277 +53097,265.4849999997948,-0.052674051509387074 +53098,265.4899999997948,-0.05267339972602436 +53099,265.4949999997948,-0.05267274767368852 +53100,265.4999999997948,-0.05267209535209308 +53101,265.5049999997948,-0.0526714427609512 +53102,265.5099999997948,-0.05267078989997562 +53103,265.5149999997948,-0.05267013676887874 +53104,265.5199999997948,-0.05266948336737254 +53105,265.5249999997948,-0.05266882969516865 +53106,265.52999999979477,-0.05266817575197834 +53107,265.53499999979476,-0.052667521537512446 +53108,265.53999999979476,-0.052666867051481436 +53109,265.54499999979475,-0.05266621229359541 +53110,265.54999999979475,-0.05266555726356407 +53111,265.55499999979475,-0.052664901961096744 +53112,265.55999999979474,-0.05266424638590238 +53113,265.56499999979474,-0.0526635905376895 +53114,265.56999999979473,-0.0526629344161663 +53115,265.5749999997947,-0.05266227802104052 +53116,265.5799999997947,-0.05266162135201958 +53117,265.5849999997947,-0.052660964408810455 +53118,265.5899999997947,-0.052660307191119755 +53119,265.5949999997947,-0.05265964969865371 +53120,265.5999999997947,-0.052658991931118136 +53121,265.6049999997947,-0.052658333888218466 +53122,265.6099999997947,-0.052657675569659744 +53123,265.6149999997947,-0.05265701697514663 +53124,265.6199999997947,-0.05265635810438337 +53125,265.6249999997947,-0.052655698957073824 +53126,265.6299999997947,-0.05265503953292145 +53127,265.6349999997947,-0.05265437983162933 +53128,265.63999999979467,-0.05265371985290013 +53129,265.64499999979466,-0.05265305959643611 +53130,265.64999999979466,-0.052652399061939165 +53131,265.65499999979465,-0.05265173824911078 +53132,265.65999999979465,-0.052651077157652014 +53133,265.66499999979465,-0.05265041578726354 +53134,265.66999999979464,-0.05264975413764566 +53135,265.67499999979464,-0.052649092208498234 +53136,265.67999999979463,-0.052648429999520734 +53137,265.6849999997946,-0.052647767510412224 +53138,265.6899999997946,-0.052647104740871385 +53139,265.6949999997946,-0.05264644169059648 +53140,265.6999999997946,-0.05264577835928535 +53141,265.7049999997946,-0.05264511474663544 +53142,265.7099999997946,-0.05264445085234382 +53143,265.7149999997946,-0.05264378667610711 +53144,265.7199999997946,-0.05264312221762154 +53145,265.7249999997946,-0.052642457476582936 +53146,265.7299999997946,-0.052641792452686686 +53147,265.7349999997946,-0.05264112714562782 +53148,265.7399999997946,-0.0526404615551009 +53149,265.7449999997946,-0.05263979568080012 +53150,265.74999999979457,-0.052639129522419226 +53151,265.75499999979456,-0.05263846307965159 +53152,265.75999999979456,-0.05263779635219014 +53153,265.76499999979455,-0.05263712933972738 +53154,265.76999999979455,-0.05263646204195544 +53155,265.77499999979455,-0.05263579445856601 +53156,265.77999999979454,-0.05263512658925035 +53157,265.78499999979454,-0.05263445843369932 +53158,265.78999999979453,-0.05263378999160337 +53159,265.7949999997945,-0.052633121262652495 +53160,265.7999999997945,-0.052632452246536315 +53161,265.8049999997945,-0.052631782942944 +53162,265.8099999997945,-0.0526311133515643 +53163,265.8149999997945,-0.05263044347208554 +53164,265.8199999997945,-0.052629773304195666 +53165,265.8249999997945,-0.05262910284758215 +53166,265.8299999997945,-0.052628432101932035 +53167,265.8349999997945,-0.05262776106693198 +53168,265.8399999997945,-0.052627089742268186 +53169,265.8449999997945,-0.05262641812762644 +53170,265.8499999997945,-0.0526257462226921 +53171,265.8549999997945,-0.052625074027150096 +53172,265.85999999979447,-0.052624401540684915 +53173,265.86499999979446,-0.052623728762980646 +53174,265.86999999979446,-0.05262305569372093 +53175,265.87499999979445,-0.05262238233258896 +53176,265.87999999979445,-0.05262170867926751 +53177,265.88499999979445,-0.052621034733438946 +53178,265.88999999979444,-0.05262036049478516 +53179,265.89499999979444,-0.05261968596298763 +53180,265.89999999979443,-0.0526190111377274 +53181,265.9049999997944,-0.05261833601868507 +53182,265.9099999997944,-0.05261766060554081 +53183,265.9149999997944,-0.05261698489797433 +53184,265.9199999997944,-0.052616308895664946 +53185,265.9249999997944,-0.0526156325982915 +53186,265.9299999997944,-0.052614956005532405 +53187,265.9349999997944,-0.05261427911706562 +53188,265.9399999997944,-0.052613601932568685 +53189,265.9449999997944,-0.05261292445171868 +53190,265.9499999997944,-0.052612246674192266 +53191,265.9549999997944,-0.05261156859966562 +53192,265.9599999997944,-0.05261089022781451 +53193,265.9649999997944,-0.05261021155831423 +53194,265.96999999979437,-0.05260953259083966 +53195,265.97499999979436,-0.052608853325065215 +53196,265.97999999979436,-0.05260817376066486 +53197,265.98499999979435,-0.0526074938973121 +53198,265.98999999979435,-0.05260681373468002 +53199,265.99499999979435,-0.05260613327244123 +53200,265.99999999979434,-0.052605452510267894 +53201,266.00499999979434,-0.052604771447831725 +53202,266.00999999979433,-0.05260409008480399 +53203,266.0149999997943,-0.0526034084208555 +53204,266.0199999997943,-0.05260272645565661 +53205,266.0249999997943,-0.0526020441888772 +53206,266.0299999997943,-0.052601361620186735 +53207,266.0349999997943,-0.052600678749254184 +53208,266.0399999997943,-0.052599995575748085 +53209,266.0449999997943,-0.052599312099336486 +53210,266.0499999997943,-0.05259862831968701 +53211,266.0549999997943,-0.052597944236466805 +53212,266.0599999997943,-0.05259725984934255 +53213,266.0649999997943,-0.05259657515798048 +53214,266.0699999997943,-0.05259589016204636 +53215,266.0749999997943,-0.052595204861205475 +53216,266.07999999979427,-0.05259451925512265 +53217,266.08499999979426,-0.052593833343462265 +53218,266.08999999979426,-0.05259314712588822 +53219,266.09499999979425,-0.052592460602063955 +53220,266.09999999979425,-0.05259177377165242 +53221,266.10499999979425,-0.052591086634316116 +53222,266.10999999979424,-0.05259039918971708 +53223,266.11499999979424,-0.05258971143751685 +53224,266.11999999979423,-0.05258902337737654 +53225,266.1249999997942,-0.05258833500895673 +53226,266.1299999997942,-0.052587646331917585 +53227,266.1349999997942,-0.05258695734591875 +53228,266.1399999997942,-0.052586268050619424 +53229,266.1449999997942,-0.05258557844567832 +53230,266.1499999997942,-0.05258488853075369 +53231,266.1549999997942,-0.05258419830550327 +53232,266.1599999997942,-0.05258350776958434 +53233,266.1649999997942,-0.05258281692265372 +53234,266.1699999997942,-0.052582125764367715 +53235,266.1749999997942,-0.05258143429438218 +53236,266.1799999997942,-0.05258074251235246 +53237,266.1849999997942,-0.052580050417933434 +53238,266.18999999979417,-0.0525793580107795 +53239,266.19499999979416,-0.052578665290544564 +53240,266.19999999979416,-0.05257797225688204 +53241,266.20499999979415,-0.05257727890944486 +53242,266.20999999979415,-0.05257658524788548 +53243,266.21499999979414,-0.05257589127185585 +53244,266.21999999979414,-0.052575196981007453 +53245,266.22499999979414,-0.052574502374991255 +53246,266.22999999979413,-0.05257380745345775 +53247,266.2349999997941,-0.05257311221605693 +53248,266.2399999997941,-0.0525724166624383 +53249,266.2449999997941,-0.05257172079225087 +53250,266.2499999997941,-0.052571024605143166 +53251,266.2549999997941,-0.052570328100763196 +53252,266.2599999997941,-0.05256963127875848 +53253,266.2649999997941,-0.052568934138776044 +53254,266.2699999997941,-0.05256823668046242 +53255,266.2749999997941,-0.05256753890346364 +53256,266.2799999997941,-0.05256684080742522 +53257,266.2849999997941,-0.052566142391992206 +53258,266.2899999997941,-0.0525654436568091 +53259,266.2949999997941,-0.05256474460151992 +53260,266.29999999979407,-0.0525640452257682 +53261,266.30499999979406,-0.052563345529196955 +53262,266.30999999979406,-0.05256264551144868 +53263,266.31499999979405,-0.052561945172165364 +53264,266.31999999979405,-0.05256124451098853 +53265,266.32499999979404,-0.052560543527559137 +53266,266.32999999979404,-0.052559842221517654 +53267,266.33499999979404,-0.052559140592504064 +53268,266.33999999979403,-0.05255843864015782 +53269,266.344999999794,-0.052557736364117834 +53270,266.349999999794,-0.05255703376402255 +53271,266.354999999794,-0.052556330839509884 +53272,266.359999999794,-0.052555627590217216 +53273,266.364999999794,-0.05255492401578144 +53274,266.369999999794,-0.0525542201158389 +53275,266.374999999794,-0.05255351589002545 +53276,266.379999999794,-0.05255281133797642 +53277,266.384999999794,-0.05255210645932661 +53278,266.389999999794,-0.05255140125371029 +53279,266.394999999794,-0.052550695720761244 +53280,266.399999999794,-0.05254998986011269 +53281,266.404999999794,-0.05254928367139735 +53282,266.40999999979397,-0.05254857715424741 +53283,266.41499999979396,-0.05254787030829453 +53284,266.41999999979396,-0.05254716313316986 +53285,266.42499999979395,-0.05254645562850399 +53286,266.42999999979395,-0.05254574779392699 +53287,266.43499999979394,-0.05254503962906843 +53288,266.43999999979394,-0.05254433113355731 +53289,266.44499999979394,-0.05254362230702212 +53290,266.44999999979393,-0.052542913149090806 +53291,266.4549999997939,-0.052542203659390795 +53292,266.4599999997939,-0.05254149383754897 +53293,266.4649999997939,-0.052540783683191664 +53294,266.4699999997939,-0.052540073195944684 +53295,266.4749999997939,-0.052539362375433316 +53296,266.4799999997939,-0.05253865122128228 +53297,266.4849999997939,-0.05253793973311578 +53298,266.4899999997939,-0.05253722791055745 +53299,266.4949999997939,-0.05253651575323041 +53300,266.4999999997939,-0.052535803260757206 +53301,266.5049999997939,-0.052535090432759876 +53302,266.5099999997939,-0.052534377268859886 +53303,266.5149999997939,-0.05253366376867817 +53304,266.51999999979387,-0.052532949931835105 +53305,266.52499999979386,-0.05253223575795052 +53306,266.52999999979386,-0.05253152124664371 +53307,266.53499999979385,-0.05253080639753338 +53308,266.53999999979385,-0.052530091210237745 +53309,266.54499999979384,-0.052529375684374414 +53310,266.54999999979384,-0.05252865981956046 +53311,266.55499999979384,-0.05252794361541241 +53312,266.55999999979383,-0.05252722707154622 +53313,266.5649999997938,-0.0525265101875773 +53314,266.5699999997938,-0.05252579296312051 +53315,266.5749999997938,-0.05252507539779012 +53316,266.5799999997938,-0.052524357491199866 +53317,266.5849999997938,-0.05252363924296293 +53318,266.5899999997938,-0.05252292065269191 +53319,266.5949999997938,-0.05252220171999885 +53320,266.5999999997938,-0.05252148244449522 +53321,266.6049999997938,-0.05252076282579193 +53322,266.6099999997938,-0.05252004286349936 +53323,266.6149999997938,-0.052519322557227244 +53324,266.6199999997938,-0.05251860190658482 +53325,266.6249999997938,-0.052517880911180724 +53326,266.62999999979377,-0.052517159570623036 +53327,266.63499999979376,-0.052516437884519235 +53328,266.63999999979376,-0.05251571585247625 +53329,266.64499999979375,-0.052514993474100435 +53330,266.64999999979375,-0.052514270748997574 +53331,266.65499999979374,-0.05251354767677286 +53332,266.65999999979374,-0.05251282425703092 +53333,266.66499999979374,-0.05251210048937578 +53334,266.66999999979373,-0.052511376373410926 +53335,266.6749999997937,-0.05251065190873922 +53336,266.6799999997937,-0.05250992709496298 +53337,266.6849999997937,-0.0525092019316839 +53338,266.6899999997937,-0.05250847641850314 +53339,266.6949999997937,-0.052507750555021236 +53340,266.6999999997937,-0.05250702434083814 +53341,266.7049999997937,-0.052506297775553254 +53342,266.7099999997937,-0.05250557085876534 +53343,266.7149999997937,-0.0525048435900726 +53344,266.7199999997937,-0.05250411596907263 +53345,266.7249999997937,-0.05250338799536246 +53346,266.7299999997937,-0.0525026596685385 +53347,266.7349999997937,-0.05250193098819656 +53348,266.73999999979367,-0.052501201953931896 +53349,266.74499999979366,-0.05250047256533912 +53350,266.74999999979366,-0.052499742822012294 +53351,266.75499999979365,-0.052499012723544826 +53352,266.75999999979365,-0.05249828226952955 +53353,266.76499999979364,-0.05249755145955872 +53354,266.76999999979364,-0.052496820293223966 +53355,266.77499999979364,-0.0524960887701163 +53356,266.77999999979363,-0.05249535688982617 +53357,266.7849999997936,-0.05249462465194337 +53358,266.7899999997936,-0.052493892056057125 +53359,266.7949999997936,-0.052493159101756025 +53360,266.7999999997936,-0.052492425788628054 +53361,266.8049999997936,-0.052491692116260626 +53362,266.8099999997936,-0.05249095808424047 +53363,266.8149999997936,-0.052490223692153774 +53364,266.8199999997936,-0.05248948893958607 +53365,266.8249999997936,-0.05248875382612228 +53366,266.8299999997936,-0.05248801835134671 +53367,266.8349999997936,-0.05248728251484306 +53368,266.8399999997936,-0.052486546316194406 +53369,266.8449999997936,-0.052485809754983195 +53370,266.84999999979357,-0.052485072830791256 +53371,266.85499999979356,-0.05248433554319979 +53372,266.85999999979356,-0.0524835978917894 +53373,266.86499999979355,-0.05248285987614004 +53374,266.86999999979355,-0.05248212149583102 +53375,266.87499999979354,-0.05248138275044107 +53376,266.87999999979354,-0.05248064363954826 +53377,266.88499999979354,-0.05247990416273004 +53378,266.88999999979353,-0.0524791643195632 +53379,266.8949999997935,-0.052478424109623945 +53380,266.8999999997935,-0.052477683532487815 +53381,266.9049999997935,-0.052476942587729725 +53382,266.9099999997935,-0.05247620127492395 +53383,266.9149999997935,-0.052475459593644136 +53384,266.9199999997935,-0.05247471754346326 +53385,266.9249999997935,-0.05247397512395371 +53386,266.9299999997935,-0.05247323233468718 +53387,266.9349999997935,-0.05247248917523477 +53388,266.9399999997935,-0.05247174564516689 +53389,266.9449999997935,-0.05247100174405334 +53390,266.9499999997935,-0.05247025747146326 +53391,266.9549999997935,-0.052469512826965145 +53392,266.95999999979347,-0.05246876781012683 +53393,266.96499999979346,-0.05246802242051553 +53394,266.96999999979346,-0.05246727665769775 +53395,266.97499999979345,-0.05246653052123941 +53396,266.97999999979345,-0.052465784010705736 +53397,266.98499999979344,-0.0524650371256613 +53398,266.98999999979344,-0.052464289865670026 +53399,266.99499999979344,-0.05246354223029519 +53400,266.99999999979343,-0.05246279421909939 +53401,267.0049999997934,-0.052462045831644585 +53402,267.0099999997934,-0.052461297067492044 +53403,267.0149999997934,-0.05246054792620238 +53404,267.0199999997934,-0.05245979840733557 +53405,267.0249999997934,-0.052459048510450884 +53406,267.0299999997934,-0.052458298235106955 +53407,267.0349999997934,-0.05245754758086173 +53408,267.0399999997934,-0.052456796547272505 +53409,267.0449999997934,-0.05245604513389589 +53410,267.0499999997934,-0.05245529334028781 +53411,267.0549999997934,-0.05245454116600355 +53412,267.0599999997934,-0.0524537886105977 +53413,267.0649999997934,-0.05245303567362416 +53414,267.06999999979337,-0.052452282354636184 +53415,267.07499999979336,-0.052451528653186315 +53416,267.07999999979336,-0.052450774568826436 +53417,267.08499999979335,-0.05245002010110774 +53418,267.08999999979335,-0.05244926524958075 +53419,267.09499999979334,-0.05244851001379529 +53420,267.09999999979334,-0.05244775439330049 +53421,267.10499999979334,-0.052446998387644814 +53422,267.10999999979333,-0.05244624199637602 +53423,267.1149999997933,-0.05244548521904119 +53424,267.1199999997933,-0.052444728055186705 +53425,267.1249999997933,-0.05244397050435825 +53426,267.1299999997933,-0.05244321256610083 +53427,267.1349999997933,-0.05244245423995873 +53428,267.1399999997933,-0.05244169552547558 +53429,267.1449999997933,-0.05244093642219427 +53430,267.1499999997933,-0.052440176929657 +53431,267.1549999997933,-0.05243941704740529 +53432,267.1599999997933,-0.05243865677497992 +53433,267.1649999997933,-0.05243789611192099 +53434,267.1699999997933,-0.052437135057767904 +53435,267.1749999997933,-0.05243637361205934 +53436,267.17999999979327,-0.052435611774333285 +53437,267.18499999979326,-0.05243484954412699 +53438,267.18999999979326,-0.05243408692097701 +53439,267.19499999979325,-0.052433323904419196 +53440,267.19999999979325,-0.05243256049398867 +53441,267.20499999979324,-0.05243179668921985 +53442,267.20999999979324,-0.05243103248964643 +53443,267.21499999979324,-0.05243026789480139 +53444,267.21999999979323,-0.05242950290421699 +53445,267.2249999997932,-0.05242873751742475 +53446,267.2299999997932,-0.052427971733955504 +53447,267.2349999997932,-0.05242720555333932 +53448,267.2399999997932,-0.05242643897510557 +53449,267.2449999997932,-0.052425671998782904 +53450,267.2499999997932,-0.05242490462389921 +53451,267.2549999997932,-0.05242413684998168 +53452,267.2599999997932,-0.052423368676556746 +53453,267.2649999997932,-0.052422600103150134 +53454,267.2699999997932,-0.0524218311292868 +53455,267.2749999997932,-0.05242106175449101 +53456,267.2799999997932,-0.05242029197828626 +53457,267.2849999997932,-0.052419521800195316 +53458,267.28999999979317,-0.052418751219740205 +53459,267.29499999979316,-0.05241798023644221 +53460,267.29999999979316,-0.052417208849821866 +53461,267.30499999979315,-0.05241643705939896 +53462,267.30999999979315,-0.05241566486469255 +53463,267.31499999979314,-0.052414892265220926 +53464,267.31999999979314,-0.05241411926050165 +53465,267.32499999979314,-0.052413345850051515 +53466,267.32999999979313,-0.05241257203338657 +53467,267.3349999997931,-0.052411797810022094 +53468,267.3399999997931,-0.05241102317947264 +53469,267.3449999997931,-0.05241024814125197 +53470,267.3499999997931,-0.0524094726948731 +53471,267.3549999997931,-0.05240869683984832 +53472,267.3599999997931,-0.05240792057568909 +53473,267.3649999997931,-0.05240714390190617 +53474,267.3699999997931,-0.0524063668180095 +53475,267.3749999997931,-0.05240558932350831 +53476,267.3799999997931,-0.05240481141791102 +53477,267.3849999997931,-0.0524040331007253 +53478,267.3899999997931,-0.052403254371458034 +53479,267.3949999997931,-0.05240247522961535 +53480,267.39999999979307,-0.052401695674702584 +53481,267.40499999979306,-0.0524009157062243 +53482,267.40999999979306,-0.052400135323684295 +53483,267.41499999979305,-0.05239935452658558 +53484,267.41999999979305,-0.052398573314430395 +53485,267.42499999979304,-0.05239779168672017 +53486,267.42999999979304,-0.05239700964295558 +53487,267.43499999979304,-0.05239622718263649 +53488,267.43999999979303,-0.052395444305262 +53489,267.444999999793,-0.052394661010330426 +53490,267.449999999793,-0.05239387729733925 +53491,267.454999999793,-0.05239309316578519 +53492,267.459999999793,-0.052392308615164196 +53493,267.464999999793,-0.05239152364497137 +53494,267.469999999793,-0.052390738254701065 +53495,267.474999999793,-0.052389952443846796 +53496,267.479999999793,-0.05238916621190131 +53497,267.484999999793,-0.05238837955835652 +53498,267.489999999793,-0.05238759248270357 +53499,267.494999999793,-0.05238680498443276 +53500,267.499999999793,-0.05238601706303362 +53501,267.504999999793,-0.05238522871799485 +53502,267.50999999979297,-0.05238443994880433 +53503,267.51499999979296,-0.05238365075494916 +53504,267.51999999979296,-0.052382861135915594 +53505,267.52499999979295,-0.05238207109118909 +53506,267.52999999979295,-0.05238128062025429 +53507,267.53499999979294,-0.052380489722594986 +53508,267.53999999979294,-0.0523796983976942 +53509,267.54499999979294,-0.05237890664503409 +53510,267.54999999979293,-0.052378114464096015 +53511,267.5549999997929,-0.052377321854360476 +53512,267.5599999997929,-0.05237652881530718 +53513,267.5649999997929,-0.052375735346415 +53514,267.5699999997929,-0.05237494144716196 +53515,267.5749999997929,-0.052374147117025274 +53516,267.5799999997929,-0.0523733523554813 +53517,267.5849999997929,-0.05237255716200556 +53518,267.5899999997929,-0.05237176153607277 +53519,267.5949999997929,-0.05237096547715676 +53520,267.5999999997929,-0.052370168984730556 +53521,267.6049999997929,-0.05236937205826632 +53522,267.6099999997929,-0.05236857469723539 +53523,267.6149999997929,-0.05236777690110823 +53524,267.61999999979287,-0.05236697866935447 +53525,267.62499999979286,-0.052366180001442886 +53526,267.62999999979286,-0.0523653808968414 +53527,267.63499999979285,-0.05236458135501709 +53528,267.63999999979285,-0.05236378137543618 +53529,267.64499999979284,-0.05236298095756402 +53530,267.64999999979284,-0.0523621801008651 +53531,267.65499999979284,-0.052361378804803085 +53532,267.65999999979283,-0.052360577068840716 +53533,267.6649999997928,-0.05235977489243993 +53534,267.6699999997928,-0.05235897227506176 +53535,267.6749999997928,-0.052358169216166386 +53536,267.6799999997928,-0.05235736571521311 +53537,267.6849999997928,-0.052356561771660357 +53538,267.6899999997928,-0.0523557573849657 +53539,267.6949999997928,-0.052354952554585825 +53540,267.6999999997928,-0.05235414727997652 +53541,267.7049999997928,-0.05235334156059272 +53542,267.7099999997928,-0.05235253539588848 +53543,267.7149999997928,-0.05235172878531695 +53544,267.7199999997928,-0.05235092172833042 +53545,267.7249999997928,-0.05235011422438027 +53546,267.72999999979277,-0.05234930627291699 +53547,267.73499999979276,-0.052348497873390215 +53548,267.73999999979276,-0.05234768902524865 +53549,267.74499999979275,-0.052346879727940124 +53550,267.74999999979275,-0.052346069980911555 +53551,267.75499999979274,-0.05234525978360898 +53552,267.75999999979274,-0.05234444913547753 +53553,267.76499999979274,-0.05234363803596142 +53554,267.76999999979273,-0.05234282648450399 +53555,267.7749999997927,-0.052342014480547636 +53556,267.7799999997927,-0.05234120202353388 +53557,267.7849999997927,-0.05234038911290333 +53558,267.7899999997927,-0.05233957574809564 +53559,267.7949999997927,-0.05233876192854962 +53560,267.7999999997927,-0.052337947653703115 +53561,267.8049999997927,-0.05233713292299305 +53562,267.8099999997927,-0.05233631773585546 +53563,267.8149999997927,-0.052335502091725446 +53564,267.8199999997927,-0.05233468599003719 +53565,267.8249999997927,-0.05233386943022393 +53566,267.8299999997927,-0.052333052411718005 +53567,267.8349999997927,-0.05233223493395079 +53568,267.83999999979267,-0.05233141699635274 +53569,267.84499999979266,-0.05233059859835342 +53570,267.84999999979266,-0.052329779739381396 +53571,267.85499999979265,-0.052328960418864326 +53572,267.85999999979265,-0.05232814063622894 +53573,267.86499999979264,-0.052327320390900996 +53574,267.86999999979264,-0.05232649968230533 +53575,267.87499999979264,-0.05232567850986584 +53576,267.87999999979263,-0.05232485687300545 +53577,267.8849999997926,-0.05232403477114616 +53578,267.8899999997926,-0.05232321220370901 +53579,267.8949999997926,-0.052322389170114066 +53580,267.8999999997926,-0.05232156566978047 +53581,267.9049999997926,-0.05232074170212638 +53582,267.9099999997926,-0.05231991726656904 +53583,267.9149999997926,-0.05231909236252466 +53584,267.9199999997926,-0.05231826698940854 +53585,267.9249999997926,-0.05231744114663501 +53586,267.9299999997926,-0.05231661483361741 +53587,267.9349999997926,-0.052315788049768115 +53588,267.9399999997926,-0.052314960794498544 +53589,267.94499999979257,-0.05231413306721913 +53590,267.94999999979257,-0.05231330486733933 +53591,267.95499999979256,-0.052312476194267606 +53592,267.95999999979256,-0.05231164704741147 +53593,267.96499999979255,-0.052310817426177436 +53594,267.96999999979255,-0.052309987329971025 +53595,267.97499999979254,-0.05230915675819679 +53596,267.97999999979254,-0.052308325710258285 +53597,267.98499999979254,-0.05230749418555807 +53598,267.98999999979253,-0.05230666218349771 +53599,267.9949999997925,-0.05230582970347777 +53600,267.9999999997925,-0.05230499674489785 +53601,268.0049999997925,-0.0523041633071565 +53602,268.0099999997925,-0.0523033293896513 +53603,268.0149999997925,-0.05230249499177882 +53604,268.0199999997925,-0.05230166011293461 +53605,268.0249999997925,-0.05230082475251325 +53606,268.0299999997925,-0.05229998890990825 +53607,268.0349999997925,-0.052299152584512155 +53608,268.0399999997925,-0.052298315775716475 +53609,268.0449999997925,-0.0522974784829117 +53610,268.0499999997925,-0.052296640705487306 +53611,268.05499999979247,-0.052295802442831746 +53612,268.05999999979247,-0.05229496369433245 +53613,268.06499999979246,-0.052294124459375826 +53614,268.06999999979246,-0.05229328473734722 +53615,268.07499999979245,-0.05229244452763101 +53616,268.07999999979245,-0.05229160382961047 +53617,268.08499999979244,-0.05229076264266789 +53618,268.08999999979244,-0.05228992096618451 +53619,268.09499999979244,-0.05228907879954052 +53620,268.09999999979243,-0.05228823614211507 +53621,268.1049999997924,-0.05228739299328626 +53622,268.1099999997924,-0.05228654935243117 +53623,268.1149999997924,-0.05228570521892578 +53624,268.1199999997924,-0.05228486059214508 +53625,268.1249999997924,-0.052284015471462955 +53626,268.1299999997924,-0.05228316985625226 +53627,268.1349999997924,-0.05228232374588478 +53628,268.1399999997924,-0.052281477139731254 +53629,268.1449999997924,-0.05228063003716133 +53630,268.1499999997924,-0.05227978243754363 +53631,268.1549999997924,-0.05227893434024567 +53632,268.1599999997924,-0.05227808574463391 +53633,268.16499999979237,-0.05227723665007376 +53634,268.16999999979237,-0.052276387055929505 +53635,268.17499999979236,-0.0522755369615644 +53636,268.17999999979236,-0.05227468636634059 +53637,268.18499999979235,-0.05227383526961916 +53638,268.18999999979235,-0.05227298367076009 +53639,268.19499999979234,-0.052272131569122283 +53640,268.19999999979234,-0.05227127896406354 +53641,268.20499999979234,-0.0522704258549406 +53642,268.20999999979233,-0.05226957224110909 +53643,268.2149999997923,-0.052268718121923526 +53644,268.2199999997923,-0.05226786349673735 +53645,268.2249999997923,-0.05226700836490287 +53646,268.2299999997923,-0.05226615272577132 +53647,268.2349999997923,-0.052265296578692826 +53648,268.2399999997923,-0.052264439923016395 +53649,268.2449999997923,-0.05226358275808991 +53650,268.2499999997923,-0.052262725083260166 +53651,268.2549999997923,-0.05226186689787282 +53652,268.2599999997923,-0.052261008201272434 +53653,268.2649999997923,-0.05226014899280243 +53654,268.2699999997923,-0.0522592892718051 +53655,268.27499999979227,-0.05225842903762162 +53656,268.27999999979227,-0.05225756828959204 +53657,268.28499999979226,-0.05225670702705529 +53658,268.28999999979226,-0.05225584524934912 +53659,268.29499999979225,-0.05225498295581019 +53660,268.29999999979225,-0.05225412014577401 +53661,268.30499999979224,-0.05225325681857493 +53662,268.30999999979224,-0.05225239297354617 +53663,268.31499999979224,-0.052251528610019804 +53664,268.31999999979223,-0.05225066372732677 +53665,268.3249999997922,-0.052249798324796815 +53666,268.3299999997922,-0.05224893240175857 +53667,268.3349999997922,-0.05224806595753948 +53668,268.3399999997922,-0.05224719899146585 +53669,268.3449999997922,-0.05224633150286283 +53670,268.3499999997922,-0.05224546349105437 +53671,268.3549999997922,-0.05224459495536329 +53672,268.3599999997922,-0.0522437258951112 +53673,268.3649999997922,-0.05224285630961858 +53674,268.3699999997922,-0.0522419861982047 +53675,268.3749999997922,-0.05224111556018768 +53676,268.3799999997922,-0.05224024439488444 +53677,268.38499999979217,-0.05223937270161072 +53678,268.38999999979217,-0.05223850047968108 +53679,268.39499999979216,-0.052237627728408884 +53680,268.39999999979216,-0.05223675444710629 +53681,268.40499999979215,-0.05223588063508432 +53682,268.40999999979215,-0.05223500629165271 +53683,268.41499999979214,-0.052234131416120065 +53684,268.41999999979214,-0.05223325600779377 +53685,268.42499999979213,-0.05223238006597998 +53686,268.42999999979213,-0.05223150358998369 +53687,268.4349999997921,-0.052230626579108645 +53688,268.4399999997921,-0.05222974903265738 +53689,268.4449999997921,-0.052228870949931235 +53690,268.4499999997921,-0.05222799233023031 +53691,268.4549999997921,-0.052227113172853494 +53692,268.4599999997921,-0.05222623347709845 +53693,268.4649999997921,-0.05222535324226161 +53694,268.4699999997921,-0.052224472467638165 +53695,268.4749999997921,-0.052223591152522106 +53696,268.4799999997921,-0.05222270929620616 +53697,268.4849999997921,-0.05222182689798183 +53698,268.4899999997921,-0.05222094395713937 +53699,268.49499999979207,-0.052220060472967775 +53700,268.49999999979207,-0.05221917644475482 +53701,268.50499999979206,-0.05221829187178703 +53702,268.50999999979206,-0.05221740675334965 +53703,268.51499999979205,-0.052216521088726695 +53704,268.51999999979205,-0.05221563487720091 +53705,268.52499999979204,-0.05221474811805378 +53706,268.52999999979204,-0.052213860810565525 +53707,268.53499999979203,-0.052212972954015086 +53708,268.53999999979203,-0.052212084547680164 +53709,268.544999999792,-0.05221119559083715 +53710,268.549999999792,-0.05221030608276119 +53711,268.554999999792,-0.05220941602272615 +53712,268.559999999792,-0.052208525410004585 +53713,268.564999999792,-0.05220763424386779 +53714,268.569999999792,-0.05220674252358576 +53715,268.574999999792,-0.052205850248427214 +53716,268.579999999792,-0.052204957417659556 +53717,268.584999999792,-0.05220406403054892 +53718,268.589999999792,-0.05220317008636011 +53719,268.594999999792,-0.052202275584356646 +53720,268.599999999792,-0.05220138052380074 +53721,268.60499999979197,-0.052200484903953286 +53722,268.60999999979197,-0.052199588724073875 +53723,268.61499999979196,-0.0521986919834208 +53724,268.61999999979196,-0.052197794681251 +53725,268.62499999979195,-0.05219689681682012 +53726,268.62999999979195,-0.05219599838938246 +53727,268.63499999979194,-0.052195099398191 +53728,268.63999999979194,-0.05219419984249743 +53729,268.64499999979193,-0.052193299721552025 +53730,268.64999999979193,-0.0521923990346038 +53731,268.6549999997919,-0.052191497780900376 +53732,268.6599999997919,-0.05219059595968807 +53733,268.6649999997919,-0.05218969357021183 +53734,268.6699999997919,-0.052188790611715274 +53735,268.6749999997919,-0.05218788708344066 +53736,268.6799999997919,-0.05218698298462887 +53737,268.6849999997919,-0.05218607831451946 +53738,268.6899999997919,-0.052185173072350606 +53739,268.6949999997919,-0.052184267257359127 +53740,268.6999999997919,-0.052183360868780455 +53741,268.7049999997919,-0.05218245390584868 +53742,268.7099999997919,-0.052181546367796504 +53743,268.71499999979187,-0.05218063825385524 +53744,268.71999999979187,-0.05217972956325484 +53745,268.72499999979186,-0.05217882029522386 +53746,268.72999999979186,-0.05217791044898948 +53747,268.73499999979185,-0.05217700002377747 +53748,268.73999999979185,-0.052176089018812224 +53749,268.74499999979184,-0.05217517743331673 +53750,268.74999999979184,-0.052174265266512594 +53751,268.75499999979183,-0.052173352517619974 +53752,268.75999999979183,-0.05217243918585767 +53753,268.7649999997918,-0.05217152527044304 +53754,268.7699999997918,-0.05217061077059205 +53755,268.7749999997918,-0.052169695685519234 +53756,268.7799999997918,-0.0521687800144377 +53757,268.7849999997918,-0.05216786375655916 +53758,268.7899999997918,-0.05216694691109386 +53759,268.7949999997918,-0.05216602947725066 +53760,268.7999999997918,-0.052165111454236954 +53761,268.8049999997918,-0.052164192841258714 +53762,268.8099999997918,-0.05216327363752046 +53763,268.8149999997918,-0.05216235384222527 +53764,268.8199999997918,-0.052161433454574795 +53765,268.82499999979177,-0.052160512473769204 +53766,268.82999999979177,-0.05215959089900724 +53767,268.83499999979176,-0.052158668729486164 +53768,268.83999999979176,-0.0521577459644018 +53769,268.84499999979175,-0.05215682260294847 +53770,268.84999999979175,-0.05215589864431907 +53771,268.85499999979174,-0.052154974087705 +53772,268.85999999979174,-0.05215404893229621 +53773,268.86499999979173,-0.052153123177281116 +53774,268.86999999979173,-0.05215219682184673 +53775,268.8749999997917,-0.052151269865178505 +53776,268.8799999997917,-0.052150342306460463 +53777,268.8849999997917,-0.05214941414487508 +53778,268.8899999997917,-0.052148485379603385 +53779,268.8949999997917,-0.05214755600982488 +53780,268.8999999997917,-0.05214662603471757 +53781,268.9049999997917,-0.05214569545345795 +53782,268.9099999997917,-0.052144764265221 +53783,268.9149999997917,-0.052143832469180196 +53784,268.9199999997917,-0.0521429000645075 +53785,268.9249999997917,-0.05214196705037334 +53786,268.9299999997917,-0.0521410334259466 +53787,268.93499999979167,-0.052140099190394695 +53788,268.93999999979167,-0.052139164342883446 +53789,268.94499999979166,-0.052138228882577166 +53790,268.94999999979166,-0.05213729280863864 +53791,268.95499999979165,-0.052136356120229065 +53792,268.95999999979165,-0.05213541881650815 +53793,268.96499999979164,-0.05213448089663402 +53794,268.96999999979164,-0.052133542359763224 +53795,268.97499999979163,-0.0521326032050508 +53796,268.97999999979163,-0.052131663431650196 +53797,268.9849999997916,-0.052130723038713286 +53798,268.9899999997916,-0.0521297820253904 +53799,268.9949999997916,-0.05212884039083027 +53800,268.9999999997916,-0.05212789813418006 +53801,269.0049999997916,-0.05212695525458537 +53802,269.0099999997916,-0.05212601175119019 +53803,269.0149999997916,-0.05212506762313693 +53804,269.0199999997916,-0.05212412286956641 +53805,269.0249999997916,-0.052123177489617846 +53806,269.0299999997916,-0.05212223148242886 +53807,269.0349999997916,-0.05212128484713547 +53808,269.0399999997916,-0.05212033758287209 +53809,269.04499999979157,-0.05211938968877149 +53810,269.04999999979157,-0.05211844116396489 +53811,269.05499999979156,-0.05211749200758182 +53812,269.05999999979156,-0.05211654221875023 +53813,269.06499999979155,-0.052115591796596424 +53814,269.06999999979155,-0.05211464074024508 +53815,269.07499999979154,-0.052113689048819224 +53816,269.07999999979154,-0.05211273672144029 +53817,269.08499999979153,-0.052111783757228 +53818,269.08999999979153,-0.05211083015530048 +53819,269.0949999997915,-0.05210987591477418 +53820,269.0999999997915,-0.05210892103476391 +53821,269.1049999997915,-0.05210796551438281 +53822,269.1099999997915,-0.05210700935274235 +53823,269.1149999997915,-0.05210605254895235 +53824,269.1199999997915,-0.05210509510212094 +53825,269.1249999997915,-0.05210413701135458 +53826,269.1299999997915,-0.052103178275758055 +53827,269.1349999997915,-0.052102218894434456 +53828,269.1399999997915,-0.052101258866485214 +53829,269.1449999997915,-0.05210029819101001 +53830,269.1499999997915,-0.05209933686710689 +53831,269.15499999979147,-0.052098374893872146 +53832,269.15999999979147,-0.05209741227040041 +53833,269.16499999979146,-0.05209644899578457 +53834,269.16999999979146,-0.05209548506911583 +53835,269.17499999979145,-0.052094520489483646 +53836,269.17999999979145,-0.052093555255975775 +53837,269.18499999979144,-0.05209258936767823 +53838,269.18999999979144,-0.052091622823675326 +53839,269.19499999979143,-0.0520906556230496 +53840,269.19999999979143,-0.052089687764881876 +53841,269.2049999997914,-0.052088719248251224 +53842,269.2099999997914,-0.05208775007223497 +53843,269.2149999997914,-0.052086780235908695 +53844,269.2199999997914,-0.052085809738346214 +53845,269.2249999997914,-0.052084838578619584 +53846,269.2299999997914,-0.052083866755799096 +53847,269.2349999997914,-0.05208289426895327 +53848,269.2399999997914,-0.052081921117148856 +53849,269.2449999997914,-0.05208094729945083 +53850,269.2499999997914,-0.052079972814922375 +53851,269.2549999997914,-0.05207899766262489 +53852,269.2599999997914,-0.052078021841617986 +53853,269.26499999979137,-0.052077045350959465 +53854,269.26999999979137,-0.05207606818970535 +53855,269.27499999979136,-0.05207509035690985 +53856,269.27999999979136,-0.05207411185162536 +53857,269.28499999979135,-0.052073132672902464 +53858,269.28999999979135,-0.052072152819789906 +53859,269.29499999979134,-0.05207117229133465 +53860,269.29999999979134,-0.0520701910865818 +53861,269.30499999979133,-0.05206920920457465 +53862,269.30999999979133,-0.05206822664435463 +53863,269.3149999997913,-0.05206724340496135 +53864,269.3199999997913,-0.052066259485432566 +53865,269.3249999997913,-0.05206527488480418 +53866,269.3299999997913,-0.05206428960211025 +53867,269.3349999997913,-0.05206330363638296 +53868,269.3399999997913,-0.05206231698665263 +53869,269.3449999997913,-0.05206132965194774 +53870,269.3499999997913,-0.05206034163129486 +53871,269.3549999997913,-0.052059352923718695 +53872,269.3599999997913,-0.052058363528242044 +53873,269.3649999997913,-0.05205737344388587 +53874,269.3699999997913,-0.05205638266966919 +53875,269.37499999979127,-0.05205539120460917 +53876,269.37999999979127,-0.05205439904772102 +53877,269.38499999979126,-0.052053406198018085 +53878,269.38999999979126,-0.052052412654511784 +53879,269.39499999979125,-0.052051418416211616 +53880,269.39999999979125,-0.05205042348212517 +53881,269.40499999979124,-0.0520494278512581 +53882,269.40999999979124,-0.052048431522614125 +53883,269.41499999979123,-0.05204743449519502 +53884,269.41999999979123,-0.05204643676800065 +53885,269.4249999997912,-0.05204543834002888 +53886,269.4299999997912,-0.052044439210275684 +53887,269.4349999997912,-0.05204343937773504 +53888,269.4399999997912,-0.05204243884139899 +53889,269.4449999997912,-0.052041437600257597 +53890,269.4499999997912,-0.05204043565329893 +53891,269.4549999997912,-0.05203943299950912 +53892,269.4599999997912,-0.0520384296378723 +53893,269.4649999997912,-0.05203742556737062 +53894,269.4699999997912,-0.05203642078698424 +53895,269.4749999997912,-0.052035415295691306 +53896,269.4799999997912,-0.052034409092467995 +53897,269.48499999979117,-0.05203340217628845 +53898,269.48999999979117,-0.05203239454612482 +53899,269.49499999979116,-0.05203138620094721 +53900,269.49999999979116,-0.05203037713972374 +53901,269.50499999979115,-0.05202936736142047 +53902,269.50999999979115,-0.05202835686500146 +53903,269.51499999979114,-0.052027345649428694 +53904,269.51999999979114,-0.052026333713662144 +53905,269.52499999979113,-0.052025321056659725 +53906,269.52999999979113,-0.05202430767737728 +53907,269.5349999997911,-0.052023293574768634 +53908,269.5399999997911,-0.052022278747785505 +53909,269.5449999997911,-0.05202126319537757 +53910,269.5499999997911,-0.05202024691649243 +53911,269.5549999997911,-0.052019229910075584 +53912,269.5599999997911,-0.05201821217507047 +53913,269.5649999997911,-0.05201719371041843 +53914,269.5699999997911,-0.052016174515058695 +53915,269.5749999997911,-0.05201515458792841 +53916,269.5799999997911,-0.05201413392796261 +53917,269.5849999997911,-0.05201311253409421 +53918,269.5899999997911,-0.052012090405254015 +53919,269.59499999979107,-0.05201106754037072 +53920,269.59999999979107,-0.05201004393837086 +53921,269.60499999979106,-0.05200901959817885 +53922,269.60999999979106,-0.052007994518716974 +53923,269.61499999979105,-0.05200696869890536 +53924,269.61999999979105,-0.05200594213766199 +53925,269.62499999979104,-0.0520049148339027 +53926,269.62999999979104,-0.052003886786541144 +53927,269.63499999979103,-0.05200285799448881 +53928,269.63999999979103,-0.05200182845665502 +53929,269.644999999791,-0.05200079817194693 +53930,269.649999999791,-0.051999767139269494 +53931,269.654999999791,-0.05199873535752548 +53932,269.659999999791,-0.05199770282561544 +53933,269.664999999791,-0.05199666954243776 +53934,269.669999999791,-0.051995635506888606 +53935,269.674999999791,-0.05199460071786192 +53936,269.679999999791,-0.051993565174249426 +53937,269.684999999791,-0.05199252887494063 +53938,269.689999999791,-0.05199149181882281 +53939,269.694999999791,-0.051990454004781 +53940,269.699999999791,-0.05198941543169801 +53941,269.70499999979097,-0.051988376098454366 +53942,269.70999999979097,-0.05198733600392837 +53943,269.71499999979096,-0.05198629514699604 +53944,269.71999999979096,-0.05198525352653117 +53945,269.72499999979095,-0.05198421114140522 +53946,269.72999999979095,-0.05198316799048743 +53947,269.73499999979094,-0.05198212407264472 +53948,269.73999999979094,-0.05198107938674174 +53949,269.74499999979093,-0.05198003393164082 +53950,269.74999999979093,-0.05197898770620202 +53951,269.7549999997909,-0.05197794070928308 +53952,269.7599999997909,-0.0519768929397394 +53953,269.7649999997909,-0.051975844396424095 +53954,269.7699999997909,-0.051974795078187926 +53955,269.7749999997909,-0.05197374498387934 +53956,269.7799999997909,-0.05197269411234446 +53957,269.7849999997909,-0.05197164246242701 +53958,269.7899999997909,-0.05197059003296842 +53959,269.7949999997909,-0.05196953682280773 +53960,269.7999999997909,-0.05196848283078163 +53961,269.8049999997909,-0.05196742805572443 +53962,269.8099999997909,-0.05196637249646807 +53963,269.81499999979087,-0.051965316151842106 +53964,269.81999999979087,-0.05196425902067371 +53965,269.82499999979086,-0.05196320110178765 +53966,269.82999999979086,-0.05196214239400628 +53967,269.83499999979085,-0.05196108289614958 +53968,269.83999999979085,-0.051960022607035104 +53969,269.84499999979084,-0.051958961525477965 +53970,269.84999999979084,-0.05195789965029087 +53971,269.85499999979083,-0.05195683698028408 +53972,269.85999999979083,-0.05195577351426542 +53973,269.8649999997908,-0.05195470925104026 +53974,269.8699999997908,-0.051953644189411535 +53975,269.8749999997908,-0.05195257832817971 +53976,269.8799999997908,-0.05195151166614278 +53977,269.8849999997908,-0.05195044420209627 +53978,269.8899999997908,-0.05194937593483323 +53979,269.8949999997908,-0.05194830686314421 +53980,269.8999999997908,-0.05194723698581727 +53981,269.9049999997908,-0.05194616630163799 +53982,269.9099999997908,-0.05194509480938942 +53983,269.9149999997908,-0.0519440225078521 +53984,269.9199999997908,-0.051942949395804065 +53985,269.92499999979077,-0.05194187547202081 +53986,269.92999999979077,-0.0519408007352753 +53987,269.93499999979076,-0.05193972518433796 +53988,269.93999999979076,-0.051938648817976656 +53989,269.94499999979075,-0.05193757163495673 +53990,269.94999999979075,-0.05193649363404092 +53991,269.95499999979074,-0.051935414813989424 +53992,269.95999999979074,-0.05193433517355987 +53993,269.96499999979073,-0.05193325471150729 +53994,269.96999999979073,-0.05193217342658413 +53995,269.9749999997907,-0.051931091317540236 +53996,269.9799999997907,-0.05193000838312285 +53997,269.9849999997907,-0.05192892462207662 +53998,269.9899999997907,-0.05192784003314357 +53999,269.9949999997907,-0.05192675461506309 +54000,269.9999999997907,-0.05192566836657194 +54001,270.0049999997907,-0.05192458128640425 +54002,270.0099999997907,-0.051923493373291496 +54003,270.0149999997907,-0.0519224046259625 +54004,270.0199999997907,-0.051921315043143436 +54005,270.0249999997907,-0.051920224623557804 +54006,270.0299999997907,-0.05191913336592643 +54007,270.03499999979067,-0.051918041268967444 +54008,270.03999999979067,-0.0519169483313963 +54009,270.04499999979066,-0.05191585455192576 +54010,270.04999999979066,-0.05191475992926587 +54011,270.05499999979065,-0.051913664462123976 +54012,270.05999999979065,-0.05191256814920469 +54013,270.06499999979064,-0.05191147098920992 +54014,270.06999999979064,-0.051910372980838816 +54015,270.07499999979063,-0.05190927412278779 +54016,270.07999999979063,-0.05190817441375053 +54017,270.0849999997906,-0.051907073852417926 +54018,270.0899999997906,-0.05190597243747814 +54019,270.0949999997906,-0.05190487016761655 +54020,270.0999999997906,-0.05190376704151575 +54021,270.1049999997906,-0.05190266305785555 +54022,270.1099999997906,-0.051901558215312976 +54023,270.1149999997906,-0.05190045251256223 +54024,270.1199999997906,-0.051899345948274715 +54025,270.1249999997906,-0.051898238521119015 +54026,270.1299999997906,-0.05189713022976089 +54027,270.1349999997906,-0.05189602107286328 +54028,270.1399999997906,-0.051894911049086265 +54029,270.14499999979057,-0.05189380015708707 +54030,270.14999999979057,-0.05189268839552008 +54031,270.15499999979056,-0.05189157576303681 +54032,270.15999999979056,-0.0518904622582859 +54033,270.16499999979055,-0.05188934787991309 +54034,270.16999999979055,-0.051888232626561274 +54035,270.17499999979054,-0.051887116496870424 +54036,270.17999999979054,-0.051885999489477586 +54037,270.18499999979053,-0.051884881603016936 +54038,270.18999999979053,-0.0518837628361197 +54039,270.1949999997905,-0.05188264318741419 +54040,270.1999999997905,-0.05188152265552576 +54041,270.2049999997905,-0.051880401239076834 +54042,270.2099999997905,-0.05187927893668689 +54043,270.2149999997905,-0.05187815574697241 +54044,270.2199999997905,-0.05187703166854695 +54045,270.2249999997905,-0.05187590670002105 +54046,270.2299999997905,-0.051874780840002285 +54047,270.2349999997905,-0.05187365408709522 +54048,270.2399999997905,-0.05187252643990142 +54049,270.2449999997905,-0.05187139789701945 +54050,270.2499999997905,-0.051870268457044844 +54051,270.25499999979047,-0.05186913811857011 +54052,270.25999999979047,-0.0518680068801847 +54053,270.26499999979046,-0.05186687474047504 +54054,270.26999999979046,-0.051865741698024506 +54055,270.27499999979045,-0.05186460775141339 +54056,270.27999999979045,-0.05186347289921892 +54057,270.28499999979044,-0.051862337140015244 +54058,270.28999999979044,-0.05186120047237343 +54059,270.29499999979043,-0.051860062894861426 +54060,270.29999999979043,-0.051858924406044095 +54061,270.3049999997904,-0.051857785004483174 +54062,270.3099999997904,-0.051856644688737276 +54063,270.3149999997904,-0.051855503457361875 +54064,270.3199999997904,-0.0518543613089093 +54065,270.3249999997904,-0.05185321824192876 +54066,270.3299999997904,-0.051852074254966254 +54067,270.3349999997904,-0.051850929346564656 +54068,270.3399999997904,-0.05184978351526364 +54069,270.3449999997904,-0.051848636759599685 +54070,270.3499999997904,-0.051847489078106095 +54071,270.3549999997904,-0.05184634046931295 +54072,270.3599999997904,-0.05184519093174713 +54073,270.36499999979037,-0.05184404046393229 +54074,270.36999999979037,-0.05184288906438883 +54075,270.37499999979036,-0.05184173673163395 +54076,270.37999999979036,-0.051840583464181536 +54077,270.38499999979035,-0.05183942926054229 +54078,270.38999999979035,-0.051838274119223586 +54079,270.39499999979034,-0.05183711803872953 +54080,270.39999999979034,-0.051835961017560946 +54081,270.40499999979033,-0.051834803054215374 +54082,270.40999999979033,-0.05183364414718702 +54083,270.4149999997903,-0.05183248429496679 +54084,270.4199999997903,-0.05183132349604226 +54085,270.4249999997903,-0.05183016174889765 +54086,270.4299999997903,-0.05182899905201387 +54087,270.4349999997903,-0.05182783540386845 +54088,270.4399999997903,-0.05182667080293557 +54089,270.4449999997903,-0.05182550524768601 +54090,270.4499999997903,-0.05182433873658719 +54091,270.4549999997903,-0.05182317126810314 +54092,270.4599999997903,-0.05182200284069445 +54093,270.4649999997903,-0.051820833452818335 +54094,270.4699999997903,-0.051819663102928556 +54095,270.47499999979027,-0.05181849178947546 +54096,270.47999999979027,-0.05181731951090595 +54097,270.48499999979026,-0.051816146265663464 +54098,270.48999999979026,-0.051814972052187984 +54099,270.49499999979025,-0.05181379686891602 +54100,270.49999999979025,-0.05181262071428058 +54101,270.50499999979024,-0.051811443586711206 +54102,270.50999999979024,-0.05181026548463392 +54103,270.51499999979023,-0.05180908640647122 +54104,270.51999999979023,-0.05180790635064211 +54105,270.5249999997902,-0.05180672531556205 +54106,270.5299999997902,-0.051805543299642924 +54107,270.5349999997902,-0.051804360301293075 +54108,270.5399999997902,-0.05180317631891731 +54109,270.5449999997902,-0.05180199135091682 +54110,270.5499999997902,-0.05180080539568924 +54111,270.5549999997902,-0.051799618451628573 +54112,270.5599999997902,-0.05179843051712527 +54113,270.5649999997902,-0.051797241590566104 +54114,270.5699999997902,-0.05179605167033425 +54115,270.5749999997902,-0.051794860754809234 +54116,270.5799999997902,-0.05179366884236694 +54117,270.58499999979017,-0.0517924759313796 +54118,270.58999999979017,-0.05179128202021573 +54119,270.59499999979016,-0.05179008710724023 +54120,270.59999999979016,-0.05178889119081424 +54121,270.60499999979015,-0.05178769426929526 +54122,270.60999999979015,-0.051786496341037026 +54123,270.61499999979014,-0.05178529740438955 +54124,270.61999999979014,-0.05178409745769915 +54125,270.62499999979013,-0.05178289649930834 +54126,270.62999999979013,-0.05178169452755591 +54127,270.6349999997901,-0.05178049154077689 +54128,270.6399999997901,-0.051779287537302494 +54129,270.6449999997901,-0.05177808251546017 +54130,270.6499999997901,-0.05177687647357354 +54131,270.6549999997901,-0.051775669409962435 +54132,270.6599999997901,-0.05177446132294284 +54133,270.6649999997901,-0.05177325221082691 +54134,270.6699999997901,-0.05177204207192296 +54135,270.6749999997901,-0.051770830904535416 +54136,270.6799999997901,-0.05176961870696488 +54137,270.6849999997901,-0.051768405477508016 +54138,270.6899999997901,-0.05176719121445763 +54139,270.69499999979007,-0.0517659759161026 +54140,270.69999999979007,-0.05176475958072791 +54141,270.70499999979006,-0.05176354220661459 +54142,270.70999999979006,-0.05176232379203974 +54143,270.71499999979005,-0.0517611043352765 +54144,270.71999999979005,-0.05175988383459405 +54145,270.72499999979004,-0.051758662288257595 +54146,270.72999999979004,-0.05175743969452835 +54147,270.73499999979003,-0.0517562160516635 +54148,270.73999999979003,-0.051754991357916266 +54149,270.74499999979,-0.051753765611535815 +54150,270.74999999979,-0.051752538810767267 +54151,270.75499999979,-0.051751310953851715 +54152,270.75999999979,-0.051750082039026195 +54153,270.76499999979,-0.05174885206452365 +54154,270.76999999979,-0.05174762102857292 +54155,270.77499999979,-0.051746388929398805 +54156,270.77999999979,-0.051745155765221935 +54157,270.78499999979,-0.051743921534258844 +54158,270.78999999979,-0.05174268623472193 +54159,270.79499999979,-0.05174144986481943 +54160,270.79999999979,-0.051740212422755436 +54161,270.80499999978997,-0.05173897390672985 +54162,270.80999999978997,-0.05173773431493842 +54163,270.81499999978996,-0.051736493645572666 +54164,270.81999999978996,-0.05173525189681989 +54165,270.82499999978995,-0.05173400906686319 +54166,270.82999999978995,-0.05173276515388143 +54167,270.83499999978994,-0.051731520156049204 +54168,270.83999999978994,-0.05173027407153685 +54169,270.84499999978993,-0.051729026898510444 +54170,270.84999999978993,-0.051727778635131755 +54171,270.8549999997899,-0.051726529279558266 +54172,270.8599999997899,-0.05172527882994312 +54173,270.8649999997899,-0.05172402728443517 +54174,270.8699999997899,-0.05172277464117889 +54175,270.8749999997899,-0.05172152089831441 +54176,270.8799999997899,-0.05172026605397751 +54177,270.8849999997899,-0.051719010106299576 +54178,270.8899999997899,-0.05171775305340759 +54179,270.8949999997899,-0.05171649489342414 +54180,270.8999999997899,-0.051715235624467386 +54181,270.9049999997899,-0.05171397524465105 +54182,270.9099999997899,-0.051712713752084416 +54183,270.91499999978987,-0.051711451144872286 +54184,270.91999999978987,-0.051710187421114995 +54185,270.92499999978986,-0.0517089225789084 +54186,270.92999999978986,-0.05170765661634384 +54187,270.93499999978985,-0.05170638953150812 +54188,270.93999999978985,-0.05170512132248357 +54189,270.94499999978984,-0.05170385198734789 +54190,270.94999999978984,-0.051702581524174306 +54191,270.95499999978983,-0.051701309931031406 +54192,270.95999999978983,-0.05170003720598322 +54193,270.9649999997898,-0.05169876334708917 +54194,270.9699999997898,-0.051697488352404064 +54195,270.9749999997898,-0.05169621221997807 +54196,270.9799999997898,-0.05169493494785671 +54197,270.9849999997898,-0.05169365653408086 +54198,270.9899999997898,-0.051692376976686716 +54199,270.9949999997898,-0.05169109627370578 +54200,270.9999999997898,-0.05168981442316485 +54201,271.0049999997898,-0.05168853142308601 +54202,271.0099999997898,-0.051687247271486596 +54203,271.0149999997898,-0.05168596196637924 +54204,271.0199999997898,-0.05168467550577175 +54205,271.02499999978977,-0.05168338788766721 +54206,271.02999999978977,-0.05168209911006389 +54207,271.03499999978976,-0.051680809170955244 +54208,271.03999999978976,-0.05167951806832991 +54209,271.04499999978975,-0.0516782258001717 +54210,271.04999999978975,-0.051676932364459575 +54211,271.05499999978974,-0.0516756377591676 +54212,271.05999999978974,-0.051674341982264976 +54213,271.06499999978973,-0.051673045031716 +54214,271.06999999978973,-0.05167174690548008 +54215,271.0749999997897,-0.051670447601511654 +54216,271.0799999997897,-0.051669147117760245 +54217,271.0849999997897,-0.051667845452170395 +54218,271.0899999997897,-0.051666542602681706 +54219,271.0949999997897,-0.051665238567228725 +54220,271.0999999997897,-0.051663933343741066 +54221,271.1049999997897,-0.05166262693014325 +54222,271.1099999997897,-0.05166131932435481 +54223,271.1149999997897,-0.0516600105242902 +54224,271.1199999997897,-0.051658700527858814 +54225,271.1249999997897,-0.05165738933296495 +54226,271.1299999997897,-0.051656076937507824 +54227,271.13499999978967,-0.051654763339381474 +54228,271.13999999978967,-0.05165344853647487 +54229,271.14499999978966,-0.05165213252667179 +54230,271.14999999978966,-0.051650815307850866 +54231,271.15499999978965,-0.05164949687788551 +54232,271.15999999978965,-0.05164817723464398 +54233,271.16499999978964,-0.051646856375989286 +54234,271.16999999978964,-0.0516455342997792 +54235,271.17499999978963,-0.051644211003866264 +54236,271.17999999978963,-0.051642886486097724 +54237,271.1849999997896,-0.05164156074431556 +54238,271.1899999997896,-0.05164023377635644 +54239,271.1949999997896,-0.05163890558005174 +54240,271.1999999997896,-0.051637576153227456 +54241,271.2049999997896,-0.05163624549370427 +54242,271.2099999997896,-0.05163491359929745 +54243,271.2149999997896,-0.051633580467816916 +54244,271.2199999997896,-0.051632246097067167 +54245,271.2249999997896,-0.05163091048484729 +54246,271.2299999997896,-0.051629573628950924 +54247,271.2349999997896,-0.05162823552716623 +54248,271.2399999997896,-0.05162689617727593 +54249,271.24499999978957,-0.051625555577057225 +54250,271.24999999978957,-0.05162421372428183 +54251,271.25499999978956,-0.051622870616715916 +54252,271.25999999978956,-0.051621526252120103 +54253,271.26499999978955,-0.05162018062824946 +54254,271.26999999978955,-0.05161883374285347 +54255,271.27499999978954,-0.05161748559367601 +54256,271.27999999978954,-0.051616136178455334 +54257,271.28499999978953,-0.05161478549492408 +54258,271.28999999978953,-0.05161343354080921 +54259,271.2949999997895,-0.05161208031383203 +54260,271.2999999997895,-0.051610725811708134 +54261,271.3049999997895,-0.051609370032147425 +54262,271.3099999997895,-0.05160801297285407 +54263,271.3149999997895,-0.051606654631526486 +54264,271.3199999997895,-0.0516052950058573 +54265,271.3249999997895,-0.051603934093533414 +54266,271.3299999997895,-0.05160257189223586 +54267,271.3349999997895,-0.051601208399639886 +54268,271.3399999997895,-0.051599843613414895 +54269,271.3449999997895,-0.05159847753122441 +54270,271.3499999997895,-0.05159711015072608 +54271,271.35499999978947,-0.05159574146957168 +54272,271.35999999978947,-0.05159437148540703 +54273,271.36499999978946,-0.051593000195872006 +54274,271.36999999978946,-0.05159162759860058 +54275,271.37499999978945,-0.051590253691220694 +54276,271.37999999978945,-0.05158887847135431 +54277,271.38499999978944,-0.05158750193661736 +54278,271.38999999978944,-0.05158612408461975 +54279,271.39499999978943,-0.05158474491296534 +54280,271.39999999978943,-0.05158336441925188 +54281,271.4049999997894,-0.05158198260107106 +54282,271.4099999997894,-0.051580599456008444 +54283,271.4149999997894,-0.05157921498164343 +54284,271.4199999997894,-0.05157782917554928 +54285,271.4249999997894,-0.05157644203529309 +54286,271.4299999997894,-0.05157505355843571 +54287,271.4349999997894,-0.05157366374253183 +54288,271.4399999997894,-0.05157227258512987 +54289,271.4449999997894,-0.05157088008377197 +54290,271.4499999997894,-0.05156948623599402 +54291,271.4549999997894,-0.051568091039325595 +54292,271.4599999997894,-0.051566694491289936 +54293,271.46499999978937,-0.05156529658940396 +54294,271.46999999978937,-0.0515638973311782 +54295,271.47499999978936,-0.05156249671411679 +54296,271.47999999978936,-0.05156109473571749 +54297,271.48499999978935,-0.051559691393471614 +54298,271.48999999978935,-0.051558286684864 +54299,271.49499999978934,-0.05155688060737305 +54300,271.49999999978934,-0.05155547315847065 +54301,271.50499999978933,-0.05155406433562217 +54302,271.50999999978933,-0.05155265413628644 +54303,271.5149999997893,-0.05155124255791573 +54304,271.5199999997893,-0.05154982959795574 +54305,271.5249999997893,-0.051548415253845535 +54306,271.5299999997893,-0.05154699952301758 +54307,271.5349999997893,-0.051545582402897666 +54308,271.5399999997893,-0.05154416389090493 +54309,271.5449999997893,-0.05154274398445182 +54310,271.5499999997893,-0.05154132268094404 +54311,271.5549999997893,-0.051539899977780565 +54312,271.5599999997893,-0.05153847587235363 +54313,271.5649999997893,-0.05153705036204865 +54314,271.5699999997893,-0.05153562344424423 +54315,271.57499999978927,-0.051534195116312166 +54316,271.57999999978927,-0.051532765375617386 +54317,271.58499999978926,-0.051531334219517944 +54318,271.58999999978926,-0.05152990164536499 +54319,271.59499999978925,-0.051528467650502736 +54320,271.59999999978925,-0.05152703223226844 +54321,271.60499999978924,-0.05152559538799242 +54322,271.60999999978924,-0.05152415711499798 +54323,271.61499999978923,-0.05152271741060139 +54324,271.61999999978923,-0.05152127627211188 +54325,271.6249999997892,-0.051519833696831614 +54326,271.6299999997892,-0.051518389682055674 +54327,271.6349999997892,-0.05151694422507201 +54328,271.6399999997892,-0.05151549732316143 +54329,271.6449999997892,-0.05151404897359757 +54330,271.6499999997892,-0.051512599173646895 +54331,271.6549999997892,-0.05151114792056862 +54332,271.6599999997892,-0.051509695211614755 +54333,271.6649999997892,-0.05150824104403002 +54334,271.6699999997892,-0.05150678541505185 +54335,271.6749999997892,-0.05150532832191037 +54336,271.6799999997892,-0.05150386976182836 +54337,271.68499999978917,-0.05150240973202122 +54338,271.68999999978917,-0.05150094822969699 +54339,271.69499999978916,-0.05149948525205625 +54340,271.69999999978916,-0.05149802079629217 +54341,271.70499999978915,-0.05149655485959042 +54342,271.70999999978915,-0.05149508743912921 +54343,271.71499999978914,-0.0514936185320792 +54344,271.71999999978914,-0.0514921481356035 +54345,271.72499999978913,-0.05149067624685767 +54346,271.72999999978913,-0.05148920286298966 +54347,271.7349999997891,-0.051487727981139784 +54348,271.7399999997891,-0.051486251598440703 +54349,271.7449999997891,-0.0514847737120174 +54350,271.7499999997891,-0.05148329431898716 +54351,271.7549999997891,-0.051481813416459535 +54352,271.7599999997891,-0.05148033100153629 +54353,271.7649999997891,-0.05147884707131142 +54354,271.7699999997891,-0.051477361622871115 +54355,271.7749999997891,-0.051475874653293716 +54356,271.7799999997891,-0.05147438615964967 +54357,271.7849999997891,-0.05147289613900155 +54358,271.7899999997891,-0.051471404588403984 +54359,271.79499999978907,-0.05146991150490367 +54360,271.79999999978907,-0.0514684168855393 +54361,271.80499999978906,-0.051466920727341575 +54362,271.80999999978906,-0.051465423027333146 +54363,271.81499999978905,-0.05146392378252861 +54364,271.81999999978905,-0.051462422989934455 +54365,271.82499999978904,-0.05146092064654903 +54366,271.82999999978904,-0.05145941674936256 +54367,271.83499999978903,-0.051457911295357095 +54368,271.83999999978903,-0.05145640428150644 +54369,271.844999999789,-0.05145489570477616 +54370,271.849999999789,-0.0514533855621236 +54371,271.854999999789,-0.05145187385049775 +54372,271.859999999789,-0.05145036056683931 +54373,271.864999999789,-0.0514488457080806 +54374,271.869999999789,-0.05144732927114555 +54375,271.874999999789,-0.0514458112529497 +54376,271.879999999789,-0.051444291650400105 +54377,271.884999999789,-0.05144277046039538 +54378,271.889999999789,-0.05144124767982561 +54379,271.894999999789,-0.05143972330557233 +54380,271.899999999789,-0.05143819733450853 +54381,271.90499999978897,-0.05143666976349859 +54382,271.90999999978897,-0.05143514058939824 +54383,271.91499999978896,-0.0514336098090546 +54384,271.91999999978896,-0.05143207741930604 +54385,271.92499999978895,-0.05143054341698225 +54386,271.92999999978895,-0.05142900779890411 +54387,271.93499999978894,-0.05142747056188378 +54388,271.93999999978894,-0.05142593170272455 +54389,271.94499999978893,-0.05142439121822088 +54390,271.94999999978893,-0.05142284910515833 +54391,271.9549999997889,-0.051421305360313585 +54392,271.9599999997889,-0.05141975998045433 +54393,271.9649999997889,-0.05141821296233931 +54394,271.9699999997889,-0.05141666430271825 +54395,271.9749999997889,-0.05141511399833182 +54396,271.9799999997889,-0.051413562045911604 +54397,271.9849999997889,-0.05141200844218009 +54398,271.9899999997889,-0.05141045318385064 +54399,271.9949999997889,-0.0514088962676274 +54400,271.9999999997889,-0.05140733769020533 +54401,272.0049999997889,-0.05140577744827013 +54402,272.0099999997889,-0.051404215538498235 +54403,272.01499999978887,-0.05140265195755677 +54404,272.01999999978887,-0.0514010867021035 +54405,272.02499999978886,-0.05139951976878682 +54406,272.02999999978886,-0.051397951154245704 +54407,272.03499999978885,-0.0513963808551097 +54408,272.03999999978885,-0.05139480886799883 +54409,272.04499999978884,-0.05139323518952362 +54410,272.04999999978884,-0.05139165981628506 +54411,272.05499999978883,-0.05139008274487452 +54412,272.05999999978883,-0.051388503971873764 +54413,272.0649999997888,-0.051386923493854895 +54414,272.0699999997888,-0.05138534130738032 +54415,272.0749999997888,-0.0513837574090027 +54416,272.0799999997888,-0.051382171795264955 +54417,272.0849999997888,-0.05138058446270017 +54418,272.0899999997888,-0.051378995407831626 +54419,272.0949999997888,-0.05137740462717271 +54420,272.0999999997888,-0.05137581211722689 +54421,272.1049999997888,-0.05137421787448768 +54422,272.1099999997888,-0.051372621895438654 +54423,272.1149999997888,-0.05137102417655331 +54424,272.1199999997888,-0.05136942471429509 +54425,272.12499999978877,-0.05136782350511737 +54426,272.12999999978877,-0.051366220545463366 +54427,272.13499999978876,-0.05136461583176613 +54428,272.13999999978876,-0.051363009360448485 +54429,272.14499999978875,-0.051361401127923034 +54430,272.14999999978875,-0.05135979113059206 +54431,272.15499999978874,-0.051358179364847545 +54432,272.15999999978874,-0.05135656582707109 +54433,272.16499999978873,-0.05135495051363391 +54434,272.16999999978873,-0.05135333342089675 +54435,272.1749999997887,-0.05135171454520988 +54436,272.1799999997887,-0.05135009388291306 +54437,272.1849999997887,-0.05134847143033548 +54438,272.1899999997887,-0.051346847183795744 +54439,272.1949999997887,-0.05134522113960179 +54440,272.1999999997887,-0.051343593294050895 +54441,272.2049999997887,-0.05134196364342958 +54442,272.2099999997887,-0.05134033218401365 +54443,272.2149999997887,-0.05133869891206808 +54444,272.2199999997887,-0.05133706382384701 +54445,272.2249999997887,-0.051335426915593674 +54446,272.2299999997887,-0.05133378818354041 +54447,272.23499999978867,-0.05133214762390857 +54448,272.23999999978867,-0.05133050523290851 +54449,272.24499999978866,-0.0513288610067395 +54450,272.24999999978866,-0.051327214941589774 +54451,272.25499999978865,-0.051325567033636374 +54452,272.25999999978865,-0.05132391727904519 +54453,272.26499999978864,-0.05132226567397088 +54454,272.26999999978864,-0.051320612214556846 +54455,272.27499999978863,-0.05131895689693519 +54456,272.27999999978863,-0.051317299717226664 +54457,272.2849999997886,-0.0513156406715406 +54458,272.2899999997886,-0.051313979755974896 +54459,272.2949999997886,-0.05131231696661601 +54460,272.2999999997886,-0.05131065229953884 +54461,272.3049999997886,-0.05130898575080672 +54462,272.3099999997886,-0.05130731731647134 +54463,272.3149999997886,-0.051305646992572805 +54464,272.3199999997886,-0.05130397477513944 +54465,272.3249999997886,-0.05130230066018786 +54466,272.3299999997886,-0.05130062464372287 +54467,272.3349999997886,-0.05129894672173745 +54468,272.3399999997886,-0.05129726689021267 +54469,272.34499999978857,-0.051295585145117686 +54470,272.34999999978857,-0.051293901482409685 +54471,272.35499999978856,-0.05129221589803379 +54472,272.35999999978856,-0.05129052838792309 +54473,272.36499999978855,-0.051288838947998544 +54474,272.36999999978855,-0.051287147574168926 +54475,272.37499999978854,-0.05128545426233083 +54476,272.37999999978854,-0.05128375900836856 +54477,272.38499999978853,-0.05128206180815414 +54478,272.38999999978853,-0.0512803626575472 +54479,272.3949999997885,-0.051278661552394994 +54480,272.3999999997885,-0.0512769584885323 +54481,272.4049999997885,-0.05127525346178142 +54482,272.4099999997885,-0.051273546467952076 +54483,272.4149999997885,-0.05127183750284141 +54484,272.4199999997885,-0.0512701265622339 +54485,272.4249999997885,-0.05126841364190135 +54486,272.4299999997885,-0.05126669873760277 +54487,272.4349999997885,-0.05126498184508439 +54488,272.4399999997885,-0.05126326296007962 +54489,272.4449999997885,-0.05126154207830891 +54490,272.4499999997885,-0.05125981919547979 +54491,272.45499999978847,-0.05125809430728681 +54492,272.45999999978847,-0.05125636740941141 +54493,272.46499999978846,-0.051254638497521966 +54494,272.46999999978846,-0.05125290756727368 +54495,272.47499999978845,-0.05125117461430854 +54496,272.47999999978845,-0.05124943963425527 +54497,272.48499999978844,-0.05124770262272926 +54498,272.48999999978844,-0.051245963575332586 +54499,272.49499999978843,-0.05124422248765385 +54500,272.49999999978843,-0.05124247935526819 +54501,272.5049999997884,-0.05124073417373722 +54502,272.5099999997884,-0.051238986938608976 +54503,272.5149999997884,-0.051237237645417835 +54504,272.5199999997884,-0.05123548628968449 +54505,272.5249999997884,-0.051233732866915904 +54506,272.5299999997884,-0.0512319773726052 +54507,272.5349999997884,-0.05123021980223169 +54508,272.5399999997884,-0.05122846015126072 +54509,272.5449999997884,-0.051226698415143705 +54510,272.5499999997884,-0.05122493458931801 +54511,272.5549999997884,-0.05122316866920694 +54512,272.5599999997884,-0.051221400650219635 +54513,272.56499999978837,-0.05121963052775105 +54514,272.56999999978837,-0.051217858297181895 +54515,272.57499999978836,-0.051216083953878555 +54516,272.57999999978836,-0.05121430749319305 +54517,272.58499999978835,-0.05121252891046296 +54518,272.58999999978835,-0.051210748201011416 +54519,272.59499999978834,-0.05120896536014696 +54520,272.59999999978834,-0.05120718038316355 +54521,272.60499999978833,-0.05120539326534046 +54522,272.60999999978833,-0.05120360400194228 +54523,272.6149999997883,-0.051201812588218786 +54524,272.6199999997883,-0.05120001901940492 +54525,272.6249999997883,-0.051198223290720705 +54526,272.6299999997883,-0.051196425397371216 +54527,272.6349999997883,-0.0511946253345465 +54528,272.6399999997883,-0.051192823097421514 +54529,272.6449999997883,-0.05119101868115604 +54530,272.6499999997883,-0.05118921208089468 +54531,272.6549999997883,-0.051187403291766756 +54532,272.6599999997883,-0.051185592308886245 +54533,272.6649999997883,-0.05118377912735171 +54534,272.6699999997883,-0.05118196374224628 +54535,272.67499999978827,-0.051180146148637536 +54536,272.67999999978827,-0.051178326341577464 +54537,272.68499999978826,-0.0511765043161024 +54538,272.68999999978826,-0.05117468006723297 +54539,272.69499999978825,-0.051172853589974 +54540,272.69999999978825,-0.05117102487931444 +54541,272.70499999978824,-0.05116919393022738 +54542,272.70999999978824,-0.051167360737669886 +54543,272.71499999978823,-0.05116552529658297 +54544,272.71999999978823,-0.05116368760189156 +54545,272.7249999997882,-0.05116184764850435 +54546,272.7299999997882,-0.05116000543131383 +54547,272.7349999997882,-0.05115816094519616 +54548,272.7399999997882,-0.0511563141850111 +54549,272.7449999997882,-0.05115446514560195 +54550,272.7499999997882,-0.051152613821795485 +54551,272.7549999997882,-0.0511507602084019 +54552,272.7599999997882,-0.05114890430021474 +54553,272.7649999997882,-0.05114704609201077 +54554,272.7699999997882,-0.05114518557854999 +54555,272.7749999997882,-0.05114332275457551 +54556,272.7799999997882,-0.05114145761481349 +54557,272.78499999978817,-0.05113959015397309 +54558,272.78999999978817,-0.05113772036674637 +54559,272.79499999978816,-0.051135848247808216 +54560,272.79999999978816,-0.051133973791816306 +54561,272.80499999978815,-0.05113209699341098 +54562,272.80999999978815,-0.051130217847215234 +54563,272.81499999978814,-0.05112833634783459 +54564,272.81999999978814,-0.05112645248985705 +54565,272.82499999978813,-0.051124566267852986 +54566,272.82999999978813,-0.051122677676375135 +54567,272.8349999997881,-0.051120786709958455 +54568,272.8399999997881,-0.05111889336312008 +54569,272.8449999997881,-0.05111699763035925 +54570,272.8499999997881,-0.05111509950615721 +54571,272.8549999997881,-0.05111319898497715 +54572,272.8599999997881,-0.051111296061264126 +54573,272.8649999997881,-0.05110939072944501 +54574,272.8699999997881,-0.05110748298392834 +54575,272.8749999997881,-0.0511055728191043 +54576,272.8799999997881,-0.05110366022934464 +54577,272.8849999997881,-0.051101745209002576 +54578,272.8899999997881,-0.051099827752412695 +54579,272.89499999978807,-0.051097907853890935 +54580,272.89999999978806,-0.05109598550773443 +54581,272.90499999978806,-0.05109406070822148 +54582,272.90999999978806,-0.05109213344961147 +54583,272.91499999978805,-0.05109020372614475 +54584,272.91999999978805,-0.05108827153204258 +54585,272.92499999978804,-0.05108633686150706 +54586,272.92999999978804,-0.05108439970872101 +54587,272.93499999978803,-0.051082460067847904 +54588,272.93999999978803,-0.051080517933031803 +54589,272.944999999788,-0.051078573298397247 +54590,272.949999999788,-0.051076626158049164 +54591,272.954999999788,-0.051074676506072836 +54592,272.959999999788,-0.051072724336533724 +54593,272.964999999788,-0.051070769643477475 +54594,272.969999999788,-0.05106881242092979 +54595,272.974999999788,-0.051066852662896296 +54596,272.979999999788,-0.05106489036336255 +54597,272.984999999788,-0.05106292551629389 +54598,272.989999999788,-0.051060958115635345 +54599,272.994999999788,-0.05105898815531158 +54600,272.999999999788,-0.05105701562922677 +54601,273.00499999978797,-0.05105504053126453 +54602,273.00999999978796,-0.051053062855287795 +54603,273.01499999978796,-0.0510510825951388 +54604,273.01999999978796,-0.05104909974463891 +54605,273.02499999978795,-0.051047114297588576 +54606,273.02999999978795,-0.05104512624776721 +54607,273.03499999978794,-0.05104313558893313 +54608,273.03999999978794,-0.05104114231482341 +54609,273.04499999978793,-0.05103914641915382 +54610,273.04999999978793,-0.05103714789561877 +54611,273.0549999997879,-0.051035146737891154 +54612,273.0599999997879,-0.051033142939622265 +54613,273.0649999997879,-0.051031136494441715 +54614,273.0699999997879,-0.051029127395957316 +54615,273.0749999997879,-0.05102711563775505 +54616,273.0799999997879,-0.051025101213398844 +54617,273.0849999997879,-0.05102308411643061 +54618,273.0899999997879,-0.05102106434037006 +54619,273.0949999997879,-0.051019041878714616 +54620,273.0999999997879,-0.05101701672493934 +54621,273.1049999997879,-0.0510149888724968 +54622,273.1099999997879,-0.05101295831481702 +54623,273.11499999978787,-0.05101092504530728 +54624,273.11999999978786,-0.05100888905735214 +54625,273.12499999978786,-0.05100685034431324 +54626,273.12999999978786,-0.05100480889952923 +54627,273.13499999978785,-0.05100276471631565 +54628,273.13999999978785,-0.0510007177879649 +54629,273.14499999978784,-0.05099866810774602 +54630,273.14999999978784,-0.05099661566890464 +54631,273.15499999978783,-0.0509945604646629 +54632,273.15999999978783,-0.050992502488219286 +54633,273.1649999997878,-0.050990441732748595 +54634,273.1699999997878,-0.05098837819140172 +54635,273.1749999997878,-0.05098631185730566 +54636,273.1799999997878,-0.050984242723563354 +54637,273.1849999997878,-0.050982170783253525 +54638,273.1899999997878,-0.05098009602943064 +54639,273.1949999997878,-0.050978018455124785 +54640,273.1999999997878,-0.050975938053341524 +54641,273.2049999997878,-0.05097385481706182 +54642,273.2099999997878,-0.0509717687392419 +54643,273.2149999997878,-0.050969679812813126 +54644,273.2199999997878,-0.05096758803068194 +54645,273.22499999978777,-0.05096549338572967 +54646,273.22999999978776,-0.05096339587081248 +54647,273.23499999978776,-0.050961295478761215 +54648,273.23999999978776,-0.05095919220238131 +54649,273.24499999978775,-0.05095708603445261 +54650,273.24999999978775,-0.05095497696772938 +54651,273.25499999978774,-0.05095286499494003 +54652,273.25999999978774,-0.05095075010878711 +54653,273.26499999978773,-0.050948632301947114 +54654,273.26999999978773,-0.05094651156707043 +54655,273.2749999997877,-0.050944387896781164 +54656,273.2799999997877,-0.05094226128367703 +54657,273.2849999997877,-0.05094013172032923 +54658,273.2899999997877,-0.050937999199282345 +54659,273.2949999997877,-0.05093586371305416 +54660,273.2999999997877,-0.05093372525413561 +54661,273.3049999997877,-0.050931583814990605 +54662,273.3099999997877,-0.050929439388055914 +54663,273.3149999997877,-0.05092729196574102 +54664,273.3199999997877,-0.05092514154042803 +54665,273.3249999997877,-0.05092298810447152 +54666,273.3299999997877,-0.05092083165019838 +54667,273.33499999978767,-0.05091867216990775 +54668,273.33999999978766,-0.05091650965587084 +54669,273.34499999978766,-0.050914344100330806 +54670,273.34999999978766,-0.05091217549550261 +54671,273.35499999978765,-0.05091000383357289 +54672,273.35999999978765,-0.05090782910669984 +54673,273.36499999978764,-0.05090565130701306 +54674,273.36999999978764,-0.050903470426613424 +54675,273.37499999978763,-0.050901286457572935 +54676,273.37999999978763,-0.0508990993919346 +54677,273.3849999997876,-0.05089690922171228 +54678,273.3899999997876,-0.050894715938890556 +54679,273.3949999997876,-0.050892519535424584 +54680,273.3999999997876,-0.05089032000323995 +54681,273.4049999997876,-0.05088811733423255 +54682,273.4099999997876,-0.050885911520268425 +54683,273.4149999997876,-0.05088370255318361 +54684,273.4199999997876,-0.05088149042478401 +54685,273.4249999997876,-0.050879275126845244 +54686,273.4299999997876,-0.05087705665111253 +54687,273.4349999997876,-0.05087483498930044 +54688,273.4399999997876,-0.05087261013309289 +54689,273.44499999978757,-0.050870382074142885 +54690,273.44999999978756,-0.0508681508040724 +54691,273.45499999978756,-0.05086591631447226 +54692,273.45999999978756,-0.05086367859690192 +54693,273.46499999978755,-0.0508614376428894 +54694,273.46999999978755,-0.05085919344393105 +54695,273.47499999978754,-0.05085694599149143 +54696,273.47999999978754,-0.050854695277003176 +54697,273.48499999978753,-0.0508524412918668 +54698,273.4899999997875,-0.05085018402745057 +54699,273.4949999997875,-0.050847923475090324 +54700,273.4999999997875,-0.05084565962608933 +54701,273.5049999997875,-0.05084339247171809 +54702,273.5099999997875,-0.05084112200321424 +54703,273.5149999997875,-0.050838848211782334 +54704,273.5199999997875,-0.05083657108859371 +54705,273.5249999997875,-0.050834290624786324 +54706,273.5299999997875,-0.05083200681146453 +54707,273.5349999997875,-0.050829719639699 +54708,273.5399999997875,-0.050827429100526504 +54709,273.5449999997875,-0.050825135184949743 +54710,273.5499999997875,-0.05082283788393721 +54711,273.55499999978747,-0.05082053718842299 +54712,273.55999999978746,-0.05081823308930659 +54713,273.56499999978746,-0.05081592557745278 +54714,273.56999999978746,-0.0508136146436914 +54715,273.57499999978745,-0.0508113002788172 +54716,273.57999999978745,-0.050808982473589684 +54717,273.58499999978744,-0.05080666121873287 +54718,273.58999999978744,-0.050804336504935196 +54719,273.59499999978743,-0.050802008322849264 +54720,273.5999999997874,-0.0507996766630917 +54721,273.6049999997874,-0.05079734151624298 +54722,273.6099999997874,-0.05079500287284721 +54723,273.6149999997874,-0.05079266072341197 +54724,273.6199999997874,-0.05079031505840813 +54725,273.6249999997874,-0.050787965868269655 +54726,273.6299999997874,-0.05078561314339341 +54727,273.6349999997874,-0.05078325687413899 +54728,273.6399999997874,-0.0507808970508285 +54729,273.6449999997874,-0.050778533663746434 +54730,273.6499999997874,-0.050776166703139385 +54731,273.6549999997874,-0.05077379615921592 +54732,273.6599999997874,-0.05077142202214637 +54733,273.66499999978737,-0.05076904428206262 +54734,273.66999999978736,-0.050766662929057946 +54735,273.67499999978736,-0.05076427795318675 +54736,273.67999999978736,-0.050761889344464434 +54737,273.68499999978735,-0.05075949709286718 +54738,273.68999999978735,-0.05075710118833169 +54739,273.69499999978734,-0.05075470162075507 +54740,273.69999999978734,-0.050752298379994586 +54741,273.70499999978733,-0.050749891455867426 +54742,273.7099999997873,-0.050747480838150553 +54743,273.7149999997873,-0.05074506651658044 +54744,273.7199999997873,-0.050742648480852894 +54745,273.7249999997873,-0.050740226720622846 +54746,273.7299999997873,-0.05073780122550413 +54747,273.7349999997873,-0.050735371985069264 +54748,273.7399999997873,-0.05073293898884923 +54749,273.7449999997873,-0.050730502226333275 +54750,273.7499999997873,-0.05072806168696869 +54751,273.7549999997873,-0.050725617360160555 +54752,273.7599999997873,-0.050723169235271585 +54753,273.7649999997873,-0.050720717301621844 +54754,273.7699999997873,-0.05071826154848854 +54755,273.77499999978727,-0.05071580196510584 +54756,273.77999999978726,-0.050713338540664565 +54757,273.78499999978726,-0.050710871264312035 +54758,273.78999999978726,-0.050708400125151785 +54759,273.79499999978725,-0.05070592511224338 +54760,273.79999999978725,-0.050703446214602155 +54761,273.80499999978724,-0.05070096342119898 +54762,273.80999999978724,-0.05069847672096002 +54763,273.81499999978723,-0.05069598610276653 +54764,273.8199999997872,-0.05069349155545456 +54765,273.8249999997872,-0.05069099306781477 +54766,273.8299999997872,-0.05068849062859218 +54767,273.8349999997872,-0.05068598422648586 +54768,273.8399999997872,-0.05068347385014877 +54769,273.8449999997872,-0.05068095948818747 +54770,273.8499999997872,-0.05067844112916188 +54771,273.8549999997872,-0.050675918761585025 +54772,273.8599999997872,-0.05067339237392278 +54773,273.8649999997872,-0.05067086195459363 +54774,273.8699999997872,-0.050668327491968417 +54775,273.8749999997872,-0.05066578897437003 +54776,273.8799999997872,-0.05066324639007324 +54777,273.88499999978717,-0.050660699727304345 +54778,273.88999999978716,-0.05065814897424099 +54779,273.89499999978716,-0.050655594119011826 +54780,273.89999999978716,-0.050653035149696296 +54781,273.90499999978715,-0.05065047205432434 +54782,273.90999999978715,-0.050647904820876166 +54783,273.91499999978714,-0.05064533343728192 +54784,273.91999999978714,-0.050642757891421454 +54785,273.92499999978713,-0.05064017817112403 +54786,273.9299999997871,-0.05063759426416807 +54787,273.9349999997871,-0.05063500615828084 +54788,273.9399999997871,-0.0506324138411382 +54789,273.9449999997871,-0.050629817300364297 +54790,273.9499999997871,-0.05062721652353129 +54791,273.9549999997871,-0.0506246114981591 +54792,273.9599999997871,-0.05062200221171504 +54793,273.9649999997871,-0.050619388651613605 +54794,273.9699999997871,-0.050616770805216135 +54795,273.9749999997871,-0.050614148659830535 +54796,273.9799999997871,-0.05061152220271096 +54797,273.9849999997871,-0.05060889142105755 +54798,273.9899999997871,-0.05060625630201611 +54799,273.99499999978707,-0.050603616832677785 +54800,273.99999999978706,-0.05060097300007881 +54801,274.00499999978706,-0.05059832479120014 +54802,274.00999999978706,-0.0505956721929672 +54803,274.01499999978705,-0.05059301519224953 +54804,274.01999999978705,-0.05059035377586048 +54805,274.02499999978704,-0.05058768793055691 +54806,274.02999999978704,-0.05058501764303888 +54807,274.03499999978703,-0.050582342899949284 +54808,274.039999999787,-0.050579663687873574 +54809,274.044999999787,-0.05057697999333942 +54810,274.049999999787,-0.05057429180281636 +54811,274.054999999787,-0.050571599102715525 +54812,274.059999999787,-0.05056890187938926 +54813,274.064999999787,-0.0505662001191308 +54814,274.069999999787,-0.05056349380817393 +54815,274.074999999787,-0.05056078293269269 +54816,274.079999999787,-0.05055806747880096 +54817,274.084999999787,-0.050555347432552196 +54818,274.089999999787,-0.050552622779939015 +54819,274.094999999787,-0.05054989350689287 +54820,274.099999999787,-0.05054715959928375 +54821,274.10499999978697,-0.05054442104291972 +54822,274.10999999978696,-0.050541677823546696 +54823,274.11499999978696,-0.05053892992684794 +54824,274.11999999978696,-0.050536177338443865 +54825,274.12499999978695,-0.05053342004389151 +54826,274.12999999978695,-0.05053065802868429 +54827,274.13499999978694,-0.05052789127825156 +54828,274.13999999978694,-0.050525119777958295 +54829,274.14499999978693,-0.050522343513104674 +54830,274.1499999997869,-0.050519562468925715 +54831,274.1549999997869,-0.05051677663059091 +54832,274.1599999997869,-0.05051398598320384 +54833,274.1649999997869,-0.05051119051180177 +54834,274.1699999997869,-0.05050839020135527 +54835,274.1749999997869,-0.050505585036767844 +54836,274.1799999997869,-0.0505027750028755 +54837,274.1849999997869,-0.050499960084446384 +54838,274.1899999997869,-0.05049714026618038 +54839,274.1949999997869,-0.0504943155327087 +54840,274.1999999997869,-0.05049148586859347 +54841,274.2049999997869,-0.05048865125832734 +54842,274.2099999997869,-0.05048581168633304 +54843,274.21499999978687,-0.050482967136963014 +54844,274.21999999978686,-0.050480117594498976 +54845,274.22499999978686,-0.050477263043151484 +54846,274.22999999978686,-0.05047440346705952 +54847,274.23499999978685,-0.05047153885029009 +54848,274.23999999978685,-0.050468669176837753 +54849,274.24499999978684,-0.05046579443062422 +54850,274.24999999978684,-0.05046291459549788 +54851,274.25499999978683,-0.05046002965523343 +54852,274.2599999997868,-0.05045713959353137 +54853,274.2649999997868,-0.050454244394017564 +54854,274.2699999997868,-0.05045134404024283 +54855,274.2749999997868,-0.050448438515682426 +54856,274.2799999997868,-0.05044552780373567 +54857,274.2849999997868,-0.05044261188772542 +54858,274.2899999997868,-0.05043969075089761 +54859,274.2949999997868,-0.050436764376420855 +54860,274.2999999997868,-0.050433832747385894 +54861,274.3049999997868,-0.05043089584680516 +54862,274.3099999997868,-0.05042795365761231 +54863,274.3149999997868,-0.05042500616266172 +54864,274.3199999997868,-0.050422053344728025 +54865,274.32499999978677,-0.050419095186505614 +54866,274.32999999978676,-0.05041613167060813 +54867,274.33499999978676,-0.050413162779568 +54868,274.33999999978676,-0.05041018849583594 +54869,274.34499999978675,-0.050407208801780415 +54870,274.34999999978675,-0.05040422367968715 +54871,274.35499999978674,-0.05040123311175864 +54872,274.35999999978674,-0.05039823708011363 +54873,274.36499999978673,-0.05039523556678655 +54874,274.3699999997867,-0.050392228553727055 +54875,274.3749999997867,-0.05038921602279944 +54876,274.3799999997867,-0.0503861979557822 +54877,274.3849999997867,-0.05038317433436737 +54878,274.3899999997867,-0.050380145140160114 +54879,274.3949999997867,-0.050377110354678054 +54880,274.3999999997867,-0.05037406995935085 +54881,274.4049999997867,-0.050371023935519545 +54882,274.4099999997867,-0.050367972264436095 +54883,274.4149999997867,-0.050364914927262715 +54884,274.4199999997867,-0.050361851905071406 +54885,274.4249999997867,-0.050358783178843326 +54886,274.4299999997867,-0.05035570872946825 +54887,274.43499999978667,-0.05035262853774396 +54888,274.43999999978666,-0.0503495425843757 +54889,274.44499999978666,-0.050346450849975556 +54890,274.44999999978666,-0.050343353315061894 +54891,274.45499999978665,-0.05034024996005873 +54892,274.45999999978665,-0.05033714076529516 +54893,274.46499999978664,-0.05033402571100473 +54894,274.46999999978664,-0.050330904777324846 +54895,274.47499999978663,-0.05032777794429616 +54896,274.4799999997866,-0.050324645191861916 +54897,274.4849999997866,-0.05032150649986737 +54898,274.4899999997866,-0.050318361848059115 +54899,274.4949999997866,-0.05031521121608448 +54900,274.4999999997866,-0.050312054583490876 +54901,274.5049999997866,-0.050308891929725166 +54902,274.5099999997866,-0.050305723234132974 +54903,274.5149999997866,-0.05030254847595806 +54904,274.5199999997866,-0.05029936763434168 +54905,274.5249999997866,-0.05029618068832187 +54906,274.5299999997866,-0.05029298761683279 +54907,274.5349999997866,-0.05028978839870408 +54908,274.5399999997866,-0.05028658301266012 +54909,274.54499999978657,-0.05028337143731939 +54910,274.54999999978656,-0.050280153651193774 +54911,274.55499999978656,-0.050276929632687796 +54912,274.55999999978656,-0.05027369936009802 +54913,274.56499999978655,-0.05027046281161224 +54914,274.56999999978655,-0.0502672199653088 +54915,274.57499999978654,-0.05026397079915591 +54916,274.57999999978654,-0.05026071529101085 +54917,274.58499999978653,-0.05025745341861929 +54918,274.5899999997865,-0.05025418515961451 +54919,274.5949999997865,-0.050250910491516664 +54920,274.5999999997865,-0.05024762939173204 +54921,274.6049999997865,-0.05024434183755228 +54922,274.6099999997865,-0.05024104780615366 +54923,274.6149999997865,-0.050237747274596234 +54924,274.6199999997865,-0.05023444021982313 +54925,274.6249999997865,-0.05023112661865974 +54926,274.6299999997865,-0.050227806447812925 +54927,274.6349999997865,-0.0502244796838702 +54928,274.6399999997865,-0.050221146303298964 +54929,274.6449999997865,-0.05021780628244568 +54930,274.6499999997865,-0.050214459597535024 +54931,274.65499999978647,-0.050211106224669094 +54932,274.65999999978646,-0.05020774613982657 +54933,274.66499999978646,-0.050204379318861854 +54934,274.66999999978646,-0.050201005737504245 +54935,274.67499999978645,-0.05019762537135711 +54936,274.67999999978645,-0.05019423819589693 +54937,274.68499999978644,-0.050190844186472544 +54938,274.68999999978644,-0.05018744331830421 +54939,274.69499999978643,-0.05018403556648271 +54940,274.6999999997864,-0.0501806209059685 +54941,274.7049999997864,-0.0501771993115908 +54942,274.7099999997864,-0.050173770758046674 +54943,274.7149999997864,-0.05017033521990012 +54944,274.7199999997864,-0.050166892671581156 +54945,274.7249999997864,-0.050163443087384865 +54946,274.7299999997864,-0.050159986441470496 +54947,274.7349999997864,-0.050156522707860474 +54948,274.7399999997864,-0.05015305186043951 +54949,274.7449999997864,-0.05014957387295355 +54950,274.7499999997864,-0.050146088719008886 +54951,274.7549999997864,-0.05014259637207113 +54952,274.7599999997864,-0.05013909680546421 +54953,274.76499999978637,-0.05013558999236943 +54954,274.76999999978636,-0.05013207590582445 +54955,274.77499999978636,-0.05012855451872221 +54956,274.77999999978636,-0.050125025803809974 +54957,274.78499999978635,-0.05012148973368827 +54958,274.78999999978635,-0.050117946280809844 +54959,274.79499999978634,-0.05011439541747866 +54960,274.79999999978634,-0.05011083711584875 +54961,274.80499999978633,-0.050107271347923234 +54962,274.8099999997863,-0.05010369808555315 +54963,274.8149999997863,-0.05010011730043647 +54964,274.8199999997863,-0.050096528964116885 +54965,274.8249999997863,-0.050092933047982825 +54966,274.8299999997863,-0.05008932952326622 +54967,274.8349999997863,-0.05008571836104146 +54968,274.8399999997863,-0.05008209953222419 +54969,274.8449999997863,-0.05007847300757024 +54970,274.8499999997863,-0.05007483875767437 +54971,274.8549999997863,-0.050071196752969185 +54972,274.8599999997863,-0.0500675469637239 +54973,274.8649999997863,-0.050063889360043176 +54974,274.8699999997863,-0.0500602239118659 +54975,274.87499999978627,-0.050056550588964015 +54976,274.87999999978626,-0.05005286936094124 +54977,274.88499999978626,-0.05004918019723186 +54978,274.88999999978626,-0.050045483067099494 +54979,274.89499999978625,-0.05004177793963581 +54980,274.89999999978625,-0.05003806478375925 +54981,274.90499999978624,-0.05003434356821383 +54982,274.90999999978624,-0.050030614261567734 +54983,274.91499999978623,-0.05002687683221207 +54984,274.9199999997862,-0.05002313124835956 +54985,274.9249999997862,-0.050019377478043185 +54986,274.9299999997862,-0.05001561548911484 +54987,274.9349999997862,-0.05001184524924402 +54988,274.9399999997862,-0.05000806672591642 +54989,274.9449999997862,-0.05000427988643257 +54990,274.9499999997862,-0.05000048469790642 +54991,274.9549999997862,-0.04999668112726395 +54992,274.9599999997862,-0.04999286914124177 +54993,274.9649999997862,-0.04998904870638567 +54994,274.9699999997862,-0.04998521978904918 +54995,274.9749999997862,-0.04998138235539208 +54996,274.9799999997862,-0.04997753637137899 +54997,274.98499999978617,-0.049973681802777836 +54998,274.98999999978616,-0.04996981861515835 +54999,274.99499999978616,-0.049965946773890574 +55000,274.99999999978616,-0.04996206624414333 +55001,275.00499999978615,-0.049958176990882654 +55002,275.00999999978615,-0.04995427897887028 +55003,275.01499999978614,-0.049950372172661996 +55004,275.01999999978614,-0.04994645653660613 +55005,275.02499999978613,-0.0499425320348419 +55006,275.0299999997861,-0.049938598631297806 +55007,275.0349999997861,-0.04993465628969 +55008,275.0399999997861,-0.049930704973520625 +55009,275.0449999997861,-0.04992674464607615 +55010,275.0499999997861,-0.0499227752704257 +55011,275.0549999997861,-0.04991879680941932 +55012,275.0599999997861,-0.049914809225686314 +55013,275.0649999997861,-0.04991081248163345 +55014,275.0699999997861,-0.049906806539443266 +55015,275.0749999997861,-0.049902791361072264 +55016,275.0799999997861,-0.049898766908249126 +55017,275.0849999997861,-0.04989473314247293 +55018,275.0899999997861,-0.04989069002501134 +55019,275.09499999978607,-0.04988663751689872 +55020,275.09999999978606,-0.04988257557893433 +55021,275.10499999978606,-0.0498785041716804 +55022,275.10999999978606,-0.0498744232554603 +55023,275.11499999978605,-0.049870332790356554 +55024,275.11999999978605,-0.04986623273620897 +55025,275.12499999978604,-0.049862123052612645 +55026,275.12999999978604,-0.04985800369891601 +55027,275.13499999978603,-0.04985387463421887 +55028,275.139999999786,-0.04984973581737033 +55029,275.144999999786,-0.049845587206966815 +55030,275.149999999786,-0.04984142876134999 +55031,275.154999999786,-0.049837260438604716 +55032,275.159999999786,-0.049833082196556924 +55033,275.164999999786,-0.04982889399277152 +55034,275.169999999786,-0.049824695784550246 +55035,275.174999999786,-0.04982048752892951 +55036,275.179999999786,-0.049816269182678216 +55037,275.184999999786,-0.04981204070229557 +55038,275.189999999786,-0.049807802044008836 +55039,275.194999999786,-0.049803553163771094 +55040,275.199999999786,-0.049799294017258966 +55041,275.20499999978597,-0.04979502455987033 +55042,275.20999999978596,-0.04979074474672199 +55043,275.21499999978596,-0.04978645453264733 +55044,275.21999999978595,-0.049782153872193965 +55045,275.22499999978595,-0.049777842719621344 +55046,275.22999999978595,-0.049773521028898295 +55047,275.23499999978594,-0.04976918875370065 +55048,275.23999999978594,-0.0497648458474087 +55049,275.24499999978593,-0.049760492263104764 +55050,275.2499999997859,-0.04975612795357064 +55051,275.2549999997859,-0.049751752871285054 +55052,275.2599999997859,-0.0497473669684211 +55053,275.2649999997859,-0.0497429701968436 +55054,275.2699999997859,-0.04973856250810655 +55055,275.2749999997859,-0.049734143853450374 +55056,275.2799999997859,-0.04972971418379932 +55057,275.2849999997859,-0.04972527344975866 +55058,275.2899999997859,-0.04972082160161202 +55059,275.2949999997859,-0.049716358589318575 +55060,275.2999999997859,-0.04971188436251023 +55061,275.3049999997859,-0.04970739887048882 +55062,275.3099999997859,-0.04970290206222322 +55063,275.31499999978587,-0.049698393886346455 +55064,275.31999999978586,-0.04969387429115278 +55065,275.32499999978586,-0.04968934322459472 +55066,275.32999999978585,-0.049684800634280074 +55067,275.33499999978585,-0.04968024646746888 +55068,275.33999999978585,-0.049675680671070366 +55069,275.34499999978584,-0.049671103191639886 +55070,275.34999999978584,-0.04966651397537574 +55071,275.35499999978583,-0.04966191296811607 +55072,275.3599999997858,-0.04965730011533562 +55073,275.3649999997858,-0.04965267536214252 +55074,275.3699999997858,-0.049648038653275044 +55075,275.3749999997858,-0.04964338993309828 +55076,275.3799999997858,-0.0496387291456008 +55077,275.3849999997858,-0.04963405623439126 +55078,275.3899999997858,-0.049629371142695035 +55079,275.3949999997858,-0.04962467381335072 +55080,275.3999999997858,-0.049619964188806646 +55081,275.4049999997858,-0.049615242211117384 +55082,275.4099999997858,-0.04961050782194011 +55083,275.4149999997858,-0.04960576096253106 +55084,275.4199999997858,-0.0496010015737418 +55085,275.42499999978577,-0.04959622959601563 +55086,275.42999999978576,-0.04959144496938375 +55087,275.43499999978576,-0.049586647633461524 +55088,275.43999999978575,-0.04958183752744466 +55089,275.44499999978575,-0.049577014590105335 +55090,275.44999999978575,-0.049572178759788275 +55091,275.45499999978574,-0.0495673299744068 +55092,275.45999999978574,-0.04956246817143883 +55093,275.46499999978573,-0.049557593287922815 +55094,275.4699999997857,-0.04955270526045367 +55095,275.4749999997857,-0.04954780402517859 +55096,275.4799999997857,-0.04954288951779287 +55097,275.4849999997857,-0.0495379616735357 +55098,275.4899999997857,-0.0495330204271858 +55099,275.4949999997857,-0.04952806571305712 +55100,275.4999999997857,-0.04952309746499447 +55101,275.5049999997857,-0.049518115616368985 +55102,275.5099999997857,-0.04951312010007372 +55103,275.5149999997857,-0.049508110848519055 +55104,275.5199999997857,-0.04950308779362806 +55105,275.5249999997857,-0.0494980508668319 +55106,275.5299999997857,-0.04949299999906502 +55107,275.53499999978567,-0.049487935120760475 +55108,275.53999999978566,-0.049482856161845015 +55109,275.54499999978566,-0.04947776305173422 +55110,275.54999999978565,-0.04947265571932756 +55111,275.55499999978565,-0.04946753409300338 +55112,275.55999999978565,-0.04946239810061379 +55113,275.56499999978564,-0.049457247669479586 +55114,275.56999999978564,-0.049452082726385016 +55115,275.57499999978563,-0.049446903197572535 +55116,275.5799999997856,-0.04944170900873745 +55117,275.5849999997856,-0.049436500085022574 +55118,275.5899999997856,-0.049431276351012736 +55119,275.5949999997856,-0.049426037730729254 +55120,275.5999999997856,-0.04942078414762436 +55121,275.6049999997856,-0.049415515524575515 +55122,275.6099999997856,-0.04941023178387967 +55123,275.6149999997856,-0.049404932847247486 +55124,275.6199999997856,-0.049399618635797435 +55125,275.6249999997856,-0.04939428907004983 +55126,275.6299999997856,-0.04938894406992084 +55127,275.6349999997856,-0.04938358355471633 +55128,275.6399999997856,-0.04937820744312573 +55129,275.64499999978557,-0.04937281565321573 +55130,275.64999999978556,-0.04936740810242396 +55131,275.65499999978556,-0.04936198470755255 +55132,275.65999999978555,-0.04935654538476166 +55133,275.66499999978555,-0.04935109004956285 +55134,275.66999999978555,-0.04934561861681243 +55135,275.67499999978554,-0.049340131000704696 +55136,275.67999999978554,-0.04933462711476507 +55137,275.68499999978553,-0.04932910687184317 +55138,275.6899999997855,-0.049323570184105804 +55139,275.6949999997855,-0.049318016963029815 +55140,275.6999999997855,-0.04931244711939488 +55141,275.7049999997855,-0.04930686056327622 +55142,275.7099999997855,-0.04930125720403717 +55143,275.7149999997855,-0.049295636950321714 +55144,275.7199999997855,-0.04928999971004684 +55145,275.7249999997855,-0.04928434539039488 +55146,275.7299999997855,-0.049278673897805665 +55147,275.7349999997855,-0.04927298513796865 +55148,275.7399999997855,-0.049267279015814874 +55149,275.7449999997855,-0.04926155543550887 +55150,275.7499999997855,-0.0492558143004404 +55151,275.75499999978547,-0.04925005551321613 +55152,275.75999999978546,-0.04924427897565119 +55153,275.76499999978546,-0.049238484588760546 +55154,275.76999999978545,-0.049232672252750374 +55155,275.77499999978545,-0.04922684186700925 +55156,275.77999999978545,-0.049220993330099175 +55157,275.78499999978544,-0.04921512653974658 +55158,275.78999999978544,-0.0492092413928331 +55159,275.79499999978543,-0.04920333778538633 +55160,275.7999999997854,-0.049197415612570364 +55161,275.8049999997854,-0.04919147476867621 +55162,275.8099999997854,-0.04918551514711216 +55163,275.8149999997854,-0.049179536640393914 +55164,275.8199999997854,-0.049173539140134614 +55165,275.8249999997854,-0.04916752253703476 +55166,275.8299999997854,-0.04916148672087195 +55167,275.8349999997854,-0.049155431580490475 +55168,275.8399999997854,-0.049149357003790785 +55169,275.8449999997854,-0.04914326287771881 +55170,275.8499999997854,-0.04913714908825508 +55171,275.8549999997854,-0.049131015520403776 +55172,275.8599999997854,-0.04912486205818152 +55173,275.86499999978537,-0.049118688584606114 +55174,275.86999999978536,-0.049112494981685 +55175,275.87499999978536,-0.04910628113040364 +55176,275.87999999978535,-0.0491000469107137 +55177,275.88499999978535,-0.04909379220152107 +55178,275.88999999978535,-0.04908751688067368 +55179,275.89499999978534,-0.049081220824949146 +55180,275.89999999978534,-0.04907490391004229 +55181,275.90499999978533,-0.049068566010552386 +55182,275.9099999997853,-0.04906220699997029 +55183,275.9149999997853,-0.049055826750665346 +55184,275.9199999997853,-0.04904942513387208 +55185,275.9249999997853,-0.04904300201967674 +55186,275.9299999997853,-0.04903655727700363 +55187,275.9349999997853,-0.04903009077360117 +55188,275.9399999997853,-0.04902360237602782 +55189,275.9449999997853,-0.04901709194963779 +55190,275.9499999997853,-0.049010559358566484 +55191,275.9549999997853,-0.04900400446571574 +55192,275.9599999997853,-0.048997427132738886 +55193,275.9649999997853,-0.048990827220025505 +55194,275.9699999997853,-0.04898420458668601 +55195,275.97499999978527,-0.048977559090535944 +55196,275.97999999978526,-0.048970890588080095 +55197,275.98499999978526,-0.04896419893449631 +55198,275.98999999978525,-0.04895748398361905 +55199,275.99499999978525,-0.048950745587922756 +55200,275.99999999978525,-0.04894398359850488 +55201,276.00499999978524,-0.0489371978650687 +55202,276.00999999978524,-0.04893038823590583 +55203,276.01499999978523,-0.04892355455787846 +55204,276.0199999997852,-0.04891669667640136 +55205,276.0249999997852,-0.04890981443542349 +55206,276.0299999997852,-0.048902907677409464 +55207,276.0349999997852,-0.048895976243320566 +55208,276.0399999997852,-0.048889019972595565 +55209,276.0449999997852,-0.048882038703131174 +55210,276.0499999997852,-0.048875032271262206 +55211,276.0549999997852,-0.04886800051174141 +55212,276.0599999997852,-0.04886094325771895 +55213,276.0649999997852,-0.04885386034072158 +55214,276.0699999997852,-0.0488467515906315 +55215,276.0749999997852,-0.048839616835664755 +55216,276.0799999997852,-0.048832455902349414 +55217,276.08499999978517,-0.048825268615503285 +55218,276.08999999978516,-0.04881805479821131 +55219,276.09499999978516,-0.04881081427180255 +55220,276.09999999978515,-0.04880354685582683 +55221,276.10499999978515,-0.04879625236803093 +55222,276.10999999978515,-0.0487889306243344 +55223,276.11499999978514,-0.048781581438805 +55224,276.11999999978514,-0.04877420462363365 +55225,276.12499999978513,-0.04876679998910901 +55226,276.1299999997851,-0.04875936734359159 +55227,276.1349999997851,-0.04875190649348745 +55228,276.1399999997851,-0.04874441724322137 +55229,276.1449999997851,-0.048736899395209664 +55230,276.1499999997851,-0.048729352749832415 +55231,276.1549999997851,-0.0487217771054053 +55232,276.1599999997851,-0.048714172258150876 +55233,276.1649999997851,-0.048706538002169356 +55234,276.1699999997851,-0.04869887412940892 +55235,276.1749999997851,-0.048691180429635425 +55236,276.1799999997851,-0.048683456690401666 +55237,276.1849999997851,-0.04867570269701596 +55238,276.1899999997851,-0.04866791823251031 +55239,276.19499999978507,-0.048660103077607854 +55240,276.19999999978506,-0.04865225701068987 +55241,276.20499999978506,-0.04864437980776203 +55242,276.20999999978505,-0.04863647124242017 +55243,276.21499999978505,-0.04862853108581531 +55244,276.21999999978505,-0.04862055910661817 +55245,276.22499999978504,-0.048612555070982895 +55246,276.22999999978504,-0.04860451874251017 +55247,276.23499999978503,-0.04859644988220969 +55248,276.239999999785,-0.04858834824846179 +55249,276.244999999785,-0.048580213596978575 +55250,276.249999999785,-0.04857204568076405 +55251,276.254999999785,-0.04856384425007373 +55252,276.259999999785,-0.04855560905237332 +55253,276.264999999785,-0.04854733983229671 +55254,276.269999999785,-0.04853903633160311 +55255,276.274999999785,-0.04853069828913333 +55256,276.279999999785,-0.048522325440765346 +55257,276.284999999785,-0.0485139175193688 +55258,276.289999999785,-0.04850547425475884 +55259,276.294999999785,-0.04849699537364883 +55260,276.299999999785,-0.04848848059960233 +55261,276.30499999978497,-0.048479929652983964 +55262,276.30999999978496,-0.04847134225090944 +55263,276.31499999978496,-0.04846271810719448 +55264,276.31999999978495,-0.048454056932302765 +55265,276.32499999978495,-0.04844535843329286 +55266,276.32999999978495,-0.04843662231376401 +55267,276.33499999978494,-0.04842784827380088 +55268,276.33999999978494,-0.048419036009917114 +55269,276.34499999978493,-0.04841018521499784 +55270,276.3499999997849,-0.04840129557824087 +55271,276.3549999997849,-0.048392366785096765 +55272,276.3599999997849,-0.04838339851720761 +55273,276.3649999997849,-0.048374390452344575 +55274,276.3699999997849,-0.04836534226434406 +55275,276.3749999997849,-0.048356253623042605 +55276,276.3799999997849,-0.04834712419421037 +55277,276.3849999997849,-0.048337953639483185 +55278,276.3899999997849,-0.04832874161629317 +55279,276.3949999997849,-0.0483194877777979 +55280,276.3999999997849,-0.04831019177280794 +55281,276.4049999997849,-0.048300853245712934 +55282,276.4099999997849,-0.048291471836406 +55283,276.41499999978487,-0.048282047180206476 +55284,276.41999999978486,-0.04827257890778099 +55285,276.42499999978486,-0.0482630666450628 +55286,276.42999999978485,-0.04825351001316929 +55287,276.43499999978485,-0.048243908628317664 +55288,276.43999999978485,-0.048234262101738715 +55289,276.44499999978484,-0.048224570039588695 +55290,276.44999999978484,-0.04821483204285912 +55291,276.45499999978483,-0.04820504770728457 +55292,276.4599999997848,-0.0481952166232484 +55293,276.4649999997848,-0.04818533837568615 +55294,276.4699999997848,-0.04817541254398689 +55295,276.4749999997848,-0.048165438701892126 +55296,276.4799999997848,-0.04815541641739241 +55297,276.4849999997848,-0.04814534525262153 +55298,276.4899999997848,-0.048135224763748104 +55299,276.4949999997848,-0.048125054500864725 +55300,276.4999999997848,-0.048114834007874314 +55301,276.5049999997848,-0.04810456282237389 +55302,276.5099999997848,-0.048094240475535344 +55303,276.5149999997848,-0.048083866491983505 +55304,276.5199999997848,-0.048073440389671075 +55305,276.52499999978477,-0.048062961679750556 +55306,276.52999999978476,-0.04805242986644299 +55307,276.53499999978476,-0.0480418444469034 +55308,276.53999999978475,-0.048031204911082974 +55309,276.54499999978475,-0.0480205107415876 +55310,276.54999999978475,-0.048009761413532956 +55311,276.55499999978474,-0.047998956394395866 +55312,276.55999999978474,-0.04798809514386181 +55313,276.56499999978473,-0.04797717711366858 +55314,276.5699999997847,-0.04796620174744574 +55315,276.5749999997847,-0.04795516848055006 +55316,276.5799999997847,-0.0479440767398965 +55317,276.5849999997847,-0.0479329259437848 +55318,276.5899999997847,-0.047921715501721376 +55319,276.5949999997847,-0.047910444814236515 +55320,276.5999999997847,-0.047899113272696636 +55321,276.6049999997847,-0.04788772025911144 +55322,276.6099999997847,-0.04787626514593577 +55323,276.6149999997847,-0.04786474729586608 +55324,276.6199999997847,-0.04785316606163125 +55325,276.6249999997847,-0.04784152078577754 +55326,276.6299999997847,-0.0478298108004476 +55327,276.63499999978467,-0.047818035427153134 +55328,276.63999999978466,-0.04780619397654122 +55329,276.64499999978466,-0.04779428574815383 +55330,276.64999999978465,-0.047782310030180505 +55331,276.65499999978465,-0.04777026609920383 +55332,276.65999999978465,-0.04775815321993744 +55333,276.66499999978464,-0.04774597064495635 +55334,276.66999999978464,-0.0477337176144193 +55335,276.67499999978463,-0.04772139335578276 +55336,276.6799999997846,-0.047708997083506406 +55337,276.6849999997846,-0.04769652799874959 +55338,276.6899999997846,-0.04768398528905863 +55339,276.6949999997846,-0.04767136812804437 +55340,276.6999999997846,-0.0476586756750499 +55341,276.7049999997846,-0.047645907074807745 +55342,276.7099999997846,-0.04763306145708637 +55343,276.7149999997846,-0.04762013793632542 +55344,276.7199999997846,-0.04760713561125931 +55345,276.7249999997846,-0.04759405356452869 +55346,276.7299999997846,-0.04758089086227931 +55347,276.7349999997846,-0.04756764655374767 +55348,276.7399999997846,-0.047554319670833074 +55349,276.74499999978457,-0.04754090922765539 +55350,276.74999999978456,-0.04752741422009793 +55351,276.75499999978456,-0.047513833625334956 +55352,276.75999999978455,-0.04750016640134289 +55353,276.76499999978455,-0.04748641148639485 +55354,276.76999999978455,-0.04747256779853741 +55355,276.77499999978454,-0.047458634235049285 +55356,276.77999999978454,-0.047444609671880564 +55357,276.78499999978453,-0.047430492963072175 +55358,276.7899999997845,-0.04741628294015426 +55359,276.7949999997845,-0.04740197841152271 +55360,276.7999999997845,-0.04738757816179288 +55361,276.8049999997845,-0.04737308095112925 +55362,276.8099999997845,-0.047358485514550075 +55363,276.8149999997845,-0.04734379056120572 +55364,276.8199999997845,-0.047328994773629444 +55365,276.8249999997845,-0.04731409680695938 +55366,276.8299999997845,-0.04729909528813011 +55367,276.8349999997845,-0.04728398881503256 +55368,276.8399999997845,-0.0472687759556404 +55369,276.8449999997845,-0.04725345524710147 +55370,276.8499999997845,-0.04723802519479223 +55371,276.85499999978447,-0.04722248427133348 +55372,276.85999999978446,-0.047206830915565226 +55373,276.86499999978446,-0.04719106353147859 +55374,276.86999999978445,-0.047175180487102376 +55375,276.87499999978445,-0.04715918011334192 +55376,276.87999999978445,-0.047143060702767574 +55377,276.88499999978444,-0.047126820508349966 +55378,276.88999999978444,-0.04711045774213914 +55379,276.89499999978443,-0.047093970573884265 +55380,276.8999999997844,-0.0470773571295906 +55381,276.9049999997844,-0.04706061549000997 +55382,276.9099999997844,-0.047043743689060794 +55383,276.9149999997844,-0.047026739712173506 +55384,276.9199999997844,-0.047009601494556824 +55385,276.9249999997844,-0.04699232691937995 +55386,276.9299999997844,-0.046974913815865396 +55387,276.9349999997844,-0.046957359957286914 +55388,276.9399999997844,-0.046939663058866335 +55389,276.9449999997844,-0.046921820775562714 +55390,276.9499999997844,-0.04690383069974668 +55391,276.9549999997844,-0.0468856903587523 +55392,276.9599999997844,-0.04686739721229809 +55393,276.96499999978437,-0.046848948649768074 +55394,276.96999999978436,-0.04683034198734317 +55395,276.97499999978436,-0.046811574464972014 +55396,276.97999999978435,-0.04679264324316981 +55397,276.98499999978435,-0.04677354539963235 +55398,276.98999999978435,-0.04675427792565136 +55399,276.99499999978434,-0.04673483772231616 +55400,276.99999999978434,-0.046715221596484856 +55401,277.00499999978433,-0.046695426256507085 +55402,277.0099999997843,-0.0466754483076782 +55403,277.0149999997843,-0.04665528424740301 +55404,277.0199999997843,-0.04663493046004494 +55405,277.0249999997843,-0.04661438321143375 +55406,277.0299999997843,-0.04659363864300256 +55407,277.0349999997843,-0.04657269276552128 +55408,277.0399999997843,-0.046551541452390335 +55409,277.0449999997843,-0.046530180432454354 +55410,277.0499999997843,-0.046508605282290914 +55411,277.0549999997843,-0.04648681141792427 +55412,277.0599999997843,-0.04646479408590799 +55413,277.0649999997843,-0.04644254835371381 +55414,277.0699999997843,-0.046420069099355865 +55415,277.07499999978427,-0.04639735100017109 +55416,277.07999999978426,-0.04637438852066581 +55417,277.08499999978426,-0.04635117589932713 +55418,277.08999999978425,-0.04632770713428363 +55419,277.09499999978425,-0.046303975967684444 +55420,277.09999999978425,-0.046279975868646836 +55421,277.10499999978424,-0.04625570001460116 +55422,277.10999999978424,-0.046231141270836586 +55423,277.11499999978423,-0.04620629216802149 +55424,277.1199999997842,-0.04618114487743692 +55425,277.1249999997842,-0.046155691183621034 +55426,277.1299999997842,-0.04612992245407234 +55427,277.1349999997842,-0.04610382960560215 +55428,277.1399999997842,-0.0460774030668565 +55429,277.1449999997842,-0.04605063273644494 +55430,277.1499999997842,-0.04602350793601378 +55431,277.1549999997842,-0.04599601735748197 +55432,277.1599999997842,-0.045968149003513606 +55433,277.1649999997842,-0.045939890120128335 +55434,277.1699999997842,-0.04591122712014289 +55435,277.1749999997842,-0.045882145495887414 +55436,277.1799999997842,-0.045852629719341904 +55437,277.18499999978417,-0.04582266312748348 +55438,277.18999999978416,-0.045792227790216626 +55439,277.19499999978416,-0.04576130435777088 +55440,277.19999999978415,-0.04572987188389028 +55441,277.20499999978415,-0.04569790762051018 +55442,277.20999999978415,-0.04566538677893198 +55443,277.21499999978414,-0.04563228225179538 +55444,277.21999999978414,-0.045598564289464294 +55445,277.22499999978413,-0.04556420012387608 +55446,277.2299999997841,-0.04552915353259322 +55447,277.2349999997841,-0.045493384335936166 +55448,277.2399999997841,-0.04545684782092481 +55449,277.2449999997841,-0.04541949408761589 +55450,277.2499999997841,-0.04538126731661195 +55451,277.2549999997841,-0.04534210496130234 +55452,277.2599999997841,-0.04530193687493333 +55453,277.2649999997841,-0.0452606843908455 +55454,277.2699999997841,-0.04521825938374315 +55455,277.2749999997841,-0.04517456334945915 +55456,277.2799999997841,-0.045129486547672244 +55457,277.2849999997841,-0.045082907251998774 +55458,277.2899999997841,-0.04503469114022851 +55459,277.29499999978407,-0.044984690833744984 +55460,277.29999999978406,-0.04493274556797389 +55461,277.30499999978406,-0.04487868096334025 +55462,277.30999999978405,-0.04482230888965426 +55463,277.31499999978405,-0.04476342748827713 +55464,277.31999999978405,-0.04470182153093074 +55465,277.32499999978404,-0.04463726342703313 +55466,277.32999999978404,-0.04456951529652114 +55467,277.33499999978403,-0.0444983325312231 +55468,277.339999999784,-0.044423469092900826 +55469,277.344999999784,-0.044344684396805376 +55470,277.349999999784,-0.044261751071502264 +55471,277.354999999784,-0.04417446236643683 +55472,277.359999999784,-0.04408263774525279 +55473,277.364999999784,-0.043986125401930434 +55474,277.369999999784,-0.04388480102163261 +55475,277.374999999784,-0.04377856287232115 +55476,277.379999999784,-0.043667324001391755 +55477,277.384999999784,-0.043551002727458044 +55478,277.389999999784,-0.04342951268991691 +55479,277.394999999784,-0.04330275350846409 +55480,277.399999999784,-0.04317060274980456 +55481,277.40499999978397,-0.04303290954000783 +55482,277.40999999978396,-0.042889489889508456 +55483,277.41499999978396,-0.042740123645456485 +55484,277.41999999978395,-0.042584552942067776 +55485,277.42499999978395,-0.04242248205185449 +55486,277.42999999978394,-0.042253578610807814 +55487,277.43499999978394,-0.0420774762606417 +55488,277.43999999978394,-0.041893778785983826 +55489,277.44499999978393,-0.041702065795766574 +55490,277.4499999997839,-0.0415018998921508 +55491,277.4549999997839,-0.04129283509564819 +55492,277.4599999997839,-0.04107442608479615 +55493,277.4649999997839,-0.04084623761101844 +55494,277.4699999997839,-0.04060785330951954 +55495,277.4749999997839,-0.040358883072897325 +55496,277.4799999997839,-0.040098968193834225 +55497,277.4849999997839,-0.03982778361284604 +55498,277.4899999997839,-0.03954503681353896 +55499,277.4949999997839,-0.03925046316166939 +55500,277.4999999997839,-0.03894381773555154 +55501,277.5049999997839,-0.03862486389116397 +55502,277.5099999997839,-0.03829335892585818 +55503,277.51499999978387,-0.03794903728519667 +55504,277.51999999978386,-0.03759159186691046 +55505,277.52499999978386,-0.03722065415980857 +55506,277.52999999978385,-0.0368357741893742 +55507,277.53499999978385,-0.0364364014354296 +55508,277.53999999978384,-0.03602186794002848 +55509,277.54499999978384,-0.03559137469152976 +55510,277.54999999978384,-0.03514398208675907 +55511,277.55499999978383,-0.03467860489665373 +55512,277.5599999997838,-0.03419401170157823 +55513,277.5649999997838,-0.033688828174229836 +55514,277.5699999997838,-0.03316154286885444 +55515,277.5749999997838,-0.03261051348036679 +55516,277.5799999997838,-0.03203397114893379 +55517,277.5849999997838,-0.03143002052443986 +55518,277.5899999997838,-0.030796633961436386 +55519,277.5949999997838,-0.030131639200396878 +55520,277.5999999997838,-0.02943270103065533 +55521,277.6049999997838,-0.028697298639916113 +55522,277.6099999997838,-0.02792270153780678 +55523,277.6149999997838,-0.027105947921490396 +55524,277.6199999997838,-0.026243830001601312 +55525,277.62499999978377,-0.025332891224560172 +55526,277.62999999978376,-0.024369440855017657 +55527,277.63499999978376,-0.023349592442214472 +55528,277.63999999978375,-0.022269334556042873 +55529,277.64499999978375,-0.02112464471841421 +55530,277.64999999978374,-0.019911659919798794 +55531,277.65499999978374,-0.01862691796814859 +55532,277.65999999978374,-0.01726768095958033 +55533,277.66499999978373,-0.015832343030480388 +55534,277.6699999997837,-0.014320907775606365 +55535,277.6749999997837,-0.012735497006279647 +55536,277.6799999997837,-0.011080825705428385 +55537,277.6849999997837,-0.00936455499738859 +55538,277.6899999997837,-0.0075974245258416465 +55539,277.6949999997837,-0.0057930767854716975 +55540,277.6999999997837,-0.003967524987804865 +55541,277.7049999997837,-0.002138282216177565 +55542,277.7099999997837,-0.0003232502796044745 +55543,277.7149999997837,0.001460463555364269 +55544,277.7199999997837,0.0031976045206828767 +55545,277.7249999997837,0.004875534238497302 +55546,277.7299999997837,0.006484610180754267 +55547,277.73499999978367,0.008018186771666727 +55548,277.73999999978366,0.009472321855792614 +55549,277.74499999978366,0.010845309001279436 +55550,277.74999999978365,0.012137151928411825 +55551,277.75499999978365,0.013349067433537939 +55552,277.75999999978364,0.014483065810058338 +55553,277.76499999978364,0.015541625864447866 +55554,277.76999999978364,0.016527460511865537 +55555,277.77499999978363,0.017443358299632408 +55556,277.7799999997836,0.018292083127592357 +55557,277.7849999997836,0.019076315662847905 +55558,277.7899999997836,0.019798622997175094 +55559,277.7949999997836,0.020461446465220676 +55560,277.7999999997836,0.021067100509037522 +55561,277.8049999997836,0.021617777804587263 +55562,277.8099999997836,0.022115557569432353 +55563,277.8149999997836,0.022562415154519778 +55564,277.8199999997836,0.022960231811776907 +55565,277.8249999997836,0.023310804034631843 +55566,277.8299999997836,0.023615852179071306 +55567,277.8349999997836,0.02387702825442082 +55568,277.8399999997836,0.024095922872649448 +55569,277.84499999978357,0.02427407139478204 +55570,277.84999999978356,0.024412959334033788 +55571,277.85499999978356,0.024514027080804246 +55572,277.85999999978355,0.02457867401259238 +55573,277.86499999978355,0.024608262046690043 +55574,277.86999999978354,0.024604118687527352 +55575,277.87499999978354,0.024567539614902587 +55576,277.87999999978354,0.024499790854477545 +55577,277.88499999978353,0.02440211056796592 +55578,277.8899999997835,0.02427571049733603 +55579,277.8949999997835,0.02412177709497798 +55580,277.8999999997835,0.023941472370020086 +55581,277.9049999997835,0.02373593447969406 +55582,277.9099999997835,0.023506278093725123 +55583,277.9149999997835,0.02325359455905565 +55584,277.9199999997835,0.02297895189170122 +55585,277.9249999997835,0.02268339462209983 +55586,277.9299999997835,0.022367943519868972 +55587,277.9349999997835,0.0220335952233621 +55588,277.9399999997835,0.021681321798758313 +55589,277.9449999997835,0.0213120702525732 +55590,277.9499999997835,0.020926762020416625 +55591,277.95499999978347,0.020526292453510203 +55592,277.95999999978346,0.020111530322912196 +55593,277.96499999978346,0.019683317359580108 +55594,277.96999999978345,0.01924246784635075 +55595,277.97499999978345,0.01878976827567099 +55596,277.97999999978344,0.018325977084509275 +55597,277.98499999978344,0.01785182447538348 +55598,277.98999999978344,0.017368012329910084 +55599,277.99499999978343,0.01687521421878993 +55600,277.9999999997834,0.016374075509753644 +55601,278.0049999997834,0.015865213572767625 +55602,278.0099999997834,0.015349218079793668 +55603,278.0149999997834,0.014826651394647698 +55604,278.0199999997834,0.01429804904704322 +55605,278.0249999997834,0.013763920283743894 +55606,278.0299999997834,0.013224748688890928 +55607,278.0349999997834,0.012680992864999458 +55608,278.0399999997834,0.012133087165814306 +55609,278.0449999997834,0.011581442472150776 +55610,278.0499999997834,0.011026447001985563 +55611,278.0549999997834,0.010468467146374793 +55612,278.0599999997834,0.009907848323219386 +55613,278.06499999978337,0.009344915841449414 +55614,278.06999999978336,0.008779975768814244 +55615,278.07499999978336,0.008213315797131283 +55616,278.07999999978335,0.007645206099527139 +55617,278.08499999978335,0.0070759001748932505 +55618,278.08999999978334,0.0065056356754467776 +55619,278.09499999978334,0.005934635213932417 +55620,278.09999999978334,0.005363107147611977 +55621,278.10499999978333,0.004791246336753718 +55622,278.1099999997833,0.004219234875857426 +55623,278.1149999997833,0.0036472427963243383 +55624,278.1199999997833,0.0030754287397086006 +55625,278.1249999997833,0.0025039406010638706 +55626,278.1299999997833,0.0019329161422344755 +55627,278.1349999997833,0.0013624835752291985 +55628,278.1399999997833,0.0007927621160665375 +55629,278.1449999997833,0.00022386250969530508 +55630,278.1499999997833,-0.00034411247322644554 +55631,278.1549999997833,-0.0009110675667593781 +55632,278.1599999997833,-0.0014769145662573582 +55633,278.1649999997833,-0.0020415719099265888 +55634,278.1699999997833,-0.0026049642841245025 +55635,278.17499999978327,-0.003167022251089268 +55636,278.17999999978326,-0.0037276818977391244 +55637,278.18499999978326,-0.004286884504144304 +55638,278.18999999978325,-0.004844576230248088 +55639,278.19499999978325,-0.005400707819398239 +55640,278.19999999978324,-0.005955234317244049 +55641,278.20499999978324,-0.00650811480455754 +55642,278.20999999978324,-0.007059312142549907 +55643,278.21499999978323,-0.007608792729274818 +55644,278.2199999997832,-0.008156526265741544 +55645,278.2249999997832,-0.008702485530397106 +55646,278.2299999997832,-0.00924664616068706 +55647,278.2349999997832,-0.009788986440457717 +55648,278.2399999997832,-0.01032948709202942 +55649,278.2449999997832,-0.010868131071839522 +55650,278.2499999997832,-0.011404903368636749 +55651,278.2549999997832,-0.011939790803291746 +55652,278.2599999997832,-0.01247278182938565 +55653,278.2649999997832,-0.01300386633383484 +55654,278.2699999997832,-0.013533035436920334 +55655,278.2749999997832,-0.014060281291202263 +55656,278.2799999997832,-0.014585596878923227 +55657,278.28499999978317,-0.015108975807632494 +55658,278.28999999978316,-0.015630412103905943 +55659,278.29499999978316,-0.016149900005182887 +55660,278.29999999978315,-0.016667433749905106 +55661,278.30499999978315,-0.017183007366311193 +55662,278.30999999978314,-0.017696614460423882 +55663,278.31499999978314,-0.018208248003957563 +55664,278.31999999978314,-0.018717900123071354 +55665,278.32499999978313,-0.019225561889096278 +55666,278.3299999997831,-0.019731223112568516 +55667,278.3349999997831,-0.020234872142099968 +55668,278.3399999997831,-0.02073649566980879 +55669,278.3449999997831,-0.021236078545207284 +55670,278.3499999997831,-0.021733603599599784 +55671,278.3549999997831,-0.022229051483168207 +55672,278.3599999997831,-0.022722400517015146 +55673,278.3649999997831,-0.023213626562483953 +55674,278.3699999997831,-0.023702702910077287 +55675,278.3749999997831,-0.024189600190247254 +55676,278.3799999997831,-0.024674286308223062 +55677,278.3849999997831,-0.02515672640487729 +55678,278.3899999997831,-0.025636882845406887 +55679,278.39499999978307,-0.026114715237320965 +55680,278.39999999978306,-0.026590180478887403 +55681,278.40499999978306,-0.02706323283879742 +55682,278.40999999978305,-0.027533824067372693 +55683,278.41499999978305,-0.028001903539166036 +55684,278.41999999978304,-0.02846741842631034 +55685,278.42499999978304,-0.02893031390145854 +55686,278.42999999978304,-0.02939053336864649 +55687,278.43499999978303,-0.02984801871991079 +55688,278.439999999783,-0.03030271061502195 +55689,278.444999999783,-0.03075454878125909 +55690,278.449999999783,-0.031203472329773066 +55691,278.454999999783,-0.031649420084766844 +55692,278.459999999783,-0.032092330921477855 +55693,278.464999999783,-0.03253214410878335 +55694,278.469999999783,-0.03296879965217098 +55695,278.474999999783,-0.033402238632825855 +55696,278.479999999783,-0.033832403538681964 +55697,278.484999999783,-0.034259238583466134 +55698,278.489999999783,-0.03468269001002235 +55699,278.494999999783,-0.03510270637453397 +55700,278.499999999783,-0.03551923880865192 +55701,278.50499999978297,-0.035932241256976916 +55702,278.50999999978296,-0.03634167068781952 +55703,278.51499999978296,-0.036747487275661087 +55704,278.51999999978295,-0.03714965455424682 +55705,278.52499999978295,-0.037548139539747734 +55706,278.52999999978294,-0.03794291282391662 +55707,278.53499999978294,-0.03833394863762568 +55708,278.53999999978294,-0.0387212248855987 +55709,278.54499999978293,-0.039104723153531765 +55710,278.5499999997829,-0.0394844286891278 +55711,278.5549999997829,-0.039860330358846195 +55712,278.5599999997829,-0.04023242058239015 +55713,278.5649999997829,-0.040600695247117645 +55714,278.5699999997829,-0.04096515360467147 +55715,278.5749999997829,-0.04132579815218014 +55716,278.5799999997829,-0.04168263450039041 +55717,278.5849999997829,-0.04203567123105704 +55718,278.5899999997829,-0.04238491974584282 +55719,278.5949999997829,-0.04273039410887745 +55720,278.5999999997829,-0.0430721108849932 +55721,278.6049999997829,-0.04341008897550482 +55722,278.6099999997829,-0.0437443494532363 +55723,278.61499999978287,-0.044074915398323505 +55724,278.61999999978286,-0.044401811736143666 +55725,278.62499999978286,-0.0447250650785444 +55726,278.62999999978285,-0.045044703569371514 +55727,278.63499999978285,-0.04536075673512607 +55728,278.63999999978284,-0.045673255341423656 +55729,278.64499999978284,-0.04598223125578 +55730,278.64999999978284,-0.04628771731711216 +55731,278.65499999978283,-0.04658974721222095 +55732,278.6599999997828,-0.04688835535941094 +55733,278.6649999997828,-0.04718357679930789 +55734,278.6699999997828,-0.04747544709284974 +55735,278.6749999997828,-0.0477640022263563 +55736,278.6799999997828,-0.04804927852352323 +55737,278.6849999997828,-0.048331312564137335 +55738,278.6899999997828,-0.04861014110927147 +55739,278.6949999997828,-0.04888580103268766 +55740,278.6999999997828,-0.0491583292581554 +55741,278.7049999997828,-0.04942776270237716 +55742,278.7099999997828,-0.04969413822320478 +55743,278.7149999997828,-0.04995749257282684 +55744,278.7199999997828,-0.050217862355608205 +55745,278.72499999978277,-0.050475283990267475 +55746,278.72999999978276,-0.05072979367608552 +55747,278.73499999978276,-0.05098142736284838 +55748,278.73999999978275,-0.051230220724239176 +55749,278.74499999978275,-0.05147620913440689 +55750,278.74999999978274,-0.05171942764745351 +55751,278.75499999978274,-0.05195991097959555 +55752,278.75999999978274,-0.052197693493770514 +55753,278.76499999978273,-0.05243280918647362 +55754,278.7699999997827,-0.05266529167662452 +55755,278.7749999997827,-0.05289517419627791 +55756,278.7799999997827,-0.05312248958300548 +55757,278.7849999997827,-0.05334727027379002 +55758,278.7899999997827,-0.05356954830028468 +55759,278.7949999997827,-0.053789355285302425 +55760,278.7999999997827,-0.05400672244041175 +55761,278.8049999997827,-0.0542216805645253 +55762,278.8099999997827,-0.05443426004337745 +55763,278.8149999997827,-0.0546444908497965 +55764,278.8199999997827,-0.054852402544684854 +55765,278.8249999997827,-0.055058024278629006 +55766,278.8299999997827,-0.05526138479406758 +55767,278.83499999978267,-0.0554625124279529 +55768,278.83999999978266,-0.05566143511484701 +55769,278.84499999978266,-0.055858180390398984 +55770,278.84999999978265,-0.05605277539515518 +55771,278.85499999978265,-0.056245246878658575 +55772,278.85999999978264,-0.056435621203797894 +55773,278.86499999978264,-0.05662392435137052 +55774,278.86999999978264,-0.05681018192482716 +55775,278.87499999978263,-0.05699441915516883 +55776,278.8799999997826,-0.05717666090597007 +55777,278.8849999997826,-0.05735693167850458 +55778,278.8899999997826,-0.05753525561695199 +55779,278.8949999997826,-0.05771165651366636 +55780,278.8999999997826,-0.05788615781448931 +55781,278.9049999997826,-0.05805878262409203 +55782,278.9099999997826,-0.05822955371133237 +55783,278.9149999997826,-0.0583984935146144 +55784,278.9199999997826,-0.058565624147239176 +55785,278.9249999997826,-0.05873096740273684 +55786,278.9299999997826,-0.05889454476017095 +55787,278.9349999997826,-0.059056377389407215 +55788,278.9399999997826,-0.059216486156339475 +55789,278.94499999978257,-0.05937489162806662 +55790,278.94999999978256,-0.05953161407801517 +55791,278.95499999978256,-0.0596866734910023 +55792,278.95999999978255,-0.059840089568235444 +55793,278.96499999978255,-0.059991881732244526 +55794,278.96999999978254,-0.060142069131743824 +55795,278.97499999978254,-0.06029067064642062 +55796,278.97999999978254,-0.06043770489164848 +55797,278.98499999978253,-0.0605831902231231 +55798,278.9899999997825,-0.060727144741419395 +55799,278.9949999997825,-0.060869586296468374 +55800,278.9999999997825,-0.06101053249195294 +55801,279.0049999997825,-0.061150000689622036 +55802,279.0099999997825,-0.061288008013522445 +55803,279.0149999997825,-0.06142457135414839 +55804,279.0199999997825,-0.061559707372508515 +55805,279.0249999997825,-0.06169343250411076 +55806,279.0299999997825,-0.06182576296286514 +55807,279.0349999997825,-0.061956714744905245 +55808,279.0399999997825,-0.062086303632328706 +55809,279.0449999997825,-0.06221454519685766 +55810,279.0499999997825,-0.06234145480341986 +55811,279.05499999978247,-0.0624670476136515 +55812,279.05999999978246,-0.0625913385893226 +55813,279.06499999978246,-0.06271434249568636 +55814,279.06999999978245,-0.06283607390475326 +55815,279.07499999978245,-0.06295654719849157 +55816,279.07999999978244,-0.06307577657195516 +55817,279.08499999978244,-0.06319377603634027 +55818,279.08999999978244,-0.0633105594219724 +55819,279.09499999978243,-0.0634261403812249 +55820,279.0999999997824,-0.06354053239137057 +55821,279.1049999997824,-0.06365374875736783 +55822,279.1099999997824,-0.06376580261458283 +55823,279.1149999997824,-0.06387670693144917 +55824,279.1199999997824,-0.06398647451206668 +55825,279.1249999997824,-0.06409511799874054 +55826,279.1299999997824,-0.06420264987446274 +55827,279.1349999997824,-0.06430908246533688 +55828,279.1399999997824,-0.06441442794294823 +55829,279.1449999997824,-0.06451869832668022 +55830,279.1499999997824,-0.06462190548597922 +55831,279.1549999997824,-0.06472406114256866 +55832,279.15999999978237,-0.0648251768726143 +55833,279.16499999978237,-0.06492526410884196 +55834,279.16999999978236,-0.06502433414260914 +55835,279.17499999978236,-0.06512239812593183 +55836,279.17999999978235,-0.06521946707346818 +55837,279.18499999978235,-0.06531555186445998 +55838,279.18999999978234,-0.06541066324463363 +55839,279.19499999978234,-0.06550481182806171 +55840,279.19999999978234,-0.06559800809898639 +55841,279.20499999978233,-0.06569026241360605 +55842,279.2099999997823,-0.06578158500182626 +55843,279.2149999997823,-0.06587198596897613 +55844,279.2199999997823,-0.06596147529749154 +55845,279.2249999997823,-0.06605006284856584 +55846,279.2299999997823,-0.06613775836376964 +55847,279.2349999997823,-0.0662245714666404 +55848,279.2399999997823,-0.06631051166424268 +55849,279.2449999997823,-0.06639558834870056 +55850,279.2499999997823,-0.06647981079870258 +55851,279.2549999997823,-0.06656318818098049 +55852,279.2599999997823,-0.06664572955176251 +55853,279.2649999997823,-0.06672744385820198 +55854,279.26999999978227,-0.06680833993978215 +55855,279.27499999978227,-0.06688842652969802 +55856,279.27999999978226,-0.06696771225621587 +55857,279.28499999978226,-0.06704620564401104 +55858,279.28999999978225,-0.06712391511548507 +55859,279.29499999978225,-0.06720084899206238 +55860,279.29999999978224,-0.06727701549546727 +55861,279.30499999978224,-0.06735242274898211 +55862,279.30999999978224,-0.06742707877868678 +55863,279.31499999978223,-0.06750099151468034 +55864,279.3199999997822,-0.06757416879228519 +55865,279.3249999997822,-0.06764661835323424 +55866,279.3299999997822,-0.06771834784684173 +55867,279.3349999997822,-0.06778936483115794 +55868,279.3399999997822,-0.06785967677410817 +55869,279.3449999997822,-0.06792929105461666 +55870,279.3499999997822,-0.0679982149637156 +55871,279.3549999997822,-0.06806645570563959 +55872,279.3599999997822,-0.06813402039890601 +55873,279.3649999997822,-0.06820091607738156 +55874,279.3699999997822,-0.06826714969133528 +55875,279.3749999997822,-0.06833272810847818 +55876,279.37999999978217,-0.06839765811499014 +55877,279.38499999978217,-0.06846194641653391 +55878,279.38999999978216,-0.06852559963925679 +55879,279.39499999978216,-0.06858862433077988 +55880,279.39999999978215,-0.0686510269611755 +55881,279.40499999978215,-0.06871281392393275 +55882,279.40999999978214,-0.06877399153691134 +55883,279.41499999978214,-0.06883456604328422 +55884,279.41999999978214,-0.06889454361246873 +55885,279.42499999978213,-0.06895393034104676 +55886,279.4299999997821,-0.06901273225367409 +55887,279.4349999997821,-0.06907095530397878 +55888,279.4399999997821,-0.06912860537544906 +55889,279.4449999997821,-0.06918568828231067 +55890,279.4499999997821,-0.0692422097703939 +55891,279.4549999997821,-0.06929817551799035 +55892,279.4599999997821,-0.06935359113669957 +55893,279.4649999997821,-0.06940846217226584 +55894,279.4699999997821,-0.06946279410540487 +55895,279.4749999997821,-0.06951659235262085 +55896,279.4799999997821,-0.06956986226701387 +55897,279.4849999997821,-0.06962260913907761 +55898,279.48999999978207,-0.06967483819748777 +55899,279.49499999978207,-0.06972655460988089 +55900,279.49999999978206,-0.06977776348362416 +55901,279.50499999978206,-0.0698284698665757 +55902,279.50999999978205,-0.0698786787478361 +55903,279.51499999978205,-0.06992839505849059 +55904,279.51999999978204,-0.06997762367234257 +55905,279.52499999978204,-0.07002636940663806 +55906,279.52999999978204,-0.0700746370227815 +55907,279.53499999978203,-0.0701224312270428 +55908,279.539999999782,-0.07016975667125588 +55909,279.544999999782,-0.07021661795350852 +55910,279.549999999782,-0.07026301961882382 +55911,279.554999999782,-0.07030896615983333 +55912,279.559999999782,-0.07035446201744185 +55913,279.564999999782,-0.0703995115814839 +55914,279.569999999782,-0.07044411919137222 +55915,279.574999999782,-0.07048828913673806 +55916,279.579999999782,-0.0705320256580635 +55917,279.584999999782,-0.07057533294730588 +55918,279.589999999782,-0.07061821514851431 +55919,279.594999999782,-0.07066067635843848 +55920,279.59999999978197,-0.07070272062712973 +55921,279.60499999978197,-0.0707443519585345 +55922,279.60999999978196,-0.07078557431108018 +55923,279.61499999978196,-0.07082639159825362 +55924,279.61999999978195,-0.07086680768917202 +55925,279.62499999978195,-0.07090682640914678 +55926,279.62999999978194,-0.07094645154023975 +55927,279.63499999978194,-0.07098568682181265 +55928,279.63999999978194,-0.0710245359510691 +55929,279.64499999978193,-0.07106300258358977 +55930,279.6499999997819,-0.07110109033386061 +55931,279.6549999997819,-0.07113880277579401 +55932,279.6599999997819,-0.07117614344324337 +55933,279.6649999997819,-0.07121311583051079 +55934,279.6699999997819,-0.0712497233928482 +55935,279.6749999997819,-0.07128596954695178 +55936,279.6799999997819,-0.07132185767145002 +55937,279.6849999997819,-0.07135739110738522 +55938,279.6899999997819,-0.07139257315868866 +55939,279.6949999997819,-0.07142740709264961 +55940,279.6999999997819,-0.0714618961403778 +55941,279.7049999997819,-0.07149604349726016 +55942,279.70999999978187,-0.07152985232341115 +55943,279.71499999978187,-0.07156332574411725 +55944,279.71999999978186,-0.07159646685027553 +55945,279.72499999978186,-0.07162927869882627 +55946,279.72999999978185,-0.0716617643131799 +55947,279.73499999978185,-0.07169392668363815 +55948,279.73999999978184,-0.07172576876780962 +55949,279.74499999978184,-0.0717572934910197 +55950,279.74999999978183,-0.07178850374671508 +55951,279.75499999978183,-0.07181940239686277 +55952,279.7599999997818,-0.07184999227234376 +55953,279.7649999997818,-0.07188027617334138 +55954,279.7699999997818,-0.07191025686972448 +55955,279.7749999997818,-0.0719399371014254 +55956,279.7799999997818,-0.07196931957881286 +55957,279.7849999997818,-0.07199840698305984 +55958,279.7899999997818,-0.07202720196650647 +55959,279.7949999997818,-0.07205570715301807 +55960,279.7999999997818,-0.07208392513833832 +55961,279.8049999997818,-0.0721118584904377 +55962,279.8099999997818,-0.07213950974985717 +55963,279.8149999997818,-0.07216688143004729 +55964,279.81999999978177,-0.0721939760177027 +55965,279.82499999978177,-0.07222079597309213 +55966,279.82999999978176,-0.07224734373038391 +55967,279.83499999978176,-0.07227362169796712 +55968,279.83999999978175,-0.0722996322587685 +55969,279.84499999978175,-0.07232537777056479 +55970,279.84999999978174,-0.07235086056629125 +55971,279.85499999978174,-0.07237608295434574 +55972,279.85999999978173,-0.0724010472188888 +55973,279.86499999978173,-0.07242575562013973 +55974,279.8699999997817,-0.07245021039466853 +55975,279.8749999997817,-0.07247441375568417 +55976,279.8799999997817,-0.07249836789331868 +55977,279.8849999997817,-0.07252207497490765 +55978,279.8899999997817,-0.07254553714526689 +55979,279.8949999997817,-0.07256875652696536 +55980,279.8999999997817,-0.07259173522059441 +55981,279.9049999997817,-0.07261447530503348 +55982,279.9099999997817,-0.07263697883771222 +55983,279.9149999997817,-0.07265924785486905 +55984,279.9199999997817,-0.07268128437180633 +55985,279.9249999997817,-0.07270309038314204 +55986,279.92999999978167,-0.07272466786305821 +55987,279.93499999978167,-0.07274601876554593 +55988,279.93999999978166,-0.07276714502464711 +55989,279.94499999978166,-0.07278804855469309 +55990,279.94999999978165,-0.07280873125053998 +55991,279.95499999978165,-0.07282919498780095 +55992,279.95999999978164,-0.07284944162307536 +55993,279.96499999978164,-0.0728694729941749 +55994,279.96999999978163,-0.07288929092034675 +55995,279.97499999978163,-0.0729088972024937 +55996,279.9799999997816,-0.07292829362339143 +55997,279.9849999997816,-0.07294748194790286 +55998,279.9899999997816,-0.07296646392318977 +55999,279.9949999997816,-0.0729852412789215 +56000,279.9999999997816,-0.07300381572748102 +56001,280.0049999997816,-0.07302218896416811 +56002,280.0099999997816,-0.07304036266740015 +56003,280.0149999997816,-0.07305833849890997 +56004,280.0199999997816,-0.0730761181039413 +56005,280.0249999997816,-0.07309370311144159 +56006,280.0299999997816,-0.0731110951342523 +56007,280.0349999997816,-0.07312829576929677 +56008,280.03999999978157,-0.07314530659776548 +56009,280.04499999978157,-0.0731621291852991 +56010,280.04999999978156,-0.07317876508216897 +56011,280.05499999978156,-0.07319521582345535 +56012,280.05999999978155,-0.07321148292922333 +56013,280.06499999978155,-0.07322756790469638 +56014,280.06999999978154,-0.07324347224042774 +56015,280.07499999978154,-0.07325919741246953 +56016,280.07999999978153,-0.07327474488253977 +56017,280.08499999978153,-0.07329011609818706 +56018,280.0899999997815,-0.07330531249295334 +56019,280.0949999997815,-0.07332033548653438 +56020,280.0999999997815,-0.07333518648493834 +56021,280.1049999997815,-0.07334986688064216 +56022,280.1099999997815,-0.07336437805274608 +56023,280.1149999997815,-0.07337872136712606 +56024,280.1199999997815,-0.07339289817658431 +56025,280.1249999997815,-0.07340690982099786 +56026,280.1299999997815,-0.07342075762746525 +56027,280.1349999997815,-0.07343444291045138 +56028,280.1399999997815,-0.07344796697193044 +56029,280.1449999997815,-0.07346133110152706 +56030,280.14999999978147,-0.07347453657665565 +56031,280.15499999978147,-0.07348758466265803 +56032,280.15999999978146,-0.07350047661293922 +56033,280.16499999978146,-0.07351321366910155 +56034,280.16999999978145,-0.07352579706107709 +56035,280.17499999978145,-0.07353822800725841 +56036,280.17999999978144,-0.07355050771462765 +56037,280.18499999978144,-0.07356263737888395 +56038,280.18999999978143,-0.07357461818456941 +56039,280.19499999978143,-0.07358645130519322 +56040,280.1999999997814,-0.07359813790335445 +56041,280.2049999997814,-0.0736096791308633 +56042,280.2099999997814,-0.07362107612886057 +56043,280.2149999997814,-0.07363233002793598 +56044,280.2199999997814,-0.07364344194824476 +56045,280.2249999997814,-0.07365441299962289 +56046,280.2299999997814,-0.07366524428170092 +56047,280.2349999997814,-0.07367593688401627 +56048,280.2399999997814,-0.07368649188612425 +56049,280.2449999997814,-0.0736969103577076 +56050,280.2499999997814,-0.07370719335868481 +56051,280.2549999997814,-0.07371734193931688 +56052,280.25999999978137,-0.07372735714031299 +56053,280.26499999978137,-0.0737372399929347 +56054,280.26999999978136,-0.07374699151909896 +56055,280.27499999978136,-0.07375661273147975 +56056,280.27999999978135,-0.0737661046336086 +56057,280.28499999978135,-0.07377546821997372 +56058,280.28999999978134,-0.07378470447611808 +56059,280.29499999978134,-0.07379381437873611 +56060,280.29999999978133,-0.07380279889576936 +56061,280.30499999978133,-0.07381165898650088 +56062,280.3099999997813,-0.07382039560164859 +56063,280.3149999997813,-0.07382900968345725 +56064,280.3199999997813,-0.07383750216578963 +56065,280.3249999997813,-0.07384587397421634 +56066,280.3299999997813,-0.07385412602610458 +56067,280.3349999997813,-0.07386225923070602 +56068,280.3399999997813,-0.07387027448924327 +56069,280.3449999997813,-0.07387817269499565 +56070,280.3499999997813,-0.07388595473338366 +56071,280.3549999997813,-0.07389362148205254 +56072,280.3599999997813,-0.07390117381095485 +56073,280.3649999997813,-0.07390861258243196 +56074,280.36999999978127,-0.07391593865129464 +56075,280.37499999978127,-0.07392315286490264 +56076,280.37999999978126,-0.07393025606324329 +56077,280.38499999978126,-0.0739372490790092 +56078,280.38999999978125,-0.07394413273767504 +56079,280.39499999978125,-0.0739509078575733 +56080,280.39999999978124,-0.07395757524996928 +56081,280.40499999978124,-0.07396413571913507 +56082,280.40999999978123,-0.0739705900624227 +56083,280.41499999978123,-0.07397693907033637 +56084,280.4199999997812,-0.07398318352660398 +56085,280.4249999997812,-0.07398932420824751 +56086,280.4299999997812,-0.07399536188565287 +56087,280.4349999997812,-0.0740012973226387 +56088,280.4399999997812,-0.0740071312765245 +56089,280.4449999997812,-0.07401286449819786 +56090,280.4499999997812,-0.07401849773218089 +56091,280.4549999997812,-0.074024031716696 +56092,280.4599999997812,-0.07402946718373069 +56093,280.4649999997812,-0.07403480485910174 +56094,280.4699999997812,-0.0740400454625186 +56095,280.4749999997812,-0.07404518970764602 +56096,280.47999999978117,-0.07405023830216588 +56097,280.48499999978117,-0.07405519194783847 +56098,280.48999999978116,-0.07406005134056286 +56099,280.49499999978116,-0.07406481717043666 +56100,280.49999999978115,-0.07406949012181512 +56101,280.50499999978115,-0.07407407087336935 +56102,280.50999999978114,-0.07407856009814416 +56103,280.51499999978114,-0.07408295846361494 +56104,280.51999999978113,-0.07408726663174402 +56105,280.52499999978113,-0.07409148525903635 +56106,280.5299999997811,-0.07409561499659456 +56107,280.5349999997811,-0.07409965649017333 +56108,280.5399999997811,-0.07410361038023311 +56109,280.5449999997811,-0.07410747730199331 +56110,280.5499999997811,-0.07411125788548484 +56111,280.5549999997811,-0.07411495275560191 +56112,280.5599999997811,-0.07411856253215349 +56113,280.5649999997811,-0.07412208782991393 +56114,280.5699999997811,-0.07412552925867318 +56115,280.5749999997811,-0.0741288874232862 +56116,280.5799999997811,-0.07413216292372217 +56117,280.5849999997811,-0.0741353563551127 +56118,280.58999999978107,-0.07413846830779987 +56119,280.59499999978107,-0.07414149936738344 +56120,280.59999999978106,-0.07414445011476771 +56121,280.60499999978106,-0.07414732112620767 +56122,280.60999999978105,-0.07415011297335486 +56123,280.61499999978105,-0.07415282622330241 +56124,280.61999999978104,-0.07415546143862986 +56125,280.62499999978104,-0.07415801917744722 +56126,280.62999999978103,-0.0741604999934387 +56127,280.63499999978103,-0.07416290443590585 +56128,280.639999999781,-0.07416523304981035 +56129,280.644999999781,-0.07416748637581601 +56130,280.649999999781,-0.0741696649503307 +56131,280.654999999781,-0.07417176930554746 +56132,280.659999999781,-0.07417379996948535 +56133,280.664999999781,-0.07417575746602977 +56134,280.669999999781,-0.07417764231497229 +56135,280.674999999781,-0.07417945503205013 +56136,280.679999999781,-0.0741811961289851 +56137,280.684999999781,-0.07418286611352215 +56138,280.689999999781,-0.07418446548946747 +56139,280.694999999781,-0.07418599475672619 +56140,280.69999999978097,-0.0741874544113396 +56141,280.70499999978097,-0.07418884494552207 +56142,280.70999999978096,-0.07419016684769739 +56143,280.71499999978096,-0.07419142060253485 +56144,280.71999999978095,-0.07419260669098486 +56145,280.72499999978095,-0.07419372559031416 +56146,280.72999999978094,-0.07419477777414064 +56147,280.73499999978094,-0.07419576371246786 +56148,280.73999999978093,-0.07419668387171902 +56149,280.74499999978093,-0.07419753871477072 +56150,280.7499999997809,-0.07419832870098624 +56151,280.7549999997809,-0.07419905428624853 +56152,280.7599999997809,-0.07419971592299272 +56153,280.7649999997809,-0.07420031406023844 +56154,280.7699999997809,-0.0742008491436216 +56155,280.7749999997809,-0.07420132161542597 +56156,280.7799999997809,-0.07420173191461434 +56157,280.7849999997809,-0.07420208047685929 +56158,280.7899999997809,-0.07420236773457384 +56159,280.7949999997809,-0.07420259411694141 +56160,280.7999999997809,-0.07420276004994579 +56161,280.8049999997809,-0.07420286595640059 +56162,280.80999999978087,-0.07420291225597841 +56163,280.81499999978087,-0.07420289936523979 +56164,280.81999999978086,-0.07420282769766161 +56165,280.82499999978086,-0.07420269766366544 +56166,280.82999999978085,-0.07420250967064544 +56167,280.83499999978085,-0.07420226412299603 +56168,280.83999999978084,-0.07420196142213914 +56169,280.84499999978084,-0.07420160196655128 +56170,280.84999999978083,-0.07420118615179033 +56171,280.85499999978083,-0.07420071437052189 +56172,280.8599999997808,-0.07420018701254556 +56173,280.8649999997808,-0.07419960446482074 +56174,280.8699999997808,-0.07419896711149229 +56175,280.8749999997808,-0.07419827533391585 +56176,280.8799999997808,-0.07419752951068284 +56177,280.8849999997808,-0.07419673001764537 +56178,280.8899999997808,-0.07419587722794069 +56179,280.8949999997808,-0.07419497151201541 +56180,280.8999999997808,-0.07419401323764963 +56181,280.9049999997808,-0.07419300276998059 +56182,280.9099999997808,-0.07419194047152618 +56183,280.9149999997808,-0.07419082670220822 +56184,280.91999999978077,-0.07418966181937546 +56185,280.92499999978077,-0.07418844617782629 +56186,280.92999999978076,-0.07418718012983125 +56187,280.93499999978076,-0.0741858640251554 +56188,280.93999999978075,-0.07418449821108024 +56189,280.94499999978075,-0.0741830830324256 +56190,280.94999999978074,-0.07418161883157118 +56191,280.95499999978074,-0.07418010594847789 +56192,280.95999999978073,-0.07417854472070902 +56193,280.96499999978073,-0.07417693548345108 +56194,280.9699999997807,-0.07417527856953457 +56195,280.9749999997807,-0.07417357430945434 +56196,280.9799999997807,-0.07417182303138993 +56197,280.9849999997807,-0.07417002506122558 +56198,280.9899999997807,-0.07416818072257002 +56199,280.9949999997807,-0.07416629033677617 +56200,280.9999999997807,-0.07416435422296054 +56201,281.0049999997807,-0.0741623726980224 +56202,281.0099999997807,-0.0741603460766628 +56203,281.0149999997807,-0.07415827467140351 +56204,281.0199999997807,-0.07415615879260547 +56205,281.0249999997807,-0.07415399874848737 +56206,281.02999999978067,-0.0741517948451438 +56207,281.03499999978067,-0.07414954738656336 +56208,281.03999999978066,-0.07414725667464649 +56209,281.04499999978066,-0.07414492300922317 +56210,281.04999999978065,-0.07414254668807042 +56211,281.05499999978065,-0.07414012800692966 +56212,281.05999999978064,-0.07413766725952377 +56213,281.06499999978064,-0.07413516473757414 +56214,281.06999999978063,-0.07413262073081746 +56215,281.07499999978063,-0.07413003552702226 +56216,281.0799999997806,-0.07412740941200548 +56217,281.0849999997806,-0.07412474266964865 +56218,281.0899999997806,-0.07412203558191413 +56219,281.0949999997806,-0.07411928842886095 +56220,281.0999999997806,-0.07411650148866067 +56221,281.1049999997806,-0.07411367503761303 +56222,281.1099999997806,-0.07411080935016133 +56223,281.1149999997806,-0.07410790469890792 +56224,281.1199999997806,-0.07410496135462918 +56225,281.1249999997806,-0.07410197958629068 +56226,281.1299999997806,-0.07409895966106196 +56227,281.1349999997806,-0.07409590184433124 +56228,281.13999999978057,-0.07409280639972007 +56229,281.14499999978057,-0.07408967358909765 +56230,281.14999999978056,-0.07408650367259517 +56231,281.15499999978056,-0.07408329690861988 +56232,281.15999999978055,-0.07408005355386918 +56233,281.16499999978055,-0.07407677386334435 +56234,281.16999999978054,-0.07407345809036439 +56235,281.17499999978054,-0.07407010648657947 +56236,281.17999999978053,-0.07406671930198447 +56237,281.18499999978053,-0.07406329678493223 +56238,281.1899999997805,-0.07405983918214681 +56239,281.1949999997805,-0.07405634673873644 +56240,281.1999999997805,-0.07405281969820647 +56241,281.2049999997805,-0.07404925830247217 +56242,281.2099999997805,-0.07404566279187144 +56243,281.2149999997805,-0.07404203340517727 +56244,281.2199999997805,-0.07403837037961021 +56245,281.2249999997805,-0.07403467395085064 +56246,281.2299999997805,-0.07403094435305098 +56247,281.2349999997805,-0.0740271818188477 +56248,281.2399999997805,-0.07402338657937328 +56249,281.2449999997805,-0.07401955886426807 +56250,281.24999999978047,-0.07401569890169195 +56251,281.25499999978047,-0.0740118069183359 +56252,281.25999999978046,-0.07400788313943359 +56253,281.26499999978046,-0.07400392778877263 +56254,281.26999999978045,-0.0739999410887059 +56255,281.27499999978045,-0.07399592326016266 +56256,281.27999999978044,-0.07399187452265966 +56257,281.28499999978044,-0.073987795094312 +56258,281.28999999978043,-0.07398368519184399 +56259,281.29499999978043,-0.07397954503059992 +56260,281.2999999997804,-0.07397537482455462 +56261,281.3049999997804,-0.07397117478632405 +56262,281.3099999997804,-0.07396694512717562 +56263,281.3149999997804,-0.07396268605703867 +56264,281.3199999997804,-0.07395839778451455 +56265,281.3249999997804,-0.0739540805168868 +56266,281.3299999997804,-0.07394973446013124 +56267,281.3349999997804,-0.07394535981892578 +56268,281.3399999997804,-0.0739409567966604 +56269,281.3449999997804,-0.0739365255954468 +56270,281.3499999997804,-0.07393206641612812 +56271,281.3549999997804,-0.07392757945828846 +56272,281.35999999978037,-0.07392306492026235 +56273,281.36499999978037,-0.07391852299914421 +56274,281.36999999978036,-0.0739139538907976 +56275,281.37499999978036,-0.07390935778986439 +56276,281.37999999978035,-0.07390473488977396 +56277,281.38499999978035,-0.07390008538275221 +56278,281.38999999978034,-0.07389540945983049 +56279,281.39499999978034,-0.07389070731085452 +56280,281.39999999978033,-0.07388597912449318 +56281,281.40499999978033,-0.07388122508824714 +56282,281.4099999997803,-0.07387644538845757 +56283,281.4149999997803,-0.07387164021031468 +56284,281.4199999997803,-0.07386680973786615 +56285,281.4249999997803,-0.07386195415402554 +56286,281.4299999997803,-0.07385707364058063 +56287,281.4349999997803,-0.07385216837820159 +56288,281.4399999997803,-0.0738472385464492 +56289,281.4449999997803,-0.07384228432378297 +56290,281.4499999997803,-0.07383730588756902 +56291,281.4549999997803,-0.07383230341408814 +56292,281.4599999997803,-0.07382727707854363 +56293,281.4649999997803,-0.07382222705506906 +56294,281.46999999978027,-0.07381715351673604 +56295,281.47499999978027,-0.07381205663556183 +56296,281.47999999978026,-0.07380693658251695 +56297,281.48499999978026,-0.07380179352753272 +56298,281.48999999978025,-0.07379662763950863 +56299,281.49499999978025,-0.07379143908631981 +56300,281.49999999978024,-0.0737862280348243 +56301,281.50499999978024,-0.0737809946508703 +56302,281.50999999978023,-0.07377573909930334 +56303,281.51499999978023,-0.07377046154397346 +56304,281.5199999997802,-0.07376516214774217 +56305,281.5249999997802,-0.07375984107248955 +56306,281.5299999997802,-0.07375449847912109 +56307,281.5349999997802,-0.07374913452757462 +56308,281.5399999997802,-0.07374374937682704 +56309,281.5449999997802,-0.07373834318490119 +56310,281.5499999997802,-0.0737329161088724 +56311,281.5549999997802,-0.07372746830487523 +56312,281.5599999997802,-0.07372199992810999 +56313,281.5649999997802,-0.07371651113284922 +56314,281.5699999997802,-0.07371100207244421 +56315,281.5749999997802,-0.07370547289933138 +56316,281.57999999978017,-0.07369992376503857 +56317,281.58499999978017,-0.07369435482019139 +56318,281.58999999978016,-0.07368876621451942 +56319,281.59499999978016,-0.07368315809686239 +56320,281.59999999978015,-0.0736775306151763 +56321,281.60499999978015,-0.07367188391653955 +56322,281.60999999978014,-0.0736662181471588 +56323,281.61499999978014,-0.07366053345237514 +56324,281.61999999978013,-0.07365482997666983 +56325,281.62499999978013,-0.07364910786367028 +56326,281.6299999997801,-0.07364336725615579 +56327,281.6349999997801,-0.07363760829606332 +56328,281.6399999997801,-0.07363183112449326 +56329,281.6449999997801,-0.07362603588171503 +56330,281.6499999997801,-0.07362022270717272 +56331,281.6549999997801,-0.07361439173949065 +56332,281.6599999997801,-0.07360854311647888 +56333,281.6649999997801,-0.07360267697513875 +56334,281.6699999997801,-0.07359679345166818 +56335,281.6749999997801,-0.07359089268146715 +56336,281.6799999997801,-0.07358497479914303 +56337,281.6849999997801,-0.07357903993851579 +56338,281.68999999978007,-0.07357308823262335 +56339,281.69499999978007,-0.07356711981372668 +56340,281.69999999978006,-0.07356113481331505 +56341,281.70499999978006,-0.07355513336211107 +56342,281.70999999978005,-0.07354911559007579 +56343,281.71499999978005,-0.07354308162641372 +56344,281.71999999978004,-0.07353703159957786 +56345,281.72499999978004,-0.07353096563727457 +56346,281.72999999978003,-0.0735248838664685 +56347,281.73499999978003,-0.07351878641338748 +56348,281.73999999978,-0.07351267340352732 +56349,281.74499999978,-0.07350654496165661 +56350,281.74999999978,-0.07350040121182141 +56351,281.75499999978,-0.07349424227735005 +56352,281.75999999978,-0.07348806828085766 +56353,281.76499999978,-0.07348187934425095 +56354,281.76999999978,-0.07347567558873266 +56355,281.77499999978,-0.07346945713480622 +56356,281.77999999978,-0.07346322410228018 +56357,281.78499999978,-0.07345697661027274 +56358,281.78999999978,-0.07345071477721618 +56359,281.79499999978,-0.07344443872086123 +56360,281.79999999977997,-0.0734381485582815 +56361,281.80499999977997,-0.07343184440587776 +56362,281.80999999977996,-0.07342552637938225 +56363,281.81499999977996,-0.07341919459386298 +56364,281.81999999977995,-0.07341284916372791 +56365,281.82499999977995,-0.07340649020272917 +56366,281.82999999977994,-0.07340011782396721 +56367,281.83499999977994,-0.07339373213989493 +56368,281.83999999977993,-0.07338733326232182 +56369,281.84499999977993,-0.07338092130241794 +56370,281.8499999997799,-0.073374496370718 +56371,281.8549999997799,-0.07336805857712536 +56372,281.8599999997799,-0.07336160803091599 +56373,281.8649999997799,-0.0733551448407424 +56374,281.8699999997799,-0.07334866911463754 +56375,281.8749999997799,-0.0733421809600187 +56376,281.8799999997799,-0.0733356804836913 +56377,281.8849999997799,-0.07332916779185272 +56378,281.8899999997799,-0.07332264299009617 +56379,281.8949999997799,-0.0733161061834143 +56380,281.8999999997799,-0.07330955747620303 +56381,281.9049999997799,-0.07330299697226517 +56382,281.90999999977987,-0.07329642477481414 +56383,281.91499999977987,-0.0732898409864776 +56384,281.91999999977986,-0.07328324570930105 +56385,281.92499999977986,-0.07327663904475136 +56386,281.92999999977985,-0.07327002109372045 +56387,281.93499999977985,-0.07326339195652867 +56388,281.93999999977984,-0.0732567517329284 +56389,281.94499999977984,-0.07325010052210747 +56390,281.94999999977983,-0.07324343842269261 +56391,281.95499999977983,-0.07323676553275293 +56392,281.9599999997798,-0.07323008194980322 +56393,281.9649999997798,-0.07322338777080739 +56394,281.9699999997798,-0.07321668309218175 +56395,281.9749999997798,-0.07320996800979837 +56396,281.9799999997798,-0.07320324261898836 +56397,281.9849999997798,-0.07319650701454511 +56398,281.9899999997798,-0.07318976129072759 +56399,281.9949999997798,-0.0731830055412635 +56400,281.9999999997798,-0.07317623985935251 +56401,282.0049999997798,-0.07316946433766938 +56402,282.0099999997798,-0.07316267906836718 +56403,282.0149999997798,-0.07315588414308033 +56404,282.01999999977977,-0.07314907965292773 +56405,282.02499999977977,-0.07314226568851585 +56406,282.02999999977976,-0.07313544233994178 +56407,282.03499999977976,-0.0731286096967962 +56408,282.03999999977975,-0.07312176784816649 +56409,282.04499999977975,-0.0731149168826396 +56410,282.04999999977974,-0.07310805688830513 +56411,282.05499999977974,-0.07310118795275815 +56412,282.05999999977973,-0.07309431016310222 +56413,282.06499999977973,-0.07308742360595222 +56414,282.0699999997797,-0.07308052836743724 +56415,282.0749999997797,-0.0730736245332035 +56416,282.0799999997797,-0.07306671218841708 +56417,282.0849999997797,-0.07305979141776678 +56418,282.0899999997797,-0.07305286230546693 +56419,282.0949999997797,-0.07304592493526016 +56420,282.0999999997797,-0.07303897939042013 +56421,282.1049999997797,-0.07303202575375425 +56422,282.1099999997797,-0.07302506410760645 +56423,282.1149999997797,-0.07301809453385982 +56424,282.1199999997797,-0.0730111171139393 +56425,282.1249999997797,-0.07300413192881434 +56426,282.12999999977967,-0.07299713905900154 +56427,282.13499999977967,-0.07299013858456725 +56428,282.13999999977966,-0.07298313058513017 +56429,282.14499999977966,-0.07297611513986395 +56430,282.14999999977965,-0.07296909232749973 +56431,282.15499999977965,-0.07296206222632871 +56432,282.15999999977964,-0.07295502491420464 +56433,282.16499999977964,-0.07294798046854631 +56434,282.16999999977963,-0.07294092896634012 +56435,282.17499999977963,-0.0729338704841425 +56436,282.1799999997796,-0.07292680509808236 +56437,282.1849999997796,-0.07291973288386353 +56438,282.1899999997796,-0.07291265391676716 +56439,282.1949999997796,-0.0729055682716542 +56440,282.1999999997796,-0.07289847602296774 +56441,282.2049999997796,-0.07289137724473532 +56442,282.2099999997796,-0.07288427201057138 +56443,282.2149999997796,-0.07287716039367953 +56444,282.2199999997796,-0.07287004246685493 +56445,282.2249999997796,-0.07286291830248652 +56446,282.2299999997796,-0.0728557879725594 +56447,282.2349999997796,-0.07284865154865702 +56448,282.23999999977957,-0.07284150910196348 +56449,282.24499999977957,-0.07283436070326577 +56450,282.24999999977956,-0.07282720642295595 +56451,282.25499999977956,-0.07282004633103348 +56452,282.25999999977955,-0.07281288049710727 +56453,282.26499999977955,-0.07280570899039795 +56454,282.26999999977954,-0.07279853187974004 +56455,282.27499999977954,-0.07279134923358403 +56456,282.27999999977953,-0.07278416111999861 +56457,282.28499999977953,-0.0727769676066727 +56458,282.2899999997795,-0.07276976876091767 +56459,282.2949999997795,-0.07276256464966932 +56460,282.2999999997795,-0.07275535533949003 +56461,282.3049999997795,-0.0727481408965708 +56462,282.3099999997795,-0.07274092138673335 +56463,282.3149999997795,-0.07273369687543205 +56464,282.3199999997795,-0.07272646742775606 +56465,282.3249999997795,-0.07271923310843127 +56466,282.3299999997795,-0.07271199398182236 +56467,282.3349999997795,-0.07270475011193471 +56468,282.3399999997795,-0.07269750156241644 +56469,282.3449999997795,-0.07269024839656035 +56470,282.34999999977947,-0.0726829906773058 +56471,282.35499999977947,-0.07267572846724074 +56472,282.35999999977946,-0.07266846182860359 +56473,282.36499999977946,-0.07266119082328515 +56474,282.36999999977945,-0.07265391551283047 +56475,282.37499999977945,-0.07264663595844077 +56476,282.37999999977944,-0.07263935222097528 +56477,282.38499999977944,-0.07263206436095317 +56478,282.38999999977943,-0.07262477243855525 +56479,282.39499999977943,-0.07261747651362599 +56480,282.3999999997794,-0.07261017664567518 +56481,282.4049999997794,-0.07260287289387983 +56482,282.4099999997794,-0.07259556531708597 +56483,282.4149999997794,-0.07258825397381038 +56484,282.4199999997794,-0.07258093892224245 +56485,282.4249999997794,-0.07257362022024581 +56486,282.4299999997794,-0.07256629792536028 +56487,282.4349999997794,-0.0725589720948034 +56488,282.4399999997794,-0.07255164278547233 +56489,282.4449999997794,-0.07254431005394547 +56490,282.4499999997794,-0.07253697395648422 +56491,282.4549999997794,-0.07252963454903465 +56492,282.45999999977937,-0.0725222918872292 +56493,282.46499999977937,-0.07251494602638833 +56494,282.46999999977936,-0.07250759702152226 +56495,282.47499999977936,-0.07250024492733252 +56496,282.47999999977935,-0.07249288979821368 +56497,282.48499999977935,-0.07248553168825497 +56498,282.48999999977934,-0.07247817065124186 +56499,282.49499999977934,-0.07247080674065771 +56500,282.49999999977933,-0.07246344000968537 +56501,282.50499999977933,-0.0724560705112088 +56502,282.5099999997793,-0.07244869829781457 +56503,282.5149999997793,-0.07244132342179357 +56504,282.5199999997793,-0.07243394593514242 +56505,282.5249999997793,-0.07242656588956514 +56506,282.5299999997793,-0.07241918333647467 +56507,282.5349999997793,-0.07241179832699435 +56508,282.5399999997793,-0.07240441091195954 +56509,282.5449999997793,-0.07239702114191904 +56510,282.5499999997793,-0.07238962906713668 +56511,282.5549999997793,-0.07238223473759277 +56512,282.5599999997793,-0.0723748382029856 +56513,282.5649999997793,-0.07236743951273293 +56514,282.56999999977927,-0.07236003871597345 +56515,282.57499999977927,-0.07235263586156823 +56516,282.57999999977926,-0.07234523099810224 +56517,282.58499999977926,-0.07233782417388568 +56518,282.58999999977925,-0.07233041543695552 +56519,282.59499999977925,-0.07232300483507688 +56520,282.59999999977924,-0.07231559241574445 +56521,282.60499999977924,-0.07230817822618392 +56522,282.60999999977923,-0.07230076231335333 +56523,282.61499999977923,-0.07229334472394455 +56524,282.6199999997792,-0.0722859255043846 +56525,282.6249999997792,-0.07227850470083703 +56526,282.6299999997792,-0.07227108235920329 +56527,282.6349999997792,-0.07226365852512413 +56528,282.6399999997792,-0.0722562332439809 +56529,282.6449999997792,-0.0722488065608969 +56530,282.6499999997792,-0.07224137852073878 +56531,282.6549999997792,-0.07223394916811779 +56532,282.6599999997792,-0.07222651854739112 +56533,282.6649999997792,-0.07221908670266326 +56534,282.6699999997792,-0.07221165367778723 +56535,282.6749999997792,-0.07220421951636591 +56536,282.67999999977917,-0.07219678426175337 +56537,282.68499999977917,-0.07218934795705609 +56538,282.68999999977916,-0.07218191064513425 +56539,282.69499999977916,-0.07217447236860304 +56540,282.69999999977915,-0.07216703316983385 +56541,282.70499999977915,-0.07215959309095557 +56542,282.70999999977914,-0.07215215217385583 +56543,282.71499999977914,-0.07214471046018221 +56544,282.71999999977913,-0.07213726799134353 +56545,282.72499999977913,-0.07212982480851098 +56546,282.7299999997791,-0.07212238095261943 +56547,282.7349999997791,-0.07211493646436858 +56548,282.7399999997791,-0.07210749138422418 +56549,282.7449999997791,-0.07210004575241924 +56550,282.7499999997791,-0.07209259960895519 +56551,282.7549999997791,-0.07208515299360306 +56552,282.7599999997791,-0.07207770594590471 +56553,282.7649999997791,-0.07207025850517394 +56554,282.7699999997791,-0.07206281071049767 +56555,282.7749999997791,-0.07205536260073706 +56556,282.7799999997791,-0.07204791421452873 +56557,282.7849999997791,-0.07204046559028587 +56558,282.78999999977907,-0.07203301676619937 +56559,282.79499999977907,-0.07202556778023891 +56560,282.79999999977906,-0.07201811867015416 +56561,282.80499999977906,-0.07201066947347581 +56562,282.80999999977905,-0.07200322022751679 +56563,282.81499999977905,-0.07199577096937325 +56564,282.81999999977904,-0.07198832173592576 +56565,282.82499999977904,-0.0719808725638403 +56566,282.82999999977903,-0.07197342348956946 +56567,282.83499999977903,-0.07196597454935345 +56568,282.839999999779,-0.07195852577922116 +56569,282.844999999779,-0.07195107721499125 +56570,282.849999999779,-0.07194362889227324 +56571,282.854999999779,-0.07193618084646851 +56572,282.859999999779,-0.07192873311277138 +56573,282.864999999779,-0.07192128572617017 +56574,282.869999999779,-0.07191383872144817 +56575,282.874999999779,-0.07190639213318475 +56576,282.879999999779,-0.07189894599575637 +56577,282.884999999779,-0.07189150034333751 +56578,282.889999999779,-0.07188405520990186 +56579,282.894999999779,-0.07187661062922314 +56580,282.89999999977897,-0.07186916663487623 +56581,282.90499999977897,-0.07186172326023814 +56582,282.90999999977896,-0.07185428053848895 +56583,282.91499999977896,-0.07184683850261286 +56584,282.91999999977895,-0.07183939718539918 +56585,282.92499999977895,-0.07183195661944322 +56586,282.92999999977894,-0.07182451683714734 +56587,282.93499999977894,-0.07181707787072192 +56588,282.93999999977893,-0.07180963975218624 +56589,282.94499999977893,-0.07180220251336954 +56590,282.9499999997789,-0.07179476618591188 +56591,282.9549999997789,-0.07178733080126515 +56592,282.9599999997789,-0.07177989639069395 +56593,282.9649999997789,-0.07177246298527659 +56594,282.9699999997789,-0.07176503061590599 +56595,282.9749999997789,-0.07175759931329055 +56596,282.9799999997789,-0.07175016910795519 +56597,282.9849999997789,-0.07174274003024214 +56598,282.9899999997789,-0.07173531211031195 +56599,282.9949999997789,-0.07172788537814431 +56600,282.9999999997789,-0.071720459863539 +56601,283.0049999997789,-0.07171303559611683 +56602,283.00999999977887,-0.07170561260532038 +56603,283.01499999977887,-0.07169819092041507 +56604,283.01999999977886,-0.0716907705704899 +56605,283.02499999977886,-0.0716833515844584 +56606,283.02999999977885,-0.07167593399105948 +56607,283.03499999977885,-0.07166851781885829 +56608,283.03999999977884,-0.07166110309624711 +56609,283.04499999977884,-0.07165368985144613 +56610,283.04999999977883,-0.07164627811250444 +56611,283.05499999977883,-0.07163886790730077 +56612,283.0599999997788,-0.07163145926354432 +56613,283.0649999997788,-0.07162405220877571 +56614,283.0699999997788,-0.0716166467703677 +56615,283.0749999997788,-0.07160924297552614 +56616,283.0799999997788,-0.07160184085129062 +56617,283.0849999997788,-0.07159444042453549 +56618,283.0899999997788,-0.07158704172197054 +56619,283.0949999997788,-0.07157964477014188 +56620,283.0999999997788,-0.07157224959543275 +56621,283.1049999997788,-0.07156485622406426 +56622,283.1099999997788,-0.07155746468209627 +56623,283.1149999997788,-0.07155007499542813 +56624,283.11999999977877,-0.07154268718979954 +56625,283.12499999977877,-0.07153530129079123 +56626,283.12999999977876,-0.07152791732382588 +56627,283.13499999977876,-0.07152053531416877 +56628,283.13999999977875,-0.07151315528692866 +56629,283.14499999977875,-0.07150577726705848 +56630,283.14999999977874,-0.07149840127935618 +56631,283.15499999977874,-0.07149102734846541 +56632,283.15999999977873,-0.07148365549887635 +56633,283.16499999977873,-0.07147628575492643 +56634,283.1699999997787,-0.07146891814080109 +56635,283.1749999997787,-0.07146155268053453 +56636,283.1799999997787,-0.07145418939801046 +56637,283.1849999997787,-0.07144682831696283 +56638,283.1899999997787,-0.07143946946097658 +56639,283.1949999997787,-0.07143211285348837 +56640,283.1999999997787,-0.07142475851778728 +56641,283.2049999997787,-0.07141740647701558 +56642,283.2099999997787,-0.07141005675416945 +56643,283.2149999997787,-0.07140270937209967 +56644,283.2199999997787,-0.07139536435351235 +56645,283.2249999997787,-0.07138802172096963 +56646,283.22999999977867,-0.07138068149689042 +56647,283.23499999977867,-0.07137334370355106 +56648,283.23999999977866,-0.07136600836308606 +56649,283.24499999977866,-0.07135867549748875 +56650,283.24999999977865,-0.07135134512861205 +56651,283.25499999977865,-0.0713440172781691 +56652,283.25999999977864,-0.0713366919677339 +56653,283.26499999977864,-0.07132936921874213 +56654,283.26999999977863,-0.07132204905249172 +56655,283.27499999977863,-0.07131473149014357 +56656,283.2799999997786,-0.0713074165527222 +56657,283.2849999997786,-0.07130010426111642 +56658,283.2899999997786,-0.07129279463608003 +56659,283.2949999997786,-0.07128548769823244 +56660,283.2999999997786,-0.07127818346805938 +56661,283.3049999997786,-0.0712708819659135 +56662,283.3099999997786,-0.07126358321201501 +56663,283.3149999997786,-0.07125628722645246 +56664,283.3199999997786,-0.07124899402918321 +56665,283.3249999997786,-0.07124170364003421 +56666,283.3299999997786,-0.07123441607870254 +56667,283.3349999997786,-0.07122713136475614 +56668,283.33999999977857,-0.07121984951763435 +56669,283.34499999977857,-0.07121257055664865 +56670,283.34999999977856,-0.07120529450098315 +56671,283.35499999977856,-0.07119802136969533 +56672,283.35999999977855,-0.07119075118171662 +56673,283.36499999977855,-0.07118348395585301 +56674,283.36999999977854,-0.07117621971078567 +56675,283.37499999977854,-0.07116895846507154 +56676,283.37999999977853,-0.07116170023714403 +56677,283.38499999977853,-0.0711544450453135 +56678,283.3899999997785,-0.07114719290776791 +56679,283.3949999997785,-0.07113994384257351 +56680,283.3999999997785,-0.07113269786767525 +56681,283.4049999997785,-0.07112545500089758 +56682,283.4099999997785,-0.07111821525994488 +56683,283.4149999997785,-0.07111097866240214 +56684,283.4199999997785,-0.0711037452257355 +56685,283.4249999997785,-0.07109651496729284 +56686,283.4299999997785,-0.07108928790430442 +56687,283.4349999997785,-0.07108206405388336 +56688,283.4399999997785,-0.07107484343302627 +56689,283.4449999997785,-0.07106762605861378 +56690,283.44999999977847,-0.07106041194741118 +56691,283.45499999977847,-0.07105320111606893 +56692,283.45999999977846,-0.07104599358112325 +56693,283.46499999977846,-0.07103878935899663 +56694,283.46999999977845,-0.07103158846599844 +56695,283.47499999977845,-0.07102439091832549 +56696,283.47999999977844,-0.07101719673206253 +56697,283.48499999977844,-0.07101000592318285 +56698,283.48999999977843,-0.07100281850754876 +56699,283.49499999977843,-0.07099563450091226 +56700,283.4999999997784,-0.07098845391891542 +56701,283.5049999997784,-0.07098127677709107 +56702,283.5099999997784,-0.0709741030908632 +56703,283.5149999997784,-0.07096693287554759 +56704,283.5199999997784,-0.07095976614635231 +56705,283.5249999997784,-0.07095260291837824 +56706,283.5299999997784,-0.07094544320661961 +56707,283.5349999997784,-0.0709382870259645 +56708,283.5399999997784,-0.0709311343911954 +56709,283.5449999997784,-0.0709239853169897 +56710,283.5499999997784,-0.07091683981792019 +56711,283.5549999997784,-0.0709096979084556 +56712,283.55999999977837,-0.07090255960296113 +56713,283.56499999977837,-0.07089542491569893 +56714,283.56999999977836,-0.07088829386082855 +56715,283.57499999977836,-0.07088116645240758 +56716,283.57999999977835,-0.07087404270439204 +56717,283.58499999977835,-0.07086692263063687 +56718,283.58999999977834,-0.07085980624489656 +56719,283.59499999977834,-0.07085269356082546 +56720,283.59999999977833,-0.0708455845919784 +56721,283.60499999977833,-0.07083847935181115 +56722,283.6099999997783,-0.07083137785368089 +56723,283.6149999997783,-0.07082428011084671 +56724,283.6199999997783,-0.07081718613647008 +56725,283.6249999997783,-0.07081009594361531 +56726,283.6299999997783,-0.0708030095452501 +56727,283.6349999997783,-0.07079592695424591 +56728,283.6399999997783,-0.07078884818337856 +56729,283.6449999997783,-0.07078177324532858 +56730,283.6499999997783,-0.07077470215268174 +56731,283.6549999997783,-0.07076763491792952 +56732,283.6599999997783,-0.07076057155346951 +56733,283.6649999997783,-0.07075351207160603 +56734,283.66999999977827,-0.07074645648455036 +56735,283.67499999977827,-0.07073940480442138 +56736,283.67999999977826,-0.07073235704324599 +56737,283.68499999977826,-0.07072531321295947 +56738,283.68999999977825,-0.07071827332540605 +56739,283.69499999977825,-0.07071123739233928 +56740,283.69999999977824,-0.07070420542542254 +56741,283.70499999977824,-0.07069717743622939 +56742,283.70999999977823,-0.07069015343624412 +56743,283.71499999977823,-0.07068313343686214 +56744,283.7199999997782,-0.07067611744939041 +56745,283.7249999997782,-0.07066910548504787 +56746,283.7299999997782,-0.0706620975549659 +56747,283.7349999997782,-0.07065509367018877 +56748,283.7399999997782,-0.07064809384167402 +56749,283.7449999997782,-0.0706410980802929 +56750,283.7499999997782,-0.07063410639683083 +56751,283.7549999997782,-0.07062711880198781 +56752,283.7599999997782,-0.07062013530637878 +56753,283.7649999997782,-0.07061315592053419 +56754,283.7699999997782,-0.07060618065490022 +56755,283.7749999997782,-0.07059920951983935 +56756,283.77999999977817,-0.07059224252563073 +56757,283.78499999977817,-0.07058527968247058 +56758,283.78999999977816,-0.0705783210004726 +56759,283.79499999977816,-0.07057136648966837 +56760,283.79999999977815,-0.07056441616000778 +56761,283.80499999977815,-0.07055747002135945 +56762,283.80999999977814,-0.07055052808351109 +56763,283.81499999977814,-0.0705435903561699 +56764,283.81999999977813,-0.07053665684896304 +56765,283.82499999977813,-0.0705297275714379 +56766,283.8299999997781,-0.07052280253306266 +56767,283.8349999997781,-0.07051588174322651 +56768,283.8399999997781,-0.0705089652112402 +56769,283.8449999997781,-0.07050205294633631 +56770,283.8499999997781,-0.07049514495766969 +56771,283.8549999997781,-0.07048824125431785 +56772,283.8599999997781,-0.07048134184528135 +56773,283.8649999997781,-0.07047444673948412 +56774,283.8699999997781,-0.07046755594577396 +56775,283.8749999997781,-0.07046066947292276 +56776,283.8799999997781,-0.07045378732962705 +56777,283.8849999997781,-0.07044690952450823 +56778,283.88999999977807,-0.07044003606611303 +56779,283.89499999977807,-0.07043316696291385 +56780,283.89999999977806,-0.07042630222330913 +56781,283.90499999977806,-0.07041944185562378 +56782,283.90999999977805,-0.07041258586810939 +56783,283.91499999977805,-0.07040573426894478 +56784,283.91999999977804,-0.07039888706623627 +56785,283.92499999977804,-0.07039204426801803 +56786,283.92999999977803,-0.07038520588225247 +56787,283.93499999977803,-0.07037837191683059 +56788,283.939999999778,-0.07037154237957235 +56789,283.944999999778,-0.070364717278227 +56790,283.949999999778,-0.07035789662047347 +56791,283.954999999778,-0.07035108041392067 +56792,283.959999999778,-0.07034426866610789 +56793,283.964999999778,-0.07033746138450514 +56794,283.969999999778,-0.07033065857651344 +56795,283.974999999778,-0.07032386024946527 +56796,283.979999999778,-0.07031706641062481 +56797,283.984999999778,-0.07031027706718834 +56798,283.989999999778,-0.0703034922262846 +56799,283.994999999778,-0.07029671189497504 +56800,283.99999999977797,-0.07028993608025424 +56801,284.00499999977797,-0.07028316478905026 +56802,284.00999999977796,-0.07027639802822487 +56803,284.01499999977796,-0.07026963580457402 +56804,284.01999999977795,-0.07026287812482801 +56805,284.02499999977795,-0.070256124995652 +56806,284.02999999977794,-0.07024937642364619 +56807,284.03499999977794,-0.07024263241534624 +56808,284.03999999977793,-0.07023589297722353 +56809,284.04499999977793,-0.07022915811568556 +56810,284.0499999997779,-0.07022242783707615 +56811,284.0549999997779,-0.07021570214767595 +56812,284.0599999997779,-0.07020898105370253 +56813,284.0649999997779,-0.0702022645613109 +56814,284.0699999997779,-0.0701955526765937 +56815,284.0749999997779,-0.0701888454055816 +56816,284.0799999997779,-0.0701821427542435 +56817,284.0849999997779,-0.07017544472848698 +56818,284.0899999997779,-0.07016875133415852 +56819,284.0949999997779,-0.07016206257704381 +56820,284.0999999997779,-0.07015537846286812 +56821,284.1049999997779,-0.07014869899729656 +56822,284.10999999977787,-0.07014202418593438 +56823,284.11499999977787,-0.07013535403432727 +56824,284.11999999977786,-0.07012868854796174 +56825,284.12499999977786,-0.0701220277322653 +56826,284.12999999977785,-0.07011537159260683 +56827,284.13499999977785,-0.0701087201342969 +56828,284.13999999977784,-0.070102073362588 +56829,284.14499999977784,-0.0700954312826749 +56830,284.14999999977783,-0.07008879389969488 +56831,284.15499999977783,-0.0700821612187281 +56832,284.1599999997778,-0.07007553324479782 +56833,284.1649999997778,-0.07006890998287071 +56834,284.1699999997778,-0.07006229143785718 +56835,284.1749999997778,-0.07005567761461162 +56836,284.1799999997778,-0.0700490685179327 +56837,284.1849999997778,-0.07004246415256364 +56838,284.1899999997778,-0.07003586452319255 +56839,284.1949999997778,-0.07002926963445263 +56840,284.1999999997778,-0.07002267949092253 +56841,284.2049999997778,-0.07001609409712657 +56842,284.2099999997778,-0.07000951345753505 +56843,284.2149999997778,-0.07000293757656452 +56844,284.21999999977777,-0.06999636645857805 +56845,284.22499999977776,-0.06998980010788552 +56846,284.22999999977776,-0.06998323852874389 +56847,284.23499999977776,-0.06997668172535741 +56848,284.23999999977775,-0.069970129701878 +56849,284.24499999977775,-0.06996358246240549 +56850,284.24999999977774,-0.06995704001098778 +56851,284.25499999977774,-0.06995050235162127 +56852,284.25999999977773,-0.069943969488251 +56853,284.26499999977773,-0.069937441424771 +56854,284.2699999997777,-0.06993091816502446 +56855,284.2749999997777,-0.06992439971280413 +56856,284.2799999997777,-0.06991788607185243 +56857,284.2849999997777,-0.0699113772458618 +56858,284.2899999997777,-0.06990487323847495 +56859,284.2949999997777,-0.06989837405328511 +56860,284.2999999997777,-0.06989187969383626 +56861,284.3049999997777,-0.06988539016362343 +56862,284.3099999997777,-0.06987890546609293 +56863,284.3149999997777,-0.0698724256046426 +56864,284.3199999997777,-0.06986595058262206 +56865,284.3249999997777,-0.06985948040333298 +56866,284.32999999977767,-0.06985301507002932 +56867,284.33499999977766,-0.06984655458591756 +56868,284.33999999977766,-0.06984009895415699 +56869,284.34499999977766,-0.06983364817785992 +56870,284.34999999977765,-0.06982720226009191 +56871,284.35499999977765,-0.06982076120387208 +56872,284.35999999977764,-0.0698143250121733 +56873,284.36499999977764,-0.06980789368792244 +56874,284.36999999977763,-0.06980146723400059 +56875,284.37499999977763,-0.06979504565324335 +56876,284.3799999997776,-0.06978862894844105 +56877,284.3849999997776,-0.069782217122339 +56878,284.3899999997776,-0.06977581017763762 +56879,284.3949999997776,-0.06976940811699286 +56880,284.3999999997776,-0.0697630109430163 +56881,284.4049999997776,-0.06975661865827538 +56882,284.4099999997776,-0.06975023126529376 +56883,284.4149999997776,-0.06974384876655135 +56884,284.4199999997776,-0.06973747116448477 +56885,284.4249999997776,-0.0697310984614874 +56886,284.4299999997776,-0.06972473065990964 +56887,284.4349999997776,-0.06971836776205924 +56888,284.43999999977757,-0.06971200977020138 +56889,284.44499999977756,-0.06970565668655902 +56890,284.44999999977756,-0.06969930851331307 +56891,284.45499999977756,-0.06969296525260257 +56892,284.45999999977755,-0.06968662690652502 +56893,284.46499999977755,-0.06968029347713647 +56894,284.46999999977754,-0.06967396496645185 +56895,284.47499999977754,-0.06966764137644513 +56896,284.47999999977753,-0.06966132270904957 +56897,284.48499999977753,-0.0696550089661579 +56898,284.4899999997775,-0.06964870014962254 +56899,284.4949999997775,-0.06964239626125589 +56900,284.4999999997775,-0.06963609730283042 +56901,284.5049999997775,-0.069629803276079 +56902,284.5099999997775,-0.06962351418269504 +56903,284.5149999997775,-0.0696172300243327 +56904,284.5199999997775,-0.06961095080260715 +56905,284.5249999997775,-0.06960467651909473 +56906,284.5299999997775,-0.0695984071753332 +56907,284.5349999997775,-0.06959214277282189 +56908,284.5399999997775,-0.06958588331302198 +56909,284.5449999997775,-0.06957962879735666 +56910,284.54999999977747,-0.06957337922721132 +56911,284.55499999977746,-0.06956713460393378 +56912,284.55999999977746,-0.06956089492883452 +56913,284.56499999977746,-0.0695546602031868 +56914,284.56999999977745,-0.06954843042822695 +56915,284.57499999977745,-0.06954220560515452 +56916,284.57999999977744,-0.06953598573513248 +56917,284.58499999977744,-0.0695297708192874 +56918,284.58999999977743,-0.06952356085870975 +56919,284.59499999977743,-0.06951735585445395 +56920,284.5999999997774,-0.06951115580753867 +56921,284.6049999997774,-0.06950496071894698 +56922,284.6099999997774,-0.06949877058962654 +56923,284.6149999997774,-0.06949258542048985 +56924,284.6199999997774,-0.06948640521241434 +56925,284.6249999997774,-0.06948022996624267 +56926,284.6299999997774,-0.06947405968278285 +56927,284.6349999997774,-0.06946789436280844 +56928,284.6399999997774,-0.06946173400705874 +56929,284.6449999997774,-0.06945557861623901 +56930,284.6499999997774,-0.06944942819102064 +56931,284.6549999997774,-0.06944328273204127 +56932,284.65999999977737,-0.06943714223990509 +56933,284.66499999977736,-0.06943100671518294 +56934,284.66999999977736,-0.06942487615841254 +56935,284.67499999977736,-0.06941875057009862 +56936,284.67999999977735,-0.06941262995071316 +56937,284.68499999977735,-0.06940651430069555 +56938,284.68999999977734,-0.06940040362045273 +56939,284.69499999977734,-0.06939429791035945 +56940,284.69999999977733,-0.06938819717075835 +56941,284.7049999997773,-0.06938210140196023 +56942,284.7099999997773,-0.06937601060424417 +56943,284.7149999997773,-0.06936992477785775 +56944,284.7199999997773,-0.06936384392301714 +56945,284.7249999997773,-0.0693577680399074 +56946,284.7299999997773,-0.06935169712868254 +56947,284.7349999997773,-0.06934563118946578 +56948,284.7399999997773,-0.06933957022234963 +56949,284.7449999997773,-0.06933351422739613 +56950,284.7499999997773,-0.06932746320463701 +56951,284.7549999997773,-0.06932141715407387 +56952,284.7599999997773,-0.06931537607567831 +56953,284.7649999997773,-0.06930933996939212 +56954,284.76999999977727,-0.06930330883512743 +56955,284.77499999977726,-0.06929728267276695 +56956,284.77999999977726,-0.06929126148216404 +56957,284.78499999977726,-0.06928524526314288 +56958,284.78999999977725,-0.06927923401549876 +56959,284.79499999977725,-0.06927322773899808 +56960,284.79999999977724,-0.06926722643337858 +56961,284.80499999977724,-0.06926123009834957 +56962,284.80999999977723,-0.06925523873359198 +56963,284.8149999997772,-0.06924925233875859 +56964,284.8199999997772,-0.06924327091347414 +56965,284.8249999997772,-0.06923729445733555 +56966,284.8299999997772,-0.06923132296991208 +56967,284.8349999997772,-0.06922535645074537 +56968,284.8399999997772,-0.06921939489934974 +56969,284.8449999997772,-0.06921343831521229 +56970,284.8499999997772,-0.06920748669779303 +56971,284.8549999997772,-0.06920154004652508 +56972,284.8599999997772,-0.06919559836081482 +56973,284.8649999997772,-0.06918966164004196 +56974,284.8699999997772,-0.06918372988355982 +56975,284.8749999997772,-0.06917780309069542 +56976,284.87999999977717,-0.06917188126074962 +56977,284.88499999977716,-0.06916596439299727 +56978,284.88999999977716,-0.0691600524866874 +56979,284.89499999977716,-0.06915414554104332 +56980,284.89999999977715,-0.06914824355526282 +56981,284.90499999977715,-0.06914234652851829 +56982,284.90999999977714,-0.06913645445995684 +56983,284.91499999977714,-0.0691305673487005 +56984,284.91999999977713,-0.06912468519384633 +56985,284.9249999997771,-0.06911880799446658 +56986,284.9299999997771,-0.06911293574960883 +56987,284.9349999997771,-0.06910706845829616 +56988,284.9399999997771,-0.0691012061195272 +56989,284.9449999997771,-0.06909534873227642 +56990,284.9499999997771,-0.06908949629549414 +56991,284.9549999997771,-0.06908364880810676 +56992,284.9599999997771,-0.06907780626901684 +56993,284.9649999997771,-0.0690719686771033 +56994,284.9699999997771,-0.06906613603122147 +56995,284.9749999997771,-0.06906030833020334 +56996,284.9799999997771,-0.06905448557285761 +56997,284.9849999997771,-0.06904866775796985 +56998,284.98999999977707,-0.0690428548843027 +56999,284.99499999977706,-0.06903704695059591 +57000,284.99999999977706,-0.06903124395556651 +57001,285.00499999977706,-0.069025445897909 +57002,285.00999999977705,-0.06901965277629539 +57003,285.01499999977705,-0.06901386458937542 +57004,285.01999999977704,-0.06900808133577663 +57005,285.02499999977704,-0.06900230301410452 +57006,285.02999999977703,-0.06899652962294273 +57007,285.034999999777,-0.06899076116085305 +57008,285.039999999777,-0.06898499762637567 +57009,285.044999999777,-0.06897923901802921 +57010,285.049999999777,-0.06897348533431101 +57011,285.054999999777,-0.06896773657369704 +57012,285.059999999777,-0.06896199273464218 +57013,285.064999999777,-0.06895625381558033 +57014,285.069999999777,-0.0689505198149245 +57015,285.074999999777,-0.06894479073106695 +57016,285.079999999777,-0.0689390665623793 +57017,285.084999999777,-0.06893334730721272 +57018,285.089999999777,-0.06892763296389795 +57019,285.094999999777,-0.06892192353074554 +57020,285.09999999977697,-0.0689162190060459 +57021,285.10499999977696,-0.06891051938806941 +57022,285.10999999977696,-0.06890482467506662 +57023,285.11499999977696,-0.0688991348652683 +57024,285.11999999977695,-0.06889344995688557 +57025,285.12499999977695,-0.06888776994811006 +57026,285.12999999977694,-0.06888209483711402 +57027,285.13499999977694,-0.06887642462205042 +57028,285.13999999977693,-0.06887075930105307 +57029,285.1449999997769,-0.06886509887223673 +57030,285.1499999997769,-0.06885944333369727 +57031,285.1549999997769,-0.06885379268351177 +57032,285.1599999997769,-0.06884814691973862 +57033,285.1649999997769,-0.06884250604041761 +57034,285.1699999997769,-0.06883687004357013 +57035,285.1749999997769,-0.06883123892719924 +57036,285.1799999997769,-0.06882561268928974 +57037,285.1849999997769,-0.06881999132780839 +57038,285.1899999997769,-0.06881437484070388 +57039,285.1949999997769,-0.0688087632259071 +57040,285.1999999997769,-0.06880315648133112 +57041,285.2049999997769,-0.06879755460487141 +57042,285.20999999977687,-0.06879195759440587 +57043,285.21499999977686,-0.06878636544779501 +57044,285.21999999977686,-0.06878077816288196 +57045,285.22499999977686,-0.06877519573749272 +57046,285.22999999977685,-0.06876961816943612 +57047,285.23499999977685,-0.06876404545650407 +57048,285.23999999977684,-0.06875847759647155 +57049,285.24499999977684,-0.06875291458709681 +57050,285.24999999977683,-0.06874735642612143 +57051,285.2549999997768,-0.06874180311127041 +57052,285.2599999997768,-0.06873625464025236 +57053,285.2649999997768,-0.06873071101075948 +57054,285.2699999997768,-0.06872517222046777 +57055,285.2749999997768,-0.06871963826703711 +57056,285.2799999997768,-0.06871410914811134 +57057,285.2849999997768,-0.06870858486131837 +57058,285.2899999997768,-0.06870306540427033 +57059,285.2949999997768,-0.06869755077456362 +57060,285.2999999997768,-0.06869204096977899 +57061,285.3049999997768,-0.06868653598748173 +57062,285.3099999997768,-0.06868103582522173 +57063,285.3149999997768,-0.06867554048053354 +57064,285.31999999977677,-0.06867004995093653 +57065,285.32499999977676,-0.06866456423393495 +57066,285.32999999977676,-0.06865908332701809 +57067,285.33499999977676,-0.06865360722766026 +57068,285.33999999977675,-0.06864813593332104 +57069,285.34499999977675,-0.06864266944144529 +57070,285.34999999977674,-0.0686372077494632 +57071,285.35499999977674,-0.06863175085479055 +57072,285.35999999977673,-0.06862629875482866 +57073,285.3649999997767,-0.0686208514469645 +57074,285.3699999997767,-0.0686154089285709 +57075,285.3749999997767,-0.06860997119700649 +57076,285.3799999997767,-0.06860453824961592 +57077,285.3849999997767,-0.0685991100837299 +57078,285.3899999997767,-0.06859368669666528 +57079,285.3949999997767,-0.06858826808572523 +57080,285.3999999997767,-0.06858285424819917 +57081,285.4049999997767,-0.06857744518136306 +57082,285.4099999997767,-0.06857204088247934 +57083,285.4149999997767,-0.06856664134879711 +57084,285.4199999997767,-0.06856124657755215 +57085,285.4249999997767,-0.06855585656596712 +57086,285.42999999977667,-0.06855047131125153 +57087,285.43499999977666,-0.0685450908106019 +57088,285.43999999977666,-0.06853971506120182 +57089,285.44499999977666,-0.0685343440602221 +57090,285.44999999977665,-0.06852897780482077 +57091,285.45499999977665,-0.06852361629214324 +57092,285.45999999977664,-0.06851825951932232 +57093,285.46499999977664,-0.06851290748347841 +57094,285.46999999977663,-0.06850756018171948 +57095,285.4749999997766,-0.06850221761114125 +57096,285.4799999997766,-0.06849687976882719 +57097,285.4849999997766,-0.06849154665184867 +57098,285.4899999997766,-0.06848621825726502 +57099,285.4949999997766,-0.06848089458212361 +57100,285.4999999997766,-0.06847557562345999 +57101,285.5049999997766,-0.06847026137829788 +57102,285.5099999997766,-0.06846495184364931 +57103,285.5149999997766,-0.06845964701651475 +57104,285.5199999997766,-0.06845434689388309 +57105,285.5249999997766,-0.06844905147273178 +57106,285.5299999997766,-0.06844376075002694 +57107,285.5349999997766,-0.0684384747227234 +57108,285.53999999977657,-0.0684331933877648 +57109,285.54499999977656,-0.06842791674208362 +57110,285.54999999977656,-0.06842264478260139 +57111,285.55499999977656,-0.06841737750622864 +57112,285.55999999977655,-0.06841211490986503 +57113,285.56499999977655,-0.0684068569903994 +57114,285.56999999977654,-0.06840160374470997 +57115,285.57499999977654,-0.06839635516966422 +57116,285.57999999977653,-0.06839111126211915 +57117,285.5849999997765,-0.06838587201892128 +57118,285.5899999997765,-0.0683806374369067 +57119,285.5949999997765,-0.06837540751290122 +57120,285.5999999997765,-0.06837018224372039 +57121,285.6049999997765,-0.0683649616261696 +57122,285.6099999997765,-0.06835974565704417 +57123,285.6149999997765,-0.0683545343331294 +57124,285.6199999997765,-0.06834932765120062 +57125,285.6249999997765,-0.06834412560802339 +57126,285.6299999997765,-0.06833892820035341 +57127,285.6349999997765,-0.0683337354249367 +57128,285.6399999997765,-0.06832854727850968 +57129,285.6449999997765,-0.06832336375779914 +57130,285.64999999977647,-0.06831818485952247 +57131,285.65499999977646,-0.06831301058038759 +57132,285.65999999977646,-0.06830784091709312 +57133,285.66499999977646,-0.06830267586632838 +57134,285.66999999977645,-0.06829751542477352 +57135,285.67499999977645,-0.06829235958909959 +57136,285.67999999977644,-0.06828720835596858 +57137,285.68499999977644,-0.06828206172203348 +57138,285.68999999977643,-0.0682769196839384 +57139,285.6949999997764,-0.06827178223831862 +57140,285.6999999997764,-0.06826664938180065 +57141,285.7049999997764,-0.0682615211110023 +57142,285.7099999997764,-0.06825639742253276 +57143,285.7149999997764,-0.0682512783129927 +57144,285.7199999997764,-0.06824616377897424 +57145,285.7249999997764,-0.06824105381706118 +57146,285.7299999997764,-0.06823594842382887 +57147,285.7349999997764,-0.06823084759584443 +57148,285.7399999997764,-0.06822575132966678 +57149,285.7449999997764,-0.06822065962184669 +57150,285.7499999997764,-0.06821557246892686 +57151,285.7549999997764,-0.06821048986744194 +57152,285.75999999977637,-0.0682054118139187 +57153,285.76499999977636,-0.068200338304876 +57154,285.76999999977636,-0.06819526933682488 +57155,285.77499999977636,-0.06819020490626865 +57156,285.77999999977635,-0.06818514500970295 +57157,285.78499999977635,-0.06818008964361578 +57158,285.78999999977634,-0.06817503880448764 +57159,285.79499999977634,-0.06816999248879148 +57160,285.79999999977633,-0.06816495069299286 +57161,285.8049999997763,-0.06815991341355 +57162,285.8099999997763,-0.0681548806469138 +57163,285.8149999997763,-0.06814985238952792 +57164,285.8199999997763,-0.06814482863782889 +57165,285.8249999997763,-0.06813980938824613 +57166,285.8299999997763,-0.06813479463720196 +57167,285.8349999997763,-0.06812978438111178 +57168,285.8399999997763,-0.06812477861638404 +57169,285.8449999997763,-0.06811977733942036 +57170,285.8499999997763,-0.0681147805466155 +57171,285.8549999997763,-0.06810978823435758 +57172,285.8599999997763,-0.06810480039902796 +57173,285.8649999997763,-0.0680998170370014 +57174,285.86999999977627,-0.06809483814464612 +57175,285.87499999977626,-0.06808986371832386 +57176,285.87999999977626,-0.06808489375438986 +57177,285.88499999977626,-0.06807992824919307 +57178,285.88999999977625,-0.06807496719907602 +57179,285.89499999977625,-0.06807001060037506 +57180,285.89999999977624,-0.06806505844942029 +57181,285.90499999977624,-0.06806011074253569 +57182,285.90999999977623,-0.06805516747603911 +57183,285.9149999997762,-0.06805022864624242 +57184,285.9199999997762,-0.0680452942494515 +57185,285.9249999997762,-0.06804036428196626 +57186,285.9299999997762,-0.06803543874008083 +57187,285.9349999997762,-0.0680305176200835 +57188,285.9399999997762,-0.06802560091825678 +57189,285.9449999997762,-0.06802068863087753 +57190,285.9499999997762,-0.06801578075421695 +57191,285.9549999997762,-0.06801087728454065 +57192,285.9599999997762,-0.06800597821810873 +57193,285.9649999997762,-0.06800108355117582 +57194,285.9699999997762,-0.06799619327999108 +57195,285.9749999997762,-0.06799130740079837 +57196,285.97999999977617,-0.06798642590983617 +57197,285.98499999977616,-0.06798154880333777 +57198,285.98999999977616,-0.06797667607753122 +57199,285.99499999977616,-0.06797180772863937 +57200,285.99999999977615,-0.06796694375288004 +57201,286.00499999977615,-0.067962084146466 +57202,286.00999999977614,-0.06795722890560496 +57203,286.01499999977614,-0.06795237802649974 +57204,286.01999999977613,-0.06794753150534827 +57205,286.0249999997761,-0.06794268933834359 +57206,286.0299999997761,-0.06793785152167398 +57207,286.0349999997761,-0.06793301805152298 +57208,286.0399999997761,-0.06792818892406943 +57209,286.0449999997761,-0.06792336413548757 +57210,286.0499999997761,-0.06791854368194697 +57211,286.0549999997761,-0.06791372755961275 +57212,286.0599999997761,-0.06790891576464549 +57213,286.0649999997761,-0.06790410829320132 +57214,286.0699999997761,-0.067899305141432 +57215,286.0749999997761,-0.06789450630548495 +57216,286.0799999997761,-0.0678897117815033 +57217,286.0849999997761,-0.06788492156562591 +57218,286.08999999977607,-0.06788013565398744 +57219,286.09499999977606,-0.06787535404271844 +57220,286.09999999977606,-0.06787057672794532 +57221,286.10499999977606,-0.06786580370579044 +57222,286.10999999977605,-0.06786103497237217 +57223,286.11499999977605,-0.06785627052380491 +57224,286.11999999977604,-0.06785151035619913 +57225,286.12499999977604,-0.06784675446566145 +57226,286.12999999977603,-0.06784200284829466 +57227,286.134999999776,-0.06783725550019777 +57228,286.139999999776,-0.06783251241746607 +57229,286.144999999776,-0.06782777359619116 +57230,286.149999999776,-0.067823039032461 +57231,286.154999999776,-0.06781830872235994 +57232,286.159999999776,-0.06781358266196882 +57233,286.164999999776,-0.06780886084736493 +57234,286.169999999776,-0.06780414327462213 +57235,286.174999999776,-0.06779942993981082 +57236,286.179999999776,-0.0677947208389981 +57237,286.184999999776,-0.06779001596824766 +57238,286.189999999776,-0.06778531532361996 +57239,286.194999999776,-0.0677806189011722 +57240,286.19999999977597,-0.06777592669695835 +57241,286.20499999977596,-0.06777123870702928 +57242,286.20999999977596,-0.0677665549274327 +57243,286.21499999977596,-0.06776187535421328 +57244,286.21999999977595,-0.06775719998341263 +57245,286.22499999977595,-0.06775252881106938 +57246,286.22999999977594,-0.06774786183321922 +57247,286.23499999977594,-0.06774319904589493 +57248,286.23999999977593,-0.06773854044512642 +57249,286.2449999997759,-0.06773388602694079 +57250,286.2499999997759,-0.06772923578736237 +57251,286.2549999997759,-0.0677245897224127 +57252,286.2599999997759,-0.06771994782811067 +57253,286.2649999997759,-0.06771531010047246 +57254,286.2699999997759,-0.0677106765355117 +57255,286.2749999997759,-0.06770604712923935 +57256,286.2799999997759,-0.0677014218776639 +57257,286.2849999997759,-0.0676968007767913 +57258,286.2899999997759,-0.06769218382262504 +57259,286.2949999997759,-0.06768757101116621 +57260,286.2999999997759,-0.06768296233841349 +57261,286.3049999997759,-0.06767835780036321 +57262,286.30999999977587,-0.06767375739300943 +57263,286.31499999977586,-0.06766916111234388 +57264,286.31999999977586,-0.0676645689543561 +57265,286.32499999977586,-0.06765998091503343 +57266,286.32999999977585,-0.06765539699036104 +57267,286.33499999977585,-0.067650817176322 +57268,286.33999999977584,-0.06764624146889726 +57269,286.34499999977584,-0.06764166986406576 +57270,286.34999999977583,-0.06763710235780443 +57271,286.3549999997758,-0.06763253894608819 +57272,286.3599999997758,-0.06762797962489007 +57273,286.3649999997758,-0.06762342439018118 +57274,286.3699999997758,-0.06761887323793077 +57275,286.3749999997758,-0.06761432616410626 +57276,286.3799999997758,-0.06760978316467328 +57277,286.3849999997758,-0.06760524423559569 +57278,286.3899999997758,-0.06760070937283566 +57279,286.3949999997758,-0.06759617857235362 +57280,286.3999999997758,-0.06759165183010839 +57281,286.4049999997758,-0.06758712914205718 +57282,286.4099999997758,-0.0675826105041556 +57283,286.4149999997758,-0.06757809591235771 +57284,286.41999999977577,-0.06757358536261605 +57285,286.42499999977576,-0.06756907885088173 +57286,286.42999999977576,-0.06756457637310431 +57287,286.43499999977575,-0.06756007792523205 +57288,286.43999999977575,-0.06755558350321177 +57289,286.44499999977575,-0.06755109310298894 +57290,286.44999999977574,-0.06754660672050777 +57291,286.45499999977574,-0.06754212435171113 +57292,286.45999999977573,-0.06753764599254068 +57293,286.4649999997757,-0.06753317163893684 +57294,286.4699999997757,-0.06752870128683887 +57295,286.4749999997757,-0.06752423493218487 +57296,286.4799999997757,-0.06751977257091181 +57297,286.4849999997757,-0.06751531419895561 +57298,286.4899999997757,-0.0675108598122511 +57299,286.4949999997757,-0.06750640940673211 +57300,286.4999999997757,-0.06750196297833146 +57301,286.5049999997757,-0.06749752052298101 +57302,286.5099999997757,-0.06749308203661172 +57303,286.5149999997757,-0.06748864751515363 +57304,286.5199999997757,-0.0674842169545359 +57305,286.5249999997757,-0.06747979035068687 +57306,286.52999999977567,-0.06747536769953408 +57307,286.53499999977566,-0.06747094899700427 +57308,286.53999999977566,-0.06746653423902346 +57309,286.54499999977565,-0.06746212342151693 +57310,286.54999999977565,-0.0674577165404093 +57311,286.55499999977565,-0.06745331359162449 +57312,286.55999999977564,-0.06744891457108582 +57313,286.56499999977564,-0.06744451947471601 +57314,286.56999999977563,-0.06744012829843722 +57315,286.5749999997756,-0.06743574103817104 +57316,286.5799999997756,-0.06743135768983859 +57317,286.5849999997756,-0.06742697824936048 +57318,286.5899999997756,-0.06742260271265683 +57319,286.5949999997756,-0.06741823107564741 +57320,286.5999999997756,-0.06741386333425153 +57321,286.6049999997756,-0.06740949948438815 +57322,286.6099999997756,-0.06740513952197588 +57323,286.6149999997756,-0.06740078344293304 +57324,286.6199999997756,-0.06739643124317765 +57325,286.6249999997756,-0.06739208291862743 +57326,286.6299999997756,-0.06738773846519991 +57327,286.6349999997756,-0.06738339787881241 +57328,286.63999999977557,-0.06737906115538206 +57329,286.64499999977556,-0.06737472829082584 +57330,286.64999999977556,-0.06737039928106062 +57331,286.65499999977555,-0.06736607412200313 +57332,286.65999999977555,-0.06736175280957006 +57333,286.66499999977555,-0.06735743533967804 +57334,286.66999999977554,-0.0673531217082437 +57335,286.67499999977554,-0.06734881191118366 +57336,286.67999999977553,-0.06734450594441453 +57337,286.6849999997755,-0.06734020380385305 +57338,286.6899999997755,-0.06733590548541601 +57339,286.6949999997755,-0.06733161098502026 +57340,286.6999999997755,-0.06732732029858286 +57341,286.7049999997755,-0.06732303342202098 +57342,286.7099999997755,-0.06731875035125197 +57343,286.7149999997755,-0.0673144710821934 +57344,286.7199999997755,-0.06731019561076311 +57345,286.7249999997755,-0.0673059239328791 +57346,286.7299999997755,-0.06730165604445973 +57347,286.7349999997755,-0.06729739194142366 +57348,286.7399999997755,-0.06729313161968982 +57349,286.7449999997755,-0.06728887507517754 +57350,286.74999999977547,-0.06728462230380651 +57351,286.75499999977546,-0.06728037330149683 +57352,286.75999999977546,-0.06727612806416904 +57353,286.76499999977545,-0.06727188658774405 +57354,286.76999999977545,-0.06726764886814332 +57355,286.77499999977545,-0.06726341490128879 +57356,286.77999999977544,-0.06725918468310287 +57357,286.78499999977544,-0.06725495820950853 +57358,286.78999999977543,-0.06725073547642933 +57359,286.7949999997754,-0.06724651647978938 +57360,286.7999999997754,-0.0672423012155134 +57361,286.8049999997754,-0.06723808967952678 +57362,286.8099999997754,-0.0672338818677555 +57363,286.8149999997754,-0.06722967777612623 +57364,286.8199999997754,-0.06722547740056636 +57365,286.8249999997754,-0.06722128073700397 +57366,286.8299999997754,-0.06721708778136787 +57367,286.8349999997754,-0.06721289852958766 +57368,286.8399999997754,-0.0672087129775937 +57369,286.8449999997754,-0.06720453112131718 +57370,286.8499999997754,-0.06720035295669005 +57371,286.8549999997754,-0.06719617847964518 +57372,286.85999999977537,-0.06719200768611627 +57373,286.86499999977536,-0.06718784057203789 +57374,286.86999999977536,-0.06718367713334553 +57375,286.87499999977535,-0.06717951736597562 +57376,286.87999999977535,-0.0671753612658655 +57377,286.88499999977535,-0.06717120882895355 +57378,286.88999999977534,-0.06716706005117906 +57379,286.89499999977534,-0.06716291492848238 +57380,286.89999999977533,-0.06715877345680485 +57381,286.9049999997753,-0.06715463563208889 +57382,286.9099999997753,-0.06715050145027796 +57383,286.9149999997753,-0.06714637090731664 +57384,286.9199999997753,-0.0671422439991506 +57385,286.9249999997753,-0.0671381207217266 +57386,286.9299999997753,-0.06713400107099263 +57387,286.9349999997753,-0.06712988504289776 +57388,286.9399999997753,-0.06712577263339227 +57389,286.9449999997753,-0.06712166383842769 +57390,286.9499999997753,-0.06711755865395669 +57391,286.9549999997753,-0.06711345707593326 +57392,286.9599999997753,-0.06710935910031257 +57393,286.9649999997753,-0.06710526472305113 +57394,286.96999999977527,-0.06710117394010671 +57395,286.97499999977526,-0.06709708674743843 +57396,286.97999999977526,-0.06709300314100668 +57397,286.98499999977525,-0.06708892311677327 +57398,286.98999999977525,-0.0670848466707013 +57399,286.99499999977525,-0.06708077379875534 +57400,286.99999999977524,-0.0670767044969013 +57401,287.00499999977524,-0.06707263876110654 +57402,287.00999999977523,-0.06706857658733986 +57403,287.0149999997752,-0.0670645179715715 +57404,287.0199999997752,-0.06706046290977316 +57405,287.0249999997752,-0.06705641139791807 +57406,287.0299999997752,-0.06705236343198094 +57407,287.0349999997752,-0.067048319007938 +57408,287.0399999997752,-0.06704427812176705 +57409,287.0449999997752,-0.06704024076944741 +57410,287.0499999997752,-0.06703620694695998 +57411,287.0549999997752,-0.06703217665028728 +57412,287.0599999997752,-0.06702814987541342 +57413,287.0649999997752,-0.06702412661832412 +57414,287.0699999997752,-0.06702010687500674 +57415,287.0749999997752,-0.06701609064145035 +57416,287.07999999977517,-0.06701207791364559 +57417,287.08499999977516,-0.0670080686875849 +57418,287.08999999977516,-0.06700406295926233 +57419,287.09499999977515,-0.06700006072467371 +57420,287.09999999977515,-0.06699606197981657 +57421,287.10499999977515,-0.06699206672069022 +57422,287.10999999977514,-0.0669880749432957 +57423,287.11499999977514,-0.06698408664363585 +57424,287.11999999977513,-0.06698010181771531 +57425,287.1249999997751,-0.06697612046154053 +57426,287.1299999997751,-0.06697214257111979 +57427,287.1349999997751,-0.06696816814246319 +57428,287.1399999997751,-0.0669641971715827 +57429,287.1449999997751,-0.06696022965449216 +57430,287.1499999997751,-0.06695626558720733 +57431,287.1549999997751,-0.06695230496574579 +57432,287.1599999997751,-0.06694834778612711 +57433,287.1649999997751,-0.06694439404437276 +57434,287.1699999997751,-0.06694044373650614 +57435,287.1749999997751,-0.06693649685855262 +57436,287.1799999997751,-0.06693255340653956 +57437,287.1849999997751,-0.06692861337649626 +57438,287.18999999977507,-0.06692467676445407 +57439,287.19499999977506,-0.06692074356644634 +57440,287.19999999977506,-0.0669168137785084 +57441,287.20499999977505,-0.0669128873966777 +57442,287.20999999977505,-0.06690896441699366 +57443,287.21499999977505,-0.06690504483549783 +57444,287.21999999977504,-0.06690112864823383 +57445,287.22499999977504,-0.06689721585124736 +57446,287.22999999977503,-0.06689330644058622 +57447,287.234999999775,-0.06688940041230035 +57448,287.239999999775,-0.06688549776244182 +57449,287.244999999775,-0.06688159848706482 +57450,287.249999999775,-0.06687770258222575 +57451,287.254999999775,-0.06687381004398314 +57452,287.259999999775,-0.06686992086839773 +57453,287.264999999775,-0.06686603505153244 +57454,287.269999999775,-0.0668621525894524 +57455,287.274999999775,-0.06685827347822497 +57456,287.279999999775,-0.06685439771391975 +57457,287.284999999775,-0.06685052529260858 +57458,287.289999999775,-0.06684665621036556 +57459,287.294999999775,-0.06684279046326706 +57460,287.29999999977497,-0.06683892804739174 +57461,287.30499999977496,-0.06683506895882052 +57462,287.30999999977496,-0.06683121319363668 +57463,287.31499999977495,-0.06682736074792578 +57464,287.31999999977495,-0.06682351161777574 +57465,287.32499999977495,-0.0668196657992768 +57466,287.32999999977494,-0.06681582328852156 +57467,287.33499999977494,-0.06681198408160499 +57468,287.33999999977493,-0.06680814817462442 +57469,287.3449999997749,-0.06680431556367959 +57470,287.3499999997749,-0.06680048624487263 +57471,287.3549999997749,-0.06679666021430808 +57472,287.3599999997749,-0.06679283746809289 +57473,287.3649999997749,-0.06678901800233646 +57474,287.3699999997749,-0.06678520181315059 +57475,287.3749999997749,-0.06678138889664961 +57476,287.3799999997749,-0.06677757924895028 +57477,287.3849999997749,-0.06677377286617178 +57478,287.3899999997749,-0.06676996974443587 +57479,287.3949999997749,-0.06676616987986674 +57480,287.3999999997749,-0.0667623732685911 +57481,287.4049999997749,-0.06675857990673818 +57482,287.40999999977487,-0.06675478979043976 +57483,287.41499999977486,-0.06675100291583012 +57484,287.41999999977486,-0.06674721927904613 +57485,287.42499999977485,-0.06674343887622719 +57486,287.42999999977485,-0.06673966170351524 +57487,287.43499999977485,-0.06673588775705486 +57488,287.43999999977484,-0.06673211703299317 +57489,287.44499999977484,-0.06672834952747993 +57490,287.44999999977483,-0.06672458523666744 +57491,287.4549999997748,-0.0667208241567107 +57492,287.4599999997748,-0.06671706628376727 +57493,287.4649999997748,-0.06671331161399738 +57494,287.4699999997748,-0.0667095601435639 +57495,287.4749999997748,-0.06670581186863232 +57496,287.4799999997748,-0.06670206678537087 +57497,287.4849999997748,-0.06669832488995038 +57498,287.4899999997748,-0.0666945861785444 +57499,287.4949999997748,-0.06669085064732916 +57500,287.4999999997748,-0.06668711829248358 +57501,287.5049999997748,-0.06668338911018931 +57502,287.5099999997748,-0.0666796630966307 +57503,287.5149999997748,-0.06667594024799486 +57504,287.51999999977477,-0.06667222056047159 +57505,287.52499999977476,-0.06666850403025346 +57506,287.52999999977476,-0.0666647906535358 +57507,287.53499999977475,-0.06666108042651667 +57508,287.53999999977475,-0.06665737334539693 +57509,287.54499999977475,-0.0666536694063802 +57510,287.54999999977474,-0.06664996860567293 +57511,287.55499999977474,-0.0666462709394843 +57512,287.55999999977473,-0.06664257640402635 +57513,287.5649999997747,-0.06663888499551388 +57514,287.5699999997747,-0.06663519671016455 +57515,287.5749999997747,-0.06663151154419884 +57516,287.5799999997747,-0.06662782949384005 +57517,287.5849999997747,-0.06662415055531434 +57518,287.5899999997747,-0.0666204747248507 +57519,287.5949999997747,-0.06661680199868102 +57520,287.5999999997747,-0.06661313237304001 +57521,287.6049999997747,-0.06660946584416527 +57522,287.6099999997747,-0.0666058024082973 +57523,287.6149999997747,-0.06660214206167948 +57524,287.6199999997747,-0.06659848480055808 +57525,287.6249999997747,-0.06659483062118227 +57526,287.62999999977467,-0.06659117951980416 +57527,287.63499999977466,-0.06658753149267874 +57528,287.63999999977466,-0.06658388653606395 +57529,287.64499999977465,-0.06658024464622068 +57530,287.64999999977465,-0.06657660581941272 +57531,287.65499999977465,-0.06657297005190684 +57532,287.65999999977464,-0.06656933733997275 +57533,287.66499999977464,-0.06656570767988312 +57534,287.66999999977463,-0.0665620810679136 +57535,287.6749999997746,-0.06655845750034281 +57536,287.6799999997746,-0.06655483697345235 +57537,287.6849999997746,-0.06655121948352682 +57538,287.6899999997746,-0.0665476050268538 +57539,287.6949999997746,-0.06654399359972388 +57540,287.6999999997746,-0.06654038519843065 +57541,287.7049999997746,-0.06653677981927075 +57542,287.7099999997746,-0.06653317745854377 +57543,287.7149999997746,-0.06652957811255242 +57544,287.7199999997746,-0.06652598177760237 +57545,287.7249999997746,-0.06652238845000236 +57546,287.7299999997746,-0.06651879812606418 +57547,287.7349999997746,-0.06651521080210265 +57548,287.73999999977457,-0.0665116264744357 +57549,287.74499999977456,-0.06650804513938428 +57550,287.74999999977456,-0.06650446679327242 +57551,287.75499999977455,-0.06650089143242723 +57552,287.75999999977455,-0.0664973190531789 +57553,287.76499999977455,-0.06649374965186071 +57554,287.76999999977454,-0.06649018322480905 +57555,287.77499999977454,-0.0664866197683634 +57556,287.77999999977453,-0.06648305927886632 +57557,287.7849999997745,-0.06647950175266354 +57558,287.7899999997745,-0.06647594718610383 +57559,287.7949999997745,-0.06647239557553916 +57560,287.7999999997745,-0.0664688469173246 +57561,287.8049999997745,-0.06646530120781831 +57562,287.8099999997745,-0.06646175844338167 +57563,287.8149999997745,-0.06645821862037912 +57564,287.8199999997745,-0.06645468173517832 +57565,287.8249999997745,-0.06645114778415005 +57566,287.8299999997745,-0.06644761676366825 +57567,287.8349999997745,-0.06644408867011002 +57568,287.8399999997745,-0.06644056349985565 +57569,287.8449999997745,-0.06643704124928862 +57570,287.84999999977447,-0.06643352191479554 +57571,287.85499999977446,-0.06643000549276624 +57572,287.85999999977446,-0.06642649197959373 +57573,287.86499999977445,-0.06642298137167423 +57574,287.86999999977445,-0.06641947366540712 +57575,287.87499999977445,-0.06641596885719504 +57576,287.87999999977444,-0.0664124669434438 +57577,287.88499999977444,-0.06640896792056243 +57578,287.88999999977443,-0.0664054717849632 +57579,287.8949999997744,-0.06640197853306157 +57580,287.8999999997744,-0.06639848816127623 +57581,287.9049999997744,-0.06639500066602914 +57582,287.9099999997744,-0.06639151604374549 +57583,287.9149999997744,-0.06638803429085365 +57584,287.9199999997744,-0.06638455540378528 +57585,287.9249999997744,-0.06638107937897533 +57586,287.9299999997744,-0.06637760621286193 +57587,287.9349999997744,-0.0663741359018865 +57588,287.9399999997744,-0.06637066844249372 +57589,287.9449999997744,-0.06636720383113154 +57590,287.9499999997744,-0.06636374206425118 +57591,287.9549999997744,-0.06636028313830711 +57592,287.95999999977437,-0.06635682704975714 +57593,287.96499999977436,-0.06635337379506227 +57594,287.96999999977436,-0.06634992337068688 +57595,287.97499999977435,-0.06634647577309857 +57596,287.97999999977435,-0.06634303099876829 +57597,287.98499999977435,-0.06633958904417023 +57598,287.98999999977434,-0.0663361499057819 +57599,287.99499999977434,-0.06633271358008416 +57600,287.99999999977433,-0.06632928006356112 +57601,288.0049999997743,-0.06632584935270022 +57602,288.0099999997743,-0.06632242144399222 +57603,288.0149999997743,-0.06631899633393122 +57604,288.0199999997743,-0.06631557401901461 +57605,288.0249999997743,-0.06631215449574308 +57606,288.0299999997743,-0.06630873776062074 +57607,288.0349999997743,-0.06630532381015496 +57608,288.0399999997743,-0.06630191264085644 +57609,288.0449999997743,-0.06629850424923928 +57610,288.0499999997743,-0.06629509863182086 +57611,288.0549999997743,-0.06629169578512194 +57612,288.0599999997743,-0.06628829570566662 +57613,288.0649999997743,-0.06628489838998235 +57614,288.06999999977427,-0.06628150383459994 +57615,288.07499999977426,-0.06627811203605355 +57616,288.07999999977426,-0.06627472299088072 +57617,288.08499999977425,-0.06627133669562232 +57618,288.08999999977425,-0.06626795314682264 +57619,288.09499999977425,-0.06626457234102928 +57620,288.09999999977424,-0.06626119427479324 +57621,288.10499999977424,-0.0662578189446689 +57622,288.10999999977423,-0.06625444634721402 +57623,288.1149999997742,-0.06625107647898971 +57624,288.1199999997742,-0.06624770933656053 +57625,288.1249999997742,-0.06624434491649436 +57626,288.1299999997742,-0.06624098321536248 +57627,288.1349999997742,-0.06623762422973958 +57628,288.1399999997742,-0.06623426795620375 +57629,288.1449999997742,-0.06623091439133645 +57630,288.1499999997742,-0.06622756353172257 +57631,288.1549999997742,-0.06622421537395037 +57632,288.1599999997742,-0.06622086991461154 +57633,288.1649999997742,-0.06621752715030116 +57634,288.1699999997742,-0.06621418707761771 +57635,288.1749999997742,-0.06621084969316311 +57636,288.17999999977417,-0.06620751499354269 +57637,288.18499999977416,-0.06620418297536516 +57638,288.18999999977416,-0.06620085363524268 +57639,288.19499999977415,-0.06619752696979082 +57640,288.19999999977415,-0.06619420297562859 +57641,288.20499999977415,-0.06619088164937836 +57642,288.20999999977414,-0.06618756298766601 +57643,288.21499999977414,-0.0661842469871208 +57644,288.21999999977413,-0.06618093364437543 +57645,288.2249999997741,-0.06617762295606604 +57646,288.2299999997741,-0.06617431491883216 +57647,288.2349999997741,-0.06617100952931683 +57648,288.2399999997741,-0.06616770678416649 +57649,288.2449999997741,-0.066164406680031 +57650,288.2499999997741,-0.06616110921356368 +57651,288.2549999997741,-0.0661578143814213 +57652,288.2599999997741,-0.06615452218026407 +57653,288.2649999997741,-0.06615123260675564 +57654,288.2699999997741,-0.06614794565756311 +57655,288.2749999997741,-0.06614466132935705 +57656,288.2799999997741,-0.06614137961881145 +57657,288.2849999997741,-0.06613810052260377 +57658,288.28999999977407,-0.06613482403741491 +57659,288.29499999977406,-0.06613155015992926 +57660,288.29999999977406,-0.06612827888683462 +57661,288.30499999977405,-0.0661250102148223 +57662,288.30999999977405,-0.06612174414058702 +57663,288.31499999977405,-0.06611848066082701 +57664,288.31999999977404,-0.06611521977224392 +57665,288.32499999977404,-0.0661119614715429 +57666,288.32999999977403,-0.06610870575543254 +57667,288.334999999774,-0.06610545262062491 +57668,288.339999999774,-0.06610220206383553 +57669,288.344999999774,-0.06609895408178344 +57670,288.349999999774,-0.0660957086711911 +57671,288.354999999774,-0.06609246582878446 +57672,288.359999999774,-0.06608922555129292 +57673,288.364999999774,-0.06608598783544939 +57674,288.369999999774,-0.06608275267799024 +57675,288.374999999774,-0.06607952007565535 +57676,288.379999999774,-0.06607629002518799 +57677,288.384999999774,-0.06607306252333499 +57678,288.389999999774,-0.06606983756684662 +57679,288.394999999774,-0.06606661515247667 +57680,288.39999999977397,-0.06606339527698235 +57681,288.40499999977396,-0.0660601779371244 +57682,288.40999999977396,-0.06605696312966704 +57683,288.41499999977395,-0.06605375085137795 +57684,288.41999999977395,-0.06605054109902829 +57685,288.42499999977395,-0.06604733386939275 +57686,288.42999999977394,-0.06604412915924947 +57687,288.43499999977394,-0.06604092696538007 +57688,288.43999999977393,-0.06603772728456969 +57689,288.4449999997739,-0.06603453011360692 +57690,288.4499999997739,-0.06603133544928388 +57691,288.4549999997739,-0.06602814328839617 +57692,288.4599999997739,-0.06602495362774283 +57693,288.4649999997739,-0.06602176646412646 +57694,288.4699999997739,-0.0660185817943531 +57695,288.4749999997739,-0.0660153996152323 +57696,288.4799999997739,-0.06601221992357713 +57697,288.4849999997739,-0.0660090427162041 +57698,288.4899999997739,-0.06600586798993324 +57699,288.4949999997739,-0.06600269574158808 +57700,288.4999999997739,-0.06599952596799566 +57701,288.5049999997739,-0.06599635866598645 +57702,288.50999999977387,-0.06599319383239448 +57703,288.51499999977386,-0.06599003146405726 +57704,288.51999999977386,-0.06598687155781575 +57705,288.52499999977385,-0.06598371411051447 +57706,288.52999999977385,-0.0659805591190014 +57707,288.53499999977385,-0.065977406580128 +57708,288.53999999977384,-0.06597425649074928 +57709,288.54499999977384,-0.0659711088477237 +57710,288.54999999977383,-0.06596796364791324 +57711,288.5549999997738,-0.06596482088818335 +57712,288.5599999997738,-0.06596168056540301 +57713,288.5649999997738,-0.06595854267644469 +57714,288.5699999997738,-0.06595540721818431 +57715,288.5749999997738,-0.06595227418750135 +57716,288.5799999997738,-0.06594914358127876 +57717,288.5849999997738,-0.06594601539640299 +57718,288.5899999997738,-0.06594288962976397 +57719,288.5949999997738,-0.06593976627825517 +57720,288.5999999997738,-0.0659366453387735 +57721,288.6049999997738,-0.06593352680821941 +57722,288.6099999997738,-0.06593041068349684 +57723,288.6149999997738,-0.0659272969615132 +57724,288.61999999977377,-0.06592418563917941 +57725,288.62499999977376,-0.06592107671340992 +57726,288.62999999977376,-0.06591797018112261 +57727,288.63499999977375,-0.06591486603923892 +57728,288.63999999977375,-0.06591176428468375 +57729,288.64499999977375,-0.06590866491438549 +57730,288.64999999977374,-0.06590556792527605 +57731,288.65499999977374,-0.06590247331429082 +57732,288.65999999977373,-0.06589938107836868 +57733,288.6649999997737,-0.06589629121445201 +57734,288.6699999997737,-0.06589320371948668 +57735,288.6749999997737,-0.06589011859042207 +57736,288.6799999997737,-0.06588703582421102 +57737,288.6849999997737,-0.06588395541780989 +57738,288.6899999997737,-0.06588087736817852 +57739,288.6949999997737,-0.06587780167228025 +57740,288.6999999997737,-0.0658747283270819 +57741,288.7049999997737,-0.06587165732955379 +57742,288.7099999997737,-0.06586858867666971 +57743,288.7149999997737,-0.06586552236540699 +57744,288.7199999997737,-0.06586245839274638 +57745,288.7249999997737,-0.06585939675567215 +57746,288.72999999977367,-0.06585633745117207 +57747,288.73499999977366,-0.06585328047623738 +57748,288.73999999977366,-0.06585022582786283 +57749,288.74499999977365,-0.06584717350304663 +57750,288.74999999977365,-0.06584412349879046 +57751,288.75499999977364,-0.06584107581209953 +57752,288.75999999977364,-0.06583803043998249 +57753,288.76499999977364,-0.06583498737945151 +57754,288.76999999977363,-0.06583194662752222 +57755,288.7749999997736,-0.06582890818121373 +57756,288.7799999997736,-0.06582587203754867 +57757,288.7849999997736,-0.06582283819355307 +57758,288.7899999997736,-0.06581980664625652 +57759,288.7949999997736,-0.06581677739269202 +57760,288.7999999997736,-0.06581375042989611 +57761,288.8049999997736,-0.06581072575490876 +57762,288.8099999997736,-0.06580770336477344 +57763,288.8149999997736,-0.0658046832565371 +57764,288.8199999997736,-0.06580166542725015 +57765,288.8249999997736,-0.06579864987396644 +57766,288.8299999997736,-0.06579563659374335 +57767,288.8349999997736,-0.06579262558364171 +57768,288.83999999977357,-0.0657896168407258 +57769,288.84499999977356,-0.0657866103620634 +57770,288.84999999977356,-0.06578360614472573 +57771,288.85499999977355,-0.06578060418578749 +57772,288.85999999977355,-0.06577760448232685 +57773,288.86499999977354,-0.06577460703142543 +57774,288.86999999977354,-0.06577161183016834 +57775,288.87499999977354,-0.06576861887564413 +57776,288.87999999977353,-0.0657656281649448 +57777,288.8849999997735,-0.06576263969516585 +57778,288.8899999997735,-0.06575965346340618 +57779,288.8949999997735,-0.06575666946676821 +57780,288.8999999997735,-0.0657536877023578 +57781,288.9049999997735,-0.06575070816728423 +57782,288.9099999997735,-0.06574773085866027 +57783,288.9149999997735,-0.06574475577360214 +57784,288.9199999997735,-0.06574178290922948 +57785,288.9249999997735,-0.06573881226266544 +57786,288.9299999997735,-0.06573584383103655 +57787,288.9349999997735,-0.06573287761147284 +57788,288.9399999997735,-0.06572991360110778 +57789,288.9449999997735,-0.06572695179707823 +57790,288.94999999977347,-0.06572399219652458 +57791,288.95499999977346,-0.0657210347965906 +57792,288.95999999977346,-0.06571807959442355 +57793,288.96499999977345,-0.06571512658717407 +57794,288.96999999977345,-0.06571217577199628 +57795,288.97499999977344,-0.06570922714604774 +57796,288.97999999977344,-0.06570628070648941 +57797,288.98499999977344,-0.06570333645048572 +57798,288.98999999977343,-0.06570039437520453 +57799,288.9949999997734,-0.06569745447781711 +57800,288.9999999997734,-0.06569451675549816 +57801,289.0049999997734,-0.06569158120542584 +57802,289.0099999997734,-0.06568864782478172 +57803,289.0149999997734,-0.06568571661075076 +57804,289.0199999997734,-0.06568278756052141 +57805,289.0249999997734,-0.0656798606712855 +57806,289.0299999997734,-0.06567693594023831 +57807,289.0349999997734,-0.06567401336457848 +57808,289.0399999997734,-0.06567109294150814 +57809,289.0449999997734,-0.06566817466823277 +57810,289.0499999997734,-0.06566525854196131 +57811,289.0549999997734,-0.06566234455990612 +57812,289.05999999977337,-0.06565943271928293 +57813,289.06499999977336,-0.06565652301731091 +57814,289.06999999977336,-0.06565361545121262 +57815,289.07499999977335,-0.06565071001821404 +57816,289.07999999977335,-0.06564780671554456 +57817,289.08499999977334,-0.06564490554043695 +57818,289.08999999977334,-0.06564200649012741 +57819,289.09499999977334,-0.06563910956185552 +57820,289.09999999977333,-0.06563621475286426 +57821,289.1049999997733,-0.06563332206039998 +57822,289.1099999997733,-0.06563043148171248 +57823,289.1149999997733,-0.06562754301405492 +57824,289.1199999997733,-0.06562465665468388 +57825,289.1249999997733,-0.06562177240085926 +57826,289.1299999997733,-0.06561889024984441 +57827,289.1349999997733,-0.06561601019890607 +57828,289.1399999997733,-0.0656131322453143 +57829,289.1449999997733,-0.06561025638634263 +57830,289.1499999997733,-0.06560738261926788 +57831,289.1549999997733,-0.0656045109413703 +57832,289.1599999997733,-0.06560164134993353 +57833,289.1649999997733,-0.06559877384224454 +57834,289.16999999977327,-0.06559590841559369 +57835,289.17499999977326,-0.06559304506727474 +57836,289.17999999977326,-0.06559018379458477 +57837,289.18499999977325,-0.06558732459482426 +57838,289.18999999977325,-0.06558446746529706 +57839,289.19499999977324,-0.06558161240331033 +57840,289.19999999977324,-0.06557875940617465 +57841,289.20499999977324,-0.06557590847120395 +57842,289.20999999977323,-0.06557305959571548 +57843,289.2149999997732,-0.06557021277702989 +57844,289.2199999997732,-0.06556736801247114 +57845,289.2249999997732,-0.06556452529936659 +57846,289.2299999997732,-0.06556168463504689 +57847,289.2349999997732,-0.06555884601684611 +57848,289.2399999997732,-0.0655560094421016 +57849,289.2449999997732,-0.06555317490815407 +57850,289.2499999997732,-0.06555034241234763 +57851,289.2549999997732,-0.06554751195202961 +57852,289.2599999997732,-0.06554468352455078 +57853,289.2649999997732,-0.06554185712726521 +57854,289.2699999997732,-0.0655390327575303 +57855,289.2749999997732,-0.06553621041270677 +57856,289.27999999977317,-0.0655333900901587 +57857,289.28499999977316,-0.06553057178725345 +57858,289.28999999977316,-0.06552775550136176 +57859,289.29499999977315,-0.06552494122985766 +57860,289.29999999977315,-0.0655221289701185 +57861,289.30499999977314,-0.06551931871952495 +57862,289.30999999977314,-0.06551651047546099 +57863,289.31499999977314,-0.06551370423531394 +57864,289.31999999977313,-0.0655108999964744 +57865,289.3249999997731,-0.06550809775633627 +57866,289.3299999997731,-0.0655052975122968 +57867,289.3349999997731,-0.06550249926175654 +57868,289.3399999997731,-0.06549970300211931 +57869,289.3449999997731,-0.06549690873079222 +57870,289.3499999997731,-0.06549411644518574 +57871,289.3549999997731,-0.06549132614271358 +57872,289.3599999997731,-0.06548853782079275 +57873,289.3649999997731,-0.0654857514768436 +57874,289.3699999997731,-0.06548296710828971 +57875,289.3749999997731,-0.06548018471255798 +57876,289.3799999997731,-0.06547740428707859 +57877,289.3849999997731,-0.06547462582928498 +57878,289.38999999977307,-0.06547184933661389 +57879,289.39499999977306,-0.06546907480650534 +57880,289.39999999977306,-0.06546630223640261 +57881,289.40499999977305,-0.06546353162375228 +57882,289.40999999977305,-0.06546076296600417 +57883,289.41499999977304,-0.06545799626061138 +57884,289.41999999977304,-0.0654552315050303 +57885,289.42499999977304,-0.06545246869672053 +57886,289.42999999977303,-0.06544970783314498 +57887,289.434999999773,-0.0654469489117698 +57888,289.439999999773,-0.06544419193006441 +57889,289.444999999773,-0.06544143688550144 +57890,289.449999999773,-0.06543868377555684 +57891,289.454999999773,-0.06543593259770976 +57892,289.459999999773,-0.0654331833494426 +57893,289.464999999773,-0.06543043602824103 +57894,289.469999999773,-0.06542769063159395 +57895,289.474999999773,-0.06542494715699348 +57896,289.479999999773,-0.06542220560193501 +57897,289.484999999773,-0.06541946596391714 +57898,289.489999999773,-0.06541672824044172 +57899,289.494999999773,-0.0654139924290138 +57900,289.49999999977297,-0.06541125852714172 +57901,289.50499999977296,-0.06540852653233696 +57902,289.50999999977296,-0.0654057964421143 +57903,289.51499999977295,-0.06540306825399171 +57904,289.51999999977295,-0.06540034196549036 +57905,289.52499999977294,-0.06539761757413465 +57906,289.52999999977294,-0.06539489507745219 +57907,289.53499999977294,-0.06539217447297382 +57908,289.53999999977293,-0.06538945575823357 +57909,289.5449999997729,-0.06538673893076866 +57910,289.5499999997729,-0.06538402398811954 +57911,289.5549999997729,-0.06538131092782984 +57912,289.5599999997729,-0.06537859974744642 +57913,289.5649999997729,-0.06537589044451929 +57914,289.5699999997729,-0.06537318301660168 +57915,289.5749999997729,-0.06537047746124999 +57916,289.5799999997729,-0.06536777377602386 +57917,289.5849999997729,-0.06536507195848604 +57918,289.5899999997729,-0.06536237200620253 +57919,289.5949999997729,-0.06535967391674245 +57920,289.5999999997729,-0.06535697768767815 +57921,289.6049999997729,-0.06535428331658512 +57922,289.60999999977287,-0.06535159080104203 +57923,289.61499999977286,-0.0653489001386307 +57924,289.61999999977286,-0.0653462113269362 +57925,289.62499999977285,-0.06534352436354667 +57926,289.62999999977285,-0.06534083924605343 +57927,289.63499999977284,-0.06533815597205099 +57928,289.63999999977284,-0.065335474539137 +57929,289.64499999977284,-0.06533279494491226 +57930,289.64999999977283,-0.06533011718698072 +57931,289.6549999997728,-0.0653274412629495 +57932,289.6599999997728,-0.06532476717042883 +57933,289.6649999997728,-0.06532209490703211 +57934,289.6699999997728,-0.06531942447037588 +57935,289.6749999997728,-0.06531675585807982 +57936,289.6799999997728,-0.0653140890677667 +57937,289.6849999997728,-0.0653114240970625 +57938,289.6899999997728,-0.06530876094359626 +57939,289.6949999997728,-0.0653060996050002 +57940,289.6999999997728,-0.06530344007890962 +57941,289.7049999997728,-0.06530078236296297 +57942,289.7099999997728,-0.0652981264548018 +57943,289.7149999997728,-0.06529547235207082 +57944,289.71999999977277,-0.06529282005241778 +57945,289.72499999977276,-0.06529016955349361 +57946,289.72999999977276,-0.06528752085295231 +57947,289.73499999977275,-0.065284873948451 +57948,289.73999999977275,-0.0652822288376499 +57949,289.74499999977274,-0.06527958551821235 +57950,289.74999999977274,-0.06527694398780473 +57951,289.75499999977274,-0.06527430424409657 +57952,289.75999999977273,-0.06527166628476047 +57953,289.7649999997727,-0.06526903010747213 +57954,289.7699999997727,-0.06526639570991033 +57955,289.7749999997727,-0.06526376308975693 +57956,289.7799999997727,-0.06526113224469687 +57957,289.7849999997727,-0.06525850317241817 +57958,289.7899999997727,-0.06525587587061195 +57959,289.7949999997727,-0.06525325033697235 +57960,289.7999999997727,-0.06525062656919664 +57961,289.8049999997727,-0.06524800456498511 +57962,289.8099999997727,-0.06524538432204113 +57963,289.8149999997727,-0.06524276583807115 +57964,289.8199999997727,-0.06524014911078466 +57965,289.8249999997727,-0.0652375341378942 +57966,289.82999999977267,-0.06523492091711537 +57967,289.83499999977266,-0.06523230944616684 +57968,289.83999999977266,-0.06522969972277029 +57969,289.84499999977265,-0.0652270917446505 +57970,289.84999999977265,-0.06522448550953522 +57971,289.85499999977264,-0.06522188101515529 +57972,289.85999999977264,-0.06521927825924458 +57973,289.86499999977264,-0.06521667723953997 +57974,289.86999999977263,-0.06521407795378141 +57975,289.8749999997726,-0.06521148039971185 +57976,289.8799999997726,-0.06520888457507726 +57977,289.8849999997726,-0.06520629047762667 +57978,289.8899999997726,-0.06520369810511206 +57979,289.8949999997726,-0.06520110745528851 +57980,289.8999999997726,-0.06519851852591406 +57981,289.9049999997726,-0.06519593131474975 +57982,289.9099999997726,-0.0651933458195597 +57983,289.9149999997726,-0.06519076203811096 +57984,289.9199999997726,-0.06518817996817361 +57985,289.9249999997726,-0.06518559960752074 +57986,289.9299999997726,-0.06518302095392843 +57987,289.9349999997726,-0.06518044400517574 +57988,289.93999999977257,-0.06517786875904474 +57989,289.94499999977256,-0.06517529521332048 +57990,289.94999999977256,-0.06517272336579098 +57991,289.95499999977255,-0.0651701532142473 +57992,289.95999999977255,-0.06516758475648339 +57993,289.96499999977254,-0.06516501799029625 +57994,289.96999999977254,-0.06516245291348582 +57995,289.97499999977254,-0.06515988952385503 +57996,289.97999999977253,-0.06515732781920976 +57997,289.9849999997725,-0.06515476779735886 +57998,289.9899999997725,-0.06515220945611415 +57999,289.9949999997725,-0.06514965279329042 +58000,289.9999999997725,-0.06514709780670536 +58001,290.0049999997725,-0.0651445444941797 +58002,290.0099999997725,-0.06514199285353704 +58003,290.0149999997725,-0.06513944288260398 +58004,290.0199999997725,-0.06513689457921007 +58005,290.0249999997725,-0.06513434794118775 +58006,290.0299999997725,-0.06513180296637242 +58007,290.0349999997725,-0.06512925965260245 +58008,290.0399999997725,-0.06512671799771912 +58009,290.0449999997725,-0.06512417799956662 +58010,290.04999999977247,-0.0651216396559921 +58011,290.05499999977246,-0.06511910296484562 +58012,290.05999999977246,-0.06511656792398017 +58013,290.06499999977245,-0.06511403453125164 +58014,290.06999999977245,-0.06511150278451885 +58015,290.07499999977244,-0.06510897268164353 +58016,290.07999999977244,-0.06510644422049033 +58017,290.08499999977244,-0.06510391739892678 +58018,290.08999999977243,-0.06510139221482335 +58019,290.0949999997724,-0.06509886866605338 +58020,290.0999999997724,-0.06509634675049313 +58021,290.1049999997724,-0.06509382646602174 +58022,290.1099999997724,-0.06509130781052125 +58023,290.1149999997724,-0.06508879078187658 +58024,290.1199999997724,-0.06508627537797555 +58025,290.1249999997724,-0.06508376159670887 +58026,290.1299999997724,-0.06508124943597011 +58027,290.1349999997724,-0.06507873889365572 +58028,290.1399999997724,-0.06507622996766503 +58029,290.1449999997724,-0.06507372265590024 +58030,290.1499999997724,-0.06507121695626644 +58031,290.1549999997724,-0.06506871286667155 +58032,290.15999999977237,-0.06506621038502639 +58033,290.16499999977236,-0.06506370950924459 +58034,290.16999999977236,-0.06506121023724268 +58035,290.17499999977235,-0.06505871256694003 +58036,290.17999999977235,-0.06505621649625887 +58037,290.18499999977234,-0.06505372202312426 +58038,290.18999999977234,-0.06505122914546412 +58039,290.19499999977234,-0.06504873786120921 +58040,290.19999999977233,-0.0650462481682931 +58041,290.2049999997723,-0.06504376006465226 +58042,290.2099999997723,-0.06504127354822593 +58043,290.2149999997723,-0.06503878861695621 +58044,290.2199999997723,-0.06503630526878802 +58045,290.2249999997723,-0.06503382350166913 +58046,290.2299999997723,-0.0650313433135501 +58047,290.2349999997723,-0.0650288647023843 +58048,290.2399999997723,-0.06502638766612794 +58049,290.2449999997723,-0.06502391220274002 +58050,290.2499999997723,-0.0650214383101824 +58051,290.2549999997723,-0.06501896598641968 +58052,290.2599999997723,-0.06501649522941931 +58053,290.2649999997723,-0.0650140260371515 +58054,290.26999999977227,-0.06501155840758933 +58055,290.27499999977226,-0.0650090923387086 +58056,290.27999999977226,-0.06500662782848791 +58057,290.28499999977225,-0.06500416487490868 +58058,290.28999999977225,-0.06500170347595512 +58059,290.29499999977224,-0.06499924362961418 +58060,290.29999999977224,-0.06499678533387562 +58061,290.30499999977224,-0.06499432858673199 +58062,290.30999999977223,-0.06499187338617857 +58063,290.3149999997722,-0.06498941973021344 +58064,290.3199999997722,-0.06498696761683746 +58065,290.3249999997722,-0.06498451704405421 +58066,290.3299999997722,-0.0649820680098701 +58067,290.3349999997722,-0.06497962051229421 +58068,290.3399999997722,-0.06497717454933845 +58069,290.3449999997722,-0.06497473011901746 +58070,290.3499999997722,-0.0649722872193486 +58071,290.3549999997722,-0.06496984584835204 +58072,290.3599999997722,-0.06496740600405063 +58073,290.3649999997722,-0.06496496768446999 +58074,290.3699999997722,-0.06496253088763848 +58075,290.37499999977217,-0.06496009561158719 +58076,290.37999999977217,-0.06495766185434994 +58077,290.38499999977216,-0.06495522961396327 +58078,290.38999999977216,-0.06495279888846646 +58079,290.39499999977215,-0.06495036967590151 +58080,290.39999999977215,-0.06494794197431315 +58081,290.40499999977214,-0.06494551578174881 +58082,290.40999999977214,-0.06494309109625863 +58083,290.41499999977214,-0.06494066791589546 +58084,290.41999999977213,-0.06493824623871489 +58085,290.4249999997721,-0.06493582606277516 +58086,290.4299999997721,-0.06493340738613727 +58087,290.4349999997721,-0.06493099020686491 +58088,290.4399999997721,-0.0649285745230244 +58089,290.4449999997721,-0.06492616033268485 +58090,290.4499999997721,-0.06492374763391795 +58091,290.4549999997721,-0.06492133642479818 +58092,290.4599999997721,-0.06491892670340266 +58093,290.4649999997721,-0.06491651846781117 +58094,290.4699999997721,-0.06491411171610621 +58095,290.4749999997721,-0.06491170644637292 +58096,290.4799999997721,-0.06490930265669913 +58097,290.48499999977207,-0.06490690034517534 +58098,290.48999999977207,-0.06490449950989469 +58099,290.49499999977206,-0.06490210014895302 +58100,290.49999999977206,-0.06489970226044882 +58101,290.50499999977205,-0.06489730584248322 +58102,290.50999999977205,-0.06489491089316 +58103,290.51499999977204,-0.06489251741058563 +58104,290.51999999977204,-0.06489012539286916 +58105,290.52499999977204,-0.06488773483812237 +58106,290.52999999977203,-0.06488534574445962 +58107,290.534999999772,-0.06488295810999792 +58108,290.539999999772,-0.06488057193285691 +58109,290.544999999772,-0.0648781872111589 +58110,290.549999999772,-0.0648758039430288 +58111,290.554999999772,-0.06487342212659415 +58112,290.559999999772,-0.0648710417599851 +58113,290.564999999772,-0.06486866284133445 +58114,290.569999999772,-0.06486628536877762 +58115,290.574999999772,-0.06486390934045258 +58116,290.579999999772,-0.0648615347545 +58117,290.584999999772,-0.0648591616090631 +58118,290.589999999772,-0.06485678990228774 +58119,290.59499999977197,-0.06485441963232234 +58120,290.59999999977197,-0.06485205079731798 +58121,290.60499999977196,-0.06484968339542829 +58122,290.60999999977196,-0.0648473174248095 +58123,290.61499999977195,-0.06484495288362042 +58124,290.61999999977195,-0.0648425897700225 +58125,290.62499999977194,-0.06484022808217972 +58126,290.62999999977194,-0.06483786781825868 +58127,290.63499999977194,-0.06483550897642852 +58128,290.63999999977193,-0.06483315155486098 +58129,290.6449999997719,-0.06483079555173038 +58130,290.6499999997719,-0.06482844096521359 +58131,290.6549999997719,-0.06482608779349006 +58132,290.6599999997719,-0.06482373603474181 +58133,290.6649999997719,-0.0648213856871534 +58134,290.6699999997719,-0.06481903674891196 +58135,290.6749999997719,-0.06481668921820716 +58136,290.6799999997719,-0.06481434309323124 +58137,290.6849999997719,-0.064811998372179 +58138,290.6899999997719,-0.06480965505324776 +58139,290.6949999997719,-0.0648073131346374 +58140,290.6999999997719,-0.06480497261455033 +58141,290.70499999977187,-0.06480263349119149 +58142,290.70999999977187,-0.06480029576276836 +58143,290.71499999977186,-0.06479795942749096 +58144,290.71999999977186,-0.06479562448357185 +58145,290.72499999977185,-0.06479329092922607 +58146,290.72999999977185,-0.06479095876267124 +58147,290.73499999977184,-0.06478862798212744 +58148,290.73999999977184,-0.0647862985858173 +58149,290.74499999977184,-0.06478397057196598 +58150,290.74999999977183,-0.06478164393880109 +58151,290.7549999997718,-0.06477931868455282 +58152,290.7599999997718,-0.0647769948074538 +58153,290.7649999997718,-0.06477467230573922 +58154,290.7699999997718,-0.06477235117764671 +58155,290.7749999997718,-0.06477003142141645 +58156,290.7799999997718,-0.06476771303529107 +58157,290.7849999997718,-0.06476539601751571 +58158,290.7899999997718,-0.06476308036633799 +58159,290.7949999997718,-0.06476076608000801 +58160,290.7999999997718,-0.06475845315677838 +58161,290.8049999997718,-0.06475614159490413 +58162,290.8099999997718,-0.0647538313926428 +58163,290.81499999977177,-0.06475152254825443 +58164,290.81999999977177,-0.06474921506000146 +58165,290.82499999977176,-0.06474690892614886 +58166,290.82999999977176,-0.06474460414496402 +58167,290.83499999977175,-0.06474230071471682 +58168,290.83999999977175,-0.06473999863367956 +58169,290.84499999977174,-0.06473769790012704 +58170,290.84999999977174,-0.06473539851233646 +58171,290.85499999977174,-0.0647331004685875 +58172,290.85999999977173,-0.06473080376716231 +58173,290.8649999997717,-0.06472850840634543 +58174,290.8699999997717,-0.06472621438442384 +58175,290.8749999997717,-0.064723921699687 +58176,290.8799999997717,-0.0647216303504268 +58177,290.8849999997717,-0.06471934033493748 +58178,290.8899999997717,-0.06471705165151583 +58179,290.8949999997717,-0.06471476429846093 +58180,290.8999999997717,-0.06471247827407442 +58181,290.9049999997717,-0.06471019357666025 +58182,290.9099999997717,-0.06470791020452483 +58183,290.9149999997717,-0.064705628155977 +58184,290.9199999997717,-0.06470334742932797 +58185,290.92499999977167,-0.06470106802289137 +58186,290.92999999977167,-0.06469878993498324 +58187,290.93499999977166,-0.06469651316392203 +58188,290.93999999977166,-0.06469423770802855 +58189,290.94499999977165,-0.06469196356562606 +58190,290.94999999977165,-0.06468969073504019 +58191,290.95499999977164,-0.06468741921459892 +58192,290.95999999977164,-0.06468514900263267 +58193,290.96499999977163,-0.06468288009747421 +58194,290.96999999977163,-0.06468061249745871 +58195,290.9749999997716,-0.0646783462009237 +58196,290.9799999997716,-0.06467608120620909 +58197,290.9849999997716,-0.06467381751165718 +58198,290.9899999997716,-0.06467155511561261 +58199,290.9949999997716,-0.0646692940164224 +58200,290.9999999997716,-0.06466703421243594 +58201,291.0049999997716,-0.06466477570200496 +58202,291.0099999997716,-0.06466251848348356 +58203,291.0149999997716,-0.06466026255522822 +58204,291.0199999997716,-0.0646580079155977 +58205,291.0249999997716,-0.06465575456295317 +58206,291.0299999997716,-0.06465350249565811 +58207,291.03499999977157,-0.06465125171207839 +58208,291.03999999977157,-0.06464900221058217 +58209,291.04499999977156,-0.06464675398953995 +58210,291.04999999977156,-0.06464450704732459 +58211,291.05499999977155,-0.06464226138231127 +58212,291.05999999977155,-0.06464001699287751 +58213,291.06499999977154,-0.06463777387740312 +58214,291.06999999977154,-0.06463553203427026 +58215,291.07499999977153,-0.06463329146186339 +58216,291.07999999977153,-0.06463105215856933 +58217,291.0849999997715,-0.06462881412277716 +58218,291.0899999997715,-0.06462657735287829 +58219,291.0949999997715,-0.06462434184726645 +58220,291.0999999997715,-0.06462210760433766 +58221,291.1049999997715,-0.06461987462249025 +58222,291.1099999997715,-0.06461764290012482 +58223,291.1149999997715,-0.06461541243564434 +58224,291.1199999997715,-0.06461318322745398 +58225,291.1249999997715,-0.06461095527396125 +58226,291.1299999997715,-0.06460872857357595 +58227,291.1349999997715,-0.06460650312471017 +58228,291.1399999997715,-0.06460427892577826 +58229,291.14499999977147,-0.06460205597519685 +58230,291.14999999977147,-0.06459983427138485 +58231,291.15499999977146,-0.06459761381276345 +58232,291.15999999977146,-0.06459539459775611 +58233,291.16499999977145,-0.06459317662478856 +58234,291.16999999977145,-0.06459095989228876 +58235,291.17499999977144,-0.06458874439868699 +58236,291.17999999977144,-0.06458653014241572 +58237,291.18499999977143,-0.06458431712190976 +58238,291.18999999977143,-0.0645821053356061 +58239,291.1949999997714,-0.06457989478194401 +58240,291.1999999997714,-0.064577685459365 +58241,291.2049999997714,-0.06457547736631283 +58242,291.2099999997714,-0.06457327050123353 +58243,291.2149999997714,-0.0645710648625753 +58244,291.2199999997714,-0.06456886044878862 +58245,291.2249999997714,-0.06456665725832622 +58246,291.2299999997714,-0.06456445528964301 +58247,291.2349999997714,-0.06456225454119617 +58248,291.2399999997714,-0.0645600550114451 +58249,291.2449999997714,-0.06455785669885139 +58250,291.2499999997714,-0.0645556596018789 +58251,291.25499999977137,-0.06455346371899366 +58252,291.25999999977137,-0.06455126904866391 +58253,291.26499999977136,-0.06454907558936016 +58254,291.26999999977136,-0.06454688333955505 +58255,291.27499999977135,-0.0645446922977235 +58256,291.27999999977135,-0.06454250246234257 +58257,291.28499999977134,-0.06454031383189156 +58258,291.28999999977134,-0.06453812640485193 +58259,291.29499999977133,-0.06453594017970736 +58260,291.29999999977133,-0.06453375515494372 +58261,291.3049999997713,-0.06453157132904906 +58262,291.3099999997713,-0.06452938870051363 +58263,291.3149999997713,-0.06452720726782983 +58264,291.3199999997713,-0.06452502702949227 +58265,291.3249999997713,-0.06452284798399772 +58266,291.3299999997713,-0.06452067012984515 +58267,291.3349999997713,-0.06451849346553565 +58268,291.3399999997713,-0.06451631798957251 +58269,291.3449999997713,-0.06451414370046123 +58270,291.3499999997713,-0.06451197059670938 +58271,291.3549999997713,-0.06450979867682675 +58272,291.3599999997713,-0.06450762793932528 +58273,291.36499999977127,-0.06450545838271904 +58274,291.36999999977127,-0.06450329000552431 +58275,291.37499999977126,-0.06450112280625944 +58276,291.37999999977126,-0.06449895678344499 +58277,291.38499999977125,-0.0644967919356036 +58278,291.38999999977125,-0.06449462826126015 +58279,291.39499999977124,-0.06449246575894153 +58280,291.39999999977124,-0.06449030442717688 +58281,291.40499999977123,-0.0644881442644974 +58282,291.40999999977123,-0.06448598526943644 +58283,291.4149999997712,-0.0644838274405295 +58284,291.4199999997712,-0.06448167077631416 +58285,291.4249999997712,-0.06447951527533016 +58286,291.4299999997712,-0.06447736093611933 +58287,291.4349999997712,-0.06447520775722562 +58288,291.4399999997712,-0.06447305573719511 +58289,291.4449999997712,-0.06447090487457599 +58290,291.4499999997712,-0.06446875516791854 +58291,291.4549999997712,-0.06446660661577516 +58292,291.4599999997712,-0.06446445921670034 +58293,291.4649999997712,-0.06446231296925065 +58294,291.4699999997712,-0.06446016787198479 +58295,291.47499999977117,-0.06445802392346357 +58296,291.47999999977117,-0.06445588112224984 +58297,291.48499999977116,-0.06445373946690856 +58298,291.48999999977116,-0.06445159895600677 +58299,291.49499999977115,-0.06444945958811363 +58300,291.49999999977115,-0.06444732136180033 +58301,291.50499999977114,-0.06444518427564015 +58302,291.50999999977114,-0.06444304832820846 +58303,291.51499999977113,-0.06444091351808269 +58304,291.51999999977113,-0.06443877984384236 +58305,291.5249999997711,-0.064436647304069 +58306,291.5299999997711,-0.06443451589734628 +58307,291.5349999997711,-0.06443238562225986 +58308,291.5399999997711,-0.0644302564773975 +58309,291.5449999997711,-0.06442812846134903 +58310,291.5499999997711,-0.06442600157270628 +58311,291.5549999997711,-0.06442387581006317 +58312,291.5599999997711,-0.06442175117201566 +58313,291.5649999997711,-0.06441962765716173 +58314,291.5699999997711,-0.06441750526410146 +58315,291.5749999997711,-0.0644153839914369 +58316,291.5799999997711,-0.06441326383777218 +58317,291.58499999977107,-0.06441114480171345 +58318,291.58999999977107,-0.06440902688186888 +58319,291.59499999977106,-0.0644069100768487 +58320,291.59999999977106,-0.06440479438526515 +58321,291.60499999977105,-0.06440267980573247 +58322,291.60999999977105,-0.06440056633686697 +58323,291.61499999977104,-0.06439845397728694 +58324,291.61999999977104,-0.06439634272561268 +58325,291.62499999977103,-0.0643942325804665 +58326,291.62999999977103,-0.06439212354047279 +58327,291.634999999771,-0.06439001560425785 +58328,291.639999999771,-0.06438790877045004 +58329,291.644999999771,-0.06438580303767971 +58330,291.649999999771,-0.0643836984045792 +58331,291.654999999771,-0.06438159486978287 +58332,291.659999999771,-0.06437949243192706 +58333,291.664999999771,-0.06437739108965009 +58334,291.669999999771,-0.06437529084159227 +58335,291.674999999771,-0.06437319168639591 +58336,291.679999999771,-0.06437109362270531 +58337,291.684999999771,-0.0643689966491667 +58338,291.689999999771,-0.06436690076442839 +58339,291.69499999977097,-0.06436480596714053 +58340,291.69999999977097,-0.06436271225595536 +58341,291.70499999977096,-0.06436061962952702 +58342,291.70999999977096,-0.06435852808651166 +58343,291.71499999977095,-0.06435643762556735 +58344,291.71999999977095,-0.06435434824535417 +58345,291.72499999977094,-0.06435225994453414 +58346,291.72999999977094,-0.06435017272177122 +58347,291.73499999977093,-0.06434808657573134 +58348,291.73999999977093,-0.06434600150508236 +58349,291.7449999997709,-0.06434391750849415 +58350,291.7499999997709,-0.06434183458463845 +58351,291.7549999997709,-0.064339752732189 +58352,291.7599999997709,-0.06433767194982144 +58353,291.7649999997709,-0.0643355922362134 +58354,291.7699999997709,-0.06433351359004437 +58355,291.7749999997709,-0.06433143600999584 +58356,291.7799999997709,-0.06432935949475121 +58357,291.7849999997709,-0.06432728404299581 +58358,291.7899999997709,-0.0643252096534169 +58359,291.7949999997709,-0.06432313632470363 +58360,291.7999999997709,-0.06432106405554709 +58361,291.80499999977087,-0.06431899284464034 +58362,291.80999999977087,-0.06431692269067825 +58363,291.81499999977086,-0.06431485359235771 +58364,291.81999999977086,-0.06431278554837744 +58365,291.82499999977085,-0.06431071855743811 +58366,291.82999999977085,-0.06430865261824228 +58367,291.83499999977084,-0.06430658772949441 +58368,291.83999999977084,-0.06430452388990088 +58369,291.84499999977083,-0.06430246109816994 +58370,291.84999999977083,-0.06430039935301174 +58371,291.8549999997708,-0.06429833865313835 +58372,291.8599999997708,-0.06429627899726369 +58373,291.8649999997708,-0.0642942203841036 +58374,291.8699999997708,-0.06429216281237578 +58375,291.8749999997708,-0.06429010628079981 +58376,291.8799999997708,-0.0642880507880972 +58377,291.8849999997708,-0.06428599633299126 +58378,291.8899999997708,-0.06428394291420723 +58379,291.8949999997708,-0.0642818905304722 +58380,291.8999999997708,-0.06427983918051512 +58381,291.9049999997708,-0.06427778886306684 +58382,291.9099999997708,-0.06427573957686004 +58383,291.91499999977077,-0.06427369132062928 +58384,291.91999999977077,-0.06427164409311097 +58385,291.92499999977076,-0.06426959789304337 +58386,291.92999999977076,-0.06426755271916662 +58387,291.93499999977075,-0.06426550857022269 +58388,291.93999999977075,-0.06426346544495541 +58389,291.94499999977074,-0.06426142334211045 +58390,291.94999999977074,-0.0642593822604353 +58391,291.95499999977073,-0.06425734219867936 +58392,291.95999999977073,-0.06425530315559377 +58393,291.9649999997707,-0.06425326512993162 +58394,291.9699999997707,-0.06425122812044774 +58395,291.9749999997707,-0.06424919212589882 +58396,291.9799999997707,-0.0642471571450434 +58397,291.9849999997707,-0.06424512317664181 +58398,291.9899999997707,-0.06424309021945625 +58399,291.9949999997707,-0.06424105827225071 +58400,291.9999999997707,-0.064239027333791 +58401,292.0049999997707,-0.06423699740284475 +58402,292.0099999997707,-0.06423496847818141 +58403,292.0149999997707,-0.06423294055857225 +58404,292.0199999997707,-0.0642309136427903 +58405,292.02499999977067,-0.06422888772961047 +58406,292.02999999977067,-0.0642268628178094 +58407,292.03499999977066,-0.06422483890616561 +58408,292.03999999977066,-0.06422281599345932 +58409,292.04499999977065,-0.06422079407847266 +58410,292.04999999977065,-0.06421877315998946 +58411,292.05499999977064,-0.06421675323679539 +58412,292.05999999977064,-0.06421473430767789 +58413,292.06499999977063,-0.0642127163714262 +58414,292.06999999977063,-0.06421069942683134 +58415,292.0749999997706,-0.06420868347268611 +58416,292.0799999997706,-0.0642066685077851 +58417,292.0849999997706,-0.06420465453092464 +58418,292.0899999997706,-0.0642026415409029 +58419,292.0949999997706,-0.06420062953651973 +58420,292.0999999997706,-0.06419861851657685 +58421,292.1049999997706,-0.06419660847987767 +58422,292.1099999997706,-0.06419459942522741 +58423,292.1149999997706,-0.06419259135143304 +58424,292.1199999997706,-0.06419058425730327 +58425,292.1249999997706,-0.06418857814164859 +58426,292.1299999997706,-0.06418657300328125 +58427,292.13499999977057,-0.06418456884101521 +58428,292.13999999977057,-0.06418256565366624 +58429,292.14499999977056,-0.06418056344005182 +58430,292.14999999977056,-0.06417856219899121 +58431,292.15499999977055,-0.06417656192930533 +58432,292.15999999977055,-0.06417456262981695 +58433,292.16499999977054,-0.0641725642993505 +58434,292.16999999977054,-0.06417056693673218 +58435,292.17499999977053,-0.06416857054078991 +58436,292.17999999977053,-0.06416657511035334 +58437,292.1849999997705,-0.06416458064425386 +58438,292.1899999997705,-0.0641625871413246 +58439,292.1949999997705,-0.06416059460040036 +58440,292.1999999997705,-0.06415860302031771 +58441,292.2049999997705,-0.06415661239991494 +58442,292.2099999997705,-0.064154622738032 +58443,292.2149999997705,-0.06415263403351064 +58444,292.2199999997705,-0.06415064628519425 +58445,292.2249999997705,-0.06414865949192794 +58446,292.2299999997705,-0.06414667365255859 +58447,292.2349999997705,-0.06414468876593471 +58448,292.2399999997705,-0.06414270483090652 +58449,292.24499999977047,-0.06414072184632601 +58450,292.24999999977047,-0.06413873981104676 +58451,292.25499999977046,-0.06413675872392414 +58452,292.25999999977046,-0.06413477858381517 +58453,292.26499999977045,-0.06413279938957855 +58454,292.26999999977045,-0.0641308211400747 +58455,292.27499999977044,-0.06412884383416571 +58456,292.27999999977044,-0.06412686747071535 +58457,292.28499999977043,-0.06412489204858905 +58458,292.28999999977043,-0.06412291756665398 +58459,292.2949999997704,-0.06412094402377892 +58460,292.2999999997704,-0.06411897141883437 +58461,292.3049999997704,-0.06411699975069247 +58462,292.3099999997704,-0.06411502901822708 +58463,292.3149999997704,-0.06411305922031364 +58464,292.3199999997704,-0.06411109035582935 +58465,292.3249999997704,-0.064109122423653 +58466,292.3299999997704,-0.06410715542266508 +58467,292.3349999997704,-0.06410518935174774 +58468,292.3399999997704,-0.06410322420978476 +58469,292.3449999997704,-0.06410125999566157 +58470,292.3499999997704,-0.06409929670826531 +58471,292.35499999977037,-0.06409733434648465 +58472,292.35999999977037,-0.06409537290921004 +58473,292.36499999977036,-0.0640934123953335 +58474,292.36999999977036,-0.06409145280374871 +58475,292.37499999977035,-0.06408949413335097 +58476,292.37999999977035,-0.06408753638303724 +58477,292.38499999977034,-0.06408557955170611 +58478,292.38999999977034,-0.0640836236382578 +58479,292.39499999977033,-0.06408166864159416 +58480,292.39999999977033,-0.06407971456061867 +58481,292.4049999997703,-0.06407776139423642 +58482,292.4099999997703,-0.06407580914135415 +58483,292.4149999997703,-0.0640738578008802 +58484,292.4199999997703,-0.06407190737172452 +58485,292.4249999997703,-0.06406995785279872 +58486,292.4299999997703,-0.06406800924301599 +58487,292.4349999997703,-0.06406606154129114 +58488,292.4399999997703,-0.0640641147465406 +58489,292.4449999997703,-0.06406216885768237 +58490,292.4499999997703,-0.06406022387363608 +58491,292.4549999997703,-0.06405827979332297 +58492,292.4599999997703,-0.06405633661566588 +58493,292.46499999977027,-0.06405439433958925 +58494,292.46999999977027,-0.0640524529640191 +58495,292.47499999977026,-0.06405051248788304 +58496,292.47999999977026,-0.0640485729101103 +58497,292.48499999977025,-0.0640466342296317 +58498,292.48999999977025,-0.06404469644537959 +58499,292.49499999977024,-0.06404275955628796 +58500,292.49999999977024,-0.06404082356129238 +58501,292.50499999977023,-0.06403888845932999 +58502,292.50999999977023,-0.0640369542493395 +58503,292.5149999997702,-0.0640350209302612 +58504,292.5199999997702,-0.06403308850103696 +58505,292.5249999997702,-0.06403115696061022 +58506,292.5299999997702,-0.06402922630792598 +58507,292.5349999997702,-0.06402729654193083 +58508,292.5399999997702,-0.0640253676615729 +58509,292.5449999997702,-0.06402343966580187 +58510,292.5499999997702,-0.06402151255356904 +58511,292.5549999997702,-0.06401958632382722 +58512,292.5599999997702,-0.06401766097553076 +58513,292.5649999997702,-0.06401573650763562 +58514,292.5699999997702,-0.06401381291909929 +58515,292.57499999977017,-0.06401189020888078 +58516,292.57999999977017,-0.06400996837594065 +58517,292.58499999977016,-0.06400804741924108 +58518,292.58999999977016,-0.0640061273377457 +58519,292.59499999977015,-0.06400420813041971 +58520,292.59999999977015,-0.06400228979622989 +58521,292.60499999977014,-0.06400037233414449 +58522,292.60999999977014,-0.06399845574313334 +58523,292.61499999977013,-0.06399654002216779 +58524,292.61999999977013,-0.0639946251702207 +58525,292.6249999997701,-0.06399271118626651 +58526,292.6299999997701,-0.06399079806928112 +58527,292.6349999997701,-0.06398888581824201 +58528,292.6399999997701,-0.06398697443212814 +58529,292.6449999997701,-0.06398506390992001 +58530,292.6499999997701,-0.06398315425059962 +58531,292.6549999997701,-0.06398124545315052 +58532,292.6599999997701,-0.06397933751655774 +58533,292.6649999997701,-0.0639774304398078 +58534,292.6699999997701,-0.0639755242218888 +58535,292.6749999997701,-0.06397361886179029 +58536,292.6799999997701,-0.06397171435850332 +58537,292.68499999977007,-0.06396981071102047 +58538,292.68999999977007,-0.06396790791833581 +58539,292.69499999977006,-0.06396600597944492 +58540,292.69999999977006,-0.06396410489334482 +58541,292.70499999977005,-0.06396220465903411 +58542,292.70999999977005,-0.06396030527551283 +58543,292.71499999977004,-0.06395840674178248 +58544,292.71999999977004,-0.06395650905684612 +58545,292.72499999977003,-0.06395461221970823 +58546,292.72999999977003,-0.06395271622937482 +58547,292.73499999977,-0.06395082108485334 +58548,292.73999999977,-0.06394892678515274 +58549,292.74499999977,-0.06394703332928346 +58550,292.74999999977,-0.06394514071625738 +58551,292.75499999977,-0.0639432489450879 +58552,292.75999999977,-0.06394135801478983 +58553,292.76499999977,-0.06393946792437949 +58554,292.76999999977,-0.06393757867287465 +58555,292.77499999977,-0.06393569025929456 +58556,292.77999999977,-0.0639338026826599 +58557,292.78499999977,-0.06393191594199284 +58558,292.78999999977,-0.063930030036317 +58559,292.79499999976997,-0.06392814496465744 +58560,292.79999999976997,-0.06392626072604071 +58561,292.80499999976996,-0.06392437731949475 +58562,292.80999999976996,-0.063922494744049 +58563,292.81499999976995,-0.06392061299873435 +58564,292.81999999976995,-0.06391873208258307 +58565,292.82499999976994,-0.06391685199462897 +58566,292.82999999976994,-0.06391497273390724 +58567,292.83499999976993,-0.06391309429945449 +58568,292.83999999976993,-0.06391121669030882 +58569,292.8449999997699,-0.06390933990550975 +58570,292.8499999997699,-0.06390746394409819 +58571,292.8549999997699,-0.06390558880511654 +58572,292.8599999997699,-0.06390371448760859 +58573,292.8649999997699,-0.06390184099061959 +58574,292.8699999997699,-0.06389996831319616 +58575,292.8749999997699,-0.0638980964543864 +58576,292.8799999997699,-0.0638962254132398 +58577,292.8849999997699,-0.06389435518880728 +58578,292.8899999997699,-0.06389248578014113 +58579,292.8949999997699,-0.06389061718629513 +58580,292.8999999997699,-0.06388874940632444 +58581,292.90499999976987,-0.06388688243928561 +58582,292.90999999976987,-0.06388501628423662 +58583,292.91499999976986,-0.06388315094023686 +58584,292.91999999976986,-0.0638812864063471 +58585,292.92499999976985,-0.06387942268162952 +58586,292.92999999976985,-0.06387755976514772 +58587,292.93499999976984,-0.06387569765596669 +58588,292.93999999976984,-0.0638738363531528 +58589,292.94499999976983,-0.06387197585577381 +58590,292.94999999976983,-0.06387011616289891 +58591,292.9549999997698,-0.06386825727359864 +58592,292.9599999997698,-0.06386639918694496 +58593,292.9649999997698,-0.06386454190201118 +58594,292.9699999997698,-0.06386268541787203 +58595,292.9749999997698,-0.0638608297336036 +58596,292.9799999997698,-0.06385897484828336 +58597,292.9849999997698,-0.06385712076099016 +58598,292.9899999997698,-0.06385526747080424 +58599,292.9949999997698,-0.0638534149768072 +58600,292.9999999997698,-0.06385156327808202 +58601,293.0049999997698,-0.06384971237371304 +58602,293.0099999997698,-0.06384786226278596 +58603,293.01499999976977,-0.06384601294438788 +58604,293.01999999976977,-0.06384416441760724 +58605,293.02499999976976,-0.06384231668153383 +58606,293.02999999976976,-0.06384046973525884 +58607,293.03499999976975,-0.06383862357787477 +58608,293.03999999976975,-0.06383677820847553 +58609,293.04499999976974,-0.06383493362615632 +58610,293.04999999976974,-0.06383308983001375 +58611,293.05499999976973,-0.06383124681914575 +58612,293.05999999976973,-0.0638294045926516 +58613,293.0649999997697,-0.06382756314963195 +58614,293.0699999997697,-0.06382572248918875 +58615,293.0749999997697,-0.06382388261042535 +58616,293.0799999997697,-0.06382204351244637 +58617,293.0849999997697,-0.06382020519435784 +58618,293.0899999997697,-0.06381836765526708 +58619,293.0949999997697,-0.06381653089428277 +58620,293.0999999997697,-0.0638146949105149 +58621,293.1049999997697,-0.06381285970307482 +58622,293.1099999997697,-0.06381102527107518 +58623,293.1149999997697,-0.06380919161362998 +58624,293.1199999997697,-0.06380735872985452 +58625,293.12499999976967,-0.06380552661886543 +58626,293.12999999976967,-0.06380369527978069 +58627,293.13499999976966,-0.06380186471171959 +58628,293.13999999976966,-0.06380003491380269 +58629,293.14499999976965,-0.06379820588515193 +58630,293.14999999976965,-0.06379637762489053 +58631,293.15499999976964,-0.063794550132143 +58632,293.15999999976964,-0.06379272340603523 +58633,293.16499999976963,-0.06379089744569434 +58634,293.16999999976963,-0.06378907225024881 +58635,293.1749999997696,-0.06378724781882839 +58636,293.1799999997696,-0.06378542415056417 +58637,293.1849999997696,-0.0637836012445885 +58638,293.1899999997696,-0.06378177910003505 +58639,293.1949999997696,-0.06377995771603877 +58640,293.1999999997696,-0.06377813709173592 +58641,293.2049999997696,-0.06377631722626409 +58642,293.2099999997696,-0.06377449811876207 +58643,293.2149999997696,-0.06377267976837002 +58644,293.2199999997696,-0.06377086217422934 +58645,293.2249999997696,-0.06376904533548275 +58646,293.2299999997696,-0.06376722925127422 +58647,293.23499999976957,-0.06376541392074903 +58648,293.23999999976957,-0.06376359934305371 +58649,293.24499999976956,-0.0637617855173361 +58650,293.24999999976956,-0.06375997244274531 +58651,293.25499999976955,-0.06375816011843169 +58652,293.25999999976955,-0.06375634854354689 +58653,293.26499999976954,-0.06375453771724385 +58654,293.26999999976954,-0.06375272763867673 +58655,293.27499999976953,-0.063750918307001 +58656,293.27999999976953,-0.06374910972137338 +58657,293.2849999997695,-0.06374730188095183 +58658,293.2899999997695,-0.06374549478489562 +58659,293.2949999997695,-0.06374368843236522 +58660,293.2999999997695,-0.06374188282252241 +58661,293.3049999997695,-0.06374007795453021 +58662,293.3099999997695,-0.06373827382755287 +58663,293.3149999997695,-0.06373647044075592 +58664,293.3199999997695,-0.06373466779330614 +58665,293.3249999997695,-0.06373286588437152 +58666,293.3299999997695,-0.06373106471312136 +58667,293.3349999997695,-0.06372926427872613 +58668,293.3399999997695,-0.06372746458035762 +58669,293.34499999976947,-0.06372566561718881 +58670,293.34999999976947,-0.06372386738839393 +58671,293.35499999976946,-0.06372206989314846 +58672,293.35999999976946,-0.0637202731306291 +58673,293.36499999976945,-0.06371847710001377 +58674,293.36999999976945,-0.06371668180048168 +58675,293.37499999976944,-0.06371488723121321 +58676,293.37999999976944,-0.06371309339138999 +58677,293.38499999976943,-0.06371130028019488 +58678,293.38999999976943,-0.06370950789681196 +58679,293.3949999997694,-0.06370771624042654 +58680,293.3999999997694,-0.06370592531022515 +58681,293.4049999997694,-0.0637041351053955 +58682,293.4099999997694,-0.06370234562512661 +58683,293.4149999997694,-0.06370055686860863 +58684,293.4199999997694,-0.06369876883503295 +58685,293.4249999997694,-0.06369698152359218 +58686,293.4299999997694,-0.06369519493348014 +58687,293.4349999997694,-0.06369340906389186 +58688,293.4399999997694,-0.06369162391402354 +58689,293.4449999997694,-0.06368983948307265 +58690,293.4499999997694,-0.06368805577023783 +58691,293.45499999976937,-0.0636862727747189 +58692,293.45999999976937,-0.06368449049571694 +58693,293.46499999976936,-0.06368270893243413 +58694,293.46999999976936,-0.06368092808407397 +58695,293.47499999976935,-0.06367914794984106 +58696,293.47999999976935,-0.06367736852894122 +58697,293.48499999976934,-0.06367558982058147 +58698,293.48999999976934,-0.06367381182397001 +58699,293.49499999976933,-0.06367203453831626 +58700,293.49999999976933,-0.06367025796283077 +58701,293.5049999997693,-0.0636684820967253 +58702,293.5099999997693,-0.06366670693921282 +58703,293.5149999997693,-0.06366493248950744 +58704,293.5199999997693,-0.06366315874682446 +58705,293.5249999997693,-0.06366138571038038 +58706,293.5299999997693,-0.06365961337939283 +58707,293.5349999997693,-0.06365784175308066 +58708,293.5399999997693,-0.06365607083066388 +58709,293.5449999997693,-0.06365430061136364 +58710,293.5499999997693,-0.06365253109440229 +58711,293.5549999997693,-0.06365076227900336 +58712,293.5599999997693,-0.0636489941643915 +58713,293.56499999976927,-0.06364722674979255 +58714,293.56999999976927,-0.06364546003443351 +58715,293.57499999976926,-0.06364369401754257 +58716,293.57999999976926,-0.06364192869834899 +58717,293.58499999976925,-0.06364016407608328 +58718,293.58999999976925,-0.06363840014997707 +58719,293.59499999976924,-0.06363663691926313 +58720,293.59999999976924,-0.06363487438317542 +58721,293.60499999976923,-0.06363311254094899 +58722,293.60999999976923,-0.06363135139182008 +58723,293.6149999997692,-0.06362959093502606 +58724,293.6199999997692,-0.06362783116980547 +58725,293.6249999997692,-0.06362607209539799 +58726,293.6299999997692,-0.06362431371104439 +58727,293.6349999997692,-0.06362255601598665 +58728,293.6399999997692,-0.06362079900946782 +58729,293.6449999997692,-0.06361904269073214 +58730,293.6499999997692,-0.06361728705902497 +58731,293.6549999997692,-0.0636155321135928 +58732,293.6599999997692,-0.06361377785368325 +58733,293.6649999997692,-0.06361202427854505 +58734,293.6699999997692,-0.0636102713874281 +58735,293.67499999976917,-0.06360851917958339 +58736,293.67999999976917,-0.06360676765426307 +58737,293.68499999976916,-0.06360501681072035 +58738,293.68999999976916,-0.06360326664820964 +58739,293.69499999976915,-0.06360151716598643 +58740,293.69999999976915,-0.0635997683633073 +58741,293.70499999976914,-0.06359802023943001 +58742,293.70999999976914,-0.06359627279361338 +58743,293.71499999976913,-0.06359452602511738 +58744,293.71999999976913,-0.06359277993320306 +58745,293.7249999997691,-0.06359103451713262 +58746,293.7299999997691,-0.06358928977616932 +58747,293.7349999997691,-0.06358754570957754 +58748,293.7399999997691,-0.06358580231662281 +58749,293.7449999997691,-0.06358405959657171 +58750,293.7499999997691,-0.06358231754869194 +58751,293.7549999997691,-0.0635805761722523 +58752,293.7599999997691,-0.06357883546652268 +58753,293.7649999997691,-0.0635770954307741 +58754,293.7699999997691,-0.06357535606427862 +58755,293.7749999997691,-0.06357361736630944 +58756,293.7799999997691,-0.06357187933614082 +58757,293.78499999976907,-0.06357014197304815 +58758,293.78999999976907,-0.06356840527630787 +58759,293.79499999976906,-0.06356666924519752 +58760,293.79999999976906,-0.06356493387899571 +58761,293.80499999976905,-0.0635631991769822 +58762,293.80999999976905,-0.06356146513843773 +58763,293.81499999976904,-0.06355973176264419 +58764,293.81999999976904,-0.06355799904888454 +58765,293.82499999976903,-0.0635562669964428 +58766,293.82999999976903,-0.06355453560460407 +58767,293.834999999769,-0.06355280487265454 +58768,293.839999999769,-0.06355107479988145 +58769,293.844999999769,-0.06354934538557314 +58770,293.849999999769,-0.06354761662901899 +58771,293.854999999769,-0.06354588852950946 +58772,293.859999999769,-0.06354416108633608 +58773,293.864999999769,-0.06354243429879143 +58774,293.869999999769,-0.06354070816616918 +58775,293.874999999769,-0.06353898268776403 +58776,293.879999999769,-0.06353725786287177 +58777,293.884999999769,-0.06353553369078921 +58778,293.889999999769,-0.06353381017081426 +58779,293.89499999976897,-0.06353208730224585 +58780,293.89999999976897,-0.063530365084384 +58781,293.90499999976896,-0.06352864351652975 +58782,293.90999999976896,-0.06352692259798519 +58783,293.91499999976895,-0.06352520232805348 +58784,293.91999999976895,-0.06352348270603882 +58785,293.92499999976894,-0.06352176373124645 +58786,293.92999999976894,-0.06352004540298266 +58787,293.93499999976893,-0.06351832772055478 +58788,293.93999999976893,-0.06351661068327118 +58789,293.9449999997689,-0.06351489429044128 +58790,293.9499999997689,-0.06351317854137552 +58791,293.9549999997689,-0.06351146343538537 +58792,293.9599999997689,-0.06350974897178338 +58793,293.9649999997689,-0.06350803514988308 +58794,293.9699999997689,-0.0635063219689991 +58795,293.9749999997689,-0.06350460942844699 +58796,293.9799999997689,-0.06350289752754344 +58797,293.9849999997689,-0.06350118626560611 +58798,293.9899999997689,-0.0634994756419537 +58799,293.9949999997689,-0.06349776565590592 +58800,293.9999999997689,-0.06349605630678354 +58801,294.00499999976887,-0.06349434759390832 +58802,294.00999999976887,-0.06349263951660304 +58803,294.01499999976886,-0.06349093207419149 +58804,294.01999999976886,-0.06348922526599851 +58805,294.02499999976885,-0.06348751909134993 +58806,294.02999999976885,-0.06348581354957261 +58807,294.03499999976884,-0.0634841086399944 +58808,294.03999999976884,-0.06348240436194418 +58809,294.04499999976883,-0.06348070071475181 +58810,294.04999999976883,-0.06347899769774822 +58811,294.0549999997688,-0.06347729531026526 +58812,294.0599999997688,-0.06347559355163587 +58813,294.0649999997688,-0.06347389242119393 +58814,294.0699999997688,-0.06347219191827433 +58815,294.0749999997688,-0.06347049204221301 +58816,294.0799999997688,-0.06346879279234685 +58817,294.0849999997688,-0.06346709416801374 +58818,294.0899999997688,-0.0634653961685526 +58819,294.0949999997688,-0.06346369879330331 +58820,294.0999999997688,-0.06346200204160675 +58821,294.1049999997688,-0.0634603059128048 +58822,294.1099999997688,-0.06345861040624032 +58823,294.11499999976877,-0.06345691552125715 +58824,294.11999999976877,-0.06345522125720014 +58825,294.12499999976876,-0.06345352761341512 +58826,294.12999999976876,-0.06345183458924888 +58827,294.13499999976875,-0.06345014218404925 +58828,294.13999999976875,-0.06344845039716493 +58829,294.14499999976874,-0.06344675922794574 +58830,294.14999999976874,-0.06344506867574236 +58831,294.15499999976873,-0.06344337873990652 +58832,294.15999999976873,-0.06344168941979089 +58833,294.1649999997687,-0.06344000071474912 +58834,294.1699999997687,-0.06343831262413584 +58835,294.1749999997687,-0.06343662514730665 +58836,294.1799999997687,-0.0634349382836181 +58837,294.1849999997687,-0.06343325203242774 +58838,294.1899999997687,-0.06343156639309405 +58839,294.1949999997687,-0.0634298813649765 +58840,294.1999999997687,-0.06342819694743553 +58841,294.2049999997687,-0.06342651313983251 +58842,294.2099999997687,-0.0634248299415298 +58843,294.2149999997687,-0.06342314735189071 +58844,294.2199999997687,-0.0634214653702795 +58845,294.22499999976867,-0.06341978399606138 +58846,294.22999999976867,-0.06341810322860256 +58847,294.23499999976866,-0.06341642306727016 +58848,294.23999999976866,-0.06341474351143225 +58849,294.24499999976865,-0.06341306456045787 +58850,294.24999999976865,-0.063411386213717 +58851,294.25499999976864,-0.06340970847058056 +58852,294.25999999976864,-0.06340803133042043 +58853,294.26499999976863,-0.06340635479260945 +58854,294.26999999976863,-0.06340467885652136 +58855,294.2749999997686,-0.06340300352153087 +58856,294.2799999997686,-0.06340132878701366 +58857,294.2849999997686,-0.06339965465234626 +58858,294.2899999997686,-0.06339798111690623 +58859,294.2949999997686,-0.06339630818007201 +58860,294.2999999997686,-0.06339463584122303 +58861,294.3049999997686,-0.06339296409973957 +58862,294.3099999997686,-0.06339129295500293 +58863,294.3149999997686,-0.06338962240639527 +58864,294.3199999997686,-0.06338795245329974 +58865,294.3249999997686,-0.06338628309510039 +58866,294.3299999997686,-0.06338461433118216 +58867,294.33499999976857,-0.06338294616093096 +58868,294.33999999976857,-0.06338127858373363 +58869,294.34499999976856,-0.06337961159897791 +58870,294.34999999976856,-0.06337794520605247 +58871,294.35499999976855,-0.0633762794043469 +58872,294.35999999976855,-0.06337461419325169 +58873,294.36499999976854,-0.06337294957215828 +58874,294.36999999976854,-0.06337128554045898 +58875,294.37499999976853,-0.06336962209754708 +58876,294.37999999976853,-0.06336795924281671 +58877,294.3849999997685,-0.06336629697566297 +58878,294.3899999997685,-0.06336463529548184 +58879,294.3949999997685,-0.0633629742016702 +58880,294.3999999997685,-0.06336131369362588 +58881,294.4049999997685,-0.06335965377074755 +58882,294.4099999997685,-0.06335799443243487 +58883,294.4149999997685,-0.06335633567808831 +58884,294.4199999997685,-0.0633546775071093 +58885,294.4249999997685,-0.06335301991890017 +58886,294.4299999997685,-0.06335136291286414 +58887,294.4349999997685,-0.0633497064884053 +58888,294.4399999997685,-0.06334805064492867 +58889,294.44499999976847,-0.06334639538184016 +58890,294.44999999976847,-0.06334474069854658 +58891,294.45499999976846,-0.0633430865944556 +58892,294.45999999976846,-0.06334143306897583 +58893,294.46499999976845,-0.06333978012151673 +58894,294.46999999976845,-0.06333812775148866 +58895,294.47499999976844,-0.06333647595830286 +58896,294.47999999976844,-0.06333482474137148 +58897,294.48499999976843,-0.06333317410010753 +58898,294.48999999976843,-0.0633315240339249 +58899,294.4949999997684,-0.0633298745422384 +58900,294.4999999997684,-0.06332822562446368 +58901,294.5049999997684,-0.06332657728001727 +58902,294.5099999997684,-0.06332492950831659 +58903,294.5149999997684,-0.06332328230877995 +58904,294.5199999997684,-0.06332163568082654 +58905,294.5249999997684,-0.06331998962387637 +58906,294.5299999997684,-0.06331834413735037 +58907,294.5349999997684,-0.06331669922067033 +58908,294.5399999997684,-0.06331505487325892 +58909,294.5449999997684,-0.06331341109453965 +58910,294.5499999997684,-0.06331176788393691 +58911,294.55499999976837,-0.06331012524087598 +58912,294.55999999976837,-0.06330848316478298 +58913,294.56499999976836,-0.06330684165508488 +58914,294.56999999976836,-0.06330520071120956 +58915,294.57499999976835,-0.06330356033258569 +58916,294.57999999976835,-0.06330192051864288 +58917,294.58499999976834,-0.06330028126881153 +58918,294.58999999976834,-0.06329864258252295 +58919,294.59499999976833,-0.06329700445920926 +58920,294.59999999976833,-0.06329536689830347 +58921,294.6049999997683,-0.06329372989923941 +58922,294.6099999997683,-0.0632920934614518 +58923,294.6149999997683,-0.06329045758437617 +58924,294.6199999997683,-0.06328882226744893 +58925,294.6249999997683,-0.06328718751010733 +58926,294.6299999997683,-0.06328555331178946 +58927,294.6349999997683,-0.06328391967193424 +58928,294.6399999997683,-0.06328228658998147 +58929,294.6449999997683,-0.06328065406537177 +58930,294.6499999997683,-0.0632790220975466 +58931,294.6549999997683,-0.06327739068594829 +58932,294.6599999997683,-0.06327575983001997 +58933,294.66499999976827,-0.06327412952920561 +58934,294.66999999976827,-0.06327249978295003 +58935,294.67499999976826,-0.06327087059069891 +58936,294.67999999976826,-0.0632692419518987 +58937,294.68499999976825,-0.06326761386599676 +58938,294.68999999976825,-0.06326598633244124 +58939,294.69499999976824,-0.06326435935068107 +58940,294.69999999976824,-0.06326273292016611 +58941,294.70499999976823,-0.063261107040347 +58942,294.70999999976823,-0.06325948171067518 +58943,294.7149999997682,-0.06325785693060294 +58944,294.7199999997682,-0.06325623269958341 +58945,294.7249999997682,-0.06325460901707051 +58946,294.7299999997682,-0.063252985882519 +58947,294.7349999997682,-0.06325136329538447 +58948,294.7399999997682,-0.06324974125512328 +58949,294.7449999997682,-0.06324811976119268 +58950,294.7499999997682,-0.0632464988130507 +58951,294.7549999997682,-0.06324487841015616 +58952,294.7599999997682,-0.06324325855196873 +58953,294.7649999997682,-0.06324163923794889 +58954,294.7699999997682,-0.06324002046755792 +58955,294.77499999976817,-0.06323840224025788 +58956,294.77999999976817,-0.06323678455551172 +58957,294.78499999976816,-0.06323516741278311 +58958,294.78999999976816,-0.0632335508115366 +58959,294.79499999976815,-0.06323193475123749 +58960,294.79999999976815,-0.06323031923135192 +58961,294.80499999976814,-0.06322870425134679 +58962,294.80999999976814,-0.06322708981068985 +58963,294.81499999976813,-0.06322547590884964 +58964,294.81999999976813,-0.06322386254529547 +58965,294.8249999997681,-0.06322224971949746 +58966,294.8299999997681,-0.06322063743092654 +58967,294.8349999997681,-0.06321902567905445 +58968,294.8399999997681,-0.06321741446335369 +58969,294.8449999997681,-0.06321580378329758 +58970,294.8499999997681,-0.06321419363836019 +58971,294.8549999997681,-0.06321258402801642 +58972,294.8599999997681,-0.06321097495174198 +58973,294.8649999997681,-0.06320936640901328 +58974,294.8699999997681,-0.06320775839930763 +58975,294.8749999997681,-0.06320615092210305 +58976,294.8799999997681,-0.06320454397687836 +58977,294.88499999976807,-0.06320293756311317 +58978,294.88999999976807,-0.06320133168028787 +58979,294.89499999976806,-0.06319972632788362 +58980,294.89999999976806,-0.06319812150538241 +58981,294.90499999976805,-0.06319651721226696 +58982,294.90999999976805,-0.06319491344802075 +58983,294.91499999976804,-0.0631933102121281 +58984,294.91999999976804,-0.06319170750407405 +58985,294.92499999976803,-0.06319010532334444 +58986,294.92999999976803,-0.06318850366942587 +58987,294.934999999768,-0.06318690254180574 +58988,294.939999999768,-0.06318530193997218 +58989,294.944999999768,-0.06318370186341413 +58990,294.949999999768,-0.06318210231162126 +58991,294.954999999768,-0.06318050328408405 +58992,294.959999999768,-0.06317890478029368 +58993,294.964999999768,-0.06317730679974216 +58994,294.969999999768,-0.06317570934192226 +58995,294.974999999768,-0.06317411240632745 +58996,294.979999999768,-0.06317251599245204 +58997,294.984999999768,-0.06317092009979103 +58998,294.989999999768,-0.06316932472784025 +58999,294.99499999976797,-0.06316772987609622 +59000,294.99999999976797,-0.06316613554405626 +59001,295.00499999976796,-0.06316454173121844 +59002,295.00999999976796,-0.06316294843708155 +59003,295.01499999976795,-0.0631613556611452 +59004,295.01999999976795,-0.06315976340290966 +59005,295.02499999976794,-0.06315817166187605 +59006,295.02999999976794,-0.06315658043754617 +59007,295.03499999976793,-0.0631549897294226 +59008,295.03999999976793,-0.06315339953700866 +59009,295.0449999997679,-0.0631518098598084 +59010,295.0499999997679,-0.06315022069732665 +59011,295.0549999997679,-0.06314863204906895 +59012,295.0599999997679,-0.06314704391454161 +59013,295.0649999997679,-0.06314545629325168 +59014,295.0699999997679,-0.06314386918470691 +59015,295.0749999997679,-0.06314228258841582 +59016,295.0799999997679,-0.06314069650388769 +59017,295.0849999997679,-0.06313911093063253 +59018,295.0899999997679,-0.06313752586816104 +59019,295.0949999997679,-0.06313594131598468 +59020,295.0999999997679,-0.06313435727361569 +59021,295.10499999976787,-0.06313277374056697 +59022,295.10999999976787,-0.0631311907163522 +59023,295.11499999976786,-0.0631296082004858 +59024,295.11999999976786,-0.06312802619248285 +59025,295.12499999976785,-0.06312644469185924 +59026,295.12999999976785,-0.06312486369813153 +59027,295.13499999976784,-0.06312328321081702 +59028,295.13999999976784,-0.06312170322943378 +59029,295.14499999976783,-0.06312012375350054 +59030,295.14999999976783,-0.06311854478253678 +59031,295.1549999997678,-0.06311696631606273 +59032,295.1599999997678,-0.06311538835359927 +59033,295.1649999997678,-0.06311381089466808 +59034,295.1699999997678,-0.06311223393879149 +59035,295.1749999997678,-0.06311065748549259 +59036,295.1799999997678,-0.06310908153429519 +59037,295.1849999997678,-0.06310750608472376 +59038,295.1899999997678,-0.06310593113630357 +59039,295.1949999997678,-0.06310435668856053 +59040,295.1999999997678,-0.06310278274102128 +59041,295.2049999997678,-0.06310120929321322 +59042,295.2099999997678,-0.06309963634466438 +59043,295.21499999976777,-0.06309806389490355 +59044,295.21999999976777,-0.0630964919434602 +59045,295.22499999976776,-0.06309492048986456 +59046,295.22999999976776,-0.0630933495336475 +59047,295.23499999976775,-0.06309177907434062 +59048,295.23999999976775,-0.06309020911147624 +59049,295.24499999976774,-0.06308863964458736 +59050,295.24999999976774,-0.06308707067320769 +59051,295.25499999976773,-0.06308550219687165 +59052,295.25999999976773,-0.06308393421511432 +59053,295.2649999997677,-0.06308236672747154 +59054,295.2699999997677,-0.06308079973347978 +59055,295.2749999997677,-0.06307923323267627 +59056,295.2799999997677,-0.06307766722459886 +59057,295.2849999997677,-0.06307610170878616 +59058,295.2899999997677,-0.06307453668477747 +59059,295.2949999997677,-0.06307297215211274 +59060,295.2999999997677,-0.06307140811033264 +59061,295.3049999997677,-0.06306984455897852 +59062,295.3099999997677,-0.06306828149759242 +59063,295.3149999997677,-0.06306671892571704 +59064,295.3199999997677,-0.06306515684289583 +59065,295.32499999976767,-0.06306359524867289 +59066,295.32999999976767,-0.06306203414259298 +59067,295.33499999976766,-0.06306047352420158 +59068,295.33999999976766,-0.06305891339304481 +59069,295.34499999976765,-0.06305735374866955 +59070,295.34999999976765,-0.06305579459062328 +59071,295.35499999976764,-0.0630542359184542 +59072,295.35999999976764,-0.06305267773171115 +59073,295.36499999976763,-0.0630511200299437 +59074,295.36999999976763,-0.06304956281270206 +59075,295.3749999997676,-0.06304800607953713 +59076,295.3799999997676,-0.06304644983000048 +59077,295.3849999997676,-0.06304489406364432 +59078,295.3899999997676,-0.06304333878002161 +59079,295.3949999997676,-0.0630417839786859 +59080,295.3999999997676,-0.06304022965919145 +59081,295.4049999997676,-0.06303867582109321 +59082,295.4099999997676,-0.06303712246394673 +59083,295.4149999997676,-0.06303556958730828 +59084,295.4199999997676,-0.0630340171907348 +59085,295.4249999997676,-0.06303246527378385 +59086,295.4299999997676,-0.0630309138360137 +59087,295.43499999976757,-0.06302936287698324 +59088,295.43999999976756,-0.06302781239625206 +59089,295.44499999976756,-0.0630262623933804 +59090,295.44999999976756,-0.06302471286792914 +59091,295.45499999976755,-0.06302316381945985 +59092,295.45999999976755,-0.06302161524753475 +59093,295.46499999976754,-0.06302006715171667 +59094,295.46999999976754,-0.06301851953156914 +59095,295.47499999976753,-0.06301697238665636 +59096,295.47999999976753,-0.06301542571654316 +59097,295.4849999997675,-0.06301387952079501 +59098,295.4899999997675,-0.06301233379897807 +59099,295.4949999997675,-0.06301078855065907 +59100,295.4999999997675,-0.0630092437754055 +59101,295.5049999997675,-0.06300769947278542 +59102,295.5099999997675,-0.06300615564236757 +59103,295.5149999997675,-0.06300461228372133 +59104,295.5199999997675,-0.06300306939641671 +59105,295.5249999997675,-0.06300152698002438 +59106,295.5299999997675,-0.06299998503411565 +59107,295.5349999997675,-0.06299844355826249 +59108,295.5399999997675,-0.06299690255203748 +59109,295.54499999976747,-0.06299536201501386 +59110,295.54999999976746,-0.06299382194676552 +59111,295.55499999976746,-0.06299228234686696 +59112,295.55999999976746,-0.06299074321489333 +59113,295.56499999976745,-0.06298920455042042 +59114,295.56999999976745,-0.06298766635302466 +59115,295.57499999976744,-0.06298612862228312 +59116,295.57999999976744,-0.06298459135777348 +59117,295.58499999976743,-0.06298305455907406 +59118,295.58999999976743,-0.06298151822576384 +59119,295.5949999997674,-0.06297998235742239 +59120,295.5999999997674,-0.06297844695362995 +59121,295.6049999997674,-0.06297691201396734 +59122,295.6099999997674,-0.06297537753801605 +59123,295.6149999997674,-0.06297384352535818 +59124,295.6199999997674,-0.06297230997557647 +59125,295.6249999997674,-0.06297077688825425 +59126,295.6299999997674,-0.06296924426297552 +59127,295.6349999997674,-0.06296771209932489 +59128,295.6399999997674,-0.06296618039688755 +59129,295.6449999997674,-0.06296464915524938 +59130,295.6499999997674,-0.06296311837399682 +59131,295.65499999976737,-0.06296158805271697 +59132,295.65999999976736,-0.06296005819099752 +59133,295.66499999976736,-0.0629585287884268 +59134,295.66999999976736,-0.06295699984459374 +59135,295.67499999976735,-0.0629554713590879 +59136,295.67999999976735,-0.06295394333149945 +59137,295.68499999976734,-0.06295241576141916 +59138,295.68999999976734,-0.06295088864843844 +59139,295.69499999976733,-0.06294936199214927 +59140,295.69999999976733,-0.0629478357921443 +59141,295.7049999997673,-0.06294631004801675 +59142,295.7099999997673,-0.06294478475936041 +59143,295.7149999997673,-0.06294325992576978 +59144,295.7199999997673,-0.06294173554683988 +59145,295.7249999997673,-0.06294021162216637 +59146,295.7299999997673,-0.06293868815134553 +59147,295.7349999997673,-0.06293716513397421 +59148,295.7399999997673,-0.06293564256964987 +59149,295.7449999997673,-0.0629341204579706 +59150,295.7499999997673,-0.06293259879853508 +59151,295.7549999997673,-0.06293107759094256 +59152,295.7599999997673,-0.06292955683479295 +59153,295.76499999976727,-0.06292803652968668 +59154,295.76999999976726,-0.06292651667522485 +59155,295.77499999976726,-0.06292499727100911 +59156,295.77999999976726,-0.06292347831664175 +59157,295.78499999976725,-0.0629219598117256 +59158,295.78999999976725,-0.06292044175586413 +59159,295.79499999976724,-0.06291892414866139 +59160,295.79999999976724,-0.062917406989722 +59161,295.80499999976723,-0.06291589027865119 +59162,295.80999999976723,-0.0629143740150548 +59163,295.8149999997672,-0.06291285819853924 +59164,295.8199999997672,-0.0629113428287115 +59165,295.8249999997672,-0.06290982790517916 +59166,295.8299999997672,-0.06290831342755039 +59167,295.8349999997672,-0.06290679939543398 +59168,295.8399999997672,-0.06290528580843925 +59169,295.8449999997672,-0.06290377266617614 +59170,295.8499999997672,-0.06290225996825516 +59171,295.8549999997672,-0.06290074771428739 +59172,295.8599999997672,-0.06289923590388453 +59173,295.8649999997672,-0.06289772453665883 +59174,295.8699999997672,-0.06289621361222313 +59175,295.87499999976717,-0.06289470313019083 +59176,295.87999999976716,-0.06289319309017591 +59177,295.88499999976716,-0.06289168349179299 +59178,295.88999999976716,-0.06289017433465718 +59179,295.89499999976715,-0.06288866561838423 +59180,295.89999999976715,-0.0628871573425904 +59181,295.90499999976714,-0.0628856495068926 +59182,295.90999999976714,-0.06288414211090823 +59183,295.91499999976713,-0.06288263515425534 +59184,295.91999999976713,-0.06288112863655249 +59185,295.9249999997671,-0.06287962255741886 +59186,295.9299999997671,-0.06287811691647416 +59187,295.9349999997671,-0.06287661171333868 +59188,295.9399999997671,-0.06287510694763329 +59189,295.9449999997671,-0.06287360261897941 +59190,295.9499999997671,-0.06287209872699903 +59191,295.9549999997671,-0.06287059527131471 +59192,295.9599999997671,-0.06286909225154957 +59193,295.9649999997671,-0.06286758966732729 +59194,295.9699999997671,-0.06286608751827213 +59195,295.9749999997671,-0.0628645858040089 +59196,295.9799999997671,-0.06286308452416295 +59197,295.98499999976707,-0.0628615836783602 +59198,295.98999999976706,-0.06286008326622716 +59199,295.99499999976706,-0.06285858328739086 +59200,295.99999999976706,-0.0628570837414789 +59201,296.00499999976705,-0.06285558462811945 +59202,296.00999999976705,-0.0628540859469412 +59203,296.01499999976704,-0.06285258769757343 +59204,296.01999999976704,-0.06285108987964595 +59205,296.02499999976703,-0.06284959249278915 +59206,296.029999999767,-0.06284809553663397 +59207,296.034999999767,-0.06284659901081183 +59208,296.039999999767,-0.06284510291495479 +59209,296.044999999767,-0.06284360724869544 +59210,296.049999999767,-0.06284211201166687 +59211,296.054999999767,-0.06284061720350277 +59212,296.059999999767,-0.06283912282383736 +59213,296.064999999767,-0.06283762887230539 +59214,296.069999999767,-0.06283613534854217 +59215,296.074999999767,-0.06283464225218356 +59216,296.079999999767,-0.06283314958286595 +59217,296.084999999767,-0.0628316573402263 +59218,296.089999999767,-0.06283016552390207 +59219,296.09499999976697,-0.06282867413353127 +59220,296.09999999976696,-0.06282718316875247 +59221,296.10499999976696,-0.06282569262920479 +59222,296.10999999976696,-0.06282420251452785 +59223,296.11499999976695,-0.06282271282436183 +59224,296.11999999976695,-0.06282122355834745 +59225,296.12499999976694,-0.06281973471612594 +59226,296.12999999976694,-0.0628182462973391 +59227,296.13499999976693,-0.06281675830162925 +59228,296.1399999997669,-0.06281527072863924 +59229,296.1449999997669,-0.06281378357801246 +59230,296.1499999997669,-0.0628122968493928 +59231,296.1549999997669,-0.06281081054242474 +59232,296.1599999997669,-0.06280932465675322 +59233,296.1649999997669,-0.06280783919202378 +59234,296.1699999997669,-0.06280635414788244 +59235,296.1749999997669,-0.06280486952397575 +59236,296.1799999997669,-0.06280338531995083 +59237,296.1849999997669,-0.06280190153545527 +59238,296.1899999997669,-0.06280041817013722 +59239,296.1949999997669,-0.06279893522364535 +59240,296.1999999997669,-0.06279745269562884 +59241,296.20499999976687,-0.0627959705857374 +59242,296.20999999976686,-0.06279448889362127 +59243,296.21499999976686,-0.06279300761893118 +59244,296.21999999976686,-0.06279152676131845 +59245,296.22499999976685,-0.06279004632043485 +59246,296.22999999976685,-0.06278856629593267 +59247,296.23499999976684,-0.06278708668746479 +59248,296.23999999976684,-0.0627856074946845 +59249,296.24499999976683,-0.0627841287172457 +59250,296.2499999997668,-0.06278265035480278 +59251,296.2549999997668,-0.06278117240701062 +59252,296.2599999997668,-0.06277969487352462 +59253,296.2649999997668,-0.0627782177540007 +59254,296.2699999997668,-0.06277674104809533 +59255,296.2749999997668,-0.06277526475546541 +59256,296.2799999997668,-0.06277378887576843 +59257,296.2849999997668,-0.06277231340866234 +59258,296.2899999997668,-0.06277083835380562 +59259,296.2949999997668,-0.06276936371085726 +59260,296.2999999997668,-0.06276788947947673 +59261,296.3049999997668,-0.06276641565932405 +59262,296.3099999997668,-0.0627649422500597 +59263,296.31499999976677,-0.06276346925134473 +59264,296.31999999976676,-0.06276199666284063 +59265,296.32499999976676,-0.06276052448420943 +59266,296.32999999976676,-0.06275905271511363 +59267,296.33499999976675,-0.06275758135521627 +59268,296.33999999976675,-0.06275611040418086 +59269,296.34499999976674,-0.06275463986167144 +59270,296.34999999976674,-0.06275316972735252 +59271,296.35499999976673,-0.06275170000088916 +59272,296.3599999997667,-0.06275023068194685 +59273,296.3649999997667,-0.0627487617701916 +59274,296.3699999997667,-0.06274729326528995 +59275,296.3749999997667,-0.06274582516690892 +59276,296.3799999997667,-0.06274435747471599 +59277,296.3849999997667,-0.06274289018837918 +59278,296.3899999997667,-0.06274142330756698 +59279,296.3949999997667,-0.06273995683194837 +59280,296.3999999997667,-0.06273849076119287 +59281,296.4049999997667,-0.06273702509497041 +59282,296.4099999997667,-0.06273555983295147 +59283,296.4149999997667,-0.06273409497480699 +59284,296.4199999997667,-0.06273263052020843 +59285,296.42499999976667,-0.0627311664688277 +59286,296.42999999976666,-0.06272970282033725 +59287,296.43499999976666,-0.06272823957440996 +59288,296.43999999976666,-0.0627267767307192 +59289,296.44499999976665,-0.06272531428893889 +59290,296.44999999976665,-0.06272385224874337 +59291,296.45499999976664,-0.06272239060980749 +59292,296.45999999976664,-0.06272092937180658 +59293,296.46499999976663,-0.06271946853441644 +59294,296.4699999997666,-0.06271800809731336 +59295,296.4749999997666,-0.06271654806017413 +59296,296.4799999997666,-0.06271508842267597 +59297,296.4849999997666,-0.06271362918449663 +59298,296.4899999997666,-0.06271217034531432 +59299,296.4949999997666,-0.06271071190480774 +59300,296.4999999997666,-0.06270925386265604 +59301,296.5049999997666,-0.06270779621853888 +59302,296.5099999997666,-0.06270633897213636 +59303,296.5149999997666,-0.06270488212312905 +59304,296.5199999997666,-0.06270342567119806 +59305,296.5249999997666,-0.06270196961602491 +59306,296.5299999997666,-0.06270051395729162 +59307,296.53499999976657,-0.06269905869468066 +59308,296.53999999976656,-0.06269760382787498 +59309,296.54499999976656,-0.06269614935655804 +59310,296.54999999976656,-0.0626946952804137 +59311,296.55499999976655,-0.06269324159912634 +59312,296.55999999976655,-0.0626917883123808 +59313,296.56499999976654,-0.06269033541986237 +59314,296.56999999976654,-0.06268888292125682 +59315,296.57499999976653,-0.06268743081625039 +59316,296.5799999997665,-0.06268597910452976 +59317,296.5849999997665,-0.06268452778578211 +59318,296.5899999997665,-0.06268307685969507 +59319,296.5949999997665,-0.06268162632595671 +59320,296.5999999997665,-0.06268017618425561 +59321,296.6049999997665,-0.06267872643428078 +59322,296.6099999997665,-0.06267727707572168 +59323,296.6149999997665,-0.06267582810826824 +59324,296.6199999997665,-0.0626743795316109 +59325,296.6249999997665,-0.06267293134544047 +59326,296.6299999997665,-0.06267148354944829 +59327,296.6349999997665,-0.06267003614332613 +59328,296.6399999997665,-0.06266858912676619 +59329,296.64499999976647,-0.06266714249946118 +59330,296.64999999976646,-0.06266569626110423 +59331,296.65499999976646,-0.06266425041138894 +59332,296.65999999976646,-0.06266280495000935 +59333,296.66499999976645,-0.06266135987665995 +59334,296.66999999976645,-0.06265991519103574 +59335,296.67499999976644,-0.06265847089283207 +59336,296.67999999976644,-0.06265702698174483 +59337,296.68499999976643,-0.0626555834574703 +59338,296.6899999997664,-0.06265414031970526 +59339,296.6949999997664,-0.06265269756814693 +59340,296.6999999997664,-0.06265125520249291 +59341,296.7049999997664,-0.06264981322244137 +59342,296.7099999997664,-0.06264837162769081 +59343,296.7149999997664,-0.06264693041794023 +59344,296.7199999997664,-0.06264548959288908 +59345,296.7249999997664,-0.06264404915223724 +59346,296.7299999997664,-0.06264260909568506 +59347,296.7349999997664,-0.0626411694229333 +59348,296.7399999997664,-0.06263973013368317 +59349,296.7449999997664,-0.06263829122763631 +59350,296.7499999997664,-0.06263685270449487 +59351,296.75499999976637,-0.06263541456396135 +59352,296.75999999976636,-0.06263397680573875 +59353,296.76499999976636,-0.06263253942953047 +59354,296.76999999976636,-0.06263110243504039 +59355,296.77499999976635,-0.0626296658219728 +59356,296.77999999976635,-0.06262822959003242 +59357,296.78499999976634,-0.06262679373892444 +59358,296.78999999976634,-0.06262535826835444 +59359,296.79499999976633,-0.06262392317802849 +59360,296.7999999997663,-0.06262248846765306 +59361,296.8049999997663,-0.06262105413693504 +59362,296.8099999997663,-0.0626196201855818 +59363,296.8149999997663,-0.0626181866133011 +59364,296.8199999997663,-0.06261675341980115 +59365,296.8249999997663,-0.06261532060479058 +59366,296.8299999997663,-0.06261388816797848 +59367,296.8349999997663,-0.06261245610907434 +59368,296.8399999997663,-0.0626110244277881 +59369,296.8449999997663,-0.06260959312383009 +59370,296.8499999997663,-0.06260816219691112 +59371,296.8549999997663,-0.06260673164674241 +59372,296.8599999997663,-0.06260530147303556 +59373,296.86499999976627,-0.06260387167550266 +59374,296.86999999976626,-0.0626024422538562 +59375,296.87499999976626,-0.06260101320780909 +59376,296.87999999976626,-0.06259958453707468 +59377,296.88499999976625,-0.0625981562413667 +59378,296.88999999976625,-0.06259672832039938 +59379,296.89499999976624,-0.06259530077388731 +59380,296.89999999976624,-0.0625938736015455 +59381,296.90499999976623,-0.0625924468030894 +59382,296.9099999997662,-0.0625910203782349 +59383,296.9149999997662,-0.06258959432669828 +59384,296.9199999997662,-0.06258816864819623 +59385,296.9249999997662,-0.06258674334244589 +59386,296.9299999997662,-0.0625853184091648 +59387,296.9349999997662,-0.06258389384807092 +59388,296.9399999997662,-0.0625824696588826 +59389,296.9449999997662,-0.06258104584131867 +59390,296.9499999997662,-0.0625796223950983 +59391,296.9549999997662,-0.06257819931994112 +59392,296.9599999997662,-0.06257677661556717 +59393,296.9649999997662,-0.06257535428169689 +59394,296.9699999997662,-0.06257393231805114 +59395,296.97499999976617,-0.06257251072435117 +59396,296.97999999976616,-0.0625710895003187 +59397,296.98499999976616,-0.06256966864567576 +59398,296.98999999976616,-0.0625682481601449 +59399,296.99499999976615,-0.06256682804344901 +59400,296.99999999976615,-0.0625654082953114 +59401,297.00499999976614,-0.06256398891545581 +59402,297.00999999976614,-0.06256256990360635 +59403,297.01499999976613,-0.0625611512594876 +59404,297.0199999997661,-0.06255973298282444 +59405,297.0249999997661,-0.06255831507334227 +59406,297.0299999997661,-0.06255689753076682 +59407,297.0349999997661,-0.06255548035482425 +59408,297.0399999997661,-0.06255406354524114 +59409,297.0449999997661,-0.06255264710174441 +59410,297.0499999997661,-0.06255123102406146 +59411,297.0549999997661,-0.06254981531192005 +59412,297.0599999997661,-0.06254839996504835 +59413,297.0649999997661,-0.06254698498317492 +59414,297.0699999997661,-0.06254557036602872 +59415,297.0749999997661,-0.06254415611333912 +59416,297.0799999997661,-0.0625427422248359 +59417,297.08499999976607,-0.0625413287002492 +59418,297.08999999976606,-0.06253991553930958 +59419,297.09499999976606,-0.06253850274174802 +59420,297.09999999976606,-0.06253709030729585 +59421,297.10499999976605,-0.0625356782356848 +59422,297.10999999976605,-0.06253426652664705 +59423,297.11499999976604,-0.0625328551799151 +59424,297.11999999976604,-0.06253144419522189 +59425,297.12499999976603,-0.06253003357230073 +59426,297.129999999766,-0.06252862331088536 +59427,297.134999999766,-0.06252721341070987 +59428,297.139999999766,-0.06252580387150873 +59429,297.144999999766,-0.06252439469301686 +59430,297.149999999766,-0.06252298587496952 +59431,297.154999999766,-0.06252157741710238 +59432,297.159999999766,-0.06252016931915148 +59433,297.164999999766,-0.06251876158085326 +59434,297.169999999766,-0.06251735420194456 +59435,297.174999999766,-0.06251594718216258 +59436,297.179999999766,-0.06251454052124493 +59437,297.184999999766,-0.06251313421892958 +59438,297.189999999766,-0.06251172827495492 +59439,297.19499999976597,-0.06251032268905969 +59440,297.19999999976596,-0.06250891746098304 +59441,297.20499999976596,-0.06250751259046447 +59442,297.20999999976596,-0.06250610807724391 +59443,297.21499999976595,-0.06250470392106162 +59444,297.21999999976595,-0.06250330012165828 +59445,297.22499999976594,-0.06250189667877491 +59446,297.22999999976594,-0.06250049359215298 +59447,297.23499999976593,-0.062499090861534275 +59448,297.2399999997659,-0.062497688486660964 +59449,297.2449999997659,-0.06249628646727564 +59450,297.2499999997659,-0.06249488480312122 +59451,297.2549999997659,-0.06249348349394104 +59452,297.2599999997659,-0.06249208253947877 +59453,297.2649999997659,-0.06249068193947851 +59454,297.2699999997659,-0.06248928169368467 +59455,297.2749999997659,-0.06248788180184211 +59456,297.2799999997659,-0.06248648226369599 +59457,297.2849999997659,-0.06248508307899189 +59458,297.2899999997659,-0.06248368424747575 +59459,297.2949999997659,-0.06248228576889389 +59460,297.2999999997659,-0.062480887642992984 +59461,297.30499999976587,-0.062479489869520094 +59462,297.30999999976586,-0.06247809244822264 +59463,297.31499999976586,-0.06247669537884842 +59464,297.31999999976586,-0.0624752986611456 +59465,297.32499999976585,-0.06247390229486273 +59466,297.32999999976585,-0.06247250627974869 +59467,297.33499999976584,-0.062471110615552765 +59468,297.33999999976584,-0.06246971530202458 +59469,297.34499999976583,-0.062468320338914154 +59470,297.3499999997658,-0.06246692572597185 +59471,297.3549999997658,-0.06246553146294839 +59472,297.3599999997658,-0.06246413754959489 +59473,297.3649999997658,-0.06246274398566283 +59474,297.3699999997658,-0.06246135077090402 +59475,297.3749999997658,-0.062459957905070654 +59476,297.3799999997658,-0.062458565387915284 +59477,297.3849999997658,-0.06245717321919084 +59478,297.3899999997658,-0.06245578139865057 +59479,297.3949999997658,-0.06245438992604814 +59480,297.3999999997658,-0.06245299880113753 +59481,297.4049999997658,-0.062451608023673104 +59482,297.4099999997658,-0.062450217593409595 +59483,297.41499999976577,-0.06244882751010206 +59484,297.41999999976576,-0.062447437773505955 +59485,297.42499999976576,-0.06244604838337705 +59486,297.42999999976576,-0.0624446593394715 +59487,297.43499999976575,-0.062443270641545826 +59488,297.43999999976575,-0.06244188228935687 +59489,297.44499999976574,-0.062440494282661844 +59490,297.44999999976574,-0.06243910662121834 +59491,297.45499999976573,-0.06243771930478427 +59492,297.4599999997657,-0.062436332333117905 +59493,297.4649999997657,-0.0624349457059779 +59494,297.4699999997657,-0.06243355942312322 +59495,297.4749999997657,-0.062432173484313194 +59496,297.4799999997657,-0.06243078788930754 +59497,297.4849999997657,-0.06242940263786626 +59498,297.4899999997657,-0.06242801772974977 +59499,297.4949999997657,-0.062426633164718796 +59500,297.4999999997657,-0.06242524894253443 +59501,297.5049999997657,-0.0624238650629581 +59502,297.5099999997657,-0.06242248152575161 +59503,297.5149999997657,-0.06242109833067707 +59504,297.5199999997657,-0.062419715477496966 +59505,297.52499999976567,-0.06241833296597412 +59506,297.52999999976566,-0.0624169507958717 +59507,297.53499999976566,-0.06241556896695323 +59508,297.53999999976566,-0.06241418747898257 +59509,297.54499999976565,-0.06241280633172393 +59510,297.54999999976565,-0.062411425524941846 +59511,297.55499999976564,-0.062410045058401226 +59512,297.55999999976564,-0.062408664931867294 +59513,297.56499999976563,-0.062407285145105636 +59514,297.5699999997656,-0.06240590569788216 +59515,297.5749999997656,-0.06240452658996314 +59516,297.5799999997656,-0.062403147821115154 +59517,297.5849999997656,-0.062401769391105165 +59518,297.5899999997656,-0.06240039129970043 +59519,297.5949999997656,-0.06239901354666859 +59520,297.5999999997656,-0.06239763613177759 +59521,297.6049999997656,-0.06239625905479572 +59522,297.6099999997656,-0.06239488231549163 +59523,297.6149999997656,-0.062393505913634274 +59524,297.6199999997656,-0.06239212984899295 +59525,297.6249999997656,-0.06239075412133732 +59526,297.6299999997656,-0.06238937873043736 +59527,297.63499999976557,-0.06238800367606336 +59528,297.63999999976556,-0.062386628957985975 +59529,297.64499999976556,-0.06238525457597619 +59530,297.64999999976556,-0.06238388052980531 +59531,297.65499999976555,-0.06238250681924497 +59532,297.65999999976555,-0.06238113344406716 +59533,297.66499999976554,-0.06237976040404418 +59534,297.66999999976554,-0.06237838769894867 +59535,297.67499999976553,-0.062377015328553616 +59536,297.6799999997655,-0.062375643292632295 +59537,297.6849999997655,-0.06237427159095833 +59538,297.6899999997655,-0.06237290022330571 +59539,297.6949999997655,-0.062371529189448695 +59540,297.6999999997655,-0.06237015848916191 +59541,297.7049999997655,-0.0623687881222203 +59542,297.7099999997655,-0.06236741808839911 +59543,297.7149999997655,-0.062366048387473956 +59544,297.7199999997655,-0.06236467901922075 +59545,297.7249999997655,-0.06236330998341575 +59546,297.7299999997655,-0.062361941279835506 +59547,297.7349999997655,-0.06236057290825693 +59548,297.7399999997655,-0.062359204868457245 +59549,297.74499999976547,-0.06235783716021397 +59550,297.74999999976546,-0.062356469783305 +59551,297.75499999976546,-0.0623551027375085 +59552,297.75999999976545,-0.06235373602260299 +59553,297.76499999976545,-0.06235236963836728 +59554,297.76999999976545,-0.06235100358458054 +59555,297.77499999976544,-0.06234963786102223 +59556,297.77999999976544,-0.06234827246747216 +59557,297.78499999976543,-0.06234690740371042 +59558,297.7899999997654,-0.062345542669517445 +59559,297.7949999997654,-0.062344178264673984 +59560,297.7999999997654,-0.0623428141889611 +59561,297.8049999997654,-0.06234145044216018 +59562,297.8099999997654,-0.06234008702405292 +59563,297.8149999997654,-0.062338723934421324 +59564,297.8199999997654,-0.062337361173047744 +59565,297.8249999997654,-0.062335998739714814 +59566,297.8299999997654,-0.06233463663420548 +59567,297.8349999997654,-0.06233327485630305 +59568,297.8399999997654,-0.062331913405791084 +59569,297.8449999997654,-0.06233055228245351 +59570,297.8499999997654,-0.06232919148607452 +59571,297.85499999976537,-0.06232783101643865 +59572,297.85999999976536,-0.06232647087333075 +59573,297.86499999976536,-0.062325111056535945 +59574,297.86999999976535,-0.06232375156583972 +59575,297.87499999976535,-0.062322392401027826 +59576,297.87999999976535,-0.06232103356188637 +59577,297.88499999976534,-0.06231967504820173 +59578,297.88999999976534,-0.0623183168597606 +59579,297.89499999976533,-0.062316958996349994 +59580,297.8999999997653,-0.062315601457757226 +59581,297.9049999997653,-0.06231424424376992 +59582,297.9099999997653,-0.06231288735417601 +59583,297.9149999997653,-0.06231153078876373 +59584,297.9199999997653,-0.06231017454732162 +59585,297.9249999997653,-0.062308818629638524 +59586,297.9299999997653,-0.0623074630355036 +59587,297.9349999997653,-0.06230610776470631 +59588,297.9399999997653,-0.0623047528170364 +59589,297.9449999997653,-0.06230339819228395 +59590,297.9499999997653,-0.062302043890239335 +59591,297.9549999997653,-0.06230068991069321 +59592,297.9599999997653,-0.06229933625343655 +59593,297.96499999976527,-0.06229798291826064 +59594,297.96999999976526,-0.06229662990495706 +59595,297.97499999976526,-0.062295277213317665 +59596,297.97999999976525,-0.06229392484313463 +59597,297.98499999976525,-0.06229257279420045 +59598,297.98999999976525,-0.0622912210663079 +59599,297.99499999976524,-0.06228986965925005 +59600,297.99999999976524,-0.062288518572820264 +59601,298.00499999976523,-0.06228716780681224 +59602,298.0099999997652,-0.06228581736101991 +59603,298.0149999997652,-0.062284467235237576 +59604,298.0199999997652,-0.062283117429259766 +59605,298.0249999997652,-0.062281767942881344 +59606,298.0299999997652,-0.06228041877589749 +59607,298.0349999997652,-0.06227906992810363 +59608,298.0399999997652,-0.0622777213992955 +59609,298.0449999997652,-0.06227637318926915 +59610,298.0499999997652,-0.062275025297820905 +59611,298.0549999997652,-0.06227367772474739 +59612,298.0599999997652,-0.06227233046984553 +59613,298.0649999997652,-0.06227098353291253 +59614,298.0699999997652,-0.062269636913745874 +59615,298.07499999976517,-0.062268290612143375 +59616,298.07999999976516,-0.0622669446279031 +59617,298.08499999976516,-0.06226559896082344 +59618,298.08999999976515,-0.062264253610703035 +59619,298.09499999976515,-0.06226290857734087 +59620,298.09999999976515,-0.062261563860536155 +59621,298.10499999976514,-0.06226021946008844 +59622,298.10999999976514,-0.06225887537579753 +59623,298.11499999976513,-0.06225753160746355 +59624,298.1199999997651,-0.06225618815488687 +59625,298.1249999997651,-0.062254845017868196 +59626,298.1299999997651,-0.062253502196208475 +59627,298.1349999997651,-0.062252159689708965 +59628,298.1399999997651,-0.062250817498171206 +59629,298.1449999997651,-0.06224947562139701 +59630,298.1499999997651,-0.062248134059188505 +59631,298.1549999997651,-0.062246792811348074 +59632,298.1599999997651,-0.062245451877678395 +59633,298.1649999997651,-0.06224411125798241 +59634,298.1699999997651,-0.06224277095206338 +59635,298.1749999997651,-0.06224143095972483 +59636,298.1799999997651,-0.06224009128077054 +59637,298.18499999976507,-0.06223875191500463 +59638,298.18999999976506,-0.06223741286223144 +59639,298.19499999976506,-0.06223607412225563 +59640,298.19999999976505,-0.06223473569488214 +59641,298.20499999976505,-0.062233397579916146 +59642,298.20999999976505,-0.06223205977716316 +59643,298.21499999976504,-0.062230722286428945 +59644,298.21999999976504,-0.06222938510751955 +59645,298.22499999976503,-0.06222804824024129 +59646,298.229999999765,-0.06222671168440077 +59647,298.234999999765,-0.06222537543980485 +59648,298.239999999765,-0.06222403950626071 +59649,298.244999999765,-0.062222703883575765 +59650,298.249999999765,-0.0622213685715577 +59651,298.254999999765,-0.06222003357001454 +59652,298.259999999765,-0.062218698878754496 +59653,298.264999999765,-0.06221736449758612 +59654,298.269999999765,-0.062216030426318215 +59655,298.274999999765,-0.062214696664759844 +59656,298.279999999765,-0.06221336321272037 +59657,298.284999999765,-0.06221203007000942 +59658,298.289999999765,-0.062210697236436886 +59659,298.29499999976497,-0.062209364711812924 +59660,298.29999999976496,-0.062208032495947974 +59661,298.30499999976496,-0.062206700588652755 +59662,298.30999999976495,-0.06220536898973823 +59663,298.31499999976495,-0.062204037699015675 +59664,298.31999999976495,-0.06220270671629659 +59665,298.32499999976494,-0.06220137604139277 +59666,298.32999999976494,-0.06220004567411626 +59667,298.33499999976493,-0.06219871561427939 +59668,298.3399999997649,-0.06219738586169477 +59669,298.3449999997649,-0.06219605641617524 +59670,298.3499999997649,-0.062194727277533945 +59671,298.3549999997649,-0.06219339844558427 +59672,298.3599999997649,-0.06219206992013988 +59673,298.3649999997649,-0.06219074170101469 +59674,298.3699999997649,-0.0621894137880229 +59675,298.3749999997649,-0.06218808618097897 +59676,298.3799999997649,-0.06218675887969762 +59677,298.3849999997649,-0.06218543188399384 +59678,298.3899999997649,-0.062184105193682886 +59679,298.3949999997649,-0.06218277880858025 +59680,298.3999999997649,-0.06218145272850173 +59681,298.40499999976487,-0.06218012695326334 +59682,298.40999999976486,-0.062178801482681394 +59683,298.41499999976486,-0.06217747631657245 +59684,298.41999999976485,-0.06217615145475335 +59685,298.42499999976485,-0.06217482689704116 +59686,298.42999999976485,-0.062173502643253234 +59687,298.43499999976484,-0.06217217869320716 +59688,298.43999999976484,-0.06217085504672082 +59689,298.44499999976483,-0.06216953170361232 +59690,298.4499999997648,-0.062168208663700056 +59691,298.4549999997648,-0.06216688592680268 +59692,298.4599999997648,-0.06216556349273907 +59693,298.4649999997648,-0.06216424136132838 +59694,298.4699999997648,-0.06216291953239004 +59695,298.4749999997648,-0.0621615980057437 +59696,298.4799999997648,-0.062160276781209306 +59697,298.4849999997648,-0.06215895585860703 +59698,298.4899999997648,-0.0621576352377573 +59699,298.4949999997648,-0.06215631491848083 +59700,298.4999999997648,-0.06215499490059855 +59701,298.5049999997648,-0.06215367518393168 +59702,298.5099999997648,-0.062152355768301665 +59703,298.51499999976477,-0.0621510366535302 +59704,298.51999999976476,-0.06214971783943926 +59705,298.52499999976476,-0.062148399325851075 +59706,298.52999999976475,-0.062147081112588085 +59707,298.53499999976475,-0.06214576319947303 +59708,298.53999999976475,-0.06214444558632886 +59709,298.54499999976474,-0.06214312827297881 +59710,298.54999999976474,-0.062141811259246366 +59711,298.55499999976473,-0.06214049454495523 +59712,298.5599999997647,-0.062139178129929376 +59713,298.5649999997647,-0.06213786201399303 +59714,298.5699999997647,-0.06213654619697067 +59715,298.5749999997647,-0.06213523067868701 +59716,298.5799999997647,-0.06213391545896701 +59717,298.5849999997647,-0.0621326005376359 +59718,298.5899999997647,-0.06213128591451914 +59719,298.5949999997647,-0.06212997158944244 +59720,298.5999999997647,-0.06212865756223175 +59721,298.6049999997647,-0.06212734383271328 +59722,298.6099999997647,-0.062126030400713475 +59723,298.6149999997647,-0.06212471726605904 +59724,298.6199999997647,-0.0621234044285769 +59725,298.62499999976467,-0.062122091888094276 +59726,298.62999999976466,-0.06212077964443856 +59727,298.63499999976466,-0.062119467697437446 +59728,298.63999999976465,-0.062118156046918845 +59729,298.64499999976465,-0.062116844692710914 +59730,298.64999999976465,-0.06211553363464205 +59731,298.65499999976464,-0.062114222872540925 +59732,298.65999999976464,-0.062112912406236405 +59733,298.66499999976463,-0.06211160223555763 +59734,298.6699999997646,-0.06211029236033396 +59735,298.6749999997646,-0.06210898278039501 +59736,298.6799999997646,-0.062107673495570635 +59737,298.6849999997646,-0.06210636450569094 +59738,298.6899999997646,-0.062105055810586236 +59739,298.6949999997646,-0.06210374741008711 +59740,298.6999999997646,-0.06210243930402437 +59741,298.7049999997646,-0.062101131492229074 +59742,298.7099999997646,-0.0620998239745325 +59743,298.7149999997646,-0.062098516750766164 +59744,298.7199999997646,-0.06209720982076185 +59745,298.7249999997646,-0.062095903184351556 +59746,298.7299999997646,-0.062094596841367505 +59747,298.73499999976457,-0.06209329079164219 +59748,298.73999999976456,-0.06209198503500831 +59749,298.74499999976456,-0.062090679571298796 +59750,298.74999999976455,-0.06208937440034684 +59751,298.75499999976455,-0.062088069521985874 +59752,298.75999999976455,-0.06208676493604953 +59753,298.76499999976454,-0.0620854606423717 +59754,298.76999999976454,-0.0620841566407865 +59755,298.77499999976453,-0.062082852931128286 +59756,298.7799999997645,-0.062081549513231624 +59757,298.7849999997645,-0.062080246386931354 +59758,298.7899999997645,-0.06207894355206251 +59759,298.7949999997645,-0.062077641008460374 +59760,298.7999999997645,-0.062076338755960477 +59761,298.8049999997645,-0.06207503679439855 +59762,298.8099999997645,-0.06207373512361055 +59763,298.8149999997645,-0.062072433743432714 +59764,298.8199999997645,-0.062071132653701455 +59765,298.8249999997645,-0.06206983185425345 +59766,298.8299999997645,-0.06206853134492559 +59767,298.8349999997645,-0.062067231125555 +59768,298.8399999997645,-0.062065931195979036 +59769,298.84499999976447,-0.06206463155603527 +59770,298.84999999976446,-0.06206333220556151 +59771,298.85499999976446,-0.062062033144395796 +59772,298.85999999976445,-0.0620607343723764 +59773,298.86499999976445,-0.0620594358893418 +59774,298.86999999976445,-0.06205813769513072 +59775,298.87499999976444,-0.062056839789582104 +59776,298.87999999976444,-0.0620555421725351 +59777,298.88499999976443,-0.062054244843829126 +59778,298.8899999997644,-0.06205294780330378 +59779,298.8949999997644,-0.06205165105079893 +59780,298.8999999997644,-0.06205035458615461 +59781,298.9049999997644,-0.06204905840921114 +59782,298.9099999997644,-0.06204776251980903 +59783,298.9149999997644,-0.06204646691778902 +59784,298.9199999997644,-0.062045171602992055 +59785,298.9249999997644,-0.06204387657525933 +59786,298.9299999997644,-0.06204258183443226 +59787,298.9349999997644,-0.06204128738035246 +59788,298.9399999997644,-0.06203999321286177 +59789,298.9449999997644,-0.06203869933180229 +59790,298.9499999997644,-0.062037405737016285 +59791,298.95499999976437,-0.06203611242834627 +59792,298.95999999976436,-0.062034819405634996 +59793,298.96499999976436,-0.062033526668725386 +59794,298.96999999976435,-0.062032234217460624 +59795,298.97499999976435,-0.06203094205168411 +59796,298.97999999976435,-0.06202965017123944 +59797,298.98499999976434,-0.062028358575970444 +59798,298.98999999976434,-0.06202706726572116 +59799,298.99499999976433,-0.06202577624033586 +59800,298.9999999997643,-0.06202448549965903 +59801,299.0049999997643,-0.06202319504353534 +59802,299.0099999997643,-0.062021904871809724 +59803,299.0149999997643,-0.06202061498432731 +59804,299.0199999997643,-0.06201932538093344 +59805,299.0249999997643,-0.062018036061473665 +59806,299.0299999997643,-0.06201674702579378 +59807,299.0349999997643,-0.062015458273739756 +59808,299.0399999997643,-0.06201416980515781 +59809,299.0449999997643,-0.06201288161989436 +59810,299.0499999997643,-0.062011593717796035 +59811,299.0549999997643,-0.062010306098709694 +59812,299.0599999997643,-0.06200901876248239 +59813,299.06499999976427,-0.062007731708961386 +59814,299.06999999976426,-0.062006444937994176 +59815,299.07499999976426,-0.06200515844942845 +59816,299.07999999976425,-0.06200387224311213 +59817,299.08499999976425,-0.06200258631889332 +59818,299.08999999976425,-0.06200130067662037 +59819,299.09499999976424,-0.06200001531614183 +59820,299.09999999976424,-0.06199873023730642 +59821,299.10499999976423,-0.061997445439963134 +59822,299.1099999997642,-0.06199616092396112 +59823,299.1149999997642,-0.061994876689149776 +59824,299.1199999997642,-0.06199359273537868 +59825,299.1249999997642,-0.061992309062497655 +59826,299.1299999997642,-0.06199102567035669 +59827,299.1349999997642,-0.061989742558806016 +59828,299.1399999997642,-0.06198845972769604 +59829,299.1449999997642,-0.06198717717687741 +59830,299.1499999997642,-0.061985894906200954 +59831,299.1549999997642,-0.06198461291551773 +59832,299.1599999997642,-0.06198333120467898 +59833,299.1649999997642,-0.06198204977353616 +59834,299.1699999997642,-0.061980768621940956 +59835,299.17499999976417,-0.06197948774974522 +59836,299.17999999976416,-0.061978207156801024 +59837,299.18499999976416,-0.061976926842960654 +59838,299.18999999976415,-0.061975646808076594 +59839,299.19499999976415,-0.061974367052001524 +59840,299.19999999976415,-0.061973087574588366 +59841,299.20499999976414,-0.06197180837569018 +59842,299.20999999976414,-0.061970529455160274 +59843,299.21499999976413,-0.06196925081285217 +59844,299.2199999997641,-0.06196797244861955 +59845,299.2249999997641,-0.06196669436231633 +59846,299.2299999997641,-0.061965416553796615 +59847,299.2349999997641,-0.06196413902291472 +59848,299.2399999997641,-0.06196286176952516 +59849,299.2449999997641,-0.06196158479348265 +59850,299.2499999997641,-0.06196030809464208 +59851,299.2549999997641,-0.06195903167285857 +59852,299.2599999997641,-0.06195775552798746 +59853,299.2649999997641,-0.06195647965988424 +59854,299.2699999997641,-0.061955204068404615 +59855,299.2749999997641,-0.06195392875340451 +59856,299.2799999997641,-0.06195265371474004 +59857,299.28499999976407,-0.0619513789522675 +59858,299.28999999976406,-0.06195010446584341 +59859,299.29499999976406,-0.061948830255324466 +59860,299.29999999976405,-0.06194755632056757 +59861,299.30499999976405,-0.06194628266142982 +59862,299.30999999976405,-0.061945009277768505 +59863,299.31499999976404,-0.06194373616944114 +59864,299.31999999976404,-0.06194246333630538 +59865,299.32499999976403,-0.06194119077821914 +59866,299.329999999764,-0.06193991849504049 +59867,299.334999999764,-0.06193864648662769 +59868,299.339999999764,-0.06193737475283923 +59869,299.344999999764,-0.061936103293533766 +59870,299.349999999764,-0.06193483210857015 +59871,299.354999999764,-0.06193356119780745 +59872,299.359999999764,-0.06193229056110489 +59873,299.364999999764,-0.06193102019832193 +59874,299.369999999764,-0.061929750109318206 +59875,299.374999999764,-0.06192848029395353 +59876,299.379999999764,-0.061927210752087916 +59877,299.384999999764,-0.06192594148358158 +59878,299.389999999764,-0.06192467248829493 +59879,299.39499999976397,-0.061923403766088556 +59880,299.39999999976396,-0.061922135316823244 +59881,299.40499999976396,-0.06192086714035998 +59882,299.40999999976395,-0.0619195992365599 +59883,299.41499999976395,-0.06191833160528439 +59884,299.41999999976395,-0.06191706424639499 +59885,299.42499999976394,-0.06191579715975343 +59886,299.42999999976394,-0.06191453034522164 +59887,299.43499999976393,-0.06191326380266172 +59888,299.4399999997639,-0.061911997531936 +59889,299.4449999997639,-0.06191073153290695 +59890,299.4499999997639,-0.06190946580543726 +59891,299.4549999997639,-0.061908200349389805 +59892,299.4599999997639,-0.06190693516462763 +59893,299.4649999997639,-0.061905670251013976 +59894,299.4699999997639,-0.061904405608412275 +59895,299.4749999997639,-0.06190314123668615 +59896,299.4799999997639,-0.0619018771356994 +59897,299.4849999997639,-0.061900613305316 +59898,299.4899999997639,-0.06189934974540016 +59899,299.4949999997639,-0.061898086455816216 +59900,299.4999999997639,-0.0618968234364287 +59901,299.50499999976387,-0.06189556068710238 +59902,299.50999999976386,-0.061894298207702134 +59903,299.51499999976386,-0.0618930359980931 +59904,299.51999999976385,-0.06189177405814053 +59905,299.52499999976385,-0.06189051238770991 +59906,299.52999999976385,-0.061889250986666866 +59907,299.53499999976384,-0.061887989854877264 +59908,299.53999999976384,-0.061886728992207096 +59909,299.54499999976383,-0.06188546839852256 +59910,299.5499999997638,-0.061884208073690064 +59911,299.5549999997638,-0.06188294801757614 +59912,299.5599999997638,-0.06188168823004756 +59913,299.5649999997638,-0.061880428710971234 +59914,299.5699999997638,-0.061879169460214274 +59915,299.5749999997638,-0.06187791047764397 +59916,299.5799999997638,-0.06187665176312778 +59917,299.5849999997638,-0.06187539331653336 +59918,299.5899999997638,-0.06187413513772855 +59919,299.5949999997638,-0.06187287722658134 +59920,299.5999999997638,-0.061871619582959926 +59921,299.6049999997638,-0.06187036220673268 +59922,299.6099999997638,-0.06186910509776814 +59923,299.61499999976377,-0.06186784825593503 +59924,299.61999999976376,-0.06186659168110226 +59925,299.62499999976376,-0.06186533537313892 +59926,299.62999999976375,-0.06186407933191424 +59927,299.63499999976375,-0.06186282355729768 +59928,299.63999999976375,-0.061861568049158835 +59929,299.64499999976374,-0.06186031280736751 +59930,299.64999999976374,-0.06185905783179365 +59931,299.65499999976373,-0.06185780312230742 +59932,299.6599999997637,-0.06185654867877912 +59933,299.6649999997637,-0.06185529450107926 +59934,299.6699999997637,-0.06185404058907849 +59935,299.6749999997637,-0.06185278694264768 +59936,299.6799999997637,-0.06185153356165783 +59937,299.6849999997637,-0.061850280445980135 +59938,299.6899999997637,-0.06184902759548597 +59939,299.6949999997637,-0.06184777501004686 +59940,299.6999999997637,-0.06184652268953454 +59941,299.7049999997637,-0.06184527063382089 +59942,299.7099999997637,-0.06184401884277797 +59943,299.7149999997637,-0.06184276731627802 +59944,299.7199999997637,-0.061841516054193434 +59945,299.72499999976367,-0.0618402650563968 +59946,299.72999999976366,-0.06183901432276089 +59947,299.73499999976366,-0.061837763853158596 +59948,299.73999999976365,-0.06183651364746302 +59949,299.74499999976365,-0.06183526370554745 +59950,299.74999999976365,-0.061834014027285306 +59951,299.75499999976364,-0.061832764612550196 +59952,299.75999999976364,-0.06183151546121589 +59953,299.76499999976363,-0.06183026657315635 +59954,299.7699999997636,-0.06182901794824569 +59955,299.7749999997636,-0.0618277695863582 +59956,299.7799999997636,-0.06182652148736834 +59957,299.7849999997636,-0.061825273651150724 +59958,299.7899999997636,-0.06182402607758015 +59959,299.7949999997636,-0.06182277876653157 +59960,299.7999999997636,-0.06182153171788015 +59961,299.8049999997636,-0.061820284931501164 +59962,299.8099999997636,-0.06181903840727007 +59963,299.8149999997636,-0.06181779214506253 +59964,299.8199999997636,-0.06181654614475433 +59965,299.8249999997636,-0.06181530040622143 +59966,299.8299999997636,-0.06181405492933997 +59967,299.83499999976357,-0.06181280971398627 +59968,299.83999999976356,-0.061811564760036776 +59969,299.84499999976356,-0.06181032006736813 +59970,299.84999999976355,-0.06180907563585713 +59971,299.85499999976355,-0.06180783146538073 +59972,299.85999999976355,-0.06180658755581607 +59973,299.86499999976354,-0.06180534390704044 +59974,299.86999999976354,-0.061804100518931294 +59975,299.87499999976353,-0.06180285739136626 +59976,299.8799999997635,-0.06180161452422313 +59977,299.8849999997635,-0.06180037191737985 +59978,299.8899999997635,-0.061799129570714526 +59979,299.8949999997635,-0.061797887484105446 +59980,299.8999999997635,-0.06179664565743103 +59981,299.9049999997635,-0.06179540409056989 +59982,299.9099999997635,-0.061794162783400795 +59983,299.9149999997635,-0.06179292173580268 +59984,299.9199999997635,-0.061791680947654616 +59985,299.9249999997635,-0.06179044041883586 +59986,299.9299999997635,-0.06178920014922582 +59987,299.9349999997635,-0.061787960138704065 +59988,299.9399999997635,-0.06178672038715034 +59989,299.94499999976347,-0.061785480894444536 +59990,299.94999999976346,-0.06178424166046669 +59991,299.95499999976346,-0.06178300268509703 +59992,299.95999999976345,-0.06178176396821593 +59993,299.96499999976345,-0.06178052550970392 +59994,299.96999999976344,-0.061779287309441704 +59995,299.97499999976344,-0.06177804936731011 +59996,299.97999999976344,-0.061776811683190165 +59997,299.98499999976343,-0.06177557425696303 +59998,299.9899999997634,-0.06177433708851004 +59999,299.9949999997634,-0.06177310017771268 +60000,299.9999999997634,-0.06177186352445259 +60001,300.0049999997634,-0.061770627128611554 +60002,300.0099999997634,-0.061769390990071546 +60003,300.0149999997634,-0.06176815510871468 +60004,300.0199999997634,-0.06176691948442323 +60005,300.0249999997634,-0.06176568411707962 +60006,300.0299999997634,-0.06176444900656643 +60007,300.0349999997634,-0.061763214152766394 +60008,300.0399999997634,-0.061761979555562424 +60009,300.0449999997634,-0.061760745214837556 +60010,300.0499999997634,-0.06175951113047501 +60011,300.05499999976337,-0.061758277302358125 +60012,300.05999999976336,-0.06175704373037044 +60013,300.06499999976336,-0.06175581041439561 +60014,300.06999999976335,-0.06175457735431746 +60015,300.07499999976335,-0.06175334455001999 +60016,300.07999999976334,-0.061752112001387305 +60017,300.08499999976334,-0.0617508797083037 +60018,300.08999999976334,-0.061749647670653614 +60019,300.09499999976333,-0.061748415888321646 +60020,300.0999999997633,-0.061747184361192524 +60021,300.1049999997633,-0.06174595308915116 +60022,300.1099999997633,-0.0617447220720826 +60023,300.1149999997633,-0.06174349130987203 +60024,300.1199999997633,-0.061742260802404816 +60025,300.1249999997633,-0.061741030549566464 +60026,300.1299999997633,-0.061739800551242625 +60027,300.1349999997633,-0.06173857080731911 +60028,300.1399999997633,-0.06173734131768188 +60029,300.1449999997633,-0.061736112082217035 +60030,300.1499999997633,-0.061734883100810836 +60031,300.1549999997633,-0.0617336543733497 +60032,300.1599999997633,-0.06173242589972016 +60033,300.16499999976327,-0.06173119767980895 +60034,300.16999999976326,-0.06172996971350291 +60035,300.17499999976326,-0.061728742000689056 +60036,300.17999999976325,-0.06172751454125454 +60037,300.18499999976325,-0.06172628733508665 +60038,300.18999999976324,-0.06172506038207287 +60039,300.19499999976324,-0.06172383368210078 +60040,300.19999999976324,-0.061722607235058125 +60041,300.20499999976323,-0.06172138104083281 +60042,300.2099999997632,-0.061720155099312876 +60043,300.2149999997632,-0.06171892941038651 +60044,300.2199999997632,-0.06171770397394205 +60045,300.2249999997632,-0.06171647878986798 +60046,300.2299999997632,-0.06171525385805293 +60047,300.2349999997632,-0.06171402917838567 +60048,300.2399999997632,-0.06171280475075514 +60049,300.2449999997632,-0.06171158057505039 +60050,300.2499999997632,-0.06171035665116064 +60051,300.2549999997632,-0.06170913297897525 +60052,300.2599999997632,-0.06170790955838372 +60053,300.2649999997632,-0.061706686389275706 +60054,300.2699999997632,-0.061705463471540996 +60055,300.27499999976317,-0.06170424080506953 +60056,300.27999999976316,-0.061703018389751396 +60057,300.28499999976316,-0.0617017962254768 +60058,300.28999999976315,-0.06170057431213613 +60059,300.29499999976315,-0.0616993526496199 +60060,300.29999999976314,-0.06169813123781876 +60061,300.30499999976314,-0.0616969100766235 +60062,300.30999999976314,-0.06169568916592506 +60063,300.31499999976313,-0.06169446850561455 +60064,300.3199999997631,-0.06169324809558317 +60065,300.3249999997631,-0.06169202793572231 +60066,300.3299999997631,-0.06169080802592346 +60067,300.3349999997631,-0.06168958836607828 +60068,300.3399999997631,-0.061688368956078564 +60069,300.3449999997631,-0.06168714979581626 +60070,300.3499999997631,-0.06168593088518341 +60071,300.3549999997631,-0.061684712224072256 +60072,300.3599999997631,-0.061683493812375145 +60073,300.3649999997631,-0.06168227564998459 +60074,300.3699999997631,-0.06168105773679321 +60075,300.3749999997631,-0.06167984007269378 +60076,300.3799999997631,-0.061678622657579216 +60077,300.38499999976307,-0.06167740549134257 +60078,300.38999999976306,-0.06167618857387706 +60079,300.39499999976306,-0.061674971905075995 +60080,300.39999999976305,-0.06167375548483285 +60081,300.40499999976305,-0.061672539313041244 +60082,300.40999999976304,-0.06167132338959492 +60083,300.41499999976304,-0.06167010771438777 +60084,300.41999999976304,-0.06166889228731381 +60085,300.42499999976303,-0.0616676771082672 +60086,300.429999999763,-0.06166646217714225 +60087,300.434999999763,-0.06166524749383339 +60088,300.439999999763,-0.061664033058235194 +60089,300.444999999763,-0.061662818870242365 +60090,300.449999999763,-0.061661604929749744 +60091,300.454999999763,-0.06166039123665233 +60092,300.459999999763,-0.06165917779084524 +60093,300.464999999763,-0.06165796459222371 +60094,300.469999999763,-0.06165675164068314 +60095,300.474999999763,-0.06165553893611906 +60096,300.479999999763,-0.06165432647842713 +60097,300.484999999763,-0.06165311426750311 +60098,300.489999999763,-0.06165190230324298 +60099,300.49499999976297,-0.061650690585542775 +60100,300.49999999976296,-0.0616494791142987 +60101,300.50499999976296,-0.06164826788940708 +60102,300.50999999976295,-0.06164705691076439 +60103,300.51499999976295,-0.06164584617826724 +60104,300.51999999976294,-0.061644635691812326 +60105,300.52499999976294,-0.06164342545129655 +60106,300.52999999976294,-0.0616422154566169 +60107,300.53499999976293,-0.06164100570767049 +60108,300.5399999997629,-0.0616397962043546 +60109,300.5449999997629,-0.06163858694656662 +60110,300.5499999997629,-0.06163737793420408 +60111,300.5549999997629,-0.061636169167164655 +60112,300.5599999997629,-0.06163496064534611 +60113,300.5649999997629,-0.0616337523686464 +60114,300.5699999997629,-0.06163254433696355 +60115,300.5749999997629,-0.06163133655019576 +60116,300.5799999997629,-0.06163012900824133 +60117,300.5849999997629,-0.06162892171099873 +60118,300.5899999997629,-0.061627714658366514 +60119,300.5949999997629,-0.061626507850243414 +60120,300.5999999997629,-0.061625301286528246 +60121,300.60499999976287,-0.061624094967119986 +60122,300.60999999976286,-0.06162288889191773 +60123,300.61499999976286,-0.0616216830608207 +60124,300.61999999976285,-0.06162047747372826 +60125,300.62499999976285,-0.06161927213053989 +60126,300.62999999976284,-0.061618067031155195 +60127,300.63499999976284,-0.061616862175473915 +60128,300.63999999976284,-0.06161565756339593 +60129,300.64499999976283,-0.06161445319482124 +60130,300.6499999997628,-0.061613249069649954 +60131,300.6549999997628,-0.06161204518778233 +60132,300.6599999997628,-0.061610841549118764 +60133,300.6649999997628,-0.06160963815355974 +60134,300.6699999997628,-0.061608435001005914 +60135,300.6749999997628,-0.06160723209135803 +60136,300.6799999997628,-0.06160602942451698 +60137,300.6849999997628,-0.06160482700038378 +60138,300.6899999997628,-0.06160362481885957 +60139,300.6949999997628,-0.06160242287984564 +60140,300.6999999997628,-0.06160122118324334 +60141,300.7049999997628,-0.06160001972895421 +60142,300.7099999997628,-0.061598818516879886 +60143,300.71499999976277,-0.061597617546922154 +60144,300.71999999976276,-0.06159641681898289 +60145,300.72499999976276,-0.061595216332964116 +60146,300.72999999976275,-0.06159401608876799 +60147,300.73499999976275,-0.06159281608629675 +60148,300.73999999976274,-0.06159161632545282 +60149,300.74499999976274,-0.06159041680613869 +60150,300.74999999976274,-0.06158921752825701 +60151,300.75499999976273,-0.06158801849171054 +60152,300.7599999997627,-0.06158681969640217 +60153,300.7649999997627,-0.06158562114223491 +60154,300.7699999997627,-0.06158442282911189 +60155,300.7749999997627,-0.06158322475693636 +60156,300.7799999997627,-0.0615820269256117 +60157,300.7849999997627,-0.061580829335041415 +60158,300.7899999997627,-0.06157963198512913 +60159,300.7949999997627,-0.06157843487577857 +60160,300.7999999997627,-0.061577238006893624 +60161,300.8049999997627,-0.061576041378378264 +60162,300.8099999997627,-0.061574844990136615 +60163,300.8149999997627,-0.061573648842072885 +60164,300.8199999997627,-0.06157245293409144 +60165,300.82499999976267,-0.06157125726609677 +60166,300.82999999976266,-0.061570061837993434 +60167,300.83499999976266,-0.06156886664968616 +60168,300.83999999976265,-0.061567671701079775 +60169,300.84499999976265,-0.06156647699207925 +60170,300.84999999976264,-0.061565282522589644 +60171,300.85499999976264,-0.061564088292516146 +60172,300.85999999976264,-0.06156289430176408 +60173,300.86499999976263,-0.06156170055023886 +60174,300.8699999997626,-0.06156050703784605 +60175,300.8749999997626,-0.06155931376449132 +60176,300.8799999997626,-0.06155812073008045 +60177,300.8849999997626,-0.061556927934519355 +60178,300.8899999997626,-0.06155573537771405 +60179,300.8949999997626,-0.06155454305957068 +60180,300.8999999997626,-0.061553350979995515 +60181,300.9049999997626,-0.06155215913889494 +60182,300.9099999997626,-0.06155096753617542 +60183,300.9149999997626,-0.061549776171743606 +60184,300.9199999997626,-0.0615485850455062 +60185,300.9249999997626,-0.06154739415737007 +60186,300.9299999997626,-0.06154620350724216 +60187,300.93499999976257,-0.06154501309502956 +60188,300.93999999976256,-0.06154382292063947 +60189,300.94499999976256,-0.061542632983979204 +60190,300.94999999976255,-0.06154144328495618 +60191,300.95499999976255,-0.06154025382347794 +60192,300.95999999976254,-0.06153906459945216 +60193,300.96499999976254,-0.061537875612786626 +60194,300.96999999976254,-0.06153668686338921 +60195,300.97499999976253,-0.061535498351167915 +60196,300.9799999997625,-0.06153431007603088 +60197,300.9849999997625,-0.061533122037886315 +60198,300.9899999997625,-0.0615319342366426 +60199,300.9949999997625,-0.06153074667220818 +60200,300.9999999997625,-0.06152955934449165 +60201,301.0049999997625,-0.061528372253401686 +60202,301.0099999997625,-0.0615271853988471 +60203,301.0149999997625,-0.061525998780736814 +60204,301.0199999997625,-0.06152481239897986 +60205,301.0249999997625,-0.06152362625348539 +60206,301.0299999997625,-0.06152244034416266 +60207,301.0349999997625,-0.06152125467092104 +60208,301.0399999997625,-0.06152006923367002 +60209,301.04499999976247,-0.06151888403231919 +60210,301.04999999976246,-0.061517699066778266 +60211,301.05499999976246,-0.061516514336957075 +60212,301.05999999976245,-0.06151532984276554 +60213,301.06499999976245,-0.06151414558411371 +60214,301.06999999976244,-0.06151296156091175 +60215,301.07499999976244,-0.061511777773069924 +60216,301.07999999976244,-0.06151059422049861 +60217,301.08499999976243,-0.06150941090310829 +60218,301.0899999997624,-0.06150822782080958 +60219,301.0949999997624,-0.06150704497351319 +60220,301.0999999997624,-0.06150586236112995 +60221,301.1049999997624,-0.061504679983570766 +60222,301.1099999997624,-0.061503497840746706 +60223,301.1149999997624,-0.06150231593256892 +60224,301.1199999997624,-0.06150113425894867 +60225,301.1249999997624,-0.06149995281979732 +60226,301.1299999997624,-0.06149877161502636 +60227,301.1349999997624,-0.06149759064454737 +60228,301.1399999997624,-0.06149640990827207 +60229,301.1449999997624,-0.06149522940611226 +60230,301.1499999997624,-0.061494049137979845 +60231,301.15499999976237,-0.06149286910378686 +60232,301.15999999976236,-0.061491689303445445 +60233,301.16499999976236,-0.061490509736867836 +60234,301.16999999976235,-0.06148933040396639 +60235,301.17499999976235,-0.06148815130465356 +60236,301.17999999976234,-0.061486972438841915 +60237,301.18499999976234,-0.06148579380644414 +60238,301.18999999976234,-0.06148461540737299 +60239,301.19499999976233,-0.061483437241541365 +60240,301.1999999997623,-0.06148225930886227 +60241,301.2049999997623,-0.06148108160924879 +60242,301.2099999997623,-0.061479904142614145 +60243,301.2149999997623,-0.061478726908871635 +60244,301.2199999997623,-0.061477549907934706 +60245,301.2249999997623,-0.06147637313971686 +60246,301.2299999997623,-0.06147519660413174 +60247,301.2349999997623,-0.06147402030109309 +60248,301.2399999997623,-0.06147284423051475 +60249,301.2449999997623,-0.06147166839231068 +60250,301.2499999997623,-0.0614704927863949 +60251,301.2549999997623,-0.06146931741268161 +60252,301.2599999997623,-0.06146814227108505 +60253,301.26499999976227,-0.061466967361519596 +60254,301.26999999976226,-0.06146579268389972 +60255,301.27499999976226,-0.061464618238140006 +60256,301.27999999976225,-0.061463444024155135 +60257,301.28499999976225,-0.0614622700418599 +60258,301.28999999976224,-0.06146109629116917 +60259,301.29499999976224,-0.06145992277199795 +60260,301.29999999976224,-0.061458749484261346 +60261,301.30499999976223,-0.06145757642787454 +60262,301.3099999997622,-0.06145640360275286 +60263,301.3149999997622,-0.061455231008811693 +60264,301.3199999997622,-0.06145405864596656 +60265,301.3249999997622,-0.061452886514133054 +60266,301.3299999997622,-0.06145171461322691 +60267,301.3349999997622,-0.06145054294316394 +60268,301.3399999997622,-0.06144937150386007 +60269,301.3449999997622,-0.061448200295231306 +60270,301.3499999997622,-0.061447029317193785 +60271,301.3549999997622,-0.06144585856966371 +60272,301.3599999997622,-0.06144468805255744 +60273,301.3649999997622,-0.06144351776579137 +60274,301.3699999997622,-0.061442347709282044 +60275,301.37499999976217,-0.06144117788294611 +60276,301.37999999976216,-0.061440008286700265 +60277,301.38499999976216,-0.06143883892046135 +60278,301.38999999976215,-0.06143766978414631 +60279,301.39499999976215,-0.061436500877672176 +60280,301.39999999976214,-0.061435332200956067 +60281,301.40499999976214,-0.061434163753915215 +60282,301.40999999976214,-0.061432995536466965 +60283,301.41499999976213,-0.061431827548528745 +60284,301.4199999997621,-0.061430659790018084 +60285,301.4249999997621,-0.0614294922608526 +60286,301.4299999997621,-0.061428324960950034 +60287,301.4349999997621,-0.061427157890228234 +60288,301.4399999997621,-0.0614259910486051 +60289,301.4449999997621,-0.06142482443599866 +60290,301.4499999997621,-0.06142365805232706 +60291,301.4549999997621,-0.06142249189750851 +60292,301.4599999997621,-0.06142132597146133 +60293,301.4649999997621,-0.061420160274103935 +60294,301.4699999997621,-0.06141899480535486 +60295,301.4749999997621,-0.06141782956513269 +60296,301.4799999997621,-0.06141666455335617 +60297,301.48499999976207,-0.06141549976994411 +60298,301.48999999976206,-0.061414335214815395 +60299,301.49499999976206,-0.061413170887889036 +60300,301.49999999976205,-0.06141200678908414 +60301,301.50499999976205,-0.06141084291831991 +60302,301.50999999976204,-0.06140967927551565 +60303,301.51499999976204,-0.061408515860590714 +60304,301.51999999976204,-0.061407352673464616 +60305,301.52499999976203,-0.06140618971405694 +60306,301.529999999762,-0.06140502698228737 +60307,301.534999999762,-0.06140386447807568 +60308,301.539999999762,-0.061402702201341725 +60309,301.544999999762,-0.061401540152005496 +60310,301.549999999762,-0.061400378329987036 +60311,301.554999999762,-0.061399216735206506 +60312,301.559999999762,-0.06139805536758418 +60313,301.564999999762,-0.06139689422704038 +60314,301.569999999762,-0.06139573331349556 +60315,301.574999999762,-0.06139457262687026 +60316,301.579999999762,-0.061393412167085104 +60317,301.584999999762,-0.061392251934060824 +60318,301.589999999762,-0.06139109192771824 +60319,301.59499999976197,-0.061389932147978256 +60320,301.59999999976196,-0.061388772594761894 +60321,301.60499999976196,-0.06138761326799025 +60322,301.60999999976195,-0.0613864541675845 +60323,301.61499999976195,-0.06138529529346597 +60324,301.61999999976194,-0.061384136645556024 +60325,301.62499999976194,-0.061382978223776134 +60326,301.62999999976194,-0.06138182002804787 +60327,301.63499999976193,-0.06138066205829289 +60328,301.6399999997619,-0.06137950431443294 +60329,301.6449999997619,-0.06137834679638988 +60330,301.6499999997619,-0.06137718950408563 +60331,301.6549999997619,-0.061376032437442246 +60332,301.6599999997619,-0.06137487559638183 +60333,301.6649999997619,-0.061373718980826594 +60334,301.6699999997619,-0.06137256259069886 +60335,301.6749999997619,-0.061371406425921024 +60336,301.6799999997619,-0.06137025048641556 +60337,301.6849999997619,-0.06136909477210506 +60338,301.6899999997619,-0.06136793928291219 +60339,301.6949999997619,-0.0613667840187597 +60340,301.69999999976187,-0.06136562897957046 +60341,301.70499999976187,-0.06136447416526741 +60342,301.70999999976186,-0.06136331957577359 +60343,301.71499999976186,-0.061362165211012114 +60344,301.71999999976185,-0.06136101107090619 +60345,301.72499999976185,-0.06135985715537913 +60346,301.72999999976184,-0.06135870346435433 +60347,301.73499999976184,-0.061357549997755285 +60348,301.73999999976184,-0.06135639675550556 +60349,301.74499999976183,-0.06135524373752881 +60350,301.7499999997618,-0.06135409094374879 +60351,301.7549999997618,-0.06135293837408935 +60352,301.7599999997618,-0.06135178602847441 +60353,301.7649999997618,-0.061350633906827996 +60354,301.7699999997618,-0.061349482009074224 +60355,301.7749999997618,-0.06134833033513728 +60356,301.7799999997618,-0.061347178884941456 +60357,301.7849999997618,-0.06134602765841112 +60358,301.7899999997618,-0.06134487665547074 +60359,301.7949999997618,-0.06134372587604487 +60360,301.7999999997618,-0.06134257532005815 +60361,301.8049999997618,-0.06134142498743528 +60362,301.80999999976177,-0.0613402748781011 +60363,301.81499999976177,-0.0613391249919805 +60364,301.81999999976176,-0.06133797532899847 +60365,301.82499999976176,-0.06133682588908009 +60366,301.82999999976175,-0.061335676672150514 +60367,301.83499999976175,-0.06133452767813499 +60368,301.83999999976174,-0.06133337890695887 +60369,301.84499999976174,-0.06133223035854756 +60370,301.84999999976174,-0.06133108203282657 +60371,301.85499999976173,-0.061329933929721504 +60372,301.8599999997617,-0.06132878604915804 +60373,301.8649999997617,-0.06132763839106196 +60374,301.8699999997617,-0.06132649095535908 +60375,301.8749999997617,-0.061325343741975374 +60376,301.8799999997617,-0.06132419675083685 +60377,301.8849999997617,-0.06132304998186962 +60378,301.8899999997617,-0.06132190343499988 +60379,301.8949999997617,-0.061320757110153924 +60380,301.8999999997617,-0.06131961100725811 +60381,301.9049999997617,-0.061318465126238876 +60382,301.9099999997617,-0.06131731946702277 +60383,301.9149999997617,-0.061316174029536416 +60384,301.91999999976167,-0.061315028813706506 +60385,301.92499999976167,-0.06131388381945983 +60386,301.92999999976166,-0.06131273904672327 +60387,301.93499999976166,-0.061311594495423775 +60388,301.93999999976165,-0.06131045016548839 +60389,301.94499999976165,-0.06130930605684424 +60390,301.94999999976164,-0.06130816216941854 +60391,301.95499999976164,-0.06130701850313856 +60392,301.95999999976164,-0.061305875057931704 +60393,301.96499999976163,-0.061304731833725416 +60394,301.9699999997616,-0.06130358883044724 +60395,301.9749999997616,-0.06130244604802481 +60396,301.9799999997616,-0.06130130348638581 +60397,301.9849999997616,-0.06130016114545805 +60398,301.9899999997616,-0.061299019025169404 +60399,301.9949999997616,-0.06129787712544781 +60400,301.9999999997616,-0.06129673544622132 +60401,302.0049999997616,-0.06129559398741806 +60402,302.0099999997616,-0.06129445274896622 +60403,302.0149999997616,-0.06129331173079409 +60404,302.0199999997616,-0.06129217093283002 +60405,302.0249999997616,-0.061291030355002475 +60406,302.02999999976157,-0.061289889997239985 +60407,302.03499999976157,-0.06128874985947116 +60408,302.03999999976156,-0.06128760994162467 +60409,302.04499999976156,-0.0612864702436293 +60410,302.04999999976155,-0.061285330765413905 +60411,302.05499999976155,-0.06128419150690742 +60412,302.05999999976154,-0.06128305246803886 +60413,302.06499999976154,-0.06128191364873733 +60414,302.06999999976154,-0.061280775048931986 +60415,302.07499999976153,-0.0612796366685521 +60416,302.0799999997615,-0.06127849850752701 +60417,302.0849999997615,-0.061277360565786115 +60418,302.0899999997615,-0.06127622284325892 +60419,302.0949999997615,-0.061275085339875 +60420,302.0999999997615,-0.06127394805556402 +60421,302.1049999997615,-0.061272810990255694 +60422,302.1099999997615,-0.06127167414387985 +60423,302.1149999997615,-0.06127053751636639 +60424,302.1199999997615,-0.06126940110764528 +60425,302.1249999997615,-0.061268264917646566 +60426,302.1299999997615,-0.061267128946300375 +60427,302.1349999997615,-0.06126599319353693 +60428,302.13999999976147,-0.061264857659286506 +60429,302.14499999976147,-0.06126372234347949 +60430,302.14999999976146,-0.06126258724604631 +60431,302.15499999976146,-0.061261452366917483 +60432,302.15999999976145,-0.06126031770602363 +60433,302.16499999976145,-0.061259183263295415 +60434,302.16999999976144,-0.0612580490386636 +60435,302.17499999976144,-0.06125691503205902 +60436,302.17999999976143,-0.06125578124341257 +60437,302.18499999976143,-0.06125464767265527 +60438,302.1899999997614,-0.061253514319718164 +60439,302.1949999997614,-0.06125238118453241 +60440,302.1999999997614,-0.061251248267029226 +60441,302.2049999997614,-0.06125011556713992 +60442,302.2099999997614,-0.06124898308479584 +60443,302.2149999997614,-0.06124785081992846 +60444,302.2199999997614,-0.061246718772469295 +60445,302.2249999997614,-0.06124558694234996 +60446,302.2299999997614,-0.06124445532950213 +60447,302.2349999997614,-0.061243323933857556 +60448,302.2399999997614,-0.061242192755348084 +60449,302.2449999997614,-0.061241061793905614 +60450,302.24999999976137,-0.06123993104946213 +60451,302.25499999976137,-0.0612388005219497 +60452,302.25999999976136,-0.06123767021130046 +60453,302.26499999976136,-0.06123654011744661 +60454,302.26999999976135,-0.06123541024032045 +60455,302.27499999976135,-0.061234280579854326 +60456,302.27999999976134,-0.06123315113598069 +60457,302.28499999976134,-0.06123202190863205 +60458,302.28999999976133,-0.061230892897741 +60459,302.29499999976133,-0.061229764103240186 +60460,302.2999999997613,-0.061228635525062344 +60461,302.3049999997613,-0.0612275071631403 +60462,302.3099999997613,-0.06122637901740693 +60463,302.3149999997613,-0.06122525108779519 +60464,302.3199999997613,-0.06122412337423812 +60465,302.3249999997613,-0.06122299587666882 +60466,302.3299999997613,-0.06122186859502047 +60467,302.3349999997613,-0.06122074152922633 +60468,302.3399999997613,-0.061219614679219735 +60469,302.3449999997613,-0.061218488044934065 +60470,302.3499999997613,-0.06121736162630282 +60471,302.3549999997613,-0.06121623542325953 +60472,302.35999999976127,-0.06121510943573782 +60473,302.36499999976127,-0.06121398366367139 +60474,302.36999999976126,-0.06121285810699399 +60475,302.37499999976126,-0.06121173276563948 +60476,302.37999999976125,-0.06121060763954177 +60477,302.38499999976125,-0.06120948272863483 +60478,302.38999999976124,-0.06120835803285273 +60479,302.39499999976124,-0.0612072335521296 +60480,302.39999999976123,-0.06120610928639964 +60481,302.40499999976123,-0.06120498523559712 +60482,302.4099999997612,-0.06120386139965639 +60483,302.4149999997612,-0.06120273777851186 +60484,302.4199999997612,-0.06120161437209802 +60485,302.4249999997612,-0.061200491180349446 +60486,302.4299999997612,-0.06119936820320075 +60487,302.4349999997612,-0.06119824544058665 +60488,302.4399999997612,-0.0611971228924419 +60489,302.4449999997612,-0.06119600055870137 +60490,302.4499999997612,-0.06119487843929997 +60491,302.4549999997612,-0.06119375653417268 +60492,302.4599999997612,-0.06119263484325455 +60493,302.4649999997612,-0.06119151336648074 +60494,302.46999999976117,-0.061190392103786406 +60495,302.47499999976117,-0.06118927105510686 +60496,302.47999999976116,-0.06118815022037741 +60497,302.48499999976116,-0.06118702959953349 +60498,302.48999999976115,-0.06118590919251057 +60499,302.49499999976115,-0.06118478899924419 +60500,302.49999999976114,-0.06118366901966998 +60501,302.50499999976114,-0.061182549253723635 +60502,302.50999999976113,-0.061181429701340904 +60503,302.51499999976113,-0.06118031036245762 +60504,302.5199999997611,-0.06117919123700968 +60505,302.5249999997611,-0.06117807232493304 +60506,302.5299999997611,-0.06117695362616375 +60507,302.5349999997611,-0.061175835140637916 +60508,302.5399999997611,-0.06117471686829171 +60509,302.5449999997611,-0.061173598809061376 +60510,302.5499999997611,-0.06117248096288321 +60511,302.5549999997611,-0.06117136332969362 +60512,302.5599999997611,-0.06117024590942903 +60513,302.5649999997611,-0.06116912870202596 +60514,302.5699999997611,-0.061168011707421005 +60515,302.5749999997611,-0.06116689492555081 +60516,302.57999999976107,-0.061165778356352105 +60517,302.58499999976107,-0.06116466199976168 +60518,302.58999999976106,-0.06116354585571638 +60519,302.59499999976106,-0.06116242992415313 +60520,302.59999999976105,-0.06116131420500892 +60521,302.60499999976105,-0.06116019869822083 +60522,302.60999999976104,-0.06115908340372596 +60523,302.61499999976104,-0.061157968321461524 +60524,302.61999999976103,-0.06115685345136477 +60525,302.62499999976103,-0.061155738793373035 +60526,302.629999999761,-0.061154624347423706 +60527,302.634999999761,-0.06115351011345425 +60528,302.639999999761,-0.06115239609140218 +60529,302.644999999761,-0.061151282281205116 +60530,302.649999999761,-0.061150168682800696 +60531,302.654999999761,-0.061149055296126666 +60532,302.659999999761,-0.06114794212112079 +60533,302.664999999761,-0.06114682915772096 +60534,302.669999999761,-0.06114571640586509 +60535,302.674999999761,-0.061144603865491164 +60536,302.679999999761,-0.06114349153653725 +60537,302.684999999761,-0.061142379418941475 +60538,302.68999999976097,-0.06114126751264202 +60539,302.69499999976097,-0.061140155817577126 +60540,302.69999999976096,-0.06113904433368514 +60541,302.70499999976096,-0.06113793306090442 +60542,302.70999999976095,-0.061136821999173425 +60543,302.71499999976095,-0.06113571114843067 +60544,302.71999999976094,-0.06113460050861475 +60545,302.72499999976094,-0.06113349007966429 +60546,302.72999999976093,-0.061132379861518 +60547,302.73499999976093,-0.06113126985411466 +60548,302.7399999997609,-0.061130160057393114 +60549,302.7449999997609,-0.061129050471292246 +60550,302.7499999997609,-0.06112794109575103 +60551,302.7549999997609,-0.06112683193070851 +60552,302.7599999997609,-0.06112572297610376 +60553,302.7649999997609,-0.06112461423187596 +60554,302.7699999997609,-0.061123505697964306 +60555,302.7749999997609,-0.06112239737430811 +60556,302.7799999997609,-0.06112128926084671 +60557,302.7849999997609,-0.06112018135751953 +60558,302.7899999997609,-0.06111907366426603 +60559,302.7949999997609,-0.06111796618102575 +60560,302.79999999976087,-0.06111685890773832 +60561,302.80499999976087,-0.06111575184434338 +60562,302.80999999976086,-0.06111464499078066 +60563,302.81499999976086,-0.06111353834698997 +60564,302.81999999976085,-0.06111243191291115 +60565,302.82499999976085,-0.06111132568848413 +60566,302.82999999976084,-0.06111021967364889 +60567,302.83499999976084,-0.061109113868345465 +60568,302.83999999976083,-0.061108008272513954 +60569,302.84499999976083,-0.06110690288609455 +60570,302.8499999997608,-0.061105797709027444 +60571,302.8549999997608,-0.061104692741252964 +60572,302.8599999997608,-0.06110358798271145 +60573,302.8649999997608,-0.06110248343334331 +60574,302.8699999997608,-0.06110137909308903 +60575,302.8749999997608,-0.06110027496188914 +60576,302.8799999997608,-0.06109917103968425 +60577,302.8849999997608,-0.06109806732641502 +60578,302.8899999997608,-0.06109696382202218 +60579,302.8949999997608,-0.0610958605264465 +60580,302.8999999997608,-0.061094757439628854 +60581,302.9049999997608,-0.061093654561510106 +60582,302.90999999976077,-0.061092551892031256 +60583,302.91499999976077,-0.06109144943113333 +60584,302.91999999976076,-0.0610903471787574 +60585,302.92499999976076,-0.061089245134844636 +60586,302.92999999976075,-0.06108814329933624 +60587,302.93499999976075,-0.06108704167217347 +60588,302.93999999976074,-0.06108594025329768 +60589,302.94499999976074,-0.061084839042650246 +60590,302.94999999976073,-0.061083738040172635 +60591,302.95499999976073,-0.06108263724580634 +60592,302.9599999997607,-0.06108153665949294 +60593,302.9649999997607,-0.06108043628117407 +60594,302.9699999997607,-0.061079336110791416 +60595,302.9749999997607,-0.06107823614828674 +60596,302.9799999997607,-0.061077136393601836 +60597,302.9849999997607,-0.061076036846678575 +60598,302.9899999997607,-0.06107493750745891 +60599,302.9949999997607,-0.06107383837588481 +60600,302.9999999997607,-0.06107273945189832 +60601,303.0049999997607,-0.06107164073544155 +60602,303.0099999997607,-0.061070542226456685 +60603,303.0149999997607,-0.06106944392488592 +60604,303.01999999976067,-0.06106834583067155 +60605,303.02499999976067,-0.06106724794375592 +60606,303.02999999976066,-0.06106615026408143 +60607,303.03499999976066,-0.06106505279159053 +60608,303.03999999976065,-0.061063955526225754 +60609,303.04499999976065,-0.06106285846792967 +60610,303.04999999976064,-0.0610617616166449 +60611,303.05499999976064,-0.06106066497231416 +60612,303.05999999976063,-0.06105956853488017 +60613,303.06499999976063,-0.06105847230428576 +60614,303.0699999997606,-0.061057376280473794 +60615,303.0749999997606,-0.06105628046338718 +60616,303.0799999997606,-0.06105518485296892 +60617,303.0849999997606,-0.06105408944916203 +60618,303.0899999997606,-0.061052994251909624 +60619,303.0949999997606,-0.06105189926115485 +60620,303.0999999997606,-0.06105080447684091 +60621,303.1049999997606,-0.06104970989891108 +60622,303.1099999997606,-0.06104861552730868 +60623,303.1149999997606,-0.06104752136197711 +60624,303.1199999997606,-0.06104642740285978 +60625,303.1249999997606,-0.06104533364990019 +60626,303.12999999976057,-0.0610442401030419 +60627,303.13499999976057,-0.061043146762228516 +60628,303.13999999976056,-0.061042053627403704 +60629,303.14499999976056,-0.061040960698511185 +60630,303.14999999976055,-0.061039867975494745 +60631,303.15499999976055,-0.06103877545829821 +60632,303.15999999976054,-0.061037683146865446 +60633,303.16499999976054,-0.061036591041140426 +60634,303.16999999976053,-0.06103549914106715 +60635,303.17499999976053,-0.06103440744658967 +60636,303.1799999997605,-0.061033315957652094 +60637,303.1849999997605,-0.0610322246741986 +60638,303.1899999997605,-0.061031133596173404 +60639,303.1949999997605,-0.06103004272352079 +60640,303.1999999997605,-0.06102895205618511 +60641,303.2049999997605,-0.06102786159411072 +60642,303.2099999997605,-0.06102677133724208 +60643,303.2149999997605,-0.06102568128552371 +60644,303.2199999997605,-0.061024591438900135 +60645,303.2249999997605,-0.06102350179731597 +60646,303.2299999997605,-0.06102241236071589 +60647,303.2349999997605,-0.06102132312904462 +60648,303.23999999976047,-0.06102023410224692 +60649,303.24499999976047,-0.061019145280267625 +60650,303.24999999976046,-0.06101805666305163 +60651,303.25499999976046,-0.061016968250543854 +60652,303.25999999976045,-0.061015880042689305 +60653,303.26499999976045,-0.061014792039433004 +60654,303.26999999976044,-0.06101370424072008 +60655,303.27499999976044,-0.061012616646495675 +60656,303.27999999976043,-0.06101152925670499 +60657,303.28499999976043,-0.061010442071293296 +60658,303.2899999997604,-0.06100935509020591 +60659,303.2949999997604,-0.0610082683133882 +60660,303.2999999997604,-0.061007181740785586 +60661,303.3049999997604,-0.06100609537234354 +60662,303.3099999997604,-0.061005009208007596 +60663,303.3149999997604,-0.061003923247723336 +60664,303.3199999997604,-0.061002837491436396 +60665,303.3249999997604,-0.06100175193909247 +60666,303.3299999997604,-0.0610006665906373 +60667,303.3349999997604,-0.060999581446016665 +60668,303.3399999997604,-0.060998496505176435 +60669,303.3449999997604,-0.06099741176806249 +60670,303.34999999976037,-0.06099632723462081 +60671,303.35499999976037,-0.06099524290479738 +60672,303.35999999976036,-0.06099415877853827 +60673,303.36499999976036,-0.06099307485578957 +60674,303.36999999976035,-0.06099199113649746 +60675,303.37499999976035,-0.06099090762060816 +60676,303.37999999976034,-0.06098982430806791 +60677,303.38499999976034,-0.06098874119882307 +60678,303.38999999976033,-0.06098765829281998 +60679,303.39499999976033,-0.06098657559000506 +60680,303.3999999997603,-0.06098549309032481 +60681,303.4049999997603,-0.06098441079372575 +60682,303.4099999997603,-0.060983328700154445 +60683,303.4149999997603,-0.060982246809557536 +60684,303.4199999997603,-0.0609811651218817 +60685,303.4249999997603,-0.060980083637073676 +60686,303.4299999997603,-0.06097900235508024 +60687,303.4349999997603,-0.06097792127584822 +60688,303.4399999997603,-0.060976840399324515 +60689,303.4449999997603,-0.06097575972545606 +60690,303.4499999997603,-0.06097467925418984 +60691,303.4549999997603,-0.060973598985472895 +60692,303.45999999976027,-0.06097251891925231 +60693,303.46499999976027,-0.06097143905547523 +60694,303.46999999976026,-0.06097035939408886 +60695,303.47499999976026,-0.06096927993504042 +60696,303.47999999976025,-0.06096820067827721 +60697,303.48499999976025,-0.06096712162374658 +60698,303.48999999976024,-0.060966042771395904 +60699,303.49499999976024,-0.060964964121172645 +60700,303.49999999976023,-0.06096388567302428 +60701,303.50499999976023,-0.06096280742689835 +60702,303.5099999997602,-0.06096172938274246 +60703,303.5149999997602,-0.06096065154050426 +60704,303.5199999997602,-0.06095957390013142 +60705,303.5249999997602,-0.0609584964615717 +60706,303.5299999997602,-0.06095741922477288 +60707,303.5349999997602,-0.0609563421896828 +60708,303.5399999997602,-0.06095526535624936 +60709,303.5449999997602,-0.06095418872442049 +60710,303.5499999997602,-0.06095311229414419 +60711,303.5549999997602,-0.06095203606536849 +60712,303.5599999997602,-0.06095096003804147 +60713,303.5649999997602,-0.06094988421211129 +60714,303.56999999976017,-0.060948808587526104 +60715,303.57499999976017,-0.060947733164234165 +60716,303.57999999976016,-0.06094665794218376 +60717,303.58499999976016,-0.060945582921323224 +60718,303.58999999976015,-0.06094450810160092 +60719,303.59499999976015,-0.06094343348296528 +60720,303.59999999976014,-0.060942359065364785 +60721,303.60499999976014,-0.06094128484874796 +60722,303.60999999976013,-0.06094021083306338 +60723,303.61499999976013,-0.06093913701825966 +60724,303.6199999997601,-0.06093806340428549 +60725,303.6249999997601,-0.06093698999108956 +60726,303.6299999997601,-0.06093591677862067 +60727,303.6349999997601,-0.0609348437668276 +60728,303.6399999997601,-0.06093377095565923 +60729,303.6449999997601,-0.06093269834506447 +60730,303.6499999997601,-0.06093162593499227 +60731,303.6549999997601,-0.060930553725391634 +60732,303.6599999997601,-0.06092948171621161 +60733,303.6649999997601,-0.06092840990740132 +60734,303.6699999997601,-0.06092733829890989 +60735,303.6749999997601,-0.060926266890686524 +60736,303.67999999976007,-0.060925195682680455 +60737,303.68499999976007,-0.060924124674840985 +60738,303.68999999976006,-0.06092305386711743 +60739,303.69499999976006,-0.06092198325945918 +60740,303.69999999976005,-0.060920912851815674 +60741,303.70499999976005,-0.060919842644136385 +60742,303.70999999976004,-0.060918772636370834 +60743,303.71499999976004,-0.060917702828468576 +60744,303.71999999976003,-0.060916633220379254 +60745,303.72499999976003,-0.060915563812052514 +60746,303.72999999976,-0.060914494603438056 +60747,303.73499999976,-0.06091342559448565 +60748,303.73999999976,-0.06091235678514508 +60749,303.74499999976,-0.06091128817536621 +60750,303.74999999976,-0.06091021976509893 +60751,303.75499999976,-0.06090915155429319 +60752,303.75999999976,-0.06090808354289895 +60753,303.76499999976,-0.060907015730866265 +60754,303.76999999976,-0.06090594811814519 +60755,303.77499999976,-0.06090488070468587 +60756,303.77999999976,-0.060903813490438455 +60757,303.78499999976,-0.06090274647535317 +60758,303.78999999975997,-0.06090167965938028 +60759,303.79499999975997,-0.06090061304247007 +60760,303.79999999975996,-0.060899546624572906 +60761,303.80499999975996,-0.06089848040563918 +60762,303.80999999975995,-0.06089741438561933 +60763,303.81499999975995,-0.06089634856446384 +60764,303.81999999975994,-0.06089528294212325 +60765,303.82499999975994,-0.06089421751854812 +60766,303.82999999975993,-0.06089315229368907 +60767,303.83499999975993,-0.06089208726749678 +60768,303.8399999997599,-0.060891022439921956 +60769,303.8449999997599,-0.06088995781091535 +60770,303.8499999997599,-0.06088889338042776 +60771,303.8549999997599,-0.06088782914841004 +60772,303.8599999997599,-0.06088676511481304 +60773,303.8649999997599,-0.06088570127958775 +60774,303.8699999997599,-0.060884637642685105 +60775,303.8749999997599,-0.060883574204056136 +60776,303.8799999997599,-0.06088251096365191 +60777,303.8849999997599,-0.06088144792142353 +60778,303.8899999997599,-0.06088038507732216 +60779,303.8949999997599,-0.06087932243129899 +60780,303.89999999975987,-0.060878259983305254 +60781,303.90499999975987,-0.06087719773329225 +60782,303.90999999975986,-0.060876135681211294 +60783,303.91499999975986,-0.06087507382701378 +60784,303.91999999975985,-0.0608740121706511 +60785,303.92499999975985,-0.060872950712074714 +60786,303.92999999975984,-0.06087188945123613 +60787,303.93499999975984,-0.06087082838808689 +60788,303.93999999975983,-0.06086976752257858 +60789,303.94499999975983,-0.06086870685466285 +60790,303.9499999997598,-0.060867646384291346 +60791,303.9549999997598,-0.060866586111415814 +60792,303.9599999997598,-0.060865526035988 +60793,303.9649999997598,-0.0608644661579597 +60794,303.9699999997598,-0.060863406477282785 +60795,303.9749999997598,-0.06086234699390911 +60796,303.9799999997598,-0.06086128770779064 +60797,303.9849999997598,-0.06086022861887933 +60798,303.9899999997598,-0.06085916972712721 +60799,303.9949999997598,-0.06085811103248632 +60800,303.9999999997598,-0.06085705253490878 +60801,304.0049999997598,-0.060855994234346726 +60802,304.00999999975977,-0.06085493613075235 +60803,304.01499999975977,-0.060853878224077874 +60804,304.01999999975976,-0.06085282051427557 +60805,304.02499999975976,-0.06085176300129774 +60806,304.02999999975975,-0.06085070568509677 +60807,304.03499999975975,-0.06084964856562503 +60808,304.03999999975974,-0.06084859164283496 +60809,304.04499999975974,-0.060847534916679054 +60810,304.04999999975973,-0.06084647838710981 +60811,304.05499999975973,-0.06084542205407982 +60812,304.0599999997597,-0.060844365917541665 +60813,304.0649999997597,-0.06084330997744802 +60814,304.0699999997597,-0.06084225423375153 +60815,304.0749999997597,-0.06084119868640497 +60816,304.0799999997597,-0.06084014333536108 +60817,304.0849999997597,-0.060839088180572674 +60818,304.0899999997597,-0.06083803322199262 +60819,304.0949999997597,-0.0608369784595738 +60820,304.0999999997597,-0.06083592389326915 +60821,304.1049999997597,-0.06083486952303166 +60822,304.1099999997597,-0.06083381534881433 +60823,304.1149999997597,-0.06083276137057021 +60824,304.11999999975967,-0.06083170758825242 +60825,304.12499999975967,-0.06083065400181408 +60826,304.12999999975966,-0.06082960061120838 +60827,304.13499999975966,-0.06082854741638853 +60828,304.13999999975965,-0.0608274944173078 +60829,304.14499999975965,-0.06082644161391949 +60830,304.14999999975964,-0.060825389006176935 +60831,304.15499999975964,-0.06082433659403352 +60832,304.15999999975963,-0.06082328437744268 +60833,304.16499999975963,-0.06082223235635784 +60834,304.1699999997596,-0.06082118053073254 +60835,304.1749999997596,-0.06082012890052029 +60836,304.1799999997596,-0.060819077465674685 +60837,304.1849999997596,-0.060818026226149347 +60838,304.1899999997596,-0.06081697518189793 +60839,304.1949999997596,-0.060815924332874145 +60840,304.1999999997596,-0.06081487367903174 +60841,304.2049999997596,-0.06081382322032447 +60842,304.2099999997596,-0.060812772956706174 +60843,304.2149999997596,-0.060811722888130706 +60844,304.2199999997596,-0.06081067301455195 +60845,304.2249999997596,-0.06080962333592386 +60846,304.22999999975957,-0.06080857385220041 +60847,304.23499999975957,-0.06080752456333562 +60848,304.23999999975956,-0.06080647546928353 +60849,304.24499999975956,-0.060805426569998246 +60850,304.24999999975955,-0.06080437786543389 +60851,304.25499999975955,-0.060803329355544646 +60852,304.25999999975954,-0.06080228104028473 +60853,304.26499999975954,-0.060801232919608365 +60854,304.26999999975953,-0.060800184993469855 +60855,304.27499999975953,-0.06079913726182353 +60856,304.2799999997595,-0.06079808972462375 +60857,304.2849999997595,-0.06079704238182492 +60858,304.2899999997595,-0.06079599523338149 +60859,304.2949999997595,-0.06079494827924793 +60860,304.2999999997595,-0.06079390151937877 +60861,304.3049999997595,-0.060792854953728555 +60862,304.3099999997595,-0.06079180858225189 +60863,304.3149999997595,-0.06079076240490341 +60864,304.3199999997595,-0.06078971642163777 +60865,304.3249999997595,-0.06078867063240969 +60866,304.3299999997595,-0.06078762503717393 +60867,304.3349999997595,-0.06078657963588526 +60868,304.33999999975947,-0.06078553442849851 +60869,304.34499999975947,-0.060784489414968536 +60870,304.34999999975946,-0.060783444595250244 +60871,304.35499999975946,-0.060782399969298566 +60872,304.35999999975945,-0.06078135553706848 +60873,304.36499999975945,-0.06078031129851499 +60874,304.36999999975944,-0.06077926725359315 +60875,304.37499999975944,-0.06077822340225804 +60876,304.37999999975943,-0.06077717974446479 +60877,304.38499999975943,-0.060776136280168556 +60878,304.3899999997594,-0.06077509300932455 +60879,304.3949999997594,-0.06077404993188799 +60880,304.3999999997594,-0.06077300704781416 +60881,304.4049999997594,-0.06077196435705837 +60882,304.4099999997594,-0.06077092185957595 +60883,304.4149999997594,-0.060769879555322294 +60884,304.4199999997594,-0.06076883744425283 +60885,304.4249999997594,-0.060767795526323 +60886,304.4299999997594,-0.060766753801488306 +60887,304.4349999997594,-0.06076571226970428 +60888,304.4399999997594,-0.06076467093092649 +60889,304.4449999997594,-0.060763629785110525 +60890,304.44999999975937,-0.060762588832212035 +60891,304.45499999975937,-0.060761548072186686 +60892,304.45999999975936,-0.0607605075049902 +60893,304.46499999975936,-0.06075946713057833 +60894,304.46999999975935,-0.06075842694890686 +60895,304.47499999975935,-0.060757386959931596 +60896,304.47999999975934,-0.060756347163608414 +60897,304.48499999975934,-0.060755307559893196 +60898,304.48999999975933,-0.06075426814874187 +60899,304.49499999975933,-0.06075322893011041 +60900,304.4999999997593,-0.060752189903954805 +60901,304.5049999997593,-0.06075115107023109 +60902,304.5099999997593,-0.06075011242889535 +60903,304.5149999997593,-0.06074907397990369 +60904,304.5199999997593,-0.06074803572321224 +60905,304.5249999997593,-0.06074699765877719 +60906,304.5299999997593,-0.060745959786554754 +60907,304.5349999997593,-0.06074492210650118 +60908,304.5399999997593,-0.060743884618572754 +60909,304.5449999997593,-0.06074284732272579 +60910,304.5499999997593,-0.060741810218916656 +60911,304.5549999997593,-0.06074077330710174 +60912,304.55999999975927,-0.06073973658723746 +60913,304.56499999975927,-0.06073870005928029 +60914,304.56999999975926,-0.060737663723186716 +60915,304.57499999975926,-0.06073662757891327 +60916,304.57999999975925,-0.06073559162641652 +60917,304.58499999975925,-0.060734555865653066 +60918,304.58999999975924,-0.060733520296579545 +60919,304.59499999975924,-0.060732484919152625 +60920,304.59999999975923,-0.060731449733329015 +60921,304.60499999975923,-0.06073041473906545 +60922,304.6099999997592,-0.06072937993631871 +60923,304.6149999997592,-0.0607283453250456 +60924,304.6199999997592,-0.060727310905202954 +60925,304.6249999997592,-0.06072627667674766 +60926,304.6299999997592,-0.06072524263963662 +60927,304.6349999997592,-0.06072420879382679 +60928,304.6399999997592,-0.06072317513927516 +60929,304.6449999997592,-0.060722141675938715 +60930,304.6499999997592,-0.060721108403774524 +60931,304.6549999997592,-0.06072007532273966 +60932,304.6599999997592,-0.060719042432791255 +60933,304.6649999997592,-0.06071800973388645 +60934,304.66999999975917,-0.06071697722598242 +60935,304.67499999975917,-0.060715944909036396 +60936,304.67999999975916,-0.060714912783005615 +60937,304.68499999975916,-0.06071388084784738 +60938,304.68999999975915,-0.060712849103519005 +60939,304.69499999975915,-0.060711817549977835 +60940,304.69999999975914,-0.06071078618718126 +60941,304.70499999975914,-0.0607097550150867 +60942,304.70999999975913,-0.06070872403365161 +60943,304.71499999975913,-0.06070769324283346 +60944,304.7199999997591,-0.060706662642589795 +60945,304.7249999997591,-0.06070563223287814 +60946,304.7299999997591,-0.060704602013656114 +60947,304.7349999997591,-0.060703571984881306 +60948,304.7399999997591,-0.06070254214651139 +60949,304.7449999997591,-0.06070151249850403 +60950,304.7499999997591,-0.06070048304081696 +60951,304.7549999997591,-0.06069945377340793 +60952,304.7599999997591,-0.06069842469623471 +60953,304.7649999997591,-0.06069739580925513 +60954,304.7699999997591,-0.06069636711242704 +60955,304.7749999997591,-0.06069533860570832 +60956,304.77999999975907,-0.06069431028905688 +60957,304.78499999975907,-0.06069328216243067 +60958,304.78999999975906,-0.060692254225787653 +60959,304.79499999975906,-0.06069122647908587 +60960,304.79999999975905,-0.06069019892228335 +60961,304.80499999975905,-0.060689171555338164 +60962,304.80999999975904,-0.060688144378208436 +60963,304.81499999975904,-0.060687117390852294 +60964,304.81999999975903,-0.060686090593227916 +60965,304.82499999975903,-0.060685063985293525 +60966,304.829999999759,-0.06068403756700734 +60967,304.834999999759,-0.06068301133832763 +60968,304.839999999759,-0.0606819852992127 +60969,304.844999999759,-0.06068095944962089 +60970,304.849999999759,-0.06067993378951056 +60971,304.854999999759,-0.060678908318840104 +60972,304.859999999759,-0.06067788303756795 +60973,304.864999999759,-0.06067685794565257 +60974,304.869999999759,-0.06067583304305245 +60975,304.874999999759,-0.060674808329726104 +60976,304.879999999759,-0.0606737838056321 +60977,304.884999999759,-0.06067275947072902 +60978,304.88999999975897,-0.06067173532497549 +60979,304.89499999975897,-0.060670711368330146 +60980,304.89999999975896,-0.060669687600751684 +60981,304.90499999975896,-0.06066866402219881 +60982,304.90999999975895,-0.06066764063263027 +60983,304.91499999975895,-0.06066661743200483 +60984,304.91999999975894,-0.06066559442028131 +60985,304.92499999975894,-0.06066457159741853 +60986,304.92999999975893,-0.06066354896337538 +60987,304.93499999975893,-0.060662526518110736 +60988,304.9399999997589,-0.060661504261583545 +60989,304.9449999997589,-0.06066048219375276 +60990,304.9499999997589,-0.060659460314577376 +60991,304.9549999997589,-0.06065843862401641 +60992,304.9599999997589,-0.06065741712202892 +60993,304.9649999997589,-0.060656395808573994 +60994,304.9699999997589,-0.060655374683610735 +60995,304.9749999997589,-0.06065435374709829 +60996,304.9799999997589,-0.060653332998995835 +60997,304.9849999997589,-0.06065231243926259 +60998,304.9899999997589,-0.06065129206785777 +60999,304.9949999997589,-0.06065027188474066 +61000,304.99999999975887,-0.06064925188987054 +61001,305.00499999975887,-0.06064823208320675 +61002,305.00999999975886,-0.060647212464708646 +61003,305.01499999975886,-0.06064619303433561 +61004,305.01999999975885,-0.060645173792047063 +61005,305.02499999975885,-0.06064415473780246 +61006,305.02999999975884,-0.060643135871561255 +61007,305.03499999975884,-0.060642117193282975 +61008,305.03999999975883,-0.06064109870292715 +61009,305.04499999975883,-0.06064008040045336 +61010,305.0499999997588,-0.06063906228582119 +61011,305.0549999997588,-0.060638044358990256 +61012,305.0599999997588,-0.06063702661992024 +61013,305.0649999997588,-0.0606360090685708 +61014,305.0699999997588,-0.06063499170490168 +61015,305.0749999997588,-0.0606339745288726 +61016,305.0799999997588,-0.06063295754044336 +61017,305.0849999997588,-0.06063194073957374 +61018,305.0899999997588,-0.06063092412622359 +61019,305.0949999997588,-0.06062990770035276 +61020,305.0999999997588,-0.06062889146192116 +61021,305.1049999997588,-0.060627875410888696 +61022,305.10999999975877,-0.06062685954721532 +61023,305.11499999975877,-0.06062584387086102 +61024,305.11999999975876,-0.06062482838178579 +61025,305.12499999975876,-0.060623813079949684 +61026,305.12999999975875,-0.06062279796531276 +61027,305.13499999975875,-0.060621783037835116 +61028,305.13999999975874,-0.060620768297476875 +61029,305.14499999975874,-0.060619753744198195 +61030,305.14999999975873,-0.06061873937795926 +61031,305.15499999975873,-0.06061772519872027 +61032,305.1599999997587,-0.060616711206441465 +61033,305.1649999997587,-0.06061569740108313 +61034,305.1699999997587,-0.06061468378260554 +61035,305.1749999997587,-0.06061367035096905 +61036,305.1799999997587,-0.060612657106133984 +61037,305.1849999997587,-0.06061164404806074 +61038,305.1899999997587,-0.060610631176709735 +61039,305.1949999997587,-0.06060961849204139 +61040,305.1999999997587,-0.06060860599401619 +61041,305.2049999997587,-0.060607593682594614 +61042,305.2099999997587,-0.0606065815577372 +61043,305.2149999997587,-0.06060556961940449 +61044,305.21999999975867,-0.06060455786755708 +61045,305.22499999975867,-0.060603546302155566 +61046,305.22999999975866,-0.06060253492316059 +61047,305.23499999975866,-0.060601523730532805 +61048,305.23999999975865,-0.06060051272423291 +61049,305.24499999975865,-0.06059950190422164 +61050,305.24999999975864,-0.060598491270459735 +61051,305.25499999975864,-0.06059748082290795 +61052,305.25999999975863,-0.060596470561527116 +61053,305.26499999975863,-0.060595460486278056 +61054,305.2699999997586,-0.060594450597121624 +61055,305.2749999997586,-0.06059344089401871 +61056,305.2799999997586,-0.06059243137693024 +61057,305.2849999997586,-0.06059142204581713 +61058,305.2899999997586,-0.06059041290064038 +61059,305.2949999997586,-0.060589403941360954 +61060,305.2999999997586,-0.06058839516793991 +61061,305.3049999997586,-0.06058738658033828 +61062,305.3099999997586,-0.060586378178517135 +61063,305.3149999997586,-0.060585369962437595 +61064,305.3199999997586,-0.060584361932060786 +61065,305.3249999997586,-0.060583354087347885 +61066,305.32999999975857,-0.06058234642826007 +61067,305.33499999975857,-0.060581338954758535 +61068,305.33999999975856,-0.06058033166680456 +61069,305.34499999975856,-0.06057932456435937 +61070,305.34999999975855,-0.0605783176473843 +61071,305.35499999975855,-0.06057731091584064 +61072,305.35999999975854,-0.06057630436968977 +61073,305.36499999975854,-0.060575298008893046 +61074,305.36999999975853,-0.06057429183341188 +61075,305.37499999975853,-0.06057328584320769 +61076,305.3799999997585,-0.06057228003824193 +61077,305.3849999997585,-0.060571274418476095 +61078,305.3899999997585,-0.0605702689838717 +61079,305.3949999997585,-0.06056926373439026 +61080,305.3999999997585,-0.06056825866999336 +61081,305.4049999997585,-0.06056725379064257 +61082,305.4099999997585,-0.06056624909629952 +61083,305.4149999997585,-0.060565244586925845 +61084,305.4199999997585,-0.060564240262483214 +61085,305.4249999997585,-0.06056323612293331 +61086,305.4299999997585,-0.060562232168237855 +61087,305.4349999997585,-0.060561228398358626 +61088,305.43999999975847,-0.06056022481325735 +61089,305.44499999975847,-0.06055922141289585 +61090,305.44999999975846,-0.06055821819723596 +61091,305.45499999975846,-0.06055721516623952 +61092,305.45999999975845,-0.060556212319868394 +61093,305.46499999975845,-0.060555209658084495 +61094,305.46999999975844,-0.06055420718084976 +61095,305.47499999975844,-0.060553204888126134 +61096,305.47999999975843,-0.06055220277987559 +61097,305.48499999975843,-0.06055120085606015 +61098,305.4899999997584,-0.060550199116641834 +61099,305.4949999997584,-0.0605491975615827 +61100,305.4999999997584,-0.06054819619084484 +61101,305.5049999997584,-0.06054719500439033 +61102,305.5099999997584,-0.060546194002181336 +61103,305.5149999997584,-0.06054519318418002 +61104,305.5199999997584,-0.060544192550348555 +61105,305.5249999997584,-0.06054319210064915 +61106,305.5299999997584,-0.060542191835044036 +61107,305.5349999997584,-0.06054119175349548 +61108,305.5399999997584,-0.06054019185596576 +61109,305.5449999997584,-0.060539192142417195 +61110,305.54999999975837,-0.06053819261281211 +61111,305.55499999975837,-0.06053719326711288 +61112,305.55999999975836,-0.060536194105281896 +61113,305.56499999975836,-0.06053519512728155 +61114,305.56999999975835,-0.06053419633307431 +61115,305.57499999975835,-0.06053319772262259 +61116,305.57999999975834,-0.06053219929588892 +61117,305.58499999975834,-0.060531201052835784 +61118,305.58999999975833,-0.060530202993425736 +61119,305.59499999975833,-0.06052920511762132 +61120,305.5999999997583,-0.060528207425385123 +61121,305.6049999997583,-0.060527209916679765 +61122,305.6099999997583,-0.060526212591467884 +61123,305.6149999997583,-0.06052521544971212 +61124,305.6199999997583,-0.06052421849137518 +61125,305.6249999997583,-0.06052322171641976 +61126,305.6299999997583,-0.060522225124808586 +61127,305.6349999997583,-0.06052122871650444 +61128,305.6399999997583,-0.06052023249147009 +61129,305.6449999997583,-0.06051923644966833 +61130,305.6499999997583,-0.06051824059106201 +61131,305.6549999997583,-0.06051724491561397 +61132,305.65999999975827,-0.06051624942328711 +61133,305.66499999975827,-0.06051525411404431 +61134,305.66999999975826,-0.060514258987848506 +61135,305.67499999975826,-0.06051326404466265 +61136,305.67999999975825,-0.060512269284449714 +61137,305.68499999975825,-0.06051127470717272 +61138,305.68999999975824,-0.060510280312794665 +61139,305.69499999975824,-0.060509286101278606 +61140,305.69999999975823,-0.06050829207258762 +61141,305.70499999975823,-0.0605072982266848 +61142,305.7099999997582,-0.06050630456353325 +61143,305.7149999997582,-0.06050531108309613 +61144,305.7199999997582,-0.06050431778533661 +61145,305.7249999997582,-0.06050332467021788 +61146,305.7299999997582,-0.06050233173770315 +61147,305.7349999997582,-0.06050133898775564 +61148,305.7399999997582,-0.06050034642033864 +61149,305.7449999997582,-0.06049935403541544 +61150,305.7499999997582,-0.060498361832949314 +61151,305.7549999997582,-0.06049736981290363 +61152,305.7599999997582,-0.06049637797524172 +61153,305.7649999997582,-0.060495386319926965 +61154,305.76999999975817,-0.06049439484692279 +61155,305.77499999975817,-0.06049340355619259 +61156,305.77999999975816,-0.06049241244769984 +61157,305.78499999975816,-0.060491421521408004 +61158,305.78999999975815,-0.060490430777280564 +61159,305.79499999975815,-0.06048944021528106 +61160,305.79999999975814,-0.060488449835373034 +61161,305.80499999975814,-0.06048745963752004 +61162,305.80999999975813,-0.06048646962168564 +61163,305.81499999975813,-0.0604854797878335 +61164,305.8199999997581,-0.060484490135927216 +61165,305.8249999997581,-0.060483500665930466 +61166,305.8299999997581,-0.06048251137780691 +61167,305.8349999997581,-0.06048152227152026 +61168,305.8399999997581,-0.06048053334703425 +61169,305.8449999997581,-0.060479544604312624 +61170,305.8499999997581,-0.06047855604331915 +61171,305.8549999997581,-0.060477567664017615 +61172,305.8599999997581,-0.060476579466371846 +61173,305.8649999997581,-0.06047559145034568 +61174,305.8699999997581,-0.06047460361590298 +61175,305.8749999997581,-0.06047361596300763 +61176,305.87999999975807,-0.06047262849162354 +61177,305.88499999975807,-0.06047164120171463 +61178,305.88999999975806,-0.06047065409324486 +61179,305.89499999975806,-0.0604696671661782 +61180,305.89999999975805,-0.06046868042047865 +61181,305.90499999975805,-0.06046769385611022 +61182,305.90999999975804,-0.060466707473036965 +61183,305.91499999975804,-0.06046572127122293 +61184,305.91999999975803,-0.06046473525063223 +61185,305.92499999975803,-0.060463749411228944 +61186,305.929999999758,-0.060462763752977225 +61187,305.934999999758,-0.06046177827584121 +61188,305.939999999758,-0.060460792979785086 +61189,305.944999999758,-0.06045980786477303 +61190,305.949999999758,-0.060458822930769276 +61191,305.954999999758,-0.06045783817773805 +61192,305.959999999758,-0.06045685360564363 +61193,305.964999999758,-0.06045586921445029 +61194,305.969999999758,-0.06045488500412235 +61195,305.974999999758,-0.06045390097462412 +61196,305.979999999758,-0.06045291712591996 +61197,305.984999999758,-0.060451933457974234 +61198,305.98999999975797,-0.06045094997075134 +61199,305.99499999975797,-0.0604499666642157 +61200,305.99999999975796,-0.06044898353833173 +61201,306.00499999975796,-0.06044800059306391 +61202,306.00999999975795,-0.0604470178283767 +61203,306.01499999975795,-0.06044603524423462 +61204,306.01999999975794,-0.06044505284060219 +61205,306.02499999975794,-0.060444070617443925 +61206,306.02999999975793,-0.06044308857472443 +61207,306.03499999975793,-0.06044210671240826 +61208,306.0399999997579,-0.06044112503046004 +61209,306.0449999997579,-0.0604401435288444 +61210,306.0499999997579,-0.06043916220752598 +61211,306.0549999997579,-0.06043818106646947 +61212,306.0599999997579,-0.06043720010563955 +61213,306.0649999997579,-0.06043621932500092 +61214,306.0699999997579,-0.06043523872451834 +61215,306.0749999997579,-0.06043425830415656 +61216,306.0799999997579,-0.06043327806388035 +61217,306.0849999997579,-0.06043229800365451 +61218,306.0899999997579,-0.06043131812344386 +61219,306.0949999997579,-0.06043033842321324 +61220,306.09999999975787,-0.06042935890292752 +61221,306.10499999975787,-0.06042837956255157 +61222,306.10999999975786,-0.06042740040205031 +61223,306.11499999975786,-0.060426421421388654 +61224,306.11999999975785,-0.060425442620531546 +61225,306.12499999975785,-0.06042446399944394 +61226,306.12999999975784,-0.06042348555809083 +61227,306.13499999975784,-0.060422507296437236 +61228,306.13999999975783,-0.06042152921444817 +61229,306.14499999975783,-0.06042055131208869 +61230,306.1499999997578,-0.06041957358932385 +61231,306.1549999997578,-0.06041859604611875 +61232,306.1599999997578,-0.0604176186824385 +61233,306.1649999997578,-0.06041664149824823 +61234,306.1699999997578,-0.06041566449351308 +61235,306.1749999997578,-0.06041468766819823 +61236,306.1799999997578,-0.06041371102226887 +61237,306.1849999997578,-0.06041273455569021 +61238,306.1899999997578,-0.06041175826842749 +61239,306.1949999997578,-0.06041078216044595 +61240,306.1999999997578,-0.06040980623171086 +61241,306.2049999997578,-0.06040883048218753 +61242,306.20999999975777,-0.06040785491184126 +61243,306.21499999975777,-0.06040687952063738 +61244,306.21999999975776,-0.06040590430854125 +61245,306.22499999975776,-0.06040492927551824 +61246,306.22999999975775,-0.060403954421533755 +61247,306.23499999975775,-0.06040297974655319 +61248,306.23999999975774,-0.06040200525054198 +61249,306.24499999975774,-0.06040103093346558 +61250,306.24999999975773,-0.060400056795289474 +61251,306.25499999975773,-0.06039908283597915 +61252,306.2599999997577,-0.0603981090555001 +61253,306.2649999997577,-0.06039713545381787 +61254,306.2699999997577,-0.06039616203089801 +61255,306.2749999997577,-0.0603951887867061 +61256,306.2799999997577,-0.060394215721207734 +61257,306.2849999997577,-0.06039324283436851 +61258,306.2899999997577,-0.060392270126154064 +61259,306.2949999997577,-0.06039129759653004 +61260,306.2999999997577,-0.06039032524546211 +61261,306.3049999997577,-0.060389353072915965 +61262,306.3099999997577,-0.06038838107885732 +61263,306.3149999997577,-0.060387409263251896 +61264,306.31999999975767,-0.060386437626065444 +61265,306.32499999975767,-0.06038546616726373 +61266,306.32999999975766,-0.06038449488681254 +61267,306.33499999975766,-0.060383523784677665 +61268,306.33999999975765,-0.060382552860824945 +61269,306.34499999975765,-0.060381582115220225 +61270,306.34999999975764,-0.06038061154782937 +61271,306.35499999975764,-0.06037964115861827 +61272,306.35999999975763,-0.06037867094755281 +61273,306.36499999975763,-0.0603777009145989 +61274,306.3699999997576,-0.0603767310597225 +61275,306.3749999997576,-0.06037576138288957 +61276,306.3799999997576,-0.060374791884066074 +61277,306.3849999997576,-0.06037382256321803 +61278,306.3899999997576,-0.06037285342031143 +61279,306.3949999997576,-0.06037188445531233 +61280,306.3999999997576,-0.06037091566818677 +61281,306.4049999997576,-0.06036994705890082 +61282,306.4099999997576,-0.06036897862742059 +61283,306.4149999997576,-0.060368010373712165 +61284,306.4199999997576,-0.06036704229774171 +61285,306.4249999997576,-0.06036607439947534 +61286,306.42999999975757,-0.06036510667887923 +61287,306.43499999975757,-0.06036413913591957 +61288,306.43999999975756,-0.06036317177056256 +61289,306.44499999975756,-0.06036220458277443 +61290,306.44999999975755,-0.0603612375725214 +61291,306.45499999975755,-0.06036027073976976 +61292,306.45999999975754,-0.060359304084485775 +61293,306.46499999975754,-0.06035833760663573 +61294,306.46999999975753,-0.06035737130618595 +61295,306.47499999975753,-0.060356405183102764 +61296,306.4799999997575,-0.060355439237352544 +61297,306.4849999997575,-0.06035447346890163 +61298,306.4899999997575,-0.06035350787771644 +61299,306.4949999997575,-0.060352542463763356 +61300,306.4999999997575,-0.06035157722700882 +61301,306.5049999997575,-0.06035061216741927 +61302,306.5099999997575,-0.060349647284961165 +61303,306.5149999997575,-0.06034868257960099 +61304,306.5199999997575,-0.06034771805130524 +61305,306.5249999997575,-0.060346753700040424 +61306,306.5299999997575,-0.06034578952577309 +61307,306.5349999997575,-0.06034482552846979 +61308,306.53999999975747,-0.06034386170809708 +61309,306.54499999975747,-0.060342898064621564 +61310,306.54999999975746,-0.06034193459800984 +61311,306.55499999975746,-0.06034097130822855 +61312,306.55999999975745,-0.06034000819524431 +61313,306.56499999975745,-0.06033904525902379 +61314,306.56999999975744,-0.06033808249953367 +61315,306.57499999975744,-0.06033711991674065 +61316,306.57999999975743,-0.06033615751061143 +61317,306.58499999975743,-0.06033519528111276 +61318,306.5899999997574,-0.060334233228211374 +61319,306.5949999997574,-0.060333271351874045 +61320,306.5999999997574,-0.06033230965206757 +61321,306.6049999997574,-0.06033134812875872 +61322,306.6099999997574,-0.060330386781914346 +61323,306.6149999997574,-0.060329425611501265 +61324,306.6199999997574,-0.060328464617486345 +61325,306.6249999997574,-0.06032750379983645 +61326,306.6299999997574,-0.06032654315851848 +61327,306.6349999997574,-0.06032558269349933 +61328,306.6399999997574,-0.06032462240474594 +61329,306.6449999997574,-0.06032366229222524 +61330,306.64999999975737,-0.06032270235590419 +61331,306.65499999975737,-0.06032174259574977 +61332,306.65999999975736,-0.06032078301172898 +61333,306.66499999975736,-0.06031982360380883 +61334,306.66999999975735,-0.06031886437195634 +61335,306.67499999975735,-0.060317905316138565 +61336,306.67999999975734,-0.06031694643632257 +61337,306.68499999975734,-0.06031598773247542 +61338,306.68999999975733,-0.060315029204564226 +61339,306.69499999975733,-0.0603140708525561 +61340,306.6999999997573,-0.06031311267641819 +61341,306.7049999997573,-0.06031215467611761 +61342,306.7099999997573,-0.06031119685162156 +61343,306.7149999997573,-0.06031023920289721 +61344,306.7199999997573,-0.06030928172991175 +61345,306.7249999997573,-0.060308324432632406 +61346,306.7299999997573,-0.060307367311026414 +61347,306.7349999997573,-0.06030641036506103 +61348,306.7399999997573,-0.06030545359470351 +61349,306.7449999997573,-0.060304496999921145 +61350,306.7499999997573,-0.06030354058068123 +61351,306.7549999997573,-0.0603025843369511 +61352,306.75999999975727,-0.06030162826869807 +61353,306.76499999975726,-0.06030067237588951 +61354,306.76999999975726,-0.06029971665849277 +61355,306.77499999975726,-0.06029876111647525 +61356,306.77999999975725,-0.06029780574980434 +61357,306.78499999975725,-0.06029685055844746 +61358,306.78999999975724,-0.06029589554237205 +61359,306.79499999975724,-0.06029494070154557 +61360,306.79999999975723,-0.06029398603593548 +61361,306.80499999975723,-0.06029303154550925 +61362,306.8099999997572,-0.0602920772302344 +61363,306.8149999997572,-0.06029112309007843 +61364,306.8199999997572,-0.06029016912500889 +61365,306.8249999997572,-0.06028921533499333 +61366,306.8299999997572,-0.06028826171999931 +61367,306.8349999997572,-0.06028730827999442 +61368,306.8399999997572,-0.06028635501494624 +61369,306.8449999997572,-0.06028540192482241 +61370,306.8499999997572,-0.06028444900959055 +61371,306.8549999997572,-0.060283496269218306 +61372,306.8599999997572,-0.06028254370367334 +61373,306.8649999997572,-0.06028159131292334 +61374,306.86999999975717,-0.060280639096936 +61375,306.87499999975716,-0.060279687055679036 +61376,306.87999999975716,-0.06027873518912017 +61377,306.88499999975716,-0.06027778349722715 +61378,306.88999999975715,-0.06027683197996774 +61379,306.89499999975715,-0.060275880637309716 +61380,306.89999999975714,-0.06027492946922087 +61381,306.90499999975714,-0.06027397847566901 +61382,306.90999999975713,-0.060273027656621965 +61383,306.91499999975713,-0.060272077012047565 +61384,306.9199999997571,-0.060271126541913675 +61385,306.9249999997571,-0.060270176246188176 +61386,306.9299999997571,-0.06026922612483894 +61387,306.9349999997571,-0.06026827617783387 +61388,306.9399999997571,-0.060267326405140896 +61389,306.9449999997571,-0.06026637680672795 +61390,306.9499999997571,-0.06026542738256299 +61391,306.9549999997571,-0.06026447813261397 +61392,306.9599999997571,-0.06026352905684888 +61393,306.9649999997571,-0.06026258015523572 +61394,306.9699999997571,-0.060261631427742504 +61395,306.9749999997571,-0.06026068287433725 +61396,306.97999999975707,-0.060259734494988025 +61397,306.98499999975706,-0.060258786289662865 +61398,306.98999999975706,-0.06025783825832987 +61399,306.99499999975706,-0.06025689040095712 +61400,306.99999999975705,-0.06025594271751271 +61401,307.00499999975705,-0.06025499520796478 +61402,307.00999999975704,-0.060254047872281474 +61403,307.01499999975704,-0.060253100710430926 +61404,307.01999999975703,-0.06025215372238131 +61405,307.02499999975703,-0.06025120690810081 +61406,307.029999999757,-0.060250260267557636 +61407,307.034999999757,-0.06024931380071999 +61408,307.039999999757,-0.06024836750755611 +61409,307.044999999757,-0.06024742138803424 +61410,307.049999999757,-0.060246475442122645 +61411,307.054999999757,-0.06024552966978959 +61412,307.059999999757,-0.06024458407100336 +61413,307.064999999757,-0.060243638645732275 +61414,307.069999999757,-0.06024269339394465 +61415,307.074999999757,-0.060241748315608835 +61416,307.079999999757,-0.06024080341069316 +61417,307.084999999757,-0.060239858679165995 +61418,307.08999999975697,-0.06023891412099573 +61419,307.09499999975696,-0.06023796973615076 +61420,307.09999999975696,-0.06023702552459949 +61421,307.10499999975696,-0.06023608148631034 +61422,307.10999999975695,-0.060235137621251766 +61423,307.11499999975695,-0.06023419392939222 +61424,307.11999999975694,-0.06023325041070016 +61425,307.12499999975694,-0.0602323070651441 +61426,307.12999999975693,-0.06023136389269251 +61427,307.13499999975693,-0.06023042089331392 +61428,307.1399999997569,-0.06022947806697685 +61429,307.1449999997569,-0.060228535413649864 +61430,307.1499999997569,-0.06022759293330151 +61431,307.1549999997569,-0.06022665062590035 +61432,307.1599999997569,-0.06022570849141498 +61433,307.1649999997569,-0.060224766529814004 +61434,307.1699999997569,-0.06022382474106606 +61435,307.1749999997569,-0.060222883125139744 +61436,307.1799999997569,-0.06022194168200373 +61437,307.1849999997569,-0.060221000411626674 +61438,307.1899999997569,-0.060220059313977246 +61439,307.1949999997569,-0.06021911838902415 +61440,307.19999999975687,-0.06021817763673607 +61441,307.20499999975686,-0.06021723705708175 +61442,307.20999999975686,-0.060216296650029894 +61443,307.21499999975686,-0.060215356415549266 +61444,307.21999999975685,-0.06021441635360863 +61445,307.22499999975685,-0.06021347646417677 +61446,307.22999999975684,-0.06021253674722246 +61447,307.23499999975684,-0.06021159720271452 +61448,307.23999999975683,-0.06021065783062176 +61449,307.2449999997568,-0.06020971863091302 +61450,307.2499999997568,-0.060208779603557146 +61451,307.2549999997568,-0.06020784074852301 +61452,307.2599999997568,-0.06020690206577947 +61453,307.2649999997568,-0.06020596355529544 +61454,307.2699999997568,-0.060205025217039805 +61455,307.2749999997568,-0.0602040870509815 +61456,307.2799999997568,-0.06020314905708945 +61457,307.2849999997568,-0.0602022112353326 +61458,307.2899999997568,-0.060201273585679914 +61459,307.2949999997568,-0.06020033610810036 +61460,307.2999999997568,-0.06019939880256294 +61461,307.3049999997568,-0.06019846166903665 +61462,307.30999999975677,-0.060197524707490506 +61463,307.31499999975676,-0.06019658791789354 +61464,307.31999999975676,-0.06019565130021481 +61465,307.32499999975676,-0.060194714854423355 +61466,307.32999999975675,-0.06019377858048826 +61467,307.33499999975675,-0.06019284247837861 +61468,307.33999999975674,-0.0601919065480635 +61469,307.34499999975674,-0.06019097078951205 +61470,307.34999999975673,-0.06019003520269338 +61471,307.3549999997567,-0.06018909978757665 +61472,307.3599999997567,-0.060188164544131 +61473,307.3649999997567,-0.0601872294723256 +61474,307.3699999997567,-0.060186294572129644 +61475,307.3749999997567,-0.060185359843512316 +61476,307.3799999997567,-0.060184425286442834 +61477,307.3849999997567,-0.0601834909008904 +61478,307.3899999997567,-0.06018255668682428 +61479,307.3949999997567,-0.06018162264421372 +61480,307.3999999997567,-0.06018068877302797 +61481,307.4049999997567,-0.06017975507323632 +61482,307.4099999997567,-0.06017882154480806 +61483,307.4149999997567,-0.0601778881877125 +61484,307.41999999975667,-0.06017695500191894 +61485,307.42499999975666,-0.06017602198739672 +61486,307.42999999975666,-0.06017508914411521 +61487,307.43499999975666,-0.06017415647204374 +61488,307.43999999975665,-0.06017322397115167 +61489,307.44499999975665,-0.06017229164140842 +61490,307.44999999975664,-0.060171359482783376 +61491,307.45499999975664,-0.06017042749524593 +61492,307.45999999975663,-0.06016949567876553 +61493,307.4649999997566,-0.06016856403331161 +61494,307.4699999997566,-0.06016763255885363 +61495,307.4749999997566,-0.060166701255361034 +61496,307.4799999997566,-0.06016577012280331 +61497,307.4849999997566,-0.060164839161149945 +61498,307.4899999997566,-0.06016390837037045 +61499,307.4949999997566,-0.06016297775043434 +61500,307.4999999997566,-0.060162047301311146 +61501,307.5049999997566,-0.06016111702297042 +61502,307.5099999997566,-0.0601601869153817 +61503,307.5149999997566,-0.06015925697851456 +61504,307.5199999997566,-0.06015832721233861 +61505,307.5249999997566,-0.060157397616823406 +61506,307.52999999975657,-0.060156468191938574 +61507,307.53499999975656,-0.06015553893765375 +61508,307.53999999975656,-0.06015460985393854 +61509,307.54499999975656,-0.060153680940762615 +61510,307.54999999975655,-0.06015275219809563 +61511,307.55499999975655,-0.06015182362590724 +61512,307.55999999975654,-0.06015089522416716 +61513,307.56499999975654,-0.06014996699284507 +61514,307.56999999975653,-0.06014903893191068 +61515,307.5749999997565,-0.060148111041333725 +61516,307.5799999997565,-0.06014718332108393 +61517,307.5849999997565,-0.060146255771131064 +61518,307.5899999997565,-0.06014532839144488 +61519,307.5949999997565,-0.06014440118199515 +61520,307.5999999997565,-0.06014347414275166 +61521,307.6049999997565,-0.06014254727368422 +61522,307.6099999997565,-0.060141620574762626 +61523,307.6149999997565,-0.06014069404595672 +61524,307.6199999997565,-0.06013976768723633 +61525,307.6249999997565,-0.06013884149857133 +61526,307.6299999997565,-0.06013791547993155 +61527,307.6349999997565,-0.06013698963128688 +61528,307.63999999975647,-0.06013606395260722 +61529,307.64499999975646,-0.06013513844386246 +61530,307.64999999975646,-0.06013421310502251 +61531,307.65499999975646,-0.0601332879360573 +61532,307.65999999975645,-0.06013236293693677 +61533,307.66499999975645,-0.060131438107630886 +61534,307.66999999975644,-0.06013051344810958 +61535,307.67499999975644,-0.060129588958342854 +61536,307.67999999975643,-0.06012866463830068 +61537,307.6849999997564,-0.060127740487953066 +61538,307.6899999997564,-0.060126816507270024 +61539,307.6949999997564,-0.060125892696221574 +61540,307.6999999997564,-0.06012496905477775 +61541,307.7049999997564,-0.06012404558290861 +61542,307.7099999997564,-0.06012312228058422 +61543,307.7149999997564,-0.06012219914777464 +61544,307.7199999997564,-0.06012127618444996 +61545,307.7249999997564,-0.06012035339058028 +61546,307.7299999997564,-0.06011943076613571 +61547,307.7349999997564,-0.06011850831108637 +61548,307.7399999997564,-0.0601175860254024 +61549,307.7449999997564,-0.06011666390905396 +61550,307.74999999975637,-0.06011574196201117 +61551,307.75499999975636,-0.06011482018424424 +61552,307.75999999975636,-0.06011389857572333 +61553,307.76499999975636,-0.06011297713641864 +61554,307.76999999975635,-0.06011205586630037 +61555,307.77499999975635,-0.06011113476533875 +61556,307.77999999975634,-0.060110213833504005 +61557,307.78499999975634,-0.06010929307076639 +61558,307.78999999975633,-0.06010837247709613 +61559,307.7949999997563,-0.06010745205246352 +61560,307.7999999997563,-0.06010653179683882 +61561,307.8049999997563,-0.06010561171019234 +61562,307.8099999997563,-0.06010469179249435 +61563,307.8149999997563,-0.0601037720437152 +61564,307.8199999997563,-0.060102852463825185 +61565,307.8249999997563,-0.06010193305279467 +61566,307.8299999997563,-0.06010101381059397 +61567,307.8349999997563,-0.06010009473719347 +61568,307.8399999997563,-0.06009917583256355 +61569,307.8449999997563,-0.06009825709667457 +61570,307.8499999997563,-0.06009733852949694 +61571,307.8549999997563,-0.060096420131001055 +61572,307.85999999975627,-0.06009550190115735 +61573,307.86499999975626,-0.06009458383993625 +61574,307.86999999975626,-0.060093665947308195 +61575,307.87499999975626,-0.06009274822324365 +61576,307.87999999975625,-0.06009183066771306 +61577,307.88499999975625,-0.06009091328068691 +61578,307.88999999975624,-0.060089996062135685 +61579,307.89499999975624,-0.0600890790120299 +61580,307.89999999975623,-0.06008816213034005 +61581,307.9049999997562,-0.060087245417036673 +61582,307.9099999997562,-0.060086328872090276 +61583,307.9149999997562,-0.06008541249547143 +61584,307.9199999997562,-0.060084496287150686 +61585,307.9249999997562,-0.06008358024709861 +61586,307.9299999997562,-0.06008266437528579 +61587,307.9349999997562,-0.06008174867168282 +61588,307.9399999997562,-0.06008083313626028 +61589,307.9449999997562,-0.06007991776898881 +61590,307.9499999997562,-0.06007900256983901 +61591,307.9549999997562,-0.060078087538781536 +61592,307.9599999997562,-0.06007717267578703 +61593,307.9649999997562,-0.060076257980826143 +61594,307.96999999975617,-0.06007534345386955 +61595,307.97499999975616,-0.06007442909488795 +61596,307.97999999975616,-0.060073514903852 +61597,307.98499999975616,-0.06007260088073244 +61598,307.98999999975615,-0.060071687025499955 +61599,307.99499999975615,-0.06007077333812529 +61600,307.99999999975614,-0.06006985981857918 +61601,308.00499999975614,-0.06006894646683236 +61602,308.00999999975613,-0.06006803328285561 +61603,308.0149999997561,-0.060067120266619686 +61604,308.0199999997561,-0.060066207418095374 +61605,308.0249999997561,-0.060065294737253465 +61606,308.0299999997561,-0.06006438222406477 +61607,308.0349999997561,-0.060063469878500086 +61608,308.0399999997561,-0.06006255770053025 +61609,308.0449999997561,-0.0600616456901261 +61610,308.0499999997561,-0.06006073384725848 +61611,308.0549999997561,-0.06005982217189825 +61612,308.0599999997561,-0.06005891066401628 +61613,308.0649999997561,-0.060057999323583446 +61614,308.0699999997561,-0.060057088150570634 +61615,308.0749999997561,-0.060056177144948764 +61616,308.07999999975607,-0.06005526630668874 +61617,308.08499999975606,-0.06005435563576147 +61618,308.08999999975606,-0.06005344513213791 +61619,308.09499999975606,-0.06005253479578899 +61620,308.09999999975605,-0.060051624626685667 +61621,308.10499999975605,-0.06005071462479891 +61622,308.10999999975604,-0.06004980479009971 +61623,308.11499999975604,-0.060048895122559044 +61624,308.11999999975603,-0.06004798562214791 +61625,308.124999999756,-0.060047076288837306 +61626,308.129999999756,-0.06004616712259826 +61627,308.134999999756,-0.06004525812340181 +61628,308.139999999756,-0.060044349291219 +61629,308.144999999756,-0.06004344062602086 +61630,308.149999999756,-0.06004253212777846 +61631,308.154999999756,-0.06004162379646289 +61632,308.159999999756,-0.06004071563204522 +61633,308.164999999756,-0.06003980763449654 +61634,308.169999999756,-0.06003889980378797 +61635,308.174999999756,-0.06003799213989062 +61636,308.179999999756,-0.0600370846427756 +61637,308.184999999756,-0.060036177312414056 +61638,308.18999999975597,-0.060035270148777145 +61639,308.19499999975596,-0.060034363151836 +61640,308.19999999975596,-0.06003345632156182 +61641,308.20499999975596,-0.06003254965792576 +61642,308.20999999975595,-0.06003164316089901 +61643,308.21499999975595,-0.06003073683045277 +61644,308.21999999975594,-0.06002983066655825 +61645,308.22499999975594,-0.06002892466918668 +61646,308.22999999975593,-0.060028018838309265 +61647,308.2349999997559,-0.060027113173897265 +61648,308.2399999997559,-0.06002620767592193 +61649,308.2449999997559,-0.0600253023443545 +61650,308.2499999997559,-0.06002439717916627 +61651,308.2549999997559,-0.06002349218032851 +61652,308.2599999997559,-0.0600225873478125 +61653,308.2649999997559,-0.060021682681589555 +61654,308.2699999997559,-0.06002077818163099 +61655,308.2749999997559,-0.06001987384790812 +61656,308.2799999997559,-0.06001896968039226 +61657,308.2849999997559,-0.06001806567905479 +61658,308.2899999997559,-0.06001716184386703 +61659,308.2949999997559,-0.06001625817480036 +61660,308.29999999975587,-0.06001535467182613 +61661,308.30499999975586,-0.06001445133491574 +61662,308.30999999975586,-0.06001354816404057 +61663,308.31499999975586,-0.06001264515917204 +61664,308.31999999975585,-0.06001174232028156 +61665,308.32499999975585,-0.06001083964734053 +61666,308.32999999975584,-0.06000993714032041 +61667,308.33499999975584,-0.06000903479919262 +61668,308.33999999975583,-0.060008132623928616 +61669,308.3449999997558,-0.060007230614499876 +61670,308.3499999997558,-0.06000632877087786 +61671,308.3549999997558,-0.060005427093034046 +61672,308.3599999997558,-0.060004525580939945 +61673,308.3649999997558,-0.06000362423456703 +61674,308.3699999997558,-0.06000272305388684 +61675,308.3749999997558,-0.06000182203887088 +61676,308.3799999997558,-0.060000921189490686 +61677,308.3849999997558,-0.0600000205057178 +61678,308.3899999997558,-0.05999911998752377 +61679,308.3949999997558,-0.05999821963488016 +61680,308.3999999997558,-0.05999731944775853 +61681,308.4049999997558,-0.05999641942613047 +61682,308.40999999975577,-0.05999551956996757 +61683,308.41499999975576,-0.05999461987924143 +61684,308.41999999975576,-0.05999372035392365 +61685,308.42499999975576,-0.05999282099398586 +61686,308.42999999975575,-0.05999192179939969 +61687,308.43499999975575,-0.059991022770136765 +61688,308.43999999975574,-0.05999012390616875 +61689,308.44499999975574,-0.05998922520746729 +61690,308.44999999975573,-0.059988326674004055 +61691,308.4549999997557,-0.059987428305750726 +61692,308.4599999997557,-0.05998653010267899 +61693,308.4649999997557,-0.05998563206476053 +61694,308.4699999997557,-0.059984734191967065 +61695,308.4749999997557,-0.0599838364842703 +61696,308.4799999997557,-0.05998293894164198 +61697,308.4849999997557,-0.05998204156405382 +61698,308.4899999997557,-0.059981144351477556 +61699,308.4949999997557,-0.05998024730388495 +61700,308.4999999997557,-0.059979350421247773 +61701,308.5049999997557,-0.0599784537035378 +61702,308.5099999997557,-0.0599775571507268 +61703,308.5149999997557,-0.059976660762786564 +61704,308.51999999975567,-0.0599757645396889 +61705,308.52499999975566,-0.05997486848140561 +61706,308.52999999975566,-0.05997397258790852 +61707,308.53499999975566,-0.05997307685916945 +61708,308.53999999975565,-0.05997218129516024 +61709,308.54499999975565,-0.059971285895852745 +61710,308.54999999975564,-0.059970390661218814 +61711,308.55499999975564,-0.05996949559123031 +61712,308.55999999975563,-0.059968600685859116 +61713,308.5649999997556,-0.0599677059450771 +61714,308.5699999997556,-0.05996681136885617 +61715,308.5749999997556,-0.059965916957168235 +61716,308.5799999997556,-0.059965022709985195 +61717,308.5849999997556,-0.05996412862727897 +61718,308.5899999997556,-0.05996323470902149 +61719,308.5949999997556,-0.059962340955184705 +61720,308.5999999997556,-0.05996144736574054 +61721,308.6049999997556,-0.05996055394066097 +61722,308.6099999997556,-0.059959660679917974 +61723,308.6149999997556,-0.05995876758348351 +61724,308.6199999997556,-0.05995787465132956 +61725,308.6249999997556,-0.05995698188342813 +61726,308.62999999975557,-0.059956089279751226 +61727,308.63499999975556,-0.05995519684027085 +61728,308.63999999975556,-0.05995430456495902 +61729,308.64499999975556,-0.059953412453787776 +61730,308.64999999975555,-0.05995252050672916 +61731,308.65499999975555,-0.05995162872375521 +61732,308.65999999975554,-0.05995073710483798 +61733,308.66499999975554,-0.059949845649949554 +61734,308.66999999975553,-0.059948954359062 +61735,308.6749999997555,-0.059948063232147394 +61736,308.6799999997555,-0.059947172269177826 +61737,308.6849999997555,-0.059946281470125415 +61738,308.6899999997555,-0.05994539083496227 +61739,308.6949999997555,-0.059944500363660495 +61740,308.6999999997555,-0.059943610056192226 +61741,308.7049999997555,-0.05994271991252961 +61742,308.7099999997555,-0.0599418299326448 +61743,308.7149999997555,-0.059940940116509925 +61744,308.7199999997555,-0.05994005046409716 +61745,308.7249999997555,-0.05993916097537867 +61746,308.7299999997555,-0.059938271650326655 +61747,308.7349999997555,-0.0599373824889133 +61748,308.73999999975547,-0.0599364934911108 +61749,308.74499999975546,-0.05993560465689136 +61750,308.74999999975546,-0.059934715986227204 +61751,308.75499999975546,-0.059933827479090554 +61752,308.75999999975545,-0.05993293913545365 +61753,308.76499999975545,-0.05993205095528873 +61754,308.76999999975544,-0.05993116293856804 +61755,308.77499999975544,-0.05993027508526384 +61756,308.77999999975543,-0.059929387395348414 +61757,308.7849999997554,-0.05992849986879402 +61758,308.7899999997554,-0.05992761250557297 +61759,308.7949999997554,-0.05992672530565753 +61760,308.7999999997554,-0.059925838269020024 +61761,308.8049999997554,-0.059924951395632746 +61762,308.8099999997554,-0.05992406468546803 +61763,308.8149999997554,-0.0599231781384982 +61764,308.8199999997554,-0.05992229175469559 +61765,308.8249999997554,-0.05992140553403256 +61766,308.8299999997554,-0.059920519476481464 +61767,308.8349999997554,-0.059919633582014645 +61768,308.8399999997554,-0.05991874785060449 +61769,308.8449999997554,-0.05991786228222337 +61770,308.84999999975537,-0.05991697687684368 +61771,308.85499999975536,-0.05991609163443782 +61772,308.85999999975536,-0.0599152065549782 +61773,308.86499999975536,-0.05991432163843722 +61774,308.86999999975535,-0.059913436884787306 +61775,308.87499999975535,-0.05991255229400089 +61776,308.87999999975534,-0.05991166786605042 +61777,308.88499999975534,-0.05991078360090833 +61778,308.88999999975533,-0.059909899498547095 +61779,308.8949999997553,-0.05990901555893916 +61780,308.8999999997553,-0.059908131782057 +61781,308.9049999997553,-0.05990724816787311 +61782,308.9099999997553,-0.05990636471635996 +61783,308.9149999997553,-0.05990548142749006 +61784,308.9199999997553,-0.05990459830123591 +61785,308.9249999997553,-0.059903715337570024 +61786,308.9299999997553,-0.05990283253646493 +61787,308.9349999997553,-0.05990194989789316 +61788,308.9399999997553,-0.05990106742182725 +61789,308.9449999997553,-0.05990018510823974 +61790,308.9499999997553,-0.05989930295710319 +61791,308.9549999997553,-0.059898420968390154 +61792,308.95999999975527,-0.05989753914207323 +61793,308.96499999975526,-0.05989665747812498 +61794,308.96999999975526,-0.05989577597651798 +61795,308.97499999975525,-0.05989489463722485 +61796,308.97999999975525,-0.05989401346021819 +61797,308.98499999975525,-0.0598931324454706 +61798,308.98999999975524,-0.05989225159295471 +61799,308.99499999975524,-0.05989137090264313 +61800,308.99999999975523,-0.05989049037450853 +61801,309.0049999997552,-0.05988961000852353 +61802,309.0099999997552,-0.059888729804660784 +61803,309.0149999997552,-0.05988784976289296 +61804,309.0199999997552,-0.05988696988319272 +61805,309.0249999997552,-0.05988609016553275 +61806,309.0299999997552,-0.05988521060988573 +61807,309.0349999997552,-0.05988433121622436 +61808,309.0399999997552,-0.05988345198452133 +61809,309.0449999997552,-0.05988257291474935 +61810,309.0499999997552,-0.059881694006881134 +61811,309.0549999997552,-0.059880815260889425 +61812,309.0599999997552,-0.05987993667674694 +61813,309.0649999997552,-0.05987905825442641 +61814,309.06999999975517,-0.059878179993900604 +61815,309.07499999975516,-0.05987730189514227 +61816,309.07999999975516,-0.05987642395812418 +61817,309.08499999975515,-0.059875546182819095 +61818,309.08999999975515,-0.0598746685691998 +61819,309.09499999975515,-0.05987379111723908 +61820,309.09999999975514,-0.05987291382690973 +61821,309.10499999975514,-0.05987203669818455 +61822,309.10999999975513,-0.05987115973103636 +61823,309.1149999997551,-0.05987028292543798 +61824,309.1199999997551,-0.05986940628136222 +61825,309.1249999997551,-0.05986852979878193 +61826,309.1299999997551,-0.05986765347766996 +61827,309.1349999997551,-0.05986677731799914 +61828,309.1399999997551,-0.059865901319742336 +61829,309.1449999997551,-0.059865025482872425 +61830,309.1499999997551,-0.059864149807362266 +61831,309.1549999997551,-0.05986327429318475 +61832,309.1599999997551,-0.05986239894031275 +61833,309.1649999997551,-0.05986152374871916 +61834,309.1699999997551,-0.05986064871837692 +61835,309.1749999997551,-0.05985977384925892 +61836,309.17999999975507,-0.05985889914133806 +61837,309.18499999975506,-0.05985802459458729 +61838,309.18999999975506,-0.05985715020897955 +61839,309.19499999975505,-0.059856275984487756 +61840,309.19999999975505,-0.05985540192108488 +61841,309.20499999975505,-0.059854528018743865 +61842,309.20999999975504,-0.05985365427743768 +61843,309.21499999975504,-0.05985278069713931 +61844,309.21999999975503,-0.05985190727782173 +61845,309.224999999755,-0.05985103401945791 +61846,309.229999999755,-0.059850160922020876 +61847,309.234999999755,-0.0598492879854836 +61848,309.239999999755,-0.05984841520981911 +61849,309.244999999755,-0.05984754259500042 +61850,309.249999999755,-0.05984667014100056 +61851,309.254999999755,-0.05984579784779256 +61852,309.259999999755,-0.05984492571534943 +61853,309.264999999755,-0.059844053743644265 +61854,309.269999999755,-0.0598431819326501 +61855,309.274999999755,-0.059842310282339994 +61856,309.279999999755,-0.05984143879268702 +61857,309.284999999755,-0.05984056746366424 +61858,309.28999999975497,-0.059839696295244764 +61859,309.29499999975496,-0.05983882528740168 +61860,309.29999999975496,-0.05983795444010808 +61861,309.30499999975495,-0.05983708375333707 +61862,309.30999999975495,-0.059836213227061764 +61863,309.31499999975495,-0.05983534286125529 +61864,309.31999999975494,-0.059834472655890765 +61865,309.32499999975494,-0.059833602610941325 +61866,309.32999999975493,-0.05983273272638013 +61867,309.3349999997549,-0.05983186300218032 +61868,309.3399999997549,-0.05983099343831505 +61869,309.3449999997549,-0.05983012403475749 +61870,309.3499999997549,-0.05982925479148081 +61871,309.3549999997549,-0.059828385708458186 +61872,309.3599999997549,-0.05982751678566281 +61873,309.3649999997549,-0.05982664802306788 +61874,309.3699999997549,-0.05982577942064658 +61875,309.3749999997549,-0.05982491097837215 +61876,309.3799999997549,-0.05982404269621777 +61877,309.3849999997549,-0.059823174574156694 +61878,309.3899999997549,-0.05982230661216214 +61879,309.3949999997549,-0.05982143881020733 +61880,309.39999999975487,-0.059820571168265516 +61881,309.40499999975486,-0.05981970368630996 +61882,309.40999999975486,-0.059818836364313926 +61883,309.41499999975485,-0.059817969202250666 +61884,309.41999999975485,-0.05981710220009346 +61885,309.42499999975485,-0.059816235357815585 +61886,309.42999999975484,-0.05981536867539032 +61887,309.43499999975484,-0.059814502152790966 +61888,309.43999999975483,-0.05981363578999083 +61889,309.4449999997548,-0.059812769586963216 +61890,309.4499999997548,-0.05981190354368144 +61891,309.4549999997548,-0.05981103766011882 +61892,309.4599999997548,-0.05981017193624868 +61893,309.4649999997548,-0.059809306372044374 +61894,309.4699999997548,-0.059808440967479226 +61895,309.4749999997548,-0.05980757572252661 +61896,309.4799999997548,-0.05980671063715985 +61897,309.4849999997548,-0.05980584571135235 +61898,309.4899999997548,-0.05980498094507745 +61899,309.4949999997548,-0.05980411633830853 +61900,309.4999999997548,-0.059803251891019 +61901,309.5049999997548,-0.059802387603182225 +61902,309.50999999975477,-0.05980152347477163 +61903,309.51499999975476,-0.05980065950576059 +61904,309.51999999975476,-0.059799795696122544 +61905,309.52499999975475,-0.059798932045830894 +61906,309.52999999975475,-0.059798068554859085 +61907,309.53499999975475,-0.05979720522318053 +61908,309.53999999975474,-0.059796342050768676 +61909,309.54499999975474,-0.05979547903759698 +61910,309.54999999975473,-0.059794616183638884 +61911,309.5549999997547,-0.059793753488867854 +61912,309.5599999997547,-0.059792890953257356 +61913,309.5649999997547,-0.05979202857678086 +61914,309.5699999997547,-0.05979116635941186 +61915,309.5749999997547,-0.059790304301123844 +61916,309.5799999997547,-0.05978944240189028 +61917,309.5849999997547,-0.05978858066168471 +61918,309.5899999997547,-0.05978771908048061 +61919,309.5949999997547,-0.05978685765825151 +61920,309.5999999997547,-0.059785996394970925 +61921,309.6049999997547,-0.05978513529061239 +61922,309.6099999997547,-0.05978427434514943 +61923,309.6149999997547,-0.0597834135585556 +61924,309.61999999975467,-0.05978255293080443 +61925,309.62499999975466,-0.0597816924618695 +61926,309.62999999975466,-0.059780832151724354 +61927,309.63499999975465,-0.05977997200034257 +61928,309.63999999975465,-0.059779112007697706 +61929,309.64499999975465,-0.05977825217376336 +61930,309.64999999975464,-0.059777392498513125 +61931,309.65499999975464,-0.05977653298192058 +61932,309.65999999975463,-0.05977567362395934 +61933,309.6649999997546,-0.05977481442460301 +61934,309.6699999997546,-0.0597739553838252 +61935,309.6749999997546,-0.059773096501599524 +61936,309.6799999997546,-0.05977223777789963 +61937,309.6849999997546,-0.05977137921269915 +61938,309.6899999997546,-0.059770520805971714 +61939,309.6949999997546,-0.05976966255769098 +61940,309.6999999997546,-0.059768804467830595 +61941,309.7049999997546,-0.05976794653636422 +61942,309.7099999997546,-0.05976708876326552 +61943,309.7149999997546,-0.05976623114850817 +61944,309.7199999997546,-0.059765373692065867 +61945,309.7249999997546,-0.059764516393912274 +61946,309.72999999975457,-0.05976365925402109 +61947,309.73499999975456,-0.05976280227236603 +61948,309.73999999975456,-0.059761945448920786 +61949,309.74499999975455,-0.05976108878365908 +61950,309.74999999975455,-0.059760232276554616 +61951,309.75499999975455,-0.05975937592758113 +61952,309.75999999975454,-0.05975851973671236 +61953,309.76499999975454,-0.059757663703922034 +61954,309.76999999975453,-0.0597568078291839 +61955,309.7749999997545,-0.05975595211247171 +61956,309.7799999997545,-0.05975509655375922 +61957,309.7849999997545,-0.05975424115302019 +61958,309.7899999997545,-0.059753385910228406 +61959,309.7949999997545,-0.05975253082535763 +61960,309.7999999997545,-0.05975167589838165 +61961,309.8049999997545,-0.05975082112927426 +61962,309.8099999997545,-0.05974996651800925 +61963,309.8149999997545,-0.05974911206456042 +61964,309.8199999997545,-0.05974825776890158 +61965,309.8249999997545,-0.05974740363100655 +61966,309.8299999997545,-0.05974654965084915 +61967,309.8349999997545,-0.0597456958284032 +61968,309.83999999975447,-0.05974484216364253 +61969,309.84499999975446,-0.05974398865654099 +61970,309.84999999975446,-0.05974313530707244 +61971,309.85499999975445,-0.0597422821152107 +61972,309.85999999975445,-0.05974142908092965 +61973,309.86499999975445,-0.05974057620420315 +61974,309.86999999975444,-0.05973972348500507 +61975,309.87499999975444,-0.0597388709233093 +61976,309.87999999975443,-0.05973801851908969 +61977,309.8849999997544,-0.05973716627232017 +61978,309.8899999997544,-0.0597363141829746 +61979,309.8949999997544,-0.059735462251026904 +61980,309.8999999997544,-0.05973461047645098 +61981,309.9049999997544,-0.059733758859220755 +61982,309.9099999997544,-0.059732907399310135 +61983,309.9149999997544,-0.059732056096693055 +61984,309.9199999997544,-0.059731204951343445 +61985,309.9249999997544,-0.05973035396323525 +61986,309.9299999997544,-0.059729503132342404 +61987,309.9349999997544,-0.05972865245863886 +61988,309.9399999997544,-0.059727801942098584 +61989,309.9449999997544,-0.05972695158269554 +61990,309.94999999975437,-0.05972610138040368 +61991,309.95499999975436,-0.05972525133519699 +61992,309.95999999975436,-0.05972440144704946 +61993,309.96499999975435,-0.059723551715935075 +61994,309.96999999975435,-0.05972270214182781 +61995,309.97499999975435,-0.05972185272470169 +61996,309.97999999975434,-0.059721003464530714 +61997,309.98499999975434,-0.05972015436128888 +61998,309.98999999975433,-0.05971930541495021 +61999,309.9949999997543,-0.05971845662548874 +62000,309.9999999997543,-0.05971760799287849 +62001,310.0049999997543,-0.05971675951709348 +62002,310.0099999997543,-0.05971591119810778 +62003,310.0149999997543,-0.059715063035895424 +62004,310.0199999997543,-0.059714215030430465 +62005,310.0249999997543,-0.059713367181686974 +62006,310.0299999997543,-0.05971251948963901 +62007,310.0349999997543,-0.05971167195426064 +62008,310.0399999997543,-0.059710824575525935 +62009,310.0449999997543,-0.05970997735340899 +62010,310.0499999997543,-0.059709130287883896 +62011,310.0549999997543,-0.05970828337892473 +62012,310.05999999975427,-0.05970743662650563 +62013,310.06499999975426,-0.059706590030600665 +62014,310.06999999975426,-0.05970574359118396 +62015,310.07499999975425,-0.059704897308229636 +62016,310.07999999975425,-0.05970405118171182 +62017,310.08499999975425,-0.059703205211604625 +62018,310.08999999975424,-0.0597023593978822 +62019,310.09499999975424,-0.05970151374051871 +62020,310.09999999975423,-0.05970066823948827 +62021,310.1049999997542,-0.05969982289476503 +62022,310.1099999997542,-0.05969897770632318 +62023,310.1149999997542,-0.05969813267413686 +62024,310.1199999997542,-0.05969728779818026 +62025,310.1249999997542,-0.05969644307842754 +62026,310.1299999997542,-0.05969559851485288 +62027,310.1349999997542,-0.059694754107430484 +62028,310.1399999997542,-0.05969390985613454 +62029,310.1449999997542,-0.05969306576093925 +62030,310.1499999997542,-0.059692221821818804 +62031,310.1549999997542,-0.05969137803874743 +62032,310.1599999997542,-0.059690534411699345 +62033,310.1649999997542,-0.05968969094064878 +62034,310.16999999975417,-0.05968884762556993 +62035,310.17499999975416,-0.059688004466437065 +62036,310.17999999975416,-0.0596871614632244 +62037,310.18499999975415,-0.05968631861590619 +62038,310.18999999975415,-0.0596854759244567 +62039,310.19499999975415,-0.05968463338885016 +62040,310.19999999975414,-0.059683791009060856 +62041,310.20499999975414,-0.05968294878506305 +62042,310.20999999975413,-0.059682106716831 +62043,310.2149999997541,-0.05968126480433901 +62044,310.2199999997541,-0.05968042304756135 +62045,310.2249999997541,-0.05967958144647231 +62046,310.2299999997541,-0.05967874000104619 +62047,310.2349999997541,-0.0596778987112573 +62048,310.2399999997541,-0.05967705757707994 +62049,310.2449999997541,-0.05967621659848841 +62050,310.2499999997541,-0.05967537577545704 +62051,310.2549999997541,-0.05967453510796017 +62052,310.2599999997541,-0.05967369459597211 +62053,310.2649999997541,-0.0596728542394672 +62054,310.2699999997541,-0.05967201403841979 +62055,310.2749999997541,-0.059671173992804215 +62056,310.27999999975407,-0.05967033410259484 +62057,310.28499999975406,-0.05966949436776601 +62058,310.28999999975406,-0.059668654788292086 +62059,310.29499999975405,-0.05966781536414745 +62060,310.29999999975405,-0.059666976095306454 +62061,310.30499999975405,-0.05966613698174351 +62062,310.30999999975404,-0.05966529802343298 +62063,310.31499999975404,-0.059664459220349256 +62064,310.31999999975403,-0.05966362057246674 +62065,310.324999999754,-0.059662782079759835 +62066,310.329999999754,-0.059661943742202954 +62067,310.334999999754,-0.05966110555977049 +62068,310.339999999754,-0.059660267532436875 +62069,310.344999999754,-0.059659429660176545 +62070,310.349999999754,-0.0596585919429639 +62071,310.354999999754,-0.059657754380773385 +62072,310.359999999754,-0.05965691697357946 +62073,310.364999999754,-0.05965607972135654 +62074,310.369999999754,-0.0596552426240791 +62075,310.374999999754,-0.05965440568172157 +62076,310.379999999754,-0.05965356889425843 +62077,310.384999999754,-0.05965273226166414 +62078,310.38999999975397,-0.059651895783913195 +62079,310.39499999975396,-0.05965105946098004 +62080,310.39999999975396,-0.05965022329283917 +62081,310.40499999975395,-0.059649387279465074 +62082,310.40999999975395,-0.05964855142083225 +62083,310.41499999975395,-0.05964771571691519 +62084,310.41999999975394,-0.0596468801676884 +62085,310.42499999975394,-0.05964604477312638 +62086,310.42999999975393,-0.05964520953320366 +62087,310.4349999997539,-0.05964437444789475 +62088,310.4399999997539,-0.059643539517174195 +62089,310.4449999997539,-0.0596427047410165 +62090,310.4499999997539,-0.059641870119396215 +62091,310.4549999997539,-0.059641035652287885 +62092,310.4599999997539,-0.059640201339666035 +62093,310.4649999997539,-0.05963936718150524 +62094,310.4699999997539,-0.05963853317778005 +62095,310.4749999997539,-0.05963769932846502 +62096,310.4799999997539,-0.05963686563353473 +62097,310.4849999997539,-0.059636032092963746 +62098,310.4899999997539,-0.05963519870672664 +62099,310.4949999997539,-0.059634365474798015 +62100,310.49999999975387,-0.05963353239715245 +62101,310.50499999975386,-0.05963269947376453 +62102,310.50999999975386,-0.059631866704608856 +62103,310.51499999975385,-0.059631034089660036 +62104,310.51999999975385,-0.05963020162889268 +62105,310.52499999975385,-0.059629369322281404 +62106,310.52999999975384,-0.05962853716980082 +62107,310.53499999975384,-0.059627705171425564 +62108,310.53999999975383,-0.05962687332713026 +62109,310.5449999997538,-0.05962604163688954 +62110,310.5499999997538,-0.05962521010067805 +62111,310.5549999997538,-0.05962437871847043 +62112,310.5599999997538,-0.05962354749024134 +62113,310.5649999997538,-0.05962271641596543 +62114,310.5699999997538,-0.059621885495617366 +62115,310.5749999997538,-0.059621054729171806 +62116,310.5799999997538,-0.059620224116603414 +62117,310.5849999997538,-0.05961939365788688 +62118,310.5899999997538,-0.059618563352996874 +62119,310.5949999997538,-0.059617733201908094 +62120,310.5999999997538,-0.059616903204595235 +62121,310.6049999997538,-0.05961607336103297 +62122,310.60999999975377,-0.05961524367119603 +62123,310.61499999975376,-0.05961441413505911 +62124,310.61999999975376,-0.059613584752596906 +62125,310.62499999975375,-0.05961275552378416 +62126,310.62999999975375,-0.05961192644859559 +62127,310.63499999975375,-0.0596110975270059 +62128,310.63999999975374,-0.05961026875898983 +62129,310.64499999975374,-0.059609440144522144 +62130,310.64999999975373,-0.059608611683577555 +62131,310.6549999997537,-0.05960778337613081 +62132,310.6599999997537,-0.059606955222156685 +62133,310.6649999997537,-0.05960612722162992 +62134,310.6699999997537,-0.05960529937452527 +62135,310.6749999997537,-0.05960447168081751 +62136,310.6799999997537,-0.05960364414048142 +62137,310.6849999997537,-0.059602816753491765 +62138,310.6899999997537,-0.05960198951982334 +62139,310.6949999997537,-0.059601162439450905 +62140,310.6999999997537,-0.05960033551234928 +62141,310.7049999997537,-0.05959950873849324 +62142,310.7099999997537,-0.059598682117857606 +62143,310.7149999997537,-0.05959785565041718 +62144,310.71999999975367,-0.059597029336146745 +62145,310.72499999975366,-0.05959620317502116 +62146,310.72999999975366,-0.05959537716701522 +62147,310.73499999975365,-0.05959455131210376 +62148,310.73999999975365,-0.05959372561026162 +62149,310.74499999975365,-0.05959290006146361 +62150,310.74999999975364,-0.05959207466568459 +62151,310.75499999975364,-0.05959124942289941 +62152,310.75999999975363,-0.05959042433308291 +62153,310.7649999997536,-0.05958959939620995 +62154,310.7699999997536,-0.05958877461225538 +62155,310.7749999997536,-0.05958794998119407 +62156,310.7799999997536,-0.05958712550300091 +62157,310.7849999997536,-0.05958630117765074 +62158,310.7899999997536,-0.059585477005118466 +62159,310.7949999997536,-0.05958465298537897 +62160,310.7999999997536,-0.05958382911840712 +62161,310.8049999997536,-0.05958300540417784 +62162,310.8099999997536,-0.05958218184266602 +62163,310.8149999997536,-0.05958135843384655 +62164,310.8199999997536,-0.05958053517769434 +62165,310.8249999997536,-0.05957971207418432 +62166,310.82999999975357,-0.059578889123291394 +62167,310.83499999975356,-0.05957806632499049 +62168,310.83999999975356,-0.05957724367925654 +62169,310.84499999975355,-0.05957642118606447 +62170,310.84999999975355,-0.05957559884538921 +62171,310.85499999975355,-0.059574776657205716 +62172,310.85999999975354,-0.05957395462148892 +62173,310.86499999975354,-0.0595731327382138 +62174,310.86999999975353,-0.059572311007355286 +62175,310.8749999997535,-0.05957148942888834 +62176,310.8799999997535,-0.059570668002787944 +62177,310.8849999997535,-0.059569846729029055 +62178,310.8899999997535,-0.05956902560758665 +62179,310.8949999997535,-0.05956820463843572 +62180,310.8999999997535,-0.05956738382155123 +62181,310.9049999997535,-0.05956656315690819 +62182,310.9099999997535,-0.05956574264448159 +62183,310.9149999997535,-0.059564922284246424 +62184,310.9199999997535,-0.05956410207617769 +62185,310.9249999997535,-0.0595632820202504 +62186,310.9299999997535,-0.05956246211643956 +62187,310.9349999997535,-0.0595616423647202 +62188,310.93999999975347,-0.05956082276506733 +62189,310.94499999975346,-0.05956000331745598 +62190,310.94999999975346,-0.05955918402186119 +62191,310.95499999975345,-0.059558364878257976 +62192,310.95999999975345,-0.0595575458866214 +62193,310.96499999975345,-0.0595567270469265 +62194,310.96999999975344,-0.05955590835914832 +62195,310.97499999975344,-0.05955508982326192 +62196,310.97999999975343,-0.05955427143924236 +62197,310.9849999997534,-0.05955345320706469 +62198,310.9899999997534,-0.059552635126703994 +62199,310.9949999997534,-0.05955181719813534 +62200,310.9999999997534,-0.0595509994213338 +62201,311.0049999997534,-0.05955018179627446 +62202,311.0099999997534,-0.059549364322932404 +62203,311.0149999997534,-0.05954854700128273 +62204,311.0199999997534,-0.05954772983130053 +62205,311.0249999997534,-0.0595469128129609 +62206,311.0299999997534,-0.05954609594623895 +62207,311.0349999997534,-0.05954527923110979 +62208,311.0399999997534,-0.05954446266754853 +62209,311.0449999997534,-0.05954364625553029 +62210,311.04999999975337,-0.05954282999503019 +62211,311.05499999975336,-0.05954201388602336 +62212,311.05999999975336,-0.05954119792848492 +62213,311.06499999975335,-0.05954038212239003 +62214,311.06999999975335,-0.059539566467713814 +62215,311.07499999975335,-0.05953875096443142 +62216,311.07999999975334,-0.059537935612518 +62217,311.08499999975334,-0.05953712041194871 +62218,311.08999999975333,-0.0595363053626987 +62219,311.0949999997533,-0.05953549046474315 +62220,311.0999999997533,-0.0595346757180572 +62221,311.1049999997533,-0.05953386112261605 +62222,311.1099999997533,-0.05953304667839487 +62223,311.1149999997533,-0.05953223238536883 +62224,311.1199999997533,-0.05953141824351313 +62225,311.1249999997533,-0.059530604252802946 +62226,311.1299999997533,-0.059529790413213476 +62227,311.1349999997533,-0.05952897672471993 +62228,311.1399999997533,-0.05952816318729749 +62229,311.1449999997533,-0.0595273498009214 +62230,311.1499999997533,-0.05952653656556684 +62231,311.1549999997533,-0.05952572348120904 +62232,311.15999999975327,-0.05952491054782321 +62233,311.16499999975326,-0.05952409776538458 +62234,311.16999999975326,-0.059523285133868384 +62235,311.17499999975325,-0.05952247265324985 +62236,311.17999999975325,-0.05952166032350422 +62237,311.18499999975324,-0.059520848144606744 +62238,311.18999999975324,-0.059520036116532664 +62239,311.19499999975324,-0.05951922423925723 +62240,311.19999999975323,-0.059518412512755706 +62241,311.2049999997532,-0.05951760093700334 +62242,311.2099999997532,-0.05951678951197541 +62243,311.2149999997532,-0.05951597823764716 +62244,311.2199999997532,-0.0595151671139939 +62245,311.2249999997532,-0.05951435614099087 +62246,311.2299999997532,-0.05951354531861338 +62247,311.2349999997532,-0.05951273464683671 +62248,311.2399999997532,-0.05951192412563614 +62249,311.2449999997532,-0.05951111375498698 +62250,311.2499999997532,-0.05951030353486452 +62251,311.2549999997532,-0.05950949346524406 +62252,311.2599999997532,-0.05950868354610093 +62253,311.2649999997532,-0.05950787377741041 +62254,311.26999999975317,-0.059507064159147846 +62255,311.27499999975316,-0.059506254691288535 +62256,311.27999999975316,-0.059505445373807815 +62257,311.28499999975315,-0.05950463620668101 +62258,311.28999999975315,-0.059503827189883465 +62259,311.29499999975314,-0.05950301832339051 +62260,311.29999999975314,-0.059502209607177475 +62261,311.30499999975314,-0.05950140104121974 +62262,311.30999999975313,-0.05950059262549263 +62263,311.3149999997531,-0.059499784359971504 +62264,311.3199999997531,-0.05949897624463172 +62265,311.3249999997531,-0.05949816827944865 +62266,311.3299999997531,-0.059497360464397644 +62267,311.3349999997531,-0.059496552799454094 +62268,311.3399999997531,-0.05949574528459337 +62269,311.3449999997531,-0.059494937919790845 +62270,311.3499999997531,-0.0594941307050219 +62271,311.3549999997531,-0.05949332364026195 +62272,311.3599999997531,-0.05949251672548637 +62273,311.3649999997531,-0.05949170996067055 +62274,311.3699999997531,-0.0594909033457899 +62275,311.3749999997531,-0.05949009688081982 +62276,311.37999999975307,-0.05948929056573573 +62277,311.38499999975306,-0.05948848440051305 +62278,311.38999999975306,-0.05948767838512717 +62279,311.39499999975305,-0.05948687251955353 +62280,311.39999999975305,-0.05948606680376756 +62281,311.40499999975304,-0.05948526123774468 +62282,311.40999999975304,-0.05948445582146034 +62283,311.41499999975304,-0.05948365055488998 +62284,311.41999999975303,-0.059482845438009024 +62285,311.424999999753,-0.059482040470792925 +62286,311.429999999753,-0.05948123565321714 +62287,311.434999999753,-0.059480430985257134 +62288,311.439999999753,-0.059479626466888334 +62289,311.444999999753,-0.05947882209808624 +62290,311.449999999753,-0.0594780178788263 +62291,311.454999999753,-0.05947721380908398 +62292,311.459999999753,-0.059476409888834784 +62293,311.464999999753,-0.059475606118054164 +62294,311.469999999753,-0.05947480249671762 +62295,311.474999999753,-0.05947399902480063 +62296,311.479999999753,-0.0594731957022787 +62297,311.484999999753,-0.05947239252912732 +62298,311.48999999975297,-0.05947158950532199 +62299,311.49499999975296,-0.059470786630838206 +62300,311.49999999975296,-0.05946998390565149 +62301,311.50499999975295,-0.05946918132973734 +62302,311.50999999975295,-0.05946837890307129 +62303,311.51499999975294,-0.059467576625628855 +62304,311.51999999975294,-0.05946677449738554 +62305,311.52499999975294,-0.059465972518316916 +62306,311.52999999975293,-0.05946517068839849 +62307,311.5349999997529,-0.0594643690076058 +62308,311.5399999997529,-0.05946356747591437 +62309,311.5449999997529,-0.05946276609329978 +62310,311.5499999997529,-0.059461964859737565 +62311,311.5549999997529,-0.059461163775203274 +62312,311.5599999997529,-0.05946036283967247 +62313,311.5649999997529,-0.05945956205312071 +62314,311.5699999997529,-0.05945876141552356 +62315,311.5749999997529,-0.05945796092685659 +62316,311.5799999997529,-0.05945716058709536 +62317,311.5849999997529,-0.05945636039621548 +62318,311.5899999997529,-0.059455560354192485 +62319,311.5949999997529,-0.059454760461001996 +62320,311.59999999975287,-0.059453960716619604 +62321,311.60499999975286,-0.059453161121020885 +62322,311.60999999975286,-0.05945236167418145 +62323,311.61499999975285,-0.05945156237607688 +62324,311.61999999975285,-0.059450763226682794 +62325,311.62499999975284,-0.05944996422597481 +62326,311.62999999975284,-0.059449165373928525 +62327,311.63499999975284,-0.059448366670519566 +62328,311.63999999975283,-0.05944756811572354 +62329,311.6449999997528,-0.059446769709516074 +62330,311.6499999997528,-0.05944597145187281 +62331,311.6549999997528,-0.05944517334276938 +62332,311.6599999997528,-0.059444375382181405 +62333,311.6649999997528,-0.059443577570084546 +62334,311.6699999997528,-0.059442779906454433 +62335,311.6749999997528,-0.05944198239126672 +62336,311.6799999997528,-0.05944118502449706 +62337,311.6849999997528,-0.05944038780612111 +62338,311.6899999997528,-0.059439590736114524 +62339,311.6949999997528,-0.05943879381445297 +62340,311.6999999997528,-0.0594379970411121 +62341,311.7049999997528,-0.05943720041606761 +62342,311.70999999975277,-0.059436403939295175 +62343,311.71499999975276,-0.05943560761077046 +62344,311.71999999975276,-0.05943481143046916 +62345,311.72499999975275,-0.059434015398366936 +62346,311.72999999975275,-0.059433219514439514 +62347,311.73499999975274,-0.059432423778662584 +62348,311.73999999975274,-0.059431628191011825 +62349,311.74499999975274,-0.05943083275146294 +62350,311.74999999975273,-0.05943003745999167 +62351,311.7549999997527,-0.05942924231657369 +62352,311.7599999997527,-0.05942844732118472 +62353,311.7649999997527,-0.059427652473800496 +62354,311.7699999997527,-0.05942685777439673 +62355,311.7749999997527,-0.059426063222949126 +62356,311.7799999997527,-0.05942526881943344 +62357,311.7849999997527,-0.0594244745638254 +62358,311.7899999997527,-0.05942368045610074 +62359,311.7949999997527,-0.05942288649623521 +62360,311.7999999997527,-0.05942209268420454 +62361,311.8049999997527,-0.05942129901998449 +62362,311.8099999997527,-0.05942050550355082 +62363,311.8149999997527,-0.05941971213487926 +62364,311.81999999975267,-0.05941891891394559 +62365,311.82499999975266,-0.05941812584072557 +62366,311.82999999975266,-0.059417332915194965 +62367,311.83499999975265,-0.05941654013732955 +62368,311.83999999975265,-0.0594157475071051 +62369,311.84499999975264,-0.05941495502449739 +62370,311.84999999975264,-0.059414162689482214 +62371,311.85499999975264,-0.05941337050203534 +62372,311.85999999975263,-0.059412578462132576 +62373,311.8649999997526,-0.05941178656974969 +62374,311.8699999997526,-0.05941099482486251 +62375,311.8749999997526,-0.05941020322744683 +62376,311.8799999997526,-0.05940941177747844 +62377,311.8849999997526,-0.05940862047493317 +62378,311.8899999997526,-0.05940782931978683 +62379,311.8949999997526,-0.05940703831201522 +62380,311.8999999997526,-0.05940624745159417 +62381,311.9049999997526,-0.0594054567384995 +62382,311.9099999997526,-0.05940466617270704 +62383,311.9149999997526,-0.05940387575419263 +62384,311.9199999997526,-0.059403085482932085 +62385,311.9249999997526,-0.05940229535890127 +62386,311.92999999975257,-0.05940150538207601 +62387,311.93499999975256,-0.05940071555243215 +62388,311.93999999975256,-0.05939992586994555 +62389,311.94499999975255,-0.05939913633459206 +62390,311.94999999975255,-0.05939834694634753 +62391,311.95499999975254,-0.059397557705187835 +62392,311.95999999975254,-0.059396768611088835 +62393,311.96499999975254,-0.059395979664026384 +62394,311.96999999975253,-0.05939519086397637 +62395,311.9749999997525,-0.05939440221091467 +62396,311.9799999997525,-0.05939361370481714 +62397,311.9849999997525,-0.05939282534565969 +62398,311.9899999997525,-0.0593920371334182 +62399,311.9949999997525,-0.059391249068068565 +62400,311.9999999997525,-0.059390461149586654 +62401,312.0049999997525,-0.0593896733779484 +62402,312.0099999997525,-0.059388885753129686 +62403,312.0149999997525,-0.05938809827510642 +62404,312.0199999997525,-0.0593873109438545 +62405,312.0249999997525,-0.059386523759349844 +62406,312.0299999997525,-0.059385736721568376 +62407,312.0349999997525,-0.059384949830486006 +62408,312.03999999975247,-0.059384163086078676 +62409,312.04499999975246,-0.05938337648832229 +62410,312.04999999975246,-0.05938259003719278 +62411,312.05499999975245,-0.0593818037326661 +62412,312.05999999975245,-0.05938101757471817 +62413,312.06499999975244,-0.05938023156332493 +62414,312.06999999975244,-0.05937944569846233 +62415,312.07499999975244,-0.05937865998010632 +62416,312.07999999975243,-0.059377874408232854 +62417,312.0849999997524,-0.059377088982817884 +62418,312.0899999997524,-0.05937630370383737 +62419,312.0949999997524,-0.05937551857126728 +62420,312.0999999997524,-0.05937473358508358 +62421,312.1049999997524,-0.05937394874526223 +62422,312.1099999997524,-0.0593731640517792 +62423,312.1149999997524,-0.05937237950461048 +62424,312.1199999997524,-0.05937159510373205 +62425,312.1249999997524,-0.059370810849119895 +62426,312.1299999997524,-0.059370026740749995 +62427,312.1349999997524,-0.05936924277859835 +62428,312.1399999997524,-0.059368458962640945 +62429,312.1449999997524,-0.05936767529285379 +62430,312.14999999975237,-0.05936689176921287 +62431,312.15499999975236,-0.05936610839169421 +62432,312.15999999975236,-0.05936532516027381 +62433,312.16499999975235,-0.05936454207492769 +62434,312.16999999975235,-0.059363759135631855 +62435,312.17499999975234,-0.05936297634236233 +62436,312.17999999975234,-0.05936219369509513 +62437,312.18499999975234,-0.05936141119380629 +62438,312.18999999975233,-0.05936062883847184 +62439,312.1949999997523,-0.05935984662906782 +62440,312.1999999997523,-0.05935906456557027 +62441,312.2049999997523,-0.05935828264795521 +62442,312.2099999997523,-0.0593575008761987 +62443,312.2149999997523,-0.05935671925027678 +62444,312.2199999997523,-0.05935593777016551 +62445,312.2249999997523,-0.05935515643584094 +62446,312.2299999997523,-0.05935437524727912 +62447,312.2349999997523,-0.05935359420445613 +62448,312.2399999997523,-0.05935281330734803 +62449,312.2449999997523,-0.05935203255593088 +62450,312.2499999997523,-0.059351251950180754 +62451,312.2549999997523,-0.05935047149007373 +62452,312.25999999975227,-0.05934969117558589 +62453,312.26499999975226,-0.05934891100669332 +62454,312.26999999975226,-0.05934813098337209 +62455,312.27499999975225,-0.05934735110559831 +62456,312.27999999975225,-0.059346571373348055 +62457,312.28499999975224,-0.05934579178659745 +62458,312.28999999975224,-0.05934501234532256 +62459,312.29499999975224,-0.05934423304949951 +62460,312.29999999975223,-0.059343453899104406 +62461,312.3049999997522,-0.059342674894113344 +62462,312.3099999997522,-0.059341896034502455 +62463,312.3149999997522,-0.05934111732024785 +62464,312.3199999997522,-0.05934033875132565 +62465,312.3249999997522,-0.05933956032771197 +62466,312.3299999997522,-0.05933878204938294 +62467,312.3349999997522,-0.059338003916314705 +62468,312.3399999997522,-0.059337225928483395 +62469,312.3449999997522,-0.05933644808586513 +62470,312.3499999997522,-0.059335670388436075 +62471,312.3549999997522,-0.05933489283617236 +62472,312.3599999997522,-0.05933411542905013 +62473,312.3649999997522,-0.05933333816704556 +62474,312.36999999975217,-0.05933256105013477 +62475,312.37499999975216,-0.05933178407829395 +62476,312.37999999975216,-0.05933100725149924 +62477,312.38499999975215,-0.059330230569726826 +62478,312.38999999975215,-0.05932945403295285 +62479,312.39499999975214,-0.05932867764115351 +62480,312.39999999975214,-0.05932790139430496 +62481,312.40499999975214,-0.059327125292383404 +62482,312.40999999975213,-0.05932634933536499 +62483,312.4149999997521,-0.05932557352322594 +62484,312.4199999997521,-0.05932479785594242 +62485,312.4249999997521,-0.05932402233349062 +62486,312.4299999997521,-0.059323246955846745 +62487,312.4349999997521,-0.05932247172298699 +62488,312.4399999997521,-0.05932169663488756 +62489,312.4449999997521,-0.05932092169152465 +62490,312.4499999997521,-0.05932014689287448 +62491,312.4549999997521,-0.05931937223891326 +62492,312.4599999997521,-0.05931859772961721 +62493,312.4649999997521,-0.05931782336496254 +62494,312.4699999997521,-0.05931704914492548 +62495,312.4749999997521,-0.05931627506948225 +62496,312.47999999975207,-0.05931550113860908 +62497,312.48499999975206,-0.05931472735228221 +62498,312.48999999975206,-0.05931395371047786 +62499,312.49499999975205,-0.05931318021317229 +62500,312.49999999975205,-0.059312406860341726 +62501,312.50499999975204,-0.05931163365196241 +62502,312.50999999975204,-0.0593108605880106 +62503,312.51499999975204,-0.05931008766846256 +62504,312.51999999975203,-0.05930931489329453 +62505,312.524999999752,-0.059308542262482764 +62506,312.529999999752,-0.05930776977600353 +62507,312.534999999752,-0.0593069974338331 +62508,312.539999999752,-0.05930622523594775 +62509,312.544999999752,-0.059305453182323734 +62510,312.549999999752,-0.05930468127293733 +62511,312.554999999752,-0.05930390950776482 +62512,312.559999999752,-0.05930313788678248 +62513,312.564999999752,-0.05930236640996661 +62514,312.569999999752,-0.05930159507729348 +62515,312.574999999752,-0.059300823888739404 +62516,312.579999999752,-0.05930005284428067 +62517,312.584999999752,-0.05929928194389358 +62518,312.58999999975197,-0.059298511187554415 +62519,312.59499999975196,-0.05929774057523949 +62520,312.59999999975196,-0.05929697010692512 +62521,312.60499999975195,-0.05929619978258761 +62522,312.60999999975195,-0.05929542960220327 +62523,312.61499999975194,-0.059294659565748434 +62524,312.61999999975194,-0.059293889673199415 +62525,312.62499999975194,-0.05929311992453253 +62526,312.62999999975193,-0.05929235031972412 +62527,312.6349999997519,-0.059291580858750505 +62528,312.6399999997519,-0.05929081154158803 +62529,312.6449999997519,-0.059290042368213024 +62530,312.6499999997519,-0.05928927333860183 +62531,312.6549999997519,-0.05928850445273079 +62532,312.6599999997519,-0.05928773571057626 +62533,312.6649999997519,-0.059286967112114584 +62534,312.6699999997519,-0.05928619865732212 +62535,312.6749999997519,-0.05928543034617521 +62536,312.6799999997519,-0.05928466217865022 +62537,312.6849999997519,-0.05928389415472353 +62538,312.6899999997519,-0.05928312627437148 +62539,312.6949999997519,-0.059282358537570475 +62540,312.69999999975187,-0.05928159094429685 +62541,312.70499999975186,-0.05928082349452701 +62542,312.70999999975186,-0.059280056188237326 +62543,312.71499999975185,-0.05927928902540417 +62544,312.71999999975185,-0.05927852200600394 +62545,312.72499999975184,-0.05927775513001302 +62546,312.72999999975184,-0.059276988397407804 +62547,312.73499999975184,-0.05927622180816468 +62548,312.73999999975183,-0.059275455362260046 +62549,312.7449999997518,-0.05927468905967032 +62550,312.7499999997518,-0.0592739229003719 +62551,312.7549999997518,-0.05927315688434119 +62552,312.7599999997518,-0.059272391011554605 +62553,312.7649999997518,-0.05927162528198855 +62554,312.7699999997518,-0.05927085969561945 +62555,312.7749999997518,-0.05927009425242373 +62556,312.7799999997518,-0.05926932895237782 +62557,312.7849999997518,-0.05926856379545813 +62558,312.7899999997518,-0.0592677987816411 +62559,312.7949999997518,-0.05926703391090317 +62560,312.7999999997518,-0.05926626918322076 +62561,312.8049999997518,-0.059265504598570315 +62562,312.80999999975177,-0.059264740156928286 +62563,312.81499999975176,-0.05926397585827111 +62564,312.81999999975176,-0.05926321170257525 +62565,312.82499999975175,-0.05926244768981714 +62566,312.82999999975175,-0.059261683819973245 +62567,312.83499999975174,-0.05926092009302002 +62568,312.83999999975174,-0.05926015650893393 +62569,312.84499999975174,-0.05925939306769145 +62570,312.84999999975173,-0.05925862976926904 +62571,312.8549999997517,-0.05925786661364316 +62572,312.8599999997517,-0.059257103600790305 +62573,312.8649999997517,-0.05925634073068693 +62574,312.8699999997517,-0.059255578003309536 +62575,312.8749999997517,-0.05925481541863461 +62576,312.8799999997517,-0.05925405297663862 +62577,312.8849999997517,-0.05925329067729806 +62578,312.8899999997517,-0.059252528520589424 +62579,312.8949999997517,-0.05925176650648922 +62580,312.8999999997517,-0.05925100463497394 +62581,312.9049999997517,-0.05925024290602008 +62582,312.9099999997517,-0.05924948131960414 +62583,312.91499999975167,-0.05924871987570265 +62584,312.91999999975167,-0.05924795857429212 +62585,312.92499999975166,-0.059247197415349034 +62586,312.92999999975166,-0.05924643639884995 +62587,312.93499999975165,-0.05924567552477137 +62588,312.93999999975165,-0.05924491479308982 +62589,312.94499999975164,-0.05924415420378183 +62590,312.94999999975164,-0.05924339375682392 +62591,312.95499999975164,-0.05924263345219263 +62592,312.95999999975163,-0.059241873289864515 +62593,312.9649999997516,-0.059241113269816084 +62594,312.9699999997516,-0.059240353392023895 +62595,312.9749999997516,-0.059239593656464494 +62596,312.9799999997516,-0.05923883406311443 +62597,312.9849999997516,-0.05923807461195024 +62598,312.9899999997516,-0.059237315302948505 +62599,312.9949999997516,-0.05923655613608577 +62600,312.9999999997516,-0.059235797111338584 +62601,313.0049999997516,-0.059235038228683534 +62602,313.0099999997516,-0.059234279488097175 +62603,313.0149999997516,-0.05923352088955608 +62604,313.0199999997516,-0.05923276243303681 +62605,313.02499999975157,-0.05923200411851596 +62606,313.02999999975157,-0.0592312459459701 +62607,313.03499999975156,-0.059230487915375836 +62608,313.03999999975156,-0.05922973002670972 +62609,313.04499999975155,-0.059228972279948354 +62610,313.04999999975155,-0.05922821467506833 +62611,313.05499999975154,-0.05922745721204623 +62612,313.05999999975154,-0.05922669989085867 +62613,313.06499999975154,-0.05922594271148225 +62614,313.06999999975153,-0.059225185673893566 +62615,313.0749999997515,-0.05922442877806922 +62616,313.0799999997515,-0.059223672023985846 +62617,313.0849999997515,-0.059222915411620024 +62618,313.0899999997515,-0.05922215894094839 +62619,313.0949999997515,-0.059221402611947555 +62620,313.0999999997515,-0.05922064642459415 +62621,313.1049999997515,-0.05921989037886479 +62622,313.1099999997515,-0.05921913447473611 +62623,313.1149999997515,-0.059218378712184744 +62624,313.1199999997515,-0.05921762309118732 +62625,313.1249999997515,-0.05921686761172047 +62626,313.1299999997515,-0.05921611227376084 +62627,313.13499999975147,-0.05921535707728508 +62628,313.13999999975147,-0.05921460202226983 +62629,313.14499999975146,-0.059213847108691736 +62630,313.14999999975146,-0.059213092336527454 +62631,313.15499999975145,-0.05921233770575364 +62632,313.15999999975145,-0.05921158321634694 +62633,313.16499999975144,-0.05921082886828403 +62634,313.16999999975144,-0.05921007466154157 +62635,313.17499999975144,-0.059209320596096224 +62636,313.17999999975143,-0.05920856667192466 +62637,313.1849999997514,-0.059207812889003564 +62638,313.1899999997514,-0.0592070592473096 +62639,313.1949999997514,-0.059206305746819454 +62640,313.1999999997514,-0.0592055523875098 +62641,313.2049999997514,-0.059204799169357315 +62642,313.2099999997514,-0.0592040460923387 +62643,313.2149999997514,-0.05920329315643065 +62644,313.2199999997514,-0.05920254036160985 +62645,313.2249999997514,-0.059201787707853004 +62646,313.2299999997514,-0.05920103519513681 +62647,313.2349999997514,-0.059200282823437964 +62648,313.2399999997514,-0.05919953059273317 +62649,313.24499999975137,-0.05919877850299915 +62650,313.24999999975137,-0.05919802655421261 +62651,313.25499999975136,-0.05919727474635026 +62652,313.25999999975136,-0.05919652307938883 +62653,313.26499999975135,-0.05919577155330502 +62654,313.26999999975135,-0.059195020168075575 +62655,313.27499999975134,-0.0591942689236772 +62656,313.27999999975134,-0.05919351782008664 +62657,313.28499999975134,-0.059192766857280615 +62658,313.28999999975133,-0.059192016035235884 +62659,313.2949999997513,-0.05919126535392916 +62660,313.2999999997513,-0.05919051481333719 +62661,313.3049999997513,-0.05918976441343672 +62662,313.3099999997513,-0.0591890141542045 +62663,313.3149999997513,-0.059188264035617284 +62664,313.3199999997513,-0.0591875140576518 +62665,313.3249999997513,-0.05918676422028483 +62666,313.3299999997513,-0.059186014523493126 +62667,313.3349999997513,-0.059185264967253445 +62668,313.3399999997513,-0.05918451555154256 +62669,313.3449999997513,-0.05918376627633722 +62670,313.3499999997513,-0.05918301714161423 +62671,313.35499999975127,-0.05918226814735033 +62672,313.35999999975127,-0.0591815192935223 +62673,313.36499999975126,-0.059180770580106935 +62674,313.36999999975126,-0.05918002200708101 +62675,313.37499999975125,-0.0591792735744213 +62676,313.37999999975125,-0.05917852528210462 +62677,313.38499999975124,-0.05917777713010773 +62678,313.38999999975124,-0.059177029118407436 +62679,313.39499999975124,-0.05917628124698054 +62680,313.39999999975123,-0.05917553351580382 +62681,313.4049999997512,-0.05917478592485411 +62682,313.4099999997512,-0.05917403847410819 +62683,313.4149999997512,-0.05917329116354287 +62684,313.4199999997512,-0.05917254399313498 +62685,313.4249999997512,-0.059171796962861324 +62686,313.4299999997512,-0.059171050072698704 +62687,313.4349999997512,-0.05917030332262397 +62688,313.4399999997512,-0.05916955671261391 +62689,313.4449999997512,-0.05916881024264538 +62690,313.4499999997512,-0.05916806391269519 +62691,313.4549999997512,-0.05916731772274018 +62692,313.4599999997512,-0.05916657167275717 +62693,313.46499999975117,-0.059165825762723015 +62694,313.46999999975117,-0.059165079992614555 +62695,313.47499999975116,-0.05916433436240861 +62696,313.47999999975116,-0.05916358887208205 +62697,313.48499999975115,-0.059162843521611705 +62698,313.48999999975115,-0.05916209831097443 +62699,313.49499999975114,-0.059161353240147097 +62700,313.49999999975114,-0.059160608309106535 +62701,313.50499999975113,-0.05915986351782962 +62702,313.50999999975113,-0.05915911886629323 +62703,313.5149999997511,-0.05915837435447421 +62704,313.5199999997511,-0.05915762998234942 +62705,313.5249999997511,-0.05915688574989575 +62706,313.5299999997511,-0.05915614165709006 +62707,313.5349999997511,-0.05915539770390925 +62708,313.5399999997511,-0.059154653890330165 +62709,313.5449999997511,-0.05915391021632972 +62710,313.5499999997511,-0.059153166681884785 +62711,313.5549999997511,-0.059152423286972254 +62712,313.5599999997511,-0.059151680031569 +62713,313.5649999997511,-0.059150936915651944 +62714,313.5699999997511,-0.059150193939197966 +62715,313.57499999975107,-0.059149451102183975 +62716,313.57999999975107,-0.05914870840458687 +62717,313.58499999975106,-0.05914796584638356 +62718,313.58999999975106,-0.059147223427550945 +62719,313.59499999975105,-0.059146481148065935 +62720,313.59999999975105,-0.05914573900790545 +62721,313.60499999975104,-0.0591449970070464 +62722,313.60999999975104,-0.05914425514546572 +62723,313.61499999975103,-0.05914351342314032 +62724,313.61999999975103,-0.05914277184004713 +62725,313.624999999751,-0.05914203039616308 +62726,313.629999999751,-0.059141289091465085 +62727,313.634999999751,-0.05914054792593009 +62728,313.639999999751,-0.05913980689953503 +62729,313.644999999751,-0.05913906601225685 +62730,313.649999999751,-0.05913832526407249 +62731,313.654999999751,-0.059137584654958886 +62732,313.659999999751,-0.059136844184893 +62733,313.664999999751,-0.05913610385385176 +62734,313.669999999751,-0.05913536366181215 +62735,313.674999999751,-0.0591346236087511 +62736,313.679999999751,-0.059133883694645575 +62737,313.68499999975097,-0.059133143919472546 +62738,313.68999999975097,-0.05913240428320897 +62739,313.69499999975096,-0.05913166478583182 +62740,313.69999999975096,-0.059130925427318064 +62741,313.70499999975095,-0.059130186207644674 +62742,313.70999999975095,-0.05912944712678862 +62743,313.71499999975094,-0.05912870818472689 +62744,313.71999999975094,-0.05912796938143646 +62745,313.72499999975093,-0.05912723071689432 +62746,313.72999999975093,-0.05912649219107745 +62747,313.7349999997509,-0.05912575380396284 +62748,313.7399999997509,-0.05912501555552748 +62749,313.7449999997509,-0.05912427744574838 +62750,313.7499999997509,-0.05912353947460251 +62751,313.7549999997509,-0.05912280164206689 +62752,313.7599999997509,-0.059122063948118524 +62753,313.7649999997509,-0.059121326392734416 +62754,313.7699999997509,-0.05912058897589158 +62755,313.7749999997509,-0.05911985169756702 +62756,313.7799999997509,-0.059119114557737745 +62757,313.7849999997509,-0.05911837755638078 +62758,313.7899999997509,-0.05911764069347315 +62759,313.79499999975087,-0.059116903968991864 +62760,313.79999999975087,-0.05911616738291396 +62761,313.80499999975086,-0.05911543093521647 +62762,313.80999999975086,-0.05911469462587641 +62763,313.81499999975085,-0.05911395845487083 +62764,313.81999999975085,-0.05911322242217675 +62765,313.82499999975084,-0.05911248652777123 +62766,313.82999999975084,-0.05911175077163129 +62767,313.83499999975083,-0.05911101515373399 +62768,313.83999999975083,-0.059110279674056375 +62769,313.8449999997508,-0.059109544332575495 +62770,313.8499999997508,-0.05910880912926839 +62771,313.8549999997508,-0.05910807406411215 +62772,313.8599999997508,-0.0591073391370838 +62773,313.8649999997508,-0.0591066043481604 +62774,313.8699999997508,-0.05910586969731904 +62775,313.8749999997508,-0.05910513518453678 +62776,313.8799999997508,-0.05910440080979067 +62777,313.8849999997508,-0.05910366657305781 +62778,313.8899999997508,-0.05910293247431525 +62779,313.8949999997508,-0.05910219851354009 +62780,313.8999999997508,-0.05910146469070939 +62781,313.90499999975077,-0.05910073100580026 +62782,313.90999999975077,-0.05909999745878976 +62783,313.91499999975076,-0.05909926404965498 +62784,313.91999999975076,-0.05909853077837302 +62785,313.92499999975075,-0.05909779764492097 +62786,313.92999999975075,-0.05909706464927595 +62787,313.93499999975074,-0.059096331791415026 +62788,313.93999999975074,-0.05909559907131532 +62789,313.94499999975073,-0.05909486648895394 +62790,313.94999999975073,-0.05909413404430798 +62791,313.9549999997507,-0.059093401737354556 +62792,313.9599999997507,-0.05909266956807079 +62793,313.9649999997507,-0.05909193753643379 +62794,313.9699999997507,-0.05909120564242068 +62795,313.9749999997507,-0.05909047388600857 +62796,313.9799999997507,-0.05908974226717459 +62797,313.9849999997507,-0.05908901078589587 +62798,313.9899999997507,-0.059088279442149526 +62799,313.9949999997507,-0.05908754823591271 +62800,313.9999999997507,-0.059086817167162554 +62801,314.0049999997507,-0.05908608623587618 +62802,314.0099999997507,-0.059085355442030744 +62803,314.01499999975067,-0.05908462478560338 +62804,314.01999999975067,-0.05908389426657125 +62805,314.02499999975066,-0.059083163884911485 +62806,314.02999999975066,-0.05908243364060124 +62807,314.03499999975065,-0.05908170353361767 +62808,314.03999999975065,-0.05908097356393793 +62809,314.04499999975064,-0.05908024373153919 +62810,314.04999999975064,-0.05907951403639859 +62811,314.05499999975063,-0.05907878447849332 +62812,314.05999999975063,-0.05907805505780054 +62813,314.0649999997506,-0.059077325774297425 +62814,314.0699999997506,-0.05907659662796112 +62815,314.0749999997506,-0.059075867618768825 +62816,314.0799999997506,-0.05907513874669772 +62817,314.0849999997506,-0.05907441001172498 +62818,314.0899999997506,-0.05907368141382779 +62819,314.0949999997506,-0.059072952952983315 +62820,314.0999999997506,-0.05907222462916877 +62821,314.1049999997506,-0.05907149644236135 +62822,314.1099999997506,-0.05907076839253823 +62823,314.1149999997506,-0.05907004047967661 +62824,314.1199999997506,-0.0590693127037537 +62825,314.12499999975057,-0.0590685850647467 +62826,314.12999999975057,-0.05906785756263281 +62827,314.13499999975056,-0.059067130197389246 +62828,314.13999999975056,-0.0590664029689932 +62829,314.14499999975055,-0.05906567587742191 +62830,314.14999999975055,-0.05906494892265258 +62831,314.15499999975054,-0.059064222104662424 +62832,314.15999999975054,-0.05906349542342866 +62833,314.16499999975053,-0.05906276887892852 +62834,314.16999999975053,-0.059062042471139234 +62835,314.1749999997505,-0.05906131620003802 +62836,314.1799999997505,-0.05906059006560212 +62837,314.1849999997505,-0.05905986406780876 +62838,314.1899999997505,-0.059059138206635185 +62839,314.1949999997505,-0.05905841248205863 +62840,314.1999999997505,-0.059057686894056334 +62841,314.2049999997505,-0.05905696144260554 +62842,314.2099999997505,-0.05905623612768351 +62843,314.2149999997505,-0.059055510949267476 +62844,314.2199999997505,-0.059054785907334706 +62845,314.2249999997505,-0.05905406100186245 +62846,314.2299999997505,-0.05905333623282796 +62847,314.23499999975047,-0.059052611600208506 +62848,314.23999999975047,-0.059051887103981356 +62849,314.24499999975046,-0.05905116274412376 +62850,314.24999999975046,-0.059050438520613 +62851,314.25499999975045,-0.05904971443342635 +62852,314.25999999975045,-0.05904899048254106 +62853,314.26499999975044,-0.05904826666793443 +62854,314.26999999975044,-0.059047542989583736 +62855,314.27499999975043,-0.05904681944746625 +62856,314.27999999975043,-0.05904609604155927 +62857,314.2849999997504,-0.05904537277184008 +62858,314.2899999997504,-0.05904464963828596 +62859,314.2949999997504,-0.05904392664087422 +62860,314.2999999997504,-0.059043203779582144 +62861,314.3049999997504,-0.059042481054387023 +62862,314.3099999997504,-0.05904175846526617 +62863,314.3149999997504,-0.05904103601219689 +62864,314.3199999997504,-0.05904031369515647 +62865,314.3249999997504,-0.05903959151412224 +62866,314.3299999997504,-0.059038869469071484 +62867,314.3349999997504,-0.05903814755998154 +62868,314.3399999997504,-0.05903742578682972 +62869,314.34499999975037,-0.05903670414959333 +62870,314.34999999975037,-0.05903598264824972 +62871,314.35499999975036,-0.059035261282776176 +62872,314.35999999975036,-0.05903454005315006 +62873,314.36499999975035,-0.05903381895934868 +62874,314.36999999975035,-0.05903309800134937 +62875,314.37499999975034,-0.05903237717912947 +62876,314.37999999975034,-0.05903165649266632 +62877,314.38499999975033,-0.05903093594193724 +62878,314.38999999975033,-0.05903021552691961 +62879,314.3949999997503,-0.05902949524759075 +62880,314.3999999997503,-0.059028775103928 +62881,314.4049999997503,-0.05902805509590873 +62882,314.4099999997503,-0.05902733522351028 +62883,314.4149999997503,-0.05902661548671 +62884,314.4199999997503,-0.05902589588548527 +62885,314.4249999997503,-0.05902517641981343 +62886,314.4299999997503,-0.059024457089671856 +62887,314.4349999997503,-0.0590237378950379 +62888,314.4399999997503,-0.05902301883588895 +62889,314.4449999997503,-0.059022299912202356 +62890,314.4499999997503,-0.059021581123955516 +62891,314.45499999975027,-0.059020862471125785 +62892,314.45999999975027,-0.059020143953690554 +62893,314.46499999975026,-0.0590194255716272 +62894,314.46999999975026,-0.05901870732491309 +62895,314.47499999975025,-0.05901798921352564 +62896,314.47999999975025,-0.05901727123744223 +62897,314.48499999975024,-0.05901655339664025 +62898,314.48999999975024,-0.0590158356910971 +62899,314.49499999975023,-0.05901511812079016 +62900,314.49999999975023,-0.05901440068569684 +62901,314.5049999997502,-0.05901368338579455 +62902,314.5099999997502,-0.059012966221060684 +62903,314.5149999997502,-0.059012249191472646 +62904,314.5199999997502,-0.05901153229700786 +62905,314.5249999997502,-0.059010815537643736 +62906,314.5299999997502,-0.05901009891335768 +62907,314.5349999997502,-0.059009382424127114 +62908,314.5399999997502,-0.05900866606992946 +62909,314.5449999997502,-0.059007949850742154 +62910,314.5499999997502,-0.0590072337665426 +62911,314.5549999997502,-0.05900651781730822 +62912,314.5599999997502,-0.05900580200301647 +62913,314.56499999975017,-0.059005086323644776 +62914,314.56999999975017,-0.059004370779170576 +62915,314.57499999975016,-0.05900365536957129 +62916,314.57999999975016,-0.05900294009482437 +62917,314.58499999975015,-0.05900222495490726 +62918,314.58999999975015,-0.05900150994979741 +62919,314.59499999975014,-0.05900079507947227 +62920,314.59999999975014,-0.05900008034390929 +62921,314.60499999975013,-0.05899936574308592 +62922,314.60999999975013,-0.05899865127697962 +62923,314.6149999997501,-0.05899793694556785 +62924,314.6199999997501,-0.05899722274882805 +62925,314.6249999997501,-0.05899650868673771 +62926,314.6299999997501,-0.05899579475927431 +62927,314.6349999997501,-0.05899508096641527 +62928,314.6399999997501,-0.05899436730813811 +62929,314.6449999997501,-0.05899365378442028 +62930,314.6499999997501,-0.05899294039523926 +62931,314.6549999997501,-0.05899222714057254 +62932,314.6599999997501,-0.05899151402039759 +62933,314.6649999997501,-0.0589908010346919 +62934,314.6699999997501,-0.058990088183432945 +62935,314.67499999975007,-0.058989375466598236 +62936,314.67999999975007,-0.05898866288416525 +62937,314.68499999975006,-0.05898795043611149 +62938,314.68999999975006,-0.05898723812241446 +62939,314.69499999975005,-0.058986525943051635 +62940,314.69999999975005,-0.05898581389800055 +62941,314.70499999975004,-0.05898510198723868 +62942,314.70999999975004,-0.05898439021074356 +62943,314.71499999975003,-0.05898367856849268 +62944,314.71999999975003,-0.058982967060463555 +62945,314.72499999975,-0.058982255686633706 +62946,314.72999999975,-0.05898154444698065 +62947,314.73499999975,-0.058980833341481916 +62948,314.73999999975,-0.05898012237011501 +62949,314.74499999975,-0.05897941153285747 +62950,314.74999999975,-0.058978700829686814 +62951,314.75499999975,-0.058977990260580586 +62952,314.75999999975,-0.05897727982551631 +62953,314.76499999975,-0.058976569524471514 +62954,314.76999999975,-0.058975859357423756 +62955,314.77499999975,-0.05897514932435057 +62956,314.77999999975,-0.058974439425229494 +62957,314.78499999974997,-0.058973729660038075 +62958,314.78999999974997,-0.05897302002875387 +62959,314.79499999974996,-0.05897231053135441 +62960,314.79999999974996,-0.05897160116781727 +62961,314.80499999974995,-0.05897089193811999 +62962,314.80999999974995,-0.058970182842240135 +62963,314.81499999974994,-0.058969473880155276 +62964,314.81999999974994,-0.05896876505184297 +62965,314.82499999974993,-0.05896805635728077 +62966,314.82999999974993,-0.058967347796446266 +62967,314.8349999997499,-0.05896663936931701 +62968,314.8399999997499,-0.05896593107587059 +62969,314.8449999997499,-0.058965222916084574 +62970,314.8499999997499,-0.05896451488993655 +62971,314.8549999997499,-0.05896380699740409 +62972,314.8599999997499,-0.058963099238464795 +62973,314.8649999997499,-0.05896239161309623 +62974,314.8699999997499,-0.058961684121275997 +62975,314.8749999997499,-0.058960976762981676 +62976,314.8799999997499,-0.058960269538190856 +62977,314.8849999997499,-0.058959562446881164 +62978,314.8899999997499,-0.058958855489030175 +62979,314.89499999974987,-0.058958148664615496 +62980,314.89999999974987,-0.05895744197361474 +62981,314.90499999974986,-0.05895673541600549 +62982,314.90999999974986,-0.05895602899176538 +62983,314.91499999974985,-0.058955322700872004 +62984,314.91999999974985,-0.058954616543302994 +62985,314.92499999974984,-0.058953910519035944 +62986,314.92999999974984,-0.0589532046280485 +62987,314.93499999974983,-0.05895249887031827 +62988,314.93999999974983,-0.05895179324582287 +62989,314.9449999997498,-0.058951087754539944 +62990,314.9499999997498,-0.058950382396447114 +62991,314.9549999997498,-0.058949677171522 +62992,314.9599999997498,-0.05894897207974225 +62993,314.9649999997498,-0.05894826712108551 +62994,314.9699999997498,-0.058947562295529395 +62995,314.9749999997498,-0.05894685760305157 +62996,314.9799999997498,-0.058946153043629664 +62997,314.9849999997498,-0.058945448617241325 +62998,314.9899999997498,-0.058944744323864214 +62999,314.9949999997498,-0.05894404016347598 +63000,314.9999999997498,-0.05894333613605426 +63001,315.00499999974977,-0.05894263224157673 +63002,315.00999999974977,-0.05894192848002105 +63003,315.01499999974976,-0.05894122485136487 +63004,315.01999999974976,-0.05894052135558586 +63005,315.02499999974975,-0.05893981799266169 +63006,315.02999999974975,-0.058939114762570015 +63007,315.03499999974974,-0.05893841166528853 +63008,315.03999999974974,-0.058937708700794886 +63009,315.04499999974973,-0.058937005869066784 +63010,315.04999999974973,-0.05893630317008189 +63011,315.0549999997497,-0.05893560060381789 +63012,315.0599999997497,-0.05893489817025247 +63013,315.0649999997497,-0.058934195869363305 +63014,315.0699999997497,-0.058933493701128103 +63015,315.0749999997497,-0.058932791665524537 +63016,315.0799999997497,-0.05893208976253031 +63017,315.0849999997497,-0.05893138799212312 +63018,315.0899999997497,-0.05893068635428067 +63019,315.0949999997497,-0.058929984848980654 +63020,315.0999999997497,-0.05892928347620078 +63021,315.1049999997497,-0.05892858223591876 +63022,315.1099999997497,-0.05892788112811229 +63023,315.11499999974967,-0.05892718015275909 +63024,315.11999999974967,-0.058926479309836896 +63025,315.12499999974966,-0.058925778599323395 +63026,315.12999999974966,-0.058925078021196314 +63027,315.13499999974965,-0.05892437757543338 +63028,315.13999999974965,-0.05892367726201232 +63029,315.14499999974964,-0.058922977080910856 +63030,315.14999999974964,-0.05892227703210671 +63031,315.15499999974963,-0.05892157711557762 +63032,315.15999999974963,-0.05892087733130133 +63033,315.1649999997496,-0.05892017767925556 +63034,315.1699999997496,-0.058919478159418066 +63035,315.1749999997496,-0.05891877877176657 +63036,315.1799999997496,-0.05891807951627884 +63037,315.1849999997496,-0.0589173803929326 +63038,315.1899999997496,-0.05891668140170562 +63039,315.1949999997496,-0.058915982542575636 +63040,315.1999999997496,-0.058915283815520414 +63041,315.2049999997496,-0.05891458522051771 +63042,315.2099999997496,-0.058913886757545275 +63043,315.2149999997496,-0.05891318842658087 +63044,315.2199999997496,-0.058912490227602275 +63045,315.22499999974957,-0.05891179216058724 +63046,315.22999999974957,-0.058911094225513536 +63047,315.23499999974956,-0.05891039642235894 +63048,315.23999999974956,-0.05890969875110123 +63049,315.24499999974955,-0.05890900121171818 +63050,315.24999999974955,-0.05890830380418755 +63051,315.25499999974954,-0.05890760652848715 +63052,315.25999999974954,-0.05890690938459476 +63053,315.26499999974953,-0.058906212372488144 +63054,315.26999999974953,-0.0589055154921451 +63055,315.2749999997495,-0.05890481874354343 +63056,315.2799999997495,-0.05890412212666092 +63057,315.2849999997495,-0.05890342564147538 +63058,315.2899999997495,-0.058902729287964604 +63059,315.2949999997495,-0.058902033066106384 +63060,315.2999999997495,-0.05890133697587852 +63061,315.3049999997495,-0.05890064101725884 +63062,315.3099999997495,-0.05889994519022513 +63063,315.3149999997495,-0.05889924949475521 +63064,315.3199999997495,-0.058898553930826894 +63065,315.3249999997495,-0.058897858498418006 +63066,315.3299999997495,-0.05889716319750635 +63067,315.33499999974947,-0.05889646802806975 +63068,315.33999999974947,-0.05889577299008603 +63069,315.34499999974946,-0.058895078083533024 +63070,315.34999999974946,-0.05889438330838856 +63071,315.35499999974945,-0.05889368866463046 +63072,315.35999999974945,-0.05889299415223657 +63073,315.36499999974944,-0.05889229977118471 +63074,315.36999999974944,-0.058891605521452735 +63075,315.37499999974943,-0.05889091140301848 +63076,315.37999999974943,-0.05889021741585978 +63077,315.3849999997494,-0.0588895235599545 +63078,315.3899999997494,-0.05888882983528046 +63079,315.3949999997494,-0.05888813624181555 +63080,315.3999999997494,-0.05888744277953758 +63081,315.4049999997494,-0.058886749448424425 +63082,315.4099999997494,-0.05888605624845396 +63083,315.4149999997494,-0.058885363179604015 +63084,315.4199999997494,-0.05888467024185246 +63085,315.4249999997494,-0.05888397743517719 +63086,315.4299999997494,-0.05888328475955604 +63087,315.4349999997494,-0.058882592214966875 +63088,315.4399999997494,-0.058881899801387604 +63089,315.44499999974937,-0.05888120751879607 +63090,315.44999999974937,-0.05888051536717018 +63091,315.45499999974936,-0.05887982334648778 +63092,315.45999999974936,-0.05887913145672678 +63093,315.46499999974935,-0.05887843969786505 +63094,315.46999999974935,-0.058877748069880484 +63095,315.47499999974934,-0.058877056572750976 +63096,315.47999999974934,-0.05887636520645441 +63097,315.48499999974933,-0.05887567397096868 +63098,315.48999999974933,-0.05887498286627169 +63099,315.4949999997493,-0.05887429189234135 +63100,315.4999999997493,-0.05887360104915554 +63101,315.5049999997493,-0.058872910336692175 +63102,315.5099999997493,-0.058872219754929164 +63103,315.5149999997493,-0.058871529303844414 +63104,315.5199999997493,-0.05887083898341584 +63105,315.5249999997493,-0.05887014879362134 +63106,315.5299999997493,-0.05886945873443885 +63107,315.5349999997493,-0.05886876880584629 +63108,315.5399999997493,-0.05886807900782158 +63109,315.5449999997493,-0.05886738934034264 +63110,315.5499999997493,-0.05886669980338739 +63111,315.55499999974927,-0.058866010396933774 +63112,315.55999999974927,-0.05886532112095972 +63113,315.56499999974926,-0.058864631975443164 +63114,315.56999999974926,-0.05886394296036203 +63115,315.57499999974925,-0.05886325407569426 +63116,315.57999999974925,-0.05886256532141781 +63117,315.58499999974924,-0.05886187669751061 +63118,315.58999999974924,-0.05886118820395061 +63119,315.59499999974923,-0.058860499840715765 +63120,315.59999999974923,-0.05885981160778401 +63121,315.6049999997492,-0.05885912350513331 +63122,315.6099999997492,-0.05885843553274162 +63123,315.6149999997492,-0.05885774769058691 +63124,315.6199999997492,-0.05885705997864712 +63125,315.6249999997492,-0.058856372396900225 +63126,315.6299999997492,-0.0588556849453242 +63127,315.6349999997492,-0.058854997623896996 +63128,315.6399999997492,-0.05885431043259659 +63129,315.6449999997492,-0.05885362337140096 +63130,315.6499999997492,-0.05885293644028808 +63131,315.6549999997492,-0.05885224963923592 +63132,315.6599999997492,-0.05885156296822247 +63133,315.66499999974917,-0.058850876427225716 +63134,315.66999999974917,-0.05885019001622362 +63135,315.67499999974916,-0.05884950373519421 +63136,315.67999999974916,-0.05884881758411544 +63137,315.68499999974915,-0.058848131562965325 +63138,315.68999999974915,-0.05884744567172184 +63139,315.69499999974914,-0.058846759910363006 +63140,315.69999999974914,-0.058846074278866796 +63141,315.70499999974913,-0.05884538877721123 +63142,315.70999999974913,-0.0588447034053743 +63143,315.7149999997491,-0.058844018163334046 +63144,315.7199999997491,-0.058843333051068446 +63145,315.7249999997491,-0.05884264806855552 +63146,315.7299999997491,-0.05884196321577329 +63147,315.7349999997491,-0.05884127849269976 +63148,315.7399999997491,-0.05884059389931297 +63149,315.7449999997491,-0.05883990943559091 +63150,315.7499999997491,-0.058839225101511634 +63151,315.7549999997491,-0.05883854089705315 +63152,315.7599999997491,-0.0588378568221935 +63153,315.7649999997491,-0.05883717287691072 +63154,315.7699999997491,-0.05883648906118282 +63155,315.77499999974907,-0.05883580537498786 +63156,315.77999999974907,-0.05883512181830387 +63157,315.78499999974906,-0.058834438391108905 +63158,315.78999999974906,-0.058833755093380985 +63159,315.79499999974905,-0.058833071925098165 +63160,315.79999999974905,-0.058832388886238506 +63161,315.80499999974904,-0.058831705976780044 +63162,315.80999999974904,-0.058831023196700825 +63163,315.81499999974903,-0.05883034054597893 +63164,315.81999999974903,-0.058829658024592404 +63165,315.824999999749,-0.058828975632519306 +63166,315.829999999749,-0.058828293369737696 +63167,315.834999999749,-0.05882761123622565 +63168,315.839999999749,-0.058826929231961235 +63169,315.844999999749,-0.05882624735692251 +63170,315.849999999749,-0.05882556561108756 +63171,315.854999999749,-0.05882488399443446 +63172,315.859999999749,-0.05882420250694128 +63173,315.864999999749,-0.05882352114858611 +63174,315.869999999749,-0.05882283991934703 +63175,315.874999999749,-0.058822158819202115 +63176,315.879999999749,-0.05882147784812946 +63177,315.88499999974897,-0.05882079700610716 +63178,315.88999999974897,-0.0588201162931133 +63179,315.89499999974896,-0.05881943570912598 +63180,315.89999999974896,-0.05881875525412329 +63181,315.90499999974895,-0.05881807492808334 +63182,315.90999999974895,-0.058817394730984206 +63183,315.91499999974894,-0.05881671466280402 +63184,315.91999999974894,-0.058816034723520885 +63185,315.92499999974893,-0.05881535491311291 +63186,315.92999999974893,-0.0588146752315582 +63187,315.9349999997489,-0.05881399567883487 +63188,315.9399999997489,-0.05881331625492103 +63189,315.9449999997489,-0.058812636959794815 +63190,315.9499999997489,-0.058811957793434344 +63191,315.9549999997489,-0.05881127875581774 +63192,315.9599999997489,-0.05881059984692311 +63193,315.9649999997489,-0.05880992106672861 +63194,315.9699999997489,-0.058809242415212355 +63195,315.9749999997489,-0.058808563892352485 +63196,315.9799999997489,-0.05880788549812712 +63197,315.9849999997489,-0.05880720723251442 +63198,315.9899999997489,-0.058806529095492506 +63199,315.99499999974887,-0.05880585108703954 +63200,315.99999999974887,-0.05880517320713367 +63201,316.00499999974886,-0.05880449545575302 +63202,316.00999999974886,-0.05880381783287575 +63203,316.01499999974885,-0.05880314033848002 +63204,316.01999999974885,-0.058802462972543997 +63205,316.02499999974884,-0.05880178573504581 +63206,316.02999999974884,-0.05880110862596364 +63207,316.03499999974883,-0.058800431645275625 +63208,316.03999999974883,-0.05879975479295996 +63209,316.0449999997488,-0.05879907806899479 +63210,316.0499999997488,-0.0587984014733583 +63211,316.0549999997488,-0.05879772500602866 +63212,316.0599999997488,-0.05879704866698403 +63213,316.0649999997488,-0.0587963724562026 +63214,316.0699999997488,-0.058795696373662554 +63215,316.0749999997488,-0.05879502041934205 +63216,316.0799999997488,-0.058794344593219305 +63217,316.0849999997488,-0.05879366889527249 +63218,316.0899999997488,-0.058792993325479784 +63219,316.0949999997488,-0.058792317883819396 +63220,316.0999999997488,-0.0587916425702695 +63221,316.10499999974877,-0.05879096738480831 +63222,316.10999999974877,-0.05879029232741401 +63223,316.11499999974876,-0.058789617398064806 +63224,316.11999999974876,-0.058788942596738905 +63225,316.12499999974875,-0.058788267923414524 +63226,316.12999999974875,-0.05878759337806986 +63227,316.13499999974874,-0.05878691896068311 +63228,316.13999999974874,-0.05878624467123251 +63229,316.14499999974873,-0.05878557050969626 +63230,316.14999999974873,-0.05878489647605258 +63231,316.1549999997487,-0.058784222570279696 +63232,316.1599999997487,-0.05878354879235583 +63233,316.1649999997487,-0.05878287514225922 +63234,316.1699999997487,-0.05878220161996806 +63235,316.1749999997487,-0.05878152822546061 +63236,316.1799999997487,-0.05878085495871508 +63237,316.1849999997487,-0.058780181819709725 +63238,316.1899999997487,-0.058779508808422774 +63239,316.1949999997487,-0.05877883592483246 +63240,316.1999999997487,-0.058778163168917034 +63241,316.2049999997487,-0.05877749054065474 +63242,316.2099999997487,-0.05877681804002381 +63243,316.21499999974867,-0.058776145667002525 +63244,316.21999999974867,-0.05877547342156911 +63245,316.22499999974866,-0.05877480130370182 +63246,316.22999999974866,-0.05877412931337892 +63247,316.23499999974865,-0.05877345745057866 +63248,316.23999999974865,-0.058772785715279316 +63249,316.24499999974864,-0.05877211410745913 +63250,316.24999999974864,-0.058771442627096396 +63251,316.25499999974863,-0.058770771274169346 +63252,316.25999999974863,-0.05877010004865629 +63253,316.2649999997486,-0.05876942895053547 +63254,316.2699999997486,-0.05876875797978518 +63255,316.2749999997486,-0.0587680871363837 +63256,316.2799999997486,-0.058767416420309304 +63257,316.2849999997486,-0.05876674583154026 +63258,316.2899999997486,-0.05876607537005488 +63259,316.2949999997486,-0.058765405035831435 +63260,316.2999999997486,-0.05876473482884822 +63261,316.3049999997486,-0.058764064749083515 +63262,316.3099999997486,-0.05876339479651564 +63263,316.3149999997486,-0.05876272497112288 +63264,316.3199999997486,-0.058762055272883515 +63265,316.32499999974857,-0.05876138570177588 +63266,316.32999999974857,-0.058760716257778255 +63267,316.33499999974856,-0.05876004694086896 +63268,316.33999999974856,-0.058759377751026305 +63269,316.34499999974855,-0.0587587086882286 +63270,316.34999999974855,-0.05875803975245414 +63271,316.35499999974854,-0.05875737094368127 +63272,316.35999999974854,-0.0587567022618883 +63273,316.36499999974853,-0.05875603370705353 +63274,316.36999999974853,-0.058755365279155314 +63275,316.3749999997485,-0.05875469697817196 +63276,316.3799999997485,-0.058754028804081815 +63277,316.3849999997485,-0.05875336075686319 +63278,316.3899999997485,-0.05875269283649442 +63279,316.3949999997485,-0.05875202504295385 +63280,316.3999999997485,-0.0587513573762198 +63281,316.4049999997485,-0.05875068983627064 +63282,316.4099999997485,-0.05875002242308469 +63283,316.4149999997485,-0.058749355136640306 +63284,316.4199999997485,-0.05874868797691582 +63285,316.4249999997485,-0.0587480209438896 +63286,316.4299999997485,-0.058747354037539994 +63287,316.43499999974847,-0.058746687257845355 +63288,316.43999999974847,-0.05874602060478404 +63289,316.44499999974846,-0.0587453540783344 +63290,316.44999999974846,-0.05874468767847482 +63291,316.45499999974845,-0.058744021405183644 +63292,316.45999999974845,-0.05874335525843924 +63293,316.46499999974844,-0.05874268923821998 +63294,316.46999999974844,-0.05874202334450425 +63295,316.47499999974843,-0.05874135757727039 +63296,316.47999999974843,-0.058740691936496815 +63297,316.4849999997484,-0.05874002642216189 +63298,316.4899999997484,-0.058739361034243986 +63299,316.4949999997484,-0.058738695772721485 +63300,316.4999999997484,-0.05873803063757279 +63301,316.5049999997484,-0.058737365628776274 +63302,316.5099999997484,-0.05873670074631035 +63303,316.5149999997484,-0.05873603599015338 +63304,316.5199999997484,-0.05873537136028378 +63305,316.5249999997484,-0.058734706856679954 +63306,316.5299999997484,-0.05873404247932028 +63307,316.5349999997484,-0.05873337822818317 +63308,316.5399999997484,-0.058732714103247034 +63309,316.54499999974837,-0.058732050104490285 +63310,316.54999999974837,-0.05873138623189132 +63311,316.55499999974836,-0.05873072248542856 +63312,316.55999999974836,-0.05873005886508041 +63313,316.56499999974835,-0.05872939537082529 +63314,316.56999999974835,-0.05872873200264162 +63315,316.57499999974834,-0.05872806876050784 +63316,316.57999999974834,-0.058727405644402354 +63317,316.58499999974833,-0.058726742654303596 +63318,316.58999999974833,-0.05872607979018998 +63319,316.5949999997483,-0.05872541705203996 +63320,316.5999999997483,-0.05872475443983195 +63321,316.6049999997483,-0.0587240919535444 +63322,316.6099999997483,-0.05872342959315574 +63323,316.6149999997483,-0.05872276735864442 +63324,316.6199999997483,-0.058722105249988873 +63325,316.6249999997483,-0.05872144326716756 +63326,316.6299999997483,-0.05872078141015892 +63327,316.6349999997483,-0.058720119678941404 +63328,316.6399999997483,-0.058719458073493457 +63329,316.6449999997483,-0.058718796593793546 +63330,316.6499999997483,-0.05871813523982011 +63331,316.65499999974827,-0.05871747401155165 +63332,316.65999999974827,-0.05871681290896659 +63333,316.66499999974826,-0.0587161519320434 +63334,316.66999999974826,-0.05871549108076057 +63335,316.67499999974825,-0.05871483035509655 +63336,316.67999999974825,-0.05871416975502981 +63337,316.68499999974824,-0.058713509280538846 +63338,316.68999999974824,-0.05871284893160211 +63339,316.69499999974823,-0.0587121887081981 +63340,316.69999999974823,-0.05871152861030528 +63341,316.7049999997482,-0.05871086863790214 +63342,316.7099999997482,-0.058710208790967174 +63343,316.7149999997482,-0.05870954906947887 +63344,316.7199999997482,-0.05870888947341571 +63345,316.7249999997482,-0.0587082300027562 +63346,316.7299999997482,-0.05870757065747883 +63347,316.7349999997482,-0.058706911437562084 +63348,316.7399999997482,-0.05870625234298449 +63349,316.7449999997482,-0.058705593373724524 +63350,316.7499999997482,-0.05870493452976072 +63351,316.7549999997482,-0.05870427581107157 +63352,316.7599999997482,-0.05870361721763558 +63353,316.76499999974817,-0.058702958749431274 +63354,316.76999999974817,-0.05870230040643716 +63355,316.77499999974816,-0.05870164218863177 +63356,316.77999999974816,-0.05870098409599361 +63357,316.78499999974815,-0.05870032612850119 +63358,316.78999999974815,-0.05869966828613305 +63359,316.79499999974814,-0.05869901056886772 +63360,316.79999999974814,-0.05869835297668372 +63361,316.80499999974813,-0.0586976955095596 +63362,316.80999999974813,-0.05869703816747386 +63363,316.8149999997481,-0.058696380950405073 +63364,316.8199999997481,-0.058695723858331765 +63365,316.8249999997481,-0.058695066891232474 +63366,316.8299999997481,-0.058694410049085745 +63367,316.8349999997481,-0.05869375333187013 +63368,316.8399999997481,-0.05869309673956417 +63369,316.8449999997481,-0.058692440272146415 +63370,316.8499999997481,-0.05869178392959542 +63371,316.8549999997481,-0.05869112771188975 +63372,316.8599999997481,-0.05869047161900795 +63373,316.8649999997481,-0.058689815650928595 +63374,316.8699999997481,-0.05868915980763023 +63375,316.87499999974807,-0.05868850408909144 +63376,316.87999999974807,-0.05868784849529078 +63377,316.88499999974806,-0.05868719302620681 +63378,316.88999999974806,-0.05868653768181813 +63379,316.89499999974805,-0.058685882462103295 +63380,316.89999999974805,-0.05868522736704088 +63381,316.90499999974804,-0.058684572396609486 +63382,316.90999999974804,-0.05868391755078767 +63383,316.91499999974803,-0.05868326282955402 +63384,316.91999999974803,-0.05868260823288715 +63385,316.924999999748,-0.058681953760765626 +63386,316.929999999748,-0.058681299413168034 +63387,316.934999999748,-0.05868064519007298 +63388,316.939999999748,-0.058679991091459056 +63389,316.944999999748,-0.05867933711730487 +63390,316.949999999748,-0.05867868326758901 +63391,316.954999999748,-0.058678029542290094 +63392,316.959999999748,-0.058677375941386715 +63393,316.964999999748,-0.05867672246485748 +63394,316.969999999748,-0.05867606911268101 +63395,316.974999999748,-0.058675415884835914 +63396,316.979999999748,-0.058674762781300814 +63397,316.98499999974797,-0.05867410980205432 +63398,316.98999999974797,-0.05867345694707504 +63399,316.99499999974796,-0.05867280421634162 +63400,316.99999999974796,-0.05867215160983267 +63401,317.00499999974795,-0.05867149912752683 +63402,317.00999999974795,-0.058670846769402714 +63403,317.01499999974794,-0.058670194535438966 +63404,317.01999999974794,-0.05866954242561422 +63405,317.02499999974793,-0.05866889043990712 +63406,317.02999999974793,-0.05866823857829628 +63407,317.0349999997479,-0.058667586840760365 +63408,317.0399999997479,-0.058666935227278005 +63409,317.0449999997479,-0.058666283737827854 +63410,317.0499999997479,-0.058665632372388574 +63411,317.0549999997479,-0.058664981130938786 +63412,317.0599999997479,-0.05866433001345716 +63413,317.0649999997479,-0.05866367901992236 +63414,317.0699999997479,-0.05866302815031304 +63415,317.0749999997479,-0.058662377404607856 +63416,317.0799999997479,-0.058661726782785466 +63417,317.0849999997479,-0.058661076284824545 +63418,317.0899999997479,-0.058660425910703765 +63419,317.09499999974787,-0.05865977566040179 +63420,317.09999999974787,-0.058659125533897294 +63421,317.10499999974786,-0.058658475531168965 +63422,317.10999999974786,-0.058657825652195454 +63423,317.11499999974785,-0.05865717589695545 +63424,317.11999999974785,-0.058656526265427646 +63425,317.12499999974784,-0.05865587675759072 +63426,317.12999999974784,-0.05865522737342336 +63427,317.13499999974783,-0.05865457811290425 +63428,317.13999999974783,-0.058653928976012085 +63429,317.1449999997478,-0.05865327996272556 +63430,317.1499999997478,-0.05865263107302339 +63431,317.1549999997478,-0.05865198230688425 +63432,317.1599999997478,-0.058651333664286855 +63433,317.1649999997478,-0.058650685145209894 +63434,317.1699999997478,-0.05865003674963208 +63435,317.1749999997478,-0.05864938847753213 +63436,317.1799999997478,-0.058648740328888734 +63437,317.1849999997478,-0.05864809230368063 +63438,317.1899999997478,-0.05864744440188652 +63439,317.1949999997478,-0.05864679662348513 +63440,317.1999999997478,-0.05864614896845518 +63441,317.20499999974777,-0.05864550143677539 +63442,317.20999999974777,-0.05864485402842449 +63443,317.21499999974776,-0.058644206743381194 +63444,317.21999999974776,-0.05864355958162425 +63445,317.22499999974775,-0.05864291254313237 +63446,317.22999999974775,-0.05864226562788431 +63447,317.23499999974774,-0.05864161883585879 +63448,317.23999999974774,-0.058640972167034566 +63449,317.24499999974773,-0.05864032562139036 +63450,317.24999999974773,-0.05863967919890494 +63451,317.2549999997477,-0.05863903289955704 +63452,317.2599999997477,-0.058638386723325414 +63453,317.2649999997477,-0.05863774067018881 +63454,317.2699999997477,-0.058637094740125975 +63455,317.2749999997477,-0.058636448933115676 +63456,317.2799999997477,-0.05863580324913667 +63457,317.2849999997477,-0.058635157688167724 +63458,317.2899999997477,-0.058634512250187586 +63459,317.2949999997477,-0.058633866935175034 +63460,317.2999999997477,-0.05863322174310884 +63461,317.3049999997477,-0.05863257667396775 +63462,317.3099999997477,-0.05863193172773056 +63463,317.31499999974767,-0.058631286904376044 +63464,317.31999999974767,-0.05863064220388297 +63465,317.32499999974766,-0.05862999762623014 +63466,317.32999999974766,-0.0586293531713963 +63467,317.33499999974765,-0.05862870883936027 +63468,317.33999999974765,-0.058628064630100826 +63469,317.34499999974764,-0.05862742054359676 +63470,317.34999999974764,-0.05862677657982685 +63471,317.35499999974763,-0.05862613273876991 +63472,317.35999999974763,-0.05862548902040473 +63473,317.3649999997476,-0.0586248454247101 +63474,317.3699999997476,-0.05862420195166483 +63475,317.3749999997476,-0.058623558601247724 +63476,317.3799999997476,-0.05862291537343759 +63477,317.3849999997476,-0.05862227226821324 +63478,317.3899999997476,-0.05862162928555347 +63479,317.3949999997476,-0.05862098642543711 +63480,317.3999999997476,-0.058620343687842975 +63481,317.4049999997476,-0.05861970107274988 +63482,317.4099999997476,-0.05861905858013664 +63483,317.4149999997476,-0.05861841620998209 +63484,317.4199999997476,-0.058617773962265037 +63485,317.42499999974757,-0.05861713183696432 +63486,317.42999999974757,-0.05861648983405878 +63487,317.43499999974756,-0.058615847953527235 +63488,317.43999999974756,-0.05861520619534854 +63489,317.44499999974755,-0.0586145645595015 +63490,317.44999999974755,-0.05861392304596498 +63491,317.45499999974754,-0.058613281654717825 +63492,317.45999999974754,-0.05861264038573887 +63493,317.46499999974753,-0.058611999239006965 +63494,317.46999999974753,-0.058611358214500954 +63495,317.4749999997475,-0.058610717312199696 +63496,317.4799999997475,-0.05861007653208205 +63497,317.4849999997475,-0.05860943587412686 +63498,317.4899999997475,-0.05860879533831299 +63499,317.4949999997475,-0.0586081549246193 +63500,317.4999999997475,-0.05860751463302465 +63501,317.5049999997475,-0.05860687446350792 +63502,317.5099999997475,-0.05860623441604797 +63503,317.5149999997475,-0.05860559449062368 +63504,317.5199999997475,-0.058604954687213905 +63505,317.5249999997475,-0.05860431500579753 +63506,317.5299999997475,-0.05860367544635345 +63507,317.53499999974747,-0.05860303600886053 +63508,317.53999999974747,-0.05860239669329765 +63509,317.54499999974746,-0.0586017574996437 +63510,317.54999999974746,-0.05860111842787757 +63511,317.55499999974745,-0.05860047947797814 +63512,317.55999999974745,-0.058599840649924316 +63513,317.56499999974744,-0.058599201943694994 +63514,317.56999999974744,-0.058598563359269065 +63515,317.57499999974743,-0.05859792489662543 +63516,317.57999999974743,-0.058597286555742985 +63517,317.5849999997474,-0.05859664833660064 +63518,317.5899999997474,-0.05859601023917731 +63519,317.5949999997474,-0.05859537226345188 +63520,317.5999999997474,-0.05859473440940329 +63521,317.6049999997474,-0.05859409667701044 +63522,317.6099999997474,-0.058593459066252254 +63523,317.6149999997474,-0.05859282157710764 +63524,317.6199999997474,-0.058592184209555524 +63525,317.6249999997474,-0.058591546963574846 +63526,317.6299999997474,-0.0585909098391445 +63527,317.6349999997474,-0.05859027283624344 +63528,317.6399999997474,-0.058589635954850595 +63529,317.64499999974737,-0.05858899919494489 +63530,317.64999999974737,-0.058588362556505263 +63531,317.65499999974736,-0.05858772603951066 +63532,317.65999999974736,-0.05858708964394001 +63533,317.66499999974735,-0.05858645336977226 +63534,317.66999999974735,-0.05858581721698636 +63535,317.67499999974734,-0.05858518118556124 +63536,317.67999999974734,-0.05858454527547588 +63537,317.68499999974733,-0.058583909486709204 +63538,317.68999999974733,-0.058583273819240195 +63539,317.6949999997473,-0.05858263827304778 +63540,317.6999999997473,-0.05858200284811093 +63541,317.7049999997473,-0.058581367544408625 +63542,317.7099999997473,-0.0585807323619198 +63543,317.7149999997473,-0.058580097300623454 +63544,317.7199999997473,-0.058579462360498526 +63545,317.7249999997473,-0.058578827541524006 +63546,317.7299999997473,-0.058578192843678864 +63547,317.7349999997473,-0.05857755826694208 +63548,317.7399999997473,-0.05857692381129262 +63549,317.7449999997473,-0.05857628947670948 +63550,317.7499999997473,-0.05857565526317163 +63551,317.75499999974727,-0.05857502117065806 +63552,317.75999999974727,-0.058574387199147766 +63553,317.76499999974726,-0.058573753348619736 +63554,317.76999999974726,-0.05857311961905296 +63555,317.77499999974725,-0.05857248601042643 +63556,317.77999999974725,-0.05857185252271915 +63557,317.78499999974724,-0.05857121915591013 +63558,317.78999999974724,-0.058570585909978365 +63559,317.79499999974723,-0.05856995278490285 +63560,317.79999999974723,-0.0585693197806626 +63561,317.8049999997472,-0.05856868689723662 +63562,317.8099999997472,-0.05856805413460393 +63563,317.8149999997472,-0.05856742149274355 +63564,317.8199999997472,-0.05856678897163448 +63565,317.8249999997472,-0.05856615657125576 +63566,317.8299999997472,-0.0585655242915864 +63567,317.8349999997472,-0.05856489213260542 +63568,317.8399999997472,-0.05856426009429185 +63569,317.8449999997472,-0.058563628176624735 +63570,317.8499999997472,-0.058562996379583086 +63571,317.8549999997472,-0.05856236470314595 +63572,317.8599999997472,-0.05856173314729234 +63573,317.86499999974717,-0.05856110171200133 +63574,317.86999999974717,-0.05856047039725195 +63575,317.87499999974716,-0.05855983920302323 +63576,317.87999999974716,-0.05855920812929422 +63577,317.88499999974715,-0.05855857717604397 +63578,317.88999999974715,-0.05855794634325153 +63579,317.89499999974714,-0.05855731563089596 +63580,317.89999999974714,-0.05855668503895632 +63581,317.90499999974713,-0.05855605456741165 +63582,317.90999999974713,-0.05855542421624102 +63583,317.9149999997471,-0.0585547939854235 +63584,317.9199999997471,-0.05855416387493814 +63585,317.9249999997471,-0.058553533884764024 +63586,317.9299999997471,-0.0585529040148802 +63587,317.9349999997471,-0.058552274265265755 +63588,317.9399999997471,-0.05855164463589976 +63589,317.9449999997471,-0.0585510151267613 +63590,317.9499999997471,-0.05855038573782946 +63591,317.9549999997471,-0.05854975646908331 +63592,317.9599999997471,-0.05854912732050192 +63593,317.9649999997471,-0.05854849829206441 +63594,317.9699999997471,-0.05854786938374984 +63595,317.97499999974707,-0.05854724059553732 +63596,317.97999999974706,-0.058546611927405935 +63597,317.98499999974706,-0.058545983379334775 +63598,317.98999999974706,-0.058545354951302954 +63599,317.99499999974705,-0.058544726643289566 +63600,317.99999999974705,-0.05854409845527371 +63601,318.00499999974704,-0.05854347038723451 +63602,318.00999999974704,-0.05854284243915105 +63603,318.01499999974703,-0.05854221461100245 +63604,318.01999999974703,-0.05854158690276783 +63605,318.024999999747,-0.0585409593144263 +63606,318.029999999747,-0.058540331845956986 +63607,318.034999999747,-0.05853970449733899 +63608,318.039999999747,-0.058539077268551454 +63609,318.044999999747,-0.058538450159573485 +63610,318.049999999747,-0.05853782317038423 +63611,318.054999999747,-0.0585371963009628 +63612,318.059999999747,-0.05853656955128834 +63613,318.064999999747,-0.058535942921339984 +63614,318.069999999747,-0.05853531641109686 +63615,318.074999999747,-0.05853469002053812 +63616,318.079999999747,-0.0585340637496429 +63617,318.08499999974697,-0.05853343759839035 +63618,318.08999999974696,-0.05853281156675961 +63619,318.09499999974696,-0.05853218565472983 +63620,318.09999999974696,-0.05853155986228016 +63621,318.10499999974695,-0.058530934189389754 +63622,318.10999999974695,-0.058530308636037774 +63623,318.11499999974694,-0.05852968320220337 +63624,318.11999999974694,-0.05852905788786572 +63625,318.12499999974693,-0.05852843269300398 +63626,318.12999999974693,-0.05852780761759731 +63627,318.1349999997469,-0.05852718266162488 +63628,318.1399999997469,-0.05852655782506586 +63629,318.1449999997469,-0.058525933107899435 +63630,318.1499999997469,-0.05852530851010477 +63631,318.1549999997469,-0.05852468403166104 +63632,318.1599999997469,-0.058524059672547424 +63633,318.1649999997469,-0.05852343543274312 +63634,318.1699999997469,-0.058522811312227294 +63635,318.1749999997469,-0.05852218731097915 +63636,318.1799999997469,-0.05852156342897787 +63637,318.1849999997469,-0.05852093966620265 +63638,318.1899999997469,-0.05852031602263268 +63639,318.19499999974687,-0.05851969249824717 +63640,318.19999999974686,-0.05851906909302531 +63641,318.20499999974686,-0.05851844580694629 +63642,318.20999999974686,-0.058517822639989336 +63643,318.21499999974685,-0.05851719959213364 +63644,318.21999999974685,-0.058516576663358424 +63645,318.22499999974684,-0.05851595385364289 +63646,318.22999999974684,-0.05851533116296625 +63647,318.23499999974683,-0.05851470859130774 +63648,318.23999999974683,-0.058514086138646546 +63649,318.2449999997468,-0.05851346380496192 +63650,318.2499999997468,-0.05851284159023307 +63651,318.2549999997468,-0.05851221949443922 +63652,318.2599999997468,-0.058511597517559626 +63653,318.2649999997468,-0.05851097565957349 +63654,318.2699999997468,-0.05851035392046005 +63655,318.2749999997468,-0.058509732300198534 +63656,318.2799999997468,-0.05850911079876821 +63657,318.2849999997468,-0.05850848941614829 +63658,318.2899999997468,-0.05850786815231804 +63659,318.2949999997468,-0.05850724700725668 +63660,318.2999999997468,-0.05850662598094347 +63661,318.30499999974677,-0.05850600507335766 +63662,318.30999999974676,-0.05850538428447851 +63663,318.31499999974676,-0.05850476361428527 +63664,318.31999999974676,-0.0585041430627572 +63665,318.32499999974675,-0.058503522629873544 +63666,318.32999999974675,-0.058502902315613586 +63667,318.33499999974674,-0.058502282119956575 +63668,318.33999999974674,-0.05850166204288179 +63669,318.34499999974673,-0.058501042084368494 +63670,318.34999999974673,-0.058500422244395965 +63671,318.3549999997467,-0.05849980252294347 +63672,318.3599999997467,-0.05849918291999029 +63673,318.3649999997467,-0.058498563435515696 +63674,318.3699999997467,-0.05849794406949897 +63675,318.3749999997467,-0.05849732482191941 +63676,318.3799999997467,-0.05849670569275629 +63677,318.3849999997467,-0.05849608668198891 +63678,318.3899999997467,-0.058495467789596564 +63679,318.3949999997467,-0.05849484901555853 +63680,318.3999999997467,-0.05849423035985411 +63681,318.4049999997467,-0.05849361182246261 +63682,318.4099999997467,-0.058492993403363315 +63683,318.41499999974667,-0.058492375102535535 +63684,318.41999999974666,-0.058491756919958574 +63685,318.42499999974666,-0.05849113885561175 +63686,318.42999999974666,-0.05849052090947437 +63687,318.43499999974665,-0.058489903081525754 +63688,318.43999999974665,-0.0584892853717452 +63689,318.44499999974664,-0.05848866778011204 +63690,318.44999999974664,-0.05848805030660559 +63691,318.45499999974663,-0.05848743295120517 +63692,318.4599999997466,-0.0584868157138901 +63693,318.4649999997466,-0.058486198594639716 +63694,318.4699999997466,-0.05848558159343335 +63695,318.4749999997466,-0.05848496471025034 +63696,318.4799999997466,-0.05848434794507 +63697,318.4849999997466,-0.05848373129787169 +63698,318.4899999997466,-0.05848311476863472 +63699,318.4949999997466,-0.05848249835733846 +63700,318.4999999997466,-0.058481882063962244 +63701,318.5049999997466,-0.05848126588848543 +63702,318.5099999997466,-0.05848064983088735 +63703,318.5149999997466,-0.058480033891147344 +63704,318.5199999997466,-0.0584794180692448 +63705,318.52499999974657,-0.05847880236515906 +63706,318.52999999974656,-0.05847818677886947 +63707,318.53499999974656,-0.058477571310355414 +63708,318.53999999974656,-0.05847695595959624 +63709,318.54499999974655,-0.058476340726571326 +63710,318.54999999974655,-0.058475725611260035 +63711,318.55499999974654,-0.05847511061364173 +63712,318.55999999974654,-0.05847449573369579 +63713,318.56499999974653,-0.0584738809714016 +63714,318.5699999997465,-0.05847326632673853 +63715,318.5749999997465,-0.05847265179968595 +63716,318.5799999997465,-0.058472037390223254 +63717,318.5849999997465,-0.058471423098329825 +63718,318.5899999997465,-0.05847080892398506 +63719,318.5949999997465,-0.05847019486716835 +63720,318.5999999997465,-0.058469580927859074 +63721,318.6049999997465,-0.05846896710603663 +63722,318.6099999997465,-0.05846835340168042 +63723,318.6149999997465,-0.05846773981476985 +63724,318.6199999997465,-0.0584671263452843 +63725,318.6249999997465,-0.0584665129932032 +63726,318.6299999997465,-0.05846589975850594 +63727,318.63499999974647,-0.05846528664117196 +63728,318.63999999974646,-0.05846467364118064 +63729,318.64499999974646,-0.05846406075851141 +63730,318.64999999974646,-0.05846344799314367 +63731,318.65499999974645,-0.05846283534505686 +63732,318.65999999974645,-0.058462222814230386 +63733,318.66499999974644,-0.05846161040064368 +63734,318.66999999974644,-0.05846099810427617 +63735,318.67499999974643,-0.05846038592510729 +63736,318.6799999997464,-0.05845977386311645 +63737,318.6849999997464,-0.05845916191828312 +63738,318.6899999997464,-0.058458550090586696 +63739,318.6949999997464,-0.05845793838000664 +63740,318.6999999997464,-0.058457326786522386 +63741,318.7049999997464,-0.058456715310113386 +63742,318.7099999997464,-0.05845610395075907 +63743,318.7149999997464,-0.05845549270843891 +63744,318.7199999997464,-0.058454881583132334 +63745,318.7249999997464,-0.058454270574818806 +63746,318.7299999997464,-0.05845365968347778 +63747,318.7349999997464,-0.05845304890908872 +63748,318.7399999997464,-0.05845243825163108 +63749,318.74499999974637,-0.05845182771108432 +63750,318.74999999974636,-0.05845121728742792 +63751,318.75499999974636,-0.05845060698064134 +63752,318.75999999974636,-0.058449996790704034 +63753,318.76499999974635,-0.0584493867175955 +63754,318.76999999974635,-0.05844877676129521 +63755,318.77499999974634,-0.05844816692178262 +63756,318.77999999974634,-0.05844755719903722 +63757,318.78499999974633,-0.058446947593038506 +63758,318.7899999997463,-0.058446338103765955 +63759,318.7949999997463,-0.05844572873119904 +63760,318.7999999997463,-0.05844511947531727 +63761,318.8049999997463,-0.05844451033610014 +63762,318.8099999997463,-0.05844390131352712 +63763,318.8149999997463,-0.05844329240757773 +63764,318.8199999997463,-0.058442683618231454 +63765,318.8249999997463,-0.05844207494546781 +63766,318.8299999997463,-0.0584414663892663 +63767,318.8349999997463,-0.05844085794960641 +63768,318.8399999997463,-0.05844024962646766 +63769,318.8449999997463,-0.058439641419829574 +63770,318.8499999997463,-0.058439033329671645 +63771,318.85499999974627,-0.058438425355973406 +63772,318.85999999974626,-0.058437817498714385 +63773,318.86499999974626,-0.05843720975787407 +63774,318.86999999974626,-0.05843660213343202 +63775,318.87499999974625,-0.05843599462536774 +63776,318.87999999974625,-0.05843538723366076 +63777,318.88499999974624,-0.05843477995829062 +63778,318.88999999974624,-0.05843417279923685 +63779,318.89499999974623,-0.05843356575647898 +63780,318.8999999997462,-0.058432958829996565 +63781,318.9049999997462,-0.05843235201976913 +63782,318.9099999997462,-0.058431745325776205 +63783,318.9149999997462,-0.058431138747997366 +63784,318.9199999997462,-0.058430532286412144 +63785,318.9249999997462,-0.05842992594100009 +63786,318.9299999997462,-0.058429319711740764 +63787,318.9349999997462,-0.058428713598613714 +63788,318.9399999997462,-0.0584281076015985 +63789,318.9449999997462,-0.058427501720674686 +63790,318.9499999997462,-0.058426895955821824 +63791,318.9549999997462,-0.058426290307019485 +63792,318.9599999997462,-0.05842568477424725 +63793,318.96499999974617,-0.058425079357484665 +63794,318.96999999974616,-0.05842447405671132 +63795,318.97499999974616,-0.05842386887190678 +63796,318.97999999974616,-0.05842326380305063 +63797,318.98499999974615,-0.05842265885012245 +63798,318.98999999974615,-0.05842205401310181 +63799,318.99499999974614,-0.05842144929196832 +63800,318.99999999974614,-0.05842084468670153 +63801,319.00499999974613,-0.05842024019728105 +63802,319.0099999997461,-0.05841963582368648 +63803,319.0149999997461,-0.0584190315658974 +63804,319.0199999997461,-0.05841842742389341 +63805,319.0249999997461,-0.058417823397654105 +63806,319.0299999997461,-0.058417219487159104 +63807,319.0349999997461,-0.05841661569238799 +63808,319.0399999997461,-0.05841601201332038 +63809,319.0449999997461,-0.05841540844993588 +63810,319.0499999997461,-0.05841480500221411 +63811,319.0549999997461,-0.058414201670134676 +63812,319.0599999997461,-0.0584135984536772 +63813,319.0649999997461,-0.05841299535282129 +63814,319.0699999997461,-0.05841239236754656 +63815,319.07499999974607,-0.058411789497832656 +63816,319.07999999974606,-0.0584111867436592 +63817,319.08499999974606,-0.05841058410500581 +63818,319.08999999974606,-0.05840998158185212 +63819,319.09499999974605,-0.058409379174177774 +63820,319.09999999974605,-0.05840877688196238 +63821,319.10499999974604,-0.058408174705185605 +63822,319.10999999974604,-0.05840757264382708 +63823,319.11499999974603,-0.05840697069786644 +63824,319.119999999746,-0.05840636886728335 +63825,319.124999999746,-0.05840576715205744 +63826,319.129999999746,-0.058405165552168355 +63827,319.134999999746,-0.058404564067595775 +63828,319.139999999746,-0.05840396269831932 +63829,319.144999999746,-0.05840336144431868 +63830,319.149999999746,-0.058402760305573495 +63831,319.154999999746,-0.05840215928206344 +63832,319.159999999746,-0.05840155837376817 +63833,319.164999999746,-0.05840095758066735 +63834,319.169999999746,-0.05840035690274067 +63835,319.174999999746,-0.05839975633996778 +63836,319.179999999746,-0.058399155892328365 +63837,319.18499999974597,-0.058398555559802105 +63838,319.18999999974596,-0.05839795534236866 +63839,319.19499999974596,-0.05839735524000774 +63840,319.19999999974596,-0.05839675525269901 +63841,319.20499999974595,-0.05839615538042217 +63842,319.20999999974595,-0.058395555623156896 +63843,319.21499999974594,-0.05839495598088289 +63844,319.21999999974594,-0.058394356453579835 +63845,319.22499999974593,-0.05839375704122745 +63846,319.2299999997459,-0.05839315774380541 +63847,319.2349999997459,-0.058392558561293426 +63848,319.2399999997459,-0.05839195949367121 +63849,319.2449999997459,-0.05839136054091846 +63850,319.2499999997459,-0.058390761703014875 +63851,319.2549999997459,-0.05839016297994019 +63852,319.2599999997459,-0.0583895643716741 +63853,319.2649999997459,-0.05838896587819633 +63854,319.2699999997459,-0.05838836749948661 +63855,319.2749999997459,-0.058387769235524634 +63856,319.2799999997459,-0.058387171086290136 +63857,319.2849999997459,-0.058386573051762855 +63858,319.2899999997459,-0.05838597513192251 +63859,319.29499999974587,-0.058385377326748825 +63860,319.29999999974586,-0.05838477963622154 +63861,319.30499999974586,-0.05838418206032039 +63862,319.30999999974586,-0.058383584599025116 +63863,319.31499999974585,-0.05838298725231546 +63864,319.31999999974585,-0.05838239002017116 +63865,319.32499999974584,-0.05838179290257196 +63866,319.32999999974584,-0.05838119589949761 +63867,319.33499999974583,-0.05838059901092787 +63868,319.3399999997458,-0.05838000223684249 +63869,319.3449999997458,-0.05837940557722121 +63870,319.3499999997458,-0.05837880903204381 +63871,319.3549999997458,-0.05837821260129003 +63872,319.3599999997458,-0.05837761628493965 +63873,319.3649999997458,-0.05837702008297242 +63874,319.3699999997458,-0.05837642399536812 +63875,319.3749999997458,-0.0583758280221065 +63876,319.3799999997458,-0.05837523216316737 +63877,319.3849999997458,-0.058374636418530475 +63878,319.3899999997458,-0.05837404078817559 +63879,319.3949999997458,-0.05837344527208252 +63880,319.3999999997458,-0.058372849870231024 +63881,319.40499999974577,-0.0583722545826009 +63882,319.40999999974576,-0.058371659409171925 +63883,319.41499999974576,-0.0583710643499239 +63884,319.41999999974576,-0.05837046940483662 +63885,319.42499999974575,-0.05836987457388986 +63886,319.42999999974575,-0.05836927985706343 +63887,319.43499999974574,-0.058368685254337124 +63888,319.43999999974574,-0.05836809076569075 +63889,319.44499999974573,-0.05836749639110411 +63890,319.4499999997457,-0.05836690213055702 +63891,319.4549999997457,-0.05836630798402928 +63892,319.4599999997457,-0.0583657139515007 +63893,319.4649999997457,-0.058365120032951086 +63894,319.4699999997457,-0.058364526228360275 +63895,319.4749999997457,-0.05836393253770808 +63896,319.4799999997457,-0.05836333896097432 +63897,319.4849999997457,-0.05836274549813881 +63898,319.4899999997457,-0.05836215214918138 +63899,319.4949999997457,-0.05836155891408188 +63900,319.4999999997457,-0.05836096579282012 +63901,319.5049999997457,-0.058360372785375945 +63902,319.5099999997457,-0.05835977989172918 +63903,319.51499999974567,-0.05835918711185967 +63904,319.51999999974566,-0.05835859444574726 +63905,319.52499999974566,-0.05835800189337178 +63906,319.52999999974566,-0.05835740945471309 +63907,319.53499999974565,-0.058356817129751035 +63908,319.53999999974565,-0.058356224918465475 +63909,319.54499999974564,-0.05835563282083624 +63910,319.54999999974564,-0.0583550408368432 +63911,319.55499999974563,-0.05835444896646622 +63912,319.5599999997456,-0.05835385720968516 +63913,319.5649999997456,-0.05835326556647988 +63914,319.5699999997456,-0.05835267403683024 +63915,319.5749999997456,-0.0583520826207161 +63916,319.5799999997456,-0.05835149131811736 +63917,319.5849999997456,-0.058350900129013866 +63918,319.5899999997456,-0.0583503090533855 +63919,319.5949999997456,-0.05834971809121216 +63920,319.5999999997456,-0.0583491272424737 +63921,319.6049999997456,-0.058348536507150016 +63922,319.6099999997456,-0.05834794588522098 +63923,319.6149999997456,-0.0583473553766665 +63924,319.6199999997456,-0.05834676498146645 +63925,319.62499999974557,-0.05834617469960074 +63926,319.62999999974556,-0.05834558453104926 +63927,319.63499999974556,-0.058344994475791896 +63928,319.63999999974556,-0.058344404533808555 +63929,319.64499999974555,-0.05834381470507914 +63930,319.64999999974555,-0.05834322498958356 +63931,319.65499999974554,-0.05834263538730173 +63932,319.65999999974554,-0.05834204589821354 +63933,319.66499999974553,-0.05834145652229891 +63934,319.6699999997455,-0.058340867259537764 +63935,319.6749999997455,-0.05834027810991001 +63936,319.6799999997455,-0.05833968907339556 +63937,319.6849999997455,-0.05833910014997436 +63938,319.6899999997455,-0.05833851133962632 +63939,319.6949999997455,-0.058337922642331376 +63940,319.6999999997455,-0.05833733405806944 +63941,319.7049999997455,-0.05833674558682047 +63942,319.7099999997455,-0.058336157228564375 +63943,319.7149999997455,-0.05833556898328111 +63944,319.7199999997455,-0.0583349808509506 +63945,319.7249999997455,-0.058334392831552805 +63946,319.7299999997455,-0.05833380492506766 +63947,319.73499999974547,-0.05833321713147511 +63948,319.73999999974546,-0.05833262945075511 +63949,319.74499999974546,-0.05833204188288761 +63950,319.74999999974546,-0.058331454427852564 +63951,319.75499999974545,-0.058330867085629935 +63952,319.75999999974545,-0.058330279856199665 +63953,319.76499999974544,-0.05832969273954173 +63954,319.76999999974544,-0.05832910573563609 +63955,319.77499999974543,-0.058328518844462725 +63956,319.7799999997454,-0.05832793206600158 +63957,319.7849999997454,-0.05832734540023265 +63958,319.7899999997454,-0.05832675884713588 +63959,319.7949999997454,-0.05832617240669127 +63960,319.7999999997454,-0.0583255860788788 +63961,319.8049999997454,-0.058324999863678444 +63962,319.8099999997454,-0.05832441376107019 +63963,319.8149999997454,-0.05832382777103402 +63964,319.8199999997454,-0.05832324189354993 +63965,319.8249999997454,-0.05832265612859792 +63966,319.8299999997454,-0.05832207047615795 +63967,319.8349999997454,-0.05832148493621004 +63968,319.8399999997454,-0.05832089950873419 +63969,319.84499999974537,-0.058320314193710386 +63970,319.84999999974536,-0.05831972899111867 +63971,319.85499999974536,-0.058319143900939 +63972,319.85999999974536,-0.058318558923151416 +63973,319.86499999974535,-0.05831797405773592 +63974,319.86999999974535,-0.058317389304672534 +63975,319.87499999974534,-0.058316804663941256 +63976,319.87999999974534,-0.058316220135522116 +63977,319.88499999974533,-0.05831563571939513 +63978,319.8899999997453,-0.058315051415540324 +63979,319.8949999997453,-0.058314467223937724 +63980,319.8999999997453,-0.05831388314456737 +63981,319.9049999997453,-0.05831329917740928 +63982,319.9099999997453,-0.0583127153224435 +63983,319.9149999997453,-0.058312131579650046 +63984,319.9199999997453,-0.05831154794900897 +63985,319.9249999997453,-0.05831096443050031 +63986,319.9299999997453,-0.0583103810241041 +63987,319.9349999997453,-0.05830979772980041 +63988,319.9399999997453,-0.05830921454756927 +63989,319.9449999997453,-0.05830863147739074 +63990,319.9499999997453,-0.05830804851924485 +63991,319.95499999974527,-0.05830746567311168 +63992,319.95999999974526,-0.05830688293897129 +63993,319.96499999974526,-0.05830630031680373 +63994,319.96999999974526,-0.05830571780658906 +63995,319.97499999974525,-0.058305135408307354 +63996,319.97999999974525,-0.05830455312193868 +63997,319.98499999974524,-0.05830397094746312 +63998,319.98999999974524,-0.05830338888486071 +63999,319.99499999974523,-0.05830280693411156 +64000,319.9999999997452,-0.05830222509519574 +64001,320.0049999997452,-0.05830164336809333 +64002,320.0099999997452,-0.05830106175278439 +64003,320.0149999997452,-0.05830048024924905 +64004,320.0199999997452,-0.05829989885746737 +64005,320.0249999997452,-0.05829931757741944 +64006,320.0299999997452,-0.05829873640908537 +64007,320.0349999997452,-0.05829815535244522 +64008,320.0399999997452,-0.05829757440747912 +64009,320.0449999997452,-0.058296993574167164 +64010,320.0499999997452,-0.05829641285248945 +64011,320.0549999997452,-0.058295832242426085 +64012,320.0599999997452,-0.05829525174395718 +64013,320.06499999974517,-0.05829467135706284 +64014,320.06999999974516,-0.05829409108172318 +64015,320.07499999974516,-0.05829351091791831 +64016,320.07999999974516,-0.05829293086562837 +64017,320.08499999974515,-0.058292350924833446 +64018,320.08999999974515,-0.05829177109551368 +64019,320.09499999974514,-0.0582911913776492 +64020,320.09999999974514,-0.05829061177122013 +64021,320.10499999974513,-0.058290032276206605 +64022,320.1099999997451,-0.058289452892588745 +64023,320.1149999997451,-0.058288873620346696 +64024,320.1199999997451,-0.05828829445946059 +64025,320.1249999997451,-0.05828771540991056 +64026,320.1299999997451,-0.05828713647167676 +64027,320.1349999997451,-0.058286557644739334 +64028,320.1399999997451,-0.05828597892907843 +64029,320.1449999997451,-0.058285400324674184 +64030,320.1499999997451,-0.05828482183150676 +64031,320.1549999997451,-0.05828424344955633 +64032,320.1599999997451,-0.05828366517880302 +64033,320.1649999997451,-0.05828308701922701 +64034,320.1699999997451,-0.05828250897080845 +64035,320.17499999974507,-0.058281931033527516 +64036,320.17999999974506,-0.05828135320736436 +64037,320.18499999974506,-0.058280775492299174 +64038,320.18999999974505,-0.05828019788831212 +64039,320.19499999974505,-0.05827962039538336 +64040,320.19999999974505,-0.0582790430134931 +64041,320.20499999974504,-0.058278465742621494 +64042,320.20999999974504,-0.05827788858274873 +64043,320.21499999974503,-0.058277311533855 +64044,320.219999999745,-0.05827673459592049 +64045,320.224999999745,-0.05827615776892538 +64046,320.229999999745,-0.058275581052849856 +64047,320.234999999745,-0.05827500444767415 +64048,320.239999999745,-0.05827442795337842 +64049,320.244999999745,-0.05827385156994289 +64050,320.249999999745,-0.05827327529734775 +64051,320.254999999745,-0.05827269913557321 +64052,320.259999999745,-0.058272123084599475 +64053,320.264999999745,-0.05827154714440674 +64054,320.269999999745,-0.058270971314975245 +64055,320.274999999745,-0.058270395596285184 +64056,320.279999999745,-0.05826981998831678 +64057,320.28499999974497,-0.05826924449105026 +64058,320.28999999974496,-0.05826866910446583 +64059,320.29499999974496,-0.05826809382854373 +64060,320.29999999974495,-0.05826751866326417 +64061,320.30499999974495,-0.05826694360860741 +64062,320.30999999974495,-0.058266368664553654 +64063,320.31499999974494,-0.05826579383108314 +64064,320.31999999974494,-0.058265219108176114 +64065,320.32499999974493,-0.05826464449581282 +64066,320.3299999997449,-0.05826406999397348 +64067,320.3349999997449,-0.05826349560263836 +64068,320.3399999997449,-0.05826292132178769 +64069,320.3449999997449,-0.05826234715140173 +64070,320.3499999997449,-0.058261773091460724 +64071,320.3549999997449,-0.05826119914194493 +64072,320.3599999997449,-0.058260625302834615 +64073,320.3649999997449,-0.058260051574110024 +64074,320.3699999997449,-0.05825947795575142 +64075,320.3749999997449,-0.05825890444773907 +64076,320.3799999997449,-0.05825833105005324 +64077,320.3849999997449,-0.058257757762674216 +64078,320.3899999997449,-0.05825718458558225 +64079,320.39499999974487,-0.05825661151875763 +64080,320.39999999974486,-0.05825603856218061 +64081,320.40499999974486,-0.05825546571583149 +64082,320.40999999974485,-0.05825489297969055 +64083,320.41499999974485,-0.058254320353738065 +64084,320.41999999974485,-0.05825374783795434 +64085,320.42499999974484,-0.058253175432319636 +64086,320.42999999974484,-0.058252603136814275 +64087,320.43499999974483,-0.05825203095141854 +64088,320.4399999997448,-0.05825145887611271 +64089,320.4449999997448,-0.0582508869108771 +64090,320.4499999997448,-0.05825031505569202 +64091,320.4549999997448,-0.058249743310537755 +64092,320.4599999997448,-0.058249171675394625 +64093,320.4649999997448,-0.05824860015024294 +64094,320.4699999997448,-0.058248028735063004 +64095,320.4749999997448,-0.058247457429835135 +64096,320.4799999997448,-0.05824688623453966 +64097,320.4849999997448,-0.05824631514915689 +64098,320.4899999997448,-0.05824574417366714 +64099,320.4949999997448,-0.05824517330805074 +64100,320.4999999997448,-0.05824460255228801 +64101,320.50499999974477,-0.058244031906359295 +64102,320.50999999974476,-0.058243461370244914 +64103,320.51499999974476,-0.05824289094392521 +64104,320.51999999974475,-0.05824232062738051 +64105,320.52499999974475,-0.05824175042059116 +64106,320.52999999974475,-0.05824118032353749 +64107,320.53499999974474,-0.058240610336199865 +64108,320.53999999974474,-0.05824004045855863 +64109,320.54499999974473,-0.058239470690594104 +64110,320.5499999997447,-0.05823890103228666 +64111,320.5549999997447,-0.058238331483616665 +64112,320.5599999997447,-0.05823776204456446 +64113,320.5649999997447,-0.05823719271511041 +64114,320.5699999997447,-0.05823662349523487 +64115,320.5749999997447,-0.058236054384918204 +64116,320.5799999997447,-0.058235485384140785 +64117,320.5849999997447,-0.05823491649288299 +64118,320.5899999997447,-0.058234347711125185 +64119,320.5949999997447,-0.05823377903884773 +64120,320.5999999997447,-0.05823321047603102 +64121,320.6049999997447,-0.05823264202265543 +64122,320.6099999997447,-0.05823207367870133 +64123,320.61499999974467,-0.05823150544414911 +64124,320.61999999974466,-0.05823093731897916 +64125,320.62499999974466,-0.058230369303171874 +64126,320.62999999974465,-0.05822980139670763 +64127,320.63499999974465,-0.05822923359956684 +64128,320.63999999974465,-0.05822866591172989 +64129,320.64499999974464,-0.058228098333177186 +64130,320.64999999974464,-0.05822753086388911 +64131,320.65499999974463,-0.058226963503846096 +64132,320.6599999997446,-0.05822639625302853 +64133,320.6649999997446,-0.05822582911141683 +64134,320.6699999997446,-0.05822526207899141 +64135,320.6749999997446,-0.05822469515573268 +64136,320.6799999997446,-0.058224128341621044 +64137,320.6849999997446,-0.05822356163663693 +64138,320.6899999997446,-0.05822299504076078 +64139,320.6949999997446,-0.058222428553973006 +64140,320.6999999997446,-0.058221862176254024 +64141,320.7049999997446,-0.058221295907584264 +64142,320.7099999997446,-0.05822072974794418 +64143,320.7149999997446,-0.05822016369731418 +64144,320.7199999997446,-0.058219597755674715 +64145,320.72499999974457,-0.05821903192300622 +64146,320.72999999974456,-0.05821846619928912 +64147,320.73499999974456,-0.05821790058450389 +64148,320.73999999974455,-0.058217335078630965 +64149,320.74499999974455,-0.05821676968165081 +64150,320.74999999974455,-0.05821620439354385 +64151,320.75499999974454,-0.05821563921429055 +64152,320.75999999974454,-0.058215074143871365 +64153,320.76499999974453,-0.058214509182266755 +64154,320.7699999997445,-0.05821394432945718 +64155,320.7749999997445,-0.058213379585423115 +64156,320.7799999997445,-0.05821281495014502 +64157,320.7849999997445,-0.05821225042360337 +64158,320.7899999997445,-0.05821168600577862 +64159,320.7949999997445,-0.05821112169665126 +64160,320.7999999997445,-0.05821055749620178 +64161,320.8049999997445,-0.058209993404410625 +64162,320.8099999997445,-0.05820942942125829 +64163,320.8149999997445,-0.05820886554672528 +64164,320.8199999997445,-0.05820830178079206 +64165,320.8249999997445,-0.05820773812343913 +64166,320.8299999997445,-0.05820717457464697 +64167,320.83499999974447,-0.05820661113439608 +64168,320.83999999974446,-0.05820604780266697 +64169,320.84499999974446,-0.05820548457944012 +64170,320.84999999974445,-0.05820492146469606 +64171,320.85499999974445,-0.058204358458415255 +64172,320.85999999974445,-0.058203795560578246 +64173,320.86499999974444,-0.058203232771165535 +64174,320.86999999974444,-0.05820267009015763 +64175,320.87499999974443,-0.05820210751753504 +64176,320.8799999997444,-0.058201545053278285 +64177,320.8849999997444,-0.05820098269736789 +64178,320.8899999997444,-0.05820042044978438 +64179,320.8949999997444,-0.058199858310508265 +64180,320.8999999997444,-0.058199296279520085 +64181,320.9049999997444,-0.05819873435680036 +64182,320.9099999997444,-0.05819817254232963 +64183,320.9149999997444,-0.05819761083608843 +64184,320.9199999997444,-0.058197049238057304 +64185,320.9249999997444,-0.058196487748216785 +64186,320.9299999997444,-0.05819592636654741 +64187,320.9349999997444,-0.05819536509302972 +64188,320.9399999997444,-0.05819480392764428 +64189,320.94499999974437,-0.05819424287037163 +64190,320.94999999974436,-0.05819368192119232 +64191,320.95499999974436,-0.05819312108008691 +64192,320.95999999974435,-0.05819256034703595 +64193,320.96499999974435,-0.058191999722020014 +64194,320.96999999974435,-0.05819143920501965 +64195,320.97499999974434,-0.05819087879601543 +64196,320.97999999974434,-0.058190318494987923 +64197,320.98499999974433,-0.05818975830191769 +64198,320.9899999997443,-0.058189198216785316 +64199,320.9949999997443,-0.058188638239571364 +64200,320.9999999997443,-0.05818807837025642 +64201,321.0049999997443,-0.058187518608821064 +64202,321.0099999997443,-0.058186958955245886 +64203,321.0149999997443,-0.05818639940951145 +64204,321.0199999997443,-0.058185839971598353 +64205,321.0249999997443,-0.058185280641487196 +64206,321.0299999997443,-0.058184721419158564 +64207,321.0349999997443,-0.05818416230459304 +64208,321.0399999997443,-0.058183603297771246 +64209,321.0449999997443,-0.05818304439867376 +64210,321.0499999997443,-0.0581824856072812 +64211,321.05499999974427,-0.05818192692357417 +64212,321.05999999974426,-0.05818136834753326 +64213,321.06499999974426,-0.05818080987913911 +64214,321.06999999974425,-0.058180251518372306 +64215,321.07499999974425,-0.058179693265213474 +64216,321.07999999974425,-0.05817913511964323 +64217,321.08499999974424,-0.058178577081642216 +64218,321.08999999974424,-0.05817801915119102 +64219,321.09499999974423,-0.0581774613282703 +64220,321.0999999997442,-0.05817690361286066 +64221,321.1049999997442,-0.05817634600494273 +64222,321.1099999997442,-0.05817578850449715 +64223,321.1149999997442,-0.058175231111504556 +64224,321.1199999997442,-0.05817467382594559 +64225,321.1249999997442,-0.05817411664780089 +64226,321.1299999997442,-0.058173559577051094 +64227,321.1349999997442,-0.05817300261367686 +64228,321.1399999997442,-0.05817244575765882 +64229,321.1449999997442,-0.05817188900897764 +64230,321.1499999997442,-0.05817133236761397 +64231,321.1549999997442,-0.05817077583354846 +64232,321.1599999997442,-0.05817021940676177 +64233,321.16499999974417,-0.05816966308723457 +64234,321.16999999974416,-0.0581691068749475 +64235,321.17499999974416,-0.05816855076988125 +64236,321.17999999974415,-0.05816799477201647 +64237,321.18499999974415,-0.05816743888133384 +64238,321.18999999974415,-0.05816688309781404 +64239,321.19499999974414,-0.05816632742143773 +64240,321.19999999974414,-0.0581657718521856 +64241,321.20499999974413,-0.05816521639003834 +64242,321.2099999997441,-0.05816466103497662 +64243,321.2149999997441,-0.05816410578698113 +64244,321.2199999997441,-0.05816355064603255 +64245,321.2249999997441,-0.05816299561211157 +64246,321.2299999997441,-0.0581624406851989 +64247,321.2349999997441,-0.05816188586527522 +64248,321.2399999997441,-0.058161331152321256 +64249,321.2449999997441,-0.058160776546317676 +64250,321.2499999997441,-0.0581602220472452 +64251,321.2549999997441,-0.05815966765508453 +64252,321.2599999997441,-0.058159113369816384 +64253,321.2649999997441,-0.05815855919142146 +64254,321.2699999997441,-0.058158005119880486 +64255,321.27499999974407,-0.05815745115517416 +64256,321.27999999974406,-0.05815689729728321 +64257,321.28499999974406,-0.05815634354618837 +64258,321.28999999974405,-0.05815578990187035 +64259,321.29499999974405,-0.05815523636430987 +64260,321.29999999974405,-0.05815468293348768 +64261,321.30499999974404,-0.0581541296093845 +64262,321.30999999974404,-0.058153576391981064 +64263,321.31499999974403,-0.0581530232812581 +64264,321.319999999744,-0.05815247027719636 +64265,321.324999999744,-0.058151917379776576 +64266,321.329999999744,-0.05815136458897951 +64267,321.334999999744,-0.058150811904785896 +64268,321.339999999744,-0.05815025932717648 +64269,321.344999999744,-0.05814970685613203 +64270,321.349999999744,-0.058149154491633284 +64271,321.354999999744,-0.058148602233660994 +64272,321.359999999744,-0.05814805008219594 +64273,321.364999999744,-0.058147498037218866 +64274,321.369999999744,-0.058146946098710545 +64275,321.374999999744,-0.05814639426665174 +64276,321.379999999744,-0.05814584254102323 +64277,321.38499999974397,-0.058145290921805766 +64278,321.38999999974396,-0.05814473940898014 +64279,321.39499999974396,-0.05814418800252713 +64280,321.39999999974395,-0.05814363670242752 +64281,321.40499999974395,-0.05814308550866207 +64282,321.40999999974395,-0.05814253442121158 +64283,321.41499999974394,-0.058141983440056846 +64284,321.41999999974394,-0.05814143256517865 +64285,321.42499999974393,-0.058140881796557776 +64286,321.4299999997439,-0.05814033113417503 +64287,321.4349999997439,-0.058139780578011196 +64288,321.4399999997439,-0.05813923012804709 +64289,321.4449999997439,-0.0581386797842635 +64290,321.4499999997439,-0.05813812954664124 +64291,321.4549999997439,-0.058137579415161116 +64292,321.4599999997439,-0.05813702938980393 +64293,321.4649999997439,-0.05813647947055051 +64294,321.4699999997439,-0.058135929657381666 +64295,321.4749999997439,-0.05813537995027821 +64296,321.4799999997439,-0.05813483034922096 +64297,321.4849999997439,-0.05813428085419075 +64298,321.4899999997439,-0.0581337314651684 +64299,321.49499999974387,-0.058133182182134736 +64300,321.49999999974386,-0.058132633005070586 +64301,321.50499999974386,-0.058132083933956795 +64302,321.50999999974385,-0.05813153496877419 +64303,321.51499999974385,-0.05813098610950361 +64304,321.51999999974385,-0.0581304373561259 +64305,321.52499999974384,-0.05812988870862188 +64306,321.52999999974384,-0.05812934016697243 +64307,321.53499999974383,-0.058128791731158376 +64308,321.5399999997438,-0.05812824340116057 +64309,321.5449999997438,-0.05812769517695988 +64310,321.5499999997438,-0.05812714705853715 +64311,321.5549999997438,-0.05812659904587324 +64312,321.5599999997438,-0.058126051138948996 +64313,321.5649999997438,-0.0581255033377453 +64314,321.5699999997438,-0.05812495564224302 +64315,321.5749999997438,-0.05812440805242302 +64316,321.5799999997438,-0.05812386056826617 +64317,321.5849999997438,-0.05812331318975335 +64318,321.5899999997438,-0.05812276591686542 +64319,321.5949999997438,-0.05812221874958327 +64320,321.5999999997438,-0.05812167168788778 +64321,321.60499999974377,-0.058121124731759836 +64322,321.60999999974376,-0.05812057788118031 +64323,321.61499999974376,-0.05812003113613011 +64324,321.61999999974375,-0.05811948449659012 +64325,321.62499999974375,-0.05811893796254124 +64326,321.62999999974375,-0.05811839153396436 +64327,321.63499999974374,-0.058117845210840374 +64328,321.63999999974374,-0.058117298993150185 +64329,321.64499999974373,-0.0581167528808747 +64330,321.6499999997437,-0.058116206873994825 +64331,321.6549999997437,-0.05811566097249147 +64332,321.6599999997437,-0.05811511517634556 +64333,321.6649999997437,-0.05811456948553798 +64334,321.6699999997437,-0.058114023900049674 +64335,321.6749999997437,-0.05811347841986154 +64336,321.6799999997437,-0.05811293304495452 +64337,321.6849999997437,-0.05811238777530951 +64338,321.6899999997437,-0.058111842610907474 +64339,321.6949999997437,-0.05811129755172932 +64340,321.6999999997437,-0.05811075259775598 +64341,321.7049999997437,-0.05811020774896839 +64342,321.7099999997437,-0.0581096630053475 +64343,321.71499999974367,-0.05810911836687423 +64344,321.71999999974366,-0.058108573833529534 +64345,321.72499999974366,-0.058108029405294345 +64346,321.72999999974365,-0.05810748508214962 +64347,321.73499999974365,-0.058106940864076306 +64348,321.73999999974365,-0.058106396751055375 +64349,321.74499999974364,-0.058105852743067746 +64350,321.74999999974364,-0.0581053088400944 +64351,321.75499999974363,-0.058104765042116285 +64352,321.7599999997436,-0.05810422134911438 +64353,321.7649999997436,-0.05810367776106964 +64354,321.7699999997436,-0.05810313427796302 +64355,321.7749999997436,-0.05810259089977552 +64356,321.7799999997436,-0.05810204762648809 +64357,321.7849999997436,-0.05810150445808171 +64358,321.7899999997436,-0.058100961394537354 +64359,321.7949999997436,-0.05810041843583601 +64360,321.7999999997436,-0.05809987558195866 +64361,321.8049999997436,-0.05809933283288629 +64362,321.8099999997436,-0.0580987901885999 +64363,321.8149999997436,-0.05809824764908045 +64364,321.8199999997436,-0.058097705214308945 +64365,321.82499999974357,-0.0580971628842664 +64366,321.82999999974356,-0.05809662065893379 +64367,321.83499999974356,-0.05809607853829212 +64368,321.83999999974355,-0.058095536522322404 +64369,321.84499999974355,-0.058094994611005646 +64370,321.84999999974355,-0.05809445280432284 +64371,321.85499999974354,-0.05809391110225502 +64372,321.85999999974354,-0.058093369504783186 +64373,321.86499999974353,-0.058092828011888344 +64374,321.8699999997435,-0.05809228662355153 +64375,321.8749999997435,-0.05809174533975376 +64376,321.8799999997435,-0.058091204160476057 +64377,321.8849999997435,-0.05809066308569945 +64378,321.8899999997435,-0.05809012211540495 +64379,321.8949999997435,-0.05808958124957361 +64380,321.8999999997435,-0.05808904048818646 +64381,321.9049999997435,-0.05808849983122453 +64382,321.9099999997435,-0.05808795927866886 +64383,321.9149999997435,-0.0580874188305005 +64384,321.9199999997435,-0.05808687848670049 +64385,321.9249999997435,-0.058086338247249875 +64386,321.9299999997435,-0.058085798112129695 +64387,321.93499999974347,-0.05808525808132101 +64388,321.93999999974346,-0.05808471815480489 +64389,321.94499999974346,-0.058084178332562374 +64390,321.94999999974345,-0.05808363861457452 +64391,321.95499999974345,-0.058083099000822404 +64392,321.95999999974345,-0.05808255949128707 +64393,321.96499999974344,-0.05808202008594961 +64394,321.96999999974344,-0.05808148078479107 +64395,321.97499999974343,-0.05808094158779254 +64396,321.9799999997434,-0.05808040249493509 +64397,321.9849999997434,-0.058079863506199786 +64398,321.9899999997434,-0.05807932462156772 +64399,321.9949999997434,-0.05807878584101998 +64400,321.9999999997434,-0.05807824716453763 +64401,322.0049999997434,-0.058077708592101776 +64402,322.0099999997434,-0.05807717012369349 +64403,322.0149999997434,-0.05807663175929389 +64404,322.0199999997434,-0.05807609349888405 +64405,322.0249999997434,-0.05807555534244509 +64406,322.0299999997434,-0.058075017289958085 +64407,322.0349999997434,-0.05807447934140416 +64408,322.0399999997434,-0.05807394149676439 +64409,322.04499999974337,-0.058073403756019916 +64410,322.04999999974336,-0.05807286611915183 +64411,322.05499999974336,-0.05807232858614125 +64412,322.05999999974335,-0.058071791156969296 +64413,322.06499999974335,-0.058071253831617084 +64414,322.06999999974335,-0.05807071661006573 +64415,322.07499999974334,-0.05807017949229636 +64416,322.07999999974334,-0.05806964247829011 +64417,322.08499999974333,-0.05806910556802808 +64418,322.0899999997433,-0.05806856876149142 +64419,322.0949999997433,-0.058068032058661276 +64420,322.0999999997433,-0.05806749545951877 +64421,322.1049999997433,-0.058066958964045026 +64422,322.1099999997433,-0.058066422572221214 +64423,322.1149999997433,-0.058065886284028465 +64424,322.1199999997433,-0.058065350099447924 +64425,322.1249999997433,-0.05806481401846074 +64426,322.1299999997433,-0.05806427804104807 +64427,322.1349999997433,-0.05806374216719107 +64428,322.1399999997433,-0.05806320639687088 +64429,322.1449999997433,-0.058062670730068676 +64430,322.1499999997433,-0.0580621351667656 +64431,322.15499999974327,-0.05806159970694284 +64432,322.15999999974326,-0.058061064350581545 +64433,322.16499999974326,-0.0580605290976629 +64434,322.16999999974325,-0.058059993948168055 +64435,322.17499999974325,-0.058059458902078205 +64436,322.17999999974325,-0.05805892395937452 +64437,322.18499999974324,-0.05805838912003819 +64438,322.18999999974324,-0.058057854384050374 +64439,322.19499999974323,-0.05805731975139227 +64440,322.1999999997432,-0.05805678522204508 +64441,322.2049999997432,-0.05805625079598997 +64442,322.2099999997432,-0.05805571647320814 +64443,322.2149999997432,-0.05805518225368078 +64444,322.2199999997432,-0.05805464813738911 +64445,322.2249999997432,-0.05805411412431431 +64446,322.2299999997432,-0.058053580214437586 +64447,322.2349999997432,-0.058053046407740144 +64448,322.2399999997432,-0.05805251270420318 +64449,322.2449999997432,-0.058051979103807924 +64450,322.2499999997432,-0.05805144560653558 +64451,322.2549999997432,-0.05805091221236736 +64452,322.2599999997432,-0.05805037892128451 +64453,322.26499999974317,-0.05804984573326821 +64454,322.26999999974316,-0.058049312648299704 +64455,322.27499999974316,-0.05804877966636022 +64456,322.27999999974315,-0.05804824678743097 +64457,322.28499999974315,-0.0580477140114932 +64458,322.28999999974315,-0.05804718133852813 +64459,322.29499999974314,-0.05804664876851702 +64460,322.29999999974314,-0.05804611630144109 +64461,322.30499999974313,-0.05804558393728158 +64462,322.3099999997431,-0.05804505167601974 +64463,322.3149999997431,-0.05804451951763682 +64464,322.3199999997431,-0.05804398746211405 +64465,322.3249999997431,-0.058043455509432705 +64466,322.3299999997431,-0.05804292365957403 +64467,322.3349999997431,-0.05804239191251928 +64468,322.3399999997431,-0.05804186026824971 +64469,322.3449999997431,-0.05804132872674658 +64470,322.3499999997431,-0.05804079728799117 +64471,322.3549999997431,-0.05804026595196473 +64472,322.3599999997431,-0.05803973471864853 +64473,322.3649999997431,-0.058039203588023856 +64474,322.3699999997431,-0.058038672560071974 +64475,322.37499999974307,-0.058038141634774165 +64476,322.37999999974306,-0.058037610812111694 +64477,322.38499999974306,-0.05803708009206587 +64478,322.38999999974305,-0.058036549474617956 +64479,322.39499999974305,-0.05803601895974924 +64480,322.39999999974305,-0.05803548854744102 +64481,322.40499999974304,-0.058034958237674586 +64482,322.40999999974304,-0.05803442803043123 +64483,322.41499999974303,-0.05803389792569226 +64484,322.419999999743,-0.05803336792343896 +64485,322.424999999743,-0.058032838023652646 +64486,322.429999999743,-0.05803230822631461 +64487,322.434999999743,-0.058031778531406175 +64488,322.439999999743,-0.058031248938908646 +64489,322.444999999743,-0.05803071944880334 +64490,322.449999999743,-0.05803019006107157 +64491,322.454999999743,-0.05802966077569464 +64492,322.459999999743,-0.05802913159265388 +64493,322.464999999743,-0.058028602511930615 +64494,322.469999999743,-0.058028073533506176 +64495,322.474999999743,-0.05802754465736189 +64496,322.479999999743,-0.05802701588347907 +64497,322.48499999974297,-0.05802648721183907 +64498,322.48999999974296,-0.05802595864242322 +64499,322.49499999974296,-0.05802543017521286 +64500,322.49999999974295,-0.058024901810189336 +64501,322.50499999974295,-0.05802437354733398 +64502,322.50999999974294,-0.05802384538662814 +64503,322.51499999974294,-0.058023317328053166 +64504,322.51999999974294,-0.05802278937159042 +64505,322.52499999974293,-0.05802226151722124 +64506,322.5299999997429,-0.058021733764926996 +64507,322.5349999997429,-0.058021206114689035 +64508,322.5399999997429,-0.05802067856648873 +64509,322.5449999997429,-0.05802015112030745 +64510,322.5499999997429,-0.05801962377612654 +64511,322.5549999997429,-0.05801909653392738 +64512,322.5599999997429,-0.05801856939369135 +64513,322.5649999997429,-0.058018042355399826 +64514,322.5699999997429,-0.05801751541903418 +64515,322.5749999997429,-0.05801698858457579 +64516,322.5799999997429,-0.058016461852006034 +64517,322.5849999997429,-0.0580159352213063 +64518,322.5899999997429,-0.05801540869245797 +64519,322.59499999974287,-0.058014882265442456 +64520,322.59999999974286,-0.05801435594024112 +64521,322.60499999974286,-0.05801382971683538 +64522,322.60999999974285,-0.05801330359520662 +64523,322.61499999974285,-0.05801277757533626 +64524,322.61999999974284,-0.05801225165720568 +64525,322.62499999974284,-0.0580117258407963 +64526,322.62999999974284,-0.05801120012608952 +64527,322.63499999974283,-0.05801067451306676 +64528,322.6399999997428,-0.05801014900170942 +64529,322.6449999997428,-0.05800962359199893 +64530,322.6499999997428,-0.0580090982839167 +64531,322.6549999997428,-0.058008573077444156 +64532,322.6599999997428,-0.05800804797256271 +64533,322.6649999997428,-0.0580075229692538 +64534,322.6699999997428,-0.058006998067498844 +64535,322.6749999997428,-0.05800647326727928 +64536,322.6799999997428,-0.05800594856857654 +64537,322.6849999997428,-0.058005423971372067 +64538,322.6899999997428,-0.05800489947564729 +64539,322.6949999997428,-0.058004375081383674 +64540,322.6999999997428,-0.058003850788562634 +64541,322.70499999974277,-0.05800332659716562 +64542,322.70999999974276,-0.058002802507174094 +64543,322.71499999974276,-0.05800227851856951 +64544,322.71999999974275,-0.058001754631333315 +64545,322.72499999974275,-0.058001230845446956 +64546,322.72999999974274,-0.05800070716089191 +64547,322.73499999974274,-0.058000183577649626 +64548,322.73999999974274,-0.05799966009570157 +64549,322.74499999974273,-0.05799913671502921 +64550,322.7499999997427,-0.05799861343561402 +64551,322.7549999997427,-0.05799809025743748 +64552,322.7599999997427,-0.05799756718048106 +64553,322.7649999997427,-0.05799704420472623 +64554,322.7699999997427,-0.05799652133015447 +64555,322.7749999997427,-0.057995998556747266 +64556,322.7799999997427,-0.057995475884486114 +64557,322.7849999997427,-0.057994953313352485 +64558,322.7899999997427,-0.05799443084332788 +64559,322.7949999997427,-0.05799390847439378 +64560,322.7999999997427,-0.057993386206531695 +64561,322.8049999997427,-0.05799286403972312 +64562,322.8099999997427,-0.05799234197394955 +64563,322.81499999974267,-0.05799182000919249 +64564,322.81999999974266,-0.05799129814543345 +64565,322.82499999974266,-0.05799077638265394 +64566,322.82999999974265,-0.05799025472083545 +64567,322.83499999974265,-0.057989733159959526 +64568,322.83999999974264,-0.057989211700007676 +64569,322.84499999974264,-0.0579886903409614 +64570,322.84999999974264,-0.05798816908280223 +64571,322.85499999974263,-0.0579876479255117 +64572,322.8599999997426,-0.05798712686907132 +64573,322.8649999997426,-0.05798660591346263 +64574,322.8699999997426,-0.05798608505866715 +64575,322.8749999997426,-0.05798556430466643 +64576,322.8799999997426,-0.057985043651442 +64577,322.8849999997426,-0.05798452309897539 +64578,322.8899999997426,-0.057984002647248165 +64579,322.8949999997426,-0.057983482296241846 +64580,322.8999999997426,-0.057982962045937995 +64581,322.9049999997426,-0.057982441896318154 +64582,322.9099999997426,-0.05798192184736388 +64583,322.9149999997426,-0.05798140189905672 +64584,322.9199999997426,-0.057980882051378246 +64585,322.92499999974257,-0.05798036230431001 +64586,322.92999999974256,-0.05797984265783356 +64587,322.93499999974256,-0.057979323111930485 +64588,322.93999999974255,-0.05797880366658234 +64589,322.94499999974255,-0.057978284321770705 +64590,322.94999999974254,-0.05797776507747714 +64591,322.95499999974254,-0.05797724593368324 +64592,322.95999999974254,-0.05797672689037056 +64593,322.96499999974253,-0.057976207947520696 +64594,322.9699999997425,-0.05797568910511521 +64595,322.9749999997425,-0.057975170363135715 +64596,322.9799999997425,-0.05797465172156379 +64597,322.9849999997425,-0.05797413318038102 +64598,322.9899999997425,-0.057973614739569 +64599,322.9949999997425,-0.05797309639910934 +64600,322.9999999997425,-0.05797257815898362 +64601,323.0049999997425,-0.05797206001917345 +64602,323.0099999997425,-0.057971541979660444 +64603,323.0149999997425,-0.057971024040426186 +64604,323.0199999997425,-0.05797050620145231 +64605,323.0249999997425,-0.05796998846272041 +64606,323.0299999997425,-0.057969470824212097 +64607,323.03499999974247,-0.057968953285908995 +64608,323.03999999974246,-0.05796843584779274 +64609,323.04499999974246,-0.05796791850984492 +64610,323.04999999974245,-0.057967401272047185 +64611,323.05499999974245,-0.05796688413438116 +64612,323.05999999974244,-0.05796636709682847 +64613,323.06499999974244,-0.057965850159370745 +64614,323.06999999974244,-0.057965333321989616 +64615,323.07499999974243,-0.057964816584666734 +64616,323.0799999997424,-0.05796429994738374 +64617,323.0849999997424,-0.05796378341012226 +64618,323.0899999997424,-0.05796326697286395 +64619,323.0949999997424,-0.057962750635590456 +64620,323.0999999997424,-0.05796223439828343 +64621,323.1049999997424,-0.057961718260924514 +64622,323.1099999997424,-0.05796120222349538 +64623,323.1149999997424,-0.057960686285977676 +64624,323.1199999997424,-0.05796017044835307 +64625,323.1249999997424,-0.05795965471060322 +64626,323.1299999997424,-0.05795913907270979 +64627,323.1349999997424,-0.05795862353465445 +64628,323.1399999997424,-0.05795810809641888 +64629,323.14499999974237,-0.05795759275798474 +64630,323.14999999974236,-0.057957077519333725 +64631,323.15499999974236,-0.057956562380447496 +64632,323.15999999974235,-0.057956047341307736 +64633,323.16499999974235,-0.05795553240189614 +64634,323.16999999974234,-0.057955017562194386 +64635,323.17499999974234,-0.057954502822184166 +64636,323.17999999974234,-0.05795398818184717 +64637,323.18499999974233,-0.05795347364116509 +64638,323.1899999997423,-0.05795295920011962 +64639,323.1949999997423,-0.05795244485869248 +64640,323.1999999997423,-0.05795193061686534 +64641,323.2049999997423,-0.05795141647461993 +64642,323.2099999997423,-0.05795090243193796 +64643,323.2149999997423,-0.05795038848880112 +64644,323.2199999997423,-0.05794987464519115 +64645,323.2249999997423,-0.057949360901089736 +64646,323.2299999997423,-0.0579488472564786 +64647,323.2349999997423,-0.05794833371133947 +64648,323.2399999997423,-0.05794782026565407 +64649,323.2449999997423,-0.057947306919404126 +64650,323.2499999997423,-0.05794679367257138 +64651,323.25499999974227,-0.057946280525137527 +64652,323.25999999974226,-0.05794576747708432 +64653,323.26499999974226,-0.05794525452839349 +64654,323.26999999974225,-0.057944741679046785 +64655,323.27499999974225,-0.057944228929025954 +64656,323.27999999974224,-0.05794371627831272 +64657,323.28499999974224,-0.05794320372688884 +64658,323.28999999974224,-0.05794269127473605 +64659,323.29499999974223,-0.05794217892183612 +64660,323.2999999997422,-0.057941666668170785 +64661,323.3049999997422,-0.05794115451372182 +64662,323.3099999997422,-0.05794064245847096 +64663,323.3149999997422,-0.057940130502399996 +64664,323.3199999997422,-0.057939618645490666 +64665,323.3249999997422,-0.057939106887724766 +64666,323.3299999997422,-0.05793859522908403 +64667,323.3349999997422,-0.05793808366955026 +64668,323.3399999997422,-0.0579375722091052 +64669,323.3449999997422,-0.05793706084773065 +64670,323.3499999997422,-0.057936549585408385 +64671,323.3549999997422,-0.05793603842212021 +64672,323.3599999997422,-0.05793552735784788 +64673,323.36499999974217,-0.057935016392573174 +64674,323.36999999974216,-0.05793450552627791 +64675,323.37499999974216,-0.05793399475894387 +64676,323.37999999974215,-0.057933484090552836 +64677,323.38499999974215,-0.05793297352108664 +64678,323.38999999974214,-0.05793246305052705 +64679,323.39499999974214,-0.05793195267885588 +64680,323.39999999974214,-0.057931442406054925 +64681,323.40499999974213,-0.05793093223210602 +64682,323.4099999997421,-0.05793042215699094 +64683,323.4149999997421,-0.05792991218069153 +64684,323.4199999997421,-0.05792940230318959 +64685,323.4249999997421,-0.057928892524466945 +64686,323.4299999997421,-0.057928382844505424 +64687,323.4349999997421,-0.05792787326328683 +64688,323.4399999997421,-0.057927363780793 +64689,323.4449999997421,-0.05792685439700577 +64690,323.4499999997421,-0.05792634511190695 +64691,323.4549999997421,-0.05792583592547841 +64692,323.4599999997421,-0.05792532683770196 +64693,323.4649999997421,-0.05792481784855944 +64694,323.4699999997421,-0.057924308958032696 +64695,323.47499999974207,-0.05792380016610358 +64696,323.47999999974206,-0.05792329147275392 +64697,323.48499999974206,-0.05792278287796559 +64698,323.48999999974205,-0.05792227438172043 +64699,323.49499999974205,-0.05792176598400029 +64700,323.49999999974204,-0.057921257684787036 +64701,323.50499999974204,-0.05792074948406253 +64702,323.50999999974204,-0.057920241381808624 +64703,323.51499999974203,-0.05791973337800718 +64704,323.519999999742,-0.05791922547264008 +64705,323.524999999742,-0.057918717665689186 +64706,323.529999999742,-0.05791820995713638 +64707,323.534999999742,-0.057917702346963536 +64708,323.539999999742,-0.05791719483515253 +64709,323.544999999742,-0.05791668742168522 +64710,323.549999999742,-0.05791618010654352 +64711,323.554999999742,-0.057915672889709315 +64712,323.559999999742,-0.057915165771164484 +64713,323.564999999742,-0.057914658750890906 +64714,323.569999999742,-0.057914151828870504 +64715,323.574999999742,-0.05791364500508515 +64716,323.579999999742,-0.057913138279516746 +64717,323.58499999974197,-0.057912631652147196 +64718,323.58999999974196,-0.057912125122958416 +64719,323.59499999974196,-0.05791161869193231 +64720,323.59999999974195,-0.05791111235905076 +64721,323.60499999974195,-0.05791060612429571 +64722,323.60999999974194,-0.057910099987649066 +64723,323.61499999974194,-0.05790959394909274 +64724,323.61999999974194,-0.05790908800860865 +64725,323.62499999974193,-0.05790858216617873 +64726,323.6299999997419,-0.0579080764217849 +64727,323.6349999997419,-0.05790757077540908 +64728,323.6399999997419,-0.05790706522703322 +64729,323.6449999997419,-0.057906559776639215 +64730,323.6499999997419,-0.057906054424209034 +64731,323.6549999997419,-0.057905549169724596 +64732,323.6599999997419,-0.05790504401316785 +64733,323.6649999997419,-0.057904538954520746 +64734,323.6699999997419,-0.05790403399376521 +64735,323.6749999997419,-0.057903529130883216 +64736,323.6799999997419,-0.057903024365856696 +64737,323.6849999997419,-0.0579025196986676 +64738,323.6899999997419,-0.05790201512929789 +64739,323.69499999974187,-0.057901510657729534 +64740,323.69999999974186,-0.057901006283944484 +64741,323.70499999974186,-0.0579005020079247 +64742,323.70999999974185,-0.05789999782965217 +64743,323.71499999974185,-0.05789949374910883 +64744,323.71999999974184,-0.05789898976627667 +64745,323.72499999974184,-0.057898485881137676 +64746,323.72999999974184,-0.057897982093673805 +64747,323.73499999974183,-0.05789747840386704 +64748,323.7399999997418,-0.05789697481169938 +64749,323.7449999997418,-0.05789647131715279 +64750,323.7499999997418,-0.05789596792020926 +64751,323.7549999997418,-0.057895464620850774 +64752,323.7599999997418,-0.057894961419059345 +64753,323.7649999997418,-0.057894458314816946 +64754,323.7699999997418,-0.057893955308105594 +64755,323.7749999997418,-0.05789345239890727 +64756,323.7799999997418,-0.057892949587204 +64757,323.7849999997418,-0.057892446872977774 +64758,323.7899999997418,-0.057891944256210595 +64759,323.7949999997418,-0.05789144173688447 +64760,323.7999999997418,-0.05789093931498144 +64761,323.80499999974177,-0.0578904369904835 +64762,323.80999999974176,-0.05788993476337267 +64763,323.81499999974176,-0.057889432633630965 +64764,323.81999999974175,-0.05788893060124042 +64765,323.82499999974175,-0.05788842866618306 +64766,323.82999999974174,-0.05788792682844091 +64767,323.83499999974174,-0.05788742508799599 +64768,323.83999999974174,-0.05788692344483036 +64769,323.84499999974173,-0.05788642189892603 +64770,323.8499999997417,-0.05788592045026506 +64771,323.8549999997417,-0.05788541909882949 +64772,323.8599999997417,-0.05788491784460135 +64773,323.8649999997417,-0.057884416687562695 +64774,323.8699999997417,-0.05788391562769557 +64775,323.8749999997417,-0.05788341466498203 +64776,323.8799999997417,-0.05788291379940412 +64777,323.8849999997417,-0.05788241303094392 +64778,323.8899999997417,-0.05788191235958348 +64779,323.8949999997417,-0.057881411785304863 +64780,323.8999999997417,-0.05788091130809012 +64781,323.9049999997417,-0.05788041092792133 +64782,323.9099999997417,-0.05787991064478057 +64783,323.91499999974167,-0.0578794104586499 +64784,323.91999999974166,-0.057878910369511406 +64785,323.92499999974166,-0.05787841037734715 +64786,323.92999999974165,-0.05787791048213923 +64787,323.93499999974165,-0.05787741068386973 +64788,323.93999999974164,-0.05787691098252073 +64789,323.94499999974164,-0.05787641137807431 +64790,323.94999999974164,-0.05787591187051257 +64791,323.95499999974163,-0.057875412459817595 +64792,323.9599999997416,-0.05787491314597149 +64793,323.9649999997416,-0.057874413928956356 +64794,323.9699999997416,-0.05787391480875429 +64795,323.9749999997416,-0.0578734157853474 +64796,323.9799999997416,-0.05787291685871779 +64797,323.9849999997416,-0.057872418028847565 +64798,323.9899999997416,-0.05787191929571884 +64799,323.9949999997416,-0.05787142065931373 +64800,323.9999999997416,-0.05787092211961435 +64801,324.0049999997416,-0.05787042367660283 +64802,324.0099999997416,-0.057869925330261265 +64803,324.0149999997416,-0.057869427080571814 +64804,324.0199999997416,-0.05786892892751658 +64805,324.02499999974157,-0.05786843087107771 +64806,324.02999999974156,-0.05786793291123732 +64807,324.03499999974156,-0.057867435047977554 +64808,324.03999999974155,-0.057866937281280555 +64809,324.04499999974155,-0.05786643961112846 +64810,324.04999999974154,-0.0578659420375034 +64811,324.05499999974154,-0.057865444560387544 +64812,324.05999999974154,-0.057864947179763024 +64813,324.06499999974153,-0.057864449895611986 +64814,324.0699999997415,-0.0578639527079166 +64815,324.0749999997415,-0.057863455616658996 +64816,324.0799999997415,-0.057862958621821364 +64817,324.0849999997415,-0.05786246172338585 +64818,324.0899999997415,-0.05786196492133462 +64819,324.0949999997415,-0.05786146821564984 +64820,324.0999999997415,-0.05786097160631367 +64821,324.1049999997415,-0.0578604750933083 +64822,324.1099999997415,-0.05785997867661588 +64823,324.1149999997415,-0.05785948235621861 +64824,324.1199999997415,-0.05785898613209865 +64825,324.1249999997415,-0.05785849000423819 +64826,324.1299999997415,-0.057857993972619426 +64827,324.13499999974147,-0.05785749803722453 +64828,324.13999999974146,-0.057857002198035704 +64829,324.14499999974146,-0.05785650645503513 +64830,324.14999999974145,-0.057856010808205016 +64831,324.15499999974145,-0.057855515257527544 +64832,324.15999999974144,-0.057855019802984915 +64833,324.16499999974144,-0.05785452444455933 +64834,324.16999999974144,-0.05785402918223302 +64835,324.17499999974143,-0.057853534015988174 +64836,324.1799999997414,-0.057853038945807005 +64837,324.1849999997414,-0.05785254397167171 +64838,324.1899999997414,-0.05785204909356452 +64839,324.1949999997414,-0.05785155431146765 +64840,324.1999999997414,-0.057851059625363334 +64841,324.2049999997414,-0.05785056503523379 +64842,324.2099999997414,-0.05785007054106123 +64843,324.2149999997414,-0.0578495761428279 +64844,324.2199999997414,-0.05784908184051602 +64845,324.2249999997414,-0.05784858763410783 +64846,324.2299999997414,-0.05784809352358556 +64847,324.2349999997414,-0.057847599508931466 +64848,324.23999999974137,-0.05784710559012777 +64849,324.24499999974137,-0.05784661176715673 +64850,324.24999999974136,-0.057846118040000574 +64851,324.25499999974136,-0.05784562440864157 +64852,324.25999999974135,-0.05784513087306198 +64853,324.26499999974135,-0.057844637433244035 +64854,324.26999999974134,-0.057844144089170005 +64855,324.27499999974134,-0.05784365084082214 +64856,324.27999999974134,-0.057843157688182704 +64857,324.28499999974133,-0.05784266463123398 +64858,324.2899999997413,-0.057842171669958205 +64859,324.2949999997413,-0.05784167880433767 +64860,324.2999999997413,-0.05784118603435467 +64861,324.3049999997413,-0.05784069335999144 +64862,324.3099999997413,-0.05784020078123027 +64863,324.3149999997413,-0.05783970829805344 +64864,324.3199999997413,-0.05783921591044325 +64865,324.3249999997413,-0.057838723618381965 +64866,324.3299999997413,-0.05783823142185189 +64867,324.3349999997413,-0.057837739320835316 +64868,324.3399999997413,-0.05783724731531451 +64869,324.3449999997413,-0.057836755405271806 +64870,324.34999999974127,-0.05783626359068948 +64871,324.35499999974127,-0.057835771871549854 +64872,324.35999999974126,-0.0578352802478352 +64873,324.36499999974126,-0.05783478871952785 +64874,324.36999999974125,-0.05783429728661011 +64875,324.37499999974125,-0.05783380594906429 +64876,324.37999999974124,-0.0578333147068727 +64877,324.38499999974124,-0.05783282356001766 +64878,324.38999999974124,-0.057832332508481486 +64879,324.39499999974123,-0.0578318415522465 +64880,324.3999999997412,-0.057831350691295046 +64881,324.4049999997412,-0.057830859925609435 +64882,324.4099999997412,-0.05783036925517199 +64883,324.4149999997412,-0.057829878679965065 +64884,324.4199999997412,-0.05782938819997098 +64885,324.4249999997412,-0.05782889781517207 +64886,324.4299999997412,-0.05782840752555069 +64887,324.4349999997412,-0.05782791733108917 +64888,324.4399999997412,-0.05782742723176986 +64889,324.4449999997412,-0.05782693722757511 +64890,324.4499999997412,-0.05782644731848728 +64891,324.4549999997412,-0.05782595750448871 +64892,324.45999999974117,-0.057825467785561774 +64893,324.46499999974117,-0.05782497816168881 +64894,324.46999999974116,-0.05782448863285218 +64895,324.47499999974116,-0.05782399919903426 +64896,324.47999999974115,-0.05782350986021743 +64897,324.48499999974115,-0.05782302061638403 +64898,324.48999999974114,-0.057822531467516446 +64899,324.49499999974114,-0.05782204241359705 +64900,324.49999999974114,-0.057821553454608224 +64901,324.50499999974113,-0.057821064590532344 +64902,324.5099999997411,-0.0578205758213518 +64903,324.5149999997411,-0.057820087147048956 +64904,324.5199999997411,-0.057819598567606205 +64905,324.5249999997411,-0.057819110083005956 +64906,324.5299999997411,-0.057818621693230585 +64907,324.5349999997411,-0.05781813339826249 +64908,324.5399999997411,-0.05781764519808408 +64909,324.5449999997411,-0.05781715709267775 +64910,324.5499999997411,-0.0578166690820259 +64911,324.5549999997411,-0.057816181166110925 +64912,324.5599999997411,-0.05781569334491525 +64913,324.5649999997411,-0.057815205618421274 +64914,324.56999999974107,-0.057814717986611426 +64915,324.57499999974107,-0.05781423044946812 +64916,324.57999999974106,-0.057813743006973756 +64917,324.58499999974106,-0.05781325565911077 +64918,324.58999999974105,-0.05781276840586159 +64919,324.59499999974105,-0.057812281247208636 +64920,324.59999999974104,-0.05781179418313433 +64921,324.60499999974104,-0.057811307213621106 +64922,324.60999999974104,-0.05781082033865141 +64923,324.61499999974103,-0.05781033355820767 +64924,324.619999999741,-0.05780984687227235 +64925,324.624999999741,-0.057809360280827844 +64926,324.629999999741,-0.05780887378385664 +64927,324.634999999741,-0.05780838738134116 +64928,324.639999999741,-0.05780790107326386 +64929,324.644999999741,-0.057807414859607206 +64930,324.649999999741,-0.05780692874035364 +64931,324.654999999741,-0.057806442715485615 +64932,324.659999999741,-0.05780595678498561 +64933,324.664999999741,-0.05780547094883608 +64934,324.669999999741,-0.057804985207019474 +64935,324.674999999741,-0.05780449955951828 +64936,324.67999999974097,-0.057804014006314956 +64937,324.68499999974097,-0.05780352854739199 +64938,324.68999999974096,-0.057803043182731856 +64939,324.69499999974096,-0.05780255791231703 +64940,324.69999999974095,-0.05780207273612997 +64941,324.70499999974095,-0.0578015876541532 +64942,324.70999999974094,-0.057801102666369175 +64943,324.71499999974094,-0.0578006177727604 +64944,324.71999999974093,-0.05780013297330936 +64945,324.72499999974093,-0.05779964826799855 +64946,324.7299999997409,-0.05779916365681048 +64947,324.7349999997409,-0.057798679139727624 +64948,324.7399999997409,-0.05779819471673251 +64949,324.7449999997409,-0.05779771038780763 +64950,324.7499999997409,-0.0577972261529355 +64951,324.7549999997409,-0.057796742012098605 +64952,324.7599999997409,-0.05779625796527948 +64953,324.7649999997409,-0.057795774012460645 +64954,324.7699999997409,-0.05779529015362459 +64955,324.7749999997409,-0.057794806388753873 +64956,324.7799999997409,-0.057794322717830984 +64957,324.7849999997409,-0.05779383914083846 +64958,324.78999999974087,-0.05779335565775884 +64959,324.79499999974087,-0.057792872268574644 +64960,324.79999999974086,-0.0577923889732684 +64961,324.80499999974086,-0.05779190577182266 +64962,324.80999999974085,-0.05779142266421995 +64963,324.81499999974085,-0.057790939650442824 +64964,324.81999999974084,-0.05779045673047381 +64965,324.82499999974084,-0.05778997390429545 +64966,324.82999999974083,-0.05778949117189032 +64967,324.83499999974083,-0.05778900853324095 +64968,324.8399999997408,-0.0577885259883299 +64969,324.8449999997408,-0.05778804353713971 +64970,324.8499999997408,-0.05778756117965298 +64971,324.8549999997408,-0.05778707891585223 +64972,324.8599999997408,-0.057786596745720065 +64973,324.8649999997408,-0.05778611466923901 +64974,324.8699999997408,-0.05778563268639167 +64975,324.8749999997408,-0.05778515079716058 +64976,324.8799999997408,-0.05778466900152836 +64977,324.8849999997408,-0.057784187299477555 +64978,324.8899999997408,-0.057783705690990755 +64979,324.8949999997408,-0.05778322417605056 +64980,324.89999999974077,-0.057782742754639516 +64981,324.90499999974077,-0.057782261426740235 +64982,324.90999999974076,-0.057781780192335305 +64983,324.91499999974076,-0.05778129905140733 +64984,324.91999999974075,-0.05778081800393889 +64985,324.92499999974075,-0.05778033704991259 +64986,324.92999999974074,-0.05777985618931104 +64987,324.93499999974074,-0.05777937542211683 +64988,324.93999999974073,-0.05777889474831257 +64989,324.94499999974073,-0.05777841416788087 +64990,324.9499999997407,-0.05777793368080434 +64991,324.9549999997407,-0.0577774532870656 +64992,324.9599999997407,-0.05777697298664725 +64993,324.9649999997407,-0.05777649277953194 +64994,324.9699999997407,-0.05777601266570225 +64995,324.9749999997407,-0.05777553264514084 +64996,324.9799999997407,-0.05777505271783034 +64997,324.9849999997407,-0.05777457288375335 +64998,324.9899999997407,-0.05777409314289253 +64999,324.9949999997407,-0.0577736134952305 +65000,324.9999999997407,-0.057773133940749885 +65001,325.0049999997407,-0.05777265447943334 +65002,325.00999999974067,-0.05777217511126352 +65003,325.01499999974067,-0.05777169583622306 +65004,325.01999999974066,-0.057771216654294605 +65005,325.02499999974066,-0.057770737565460806 +65006,325.02999999974065,-0.05777025856970431 +65007,325.03499999974065,-0.05776977966700778 +65008,325.03999999974064,-0.057769300857353885 +65009,325.04499999974064,-0.05776882214072526 +65010,325.04999999974063,-0.057768343517104595 +65011,325.05499999974063,-0.057767864986474536 +65012,325.0599999997406,-0.05776738654881777 +65013,325.0649999997406,-0.05776690820411696 +65014,325.0699999997406,-0.05776642995235477 +65015,325.0749999997406,-0.057765951793513896 +65016,325.0799999997406,-0.05776547372757699 +65017,325.0849999997406,-0.05776499575452677 +65018,325.0899999997406,-0.05776451787434589 +65019,325.0949999997406,-0.05776404008701705 +65020,325.0999999997406,-0.05776356239252294 +65021,325.1049999997406,-0.05776308479084625 +65022,325.1099999997406,-0.05776260728196968 +65023,325.1149999997406,-0.05776212986587592 +65024,325.11999999974057,-0.05776165254254766 +65025,325.12499999974057,-0.05776117531196764 +65026,325.12999999974056,-0.05776069817411852 +65027,325.13499999974056,-0.05776022112898303 +65028,325.13999999974055,-0.05775974417654389 +65029,325.14499999974055,-0.05775926731678379 +65030,325.14999999974054,-0.057758790549685475 +65031,325.15499999974054,-0.057758313875231636 +65032,325.15999999974053,-0.05775783729340501 +65033,325.16499999974053,-0.05775736080418829 +65034,325.1699999997405,-0.05775688440756425 +65035,325.1749999997405,-0.05775640810351558 +65036,325.1799999997405,-0.05775593189202505 +65037,325.1849999997405,-0.05775545577307536 +65038,325.1899999997405,-0.057754979746649254 +65039,325.1949999997405,-0.05775450381272948 +65040,325.1999999997405,-0.05775402797129877 +65041,325.2049999997405,-0.057753552222339875 +65042,325.2099999997405,-0.057753076565835545 +65043,325.2149999997405,-0.05775260100176851 +65044,325.2199999997405,-0.057752125530121545 +65045,325.2249999997405,-0.057751650150877396 +65046,325.22999999974047,-0.057751174864018824 +65047,325.23499999974047,-0.057750699669528574 +65048,325.23999999974046,-0.05775022456738942 +65049,325.24499999974046,-0.05774974955758414 +65050,325.24999999974045,-0.05774927464009548 +65051,325.25499999974045,-0.05774879981490622 +65052,325.25999999974044,-0.05774832508199914 +65053,325.26499999974044,-0.057747850441357 +65054,325.26999999974043,-0.057747375892962596 +65055,325.27499999974043,-0.0577469014367987 +65056,325.2799999997404,-0.05774642707284808 +65057,325.2849999997404,-0.05774595280109354 +65058,325.2899999997404,-0.05774547862151786 +65059,325.2949999997404,-0.05774500453410384 +65060,325.2999999997404,-0.057744530538834285 +65061,325.3049999997404,-0.057744056635691966 +65062,325.3099999997404,-0.057743582824659696 +65063,325.3149999997404,-0.05774310910572027 +65064,325.3199999997404,-0.057742635478856504 +65065,325.3249999997404,-0.05774216194405119 +65066,325.3299999997404,-0.05774168850128714 +65067,325.3349999997404,-0.05774121515054718 +65068,325.33999999974037,-0.057740741891814114 +65069,325.34499999974037,-0.05774026872507075 +65070,325.34999999974036,-0.05773979565029993 +65071,325.35499999974036,-0.05773932266748446 +65072,325.35999999974035,-0.05773884977660717 +65073,325.36499999974035,-0.057738376977650885 +65074,325.36999999974034,-0.05773790427059844 +65075,325.37499999974034,-0.05773743165543266 +65076,325.37999999974033,-0.05773695913213639 +65077,325.38499999974033,-0.057736486700692466 +65078,325.3899999997403,-0.05773601436108372 +65079,325.3949999997403,-0.05773554211329301 +65080,325.3999999997403,-0.05773506995730317 +65081,325.4049999997403,-0.057734597893097046 +65082,325.4099999997403,-0.057734125920657506 +65083,325.4149999997403,-0.05773365403996739 +65084,325.4199999997403,-0.057733182251009554 +65085,325.4249999997403,-0.057732710553766865 +65086,325.4299999997403,-0.05773223894822218 +65087,325.4349999997403,-0.057731767434358365 +65088,325.4399999997403,-0.05773129601215828 +65089,325.4449999997403,-0.0577308246816048 +65090,325.44999999974027,-0.05773035344268081 +65091,325.45499999974027,-0.05772988229536917 +65092,325.45999999974026,-0.05772941123965275 +65093,325.46499999974026,-0.05772894027551443 +65094,325.46999999974025,-0.05772846940293711 +65095,325.47499999974025,-0.05772799862190367 +65096,325.47999999974024,-0.05772752793239698 +65097,325.48499999974024,-0.05772705733439996 +65098,325.48999999974023,-0.05772658682789548 +65099,325.49499999974023,-0.057726116412866436 +65100,325.4999999997402,-0.057725646089295736 +65101,325.5049999997402,-0.05772517585716628 +65102,325.5099999997402,-0.05772470571646096 +65103,325.5149999997402,-0.05772423566716269 +65104,325.5199999997402,-0.05772376570925438 +65105,325.5249999997402,-0.057723295842718944 +65106,325.5299999997402,-0.05772282606753929 +65107,325.5349999997402,-0.057722356383698326 +65108,325.5399999997402,-0.05772188679117899 +65109,325.5449999997402,-0.05772141728996418 +65110,325.5499999997402,-0.057720947880036844 +65111,325.5549999997402,-0.05772047856137989 +65112,325.55999999974017,-0.057720009333976266 +65113,325.56499999974017,-0.05771954019780889 +65114,325.56999999974016,-0.05771907115286069 +65115,325.57499999974016,-0.05771860219911463 +65116,325.57999999974015,-0.05771813333655362 +65117,325.58499999974015,-0.05771766456516062 +65118,325.58999999974014,-0.05771719588491857 +65119,325.59499999974014,-0.0577167272958104 +65120,325.59999999974013,-0.057716258797819095 +65121,325.60499999974013,-0.057715790390927585 +65122,325.6099999997401,-0.05771532207511882 +65123,325.6149999997401,-0.05771485385037577 +65124,325.6199999997401,-0.05771438571668141 +65125,325.6249999997401,-0.05771391767401868 +65126,325.6299999997401,-0.057713449722370545 +65127,325.6349999997401,-0.05771298186171997 +65128,325.6399999997401,-0.057712514092049944 +65129,325.6449999997401,-0.05771204641334343 +65130,325.6499999997401,-0.05771157882558342 +65131,325.6549999997401,-0.05771111132875287 +65132,325.6599999997401,-0.057710643922834766 +65133,325.6649999997401,-0.0577101766078121 +65134,325.66999999974007,-0.05770970938366786 +65135,325.67499999974007,-0.05770924225038503 +65136,325.67999999974006,-0.0577087752079466 +65137,325.68499999974006,-0.05770830825633557 +65138,325.68999999974005,-0.05770784139553493 +65139,325.69499999974005,-0.05770737462552768 +65140,325.69999999974004,-0.05770690794629683 +65141,325.70499999974004,-0.05770644135782537 +65142,325.70999999974003,-0.05770597486009632 +65143,325.71499999974003,-0.05770550845309269 +65144,325.71999999974,-0.05770504213679749 +65145,325.72499999974,-0.05770457591119373 +65146,325.72999999974,-0.057704109776264445 +65147,325.73499999974,-0.057703643731992646 +65148,325.73999999974,-0.057703177778361335 +65149,325.74499999974,-0.05770271191535356 +65150,325.74999999974,-0.05770224614295235 +65151,325.75499999974,-0.05770178046114073 +65152,325.75999999974,-0.05770131486990174 +65153,325.76499999974,-0.057700849369218404 +65154,325.76999999974,-0.057700383959073766 +65155,325.77499999974,-0.057699918639450856 +65156,325.77999999973997,-0.05769945341033274 +65157,325.78499999973997,-0.057698988271702445 +65158,325.78999999973996,-0.05769852322354303 +65159,325.79499999973996,-0.057698058265837564 +65160,325.79999999973995,-0.05769759339856907 +65161,325.80499999973995,-0.05769712862172063 +65162,325.80999999973994,-0.05769666393527527 +65163,325.81499999973994,-0.05769619933921608 +65164,325.81999999973993,-0.05769573483352612 +65165,325.82499999973993,-0.057695270418188456 +65166,325.8299999997399,-0.05769480609318616 +65167,325.8349999997399,-0.0576943418585023 +65168,325.8399999997399,-0.05769387771411995 +65169,325.8449999997399,-0.05769341366002219 +65170,325.8499999997399,-0.05769294969619209 +65171,325.8549999997399,-0.05769248582261274 +65172,325.8599999997399,-0.05769202203926723 +65173,325.8649999997399,-0.05769155834613865 +65174,325.8699999997399,-0.05769109474321009 +65175,325.8749999997399,-0.05769063123046463 +65176,325.8799999997399,-0.05769016780788539 +65177,325.8849999997399,-0.05768970447545545 +65178,325.88999999973987,-0.057689241233157905 +65179,325.89499999973987,-0.05768877808097587 +65180,325.89999999973986,-0.057688315018892454 +65181,325.90499999973986,-0.05768785204689075 +65182,325.90999999973985,-0.0576873891649539 +65183,325.91499999973985,-0.057686926373064995 +65184,325.91999999973984,-0.05768646367120715 +65185,325.92499999973984,-0.057686001059363494 +65186,325.92999999973983,-0.057685538537517136 +65187,325.93499999973983,-0.057685076105651205 +65188,325.9399999997398,-0.057684613763748845 +65189,325.9449999997398,-0.05768415151179316 +65190,325.9499999997398,-0.05768368934976731 +65191,325.9549999997398,-0.057683227277654396 +65192,325.9599999997398,-0.05768276529543758 +65193,325.9649999997398,-0.057682303403099995 +65194,325.9699999997398,-0.0576818416006248 +65195,325.9749999997398,-0.057681379887995106 +65196,325.9799999997398,-0.05768091826519408 +65197,325.9849999997398,-0.05768045673220488 +65198,325.9899999997398,-0.05767999528901065 +65199,325.9949999997398,-0.05767953393559455 +65200,325.99999999973977,-0.05767907267193974 +65201,326.00499999973977,-0.05767861149802936 +65202,326.00999999973976,-0.05767815041384659 +65203,326.01499999973976,-0.0576776894193746 +65204,326.01999999973975,-0.057677228514596564 +65205,326.02499999973975,-0.05767676769949563 +65206,326.02999999973974,-0.05767630697405498 +65207,326.03499999973974,-0.057675846338257813 +65208,326.03999999973973,-0.05767538579208729 +65209,326.04499999973973,-0.05767492533552658 +65210,326.0499999997397,-0.05767446496855888 +65211,326.0549999997397,-0.05767400469116738 +65212,326.0599999997397,-0.05767354450333528 +65213,326.0649999997397,-0.057673084405045746 +65214,326.0699999997397,-0.05767262439628199 +65215,326.0749999997397,-0.057672164477027194 +65216,326.0799999997397,-0.05767170464726458 +65217,326.0849999997397,-0.05767124490697734 +65218,326.0899999997397,-0.05767078525614866 +65219,326.0949999997397,-0.05767032569476177 +65220,326.0999999997397,-0.05766986622279988 +65221,326.1049999997397,-0.0576694068402462 +65222,326.10999999973967,-0.057668947547083946 +65223,326.11499999973967,-0.05766848834329633 +65224,326.11999999973966,-0.05766802922886659 +65225,326.12499999973966,-0.05766757020377791 +65226,326.12999999973965,-0.057667111268013556 +65227,326.13499999973965,-0.05766665242155675 +65228,326.13999999973964,-0.05766619366439071 +65229,326.14499999973964,-0.05766573499649866 +65230,326.14999999973963,-0.05766527641786385 +65231,326.15499999973963,-0.05766481792846953 +65232,326.1599999997396,-0.05766435952829893 +65233,326.1649999997396,-0.05766390121733529 +65234,326.1699999997396,-0.057663442995561864 +65235,326.1749999997396,-0.05766298486296191 +65236,326.1799999997396,-0.05766252681951866 +65237,326.1849999997396,-0.057662068865215375 +65238,326.1899999997396,-0.05766161100003531 +65239,326.1949999997396,-0.05766115322396174 +65240,326.1999999997396,-0.0576606955369779 +65241,326.2049999997396,-0.05766023793906708 +65242,326.2099999997396,-0.05765978043021254 +65243,326.2149999997396,-0.05765932301039754 +65244,326.21999999973957,-0.05765886567960537 +65245,326.22499999973957,-0.05765840843781929 +65246,326.22999999973956,-0.05765795128502258 +65247,326.23499999973956,-0.05765749422119852 +65248,326.23999999973955,-0.0576570372463304 +65249,326.24499999973955,-0.057656580360401506 +65250,326.24999999973954,-0.057656123563395126 +65251,326.25499999973954,-0.057655666855294545 +65252,326.25999999973953,-0.057655210236083054 +65253,326.26499999973953,-0.05765475370574396 +65254,326.2699999997395,-0.05765429726426055 +65255,326.2749999997395,-0.05765384091161613 +65256,326.2799999997395,-0.057653384647794 +65257,326.2849999997395,-0.057652928472777476 +65258,326.2899999997395,-0.05765247238654986 +65259,326.2949999997395,-0.05765201638909447 +65260,326.2999999997395,-0.05765156048039461 +65261,326.3049999997395,-0.057651104660433605 +65262,326.3099999997395,-0.05765064892919476 +65263,326.3149999997395,-0.057650193286661405 +65264,326.3199999997395,-0.057649737732816876 +65265,326.3249999997395,-0.05764928226764449 +65266,326.32999999973947,-0.05764882689112758 +65267,326.33499999973947,-0.057648371603249475 +65268,326.33999999973946,-0.057647916403993506 +65269,326.34499999973946,-0.05764746129334303 +65270,326.34999999973945,-0.05764700627128136 +65271,326.35499999973945,-0.05764655133779185 +65272,326.35999999973944,-0.05764609649285785 +65273,326.36499999973944,-0.05764564173646271 +65274,326.36999999973943,-0.05764518706858978 +65275,326.37499999973943,-0.057644732489222396 +65276,326.3799999997394,-0.05764427799834392 +65277,326.3849999997394,-0.057643823595937733 +65278,326.3899999997394,-0.057643369281987177 +65279,326.3949999997394,-0.05764291505647562 +65280,326.3999999997394,-0.05764246091938641 +65281,326.4049999997394,-0.05764200687070294 +65282,326.4099999997394,-0.05764155291040858 +65283,326.4149999997394,-0.05764109903848669 +65284,326.4199999997394,-0.057640645254920644 +65285,326.4249999997394,-0.05764019155969383 +65286,326.4299999997394,-0.05763973795278965 +65287,326.4349999997394,-0.05763928443419145 +65288,326.43999999973937,-0.057638831003882646 +65289,326.44499999973937,-0.0576383776618466 +65290,326.44999999973936,-0.05763792440806674 +65291,326.45499999973936,-0.05763747124252643 +65292,326.45999999973935,-0.057637018165209074 +65293,326.46499999973935,-0.057636565176098074 +65294,326.46999999973934,-0.05763611227517684 +65295,326.47499999973934,-0.05763565946242876 +65296,326.47999999973933,-0.057635206737837265 +65297,326.48499999973933,-0.05763475410138575 +65298,326.4899999997393,-0.057634301553057626 +65299,326.4949999997393,-0.057633849092836316 +65300,326.4999999997393,-0.057633396720705235 +65301,326.5049999997393,-0.05763294443664781 +65302,326.5099999997393,-0.05763249224064744 +65303,326.5149999997393,-0.05763204013268758 +65304,326.5199999997393,-0.057631588112751646 +65305,326.5249999997393,-0.057631136180823064 +65306,326.5299999997393,-0.05763068433688527 +65307,326.5349999997393,-0.0576302325809217 +65308,326.5399999997393,-0.057629780912915804 +65309,326.5449999997393,-0.05762932933285102 +65310,326.54999999973927,-0.057628877840710774 +65311,326.55499999973927,-0.05762842643647852 +65312,326.55999999973926,-0.057627975120137724 +65313,326.56499999973926,-0.05762752389167181 +65314,326.56999999973925,-0.05762707275106426 +65315,326.57499999973925,-0.05762662169829852 +65316,326.57999999973924,-0.05762617073335805 +65317,326.58499999973924,-0.05762571985622631 +65318,326.58999999973923,-0.05762526906688676 +65319,326.59499999973923,-0.057624818365322884 +65320,326.5999999997392,-0.05762436775151812 +65321,326.6049999997392,-0.05762391722545597 +65322,326.6099999997392,-0.057623466787119895 +65323,326.6149999997392,-0.05762301643649339 +65324,326.6199999997392,-0.057622566173559917 +65325,326.6249999997392,-0.05762211599830296 +65326,326.6299999997392,-0.05762166591070601 +65327,326.6349999997392,-0.05762121591075255 +65328,326.6399999997392,-0.05762076599842608 +65329,326.6449999997392,-0.05762031617371008 +65330,326.6499999997392,-0.057619866436588056 +65331,326.6549999997392,-0.057619416787043506 +65332,326.65999999973917,-0.05761896722505992 +65333,326.66499999973917,-0.05761851775062081 +65334,326.66999999973916,-0.05761806836370968 +65335,326.67499999973916,-0.05761761906431005 +65336,326.67999999973915,-0.05761716985240541 +65337,326.68499999973915,-0.057616720727979284 +65338,326.68999999973914,-0.0576162716910152 +65339,326.69499999973914,-0.05761582274149666 +65340,326.69999999973913,-0.05761537387940719 +65341,326.70499999973913,-0.05761492510473032 +65342,326.7099999997391,-0.05761447641744958 +65343,326.7149999997391,-0.05761402781754849 +65344,326.7199999997391,-0.05761357930501058 +65345,326.7249999997391,-0.05761313087981938 +65346,326.7299999997391,-0.05761268254195845 +65347,326.7349999997391,-0.05761223429141131 +65348,326.7399999997391,-0.057611786128161514 +65349,326.7449999997391,-0.057611338052192596 +65350,326.7499999997391,-0.057610890063488115 +65351,326.7549999997391,-0.05761044216203162 +65352,326.7599999997391,-0.05760999434780665 +65353,326.7649999997391,-0.057609546620796766 +65354,326.76999999973907,-0.05760909898098554 +65355,326.77499999973907,-0.057608651428356514 +65356,326.77999999973906,-0.057608203962893255 +65357,326.78499999973906,-0.05760775658457933 +65358,326.78999999973905,-0.057607309293398315 +65359,326.79499999973905,-0.05760686208933378 +65360,326.79999999973904,-0.057606414972369284 +65361,326.80499999973904,-0.05760596794248842 +65362,326.80999999973903,-0.05760552099967475 +65363,326.81499999973903,-0.05760507414391188 +65364,326.819999999739,-0.05760462737518337 +65365,326.824999999739,-0.05760418069347281 +65366,326.829999999739,-0.05760373409876379 +65367,326.834999999739,-0.057603287591039914 +65368,326.839999999739,-0.05760284117028476 +65369,326.844999999739,-0.057602394836481934 +65370,326.849999999739,-0.05760194858961504 +65371,326.854999999739,-0.05760150242966766 +65372,326.859999999739,-0.05760105635662343 +65373,326.864999999739,-0.05760061037046593 +65374,326.869999999739,-0.057600164471178786 +65375,326.874999999739,-0.0575997186587456 +65376,326.87999999973897,-0.057599272933149995 +65377,326.88499999973897,-0.05759882729437557 +65378,326.88999999973896,-0.05759838174240596 +65379,326.89499999973896,-0.057597936277224794 +65380,326.89999999973895,-0.05759749089881568 +65381,326.90499999973895,-0.05759704560716226 +65382,326.90999999973894,-0.057596600402248156 +65383,326.91499999973894,-0.057596155284057 +65384,326.91999999973893,-0.05759571025257243 +65385,326.92499999973893,-0.057595265307778094 +65386,326.9299999997389,-0.05759482044965762 +65387,326.9349999997389,-0.057594375678194656 +65388,326.9399999997389,-0.05759393099337284 +65389,326.9449999997389,-0.05759348639517583 +65390,326.9499999997389,-0.05759304188358728 +65391,326.9549999997389,-0.057592597458590834 +65392,326.9599999997389,-0.05759215312017015 +65393,326.9649999997389,-0.0575917088683089 +65394,326.9699999997389,-0.05759126470299073 +65395,326.9749999997389,-0.05759082062419931 +65396,326.9799999997389,-0.05759037663191831 +65397,326.9849999997389,-0.05758993272613138 +65398,326.98999999973887,-0.057589488906822216 +65399,326.99499999973887,-0.05758904517397447 +65400,326.99999999973886,-0.057588601527571844 +65401,327.00499999973886,-0.057588157967597996 +65402,327.00999999973885,-0.05758771449403662 +65403,327.01499999973885,-0.057587271106871396 +65404,327.01999999973884,-0.057586827806086024 +65405,327.02499999973884,-0.05758638459166417 +65406,327.02999999973883,-0.05758594146358955 +65407,327.03499999973883,-0.05758549842184584 +65408,327.0399999997388,-0.05758505546641675 +65409,327.0449999997388,-0.05758461259728597 +65410,327.0499999997388,-0.05758416981443722 +65411,327.0549999997388,-0.05758372711785418 +65412,327.0599999997388,-0.057583284507520587 +65413,327.0649999997388,-0.057582841983420126 +65414,327.0699999997388,-0.05758239954553652 +65415,327.0749999997388,-0.057581957193853485 +65416,327.0799999997388,-0.057581514928354734 +65417,327.0849999997388,-0.057581072749024007 +65418,327.0899999997388,-0.05758063065584501 +65419,327.0949999997388,-0.05758018864880148 +65420,327.09999999973877,-0.057579746727877135 +65421,327.10499999973877,-0.05757930489305571 +65422,327.10999999973876,-0.05757886314432094 +65423,327.11499999973876,-0.05757842148165655 +65424,327.11999999973875,-0.05757797990504629 +65425,327.12499999973875,-0.05757753841447391 +65426,327.12999999973874,-0.057577097009923126 +65427,327.13499999973874,-0.05757665569137771 +65428,327.13999999973873,-0.0575762144588214 +65429,327.14499999973873,-0.057575773312237954 +65430,327.1499999997387,-0.05757533225161113 +65431,327.1549999997387,-0.057574891276924674 +65432,327.1599999997387,-0.05757445038816235 +65433,327.1649999997387,-0.05757400958530792 +65434,327.1699999997387,-0.05757356886834515 +65435,327.1749999997387,-0.057573128237257805 +65436,327.1799999997387,-0.05757268769202966 +65437,327.1849999997387,-0.05757224723264449 +65438,327.1899999997387,-0.057571806859086055 +65439,327.1949999997387,-0.05757136657133815 +65440,327.1999999997387,-0.05757092636938454 +65441,327.2049999997387,-0.05757048625320901 +65442,327.20999999973867,-0.05757004622279536 +65443,327.21499999973867,-0.05756960627812737 +65444,327.21999999973866,-0.05756916641918882 +65445,327.22499999973866,-0.057568726645963526 +65446,327.22999999973865,-0.05756828695843525 +65447,327.23499999973865,-0.05756784735658782 +65448,327.23999999973864,-0.057567407840405024 +65449,327.24499999973864,-0.05756696840987068 +65450,327.24999999973863,-0.05756652906496858 +65451,327.25499999973863,-0.05756608980568252 +65452,327.2599999997386,-0.05756565063199633 +65453,327.2649999997386,-0.05756521154389384 +65454,327.2699999997386,-0.05756477254135883 +65455,327.2749999997386,-0.05756433362437514 +65456,327.2799999997386,-0.05756389479292659 +65457,327.2849999997386,-0.05756345604699699 +65458,327.2899999997386,-0.05756301738657018 +65459,327.2949999997386,-0.05756257881162999 +65460,327.2999999997386,-0.05756214032216025 +65461,327.3049999997386,-0.057561701918144796 +65462,327.3099999997386,-0.05756126359956745 +65463,327.3149999997386,-0.05756082536641208 +65464,327.31999999973857,-0.0575603872186625 +65465,327.32499999973857,-0.05755994915630257 +65466,327.32999999973856,-0.05755951117931613 +65467,327.33499999973856,-0.05755907328768704 +65468,327.33999999973855,-0.05755863548139914 +65469,327.34499999973855,-0.05755819776043629 +65470,327.34999999973854,-0.05755776012478235 +65471,327.35499999973854,-0.05755732257442118 +65472,327.35999999973853,-0.05755688510933663 +65473,327.36499999973853,-0.057556447729512586 +65474,327.3699999997385,-0.0575560104349329 +65475,327.3749999997385,-0.057555573225581455 +65476,327.3799999997385,-0.05755513610144212 +65477,327.3849999997385,-0.05755469906249877 +65478,327.3899999997385,-0.057554262108735287 +65479,327.3949999997385,-0.05755382524013554 +65480,327.3999999997385,-0.057553388456683424 +65481,327.4049999997385,-0.05755295175836281 +65482,327.4099999997385,-0.0575525151451576 +65483,327.4149999997385,-0.05755207861705168 +65484,327.4199999997385,-0.057551642174028944 +65485,327.4249999997385,-0.05755120581607329 +65486,327.42999999973847,-0.05755076954316863 +65487,327.43499999973847,-0.05755033335529885 +65488,327.43999999973846,-0.05754989725244785 +65489,327.44499999973846,-0.05754946123459954 +65490,327.44999999973845,-0.057549025301737826 +65491,327.45499999973845,-0.05754858945384663 +65492,327.45999999973844,-0.05754815369090987 +65493,327.46499999973844,-0.05754771801291145 +65494,327.46999999973843,-0.05754728241983528 +65495,327.47499999973843,-0.05754684691166531 +65496,327.4799999997384,-0.05754641148838545 +65497,327.4849999997384,-0.057545976149979625 +65498,327.4899999997384,-0.05754554089643176 +65499,327.4949999997384,-0.057545105727725795 +65500,327.4999999997384,-0.05754467064384568 +65501,327.5049999997384,-0.05754423564477533 +65502,327.5099999997384,-0.05754380073049869 +65503,327.5149999997384,-0.057543365900999704 +65504,327.5199999997384,-0.057542931156262314 +65505,327.5249999997384,-0.057542496496270475 +65506,327.5299999997384,-0.05754206192100814 +65507,327.5349999997384,-0.057541627430459256 +65508,327.53999999973837,-0.05754119302460778 +65509,327.54499999973837,-0.05754075870343766 +65510,327.54999999973836,-0.05754032446693286 +65511,327.55499999973836,-0.057539890315077356 +65512,327.55999999973835,-0.0575394562478551 +65513,327.56499999973835,-0.05753902226525007 +65514,327.56999999973834,-0.057538588367246235 +65515,327.57499999973834,-0.05753815455382757 +65516,327.57999999973833,-0.05753772082497804 +65517,327.58499999973833,-0.05753728718068163 +65518,327.5899999997383,-0.05753685362092233 +65519,327.5949999997383,-0.05753642014568411 +65520,327.5999999997383,-0.05753598675495095 +65521,327.6049999997383,-0.057535553448706866 +65522,327.6099999997383,-0.05753512022693583 +65523,327.6149999997383,-0.05753468708962184 +65524,327.6199999997383,-0.05753425403674889 +65525,327.6249999997383,-0.057533821068300996 +65526,327.6299999997383,-0.05753338818426214 +65527,327.6349999997383,-0.05753295538461633 +65528,327.6399999997383,-0.05753252266934757 +65529,327.6449999997383,-0.05753209003843988 +65530,327.64999999973827,-0.05753165749187727 +65531,327.65499999973827,-0.05753122502964375 +65532,327.65999999973826,-0.05753079265172333 +65533,327.66499999973826,-0.05753036035810004 +65534,327.66999999973825,-0.0575299281487579 +65535,327.67499999973825,-0.05752949602368095 +65536,327.67999999973824,-0.057529063982853186 +65537,327.68499999973824,-0.057528632026258665 +65538,327.68999999973823,-0.0575282001538814 +65539,327.69499999973823,-0.057527768365705445 +65540,327.6999999997382,-0.05752733666171483 +65541,327.7049999997382,-0.05752690504189359 +65542,327.7099999997382,-0.05752647350622577 +65543,327.7149999997382,-0.05752604205469543 +65544,327.7199999997382,-0.05752561068728659 +65545,327.7249999997382,-0.057525179403983315 +65546,327.7299999997382,-0.05752474820476967 +65547,327.7349999997382,-0.05752431708962969 +65548,327.7399999997382,-0.05752388605854745 +65549,327.7449999997382,-0.057523455111507006 +65550,327.7499999997382,-0.05752302424849242 +65551,327.7549999997382,-0.057522593469487744 +65552,327.75999999973817,-0.05752216277447707 +65553,327.76499999973817,-0.05752173216344446 +65554,327.76999999973816,-0.05752130163637398 +65555,327.77499999973816,-0.057520871193249716 +65556,327.77999999973815,-0.05752044083405575 +65557,327.78499999973815,-0.057520010558776154 +65558,327.78999999973814,-0.05751958036739501 +65559,327.79499999973814,-0.05751915025989641 +65560,327.79999999973813,-0.05751872023626444 +65561,327.80499999973813,-0.0575182902964832 +65562,327.8099999997381,-0.05751786044053678 +65563,327.8149999997381,-0.05751743066840926 +65564,327.8199999997381,-0.05751700098008476 +65565,327.8249999997381,-0.05751657137554739 +65566,327.8299999997381,-0.057516141854781225 +65567,327.8349999997381,-0.05751571241777039 +65568,327.8399999997381,-0.05751528306449899 +65569,327.8449999997381,-0.05751485379495114 +65570,327.8499999997381,-0.057514424609110965 +65571,327.8549999997381,-0.05751399550696256 +65572,327.8599999997381,-0.057513566488490056 +65573,327.8649999997381,-0.05751313755367758 +65574,327.86999999973807,-0.05751270870250926 +65575,327.87499999973807,-0.05751227993496921 +65576,327.87999999973806,-0.05751185125104158 +65577,327.88499999973806,-0.05751142265071047 +65578,327.88999999973805,-0.05751099413396004 +65579,327.89499999973805,-0.057510565700774424 +65580,327.89999999973804,-0.05751013735113776 +65581,327.90499999973804,-0.05750970908503419 +65582,327.90999999973803,-0.05750928090244787 +65583,327.91499999973803,-0.05750885280336293 +65584,327.919999999738,-0.05750842478776353 +65585,327.924999999738,-0.05750799685563383 +65586,327.929999999738,-0.05750756900695798 +65587,327.934999999738,-0.057507141241720135 +65588,327.939999999738,-0.05750671355990446 +65589,327.944999999738,-0.05750628596149511 +65590,327.949999999738,-0.05750585844647625 +65591,327.954999999738,-0.05750543101483207 +65592,327.959999999738,-0.057505003666546727 +65593,327.964999999738,-0.0575045764016044 +65594,327.969999999738,-0.057504149219989246 +65595,327.974999999738,-0.05750372212168546 +65596,327.97999999973797,-0.05750329510667722 +65597,327.98499999973797,-0.05750286817494872 +65598,327.98999999973796,-0.05750244132648413 +65599,327.99499999973796,-0.05750201456126766 +65600,327.99999999973795,-0.05750158787928348 +65601,328.00499999973795,-0.057501161280515786 +65602,328.00999999973794,-0.05750073476494879 +65603,328.01499999973794,-0.057500308332566676 +65604,328.01999999973793,-0.05749988198335366 +65605,328.02499999973793,-0.05749945571729393 +65606,328.0299999997379,-0.0574990295343717 +65607,328.0349999997379,-0.057498603434571194 +65608,328.0399999997379,-0.057498177417876606 +65609,328.0449999997379,-0.05749775148427216 +65610,328.0499999997379,-0.05749732563374207 +65611,328.0549999997379,-0.05749689986627054 +65612,328.0599999997379,-0.05749647418184182 +65613,328.0649999997379,-0.05749604858044012 +65614,328.0699999997379,-0.05749562306204966 +65615,328.0749999997379,-0.057495197626654684 +65616,328.0799999997379,-0.05749477227423942 +65617,328.0849999997379,-0.05749434700478811 +65618,328.08999999973787,-0.05749392181828499 +65619,328.09499999973787,-0.057493496714714286 +65620,328.09999999973786,-0.05749307169406025 +65621,328.10499999973786,-0.05749264675630712 +65622,328.10999999973785,-0.05749222190143917 +65623,328.11499999973785,-0.05749179712944063 +65624,328.11999999973784,-0.05749137244029575 +65625,328.12499999973784,-0.05749094783398879 +65626,328.12999999973783,-0.057490523310504006 +65627,328.13499999973783,-0.05749009886982566 +65628,328.1399999997378,-0.057489674511938024 +65629,328.1449999997378,-0.05748925023682536 +65630,328.1499999997378,-0.05748882604447192 +65631,328.1549999997378,-0.057488401934862 +65632,328.1599999997378,-0.057487977907979854 +65633,328.1649999997378,-0.05748755396380977 +65634,328.1699999997378,-0.057487130102336026 +65635,328.1749999997378,-0.05748670632354289 +65636,328.1799999997378,-0.057486282627414655 +65637,328.1849999997378,-0.05748585901393561 +65638,328.1899999997378,-0.05748543548309004 +65639,328.1949999997378,-0.05748501203486224 +65640,328.19999999973777,-0.0574845886692365 +65641,328.20499999973777,-0.05748416538619712 +65642,328.20999999973776,-0.05748374218572839 +65643,328.21499999973776,-0.05748331906781462 +65644,328.21999999973775,-0.05748289603244011 +65645,328.22499999973775,-0.05748247307958917 +65646,328.22999999973774,-0.05748205020924611 +65647,328.23499999973774,-0.057481627421395246 +65648,328.23999999973773,-0.05748120471602088 +65649,328.24499999973773,-0.057480782093107335 +65650,328.2499999997377,-0.05748035955263893 +65651,328.2549999997377,-0.05747993709459999 +65652,328.2599999997377,-0.05747951471897484 +65653,328.2649999997377,-0.05747909242574781 +65654,328.2699999997377,-0.057478670214903216 +65655,328.2749999997377,-0.05747824808642541 +65656,328.2799999997377,-0.05747782604029871 +65657,328.2849999997377,-0.057477404076507456 +65658,328.2899999997377,-0.05747698219503599 +65659,328.2949999997377,-0.057476560395868646 +65660,328.2999999997377,-0.057476138678989784 +65661,328.3049999997377,-0.05747571704438374 +65662,328.30999999973767,-0.057475295492034874 +65663,328.31499999973767,-0.05747487402192753 +65664,328.31999999973766,-0.057474452634046075 +65665,328.32499999973766,-0.057474031328374864 +65666,328.32999999973765,-0.057473610104898244 +65667,328.33499999973765,-0.05747318896360059 +65668,328.33999999973764,-0.05747276790446627 +65669,328.34499999973764,-0.057472346927479635 +65670,328.34999999973763,-0.057471926032625076 +65671,328.35499999973763,-0.05747150521988695 +65672,328.3599999997376,-0.05747108448924963 +65673,328.3649999997376,-0.05747066384069751 +65674,328.3699999997376,-0.05747024327421497 +65675,328.3749999997376,-0.05746982278978638 +65676,328.3799999997376,-0.05746940238739613 +65677,328.3849999997376,-0.05746898206702862 +65678,328.3899999997376,-0.05746856182866823 +65679,328.3949999997376,-0.057468141672299355 +65680,328.3999999997376,-0.05746772159790639 +65681,328.4049999997376,-0.05746730160547374 +65682,328.4099999997376,-0.05746688169498579 +65683,328.4149999997376,-0.057466461866426954 +65684,328.41999999973757,-0.05746604211978165 +65685,328.42499999973757,-0.05746562245503427 +65686,328.42999999973756,-0.05746520287216923 +65687,328.43499999973756,-0.05746478337117094 +65688,328.43999999973755,-0.05746436395202383 +65689,328.44499999973755,-0.057463944614712305 +65690,328.44999999973754,-0.0574635253592208 +65691,328.45499999973754,-0.05746310618553372 +65692,328.45999999973753,-0.05746268709363551 +65693,328.46499999973753,-0.057462268083510584 +65694,328.4699999997375,-0.05746184915514339 +65695,328.4749999997375,-0.057461430308518344 +65696,328.4799999997375,-0.05746101154361989 +65697,328.4849999997375,-0.05746059286043247 +65698,328.4899999997375,-0.057460174258940525 +65699,328.4949999997375,-0.057459755739128496 +65700,328.4999999997375,-0.05745933730098084 +65701,328.5049999997375,-0.057458918944482 +65702,328.5099999997375,-0.057458500669616414 +65703,328.5149999997375,-0.05745808247636856 +65704,328.5199999997375,-0.05745766436472289 +65705,328.5249999997375,-0.05745724633466385 +65706,328.52999999973747,-0.05745682838617591 +65707,328.53499999973747,-0.05745641051924355 +65708,328.53999999973746,-0.05745599273385122 +65709,328.54499999973746,-0.05745557502998338 +65710,328.54999999973745,-0.057455157407624524 +65711,328.55499999973745,-0.057454739866759114 +65712,328.55999999973744,-0.05745432240737164 +65713,328.56499999973744,-0.05745390502944656 +65714,328.56999999973743,-0.057453487732968385 +65715,328.57499999973743,-0.057453070517921576 +65716,328.5799999997374,-0.057452653384290626 +65717,328.5849999997374,-0.05745223633206004 +65718,328.5899999997374,-0.05745181936121429 +65719,328.5949999997374,-0.0574514024717379 +65720,328.5999999997374,-0.057450985663615325 +65721,328.6049999997374,-0.057450568936831106 +65722,328.6099999997374,-0.05745015229136972 +65723,328.6149999997374,-0.057449735727215685 +65724,328.6199999997374,-0.05744931924435351 +65725,328.6249999997374,-0.05744890284276769 +65726,328.6299999997374,-0.05744848652244275 +65727,328.6349999997374,-0.05744807028336321 +65728,328.63999999973737,-0.05744765412551358 +65729,328.64499999973737,-0.05744723804887839 +65730,328.64999999973736,-0.05744682205344215 +65731,328.65499999973736,-0.057446406139189395 +65732,328.65999999973735,-0.05744599030610465 +65733,328.66499999973735,-0.057445574554172436 +65734,328.66999999973734,-0.057445158883377305 +65735,328.67499999973734,-0.05744474329370378 +65736,328.67999999973733,-0.05744432778513641 +65737,328.68499999973733,-0.05744391235765973 +65738,328.6899999997373,-0.057443497011258275 +65739,328.6949999997373,-0.0574430817459166 +65740,328.6999999997373,-0.05744266656161926 +65741,328.7049999997373,-0.057442251458350795 +65742,328.7099999997373,-0.057441836436095774 +65743,328.7149999997373,-0.05744142149483874 +65744,328.7199999997373,-0.057441006634564244 +65745,328.7249999997373,-0.05744059185525687 +65746,328.7299999997373,-0.05744017715690116 +65747,328.7349999997373,-0.057439762539481694 +65748,328.7399999997373,-0.057439348002983025 +65749,328.7449999997373,-0.05743893354738974 +65750,328.74999999973727,-0.057438519172686414 +65751,328.75499999973727,-0.057438104878857615 +65752,328.75999999973726,-0.05743769066588793 +65753,328.76499999973726,-0.05743727653376193 +65754,328.76999999973725,-0.057436862482464206 +65755,328.77499999973725,-0.05743644851197935 +65756,328.77999999973724,-0.057436034622291944 +65757,328.78499999973724,-0.05743562081338658 +65758,328.78999999973723,-0.05743520708524785 +65759,328.79499999973723,-0.05743479343786035 +65760,328.7999999997372,-0.05743437987120869 +65761,328.8049999997372,-0.05743396638527746 +65762,328.8099999997372,-0.057433552980051275 +65763,328.8149999997372,-0.05743313965551474 +65764,328.8199999997372,-0.05743272641165245 +65765,328.8249999997372,-0.05743231324844904 +65766,328.8299999997372,-0.05743190016588909 +65767,328.8349999997372,-0.05743148716395726 +65768,328.8399999997372,-0.05743107424263813 +65769,328.8449999997372,-0.057430661401916355 +65770,328.8499999997372,-0.057430248641776545 +65771,328.8549999997372,-0.05742983596220333 +65772,328.85999999973717,-0.05742942336318133 +65773,328.86499999973717,-0.057429010844695184 +65774,328.86999999973716,-0.057428598406729536 +65775,328.87499999973716,-0.057428186049269005 +65776,328.87999999973715,-0.05742777377229824 +65777,328.88499999973715,-0.05742736157580188 +65778,328.88999999973714,-0.057426949459764585 +65779,328.89499999973714,-0.05742653742417099 +65780,328.89999999973713,-0.05742612546900574 +65781,328.90499999973713,-0.05742571359425351 +65782,328.9099999997371,-0.05742530179989894 +65783,328.9149999997371,-0.057424890085926675 +65784,328.9199999997371,-0.0574244784523214 +65785,328.9249999997371,-0.057424066899067754 +65786,328.9299999997371,-0.05742365542615042 +65787,328.9349999997371,-0.05742324403355406 +65788,328.9399999997371,-0.057422832721263334 +65789,328.9449999997371,-0.057422421489262916 +65790,328.9499999997371,-0.0574220103375375 +65791,328.9549999997371,-0.05742159926607175 +65792,328.9599999997371,-0.057421188274850356 +65793,328.9649999997371,-0.05742077736385798 +65794,328.96999999973707,-0.05742036653307933 +65795,328.97499999973707,-0.05741995578249909 +65796,328.97999999973706,-0.05741954511210194 +65797,328.98499999973706,-0.05741913452187258 +65798,328.98999999973705,-0.05741872401179571 +65799,328.99499999973705,-0.05741831358185601 +65800,328.99999999973704,-0.0574179032320382 +65801,329.00499999973704,-0.057417492962326976 +65802,329.00999999973703,-0.05741708277270703 +65803,329.01499999973703,-0.057416672663163096 +65804,329.019999999737,-0.05741626263367988 +65805,329.024999999737,-0.05741585268424208 +65806,329.029999999737,-0.05741544281483442 +65807,329.034999999737,-0.05741503302544162 +65808,329.039999999737,-0.057414623316048394 +65809,329.044999999737,-0.05741421368663947 +65810,329.049999999737,-0.05741380413719958 +65811,329.054999999737,-0.05741339466771343 +65812,329.059999999737,-0.05741298527816578 +65813,329.064999999737,-0.05741257596854135 +65814,329.069999999737,-0.05741216673882487 +65815,329.074999999737,-0.057411757589001085 +65816,329.07999999973697,-0.057411348519054745 +65817,329.08499999973697,-0.05741093952897058 +65818,329.08999999973696,-0.05741053061873334 +65819,329.09499999973696,-0.05741012178832777 +65820,329.09999999973695,-0.057409713037738626 +65821,329.10499999973695,-0.057409304366950666 +65822,329.10999999973694,-0.05740889577594864 +65823,329.11499999973694,-0.05740848726471731 +65824,329.11999999973693,-0.057408078833241435 +65825,329.12499999973693,-0.057407670481505774 +65826,329.1299999997369,-0.0574072622094951 +65827,329.1349999997369,-0.05740685401719418 +65828,329.1399999997369,-0.05740644590458779 +65829,329.1449999997369,-0.05740603787166069 +65830,329.1499999997369,-0.05740562991839766 +65831,329.1549999997369,-0.0574052220447835 +65832,329.1599999997369,-0.057404814250802974 +65833,329.1649999997369,-0.05740440653644086 +65834,329.1699999997369,-0.05740399890168196 +65835,329.1749999997369,-0.05740359134651105 +65836,329.1799999997369,-0.05740318387091293 +65837,329.1849999997369,-0.05740277647487239 +65838,329.18999999973687,-0.05740236915837421 +65839,329.19499999973686,-0.05740196192140321 +65840,329.19999999973686,-0.05740155476394419 +65841,329.20499999973686,-0.05740114768598196 +65842,329.20999999973685,-0.05740074068750131 +65843,329.21499999973685,-0.05740033376848706 +65844,329.21999999973684,-0.05739992692892402 +65845,329.22499999973684,-0.057399520168797 +65846,329.22999999973683,-0.05739911348809082 +65847,329.23499999973683,-0.057398706886790295 +65848,329.2399999997368,-0.05739830036488026 +65849,329.2449999997368,-0.05739789392234552 +65850,329.2499999997368,-0.057397487559170915 +65851,329.2549999997368,-0.057397081275341266 +65852,329.2599999997368,-0.05739667507084141 +65853,329.2649999997368,-0.05739626894565619 +65854,329.2699999997368,-0.057395862899770424 +65855,329.2749999997368,-0.057395456933168956 +65856,329.2799999997368,-0.05739505104583664 +65857,329.2849999997368,-0.057394645237758314 +65858,329.2899999997368,-0.057394239508918816 +65859,329.2949999997368,-0.057393833859303016 +65860,329.29999999973677,-0.05739342828889575 +65861,329.30499999973676,-0.05739302279768187 +65862,329.30999999973676,-0.05739261738564624 +65863,329.31499999973676,-0.057392212052773714 +65864,329.31999999973675,-0.057391806799049164 +65865,329.32499999973675,-0.057391401624457446 +65866,329.32999999973674,-0.057390996528983426 +65867,329.33499999973674,-0.05739059151261198 +65868,329.33999999973673,-0.057390186575327976 +65869,329.34499999973673,-0.05738978171711629 +65870,329.3499999997367,-0.0573893769379618 +65871,329.3549999997367,-0.05738897223784939 +65872,329.3599999997367,-0.057388567616763926 +65873,329.3649999997367,-0.057388163074690315 +65874,329.3699999997367,-0.057387758611613424 +65875,329.3749999997367,-0.057387354227518145 +65876,329.3799999997367,-0.05738694992238938 +65877,329.3849999997367,-0.05738654569621202 +65878,329.3899999997367,-0.05738614154897097 +65879,329.3949999997367,-0.057385737480651115 +65880,329.3999999997367,-0.05738533349123736 +65881,329.4049999997367,-0.057384929580714616 +65882,329.40999999973667,-0.05738452574906779 +65883,329.41499999973666,-0.05738412199628179 +65884,329.41999999973666,-0.05738371832234152 +65885,329.42499999973666,-0.057383314727231904 +65886,329.42999999973665,-0.057382911210937866 +65887,329.43499999973665,-0.0573825077734443 +65888,329.43999999973664,-0.057382104414736165 +65889,329.44499999973664,-0.05738170113479836 +65890,329.44999999973663,-0.05738129793361583 +65891,329.45499999973663,-0.05738089481117348 +65892,329.4599999997366,-0.05738049176745625 +65893,329.4649999997366,-0.05738008880244908 +65894,329.4699999997366,-0.05737968591613692 +65895,329.4749999997366,-0.057379283108504694 +65896,329.4799999997366,-0.05737888037953735 +65897,329.4849999997366,-0.05737847772921983 +65898,329.4899999997366,-0.05737807515753708 +65899,329.4949999997366,-0.057377672664474064 +65900,329.4999999997366,-0.05737727025001571 +65901,329.5049999997366,-0.057376867914147 +65902,329.5099999997366,-0.05737646565685287 +65903,329.5149999997366,-0.057376063478118286 +65904,329.51999999973657,-0.05737566137792821 +65905,329.52499999973656,-0.057375259356267604 +65906,329.52999999973656,-0.05737485741312145 +65907,329.53499999973656,-0.0573744555484747 +65908,329.53999999973655,-0.057374053762312346 +65909,329.54499999973655,-0.05737365205461934 +65910,329.54999999973654,-0.057373250425380676 +65911,329.55499999973654,-0.05737284887458132 +65912,329.55999999973653,-0.057372447402206275 +65913,329.56499999973653,-0.057372046008240515 +65914,329.5699999997365,-0.057371644692669026 +65915,329.5749999997365,-0.05737124345547679 +65916,329.5799999997365,-0.05737084229664882 +65917,329.5849999997365,-0.0573704412161701 +65918,329.5899999997365,-0.05737004021402562 +65919,329.5949999997365,-0.0573696392902004 +65920,329.5999999997365,-0.057369238444679414 +65921,329.6049999997365,-0.05736883767744769 +65922,329.6099999997365,-0.057368436988490215 +65923,329.6149999997365,-0.057368036377792024 +65924,329.6199999997365,-0.05736763584533811 +65925,329.6249999997365,-0.05736723539111351 +65926,329.62999999973647,-0.05736683501510322 +65927,329.63499999973646,-0.05736643471729227 +65928,329.63999999973646,-0.05736603449766568 +65929,329.64499999973646,-0.05736563435620848 +65930,329.64999999973645,-0.05736523429290569 +65931,329.65499999973645,-0.05736483430774234 +65932,329.65999999973644,-0.057364434400703476 +65933,329.66499999973644,-0.057364034571774115 +65934,329.66999999973643,-0.0573636348209393 +65935,329.67499999973643,-0.057363235148184075 +65936,329.6799999997364,-0.05736283555349348 +65937,329.6849999997364,-0.05736243603685256 +65938,329.6899999997364,-0.05736203659824636 +65939,329.6949999997364,-0.05736163723765995 +65940,329.6999999997364,-0.05736123795507835 +65941,329.7049999997364,-0.057360838750486635 +65942,329.7099999997364,-0.057360439623869865 +65943,329.7149999997364,-0.05736004057521309 +65944,329.7199999997364,-0.057359641604501375 +65945,329.7249999997364,-0.057359242711719785 +65946,329.7299999997364,-0.057358843896853404 +65947,329.7349999997364,-0.05735844515988727 +65948,329.73999999973637,-0.05735804650080648 +65949,329.74499999973636,-0.057357647919596105 +65950,329.74999999973636,-0.05735724941624122 +65951,329.75499999973636,-0.0573568509907269 +65952,329.75999999973635,-0.05735645264303824 +65953,329.76499999973635,-0.057356054373160305 +65954,329.76999999973634,-0.057355656181078206 +65955,329.77499999973634,-0.057355258066777014 +65956,329.77999999973633,-0.05735486003024184 +65957,329.7849999997363,-0.05735446207145776 +65958,329.7899999997363,-0.057354064190409886 +65959,329.7949999997363,-0.05735366638708331 +65960,329.7999999997363,-0.05735326866146313 +65961,329.8049999997363,-0.05735287101353447 +65962,329.8099999997363,-0.05735247344328242 +65963,329.8149999997363,-0.0573520759506921 +65964,329.8199999997363,-0.05735167853574861 +65965,329.8249999997363,-0.057351281198437076 +65966,329.8299999997363,-0.05735088393874262 +65967,329.8349999997363,-0.05735048675665034 +65968,329.8399999997363,-0.057350089652145386 +65969,329.8449999997363,-0.05734969262521287 +65970,329.84999999973627,-0.05734929567583791 +65971,329.85499999973626,-0.057348898804005656 +65972,329.85999999973626,-0.05734850200970122 +65973,329.86499999973626,-0.05734810529290975 +65974,329.86999999973625,-0.05734770865361638 +65975,329.87499999973625,-0.05734731209180626 +65976,329.87999999973624,-0.05734691560746453 +65977,329.88499999973624,-0.05734651920057631 +65978,329.88999999973623,-0.05734612287112677 +65979,329.8949999997362,-0.05734572661910106 +65980,329.8999999997362,-0.05734533044448432 +65981,329.9049999997362,-0.05734493434726171 +65982,329.9099999997362,-0.057344538327418405 +65983,329.9149999997362,-0.057344142384939546 +65984,329.9199999997362,-0.0573437465198103 +65985,329.9249999997362,-0.057343350732015824 +65986,329.9299999997362,-0.057342955021541304 +65987,329.9349999997362,-0.0573425593883719 +65988,329.9399999997362,-0.05734216383249277 +65989,329.9449999997362,-0.05734176835388911 +65990,329.9499999997362,-0.0573413729525461 +65991,329.9549999997362,-0.0573409776284489 +65992,329.95999999973617,-0.05734058238158269 +65993,329.96499999973616,-0.057340187211932674 +65994,329.96999999973616,-0.057339792119484034 +65995,329.97499999973616,-0.05733939710422196 +65996,329.97999999973615,-0.057339002166131636 +65997,329.98499999973615,-0.05733860730519827 +65998,329.98999999973614,-0.05733821252140704 +65999,329.99499999973614,-0.057337817814743175 +66000,329.99999999973613,-0.05733742318519185 +66001,330.0049999997361,-0.057337028632738284 +66002,330.0099999997361,-0.05733663415736767 +66003,330.0149999997361,-0.05733623975906524 +66004,330.0199999997361,-0.05733584543781619 +66005,330.0249999997361,-0.05733545119360574 +66006,330.0299999997361,-0.0573350570264191 +66007,330.0349999997361,-0.05733466293624149 +66008,330.0399999997361,-0.05733426892305813 +66009,330.0449999997361,-0.05733387498685427 +66010,330.0499999997361,-0.05733348112761512 +66011,330.0549999997361,-0.0573330873453259 +66012,330.0599999997361,-0.05733269363997185 +66013,330.0649999997361,-0.05733230001153821 +66014,330.06999999973607,-0.057331906460010205 +66015,330.07499999973606,-0.05733151298537308 +66016,330.07999999973606,-0.0573311195876121 +66017,330.08499999973606,-0.05733072626671246 +66018,330.08999999973605,-0.05733033302265945 +66019,330.09499999973605,-0.0573299398554383 +66020,330.09999999973604,-0.05732954676503427 +66021,330.10499999973604,-0.05732915375143262 +66022,330.10999999973603,-0.05732876081461858 +66023,330.114999999736,-0.05732836795457743 +66024,330.119999999736,-0.05732797517129444 +66025,330.124999999736,-0.057327582464754855 +66026,330.129999999736,-0.057327189834943955 +66027,330.134999999736,-0.05732679728184701 +66028,330.139999999736,-0.057326404805449274 +66029,330.144999999736,-0.05732601240573604 +66030,330.149999999736,-0.05732562008269258 +66031,330.154999999736,-0.057325227836304164 +66032,330.159999999736,-0.057324835666556086 +66033,330.164999999736,-0.05732444357343363 +66034,330.169999999736,-0.05732405155692207 +66035,330.174999999736,-0.057323659617006716 +66036,330.17999999973597,-0.05732326775367284 +66037,330.18499999973596,-0.057322875966905745 +66038,330.18999999973596,-0.05732248425669072 +66039,330.19499999973596,-0.05732209262301306 +66040,330.19999999973595,-0.05732170106585809 +66041,330.20499999973595,-0.05732130958521111 +66042,330.20999999973594,-0.05732091818105741 +66043,330.21499999973594,-0.057320526853382306 +66044,330.21999999973593,-0.057320135602171106 +66045,330.2249999997359,-0.057319744427409135 +66046,330.2299999997359,-0.057319353329081696 +66047,330.2349999997359,-0.05731896230717411 +66048,330.2399999997359,-0.057318571361671705 +66049,330.2449999997359,-0.05731818049255981 +66050,330.2499999997359,-0.057317789699823735 +66051,330.2549999997359,-0.057317398983448814 +66052,330.2599999997359,-0.057317008343420385 +66053,330.2649999997359,-0.05731661777972377 +66054,330.2699999997359,-0.05731622729234433 +66055,330.2749999997359,-0.057315836881267374 +66056,330.2799999997359,-0.05731544654647826 +66057,330.2849999997359,-0.05731505628796234 +66058,330.28999999973587,-0.05731466610570493 +66059,330.29499999973586,-0.057314275999691404 +66060,330.29999999973586,-0.05731388596990711 +66061,330.30499999973586,-0.057313496016337395 +66062,330.30999999973585,-0.05731310613896761 +66063,330.31499999973585,-0.05731271633778313 +66064,330.31999999973584,-0.05731232661276931 +66065,330.32499999973584,-0.05731193696391151 +66066,330.32999999973583,-0.057311547391195095 +66067,330.3349999997358,-0.05731115789460543 +66068,330.3399999997358,-0.0573107684741279 +66069,330.3449999997358,-0.05731037912974786 +66070,330.3499999997358,-0.05730998986145069 +66071,330.3549999997358,-0.057309600669221784 +66072,330.3599999997358,-0.05730921155304651 +66073,330.3649999997358,-0.05730882251291026 +66074,330.3699999997358,-0.057308433548798395 +66075,330.3749999997358,-0.057308044660696326 +66076,330.3799999997358,-0.057307655848589434 +66077,330.3849999997358,-0.057307267112463124 +66078,330.3899999997358,-0.057306878452302784 +66079,330.3949999997358,-0.05730648986809382 +66080,330.39999999973577,-0.05730610135982163 +66081,330.40499999973576,-0.05730571292747159 +66082,330.40999999973576,-0.05730532457102913 +66083,330.41499999973576,-0.05730493629047966 +66084,330.41999999973575,-0.05730454808580859 +66085,330.42499999973575,-0.05730415995700133 +66086,330.42999999973574,-0.05730377190404329 +66087,330.43499999973574,-0.057303383926919894 +66088,330.43999999973573,-0.05730299602561655 +66089,330.4449999997357,-0.0573026082001187 +66090,330.4499999997357,-0.05730222045041175 +66091,330.4549999997357,-0.05730183277648115 +66092,330.4599999997357,-0.05730144517831232 +66093,330.4649999997357,-0.05730105765589069 +66094,330.4699999997357,-0.05730067020920168 +66095,330.4749999997357,-0.05730028283823076 +66096,330.4799999997357,-0.057299895542963344 +66097,330.4849999997357,-0.05729950832338489 +66098,330.4899999997357,-0.057299121179480834 +66099,330.4949999997357,-0.05729873411123663 +66100,330.4999999997357,-0.057298347118637724 +66101,330.5049999997357,-0.05729796020166957 +66102,330.50999999973567,-0.057297573360317614 +66103,330.51499999973566,-0.057297186594567326 +66104,330.51999999973566,-0.05729679990440415 +66105,330.52499999973566,-0.05729641328981357 +66106,330.52999999973565,-0.05729602675078104 +66107,330.53499999973565,-0.05729564028729202 +66108,330.53999999973564,-0.05729525389933198 +66109,330.54499999973564,-0.0572948675868864 +66110,330.54999999973563,-0.05729448134994075 +66111,330.5549999997356,-0.05729409518848051 +66112,330.5599999997356,-0.05729370910249117 +66113,330.5649999997356,-0.057293323091958184 +66114,330.5699999997356,-0.057292937156867056 +66115,330.5749999997356,-0.05729255129720327 +66116,330.5799999997356,-0.057292165512952326 +66117,330.5849999997356,-0.05729177980409969 +66118,330.5899999997356,-0.05729139417063088 +66119,330.5949999997356,-0.057291008612531384 +66120,330.5999999997356,-0.057290623129786694 +66121,330.6049999997356,-0.05729023772238233 +66122,330.6099999997356,-0.05728985239030378 +66123,330.6149999997356,-0.05728946713353655 +66124,330.61999999973557,-0.057289081952066154 +66125,330.62499999973556,-0.05728869684587811 +66126,330.62999999973556,-0.05728831181495792 +66127,330.63499999973556,-0.057287926859291106 +66128,330.63999999973555,-0.05728754197886319 +66129,330.64499999973555,-0.05728715717365968 +66130,330.64999999973554,-0.05728677244366611 +66131,330.65499999973554,-0.057286387788868014 +66132,330.65999999973553,-0.05728600320925091 +66133,330.6649999997355,-0.057285618704800326 +66134,330.6699999997355,-0.057285234275501806 +66135,330.6749999997355,-0.05728484992134088 +66136,330.6799999997355,-0.05728446564230308 +66137,330.6849999997355,-0.05728408143837396 +66138,330.6899999997355,-0.05728369730953905 +66139,330.6949999997355,-0.05728331325578391 +66140,330.6999999997355,-0.05728292927709409 +66141,330.7049999997355,-0.057282545373455125 +66142,330.7099999997355,-0.05728216154485257 +66143,330.7149999997355,-0.05728177779127199 +66144,330.7199999997355,-0.05728139411269893 +66145,330.7249999997355,-0.05728101050911897 +66146,330.72999999973547,-0.05728062698051767 +66147,330.73499999973546,-0.05728024352688057 +66148,330.73999999973546,-0.057279860148193265 +66149,330.74499999973546,-0.05727947684444132 +66150,330.74999999973545,-0.05727909361561031 +66151,330.75499999973545,-0.05727871046168579 +66152,330.75999999973544,-0.05727832738265336 +66153,330.76499999973544,-0.05727794437849859 +66154,330.76999999973543,-0.05727756144920707 +66155,330.7749999997354,-0.05727717859476438 +66156,330.7799999997354,-0.05727679581515611 +66157,330.7849999997354,-0.057276413110367845 +66158,330.7899999997354,-0.057276030480385175 +66159,330.7949999997354,-0.0572756479251937 +66160,330.7999999997354,-0.057275265444779025 +66161,330.8049999997354,-0.057274883039126735 +66162,330.8099999997354,-0.05727450070822245 +66163,330.8149999997354,-0.057274118452051756 +66164,330.8199999997354,-0.05727373627060027 +66165,330.8249999997354,-0.057273354163853596 +66166,330.8299999997354,-0.05727297213179736 +66167,330.8349999997354,-0.05727259017441716 +66168,330.83999999973537,-0.05727220829169862 +66169,330.84499999973536,-0.057271826483627365 +66170,330.84999999973536,-0.057271444750189006 +66171,330.85499999973536,-0.05727106309136917 +66172,330.85999999973535,-0.05727068150715348 +66173,330.86499999973535,-0.057270299997527585 +66174,330.86999999973534,-0.0572699185624771 +66175,330.87499999973534,-0.05726953720198766 +66176,330.87999999973533,-0.05726915591604491 +66177,330.8849999997353,-0.05726877470463447 +66178,330.8899999997353,-0.05726839356774199 +66179,330.8949999997353,-0.05726801250535313 +66180,330.8999999997353,-0.057267631517453524 +66181,330.9049999997353,-0.05726725060402882 +66182,330.9099999997353,-0.05726686976506467 +66183,330.9149999997353,-0.057266489000546726 +66184,330.9199999997353,-0.05726610831046065 +66185,330.9249999997353,-0.057265727694792094 +66186,330.9299999997353,-0.05726534715352672 +66187,330.9349999997353,-0.05726496668665018 +66188,330.9399999997353,-0.05726458629414818 +66189,330.9449999997353,-0.05726420597600634 +66190,330.94999999973527,-0.05726382573221035 +66191,330.95499999973526,-0.05726344556274589 +66192,330.95999999973526,-0.05726306546759862 +66193,330.96499999973526,-0.057262685446754245 +66194,330.96999999973525,-0.057262305500198424 +66195,330.97499999973525,-0.057261925627916856 +66196,330.97999999973524,-0.0572615458298952 +66197,330.98499999973524,-0.057261166106119164 +66198,330.98999999973523,-0.05726078645657444 +66199,330.9949999997352,-0.05726040688124671 +66200,330.9999999997352,-0.05726002738012167 +66201,331.0049999997352,-0.05725964795318503 +66202,331.0099999997352,-0.05725926860042248 +66203,331.0149999997352,-0.05725888932181971 +66204,331.0199999997352,-0.05725851011736245 +66205,331.0249999997352,-0.057258130987036394 +66206,331.0299999997352,-0.05725775193082726 +66207,331.0349999997352,-0.05725737294872074 +66208,331.0399999997352,-0.05725699404070258 +66209,331.0449999997352,-0.05725661520675847 +66210,331.0499999997352,-0.057256236446874144 +66211,331.0549999997352,-0.05725585776103532 +66212,331.05999999973517,-0.057255479149227725 +66213,331.06499999973516,-0.057255100611437085 +66214,331.06999999973516,-0.05725472214764912 +66215,331.07499999973516,-0.05725434375784957 +66216,331.07999999973515,-0.05725396544202417 +66217,331.08499999973515,-0.05725358720015865 +66218,331.08999999973514,-0.05725320903223876 +66219,331.09499999973514,-0.057252830938250246 +66220,331.09999999973513,-0.057252452918178834 +66221,331.1049999997351,-0.05725207497201028 +66222,331.1099999997351,-0.057251697099730325 +66223,331.1149999997351,-0.05725131930132473 +66224,331.1199999997351,-0.05725094157677924 +66225,331.1249999997351,-0.05725056392607962 +66226,331.1299999997351,-0.05725018634921163 +66227,331.1349999997351,-0.057249808846161016 +66228,331.1399999997351,-0.057249431416913556 +66229,331.1449999997351,-0.057249054061455015 +66230,331.1499999997351,-0.05724867677977116 +66231,331.1549999997351,-0.05724829957184775 +66232,331.1599999997351,-0.057247922437670566 +66233,331.1649999997351,-0.057247545377225394 +66234,331.16999999973507,-0.057247168390498 +66235,331.17499999973506,-0.057246791477474177 +66236,331.17999999973506,-0.05724641463813968 +66237,331.18499999973506,-0.05724603787248033 +66238,331.18999999973505,-0.05724566118048189 +66239,331.19499999973505,-0.057245284562130155 +66240,331.19999999973504,-0.057244908017410924 +66241,331.20499999973504,-0.057244531546309985 +66242,331.20999999973503,-0.05724415514881313 +66243,331.214999999735,-0.05724377882490619 +66244,331.219999999735,-0.05724340257457493 +66245,331.224999999735,-0.057243026397805166 +66246,331.229999999735,-0.05724265029458272 +66247,331.234999999735,-0.05724227426489338 +66248,331.239999999735,-0.057241898308722984 +66249,331.244999999735,-0.05724152242605732 +66250,331.249999999735,-0.05724114661688222 +66251,331.254999999735,-0.0572407708811835 +66252,331.259999999735,-0.05724039521894697 +66253,331.264999999735,-0.057240019630158484 +66254,331.269999999735,-0.05723964411480385 +66255,331.274999999735,-0.05723926867286889 +66256,331.27999999973497,-0.05723889330433944 +66257,331.28499999973496,-0.05723851800920134 +66258,331.28999999973496,-0.057238142787440424 +66259,331.29499999973496,-0.05723776763904253 +66260,331.29999999973495,-0.057237392563993496 +66261,331.30499999973495,-0.057237017562279176 +66262,331.30999999973494,-0.057236642633885414 +66263,331.31499999973494,-0.05723626777879804 +66264,331.31999999973493,-0.05723589299700292 +66265,331.3249999997349,-0.05723551828848591 +66266,331.3299999997349,-0.05723514365323285 +66267,331.3349999997349,-0.057234769091229626 +66268,331.3399999997349,-0.057234394602462074 +66269,331.3449999997349,-0.05723402018691607 +66270,331.3499999997349,-0.05723364584457747 +66271,331.3549999997349,-0.05723327157543214 +66272,331.3599999997349,-0.05723289737946597 +66273,331.3649999997349,-0.05723252325666482 +66274,331.3699999997349,-0.05723214920701456 +66275,331.3749999997349,-0.057231775230501075 +66276,331.3799999997349,-0.057231401327110236 +66277,331.3849999997349,-0.05723102749682794 +66278,331.38999999973487,-0.05723065373964005 +66279,331.39499999973486,-0.057230280055532476 +66280,331.39999999973486,-0.057229906444491094 +66281,331.40499999973486,-0.057229532906501804 +66282,331.40999999973485,-0.05722915944155049 +66283,331.41499999973485,-0.057228786049623066 +66284,331.41999999973484,-0.05722841273070543 +66285,331.42499999973484,-0.057228039484783465 +66286,331.42999999973483,-0.05722766631184308 +66287,331.4349999997348,-0.057227293211870194 +66288,331.4399999997348,-0.0572269201848507 +66289,331.4449999997348,-0.05722654723077052 +66290,331.4499999997348,-0.05722617434961558 +66291,331.4549999997348,-0.05722580154137177 +66292,331.4599999997348,-0.057225428806025026 +66293,331.4649999997348,-0.05722505614356126 +66294,331.4699999997348,-0.0572246835539664 +66295,331.4749999997348,-0.057224311037226375 +66296,331.4799999997348,-0.057223938593327105 +66297,331.4849999997348,-0.05722356622225453 +66298,331.4899999997348,-0.05722319392399459 +66299,331.4949999997348,-0.0572228216985332 +66300,331.49999999973477,-0.057222449545856306 +66301,331.50499999973476,-0.05722207746594985 +66302,331.50999999973476,-0.05722170545879979 +66303,331.51499999973475,-0.05722133352439205 +66304,331.51999999973475,-0.05722096166271259 +66305,331.52499999973475,-0.05722058987374735 +66306,331.52999999973474,-0.05722021815748228 +66307,331.53499999973474,-0.05721984651390335 +66308,331.53999999973473,-0.0572194749429965 +66309,331.5449999997347,-0.057219103444747704 +66310,331.5499999997347,-0.05721873201914292 +66311,331.5549999997347,-0.05721836066616811 +66312,331.5599999997347,-0.05721798938580925 +66313,331.5649999997347,-0.05721761817805229 +66314,331.5699999997347,-0.05721724704288323 +66315,331.5749999997347,-0.057216875980288025 +66316,331.5799999997347,-0.057216504990252645 +66317,331.5849999997347,-0.05721613407276308 +66318,331.5899999997347,-0.05721576322780531 +66319,331.5949999997347,-0.05721539245536533 +66320,331.5999999997347,-0.05721502175542912 +66321,331.6049999997347,-0.05721465112798265 +66322,331.60999999973467,-0.057214280573011936 +66323,331.61499999973466,-0.05721391009050295 +66324,331.61999999973466,-0.05721353968044171 +66325,331.62499999973465,-0.057213169342814195 +66326,331.62999999973465,-0.05721279907760642 +66327,331.63499999973465,-0.057212428884804385 +66328,331.63999999973464,-0.057212058764394086 +66329,331.64499999973464,-0.057211688716361536 +66330,331.64999999973463,-0.05721131874069276 +66331,331.6549999997346,-0.05721094883737375 +66332,331.6599999997346,-0.05721057900639053 +66333,331.6649999997346,-0.05721020924772913 +66334,331.6699999997346,-0.05720983956137555 +66335,331.6749999997346,-0.05720946994731581 +66336,331.6799999997346,-0.05720910040553595 +66337,331.6849999997346,-0.057208730936021995 +66338,331.6899999997346,-0.05720836153875997 +66339,331.6949999997346,-0.05720799221373591 +66340,331.6999999997346,-0.05720762296093584 +66341,331.7049999997346,-0.05720725378034581 +66342,331.7099999997346,-0.057206884671951855 +66343,331.7149999997346,-0.05720651563574002 +66344,331.71999999973457,-0.05720614667169633 +66345,331.72499999973456,-0.05720577777980685 +66346,331.72999999973456,-0.05720540896005764 +66347,331.73499999973455,-0.05720504021243473 +66348,331.73999999973455,-0.05720467153692417 +66349,331.74499999973455,-0.05720430293351202 +66350,331.74999999973454,-0.05720393440218436 +66351,331.75499999973454,-0.05720356594292724 +66352,331.75999999973453,-0.05720319755572672 +66353,331.7649999997345,-0.05720282924056886 +66354,331.7699999997345,-0.05720246099743973 +66355,331.7749999997345,-0.057202092826325414 +66356,331.7799999997345,-0.05720172472721197 +66357,331.7849999997345,-0.05720135670008547 +66358,331.7899999997345,-0.057200988744932006 +66359,331.7949999997345,-0.05720062086173765 +66360,331.7999999997345,-0.05720025305048849 +66361,331.8049999997345,-0.05719988531117059 +66362,331.8099999997345,-0.05719951764377006 +66363,331.8149999997345,-0.057199150048273 +66364,331.8199999997345,-0.057198782524665474 +66365,331.8249999997345,-0.057198415072933585 +66366,331.82999999973447,-0.05719804769306344 +66367,331.83499999973446,-0.05719768038504114 +66368,331.83999999973446,-0.05719731314885277 +66369,331.84499999973445,-0.057196945984484444 +66370,331.84999999973445,-0.05719657889192227 +66371,331.85499999973445,-0.057196211871152355 +66372,331.85999999973444,-0.0571958449221608 +66373,331.86499999973444,-0.05719547804493374 +66374,331.86999999973443,-0.057195111239457266 +66375,331.8749999997344,-0.05719474450571751 +66376,331.8799999997344,-0.05719437784370059 +66377,331.8849999997344,-0.05719401125339264 +66378,331.8899999997344,-0.05719364473477978 +66379,331.8949999997344,-0.057193278287848134 +66380,331.8999999997344,-0.05719291191258384 +66381,331.9049999997344,-0.05719254560897302 +66382,331.9099999997344,-0.05719217937700181 +66383,331.9149999997344,-0.05719181321665636 +66384,331.9199999997344,-0.057191447127922804 +66385,331.9249999997344,-0.057191081110787266 +66386,331.9299999997344,-0.05719071516523592 +66387,331.9349999997344,-0.05719034929125489 +66388,331.93999999973437,-0.05718998348883035 +66389,331.94499999973436,-0.057189617757948424 +66390,331.94999999973436,-0.05718925209859529 +66391,331.95499999973435,-0.057188886510757105 +66392,331.95999999973435,-0.057188520994420004 +66393,331.96499999973435,-0.05718815554957017 +66394,331.96999999973434,-0.057187790176193756 +66395,331.97499999973434,-0.05718742487427693 +66396,331.97999999973433,-0.05718705964380587 +66397,331.9849999997343,-0.05718669448476674 +66398,331.9899999997343,-0.0571863293971457 +66399,331.9949999997343,-0.057185964380928954 +66400,331.9999999997343,-0.057185599436102665 +66401,332.0049999997343,-0.05718523456265301 +66402,332.0099999997343,-0.05718486976056617 +66403,332.0149999997343,-0.057184505029828345 +66404,332.0199999997343,-0.05718414037042571 +66405,332.0249999997343,-0.05718377578234447 +66406,332.0299999997343,-0.0571834112655708 +66407,332.0349999997343,-0.057183046820090906 +66408,332.0399999997343,-0.05718268244589099 +66409,332.0449999997343,-0.057182318142957246 +66410,332.04999999973427,-0.05718195391127587 +66411,332.05499999973426,-0.05718158975083307 +66412,332.05999999973426,-0.05718122566161504 +66413,332.06499999973425,-0.05718086164360803 +66414,332.06999999973425,-0.05718049769679821 +66415,332.07499999973425,-0.05718013382117181 +66416,332.07999999973424,-0.057179770016715044 +66417,332.08499999973424,-0.05717940628341413 +66418,332.08999999973423,-0.05717904262125529 +66419,332.0949999997342,-0.057178679030224756 +66420,332.0999999997342,-0.057178315510308754 +66421,332.1049999997342,-0.0571779520614935 +66422,332.1099999997342,-0.05717758868376524 +66423,332.1149999997342,-0.05717722537711019 +66424,332.1199999997342,-0.057176862141514594 +66425,332.1249999997342,-0.05717649897696468 +66426,332.1299999997342,-0.05717613588344671 +66427,332.1349999997342,-0.05717577286094691 +66428,332.1399999997342,-0.05717540990945153 +66429,332.1449999997342,-0.057175047028946824 +66430,332.1499999997342,-0.05717468421941902 +66431,332.1549999997342,-0.05717432148085439 +66432,332.15999999973417,-0.05717395881323918 +66433,332.16499999973416,-0.05717359621655966 +66434,332.16999999973416,-0.05717323369080208 +66435,332.17499999973415,-0.0571728712359527 +66436,332.17999999973415,-0.05717250885199779 +66437,332.18499999973415,-0.057172146538923614 +66438,332.18999999973414,-0.05717178429671644 +66439,332.19499999973414,-0.05717142212536254 +66440,332.19999999973413,-0.05717106002484819 +66441,332.2049999997341,-0.057170697995159656 +66442,332.2099999997341,-0.05717033603628322 +66443,332.2149999997341,-0.05716997414820517 +66444,332.2199999997341,-0.05716961233091179 +66445,332.2249999997341,-0.05716925058438936 +66446,332.2299999997341,-0.057168888908624156 +66447,332.2349999997341,-0.05716852730360249 +66448,332.2399999997341,-0.05716816576931065 +66449,332.2449999997341,-0.05716780430573492 +66450,332.2499999997341,-0.057167442912861605 +66451,332.2549999997341,-0.057167081590677 +66452,332.2599999997341,-0.057166720339167414 +66453,332.2649999997341,-0.057166359158319156 +66454,332.26999999973407,-0.05716599804811851 +66455,332.27499999973406,-0.05716563700855181 +66456,332.27999999973406,-0.05716527603960536 +66457,332.28499999973405,-0.05716491514126547 +66458,332.28999999973405,-0.05716455431351847 +66459,332.29499999973405,-0.057164193556350655 +66460,332.29999999973404,-0.05716383286974836 +66461,332.30499999973404,-0.05716347225369792 +66462,332.30999999973403,-0.05716311170818564 +66463,332.314999999734,-0.057162751233197855 +66464,332.319999999734,-0.057162390828720905 +66465,332.324999999734,-0.057162030494741105 +66466,332.329999999734,-0.0571616702312448 +66467,332.334999999734,-0.05716131003821833 +66468,332.339999999734,-0.057160949915648046 +66469,332.344999999734,-0.057160589863520274 +66470,332.349999999734,-0.05716022988182135 +66471,332.354999999734,-0.057159869970537645 +66472,332.359999999734,-0.057159510129655505 +66473,332.364999999734,-0.05715915035916126 +66474,332.369999999734,-0.05715879065904129 +66475,332.374999999734,-0.05715843102928194 +66476,332.37999999973397,-0.05715807146986957 +66477,332.38499999973396,-0.05715771198079054 +66478,332.38999999973396,-0.05715735256203122 +66479,332.39499999973395,-0.057156993213577964 +66480,332.39999999973395,-0.05715663393541715 +66481,332.40499999973395,-0.05715627472753515 +66482,332.40999999973394,-0.05715591558991834 +66483,332.41499999973394,-0.05715555652255309 +66484,332.41999999973393,-0.05715519752542578 +66485,332.4249999997339,-0.057154838598522786 +66486,332.4299999997339,-0.05715447974183049 +66487,332.4349999997339,-0.05715412095533527 +66488,332.4399999997339,-0.057153762239023534 +66489,332.4449999997339,-0.05715340359288167 +66490,332.4499999997339,-0.05715304501689606 +66491,332.4549999997339,-0.057152686511053104 +66492,332.4599999997339,-0.0571523280753392 +66493,332.4649999997339,-0.05715196970974074 +66494,332.4699999997339,-0.05715161141424413 +66495,332.4749999997339,-0.057151253188835766 +66496,332.4799999997339,-0.05715089503350207 +66497,332.4849999997339,-0.057150536948229434 +66498,332.48999999973387,-0.057150178933004274 +66499,332.49499999973386,-0.057149820987813016 +66500,332.49999999973386,-0.05714946311264207 +66501,332.50499999973385,-0.05714910530747784 +66502,332.50999999973385,-0.057148747572306764 +66503,332.51499999973385,-0.05714838990711526 +66504,332.51999999973384,-0.05714803231188975 +66505,332.52499999973384,-0.05714767478661666 +66506,332.52999999973383,-0.057147317331282435 +66507,332.5349999997338,-0.057146959945873495 +66508,332.5399999997338,-0.05714660263037626 +66509,332.5449999997338,-0.0571462453847772 +66510,332.5499999997338,-0.05714588820906273 +66511,332.5549999997338,-0.0571455311032193 +66512,332.5599999997338,-0.05714517406723336 +66513,332.5649999997338,-0.05714481710109135 +66514,332.5699999997338,-0.05714446020477972 +66515,332.5749999997338,-0.05714410337828491 +66516,332.5799999997338,-0.0571437466215934 +66517,332.5849999997338,-0.05714338993469161 +66518,332.5899999997338,-0.057143033317566025 +66519,332.5949999997338,-0.0571426767702031 +66520,332.59999999973377,-0.05714232029258929 +66521,332.60499999973376,-0.05714196388471108 +66522,332.60999999973376,-0.05714160754655492 +66523,332.61499999973375,-0.05714125127810729 +66524,332.61999999973375,-0.05714089507935465 +66525,332.62499999973375,-0.05714053895028349 +66526,332.62999999973374,-0.05714018289088027 +66527,332.63499999973374,-0.05713982690113149 +66528,332.63999999973373,-0.05713947098102362 +66529,332.6449999997337,-0.05713911513054315 +66530,332.6499999997337,-0.05713875934967655 +66531,332.6549999997337,-0.05713840363841032 +66532,332.6599999997337,-0.05713804799673096 +66533,332.6649999997337,-0.05713769242462496 +66534,332.6699999997337,-0.057137336922078806 +66535,332.6749999997337,-0.05713698148907901 +66536,332.6799999997337,-0.05713662612561206 +66537,332.6849999997337,-0.05713627083166446 +66538,332.6899999997337,-0.057135915607222726 +66539,332.6949999997337,-0.05713556045227335 +66540,332.6999999997337,-0.05713520536680287 +66541,332.7049999997337,-0.05713485035079777 +66542,332.70999999973367,-0.05713449540424456 +66543,332.71499999973366,-0.05713414052712979 +66544,332.71999999973366,-0.05713378571943996 +66545,332.72499999973365,-0.05713343098116158 +66546,332.72999999973365,-0.057133076312281206 +66547,332.73499999973365,-0.05713272171278534 +66548,332.73999999973364,-0.057132367182660515 +66549,332.74499999973364,-0.05713201272189326 +66550,332.74999999973363,-0.05713165833047012 +66551,332.7549999997336,-0.057131304008377626 +66552,332.7599999997336,-0.05713094975560232 +66553,332.7649999997336,-0.05713059557213073 +66554,332.7699999997336,-0.0571302414579494 +66555,332.7749999997336,-0.05712988741304489 +66556,332.7799999997336,-0.05712953343740372 +66557,332.7849999997336,-0.057129179531012486 +66558,332.7899999997336,-0.057128825693857695 +66559,332.7949999997336,-0.057128471925925926 +66560,332.7999999997336,-0.05712811822720373 +66561,332.8049999997336,-0.05712776459767767 +66562,332.8099999997336,-0.0571274110373343 +66563,332.8149999997336,-0.05712705754616019 +66564,332.81999999973357,-0.0571267041241419 +66565,332.82499999973356,-0.05712635077126601 +66566,332.82999999973356,-0.05712599748751907 +66567,332.83499999973355,-0.05712564427288769 +66568,332.83999999973355,-0.05712529112735841 +66569,332.84499999973355,-0.05712493805091783 +66570,332.84999999973354,-0.05712458504355253 +66571,332.85499999973354,-0.05712423210524908 +66572,332.85999999973353,-0.05712387923599407 +66573,332.8649999997335,-0.057123526435774084 +66574,332.8699999997335,-0.05712317370457572 +66575,332.8749999997335,-0.05712282104238557 +66576,332.8799999997335,-0.05712246844919022 +66577,332.8849999997335,-0.05712211592497627 +66578,332.8899999997335,-0.05712176346973032 +66579,332.8949999997335,-0.05712141108343899 +66580,332.8999999997335,-0.057121058766088854 +66581,332.9049999997335,-0.05712070651766652 +66582,332.9099999997335,-0.057120354338158624 +66583,332.9149999997335,-0.05712000222755175 +66584,332.9199999997335,-0.05711965018583253 +66585,332.9249999997335,-0.05711929821298756 +66586,332.92999999973347,-0.05711894630900348 +66587,332.93499999973346,-0.05711859447386689 +66588,332.93999999973346,-0.05711824270756444 +66589,332.94499999973345,-0.057117891010082716 +66590,332.94999999973345,-0.05711753938140838 +66591,332.95499999973345,-0.05711718782152803 +66592,332.95999999973344,-0.05711683633042833 +66593,332.96499999973344,-0.0571164849080959 +66594,332.96999999973343,-0.057116133554517376 +66595,332.9749999997334,-0.0571157822696794 +66596,332.9799999997334,-0.057115431053568616 +66597,332.9849999997334,-0.05711507990617166 +66598,332.9899999997334,-0.057114728827475175 +66599,332.9949999997334,-0.057114377817465825 +66600,332.9999999997334,-0.05711402687613024 +66601,333.0049999997334,-0.057113676003455086 +66602,333.0099999997334,-0.05711332519942701 +66603,333.0149999997334,-0.05711297446403269 +66604,333.0199999997334,-0.05711262379725877 +66605,333.0249999997334,-0.0571122731990919 +66606,333.0299999997334,-0.05711192266951876 +66607,333.0349999997334,-0.05711157220852603 +66608,333.03999999973337,-0.05711122181610036 +66609,333.04499999973336,-0.05711087149222841 +66610,333.04999999973336,-0.05711052123689689 +66611,333.05499999973335,-0.057110171050092445 +66612,333.05999999973335,-0.05710982093180178 +66613,333.06499999973335,-0.05710947088201155 +66614,333.06999999973334,-0.05710912090070845 +66615,333.07499999973334,-0.05710877098787917 +66616,333.07999999973333,-0.057108421143510384 +66617,333.0849999997333,-0.057108071367588796 +66618,333.0899999997333,-0.05710772166010109 +66619,333.0949999997333,-0.05710737202103397 +66620,333.0999999997333,-0.057107022450374134 +66621,333.1049999997333,-0.05710667294810827 +66622,333.1099999997333,-0.05710632351422308 +66623,333.1149999997333,-0.057105974148705274 +66624,333.1199999997333,-0.05710562485154157 +66625,333.1249999997333,-0.05710527562271865 +66626,333.1299999997333,-0.057104926462223246 +66627,333.1349999997333,-0.05710457737004206 +66628,333.1399999997333,-0.057104228346161835 +66629,333.1449999997333,-0.05710387939056925 +66630,333.14999999973327,-0.05710353050325105 +66631,333.15499999973326,-0.057103181684193954 +66632,333.15999999973326,-0.05710283293338469 +66633,333.16499999973325,-0.057102484250809965 +66634,333.16999999973325,-0.057102135636456525 +66635,333.17499999973325,-0.05710178709031111 +66636,333.17999999973324,-0.05710143861236044 +66637,333.18499999973324,-0.05710109020259125 +66638,333.18999999973323,-0.057100741860990296 +66639,333.1949999997332,-0.057100393587544304 +66640,333.1999999997332,-0.057100045382240026 +66641,333.2049999997332,-0.05709969724506421 +66642,333.2099999997332,-0.0570993491760036 +66643,333.2149999997332,-0.05709900117504495 +66644,333.2199999997332,-0.05709865324217501 +66645,333.2249999997332,-0.057098305377380525 +66646,333.2299999997332,-0.05709795758064827 +66647,333.2349999997332,-0.05709760985196499 +66648,333.2399999997332,-0.05709726219131746 +66649,333.2449999997332,-0.057096914598692435 +66650,333.2499999997332,-0.05709656707407669 +66651,333.2549999997332,-0.057096219617456985 +66652,333.25999999973317,-0.0570958722288201 +66653,333.26499999973316,-0.05709552490815281 +66654,333.26999999973316,-0.057095177655441885 +66655,333.27499999973315,-0.05709483047067411 +66656,333.27999999973315,-0.05709448335383625 +66657,333.28499999973315,-0.05709413630491511 +66658,333.28999999973314,-0.05709378932389747 +66659,333.29499999973314,-0.057093442410770114 +66660,333.29999999973313,-0.05709309556551982 +66661,333.3049999997331,-0.05709274878813339 +66662,333.3099999997331,-0.05709240207859763 +66663,333.3149999997331,-0.05709205543689932 +66664,333.3199999997331,-0.05709170886302526 +66665,333.3249999997331,-0.057091362356962265 +66666,333.3299999997331,-0.05709101591869714 +66667,333.3349999997331,-0.057090669548216684 +66668,333.3399999997331,-0.05709032324550769 +66669,333.3449999997331,-0.05708997701055699 +66670,333.3499999997331,-0.057089630843351405 +66671,333.3549999997331,-0.05708928474387773 +66672,333.3599999997331,-0.05708893871212278 +66673,333.3649999997331,-0.057088592748073395 +66674,333.36999999973307,-0.057088246851716394 +66675,333.37499999973306,-0.05708790102303858 +66676,333.37999999973306,-0.057087555262026815 +66677,333.38499999973305,-0.05708720956866789 +66678,333.38999999973305,-0.05708686394294867 +66679,333.39499999973305,-0.05708651838485596 +66680,333.39999999973304,-0.05708617289437663 +66681,333.40499999973304,-0.0570858274714975 +66682,333.40999999973303,-0.0570854821162054 +66683,333.414999999733,-0.05708513682848718 +66684,333.419999999733,-0.057084791608329695 +66685,333.424999999733,-0.057084446455719785 +66686,333.429999999733,-0.057084101370644305 +66687,333.434999999733,-0.05708375635309011 +66688,333.439999999733,-0.05708341140304406 +66689,333.444999999733,-0.05708306652049298 +66690,333.449999999733,-0.057082721705423764 +66691,333.454999999733,-0.057082376957823255 +66692,333.459999999733,-0.057082032277678336 +66693,333.464999999733,-0.05708168766497586 +66694,333.469999999733,-0.0570813431197027 +66695,333.474999999733,-0.05708099864184571 +66696,333.47999999973297,-0.057080654231391775 +66697,333.48499999973296,-0.057080309888327775 +66698,333.48999999973296,-0.057079965612640594 +66699,333.49499999973295,-0.0570796214043171 +66700,333.49999999973295,-0.057079277263344184 +66701,333.50499999973295,-0.05707893318970872 +66702,333.50999999973294,-0.057078589183397595 +66703,333.51499999973294,-0.057078245244397724 +66704,333.51999999973293,-0.057077901372695965 +66705,333.5249999997329,-0.05707755756827923 +66706,333.5299999997329,-0.05707721383113441 +66707,333.5349999997329,-0.05707687016124841 +66708,333.5399999997329,-0.05707652655860812 +66709,333.5449999997329,-0.05707618302320046 +66710,333.5499999997329,-0.05707583955501231 +66711,333.5549999997329,-0.057075496154030604 +66712,333.5599999997329,-0.05707515282024224 +66713,333.5649999997329,-0.05707480955363413 +66714,333.5699999997329,-0.05707446635419319 +66715,333.5749999997329,-0.05707412322190634 +66716,333.5799999997329,-0.05707378015676049 +66717,333.5849999997329,-0.05707343715874258 +66718,333.58999999973287,-0.05707309422783951 +66719,333.59499999973286,-0.057072751364038214 +66720,333.59999999973286,-0.05707240856732564 +66721,333.60499999973285,-0.0570720658376887 +66722,333.60999999973285,-0.05707172317511433 +66723,333.61499999973285,-0.05707138057958946 +66724,333.61999999973284,-0.057071038051101045 +66725,333.62499999973284,-0.057070695589636004 +66726,333.62999999973283,-0.0570703531951813 +66727,333.6349999997328,-0.057070010867723855 +66728,333.6399999997328,-0.057069668607250636 +66729,333.6449999997328,-0.05706932641374859 +66730,333.6499999997328,-0.057068984287204645 +66731,333.6549999997328,-0.05706864222760578 +66732,333.6599999997328,-0.057068300234938946 +66733,333.6649999997328,-0.0570679583091911 +66734,333.6699999997328,-0.05706761645034919 +66735,333.6749999997328,-0.0570672746584002 +66736,333.6799999997328,-0.05706693293333107 +66737,333.6849999997328,-0.0570665912751288 +66738,333.6899999997328,-0.057066249683780344 +66739,333.6949999997328,-0.05706590815927267 +66740,333.69999999973277,-0.05706556670159276 +66741,333.70499999973276,-0.05706522531072759 +66742,333.70999999973276,-0.057064883986664115 +66743,333.71499999973275,-0.05706454272938934 +66744,333.71999999973275,-0.05706420153889026 +66745,333.72499999973274,-0.05706386041515384 +66746,333.72999999973274,-0.05706351935816707 +66747,333.73499999973274,-0.057063178367916946 +66748,333.73999999973273,-0.05706283744439047 +66749,333.7449999997327,-0.05706249658757462 +66750,333.7499999997327,-0.0570621557974564 +66751,333.7549999997327,-0.057061815074022804 +66752,333.7599999997327,-0.05706147441726084 +66753,333.7649999997327,-0.05706113382715752 +66754,333.7699999997327,-0.05706079330369984 +66755,333.7749999997327,-0.05706045284687481 +66756,333.7799999997327,-0.05706011245666944 +66757,333.7849999997327,-0.05705977213307075 +66758,333.7899999997327,-0.05705943187606575 +66759,333.7949999997327,-0.05705909168564145 +66760,333.7999999997327,-0.05705875156178489 +66761,333.8049999997327,-0.05705841150448308 +66762,333.80999999973267,-0.05705807151372304 +66763,333.81499999973266,-0.05705773158949181 +66764,333.81999999973266,-0.05705739173177641 +66765,333.82499999973265,-0.05705705194056387 +66766,333.82999999973265,-0.05705671221584123 +66767,333.83499999973264,-0.057056372557595526 +66768,333.83999999973264,-0.0570560329658138 +66769,333.84499999973264,-0.057055693440483085 +66770,333.84999999973263,-0.05705535398159043 +66771,333.8549999997326,-0.05705501458912288 +66772,333.8599999997326,-0.05705467526306747 +66773,333.8649999997326,-0.05705433600341127 +66774,333.8699999997326,-0.05705399681014132 +66775,333.8749999997326,-0.05705365768324467 +66776,333.8799999997326,-0.05705331862270838 +66777,333.8849999997326,-0.05705297962851951 +66778,333.8899999997326,-0.057052640700665125 +66779,333.8949999997326,-0.057052301839132284 +66780,333.8999999997326,-0.05705196304390806 +66781,333.9049999997326,-0.057051624314979524 +66782,333.9099999997326,-0.057051285652333736 +66783,333.9149999997326,-0.057050947055957764 +66784,333.91999999973257,-0.0570506085258387 +66785,333.92499999973256,-0.057050270061963615 +66786,333.92999999973256,-0.05704993166431959 +66787,333.93499999973255,-0.057049593332893694 +66788,333.93999999973255,-0.05704925506767302 +66789,333.94499999973254,-0.057048916868644654 +66790,333.94999999973254,-0.05704857873579569 +66791,333.95499999973254,-0.057048240669113216 +66792,333.95999999973253,-0.05704790266858432 +66793,333.9649999997325,-0.05704756473419609 +66794,333.9699999997325,-0.05704722686593564 +66795,333.9749999997325,-0.057046889063790074 +66796,333.9799999997325,-0.057046551327746484 +66797,333.9849999997325,-0.057046213657791965 +66798,333.9899999997325,-0.05704587605391365 +66799,333.9949999997325,-0.057045538516098615 +66800,333.9999999997325,-0.05704520104433399 +66801,334.0049999997325,-0.0570448636386069 +66802,334.0099999997325,-0.05704452629890445 +66803,334.0149999997325,-0.05704418902521374 +66804,334.0199999997325,-0.05704385181752191 +66805,334.0249999997325,-0.05704351467581609 +66806,334.02999999973247,-0.057043177600083386 +66807,334.03499999973246,-0.05704284059031093 +66808,334.03999999973246,-0.05704250364648587 +66809,334.04499999973245,-0.05704216676859531 +66810,334.04999999973245,-0.057041829956626405 +66811,334.05499999973244,-0.05704149321056627 +66812,334.05999999973244,-0.05704115653040208 +66813,334.06499999973244,-0.05704081991612094 +66814,334.06999999973243,-0.05704048336771001 +66815,334.0749999997324,-0.057040146885156434 +66816,334.0799999997324,-0.05703981046844736 +66817,334.0849999997324,-0.057039474117569926 +66818,334.0899999997324,-0.0570391378325113 +66819,334.0949999997324,-0.05703880161325863 +66820,334.0999999997324,-0.05703846545979907 +66821,334.1049999997324,-0.0570381293721198 +66822,334.1099999997324,-0.05703779335020795 +66823,334.1149999997324,-0.05703745739405071 +66824,334.1199999997324,-0.05703712150363522 +66825,334.1249999997324,-0.05703678567894866 +66826,334.1299999997324,-0.057036449919978215 +66827,334.1349999997324,-0.05703611422671104 +66828,334.13999999973237,-0.05703577859913432 +66829,334.14499999973236,-0.05703544303723523 +66830,334.14999999973236,-0.05703510754100094 +66831,334.15499999973235,-0.057034772110418644 +66832,334.15999999973235,-0.057034436745475516 +66833,334.16499999973234,-0.057034101446158746 +66834,334.16999999973234,-0.05703376621245552 +66835,334.17499999973234,-0.05703343104435304 +66836,334.17999999973233,-0.05703309594183848 +66837,334.1849999997323,-0.05703276090489905 +66838,334.1899999997323,-0.05703242593352195 +66839,334.1949999997323,-0.05703209102769437 +66840,334.1999999997323,-0.05703175618740352 +66841,334.2049999997323,-0.05703142141263659 +66842,334.2099999997323,-0.05703108670338081 +66843,334.2149999997323,-0.057030752059623366 +66844,334.2199999997323,-0.05703041748135149 +66845,334.2249999997323,-0.05703008296855238 +66846,334.2299999997323,-0.05702974852121325 +66847,334.2349999997323,-0.05702941413932133 +66848,334.2399999997323,-0.057029079822863836 +66849,334.2449999997323,-0.057028745571827986 +66850,334.24999999973227,-0.057028411386201 +66851,334.25499999973226,-0.057028077265970124 +66852,334.25999999973226,-0.05702774321112257 +66853,334.26499999973225,-0.057027409221645585 +66854,334.26999999973225,-0.05702707529752638 +66855,334.27499999973224,-0.057026741438752214 +66856,334.27999999973224,-0.05702640764531031 +66857,334.28499999973224,-0.05702607391718792 +66858,334.28999999973223,-0.057025740254372265 +66859,334.2949999997322,-0.05702540665685062 +66860,334.2999999997322,-0.05702507312461022 +66861,334.3049999997322,-0.05702473965763831 +66862,334.3099999997322,-0.057024406255922144 +66863,334.3149999997322,-0.057024072919448984 +66864,334.3199999997322,-0.057023739648206076 +66865,334.3249999997322,-0.05702340644218067 +66866,334.3299999997322,-0.05702307330136004 +66867,334.3349999997322,-0.05702274022573146 +66868,334.3399999997322,-0.05702240721528217 +66869,334.3449999997322,-0.05702207426999945 +66870,334.3499999997322,-0.057021741389870574 +66871,334.3549999997322,-0.05702140857488281 +66872,334.35999999973217,-0.05702107582502343 +66873,334.36499999973216,-0.057020743140279724 +66874,334.36999999973216,-0.05702041052063895 +66875,334.37499999973215,-0.05702007796608839 +66876,334.37999999973215,-0.057019745476615355 +66877,334.38499999973214,-0.0570194130522071 +66878,334.38999999973214,-0.05701908069285092 +66879,334.39499999973214,-0.057018748398534116 +66880,334.39999999973213,-0.057018416169243975 +66881,334.4049999997321,-0.057018084004967794 +66882,334.4099999997321,-0.05701775190569286 +66883,334.4149999997321,-0.05701741987140649 +66884,334.4199999997321,-0.05701708790209597 +66885,334.4249999997321,-0.0570167559977486 +66886,334.4299999997321,-0.057016424158351696 +66887,334.4349999997321,-0.05701609238389257 +66888,334.4399999997321,-0.05701576067435852 +66889,334.4449999997321,-0.057015429029736865 +66890,334.4499999997321,-0.05701509745001492 +66891,334.4549999997321,-0.05701476593518 +66892,334.4599999997321,-0.05701443448521942 +66893,334.4649999997321,-0.057014103100120526 +66894,334.46999999973207,-0.05701377177987061 +66895,334.47499999973206,-0.05701344052445701 +66896,334.47999999973206,-0.057013109333867065 +66897,334.48499999973205,-0.05701277820808808 +66898,334.48999999973205,-0.05701244714710741 +66899,334.49499999973204,-0.057012116150912395 +66900,334.49999999973204,-0.05701178521949035 +66901,334.50499999973204,-0.057011454352828624 +66902,334.50999999973203,-0.05701112355091456 +66903,334.514999999732,-0.05701079281373551 +66904,334.519999999732,-0.057010462141278806 +66905,334.524999999732,-0.05701013153353181 +66906,334.529999999732,-0.05700980099048185 +66907,334.534999999732,-0.05700947051211631 +66908,334.539999999732,-0.05700914009842252 +66909,334.544999999732,-0.05700880974938785 +66910,334.549999999732,-0.05700847946499965 +66911,334.554999999732,-0.05700814924524529 +66912,334.559999999732,-0.057007819090112134 +66913,334.564999999732,-0.057007488999587554 +66914,334.569999999732,-0.057007158973658906 +66915,334.574999999732,-0.057006829012313576 +66916,334.57999999973197,-0.05700649911553893 +66917,334.58499999973196,-0.05700616928332234 +66918,334.58999999973196,-0.05700583951565118 +66919,334.59499999973195,-0.05700550981251283 +66920,334.59999999973195,-0.05700518017389467 +66921,334.60499999973194,-0.05700485059978411 +66922,334.60999999973194,-0.057004521090168514 +66923,334.61499999973194,-0.057004191645035264 +66924,334.61999999973193,-0.05700386226437176 +66925,334.6249999997319,-0.05700353294816542 +66926,334.6299999997319,-0.057003203696403604 +66927,334.6349999997319,-0.05700287450907372 +66928,334.6399999997319,-0.057002545386163166 +66929,334.6449999997319,-0.05700221632765935 +66930,334.6499999997319,-0.057001887333549675 +66931,334.6549999997319,-0.057001558403821546 +66932,334.6599999997319,-0.057001229538462386 +66933,334.6649999997319,-0.05700090073745957 +66934,334.6699999997319,-0.057000572000800546 +66935,334.6749999997319,-0.05700024332847272 +66936,334.6799999997319,-0.05699991472046351 +66937,334.6849999997319,-0.05699958617676033 +66938,334.68999999973187,-0.05699925769735061 +66939,334.69499999973186,-0.05699892928222177 +66940,334.69999999973186,-0.05699860093136124 +66941,334.70499999973185,-0.05699827264475644 +66942,334.70999999973185,-0.05699794442239481 +66943,334.71499999973184,-0.056997616264263785 +66944,334.71999999973184,-0.05699728817035079 +66945,334.72499999973184,-0.05699696014064327 +66946,334.72999999973183,-0.05699663217512867 +66947,334.7349999997318,-0.05699630427379442 +66948,334.7399999997318,-0.05699597643662799 +66949,334.7449999997318,-0.05699564866361679 +66950,334.7499999997318,-0.056995320954748296 +66951,334.7549999997318,-0.05699499331000995 +66952,334.7599999997318,-0.0569946657293892 +66953,334.7649999997318,-0.056994338212873516 +66954,334.7699999997318,-0.05699401076045034 +66955,334.7749999997318,-0.05699368337210714 +66956,334.7799999997318,-0.05699335604783139 +66957,334.7849999997318,-0.05699302878761053 +66958,334.7899999997318,-0.05699270159143204 +66959,334.7949999997318,-0.0569923744592834 +66960,334.79999999973177,-0.05699204739115207 +66961,334.80499999973176,-0.056991720387025525 +66962,334.80999999973176,-0.05699139344689124 +66963,334.81499999973175,-0.056991066570736694 +66964,334.81999999973175,-0.056990739758549354 +66965,334.82499999973174,-0.056990413010316716 +66966,334.82999999973174,-0.05699008632602627 +66967,334.83499999973174,-0.05698975970566549 +66968,334.83999999973173,-0.056989433149221884 +66969,334.8449999997317,-0.05698910665668292 +66970,334.8499999997317,-0.05698878022803611 +66971,334.8549999997317,-0.05698845386326893 +66972,334.8599999997317,-0.05698812756236889 +66973,334.8649999997317,-0.05698780132532349 +66974,334.8699999997317,-0.05698747515212024 +66975,334.8749999997317,-0.05698714904274664 +66976,334.8799999997317,-0.05698682299719019 +66977,334.8849999997317,-0.05698649701543839 +66978,334.8899999997317,-0.05698617109747878 +66979,334.8949999997317,-0.05698584524329884 +66980,334.8999999997317,-0.05698551945288611 +66981,334.9049999997317,-0.0569851937262281 +66982,334.90999999973167,-0.056984868063312336 +66983,334.91499999973166,-0.056984542464126334 +66984,334.91999999973166,-0.05698421692865762 +66985,334.92499999973165,-0.05698389145689372 +66986,334.92999999973165,-0.05698356604882217 +66987,334.93499999973164,-0.056983240704430484 +66988,334.93999999973164,-0.05698291542370622 +66989,334.94499999973164,-0.0569825902066369 +66990,334.94999999973163,-0.05698226505321006 +66991,334.9549999997316,-0.05698193996341324 +66992,334.9599999997316,-0.056981614937233985 +66993,334.9649999997316,-0.05698128997465984 +66994,334.9699999997316,-0.056980965075678354 +66995,334.9749999997316,-0.05698064024027707 +66996,334.9799999997316,-0.05698031546844354 +66997,334.9849999997316,-0.05697999076016532 +66998,334.9899999997316,-0.05697966611542996 +66999,334.9949999997316,-0.05697934153422503 +67000,334.9999999997316,-0.05697901701653808 +67001,335.0049999997316,-0.056978692562356686 +67002,335.0099999997316,-0.056978368171668396 +67003,335.0149999997316,-0.05697804384446077 +67004,335.01999999973157,-0.0569777195807214 +67005,335.02499999973156,-0.05697739538043784 +67006,335.02999999973156,-0.05697707124359768 +67007,335.03499999973155,-0.056976747170188476 +67008,335.03999999973155,-0.056976423160197825 +67009,335.04499999973154,-0.056976099213613296 +67010,335.04999999973154,-0.056975775330422467 +67011,335.05499999973154,-0.05697545151061293 +67012,335.05999999973153,-0.05697512775417227 +67013,335.0649999997315,-0.05697480406108807 +67014,335.0699999997315,-0.05697448043134793 +67015,335.0749999997315,-0.05697415686493943 +67016,335.0799999997315,-0.05697383336185018 +67017,335.0849999997315,-0.056973509922067775 +67018,335.0899999997315,-0.056973186545579806 +67019,335.0949999997315,-0.05697286323237388 +67020,335.0999999997315,-0.05697253998243761 +67021,335.1049999997315,-0.05697221679575858 +67022,335.1099999997315,-0.05697189367232443 +67023,335.1149999997315,-0.05697157061212275 +67024,335.1199999997315,-0.056971247615141156 +67025,335.1249999997315,-0.05697092468136725 +67026,335.12999999973147,-0.05697060181078868 +67027,335.13499999973146,-0.05697027900339305 +67028,335.13999999973146,-0.056969956259167974 +67029,335.14499999973145,-0.05696963357810108 +67030,335.14999999973145,-0.05696931096018 +67031,335.15499999973144,-0.05696898840539235 +67032,335.15999999973144,-0.056968665913725784 +67033,335.16499999973144,-0.056968343485167924 +67034,335.16999999973143,-0.05696802111970639 +67035,335.1749999997314,-0.05696769881732884 +67036,335.1799999997314,-0.056967376578022894 +67037,335.1849999997314,-0.05696705440177621 +67038,335.1899999997314,-0.056966732288576426 +67039,335.1949999997314,-0.05696641023841119 +67040,335.1999999997314,-0.05696608825126815 +67041,335.2049999997314,-0.056965766327134945 +67042,335.2099999997314,-0.05696544446599924 +67043,335.2149999997314,-0.05696512266784869 +67044,335.2199999997314,-0.05696480093267096 +67045,335.2249999997314,-0.056964479260453685 +67046,335.2299999997314,-0.05696415765118455 +67047,335.2349999997314,-0.0569638361048512 +67048,335.23999999973137,-0.05696351462144131 +67049,335.24499999973136,-0.056963193200942557 +67050,335.24999999973136,-0.056962871843342595 +67051,335.25499999973135,-0.05696255054862911 +67052,335.25999999973135,-0.05696222931678976 +67053,335.26499999973134,-0.05696190814781224 +67054,335.26999999973134,-0.05696158704168421 +67055,335.27499999973134,-0.05696126599839337 +67056,335.27999999973133,-0.0569609450179274 +67057,335.2849999997313,-0.05696062410027398 +67058,335.2899999997313,-0.05696030324542079 +67059,335.2949999997313,-0.05695998245335554 +67060,335.2999999997313,-0.0569596617240659 +67061,335.3049999997313,-0.056959341057539574 +67062,335.3099999997313,-0.05695902045376427 +67063,335.3149999997313,-0.056958699912727666 +67064,335.3199999997313,-0.056958379434417485 +67065,335.3249999997313,-0.056958059018821415 +67066,335.3299999997313,-0.05695773866592717 +67067,335.3349999997313,-0.05695741837572244 +67068,335.3399999997313,-0.05695709814819496 +67069,335.3449999997313,-0.05695677798333243 +67070,335.34999999973127,-0.05695645788112256 +67071,335.35499999973126,-0.056956137841553074 +67072,335.35999999973126,-0.05695581786461167 +67073,335.36499999973125,-0.0569554979502861 +67074,335.36999999973125,-0.05695517809856406 +67075,335.37499999973124,-0.056954858309433296 +67076,335.37999999973124,-0.05695453858288151 +67077,335.38499999973124,-0.05695421891889646 +67078,335.38999999973123,-0.05695389931746587 +67079,335.3949999997312,-0.056953579778577464 +67080,335.3999999997312,-0.05695326030221898 +67081,335.4049999997312,-0.05695294088837817 +67082,335.4099999997312,-0.056952621537042745 +67083,335.4149999997312,-0.05695230224820047 +67084,335.4199999997312,-0.056951983021839084 +67085,335.4249999997312,-0.056951663857946346 +67086,335.4299999997312,-0.05695134475650998 +67087,335.4349999997312,-0.05695102571751777 +67088,335.4399999997312,-0.056950706740957445 +67089,335.4449999997312,-0.056950387826816766 +67090,335.4499999997312,-0.0569500689750835 +67091,335.45499999973117,-0.056949750185745385 +67092,335.45999999973117,-0.0569494314587902 +67093,335.46499999973116,-0.056949112794205704 +67094,335.46999999973116,-0.05694879419197967 +67095,335.47499999973115,-0.05694847565209986 +67096,335.47999999973115,-0.056948157174554044 +67097,335.48499999973114,-0.056947838759329995 +67098,335.48999999973114,-0.05694752040641551 +67099,335.49499999973114,-0.05694720211579833 +67100,335.49999999973113,-0.05694688388746626 +67101,335.5049999997311,-0.05694656572140707 +67102,335.5099999997311,-0.05694624761760855 +67103,335.5149999997311,-0.05694592957605849 +67104,335.5199999997311,-0.05694561159674467 +67105,335.5249999997311,-0.05694529367965488 +67106,335.5299999997311,-0.05694497582477692 +67107,335.5349999997311,-0.05694465803209859 +67108,335.5399999997311,-0.056944340301607665 +67109,335.5449999997311,-0.056944022633291964 +67110,335.5499999997311,-0.05694370502713929 +67111,335.5549999997311,-0.05694338748313743 +67112,335.5599999997311,-0.056943070001274194 +67113,335.56499999973107,-0.05694275258153741 +67114,335.56999999973107,-0.05694243522391486 +67115,335.57499999973106,-0.05694211792839437 +67116,335.57999999973106,-0.05694180069496375 +67117,335.58499999973105,-0.056941483523610815 +67118,335.58999999973105,-0.05694116641432339 +67119,335.59499999973104,-0.0569408493670893 +67120,335.59999999973104,-0.056940532381896364 +67121,335.60499999973104,-0.05694021545873241 +67122,335.60999999973103,-0.056939898597585255 +67123,335.614999999731,-0.056939581798442745 +67124,335.619999999731,-0.0569392650612927 +67125,335.624999999731,-0.05693894838612296 +67126,335.629999999731,-0.056938631772921355 +67127,335.634999999731,-0.05693831522167572 +67128,335.639999999731,-0.056937998732373915 +67129,335.644999999731,-0.05693768230500376 +67130,335.649999999731,-0.056937365939553106 +67131,335.654999999731,-0.056937049636009804 +67132,335.659999999731,-0.05693673339436171 +67133,335.664999999731,-0.05693641721459666 +67134,335.669999999731,-0.05693610109670252 +67135,335.67499999973097,-0.056935785040667146 +67136,335.67999999973097,-0.05693546904647837 +67137,335.68499999973096,-0.056935153114124094 +67138,335.68999999973096,-0.056934837243592155 +67139,335.69499999973095,-0.05693452143487042 +67140,335.69999999973095,-0.05693420568794676 +67141,335.70499999973094,-0.05693389000280904 +67142,335.70999999973094,-0.056933574379445136 +67143,335.71499999973094,-0.05693325881784291 +67144,335.71999999973093,-0.05693294331799025 +67145,335.7249999997309,-0.05693262787987503 +67146,335.7299999997309,-0.05693231250348512 +67147,335.7349999997309,-0.056931997188808425 +67148,335.7399999997309,-0.0569316819358328 +67149,335.7449999997309,-0.05693136674454615 +67150,335.7499999997309,-0.05693105161493637 +67151,335.7549999997309,-0.056930736546991316 +67152,335.7599999997309,-0.056930421540698904 +67153,335.7649999997309,-0.05693010659604704 +67154,335.7699999997309,-0.056929791713023606 +67155,335.7749999997309,-0.0569294768916165 +67156,335.7799999997309,-0.05692916213181363 +67157,335.78499999973087,-0.05692884743360288 +67158,335.78999999973087,-0.056928532796972194 +67159,335.79499999973086,-0.056928218221909445 +67160,335.79999999973086,-0.05692790370840257 +67161,335.80499999973085,-0.05692758925643945 +67162,335.80999999973085,-0.05692727486600802 +67163,335.81499999973084,-0.05692696053709619 +67164,335.81999999973084,-0.056926646269691884 +67165,335.82499999973084,-0.056926332063783024 +67166,335.82999999973083,-0.05692601791935752 +67167,335.8349999997308,-0.0569257038364033 +67168,335.8399999997308,-0.0569253898149083 +67169,335.8449999997308,-0.05692507585486045 +67170,335.8499999997308,-0.05692476195624768 +67171,335.8549999997308,-0.05692444811905791 +67172,335.8599999997308,-0.056924134343279094 +67173,335.8649999997308,-0.05692382062889917 +67174,335.8699999997308,-0.05692350697590605 +67175,335.8749999997308,-0.05692319338428772 +67176,335.8799999997308,-0.05692287985403209 +67177,335.8849999997308,-0.05692256638512711 +67178,335.8899999997308,-0.05692225297756075 +67179,335.89499999973077,-0.05692193963132094 +67180,335.89999999973077,-0.056921626346395644 +67181,335.90499999973076,-0.0569213131227728 +67182,335.90999999973076,-0.05692099996044039 +67183,335.91499999973075,-0.05692068685938635 +67184,335.91999999973075,-0.05692037381959867 +67185,335.92499999973074,-0.056920060841065295 +67186,335.92999999973074,-0.056919747923774196 +67187,335.93499999973073,-0.05691943506771334 +67188,335.93999999973073,-0.05691912227287068 +67189,335.9449999997307,-0.05691880953923422 +67190,335.9499999997307,-0.056918496866791915 +67191,335.9549999997307,-0.056918184255531745 +67192,335.9599999997307,-0.056917871705441686 +67193,335.9649999997307,-0.05691755921650973 +67194,335.9699999997307,-0.05691724678872385 +67195,335.9749999997307,-0.05691693442207203 +67196,335.9799999997307,-0.05691662211654227 +67197,335.9849999997307,-0.05691630987212254 +67198,335.9899999997307,-0.056915997688800846 +67199,335.9949999997307,-0.05691568556656518 +67200,335.9999999997307,-0.05691537350540354 +67201,336.00499999973067,-0.05691506150530391 +67202,336.00999999973067,-0.056914749566254315 +67203,336.01499999973066,-0.056914437688242746 +67204,336.01999999973066,-0.0569141258712572 +67205,336.02499999973065,-0.05691381411528569 +67206,336.02999999973065,-0.056913502420316224 +67207,336.03499999973064,-0.05691319078633681 +67208,336.03999999973064,-0.056912879213335474 +67209,336.04499999973063,-0.05691256770130022 +67210,336.04999999973063,-0.05691225625021906 +67211,336.0549999997306,-0.05691194486008003 +67212,336.0599999997306,-0.05691163353087113 +67213,336.0649999997306,-0.0569113222625804 +67214,336.0699999997306,-0.05691101105519587 +67215,336.0749999997306,-0.05691069990870557 +67216,336.0799999997306,-0.056910388823097506 +67217,336.0849999997306,-0.056910077798359736 +67218,336.0899999997306,-0.056909766834480284 +67219,336.0949999997306,-0.05690945593144719 +67220,336.0999999997306,-0.056909145089248485 +67221,336.1049999997306,-0.05690883430787221 +67222,336.1099999997306,-0.05690852358730642 +67223,336.11499999973057,-0.056908212927539156 +67224,336.11999999973057,-0.05690790232855847 +67225,336.12499999973056,-0.0569075917903524 +67226,336.12999999973056,-0.05690728131290901 +67227,336.13499999973055,-0.05690697089621634 +67228,336.13999999973055,-0.05690666054026245 +67229,336.14499999973054,-0.05690635024503541 +67230,336.14999999973054,-0.056906040010523275 +67231,336.15499999973053,-0.05690572983671409 +67232,336.15999999973053,-0.05690541972359594 +67233,336.1649999997305,-0.056905109671156896 +67234,336.1699999997305,-0.056904799679385006 +67235,336.1749999997305,-0.05690448974826836 +67236,336.1799999997305,-0.056904179877795016 +67237,336.1849999997305,-0.05690387006795307 +67238,336.1899999997305,-0.05690356031873057 +67239,336.1949999997305,-0.05690325063011562 +67240,336.1999999997305,-0.0569029410020963 +67241,336.2049999997305,-0.05690263143466068 +67242,336.2099999997305,-0.05690232192779685 +67243,336.2149999997305,-0.0569020124814929 +67244,336.2199999997305,-0.05690170309573694 +67245,336.22499999973047,-0.05690139377051702 +67246,336.22999999973047,-0.05690108450582128 +67247,336.23499999973046,-0.05690077530163778 +67248,336.23999999973046,-0.05690046615795464 +67249,336.24499999973045,-0.05690015707475995 +67250,336.24999999973045,-0.05689984805204182 +67251,336.25499999973044,-0.05689953908978835 +67252,336.25999999973044,-0.056899230187987655 +67253,336.26499999973043,-0.05689892134662784 +67254,336.26999999973043,-0.056898612565697025 +67255,336.2749999997304,-0.05689830384518331 +67256,336.2799999997304,-0.05689799518507481 +67257,336.2849999997304,-0.05689768658535965 +67258,336.2899999997304,-0.05689737804602595 +67259,336.2949999997304,-0.056897069567061836 +67260,336.2999999997304,-0.056896761148455426 +67261,336.3049999997304,-0.05689645279019485 +67262,336.3099999997304,-0.05689614449226822 +67263,336.3149999997304,-0.05689583625466369 +67264,336.3199999997304,-0.05689552807736939 +67265,336.3249999997304,-0.05689521996037345 +67266,336.3299999997304,-0.05689491190366401 +67267,336.33499999973037,-0.05689460390722921 +67268,336.33999999973037,-0.05689429597105718 +67269,336.34499999973036,-0.056893988095136065 +67270,336.34999999973036,-0.05689368027945403 +67271,336.35499999973035,-0.0568933725239992 +67272,336.35999999973035,-0.05689306482875975 +67273,336.36499999973034,-0.056892757193723796 +67274,336.36999999973034,-0.05689244961887953 +67275,336.37499999973033,-0.05689214210421508 +67276,336.37999999973033,-0.05689183464971862 +67277,336.3849999997303,-0.05689152725537829 +67278,336.3899999997303,-0.05689121992118228 +67279,336.3949999997303,-0.056890912647118756 +67280,336.3999999997303,-0.05689060543317585 +67281,336.4049999997303,-0.056890298279341764 +67282,336.4099999997303,-0.05688999118560466 +67283,336.4149999997303,-0.05688968415195271 +67284,336.4199999997303,-0.05688937717837408 +67285,336.4249999997303,-0.056889070264856956 +67286,336.4299999997303,-0.05688876341138952 +67287,336.4349999997303,-0.05688845661795996 +67288,336.4399999997303,-0.05688814988455644 +67289,336.44499999973027,-0.05688784321116717 +67290,336.44999999973027,-0.056887536597780314 +67291,336.45499999973026,-0.056887230044384084 +67292,336.45999999973026,-0.05688692355096666 +67293,336.46499999973025,-0.05688661711751624 +67294,336.46999999973025,-0.05688631074402102 +67295,336.47499999973024,-0.056886004430469185 +67296,336.47999999973024,-0.056885698176848964 +67297,336.48499999973023,-0.056885391983148535 +67298,336.48999999973023,-0.056885085849356115 +67299,336.4949999997302,-0.05688477977545991 +67300,336.4999999997302,-0.056884473761448125 +67301,336.5049999997302,-0.05688416780730897 +67302,336.5099999997302,-0.05688386191303067 +67303,336.5149999997302,-0.05688355607860143 +67304,336.5199999997302,-0.05688325030400947 +67305,336.5249999997302,-0.05688294458924301 +67306,336.5299999997302,-0.05688263893429027 +67307,336.5349999997302,-0.05688233333913948 +67308,336.5399999997302,-0.05688202780377887 +67309,336.5449999997302,-0.05688172232819666 +67310,336.5499999997302,-0.05688141691238107 +67311,336.55499999973017,-0.05688111155632035 +67312,336.55999999973017,-0.05688080626000273 +67313,336.56499999973016,-0.05688050102341644 +67314,336.56999999973016,-0.05688019584654974 +67315,336.57499999973015,-0.056879890729390856 +67316,336.57999999973015,-0.05687958567192802 +67317,336.58499999973014,-0.056879280674149484 +67318,336.58999999973014,-0.0568789757360435 +67319,336.59499999973013,-0.056878670857598325 +67320,336.59999999973013,-0.0568783660388022 +67321,336.6049999997301,-0.05687806127964338 +67322,336.6099999997301,-0.056877756580110114 +67323,336.6149999997301,-0.056877451940190685 +67324,336.6199999997301,-0.05687714735987332 +67325,336.6249999997301,-0.05687684283914629 +67326,336.6299999997301,-0.05687653837799787 +67327,336.6349999997301,-0.05687623397641633 +67328,336.6399999997301,-0.05687592963438992 +67329,336.6449999997301,-0.05687562535190692 +67330,336.6499999997301,-0.0568753211289556 +67331,336.6549999997301,-0.05687501696552425 +67332,336.6599999997301,-0.05687471286160114 +67333,336.66499999973007,-0.056874408817174545 +67334,336.66999999973007,-0.056874104832232736 +67335,336.67499999973006,-0.056873800906764006 +67336,336.67999999973006,-0.056873497040756636 +67337,336.68499999973005,-0.056873193234198906 +67338,336.68999999973005,-0.05687288948707912 +67339,336.69499999973004,-0.056872585799385575 +67340,336.69999999973004,-0.05687228217110655 +67341,336.70499999973003,-0.056871978602230346 +67342,336.70999999973003,-0.05687167509274525 +67343,336.71499999973,-0.05687137164263959 +67344,336.71999999973,-0.056871068251901635 +67345,336.72499999973,-0.056870764920519706 +67346,336.72999999973,-0.056870461648482105 +67347,336.73499999973,-0.056870158435777154 +67348,336.73999999973,-0.05686985528239315 +67349,336.74499999973,-0.056869552188318406 +67350,336.74999999973,-0.056869249153541246 +67351,336.75499999973,-0.05686894617804998 +67352,336.75999999973,-0.05686864326183291 +67353,336.76499999973,-0.056868340404878384 +67354,336.76999999973,-0.056868037607174717 +67355,336.77499999972997,-0.05686773486871023 +67356,336.77999999972997,-0.05686743218947325 +67357,336.78499999972996,-0.056867129569452106 +67358,336.78999999972996,-0.05686682700863513 +67359,336.79499999972995,-0.05686652450701065 +67360,336.79999999972995,-0.056866222064567026 +67361,336.80499999972994,-0.056865919681292565 +67362,336.80999999972994,-0.05686561735717562 +67363,336.81499999972993,-0.05686531509220454 +67364,336.81999999972993,-0.056865012886367666 +67365,336.8249999997299,-0.05686471073965334 +67366,336.8299999997299,-0.056864408652049905 +67367,336.8349999997299,-0.05686410662354571 +67368,336.8399999997299,-0.056863804654129116 +67369,336.8449999997299,-0.05686350274378847 +67370,336.8499999997299,-0.05686320089251214 +67371,336.8549999997299,-0.05686289910028849 +67372,336.8599999997299,-0.05686259736710587 +67373,336.8649999997299,-0.056862295692952626 +67374,336.8699999997299,-0.05686199407781715 +67375,336.8749999997299,-0.05686169252168779 +67376,336.8799999997299,-0.05686139102455293 +67377,336.88499999972987,-0.05686108958640094 +67378,336.88999999972987,-0.05686078820722018 +67379,336.89499999972986,-0.05686048688699903 +67380,336.89999999972986,-0.056860185625725874 +67381,336.90499999972985,-0.056859884423389094 +67382,336.90999999972985,-0.05685958327997706 +67383,336.91499999972984,-0.05685928219547816 +67384,336.91999999972984,-0.05685898116988078 +67385,336.92499999972983,-0.056858680203173306 +67386,336.92999999972983,-0.05685837929534414 +67387,336.9349999997298,-0.05685807844638165 +67388,336.9399999997298,-0.05685777765627427 +67389,336.9449999997298,-0.056857476925010364 +67390,336.9499999997298,-0.05685717625257833 +67391,336.9549999997298,-0.05685687563896659 +67392,336.9599999997298,-0.05685657508416352 +67393,336.9649999997298,-0.05685627458815755 +67394,336.9699999997298,-0.05685597415093707 +67395,336.9749999997298,-0.05685567377249049 +67396,336.9799999997298,-0.05685537345280624 +67397,336.9849999997298,-0.05685507319187269 +67398,336.9899999997298,-0.056854772989678296 +67399,336.99499999972977,-0.056854472846211465 +67400,336.99999999972977,-0.05685417276146062 +67401,337.00499999972976,-0.05685387273541416 +67402,337.00999999972976,-0.05685357276806053 +67403,337.01499999972975,-0.05685327285938814 +67404,337.01999999972975,-0.05685297300938544 +67405,337.02499999972974,-0.056852673218040835 +67406,337.02999999972974,-0.05685237348534277 +67407,337.03499999972973,-0.05685207381127968 +67408,337.03999999972973,-0.05685177419584 +67409,337.0449999997297,-0.056851474639012155 +67410,337.0499999997297,-0.0568511751407846 +67411,337.0549999997297,-0.05685087570114578 +67412,337.0599999997297,-0.05685057632008413 +67413,337.0649999997297,-0.0568502769975881 +67414,337.0699999997297,-0.056849977733646126 +67415,337.0749999997297,-0.05684967852824667 +67416,337.0799999997297,-0.056849379381378184 +67417,337.0849999997297,-0.05684908029302913 +67418,337.0899999997297,-0.05684878126318796 +67419,337.0949999997297,-0.05684848229184311 +67420,337.0999999997297,-0.056848183378983064 +67421,337.10499999972967,-0.0568478845245963 +67422,337.10999999972967,-0.05684758572867125 +67423,337.11499999972966,-0.0568472869911964 +67424,337.11999999972966,-0.05684698831216021 +67425,337.12499999972965,-0.05684668969155115 +67426,337.12999999972965,-0.0568463911293577 +67427,337.13499999972964,-0.056846092625568334 +67428,337.13999999972964,-0.05684579418017154 +67429,337.14499999972963,-0.05684549579315578 +67430,337.14999999972963,-0.05684519746450954 +67431,337.1549999997296,-0.05684489919422132 +67432,337.1599999997296,-0.05684460098227957 +67433,337.1649999997296,-0.05684430282867281 +67434,337.1699999997296,-0.05684400473338951 +67435,337.1749999997296,-0.05684370669641818 +67436,337.1799999997296,-0.05684340871774731 +67437,337.1849999997296,-0.056843110797365384 +67438,337.1899999997296,-0.05684281293526091 +67439,337.1949999997296,-0.05684251513142239 +67440,337.1999999997296,-0.05684221738583831 +67441,337.2049999997296,-0.056841919698497195 +67442,337.2099999997296,-0.05684162206938754 +67443,337.21499999972957,-0.05684132449849785 +67444,337.21999999972957,-0.05684102698581665 +67445,337.22499999972956,-0.05684072953133244 +67446,337.22999999972956,-0.05684043213503375 +67447,337.23499999972955,-0.05684013479690909 +67448,337.23999999972955,-0.05683983751694696 +67449,337.24499999972954,-0.05683954029513589 +67450,337.24999999972954,-0.05683924313146441 +67451,337.25499999972953,-0.056838946025921044 +67452,337.25999999972953,-0.05683864897849433 +67453,337.2649999997295,-0.05683835198917278 +67454,337.2699999997295,-0.05683805505794493 +67455,337.2749999997295,-0.05683775818479932 +67456,337.2799999997295,-0.056837461369724465 +67457,337.2849999997295,-0.056837164612708935 +67458,337.2899999997295,-0.05683686791374125 +67459,337.2949999997295,-0.05683657127280994 +67460,337.2999999997295,-0.056836274689903564 +67461,337.3049999997295,-0.056835978165010674 +67462,337.3099999997295,-0.056835681698119804 +67463,337.3149999997295,-0.056835385289219505 +67464,337.3199999997295,-0.05683508893829834 +67465,337.32499999972947,-0.05683479264534485 +67466,337.32999999972947,-0.0568344964103476 +67467,337.33499999972946,-0.056834200233295135 +67468,337.33999999972946,-0.056833904114176034 +67469,337.34499999972945,-0.056833608052978844 +67470,337.34999999972945,-0.05683331204969214 +67471,337.35499999972944,-0.05683301610430449 +67472,337.35999999972944,-0.056832720216804446 +67473,337.36499999972943,-0.05683242438718059 +67474,337.36999999972943,-0.056832128615421494 +67475,337.3749999997294,-0.05683183290151574 +67476,337.3799999997294,-0.05683153724545188 +67477,337.3849999997294,-0.05683124164721852 +67478,337.3899999997294,-0.05683094610680423 +67479,337.3949999997294,-0.056830650624197586 +67480,337.3999999997294,-0.056830355199387186 +67481,337.4049999997294,-0.05683005983236161 +67482,337.4099999997294,-0.05682976452310945 +67483,337.4149999997294,-0.05682946927161929 +67484,337.4199999997294,-0.05682917407787973 +67485,337.4249999997294,-0.05682887894187935 +67486,337.4299999997294,-0.056828583863606764 +67487,337.43499999972937,-0.05682828884305057 +67488,337.43999999972937,-0.05682799388019936 +67489,337.44499999972936,-0.056827698975041745 +67490,337.44999999972936,-0.056827404127566324 +67491,337.45499999972935,-0.056827109337761715 +67492,337.45999999972935,-0.05682681460561652 +67493,337.46499999972934,-0.056826519931119354 +67494,337.46999999972934,-0.05682622531425882 +67495,337.47499999972933,-0.05682593075502355 +67496,337.47999999972933,-0.05682563625340215 +67497,337.4849999997293,-0.05682534180938325 +67498,337.4899999997293,-0.05682504742295545 +67499,337.4949999997293,-0.056824753094107394 +67500,337.4999999997293,-0.05682445882282771 +67501,337.5049999997293,-0.05682416460910501 +67502,337.5099999997293,-0.05682387045292794 +67503,337.5149999997293,-0.05682357635428512 +67504,337.5199999997293,-0.0568232823131652 +67505,337.5249999997293,-0.056822988329556796 +67506,337.5299999997293,-0.05682269440344855 +67507,337.5349999997293,-0.056822400534829114 +67508,337.5399999997293,-0.05682210672368713 +67509,337.54499999972927,-0.05682181297001122 +67510,337.54999999972927,-0.05682151927379006 +67511,337.55499999972926,-0.05682122563501228 +67512,337.55999999972926,-0.05682093205366654 +67513,337.56499999972925,-0.056820638529741486 +67514,337.56999999972925,-0.05682034506322577 +67515,337.57499999972924,-0.056820051654108056 +67516,337.57999999972924,-0.056819758302376996 +67517,337.58499999972923,-0.05681946500802126 +67518,337.58999999972923,-0.056819171771029506 +67519,337.5949999997292,-0.05681887859139039 +67520,337.5999999997292,-0.05681858546909258 +67521,337.6049999997292,-0.05681829240412476 +67522,337.6099999997292,-0.0568179993964756 +67523,337.6149999997292,-0.05681770644613376 +67524,337.6199999997292,-0.05681741355308792 +67525,337.6249999997292,-0.05681712071732676 +67526,337.6299999997292,-0.05681682793883896 +67527,337.6349999997292,-0.05681653521761319 +67528,337.6399999997292,-0.05681624255363815 +67529,337.6449999997292,-0.056815949946902505 +67530,337.6499999997292,-0.056815657397394956 +67531,337.65499999972917,-0.05681536490510421 +67532,337.65999999972917,-0.05681507247001892 +67533,337.66499999972916,-0.05681478009212781 +67534,337.66999999972916,-0.05681448777141955 +67535,337.67499999972915,-0.05681419550788286 +67536,337.67999999972915,-0.056813903301506416 +67537,337.68499999972914,-0.05681361115227894 +67538,337.68999999972914,-0.05681331906018913 +67539,337.69499999972913,-0.05681302702522569 +67540,337.69999999972913,-0.056812735047377334 +67541,337.7049999997291,-0.05681244312663276 +67542,337.7099999997291,-0.05681215126298069 +67543,337.7149999997291,-0.05681185945640983 +67544,337.7199999997291,-0.05681156770690891 +67545,337.7249999997291,-0.056811276014466616 +67546,337.7299999997291,-0.0568109843790717 +67547,337.7349999997291,-0.056810692800712874 +67548,337.7399999997291,-0.056810401279378864 +67549,337.7449999997291,-0.0568101098150584 +67550,337.7499999997291,-0.056809818407740194 +67551,337.7549999997291,-0.05680952705741298 +67552,337.7599999997291,-0.05680923576406549 +67553,337.76499999972907,-0.05680894452768648 +67554,337.76999999972907,-0.056808653348264654 +67555,337.77499999972906,-0.05680836222578877 +67556,337.77999999972906,-0.05680807116024757 +67557,337.78499999972905,-0.05680778015162979 +67558,337.78999999972905,-0.05680748919992416 +67559,337.79499999972904,-0.05680719830511946 +67560,337.79999999972904,-0.05680690746720441 +67561,337.80499999972903,-0.05680661668616777 +67562,337.80999999972903,-0.0568063259619983 +67563,337.814999999729,-0.05680603529468473 +67564,337.819999999729,-0.05680574468421584 +67565,337.824999999729,-0.05680545413058037 +67566,337.829999999729,-0.05680516363376711 +67567,337.834999999729,-0.056804873193764795 +67568,337.839999999729,-0.05680458281056219 +67569,337.844999999729,-0.05680429248414808 +67570,337.849999999729,-0.056804002214511214 +67571,337.854999999729,-0.05680371200164038 +67572,337.859999999729,-0.056803421845524345 +67573,337.864999999729,-0.056803131746151876 +67574,337.869999999729,-0.05680284170351176 +67575,337.87499999972897,-0.05680255171759278 +67576,337.87999999972897,-0.056802261788383705 +67577,337.88499999972896,-0.05680197191587331 +67578,337.88999999972896,-0.0568016821000504 +67579,337.89499999972895,-0.05680139234090375 +67580,337.89999999972895,-0.056801102638422155 +67581,337.90499999972894,-0.05680081299259439 +67582,337.90999999972894,-0.05680052340340928 +67583,337.91499999972893,-0.05680023387085558 +67584,337.91999999972893,-0.05679994439492211 +67585,337.9249999997289,-0.05679965497559768 +67586,337.9299999997289,-0.05679936561287106 +67587,337.9349999997289,-0.05679907630673108 +67588,337.9399999997289,-0.05679878705716654 +67589,337.9449999997289,-0.056798497864166235 +67590,337.9499999997289,-0.056798208727718985 +67591,337.9549999997289,-0.056797919647813604 +67592,337.9599999997289,-0.056797630624438884 +67593,337.9649999997289,-0.05679734165758366 +67594,337.9699999997289,-0.05679705274723675 +67595,337.9749999997289,-0.05679676389338697 +67596,337.9799999997289,-0.05679647509602313 +67597,337.98499999972887,-0.056796186355134066 +67598,337.98999999972887,-0.0567958976707086 +67599,337.99499999972886,-0.05679560904273555 +67600,337.99999999972886,-0.05679532047120375 +67601,338.00499999972885,-0.056795031956102054 +67602,338.00999999972885,-0.05679474349741926 +67603,338.01499999972884,-0.05679445509514423 +67604,338.01999999972884,-0.05679416674926579 +67605,338.02499999972883,-0.056793878459772774 +67606,338.02999999972883,-0.056793590226654034 +67607,338.0349999997288,-0.0567933020498984 +67608,338.0399999997288,-0.056793013929494734 +67609,338.0449999997288,-0.056792725865431874 +67610,338.0499999997288,-0.05679243785769868 +67611,338.0549999997288,-0.056792149906283985 +67612,338.0599999997288,-0.05679186201117665 +67613,338.0649999997288,-0.05679157417236554 +67614,338.0699999997288,-0.05679128638983951 +67615,338.0749999997288,-0.056790998663587416 +67616,338.0799999997288,-0.056790710993598115 +67617,338.0849999997288,-0.05679042337986047 +67618,338.0899999997288,-0.056790135822363356 +67619,338.09499999972877,-0.05678984832109563 +67620,338.09999999972877,-0.05678956087604617 +67621,338.10499999972876,-0.05678927348720384 +67622,338.10999999972876,-0.05678898615455752 +67623,338.11499999972875,-0.05678869887809609 +67624,338.11999999972875,-0.05678841165780841 +67625,338.12499999972874,-0.05678812449368339 +67626,338.12999999972874,-0.05678783738570988 +67627,338.13499999972873,-0.05678755033387678 +67628,338.13999999972873,-0.056787263338172966 +67629,338.1449999997287,-0.056786976398587326 +67630,338.1499999997287,-0.05678668951510876 +67631,338.1549999997287,-0.05678640268772617 +67632,338.1599999997287,-0.05678611591642842 +67633,338.1649999997287,-0.056785829201204424 +67634,338.1699999997287,-0.05678554254204308 +67635,338.1749999997287,-0.05678525593893328 +67636,338.1799999997287,-0.05678496939186393 +67637,338.1849999997287,-0.056784682900823925 +67638,338.1899999997287,-0.05678439646580219 +67639,338.1949999997287,-0.056784110086787624 +67640,338.1999999997287,-0.05678382376376912 +67641,338.20499999972867,-0.05678353749673562 +67642,338.20999999972867,-0.05678325128567602 +67643,338.21499999972866,-0.05678296513057923 +67644,338.21999999972866,-0.05678267903143417 +67645,338.22499999972865,-0.05678239298822978 +67646,338.22999999972865,-0.05678210700095495 +67647,338.23499999972864,-0.056781821069598636 +67648,338.23999999972864,-0.05678153519414974 +67649,338.24499999972863,-0.05678124937459721 +67650,338.24999999972863,-0.05678096361092996 +67651,338.2549999997286,-0.05678067790313692 +67652,338.2599999997286,-0.05678039225120703 +67653,338.2649999997286,-0.05678010665512923 +67654,338.2699999997286,-0.05677982111489246 +67655,338.2749999997286,-0.05677953563048564 +67656,338.2799999997286,-0.056779250201897724 +67657,338.2849999997286,-0.05677896482911766 +67658,338.2899999997286,-0.05677867951213439 +67659,338.2949999997286,-0.05677839425093686 +67660,338.2999999997286,-0.056778109045514016 +67661,338.3049999997286,-0.056777823895854826 +67662,338.3099999997286,-0.056777538801948225 +67663,338.31499999972857,-0.05677725376378318 +67664,338.31999999972857,-0.05677696878134864 +67665,338.32499999972856,-0.05677668385463359 +67666,338.32999999972856,-0.05677639898362696 +67667,338.33499999972855,-0.05677611416831774 +67668,338.33999999972855,-0.05677582940869486 +67669,338.34499999972854,-0.05677554470474732 +67670,338.34999999972854,-0.05677526005646408 +67671,338.35499999972853,-0.05677497546383411 +67672,338.35999999972853,-0.056774690926846394 +67673,338.3649999997285,-0.05677440644548989 +67674,338.3699999997285,-0.05677412201975358 +67675,338.3749999997285,-0.056773837649626444 +67676,338.3799999997285,-0.056773553335097475 +67677,338.3849999997285,-0.056773269076155645 +67678,338.3899999997285,-0.05677298487278995 +67679,338.3949999997285,-0.05677270072498936 +67680,338.3999999997285,-0.05677241663274289 +67681,338.4049999997285,-0.05677213259603951 +67682,338.4099999997285,-0.05677184861486823 +67683,338.4149999997285,-0.05677156468921804 +67684,338.4199999997285,-0.05677128081907793 +67685,338.42499999972847,-0.05677099700443689 +67686,338.42999999972847,-0.056770713245283946 +67687,338.43499999972846,-0.056770429541608096 +67688,338.43999999972846,-0.056770145893398336 +67689,338.44499999972845,-0.05676986230064368 +67690,338.44999999972845,-0.05676957876333315 +67691,338.45499999972844,-0.056769295281455724 +67692,338.45999999972844,-0.05676901185500045 +67693,338.46499999972843,-0.05676872848395631 +67694,338.46999999972843,-0.05676844516831236 +67695,338.4749999997284,-0.05676816190805758 +67696,338.4799999997284,-0.05676787870318103 +67697,338.4849999997284,-0.056767595553671696 +67698,338.4899999997284,-0.05676731245951864 +67699,338.4949999997284,-0.05676702942071086 +67700,338.4999999997284,-0.056766746437237406 +67701,338.5049999997284,-0.05676646350908729 +67702,338.5099999997284,-0.05676618063624956 +67703,338.5149999997284,-0.056765897818713246 +67704,338.5199999997284,-0.056765615056467385 +67705,338.5249999997284,-0.05676533234950103 +67706,338.5299999997284,-0.056765049697803195 +67707,338.53499999972837,-0.05676476710136295 +67708,338.53999999972837,-0.056764484560169325 +67709,338.54499999972836,-0.05676420207421137 +67710,338.54999999972836,-0.056763919643478135 +67711,338.55499999972835,-0.056763637267958675 +67712,338.55999999972835,-0.05676335494764203 +67713,338.56499999972834,-0.05676307268251728 +67714,338.56999999972834,-0.05676279047257346 +67715,338.57499999972833,-0.05676250831779963 +67716,338.57999999972833,-0.056762226218184865 +67717,338.5849999997283,-0.05676194417371822 +67718,338.5899999997283,-0.05676166218438876 +67719,338.5949999997283,-0.05676138025018555 +67720,338.5999999997283,-0.056761098371097676 +67721,338.6049999997283,-0.05676081654711419 +67722,338.6099999997283,-0.05676053477822415 +67723,338.6149999997283,-0.05676025306441668 +67724,338.6199999997283,-0.0567599714056808 +67725,338.6249999997283,-0.056759689802005624 +67726,338.6299999997283,-0.05675940825338023 +67727,338.6349999997283,-0.0567591267597937 +67728,338.6399999997283,-0.05675884532123512 +67729,338.64499999972827,-0.05675856393769357 +67730,338.64999999972827,-0.056758282609158134 +67731,338.65499999972826,-0.056758001335617904 +67732,338.65999999972826,-0.056757720117062 +67733,338.66499999972825,-0.05675743895347948 +67734,338.66999999972825,-0.05675715784485945 +67735,338.67499999972824,-0.05675687679119102 +67736,338.67999999972824,-0.05675659579246329 +67737,338.68499999972823,-0.056756314848665355 +67738,338.68999999972823,-0.056756033959786324 +67739,338.6949999997282,-0.0567557531258153 +67740,338.6999999997282,-0.0567554723467414 +67741,338.7049999997282,-0.05675519162255373 +67742,338.7099999997282,-0.056754910953241394 +67743,338.7149999997282,-0.05675463033879351 +67744,338.7199999997282,-0.05675434977919919 +67745,338.7249999997282,-0.05675406927444757 +67746,338.7299999997282,-0.05675378882452776 +67747,338.7349999997282,-0.05675350842942889 +67748,338.7399999997282,-0.056753228089140066 +67749,338.7449999997282,-0.05675294780365043 +67750,338.7499999997282,-0.05675266757294911 +67751,338.75499999972817,-0.056752387397025233 +67752,338.75999999972817,-0.056752107275867915 +67753,338.76499999972816,-0.05675182720946632 +67754,338.76999999972816,-0.05675154719780956 +67755,338.77499999972815,-0.05675126724088679 +67756,338.77999999972815,-0.056750987338687144 +67757,338.78499999972814,-0.05675070749119975 +67758,338.78999999972814,-0.05675042769841378 +67759,338.79499999972813,-0.056750147960318346 +67760,338.79999999972813,-0.05674986827690262 +67761,338.8049999997281,-0.056749588648155755 +67762,338.8099999997281,-0.05674930907406689 +67763,338.8149999997281,-0.056749029554625186 +67764,338.8199999997281,-0.05674875008981978 +67765,338.8249999997281,-0.056748470679639854 +67766,338.8299999997281,-0.056748191324074555 +67767,338.8349999997281,-0.05674791202311306 +67768,338.8399999997281,-0.05674763277674451 +67769,338.8449999997281,-0.05674735358495809 +67770,338.8499999997281,-0.05674707444774296 +67771,338.8549999997281,-0.05674679536508829 +67772,338.8599999997281,-0.05674651633698325 +67773,338.86499999972807,-0.05674623736341701 +67774,338.86999999972807,-0.05674595844437874 +67775,338.87499999972806,-0.056745679579857634 +67776,338.87999999972806,-0.05674540076984288 +67777,338.88499999972805,-0.05674512201432363 +67778,338.88999999972805,-0.056744843313289085 +67779,338.89499999972804,-0.05674456466672843 +67780,338.89999999972804,-0.05674428607463082 +67781,338.90499999972803,-0.0567440075369855 +67782,338.90999999972803,-0.056743729053781625 +67783,338.914999999728,-0.05674345062500839 +67784,338.919999999728,-0.056743172250655005 +67785,338.924999999728,-0.05674289393071065 +67786,338.929999999728,-0.05674261566516454 +67787,338.934999999728,-0.05674233745400585 +67788,338.939999999728,-0.056742059297223806 +67789,338.944999999728,-0.05674178119480762 +67790,338.949999999728,-0.05674150314674647 +67791,338.954999999728,-0.05674122515302959 +67792,338.959999999728,-0.056740947213646184 +67793,338.964999999728,-0.05674066932858546 +67794,338.969999999728,-0.05674039149783663 +67795,338.97499999972797,-0.05674011372138891 +67796,338.97999999972797,-0.05673983599923153 +67797,338.98499999972796,-0.056739558331353704 +67798,338.98999999972796,-0.05673928071774465 +67799,338.99499999972795,-0.0567390031583936 +67800,338.99999999972795,-0.05673872565328978 +67801,339.00499999972794,-0.0567384482024224 +67802,339.00999999972794,-0.056738170805780724 +67803,339.01499999972793,-0.05673789346335396 +67804,339.01999999972793,-0.05673761617513134 +67805,339.0249999997279,-0.05673733894110211 +67806,339.0299999997279,-0.0567370617612555 +67807,339.0349999997279,-0.05673678463558076 +67808,339.0399999997279,-0.056736507564067125 +67809,339.0449999997279,-0.056736230546703854 +67810,339.0499999997279,-0.056735953583480166 +67811,339.0549999997279,-0.05673567667438533 +67812,339.0599999997279,-0.05673539981940859 +67813,339.0649999997279,-0.05673512301853918 +67814,339.0699999997279,-0.056734846271766386 +67815,339.0749999997279,-0.056734569579079436 +67816,339.0799999997279,-0.0567342929404676 +67817,339.08499999972787,-0.05673401635592013 +67818,339.08999999972787,-0.0567337398254263 +67819,339.09499999972786,-0.05673346334897537 +67820,339.09999999972786,-0.056733186926556586 +67821,339.10499999972785,-0.05673291055815923 +67822,339.10999999972785,-0.05673263424377258 +67823,339.11499999972784,-0.0567323579833859 +67824,339.11999999972784,-0.05673208177698845 +67825,339.12499999972783,-0.05673180562456953 +67826,339.12999999972783,-0.056731529526118395 +67827,339.1349999997278,-0.05673125348162434 +67828,339.1399999997278,-0.05673097749107663 +67829,339.1449999997278,-0.05673070155446456 +67830,339.1499999997278,-0.05673042567177741 +67831,339.1549999997278,-0.05673014984300447 +67832,339.1599999997278,-0.05672987406813502 +67833,339.1649999997278,-0.05672959834715836 +67834,339.1699999997278,-0.056729322680063775 +67835,339.1749999997278,-0.056729047066840566 +67836,339.1799999997278,-0.056728771507478015 +67837,339.1849999997278,-0.05672849600196544 +67838,339.1899999997278,-0.056728220550292134 +67839,339.19499999972777,-0.05672794515244739 +67840,339.19999999972777,-0.05672766980842053 +67841,339.20499999972776,-0.05672739451820084 +67842,339.20999999972776,-0.05672711928177765 +67843,339.21499999972775,-0.05672684409914025 +67844,339.21999999972775,-0.05672656897027797 +67845,339.22499999972774,-0.056726293895180094 +67846,339.22999999972774,-0.05672601887383597 +67847,339.23499999972773,-0.056725743906234895 +67848,339.23999999972773,-0.056725468992366204 +67849,339.2449999997277,-0.0567251941322192 +67850,339.2499999997277,-0.05672491932578322 +67851,339.2549999997277,-0.056724644573047586 +67852,339.2599999997277,-0.056724369874001625 +67853,339.2649999997277,-0.05672409522863467 +67854,339.2699999997277,-0.05672382063693604 +67855,339.2749999997277,-0.056723546098895086 +67856,339.2799999997277,-0.05672327161450113 +67857,339.2849999997277,-0.05672299718374352 +67858,339.2899999997277,-0.056722722806611586 +67859,339.2949999997277,-0.05672244848309467 +67860,339.2999999997277,-0.05672217421318212 +67861,339.30499999972767,-0.05672189999686327 +67862,339.30999999972767,-0.05672162583412748 +67863,339.31499999972766,-0.05672135172496408 +67864,339.31999999972766,-0.05672107766936244 +67865,339.32499999972765,-0.056720803667311914 +67866,339.32999999972765,-0.05672052971880183 +67867,339.33499999972764,-0.056720255823821564 +67868,339.33999999972764,-0.056719981982360466 +67869,339.34499999972763,-0.056719708194407914 +67870,339.34999999972763,-0.05671943445995325 +67871,339.3549999997276,-0.05671916077898585 +67872,339.3599999997276,-0.05671888715149508 +67873,339.3649999997276,-0.05671861357747031 +67874,339.3699999997276,-0.056718340056900886 +67875,339.3749999997276,-0.0567180665897762 +67876,339.3799999997276,-0.05671779317608562 +67877,339.3849999997276,-0.05671751981581853 +67878,339.3899999997276,-0.05671724650896431 +67879,339.3949999997276,-0.05671697325551232 +67880,339.3999999997276,-0.05671670005545195 +67881,339.4049999997276,-0.05671642690877259 +67882,339.4099999997276,-0.056716153815463625 +67883,339.41499999972757,-0.056715880775514434 +67884,339.41999999972757,-0.056715607788914414 +67885,339.42499999972756,-0.05671533485565296 +67886,339.42999999972756,-0.056715061975719454 +67887,339.43499999972755,-0.05671478914910329 +67888,339.43999999972755,-0.05671451637579387 +67889,339.44499999972754,-0.05671424365578058 +67890,339.44999999972754,-0.05671397098905284 +67891,339.45499999972753,-0.056713698375600044 +67892,339.45999999972753,-0.0567134258154116 +67893,339.4649999997275,-0.056713153308476906 +67894,339.4699999997275,-0.05671288085478538 +67895,339.4749999997275,-0.05671260845432643 +67896,339.4799999997275,-0.05671233610708946 +67897,339.4849999997275,-0.056712063813063894 +67898,339.4899999997275,-0.056711791572239136 +67899,339.4949999997275,-0.056711519384604614 +67900,339.4999999997275,-0.056711247250149754 +67901,339.5049999997275,-0.05671097516886397 +67902,339.5099999997275,-0.05671070314073669 +67903,339.5149999997275,-0.056710431165757316 +67904,339.5199999997275,-0.0567101592439153 +67905,339.52499999972747,-0.05670988737520007 +67906,339.52999999972747,-0.05670961555960105 +67907,339.53499999972746,-0.05670934379710768 +67908,339.53999999972746,-0.05670907208770939 +67909,339.54499999972745,-0.05670880043139562 +67910,339.54999999972745,-0.05670852882815581 +67911,339.55499999972744,-0.05670825727797939 +67912,339.55999999972744,-0.056707985780855806 +67913,339.56499999972743,-0.05670771433677452 +67914,339.56999999972743,-0.05670744294572497 +67915,339.5749999997274,-0.056707171607696595 +67916,339.5799999997274,-0.056706900322678847 +67917,339.5849999997274,-0.056706629090661195 +67918,339.5899999997274,-0.05670635791163308 +67919,339.5949999997274,-0.05670608678558395 +67920,339.5999999997274,-0.056705815712503285 +67921,339.6049999997274,-0.05670554469238052 +67922,339.6099999997274,-0.05670527372520513 +67923,339.6149999997274,-0.056705002810966576 +67924,339.6199999997274,-0.05670473194965433 +67925,339.6249999997274,-0.05670446114125785 +67926,339.6299999997274,-0.05670419038576662 +67927,339.63499999972737,-0.0567039196831701 +67928,339.63999999972737,-0.056703649033457766 +67929,339.64499999972736,-0.056703378436619094 +67930,339.64999999972736,-0.05670310789264356 +67931,339.65499999972735,-0.05670283740152064 +67932,339.65999999972735,-0.05670256696323983 +67933,339.66499999972734,-0.056702296577790606 +67934,339.66999999972734,-0.05670202624516244 +67935,339.67499999972733,-0.05670175596534483 +67936,339.67999999972733,-0.05670148573832726 +67937,339.6849999997273,-0.05670121556409923 +67938,339.6899999997273,-0.056700945442650225 +67939,339.6949999997273,-0.05670067537396973 +67940,339.6999999997273,-0.05670040535804726 +67941,339.7049999997273,-0.05670013539487231 +67942,339.7099999997273,-0.056699865484434356 +67943,339.7149999997273,-0.05669959562672293 +67944,339.7199999997273,-0.056699325821727514 +67945,339.7249999997273,-0.056699056069437634 +67946,339.7299999997273,-0.05669878636984278 +67947,339.7349999997273,-0.05669851672293248 +67948,339.7399999997273,-0.05669824712869624 +67949,339.74499999972727,-0.05669797758712356 +67950,339.74999999972727,-0.056697708098203965 +67951,339.75499999972726,-0.05669743866192697 +67952,339.75999999972726,-0.05669716927828209 +67953,339.76499999972725,-0.05669689994725886 +67954,339.76999999972725,-0.056696630668846795 +67955,339.77499999972724,-0.056696361443035415 +67956,339.77999999972724,-0.05669609226981426 +67957,339.78499999972723,-0.05669582314917284 +67958,339.78999999972723,-0.0566955540811007 +67959,339.7949999997272,-0.056695285065587374 +67960,339.7999999997272,-0.05669501610262238 +67961,339.8049999997272,-0.05669474719219526 +67962,339.8099999997272,-0.05669447833429557 +67963,339.8149999997272,-0.05669420952891284 +67964,339.8199999997272,-0.0566939407760366 +67965,339.8249999997272,-0.05669367207565641 +67966,339.8299999997272,-0.056693403427761795 +67967,339.8349999997272,-0.056693134832342326 +67968,339.8399999997272,-0.056692866289387536 +67969,339.8449999997272,-0.056692597798886996 +67970,339.8499999997272,-0.05669232936083023 +67971,339.85499999972717,-0.056692060975206814 +67972,339.85999999972717,-0.05669179264200631 +67973,339.86499999972716,-0.05669152436121826 +67974,339.86999999972716,-0.05669125613283224 +67975,339.87499999972715,-0.0566909879568378 +67976,339.87999999972715,-0.056690719833224525 +67977,339.88499999972714,-0.056690451761981946 +67978,339.88999999972714,-0.05669018374309967 +67979,339.89499999972713,-0.056689915776567235 +67980,339.89999999972713,-0.05668964786237423 +67981,339.9049999997271,-0.05668938000051023 +67982,339.9099999997271,-0.056689112190964806 +67983,339.9149999997271,-0.05668884443372754 +67984,339.9199999997271,-0.05668857672878801 +67985,339.9249999997271,-0.0566883090761358 +67986,339.9299999997271,-0.05668804147576049 +67987,339.9349999997271,-0.05668777392765166 +67988,339.9399999997271,-0.05668750643179892 +67989,339.9449999997271,-0.056687238988191835 +67990,339.9499999997271,-0.05668697159682002 +67991,339.9549999997271,-0.05668670425767305 +67992,339.9599999997271,-0.056686436970740516 +67993,339.96499999972707,-0.05668616973601202 +67994,339.96999999972707,-0.05668590255347716 +67995,339.97499999972706,-0.05668563542312555 +67996,339.97999999972706,-0.05668536834494678 +67997,339.98499999972705,-0.05668510131893045 +67998,339.98999999972705,-0.05668483434506618 +67999,339.99499999972704,-0.05668456742334357 +68000,339.99999999972704,-0.056684300553752225 +68001,340.00499999972703,-0.056684033736281766 +68002,340.00999999972703,-0.05668376697092181 +68003,340.014999999727,-0.056683500257661966 +68004,340.019999999727,-0.05668323359649185 +68005,340.024999999727,-0.056682966987401086 +68006,340.029999999727,-0.0566827004303793 +68007,340.034999999727,-0.05668243392541611 +68008,340.039999999727,-0.05668216747250112 +68009,340.044999999727,-0.056681901071624 +68010,340.049999999727,-0.05668163472277435 +68011,340.054999999727,-0.0566813684259418 +68012,340.059999999727,-0.05668110218111599 +68013,340.064999999727,-0.05668083598828656 +68014,340.069999999727,-0.05668056984744314 +68015,340.07499999972697,-0.056680303758575364 +68016,340.07999999972697,-0.05668003772167288 +68017,340.08499999972696,-0.056679771736725316 +68018,340.08999999972696,-0.05667950580372234 +68019,340.09499999972695,-0.05667923992265358 +68020,340.09999999972695,-0.05667897409350869 +68021,340.10499999972694,-0.056678708316277325 +68022,340.10999999972694,-0.05667844259094912 +68023,340.11499999972693,-0.05667817691751374 +68024,340.11999999972693,-0.056677911295960844 +68025,340.1249999997269,-0.056677645726280076 +68026,340.1299999997269,-0.056677380208461116 +68027,340.1349999997269,-0.0566771147424936 +68028,340.1399999997269,-0.05667684932836721 +68029,340.1449999997269,-0.05667658396607161 +68030,340.1499999997269,-0.05667631865559645 +68031,340.1549999997269,-0.05667605339693141 +68032,340.1599999997269,-0.056675788190066155 +68033,340.1649999997269,-0.05667552303499036 +68034,340.1699999997269,-0.05667525793169371 +68035,340.1749999997269,-0.056674992880165864 +68036,340.1799999997269,-0.05667472788039651 +68037,340.18499999972687,-0.056674462932375325 +68038,340.18999999972687,-0.05667419803609198 +68039,340.19499999972686,-0.05667393319153618 +68040,340.19999999972686,-0.0566736683986976 +68041,340.20499999972685,-0.05667340365756593 +68042,340.20999999972685,-0.056673138968130844 +68043,340.21499999972684,-0.056672874330382046 +68044,340.21999999972684,-0.05667260974430923 +68045,340.22499999972683,-0.056672345209902074 +68046,340.22999999972683,-0.056672080727150305 +68047,340.2349999997268,-0.056671816296043585 +68048,340.2399999997268,-0.056671551916571646 +68049,340.2449999997268,-0.05667128758872417 +68050,340.2499999997268,-0.056671023312490874 +68051,340.2549999997268,-0.056670759087861455 +68052,340.2599999997268,-0.05667049491482563 +68053,340.2649999997268,-0.05667023079337309 +68054,340.2699999997268,-0.05666996672349357 +68055,340.2749999997268,-0.056669702705176773 +68056,340.2799999997268,-0.056669438738412424 +68057,340.2849999997268,-0.05666917482319022 +68058,340.2899999997268,-0.056668910959499885 +68059,340.29499999972677,-0.05666864714733114 +68060,340.29999999972677,-0.056668383386673724 +68061,340.30499999972676,-0.05666811967751736 +68062,340.30999999972676,-0.056667856019851755 +68063,340.31499999972675,-0.05666759241366664 +68064,340.31999999972675,-0.05666732885895177 +68065,340.32499999972674,-0.056667065355696836 +68066,340.32999999972674,-0.05666680190389161 +68067,340.33499999972673,-0.056666538503525814 +68068,340.33999999972673,-0.05666627515458918 +68069,340.3449999997267,-0.05666601185707144 +68070,340.3499999997267,-0.05666574861096235 +68071,340.3549999997267,-0.056665485416251674 +68072,340.3599999997267,-0.05666522227292912 +68073,340.3649999997267,-0.056664959180984444 +68074,340.3699999997267,-0.0566646961404074 +68075,340.3749999997267,-0.056664433151187736 +68076,340.3799999997267,-0.05666417021331522 +68077,340.3849999997267,-0.05666390732677958 +68078,340.3899999997267,-0.056663644491570596 +68079,340.3949999997267,-0.056663381707678 +68080,340.3999999997267,-0.05666311897509158 +68081,340.40499999972667,-0.056662856293801085 +68082,340.40999999972667,-0.05666259366379627 +68083,340.41499999972666,-0.05666233108506691 +68084,340.41999999972666,-0.05666206855760278 +68085,340.42499999972665,-0.05666180608139364 +68086,340.42999999972665,-0.05666154365642926 +68087,340.43499999972664,-0.05666128128269942 +68088,340.43999999972664,-0.05666101896019389 +68089,340.44499999972663,-0.05666075668890244 +68090,340.44999999972663,-0.05666049446881486 +68091,340.4549999997266,-0.05666023229992092 +68092,340.4599999997266,-0.05665997018221042 +68093,340.4649999997266,-0.05665970811567311 +68094,340.4699999997266,-0.056659446100298806 +68095,340.4749999997266,-0.056659184136077304 +68096,340.4799999997266,-0.05665892222299837 +68097,340.4849999997266,-0.0566586603610518 +68098,340.4899999997266,-0.05665839855022739 +68099,340.4949999997266,-0.05665813679051493 +68100,340.4999999997266,-0.05665787508190424 +68101,340.5049999997266,-0.05665761342438509 +68102,340.5099999997266,-0.0566573518179473 +68103,340.51499999972657,-0.056657090262580666 +68104,340.51999999972656,-0.056656828758274984 +68105,340.52499999972656,-0.05665656730502008 +68106,340.52999999972656,-0.056656305902805744 +68107,340.53499999972655,-0.05665604455162179 +68108,340.53999999972655,-0.056655783251458036 +68109,340.54499999972654,-0.056655522002304295 +68110,340.54999999972654,-0.05665526080415038 +68111,340.55499999972653,-0.05665499965698611 +68112,340.55999999972653,-0.05665473856080129 +68113,340.5649999997265,-0.05665447751558577 +68114,340.5699999997265,-0.05665421652132935 +68115,340.5749999997265,-0.056653955578021865 +68116,340.5799999997265,-0.056653694685653136 +68117,340.5849999997265,-0.056653433844213 +68118,340.5899999997265,-0.056653173053691275 +68119,340.5949999997265,-0.05665291231407781 +68120,340.5999999997265,-0.05665265162536243 +68121,340.6049999997265,-0.05665239098753496 +68122,340.6099999997265,-0.056652130400585254 +68123,340.6149999997265,-0.05665186986450314 +68124,340.6199999997265,-0.05665160937927847 +68125,340.62499999972647,-0.05665134894490109 +68126,340.62999999972646,-0.056651088561360835 +68127,340.63499999972646,-0.05665082822864755 +68128,340.63999999972646,-0.0566505679467511 +68129,340.64499999972645,-0.05665030771566131 +68130,340.64999999972645,-0.056650047535368064 +68131,340.65499999972644,-0.05664978740586119 +68132,340.65999999972644,-0.05664952732713056 +68133,340.66499999972643,-0.05664926729916603 +68134,340.66999999972643,-0.05664900732195744 +68135,340.6749999997264,-0.056648747395494685 +68136,340.6799999997264,-0.0566484875197676 +68137,340.6849999997264,-0.056648227694766067 +68138,340.6899999997264,-0.05664796792047994 +68139,340.6949999997264,-0.05664770819689912 +68140,340.6999999997264,-0.05664744852401344 +68141,340.7049999997264,-0.0566471889018128 +68142,340.7099999997264,-0.05664692933028705 +68143,340.7149999997264,-0.056646669809426085 +68144,340.7199999997264,-0.056646410339219785 +68145,340.7249999997264,-0.056646150919658016 +68146,340.7299999997264,-0.056645891550730666 +68147,340.73499999972637,-0.05664563223242762 +68148,340.73999999972636,-0.056645372964738754 +68149,340.74499999972636,-0.056645113747653984 +68150,340.74999999972636,-0.056644854581163175 +68151,340.75499999972635,-0.056644595465256214 +68152,340.75999999972635,-0.05664433639992301 +68153,340.76499999972634,-0.05664407738515345 +68154,340.76999999972634,-0.056643818420937436 +68155,340.77499999972633,-0.05664355950726487 +68156,340.77999999972633,-0.056643300644125635 +68157,340.7849999997263,-0.05664304183150965 +68158,340.7899999997263,-0.0566427830694068 +68159,340.7949999997263,-0.05664252435780702 +68160,340.7999999997263,-0.056642265696700195 +68161,340.8049999997263,-0.05664200708607625 +68162,340.8099999997263,-0.05664174852592508 +68163,340.8149999997263,-0.056641490016236605 +68164,340.8199999997263,-0.05664123155700074 +68165,340.8249999997263,-0.05664097314820741 +68166,340.8299999997263,-0.05664071478984653 +68167,340.8349999997263,-0.056640456481908005 +68168,340.8399999997263,-0.05664019822438178 +68169,340.84499999972627,-0.05663994001725777 +68170,340.84999999972626,-0.0566396818605259 +68171,340.85499999972626,-0.05663942375417609 +68172,340.85999999972626,-0.056639165698198296 +68173,340.86499999972625,-0.056638907692582424 +68174,340.86999999972625,-0.05663864973731842 +68175,340.87499999972624,-0.05663839183239621 +68176,340.87999999972624,-0.05663813397780574 +68177,340.88499999972623,-0.05663787617353694 +68178,340.88999999972623,-0.056637618419579754 +68179,340.8949999997262,-0.05663736071592413 +68180,340.8999999997262,-0.056637103062560014 +68181,340.9049999997262,-0.05663684545947734 +68182,340.9099999997262,-0.056636587906666064 +68183,340.9149999997262,-0.056636330404116135 +68184,340.9199999997262,-0.05663607295181751 +68185,340.9249999997262,-0.05663581554976014 +68186,340.9299999997262,-0.05663555819793398 +68187,340.9349999997262,-0.05663530089632897 +68188,340.9399999997262,-0.056635043644935094 +68189,340.9449999997262,-0.0566347864437423 +68190,340.9499999997262,-0.05663452929274056 +68191,340.95499999972617,-0.05663427219191982 +68192,340.95999999972616,-0.056634015141270054 +68193,340.96499999972616,-0.05663375814078124 +68194,340.96999999972616,-0.056633501190443344 +68195,340.97499999972615,-0.05663324429024634 +68196,340.97999999972615,-0.05663298744018019 +68197,340.98499999972614,-0.056632730640234885 +68198,340.98999999972614,-0.056632473890400395 +68199,340.99499999972613,-0.056632217190666696 +68200,340.9999999997261,-0.056631960541023776 +68201,341.0049999997261,-0.05663170394146161 +68202,341.0099999997261,-0.05663144739197019 +68203,341.0149999997261,-0.05663119089253949 +68204,341.0199999997261,-0.05663093444315952 +68205,341.0249999997261,-0.05663067804382024 +68206,341.0299999997261,-0.05663042169451167 +68207,341.0349999997261,-0.05663016539522379 +68208,341.0399999997261,-0.05662990914594659 +68209,341.0449999997261,-0.05662965294667008 +68210,341.0499999997261,-0.05662939679738426 +68211,341.0549999997261,-0.05662914069807913 +68212,341.0599999997261,-0.05662888464874467 +68213,341.06499999972607,-0.05662862864937091 +68214,341.06999999972606,-0.056628372699947846 +68215,341.07499999972606,-0.05662811680046549 +68216,341.07999999972606,-0.05662786095091386 +68217,341.08499999972605,-0.05662760515128295 +68218,341.08999999972605,-0.05662734940156278 +68219,341.09499999972604,-0.056627093701743375 +68220,341.09999999972604,-0.056626838051814746 +68221,341.10499999972603,-0.05662658245176691 +68222,341.109999999726,-0.05662632690158989 +68223,341.114999999726,-0.05662607140127371 +68224,341.119999999726,-0.056625815950808386 +68225,341.124999999726,-0.056625560550183966 +68226,341.129999999726,-0.056625305199390456 +68227,341.134999999726,-0.056625049898417885 +68228,341.139999999726,-0.056624794647256296 +68229,341.144999999726,-0.056624539445895725 +68230,341.149999999726,-0.056624284294326206 +68231,341.154999999726,-0.05662402919253776 +68232,341.159999999726,-0.05662377414052045 +68233,341.164999999726,-0.0566235191382643 +68234,341.169999999726,-0.05662326418575935 +68235,341.17499999972597,-0.05662300928299567 +68236,341.17999999972596,-0.05662275442996328 +68237,341.18499999972596,-0.056622499626652244 +68238,341.18999999972596,-0.0566222448730526 +68239,341.19499999972595,-0.0566219901691544 +68240,341.19999999972595,-0.0566217355149477 +68241,341.20499999972594,-0.056621480910422566 +68242,341.20999999972594,-0.056621226355569036 +68243,341.21499999972593,-0.05662097185037719 +68244,341.2199999997259,-0.056620717394837074 +68245,341.2249999997259,-0.056620462988938754 +68246,341.2299999997259,-0.0566202086326723 +68247,341.2349999997259,-0.05661995432602778 +68248,341.2399999997259,-0.05661970006899524 +68249,341.2449999997259,-0.05661944586156477 +68250,341.2499999997259,-0.056619191703726444 +68251,341.2549999997259,-0.05661893759547033 +68252,341.2599999997259,-0.05661868353678649 +68253,341.2649999997259,-0.056618429527665014 +68254,341.2699999997259,-0.056618175568095994 +68255,341.2749999997259,-0.05661792165806949 +68256,341.2799999997259,-0.05661766779757559 +68257,341.28499999972587,-0.05661741398660438 +68258,341.28999999972586,-0.056617160225145936 +68259,341.29499999972586,-0.05661690651319036 +68260,341.29999999972586,-0.056616652850727735 +68261,341.30499999972585,-0.05661639923774816 +68262,341.30999999972585,-0.05661614567424171 +68263,341.31499999972584,-0.0566158921601985 +68264,341.31999999972584,-0.05661563869560862 +68265,341.32499999972583,-0.05661538528046218 +68266,341.3299999997258,-0.056615131914749255 +68267,341.3349999997258,-0.05661487859845997 +68268,341.3399999997258,-0.05661462533158441 +68269,341.3449999997258,-0.05661437211411269 +68270,341.3499999997258,-0.05661411894603492 +68271,341.3549999997258,-0.056613865827341216 +68272,341.3599999997258,-0.056613612758021674 +68273,341.3649999997258,-0.05661335973806641 +68274,341.3699999997258,-0.05661310676746554 +68275,341.3749999997258,-0.05661285384620919 +68276,341.3799999997258,-0.056612600974287476 +68277,341.3849999997258,-0.056612348151690514 +68278,341.3899999997258,-0.05661209537840843 +68279,341.39499999972577,-0.05661184265443133 +68280,341.39999999972576,-0.056611589979749355 +68281,341.40499999972576,-0.05661133735435264 +68282,341.40999999972576,-0.056611084778231305 +68283,341.41499999972575,-0.05661083225137548 +68284,341.41999999972575,-0.0566105797737753 +68285,341.42499999972574,-0.0566103273454209 +68286,341.42999999972574,-0.05661007496630242 +68287,341.43499999972573,-0.05660982263640999 +68288,341.4399999997257,-0.05660957035573375 +68289,341.4449999997257,-0.056609318124263855 +68290,341.4499999997257,-0.05660906594199042 +68291,341.4549999997257,-0.05660881380890362 +68292,341.4599999997257,-0.056608561724993595 +68293,341.4649999997257,-0.05660830969025048 +68294,341.4699999997257,-0.05660805770466445 +68295,341.4749999997257,-0.05660780576822563 +68296,341.4799999997257,-0.0566075538809242 +68297,341.4849999997257,-0.05660730204275031 +68298,341.4899999997257,-0.0566070502536941 +68299,341.4949999997257,-0.05660679851374575 +68300,341.4999999997257,-0.05660654682289541 +68301,341.50499999972567,-0.05660629518113325 +68302,341.50999999972566,-0.05660604358844942 +68303,341.51499999972566,-0.05660579204483412 +68304,341.51999999972566,-0.056605540550277486 +68305,341.52499999972565,-0.056605289104769696 +68306,341.52999999972565,-0.05660503770830093 +68307,341.53499999972564,-0.05660478636086135 +68308,341.53999999972564,-0.05660453506244116 +68309,341.54499999972563,-0.05660428381303051 +68310,341.5499999997256,-0.05660403261261958 +68311,341.5549999997256,-0.056603781461198564 +68312,341.5599999997256,-0.05660353035875764 +68313,341.5649999997256,-0.05660327930528699 +68314,341.5699999997256,-0.0566030283007768 +68315,341.5749999997256,-0.056602777345217264 +68316,341.5799999997256,-0.05660252643859856 +68317,341.5849999997256,-0.0566022755809109 +68318,341.5899999997256,-0.05660202477214446 +68319,341.5949999997256,-0.05660177401228944 +68320,341.5999999997256,-0.05660152330133605 +68321,341.6049999997256,-0.05660127263927447 +68322,341.6099999997256,-0.05660102202609491 +68323,341.61499999972557,-0.056600771461787575 +68324,341.61999999972556,-0.05660052094634267 +68325,341.62499999972556,-0.05660027047975039 +68326,341.62999999972556,-0.056600020062000954 +68327,341.63499999972555,-0.05659976969308457 +68328,341.63999999972555,-0.05659951937299144 +68329,341.64499999972554,-0.056599269101711785 +68330,341.64999999972554,-0.05659901887923583 +68331,341.65499999972553,-0.05659876870555378 +68332,341.6599999997255,-0.05659851858065585 +68333,341.6649999997255,-0.05659826850453227 +68334,341.6699999997255,-0.05659801847717326 +68335,341.6749999997255,-0.056597768498569026 +68336,341.6799999997255,-0.056597518568709815 +68337,341.6849999997255,-0.056597268687585855 +68338,341.6899999997255,-0.05659701885518737 +68339,341.6949999997255,-0.0565967690715046 +68340,341.6999999997255,-0.05659651933652775 +68341,341.7049999997255,-0.05659626965024708 +68342,341.7099999997255,-0.05659602001265281 +68343,341.7149999997255,-0.0565957704237352 +68344,341.7199999997255,-0.05659552088348448 +68345,341.72499999972547,-0.05659527139189089 +68346,341.72999999972546,-0.05659502194894466 +68347,341.73499999972546,-0.056594772554636054 +68348,341.73999999972546,-0.05659452320895531 +68349,341.74499999972545,-0.05659427391189269 +68350,341.74999999972545,-0.05659402466343842 +68351,341.75499999972544,-0.056593775463582775 +68352,341.75999999972544,-0.056593526312316005 +68353,341.76499999972543,-0.056593277209628354 +68354,341.7699999997254,-0.0565930281555101 +68355,341.7749999997254,-0.056592779149951485 +68356,341.7799999997254,-0.056592530192942775 +68357,341.7849999997254,-0.05659228128447422 +68358,341.7899999997254,-0.056592032424536115 +68359,341.7949999997254,-0.05659178361311871 +68360,341.7999999997254,-0.05659153485021227 +68361,341.8049999997254,-0.05659128613580707 +68362,341.8099999997254,-0.056591037469893364 +68363,341.8149999997254,-0.05659078885246146 +68364,341.8199999997254,-0.05659054028350161 +68365,341.8249999997254,-0.05659029176300409 +68366,341.8299999997254,-0.05659004329095919 +68367,341.83499999972537,-0.056589794867357185 +68368,341.83999999972536,-0.056589546492188364 +68369,341.84499999972536,-0.056589298165442996 +68370,341.84999999972536,-0.05658904988711139 +68371,341.85499999972535,-0.05658880165718381 +68372,341.85999999972535,-0.05658855347565056 +68373,341.86499999972534,-0.05658830534250193 +68374,341.86999999972534,-0.0565880572577282 +68375,341.87499999972533,-0.056587809221319674 +68376,341.8799999997253,-0.05658756123326666 +68377,341.8849999997253,-0.05658731329355945 +68378,341.8899999997253,-0.05658706540218833 +68379,341.8949999997253,-0.05658681755914361 +68380,341.8999999997253,-0.056586569764415603 +68381,341.9049999997253,-0.05658632201799461 +68382,341.9099999997253,-0.056586074319870935 +68383,341.9149999997253,-0.056585826670034894 +68384,341.9199999997253,-0.05658557906847678 +68385,341.9249999997253,-0.056585331515186924 +68386,341.9299999997253,-0.05658508401015563 +68387,341.9349999997253,-0.05658483655337322 +68388,341.9399999997253,-0.05658458914483001 +68389,341.94499999972527,-0.056584341784516316 +68390,341.94999999972526,-0.056584094472422464 +68391,341.95499999972526,-0.05658384720853877 +68392,341.95999999972526,-0.05658359999285557 +68393,341.96499999972525,-0.05658335282536318 +68394,341.96999999972525,-0.05658310570605194 +68395,341.97499999972524,-0.05658285863491217 +68396,341.97999999972524,-0.056582611611934196 +68397,341.98499999972523,-0.05658236463710837 +68398,341.9899999997252,-0.05658211771042501 +68399,341.9949999997252,-0.05658187083187447 +68400,341.9999999997252,-0.05658162400144707 +68401,342.0049999997252,-0.05658137721913316 +68402,342.0099999997252,-0.056581130484923095 +68403,342.0149999997252,-0.056580883798807206 +68404,342.0199999997252,-0.05658063716077584 +68405,342.0249999997252,-0.05658039057081933 +68406,342.0299999997252,-0.05658014402892806 +68407,342.0349999997252,-0.056579897535092356 +68408,342.0399999997252,-0.056579651089302574 +68409,342.0449999997252,-0.056579404691549075 +68410,342.0499999997252,-0.05657915834182221 +68411,342.05499999972517,-0.05657891204011233 +68412,342.05999999972516,-0.05657866578640981 +68413,342.06499999972516,-0.05657841958070502 +68414,342.06999999972516,-0.056578173422988286 +68415,342.07499999972515,-0.05657792731325 +68416,342.07999999972515,-0.05657768125148053 +68417,342.08499999972514,-0.05657743523767025 +68418,342.08999999972514,-0.056577189271809505 +68419,342.09499999972513,-0.05657694335388868 +68420,342.0999999997251,-0.05657669748389816 +68421,342.1049999997251,-0.056576451661828314 +68422,342.1099999997251,-0.05657620588766952 +68423,342.1149999997251,-0.056575960161412156 +68424,342.1199999997251,-0.056575714483046595 +68425,342.1249999997251,-0.05657546885256323 +68426,342.1299999997251,-0.05657522326995245 +68427,342.1349999997251,-0.056574977735204625 +68428,342.1399999997251,-0.05657473224831016 +68429,342.1449999997251,-0.05657448680925943 +68430,342.1499999997251,-0.056574241418042834 +68431,342.1549999997251,-0.056573996074650766 +68432,342.1599999997251,-0.056573750779073624 +68433,342.16499999972507,-0.05657350553130179 +68434,342.16999999972506,-0.05657326033132568 +68435,342.17499999972506,-0.0565730151791357 +68436,342.17999999972506,-0.056572770074722216 +68437,342.18499999972505,-0.056572525018075664 +68438,342.18999999972505,-0.056572280009186446 +68439,342.19499999972504,-0.05657203504804496 +68440,342.19999999972504,-0.05657179013464162 +68441,342.20499999972503,-0.05657154526896683 +68442,342.209999999725,-0.05657130045101101 +68443,342.214999999725,-0.05657105568076457 +68444,342.219999999725,-0.056570810958217935 +68445,342.224999999725,-0.05657056628336152 +68446,342.229999999725,-0.05657032165618573 +68447,342.234999999725,-0.05657007707668099 +68448,342.239999999725,-0.05656983254483774 +68449,342.244999999725,-0.056569588060646395 +68450,342.249999999725,-0.05656934362409737 +68451,342.254999999725,-0.056569099235181115 +68452,342.259999999725,-0.05656885489388805 +68453,342.264999999725,-0.0565686106002086 +68454,342.269999999725,-0.056568366354133204 +68455,342.27499999972497,-0.05656812215565229 +68456,342.27999999972496,-0.05656787800475631 +68457,342.28499999972496,-0.05656763390143568 +68458,342.28999999972496,-0.05656738984568087 +68459,342.29499999972495,-0.056567145837482305 +68460,342.29999999972495,-0.05656690187683043 +68461,342.30499999972494,-0.05656665796371568 +68462,342.30999999972494,-0.056566414098128535 +68463,342.31499999972493,-0.05656617028005941 +68464,342.3199999997249,-0.056565926509498765 +68465,342.3249999997249,-0.05656568278643705 +68466,342.3299999997249,-0.05656543911086473 +68467,342.3349999997249,-0.05656519548277225 +68468,342.3399999997249,-0.056564951902150086 +68469,342.3449999997249,-0.05656470836898868 +68470,342.3499999997249,-0.05656446488327851 +68471,342.3549999997249,-0.056564221445010006 +68472,342.3599999997249,-0.05656397805417366 +68473,342.3649999997249,-0.05656373471075995 +68474,342.3699999997249,-0.05656349141475931 +68475,342.3749999997249,-0.05656324816616224 +68476,342.3799999997249,-0.05656300496495919 +68477,342.38499999972487,-0.05656276181114065 +68478,342.38999999972486,-0.05656251870469707 +68479,342.39499999972486,-0.056562275645618956 +68480,342.39999999972486,-0.05656203263389677 +68481,342.40499999972485,-0.05656178966952099 +68482,342.40999999972485,-0.0565615467524821 +68483,342.41499999972484,-0.0565613038827706 +68484,342.41999999972484,-0.056561061060376956 +68485,342.42499999972483,-0.05656081828529168 +68486,342.4299999997248,-0.05656057555750522 +68487,342.4349999997248,-0.056560332877008096 +68488,342.4399999997248,-0.0565600902437908 +68489,342.4449999997248,-0.05655984765784382 +68490,342.4499999997248,-0.056559605119157655 +68491,342.4549999997248,-0.05655936262772279 +68492,342.4599999997248,-0.056559120183529744 +68493,342.4649999997248,-0.056558877786569 +68494,342.4699999997248,-0.05655863543683108 +68495,342.4749999997248,-0.056558393134306474 +68496,342.4799999997248,-0.056558150878985684 +68497,342.4849999997248,-0.05655790867085923 +68498,342.4899999997248,-0.05655766650991763 +68499,342.49499999972477,-0.05655742439615138 +68500,342.49999999972476,-0.05655718232955098 +68501,342.50499999972476,-0.05655694031010698 +68502,342.50999999972476,-0.05655669833780988 +68503,342.51499999972475,-0.056556456412650176 +68504,342.51999999972475,-0.05655621453461842 +68505,342.52499999972474,-0.056555972703705125 +68506,342.52999999972474,-0.056555730919900814 +68507,342.53499999972473,-0.056555489183196 +68508,342.5399999997247,-0.05655524749358122 +68509,342.5449999997247,-0.056555005851047016 +68510,342.5499999997247,-0.056554764255583895 +68511,342.5549999997247,-0.0565545227071824 +68512,342.5599999997247,-0.056554281205833064 +68513,342.5649999997247,-0.05655403975152642 +68514,342.5699999997247,-0.05655379834425301 +68515,342.5749999997247,-0.05655355698400336 +68516,342.5799999997247,-0.056553315670768045 +68517,342.5849999997247,-0.05655307440453757 +68518,342.5899999997247,-0.05655283318530249 +68519,342.5949999997247,-0.056552592013053356 +68520,342.5999999997247,-0.05655235088778072 +68521,342.60499999972467,-0.05655210980947513 +68522,342.60999999972466,-0.056551868778127116 +68523,342.61499999972466,-0.05655162779372725 +68524,342.61999999972466,-0.056551386856266095 +68525,342.62499999972465,-0.05655114596573418 +68526,342.62999999972465,-0.05655090512212209 +68527,342.63499999972464,-0.05655066432542037 +68528,342.63999999972464,-0.05655042357561959 +68529,342.64499999972463,-0.0565501828727103 +68530,342.6499999997246,-0.056549942216683066 +68531,342.6549999997246,-0.05654970160752848 +68532,342.6599999997246,-0.05654946104523708 +68533,342.6649999997246,-0.05654922052979946 +68534,342.6699999997246,-0.056548980061206164 +68535,342.6749999997246,-0.05654873963944779 +68536,342.6799999997246,-0.05654849926451489 +68537,342.6849999997246,-0.05654825893639806 +68538,342.6899999997246,-0.05654801865508787 +68539,342.6949999997246,-0.056547778420574915 +68540,342.6999999997246,-0.05654753823284976 +68541,342.7049999997246,-0.05654729809190299 +68542,342.7099999997246,-0.05654705799772519 +68543,342.71499999972457,-0.05654681795030696 +68544,342.71999999972456,-0.056546577949638875 +68545,342.72499999972456,-0.05654633799571153 +68546,342.72999999972455,-0.056546098088515524 +68547,342.73499999972455,-0.05654585822804144 +68548,342.73999999972455,-0.05654561841427987 +68549,342.74499999972454,-0.05654537864722143 +68550,342.74999999972454,-0.05654513892685671 +68551,342.75499999972453,-0.05654489925317631 +68552,342.7599999997245,-0.05654465962617083 +68553,342.7649999997245,-0.05654442004583088 +68554,342.7699999997245,-0.05654418051214705 +68555,342.7749999997245,-0.05654394102510998 +68556,342.7799999997245,-0.05654370158471025 +68557,342.7849999997245,-0.05654346219093848 +68558,342.7899999997245,-0.05654322284378529 +68559,342.7949999997245,-0.056542983543241276 +68560,342.7999999997245,-0.05654274428929708 +68561,342.8049999997245,-0.05654250508194329 +68562,342.8099999997245,-0.05654226592117056 +68563,342.8149999997245,-0.05654202680696947 +68564,342.8199999997245,-0.05654178773933069 +68565,342.82499999972447,-0.0565415487182448 +68566,342.82999999972446,-0.05654130974370246 +68567,342.83499999972446,-0.05654107081569428 +68568,342.83999999972445,-0.0565408319342109 +68569,342.84499999972445,-0.05654059309924294 +68570,342.84999999972445,-0.05654035431078104 +68571,342.85499999972444,-0.05654011556881584 +68572,342.85999999972444,-0.05653987687333796 +68573,342.86499999972443,-0.056539638224338065 +68574,342.8699999997244,-0.05653939962180677 +68575,342.8749999997244,-0.056539161065734735 +68576,342.8799999997244,-0.056538922556112585 +68577,342.8849999997244,-0.05653868409293098 +68578,342.8899999997244,-0.05653844567618056 +68579,342.8949999997244,-0.05653820730585198 +68580,342.8999999997244,-0.056537968981935895 +68581,342.9049999997244,-0.056537730704422945 +68582,342.9099999997244,-0.05653749247330377 +68583,342.9149999997244,-0.05653725428856906 +68584,342.9199999997244,-0.05653701615020945 +68585,342.9249999997244,-0.0565367780582156 +68586,342.9299999997244,-0.05653654001257817 +68587,342.93499999972437,-0.05653630201328784 +68588,342.93999999972436,-0.05653606406033525 +68589,342.94499999972436,-0.05653582615371107 +68590,342.94999999972435,-0.05653558829340598 +68591,342.95499999972435,-0.05653535047941064 +68592,342.95999999972435,-0.056535112711715726 +68593,342.96499999972434,-0.05653487499031191 +68594,342.96999999972434,-0.05653463731518986 +68595,342.97499999972433,-0.056534399686340255 +68596,342.9799999997243,-0.05653416210375376 +68597,342.9849999997243,-0.05653392456742107 +68598,342.9899999997243,-0.056533687077332875 +68599,342.9949999997243,-0.05653344963347984 +68600,342.9999999997243,-0.05653321223585265 +68601,343.0049999997243,-0.056532974884442 +68602,343.0099999997243,-0.05653273757923857 +68603,343.0149999997243,-0.056532500320233055 +68604,343.0199999997243,-0.056532263107416145 +68605,343.0249999997243,-0.056532025940778524 +68606,343.0299999997243,-0.056531788820310895 +68607,343.0349999997243,-0.05653155174600396 +68608,343.0399999997243,-0.05653131471784839 +68609,343.04499999972427,-0.05653107773583491 +68610,343.04999999972426,-0.05653084079995422 +68611,343.05499999972426,-0.056530603910197014 +68612,343.05999999972425,-0.05653036706655401 +68613,343.06499999972425,-0.0565301302690159 +68614,343.06999999972425,-0.0565298935175734 +68615,343.07499999972424,-0.056529656812217215 +68616,343.07999999972424,-0.05652942015293805 +68617,343.08499999972423,-0.056529183539726635 +68618,343.0899999997242,-0.056528946972573664 +68619,343.0949999997242,-0.05652871045146988 +68620,343.0999999997242,-0.05652847397640598 +68621,343.1049999997242,-0.056528237547372684 +68622,343.1099999997242,-0.05652800116436072 +68623,343.1149999997242,-0.05652776482736081 +68624,343.1199999997242,-0.05652752853636369 +68625,343.1249999997242,-0.05652729229136007 +68626,343.1299999997242,-0.05652705609234069 +68627,343.1349999997242,-0.05652681993929626 +68628,343.1399999997242,-0.05652658383221754 +68629,343.1449999997242,-0.05652634777109525 +68630,343.1499999997242,-0.056526111755920115 +68631,343.15499999972417,-0.05652587578668289 +68632,343.15999999972416,-0.0565256398633743 +68633,343.16499999972416,-0.05652540398598508 +68634,343.16999999972415,-0.05652516815450599 +68635,343.17499999972415,-0.05652493236892776 +68636,343.17999999972415,-0.05652469662924115 +68637,343.18499999972414,-0.05652446093543689 +68638,343.18999999972414,-0.05652422528750573 +68639,343.19499999972413,-0.056523989685438425 +68640,343.1999999997241,-0.05652375412922574 +68641,343.2049999997241,-0.056523518618858404 +68642,343.2099999997241,-0.05652328315432719 +68643,343.2149999997241,-0.05652304773562284 +68644,343.2199999997241,-0.05652281236273613 +68645,343.2249999997241,-0.05652257703565781 +68646,343.2299999997241,-0.05652234175437863 +68647,343.2349999997241,-0.05652210651888937 +68648,343.2399999997241,-0.056521871329180816 +68649,343.2449999997241,-0.056521636185243695 +68650,343.2499999997241,-0.056521401087068796 +68651,343.2549999997241,-0.05652116603464688 +68652,343.2599999997241,-0.05652093102796873 +68653,343.26499999972407,-0.05652069606702512 +68654,343.26999999972406,-0.0565204611518068 +68655,343.27499999972406,-0.056520226282304575 +68656,343.27999999972405,-0.05651999145850922 +68657,343.28499999972405,-0.0565197566804115 +68658,343.28999999972405,-0.05651952194800222 +68659,343.29499999972404,-0.05651928726127216 +68660,343.29999999972404,-0.05651905262021208 +68661,343.30499999972403,-0.05651881802481279 +68662,343.309999999724,-0.056518583475065075 +68663,343.314999999724,-0.056518348970959725 +68664,343.319999999724,-0.05651811451248752 +68665,343.324999999724,-0.056517880099639255 +68666,343.329999999724,-0.05651764573240575 +68667,343.334999999724,-0.05651741141077778 +68668,343.339999999724,-0.05651717713474617 +68669,343.344999999724,-0.05651694290430169 +68670,343.349999999724,-0.05651670871943514 +68671,343.354999999724,-0.05651647458013736 +68672,343.359999999724,-0.05651624048639911 +68673,343.364999999724,-0.05651600643821124 +68674,343.369999999724,-0.05651577243556453 +68675,343.37499999972397,-0.0565155384784498 +68676,343.37999999972396,-0.05651530456685787 +68677,343.38499999972396,-0.05651507070077953 +68678,343.38999999972395,-0.05651483688020562 +68679,343.39499999972395,-0.05651460310512695 +68680,343.39999999972395,-0.05651436937553434 +68681,343.40499999972394,-0.05651413569141862 +68682,343.40999999972394,-0.05651390205277059 +68683,343.41499999972393,-0.056513668459581085 +68684,343.4199999997239,-0.05651343491184093 +68685,343.4249999997239,-0.056513201409540956 +68686,343.4299999997239,-0.05651296795267199 +68687,343.4349999997239,-0.056512734541224845 +68688,343.4399999997239,-0.05651250117519038 +68689,343.4449999997239,-0.056512267854559414 +68690,343.4499999997239,-0.05651203457932279 +68691,343.4549999997239,-0.05651180134947134 +68692,343.4599999997239,-0.05651156816499591 +68693,343.4649999997239,-0.05651133502588734 +68694,343.4699999997239,-0.05651110193213646 +68695,343.4749999997239,-0.05651086888373412 +68696,343.4799999997239,-0.05651063588067118 +68697,343.48499999972387,-0.05651040292293847 +68698,343.48999999972386,-0.056510170010526835 +68699,343.49499999972386,-0.05650993714342714 +68700,343.49999999972385,-0.05650970432163024 +68701,343.50499999972385,-0.05650947154512697 +68702,343.50999999972385,-0.0565092388139082 +68703,343.51499999972384,-0.056509006127964785 +68704,343.51999999972384,-0.056508773487287584 +68705,343.52499999972383,-0.05650854089186746 +68706,343.5299999997238,-0.05650830834169527 +68707,343.5349999997238,-0.05650807583676188 +68708,343.5399999997238,-0.05650784337705815 +68709,343.5449999997238,-0.05650761096257496 +68710,343.5499999997238,-0.056507378593303174 +68711,343.5549999997238,-0.05650714626923366 +68712,343.5599999997238,-0.056506913990357274 +68713,343.5649999997238,-0.05650668175666492 +68714,343.5699999997238,-0.05650644956814746 +68715,343.5749999997238,-0.056506217424795765 +68716,343.5799999997238,-0.05650598532660072 +68717,343.5849999997238,-0.056505753273553214 +68718,343.5899999997238,-0.05650552126564411 +68719,343.59499999972377,-0.056505289302864296 +68720,343.59999999972376,-0.05650505738520468 +68721,343.60499999972376,-0.05650482551265613 +68722,343.60999999972375,-0.05650459368520953 +68723,343.61499999972375,-0.05650436190285579 +68724,343.61999999972375,-0.056504130165585795 +68725,343.62499999972374,-0.05650389847339042 +68726,343.62999999972374,-0.05650366682626059 +68727,343.63499999972373,-0.05650343522418717 +68728,343.6399999997237,-0.05650320366716109 +68729,343.6449999997237,-0.05650297215517323 +68730,343.6499999997237,-0.0565027406882145 +68731,343.6549999997237,-0.056502509266275806 +68732,343.6599999997237,-0.05650227788934805 +68733,343.6649999997237,-0.056502046557422136 +68734,343.6699999997237,-0.056501815270488975 +68735,343.6749999997237,-0.056501584028539484 +68736,343.6799999997237,-0.05650135283156456 +68737,343.6849999997237,-0.05650112167955513 +68738,343.6899999997237,-0.0565008905725021 +68739,343.6949999997237,-0.05650065951039641 +68740,343.6999999997237,-0.05650042849322894 +68741,343.70499999972367,-0.05650019752099064 +68742,343.70999999972366,-0.05649996659367243 +68743,343.71499999972366,-0.056499735711265216 +68744,343.71999999972365,-0.056499504873759945 +68745,343.72499999972365,-0.056499274081147535 +68746,343.72999999972365,-0.056499043333418895 +68747,343.73499999972364,-0.056498812630564985 +68748,343.73999999972364,-0.05649858197257672 +68749,343.74499999972363,-0.05649835135944504 +68750,343.7499999997236,-0.05649812079116087 +68751,343.7549999997236,-0.056497890267715165 +68752,343.7599999997236,-0.05649765978909885 +68753,343.7649999997236,-0.05649742935530287 +68754,343.7699999997236,-0.05649719896631817 +68755,343.7749999997236,-0.056496968622135685 +68756,343.7799999997236,-0.056496738322746355 +68757,343.7849999997236,-0.05649650806814114 +68758,343.7899999997236,-0.05649627785831099 +68759,343.7949999997236,-0.05649604769324685 +68760,343.7999999997236,-0.05649581757293967 +68761,343.8049999997236,-0.0564955874973804 +68762,343.8099999997236,-0.056495357466559995 +68763,343.81499999972357,-0.05649512748046942 +68764,343.81999999972356,-0.05649489753909963 +68765,343.82499999972356,-0.05649466764244157 +68766,343.82999999972355,-0.056494437790486234 +68767,343.83499999972355,-0.056494207983224555 +68768,343.83999999972355,-0.05649397822064752 +68769,343.84499999972354,-0.05649374850274607 +68770,343.84999999972354,-0.0564935188295112 +68771,343.85499999972353,-0.05649328920093386 +68772,343.8599999997235,-0.05649305961700503 +68773,343.8649999997235,-0.05649283007771568 +68774,343.8699999997235,-0.05649260058305679 +68775,343.8749999997235,-0.05649237113301933 +68776,343.8799999997235,-0.056492141727594286 +68777,343.8849999997235,-0.056491912366772624 +68778,343.8899999997235,-0.05649168305054533 +68779,343.8949999997235,-0.056491453778903404 +68780,343.8999999997235,-0.05649122455183782 +68781,343.9049999997235,-0.05649099536933955 +68782,343.9099999997235,-0.05649076623139959 +68783,343.9149999997235,-0.05649053713800893 +68784,343.9199999997235,-0.05649030808915857 +68785,343.92499999972347,-0.056490079084839495 +68786,343.92999999972346,-0.05648985012504269 +68787,343.93499999972346,-0.05648962120975918 +68788,343.93999999972345,-0.05648939233897994 +68789,343.94499999972345,-0.05648916351269597 +68790,343.94999999972345,-0.05648893473089826 +68791,343.95499999972344,-0.05648870599357785 +68792,343.95999999972344,-0.05648847730072572 +68793,343.96499999972343,-0.05648824865233287 +68794,343.9699999997234,-0.05648802004839031 +68795,343.9749999997234,-0.05648779148888906 +68796,343.9799999997234,-0.05648756297382012 +68797,343.9849999997234,-0.05648733450317451 +68798,343.9899999997234,-0.05648710607694324 +68799,343.9949999997234,-0.056486877695117316 +68800,343.9999999997234,-0.05648664935768777 +68801,344.0049999997234,-0.05648642106464561 +68802,344.0099999997234,-0.05648619281598187 +68803,344.0149999997234,-0.05648596461168757 +68804,344.0199999997234,-0.056485736451753726 +68805,344.0249999997234,-0.056485508336171365 +68806,344.0299999997234,-0.05648528026493152 +68807,344.03499999972337,-0.056485052238025205 +68808,344.03999999972336,-0.056484824255443454 +68809,344.04499999972336,-0.056484596317177324 +68810,344.04999999972335,-0.056484368423217815 +68811,344.05499999972335,-0.05648414057355599 +68812,344.05999999972335,-0.05648391276818286 +68813,344.06499999972334,-0.056483685007089494 +68814,344.06999999972334,-0.0564834572902669 +68815,344.07499999972333,-0.05648322961770613 +68816,344.0799999997233,-0.056483001989398235 +68817,344.0849999997233,-0.05648277440533426 +68818,344.0899999997233,-0.056482546865505245 +68819,344.0949999997233,-0.056482319369902244 +68820,344.0999999997233,-0.0564820919185163 +68821,344.1049999997233,-0.056481864511338485 +68822,344.1099999997233,-0.056481637148359826 +68823,344.1149999997233,-0.056481409829571394 +68824,344.1199999997233,-0.05648118255496424 +68825,344.1249999997233,-0.0564809553245294 +68826,344.1299999997233,-0.056480728138257975 +68827,344.1349999997233,-0.056480500996141006 +68828,344.1399999997233,-0.05648027389816956 +68829,344.14499999972327,-0.056480046844334685 +68830,344.14999999972326,-0.056479819834627465 +68831,344.15499999972326,-0.05647959286903897 +68832,344.15999999972325,-0.056479365947560256 +68833,344.16499999972325,-0.0564791390701824 +68834,344.16999999972325,-0.05647891223689648 +68835,344.17499999972324,-0.05647868544769355 +68836,344.17999999972324,-0.05647845870256471 +68837,344.18499999972323,-0.05647823200150103 +68838,344.1899999997232,-0.056478005344493584 +68839,344.1949999997232,-0.056477778731533465 +68840,344.1999999997232,-0.056477552162611744 +68841,344.2049999997232,-0.056477325637719504 +68842,344.2099999997232,-0.05647709915684784 +68843,344.2149999997232,-0.05647687271998784 +68844,344.2199999997232,-0.056476646327130585 +68845,344.2249999997232,-0.05647641997826716 +68846,344.2299999997232,-0.056476193673388665 +68847,344.2349999997232,-0.0564759674124862 +68848,344.2399999997232,-0.056475741195550856 +68849,344.2449999997232,-0.05647551502257372 +68850,344.2499999997232,-0.056475288893545895 +68851,344.25499999972317,-0.05647506280845849 +68852,344.25999999972316,-0.056474836767302604 +68853,344.26499999972316,-0.056474610770069336 +68854,344.26999999972315,-0.05647438481674979 +68855,344.27499999972315,-0.056474158907335086 +68856,344.27999999972315,-0.05647393304181631 +68857,344.28499999972314,-0.0564737072201846 +68858,344.28999999972314,-0.056473481442431035 +68859,344.29499999972313,-0.05647325570854675 +68860,344.2999999997231,-0.05647303001852285 +68861,344.3049999997231,-0.05647280437235045 +68862,344.3099999997231,-0.05647257877002069 +68863,344.3149999997231,-0.05647235321152466 +68864,344.3199999997231,-0.05647212769685351 +68865,344.3249999997231,-0.056471902225998336 +68866,344.3299999997231,-0.056471676798950286 +68867,344.3349999997231,-0.05647145141570047 +68868,344.3399999997231,-0.056471226076240014 +68869,344.3449999997231,-0.05647100078056006 +68870,344.3499999997231,-0.05647077552865173 +68871,344.3549999997231,-0.056470550320506165 +68872,344.3599999997231,-0.056470325156114484 +68873,344.36499999972307,-0.05647010003546784 +68874,344.36999999972306,-0.056469874958557355 +68875,344.37499999972306,-0.056469649925374184 +68876,344.37999999972305,-0.05646942493590946 +68877,344.38499999972305,-0.056469199990154324 +68878,344.38999999972305,-0.056468975088099914 +68879,344.39499999972304,-0.05646875022973738 +68880,344.39999999972304,-0.05646852541505788 +68881,344.40499999972303,-0.056468300644052546 +68882,344.409999999723,-0.05646807591671254 +68883,344.414999999723,-0.05646785123302901 +68884,344.419999999723,-0.05646762659299311 +68885,344.424999999723,-0.056467401996595994 +68886,344.429999999723,-0.05646717744382882 +68887,344.434999999723,-0.05646695293468274 +68888,344.439999999723,-0.05646672846914892 +68889,344.444999999723,-0.05646650404721852 +68890,344.449999999723,-0.05646627966888271 +68891,344.454999999723,-0.056466055334132646 +68892,344.459999999723,-0.05646583104295951 +68893,344.464999999723,-0.05646560679535445 +68894,344.469999999723,-0.05646538259130864 +68895,344.47499999972297,-0.05646515843081325 +68896,344.47999999972296,-0.05646493431385946 +68897,344.48499999972296,-0.056464710240438434 +68898,344.48999999972295,-0.05646448621054137 +68899,344.49499999972295,-0.05646426222415943 +68900,344.49999999972295,-0.05646403828128379 +68901,344.50499999972294,-0.05646381438190563 +68902,344.50999999972294,-0.05646359052601615 +68903,344.51499999972293,-0.05646336671360651 +68904,344.5199999997229,-0.05646314294466791 +68905,344.5249999997229,-0.05646291921919153 +68906,344.5299999997229,-0.056462695537168574 +68907,344.5349999997229,-0.05646247189859021 +68908,344.5399999997229,-0.056462248303447655 +68909,344.5449999997229,-0.05646202475173207 +68910,344.5499999997229,-0.056461801243434695 +68911,344.5549999997229,-0.056461577778546684 +68912,344.5599999997229,-0.05646135435705926 +68913,344.5649999997229,-0.056461130978963624 +68914,344.5699999997229,-0.056460907644250956 +68915,344.5749999997229,-0.05646068435291248 +68916,344.5799999997229,-0.05646046110493939 +68917,344.58499999972287,-0.056460237900322896 +68918,344.58999999972286,-0.0564600147390542 +68919,344.59499999972286,-0.05645979162112452 +68920,344.59999999972285,-0.05645956854652508 +68921,344.60499999972285,-0.05645934551524707 +68922,344.60999999972285,-0.056459122527281705 +68923,344.61499999972284,-0.05645889958262022 +68924,344.61999999972284,-0.056458676681253823 +68925,344.62499999972283,-0.05645845382317373 +68926,344.6299999997228,-0.056458231008371156 +68927,344.6349999997228,-0.056458008236837345 +68928,344.6399999997228,-0.05645778550856349 +68929,344.6449999997228,-0.05645756282354084 +68930,344.6499999997228,-0.056457340181760615 +68931,344.6549999997228,-0.05645711758321404 +68932,344.6599999997228,-0.05645689502789236 +68933,344.6649999997228,-0.056456672515786795 +68934,344.6699999997228,-0.056456450046888575 +68935,344.6749999997228,-0.056456227621188945 +68936,344.6799999997228,-0.05645600523867914 +68937,344.6849999997228,-0.056455782899350396 +68938,344.6899999997228,-0.05645556060319396 +68939,344.69499999972277,-0.05645533835020106 +68940,344.69999999972276,-0.05645511614036295 +68941,344.70499999972276,-0.056454893973670865 +68942,344.70999999972275,-0.05645467185011606 +68943,344.71499999972275,-0.056454449769689774 +68944,344.71999999972275,-0.05645422773238326 +68945,344.72499999972274,-0.056454005738187776 +68946,344.72999999972274,-0.05645378378709458 +68947,344.73499999972273,-0.05645356187909491 +68948,344.7399999997227,-0.05645334001418003 +68949,344.7449999997227,-0.056453118192341195 +68950,344.7499999997227,-0.05645289641356966 +68951,344.7549999997227,-0.056452674677856696 +68952,344.7599999997227,-0.05645245298519356 +68953,344.7649999997227,-0.056452231335571514 +68954,344.7699999997227,-0.056452009728981824 +68955,344.7749999997227,-0.05645178816541577 +68956,344.7799999997227,-0.0564515666448646 +68957,344.7849999997227,-0.0564513451673196 +68958,344.7899999997227,-0.056451123732772036 +68959,344.7949999997227,-0.05645090234121318 +68960,344.7999999997227,-0.056450680992634304 +68961,344.80499999972267,-0.056450459687026694 +68962,344.80999999972266,-0.05645023842438161 +68963,344.81499999972266,-0.05645001720469035 +68964,344.81999999972265,-0.05644979602794419 +68965,344.82499999972265,-0.056449574894134415 +68966,344.82999999972265,-0.056449353803252306 +68967,344.83499999972264,-0.05644913275528916 +68968,344.83999999972264,-0.05644891175023624 +68969,344.84499999972263,-0.05644869078808485 +68970,344.8499999997226,-0.05644846986882628 +68971,344.8549999997226,-0.05644824899245182 +68972,344.8599999997226,-0.05644802815895278 +68973,344.8649999997226,-0.05644780736832044 +68974,344.8699999997226,-0.056447586620546095 +68975,344.8749999997226,-0.05644736591562105 +68976,344.8799999997226,-0.056447145253536606 +68977,344.8849999997226,-0.05644692463428406 +68978,344.8899999997226,-0.05644670405785472 +68979,344.8949999997226,-0.05644648352423988 +68980,344.8999999997226,-0.056446263033430866 +68981,344.9049999997226,-0.05644604258541898 +68982,344.9099999997226,-0.056445822180195525 +68983,344.91499999972257,-0.05644560181775181 +68984,344.91999999972256,-0.05644538149807916 +68985,344.92499999972256,-0.056445161221168876 +68986,344.92999999972255,-0.05644494098701229 +68987,344.93499999972255,-0.0564447207956007 +68988,344.93999999972254,-0.05644450064692545 +68989,344.94499999972254,-0.05644428054097783 +68990,344.94999999972254,-0.05644406047774919 +68991,344.95499999972253,-0.05644384045723084 +68992,344.9599999997225,-0.056443620479414106 +68993,344.9649999997225,-0.056443400544290326 +68994,344.9699999997225,-0.056443180651850826 +68995,344.9749999997225,-0.05644296080208692 +68996,344.9799999997225,-0.05644274099498995 +68997,344.9849999997225,-0.056442521230551254 +68998,344.9899999997225,-0.05644230150876216 +68999,344.9949999997225,-0.056442081829614014 +69000,344.9999999997225,-0.056441862193098144 +69001,345.0049999997225,-0.05644164259920591 +69002,345.0099999997225,-0.056441423047928624 +69003,345.0149999997225,-0.05644120353925764 +69004,345.0199999997225,-0.05644098407318431 +69005,345.02499999972247,-0.05644076464969997 +69006,345.02999999972246,-0.05644054526879599 +69007,345.03499999972246,-0.056440325930463685 +69008,345.03999999972245,-0.05644010663469443 +69009,345.04499999972245,-0.056439887381479564 +69010,345.04999999972244,-0.05643966817081045 +69011,345.05499999972244,-0.05643944900267844 +69012,345.05999999972244,-0.05643922987707489 +69013,345.06499999972243,-0.056439010793991176 +69014,345.0699999997224,-0.05643879175341863 +69015,345.0749999997224,-0.05643857275534863 +69016,345.0799999997224,-0.05643835379977254 +69017,345.0849999997224,-0.05643813488668172 +69018,345.0899999997224,-0.056437916016067534 +69019,345.0949999997224,-0.05643769718792136 +69020,345.0999999997224,-0.05643747840223455 +69021,345.1049999997224,-0.056437259658998484 +69022,345.1099999997224,-0.05643704095820455 +69023,345.1149999997224,-0.05643682229984411 +69024,345.1199999997224,-0.05643660368390853 +69025,345.1249999997224,-0.056436385110389196 +69026,345.1299999997224,-0.0564361665792775 +69027,345.13499999972237,-0.056435948090564805 +69028,345.13999999972236,-0.056435729644242504 +69029,345.14499999972236,-0.056435511240301967 +69030,345.14999999972235,-0.05643529287873459 +69031,345.15499999972235,-0.056435074559531756 +69032,345.15999999972234,-0.05643485628268486 +69033,345.16499999972234,-0.05643463804818529 +69034,345.16999999972234,-0.05643441985602443 +69035,345.17499999972233,-0.05643420170619369 +69036,345.1799999997223,-0.05643398359868445 +69037,345.1849999997223,-0.0564337655334881 +69038,345.1899999997223,-0.05643354751059606 +69039,345.1949999997223,-0.05643332952999971 +69040,345.1999999997223,-0.05643311159169045 +69041,345.2049999997223,-0.0564328936956597 +69042,345.2099999997223,-0.05643267584189886 +69043,345.2149999997223,-0.05643245803039932 +69044,345.2199999997223,-0.05643224026115249 +69045,345.2249999997223,-0.0564320225341498 +69046,345.2299999997223,-0.05643180484938263 +69047,345.2349999997223,-0.05643158720684242 +69048,345.2399999997223,-0.05643136960652058 +69049,345.24499999972227,-0.056431152048408505 +69050,345.24999999972226,-0.05643093453249763 +69051,345.25499999972226,-0.05643071705877937 +69052,345.25999999972225,-0.056430499627245126 +69053,345.26499999972225,-0.05643028223788635 +69054,345.26999999972224,-0.05643006489069444 +69055,345.27499999972224,-0.056429847585660824 +69056,345.27999999972224,-0.056429630322776946 +69057,345.28499999972223,-0.05642941310203422 +69058,345.2899999997222,-0.056429195923424075 +69059,345.2949999997222,-0.05642897878693795 +69060,345.2999999997222,-0.05642876169256727 +69061,345.3049999997222,-0.05642854464030346 +69062,345.3099999997222,-0.056428327630137956 +69063,345.3149999997222,-0.056428110662062214 +69064,345.3199999997222,-0.05642789373606766 +69065,345.3249999997222,-0.05642767685214574 +69066,345.3299999997222,-0.05642746001028789 +69067,345.3349999997222,-0.05642724321048554 +69068,345.3399999997222,-0.056427026452730164 +69069,345.3449999997222,-0.05642680973701319 +69070,345.3499999997222,-0.05642659306332607 +69071,345.35499999972217,-0.05642637643166024 +69072,345.35999999972216,-0.05642615984200718 +69073,345.36499999972216,-0.05642594329435832 +69074,345.36999999972215,-0.056425726788705124 +69075,345.37499999972215,-0.05642551032503903 +69076,345.37999999972214,-0.05642529390335152 +69077,345.38499999972214,-0.05642507752363403 +69078,345.38999999972214,-0.05642486118587804 +69079,345.39499999972213,-0.056424644890075 +69080,345.3999999997221,-0.05642442863621638 +69081,345.4049999997221,-0.05642421242429363 +69082,345.4099999997221,-0.05642399625429823 +69083,345.4149999997221,-0.056423780126221644 +69084,345.4199999997221,-0.05642356404005536 +69085,345.4249999997221,-0.05642334799579081 +69086,345.4299999997221,-0.05642313199341949 +69087,345.4349999997221,-0.056422916032932875 +69088,345.4399999997221,-0.05642270011432244 +69089,345.4449999997221,-0.056422484237579666 +69090,345.4499999997221,-0.05642226840269602 +69091,345.4549999997221,-0.056422052609663 +69092,345.4599999997221,-0.05642183685847206 +69093,345.46499999972207,-0.05642162114911471 +69094,345.46999999972206,-0.05642140548158243 +69095,345.47499999972206,-0.05642118985586669 +69096,345.47999999972205,-0.056420974271958996 +69097,345.48499999972205,-0.056420758729850834 +69098,345.48999999972204,-0.05642054322953368 +69099,345.49499999972204,-0.056420327770999056 +69100,345.49999999972204,-0.056420112354238425 +69101,345.50499999972203,-0.05641989697924331 +69102,345.509999999722,-0.056419681646005186 +69103,345.514999999722,-0.056419466354515564 +69104,345.519999999722,-0.056419251104765936 +69105,345.524999999722,-0.056419035896747814 +69106,345.529999999722,-0.05641882073045269 +69107,345.534999999722,-0.05641860560587209 +69108,345.539999999722,-0.0564183905229975 +69109,345.544999999722,-0.056418175481820446 +69110,345.549999999722,-0.05641796048233242 +69111,345.554999999722,-0.056417745524524936 +69112,345.559999999722,-0.05641753060838951 +69113,345.564999999722,-0.056417315733917665 +69114,345.569999999722,-0.05641710090110089 +69115,345.57499999972197,-0.056416886109930744 +69116,345.57999999972196,-0.05641667136039871 +69117,345.58499999972196,-0.056416456652496325 +69118,345.58999999972195,-0.056416241986215115 +69119,345.59499999972195,-0.056416027361546585 +69120,345.59999999972194,-0.05641581277848228 +69121,345.60499999972194,-0.05641559823701371 +69122,345.60999999972194,-0.05641538373713242 +69123,345.61499999972193,-0.056415169278829926 +69124,345.6199999997219,-0.05641495486209777 +69125,345.6249999997219,-0.05641474048692749 +69126,345.6299999997219,-0.05641452615331059 +69127,345.6349999997219,-0.05641431186123863 +69128,345.6399999997219,-0.05641409761070315 +69129,345.6449999997219,-0.05641388340169569 +69130,345.6499999997219,-0.05641366923420778 +69131,345.6549999997219,-0.056413455108230946 +69132,345.6599999997219,-0.05641324102375677 +69133,345.6649999997219,-0.05641302698077676 +69134,345.6699999997219,-0.056412812979282495 +69135,345.6749999997219,-0.0564125990192655 +69136,345.6799999997219,-0.05641238510071735 +69137,345.68499999972187,-0.056412171223629556 +69138,345.68999999972186,-0.05641195738799371 +69139,345.69499999972186,-0.05641174359380135 +69140,345.69999999972185,-0.05641152984104403 +69141,345.70499999972185,-0.05641131612971331 +69142,345.70999999972184,-0.056411102459800744 +69143,345.71499999972184,-0.0564108888312979 +69144,345.71999999972184,-0.056410675244196344 +69145,345.72499999972183,-0.056410461698487624 +69146,345.7299999997218,-0.056410248194163314 +69147,345.7349999997218,-0.056410034731214996 +69148,345.7399999997218,-0.05640982130963421 +69149,345.7449999997218,-0.05640960792941255 +69150,345.7499999997218,-0.05640939459054157 +69151,345.7549999997218,-0.05640918129301284 +69152,345.7599999997218,-0.05640896803681794 +69153,345.7649999997218,-0.05640875482194845 +69154,345.7699999997218,-0.056408541648395955 +69155,345.7749999997218,-0.056408328516152025 +69156,345.7799999997218,-0.05640811542520824 +69157,345.7849999997218,-0.05640790237555618 +69158,345.7899999997218,-0.05640768936718743 +69159,345.79499999972177,-0.056407476400093574 +69160,345.79999999972176,-0.0564072634742662 +69161,345.80499999972176,-0.056407050589696896 +69162,345.80999999972175,-0.05640683774637725 +69163,345.81499999972175,-0.05640662494429886 +69164,345.81999999972174,-0.05640641218345331 +69165,345.82499999972174,-0.0564061994638322 +69166,345.82999999972174,-0.05640598678542712 +69167,345.83499999972173,-0.05640577414822967 +69168,345.8399999997217,-0.05640556155223145 +69169,345.8449999997217,-0.056405348997424054 +69170,345.8499999997217,-0.0564051364837991 +69171,345.8549999997217,-0.056404924011348175 +69172,345.8599999997217,-0.0564047115800629 +69173,345.8649999997217,-0.056404499189934856 +69174,345.8699999997217,-0.056404286840955664 +69175,345.8749999997217,-0.056404074533116945 +69176,345.8799999997217,-0.0564038622664103 +69177,345.8849999997217,-0.05640365004082735 +69178,345.8899999997217,-0.056403437856359685 +69179,345.8949999997217,-0.056403225712998946 +69180,345.8999999997217,-0.056403013610736734 +69181,345.90499999972167,-0.056402801549564674 +69182,345.90999999972166,-0.056402589529474384 +69183,345.91499999972166,-0.05640237755045749 +69184,345.91999999972165,-0.05640216561250561 +69185,345.92499999972165,-0.056401953715610374 +69186,345.92999999972164,-0.056401741859763405 +69187,345.93499999972164,-0.056401530044956336 +69188,345.93999999972164,-0.056401318271180785 +69189,345.94499999972163,-0.05640110653842838 +69190,345.9499999997216,-0.05640089484669076 +69191,345.9549999997216,-0.056400683195959575 +69192,345.9599999997216,-0.05640047158622644 +69193,345.9649999997216,-0.05640026001748301 +69194,345.9699999997216,-0.056400048489720904 +69195,345.9749999997216,-0.05639983700293176 +69196,345.9799999997216,-0.05639962555710723 +69197,345.9849999997216,-0.05639941415223896 +69198,345.9899999997216,-0.05639920278831859 +69199,345.9949999997216,-0.05639899146533776 +69200,345.9999999997216,-0.05639878018328812 +69201,346.0049999997216,-0.05639856894216133 +69202,346.0099999997216,-0.056398357741949026 +69203,346.01499999972157,-0.05639814658264288 +69204,346.01999999972156,-0.05639793546423452 +69205,346.02499999972156,-0.05639772438671562 +69206,346.02999999972155,-0.05639751335007783 +69207,346.03499999972155,-0.0563973023543128 +69208,346.03999999972154,-0.05639709139941221 +69209,346.04499999972154,-0.05639688048536769 +69210,346.04999999972154,-0.05639666961217093 +69211,346.05499999972153,-0.056396458779813585 +69212,346.0599999997215,-0.05639624798828732 +69213,346.0649999997215,-0.056396037237583796 +69214,346.0699999997215,-0.0563958265276947 +69215,346.0749999997215,-0.05639561585861168 +69216,346.0799999997215,-0.05639540523032642 +69217,346.0849999997215,-0.05639519464283059 +69218,346.0899999997215,-0.05639498409611588 +69219,346.0949999997215,-0.05639477359017394 +69220,346.0999999997215,-0.056394563124996466 +69221,346.1049999997215,-0.05639435270057513 +69222,346.1099999997215,-0.05639414231690161 +69223,346.1149999997215,-0.056393931973967595 +69224,346.1199999997215,-0.05639372167176477 +69225,346.12499999972147,-0.056393511410284806 +69226,346.12999999972146,-0.05639330118951941 +69227,346.13499999972146,-0.05639309100946025 +69228,346.13999999972145,-0.056392880870099034 +69229,346.14499999972145,-0.05639267077142745 +69230,346.14999999972144,-0.056392460713437176 +69231,346.15499999972144,-0.05639225069611992 +69232,346.15999999972144,-0.05639204071946737 +69233,346.16499999972143,-0.056391830783471236 +69234,346.1699999997214,-0.0563916208881232 +69235,346.1749999997214,-0.05639141103341498 +69236,346.1799999997214,-0.05639120121933827 +69237,346.1849999997214,-0.05639099144588477 +69238,346.1899999997214,-0.05639078171304618 +69239,346.1949999997214,-0.05639057202081422 +69240,346.1999999997214,-0.056390362369180595 +69241,346.2049999997214,-0.05639015275813701 +69242,346.2099999997214,-0.05638994318767517 +69243,346.2149999997214,-0.05638973365778681 +69244,346.2199999997214,-0.05638952416846361 +69245,346.2249999997214,-0.05638931471969731 +69246,346.2299999997214,-0.05638910531147963 +69247,346.23499999972137,-0.05638889594380227 +69248,346.23999999972136,-0.056388686616656955 +69249,346.24499999972136,-0.056388477330035415 +69250,346.24999999972135,-0.05638826808392936 +69251,346.25499999972135,-0.056388058878330524 +69252,346.25999999972134,-0.05638784971323064 +69253,346.26499999972134,-0.056387640588621425 +69254,346.26999999972134,-0.056387431504494614 +69255,346.27499999972133,-0.05638722246084193 +69256,346.2799999997213,-0.0563870134576551 +69257,346.2849999997213,-0.056386804494925884 +69258,346.2899999997213,-0.05638659557264599 +69259,346.2949999997213,-0.05638638669080716 +69260,346.2999999997213,-0.056386177849401135 +69261,346.3049999997213,-0.05638596904841967 +69262,346.3099999997213,-0.05638576028785448 +69263,346.3149999997213,-0.05638555156769732 +69264,346.3199999997213,-0.05638534288793993 +69265,346.3249999997213,-0.05638513424857406 +69266,346.3299999997213,-0.05638492564959145 +69267,346.3349999997213,-0.05638471709098385 +69268,346.3399999997213,-0.05638450857274303 +69269,346.34499999972127,-0.05638430009486072 +69270,346.34999999972126,-0.05638409165732867 +69271,346.35499999972126,-0.05638388326013865 +69272,346.35999999972125,-0.0563836749032824 +69273,346.36499999972125,-0.05638346658675168 +69274,346.36999999972124,-0.05638325831053827 +69275,346.37499999972124,-0.0563830500746339 +69276,346.37999999972124,-0.05638284187903035 +69277,346.38499999972123,-0.0563826337237194 +69278,346.3899999997212,-0.05638242560869277 +69279,346.3949999997212,-0.05638221753394227 +69280,346.3999999997212,-0.056382009499459644 +69281,346.4049999997212,-0.05638180150523667 +69282,346.4099999997212,-0.05638159355126511 +69283,346.4149999997212,-0.05638138563753674 +69284,346.4199999997212,-0.05638117776404335 +69285,346.4249999997212,-0.05638096993077669 +69286,346.4299999997212,-0.05638076213772854 +69287,346.4349999997212,-0.0563805543848907 +69288,346.4399999997212,-0.05638034667225493 +69289,346.4449999997212,-0.05638013899981301 +69290,346.4499999997212,-0.05637993136755675 +69291,346.45499999972117,-0.05637972377547792 +69292,346.45999999972116,-0.05637951622356827 +69293,346.46499999972116,-0.05637930871181965 +69294,346.46999999972115,-0.05637910124022381 +69295,346.47499999972115,-0.056378893808772534 +69296,346.47999999972114,-0.05637868641745763 +69297,346.48499999972114,-0.0563784790662709 +69298,346.48999999972114,-0.05637827175520413 +69299,346.49499999972113,-0.0563780644842491 +69300,346.4999999997211,-0.056377857253397626 +69301,346.5049999997211,-0.0563776500626415 +69302,346.5099999997211,-0.056377442911972525 +69303,346.5149999997211,-0.0563772358013825 +69304,346.5199999997211,-0.056377028730863234 +69305,346.5249999997211,-0.05637682170040654 +69306,346.5299999997211,-0.05637661471000421 +69307,346.5349999997211,-0.05637640775964806 +69308,346.5399999997211,-0.05637620084932989 +69309,346.5449999997211,-0.05637599397904153 +69310,346.5499999997211,-0.05637578714877476 +69311,346.5549999997211,-0.056375580358521436 +69312,346.5599999997211,-0.05637537360827335 +69313,346.56499999972107,-0.056375166898022314 +69314,346.56999999972106,-0.05637496022776016 +69315,346.57499999972106,-0.056374753597478705 +69316,346.57999999972105,-0.056374547007169755 +69317,346.58499999972105,-0.056374340456825156 +69318,346.58999999972104,-0.056374133946436714 +69319,346.59499999972104,-0.05637392747599627 +69320,346.59999999972104,-0.056373721045495644 +69321,346.60499999972103,-0.05637351465492667 +69322,346.609999999721,-0.05637330830428117 +69323,346.614999999721,-0.05637310199355098 +69324,346.619999999721,-0.05637289572272793 +69325,346.624999999721,-0.05637268949180387 +69326,346.629999999721,-0.056372483300770625 +69327,346.634999999721,-0.05637227714962003 +69328,346.639999999721,-0.056372071038343935 +69329,346.644999999721,-0.05637186496693416 +69330,346.649999999721,-0.056371658935382554 +69331,346.654999999721,-0.056371452943680976 +69332,346.659999999721,-0.05637124699182127 +69333,346.664999999721,-0.056371041079795264 +69334,346.66999999972097,-0.056370835207594824 +69335,346.67499999972097,-0.05637062937521179 +69336,346.67999999972096,-0.05637042358263801 +69337,346.68499999972096,-0.05637021782986536 +69338,346.68999999972095,-0.056370012116885665 +69339,346.69499999972095,-0.056369806443690794 +69340,346.69999999972094,-0.056369600810272605 +69341,346.70499999972094,-0.05636939521662295 +69342,346.70999999972094,-0.05636918966273369 +69343,346.71499999972093,-0.056368984148596694 +69344,346.7199999997209,-0.056368778674203826 +69345,346.7249999997209,-0.05636857323954695 +69346,346.7299999997209,-0.05636836784461792 +69347,346.7349999997209,-0.05636816248940862 +69348,346.7399999997209,-0.056367957173910896 +69349,346.7449999997209,-0.05636775189811664 +69350,346.7499999997209,-0.056367546662017716 +69351,346.7549999997209,-0.05636734146560599 +69352,346.7599999997209,-0.056367136308873356 +69353,346.7649999997209,-0.05636693119181167 +69354,346.7699999997209,-0.056366726114412825 +69355,346.7749999997209,-0.05636652107666869 +69356,346.77999999972087,-0.05636631607857115 +69357,346.78499999972087,-0.05636611112011208 +69358,346.78999999972086,-0.05636590620128338 +69359,346.79499999972086,-0.05636570132207692 +69360,346.79999999972085,-0.05636549648248459 +69361,346.80499999972085,-0.056365291682498285 +69362,346.80999999972084,-0.05636508692210988 +69363,346.81499999972084,-0.05636488220131129 +69364,346.81999999972084,-0.05636467752009439 +69365,346.82499999972083,-0.05636447287845107 +69366,346.8299999997208,-0.05636426827637324 +69367,346.8349999997208,-0.05636406371385279 +69368,346.8399999997208,-0.05636385919088161 +69369,346.8449999997208,-0.05636365470745162 +69370,346.8499999997208,-0.056363450263554694 +69371,346.8549999997208,-0.05636324585918275 +69372,346.8599999997208,-0.056363041494327706 +69373,346.8649999997208,-0.056362837168981446 +69374,346.8699999997208,-0.05636263288313587 +69375,346.8749999997208,-0.056362428636782924 +69376,346.8799999997208,-0.056362224429914495 +69377,346.8849999997208,-0.05636202026252248 +69378,346.88999999972077,-0.05636181613459881 +69379,346.89499999972077,-0.056361612046135406 +69380,346.89999999972076,-0.05636140799712418 +69381,346.90499999972076,-0.056361203987557035 +69382,346.90999999972075,-0.056361000017425895 +69383,346.91499999972075,-0.05636079608672269 +69384,346.91999999972074,-0.056360592195439325 +69385,346.92499999972074,-0.05636038834356775 +69386,346.92999999972074,-0.05636018453109986 +69387,346.93499999972073,-0.0563599807580276 +69388,346.9399999997207,-0.0563597770243429 +69389,346.9449999997207,-0.056359573330037695 +69390,346.9499999997207,-0.056359369675103896 +69391,346.9549999997207,-0.056359166059533436 +69392,346.9599999997207,-0.05635896248331825 +69393,346.9649999997207,-0.05635875894645028 +69394,346.9699999997207,-0.05635855544892147 +69395,346.9749999997207,-0.05635835199072373 +69396,346.9799999997207,-0.056358148571849044 +69397,346.9849999997207,-0.05635794519228931 +69398,346.9899999997207,-0.0563577418520365 +69399,346.9949999997207,-0.05635753855108254 +69400,346.99999999972067,-0.056357335289419386 +69401,347.00499999972067,-0.05635713206703896 +69402,347.00999999972066,-0.056356928883933254 +69403,347.01499999972066,-0.05635672574009418 +69404,347.01999999972065,-0.056356522635513696 +69405,347.02499999972065,-0.05635631957018377 +69406,347.02999999972064,-0.056356116544096356 +69407,347.03499999972064,-0.056355913557243384 +69408,347.03999999972064,-0.05635571060961684 +69409,347.04499999972063,-0.05635550770120865 +69410,347.0499999997206,-0.0563553048320108 +69411,347.0549999997206,-0.05635510200201526 +69412,347.0599999997206,-0.05635489921121396 +69413,347.0649999997206,-0.056354696459598896 +69414,347.0699999997206,-0.056354493747162025 +69415,347.0749999997206,-0.0563542910738953 +69416,347.0799999997206,-0.0563540884397907 +69417,347.0849999997206,-0.05635388584484019 +69418,347.0899999997206,-0.05635368328903574 +69419,347.0949999997206,-0.05635348077236934 +69420,347.0999999997206,-0.05635327829483295 +69421,347.1049999997206,-0.05635307585641854 +69422,347.10999999972057,-0.05635287345711811 +69423,347.11499999972057,-0.056352671096923615 +69424,347.11999999972056,-0.05635246877582705 +69425,347.12499999972056,-0.05635226649382039 +69426,347.12999999972055,-0.056352064250895624 +69427,347.13499999972055,-0.05635186204704473 +69428,347.13999999972054,-0.056351659882259694 +69429,347.14499999972054,-0.05635145775653251 +69430,347.14999999972054,-0.05635125566985517 +69431,347.15499999972053,-0.05635105362221964 +69432,347.1599999997205,-0.056350851613617935 +69433,347.1649999997205,-0.05635064964404205 +69434,347.1699999997205,-0.05635044771348397 +69435,347.1749999997205,-0.0563502458219357 +69436,347.1799999997205,-0.05635004396938923 +69437,347.1849999997205,-0.056349842155836556 +69438,347.1899999997205,-0.05634964038126968 +69439,347.1949999997205,-0.05634943864568061 +69440,347.1999999997205,-0.056349236949061354 +69441,347.2049999997205,-0.05634903529140391 +69442,347.2099999997205,-0.05634883367270028 +69443,347.2149999997205,-0.05634863209294248 +69444,347.21999999972047,-0.05634843055212251 +69445,347.22499999972047,-0.056348229050232394 +69446,347.22999999972046,-0.05634802758726413 +69447,347.23499999972046,-0.05634782616320975 +69448,347.23999999972045,-0.056347624778061246 +69449,347.24499999972045,-0.05634742343181066 +69450,347.24999999972044,-0.05634722212444999 +69451,347.25499999972044,-0.05634702085597125 +69452,347.25999999972043,-0.056346819626366486 +69453,347.26499999972043,-0.05634661843562771 +69454,347.2699999997204,-0.05634641728374693 +69455,347.2749999997204,-0.05634621617071619 +69456,347.2799999997204,-0.05634601509652751 +69457,347.2849999997204,-0.056345814061172915 +69458,347.2899999997204,-0.05634561306464444 +69459,347.2949999997204,-0.05634541210693412 +69460,347.2999999997204,-0.05634521118803397 +69461,347.3049999997204,-0.05634501030793605 +69462,347.3099999997204,-0.056344809466632374 +69463,347.3149999997204,-0.05634460866411499 +69464,347.3199999997204,-0.056344407900375926 +69465,347.3249999997204,-0.05634420717540724 +69466,347.32999999972037,-0.05634400648920095 +69467,347.33499999972037,-0.05634380584174912 +69468,347.33999999972036,-0.05634360523304378 +69469,347.34499999972036,-0.05634340466307697 +69470,347.34999999972035,-0.056343204131840754 +69471,347.35499999972035,-0.05634300363932716 +69472,347.35999999972034,-0.05634280318552827 +69473,347.36499999972034,-0.0563426027704361 +69474,347.36999999972033,-0.05634240239404272 +69475,347.37499999972033,-0.05634220205634018 +69476,347.3799999997203,-0.05634200175732055 +69477,347.3849999997203,-0.05634180149697586 +69478,347.3899999997203,-0.056341601275298206 +69479,347.3949999997203,-0.056341401092279614 +69480,347.3999999997203,-0.05634120094791216 +69481,347.4049999997203,-0.0563410008421879 +69482,347.4099999997203,-0.0563408007750989 +69483,347.4149999997203,-0.05634060074663722 +69484,347.4199999997203,-0.05634040075679495 +69485,347.4249999997203,-0.056340200805564136 +69486,347.4299999997203,-0.05634000089293686 +69487,347.4349999997203,-0.05633980101890518 +69488,347.43999999972027,-0.05633960118346117 +69489,347.44499999972027,-0.05633940138659692 +69490,347.44999999972026,-0.0563392016283045 +69491,347.45499999972026,-0.056339001908575985 +69492,347.45999999972025,-0.05633880222740345 +69493,347.46499999972025,-0.05633860258477897 +69494,347.46999999972024,-0.05633840298069464 +69495,347.47499999972024,-0.05633820341514253 +69496,347.47999999972023,-0.05633800388811474 +69497,347.48499999972023,-0.05633780439960334 +69498,347.4899999997202,-0.05633760494960043 +69499,347.4949999997202,-0.056337405538098094 +69500,347.4999999997202,-0.056337206165088416 +69501,347.5049999997202,-0.056337006830563495 +69502,347.5099999997202,-0.05633680753451543 +69503,347.5149999997202,-0.056336608276936304 +69504,347.5199999997202,-0.05633640905781822 +69505,347.5249999997202,-0.05633620987715325 +69506,347.5299999997202,-0.05633601073493352 +69507,347.5349999997202,-0.05633581163115113 +69508,347.5399999997202,-0.05633561256579817 +69509,347.5449999997202,-0.056335413538866765 +69510,347.54999999972017,-0.05633521455034898 +69511,347.55499999972017,-0.05633501560023696 +69512,347.55999999972016,-0.0563348166885228 +69513,347.56499999972016,-0.056334617815198586 +69514,347.56999999972015,-0.05633441898025644 +69515,347.57499999972015,-0.0563342201836885 +69516,347.57999999972014,-0.05633402142548685 +69517,347.58499999972014,-0.05633382270564361 +69518,347.58999999972013,-0.05633362402415091 +69519,347.59499999972013,-0.05633342538100085 +69520,347.5999999997201,-0.05633322677618555 +69521,347.6049999997201,-0.05633302820969715 +69522,347.6099999997201,-0.056332829681527745 +69523,347.6149999997201,-0.056332631191669466 +69524,347.6199999997201,-0.056332432740114444 +69525,347.6249999997201,-0.0563322343268548 +69526,347.6299999997201,-0.05633203595188267 +69527,347.6349999997201,-0.056331837615190186 +69528,347.6399999997201,-0.056331639316769454 +69529,347.6449999997201,-0.05633144105661262 +69530,347.6499999997201,-0.05633124283471182 +69531,347.6549999997201,-0.056331044651059176 +69532,347.65999999972007,-0.056330846505646834 +69533,347.66499999972007,-0.05633064839846694 +69534,347.66999999972006,-0.05633045032951161 +69535,347.67499999972006,-0.056330252298773004 +69536,347.67999999972005,-0.05633005430624326 +69537,347.68499999972005,-0.056329856351914516 +69538,347.68999999972004,-0.05632965843577891 +69539,347.69499999972004,-0.0563294605578286 +69540,347.69999999972003,-0.05632926271805573 +69541,347.70499999972003,-0.05632906491645244 +69542,347.70999999972,-0.05632886715301089 +69543,347.71499999972,-0.05632866942772323 +69544,347.71999999972,-0.05632847174058161 +69545,347.72499999972,-0.05632827409157818 +69546,347.72999999972,-0.056328076480705105 +69547,347.73499999972,-0.05632787890795454 +69548,347.73999999972,-0.05632768137331866 +69549,347.74499999972,-0.05632748387678959 +69550,347.74999999972,-0.056327286418359504 +69551,347.75499999972,-0.05632708899802059 +69552,347.75999999972,-0.05632689161576498 +69553,347.76499999972,-0.05632669427158484 +69554,347.76999999971997,-0.05632649696547236 +69555,347.77499999971997,-0.0563262996974197 +69556,347.77999999971996,-0.05632610246741902 +69557,347.78499999971996,-0.0563259052754625 +69558,347.78999999971995,-0.05632570812154232 +69559,347.79499999971995,-0.05632551100565064 +69560,347.79999999971994,-0.05632531392777965 +69561,347.80499999971994,-0.05632511688792151 +69562,347.80999999971993,-0.0563249198860684 +69563,347.81499999971993,-0.056324722922212515 +69564,347.8199999997199,-0.05632452599634603 +69565,347.8249999997199,-0.056324329108461114 +69566,347.8299999997199,-0.056324132258549965 +69567,347.8349999997199,-0.056323935446604766 +69568,347.8399999997199,-0.05632373867261771 +69569,347.8449999997199,-0.056323541936580984 +69570,347.8499999997199,-0.05632334523848677 +69571,347.8549999997199,-0.05632314857832725 +69572,347.8599999997199,-0.056322951956094644 +69573,347.8649999997199,-0.05632275537178113 +69574,347.8699999997199,-0.05632255882537889 +69575,347.8749999997199,-0.05632236231688015 +69576,347.87999999971987,-0.05632216584627709 +69577,347.88499999971987,-0.05632196941356192 +69578,347.88999999971986,-0.05632177301872683 +69579,347.89499999971986,-0.05632157666176403 +69580,347.89999999971985,-0.056321380342665706 +69581,347.90499999971985,-0.05632118406142409 +69582,347.90999999971984,-0.05632098781803137 +69583,347.91499999971984,-0.05632079161247977 +69584,347.91999999971983,-0.05632059544476148 +69585,347.92499999971983,-0.056320399314868735 +69586,347.9299999997198,-0.05632020322279374 +69587,347.9349999997198,-0.05632000716852869 +69588,347.9399999997198,-0.05631981115206581 +69589,347.9449999997198,-0.05631961517339733 +69590,347.9499999997198,-0.05631941923251545 +69591,347.9549999997198,-0.056319223329412395 +69592,347.9599999997198,-0.05631902746408039 +69593,347.9649999997198,-0.05631883163651166 +69594,347.9699999997198,-0.056318635846698425 +69595,347.9749999997198,-0.0563184400946329 +69596,347.9799999997198,-0.05631824438030734 +69597,347.9849999997198,-0.056318048703713944 +69598,347.98999999971977,-0.05631785306484496 +69599,347.99499999971977,-0.0563176574636926 +69600,347.99999999971976,-0.056317461900249104 +69601,348.00499999971976,-0.0563172663745067 +69602,348.00999999971975,-0.05631707088645765 +69603,348.01499999971975,-0.05631687543609415 +69604,348.01999999971974,-0.05631668002340847 +69605,348.02499999971974,-0.05631648464839283 +69606,348.02999999971973,-0.056316289311039484 +69607,348.03499999971973,-0.05631609401134067 +69608,348.0399999997197,-0.05631589874928862 +69609,348.0449999997197,-0.0563157035248756 +69610,348.0499999997197,-0.05631550833809385 +69611,348.0549999997197,-0.05631531318893561 +69612,348.0599999997197,-0.056315118077393124 +69613,348.0649999997197,-0.056314923003458646 +69614,348.0699999997197,-0.056314727967124445 +69615,348.0749999997197,-0.05631453296838275 +69616,348.0799999997197,-0.05631433800722583 +69617,348.0849999997197,-0.056314143083645934 +69618,348.0899999997197,-0.05631394819763533 +69619,348.0949999997197,-0.05631375334918626 +69620,348.09999999971967,-0.056313558538290995 +69621,348.10499999971967,-0.056313363764941796 +69622,348.10999999971966,-0.05631316902913094 +69623,348.11499999971966,-0.05631297433085067 +69624,348.11999999971965,-0.05631277967009325 +69625,348.12499999971965,-0.05631258504685096 +69626,348.12999999971964,-0.056312390461116066 +69627,348.13499999971964,-0.05631219591288084 +69628,348.13999999971963,-0.05631200140213754 +69629,348.14499999971963,-0.05631180692887845 +69630,348.1499999997196,-0.05631161249309585 +69631,348.1549999997196,-0.05631141809478202 +69632,348.1599999997196,-0.05631122373392921 +69633,348.1649999997196,-0.05631102941052971 +69634,348.1699999997196,-0.05631083512457582 +69635,348.1749999997196,-0.056310640876059796 +69636,348.1799999997196,-0.05631044666497392 +69637,348.1849999997196,-0.0563102524913105 +69638,348.1899999997196,-0.0563100583550618 +69639,348.1949999997196,-0.05630986425622011 +69640,348.1999999997196,-0.05630967019477773 +69641,348.2049999997196,-0.05630947617072694 +69642,348.20999999971957,-0.05630928218406004 +69643,348.21499999971957,-0.05630908823476931 +69644,348.21999999971956,-0.05630889432284704 +69645,348.22499999971956,-0.05630870044828554 +69646,348.22999999971955,-0.05630850661107709 +69647,348.23499999971955,-0.056308312811214026 +69648,348.23999999971954,-0.05630811904868861 +69649,348.24499999971954,-0.05630792532349315 +69650,348.24999999971953,-0.056307731635619945 +69651,348.25499999971953,-0.056307537985061315 +69652,348.2599999997195,-0.05630734437180955 +69653,348.2649999997195,-0.05630715079585696 +69654,348.2699999997195,-0.056306957257195846 +69655,348.2749999997195,-0.056306763755818535 +69656,348.2799999997195,-0.05630657029171734 +69657,348.2849999997195,-0.056306376864884544 +69658,348.2899999997195,-0.05630618347531248 +69659,348.2949999997195,-0.05630599012299346 +69660,348.2999999997195,-0.056305796807919806 +69661,348.3049999997195,-0.05630560353008381 +69662,348.3099999997195,-0.05630541028947784 +69663,348.3149999997195,-0.056305217086094164 +69664,348.31999999971947,-0.05630502391992512 +69665,348.32499999971947,-0.05630483079096305 +69666,348.32999999971946,-0.05630463769920027 +69667,348.33499999971946,-0.0563044446446291 +69668,348.33999999971945,-0.05630425162724187 +69669,348.34499999971945,-0.0563040586470309 +69670,348.34999999971944,-0.05630386570398852 +69671,348.35499999971944,-0.05630367279810707 +69672,348.35999999971943,-0.0563034799293789 +69673,348.36499999971943,-0.0563032870977963 +69674,348.3699999997194,-0.05630309430335164 +69675,348.3749999997194,-0.056302901546037246 +69676,348.3799999997194,-0.056302708825845475 +69677,348.3849999997194,-0.05630251614276864 +69678,348.3899999997194,-0.05630232349679909 +69679,348.3949999997194,-0.05630213088792917 +69680,348.3999999997194,-0.056301938316151226 +69681,348.4049999997194,-0.0563017457814576 +69682,348.4099999997194,-0.056301553283840636 +69683,348.4149999997194,-0.056301360823292686 +69684,348.4199999997194,-0.05630116839980609 +69685,348.4249999997194,-0.056300976013373215 +69686,348.42999999971937,-0.05630078366398641 +69687,348.43499999971937,-0.05630059135163802 +69688,348.43999999971936,-0.0563003990763204 +69689,348.44499999971936,-0.05630020683802592 +69690,348.44999999971935,-0.05630001463674692 +69691,348.45499999971935,-0.056299822472475766 +69692,348.45999999971934,-0.05629963034520483 +69693,348.46499999971934,-0.056299438254926455 +69694,348.46999999971933,-0.05629924620163303 +69695,348.47499999971933,-0.056299054185316895 +69696,348.4799999997193,-0.05629886220597041 +69697,348.4849999997193,-0.05629867026358596 +69698,348.4899999997193,-0.05629847835815592 +69699,348.4949999997193,-0.05629828648967265 +69700,348.4999999997193,-0.056298094658128524 +69701,348.5049999997193,-0.0562979028635159 +69702,348.5099999997193,-0.056297711105827174 +69703,348.5149999997193,-0.056297519385054715 +69704,348.5199999997193,-0.056297327701190884 +69705,348.5249999997193,-0.05629713605422808 +69706,348.5299999997193,-0.05629694444415867 +69707,348.5349999997193,-0.05629675287097504 +69708,348.53999999971927,-0.05629656133466958 +69709,348.54499999971927,-0.05629636983523467 +69710,348.54999999971926,-0.056296178372662695 +69711,348.55499999971926,-0.056295986946946035 +69712,348.55999999971925,-0.05629579555807707 +69713,348.56499999971925,-0.056295604206048226 +69714,348.56999999971924,-0.05629541289085187 +69715,348.57499999971924,-0.05629522161248038 +69716,348.57999999971923,-0.05629503037092616 +69717,348.58499999971923,-0.056294839166181616 +69718,348.5899999997192,-0.05629464799823914 +69719,348.5949999997192,-0.05629445686709113 +69720,348.5999999997192,-0.05629426577272997 +69721,348.6049999997192,-0.056294074715148086 +69722,348.6099999997192,-0.05629388369433787 +69723,348.6149999997192,-0.05629369271029171 +69724,348.6199999997192,-0.056293501763002025 +69725,348.6249999997192,-0.05629331085246122 +69726,348.6299999997192,-0.056293119978661696 +69727,348.6349999997192,-0.056292929141595865 +69728,348.6399999997192,-0.05629273834125614 +69729,348.6449999997192,-0.05629254757763494 +69730,348.64999999971917,-0.05629235685072466 +69731,348.65499999971917,-0.05629216616051772 +69732,348.65999999971916,-0.056291975507006556 +69733,348.66499999971916,-0.05629178489018355 +69734,348.66999999971915,-0.05629159431004115 +69735,348.67499999971915,-0.05629140376657176 +69736,348.67999999971914,-0.056291213259767804 +69737,348.68499999971914,-0.056291022789621704 +69738,348.68999999971913,-0.05629083235612589 +69739,348.69499999971913,-0.056290641959272775 +69740,348.6999999997191,-0.056290451599054804 +69741,348.7049999997191,-0.05629026127546439 +69742,348.7099999997191,-0.056290070988493965 +69743,348.7149999997191,-0.05628988073813596 +69744,348.7199999997191,-0.056289690524382804 +69745,348.7249999997191,-0.056289500347226934 +69746,348.7299999997191,-0.05628931020666079 +69747,348.7349999997191,-0.0562891201026768 +69748,348.7399999997191,-0.056288930035267415 +69749,348.7449999997191,-0.056288740004425054 +69750,348.7499999997191,-0.05628855001014218 +69751,348.7549999997191,-0.05628836005241121 +69752,348.75999999971907,-0.056288170131224606 +69753,348.76499999971907,-0.056287980246574804 +69754,348.76999999971906,-0.05628779039845425 +69755,348.77499999971906,-0.05628760058685539 +69756,348.77999999971905,-0.05628741081177067 +69757,348.78499999971905,-0.056287221073192555 +69758,348.78999999971904,-0.056287031371113475 +69759,348.79499999971904,-0.05628684170552589 +69760,348.79999999971903,-0.05628665207642226 +69761,348.80499999971903,-0.056286462483795034 +69762,348.809999999719,-0.05628627292763669 +69763,348.814999999719,-0.056286083407939655 +69764,348.819999999719,-0.05628589392469641 +69765,348.824999999719,-0.0562857044778994 +69766,348.829999999719,-0.0562855150675411 +69767,348.834999999719,-0.056285325693613955 +69768,348.839999999719,-0.05628513635611046 +69769,348.844999999719,-0.05628494705502306 +69770,348.849999999719,-0.05628475779034422 +69771,348.854999999719,-0.056284568562066414 +69772,348.859999999719,-0.056284379370182124 +69773,348.864999999719,-0.0562841902146838 +69774,348.86999999971897,-0.05628400109556394 +69775,348.87499999971897,-0.056283812012814995 +69776,348.87999999971896,-0.05628362296642945 +69777,348.88499999971896,-0.05628343395639979 +69778,348.88999999971895,-0.056283244982718486 +69779,348.89499999971895,-0.05628305604537802 +69780,348.89999999971894,-0.05628286714437087 +69781,348.90499999971894,-0.056282678279689524 +69782,348.90999999971893,-0.05628248945132645 +69783,348.91499999971893,-0.056282300659274156 +69784,348.9199999997189,-0.056282111903525105 +69785,348.9249999997189,-0.056281923184071804 +69786,348.9299999997189,-0.05628173450090674 +69787,348.9349999997189,-0.0562815458540224 +69788,348.9399999997189,-0.05628135724341127 +69789,348.9449999997189,-0.05628116866906585 +69790,348.9499999997189,-0.05628098013097863 +69791,348.9549999997189,-0.05628079162914212 +69792,348.9599999997189,-0.056280603163548805 +69793,348.9649999997189,-0.05628041473419118 +69794,348.9699999997189,-0.056280226341061765 +69795,348.9749999997189,-0.05628003798415304 +69796,348.97999999971887,-0.05627984966345751 +69797,348.98499999971887,-0.05627966137896769 +69798,348.98999999971886,-0.056279473130676085 +69799,348.99499999971886,-0.0562792849185752 +69800,348.99999999971885,-0.05627909674265755 +69801,349.00499999971885,-0.05627890860291562 +69802,349.00999999971884,-0.05627872049934195 +69803,349.01499999971884,-0.056278532431929026 +69804,349.01999999971883,-0.05627834440066938 +69805,349.02499999971883,-0.05627815640555552 +69806,349.0299999997188,-0.05627796844657998 +69807,349.0349999997188,-0.05627778052373525 +69808,349.0399999997188,-0.05627759263701387 +69809,349.0449999997188,-0.056277404786408344 +69810,349.0499999997188,-0.0562772169719112 +69811,349.0549999997188,-0.05627702919351498 +69812,349.0599999997188,-0.05627684145121218 +69813,349.0649999997188,-0.056276653744995346 +69814,349.0699999997188,-0.056276466074857 +69815,349.0749999997188,-0.05627627844078967 +69816,349.0799999997188,-0.05627609084278588 +69817,349.0849999997188,-0.05627590328083817 +69818,349.08999999971877,-0.05627571575493906 +69819,349.09499999971877,-0.056275528265081094 +69820,349.09999999971876,-0.05627534081125681 +69821,349.10499999971876,-0.05627515339345874 +69822,349.10999999971875,-0.05627496601167941 +69823,349.11499999971875,-0.056274778665911386 +69824,349.11999999971874,-0.05627459135614719 +69825,349.12499999971874,-0.05627440408237936 +69826,349.12999999971873,-0.05627421684460046 +69827,349.13499999971873,-0.05627402964280303 +69828,349.1399999997187,-0.05627384247697961 +69829,349.1449999997187,-0.05627365534712274 +69830,349.1499999997187,-0.056273468253224976 +69831,349.1549999997187,-0.05627328119527887 +69832,349.1599999997187,-0.05627309417327697 +69833,349.1649999997187,-0.05627290718721184 +69834,349.1699999997187,-0.05627272023707602 +69835,349.1749999997187,-0.05627253332286206 +69836,349.1799999997187,-0.05627234644456255 +69837,349.1849999997187,-0.05627215960217001 +69838,349.1899999997187,-0.056271972795677014 +69839,349.1949999997187,-0.05627178602507614 +69840,349.19999999971867,-0.05627159929035993 +69841,349.20499999971867,-0.05627141259152094 +69842,349.20999999971866,-0.05627122592855176 +69843,349.21499999971866,-0.05627103930144495 +69844,349.21999999971865,-0.05627085271019305 +69845,349.22499999971865,-0.05627066615478867 +69846,349.22999999971864,-0.056270479635224364 +69847,349.23499999971864,-0.05627029315149269 +69848,349.23999999971863,-0.05627010670358624 +69849,349.24499999971863,-0.05626992029149757 +69850,349.2499999997186,-0.05626973391521928 +69851,349.2549999997186,-0.05626954757474393 +69852,349.2599999997186,-0.0562693612700641 +69853,349.2649999997186,-0.05626917500117237 +69854,349.2699999997186,-0.056268988768061336 +69855,349.2749999997186,-0.056268802570723565 +69856,349.2799999997186,-0.05626861640915164 +69857,349.2849999997186,-0.056268430283338146 +69858,349.2899999997186,-0.056268244193275675 +69859,349.2949999997186,-0.05626805813895682 +69860,349.2999999997186,-0.05626787212037415 +69861,349.3049999997186,-0.056267686137520284 +69862,349.30999999971857,-0.056267500190387794 +69863,349.31499999971857,-0.056267314278969284 +69864,349.31999999971856,-0.05626712840325733 +69865,349.32499999971856,-0.056266942563244556 +69866,349.32999999971855,-0.056266756758923536 +69867,349.33499999971855,-0.05626657099028688 +69868,349.33999999971854,-0.056266385257327176 +69869,349.34499999971854,-0.05626619956003704 +69870,349.34999999971853,-0.05626601389840906 +69871,349.35499999971853,-0.056265828272435855 +69872,349.3599999997185,-0.056265642682110026 +69873,349.3649999997185,-0.05626545712742417 +69874,349.3699999997185,-0.05626527160837091 +69875,349.3749999997185,-0.05626508612494284 +69876,349.3799999997185,-0.056264900677132586 +69877,349.3849999997185,-0.05626471526493275 +69878,349.3899999997185,-0.05626452988833595 +69879,349.3949999997185,-0.05626434454733479 +69880,349.3999999997185,-0.056264159241921886 +69881,349.4049999997185,-0.056263973972089876 +69882,349.4099999997185,-0.05626378873783136 +69883,349.4149999997185,-0.05626360353913897 +69884,349.41999999971847,-0.05626341837600532 +69885,349.42499999971847,-0.056263233248423035 +69886,349.42999999971846,-0.05626304815638474 +69887,349.43499999971846,-0.05626286309988305 +69888,349.43999999971845,-0.0562626780789106 +69889,349.44499999971845,-0.05626249309346002 +69890,349.44999999971844,-0.05626230814352394 +69891,349.45499999971844,-0.05626212322909498 +69892,349.45999999971843,-0.0562619383501658 +69893,349.46499999971843,-0.056261753506729 +69894,349.4699999997184,-0.056261568698777215 +69895,349.4749999997184,-0.056261383926303095 +69896,349.4799999997184,-0.05626119918929929 +69897,349.4849999997184,-0.056261014487758415 +69898,349.4899999997184,-0.05626082982167313 +69899,349.4949999997184,-0.056260645191036046 +69900,349.4999999997184,-0.056260460595839834 +69901,349.5049999997184,-0.05626027603607713 +69902,349.5099999997184,-0.056260091511740586 +69903,349.5149999997184,-0.05625990702282283 +69904,349.5199999997184,-0.05625972256931652 +69905,349.5249999997184,-0.05625953815121432 +69906,349.52999999971837,-0.056259353768508845 +69907,349.53499999971837,-0.05625916942119278 +69908,349.53999999971836,-0.05625898510925876 +69909,349.54499999971836,-0.05625880083269945 +69910,349.54999999971835,-0.05625861659150751 +69911,349.55499999971835,-0.05625843238567558 +69912,349.55999999971834,-0.05625824821519633 +69913,349.56499999971834,-0.056258064080062425 +69914,349.56999999971833,-0.05625787998026651 +69915,349.57499999971833,-0.056257695915801265 +69916,349.5799999997183,-0.056257511886659346 +69917,349.5849999997183,-0.0562573278928334 +69918,349.5899999997183,-0.05625714393431612 +69919,349.5949999997183,-0.056256960011100164 +69920,349.5999999997183,-0.0562567761231782 +69921,349.6049999997183,-0.05625659227054291 +69922,349.6099999997183,-0.056256408453186954 +69923,349.6149999997183,-0.056256224671103 +69924,349.6199999997183,-0.05625604092428374 +69925,349.6249999997183,-0.05625585721272184 +69926,349.6299999997183,-0.05625567353640997 +69927,349.6349999997183,-0.056255489895340814 +69928,349.63999999971827,-0.05625530628950706 +69929,349.64499999971827,-0.056255122718901374 +69930,349.64999999971826,-0.056254939183516456 +69931,349.65499999971826,-0.05625475568334497 +69932,349.65999999971825,-0.05625457221837961 +69933,349.66499999971825,-0.05625438878861307 +69934,349.66999999971824,-0.056254205394038026 +69935,349.67499999971824,-0.05625402203464718 +69936,349.67999999971823,-0.0562538387104332 +69937,349.68499999971823,-0.0562536554213888 +69938,349.6899999997182,-0.056253472167506674 +69939,349.6949999997182,-0.0562532889487795 +69940,349.6999999997182,-0.05625310576519998 +69941,349.7049999997182,-0.05625292261676081 +69942,349.7099999997182,-0.05625273950345469 +69943,349.7149999997182,-0.056252556425274325 +69944,349.7199999997182,-0.056252373382212395 +69945,349.7249999997182,-0.05625219037426163 +69946,349.7299999997182,-0.056252007401414714 +69947,349.7349999997182,-0.05625182446366436 +69948,349.7399999997182,-0.056251641561003284 +69949,349.7449999997182,-0.05625145869342417 +69950,349.74999999971817,-0.05625127586091975 +69951,349.75499999971817,-0.056251093063482714 +69952,349.75999999971816,-0.056250910301105794 +69953,349.76499999971816,-0.05625072757378169 +69954,349.76999999971815,-0.05625054488150312 +69955,349.77499999971815,-0.05625036222426279 +69956,349.77999999971814,-0.056250179602053425 +69957,349.78499999971814,-0.05624999701486775 +69958,349.78999999971813,-0.056249814462698465 +69959,349.79499999971813,-0.056249631945538316 +69960,349.7999999997181,-0.05624944946337999 +69961,349.8049999997181,-0.056249267016216235 +69962,349.8099999997181,-0.05624908460403978 +69963,349.8149999997181,-0.056248902226843346 +69964,349.8199999997181,-0.05624871988461965 +69965,349.8249999997181,-0.05624853757736142 +69966,349.8299999997181,-0.05624835530506139 +69967,349.8349999997181,-0.0562481730677123 +69968,349.8399999997181,-0.05624799086530687 +69969,349.8449999997181,-0.05624780869783785 +69970,349.8499999997181,-0.05624762656529796 +69971,349.8549999997181,-0.05624744446767996 +69972,349.85999999971807,-0.05624726240497655 +69973,349.86499999971807,-0.05624708037718049 +69974,349.86999999971806,-0.05624689838428454 +69975,349.87499999971806,-0.056246716426281394 +69976,349.87999999971805,-0.05624653450316383 +69977,349.88499999971805,-0.05624635261492459 +69978,349.88999999971804,-0.0562461707615564 +69979,349.89499999971804,-0.05624598894305203 +69980,349.89999999971803,-0.05624580715940421 +69981,349.90499999971803,-0.056245625410605696 +69982,349.909999999718,-0.056245443696649244 +69983,349.914999999718,-0.05624526201752761 +69984,349.919999999718,-0.05624508037323354 +69985,349.924999999718,-0.05624489876375978 +69986,349.929999999718,-0.056244717189099104 +69987,349.934999999718,-0.056244535649244254 +69988,349.939999999718,-0.056244354144188 +69989,349.944999999718,-0.05624417267392309 +69990,349.949999999718,-0.056243991238442294 +69991,349.954999999718,-0.05624380983773837 +69992,349.959999999718,-0.056243628471804086 +69993,349.964999999718,-0.056243447140632216 +69994,349.96999999971797,-0.05624326584421552 +69995,349.97499999971797,-0.056243084582546746 +69996,349.97999999971796,-0.05624290335561868 +69997,349.98499999971796,-0.05624272216342411 +69998,349.98999999971795,-0.05624254100595577 +69999,349.99499999971795,-0.056242359883206465 +70000,349.99999999971794,-0.056242178795168955 +70001,350.00499999971794,-0.05624199774183602 +70002,350.00999999971793,-0.05624181672320043 +70003,350.01499999971793,-0.05624163573925496 +70004,350.0199999997179,-0.0562414547899924 +70005,350.0249999997179,-0.05624127387540554 +70006,350.0299999997179,-0.05624109299548714 +70007,350.0349999997179,-0.05624091215022999 +70008,350.0399999997179,-0.05624073133962689 +70009,350.0449999997179,-0.05624055056367061 +70010,350.0499999997179,-0.05624036982235394 +70011,350.0549999997179,-0.05624018911566968 +70012,350.0599999997179,-0.05624000844361061 +70013,350.0649999997179,-0.05623982780616952 +70014,350.0699999997179,-0.05623964720333919 +70015,350.0749999997179,-0.05623946663511244 +70016,350.07999999971787,-0.05623928610148205 +70017,350.08499999971787,-0.05623910560244082 +70018,350.08999999971786,-0.05623892513798154 +70019,350.09499999971786,-0.05623874470809703 +70020,350.09999999971785,-0.05623856431278007 +70021,350.10499999971785,-0.05623838395202347 +70022,350.10999999971784,-0.056238203625820035 +70023,350.11499999971784,-0.056238023334162564 +70024,350.11999999971783,-0.05623784307704387 +70025,350.12499999971783,-0.05623766285445674 +70026,350.1299999997178,-0.056237482666394015 +70027,350.1349999997178,-0.05623730251284849 +70028,350.1399999997178,-0.056237122393812955 +70029,350.1449999997178,-0.05623694230928025 +70030,350.1499999997178,-0.05623676225924318 +70031,350.1549999997178,-0.05623658224369456 +70032,350.1599999997178,-0.056236402262627196 +70033,350.1649999997178,-0.05623622231603392 +70034,350.1699999997178,-0.05623604240390753 +70035,350.1749999997178,-0.05623586252624087 +70036,350.1799999997178,-0.05623568268302674 +70037,350.1849999997178,-0.05623550287425798 +70038,350.18999999971777,-0.0562353230999274 +70039,350.19499999971777,-0.056235143360027835 +70040,350.19999999971776,-0.056234963654552106 +70041,350.20499999971776,-0.05623478398349305 +70042,350.20999999971775,-0.056234604346843485 +70043,350.21499999971775,-0.056234424744596244 +70044,350.21999999971774,-0.056234245176744156 +70045,350.22499999971774,-0.05623406564328006 +70046,350.22999999971773,-0.05623388614419679 +70047,350.23499999971773,-0.05623370667948717 +70048,350.2399999997177,-0.056233527249144044 +70049,350.2449999997177,-0.056233347853160254 +70050,350.2499999997177,-0.056233168491528644 +70051,350.2549999997177,-0.05623298916424204 +70052,350.2599999997177,-0.0562328098712933 +70053,350.2649999997177,-0.05623263061267525 +70054,350.2699999997177,-0.056232451388380754 +70055,350.2749999997177,-0.05623227219840264 +70056,350.2799999997177,-0.056232093042733765 +70057,350.2849999997177,-0.05623191392136697 +70058,350.2899999997177,-0.0562317348342951 +70059,350.2949999997177,-0.05623155578151102 +70060,350.29999999971767,-0.05623137676300757 +70061,350.30499999971767,-0.05623119777877763 +70062,350.30999999971766,-0.05623101882881402 +70063,350.31499999971766,-0.056230839913109606 +70064,350.31999999971765,-0.05623066103165725 +70065,350.32499999971765,-0.056230482184449815 +70066,350.32999999971764,-0.05623030337148016 +70067,350.33499999971764,-0.05623012459274115 +70068,350.33999999971763,-0.056229945848225625 +70069,350.34499999971763,-0.056229767137926476 +70070,350.3499999997176,-0.056229588461836545 +70071,350.3549999997176,-0.056229409819948714 +70072,350.3599999997176,-0.056229231212255856 +70073,350.3649999997176,-0.05622905263875082 +70074,350.3699999997176,-0.05622887409942649 +70075,350.3749999997176,-0.056228695594275735 +70076,350.3799999997176,-0.056228517123291424 +70077,350.3849999997176,-0.05622833868646644 +70078,350.3899999997176,-0.056228160283793654 +70079,350.3949999997176,-0.05622798191526594 +70080,350.3999999997176,-0.05622780358087617 +70081,350.4049999997176,-0.056227625280617234 +70082,350.40999999971757,-0.05622744701448201 +70083,350.41499999971757,-0.05622726878246337 +70084,350.41999999971756,-0.056227090584554204 +70085,350.42499999971756,-0.05622691242074741 +70086,350.42999999971755,-0.056226734291035856 +70087,350.43499999971755,-0.056226556195412426 +70088,350.43999999971754,-0.05622637813387003 +70089,350.44499999971754,-0.05622620010640154 +70090,350.44999999971753,-0.056226022112999846 +70091,350.45499999971753,-0.05622584415365785 +70092,350.4599999997175,-0.05622566622836844 +70093,350.4649999997175,-0.05622548833712452 +70094,350.4699999997175,-0.05622531047991897 +70095,350.4749999997175,-0.056225132656744704 +70096,350.4799999997175,-0.05622495486759461 +70097,350.4849999997175,-0.056224777112461585 +70098,350.4899999997175,-0.05622459939133853 +70099,350.4949999997175,-0.05622442170421835 +70100,350.4999999997175,-0.05622424405109395 +70101,350.5049999997175,-0.056224066431958236 +70102,350.5099999997175,-0.05622388884680412 +70103,350.5149999997175,-0.0562237112956245 +70104,350.51999999971747,-0.05622353377841228 +70105,350.52499999971747,-0.05622335629516037 +70106,350.52999999971746,-0.0562231788458617 +70107,350.53499999971746,-0.05622300143050917 +70108,350.53999999971745,-0.05622282404909569 +70109,350.54499999971745,-0.056222646701614185 +70110,350.54999999971744,-0.05622246938805756 +70111,350.55499999971744,-0.056222292108418746 +70112,350.55999999971743,-0.056222114862690645 +70113,350.56499999971743,-0.056221937650866194 +70114,350.5699999997174,-0.056221760472938316 +70115,350.5749999997174,-0.05622158332889991 +70116,350.5799999997174,-0.05622140621874392 +70117,350.5849999997174,-0.056221229142463275 +70118,350.5899999997174,-0.056221052100050885 +70119,350.5949999997174,-0.05622087509149969 +70120,350.5999999997174,-0.05622069811680262 +70121,350.6049999997174,-0.0562205211759526 +70122,350.6099999997174,-0.056220344268942554 +70123,350.6149999997174,-0.05622016739576543 +70124,350.6199999997174,-0.05621999055641416 +70125,350.6249999997174,-0.05621981375088167 +70126,350.62999999971737,-0.05621963697916091 +70127,350.63499999971737,-0.05621946024124481 +70128,350.63999999971736,-0.056219283537126304 +70129,350.64499999971736,-0.05621910686679834 +70130,350.64999999971735,-0.056218930230253865 +70131,350.65499999971735,-0.05621875362748581 +70132,350.65999999971734,-0.05621857705848713 +70133,350.66499999971734,-0.056218400523250764 +70134,350.66999999971733,-0.05621822402176966 +70135,350.67499999971733,-0.05621804755403676 +70136,350.6799999997173,-0.05621787112004502 +70137,350.6849999997173,-0.0562176947197874 +70138,350.6899999997173,-0.05621751835325685 +70139,350.6949999997173,-0.05621734202044631 +70140,350.6999999997173,-0.05621716572134874 +70141,350.7049999997173,-0.05621698945595709 +70142,350.7099999997173,-0.05621681322426433 +70143,350.7149999997173,-0.056216637026263415 +70144,350.7199999997173,-0.0562164608619473 +70145,350.7249999997173,-0.05621628473130895 +70146,350.7299999997173,-0.05621610863434132 +70147,350.7349999997173,-0.0562159325710374 +70148,350.73999999971727,-0.05621575654139012 +70149,350.74499999971727,-0.05621558054539247 +70150,350.74999999971726,-0.056215404583037414 +70151,350.75499999971726,-0.0562152286543179 +70152,350.75999999971725,-0.056215052759226926 +70153,350.76499999971725,-0.056214876897757435 +70154,350.76999999971724,-0.056214701069902416 +70155,350.77499999971724,-0.056214525275654854 +70156,350.77999999971723,-0.0562143495150077 +70157,350.78499999971723,-0.05621417378795394 +70158,350.7899999997172,-0.05621399809448656 +70159,350.7949999997172,-0.05621382243459853 +70160,350.7999999997172,-0.056213646808282836 +70161,350.8049999997172,-0.05621347121553244 +70162,350.8099999997172,-0.056213295656340354 +70163,350.8149999997172,-0.05621312013069954 +70164,350.8199999997172,-0.05621294463860299 +70165,350.8249999997172,-0.0562127691800437 +70166,350.8299999997172,-0.05621259375501464 +70167,350.8349999997172,-0.056212418363508806 +70168,350.8399999997172,-0.056212243005519184 +70169,350.8449999997172,-0.05621206768103878 +70170,350.84999999971717,-0.056211892390060574 +70171,350.85499999971717,-0.05621171713257756 +70172,350.85999999971716,-0.05621154190858275 +70173,350.86499999971716,-0.05621136671806912 +70174,350.86999999971715,-0.05621119156102967 +70175,350.87499999971715,-0.056211016437457406 +70176,350.87999999971714,-0.056210841347345324 +70177,350.88499999971714,-0.05621066629068642 +70178,350.88999999971713,-0.05621049126747372 +70179,350.89499999971713,-0.0562103162777002 +70180,350.8999999997171,-0.056210141321358875 +70181,350.9049999997171,-0.05620996639844276 +70182,350.9099999997171,-0.05620979150894486 +70183,350.9149999997171,-0.056209616652858174 +70184,350.9199999997171,-0.05620944183017572 +70185,350.9249999997171,-0.05620926704089051 +70186,350.9299999997171,-0.05620909228499555 +70187,350.9349999997171,-0.05620891756248386 +70188,350.9399999997171,-0.05620874287334847 +70189,350.9449999997171,-0.05620856821758237 +70190,350.9499999997171,-0.056208393595178596 +70191,350.9549999997171,-0.05620821900613015 +70192,350.95999999971707,-0.05620804445043007 +70193,350.96499999971707,-0.05620786992807138 +70194,350.96999999971706,-0.056207695439047085 +70195,350.97499999971706,-0.056207520983350225 +70196,350.97999999971705,-0.05620734656097381 +70197,350.98499999971705,-0.05620717217191087 +70198,350.98999999971704,-0.056206997816154444 +70199,350.99499999971704,-0.05620682349369756 +70200,350.99999999971703,-0.056206649204533235 +70201,351.00499999971703,-0.056206474948654515 +70202,351.009999999717,-0.056206300726054426 +70203,351.014999999717,-0.056206126536726006 +70204,351.019999999717,-0.05620595238066228 +70205,351.024999999717,-0.05620577825785631 +70206,351.029999999717,-0.05620560416830111 +70207,351.034999999717,-0.05620543011198973 +70208,351.039999999717,-0.05620525608891519 +70209,351.044999999717,-0.05620508209907057 +70210,351.049999999717,-0.05620490814244887 +70211,351.054999999717,-0.05620473421904318 +70212,351.059999999717,-0.0562045603288465 +70213,351.064999999717,-0.05620438647185191 +70214,351.06999999971697,-0.056204212648052435 +70215,351.07499999971697,-0.05620403885744115 +70216,351.07999999971696,-0.05620386510001109 +70217,351.08499999971696,-0.0562036913757553 +70218,351.08999999971695,-0.05620351768466685 +70219,351.09499999971695,-0.05620334402673878 +70220,351.09999999971694,-0.056203170401964146 +70221,351.10499999971694,-0.05620299681033602 +70222,351.10999999971693,-0.05620282325184745 +70223,351.11499999971693,-0.056202649726491485 +70224,351.1199999997169,-0.0562024762342612 +70225,351.1249999997169,-0.05620230277514965 +70226,351.1299999997169,-0.0562021293491499 +70227,351.1349999997169,-0.056201955956255024 +70228,351.1399999997169,-0.056201782596458076 +70229,351.1449999997169,-0.05620160926975213 +70230,351.1499999997169,-0.05620143597613024 +70231,351.1549999997169,-0.05620126271558549 +70232,351.1599999997169,-0.056201089488110936 +70233,351.1649999997169,-0.056200916293699665 +70234,351.1699999997169,-0.056200743132344744 +70235,351.1749999997169,-0.05620057000403925 +70236,351.17999999971687,-0.056200396908776255 +70237,351.18499999971687,-0.05620022384654884 +70238,351.18999999971686,-0.05620005081735008 +70239,351.19499999971686,-0.05619987782117305 +70240,351.19999999971685,-0.05619970485801083 +70241,351.20499999971685,-0.05619953192785651 +70242,351.20999999971684,-0.05619935903070318 +70243,351.21499999971684,-0.05619918616654391 +70244,351.21999999971683,-0.05619901333537179 +70245,351.22499999971683,-0.056198840537179905 +70246,351.2299999997168,-0.05619866777196134 +70247,351.2349999997168,-0.05619849503970919 +70248,351.2399999997168,-0.05619832234041654 +70249,351.2449999997168,-0.05619814967407649 +70250,351.2499999997168,-0.056197977040682134 +70251,351.2549999997168,-0.05619780444022656 +70252,351.2599999997168,-0.05619763187270286 +70253,351.2649999997168,-0.05619745933810414 +70254,351.2699999997168,-0.056197286836423485 +70255,351.2749999997168,-0.05619711436765401 +70256,351.2799999997168,-0.05619694193178881 +70257,351.2849999997168,-0.05619676952882098 +70258,351.28999999971677,-0.05619659715874363 +70259,351.29499999971677,-0.05619642482154986 +70260,351.29999999971676,-0.05619625251723278 +70261,351.30499999971676,-0.0561960802457855 +70262,351.30999999971675,-0.05619590800720111 +70263,351.31499999971675,-0.05619573580147274 +70264,351.31999999971674,-0.056195563628593494 +70265,351.32499999971674,-0.05619539148855647 +70266,351.32999999971673,-0.056195219381354806 +70267,351.33499999971673,-0.05619504730698159 +70268,351.3399999997167,-0.05619487526542996 +70269,351.3449999997167,-0.05619470325669302 +70270,351.3499999997167,-0.05619453128076388 +70271,351.3549999997167,-0.05619435933763569 +70272,351.3599999997167,-0.05619418742730154 +70273,351.3649999997167,-0.05619401554975457 +70274,351.3699999997167,-0.05619384370498789 +70275,351.3749999997167,-0.056193671892994616 +70276,351.3799999997167,-0.0561935001137679 +70277,351.3849999997167,-0.056193328367300836 +70278,351.3899999997167,-0.05619315665358659 +70279,351.3949999997167,-0.056192984972618265 +70280,351.39999999971667,-0.056192813324388996 +70281,351.40499999971667,-0.05619264170889191 +70282,351.40999999971666,-0.05619247012612016 +70283,351.41499999971666,-0.05619229857606685 +70284,351.41999999971665,-0.05619212705872514 +70285,351.42499999971665,-0.05619195557408814 +70286,351.42999999971664,-0.056191784122149015 +70287,351.43499999971664,-0.0561916127029009 +70288,351.43999999971663,-0.056191441316336924 +70289,351.44499999971663,-0.05619126996245024 +70290,351.4499999997166,-0.05619109864123398 +70291,351.4549999997166,-0.05619092735268129 +70292,351.4599999997166,-0.05619075609678531 +70293,351.4649999997166,-0.056190584873539194 +70294,351.4699999997166,-0.0561904136829361 +70295,351.4749999997166,-0.05619024252496917 +70296,351.4799999997166,-0.05619007139963154 +70297,351.4849999997166,-0.056189900306916375 +70298,351.4899999997166,-0.056189729246816825 +70299,351.4949999997166,-0.056189558219326044 +70300,351.4999999997166,-0.056189387224437184 +70301,351.5049999997166,-0.05618921626214339 +70302,351.50999999971657,-0.05618904533243784 +70303,351.51499999971657,-0.056188874435313695 +70304,351.51999999971656,-0.05618870357076409 +70305,351.52499999971656,-0.0561885327387822 +70306,351.52999999971655,-0.056188361939361185 +70307,351.53499999971655,-0.05618819117249423 +70308,351.53999999971654,-0.056188020438174474 +70309,351.54499999971654,-0.056187849736395096 +70310,351.54999999971653,-0.05618767906714925 +70311,351.55499999971653,-0.05618750843043011 +70312,351.5599999997165,-0.056187337826230845 +70313,351.5649999997165,-0.05618716725454463 +70314,351.5699999997165,-0.056186996715364645 +70315,351.5749999997165,-0.05618682620868405 +70316,351.5799999997165,-0.05618665573449603 +70317,351.5849999997165,-0.05618648529279375 +70318,351.5899999997165,-0.05618631488357039 +70319,351.5949999997165,-0.056186144506819136 +70320,351.5999999997165,-0.05618597416253316 +70321,351.6049999997165,-0.05618580385070564 +70322,351.6099999997165,-0.05618563357132976 +70323,351.6149999997165,-0.056185463324398714 +70324,351.61999999971647,-0.05618529310990567 +70325,351.62499999971647,-0.056185122927843834 +70326,351.62999999971646,-0.056184952778206385 +70327,351.63499999971646,-0.0561847826609865 +70328,351.63999999971645,-0.05618461257617737 +70329,351.64499999971645,-0.05618444252377221 +70330,351.64999999971644,-0.05618427250376418 +70331,351.65499999971644,-0.05618410251614648 +70332,351.65999999971643,-0.05618393256091233 +70333,351.66499999971643,-0.056183762638054885 +70334,351.6699999997164,-0.056183592747567374 +70335,351.6749999997164,-0.056183422889442995 +70336,351.6799999997164,-0.05618325306367493 +70337,351.6849999997164,-0.056183083270256375 +70338,351.6899999997164,-0.05618291350918055 +70339,351.6949999997164,-0.056182743780440664 +70340,351.6999999997164,-0.05618257408402989 +70341,351.7049999997164,-0.05618240441994146 +70342,351.7099999997164,-0.05618223478816857 +70343,351.7149999997164,-0.05618206518870443 +70344,351.7199999997164,-0.05618189562154226 +70345,351.7249999997164,-0.056181726086675245 +70346,351.72999999971637,-0.05618155658409661 +70347,351.73499999971636,-0.05618138711379957 +70348,351.73999999971636,-0.05618121767577735 +70349,351.74499999971636,-0.05618104827002314 +70350,351.74999999971635,-0.05618087889653016 +70351,351.75499999971635,-0.05618070955529164 +70352,351.75999999971634,-0.05618054024630079 +70353,351.76499999971634,-0.05618037096955085 +70354,351.76999999971633,-0.05618020172503502 +70355,351.77499999971633,-0.056180032512746524 +70356,351.7799999997163,-0.056179863332678596 +70357,351.7849999997163,-0.05617969418482446 +70358,351.7899999997163,-0.05617952506917733 +70359,351.7949999997163,-0.05617935598573044 +70360,351.7999999997163,-0.056179186934477016 +70361,351.8049999997163,-0.0561790179154103 +70362,351.8099999997163,-0.05617884892852351 +70363,351.8149999997163,-0.05617867997380988 +70364,351.8199999997163,-0.05617851105126265 +70365,351.8249999997163,-0.056178342160875035 +70366,351.8299999997163,-0.05617817330264029 +70367,351.8349999997163,-0.05617800447655165 +70368,351.83999999971627,-0.05617783568260235 +70369,351.84499999971626,-0.05617766692078564 +70370,351.84999999971626,-0.056177498191094744 +70371,351.85499999971626,-0.05617732949352292 +70372,351.85999999971625,-0.05617716082806339 +70373,351.86499999971625,-0.05617699219470943 +70374,351.86999999971624,-0.05617682359345426 +70375,351.87499999971624,-0.056176655024291124 +70376,351.87999999971623,-0.05617648648721328 +70377,351.88499999971623,-0.05617631798221399 +70378,351.8899999997162,-0.056176149509286476 +70379,351.8949999997162,-0.05617598106842401 +70380,351.8999999997162,-0.056175812659619836 +70381,351.9049999997162,-0.056175644282867226 +70382,351.9099999997162,-0.05617547593815941 +70383,351.9149999997162,-0.05617530762548967 +70384,351.9199999997162,-0.05617513934485123 +70385,351.9249999997162,-0.05617497109623738 +70386,351.9299999997162,-0.056174802879641376 +70387,351.9349999997162,-0.05617463469505647 +70388,351.9399999997162,-0.05617446654247591 +70389,351.9449999997162,-0.05617429842189298 +70390,351.94999999971617,-0.05617413033330095 +70391,351.95499999971616,-0.05617396227669308 +70392,351.95999999971616,-0.05617379425206262 +70393,351.96499999971616,-0.056173626259402865 +70394,351.96999999971615,-0.056173458298707075 +70395,351.97499999971615,-0.056173290369968515 +70396,351.97999999971614,-0.05617312247318047 +70397,351.98499999971614,-0.0561729546083362 +70398,351.98999999971613,-0.05617278677542899 +70399,351.99499999971613,-0.05617261897445211 +70400,351.9999999997161,-0.05617245120539883 +70401,352.0049999997161,-0.05617228346826245 +70402,352.0099999997161,-0.05617211576303623 +70403,352.0149999997161,-0.05617194808971345 +70404,352.0199999997161,-0.05617178044828741 +70405,352.0249999997161,-0.05617161283875138 +70406,352.0299999997161,-0.05617144526109864 +70407,352.0349999997161,-0.05617127771532249 +70408,352.0399999997161,-0.05617111020141621 +70409,352.0449999997161,-0.05617094271937309 +70410,352.0499999997161,-0.05617077526918641 +70411,352.0549999997161,-0.056170607850849465 +70412,352.05999999971607,-0.05617044046435555 +70413,352.06499999971606,-0.05617027310969796 +70414,352.06999999971606,-0.056170105786869984 +70415,352.07499999971606,-0.05616993849586493 +70416,352.07999999971605,-0.05616977123667607 +70417,352.08499999971605,-0.05616960400929672 +70418,352.08999999971604,-0.05616943681372017 +70419,352.09499999971604,-0.05616926964993972 +70420,352.09999999971603,-0.05616910251794869 +70421,352.10499999971603,-0.05616893541774036 +70422,352.109999999716,-0.05616876834930804 +70423,352.114999999716,-0.05616860131264504 +70424,352.119999999716,-0.05616843430774466 +70425,352.124999999716,-0.056168267334600216 +70426,352.129999999716,-0.05616810039320501 +70427,352.134999999716,-0.05616793348355235 +70428,352.139999999716,-0.05616776660563555 +70429,352.144999999716,-0.05616759975944793 +70430,352.149999999716,-0.056167432944982776 +70431,352.154999999716,-0.056167266162233435 +70432,352.159999999716,-0.05616709941119321 +70433,352.164999999716,-0.05616693269185541 +70434,352.16999999971597,-0.05616676600421336 +70435,352.17499999971596,-0.056166599348260376 +70436,352.17999999971596,-0.05616643272398979 +70437,352.18499999971596,-0.05616626613139491 +70438,352.18999999971595,-0.05616609957046907 +70439,352.19499999971595,-0.05616593304120559 +70440,352.19999999971594,-0.0561657665435978 +70441,352.20499999971594,-0.056165600077639016 +70442,352.20999999971593,-0.056165433643322576 +70443,352.21499999971593,-0.056165267240641796 +70444,352.2199999997159,-0.05616510086959002 +70445,352.2249999997159,-0.05616493453016057 +70446,352.2299999997159,-0.056164768222346784 +70447,352.2349999997159,-0.056164601946141986 +70448,352.2399999997159,-0.05616443570153952 +70449,352.2449999997159,-0.056164269488532724 +70450,352.2499999997159,-0.05616410330711493 +70451,352.2549999997159,-0.05616393715727948 +70452,352.2599999997159,-0.05616377103901972 +70453,352.2649999997159,-0.056163604952328985 +70454,352.2699999997159,-0.05616343889720061 +70455,352.2749999997159,-0.05616327287362795 +70456,352.27999999971587,-0.056163106881604336 +70457,352.28499999971586,-0.056162940921123124 +70458,352.28999999971586,-0.05616277499217766 +70459,352.29499999971586,-0.0561626090947613 +70460,352.29999999971585,-0.056162443228867376 +70461,352.30499999971585,-0.056162277394489236 +70462,352.30999999971584,-0.05616211159162026 +70463,352.31499999971584,-0.05616194582025378 +70464,352.31999999971583,-0.05616178008038315 +70465,352.3249999997158,-0.05616161437200174 +70466,352.3299999997158,-0.05616144869510288 +70467,352.3349999997158,-0.05616128304967994 +70468,352.3399999997158,-0.056161117435726285 +70469,352.3449999997158,-0.056160951853235275 +70470,352.3499999997158,-0.05616078630220028 +70471,352.3549999997158,-0.05616062078261464 +70472,352.3599999997158,-0.05616045529447173 +70473,352.3649999997158,-0.05616028983776492 +70474,352.3699999997158,-0.056160124412487564 +70475,352.3749999997158,-0.056159959018633035 +70476,352.3799999997158,-0.05615979365619471 +70477,352.3849999997158,-0.05615962832516595 +70478,352.38999999971577,-0.05615946302554013 +70479,352.39499999971576,-0.05615929775731063 +70480,352.39999999971576,-0.05615913252047079 +70481,352.40499999971576,-0.05615896731501401 +70482,352.40999999971575,-0.056158802140933675 +70483,352.41499999971575,-0.05615863699822315 +70484,352.41999999971574,-0.0561584718868758 +70485,352.42499999971574,-0.05615830680688502 +70486,352.42999999971573,-0.056158141758244184 +70487,352.4349999997157,-0.056157976740946684 +70488,352.4399999997157,-0.05615781175498589 +70489,352.4449999997157,-0.0561576468003552 +70490,352.4499999997157,-0.056157481877047985 +70491,352.4549999997157,-0.05615731698505763 +70492,352.4599999997157,-0.056157152124377545 +70493,352.4649999997157,-0.056156987295001105 +70494,352.4699999997157,-0.05615682249692168 +70495,352.4749999997157,-0.05615665773013268 +70496,352.4799999997157,-0.0561564929946275 +70497,352.4849999997157,-0.05615632829039953 +70498,352.4899999997157,-0.056156163617442176 +70499,352.4949999997157,-0.056155998975748814 +70500,352.49999999971567,-0.05615583436531286 +70501,352.50499999971566,-0.05615566978612769 +70502,352.50999999971566,-0.05615550523818672 +70503,352.51499999971566,-0.05615534072148334 +70504,352.51999999971565,-0.05615517623601096 +70505,352.52499999971565,-0.05615501178176298 +70506,352.52999999971564,-0.05615484735873281 +70507,352.53499999971564,-0.05615468296691385 +70508,352.53999999971563,-0.056154518606299504 +70509,352.5449999997156,-0.05615435427688319 +70510,352.5499999997156,-0.056154189978658293 +70511,352.5549999997156,-0.05615402571161826 +70512,352.5599999997156,-0.056153861475756475 +70513,352.5649999997156,-0.05615369727106635 +70514,352.5699999997156,-0.056153533097541314 +70515,352.5749999997156,-0.05615336895517477 +70516,352.5799999997156,-0.05615320484396014 +70517,352.5849999997156,-0.05615304076389084 +70518,352.5899999997156,-0.05615287671496029 +70519,352.5949999997156,-0.056152712697161905 +70520,352.5999999997156,-0.0561525487104891 +70521,352.6049999997156,-0.056152384754935315 +70522,352.60999999971557,-0.05615222083049396 +70523,352.61499999971556,-0.05615205693715846 +70524,352.61999999971556,-0.05615189307492226 +70525,352.62499999971556,-0.056151729243778745 +70526,352.62999999971555,-0.05615156544372138 +70527,352.63499999971555,-0.056151401674743584 +70528,352.63999999971554,-0.05615123793683879 +70529,352.64499999971554,-0.0561510742300004 +70530,352.64999999971553,-0.056150910554221896 +70531,352.6549999997155,-0.056150746909496674 +70532,352.6599999997155,-0.05615058329581818 +70533,352.6649999997155,-0.056150419713179855 +70534,352.6699999997155,-0.056150256161575145 +70535,352.6749999997155,-0.056150092640997455 +70536,352.6799999997155,-0.056149929151440264 +70537,352.6849999997155,-0.056149765692896994 +70538,352.6899999997155,-0.05614960226536108 +70539,352.6949999997155,-0.056149438868825986 +70540,352.6999999997155,-0.05614927550328513 +70541,352.7049999997155,-0.056149112168731974 +70542,352.7099999997155,-0.05614894886515997 +70543,352.7149999997155,-0.05614878559256255 +70544,352.71999999971547,-0.05614862235093317 +70545,352.72499999971546,-0.056148459140265276 +70546,352.72999999971546,-0.05614829596055233 +70547,352.73499999971546,-0.05614813281178778 +70548,352.73999999971545,-0.05614796969396508 +70549,352.74499999971545,-0.05614780660707768 +70550,352.74999999971544,-0.05614764355111905 +70551,352.75499999971544,-0.056147480526082635 +70552,352.75999999971543,-0.05614731753196189 +70553,352.7649999997154,-0.05614715456875028 +70554,352.7699999997154,-0.056146991636441275 +70555,352.7749999997154,-0.056146828735028326 +70556,352.7799999997154,-0.0561466658645049 +70557,352.7849999997154,-0.05614650302486446 +70558,352.7899999997154,-0.056146340216100474 +70559,352.7949999997154,-0.05614617743820639 +70560,352.7999999997154,-0.05614601469117571 +70561,352.8049999997154,-0.056145851975001874 +70562,352.8099999997154,-0.05614568928967838 +70563,352.8149999997154,-0.056145526635198666 +70564,352.8199999997154,-0.05614536401155624 +70565,352.8249999997154,-0.05614520141874455 +70566,352.82999999971537,-0.05614503885675708 +70567,352.83499999971536,-0.0561448763255873 +70568,352.83999999971536,-0.05614471382522871 +70569,352.84499999971536,-0.056144551355674754 +70570,352.84999999971535,-0.056144388916918926 +70571,352.85499999971535,-0.05614422650895472 +70572,352.85999999971534,-0.05614406413177561 +70573,352.86499999971534,-0.05614390178537507 +70574,352.86999999971533,-0.056143739469746594 +70575,352.8749999997153,-0.05614357718488367 +70576,352.8799999997153,-0.05614341493077977 +70577,352.8849999997153,-0.056143252707428405 +70578,352.8899999997153,-0.056143090514823045 +70579,352.8949999997153,-0.056142928352957186 +70580,352.8999999997153,-0.05614276622182432 +70581,352.9049999997153,-0.05614260412141793 +70582,352.9099999997153,-0.05614244205173152 +70583,352.9149999997153,-0.05614228001275859 +70584,352.9199999997153,-0.05614211800449262 +70585,352.9249999997153,-0.05614195602692712 +70586,352.9299999997153,-0.056141794080055575 +70587,352.9349999997153,-0.05614163216387151 +70588,352.93999999971527,-0.056141470278368404 +70589,352.94499999971526,-0.05614130842353975 +70590,352.94999999971526,-0.056141146599379084 +70591,352.95499999971526,-0.056140984805879895 +70592,352.95999999971525,-0.056140823043035686 +70593,352.96499999971525,-0.056140661310839945 +70594,352.96999999971524,-0.05614049960928621 +70595,352.97499999971524,-0.05614033793836798 +70596,352.97999999971523,-0.056140176298078756 +70597,352.9849999997152,-0.056140014688412065 +70598,352.9899999997152,-0.05613985310936141 +70599,352.9949999997152,-0.0561396915609203 +70600,352.9999999997152,-0.05613953004308226 +70601,353.0049999997152,-0.056139368555840806 +70602,353.0099999997152,-0.05613920709918944 +70603,353.0149999997152,-0.05613904567312169 +70604,353.0199999997152,-0.05613888427763108 +70605,353.0249999997152,-0.05613872291271112 +70606,353.0299999997152,-0.05613856157835534 +70607,353.0349999997152,-0.05613840027455726 +70608,353.0399999997152,-0.05613823900131041 +70609,353.0449999997152,-0.0561380777586083 +70610,353.04999999971517,-0.056137916546444476 +70611,353.05499999971516,-0.05613775536481245 +70612,353.05999999971516,-0.056137594213705753 +70613,353.06499999971516,-0.056137433093117924 +70614,353.06999999971515,-0.056137272003042485 +70615,353.07499999971515,-0.05613711094347298 +70616,353.07999999971514,-0.056136949914402934 +70617,353.08499999971514,-0.05613678891582587 +70618,353.08999999971513,-0.05613662794773535 +70619,353.0949999997151,-0.05613646701012489 +70620,353.0999999997151,-0.05613630610298803 +70621,353.1049999997151,-0.056136145226318324 +70622,353.1099999997151,-0.05613598438010929 +70623,353.1149999997151,-0.056135823564354495 +70624,353.1199999997151,-0.05613566277904747 +70625,353.1249999997151,-0.05613550202418175 +70626,353.1299999997151,-0.056135341299750875 +70627,353.1349999997151,-0.056135180605748417 +70628,353.1399999997151,-0.0561350199421679 +70629,353.1449999997151,-0.056134859309002895 +70630,353.1499999997151,-0.056134698706246926 +70631,353.1549999997151,-0.05613453813389356 +70632,353.15999999971507,-0.056134377591936346 +70633,353.16499999971506,-0.05613421708036883 +70634,353.16999999971506,-0.05613405659918458 +70635,353.17499999971506,-0.05613389614837713 +70636,353.17999999971505,-0.056133735727940066 +70637,353.18499999971505,-0.056133575337866934 +70638,353.18999999971504,-0.05613341497815128 +70639,353.19499999971504,-0.05613325464878668 +70640,353.19999999971503,-0.05613309434976668 +70641,353.204999999715,-0.056132934081084856 +70642,353.209999999715,-0.05613277384273477 +70643,353.214999999715,-0.05613261363470997 +70644,353.219999999715,-0.05613245345700405 +70645,353.224999999715,-0.056132293309610545 +70646,353.229999999715,-0.05613213319252305 +70647,353.234999999715,-0.05613197310573512 +70648,353.239999999715,-0.05613181304924032 +70649,353.244999999715,-0.056131653023032246 +70650,353.249999999715,-0.056131493027104455 +70651,353.254999999715,-0.05613133306145052 +70652,353.259999999715,-0.05613117312606401 +70653,353.264999999715,-0.05613101322093851 +70654,353.26999999971497,-0.05613085334606761 +70655,353.27499999971496,-0.05613069350144487 +70656,353.27999999971496,-0.056130533687063874 +70657,353.28499999971496,-0.05613037390291821 +70658,353.28999999971495,-0.05613021414900145 +70659,353.29499999971495,-0.05613005442530716 +70660,353.29999999971494,-0.05612989473182897 +70661,353.30499999971494,-0.056129735068560435 +70662,353.30999999971493,-0.05612957543549514 +70663,353.3149999997149,-0.05612941583262669 +70664,353.3199999997149,-0.05612925625994866 +70665,353.3249999997149,-0.05612909671745465 +70666,353.3299999997149,-0.05612893720513823 +70667,353.3349999997149,-0.05612877772299301 +70668,353.3399999997149,-0.056128618271012586 +70669,353.3449999997149,-0.05612845884919055 +70670,353.3499999997149,-0.0561282994575205 +70671,353.3549999997149,-0.05612814009599602 +70672,353.3599999997149,-0.056127980764610716 +70673,353.3649999997149,-0.056127821463358187 +70674,353.3699999997149,-0.05612766219223204 +70675,353.3749999997149,-0.056127502951225865 +70676,353.37999999971487,-0.05612734374033328 +70677,353.38499999971486,-0.05612718455954787 +70678,353.38999999971486,-0.056127025408863246 +70679,353.39499999971486,-0.05612686628827302 +70680,353.39999999971485,-0.0561267071977708 +70681,353.40499999971485,-0.0561265481373502 +70682,353.40999999971484,-0.056126389107004813 +70683,353.41499999971484,-0.05612623010672826 +70684,353.41999999971483,-0.05612607113651414 +70685,353.4249999997148,-0.056125912196356084 +70686,353.4299999997148,-0.0561257532862477 +70687,353.4349999997148,-0.0561255944061826 +70688,353.4399999997148,-0.056125435556154415 +70689,353.4449999997148,-0.056125276736156735 +70690,353.4499999997148,-0.056125117946183196 +70691,353.4549999997148,-0.05612495918622743 +70692,353.4599999997148,-0.05612480045628304 +70693,353.4649999997148,-0.05612464175634365 +70694,353.4699999997148,-0.05612448308640289 +70695,353.4749999997148,-0.056124324446454384 +70696,353.4799999997148,-0.05612416583649174 +70697,353.4849999997148,-0.05612400725650861 +70698,353.48999999971477,-0.05612384870649861 +70699,353.49499999971476,-0.05612369018645536 +70700,353.49999999971476,-0.05612353169637251 +70701,353.50499999971476,-0.05612337323624368 +70702,353.50999999971475,-0.056123214806062506 +70703,353.51499999971475,-0.05612305640582261 +70704,353.51999999971474,-0.056122898035517635 +70705,353.52499999971474,-0.056122739695141234 +70706,353.52999999971473,-0.05612258138468702 +70707,353.5349999997147,-0.05612242310414864 +70708,353.5399999997147,-0.05612226485351974 +70709,353.5449999997147,-0.05612210663279395 +70710,353.5499999997147,-0.05612194844196491 +70711,353.5549999997147,-0.05612179028102626 +70712,353.5599999997147,-0.05612163214997168 +70713,353.5649999997147,-0.056121474048794764 +70714,353.5699999997147,-0.05612131597748919 +70715,353.5749999997147,-0.056121157936048605 +70716,353.5799999997147,-0.05612099992446665 +70717,353.5849999997147,-0.05612084194273696 +70718,353.5899999997147,-0.05612068399085321 +70719,353.5949999997147,-0.056120526068809046 +70720,353.59999999971467,-0.05612036817659811 +70721,353.60499999971466,-0.05612021031421406 +70722,353.60999999971466,-0.05612005248165056 +70723,353.61499999971466,-0.056119894678901265 +70724,353.61999999971465,-0.056119736905959824 +70725,353.62499999971465,-0.056119579162819906 +70726,353.62999999971464,-0.056119421449475154 +70727,353.63499999971464,-0.05611926376591926 +70728,353.63999999971463,-0.05611910611214586 +70729,353.6449999997146,-0.05611894848814862 +70730,353.6499999997146,-0.05611879089392122 +70731,353.6549999997146,-0.056118633329457296 +70732,353.6599999997146,-0.05611847579475054 +70733,353.6649999997146,-0.05611831828979462 +70734,353.6699999997146,-0.05611816081458319 +70735,353.6749999997146,-0.05611800336910993 +70736,353.6799999997146,-0.056117845953368516 +70737,353.6849999997146,-0.056117688567352615 +70738,353.6899999997146,-0.05611753121105589 +70739,353.6949999997146,-0.05611737388447203 +70740,353.6999999997146,-0.056117216587594713 +70741,353.7049999997146,-0.0561170593204176 +70742,353.70999999971457,-0.05611690208293438 +70743,353.71499999971456,-0.05611674487513872 +70744,353.71999999971456,-0.05611658769702433 +70745,353.72499999971456,-0.05611643054858486 +70746,353.72999999971455,-0.05611627342981402 +70747,353.73499999971455,-0.056116116340705464 +70748,353.73999999971454,-0.0561159592812529 +70749,353.74499999971454,-0.056115802251450006 +70750,353.74999999971453,-0.05611564525129047 +70751,353.7549999997145,-0.056115488280767976 +70752,353.7599999997145,-0.05611533133987622 +70753,353.7649999997145,-0.056115174428608895 +70754,353.7699999997145,-0.05611501754695968 +70755,353.7749999997145,-0.056114860694922275 +70756,353.7799999997145,-0.05611470387249037 +70757,353.7849999997145,-0.05611454707965767 +70758,353.7899999997145,-0.05611439031641787 +70759,353.7949999997145,-0.056114233582764655 +70760,353.7999999997145,-0.056114076878691736 +70761,353.8049999997145,-0.05611392020419281 +70762,353.8099999997145,-0.05611376355926157 +70763,353.8149999997145,-0.056113606943891725 +70764,353.81999999971447,-0.05611345035807699 +70765,353.82499999971446,-0.05611329380181106 +70766,353.82999999971446,-0.05611313727508763 +70767,353.83499999971446,-0.056112980777900404 +70768,353.83999999971445,-0.0561128243102431 +70769,353.84499999971445,-0.056112667872109424 +70770,353.84999999971444,-0.056112511463493095 +70771,353.85499999971444,-0.05611235508438782 +70772,353.85999999971443,-0.0561121987347873 +70773,353.8649999997144,-0.05611204241468525 +70774,353.8699999997144,-0.056111886124075395 +70775,353.8749999997144,-0.05611172986295145 +70776,353.8799999997144,-0.05611157363130712 +70777,353.8849999997144,-0.05611141742913614 +70778,353.8899999997144,-0.05611126125643222 +70779,353.8949999997144,-0.05611110511318907 +70780,353.8999999997144,-0.056110948999400424 +70781,353.9049999997144,-0.05611079291505999 +70782,353.9099999997144,-0.05611063686016151 +70783,353.9149999997144,-0.05611048083469869 +70784,353.9199999997144,-0.05611032483866528 +70785,353.9249999997144,-0.056110168872054986 +70786,353.92999999971437,-0.05611001293486153 +70787,353.93499999971436,-0.056109857027078665 +70788,353.93999999971436,-0.0561097011487001 +70789,353.94499999971435,-0.056109545299719586 +70790,353.94999999971435,-0.05610938948013085 +70791,353.95499999971435,-0.05610923368992761 +70792,353.95999999971434,-0.05610907792910361 +70793,353.96499999971434,-0.05610892219765259 +70794,353.96999999971433,-0.05610876649556828 +70795,353.9749999997143,-0.05610861082284443 +70796,353.9799999997143,-0.05610845517947476 +70797,353.9849999997143,-0.056108299565453025 +70798,353.9899999997143,-0.05610814398077297 +70799,353.9949999997143,-0.056107988425428315 +70800,353.9999999997143,-0.056107832899412825 +70801,354.0049999997143,-0.05610767740272024 +70802,354.0099999997143,-0.05610752193534431 +70803,354.0149999997143,-0.05610736649727878 +70804,354.0199999997143,-0.05610721108851738 +70805,354.0249999997143,-0.05610705570905387 +70806,354.0299999997143,-0.056106900358882016 +70807,354.0349999997143,-0.05610674503799555 +70808,354.03999999971427,-0.05610658974638824 +70809,354.04499999971426,-0.05610643448405382 +70810,354.04999999971426,-0.05610627925098607 +70811,354.05499999971425,-0.056106124047178726 +70812,354.05999999971425,-0.056105968872625554 +70813,354.06499999971425,-0.05610581372732031 +70814,354.06999999971424,-0.056105658611256756 +70815,354.07499999971424,-0.05610550352442864 +70816,354.07999999971423,-0.05610534846682974 +70817,354.0849999997142,-0.05610519343845381 +70818,354.0899999997142,-0.05610503843929462 +70819,354.0949999997142,-0.056104883469345924 +70820,354.0999999997142,-0.0561047285286015 +70821,354.1049999997142,-0.05610457361705511 +70822,354.1099999997142,-0.05610441873470052 +70823,354.1149999997142,-0.056104263881531495 +70824,354.1199999997142,-0.05610410905754182 +70825,354.1249999997142,-0.056103954262725256 +70826,354.1299999997142,-0.056103799497075585 +70827,354.1349999997142,-0.056103644760586574 +70828,354.1399999997142,-0.056103490053252006 +70829,354.1449999997142,-0.05610333537506564 +70830,354.14999999971417,-0.056103180726021266 +70831,354.15499999971416,-0.056103026106112654 +70832,354.15999999971416,-0.056102871515333594 +70833,354.16499999971415,-0.056102716953677856 +70834,354.16999999971415,-0.05610256242113923 +70835,354.17499999971415,-0.05610240791771149 +70836,354.17999999971414,-0.05610225344338842 +70837,354.18499999971414,-0.056102098998163825 +70838,354.18999999971413,-0.056101944582031466 +70839,354.1949999997141,-0.056101790194985145 +70840,354.1999999997141,-0.05610163583701865 +70841,354.2049999997141,-0.05610148150812576 +70842,354.2099999997141,-0.05610132720830028 +70843,354.2149999997141,-0.05610117293753599 +70844,354.2199999997141,-0.0561010186958267 +70845,354.2249999997141,-0.05610086448316618 +70846,354.2299999997141,-0.05610071029954824 +70847,354.2349999997141,-0.05610055614496667 +70848,354.2399999997141,-0.05610040201941527 +70849,354.2449999997141,-0.056100247922887835 +70850,354.2499999997141,-0.05610009385537816 +70851,354.2549999997141,-0.056099939816880065 +70852,354.25999999971407,-0.05609978580738734 +70853,354.26499999971406,-0.05609963182689379 +70854,354.26999999971406,-0.056099477875393204 +70855,354.27499999971405,-0.05609932395287942 +70856,354.27999999971405,-0.056099170059346205 +70857,354.28499999971405,-0.056099016194787396 +70858,354.28999999971404,-0.05609886235919679 +70859,354.29499999971404,-0.0560987085525682 +70860,354.29999999971403,-0.056098554774895434 +70861,354.304999999714,-0.0560984010261723 +70862,354.309999999714,-0.05609824730639262 +70863,354.314999999714,-0.056098093615550196 +70864,354.319999999714,-0.056097939953638855 +70865,354.324999999714,-0.05609778632065242 +70866,354.329999999714,-0.05609763271658468 +70867,354.334999999714,-0.05609747914142948 +70868,354.339999999714,-0.056097325595180624 +70869,354.344999999714,-0.05609717207783194 +70870,354.349999999714,-0.05609701858937725 +70871,354.354999999714,-0.05609686512981037 +70872,354.359999999714,-0.056096711699125126 +70873,354.364999999714,-0.056096558297315344 +70874,354.36999999971397,-0.05609640492437485 +70875,354.37499999971396,-0.056096251580297476 +70876,354.37999999971396,-0.05609609826507706 +70877,354.38499999971395,-0.05609594497870741 +70878,354.38999999971395,-0.05609579172118237 +70879,354.39499999971395,-0.05609563849249577 +70880,354.39999999971394,-0.056095485292641425 +70881,354.40499999971394,-0.056095332121613196 +70882,354.40999999971393,-0.05609517897940491 +70883,354.4149999997139,-0.05609502586601039 +70884,354.4199999997139,-0.05609487278142349 +70885,354.4249999997139,-0.056094719725638044 +70886,354.4299999997139,-0.05609456669864788 +70887,354.4349999997139,-0.05609441370044685 +70888,354.4399999997139,-0.0560942607310288 +70889,354.4449999997139,-0.05609410779038756 +70890,354.4499999997139,-0.05609395487851697 +70891,354.4549999997139,-0.056093801995410884 +70892,354.4599999997139,-0.05609364914106316 +70893,354.4649999997139,-0.05609349631546762 +70894,354.4699999997139,-0.056093343518618145 +70895,354.4749999997139,-0.05609319075050856 +70896,354.47999999971387,-0.05609303801113272 +70897,354.48499999971386,-0.05609288530048447 +70898,354.48999999971386,-0.05609273261855768 +70899,354.49499999971385,-0.05609257996534619 +70900,354.49999999971385,-0.05609242734084385 +70901,354.50499999971385,-0.05609227474504454 +70902,354.50999999971384,-0.056092122177942086 +70903,354.51499999971384,-0.05609196963953038 +70904,354.51999999971383,-0.05609181712980326 +70905,354.5249999997138,-0.05609166464875459 +70906,354.5299999997138,-0.056091512196378236 +70907,354.5349999997138,-0.05609135977266804 +70908,354.5399999997138,-0.05609120737761789 +70909,354.5449999997138,-0.05609105501122164 +70910,354.5499999997138,-0.05609090267347317 +70911,354.5549999997138,-0.05609075036436633 +70912,354.5599999997138,-0.05609059808389499 +70913,354.5649999997138,-0.05609044583205302 +70914,354.5699999997138,-0.0560902936088343 +70915,354.5749999997138,-0.05609014141423271 +70916,354.5799999997138,-0.05608998924824209 +70917,354.5849999997138,-0.056089837110856335 +70918,354.58999999971377,-0.05608968500206932 +70919,354.59499999971376,-0.05608953292187491 +70920,354.59999999971376,-0.05608938087026699 +70921,354.60499999971375,-0.05608922884723944 +70922,354.60999999971375,-0.056089076852786135 +70923,354.61499999971375,-0.056088924886900954 +70924,354.61999999971374,-0.056088772949577786 +70925,354.62499999971374,-0.05608862104081051 +70926,354.62999999971373,-0.05608846916059299 +70927,354.6349999997137,-0.056088317308919146 +70928,354.6399999997137,-0.05608816548578284 +70929,354.6449999997137,-0.05608801369117796 +70930,354.6499999997137,-0.05608786192509841 +70931,354.6549999997137,-0.05608771018753807 +70932,354.6599999997137,-0.056087558478490805 +70933,354.6649999997137,-0.05608740679795055 +70934,354.6699999997137,-0.056087255145911175 +70935,354.6749999997137,-0.056087103522366566 +70936,354.6799999997137,-0.05608695192731062 +70937,354.6849999997137,-0.056086800360737245 +70938,354.6899999997137,-0.05608664882264033 +70939,354.6949999997137,-0.05608649731301378 +70940,354.69999999971367,-0.05608634583185149 +70941,354.70499999971366,-0.05608619437914736 +70942,354.70999999971366,-0.05608604295489528 +70943,354.71499999971365,-0.05608589155908916 +70944,354.71999999971365,-0.0560857401917229 +70945,354.72499999971365,-0.05608558885279043 +70946,354.72999999971364,-0.05608543754228562 +70947,354.73499999971364,-0.05608528626020239 +70948,354.73999999971363,-0.056085135006534656 +70949,354.7449999997136,-0.056084983781276306 +70950,354.7499999997136,-0.05608483258442126 +70951,354.7549999997136,-0.05608468141596345 +70952,354.7599999997136,-0.05608453027589676 +70953,354.7649999997136,-0.05608437916421511 +70954,354.7699999997136,-0.05608422808091241 +70955,354.7749999997136,-0.056084077025982594 +70956,354.7799999997136,-0.05608392599941956 +70957,354.7849999997136,-0.05608377500121724 +70958,354.7899999997136,-0.05608362403136954 +70959,354.7949999997136,-0.056083473089870384 +70960,354.7999999997136,-0.0560833221767137 +70961,354.8049999997136,-0.05608317129189339 +70962,354.80999999971357,-0.0560830204354034 +70963,354.81499999971356,-0.05608286960723764 +70964,354.81999999971356,-0.05608271880739004 +70965,354.82499999971355,-0.05608256803585452 +70966,354.82999999971355,-0.056082417292625024 +70967,354.83499999971355,-0.056082266577695467 +70968,354.83999999971354,-0.05608211589105977 +70969,354.84499999971354,-0.05608196523271188 +70970,354.84999999971353,-0.056081814602645726 +70971,354.8549999997135,-0.05608166400085523 +70972,354.8599999997135,-0.05608151342733433 +70973,354.8649999997135,-0.05608136288207696 +70974,354.8699999997135,-0.056081212365077064 +70975,354.8749999997135,-0.056081061876328574 +70976,354.8799999997135,-0.05608091141582543 +70977,354.8849999997135,-0.05608076098356156 +70978,354.8899999997135,-0.056080610579530926 +70979,354.8949999997135,-0.05608046020372746 +70980,354.8999999997135,-0.056080309856145094 +70981,354.9049999997135,-0.056080159536777786 +70982,354.9099999997135,-0.05608000924561947 +70983,354.9149999997135,-0.05607985898266409 +70984,354.91999999971347,-0.05607970874790561 +70985,354.92499999971346,-0.05607955854133796 +70986,354.92999999971346,-0.05607940836295511 +70987,354.93499999971345,-0.05607925821275099 +70988,354.93999999971345,-0.056079108090719545 +70989,354.94499999971345,-0.05607895799685474 +70990,354.94999999971344,-0.05607880793115054 +70991,354.95499999971344,-0.05607865789360088 +70992,354.95999999971343,-0.05607850788419973 +70993,354.9649999997134,-0.05607835790294102 +70994,354.9699999997134,-0.05607820794981875 +70995,354.9749999997134,-0.05607805802482685 +70996,354.9799999997134,-0.05607790812795928 +70997,354.9849999997134,-0.05607775825921 +70998,354.9899999997134,-0.056077608418573 +70999,354.9949999997134,-0.0560774586060422 +71000,354.9999999997134,-0.0560773088216116 +71001,355.0049999997134,-0.05607715906527514 +71002,355.0099999997134,-0.05607700933702679 +71003,355.0149999997134,-0.056076859636860536 +71004,355.0199999997134,-0.05607670996477033 +71005,355.0249999997134,-0.056076560320750146 +71006,355.02999999971337,-0.05607641070479396 +71007,355.03499999971336,-0.05607626111689574 +71008,355.03999999971336,-0.05607611155704946 +71009,355.04499999971335,-0.05607596202524909 +71010,355.04999999971335,-0.056075812521488605 +71011,355.05499999971335,-0.05607566304576199 +71012,355.05999999971334,-0.05607551359806321 +71013,355.06499999971334,-0.05607536417838625 +71014,355.06999999971333,-0.056075214786725086 +71015,355.0749999997133,-0.056075065423073694 +71016,355.0799999997133,-0.056074916087426076 +71017,355.0849999997133,-0.0560747667797762 +71018,355.0899999997133,-0.05607461750011804 +71019,355.0949999997133,-0.056074468248445586 +71020,355.0999999997133,-0.05607431902475284 +71021,355.1049999997133,-0.05607416982903378 +71022,355.1099999997133,-0.05607402066128238 +71023,355.1149999997133,-0.05607387152149264 +71024,355.1199999997133,-0.05607372240965854 +71025,355.1249999997133,-0.05607357332577411 +71026,355.1299999997133,-0.0560734242698333 +71027,355.1349999997133,-0.05607327524183012 +71028,355.13999999971327,-0.05607312624175856 +71029,355.14499999971326,-0.056072977269612606 +71030,355.14999999971326,-0.05607282832538627 +71031,355.15499999971325,-0.056072679409073546 +71032,355.15999999971325,-0.05607253052066844 +71033,355.16499999971325,-0.056072381660164934 +71034,355.16999999971324,-0.05607223282755704 +71035,355.17499999971324,-0.05607208402283877 +71036,355.17999999971323,-0.0560719352460041 +71037,355.1849999997132,-0.05607178649704706 +71038,355.1899999997132,-0.056071637775961636 +71039,355.1949999997132,-0.05607148908274185 +71040,355.1999999997132,-0.05607134041738171 +71041,355.2049999997132,-0.056071191779875205 +71042,355.2099999997132,-0.056071043170216356 +71043,355.2149999997132,-0.05607089458839917 +71044,355.2199999997132,-0.05607074603441767 +71045,355.2249999997132,-0.05607059750826587 +71046,355.2299999997132,-0.05607044900993776 +71047,355.2349999997132,-0.05607030053942738 +71048,355.2399999997132,-0.056070152096728734 +71049,355.2449999997132,-0.05607000368183583 +71050,355.24999999971317,-0.0560698552947427 +71051,355.25499999971316,-0.056069706935443366 +71052,355.25999999971316,-0.05606955860393184 +71053,355.26499999971315,-0.05606941030020214 +71054,355.26999999971315,-0.05606926202424829 +71055,355.27499999971315,-0.05606911377606433 +71056,355.27999999971314,-0.05606896555564427 +71057,355.28499999971314,-0.05606881736298213 +71058,355.28999999971313,-0.05606866919807194 +71059,355.2949999997131,-0.05606852106090774 +71060,355.2999999997131,-0.05606837295148356 +71061,355.3049999997131,-0.0560682248697934 +71062,355.3099999997131,-0.05606807681583132 +71063,355.3149999997131,-0.05606792878959133 +71064,355.3199999997131,-0.056067780791067494 +71065,355.3249999997131,-0.05606763282025382 +71066,355.3299999997131,-0.05606748487714435 +71067,355.3349999997131,-0.05606733696173312 +71068,355.3399999997131,-0.056067189074014166 +71069,355.3449999997131,-0.05606704121398154 +71070,355.3499999997131,-0.05606689338162927 +71071,355.3549999997131,-0.05606674557695139 +71072,355.35999999971307,-0.05606659779994196 +71073,355.36499999971306,-0.05606645005059501 +71074,355.36999999971306,-0.05606630232890457 +71075,355.37499999971305,-0.0560661546348647 +71076,355.37999999971305,-0.05606600696846945 +71077,355.38499999971305,-0.056065859329712864 +71078,355.38999999971304,-0.056065711718589 +71079,355.39499999971304,-0.056065564135091894 +71080,355.39999999971303,-0.05606541657921559 +71081,355.404999999713,-0.05606526905095416 +71082,355.409999999713,-0.056065121550301626 +71083,355.414999999713,-0.05606497407725206 +71084,355.419999999713,-0.05606482663179952 +71085,355.424999999713,-0.05606467921393807 +71086,355.429999999713,-0.05606453182366174 +71087,355.434999999713,-0.0560643844609646 +71088,355.439999999713,-0.05606423712584072 +71089,355.444999999713,-0.056064089818284146 +71090,355.449999999713,-0.05606394253828894 +71091,355.454999999713,-0.05606379528584917 +71092,355.459999999713,-0.056063648060958884 +71093,355.464999999713,-0.05606350086361216 +71094,355.46999999971297,-0.05606335369380307 +71095,355.47499999971296,-0.056063206551525656 +71096,355.47999999971296,-0.056063059436774 +71097,355.48499999971295,-0.05606291234954217 +71098,355.48999999971295,-0.05606276528982424 +71099,355.49499999971295,-0.05606261825761428 +71100,355.49999999971294,-0.05606247125290635 +71101,355.50499999971294,-0.05606232427569454 +71102,355.50999999971293,-0.0560621773259729 +71103,355.5149999997129,-0.05606203040373552 +71104,355.5199999997129,-0.05606188350897648 +71105,355.5249999997129,-0.05606173664168985 +71106,355.5299999997129,-0.056061589801869705 +71107,355.5349999997129,-0.056061442989510116 +71108,355.5399999997129,-0.056061296204605184 +71109,355.5449999997129,-0.05606114944714898 +71110,355.5499999997129,-0.05606100271713558 +71111,355.5549999997129,-0.05606085601455908 +71112,355.5599999997129,-0.05606070933941355 +71113,355.5649999997129,-0.05606056269169308 +71114,355.5699999997129,-0.056060416071391755 +71115,355.5749999997129,-0.05606026947850367 +71116,355.57999999971287,-0.05606012291302291 +71117,355.58499999971286,-0.056059976374943574 +71118,355.58999999971286,-0.05605982986425974 +71119,355.59499999971285,-0.056059683380965494 +71120,355.59999999971285,-0.05605953692505494 +71121,355.60499999971285,-0.05605939049652217 +71122,355.60999999971284,-0.05605924409536128 +71123,355.61499999971284,-0.056059097721566364 +71124,355.61999999971283,-0.0560589513751315 +71125,355.6249999997128,-0.05605880505605081 +71126,355.6299999997128,-0.0560586587643184 +71127,355.6349999997128,-0.05605851249992834 +71128,355.6399999997128,-0.056058366262874755 +71129,355.6449999997128,-0.056058220053151746 +71130,355.6499999997128,-0.05605807387075341 +71131,355.6549999997128,-0.05605792771567384 +71132,355.6599999997128,-0.05605778158790716 +71133,355.6649999997128,-0.05605763548744747 +71134,355.6699999997128,-0.05605748941428888 +71135,355.6749999997128,-0.056057343368425494 +71136,355.6799999997128,-0.05605719734985142 +71137,355.6849999997128,-0.05605705135856077 +71138,355.68999999971277,-0.056056905394547656 +71139,355.69499999971276,-0.05605675945780619 +71140,355.69999999971276,-0.05605661354833049 +71141,355.70499999971275,-0.05605646766611467 +71142,355.70999999971275,-0.056056321811152846 +71143,355.71499999971275,-0.056056175983439135 +71144,355.71999999971274,-0.05605603018296765 +71145,355.72499999971274,-0.05605588440973251 +71146,355.72999999971273,-0.05605573866372785 +71147,355.7349999997127,-0.056055592944947774 +71148,355.7399999997127,-0.0560554472533864 +71149,355.7449999997127,-0.05605530158903787 +71150,355.7499999997127,-0.0560551559518963 +71151,355.7549999997127,-0.056055010341955806 +71152,355.7599999997127,-0.05605486475921053 +71153,355.7649999997127,-0.0560547192036546 +71154,355.7699999997127,-0.05605457367528213 +71155,355.7749999997127,-0.05605442817408726 +71156,355.7799999997127,-0.05605428270006412 +71157,355.7849999997127,-0.056054137253206834 +71158,355.7899999997127,-0.056053991833509544 +71159,355.7949999997127,-0.056053846440966386 +71160,355.79999999971267,-0.056053701075571484 +71161,355.80499999971266,-0.056053555737318975 +71162,355.80999999971266,-0.056053410426203 +71163,355.81499999971265,-0.0560532651422177 +71164,355.81999999971265,-0.05605311988535721 +71165,355.82499999971265,-0.05605297465561566 +71166,355.82999999971264,-0.056052829452987216 +71167,355.83499999971264,-0.056052684277466 +71168,355.83999999971263,-0.05605253912904617 +71169,355.8449999997126,-0.056052394007721856 +71170,355.8499999997126,-0.05605224891348721 +71171,355.8549999997126,-0.05605210384633637 +71172,355.8599999997126,-0.0560519588062635 +71173,355.8649999997126,-0.05605181379326274 +71174,355.8699999997126,-0.05605166880732823 +71175,355.8749999997126,-0.05605152384845414 +71176,355.8799999997126,-0.05605137891663461 +71177,355.8849999997126,-0.056051234011863786 +71178,355.8899999997126,-0.05605108913413584 +71179,355.8949999997126,-0.056050944283444905 +71180,355.8999999997126,-0.05605079945978515 +71181,355.9049999997126,-0.05605065466315074 +71182,355.90999999971257,-0.05605050989353582 +71183,355.91499999971256,-0.056050365150934554 +71184,355.91999999971256,-0.0560502204353411 +71185,355.92499999971255,-0.05605007574674961 +71186,355.92999999971255,-0.05604993108515427 +71187,355.93499999971255,-0.05604978645054922 +71188,355.93999999971254,-0.05604964184292864 +71189,355.94499999971254,-0.05604949726228668 +71190,355.94999999971253,-0.05604935270861752 +71191,355.9549999997125,-0.05604920818191532 +71192,355.9599999997125,-0.05604906368217425 +71193,355.9649999997125,-0.056048919209388474 +71194,355.9699999997125,-0.056048774763552175 +71195,355.9749999997125,-0.05604863034465952 +71196,355.9799999997125,-0.05604848595270467 +71197,355.9849999997125,-0.05604834158768181 +71198,355.9899999997125,-0.05604819724958512 +71199,355.9949999997125,-0.05604805293840876 +71200,355.9999999997125,-0.056047908654146925 +71201,356.0049999997125,-0.056047764396793785 +71202,356.0099999997125,-0.05604762016634351 +71203,356.0149999997125,-0.05604747596279029 +71204,356.01999999971247,-0.0560473317861283 +71205,356.02499999971246,-0.05604718763635173 +71206,356.02999999971246,-0.05604704351345474 +71207,356.03499999971245,-0.05604689941743153 +71208,356.03999999971245,-0.05604675534827631 +71209,356.04499999971245,-0.05604661130598322 +71210,356.04999999971244,-0.05604646729054648 +71211,356.05499999971244,-0.05604632330196026 +71212,356.05999999971243,-0.05604617934021876 +71213,356.0649999997124,-0.05604603540531618 +71214,356.0699999997124,-0.05604589149724669 +71215,356.0749999997124,-0.05604574761600449 +71216,356.0799999997124,-0.05604560376158378 +71217,356.0849999997124,-0.05604545993397875 +71218,356.0899999997124,-0.056045316133183594 +71219,356.0949999997124,-0.056045172359192506 +71220,356.0999999997124,-0.056045028611999684 +71221,356.1049999997124,-0.05604488489159934 +71222,356.1099999997124,-0.05604474119798566 +71223,356.1149999997124,-0.056044597531152845 +71224,356.1199999997124,-0.0560444538910951 +71225,356.1249999997124,-0.05604431027780663 +71226,356.12999999971237,-0.056044166691281636 +71227,356.13499999971236,-0.056044023131514326 +71228,356.13999999971236,-0.056043879598498894 +71229,356.14499999971235,-0.056043736092229554 +71230,356.14999999971235,-0.056043592612700525 +71231,356.15499999971235,-0.05604344915990601 +71232,356.15999999971234,-0.0560433057338402 +71233,356.16499999971234,-0.056043162334497326 +71234,356.16999999971233,-0.056043018961871596 +71235,356.1749999997123,-0.05604287561595723 +71236,356.1799999997123,-0.05604273229674844 +71237,356.1849999997123,-0.05604258900423943 +71238,356.1899999997123,-0.05604244573842442 +71239,356.1949999997123,-0.05604230249929763 +71240,356.1999999997123,-0.05604215928685329 +71241,356.2049999997123,-0.05604201610108561 +71242,356.2099999997123,-0.0560418729419888 +71243,356.2149999997123,-0.056041729809557086 +71244,356.2199999997123,-0.0560415867037847 +71245,356.2249999997123,-0.056041443624665864 +71246,356.2299999997123,-0.05604130057219479 +71247,356.2349999997123,-0.05604115754636571 +71248,356.23999999971227,-0.05604101454717285 +71249,356.24499999971226,-0.05604087157461045 +71250,356.24999999971226,-0.05604072862867272 +71251,356.25499999971225,-0.056040585709353906 +71252,356.25999999971225,-0.05604044281664824 +71253,356.26499999971224,-0.05604029995054994 +71254,356.26999999971224,-0.056040157111053236 +71255,356.27499999971224,-0.05604001429815237 +71256,356.27999999971223,-0.05603987151184158 +71257,356.2849999997122,-0.056039728752115096 +71258,356.2899999997122,-0.05603958601896716 +71259,356.2949999997122,-0.05603944331239201 +71260,356.2999999997122,-0.05603930063238389 +71261,356.3049999997122,-0.056039157978937014 +71262,356.3099999997122,-0.056039015352045654 +71263,356.3149999997122,-0.056038872751704036 +71264,356.3199999997122,-0.0560387301779064 +71265,356.3249999997122,-0.056038587630647 +71266,356.3299999997122,-0.05603844510992009 +71267,356.3349999997122,-0.056038302615719904 +71268,356.3399999997122,-0.056038160148040674 +71269,356.3449999997122,-0.05603801770687667 +71270,356.34999999971217,-0.05603787529222214 +71271,356.35499999971216,-0.05603773290407133 +71272,356.35999999971216,-0.0560375905424185 +71273,356.36499999971215,-0.05603744820725788 +71274,356.36999999971215,-0.05603730589858374 +71275,356.37499999971214,-0.05603716361639033 +71276,356.37999999971214,-0.056037021360671915 +71277,356.38499999971214,-0.05603687913142274 +71278,356.38999999971213,-0.05603673692863707 +71279,356.3949999997121,-0.056036594752309155 +71280,356.3999999997121,-0.05603645260243326 +71281,356.4049999997121,-0.05603631047900365 +71282,356.4099999997121,-0.056036168382014584 +71283,356.4149999997121,-0.05603602631146032 +71284,356.4199999997121,-0.05603588426733512 +71285,356.4249999997121,-0.05603574224963326 +71286,356.4299999997121,-0.05603560025834899 +71287,356.4349999997121,-0.056035458293476594 +71288,356.4399999997121,-0.05603531635501032 +71289,356.4449999997121,-0.05603517444294445 +71290,356.4499999997121,-0.056035032557273254 +71291,356.4549999997121,-0.056034890697991 +71292,356.45999999971207,-0.05603474886509197 +71293,356.46499999971206,-0.05603460705857043 +71294,356.46999999971206,-0.05603446527842064 +71295,356.47499999971205,-0.05603432352463689 +71296,356.47999999971205,-0.05603418179721345 +71297,356.48499999971204,-0.056034040096144606 +71298,356.48999999971204,-0.05603389842142464 +71299,356.49499999971204,-0.05603375677304782 +71300,356.49999999971203,-0.05603361515100841 +71301,356.504999999712,-0.056033473555300715 +71302,356.509999999712,-0.05603333198591902 +71303,356.514999999712,-0.05603319044285759 +71304,356.519999999712,-0.056033048926110725 +71305,356.524999999712,-0.0560329074356727 +71306,356.529999999712,-0.0560327659715378 +71307,356.534999999712,-0.05603262453370033 +71308,356.539999999712,-0.05603248312215456 +71309,356.544999999712,-0.05603234173689478 +71310,356.549999999712,-0.05603220037791529 +71311,356.554999999712,-0.05603205904521037 +71312,356.559999999712,-0.05603191773877433 +71313,356.564999999712,-0.05603177645860144 +71314,356.56999999971197,-0.05603163520468603 +71315,356.57499999971196,-0.056031493977022354 +71316,356.57999999971196,-0.05603135277560473 +71317,356.58499999971195,-0.056031211600427455 +71318,356.58999999971195,-0.056031070451484824 +71319,356.59499999971194,-0.056030929328771135 +71320,356.59999999971194,-0.0560307882322807 +71321,356.60499999971194,-0.05603064716200781 +71322,356.60999999971193,-0.05603050611794677 +71323,356.6149999997119,-0.056030365100091885 +71324,356.6199999997119,-0.05603022410843745 +71325,356.6249999997119,-0.05603008314297779 +71326,356.6299999997119,-0.056029942203707196 +71327,356.6349999997119,-0.05602980129061997 +71328,356.6399999997119,-0.056029660403710435 +71329,356.6449999997119,-0.05602951954297291 +71330,356.6499999997119,-0.05602937870840168 +71331,356.6549999997119,-0.05602923789999108 +71332,356.6599999997119,-0.056029097117735405 +71333,356.6649999997119,-0.05602895636162899 +71334,356.6699999997119,-0.05602881563166612 +71335,356.6749999997119,-0.05602867492784114 +71336,356.67999999971187,-0.056028534250148344 +71337,356.68499999971186,-0.056028393598582055 +71338,356.68999999971186,-0.05602825297313661 +71339,356.69499999971185,-0.05602811237380631 +71340,356.69999999971185,-0.056027971800585476 +71341,356.70499999971184,-0.05602783125346845 +71342,356.70999999971184,-0.05602769073244953 +71343,356.71499999971184,-0.05602755023752306 +71344,356.71999999971183,-0.05602740976868336 +71345,356.7249999997118,-0.056027269325924736 +71346,356.7299999997118,-0.05602712890924154 +71347,356.7349999997118,-0.05602698851862809 +71348,356.7399999997118,-0.05602684815407872 +71349,356.7449999997118,-0.05602670781558776 +71350,356.7499999997118,-0.05602656750314952 +71351,356.7549999997118,-0.056026427216758365 +71352,356.7599999997118,-0.056026286956408614 +71353,356.7649999997118,-0.0560261467220946 +71354,356.7699999997118,-0.05602600651381064 +71355,356.7749999997118,-0.0560258663315511 +71356,356.7799999997118,-0.05602572617531031 +71357,356.7849999997118,-0.05602558604508261 +71358,356.78999999971177,-0.056025445940862326 +71359,356.79499999971176,-0.05602530586264381 +71360,356.79999999971176,-0.056025165810421385 +71361,356.80499999971175,-0.05602502578418943 +71362,356.80999999971175,-0.056024885783942255 +71363,356.81499999971174,-0.05602474580967422 +71364,356.81999999971174,-0.05602460586137965 +71365,356.82499999971174,-0.056024465939052914 +71366,356.82999999971173,-0.05602432604268836 +71367,356.8349999997117,-0.056024186172280326 +71368,356.8399999997117,-0.05602404632782316 +71369,356.8449999997117,-0.056023906509311217 +71370,356.8499999997117,-0.05602376671673885 +71371,356.8549999997117,-0.05602362695010041 +71372,356.8599999997117,-0.05602348720939024 +71373,356.8649999997117,-0.05602334749460271 +71374,356.8699999997117,-0.056023207805732174 +71375,356.8749999997117,-0.05602306814277297 +71376,356.8799999997117,-0.05602292850571948 +71377,356.8849999997117,-0.05602278889456605 +71378,356.8899999997117,-0.056022649309307046 +71379,356.8949999997117,-0.05602250974993682 +71380,356.89999999971167,-0.05602237021644973 +71381,356.90499999971166,-0.05602223070884016 +71382,356.90999999971166,-0.05602209122710245 +71383,356.91499999971165,-0.056021951771230975 +71384,356.91999999971165,-0.0560218123412201 +71385,356.92499999971164,-0.0560216729370642 +71386,356.92999999971164,-0.05602153355875763 +71387,356.93499999971164,-0.05602139420629476 +71388,356.93999999971163,-0.05602125487966997 +71389,356.9449999997116,-0.056021115578877616 +71390,356.9499999997116,-0.05602097630391208 +71391,356.9549999997116,-0.05602083705476773 +71392,356.9599999997116,-0.05602069783143894 +71393,356.9649999997116,-0.056020558633920074 +71394,356.9699999997116,-0.056020419462205526 +71395,356.9749999997116,-0.056020280316289674 +71396,356.9799999997116,-0.05602014119616688 +71397,356.9849999997116,-0.05602000210183152 +71398,356.9899999997116,-0.056019863033278 +71399,356.9949999997116,-0.05601972399050068 +71400,356.9999999997116,-0.05601958497349395 +71401,357.0049999997116,-0.05601944598225218 +71402,357.00999999971157,-0.05601930701676977 +71403,357.01499999971156,-0.056019168077041104 +71404,357.01999999971156,-0.056019029163060556 +71405,357.02499999971155,-0.056018890274822514 +71406,357.02999999971155,-0.05601875141232136 +71407,357.03499999971154,-0.056018612575551505 +71408,357.03999999971154,-0.05601847376450732 +71409,357.04499999971154,-0.05601833497918321 +71410,357.04999999971153,-0.05601819621957355 +71411,357.0549999997115,-0.05601805748567274 +71412,357.0599999997115,-0.056017918777475174 +71413,357.0649999997115,-0.05601778009497525 +71414,357.0699999997115,-0.05601764143816736 +71415,357.0749999997115,-0.0560175028070459 +71416,357.0799999997115,-0.056017364201605274 +71417,357.0849999997115,-0.05601722562183987 +71418,357.0899999997115,-0.0560170870677441 +71419,357.0949999997115,-0.05601694853931237 +71420,357.0999999997115,-0.05601681003653906 +71421,357.1049999997115,-0.056016671559418585 +71422,357.1099999997115,-0.05601653310794535 +71423,357.1149999997115,-0.05601639468211376 +71424,357.11999999971147,-0.056016256281918204 +71425,357.12499999971146,-0.05601611790735311 +71426,357.12999999971146,-0.05601597955841288 +71427,357.13499999971145,-0.056015841235091915 +71428,357.13999999971145,-0.056015702937384636 +71429,357.14499999971144,-0.05601556466528544 +71430,357.14999999971144,-0.05601542641878877 +71431,357.15499999971144,-0.05601528819788899 +71432,357.15999999971143,-0.056015150002580553 +71433,357.1649999997114,-0.05601501183285787 +71434,357.1699999997114,-0.05601487368871534 +71435,357.1749999997114,-0.0560147355701474 +71436,357.1799999997114,-0.056014597477148445 +71437,357.1849999997114,-0.0560144594097129 +71438,357.1899999997114,-0.0560143213678352 +71439,357.1949999997114,-0.05601418335150975 +71440,357.1999999997114,-0.056014045360730964 +71441,357.2049999997114,-0.05601390739549328 +71442,357.2099999997114,-0.05601376945579112 +71443,357.2149999997114,-0.056013631541618925 +71444,357.2199999997114,-0.05601349365297109 +71445,357.2249999997114,-0.05601335578984207 +71446,357.22999999971137,-0.05601321795222626 +71447,357.23499999971136,-0.056013080140118104 +71448,357.23999999971136,-0.05601294235351205 +71449,357.24499999971135,-0.0560128045924025 +71450,357.24999999971135,-0.05601266685678391 +71451,357.25499999971134,-0.05601252914665071 +71452,357.25999999971134,-0.05601239146199731 +71453,357.26499999971134,-0.056012253802818164 +71454,357.26999999971133,-0.056012116169107715 +71455,357.2749999997113,-0.05601197856086038 +71456,357.2799999997113,-0.05601184097807061 +71457,357.2849999997113,-0.05601170342073285 +71458,357.2899999997113,-0.05601156588884152 +71459,357.2949999997113,-0.05601142838239106 +71460,357.2999999997113,-0.05601129090137593 +71461,357.3049999997113,-0.05601115344579057 +71462,357.3099999997113,-0.05601101601562941 +71463,357.3149999997113,-0.056010878610886904 +71464,357.3199999997113,-0.056010741231557505 +71465,357.3249999997113,-0.056010603877635644 +71466,357.3299999997113,-0.056010466549115775 +71467,357.3349999997113,-0.056010329245992356 +71468,357.33999999971127,-0.05601019196825982 +71469,357.34499999971126,-0.05601005471591263 +71470,357.34999999971126,-0.05600991748894524 +71471,357.35499999971125,-0.05600978028735209 +71472,357.35999999971125,-0.05600964311112765 +71473,357.36499999971124,-0.056009505960266354 +71474,357.36999999971124,-0.05600936883476267 +71475,357.37499999971124,-0.05600923173461105 +71476,357.37999999971123,-0.05600909465980597 +71477,357.3849999997112,-0.056008957610341865 +71478,357.3899999997112,-0.056008820586213204 +71479,357.3949999997112,-0.056008683587414454 +71480,357.3999999997112,-0.05600854661394006 +71481,357.4049999997112,-0.0560084096657845 +71482,357.4099999997112,-0.056008272742942226 +71483,357.4149999997112,-0.05600813584540771 +71484,357.4199999997112,-0.05600799897317542 +71485,357.4249999997112,-0.056007862126239816 +71486,357.4299999997112,-0.05600772530459537 +71487,357.4349999997112,-0.05600758850823654 +71488,357.4399999997112,-0.05600745173715781 +71489,357.4449999997112,-0.05600731499135364 +71490,357.44999999971117,-0.05600717827081852 +71491,357.45499999971116,-0.056007041575546895 +71492,357.45999999971116,-0.05600690490553326 +71493,357.46499999971115,-0.056006768260772076 +71494,357.46999999971115,-0.056006631641257826 +71495,357.47499999971114,-0.05600649504698498 +71496,357.47999999971114,-0.05600635847794803 +71497,357.48499999971114,-0.05600622193414144 +71498,357.48999999971113,-0.056006085415559695 +71499,357.4949999997111,-0.05600594892219728 +71500,357.4999999997111,-0.05600581245404867 +71501,357.5049999997111,-0.056005676011108334 +71502,357.5099999997111,-0.05600553959337077 +71503,357.5149999997111,-0.05600540320083047 +71504,357.5199999997111,-0.05600526683348191 +71505,357.5249999997111,-0.056005130491319575 +71506,357.5299999997111,-0.056004994174337956 +71507,357.5349999997111,-0.05600485788253154 +71508,357.5399999997111,-0.05600472161589482 +71509,357.5449999997111,-0.05600458537442228 +71510,357.5499999997111,-0.05600444915810841 +71511,357.5549999997111,-0.05600431296694771 +71512,357.55999999971107,-0.056004176800934675 +71513,357.56499999971106,-0.05600404066006378 +71514,357.56999999971106,-0.05600390454432955 +71515,357.57499999971105,-0.056003768453726455 +71516,357.57999999971105,-0.05600363238824901 +71517,357.58499999971104,-0.0560034963478917 +71518,357.58999999971104,-0.05600336033264902 +71519,357.59499999971104,-0.05600322434251549 +71520,357.59999999971103,-0.05600308837748561 +71521,357.604999999711,-0.05600295243755386 +71522,357.609999999711,-0.05600281652271477 +71523,357.614999999711,-0.05600268063296282 +71524,357.619999999711,-0.05600254476829252 +71525,357.624999999711,-0.056002408928698386 +71526,357.629999999711,-0.056002273114174925 +71527,357.634999999711,-0.05600213732471664 +71528,357.639999999711,-0.05600200156031804 +71529,357.644999999711,-0.056001865820973634 +71530,357.649999999711,-0.056001730106677944 +71531,357.654999999711,-0.05600159441742545 +71532,357.659999999711,-0.0560014587532107 +71533,357.664999999711,-0.056001323114028195 +71534,357.66999999971097,-0.05600118749987246 +71535,357.67499999971096,-0.05600105191073799 +71536,357.67999999971096,-0.05600091634661931 +71537,357.68499999971095,-0.05600078080751093 +71538,357.68999999971095,-0.056000645293407404 +71539,357.69499999971094,-0.056000509804303225 +71540,357.69999999971094,-0.05600037434019291 +71541,357.70499999971094,-0.05600023890107099 +71542,357.70999999971093,-0.056000103486931976 +71543,357.7149999997109,-0.05599996809777041 +71544,357.7199999997109,-0.05599983273358081 +71545,357.7249999997109,-0.055999697394357686 +71546,357.7299999997109,-0.05599956208009557 +71547,357.7349999997109,-0.055999426790789016 +71548,357.7399999997109,-0.05599929152643253 +71549,357.7449999997109,-0.05599915628702064 +71550,357.7499999997109,-0.055999021072547894 +71551,357.7549999997109,-0.055998885883008796 +71552,357.7599999997109,-0.055998750718397904 +71553,357.7649999997109,-0.055998615578709734 +71554,357.7699999997109,-0.055998480463938835 +71555,357.7749999997109,-0.05599834537407974 +71556,357.77999999971087,-0.05599821030912696 +71557,357.78499999971086,-0.055998075269075076 +71558,357.78999999971086,-0.055997940253918584 +71559,357.79499999971085,-0.055997805263652056 +71560,357.79999999971085,-0.055997670298270026 +71561,357.80499999971084,-0.05599753535776702 +71562,357.80999999971084,-0.05599740044213759 +71563,357.81499999971084,-0.055997265551376275 +71564,357.81999999971083,-0.05599713068547763 +71565,357.8249999997108,-0.05599699584443619 +71566,357.8299999997108,-0.0559968610282465 +71567,357.8349999997108,-0.05599672623690312 +71568,357.8399999997108,-0.05599659147040058 +71569,357.8449999997108,-0.055996456728733435 +71570,357.8499999997108,-0.055996322011896256 +71571,357.8549999997108,-0.055996187319883574 +71572,357.8599999997108,-0.05599605265268994 +71573,357.8649999997108,-0.05599591801030991 +71574,357.8699999997108,-0.05599578339273804 +71575,357.8749999997108,-0.05599564879996888 +71576,357.8799999997108,-0.055995514231996994 +71577,357.8849999997108,-0.05599537968881694 +71578,357.88999999971077,-0.05599524517042328 +71579,357.89499999971076,-0.05599511067681055 +71580,357.89999999971076,-0.05599497620797334 +71581,357.90499999971075,-0.05599484176390618 +71582,357.90999999971075,-0.055994707344603656 +71583,357.91499999971074,-0.055994572950060315 +71584,357.91999999971074,-0.05599443858027073 +71585,357.92499999971074,-0.05599430423522945 +71586,357.92999999971073,-0.055994169914931065 +71587,357.9349999997107,-0.05599403561937012 +71588,357.9399999997107,-0.055993901348541215 +71589,357.9449999997107,-0.055993767102438884 +71590,357.9499999997107,-0.05599363288105771 +71591,357.9549999997107,-0.05599349868439227 +71592,357.9599999997107,-0.055993364512437124 +71593,357.9649999997107,-0.05599323036518685 +71594,357.9699999997107,-0.055993096242636015 +71595,357.9749999997107,-0.0559929621447792 +71596,357.9799999997107,-0.05599282807161099 +71597,357.9849999997107,-0.05599269402312595 +71598,357.9899999997107,-0.05599255999931866 +71599,357.99499999971067,-0.055992426000183684 +71600,357.99999999971067,-0.05599229202571563 +71601,358.00499999971066,-0.05599215807590905 +71602,358.00999999971066,-0.05599202415075854 +71603,358.01499999971065,-0.05599189025025868 +71604,358.01999999971065,-0.055991756374404046 +71605,358.02499999971064,-0.05599162252318924 +71606,358.02999999971064,-0.055991488696608825 +71607,358.03499999971064,-0.055991354894657404 +71608,358.03999999971063,-0.05599122111732958 +71609,358.0449999997106,-0.0559910873646199 +71610,358.0499999997106,-0.055990953636522976 +71611,358.0549999997106,-0.05599081993303339 +71612,358.0599999997106,-0.055990686254145744 +71613,358.0649999997106,-0.05599055259985462 +71614,358.0699999997106,-0.05599041897015462 +71615,358.0749999997106,-0.05599028536504034 +71616,358.0799999997106,-0.05599015178450635 +71617,358.0849999997106,-0.055990018228547274 +71618,358.0899999997106,-0.05598988469715769 +71619,358.0949999997106,-0.05598975119033221 +71620,358.0999999997106,-0.055989617708065424 +71621,358.10499999971057,-0.05598948425035194 +71622,358.10999999971057,-0.05598935081718635 +71623,358.11499999971056,-0.05598921740856327 +71624,358.11999999971056,-0.05598908402447728 +71625,358.12499999971055,-0.055988950664922994 +71626,358.12999999971055,-0.05598881732989502 +71627,358.13499999971054,-0.055988684019387946 +71628,358.13999999971054,-0.05598855073339641 +71629,358.14499999971054,-0.055988417471915 +71630,358.14999999971053,-0.05598828423493832 +71631,358.1549999997105,-0.055988151022460984 +71632,358.1599999997105,-0.055988017834477606 +71633,358.1649999997105,-0.05598788467098279 +71634,358.1699999997105,-0.05598775153197117 +71635,358.1749999997105,-0.05598761841743733 +71636,358.1799999997105,-0.05598748532737591 +71637,358.1849999997105,-0.05598735226178151 +71638,358.1899999997105,-0.05598721922064874 +71639,358.1949999997105,-0.055987086203972226 +71640,358.1999999997105,-0.0559869532117466 +71641,358.2049999997105,-0.05598682024396645 +71642,358.2099999997105,-0.05598668730062641 +71643,358.21499999971047,-0.05598655438172112 +71644,358.21999999971047,-0.05598642148724518 +71645,358.22499999971046,-0.05598628861719321 +71646,358.22999999971046,-0.05598615577155985 +71647,358.23499999971045,-0.05598602295033972 +71648,358.23999999971045,-0.05598589015352744 +71649,358.24499999971044,-0.055985757381117635 +71650,358.24999999971044,-0.055985624633104934 +71651,358.25499999971044,-0.05598549190948397 +71652,358.25999999971043,-0.05598535921024937 +71653,358.2649999997104,-0.05598522653539577 +71654,358.2699999997104,-0.05598509388491779 +71655,358.2749999997104,-0.05598496125881008 +71656,358.2799999997104,-0.055984828657067255 +71657,358.2849999997104,-0.05598469607968396 +71658,358.2899999997104,-0.055984563526654825 +71659,358.2949999997104,-0.05598443099797449 +71660,358.2999999997104,-0.055984298493637584 +71661,358.3049999997104,-0.05598416601363876 +71662,358.3099999997104,-0.05598403355797265 +71663,358.3149999997104,-0.05598390112663389 +71664,358.3199999997104,-0.05598376871961713 +71665,358.32499999971037,-0.055983636336917005 +71666,358.32999999971037,-0.05598350397852815 +71667,358.33499999971036,-0.05598337164444523 +71668,358.33999999971036,-0.05598323933466287 +71669,358.34499999971035,-0.05598310704917573 +71670,358.34999999971035,-0.05598297478797845 +71671,358.35499999971034,-0.05598284255106568 +71672,358.35999999971034,-0.05598271033843206 +71673,358.36499999971034,-0.05598257815007226 +71674,358.36999999971033,-0.05598244598598092 +71675,358.3749999997103,-0.05598231384615268 +71676,358.3799999997103,-0.0559821817305822 +71677,358.3849999997103,-0.05598204963926415 +71678,358.3899999997103,-0.05598191757219315 +71679,358.3949999997103,-0.05598178552936389 +71680,358.3999999997103,-0.055981653510771015 +71681,358.4049999997103,-0.05598152151640917 +71682,358.4099999997103,-0.05598138954627304 +71683,358.4149999997103,-0.055981257600357257 +71684,358.4199999997103,-0.055981125678656485 +71685,358.4249999997103,-0.055980993781165396 +71686,358.4299999997103,-0.05598086190787865 +71687,358.43499999971027,-0.05598073005879091 +71688,358.43999999971027,-0.055980598233896846 +71689,358.44499999971026,-0.0559804664331911 +71690,358.44999999971026,-0.055980334656668365 +71691,358.45499999971025,-0.0559802029043233 +71692,358.45999999971025,-0.055980071176150545 +71693,358.46499999971024,-0.05597993947214481 +71694,358.46999999971024,-0.055979807792300745 +71695,358.47499999971023,-0.055979676136613025 +71696,358.47999999971023,-0.05597954450507632 +71697,358.4849999997102,-0.05597941289768531 +71698,358.4899999997102,-0.055979281314434644 +71699,358.4949999997102,-0.05597914975531903 +71700,358.4999999997102,-0.05597901822033312 +71701,358.5049999997102,-0.0559788867094716 +71702,358.5099999997102,-0.05597875522272914 +71703,358.5149999997102,-0.05597862376010042 +71704,358.5199999997102,-0.055978492321580135 +71705,358.5249999997102,-0.055978360907162954 +71706,358.5299999997102,-0.05597822951684356 +71707,358.5349999997102,-0.05597809815061662 +71708,358.5399999997102,-0.05597796680847684 +71709,358.54499999971017,-0.05597783549041888 +71710,358.54999999971017,-0.05597770419643746 +71711,358.55499999971016,-0.05597757292652723 +71712,358.55999999971016,-0.0559774416806829 +71713,358.56499999971015,-0.05597731045889914 +71714,358.56999999971015,-0.05597717926117066 +71715,358.57499999971014,-0.05597704808749214 +71716,358.57999999971014,-0.055976916937858265 +71717,358.58499999971013,-0.05597678581226373 +71718,358.58999999971013,-0.05597665471070323 +71719,358.5949999997101,-0.05597652363317145 +71720,358.5999999997101,-0.0559763925796631 +71721,358.6049999997101,-0.055976261550172865 +71722,358.6099999997101,-0.05597613054469544 +71723,358.6149999997101,-0.05597599956322553 +71724,358.6199999997101,-0.055975868605757824 +71725,358.6249999997101,-0.05597573767228704 +71726,358.6299999997101,-0.055975606762807856 +71727,358.6349999997101,-0.05597547587731498 +71728,358.6399999997101,-0.05597534501580312 +71729,358.6449999997101,-0.055975214178266966 +71730,358.6499999997101,-0.05597508336470125 +71731,358.65499999971007,-0.05597495257510065 +71732,358.65999999971007,-0.05597482180945988 +71733,358.66499999971006,-0.05597469106777365 +71734,358.66999999971006,-0.05597456035003667 +71735,358.67499999971005,-0.05597442965624363 +71736,358.67999999971005,-0.05597429898638926 +71737,358.68499999971004,-0.05597416834046827 +71738,358.68999999971004,-0.05597403771847536 +71739,358.69499999971003,-0.055973907120405245 +71740,358.69999999971003,-0.05597377654625265 +71741,358.70499999971,-0.05597364599601228 +71742,358.70999999971,-0.05597351546967886 +71743,358.71499999971,-0.05597338496724709 +71744,358.71999999971,-0.05597325448871169 +71745,358.72499999971,-0.0559731240340674 +71746,358.72999999971,-0.05597299360330891 +71747,358.73499999971,-0.05597286319643095 +71748,358.73999999971,-0.05597273281342825 +71749,358.74499999971,-0.05597260245429553 +71750,358.74999999971,-0.0559724721190275 +71751,358.75499999971,-0.055972341807618904 +71752,358.75999999971,-0.05597221152006445 +71753,358.76499999970997,-0.05597208125635888 +71754,358.76999999970997,-0.0559719510164969 +71755,358.77499999970996,-0.055971820800473256 +71756,358.77999999970996,-0.05597169060828266 +71757,358.78499999970995,-0.055971560439919854 +71758,358.78999999970995,-0.055971430295379564 +71759,358.79499999970994,-0.05597130017465652 +71760,358.79999999970994,-0.05597117007774547 +71761,358.80499999970993,-0.05597104000464113 +71762,358.80999999970993,-0.05597090995533823 +71763,358.8149999997099,-0.05597077992983152 +71764,358.8199999997099,-0.055970649928115734 +71765,358.8249999997099,-0.05597051995018561 +71766,358.8299999997099,-0.05597038999603587 +71767,358.8349999997099,-0.05597026006566127 +71768,358.8399999997099,-0.05597013015905654 +71769,358.8449999997099,-0.055970000276216424 +71770,358.8499999997099,-0.05596987041713567 +71771,358.8549999997099,-0.05596974058180901 +71772,358.8599999997099,-0.0559696107702312 +71773,358.8649999997099,-0.05596948098239697 +71774,358.8699999997099,-0.055969351218301086 +71775,358.87499999970987,-0.05596922147793828 +71776,358.87999999970987,-0.05596909176130329 +71777,358.88499999970986,-0.05596896206839088 +71778,358.88999999970986,-0.055968832399195804 +71779,358.89499999970985,-0.0559687027537128 +71780,358.89999999970985,-0.05596857313193662 +71781,358.90499999970984,-0.05596844353386203 +71782,358.90999999970984,-0.05596831395948377 +71783,358.91499999970983,-0.05596818440879659 +71784,358.91999999970983,-0.05596805488179526 +71785,358.9249999997098,-0.05596792537847452 +71786,358.9299999997098,-0.05596779589882914 +71787,358.9349999997098,-0.05596766644285387 +71788,358.9399999997098,-0.05596753701054347 +71789,358.9449999997098,-0.05596740760189269 +71790,358.9499999997098,-0.0559672782168963 +71791,358.9549999997098,-0.05596714885554907 +71792,358.9599999997098,-0.05596701951784576 +71793,358.9649999997098,-0.05596689020378112 +71794,358.9699999997098,-0.05596676091334993 +71795,358.9749999997098,-0.055966631646546944 +71796,358.9799999997098,-0.05596650240336693 +71797,358.98499999970977,-0.055966373183804666 +71798,358.98999999970977,-0.05596624398785491 +71799,358.99499999970976,-0.055966114815512426 +71800,358.99999999970976,-0.055965985666772 +71801,359.00499999970975,-0.055965856541628396 +71802,359.00999999970975,-0.05596572744007638 +71803,359.01499999970974,-0.05596559836211073 +71804,359.01999999970974,-0.05596546930772621 +71805,359.02499999970973,-0.055965340276917616 +71806,359.02999999970973,-0.0559652112696797 +71807,359.0349999997097,-0.05596508228600726 +71808,359.0399999997097,-0.05596495332589505 +71809,359.0449999997097,-0.05596482438933788 +71810,359.0499999997097,-0.055964695476330505 +71811,359.0549999997097,-0.05596456658686771 +71812,359.0599999997097,-0.055964437720944275 +71813,359.0649999997097,-0.05596430887855499 +71814,359.0699999997097,-0.055964180059694627 +71815,359.0749999997097,-0.05596405126435798 +71816,359.0799999997097,-0.05596392249253982 +71817,359.0849999997097,-0.05596379374423495 +71818,359.0899999997097,-0.05596366501943814 +71819,359.09499999970967,-0.05596353631814419 +71820,359.09999999970967,-0.0559634076403479 +71821,359.10499999970966,-0.05596327898604403 +71822,359.10999999970966,-0.055963150355227385 +71823,359.11499999970965,-0.055963021747892756 +71824,359.11999999970965,-0.05596289316403494 +71825,359.12499999970964,-0.055962764603648726 +71826,359.12999999970964,-0.0559626360667289 +71827,359.13499999970963,-0.055962507553270285 +71828,359.13999999970963,-0.05596237906326765 +71829,359.1449999997096,-0.05596225059671581 +71830,359.1499999997096,-0.055962122153609545 +71831,359.1549999997096,-0.05596199373394366 +71832,359.1599999997096,-0.05596186533771297 +71833,359.1649999997096,-0.05596173696491225 +71834,359.1699999997096,-0.05596160861553632 +71835,359.1749999997096,-0.05596148028957998 +71836,359.1799999997096,-0.05596135198703803 +71837,359.1849999997096,-0.05596122370790528 +71838,359.1899999997096,-0.05596109545217652 +71839,359.1949999997096,-0.05596096721984658 +71840,359.1999999997096,-0.05596083901091025 +71841,359.20499999970957,-0.055960710825362345 +71842,359.20999999970957,-0.05596058266319767 +71843,359.21499999970956,-0.05596045452441105 +71844,359.21999999970956,-0.05596032640899728 +71845,359.22499999970955,-0.05596019831695116 +71846,359.22999999970955,-0.055960070248267546 +71847,359.23499999970954,-0.05595994220294121 +71848,359.23999999970954,-0.055959814180966974 +71849,359.24499999970953,-0.055959686182339666 +71850,359.24999999970953,-0.0559595582070541 +71851,359.2549999997095,-0.055959430255105094 +71852,359.2599999997095,-0.055959302326487464 +71853,359.2649999997095,-0.05595917442119602 +71854,359.2699999997095,-0.0559590465392256 +71855,359.2749999997095,-0.05595891868057102 +71856,359.2799999997095,-0.055958790845227084 +71857,359.2849999997095,-0.055958663033188645 +71858,359.2899999997095,-0.055958535244450505 +71859,359.2949999997095,-0.055958407479007495 +71860,359.2999999997095,-0.05595827973685444 +71861,359.3049999997095,-0.055958152017986165 +71862,359.3099999997095,-0.05595802432239751 +71863,359.31499999970947,-0.0559578966500833 +71864,359.31999999970947,-0.05595776900103836 +71865,359.32499999970946,-0.05595764137525751 +71866,359.32999999970946,-0.0559575137727356 +71867,359.33499999970945,-0.05595738619346744 +71868,359.33999999970945,-0.055957258637447896 +71869,359.34499999970944,-0.05595713110467178 +71870,359.34999999970944,-0.055957003595133926 +71871,359.35499999970943,-0.05595687610882918 +71872,359.35999999970943,-0.05595674864575237 +71873,359.3649999997094,-0.055956621205898345 +71874,359.3699999997094,-0.05595649378926193 +71875,359.3749999997094,-0.05595636639583796 +71876,359.3799999997094,-0.0559562390256213 +71877,359.3849999997094,-0.05595611167860678 +71878,359.3899999997094,-0.05595598435478924 +71879,359.3949999997094,-0.05595585705416352 +71880,359.3999999997094,-0.05595572977672447 +71881,359.4049999997094,-0.05595560252246693 +71882,359.4099999997094,-0.05595547529138577 +71883,359.4149999997094,-0.0559553480834758 +71884,359.4199999997094,-0.055955220898731894 +71885,359.42499999970937,-0.05595509373714889 +71886,359.42999999970937,-0.055954966598721644 +71887,359.43499999970936,-0.055954839483445 +71888,359.43999999970936,-0.05595471239131382 +71889,359.44499999970935,-0.05595458532232294 +71890,359.44999999970935,-0.05595445827646722 +71891,359.45499999970934,-0.05595433125374153 +71892,359.45999999970934,-0.05595420425414071 +71893,359.46499999970933,-0.05595407727765962 +71894,359.46999999970933,-0.055953950324293115 +71895,359.4749999997093,-0.05595382339403607 +71896,359.4799999997093,-0.055953696486883316 +71897,359.4849999997093,-0.05595356960282973 +71898,359.4899999997093,-0.05595344274187016 +71899,359.4949999997093,-0.0559533159039995 +71900,359.4999999997093,-0.055953189089212575 +71901,359.5049999997093,-0.05595306229750426 +71902,359.5099999997093,-0.05595293552886943 +71903,359.5149999997093,-0.05595280878330294 +71904,359.5199999997093,-0.055952682060799674 +71905,359.5249999997093,-0.05595255536135448 +71906,359.5299999997093,-0.05595242868496223 +71907,359.53499999970927,-0.055952302031617794 +71908,359.53999999970927,-0.05595217540131604 +71909,359.54499999970926,-0.05595204879405185 +71910,359.54999999970926,-0.055951922209820086 +71911,359.55499999970925,-0.05595179564861563 +71912,359.55999999970925,-0.055951669110433346 +71913,359.56499999970924,-0.05595154259526811 +71914,359.56999999970924,-0.05595141610311481 +71915,359.57499999970923,-0.05595128963396832 +71916,359.57999999970923,-0.0559511631878235 +71917,359.5849999997092,-0.055951036764675235 +71918,359.5899999997092,-0.05595091036451842 +71919,359.5949999997092,-0.05595078398734792 +71920,359.5999999997092,-0.05595065763315862 +71921,359.6049999997092,-0.05595053130194539 +71922,359.6099999997092,-0.05595040499370313 +71923,359.6149999997092,-0.055950278708426726 +71924,359.6199999997092,-0.05595015244611105 +71925,359.6249999997092,-0.05595002620675099 +71926,359.6299999997092,-0.05594989999034145 +71927,359.6349999997092,-0.055949773796877295 +71928,359.6399999997092,-0.055949647626353426 +71929,359.64499999970917,-0.055949521478764724 +71930,359.64999999970917,-0.05594939535410609 +71931,359.65499999970916,-0.055949269252372404 +71932,359.65999999970916,-0.05594914317355857 +71933,359.66499999970915,-0.05594901711765947 +71934,359.66999999970915,-0.055948891084669994 +71935,359.67499999970914,-0.05594876507458506 +71936,359.67999999970914,-0.05594863908739954 +71937,359.68499999970913,-0.05594851312310834 +71938,359.68999999970913,-0.05594838718170637 +71939,359.6949999997091,-0.05594826126318851 +71940,359.6999999997091,-0.05594813536754967 +71941,359.7049999997091,-0.05594800949478474 +71942,359.7099999997091,-0.05594788364488863 +71943,359.7149999997091,-0.05594775781785624 +71944,359.7199999997091,-0.05594763201368248 +71945,359.7249999997091,-0.05594750623236224 +71946,359.7299999997091,-0.05594738047389043 +71947,359.7349999997091,-0.05594725473826196 +71948,359.7399999997091,-0.05594712902547174 +71949,359.7449999997091,-0.05594700333551467 +71950,359.7499999997091,-0.05594687766838565 +71951,359.75499999970907,-0.055946752024079616 +71952,359.75999999970907,-0.055946626402591466 +71953,359.76499999970906,-0.0559465008039161 +71954,359.76999999970906,-0.05594637522804844 +71955,359.77499999970905,-0.05594624967498339 +71956,359.77999999970905,-0.055946124144715885 +71957,359.78499999970904,-0.05594599863724082 +71958,359.78999999970904,-0.05594587315255312 +71959,359.79499999970903,-0.055945747690647696 +71960,359.79999999970903,-0.055945622251519465 +71961,359.804999999709,-0.05594549683516335 +71962,359.809999999709,-0.055945371441574285 +71963,359.814999999709,-0.05594524607074716 +71964,359.819999999709,-0.05594512072267692 +71965,359.824999999709,-0.055944995397358484 +71966,359.829999999709,-0.05594487009478677 +71967,359.834999999709,-0.0559447448149567 +71968,359.839999999709,-0.055944619557863194 +71969,359.844999999709,-0.05594449432350119 +71970,359.849999999709,-0.055944369111865615 +71971,359.854999999709,-0.05594424392295139 +71972,359.859999999709,-0.05594411875675344 +71973,359.86499999970897,-0.05594399361326671 +71974,359.86999999970897,-0.05594386849248612 +71975,359.87499999970896,-0.055943743394406595 +71976,359.87999999970896,-0.055943618319023086 +71977,359.88499999970895,-0.055943493266330524 +71978,359.88999999970895,-0.05594336823632382 +71979,359.89499999970894,-0.05594324322899793 +71980,359.89999999970894,-0.05594311824434777 +71981,359.90499999970893,-0.055942993282368306 +71982,359.90999999970893,-0.05594286834305446 +71983,359.9149999997089,-0.055942743426401154 +71984,359.9199999997089,-0.05594261853240334 +71985,359.9249999997089,-0.05594249366105598 +71986,359.9299999997089,-0.05594236881235399 +71987,359.9349999997089,-0.05594224398629233 +71988,359.9399999997089,-0.05594211918286592 +71989,359.9449999997089,-0.05594199440206973 +71990,359.9499999997089,-0.05594186964389867 +71991,359.9549999997089,-0.05594174490834772 +71992,359.9599999997089,-0.0559416201954118 +71993,359.9649999997089,-0.055941495505085884 +71994,359.9699999997089,-0.05594137083736492 +71995,359.97499999970887,-0.055941246192243825 +71996,359.97999999970887,-0.05594112156971758 +71997,359.98499999970886,-0.05594099696978112 +71998,359.98999999970886,-0.05594087239242941 +71999,359.99499999970885,-0.0559407478376574 +72000,359.99999999970885,-0.055940623305460034 +72001,360.00499999970884,-0.05594049879583229 +72002,360.00999999970884,-0.055940374308769095 +72003,360.01499999970883,-0.055940249844265426 +72004,360.01999999970883,-0.05594012540231623 +72005,360.0249999997088,-0.05594000098291646 +72006,360.0299999997088,-0.05593987658606109 +72007,360.0349999997088,-0.055939752211745075 +72008,360.0399999997088,-0.055939627859963384 +72009,360.0449999997088,-0.05593950353071097 +72010,360.0499999997088,-0.05593937922398278 +72011,360.0549999997088,-0.05593925493977381 +72012,360.0599999997088,-0.055939130678079 +72013,360.0649999997088,-0.05593900643889333 +72014,360.0699999997088,-0.05593888222221176 +72015,360.0749999997088,-0.05593875802802927 +72016,360.0799999997088,-0.05593863385634081 +72017,360.08499999970877,-0.055938509707141364 +72018,360.08999999970877,-0.05593838558042589 +72019,360.09499999970876,-0.05593826147618937 +72020,360.09999999970876,-0.05593813739442676 +72021,360.10499999970875,-0.05593801333513305 +72022,360.10999999970875,-0.055937889298303206 +72023,360.11499999970874,-0.05593776528393221 +72024,360.11999999970874,-0.05593764129201503 +72025,360.12499999970873,-0.05593751732254664 +72026,360.12999999970873,-0.055937393375522025 +72027,360.1349999997087,-0.055937269450936154 +72028,360.1399999997087,-0.05593714554878403 +72029,360.1449999997087,-0.055937021669060616 +72030,360.1499999997087,-0.05593689781176089 +72031,360.1549999997087,-0.05593677397687982 +72032,360.1599999997087,-0.05593665016441241 +72033,360.1649999997087,-0.055936526374353646 +72034,360.1699999997087,-0.05593640260669851 +72035,360.1749999997087,-0.05593627886144198 +72036,360.1799999997087,-0.05593615513857904 +72037,360.1849999997087,-0.055936031438104696 +72038,360.1899999997087,-0.05593590776001392 +72039,360.19499999970867,-0.0559357841043017 +72040,360.19999999970867,-0.05593566047096303 +72041,360.20499999970866,-0.05593553685999291 +72042,360.20999999970866,-0.055935413271386326 +72043,360.21499999970865,-0.05593528970513826 +72044,360.21999999970865,-0.055935166161243714 +72045,360.22499999970864,-0.05593504263969769 +72046,360.22999999970864,-0.05593491914049517 +72047,360.23499999970863,-0.05593479566363115 +72048,360.23999999970863,-0.055934672209100644 +72049,360.2449999997086,-0.055934548776898636 +72050,360.2499999997086,-0.055934425367020126 +72051,360.2549999997086,-0.055934301979460116 +72052,360.2599999997086,-0.05593417861421361 +72053,360.2649999997086,-0.05593405527127561 +72054,360.2699999997086,-0.055933931950641114 +72055,360.2749999997086,-0.05593380865230512 +72056,360.2799999997086,-0.05593368537626264 +72057,360.2849999997086,-0.05593356212250869 +72058,360.2899999997086,-0.055933438891038266 +72059,360.2949999997086,-0.05593331568184637 +72060,360.2999999997086,-0.05593319249492801 +72061,360.30499999970857,-0.0559330693302782 +72062,360.30999999970857,-0.055932946187891956 +72063,360.31499999970856,-0.05593282306776427 +72064,360.31999999970856,-0.055932699969890184 +72065,360.32499999970855,-0.055932576894264674 +72066,360.32999999970855,-0.05593245384088277 +72067,360.33499999970854,-0.0559323308097395 +72068,360.33999999970854,-0.05593220780082986 +72069,360.34499999970853,-0.055932084814148866 +72070,360.34999999970853,-0.05593196184969155 +72071,360.3549999997085,-0.055931838907452916 +72072,360.3599999997085,-0.05593171598742798 +72073,360.3649999997085,-0.055931593089611764 +72074,360.3699999997085,-0.05593147021399931 +72075,360.3749999997085,-0.0559313473605856 +72076,360.3799999997085,-0.05593122452936569 +72077,360.3849999997085,-0.055931101720334594 +72078,360.3899999997085,-0.05593097893348734 +72079,360.3949999997085,-0.05593085616881895 +72080,360.3999999997085,-0.05593073342632444 +72081,360.4049999997085,-0.05593061070599885 +72082,360.4099999997085,-0.05593048800783718 +72083,360.41499999970847,-0.05593036533183449 +72084,360.41999999970847,-0.055930242677985804 +72085,360.42499999970846,-0.05593012004628615 +72086,360.42999999970846,-0.05592999743673055 +72087,360.43499999970845,-0.05592987484931405 +72088,360.43999999970845,-0.055929752284031665 +72089,360.44499999970844,-0.05592962974087844 +72090,360.44999999970844,-0.05592950721984941 +72091,360.45499999970843,-0.05592938472093961 +72092,360.45999999970843,-0.05592926224414409 +72093,360.4649999997084,-0.05592913978945785 +72094,360.4699999997084,-0.055929017356875964 +72095,360.4749999997084,-0.055928894946393456 +72096,360.4799999997084,-0.05592877255800538 +72097,360.4849999997084,-0.05592865019170675 +72098,360.4899999997084,-0.05592852784749263 +72099,360.4949999997084,-0.05592840552535806 +72100,360.4999999997084,-0.055928283225298074 +72101,360.5049999997084,-0.05592816094730773 +72102,360.5099999997084,-0.055928038691382055 +72103,360.5149999997084,-0.05592791645751612 +72104,360.5199999997084,-0.055927794245704945 +72105,360.52499999970837,-0.0559276720559436 +72106,360.52999999970837,-0.055927549888227124 +72107,360.53499999970836,-0.055927427742550564 +72108,360.53999999970836,-0.055927305618908976 +72109,360.54499999970835,-0.05592718351729741 +72110,360.54999999970835,-0.055927061437710916 +72111,360.55499999970834,-0.055926939380144564 +72112,360.55999999970834,-0.05592681734459338 +72113,360.56499999970833,-0.05592669533105243 +72114,360.56999999970833,-0.05592657333951678 +72115,360.5749999997083,-0.05592645136998148 +72116,360.5799999997083,-0.055926329422441586 +72117,360.5849999997083,-0.055926207496892165 +72118,360.5899999997083,-0.05592608559332827 +72119,360.5949999997083,-0.05592596371174496 +72120,360.5999999997083,-0.055925841852137295 +72121,360.6049999997083,-0.055925720014500344 +72122,360.6099999997083,-0.05592559819882916 +72123,360.6149999997083,-0.05592547640511883 +72124,360.6199999997083,-0.05592535463336439 +72125,360.6249999997083,-0.055925232883560924 +72126,360.6299999997083,-0.05592511115570349 +72127,360.63499999970827,-0.05592498944978716 +72128,360.63999999970827,-0.05592486776580701 +72129,360.64499999970826,-0.05592474610375808 +72130,360.64999999970826,-0.05592462446363547 +72131,360.65499999970825,-0.05592450284543424 +72132,360.65999999970825,-0.05592438124914946 +72133,360.66499999970824,-0.05592425967477621 +72134,360.66999999970824,-0.05592413812230956 +72135,360.67499999970823,-0.05592401659174459 +72136,360.67999999970823,-0.05592389508307636 +72137,360.6849999997082,-0.05592377359629997 +72138,360.6899999997082,-0.05592365213141048 +72139,360.6949999997082,-0.055923530688402966 +72140,360.6999999997082,-0.05592340926727252 +72141,360.7049999997082,-0.05592328786801422 +72142,360.7099999997082,-0.05592316649062312 +72143,360.7149999997082,-0.05592304513509433 +72144,360.7199999997082,-0.05592292380142293 +72145,360.7249999997082,-0.055922802489604 +72146,360.7299999997082,-0.055922681199632625 +72147,360.7349999997082,-0.055922559931503885 +72148,360.7399999997082,-0.05592243868521287 +72149,360.74499999970817,-0.05592231746075467 +72150,360.74999999970817,-0.05592219625812436 +72151,360.75499999970816,-0.05592207507731705 +72152,360.75999999970816,-0.055921953918327806 +72153,360.76499999970815,-0.05592183278115174 +72154,360.76999999970815,-0.05592171166578392 +72155,360.77499999970814,-0.05592159057221946 +72156,360.77999999970814,-0.055921469500453444 +72157,360.78499999970813,-0.05592134845048096 +72158,360.78999999970813,-0.055921227422297125 +72159,360.7949999997081,-0.055921106415897 +72160,360.7999999997081,-0.05592098543127571 +72161,360.8049999997081,-0.05592086446842835 +72162,360.8099999997081,-0.05592074352735001 +72163,360.8149999997081,-0.055920622608035785 +72164,360.8199999997081,-0.055920501710480776 +72165,360.8249999997081,-0.0559203808346801 +72166,360.8299999997081,-0.05592025998062884 +72167,360.8349999997081,-0.055920139148322126 +72168,360.8399999997081,-0.05592001833775503 +72169,360.8449999997081,-0.05591989754892266 +72170,360.8499999997081,-0.05591977678182015 +72171,360.85499999970807,-0.055919656036442576 +72172,360.85999999970807,-0.05591953531278506 +72173,360.86499999970806,-0.055919414610842696 +72174,360.86999999970806,-0.05591929393061061 +72175,360.87499999970805,-0.0559191732720839 +72176,360.87999999970805,-0.05591905263525767 +72177,360.88499999970804,-0.05591893202012706 +72178,360.88999999970804,-0.05591881142668716 +72179,360.89499999970803,-0.05591869085493309 +72180,360.89999999970803,-0.05591857030485996 +72181,360.904999999708,-0.05591844977646288 +72182,360.909999999708,-0.055918329269736985 +72183,360.914999999708,-0.055918208784677376 +72184,360.919999999708,-0.055918088321279175 +72185,360.924999999708,-0.055917967879537504 +72186,360.929999999708,-0.05591784745944747 +72187,360.934999999708,-0.055917727061004216 +72188,360.939999999708,-0.05591760668420284 +72189,360.944999999708,-0.05591748632903847 +72190,360.949999999708,-0.05591736599550623 +72191,360.954999999708,-0.05591724568360125 +72192,360.959999999708,-0.05591712539331866 +72193,360.96499999970797,-0.05591700512465357 +72194,360.96999999970797,-0.055916884877601124 +72195,360.97499999970796,-0.05591676465215642 +72196,360.97999999970796,-0.055916644448314616 +72197,360.98499999970795,-0.05591652426607083 +72198,360.98999999970795,-0.05591640410542018 +72199,360.99499999970794,-0.05591628396635781 +72200,360.99999999970794,-0.055916163848878854 +72201,361.00499999970793,-0.05591604375297844 +72202,361.00999999970793,-0.0559159236786517 +72203,361.0149999997079,-0.05591580362589376 +72204,361.0199999997079,-0.055915683594699776 +72205,361.0249999997079,-0.05591556358506487 +72206,361.0299999997079,-0.05591544359698419 +72207,361.0349999997079,-0.05591532363045286 +72208,361.0399999997079,-0.05591520368546603 +72209,361.0449999997079,-0.05591508376201883 +72210,361.0499999997079,-0.0559149638601064 +72211,361.0549999997079,-0.055914843979723884 +72212,361.0599999997079,-0.05591472412086643 +72213,361.0649999997079,-0.05591460428352916 +72214,361.0699999997079,-0.05591448446770724 +72215,361.07499999970787,-0.05591436467339581 +72216,361.07999999970787,-0.05591424490059002 +72217,361.08499999970786,-0.05591412514928502 +72218,361.08999999970786,-0.05591400541947593 +72219,361.09499999970785,-0.05591388571115792 +72220,361.09999999970785,-0.055913766024326135 +72221,361.10499999970784,-0.05591364635897573 +72222,361.10999999970784,-0.05591352671510185 +72223,361.11499999970783,-0.05591340709269966 +72224,361.11999999970783,-0.055913287491764295 +72225,361.1249999997078,-0.0559131679122909 +72226,361.1299999997078,-0.05591304835427465 +72227,361.1349999997078,-0.05591292881771069 +72228,361.1399999997078,-0.05591280930259419 +72229,361.1449999997078,-0.05591268980892029 +72230,361.1499999997078,-0.055912570336684154 +72231,361.1549999997078,-0.05591245088588095 +72232,361.1599999997078,-0.055912331456505815 +72233,361.1649999997078,-0.05591221204855393 +72234,361.1699999997078,-0.05591209266202044 +72235,361.1749999997078,-0.05591197329690053 +72236,361.1799999997078,-0.05591185395318934 +72237,361.18499999970777,-0.05591173463088204 +72238,361.18999999970777,-0.0559116153299738 +72239,361.19499999970776,-0.05591149605045977 +72240,361.19999999970776,-0.05591137679233515 +72241,361.20499999970775,-0.055911257555595076 +72242,361.20999999970775,-0.05591113834023473 +72243,361.21499999970774,-0.055911019146249276 +72244,361.21999999970774,-0.05591089997363389 +72245,361.22499999970773,-0.05591078082238373 +72246,361.22999999970773,-0.05591066169249397 +72247,361.2349999997077,-0.05591054258395981 +72248,361.2399999997077,-0.05591042349677639 +72249,361.2449999997077,-0.0559103044309389 +72250,361.2499999997077,-0.05591018538644251 +72251,361.2549999997077,-0.0559100663632824 +72252,361.2599999997077,-0.05590994736145373 +72253,361.2649999997077,-0.05590982838095171 +72254,361.2699999997077,-0.055909709421771495 +72255,361.2749999997077,-0.05590959048390826 +72256,361.2799999997077,-0.055909471567357205 +72257,361.2849999997077,-0.0559093526721135 +72258,361.2899999997077,-0.05590923379817232 +72259,361.29499999970767,-0.05590911494552887 +72260,361.29999999970767,-0.05590899611417831 +72261,361.30499999970766,-0.05590887730411583 +72262,361.30999999970766,-0.05590875851533663 +72263,361.31499999970765,-0.05590863974783588 +72264,361.31999999970765,-0.05590852100160878 +72265,361.32499999970764,-0.055908402276650504 +72266,361.32999999970764,-0.055908283572956255 +72267,361.33499999970763,-0.05590816489052121 +72268,361.33999999970763,-0.05590804622934057 +72269,361.3449999997076,-0.055907927589409524 +72270,361.3499999997076,-0.055907808970723255 +72271,361.3549999997076,-0.05590769037327697 +72272,361.3599999997076,-0.05590757179706584 +72273,361.3649999997076,-0.0559074532420851 +72274,361.3699999997076,-0.05590733470832991 +72275,361.3749999997076,-0.05590721619579549 +72276,361.3799999997076,-0.055907097704477014 +72277,361.3849999997076,-0.0559069792343697 +72278,361.3899999997076,-0.05590686078546874 +72279,361.3949999997076,-0.05590674235776933 +72280,361.3999999997076,-0.05590662395126668 +72281,361.40499999970757,-0.055906505565956 +72282,361.40999999970757,-0.05590638720183246 +72283,361.41499999970756,-0.05590626885889129 +72284,361.41999999970756,-0.055906150537127705 +72285,361.42499999970755,-0.055906032236536875 +72286,361.42999999970755,-0.05590591395711402 +72287,361.43499999970754,-0.055905795698854364 +72288,361.43999999970754,-0.0559056774617531 +72289,361.44499999970753,-0.05590555924580544 +72290,361.44999999970753,-0.055905441051006595 +72291,361.4549999997075,-0.05590532287735177 +72292,361.4599999997075,-0.05590520472483617 +72293,361.4649999997075,-0.05590508659345503 +72294,361.4699999997075,-0.05590496848320353 +72295,361.4749999997075,-0.055904850394076916 +72296,361.4799999997075,-0.05590473232607039 +72297,361.4849999997075,-0.05590461427917917 +72298,361.4899999997075,-0.05590449625339848 +72299,361.4949999997075,-0.05590437824872352 +72300,361.4999999997075,-0.05590426026514952 +72301,361.5049999997075,-0.05590414230267169 +72302,361.5099999997075,-0.055904024361285255 +72303,361.51499999970747,-0.05590390644098544 +72304,361.51999999970747,-0.05590378854176745 +72305,361.52499999970746,-0.05590367066362653 +72306,361.52999999970746,-0.055903552806557885 +72307,361.53499999970745,-0.05590343497055675 +72308,361.53999999970745,-0.05590331715561834 +72309,361.54499999970744,-0.05590319936173789 +72310,361.54999999970744,-0.055903081588910636 +72311,361.55499999970743,-0.055902963837131794 +72312,361.55999999970743,-0.055902846106396585 +72313,361.5649999997074,-0.05590272839670024 +72314,361.5699999997074,-0.055902610708038016 +72315,361.5749999997074,-0.05590249304040511 +72316,361.5799999997074,-0.05590237539379676 +72317,361.5849999997074,-0.055902257768208216 +72318,361.5899999997074,-0.0559021401636347 +72319,361.5949999997074,-0.055902022580071445 +72320,361.5999999997074,-0.0559019050175137 +72321,361.6049999997074,-0.055901787475956685 +72322,361.6099999997074,-0.05590166995539563 +72323,361.6149999997074,-0.055901552455825794 +72324,361.6199999997074,-0.055901434977242405 +72325,361.62499999970737,-0.0559013175196407 +72326,361.62999999970737,-0.055901200083015926 +72327,361.63499999970736,-0.05590108266736333 +72328,361.63999999970736,-0.055900965272678134 +72329,361.64499999970735,-0.05590084789895561 +72330,361.64999999970735,-0.05590073054619097 +72331,361.65499999970734,-0.055900613214379474 +72332,361.65999999970734,-0.055900495903516374 +72333,361.66499999970733,-0.0559003786135969 +72334,361.66999999970733,-0.055900261344616314 +72335,361.6749999997073,-0.05590014409656986 +72336,361.6799999997073,-0.055900026869452786 +72337,361.6849999997073,-0.05589990966326035 +72338,361.6899999997073,-0.05589979247798779 +72339,361.6949999997073,-0.055899675313630354 +72340,361.6999999997073,-0.055899558170183314 +72341,361.7049999997073,-0.0558994410476419 +72342,361.7099999997073,-0.055899323946001375 +72343,361.7149999997073,-0.055899206865257 +72344,361.7199999997073,-0.055899089805404034 +72345,361.7249999997073,-0.055898972766437724 +72346,361.7299999997073,-0.05589885574835333 +72347,361.73499999970727,-0.055898738751146114 +72348,361.73999999970727,-0.05589862177481132 +72349,361.74499999970726,-0.055898504819344226 +72350,361.74999999970726,-0.05589838788474009 +72351,361.75499999970725,-0.05589827097099416 +72352,361.75999999970725,-0.05589815407810171 +72353,361.76499999970724,-0.05589803720605801 +72354,361.76999999970724,-0.05589792035485831 +72355,361.77499999970723,-0.05589780352449789 +72356,361.77999999970723,-0.055897686714972 +72357,361.7849999997072,-0.055897569926275925 +72358,361.7899999997072,-0.055897453158404914 +72359,361.7949999997072,-0.05589733641135425 +72360,361.7999999997072,-0.05589721968511918 +72361,361.8049999997072,-0.05589710297969501 +72362,361.8099999997072,-0.05589698629507697 +72363,361.8149999997072,-0.05589686963126037 +72364,361.8199999997072,-0.05589675298824046 +72365,361.8249999997072,-0.05589663636601253 +72366,361.8299999997072,-0.055896519764571835 +72367,361.8349999997072,-0.055896403183913666 +72368,361.8399999997072,-0.05589628662403328 +72369,361.84499999970717,-0.05589617008492597 +72370,361.84999999970717,-0.055896053566587015 +72371,361.85499999970716,-0.05589593706901168 +72372,361.85999999970716,-0.05589582059219525 +72373,361.86499999970715,-0.05589570413613302 +72374,361.86999999970715,-0.05589558770082026 +72375,361.87499999970714,-0.055895471286252246 +72376,361.87999999970714,-0.05589535489242427 +72377,361.88499999970713,-0.0558952385193316 +72378,361.88999999970713,-0.05589512216696954 +72379,361.8949999997071,-0.055895005835333376 +72380,361.8999999997071,-0.05589488952441839 +72381,361.9049999997071,-0.055894773234219854 +72382,361.9099999997071,-0.05589465696473307 +72383,361.9149999997071,-0.055894540715953345 +72384,361.9199999997071,-0.055894424487875925 +72385,361.9249999997071,-0.05589430828049614 +72386,361.9299999997071,-0.055894192093809254 +72387,361.9349999997071,-0.05589407592781058 +72388,361.9399999997071,-0.05589395978249539 +72389,361.9449999997071,-0.055893843657858995 +72390,361.9499999997071,-0.05589372755389668 +72391,361.95499999970707,-0.05589361147060376 +72392,361.95999999970707,-0.05589349540797551 +72393,361.96499999970706,-0.055893379366007225 +72394,361.96999999970706,-0.05589326334469422 +72395,361.97499999970705,-0.05589314734403179 +72396,361.97999999970705,-0.05589303136401523 +72397,361.98499999970704,-0.05589291540463984 +72398,361.98999999970704,-0.05589279946590092 +72399,361.99499999970703,-0.05589268354779378 +72400,361.99999999970703,-0.055892567650313724 +72401,362.004999999707,-0.055892451773456045 +72402,362.009999999707,-0.05589233591721605 +72403,362.014999999707,-0.05589222008158905 +72404,362.019999999707,-0.05589210426657034 +72405,362.024999999707,-0.05589198847215525 +72406,362.029999999707,-0.05589187269833907 +72407,362.034999999707,-0.055891756945117124 +72408,362.039999999707,-0.0558916412124847 +72409,362.044999999707,-0.05589152550043713 +72410,362.049999999707,-0.055891409808969714 +72411,362.054999999707,-0.05589129413807777 +72412,362.059999999707,-0.055891178487756606 +72413,362.06499999970697,-0.055891062858001536 +72414,362.06999999970697,-0.05589094724880788 +72415,362.07499999970696,-0.05589083166017095 +72416,362.07999999970696,-0.05589071609208607 +72417,362.08499999970695,-0.05589060054454855 +72418,362.08999999970695,-0.05589048501755372 +72419,362.09499999970694,-0.05589036951109688 +72420,362.09999999970694,-0.055890254025173364 +72421,362.10499999970693,-0.05589013855977848 +72422,362.10999999970693,-0.05589002311490757 +72423,362.1149999997069,-0.05588990769055593 +72424,362.1199999997069,-0.0558897922867189 +72425,362.1249999997069,-0.055889676903391805 +72426,362.1299999997069,-0.055889561540569975 +72427,362.1349999997069,-0.05588944619824872 +72428,362.1399999997069,-0.05588933087642337 +72429,362.1449999997069,-0.05588921557508927 +72430,362.1499999997069,-0.05588910029424173 +72431,362.1549999997069,-0.055888985033876085 +72432,362.1599999997069,-0.05588886979398767 +72433,362.1649999997069,-0.055888754574571806 +72434,362.1699999997069,-0.05588863937562383 +72435,362.17499999970687,-0.055888524197139064 +72436,362.17999999970687,-0.05588840903911286 +72437,362.18499999970686,-0.05588829390154055 +72438,362.18999999970686,-0.055888178784417465 +72439,362.19499999970685,-0.05588806368773894 +72440,362.19999999970685,-0.05588794861150031 +72441,362.20499999970684,-0.0558878335556969 +72442,362.20999999970684,-0.05588771852032407 +72443,362.21499999970683,-0.05588760350537716 +72444,362.21999999970683,-0.0558874885108515 +72445,362.2249999997068,-0.05588737353674243 +72446,362.2299999997068,-0.055887258583045295 +72447,362.2349999997068,-0.05588714364975543 +72448,362.2399999997068,-0.05588702873686819 +72449,362.2449999997068,-0.05588691384437891 +72450,362.2499999997068,-0.05588679897228295 +72451,362.2549999997068,-0.05588668412057564 +72452,362.2599999997068,-0.055886569289252334 +72453,362.2649999997068,-0.05588645447830838 +72454,362.2699999997068,-0.05588633968773912 +72455,362.2749999997068,-0.055886224917539924 +72456,362.2799999997068,-0.05588611016770611 +72457,362.28499999970677,-0.055885995438233055 +72458,362.28999999970677,-0.0558858807291161 +72459,362.29499999970676,-0.05588576604035059 +72460,362.29999999970676,-0.0558856513719319 +72461,362.30499999970675,-0.05588553672385537 +72462,362.30999999970675,-0.05588542209611635 +72463,362.31499999970674,-0.0558853074887102 +72464,362.31999999970674,-0.05588519290163228 +72465,362.32499999970673,-0.05588507833487796 +72466,362.32999999970673,-0.05588496378844258 +72467,362.3349999997067,-0.05588484926232151 +72468,362.3399999997067,-0.0558847347565101 +72469,362.3449999997067,-0.05588462027100373 +72470,362.3499999997067,-0.05588450580579773 +72471,362.3549999997067,-0.05588439136088749 +72472,362.3599999997067,-0.055884276936268365 +72473,362.3649999997067,-0.05588416253193572 +72474,362.3699999997067,-0.05588404814788491 +72475,362.3749999997067,-0.05588393378411132 +72476,362.3799999997067,-0.05588381944061031 +72477,362.3849999997067,-0.055883705117377246 +72478,362.3899999997067,-0.0558835908144075 +72479,362.39499999970667,-0.05588347653169643 +72480,362.39999999970667,-0.055883362269239414 +72481,362.40499999970666,-0.055883248027031825 +72482,362.40999999970666,-0.05588313380506902 +72483,362.41499999970665,-0.0558830196033464 +72484,362.41999999970665,-0.05588290542185931 +72485,362.42499999970664,-0.055882791260603144 +72486,362.42999999970664,-0.05588267711957326 +72487,362.43499999970663,-0.055882562998765054 +72488,362.43999999970663,-0.05588244889817389 +72489,362.4449999997066,-0.05588233481779514 +72490,362.4499999997066,-0.055882220757624196 +72491,362.4549999997066,-0.05588210671765643 +72492,362.4599999997066,-0.055881992697887226 +72493,362.4649999997066,-0.05588187869831197 +72494,362.4699999997066,-0.05588176471892602 +72495,362.4749999997066,-0.05588165075972478 +72496,362.4799999997066,-0.05588153682070363 +72497,362.4849999997066,-0.05588142290185796 +72498,362.4899999997066,-0.05588130900318315 +72499,362.4949999997066,-0.05588119512467458 +72500,362.4999999997066,-0.05588108126632764 +72501,362.50499999970657,-0.05588096742813772 +72502,362.50999999970657,-0.05588085361010021 +72503,362.51499999970656,-0.05588073981221048 +72504,362.51999999970656,-0.05588062603446395 +72505,362.52499999970655,-0.05588051227685598 +72506,362.52999999970655,-0.055880398539382 +72507,362.53499999970654,-0.05588028482203737 +72508,362.53999999970654,-0.055880171124817496 +72509,362.54499999970653,-0.055880057447717776 +72510,362.54999999970653,-0.05587994379073359 +72511,362.5549999997065,-0.05587983015386035 +72512,362.5599999997065,-0.055879716537093456 +72513,362.5649999997065,-0.055879602940428284 +72514,362.5699999997065,-0.055879489363860245 +72515,362.5749999997065,-0.05587937580738475 +72516,362.5799999997065,-0.055879262270997175 +72517,362.5849999997065,-0.05587914875469294 +72518,362.5899999997065,-0.05587903525846744 +72519,362.5949999997065,-0.05587892178231607 +72520,362.5999999997065,-0.05587880832623425 +72521,362.6049999997065,-0.05587869489021738 +72522,362.6099999997065,-0.05587858147426084 +72523,362.61499999970647,-0.05587846807836006 +72524,362.61999999970647,-0.05587835470251044 +72525,362.62499999970646,-0.05587824134670739 +72526,362.62999999970646,-0.05587812801094631 +72527,362.63499999970645,-0.05587801469522263 +72528,362.63999999970645,-0.055877901399531756 +72529,362.64499999970644,-0.055877788123869065 +72530,362.64999999970644,-0.055877674868230004 +72531,362.65499999970643,-0.05587756163260997 +72532,362.65999999970643,-0.055877448417004386 +72533,362.6649999997064,-0.055877335221408655 +72534,362.6699999997064,-0.0558772220458182 +72535,362.6749999997064,-0.05587710889022844 +72536,362.6799999997064,-0.05587699575463478 +72537,362.6849999997064,-0.05587688263903264 +72538,362.6899999997064,-0.05587676954341746 +72539,362.6949999997064,-0.05587665646778461 +72540,362.6999999997064,-0.05587654341212957 +72541,362.7049999997064,-0.05587643037644772 +72542,362.7099999997064,-0.05587631736073448 +72543,362.7149999997064,-0.055876204364985284 +72544,362.7199999997064,-0.05587609138919557 +72545,362.72499999970637,-0.05587597843336073 +72546,362.72999999970637,-0.05587586549747622 +72547,362.73499999970636,-0.055875752581537444 +72548,362.73999999970636,-0.05587563968553984 +72549,362.74499999970635,-0.055875526809478826 +72550,362.74999999970635,-0.055875413953349835 +72551,362.75499999970634,-0.0558753011171483 +72552,362.75999999970634,-0.05587518830086964 +72553,362.76499999970633,-0.0558750755045093 +72554,362.76999999970633,-0.0558749627280627 +72555,362.7749999997063,-0.05587484997152528 +72556,362.7799999997063,-0.05587473723489247 +72557,362.7849999997063,-0.05587462451815969 +72558,362.7899999997063,-0.0558745118213224 +72559,362.7949999997063,-0.055874399144376016 +72560,362.7999999997063,-0.055874286487315974 +72561,362.8049999997063,-0.05587417385013772 +72562,362.8099999997063,-0.0558740612328367 +72563,362.8149999997063,-0.05587394863540833 +72564,362.8199999997063,-0.05587383605784807 +72565,362.8249999997063,-0.055873723500151344 +72566,362.8299999997063,-0.05587361096231361 +72567,362.83499999970627,-0.055873498444330295 +72568,362.83999999970627,-0.05587338594619685 +72569,362.84499999970626,-0.05587327346790872 +72570,362.84999999970626,-0.055873161009461346 +72571,362.85499999970625,-0.05587304857085016 +72572,362.85999999970625,-0.055872936152070625 +72573,362.86499999970624,-0.05587282375311819 +72574,362.86999999970624,-0.05587271137398828 +72575,362.87499999970623,-0.05587259901467638 +72576,362.87999999970623,-0.05587248667517791 +72577,362.8849999997062,-0.055872374355488336 +72578,362.8899999997062,-0.055872262055603104 +72579,362.8949999997062,-0.05587214977551766 +72580,362.8999999997062,-0.055872037515227464 +72581,362.9049999997062,-0.05587192527472796 +72582,362.9099999997062,-0.05587181305401461 +72583,362.9149999997062,-0.05587170085308287 +72584,362.9199999997062,-0.05587158867192819 +72585,362.9249999997062,-0.055871476510546046 +72586,362.9299999997062,-0.055871364368931864 +72587,362.9349999997062,-0.05587125224708113 +72588,362.9399999997062,-0.055871140144989284 +72589,362.94499999970617,-0.05587102806265179 +72590,362.94999999970616,-0.055870916000064115 +72591,362.95499999970616,-0.05587080395722173 +72592,362.95999999970616,-0.05587069193412007 +72593,362.96499999970615,-0.055870579930754616 +72594,362.96999999970615,-0.05587046794712083 +72595,362.97499999970614,-0.05587035598321418 +72596,362.97999999970614,-0.055870244039030126 +72597,362.98499999970613,-0.05587013211456413 +72598,362.98999999970613,-0.055870020209811674 +72599,362.9949999997061,-0.05586990832476821 +72600,362.9999999997061,-0.05586979645942921 +72601,363.0049999997061,-0.05586968461379016 +72602,363.0099999997061,-0.05586957278784651 +72603,363.0149999997061,-0.055869460981593747 +72604,363.0199999997061,-0.05586934919502734 +72605,363.0249999997061,-0.05586923742814275 +72606,363.0299999997061,-0.055869125680935466 +72607,363.0349999997061,-0.05586901395340095 +72608,363.0399999997061,-0.05586890224553469 +72609,363.0449999997061,-0.05586879055733215 +72610,363.0499999997061,-0.055868678888788825 +72611,363.05499999970607,-0.05586856723990018 +72612,363.05999999970606,-0.055868455610661685 +72613,363.06499999970606,-0.05586834400106883 +72614,363.06999999970606,-0.055868232411117096 +72615,363.07499999970605,-0.05586812084080195 +72616,363.07999999970605,-0.05586800929011889 +72617,363.08499999970604,-0.05586789775906341 +72618,363.08999999970604,-0.055867786247630974 +72619,363.09499999970603,-0.05586767475581707 +72620,363.09999999970603,-0.05586756328361717 +72621,363.104999999706,-0.05586745183102679 +72622,363.109999999706,-0.05586734039804139 +72623,363.114999999706,-0.05586722898465648 +72624,363.119999999706,-0.05586711759086752 +72625,363.124999999706,-0.05586700621667003 +72626,363.129999999706,-0.05586689486205948 +72627,363.134999999706,-0.05586678352703137 +72628,363.139999999706,-0.05586667221158119 +72629,363.144999999706,-0.055866560915704425 +72630,363.149999999706,-0.055866449639396576 +72631,363.154999999706,-0.05586633838265314 +72632,363.159999999706,-0.055866227145469606 +72633,363.16499999970597,-0.05586611592784148 +72634,363.16999999970596,-0.055866004729764246 +72635,363.17499999970596,-0.0558658935512334 +72636,363.17999999970596,-0.05586578239224444 +72637,363.18499999970595,-0.05586567125279288 +72638,363.18999999970595,-0.055865560132874206 +72639,363.19499999970594,-0.05586544903248392 +72640,363.19999999970594,-0.055865337951617536 +72641,363.20499999970593,-0.055865226890270535 +72642,363.20999999970593,-0.05586511584843844 +72643,363.2149999997059,-0.05586500482611675 +72644,363.2199999997059,-0.05586489382330096 +72645,363.2249999997059,-0.055864782839986575 +72646,363.2299999997059,-0.055864671876169114 +72647,363.2349999997059,-0.05586456093184408 +72648,363.2399999997059,-0.05586445000700698 +72649,363.2449999997059,-0.05586433910165332 +72650,363.2499999997059,-0.0558642282157786 +72651,363.2549999997059,-0.05586411734937835 +72652,363.2599999997059,-0.05586400650244806 +72653,363.2649999997059,-0.05586389567498327 +72654,363.2699999997059,-0.055863784866979474 +72655,363.27499999970587,-0.055863674078432186 +72656,363.27999999970586,-0.05586356330933693 +72657,363.28499999970586,-0.05586345255968919 +72658,363.28999999970586,-0.05586334182948453 +72659,363.29499999970585,-0.05586323111871843 +72660,363.29999999970585,-0.05586312042738642 +72661,363.30499999970584,-0.055863009755484014 +72662,363.30999999970584,-0.05586289910300674 +72663,363.31499999970583,-0.05586278846995012 +72664,363.31999999970583,-0.05586267785630966 +72665,363.3249999997058,-0.05586256726208089 +72666,363.3299999997058,-0.05586245668725934 +72667,363.3349999997058,-0.055862346131840525 +72668,363.3399999997058,-0.055862235595819966 +72669,363.3449999997058,-0.05586212507919319 +72670,363.3499999997058,-0.05586201458195572 +72671,363.3549999997058,-0.05586190410410309 +72672,363.3599999997058,-0.055861793645630826 +72673,363.3649999997058,-0.05586168320653445 +72674,363.3699999997058,-0.05586157278680949 +72675,363.3749999997058,-0.05586146238645148 +72676,363.3799999997058,-0.05586135200545596 +72677,363.38499999970577,-0.05586124164381845 +72678,363.38999999970576,-0.05586113130153447 +72679,363.39499999970576,-0.055861020978599574 +72680,363.39999999970576,-0.05586091067500928 +72681,363.40499999970575,-0.05586080039075914 +72682,363.40999999970575,-0.05586069012584467 +72683,363.41499999970574,-0.05586057988026143 +72684,363.41999999970574,-0.05586046965400493 +72685,363.42499999970573,-0.05586035944707072 +72686,363.42999999970573,-0.05586024925945435 +72687,363.4349999997057,-0.05586013909115134 +72688,363.4399999997057,-0.05586002894215725 +72689,363.4449999997057,-0.0558599188124676 +72690,363.4499999997057,-0.05585980870207794 +72691,363.4549999997057,-0.05585969861098381 +72692,363.4599999997057,-0.055859588539180764 +72693,363.4649999997057,-0.05585947848666433 +72694,363.4699999997057,-0.055859368453430064 +72695,363.4749999997057,-0.05585925843947351 +72696,363.4799999997057,-0.05585914844479021 +72697,363.4849999997057,-0.05585903846937572 +72698,363.4899999997057,-0.05585892851322558 +72699,363.49499999970567,-0.05585881857633534 +72700,363.49999999970566,-0.05585870865870055 +72701,363.50499999970566,-0.05585859876031677 +72702,363.50999999970566,-0.055858488881179544 +72703,363.51499999970565,-0.055858379021284404 +72704,363.51999999970565,-0.05585826918062693 +72705,363.52499999970564,-0.05585815935920267 +72706,363.52999999970564,-0.05585804955700719 +72707,363.53499999970563,-0.055857939774036025 +72708,363.5399999997056,-0.05585783001028473 +72709,363.5449999997056,-0.05585772026574888 +72710,363.5499999997056,-0.05585761054042402 +72711,363.5549999997056,-0.05585750083430571 +72712,363.5599999997056,-0.05585739114738951 +72713,363.5649999997056,-0.05585728147967097 +72714,363.5699999997056,-0.05585717183114568 +72715,363.5749999997056,-0.05585706220180917 +72716,363.5799999997056,-0.05585695259165702 +72717,363.5849999997056,-0.05585684300068479 +72718,363.5899999997056,-0.055856733428888035 +72719,363.5949999997056,-0.055856623876262335 +72720,363.5999999997056,-0.05585651434280324 +72721,363.60499999970557,-0.05585640482850633 +72722,363.60999999970556,-0.05585629533336716 +72723,363.61499999970556,-0.05585618585738131 +72724,363.61999999970556,-0.05585607640054434 +72725,363.62499999970555,-0.055855966962851826 +72726,363.62999999970555,-0.055855857544299344 +72727,363.63499999970554,-0.05585574814488244 +72728,363.63999999970554,-0.05585563876459672 +72729,363.64499999970553,-0.05585552940343773 +72730,363.6499999997055,-0.05585542006140106 +72731,363.6549999997055,-0.055855310738482274 +72732,363.6599999997055,-0.05585520143467696 +72733,363.6649999997055,-0.055855092149980676 +72734,363.6699999997055,-0.05585498288438902 +72735,363.6749999997055,-0.05585487363789754 +72736,363.6799999997055,-0.05585476441050184 +72737,363.6849999997055,-0.05585465520219749 +72738,363.6899999997055,-0.05585454601298008 +72739,363.6949999997055,-0.055854436842845176 +72740,363.6999999997055,-0.05585432769178837 +72741,363.7049999997055,-0.055854218559805234 +72742,363.7099999997055,-0.055854109446891356 +72743,363.71499999970547,-0.055854000353042325 +72744,363.71999999970546,-0.05585389127825373 +72745,363.72499999970546,-0.055853782222521145 +72746,363.72999999970546,-0.05585367318584017 +72747,363.73499999970545,-0.05585356416820636 +72748,363.73999999970545,-0.055853455169615346 +72749,363.74499999970544,-0.05585334619006268 +72750,363.74999999970544,-0.05585323722954398 +72751,363.75499999970543,-0.05585312828805482 +72752,363.7599999997054,-0.0558530193655908 +72753,363.7649999997054,-0.055852910462147506 +72754,363.7699999997054,-0.055852801577720525 +72755,363.7749999997054,-0.05585269271230547 +72756,363.7799999997054,-0.05585258386589791 +72757,363.7849999997054,-0.055852475038493464 +72758,363.7899999997054,-0.05585236623008771 +72759,363.7949999997054,-0.055852257440676255 +72760,363.7999999997054,-0.055852148670254696 +72761,363.8049999997054,-0.05585203991881862 +72762,363.8099999997054,-0.05585193118636365 +72763,363.8149999997054,-0.055851822472885344 +72764,363.8199999997054,-0.05585171377837935 +72765,363.82499999970537,-0.05585160510284125 +72766,363.82999999970536,-0.055851496446266635 +72767,363.83499999970536,-0.05585138780865113 +72768,363.83999999970536,-0.05585127918999031 +72769,363.84499999970535,-0.05585117059027981 +72770,363.84999999970535,-0.05585106200951522 +72771,363.85499999970534,-0.055850953447692135 +72772,363.85999999970534,-0.055850844904806185 +72773,363.86499999970533,-0.055850736380852965 +72774,363.8699999997053,-0.055850627875828084 +72775,363.8749999997053,-0.055850519389727155 +72776,363.8799999997053,-0.05585041092254579 +72777,363.8849999997053,-0.0558503024742796 +72778,363.8899999997053,-0.055850194044924195 +72779,363.8949999997053,-0.05585008563447518 +72780,363.8999999997053,-0.05584997724292818 +72781,363.9049999997053,-0.0558498688702788 +72782,363.9099999997053,-0.05584976051652265 +72783,363.9149999997053,-0.05584965218165536 +72784,363.9199999997053,-0.05584954386567254 +72785,363.9249999997053,-0.05584943556856982 +72786,363.9299999997053,-0.05584932729034279 +72787,363.93499999970527,-0.055849219030987086 +72788,363.93999999970526,-0.055849110790498334 +72789,363.94499999970526,-0.05584900256887214 +72790,363.94999999970526,-0.055848894366104136 +72791,363.95499999970525,-0.05584878618218994 +72792,363.95999999970525,-0.05584867801712517 +72793,363.96499999970524,-0.05584856987090545 +72794,363.96999999970524,-0.055848461743526416 +72795,363.97499999970523,-0.05584835363498368 +72796,363.9799999997052,-0.05584824554527287 +72797,363.9849999997052,-0.05584813747438963 +72798,363.9899999997052,-0.055848029422329575 +72799,363.9949999997052,-0.055847921389088326 +72800,363.9999999997052,-0.05584781337466153 +72801,364.0049999997052,-0.0558477053790448 +72802,364.0099999997052,-0.05584759740223376 +72803,364.0149999997052,-0.055847489444224054 +72804,364.0199999997052,-0.05584738150501131 +72805,364.0249999997052,-0.05584727358459118 +72806,364.0299999997052,-0.05584716568295927 +72807,364.0349999997052,-0.05584705780011123 +72808,364.0399999997052,-0.055846949936042695 +72809,364.04499999970517,-0.05584684209074929 +72810,364.04999999970516,-0.05584673426422667 +72811,364.05499999970516,-0.05584662645647046 +72812,364.05999999970516,-0.0558465186674763 +72813,364.06499999970515,-0.05584641089723985 +72814,364.06999999970515,-0.05584630314575672 +72815,364.07499999970514,-0.055846195413022555 +72816,364.07999999970514,-0.05584608769903302 +72817,364.08499999970513,-0.05584598000378374 +72818,364.0899999997051,-0.05584587232727034 +72819,364.0949999997051,-0.055845764669488505 +72820,364.0999999997051,-0.05584565703043384 +72821,364.1049999997051,-0.05584554941010202 +72822,364.1099999997051,-0.05584544180848869 +72823,364.1149999997051,-0.05584533422558947 +72824,364.1199999997051,-0.05584522666140004 +72825,364.1249999997051,-0.05584511911591602 +72826,364.1299999997051,-0.05584501158913308 +72827,364.1349999997051,-0.055844904081046864 +72828,364.1399999997051,-0.05584479659165302 +72829,364.1449999997051,-0.05584468912094721 +72830,364.1499999997051,-0.05584458166892507 +72831,364.15499999970507,-0.05584447423558227 +72832,364.15999999970506,-0.05584436682091446 +72833,364.16499999970506,-0.05584425942491728 +72834,364.16999999970506,-0.05584415204758641 +72835,364.17499999970505,-0.055844044688917495 +72836,364.17999999970505,-0.055843937348906185 +72837,364.18499999970504,-0.055843830027548155 +72838,364.18999999970504,-0.05584372272483904 +72839,364.19499999970503,-0.05584361544077453 +72840,364.199999999705,-0.055843508175350255 +72841,364.204999999705,-0.055843400928561895 +72842,364.209999999705,-0.05584329370040511 +72843,364.214999999705,-0.055843186490875565 +72844,364.219999999705,-0.05584307929996892 +72845,364.224999999705,-0.05584297212768082 +72846,364.229999999705,-0.05584286497400696 +72847,364.234999999705,-0.05584275783894299 +72848,364.239999999705,-0.05584265072248458 +72849,364.244999999705,-0.055842543624627414 +72850,364.249999999705,-0.055842436545367136 +72851,364.254999999705,-0.05584232948469942 +72852,364.259999999705,-0.055842222442619945 +72853,364.26499999970497,-0.05584211541912437 +72854,364.26999999970496,-0.05584200841420838 +72855,364.27499999970496,-0.05584190142786764 +72856,364.27999999970496,-0.05584179446009783 +72857,364.28499999970495,-0.05584168751089462 +72858,364.28999999970495,-0.055841580580253666 +72859,364.29499999970494,-0.05584147366817067 +72860,364.29999999970494,-0.055841366774641285 +72861,364.30499999970493,-0.05584125989966121 +72862,364.3099999997049,-0.055841153043226115 +72863,364.3149999997049,-0.05584104620533167 +72864,364.3199999997049,-0.05584093938597356 +72865,364.3249999997049,-0.05584083258514745 +72866,364.3299999997049,-0.05584072580284905 +72867,364.3349999997049,-0.05584061903907403 +72868,364.3399999997049,-0.05584051229381807 +72869,364.3449999997049,-0.055840405567076846 +72870,364.3499999997049,-0.05584029885884605 +72871,364.3549999997049,-0.055840192169121367 +72872,364.3599999997049,-0.055840085497898484 +72873,364.3649999997049,-0.05583997884517308 +72874,364.3699999997049,-0.05583987221094084 +72875,364.37499999970487,-0.05583976559519747 +72876,364.37999999970486,-0.05583965899793864 +72877,364.38499999970486,-0.05583955241916005 +72878,364.38999999970486,-0.055839445858857376 +72879,364.39499999970485,-0.05583933931702633 +72880,364.39999999970485,-0.05583923279366259 +72881,364.40499999970484,-0.05583912628876185 +72882,364.40999999970484,-0.0558390198023198 +72883,364.41499999970483,-0.055838913334332135 +72884,364.4199999997048,-0.05583880688479457 +72885,364.4249999997048,-0.055838700453702775 +72886,364.4299999997048,-0.055838594041052445 +72887,364.4349999997048,-0.0558384876468393 +72888,364.4399999997048,-0.05583838127105902 +72889,364.4449999997048,-0.05583827491370731 +72890,364.4499999997048,-0.055838168574779856 +72891,364.4549999997048,-0.055838062254272375 +72892,364.4599999997048,-0.055837955952180565 +72893,364.4649999997048,-0.055837849668500125 +72894,364.4699999997048,-0.05583774340322675 +72895,364.4749999997048,-0.05583763715635617 +72896,364.4799999997048,-0.055837530927884065 +72897,364.48499999970477,-0.05583742471780613 +72898,364.48999999970476,-0.0558373185261181 +72899,364.49499999970476,-0.055837212352815656 +72900,364.49999999970476,-0.05583710619789453 +72901,364.50499999970475,-0.05583700006135041 +72902,364.50999999970475,-0.055836893943179006 +72903,364.51499999970474,-0.05583678784337605 +72904,364.51999999970474,-0.055836681761937214 +72905,364.52499999970473,-0.05583657569885824 +72906,364.5299999997047,-0.05583646965413483 +72907,364.5349999997047,-0.055836363627762696 +72908,364.5399999997047,-0.05583625761973755 +72909,364.5449999997047,-0.05583615163005511 +72910,364.5499999997047,-0.055836045658711086 +72911,364.5549999997047,-0.05583593970570119 +72912,364.5599999997047,-0.05583583377102116 +72913,364.5649999997047,-0.055835727854666686 +72914,364.5699999997047,-0.055835621956633504 +72915,364.5749999997047,-0.055835516076917314 +72916,364.5799999997047,-0.05583541021551386 +72917,364.5849999997047,-0.05583530437241885 +72918,364.5899999997047,-0.055835198547627994 +72919,364.59499999970467,-0.055835092741137037 +72920,364.59999999970466,-0.05583498695294168 +72921,364.60499999970466,-0.055834881183037664 +72922,364.60999999970466,-0.05583477543142071 +72923,364.61499999970465,-0.05583466969808653 +72924,364.61999999970465,-0.05583456398303086 +72925,364.62499999970464,-0.05583445828624943 +72926,364.62999999970464,-0.055834352607737954 +72927,364.63499999970463,-0.05583424694749218 +72928,364.6399999997046,-0.05583414130550782 +72929,364.6449999997046,-0.05583403568178061 +72930,364.6499999997046,-0.05583393007630628 +72931,364.6549999997046,-0.055833824489080544 +72932,364.6599999997046,-0.05583371892009916 +72933,364.6649999997046,-0.05583361336935785 +72934,364.6699999997046,-0.05583350783685235 +72935,364.6749999997046,-0.05583340232257839 +72936,364.6799999997046,-0.05583329682653171 +72937,364.6849999997046,-0.055833191348708046 +72938,364.6899999997046,-0.055833085889103115 +72939,364.6949999997046,-0.055832980447712684 +72940,364.6999999997046,-0.05583287502453247 +72941,364.70499999970457,-0.05583276961955822 +72942,364.70999999970456,-0.05583266423278568 +72943,364.71499999970456,-0.05583255886421057 +72944,364.71999999970456,-0.05583245351382866 +72945,364.72499999970455,-0.05583234818163567 +72946,364.72999999970455,-0.05583224286762734 +72947,364.73499999970454,-0.05583213757179944 +72948,364.73999999970454,-0.05583203229414768 +72949,364.74499999970453,-0.05583192703466783 +72950,364.7499999997045,-0.055831821793355614 +72951,364.7549999997045,-0.055831716570206795 +72952,364.7599999997045,-0.05583161136521712 +72953,364.7649999997045,-0.055831506178382326 +72954,364.7699999997045,-0.05583140100969818 +72955,364.7749999997045,-0.05583129585916042 +72956,364.7799999997045,-0.055831190726764804 +72957,364.7849999997045,-0.05583108561250707 +72958,364.7899999997045,-0.055830980516382966 +72959,364.7949999997045,-0.055830875438388265 +72960,364.7999999997045,-0.05583077037851871 +72961,364.8049999997045,-0.05583066533677006 +72962,364.8099999997045,-0.05583056031313805 +72963,364.81499999970447,-0.055830455307618466 +72964,364.81999999970446,-0.05583035032020705 +72965,364.82499999970446,-0.055830245350899546 +72966,364.82999999970446,-0.05583014039969173 +72967,364.83499999970445,-0.05583003546657936 +72968,364.83999999970445,-0.055829930551558195 +72969,364.84499999970444,-0.05582982565462397 +72970,364.84999999970444,-0.05582972077577249 +72971,364.85499999970443,-0.05582961591499948 +72972,364.8599999997044,-0.05582951107230072 +72973,364.8649999997044,-0.05582940624767197 +72974,364.8699999997044,-0.055829301441108994 +72975,364.8749999997044,-0.05582919665260756 +72976,364.8799999997044,-0.05582909188216342 +72977,364.8849999997044,-0.055828987129772356 +72978,364.8899999997044,-0.05582888239543014 +72979,364.8949999997044,-0.05582877767913253 +72980,364.8999999997044,-0.05582867298087529 +72981,364.9049999997044,-0.055828568300654184 +72982,364.9099999997044,-0.055828463638465 +72983,364.9149999997044,-0.0558283589943035 +72984,364.9199999997044,-0.055828254368165464 +72985,364.92499999970437,-0.055828149760046644 +72986,364.92999999970436,-0.05582804516994282 +72987,364.93499999970436,-0.05582794059784979 +72988,364.93999999970436,-0.05582783604376331 +72989,364.94499999970435,-0.05582773150767916 +72990,364.94999999970435,-0.055827626989593114 +72991,364.95499999970434,-0.05582752248950094 +72992,364.95999999970434,-0.055827418007398426 +72993,364.96499999970433,-0.05582731354328135 +72994,364.9699999997043,-0.05582720909714549 +72995,364.9749999997043,-0.055827104668986625 +72996,364.9799999997043,-0.05582700025880054 +72997,364.9849999997043,-0.055826895866583015 +72998,364.9899999997043,-0.05582679149232983 +72999,364.9949999997043,-0.05582668713603677 +73000,364.9999999997043,-0.055826582797699614 +73001,365.0049999997043,-0.05582647847731415 +73002,365.0099999997043,-0.05582637417487618 +73003,365.0149999997043,-0.05582626989038147 +73004,365.0199999997043,-0.0558261656238258 +73005,365.0249999997043,-0.055826061375204974 +73006,365.0299999997043,-0.05582595714451478 +73007,365.03499999970427,-0.055825852931751005 +73008,365.03999999970426,-0.05582574873690943 +73009,365.04499999970426,-0.055825644559985864 +73010,365.04999999970426,-0.055825540400976086 +73011,365.05499999970425,-0.05582543625987587 +73012,365.05999999970425,-0.05582533213668104 +73013,365.06499999970424,-0.05582522803138738 +73014,365.06999999970424,-0.05582512394399069 +73015,365.07499999970423,-0.05582501987448676 +73016,365.0799999997042,-0.05582491582287138 +73017,365.0849999997042,-0.055824811789140345 +73018,365.0899999997042,-0.05582470777328946 +73019,365.0949999997042,-0.05582460377531453 +73020,365.0999999997042,-0.05582449979521134 +73021,365.1049999997042,-0.055824395832975694 +73022,365.1099999997042,-0.05582429188860341 +73023,365.1149999997042,-0.05582418796209028 +73024,365.1199999997042,-0.05582408405343209 +73025,365.1249999997042,-0.05582398016262465 +73026,365.1299999997042,-0.055823876289663774 +73027,365.1349999997042,-0.05582377243454526 +73028,365.1399999997042,-0.05582366859726491 +73029,365.14499999970417,-0.05582356477781853 +73030,365.14999999970416,-0.05582346097620193 +73031,365.15499999970416,-0.055823357192410925 +73032,365.15999999970416,-0.055823253426441316 +73033,365.16499999970415,-0.0558231496782889 +73034,365.16999999970415,-0.05582304594794951 +73035,365.17499999970414,-0.055822942235418935 +73036,365.17999999970414,-0.055822838540693 +73037,365.18499999970413,-0.05582273486376751 +73038,365.1899999997041,-0.05582263120463828 +73039,365.1949999997041,-0.05582252756330114 +73040,365.1999999997041,-0.05582242393975187 +73041,365.2049999997041,-0.05582232033398631 +73042,365.2099999997041,-0.05582221674600028 +73043,365.2149999997041,-0.055822113175789584 +73044,365.2199999997041,-0.05582200962335003 +73045,365.2249999997041,-0.05582190608867745 +73046,365.2299999997041,-0.055821802571767665 +73047,365.2349999997041,-0.055821699072616485 +73048,365.2399999997041,-0.055821595591219735 +73049,365.2449999997041,-0.05582149212757324 +73050,365.2499999997041,-0.055821388681672815 +73051,365.25499999970407,-0.05582128525351429 +73052,365.25999999970406,-0.05582118184309349 +73053,365.26499999970406,-0.05582107845040622 +73054,365.26999999970405,-0.05582097507544833 +73055,365.27499999970405,-0.05582087171821563 +73056,365.27999999970405,-0.05582076837870395 +73057,365.28499999970404,-0.05582066505690911 +73058,365.28999999970404,-0.05582056175282695 +73059,365.29499999970403,-0.05582045846645329 +73060,365.299999999704,-0.05582035519778397 +73061,365.304999999704,-0.05582025194681481 +73062,365.309999999704,-0.05582014871354164 +73063,365.314999999704,-0.05582004549796031 +73064,365.319999999704,-0.05581994230006663 +73065,365.324999999704,-0.05581983911985644 +73066,365.329999999704,-0.055819735957325575 +73067,365.334999999704,-0.05581963281246988 +73068,365.339999999704,-0.05581952968528516 +73069,365.344999999704,-0.05581942657576728 +73070,365.349999999704,-0.055819323483912074 +73071,365.354999999704,-0.05581922040971537 +73072,365.359999999704,-0.05581911735317301 +73073,365.36499999970397,-0.05581901431428084 +73074,365.36999999970396,-0.05581891129303469 +73075,365.37499999970396,-0.055818808289430394 +73076,365.37999999970395,-0.05581870530346382 +73077,365.38499999970395,-0.05581860233513078 +73078,365.38999999970395,-0.05581849938442713 +73079,365.39499999970394,-0.05581839645134872 +73080,365.39999999970394,-0.055818293535891385 +73081,365.40499999970393,-0.05581819063805098 +73082,365.4099999997039,-0.05581808775782335 +73083,365.4149999997039,-0.055817984895204335 +73084,365.4199999997039,-0.05581788205018978 +73085,365.4249999997039,-0.055817779222775546 +73086,365.4299999997039,-0.055817676412957457 +73087,365.4349999997039,-0.05581757362073138 +73088,365.4399999997039,-0.055817470846093176 +73089,365.4449999997039,-0.05581736808903868 +73090,365.4499999997039,-0.055817265349563744 +73091,365.4549999997039,-0.055817162627664216 +73092,365.4599999997039,-0.05581705992333598 +73093,365.4649999997039,-0.05581695723657485 +73094,365.4699999997039,-0.05581685456737671 +73095,365.47499999970387,-0.0558167519157374 +73096,365.47999999970386,-0.05581664928165279 +73097,365.48499999970386,-0.055816546665118726 +73098,365.48999999970385,-0.05581644406613107 +73099,365.49499999970385,-0.05581634148468568 +73100,365.49999999970385,-0.055816238920778416 +73101,365.50499999970384,-0.055816136374405134 +73102,365.50999999970384,-0.05581603384556169 +73103,365.51499999970383,-0.05581593133424397 +73104,365.5199999997038,-0.055815828840447806 +73105,365.5249999997038,-0.05581572636416908 +73106,365.5299999997038,-0.05581562390540366 +73107,365.5349999997038,-0.055815521464147394 +73108,365.5399999997038,-0.055815419040396164 +73109,365.5449999997038,-0.055815316634145816 +73110,365.5499999997038,-0.05581521424539224 +73111,365.5549999997038,-0.05581511187413129 +73112,365.5599999997038,-0.05581500952035883 +73113,365.5649999997038,-0.055814907184070735 +73114,365.5699999997038,-0.05581480486526287 +73115,365.5749999997038,-0.055814702563931125 +73116,365.5799999997038,-0.05581460028007135 +73117,365.58499999970377,-0.05581449801367943 +73118,365.58999999970376,-0.05581439576475122 +73119,365.59499999970376,-0.05581429353328262 +73120,365.59999999970375,-0.0558141913192695 +73121,365.60499999970375,-0.055814089122707716 +73122,365.60999999970375,-0.05581398694359315 +73123,365.61499999970374,-0.05581388478192169 +73124,365.61999999970374,-0.0558137826376892 +73125,365.62499999970373,-0.05581368051089156 +73126,365.6299999997037,-0.05581357840152465 +73127,365.6349999997037,-0.05581347630958436 +73128,365.6399999997037,-0.05581337423506656 +73129,365.6449999997037,-0.05581327217796714 +73130,365.6499999997037,-0.055813170138281964 +73131,365.6549999997037,-0.055813068116006934 +73132,365.6599999997037,-0.055812966111137924 +73133,365.6649999997037,-0.05581286412367082 +73134,365.6699999997037,-0.055812762153601515 +73135,365.6749999997037,-0.05581266020092588 +73136,365.6799999997037,-0.05581255826563979 +73137,365.6849999997037,-0.055812456347739174 +73138,365.6899999997037,-0.05581235444721989 +73139,365.69499999970367,-0.055812252564077826 +73140,365.69999999970366,-0.055812150698308874 +73141,365.70499999970366,-0.05581204884990892 +73142,365.70999999970365,-0.05581194701887387 +73143,365.71499999970365,-0.055811845205199606 +73144,365.71999999970365,-0.05581174340888202 +73145,365.72499999970364,-0.05581164162991702 +73146,365.72999999970364,-0.055811539868300473 +73147,365.73499999970363,-0.055811438124028286 +73148,365.7399999997036,-0.05581133639709636 +73149,365.7449999997036,-0.055811234687500585 +73150,365.7499999997036,-0.055811132995236865 +73151,365.7549999997036,-0.05581103132030108 +73152,365.7599999997036,-0.05581092966268915 +73153,365.7649999997036,-0.055810828022396966 +73154,365.7699999997036,-0.05581072639942042 +73155,365.7749999997036,-0.05581062479375541 +73156,365.7799999997036,-0.055810523205397845 +73157,365.7849999997036,-0.055810421634343625 +73158,365.7899999997036,-0.05581032008058867 +73159,365.7949999997036,-0.05581021854412886 +73160,365.7999999997036,-0.055810117024960096 +73161,365.80499999970357,-0.055810015523078293 +73162,365.80999999970356,-0.05580991403847936 +73163,365.81499999970356,-0.05580981257115922 +73164,365.81999999970355,-0.055809711121113735 +73165,365.82499999970355,-0.055809609688338854 +73166,365.82999999970355,-0.05580950827283046 +73167,365.83499999970354,-0.055809406874584466 +73168,365.83999999970354,-0.0558093054935968 +73169,365.84499999970353,-0.055809204129863364 +73170,365.8499999997035,-0.055809102783380055 +73171,365.8549999997035,-0.055809001454142804 +73172,365.8599999997035,-0.055808900142147524 +73173,365.8649999997035,-0.05580879884739011 +73174,365.8699999997035,-0.0558086975698665 +73175,365.8749999997035,-0.05580859630957258 +73176,365.8799999997035,-0.055808495066504295 +73177,365.8849999997035,-0.05580839384065755 +73178,365.8899999997035,-0.05580829263202826 +73179,365.8949999997035,-0.055808191440612345 +73180,365.8999999997035,-0.05580809026640573 +73181,365.9049999997035,-0.05580798910940432 +73182,365.9099999997035,-0.05580788796960406 +73183,365.91499999970347,-0.05580778684700084 +73184,365.91999999970346,-0.055807685741590604 +73185,365.92499999970346,-0.05580758465336926 +73186,365.92999999970345,-0.05580748358233275 +73187,365.93499999970345,-0.05580738252847698 +73188,365.93999999970345,-0.05580728149179788 +73189,365.94499999970344,-0.05580718047229139 +73190,365.94999999970344,-0.055807079469953426 +73191,365.95499999970343,-0.055806978484779904 +73192,365.9599999997034,-0.05580687751676676 +73193,365.9649999997034,-0.05580677656590993 +73194,365.9699999997034,-0.055806675632205344 +73195,365.9749999997034,-0.05580657471564892 +73196,365.9799999997034,-0.055806473816236594 +73197,365.9849999997034,-0.05580637293396429 +73198,365.9899999997034,-0.055806272068827954 +73199,365.9949999997034,-0.0558061712208235 +73200,365.9999999997034,-0.05580607038994689 +73201,366.0049999997034,-0.055805969576194034 +73202,366.0099999997034,-0.05580586877956088 +73203,366.0149999997034,-0.05580576800004336 +73204,366.0199999997034,-0.055805667237637406 +73205,366.02499999970337,-0.05580556649233897 +73206,366.02999999970336,-0.055805465764143976 +73207,366.03499999970336,-0.05580536505304836 +73208,366.03999999970335,-0.05580526435904807 +73209,366.04499999970335,-0.05580516368213904 +73210,366.04999999970335,-0.05580506302231721 +73211,366.05499999970334,-0.05580496237957854 +73212,366.05999999970334,-0.05580486175391896 +73213,366.06499999970333,-0.05580476114533441 +73214,366.0699999997033,-0.05580466055382084 +73215,366.0749999997033,-0.05580455997937419 +73216,366.0799999997033,-0.0558044594219904 +73217,366.0849999997033,-0.05580435888166544 +73218,366.0899999997033,-0.05580425835839523 +73219,366.0949999997033,-0.05580415785217573 +73220,366.0999999997033,-0.05580405736300288 +73221,366.1049999997033,-0.05580395689087264 +73222,366.1099999997033,-0.05580385643578096 +73223,366.1149999997033,-0.05580375599772378 +73224,366.1199999997033,-0.05580365557669705 +73225,366.1249999997033,-0.05580355517269675 +73226,366.1299999997033,-0.0558034547857188 +73227,366.13499999970327,-0.05580335441575916 +73228,366.13999999970326,-0.05580325406281379 +73229,366.14499999970326,-0.05580315372687865 +73230,366.14999999970325,-0.05580305340794969 +73231,366.15499999970325,-0.05580295310602287 +73232,366.15999999970325,-0.05580285282109414 +73233,366.16499999970324,-0.05580275255315945 +73234,366.16999999970324,-0.05580265230221478 +73235,366.17499999970323,-0.055802552068256094 +73236,366.1799999997032,-0.05580245185127933 +73237,366.1849999997032,-0.055802351651280446 +73238,366.1899999997032,-0.055802251468255425 +73239,366.1949999997032,-0.05580215130220022 +73240,366.1999999997032,-0.05580205115311078 +73241,366.2049999997032,-0.0558019510209831 +73242,366.2099999997032,-0.05580185090581311 +73243,366.2149999997032,-0.055801750807596806 +73244,366.2199999997032,-0.05580165072633012 +73245,366.2249999997032,-0.05580155066200905 +73246,366.2299999997032,-0.05580145061462956 +73247,366.2349999997032,-0.0558013505841876 +73248,366.2399999997032,-0.05580125057067916 +73249,366.24499999970317,-0.05580115057410019 +73250,366.24999999970316,-0.05580105059444666 +73251,366.25499999970316,-0.05580095063171456 +73252,366.25999999970315,-0.05580085068589985 +73253,366.26499999970315,-0.055800750756998495 +73254,366.26999999970315,-0.05580065084500649 +73255,366.27499999970314,-0.05580055094991978 +73256,366.27999999970314,-0.055800451071734376 +73257,366.28499999970313,-0.05580035121044622 +73258,366.2899999997031,-0.055800251366051316 +73259,366.2949999997031,-0.05580015153854561 +73260,366.2999999997031,-0.0558000517279251 +73261,366.3049999997031,-0.05579995193418576 +73262,366.3099999997031,-0.055799852157323575 +73263,366.3149999997031,-0.055799752397334514 +73264,366.3199999997031,-0.05579965265421457 +73265,366.3249999997031,-0.05579955292795971 +73266,366.3299999997031,-0.05579945321856593 +73267,366.3349999997031,-0.055799353526029195 +73268,366.3399999997031,-0.05579925385034551 +73269,366.3449999997031,-0.05579915419151084 +73270,366.3499999997031,-0.05579905454952117 +73271,366.35499999970307,-0.055798954924372514 +73272,366.35999999970306,-0.055798855316060825 +73273,366.36499999970306,-0.05579875572458211 +73274,366.36999999970305,-0.05579865614993236 +73275,366.37499999970305,-0.05579855659210754 +73276,366.37999999970305,-0.055798457051103666 +73277,366.38499999970304,-0.055798357526916705 +73278,366.38999999970304,-0.055798258019542656 +73279,366.39499999970303,-0.05579815852897752 +73280,366.399999999703,-0.05579805905521728 +73281,366.404999999703,-0.05579795959825793 +73282,366.409999999703,-0.05579786015809548 +73283,366.414999999703,-0.055797760734725886 +73284,366.419999999703,-0.05579766132814517 +73285,366.424999999703,-0.05579756193834933 +73286,366.429999999703,-0.055797462565334355 +73287,366.434999999703,-0.05579736320909625 +73288,366.439999999703,-0.055797263869631 +73289,366.444999999703,-0.05579716454693461 +73290,366.449999999703,-0.055797065241003085 +73291,366.454999999703,-0.05579696595183242 +73292,366.459999999703,-0.05579686667941861 +73293,366.46499999970297,-0.05579676742375767 +73294,366.46999999970296,-0.05579666818484559 +73295,366.47499999970296,-0.05579656896267838 +73296,366.47999999970295,-0.05579646975725204 +73297,366.48499999970295,-0.055796370568562584 +73298,366.48999999970295,-0.055796271396606006 +73299,366.49499999970294,-0.055796172241378304 +73300,366.49999999970294,-0.055796073102875494 +73301,366.50499999970293,-0.055795973981093594 +73302,366.5099999997029,-0.055795874876028606 +73303,366.5149999997029,-0.055795775787676534 +73304,366.5199999997029,-0.0557956767160334 +73305,366.5249999997029,-0.0557955776610952 +73306,366.5299999997029,-0.05579547862285794 +73307,366.5349999997029,-0.05579537960131765 +73308,366.5399999997029,-0.055795280596470334 +73309,366.5449999997029,-0.055795181608312004 +73310,366.5499999997029,-0.05579508263683869 +73311,366.5549999997029,-0.05579498368204638 +73312,366.5599999997029,-0.05579488474393109 +73313,366.5649999997029,-0.05579478582248886 +73314,366.5699999997029,-0.0557946869177157 +73315,366.57499999970287,-0.055794588029607614 +73316,366.57999999970286,-0.05579448915816063 +73317,366.58499999970286,-0.055794390303370765 +73318,366.58999999970285,-0.05579429146523404 +73319,366.59499999970285,-0.05579419264374647 +73320,366.59999999970285,-0.055794093838904074 +73321,366.60499999970284,-0.05579399505070289 +73322,366.60999999970284,-0.05579389627913894 +73323,366.61499999970283,-0.05579379752420822 +73324,366.6199999997028,-0.05579369878590677 +73325,366.6249999997028,-0.05579360006423063 +73326,366.6299999997028,-0.05579350135917581 +73327,366.6349999997028,-0.05579340267073833 +73328,366.6399999997028,-0.05579330399891424 +73329,366.6449999997028,-0.05579320534369955 +73330,366.6499999997028,-0.055793106705090294 +73331,366.6549999997028,-0.0557930080830825 +73332,366.6599999997028,-0.055792909477672195 +73333,366.6649999997028,-0.05579281088885542 +73334,366.6699999997028,-0.05579271231662818 +73335,366.6749999997028,-0.05579261376098654 +73336,366.6799999997028,-0.055792515221926506 +73337,366.68499999970277,-0.05579241669944413 +73338,366.68999999970276,-0.05579231819353544 +73339,366.69499999970276,-0.055792219704196455 +73340,366.69999999970275,-0.05579212123142324 +73341,366.70499999970275,-0.05579202277521181 +73342,366.70999999970275,-0.055791924335558206 +73343,366.71499999970274,-0.05579182591245848 +73344,366.71999999970274,-0.055791727505908655 +73345,366.72499999970273,-0.05579162911590477 +73346,366.7299999997027,-0.05579153074244288 +73347,366.7349999997027,-0.055791432385519 +73348,366.7399999997027,-0.05579133404512919 +73349,366.7449999997027,-0.05579123572126949 +73350,366.7499999997027,-0.055791137413935946 +73351,366.7549999997027,-0.055791039123124594 +73352,366.7599999997027,-0.05579094084883147 +73353,366.7649999997027,-0.05579084259105264 +73354,366.7699999997027,-0.055790744349784135 +73355,366.7749999997027,-0.055790646125022006 +73356,366.7799999997027,-0.05579054791676231 +73357,366.7849999997027,-0.05579044972500107 +73358,366.7899999997027,-0.05579035154973436 +73359,366.79499999970267,-0.0557902533909582 +73360,366.79999999970266,-0.05579015524866867 +73361,366.80499999970266,-0.055790057122861815 +73362,366.80999999970265,-0.055789959013533674 +73363,366.81499999970265,-0.05578986092068031 +73364,366.81999999970265,-0.05578976284429777 +73365,366.82499999970264,-0.0557896647843821 +73366,366.82999999970264,-0.05578956674092936 +73367,366.83499999970263,-0.05578946871393562 +73368,366.8399999997026,-0.055789370703396915 +73369,366.8449999997026,-0.055789272709309314 +73370,366.8499999997026,-0.05578917473166887 +73371,366.8549999997026,-0.05578907677047164 +73372,366.8599999997026,-0.05578897882571369 +73373,366.8649999997026,-0.05578888089739107 +73374,366.8699999997026,-0.05578878298549984 +73375,366.8749999997026,-0.05578868509003605 +73376,366.8799999997026,-0.0557885872109958 +73377,366.8849999997026,-0.055788489348375124 +73378,366.8899999997026,-0.055788391502170076 +73379,366.8949999997026,-0.055788293672376726 +73380,366.8999999997026,-0.05578819585899116 +73381,366.90499999970257,-0.05578809806200943 +73382,366.90999999970256,-0.05578800028142759 +73383,366.91499999970256,-0.05578790251724171 +73384,366.91999999970255,-0.05578780476944786 +73385,366.92499999970255,-0.05578770703804212 +73386,366.92999999970255,-0.055787609323020536 +73387,366.93499999970254,-0.05578751162437919 +73388,366.93999999970254,-0.05578741394211416 +73389,366.94499999970253,-0.05578731627622151 +73390,366.9499999997025,-0.0557872186266973 +73391,366.9549999997025,-0.055787120993537616 +73392,366.9599999997025,-0.055787023376738534 +73393,366.9649999997025,-0.05578692577629612 +73394,366.9699999997025,-0.05578682819220644 +73395,366.9749999997025,-0.055786730624465576 +73396,366.9799999997025,-0.05578663307306961 +73397,366.9849999997025,-0.05578653553801462 +73398,366.9899999997025,-0.05578643801929667 +73399,366.9949999997025,-0.055786340516911836 +73400,366.9999999997025,-0.05578624303085621 +73401,367.0049999997025,-0.05578614556112588 +73402,367.0099999997025,-0.055786048107716896 +73403,367.01499999970247,-0.055785950670625355 +73404,367.01999999970246,-0.05578585324984735 +73405,367.02499999970246,-0.05578575584537895 +73406,367.02999999970245,-0.05578565845721623 +73407,367.03499999970245,-0.05578556108535528 +73408,367.03999999970245,-0.0557854637297922 +73409,367.04499999970244,-0.055785366390523054 +73410,367.04999999970244,-0.055785269067543934 +73411,367.05499999970243,-0.055785171760850946 +73412,367.0599999997024,-0.05578507447044015 +73413,367.0649999997024,-0.055784977196307636 +73414,367.0699999997024,-0.05578487993844951 +73415,367.0749999997024,-0.05578478269686184 +73416,367.0799999997024,-0.05578468547154073 +73417,367.0849999997024,-0.05578458826248226 +73418,367.0899999997024,-0.05578449106968253 +73419,367.0949999997024,-0.055784393893137635 +73420,367.0999999997024,-0.05578429673284367 +73421,367.1049999997024,-0.055784199588796726 +73422,367.1099999997024,-0.055784102460992885 +73423,367.1149999997024,-0.05578400534942824 +73424,367.1199999997024,-0.0557839082540989 +73425,367.12499999970237,-0.05578381117500097 +73426,367.12999999970236,-0.055783714112130525 +73427,367.13499999970236,-0.05578361706548368 +73428,367.13999999970235,-0.05578352003505653 +73429,367.14499999970235,-0.055783423020845165 +73430,367.14999999970235,-0.055783326022845685 +73431,367.15499999970234,-0.0557832290410542 +73432,367.15999999970234,-0.05578313207546681 +73433,367.16499999970233,-0.055783035126079614 +73434,367.1699999997023,-0.05578293819288871 +73435,367.1749999997023,-0.055782841275890206 +73436,367.1799999997023,-0.05578274437508021 +73437,367.1849999997023,-0.05578264749045482 +73438,367.1899999997023,-0.05578255062201015 +73439,367.1949999997023,-0.05578245376974229 +73440,367.1999999997023,-0.055782356933647366 +73441,367.2049999997023,-0.05578226011372148 +73442,367.2099999997023,-0.05578216330996074 +73443,367.2149999997023,-0.05578206652236125 +73444,367.2199999997023,-0.05578196975091912 +73445,367.2249999997023,-0.05578187299563046 +73446,367.2299999997023,-0.055781776256491396 +73447,367.23499999970227,-0.055781679533498024 +73448,367.23999999970226,-0.055781582826646456 +73449,367.24499999970226,-0.05578148613593281 +73450,367.24999999970225,-0.0557813894613532 +73451,367.25499999970225,-0.055781292802903754 +73452,367.25999999970225,-0.05578119616058057 +73453,367.26499999970224,-0.05578109953437975 +73454,367.26999999970224,-0.05578100292429744 +73455,367.27499999970223,-0.05578090633032974 +73456,367.2799999997022,-0.05578080975247279 +73457,367.2849999997022,-0.0557807131907227 +73458,367.2899999997022,-0.05578061664507557 +73459,367.2949999997022,-0.05578052011552754 +73460,367.2999999997022,-0.05578042360207472 +73461,367.3049999997022,-0.055780327104713236 +73462,367.3099999997022,-0.05578023062343921 +73463,367.3149999997022,-0.05578013415824877 +73464,367.3199999997022,-0.055780037709138044 +73465,367.3249999997022,-0.05577994127610315 +73466,367.3299999997022,-0.0557798448591402 +73467,367.3349999997022,-0.055779748458245335 +73468,367.3399999997022,-0.05577965207341468 +73469,367.34499999970217,-0.055779555704644365 +73470,367.34999999970216,-0.055779459351930516 +73471,367.35499999970216,-0.05577936301526926 +73472,367.35999999970215,-0.05577926669465673 +73473,367.36499999970215,-0.055779170390089054 +73474,367.36999999970215,-0.05577907410156236 +73475,367.37499999970214,-0.05577897782907279 +73476,367.37999999970214,-0.05577888157261646 +73477,367.38499999970213,-0.055778785332189516 +73478,367.3899999997021,-0.05577868910778808 +73479,367.3949999997021,-0.0557785928994083 +73480,367.3999999997021,-0.0557784967070463 +73481,367.4049999997021,-0.05577840053069822 +73482,367.4099999997021,-0.0557783043703602 +73483,367.4149999997021,-0.055778208226028386 +73484,367.4199999997021,-0.055778112097698895 +73485,367.4249999997021,-0.05577801598536787 +73486,367.4299999997021,-0.05577791988903147 +73487,367.4349999997021,-0.05577782380868581 +73488,367.4399999997021,-0.05577772774432704 +73489,367.4449999997021,-0.05577763169595131 +73490,367.4499999997021,-0.055777535663554756 +73491,367.45499999970207,-0.05577743964713352 +73492,367.45999999970206,-0.05577734364668375 +73493,367.46499999970206,-0.05577724766220157 +73494,367.46999999970205,-0.05577715169368315 +73495,367.47499999970205,-0.055777055741124626 +73496,367.47999999970204,-0.05577695980452215 +73497,367.48499999970204,-0.05577686388387187 +73498,367.48999999970204,-0.05577676797916992 +73499,367.49499999970203,-0.05577667209041246 +73500,367.499999999702,-0.05577657621759563 +73501,367.504999999702,-0.0557764803607156 +73502,367.509999999702,-0.055776384519768483 +73503,367.514999999702,-0.055776288694750466 +73504,367.519999999702,-0.055776192885657695 +73505,367.524999999702,-0.055776097092486314 +73506,367.529999999702,-0.05577600131523248 +73507,367.534999999702,-0.05577590555389234 +73508,367.539999999702,-0.05577580980846206 +73509,367.544999999702,-0.055775714078937784 +73510,367.549999999702,-0.05577561836531568 +73511,367.554999999702,-0.0557755226675919 +73512,367.559999999702,-0.055775426985762606 +73513,367.56499999970197,-0.05577533131982395 +73514,367.56999999970196,-0.05577523566977209 +73515,367.57499999970196,-0.05577514003560319 +73516,367.57999999970195,-0.055775044417313395 +73517,367.58499999970195,-0.055774948814898896 +73518,367.58999999970194,-0.05577485322835583 +73519,367.59499999970194,-0.05577475765768037 +73520,367.59999999970194,-0.055774662102868675 +73521,367.60499999970193,-0.055774566563916925 +73522,367.6099999997019,-0.055774471040821255 +73523,367.6149999997019,-0.05577437553357786 +73524,367.6199999997019,-0.055774280042182885 +73525,367.6249999997019,-0.0557741845666325 +73526,367.6299999997019,-0.05577408910692287 +73527,367.6349999997019,-0.05577399366305018 +73528,367.6399999997019,-0.055773898235010576 +73529,367.6449999997019,-0.05577380282280025 +73530,367.6499999997019,-0.05577370742641536 +73531,367.6549999997019,-0.05577361204585208 +73532,367.6599999997019,-0.05577351668110657 +73533,367.6649999997019,-0.05577342133217502 +73534,367.6699999997019,-0.055773325999053595 +73535,367.67499999970187,-0.055773230681738485 +73536,367.67999999970186,-0.05577313538022584 +73537,367.68499999970186,-0.055773040094511846 +73538,367.68999999970185,-0.05577294482459267 +73539,367.69499999970185,-0.05577284957046449 +73540,367.69999999970184,-0.05577275433212348 +73541,367.70499999970184,-0.05577265910956584 +73542,367.70999999970184,-0.05577256390278774 +73543,367.71499999970183,-0.05577246871178535 +73544,367.7199999997018,-0.055772373536554856 +73545,367.7249999997018,-0.05577227837709242 +73546,367.7299999997018,-0.055772183233394244 +73547,367.7349999997018,-0.05577208810545652 +73548,367.7399999997018,-0.055771992993275406 +73549,367.7449999997018,-0.0557718978968471 +73550,367.7499999997018,-0.05577180281616778 +73551,367.7549999997018,-0.055771707751233635 +73552,367.7599999997018,-0.05577161270204084 +73553,367.7649999997018,-0.0557715176685856 +73554,367.7699999997018,-0.055771422650864086 +73555,367.7749999997018,-0.055771327648872486 +73556,367.7799999997018,-0.05577123266260701 +73557,367.78499999970177,-0.05577113769206382 +73558,367.78999999970176,-0.05577104273723912 +73559,367.79499999970176,-0.055770947798129085 +73560,367.79999999970175,-0.05577085287472993 +73561,367.80499999970175,-0.05577075796703782 +73562,367.80999999970174,-0.05577066307504897 +73563,367.81499999970174,-0.055770568198759564 +73564,367.81999999970174,-0.05577047333816579 +73565,367.82499999970173,-0.05577037849326385 +73566,367.8299999997017,-0.055770283664049944 +73567,367.8349999997017,-0.05577018885052026 +73568,367.8399999997017,-0.055770094052671 +73569,367.8449999997017,-0.05576999927049835 +73570,367.8499999997017,-0.05576990450399852 +73571,367.8549999997017,-0.055769809753167705 +73572,367.8599999997017,-0.055769715018002104 +73573,367.8649999997017,-0.05576962029849791 +73574,367.8699999997017,-0.05576952559465134 +73575,367.8749999997017,-0.055769430906458584 +73576,367.8799999997017,-0.055769336233915855 +73577,367.8849999997017,-0.05576924157701933 +73578,367.8899999997017,-0.055769146935765235 +73579,367.89499999970167,-0.05576905231014977 +73580,367.89999999970166,-0.05576895770016915 +73581,367.90499999970166,-0.05576886310581956 +73582,367.90999999970165,-0.05576876852709722 +73583,367.91499999970165,-0.05576867396399834 +73584,367.91999999970164,-0.0557685794165191 +73585,367.92499999970164,-0.05576848488465575 +73586,367.92999999970164,-0.05576839036840447 +73587,367.93499999970163,-0.05576829586776148 +73588,367.9399999997016,-0.05576820138272298 +73589,367.9449999997016,-0.055768106913285195 +73590,367.9499999997016,-0.055768012459444335 +73591,367.9549999997016,-0.05576791802119661 +73592,367.9599999997016,-0.05576782359853823 +73593,367.9649999997016,-0.05576772919146541 +73594,367.9699999997016,-0.05576763479997436 +73595,367.9749999997016,-0.05576754042406131 +73596,367.9799999997016,-0.05576744606372246 +73597,367.9849999997016,-0.055767351718954035 +73598,367.9899999997016,-0.055767257389752245 +73599,367.9949999997016,-0.05576716307611332 +73600,367.9999999997016,-0.055767068778033474 +73601,368.00499999970157,-0.05576697449550892 +73602,368.00999999970156,-0.05576688022853588 +73603,368.01499999970156,-0.055766785977110586 +73604,368.01999999970155,-0.05576669174122925 +73605,368.02499999970155,-0.0557665975208881 +73606,368.02999999970154,-0.05576650331608335 +73607,368.03499999970154,-0.055766409126811224 +73608,368.03999999970154,-0.05576631495306795 +73609,368.04499999970153,-0.05576622079484976 +73610,368.0499999997015,-0.055766126652152866 +73611,368.0549999997015,-0.055766032524973495 +73612,368.0599999997015,-0.055765938413307896 +73613,368.0649999997015,-0.05576584431715227 +73614,368.0699999997015,-0.055765750236502855 +73615,368.0749999997015,-0.055765656171355885 +73616,368.0799999997015,-0.05576556212170759 +73617,368.0849999997015,-0.0557654680875542 +73618,368.0899999997015,-0.05576537406889193 +73619,368.0949999997015,-0.05576528006571702 +73620,368.0999999997015,-0.05576518607802572 +73621,368.1049999997015,-0.05576509210581425 +73622,368.1099999997015,-0.055764998149078836 +73623,368.11499999970147,-0.05576490420781572 +73624,368.11999999970146,-0.05576481028202115 +73625,368.12499999970146,-0.055764716371691336 +73626,368.12999999970145,-0.05576462247682254 +73627,368.13499999970145,-0.055764528597410976 +73628,368.13999999970144,-0.055764434733452904 +73629,368.14499999970144,-0.055764340884944544 +73630,368.14999999970144,-0.055764247051882154 +73631,368.15499999970143,-0.055764153234261954 +73632,368.1599999997014,-0.0557640594320802 +73633,368.1649999997014,-0.05576396564533313 +73634,368.1699999997014,-0.05576387187401697 +73635,368.1749999997014,-0.055763778118127987 +73636,368.1799999997014,-0.055763684377662416 +73637,368.1849999997014,-0.055763590652616504 +73638,368.1899999997014,-0.055763496942986476 +73639,368.1949999997014,-0.0557634032487686 +73640,368.1999999997014,-0.05576330956995912 +73641,368.2049999997014,-0.05576321590655428 +73642,368.2099999997014,-0.05576312225855031 +73643,368.2149999997014,-0.05576302862594349 +73644,368.2199999997014,-0.055762935008730044 +73645,368.22499999970137,-0.05576284140690623 +73646,368.22999999970136,-0.055762747820468306 +73647,368.23499999970136,-0.055762654249412506 +73648,368.23999999970135,-0.0557625606937351 +73649,368.24499999970135,-0.055762467153432325 +73650,368.24999999970134,-0.05576237362850044 +73651,368.25499999970134,-0.055762280118935706 +73652,368.25999999970134,-0.05576218662473437 +73653,368.26499999970133,-0.05576209314589269 +73654,368.2699999997013,-0.05576199968240692 +73655,368.2749999997013,-0.055761906234273316 +73656,368.2799999997013,-0.055761812801488134 +73657,368.2849999997013,-0.055761719384047635 +73658,368.2899999997013,-0.055761625981948074 +73659,368.2949999997013,-0.055761532595185716 +73660,368.2999999997013,-0.05576143922375681 +73661,368.3049999997013,-0.05576134586765762 +73662,368.3099999997013,-0.05576125252688442 +73663,368.3149999997013,-0.05576115920143346 +73664,368.3199999997013,-0.055761065891301004 +73665,368.3249999997013,-0.05576097259648333 +73666,368.3299999997013,-0.05576087931697669 +73667,368.33499999970127,-0.05576078605277734 +73668,368.33999999970126,-0.05576069280388154 +73669,368.34499999970126,-0.05576059957028558 +73670,368.34999999970125,-0.05576050635198571 +73671,368.35499999970125,-0.05576041314897822 +73672,368.35999999970124,-0.055760319961259346 +73673,368.36499999970124,-0.055760226788825376 +73674,368.36999999970124,-0.05576013363167257 +73675,368.37499999970123,-0.05576004048979722 +73676,368.3799999997012,-0.05575994736319557 +73677,368.3849999997012,-0.0557598542518639 +73678,368.3899999997012,-0.05575976115579849 +73679,368.3949999997012,-0.055759668074995605 +73680,368.3999999997012,-0.05575957500945152 +73681,368.4049999997012,-0.05575948195916251 +73682,368.4099999997012,-0.05575938892412485 +73683,368.4149999997012,-0.05575929590433482 +73684,368.4199999997012,-0.05575920289978869 +73685,368.4249999997012,-0.05575910991048274 +73686,368.4299999997012,-0.05575901693641323 +73687,368.4349999997012,-0.05575892397757647 +73688,368.4399999997012,-0.05575883103396872 +73689,368.44499999970117,-0.055758738105586264 +73690,368.44999999970116,-0.05575864519242538 +73691,368.45499999970116,-0.055758552294482344 +73692,368.45999999970115,-0.05575845941175345 +73693,368.46499999970115,-0.05575836654423497 +73694,368.46999999970114,-0.055758273691923196 +73695,368.47499999970114,-0.05575818085481441 +73696,368.47999999970114,-0.0557580880329049 +73697,368.48499999970113,-0.05575799522619093 +73698,368.4899999997011,-0.055757902434668806 +73699,368.4949999997011,-0.05575780965833481 +73700,368.4999999997011,-0.05575771689718522 +73701,368.5049999997011,-0.05575762415121634 +73702,368.5099999997011,-0.055757531420424444 +73703,368.5149999997011,-0.05575743870480584 +73704,368.5199999997011,-0.05575734600435679 +73705,368.5249999997011,-0.055757253319073614 +73706,368.5299999997011,-0.05575716064895258 +73707,368.5349999997011,-0.055757067993989995 +73708,368.5399999997011,-0.05575697535418215 +73709,368.5449999997011,-0.05575688272952533 +73710,368.5499999997011,-0.05575679012001584 +73711,368.55499999970107,-0.055756697525649955 +73712,368.55999999970106,-0.05575660494642399 +73713,368.56499999970106,-0.055756512382334235 +73714,368.56999999970105,-0.05575641983337698 +73715,368.57499999970105,-0.05575632729954853 +73716,368.57999999970104,-0.055756234780845175 +73717,368.58499999970104,-0.05575614227726322 +73718,368.58999999970104,-0.05575604978879898 +73719,368.59499999970103,-0.055755957315448725 +73720,368.599999999701,-0.055755864857208765 +73721,368.604999999701,-0.05575577241407541 +73722,368.609999999701,-0.055755679986044956 +73723,368.614999999701,-0.055755587573113705 +73724,368.619999999701,-0.05575549517527796 +73725,368.624999999701,-0.05575540279253403 +73726,368.629999999701,-0.05575531042487822 +73727,368.634999999701,-0.055755218072306836 +73728,368.639999999701,-0.055755125734816176 +73729,368.644999999701,-0.05575503341240255 +73730,368.649999999701,-0.055754941105062274 +73731,368.654999999701,-0.05575484881279165 +73732,368.659999999701,-0.05575475653558698 +73733,368.66499999970097,-0.055754664273444575 +73734,368.66999999970096,-0.05575457202636076 +73735,368.67499999970096,-0.05575447979433183 +73736,368.67999999970095,-0.05575438757735411 +73737,368.68499999970095,-0.055754295375423896 +73738,368.68999999970094,-0.0557542031885375 +73739,368.69499999970094,-0.055754111016691255 +73740,368.69999999970094,-0.055754018859881474 +73741,368.70499999970093,-0.05575392671810445 +73742,368.7099999997009,-0.05575383459135652 +73743,368.7149999997009,-0.05575374247963399 +73744,368.7199999997009,-0.05575365038293317 +73745,368.7249999997009,-0.055753558301250394 +73746,368.7299999997009,-0.055753466234581966 +73747,368.7349999997009,-0.055753374182924205 +73748,368.7399999997009,-0.05575328214627345 +73749,368.7449999997009,-0.055753190124626005 +73750,368.7499999997009,-0.055753098117978184 +73751,368.7549999997009,-0.055753006126326325 +73752,368.7599999997009,-0.05575291414966674 +73753,368.7649999997009,-0.05575282218799575 +73754,368.7699999997009,-0.055752730241309695 +73755,368.77499999970087,-0.05575263830960488 +73756,368.77999999970086,-0.05575254639287763 +73757,368.78499999970086,-0.0557524544911243 +73758,368.78999999970085,-0.05575236260434119 +73759,368.79499999970085,-0.055752270732524624 +73760,368.79999999970084,-0.05575217887567094 +73761,368.80499999970084,-0.055752087033776467 +73762,368.80999999970084,-0.055751995206837525 +73763,368.81499999970083,-0.05575190339485044 +73764,368.8199999997008,-0.05575181159781157 +73765,368.8249999997008,-0.05575171981571722 +73766,368.8299999997008,-0.055751628048563734 +73767,368.8349999997008,-0.05575153629634744 +73768,368.8399999997008,-0.05575144455906467 +73769,368.8449999997008,-0.05575135283671176 +73770,368.8499999997008,-0.055751261129285044 +73771,368.8549999997008,-0.05575116943678086 +73772,368.8599999997008,-0.05575107775919553 +73773,368.8649999997008,-0.055750986096525394 +73774,368.8699999997008,-0.055750894448766804 +73775,368.8749999997008,-0.05575080281591609 +73776,368.8799999997008,-0.055750711197969594 +73777,368.88499999970077,-0.055750619594923646 +73778,368.88999999970076,-0.05575052800677459 +73779,368.89499999970076,-0.055750436433518756 +73780,368.89999999970075,-0.055750344875152506 +73781,368.90499999970075,-0.05575025333167217 +73782,368.90999999970074,-0.05575016180307409 +73783,368.91499999970074,-0.05575007028935461 +73784,368.91999999970074,-0.05574997879051007 +73785,368.92499999970073,-0.05574988730653682 +73786,368.9299999997007,-0.055749795837431206 +73787,368.9349999997007,-0.05574970438318958 +73788,368.9399999997007,-0.05574961294380827 +73789,368.9449999997007,-0.05574952151928363 +73790,368.9499999997007,-0.05574943010961202 +73791,368.9549999997007,-0.05574933871478977 +73792,368.9599999997007,-0.05574924733481325 +73793,368.9649999997007,-0.0557491559696788 +73794,368.9699999997007,-0.055749064619382754 +73795,368.9749999997007,-0.05574897328392149 +73796,368.9799999997007,-0.05574888196329134 +73797,368.9849999997007,-0.05574879065748867 +73798,368.9899999997007,-0.05574869936650983 +73799,368.99499999970067,-0.055748608090351155 +73800,368.99999999970066,-0.05574851682900902 +73801,369.00499999970066,-0.055748425582479784 +73802,369.00999999970065,-0.05574833435075979 +73803,369.01499999970065,-0.055748243133845396 +73804,369.01999999970064,-0.055748151931732964 +73805,369.02499999970064,-0.055748060744418855 +73806,369.02999999970064,-0.055747969571899404 +73807,369.03499999970063,-0.055747878414171 +73808,369.0399999997006,-0.05574778727122998 +73809,369.0449999997006,-0.055747696143072734 +73810,369.0499999997006,-0.05574760502969559 +73811,369.0549999997006,-0.05574751393109493 +73812,369.0599999997006,-0.0557474228472671 +73813,369.0649999997006,-0.055747331778208474 +73814,369.0699999997006,-0.055747240723915424 +73815,369.0749999997006,-0.055747149684384295 +73816,369.0799999997006,-0.05574705865961147 +73817,369.0849999997006,-0.055746967649593304 +73818,369.0899999997006,-0.05574687665432617 +73819,369.0949999997006,-0.05574678567380643 +73820,369.0999999997006,-0.05574669470803046 +73821,369.10499999970057,-0.05574660375699462 +73822,369.10999999970056,-0.055746512820695274 +73823,369.11499999970056,-0.055746421899128804 +73824,369.11999999970055,-0.05574633099229158 +73825,369.12499999970055,-0.055746240100179964 +73826,369.12999999970054,-0.05574614922279032 +73827,369.13499999970054,-0.055746058360119054 +73828,369.13999999970054,-0.05574596751216251 +73829,369.14499999970053,-0.055745876678917075 +73830,369.1499999997005,-0.0557457858603791 +73831,369.1549999997005,-0.05574569505654499 +73832,369.1599999997005,-0.05574560426741111 +73833,369.1649999997005,-0.05574551349297383 +73834,369.1699999997005,-0.055745422733229535 +73835,369.1749999997005,-0.0557453319881746 +73836,369.1799999997005,-0.0557452412578054 +73837,369.1849999997005,-0.05574515054211832 +73838,369.1899999997005,-0.05574505984110974 +73839,369.1949999997005,-0.05574496915477603 +73840,369.1999999997005,-0.05574487848311358 +73841,369.2049999997005,-0.05574478782611878 +73842,369.20999999970047,-0.055744697183787995 +73843,369.21499999970047,-0.05574460655611762 +73844,369.21999999970046,-0.055744515943104034 +73845,369.22499999970046,-0.05574442534474362 +73846,369.22999999970045,-0.055744334761032764 +73847,369.23499999970045,-0.05574424419196785 +73848,369.23999999970044,-0.05574415363754527 +73849,369.24499999970044,-0.0557440630977614 +73850,369.24999999970044,-0.055743972572612634 +73851,369.25499999970043,-0.055743882062095365 +73852,369.2599999997004,-0.055743791566205986 +73853,369.2649999997004,-0.05574370108494088 +73854,369.2699999997004,-0.055743610618296434 +73855,369.2749999997004,-0.05574352016626904 +73856,369.2799999997004,-0.05574342972885509 +73857,369.2849999997004,-0.055743339306050986 +73858,369.2899999997004,-0.05574324889785311 +73859,369.2949999997004,-0.05574315850425785 +73860,369.2999999997004,-0.05574306812526161 +73861,369.3049999997004,-0.0557429777608608 +73862,369.3099999997004,-0.05574288741105178 +73863,369.3149999997004,-0.05574279707583098 +73864,369.31999999970037,-0.05574270675519478 +73865,369.32499999970037,-0.05574261644913956 +73866,369.32999999970036,-0.05574252615766176 +73867,369.33499999970036,-0.05574243588075774 +73868,369.33999999970035,-0.05574234561842393 +73869,369.34499999970035,-0.05574225537065671 +73870,369.34999999970034,-0.05574216513745249 +73871,369.35499999970034,-0.055742074918807664 +73872,369.35999999970034,-0.05574198471471864 +73873,369.36499999970033,-0.05574189452518182 +73874,369.3699999997003,-0.055741804350193616 +73875,369.3749999997003,-0.05574171418975043 +73876,369.3799999997003,-0.055741624043848643 +73877,369.3849999997003,-0.05574153391248469 +73878,369.3899999997003,-0.05574144379565496 +73879,369.3949999997003,-0.055741353693355866 +73880,369.3999999997003,-0.05574126360558381 +73881,369.4049999997003,-0.05574117353233521 +73882,369.4099999997003,-0.055741083473606484 +73883,369.4149999997003,-0.05574099342939401 +73884,369.4199999997003,-0.05574090339969422 +73885,369.4249999997003,-0.055740813384503526 +73886,369.42999999970027,-0.05574072338381834 +73887,369.43499999970027,-0.055740633397635055 +73888,369.43999999970026,-0.0557405434259501 +73889,369.44499999970026,-0.05574045346875988 +73890,369.44999999970025,-0.05574036352606082 +73891,369.45499999970025,-0.055740273597849326 +73892,369.45999999970024,-0.05574018368412182 +73893,369.46499999970024,-0.05574009378487472 +73894,369.46999999970024,-0.055740003900104425 +73895,369.47499999970023,-0.055739914029807366 +73896,369.4799999997002,-0.05573982417397997 +73897,369.4849999997002,-0.05573973433261864 +73898,369.4899999997002,-0.0557396445057198 +73899,369.4949999997002,-0.055739554693279875 +73900,369.4999999997002,-0.05573946489529527 +73901,369.5049999997002,-0.055739375111762426 +73902,369.5099999997002,-0.05573928534267776 +73903,369.5149999997002,-0.055739195588037686 +73904,369.5199999997002,-0.05573910584783863 +73905,369.5249999997002,-0.05573901612207702 +73906,369.5299999997002,-0.055738926410749276 +73907,369.5349999997002,-0.055738836713851825 +73908,369.53999999970017,-0.0557387470313811 +73909,369.54499999970017,-0.05573865736333352 +73910,369.54999999970016,-0.055738567709705505 +73911,369.55499999970016,-0.0557384780704935 +73912,369.55999999970015,-0.05573838844569393 +73913,369.56499999970015,-0.055738298835303214 +73914,369.56999999970014,-0.055738209239317785 +73915,369.57499999970014,-0.05573811965773408 +73916,369.57999999970014,-0.05573803009054852 +73917,369.58499999970013,-0.055737940537757553 +73918,369.5899999997001,-0.05573785099935759 +73919,369.5949999997001,-0.05573776147534508 +73920,369.5999999997001,-0.05573767196571646 +73921,369.6049999997001,-0.055737582470468144 +73922,369.6099999997001,-0.05573749298959658 +73923,369.6149999997001,-0.05573740352309821 +73924,369.6199999997001,-0.05573731407096946 +73925,369.6249999997001,-0.05573722463320677 +73926,369.6299999997001,-0.05573713520980658 +73927,369.6349999997001,-0.05573704580076533 +73928,369.6399999997001,-0.05573695640607946 +73929,369.6449999997001,-0.0557368670257454 +73930,369.64999999970007,-0.05573677765975958 +73931,369.65499999970007,-0.055736688308118475 +73932,369.65999999970006,-0.05573659897081851 +73933,369.66499999970006,-0.05573650964785611 +73934,369.66999999970005,-0.05573642033922774 +73935,369.67499999970005,-0.05573633104492983 +73936,369.67999999970004,-0.05573624176495884 +73937,369.68499999970004,-0.0557361524993112 +73938,369.68999999970004,-0.055736063247983365 +73939,369.69499999970003,-0.05573597401097179 +73940,369.6999999997,-0.0557358847882729 +73941,369.7049999997,-0.055735795579883146 +73942,369.7099999997,-0.05573570638579899 +73943,369.7149999997,-0.05573561720601687 +73944,369.7199999997,-0.05573552804053324 +73945,369.7249999997,-0.055735438889344555 +73946,369.7299999997,-0.05573534975244725 +73947,369.7349999997,-0.055735260629837795 +73948,369.7399999997,-0.055735171521512625 +73949,369.7449999997,-0.0557350824274682 +73950,369.7499999997,-0.05573499334770098 +73951,369.7549999997,-0.05573490428220741 +73952,369.75999999969997,-0.055734815230983954 +73953,369.76499999969997,-0.055734726194027064 +73954,369.76999999969996,-0.05573463717133318 +73955,369.77499999969996,-0.05573454816289878 +73956,369.77999999969995,-0.05573445916872031 +73957,369.78499999969995,-0.05573437018879423 +73958,369.78999999969994,-0.055734281223116994 +73959,369.79499999969994,-0.05573419227168508 +73960,369.79999999969993,-0.05573410333449492 +73961,369.80499999969993,-0.055734014411543 +73962,369.8099999996999,-0.05573392550282577 +73963,369.8149999996999,-0.055733836608339686 +73964,369.8199999996999,-0.055733747728081214 +73965,369.8249999996999,-0.05573365886204682 +73966,369.8299999996999,-0.055733570010232984 +73967,369.8349999996999,-0.055733481172636136 +73968,369.8399999996999,-0.055733392349252765 +73969,369.8449999996999,-0.05573330354007933 +73970,369.8499999996999,-0.05573321474511231 +73971,369.8549999996999,-0.05573312596434815 +73972,369.8599999996999,-0.05573303719778332 +73973,369.8649999996999,-0.05573294844541429 +73974,369.86999999969987,-0.055732859707237556 +73975,369.87499999969987,-0.05573277098324955 +73976,369.87999999969986,-0.05573268227344677 +73977,369.88499999969986,-0.055732593577825666 +73978,369.88999999969985,-0.055732504896382734 +73979,369.89499999969985,-0.05573241622911442 +73980,369.89999999969984,-0.05573232757601721 +73981,369.90499999969984,-0.055732238937087585 +73982,369.90999999969983,-0.05573215031232201 +73983,369.91499999969983,-0.05573206170171695 +73984,369.9199999996998,-0.055731973105268895 +73985,369.9249999996998,-0.05573188452297431 +73986,369.9299999996998,-0.055731795954829695 +73987,369.9349999996998,-0.0557317074008315 +73988,369.9399999996998,-0.05573161886097621 +73989,369.9449999996998,-0.05573153033526032 +73990,369.9499999996998,-0.05573144182368028 +73991,369.9549999996998,-0.05573135332623261 +73992,369.9599999996998,-0.05573126484291375 +73993,369.9649999996998,-0.0557311763737202 +73994,369.9699999996998,-0.05573108791864844 +73995,369.9749999996998,-0.05573099947769495 +73996,369.97999999969977,-0.05573091105085622 +73997,369.98499999969977,-0.05573082263812873 +73998,369.98999999969976,-0.055730734239508965 +73999,369.99499999969976,-0.05573064585499341 +74000,369.99999999969975,-0.05573055748457856 +74001,370.00499999969975,-0.05573046912826088 +74002,370.00999999969974,-0.05573038078603688 +74003,370.01499999969974,-0.055730292457903036 +74004,370.01999999969973,-0.05573020414385583 +74005,370.02499999969973,-0.055730115843891766 +74006,370.0299999996997,-0.05573002755800732 +74007,370.0349999996997,-0.055729939286199 +74008,370.0399999996997,-0.05572985102846328 +74009,370.0449999996997,-0.055729762784796646 +74010,370.0499999996997,-0.05572967455519562 +74011,370.0549999996997,-0.05572958633965666 +74012,370.0599999996997,-0.055729498138176285 +74013,370.0649999996997,-0.05572940995075098 +74014,370.0699999996997,-0.05572932177737724 +74015,370.0749999996997,-0.055729233618051564 +74016,370.0799999996997,-0.05572914547277044 +74017,370.0849999996997,-0.05572905734153038 +74018,370.08999999969967,-0.05572896922432786 +74019,370.09499999969967,-0.05572888112115939 +74020,370.09999999969966,-0.055728793032021474 +74021,370.10499999969966,-0.0557287049569106 +74022,370.10999999969965,-0.05572861689582328 +74023,370.11499999969965,-0.055728528848756 +74024,370.11999999969964,-0.05572844081570527 +74025,370.12499999969964,-0.055728352796667595 +74026,370.12999999969963,-0.055728264791639476 +74027,370.13499999969963,-0.0557281768006174 +74028,370.1399999996996,-0.0557280888235979 +74029,370.1449999996996,-0.05572800086057747 +74030,370.1499999996996,-0.055727912911552595 +74031,370.1549999996996,-0.0557278249765198 +74032,370.1599999996996,-0.05572773705547559 +74033,370.1649999996996,-0.055727649148416464 +74034,370.1699999996996,-0.05572756125533894 +74035,370.1749999996996,-0.05572747337623953 +74036,370.1799999996996,-0.05572738551111473 +74037,370.1849999996996,-0.05572729765996105 +74038,370.1899999996996,-0.05572720982277501 +74039,370.1949999996996,-0.05572712199955312 +74040,370.19999999969957,-0.05572703419029189 +74041,370.20499999969957,-0.05572694639498782 +74042,370.20999999969956,-0.05572685861363744 +74043,370.21499999969956,-0.05572677084623724 +74044,370.21999999969955,-0.05572668309278377 +74045,370.22499999969955,-0.055726595353273525 +74046,370.22999999969954,-0.055726507627703016 +74047,370.23499999969954,-0.05572641991606876 +74048,370.23999999969953,-0.05572633221836728 +74049,370.24499999969953,-0.055726244534595085 +74050,370.2499999996995,-0.0557261568647487 +74051,370.2549999996995,-0.055726069208824655 +74052,370.2599999996995,-0.055725981566819446 +74053,370.2649999996995,-0.0557258939387296 +74054,370.2699999996995,-0.055725806324551645 +74055,370.2749999996995,-0.05572571872428211 +74056,370.2799999996995,-0.05572563113791749 +74057,370.2849999996995,-0.05572554356545433 +74058,370.2899999996995,-0.05572545600688915 +74059,370.2949999996995,-0.055725368462218455 +74060,370.2999999996995,-0.05572528093143879 +74061,370.3049999996995,-0.05572519341454668 +74062,370.30999999969947,-0.05572510591153865 +74063,370.31499999969947,-0.05572501842241121 +74064,370.31999999969946,-0.055724930947160904 +74065,370.32499999969946,-0.05572484348578425 +74066,370.32999999969945,-0.05572475603827778 +74067,370.33499999969945,-0.055724668604638025 +74068,370.33999999969944,-0.055724581184861524 +74069,370.34499999969944,-0.05572449377894478 +74070,370.34999999969943,-0.05572440638688434 +74071,370.35499999969943,-0.05572431900867675 +74072,370.3599999996994,-0.05572423164431851 +74073,370.3649999996994,-0.05572414429380618 +74074,370.3699999996994,-0.055724056957136274 +74075,370.3749999996994,-0.055723969634305336 +74076,370.3799999996994,-0.0557238823253099 +74077,370.3849999996994,-0.0557237950301465 +74078,370.3899999996994,-0.05572370774881169 +74079,370.3949999996994,-0.05572362048130198 +74080,370.3999999996994,-0.05572353322761391 +74081,370.4049999996994,-0.05572344598774403 +74082,370.4099999996994,-0.05572335876168887 +74083,370.4149999996994,-0.05572327154944497 +74084,370.41999999969937,-0.055723184351008884 +74085,370.42499999969937,-0.055723097166377134 +74086,370.42999999969936,-0.05572300999554627 +74087,370.43499999969936,-0.05572292283851283 +74088,370.43999999969935,-0.055722835695273365 +74089,370.44499999969935,-0.055722748565824404 +74090,370.44999999969934,-0.05572266145016249 +74091,370.45499999969934,-0.05572257434828418 +74092,370.45999999969933,-0.05572248726018601 +74093,370.46499999969933,-0.055722400185864544 +74094,370.4699999996993,-0.05572231312531631 +74095,370.4749999996993,-0.05572222607853784 +74096,370.4799999996993,-0.05572213904552571 +74097,370.4849999996993,-0.05572205202627646 +74098,370.4899999996993,-0.05572196502078663 +74099,370.4949999996993,-0.05572187802905278 +74100,370.4999999996993,-0.05572179105107145 +74101,370.5049999996993,-0.0557217040868392 +74102,370.5099999996993,-0.05572161713635256 +74103,370.5149999996993,-0.05572153019960811 +74104,370.5199999996993,-0.05572144327660239 +74105,370.5249999996993,-0.05572135636733195 +74106,370.52999999969927,-0.05572126947179335 +74107,370.53499999969927,-0.05572118258998315 +74108,370.53999999969926,-0.05572109572189788 +74109,370.54499999969926,-0.05572100886753412 +74110,370.54999999969925,-0.055720922026888435 +74111,370.55499999969925,-0.05572083519995735 +74112,370.55999999969924,-0.05572074838673744 +74113,370.56499999969924,-0.055720661587225266 +74114,370.56999999969923,-0.055720574801417386 +74115,370.57499999969923,-0.05572048802931036 +74116,370.5799999996992,-0.055720401270900735 +74117,370.5849999996992,-0.055720314526185095 +74118,370.5899999996992,-0.05572022779515997 +74119,370.5949999996992,-0.05572014107782195 +74120,370.5999999996992,-0.05572005437416759 +74121,370.6049999996992,-0.05571996768419345 +74122,370.6099999996992,-0.05571988100789609 +74123,370.6149999996992,-0.05571979434527208 +74124,370.6199999996992,-0.05571970769631798 +74125,370.6249999996992,-0.055719621061030365 +74126,370.6299999996992,-0.05571953443940579 +74127,370.6349999996992,-0.05571944783144083 +74128,370.63999999969917,-0.055719361237132066 +74129,370.64499999969917,-0.055719274656476046 +74130,370.64999999969916,-0.055719188089469344 +74131,370.65499999969916,-0.055719101536108526 +74132,370.65999999969915,-0.055719014996390176 +74133,370.66499999969915,-0.05571892847031085 +74134,370.66999999969914,-0.05571884195786712 +74135,370.67499999969914,-0.05571875545905556 +74136,370.67999999969913,-0.05571866897387275 +74137,370.68499999969913,-0.05571858250231526 +74138,370.6899999996991,-0.055718496044379666 +74139,370.6949999996991,-0.05571840960006253 +74140,370.6999999996991,-0.05571832316936045 +74141,370.7049999996991,-0.05571823675226997 +74142,370.7099999996991,-0.0557181503487877 +74143,370.7149999996991,-0.055718063958910206 +74144,370.7199999996991,-0.05571797758263406 +74145,370.7249999996991,-0.055717891219955844 +74146,370.7299999996991,-0.05571780487087215 +74147,370.7349999996991,-0.05571771853537952 +74148,370.7399999996991,-0.055717632213474574 +74149,370.7449999996991,-0.05571754590515387 +74150,370.74999999969907,-0.055717459610414 +74151,370.75499999969907,-0.05571737332925154 +74152,370.75999999969906,-0.05571728706166309 +74153,370.76499999969906,-0.0557172008076452 +74154,370.76999999969905,-0.055717114567194484 +74155,370.77499999969905,-0.05571702834030752 +74156,370.77999999969904,-0.05571694212698088 +74157,370.78499999969904,-0.05571685592721117 +74158,370.78999999969903,-0.055716769740994966 +74159,370.79499999969903,-0.055716683568328845 +74160,370.799999999699,-0.055716597409209416 +74161,370.804999999699,-0.05571651126363325 +74162,370.809999999699,-0.05571642513159695 +74163,370.814999999699,-0.055716339013097096 +74164,370.819999999699,-0.05571625290813029 +74165,370.824999999699,-0.05571616681669312 +74166,370.829999999699,-0.05571608073878217 +74167,370.834999999699,-0.055715994674394025 +74168,370.839999999699,-0.055715908623525295 +74169,370.844999999699,-0.05571582258617257 +74170,370.849999999699,-0.05571573656233244 +74171,370.854999999699,-0.055715650552001506 +74172,370.85999999969897,-0.05571556455517636 +74173,370.86499999969897,-0.055715478571853584 +74174,370.86999999969896,-0.0557153926020298 +74175,370.87499999969896,-0.055715306645701575 +74176,370.87999999969895,-0.05571522070286554 +74177,370.88499999969895,-0.05571513477351828 +74178,370.88999999969894,-0.05571504885765639 +74179,370.89499999969894,-0.05571496295527646 +74180,370.89999999969893,-0.05571487706637511 +74181,370.90499999969893,-0.055714791190948944 +74182,370.9099999996989,-0.05571470532899454 +74183,370.9149999996989,-0.05571461948050852 +74184,370.9199999996989,-0.05571453364548748 +74185,370.9249999996989,-0.05571444782392803 +74186,370.9299999996989,-0.05571436201582677 +74187,370.9349999996989,-0.0557142762211803 +74188,370.9399999996989,-0.05571419043998523 +74189,370.9449999996989,-0.05571410467223817 +74190,370.9499999996989,-0.05571401891793572 +74191,370.9549999996989,-0.055713933177074494 +74192,370.9599999996989,-0.0557138474496511 +74193,370.9649999996989,-0.055713761735662136 +74194,370.96999999969887,-0.055713676035104215 +74195,370.97499999969887,-0.05571359034797396 +74196,370.97999999969886,-0.055713504674267965 +74197,370.98499999969886,-0.05571341901398286 +74198,370.98999999969885,-0.05571333336711524 +74199,370.99499999969885,-0.055713247733661715 +74200,370.99999999969884,-0.05571316211361891 +74201,371.00499999969884,-0.05571307650698343 +74202,371.00999999969883,-0.0557129909137519 +74203,371.01499999969883,-0.05571290533392092 +74204,371.0199999996988,-0.05571281976748712 +74205,371.0249999996988,-0.05571273421444711 +74206,371.0299999996988,-0.055712648674797506 +74207,371.0349999996988,-0.05571256314853493 +74208,371.0399999996988,-0.05571247763565599 +74209,371.0449999996988,-0.05571239213615731 +74210,371.0499999996988,-0.055712306650035515 +74211,371.0549999996988,-0.05571222117728722 +74212,371.0599999996988,-0.05571213571790905 +74213,371.0649999996988,-0.05571205027189761 +74214,371.0699999996988,-0.05571196483924955 +74215,371.0749999996988,-0.05571187941996147 +74216,371.07999999969877,-0.055711794014029994 +74217,371.08499999969877,-0.05571170862145175 +74218,371.08999999969876,-0.05571162324222337 +74219,371.09499999969876,-0.05571153787634147 +74220,371.09999999969875,-0.055711452523802676 +74221,371.10499999969875,-0.055711367184603615 +74222,371.10999999969874,-0.05571128185874092 +74223,371.11499999969874,-0.05571119654621121 +74224,371.11999999969873,-0.05571111124701112 +74225,371.12499999969873,-0.05571102596113727 +74226,371.1299999996987,-0.05571094068858629 +74227,371.1349999996987,-0.055710855429354826 +74228,371.1399999996987,-0.05571077018343949 +74229,371.1449999996987,-0.05571068495083692 +74230,371.1499999996987,-0.055710599731543756 +74231,371.1549999996987,-0.05571051452555662 +74232,371.1599999996987,-0.05571042933287214 +74233,371.1649999996987,-0.05571034415348696 +74234,371.1699999996987,-0.05571025898739771 +74235,371.1749999996987,-0.055710173834601036 +74236,371.1799999996987,-0.055710088695093564 +74237,371.1849999996987,-0.05571000356887193 +74238,371.18999999969867,-0.05570991845593277 +74239,371.19499999969867,-0.05570983335627271 +74240,371.19999999969866,-0.05570974826988841 +74241,371.20499999969866,-0.05570966319677649 +74242,371.20999999969865,-0.0557095781369336 +74243,371.21499999969865,-0.05570949309035639 +74244,371.21999999969864,-0.055709408057041485 +74245,371.22499999969864,-0.055709323036985524 +74246,371.22999999969863,-0.05570923803018516 +74247,371.23499999969863,-0.05570915303663704 +74248,371.2399999996986,-0.05570906805633777 +74249,371.2449999996986,-0.055708983089284035 +74250,371.2499999996986,-0.055708898135472466 +74251,371.2549999996986,-0.0557088131948997 +74252,371.2599999996986,-0.055708728267562395 +74253,371.2649999996986,-0.05570864335345719 +74254,371.2699999996986,-0.055708558452580735 +74255,371.2749999996986,-0.055708473564929674 +74256,371.2799999996986,-0.055708388690500654 +74257,371.2849999996986,-0.05570830382929033 +74258,371.2899999996986,-0.05570821898129535 +74259,371.2949999996986,-0.05570813414651235 +74260,371.29999999969857,-0.055708049324938 +74261,371.30499999969857,-0.05570796451656894 +74262,371.30999999969856,-0.05570787972140182 +74263,371.31499999969856,-0.0557077949394333 +74264,371.31999999969855,-0.05570771017066002 +74265,371.32499999969855,-0.055707625415078656 +74266,371.32999999969854,-0.05570754067268584 +74267,371.33499999969854,-0.055707455943478236 +74268,371.33999999969853,-0.055707371227452514 +74269,371.34499999969853,-0.05570728652460531 +74270,371.3499999996985,-0.05570720183493329 +74271,371.3549999996985,-0.055707117158433093 +74272,371.3599999996985,-0.0557070324951014 +74273,371.3649999996985,-0.05570694784493486 +74274,371.3699999996985,-0.05570686320793013 +74275,371.3749999996985,-0.05570677858408386 +74276,371.3799999996985,-0.05570669397339275 +74277,371.3849999996985,-0.05570660937585342 +74278,371.3899999996985,-0.05570652479146254 +74279,371.3949999996985,-0.05570644022021679 +74280,371.3999999996985,-0.055706355662112815 +74281,371.4049999996985,-0.05570627111714728 +74282,371.40999999969847,-0.055706186585316855 +74283,371.41499999969847,-0.055706102066618204 +74284,371.41999999969846,-0.05570601756104799 +74285,371.42499999969846,-0.05570593306860287 +74286,371.42999999969845,-0.055705848589279544 +74287,371.43499999969845,-0.055705764123074646 +74288,371.43999999969844,-0.055705679669984846 +74289,371.44499999969844,-0.05570559523000682 +74290,371.44999999969843,-0.055705510803137244 +74291,371.45499999969843,-0.05570542638937278 +74292,371.4599999996984,-0.05570534198871009 +74293,371.4649999996984,-0.05570525760114586 +74294,371.4699999996984,-0.05570517322667675 +74295,371.4749999996984,-0.05570508886529944 +74296,371.4799999996984,-0.05570500451701061 +74297,371.4849999996984,-0.055704920181806915 +74298,371.4899999996984,-0.05570483585968503 +74299,371.4949999996984,-0.05570475155064165 +74300,371.4999999996984,-0.05570466725467343 +74301,371.5049999996984,-0.05570458297177704 +74302,371.5099999996984,-0.05570449870194919 +74303,371.5149999996984,-0.05570441444518653 +74304,371.51999999969837,-0.05570433020148575 +74305,371.52499999969837,-0.055704245970843516 +74306,371.52999999969836,-0.055704161753256515 +74307,371.53499999969836,-0.05570407754872141 +74308,371.53999999969835,-0.05570399335723491 +74309,371.54499999969835,-0.055703909178793684 +74310,371.54999999969834,-0.055703825013394395 +74311,371.55499999969834,-0.05570374086103375 +74312,371.55999999969833,-0.055703656721708426 +74313,371.56499999969833,-0.0557035725954151 +74314,371.5699999996983,-0.05570348848215045 +74315,371.5749999996983,-0.055703404381911174 +74316,371.5799999996983,-0.05570332029469395 +74317,371.5849999996983,-0.05570323622049547 +74318,371.5899999996983,-0.05570315215931241 +74319,371.5949999996983,-0.055703068111141466 +74320,371.5999999996983,-0.05570298407597932 +74321,371.6049999996983,-0.05570290005382266 +74322,371.6099999996983,-0.05570281604466818 +74323,371.6149999996983,-0.055702732048512574 +74324,371.6199999996983,-0.05570264806535252 +74325,371.6249999996983,-0.05570256409518471 +74326,371.62999999969827,-0.05570248013800584 +74327,371.63499999969827,-0.05570239619381259 +74328,371.63999999969826,-0.055702312262601666 +74329,371.64499999969826,-0.05570222834436976 +74330,371.64999999969825,-0.05570214443911357 +74331,371.65499999969825,-0.055702060546829774 +74332,371.65999999969824,-0.05570197666751507 +74333,371.66499999969824,-0.05570189280116617 +74334,371.66999999969823,-0.055701808947779756 +74335,371.67499999969823,-0.05570172510735253 +74336,371.6799999996982,-0.05570164127988119 +74337,371.6849999996982,-0.05570155746536243 +74338,371.6899999996982,-0.05570147366379294 +74339,371.6949999996982,-0.05570138987516943 +74340,371.6999999996982,-0.055701306099488604 +74341,371.7049999996982,-0.05570122233674715 +74342,371.7099999996982,-0.055701138586941784 +74343,371.7149999996982,-0.0557010548500692 +74344,371.7199999996982,-0.05570097112612609 +74345,371.7249999996982,-0.05570088741510918 +74346,371.7299999996982,-0.05570080371701515 +74347,371.7349999996982,-0.05570072003184072 +74348,371.73999999969817,-0.05570063635958258 +74349,371.74499999969817,-0.05570055270023744 +74350,371.74999999969816,-0.055700469053802014 +74351,371.75499999969816,-0.05570038542027301 +74352,371.75999999969815,-0.05570030179964712 +74353,371.76499999969815,-0.055700218191921065 +74354,371.76999999969814,-0.05570013459709156 +74355,371.77499999969814,-0.055700051015155294 +74356,371.77999999969813,-0.055699967446108986 +74357,371.78499999969813,-0.05569988388994935 +74358,371.7899999996981,-0.05569980034667309 +74359,371.7949999996981,-0.05569971681627692 +74360,371.7999999996981,-0.055699633298757545 +74361,371.8049999996981,-0.055699549794111694 +74362,371.8099999996981,-0.05569946630233606 +74363,371.8149999996981,-0.05569938282342739 +74364,371.8199999996981,-0.05569929935738236 +74365,371.8249999996981,-0.0556992159041977 +74366,371.8299999996981,-0.05569913246387013 +74367,371.8349999996981,-0.05569904903639636 +74368,371.8399999996981,-0.055698965621773115 +74369,371.8449999996981,-0.0556988822199971 +74370,371.84999999969807,-0.05569879883106505 +74371,371.85499999969807,-0.055698715454973666 +74372,371.85999999969806,-0.05569863209171969 +74373,371.86499999969806,-0.05569854874129982 +74374,371.86999999969805,-0.05569846540371077 +74375,371.87499999969805,-0.05569838207894928 +74376,371.87999999969804,-0.05569829876701208 +74377,371.88499999969804,-0.05569821546789586 +74378,371.88999999969803,-0.05569813218159737 +74379,371.89499999969803,-0.055698048908113335 +74380,371.899999999698,-0.05569796564744047 +74381,371.904999999698,-0.055697882399575495 +74382,371.909999999698,-0.05569779916451513 +74383,371.914999999698,-0.05569771594225612 +74384,371.919999999698,-0.05569763273279519 +74385,371.924999999698,-0.05569754953612905 +74386,371.929999999698,-0.05569746635225444 +74387,371.934999999698,-0.05569738318116808 +74388,371.939999999698,-0.055697300022866714 +74389,371.944999999698,-0.055697216877347064 +74390,371.949999999698,-0.05569713374460585 +74391,371.954999999698,-0.05569705062463982 +74392,371.95999999969797,-0.055696967517445684 +74393,371.96499999969797,-0.0556968844230202 +74394,371.96999999969796,-0.05569680134136009 +74395,371.97499999969796,-0.05569671827246208 +74396,371.97999999969795,-0.055696635216322905 +74397,371.98499999969795,-0.055696552172939305 +74398,371.98999999969794,-0.05569646914230802 +74399,371.99499999969794,-0.055696386124425776 +74400,371.99999999969793,-0.05569630311928931 +74401,372.00499999969793,-0.05569622012689537 +74402,372.0099999996979,-0.05569613714724068 +74403,372.0149999996979,-0.05569605418032198 +74404,372.0199999996979,-0.05569597122613601 +74405,372.0249999996979,-0.055695888284679515 +74406,372.0299999996979,-0.055695805355949236 +74407,372.0349999996979,-0.055695722439941905 +74408,372.0399999996979,-0.05569563953665427 +74409,372.0449999996979,-0.05569555664608306 +74410,372.0499999996979,-0.05569547376822504 +74411,372.0549999996979,-0.055695390903076944 +74412,372.0599999996979,-0.0556953080506355 +74413,372.0649999996979,-0.055695225210897474 +74414,372.06999999969787,-0.05569514238385961 +74415,372.07499999969787,-0.05569505956951862 +74416,372.07999999969786,-0.05569497676787128 +74417,372.08499999969786,-0.05569489397891434 +74418,372.08999999969785,-0.05569481120264453 +74419,372.09499999969785,-0.05569472843905861 +74420,372.09999999969784,-0.055694645688153334 +74421,372.10499999969784,-0.055694562949925426 +74422,372.10999999969783,-0.05569448022437166 +74423,372.11499999969783,-0.055694397511488775 +74424,372.1199999996978,-0.05569431481127353 +74425,372.1249999996978,-0.055694232123722674 +74426,372.1299999996978,-0.05569414944883295 +74427,372.1349999996978,-0.05569406678660111 +74428,372.1399999996978,-0.05569398413702392 +74429,372.1449999996978,-0.05569390150009812 +74430,372.1499999996978,-0.055693818875820485 +74431,372.1549999996978,-0.05569373626418775 +74432,372.1599999996978,-0.05569365366519668 +74433,372.1649999996978,-0.05569357107884403 +74434,372.1699999996978,-0.05569348850512655 +74435,372.1749999996978,-0.055693405944041006 +74436,372.17999999969777,-0.05569332339558416 +74437,372.18499999969777,-0.05569324085975277 +74438,372.18999999969776,-0.05569315833654358 +74439,372.19499999969776,-0.055693075825953356 +74440,372.19999999969775,-0.05569299332797887 +74441,372.20499999969775,-0.05569291084261687 +74442,372.20999999969774,-0.05569282836986412 +74443,372.21499999969774,-0.05569274590971739 +74444,372.21999999969773,-0.05569266346217343 +74445,372.22499999969773,-0.05569258102722901 +74446,372.2299999996977,-0.05569249860488091 +74447,372.2349999996977,-0.055692416195125875 +74448,372.2399999996977,-0.05569233379796067 +74449,372.2449999996977,-0.055692251413382084 +74450,372.2499999996977,-0.05569216904138685 +74451,372.2549999996977,-0.05569208668197176 +74452,372.2599999996977,-0.05569200433513358 +74453,372.2649999996977,-0.05569192200086906 +74454,372.2699999996977,-0.05569183967917498 +74455,372.2749999996977,-0.05569175737004811 +74456,372.2799999996977,-0.055691675073485214 +74457,372.2849999996977,-0.05569159278948308 +74458,372.28999999969767,-0.05569151051803847 +74459,372.29499999969767,-0.055691428259148155 +74460,372.29999999969766,-0.055691346012808896 +74461,372.30499999969766,-0.05569126377901747 +74462,372.30999999969765,-0.055691181557770676 +74463,372.31499999969765,-0.05569109934906527 +74464,372.31999999969764,-0.055691017152898016 +74465,372.32499999969764,-0.0556909349692657 +74466,372.32999999969763,-0.055690852798165096 +74467,372.33499999969763,-0.055690770639593 +74468,372.3399999996976,-0.055690688493546164 +74469,372.3449999996976,-0.05569060636002138 +74470,372.3499999996976,-0.05569052423901542 +74471,372.3549999996976,-0.055690442130525056 +74472,372.3599999996976,-0.05569036003454708 +74473,372.3649999996976,-0.055690277951078275 +74474,372.3699999996976,-0.05569019588011541 +74475,372.3749999996976,-0.05569011382165528 +74476,372.3799999996976,-0.05569003177569465 +74477,372.3849999996976,-0.055689949742230314 +74478,372.3899999996976,-0.05568986772125905 +74479,372.3949999996976,-0.05568978571277765 +74480,372.39999999969757,-0.05568970371678289 +74481,372.40499999969757,-0.05568962173327156 +74482,372.40999999969756,-0.05568953976224046 +74483,372.41499999969756,-0.05568945780368634 +74484,372.41999999969755,-0.05568937585760601 +74485,372.42499999969755,-0.05568929392399626 +74486,372.42999999969754,-0.05568921200285388 +74487,372.43499999969754,-0.05568913009417564 +74488,372.43999999969753,-0.05568904819795834 +74489,372.44499999969753,-0.05568896631419878 +74490,372.4499999996975,-0.05568888444289374 +74491,372.4549999996975,-0.05568880258404002 +74492,372.4599999996975,-0.0556887207376344 +74493,372.4649999996975,-0.055688638903673676 +74494,372.4699999996975,-0.055688557082154644 +74495,372.4749999996975,-0.05568847527307409 +74496,372.4799999996975,-0.055688393476428816 +74497,372.4849999996975,-0.05568831169221562 +74498,372.4899999996975,-0.0556882299204313 +74499,372.4949999996975,-0.055688148161072634 +74500,372.4999999996975,-0.05568806641413643 +74501,372.5049999996975,-0.055687984679619475 +74502,372.50999999969747,-0.05568790295751859 +74503,372.51499999969747,-0.05568782124783054 +74504,372.51999999969746,-0.05568773955055215 +74505,372.52499999969746,-0.05568765786568022 +74506,372.52999999969745,-0.05568757619321154 +74507,372.53499999969745,-0.05568749453314291 +74508,372.53999999969744,-0.05568741288547113 +74509,372.54499999969744,-0.05568733125019301 +74510,372.54999999969743,-0.05568724962730535 +74511,372.55499999969743,-0.05568716801680495 +74512,372.5599999996974,-0.05568708641868861 +74513,372.5649999996974,-0.055687004832953135 +74514,372.5699999996974,-0.055686923259595345 +74515,372.5749999996974,-0.05568684169861203 +74516,372.5799999996974,-0.05568676015 +74517,372.5849999996974,-0.055686678613756056 +74518,372.5899999996974,-0.05568659708987703 +74519,372.5949999996974,-0.05568651557835969 +74520,372.5999999996974,-0.05568643407920088 +74521,372.6049999996974,-0.05568635259239738 +74522,372.6099999996974,-0.05568627111794604 +74523,372.6149999996974,-0.05568618965584362 +74524,372.61999999969737,-0.05568610820608697 +74525,372.62499999969737,-0.055686026768672875 +74526,372.62999999969736,-0.055685945343598164 +74527,372.63499999969736,-0.05568586393085964 +74528,372.63999999969735,-0.05568578253045412 +74529,372.64499999969735,-0.05568570114237842 +74530,372.64999999969734,-0.055685619766629356 +74531,372.65499999969734,-0.055685538403203755 +74532,372.65999999969733,-0.0556854570520984 +74533,372.66499999969733,-0.05568537571331012 +74534,372.6699999996973,-0.055685294386835754 +74535,372.6749999996973,-0.05568521307267209 +74536,372.6799999996973,-0.05568513177081596 +74537,372.6849999996973,-0.055685050481264174 +74538,372.6899999996973,-0.05568496920401356 +74539,372.6949999996973,-0.05568488793906093 +74540,372.6999999996973,-0.05568480668640311 +74541,372.7049999996973,-0.05568472544603692 +74542,372.7099999996973,-0.05568464421795919 +74543,372.7149999996973,-0.055684563002166725 +74544,372.7199999996973,-0.055684481798656364 +74545,372.7249999996973,-0.05568440060742492 +74546,372.72999999969727,-0.05568431942846922 +74547,372.73499999969727,-0.05568423826178609 +74548,372.73999999969726,-0.05568415710737236 +74549,372.74499999969726,-0.05568407596522484 +74550,372.74999999969725,-0.05568399483534036 +74551,372.75499999969725,-0.055683913717715756 +74552,372.75999999969724,-0.05568383261234784 +74553,372.76499999969724,-0.05568375151923347 +74554,372.76999999969723,-0.05568367043836945 +74555,372.77499999969723,-0.05568358936975261 +74556,372.7799999996972,-0.055683508313379794 +74557,372.7849999996972,-0.05568342726924782 +74558,372.7899999996972,-0.05568334623735352 +74559,372.7949999996972,-0.055683265217693734 +74560,372.7999999996972,-0.05568318421026528 +74561,372.8049999996972,-0.055683103215065005 +74562,372.8099999996972,-0.05568302223208973 +74563,372.8149999996972,-0.0556829412613363 +74564,372.8199999996972,-0.05568286030280153 +74565,372.8249999996972,-0.05568277935648227 +74566,372.8299999996972,-0.05568269842237537 +74567,372.8349999996972,-0.05568261750047765 +74568,372.83999999969717,-0.055682536590785946 +74569,372.84499999969717,-0.055682455693297085 +74570,372.84999999969716,-0.05568237480800794 +74571,372.85499999969716,-0.055682293934915306 +74572,372.85999999969715,-0.055682213074016065 +74573,372.86499999969715,-0.05568213222530702 +74574,372.86999999969714,-0.05568205138878503 +74575,372.87499999969714,-0.05568197056444693 +74576,372.87999999969713,-0.05568188975228956 +74577,372.88499999969713,-0.05568180895230978 +74578,372.8899999996971,-0.055681728164504424 +74579,372.8949999996971,-0.05568164738887032 +74580,372.8999999996971,-0.05568156662540433 +74581,372.9049999996971,-0.055681485874103286 +74582,372.9099999996971,-0.055681405134964036 +74583,372.9149999996971,-0.05568132440798344 +74584,372.9199999996971,-0.05568124369315832 +74585,372.9249999996971,-0.05568116299048555 +74586,372.9299999996971,-0.05568108229996196 +74587,372.9349999996971,-0.0556810016215844 +74588,372.9399999996971,-0.05568092095534972 +74589,372.9449999996971,-0.05568084030125476 +74590,372.94999999969707,-0.055680759659296385 +74591,372.95499999969707,-0.05568067902947145 +74592,372.95999999969706,-0.055680598411776784 +74593,372.96499999969706,-0.05568051780620925 +74594,372.96999999969705,-0.055680437212765714 +74595,372.97499999969705,-0.055680356631443 +74596,372.97999999969704,-0.05568027606223799 +74597,372.98499999969704,-0.05568019550514752 +74598,372.98999999969703,-0.055680114960168454 +74599,372.99499999969703,-0.055680034427297645 +74600,372.999999999697,-0.05567995390653194 +74601,373.004999999697,-0.055679873397868195 +74602,373.009999999697,-0.055679792901303274 +74603,373.014999999697,-0.05567971241683404 +74604,373.019999999697,-0.055679631944457346 +74605,373.024999999697,-0.05567955148417005 +74606,373.029999999697,-0.055679471035969 +74607,373.034999999697,-0.055679390599851074 +74608,373.039999999697,-0.05567931017581313 +74609,373.044999999697,-0.05567922976385202 +74610,373.049999999697,-0.05567914936396461 +74611,373.054999999697,-0.055679068976147765 +74612,373.05999999969697,-0.05567898860039834 +74613,373.06499999969697,-0.05567890823671321 +74614,373.06999999969696,-0.05567882788508924 +74615,373.07499999969696,-0.055678747545523266 +74616,373.07999999969695,-0.05567866721801218 +74617,373.08499999969695,-0.055678586902552854 +74618,373.08999999969694,-0.05567850659914213 +74619,373.09499999969694,-0.05567842630777689 +74620,373.09999999969693,-0.055678346028454 +74621,373.10499999969693,-0.055678265761170326 +74622,373.1099999996969,-0.05567818550592274 +74623,373.1149999996969,-0.055678105262708104 +74624,373.1199999996969,-0.05567802503152329 +74625,373.1249999996969,-0.05567794481236518 +74626,373.1299999996969,-0.05567786460523064 +74627,373.1349999996969,-0.05567778441011653 +74628,373.1399999996969,-0.05567770422701973 +74629,373.1449999996969,-0.05567762405593712 +74630,373.1499999996969,-0.05567754389686554 +74631,373.1549999996969,-0.055677463749801905 +74632,373.1599999996969,-0.05567738361474308 +74633,373.1649999996969,-0.05567730349168593 +74634,373.16999999969687,-0.05567722338062734 +74635,373.17499999969687,-0.05567714328156417 +74636,373.17999999969686,-0.055677063194493316 +74637,373.18499999969686,-0.05567698311941165 +74638,373.18999999969685,-0.055676903056316035 +74639,373.19499999969685,-0.05567682300520336 +74640,373.19999999969684,-0.055676742966070523 +74641,373.20499999969684,-0.05567666293891438 +74642,373.20999999969683,-0.055676582923731815 +74643,373.21499999969683,-0.05567650292051971 +74644,373.2199999996968,-0.05567642292927495 +74645,373.2249999996968,-0.05567634294999442 +74646,373.2299999996968,-0.055676262982675 +74647,373.2349999996968,-0.05567618302731357 +74648,373.2399999996968,-0.05567610308390701 +74649,373.2449999996968,-0.055676023152452216 +74650,373.2499999996968,-0.05567594323294607 +74651,373.2549999996968,-0.055675863325385454 +74652,373.2599999996968,-0.055675783429767235 +74653,373.2649999996968,-0.05567570354608833 +74654,373.2699999996968,-0.055675623674345615 +74655,373.2749999996968,-0.05567554381453599 +74656,373.27999999969677,-0.055675463966656326 +74657,373.28499999969677,-0.05567538413070352 +74658,373.28999999969676,-0.055675304306674465 +74659,373.29499999969676,-0.055675224494566036 +74660,373.29999999969675,-0.05567514469437514 +74661,373.30499999969675,-0.05567506490609866 +74662,373.30999999969674,-0.055674985129733484 +74663,373.31499999969674,-0.055674905365276514 +74664,373.31999999969673,-0.055674825612724646 +74665,373.32499999969673,-0.055674745872074764 +74666,373.3299999996967,-0.055674666143323774 +74667,373.3349999996967,-0.05567458642646857 +74668,373.3399999996967,-0.05567450672150602 +74669,373.3449999996967,-0.05567442702843306 +74670,373.3499999996967,-0.05567434734724656 +74671,373.3549999996967,-0.05567426767794342 +74672,373.3599999996967,-0.05567418802052055 +74673,373.3649999996967,-0.055674108374974836 +74674,373.3699999996967,-0.05567402874130319 +74675,373.3749999996967,-0.0556739491195025 +74676,373.3799999996967,-0.05567386950956966 +74677,373.3849999996967,-0.05567378991150159 +74678,373.38999999969667,-0.055673710325295174 +74679,373.39499999969667,-0.05567363075094733 +74680,373.39999999969666,-0.055673551188454955 +74681,373.40499999969666,-0.05567347163781494 +74682,373.40999999969665,-0.0556733920990242 +74683,373.41499999969665,-0.055673312572079636 +74684,373.41999999969664,-0.05567323305697816 +74685,373.42499999969664,-0.05567315355371667 +74686,373.42999999969663,-0.05567307406229208 +74687,373.43499999969663,-0.05567299458270128 +74688,373.4399999996966,-0.05567291511494119 +74689,373.4449999996966,-0.05567283565900871 +74690,373.4499999996966,-0.05567275621490076 +74691,373.4549999996966,-0.055672676782614235 +74692,373.4599999996966,-0.055672597362146053 +74693,373.4649999996966,-0.05567251795349313 +74694,373.4699999996966,-0.05567243855665237 +74695,373.4749999996966,-0.055672359171620674 +74696,373.4799999996966,-0.055672279798394966 +74697,373.4849999996966,-0.05567220043697215 +74698,373.4899999996966,-0.05567212108734914 +74699,373.4949999996966,-0.055672041749522866 +74700,373.49999999969657,-0.055671962423490214 +74701,373.50499999969657,-0.05567188310924813 +74702,373.50999999969656,-0.055671803806793506 +74703,373.51499999969656,-0.05567172451612326 +74704,373.51999999969655,-0.05567164523723433 +74705,373.52499999969655,-0.05567156597012361 +74706,373.52999999969654,-0.05567148671478802 +74707,373.53499999969654,-0.05567140747122448 +74708,373.53999999969653,-0.05567132823942991 +74709,373.54499999969653,-0.05567124901940123 +74710,373.5499999996965,-0.055671169811135374 +74711,373.5549999996965,-0.055671090614629236 +74712,373.5599999996965,-0.055671011429879756 +74713,373.5649999996965,-0.05567093225688385 +74714,373.5699999996965,-0.055670853095638434 +74715,373.5749999996965,-0.055670773946140444 +74716,373.5799999996965,-0.05567069480838679 +74717,373.5849999996965,-0.05567061568237439 +74718,373.5899999996965,-0.05567053656810019 +74719,373.5949999996965,-0.0556704574655611 +74720,373.5999999996965,-0.055670378374754054 +74721,373.6049999996965,-0.055670299295675976 +74722,373.60999999969647,-0.05567022022832379 +74723,373.61499999969647,-0.055670141172694414 +74724,373.61999999969646,-0.055670062128784795 +74725,373.62499999969646,-0.05566998309659185 +74726,373.62999999969645,-0.05566990407611252 +74727,373.63499999969645,-0.05566982506734371 +74728,373.63999999969644,-0.055669746070282376 +74729,373.64499999969644,-0.055669667084925434 +74730,373.64999999969643,-0.05566958811126982 +74731,373.65499999969643,-0.055669509149312464 +74732,373.6599999996964,-0.055669430199050296 +74733,373.6649999996964,-0.05566935126048027 +74734,373.6699999996964,-0.0556692723335993 +74735,373.6749999996964,-0.05566919341840432 +74736,373.6799999996964,-0.05566911451489227 +74737,373.6849999996964,-0.05566903562306008 +74738,373.6899999996964,-0.0556689567429047 +74739,373.6949999996964,-0.055668877874423046 +74740,373.6999999996964,-0.05566879901761206 +74741,373.7049999996964,-0.0556687201724687 +74742,373.7099999996964,-0.055668641338989876 +74743,373.7149999996964,-0.055668562517172546 +74744,373.71999999969637,-0.055668483707013654 +74745,373.72499999969637,-0.05566840490851011 +74746,373.72999999969636,-0.05566832612165888 +74747,373.73499999969636,-0.055668247346456895 +74748,373.73999999969635,-0.055668168582901106 +74749,373.74499999969635,-0.05566808983098845 +74750,373.74999999969634,-0.05566801109071588 +74751,373.75499999969634,-0.05566793236208032 +74752,373.75999999969633,-0.05566785364507872 +74753,373.76499999969633,-0.05566777493970804 +74754,373.7699999996963,-0.0556676962459652 +74755,373.7749999996963,-0.05566761756384717 +74756,373.7799999996963,-0.055667538893350896 +74757,373.7849999996963,-0.0556674602344733 +74758,373.7899999996963,-0.05566738158721134 +74759,373.7949999996963,-0.05566730295156198 +74760,373.7999999996963,-0.05566722432752215 +74761,373.8049999996963,-0.05566714571508881 +74762,373.8099999996963,-0.0556670671142589 +74763,373.8149999996963,-0.05566698852502938 +74764,373.8199999996963,-0.0556669099473972 +74765,373.8249999996963,-0.055666831381359305 +74766,373.82999999969627,-0.05566675282691264 +74767,373.83499999969627,-0.05566667428405418 +74768,373.83999999969626,-0.055666595752780865 +74769,373.84499999969626,-0.05566651723308965 +74770,373.84999999969625,-0.055666438724977486 +74771,373.85499999969625,-0.05566636022844133 +74772,373.85999999969624,-0.05566628174347815 +74773,373.86499999969624,-0.05566620327008488 +74774,373.86999999969623,-0.05566612480825849 +74775,373.87499999969623,-0.05566604635799593 +74776,373.8799999996962,-0.055665967919294165 +74777,373.8849999996962,-0.05566588949215014 +74778,373.8899999996962,-0.055665811076560844 +74779,373.8949999996962,-0.055665732672523206 +74780,373.8999999996962,-0.055665654280034206 +74781,373.9049999996962,-0.05566557589909078 +74782,373.9099999996962,-0.05566549752968992 +74783,373.9149999996962,-0.05566541917182856 +74784,373.9199999996962,-0.055665340825503694 +74785,373.9249999996962,-0.055665262490712256 +74786,373.9299999996962,-0.05566518416745122 +74787,373.9349999996962,-0.055665105855717545 +74788,373.93999999969617,-0.05566502755550821 +74789,373.94499999969617,-0.05566494926682016 +74790,373.94999999969616,-0.05566487098965038 +74791,373.95499999969616,-0.05566479272399583 +74792,373.95999999969615,-0.055664714469853466 +74793,373.96499999969615,-0.055664636227220274 +74794,373.96999999969614,-0.0556645579960932 +74795,373.97499999969614,-0.055664479776469225 +74796,373.97999999969613,-0.05566440156834531 +74797,373.98499999969613,-0.05566432337171844 +74798,373.9899999996961,-0.055664245186585574 +74799,373.9949999996961,-0.055664167012943695 +74800,373.9999999996961,-0.055664088850789765 +74801,374.0049999996961,-0.05566401070012076 +74802,374.0099999996961,-0.055663932560933646 +74803,374.0149999996961,-0.0556638544332254 +74804,374.0199999996961,-0.05566377631699299 +74805,374.0249999996961,-0.055663698212233416 +74806,374.0299999996961,-0.055663620118943616 +74807,374.0349999996961,-0.05566354203712058 +74808,374.0399999996961,-0.0556634639667613 +74809,374.0449999996961,-0.05566338590786273 +74810,374.04999999969607,-0.05566330786042187 +74811,374.05499999969607,-0.055663229824435674 +74812,374.05999999969606,-0.05566315179990113 +74813,374.06499999969606,-0.05566307378681522 +74814,374.06999999969605,-0.05566299578517492 +74815,374.07499999969605,-0.05566291779497721 +74816,374.07999999969604,-0.05566283981621906 +74817,374.08499999969604,-0.05566276184889748 +74818,374.08999999969603,-0.055662683893009414 +74819,374.09499999969603,-0.05566260594855187 +74820,374.099999999696,-0.05566252801552183 +74821,374.104999999696,-0.05566245009391628 +74822,374.109999999696,-0.05566237218373219 +74823,374.114999999696,-0.05566229428496655 +74824,374.119999999696,-0.05566221639761635 +74825,374.124999999696,-0.055662138521678575 +74826,374.129999999696,-0.055662060657150195 +74827,374.134999999696,-0.05566198280402821 +74828,374.139999999696,-0.05566190496230962 +74829,374.144999999696,-0.05566182713199139 +74830,374.149999999696,-0.05566174931307052 +74831,374.154999999696,-0.05566167150554399 +74832,374.15999999969597,-0.055661593709408805 +74833,374.16499999969597,-0.05566151592466196 +74834,374.16999999969596,-0.05566143815130042 +74835,374.17499999969596,-0.05566136038932119 +74836,374.17999999969595,-0.05566128263872126 +74837,374.18499999969595,-0.055661204899497635 +74838,374.18999999969594,-0.0556611271716473 +74839,374.19499999969594,-0.055661049455167234 +74840,374.19999999969593,-0.055660971750054446 +74841,374.20499999969593,-0.05566089405630592 +74842,374.2099999996959,-0.05566081637391866 +74843,374.2149999996959,-0.05566073870288968 +74844,374.2199999996959,-0.05566066104321594 +74845,374.2249999996959,-0.05566058339489446 +74846,374.2299999996959,-0.05566050575792224 +74847,374.2349999996959,-0.05566042813229626 +74848,374.2399999996959,-0.05566035051801353 +74849,374.2449999996959,-0.05566027291507105 +74850,374.2499999996959,-0.05566019532346581 +74851,374.2549999996959,-0.055660117743194834 +74852,374.2599999996959,-0.055660040174255104 +74853,374.2649999996959,-0.05565996261664361 +74854,374.26999999969587,-0.05565988507035738 +74855,374.27499999969586,-0.0556598075353934 +74856,374.27999999969586,-0.055659730011748676 +74857,374.28499999969586,-0.05565965249942022 +74858,374.28999999969585,-0.055659574998405036 +74859,374.29499999969585,-0.055659497508700126 +74860,374.29999999969584,-0.055659420030302484 +74861,374.30499999969584,-0.05565934256320914 +74862,374.30999999969583,-0.055659265107417075 +74863,374.31499999969583,-0.055659187662923305 +74864,374.3199999996958,-0.05565911022972485 +74865,374.3249999996958,-0.05565903280781869 +74866,374.3299999996958,-0.055658955397201865 +74867,374.3349999996958,-0.05565887799787137 +74868,374.3399999996958,-0.05565880060982421 +74869,374.3449999996958,-0.055658723233057414 +74870,374.3499999996958,-0.05565864586756798 +74871,374.3549999996958,-0.05565856851335292 +74872,374.3599999996958,-0.055658491170409254 +74873,374.3649999996958,-0.05565841383873398 +74874,374.3699999996958,-0.05565833651832412 +74875,374.3749999996958,-0.05565825920917668 +74876,374.37999999969577,-0.05565818191128868 +74877,374.38499999969576,-0.055658104624657145 +74878,374.38999999969576,-0.055658027349279084 +74879,374.39499999969576,-0.055657950085151515 +74880,374.39999999969575,-0.055657872832271436 +74881,374.40499999969575,-0.05565779559063588 +74882,374.40999999969574,-0.05565771836024189 +74883,374.41499999969574,-0.05565764114108644 +74884,374.41999999969573,-0.05565756393316657 +74885,374.42499999969573,-0.0556574867364793 +74886,374.4299999996957,-0.05565740955102164 +74887,374.4349999996957,-0.05565733237679064 +74888,374.4399999996957,-0.05565725521378327 +74889,374.4449999996957,-0.055657178061996604 +74890,374.4499999996957,-0.05565710092142763 +74891,374.4549999996957,-0.05565702379207339 +74892,374.4599999996957,-0.05565694667393089 +74893,374.4649999996957,-0.055656869566997176 +74894,374.4699999996957,-0.055656792471269256 +74895,374.4749999996957,-0.05565671538674417 +74896,374.4799999996957,-0.055656638313418924 +74897,374.4849999996957,-0.05565656125129056 +74898,374.48999999969567,-0.05565648420035609 +74899,374.49499999969566,-0.05565640716061256 +74900,374.49999999969566,-0.05565633013205698 +74901,374.50499999969566,-0.055656253114686395 +74902,374.50999999969565,-0.05565617610849782 +74903,374.51499999969565,-0.055656099113488296 +74904,374.51999999969564,-0.05565602212965484 +74905,374.52499999969564,-0.05565594515699449 +74906,374.52999999969563,-0.055655868195504284 +74907,374.53499999969563,-0.055655791245181246 +74908,374.5399999996956,-0.05565571430602242 +74909,374.5449999996956,-0.05565563737802482 +74910,374.5499999996956,-0.055655560461185485 +74911,374.5549999996956,-0.05565548355550146 +74912,374.5599999996956,-0.055655406660969776 +74913,374.5649999996956,-0.055655329777587456 +74914,374.5699999996956,-0.055655252905351546 +74915,374.5749999996956,-0.05565517604425908 +74916,374.5799999996956,-0.0556550991943071 +74917,374.5849999996956,-0.05565502235549265 +74918,374.5899999996956,-0.05565494552781274 +74919,374.5949999996956,-0.05565486871126444 +74920,374.59999999969557,-0.055654791905844776 +74921,374.60499999969556,-0.05565471511155079 +74922,374.60999999969556,-0.055654638328379503 +74923,374.61499999969556,-0.05565456155632799 +74924,374.61999999969555,-0.055654484795393276 +74925,374.62499999969555,-0.055654408045572396 +74926,374.62999999969554,-0.05565433130686239 +74927,374.63499999969554,-0.055654254579260314 +74928,374.63999999969553,-0.05565417786276321 +74929,374.64499999969553,-0.055654101157368116 +74930,374.6499999996955,-0.05565402446307209 +74931,374.6549999996955,-0.055653947779872155 +74932,374.6599999996955,-0.05565387110776539 +74933,374.6649999996955,-0.055653794446748804 +74934,374.6699999996955,-0.05565371779681946 +74935,374.6749999996955,-0.05565364115797442 +74936,374.6799999996955,-0.055653564530210704 +74937,374.6849999996955,-0.05565348791352538 +74938,374.6899999996955,-0.05565341130791549 +74939,374.6949999996955,-0.055653334713378085 +74940,374.6999999996955,-0.055653258129910226 +74941,374.7049999996955,-0.05565318155750896 +74942,374.70999999969547,-0.05565310499617132 +74943,374.71499999969546,-0.05565302844589438 +74944,374.71999999969546,-0.05565295190667517 +74945,374.72499999969546,-0.05565287537851077 +74946,374.72999999969545,-0.05565279886139821 +74947,374.73499999969545,-0.05565272235533456 +74948,374.73999999969544,-0.05565264586031687 +74949,374.74499999969544,-0.055652569376342186 +74950,374.74999999969543,-0.055652492903407576 +74951,374.7549999996954,-0.0556524164415101 +74952,374.7599999996954,-0.05565233999064681 +74953,374.7649999996954,-0.055652263550814755 +74954,374.7699999996954,-0.055652187122011004 +74955,374.7749999996954,-0.055652110704232614 +74956,374.7799999996954,-0.05565203429747664 +74957,374.7849999996954,-0.055651957901740136 +74958,374.7899999996954,-0.05565188151702017 +74959,374.7949999996954,-0.05565180514331381 +74960,374.7999999996954,-0.055651728780618116 +74961,374.8049999996954,-0.05565165242893014 +74962,374.8099999996954,-0.05565157608824694 +74963,374.8149999996954,-0.05565149975856559 +74964,374.81999999969537,-0.05565142343988316 +74965,374.82499999969536,-0.05565134713219671 +74966,374.82999999969536,-0.05565127083550329 +74967,374.83499999969536,-0.05565119454979997 +74968,374.83999999969535,-0.05565111827508383 +74969,374.84499999969535,-0.05565104201135193 +74970,374.84999999969534,-0.055650965758601345 +74971,374.85499999969534,-0.05565088951682912 +74972,374.85999999969533,-0.055650813286032344 +74973,374.8649999996953,-0.05565073706620808 +74974,374.8699999996953,-0.05565066085735339 +74975,374.8749999996953,-0.05565058465946535 +74976,374.8799999996953,-0.055650508472541035 +74977,374.8849999996953,-0.055650432296577505 +74978,374.8899999996953,-0.05565035613157184 +74979,374.8949999996953,-0.05565027997752111 +74980,374.8999999996953,-0.05565020383442239 +74981,374.9049999996953,-0.05565012770227274 +74982,374.9099999996953,-0.05565005158106925 +74983,374.9149999996953,-0.055649975470808986 +74984,374.9199999996953,-0.055649899371489016 +74985,374.9249999996953,-0.05564982328310643 +74986,374.92999999969527,-0.05564974720565829 +74987,374.93499999969526,-0.055649671139141675 +74988,374.93999999969526,-0.05564959508355368 +74989,374.94499999969526,-0.05564951903889136 +74990,374.94999999969525,-0.05564944300515181 +74991,374.95499999969525,-0.055649366982332096 +74992,374.95999999969524,-0.0556492909704293 +74993,374.96499999969524,-0.05564921496944052 +74994,374.96999999969523,-0.05564913897936282 +74995,374.9749999996952,-0.05564906300019327 +74996,374.9799999996952,-0.055648987031928956 +74997,374.9849999996952,-0.055648911074566966 +74998,374.9899999996952,-0.055648835128104396 +74999,374.9949999996952,-0.05564875919253831 +75000,374.9999999996952,-0.055648683267865796 +75001,375.0049999996952,-0.05564860735408394 +75002,375.0099999996952,-0.05564853145118983 +75003,375.0149999996952,-0.05564845555918055 +75004,375.0199999996952,-0.055648379678053174 +75005,375.0249999996952,-0.05564830380780481 +75006,375.0299999996952,-0.05564822794843252 +75007,375.0349999996952,-0.055648152099933415 +75008,375.03999999969517,-0.05564807626230457 +75009,375.04499999969516,-0.055648000435543084 +75010,375.04999999969516,-0.05564792461964604 +75011,375.05499999969516,-0.05564784881461051 +75012,375.05999999969515,-0.055647773020433604 +75013,375.06499999969515,-0.05564769723711241 +75014,375.06999999969514,-0.05564762146464402 +75015,375.07499999969514,-0.055647545703025526 +75016,375.07999999969513,-0.05564746995225403 +75017,375.0849999996951,-0.055647394212326604 +75018,375.0899999996951,-0.05564731848324036 +75019,375.0949999996951,-0.055647242764992375 +75020,375.0999999996951,-0.05564716705757975 +75021,375.1049999996951,-0.05564709136099958 +75022,375.1099999996951,-0.05564701567524897 +75023,375.1149999996951,-0.055646940000325 +75024,375.1199999996951,-0.05564686433622478 +75025,375.1249999996951,-0.0556467886829454 +75026,375.1299999996951,-0.055646713040483964 +75027,375.1349999996951,-0.05564663740883757 +75028,375.1399999996951,-0.05564656178800331 +75029,375.1449999996951,-0.055646486177978294 +75030,375.14999999969507,-0.05564641057875962 +75031,375.15499999969506,-0.055646334990344375 +75032,375.15999999969506,-0.05564625941272968 +75033,375.16499999969506,-0.05564618384591262 +75034,375.16999999969505,-0.055646108289890306 +75035,375.17499999969505,-0.05564603274465985 +75036,375.17999999969504,-0.055645957210218346 +75037,375.18499999969504,-0.05564588168656289 +75038,375.18999999969503,-0.05564580617369059 +75039,375.194999999695,-0.05564573067159856 +75040,375.199999999695,-0.055645655180283894 +75041,375.204999999695,-0.05564557969974371 +75042,375.209999999695,-0.05564550422997511 +75043,375.214999999695,-0.05564542877097519 +75044,375.219999999695,-0.05564535332274107 +75045,375.224999999695,-0.055645277885269864 +75046,375.229999999695,-0.055645202458558675 +75047,375.234999999695,-0.05564512704260462 +75048,375.239999999695,-0.055645051637404776 +75049,375.244999999695,-0.05564497624295629 +75050,375.249999999695,-0.05564490085925627 +75051,375.254999999695,-0.05564482548630181 +75052,375.25999999969497,-0.05564475012409004 +75053,375.26499999969496,-0.055644674772618044 +75054,375.26999999969496,-0.05564459943188297 +75055,375.27499999969496,-0.05564452410188191 +75056,375.27999999969495,-0.05564444878261199 +75057,375.28499999969495,-0.05564437347407032 +75058,375.28999999969494,-0.05564429817625401 +75059,375.29499999969494,-0.05564422288916019 +75060,375.29999999969493,-0.05564414761278596 +75061,375.3049999996949,-0.05564407234712845 +75062,375.3099999996949,-0.05564399709218476 +75063,375.3149999996949,-0.05564392184795203 +75064,375.3199999996949,-0.055643846614427374 +75065,375.3249999996949,-0.055643771391607914 +75066,375.3299999996949,-0.05564369617949076 +75067,375.3349999996949,-0.05564362097807303 +75068,375.3399999996949,-0.05564354578735185 +75069,375.3449999996949,-0.055643470607324344 +75070,375.3499999996949,-0.05564339543798764 +75071,375.3549999996949,-0.05564332027933884 +75072,375.3599999996949,-0.055643245131375085 +75073,375.3649999996949,-0.05564316999409349 +75074,375.36999999969487,-0.05564309486749117 +75075,375.37499999969486,-0.05564301975156528 +75076,375.37999999969486,-0.055642944646312927 +75077,375.38499999969486,-0.05564286955173124 +75078,375.38999999969485,-0.05564279446781734 +75079,375.39499999969485,-0.055642719394568364 +75080,375.39999999969484,-0.05564264433198142 +75081,375.40499999969484,-0.05564256928005365 +75082,375.40999999969483,-0.055642494238782196 +75083,375.4149999996948,-0.05564241920816416 +75084,375.4199999996948,-0.05564234418819669 +75085,375.4249999996948,-0.0556422691788769 +75086,375.4299999996948,-0.05564219418020194 +75087,375.4349999996948,-0.05564211919216894 +75088,375.4399999996948,-0.05564204421477501 +75089,375.4449999996948,-0.05564196924801731 +75090,375.4499999996948,-0.05564189429189294 +75091,375.4549999996948,-0.055641819346399064 +75092,375.4599999996948,-0.0556417444115328 +75093,375.4649999996948,-0.055641669487291295 +75094,375.4699999996948,-0.05564159457367167 +75095,375.4749999996948,-0.055641519670671075 +75096,375.47999999969477,-0.05564144477828664 +75097,375.48499999969476,-0.055641369896515504 +75098,375.48999999969476,-0.055641295025354795 +75099,375.49499999969476,-0.05564122016480166 +75100,375.49999999969475,-0.05564114531485322 +75101,375.50499999969475,-0.05564107047550664 +75102,375.50999999969474,-0.05564099564675904 +75103,375.51499999969474,-0.055640920828607575 +75104,375.51999999969473,-0.055640846021049385 +75105,375.5249999996947,-0.05564077122408159 +75106,375.5299999996947,-0.05564069643770135 +75107,375.5349999996947,-0.05564062166190581 +75108,375.5399999996947,-0.0556405468966921 +75109,375.5449999996947,-0.055640472142057376 +75110,375.5499999996947,-0.05564039739799877 +75111,375.5549999996947,-0.055640322664513436 +75112,375.5599999996947,-0.055640247941598504 +75113,375.5649999996947,-0.05564017322925113 +75114,375.5699999996947,-0.05564009852746847 +75115,375.5749999996947,-0.05564002383624765 +75116,375.5799999996947,-0.05563994915558584 +75117,375.5849999996947,-0.05563987448548016 +75118,375.58999999969467,-0.05563979982592778 +75119,375.59499999969466,-0.05563972517692585 +75120,375.59999999969466,-0.0556396505384715 +75121,375.60499999969466,-0.055639575910561886 +75122,375.60999999969465,-0.05563950129319417 +75123,375.61499999969465,-0.0556394266863655 +75124,375.61999999969464,-0.05563935209007302 +75125,375.62499999969464,-0.05563927750431388 +75126,375.62999999969463,-0.055639202929085245 +75127,375.6349999996946,-0.05563912836438426 +75128,375.6399999996946,-0.05563905381020808 +75129,375.6449999996946,-0.05563897926655386 +75130,375.6499999996946,-0.05563890473341876 +75131,375.6549999996946,-0.055638830210799926 +75132,375.6599999996946,-0.05563875569869451 +75133,375.6649999996946,-0.05563868119709967 +75134,375.6699999996946,-0.05563860670601258 +75135,375.6749999996946,-0.05563853222543038 +75136,375.6799999996946,-0.05563845775535023 +75137,375.6849999996946,-0.055638383295769304 +75138,375.6899999996946,-0.05563830884668474 +75139,375.6949999996946,-0.05563823440809369 +75140,375.69999999969457,-0.05563815997999335 +75141,375.70499999969456,-0.055638085562380854 +75142,375.70999999969456,-0.05563801115525337 +75143,375.71499999969456,-0.05563793675860805 +75144,375.71999999969455,-0.05563786237244207 +75145,375.72499999969455,-0.05563778799675259 +75146,375.72999999969454,-0.055637713631536787 +75147,375.73499999969454,-0.05563763927679179 +75148,375.73999999969453,-0.055637564932514795 +75149,375.7449999996945,-0.05563749059870294 +75150,375.7499999996945,-0.055637416275353416 +75151,375.7549999996945,-0.05563734196246338 +75152,375.7599999996945,-0.05563726766002999 +75153,375.7649999996945,-0.05563719336805042 +75154,375.7699999996945,-0.05563711908652184 +75155,375.7749999996945,-0.05563704481544141 +75156,375.7799999996945,-0.05563697055480631 +75157,375.7849999996945,-0.0556368963046137 +75158,375.7899999996945,-0.05563682206486075 +75159,375.7949999996945,-0.05563674783554464 +75160,375.7999999996945,-0.05563667361666254 +75161,375.8049999996945,-0.05563659940821161 +75162,375.80999999969447,-0.05563652521018904 +75163,375.81499999969446,-0.05563645102259197 +75164,375.81999999969446,-0.055636376845417605 +75165,375.82499999969446,-0.055636302678663103 +75166,375.82999999969445,-0.05563622852232564 +75167,375.83499999969445,-0.0556361543764024 +75168,375.83999999969444,-0.05563608024089055 +75169,375.84499999969444,-0.05563600611578727 +75170,375.84999999969443,-0.05563593200108973 +75171,375.8549999996944,-0.0556358578967951 +75172,375.8599999996944,-0.05563578380290058 +75173,375.8649999996944,-0.05563570971940333 +75174,375.8699999996944,-0.05563563564630053 +75175,375.8749999996944,-0.055635561583589364 +75176,375.8799999996944,-0.05563548753126701 +75177,375.8849999996944,-0.05563541348933063 +75178,375.8899999996944,-0.05563533945777743 +75179,375.8949999996944,-0.055635265436604596 +75180,375.8999999996944,-0.0556351914258093 +75181,375.9049999996944,-0.0556351174253887 +75182,375.9099999996944,-0.05563504343534001 +75183,375.9149999996944,-0.0556349694556604 +75184,375.91999999969437,-0.05563489548634705 +75185,375.92499999969436,-0.05563482152739717 +75186,375.92999999969436,-0.0556347475788079 +75187,375.93499999969436,-0.05563467364057647 +75188,375.93999999969435,-0.05563459971270004 +75189,375.94499999969435,-0.055634525795175804 +75190,375.94999999969434,-0.05563445188800095 +75191,375.95499999969434,-0.05563437799117267 +75192,375.95999999969433,-0.05563430410468814 +75193,375.9649999996943,-0.05563423022854455 +75194,375.9699999996943,-0.05563415636273909 +75195,375.9749999996943,-0.05563408250726896 +75196,375.9799999996943,-0.055634008662131335 +75197,375.9849999996943,-0.055633934827323414 +75198,375.9899999996943,-0.05563386100284239 +75199,375.9949999996943,-0.05563378718868546 +75200,375.9999999996943,-0.05563371338484981 +75201,376.0049999996943,-0.05563363959133264 +75202,376.0099999996943,-0.05563356580813113 +75203,376.0149999996943,-0.05563349203524247 +75204,376.0199999996943,-0.05563341827266386 +75205,376.0249999996943,-0.055633344520392515 +75206,376.02999999969427,-0.0556332707784256 +75207,376.03499999969426,-0.055633197046760334 +75208,376.03999999969426,-0.0556331233253939 +75209,376.04499999969426,-0.0556330496143235 +75210,376.04999999969425,-0.05563297591354633 +75211,376.05499999969425,-0.055632902223059603 +75212,376.05999999969424,-0.055632828542860495 +75213,376.06499999969424,-0.05563275487294622 +75214,376.06999999969423,-0.055632681213313974 +75215,376.0749999996942,-0.05563260756396095 +75216,376.0799999996942,-0.055632533924884355 +75217,376.0849999996942,-0.05563246029608139 +75218,376.0899999996942,-0.055632386677549266 +75219,376.0949999996942,-0.05563231306928518 +75220,376.0999999996942,-0.055632239471286316 +75221,376.1049999996942,-0.055632165883549904 +75222,376.1099999996942,-0.05563209230607313 +75223,376.1149999996942,-0.055632018738853206 +75224,376.1199999996942,-0.05563194518188735 +75225,376.1249999996942,-0.05563187163517275 +75226,376.1299999996942,-0.05563179809870661 +75227,376.1349999996942,-0.05563172457248615 +75228,376.13999999969417,-0.05563165105650857 +75229,376.14499999969416,-0.05563157755077108 +75230,376.14999999969416,-0.05563150405527088 +75231,376.15499999969416,-0.05563143057000519 +75232,376.15999999969415,-0.055631357094971225 +75233,376.16499999969415,-0.05563128363016618 +75234,376.16999999969414,-0.055631210175587274 +75235,376.17499999969414,-0.055631136731231705 +75236,376.17999999969413,-0.0556310632970967 +75237,376.1849999996941,-0.05563098987317946 +75238,376.1899999996941,-0.05563091645947721 +75239,376.1949999996941,-0.05563084305598716 +75240,376.1999999996941,-0.05563076966270651 +75241,376.2049999996941,-0.05563069627963249 +75242,376.2099999996941,-0.055630622906762316 +75243,376.2149999996941,-0.05563054954409319 +75244,376.2199999996941,-0.05563047619162232 +75245,376.2249999996941,-0.05563040284934695 +75246,376.2299999996941,-0.055630329517264286 +75247,376.2349999996941,-0.05563025619537155 +75248,376.2399999996941,-0.05563018288366594 +75249,376.2449999996941,-0.055630109582144684 +75250,376.24999999969407,-0.05563003629080501 +75251,376.25499999969406,-0.05562996300964413 +75252,376.25999999969406,-0.05562988973865926 +75253,376.26499999969406,-0.05562981647784763 +75254,376.26999999969405,-0.05562974322720645 +75255,376.27499999969405,-0.05562966998673295 +75256,376.27999999969404,-0.055629596756424364 +75257,376.28499999969404,-0.05562952353627789 +75258,376.28999999969403,-0.05562945032629077 +75259,376.294999999694,-0.05562937712646021 +75260,376.299999999694,-0.05562930393678346 +75261,376.304999999694,-0.05562923075725772 +75262,376.309999999694,-0.05562915758788023 +75263,376.314999999694,-0.055629084428648216 +75264,376.319999999694,-0.05562901127955888 +75265,376.324999999694,-0.05562893814060948 +75266,376.329999999694,-0.05562886501179723 +75267,376.334999999694,-0.05562879189311936 +75268,376.339999999694,-0.055628718784573095 +75269,376.344999999694,-0.055628645686155664 +75270,376.349999999694,-0.05562857259786431 +75271,376.354999999694,-0.05562849951969625 +75272,376.35999999969397,-0.05562842645164872 +75273,376.36499999969396,-0.05562835339371895 +75274,376.36999999969396,-0.055628280345904176 +75275,376.37499999969396,-0.05562820730820161 +75276,376.37999999969395,-0.055628134280608504 +75277,376.38499999969395,-0.05562806126312209 +75278,376.38999999969394,-0.0556279882557396 +75279,376.39499999969394,-0.05562791525845826 +75280,376.39999999969393,-0.05562784227127531 +75281,376.4049999996939,-0.055627769294188 +75282,376.4099999996939,-0.05562769632719355 +75283,376.4149999996939,-0.05562762337028919 +75284,376.4199999996939,-0.05562755042347216 +75285,376.4249999996939,-0.055627477486739706 +75286,376.4299999996939,-0.05562740456008908 +75287,376.4349999996939,-0.05562733164351749 +75288,376.4399999996939,-0.055627258737022206 +75289,376.4449999996939,-0.05562718584060043 +75290,376.4499999996939,-0.05562711295424944 +75291,376.4549999996939,-0.055627040077966455 +75292,376.4599999996939,-0.05562696721174872 +75293,376.4649999996939,-0.05562689435559348 +75294,376.46999999969387,-0.05562682150949797 +75295,376.47499999969386,-0.055626748673459445 +75296,376.47999999969386,-0.05562667584747514 +75297,376.48499999969385,-0.0556266030315423 +75298,376.48999999969385,-0.05562653022565817 +75299,376.49499999969385,-0.055626457429819996 +75300,376.49999999969384,-0.05562638464402501 +75301,376.50499999969384,-0.05562631186827048 +75302,376.50999999969383,-0.05562623910255364 +75303,376.5149999996938,-0.055626166346871744 +75304,376.5199999996938,-0.055626093601222025 +75305,376.5249999996938,-0.05562602086560175 +75306,376.5299999996938,-0.05562594814000815 +75307,376.5349999996938,-0.055625875424438476 +75308,376.5399999996938,-0.055625802718889984 +75309,376.5449999996938,-0.05562573002335994 +75310,376.5499999996938,-0.055625657337845566 +75311,376.5549999996938,-0.05562558466234414 +75312,376.5599999996938,-0.055625511996852894 +75313,376.5649999996938,-0.05562543934136909 +75314,376.5699999996938,-0.055625366695889966 +75315,376.5749999996938,-0.055625294060412785 +75316,376.57999999969377,-0.0556252214349348 +75317,376.58499999969376,-0.055625148819453275 +75318,376.58999999969376,-0.05562507621396546 +75319,376.59499999969375,-0.055625003618468595 +75320,376.59999999969375,-0.055624931032959964 +75321,376.60499999969375,-0.0556248584574368 +75322,376.60999999969374,-0.05562478589189638 +75323,376.61499999969374,-0.055624713336335944 +75324,376.61999999969373,-0.05562464079075275 +75325,376.6249999996937,-0.05562456825514407 +75326,376.6299999996937,-0.055624495729507145 +75327,376.6349999996937,-0.05562442321383925 +75328,376.6399999996937,-0.05562435070813764 +75329,376.6449999996937,-0.055624278212399576 +75330,376.6499999996937,-0.05562420572662232 +75331,376.6549999996937,-0.05562413325080313 +75332,376.6599999996937,-0.055624060784939276 +75333,376.6649999996937,-0.05562398832902801 +75334,376.6699999996937,-0.0556239158830666 +75335,376.6749999996937,-0.05562384344705231 +75336,376.6799999996937,-0.055623771020982406 +75337,376.6849999996937,-0.05562369860485416 +75338,376.68999999969367,-0.05562362619866482 +75339,376.69499999969366,-0.055623553802411664 +75340,376.69999999969366,-0.05562348141609196 +75341,376.70499999969365,-0.05562340903970296 +75342,376.70999999969365,-0.05562333667324195 +75343,376.71499999969365,-0.05562326431670619 +75344,376.71999999969364,-0.055623191970092946 +75345,376.72499999969364,-0.0556231196333995 +75346,376.72999999969363,-0.0556230473066231 +75347,376.7349999996936,-0.05562297498976102 +75348,376.7399999996936,-0.055622902682810546 +75349,376.7449999996936,-0.05562283038576895 +75350,376.7499999996936,-0.055622758098633485 +75351,376.7549999996936,-0.05562268582140143 +75352,376.7599999996936,-0.05562261355407007 +75353,376.7649999996936,-0.05562254129663667 +75354,376.7699999996936,-0.0556224690490985 +75355,376.7749999996936,-0.05562239681145283 +75356,376.7799999996936,-0.05562232458369694 +75357,376.7849999996936,-0.05562225236582811 +75358,376.7899999996936,-0.0556221801578436 +75359,376.7949999996936,-0.05562210795974072 +75360,376.79999999969357,-0.05562203577151672 +75361,376.80499999969356,-0.055621963593168885 +75362,376.80999999969356,-0.05562189142469448 +75363,376.81499999969355,-0.05562181926609081 +75364,376.81999999969355,-0.05562174711735513 +75365,376.82499999969355,-0.05562167497848472 +75366,376.82999999969354,-0.05562160284947687 +75367,376.83499999969354,-0.05562153073032887 +75368,376.83999999969353,-0.05562145862103799 +75369,376.8449999996935,-0.05562138652160151 +75370,376.8499999996935,-0.055621314432016705 +75371,376.8549999996935,-0.05562124235228087 +75372,376.8599999996935,-0.05562117028239129 +75373,376.8649999996935,-0.05562109822234524 +75374,376.8699999996935,-0.05562102617214001 +75375,376.8749999996935,-0.05562095413177288 +75376,376.8799999996935,-0.05562088210124114 +75377,376.8849999996935,-0.05562081008054206 +75378,376.8899999996935,-0.05562073806967294 +75379,376.8949999996935,-0.055620666068631065 +75380,376.8999999996935,-0.05562059407741373 +75381,376.9049999996935,-0.055620522096018206 +75382,376.90999999969347,-0.055620450124441806 +75383,376.91499999969346,-0.05562037816268179 +75384,376.91999999969346,-0.055620306210735465 +75385,376.92499999969345,-0.05562023426860012 +75386,376.92999999969345,-0.05562016233627304 +75387,376.93499999969345,-0.05562009041375153 +75388,376.93999999969344,-0.05562001850103286 +75389,376.94499999969344,-0.05561994659811434 +75390,376.94999999969343,-0.05561987470499325 +75391,376.9549999996934,-0.05561980282166688 +75392,376.9599999996934,-0.055619730948132544 +75393,376.9649999996934,-0.05561965908438752 +75394,376.9699999996934,-0.055619587230429104 +75395,376.9749999996934,-0.05561951538625459 +75396,376.9799999996934,-0.05561944355186128 +75397,376.9849999996934,-0.05561937172724646 +75398,376.9899999996934,-0.055619299912407445 +75399,376.9949999996934,-0.05561922810734152 +75400,376.9999999996934,-0.055619156312045975 +75401,377.0049999996934,-0.055619084526518106 +75402,377.0099999996934,-0.05561901275075523 +75403,377.0149999996934,-0.055618940984754645 +75404,377.01999999969337,-0.05561886922851365 +75405,377.02499999969336,-0.055618797482029525 +75406,377.02999999969336,-0.05561872574529959 +75407,377.03499999969335,-0.05561865401832114 +75408,377.03999999969335,-0.05561858230109148 +75409,377.04499999969335,-0.05561851059360791 +75410,377.04999999969334,-0.055618438895867726 +75411,377.05499999969334,-0.055618367207868245 +75412,377.05999999969333,-0.05561829552960677 +75413,377.0649999996933,-0.0556182238610806 +75414,377.0699999996933,-0.05561815220228704 +75415,377.0749999996933,-0.05561808055322339 +75416,377.0799999996933,-0.05561800891388697 +75417,377.0849999996933,-0.055617937284275075 +75418,377.0899999996933,-0.05561786566438501 +75419,377.0949999996933,-0.05561779405421409 +75420,377.0999999996933,-0.05561772245375963 +75421,377.1049999996933,-0.055617650863018925 +75422,377.1099999996933,-0.05561757928198928 +75423,377.1149999996933,-0.05561750771066802 +75424,377.1199999996933,-0.05561743614905245 +75425,377.1249999996933,-0.05561736459713987 +75426,377.12999999969327,-0.0556172930549276 +75427,377.13499999969326,-0.05561722152241296 +75428,377.13999999969326,-0.05561714999959325 +75429,377.14499999969325,-0.055617078486465785 +75430,377.14999999969325,-0.05561700698302788 +75431,377.15499999969325,-0.05561693548927684 +75432,377.15999999969324,-0.05561686400521001 +75433,377.16499999969324,-0.05561679253082467 +75434,377.16999999969323,-0.05561672106611815 +75435,377.1749999996932,-0.055616649611087754 +75436,377.1799999996932,-0.05561657816573082 +75437,377.1849999996932,-0.05561650673004463 +75438,377.1899999996932,-0.05561643530402654 +75439,377.1949999996932,-0.05561636388767386 +75440,377.1999999996932,-0.05561629248098389 +75441,377.2049999996932,-0.05561622108395396 +75442,377.2099999996932,-0.055616149696581386 +75443,377.2149999996932,-0.055616078318863504 +75444,377.2199999996932,-0.05561600695079761 +75445,377.2249999996932,-0.05561593559238104 +75446,377.2299999996932,-0.0556158642436111 +75447,377.2349999996932,-0.05561579290448514 +75448,377.23999999969317,-0.05561572157500045 +75449,377.24499999969316,-0.05561565025515438 +75450,377.24999999969316,-0.05561557894494423 +75451,377.25499999969315,-0.05561550764436736 +75452,377.25999999969315,-0.05561543635342105 +75453,377.26499999969315,-0.05561536507210265 +75454,377.26999999969314,-0.05561529380040948 +75455,377.27499999969314,-0.05561522253833887 +75456,377.27999999969313,-0.05561515128588815 +75457,377.2849999996931,-0.055615080043054634 +75458,377.2899999996931,-0.05561500880983566 +75459,377.2949999996931,-0.05561493758622855 +75460,377.2999999996931,-0.05561486637223064 +75461,377.3049999996931,-0.05561479516783925 +75462,377.3099999996931,-0.05561472397305171 +75463,377.3149999996931,-0.05561465278786537 +75464,377.3199999996931,-0.05561458161227754 +75465,377.3249999996931,-0.05561451044628555 +75466,377.3299999996931,-0.05561443928988675 +75467,377.3349999996931,-0.05561436814307845 +75468,377.3399999996931,-0.055614297005857995 +75469,377.3449999996931,-0.05561422587822271 +75470,377.34999999969307,-0.055614154760169954 +75471,377.35499999969306,-0.05561408365169703 +75472,377.35999999969306,-0.05561401255280129 +75473,377.36499999969305,-0.05561394146348006 +75474,377.36999999969305,-0.05561387038373069 +75475,377.37499999969305,-0.055613799313550503 +75476,377.37999999969304,-0.05561372825293684 +75477,377.38499999969304,-0.05561365720188704 +75478,377.38999999969303,-0.055613586160398444 +75479,377.394999999693,-0.05561351512846838 +75480,377.399999999693,-0.055613444106094194 +75481,377.404999999693,-0.05561337309327322 +75482,377.409999999693,-0.05561330209000281 +75483,377.414999999693,-0.05561323109628029 +75484,377.419999999693,-0.055613160112103 +75485,377.424999999693,-0.05561308913746831 +75486,377.429999999693,-0.05561301817237353 +75487,377.434999999693,-0.05561294721681601 +75488,377.439999999693,-0.05561287627079311 +75489,377.444999999693,-0.05561280533430215 +75490,377.449999999693,-0.055612734407340485 +75491,377.454999999693,-0.055612663489905456 +75492,377.45999999969297,-0.05561259258199442 +75493,377.46499999969296,-0.05561252168360471 +75494,377.46999999969296,-0.055612450794733675 +75495,377.47499999969295,-0.05561237991537867 +75496,377.47999999969295,-0.05561230904553702 +75497,377.48499999969295,-0.055612238185206095 +75498,377.48999999969294,-0.05561216733438323 +75499,377.49499999969294,-0.055612096493065775 +75500,377.49999999969293,-0.0556120256612511 +75501,377.5049999996929,-0.05561195483893653 +75502,377.5099999996929,-0.05561188402611941 +75503,377.5149999996929,-0.05561181322279711 +75504,377.5199999996929,-0.05561174242896698 +75505,377.5249999996929,-0.05561167164462637 +75506,377.5299999996929,-0.05561160086977262 +75507,377.5349999996929,-0.05561153010440309 +75508,377.5399999996929,-0.05561145934851514 +75509,377.5449999996929,-0.05561138860210612 +75510,377.5499999996929,-0.05561131786517338 +75511,377.5549999996929,-0.05561124713771427 +75512,377.5599999996929,-0.05561117641972616 +75513,377.5649999996929,-0.05561110571120641 +75514,377.56999999969287,-0.055611035012152345 +75515,377.57499999969286,-0.055610964322561345 +75516,377.57999999969286,-0.05561089364243077 +75517,377.58499999969285,-0.05561082297175797 +75518,377.58999999969285,-0.05561075231054031 +75519,377.59499999969285,-0.055610681658775134 +75520,377.59999999969284,-0.05561061101645982 +75521,377.60499999969284,-0.055610540383591714 +75522,377.60999999969283,-0.05561046976016819 +75523,377.6149999996928,-0.055610399146186595 +75524,377.6199999996928,-0.05561032854164429 +75525,377.6249999996928,-0.055610257946538656 +75526,377.6299999996928,-0.05561018736086703 +75527,377.6349999996928,-0.05561011678462678 +75528,377.6399999996928,-0.05561004621781528 +75529,377.6449999996928,-0.0556099756604299 +75530,377.6499999996928,-0.05560990511246799 +75531,377.6549999996928,-0.05560983457392692 +75532,377.6599999996928,-0.055609764044804055 +75533,377.6649999996928,-0.05560969352509676 +75534,377.6699999996928,-0.0556096230148024 +75535,377.6749999996928,-0.055609552513918345 +75536,377.67999999969277,-0.05560948202244197 +75537,377.68499999969276,-0.05560941154037063 +75538,377.68999999969276,-0.05560934106770169 +75539,377.69499999969275,-0.05560927060443254 +75540,377.69999999969275,-0.05560920015056053 +75541,377.70499999969275,-0.05560912970608304 +75542,377.70999999969274,-0.055609059270997435 +75543,377.71499999969274,-0.055608988845301084 +75544,377.71999999969273,-0.05560891842899138 +75545,377.7249999996927,-0.05560884802206566 +75546,377.7299999996927,-0.05560877762452132 +75547,377.7349999996927,-0.05560870723635573 +75548,377.7399999996927,-0.05560863685756626 +75549,377.7449999996927,-0.05560856648815029 +75550,377.7499999996927,-0.055608496128105186 +75551,377.7549999996927,-0.055608425777428326 +75552,377.7599999996927,-0.05560835543611709 +75553,377.7649999996927,-0.05560828510416886 +75554,377.7699999996927,-0.055608214781581 +75555,377.7749999996927,-0.055608144468350884 +75556,377.7799999996927,-0.0556080741644759 +75557,377.7849999996927,-0.05560800386995341 +75558,377.78999999969267,-0.05560793358478081 +75559,377.79499999969266,-0.05560786330895547 +75560,377.79999999969266,-0.05560779304247478 +75561,377.80499999969265,-0.05560772278533612 +75562,377.80999999969265,-0.05560765253753686 +75563,377.81499999969265,-0.05560758229907439 +75564,377.81999999969264,-0.05560751206994608 +75565,377.82499999969264,-0.055607441850149326 +75566,377.82999999969263,-0.055607371639681505 +75567,377.8349999996926,-0.055607301438539994 +75568,377.8399999996926,-0.05560723124672218 +75569,377.8449999996926,-0.055607161064225454 +75570,377.8499999996926,-0.05560709089104719 +75571,377.8549999996926,-0.05560702072718479 +75572,377.8599999996926,-0.05560695057263563 +75573,377.8649999996926,-0.05560688042739709 +75574,377.8699999996926,-0.05560681029146656 +75575,377.8749999996926,-0.05560674016484143 +75576,377.8799999996926,-0.05560667004751909 +75577,377.8849999996926,-0.05560659993949693 +75578,377.8899999996926,-0.05560652984077233 +75579,377.8949999996926,-0.055606459751342686 +75580,377.89999999969257,-0.05560638967120538 +75581,377.90499999969256,-0.055606319600357806 +75582,377.90999999969256,-0.05560624953879736 +75583,377.91499999969255,-0.055606179486521426 +75584,377.91999999969255,-0.0556061094435274 +75585,377.92499999969255,-0.05560603940981268 +75586,377.92999999969254,-0.055605969385374654 +75587,377.93499999969254,-0.05560589937021071 +75588,377.93999999969253,-0.05560582936431824 +75589,377.9449999996925,-0.05560575936769464 +75590,377.9499999996925,-0.055605689380337324 +75591,377.9549999996925,-0.055605619402243664 +75592,377.9599999996925,-0.055605549433411054 +75593,377.9649999996925,-0.05560547947383691 +75594,377.9699999996925,-0.05560540952351862 +75595,377.9749999996925,-0.05560533958245357 +75596,377.9799999996925,-0.05560526965063917 +75597,377.9849999996925,-0.05560519972807282 +75598,377.9899999996925,-0.05560512981475192 +75599,377.9949999996925,-0.05560505991067386 +75600,377.9999999996925,-0.05560499001583604 +75601,378.0049999996925,-0.05560492013023587 +75602,378.00999999969247,-0.05560485025387074 +75603,378.01499999969246,-0.05560478038673806 +75604,378.01999999969246,-0.05560471052883523 +75605,378.02499999969245,-0.05560464068015965 +75606,378.02999999969245,-0.05560457084070872 +75607,378.03499999969245,-0.055604501010479854 +75608,378.03999999969244,-0.055604431189470435 +75609,378.04499999969244,-0.055604361377677894 +75610,378.04999999969243,-0.05560429157509961 +75611,378.0549999996924,-0.05560422178173301 +75612,378.0599999996924,-0.055604151997575485 +75613,378.0649999996924,-0.05560408222262446 +75614,378.0699999996924,-0.055604012456877315 +75615,378.0749999996924,-0.05560394270033148 +75616,378.0799999996924,-0.05560387295298435 +75617,378.0849999996924,-0.05560380321483334 +75618,378.0899999996924,-0.05560373348587585 +75619,378.0949999996924,-0.055603663766109306 +75620,378.0999999996924,-0.05560359405553111 +75621,378.1049999996924,-0.05560352435413866 +75622,378.1099999996924,-0.055603454661929376 +75623,378.1149999996924,-0.05560338497890068 +75624,378.11999999969237,-0.05560331530504998 +75625,378.12499999969236,-0.055603245640374666 +75626,378.12999999969236,-0.05560317598487218 +75627,378.13499999969235,-0.05560310633853992 +75628,378.13999999969235,-0.05560303670137531 +75629,378.14499999969235,-0.05560296707337574 +75630,378.14999999969234,-0.05560289745453865 +75631,378.15499999969234,-0.05560282784486145 +75632,378.15999999969233,-0.055602758244341556 +75633,378.1649999996923,-0.055602688652976386 +75634,378.1699999996923,-0.05560261907076334 +75635,378.1749999996923,-0.055602549497699855 +75636,378.1799999996923,-0.055602479933783346 +75637,378.1849999996923,-0.055602410379011216 +75638,378.1899999996923,-0.055602340833380906 +75639,378.1949999996923,-0.05560227129688983 +75640,378.1999999996923,-0.055602201769535384 +75641,378.2049999996923,-0.055602132251315016 +75642,378.2099999996923,-0.05560206274222614 +75643,378.2149999996923,-0.055601993242266175 +75644,378.2199999996923,-0.05560192375143254 +75645,378.2249999996923,-0.05560185426972267 +75646,378.22999999969227,-0.05560178479713396 +75647,378.23499999969226,-0.05560171533366386 +75648,378.23999999969226,-0.05560164587930979 +75649,378.24499999969225,-0.05560157643406916 +75650,378.24999999969225,-0.055601506997939414 +75651,378.25499999969225,-0.05560143757091797 +75652,378.25999999969224,-0.05560136815300224 +75653,378.26499999969224,-0.055601298744189676 +75654,378.26999999969223,-0.05560122934447769 +75655,378.2749999996922,-0.0556011599538637 +75656,378.2799999996922,-0.055601090572345156 +75657,378.2849999996922,-0.05560102119991947 +75658,378.2899999996922,-0.055600951836584075 +75659,378.2949999996922,-0.055600882482336404 +75660,378.2999999996922,-0.055600813137173875 +75661,378.3049999996922,-0.05560074380109393 +75662,378.3099999996922,-0.055600674474093996 +75663,378.3149999996922,-0.05560060515617151 +75664,378.3199999996922,-0.0556005358473239 +75665,378.3249999996922,-0.05560046654754859 +75666,378.3299999996922,-0.05560039725684303 +75667,378.3349999996922,-0.05560032797520464 +75668,378.33999999969217,-0.055600258702630856 +75669,378.34499999969216,-0.055600189439119124 +75670,378.34999999969216,-0.05560012018466687 +75671,378.35499999969215,-0.05560005093927151 +75672,378.35999999969215,-0.055599981702930505 +75673,378.36499999969215,-0.05559991247564129 +75674,378.36999999969214,-0.05559984325740129 +75675,378.37499999969214,-0.05559977404820795 +75676,378.37999999969213,-0.055599704848058706 +75677,378.3849999996921,-0.055599635656950995 +75678,378.3899999996921,-0.05559956647488227 +75679,378.3949999996921,-0.05559949730184994 +75680,378.3999999996921,-0.055599428137851466 +75681,378.4049999996921,-0.05559935898288428 +75682,378.4099999996921,-0.05559928983694584 +75683,378.4149999996921,-0.05559922070003357 +75684,378.4199999996921,-0.05559915157214492 +75685,378.4249999996921,-0.05559908245327732 +75686,378.4299999996921,-0.055599013343428226 +75687,378.4349999996921,-0.05559894424259508 +75688,378.4399999996921,-0.05559887515077533 +75689,378.4449999996921,-0.05559880606796641 +75690,378.44999999969207,-0.055598736994165766 +75691,378.45499999969206,-0.055598667929370835 +75692,378.45999999969206,-0.055598598873579076 +75693,378.46499999969205,-0.05559852982678794 +75694,378.46999999969205,-0.05559846078899486 +75695,378.47499999969205,-0.05559839176019729 +75696,378.47999999969204,-0.055598322740392676 +75697,378.48499999969204,-0.05559825372957846 +75698,378.48999999969203,-0.0555981847277521 +75699,378.494999999692,-0.055598115734911045 +75700,378.499999999692,-0.05559804675105275 +75701,378.504999999692,-0.05559797777617466 +75702,378.509999999692,-0.055597908810274224 +75703,378.514999999692,-0.055597839853348874 +75704,378.519999999692,-0.05559777090539609 +75705,378.524999999692,-0.05559770196641331 +75706,378.529999999692,-0.055597633036397996 +75707,378.534999999692,-0.055597564115347595 +75708,378.539999999692,-0.05559749520325957 +75709,378.544999999692,-0.05559742630013136 +75710,378.549999999692,-0.055597357405960425 +75711,378.554999999692,-0.05559728852074423 +75712,378.55999999969197,-0.05559721964448022 +75713,378.56499999969196,-0.05559715077716585 +75714,378.56999999969196,-0.05559708191879858 +75715,378.57499999969195,-0.05559701306937588 +75716,378.57999999969195,-0.05559694422889518 +75717,378.58499999969195,-0.05559687539735397 +75718,378.58999999969194,-0.05559680657474968 +75719,378.59499999969194,-0.05559673776107978 +75720,378.59999999969193,-0.05559666895634173 +75721,378.6049999996919,-0.055596600160533 +75722,378.6099999996919,-0.05559653137365103 +75723,378.6149999996919,-0.0555964625956933 +75724,378.6199999996919,-0.055596393826657264 +75725,378.6249999996919,-0.055596325066540386 +75726,378.6299999996919,-0.055596256315340126 +75727,378.6349999996919,-0.05559618757305394 +75728,378.6399999996919,-0.055596118839679305 +75729,378.6449999996919,-0.05559605011521369 +75730,378.6499999996919,-0.055595981399654534 +75731,378.6549999996919,-0.05559591269299932 +75732,378.6599999996919,-0.05559584399524552 +75733,378.6649999996919,-0.05559577530639058 +75734,378.66999999969187,-0.05559570662643198 +75735,378.67499999969186,-0.055595637955367185 +75736,378.67999999969186,-0.05559556929319365 +75737,378.68499999969185,-0.05559550063990886 +75738,378.68999999969185,-0.055595431995510286 +75739,378.69499999969185,-0.055595363359995376 +75740,378.69999999969184,-0.05559529473336161 +75741,378.70499999969184,-0.05559522611560648 +75742,378.70999999969183,-0.05559515750672743 +75743,378.7149999996918,-0.05559508890672194 +75744,378.7199999996918,-0.055595020315587475 +75745,378.7249999996918,-0.05559495173332151 +75746,378.7299999996918,-0.05559488315992151 +75747,378.7349999996918,-0.05559481459538496 +75748,378.7399999996918,-0.055594746039709333 +75749,378.7449999996918,-0.055594677492892104 +75750,378.7499999996918,-0.055594608954930735 +75751,378.7549999996918,-0.055594540425822715 +75752,378.7599999996918,-0.05559447190556551 +75753,378.7649999996918,-0.055594403394156604 +75754,378.7699999996918,-0.05559433489159346 +75755,378.7749999996918,-0.05559426639787357 +75756,378.77999999969177,-0.05559419791299441 +75757,378.78499999969176,-0.05559412943695344 +75758,378.78999999969176,-0.05559406096974816 +75759,378.79499999969175,-0.055593992511376034 +75760,378.79999999969175,-0.05559392406183454 +75761,378.80499999969174,-0.055593855621121166 +75762,378.80999999969174,-0.0555937871892334 +75763,378.81499999969174,-0.055593718766168705 +75764,378.81999999969173,-0.05559365035192458 +75765,378.8249999996917,-0.05559358194649849 +75766,378.8299999996917,-0.05559351354988793 +75767,378.8349999996917,-0.055593445162090374 +75768,378.8399999996917,-0.05559337678310331 +75769,378.8449999996917,-0.05559330841292422 +75770,378.8499999996917,-0.05559324005155058 +75771,378.8549999996917,-0.05559317169897989 +75772,378.8599999996917,-0.055593103355209623 +75773,378.8649999996917,-0.05559303502023727 +75774,378.8699999996917,-0.055592966694060324 +75775,378.8749999996917,-0.05559289837667626 +75776,378.8799999996917,-0.05559283006808256 +75777,378.8849999996917,-0.05559276176827673 +75778,378.88999999969167,-0.05559269347725625 +75779,378.89499999969166,-0.05559262519501861 +75780,378.89999999969166,-0.0555925569215613 +75781,378.90499999969165,-0.0555924886568818 +75782,378.90999999969165,-0.0555924204009776 +75783,378.91499999969164,-0.05559235215384621 +75784,378.91999999969164,-0.0555922839154851 +75785,378.92499999969164,-0.055592215685891774 +75786,378.92999999969163,-0.05559214746506372 +75787,378.9349999996916,-0.05559207925299843 +75788,378.9399999996916,-0.0555920110496934 +75789,378.9449999996916,-0.05559194285514612 +75790,378.9499999996916,-0.055591874669354086 +75791,378.9549999996916,-0.05559180649231479 +75792,378.9599999996916,-0.055591738324025725 +75793,378.9649999996916,-0.05559167016448439 +75794,378.9699999996916,-0.05559160201368828 +75795,378.9749999996916,-0.05559153387163488 +75796,378.9799999996916,-0.055591465738321716 +75797,378.9849999996916,-0.05559139761374627 +75798,378.9899999996916,-0.05559132949790603 +75799,378.9949999996916,-0.05559126139079851 +75800,378.99999999969157,-0.055591193292421195 +75801,379.00499999969156,-0.055591125202771596 +75802,379.00999999969156,-0.0555910571218472 +75803,379.01499999969155,-0.05559098904964552 +75804,379.01999999969155,-0.055590920986164034 +75805,379.02499999969154,-0.05559085293140028 +75806,379.02999999969154,-0.05559078488535173 +75807,379.03499999969154,-0.055590716848015885 +75808,379.03999999969153,-0.05559064881939027 +75809,379.0449999996915,-0.05559058079947238 +75810,379.0499999996915,-0.055590512788259716 +75811,379.0549999996915,-0.05559044478574978 +75812,379.0599999996915,-0.05559037679194009 +75813,379.0649999996915,-0.05559030880682814 +75814,379.0699999996915,-0.05559024083041142 +75815,379.0749999996915,-0.055590172862687456 +75816,379.0799999996915,-0.05559010490365376 +75817,379.0849999996915,-0.05559003695330782 +75818,379.0899999996915,-0.05558996901164716 +75819,379.0949999996915,-0.05558990107866927 +75820,379.0999999996915,-0.05558983315437167 +75821,379.1049999996915,-0.05558976523875188 +75822,379.10999999969147,-0.0555896973318074 +75823,379.11499999969146,-0.05558962943353574 +75824,379.11999999969146,-0.05558956154393439 +75825,379.12499999969145,-0.055589493663000894 +75826,379.12999999969145,-0.05558942579073275 +75827,379.13499999969144,-0.055589357927127464 +75828,379.13999999969144,-0.055589290072182565 +75829,379.14499999969144,-0.05558922222589554 +75830,379.14999999969143,-0.05558915438826392 +75831,379.1549999996914,-0.055589086559285225 +75832,379.1599999996914,-0.055589018738956955 +75833,379.1649999996914,-0.05558895092727663 +75834,379.1699999996914,-0.05558888312424176 +75835,379.1749999996914,-0.05558881532984988 +75836,379.1799999996914,-0.05558874754409848 +75837,379.1849999996914,-0.055588679766985095 +75838,379.1899999996914,-0.05558861199850723 +75839,379.1949999996914,-0.05558854423866242 +75840,379.1999999996914,-0.05558847648744818 +75841,379.2049999996914,-0.05558840874486201 +75842,379.2099999996914,-0.055588341010901446 +75843,379.2149999996914,-0.055588273285564004 +75844,379.21999999969137,-0.0555882055688472 +75845,379.22499999969136,-0.05558813786074856 +75846,379.22999999969136,-0.05558807016126561 +75847,379.23499999969135,-0.05558800247039585 +75848,379.23999999969135,-0.05558793478813682 +75849,379.24499999969134,-0.055587867114486045 +75850,379.24999999969134,-0.05558779944944104 +75851,379.25499999969134,-0.05558773179299932 +75852,379.25999999969133,-0.05558766414515843 +75853,379.2649999996913,-0.05558759650591588 +75854,379.2699999996913,-0.055587528875269215 +75855,379.2749999996913,-0.05558746125321594 +75856,379.2799999996913,-0.055587393639753575 +75857,379.2849999996913,-0.05558732603487967 +75858,379.2899999996913,-0.05558725843859173 +75859,379.2949999996913,-0.0555871908508873 +75860,379.2999999996913,-0.055587123271763884 +75861,379.3049999996913,-0.055587055701219044 +75862,379.3099999996913,-0.05558698813925028 +75863,379.3149999996913,-0.05558692058585514 +75864,379.3199999996913,-0.05558685304103115 +75865,379.3249999996913,-0.05558678550477583 +75866,379.32999999969127,-0.055586717977086725 +75867,379.33499999969126,-0.05558665045796136 +75868,379.33999999969126,-0.055586582947397246 +75869,379.34499999969125,-0.055586515445391955 +75870,379.34999999969125,-0.05558644795194299 +75871,379.35499999969124,-0.05558638046704789 +75872,379.35999999969124,-0.055586312990704205 +75873,379.36499999969124,-0.05558624552290945 +75874,379.36999999969123,-0.05558617806366117 +75875,379.3749999996912,-0.05558611061295689 +75876,379.3799999996912,-0.05558604317079416 +75877,379.3849999996912,-0.0555859757371705 +75878,379.3899999996912,-0.05558590831208346 +75879,379.3949999996912,-0.055585840895530585 +75880,379.3999999996912,-0.055585773487509385 +75881,379.4049999996912,-0.05558570608801742 +75882,379.4099999996912,-0.05558563869705222 +75883,379.4149999996912,-0.05558557131461133 +75884,379.4199999996912,-0.055585503940692275 +75885,379.4249999996912,-0.05558543657529262 +75886,379.4299999996912,-0.05558536921840988 +75887,379.4349999996912,-0.05558530187004162 +75888,379.43999999969117,-0.05558523453018536 +75889,379.44499999969116,-0.05558516719883865 +75890,379.44999999969116,-0.055585099875999036 +75891,379.45499999969115,-0.05558503256166405 +75892,379.45999999969115,-0.05558496525583125 +75893,379.46499999969114,-0.055584897958498164 +75894,379.46999999969114,-0.05558483066966234 +75895,379.47499999969114,-0.05558476338932134 +75896,379.47999999969113,-0.05558469611747269 +75897,379.4849999996911,-0.05558462885411394 +75898,379.4899999996911,-0.055584561599242646 +75899,379.4949999996911,-0.05558449435285635 +75900,379.4999999996911,-0.05558442711495259 +75901,379.5049999996911,-0.05558435988552893 +75902,379.5099999996911,-0.0555842926645829 +75903,379.5149999996911,-0.055584225452112064 +75904,379.5199999996911,-0.05558415824811397 +75905,379.5249999996911,-0.055584091052586146 +75906,379.5299999996911,-0.05558402386552616 +75907,379.5349999996911,-0.05558395668693157 +75908,379.5399999996911,-0.05558388951679991 +75909,379.5449999996911,-0.055583822355128744 +75910,379.54999999969107,-0.05558375520191561 +75911,379.55499999969106,-0.05558368805715807 +75912,379.55999999969106,-0.05558362092085368 +75913,379.56499999969105,-0.05558355379299999 +75914,379.56999999969105,-0.05558348667359455 +75915,379.57499999969104,-0.05558341956263492 +75916,379.57999999969104,-0.05558335246011865 +75917,379.58499999969104,-0.0555832853660433 +75918,379.58999999969103,-0.05558321828040643 +75919,379.594999999691,-0.05558315120320559 +75920,379.599999999691,-0.05558308413443834 +75921,379.604999999691,-0.05558301707410223 +75922,379.609999999691,-0.05558295002219482 +75923,379.614999999691,-0.05558288297871367 +75924,379.619999999691,-0.05558281594365634 +75925,379.624999999691,-0.0555827489170204 +75926,379.629999999691,-0.05558268189880339 +75927,379.634999999691,-0.05558261488900287 +75928,379.639999999691,-0.055582547887616414 +75929,379.644999999691,-0.05558248089464158 +75930,379.649999999691,-0.05558241391007593 +75931,379.654999999691,-0.05558234693391701 +75932,379.65999999969097,-0.055582279966162405 +75933,379.66499999969096,-0.05558221300680967 +75934,379.66999999969096,-0.05558214605585636 +75935,379.67499999969095,-0.055582079113300056 +75936,379.67999999969095,-0.0555820121791383 +75937,379.68499999969094,-0.05558194525336869 +75938,379.68999999969094,-0.05558187833598875 +75939,379.69499999969094,-0.05558181142699607 +75940,379.69999999969093,-0.05558174452638822 +75941,379.7049999996909,-0.05558167763416276 +75942,379.7099999996909,-0.055581610750317256 +75943,379.7149999996909,-0.055581543874849274 +75944,379.7199999996909,-0.05558147700775639 +75945,379.7249999996909,-0.05558141014903616 +75946,379.7299999996909,-0.055581343298686164 +75947,379.7349999996909,-0.05558127645670398 +75948,379.7399999996909,-0.05558120962308715 +75949,379.7449999996909,-0.055581142797833265 +75950,379.7499999996909,-0.0555810759809399 +75951,379.7549999996909,-0.05558100917240462 +75952,379.7599999996909,-0.055580942372224995 +75953,379.7649999996909,-0.0555808755803986 +75954,379.76999999969087,-0.055580808796922995 +75955,379.77499999969086,-0.05558074202179577 +75956,379.77999999969086,-0.0555806752550145 +75957,379.78499999969085,-0.05558060849657675 +75958,379.78999999969085,-0.0555805417464801 +75959,379.79499999969084,-0.055580475004722116 +75960,379.79999999969084,-0.05558040827130039 +75961,379.80499999969084,-0.05558034154621248 +75962,379.80999999969083,-0.055580274829455975 +75963,379.8149999996908,-0.05558020812102845 +75964,379.8199999996908,-0.055580141420927494 +75965,379.8249999996908,-0.05558007472915067 +75966,379.8299999996908,-0.05558000804569555 +75967,379.8349999996908,-0.055579941370559736 +75968,379.8399999996908,-0.05557987470374079 +75969,379.8449999996908,-0.055579808045236295 +75970,379.8499999996908,-0.05557974139504384 +75971,379.8549999996908,-0.055579674753161 +75972,379.8599999996908,-0.05557960811958536 +75973,379.8649999996908,-0.05557954149431448 +75974,379.8699999996908,-0.05557947487734598 +75975,379.8749999996908,-0.05557940826867741 +75976,379.87999999969077,-0.05557934166830639 +75977,379.88499999969076,-0.055579275076230464 +75978,379.88999999969076,-0.05557920849244724 +75979,379.89499999969075,-0.05557914191695429 +75980,379.89999999969075,-0.05557907534974921 +75981,379.90499999969074,-0.055579008790829575 +75982,379.90999999969074,-0.05557894224019299 +75983,379.91499999969074,-0.055578875697837024 +75984,379.91999999969073,-0.05557880916375928 +75985,379.9249999996907,-0.05557874263795732 +75986,379.9299999996907,-0.05557867612042875 +75987,379.9349999996907,-0.05557860961117116 +75988,379.9399999996907,-0.05557854311018214 +75989,379.9449999996907,-0.05557847661745927 +75990,379.9499999996907,-0.05557841013300016 +75991,379.9549999996907,-0.05557834365680238 +75992,379.9599999996907,-0.055578277188863524 +75993,379.9649999996907,-0.0555782107291812 +75994,379.9699999996907,-0.05557814427775297 +75995,379.9749999996907,-0.055578077834576446 +75996,379.9799999996907,-0.05557801139964921 +75997,379.9849999996907,-0.05557794497296888 +75998,379.98999999969067,-0.05557787855453303 +75999,379.99499999969066,-0.055577812144339246 +76000,379.99999999969066,-0.05557774574238515 +76001,380.00499999969065,-0.055577679348668314 +76002,380.00999999969065,-0.05557761296318634 +76003,380.01499999969064,-0.05557754658593683 +76004,380.01999999969064,-0.055577480216917365 +76005,380.02499999969064,-0.05557741385612556 +76006,380.02999999969063,-0.05557734750355901 +76007,380.0349999996906,-0.05557728115921531 +76008,380.0399999996906,-0.05557721482309205 +76009,380.0449999996906,-0.05557714849518685 +76010,380.0499999996906,-0.05557708217549728 +76011,380.0549999996906,-0.055577015864020966 +76012,380.0599999996906,-0.0555769495607555 +76013,380.0649999996906,-0.05557688326569847 +76014,380.0699999996906,-0.055576816978847504 +76015,380.0749999996906,-0.055576750700200184 +76016,380.0799999996906,-0.05557668442975411 +76017,380.0849999996906,-0.05557661816750689 +76018,380.0899999996906,-0.055576551913456146 +76019,380.0949999996906,-0.05557648566759946 +76020,380.09999999969057,-0.05557641942993443 +76021,380.10499999969056,-0.055576353200458686 +76022,380.10999999969056,-0.05557628697916981 +76023,380.11499999969055,-0.05557622076606542 +76024,380.11999999969055,-0.05557615456114313 +76025,380.12499999969054,-0.05557608836440052 +76026,380.12999999969054,-0.055576022175835224 +76027,380.13499999969054,-0.05557595599544483 +76028,380.13999999969053,-0.05557588982322696 +76029,380.1449999996905,-0.05557582365917922 +76030,380.1499999996905,-0.05557575750329922 +76031,380.1549999996905,-0.05557569135558455 +76032,380.1599999996905,-0.05557562521603285 +76033,380.1649999996905,-0.055575559084641714 +76034,380.1699999996905,-0.05557549296140874 +76035,380.1749999996905,-0.055575426846331565 +76036,380.1799999996905,-0.05557536073940779 +76037,380.1849999996905,-0.05557529464063502 +76038,380.1899999996905,-0.05557522855001088 +76039,380.1949999996905,-0.055575162467532975 +76040,380.1999999996905,-0.05557509639319892 +76041,380.2049999996905,-0.05557503032700633 +76042,380.20999999969047,-0.05557496426895283 +76043,380.21499999969046,-0.055574898219036016 +76044,380.21999999969046,-0.055574832177253515 +76045,380.22499999969045,-0.05557476614360293 +76046,380.22999999969045,-0.055574700118081896 +76047,380.23499999969044,-0.05557463410068802 +76048,380.23999999969044,-0.05557456809141891 +76049,380.24499999969044,-0.055574502090272204 +76050,380.24999999969043,-0.05557443609724551 +76051,380.2549999996904,-0.05557437011233646 +76052,380.2599999996904,-0.05557430413554265 +76053,380.2649999996904,-0.05557423816686172 +76054,380.2699999996904,-0.05557417220629128 +76055,380.2749999996904,-0.05557410625382894 +76056,380.2799999996904,-0.055574040309472356 +76057,380.2849999996904,-0.0555739743732191 +76058,380.2899999996904,-0.055573908445066836 +76059,380.2949999996904,-0.05557384252501316 +76060,380.2999999996904,-0.055573776613055716 +76061,380.3049999996904,-0.05557371070919211 +76062,380.3099999996904,-0.05557364481341999 +76063,380.3149999996904,-0.05557357892573696 +76064,380.31999999969037,-0.05557351304614063 +76065,380.32499999969036,-0.05557344717462866 +76066,380.32999999969036,-0.05557338131119866 +76067,380.33499999969035,-0.05557331545584826 +76068,380.33999999969035,-0.055573249608575084 +76069,380.34499999969034,-0.055573183769376755 +76070,380.34999999969034,-0.055573117938250906 +76071,380.35499999969034,-0.05557305211519516 +76072,380.35999999969033,-0.055572986300207135 +76073,380.3649999996903,-0.05557292049328449 +76074,380.3699999996903,-0.055572854694424835 +76075,380.3749999996903,-0.055572788903625804 +76076,380.3799999996903,-0.05557272312088503 +76077,380.3849999996903,-0.055572657346200136 +76078,380.3899999996903,-0.05557259157956875 +76079,380.3949999996903,-0.05557252582098853 +76080,380.3999999996903,-0.05557246007045708 +76081,380.4049999996903,-0.05557239432797205 +76082,380.4099999996903,-0.05557232859353107 +76083,380.4149999996903,-0.05557226286713177 +76084,380.4199999996903,-0.055572197148771776 +76085,380.4249999996903,-0.05557213143844874 +76086,380.42999999969027,-0.05557206573616028 +76087,380.43499999969026,-0.055572000041904046 +76088,380.43999999969026,-0.05557193435567767 +76089,380.44499999969025,-0.05557186867747879 +76090,380.44999999969025,-0.055571803007305035 +76091,380.45499999969024,-0.05557173734515405 +76092,380.45999999969024,-0.05557167169102347 +76093,380.46499999969024,-0.055571606044910925 +76094,380.46999999969023,-0.055571540406814064 +76095,380.4749999996902,-0.05557147477673053 +76096,380.4799999996902,-0.055571409154657955 +76097,380.4849999996902,-0.05557134354059399 +76098,380.4899999996902,-0.055571277934536256 +76099,380.4949999996902,-0.05557121233648242 +76100,380.4999999996902,-0.0555711467464301 +76101,380.5049999996902,-0.05557108116437695 +76102,380.5099999996902,-0.05557101559032061 +76103,380.5149999996902,-0.055570950024258735 +76104,380.5199999996902,-0.05557088446618894 +76105,380.5249999996902,-0.055570818916108905 +76106,380.5299999996902,-0.05557075337401625 +76107,380.53499999969017,-0.055570687839908615 +76108,380.53999999969017,-0.05557062231378366 +76109,380.54499999969016,-0.055570556795639034 +76110,380.54999999969016,-0.055570491285472375 +76111,380.55499999969015,-0.05557042578328132 +76112,380.55999999969015,-0.05557036028906354 +76113,380.56499999969014,-0.05557029480281666 +76114,380.56999999969014,-0.055570229324538346 +76115,380.57499999969014,-0.05557016385422624 +76116,380.57999999969013,-0.05557009839187798 +76117,380.5849999996901,-0.055570032937491236 +76118,380.5899999996901,-0.05556996749106364 +76119,380.5949999996901,-0.05556990205259285 +76120,380.5999999996901,-0.05556983662207653 +76121,380.6049999996901,-0.055569771199512306 +76122,380.6099999996901,-0.05556970578489784 +76123,380.6149999996901,-0.05556964037823079 +76124,380.6199999996901,-0.055569574979508804 +76125,380.6249999996901,-0.05556950958872953 +76126,380.6299999996901,-0.055569444205890633 +76127,380.6349999996901,-0.055569378830989766 +76128,380.6399999996901,-0.05556931346402458 +76129,380.64499999969007,-0.055569248104992724 +76130,380.64999999969007,-0.05556918275389187 +76131,380.65499999969006,-0.055569117410719654 +76132,380.65999999969006,-0.05556905207547375 +76133,380.66499999969005,-0.05556898674815182 +76134,380.66999999969005,-0.05556892142875149 +76135,380.67499999969004,-0.05556885611727046 +76136,380.67999999969004,-0.055568790813706345 +76137,380.68499999969004,-0.055568725518056826 +76138,380.68999999969003,-0.05556866023031957 +76139,380.69499999969,-0.05556859495049221 +76140,380.69999999969,-0.05556852967857243 +76141,380.70499999969,-0.05556846441455789 +76142,380.70999999969,-0.055568399158446254 +76143,380.71499999969,-0.05556833391023517 +76144,380.71999999969,-0.0555682686699223 +76145,380.72499999969,-0.05556820343750532 +76146,380.72999999969,-0.05556813821298188 +76147,380.73499999969,-0.055568072996349645 +76148,380.73999999969,-0.05556800778760628 +76149,380.74499999969,-0.05556794258674946 +76150,380.74999999969,-0.055567877393776825 +76151,380.75499999968997,-0.05556781220868606 +76152,380.75999999968997,-0.05556774703147484 +76153,380.76499999968996,-0.055567681862140804 +76154,380.76999999968996,-0.05556761670068164 +76155,380.77499999968995,-0.05556755154709501 +76156,380.77999999968995,-0.055567486401378575 +76157,380.78499999968994,-0.05556742126353001 +76158,380.78999999968994,-0.055567356133546984 +76159,380.79499999968994,-0.05556729101142716 +76160,380.79999999968993,-0.05556722589716821 +76161,380.8049999996899,-0.05556716079076782 +76162,380.8099999996899,-0.05556709569222363 +76163,380.8149999996899,-0.05556703060153333 +76164,380.8199999996899,-0.05556696551869459 +76165,380.8249999996899,-0.05556690044370507 +76166,380.8299999996899,-0.05556683537656245 +76167,380.8349999996899,-0.05556677031726442 +76168,380.8399999996899,-0.055566705265808626 +76169,380.8449999996899,-0.055566640222192744 +76170,380.8499999996899,-0.05556657518641447 +76171,380.8549999996899,-0.05556651015847146 +76172,380.8599999996899,-0.05556644513836139 +76173,380.86499999968987,-0.05556638012608194 +76174,380.86999999968987,-0.055566315121630794 +76175,380.87499999968986,-0.05556625012500561 +76176,380.87999999968986,-0.05556618513620409 +76177,380.88499999968985,-0.05556612015522387 +76178,380.88999999968985,-0.055566055182062674 +76179,380.89499999968984,-0.05556599021671815 +76180,380.89999999968984,-0.05556592525918799 +76181,380.90499999968984,-0.05556586030946987 +76182,380.90999999968983,-0.05556579536756146 +76183,380.9149999996898,-0.05556573043346046 +76184,380.9199999996898,-0.05556566550716454 +76185,380.9249999996898,-0.055565600588671375 +76186,380.9299999996898,-0.05556553567797866 +76187,380.9349999996898,-0.055565470775084065 +76188,380.9399999996898,-0.05556540587998528 +76189,380.9449999996898,-0.05556534099267998 +76190,380.9499999996898,-0.055565276113165855 +76191,380.9549999996898,-0.05556521124144058 +76192,380.9599999996898,-0.055565146377501845 +76193,380.9649999996898,-0.055565081521347336 +76194,380.9699999996898,-0.055565016672974754 +76195,380.97499999968977,-0.055564951832381755 +76196,380.97999999968977,-0.05556488699956603 +76197,380.98499999968976,-0.055564822174525276 +76198,380.98999999968976,-0.05556475735725718 +76199,380.99499999968975,-0.05556469254775942 +76200,380.99999999968975,-0.0555646277460297 +76201,381.00499999968974,-0.0555645629520657 +76202,381.00999999968974,-0.0555644981658651 +76203,381.01499999968973,-0.055564433387425595 +76204,381.01999999968973,-0.05556436861674487 +76205,381.0249999996897,-0.055564303853820635 +76206,381.0299999996897,-0.05556423909865056 +76207,381.0349999996897,-0.05556417435123234 +76208,381.0399999996897,-0.05556410961156367 +76209,381.0449999996897,-0.05556404487964224 +76210,381.0499999996897,-0.05556398015546574 +76211,381.0549999996897,-0.05556391543903187 +76212,381.0599999996897,-0.05556385073033833 +76213,381.0649999996897,-0.0555637860293828 +76214,381.0699999996897,-0.05556372133616297 +76215,381.0749999996897,-0.05556365665067655 +76216,381.0799999996897,-0.05556359197292122 +76217,381.08499999968967,-0.05556352730289468 +76218,381.08999999968967,-0.05556346264059464 +76219,381.09499999968966,-0.055563397986018774 +76220,381.09999999968966,-0.055563333339164786 +76221,381.10499999968965,-0.055563268700030394 +76222,381.10999999968965,-0.05556320406861327 +76223,381.11499999968964,-0.05556313944491113 +76224,381.11999999968964,-0.05556307482892166 +76225,381.12499999968963,-0.055563010220642556 +76226,381.12999999968963,-0.05556294562007153 +76227,381.1349999996896,-0.05556288102720627 +76228,381.1399999996896,-0.05556281644204449 +76229,381.1449999996896,-0.05556275186458389 +76230,381.1499999996896,-0.05556268729482217 +76231,381.1549999996896,-0.05556262273275702 +76232,381.1599999996896,-0.05556255817838616 +76233,381.1649999996896,-0.05556249363170729 +76234,381.1699999996896,-0.055562429092718094 +76235,381.1749999996896,-0.05556236456141629 +76236,381.1799999996896,-0.05556230003779959 +76237,381.1849999996896,-0.05556223552186569 +76238,381.1899999996896,-0.055562171013612285 +76239,381.19499999968957,-0.055562106513037106 +76240,381.19999999968957,-0.05556204202013784 +76241,381.20499999968956,-0.05556197753491219 +76242,381.20999999968956,-0.05556191305735787 +76243,381.21499999968955,-0.055561848587472595 +76244,381.21999999968955,-0.05556178412525407 +76245,381.22499999968954,-0.055561719670699984 +76246,381.22999999968954,-0.05556165522380808 +76247,381.23499999968953,-0.055561590784576044 +76248,381.23999999968953,-0.055561526353001586 +76249,381.2449999996895,-0.05556146192908243 +76250,381.2499999996895,-0.055561397512816274 +76251,381.2549999996895,-0.055561333104200826 +76252,381.2599999996895,-0.05556126870323381 +76253,381.2649999996895,-0.055561204309912925 +76254,381.2699999996895,-0.05556113992423589 +76255,381.2749999996895,-0.05556107554620043 +76256,381.2799999996895,-0.05556101117580424 +76257,381.2849999996895,-0.055560946813045034 +76258,381.2899999996895,-0.05556088245792054 +76259,381.2949999996895,-0.05556081811042847 +76260,381.2999999996895,-0.055560753770566525 +76261,381.30499999968947,-0.055560689438332436 +76262,381.30999999968947,-0.0555606251137239 +76263,381.31499999968946,-0.055560560796738656 +76264,381.31999999968946,-0.05556049648737441 +76265,381.32499999968945,-0.05556043218562889 +76266,381.32999999968945,-0.0555603678914998 +76267,381.33499999968944,-0.05556030360498485 +76268,381.33999999968944,-0.055560239326081784 +76269,381.34499999968943,-0.055560175054788316 +76270,381.34999999968943,-0.055560110791102145 +76271,381.3549999996894,-0.055560046535021015 +76272,381.3599999996894,-0.05555998228654264 +76273,381.3649999996894,-0.05555991804566473 +76274,381.3699999996894,-0.05555985381238501 +76275,381.3749999996894,-0.055559789586701214 +76276,381.3799999996894,-0.055559725368611056 +76277,381.3849999996894,-0.05555966115811226 +76278,381.3899999996894,-0.05555959695520255 +76279,381.3949999996894,-0.05555953275987965 +76280,381.3999999996894,-0.05555946857214127 +76281,381.4049999996894,-0.05555940439198515 +76282,381.4099999996894,-0.055559340219409024 +76283,381.41499999968937,-0.055559276054410606 +76284,381.41999999968937,-0.05555921189698762 +76285,381.42499999968936,-0.0555591477471378 +76286,381.42999999968936,-0.05555908360485886 +76287,381.43499999968935,-0.055559019470148525 +76288,381.43999999968935,-0.05555895534300454 +76289,381.44499999968934,-0.05555889122342464 +76290,381.44999999968934,-0.05555882711140653 +76291,381.45499999968933,-0.05555876300694796 +76292,381.45999999968933,-0.05555869891004663 +76293,381.4649999996893,-0.055558634820700295 +76294,381.4699999996893,-0.05555857073890668 +76295,381.4749999996893,-0.055558506664663526 +76296,381.4799999996893,-0.05555844259796855 +76297,381.4849999996893,-0.05555837853881948 +76298,381.4899999996893,-0.055558314487214065 +76299,381.4949999996893,-0.05555825044315001 +76300,381.4999999996893,-0.05555818640662508 +76301,381.5049999996893,-0.055558122377637006 +76302,381.5099999996893,-0.05555805835618351 +76303,381.5149999996893,-0.05555799434226232 +76304,381.5199999996893,-0.055557930335871177 +76305,381.52499999968927,-0.05555786633700782 +76306,381.52999999968927,-0.05555780234566998 +76307,381.53499999968926,-0.055557738361855416 +76308,381.53999999968926,-0.05555767438556184 +76309,381.54499999968925,-0.05555761041678699 +76310,381.54999999968925,-0.05555754645552861 +76311,381.55499999968924,-0.05555748250178444 +76312,381.55999999968924,-0.055557418555552206 +76313,381.56499999968923,-0.055557354616829674 +76314,381.56999999968923,-0.05555729068561456 +76315,381.5749999996892,-0.05555722676190462 +76316,381.5799999996892,-0.055557162845697575 +76317,381.5849999996892,-0.055557098936991185 +76318,381.5899999996892,-0.05555703503578317 +76319,381.5949999996892,-0.05555697114207129 +76320,381.5999999996892,-0.05555690725585328 +76321,381.6049999996892,-0.05555684337712688 +76322,381.6099999996892,-0.05555677950588985 +76323,381.6149999996892,-0.055556715642139924 +76324,381.6199999996892,-0.055556651785874836 +76325,381.6249999996892,-0.05555658793709233 +76326,381.6299999996892,-0.05555652409579017 +76327,381.63499999968917,-0.05555646026196608 +76328,381.63999999968917,-0.05555639643561783 +76329,381.64499999968916,-0.055556332616743136 +76330,381.64999999968916,-0.05555626880533977 +76331,381.65499999968915,-0.05555620500140548 +76332,381.65999999968915,-0.05555614120493799 +76333,381.66499999968914,-0.055556077415935066 +76334,381.66999999968914,-0.05555601363439445 +76335,381.67499999968913,-0.05555594986031389 +76336,381.67999999968913,-0.055555886093691144 +76337,381.6849999996891,-0.055555822334523955 +76338,381.6899999996891,-0.055555758582810075 +76339,381.6949999996891,-0.055555694838547255 +76340,381.6999999996891,-0.055555631101733255 +76341,381.7049999996891,-0.05555556737236582 +76342,381.7099999996891,-0.05555550365044269 +76343,381.7149999996891,-0.05555543993596163 +76344,381.7199999996891,-0.05555537622892039 +76345,381.7249999996891,-0.055555312529316725 +76346,381.7299999996891,-0.05555524883714839 +76347,381.7349999996891,-0.05555518515241313 +76348,381.7399999996891,-0.05555512147510871 +76349,381.74499999968907,-0.05555505780523288 +76350,381.74999999968907,-0.0555549941427834 +76351,381.75499999968906,-0.05555493048775803 +76352,381.75999999968906,-0.05555486684015452 +76353,381.76499999968905,-0.05555480319997062 +76354,381.76999999968905,-0.055554739567204095 +76355,381.77499999968904,-0.05555467594185271 +76356,381.77999999968904,-0.05555461232391421 +76357,381.78499999968903,-0.055554548713386366 +76358,381.78999999968903,-0.05555448511026694 +76359,381.794999999689,-0.05555442151455367 +76360,381.799999999689,-0.05555435792624434 +76361,381.804999999689,-0.05555429434533669 +76362,381.809999999689,-0.055554230771828486 +76363,381.814999999689,-0.05555416720571751 +76364,381.819999999689,-0.0555541036470015 +76365,381.824999999689,-0.055554040095678235 +76366,381.829999999689,-0.05555397655174547 +76367,381.834999999689,-0.05555391301520096 +76368,381.839999999689,-0.05555384948604248 +76369,381.844999999689,-0.05555378596426779 +76370,381.849999999689,-0.05555372244987466 +76371,381.85499999968897,-0.05555365894286085 +76372,381.85999999968897,-0.05555359544322413 +76373,381.86499999968896,-0.05555353195096226 +76374,381.86999999968896,-0.055553468466073 +76375,381.87499999968895,-0.055553404988554135 +76376,381.87999999968895,-0.05555334151840342 +76377,381.88499999968894,-0.05555327805561862 +76378,381.88999999968894,-0.05555321460019752 +76379,381.89499999968893,-0.055553151152137874 +76380,381.89999999968893,-0.05555308771143746 +76381,381.9049999996889,-0.055553024278094026 +76382,381.9099999996889,-0.05555296085210537 +76383,381.9149999996889,-0.05555289743346926 +76384,381.9199999996889,-0.055552834022183445 +76385,381.9249999996889,-0.05555277061824572 +76386,381.9299999996889,-0.055552707221653834 +76387,381.9349999996889,-0.05555264383240557 +76388,381.9399999996889,-0.0555525804504987 +76389,381.9449999996889,-0.05555251707593099 +76390,381.9499999996889,-0.055552453708700246 +76391,381.9549999996889,-0.055552390348804194 +76392,381.9599999996889,-0.05555232699624065 +76393,381.96499999968887,-0.055552263651007364 +76394,381.96999999968887,-0.055552200313102124 +76395,381.97499999968886,-0.0555521369825227 +76396,381.97999999968886,-0.05555207365926687 +76397,381.98499999968885,-0.055552010343332396 +76398,381.98999999968885,-0.055551947034717074 +76399,381.99499999968884,-0.055551883733418676 +76400,381.99999999968884,-0.05555182043943499 +76401,382.00499999968883,-0.05555175715276379 +76402,382.00999999968883,-0.05555169387340283 +76403,382.0149999996888,-0.05555163060134991 +76404,382.0199999996888,-0.05555156733660282 +76405,382.0249999996888,-0.05555150407915932 +76406,382.0299999996888,-0.055551440829017196 +76407,382.0349999996888,-0.05555137758617424 +76408,382.0399999996888,-0.05555131435062822 +76409,382.0449999996888,-0.055551251122376924 +76410,382.0499999996888,-0.05555118790141813 +76411,382.0549999996888,-0.055551124687749635 +76412,382.0599999996888,-0.05555106148136921 +76413,382.0649999996888,-0.05555099828227463 +76414,382.0699999996888,-0.05555093509046371 +76415,382.07499999968877,-0.055550871905934204 +76416,382.07999999968877,-0.055550808728683905 +76417,382.08499999968876,-0.055550745558710604 +76418,382.08999999968876,-0.05555068239601208 +76419,382.09499999968875,-0.05555061924058613 +76420,382.09999999968875,-0.05555055609243053 +76421,382.10499999968874,-0.05555049295154308 +76422,382.10999999968874,-0.055550429817921555 +76423,382.11499999968873,-0.05555036669156374 +76424,382.11999999968873,-0.055550303572467444 +76425,382.1249999996887,-0.05555024046063044 +76426,382.1299999996887,-0.055550177356050515 +76427,382.1349999996887,-0.05555011425872546 +76428,382.1399999996887,-0.055550051168653074 +76429,382.1449999996887,-0.05554998808583115 +76430,382.1499999996887,-0.05554992501025747 +76431,382.1549999996887,-0.05554986194192982 +76432,382.1599999996887,-0.05554979888084601 +76433,382.1649999996887,-0.05554973582700383 +76434,382.1699999996887,-0.05554967278040106 +76435,382.1749999996887,-0.0555496097410355 +76436,382.1799999996887,-0.05554954670890494 +76437,382.18499999968867,-0.05554948368400719 +76438,382.18999999968867,-0.05554942066634003 +76439,382.19499999968866,-0.05554935765590125 +76440,382.19999999968866,-0.05554929465268866 +76441,382.20499999968865,-0.055549231656700046 +76442,382.20999999968865,-0.055549168667933205 +76443,382.21499999968864,-0.05554910568638594 +76444,382.21999999968864,-0.05554904271205605 +76445,382.22499999968863,-0.05554897974494132 +76446,382.22999999968863,-0.055548916785039565 +76447,382.2349999996886,-0.055548853832348574 +76448,382.2399999996886,-0.055548790886866144 +76449,382.2449999996886,-0.05554872794859009 +76450,382.2499999996886,-0.05554866501751819 +76451,382.2549999996886,-0.05554860209364826 +76452,382.2599999996886,-0.0555485391769781 +76453,382.2649999996886,-0.05554847626750551 +76454,382.2699999996886,-0.05554841336522828 +76455,382.2749999996886,-0.05554835047014423 +76456,382.2799999996886,-0.05554828758225115 +76457,382.2849999996886,-0.05554822470154684 +76458,382.2899999996886,-0.05554816182802912 +76459,382.29499999968857,-0.05554809896169579 +76460,382.29999999968857,-0.05554803610254464 +76461,382.30499999968856,-0.05554797325057349 +76462,382.30999999968856,-0.055547910405780145 +76463,382.31499999968855,-0.055547847568162396 +76464,382.31999999968855,-0.05554778473771806 +76465,382.32499999968854,-0.05554772191444495 +76466,382.32999999968854,-0.05554765909834086 +76467,382.33499999968853,-0.0555475962894036 +76468,382.33999999968853,-0.05554753348763099 +76469,382.3449999996885,-0.05554747069302083 +76470,382.3499999996885,-0.055547407905570924 +76471,382.3549999996885,-0.0555473451252791 +76472,382.3599999996885,-0.055547282352143144 +76473,382.3649999996885,-0.05554721958616088 +76474,382.3699999996885,-0.055547156827330114 +76475,382.3749999996885,-0.055547094075648645 +76476,382.3799999996885,-0.0555470313311143 +76477,382.3849999996885,-0.0555469685937249 +76478,382.3899999996885,-0.055546905863478234 +76479,382.3949999996885,-0.055546843140372136 +76480,382.3999999996885,-0.055546780424404404 +76481,382.40499999968847,-0.05554671771557285 +76482,382.40999999968847,-0.05554665501387531 +76483,382.41499999968846,-0.055546592319309585 +76484,382.41999999968846,-0.05554652963187348 +76485,382.42499999968845,-0.05554646695156482 +76486,382.42999999968845,-0.05554640427838143 +76487,382.43499999968844,-0.0555463416123211 +76488,382.43999999968844,-0.05554627895338168 +76489,382.44499999968843,-0.055546216301560945 +76490,382.44999999968843,-0.05554615365685676 +76491,382.4549999996884,-0.05554609101926691 +76492,382.4599999996884,-0.05554602838878923 +76493,382.4649999996884,-0.05554596576542153 +76494,382.4699999996884,-0.055545903149161635 +76495,382.4749999996884,-0.055545840540007364 +76496,382.4799999996884,-0.05554577793795653 +76497,382.4849999996884,-0.055545715343006966 +76498,382.4899999996884,-0.05554565275515648 +76499,382.4949999996884,-0.05554559017440292 +76500,382.4999999996884,-0.055545527600744084 +76501,382.5049999996884,-0.05554546503417778 +76502,382.5099999996884,-0.05554540247470186 +76503,382.51499999968837,-0.05554533992231414 +76504,382.51999999968837,-0.05554527737701244 +76505,382.52499999968836,-0.05554521483879458 +76506,382.52999999968836,-0.0555451523076584 +76507,382.53499999968835,-0.05554508978360171 +76508,382.53999999968835,-0.05554502726662234 +76509,382.54499999968834,-0.055544964756718114 +76510,382.54999999968834,-0.05554490225388686 +76511,382.55499999968833,-0.055544839758126414 +76512,382.55999999968833,-0.05554477726943459 +76513,382.5649999996883,-0.055544714787809216 +76514,382.5699999996883,-0.05554465231324812 +76515,382.5749999996883,-0.05554458984574914 +76516,382.5799999996883,-0.055544527385310107 +76517,382.5849999996883,-0.05554446493192883 +76518,382.5899999996883,-0.05554440248560316 +76519,382.5949999996883,-0.055544340046330916 +76520,382.5999999996883,-0.05554427761410993 +76521,382.6049999996883,-0.05554421518893804 +76522,382.6099999996883,-0.05554415277081307 +76523,382.6149999996883,-0.055544090359732866 +76524,382.6199999996883,-0.05554402795569524 +76525,382.62499999968827,-0.05554396555869803 +76526,382.62999999968827,-0.05554390316873908 +76527,382.63499999968826,-0.055543840785816215 +76528,382.63999999968826,-0.055543778409927275 +76529,382.64499999968825,-0.055543716041070085 +76530,382.64999999968825,-0.055543653679242494 +76531,382.65499999968824,-0.05554359132444233 +76532,382.65999999968824,-0.055543528976667436 +76533,382.66499999968823,-0.055543466635915625 +76534,382.66999999968823,-0.055543404302184754 +76535,382.6749999996882,-0.05554334197547266 +76536,382.6799999996882,-0.05554327965577717 +76537,382.6849999996882,-0.055543217343096134 +76538,382.6899999996882,-0.055543155037427384 +76539,382.6949999996882,-0.055543092738768764 +76540,382.6999999996882,-0.055543030447118114 +76541,382.7049999996882,-0.05554296816247326 +76542,382.7099999996882,-0.05554290588483205 +76543,382.7149999996882,-0.05554284361419234 +76544,382.7199999996882,-0.05554278135055195 +76545,382.7249999996882,-0.05554271909390873 +76546,382.7299999996882,-0.05554265684426052 +76547,382.73499999968817,-0.055542594601605176 +76548,382.73999999968817,-0.05554253236594052 +76549,382.74499999968816,-0.055542470137264405 +76550,382.74999999968816,-0.055542407915574674 +76551,382.75499999968815,-0.05554234570086916 +76552,382.75999999968815,-0.05554228349314573 +76553,382.76499999968814,-0.055542221292402216 +76554,382.76999999968814,-0.055542159098636475 +76555,382.77499999968813,-0.05554209691184633 +76556,382.77999999968813,-0.05554203473202965 +76557,382.7849999996881,-0.05554197255918428 +76558,382.7899999996881,-0.055541910393308046 +76559,382.7949999996881,-0.05554184823439882 +76560,382.7999999996881,-0.05554178608245442 +76561,382.8049999996881,-0.055541723937472726 +76562,382.8099999996881,-0.055541661799451574 +76563,382.8149999996881,-0.055541599668388814 +76564,382.8199999996881,-0.055541537544282295 +76565,382.8249999996881,-0.055541475427129866 +76566,382.8299999996881,-0.0555414133169294 +76567,382.8349999996881,-0.05554135121367871 +76568,382.8399999996881,-0.05554128911737567 +76569,382.84499999968807,-0.05554122702801813 +76570,382.84999999968807,-0.05554116494560394 +76571,382.85499999968806,-0.05554110287013094 +76572,382.85999999968806,-0.05554104080159701 +76573,382.86499999968805,-0.05554097873999999 +76574,382.86999999968805,-0.05554091668533772 +76575,382.87499999968804,-0.05554085463760808 +76576,382.87999999968804,-0.05554079259680891 +76577,382.88499999968803,-0.05554073056293807 +76578,382.88999999968803,-0.05554066853599342 +76579,382.894999999688,-0.05554060651597281 +76580,382.899999999688,-0.0555405445028741 +76581,382.904999999688,-0.05554048249669513 +76582,382.909999999688,-0.05554042049743379 +76583,382.914999999688,-0.05554035850508791 +76584,382.919999999688,-0.055540296519655356 +76585,382.924999999688,-0.055540234541134 +76586,382.929999999688,-0.055540172569521686 +76587,382.934999999688,-0.05554011060481628 +76588,382.939999999688,-0.05554004864701564 +76589,382.944999999688,-0.05553998669611762 +76590,382.949999999688,-0.0555399247521201 +76591,382.95499999968797,-0.05553986281502093 +76592,382.95999999968797,-0.05553980088481796 +76593,382.96499999968796,-0.055539738961509086 +76594,382.96999999968796,-0.05553967704509215 +76595,382.97499999968795,-0.055539615135565004 +76596,382.97999999968795,-0.05553955323292552 +76597,382.98499999968794,-0.05553949133717156 +76598,382.98999999968794,-0.055539429448300995 +76599,382.99499999968793,-0.0555393675663117 +76600,382.99999999968793,-0.055539305691201524 +76601,383.0049999996879,-0.055539243822968334 +76602,383.0099999996879,-0.05553918196161 +76603,383.0149999996879,-0.055539120107124376 +76604,383.0199999996879,-0.05553905825950935 +76605,383.0249999996879,-0.05553899641876278 +76606,383.0299999996879,-0.05553893458488253 +76607,383.0349999996879,-0.055538872757866474 +76608,383.0399999996879,-0.055538810937712485 +76609,383.0449999996879,-0.05553874912441842 +76610,383.0499999996879,-0.05553868731798215 +76611,383.0549999996879,-0.05553862551840156 +76612,383.0599999996879,-0.055538563725674506 +76613,383.06499999968787,-0.05553850193979886 +76614,383.06999999968787,-0.05553844016077251 +76615,383.07499999968786,-0.0555383783885933 +76616,383.07999999968786,-0.05553831662325912 +76617,383.08499999968785,-0.05553825486476785 +76618,383.08999999968785,-0.05553819311311735 +76619,383.09499999968784,-0.05553813136830549 +76620,383.09999999968784,-0.05553806963033016 +76621,383.10499999968783,-0.05553800789918921 +76622,383.10999999968783,-0.05553794617488053 +76623,383.1149999996878,-0.055537884457402 +76624,383.1199999996878,-0.05553782274675149 +76625,383.1249999996878,-0.055537761042926875 +76626,383.1299999996878,-0.05553769934592603 +76627,383.1349999996878,-0.05553763765574683 +76628,383.1399999996878,-0.055537575972387176 +76629,383.1449999996878,-0.055537514295844914 +76630,383.1499999996878,-0.05553745262611794 +76631,383.1549999996878,-0.055537390963204133 +76632,383.1599999996878,-0.05553732930710136 +76633,383.1649999996878,-0.055537267657807504 +76634,383.1699999996878,-0.05553720601532045 +76635,383.17499999968777,-0.05553714437963808 +76636,383.17999999968777,-0.05553708275075826 +76637,383.18499999968776,-0.055537021128678886 +76638,383.18999999968776,-0.05553695951339785 +76639,383.19499999968775,-0.05553689790491301 +76640,383.19999999968775,-0.05553683630322226 +76641,383.20499999968774,-0.05553677470832348 +76642,383.20999999968774,-0.055536713120214555 +76643,383.21499999968773,-0.05553665153889337 +76644,383.21999999968773,-0.055536589964357806 +76645,383.2249999996877,-0.05553652839660575 +76646,383.2299999996877,-0.05553646683563508 +76647,383.2349999996877,-0.05553640528144369 +76648,383.2399999996877,-0.05553634373402947 +76649,383.2449999996877,-0.055536282193390296 +76650,383.2499999996877,-0.05553622065952405 +76651,383.2549999996877,-0.05553615913242864 +76652,383.2599999996877,-0.055536097612101945 +76653,383.2649999996877,-0.055536036098541845 +76654,383.2699999996877,-0.05553597459174622 +76655,383.2749999996877,-0.055535913091712984 +76656,383.2799999996877,-0.05553585159844002 +76657,383.28499999968767,-0.055535790111925214 +76658,383.28999999968767,-0.05553572863216644 +76659,383.29499999968766,-0.055535667159161604 +76660,383.29999999968766,-0.05553560569290861 +76661,383.30499999968765,-0.05553554423340532 +76662,383.30999999968765,-0.055535482780649646 +76663,383.31499999968764,-0.055535421334639484 +76664,383.31999999968764,-0.055535359895372706 +76665,383.32499999968763,-0.05553529846284722 +76666,383.32999999968763,-0.055535237037060925 +76667,383.3349999996876,-0.055535175618011696 +76668,383.3399999996876,-0.05553511420569744 +76669,383.3449999996876,-0.05553505280011605 +76670,383.3499999996876,-0.055534991401265416 +76671,383.3549999996876,-0.05553493000914345 +76672,383.3599999996876,-0.05553486862374804 +76673,383.3649999996876,-0.055534807245077075 +76674,383.3699999996876,-0.05553474587312846 +76675,383.3749999996876,-0.055534684507900084 +76676,383.3799999996876,-0.055534623149389846 +76677,383.3849999996876,-0.055534561797595645 +76678,383.3899999996876,-0.05553450045251539 +76679,383.39499999968757,-0.05553443911414698 +76680,383.39999999968757,-0.05553437778248829 +76681,383.40499999968756,-0.055534316457537244 +76682,383.40999999968756,-0.05553425513929174 +76683,383.41499999968755,-0.05553419382774968 +76684,383.41999999968755,-0.05553413252290895 +76685,383.42499999968754,-0.05553407122476746 +76686,383.42999999968754,-0.05553400993332312 +76687,383.43499999968753,-0.055533948648573826 +76688,383.43999999968753,-0.055533887370517475 +76689,383.4449999996875,-0.05553382609915198 +76690,383.4499999996875,-0.05553376483447525 +76691,383.4549999996875,-0.05553370357648517 +76692,383.4599999996875,-0.055533642325179655 +76693,383.4649999996875,-0.055533581080556615 +76694,383.4699999996875,-0.05553351984261394 +76695,383.4749999996875,-0.05553345861134956 +76696,383.4799999996875,-0.055533397386761364 +76697,383.4849999996875,-0.05553333616884726 +76698,383.4899999996875,-0.05553327495760516 +76699,383.4949999996875,-0.05553321375303297 +76700,383.4999999996875,-0.0555331525551286 +76701,383.50499999968747,-0.05553309136388994 +76702,383.50999999968747,-0.05553303017931492 +76703,383.51499999968746,-0.05553296900140144 +76704,383.51999999968746,-0.05553290783014742 +76705,383.52499999968745,-0.055532846665550764 +76706,383.52999999968745,-0.05553278550760938 +76707,383.53499999968744,-0.055532724356321186 +76708,383.53999999968744,-0.05553266321168408 +76709,383.54499999968743,-0.05553260207369599 +76710,383.54999999968743,-0.05553254094235482 +76711,383.5549999996874,-0.05553247981765847 +76712,383.5599999996874,-0.055532418699604874 +76713,383.5649999996874,-0.055532357588191944 +76714,383.5699999996874,-0.055532296483417586 +76715,383.5749999996874,-0.0555322353852797 +76716,383.5799999996874,-0.055532174293776236 +76717,383.5849999996874,-0.05553211320890509 +76718,383.5899999996874,-0.05553205213066417 +76719,383.5949999996874,-0.05553199105905139 +76720,383.5999999996874,-0.055531929994064685 +76721,383.6049999996874,-0.055531868935701965 +76722,383.6099999996874,-0.055531807883961136 +76723,383.61499999968737,-0.055531746838840136 +76724,383.61999999968737,-0.055531685800336864 +76725,383.62499999968736,-0.05553162476844925 +76726,383.62999999968736,-0.0555315637431752 +76727,383.63499999968735,-0.05553150272451265 +76728,383.63999999968735,-0.05553144171245951 +76729,383.64499999968734,-0.05553138070701371 +76730,383.64999999968734,-0.05553131970817316 +76731,383.65499999968733,-0.055531258715935776 +76732,383.65999999968733,-0.0555311977302995 +76733,383.6649999996873,-0.05553113675126224 +76734,383.6699999996873,-0.055531075778821916 +76735,383.6749999996873,-0.055531014812976454 +76736,383.6799999996873,-0.05553095385372377 +76737,383.6849999996873,-0.05553089290106182 +76738,383.6899999996873,-0.05553083195498849 +76739,383.6949999996873,-0.05553077101550172 +76740,383.6999999996873,-0.05553071008259943 +76741,383.7049999996873,-0.05553064915627955 +76742,383.7099999996873,-0.055530588236540016 +76743,383.7149999996873,-0.05553052732337874 +76744,383.7199999996873,-0.05553046641679364 +76745,383.72499999968727,-0.05553040551678266 +76746,383.72999999968727,-0.055530344623343726 +76747,383.73499999968726,-0.05553028373647474 +76748,383.73999999968726,-0.055530222856173664 +76749,383.74499999968725,-0.05553016198243842 +76750,383.74999999968725,-0.05553010111526692 +76751,383.75499999968724,-0.05553004025465711 +76752,383.75999999968724,-0.05552997940060692 +76753,383.76499999968723,-0.055529918553114274 +76754,383.76999999968723,-0.055529857712177104 +76755,383.7749999996872,-0.055529796877793344 +76756,383.7799999996872,-0.05552973604996092 +76757,383.7849999996872,-0.055529675228677765 +76758,383.7899999996872,-0.0555296144139418 +76759,383.7949999996872,-0.05552955360575098 +76760,383.7999999996872,-0.05552949280410323 +76761,383.8049999996872,-0.05552943200899648 +76762,383.8099999996872,-0.055529371220428676 +76763,383.8149999996872,-0.05552931043839773 +76764,383.8199999996872,-0.05552924966290159 +76765,383.8249999996872,-0.0555291888939382 +76766,383.8299999996872,-0.05552912813150549 +76767,383.83499999968717,-0.055529067375601385 +76768,383.83999999968717,-0.055529006626223835 +76769,383.84499999968716,-0.05552894588337077 +76770,383.84999999968716,-0.05552888514704013 +76771,383.85499999968715,-0.05552882441722986 +76772,383.85999999968715,-0.05552876369393789 +76773,383.86499999968714,-0.055528702977162156 +76774,383.86999999968714,-0.05552864226690061 +76775,383.87499999968713,-0.055528581563151165 +76776,383.87999999968713,-0.05552852086591179 +76777,383.8849999996871,-0.055528460175180414 +76778,383.8899999996871,-0.055528399490954984 +76779,383.8949999996871,-0.05552833881323342 +76780,383.8999999996871,-0.05552827814201369 +76781,383.9049999996871,-0.05552821747729372 +76782,383.9099999996871,-0.05552815681907146 +76783,383.9149999996871,-0.055528096167344845 +76784,383.9199999996871,-0.05552803552211182 +76785,383.9249999996871,-0.055527974883370336 +76786,383.9299999996871,-0.05552791425111833 +76787,383.9349999996871,-0.05552785362535376 +76788,383.9399999996871,-0.05552779300607455 +76789,383.94499999968707,-0.055527732393278656 +76790,383.94999999968707,-0.055527671786964036 +76791,383.95499999968706,-0.055527611187128616 +76792,383.95999999968706,-0.05552755059377035 +76793,383.96499999968705,-0.05552749000688718 +76794,383.96999999968705,-0.05552742942647707 +76795,383.97499999968704,-0.055527368852537964 +76796,383.97999999968704,-0.05552730828506779 +76797,383.98499999968703,-0.05552724772406451 +76798,383.98999999968703,-0.05552718716952607 +76799,383.994999999687,-0.055527126621450436 +76800,383.999999999687,-0.055527066079835534 +76801,384.004999999687,-0.05552700554467933 +76802,384.009999999687,-0.05552694501597977 +76803,384.014999999687,-0.0555268844937348 +76804,384.019999999687,-0.05552682397794239 +76805,384.024999999687,-0.055526763468600464 +76806,384.029999999687,-0.055526702965707005 +76807,384.034999999687,-0.055526642469259944 +76808,384.039999999687,-0.05552658197925724 +76809,384.044999999687,-0.055526521495696854 +76810,384.049999999687,-0.05552646101857673 +76811,384.05499999968697,-0.05552640054789482 +76812,384.05999999968697,-0.0555263400836491 +76813,384.06499999968696,-0.055526279625837505 +76814,384.06999999968696,-0.05552621917445799 +76815,384.07499999968695,-0.05552615872950852 +76816,384.07999999968695,-0.05552609829098705 +76817,384.08499999968694,-0.05552603785889154 +76818,384.08999999968694,-0.05552597743321995 +76819,384.09499999968693,-0.05552591701397023 +76820,384.09999999968693,-0.05552585660114034 +76821,384.1049999996869,-0.05552579619472823 +76822,384.1099999996869,-0.05552573579473187 +76823,384.1149999996869,-0.055525675401149215 +76824,384.1199999996869,-0.05552561501397824 +76825,384.1249999996869,-0.055525554633216886 +76826,384.1299999996869,-0.05552549425886312 +76827,384.1349999996869,-0.055525433890914896 +76828,384.1399999996869,-0.0555253735293702 +76829,384.1449999996869,-0.055525313174226966 +76830,384.1499999996869,-0.05552525282548318 +76831,384.1549999996869,-0.05552519248313678 +76832,384.1599999996869,-0.05552513214718575 +76833,384.16499999968687,-0.05552507181762803 +76834,384.16999999968687,-0.055525011494461624 +76835,384.17499999968686,-0.05552495117768446 +76836,384.17999999968686,-0.055524890867294514 +76837,384.18499999968685,-0.05552483056328975 +76838,384.18999999968685,-0.055524770265668155 +76839,384.19499999968684,-0.05552470997442767 +76840,384.19999999968684,-0.05552464968956626 +76841,384.20499999968683,-0.055524589411081904 +76842,384.20999999968683,-0.055524529138972566 +76843,384.2149999996868,-0.05552446887323622 +76844,384.2199999996868,-0.05552440861387082 +76845,384.2249999996868,-0.055524348360874345 +76846,384.2299999996868,-0.05552428811424476 +76847,384.2349999996868,-0.05552422787398004 +76848,384.2399999996868,-0.05552416764007815 +76849,384.2449999996868,-0.05552410741253706 +76850,384.2499999996868,-0.05552404719135475 +76851,384.2549999996868,-0.05552398697652919 +76852,384.2599999996868,-0.05552392676805833 +76853,384.2649999996868,-0.055523866565940154 +76854,384.2699999996868,-0.05552380637017265 +76855,384.27499999968677,-0.05552374618075378 +76856,384.27999999968677,-0.055523685997681496 +76857,384.28499999968676,-0.0555236258209538 +76858,384.28999999968676,-0.05552356565056866 +76859,384.29499999968675,-0.055523505486524044 +76860,384.29999999968675,-0.05552344532881793 +76861,384.30499999968674,-0.055523385177448294 +76862,384.30999999968674,-0.05552332503241311 +76863,384.31499999968673,-0.055523264893710365 +76864,384.31999999968673,-0.05552320476133802 +76865,384.3249999996867,-0.055523144635294064 +76866,384.3299999996867,-0.05552308451557646 +76867,384.3349999996867,-0.0555230244021832 +76868,384.3399999996867,-0.05552296429511225 +76869,384.3449999996867,-0.0555229041943616 +76870,384.3499999996867,-0.05552284409992922 +76871,384.3549999996867,-0.05552278401181309 +76872,384.3599999996867,-0.055522723930011196 +76873,384.3649999996867,-0.05552266385452153 +76874,384.3699999996867,-0.055522603785342045 +76875,384.3749999996867,-0.05552254372247073 +76876,384.3799999996867,-0.055522483665905585 +76877,384.38499999968667,-0.05552242361564457 +76878,384.38999999968667,-0.055522363571685676 +76879,384.39499999968666,-0.05552230353402689 +76880,384.39999999968666,-0.055522243502666185 +76881,384.40499999968665,-0.055522183477601544 +76882,384.40999999968665,-0.055522123458830966 +76883,384.41499999968664,-0.055522063446352424 +76884,384.41999999968664,-0.0555220034401639 +76885,384.42499999968663,-0.055521943440263385 +76886,384.42999999968663,-0.05552188344664887 +76887,384.4349999996866,-0.05552182345931833 +76888,384.4399999996866,-0.055521763478269766 +76889,384.4449999996866,-0.05552170350350114 +76890,384.4499999996866,-0.05552164353501047 +76891,384.4549999996866,-0.05552158357279572 +76892,384.4599999996866,-0.05552152361685488 +76893,384.4649999996866,-0.055521463667185945 +76894,384.4699999996866,-0.0555214037237869 +76895,384.4749999996866,-0.05552134378665575 +76896,384.4799999996866,-0.05552128385579046 +76897,384.4849999996866,-0.055521223931189044 +76898,384.4899999996866,-0.05552116401284947 +76899,384.49499999968657,-0.055521104100769735 +76900,384.49999999968657,-0.05552104419494785 +76901,384.50499999968656,-0.055520984295381784 +76902,384.50999999968656,-0.05552092440206953 +76903,384.51499999968655,-0.055520864515009094 +76904,384.51999999968655,-0.05552080463419846 +76905,384.52499999968654,-0.05552074475963562 +76906,384.52999999968654,-0.05552068489131858 +76907,384.53499999968653,-0.055520625029245325 +76908,384.53999999968653,-0.05552056517341385 +76909,384.5449999996865,-0.055520505323822134 +76910,384.5499999996865,-0.0555204454804682 +76911,384.5549999996865,-0.05552038564335004 +76912,384.5599999996865,-0.055520325812465646 +76913,384.5649999996865,-0.055520265987813004 +76914,384.5699999996865,-0.05552020616939012 +76915,384.5749999996865,-0.05552014635719499 +76916,384.5799999996865,-0.0555200865512256 +76917,384.5849999996865,-0.055520026751479976 +76918,384.5899999996865,-0.055519966957956086 +76919,384.5949999996865,-0.05551990717065195 +76920,384.5999999996865,-0.05551984738956556 +76921,384.60499999968647,-0.05551978761469492 +76922,384.60999999968647,-0.05551972784603802 +76923,384.61499999968646,-0.05551966808359288 +76924,384.61999999968646,-0.05551960832735747 +76925,384.62499999968645,-0.05551954857732983 +76926,384.62999999968645,-0.055519488833507935 +76927,384.63499999968644,-0.05551942909588979 +76928,384.63999999968644,-0.05551936936447341 +76929,384.64499999968643,-0.05551930963925679 +76930,384.64999999968643,-0.05551924992023794 +76931,384.6549999996864,-0.05551919020741485 +76932,384.6599999996864,-0.05551913050078554 +76933,384.6649999996864,-0.05551907080034801 +76934,384.6699999996864,-0.055519011106100254 +76935,384.6749999996864,-0.05551895141804029 +76936,384.6799999996864,-0.05551889173616613 +76937,384.6849999996864,-0.05551883206047576 +76938,384.6899999996864,-0.055518772390967204 +76939,384.6949999996864,-0.05551871272763846 +76940,384.6999999996864,-0.055518653070487534 +76941,384.7049999996864,-0.055518593419512444 +76942,384.7099999996864,-0.055518533774711186 +76943,384.71499999968637,-0.0555184741360818 +76944,384.71999999968637,-0.05551841450362226 +76945,384.72499999968636,-0.05551835487733058 +76946,384.72999999968636,-0.05551829525720479 +76947,384.73499999968635,-0.055518235643242875 +76948,384.73999999968635,-0.055518176035442866 +76949,384.74499999968634,-0.055518116433802764 +76950,384.74999999968634,-0.055518056838320576 +76951,384.75499999968633,-0.05551799724899433 +76952,384.75999999968633,-0.05551793766582203 +76953,384.7649999996863,-0.055517878088801695 +76954,384.7699999996863,-0.05551781851793133 +76955,384.7749999996863,-0.05551775895320896 +76956,384.7799999996863,-0.05551769939463257 +76957,384.7849999996863,-0.05551763984220021 +76958,384.7899999996863,-0.055517580295909884 +76959,384.7949999996863,-0.055517520755759595 +76960,384.7999999996863,-0.05551746122174737 +76961,384.8049999996863,-0.055517401693871225 +76962,384.8099999996863,-0.055517342172129176 +76963,384.8149999996863,-0.05551728265651924 +76964,384.8199999996863,-0.055517223147039434 +76965,384.82499999968627,-0.055517163643687764 +76966,384.82999999968627,-0.05551710414646228 +76967,384.83499999968626,-0.05551704465536096 +76968,384.83999999968626,-0.05551698517038186 +76969,384.84499999968625,-0.05551692569152297 +76970,384.84999999968625,-0.055516866218782324 +76971,384.85499999968624,-0.05551680675215795 +76972,384.85999999968624,-0.05551674729164785 +76973,384.86499999968623,-0.05551668783725005 +76974,384.86999999968623,-0.055516628388962576 +76975,384.8749999996862,-0.05551656894678345 +76976,384.8799999996862,-0.05551650951071071 +76977,384.8849999996862,-0.055516450080742345 +76978,384.8899999996862,-0.0555163906568764 +76979,384.8949999996862,-0.0555163312391109 +76980,384.8999999996862,-0.05551627182744386 +76981,384.9049999996862,-0.05551621242187331 +76982,384.9099999996862,-0.05551615302239726 +76983,384.9149999996862,-0.05551609362901375 +76984,384.9199999996862,-0.055516034241720816 +76985,384.9249999996862,-0.055515974860516466 +76986,384.9299999996862,-0.05551591548539872 +76987,384.93499999968617,-0.05551585611636563 +76988,384.93999999968617,-0.055515796753415204 +76989,384.94499999968616,-0.05551573739654548 +76990,384.94999999968616,-0.05551567804575447 +76991,384.95499999968615,-0.055515618701040215 +76992,384.95999999968615,-0.05551555936240074 +76993,384.96499999968614,-0.055515500029834075 +76994,384.96999999968614,-0.055515440703338255 +76995,384.97499999968613,-0.0555153813829113 +76996,384.97999999968613,-0.05551532206855126 +76997,384.9849999996861,-0.05551526276025614 +76998,384.9899999996861,-0.05551520345802398 +76999,384.9949999996861,-0.05551514416185282 +77000,384.9999999996861,-0.055515084871740686 +77001,385.0049999996861,-0.05551502558768562 +77002,385.0099999996861,-0.05551496630968564 +77003,385.0149999996861,-0.055514907037738766 +77004,385.0199999996861,-0.05551484777184307 +77005,385.0249999996861,-0.05551478851199656 +77006,385.0299999996861,-0.05551472925819728 +77007,385.0349999996861,-0.05551467001044325 +77008,385.0399999996861,-0.05551461076873253 +77009,385.04499999968607,-0.05551455153306313 +77010,385.04999999968607,-0.055514492303433104 +77011,385.05499999968606,-0.05551443307984049 +77012,385.05999999968606,-0.055514373862283306 +77013,385.06499999968605,-0.055514314650759615 +77014,385.06999999968605,-0.05551425544526744 +77015,385.07499999968604,-0.055514196245804816 +77016,385.07999999968604,-0.05551413705236978 +77017,385.08499999968603,-0.05551407786496037 +77018,385.08999999968603,-0.05551401868357463 +77019,385.094999999686,-0.05551395950821062 +77020,385.099999999686,-0.05551390033886635 +77021,385.104999999686,-0.05551384117553987 +77022,385.109999999686,-0.05551378201822922 +77023,385.114999999686,-0.05551372286693246 +77024,385.119999999686,-0.05551366372164761 +77025,385.124999999686,-0.05551360458237271 +77026,385.129999999686,-0.055513545449105806 +77027,385.134999999686,-0.055513486321844954 +77028,385.139999999686,-0.05551342720058818 +77029,385.144999999686,-0.05551336808533354 +77030,385.149999999686,-0.055513308976079076 +77031,385.15499999968597,-0.05551324987282283 +77032,385.15999999968597,-0.05551319077556283 +77033,385.16499999968596,-0.055513131684297154 +77034,385.16999999968596,-0.05551307259902383 +77035,385.17499999968595,-0.05551301351974091 +77036,385.17999999968595,-0.05551295444644643 +77037,385.18499999968594,-0.05551289537913844 +77038,385.18999999968594,-0.055512836317815 +77039,385.19499999968593,-0.055512777262474146 +77040,385.19999999968593,-0.05551271821311393 +77041,385.2049999996859,-0.05551265916973239 +77042,385.2099999996859,-0.05551260013232758 +77043,385.2149999996859,-0.05551254110089757 +77044,385.2199999996859,-0.05551248207544038 +77045,385.2249999996859,-0.05551242305595407 +77046,385.2299999996859,-0.0555123640424367 +77047,385.2349999996859,-0.055512305034886314 +77048,385.2399999996859,-0.055512246033300953 +77049,385.2449999996859,-0.055512187037678684 +77050,385.2499999996859,-0.05551212804801756 +77051,385.2549999996859,-0.055512069064315626 +77052,385.2599999996859,-0.05551201008657094 +77053,385.26499999968587,-0.055511951114781556 +77054,385.26999999968587,-0.05551189214894552 +77055,385.27499999968586,-0.05551183318906088 +77056,385.27999999968586,-0.05551177423512572 +77057,385.28499999968585,-0.05551171528713806 +77058,385.28999999968585,-0.05551165634509597 +77059,385.29499999968584,-0.055511597408997505 +77060,385.29999999968584,-0.05551153847884072 +77061,385.30499999968583,-0.055511479554623676 +77062,385.30999999968583,-0.05551142063634443 +77063,385.3149999996858,-0.055511361724001035 +77064,385.3199999996858,-0.055511302817591555 +77065,385.3249999996858,-0.055511243917114046 +77066,385.3299999996858,-0.05551118502256655 +77067,385.3349999996858,-0.05551112613394716 +77068,385.3399999996858,-0.055511067251253904 +77069,385.3449999996858,-0.05551100837448486 +77070,385.3499999996858,-0.05551094950363807 +77071,385.3549999996858,-0.05551089063871162 +77072,385.3599999996858,-0.05551083177970354 +77073,385.3649999996858,-0.055510772926611905 +77074,385.3699999996858,-0.055510714079434795 +77075,385.37499999968577,-0.055510655238170246 +77076,385.37999999968577,-0.05551059640281633 +77077,385.38499999968576,-0.05551053757337113 +77078,385.38999999968576,-0.05551047874983267 +77079,385.39499999968575,-0.055510419932199045 +77080,385.39999999968575,-0.0555103611204683 +77081,385.40499999968574,-0.05551030231463851 +77082,385.40999999968574,-0.05551024351470774 +77083,385.41499999968573,-0.055510184720674045 +77084,385.41999999968573,-0.0555101259325355 +77085,385.4249999996857,-0.05551006715029017 +77086,385.4299999996857,-0.05551000837393612 +77087,385.4349999996857,-0.055509949603471415 +77088,385.4399999996857,-0.05550989083889413 +77089,385.4449999996857,-0.05550983208020232 +77090,385.4499999996857,-0.055509773327394075 +77091,385.4549999996857,-0.05550971458046745 +77092,385.4599999996857,-0.0555096558394205 +77093,385.4649999996857,-0.05550959710425132 +77094,385.4699999996857,-0.05550953837495796 +77095,385.4749999996857,-0.05550947965153848 +77096,385.4799999996857,-0.055509420933990986 +77097,385.48499999968567,-0.05550936222231353 +77098,385.48999999968566,-0.055509303516504176 +77099,385.49499999968566,-0.05550924481656101 +77100,385.49999999968566,-0.055509186122482096 +77101,385.50499999968565,-0.0555091274342655 +77102,385.50999999968565,-0.0555090687519093 +77103,385.51499999968564,-0.055509010075411584 +77104,385.51999999968564,-0.0555089514047704 +77105,385.52499999968563,-0.05550889273998385 +77106,385.52999999968563,-0.055508834081049986 +77107,385.5349999996856,-0.05550877542796688 +77108,385.5399999996856,-0.05550871678073263 +77109,385.5449999996856,-0.0555086581393453 +77110,385.5499999996856,-0.055508599503802956 +77111,385.5549999996856,-0.05550854087410369 +77112,385.5599999996856,-0.055508482250245565 +77113,385.5649999996856,-0.05550842363222667 +77114,385.5699999996856,-0.05550836502004508 +77115,385.5749999996856,-0.05550830641369886 +77116,385.5799999996856,-0.05550824781318612 +77117,385.5849999996856,-0.05550818921850491 +77118,385.5899999996856,-0.05550813062965331 +77119,385.59499999968557,-0.05550807204662941 +77120,385.59999999968556,-0.055508013469431294 +77121,385.60499999968556,-0.05550795489805702 +77122,385.60999999968556,-0.0555078963325047 +77123,385.61499999968555,-0.05550783777277239 +77124,385.61999999968555,-0.05550777921885819 +77125,385.62499999968554,-0.055507720670760166 +77126,385.62999999968554,-0.055507662128476395 +77127,385.63499999968553,-0.05550760359200498 +77128,385.63999999968553,-0.055507545061344005 +77129,385.6449999996855,-0.05550748653649154 +77130,385.6499999996855,-0.055507428017445674 +77131,385.6549999996855,-0.05550736950420449 +77132,385.6599999996855,-0.05550731099676607 +77133,385.6649999996855,-0.0555072524951285 +77134,385.6699999996855,-0.05550719399928987 +77135,385.6749999996855,-0.05550713550924826 +77136,385.6799999996855,-0.055507077025001766 +77137,385.6849999996855,-0.055507018546548464 +77138,385.6899999996855,-0.05550696007388645 +77139,385.6949999996855,-0.055506901607013805 +77140,385.6999999996855,-0.05550684314592862 +77141,385.70499999968547,-0.055506784690628974 +77142,385.70999999968546,-0.055506726241112976 +77143,385.71499999968546,-0.0555066677973787 +77144,385.71999999968546,-0.05550660935942423 +77145,385.72499999968545,-0.055506550927247676 +77146,385.72999999968545,-0.055506492500847104 +77147,385.73499999968544,-0.055506434080220615 +77148,385.73999999968544,-0.05550637566536631 +77149,385.74499999968543,-0.05550631725628227 +77150,385.74999999968543,-0.055506258852966596 +77151,385.7549999996854,-0.05550620045541737 +77152,385.7599999996854,-0.055506142063632684 +77153,385.7649999996854,-0.05550608367761063 +77154,385.7699999996854,-0.05550602529734931 +77155,385.7749999996854,-0.055505966922846824 +77156,385.7799999996854,-0.05550590855410126 +77157,385.7849999996854,-0.0555058501911107 +77158,385.7899999996854,-0.05550579183387325 +77159,385.7949999996854,-0.055505733482387 +77160,385.7999999996854,-0.05550567513665004 +77161,385.8049999996854,-0.05550561679666049 +77162,385.8099999996854,-0.055505558462416435 +77163,385.81499999968537,-0.05550550013391596 +77164,385.81999999968536,-0.05550544181115717 +77165,385.82499999968536,-0.05550538349413816 +77166,385.82999999968536,-0.055505325182857036 +77167,385.83499999968535,-0.05550526687731188 +77168,385.83999999968535,-0.05550520857750081 +77169,385.84499999968534,-0.05550515028342193 +77170,385.84999999968534,-0.055505091995073315 +77171,385.85499999968533,-0.055505033712453085 +77172,385.85999999968533,-0.05550497543555933 +77173,385.8649999996853,-0.05550491716439015 +77174,385.8699999996853,-0.05550485889894365 +77175,385.8749999996853,-0.05550480063921795 +77176,385.8799999996853,-0.055504742385211116 +77177,385.8849999996853,-0.055504684136921285 +77178,385.8899999996853,-0.055504625894346536 +77179,385.8949999996853,-0.055504567657484974 +77180,385.8999999996853,-0.05550450942633471 +77181,385.9049999996853,-0.05550445120089384 +77182,385.9099999996853,-0.05550439298116048 +77183,385.9149999996853,-0.055504334767132735 +77184,385.9199999996853,-0.0555042765588087 +77185,385.92499999968527,-0.055504218356186484 +77186,385.92999999968526,-0.0555041601592642 +77187,385.93499999968526,-0.05550410196803995 +77188,385.93999999968526,-0.05550404378251183 +77189,385.94499999968525,-0.05550398560267796 +77190,385.94999999968525,-0.055503927428536444 +77191,385.95499999968524,-0.055503869260085395 +77192,385.95999999968524,-0.055503811097322914 +77193,385.96499999968523,-0.05550375294024711 +77194,385.96999999968523,-0.0555036947888561 +77195,385.9749999996852,-0.055503636643147974 +77196,385.9799999996852,-0.05550357850312086 +77197,385.9849999996852,-0.05550352036877287 +77198,385.9899999996852,-0.055503462240102094 +77199,385.9949999996852,-0.05550340411710667 +77200,385.9999999996852,-0.05550334599978469 +77201,386.0049999996852,-0.055503287888134266 +77202,386.0099999996852,-0.055503229782153524 +77203,386.0149999996852,-0.055503171681840574 +77204,386.0199999996852,-0.05550311358719351 +77205,386.0249999996852,-0.055503055498210475 +77206,386.0299999996852,-0.055502997414889566 +77207,386.03499999968517,-0.0555029393372289 +77208,386.03999999968516,-0.05550288126522658 +77209,386.04499999968516,-0.05550282319888074 +77210,386.04999999968516,-0.055502765138189476 +77211,386.05499999968515,-0.05550270708315091 +77212,386.05999999968515,-0.05550264903376318 +77213,386.06499999968514,-0.05550259099002437 +77214,386.06999999968514,-0.05550253295193262 +77215,386.07499999968513,-0.05550247491948603 +77216,386.0799999996851,-0.05550241689268273 +77217,386.0849999996851,-0.05550235887152084 +77218,386.0899999996851,-0.05550230085599847 +77219,386.0949999996851,-0.05550224284611375 +77220,386.0999999996851,-0.055502184841864775 +77221,386.1049999996851,-0.055502126843249684 +77222,386.1099999996851,-0.055502068850266595 +77223,386.1149999996851,-0.05550201086291362 +77224,386.1199999996851,-0.0555019528811889 +77225,386.1249999996851,-0.05550189490509054 +77226,386.1299999996851,-0.05550183693461666 +77227,386.1349999996851,-0.05550177896976538 +77228,386.1399999996851,-0.05550172101053484 +77229,386.14499999968507,-0.05550166305692315 +77230,386.14999999968506,-0.05550160510892843 +77231,386.15499999968506,-0.05550154716654881 +77232,386.15999999968506,-0.05550148922978241 +77233,386.16499999968505,-0.055501431298627356 +77234,386.16999999968505,-0.05550137337308178 +77235,386.17499999968504,-0.05550131545314379 +77236,386.17999999968504,-0.05550125753881153 +77237,386.18499999968503,-0.05550119963008311 +77238,386.189999999685,-0.05550114172695666 +77239,386.194999999685,-0.055501083829430316 +77240,386.199999999685,-0.05550102593750221 +77241,386.204999999685,-0.05550096805117045 +77242,386.209999999685,-0.055500910170433175 +77243,386.214999999685,-0.05550085229528851 +77244,386.219999999685,-0.055500794425734586 +77245,386.224999999685,-0.055500736561769515 +77246,386.229999999685,-0.05550067870339145 +77247,386.234999999685,-0.05550062085059851 +77248,386.239999999685,-0.055500563003388834 +77249,386.244999999685,-0.05550050516176054 +77250,386.249999999685,-0.05550044732571178 +77251,386.25499999968497,-0.05550038949524066 +77252,386.25999999968496,-0.05550033167034531 +77253,386.26499999968496,-0.05550027385102388 +77254,386.26999999968496,-0.0555002160372745 +77255,386.27499999968495,-0.05550015822909529 +77256,386.27999999968495,-0.05550010042648439 +77257,386.28499999968494,-0.055500042629439944 +77258,386.28999999968494,-0.055499984837960085 +77259,386.29499999968493,-0.05549992705204294 +77260,386.2999999996849,-0.05549986927168664 +77261,386.3049999996849,-0.05549981149688931 +77262,386.3099999996849,-0.055499753727649107 +77263,386.3149999996849,-0.05549969596396416 +77264,386.3199999996849,-0.0554996382058326 +77265,386.3249999996849,-0.05549958045325256 +77266,386.3299999996849,-0.055499522706222194 +77267,386.3349999996849,-0.055499464964739634 +77268,386.3399999996849,-0.05549940722880301 +77269,386.3449999996849,-0.05549934949841047 +77270,386.3499999996849,-0.055499291773560146 +77271,386.3549999996849,-0.05549923405425018 +77272,386.3599999996849,-0.05549917634047871 +77273,386.36499999968487,-0.05549911863224388 +77274,386.36999999968486,-0.05549906092954382 +77275,386.37499999968486,-0.05549900323237668 +77276,386.37999999968486,-0.05549894554074059 +77277,386.38499999968485,-0.05549888785463371 +77278,386.38999999968485,-0.055498830174054166 +77279,386.39499999968484,-0.0554987724990001 +77280,386.39999999968484,-0.055498714829469664 +77281,386.40499999968483,-0.055498657165461 +77282,386.4099999996848,-0.055498599506972245 +77283,386.4149999996848,-0.055498541854001535 +77284,386.4199999996848,-0.05549848420654704 +77285,386.4249999996848,-0.05549842656460687 +77286,386.4299999996848,-0.055498368928179206 +77287,386.4349999996848,-0.05549831129726216 +77288,386.4399999996848,-0.0554982536718539 +77289,386.4449999996848,-0.05549819605195256 +77290,386.4499999996848,-0.05549813843755629 +77291,386.4549999996848,-0.05549808082866325 +77292,386.4599999996848,-0.055498023225271566 +77293,386.4649999996848,-0.0554979656273794 +77294,386.4699999996848,-0.05549790803498489 +77295,386.47499999968477,-0.05549785044808619 +77296,386.47999999968476,-0.05549779286668144 +77297,386.48499999968476,-0.055497735290768804 +77298,386.48999999968476,-0.05549767772034642 +77299,386.49499999968475,-0.05549762015541244 +77300,386.49999999968475,-0.05549756259596501 +77301,386.50499999968474,-0.055497505042002286 +77302,386.50999999968474,-0.05549744749352243 +77303,386.51499999968473,-0.055497389950523585 +77304,386.5199999996847,-0.05549733241300389 +77305,386.5249999996847,-0.05549727488096151 +77306,386.5299999996847,-0.055497217354394605 +77307,386.5349999996847,-0.055497159833301314 +77308,386.5399999996847,-0.05549710231767979 +77309,386.5449999996847,-0.0554970448075282 +77310,386.5499999996847,-0.05549698730284467 +77311,386.5549999996847,-0.05549692980362738 +77312,386.5599999996847,-0.055496872309874476 +77313,386.5649999996847,-0.055496814821584126 +77314,386.5699999996847,-0.05549675733875446 +77315,386.5749999996847,-0.05549669986138366 +77316,386.5799999996847,-0.05549664238946987 +77317,386.58499999968467,-0.055496584923011245 +77318,386.58999999968466,-0.055496527462005944 +77319,386.59499999968466,-0.05549647000645213 +77320,386.59999999968466,-0.05549641255634795 +77321,386.60499999968465,-0.05549635511169157 +77322,386.60999999968465,-0.05549629767248115 +77323,386.61499999968464,-0.05549624023871485 +77324,386.61999999968464,-0.05549618281039082 +77325,386.62499999968463,-0.05549612538750722 +77326,386.6299999996846,-0.05549606797006223 +77327,386.6349999996846,-0.05549601055805398 +77328,386.6399999996846,-0.05549595315148065 +77329,386.6449999996846,-0.0554958957503404 +77330,386.6499999996846,-0.05549583835463139 +77331,386.6549999996846,-0.05549578096435178 +77332,386.6599999996846,-0.05549572357949974 +77333,386.6649999996846,-0.05549566620007343 +77334,386.6699999996846,-0.055495608826071005 +77335,386.6749999996846,-0.05549555145749063 +77336,386.6799999996846,-0.05549549409433048 +77337,386.6849999996846,-0.055495436736588716 +77338,386.6899999996846,-0.05549537938426349 +77339,386.69499999968457,-0.05549532203735298 +77340,386.69999999968456,-0.05549526469585534 +77341,386.70499999968456,-0.055495207359768754 +77342,386.70999999968456,-0.055495150029091375 +77343,386.71499999968455,-0.05549509270382137 +77344,386.71999999968455,-0.05549503538395692 +77345,386.72499999968454,-0.05549497806949617 +77346,386.72999999968454,-0.055494920760437313 +77347,386.73499999968453,-0.05549486345677849 +77348,386.7399999996845,-0.05549480615851789 +77349,386.7449999996845,-0.05549474886565366 +77350,386.7499999996845,-0.055494691578184006 +77351,386.7549999996845,-0.055494634296107063 +77352,386.7599999996845,-0.05549457701942102 +77353,386.7649999996845,-0.055494519748124034 +77354,386.7699999996845,-0.05549446248221429 +77355,386.7749999996845,-0.05549440522168995 +77356,386.7799999996845,-0.05549434796654919 +77357,386.7849999996845,-0.05549429071679018 +77358,386.7899999996845,-0.055494233472411086 +77359,386.7949999996845,-0.05549417623341009 +77360,386.7999999996845,-0.05549411899978536 +77361,386.80499999968447,-0.055494061771535076 +77362,386.80999999968446,-0.055494004548657404 +77363,386.81499999968446,-0.055493947331150525 +77364,386.81999999968446,-0.0554938901190126 +77365,386.82499999968445,-0.05549383291224183 +77366,386.82999999968445,-0.05549377571083638 +77367,386.83499999968444,-0.05549371851479441 +77368,386.83999999968444,-0.05549366132411412 +77369,386.84499999968443,-0.05549360413879366 +77370,386.8499999996844,-0.05549354695883122 +77371,386.8549999996844,-0.05549348978422498 +77372,386.8599999996844,-0.055493432614973116 +77373,386.8649999996844,-0.055493375451073815 +77374,386.8699999996844,-0.05549331829252525 +77375,386.8749999996844,-0.05549326113932558 +77376,386.8799999996844,-0.05549320399147301 +77377,386.8849999996844,-0.05549314684896571 +77378,386.8899999996844,-0.055493089711801856 +77379,386.8949999996844,-0.05549303257997964 +77380,386.8999999996844,-0.05549297545349724 +77381,386.9049999996844,-0.055492918332352814 +77382,386.9099999996844,-0.05549286121654457 +77383,386.91499999968437,-0.05549280410607068 +77384,386.91999999968436,-0.05549274700092933 +77385,386.92499999968436,-0.0554926899011187 +77386,386.92999999968436,-0.05549263280663698 +77387,386.93499999968435,-0.05549257571748234 +77388,386.93999999968435,-0.05549251863365298 +77389,386.94499999968434,-0.055492461555147074 +77390,386.94999999968434,-0.05549240448196281 +77391,386.95499999968433,-0.055492347414098364 +77392,386.9599999996843,-0.05549229035155193 +77393,386.9649999996843,-0.055492233294321694 +77394,386.9699999996843,-0.055492176242405836 +77395,386.9749999996843,-0.05549211919580255 +77396,386.9799999996843,-0.05549206215451001 +77397,386.9849999996843,-0.05549200511852642 +77398,386.9899999996843,-0.05549194808784996 +77399,386.9949999996843,-0.055491891062478815 +77400,386.9999999996843,-0.05549183404241117 +77401,387.0049999996843,-0.055491777027645225 +77402,387.0099999996843,-0.05549172001817917 +77403,387.0149999996843,-0.055491663014011185 +77404,387.0199999996843,-0.05549160601513945 +77405,387.02499999968427,-0.05549154902156218 +77406,387.02999999968426,-0.05549149203327755 +77407,387.03499999968426,-0.05549143505028377 +77408,387.03999999968426,-0.05549137807257901 +77409,387.04499999968425,-0.05549132110016146 +77410,387.04999999968425,-0.05549126413302932 +77411,387.05499999968424,-0.05549120717118079 +77412,387.05999999968424,-0.05549115021461405 +77413,387.06499999968423,-0.0554910932633273 +77414,387.0699999996842,-0.055491036317318734 +77415,387.0749999996842,-0.055490979376586536 +77416,387.0799999996842,-0.055490922441128916 +77417,387.0849999996842,-0.055490865510944065 +77418,387.0899999996842,-0.05549080858603017 +77419,387.0949999996842,-0.05549075166638544 +77420,387.0999999996842,-0.05549069475200805 +77421,387.1049999996842,-0.05549063784289622 +77422,387.1099999996842,-0.05549058093904813 +77423,387.1149999996842,-0.05549052404046198 +77424,387.1199999996842,-0.05549046714713597 +77425,387.1249999996842,-0.0554904102590683 +77426,387.1299999996842,-0.055490353376257164 +77427,387.13499999968417,-0.055490296498700756 +77428,387.13999999968416,-0.0554902396263973 +77429,387.14499999968416,-0.05549018275934496 +77430,387.14999999968416,-0.05549012589754196 +77431,387.15499999968415,-0.05549006904098649 +77432,387.15999999968415,-0.05549001218967675 +77433,387.16499999968414,-0.055489955343610946 +77434,387.16999999968414,-0.05548989850278727 +77435,387.17499999968413,-0.055489841667203936 +77436,387.1799999996841,-0.05548978483685913 +77437,387.1849999996841,-0.05548972801175107 +77438,387.1899999996841,-0.05548967119187796 +77439,387.1949999996841,-0.055489614377237984 +77440,387.1999999996841,-0.05548955756782937 +77441,387.2049999996841,-0.0554895007636503 +77442,387.2099999996841,-0.055489443964698994 +77443,387.2149999996841,-0.055489387170973646 +77444,387.2199999996841,-0.05548933038247246 +77445,387.2249999996841,-0.05548927359919365 +77446,387.2299999996841,-0.05548921682113542 +77447,387.2349999996841,-0.055489160048295974 +77448,387.2399999996841,-0.05548910328067352 +77449,387.24499999968407,-0.05548904651826625 +77450,387.24999999968406,-0.05548898976107239 +77451,387.25499999968406,-0.05548893300909015 +77452,387.25999999968406,-0.055488876262317716 +77453,387.26499999968405,-0.055488819520753324 +77454,387.26999999968405,-0.055488762784395164 +77455,387.27499999968404,-0.055488706053241445 +77456,387.27999999968404,-0.055488649327290376 +77457,387.28499999968403,-0.05548859260654018 +77458,387.289999999684,-0.05548853589098906 +77459,387.294999999684,-0.05548847918063522 +77460,387.299999999684,-0.05548842247547688 +77461,387.304999999684,-0.05548836577551225 +77462,387.309999999684,-0.05548830908073954 +77463,387.314999999684,-0.05548825239115696 +77464,387.319999999684,-0.05548819570676272 +77465,387.324999999684,-0.05548813902755504 +77466,387.329999999684,-0.05548808235353212 +77467,387.334999999684,-0.05548802568469219 +77468,387.339999999684,-0.055487969021033465 +77469,387.344999999684,-0.05548791236255414 +77470,387.349999999684,-0.055487855709252444 +77471,387.35499999968397,-0.055487799061126594 +77472,387.35999999968396,-0.05548774241817481 +77473,387.36499999968396,-0.055487685780395285 +77474,387.36999999968396,-0.05548762914778625 +77475,387.37499999968395,-0.055487572520345925 +77476,387.37999999968395,-0.05548751589807252 +77477,387.38499999968394,-0.05548745928096425 +77478,387.38999999968394,-0.05548740266901933 +77479,387.39499999968393,-0.055487346062236 +77480,387.3999999996839,-0.05548728946061246 +77481,387.4049999996839,-0.05548723286414693 +77482,387.4099999996839,-0.055487176272837634 +77483,387.4149999996839,-0.05548711968668279 +77484,387.4199999996839,-0.05548706310568062 +77485,387.4249999996839,-0.05548700652982933 +77486,387.4299999996839,-0.05548694995912716 +77487,387.4349999996839,-0.055486893393572316 +77488,387.4399999996839,-0.05548683683316304 +77489,387.4449999996839,-0.05548678027789754 +77490,387.4499999996839,-0.05548672372777402 +77491,387.4549999996839,-0.05548666718279072 +77492,387.4599999996839,-0.055486610642945876 +77493,387.46499999968387,-0.0554865541082377 +77494,387.46999999968386,-0.05548649757866441 +77495,387.47499999968386,-0.05548644105422425 +77496,387.47999999968386,-0.05548638453491542 +77497,387.48499999968385,-0.055486328020736136 +77498,387.48999999968385,-0.055486271511684664 +77499,387.49499999968384,-0.0554862150077592 +77500,387.49999999968384,-0.055486158508957974 +77501,387.50499999968383,-0.05548610201527922 +77502,387.5099999996838,-0.055486045526721144 +77503,387.5149999996838,-0.05548598904328199 +77504,387.5199999996838,-0.05548593256496 +77505,387.5249999996838,-0.05548587609175337 +77506,387.5299999996838,-0.05548581962366035 +77507,387.5349999996838,-0.05548576316067916 +77508,387.5399999996838,-0.05548570670280803 +77509,387.5449999996838,-0.05548565025004518 +77510,387.5499999996838,-0.05548559380238886 +77511,387.5549999996838,-0.05548553735983729 +77512,387.5599999996838,-0.055485480922388704 +77513,387.5649999996838,-0.055485424490041325 +77514,387.5699999996838,-0.05548536806279338 +77515,387.57499999968377,-0.05548531164064312 +77516,387.57999999968376,-0.055485255223588756 +77517,387.58499999968376,-0.05548519881162852 +77518,387.58999999968376,-0.055485142404760664 +77519,387.59499999968375,-0.05548508600298341 +77520,387.59999999968375,-0.055485029606294985 +77521,387.60499999968374,-0.05548497321469364 +77522,387.60999999968374,-0.05548491682817759 +77523,387.61499999968373,-0.055484860446745075 +77524,387.6199999996837,-0.055484804070394335 +77525,387.6249999996837,-0.0554847476991236 +77526,387.6299999996837,-0.05548469133293112 +77527,387.6349999996837,-0.05548463497181511 +77528,387.6399999996837,-0.055484578615773814 +77529,387.6449999996837,-0.05548452226480548 +77530,387.6499999996837,-0.05548446591890833 +77531,387.6549999996837,-0.0554844095780806 +77532,387.6599999996837,-0.05548435324232054 +77533,387.6649999996837,-0.055484296911626374 +77534,387.6699999996837,-0.05548424058599636 +77535,387.6749999996837,-0.055484184265428727 +77536,387.6799999996837,-0.0554841279499217 +77537,387.68499999968367,-0.05548407163947354 +77538,387.68999999968366,-0.05548401533408249 +77539,387.69499999968366,-0.055483959033746755 +77540,387.69999999968366,-0.05548390273846461 +77541,387.70499999968365,-0.055483846448234286 +77542,387.70999999968365,-0.05548379016305403 +77543,387.71499999968364,-0.05548373388292207 +77544,387.71999999968364,-0.05548367760783666 +77545,387.72499999968363,-0.05548362133779604 +77546,387.7299999996836,-0.05548356507279844 +77547,387.7349999996836,-0.05548350881284212 +77548,387.7399999996836,-0.05548345255792532 +77549,387.7449999996836,-0.05548339630804628 +77550,387.7499999996836,-0.05548334006320326 +77551,387.7549999996836,-0.05548328382339447 +77552,387.7599999996836,-0.05548322758861819 +77553,387.7649999996836,-0.05548317135887265 +77554,387.7699999996836,-0.05548311513415611 +77555,387.7749999996836,-0.055483058914466796 +77556,387.7799999996836,-0.05548300269980297 +77557,387.7849999996836,-0.05548294649016286 +77558,387.7899999996836,-0.05548289028554473 +77559,387.79499999968357,-0.05548283408594682 +77560,387.79999999968356,-0.05548277789136738 +77561,387.80499999968356,-0.05548272170180466 +77562,387.80999999968355,-0.05548266551725692 +77563,387.81499999968355,-0.05548260933772238 +77564,387.81999999968355,-0.05548255316319931 +77565,387.82499999968354,-0.05548249699368597 +77566,387.82999999968354,-0.05548244082918059 +77567,387.83499999968353,-0.055482384669681424 +77568,387.8399999996835,-0.05548232851518674 +77569,387.8449999996835,-0.05548227236569477 +77570,387.8499999996835,-0.05548221622120377 +77571,387.8549999996835,-0.055482160081711994 +77572,387.8599999996835,-0.0554821039472177 +77573,387.8649999996835,-0.05548204781771912 +77574,387.8699999996835,-0.05548199169321454 +77575,387.8749999996835,-0.055481935573702186 +77576,387.8799999996835,-0.05548187945918034 +77577,387.8849999996835,-0.05548182334964723 +77578,387.8899999996835,-0.055481767245101114 +77579,387.8949999996835,-0.05548171114554026 +77580,387.8999999996835,-0.05548165505096291 +77581,387.90499999968347,-0.05548159896136734 +77582,387.90999999968346,-0.05548154287675178 +77583,387.91499999968346,-0.0554814867971145 +77584,387.91999999968345,-0.055481430722453755 +77585,387.92499999968345,-0.0554813746527678 +77586,387.92999999968345,-0.055481318588054905 +77587,387.93499999968344,-0.05548126252831331 +77588,387.93999999968344,-0.055481206473541295 +77589,387.94499999968343,-0.055481150423737094 +77590,387.9499999996834,-0.05548109437889899 +77591,387.9549999996834,-0.05548103833902522 +77592,387.9599999996834,-0.05548098230411405 +77593,387.9649999996834,-0.055480926274163754 +77594,387.9699999996834,-0.05548087024917259 +77595,387.9749999996834,-0.0554808142291388 +77596,387.9799999996834,-0.05548075821406067 +77597,387.9849999996834,-0.055480702203936444 +77598,387.9899999996834,-0.05548064619876439 +77599,387.9949999996834,-0.05548059019854277 +77600,387.9999999996834,-0.05548053420326984 +77601,388.0049999996834,-0.05548047821294388 +77602,388.0099999996834,-0.05548042222756314 +77603,388.01499999968337,-0.055480366247125885 +77604,388.01999999968336,-0.05548031027163039 +77605,388.02499999968336,-0.055480254301074894 +77606,388.02999999968335,-0.05548019833545769 +77607,388.03499999968335,-0.05548014237477703 +77608,388.03999999968335,-0.05548008641903118 +77609,388.04499999968334,-0.055480030468218415 +77610,388.04999999968334,-0.05547997452233699 +77611,388.05499999968333,-0.05547991858138518 +77612,388.0599999996833,-0.05547986264536124 +77613,388.0649999996833,-0.05547980671426345 +77614,388.0699999996833,-0.055479750788090074 +77615,388.0749999996833,-0.05547969486683938 +77616,388.0799999996833,-0.05547963895050964 +77617,388.0849999996833,-0.05547958303909911 +77618,388.0899999996833,-0.05547952713260608 +77619,388.0949999996833,-0.05547947123102881 +77620,388.0999999996833,-0.05547941533436557 +77621,388.1049999996833,-0.055479359442614624 +77622,388.1099999996833,-0.055479303555774254 +77623,388.1149999996833,-0.05547924767384272 +77624,388.1199999996833,-0.0554791917968183 +77625,388.12499999968327,-0.05547913592469927 +77626,388.12999999968326,-0.055479080057483886 +77627,388.13499999968326,-0.05547902419517044 +77628,388.13999999968325,-0.055478968337757194 +77629,388.14499999968325,-0.055478912485242435 +77630,388.14999999968325,-0.05547885663762442 +77631,388.15499999968324,-0.05547880079490143 +77632,388.15999999968324,-0.05547874495707174 +77633,388.16499999968323,-0.055478689124133625 +77634,388.1699999996832,-0.055478633296085364 +77635,388.1749999996832,-0.05547857747292523 +77636,388.1799999996832,-0.05547852165465149 +77637,388.1849999996832,-0.05547846584126242 +77638,388.1899999996832,-0.05547841003275632 +77639,388.1949999996832,-0.055478354229131444 +77640,388.1999999996832,-0.05547829843038606 +77641,388.2049999996832,-0.055478242636518474 +77642,388.2099999996832,-0.05547818684752696 +77643,388.2149999996832,-0.05547813106340978 +77644,388.2199999996832,-0.055478075284165214 +77645,388.2249999996832,-0.05547801950979155 +77646,388.2299999996832,-0.055477963740287066 +77647,388.23499999968317,-0.055477907975650054 +77648,388.23999999968316,-0.05547785221587879 +77649,388.24499999968316,-0.055477796460971535 +77650,388.24999999968315,-0.055477740710926586 +77651,388.25499999968315,-0.055477684965742215 +77652,388.25999999968315,-0.05547762922541671 +77653,388.26499999968314,-0.05547757348994834 +77654,388.26999999968314,-0.05547751775933541 +77655,388.27499999968313,-0.0554774620335762 +77656,388.2799999996831,-0.055477406312668974 +77657,388.2849999996831,-0.055477350596612025 +77658,388.2899999996831,-0.05547729488540365 +77659,388.2949999996831,-0.05547723917904212 +77660,388.2999999996831,-0.05547718347752571 +77661,388.3049999996831,-0.055477127780852745 +77662,388.3099999996831,-0.055477072089021466 +77663,388.3149999996831,-0.05547701640203018 +77664,388.3199999996831,-0.05547696071987716 +77665,388.3249999996831,-0.055476905042560705 +77666,388.3299999996831,-0.055476849370079094 +77667,388.3349999996831,-0.05547679370243063 +77668,388.3399999996831,-0.05547673803961358 +77669,388.34499999968307,-0.05547668238162624 +77670,388.34999999968306,-0.0554766267284669 +77671,388.35499999968306,-0.05547657108013384 +77672,388.35999999968305,-0.055476515436625365 +77673,388.36499999968305,-0.055476459797939755 +77674,388.36999999968305,-0.05547640416407531 +77675,388.37499999968304,-0.0554763485350303 +77676,388.37999999968304,-0.05547629291080303 +77677,388.38499999968303,-0.05547623729139178 +77678,388.389999999683,-0.055476181676794856 +77679,388.394999999683,-0.05547612606701053 +77680,388.399999999683,-0.05547607046203711 +77681,388.404999999683,-0.0554760148618729 +77682,388.409999999683,-0.055475959266516155 +77683,388.414999999683,-0.0554759036759652 +77684,388.419999999683,-0.05547584809021832 +77685,388.424999999683,-0.05547579250927381 +77686,388.429999999683,-0.05547573693312994 +77687,388.434999999683,-0.05547568136178504 +77688,388.439999999683,-0.05547562579523738 +77689,388.444999999683,-0.055475570233485275 +77690,388.449999999683,-0.055475514676527 +77691,388.45499999968297,-0.05547545912436087 +77692,388.45999999968296,-0.055475403576985174 +77693,388.46499999968296,-0.05547534803439821 +77694,388.46999999968295,-0.05547529249659827 +77695,388.47499999968295,-0.055475236963583655 +77696,388.47999999968295,-0.055475181435352655 +77697,388.48499999968294,-0.055475125911903574 +77698,388.48999999968294,-0.05547507039323472 +77699,388.49499999968293,-0.05547501487934437 +77700,388.4999999996829,-0.055474959370230836 +77701,388.5049999996829,-0.05547490386589242 +77702,388.5099999996829,-0.05547484836632742 +77703,388.5149999996829,-0.05547479287153414 +77704,388.5199999996829,-0.05547473738151087 +77705,388.5249999996829,-0.055474681896255915 +77706,388.5299999996829,-0.05547462641576757 +77707,388.5349999996829,-0.05547457094004416 +77708,388.5399999996829,-0.05547451546908397 +77709,388.5449999996829,-0.05547446000288529 +77710,388.5499999996829,-0.05547440454144645 +77711,388.5549999996829,-0.055474349084765735 +77712,388.5599999996829,-0.055474293632841454 +77713,388.56499999968287,-0.05547423818567191 +77714,388.56999999968286,-0.0554741827432554 +77715,388.57499999968286,-0.055474127305590246 +77716,388.57999999968285,-0.05547407187267473 +77717,388.58499999968285,-0.055474016444507175 +77718,388.58999999968285,-0.055473961021085885 +77719,388.59499999968284,-0.05547390560240916 +77720,388.59999999968284,-0.05547385018847531 +77721,388.60499999968283,-0.055473794779282645 +77722,388.6099999996828,-0.05547373937482945 +77723,388.6149999996828,-0.055473683975114055 +77724,388.6199999996828,-0.05547362858013477 +77725,388.6249999996828,-0.055473573189889894 +77726,388.6299999996828,-0.05547351780437774 +77727,388.6349999996828,-0.0554734624235966 +77728,388.6399999996828,-0.05547340704754481 +77729,388.6449999996828,-0.05547335167622066 +77730,388.6499999996828,-0.05547329630962247 +77731,388.6549999996828,-0.05547324094774854 +77732,388.6599999996828,-0.055473185590597184 +77733,388.6649999996828,-0.05547313023816672 +77734,388.6699999996828,-0.05547307489045545 +77735,388.67499999968277,-0.055473019547461706 +77736,388.67999999968276,-0.055472964209183774 +77737,388.68499999968276,-0.05547290887561998 +77738,388.68999999968275,-0.05547285354676863 +77739,388.69499999968275,-0.05547279822262806 +77740,388.69999999968275,-0.05547274290319655 +77741,388.70499999968274,-0.05547268758847242 +77742,388.70999999968274,-0.05547263227845402 +77743,388.71499999968273,-0.05547257697313963 +77744,388.7199999996827,-0.055472521672527565 +77745,388.7249999996827,-0.05547246637661614 +77746,388.7299999996827,-0.05547241108540369 +77747,388.7349999996827,-0.05547235579888852 +77748,388.7399999996827,-0.05547230051706893 +77749,388.7449999996827,-0.05547224523994326 +77750,388.7499999996827,-0.055472189967509834 +77751,388.7549999996827,-0.05547213469976694 +77752,388.7599999996827,-0.055472079436712916 +77753,388.7649999996827,-0.055472024178346076 +77754,388.7699999996827,-0.05547196892466474 +77755,388.7749999996827,-0.055471913675667214 +77756,388.7799999996827,-0.055471858431351835 +77757,388.78499999968267,-0.05547180319171692 +77758,388.78999999968266,-0.05547174795676077 +77759,388.79499999968266,-0.05547169272648172 +77760,388.79999999968265,-0.05547163750087811 +77761,388.80499999968265,-0.05547158227994822 +77762,388.80999999968265,-0.05547152706369041 +77763,388.81499999968264,-0.055471471852102966 +77764,388.81999999968264,-0.055471416645184235 +77765,388.82499999968263,-0.055471361442932535 +77766,388.8299999996826,-0.055471306245346186 +77767,388.8349999996826,-0.05547125105242351 +77768,388.8399999996826,-0.055471195864162826 +77769,388.8449999996826,-0.055471140680562456 +77770,388.8499999996826,-0.05547108550162075 +77771,388.8549999996826,-0.05547103032733601 +77772,388.8599999996826,-0.05547097515770656 +77773,388.8649999996826,-0.05547091999273073 +77774,388.8699999996826,-0.055470864832406847 +77775,388.8749999996826,-0.05547080967673324 +77776,388.8799999996826,-0.05547075452570823 +77777,388.8849999996826,-0.05547069937933014 +77778,388.8899999996826,-0.055470644237597316 +77779,388.89499999968257,-0.055470589100508054 +77780,388.89999999968256,-0.05547053396806071 +77781,388.90499999968256,-0.05547047884025359 +77782,388.90999999968255,-0.05547042371708504 +77783,388.91499999968255,-0.05547036859855338 +77784,388.91999999968255,-0.05547031348465694 +77785,388.92499999968254,-0.05547025837539406 +77786,388.92999999968254,-0.055470203270763054 +77787,388.93499999968253,-0.055470148170762255 +77788,388.9399999996825,-0.05547009307539001 +77789,388.9449999996825,-0.055470037984644636 +77790,388.9499999996825,-0.055469982898524464 +77791,388.9549999996825,-0.05546992781702782 +77792,388.9599999996825,-0.05546987274015305 +77793,388.9649999996825,-0.055469817667898484 +77794,388.9699999996825,-0.05546976260026244 +77795,388.9749999996825,-0.055469707537243285 +77796,388.9799999996825,-0.05546965247883931 +77797,388.9849999996825,-0.055469597425048874 +77798,388.9899999996825,-0.055469542375870304 +77799,388.9949999996825,-0.055469487331301935 +77800,388.9999999996825,-0.0554694322913421 +77801,389.00499999968247,-0.05546937725598915 +77802,389.00999999968246,-0.0554693222252414 +77803,389.01499999968246,-0.05546926719909719 +77804,389.01999999968245,-0.055469212177554864 +77805,389.02499999968245,-0.05546915716061275 +77806,389.02999999968245,-0.0554691021482692 +77807,389.03499999968244,-0.05546904714052253 +77808,389.03999999968244,-0.0554689921373711 +77809,389.04499999968243,-0.055468937138813235 +77810,389.0499999996824,-0.05546888214484727 +77811,389.0549999996824,-0.055468827155471544 +77812,389.0599999996824,-0.055468772170684404 +77813,389.0649999996824,-0.055468717190484185 +77814,389.0699999996824,-0.05546866221486923 +77815,389.0749999996824,-0.055468607243837884 +77816,389.0799999996824,-0.05546855227738847 +77817,389.0849999996824,-0.055468497315519345 +77818,389.0899999996824,-0.05546844235822884 +77819,389.0949999996824,-0.0554683874055153 +77820,389.0999999996824,-0.055468332457377076 +77821,389.1049999996824,-0.055468277513812496 +77822,389.1099999996824,-0.05546822257481992 +77823,389.11499999968237,-0.05546816764039767 +77824,389.11999999968236,-0.0554681127105441 +77825,389.12499999968236,-0.055468057785257555 +77826,389.12999999968235,-0.05546800286453639 +77827,389.13499999968235,-0.05546794794837892 +77828,389.13999999968235,-0.05546789303678351 +77829,389.14499999968234,-0.0554678381297485 +77830,389.14999999968234,-0.055467783227272235 +77831,389.15499999968233,-0.055467728329353067 +77832,389.1599999996823,-0.055467673435989344 +77833,389.1649999996823,-0.0554676185471794 +77834,389.1699999996823,-0.05546756366292159 +77835,389.1749999996823,-0.055467508783214256 +77836,389.1799999996823,-0.05546745390805576 +77837,389.1849999996823,-0.05546739903744442 +77838,389.1899999996823,-0.055467344171378614 +77839,389.1949999996823,-0.055467289309856685 +77840,389.1999999996823,-0.05546723445287697 +77841,389.2049999996823,-0.05546717960043783 +77842,389.2099999996823,-0.055467124752537615 +77843,389.2149999996823,-0.05546706990917467 +77844,389.2199999996823,-0.055467015070347334 +77845,389.22499999968227,-0.055466960236053964 +77846,389.22999999968226,-0.05546690540629293 +77847,389.23499999968226,-0.05546685058106256 +77848,389.23999999968225,-0.055466795760361225 +77849,389.24499999968225,-0.055466740944187264 +77850,389.24999999968225,-0.055466686132539036 +77851,389.25499999968224,-0.0554666313254149 +77852,389.25999999968224,-0.055466576522813185 +77853,389.26499999968223,-0.05546652172473226 +77854,389.2699999996822,-0.05546646693117049 +77855,389.2749999996822,-0.055466412142126206 +77856,389.2799999996822,-0.05546635735759777 +77857,389.2849999996822,-0.05546630257758355 +77858,389.2899999996822,-0.0554662478020819 +77859,389.2949999996822,-0.055466193031091154 +77860,389.2999999996822,-0.055466138264609686 +77861,389.3049999996822,-0.055466083502635856 +77862,389.3099999996822,-0.055466028745168004 +77863,389.3149999996822,-0.0554659739922045 +77864,389.3199999996822,-0.0554659192437437 +77865,389.3249999996822,-0.05546586449978396 +77866,389.3299999996822,-0.055465809760323635 +77867,389.33499999968217,-0.055465755025361094 +77868,389.33999999968216,-0.05546570029489469 +77869,389.34499999968216,-0.05546564556892277 +77870,389.34999999968215,-0.05546559084744371 +77871,389.35499999968215,-0.055465536130455864 +77872,389.35999999968215,-0.05546548141795759 +77873,389.36499999968214,-0.05546542670994725 +77874,389.36999999968214,-0.05546537200642321 +77875,389.37499999968213,-0.05546531730738383 +77876,389.3799999996821,-0.055465262612827464 +77877,389.3849999996821,-0.05546520792275247 +77878,389.3899999996821,-0.05546515323715723 +77879,389.3949999996821,-0.05546509855604009 +77880,389.3999999996821,-0.05546504387939942 +77881,389.4049999996821,-0.05546498920723357 +77882,389.4099999996821,-0.05546493453954093 +77883,389.4149999996821,-0.05546487987631986 +77884,389.4199999996821,-0.05546482521756869 +77885,389.4249999996821,-0.05546477056328581 +77886,389.4299999996821,-0.05546471591346959 +77887,389.4349999996821,-0.055464661268118394 +77888,389.4399999996821,-0.05546460662723058 +77889,389.44499999968207,-0.05546455199080452 +77890,389.44999999968206,-0.055464497358838585 +77891,389.45499999968206,-0.055464442731331116 +77892,389.45999999968205,-0.05546438810828052 +77893,389.46499999968205,-0.05546433348968513 +77894,389.46999999968205,-0.05546427887554333 +77895,389.47499999968204,-0.05546422426585349 +77896,389.47999999968204,-0.05546416966061396 +77897,389.48499999968203,-0.05546411505982313 +77898,389.489999999682,-0.05546406046347937 +77899,389.494999999682,-0.05546400587158104 +77900,389.499999999682,-0.05546395128412651 +77901,389.504999999682,-0.05546389670111415 +77902,389.509999999682,-0.05546384212254233 +77903,389.514999999682,-0.05546378754840943 +77904,389.519999999682,-0.055463732978713806 +77905,389.524999999682,-0.05546367841345385 +77906,389.529999999682,-0.05546362385262792 +77907,389.534999999682,-0.055463569296234395 +77908,389.539999999682,-0.05546351474427165 +77909,389.544999999682,-0.05546346019673804 +77910,389.549999999682,-0.055463405653631954 +77911,389.55499999968197,-0.055463351114951764 +77912,389.55999999968196,-0.055463296580695855 +77913,389.56499999968196,-0.055463242050862574 +77914,389.56999999968195,-0.055463187525450326 +77915,389.57499999968195,-0.05546313300445746 +77916,389.57999999968195,-0.05546307848788237 +77917,389.58499999968194,-0.05546302397572343 +77918,389.58999999968194,-0.05546296946797901 +77919,389.59499999968193,-0.05546291496464748 +77920,389.5999999996819,-0.05546286046572723 +77921,389.6049999996819,-0.05546280597121664 +77922,389.6099999996819,-0.05546275148111407 +77923,389.6149999996819,-0.055462696995417914 +77924,389.6199999996819,-0.055462642514126546 +77925,389.6249999996819,-0.05546258803723834 +77926,389.6299999996819,-0.05546253356475167 +77927,389.6349999996819,-0.05546247909666492 +77928,389.6399999996819,-0.055462424632976494 +77929,389.6449999996819,-0.05546237017368475 +77930,389.6499999996819,-0.05546231571878806 +77931,389.6549999996819,-0.055462261268284824 +77932,389.6599999996819,-0.0554622068221734 +77933,389.66499999968187,-0.0554621523804522 +77934,389.66999999968186,-0.05546209794311958 +77935,389.67499999968186,-0.055462043510173926 +77936,389.67999999968185,-0.055461989081613636 +77937,389.68499999968185,-0.05546193465743709 +77938,389.68999999968185,-0.05546188023764265 +77939,389.69499999968184,-0.05546182582222871 +77940,389.69999999968184,-0.055461771411193656 +77941,389.70499999968183,-0.05546171700453587 +77942,389.7099999996818,-0.055461662602253756 +77943,389.7149999996818,-0.05546160820434568 +77944,389.7199999996818,-0.055461553810810034 +77945,389.7249999996818,-0.05546149942164519 +77946,389.7299999996818,-0.05546144503684954 +77947,389.7349999996818,-0.055461390656421486 +77948,389.7399999996818,-0.0554613362803594 +77949,389.7449999996818,-0.055461281908661675 +77950,389.7499999996818,-0.055461227541326694 +77951,389.7549999996818,-0.055461173178352856 +77952,389.7599999996818,-0.05546111881973853 +77953,389.7649999996818,-0.05546106446548211 +77954,389.7699999996818,-0.055461010115581987 +77955,389.77499999968177,-0.05546095577003655 +77956,389.77999999968176,-0.055460901428844196 +77957,389.78499999968176,-0.05546084709200331 +77958,389.78999999968175,-0.055460792759512274 +77959,389.79499999968175,-0.05546073843136949 +77960,389.79999999968175,-0.05546068410757334 +77961,389.80499999968174,-0.05546062978812223 +77962,389.80999999968174,-0.05546057547301454 +77963,389.81499999968173,-0.05546052116224866 +77964,389.8199999996817,-0.055460466855822975 +77965,389.8249999996817,-0.05546041255373589 +77966,389.8299999996817,-0.05546035825598581 +77967,389.8349999996817,-0.0554603039625711 +77968,389.8399999996817,-0.05546024967349017 +77969,389.8449999996817,-0.05546019538874141 +77970,389.8499999996817,-0.055460141108323216 +77971,389.8549999996817,-0.05546008683223398 +77972,389.8599999996817,-0.0554600325604721 +77973,389.8649999996817,-0.05545997829303598 +77974,389.8699999996817,-0.055459924029923995 +77975,389.8749999996817,-0.055459869771134554 +77976,389.8799999996817,-0.05545981551666605 +77977,389.88499999968167,-0.055459761266516895 +77978,389.88999999968166,-0.05545970702068546 +77979,389.89499999968166,-0.05545965277917016 +77980,389.89999999968165,-0.05545959854196937 +77981,389.90499999968165,-0.055459544309081524 +77982,389.90999999968165,-0.05545949008050499 +77983,389.91499999968164,-0.055459435856238186 +77984,389.91999999968164,-0.0554593816362795 +77985,389.92499999968163,-0.055459327420627334 +77986,389.9299999996816,-0.05545927320928008 +77987,389.9349999996816,-0.05545921900223615 +77988,389.9399999996816,-0.05545916479949395 +77989,389.9449999996816,-0.05545911060105186 +77990,389.9499999996816,-0.055459056406908305 +77991,389.9549999996816,-0.05545900221706167 +77992,389.9599999996816,-0.05545894803151036 +77993,389.9649999996816,-0.05545889385025278 +77994,389.9699999996816,-0.05545883967328733 +77995,389.9749999996816,-0.05545878550061241 +77996,389.9799999996816,-0.055458731332226424 +77997,389.9849999996816,-0.05545867716812778 +77998,389.9899999996816,-0.05545862300831489 +77999,389.99499999968157,-0.05545856885278615 +78000,389.99999999968156,-0.055458514701539945 +78001,390.00499999968156,-0.0554584605545747 +78002,390.00999999968155,-0.05545840641188883 +78003,390.01499999968155,-0.05545835227348073 +78004,390.01999999968154,-0.0554582981393488 +78005,390.02499999968154,-0.05545824400949145 +78006,390.02999999968154,-0.055458189883907084 +78007,390.03499999968153,-0.05545813576259411 +78008,390.0399999996815,-0.05545808164555095 +78009,390.0449999996815,-0.05545802753277599 +78010,390.0499999996815,-0.05545797342426765 +78011,390.0549999996815,-0.05545791932002435 +78012,390.0599999996815,-0.05545786522004447 +78013,390.0649999996815,-0.05545781112432644 +78014,390.0699999996815,-0.055457757032868656 +78015,390.0749999996815,-0.05545770294566954 +78016,390.0799999996815,-0.0554576488627275 +78017,390.0849999996815,-0.055457594784040935 +78018,390.0899999996815,-0.05545754070960827 +78019,390.0949999996815,-0.0554574866394279 +78020,390.0999999996815,-0.05545743257349826 +78021,390.10499999968147,-0.055457378511817736 +78022,390.10999999968146,-0.05545732445438476 +78023,390.11499999968146,-0.05545727040119773 +78024,390.11999999968145,-0.055457216352255076 +78025,390.12499999968145,-0.055457162307555194 +78026,390.12999999968144,-0.0554571082670965 +78027,390.13499999968144,-0.05545705423087742 +78028,390.13999999968144,-0.05545700019889636 +78029,390.14499999968143,-0.05545694617115173 +78030,390.1499999996814,-0.055456892147641955 +78031,390.1549999996814,-0.05545683812836545 +78032,390.1599999996814,-0.05545678411332061 +78033,390.1649999996814,-0.055456730102505875 +78034,390.1699999996814,-0.05545667609591965 +78035,390.1749999996814,-0.05545662209356036 +78036,390.1799999996814,-0.05545656809542641 +78037,390.1849999996814,-0.05545651410151622 +78038,390.1899999996814,-0.05545646011182822 +78039,390.1949999996814,-0.05545640612636082 +78040,390.1999999996814,-0.055456352145112436 +78041,390.2049999996814,-0.05545629816808147 +78042,390.2099999996814,-0.05545624419526638 +78043,390.21499999968137,-0.05545619022666556 +78044,390.21999999968136,-0.05545613626227741 +78045,390.22499999968136,-0.05545608230210038 +78046,390.22999999968135,-0.0554560283461329 +78047,390.23499999968135,-0.05545597439437336 +78048,390.23999999968134,-0.055455920446820205 +78049,390.24499999968134,-0.05545586650347184 +78050,390.24999999968134,-0.05545581256432669 +78051,390.25499999968133,-0.055455758629383185 +78052,390.2599999996813,-0.05545570469863974 +78053,390.2649999996813,-0.05545565077209477 +78054,390.2699999996813,-0.05545559684974671 +78055,390.2749999996813,-0.055455542931594 +78056,390.2799999996813,-0.05545548901763503 +78057,390.2849999996813,-0.05545543510786824 +78058,390.2899999996813,-0.05545538120229206 +78059,390.2949999996813,-0.0554553273009049 +78060,390.2999999996813,-0.055455273403705194 +78061,390.3049999996813,-0.055455219510691364 +78062,390.3099999996813,-0.05545516562186184 +78063,390.3149999996813,-0.05545511173721505 +78064,390.3199999996813,-0.05545505785674942 +78065,390.32499999968127,-0.05545500398046337 +78066,390.32999999968126,-0.055454950108355335 +78067,390.33499999968126,-0.055454896240423726 +78068,390.33999999968125,-0.055454842376666987 +78069,390.34499999968125,-0.05545478851708354 +78070,390.34999999968124,-0.05545473466167182 +78071,390.35499999968124,-0.05545468081043025 +78072,390.35999999968124,-0.055454626963357255 +78073,390.36499999968123,-0.055454573120451274 +78074,390.3699999996812,-0.05545451928171073 +78075,390.3749999996812,-0.05545446544713405 +78076,390.3799999996812,-0.055454411616719684 +78077,390.3849999996812,-0.055454357790466036 +78078,390.3899999996812,-0.055454303968371546 +78079,390.3949999996812,-0.05545425015043466 +78080,390.3999999996812,-0.05545419633665379 +78081,390.4049999996812,-0.055454142527027385 +78082,390.4099999996812,-0.05545408872155388 +78083,390.4149999996812,-0.05545403492023168 +78084,390.4199999996812,-0.055453981123059236 +78085,390.4249999996812,-0.055453927330034986 +78086,390.4299999996812,-0.05545387354115735 +78087,390.43499999968117,-0.05545381975642478 +78088,390.43999999968116,-0.05545376597583569 +78089,390.44499999968116,-0.055453712199388536 +78090,390.44999999968115,-0.05545365842708175 +78091,390.45499999968115,-0.05545360465891375 +78092,390.45999999968114,-0.055453550894882984 +78093,390.46499999968114,-0.055453497134987886 +78094,390.46999999968114,-0.0554534433792269 +78095,390.47499999968113,-0.05545338962759846 +78096,390.4799999996811,-0.055453335880101 +78097,390.4849999996811,-0.05545328213673295 +78098,390.4899999996811,-0.05545322839749277 +78099,390.4949999996811,-0.055453174662378875 +78100,390.4999999996811,-0.0554531209313897 +78101,390.5049999996811,-0.055453067204523705 +78102,390.5099999996811,-0.05545301348177933 +78103,390.5149999996811,-0.055452959763154994 +78104,390.5199999996811,-0.05545290604864916 +78105,390.5249999996811,-0.05545285233826024 +78106,390.5299999996811,-0.0554527986319867 +78107,390.5349999996811,-0.055452744929826964 +78108,390.5399999996811,-0.05545269123177948 +78109,390.54499999968107,-0.05545263753784271 +78110,390.54999999968106,-0.055452583848015054 +78111,390.55499999968106,-0.055452530162294976 +78112,390.55999999968105,-0.05545247648068093 +78113,390.56499999968105,-0.05545242280317134 +78114,390.56999999968104,-0.05545236912976468 +78115,390.57499999968104,-0.055452315460459346 +78116,390.57999999968104,-0.05545226179525382 +78117,390.58499999968103,-0.05545220813414653 +78118,390.589999999681,-0.055452154477135925 +78119,390.594999999681,-0.05545210082422045 +78120,390.599999999681,-0.05545204717539855 +78121,390.604999999681,-0.05545199353066866 +78122,390.609999999681,-0.05545193989002925 +78123,390.614999999681,-0.05545188625347875 +78124,390.619999999681,-0.0554518326210156 +78125,390.624999999681,-0.055451778992638256 +78126,390.629999999681,-0.05545172536834517 +78127,390.634999999681,-0.055451671748134784 +78128,390.639999999681,-0.05545161813200555 +78129,390.644999999681,-0.05545156451995591 +78130,390.649999999681,-0.05545151091198432 +78131,390.65499999968097,-0.055451457308089216 +78132,390.65999999968096,-0.05545140370826907 +78133,390.66499999968096,-0.05545135011252231 +78134,390.66999999968095,-0.0554512965208474 +78135,390.67499999968095,-0.055451242933242766 +78136,390.67999999968094,-0.05545118934970689 +78137,390.68499999968094,-0.05545113577023821 +78138,390.68999999968094,-0.05545108219483518 +78139,390.69499999968093,-0.05545102862349624 +78140,390.6999999996809,-0.05545097505621986 +78141,390.7049999996809,-0.055450921493004485 +78142,390.7099999996809,-0.05545086793384857 +78143,390.7149999996809,-0.05545081437875055 +78144,390.7199999996809,-0.0554507608277089 +78145,390.7249999996809,-0.05545070728072207 +78146,390.7299999996809,-0.0554506537377885 +78147,390.7349999996809,-0.05545060019890666 +78148,390.7399999996809,-0.05545054666407499 +78149,390.7449999996809,-0.05545049313329197 +78150,390.7499999996809,-0.05545043960655603 +78151,390.7549999996809,-0.05545038608386564 +78152,390.7599999996809,-0.055450332565219244 +78153,390.76499999968087,-0.05545027905061531 +78154,390.76999999968086,-0.055450225540052286 +78155,390.77499999968086,-0.055450172033528644 +78156,390.77999999968085,-0.055450118531042834 +78157,390.78499999968085,-0.0554500650325933 +78158,390.78999999968084,-0.055450011538178516 +78159,390.79499999968084,-0.05544995804779693 +78160,390.79999999968084,-0.055449904561447 +78161,390.80499999968083,-0.0554498510791272 +78162,390.8099999996808,-0.05544979760083598 +78163,390.8149999996808,-0.055449744126571804 +78164,390.8199999996808,-0.055449690656333116 +78165,390.8249999996808,-0.055449637190118396 +78166,390.8299999996808,-0.0554495837279261 +78167,390.8349999996808,-0.055449530269754674 +78168,390.8399999996808,-0.0554494768156026 +78169,390.8449999996808,-0.05544942336546832 +78170,390.8499999996808,-0.055449369919350316 +78171,390.8549999996808,-0.05544931647724704 +78172,390.8599999996808,-0.05544926303915696 +78173,390.8649999996808,-0.055449209605078535 +78174,390.8699999996808,-0.055449156175010235 +78175,390.87499999968077,-0.0554491027489505 +78176,390.87999999968076,-0.05544904932689781 +78177,390.88499999968076,-0.055448995908850635 +78178,390.88999999968075,-0.05544894249480744 +78179,390.89499999968075,-0.05544888908476668 +78180,390.89999999968074,-0.05544883567872683 +78181,390.90499999968074,-0.05544878227668634 +78182,390.90999999968074,-0.05544872887864371 +78183,390.91499999968073,-0.05544867548459737 +78184,390.9199999996807,-0.0554486220945458 +78185,390.9249999996807,-0.055448568708487474 +78186,390.9299999996807,-0.055448515326420846 +78187,390.9349999996807,-0.05544846194834439 +78188,390.9399999996807,-0.05544840857425658 +78189,390.9449999996807,-0.05544835520415588 +78190,390.9499999996807,-0.055448301838040746 +78191,390.9549999996807,-0.055448248475909664 +78192,390.9599999996807,-0.055448195117761105 +78193,390.9649999996807,-0.05544814176359353 +78194,390.9699999996807,-0.0554480884134054 +78195,390.9749999996807,-0.05544803506719521 +78196,390.9799999996807,-0.05544798172496141 +78197,390.98499999968067,-0.055447928386702476 +78198,390.98999999968066,-0.05544787505241688 +78199,390.99499999968066,-0.05544782172210309 +78200,390.99999999968065,-0.05544776839575958 +78201,391.00499999968065,-0.05544771507338484 +78202,391.00999999968064,-0.05544766175497732 +78203,391.01499999968064,-0.055447608440535506 +78204,391.01999999968064,-0.05544755513005786 +78205,391.02499999968063,-0.05544750182354287 +78206,391.0299999996806,-0.055447448520988984 +78207,391.0349999996806,-0.0554473952223947 +78208,391.0399999996806,-0.0554473419277585 +78209,391.0449999996806,-0.055447288637078845 +78210,391.0499999996806,-0.05544723535035421 +78211,391.0549999996806,-0.055447182067583055 +78212,391.0599999996806,-0.05544712878876389 +78213,391.0649999996806,-0.055447075513895175 +78214,391.0699999996806,-0.05544702224297538 +78215,391.0749999996806,-0.05544696897600298 +78216,391.0799999996806,-0.05544691571297646 +78217,391.0849999996806,-0.0554468624538943 +78218,391.0899999996806,-0.05544680919875498 +78219,391.09499999968057,-0.055446755947556964 +78220,391.09999999968056,-0.05544670270029874 +78221,391.10499999968056,-0.0554466494569788 +78222,391.10999999968055,-0.055446596217595616 +78223,391.11499999968055,-0.05544654298214765 +78224,391.11999999968054,-0.05544648975063339 +78225,391.12499999968054,-0.05544643652305133 +78226,391.12999999968054,-0.055446383299399944 +78227,391.13499999968053,-0.0554463300796777 +78228,391.1399999996805,-0.055446276863883086 +78229,391.1449999996805,-0.0554462236520146 +78230,391.1499999996805,-0.05544617044407071 +78231,391.1549999996805,-0.055446117240049886 +78232,391.1599999996805,-0.05544606403995063 +78233,391.1649999996805,-0.05544601084377142 +78234,391.1699999996805,-0.05544595765151074 +78235,391.1749999996805,-0.05544590446316707 +78236,391.1799999996805,-0.055445851278738884 +78237,391.1849999996805,-0.05544579809822469 +78238,391.1899999996805,-0.055445744921622964 +78239,391.1949999996805,-0.05544569174893218 +78240,391.1999999996805,-0.05544563858015083 +78241,391.20499999968047,-0.055445585415277394 +78242,391.20999999968046,-0.05544553225431036 +78243,391.21499999968046,-0.05544547909724824 +78244,391.21999999968045,-0.055445425944089494 +78245,391.22499999968045,-0.05544537279483261 +78246,391.22999999968044,-0.05544531964947608 +78247,391.23499999968044,-0.05544526650801838 +78248,391.23999999968044,-0.055445213370458005 +78249,391.24499999968043,-0.05544516023679346 +78250,391.2499999996804,-0.0554451071070232 +78251,391.2549999996804,-0.05544505398114575 +78252,391.2599999996804,-0.05544500085915958 +78253,391.2649999996804,-0.05544494774106318 +78254,391.2699999996804,-0.05544489462685505 +78255,391.2749999996804,-0.05544484151653366 +78256,391.2799999996804,-0.05544478841009752 +78257,391.2849999996804,-0.0554447353075451 +78258,391.2899999996804,-0.055444682208874926 +78259,391.2949999996804,-0.05544462911408546 +78260,391.2999999996804,-0.0554445760231752 +78261,391.3049999996804,-0.055444522936142646 +78262,391.3099999996804,-0.055444469852986275 +78263,391.31499999968037,-0.05544441677370459 +78264,391.31999999968036,-0.05544436369829609 +78265,391.32499999968036,-0.055444310626759245 +78266,391.32999999968035,-0.05544425755909258 +78267,391.33499999968035,-0.05544420449529457 +78268,391.33999999968034,-0.05544415143536372 +78269,391.34499999968034,-0.05544409837929851 +78270,391.34999999968034,-0.055444045327097444 +78271,391.35499999968033,-0.05544399227875903 +78272,391.3599999996803,-0.055443939234281744 +78273,391.3649999996803,-0.05544388619366408 +78274,391.3699999996803,-0.055443833156904564 +78275,391.3749999996803,-0.05544378012400165 +78276,391.3799999996803,-0.05544372709495387 +78277,391.3849999996803,-0.05544367406975971 +78278,391.3899999996803,-0.05544362104841766 +78279,391.3949999996803,-0.05544356803092622 +78280,391.3999999996803,-0.0554435150172839 +78281,391.4049999996803,-0.05544346200748919 +78282,391.4099999996803,-0.055443409001540586 +78283,391.4149999996803,-0.05544335599943659 +78284,391.4199999996803,-0.055443303001175705 +78285,391.42499999968027,-0.05544325000675643 +78286,391.42999999968026,-0.05544319701617727 +78287,391.43499999968026,-0.05544314402943671 +78288,391.43999999968025,-0.05544309104653327 +78289,391.44499999968025,-0.055443038067465436 +78290,391.44999999968024,-0.05544298509223172 +78291,391.45499999968024,-0.055442932120830624 +78292,391.45999999968024,-0.055442879153260634 +78293,391.46499999968023,-0.055442826189520275 +78294,391.4699999996802,-0.055442773229608035 +78295,391.4749999996802,-0.05544272027352243 +78296,391.4799999996802,-0.05544266732126195 +78297,391.4849999996802,-0.055442614372825105 +78298,391.4899999996802,-0.0554425614282104 +78299,391.4949999996802,-0.05544250848741633 +78300,391.4999999996802,-0.05544245555044142 +78301,391.5049999996802,-0.05544240261728416 +78302,391.5099999996802,-0.055442349687943066 +78303,391.5149999996802,-0.05544229676241663 +78304,391.5199999996802,-0.05544224384070337 +78305,391.5249999996802,-0.05544219092280179 +78306,391.5299999996802,-0.05544213800871039 +78307,391.53499999968017,-0.05544208509842767 +78308,391.53999999968016,-0.05544203219195215 +78309,391.54499999968016,-0.055441979289282343 +78310,391.54999999968015,-0.05544192639041676 +78311,391.55499999968015,-0.05544187349535389 +78312,391.55999999968014,-0.05544182060409226 +78313,391.56499999968014,-0.05544176771663037 +78314,391.56999999968014,-0.055441714832966726 +78315,391.57499999968013,-0.05544166195309984 +78316,391.5799999996801,-0.055441609077028234 +78317,391.5849999996801,-0.0554415562047504 +78318,391.5899999996801,-0.05544150333626486 +78319,391.5949999996801,-0.05544145047157012 +78320,391.5999999996801,-0.055441397610664696 +78321,391.6049999996801,-0.0554413447535471 +78322,391.6099999996801,-0.05544129190021584 +78323,391.6149999996801,-0.05544123905066944 +78324,391.6199999996801,-0.05544118620490639 +78325,391.6249999996801,-0.055441133362925214 +78326,391.6299999996801,-0.05544108052472444 +78327,391.6349999996801,-0.05544102769030256 +78328,391.6399999996801,-0.0554409748596581 +78329,391.64499999968007,-0.05544092203278957 +78330,391.64999999968006,-0.055440869209695494 +78331,391.65499999968006,-0.05544081639037437 +78332,391.65999999968005,-0.05544076357482473 +78333,391.66499999968005,-0.055440710763045076 +78334,391.66999999968004,-0.05544065795503393 +78335,391.67499999968004,-0.05544060515078981 +78336,391.67999999968004,-0.05544055235031122 +78337,391.68499999968003,-0.05544049955359671 +78338,391.68999999968,-0.05544044676064476 +78339,391.69499999968,-0.0554403939714539 +78340,391.69999999968,-0.05544034118602267 +78341,391.70499999968,-0.055440288404349544 +78342,391.70999999968,-0.05544023562643308 +78343,391.71499999968,-0.05544018285227178 +78344,391.71999999968,-0.05544013008186416 +78345,391.72499999968,-0.05544007731520874 +78346,391.72999999968,-0.055440024552304054 +78347,391.73499999968,-0.055439971793148614 +78348,391.73999999968,-0.05543991903774094 +78349,391.74499999968,-0.05543986628607954 +78350,391.74999999967997,-0.055439813538162956 +78351,391.75499999967997,-0.05543976079398969 +78352,391.75999999967996,-0.05543970805355828 +78353,391.76499999967996,-0.055439655316867245 +78354,391.76999999967995,-0.05543960258391511 +78355,391.77499999967995,-0.05543954985470038 +78356,391.77999999967994,-0.055439497129221596 +78357,391.78499999967994,-0.05543944440747727 +78358,391.78999999967994,-0.05543939168946593 +78359,391.79499999967993,-0.05543933897518612 +78360,391.7999999996799,-0.05543928626463634 +78361,391.8049999996799,-0.05543923355781512 +78362,391.8099999996799,-0.05543918085472097 +78363,391.8149999996799,-0.055439128155352436 +78364,391.8199999996799,-0.05543907545970804 +78365,391.8249999996799,-0.0554390227677863 +78366,391.8299999996799,-0.05543897007958576 +78367,391.8349999996799,-0.05543891739510494 +78368,391.8399999996799,-0.05543886471434235 +78369,391.8449999996799,-0.05543881203729653 +78370,391.8499999996799,-0.055438759363966014 +78371,391.8549999996799,-0.055438706694349325 +78372,391.85999999967987,-0.05543865402844497 +78373,391.86499999967987,-0.05543860136625152 +78374,391.86999999967986,-0.05543854870776747 +78375,391.87499999967986,-0.05543849605299136 +78376,391.87999999967985,-0.055438443401921715 +78377,391.88499999967985,-0.05543839075455708 +78378,391.88999999967984,-0.055438338110895956 +78379,391.89499999967984,-0.055438285470936904 +78380,391.89999999967984,-0.05543823283467845 +78381,391.90499999967983,-0.0554381802021191 +78382,391.9099999996798,-0.055438127573257404 +78383,391.9149999996798,-0.055438074948091894 +78384,391.9199999996798,-0.05543802232662111 +78385,391.9249999996798,-0.05543796970884357 +78386,391.9299999996798,-0.05543791709475781 +78387,391.9349999996798,-0.055437864484362366 +78388,391.9399999996798,-0.055437811877655764 +78389,391.9449999996798,-0.055437759274636546 +78390,391.9499999996798,-0.05543770667530325 +78391,391.9549999996798,-0.0554376540796544 +78392,391.9599999996798,-0.055437601487688525 +78393,391.9649999996798,-0.05543754889940418 +78394,391.96999999967977,-0.05543749631479989 +78395,391.97499999967977,-0.055437443733874193 +78396,391.97999999967976,-0.055437391156625625 +78397,391.98499999967976,-0.055437338583052706 +78398,391.98999999967975,-0.055437286013153994 +78399,391.99499999967975,-0.05543723344692802 +78400,391.99999999967974,-0.05543718088437332 +78401,392.00499999967974,-0.05543712832548843 +78402,392.00999999967974,-0.05543707577027189 +78403,392.01499999967973,-0.05543702321872223 +78404,392.0199999996797,-0.05543697067083801 +78405,392.0249999996797,-0.05543691812661774 +78406,392.0299999996797,-0.05543686558605998 +78407,392.0349999996797,-0.055436813049163265 +78408,392.0399999996797,-0.05543676051592612 +78409,392.0449999996797,-0.05543670798634712 +78410,392.0499999996797,-0.05543665546042476 +78411,392.0549999996797,-0.05543660293815762 +78412,392.0599999996797,-0.05543655041954422 +78413,392.0649999996797,-0.055436497904583104 +78414,392.0699999996797,-0.05543644539327282 +78415,392.0749999996797,-0.05543639288561191 +78416,392.07999999967967,-0.0554363403815989 +78417,392.08499999967967,-0.055436287881232345 +78418,392.08999999967966,-0.0554362353845108 +78419,392.09499999967966,-0.05543618289143278 +78420,392.09999999967965,-0.05543613040199685 +78421,392.10499999967965,-0.05543607791620155 +78422,392.10999999967964,-0.05543602543404543 +78423,392.11499999967964,-0.05543597295552702 +78424,392.11999999967964,-0.055435920480644885 +78425,392.12499999967963,-0.05543586800939754 +78426,392.1299999996796,-0.055435815541783555 +78427,392.1349999996796,-0.05543576307780147 +78428,392.1399999996796,-0.05543571061744983 +78429,392.1449999996796,-0.05543565816072719 +78430,392.1499999996796,-0.05543560570763208 +78431,392.1549999996796,-0.05543555325816305 +78432,392.1599999996796,-0.05543550081231867 +78433,392.1649999996796,-0.05543544837009745 +78434,392.1699999996796,-0.05543539593149797 +78435,392.1749999996796,-0.055435343496518755 +78436,392.1799999996796,-0.05543529106515837 +78437,392.1849999996796,-0.05543523863741537 +78438,392.18999999967957,-0.055435186213288294 +78439,392.19499999967957,-0.05543513379277569 +78440,392.19999999967956,-0.0554350813758761 +78441,392.20499999967956,-0.055435028962588076 +78442,392.20999999967955,-0.05543497655291019 +78443,392.21499999967955,-0.05543492414684097 +78444,392.21999999967954,-0.055434871744379 +78445,392.22499999967954,-0.0554348193455228 +78446,392.22999999967953,-0.05543476695027093 +78447,392.23499999967953,-0.055434714558621936 +78448,392.2399999996795,-0.055434662170574384 +78449,392.2449999996795,-0.05543460978612681 +78450,392.2499999996795,-0.055434557405277786 +78451,392.2549999996795,-0.055434505028025854 +78452,392.2599999996795,-0.05543445265436957 +78453,392.2649999996795,-0.05543440028430749 +78454,392.2699999996795,-0.05543434791783817 +78455,392.2749999996795,-0.05543429555496016 +78456,392.2799999996795,-0.055434243195672014 +78457,392.2849999996795,-0.05543419083997229 +78458,392.2899999996795,-0.055434138487859545 +78459,392.2949999996795,-0.055434086139332324 +78460,392.29999999967947,-0.055434033794389194 +78461,392.30499999967947,-0.055433981453028726 +78462,392.30999999967946,-0.055433929115249456 +78463,392.31499999967946,-0.05543387678104995 +78464,392.31999999967945,-0.05543382445042876 +78465,392.32499999967945,-0.05543377212338445 +78466,392.32999999967944,-0.055433719799915564 +78467,392.33499999967944,-0.055433667480020675 +78468,392.33999999967943,-0.05543361516369834 +78469,392.34499999967943,-0.05543356285094711 +78470,392.3499999996794,-0.05543351054176556 +78471,392.3549999996794,-0.055433458236152235 +78472,392.3599999996794,-0.05543340593410571 +78473,392.3649999996794,-0.05543335363562453 +78474,392.3699999996794,-0.05543330134070726 +78475,392.3749999996794,-0.05543324904935247 +78476,392.3799999996794,-0.05543319676155871 +78477,392.3849999996794,-0.055433144477324545 +78478,392.3899999996794,-0.05543309219664855 +78479,392.3949999996794,-0.05543303991952927 +78480,392.3999999996794,-0.05543298764596527 +78481,392.4049999996794,-0.05543293537595511 +78482,392.40999999967937,-0.05543288310949737 +78483,392.41499999967937,-0.05543283084659059 +78484,392.41999999967936,-0.05543277858723336 +78485,392.42499999967936,-0.05543272633142422 +78486,392.42999999967935,-0.055432674079161755 +78487,392.43499999967935,-0.05543262183044452 +78488,392.43999999967934,-0.05543256958527108 +78489,392.44499999967934,-0.05543251734364 +78490,392.44999999967933,-0.055432465105549854 +78491,392.45499999967933,-0.055432412870999204 +78492,392.4599999996793,-0.05543236063998661 +78493,392.4649999996793,-0.055432308412510636 +78494,392.4699999996793,-0.05543225618856987 +78495,392.4749999996793,-0.055432203968162855 +78496,392.4799999996793,-0.055432151751288176 +78497,392.4849999996793,-0.05543209953794438 +78498,392.4899999996793,-0.055432047328130056 +78499,392.4949999996793,-0.05543199512184377 +78500,392.4999999996793,-0.05543194291908408 +78501,392.5049999996793,-0.055431890719849566 +78502,392.5099999996793,-0.0554318385241388 +78503,392.5149999996793,-0.05543178633195034 +78504,392.51999999967927,-0.05543173414328276 +78505,392.52499999967927,-0.05543168195813463 +78506,392.52999999967926,-0.05543162977650454 +78507,392.53499999967926,-0.055431577598391034 +78508,392.53999999967925,-0.05543152542379269 +78509,392.54499999967925,-0.055431473252708086 +78510,392.54999999967924,-0.055431421085135796 +78511,392.55499999967924,-0.0554313689210744 +78512,392.55999999967923,-0.05543131676052245 +78513,392.56499999967923,-0.055431264603478525 +78514,392.5699999996792,-0.0554312124499412 +78515,392.5749999996792,-0.055431160299909056 +78516,392.5799999996792,-0.05543110815338066 +78517,392.5849999996792,-0.0554310560103546 +78518,392.5899999996792,-0.05543100387082943 +78519,392.5949999996792,-0.05543095173480373 +78520,392.5999999996792,-0.055430899602276075 +78521,392.6049999996792,-0.05543084747324505 +78522,392.6099999996792,-0.05543079534770922 +78523,392.6149999996792,-0.05543074322566717 +78524,392.6199999996792,-0.055430691107117486 +78525,392.6249999996792,-0.05543063899205872 +78526,392.62999999967917,-0.055430586880489456 +78527,392.63499999967917,-0.05543053477240828 +78528,392.63999999967916,-0.055430482667813766 +78529,392.64499999967916,-0.05543043056670449 +78530,392.64999999967915,-0.055430378469079035 +78531,392.65499999967915,-0.05543032637493597 +78532,392.65999999967914,-0.05543027428427389 +78533,392.66499999967914,-0.05543022219709137 +78534,392.66999999967913,-0.05543017011338698 +78535,392.67499999967913,-0.055430118033159316 +78536,392.6799999996791,-0.05543006595640695 +78537,392.6849999996791,-0.05543001388312845 +78538,392.6899999996791,-0.05542996181332241 +78539,392.6949999996791,-0.05542990974698741 +78540,392.6999999996791,-0.05542985768412203 +78541,392.7049999996791,-0.055429805624724854 +78542,392.7099999996791,-0.055429753568794454 +78543,392.7149999996791,-0.05542970151632943 +78544,392.7199999996791,-0.05542964946732835 +78545,392.7249999996791,-0.05542959742178981 +78546,392.7299999996791,-0.05542954537971238 +78547,392.7349999996791,-0.055429493341094656 +78548,392.73999999967907,-0.05542944130593522 +78549,392.74499999967907,-0.05542938927423263 +78550,392.74999999967906,-0.05542933724598551 +78551,392.75499999967906,-0.05542928522119241 +78552,392.75999999967905,-0.05542923319985195 +78553,392.76499999967905,-0.05542918118196269 +78554,392.76999999967904,-0.05542912916752323 +78555,392.77499999967904,-0.05542907715653215 +78556,392.77999999967903,-0.05542902514898803 +78557,392.78499999967903,-0.05542897314488947 +78558,392.789999999679,-0.05542892114423505 +78559,392.794999999679,-0.055428869147023364 +78560,392.799999999679,-0.05542881715325299 +78561,392.804999999679,-0.055428765162922534 +78562,392.809999999679,-0.055428713176030556 +78563,392.814999999679,-0.05542866119257566 +78564,392.819999999679,-0.05542860921255644 +78565,392.824999999679,-0.05542855723597148 +78566,392.829999999679,-0.05542850526281937 +78567,392.834999999679,-0.0554284532930987 +78568,392.839999999679,-0.055428401326808055 +78569,392.844999999679,-0.05542834936394604 +78570,392.84999999967897,-0.05542829740451123 +78571,392.85499999967897,-0.05542824544850222 +78572,392.85999999967896,-0.05542819349591761 +78573,392.86499999967896,-0.05542814154675598 +78574,392.86999999967895,-0.055428089601015945 +78575,392.87499999967895,-0.05542803765869607 +78576,392.87999999967894,-0.05542798571979496 +78577,392.88499999967894,-0.05542793378431121 +78578,392.88999999967893,-0.055427881852243406 +78579,392.89499999967893,-0.05542782992359014 +78580,392.8999999996789,-0.05542777799835001 +78581,392.9049999996789,-0.055427726076521626 +78582,392.9099999996789,-0.05542767415810356 +78583,392.9149999996789,-0.05542762224309442 +78584,392.9199999996789,-0.05542757033149279 +78585,392.9249999996789,-0.055427518423297274 +78586,392.9299999996789,-0.05542746651850646 +78587,392.9349999996789,-0.05542741461711897 +78588,392.9399999996789,-0.05542736271913337 +78589,392.9449999996789,-0.05542731082454827 +78590,392.9499999996789,-0.05542725893336227 +78591,392.9549999996789,-0.055427207045573954 +78592,392.95999999967887,-0.05542715516118193 +78593,392.96499999967887,-0.0554271032801848 +78594,392.96999999967886,-0.05542705140258114 +78595,392.97499999967886,-0.05542699952836958 +78596,392.97999999967885,-0.05542694765754869 +78597,392.98499999967885,-0.0554268957901171 +78598,392.98999999967884,-0.05542684392607339 +78599,392.99499999967884,-0.05542679206541617 +78600,392.99999999967883,-0.055426740208144025 +78601,393.00499999967883,-0.055426688354255564 +78602,393.0099999996788,-0.05542663650374938 +78603,393.0149999996788,-0.05542658465662409 +78604,393.0199999996788,-0.05542653281287828 +78605,393.0249999996788,-0.055426480972510565 +78606,393.0299999996788,-0.05542642913551954 +78607,393.0349999996788,-0.05542637730190381 +78608,393.0399999996788,-0.055426325471661986 +78609,393.0449999996788,-0.05542627364479265 +78610,393.0499999996788,-0.055426221821294405 +78611,393.0549999996788,-0.05542617000116589 +78612,393.0599999996788,-0.05542611818440567 +78613,393.0649999996788,-0.05542606637101237 +78614,393.06999999967877,-0.05542601456098459 +78615,393.07499999967877,-0.05542596275432092 +78616,393.07999999967876,-0.05542591095101999 +78617,393.08499999967876,-0.05542585915108039 +78618,393.08999999967875,-0.055425807354500735 +78619,393.09499999967875,-0.055425755561279634 +78620,393.09999999967874,-0.05542570377141567 +78621,393.10499999967874,-0.055425651984907474 +78622,393.10999999967873,-0.05542560020175364 +78623,393.11499999967873,-0.05542554842195278 +78624,393.1199999996787,-0.0554254966455035 +78625,393.1249999996787,-0.05542544487240442 +78626,393.1299999996787,-0.055425393102654125 +78627,393.1349999996787,-0.05542534133625124 +78628,393.1399999996787,-0.05542528957319436 +78629,393.1449999996787,-0.05542523781348212 +78630,393.1499999996787,-0.05542518605711311 +78631,393.1549999996787,-0.055425134304085945 +78632,393.1599999996787,-0.05542508255439923 +78633,393.1649999996787,-0.05542503080805158 +78634,393.1699999996787,-0.055424979065041596 +78635,393.1749999996787,-0.055424927325367905 +78636,393.17999999967867,-0.055424875589029116 +78637,393.18499999967867,-0.05542482385602383 +78638,393.18999999967866,-0.05542477212635068 +78639,393.19499999967866,-0.05542472040000824 +78640,393.19999999967865,-0.05542466867699516 +78641,393.20499999967865,-0.055424616957310026 +78642,393.20999999967864,-0.05542456524095147 +78643,393.21499999967864,-0.05542451352791809 +78644,393.21999999967863,-0.05542446181820853 +78645,393.22499999967863,-0.05542441011182137 +78646,393.2299999996786,-0.05542435840875524 +78647,393.2349999996786,-0.05542430670900875 +78648,393.2399999996786,-0.05542425501258052 +78649,393.2449999996786,-0.05542420331946916 +78650,393.2499999996786,-0.05542415162967329 +78651,393.2549999996786,-0.05542409994319152 +78652,393.2599999996786,-0.05542404826002247 +78653,393.2649999996786,-0.05542399658016477 +78654,393.2699999996786,-0.05542394490361702 +78655,393.2749999996786,-0.05542389323037783 +78656,393.2799999996786,-0.05542384156044582 +78657,393.2849999996786,-0.05542378989381963 +78658,393.28999999967857,-0.055423738230497864 +78659,393.29499999967857,-0.055423686570479136 +78660,393.29999999967856,-0.05542363491376207 +78661,393.30499999967856,-0.055423583260345285 +78662,393.30999999967855,-0.0554235316102274 +78663,393.31499999967855,-0.05542347996340703 +78664,393.31999999967854,-0.055423428319882805 +78665,393.32499999967854,-0.05542337667965333 +78666,393.32999999967853,-0.05542332504271724 +78667,393.33499999967853,-0.055423273409073145 +78668,393.3399999996785,-0.05542322177871968 +78669,393.3449999996785,-0.05542317015165545 +78670,393.3499999996785,-0.0554231185278791 +78671,393.3549999996785,-0.055423066907389226 +78672,393.3599999996785,-0.055423015290184466 +78673,393.3649999996785,-0.05542296367626344 +78674,393.3699999996785,-0.05542291206562476 +78675,393.3749999996785,-0.05542286045826707 +78676,393.3799999996785,-0.055422808854188974 +78677,393.3849999996785,-0.05542275725338911 +78678,393.3899999996785,-0.0554227056558661 +78679,393.3949999996785,-0.05542265406161856 +78680,393.39999999967847,-0.05542260247064512 +78681,393.40499999967847,-0.05542255088294439 +78682,393.40999999967846,-0.055422499298515025 +78683,393.41499999967846,-0.055422447717355626 +78684,393.41999999967845,-0.05542239613946484 +78685,393.42499999967845,-0.05542234456484128 +78686,393.42999999967844,-0.05542229299348358 +78687,393.43499999967844,-0.05542224142539035 +78688,393.43999999967843,-0.05542218986056024 +78689,393.44499999967843,-0.055422138298991855 +78690,393.4499999996784,-0.055422086740683836 +78691,393.4549999996784,-0.055422035185634815 +78692,393.4599999996784,-0.05542198363384341 +78693,393.4649999996784,-0.05542193208530826 +78694,393.4699999996784,-0.05542188054002799 +78695,393.4749999996784,-0.05542182899800123 +78696,393.4799999996784,-0.05542177745922661 +78697,393.4849999996784,-0.05542172592370275 +78698,393.4899999996784,-0.0554216743914283 +78699,393.4949999996784,-0.055421622862401876 +78700,393.4999999996784,-0.05542157133662211 +78701,393.5049999996784,-0.05542151981408763 +78702,393.50999999967837,-0.055421468294797084 +78703,393.51499999967837,-0.05542141677874908 +78704,393.51999999967836,-0.05542136526594227 +78705,393.52499999967836,-0.05542131375637528 +78706,393.52999999967835,-0.05542126225004674 +78707,393.53499999967835,-0.05542121074695528 +78708,393.53999999967834,-0.05542115924709954 +78709,393.54499999967834,-0.055421107750478156 +78710,393.54999999967833,-0.05542105625708976 +78711,393.55499999967833,-0.055421004766932985 +78712,393.5599999996783,-0.05542095328000646 +78713,393.5649999996783,-0.055420901796308826 +78714,393.5699999996783,-0.055420850315838724 +78715,393.5749999996783,-0.05542079883859478 +78716,393.5799999996783,-0.05542074736457562 +78717,393.5849999996783,-0.055420695893779896 +78718,393.5899999996783,-0.05542064442620624 +78719,393.5949999996783,-0.05542059296185329 +78720,393.5999999996783,-0.05542054150071968 +78721,393.6049999996783,-0.05542049004280406 +78722,393.6099999996783,-0.05542043858810506 +78723,393.6149999996783,-0.0554203871366213 +78724,393.61999999967827,-0.055420335688351446 +78725,393.62499999967827,-0.05542028424329412 +78726,393.62999999967826,-0.05542023280144797 +78727,393.63499999967826,-0.05542018136281162 +78728,393.63999999967825,-0.05542012992738373 +78729,393.64499999967825,-0.05542007849516293 +78730,393.64999999967824,-0.055420027066147855 +78731,393.65499999967824,-0.05541997564033714 +78732,393.65999999967823,-0.05541992421772945 +78733,393.66499999967823,-0.055419872798323395 +78734,393.6699999996782,-0.05541982138211765 +78735,393.6749999996782,-0.05541976996911082 +78736,393.6799999996782,-0.05541971855930157 +78737,393.6849999996782,-0.05541966715268855 +78738,393.6899999996782,-0.05541961574927038 +78739,393.6949999996782,-0.055419564349045713 +78740,393.6999999996782,-0.055419512952013195 +78741,393.7049999996782,-0.055419461558171464 +78742,393.7099999996782,-0.05541941016751916 +78743,393.7149999996782,-0.05541935878005494 +78744,393.7199999996782,-0.05541930739577744 +78745,393.7249999996782,-0.0554192560146853 +78746,393.72999999967817,-0.05541920463677718 +78747,393.73499999967817,-0.055419153262051726 +78748,393.73999999967816,-0.05541910189050756 +78749,393.74499999967816,-0.05541905052214334 +78750,393.74999999967815,-0.055418999156957714 +78751,393.75499999967815,-0.05541894779494933 +78752,393.75999999967814,-0.05541889643611684 +78753,393.76499999967814,-0.05541884508045887 +78754,393.76999999967813,-0.05541879372797408 +78755,393.77499999967813,-0.05541874237866112 +78756,393.7799999996781,-0.05541869103251864 +78757,393.7849999996781,-0.055418639689545274 +78758,393.7899999996781,-0.05541858834973969 +78759,393.7949999996781,-0.05541853701310053 +78760,393.7999999996781,-0.05541848567962644 +78761,393.8049999996781,-0.05541843434931607 +78762,393.8099999996781,-0.055418383022168075 +78763,393.8149999996781,-0.05541833169818109 +78764,393.8199999996781,-0.05541828037735378 +78765,393.8249999996781,-0.05541822905968479 +78766,393.8299999996781,-0.05541817774517277 +78767,393.8349999996781,-0.05541812643381637 +78768,393.83999999967807,-0.05541807512561424 +78769,393.84499999967807,-0.05541802382056504 +78770,393.84999999967806,-0.05541797251866741 +78771,393.85499999967806,-0.05541792121992002 +78772,393.85999999967805,-0.05541786992432151 +78773,393.86499999967805,-0.055417818631870536 +78774,393.86999999967804,-0.05541776734256575 +78775,393.87499999967804,-0.05541771605640581 +78776,393.87999999967803,-0.055417664773389365 +78777,393.88499999967803,-0.05541761349351508 +78778,393.889999999678,-0.05541756221678159 +78779,393.894999999678,-0.055417510943187566 +78780,393.899999999678,-0.05541745967273165 +78781,393.904999999678,-0.05541740840541252 +78782,393.909999999678,-0.05541735714122881 +78783,393.914999999678,-0.05541730588017917 +78784,393.919999999678,-0.055417254622262276 +78785,393.924999999678,-0.055417203367476776 +78786,393.929999999678,-0.05541715211582132 +78787,393.934999999678,-0.055417100867294594 +78788,393.939999999678,-0.05541704962189523 +78789,393.944999999678,-0.05541699837962189 +78790,393.94999999967797,-0.055416947140473224 +78791,393.95499999967797,-0.05541689590444791 +78792,393.95999999967796,-0.0554168446715446 +78793,393.96499999967796,-0.05541679344176194 +78794,393.96999999967795,-0.0554167422150986 +78795,393.97499999967795,-0.055416690991553226 +78796,393.97999999967794,-0.055416639771124494 +78797,393.98499999967794,-0.05541658855381107 +78798,393.98999999967793,-0.0554165373396116 +78799,393.99499999967793,-0.055416486128524754 +78800,393.9999999996779,-0.05541643492054918 +78801,394.0049999996779,-0.055416383715683554 +78802,394.0099999996779,-0.05541633251392653 +78803,394.0149999996779,-0.055416281315276775 +78804,394.0199999996779,-0.05541623011973294 +78805,394.0249999996779,-0.055416178927293704 +78806,394.0299999996779,-0.05541612773795771 +78807,394.0349999996779,-0.055416076551723634 +78808,394.0399999996779,-0.055416025368590145 +78809,394.0449999996779,-0.05541597418855589 +78810,394.0499999996779,-0.05541592301161956 +78811,394.0549999996779,-0.05541587183777979 +78812,394.05999999967787,-0.055415820667035265 +78813,394.06499999967787,-0.05541576949938464 +78814,394.06999999967786,-0.05541571833482658 +78815,394.07499999967786,-0.05541566717335975 +78816,394.07999999967785,-0.055415616014982835 +78817,394.08499999967785,-0.05541556485969447 +78818,394.08999999967784,-0.055415513707493334 +78819,394.09499999967784,-0.0554154625583781 +78820,394.09999999967783,-0.055415411412347425 +78821,394.10499999967783,-0.0554153602694 +78822,394.1099999996778,-0.05541530912953446 +78823,394.1149999996778,-0.0554152579927495 +78824,394.1199999996778,-0.05541520685904378 +78825,394.1249999996778,-0.05541515572841595 +78826,394.1299999996778,-0.0554151046008647 +78827,394.1349999996778,-0.05541505347638869 +78828,394.1399999996778,-0.0554150023549866 +78829,394.1449999996778,-0.05541495123665709 +78830,394.1499999996778,-0.05541490012139883 +78831,394.1549999996778,-0.05541484900921049 +78832,394.1599999996778,-0.05541479790009073 +78833,394.1649999996778,-0.05541474679403825 +78834,394.16999999967777,-0.05541469569105171 +78835,394.17499999967777,-0.055414644591129776 +78836,394.17999999967776,-0.055414593494271115 +78837,394.18499999967776,-0.0554145424004744 +78838,394.18999999967775,-0.05541449130973831 +78839,394.19499999967775,-0.05541444022206152 +78840,394.19999999967774,-0.0554143891374427 +78841,394.20499999967774,-0.05541433805588052 +78842,394.20999999967773,-0.05541428697737366 +78843,394.21499999967773,-0.055414235901920794 +78844,394.2199999996777,-0.05541418482952058 +78845,394.2249999996777,-0.05541413376017171 +78846,394.2299999996777,-0.05541408269387286 +78847,394.2349999996777,-0.05541403163062269 +78848,394.2399999996777,-0.05541398057041988 +78849,394.2449999996777,-0.05541392951326311 +78850,394.2499999996777,-0.055413878459151064 +78851,394.2549999996777,-0.055413827408082414 +78852,394.2599999996777,-0.05541377636005582 +78853,394.2649999996777,-0.05541372531506998 +78854,394.2699999996777,-0.05541367427312356 +78855,394.2749999996777,-0.05541362323421524 +78856,394.27999999967767,-0.05541357219834369 +78857,394.28499999967767,-0.05541352116550761 +78858,394.28999999967766,-0.055413470135705654 +78859,394.29499999967766,-0.05541341910893651 +78860,394.29999999967765,-0.05541336808519885 +78861,394.30499999967765,-0.05541331706449138 +78862,394.30999999967764,-0.05541326604681275 +78863,394.31499999967764,-0.05541321503216166 +78864,394.31999999967763,-0.05541316402053677 +78865,394.32499999967763,-0.05541311301193677 +78866,394.3299999996776,-0.05541306200636035 +78867,394.3349999996776,-0.055413011003806176 +78868,394.3399999996776,-0.05541296000427295 +78869,394.3449999996776,-0.055412909007759324 +78870,394.3499999996776,-0.055412858014264 +78871,394.3549999996776,-0.05541280702378566 +78872,394.3599999996776,-0.05541275603632297 +78873,394.3649999996776,-0.05541270505187464 +78874,394.3699999996776,-0.055412654070439334 +78875,394.3749999996776,-0.05541260309201573 +78876,394.3799999996776,-0.05541255211660253 +78877,394.3849999996776,-0.0554125011441984 +78878,394.38999999967757,-0.05541245017480205 +78879,394.39499999967757,-0.05541239920841214 +78880,394.39999999967756,-0.05541234824502736 +78881,394.40499999967756,-0.0554122972846464 +78882,394.40999999967755,-0.05541224632726794 +78883,394.41499999967755,-0.05541219537289067 +78884,394.41999999967754,-0.05541214442151328 +78885,394.42499999967754,-0.05541209347313445 +78886,394.42999999967753,-0.055412042527752864 +78887,394.43499999967753,-0.05541199158536722 +78888,394.4399999996775,-0.05541194064597619 +78889,394.4449999996775,-0.05541188970957848 +78890,394.4499999996775,-0.055411838776172756 +78891,394.4549999996775,-0.05541178784575773 +78892,394.4599999996775,-0.055411736918332066 +78893,394.4649999996775,-0.05541168599389448 +78894,394.4699999996775,-0.05541163507244364 +78895,394.4749999996775,-0.05541158415397824 +78896,394.4799999996775,-0.05541153323849697 +78897,394.4849999996775,-0.05541148232599852 +78898,394.4899999996775,-0.055411431416481575 +78899,394.4949999996775,-0.05541138050994483 +78900,394.49999999967747,-0.055411329606386985 +78901,394.50499999967747,-0.05541127870580673 +78902,394.50999999967746,-0.05541122780820274 +78903,394.51499999967746,-0.055411176913573716 +78904,394.51999999967745,-0.05541112602191835 +78905,394.52499999967745,-0.05541107513323533 +78906,394.52999999967744,-0.05541102424752336 +78907,394.53499999967744,-0.05541097336478113 +78908,394.53999999967743,-0.05541092248500732 +78909,394.54499999967743,-0.055410871608200636 +78910,394.5499999996774,-0.055410820734359774 +78911,394.5549999996774,-0.05541076986348341 +78912,394.5599999996774,-0.05541071899557025 +78913,394.5649999996774,-0.05541066813061899 +78914,394.5699999996774,-0.05541061726862833 +78915,394.5749999996774,-0.055410566409596955 +78916,394.5799999996774,-0.05541051555352357 +78917,394.5849999996774,-0.05541046470040685 +78918,394.5899999996774,-0.05541041385024552 +78919,394.5949999996774,-0.055410363003038254 +78920,394.5999999996774,-0.05541031215878375 +78921,394.6049999996774,-0.05541026131748072 +78922,394.60999999967737,-0.05541021047912786 +78923,394.61499999967737,-0.055410159643723846 +78924,394.61999999967736,-0.05541010881126739 +78925,394.62499999967736,-0.05541005798175721 +78926,394.62999999967735,-0.05541000715519196 +78927,394.63499999967735,-0.05540995633157037 +78928,394.63999999967734,-0.05540990551089114 +78929,394.64499999967734,-0.05540985469315295 +78930,394.64999999967733,-0.05540980387835452 +78931,394.65499999967733,-0.055409753066494545 +78932,394.6599999996773,-0.05540970225757171 +78933,394.6649999996773,-0.05540965145158474 +78934,394.6699999996773,-0.05540960064853231 +78935,394.6749999996773,-0.055409549848413134 +78936,394.6799999996773,-0.05540949905122592 +78937,394.6849999996773,-0.055409448256969356 +78938,394.6899999996773,-0.05540939746564214 +78939,394.6949999996773,-0.055409346677242996 +78940,394.6999999996773,-0.05540929589177061 +78941,394.7049999996773,-0.05540924510922369 +78942,394.7099999996773,-0.05540919432960094 +78943,394.7149999996773,-0.05540914355290106 +78944,394.71999999967727,-0.05540909277912276 +78945,394.72499999967727,-0.055409042008264735 +78946,394.72999999967726,-0.055408991240325695 +78947,394.73499999967726,-0.055408940475304334 +78948,394.73999999967725,-0.05540888971319937 +78949,394.74499999967725,-0.05540883895400951 +78950,394.74999999967724,-0.05540878819773346 +78951,394.75499999967724,-0.05540873744436991 +78952,394.75999999967723,-0.055408686693917575 +78953,394.76499999967723,-0.05540863594637516 +78954,394.7699999996772,-0.05540858520174138 +78955,394.7749999996772,-0.055408534460014924 +78956,394.7799999996772,-0.055408483721194515 +78957,394.7849999996772,-0.05540843298527885 +78958,394.7899999996772,-0.05540838225226665 +78959,394.7949999996772,-0.0554083315221566 +78960,394.7999999996772,-0.05540828079494743 +78961,394.8049999996772,-0.055408230070637846 +78962,394.8099999996772,-0.055408179349226545 +78963,394.8149999996772,-0.055408128630712254 +78964,394.8199999996772,-0.055408077915093674 +78965,394.8249999996772,-0.055408027202369495 +78966,394.82999999967717,-0.05540797649253845 +78967,394.83499999967717,-0.05540792578559926 +78968,394.83999999967716,-0.055407875081550616 +78969,394.84499999967716,-0.05540782438039122 +78970,394.84999999967715,-0.0554077736821198 +78971,394.85499999967715,-0.05540772298673507 +78972,394.85999999967714,-0.055407672294235724 +78973,394.86499999967714,-0.05540762160462049 +78974,394.86999999967713,-0.05540757091788808 +78975,394.87499999967713,-0.05540752023403721 +78976,394.8799999996771,-0.05540746955306658 +78977,394.8849999996771,-0.0554074188749749 +78978,394.8899999996771,-0.055407368199760894 +78979,394.8949999996771,-0.055407317527423276 +78980,394.8999999996771,-0.05540726685796075 +78981,394.9049999996771,-0.055407216191372045 +78982,394.9099999996771,-0.055407165527655865 +78983,394.9149999996771,-0.05540711486681093 +78984,394.9199999996771,-0.05540706420883596 +78985,394.9249999996771,-0.05540701355372967 +78986,394.9299999996771,-0.05540696290149076 +78987,394.9349999996771,-0.05540691225211796 +78988,394.93999999967707,-0.055406861605609994 +78989,394.94499999967707,-0.05540681096196555 +78990,394.94999999967706,-0.05540676032118337 +78991,394.95499999967706,-0.05540670968326217 +78992,394.95999999967705,-0.055406659048200656 +78993,394.96499999967705,-0.05540660841599755 +78994,394.96999999967704,-0.05540655778665158 +78995,394.97499999967704,-0.05540650716016144 +78996,394.97999999967703,-0.055406456536525865 +78997,394.98499999967703,-0.05540640591574359 +78998,394.989999999677,-0.055406355297813306 +78999,394.994999999677,-0.05540630468273375 +79000,394.999999999677,-0.05540625407050364 +79001,395.004999999677,-0.05540620346112169 +79002,395.009999999677,-0.055406152854586624 +79003,395.014999999677,-0.05540610225089716 +79004,395.019999999677,-0.055406051650052024 +79005,395.024999999677,-0.05540600105204993 +79006,395.029999999677,-0.0554059504568896 +79007,395.034999999677,-0.055405899864569765 +79008,395.039999999677,-0.05540584927508914 +79009,395.044999999677,-0.05540579868844645 +79010,395.04999999967697,-0.055405748104640426 +79011,395.05499999967697,-0.05540569752366977 +79012,395.05999999967696,-0.055405646945533224 +79013,395.06499999967696,-0.0554055963702295 +79014,395.06999999967695,-0.05540554579775734 +79015,395.07499999967695,-0.055405495228115456 +79016,395.07999999967694,-0.055405444661302566 +79017,395.08499999967694,-0.0554053940973174 +79018,395.08999999967693,-0.05540534353615868 +79019,395.09499999967693,-0.05540529297782514 +79020,395.0999999996769,-0.055405242422315495 +79021,395.1049999996769,-0.05540519186962848 +79022,395.1099999996769,-0.05540514131976282 +79023,395.1149999996769,-0.05540509077271725 +79024,395.1199999996769,-0.055405040228490465 +79025,395.1249999996769,-0.05540498968708123 +79026,395.1299999996769,-0.05540493914848826 +79027,395.1349999996769,-0.05540488861271027 +79028,395.1399999996769,-0.055404838079745986 +79029,395.1449999996769,-0.05540478754959416 +79030,395.1499999996769,-0.0554047370222535 +79031,395.1549999996769,-0.055404686497722754 +79032,395.15999999967687,-0.05540463597600062 +79033,395.16499999967687,-0.05540458545708586 +79034,395.16999999967686,-0.05540453494097719 +79035,395.17499999967686,-0.05540448442767334 +79036,395.17999999967685,-0.055404433917173035 +79037,395.18499999967685,-0.05540438340947502 +79038,395.18999999967684,-0.05540433290457802 +79039,395.19499999967684,-0.05540428240248075 +79040,395.19999999967683,-0.05540423190318195 +79041,395.20499999967683,-0.05540418140668037 +79042,395.2099999996768,-0.055404130912974726 +79043,395.2149999996768,-0.055404080422063746 +79044,395.2199999996768,-0.05540402993394618 +79045,395.2249999996768,-0.055403979448620744 +79046,395.2299999996768,-0.05540392896608617 +79047,395.2349999996768,-0.0554038784863412 +79048,395.2399999996768,-0.05540382800938457 +79049,395.2449999996768,-0.05540377753521501 +79050,395.2499999996768,-0.05540372706383125 +79051,395.2549999996768,-0.05540367659523204 +79052,395.2599999996768,-0.0554036261294161 +79053,395.2649999996768,-0.05540357566638217 +79054,395.26999999967677,-0.05540352520612898 +79055,395.27499999967677,-0.05540347474865527 +79056,395.27999999967676,-0.05540342429395977 +79057,395.28499999967676,-0.055403373842041234 +79058,395.28999999967675,-0.05540332339289837 +79059,395.29499999967675,-0.05540327294652994 +79060,395.29999999967674,-0.05540322250293467 +79061,395.30499999967674,-0.055403172062111296 +79062,395.30999999967673,-0.055403121624058575 +79063,395.31499999967673,-0.055403071188775216 +79064,395.3199999996767,-0.055403020756259976 +79065,395.3249999996767,-0.05540297032651159 +79066,395.3299999996767,-0.0554029198995288 +79067,395.3349999996767,-0.055402869475310326 +79068,395.3399999996767,-0.055402819053854926 +79069,395.3449999996767,-0.05540276863516134 +79070,395.3499999996767,-0.055402718219228306 +79071,395.3549999996767,-0.05540266780605455 +79072,395.3599999996767,-0.05540261739563884 +79073,395.3649999996767,-0.0554025669879799 +79074,395.3699999996767,-0.05540251658307646 +79075,395.3749999996767,-0.05540246618092728 +79076,395.37999999967667,-0.05540241578153109 +79077,395.38499999967667,-0.05540236538488664 +79078,395.38999999967666,-0.055402314990992664 +79079,395.39499999967666,-0.05540226459984793 +79080,395.39999999967665,-0.05540221421145114 +79081,395.40499999967665,-0.05540216382580107 +79082,395.40999999967664,-0.05540211344289645 +79083,395.41499999967664,-0.05540206306273602 +79084,395.41999999967663,-0.05540201268531854 +79085,395.42499999967663,-0.05540196231064273 +79086,395.4299999996766,-0.05540191193870736 +79087,395.4349999996766,-0.05540186156951116 +79088,395.4399999996766,-0.055401811203052875 +79089,395.4449999996766,-0.055401760839331245 +79090,395.4499999996766,-0.05540171047834504 +79091,395.4549999996766,-0.05540166012009298 +79092,395.4599999996766,-0.05540160976457382 +79093,395.4649999996766,-0.05540155941178631 +79094,395.4699999996766,-0.0554015090617292 +79095,395.4749999996766,-0.05540145871440123 +79096,395.4799999996766,-0.05540140836980115 +79097,395.4849999996766,-0.0554013580279277 +79098,395.48999999967657,-0.05540130768877964 +79099,395.49499999967657,-0.0554012573523557 +79100,395.49999999967656,-0.05540120701865465 +79101,395.50499999967656,-0.05540115668767523 +79102,395.50999999967655,-0.05540110635941619 +79103,395.51499999967655,-0.055401056033876274 +79104,395.51999999967654,-0.05540100571105424 +79105,395.52499999967654,-0.05540095539094884 +79106,395.52999999967653,-0.055400905073558805 +79107,395.53499999967653,-0.0554008547588829 +79108,395.5399999996765,-0.05540080444691988 +79109,395.5449999996765,-0.055400754137668484 +79110,395.5499999996765,-0.05540070383112749 +79111,395.5549999996765,-0.05540065352729562 +79112,395.5599999996765,-0.05540060322617163 +79113,395.5649999996765,-0.055400552927754275 +79114,395.5699999996765,-0.05540050263204232 +79115,395.5749999996765,-0.055400452339034505 +79116,395.5799999996765,-0.05540040204872958 +79117,395.5849999996765,-0.0554003517611263 +79118,395.5899999996765,-0.055400301476223435 +79119,395.5949999996765,-0.055400251194019715 +79120,395.59999999967647,-0.05540020091451392 +79121,395.60499999967647,-0.05540015063770479 +79122,395.60999999967646,-0.05540010036359107 +79123,395.61499999967646,-0.05540005009217153 +79124,395.61999999967645,-0.055399999823444915 +79125,395.62499999967645,-0.05539994955741 +79126,395.62999999967644,-0.055399899294065524 +79127,395.63499999967644,-0.055399849033410234 +79128,395.63999999967643,-0.055399798775442904 +79129,395.64499999967643,-0.055399748520162294 +79130,395.6499999996764,-0.055399698267567146 +79131,395.6549999996764,-0.05539964801765622 +79132,395.6599999996764,-0.055399597770428285 +79133,395.6649999996764,-0.05539954752588209 +79134,395.6699999996764,-0.05539949728401639 +79135,395.6749999996764,-0.05539944704482996 +79136,395.6799999996764,-0.055399396808321524 +79137,395.6849999996764,-0.05539934657448988 +79138,395.6899999996764,-0.05539929634333377 +79139,395.6949999996764,-0.05539924611485195 +79140,395.6999999996764,-0.055399195889043185 +79141,395.7049999996764,-0.05539914566590624 +79142,395.70999999967637,-0.055399095445439854 +79143,395.71499999967637,-0.055399045227642815 +79144,395.71999999967636,-0.055398995012513864 +79145,395.72499999967636,-0.05539894480005178 +79146,395.72999999967635,-0.055398894590255314 +79147,395.73499999967635,-0.05539884438312322 +79148,395.73999999967634,-0.05539879417865427 +79149,395.74499999967634,-0.05539874397684723 +79150,395.74999999967633,-0.05539869377770086 +79151,395.75499999967633,-0.05539864358121392 +79152,395.7599999996763,-0.05539859338738516 +79153,395.7649999996763,-0.055398543196213366 +79154,395.7699999996763,-0.0553984930076973 +79155,395.7749999996763,-0.05539844282183572 +79156,395.7799999996763,-0.05539839263862737 +79157,395.7849999996763,-0.05539834245807104 +79158,395.7899999996763,-0.0553982922801655 +79159,395.7949999996763,-0.0553982421049095 +79160,395.7999999996763,-0.05539819193230181 +79161,395.8049999996763,-0.055398141762341195 +79162,395.8099999996763,-0.05539809159502643 +79163,395.8149999996763,-0.05539804143035626 +79164,395.81999999967627,-0.05539799126832946 +79165,395.82499999967627,-0.05539794110894481 +79166,395.82999999967626,-0.055397890952201066 +79167,395.83499999967626,-0.055397840798096995 +79168,395.83999999967625,-0.05539779064663136 +79169,395.84499999967625,-0.055397740497802946 +79170,395.84999999967624,-0.05539769035161051 +79171,395.85499999967624,-0.05539764020805282 +79172,395.85999999967623,-0.055397590067128646 +79173,395.86499999967623,-0.05539753992883677 +79174,395.8699999996762,-0.055397489793175936 +79175,395.8749999996762,-0.055397439660144925 +79176,395.8799999996762,-0.05539738952974251 +79177,395.8849999996762,-0.05539733940196747 +79178,395.8899999996762,-0.05539728927681857 +79179,395.8949999996762,-0.05539723915429457 +79180,395.8999999996762,-0.055397189034394244 +79181,395.9049999996762,-0.05539713891711637 +79182,395.9099999996762,-0.05539708880245971 +79183,395.9149999996762,-0.05539703869042305 +79184,395.9199999996762,-0.05539698858100515 +79185,395.9249999996762,-0.055396938474204786 +79186,395.92999999967617,-0.055396888370020735 +79187,395.93499999967617,-0.05539683826845176 +79188,395.93999999967616,-0.05539678816949665 +79189,395.94499999967616,-0.05539673807315416 +79190,395.94999999967615,-0.05539668797942308 +79191,395.95499999967615,-0.055396637888302167 +79192,395.95999999967614,-0.05539658779979021 +79193,395.96499999967614,-0.055396537713885995 +79194,395.96999999967613,-0.05539648763058827 +79195,395.97499999967613,-0.05539643754989582 +79196,395.9799999996761,-0.05539638747180743 +79197,395.9849999996761,-0.055396337396321854 +79198,395.9899999996761,-0.05539628732343789 +79199,395.9949999996761,-0.0553962372531543 +79200,395.9999999996761,-0.05539618718546987 +79201,396.0049999996761,-0.055396137120383375 +79202,396.0099999996761,-0.055396087057893596 +79203,396.0149999996761,-0.055396036997999304 +79204,396.0199999996761,-0.05539598694069928 +79205,396.0249999996761,-0.055395936885992286 +79206,396.0299999996761,-0.05539588683387713 +79207,396.0349999996761,-0.055395836784352566 +79208,396.03999999967607,-0.05539578673741738 +79209,396.04499999967607,-0.055395736693070366 +79210,396.04999999967606,-0.05539568665131028 +79211,396.05499999967606,-0.055395636612135916 +79212,396.05999999967605,-0.05539558657554605 +79213,396.06499999967605,-0.05539553654153946 +79214,396.06999999967604,-0.05539548651011494 +79215,396.07499999967604,-0.05539543648127125 +79216,396.07999999967603,-0.05539538645500718 +79217,396.08499999967603,-0.055395336431321524 +79218,396.089999999676,-0.055395286410213046 +79219,396.094999999676,-0.05539523639168053 +79220,396.099999999676,-0.05539518637572276 +79221,396.104999999676,-0.05539513636233852 +79222,396.109999999676,-0.0553950863515266 +79223,396.114999999676,-0.05539503634328578 +79224,396.119999999676,-0.05539498633761484 +79225,396.124999999676,-0.05539493633451257 +79226,396.129999999676,-0.055394886333977725 +79227,396.134999999676,-0.05539483633600912 +79228,396.139999999676,-0.05539478634060554 +79229,396.144999999676,-0.05539473634776575 +79230,396.14999999967597,-0.05539468635748854 +79231,396.15499999967597,-0.055394636369772716 +79232,396.15999999967596,-0.05539458638461704 +79233,396.16499999967596,-0.05539453640202031 +79234,396.16999999967595,-0.0553944864219813 +79235,396.17499999967595,-0.05539443644449881 +79236,396.17999999967594,-0.05539438646957163 +79237,396.18499999967594,-0.05539433649719853 +79238,396.18999999967593,-0.0553942865273783 +79239,396.19499999967593,-0.055394236560109736 +79240,396.1999999996759,-0.055394186595391616 +79241,396.2049999996759,-0.05539413663322274 +79242,396.2099999996759,-0.055394086673601906 +79243,396.2149999996759,-0.05539403671652788 +79244,396.2199999996759,-0.055393986761999456 +79245,396.2249999996759,-0.05539393681001542 +79246,396.2299999996759,-0.055393886860574566 +79247,396.2349999996759,-0.055393836913675686 +79248,396.2399999996759,-0.05539378696931758 +79249,396.2449999996759,-0.055393737027499015 +79250,396.2499999996759,-0.0553936870882188 +79251,396.2549999996759,-0.055393637151475716 +79252,396.25999999967587,-0.05539358721726856 +79253,396.26499999967587,-0.05539353728559611 +79254,396.26999999967586,-0.055393487356457174 +79255,396.27499999967586,-0.055393437429850534 +79256,396.27999999967585,-0.055393387505774994 +79257,396.28499999967585,-0.055393337584229346 +79258,396.28999999967584,-0.05539328766521236 +79259,396.29499999967584,-0.05539323774872284 +79260,396.29999999967583,-0.05539318783475959 +79261,396.30499999967583,-0.055393137923321394 +79262,396.3099999996758,-0.05539308801440706 +79263,396.3149999996758,-0.05539303810801536 +79264,396.3199999996758,-0.0553929882041451 +79265,396.3249999996758,-0.055392938302795076 +79266,396.3299999996758,-0.05539288840396408 +79267,396.3349999996758,-0.05539283850765091 +79268,396.3399999996758,-0.05539278861385437 +79269,396.3449999996758,-0.05539273872257323 +79270,396.3499999996758,-0.055392688833806304 +79271,396.3549999996758,-0.055392638947552385 +79272,396.3599999996758,-0.055392589063810276 +79273,396.3649999996758,-0.055392539182578776 +79274,396.36999999967577,-0.055392489303856665 +79275,396.37499999967577,-0.05539243942764274 +79276,396.37999999967576,-0.055392389553935814 +79277,396.38499999967576,-0.05539233968273469 +79278,396.38999999967575,-0.055392289814038154 +79279,396.39499999967575,-0.055392239947845 +79280,396.39999999967574,-0.055392190084154025 +79281,396.40499999967574,-0.05539214022296405 +79282,396.40999999967573,-0.055392090364273845 +79283,396.41499999967573,-0.05539204050808223 +79284,396.4199999996757,-0.05539199065438801 +79285,396.4249999996757,-0.05539194080318997 +79286,396.4299999996757,-0.05539189095448691 +79287,396.4349999996757,-0.055391841108277634 +79288,396.4399999996757,-0.05539179126456095 +79289,396.4449999996757,-0.055391741423335646 +79290,396.4499999996757,-0.055391691584600534 +79291,396.4549999996757,-0.05539164174835442 +79292,396.4599999996757,-0.05539159191459609 +79293,396.4649999996757,-0.05539154208332437 +79294,396.4699999996757,-0.05539149225453804 +79295,396.4749999996757,-0.055391442428235904 +79296,396.47999999967567,-0.05539139260441678 +79297,396.48499999967567,-0.055391342783079466 +79298,396.48999999967566,-0.05539129296422276 +79299,396.49499999967566,-0.05539124314784547 +79300,396.49999999967565,-0.055391193333946404 +79301,396.50499999967565,-0.05539114352252436 +79302,396.50999999967564,-0.05539109371357814 +79303,396.51499999967564,-0.055391043907106564 +79304,396.51999999967563,-0.05539099410310843 +79305,396.52499999967563,-0.05539094430158252 +79306,396.5299999996756,-0.055390894502527675 +79307,396.5349999996756,-0.05539084470594269 +79308,396.5399999996756,-0.055390794911826365 +79309,396.5449999996756,-0.05539074512017751 +79310,396.5499999996756,-0.05539069533099493 +79311,396.5549999996756,-0.05539064554427743 +79312,396.5599999996756,-0.05539059576002384 +79313,396.5649999996756,-0.05539054597823295 +79314,396.5699999996756,-0.055390496198903565 +79315,396.5749999996756,-0.05539044642203449 +79316,396.5799999996756,-0.055390396647624546 +79317,396.5849999996756,-0.05539034687567252 +79318,396.58999999967557,-0.055390297106177246 +79319,396.59499999967557,-0.055390247339137534 +79320,396.59999999967556,-0.05539019757455218 +79321,396.60499999967556,-0.05539014781242 +79322,396.60999999967555,-0.055390098052739804 +79323,396.61499999967555,-0.0553900482955104 +79324,396.61999999967554,-0.05538999854073059 +79325,396.62499999967554,-0.055389948788399195 +79326,396.62999999967553,-0.05538989903851504 +79327,396.63499999967553,-0.05538984929107692 +79328,396.6399999996755,-0.05538979954608364 +79329,396.6449999996755,-0.05538974980353403 +79330,396.6499999996755,-0.05538970006342689 +79331,396.6549999996755,-0.05538965032576104 +79332,396.6599999996755,-0.0553896005905353 +79333,396.6649999996755,-0.05538955085774846 +79334,396.6699999996755,-0.055389501127399356 +79335,396.6749999996755,-0.05538945139948679 +79336,396.6799999996755,-0.055389401674009575 +79337,396.6849999996755,-0.05538935195096653 +79338,396.6899999996755,-0.055389302230356464 +79339,396.6949999996755,-0.0553892525121782 +79340,396.69999999967547,-0.05538920279643055 +79341,396.70499999967547,-0.05538915308311233 +79342,396.70999999967546,-0.055389103372222366 +79343,396.71499999967546,-0.05538905366375946 +79344,396.71999999967545,-0.05538900395772242 +79345,396.72499999967545,-0.05538895425411009 +79346,396.72999999967544,-0.05538890455292126 +79347,396.73499999967544,-0.05538885485415476 +79348,396.73999999967543,-0.055388805157809404 +79349,396.74499999967543,-0.05538875546388401 +79350,396.7499999996754,-0.05538870577237741 +79351,396.7549999996754,-0.0553886560832884 +79352,396.7599999996754,-0.0553886063966158 +79353,396.7649999996754,-0.05538855671235845 +79354,396.7699999996754,-0.05538850703051514 +79355,396.7749999996754,-0.05538845735108471 +79356,396.7799999996754,-0.05538840767406598 +79357,396.7849999996754,-0.05538835799945775 +79358,396.7899999996754,-0.05538830832725887 +79359,396.7949999996754,-0.055388258657468145 +79360,396.7999999996754,-0.055388208990084384 +79361,396.8049999996754,-0.05538815932510641 +79362,396.80999999967537,-0.05538810966253307 +79363,396.81499999967536,-0.05538806000236316 +79364,396.81999999967536,-0.05538801034459551 +79365,396.82499999967536,-0.05538796068922895 +79366,396.82999999967535,-0.05538791103626228 +79367,396.83499999967535,-0.05538786138569435 +79368,396.83999999967534,-0.05538781173752396 +79369,396.84499999967534,-0.05538776209174995 +79370,396.84999999967533,-0.05538771244837113 +79371,396.85499999967533,-0.055387662807386336 +79372,396.8599999996753,-0.055387613168794377 +79373,396.8649999996753,-0.05538756353259409 +79374,396.8699999996753,-0.05538751389878429 +79375,396.8749999996753,-0.05538746426736381 +79376,396.8799999996753,-0.05538741463833147 +79377,396.8849999996753,-0.055387365011686084 +79378,396.8899999996753,-0.0553873153874265 +79379,396.8949999996753,-0.05538726576555154 +79380,396.8999999996753,-0.055387216146060014 +79381,396.9049999996753,-0.05538716652895076 +79382,396.9099999996753,-0.0553871169142226 +79383,396.9149999996753,-0.05538706730187437 +79384,396.91999999967527,-0.05538701769190489 +79385,396.92499999967526,-0.05538696808431298 +79386,396.92999999967526,-0.05538691847909749 +79387,396.93499999967526,-0.055386868876257225 +79388,396.93999999967525,-0.05538681927579101 +79389,396.94499999967525,-0.0553867696776977 +79390,396.94999999967524,-0.05538672008197609 +79391,396.95499999967524,-0.05538667048862504 +79392,396.95999999967523,-0.05538662089764337 +79393,396.96499999967523,-0.05538657130902991 +79394,396.9699999996752,-0.05538652172278347 +79395,396.9749999996752,-0.0553864721389029 +79396,396.9799999996752,-0.05538642255738704 +79397,396.9849999996752,-0.05538637297823469 +79398,396.9899999996752,-0.0553863234014447 +79399,396.9949999996752,-0.0553862738270159 +79400,396.9999999996752,-0.055386224254947124 +79401,397.0049999996752,-0.0553861746852372 +79402,397.0099999996752,-0.055386125117884946 +79403,397.0149999996752,-0.05538607555288923 +79404,397.0199999996752,-0.05538602599024884 +79405,397.0249999996752,-0.05538597642996264 +79406,397.02999999967517,-0.05538592687202946 +79407,397.03499999967516,-0.05538587731644812 +79408,397.03999999967516,-0.05538582776321747 +79409,397.04499999967516,-0.05538577821233632 +79410,397.04999999967515,-0.055385728663803535 +79411,397.05499999967515,-0.05538567911761793 +79412,397.05999999967514,-0.05538562957377833 +79413,397.06499999967514,-0.0553855800322836 +79414,397.06999999967513,-0.05538553049313255 +79415,397.07499999967513,-0.05538548095632402 +79416,397.0799999996751,-0.055385431421856854 +79417,397.0849999996751,-0.05538538188972987 +79418,397.0899999996751,-0.055385332359941926 +79419,397.0949999996751,-0.055385282832491854 +79420,397.0999999996751,-0.05538523330737848 +79421,397.1049999996751,-0.05538518378460066 +79422,397.1099999996751,-0.055385134264157206 +79423,397.1149999996751,-0.055385084746046975 +79424,397.1199999996751,-0.05538503523026878 +79425,397.1249999996751,-0.05538498571682149 +79426,397.1299999996751,-0.055384936205703936 +79427,397.1349999996751,-0.05538488669691495 +79428,397.13999999967507,-0.05538483719045337 +79429,397.14499999967506,-0.055384787686318035 +79430,397.14999999967506,-0.05538473818450778 +79431,397.15499999967506,-0.05538468868502146 +79432,397.15999999967505,-0.0553846391878579 +79433,397.16499999967505,-0.055384589693015955 +79434,397.16999999967504,-0.05538454020049446 +79435,397.17499999967504,-0.05538449071029224 +79436,397.17999999967503,-0.05538444122240816 +79437,397.18499999967503,-0.05538439173684104 +79438,397.189999999675,-0.055384342253589736 +79439,397.194999999675,-0.05538429277265308 +79440,397.199999999675,-0.05538424329402993 +79441,397.204999999675,-0.055384193817719106 +79442,397.209999999675,-0.05538414434371947 +79443,397.214999999675,-0.05538409487202987 +79444,397.219999999675,-0.05538404540264912 +79445,397.224999999675,-0.05538399593557608 +79446,397.229999999675,-0.0553839464708096 +79447,397.234999999675,-0.055383897008348525 +79448,397.239999999675,-0.05538384754819168 +79449,397.244999999675,-0.055383798090337936 +79450,397.24999999967497,-0.055383748634786116 +79451,397.25499999967496,-0.055383699181535066 +79452,397.25999999967496,-0.05538364973058364 +79453,397.26499999967496,-0.055383600281930685 +79454,397.26999999967495,-0.055383550835575036 +79455,397.27499999967495,-0.05538350139151555 +79456,397.27999999967494,-0.05538345194975108 +79457,397.28499999967494,-0.05538340251028045 +79458,397.28999999967493,-0.05538335307310251 +79459,397.2949999996749,-0.055383303638216135 +79460,397.2999999996749,-0.055383254205620146 +79461,397.3049999996749,-0.0553832047753134 +79462,397.3099999996749,-0.055383155347294745 +79463,397.3149999996749,-0.05538310592156303 +79464,397.3199999996749,-0.0553830564981171 +79465,397.3249999996749,-0.05538300707695581 +79466,397.3299999996749,-0.055382957658077984 +79467,397.3349999996749,-0.055382908241482495 +79468,397.3399999996749,-0.055382858827168195 +79469,397.3449999996749,-0.05538280941513392 +79470,397.3499999996749,-0.05538276000537854 +79471,397.3549999996749,-0.0553827105979009 +79472,397.35999999967487,-0.05538266119269983 +79473,397.36499999967486,-0.0553826117897742 +79474,397.36999999967486,-0.055382562389122855 +79475,397.37499999967486,-0.05538251299074465 +79476,397.37999999967485,-0.05538246359463842 +79477,397.38499999967485,-0.05538241420080304 +79478,397.38999999967484,-0.05538236480923736 +79479,397.39499999967484,-0.055382315419940216 +79480,397.39999999967483,-0.055382266032910465 +79481,397.4049999996748,-0.05538221664814698 +79482,397.4099999996748,-0.05538216726564859 +79483,397.4149999996748,-0.05538211788541416 +79484,397.4199999996748,-0.05538206850744254 +79485,397.4249999996748,-0.055382019131732595 +79486,397.4299999996748,-0.05538196975828316 +79487,397.4349999996748,-0.0553819203870931 +79488,397.4399999996748,-0.05538187101816128 +79489,397.4449999996748,-0.055381821651486536 +79490,397.4499999996748,-0.05538177228706773 +79491,397.4549999996748,-0.05538172292490373 +79492,397.4599999996748,-0.05538167356499338 +79493,397.4649999996748,-0.055381624207335535 +79494,397.46999999967477,-0.05538157485192906 +79495,397.47499999967476,-0.0553815254987728 +79496,397.47999999967476,-0.05538147614786563 +79497,397.48499999967476,-0.05538142679920638 +79498,397.48999999967475,-0.05538137745279393 +79499,397.49499999967475,-0.05538132810862713 +79500,397.49999999967474,-0.05538127876670484 +79501,397.50499999967474,-0.05538122942702592 +79502,397.50999999967473,-0.055381180089589206 +79503,397.5149999996747,-0.0553811307543936 +79504,397.5199999996747,-0.055381081421437925 +79505,397.5249999996747,-0.05538103209072105 +79506,397.5299999996747,-0.05538098276224184 +79507,397.5349999996747,-0.055380933435999154 +79508,397.5399999996747,-0.055380884111991845 +79509,397.5449999996747,-0.05538083479021878 +79510,397.5499999996747,-0.05538078547067883 +79511,397.5549999996747,-0.05538073615337084 +79512,397.5599999996747,-0.05538068683829367 +79513,397.5649999996747,-0.05538063752544619 +79514,397.5699999996747,-0.055380588214827255 +79515,397.5749999996747,-0.05538053890643573 +79516,397.57999999967467,-0.0553804896002705 +79517,397.58499999967466,-0.05538044029633038 +79518,397.58999999967466,-0.05538039099461426 +79519,397.59499999967466,-0.055380341695121 +79520,397.59999999967465,-0.05538029239784949 +79521,397.60499999967465,-0.05538024310279854 +79522,397.60999999967464,-0.05538019380996707 +79523,397.61499999967464,-0.055380144519353906 +79524,397.61999999967463,-0.055380095230957924 +79525,397.6249999996746,-0.055380045944777974 +79526,397.6299999996746,-0.055379996660812954 +79527,397.6349999996746,-0.05537994737906169 +79528,397.6399999996746,-0.055379898099523074 +79529,397.6449999996746,-0.055379848822195966 +79530,397.6499999996746,-0.05537979954707923 +79531,397.6549999996746,-0.055379750274171725 +79532,397.6599999996746,-0.05537970100347234 +79533,397.6649999996746,-0.05537965173497992 +79534,397.6699999996746,-0.055379602468693334 +79535,397.6749999996746,-0.05537955320461146 +79536,397.6799999996746,-0.05537950394273315 +79537,397.6849999996746,-0.05537945468305729 +79538,397.68999999967457,-0.055379405425582735 +79539,397.69499999967456,-0.055379356170308355 +79540,397.69999999967456,-0.05537930691723302 +79541,397.70499999967456,-0.05537925766635562 +79542,397.70999999967455,-0.05537920841767499 +79543,397.71499999967455,-0.05537915917119001 +79544,397.71999999967454,-0.05537910992689956 +79545,397.72499999967454,-0.0553790606848025 +79546,397.72999999967453,-0.0553790114448977 +79547,397.7349999996745,-0.05537896220718403 +79548,397.7399999996745,-0.05537891297166037 +79549,397.7449999996745,-0.05537886373832558 +79550,397.7499999996745,-0.055378814507178534 +79551,397.7549999996745,-0.05537876527821811 +79552,397.7599999996745,-0.05537871605144318 +79553,397.7649999996745,-0.05537866682685261 +79554,397.7699999996745,-0.05537861760444527 +79555,397.7749999996745,-0.055378568384220034 +79556,397.7799999996745,-0.055378519166175776 +79557,397.7849999996745,-0.05537846995031137 +79558,397.7899999996745,-0.05537842073662569 +79559,397.7949999996745,-0.055378371525117605 +79560,397.79999999967447,-0.055378322315785995 +79561,397.80499999967446,-0.05537827310862973 +79562,397.80999999967446,-0.05537822390364768 +79563,397.81499999967446,-0.05537817470083873 +79564,397.81999999967445,-0.05537812550020175 +79565,397.82499999967445,-0.05537807630173562 +79566,397.82999999967444,-0.0553780271054392 +79567,397.83499999967444,-0.05537797791131139 +79568,397.83999999967443,-0.05537792871935105 +79569,397.8449999996744,-0.05537787952955705 +79570,397.8499999996744,-0.05537783034192827 +79571,397.8549999996744,-0.0553777811564636 +79572,397.8599999996744,-0.05537773197316192 +79573,397.8649999996744,-0.05537768279202207 +79574,397.8699999996744,-0.05537763361304297 +79575,397.8749999996744,-0.05537758443622349 +79576,397.8799999996744,-0.055377535261562486 +79577,397.8849999996744,-0.05537748608905885 +79578,397.8899999996744,-0.055377436918711456 +79579,397.8949999996744,-0.055377387750519175 +79580,397.8999999996744,-0.05537733858448091 +79581,397.9049999996744,-0.05537728942059552 +79582,397.90999999967437,-0.05537724025886189 +79583,397.91499999967436,-0.055377191099278904 +79584,397.91999999967436,-0.05537714194184544 +79585,397.92499999967436,-0.05537709278656038 +79586,397.92999999967435,-0.0553770436334226 +79587,397.93499999967435,-0.05537699448243099 +79588,397.93999999967434,-0.055376945333584414 +79589,397.94499999967434,-0.05537689618688177 +79590,397.94999999967433,-0.05537684704232193 +79591,397.9549999996743,-0.05537679789990378 +79592,397.9599999996743,-0.0553767487596262 +79593,397.9649999996743,-0.05537669962148807 +79594,397.9699999996743,-0.05537665048548829 +79595,397.9749999996743,-0.05537660135162571 +79596,397.9799999996743,-0.05537655221989924 +79597,397.9849999996743,-0.05537650309030777 +79598,397.9899999996743,-0.05537645396285015 +79599,397.9949999996743,-0.05537640483752529 +79600,397.9999999996743,-0.05537635571433207 +79601,398.0049999996743,-0.055376306593269364 +79602,398.0099999996743,-0.055376257474336076 +79603,398.0149999996743,-0.05537620835753107 +79604,398.01999999967427,-0.05537615924285325 +79605,398.02499999967426,-0.055376110130301484 +79606,398.02999999967426,-0.05537606101987467 +79607,398.03499999967426,-0.055376011911571696 +79608,398.03999999967425,-0.05537596280539144 +79609,398.04499999967425,-0.055375913701332775 +79610,398.04999999967424,-0.05537586459939462 +79611,398.05499999967424,-0.055375815499575834 +79612,398.05999999967423,-0.055375766401875325 +79613,398.0649999996742,-0.05537571730629196 +79614,398.0699999996742,-0.05537566821282465 +79615,398.0749999996742,-0.05537561912147227 +79616,398.0799999996742,-0.055375570032233715 +79617,398.0849999996742,-0.05537552094510785 +79618,398.0899999996742,-0.055375471860093596 +79619,398.0949999996742,-0.05537542277718983 +79620,398.0999999996742,-0.055375373696395426 +79621,398.1049999996742,-0.0553753246177093 +79622,398.1099999996742,-0.05537527554113032 +79623,398.1149999996742,-0.05537522646665739 +79624,398.1199999996742,-0.0553751773942894 +79625,398.1249999996742,-0.055375128324025226 +79626,398.12999999967417,-0.05537507925586378 +79627,398.13499999967416,-0.055375030189803935 +79628,398.13999999967416,-0.0553749811258446 +79629,398.14499999967416,-0.055374932063984646 +79630,398.14999999967415,-0.05537488300422298 +79631,398.15499999967415,-0.0553748339465585 +79632,398.15999999967414,-0.05537478489099007 +79633,398.16499999967414,-0.05537473583751661 +79634,398.16999999967413,-0.05537468678613701 +79635,398.1749999996741,-0.05537463773685015 +79636,398.1799999996741,-0.055374588689654926 +79637,398.1849999996741,-0.05537453964455024 +79638,398.1899999996741,-0.05537449060153499 +79639,398.1949999996741,-0.05537444156060805 +79640,398.1999999996741,-0.05537439252176833 +79641,398.2049999996741,-0.05537434348501472 +79642,398.2099999996741,-0.055374294450346126 +79643,398.2149999996741,-0.05537424541776143 +79644,398.2199999996741,-0.05537419638725953 +79645,398.2249999996741,-0.055374147358839325 +79646,398.2299999996741,-0.05537409833249971 +79647,398.2349999996741,-0.055374049308239595 +79648,398.23999999967407,-0.05537400028605785 +79649,398.24499999967406,-0.05537395126595338 +79650,398.24999999967406,-0.055373902247925086 +79651,398.25499999967406,-0.05537385323197188 +79652,398.25999999967405,-0.05537380421809263 +79653,398.26499999967405,-0.05537375520628626 +79654,398.26999999967404,-0.05537370619655165 +79655,398.27499999967404,-0.055373657188887704 +79656,398.27999999967403,-0.05537360818329333 +79657,398.284999999674,-0.05537355917976741 +79658,398.289999999674,-0.05537351017830886 +79659,398.294999999674,-0.055373461178916575 +79660,398.299999999674,-0.05537341218158944 +79661,398.304999999674,-0.05537336318632639 +79662,398.309999999674,-0.05537331419312629 +79663,398.314999999674,-0.05537326520198805 +79664,398.319999999674,-0.05537321621291058 +79665,398.324999999674,-0.05537316722589276 +79666,398.329999999674,-0.05537311824093351 +79667,398.334999999674,-0.05537306925803172 +79668,398.339999999674,-0.05537302027718632 +79669,398.344999999674,-0.05537297129839617 +79670,398.34999999967397,-0.055372922321660197 +79671,398.35499999967396,-0.055372873346977304 +79672,398.35999999967396,-0.05537282437434638 +79673,398.36499999967396,-0.05537277540376634 +79674,398.36999999967395,-0.05537272643523609 +79675,398.37499999967395,-0.055372677468754516 +79676,398.37999999967394,-0.055372628504320544 +79677,398.38499999967394,-0.055372579541933066 +79678,398.38999999967393,-0.05537253058159098 +79679,398.3949999996739,-0.05537248162329321 +79680,398.3999999996739,-0.05537243266703865 +79681,398.4049999996739,-0.05537238371282619 +79682,398.4099999996739,-0.05537233476065475 +79683,398.4149999996739,-0.05537228581052324 +79684,398.4199999996739,-0.055372236862430556 +79685,398.4249999996739,-0.05537218791637561 +79686,398.4299999996739,-0.05537213897235731 +79687,398.4349999996739,-0.05537209003037455 +79688,398.4399999996739,-0.05537204109042627 +79689,398.4449999996739,-0.05537199215251134 +79690,398.4499999996739,-0.05537194321662868 +79691,398.4549999996739,-0.05537189428277721 +79692,398.45999999967387,-0.05537184535095581 +79693,398.46499999967386,-0.05537179642116341 +79694,398.46999999967386,-0.05537174749339892 +79695,398.47499999967386,-0.05537169856766123 +79696,398.47999999967385,-0.05537164964394926 +79697,398.48499999967385,-0.05537160072226192 +79698,398.48999999967384,-0.05537155180259812 +79699,398.49499999967384,-0.05537150288495677 +79700,398.49999999967383,-0.05537145396933677 +79701,398.5049999996738,-0.055371405055737045 +79702,398.5099999996738,-0.055371356144156496 +79703,398.5149999996738,-0.05537130723459404 +79704,398.5199999996738,-0.05537125832704858 +79705,398.5249999996738,-0.05537120942151904 +79706,398.5299999996738,-0.055371160518004316 +79707,398.5349999996738,-0.05537111161650333 +79708,398.5399999996738,-0.05537106271701498 +79709,398.5449999996738,-0.05537101381953819 +79710,398.5499999996738,-0.05537096492407188 +79711,398.5549999996738,-0.055370916030614954 +79712,398.5599999996738,-0.05537086713916632 +79713,398.5649999996738,-0.055370818249724896 +79714,398.56999999967377,-0.055370769362289594 +79715,398.57499999967376,-0.055370720476859335 +79716,398.57999999967376,-0.055370671593433014 +79717,398.58499999967376,-0.055370622712009564 +79718,398.58999999967375,-0.055370573832587894 +79719,398.59499999967375,-0.055370524955166915 +79720,398.59999999967374,-0.055370476079745545 +79721,398.60499999967374,-0.0553704272063227 +79722,398.60999999967373,-0.055370378334897295 +79723,398.6149999996737,-0.05537032946546824 +79724,398.6199999996737,-0.05537028059803447 +79725,398.6249999996737,-0.055370231732594886 +79726,398.6299999996737,-0.05537018286914841 +79727,398.6349999996737,-0.05537013400769395 +79728,398.6399999996737,-0.055370085148230434 +79729,398.6449999996737,-0.055370036290756756 +79730,398.6499999996737,-0.05536998743527187 +79731,398.6549999996737,-0.055369938581774664 +79732,398.6599999996737,-0.05536988973026406 +79733,398.6649999996737,-0.05536984088073899 +79734,398.6699999996737,-0.05536979203319837 +79735,398.6749999996737,-0.05536974318764111 +79736,398.67999999967367,-0.05536969434406612 +79737,398.68499999967366,-0.05536964550247234 +79738,398.68999999967366,-0.055369596662858685 +79739,398.69499999967366,-0.055369547825224075 +79740,398.69999999967365,-0.05536949898956742 +79741,398.70499999967365,-0.05536945015588765 +79742,398.70999999967364,-0.055369401324183685 +79743,398.71499999967364,-0.05536935249445443 +79744,398.71999999967363,-0.05536930366669883 +79745,398.7249999996736,-0.05536925484091579 +79746,398.7299999996736,-0.05536920601710423 +79747,398.7349999996736,-0.055369157195263086 +79748,398.7399999996736,-0.05536910837539128 +79749,398.7449999996736,-0.05536905955748772 +79750,398.7499999996736,-0.05536901074155134 +79751,398.7549999996736,-0.055368961927581055 +79752,398.7599999996736,-0.0553689131155758 +79753,398.7649999996736,-0.055368864305534476 +79754,398.7699999996736,-0.05536881549745603 +79755,398.7749999996736,-0.055368766691339374 +79756,398.7799999996736,-0.055368717887183436 +79757,398.7849999996736,-0.05536866908498713 +79758,398.78999999967357,-0.0553686202847494 +79759,398.79499999967356,-0.055368571486469155 +79760,398.79999999967356,-0.055368522690145326 +79761,398.80499999967356,-0.05536847389577683 +79762,398.80999999967355,-0.05536842510336261 +79763,398.81499999967355,-0.05536837631290158 +79764,398.81999999967354,-0.055368327524392656 +79765,398.82499999967354,-0.055368278737834786 +79766,398.82999999967353,-0.05536822995322689 +79767,398.8349999996735,-0.05536818117056788 +79768,398.8399999996735,-0.055368132389856696 +79769,398.8449999996735,-0.05536808361109227 +79770,398.8499999996735,-0.05536803483427353 +79771,398.8549999996735,-0.05536798605939939 +79772,398.8599999996735,-0.05536793728646877 +79773,398.8649999996735,-0.05536788851548063 +79774,398.8699999996735,-0.05536783974643389 +79775,398.8749999996735,-0.05536779097932745 +79776,398.8799999996735,-0.05536774221416028 +79777,398.8849999996735,-0.055367693450931274 +79778,398.8899999996735,-0.05536764468963938 +79779,398.8949999996735,-0.05536759593028353 +79780,398.89999999967347,-0.055367547172862644 +79781,398.90499999967346,-0.055367498417375656 +79782,398.90999999967346,-0.055367449663821504 +79783,398.91499999967346,-0.05536740091219912 +79784,398.91999999967345,-0.05536735216250742 +79785,398.92499999967345,-0.055367303414745335 +79786,398.92999999967344,-0.05536725466891181 +79787,398.93499999967344,-0.055367205925005776 +79788,398.93999999967343,-0.055367157183026164 +79789,398.9449999996734,-0.0553671084429719 +79790,398.9499999996734,-0.055367059704841924 +79791,398.9549999996734,-0.05536701096863516 +79792,398.9599999996734,-0.05536696223435054 +79793,398.9649999996734,-0.055366913501987004 +79794,398.9699999996734,-0.05536686477154349 +79795,398.9749999996734,-0.05536681604301893 +79796,398.9799999996734,-0.055366767316412255 +79797,398.9849999996734,-0.05536671859172239 +79798,398.9899999996734,-0.05536666986894828 +79799,398.9949999996734,-0.05536662114808885 +79800,398.9999999996734,-0.055366572429143064 +79801,399.0049999996734,-0.05536652371210982 +79802,399.00999999967337,-0.055366474996988074 +79803,399.01499999967336,-0.05536642628377676 +79804,399.01999999967336,-0.05536637757247482 +79805,399.02499999967335,-0.05536632886308118 +79806,399.02999999967335,-0.055366280155594784 +79807,399.03499999967335,-0.055366231450014555 +79808,399.03999999967334,-0.055366182746339435 +79809,399.04499999967334,-0.05536613404456837 +79810,399.04999999967333,-0.0553660853447003 +79811,399.0549999996733,-0.055366036646734146 +79812,399.0599999996733,-0.055365987950668855 +79813,399.0649999996733,-0.05536593925650337 +79814,399.0699999996733,-0.055365890564236624 +79815,399.0749999996733,-0.055365841873867554 +79816,399.0799999996733,-0.055365793185395105 +79817,399.0849999996733,-0.05536574449881822 +79818,399.0899999996733,-0.055365695814135835 +79819,399.0949999996733,-0.055365647131346875 +79820,399.0999999996733,-0.05536559845045031 +79821,399.1049999996733,-0.05536554977144505 +79822,399.1099999996733,-0.05536550109433004 +79823,399.1149999996733,-0.05536545241910425 +79824,399.11999999967327,-0.05536540374576659 +79825,399.12499999967326,-0.05536535507431602 +79826,399.12999999967326,-0.055365306404751465 +79827,399.13499999967325,-0.05536525773707187 +79828,399.13999999967325,-0.0553652090712762 +79829,399.14499999967325,-0.05536516040736336 +79830,399.14999999967324,-0.05536511174533233 +79831,399.15499999967324,-0.055365063085182034 +79832,399.15999999967323,-0.0553650144269114 +79833,399.1649999996732,-0.05536496577051939 +79834,399.1699999996732,-0.05536491711600495 +79835,399.1749999996732,-0.055364868463367016 +79836,399.1799999996732,-0.05536481981260454 +79837,399.1849999996732,-0.05536477116371646 +79838,399.1899999996732,-0.05536472251670172 +79839,399.1949999996732,-0.055364673871559265 +79840,399.1999999996732,-0.05536462522828805 +79841,399.2049999996732,-0.05536457658688701 +79842,399.2099999996732,-0.05536452794735509 +79843,399.2149999996732,-0.05536447930969123 +79844,399.2199999996732,-0.05536443067389439 +79845,399.2249999996732,-0.055364382039963515 +79846,399.22999999967317,-0.05536433340789755 +79847,399.23499999967316,-0.055364284777695436 +79848,399.23999999967316,-0.055364236149356115 +79849,399.24499999967315,-0.055364187522878555 +79850,399.24999999967315,-0.05536413889826169 +79851,399.25499999967315,-0.05536409027550445 +79852,399.25999999967314,-0.05536404165460582 +79853,399.26499999967314,-0.05536399303556472 +79854,399.26999999967313,-0.055363944418380114 +79855,399.2749999996731,-0.05536389580305094 +79856,399.2799999996731,-0.05536384718957615 +79857,399.2849999996731,-0.0553637985779547 +79858,399.2899999996731,-0.05536374996818553 +79859,399.2949999996731,-0.0553637013602676 +79860,399.2999999996731,-0.05536365275419985 +79861,399.3049999996731,-0.055363604149981246 +79862,399.3099999996731,-0.055363555547610716 +79863,399.3149999996731,-0.055363506947087235 +79864,399.3199999996731,-0.05536345834840972 +79865,399.3249999996731,-0.05536340975157715 +79866,399.3299999996731,-0.055363361156588485 +79867,399.3349999996731,-0.05536331256344265 +79868,399.33999999967307,-0.055363263972138615 +79869,399.34499999967306,-0.05536321538267532 +79870,399.34999999967306,-0.055363166795051724 +79871,399.35499999967305,-0.05536311820926679 +79872,399.35999999967305,-0.05536306962531944 +79873,399.36499999967305,-0.055363021043208664 +79874,399.36999999967304,-0.05536297246293339 +79875,399.37499999967304,-0.05536292388449258 +79876,399.37999999967303,-0.055362875307885175 +79877,399.384999999673,-0.05536282673311015 +79878,399.389999999673,-0.05536277816016646 +79879,399.394999999673,-0.05536272958905305 +79880,399.399999999673,-0.05536268101976887 +79881,399.404999999673,-0.0553626324523129 +79882,399.409999999673,-0.055362583886684066 +79883,399.414999999673,-0.05536253532288133 +79884,399.419999999673,-0.05536248676090365 +79885,399.424999999673,-0.05536243820074999 +79886,399.429999999673,-0.0553623896424193 +79887,399.434999999673,-0.055362341085910545 +79888,399.439999999673,-0.055362292531222664 +79889,399.444999999673,-0.055362243978354625 +79890,399.44999999967297,-0.055362195427305395 +79891,399.45499999967296,-0.05536214687807391 +79892,399.45999999967296,-0.05536209833065915 +79893,399.46499999967295,-0.05536204978506007 +79894,399.46999999967295,-0.055362001241275605 +79895,399.47499999967295,-0.05536195269930474 +79896,399.47999999967294,-0.05536190415914642 +79897,399.48499999967294,-0.0553618556207996 +79898,399.48999999967293,-0.05536180708426326 +79899,399.4949999996729,-0.05536175854953635 +79900,399.4999999996729,-0.05536171001661782 +79901,399.5049999996729,-0.055361661485506634 +79902,399.5099999996729,-0.055361612956201754 +79903,399.5149999996729,-0.05536156442870214 +79904,399.5199999996729,-0.05536151590300676 +79905,399.5249999996729,-0.05536146737911457 +79906,399.5299999996729,-0.05536141885702453 +79907,399.5349999996729,-0.055361370336735605 +79908,399.5399999996729,-0.05536132181824675 +79909,399.5449999996729,-0.055361273301556935 +79910,399.5499999996729,-0.05536122478666512 +79911,399.5549999996729,-0.05536117627357027 +79912,399.55999999967287,-0.05536112776227134 +79913,399.56499999967286,-0.05536107925276729 +79914,399.56999999967286,-0.05536103074505709 +79915,399.57499999967285,-0.05536098223913972 +79916,399.57999999967285,-0.05536093373501411 +79917,399.58499999967285,-0.05536088523267925 +79918,399.58999999967284,-0.05536083673213409 +79919,399.59499999967284,-0.0553607882333776 +79920,399.59999999967283,-0.055360739736408746 +79921,399.6049999996728,-0.055360691241226494 +79922,399.6099999996728,-0.0553606427478298 +79923,399.6149999996728,-0.055360594256217636 +79924,399.6199999996728,-0.055360545766388984 +79925,399.6249999996728,-0.05536049727834278 +79926,399.6299999996728,-0.05536044879207801 +79927,399.6349999996728,-0.055360400307593635 +79928,399.6399999996728,-0.055360351824888625 +79929,399.6449999996728,-0.05536030334396195 +79930,399.6499999996728,-0.05536025486481256 +79931,399.6549999996728,-0.05536020638743944 +79932,399.6599999996728,-0.05536015791184154 +79933,399.6649999996728,-0.05536010943801784 +79934,399.66999999967277,-0.05536006096596732 +79935,399.67499999967276,-0.05536001249568892 +79936,399.67999999967276,-0.055359964027181637 +79937,399.68499999967275,-0.05535991556044442 +79938,399.68999999967275,-0.055359867095476245 +79939,399.69499999967275,-0.05535981863227609 +79940,399.69999999967274,-0.055359770170842905 +79941,399.70499999967274,-0.05535972171117568 +79942,399.70999999967273,-0.05535967325327337 +79943,399.7149999996727,-0.05535962479713496 +79944,399.7199999996727,-0.0553595763427594 +79945,399.7249999996727,-0.05535952789014567 +79946,399.7299999996727,-0.05535947943929276 +79947,399.7349999996727,-0.05535943099019961 +79948,399.7399999996727,-0.055359382542865224 +79949,399.7449999996727,-0.05535933409728854 +79950,399.7499999996727,-0.05535928565346855 +79951,399.7549999996727,-0.05535923721140422 +79952,399.7599999996727,-0.055359188771094525 +79953,399.7649999996727,-0.05535914033253845 +79954,399.7699999996727,-0.05535909189573495 +79955,399.7749999996727,-0.055359043460682995 +79956,399.77999999967267,-0.055358995027381584 +79957,399.78499999967266,-0.05535894659582966 +79958,399.78999999967266,-0.055358898166026224 +79959,399.79499999967265,-0.055358849737970235 +79960,399.79999999967265,-0.05535880131166067 +79961,399.80499999967265,-0.055358752887096505 +79962,399.80999999967264,-0.0553587044642767 +79963,399.81499999967264,-0.055358656043200255 +79964,399.81999999967263,-0.055358607623866136 +79965,399.8249999996726,-0.05535855920627331 +79966,399.8299999996726,-0.05535851079042077 +79967,399.8349999996726,-0.055358462376307475 +79968,399.8399999996726,-0.05535841396393241 +79969,399.8449999996726,-0.05535836555329455 +79970,399.8499999996726,-0.05535831714439287 +79971,399.8549999996726,-0.05535826873722635 +79972,399.8599999996726,-0.055358220331793974 +79973,399.8649999996726,-0.05535817192809471 +79974,399.8699999996726,-0.055358123526127546 +79975,399.8749999996726,-0.05535807512589145 +79976,399.8799999996726,-0.05535802672738539 +79977,399.8849999996726,-0.055357978330608376 +79978,399.88999999967257,-0.05535792993555936 +79979,399.89499999967256,-0.05535788154223732 +79980,399.89999999967256,-0.05535783315064126 +79981,399.90499999967255,-0.055357784760770135 +79982,399.90999999967255,-0.05535773637262292 +79983,399.91499999967255,-0.055357687986198625 +79984,399.91999999967254,-0.05535763960149622 +79985,399.92499999967254,-0.05535759121851467 +79986,399.92999999967253,-0.055357542837252964 +79987,399.9349999996725,-0.05535749445771009 +79988,399.9399999996725,-0.05535744607988503 +79989,399.9449999996725,-0.05535739770377674 +79990,399.9499999996725,-0.055357349329384235 +79991,399.9549999996725,-0.05535730095670648 +79992,399.9599999996725,-0.05535725258574247 +79993,399.9649999996725,-0.05535720421649117 +79994,399.9699999996725,-0.05535715584895157 +79995,399.9749999996725,-0.05535710748312265 +79996,399.9799999996725,-0.0553570591190034 +79997,399.9849999996725,-0.0553570107565928 +79998,399.9899999996725,-0.05535696239588984 +79999,399.9949999996725,-0.05535691403689349 +80000,399.99999999967247,-0.05535686567960273 +80001,400.00499999967246,-0.05535681732401657 +80002,400.00999999967246,-0.05535676897013399 +80003,400.01499999967245,-0.05535672061795396 +80004,400.01999999967245,-0.05535667226747546 +80005,400.02499999967245,-0.055356623918697494 +80006,400.02999999967244,-0.055356575571619035 +80007,400.03499999967244,-0.055356527226239065 +80008,400.03999999967243,-0.05535647888255659 +80009,400.0449999996724,-0.055356430540570586 +80010,400.0499999996724,-0.05535638220028004 +80011,400.0549999996724,-0.05535633386168394 +80012,400.0599999996724,-0.05535628552478126 +80013,400.0649999996724,-0.05535623718957099 +80014,400.0699999996724,-0.05535618885605213 +80015,400.0749999996724,-0.05535614052422366 +80016,400.0799999996724,-0.055356092194084584 +80017,400.0849999996724,-0.055356043865633864 +80018,400.0899999996724,-0.0553559955388705 +80019,400.0949999996724,-0.0553559472137935 +80020,400.0999999996724,-0.05535589889040182 +80021,400.1049999996724,-0.055355850568694465 +80022,400.10999999967237,-0.05535580224867043 +80023,400.11499999967236,-0.05535575393032869 +80024,400.11999999967236,-0.05535570561366825 +80025,400.12499999967235,-0.05535565729868809 +80026,400.12999999967235,-0.05535560898538721 +80027,400.13499999967235,-0.055355560673764584 +80028,400.13999999967234,-0.05535551236381921 +80029,400.14499999967234,-0.055355464055550085 +80030,400.14999999967233,-0.05535541574895621 +80031,400.1549999996723,-0.055355367444036546 +80032,400.1599999996723,-0.055355319140790116 +80033,400.1649999996723,-0.05535527083921589 +80034,400.1699999996723,-0.055355222539312875 +80035,400.1749999996723,-0.05535517424108005 +80036,400.1799999996723,-0.055355125944516415 +80037,400.1849999996723,-0.05535507764962097 +80038,400.1899999996723,-0.05535502935639269 +80039,400.1949999996723,-0.0553549810648306 +80040,400.1999999996723,-0.05535493277493366 +80041,400.2049999996723,-0.05535488448670088 +80042,400.2099999996723,-0.05535483620013126 +80043,400.2149999996723,-0.05535478791522378 +80044,400.21999999967227,-0.055354739631977436 +80045,400.22499999967226,-0.055354691350391234 +80046,400.22999999967226,-0.055354643070464164 +80047,400.23499999967225,-0.05535459479219522 +80048,400.23999999967225,-0.05535454651558339 +80049,400.24499999967225,-0.05535449824062769 +80050,400.24999999967224,-0.0553544499673271 +80051,400.25499999967224,-0.05535440169568062 +80052,400.25999999967223,-0.05535435342568725 +80053,400.2649999996722,-0.055354305157345976 +80054,400.2699999996722,-0.055354256890655804 +80055,400.2749999996722,-0.05535420862561573 +80056,400.2799999996722,-0.05535416036222475 +80057,400.2849999996722,-0.05535411210048187 +80058,400.2899999996722,-0.055354063840386075 +80059,400.2949999996722,-0.05535401558193638 +80060,400.2999999996722,-0.055353967325131766 +80061,400.3049999996722,-0.05535391906997124 +80062,400.3099999996722,-0.05535387081645381 +80063,400.3149999996722,-0.05535382256457845 +80064,400.3199999996722,-0.05535377431434418 +80065,400.3249999996722,-0.055353726065749995 +80066,400.32999999967217,-0.0553536778187949 +80067,400.33499999967216,-0.05535362957347788 +80068,400.33999999967216,-0.05535358132979795 +80069,400.34499999967215,-0.055353533087754106 +80070,400.34999999967215,-0.05535348484734534 +80071,400.35499999967215,-0.05535343660857068 +80072,400.35999999967214,-0.05535338837142909 +80073,400.36499999967214,-0.055353340135919596 +80074,400.36999999967213,-0.05535329190204119 +80075,400.3749999996721,-0.05535324366979289 +80076,400.3799999996721,-0.05535319543917368 +80077,400.3849999996721,-0.05535314721018256 +80078,400.3899999996721,-0.05535309898281855 +80079,400.3949999996721,-0.05535305075708064 +80080,400.3999999996721,-0.055353002532967835 +80081,400.4049999996721,-0.05535295431047915 +80082,400.4099999996721,-0.05535290608961359 +80083,400.4149999996721,-0.05535285787037013 +80084,400.4199999996721,-0.055352809652747796 +80085,400.4249999996721,-0.0553527614367456 +80086,400.4299999996721,-0.05535271322236253 +80087,400.4349999996721,-0.05535266500959759 +80088,400.43999999967207,-0.0553526167984498 +80089,400.44499999967206,-0.05535256858891816 +80090,400.44999999967206,-0.05535252038100167 +80091,400.45499999967205,-0.055352472174699345 +80092,400.45999999967205,-0.05535242397001018 +80093,400.46499999967205,-0.05535237576693318 +80094,400.46999999967204,-0.05535232756546737 +80095,400.47499999967204,-0.05535227936561174 +80096,400.47999999967203,-0.055352231167365304 +80097,400.484999999672,-0.05535218297072706 +80098,400.489999999672,-0.05535213477569603 +80099,400.494999999672,-0.05535208658227121 +80100,400.499999999672,-0.055352038390451615 +80101,400.504999999672,-0.05535199020023625 +80102,400.509999999672,-0.05535194201162412 +80103,400.514999999672,-0.05535189382461424 +80104,400.519999999672,-0.05535184563920562 +80105,400.524999999672,-0.05535179745539726 +80106,400.529999999672,-0.05535174927318818 +80107,400.534999999672,-0.055351701092577386 +80108,400.539999999672,-0.055351652913563885 +80109,400.544999999672,-0.055351604736146684 +80110,400.54999999967197,-0.05535155656032481 +80111,400.55499999967196,-0.05535150838609725 +80112,400.55999999967196,-0.05535146021346303 +80113,400.56499999967195,-0.05535141204242116 +80114,400.56999999967195,-0.055351363872970655 +80115,400.57499999967195,-0.05535131570511051 +80116,400.57999999967194,-0.05535126753883975 +80117,400.58499999967194,-0.05535121937415738 +80118,400.58999999967193,-0.05535117121106242 +80119,400.5949999996719,-0.05535112304955388 +80120,400.5999999996719,-0.055351074889630765 +80121,400.6049999996719,-0.055351026731292094 +80122,400.6099999996719,-0.055350978574536885 +80123,400.6149999996719,-0.05535093041936415 +80124,400.6199999996719,-0.055350882265772894 +80125,400.6249999996719,-0.05535083411376213 +80126,400.6299999996719,-0.055350785963330894 +80127,400.6349999996719,-0.05535073781447818 +80128,400.6399999996719,-0.055350689667203 +80129,400.6449999996719,-0.05535064152150439 +80130,400.6499999996719,-0.05535059337738133 +80131,400.6549999996719,-0.05535054523483286 +80132,400.65999999967187,-0.05535049709385801 +80133,400.66499999967186,-0.055350448954455775 +80134,400.66999999967186,-0.05535040081662517 +80135,400.67499999967185,-0.05535035268036521 +80136,400.67999999967185,-0.05535030454567492 +80137,400.68499999967185,-0.05535025641255331 +80138,400.68999999967184,-0.055350208280999395 +80139,400.69499999967184,-0.055350160151012205 +80140,400.69999999967183,-0.055350112022590735 +80141,400.7049999996718,-0.05535006389573403 +80142,400.7099999996718,-0.05535001577044109 +80143,400.7149999996718,-0.055349967646710935 +80144,400.7199999996718,-0.05534991952454259 +80145,400.7249999996718,-0.05534987140393507 +80146,400.7299999996718,-0.05534982328488739 +80147,400.7349999996718,-0.05534977516739858 +80148,400.7399999996718,-0.05534972705146764 +80149,400.7449999996718,-0.05534967893709362 +80150,400.7499999996718,-0.055349630824275506 +80151,400.7549999996718,-0.05534958271301234 +80152,400.7599999996718,-0.05534953460330313 +80153,400.7649999996718,-0.055349486495146906 +80154,400.76999999967177,-0.05534943838854268 +80155,400.77499999967176,-0.05534939028348947 +80156,400.77999999967176,-0.055349342179986306 +80157,400.78499999967175,-0.05534929407803222 +80158,400.78999999967175,-0.055349245977626214 +80159,400.79499999967175,-0.05534919787876731 +80160,400.79999999967174,-0.05534914978145455 +80161,400.80499999967174,-0.055349101685686936 +80162,400.80999999967173,-0.055349053591463505 +80163,400.8149999996717,-0.05534900549878326 +80164,400.8199999996717,-0.05534895740764525 +80165,400.8249999996717,-0.05534890931804847 +80166,400.8299999996717,-0.05534886122999197 +80167,400.8349999996717,-0.05534881314347476 +80168,400.8399999996717,-0.055348765058495855 +80169,400.8449999996717,-0.0553487169750543 +80170,400.8499999996717,-0.055348668893149114 +80171,400.8549999996717,-0.0553486208127793 +80172,400.8599999996717,-0.05534857273394391 +80173,400.8649999996717,-0.05534852465664196 +80174,400.8699999996717,-0.055348476580872476 +80175,400.8749999996717,-0.055348428506634476 +80176,400.87999999967167,-0.055348380433926994 +80177,400.88499999967166,-0.055348332362749046 +80178,400.88999999967166,-0.05534828429309968 +80179,400.89499999967165,-0.0553482362249779 +80180,400.89999999967165,-0.055348188158382744 +80181,400.90499999967165,-0.055348140093313236 +80182,400.90999999967164,-0.0553480920297684 +80183,400.91499999967164,-0.05534804396774726 +80184,400.91999999967163,-0.055347995907248856 +80185,400.9249999996716,-0.05534794784827221 +80186,400.9299999996716,-0.055347899790816356 +80187,400.9349999996716,-0.055347851734880306 +80188,400.9399999996716,-0.055347803680463104 +80189,400.9449999996716,-0.05534775562756377 +80190,400.9499999996716,-0.05534770757618135 +80191,400.9549999996716,-0.05534765952631486 +80192,400.9599999996716,-0.05534761147796331 +80193,400.9649999996716,-0.05534756343112576 +80194,400.9699999996716,-0.05534751538580123 +80195,400.9749999996716,-0.05534746734198875 +80196,400.9799999996716,-0.055347419299687346 +80197,400.9849999996716,-0.055347371258896064 +80198,400.98999999967157,-0.055347323219613914 +80199,400.99499999967156,-0.05534727518183993 +80200,400.99999999967156,-0.05534722714557316 +80201,401.00499999967155,-0.05534717911081262 +80202,401.00999999967155,-0.05534713107755735 +80203,401.01499999967155,-0.055347083045806385 +80204,401.01999999967154,-0.055347035015558745 +80205,401.02499999967154,-0.05534698698681348 +80206,401.02999999967153,-0.0553469389595696 +80207,401.0349999996715,-0.055346890933826144 +80208,401.0399999996715,-0.05534684290958217 +80209,401.0449999996715,-0.05534679488683668 +80210,401.0499999996715,-0.055346746865588714 +80211,401.0549999996715,-0.055346698845837324 +80212,401.0599999996715,-0.05534665082758153 +80213,401.0649999996715,-0.05534660281082037 +80214,401.0699999996715,-0.05534655479555288 +80215,401.0749999996715,-0.05534650678177809 +80216,401.0799999996715,-0.05534645876949503 +80217,401.0849999996715,-0.055346410758702745 +80218,401.0899999996715,-0.055346362749400274 +80219,401.0949999996715,-0.05534631474158664 +80220,401.09999999967147,-0.055346266735260885 +80221,401.10499999967146,-0.05534621873042205 +80222,401.10999999967146,-0.05534617072706917 +80223,401.11499999967145,-0.05534612272520127 +80224,401.11999999967145,-0.0553460747248174 +80225,401.12499999967145,-0.05534602672591659 +80226,401.12999999967144,-0.055345978728497884 +80227,401.13499999967144,-0.05534593073256032 +80228,401.13999999967143,-0.05534588273810293 +80229,401.1449999996714,-0.05534583474512475 +80230,401.1499999996714,-0.05534578675362482 +80231,401.1549999996714,-0.05534573876360219 +80232,401.1599999996714,-0.05534569077505587 +80233,401.1649999996714,-0.05534564278798493 +80234,401.1699999996714,-0.05534559480238839 +80235,401.1749999996714,-0.055345546818265305 +80236,401.1799999996714,-0.05534549883561471 +80237,401.1849999996714,-0.055345450854435624 +80238,401.1899999996714,-0.05534540287472711 +80239,401.1949999996714,-0.055345354896488216 +80240,401.1999999996714,-0.05534530691971797 +80241,401.2049999996714,-0.05534525894441541 +80242,401.20999999967137,-0.055345210970579574 +80243,401.21499999967136,-0.055345162998209504 +80244,401.21999999967136,-0.05534511502730426 +80245,401.22499999967135,-0.055345067057862865 +80246,401.22999999967135,-0.05534501908988436 +80247,401.23499999967134,-0.0553449711233678 +80248,401.23999999967134,-0.055344923158312215 +80249,401.24499999967134,-0.055344875194716654 +80250,401.24999999967133,-0.05534482723258016 +80251,401.2549999996713,-0.055344779271901776 +80252,401.2599999996713,-0.055344731312680535 +80253,401.2649999996713,-0.055344683354915505 +80254,401.2699999996713,-0.05534463539860571 +80255,401.2749999996713,-0.05534458744375019 +80256,401.2799999996713,-0.055344539490347996 +80257,401.2849999996713,-0.05534449153839819 +80258,401.2899999996713,-0.05534444358789979 +80259,401.2949999996713,-0.055344395638851865 +80260,401.2999999996713,-0.05534434769125343 +80261,401.3049999996713,-0.055344299745103555 +80262,401.3099999996713,-0.055344251800401284 +80263,401.3149999996713,-0.05534420385714566 +80264,401.31999999967127,-0.05534415591533572 +80265,401.32499999967126,-0.05534410797497051 +80266,401.32999999967126,-0.0553440600360491 +80267,401.33499999967125,-0.05534401209857052 +80268,401.33999999967125,-0.05534396416253381 +80269,401.34499999967124,-0.05534391622793802 +80270,401.34999999967124,-0.05534386829478221 +80271,401.35499999967124,-0.05534382036306542 +80272,401.35999999967123,-0.055343772432786695 +80273,401.3649999996712,-0.055343724503945084 +80274,401.3699999996712,-0.05534367657653964 +80275,401.3749999996712,-0.0553436286505694 +80276,401.3799999996712,-0.055343580726033424 +80277,401.3849999996712,-0.05534353280293075 +80278,401.3899999996712,-0.05534348488126045 +80279,401.3949999996712,-0.05534343696102156 +80280,401.3999999996712,-0.05534338904221312 +80281,401.4049999996712,-0.05534334112483418 +80282,401.4099999996712,-0.05534329320888381 +80283,401.4149999996712,-0.05534324529436104 +80284,401.4199999996712,-0.05534319738126495 +80285,401.4249999996712,-0.05534314946959455 +80286,401.42999999967117,-0.05534310155934893 +80287,401.43499999967116,-0.055343053650527115 +80288,401.43999999967116,-0.055343005743128164 +80289,401.44499999967115,-0.05534295783715112 +80290,401.44999999967115,-0.05534290993259505 +80291,401.45499999967114,-0.055342862029459 +80292,401.45999999967114,-0.05534281412774203 +80293,401.46499999967114,-0.05534276622744319 +80294,401.46999999967113,-0.05534271832856153 +80295,401.4749999996711,-0.0553426704310961 +80296,401.4799999996711,-0.055342622535045946 +80297,401.4849999996711,-0.05534257464041013 +80298,401.4899999996711,-0.05534252674718772 +80299,401.4949999996711,-0.05534247885537775 +80300,401.4999999996711,-0.05534243096497929 +80301,401.5049999996711,-0.05534238307599138 +80302,401.5099999996711,-0.055342335188413076 +80303,401.5149999996711,-0.055342287302243436 +80304,401.5199999996711,-0.05534223941748152 +80305,401.5249999996711,-0.05534219153412639 +80306,401.5299999996711,-0.05534214365217709 +80307,401.5349999996711,-0.055342095771632675 +80308,401.53999999967107,-0.055342047892492204 +80309,401.54499999967106,-0.055342000014754734 +80310,401.54999999967106,-0.05534195213841932 +80311,401.55499999967105,-0.05534190426348502 +80312,401.55999999967105,-0.05534185638995089 +80313,401.56499999967104,-0.05534180851781599 +80314,401.56999999967104,-0.05534176064707937 +80315,401.57499999967104,-0.0553417127777401 +80316,401.57999999967103,-0.05534166490979723 +80317,401.584999999671,-0.055341617043249816 +80318,401.589999999671,-0.05534156917809692 +80319,401.594999999671,-0.0553415213143376 +80320,401.599999999671,-0.055341473451970914 +80321,401.604999999671,-0.055341425590995925 +80322,401.609999999671,-0.055341377731411685 +80323,401.614999999671,-0.055341329873217264 +80324,401.619999999671,-0.05534128201641171 +80325,401.624999999671,-0.05534123416099409 +80326,401.629999999671,-0.05534118630696347 +80327,401.634999999671,-0.05534113845431889 +80328,401.639999999671,-0.055341090603059445 +80329,401.644999999671,-0.055341042753184154 +80330,401.64999999967097,-0.05534099490469211 +80331,401.65499999967096,-0.05534094705758236 +80332,401.65999999967096,-0.055340899211853964 +80333,401.66499999967095,-0.055340851367505994 +80334,401.66999999967095,-0.055340803524537505 +80335,401.67499999967094,-0.05534075568294756 +80336,401.67999999967094,-0.05534070784273523 +80337,401.68499999967094,-0.05534066000389956 +80338,401.68999999967093,-0.05534061216643963 +80339,401.6949999996709,-0.05534056433035448 +80340,401.6999999996709,-0.0553405164956432 +80341,401.7049999996709,-0.05534046866230485 +80342,401.7099999996709,-0.05534042083033847 +80343,401.7149999996709,-0.055340372999743155 +80344,401.7199999996709,-0.05534032517051794 +80345,401.7249999996709,-0.05534027734266192 +80346,401.7299999996709,-0.055340229516174136 +80347,401.7349999996709,-0.05534018169105366 +80348,401.7399999996709,-0.05534013386729956 +80349,401.7449999996709,-0.05534008604491089 +80350,401.7499999996709,-0.05534003822388674 +80351,401.7549999996709,-0.05533999040422616 +80352,401.75999999967087,-0.05533994258592821 +80353,401.76499999967086,-0.05533989476899197 +80354,401.76999999967086,-0.0553398469534165 +80355,401.77499999967085,-0.05533979913920086 +80356,401.77999999967085,-0.05533975132634413 +80357,401.78499999967084,-0.05533970351484537 +80358,401.78999999967084,-0.055339655704703644 +80359,401.79499999967084,-0.05533960789591802 +80360,401.79999999967083,-0.055339560088487574 +80361,401.8049999996708,-0.055339512282411366 +80362,401.8099999996708,-0.05533946447768847 +80363,401.8149999996708,-0.055339416674317944 +80364,401.8199999996708,-0.05533936887229888 +80365,401.8249999996708,-0.055339321071630324 +80366,401.8299999996708,-0.05533927327231136 +80367,401.8349999996708,-0.05533922547434105 +80368,401.8399999996708,-0.055339177677718454 +80369,401.8449999996708,-0.05533912988244266 +80370,401.8499999996708,-0.05533908208851273 +80371,401.8549999996708,-0.055339034295927736 +80372,401.8599999996708,-0.055338986504686744 +80373,401.8649999996708,-0.05533893871478882 +80374,401.86999999967077,-0.05533889092623305 +80375,401.87499999967076,-0.0553388431390185 +80376,401.87999999967076,-0.05533879535314424 +80377,401.88499999967075,-0.055338747568609334 +80378,401.88999999967075,-0.05533869978541287 +80379,401.89499999967074,-0.0553386520035539 +80380,401.89999999967074,-0.05533860422303152 +80381,401.90499999967074,-0.0553385564438448 +80382,401.90999999967073,-0.055338508665992776 +80383,401.9149999996707,-0.05533846088947456 +80384,401.9199999996707,-0.05533841311428921 +80385,401.9249999996707,-0.0553383653404358 +80386,401.9299999996707,-0.05533831756791341 +80387,401.9349999996707,-0.05533826979672111 +80388,401.9399999996707,-0.05533822202685798 +80389,401.9449999996707,-0.05533817425832308 +80390,401.9499999996707,-0.05533812649111549 +80391,401.9549999996707,-0.055338078725234295 +80392,401.9599999996707,-0.05533803096067857 +80393,401.9649999996707,-0.05533798319744737 +80394,401.9699999996707,-0.05533793543553979 +80395,401.9749999996707,-0.0553378876749549 +80396,401.97999999967067,-0.05533783991569177 +80397,401.98499999967066,-0.05533779215774949 +80398,401.98999999967066,-0.055337744401127126 +80399,401.99499999967065,-0.055337696645823754 +80400,401.99999999967065,-0.055337648891838453 +80401,402.00499999967064,-0.05533760113917031 +80402,402.00999999967064,-0.05533755338781837 +80403,402.01499999967064,-0.055337505637781746 +80404,402.01999999967063,-0.055337457889059506 +80405,402.0249999996706,-0.05533741014165072 +80406,402.0299999996706,-0.055337362395554465 +80407,402.0349999996706,-0.055337314650769825 +80408,402.0399999996706,-0.05533726690729589 +80409,402.0449999996706,-0.055337219165131714 +80410,402.0499999996706,-0.05533717142427639 +80411,402.0549999996706,-0.05533712368472901 +80412,402.0599999996706,-0.05533707594648862 +80413,402.0649999996706,-0.055337028209554336 +80414,402.0699999996706,-0.05533698047392521 +80415,402.0749999996706,-0.055336932739600345 +80416,402.0799999996706,-0.05533688500657881 +80417,402.0849999996706,-0.055336837274859677 +80418,402.08999999967057,-0.055336789544442044 +80419,402.09499999967056,-0.05533674181532497 +80420,402.09999999967056,-0.05533669408750757 +80421,402.10499999967055,-0.055336646360988895 +80422,402.10999999967055,-0.05533659863576804 +80423,402.11499999967054,-0.055336550911844085 +80424,402.11999999967054,-0.0553365031892161 +80425,402.12499999967054,-0.05533645546788318 +80426,402.12999999967053,-0.05533640774784442 +80427,402.1349999996705,-0.05533636002909887 +80428,402.1399999996705,-0.055336312311645645 +80429,402.1449999996705,-0.05533626459548381 +80430,402.1499999996705,-0.05533621688061246 +80431,402.1549999996705,-0.055336169167030665 +80432,402.1599999996705,-0.05533612145473751 +80433,402.1649999996705,-0.05533607374373209 +80434,402.1699999996705,-0.05533602603401349 +80435,402.1749999996705,-0.055335978325580785 +80436,402.1799999996705,-0.05533593061843307 +80437,402.1849999996705,-0.05533588291256942 +80438,402.1899999996705,-0.055335835207988925 +80439,402.1949999996705,-0.05533578750469066 +80440,402.19999999967047,-0.05533573980267373 +80441,402.20499999967046,-0.055335692101937214 +80442,402.20999999967046,-0.055335644402480184 +80443,402.21499999967045,-0.055335596704301736 +80444,402.21999999967045,-0.05533554900740097 +80445,402.22499999967044,-0.055335501311776954 +80446,402.22999999967044,-0.05533545361742878 +80447,402.23499999967044,-0.05533540592435554 +80448,402.23999999967043,-0.055335358232556316 +80449,402.2449999996704,-0.055335310542030204 +80450,402.2499999996704,-0.05533526285277628 +80451,402.2549999996704,-0.05533521516479364 +80452,402.2599999996704,-0.05533516747808138 +80453,402.2649999996704,-0.05533511979263857 +80454,402.2699999996704,-0.055335072108464306 +80455,402.2749999996704,-0.055335024425557676 +80456,402.2799999996704,-0.05533497674391778 +80457,402.2849999996704,-0.055334929063543696 +80458,402.2899999996704,-0.05533488138443453 +80459,402.2949999996704,-0.055334833706589336 +80460,402.2999999996704,-0.05533478603000724 +80461,402.3049999996704,-0.055334738354687316 +80462,402.30999999967037,-0.05533469068062867 +80463,402.31499999967036,-0.055334643007830364 +80464,402.31999999967036,-0.055334595336291516 +80465,402.32499999967035,-0.0553345476660112 +80466,402.32999999967035,-0.05533449999698853 +80467,402.33499999967034,-0.05533445232922257 +80468,402.33999999967034,-0.05533440466271243 +80469,402.34499999967034,-0.055334356997457194 +80470,402.34999999967033,-0.05533430933345595 +80471,402.3549999996703,-0.055334261670707804 +80472,402.3599999996703,-0.05533421400921183 +80473,402.3649999996703,-0.055334166348967144 +80474,402.3699999996703,-0.055334118689972824 +80475,402.3749999996703,-0.05533407103222797 +80476,402.3799999996703,-0.055334023375731664 +80477,402.3849999996703,-0.055333975720483014 +80478,402.3899999996703,-0.05533392806648111 +80479,402.3949999996703,-0.05533388041372504 +80480,402.3999999996703,-0.0553338327622139 +80481,402.4049999996703,-0.055333785111946795 +80482,402.4099999996703,-0.05533373746292281 +80483,402.4149999996703,-0.05533368981514104 +80484,402.41999999967027,-0.055333642168600594 +80485,402.42499999967026,-0.05533359452330055 +80486,402.42999999967026,-0.055333546879240005 +80487,402.43499999967025,-0.05533349923641807 +80488,402.43999999967025,-0.05533345159483382 +80489,402.44499999967024,-0.055333403954486375 +80490,402.44999999967024,-0.05533335631537482 +80491,402.45499999967024,-0.055333308677498236 +80492,402.45999999967023,-0.055333261040855744 +80493,402.4649999996702,-0.055333213405446446 +80494,402.4699999996702,-0.05533316577126942 +80495,402.4749999996702,-0.05533311813832377 +80496,402.4799999996702,-0.05533307050660859 +80497,402.4849999996702,-0.05533302287612298 +80498,402.4899999996702,-0.055332975246866055 +80499,402.4949999996702,-0.055332927618836895 +80500,402.4999999996702,-0.055332879992034595 +80501,402.5049999996702,-0.055332832366458265 +80502,402.5099999996702,-0.05533278474210701 +80503,402.5149999996702,-0.05533273711897992 +80504,402.5199999996702,-0.05533268949707609 +80505,402.5249999996702,-0.05533264187639463 +80506,402.52999999967017,-0.05533259425693464 +80507,402.53499999967016,-0.05533254663869522 +80508,402.53999999967016,-0.05533249902167546 +80509,402.54499999967015,-0.055332451405874464 +80510,402.54999999967015,-0.05533240379129134 +80511,402.55499999967014,-0.055332356177925195 +80512,402.55999999967014,-0.055332308565775125 +80513,402.56499999967014,-0.05533226095484022 +80514,402.56999999967013,-0.0553322133451196 +80515,402.5749999996701,-0.05533216573661236 +80516,402.5799999996701,-0.05533211812931759 +80517,402.5849999996701,-0.05533207052323441 +80518,402.5899999996701,-0.055332022918361916 +80519,402.5949999996701,-0.05533197531469921 +80520,402.5999999996701,-0.05533192771224539 +80521,402.6049999996701,-0.055331880110999564 +80522,402.6099999996701,-0.05533183251096084 +80523,402.6149999996701,-0.05533178491212831 +80524,402.6199999996701,-0.0553317373145011 +80525,402.6249999996701,-0.055331689718078295 +80526,402.6299999996701,-0.05533164212285901 +80527,402.6349999996701,-0.05533159452884234 +80528,402.63999999967007,-0.05533154693602741 +80529,402.64499999967006,-0.0553314993444133 +80530,402.64999999967006,-0.05533145175399913 +80531,402.65499999967005,-0.05533140416478401 +80532,402.65999999967005,-0.05533135657676702 +80533,402.66499999967004,-0.055331308989947287 +80534,402.66999999967004,-0.05533126140432393 +80535,402.67499999967004,-0.05533121381989602 +80536,402.67999999967003,-0.0553311662366627 +80537,402.68499999967,-0.055331118654623056 +80538,402.68999999967,-0.0553310710737762 +80539,402.69499999967,-0.055331023494121244 +80540,402.69999999967,-0.05533097591565728 +80541,402.70499999967,-0.055330928338383434 +80542,402.70999999967,-0.05533088076229879 +80543,402.71499999967,-0.05533083318740248 +80544,402.71999999967,-0.05533078561369361 +80545,402.72499999967,-0.05533073804117127 +80546,402.72999999967,-0.0553306904698346 +80547,402.73499999967,-0.055330642899682675 +80548,402.73999999967,-0.05533059533071463 +80549,402.74499999967,-0.05533054776292957 +80550,402.74999999966997,-0.0553305001963266 +80551,402.75499999966996,-0.05533045263090482 +80552,402.75999999966996,-0.05533040506666335 +80553,402.76499999966995,-0.05533035750360131 +80554,402.76999999966995,-0.05533030994171779 +80555,402.77499999966994,-0.05533026238101192 +80556,402.77999999966994,-0.0553302148214828 +80557,402.78499999966994,-0.05533016726312954 +80558,402.78999999966993,-0.05533011970595126 +80559,402.7949999996699,-0.05533007214994707 +80560,402.7999999996699,-0.05533002459511609 +80561,402.8049999996699,-0.05532997704145741 +80562,402.8099999996699,-0.055329929488970156 +80563,402.8149999996699,-0.055329881937653425 +80564,402.8199999996699,-0.055329834387506355 +80565,402.8249999996699,-0.05532978683852805 +80566,402.8299999996699,-0.05532973929071761 +80567,402.8349999996699,-0.05532969174407417 +80568,402.8399999996699,-0.055329644198596824 +80569,402.8449999996699,-0.0553295966542847 +80570,402.8499999996699,-0.0553295491111369 +80571,402.8549999996699,-0.05532950156915254 +80572,402.85999999966987,-0.05532945402833075 +80573,402.86499999966986,-0.05532940648867063 +80574,402.86999999966986,-0.0553293589501713 +80575,402.87499999966985,-0.05532931141283187 +80576,402.87999999966985,-0.05532926387665147 +80577,402.88499999966984,-0.05532921634162919 +80578,402.88999999966984,-0.055329168807764166 +80579,402.89499999966984,-0.055329121275055515 +80580,402.89999999966983,-0.055329073743502336 +80581,402.9049999996698,-0.05532902621310376 +80582,402.9099999996698,-0.05532897868385891 +80583,402.9149999996698,-0.05532893115576688 +80584,402.9199999996698,-0.055328883628826805 +80585,402.9249999996698,-0.055328836103037786 +80586,402.9299999996698,-0.05532878857839896 +80587,402.9349999996698,-0.05532874105490943 +80588,402.9399999996698,-0.05532869353256832 +80589,402.9449999996698,-0.05532864601137476 +80590,402.9499999996698,-0.05532859849132785 +80591,402.9549999996698,-0.05532855097242673 +80592,402.9599999996698,-0.05532850345467048 +80593,402.96499999966977,-0.055328455938058255 +80594,402.96999999966977,-0.05532840842258917 +80595,402.97499999966976,-0.055328360908262327 +80596,402.97999999966976,-0.05532831339507685 +80597,402.98499999966975,-0.055328265883031864 +80598,402.98999999966975,-0.0553282183721265 +80599,402.99499999966974,-0.05532817086235987 +80600,402.99999999966974,-0.055328123353731086 +80601,403.00499999966974,-0.05532807584623927 +80602,403.00999999966973,-0.05532802833988356 +80603,403.0149999996697,-0.05532798083466305 +80604,403.0199999996697,-0.05532793333057688 +80605,403.0249999996697,-0.05532788582762417 +80606,403.0299999996697,-0.05532783832580404 +80607,403.0349999996697,-0.055327790825115616 +80608,403.0399999996697,-0.055327743325558 +80609,403.0449999996697,-0.05532769582713034 +80610,403.0499999996697,-0.055327648329831745 +80611,403.0549999996697,-0.05532760083366135 +80612,403.0599999996697,-0.055327553338618274 +80613,403.0649999996697,-0.055327505844701634 +80614,403.0699999996697,-0.05532745835191055 +80615,403.07499999966967,-0.05532741086024416 +80616,403.07999999966967,-0.05532736336970157 +80617,403.08499999966966,-0.05532731588028192 +80618,403.08999999966966,-0.05532726839198432 +80619,403.09499999966965,-0.055327220904807906 +80620,403.09999999966965,-0.0553271734187518 +80621,403.10499999966964,-0.05532712593381513 +80622,403.10999999966964,-0.05532707844999701 +80623,403.11499999966964,-0.05532703096729657 +80624,403.11999999966963,-0.05532698348571293 +80625,403.1249999996696,-0.05532693600524523 +80626,403.1299999996696,-0.0553268885258926 +80627,403.1349999996696,-0.05532684104765416 +80628,403.1399999996696,-0.05532679357052902 +80629,403.1449999996696,-0.05532674609451632 +80630,403.1499999996696,-0.0553266986196152 +80631,403.1549999996696,-0.05532665114582477 +80632,403.1599999996696,-0.05532660367314417 +80633,403.1649999996696,-0.0553265562015725 +80634,403.1699999996696,-0.05532650873110892 +80635,403.1749999996696,-0.05532646126175253 +80636,403.1799999996696,-0.055326413793502484 +80637,403.18499999966957,-0.0553263663263579 +80638,403.18999999966957,-0.0553263188603179 +80639,403.19499999966956,-0.05532627139538161 +80640,403.19999999966956,-0.05532622393154817 +80641,403.20499999966955,-0.05532617646881671 +80642,403.20999999966955,-0.05532612900718637 +80643,403.21499999966954,-0.055326081546656254 +80644,403.21999999966954,-0.05532603408722551 +80645,403.22499999966954,-0.055325986628893264 +80646,403.22999999966953,-0.055325939171658636 +80647,403.2349999996695,-0.05532589171552077 +80648,403.2399999996695,-0.05532584426047879 +80649,403.2449999996695,-0.05532579680653183 +80650,403.2499999996695,-0.05532574935367902 +80651,403.2549999996695,-0.05532570190191949 +80652,403.2599999996695,-0.055325654451252364 +80653,403.2649999996695,-0.05532560700167679 +80654,403.2699999996695,-0.0553255595531919 +80655,403.2749999996695,-0.0553255121057968 +80656,403.2799999996695,-0.05532546465949065 +80657,403.2849999996695,-0.05532541721427258 +80658,403.2899999996695,-0.05532536977014171 +80659,403.29499999966947,-0.055325322327097186 +80660,403.29999999966947,-0.05532527488513813 +80661,403.30499999966946,-0.05532522744426368 +80662,403.30999999966946,-0.05532518000447297 +80663,403.31499999966945,-0.055325132565765135 +80664,403.31999999966945,-0.05532508512813931 +80665,403.32499999966944,-0.05532503769159463 +80666,403.32999999966944,-0.05532499025613022 +80667,403.33499999966944,-0.05532494282174523 +80668,403.33999999966943,-0.05532489538843878 +80669,403.3449999996694,-0.05532484795621001 +80670,403.3499999996694,-0.05532480052505807 +80671,403.3549999996694,-0.055324753094982075 +80672,403.3599999996694,-0.055324705665981175 +80673,403.3649999996694,-0.0553246582380545 +80674,403.3699999996694,-0.055324610811201186 +80675,403.3749999996694,-0.05532456338542036 +80676,403.3799999996694,-0.05532451596071118 +80677,403.3849999996694,-0.05532446853707278 +80678,403.3899999996694,-0.05532442111450428 +80679,403.3949999996694,-0.055324373693004816 +80680,403.3999999996694,-0.05532432627257355 +80681,403.40499999966937,-0.05532427885320959 +80682,403.40999999966937,-0.055324231434912094 +80683,403.41499999966936,-0.055324184017680196 +80684,403.41999999966936,-0.05532413660151304 +80685,403.42499999966935,-0.05532408918640975 +80686,403.42999999966935,-0.05532404177236947 +80687,403.43499999966934,-0.05532399435939135 +80688,403.43999999966934,-0.055323946947474514 +80689,403.44499999966934,-0.055323899536618114 +80690,403.44999999966933,-0.05532385212682128 +80691,403.4549999996693,-0.05532380471808315 +80692,403.4599999996693,-0.055323757310402885 +80693,403.4649999996693,-0.055323709903779605 +80694,403.4699999996693,-0.05532366249821246 +80695,403.4749999996693,-0.05532361509370058 +80696,403.4799999996693,-0.05532356769024311 +80697,403.4849999996693,-0.055323520287839205 +80698,403.4899999996693,-0.05532347288648798 +80699,403.4949999996693,-0.0553234254861886 +80700,403.4999999996693,-0.0553233780869402 +80701,403.5049999996693,-0.05532333068874191 +80702,403.5099999996693,-0.05532328329159289 +80703,403.51499999966927,-0.05532323589549226 +80704,403.51999999966927,-0.055323188500439185 +80705,403.52499999966926,-0.0553231411064328 +80706,403.52999999966926,-0.05532309371347225 +80707,403.53499999966925,-0.05532304632155668 +80708,403.53999999966925,-0.055322998930685215 +80709,403.54499999966924,-0.05532295154085702 +80710,403.54999999966924,-0.05532290415207123 +80711,403.55499999966923,-0.055322856764327 +80712,403.55999999966923,-0.05532280937762346 +80713,403.5649999996692,-0.055322761991959755 +80714,403.5699999996692,-0.05532271460733503 +80715,403.5749999996692,-0.05532266722374844 +80716,403.5799999996692,-0.05532261984119913 +80717,403.5849999996692,-0.05532257245968624 +80718,403.5899999996692,-0.055322525079208915 +80719,403.5949999996692,-0.055322477699766295 +80720,403.5999999996692,-0.05532243032135753 +80721,403.6049999996692,-0.055322382943981764 +80722,403.6099999996692,-0.05532233556763815 +80723,403.6149999996692,-0.05532228819232583 +80724,403.6199999996692,-0.055322240818043954 +80725,403.62499999966917,-0.05532219344479167 +80726,403.62999999966917,-0.05532214607256812 +80727,403.63499999966916,-0.05532209870137245 +80728,403.63999999966916,-0.055322051331203825 +80729,403.64499999966915,-0.05532200396206138 +80730,403.64999999966915,-0.05532195659394425 +80731,403.65499999966914,-0.0553219092268516 +80732,403.65999999966914,-0.05532186186078258 +80733,403.66499999966913,-0.055321814495736324 +80734,403.66999999966913,-0.055321767131711996 +80735,403.6749999996691,-0.055321719768708734 +80736,403.6799999996691,-0.05532167240672568 +80737,403.6849999996691,-0.055321625045762005 +80738,403.6899999996691,-0.05532157768581685 +80739,403.6949999996691,-0.055321530326889364 +80740,403.6999999996691,-0.0553214829689787 +80741,403.7049999996691,-0.055321435612084004 +80742,403.7099999996691,-0.05532138825620443 +80743,403.7149999996691,-0.05532134090133911 +80744,403.7199999996691,-0.05532129354748723 +80745,403.7249999996691,-0.05532124619464791 +80746,403.7299999996691,-0.05532119884282032 +80747,403.73499999966907,-0.05532115149200361 +80748,403.73999999966907,-0.05532110414219692 +80749,403.74499999966906,-0.05532105679339941 +80750,403.74999999966906,-0.055321009445610234 +80751,403.75499999966905,-0.05532096209882853 +80752,403.75999999966905,-0.05532091475305347 +80753,403.76499999966904,-0.0553208674082842 +80754,403.76999999966904,-0.05532082006451988 +80755,403.77499999966903,-0.05532077272175964 +80756,403.77999999966903,-0.055320725380002655 +80757,403.784999999669,-0.05532067803924808 +80758,403.789999999669,-0.055320630699495055 +80759,403.794999999669,-0.055320583360742734 +80760,403.799999999669,-0.05532053602299029 +80761,403.804999999669,-0.055320488686236846 +80762,403.809999999669,-0.055320441350481586 +80763,403.814999999669,-0.05532039401572365 +80764,403.819999999669,-0.05532034668196221 +80765,403.824999999669,-0.055320299349196404 +80766,403.829999999669,-0.05532025201742539 +80767,403.834999999669,-0.055320204686648326 +80768,403.839999999669,-0.05532015735686437 +80769,403.84499999966897,-0.055320110028072675 +80770,403.84999999966897,-0.055320062700272406 +80771,403.85499999966896,-0.0553200153734627 +80772,403.85999999966896,-0.05531996804764272 +80773,403.86499999966895,-0.05531992072281163 +80774,403.86999999966895,-0.0553198733989686 +80775,403.87499999966894,-0.055319826076112764 +80776,403.87999999966894,-0.055319778754243286 +80777,403.88499999966893,-0.05531973143335934 +80778,403.88999999966893,-0.055319684113460055 +80779,403.8949999996689,-0.05531963679454461 +80780,403.8999999996689,-0.055319589476612155 +80781,403.9049999996689,-0.05531954215966185 +80782,403.9099999996689,-0.05531949484369287 +80783,403.9149999996689,-0.055319447528704345 +80784,403.9199999996689,-0.05531940021469545 +80785,403.9249999996689,-0.05531935290166534 +80786,403.9299999996689,-0.055319305589613184 +80787,403.9349999996689,-0.05531925827853813 +80788,403.9399999996689,-0.05531921096843935 +80789,403.9449999996689,-0.055319163659316 +80790,403.9499999996689,-0.05531911635116724 +80791,403.95499999966887,-0.05531906904399223 +80792,403.95999999966887,-0.055319021737790124 +80793,403.96499999966886,-0.055318974432560085 +80794,403.96999999966886,-0.05531892712830128 +80795,403.97499999966885,-0.05531887982501287 +80796,403.97999999966885,-0.055318832522694025 +80797,403.98499999966884,-0.05531878522134389 +80798,403.98999999966884,-0.05531873792096164 +80799,403.99499999966883,-0.05531869062154642 +80800,403.99999999966883,-0.05531864332309742 +80801,404.0049999996688,-0.05531859602561377 +80802,404.0099999996688,-0.05531854872909466 +80803,404.0149999996688,-0.05531850143353924 +80804,404.0199999996688,-0.05531845413894668 +80805,404.0249999996688,-0.05531840684531614 +80806,404.0299999996688,-0.05531835955264679 +80807,404.0349999996688,-0.05531831226093777 +80808,404.0399999996688,-0.05531826497018828 +80809,404.0449999996688,-0.055318217680397457 +80810,404.0499999996688,-0.05531817039156448 +80811,404.0549999996688,-0.055318123103688506 +80812,404.0599999996688,-0.055318075816768696 +80813,404.06499999966877,-0.055318028530804225 +80814,404.06999999966877,-0.055317981245794255 +80815,404.07499999966876,-0.05531793396173797 +80816,404.07999999966876,-0.05531788667863449 +80817,404.08499999966875,-0.05531783939648303 +80818,404.08999999966875,-0.05531779211528273 +80819,404.09499999966874,-0.05531774483503275 +80820,404.09999999966874,-0.05531769755573228 +80821,404.10499999966873,-0.05531765027738047 +80822,404.10999999966873,-0.05531760299997649 +80823,404.1149999996687,-0.055317555723519506 +80824,404.1199999996687,-0.055317508448008694 +80825,404.1249999996687,-0.05531746117344322 +80826,404.1299999996687,-0.05531741389982224 +80827,404.1349999996687,-0.05531736662714493 +80828,404.1399999996687,-0.055317319355410476 +80829,404.1449999996687,-0.05531727208461803 +80830,404.1499999996687,-0.055317224814766745 +80831,404.1549999996687,-0.055317177545855814 +80832,404.1599999996687,-0.05531713027788439 +80833,404.1649999996687,-0.05531708301085165 +80834,404.1699999996687,-0.055317035744756764 +80835,404.17499999966867,-0.05531698847959891 +80836,404.17999999966867,-0.05531694121537723 +80837,404.18499999966866,-0.055316893952090926 +80838,404.18999999966866,-0.05531684668973914 +80839,404.19499999966865,-0.055316799428321066 +80840,404.19999999966865,-0.05531675216783586 +80841,404.20499999966864,-0.0553167049082827 +80842,404.20999999966864,-0.05531665764966077 +80843,404.21499999966863,-0.05531661039196922 +80844,404.21999999966863,-0.05531656313520723 +80845,404.2249999996686,-0.055316515879373966 +80846,404.2299999996686,-0.0553164686244686 +80847,404.2349999996686,-0.05531642137049032 +80848,404.2399999996686,-0.055316374117438276 +80849,404.2449999996686,-0.055316326865311655 +80850,404.2499999996686,-0.05531627961410962 +80851,404.2549999996686,-0.05531623236383136 +80852,404.2599999996686,-0.055316185114476044 +80853,404.2649999996686,-0.055316137866042836 +80854,404.2699999996686,-0.055316090618530905 +80855,404.2749999996686,-0.05531604337193945 +80856,404.2799999996686,-0.05531599612626761 +80857,404.28499999966857,-0.05531594888151459 +80858,404.28999999966857,-0.05531590163767955 +80859,404.29499999966856,-0.05531585439476166 +80860,404.29999999966856,-0.055315807152760105 +80861,404.30499999966855,-0.05531575991167405 +80862,404.30999999966855,-0.05531571267150268 +80863,404.31499999966854,-0.05531566543224517 +80864,404.31999999966854,-0.05531561819390069 +80865,404.32499999966853,-0.05531557095646842 +80866,404.32999999966853,-0.05531552371994754 +80867,404.3349999996685,-0.05531547648433721 +80868,404.3399999996685,-0.05531542924963662 +80869,404.3449999996685,-0.05531538201584495 +80870,404.3499999996685,-0.055315334782961356 +80871,404.3549999996685,-0.05531528755098505 +80872,404.3599999996685,-0.05531524031991518 +80873,404.3649999996685,-0.055315193089750934 +80874,404.3699999996685,-0.05531514586049149 +80875,404.3749999996685,-0.05531509863213602 +80876,404.3799999996685,-0.0553150514046837 +80877,404.3849999996685,-0.055315004178133724 +80878,404.3899999996685,-0.05531495695248525 +80879,404.39499999966847,-0.05531490972773747 +80880,404.39999999966847,-0.055314862503889575 +80881,404.40499999966846,-0.055314815280940725 +80882,404.40999999966846,-0.055314768058890094 +80883,404.41499999966845,-0.05531472083773687 +80884,404.41999999966845,-0.05531467361748024 +80885,404.42499999966844,-0.055314626398119376 +80886,404.42999999966844,-0.05531457917965345 +80887,404.43499999966843,-0.05531453196208166 +80888,404.43999999966843,-0.05531448474540318 +80889,404.4449999996684,-0.055314437529617184 +80890,404.4499999996684,-0.05531439031472286 +80891,404.4549999996684,-0.055314343100719386 +80892,404.4599999996684,-0.05531429588760595 +80893,404.4649999996684,-0.05531424867538173 +80894,404.4699999996684,-0.055314201464045906 +80895,404.4749999996684,-0.05531415425359767 +80896,404.4799999996684,-0.05531410704403618 +80897,404.4849999996684,-0.05531405983536063 +80898,404.4899999996684,-0.05531401262757019 +80899,404.4949999996684,-0.05531396542066408 +80900,404.4999999996684,-0.05531391821464145 +80901,404.50499999966837,-0.0553138710095015 +80902,404.50999999966837,-0.055313823805243405 +80903,404.51499999966836,-0.05531377660186634 +80904,404.51999999966836,-0.05531372939936951 +80905,404.52499999966835,-0.05531368219775209 +80906,404.52999999966835,-0.05531363499701326 +80907,404.53499999966834,-0.055313587797152196 +80908,404.53999999966834,-0.05531354059816811 +80909,404.54499999966833,-0.05531349340006016 +80910,404.54999999966833,-0.055313446202827535 +80911,404.5549999996683,-0.05531339900646943 +80912,404.5599999996683,-0.055313351810985026 +80913,404.5649999996683,-0.0553133046163735 +80914,404.5699999996683,-0.05531325742263405 +80915,404.5749999996683,-0.05531321022976586 +80916,404.5799999996683,-0.05531316303776812 +80917,404.5849999996683,-0.055313115846640004 +80918,404.5899999996683,-0.05531306865638071 +80919,404.5949999996683,-0.05531302146698941 +80920,404.5999999996683,-0.05531297427846531 +80921,404.6049999996683,-0.055312927090807575 +80922,404.6099999996683,-0.05531287990401542 +80923,404.61499999966827,-0.05531283271808802 +80924,404.61999999966827,-0.05531278553302455 +80925,404.62499999966826,-0.05531273834882421 +80926,404.62999999966826,-0.055312691165486184 +80927,404.63499999966825,-0.05531264398300967 +80928,404.63999999966825,-0.05531259680139384 +80929,404.64499999966824,-0.0553125496206379 +80930,404.64999999966824,-0.055312502440741027 +80931,404.65499999966823,-0.05531245526170243 +80932,404.65999999966823,-0.05531240808352127 +80933,404.6649999996682,-0.05531236090619675 +80934,404.6699999996682,-0.055312313729728065 +80935,404.6749999996682,-0.055312266554114385 +80936,404.6799999996682,-0.05531221937935493 +80937,404.6849999996682,-0.05531217220544886 +80938,404.6899999996682,-0.05531212503239539 +80939,404.6949999996682,-0.055312077860193695 +80940,404.6999999996682,-0.05531203068884298 +80941,404.7049999996682,-0.05531198351834242 +80942,404.7099999996682,-0.05531193634869122 +80943,404.7149999996682,-0.055311889179888565 +80944,404.7199999996682,-0.05531184201193365 +80945,404.72499999966817,-0.05531179484482566 +80946,404.72999999966817,-0.05531174767856379 +80947,404.73499999966816,-0.05531170051314723 +80948,404.73999999966816,-0.05531165334857518 +80949,404.74499999966815,-0.055311606184846825 +80950,404.74999999966815,-0.05531155902196137 +80951,404.75499999966814,-0.055311511859918 +80952,404.75999999966814,-0.05531146469871591 +80953,404.76499999966813,-0.05531141753835429 +80954,404.76999999966813,-0.05531137037883234 +80955,404.7749999996681,-0.05531132322014925 +80956,404.7799999996681,-0.0553112760623042 +80957,404.7849999996681,-0.05531122890529642 +80958,404.7899999996681,-0.05531118174912507 +80959,404.7949999996681,-0.05531113459378936 +80960,404.7999999996681,-0.05531108743928849 +80961,404.8049999996681,-0.05531104028562163 +80962,404.8099999996681,-0.055310993132788 +80963,404.8149999996681,-0.0553109459807868 +80964,404.8199999996681,-0.055310898829617205 +80965,404.8249999996681,-0.05531085167927841 +80966,404.8299999996681,-0.05531080452976964 +80967,404.83499999966807,-0.05531075738109007 +80968,404.83999999966807,-0.05531071023323889 +80969,404.84499999966806,-0.055310663086215316 +80970,404.84999999966806,-0.055310615940018536 +80971,404.85499999966805,-0.055310568794647734 +80972,404.85999999966805,-0.05531052165010213 +80973,404.86499999966804,-0.055310474506380915 +80974,404.86999999966804,-0.055310427363483274 +80975,404.87499999966803,-0.055310380221408426 +80976,404.87999999966803,-0.055310333080155545 +80977,404.884999999668,-0.05531028593972384 +80978,404.889999999668,-0.055310238800112516 +80979,404.894999999668,-0.05531019166132077 +80980,404.899999999668,-0.0553101445233478 +80981,404.904999999668,-0.055310097386192796 +80982,404.909999999668,-0.05531005024985497 +80983,404.914999999668,-0.05531000311433351 +80984,404.919999999668,-0.05530995597962763 +80985,404.924999999668,-0.05530990884573651 +80986,404.929999999668,-0.05530986171265937 +80987,404.934999999668,-0.0553098145803954 +80988,404.939999999668,-0.0553097674489438 +80989,404.94499999966797,-0.05530972031830378 +80990,404.94999999966797,-0.05530967318847452 +80991,404.95499999966796,-0.05530962605945524 +80992,404.95999999966796,-0.05530957893124514 +80993,404.96499999966795,-0.05530953180384342 +80994,404.96999999966795,-0.055309484677249277 +80995,404.97499999966794,-0.055309437551461914 +80996,404.97999999966794,-0.05530939042648053 +80997,404.98499999966793,-0.055309343302304345 +80998,404.98999999966793,-0.05530929617893254 +80999,404.9949999996679,-0.05530924905636432 +81000,404.9999999996679,-0.05530920193459891 +81001,405.0049999996679,-0.05530915481363548 +81002,405.0099999996679,-0.055309107693473254 +81003,405.0149999996679,-0.055309060574111425 +81004,405.0199999996679,-0.05530901345554922 +81005,405.0249999996679,-0.05530896633778582 +81006,405.0299999996679,-0.05530891922082043 +81007,405.0349999996679,-0.05530887210465227 +81008,405.0399999996679,-0.055308824989280525 +81009,405.0449999996679,-0.055308777874704416 +81010,405.0499999996679,-0.055308730760923144 +81011,405.05499999966787,-0.05530868364793591 +81012,405.05999999966787,-0.05530863653574191 +81013,405.06499999966786,-0.05530858942434037 +81014,405.06999999966786,-0.05530854231373049 +81015,405.07499999966785,-0.05530849520391145 +81016,405.07999999966785,-0.055308448094882494 +81017,405.08499999966784,-0.05530840098664281 +81018,405.08999999966784,-0.0553083538791916 +81019,405.09499999966783,-0.05530830677252807 +81020,405.09999999966783,-0.05530825966665144 +81021,405.1049999996678,-0.05530821256156091 +81022,405.1099999996678,-0.055308165457255684 +81023,405.1149999996678,-0.05530811835373498 +81024,405.1199999996678,-0.055308071250998 +81025,405.1249999996678,-0.05530802414904395 +81026,405.1299999996678,-0.05530797704787203 +81027,405.1349999996678,-0.05530792994748147 +81028,405.1399999996678,-0.055307882847871456 +81029,405.1449999996678,-0.055307835749041204 +81030,405.1499999996678,-0.05530778865098993 +81031,405.1549999996678,-0.05530774155371684 +81032,405.1599999996678,-0.055307694457221133 +81033,405.16499999966777,-0.05530764736150204 +81034,405.16999999966777,-0.05530760026655874 +81035,405.17499999966776,-0.05530755317239046 +81036,405.17999999966776,-0.05530750607899641 +81037,405.18499999966775,-0.055307458986375804 +81038,405.18999999966775,-0.05530741189452785 +81039,405.19499999966774,-0.05530736480345175 +81040,405.19999999966774,-0.05530731771314673 +81041,405.20499999966773,-0.055307270623612 +81042,405.20999999966773,-0.05530722353484676 +81043,405.2149999996677,-0.05530717644685022 +81044,405.2199999996677,-0.0553071293596216 +81045,405.2249999996677,-0.055307082273160106 +81046,405.2299999996677,-0.05530703518746495 +81047,405.2349999996677,-0.05530698810253534 +81048,405.2399999996677,-0.05530694101837051 +81049,405.2449999996677,-0.05530689393496965 +81050,405.2499999996677,-0.055306846852331976 +81051,405.2549999996677,-0.05530679977045671 +81052,405.2599999996677,-0.055306752689343056 +81053,405.2649999996677,-0.05530670560899023 +81054,405.2699999996677,-0.05530665852939745 +81055,405.27499999966767,-0.05530661145056394 +81056,405.27999999966767,-0.05530656437248888 +81057,405.28499999966766,-0.05530651729517152 +81058,405.28999999966766,-0.05530647021861104 +81059,405.29499999966765,-0.055306423142806684 +81060,405.29999999966765,-0.05530637606775766 +81061,405.30499999966764,-0.05530632899346317 +81062,405.30999999966764,-0.05530628191992244 +81063,405.31499999966763,-0.05530623484713469 +81064,405.31999999966763,-0.05530618777509912 +81065,405.3249999996676,-0.05530614070381496 +81066,405.3299999996676,-0.05530609363328142 +81067,405.3349999996676,-0.05530604656349772 +81068,405.3399999996676,-0.05530599949446307 +81069,405.3449999996676,-0.05530595242617669 +81070,405.3499999996676,-0.05530590535863779 +81071,405.3549999996676,-0.055305858291845596 +81072,405.3599999996676,-0.05530581122579932 +81073,405.3649999996676,-0.055305764160498185 +81074,405.3699999996676,-0.055305717095941405 +81075,405.3749999996676,-0.05530567003212819 +81076,405.3799999996676,-0.05530562296905776 +81077,405.38499999966757,-0.05530557590672936 +81078,405.38999999966757,-0.05530552884514218 +81079,405.39499999966756,-0.05530548178429544 +81080,405.39999999966756,-0.05530543472418836 +81081,405.40499999966755,-0.05530538766482016 +81082,405.40999999966755,-0.05530534060619006 +81083,405.41499999966754,-0.05530529354829729 +81084,405.41999999966754,-0.05530524649114105 +81085,405.42499999966753,-0.055305199434720564 +81086,405.42999999966753,-0.055305152379035064 +81087,405.4349999996675,-0.05530510532408375 +81088,405.4399999996675,-0.05530505826986587 +81089,405.4449999996675,-0.05530501121638062 +81090,405.4499999996675,-0.055304964163627235 +81091,405.4549999996675,-0.05530491711160492 +81092,405.4599999996675,-0.05530487006031292 +81093,405.4649999996675,-0.05530482300975044 +81094,405.4699999996675,-0.055304775959916695 +81095,405.4749999996675,-0.055304728910810924 +81096,405.4799999996675,-0.055304681862432335 +81097,405.4849999996675,-0.05530463481478016 +81098,405.4899999996675,-0.0553045877678536 +81099,405.49499999966747,-0.055304540721651904 +81100,405.49999999966747,-0.05530449367617429 +81101,405.50499999966746,-0.055304446631419965 +81102,405.50999999966746,-0.05530439958738816 +81103,405.51499999966745,-0.0553043525440781 +81104,405.51999999966745,-0.055304305501489015 +81105,405.52499999966744,-0.055304258459620115 +81106,405.52999999966744,-0.05530421141847063 +81107,405.53499999966743,-0.05530416437803979 +81108,405.53999999966743,-0.055304117338326804 +81109,405.5449999996674,-0.055304070299330904 +81110,405.5499999996674,-0.05530402326105131 +81111,405.5549999996674,-0.05530397622348727 +81112,405.5599999996674,-0.05530392918663797 +81113,405.5649999996674,-0.05530388215050267 +81114,405.5699999996674,-0.05530383511508057 +81115,405.5749999996674,-0.055303788080370925 +81116,405.5799999996674,-0.05530374104637292 +81117,405.5849999996674,-0.05530369401308582 +81118,405.5899999996674,-0.05530364698050882 +81119,405.5949999996674,-0.05530359994864117 +81120,405.5999999996674,-0.05530355291748207 +81121,405.60499999966737,-0.05530350588703077 +81122,405.60999999966737,-0.055303458857286485 +81123,405.61499999966736,-0.05530341182824846 +81124,405.61999999966736,-0.0553033647999159 +81125,405.62499999966735,-0.055303317772288044 +81126,405.62999999966735,-0.055303270745364105 +81127,405.63499999966734,-0.05530322371914332 +81128,405.63999999966734,-0.055303176693624924 +81129,405.64499999966733,-0.05530312966880814 +81130,405.64999999966733,-0.0553030826446922 +81131,405.6549999996673,-0.05530303562127632 +81132,405.6599999996673,-0.055302988598559734 +81133,405.6649999996673,-0.055302941576541684 +81134,405.6699999996673,-0.05530289455522139 +81135,405.6749999996673,-0.055302847534598076 +81136,405.6799999996673,-0.055302800514670965 +81137,405.6849999996673,-0.055302753495439304 +81138,405.6899999996673,-0.055302706476902316 +81139,405.6949999996673,-0.05530265945905923 +81140,405.6999999996673,-0.055302612441909274 +81141,405.7049999996673,-0.05530256542545169 +81142,405.7099999996673,-0.05530251840968569 +81143,405.71499999966727,-0.055302471394610524 +81144,405.71999999966727,-0.0553024243802254 +81145,405.72499999966726,-0.05530237736652957 +81146,405.72999999966726,-0.055302330353522264 +81147,405.73499999966725,-0.05530228334120271 +81148,405.73999999966725,-0.05530223632957014 +81149,405.74499999966724,-0.05530218931862376 +81150,405.74999999966724,-0.055302142308362834 +81151,405.75499999966723,-0.05530209529878658 +81152,405.75999999966723,-0.05530204828989425 +81153,405.7649999996672,-0.055302001281685054 +81154,405.7699999996672,-0.05530195427415824 +81155,405.7749999996672,-0.05530190726731303 +81156,405.7799999996672,-0.05530186026114866 +81157,405.7849999996672,-0.05530181325566437 +81158,405.7899999996672,-0.05530176625085939 +81159,405.7949999996672,-0.05530171924673296 +81160,405.7999999996672,-0.055301672243284306 +81161,405.8049999996672,-0.05530162524051265 +81162,405.8099999996672,-0.05530157823841725 +81163,405.8149999996672,-0.05530153123699733 +81164,405.8199999996672,-0.05530148423625212 +81165,405.82499999966717,-0.05530143723618086 +81166,405.82999999966717,-0.055301390236782794 +81167,405.83499999966716,-0.055301343238057146 +81168,405.83999999966716,-0.055301296240003156 +81169,405.84499999966715,-0.055301249242620046 +81170,405.84999999966715,-0.055301202245907066 +81171,405.85499999966714,-0.055301155249863454 +81172,405.85999999966714,-0.05530110825448844 +81173,405.86499999966713,-0.055301061259781265 +81174,405.86999999966713,-0.05530101426574116 +81175,405.8749999996671,-0.05530096727236737 +81176,405.8799999996671,-0.05530092027965914 +81177,405.8849999996671,-0.055300873287615675 +81178,405.8899999996671,-0.05530082629623624 +81179,405.8949999996671,-0.05530077930552007 +81180,405.8999999996671,-0.055300732315466394 +81181,405.9049999996671,-0.05530068532607445 +81182,405.9099999996671,-0.05530063833734347 +81183,405.9149999996671,-0.055300591349272725 +81184,405.9199999996671,-0.055300544361861416 +81185,405.9249999996671,-0.0553004973751088 +81186,405.9299999996671,-0.05530045038901412 +81187,405.93499999966707,-0.055300403403576594 +81188,405.93999999966707,-0.055300356418795486 +81189,405.94499999966706,-0.05530030943467003 +81190,405.94999999966706,-0.05530026245119945 +81191,405.95499999966705,-0.055300215468382985 +81192,405.95999999966705,-0.0553001684862199 +81193,405.96499999966704,-0.05530012150470943 +81194,405.96999999966704,-0.055300074523850794 +81195,405.97499999966703,-0.05530002754364326 +81196,405.97999999966703,-0.05529998056408604 +81197,405.984999999667,-0.055299933585178394 +81198,405.989999999667,-0.05529988660691957 +81199,405.994999999667,-0.055299839629308796 +81200,405.999999999667,-0.05529979265234532 +81201,406.004999999667,-0.05529974567602837 +81202,406.009999999667,-0.0552996987003572 +81203,406.014999999667,-0.055299651725331044 +81204,406.019999999667,-0.05529960475094916 +81205,406.024999999667,-0.05529955777721078 +81206,406.029999999667,-0.05529951080411516 +81207,406.034999999667,-0.055299463831661524 +81208,406.039999999667,-0.05529941685984913 +81209,406.04499999966697,-0.05529936988867721 +81210,406.04999999966697,-0.05529932291814501 +81211,406.05499999966696,-0.05529927594825178 +81212,406.05999999966696,-0.05529922897899675 +81213,406.06499999966695,-0.05529918201037917 +81214,406.06999999966695,-0.05529913504239829 +81215,406.07499999966694,-0.05529908807505336 +81216,406.07999999966694,-0.05529904110834362 +81217,406.08499999966693,-0.0552989941422683 +81218,406.08999999966693,-0.05529894717682666 +81219,406.0949999996669,-0.05529890021201794 +81220,406.0999999996669,-0.055298853247841395 +81221,406.1049999996669,-0.055298806284296266 +81222,406.1099999996669,-0.05529875932138178 +81223,406.1149999996669,-0.05529871235909721 +81224,406.1199999996669,-0.0552986653974418 +81225,406.1249999996669,-0.05529861843641477 +81226,406.1299999996669,-0.0552985714760154 +81227,406.1349999996669,-0.05529852451624291 +81228,406.1399999996669,-0.05529847755709656 +81229,406.1449999996669,-0.055298430598575594 +81230,406.1499999996669,-0.055298383640679266 +81231,406.15499999966687,-0.0552983366834068 +81232,406.15999999966687,-0.055298289726757474 +81233,406.16499999966686,-0.055298242770730525 +81234,406.16999999966686,-0.055298195815325205 +81235,406.17499999966685,-0.05529814886054075 +81236,406.17999999966685,-0.05529810190637642 +81237,406.18499999966684,-0.05529805495283145 +81238,406.18999999966684,-0.05529800799990511 +81239,406.19499999966683,-0.05529796104759663 +81240,406.19999999966683,-0.05529791409590527 +81241,406.2049999996668,-0.055297867144830266 +81242,406.2099999996668,-0.055297820194370885 +81243,406.2149999996668,-0.05529777324452637 +81244,406.2199999996668,-0.05529772629529596 +81245,406.2249999996668,-0.05529767934667892 +81246,406.2299999996668,-0.055297632398674496 +81247,406.2349999996668,-0.05529758545128193 +81248,406.2399999996668,-0.0552975385045005 +81249,406.2449999996668,-0.05529749155832943 +81250,406.2499999996668,-0.055297444612767976 +81251,406.2549999996668,-0.05529739766781539 +81252,406.2599999996668,-0.05529735072347093 +81253,406.26499999966677,-0.05529730377973384 +81254,406.26999999966677,-0.055297256836603366 +81255,406.27499999966676,-0.055297209894078776 +81256,406.27999999966676,-0.055297162952159314 +81257,406.28499999966675,-0.055297116010844236 +81258,406.28999999966675,-0.05529706907013279 +81259,406.29499999966674,-0.055297022130024236 +81260,406.29999999966674,-0.055296975190517815 +81261,406.30499999966673,-0.05529692825161278 +81262,406.30999999966673,-0.055296881313308406 +81263,406.3149999996667,-0.055296834375603926 +81264,406.3199999996667,-0.0552967874384986 +81265,406.3249999996667,-0.05529674050199168 +81266,406.3299999996667,-0.055296693566082425 +81267,406.3349999996667,-0.05529664663077009 +81268,406.3399999996667,-0.05529659969605392 +81269,406.3449999996667,-0.055296552761933175 +81270,406.3499999996667,-0.05529650582840711 +81271,406.3549999996667,-0.055296458895474986 +81272,406.3599999996667,-0.055296411963136054 +81273,406.3649999996667,-0.05529636503138956 +81274,406.3699999996667,-0.055296318100234755 +81275,406.37499999966667,-0.05529627116967092 +81276,406.37999999966667,-0.055296224239697295 +81277,406.38499999966666,-0.055296177310313145 +81278,406.38999999966666,-0.05529613038151771 +81279,406.39499999966665,-0.055296083453310274 +81280,406.39999999966665,-0.055296036525690075 +81281,406.40499999966664,-0.055295989598656364 +81282,406.40999999966664,-0.0552959426722084 +81283,406.41499999966663,-0.055295895746345455 +81284,406.41999999966663,-0.05529584882106677 +81285,406.4249999996666,-0.055295801896371614 +81286,406.4299999996666,-0.05529575497225925 +81287,406.4349999996666,-0.055295708048728916 +81288,406.4399999996666,-0.055295661125779876 +81289,406.4449999996666,-0.05529561420341139 +81290,406.4499999996666,-0.05529556728162272 +81291,406.4549999996666,-0.05529552036041314 +81292,406.4599999996666,-0.05529547343978189 +81293,406.4649999996666,-0.05529542651972823 +81294,406.4699999996666,-0.055295379600251424 +81295,406.4749999996666,-0.05529533268135073 +81296,406.4799999996666,-0.055295285763025406 +81297,406.48499999966657,-0.05529523884527471 +81298,406.48999999966657,-0.05529519192809791 +81299,406.49499999966656,-0.055295145011494254 +81300,406.49999999966656,-0.05529509809546302 +81301,406.50499999966655,-0.055295051180003454 +81302,406.50999999966655,-0.05529500426511483 +81303,406.51499999966654,-0.0552949573507964 +81304,406.51999999966654,-0.05529491043704742 +81305,406.52499999966653,-0.05529486352386715 +81306,406.52999999966653,-0.05529481661125486 +81307,406.5349999996665,-0.05529476969920982 +81308,406.5399999996665,-0.05529472278773129 +81309,406.5449999996665,-0.055294675876818515 +81310,406.5499999996665,-0.05529462896647077 +81311,406.5549999996665,-0.0552945820566873 +81312,406.5599999996665,-0.0552945351474674 +81313,406.5649999996665,-0.0552944882388103 +81314,406.5699999996665,-0.05529444133071529 +81315,406.5749999996665,-0.05529439442318162 +81316,406.5799999996665,-0.05529434751620855 +81317,406.5849999996665,-0.055294300609795344 +81318,406.5899999996665,-0.05529425370394127 +81319,406.59499999966647,-0.05529420679864559 +81320,406.59999999966647,-0.055294159893907575 +81321,406.60499999966646,-0.05529411298972649 +81322,406.60999999966646,-0.05529406608610158 +81323,406.61499999966645,-0.05529401918303214 +81324,406.61999999966645,-0.05529397228051741 +81325,406.62499999966644,-0.055293925378556666 +81326,406.62999999966644,-0.055293878477149165 +81327,406.63499999966643,-0.05529383157629418 +81328,406.63999999966643,-0.05529378467599098 +81329,406.6449999996664,-0.05529373777623881 +81330,406.6499999996664,-0.05529369087703696 +81331,406.6549999996664,-0.055293643978384696 +81332,406.6599999996664,-0.055293597080281275 +81333,406.6649999996664,-0.05529355018272597 +81334,406.6699999996664,-0.05529350328571803 +81335,406.6749999996664,-0.055293456389256736 +81336,406.6799999996664,-0.055293409493341356 +81337,406.6849999996664,-0.05529336259797116 +81338,406.6899999996664,-0.0552933157031454 +81339,406.6949999996664,-0.05529326880886336 +81340,406.6999999996664,-0.055293221915124306 +81341,406.70499999966637,-0.055293175021927495 +81342,406.70999999966637,-0.05529312812927221 +81343,406.71499999966636,-0.0552930812371577 +81344,406.71999999966636,-0.05529303434558324 +81345,406.72499999966635,-0.05529298745454811 +81346,406.72999999966635,-0.055292940564051575 +81347,406.73499999966634,-0.05529289367409291 +81348,406.73999999966634,-0.05529284678467137 +81349,406.74499999966633,-0.055292799895786233 +81350,406.74999999966633,-0.05529275300743676 +81351,406.7549999996663,-0.055292706119622226 +81352,406.7599999996663,-0.055292659232341904 +81353,406.7649999996663,-0.055292612345595064 +81354,406.7699999996663,-0.05529256545938098 +81355,406.7749999996663,-0.055292518573698914 +81356,406.7799999996663,-0.05529247168854815 +81357,406.7849999996663,-0.055292424803927945 +81358,406.7899999996663,-0.055292377919837564 +81359,406.7949999996663,-0.055292331036276295 +81360,406.7999999996663,-0.0552922841532434 +81361,406.8049999996663,-0.055292237270738155 +81362,406.8099999996663,-0.055292190388759835 +81363,406.81499999966627,-0.05529214350730771 +81364,406.81999999966627,-0.05529209662638106 +81365,406.82499999966626,-0.05529204974597913 +81366,406.82999999966626,-0.05529200286610122 +81367,406.83499999966625,-0.05529195598674659 +81368,406.83999999966625,-0.055291909107914504 +81369,406.84499999966624,-0.05529186222960426 +81370,406.84999999966624,-0.05529181535181512 +81371,406.85499999966623,-0.05529176847454636 +81372,406.85999999966623,-0.05529172159779725 +81373,406.8649999996662,-0.05529167472156706 +81374,406.8699999996662,-0.055291627845855076 +81375,406.8749999996662,-0.05529158097066055 +81376,406.8799999996662,-0.05529153409598277 +81377,406.8849999996662,-0.05529148722182101 +81378,406.8899999996662,-0.05529144034817456 +81379,406.8949999996662,-0.05529139347504268 +81380,406.8999999996662,-0.05529134660242464 +81381,406.9049999996662,-0.05529129973031972 +81382,406.9099999996662,-0.055291252858727206 +81383,406.9149999996662,-0.055291205987646364 +81384,406.9199999996662,-0.05529115911707646 +81385,406.92499999966617,-0.055291112247016785 +81386,406.92999999966617,-0.05529106537746661 +81387,406.93499999966616,-0.05529101850842522 +81388,406.93999999966616,-0.0552909716398919 +81389,406.94499999966615,-0.05529092477186589 +81390,406.94999999966615,-0.05529087790434649 +81391,406.95499999966614,-0.05529083103733298 +81392,406.95999999966614,-0.055290784170824635 +81393,406.96499999966613,-0.055290737304820724 +81394,406.96999999966613,-0.05529069043932054 +81395,406.9749999996661,-0.05529064357432335 +81396,406.9799999996661,-0.055290596709828436 +81397,406.9849999996661,-0.05529054984583508 +81398,406.9899999996661,-0.055290502982342546 +81399,406.9949999996661,-0.05529045611935013 +81400,406.9999999996661,-0.05529040925685709 +81401,407.0049999996661,-0.05529036239486273 +81402,407.0099999996661,-0.05529031553336631 +81403,407.0149999996661,-0.055290268672367124 +81404,407.0199999996661,-0.05529022181186443 +81405,407.0249999996661,-0.05529017495185752 +81406,407.0299999996661,-0.05529012809234568 +81407,407.03499999966607,-0.055290081233328195 +81408,407.03999999966607,-0.055290034374804335 +81409,407.04499999966606,-0.05528998751677338 +81410,407.04999999966606,-0.05528994065923461 +81411,407.05499999966605,-0.055289893802187295 +81412,407.05999999966605,-0.055289846945630744 +81413,407.06499999966604,-0.055289800089564224 +81414,407.06999999966604,-0.055289753233987014 +81415,407.07499999966603,-0.0552897063788984 +81416,407.07999999966603,-0.055289659524297666 +81417,407.084999999666,-0.05528961267018407 +81418,407.089999999666,-0.05528956581655692 +81419,407.094999999666,-0.05528951896341549 +81420,407.099999999666,-0.05528947211075907 +81421,407.104999999666,-0.05528942525858693 +81422,407.109999999666,-0.05528937840689837 +81423,407.114999999666,-0.055289331555692656 +81424,407.119999999666,-0.05528928470496908 +81425,407.124999999666,-0.05528923785472692 +81426,407.129999999666,-0.05528919100496546 +81427,407.134999999666,-0.055289144155683985 +81428,407.139999999666,-0.055289097306881786 +81429,407.14499999966597,-0.055289050458558135 +81430,407.14999999966597,-0.05528900361071233 +81431,407.15499999966596,-0.05528895676334365 +81432,407.15999999966596,-0.05528890991645138 +81433,407.16499999966595,-0.05528886307003479 +81434,407.16999999966595,-0.055288816224093186 +81435,407.17499999966594,-0.05528876937862585 +81436,407.17999999966594,-0.055288722533632054 +81437,407.18499999966593,-0.05528867568911109 +81438,407.18999999966593,-0.05528862884506225 +81439,407.1949999996659,-0.055288582001484815 +81440,407.1999999996659,-0.05528853515837807 +81441,407.2049999996659,-0.055288488315741305 +81442,407.2099999996659,-0.0552884414735738 +81443,407.2149999996659,-0.05528839463187484 +81444,407.2199999996659,-0.055288347790643726 +81445,407.2249999996659,-0.05528830094987974 +81446,407.2299999996659,-0.05528825410958216 +81447,407.2349999996659,-0.05528820726975028 +81448,407.2399999996659,-0.055288160430383385 +81449,407.2449999996659,-0.05528811359148077 +81450,407.2499999996659,-0.0552880667530417 +81451,407.25499999966587,-0.0552880199150655 +81452,407.25999999966587,-0.05528797307755144 +81453,407.26499999966586,-0.05528792624049881 +81454,407.26999999966586,-0.055287879403906885 +81455,407.27499999966585,-0.055287832567774954 +81456,407.27999999966585,-0.05528778573210232 +81457,407.28499999966584,-0.055287738896888275 +81458,407.28999999966584,-0.0552876920621321 +81459,407.29499999966583,-0.05528764522783308 +81460,407.29999999966583,-0.05528759839399052 +81461,407.3049999996658,-0.05528755156060371 +81462,407.3099999996658,-0.05528750472767192 +81463,407.3149999996658,-0.05528745789519445 +81464,407.3199999996658,-0.055287411063170595 +81465,407.3249999996658,-0.05528736423159964 +81466,407.3299999996658,-0.05528731740048089 +81467,407.3349999996658,-0.05528727056981361 +81468,407.3399999996658,-0.05528722373959711 +81469,407.3449999996658,-0.055287176909830676 +81470,407.3499999996658,-0.055287130080513607 +81471,407.3549999996658,-0.055287083251645185 +81472,407.3599999996658,-0.05528703642322471 +81473,407.36499999966577,-0.055286989595251454 +81474,407.36999999966577,-0.05528694276772472 +81475,407.37499999966576,-0.055286895940643815 +81476,407.37999999966576,-0.055286849114008024 +81477,407.38499999966575,-0.05528680228781663 +81478,407.38999999966575,-0.05528675546206894 +81479,407.39499999966574,-0.055286708636764235 +81480,407.39999999966574,-0.05528666181190181 +81481,407.40499999966573,-0.05528661498748096 +81482,407.40999999966573,-0.05528656816350099 +81483,407.4149999996657,-0.05528652133996117 +81484,407.4199999996657,-0.05528647451686082 +81485,407.4249999996657,-0.05528642769419922 +81486,407.4299999996657,-0.05528638087197567 +81487,407.4349999996657,-0.055286334050189456 +81488,407.4399999996657,-0.05528628722883987 +81489,407.4449999996657,-0.055286240407926214 +81490,407.4499999996657,-0.055286193587447796 +81491,407.4549999996657,-0.05528614676740389 +81492,407.4599999996657,-0.0552860999477938 +81493,407.4649999996657,-0.05528605312861683 +81494,407.4699999996657,-0.055286006309872265 +81495,407.47499999966567,-0.0552859594915594 +81496,407.47999999966567,-0.05528591267367753 +81497,407.48499999966566,-0.05528586585622597 +81498,407.48999999966566,-0.055285819039204 +81499,407.49499999966565,-0.05528577222261092 +81500,407.49999999966565,-0.055285725406446024 +81501,407.50499999966564,-0.0552856785907086 +81502,407.50999999966564,-0.05528563177539796 +81503,407.51499999966563,-0.055285584960513404 +81504,407.51999999966563,-0.055285538146054226 +81505,407.5249999996656,-0.055285491332019716 +81506,407.5299999996656,-0.05528544451840918 +81507,407.5349999996656,-0.05528539770522191 +81508,407.5399999996656,-0.055285350892457216 +81509,407.5449999996656,-0.05528530408011439 +81510,407.5499999996656,-0.05528525726819272 +81511,407.5549999996656,-0.05528521045669152 +81512,407.5599999996656,-0.05528516364561007 +81513,407.5649999996656,-0.05528511683494769 +81514,407.5699999996656,-0.055285070024703675 +81515,407.5749999996656,-0.05528502321487731 +81516,407.5799999996656,-0.055284976405467916 +81517,407.58499999966557,-0.05528492959647477 +81518,407.58999999966557,-0.05528488278789719 +81519,407.59499999966556,-0.05528483597973447 +81520,407.59999999966556,-0.055284789171985906 +81521,407.60499999966555,-0.055284742364650814 +81522,407.60999999966555,-0.05528469555772847 +81523,407.61499999966554,-0.0552846487512182 +81524,407.61999999966554,-0.05528460194511929 +81525,407.62499999966553,-0.05528455513943105 +81526,407.62999999966553,-0.05528450833415278 +81527,407.6349999996655,-0.05528446152928378 +81528,407.6399999996655,-0.05528441472482334 +81529,407.6449999996655,-0.05528436792077078 +81530,407.6499999996655,-0.05528432111712539 +81531,407.6549999996655,-0.055284274313886474 +81532,407.6599999996655,-0.055284227511053344 +81533,407.6649999996655,-0.0552841807086253 +81534,407.6699999996655,-0.05528413390660164 +81535,407.6749999996655,-0.055284087104981665 +81536,407.6799999996655,-0.05528404030376469 +81537,407.6849999996655,-0.05528399350295 +81538,407.6899999996655,-0.05528394670253691 +81539,407.69499999966547,-0.055283899902524726 +81540,407.69999999966547,-0.05528385310291274 +81541,407.70499999966546,-0.05528380630370028 +81542,407.70999999966546,-0.05528375950488662 +81543,407.71499999966545,-0.05528371270647108 +81544,407.71999999966545,-0.05528366590845296 +81545,407.72499999966544,-0.05528361911083158 +81546,407.72999999966544,-0.05528357231360623 +81547,407.73499999966543,-0.055283525516776226 +81548,407.73999999966543,-0.05528347872034085 +81549,407.7449999996654,-0.05528343192429944 +81550,407.7499999996654,-0.055283385128651275 +81551,407.7549999996654,-0.05528333833339568 +81552,407.7599999996654,-0.05528329153853194 +81553,407.7649999996654,-0.05528324474405939 +81554,407.7699999996654,-0.055283197949977325 +81555,407.7749999996654,-0.05528315115628503 +81556,407.7799999996654,-0.05528310436298183 +81557,407.7849999996654,-0.055283057570067046 +81558,407.7899999996654,-0.055283010777539957 +81559,407.7949999996654,-0.05528296398539989 +81560,407.7999999996654,-0.05528291719364614 +81561,407.80499999966537,-0.05528287040227802 +81562,407.80999999966537,-0.05528282361129484 +81563,407.81499999966536,-0.05528277682069591 +81564,407.81999999966536,-0.05528273003048054 +81565,407.82499999966535,-0.05528268324064803 +81566,407.82999999966535,-0.05528263645119769 +81567,407.83499999966534,-0.05528258966212883 +81568,407.83999999966534,-0.05528254287344076 +81569,407.84499999966533,-0.05528249608513279 +81570,407.84999999966533,-0.055282449297204224 +81571,407.8549999996653,-0.055282402509654376 +81572,407.8599999996653,-0.05528235572248255 +81573,407.8649999996653,-0.055282308935688064 +81574,407.8699999996653,-0.05528226214927023 +81575,407.8749999996653,-0.05528221536322833 +81576,407.8799999996653,-0.05528216857756172 +81577,407.8849999996653,-0.05528212179226968 +81578,407.8899999996653,-0.05528207500735152 +81579,407.8949999996653,-0.055282028222806576 +81580,407.8999999996653,-0.05528198143863414 +81581,407.9049999996653,-0.055281934654833505 +81582,407.9099999996653,-0.05528188787140401 +81583,407.91499999966527,-0.05528184108834496 +81584,407.91999999966527,-0.05528179430565567 +81585,407.92499999966526,-0.055281747523335444 +81586,407.92999999966526,-0.05528170074138359 +81587,407.93499999966525,-0.05528165395979943 +81588,407.93999999966525,-0.05528160717858228 +81589,407.94499999966524,-0.05528156039773144 +81590,407.94999999966524,-0.05528151361724624 +81591,407.95499999966523,-0.055281466837125974 +81592,407.95999999966523,-0.055281420057369975 +81593,407.9649999996652,-0.05528137327797754 +81594,407.9699999996652,-0.05528132649894798 +81595,407.9749999996652,-0.05528127972028061 +81596,407.9799999996652,-0.05528123294197475 +81597,407.9849999996652,-0.05528118616402972 +81598,407.9899999996652,-0.055281139386444834 +81599,407.9949999996652,-0.0552810926092194 +81600,407.9999999996652,-0.05528104583235273 +81601,408.0049999996652,-0.05528099905584413 +81602,408.0099999996652,-0.055280952279692944 +81603,408.0149999996652,-0.055280905503898456 +81604,408.0199999996652,-0.05528085872845999 +81605,408.02499999966517,-0.05528081195337687 +81606,408.02999999966516,-0.05528076517864841 +81607,408.03499999966516,-0.055280718404273926 +81608,408.03999999966516,-0.05528067163025273 +81609,408.04499999966515,-0.05528062485658413 +81610,408.04999999966515,-0.05528057808326746 +81611,408.05499999966514,-0.05528053131030203 +81612,408.05999999966514,-0.05528048453768714 +81613,408.06499999966513,-0.05528043776542214 +81614,408.06999999966513,-0.05528039099350632 +81615,408.0749999996651,-0.055280344221939004 +81616,408.0799999996651,-0.0552802974507195 +81617,408.0849999996651,-0.05528025067984715 +81618,408.0899999996651,-0.05528020390932124 +81619,408.0949999996651,-0.055280157139141126 +81620,408.0999999996651,-0.055280110369306086 +81621,408.1049999996651,-0.055280063599815465 +81622,408.1099999996651,-0.05528001683066857 +81623,408.1149999996651,-0.05527997006186473 +81624,408.1199999996651,-0.05527992329340326 +81625,408.1249999996651,-0.05527987652528347 +81626,408.1299999996651,-0.055279829757504687 +81627,408.13499999966507,-0.05527978299006622 +81628,408.13999999966506,-0.055279736222967404 +81629,408.14499999966506,-0.05527968945620755 +81630,408.14999999966506,-0.055279642689785975 +81631,408.15499999966505,-0.055279595923702005 +81632,408.15999999966505,-0.05527954915795496 +81633,408.16499999966504,-0.05527950239254416 +81634,408.16999999966504,-0.05527945562746892 +81635,408.17499999966503,-0.05527940886272856 +81636,408.17999999966503,-0.05527936209832241 +81637,408.184999999665,-0.05527931533424979 +81638,408.189999999665,-0.055279268570510014 +81639,408.194999999665,-0.0552792218071024 +81640,408.199999999665,-0.055279175044026276 +81641,408.204999999665,-0.05527912828128096 +81642,408.209999999665,-0.055279081518865784 +81643,408.214999999665,-0.05527903475678005 +81644,408.219999999665,-0.0552789879950231 +81645,408.224999999665,-0.05527894123359425 +81646,408.229999999665,-0.055278894472492825 +81647,408.234999999665,-0.05527884771171814 +81648,408.239999999665,-0.05527880095126953 +81649,408.24499999966497,-0.055278754191146307 +81650,408.24999999966496,-0.0552787074313478 +81651,408.25499999966496,-0.05527866067187333 +81652,408.25999999966496,-0.05527861391272221 +81653,408.26499999966495,-0.05527856715389377 +81654,408.26999999966495,-0.055278520395387346 +81655,408.27499999966494,-0.05527847363720226 +81656,408.27999999966494,-0.055278426879337816 +81657,408.28499999966493,-0.05527838012179336 +81658,408.28999999966493,-0.055278333364568215 +81659,408.2949999996649,-0.0552782866076617 +81660,408.2999999996649,-0.05527823985107314 +81661,408.3049999996649,-0.05527819309480185 +81662,408.3099999996649,-0.055278146338847166 +81663,408.3149999996649,-0.055278099583208416 +81664,408.3199999996649,-0.05527805282788492 +81665,408.3249999996649,-0.05527800607287601 +81666,408.3299999996649,-0.055277959318181004 +81667,408.3349999996649,-0.055277912563799235 +81668,408.3399999996649,-0.055277865809730035 +81669,408.3449999996649,-0.05527781905597271 +81670,408.3499999996649,-0.055277772302526604 +81671,408.35499999966487,-0.05527772554939104 +81672,408.35999999966486,-0.055277678796565324 +81673,408.36499999966486,-0.05527763204404881 +81674,408.36999999966486,-0.055277585291840826 +81675,408.37499999966485,-0.05527753853994068 +81676,408.37999999966485,-0.05527749178834772 +81677,408.38499999966484,-0.05527744503706126 +81678,408.38999999966484,-0.05527739828608063 +81679,408.39499999966483,-0.05527735153540516 +81680,408.39999999966483,-0.05527730478503419 +81681,408.4049999996648,-0.05527725803496703 +81682,408.4099999996648,-0.05527721128520303 +81683,408.4149999996648,-0.05527716453574149 +81684,408.4199999996648,-0.05527711778658176 +81685,408.4249999996648,-0.05527707103772316 +81686,408.4299999996648,-0.055277024289165026 +81687,408.4349999996648,-0.055276977540906685 +81688,408.4399999996648,-0.05527693079294747 +81689,408.4449999996648,-0.055276884045286696 +81690,408.4499999996648,-0.05527683729792371 +81691,408.4549999996648,-0.055276790550857824 +81692,408.4599999996648,-0.055276743804088396 +81693,408.46499999966477,-0.05527669705761474 +81694,408.46999999966476,-0.055276650311436186 +81695,408.47499999966476,-0.055276603565552064 +81696,408.47999999966476,-0.055276556819961714 +81697,408.48499999966475,-0.055276510074664456 +81698,408.48999999966475,-0.05527646332965964 +81699,408.49499999966474,-0.05527641658494656 +81700,408.49999999966474,-0.05527636984052458 +81701,408.50499999966473,-0.05527632309639303 +81702,408.5099999996647,-0.05527627635255124 +81703,408.5149999996647,-0.05527622960899852 +81704,408.5199999996647,-0.05527618286573423 +81705,408.5249999996647,-0.05527613612275769 +81706,408.5299999996647,-0.05527608938006824 +81707,408.5349999996647,-0.05527604263766522 +81708,408.5399999996647,-0.055275995895547936 +81709,408.5449999996647,-0.055275949153715746 +81710,408.5499999996647,-0.05527590241216797 +81711,408.5549999996647,-0.05527585567090395 +81712,408.5599999996647,-0.055275808929923016 +81713,408.5649999996647,-0.05527576218922451 +81714,408.5699999996647,-0.055275715448807744 +81715,408.57499999966467,-0.05527566870867207 +81716,408.57999999966466,-0.05527562196881682 +81717,408.58499999966466,-0.05527557522924134 +81718,408.58999999966466,-0.05527552848994495 +81719,408.59499999966465,-0.05527548175092699 +81720,408.59999999966465,-0.05527543501218679 +81721,408.60499999966464,-0.05527538827372369 +81722,408.60999999966464,-0.05527534153553702 +81723,408.61499999966463,-0.05527529479762612 +81724,408.6199999996646,-0.05527524805999032 +81725,408.6249999996646,-0.055275201322628975 +81726,408.6299999996646,-0.0552751545855414 +81727,408.6349999996646,-0.05527510784872695 +81728,408.6399999996646,-0.05527506111218494 +81729,408.6449999996646,-0.05527501437591472 +81730,408.6499999996646,-0.05527496763991563 +81731,408.6549999996646,-0.055274920904187 +81732,408.6599999996646,-0.055274874168728165 +81733,408.6649999996646,-0.05527482743353846 +81734,408.6699999996646,-0.055274780698617236 +81735,408.6749999996646,-0.055274733963963825 +81736,408.6799999996646,-0.055274687229577554 +81737,408.68499999966457,-0.05527464049545777 +81738,408.68999999966456,-0.055274593761603825 +81739,408.69499999966456,-0.055274547028015035 +81740,408.69999999966456,-0.055274500294690755 +81741,408.70499999966455,-0.05527445356163031 +81742,408.70999999966455,-0.055274406828833035 +81743,408.71499999966454,-0.0552743600962983 +81744,408.71999999966454,-0.055274313364025406 +81745,408.72499999966453,-0.05527426663201372 +81746,408.7299999996645,-0.055274219900262565 +81747,408.7349999996645,-0.055274173168771285 +81748,408.7399999996645,-0.05527412643753923 +81749,408.7449999996645,-0.05527407970656573 +81750,408.7499999996645,-0.05527403297585014 +81751,408.7549999996645,-0.05527398624539177 +81752,408.7599999996645,-0.05527393951518998 +81753,408.7649999996645,-0.05527389278524412 +81754,408.7699999996645,-0.05527384605555351 +81755,408.7749999996645,-0.0552737993261175 +81756,408.7799999996645,-0.05527375259693544 +81757,408.7849999996645,-0.05527370586800666 +81758,408.7899999996645,-0.05527365913933051 +81759,408.79499999966447,-0.05527361241090632 +81760,408.79999999966446,-0.05527356568273345 +81761,408.80499999966446,-0.055273518954811224 +81762,408.80999999966446,-0.055273472227139 +81763,408.81499999966445,-0.05527342549971611 +81764,408.81999999966445,-0.0552733787725419 +81765,408.82499999966444,-0.05527333204561572 +81766,408.82999999966444,-0.0552732853189369 +81767,408.83499999966443,-0.055273238592504784 +81768,408.8399999996644,-0.05527319186631871 +81769,408.8449999996644,-0.05527314514037805 +81770,408.8499999996644,-0.05527309841468211 +81771,408.8549999996644,-0.05527305168923026 +81772,408.8599999996644,-0.055273004964021835 +81773,408.8649999996644,-0.05527295823905618 +81774,408.8699999996644,-0.05527291151433265 +81775,408.8749999996644,-0.05527286478985057 +81776,408.8799999996644,-0.055272818065609304 +81777,408.8849999996644,-0.05527277134160818 +81778,408.8899999996644,-0.05527272461784655 +81779,408.8949999996644,-0.05527267789432375 +81780,408.8999999996644,-0.05527263117103914 +81781,408.90499999966437,-0.05527258444799206 +81782,408.90999999966436,-0.05527253772518186 +81783,408.91499999966436,-0.05527249100260788 +81784,408.91999999966436,-0.05527244428026947 +81785,408.92499999966435,-0.055272397558165966 +81786,408.92999999966435,-0.055272350836296724 +81787,408.93499999966434,-0.05527230411466108 +81788,408.93999999966434,-0.0552722573932584 +81789,408.94499999966433,-0.055272210672088026 +81790,408.9499999996643,-0.055272163951149283 +81791,408.9549999996643,-0.055272117230441536 +81792,408.9599999996643,-0.05527207050996414 +81793,408.9649999996643,-0.05527202378971643 +81794,408.9699999996643,-0.055271977069697754 +81795,408.9749999996643,-0.05527193034990747 +81796,408.9799999996643,-0.0552718836303449 +81797,408.9849999996643,-0.05527183691100942 +81798,408.9899999996643,-0.055271790191900365 +81799,408.9949999996643,-0.055271743473017096 +81800,408.9999999996643,-0.055271696754358945 +81801,409.0049999996643,-0.05527165003592526 +81802,409.0099999996643,-0.05527160331771542 +81803,409.01499999966427,-0.05527155659972874 +81804,409.01999999966426,-0.05527150988196459 +81805,409.02499999966426,-0.0552714631644223 +81806,409.02999999966426,-0.055271416447101235 +81807,409.03499999966425,-0.05527136973000074 +81808,409.03999999966425,-0.05527132301312017 +81809,409.04499999966424,-0.055271276296458866 +81810,409.04999999966424,-0.055271229580016186 +81811,409.05499999966423,-0.055271182863791485 +81812,409.0599999996642,-0.05527113614778411 +81813,409.0649999996642,-0.0552710894319934 +81814,409.0699999996642,-0.05527104271641872 +81815,409.0749999996642,-0.05527099600105942 +81816,409.0799999996642,-0.05527094928591484 +81817,409.0849999996642,-0.05527090257098433 +81818,409.0899999996642,-0.05527085585626726 +81819,409.0949999996642,-0.05527080914176297 +81820,409.0999999996642,-0.05527076242747082 +81821,409.1049999996642,-0.05527071571339015 +81822,409.1099999996642,-0.05527066899952032 +81823,409.1149999996642,-0.05527062228586068 +81824,409.1199999996642,-0.055270575572410593 +81825,409.12499999966417,-0.0552705288591694 +81826,409.12999999966416,-0.05527048214613646 +81827,409.13499999966416,-0.05527043543331112 +81828,409.13999999966416,-0.05527038872069274 +81829,409.14499999966415,-0.05527034200828067 +81830,409.14999999966415,-0.05527029529607425 +81831,409.15499999966414,-0.05527024858407286 +81832,409.15999999966414,-0.05527020187227583 +81833,409.16499999966413,-0.05527015516068254 +81834,409.1699999996641,-0.055270108449292324 +81835,409.1749999996641,-0.055270061738104545 +81836,409.1799999996641,-0.05527001502711855 +81837,409.1849999996641,-0.055269968316333705 +81838,409.1899999996641,-0.055269921605749346 +81839,409.1949999996641,-0.05526987489536485 +81840,409.1999999996641,-0.055269828185179566 +81841,409.2049999996641,-0.05526978147519285 +81842,409.2099999996641,-0.05526973476540404 +81843,409.2149999996641,-0.05526968805581251 +81844,409.2199999996641,-0.05526964134641762 +81845,409.2249999996641,-0.05526959463721872 +81846,409.2299999996641,-0.05526954792821516 +81847,409.23499999966407,-0.05526950121940631 +81848,409.23999999966406,-0.05526945451079151 +81849,409.24499999966406,-0.05526940780237013 +81850,409.24999999966406,-0.05526936109414152 +81851,409.25499999966405,-0.05526931438610504 +81852,409.25999999966405,-0.055269267678260035 +81853,409.26499999966404,-0.05526922097060589 +81854,409.26999999966404,-0.055269174263141936 +81855,409.27499999966403,-0.05526912755586754 +81856,409.279999999664,-0.05526908084878207 +81857,409.284999999664,-0.055269034141884874 +81858,409.289999999664,-0.055268987435175304 +81859,409.294999999664,-0.05526894072865274 +81860,409.299999999664,-0.055268894022316516 +81861,409.304999999664,-0.055268847316166006 +81862,409.309999999664,-0.05526880061020056 +81863,409.314999999664,-0.05526875390441954 +81864,409.319999999664,-0.05526870719882231 +81865,409.324999999664,-0.055268660493408235 +81866,409.329999999664,-0.055268613788176664 +81867,409.334999999664,-0.055268567083126954 +81868,409.339999999664,-0.055268520378258475 +81869,409.34499999966397,-0.05526847367357059 +81870,409.34999999966396,-0.05526842696906263 +81871,409.35499999966396,-0.05526838026473399 +81872,409.35999999966396,-0.055268333560584026 +81873,409.36499999966395,-0.05526828685661208 +81874,409.36999999966395,-0.055268240152817526 +81875,409.37499999966394,-0.05526819344919971 +81876,409.37999999966394,-0.055268146745758015 +81877,409.38499999966393,-0.055268100042491795 +81878,409.3899999996639,-0.05526805333940041 +81879,409.3949999996639,-0.05526800663648322 +81880,409.3999999996639,-0.05526795993373959 +81881,409.4049999996639,-0.05526791323116888 +81882,409.4099999996639,-0.05526786652877046 +81883,409.4149999996639,-0.05526781982654368 +81884,409.4199999996639,-0.055267773124487905 +81885,409.4249999996639,-0.05526772642260249 +81886,409.4299999996639,-0.05526767972088682 +81887,409.4349999996639,-0.05526763301934024 +81888,409.4399999996639,-0.05526758631796213 +81889,409.4449999996639,-0.055267539616751835 +81890,409.4499999996639,-0.05526749291570873 +81891,409.45499999966387,-0.05526744621483218 +81892,409.45999999966386,-0.05526739951412154 +81893,409.46499999966386,-0.055267352813576184 +81894,409.46999999966386,-0.05526730611319546 +81895,409.47499999966385,-0.05526725941297875 +81896,409.47999999966385,-0.055267212712925416 +81897,409.48499999966384,-0.05526716601303481 +81898,409.48999999966384,-0.05526711931330631 +81899,409.49499999966383,-0.055267072613739275 +81900,409.4999999996638,-0.05526702591433308 +81901,409.5049999996638,-0.05526697921508706 +81902,409.5099999996638,-0.05526693251600062 +81903,409.5149999996638,-0.055266885817073105 +81904,409.5199999996638,-0.05526683911830388 +81905,409.5249999996638,-0.055266792419692325 +81906,409.5299999996638,-0.055266745721237784 +81907,409.5349999996638,-0.05526669902293963 +81908,409.5399999996638,-0.05526665232479725 +81909,409.5449999996638,-0.05526660562680999 +81910,409.5499999996638,-0.055266558928977236 +81911,409.5549999996638,-0.055266512231298325 +81912,409.5599999996638,-0.055266465533772645 +81913,409.56499999966377,-0.055266418836399565 +81914,409.56999999966376,-0.05526637213917845 +81915,409.57499999966376,-0.05526632544210865 +81916,409.57999999966376,-0.05526627874518955 +81917,409.58499999966375,-0.05526623204842052 +81918,409.58999999966375,-0.05526618535180093 +81919,409.59499999966374,-0.05526613865533014 +81920,409.59999999966374,-0.055266091959007516 +81921,409.60499999966373,-0.05526604526283242 +81922,409.6099999996637,-0.055265998566804246 +81923,409.6149999996637,-0.055265951870922335 +81924,409.6199999996637,-0.05526590517518608 +81925,409.6249999996637,-0.055265858479594844 +81926,409.6299999996637,-0.05526581178414799 +81927,409.6349999996637,-0.05526576508884489 +81928,409.6399999996637,-0.05526571839368491 +81929,409.6449999996637,-0.05526567169866742 +81930,409.6499999996637,-0.0552656250037918 +81931,409.6549999996637,-0.05526557830905741 +81932,409.6599999996637,-0.055265531614463625 +81933,409.6649999996637,-0.055265484920009815 +81934,409.6699999996637,-0.05526543822569535 +81935,409.67499999966367,-0.055265391531519596 +81936,409.67999999966366,-0.055265344837481946 +81937,409.68499999966366,-0.05526529814358175 +81938,409.68999999966366,-0.05526525144981838 +81939,409.69499999966365,-0.05526520475619121 +81940,409.69999999966365,-0.055265158062699625 +81941,409.70499999966364,-0.05526511136934298 +81942,409.70999999966364,-0.05526506467612065 +81943,409.71499999966363,-0.05526501798303201 +81944,409.7199999996636,-0.05526497129007643 +81945,409.7249999996636,-0.0552649245972533 +81946,409.7299999996636,-0.05526487790456197 +81947,409.7349999996636,-0.055264831212001826 +81948,409.7399999996636,-0.05526478451957223 +81949,409.7449999996636,-0.05526473782727256 +81950,409.7499999996636,-0.055264691135102184 +81951,409.7549999996636,-0.05526464444306049 +81952,409.7599999996636,-0.05526459775114684 +81953,409.7649999996636,-0.055264551059360616 +81954,409.7699999996636,-0.05526450436770118 +81955,409.7749999996636,-0.05526445767616791 +81956,409.7799999996636,-0.05526441098476019 +81957,409.78499999966357,-0.055264364293477385 +81958,409.78999999966356,-0.05526431760231887 +81959,409.79499999966356,-0.05526427091128403 +81960,409.79999999966356,-0.05526422422037223 +81961,409.80499999966355,-0.05526417752958284 +81962,409.80999999966355,-0.05526413083891525 +81963,409.81499999966354,-0.05526408414836882 +81964,409.81999999966354,-0.05526403745794295 +81965,409.82499999966353,-0.055263990767637 +81966,409.8299999996635,-0.05526394407745033 +81967,409.8349999996635,-0.05526389738738235 +81968,409.8399999996635,-0.05526385069743241 +81969,409.8449999996635,-0.055263804007599886 +81970,409.8499999996635,-0.055263757317884174 +81971,409.8549999996635,-0.055263710628284626 +81972,409.8599999996635,-0.055263663938800646 +81973,409.8649999996635,-0.055263617249431594 +81974,409.8699999996635,-0.05526357056017685 +81975,409.8749999996635,-0.05526352387103579 +81976,409.8799999996635,-0.05526347718200779 +81977,409.8849999996635,-0.05526343049309224 +81978,409.8899999996635,-0.05526338380428851 +81979,409.89499999966347,-0.05526333711559597 +81980,409.89999999966346,-0.055263290427014014 +81981,409.90499999966346,-0.055263243738542 +81982,409.90999999966346,-0.05526319705017933 +81983,409.91499999966345,-0.05526315036192537 +81984,409.91999999966345,-0.0552631036737795 +81985,409.92499999966344,-0.05526305698574109 +81986,409.92999999966344,-0.05526301029780953 +81987,409.93499999966343,-0.0552629636099842 +81988,409.9399999996634,-0.05526291692226448 +81989,409.9449999996634,-0.05526287023464976 +81990,409.9499999996634,-0.05526282354713939 +81991,409.9549999996634,-0.05526277685973277 +81992,409.9599999996634,-0.055262730172429275 +81993,409.9649999996634,-0.05526268348522828 +81994,409.9699999996634,-0.05526263679812918 +81995,409.9749999996634,-0.05526259011113135 +81996,409.9799999996634,-0.055262543424234166 +81997,409.9849999996634,-0.05526249673743702 +81998,409.9899999996634,-0.05526245005073928 +81999,409.9949999996634,-0.055262403364140324 +82000,409.9999999996634,-0.05526235667763955 +82001,410.00499999966337,-0.055262309991236325 +82002,410.00999999966336,-0.05526226330493003 +82003,410.01499999966336,-0.055262216618720064 +82004,410.01999999966336,-0.05526216993260579 +82005,410.02499999966335,-0.0552621232465866 +82006,410.02999999966335,-0.055262076560661885 +82007,410.03499999966334,-0.055262029874831003 +82008,410.03999999966334,-0.05526198318909336 +82009,410.04499999966333,-0.05526193650344833 +82010,410.0499999996633,-0.055261889817895295 +82011,410.0549999996633,-0.05526184313243364 +82012,410.0599999996633,-0.05526179644706275 +82013,410.0649999996633,-0.055261749761782 +82014,410.0699999996633,-0.05526170307659078 +82015,410.0749999996633,-0.05526165639148847 +82016,410.0799999996633,-0.05526160970647446 +82017,410.0849999996633,-0.05526156302154813 +82018,410.0899999996633,-0.055261516336708866 +82019,410.0949999996633,-0.05526146965195605 +82020,410.0999999996633,-0.055261422967289066 +82021,410.1049999996633,-0.0552613762827073 +82022,410.1099999996633,-0.05526132959821015 +82023,410.11499999966327,-0.05526128291379699 +82024,410.11999999966326,-0.0552612362294672 +82025,410.12499999966326,-0.05526118954522018 +82026,410.12999999966326,-0.05526114286105529 +82027,410.13499999966325,-0.05526109617697193 +82028,410.13999999966325,-0.05526104949296949 +82029,410.14499999966324,-0.05526100280904735 +82030,410.14999999966324,-0.055260956125204916 +82031,410.15499999966323,-0.05526090944144154 +82032,410.1599999996632,-0.05526086275775664 +82033,410.1649999996632,-0.05526081607414959 +82034,410.1699999996632,-0.055260769390619774 +82035,410.1749999996632,-0.05526072270716657 +82036,410.1799999996632,-0.055260676023789375 +82037,410.1849999996632,-0.05526062934048758 +82038,410.1899999996632,-0.055260582657260575 +82039,410.1949999996632,-0.05526053597410774 +82040,410.1999999996632,-0.05526048929102846 +82041,410.2049999996632,-0.05526044260802213 +82042,410.2099999996632,-0.055260395925088135 +82043,410.2149999996632,-0.05526034924222587 +82044,410.2199999996632,-0.05526030255943472 +82045,410.22499999966317,-0.05526025587671407 +82046,410.22999999966316,-0.05526020919406331 +82047,410.23499999966316,-0.055260162511481824 +82048,410.23999999966315,-0.05526011582896901 +82049,410.24499999966315,-0.055260069146524246 +82050,410.24999999966315,-0.05526002246414693 +82051,410.25499999966314,-0.055259975781836446 +82052,410.25999999966314,-0.05525992909959219 +82053,410.26499999966313,-0.05525988241741355 +82054,410.2699999996631,-0.05525983573529992 +82055,410.2749999996631,-0.05525978905325067 +82056,410.2799999996631,-0.05525974237126522 +82057,410.2849999996631,-0.055259695689342934 +82058,410.2899999996631,-0.05525964900748322 +82059,410.2949999996631,-0.05525960232568546 +82060,410.2999999996631,-0.055259555643949056 +82061,410.3049999996631,-0.055259508962273385 +82062,410.3099999996631,-0.05525946228065786 +82063,410.3149999996631,-0.055259415599101844 +82064,410.3199999996631,-0.055259368917604745 +82065,410.3249999996631,-0.05525932223616596 +82066,410.3299999996631,-0.05525927555478487 +82067,410.33499999966307,-0.05525922887346086 +82068,410.33999999966306,-0.055259182192193335 +82069,410.34499999966306,-0.05525913551098168 +82070,410.34999999966305,-0.05525908882982529 +82071,410.35499999966305,-0.05525904214872357 +82072,410.35999999966305,-0.05525899546767589 +82073,410.36499999966304,-0.05525894878668166 +82074,410.36999999966304,-0.05525890210574026 +82075,410.37499999966303,-0.05525885542485111 +82076,410.379999999663,-0.05525880874401358 +82077,410.384999999663,-0.055258762063227065 +82078,410.389999999663,-0.05525871538249096 +82079,410.394999999663,-0.05525866870180467 +82080,410.399999999663,-0.05525862202116757 +82081,410.404999999663,-0.05525857534057907 +82082,410.409999999663,-0.05525852866003857 +82083,410.414999999663,-0.055258481979545436 +82084,410.419999999663,-0.055258435299099094 +82085,410.424999999663,-0.05525838861869892 +82086,410.429999999663,-0.0552583419383443 +82087,410.434999999663,-0.05525829525803465 +82088,410.439999999663,-0.05525824857776936 +82089,410.44499999966297,-0.055258201897547835 +82090,410.44999999966296,-0.05525815521736945 +82091,410.45499999966296,-0.05525810853723361 +82092,410.45999999966295,-0.05525806185713971 +82093,410.46499999966295,-0.055258015177087144 +82094,410.46999999966295,-0.05525796849707532 +82095,410.47499999966294,-0.05525792181710362 +82096,410.47999999966294,-0.05525787513717145 +82097,410.48499999966293,-0.05525782845727821 +82098,410.4899999996629,-0.05525778177742329 +82099,410.4949999996629,-0.055257735097606085 +82100,410.4999999996629,-0.05525768841782599 +82101,410.5049999996629,-0.05525764173808241 +82102,410.5099999996629,-0.05525759505837475 +82103,410.5149999996629,-0.055257548378702386 +82104,410.5199999996629,-0.05525750169906474 +82105,410.5249999996629,-0.05525745501946118 +82106,410.5299999996629,-0.05525740833989113 +82107,410.5349999996629,-0.05525736166035398 +82108,410.5399999996629,-0.05525731498084913 +82109,410.5449999996629,-0.05525726830137597 +82110,410.5499999996629,-0.05525722162193391 +82111,410.55499999966287,-0.055257174942522344 +82112,410.55999999966286,-0.05525712826314067 +82113,410.56499999966286,-0.055257081583788295 +82114,410.56999999966285,-0.055257034904464604 +82115,410.57499999966285,-0.05525698822516901 +82116,410.57999999966285,-0.05525694154590092 +82117,410.58499999966284,-0.05525689486665971 +82118,410.58999999966284,-0.055256848187444786 +82119,410.59499999966283,-0.055256801508255564 +82120,410.5999999996628,-0.05525675482909143 +82121,410.6049999996628,-0.055256708149951796 +82122,410.6099999996628,-0.05525666147083605 +82123,410.6149999996628,-0.055256614791743604 +82124,410.6199999996628,-0.05525656811267385 +82125,410.6249999996628,-0.05525652143362619 +82126,410.6299999996628,-0.05525647475460002 +82127,410.6349999996628,-0.055256428075594756 +82128,410.6399999996628,-0.0552563813966098 +82129,410.6449999996628,-0.05525633471764454 +82130,410.6499999996628,-0.05525628803869837 +82131,410.6549999996628,-0.055256241359770725 +82132,410.6599999996628,-0.05525619468086099 +82133,410.66499999966277,-0.055256148001968555 +82134,410.66999999966276,-0.05525610132309284 +82135,410.67499999966276,-0.055256054644233235 +82136,410.67999999966275,-0.055256007965389146 +82137,410.68499999966275,-0.05525596128655998 +82138,410.68999999966275,-0.05525591460774514 +82139,410.69499999966274,-0.055255867928944026 +82140,410.69999999966274,-0.05525582125015606 +82141,410.70499999966273,-0.05525577457138063 +82142,410.7099999996627,-0.05525572789261713 +82143,410.7149999996627,-0.055255681213864975 +82144,410.7199999996627,-0.05525563453512356 +82145,410.7249999996627,-0.05525558785639231 +82146,410.7299999996627,-0.05525554117767061 +82147,410.7349999996627,-0.05525549449895788 +82148,410.7399999996627,-0.055255447820253496 +82149,410.7449999996627,-0.05525540114155689 +82150,410.7499999996627,-0.05525535446286746 +82151,410.7549999996627,-0.05525530778418461 +82152,410.7599999996627,-0.05525526110550774 +82153,410.7649999996627,-0.055255214426836265 +82154,410.7699999996627,-0.05525516774816958 +82155,410.77499999966267,-0.05525512106950711 +82156,410.77999999966266,-0.05525507439084825 +82157,410.78499999966266,-0.0552550277121924 +82158,410.78999999966265,-0.05525498103353897 +82159,410.79499999966265,-0.05525493435488737 +82160,410.79999999966265,-0.05525488767623699 +82161,410.80499999966264,-0.05525484099758727 +82162,410.80999999966264,-0.05525479431893759 +82163,410.81499999966263,-0.05525474764028735 +82164,410.8199999996626,-0.055254700961635976 +82165,410.8249999996626,-0.05525465428298289 +82166,410.8299999996626,-0.05525460760432746 +82167,410.8349999996626,-0.055254560925669126 +82168,410.8399999996626,-0.05525451424700728 +82169,410.8449999996626,-0.05525446756834133 +82170,410.8499999996626,-0.05525442088967068 +82171,410.8549999996626,-0.05525437421099476 +82172,410.8599999996626,-0.055254327532312957 +82173,410.8649999996626,-0.055254280853624695 +82174,410.8699999996626,-0.05525423417492937 +82175,410.8749999996626,-0.055254187496226397 +82176,410.8799999996626,-0.05525414081751518 +82177,410.88499999966257,-0.05525409413879514 +82178,410.88999999966256,-0.05525404746006567 +82179,410.89499999966256,-0.05525400078132618 +82180,410.89999999966255,-0.0552539541025761 +82181,410.90499999966255,-0.05525390742381482 +82182,410.90999999966255,-0.055253860745041766 +82183,410.91499999966254,-0.055253814066256325 +82184,410.91999999966254,-0.05525376738745793 +82185,410.92499999966253,-0.05525372070864599 +82186,410.9299999996625,-0.05525367402981989 +82187,410.9349999996625,-0.05525362735097907 +82188,410.9399999996625,-0.05525358067212294 +82189,410.9449999996625,-0.055253533993250885 +82190,410.9499999996625,-0.05525348731436233 +82191,410.9549999996625,-0.0552534406354567 +82192,410.9599999996625,-0.055253393956533385 +82193,410.9649999996625,-0.05525334727759181 +82194,410.9699999996625,-0.055253300598631386 +82195,410.9749999996625,-0.05525325391965152 +82196,410.9799999996625,-0.05525320724065162 +82197,410.9849999996625,-0.055253160561631105 +82198,410.9899999996625,-0.05525311388258939 +82199,410.99499999966247,-0.05525306720352589 +82200,410.99999999966246,-0.055253020524440005 +82201,411.00499999966246,-0.055252973845331156 +82202,411.00999999966245,-0.05525292716619876 +82203,411.01499999966245,-0.05525288048704222 +82204,411.01999999966245,-0.05525283380786097 +82205,411.02499999966244,-0.05525278712865439 +82206,411.02999999966244,-0.055252740449421925 +82207,411.03499999966243,-0.05525269377016297 +82208,411.0399999996624,-0.05525264709087693 +82209,411.0449999996624,-0.055252600411563255 +82210,411.0499999996624,-0.05525255373222133 +82211,411.0549999996624,-0.05525250705285058 +82212,411.0599999996624,-0.055252460373450406 +82213,411.0649999996624,-0.05525241369402024 +82214,411.0699999996624,-0.05525236701455948 +82215,411.0749999996624,-0.055252320335067565 +82216,411.0799999996624,-0.05525227365554389 +82217,411.0849999996624,-0.05525222697598788 +82218,411.0899999996624,-0.055252180296398945 +82219,411.0949999996624,-0.05525213361677651 +82220,411.0999999996624,-0.05525208693711997 +82221,411.10499999966237,-0.05525204025742876 +82222,411.10999999966236,-0.055251993577702295 +82223,411.11499999966236,-0.055251946897939976 +82224,411.11999999966235,-0.055251900218141234 +82225,411.12499999966235,-0.05525185353830549 +82226,411.12999999966235,-0.05525180685843213 +82227,411.13499999966234,-0.05525176017852061 +82228,411.13999999966234,-0.055251713498570325 +82229,411.14499999966233,-0.0552516668185807 +82230,411.1499999996623,-0.05525162013855115 +82231,411.1549999996623,-0.05525157345848109 +82232,411.1599999996623,-0.05525152677836994 +82233,411.1649999996623,-0.055251480098217114 +82234,411.1699999996623,-0.055251433418022036 +82235,411.1749999996623,-0.05525138673778412 +82236,411.1799999996623,-0.05525134005750279 +82237,411.1849999996623,-0.05525129337717745 +82238,411.1899999996623,-0.055251246696807525 +82239,411.1949999996623,-0.05525120001639244 +82240,411.1999999996623,-0.05525115333593162 +82241,411.2049999996623,-0.055251106655424466 +82242,411.2099999996623,-0.05525105997487042 +82243,411.21499999966227,-0.055251013294268875 +82244,411.21999999966226,-0.05525096661361927 +82245,411.22499999966226,-0.05525091993292101 +82246,411.22999999966225,-0.055250873252173524 +82247,411.23499999966225,-0.05525082657137623 +82248,411.23999999966225,-0.05525077989052853 +82249,411.24499999966224,-0.055250733209629886 +82250,411.24999999966224,-0.055250686528679684 +82251,411.25499999966223,-0.05525063984767735 +82252,411.2599999996622,-0.05525059316662231 +82253,411.2649999996622,-0.055250546485513995 +82254,411.2699999996622,-0.05525049980435181 +82255,411.2749999996622,-0.055250453123135174 +82256,411.2799999996622,-0.05525040644186352 +82257,411.2849999996622,-0.05525035976053626 +82258,411.2899999996622,-0.05525031307915282 +82259,411.2949999996622,-0.055250266397712626 +82260,411.2999999996622,-0.055250219716215083 +82261,411.3049999996622,-0.05525017303465964 +82262,411.3099999996622,-0.0552501263530457 +82263,411.3149999996622,-0.05525007967137269 +82264,411.3199999996622,-0.055250032989640034 +82265,411.32499999966217,-0.05524998630784715 +82266,411.32999999966216,-0.05524993962599346 +82267,411.33499999966216,-0.0552498929440784 +82268,411.33999999966215,-0.055249846262101374 +82269,411.34499999966215,-0.05524979958006182 +82270,411.34999999966215,-0.05524975289795916 +82271,411.35499999966214,-0.0552497062157928 +82272,411.35999999966214,-0.05524965953356218 +82273,411.36499999966213,-0.055249612851266734 +82274,411.3699999996621,-0.05524956616890586 +82275,411.3749999996621,-0.05524951948647901 +82276,411.3799999996621,-0.055249472803985566 +82277,411.3849999996621,-0.055249426121425006 +82278,411.3899999996621,-0.05524937943879671 +82279,411.3949999996621,-0.05524933275610013 +82280,411.3999999996621,-0.05524928607333469 +82281,411.4049999996621,-0.0552492393904998 +82282,411.4099999996621,-0.05524919270759489 +82283,411.4149999996621,-0.05524914602461938 +82284,411.4199999996621,-0.055249099341572704 +82285,411.4249999996621,-0.05524905265845429 +82286,411.4299999996621,-0.05524900597526356 +82287,411.43499999966207,-0.05524895929199994 +82288,411.43999999966206,-0.05524891260866285 +82289,411.44499999966206,-0.055248865925251724 +82290,411.44999999966205,-0.05524881924176599 +82291,411.45499999966205,-0.05524877255820506 +82292,411.45999999966205,-0.05524872587456838 +82293,411.46499999966204,-0.05524867919085537 +82294,411.46999999966204,-0.05524863250706545 +82295,411.47499999966203,-0.055248585823198054 +82296,411.479999999662,-0.055248539139252616 +82297,411.484999999662,-0.055248492455228546 +82298,411.489999999662,-0.05524844577112529 +82299,411.494999999662,-0.055248399086942256 +82300,411.499999999662,-0.05524835240267889 +82301,411.504999999662,-0.055248305718334605 +82302,411.509999999662,-0.05524825903390884 +82303,411.514999999662,-0.05524821234940102 +82304,411.519999999662,-0.05524816566481057 +82305,411.524999999662,-0.05524811898013692 +82306,411.529999999662,-0.0552480722953795 +82307,411.534999999662,-0.05524802561053775 +82308,411.539999999662,-0.05524797892561108 +82309,411.54499999966197,-0.05524793224059893 +82310,411.54999999966196,-0.05524788555550073 +82311,411.55499999966196,-0.0552478388703159 +82312,411.55999999966195,-0.05524779218504388 +82313,411.56499999966195,-0.05524774549968409 +82314,411.56999999966195,-0.05524769881423596 +82315,411.57499999966194,-0.055247652128698935 +82316,411.57999999966194,-0.05524760544307243 +82317,411.58499999966193,-0.05524755875735589 +82318,411.5899999996619,-0.05524751207154873 +82319,411.5949999996619,-0.05524746538565039 +82320,411.5999999996619,-0.05524741869966029 +82321,411.6049999996619,-0.05524737201357788 +82322,411.6099999996619,-0.05524732532740256 +82323,411.6149999996619,-0.0552472786411338 +82324,411.6199999996619,-0.05524723195477101 +82325,411.6249999996619,-0.05524718526831363 +82326,411.6299999996619,-0.05524713858176108 +82327,411.6349999996619,-0.0552470918951128 +82328,411.6399999996619,-0.05524704520836822 +82329,411.6449999996619,-0.05524699852152678 +82330,411.6499999996619,-0.05524695183458789 +82331,411.65499999966187,-0.055246905147551005 +82332,411.65999999966186,-0.055246858460415556 +82333,411.66499999966186,-0.055246811773180964 +82334,411.66999999966185,-0.05524676508584666 +82335,411.67499999966185,-0.0552467183984121 +82336,411.67999999966185,-0.055246671710876695 +82337,411.68499999966184,-0.05524662502323989 +82338,411.68999999966184,-0.0552465783355011 +82339,411.69499999966183,-0.05524653164765978 +82340,411.6999999996618,-0.05524648495971535 +82341,411.7049999996618,-0.055246438271667246 +82342,411.7099999996618,-0.05524639158351491 +82343,411.7149999996618,-0.05524634489525778 +82344,411.7199999996618,-0.05524629820689528 +82345,411.7249999996618,-0.055246251518426846 +82346,411.7299999996618,-0.05524620482985192 +82347,411.7349999996618,-0.055246158141169927 +82348,411.7399999996618,-0.05524611145238031 +82349,411.7449999996618,-0.0552460647634825 +82350,411.7499999996618,-0.05524601807447591 +82351,411.7549999996618,-0.055245971385360026 +82352,411.7599999996618,-0.05524592469613424 +82353,411.76499999966177,-0.05524587800679801 +82354,411.76999999966176,-0.055245831317350766 +82355,411.77499999966176,-0.055245784627791936 +82356,411.77999999966175,-0.055245737938120966 +82357,411.78499999966175,-0.055245691248337295 +82358,411.78999999966175,-0.055245644558440346 +82359,411.79499999966174,-0.05524559786842957 +82360,411.79999999966174,-0.055245551178304396 +82361,411.80499999966173,-0.055245504488064257 +82362,411.8099999996617,-0.0552454577977086 +82363,411.8149999996617,-0.055245411107236846 +82364,411.8199999996617,-0.05524536441664846 +82365,411.8249999996617,-0.05524531772594286 +82366,411.8299999996617,-0.055245271035119475 +82367,411.8349999996617,-0.05524522434417776 +82368,411.8399999996617,-0.05524517765311714 +82369,411.8449999996617,-0.05524513096193707 +82370,411.8499999996617,-0.05524508427063698 +82371,411.8549999996617,-0.055245037579216304 +82372,411.8599999996617,-0.05524499088767449 +82373,411.8649999996617,-0.05524494419601096 +82374,411.8699999996617,-0.05524489750422518 +82375,411.87499999966167,-0.05524485081231656 +82376,411.87999999966166,-0.055244804120284555 +82377,411.88499999966166,-0.055244757428128594 +82378,411.88999999966165,-0.055244710735848135 +82379,411.89499999966165,-0.055244664043442596 +82380,411.89999999966165,-0.05524461735091143 +82381,411.90499999966164,-0.05524457065825406 +82382,411.90999999966164,-0.05524452396546995 +82383,411.91499999966163,-0.055244477272558545 +82384,411.9199999996616,-0.05524443057951925 +82385,411.9249999996616,-0.05524438388635153 +82386,411.9299999996616,-0.05524433719305482 +82387,411.9349999996616,-0.05524429049962856 +82388,411.9399999996616,-0.05524424380607221 +82389,411.9449999996616,-0.05524419711238518 +82390,411.9499999996616,-0.055244150418566916 +82391,411.9549999996616,-0.055244103724616876 +82392,411.9599999996616,-0.05524405703053449 +82393,411.9649999996616,-0.055244010336319205 +82394,411.9699999996616,-0.05524396364197047 +82395,411.9749999996616,-0.0552439169474877 +82396,411.9799999996616,-0.055243870252870364 +82397,411.98499999966157,-0.0552438235581179 +82398,411.98999999966156,-0.05524377686322974 +82399,411.99499999966156,-0.05524373016820533 +82400,411.99999999966155,-0.05524368347304411 +82401,412.00499999966155,-0.05524363677774554 +82402,412.00999999966155,-0.055243590082309044 +82403,412.01499999966154,-0.055243543386734074 +82404,412.01999999966154,-0.05524349669102007 +82405,412.02499999966153,-0.05524344999516647 +82406,412.0299999996615,-0.055243403299172725 +82407,412.0349999996615,-0.05524335660303828 +82408,412.0399999996615,-0.05524330990676258 +82409,412.0449999996615,-0.05524326321034506 +82410,412.0499999996615,-0.05524321651378517 +82411,412.0549999996615,-0.05524316981708235 +82412,412.0599999996615,-0.05524312312023605 +82413,412.0649999996615,-0.05524307642324571 +82414,412.0699999996615,-0.055243029726110775 +82415,412.0749999996615,-0.0552429830288307 +82416,412.0799999996615,-0.05524293633140491 +82417,412.0849999996615,-0.05524288963383286 +82418,412.0899999996615,-0.055242842936114006 +82419,412.09499999966147,-0.05524279623824778 +82420,412.09999999966146,-0.055242749540233636 +82421,412.10499999966146,-0.055242702842071015 +82422,412.10999999966145,-0.05524265614375936 +82423,412.11499999966145,-0.05524260944529813 +82424,412.11999999966145,-0.055242562746686756 +82425,412.12499999966144,-0.0552425160479247 +82426,412.12999999966144,-0.055242469349011385 +82427,412.13499999966143,-0.05524242264994628 +82428,412.1399999996614,-0.05524237595072882 +82429,412.1449999996614,-0.05524232925135844 +82430,412.1499999996614,-0.05524228255183462 +82431,412.1549999996614,-0.05524223585215678 +82432,412.1599999996614,-0.055242189152324386 +82433,412.1649999996614,-0.05524214245233686 +82434,412.1699999996614,-0.05524209575219368 +82435,412.1749999996614,-0.05524204905189427 +82436,412.1799999996614,-0.05524200235143809 +82437,412.1849999996614,-0.05524195565082458 +82438,412.1899999996614,-0.0552419089500532 +82439,412.1949999996614,-0.055241862249123384 +82440,412.1999999996614,-0.0552418155480346 +82441,412.20499999966137,-0.05524176884678627 +82442,412.20999999966136,-0.05524172214537786 +82443,412.21499999966136,-0.05524167544380882 +82444,412.21999999966135,-0.05524162874207859 +82445,412.22499999966135,-0.05524158204018663 +82446,412.22999999966135,-0.05524153533813238 +82447,412.23499999966134,-0.05524148863591529 +82448,412.23999999966134,-0.055241441933534814 +82449,412.24499999966133,-0.055241395230990406 +82450,412.2499999996613,-0.055241348528281504 +82451,412.2549999996613,-0.055241301825407575 +82452,412.2599999996613,-0.05524125512236805 +82453,412.2649999996613,-0.05524120841916239 +82454,412.2699999996613,-0.05524116171579004 +82455,412.2749999996613,-0.055241115012250465 +82456,412.2799999996613,-0.05524106830854309 +82457,412.2849999996613,-0.055241021604667394 +82458,412.2899999996613,-0.05524097490062282 +82459,412.2949999996613,-0.0552409281964088 +82460,412.2999999996613,-0.0552408814920248 +82461,412.3049999996613,-0.05524083478747028 +82462,412.3099999996613,-0.05524078808274467 +82463,412.31499999966127,-0.055240741377847444 +82464,412.31999999966126,-0.055240694672778035 +82465,412.32499999966126,-0.05524064796753591 +82466,412.32999999966125,-0.055240601262120506 +82467,412.33499999966125,-0.0552405545565313 +82468,412.33999999966125,-0.055240507850767714 +82469,412.34499999966124,-0.05524046114482923 +82470,412.34999999966124,-0.05524041443871528 +82471,412.35499999966123,-0.05524036773242533 +82472,412.3599999996612,-0.05524032102595882 +82473,412.3649999996612,-0.05524027431931522 +82474,412.3699999996612,-0.05524022761249397 +82475,412.3749999996612,-0.055240180905494526 +82476,412.3799999996612,-0.05524013419831634 +82477,412.3849999996612,-0.05524008749095887 +82478,412.3899999996612,-0.055240040783421575 +82479,412.3949999996612,-0.05523999407570391 +82480,412.3999999996612,-0.0552399473678053 +82481,412.4049999996612,-0.05523990065972524 +82482,412.4099999996612,-0.055239853951463164 +82483,412.4149999996612,-0.05523980724301852 +82484,412.4199999996612,-0.05523976053439077 +82485,412.42499999966117,-0.05523971382557937 +82486,412.42999999966116,-0.05523966711658379 +82487,412.43499999966116,-0.05523962040740347 +82488,412.43999999966115,-0.05523957369803784 +82489,412.44499999966115,-0.05523952698848641 +82490,412.44999999966115,-0.05523948027874859 +82491,412.45499999966114,-0.055239433568823854 +82492,412.45999999966114,-0.05523938685871167 +82493,412.46499999966113,-0.055239340148411475 +82494,412.4699999996611,-0.05523929343792273 +82495,412.4749999996611,-0.05523924672724489 +82496,412.4799999996611,-0.05523920001637741 +82497,412.4849999996611,-0.05523915330531976 +82498,412.4899999996611,-0.055239106594071385 +82499,412.4949999996611,-0.05523905988263175 +82500,412.4999999996611,-0.055239013171000294 +82501,412.5049999996611,-0.055238966459176496 +82502,412.5099999996611,-0.0552389197471598 +82503,412.5149999996611,-0.055238873034949676 +82504,412.5199999996611,-0.05523882632254558 +82505,412.5249999996611,-0.05523877960994695 +82506,412.5299999996611,-0.05523873289715325 +82507,412.53499999966107,-0.05523868618416397 +82508,412.53999999966106,-0.055238639470978526 +82509,412.54499999966106,-0.05523859275759639 +82510,412.54999999966105,-0.055238546044017046 +82511,412.55499999966105,-0.05523849933023992 +82512,412.55999999966104,-0.055238452616264484 +82513,412.56499999966104,-0.05523840590209019 +82514,412.56999999966104,-0.05523835918771651 +82515,412.57499999966103,-0.0552383124731429 +82516,412.579999999661,-0.0552382657583688 +82517,412.584999999661,-0.05523821904339368 +82518,412.589999999661,-0.05523817232821702 +82519,412.594999999661,-0.05523812561283826 +82520,412.599999999661,-0.05523807889725687 +82521,412.604999999661,-0.055238032181472295 +82522,412.609999999661,-0.055237985465484 +82523,412.614999999661,-0.05523793874929146 +82524,412.619999999661,-0.05523789203289412 +82525,412.624999999661,-0.05523784531629146 +82526,412.629999999661,-0.05523779859948291 +82527,412.634999999661,-0.05523775188246796 +82528,412.639999999661,-0.05523770516524606 +82529,412.64499999966097,-0.05523765844781666 +82530,412.64999999966096,-0.05523761173017923 +82531,412.65499999966096,-0.055237565012333234 +82532,412.65999999966095,-0.055237518294278136 +82533,412.66499999966095,-0.05523747157601339 +82534,412.66999999966094,-0.05523742485753847 +82535,412.67499999966094,-0.05523737813885282 +82536,412.67999999966094,-0.055237331419955925 +82537,412.68499999966093,-0.055237284700847225 +82538,412.6899999996609,-0.055237237981526195 +82539,412.6949999996609,-0.055237191261992294 +82540,412.6999999996609,-0.055237144542244994 +82541,412.7049999996609,-0.05523709782228375 +82542,412.7099999996609,-0.05523705110210801 +82543,412.7149999996609,-0.05523700438171727 +82544,412.7199999996609,-0.05523695766111097 +82545,412.7249999996609,-0.05523691094028857 +82546,412.7299999996609,-0.05523686421924955 +82547,412.7349999996609,-0.05523681749799337 +82548,412.7399999996609,-0.05523677077651949 +82549,412.7449999996609,-0.05523672405482738 +82550,412.7499999996609,-0.055236677332916484 +82551,412.75499999966087,-0.05523663061078629 +82552,412.75999999966086,-0.05523658388843626 +82553,412.76499999966086,-0.055236537165865844 +82554,412.76999999966085,-0.055236490443074514 +82555,412.77499999966085,-0.05523644372006174 +82556,412.77999999966084,-0.05523639699682698 +82557,412.78499999966084,-0.05523635027336971 +82558,412.78999999966084,-0.055236303549689385 +82559,412.79499999966083,-0.05523625682578546 +82560,412.7999999996608,-0.05523621010165742 +82561,412.8049999996608,-0.055236163377304734 +82562,412.8099999996608,-0.055236116652726854 +82563,412.8149999996608,-0.05523606992792324 +82564,412.8199999996608,-0.05523602320289338 +82565,412.8249999996608,-0.05523597647763673 +82566,412.8299999996608,-0.05523592975215276 +82567,412.8349999996608,-0.05523588302644092 +82568,412.8399999996608,-0.0552358363005007 +82569,412.8449999996608,-0.05523578957433155 +82570,412.8499999996608,-0.055235742847932943 +82571,412.8549999996608,-0.05523569612130434 +82572,412.8599999996608,-0.05523564939444522 +82573,412.86499999966077,-0.05523560266735504 +82574,412.86999999966076,-0.05523555594003328 +82575,412.87499999966076,-0.055235509212479404 +82576,412.87999999966075,-0.05523546248469286 +82577,412.88499999966075,-0.05523541575667315 +82578,412.88999999966074,-0.05523536902841971 +82579,412.89499999966074,-0.05523532229993204 +82580,412.89999999966074,-0.05523527557120957 +82581,412.90499999966073,-0.0552352288422518 +82582,412.9099999996607,-0.05523518211305819 +82583,412.9149999996607,-0.0552351353836282 +82584,412.9199999996607,-0.05523508865396132 +82585,412.9249999996607,-0.05523504192405699 +82586,412.9299999996607,-0.0552349951939147 +82587,412.9349999996607,-0.05523494846353391 +82588,412.9399999996607,-0.0552349017329141 +82589,412.9449999996607,-0.05523485500205473 +82590,412.9499999996607,-0.05523480827095527 +82591,412.9549999996607,-0.05523476153961521 +82592,412.9599999996607,-0.055234714808033984 +82593,412.9649999996607,-0.055234668076211094 +82594,412.9699999996607,-0.055234621344145994 +82595,412.97499999966067,-0.05523457461183816 +82596,412.97999999966066,-0.05523452787928706 +82597,412.98499999966066,-0.05523448114649216 +82598,412.98999999966065,-0.055234434413452944 +82599,412.99499999966065,-0.05523438768016888 +82600,412.99999999966064,-0.05523434094663943 +82601,413.00499999966064,-0.05523429421286407 +82602,413.00999999966064,-0.05523424747884228 +82603,413.01499999966063,-0.05523420074457352 +82604,413.0199999996606,-0.055234154010057254 +82605,413.0249999996606,-0.055234107275292973 +82606,413.0299999996606,-0.05523406054028014 +82607,413.0349999996606,-0.05523401380501824 +82608,413.0399999996606,-0.05523396706950672 +82609,413.0449999996606,-0.05523392033374508 +82610,413.0499999996606,-0.05523387359773277 +82611,413.0549999996606,-0.05523382686146927 +82612,413.0599999996606,-0.05523378012495405 +82613,413.0649999996606,-0.055233733388186594 +82614,413.0699999996606,-0.05523368665116637 +82615,413.0749999996606,-0.055233639913892844 +82616,413.0799999996606,-0.0552335931763655 +82617,413.08499999966057,-0.055233546438583817 +82618,413.08999999966056,-0.05523349970054726 +82619,413.09499999966056,-0.0552334529622553 +82620,413.09999999966055,-0.055233406223707406 +82621,413.10499999966055,-0.055233359484903065 +82622,413.10999999966054,-0.05523331274584174 +82623,413.11499999966054,-0.055233266006522924 +82624,413.11999999966054,-0.05523321926694608 +82625,413.12499999966053,-0.05523317252711067 +82626,413.1299999996605,-0.05523312578701618 +82627,413.1349999996605,-0.05523307904666209 +82628,413.1399999996605,-0.055233032306047876 +82629,413.1449999996605,-0.05523298556517301 +82630,413.1499999996605,-0.055232938824036966 +82631,413.1549999996605,-0.055232892082639214 +82632,413.1599999996605,-0.05523284534097923 +82633,413.1649999996605,-0.0552327985990565 +82634,413.1699999996605,-0.05523275185687048 +82635,413.1749999996605,-0.05523270511442067 +82636,413.1799999996605,-0.05523265837170654 +82637,413.1849999996605,-0.05523261162872756 +82638,413.1899999996605,-0.05523256488548321 +82639,413.19499999966047,-0.055232518141972976 +82640,413.19999999966046,-0.055232471398196314 +82641,413.20499999966046,-0.05523242465415271 +82642,413.20999999966045,-0.055232377909841646 +82643,413.21499999966045,-0.05523233116526261 +82644,413.21999999966044,-0.055232284420415056 +82645,413.22499999966044,-0.055232237675298466 +82646,413.22999999966044,-0.05523219092991232 +82647,413.23499999966043,-0.055232144184256114 +82648,413.2399999996604,-0.055232097438329304 +82649,413.2449999996604,-0.055232050692131385 +82650,413.2499999996604,-0.055232003945661814 +82651,413.2549999996604,-0.05523195719892009 +82652,413.2599999996604,-0.05523191045190566 +82653,413.2649999996604,-0.05523186370461804 +82654,413.2699999996604,-0.05523181695705668 +82655,413.2749999996604,-0.055231770209221084 +82656,413.2799999996604,-0.05523172346111072 +82657,413.2849999996604,-0.05523167671272506 +82658,413.2899999996604,-0.055231629964063604 +82659,413.2949999996604,-0.05523158321512579 +82660,413.2999999996604,-0.05523153646591115 +82661,413.30499999966037,-0.055231489716419134 +82662,413.30999999966036,-0.055231442966649225 +82663,413.31499999966036,-0.0552313962166009 +82664,413.31999999966035,-0.055231349466273644 +82665,413.32499999966035,-0.05523130271566693 +82666,413.32999999966034,-0.05523125596478025 +82667,413.33499999966034,-0.05523120921361307 +82668,413.33999999966034,-0.05523116246216489 +82669,413.34499999966033,-0.05523111571043518 +82670,413.3499999996603,-0.055231068958423425 +82671,413.3549999996603,-0.0552310222061291 +82672,413.3599999996603,-0.05523097545355168 +82673,413.3649999996603,-0.05523092870069067 +82674,413.3699999996603,-0.05523088194754553 +82675,413.3749999996603,-0.05523083519411574 +82676,413.3799999996603,-0.0552307884404008 +82677,413.3849999996603,-0.05523074168640018 +82678,413.3899999996603,-0.05523069493211337 +82679,413.3949999996603,-0.05523064817753984 +82680,413.3999999996603,-0.055230601422679076 +82681,413.4049999996603,-0.055230554667530574 +82682,413.4099999996603,-0.0552305079120938 +82683,413.41499999966027,-0.05523046115636824 +82684,413.41999999966026,-0.05523041440035338 +82685,413.42499999966026,-0.05523036764404871 +82686,413.42999999966025,-0.0552303208874537 +82687,413.43499999966025,-0.05523027413056784 +82688,413.43999999966024,-0.0552302273733906 +82689,413.44499999966024,-0.0552301806159215 +82690,413.44999999966024,-0.05523013385815999 +82691,413.45499999966023,-0.05523008710010557 +82692,413.4599999996602,-0.0552300403417577 +82693,413.4649999996602,-0.05522999358311589 +82694,413.4699999996602,-0.05522994682417961 +82695,413.4749999996602,-0.05522990006494836 +82696,413.4799999996602,-0.0552298533054216 +82697,413.4849999996602,-0.055229806545598836 +82698,413.4899999996602,-0.055229759785479546 +82699,413.4949999996602,-0.05522971302506322 +82700,413.4999999996602,-0.05522966626434934 +82701,413.5049999996602,-0.05522961950333738 +82702,413.5099999996602,-0.05522957274202683 +82703,413.5149999996602,-0.05522952598041719 +82704,413.5199999996602,-0.05522947921850793 +82705,413.52499999966017,-0.055229432456298556 +82706,413.52999999966016,-0.05522938569378853 +82707,413.53499999966016,-0.05522933893097735 +82708,413.53999999966015,-0.055229292167864485 +82709,413.54499999966015,-0.05522924540444944 +82710,413.54999999966014,-0.05522919864073171 +82711,413.55499999966014,-0.05522915187671076 +82712,413.55999999966014,-0.05522910511238608 +82713,413.56499999966013,-0.05522905834775716 +82714,413.5699999996601,-0.055229011582823506 +82715,413.5749999996601,-0.05522896481758457 +82716,413.5799999996601,-0.05522891805203986 +82717,413.5849999996601,-0.05522887128618886 +82718,413.5899999996601,-0.05522882452003107 +82719,413.5949999996601,-0.055228777753565966 +82720,413.5999999996601,-0.055228730986793026 +82721,413.6049999996601,-0.055228684219711756 +82722,413.6099999996601,-0.05522863745232162 +82723,413.6149999996601,-0.05522859068462214 +82724,413.6199999996601,-0.05522854391661278 +82725,413.6249999996601,-0.05522849714829303 +82726,413.6299999996601,-0.05522845037966239 +82727,413.63499999966007,-0.05522840361072034 +82728,413.63999999966006,-0.05522835684146637 +82729,413.64499999966006,-0.05522831007189997 +82730,413.64999999966005,-0.05522826330202062 +82731,413.65499999966005,-0.05522821653182783 +82732,413.65999999966004,-0.05522816976132107 +82733,413.66499999966004,-0.05522812299049984 +82734,413.66999999966004,-0.05522807621936363 +82735,413.67499999966003,-0.05522802944791192 +82736,413.67999999966,-0.05522798267614421 +82737,413.68499999966,-0.05522793590405999 +82738,413.68999999966,-0.05522788913165874 +82739,413.69499999966,-0.05522784235893997 +82740,413.69999999966,-0.055227795585903156 +82741,413.70499999966,-0.05522774881254777 +82742,413.70999999966,-0.055227702038873346 +82743,413.71499999966,-0.05522765526487935 +82744,413.71999999966,-0.05522760849056526 +82745,413.72499999966,-0.055227561715930594 +82746,413.72999999966,-0.05522751494097483 +82747,413.73499999966,-0.05522746816569746 +82748,413.73999999966,-0.055227421390097974 +82749,413.74499999965997,-0.05522737461417586 +82750,413.74999999965996,-0.05522732783793062 +82751,413.75499999965996,-0.05522728106136174 +82752,413.75999999965995,-0.05522723428446872 +82753,413.76499999965995,-0.055227187507251044 +82754,413.76999999965994,-0.05522714072970821 +82755,413.77499999965994,-0.05522709395183971 +82756,413.77999999965994,-0.05522704717364502 +82757,413.78499999965993,-0.055227000395123654 +82758,413.7899999996599,-0.055226953616275096 +82759,413.7949999996599,-0.055226906837098855 +82760,413.7999999996599,-0.0552268600575944 +82761,413.8049999996599,-0.05522681327776122 +82762,413.8099999996599,-0.05522676649759885 +82763,413.8149999996599,-0.055226719717106736 +82764,413.8199999996599,-0.0552266729362844 +82765,413.8249999996599,-0.05522662615513133 +82766,413.8299999996599,-0.055226579373647014 +82767,413.8349999996599,-0.05522653259183095 +82768,413.8399999996599,-0.05522648580968263 +82769,413.8449999996599,-0.05522643902720155 +82770,413.8499999996599,-0.05522639224438721 +82771,413.85499999965987,-0.055226345461239106 +82772,413.85999999965986,-0.05522629867775672 +82773,413.86499999965986,-0.05522625189393955 +82774,413.86999999965985,-0.05522620510978709 +82775,413.87499999965985,-0.05522615832529884 +82776,413.87999999965984,-0.055226111540474306 +82777,413.88499999965984,-0.05522606475531298 +82778,413.88999999965984,-0.055226017969814335 +82779,413.89499999965983,-0.055225971183977894 +82780,413.8999999996598,-0.055225924397803126 +82781,413.9049999996598,-0.055225877611289546 +82782,413.9099999996598,-0.055225830824436654 +82783,413.9149999996598,-0.055225784037243944 +82784,413.9199999996598,-0.05522573724971089 +82785,413.9249999996598,-0.05522569046183701 +82786,413.9299999996598,-0.05522564367362179 +82787,413.9349999996598,-0.055225596885064746 +82788,413.9399999996598,-0.05522555009616535 +82789,413.9449999996598,-0.055225503306923114 +82790,413.9499999996598,-0.05522545651733753 +82791,413.9549999996598,-0.05522540972740811 +82792,413.9599999996598,-0.05522536293713432 +82793,413.96499999965977,-0.0552253161465157 +82794,413.96999999965976,-0.05522526935555171 +82795,413.97499999965976,-0.05522522256424186 +82796,413.97999999965975,-0.055225175772585657 +82797,413.98499999965975,-0.055225128980582586 +82798,413.98999999965974,-0.055225082188232154 +82799,413.99499999965974,-0.055225035395533854 +82800,413.99999999965974,-0.05522498860248719 +82801,414.00499999965973,-0.05522494180909166 +82802,414.0099999996597,-0.05522489501534676 +82803,414.0149999996597,-0.05522484822125199 +82804,414.0199999996597,-0.05522480142680685 +82805,414.0249999996597,-0.055224754632010827 +82806,414.0299999996597,-0.055224707836863444 +82807,414.0349999996597,-0.055224661041364184 +82808,414.0399999996597,-0.05522461424551255 +82809,414.0449999996597,-0.05522456744930806 +82810,414.0499999996597,-0.05522452065275017 +82811,414.0549999996597,-0.055224473855838424 +82812,414.0599999996597,-0.055224427058572306 +82813,414.0649999996597,-0.055224380260951306 +82814,414.0699999996597,-0.05522433346297493 +82815,414.07499999965967,-0.05522428666464268 +82816,414.07999999965966,-0.05522423986595406 +82817,414.08499999965966,-0.05522419306690857 +82818,414.08999999965965,-0.05522414626750572 +82819,414.09499999965965,-0.055224099467744994 +82820,414.09999999965964,-0.0552240526676259 +82821,414.10499999965964,-0.055224005867147936 +82822,414.10999999965964,-0.05522395906631061 +82823,414.11499999965963,-0.05522391226511343 +82824,414.1199999996596,-0.055223865463555885 +82825,414.1249999996596,-0.05522381866163747 +82826,414.1299999996596,-0.0552237718593577 +82827,414.1349999996596,-0.05522372505671608 +82828,414.1399999996596,-0.0552236782537121 +82829,414.1449999996596,-0.05522363145034527 +82830,414.1499999996596,-0.055223584646615094 +82831,414.1549999996596,-0.05522353784252107 +82832,414.1599999996596,-0.055223491038062705 +82833,414.1649999996596,-0.05522344423323951 +82834,414.1699999996596,-0.05522339742805098 +82835,414.1749999996596,-0.0552233506224966 +82836,414.1799999996596,-0.05522330381657589 +82837,414.18499999965957,-0.055223257010288365 +82838,414.18999999965956,-0.055223210203633515 +82839,414.19499999965956,-0.05522316339661085 +82840,414.19999999965955,-0.055223116589219856 +82841,414.20499999965955,-0.055223069781460056 +82842,414.20999999965954,-0.05522302297333094 +82843,414.21499999965954,-0.05522297616483204 +82844,414.21999999965954,-0.05522292935596282 +82845,414.22499999965953,-0.055222882546722814 +82846,414.2299999996595,-0.05522283573711152 +82847,414.2349999996595,-0.05522278892712845 +82848,414.2399999996595,-0.05522274211677309 +82849,414.2449999996595,-0.055222695306044955 +82850,414.2499999996595,-0.05522264849494356 +82851,414.2549999996595,-0.05522260168346838 +82852,414.2599999996595,-0.05522255487161896 +82853,414.2649999996595,-0.05522250805939477 +82854,414.2699999996595,-0.05522246124679535 +82855,414.2749999996595,-0.05522241443382018 +82856,414.2799999996595,-0.055222367620468775 +82857,414.2849999996595,-0.055222320806740645 +82858,414.28999999965947,-0.05522227399263528 +82859,414.29499999965947,-0.055222227178152214 +82860,414.29999999965946,-0.05522218036329092 +82861,414.30499999965946,-0.055222133548050924 +82862,414.30999999965945,-0.05522208673243174 +82863,414.31499999965945,-0.05522203991643285 +82864,414.31999999965944,-0.05522199310005378 +82865,414.32499999965944,-0.05522194628329405 +82866,414.32999999965944,-0.055221899466153135 +82867,414.33499999965943,-0.05522185264863056 +82868,414.3399999996594,-0.05522180583072584 +82869,414.3449999996594,-0.05522175901243847 +82870,414.3499999996594,-0.05522171219376796 +82871,414.3549999996594,-0.055221665374713826 +82872,414.3599999996594,-0.055221618555275555 +82873,414.3649999996594,-0.05522157173545269 +82874,414.3699999996594,-0.0552215249152447 +82875,414.3749999996594,-0.05522147809465112 +82876,414.3799999996594,-0.05522143127367144 +82877,414.3849999996594,-0.05522138445230519 +82878,414.3899999996594,-0.05522133763055187 +82879,414.3949999996594,-0.05522129080841098 +82880,414.39999999965937,-0.05522124398588204 +82881,414.40499999965937,-0.05522119716296456 +82882,414.40999999965936,-0.05522115033965804 +82883,414.41499999965936,-0.055221103515962 +82884,414.41999999965935,-0.05522105669187594 +82885,414.42499999965935,-0.055221009867399376 +82886,414.42999999965934,-0.05522096304253182 +82887,414.43499999965934,-0.05522091621727277 +82888,414.43999999965934,-0.05522086939162175 +82889,414.44499999965933,-0.05522082256557826 +82890,414.4499999996593,-0.05522077573914182 +82891,414.4549999996593,-0.05522072891231193 +82892,414.4599999996593,-0.0552206820850881 +82893,414.4649999996593,-0.055220635257469855 +82894,414.4699999996593,-0.0552205884294567 +82895,414.4749999996593,-0.05522054160104814 +82896,414.4799999996593,-0.0552204947722437 +82897,414.4849999996593,-0.05522044794304287 +82898,414.4899999996593,-0.05522040111344518 +82899,414.4949999996593,-0.05522035428345014 +82900,414.4999999996593,-0.05522030745305725 +82901,414.5049999996593,-0.055220260622266024 +82902,414.50999999965927,-0.05522021379107598 +82903,414.51499999965927,-0.05522016695948664 +82904,414.51999999965926,-0.05522012012749748 +82905,414.52499999965926,-0.05522007329510805 +82906,414.52999999965925,-0.05522002646231785 +82907,414.53499999965925,-0.055219979629126385 +82908,414.53999999965924,-0.05521993279553318 +82909,414.54499999965924,-0.055219885961537755 +82910,414.54999999965924,-0.05521983912713961 +82911,414.55499999965923,-0.05521979229233824 +82912,414.5599999996592,-0.055219745457133186 +82913,414.5649999996592,-0.05521969862152396 +82914,414.5699999996592,-0.05521965178551007 +82915,414.5749999996592,-0.05521960494909102 +82916,414.5799999996592,-0.05521955811226633 +82917,414.5849999996592,-0.055219511275035514 +82918,414.5899999996592,-0.055219464437398086 +82919,414.5949999996592,-0.05521941759935357 +82920,414.5999999996592,-0.05521937076090146 +82921,414.6049999996592,-0.055219323922041284 +82922,414.6099999996592,-0.055219277082772564 +82923,414.6149999996592,-0.0552192302430948 +82924,414.61999999965917,-0.05521918340300752 +82925,414.62499999965917,-0.05521913656251023 +82926,414.62999999965916,-0.05521908972160244 +82927,414.63499999965916,-0.05521904288028368 +82928,414.63999999965915,-0.05521899603855346 +82929,414.64499999965915,-0.055218949196411286 +82930,414.64999999965914,-0.05521890235385668 +82931,414.65499999965914,-0.055218855510889155 +82932,414.65999999965914,-0.055218808667508244 +82933,414.66499999965913,-0.055218761823713436 +82934,414.6699999996591,-0.05521871497950427 +82935,414.6749999996591,-0.055218668134880244 +82936,414.6799999996591,-0.05521862128984088 +82937,414.6849999996591,-0.05521857444438571 +82938,414.6899999996591,-0.05521852759851423 +82939,414.6949999996591,-0.055218480752225955 +82940,414.6999999996591,-0.05521843390552043 +82941,414.7049999996591,-0.05521838705839714 +82942,414.7099999996591,-0.05521834021085563 +82943,414.7149999996591,-0.055218293362895396 +82944,414.7199999996591,-0.055218246514515956 +82945,414.7249999996591,-0.05521819966571684 +82946,414.72999999965907,-0.055218152816497564 +82947,414.73499999965907,-0.05521810596685764 +82948,414.73999999965906,-0.05521805911679658 +82949,414.74499999965906,-0.05521801226631392 +82950,414.74999999965905,-0.055217965415409166 +82951,414.75499999965905,-0.05521791856408184 +82952,414.75999999965904,-0.05521787171233146 +82953,414.76499999965904,-0.055217824860157534 +82954,414.76999999965903,-0.05521777800755959 +82955,414.77499999965903,-0.055217731154537146 +82956,414.779999999659,-0.05521768430108973 +82957,414.784999999659,-0.05521763744721685 +82958,414.789999999659,-0.05521759059291803 +82959,414.794999999659,-0.055217543738192786 +82960,414.799999999659,-0.05521749688304064 +82961,414.804999999659,-0.05521745002746111 +82962,414.809999999659,-0.05521740317145371 +82963,414.814999999659,-0.055217356315017965 +82964,414.819999999659,-0.05521730945815341 +82965,414.824999999659,-0.055217262600859546 +82966,414.829999999659,-0.05521721574313589 +82967,414.834999999659,-0.05521716888498199 +82968,414.83999999965897,-0.055217122026397336 +82969,414.84499999965897,-0.05521707516738145 +82970,414.84999999965896,-0.055217028307933874 +82971,414.85499999965896,-0.05521698144805411 +82972,414.85999999965895,-0.05521693458774169 +82973,414.86499999965895,-0.055216887726996136 +82974,414.86999999965894,-0.05521684086581696 +82975,414.87499999965894,-0.05521679400420369 +82976,414.87999999965893,-0.05521674714215585 +82977,414.88499999965893,-0.055216700279672966 +82978,414.8899999996589,-0.05521665341675454 +82979,414.8949999996589,-0.0552166065534001 +82980,414.8999999996589,-0.055216559689609174 +82981,414.9049999996589,-0.055216512825381286 +82982,414.9099999996589,-0.055216465960715964 +82983,414.9149999996589,-0.05521641909561272 +82984,414.9199999996589,-0.05521637223007107 +82985,414.9249999996589,-0.05521632536409055 +82986,414.9299999996589,-0.05521627849767069 +82987,414.9349999996589,-0.055216231630810984 +82988,414.9399999996589,-0.055216184763510985 +82989,414.9449999996589,-0.05521613789577019 +82990,414.94999999965887,-0.05521609102758815 +82991,414.95499999965887,-0.05521604415896437 +82992,414.95999999965886,-0.05521599728989837 +82993,414.96499999965886,-0.05521595042038969 +82994,414.96999999965885,-0.055215903550437845 +82995,414.97499999965885,-0.05521585668004235 +82996,414.97999999965884,-0.05521580980920275 +82997,414.98499999965884,-0.05521576293791856 +82998,414.98999999965883,-0.05521571606618929 +82999,414.99499999965883,-0.05521566919401448 +83000,414.9999999996588,-0.055215622321393654 +83001,415.0049999996588,-0.05521557544832634 +83002,415.0099999996588,-0.055215528574812045 +83003,415.0149999996588,-0.055215481700850305 +83004,415.0199999996588,-0.05521543482644066 +83005,415.0249999996588,-0.055215387951582616 +83006,415.0299999996588,-0.055215341076275695 +83007,415.0349999996588,-0.05521529420051944 +83008,415.0399999996588,-0.05521524732431337 +83009,415.0449999996588,-0.055215200447657 +83010,415.0499999996588,-0.05521515357054986 +83011,415.0549999996588,-0.055215106692991484 +83012,415.05999999965877,-0.055215059814981406 +83013,415.06499999965877,-0.055215012936519134 +83014,415.06999999965876,-0.05521496605760419 +83015,415.07499999965876,-0.055214919178236115 +83016,415.07999999965875,-0.05521487229841444 +83017,415.08499999965875,-0.05521482541813867 +83018,415.08999999965874,-0.05521477853740835 +83019,415.09499999965874,-0.05521473165622301 +83020,415.09999999965873,-0.05521468477458217 +83021,415.10499999965873,-0.055214637892485346 +83022,415.1099999996587,-0.05521459100993208 +83023,415.1149999996587,-0.055214544126921894 +83024,415.1199999996587,-0.05521449724345432 +83025,415.1249999996587,-0.055214450359528884 +83026,415.1299999996587,-0.05521440347514512 +83027,415.1349999996587,-0.05521435659030254 +83028,415.1399999996587,-0.055214309705000686 +83029,415.1449999996587,-0.05521426281923908 +83030,415.1499999996587,-0.05521421593301726 +83031,415.1549999996587,-0.055214169046334735 +83032,415.1599999996587,-0.055214122159191054 +83033,415.1649999996587,-0.05521407527158573 +83034,415.16999999965867,-0.0552140283835183 +83035,415.17499999965867,-0.05521398149498829 +83036,415.17999999965866,-0.05521393460599523 +83037,415.18499999965866,-0.05521388771653865 +83038,415.18999999965865,-0.05521384082661808 +83039,415.19499999965865,-0.05521379393623305 +83040,415.19999999965864,-0.05521374704538309 +83041,415.20499999965864,-0.05521370015406772 +83042,415.20999999965863,-0.055213653262286486 +83043,415.21499999965863,-0.05521360637003891 +83044,415.2199999996586,-0.05521355947732452 +83045,415.2249999996586,-0.05521351258414285 +83046,415.2299999996586,-0.055213465690493436 +83047,415.2349999996586,-0.05521341879637579 +83048,415.2399999996586,-0.05521337190178946 +83049,415.2449999996586,-0.05521332500673397 +83050,415.2499999996586,-0.05521327811120885 +83051,415.2549999996586,-0.05521323121521364 +83052,415.2599999996586,-0.05521318431874787 +83053,415.2649999996586,-0.055213137421811054 +83054,415.2699999996586,-0.05521309052440274 +83055,415.2749999996586,-0.05521304362652246 +83056,415.27999999965857,-0.055212996728169726 +83057,415.28499999965857,-0.0552129498293441 +83058,415.28999999965856,-0.05521290293004509 +83059,415.29499999965856,-0.055212856030272234 +83060,415.29999999965855,-0.05521280913002507 +83061,415.30499999965855,-0.055212762229303124 +83062,415.30999999965854,-0.055212715328105934 +83063,415.31499999965854,-0.05521266842643303 +83064,415.31999999965853,-0.05521262152428393 +83065,415.32499999965853,-0.05521257462165819 +83066,415.3299999996585,-0.05521252771855534 +83067,415.3349999996585,-0.055212480814974894 +83068,415.3399999996585,-0.0552124339109164 +83069,415.3449999996585,-0.055212387006379406 +83070,415.3499999996585,-0.05521234010136341 +83071,415.3549999996585,-0.05521229319586797 +83072,415.3599999996585,-0.05521224628989262 +83073,415.3649999996585,-0.05521219938343688 +83074,415.3699999996585,-0.05521215247650029 +83075,415.3749999996585,-0.0552121055690824 +83076,415.3799999996585,-0.05521205866118271 +83077,415.3849999996585,-0.05521201175280078 +83078,415.38999999965847,-0.055211964843936145 +83079,415.39499999965847,-0.05521191793458833 +83080,415.39999999965846,-0.05521187102475687 +83081,415.40499999965846,-0.05521182411444132 +83082,415.40999999965845,-0.05521177720364118 +83083,415.41499999965845,-0.055211730292355994 +83084,415.41999999965844,-0.05521168338058532 +83085,415.42499999965844,-0.05521163646832866 +83086,415.42999999965843,-0.05521158955558559 +83087,415.43499999965843,-0.05521154264235561 +83088,415.4399999996584,-0.05521149572863827 +83089,415.4449999996584,-0.055211448814433114 +83090,415.4499999996584,-0.05521140189973967 +83091,415.4549999996584,-0.055211354984557474 +83092,415.4599999996584,-0.05521130806888606 +83093,415.4649999996584,-0.05521126115272496 +83094,415.4699999996584,-0.05521121423607372 +83095,415.4749999996584,-0.05521116731893187 +83096,415.4799999996584,-0.055211120401298955 +83097,415.4849999996584,-0.0552110734831745 +83098,415.4899999996584,-0.055211026564558056 +83099,415.4949999996584,-0.055210979645449146 +83100,415.49999999965837,-0.0552109327258473 +83101,415.50499999965837,-0.055210885805752084 +83102,415.50999999965836,-0.05521083888516302 +83103,415.51499999965836,-0.05521079196407963 +83104,415.51999999965835,-0.05521074504250149 +83105,415.52499999965835,-0.055210698120428094 +83106,415.52999999965834,-0.055210651197859006 +83107,415.53499999965834,-0.05521060427479377 +83108,415.53999999965833,-0.0552105573512319 +83109,415.54499999965833,-0.05521051042717295 +83110,415.5499999996583,-0.05521046350261645 +83111,415.5549999996583,-0.05521041657756195 +83112,415.5599999996583,-0.05521036965200898 +83113,415.5649999996583,-0.055210322725957085 +83114,415.5699999996583,-0.055210275799405795 +83115,415.5749999996583,-0.05521022887235466 +83116,415.5799999996583,-0.05521018194480321 +83117,415.5849999996583,-0.055210135016751 +83118,415.5899999996583,-0.05521008808819754 +83119,415.5949999996583,-0.055210041159142395 +83120,415.5999999996583,-0.05520999422958509 +83121,415.6049999996583,-0.055209947299525185 +83122,415.60999999965827,-0.05520990036896219 +83123,415.61499999965827,-0.055209853437895674 +83124,415.61999999965826,-0.055209806506325156 +83125,415.62499999965826,-0.055209759574250186 +83126,415.62999999965825,-0.055209712641670294 +83127,415.63499999965825,-0.055209665708585036 +83128,415.63999999965824,-0.055209618774993946 +83129,415.64499999965824,-0.05520957184089656 +83130,415.64999999965823,-0.05520952490629243 +83131,415.65499999965823,-0.05520947797118109 +83132,415.6599999996582,-0.05520943103556208 +83133,415.6649999996582,-0.05520938409943495 +83134,415.6699999996582,-0.055209337162799216 +83135,415.6749999996582,-0.05520929022565444 +83136,415.6799999996582,-0.05520924328800017 +83137,415.6849999996582,-0.05520919634983593 +83138,415.6899999996582,-0.05520914941116128 +83139,415.6949999996582,-0.05520910247197574 +83140,415.6999999996582,-0.05520905553227887 +83141,415.7049999996582,-0.05520900859207021 +83142,415.7099999996582,-0.0552089616513493 +83143,415.7149999996582,-0.05520891471011568 +83144,415.71999999965817,-0.05520886776836889 +83145,415.72499999965817,-0.05520882082610848 +83146,415.72999999965816,-0.05520877388333399 +83147,415.73499999965816,-0.05520872694004497 +83148,415.73999999965815,-0.05520867999624095 +83149,415.74499999965815,-0.05520863305192147 +83150,415.74999999965814,-0.055208586107086094 +83151,415.75499999965814,-0.05520853916173435 +83152,415.75999999965813,-0.05520849221586579 +83153,415.76499999965813,-0.05520844526947994 +83154,415.7699999996581,-0.05520839832257636 +83155,415.7749999996581,-0.05520835137515459 +83156,415.7799999996581,-0.05520830442721419 +83157,415.7849999996581,-0.05520825747875468 +83158,415.7899999996581,-0.0552082105297756 +83159,415.7949999996581,-0.05520816358027652 +83160,415.7999999996581,-0.055208116630256966 +83161,415.8049999996581,-0.05520806967971649 +83162,415.8099999996581,-0.05520802272865464 +83163,415.8149999996581,-0.055207975777070956 +83164,415.8199999996581,-0.05520792882496498 +83165,415.8249999996581,-0.05520788187233626 +83166,415.82999999965807,-0.05520783491918435 +83167,415.83499999965807,-0.055207787965508785 +83168,415.83999999965806,-0.05520774101130911 +83169,415.84499999965806,-0.05520769405658487 +83170,415.84999999965805,-0.055207647101335626 +83171,415.85499999965805,-0.055207600145560906 +83172,415.85999999965804,-0.05520755318926025 +83173,415.86499999965804,-0.055207506232433236 +83174,415.86999999965803,-0.055207459275079376 +83175,415.87499999965803,-0.05520741231719824 +83176,415.879999999658,-0.05520736535878936 +83177,415.884999999658,-0.05520731839985228 +83178,415.889999999658,-0.05520727144038656 +83179,415.894999999658,-0.055207224480391746 +83180,415.899999999658,-0.05520717751986739 +83181,415.904999999658,-0.055207130558813024 +83182,415.909999999658,-0.055207083597228195 +83183,415.914999999658,-0.055207036635112464 +83184,415.919999999658,-0.05520698967246536 +83185,415.924999999658,-0.05520694270928644 +83186,415.929999999658,-0.05520689574557525 +83187,415.934999999658,-0.05520684878133135 +83188,415.93999999965797,-0.055206801816554275 +83189,415.94499999965797,-0.055206754851243586 +83190,415.94999999965796,-0.05520670788539882 +83191,415.95499999965796,-0.05520666091901951 +83192,415.95999999965795,-0.055206613952105243 +83193,415.96499999965795,-0.055206566984655536 +83194,415.96999999965794,-0.05520652001666996 +83195,415.97499999965794,-0.05520647304814804 +83196,415.97999999965793,-0.05520642607908934 +83197,415.98499999965793,-0.055206379109493414 +83198,415.9899999996579,-0.05520633213935979 +83199,415.9949999996579,-0.05520628516868803 +83200,415.9999999996579,-0.05520623819747769 +83201,416.0049999996579,-0.055206191225728306 +83202,416.0099999996579,-0.055206144253439435 +83203,416.0149999996579,-0.055206097280610635 +83204,416.0199999996579,-0.05520605030724144 +83205,416.0249999996579,-0.05520600333333141 +83206,416.0299999996579,-0.0552059563588801 +83207,416.0349999996579,-0.055205909383887045 +83208,416.0399999996579,-0.055205862408351805 +83209,416.0449999996579,-0.05520581543227394 +83210,416.04999999965787,-0.055205768455652976 +83211,416.05499999965787,-0.05520572147848847 +83212,416.05999999965786,-0.05520567450077999 +83213,416.06499999965786,-0.055205627522527084 +83214,416.06999999965785,-0.05520558054372928 +83215,416.07499999965785,-0.05520553356438616 +83216,416.07999999965784,-0.055205486584497254 +83217,416.08499999965784,-0.05520543960406212 +83218,416.08999999965783,-0.055205392623080315 +83219,416.09499999965783,-0.05520534564155139 +83220,416.0999999996578,-0.05520529865947488 +83221,416.1049999996578,-0.05520525167685035 +83222,416.1099999996578,-0.05520520469367736 +83223,416.1149999996578,-0.055205157709955446 +83224,416.1199999996578,-0.05520511072568417 +83225,416.1249999996578,-0.055205063740863085 +83226,416.1299999996578,-0.05520501675549174 +83227,416.1349999996578,-0.055204969769569685 +83228,416.1399999996578,-0.05520492278309648 +83229,416.1449999996578,-0.055204875796071674 +83230,416.1499999996578,-0.055204828808494824 +83231,416.1549999996578,-0.05520478182036547 +83232,416.15999999965777,-0.055204734831683186 +83233,416.16499999965777,-0.055204687842447496 +83234,416.16999999965776,-0.05520464085265799 +83235,416.17499999965776,-0.0552045938623142 +83236,416.17999999965775,-0.055204546871415676 +83237,416.18499999965775,-0.055204499879961975 +83238,416.18999999965774,-0.05520445288795266 +83239,416.19499999965774,-0.05520440589538728 +83240,416.19999999965773,-0.055204358902265396 +83241,416.20499999965773,-0.055204311908586545 +83242,416.2099999996577,-0.05520426491435031 +83243,416.2149999996577,-0.0552042179195562 +83244,416.2199999996577,-0.05520417092420381 +83245,416.2249999996577,-0.05520412392829267 +83246,416.2299999996577,-0.055204076931822374 +83247,416.2349999996577,-0.05520402993479243 +83248,416.2399999996577,-0.055203982937202425 +83249,416.2449999996577,-0.0552039359390519 +83250,416.2499999996577,-0.05520388894034041 +83251,416.2549999996577,-0.05520384194106751 +83252,416.2599999996577,-0.05520379494123276 +83253,416.2649999996577,-0.05520374794083571 +83254,416.26999999965767,-0.05520370093987593 +83255,416.27499999965767,-0.055203653938352956 +83256,416.27999999965766,-0.05520360693626637 +83257,416.28499999965766,-0.05520355993361571 +83258,416.28999999965765,-0.05520351293040054 +83259,416.29499999965765,-0.0552034659266204 +83260,416.29999999965764,-0.055203418922274865 +83261,416.30499999965764,-0.055203371917363485 +83262,416.30999999965763,-0.055203324911885815 +83263,416.31499999965763,-0.05520327790584142 +83264,416.3199999996576,-0.055203230899229835 +83265,416.3249999996576,-0.055203183892050645 +83266,416.3299999996576,-0.05520313688430341 +83267,416.3349999996576,-0.05520308987598766 +83268,416.3399999996576,-0.05520304286710297 +83269,416.3449999996576,-0.05520299585764889 +83270,416.3499999996576,-0.05520294884762498 +83271,416.3549999996576,-0.05520290183703081 +83272,416.3599999996576,-0.05520285482586591 +83273,416.3649999996576,-0.05520280781412987 +83274,416.3699999996576,-0.05520276080182222 +83275,416.3749999996576,-0.05520271378894255 +83276,416.37999999965757,-0.055202666775490385 +83277,416.38499999965757,-0.0552026197614653 +83278,416.38999999965756,-0.055202572746866865 +83279,416.39499999965756,-0.055202525731694624 +83280,416.39999999965755,-0.05520247871594813 +83281,416.40499999965755,-0.05520243169962696 +83282,416.40999999965754,-0.05520238468273066 +83283,416.41499999965754,-0.0552023376652588 +83284,416.41999999965753,-0.05520229064721093 +83285,416.42499999965753,-0.05520224362858662 +83286,416.4299999996575,-0.05520219660938541 +83287,416.4349999996575,-0.055202149589606876 +83288,416.4399999996575,-0.05520210256925057 +83289,416.4449999996575,-0.055202055548316066 +83290,416.4499999996575,-0.05520200852680292 +83291,416.4549999996575,-0.05520196150471067 +83292,416.4599999996575,-0.0552019144820389 +83293,416.4649999996575,-0.05520186745878716 +83294,416.4699999996575,-0.05520182043495503 +83295,416.4749999996575,-0.05520177341054205 +83296,416.4799999996575,-0.05520172638554779 +83297,416.4849999996575,-0.05520167935997179 +83298,416.48999999965747,-0.05520163233381364 +83299,416.49499999965747,-0.05520158530707289 +83300,416.49999999965746,-0.0552015382797491 +83301,416.50499999965746,-0.05520149125184183 +83302,416.50999999965745,-0.05520144422335065 +83303,416.51499999965745,-0.055201397194275116 +83304,416.51999999965744,-0.0552013501646148 +83305,416.52499999965744,-0.05520130313436924 +83306,416.52999999965743,-0.055201256103538016 +83307,416.53499999965743,-0.05520120907212068 +83308,416.5399999996574,-0.0552011620401168 +83309,416.5449999996574,-0.05520111500752594 +83310,416.5499999996574,-0.055201067974347665 +83311,416.5549999996574,-0.05520102094058153 +83312,416.5599999996574,-0.05520097390622711 +83313,416.5649999996574,-0.05520092687128395 +83314,416.5699999996574,-0.055200879835751636 +83315,416.5749999996574,-0.05520083279962971 +83316,416.5799999996574,-0.055200785762917745 +83317,416.5849999996574,-0.055200738725615296 +83318,416.5899999996574,-0.055200691687721945 +83319,416.5949999996574,-0.055200644649237234 +83320,416.59999999965737,-0.055200597610160745 +83321,416.60499999965737,-0.05520055057049203 +83322,416.60999999965736,-0.05520050353023065 +83323,416.61499999965736,-0.05520045648937618 +83324,416.61999999965735,-0.05520040944792818 +83325,416.62499999965735,-0.05520036240588621 +83326,416.62999999965734,-0.05520031536324985 +83327,416.63499999965734,-0.05520026832001864 +83328,416.63999999965733,-0.05520022127619215 +83329,416.64499999965733,-0.05520017423176996 +83330,416.6499999996573,-0.05520012718675163 +83331,416.6549999996573,-0.055200080141136726 +83332,416.6599999996573,-0.05520003309492481 +83333,416.6649999996573,-0.055199986048115435 +83334,416.6699999996573,-0.05519993900070819 +83335,416.6749999996573,-0.05519989195270262 +83336,416.6799999996573,-0.0551998449040983 +83337,416.6849999996573,-0.055199797854894796 +83338,416.6899999996573,-0.055199750805091666 +83339,416.6949999996573,-0.05519970375468849 +83340,416.6999999996573,-0.055199656703684825 +83341,416.7049999996573,-0.05519960965208024 +83342,416.70999999965727,-0.0551995625998743 +83343,416.71499999965727,-0.05519951554706657 +83344,416.71999999965726,-0.05519946849365661 +83345,416.72499999965726,-0.055199421439644 +83346,416.72999999965725,-0.05519937438502831 +83347,416.73499999965725,-0.05519932732980908 +83348,416.73999999965724,-0.05519928027398591 +83349,416.74499999965724,-0.05519923321755835 +83350,416.74999999965723,-0.05519918616052597 +83351,416.75499999965723,-0.05519913910288834 +83352,416.7599999996572,-0.055199092044645015 +83353,416.7649999996572,-0.05519904498579558 +83354,416.7699999996572,-0.05519899792633959 +83355,416.7749999996572,-0.055198950866276617 +83356,416.7799999996572,-0.055198903805606235 +83357,416.7849999996572,-0.05519885674432801 +83358,416.7899999996572,-0.05519880968244151 +83359,416.7949999996572,-0.055198762619946294 +83360,416.7999999996572,-0.055198715556841936 +83361,416.8049999996572,-0.055198668493127996 +83362,416.8099999996572,-0.05519862142880406 +83363,416.8149999996572,-0.055198574363869685 +83364,416.81999999965717,-0.05519852729832444 +83365,416.82499999965717,-0.0551984802321679 +83366,416.82999999965716,-0.05519843316539964 +83367,416.83499999965716,-0.05519838609801921 +83368,416.83999999965715,-0.0551983390300262 +83369,416.84499999965715,-0.05519829196142017 +83370,416.84999999965714,-0.055198244892200675 +83371,416.85499999965714,-0.055198197822367304 +83372,416.85999999965713,-0.055198150751919625 +83373,416.86499999965713,-0.0551981036808572 +83374,416.8699999996571,-0.05519805660917962 +83375,416.8749999996571,-0.05519800953688642 +83376,416.8799999996571,-0.05519796246397719 +83377,416.8849999996571,-0.0551979153904515 +83378,416.8899999996571,-0.05519786831630893 +83379,416.8949999996571,-0.05519782124154904 +83380,416.8999999996571,-0.05519777416617139 +83381,416.9049999996571,-0.05519772709017556 +83382,416.9099999996571,-0.05519768001356112 +83383,416.9149999996571,-0.055197632936327665 +83384,416.9199999996571,-0.05519758585847474 +83385,416.9249999996571,-0.05519753878000192 +83386,416.92999999965707,-0.05519749170090877 +83387,416.93499999965707,-0.05519744462119488 +83388,416.93999999965706,-0.0551973975408598 +83389,416.94499999965706,-0.05519735045990311 +83390,416.94999999965705,-0.055197303378324396 +83391,416.95499999965705,-0.055197256296123216 +83392,416.95999999965704,-0.055197209213299146 +83393,416.96499999965704,-0.05519716212985175 +83394,416.96999999965703,-0.055197115045780606 +83395,416.97499999965703,-0.0551970679610853 +83396,416.979999999657,-0.055197020875765376 +83397,416.984999999657,-0.055196973789820435 +83398,416.989999999657,-0.05519692670325003 +83399,416.994999999657,-0.055196879616053754 +83400,416.999999999657,-0.055196832528231154 +83401,417.004999999657,-0.05519678543978182 +83402,417.009999999657,-0.055196738350705335 +83403,417.014999999657,-0.05519669126100125 +83404,417.019999999657,-0.05519664417066915 +83405,417.024999999657,-0.05519659707970861 +83406,417.029999999657,-0.0551965499881192 +83407,417.034999999657,-0.055196502895900494 +83408,417.03999999965697,-0.05519645580305206 +83409,417.04499999965697,-0.05519640870957349 +83410,417.04999999965696,-0.05519636161546434 +83411,417.05499999965696,-0.05519631452072419 +83412,417.05999999965695,-0.055196267425352614 +83413,417.06499999965695,-0.05519622032934919 +83414,417.06999999965694,-0.055196173232713495 +83415,417.07499999965694,-0.055196126135445084 +83416,417.07999999965693,-0.055196079037543554 +83417,417.08499999965693,-0.05519603193900848 +83418,417.0899999996569,-0.055195984839839424 +83419,417.0949999996569,-0.05519593774003597 +83420,417.0999999996569,-0.05519589063959769 +83421,417.1049999996569,-0.05519584353852416 +83422,417.1099999996569,-0.05519579643681496 +83423,417.1149999996569,-0.055195749334469656 +83424,417.1199999996569,-0.05519570223148783 +83425,417.1249999996569,-0.05519565512786906 +83426,417.1299999996569,-0.05519560802361292 +83427,417.1349999996569,-0.05519556091871898 +83428,417.1399999996569,-0.05519551381318684 +83429,417.1449999996569,-0.05519546670701604 +83430,417.14999999965687,-0.05519541960020618 +83431,417.15499999965687,-0.055195372492756835 +83432,417.15999999965686,-0.05519532538466757 +83433,417.16499999965686,-0.05519527827593797 +83434,417.16999999965685,-0.05519523116656761 +83435,417.17499999965685,-0.055195184056556074 +83436,417.17999999965684,-0.05519513694590293 +83437,417.18499999965684,-0.055195089834607775 +83438,417.18999999965683,-0.05519504272267015 +83439,417.19499999965683,-0.05519499561008966 +83440,417.1999999996568,-0.055194948496865875 +83441,417.2049999996568,-0.05519490138299838 +83442,417.2099999996568,-0.055194854268486734 +83443,417.2149999996568,-0.05519480715333055 +83444,417.2199999996568,-0.055194760037529364 +83445,417.2249999996568,-0.055194712921082786 +83446,417.2299999996568,-0.05519466580399038 +83447,417.2349999996568,-0.055194618686251716 +83448,417.2399999996568,-0.05519457156786639 +83449,417.2449999996568,-0.05519452444883397 +83450,417.2499999996568,-0.05519447732915404 +83451,417.2549999996568,-0.055194430208826174 +83452,417.25999999965677,-0.055194383087849956 +83453,417.26499999965677,-0.05519433596622497 +83454,417.26999999965676,-0.05519428884395077 +83455,417.27499999965676,-0.05519424172102697 +83456,417.27999999965675,-0.055194194597453124 +83457,417.28499999965675,-0.05519414747322882 +83458,417.28999999965674,-0.05519410034835365 +83459,417.29499999965674,-0.055194053222827166 +83460,417.29999999965673,-0.05519400609664898 +83461,417.30499999965673,-0.055193958969818636 +83462,417.3099999996567,-0.055193911842335755 +83463,417.3149999996567,-0.05519386471419989 +83464,417.3199999996567,-0.05519381758541063 +83465,417.3249999996567,-0.05519377045596755 +83466,417.3299999996567,-0.05519372332587024 +83467,417.3349999996567,-0.05519367619511827 +83468,417.3399999996567,-0.05519362906371123 +83469,417.3449999996567,-0.05519358193164868 +83470,417.3499999996567,-0.05519353479893023 +83471,417.3549999996567,-0.05519348766555545 +83472,417.3599999996567,-0.05519344053152392 +83473,417.3649999996567,-0.05519339339683522 +83474,417.36999999965667,-0.055193346261488925 +83475,417.37499999965667,-0.05519329912548463 +83476,417.37999999965666,-0.05519325198882191 +83477,417.38499999965666,-0.05519320485150036 +83478,417.38999999965665,-0.05519315771351953 +83479,417.39499999965665,-0.05519311057487903 +83480,417.39999999965664,-0.05519306343557843 +83481,417.40499999965664,-0.05519301629561731 +83482,417.40999999965663,-0.05519296915499527 +83483,417.41499999965663,-0.05519292201371188 +83484,417.4199999996566,-0.05519287487176672 +83485,417.4249999996566,-0.05519282772915938 +83486,417.4299999996566,-0.05519278058588944 +83487,417.4349999996566,-0.05519273344195648 +83488,417.4399999996566,-0.055192686297360086 +83489,417.4449999996566,-0.05519263915209984 +83490,417.4499999996566,-0.05519259200617533 +83491,417.4549999996566,-0.055192544859586135 +83492,417.4599999996566,-0.05519249771233183 +83493,417.4649999996566,-0.055192450564412014 +83494,417.4699999996566,-0.05519240341582626 +83495,417.4749999996566,-0.055192356266574163 +83496,417.47999999965657,-0.0551923091166553 +83497,417.48499999965657,-0.05519226196606924 +83498,417.48999999965656,-0.055192214814815586 +83499,417.49499999965656,-0.05519216766289392 +83500,417.49999999965655,-0.05519212051030384 +83501,417.50499999965655,-0.05519207335704491 +83502,417.50999999965654,-0.05519202620311671 +83503,417.51499999965654,-0.055191979048518844 +83504,417.51999999965653,-0.05519193189325088 +83505,417.52499999965653,-0.05519188473731242 +83506,417.5299999996565,-0.05519183758070304 +83507,417.5349999996565,-0.05519179042342232 +83508,417.5399999996565,-0.055191743265469856 +83509,417.5449999996565,-0.05519169610684521 +83510,417.5499999996565,-0.055191648947548 +83511,417.5549999996565,-0.055191601787577795 +83512,417.5599999996565,-0.05519155462693418 +83513,417.5649999996565,-0.05519150746561674 +83514,417.5699999996565,-0.05519146030362507 +83515,417.5749999996565,-0.055191413140958746 +83516,417.5799999996565,-0.05519136597761737 +83517,417.5849999996565,-0.0551913188136005 +83518,417.58999999965647,-0.05519127164890776 +83519,417.59499999965647,-0.055191224483538706 +83520,417.59999999965646,-0.05519117731749293 +83521,417.60499999965646,-0.05519113015077002 +83522,417.60999999965645,-0.05519108298336958 +83523,417.61499999965645,-0.05519103581529119 +83524,417.61999999965644,-0.05519098864653442 +83525,417.62499999965644,-0.05519094147709886 +83526,417.62999999965643,-0.05519089430698411 +83527,417.63499999965643,-0.05519084713618975 +83528,417.6399999996564,-0.05519079996471537 +83529,417.6449999996564,-0.05519075279256056 +83530,417.6499999996564,-0.05519070561972491 +83531,417.6549999996564,-0.055190658446208005 +83532,417.6599999996564,-0.055190611272009436 +83533,417.6649999996564,-0.055190564097128775 +83534,417.6699999996564,-0.05519051692156562 +83535,417.6749999996564,-0.05519046974531956 +83536,417.6799999996564,-0.05519042256839019 +83537,417.6849999996564,-0.05519037539077709 +83538,417.6899999996564,-0.05519032821247986 +83539,417.6949999996564,-0.055190281033498066 +83540,417.69999999965637,-0.05519023385383133 +83541,417.70499999965637,-0.05519018667347922 +83542,417.70999999965636,-0.055190139492441316 +83543,417.71499999965636,-0.05519009231071723 +83544,417.71999999965635,-0.05519004512830654 +83545,417.72499999965635,-0.05518999794520883 +83546,417.72999999965634,-0.0551899507614237 +83547,417.73499999965634,-0.05518990357695073 +83548,417.73999999965633,-0.05518985639178952 +83549,417.74499999965633,-0.055189809205939654 +83550,417.7499999996563,-0.05518976201940072 +83551,417.7549999996563,-0.05518971483217232 +83552,417.7599999996563,-0.055189667644254016 +83553,417.7649999996563,-0.055189620455645426 +83554,417.7699999996563,-0.05518957326634613 +83555,417.7749999996563,-0.05518952607635572 +83556,417.7799999996563,-0.05518947888567379 +83557,417.7849999996563,-0.05518943169429993 +83558,417.7899999996563,-0.05518938450223372 +83559,417.7949999996563,-0.05518933730947477 +83560,417.7999999996563,-0.05518929011602265 +83561,417.8049999996563,-0.05518924292187697 +83562,417.80999999965627,-0.0551891957270373 +83563,417.81499999965627,-0.05518914853150325 +83564,417.81999999965626,-0.05518910133527442 +83565,417.82499999965626,-0.055189054138350374 +83566,417.82999999965625,-0.05518900694073072 +83567,417.83499999965625,-0.05518895974241505 +83568,417.83999999965624,-0.05518891254340295 +83569,417.84499999965624,-0.05518886534369402 +83570,417.84999999965623,-0.05518881814328785 +83571,417.85499999965623,-0.05518877094218402 +83572,417.8599999996562,-0.055188723740382147 +83573,417.8649999996562,-0.05518867653788181 +83574,417.8699999996562,-0.05518862933468259 +83575,417.8749999996562,-0.0551885821307841 +83576,417.8799999996562,-0.05518853492618591 +83577,417.8849999996562,-0.055188487720887636 +83578,417.8899999996562,-0.05518844051488885 +83579,417.8949999996562,-0.05518839330818918 +83580,417.8999999996562,-0.05518834610078818 +83581,417.9049999996562,-0.05518829889268547 +83582,417.9099999996562,-0.055188251683880626 +83583,417.9149999996562,-0.05518820447437324 +83584,417.91999999965617,-0.05518815726416293 +83585,417.92499999965617,-0.055188110053249265 +83586,417.92999999965616,-0.05518806284163185 +83587,417.93499999965616,-0.05518801562931027 +83588,417.93999999965615,-0.055187968416284136 +83589,417.94499999965615,-0.05518792120255303 +83590,417.94999999965614,-0.05518787398811655 +83591,417.95499999965614,-0.05518782677297429 +83592,417.95999999965613,-0.05518777955712584 +83593,417.96499999965613,-0.055187732340570804 +83594,417.9699999996561,-0.055187685123308766 +83595,417.9749999996561,-0.05518763790533933 +83596,417.9799999996561,-0.05518759068666209 +83597,417.9849999996561,-0.05518754346727664 +83598,417.9899999996561,-0.05518749624718258 +83599,417.9949999996561,-0.055187449026379495 +83600,417.9999999996561,-0.05518740180486698 +83601,418.0049999996561,-0.05518735458264465 +83602,418.0099999996561,-0.055187307359712064 +83603,418.0149999996561,-0.05518726013606886 +83604,418.0199999996561,-0.05518721291171461 +83605,418.0249999996561,-0.055187165686648915 +83606,418.02999999965607,-0.05518711846087136 +83607,418.03499999965607,-0.05518707123438157 +83608,418.03999999965606,-0.055187024007179106 +83609,418.04499999965606,-0.05518697677926359 +83610,418.04999999965605,-0.05518692955063462 +83611,418.05499999965605,-0.05518688232129178 +83612,418.05999999965604,-0.055186835091234655 +83613,418.06499999965604,-0.055186787860462876 +83614,418.06999999965603,-0.055186740628976015 +83615,418.07499999965603,-0.055186693396773664 +83616,418.079999999656,-0.05518664616385544 +83617,418.084999999656,-0.05518659893022094 +83618,418.089999999656,-0.05518655169586974 +83619,418.094999999656,-0.05518650446080146 +83620,418.099999999656,-0.05518645722501569 +83621,418.104999999656,-0.05518640998851203 +83622,418.109999999656,-0.05518636275129006 +83623,418.114999999656,-0.0551863155133494 +83624,418.119999999656,-0.05518626827468964 +83625,418.124999999656,-0.05518622103531038 +83626,418.129999999656,-0.05518617379521122 +83627,418.134999999656,-0.05518612655439175 +83628,418.13999999965597,-0.05518607931285158 +83629,418.14499999965597,-0.0551860320705903 +83630,418.14999999965596,-0.05518598482760751 +83631,418.15499999965596,-0.05518593758390281 +83632,418.15999999965595,-0.0551858903394758 +83633,418.16499999965595,-0.05518584309432609 +83634,418.16999999965594,-0.055185795848453255 +83635,418.17499999965594,-0.05518574860185692 +83636,418.17999999965593,-0.05518570135453666 +83637,418.18499999965593,-0.055185654106492094 +83638,418.1899999996559,-0.0551856068577228 +83639,418.1949999996559,-0.0551855596082284 +83640,418.1999999996559,-0.0551855123580085 +83641,418.2049999996559,-0.05518546510706267 +83642,418.2099999996559,-0.05518541785539053 +83643,418.2149999996559,-0.05518537060299167 +83644,418.2199999996559,-0.0551853233498657 +83645,418.2249999996559,-0.05518527609601222 +83646,418.2299999996559,-0.05518522884143083 +83647,418.2349999996559,-0.05518518158612112 +83648,418.2399999996559,-0.05518513433008271 +83649,418.2449999996559,-0.055185087073315174 +83650,418.24999999965587,-0.055185039815818134 +83651,418.25499999965587,-0.05518499255759119 +83652,418.25999999965586,-0.055184945298633936 +83653,418.26499999965586,-0.055184898038945975 +83654,418.26999999965585,-0.05518485077852691 +83655,418.27499999965585,-0.05518480351737634 +83656,418.27999999965584,-0.05518475625549387 +83657,418.28499999965584,-0.0551847089928791 +83658,418.28999999965583,-0.055184661729531626 +83659,418.29499999965583,-0.055184614465451066 +83660,418.2999999996558,-0.055184567200637004 +83661,418.3049999996558,-0.055184519935089056 +83662,418.3099999996558,-0.05518447266880682 +83663,418.3149999996558,-0.055184425401789895 +83664,418.3199999996558,-0.055184378134037884 +83665,418.3249999996558,-0.05518433086555039 +83666,418.3299999996558,-0.05518428359632702 +83667,418.3349999996558,-0.05518423632636737 +83668,418.3399999996558,-0.05518418905567104 +83669,418.3449999996558,-0.05518414178423764 +83670,418.3499999996558,-0.05518409451206678 +83671,418.3549999996558,-0.05518404723915805 +83672,418.35999999965577,-0.05518399996551105 +83673,418.36499999965577,-0.0551839526911254 +83674,418.36999999965576,-0.0551839054160007 +83675,418.37499999965576,-0.05518385814013655 +83676,418.37999999965575,-0.055183810863532544 +83677,418.38499999965575,-0.05518376358618831 +83678,418.38999999965574,-0.055183716308103425 +83679,418.39499999965574,-0.05518366902927751 +83680,418.39999999965573,-0.05518362174971016 +83681,418.40499999965573,-0.05518357446940098 +83682,418.4099999996557,-0.05518352718834959 +83683,418.4149999996557,-0.055183479906555574 +83684,418.4199999996557,-0.05518343262401855 +83685,418.4249999996557,-0.05518338534073811 +83686,418.4299999996557,-0.05518333805671388 +83687,418.4349999996557,-0.05518329077194544 +83688,418.4399999996557,-0.0551832434864324 +83689,418.4449999996557,-0.05518319620017438 +83690,418.4499999996557,-0.055183148913170985 +83691,418.4549999996557,-0.0551831016254218 +83692,418.4599999996557,-0.05518305433692645 +83693,418.4649999996557,-0.05518300704768453 +83694,418.46999999965567,-0.055182959757695646 +83695,418.47499999965567,-0.05518291246695941 +83696,418.47999999965566,-0.05518286517547543 +83697,418.48499999965566,-0.05518281788324331 +83698,418.48999999965565,-0.055182770590262636 +83699,418.49499999965565,-0.055182723296533044 +83700,418.49999999965564,-0.05518267600205412 +83701,418.50499999965564,-0.055182628706825484 +83702,418.50999999965563,-0.05518258141084674 +83703,418.51499999965563,-0.05518253411411749 +83704,418.5199999996556,-0.05518248681663734 +83705,418.5249999996556,-0.0551824395184059 +83706,418.5299999996556,-0.05518239221942278 +83707,418.5349999996556,-0.055182344919687584 +83708,418.5399999996556,-0.055182297619199905 +83709,418.5449999996556,-0.05518225031795936 +83710,418.5499999996556,-0.05518220301596557 +83711,418.5549999996556,-0.05518215571321814 +83712,418.5599999996556,-0.055182108409716664 +83713,418.5649999996556,-0.05518206110546075 +83714,418.5699999996556,-0.05518201380045001 +83715,418.5749999996556,-0.055181966494684064 +83716,418.57999999965557,-0.055181919188162495 +83717,418.58499999965557,-0.05518187188088494 +83718,418.58999999965556,-0.055181824572850986 +83719,418.59499999965556,-0.05518177726406025 +83720,418.59999999965555,-0.055181729954512336 +83721,418.60499999965555,-0.05518168264420686 +83722,418.60999999965554,-0.05518163533314342 +83723,418.61499999965554,-0.05518158802132163 +83724,418.61999999965553,-0.055181540708741095 +83725,418.62499999965553,-0.05518149339540143 +83726,418.6299999996555,-0.05518144608130226 +83727,418.6349999996555,-0.05518139876644315 +83728,418.6399999996555,-0.05518135145082376 +83729,418.6449999996555,-0.055181304134443665 +83730,418.6499999996555,-0.05518125681730248 +83731,418.6549999996555,-0.05518120949939983 +83732,418.6599999996555,-0.055181162180735314 +83733,418.6649999996555,-0.05518111486130854 +83734,418.6699999996555,-0.05518106754111912 +83735,418.6749999996555,-0.05518102022016666 +83736,418.6799999996555,-0.055180972898450774 +83737,418.6849999996555,-0.055180925575971075 +83738,418.68999999965547,-0.05518087825272717 +83739,418.69499999965547,-0.05518083092871868 +83740,418.69999999965546,-0.05518078360394519 +83741,418.70499999965546,-0.05518073627840633 +83742,418.70999999965545,-0.05518068895210171 +83743,418.71499999965545,-0.05518064162503093 +83744,418.71999999965544,-0.05518059429719362 +83745,418.72499999965544,-0.055180546968589386 +83746,418.72999999965543,-0.05518049963921783 +83747,418.73499999965543,-0.05518045230907856 +83748,418.7399999996554,-0.0551804049781712 +83749,418.7449999996554,-0.05518035764649536 +83750,418.7499999996554,-0.05518031031405064 +83751,418.7549999996554,-0.055180262980836677 +83752,418.7599999996554,-0.05518021564685304 +83753,418.7649999996554,-0.05518016831209938 +83754,418.7699999996554,-0.0551801209765753 +83755,418.7749999996554,-0.0551800736402804 +83756,418.7799999996554,-0.055180026303214294 +83757,418.7849999996554,-0.05517997896537661 +83758,418.7899999996554,-0.055179931626766945 +83759,418.7949999996554,-0.05517988428738493 +83760,418.79999999965537,-0.055179836947230144 +83761,418.80499999965537,-0.055179789606302224 +83762,418.80999999965536,-0.05517974226460079 +83763,418.81499999965536,-0.05517969492212543 +83764,418.81999999965535,-0.055179647578875786 +83765,418.82499999965535,-0.05517960023485145 +83766,418.82999999965534,-0.05517955289005204 +83767,418.83499999965534,-0.05517950554447717 +83768,418.83999999965533,-0.05517945819812645 +83769,418.84499999965533,-0.05517941085099952 +83770,418.8499999996553,-0.055179363503095956 +83771,418.8549999996553,-0.05517931615441539 +83772,418.8599999996553,-0.055179268804957445 +83773,418.8649999996553,-0.05517922145472171 +83774,418.8699999996553,-0.055179174103707825 +83775,418.8749999996553,-0.05517912675191539 +83776,418.8799999996553,-0.05517907939934402 +83777,418.8849999996553,-0.05517903204599334 +83778,418.8899999996553,-0.05517898469186295 +83779,418.8949999996553,-0.05517893733695247 +83780,418.8999999996553,-0.05517888998126152 +83781,418.9049999996553,-0.05517884262478971 +83782,418.90999999965527,-0.05517879526753664 +83783,418.91499999965527,-0.05517874790950195 +83784,418.91999999965526,-0.05517870055068525 +83785,418.92499999965526,-0.05517865319108614 +83786,418.92999999965525,-0.05517860583070426 +83787,418.93499999965525,-0.0551785584695392 +83788,418.93999999965524,-0.055178511107590596 +83789,418.94499999965524,-0.055178463744858054 +83790,418.94999999965523,-0.055178416381341196 +83791,418.95499999965523,-0.05517836901703963 +83792,418.9599999996552,-0.05517832165195297 +83793,418.9649999996552,-0.05517827428608084 +83794,418.9699999996552,-0.055178226919422854 +83795,418.9749999996552,-0.05517817955197863 +83796,418.9799999996552,-0.05517813218374778 +83797,418.9849999996552,-0.05517808481472993 +83798,418.9899999996552,-0.05517803744492469 +83799,418.9949999996552,-0.05517799007433166 +83800,418.9999999996552,-0.05517794270295049 +83801,419.0049999996552,-0.055177895330780775 +83802,419.0099999996552,-0.05517784795782212 +83803,419.0149999996552,-0.05517780058407418 +83804,419.01999999965517,-0.05517775320953655 +83805,419.02499999965517,-0.055177705834208834 +83806,419.02999999965516,-0.055177658458090674 +83807,419.03499999965516,-0.05517761108118168 +83808,419.03999999965515,-0.055177563703481466 +83809,419.04499999965515,-0.055177516324989656 +83810,419.04999999965514,-0.055177468945705854 +83811,419.05499999965514,-0.0551774215656297 +83812,419.05999999965513,-0.0551773741847608 +83813,419.06499999965513,-0.05517732680309877 +83814,419.0699999996551,-0.05517727942064322 +83815,419.0749999996551,-0.05517723203739378 +83816,419.0799999996551,-0.055177184653350066 +83817,419.0849999996551,-0.055177137268511714 +83818,419.0899999996551,-0.055177089882878325 +83819,419.0949999996551,-0.0551770424964495 +83820,419.0999999996551,-0.05517699510922489 +83821,419.1049999996551,-0.0551769477212041 +83822,419.1099999996551,-0.05517690033238675 +83823,419.1149999996551,-0.05517685294277247 +83824,419.1199999996551,-0.05517680555236086 +83825,419.1249999996551,-0.05517675816115156 +83826,419.12999999965507,-0.05517671076914417 +83827,419.13499999965507,-0.055176663376338315 +83828,419.13999999965506,-0.05517661598273362 +83829,419.14499999965506,-0.0551765685883297 +83830,419.14999999965505,-0.05517652119312618 +83831,419.15499999965505,-0.05517647379712267 +83832,419.15999999965504,-0.055176426400318807 +83833,419.16499999965504,-0.0551763790027142 +83834,419.16999999965503,-0.05517633160430847 +83835,419.17499999965503,-0.05517628420510124 +83836,419.179999999655,-0.055176236805092135 +83837,419.184999999655,-0.05517618940428076 +83838,419.189999999655,-0.05517614200266675 +83839,419.194999999655,-0.05517609460024973 +83840,419.199999999655,-0.05517604719702931 +83841,419.204999999655,-0.0551759997930051 +83842,419.209999999655,-0.055175952388176755 +83843,419.214999999655,-0.05517590498254387 +83844,419.219999999655,-0.05517585757610607 +83845,419.224999999655,-0.055175810168862985 +83846,419.229999999655,-0.05517576276081423 +83847,419.234999999655,-0.05517571535195943 +83848,419.23999999965497,-0.05517566794229819 +83849,419.24499999965496,-0.055175620531830165 +83850,419.24999999965496,-0.05517557312055495 +83851,419.25499999965496,-0.055175525708472166 +83852,419.25999999965495,-0.055175478295581455 +83853,419.26499999965495,-0.05517543088188243 +83854,419.26999999965494,-0.05517538346737472 +83855,419.27499999965494,-0.05517533605205793 +83856,419.27999999965493,-0.05517528863593169 +83857,419.28499999965493,-0.05517524121899564 +83858,419.2899999996549,-0.05517519380124938 +83859,419.2949999996549,-0.055175146382692546 +83860,419.2999999996549,-0.05517509896332476 +83861,419.3049999996549,-0.05517505154314564 +83862,419.3099999996549,-0.05517500412215482 +83863,419.3149999996549,-0.0551749567003519 +83864,419.3199999996549,-0.055174909277736515 +83865,419.3249999996549,-0.0551748618543083 +83866,419.3299999996549,-0.055174814430066874 +83867,419.3349999996549,-0.05517476700501186 +83868,419.3399999996549,-0.05517471957914288 +83869,419.3449999996549,-0.05517467215245954 +83870,419.34999999965487,-0.05517462472496149 +83871,419.35499999965486,-0.05517457729664834 +83872,419.35999999965486,-0.05517452986751972 +83873,419.36499999965486,-0.055174482437575265 +83874,419.36999999965485,-0.05517443500681458 +83875,419.37499999965485,-0.05517438757523731 +83876,419.37999999965484,-0.05517434014284305 +83877,419.38499999965484,-0.055174292709631444 +83878,419.38999999965483,-0.05517424527560212 +83879,419.39499999965483,-0.0551741978407547 +83880,419.3999999996548,-0.05517415040508881 +83881,419.4049999996548,-0.055174102968604075 +83882,419.4099999996548,-0.055174055531300115 +83883,419.4149999996548,-0.05517400809317655 +83884,419.4199999996548,-0.05517396065423303 +83885,419.4249999996548,-0.055173913214469156 +83886,419.4299999996548,-0.055173865773884556 +83887,419.4349999996548,-0.05517381833247888 +83888,419.4399999996548,-0.05517377089025172 +83889,419.4449999996548,-0.05517372344720272 +83890,419.4499999996548,-0.05517367600333151 +83891,419.4549999996548,-0.0551736285586377 +83892,419.45999999965477,-0.05517358111312095 +83893,419.46499999965476,-0.05517353366678084 +83894,419.46999999965476,-0.055173486219617034 +83895,419.47499999965476,-0.05517343877162914 +83896,419.47999999965475,-0.05517339132281678 +83897,419.48499999965475,-0.055173343873179605 +83898,419.48999999965474,-0.05517329642271723 +83899,419.49499999965474,-0.05517324897142928 +83900,419.49999999965473,-0.055173201519315374 +83901,419.50499999965473,-0.05517315406637514 +83902,419.5099999996547,-0.05517310661260821 +83903,419.5149999996547,-0.055173059158014216 +83904,419.5199999996547,-0.05517301170259279 +83905,419.5249999996547,-0.055172964246343555 +83906,419.5299999996547,-0.05517291678926613 +83907,419.5349999996547,-0.05517286933136015 +83908,419.5399999996547,-0.05517282187262523 +83909,419.5449999996547,-0.055172774413061024 +83910,419.5499999996547,-0.05517272695266714 +83911,419.5549999996547,-0.05517267949144321 +83912,419.5599999996547,-0.055172632029388866 +83913,419.5649999996547,-0.05517258456650374 +83914,419.56999999965467,-0.05517253710278746 +83915,419.57499999965466,-0.05517248963823964 +83916,419.57999999965466,-0.05517244217285993 +83917,419.58499999965466,-0.05517239470664795 +83918,419.58999999965465,-0.05517234723960333 +83919,419.59499999965465,-0.05517229977172568 +83920,419.59999999965464,-0.055172252303014646 +83921,419.60499999965464,-0.055172204833469865 +83922,419.60999999965463,-0.055172157363090946 +83923,419.61499999965463,-0.05517210989187754 +83924,419.6199999996546,-0.05517206241982926 +83925,419.6249999996546,-0.05517201494694575 +83926,419.6299999996546,-0.055171967473226634 +83927,419.6349999996546,-0.05517191999867153 +83928,419.6399999996546,-0.05517187252328009 +83929,419.6449999996546,-0.055171825047051926 +83930,419.6499999996546,-0.055171777569986674 +83931,419.6549999996546,-0.05517173009208396 +83932,419.6599999996546,-0.05517168261334344 +83933,419.6649999996546,-0.05517163513376471 +83934,419.6699999996546,-0.05517158765334742 +83935,419.6749999996546,-0.05517154017209119 +83936,419.67999999965457,-0.055171492689995646 +83937,419.68499999965456,-0.05517144520706043 +83938,419.68999999965456,-0.055171397723285186 +83939,419.69499999965456,-0.05517135023866952 +83940,419.69999999965455,-0.055171302753213074 +83941,419.70499999965455,-0.05517125526691548 +83942,419.70999999965454,-0.05517120777977637 +83943,419.71499999965454,-0.055171160291795376 +83944,419.71999999965453,-0.05517111280297212 +83945,419.72499999965453,-0.05517106531330625 +83946,419.7299999996545,-0.05517101782279738 +83947,419.7349999996545,-0.05517097033144516 +83948,419.7399999996545,-0.0551709228392492 +83949,419.7449999996545,-0.05517087534620916 +83950,419.7499999996545,-0.05517082785232465 +83951,419.7549999996545,-0.0551707803575953 +83952,419.7599999996545,-0.055170732862020774 +83953,419.7649999996545,-0.055170685365600665 +83954,419.7699999996545,-0.05517063786833462 +83955,419.7749999996545,-0.05517059037022229 +83956,419.7799999996545,-0.05517054287126328 +83957,419.7849999996545,-0.05517049537145724 +83958,419.78999999965447,-0.05517044787080379 +83959,419.79499999965446,-0.05517040036930257 +83960,419.79999999965446,-0.05517035286695322 +83961,419.80499999965446,-0.05517030536375536 +83962,419.80999999965445,-0.055170257859708645 +83963,419.81499999965445,-0.055170210354812683 +83964,419.81999999965444,-0.055170162849067124 +83965,419.82499999965444,-0.05517011534247159 +83966,419.82999999965443,-0.05517006783502572 +83967,419.8349999996544,-0.05517002032672916 +83968,419.8399999996544,-0.05516997281758153 +83969,419.8449999996544,-0.05516992530758246 +83970,419.8499999996544,-0.055169877796731596 +83971,419.8549999996544,-0.055169830285028566 +83972,419.8599999996544,-0.05516978277247302 +83973,419.8649999996544,-0.05516973525906455 +83974,419.8699999996544,-0.055169687744802846 +83975,419.8749999996544,-0.055169640229687504 +83976,419.8799999996544,-0.05516959271371818 +83977,419.8849999996544,-0.05516954519689449 +83978,419.8899999996544,-0.05516949767921608 +83979,419.8949999996544,-0.05516945016068257 +83980,419.89999999965437,-0.05516940264129363 +83981,419.90499999965436,-0.05516935512104887 +83982,419.90999999965436,-0.05516930759994791 +83983,419.91499999965436,-0.05516926007799042 +83984,419.91999999965435,-0.05516921255517602 +83985,419.92499999965435,-0.05516916503150433 +83986,419.92999999965434,-0.05516911750697503 +83987,419.93499999965434,-0.055169069981587715 +83988,419.93999999965433,-0.05516902245534203 +83989,419.9449999996543,-0.05516897492823762 +83990,419.9499999996543,-0.0551689274002741 +83991,419.9549999996543,-0.05516887987145114 +83992,419.9599999996543,-0.05516883234176835 +83993,419.9649999996543,-0.05516878481122538 +83994,419.9699999996543,-0.055168737279821856 +83995,419.9749999996543,-0.055168689747557426 +83996,419.9799999996543,-0.05516864221443171 +83997,419.9849999996543,-0.05516859468044436 +83998,419.9899999996543,-0.055168547145595 +83999,419.9949999996543,-0.055168499609883286 +84000,419.9999999996543,-0.055168452073308845 +84001,420.0049999996543,-0.0551684045358713 +84002,420.00999999965427,-0.05516835699757031 +84003,420.01499999965426,-0.05516830945840552 +84004,420.01999999965426,-0.055168261918376545 +84005,420.02499999965426,-0.055168214377483024 +84006,420.02999999965425,-0.055168166835724605 +84007,420.03499999965425,-0.05516811929310091 +84008,420.03999999965424,-0.0551680717496116 +84009,420.04499999965424,-0.0551680242052563 +84010,420.04999999965423,-0.05516797666003465 +84011,420.0549999996542,-0.05516792911394629 +84012,420.0599999996542,-0.055167881566990845 +84013,420.0649999996542,-0.05516783401916797 +84014,420.0699999996542,-0.0551677864704773 +84015,420.0749999996542,-0.05516773892091847 +84016,420.0799999996542,-0.055167691370491115 +84017,420.0849999996542,-0.05516764381919488 +84018,420.0899999996542,-0.05516759626702941 +84019,420.0949999996542,-0.05516754871399434 +84020,420.0999999996542,-0.055167501160089304 +84021,420.1049999996542,-0.055167453605313936 +84022,420.1099999996542,-0.05516740604966789 +84023,420.1149999996542,-0.05516735849315079 +84024,420.11999999965417,-0.05516731093576229 +84025,420.12499999965416,-0.05516726337750201 +84026,420.12999999965416,-0.055167215818369614 +84027,420.13499999965416,-0.05516716825836473 +84028,420.13999999965415,-0.05516712069748699 +84029,420.14499999965415,-0.055167073135736044 +84030,420.14999999965414,-0.055167025573111546 +84031,420.15499999965414,-0.05516697800961312 +84032,420.15999999965413,-0.055166930445240396 +84033,420.1649999996541,-0.05516688287999302 +84034,420.1699999996541,-0.05516683531387065 +84035,420.1749999996541,-0.05516678774687291 +84036,420.1799999996541,-0.055166740178999446 +84037,420.1849999996541,-0.055166692610249896 +84038,420.1899999996541,-0.05516664504062391 +84039,420.1949999996541,-0.05516659747012112 +84040,420.1999999996541,-0.05516654989874117 +84041,420.2049999996541,-0.05516650232648369 +84042,420.2099999996541,-0.055166454753348346 +84043,420.2149999996541,-0.055166407179334756 +84044,420.2199999996541,-0.055166359604442564 +84045,420.2249999996541,-0.05516631202867143 +84046,420.22999999965407,-0.05516626445202097 +84047,420.23499999965406,-0.055166216874490845 +84048,420.23999999965406,-0.055166169296080696 +84049,420.24499999965406,-0.05516612171679016 +84050,420.24999999965405,-0.05516607413661888 +84051,420.25499999965405,-0.05516602655556649 +84052,420.25999999965404,-0.05516597897363264 +84053,420.26499999965404,-0.055165931390816964 +84054,420.26999999965403,-0.055165883807119113 +84055,420.274999999654,-0.05516583622253875 +84056,420.279999999654,-0.05516578863707548 +84057,420.284999999654,-0.05516574105072897 +84058,420.289999999654,-0.05516569346349884 +84059,420.294999999654,-0.05516564587538476 +84060,420.299999999654,-0.055165598286386355 +84061,420.304999999654,-0.05516555069650327 +84062,420.309999999654,-0.05516550310573517 +84063,420.314999999654,-0.055165455514081675 +84064,420.319999999654,-0.055165407921542425 +84065,420.324999999654,-0.05516536032811708 +84066,420.329999999654,-0.05516531273380527 +84067,420.334999999654,-0.055165265138606645 +84068,420.33999999965397,-0.05516521754252085 +84069,420.34499999965396,-0.05516516994554752 +84070,420.34999999965396,-0.05516512234768631 +84071,420.35499999965396,-0.05516507474893686 +84072,420.35999999965395,-0.05516502714929882 +84073,420.36499999965395,-0.05516497954877183 +84074,420.36999999965394,-0.05516493194735553 +84075,420.37499999965394,-0.055164884345049556 +84076,420.37999999965393,-0.05516483674185358 +84077,420.3849999996539,-0.055164789137767234 +84078,420.3899999996539,-0.05516474153279015 +84079,420.3949999996539,-0.055164693926921984 +84080,420.3999999996539,-0.05516464632016238 +84081,420.4049999996539,-0.05516459871251098 +84082,420.4099999996539,-0.055164551103967424 +84083,420.4149999996539,-0.05516450349453138 +84084,420.4199999996539,-0.05516445588420247 +84085,420.4249999996539,-0.05516440827298035 +84086,420.4299999996539,-0.05516436066086466 +84087,420.4349999996539,-0.055164313047855046 +84088,420.4399999996539,-0.05516426543395116 +84089,420.4449999996539,-0.05516421781915264 +84090,420.44999999965387,-0.05516417020345915 +84091,420.45499999965386,-0.05516412258687032 +84092,420.45999999965386,-0.055164074969385794 +84093,420.46499999965386,-0.055164027351005215 +84094,420.46999999965385,-0.05516397973172825 +84095,420.47499999965385,-0.05516393211155453 +84096,420.47999999965384,-0.0551638844904837 +84097,420.48499999965384,-0.055163836868515406 +84098,420.48999999965383,-0.0551637892456493 +84099,420.4949999996538,-0.05516374162188504 +84100,420.4999999996538,-0.055163693997222256 +84101,420.5049999996538,-0.055163646371660595 +84102,420.5099999996538,-0.05516359874519971 +84103,420.5149999996538,-0.05516355111783925 +84104,420.5199999996538,-0.05516350348957886 +84105,420.5249999996538,-0.05516345586041818 +84106,420.5299999996538,-0.05516340823035686 +84107,420.5349999996538,-0.05516336059939456 +84108,420.5399999996538,-0.05516331296753093 +84109,420.5449999996538,-0.0551632653347656 +84110,420.5499999996538,-0.05516321770109822 +84111,420.5549999996538,-0.05516317006652844 +84112,420.55999999965377,-0.055163122431055915 +84113,420.56499999965376,-0.055163074794680286 +84114,420.56999999965376,-0.05516302715740121 +84115,420.57499999965376,-0.055162979519218315 +84116,420.57999999965375,-0.05516293188013127 +84117,420.58499999965375,-0.055162884240139716 +84118,420.58999999965374,-0.05516283659924331 +84119,420.59499999965374,-0.05516278895744169 +84120,420.59999999965373,-0.05516274131473452 +84121,420.6049999996537,-0.055162693671121435 +84122,420.6099999996537,-0.05516264602660208 +84123,420.6149999996537,-0.05516259838117611 +84124,420.6199999996537,-0.055162550734843184 +84125,420.6249999996537,-0.05516250308760293 +84126,420.6299999996537,-0.05516245543945502 +84127,420.6349999996537,-0.055162407790399076 +84128,420.6399999996537,-0.055162360140434775 +84129,420.6449999996537,-0.05516231248956176 +84130,420.6499999996537,-0.05516226483777966 +84131,420.6549999996537,-0.05516221718508815 +84132,420.6599999996537,-0.055162169531486886 +84133,420.6649999996537,-0.055162121876975494 +84134,420.66999999965367,-0.05516207422155363 +84135,420.67499999965366,-0.05516202656522094 +84136,420.67999999965366,-0.05516197890797709 +84137,420.68499999965366,-0.05516193124982172 +84138,420.68999999965365,-0.05516188359075449 +84139,420.69499999965365,-0.05516183593077504 +84140,420.69999999965364,-0.055161788269883036 +84141,420.70499999965364,-0.05516174060807811 +84142,420.70999999965363,-0.05516169294535992 +84143,420.7149999996536,-0.055161645281728115 +84144,420.7199999996536,-0.055161597617182354 +84145,420.7249999996536,-0.05516154995172228 +84146,420.7299999996536,-0.05516150228534754 +84147,420.7349999996536,-0.05516145461805779 +84148,420.7399999996536,-0.05516140694985269 +84149,420.7449999996536,-0.05516135928073189 +84150,420.7499999996536,-0.05516131161069503 +84151,420.7549999996536,-0.05516126393974176 +84152,420.7599999996536,-0.05516121626787175 +84153,420.7649999996536,-0.055161168595084645 +84154,420.7699999996536,-0.05516112092138009 +84155,420.7749999996536,-0.05516107324675774 +84156,420.77999999965357,-0.05516102557121725 +84157,420.78499999965356,-0.055160977894758274 +84158,420.78999999965356,-0.05516093021738046 +84159,420.79499999965356,-0.05516088253908346 +84160,420.79999999965355,-0.055160834859866927 +84161,420.80499999965355,-0.05516078717973052 +84162,420.80999999965354,-0.055160739498673894 +84163,420.81499999965354,-0.05516069181669669 +84164,420.81999999965353,-0.05516064413379856 +84165,420.8249999996535,-0.05516059644997915 +84166,420.8299999996535,-0.05516054876523815 +84167,420.8349999996535,-0.055160501079575174 +84168,420.8399999996535,-0.055160453392989896 +84169,420.8449999996535,-0.05516040570548197 +84170,420.8499999996535,-0.05516035801705104 +84171,420.8549999996535,-0.05516031032769676 +84172,420.8599999996535,-0.0551602626374188 +84173,420.8649999996535,-0.055160214946216785 +84174,420.8699999996535,-0.055160167254090384 +84175,420.8749999996535,-0.05516011956103925 +84176,420.8799999996535,-0.05516007186706305 +84177,420.8849999996535,-0.055160024172161426 +84178,420.88999999965347,-0.05515997647633404 +84179,420.89499999965346,-0.05515992877958053 +84180,420.89999999965346,-0.05515988108190055 +84181,420.90499999965346,-0.05515983338329378 +84182,420.90999999965345,-0.05515978568375985 +84183,420.91499999965345,-0.05515973798329843 +84184,420.91999999965344,-0.05515969028190917 +84185,420.92499999965344,-0.05515964257959172 +84186,420.92999999965343,-0.05515959487634574 +84187,420.9349999996534,-0.05515954717217089 +84188,420.9399999996534,-0.05515949946706682 +84189,420.9449999996534,-0.055159451761033186 +84190,420.9499999996534,-0.05515940405406964 +84191,420.9549999996534,-0.055159356346175845 +84192,420.9599999996534,-0.05515930863735145 +84193,420.9649999996534,-0.05515926092759609 +84194,420.9699999996534,-0.05515921321690947 +84195,420.9749999996534,-0.0551591655052912 +84196,420.9799999996534,-0.05515911779274096 +84197,420.9849999996534,-0.0551590700792584 +84198,420.9899999996534,-0.055159022364843185 +84199,420.9949999996534,-0.05515897464949495 +84200,420.99999999965337,-0.05515892693321338 +84201,421.00499999965336,-0.055158879215998116 +84202,421.00999999965336,-0.05515883149784881 +84203,421.01499999965336,-0.055158783778765125 +84204,421.01999999965335,-0.055158736058746716 +84205,421.02499999965335,-0.055158688337793235 +84206,421.02999999965334,-0.05515864061590435 +84207,421.03499999965334,-0.0551585928930797 +84208,421.03999999965333,-0.05515854516931897 +84209,421.0449999996533,-0.05515849744462179 +84210,421.0499999996533,-0.055158449718987826 +84211,421.0549999996533,-0.05515840199241674 +84212,421.0599999996533,-0.0551583542649082 +84213,421.0649999996533,-0.05515830653646184 +84214,421.0699999996533,-0.05515825880707733 +84215,421.0749999996533,-0.05515821107675433 +84216,421.0799999996533,-0.055158163345492485 +84217,421.0849999996533,-0.055158115613291474 +84218,421.0899999996533,-0.055158067880150936 +84219,421.0949999996533,-0.05515802014607054 +84220,421.0999999996533,-0.055157972411049944 +84221,421.1049999996533,-0.055157924675088794 +84222,421.10999999965327,-0.05515787693818676 +84223,421.11499999965326,-0.055157829200343504 +84224,421.11999999965326,-0.05515778146155867 +84225,421.12499999965326,-0.055157733721831935 +84226,421.12999999965325,-0.05515768598116294 +84227,421.13499999965325,-0.05515763823955136 +84228,421.13999999965324,-0.05515759049699683 +84229,421.14499999965324,-0.05515754275349903 +84230,421.14999999965323,-0.05515749500905762 +84231,421.1549999996532,-0.05515744726367224 +84232,421.1599999996532,-0.05515739951734257 +84233,421.1649999996532,-0.05515735177006826 +84234,421.1699999996532,-0.05515730402184897 +84235,421.1749999996532,-0.05515725627268436 +84236,421.1799999996532,-0.05515720852257411 +84237,421.1849999996532,-0.05515716077151785 +84238,421.1899999996532,-0.05515711301951525 +84239,421.1949999996532,-0.05515706526656597 +84240,421.1999999996532,-0.055157017512669666 +84241,421.2049999996532,-0.055156969757826003 +84242,421.2099999996532,-0.05515692200203465 +84243,421.2149999996532,-0.05515687424529526 +84244,421.21999999965317,-0.055156826487607474 +84245,421.22499999965316,-0.05515677872897098 +84246,421.22999999965316,-0.055156730969385434 +84247,421.23499999965316,-0.0551566832088505 +84248,421.23999999965315,-0.055156635447365814 +84249,421.24499999965315,-0.055156587684931056 +84250,421.24999999965314,-0.055156539921545886 +84251,421.25499999965314,-0.05515649215720997 +84252,421.25999999965313,-0.05515644439192296 +84253,421.2649999996531,-0.05515639662568452 +84254,421.2699999996531,-0.05515634885849431 +84255,421.2749999996531,-0.05515630109035199 +84256,421.2799999996531,-0.055156253321257225 +84257,421.2849999996531,-0.05515620555120968 +84258,421.2899999996531,-0.05515615778020901 +84259,421.2949999996531,-0.055156110008254884 +84260,421.2999999996531,-0.05515606223534695 +84261,421.3049999996531,-0.05515601446148489 +84262,421.3099999996531,-0.05515596668666835 +84263,421.3149999996531,-0.055155918910897 +84264,421.3199999996531,-0.055155871134170496 +84265,421.3249999996531,-0.05515582335648851 +84266,421.32999999965307,-0.05515577557785069 +84267,421.33499999965306,-0.05515572779825672 +84268,421.33999999965306,-0.055155680017706245 +84269,421.34499999965306,-0.055155632236198925 +84270,421.34999999965305,-0.05515558445373443 +84271,421.35499999965305,-0.05515553667031243 +84272,421.35999999965304,-0.05515548888593259 +84273,421.36499999965304,-0.05515544110059456 +84274,421.36999999965303,-0.05515539331429801 +84275,421.374999999653,-0.0551553455270426 +84276,421.379999999653,-0.055155297738828 +84277,421.384999999653,-0.055155249949653866 +84278,421.389999999653,-0.05515520215951986 +84279,421.394999999653,-0.05515515436842564 +84280,421.399999999653,-0.055155106576370884 +84281,421.404999999653,-0.05515505878335526 +84282,421.409999999653,-0.05515501098937841 +84283,421.414999999653,-0.055154963194440014 +84284,421.419999999653,-0.05515491539853974 +84285,421.424999999653,-0.05515486760167725 +84286,421.429999999653,-0.05515481980385221 +84287,421.434999999653,-0.05515477200506426 +84288,421.43999999965297,-0.05515472420531309 +84289,421.44499999965296,-0.05515467640459835 +84290,421.44999999965296,-0.05515462860291972 +84291,421.45499999965296,-0.055154580800276846 +84292,421.45999999965295,-0.05515453299666942 +84293,421.46499999965295,-0.055154485192097084 +84294,421.46999999965294,-0.05515443738655951 +84295,421.47499999965294,-0.05515438958005636 +84296,421.47999999965293,-0.0551543417725873 +84297,421.4849999996529,-0.055154293964152 +84298,421.4899999996529,-0.055154246154750126 +84299,421.4949999996529,-0.055154198344381344 +84300,421.4999999996529,-0.05515415053304531 +84301,421.5049999996529,-0.05515410272074169 +84302,421.5099999996529,-0.055154054907470156 +84303,421.5149999996529,-0.05515400709323038 +84304,421.5199999996529,-0.05515395927802202 +84305,421.5249999996529,-0.05515391146184474 +84306,421.5299999996529,-0.05515386364469822 +84307,421.5349999996529,-0.0551538158265821 +84308,421.5399999996529,-0.05515376800749607 +84309,421.5449999996529,-0.05515372018743979 +84310,421.54999999965287,-0.05515367236641292 +84311,421.55499999965286,-0.055153624544415136 +84312,421.55999999965286,-0.0551535767214461 +84313,421.56499999965285,-0.055153528897505466 +84314,421.56999999965285,-0.05515348107259293 +84315,421.57499999965285,-0.055153433246708135 +84316,421.57999999965284,-0.05515338541985075 +84317,421.58499999965284,-0.05515333759202045 +84318,421.58999999965283,-0.05515328976321691 +84319,421.5949999996528,-0.055153241933439776 +84320,421.5999999996528,-0.05515319410268873 +84321,421.6049999996528,-0.05515314627096343 +84322,421.6099999996528,-0.055153098438263555 +84323,421.6149999996528,-0.05515305060458877 +84324,421.6199999996528,-0.05515300276993874 +84325,421.6249999996528,-0.05515295493431313 +84326,421.6299999996528,-0.055152907097711604 +84327,421.6349999996528,-0.05515285926013385 +84328,421.6399999996528,-0.05515281142157952 +84329,421.6449999996528,-0.05515276358204828 +84330,421.6499999996528,-0.05515271574153981 +84331,421.6549999996528,-0.05515266790005377 +84332,421.65999999965277,-0.05515262005758983 +84333,421.66499999965276,-0.055152572214147655 +84334,421.66999999965276,-0.05515252436972692 +84335,421.67499999965275,-0.0551524765243273 +84336,421.67999999965275,-0.05515242867794845 +84337,421.68499999965275,-0.05515238083059005 +84338,421.68999999965274,-0.05515233298225175 +84339,421.69499999965274,-0.05515228513293323 +84340,421.69999999965273,-0.05515223728263418 +84341,421.7049999996527,-0.055152189431354234 +84342,421.7099999996527,-0.05515214157909309 +84343,421.7149999996527,-0.05515209372585039 +84344,421.7199999996527,-0.05515204587162583 +84345,421.7249999996527,-0.055151998016419075 +84346,421.7299999996527,-0.05515195016022977 +84347,421.7349999996527,-0.05515190230305761 +84348,421.7399999996527,-0.05515185444490227 +84349,421.7449999996527,-0.055151806585763394 +84350,421.7499999996527,-0.055151758725640675 +84351,421.7549999996527,-0.05515171086453377 +84352,421.7599999996527,-0.05515166300244236 +84353,421.7649999996527,-0.05515161513936612 +84354,421.76999999965267,-0.05515156727530469 +84355,421.77499999965266,-0.05515151941025776 +84356,421.77999999965266,-0.055151471544225006 +84357,421.78499999965265,-0.055151423677206095 +84358,421.78999999965265,-0.0551513758092007 +84359,421.79499999965265,-0.05515132794020849 +84360,421.79999999965264,-0.05515128007022914 +84361,421.80499999965264,-0.055151232199262296 +84362,421.80999999965263,-0.05515118432730766 +84363,421.8149999996526,-0.05515113645436489 +84364,421.8199999996526,-0.05515108858043365 +84365,421.8249999996526,-0.05515104070551364 +84366,421.8299999996526,-0.055150992829604506 +84367,421.8349999996526,-0.05515094495270593 +84368,421.8399999996526,-0.055150897074817566 +84369,421.8449999996526,-0.0551508491959391 +84370,421.8499999996526,-0.05515080131607022 +84371,421.8549999996526,-0.05515075343521056 +84372,421.8599999996526,-0.05515070555335983 +84373,421.8649999996526,-0.055150657670517675 +84374,421.8699999996526,-0.05515060978668379 +84375,421.8749999996526,-0.055150561901857825 +84376,421.87999999965257,-0.055150514016039466 +84377,421.88499999965256,-0.05515046612922838 +84378,421.88999999965256,-0.055150418241424234 +84379,421.89499999965255,-0.055150370352626724 +84380,421.89999999965255,-0.05515032246283551 +84381,421.90499999965255,-0.055150274572050254 +84382,421.90999999965254,-0.055150226680270635 +84383,421.91499999965254,-0.05515017878749633 +84384,421.91999999965253,-0.05515013089372701 +84385,421.9249999996525,-0.055150082998962346 +84386,421.9299999996525,-0.055150035103202016 +84387,421.9349999996525,-0.055149987206445684 +84388,421.9399999996525,-0.05514993930869304 +84389,421.9449999996525,-0.05514989140994374 +84390,421.9499999996525,-0.05514984351019747 +84391,421.9549999996525,-0.055149795609453905 +84392,421.9599999996525,-0.05514974770771271 +84393,421.9649999996525,-0.05514969980497356 +84394,421.9699999996525,-0.05514965190123614 +84395,421.9749999996525,-0.0551496039965001 +84396,421.9799999996525,-0.05514955609076515 +84397,421.9849999996525,-0.055149508184030936 +84398,421.98999999965247,-0.055149460276297135 +84399,421.99499999965246,-0.05514941236756343 +84400,421.99999999965246,-0.055149364457829496 +84401,422.00499999965245,-0.055149316547095 +84402,422.00999999965245,-0.05514926863535962 +84403,422.01499999965245,-0.05514922072262303 +84404,422.01999999965244,-0.055149172808884914 +84405,422.02499999965244,-0.05514912489414493 +84406,422.02999999965243,-0.055149076978402774 +84407,422.0349999996524,-0.0551490290616581 +84408,422.0399999996524,-0.05514898114391059 +84409,422.0449999996524,-0.055148933225159937 +84410,422.0499999996524,-0.0551488853054058 +84411,422.0549999996524,-0.05514883738464785 +84412,422.0599999996524,-0.055148789462885775 +84413,422.0649999996524,-0.055148741540119235 +84414,422.0699999996524,-0.055148693616347916 +84415,422.0749999996524,-0.055148645691571505 +84416,422.0799999996524,-0.05514859776578966 +84417,422.0849999996524,-0.05514854983900206 +84418,422.0899999996524,-0.05514850191120839 +84419,422.0949999996524,-0.055148453982408314 +84420,422.09999999965237,-0.05514840605260152 +84421,422.10499999965236,-0.05514835812178768 +84422,422.10999999965236,-0.055148310189966465 +84423,422.11499999965235,-0.05514826225713756 +84424,422.11999999965235,-0.05514821432330064 +84425,422.12499999965235,-0.05514816638845538 +84426,422.12999999965234,-0.055148118452601466 +84427,422.13499999965234,-0.055148070515738556 +84428,422.13999999965233,-0.05514802257786634 +84429,422.1449999996523,-0.05514797463898449 +84430,422.1499999996523,-0.05514792669909269 +84431,422.1549999996523,-0.05514787875819062 +84432,422.1599999996523,-0.055147830816277936 +84433,422.1649999996523,-0.05514778287335433 +84434,422.1699999996523,-0.05514773492941949 +84435,422.1749999996523,-0.05514768698447307 +84436,422.1799999996523,-0.055147639038514766 +84437,422.1849999996523,-0.05514759109154426 +84438,422.1899999996523,-0.05514754314356121 +84439,422.1949999996523,-0.0551474951945653 +84440,422.1999999996523,-0.055147447244556204 +84441,422.2049999996523,-0.05514739929353363 +84442,422.20999999965227,-0.05514735134149722 +84443,422.21499999965226,-0.05514730338844667 +84444,422.21999999965226,-0.05514725543438166 +84445,422.22499999965225,-0.05514720747930187 +84446,422.22999999965225,-0.055147159523206965 +84447,422.23499999965225,-0.05514711156609663 +84448,422.23999999965224,-0.05514706360797054 +84449,422.24499999965224,-0.05514701564882839 +84450,422.24999999965223,-0.055146967688669835 +84451,422.2549999996522,-0.05514691972749458 +84452,422.2599999996522,-0.05514687176530228 +84453,422.2649999996522,-0.055146823802092626 +84454,422.2699999996522,-0.05514677583786531 +84455,422.2749999996522,-0.055146727872619976 +84456,422.2799999996522,-0.05514667990635634 +84457,422.2849999996522,-0.05514663193907407 +84458,422.2899999996522,-0.055146583970772836 +84459,422.2949999996522,-0.055146536001452334 +84460,422.2999999996522,-0.05514648803111223 +84461,422.3049999996522,-0.055146440059752194 +84462,422.3099999996522,-0.05514639208737194 +84463,422.3149999996522,-0.05514634411397111 +84464,422.31999999965217,-0.055146296139549404 +84465,422.32499999965216,-0.05514624816410651 +84466,422.32999999965216,-0.055146200187642096 +84467,422.33499999965215,-0.05514615221015585 +84468,422.33999999965215,-0.055146104231647446 +84469,422.34499999965215,-0.055146056252116556 +84470,422.34999999965214,-0.05514600827156288 +84471,422.35499999965214,-0.05514596028998608 +84472,422.35999999965213,-0.05514591230738586 +84473,422.3649999996521,-0.05514586432376189 +84474,422.3699999996521,-0.055145816339113835 +84475,422.3749999996521,-0.0551457683534414 +84476,422.3799999996521,-0.05514572036674424 +84477,422.3849999996521,-0.05514567237902208 +84478,422.3899999996521,-0.05514562439027455 +84479,422.3949999996521,-0.05514557640050137 +84480,422.3999999996521,-0.055145528409702195 +84481,422.4049999996521,-0.05514548041787673 +84482,422.4099999996521,-0.05514543242502464 +84483,422.4149999996521,-0.05514538443114562 +84484,422.4199999996521,-0.05514533643623933 +84485,422.4249999996521,-0.05514528844030548 +84486,422.42999999965207,-0.05514524044334373 +84487,422.43499999965206,-0.055145192445353756 +84488,422.43999999965206,-0.05514514444633527 +84489,422.44499999965205,-0.055145096446287935 +84490,422.44999999965205,-0.055145048445211446 +84491,422.45499999965205,-0.055145000443105475 +84492,422.45999999965204,-0.055144952439969704 +84493,422.46499999965204,-0.05514490443580381 +84494,422.46999999965203,-0.05514485643060749 +84495,422.474999999652,-0.055144808424380416 +84496,422.479999999652,-0.055144760417122275 +84497,422.484999999652,-0.055144712408832744 +84498,422.489999999652,-0.05514466439951153 +84499,422.494999999652,-0.05514461638915829 +84500,422.499999999652,-0.055144568377772714 +84501,422.504999999652,-0.0551445203653545 +84502,422.509999999652,-0.055144472351903305 +84503,422.514999999652,-0.055144424337418826 +84504,422.519999999652,-0.05514437632190075 +84505,422.524999999652,-0.055144328305348767 +84506,422.529999999652,-0.05514428028776254 +84507,422.534999999652,-0.055144232269141766 +84508,422.53999999965197,-0.05514418424948613 +84509,422.54499999965196,-0.05514413622879532 +84510,422.54999999965196,-0.055144088207069 +84511,422.55499999965195,-0.05514404018430689 +84512,422.55999999965195,-0.055143992160508644 +84513,422.56499999965195,-0.05514394413567395 +84514,422.56999999965194,-0.0551438961098025 +84515,422.57499999965194,-0.05514384808289397 +84516,422.57999999965193,-0.05514380005494806 +84517,422.5849999996519,-0.05514375202596445 +84518,422.5899999996519,-0.0551437039959428 +84519,422.5949999996519,-0.055143655964882826 +84520,422.5999999996519,-0.05514360793278421 +84521,422.6049999996519,-0.05514355989964662 +84522,422.6099999996519,-0.05514351186546975 +84523,422.6149999996519,-0.05514346383025328 +84524,422.6199999996519,-0.05514341579399691 +84525,422.6249999996519,-0.05514336775670031 +84526,422.6299999996519,-0.05514331971836318 +84527,422.6349999996519,-0.05514327167898519 +84528,422.6399999996519,-0.05514322363856603 +84529,422.6449999996519,-0.055143175597105396 +84530,422.64999999965187,-0.05514312755460297 +84531,422.65499999965186,-0.05514307951105843 +84532,422.65999999965186,-0.055143031466471475 +84533,422.66499999965185,-0.05514298342084178 +84534,422.66999999965185,-0.05514293537416901 +84535,422.67499999965185,-0.055142887326452894 +84536,422.67999999965184,-0.055142839277693104 +84537,422.68499999965184,-0.05514279122788931 +84538,422.68999999965183,-0.05514274317704121 +84539,422.6949999996518,-0.055142695125148494 +84540,422.6999999996518,-0.05514264707221085 +84541,422.7049999996518,-0.055142599018227954 +84542,422.7099999996518,-0.05514255096319951 +84543,422.7149999996518,-0.05514250290712519 +84544,422.7199999996518,-0.055142454850004685 +84545,422.7249999996518,-0.05514240679183769 +84546,422.7299999996518,-0.055142358732623874 +84547,422.7349999996518,-0.05514231067236294 +84548,422.7399999996518,-0.05514226261105458 +84549,422.7449999996518,-0.055142214548698464 +84550,422.7499999996518,-0.05514216648529428 +84551,422.7549999996518,-0.055142118420841726 +84552,422.75999999965177,-0.055142070355340495 +84553,422.76499999965176,-0.05514202228879026 +84554,422.76999999965176,-0.05514197422119072 +84555,422.77499999965175,-0.05514192615254156 +84556,422.77999999965175,-0.05514187808284247 +84557,422.78499999965175,-0.05514183001209313 +84558,422.78999999965174,-0.055141781940293226 +84559,422.79499999965174,-0.055141733867442456 +84560,422.79999999965173,-0.05514168579354051 +84561,422.8049999996517,-0.055141637718587065 +84562,422.8099999996517,-0.05514158964258182 +84563,422.8149999996517,-0.05514154156552446 +84564,422.8199999996517,-0.05514149348741468 +84565,422.8249999996517,-0.055141445408252165 +84566,422.8299999996517,-0.05514139732803661 +84567,422.8349999996517,-0.055141349246767675 +84568,422.8399999996517,-0.055141301164445086 +84569,422.8449999996517,-0.055141253081068514 +84570,422.8499999996517,-0.05514120499663764 +84571,422.8549999996517,-0.055141156911152164 +84572,422.8599999996517,-0.055141108824611776 +84573,422.8649999996517,-0.055141060737016176 +84574,422.86999999965167,-0.05514101264836504 +84575,422.87499999965166,-0.05514096455865806 +84576,422.87999999965166,-0.05514091646789493 +84577,422.88499999965165,-0.05514086837607532 +84578,422.88999999965165,-0.05514082028319895 +84579,422.89499999965165,-0.05514077218926549 +84580,422.89999999965164,-0.05514072409427463 +84581,422.90499999965164,-0.05514067599822607 +84582,422.90999999965163,-0.0551406279011195 +84583,422.9149999996516,-0.05514057980295461 +84584,422.9199999996516,-0.05514053170373107 +84585,422.9249999996516,-0.0551404836034486 +84586,422.9299999996516,-0.055140435502106885 +84587,422.9349999996516,-0.0551403873997056 +84588,422.9399999996516,-0.05514033929624445 +84589,422.9449999996516,-0.05514029119172311 +84590,422.9499999996516,-0.05514024308614129 +84591,422.9549999996516,-0.05514019497949866 +84592,422.9599999996516,-0.05514014687179493 +84593,422.9649999996516,-0.055140098763029784 +84594,422.9699999996516,-0.05514005065320292 +84595,422.9749999996516,-0.05514000254231402 +84596,422.97999999965157,-0.05513995443036278 +84597,422.98499999965156,-0.05513990631734889 +84598,422.98999999965156,-0.055139858203272045 +84599,422.99499999965155,-0.05513981008813192 +84600,422.99999999965155,-0.05513976197192824 +84601,423.00499999965155,-0.05513971385466067 +84602,423.00999999965154,-0.05513966573632891 +84603,423.01499999965154,-0.05513961761693264 +84604,423.01999999965153,-0.055139569496471565 +84605,423.0249999996515,-0.05513952137494538 +84606,423.0299999996515,-0.05513947325235377 +84607,423.0349999996515,-0.055139425128696434 +84608,423.0399999996515,-0.055139377003973054 +84609,423.0449999996515,-0.05513932887818333 +84610,423.0499999996515,-0.055139280751326965 +84611,423.0549999996515,-0.05513923262340363 +84612,423.0599999996515,-0.05513918449441303 +84613,423.0649999996515,-0.05513913636435486 +84614,423.0699999996515,-0.05513908823322881 +84615,423.0749999996515,-0.055139040101034556 +84616,423.0799999996515,-0.05513899196777182 +84617,423.0849999996515,-0.05513894383344028 +84618,423.08999999965147,-0.05513889569803963 +84619,423.09499999965146,-0.055138847561569566 +84620,423.09999999965146,-0.05513879942402977 +84621,423.10499999965145,-0.05513875128541996 +84622,423.10999999965145,-0.05513870314573981 +84623,423.11499999965145,-0.05513865500498902 +84624,423.11999999965144,-0.05513860686316729 +84625,423.12499999965144,-0.05513855872027429 +84626,423.12999999965143,-0.055138510576309745 +84627,423.1349999996514,-0.05513846243127333 +84628,423.1399999996514,-0.05513841428516473 +84629,423.1449999996514,-0.05513836613798367 +84630,423.1499999996514,-0.05513831798972981 +84631,423.1549999996514,-0.05513826984040287 +84632,423.1599999996514,-0.05513822169000254 +84633,423.1649999996514,-0.055138173538528505 +84634,423.1699999996514,-0.05513812538598047 +84635,423.1749999996514,-0.055138077232358126 +84636,423.1799999996514,-0.05513802907766116 +84637,423.1849999996514,-0.05513798092188928 +84638,423.1899999996514,-0.05513793276504217 +84639,423.1949999996514,-0.05513788460711953 +84640,423.19999999965137,-0.05513783644812105 +84641,423.20499999965136,-0.05513778828804644 +84642,423.20999999965136,-0.05513774012689538 +84643,423.21499999965135,-0.05513769196466757 +84644,423.21999999965135,-0.0551376438013627 +84645,423.22499999965135,-0.05513759563698048 +84646,423.22999999965134,-0.055137547471520595 +84647,423.23499999965134,-0.05513749930498274 +84648,423.23999999965133,-0.055137451137366615 +84649,423.2449999996513,-0.05513740296867191 +84650,423.2499999996513,-0.055137354798898315 +84651,423.2549999996513,-0.05513730662804555 +84652,423.2599999996513,-0.05513725845611329 +84653,423.2649999996513,-0.05513721028310124 +84654,423.2699999996513,-0.0551371621090091 +84655,423.2749999996513,-0.055137113933836544 +84656,423.2799999996513,-0.0551370657575833 +84657,423.2849999996513,-0.055137017580249054 +84658,423.2899999996513,-0.055136969401833484 +84659,423.2949999996513,-0.0551369212223363 +84660,423.2999999996513,-0.0551368730417572 +84661,423.3049999996513,-0.055136824860095884 +84662,423.30999999965127,-0.05513677667735205 +84663,423.31499999965126,-0.05513672849352538 +84664,423.31999999965126,-0.0551366803086156 +84665,423.32499999965125,-0.055136632122622375 +84666,423.32999999965125,-0.055136583935545415 +84667,423.33499999965125,-0.05513653574738443 +84668,423.33999999965124,-0.055136487558139095 +84669,423.34499999965124,-0.05513643936780912 +84670,423.34999999965123,-0.0551363911763942 +84671,423.3549999996512,-0.05513634298389403 +84672,423.3599999996512,-0.055136294790308314 +84673,423.3649999996512,-0.05513624659563675 +84674,423.3699999996512,-0.05513619839987902 +84675,423.3749999996512,-0.05513615020303485 +84676,423.3799999996512,-0.05513610200510391 +84677,423.3849999996512,-0.05513605380608591 +84678,423.3899999996512,-0.05513600560598056 +84679,423.3949999996512,-0.055135957404787536 +84680,423.3999999996512,-0.05513590920250656 +84681,423.4049999996512,-0.05513586099913731 +84682,423.4099999996512,-0.055135812794679495 +84683,423.4149999996512,-0.05513576458913281 +84684,423.41999999965117,-0.05513571638249695 +84685,423.42499999965116,-0.055135668174771627 +84686,423.42999999965116,-0.05513561996595652 +84687,423.43499999965115,-0.05513557175605135 +84688,423.43999999965115,-0.055135523545055805 +84689,423.44499999965115,-0.05513547533296958 +84690,423.44999999965114,-0.055135427119792385 +84691,423.45499999965114,-0.05513537890552391 +84692,423.45999999965113,-0.05513533069016385 +84693,423.4649999996511,-0.055135282473711925 +84694,423.4699999996511,-0.05513523425616782 +84695,423.4749999996511,-0.05513518603753123 +84696,423.4799999996511,-0.05513513781780186 +84697,423.4849999996511,-0.055135089596979416 +84698,423.4899999996511,-0.055135041375063594 +84699,423.4949999996511,-0.05513499315205409 +84700,423.4999999996511,-0.05513494492795062 +84701,423.5049999996511,-0.05513489670275286 +84702,423.5099999996511,-0.0551348484764605 +84703,423.5149999996511,-0.05513480024907328 +84704,423.5199999996511,-0.055134752020590885 +84705,423.5249999996511,-0.055134703791013 +84706,423.52999999965107,-0.05513465556033934 +84707,423.53499999965106,-0.055134607328569604 +84708,423.53999999965106,-0.05513455909570349 +84709,423.54499999965105,-0.05513451086174071 +84710,423.54999999965105,-0.055134462626680945 +84711,423.55499999965105,-0.055134414390523905 +84712,423.55999999965104,-0.0551343661532693 +84713,423.56499999965104,-0.055134317914916825 +84714,423.56999999965103,-0.055134269675466176 +84715,423.574999999651,-0.05513422143491705 +84716,423.579999999651,-0.055134173193269166 +84717,423.584999999651,-0.05513412495052221 +84718,423.589999999651,-0.05513407670667589 +84719,423.594999999651,-0.0551340284617299 +84720,423.599999999651,-0.05513398021568395 +84721,423.604999999651,-0.05513393196853774 +84722,423.609999999651,-0.05513388372029097 +84723,423.614999999651,-0.05513383547094334 +84724,423.619999999651,-0.05513378722049456 +84725,423.624999999651,-0.055133738968944315 +84726,423.629999999651,-0.05513369071629234 +84727,423.634999999651,-0.0551336424625383 +84728,423.63999999965097,-0.05513359420768193 +84729,423.64499999965096,-0.055133545951722894 +84730,423.64999999965096,-0.05513349769466093 +84731,423.65499999965095,-0.05513344943649572 +84732,423.65999999965095,-0.05513340117722699 +84733,423.66499999965095,-0.05513335291685441 +84734,423.66999999965094,-0.0551333046553777 +84735,423.67499999965094,-0.05513325639279657 +84736,423.67999999965093,-0.05513320812911071 +84737,423.6849999996509,-0.05513315986431984 +84738,423.6899999996509,-0.05513311159842364 +84739,423.6949999996509,-0.055133063331421824 +84740,423.6999999996509,-0.05513301506331409 +84741,423.7049999996509,-0.05513296679410016 +84742,423.7099999996509,-0.05513291852377971 +84743,423.7149999996509,-0.055132870252352466 +84744,423.7199999996509,-0.05513282197981812 +84745,423.7249999996509,-0.055132773706176384 +84746,423.7299999996509,-0.05513272543142695 +84747,423.7349999996509,-0.05513267715556953 +84748,423.7399999996509,-0.055132628878603825 +84749,423.7449999996509,-0.055132580600529536 +84750,423.74999999965087,-0.05513253232134638 +84751,423.75499999965086,-0.055132484041054045 +84752,423.75999999965086,-0.05513243575965224 +84753,423.76499999965085,-0.055132387477140686 +84754,423.76999999965085,-0.05513233919351906 +84755,423.77499999965084,-0.05513229090878709 +84756,423.77999999965084,-0.055132242622944465 +84757,423.78499999965084,-0.05513219433599089 +84758,423.78999999965083,-0.05513214604792607 +84759,423.7949999996508,-0.05513209775874972 +84760,423.7999999996508,-0.05513204946846155 +84761,423.8049999996508,-0.05513200117706124 +84762,423.8099999996508,-0.05513195288454851 +84763,423.8149999996508,-0.05513190459092307 +84764,423.8199999996508,-0.055131856296184625 +84765,423.8249999996508,-0.05513180800033287 +84766,423.8299999996508,-0.055131759703367506 +84767,423.8349999996508,-0.05513171140528826 +84768,423.8399999996508,-0.055131663106094804 +84769,423.8449999996508,-0.055131614805786884 +84770,423.8499999996508,-0.055131566504364175 +84771,423.8549999996508,-0.05513151820182639 +84772,423.85999999965077,-0.05513146989817325 +84773,423.86499999965076,-0.055131421593404444 +84774,423.86999999965076,-0.05513137328751968 +84775,423.87499999965075,-0.05513132498051867 +84776,423.87999999965075,-0.055131276672401114 +84777,423.88499999965074,-0.05513122836316673 +84778,423.88999999965074,-0.05513118005281521 +84779,423.89499999965074,-0.05513113174134627 +84780,423.89999999965073,-0.05513108342875961 +84781,423.9049999996507,-0.05513103511505495 +84782,423.9099999996507,-0.055130986800231964 +84783,423.9149999996507,-0.0551309384842904 +84784,423.9199999996507,-0.05513089016722994 +84785,423.9249999996507,-0.05513084184905029 +84786,423.9299999996507,-0.05513079352975116 +84787,423.9349999996507,-0.05513074520933226 +84788,423.9399999996507,-0.055130696887793304 +84789,423.9449999996507,-0.055130648565134 +84790,423.9499999996507,-0.055130600241354036 +84791,423.9549999996507,-0.05513055191645313 +84792,423.9599999996507,-0.05513050359043099 +84793,423.9649999996507,-0.05513045526328733 +84794,423.96999999965067,-0.05513040693502185 +84795,423.97499999965066,-0.055130358605634255 +84796,423.97999999965066,-0.05513031027512426 +84797,423.98499999965065,-0.05513026194349156 +84798,423.98999999965065,-0.05513021361073588 +84799,423.99499999965064,-0.055130165276856914 +84800,423.99999999965064,-0.055130116941854386 +84801,424.00499999965064,-0.055130068605727986 +84802,424.00999999965063,-0.055130020268477437 +84803,424.0149999996506,-0.055129971930102446 +84804,424.0199999996506,-0.0551299235906027 +84805,424.0249999996506,-0.05512987524997793 +84806,424.0299999996506,-0.05512982690822784 +84807,424.0349999996506,-0.055129778565352144 +84808,424.0399999996506,-0.05512973022135053 +84809,424.0449999996506,-0.05512968187622272 +84810,424.0499999996506,-0.055129633529968435 +84811,424.0549999996506,-0.055129585182587364 +84812,424.0599999996506,-0.05512953683407922 +84813,424.0649999996506,-0.05512948848444371 +84814,424.0699999996506,-0.05512944013368056 +84815,424.0749999996506,-0.055129391781789466 +84816,424.07999999965057,-0.05512934342877014 +84817,424.08499999965056,-0.05512929507462229 +84818,424.08999999965056,-0.05512924671934563 +84819,424.09499999965055,-0.05512919836293986 +84820,424.09999999965055,-0.0551291500054047 +84821,424.10499999965054,-0.05512910164673984 +84822,424.10999999965054,-0.05512905328694501 +84823,424.11499999965054,-0.055129004926019916 +84824,424.11999999965053,-0.055128956563964264 +84825,424.1249999996505,-0.055128908200777774 +84826,424.1299999996505,-0.05512885983646014 +84827,424.1349999996505,-0.05512881147101108 +84828,424.1399999996505,-0.05512876310443031 +84829,424.1449999996505,-0.05512871473671753 +84830,424.1499999996505,-0.055128666367872455 +84831,424.1549999996505,-0.055128617997894806 +84832,424.1599999996505,-0.055128569626784286 +84833,424.1649999996505,-0.05512852125454059 +84834,424.1699999996505,-0.055128472881163446 +84835,424.1749999996505,-0.05512842450665256 +84836,424.1799999996505,-0.05512837613100764 +84837,424.1849999996505,-0.05512832775422841 +84838,424.18999999965047,-0.055128279376314565 +84839,424.19499999965046,-0.05512823099726582 +84840,424.19999999965046,-0.05512818261708189 +84841,424.20499999965045,-0.05512813423576249 +84842,424.20999999965045,-0.055128085853307314 +84843,424.21499999965044,-0.05512803746971609 +84844,424.21999999965044,-0.055127989084988525 +84845,424.22499999965044,-0.05512794069912434 +84846,424.22999999965043,-0.05512789231212322 +84847,424.2349999996504,-0.0551278439239849 +84848,424.2399999996504,-0.05512779553470908 +84849,424.2449999996504,-0.05512774714429548 +84850,424.2499999996504,-0.055127698752743814 +84851,424.2549999996504,-0.05512765036005379 +84852,424.2599999996504,-0.05512760196622512 +84853,424.2649999996504,-0.05512755357125751 +84854,424.2699999996504,-0.05512750517515067 +84855,424.2749999996504,-0.05512745677790434 +84856,424.2799999996504,-0.055127408379518204 +84857,424.2849999996504,-0.05512735997999198 +84858,424.2899999996504,-0.05512731157932538 +84859,424.2949999996504,-0.055127263177518135 +84860,424.29999999965037,-0.05512721477456994 +84861,424.30499999965036,-0.0551271663704805 +84862,424.30999999965036,-0.05512711796524954 +84863,424.31499999965035,-0.05512706955887677 +84864,424.31999999965035,-0.055127021151361914 +84865,424.32499999965034,-0.055126972742704665 +84866,424.32999999965034,-0.05512692433290475 +84867,424.33499999965034,-0.05512687592196188 +84868,424.33999999965033,-0.05512682750987577 +84869,424.3449999996503,-0.055126779096646136 +84870,424.3499999996503,-0.05512673068227268 +84871,424.3549999996503,-0.05512668226675513 +84872,424.3599999996503,-0.055126633850093185 +84873,424.3649999996503,-0.05512658543228656 +84874,424.3699999996503,-0.05512653701333498 +84875,424.3749999996503,-0.055126488593238154 +84876,424.3799999996503,-0.055126440171995784 +84877,424.3849999996503,-0.05512639174960761 +84878,424.3899999996503,-0.05512634332607333 +84879,424.3949999996503,-0.05512629490139264 +84880,424.3999999996503,-0.055126246475565285 +84881,424.4049999996503,-0.055126198048590966 +84882,424.40999999965027,-0.055126149620469404 +84883,424.41499999965026,-0.05512610119120031 +84884,424.41999999965026,-0.055126052760783396 +84885,424.42499999965025,-0.055126004329218374 +84886,424.42999999965025,-0.055125955896504965 +84887,424.43499999965024,-0.05512590746264287 +84888,424.43999999965024,-0.055125859027631834 +84889,424.44499999965024,-0.05512581059147155 +84890,424.44999999965023,-0.055125762154161734 +84891,424.4549999996502,-0.05512571371570211 +84892,424.4599999996502,-0.055125665276092375 +84893,424.4649999996502,-0.05512561683533225 +84894,424.4699999996502,-0.05512556839342146 +84895,424.4749999996502,-0.05512551995035972 +84896,424.4799999996502,-0.05512547150614674 +84897,424.4849999996502,-0.05512542306078224 +84898,424.4899999996502,-0.055125374614265935 +84899,424.4949999996502,-0.055125326166597544 +84900,424.4999999996502,-0.05512527771777677 +84901,424.5049999996502,-0.05512522926780333 +84902,424.5099999996502,-0.05512518081667696 +84903,424.5149999996502,-0.05512513236439736 +84904,424.51999999965017,-0.055125083910964254 +84905,424.52499999965016,-0.05512503545637735 +84906,424.52999999965016,-0.05512498700063635 +84907,424.53499999965015,-0.055124938543740995 +84908,424.53999999965015,-0.055124890085691006 +84909,424.54499999965014,-0.05512484162648607 +84910,424.54999999965014,-0.055124793166125945 +84911,424.55499999965014,-0.05512474470461031 +84912,424.55999999965013,-0.05512469624193889 +84913,424.5649999996501,-0.05512464777811141 +84914,424.5699999996501,-0.05512459931312759 +84915,424.5749999996501,-0.055124550846987135 +84916,424.5799999996501,-0.05512450237968977 +84917,424.5849999996501,-0.05512445391123521 +84918,424.5899999996501,-0.05512440544162317 +84919,424.5949999996501,-0.05512435697085337 +84920,424.5999999996501,-0.05512430849892553 +84921,424.6049999996501,-0.05512426002583937 +84922,424.6099999996501,-0.05512421155159458 +84923,424.6149999996501,-0.055124163076190925 +84924,424.6199999996501,-0.055124114599628085 +84925,424.6249999996501,-0.0551240661219058 +84926,424.62999999965007,-0.055124017643023764 +84927,424.63499999965006,-0.05512396916298171 +84928,424.63999999965006,-0.055123920681779355 +84929,424.64499999965005,-0.05512387219941641 +84930,424.64999999965005,-0.05512382371589261 +84931,424.65499999965004,-0.055123775231207664 +84932,424.65999999965004,-0.055123726745361284 +84933,424.66499999965004,-0.055123678258353195 +84934,424.66999999965003,-0.05512362977018312 +84935,424.67499999965,-0.05512358128085076 +84936,424.67999999965,-0.05512353279035584 +84937,424.68499999965,-0.05512348429869809 +84938,424.68999999965,-0.055123435805877224 +84939,424.69499999965,-0.05512338731189296 +84940,424.69999999965,-0.055123338816745006 +84941,424.70499999965,-0.05512329032043309 +84942,424.70999999965,-0.05512324182295693 +84943,424.71499999965,-0.05512319332431625 +84944,424.71999999965,-0.055123144824510764 +84945,424.72499999965,-0.0551230963235402 +84946,424.72999999965,-0.05512304782140426 +84947,424.73499999965,-0.055122999318102675 +84948,424.73999999964997,-0.05512295081363517 +84949,424.74499999964996,-0.05512290230800146 +84950,424.74999999964996,-0.05512285380120126 +84951,424.75499999964995,-0.055122805293234295 +84952,424.75999999964995,-0.05512275678410028 +84953,424.76499999964994,-0.05512270827379892 +84954,424.76999999964994,-0.05512265976232996 +84955,424.77499999964994,-0.05512261124969311 +84956,424.77999999964993,-0.05512256273588809 +84957,424.7849999996499,-0.055122514220914624 +84958,424.7899999996499,-0.05512246570477242 +84959,424.7949999996499,-0.05512241718746123 +84960,424.7999999996499,-0.05512236866898073 +84961,424.8049999996499,-0.055122320149330675 +84962,424.8099999996499,-0.05512227162851077 +84963,424.8149999996499,-0.055122223106520735 +84964,424.8199999996499,-0.055122174583360294 +84965,424.8249999996499,-0.05512212605902917 +84966,424.8299999996499,-0.05512207753352709 +84967,424.8349999996499,-0.055122029006853764 +84968,424.8399999996499,-0.05512198047900891 +84969,424.8449999996499,-0.05512193194999226 +84970,424.84999999964987,-0.05512188341980352 +84971,424.85499999964986,-0.05512183488844244 +84972,424.85999999964986,-0.05512178635590871 +84973,424.86499999964985,-0.05512173782220207 +84974,424.86999999964985,-0.05512168928732223 +84975,424.87499999964984,-0.055121640751268915 +84976,424.87999999964984,-0.055121592214041844 +84977,424.88499999964984,-0.05512154367564074 +84978,424.88999999964983,-0.05512149513606534 +84979,424.8949999996498,-0.055121446595315336 +84980,424.8999999996498,-0.05512139805339048 +84981,424.9049999996498,-0.05512134951029047 +84982,424.9099999996498,-0.055121300966015044 +84983,424.9149999996498,-0.05512125242056392 +84984,424.9199999996498,-0.05512120387393682 +84985,424.9249999996498,-0.055121155326133466 +84986,424.9299999996498,-0.055121106777153574 +84987,424.9349999996498,-0.05512105822699688 +84988,424.9399999996498,-0.055121009675663094 +84989,424.9449999996498,-0.05512096112315194 +84990,424.9499999996498,-0.055120912569463144 +84991,424.9549999996498,-0.055120864014596434 +84992,424.95999999964977,-0.05512081545855152 +84993,424.96499999964976,-0.05512076690132814 +84994,424.96999999964976,-0.055120718342926 +84995,424.97499999964975,-0.05512066978334484 +84996,424.97999999964975,-0.05512062122258436 +84997,424.98499999964974,-0.05512057266064432 +84998,424.98999999964974,-0.05512052409752441 +84999,424.99499999964974,-0.05512047553322437 +85000,424.99999999964973,-0.05512042696774391 +85001,425.0049999996497,-0.05512037840108276 +85002,425.0099999996497,-0.055120329833240646 +85003,425.0149999996497,-0.0551202812642173 +85004,425.0199999996497,-0.05512023269401243 +85005,425.0249999996497,-0.05512018412262576 +85006,425.0299999996497,-0.055120135550057014 +85007,425.0349999996497,-0.05512008697630593 +85008,425.0399999996497,-0.055120038401372216 +85009,425.0449999996497,-0.0551199898252556 +85010,425.0499999996497,-0.05511994124795582 +85011,425.0549999996497,-0.05511989266947259 +85012,425.0599999996497,-0.05511984408980564 +85013,425.0649999996497,-0.05511979550895468 +85014,425.06999999964967,-0.05511974692691945 +85015,425.07499999964966,-0.055119698343699654 +85016,425.07999999964966,-0.05511964975929503 +85017,425.08499999964965,-0.055119601173705304 +85018,425.08999999964965,-0.0551195525869302 +85019,425.09499999964964,-0.055119503998969435 +85020,425.09999999964964,-0.05511945540982275 +85021,425.10499999964964,-0.055119406819489854 +85022,425.10999999964963,-0.05511935822797048 +85023,425.1149999996496,-0.05511930963526436 +85024,425.1199999996496,-0.05511926104137121 +85025,425.1249999996496,-0.05511921244629075 +85026,425.1299999996496,-0.055119163850022704 +85027,425.1349999996496,-0.055119115252566804 +85028,425.1399999996496,-0.05511906665392277 +85029,425.1449999996496,-0.05511901805409035 +85030,425.1499999996496,-0.05511896945306924 +85031,425.1549999996496,-0.055118920850859184 +85032,425.1599999996496,-0.055118872247459906 +85033,425.1649999996496,-0.05511882364287112 +85034,425.1699999996496,-0.05511877503709256 +85035,425.1749999996496,-0.05511872643012396 +85036,425.17999999964957,-0.05511867782196502 +85037,425.18499999964956,-0.055118629212615504 +85038,425.18999999964956,-0.0551185806020751 +85039,425.19499999964955,-0.055118531990343556 +85040,425.19999999964955,-0.055118483377420605 +85041,425.20499999964954,-0.055118434763305954 +85042,425.20999999964954,-0.05511838614799935 +85043,425.21499999964954,-0.055118337531500486 +85044,425.21999999964953,-0.05511828891380913 +85045,425.2249999996495,-0.05511824029492497 +85046,425.2299999996495,-0.055118191674847765 +85047,425.2349999996495,-0.05511814305357723 +85048,425.2399999996495,-0.05511809443111308 +85049,425.2449999996495,-0.055118045807455066 +85050,425.2499999996495,-0.05511799718260289 +85051,425.2549999996495,-0.0551179485565563 +85052,425.2599999996495,-0.055117899929315005 +85053,425.2649999996495,-0.05511785130087874 +85054,425.2699999996495,-0.05511780267124723 +85055,425.2749999996495,-0.05511775404042021 +85056,425.2799999996495,-0.0551177054083974 +85057,425.2849999996495,-0.05511765677517853 +85058,425.28999999964947,-0.05511760814076334 +85059,425.29499999964946,-0.055117559505151535 +85060,425.29999999964946,-0.055117510868342864 +85061,425.30499999964945,-0.05511746223033704 +85062,425.30999999964945,-0.0551174135911338 +85063,425.31499999964944,-0.05511736495073286 +85064,425.31999999964944,-0.055117316309133954 +85065,425.32499999964944,-0.05511726766633682 +85066,425.32999999964943,-0.05511721902234116 +85067,425.3349999996494,-0.05511717037714674 +85068,425.3399999996494,-0.055117121730753255 +85069,425.3449999996494,-0.05511707308316045 +85070,425.3499999996494,-0.05511702443436805 +85071,425.3549999996494,-0.055116975784375785 +85072,425.3599999996494,-0.055116927133183384 +85073,425.3649999996494,-0.055116878480790575 +85074,425.3699999996494,-0.05511682982719708 +85075,425.3749999996494,-0.05511678117240264 +85076,425.3799999996494,-0.05511673251640697 +85077,425.3849999996494,-0.055116683859209814 +85078,425.3899999996494,-0.05511663520081089 +85079,425.3949999996494,-0.05511658654120994 +85080,425.39999999964937,-0.055116537880406685 +85081,425.40499999964936,-0.055116489218400844 +85082,425.40999999964936,-0.05511644055519216 +85083,425.41499999964935,-0.05511639189078035 +85084,425.41999999964935,-0.055116343225165156 +85085,425.42499999964934,-0.05511629455834631 +85086,425.42999999964934,-0.055116245890323524 +85087,425.43499999964934,-0.055116197221096556 +85088,425.43999999964933,-0.055116148550665114 +85089,425.4449999996493,-0.05511609987902892 +85090,425.4499999996493,-0.05511605120618773 +85091,425.4549999996493,-0.05511600253214125 +85092,425.4599999996493,-0.055115953856889235 +85093,425.4649999996493,-0.0551159051804314 +85094,425.4699999996493,-0.05511585650276746 +85095,425.4749999996493,-0.055115807823897175 +85096,425.4799999996493,-0.055115759143820255 +85097,425.4849999996493,-0.055115710462536445 +85098,425.4899999996493,-0.055115661780045455 +85099,425.4949999996493,-0.055115613096347035 +85100,425.4999999996493,-0.0551155644114409 +85101,425.50499999964927,-0.0551155157253268 +85102,425.50999999964927,-0.055115467038004455 +85103,425.51499999964926,-0.05511541834947359 +85104,425.51999999964926,-0.055115369659733945 +85105,425.52499999964925,-0.055115320968785256 +85106,425.52999999964925,-0.05511527227662724 +85107,425.53499999964924,-0.05511522358325963 +85108,425.53999999964924,-0.05511517488868218 +85109,425.54499999964924,-0.055115126192894597 +85110,425.54999999964923,-0.0551150774958966 +85111,425.5549999996492,-0.055115028797687954 +85112,425.5599999996492,-0.055114980098268374 +85113,425.5649999996492,-0.05511493139763759 +85114,425.5699999996492,-0.05511488269579535 +85115,425.5749999996492,-0.055114833992741356 +85116,425.5799999996492,-0.05511478528847536 +85117,425.5849999996492,-0.0551147365829971 +85118,425.5899999996492,-0.055114687876306294 +85119,425.5949999996492,-0.055114639168402674 +85120,425.5999999996492,-0.05511459045928598 +85121,425.6049999996492,-0.05511454174895593 +85122,425.6099999996492,-0.055114493037412275 +85123,425.61499999964917,-0.05511444432465474 +85124,425.61999999964917,-0.05511439561068306 +85125,425.62499999964916,-0.05511434689549696 +85126,425.62999999964916,-0.05511429817909618 +85127,425.63499999964915,-0.05511424946148044 +85128,425.63999999964915,-0.055114200742649486 +85129,425.64499999964914,-0.05511415202260305 +85130,425.64999999964914,-0.05511410330134086 +85131,425.65499999964914,-0.05511405457886265 +85132,425.65999999964913,-0.05511400585516816 +85133,425.6649999996491,-0.05511395713025711 +85134,425.6699999996491,-0.05511390840412923 +85135,425.6749999996491,-0.055113859676784276 +85136,425.6799999996491,-0.05511381094822195 +85137,425.6849999996491,-0.05511376221844202 +85138,425.6899999996491,-0.055113713487444205 +85139,425.6949999996491,-0.05511366475522823 +85140,425.6999999996491,-0.055113616021793835 +85141,425.7049999996491,-0.05511356728714076 +85142,425.7099999996491,-0.05511351855126871 +85143,425.7149999996491,-0.05511346981417747 +85144,425.7199999996491,-0.055113421075866725 +85145,425.72499999964907,-0.05511337233633623 +85146,425.72999999964907,-0.05511332359558571 +85147,425.73499999964906,-0.055113274853614926 +85148,425.73999999964906,-0.05511322611042358 +85149,425.74499999964905,-0.05511317736601143 +85150,425.74999999964905,-0.05511312862037819 +85151,425.75499999964904,-0.0551130798735236 +85152,425.75999999964904,-0.05511303112544741 +85153,425.76499999964904,-0.05511298237614933 +85154,425.76999999964903,-0.055112933625629114 +85155,425.774999999649,-0.055112884873886485 +85156,425.779999999649,-0.05511283612092119 +85157,425.784999999649,-0.055112787366732946 +85158,425.789999999649,-0.0551127386113215 +85159,425.794999999649,-0.05511268985468659 +85160,425.799999999649,-0.055112641096827945 +85161,425.804999999649,-0.0551125923377453 +85162,425.809999999649,-0.05511254357743839 +85163,425.814999999649,-0.055112494815906944 +85164,425.819999999649,-0.05511244605315071 +85165,425.824999999649,-0.05511239728916941 +85166,425.829999999649,-0.055112348523962795 +85167,425.83499999964897,-0.05511229975753058 +85168,425.83999999964897,-0.055112250989872526 +85169,425.84499999964896,-0.05511220222098835 +85170,425.84999999964896,-0.0551121534508778 +85171,425.85499999964895,-0.05511210467954059 +85172,425.85999999964895,-0.05511205590697648 +85173,425.86499999964894,-0.05511200713318519 +85174,425.86999999964894,-0.055111958358166464 +85175,425.87499999964894,-0.055111909581920034 +85176,425.87999999964893,-0.05511186080444564 +85177,425.8849999996489,-0.05511181202574302 +85178,425.8899999996489,-0.0551117632458119 +85179,425.8949999996489,-0.055111714464652024 +85180,425.8999999996489,-0.05511166568226314 +85181,425.9049999996489,-0.05511161689864495 +85182,425.9099999996489,-0.055111568113797235 +85183,425.9149999996489,-0.05511151932771969 +85184,425.9199999996489,-0.055111470540412086 +85185,425.9249999996489,-0.05511142175187413 +85186,425.9299999996489,-0.055111372962105595 +85187,425.9349999996489,-0.055111324171106174 +85188,425.9399999996489,-0.055111275378875633 +85189,425.94499999964887,-0.0551112265854137 +85190,425.94999999964887,-0.05511117779072012 +85191,425.95499999964886,-0.055111128994794624 +85192,425.95999999964886,-0.055111080197636955 +85193,425.96499999964885,-0.05511103139924683 +85194,425.96999999964885,-0.05511098259962401 +85195,425.97499999964884,-0.05511093379876822 +85196,425.97999999964884,-0.05511088499667919 +85197,425.98499999964884,-0.055110836193356674 +85198,425.98999999964883,-0.0551107873888004 +85199,425.9949999996488,-0.05511073858301012 +85200,425.9999999996488,-0.055110689775985565 +85201,426.0049999996488,-0.05511064096772647 +85202,426.0099999996488,-0.055110592158232566 +85203,426.0149999996488,-0.05511054334750359 +85204,426.0199999996488,-0.0551104945355393 +85205,426.0249999996488,-0.05511044572233942 +85206,426.0299999996488,-0.055110396907903696 +85207,426.0349999996488,-0.055110348092231844 +85208,426.0399999996488,-0.055110299275323626 +85209,426.0449999996488,-0.05511025045717877 +85210,426.0499999996488,-0.05511020163779701 +85211,426.05499999964877,-0.05511015281717809 +85212,426.05999999964877,-0.05511010399532176 +85213,426.06499999964876,-0.055110055172227744 +85214,426.06999999964876,-0.05511000634789579 +85215,426.07499999964875,-0.05510995752232563 +85216,426.07999999964875,-0.05510990869551701 +85217,426.08499999964874,-0.055109859867469656 +85218,426.08999999964874,-0.055109811038183326 +85219,426.09499999964873,-0.05510976220765774 +85220,426.09999999964873,-0.055109713375892655 +85221,426.1049999996487,-0.055109664542887786 +85222,426.1099999996487,-0.055109615708642895 +85223,426.1149999996487,-0.055109566873157705 +85224,426.1199999996487,-0.05510951803643198 +85225,426.1249999996487,-0.05510946919846543 +85226,426.1299999996487,-0.05510942035925781 +85227,426.1349999996487,-0.055109371518808875 +85228,426.1399999996487,-0.05510932267711833 +85229,426.1449999996487,-0.05510927383418594 +85230,426.1499999996487,-0.05510922499001144 +85231,426.1549999996487,-0.055109176144594554 +85232,426.1599999996487,-0.055109127297935045 +85233,426.16499999964867,-0.05510907845003264 +85234,426.16999999964867,-0.05510902960088709 +85235,426.17499999964866,-0.0551089807504981 +85236,426.17999999964866,-0.05510893189886547 +85237,426.18499999964865,-0.05510888304598889 +85238,426.18999999964865,-0.05510883419186813 +85239,426.19499999964864,-0.05510878533650291 +85240,426.19999999964864,-0.055108736479892985 +85241,426.20499999964863,-0.05510868762203809 +85242,426.20999999964863,-0.05510863876293796 +85243,426.2149999996486,-0.05510858990259234 +85244,426.2199999996486,-0.05510854104100098 +85245,426.2249999996486,-0.055108492178163604 +85246,426.2299999996486,-0.05510844331407996 +85247,426.2349999996486,-0.055108394448749806 +85248,426.2399999996486,-0.05510834558217286 +85249,426.2449999996486,-0.055108296714348866 +85250,426.2499999996486,-0.055108247845277576 +85251,426.2549999996486,-0.05510819897495873 +85252,426.2599999996486,-0.05510815010339207 +85253,426.2649999996486,-0.05510810123057732 +85254,426.2699999996486,-0.05510805235651424 +85255,426.27499999964857,-0.05510800348120256 +85256,426.27999999964857,-0.05510795460464203 +85257,426.28499999964856,-0.0551079057268324 +85258,426.28999999964856,-0.05510785684777339 +85259,426.29499999964855,-0.05510780796746477 +85260,426.29999999964855,-0.055107759085906254 +85261,426.30499999964854,-0.0551077102030976 +85262,426.30999999964854,-0.05510766131903854 +85263,426.31499999964853,-0.05510761243372882 +85264,426.31999999964853,-0.055107563547168184 +85265,426.3249999996485,-0.05510751465935637 +85266,426.3299999996485,-0.055107465770293136 +85267,426.3349999996485,-0.0551074168799782 +85268,426.3399999996485,-0.05510736798841133 +85269,426.3449999996485,-0.055107319095592244 +85270,426.3499999996485,-0.055107270201520696 +85271,426.3549999996485,-0.05510722130619642 +85272,426.3599999996485,-0.05510717240961918 +85273,426.3649999996485,-0.0551071235117887 +85274,426.3699999996485,-0.05510707461270474 +85275,426.3749999996485,-0.05510702571236702 +85276,426.3799999996485,-0.055106976810775296 +85277,426.38499999964847,-0.05510692790792932 +85278,426.38999999964847,-0.055106879003828824 +85279,426.39499999964846,-0.05510683009847355 +85280,426.39999999964846,-0.05510678119186325 +85281,426.40499999964845,-0.05510673228399766 +85282,426.40999999964845,-0.05510668337487651 +85283,426.41499999964844,-0.055106634464499565 +85284,426.41999999964844,-0.055106585552866565 +85285,426.42499999964843,-0.05510653663997725 +85286,426.42999999964843,-0.05510648772583137 +85287,426.4349999996484,-0.055106438810428655 +85288,426.4399999996484,-0.05510638989376886 +85289,426.4449999996484,-0.05510634097585172 +85290,426.4499999996484,-0.05510629205667699 +85291,426.4549999996484,-0.05510624313624442 +85292,426.4599999996484,-0.055106194214553726 +85293,426.4649999996484,-0.05510614529160468 +85294,426.4699999996484,-0.055106096367397 +85295,426.4749999996484,-0.055106047441930456 +85296,426.4799999996484,-0.05510599851520479 +85297,426.4849999996484,-0.055105949587219726 +85298,426.4899999996484,-0.05510590065797503 +85299,426.49499999964837,-0.05510585172747042 +85300,426.49999999964837,-0.05510580279570567 +85301,426.50499999964836,-0.05510575386268052 +85302,426.50999999964836,-0.0551057049283947 +85303,426.51499999964835,-0.055105655992847974 +85304,426.51999999964835,-0.055105607056040055 +85305,426.52499999964834,-0.055105558117970715 +85306,426.52999999964834,-0.0551055091786397 +85307,426.53499999964833,-0.05510546023804673 +85308,426.53999999964833,-0.05510541129619159 +85309,426.5449999996483,-0.055105362353074 +85310,426.5499999996483,-0.05510531340869371 +85311,426.5549999996483,-0.055105264463050446 +85312,426.5599999996483,-0.05510521551614399 +85313,426.5649999996483,-0.055105166567974054 +85314,426.5699999996483,-0.05510511761854041 +85315,426.5749999996483,-0.05510506866784279 +85316,426.5799999996483,-0.05510501971588094 +85317,426.5849999996483,-0.055104970762654616 +85318,426.5899999996483,-0.05510492180816355 +85319,426.5949999996483,-0.0551048728524075 +85320,426.5999999996483,-0.05510482389538619 +85321,426.60499999964827,-0.05510477493709939 +85322,426.60999999964827,-0.055104725977546835 +85323,426.61499999964826,-0.055104677016728276 +85324,426.61999999964826,-0.05510462805464346 +85325,426.62499999964825,-0.05510457909129213 +85326,426.62999999964825,-0.055104530126674024 +85327,426.63499999964824,-0.05510448116078891 +85328,426.63999999964824,-0.05510443219363651 +85329,426.64499999964823,-0.055104383225216595 +85330,426.64999999964823,-0.0551043342555289 +85331,426.6549999996482,-0.055104285284573166 +85332,426.6599999996482,-0.05510423631234915 +85333,426.6649999996482,-0.05510418733885658 +85334,426.6699999996482,-0.05510413836409522 +85335,426.6749999996482,-0.055104089388064825 +85336,426.6799999996482,-0.05510404041076512 +85337,426.6849999996482,-0.05510399143219587 +85338,426.6899999996482,-0.05510394245235681 +85339,426.6949999996482,-0.05510389347124769 +85340,426.6999999996482,-0.055103844488868264 +85341,426.7049999996482,-0.055103795505218274 +85342,426.7099999996482,-0.05510374652029747 +85343,426.71499999964817,-0.05510369753410559 +85344,426.71999999964817,-0.0551036485466424 +85345,426.72499999964816,-0.05510359955790765 +85346,426.72999999964816,-0.055103550567901054 +85347,426.73499999964815,-0.055103501576622395 +85348,426.73999999964815,-0.05510345258407139 +85349,426.74499999964814,-0.055103403590247825 +85350,426.74999999964814,-0.055103354595151414 +85351,426.75499999964813,-0.05510330559878193 +85352,426.75999999964813,-0.05510325660113909 +85353,426.7649999996481,-0.05510320760222268 +85354,426.7699999996481,-0.05510315860203242 +85355,426.7749999996481,-0.05510310960056808 +85356,426.7799999996481,-0.055103060597829386 +85357,426.7849999996481,-0.055103011593816094 +85358,426.7899999996481,-0.05510296258852796 +85359,426.7949999996481,-0.05510291358196473 +85360,426.7999999996481,-0.055102864574126144 +85361,426.8049999996481,-0.05510281556501197 +85362,426.8099999996481,-0.055102766554621936 +85363,426.8149999996481,-0.0551027175429558 +85364,426.8199999996481,-0.05510266853001332 +85365,426.82499999964807,-0.05510261951579422 +85366,426.82999999964807,-0.05510257050029827 +85367,426.83499999964806,-0.05510252148352521 +85368,426.83999999964806,-0.05510247246547479 +85369,426.84499999964805,-0.05510242344614678 +85370,426.84999999964805,-0.055102374425540904 +85371,426.85499999964804,-0.05510232540365692 +85372,426.85999999964804,-0.05510227638049457 +85373,426.86499999964803,-0.05510222735605362 +85374,426.86999999964803,-0.055102178330333804 +85375,426.874999999648,-0.05510212930333488 +85376,426.879999999648,-0.05510208027505658 +85377,426.884999999648,-0.05510203124549868 +85378,426.889999999648,-0.05510198221466092 +85379,426.894999999648,-0.05510193318254305 +85380,426.899999999648,-0.05510188414914481 +85381,426.904999999648,-0.05510183511446596 +85382,426.909999999648,-0.05510178607850625 +85383,426.914999999648,-0.05510173704126544 +85384,426.919999999648,-0.05510168800274326 +85385,426.924999999648,-0.05510163896293948 +85386,426.929999999648,-0.05510158992185383 +85387,426.93499999964797,-0.055101540879486065 +85388,426.93999999964797,-0.055101491835835945 +85389,426.94499999964796,-0.055101442790903225 +85390,426.94999999964796,-0.05510139374468764 +85391,426.95499999964795,-0.05510134469718895 +85392,426.95999999964795,-0.055101295648406906 +85393,426.96499999964794,-0.05510124659834125 +85394,426.96999999964794,-0.05510119754699174 +85395,426.97499999964793,-0.055101148494358126 +85396,426.97999999964793,-0.055101099440440164 +85397,426.9849999996479,-0.0551010503852376 +85398,426.9899999996479,-0.05510100132875019 +85399,426.9949999996479,-0.05510095227097767 +85400,426.9999999996479,-0.055100903211919815 +85401,427.0049999996479,-0.05510085415157636 +85402,427.0099999996479,-0.05510080508994706 +85403,427.0149999996479,-0.05510075602703166 +85404,427.0199999996479,-0.05510070696282993 +85405,427.0249999996479,-0.05510065789734161 +85406,427.0299999996479,-0.055100608830566444 +85407,427.0349999996479,-0.05510055976250419 +85408,427.0399999996479,-0.0551005106931546 +85409,427.04499999964787,-0.055100461622517444 +85410,427.04999999964787,-0.055100412550592455 +85411,427.05499999964786,-0.05510036347737938 +85412,427.05999999964786,-0.05510031440287797 +85413,427.06499999964785,-0.055100265327088 +85414,427.06999999964785,-0.0551002162500092 +85415,427.07499999964784,-0.05510016717164133 +85416,427.07999999964784,-0.05510011809198416 +85417,427.08499999964783,-0.05510006901103742 +85418,427.08999999964783,-0.05510001992880086 +85419,427.0949999996478,-0.055099970845274245 +85420,427.0999999996478,-0.05509992176045732 +85421,427.1049999996478,-0.05509987267434984 +85422,427.1099999996478,-0.055099823586951556 +85423,427.1149999996478,-0.055099774498262234 +85424,427.1199999996478,-0.05509972540828161 +85425,427.1249999996478,-0.05509967631700944 +85426,427.1299999996478,-0.05509962722444549 +85427,427.1349999996478,-0.055099578130589494 +85428,427.1399999996478,-0.05509952903544122 +85429,427.1449999996478,-0.05509947993900042 +85430,427.1499999996478,-0.05509943084126684 +85431,427.15499999964777,-0.05509938174224023 +85432,427.15999999964777,-0.055099332641920344 +85433,427.16499999964776,-0.055099283540306944 +85434,427.16999999964776,-0.05509923443739979 +85435,427.17499999964775,-0.05509918533319862 +85436,427.17999999964775,-0.055099136227703197 +85437,427.18499999964774,-0.05509908712091327 +85438,427.18999999964774,-0.0550990380128286 +85439,427.19499999964773,-0.05509898890344893 +85440,427.19999999964773,-0.05509893979277402 +85441,427.2049999996477,-0.05509889068080362 +85442,427.2099999996477,-0.05509884156753749 +85443,427.2149999996477,-0.05509879245297539 +85444,427.2199999996477,-0.055098743337117055 +85445,427.2249999996477,-0.05509869421996225 +85446,427.2299999996477,-0.05509864510151074 +85447,427.2349999996477,-0.05509859598176226 +85448,427.2399999996477,-0.05509854686071658 +85449,427.2449999996477,-0.05509849773837344 +85450,427.2499999996477,-0.055098448614732606 +85451,427.2549999996477,-0.05509839948979384 +85452,427.2599999996477,-0.055098350363556876 +85453,427.26499999964767,-0.05509830123602147 +85454,427.26999999964767,-0.05509825210718739 +85455,427.27499999964766,-0.0550982029770544 +85456,427.27999999964766,-0.055098153845622236 +85457,427.28499999964765,-0.055098104712890644 +85458,427.28999999964765,-0.055098055578859405 +85459,427.29499999964764,-0.05509800644352826 +85460,427.29999999964764,-0.055097957306896976 +85461,427.30499999964763,-0.055097908168965294 +85462,427.30999999964763,-0.05509785902973297 +85463,427.3149999996476,-0.05509780988919977 +85464,427.3199999996476,-0.05509776074736543 +85465,427.3249999996476,-0.05509771160422973 +85466,427.3299999996476,-0.05509766245979242 +85467,427.3349999996476,-0.05509761331405324 +85468,427.3399999996476,-0.055097564167011955 +85469,427.3449999996476,-0.05509751501866832 +85470,427.3499999996476,-0.0550974658690221 +85471,427.3549999996476,-0.05509741671807305 +85472,427.3599999996476,-0.055097367565820905 +85473,427.3649999996476,-0.055097318412265436 +85474,427.3699999996476,-0.05509726925740641 +85475,427.37499999964757,-0.055097220101243564 +85476,427.37999999964757,-0.05509717094377666 +85477,427.38499999964756,-0.055097121785005455 +85478,427.38999999964756,-0.05509707262492971 +85479,427.39499999964755,-0.05509702346354918 +85480,427.39999999964755,-0.055096974300863626 +85481,427.40499999964754,-0.0550969251368728 +85482,427.40999999964754,-0.055096875971576455 +85483,427.41499999964753,-0.055096826804974346 +85484,427.41999999964753,-0.055096777637066226 +85485,427.4249999996475,-0.05509672846785186 +85486,427.4299999996475,-0.05509667929733101 +85487,427.4349999996475,-0.05509663012550343 +85488,427.4399999996475,-0.05509658095236887 +85489,427.4449999996475,-0.0550965317779271 +85490,427.4499999996475,-0.05509648260217786 +85491,427.4549999996475,-0.055096433425120925 +85492,427.4599999996475,-0.05509638424675603 +85493,427.4649999996475,-0.05509633506708296 +85494,427.4699999996475,-0.05509628588610146 +85495,427.4749999996475,-0.05509623670381127 +85496,427.4799999996475,-0.05509618752021217 +85497,427.48499999964747,-0.055096138335303906 +85498,427.48999999964747,-0.05509608914908624 +85499,427.49499999964746,-0.05509603996155893 +85500,427.49999999964746,-0.05509599077272174 +85501,427.50499999964745,-0.055095941582574415 +85502,427.50999999964745,-0.05509589239111672 +85503,427.51499999964744,-0.05509584319834842 +85504,427.51999999964744,-0.05509579400426927 +85505,427.52499999964743,-0.05509574480887901 +85506,427.52999999964743,-0.05509569561217741 +85507,427.5349999996474,-0.055095646414164236 +85508,427.5399999996474,-0.05509559721483925 +85509,427.5449999996474,-0.05509554801420218 +85510,427.5499999996474,-0.05509549881225281 +85511,427.5549999996474,-0.055095449608990904 +85512,427.5599999996474,-0.05509540040441621 +85513,427.5649999996474,-0.05509535119852849 +85514,427.5699999996474,-0.05509530199132749 +85515,427.5749999996474,-0.05509525278281298 +85516,427.5799999996474,-0.05509520357298472 +85517,427.5849999996474,-0.05509515436184246 +85518,427.5899999996474,-0.055095105149385974 +85519,427.59499999964737,-0.055095055935615006 +85520,427.59999999964737,-0.055095006720529326 +85521,427.60499999964736,-0.05509495750412869 +85522,427.60999999964736,-0.05509490828641285 +85523,427.61499999964735,-0.05509485906738156 +85524,427.61999999964735,-0.0550948098470346 +85525,427.62499999964734,-0.05509476062537172 +85526,427.62999999964734,-0.05509471140239268 +85527,427.63499999964733,-0.05509466217809723 +85528,427.63999999964733,-0.055094612952485134 +85529,427.6449999996473,-0.055094563725556156 +85530,427.6499999996473,-0.05509451449731006 +85531,427.6549999996473,-0.0550944652677466 +85532,427.6599999996473,-0.05509441603686554 +85533,427.6649999996473,-0.05509436680466664 +85534,427.6699999996473,-0.055094317571149645 +85535,427.6749999996473,-0.05509426833631433 +85536,427.6799999996473,-0.05509421910016044 +85537,427.6849999996473,-0.05509416986268777 +85538,427.6899999996473,-0.05509412062389605 +85539,427.6949999996473,-0.05509407138378504 +85540,427.6999999996473,-0.0550940221423545 +85541,427.70499999964727,-0.05509397289960421 +85542,427.70999999964727,-0.055093923655533915 +85543,427.71499999964726,-0.05509387441014337 +85544,427.71999999964726,-0.05509382516343236 +85545,427.72499999964725,-0.055093775915400614 +85546,427.72999999964725,-0.055093726666047914 +85547,427.73499999964724,-0.05509367741537402 +85548,427.73999999964724,-0.055093628163378684 +85549,427.74499999964723,-0.05509357891006167 +85550,427.74999999964723,-0.055093529655422746 +85551,427.7549999996472,-0.05509348039946166 +85552,427.7599999996472,-0.05509343114217818 +85553,427.7649999996472,-0.055093381883572067 +85554,427.7699999996472,-0.055093332623643076 +85555,427.7749999996472,-0.05509328336239099 +85556,427.7799999996472,-0.05509323409981555 +85557,427.7849999996472,-0.05509318483591652 +85558,427.7899999996472,-0.05509313557069366 +85559,427.7949999996472,-0.05509308630414674 +85560,427.7999999996472,-0.05509303703627552 +85561,427.8049999996472,-0.05509298776707975 +85562,427.8099999996472,-0.0550929384965592 +85563,427.81499999964717,-0.05509288922471363 +85564,427.81999999964717,-0.055092839951542814 +85565,427.82499999964716,-0.0550927906770465 +85566,427.82999999964716,-0.05509274140122444 +85567,427.83499999964715,-0.05509269212407642 +85568,427.83999999964715,-0.055092642845602204 +85569,427.84499999964714,-0.055092593565801526 +85570,427.84999999964714,-0.05509254428467416 +85571,427.85499999964713,-0.055092495002219875 +85572,427.85999999964713,-0.055092445718438444 +85573,427.8649999996471,-0.05509239643332961 +85574,427.8699999996471,-0.05509234714689315 +85575,427.8749999996471,-0.05509229785912881 +85576,427.8799999996471,-0.05509224857003635 +85577,427.8849999996471,-0.05509219927961554 +85578,427.8899999996471,-0.05509214998786615 +85579,427.8949999996471,-0.05509210069478795 +85580,427.8999999996471,-0.05509205140038068 +85581,427.9049999996471,-0.05509200210464413 +85582,427.9099999996471,-0.055091952807578025 +85583,427.9149999996471,-0.05509190350918216 +85584,427.9199999996471,-0.05509185420945629 +85585,427.92499999964707,-0.05509180490840016 +85586,427.92999999964707,-0.055091755606013565 +85587,427.93499999964706,-0.05509170630229625 +85588,427.93999999964706,-0.05509165699724798 +85589,427.94499999964705,-0.055091607690868516 +85590,427.94999999964705,-0.055091558383157636 +85591,427.95499999964704,-0.05509150907411508 +85592,427.95999999964704,-0.05509145976374063 +85593,427.96499999964703,-0.05509141045203404 +85594,427.96999999964703,-0.055091361138995085 +85595,427.974999999647,-0.05509131182462352 +85596,427.979999999647,-0.0550912625089191 +85597,427.984999999647,-0.05509121319188161 +85598,427.989999999647,-0.0550911638735108 +85599,427.994999999647,-0.05509111455380642 +85600,427.999999999647,-0.05509106523276826 +85601,428.004999999647,-0.05509101591039607 +85602,428.009999999647,-0.05509096658668962 +85603,428.014999999647,-0.05509091726164867 +85604,428.019999999647,-0.055090867935273 +85605,428.024999999647,-0.055090818607562354 +85606,428.029999999647,-0.055090769278516506 +85607,428.03499999964697,-0.05509071994813522 +85608,428.03999999964697,-0.05509067061641825 +85609,428.04499999964696,-0.05509062128336538 +85610,428.04999999964696,-0.05509057194897636 +85611,428.05499999964695,-0.05509052261325095 +85612,428.05999999964695,-0.055090473276188934 +85613,428.06499999964694,-0.05509042393779007 +85614,428.06999999964694,-0.0550903745980541 +85615,428.07499999964693,-0.05509032525698082 +85616,428.07999999964693,-0.05509027591456999 +85617,428.0849999996469,-0.05509022657082136 +85618,428.0899999996469,-0.055090177225734706 +85619,428.0949999996469,-0.055090127879309794 +85620,428.0999999996469,-0.055090078531546384 +85621,428.1049999996469,-0.05509002918244424 +85622,428.1099999996469,-0.05508997983200312 +85623,428.1149999996469,-0.05508993048022282 +85624,428.1199999996469,-0.05508988112710307 +85625,428.1249999996469,-0.05508983177264366 +85626,428.1299999996469,-0.05508978241684435 +85627,428.1349999996469,-0.055089733059704896 +85628,428.1399999996469,-0.05508968370122507 +85629,428.14499999964687,-0.055089634341404646 +85630,428.14999999964687,-0.055089584980243377 +85631,428.15499999964686,-0.055089535617741034 +85632,428.15999999964686,-0.055089486253897375 +85633,428.16499999964685,-0.055089436888712186 +85634,428.16999999964685,-0.05508938752218522 +85635,428.17499999964684,-0.05508933815431624 +85636,428.17999999964684,-0.055089288785105016 +85637,428.18499999964683,-0.055089239414551315 +85638,428.18999999964683,-0.055089190042654904 +85639,428.1949999996468,-0.05508914066941556 +85640,428.1999999996468,-0.055089091294833026 +85641,428.2049999996468,-0.05508904191890709 +85642,428.2099999996468,-0.055088992541637495 +85643,428.2149999996468,-0.055088943163024026 +85644,428.2199999996468,-0.05508889378306645 +85645,428.2249999996468,-0.055088844401764536 +85646,428.2299999996468,-0.055088795019118036 +85647,428.2349999996468,-0.05508874563512673 +85648,428.2399999996468,-0.055088696249790375 +85649,428.2449999996468,-0.055088646863108735 +85650,428.2499999996468,-0.0550885974750816 +85651,428.25499999964677,-0.05508854808570871 +85652,428.25999999964677,-0.05508849869498985 +85653,428.26499999964676,-0.05508844930292479 +85654,428.26999999964676,-0.05508839990951329 +85655,428.27499999964675,-0.05508835051475511 +85656,428.27999999964675,-0.05508830111865003 +85657,428.28499999964674,-0.055088251721197794 +85658,428.28999999964674,-0.0550882023223982 +85659,428.29499999964673,-0.055088152922251 +85660,428.29999999964673,-0.055088103520755966 +85661,428.3049999996467,-0.055088054117912864 +85662,428.3099999996467,-0.05508800471372146 +85663,428.3149999996467,-0.05508795530818154 +85664,428.3199999996467,-0.055087905901292845 +85665,428.3249999996467,-0.05508785649305516 +85666,428.3299999996467,-0.055087807083468235 +85667,428.3349999996467,-0.05508775767253185 +85668,428.3399999996467,-0.055087708260245775 +85669,428.3449999996467,-0.05508765884660979 +85670,428.3499999996467,-0.055087609431623635 +85671,428.3549999996467,-0.0550875600152871 +85672,428.3599999996467,-0.05508751059759995 +85673,428.36499999964667,-0.05508746117856194 +85674,428.36999999964667,-0.05508741175817285 +85675,428.37499999964666,-0.05508736233643245 +85676,428.37999999964666,-0.055087312913340514 +85677,428.38499999964665,-0.055087263488896795 +85678,428.38999999964665,-0.055087214063101075 +85679,428.39499999964664,-0.05508716463595312 +85680,428.39999999964664,-0.055087115207452686 +85681,428.40499999964663,-0.05508706577759955 +85682,428.40999999964663,-0.055087016346393486 +85683,428.4149999996466,-0.05508696691383426 +85684,428.4199999996466,-0.05508691747992165 +85685,428.4249999996466,-0.05508686804465542 +85686,428.4299999996466,-0.05508681860803533 +85687,428.4349999996466,-0.055086769170061146 +85688,428.4399999996466,-0.055086719730732654 +85689,428.4449999996466,-0.055086670290049614 +85690,428.4499999996466,-0.05508662084801179 +85691,428.4549999996466,-0.055086571404618964 +85692,428.4599999996466,-0.05508652195987091 +85693,428.4649999996466,-0.05508647251376738 +85694,428.4699999996466,-0.055086423066308156 +85695,428.47499999964657,-0.05508637361749301 +85696,428.47999999964657,-0.05508632416732169 +85697,428.48499999964656,-0.05508627471579399 +85698,428.48999999964656,-0.05508622526290968 +85699,428.49499999964655,-0.055086175808668515 +85700,428.49999999964655,-0.055086126353070274 +85701,428.50499999964654,-0.05508607689611472 +85702,428.50999999964654,-0.05508602743780163 +85703,428.51499999964653,-0.05508597797813077 +85704,428.51999999964653,-0.05508592851710192 +85705,428.5249999996465,-0.05508587905471484 +85706,428.5299999996465,-0.0550858295909693 +85707,428.5349999996465,-0.05508578012586507 +85708,428.5399999996465,-0.055085730659401935 +85709,428.5449999996465,-0.05508568119157965 +85710,428.5499999996465,-0.05508563172239799 +85711,428.5549999996465,-0.05508558225185674 +85712,428.5599999996465,-0.05508553277995564 +85713,428.5649999996465,-0.05508548330669449 +85714,428.5699999996465,-0.05508543383207304 +85715,428.5749999996465,-0.05508538435609107 +85716,428.5799999996465,-0.05508533487874836 +85717,428.58499999964647,-0.05508528540004467 +85718,428.58999999964647,-0.05508523591997977 +85719,428.59499999964646,-0.05508518643855344 +85720,428.59999999964646,-0.05508513695576544 +85721,428.60499999964645,-0.05508508747161555 +85722,428.60999999964645,-0.05508503798610354 +85723,428.61499999964644,-0.05508498849922919 +85724,428.61999999964644,-0.05508493901099225 +85725,428.62499999964643,-0.0550848895213925 +85726,428.62999999964643,-0.05508484003042972 +85727,428.6349999996464,-0.055084790538103674 +85728,428.6399999996464,-0.055084741044414146 +85729,428.6449999996464,-0.05508469154936088 +85730,428.6499999996464,-0.05508464205294368 +85731,428.6549999996464,-0.05508459255516231 +85732,428.6599999996464,-0.05508454305601653 +85733,428.6649999996464,-0.05508449355550612 +85734,428.6699999996464,-0.055084444053630846 +85735,428.6749999996464,-0.055084394550390485 +85736,428.6799999996464,-0.05508434504578481 +85737,428.6849999996464,-0.055084295539813595 +85738,428.6899999996464,-0.0550842460324766 +85739,428.69499999964637,-0.05508419652377362 +85740,428.69999999964637,-0.0550841470137044 +85741,428.70499999964636,-0.05508409750226873 +85742,428.70999999964636,-0.05508404798946639 +85743,428.71499999964635,-0.05508399847529712 +85744,428.71999999964635,-0.05508394895976074 +85745,428.72499999964634,-0.05508389944285698 +85746,428.72999999964634,-0.055083849924585634 +85747,428.73499999964633,-0.055083800404946474 +85748,428.73999999964633,-0.05508375088393928 +85749,428.7449999996463,-0.0550837013615638 +85750,428.7499999996463,-0.05508365183781982 +85751,428.7549999996463,-0.05508360231270711 +85752,428.7599999996463,-0.05508355278622547 +85753,428.7649999996463,-0.05508350325837463 +85754,428.7699999996463,-0.0550834537291544 +85755,428.7749999996463,-0.055083404198564535 +85756,428.7799999996463,-0.05508335466660481 +85757,428.7849999996463,-0.055083305133274994 +85758,428.7899999996463,-0.05508325559857487 +85759,428.7949999996463,-0.055083206062504206 +85760,428.7999999996463,-0.05508315652506278 +85761,428.80499999964627,-0.05508310698625036 +85762,428.80999999964627,-0.05508305744606673 +85763,428.81499999964626,-0.05508300790451166 +85764,428.81999999964626,-0.055082958361584916 +85765,428.82499999964625,-0.055082908817286266 +85766,428.82999999964625,-0.055082859271615506 +85767,428.83499999964624,-0.0550828097245724 +85768,428.83999999964624,-0.05508276017615671 +85769,428.84499999964623,-0.05508271062636823 +85770,428.84999999964623,-0.055082661075206714 +85771,428.8549999996462,-0.05508261152267196 +85772,428.8599999996462,-0.05508256196876373 +85773,428.8649999996462,-0.0550825124134818 +85774,428.8699999996462,-0.05508246285682593 +85775,428.8749999996462,-0.055082413298795915 +85776,428.8799999996462,-0.05508236373939151 +85777,428.8849999996462,-0.05508231417861251 +85778,428.8899999996462,-0.055082264616458675 +85779,428.8949999996462,-0.055082215052929796 +85780,428.8999999996462,-0.055082165488025636 +85781,428.9049999996462,-0.055082115921745965 +85782,428.9099999996462,-0.055082066354090575 +85783,428.91499999964617,-0.055082016785059223 +85784,428.91999999964617,-0.0550819672146517 +85785,428.92499999964616,-0.05508191764286777 +85786,428.92999999964616,-0.0550818680697072 +85787,428.93499999964615,-0.05508181849516977 +85788,428.93999999964615,-0.05508176891925527 +85789,428.94499999964614,-0.055081719341963466 +85790,428.94999999964614,-0.05508166976329413 +85791,428.95499999964613,-0.05508162018324704 +85792,428.95999999964613,-0.055081570601821984 +85793,428.9649999996461,-0.05508152101901871 +85794,428.9699999996461,-0.055081471434837014 +85795,428.9749999996461,-0.05508142184927667 +85796,428.9799999996461,-0.055081372262337454 +85797,428.9849999996461,-0.055081322674019134 +85798,428.9899999996461,-0.055081273084321494 +85799,428.9949999996461,-0.05508122349324431 +85800,428.9999999996461,-0.05508117390078735 +85801,429.0049999996461,-0.055081124306950384 +85802,429.0099999996461,-0.05508107471173321 +85803,429.0149999996461,-0.05508102511513559 +85804,429.0199999996461,-0.0550809755171573 +85805,429.02499999964607,-0.055080925917798125 +85806,429.02999999964607,-0.05508087631705783 +85807,429.03499999964606,-0.05508082671493619 +85808,429.03999999964606,-0.05508077711143299 +85809,429.04499999964605,-0.055080727506548015 +85810,429.04999999964605,-0.05508067790028103 +85811,429.05499999964604,-0.055080628292631814 +85812,429.05999999964604,-0.05508057868360014 +85813,429.06499999964603,-0.05508052907318577 +85814,429.06999999964603,-0.055080479461388505 +85815,429.074999999646,-0.05508042984820813 +85816,429.079999999646,-0.055080380233644394 +85817,429.084999999646,-0.055080330617697085 +85818,429.089999999646,-0.05508028100036599 +85819,429.094999999646,-0.055080231381650864 +85820,429.099999999646,-0.0550801817615515 +85821,429.104999999646,-0.05508013214006768 +85822,429.109999999646,-0.05508008251719916 +85823,429.114999999646,-0.05508003289294574 +85824,429.119999999646,-0.05507998326730719 +85825,429.124999999646,-0.05507993364028329 +85826,429.129999999646,-0.0550798840118738 +85827,429.13499999964597,-0.055079834382078516 +85828,429.13999999964597,-0.05507978475089722 +85829,429.14499999964596,-0.05507973511832966 +85830,429.14999999964596,-0.05507968548437565 +85831,429.15499999964595,-0.05507963584903494 +85832,429.15999999964595,-0.05507958621230733 +85833,429.16499999964594,-0.05507953657419259 +85834,429.16999999964594,-0.05507948693469048 +85835,429.17499999964593,-0.0550794372938008 +85836,429.17999999964593,-0.05507938765152331 +85837,429.1849999996459,-0.0550793380078578 +85838,429.1899999996459,-0.05507928836280405 +85839,429.1949999996459,-0.05507923871636185 +85840,429.1999999996459,-0.05507918906853094 +85841,429.2049999996459,-0.055079139419311134 +85842,429.2099999996459,-0.05507908976870219 +85843,429.2149999996459,-0.05507904011670389 +85844,429.2199999996459,-0.05507899046331603 +85845,429.2249999996459,-0.055078940808538375 +85846,429.2299999996459,-0.055078891152370704 +85847,429.2349999996459,-0.05507884149481278 +85848,429.2399999996459,-0.05507879183586441 +85849,429.24499999964587,-0.05507874217552535 +85850,429.24999999964587,-0.05507869251379539 +85851,429.25499999964586,-0.05507864285067431 +85852,429.25999999964586,-0.05507859318616189 +85853,429.26499999964585,-0.05507854352025789 +85854,429.26999999964585,-0.055078493852962124 +85855,429.27499999964584,-0.05507844418427435 +85856,429.27999999964584,-0.05507839451419433 +85857,429.28499999964583,-0.05507834484272188 +85858,429.28999999964583,-0.055078295169856746 +85859,429.2949999996458,-0.05507824549559872 +85860,429.2999999996458,-0.0550781958199476 +85861,429.3049999996458,-0.055078146142903135 +85862,429.3099999996458,-0.05507809646446512 +85863,429.3149999996458,-0.05507804678463333 +85864,429.3199999996458,-0.05507799710340756 +85865,429.3249999996458,-0.05507794742078757 +85866,429.3299999996458,-0.05507789773677314 +85867,429.3349999996458,-0.05507784805136406 +85868,429.3399999996458,-0.05507779836456011 +85869,429.3449999996458,-0.05507774867636107 +85870,429.3499999996458,-0.055077698986766704 +85871,429.35499999964577,-0.05507764929577681 +85872,429.35999999964577,-0.05507759960339117 +85873,429.36499999964576,-0.055077549909609544 +85874,429.36999999964576,-0.05507750021443174 +85875,429.37499999964575,-0.055077450517857514 +85876,429.37999999964575,-0.05507740081988665 +85877,429.38499999964574,-0.05507735112051894 +85878,429.38999999964574,-0.05507730141975415 +85879,429.39499999964573,-0.05507725171759208 +85880,429.39999999964573,-0.05507720201403248 +85881,429.4049999996457,-0.05507715230907516 +85882,429.4099999996457,-0.05507710260271989 +85883,429.4149999996457,-0.05507705289496644 +85884,429.4199999996457,-0.05507700318581462 +85885,429.4249999996457,-0.05507695347526418 +85886,429.4299999996457,-0.0550769037633149 +85887,429.4349999996457,-0.05507685404996659 +85888,429.4399999996457,-0.05507680433521901 +85889,429.4449999996457,-0.05507675461907195 +85890,429.4499999996457,-0.05507670490152518 +85891,429.4549999996457,-0.055076655182578475 +85892,429.4599999996457,-0.05507660546223164 +85893,429.46499999964567,-0.05507655574048445 +85894,429.46999999964567,-0.055076506017336685 +85895,429.47499999964566,-0.05507645629278811 +85896,429.47999999964566,-0.05507640656683853 +85897,429.48499999964565,-0.0550763568394877 +85898,429.48999999964565,-0.055076307110735426 +85899,429.49499999964564,-0.05507625738058148 +85900,429.49999999964564,-0.05507620764902565 +85901,429.50499999964563,-0.0550761579160677 +85902,429.50999999964563,-0.055076108181707426 +85903,429.5149999996456,-0.05507605844594461 +85904,429.5199999996456,-0.05507600870877903 +85905,429.5249999996456,-0.05507595897021047 +85906,429.5299999996456,-0.055075909230238695 +85907,429.5349999996456,-0.05507585948886352 +85908,429.5399999996456,-0.055075809746084704 +85909,429.5449999996456,-0.05507576000190203 +85910,429.5499999996456,-0.055075710256315275 +85911,429.5549999996456,-0.05507566050932424 +85912,429.5599999996456,-0.0550756107609287 +85913,429.5649999996456,-0.05507556101112843 +85914,429.5699999996456,-0.055075511259923216 +85915,429.57499999964557,-0.05507546150731285 +85916,429.57999999964557,-0.0550754117532971 +85917,429.58499999964556,-0.05507536199787578 +85918,429.58999999964556,-0.05507531224104862 +85919,429.59499999964555,-0.05507526248281545 +85920,429.59999999964555,-0.055075212723176024 +85921,429.60499999964554,-0.055075162962130136 +85922,429.60999999964554,-0.05507511319967756 +85923,429.61499999964553,-0.0550750634358181 +85924,429.61999999964553,-0.055075013670551516 +85925,429.6249999996455,-0.05507496390387759 +85926,429.6299999996455,-0.05507491413579612 +85927,429.6349999996455,-0.05507486436630688 +85928,429.6399999996455,-0.055074814595409666 +85929,429.6449999996455,-0.05507476482310425 +85930,429.6499999996455,-0.055074715049390405 +85931,429.6549999996455,-0.055074665274267944 +85932,429.6599999996455,-0.05507461549773663 +85933,429.6649999996455,-0.05507456571979624 +85934,429.6699999996455,-0.05507451594044657 +85935,429.6749999996455,-0.055074466159687405 +85936,429.6799999996455,-0.05507441637751852 +85937,429.68499999964547,-0.0550743665939397 +85938,429.68999999964547,-0.055074316808950745 +85939,429.69499999964546,-0.05507426702255141 +85940,429.69999999964546,-0.0550742172347415 +85941,429.70499999964545,-0.05507416744552079 +85942,429.70999999964545,-0.055074117654889065 +85943,429.71499999964544,-0.05507406786284611 +85944,429.71999999964544,-0.05507401806939172 +85945,429.72499999964543,-0.05507396827452565 +85946,429.72999999964543,-0.05507391847824772 +85947,429.7349999996454,-0.0550738686805577 +85948,429.7399999996454,-0.05507381888145536 +85949,429.7449999996454,-0.05507376908094049 +85950,429.7499999996454,-0.05507371927901289 +85951,429.7549999996454,-0.055073669475672334 +85952,429.7599999996454,-0.0550736196709186 +85953,429.7649999996454,-0.055073569864751475 +85954,429.7699999996454,-0.055073520057170755 +85955,429.7749999996454,-0.05507347024817622 +85956,429.7799999996454,-0.05507342043776765 +85957,429.7849999996454,-0.055073370625944834 +85958,429.7899999996454,-0.05507332081270755 +85959,429.79499999964537,-0.05507327099805559 +85960,429.79999999964537,-0.05507322118198873 +85961,429.80499999964536,-0.05507317136450676 +85962,429.80999999964536,-0.05507312154560947 +85963,429.81499999964535,-0.05507307172529664 +85964,429.81999999964535,-0.05507302190356806 +85965,429.82499999964534,-0.05507297208042351 +85966,429.82999999964534,-0.05507292225586278 +85967,429.83499999964533,-0.05507287242988565 +85968,429.83999999964533,-0.05507282260249191 +85969,429.8449999996453,-0.05507277277368134 +85970,429.8499999996453,-0.05507272294345373 +85971,429.8549999996453,-0.055072673111808856 +85972,429.8599999996453,-0.05507262327874652 +85973,429.8649999996453,-0.0550725734442665 +85974,429.8699999996453,-0.05507252360836857 +85975,429.8749999996453,-0.05507247377105253 +85976,429.8799999996453,-0.05507242393231816 +85977,429.8849999996453,-0.05507237409216525 +85978,429.8899999996453,-0.05507232425059358 +85979,429.8949999996453,-0.05507227440760295 +85980,429.8999999996453,-0.055072224563193134 +85981,429.90499999964527,-0.055072174717363906 +85982,429.90999999964527,-0.05507212487011508 +85983,429.91499999964526,-0.055072075021446426 +85984,429.91999999964526,-0.05507202517135772 +85985,429.92499999964525,-0.055071975319848775 +85986,429.92999999964525,-0.05507192546691935 +85987,429.93499999964524,-0.05507187561256926 +85988,429.93999999964524,-0.05507182575679826 +85989,429.94499999964523,-0.05507177589960615 +85990,429.94999999964523,-0.05507172604099273 +85991,429.9549999996452,-0.05507167618095777 +85992,429.9599999996452,-0.05507162631950105 +85993,429.9649999996452,-0.05507157645662238 +85994,429.9699999996452,-0.055071526592321535 +85995,429.9749999996452,-0.05507147672659829 +85996,429.9799999996452,-0.05507142685945246 +85997,429.9849999996452,-0.055071376990883804 +85998,429.9899999996452,-0.055071327120892126 +85999,429.9949999996452,-0.055071277249477205 +86000,429.9999999996452,-0.05507122737663883 +86001,430.0049999996452,-0.055071177502376785 +86002,430.0099999996452,-0.05507112762669087 +86003,430.01499999964517,-0.05507107774958085 +86004,430.01999999964517,-0.05507102787104654 +86005,430.02499999964516,-0.055070977991087705 +86006,430.02999999964516,-0.05507092810970414 +86007,430.03499999964515,-0.05507087822689563 +86008,430.03999999964515,-0.05507082834266197 +86009,430.04499999964514,-0.05507077845700293 +86010,430.04999999964514,-0.05507072856991832 +86011,430.05499999964513,-0.055070678681407914 +86012,430.05999999964513,-0.05507062879147151 +86013,430.0649999996451,-0.055070578900108885 +86014,430.0699999996451,-0.05507052900731983 +86015,430.0749999996451,-0.05507047911310414 +86016,430.0799999996451,-0.055070429217461594 +86017,430.0849999996451,-0.05507037932039198 +86018,430.0899999996451,-0.05507032942189508 +86019,430.0949999996451,-0.05507027952197069 +86020,430.0999999996451,-0.0550702296206186 +86021,430.1049999996451,-0.0550701797178386 +86022,430.1099999996451,-0.05507012981363047 +86023,430.1149999996451,-0.055070079907994014 +86024,430.1199999996451,-0.05507003000092901 +86025,430.12499999964507,-0.055069980092435245 +86026,430.12999999964507,-0.05506993018251251 +86027,430.13499999964506,-0.05506988027116059 +86028,430.13999999964506,-0.055069830358379264 +86029,430.14499999964505,-0.05506978044416835 +86030,430.14999999964505,-0.0550697305285276 +86031,430.15499999964504,-0.05506968061145683 +86032,430.15999999964504,-0.055069630692955826 +86033,430.16499999964503,-0.055069580773024374 +86034,430.16999999964503,-0.05506953085166225 +86035,430.174999999645,-0.055069480928869256 +86036,430.179999999645,-0.05506943100464517 +86037,430.184999999645,-0.055069381078989794 +86038,430.189999999645,-0.05506933115190291 +86039,430.194999999645,-0.05506928122338431 +86040,430.199999999645,-0.05506923129343379 +86041,430.204999999645,-0.05506918136205113 +86042,430.209999999645,-0.05506913142923611 +86043,430.214999999645,-0.05506908149498854 +86044,430.219999999645,-0.05506903155930819 +86045,430.224999999645,-0.055068981622194854 +86046,430.229999999645,-0.055068931683648334 +86047,430.23499999964497,-0.05506888174366841 +86048,430.23999999964497,-0.05506883180225488 +86049,430.24499999964496,-0.05506878185940752 +86050,430.24999999964496,-0.05506873191512614 +86051,430.25499999964495,-0.055068681969410505 +86052,430.25999999964495,-0.055068632022260415 +86053,430.26499999964494,-0.055068582073675675 +86054,430.26999999964494,-0.05506853212365604 +86055,430.27499999964493,-0.05506848217220133 +86056,430.27999999964493,-0.055068432219311333 +86057,430.2849999996449,-0.05506838226498583 +86058,430.2899999996449,-0.055068332309224616 +86059,430.2949999996449,-0.055068282352027466 +86060,430.2999999996449,-0.0550682323933942 +86061,430.3049999996449,-0.05506818243332458 +86062,430.3099999996449,-0.0550681324718184 +86063,430.3149999996449,-0.05506808250887547 +86064,430.3199999996449,-0.05506803254449557 +86065,430.3249999996449,-0.05506798257867848 +86066,430.3299999996449,-0.055067932611424 +86067,430.3349999996449,-0.055067882642731915 +86068,430.3399999996449,-0.05506783267260204 +86069,430.34499999964487,-0.055067782701034136 +86070,430.34999999964487,-0.05506773272802801 +86071,430.35499999964486,-0.05506768275358344 +86072,430.35999999964486,-0.05506763277770023 +86073,430.36499999964485,-0.05506758280037815 +86074,430.36999999964485,-0.055067532821617006 +86075,430.37499999964484,-0.05506748284141659 +86076,430.37999999964484,-0.0550674328597767 +86077,430.38499999964483,-0.05506738287669712 +86078,430.38999999964483,-0.05506733289217765 +86079,430.3949999996448,-0.055067282906218054 +86080,430.3999999996448,-0.05506723291881815 +86081,430.4049999996448,-0.05506718292997772 +86082,430.4099999996448,-0.05506713293969655 +86083,430.4149999996448,-0.055067082947974445 +86084,430.4199999996448,-0.05506703295481117 +86085,430.4249999996448,-0.05506698296020655 +86086,430.4299999996448,-0.05506693296416035 +86087,430.4349999996448,-0.055066882966672365 +86088,430.4399999996448,-0.05506683296774242 +86089,430.4449999996448,-0.05506678296737026 +86090,430.4499999996448,-0.055066732965555705 +86091,430.45499999964477,-0.055066682962298545 +86092,430.45999999964477,-0.05506663295759856 +86093,430.46499999964476,-0.055066582951455556 +86094,430.46999999964476,-0.05506653294386932 +86095,430.47499999964475,-0.05506648293483964 +86096,430.47999999964475,-0.05506643292436631 +86097,430.48499999964474,-0.05506638291244911 +86098,430.48999999964474,-0.055066332899087855 +86099,430.49499999964473,-0.05506628288428233 +86100,430.49999999964473,-0.05506623286803232 +86101,430.5049999996447,-0.05506618285033761 +86102,430.5099999996447,-0.05506613283119802 +86103,430.5149999996447,-0.05506608281061332 +86104,430.5199999996447,-0.05506603278858332 +86105,430.5249999996447,-0.05506598276510779 +86106,430.5299999996447,-0.05506593274018654 +86107,430.5349999996447,-0.05506588271381935 +86108,430.5399999996447,-0.05506583268600602 +86109,430.5449999996447,-0.05506578265674635 +86110,430.5499999996447,-0.055065732626040115 +86111,430.5549999996447,-0.05506568259388712 +86112,430.5599999996447,-0.05506563256028716 +86113,430.56499999964467,-0.05506558252524002 +86114,430.56999999964466,-0.0550655324887455 +86115,430.57499999964466,-0.05506548245080339 +86116,430.57999999964466,-0.055065432411413484 +86117,430.58499999964465,-0.05506538237057558 +86118,430.58999999964465,-0.05506533232828946 +86119,430.59499999964464,-0.055065282284554914 +86120,430.59999999964464,-0.05506523223937176 +86121,430.60499999964463,-0.05506518219273976 +86122,430.60999999964463,-0.05506513214465872 +86123,430.6149999996446,-0.05506508209512845 +86124,430.6199999996446,-0.055065032044148726 +86125,430.6249999996446,-0.05506498199171935 +86126,430.6299999996446,-0.055064931937840116 +86127,430.6349999996446,-0.055064881882510804 +86128,430.6399999996446,-0.05506483182573122 +86129,430.6449999996446,-0.055064781767501146 +86130,430.6499999996446,-0.055064731707820384 +86131,430.6549999996446,-0.05506468164668874 +86132,430.6599999996446,-0.055064631584105996 +86133,430.6649999996446,-0.05506458152007194 +86134,430.6699999996446,-0.055064531454586375 +86135,430.67499999964457,-0.0550644813876491 +86136,430.67999999964456,-0.0550644313192599 +86137,430.68499999964456,-0.05506438124941856 +86138,430.68999999964456,-0.05506433117812489 +86139,430.69499999964455,-0.055064281105378685 +86140,430.69999999964455,-0.05506423103117973 +86141,430.70499999964454,-0.05506418095552782 +86142,430.70999999964454,-0.05506413087842276 +86143,430.71499999964453,-0.05506408079986433 +86144,430.71999999964453,-0.055064030719852344 +86145,430.7249999996445,-0.05506398063838657 +86146,430.7299999996445,-0.05506393055546683 +86147,430.7349999996445,-0.05506388047109289 +86148,430.7399999996445,-0.055063830385264564 +86149,430.7449999996445,-0.05506378029798165 +86150,430.7499999996445,-0.05506373020924395 +86151,430.7549999996445,-0.05506368011905123 +86152,430.7599999996445,-0.05506363002740329 +86153,430.7649999996445,-0.05506357993429995 +86154,430.7699999996445,-0.05506352983974099 +86155,430.7749999996445,-0.055063479743726204 +86156,430.7799999996445,-0.05506342964625539 +86157,430.78499999964447,-0.05506337954732834 +86158,430.78999999964446,-0.05506332944694485 +86159,430.79499999964446,-0.05506327934510472 +86160,430.79999999964446,-0.05506322924180773 +86161,430.80499999964445,-0.05506317913705371 +86162,430.80999999964445,-0.05506312903084242 +86163,430.81499999964444,-0.055063078923173664 +86164,430.81999999964444,-0.055063028814047246 +86165,430.82499999964443,-0.05506297870346296 +86166,430.82999999964443,-0.055062928591420604 +86167,430.8349999996444,-0.05506287847791997 +86168,430.8399999996444,-0.05506282836296084 +86169,430.8449999996444,-0.055062778246543036 +86170,430.8499999996444,-0.05506272812866634 +86171,430.8549999996444,-0.05506267800933054 +86172,430.8599999996444,-0.05506262788853545 +86173,430.8649999996444,-0.05506257776628085 +86174,430.8699999996444,-0.05506252764256655 +86175,430.8749999996444,-0.05506247751739234 +86176,430.8799999996444,-0.055062427390758006 +86177,430.8849999996444,-0.055062377262663345 +86178,430.8899999996444,-0.05506232713310817 +86179,430.89499999964437,-0.05506227700209228 +86180,430.89999999964436,-0.05506222686961545 +86181,430.90499999964436,-0.05506217673567748 +86182,430.90999999964436,-0.05506212660027819 +86183,430.91499999964435,-0.055062076463417355 +86184,430.91999999964435,-0.05506202632509478 +86185,430.92499999964434,-0.055061976185310245 +86186,430.92999999964434,-0.05506192604406357 +86187,430.93499999964433,-0.05506187590135454 +86188,430.93999999964433,-0.05506182575718294 +86189,430.9449999996443,-0.0550617756115486 +86190,430.9499999996443,-0.05506172546445129 +86191,430.9549999996443,-0.05506167531589081 +86192,430.9599999996443,-0.05506162516586697 +86193,430.9649999996443,-0.055061575014379555 +86194,430.9699999996443,-0.05506152486142837 +86195,430.9749999996443,-0.05506147470701319 +86196,430.9799999996443,-0.05506142455113384 +86197,430.9849999996443,-0.05506137439379011 +86198,430.9899999996443,-0.055061324234981786 +86199,430.9949999996443,-0.05506127407470868 +86200,430.9999999996443,-0.055061223912970574 +86201,431.00499999964427,-0.05506117374976728 +86202,431.00999999964426,-0.055061123585098584 +86203,431.01499999964426,-0.0550610734189643 +86204,431.01999999964426,-0.05506102325136421 +86205,431.02499999964425,-0.05506097308229812 +86206,431.02999999964425,-0.05506092291176583 +86207,431.03499999964424,-0.05506087273976712 +86208,431.03999999964424,-0.05506082256630181 +86209,431.04499999964423,-0.05506077239136968 +86210,431.0499999996442,-0.05506072221497054 +86211,431.0549999996442,-0.055060672037104186 +86212,431.0599999996442,-0.0550606218577704 +86213,431.0649999996442,-0.055060571676969004 +86214,431.0699999996442,-0.05506052149469979 +86215,431.0749999996442,-0.05506047131096254 +86216,431.0799999996442,-0.05506042112575708 +86217,431.0849999996442,-0.05506037093908317 +86218,431.0899999996442,-0.055060320750940646 +86219,431.0949999996442,-0.05506027056132929 +86220,431.0999999996442,-0.0550602203702489 +86221,431.1049999996442,-0.05506017017769928 +86222,431.1099999996442,-0.05506011998368021 +86223,431.11499999964417,-0.055060069788191515 +86224,431.11999999964416,-0.055060019591232974 +86225,431.12499999964416,-0.05505996939280439 +86226,431.12999999964416,-0.05505991919290557 +86227,431.13499999964415,-0.05505986899153631 +86228,431.13999999964415,-0.0550598187886964 +86229,431.14499999964414,-0.05505976858438565 +86230,431.14999999964414,-0.055059718378603864 +86231,431.15499999964413,-0.05505966817135082 +86232,431.1599999996441,-0.05505961796262634 +86233,431.1649999996441,-0.0550595677524302 +86234,431.1699999996441,-0.0550595175407622 +86235,431.1749999996441,-0.05505946732762216 +86236,431.1799999996441,-0.05505941711300987 +86237,431.1849999996441,-0.05505936689692513 +86238,431.1899999996441,-0.055059316679367726 +86239,431.1949999996441,-0.05505926646033747 +86240,431.1999999996441,-0.05505921623983416 +86241,431.2049999996441,-0.05505916601785759 +86242,431.2099999996441,-0.05505911579440757 +86243,431.2149999996441,-0.05505906556948391 +86244,431.2199999996441,-0.055059015343086375 +86245,431.22499999964407,-0.05505896511521479 +86246,431.22999999964406,-0.05505891488586895 +86247,431.23499999964406,-0.05505886465504864 +86248,431.23999999964406,-0.055058814422753684 +86249,431.24499999964405,-0.05505876418898387 +86250,431.24999999964405,-0.055058713953739 +86251,431.25499999964404,-0.055058663717018876 +86252,431.25999999964404,-0.05505861347882328 +86253,431.26499999964403,-0.05505856323915202 +86254,431.269999999644,-0.05505851299800492 +86255,431.274999999644,-0.05505846275538175 +86256,431.279999999644,-0.05505841251128233 +86257,431.284999999644,-0.05505836226570645 +86258,431.289999999644,-0.05505831201865391 +86259,431.294999999644,-0.05505826177012452 +86260,431.299999999644,-0.05505821152011806 +86261,431.304999999644,-0.05505816126863435 +86262,431.309999999644,-0.05505811101567319 +86263,431.314999999644,-0.05505806076123437 +86264,431.319999999644,-0.055058010505317695 +86265,431.324999999644,-0.05505796024792296 +86266,431.329999999644,-0.055057909989049976 +86267,431.33499999964397,-0.05505785972869855 +86268,431.33999999964396,-0.05505780946686847 +86269,431.34499999964396,-0.05505775920355953 +86270,431.34999999964396,-0.055057708938771543 +86271,431.35499999964395,-0.055057658672504305 +86272,431.35999999964395,-0.05505760840475762 +86273,431.36499999964394,-0.05505755813553128 +86274,431.36999999964394,-0.0550575078648251 +86275,431.37499999964393,-0.05505745759263887 +86276,431.3799999996439,-0.05505740731897239 +86277,431.3849999996439,-0.05505735704382548 +86278,431.3899999996439,-0.05505730676719792 +86279,431.3949999996439,-0.05505725648908951 +86280,431.3999999996439,-0.05505720620950007 +86281,431.4049999996439,-0.0550571559284294 +86282,431.4099999996439,-0.055057105645877284 +86283,431.4149999996439,-0.05505705536184354 +86284,431.4199999996439,-0.05505700507632796 +86285,431.4249999996439,-0.055056954789330335 +86286,431.4299999996439,-0.0550569045008505 +86287,431.4349999996439,-0.05505685421088822 +86288,431.4399999996439,-0.055056803919443315 +86289,431.44499999964387,-0.05505675362651559 +86290,431.44999999964386,-0.055056703332104835 +86291,431.45499999964386,-0.055056653036210865 +86292,431.45999999964386,-0.05505660273883348 +86293,431.46499999964385,-0.05505655243997246 +86294,431.46999999964385,-0.05505650213962764 +86295,431.47499999964384,-0.0550564518377988 +86296,431.47999999964384,-0.05505640153448576 +86297,431.48499999964383,-0.055056351229688306 +86298,431.4899999996438,-0.05505630092340624 +86299,431.4949999996438,-0.055056250615639374 +86300,431.4999999996438,-0.0550562003063875 +86301,431.5049999996438,-0.055056149995650415 +86302,431.5099999996438,-0.05505609968342794 +86303,431.5149999996438,-0.055056049369719876 +86304,431.5199999996438,-0.05505599905452601 +86305,431.5249999996438,-0.055055948737846166 +86306,431.5299999996438,-0.05505589841968012 +86307,431.5349999996438,-0.05505584810002769 +86308,431.5399999996438,-0.05505579777888867 +86309,431.5449999996438,-0.05505574745626289 +86310,431.5499999996438,-0.05505569713215013 +86311,431.55499999964377,-0.05505564680655019 +86312,431.55999999964376,-0.05505559647946288 +86313,431.56499999964376,-0.05505554615088799 +86314,431.56999999964376,-0.05505549582082534 +86315,431.57499999964375,-0.05505544548927473 +86316,431.57999999964375,-0.05505539515623596 +86317,431.58499999964374,-0.055055344821708846 +86318,431.58999999964374,-0.05505529448569317 +86319,431.59499999964373,-0.055055244148188735 +86320,431.5999999996437,-0.05505519380919536 +86321,431.6049999996437,-0.05505514346871284 +86322,431.6099999996437,-0.055055093126740985 +86323,431.6149999996437,-0.05505504278327959 +86324,431.6199999996437,-0.055054992438328454 +86325,431.6249999996437,-0.055054942091887396 +86326,431.6299999996437,-0.05505489174395622 +86327,431.6349999996437,-0.055054841394534704 +86328,431.6399999996437,-0.055054791043622674 +86329,431.6449999996437,-0.05505474069121993 +86330,431.6499999996437,-0.05505469033732628 +86331,431.6549999996437,-0.055054639981941524 +86332,431.6599999996437,-0.055054589625065445 +86333,431.66499999964367,-0.05505453926669787 +86334,431.66999999964366,-0.05505448890683862 +86335,431.67499999964366,-0.05505443854548746 +86336,431.67999999964366,-0.05505438818264422 +86337,431.68499999964365,-0.05505433781830868 +86338,431.68999999964365,-0.055054287452480664 +86339,431.69499999964364,-0.05505423708515998 +86340,431.69999999964364,-0.055054186716346425 +86341,431.70499999964363,-0.0550541363460398 +86342,431.7099999996436,-0.055054085974239914 +86343,431.7149999996436,-0.055054035600946565 +86344,431.7199999996436,-0.055053985226159556 +86345,431.7249999996436,-0.0550539348498787 +86346,431.7299999996436,-0.055053884472103805 +86347,431.7349999996436,-0.055053834092834666 +86348,431.7399999996436,-0.055053783712071085 +86349,431.7449999996436,-0.05505373332981287 +86350,431.7499999996436,-0.05505368294605984 +86351,431.7549999996436,-0.05505363256081178 +86352,431.7599999996436,-0.0550535821740685 +86353,431.7649999996436,-0.05505353178582981 +86354,431.7699999996436,-0.055053481396095505 +86355,431.77499999964357,-0.05505343100486541 +86356,431.77999999964356,-0.05505338061213931 +86357,431.78499999964356,-0.05505333021791701 +86358,431.78999999964356,-0.05505327982219832 +86359,431.79499999964355,-0.05505322942498306 +86360,431.79999999964355,-0.055053179026271014 +86361,431.80499999964354,-0.055053128626061994 +86362,431.80999999964354,-0.0550530782243558 +86363,431.81499999964353,-0.055053027821152255 +86364,431.8199999996435,-0.055052977416451154 +86365,431.8249999996435,-0.05505292701025231 +86366,431.8299999996435,-0.0550528766025555 +86367,431.8349999996435,-0.05505282619336056 +86368,431.8399999996435,-0.05505277578266728 +86369,431.8449999996435,-0.055052725370475473 +86370,431.8499999996435,-0.05505267495678494 +86371,431.8549999996435,-0.05505262454159549 +86372,431.8599999996435,-0.055052574124906925 +86373,431.8649999996435,-0.05505252370671906 +86374,431.8699999996435,-0.055052473287031674 +86375,431.8749999996435,-0.05505242286584461 +86376,431.8799999996435,-0.05505237244315765 +86377,431.88499999964347,-0.05505232201897062 +86378,431.88999999964346,-0.0550522715932833 +86379,431.89499999964346,-0.05505222116609551 +86380,431.89999999964346,-0.055052170737407057 +86381,431.90499999964345,-0.05505212030721773 +86382,431.90999999964345,-0.05505206987552737 +86383,431.91499999964344,-0.05505201944233575 +86384,431.91999999964344,-0.055051969007642684 +86385,431.92499999964343,-0.055051918571447984 +86386,431.9299999996434,-0.05505186813375147 +86387,431.9349999996434,-0.055051817694552925 +86388,431.9399999996434,-0.05505176725385216 +86389,431.9449999996434,-0.055051716811649005 +86390,431.9499999996434,-0.05505166636794323 +86391,431.9549999996434,-0.05505161592273466 +86392,431.9599999996434,-0.0550515654760231 +86393,431.9649999996434,-0.05505151502780836 +86394,431.9699999996434,-0.05505146457809025 +86395,431.9749999996434,-0.055051414126868564 +86396,431.9799999996434,-0.05505136367414312 +86397,431.9849999996434,-0.055051313219913724 +86398,431.9899999996434,-0.05505126276418018 +86399,431.99499999964337,-0.05505121230694229 +86400,431.99999999964336,-0.05505116184819987 +86401,432.00499999964336,-0.05505111138795272 +86402,432.00999999964336,-0.05505106092620065 +86403,432.01499999964335,-0.055051010462943466 +86404,432.01999999964335,-0.05505095999818097 +86405,432.02499999964334,-0.05505090953191298 +86406,432.02999999964334,-0.055050859064139306 +86407,432.03499999964333,-0.05505080859485973 +86408,432.0399999996433,-0.055050758124074096 +86409,432.0449999996433,-0.055050707651782174 +86410,432.0499999996433,-0.05505065717798381 +86411,432.0549999996433,-0.05505060670267878 +86412,432.0599999996433,-0.0550505562258669 +86413,432.0649999996433,-0.05505050574754799 +86414,432.0699999996433,-0.05505045526772184 +86415,432.0749999996433,-0.05505040478638827 +86416,432.0799999996433,-0.05505035430354708 +86417,432.0849999996433,-0.05505030381919809 +86418,432.0899999996433,-0.055050253333341105 +86419,432.0949999996433,-0.05505020284597592 +86420,432.0999999996433,-0.05505015235710235 +86421,432.10499999964327,-0.0550501018667202 +86422,432.10999999964326,-0.05505005137482928 +86423,432.11499999964326,-0.055050000881429396 +86424,432.11999999964326,-0.055049950386520365 +86425,432.12499999964325,-0.055049899890102 +86426,432.12999999964325,-0.05504984939217408 +86427,432.13499999964324,-0.05504979889273645 +86428,432.13999999964324,-0.055049748391788896 +86429,432.14499999964323,-0.05504969788933123 +86430,432.1499999996432,-0.05504964738536326 +86431,432.1549999996432,-0.05504959687988479 +86432,432.1599999996432,-0.055049546372895636 +86433,432.1649999996432,-0.05504949586439561 +86434,432.1699999996432,-0.05504944535438452 +86435,432.1749999996432,-0.05504939484286216 +86436,432.1799999996432,-0.055049344329828345 +86437,432.1849999996432,-0.055049293815282896 +86438,432.1899999996432,-0.05504924329922561 +86439,432.1949999996432,-0.05504919278165629 +86440,432.1999999996432,-0.05504914226257476 +86441,432.2049999996432,-0.05504909174198082 +86442,432.2099999996432,-0.055049041219874285 +86443,432.21499999964317,-0.05504899069625496 +86444,432.21999999964316,-0.055048940171122655 +86445,432.22499999964316,-0.05504888964447717 +86446,432.22999999964316,-0.05504883911631833 +86447,432.23499999964315,-0.05504878858664594 +86448,432.23999999964315,-0.055048738055459796 +86449,432.24499999964314,-0.05504868752275972 +86450,432.24999999964314,-0.05504863698854553 +86451,432.25499999964313,-0.05504858645281701 +86452,432.2599999996431,-0.05504853591557398 +86453,432.2649999996431,-0.05504848537681626 +86454,432.2699999996431,-0.05504843483654365 +86455,432.2749999996431,-0.05504838429475596 +86456,432.2799999996431,-0.055048333751453 +86457,432.2849999996431,-0.05504828320663458 +86458,432.2899999996431,-0.05504823266030051 +86459,432.2949999996431,-0.055048182112450605 +86460,432.2999999996431,-0.05504813156308467 +86461,432.3049999996431,-0.0550480810122025 +86462,432.3099999996431,-0.05504803045980393 +86463,432.3149999996431,-0.05504797990588876 +86464,432.3199999996431,-0.0550479293504568 +86465,432.32499999964307,-0.05504787879350785 +86466,432.32999999964306,-0.055047828235041736 +86467,432.33499999964306,-0.05504777767505826 +86468,432.33999999964306,-0.05504772711355723 +86469,432.34499999964305,-0.05504767655053847 +86470,432.34999999964305,-0.055047625986001776 +86471,432.35499999964304,-0.055047575419946954 +86472,432.35999999964304,-0.055047524852373825 +86473,432.36499999964303,-0.0550474742832822 +86474,432.369999999643,-0.055047423712671885 +86475,432.374999999643,-0.05504737314054269 +86476,432.379999999643,-0.05504732256689442 +86477,432.384999999643,-0.055047271991726904 +86478,432.389999999643,-0.055047221415039926 +86479,432.394999999643,-0.05504717083683332 +86480,432.399999999643,-0.05504712025710688 +86481,432.404999999643,-0.05504706967586043 +86482,432.409999999643,-0.05504701909309378 +86483,432.414999999643,-0.05504696850880673 +86484,432.419999999643,-0.0550469179229991 +86485,432.424999999643,-0.0550468673356707 +86486,432.429999999643,-0.05504681674682134 +86487,432.43499999964297,-0.055046766156450815 +86488,432.43999999964296,-0.055046715564558965 +86489,432.44499999964296,-0.05504666497114559 +86490,432.44999999964296,-0.05504661437621049 +86491,432.45499999964295,-0.055046563779753484 +86492,432.45999999964295,-0.055046513181774386 +86493,432.46499999964294,-0.055046462582273 +86494,432.46999999964294,-0.055046411981249134 +86495,432.47499999964293,-0.05504636137870261 +86496,432.4799999996429,-0.05504631077463324 +86497,432.4849999996429,-0.055046260169040837 +86498,432.4899999996429,-0.0550462095619252 +86499,432.4949999996429,-0.055046158953286156 +86500,432.4999999996429,-0.05504610834312349 +86501,432.5049999996429,-0.055046057731437045 +86502,432.5099999996429,-0.05504600711822661 +86503,432.5149999996429,-0.055045956503492026 +86504,432.5199999996429,-0.055045905887233064 +86505,432.5249999996429,-0.055045855269449565 +86506,432.5299999996429,-0.05504580465014132 +86507,432.5349999996429,-0.05504575402930817 +86508,432.5399999996429,-0.05504570340694991 +86509,432.54499999964287,-0.05504565278306635 +86510,432.54999999964286,-0.0550456021576573 +86511,432.55499999964286,-0.055045551530722575 +86512,432.55999999964286,-0.05504550090226199 +86513,432.56499999964285,-0.055045450272275365 +86514,432.56999999964285,-0.05504539964076249 +86515,432.57499999964284,-0.05504534900772318 +86516,432.57999999964284,-0.05504529837315727 +86517,432.58499999964283,-0.05504524773706456 +86518,432.5899999996428,-0.05504519709944485 +86519,432.5949999996428,-0.05504514646029797 +86520,432.5999999996428,-0.055045095819623725 +86521,432.6049999996428,-0.055045045177421925 +86522,432.6099999996428,-0.05504499453369239 +86523,432.6149999996428,-0.05504494388843493 +86524,432.6199999996428,-0.05504489324164935 +86525,432.6249999996428,-0.055044842593335475 +86526,432.6299999996428,-0.05504479194349311 +86527,432.6349999996428,-0.05504474129212207 +86528,432.6399999996428,-0.05504469063922217 +86529,432.6449999996428,-0.05504463998479321 +86530,432.6499999996428,-0.05504458932883502 +86531,432.65499999964277,-0.0550445386713474 +86532,432.65999999964276,-0.05504448801233017 +86533,432.66499999964276,-0.05504443735178313 +86534,432.66999999964276,-0.05504438668970612 +86535,432.67499999964275,-0.055044336026098935 +86536,432.67999999964275,-0.055044285360961384 +86537,432.68499999964274,-0.055044234694293294 +86538,432.68999999964274,-0.05504418402609447 +86539,432.69499999964273,-0.055044133356364724 +86540,432.6999999996427,-0.05504408268510388 +86541,432.7049999996427,-0.055044032012311735 +86542,432.7099999996427,-0.0550439813379881 +86543,432.7149999996427,-0.05504393066213281 +86544,432.7199999996427,-0.05504387998474567 +86545,432.7249999996427,-0.05504382930582649 +86546,432.7299999996427,-0.05504377862537509 +86547,432.7349999996427,-0.05504372794339126 +86548,432.7399999996427,-0.05504367725987484 +86549,432.7449999996427,-0.05504362657482564 +86550,432.7499999996427,-0.05504357588824347 +86551,432.7549999996427,-0.05504352520012813 +86552,432.7599999996427,-0.05504347451047946 +86553,432.76499999964267,-0.05504342381929725 +86554,432.76999999964266,-0.05504337312658133 +86555,432.77499999964266,-0.05504332243233151 +86556,432.77999999964265,-0.0550432717365476 +86557,432.78499999964265,-0.05504322103922941 +86558,432.78999999964265,-0.055043170340376764 +86559,432.79499999964264,-0.05504311963998947 +86560,432.79999999964264,-0.055043068938067354 +86561,432.80499999964263,-0.05504301823461022 +86562,432.8099999996426,-0.05504296752961787 +86563,432.8149999996426,-0.05504291682309014 +86564,432.8199999996426,-0.055042866115026824 +86565,432.8249999996426,-0.05504281540542776 +86566,432.8299999996426,-0.05504276469429274 +86567,432.8349999996426,-0.055042713981621604 +86568,432.8399999996426,-0.055042663267414145 +86569,432.8449999996426,-0.05504261255167017 +86570,432.8499999996426,-0.05504256183438953 +86571,432.8549999996426,-0.05504251111557201 +86572,432.8599999996426,-0.05504246039521744 +86573,432.8649999996426,-0.05504240967332561 +86574,432.8699999996426,-0.055042358949896356 +86575,432.87499999964257,-0.05504230822492948 +86576,432.87999999964256,-0.05504225749842482 +86577,432.88499999964256,-0.055042206770382164 +86578,432.88999999964255,-0.05504215604080134 +86579,432.89499999964255,-0.05504210530968217 +86580,432.89999999964255,-0.05504205457702446 +86581,432.90499999964254,-0.05504200384282802 +86582,432.90999999964254,-0.05504195310709268 +86583,432.91499999964253,-0.05504190236981825 +86584,432.9199999996425,-0.055041851631004536 +86585,432.9249999996425,-0.05504180089065136 +86586,432.9299999996425,-0.05504175014875854 +86587,432.9349999996425,-0.055041699405325877 +86588,432.9399999996425,-0.05504164866035319 +86589,432.9449999996425,-0.05504159791384031 +86590,432.9499999996425,-0.05504154716578704 +86591,432.9549999996425,-0.0550414964161932 +86592,432.9599999996425,-0.05504144566505861 +86593,432.9649999996425,-0.05504139491238307 +86594,432.9699999996425,-0.05504134415816641 +86595,432.9749999996425,-0.055041293402408445 +86596,432.9799999996425,-0.055041242645109 +86597,432.98499999964247,-0.05504119188626787 +86598,432.98999999964246,-0.05504114112588488 +86599,432.99499999964246,-0.05504109036395984 +86600,432.99999999964245,-0.055041039600492565 +86601,433.00499999964245,-0.055040988835482876 +86602,433.00999999964245,-0.0550409380689306 +86603,433.01499999964244,-0.055040887300835534 +86604,433.01999999964244,-0.05504083653119751 +86605,433.02499999964243,-0.055040785760016336 +86606,433.0299999996424,-0.055040734987291826 +86607,433.0349999996424,-0.05504068421302379 +86608,433.0399999996424,-0.055040633437212064 +86609,433.0449999996424,-0.05504058265985646 +86610,433.0499999996424,-0.055040531880956776 +86611,433.0549999996424,-0.05504048110051285 +86612,433.0599999996424,-0.055040430318524486 +86613,433.0649999996424,-0.0550403795349915 +86614,433.0699999996424,-0.055040328749913714 +86615,433.0749999996424,-0.05504027796329093 +86616,433.0799999996424,-0.055040227175123 +86617,433.0849999996424,-0.05504017638540969 +86618,433.0899999996424,-0.05504012559415087 +86619,433.09499999964237,-0.05504007480134631 +86620,433.09999999964236,-0.05504002400699585 +86621,433.10499999964236,-0.05503997321109931 +86622,433.10999999964235,-0.055039922413656496 +86623,433.11499999964235,-0.05503987161466724 +86624,433.11999999964235,-0.055039820814131335 +86625,433.12499999964234,-0.05503977001204861 +86626,433.12999999964234,-0.05503971920841889 +86627,433.13499999964233,-0.055039668403241974 +86628,433.1399999996423,-0.0550396175965177 +86629,433.1449999996423,-0.055039566788245876 +86630,433.1499999996423,-0.05503951597842632 +86631,433.1549999996423,-0.05503946516705885 +86632,433.1599999996423,-0.05503941435414328 +86633,433.1649999996423,-0.05503936353967943 +86634,433.1699999996423,-0.05503931272366711 +86635,433.1749999996423,-0.05503926190610615 +86636,433.1799999996423,-0.05503921108699636 +86637,433.1849999996423,-0.05503916026633756 +86638,433.1899999996423,-0.05503910944412957 +86639,433.1949999996423,-0.055039058620372186 +86640,433.1999999996423,-0.05503900779506526 +86641,433.20499999964227,-0.05503895696820858 +86642,433.20999999964226,-0.05503890613980198 +86643,433.21499999964226,-0.05503885530984528 +86644,433.21999999964225,-0.05503880447833828 +86645,433.22499999964225,-0.055038753645280825 +86646,433.22999999964225,-0.055038702810672704 +86647,433.23499999964224,-0.055038651974513755 +86648,433.23999999964224,-0.05503860113680379 +86649,433.24499999964223,-0.05503855029754263 +86650,433.2499999996422,-0.05503849945673008 +86651,433.2549999996422,-0.055038448614365965 +86652,433.2599999996422,-0.0550383977704501 +86653,433.2649999996422,-0.05503834692498232 +86654,433.2699999996422,-0.05503829607796243 +86655,433.2749999996422,-0.05503824522939024 +86656,433.2799999996422,-0.05503819437926559 +86657,433.2849999996422,-0.055038143527588276 +86658,433.2899999996422,-0.05503809267435813 +86659,433.2949999996422,-0.05503804181957496 +86660,433.2999999996422,-0.0550379909632386 +86661,433.3049999996422,-0.055037940105348855 +86662,433.3099999996422,-0.055037889245905545 +86663,433.31499999964217,-0.0550378383849085 +86664,433.31999999964216,-0.05503778752235752 +86665,433.32499999964216,-0.05503773665825244 +86666,433.32999999964215,-0.055037685792593084 +86667,433.33499999964215,-0.055037634925379254 +86668,433.33999999964215,-0.05503758405661077 +86669,433.34499999964214,-0.05503753318628745 +86670,433.34999999964214,-0.05503748231440912 +86671,433.35499999964213,-0.055037431440975594 +86672,433.3599999996421,-0.0550373805659867 +86673,433.3649999996421,-0.05503732968944225 +86674,433.3699999996421,-0.055037278811342065 +86675,433.3749999996421,-0.055037227931685966 +86676,433.3799999996421,-0.05503717705047376 +86677,433.3849999996421,-0.055037126167705265 +86678,433.3899999996421,-0.05503707528338032 +86679,433.3949999996421,-0.05503702439749874 +86680,433.3999999996421,-0.05503697351006034 +86681,433.4049999996421,-0.05503692262106493 +86682,433.4099999996421,-0.05503687173051233 +86683,433.4149999996421,-0.055036820838402375 +86684,433.4199999996421,-0.05503676994473487 +86685,433.42499999964207,-0.055036719049509644 +86686,433.42999999964206,-0.05503666815272651 +86687,433.43499999964206,-0.055036617254385294 +86688,433.43999999964205,-0.05503656635448582 +86689,433.44499999964205,-0.05503651545302789 +86690,433.44999999964205,-0.055036464550011335 +86691,433.45499999964204,-0.055036413645435975 +86692,433.45999999964204,-0.055036362739301625 +86693,433.46499999964203,-0.055036311831608106 +86694,433.469999999642,-0.055036260922355244 +86695,433.474999999642,-0.05503621001154284 +86696,433.479999999642,-0.055036159099170735 +86697,433.484999999642,-0.055036108185238734 +86698,433.489999999642,-0.05503605726974666 +86699,433.494999999642,-0.05503600635269436 +86700,433.499999999642,-0.055035955434081615 +86701,433.504999999642,-0.05503590451390827 +86702,433.509999999642,-0.05503585359217414 +86703,433.514999999642,-0.05503580266887903 +86704,433.519999999642,-0.055035751744022775 +86705,433.524999999642,-0.055035700817605206 +86706,433.529999999642,-0.055035649889626115 +86707,433.53499999964197,-0.055035598960085357 +86708,433.53999999964196,-0.055035548028982716 +86709,433.54499999964196,-0.05503549709631804 +86710,433.54999999964195,-0.055035446162091134 +86711,433.55499999964195,-0.05503539522630182 +86712,433.55999999964195,-0.05503534428894992 +86713,433.56499999964194,-0.055035293350035264 +86714,433.56999999964194,-0.05503524240955766 +86715,433.57499999964193,-0.055035191467516925 +86716,433.5799999996419,-0.0550351405239129 +86717,433.5849999996419,-0.05503508957874539 +86718,433.5899999996419,-0.05503503863201422 +86719,433.5949999996419,-0.05503498768371921 +86720,433.5999999996419,-0.05503493673386018 +86721,433.6049999996419,-0.05503488578243696 +86722,433.6099999996419,-0.05503483482944937 +86723,433.6149999996419,-0.055034783874897214 +86724,433.6199999996419,-0.055034732918780326 +86725,433.6249999996419,-0.055034681961098515 +86726,433.6299999996419,-0.055034631001851624 +86727,433.6349999996419,-0.05503458004103946 +86728,433.6399999996419,-0.05503452907866185 +86729,433.64499999964187,-0.055034478114718594 +86730,433.64999999964186,-0.05503442714920955 +86731,433.65499999964186,-0.05503437618213451 +86732,433.65999999964185,-0.05503432521349331 +86733,433.66499999964185,-0.05503427424328577 +86734,433.66999999964185,-0.055034223271511695 +86735,433.67499999964184,-0.05503417229817093 +86736,433.67999999964184,-0.05503412132326328 +86737,433.68499999964183,-0.05503407034678858 +86738,433.6899999996418,-0.05503401936874664 +86739,433.6949999996418,-0.05503396838913729 +86740,433.6999999996418,-0.05503391740796035 +86741,433.7049999996418,-0.055033866425215634 +86742,433.7099999996418,-0.055033815440902974 +86743,433.7149999996418,-0.05503376445502218 +86744,433.7199999996418,-0.05503371346757308 +86745,433.7249999996418,-0.0550336624785555 +86746,433.7299999996418,-0.05503361148796925 +86747,433.7349999996418,-0.05503356049581417 +86748,433.7399999996418,-0.05503350950209007 +86749,433.7449999996418,-0.05503345850679678 +86750,433.7499999996418,-0.05503340750993411 +86751,433.75499999964177,-0.055033356511501895 +86752,433.75999999964176,-0.05503330551149995 +86753,433.76499999964176,-0.0550332545099281 +86754,433.76999999964175,-0.055033203506786164 +86755,433.77499999964175,-0.055033152502073975 +86756,433.77999999964175,-0.055033101495791346 +86757,433.78499999964174,-0.055033050487938086 +86758,433.78999999964174,-0.05503299947851403 +86759,433.79499999964173,-0.05503294846751901 +86760,433.7999999996417,-0.05503289745495283 +86761,433.8049999996417,-0.05503284644081533 +86762,433.8099999996417,-0.05503279542510633 +86763,433.8149999996417,-0.05503274440782565 +86764,433.8199999996417,-0.055032693388973104 +86765,433.8249999996417,-0.055032642368548525 +86766,433.8299999996417,-0.05503259134655173 +86767,433.8349999996417,-0.05503254032298254 +86768,433.8399999996417,-0.055032489297840784 +86769,433.8449999996417,-0.055032438271126284 +86770,433.8499999996417,-0.055032387242838855 +86771,433.8549999996417,-0.055032336212978324 +86772,433.8599999996417,-0.05503228518154452 +86773,433.86499999964167,-0.05503223414853727 +86774,433.86999999964166,-0.05503218311395638 +86775,433.87499999964166,-0.05503213207780169 +86776,433.87999999964165,-0.05503208104007301 +86777,433.88499999964165,-0.05503203000077018 +86778,433.88999999964165,-0.055031978959892994 +86779,433.89499999964164,-0.05503192791744131 +86780,433.89999999964164,-0.05503187687341493 +86781,433.90499999964163,-0.05503182582781368 +86782,433.9099999996416,-0.05503177478063738 +86783,433.9149999996416,-0.05503172373188586 +86784,433.9199999996416,-0.055031672681558945 +86785,433.9249999996416,-0.055031621629656455 +86786,433.9299999996416,-0.05503157057617821 +86787,433.9349999996416,-0.05503151952112404 +86788,433.9399999996416,-0.05503146846449377 +86789,433.9449999996416,-0.05503141740628722 +86790,433.9499999996416,-0.0550313663465042 +86791,433.9549999996416,-0.05503131528514456 +86792,433.9599999996416,-0.05503126422220811 +86793,433.9649999996416,-0.055031213157694665 +86794,433.9699999996416,-0.05503116209160406 +86795,433.97499999964157,-0.05503111102393612 +86796,433.97999999964156,-0.05503105995469066 +86797,433.98499999964156,-0.05503100888386751 +86798,433.98999999964155,-0.05503095781146651 +86799,433.99499999964155,-0.05503090673748746 +86800,433.99999999964155,-0.05503085566193019 +86801,434.00499999964154,-0.05503080458479453 +86802,434.00999999964154,-0.055030753506080304 +86803,434.01499999964153,-0.05503070242578733 +86804,434.0199999996415,-0.055030651343915424 +86805,434.0249999996415,-0.05503060026046443 +86806,434.0299999996415,-0.05503054917543416 +86807,434.0349999996415,-0.055030498088824445 +86808,434.0399999996415,-0.055030447000635106 +86809,434.0449999996415,-0.055030395910865976 +86810,434.0499999996415,-0.05503034481951687 +86811,434.0549999996415,-0.05503029372658762 +86812,434.0599999996415,-0.05503024263207803 +86813,434.0649999996415,-0.05503019153598794 +86814,434.0699999996415,-0.05503014043831718 +86815,434.0749999996415,-0.05503008933906556 +86816,434.0799999996415,-0.05503003823823292 +86817,434.08499999964147,-0.055029987135819074 +86818,434.08999999964146,-0.05502993603182385 +86819,434.09499999964146,-0.05502988492624708 +86820,434.09999999964145,-0.05502983381908858 +86821,434.10499999964145,-0.055029782710348175 +86822,434.10999999964145,-0.05502973160002569 +86823,434.11499999964144,-0.055029680488120944 +86824,434.11999999964144,-0.055029629374633786 +86825,434.12499999964143,-0.05502957825956402 +86826,434.1299999996414,-0.055029527142911476 +86827,434.1349999996414,-0.05502947602467597 +86828,434.1399999996414,-0.05502942490485735 +86829,434.1449999996414,-0.055029373783455425 +86830,434.1499999996414,-0.05502932266047002 +86831,434.1549999996414,-0.05502927153590096 +86832,434.1599999996414,-0.05502922040974808 +86833,434.1649999996414,-0.055029169282011195 +86834,434.1699999996414,-0.05502911815269013 +86835,434.1749999996414,-0.055029067021784714 +86836,434.1799999996414,-0.055029015889294784 +86837,434.1849999996414,-0.05502896475522014 +86838,434.1899999996414,-0.055028913619560645 +86839,434.19499999964137,-0.05502886248231609 +86840,434.19999999964136,-0.05502881134348631 +86841,434.20499999964136,-0.05502876020307113 +86842,434.20999999964135,-0.05502870906107039 +86843,434.21499999964135,-0.055028657917483896 +86844,434.21999999964135,-0.05502860677231148 +86845,434.22499999964134,-0.05502855562555297 +86846,434.22999999964134,-0.05502850447720819 +86847,434.23499999964133,-0.05502845332727697 +86848,434.2399999996413,-0.05502840217575913 +86849,434.2449999996413,-0.055028351022654506 +86850,434.2499999996413,-0.05502829986796291 +86851,434.2549999996413,-0.055028248711684186 +86852,434.2599999996413,-0.055028197553818145 +86853,434.2649999996413,-0.055028146394364624 +86854,434.2699999996413,-0.05502809523332344 +86855,434.2749999996413,-0.05502804407069442 +86856,434.2799999996413,-0.0550279929064774 +86857,434.2849999996413,-0.055027941740672194 +86858,434.2899999996413,-0.05502789057327863 +86859,434.2949999996413,-0.05502783940429654 +86860,434.2999999996413,-0.05502778823372576 +86861,434.30499999964127,-0.0550277370615661 +86862,434.30999999964126,-0.05502768588781738 +86863,434.31499999964126,-0.055027634712479456 +86864,434.31999999964125,-0.05502758353555213 +86865,434.32499999964125,-0.055027532357035225 +86866,434.32999999964125,-0.05502748117692859 +86867,434.33499999964124,-0.055027429995232024 +86868,434.33999999964124,-0.05502737881194538 +86869,434.34499999964123,-0.055027327627068474 +86870,434.3499999996412,-0.05502727644060113 +86871,434.3549999996412,-0.05502722525254318 +86872,434.3599999996412,-0.05502717406289443 +86873,434.3649999996412,-0.05502712287165474 +86874,434.3699999996412,-0.05502707167882392 +86875,434.3749999996412,-0.05502702048440179 +86876,434.3799999996412,-0.05502696928838819 +86877,434.3849999996412,-0.055026918090782945 +86878,434.3899999996412,-0.05502686689158588 +86879,434.3949999996412,-0.05502681569079682 +86880,434.3999999996412,-0.05502676448841561 +86881,434.4049999996412,-0.05502671328444205 +86882,434.4099999996412,-0.055026662078875986 +86883,434.41499999964117,-0.05502661087171722 +86884,434.41999999964116,-0.05502655966296561 +86885,434.42499999964116,-0.05502650845262098 +86886,434.42999999964115,-0.05502645724068313 +86887,434.43499999964115,-0.055026406027151906 +86888,434.43999999964115,-0.05502635481202714 +86889,434.44499999964114,-0.05502630359530865 +86890,434.44999999964114,-0.05502625237699627 +86891,434.45499999964113,-0.05502620115708983 +86892,434.4599999996411,-0.055026149935589144 +86893,434.4649999996411,-0.05502609871249406 +86894,434.4699999996411,-0.05502604748780439 +86895,434.4749999996411,-0.055025996261519966 +86896,434.4799999996411,-0.05502594503364061 +86897,434.4849999996411,-0.055025893804166164 +86898,434.4899999996411,-0.055025842573096444 +86899,434.4949999996411,-0.055025791340431285 +86900,434.4999999996411,-0.055025740106170506 +86901,434.5049999996411,-0.05502568887031394 +86902,434.5099999996411,-0.05502563763286142 +86903,434.5149999996411,-0.055025586393812775 +86904,434.5199999996411,-0.055025535153167826 +86905,434.52499999964107,-0.0550254839109264 +86906,434.52999999964106,-0.05502543266708833 +86907,434.53499999964106,-0.05502538142165344 +86908,434.53999999964105,-0.055025330174621544 +86909,434.54499999964105,-0.055025278925992495 +86910,434.54999999964105,-0.05502522767576612 +86911,434.55499999964104,-0.055025176423942244 +86912,434.55999999964104,-0.05502512517052068 +86913,434.56499999964103,-0.055025073915501266 +86914,434.569999999641,-0.05502502265888384 +86915,434.574999999641,-0.05502497140066822 +86916,434.579999999641,-0.055024920140854236 +86917,434.584999999641,-0.055024868879441725 +86918,434.589999999641,-0.055024817616430514 +86919,434.594999999641,-0.055024766351820416 +86920,434.599999999641,-0.05502471508561126 +86921,434.604999999641,-0.05502466381780289 +86922,434.609999999641,-0.05502461254839513 +86923,434.614999999641,-0.05502456127738781 +86924,434.619999999641,-0.05502451000478075 +86925,434.624999999641,-0.0550244587305738 +86926,434.629999999641,-0.05502440745476676 +86927,434.63499999964097,-0.05502435617735948 +86928,434.63999999964096,-0.055024304898351785 +86929,434.64499999964096,-0.0550242536177435 +86930,434.64999999964095,-0.055024202335534456 +86931,434.65499999964095,-0.05502415105172447 +86932,434.65999999964095,-0.0550240997663134 +86933,434.66499999964094,-0.05502404847930104 +86934,434.66999999964094,-0.055023997190687256 +86935,434.67499999964093,-0.05502394590047185 +86936,434.6799999996409,-0.05502389460865466 +86937,434.6849999996409,-0.055023843315235514 +86938,434.6899999996409,-0.055023792020214235 +86939,434.6949999996409,-0.05502374072359066 +86940,434.6999999996409,-0.055023689425364626 +86941,434.7049999996409,-0.055023638125535956 +86942,434.7099999996409,-0.05502358682410447 +86943,434.7149999996409,-0.055023535521070005 +86944,434.7199999996409,-0.0550234842164324 +86945,434.7249999996409,-0.05502343291019146 +86946,434.7299999996409,-0.05502338160234704 +86947,434.7349999996409,-0.055023330292898964 +86948,434.7399999996409,-0.05502327898184706 +86949,434.74499999964087,-0.05502322766919115 +86950,434.74999999964086,-0.05502317635493106 +86951,434.75499999964086,-0.05502312503906663 +86952,434.75999999964085,-0.0550230737215977 +86953,434.76499999964085,-0.05502302240252408 +86954,434.76999999964085,-0.05502297108184561 +86955,434.77499999964084,-0.05502291975956212 +86956,434.77999999964084,-0.05502286843567343 +86957,434.78499999964083,-0.05502281711017939 +86958,434.7899999996408,-0.055022765783079804 +86959,434.7949999996408,-0.055022714454374524 +86960,434.7999999996408,-0.05502266312406337 +86961,434.8049999996408,-0.05502261179214618 +86962,434.8099999996408,-0.05502256045862278 +86963,434.8149999996408,-0.055022509123493 +86964,434.8199999996408,-0.055022457786756664 +86965,434.8249999996408,-0.05502240644841361 +86966,434.8299999996408,-0.05502235510846366 +86967,434.8349999996408,-0.05502230376690666 +86968,434.8399999996408,-0.05502225242374243 +86969,434.8449999996408,-0.055022201078970795 +86970,434.8499999996408,-0.055022149732591605 +86971,434.85499999964077,-0.05502209838460466 +86972,434.85999999964076,-0.05502204703500982 +86973,434.86499999964076,-0.05502199568380691 +86974,434.86999999964075,-0.05502194433099574 +86975,434.87499999964075,-0.055021892976576156 +86976,434.87999999964075,-0.05502184162054799 +86977,434.88499999964074,-0.05502179026291107 +86978,434.88999999964074,-0.05502173890366524 +86979,434.89499999964073,-0.05502168754281031 +86980,434.8999999996407,-0.055021636180346126 +86981,434.9049999996407,-0.05502158481627249 +86982,434.9099999996407,-0.05502153345058928 +86983,434.9149999996407,-0.05502148208329629 +86984,434.9199999996407,-0.05502143071439336 +86985,434.9249999996407,-0.05502137934388033 +86986,434.9299999996407,-0.05502132797175702 +86987,434.9349999996407,-0.055021276598023264 +86988,434.9399999996407,-0.05502122522267891 +86989,434.9449999996407,-0.05502117384572377 +86990,434.9499999996407,-0.055021122467157665 +86991,434.9549999996407,-0.055021071086980455 +86992,434.9599999996407,-0.055021019705191965 +86993,434.96499999964067,-0.055020968321792 +86994,434.96999999964066,-0.05502091693678043 +86995,434.97499999964066,-0.055020865550157054 +86996,434.97999999964065,-0.05502081416192172 +86997,434.98499999964065,-0.05502076277207425 +86998,434.98999999964065,-0.055020711380614484 +86999,434.99499999964064,-0.05502065998754225 +87000,434.99999999964064,-0.05502060859285737 +87001,435.00499999964063,-0.0550205571965597 +87002,435.0099999996406,-0.055020505798649054 +87003,435.0149999996406,-0.05502045439912527 +87004,435.0199999996406,-0.055020402997988174 +87005,435.0249999996406,-0.0550203515952376 +87006,435.0299999996406,-0.05502030019087339 +87007,435.0349999996406,-0.05502024878489536 +87008,435.0399999996406,-0.05502019737730335 +87009,435.0449999996406,-0.055020145968097185 +87010,435.0499999996406,-0.055020094557276696 +87011,435.0549999996406,-0.05502004314484173 +87012,435.0599999996406,-0.0550199917307921 +87013,435.0649999996406,-0.055019940315127656 +87014,435.0699999996406,-0.05501988889784822 +87015,435.07499999964057,-0.055019837478953636 +87016,435.07999999964056,-0.055019786058443716 +87017,435.08499999964056,-0.055019734636318304 +87018,435.08999999964055,-0.05501968321257723 +87019,435.09499999964055,-0.05501963178722034 +87020,435.09999999964054,-0.055019580360247435 +87021,435.10499999964054,-0.055019528931658374 +87022,435.10999999964054,-0.05501947750145298 +87023,435.11499999964053,-0.055019426069631096 +87024,435.1199999996405,-0.05501937463619254 +87025,435.1249999996405,-0.055019323201137144 +87026,435.1299999996405,-0.05501927176446475 +87027,435.1349999996405,-0.05501922032617519 +87028,435.1399999996405,-0.05501916888626829 +87029,435.1449999996405,-0.05501911744474389 +87030,435.1499999996405,-0.0550190660016018 +87031,435.1549999996405,-0.05501901455684188 +87032,435.1599999996405,-0.05501896311046396 +87033,435.1649999996405,-0.05501891166246786 +87034,435.1699999996405,-0.055018860212853425 +87035,435.1749999996405,-0.05501880876162048 +87036,435.1799999996405,-0.05501875730876886 +87037,435.18499999964047,-0.05501870585429839 +87038,435.18999999964046,-0.055018654398208924 +87039,435.19499999964046,-0.055018602940500275 +87040,435.19999999964045,-0.05501855148117228 +87041,435.20499999964045,-0.05501850002022478 +87042,435.20999999964044,-0.055018448557657605 +87043,435.21499999964044,-0.05501839709347058 +87044,435.21999999964044,-0.05501834562766355 +87045,435.22499999964043,-0.055018294160236354 +87046,435.2299999996404,-0.0550182426911888 +87047,435.2349999996404,-0.05501819122052075 +87048,435.2399999996404,-0.05501813974823202 +87049,435.2449999996404,-0.05501808827432244 +87050,435.2499999996404,-0.055018036798791844 +87051,435.2549999996404,-0.05501798532164007 +87052,435.2599999996404,-0.055017933842866955 +87053,435.2649999996404,-0.055017882362472334 +87054,435.2699999996404,-0.05501783088045603 +87055,435.2749999996404,-0.05501777939681789 +87056,435.2799999996404,-0.05501772791155773 +87057,435.2849999996404,-0.0550176764246754 +87058,435.2899999996404,-0.05501762493617073 +87059,435.29499999964037,-0.055017573446043556 +87060,435.29999999964036,-0.0550175219542937 +87061,435.30499999964036,-0.055017470460921 +87062,435.30999999964035,-0.055017418965925304 +87063,435.31499999964035,-0.055017367469306425 +87064,435.31999999964034,-0.05501731597106419 +87065,435.32499999964034,-0.05501726447119846 +87066,435.32999999964034,-0.055017212969709066 +87067,435.33499999964033,-0.055017161466595826 +87068,435.3399999996403,-0.05501710996185858 +87069,435.3449999996403,-0.05501705845549717 +87070,435.3499999996403,-0.05501700694751142 +87071,435.3549999996403,-0.05501695543790117 +87072,435.3599999996403,-0.055016903926666264 +87073,435.3649999996403,-0.05501685241380651 +87074,435.3699999996403,-0.055016800899321754 +87075,435.3749999996403,-0.055016749383211834 +87076,435.3799999996403,-0.05501669786547659 +87077,435.3849999996403,-0.05501664634611585 +87078,435.3899999996403,-0.055016594825129446 +87079,435.3949999996403,-0.05501654330251721 +87080,435.3999999996403,-0.05501649177827898 +87081,435.40499999964027,-0.055016440252414596 +87082,435.40999999964026,-0.055016388724923884 +87083,435.41499999964026,-0.05501633719580669 +87084,435.41999999964025,-0.05501628566506282 +87085,435.42499999964025,-0.055016234132692146 +87086,435.42999999964024,-0.05501618259869449 +87087,435.43499999964024,-0.05501613106306966 +87088,435.43999999964024,-0.05501607952581753 +87089,435.44499999964023,-0.055016027986937915 +87090,435.4499999996402,-0.05501597644643066 +87091,435.4549999996402,-0.05501592490429559 +87092,435.4599999996402,-0.05501587336053254 +87093,435.4649999996402,-0.05501582181514135 +87094,435.4699999996402,-0.05501577026812186 +87095,435.4749999996402,-0.05501571871947388 +87096,435.4799999996402,-0.05501566716919727 +87097,435.4849999996402,-0.05501561561729186 +87098,435.4899999996402,-0.05501556406375747 +87099,435.4949999996402,-0.05501551250859395 +87100,435.4999999996402,-0.05501546095180113 +87101,435.5049999996402,-0.055015409393378845 +87102,435.5099999996402,-0.05501535783332694 +87103,435.51499999964017,-0.05501530627164525 +87104,435.51999999964016,-0.055015254708333586 +87105,435.52499999964016,-0.05501520314339182 +87106,435.52999999964015,-0.05501515157681975 +87107,435.53499999964015,-0.05501510000861724 +87108,435.53999999964014,-0.05501504843878411 +87109,435.54499999964014,-0.05501499686732019 +87110,435.54999999964014,-0.05501494529422534 +87111,435.55499999964013,-0.05501489371949937 +87112,435.5599999996401,-0.05501484214314213 +87113,435.5649999996401,-0.055014790565153446 +87114,435.5699999996401,-0.05501473898553317 +87115,435.5749999996401,-0.05501468740428112 +87116,435.5799999996401,-0.05501463582139714 +87117,435.5849999996401,-0.05501458423688106 +87118,435.5899999996401,-0.055014532650732736 +87119,435.5949999996401,-0.055014481062951974 +87120,435.5999999996401,-0.05501442947353863 +87121,435.6049999996401,-0.05501437788249253 +87122,435.6099999996401,-0.05501432628981351 +87123,435.6149999996401,-0.055014274695501415 +87124,435.6199999996401,-0.055014223099556066 +87125,435.62499999964007,-0.0550141715019773 +87126,435.62999999964006,-0.055014119902764974 +87127,435.63499999964006,-0.05501406830191891 +87128,435.63999999964005,-0.05501401669943894 +87129,435.64499999964005,-0.055013965095324906 +87130,435.64999999964004,-0.055013913489576655 +87131,435.65499999964004,-0.055013861882193996 +87132,435.65999999964004,-0.05501381027317679 +87133,435.66499999964003,-0.05501375866252485 +87134,435.66999999964,-0.05501370705023804 +87135,435.67499999964,-0.05501365543631617 +87136,435.67999999964,-0.0550136038207591 +87137,435.68499999964,-0.05501355220356665 +87138,435.68999999964,-0.05501350058473867 +87139,435.69499999964,-0.05501344896427497 +87140,435.69999999964,-0.05501339734217541 +87141,435.70499999964,-0.05501334571843983 +87142,435.70999999964,-0.055013294093068044 +87143,435.71499999964,-0.05501324246605991 +87144,435.71999999964,-0.05501319083741525 +87145,435.72499999964,-0.05501313920713392 +87146,435.72999999964,-0.05501308757521574 +87147,435.73499999963997,-0.05501303594166055 +87148,435.73999999963996,-0.055012984306468185 +87149,435.74499999963996,-0.05501293266963849 +87150,435.74999999963995,-0.055012881031171294 +87151,435.75499999963995,-0.055012829391066435 +87152,435.75999999963994,-0.05501277774932375 +87153,435.76499999963994,-0.05501272610594307 +87154,435.76999999963994,-0.05501267446092425 +87155,435.77499999963993,-0.0550126228142671 +87156,435.7799999996399,-0.05501257116597148 +87157,435.7849999996399,-0.055012519516037216 +87158,435.7899999996399,-0.05501246786446414 +87159,435.7949999996399,-0.0550124162112521 +87160,435.7999999996399,-0.05501236455640094 +87161,435.8049999996399,-0.05501231289991049 +87162,435.8099999996399,-0.05501226124178058 +87163,435.8149999996399,-0.05501220958201106 +87164,435.8199999996399,-0.05501215792060174 +87165,435.8249999996399,-0.05501210625755249 +87166,435.8299999996399,-0.05501205459286314 +87167,435.8349999996399,-0.055012002926533514 +87168,435.8399999996399,-0.05501195125856346 +87169,435.84499999963987,-0.0550118995889528 +87170,435.84999999963986,-0.05501184791770139 +87171,435.85499999963986,-0.055011796244809064 +87172,435.85999999963985,-0.055011744570275654 +87173,435.86499999963985,-0.055011692894101 +87174,435.86999999963984,-0.05501164121628494 +87175,435.87499999963984,-0.05501158953682732 +87176,435.87999999963984,-0.05501153785572795 +87177,435.88499999963983,-0.05501148617298671 +87178,435.8899999996398,-0.0550114344886034 +87179,435.8949999996398,-0.05501138280257787 +87180,435.8999999996398,-0.05501133111490997 +87181,435.9049999996398,-0.055011279425599524 +87182,435.9099999996398,-0.05501122773464637 +87183,435.9149999996398,-0.05501117604205035 +87184,435.9199999996398,-0.0550111243478113 +87185,435.9249999996398,-0.05501107265192907 +87186,435.9299999996398,-0.05501102095440348 +87187,435.9349999996398,-0.055010969255234375 +87188,435.9399999996398,-0.0550109175544216 +87189,435.9449999996398,-0.055010865851964984 +87190,435.9499999996398,-0.055010814147864365 +87191,435.95499999963977,-0.05501076244211959 +87192,435.95999999963976,-0.05501071073473048 +87193,435.96499999963976,-0.0550106590256969 +87194,435.96999999963975,-0.05501060731501866 +87195,435.97499999963975,-0.05501055560269562 +87196,435.97999999963974,-0.0550105038887276 +87197,435.98499999963974,-0.05501045217311445 +87198,435.98999999963974,-0.055010400455856 +87199,435.99499999963973,-0.05501034873695211 +87200,435.9999999996397,-0.0550102970164026 +87201,436.0049999996397,-0.05501024529420731 +87202,436.0099999996397,-0.05501019357036607 +87203,436.0149999996397,-0.055010141844878735 +87204,436.0199999996397,-0.05501009011774514 +87205,436.0249999996397,-0.055010038388965114 +87206,436.0299999996397,-0.05500998665853851 +87207,436.0349999996397,-0.05500993492646515 +87208,436.0399999996397,-0.05500988319274489 +87209,436.0449999996397,-0.05500983145737756 +87210,436.0499999996397,-0.055009779720363 +87211,436.0549999996397,-0.05500972798170105 +87212,436.0599999996397,-0.055009676241391546 +87213,436.06499999963967,-0.05500962449943433 +87214,436.06999999963966,-0.055009572755829225 +87215,436.07499999963966,-0.055009521010576094 +87216,436.07999999963965,-0.05500946926367476 +87217,436.08499999963965,-0.055009417515125066 +87218,436.08999999963964,-0.055009365764926856 +87219,436.09499999963964,-0.05500931401307997 +87220,436.09999999963964,-0.055009262259584246 +87221,436.10499999963963,-0.05500921050443952 +87222,436.1099999996396,-0.05500915874764563 +87223,436.1149999996396,-0.05500910698920241 +87224,436.1199999996396,-0.055009055229109705 +87225,436.1249999996396,-0.05500900346736737 +87226,436.1299999996396,-0.05500895170397521 +87227,436.1349999996396,-0.0550088999389331 +87228,436.1399999996396,-0.055008848172240846 +87229,436.1449999996396,-0.055008796403898316 +87230,436.1499999996396,-0.055008744633905336 +87231,436.1549999996396,-0.05500869286226174 +87232,436.1599999996396,-0.05500864108896738 +87233,436.1649999996396,-0.05500858931402209 +87234,436.1699999996396,-0.05500853753742571 +87235,436.17499999963957,-0.05500848575917807 +87236,436.17999999963956,-0.055008433979279035 +87237,436.18499999963956,-0.055008382197728425 +87238,436.18999999963955,-0.055008330414526074 +87239,436.19499999963955,-0.055008278629671836 +87240,436.19999999963954,-0.055008226843165545 +87241,436.20499999963954,-0.05500817505500705 +87242,436.20999999963954,-0.05500812326519618 +87243,436.21499999963953,-0.055008071473732774 +87244,436.2199999996395,-0.05500801968061667 +87245,436.2249999996395,-0.05500796788584772 +87246,436.2299999996395,-0.05500791608942575 +87247,436.2349999996395,-0.055007864291350614 +87248,436.2399999996395,-0.05500781249162215 +87249,436.2449999996395,-0.05500776069024017 +87250,436.2499999996395,-0.05500770888720456 +87251,436.2549999996395,-0.05500765708251513 +87252,436.2599999996395,-0.05500760527617172 +87253,436.2649999996395,-0.05500755346817418 +87254,436.2699999996395,-0.05500750165852236 +87255,436.2749999996395,-0.05500744984721608 +87256,436.2799999996395,-0.05500739803425519 +87257,436.28499999963947,-0.055007346219639534 +87258,436.28999999963946,-0.055007294403368934 +87259,436.29499999963946,-0.055007242585443254 +87260,436.29999999963945,-0.05500719076586232 +87261,436.30499999963945,-0.055007138944625965 +87262,436.30999999963944,-0.05500708712173405 +87263,436.31499999963944,-0.0550070352971864 +87264,436.31999999963944,-0.05500698347098287 +87265,436.32499999963943,-0.05500693164312329 +87266,436.3299999996394,-0.055006879813607495 +87267,436.3349999996394,-0.05500682798243534 +87268,436.3399999996394,-0.055006776149606654 +87269,436.3449999996394,-0.055006724315121276 +87270,436.3499999996394,-0.05500667247897906 +87271,436.3549999996394,-0.05500662064117984 +87272,436.3599999996394,-0.055006568801723464 +87273,436.3649999996394,-0.05500651696060976 +87274,436.3699999996394,-0.05500646511783858 +87275,436.3749999996394,-0.05500641327340975 +87276,436.3799999996394,-0.05500636142732312 +87277,436.3849999996394,-0.05500630957957853 +87278,436.3899999996394,-0.05500625773017582 +87279,436.39499999963937,-0.05500620587911483 +87280,436.39999999963936,-0.05500615402639541 +87281,436.40499999963936,-0.055006102172017395 +87282,436.40999999963935,-0.05500605031598063 +87283,436.41499999963935,-0.05500599845828495 +87284,436.41999999963934,-0.0550059465989302 +87285,436.42499999963934,-0.05500589473791621 +87286,436.42999999963934,-0.055005842875242836 +87287,436.43499999963933,-0.05500579101090992 +87288,436.4399999996393,-0.055005739144917284 +87289,436.4449999996393,-0.0550056872772648 +87290,436.4499999996393,-0.05500563540795229 +87291,436.4549999996393,-0.05500558353697959 +87292,436.4599999996393,-0.05500553166434655 +87293,436.4649999996393,-0.05500547979005302 +87294,436.4699999996393,-0.05500542791409882 +87295,436.4749999996393,-0.0550053760364838 +87296,436.4799999996393,-0.05500532415720781 +87297,436.4849999996393,-0.05500527227627069 +87298,436.4899999996393,-0.055005220393672276 +87299,436.4949999996393,-0.0550051685094124 +87300,436.4999999996393,-0.05500511662349092 +87301,436.50499999963927,-0.05500506473590768 +87302,436.50999999963926,-0.05500501284666251 +87303,436.51499999963926,-0.05500496095575525 +87304,436.51999999963925,-0.05500490906318575 +87305,436.52499999963925,-0.05500485716895385 +87306,436.52999999963924,-0.05500480527305939 +87307,436.53499999963924,-0.05500475337550222 +87308,436.53999999963924,-0.05500470147628216 +87309,436.54499999963923,-0.055004649575399085 +87310,436.5499999996392,-0.05500459767285281 +87311,436.5549999996392,-0.055004545768643186 +87312,436.5599999996392,-0.055004493862770065 +87313,436.5649999996392,-0.055004441955233276 +87314,436.5699999996392,-0.05500439004603266 +87315,436.5749999996392,-0.05500433813516806 +87316,436.5799999996392,-0.05500428622263932 +87317,436.5849999996392,-0.05500423430844629 +87318,436.5899999996392,-0.0550041823925888 +87319,436.5949999996392,-0.055004130475066706 +87320,436.5999999996392,-0.05500407855587983 +87321,436.6049999996392,-0.05500402663502804 +87322,436.6099999996392,-0.055003974712511165 +87323,436.61499999963917,-0.05500392278832905 +87324,436.61999999963916,-0.05500387086248152 +87325,436.62499999963916,-0.05500381893496844 +87326,436.62999999963915,-0.05500376700578964 +87327,436.63499999963915,-0.05500371507494498 +87328,436.63999999963914,-0.05500366314243428 +87329,436.64499999963914,-0.055003611208257384 +87330,436.64999999963914,-0.055003559272414154 +87331,436.65499999963913,-0.05500350733490442 +87332,436.6599999996391,-0.05500345539572801 +87333,436.6649999996391,-0.0550034034548848 +87334,436.6699999996391,-0.05500335151237462 +87335,436.6749999996391,-0.05500329956819731 +87336,436.6799999996391,-0.05500324762235269 +87337,436.6849999996391,-0.055003195674840626 +87338,436.6899999996391,-0.055003143725660966 +87339,436.6949999996391,-0.055003091774813544 +87340,436.6999999996391,-0.055003039822298205 +87341,436.7049999996391,-0.055002987868114785 +87342,436.7099999996391,-0.05500293591226314 +87343,436.7149999996391,-0.0550028839547431 +87344,436.71999999963907,-0.055002831995554516 +87345,436.72499999963907,-0.055002780034697225 +87346,436.72999999963906,-0.05500272807217108 +87347,436.73499999963906,-0.05500267610797591 +87348,436.73999999963905,-0.055002624142111586 +87349,436.74499999963905,-0.05500257217457792 +87350,436.74999999963904,-0.055002520205374765 +87351,436.75499999963904,-0.055002468234501965 +87352,436.75999999963904,-0.05500241626195937 +87353,436.76499999963903,-0.05500236428774682 +87354,436.769999999639,-0.05500231231186414 +87355,436.774999999639,-0.0550022603343112 +87356,436.779999999639,-0.05500220835508783 +87357,436.784999999639,-0.055002156374193874 +87358,436.789999999639,-0.05500210439162918 +87359,436.794999999639,-0.05500205240739358 +87360,436.799999999639,-0.055002000421486924 +87361,436.804999999639,-0.05500194843390906 +87362,436.809999999639,-0.05500189644465984 +87363,436.814999999639,-0.05500184445373908 +87364,436.819999999639,-0.05500179246114665 +87365,436.824999999639,-0.05500174046688238 +87366,436.82999999963897,-0.05500168847094612 +87367,436.83499999963897,-0.055001636473337716 +87368,436.83999999963896,-0.055001584474057 +87369,436.84499999963896,-0.055001532473103826 +87370,436.84999999963895,-0.05500148047047803 +87371,436.85499999963895,-0.05500142846617946 +87372,436.85999999963894,-0.05500137646020797 +87373,436.86499999963894,-0.05500132445256338 +87374,436.86999999963894,-0.05500127244324557 +87375,436.87499999963893,-0.05500122043225435 +87376,436.8799999996389,-0.055001168419589574 +87377,436.8849999996389,-0.0550011164052511 +87378,436.8899999996389,-0.05500106438923875 +87379,436.8949999996389,-0.05500101237155238 +87380,436.8999999996389,-0.055000960352191826 +87381,436.9049999996389,-0.055000908331156936 +87382,436.9099999996389,-0.05500085630844757 +87383,436.9149999996389,-0.05500080428406355 +87384,436.9199999996389,-0.05500075225800472 +87385,436.9249999996389,-0.055000700230270955 +87386,436.9299999996389,-0.05500064820086206 +87387,436.9349999996389,-0.05500059616977789 +87388,436.93999999963887,-0.05500054413701831 +87389,436.94499999963887,-0.055000492102583155 +87390,436.94999999963886,-0.05500044006647225 +87391,436.95499999963886,-0.05500038802868547 +87392,436.95999999963885,-0.05500033598922262 +87393,436.96499999963885,-0.05500028394808358 +87394,436.96999999963884,-0.05500023190526818 +87395,436.97499999963884,-0.05500017986077627 +87396,436.97999999963884,-0.0550001278146077 +87397,436.98499999963883,-0.055000075766762295 +87398,436.9899999996388,-0.055000023717239915 +87399,436.9949999996388,-0.0549999716660404 +87400,436.9999999996388,-0.054999919613163584 +87401,437.0049999996388,-0.054999867558609326 +87402,437.0099999996388,-0.05499981550237747 +87403,437.0149999996388,-0.05499976344446786 +87404,437.0199999996388,-0.05499971138488034 +87405,437.0249999996388,-0.05499965932361475 +87406,437.0299999996388,-0.05499960726067094 +87407,437.0349999996388,-0.05499955519604876 +87408,437.0399999996388,-0.05499950312974805 +87409,437.0449999996388,-0.05499945106176866 +87410,437.04999999963877,-0.0549993989921104 +87411,437.05499999963877,-0.054999346920773164 +87412,437.05999999963876,-0.05499929484775677 +87413,437.06499999963876,-0.05499924277306107 +87414,437.06999999963875,-0.054999190696685914 +87415,437.07499999963875,-0.054999138618631135 +87416,437.07999999963874,-0.05499908653889659 +87417,437.08499999963874,-0.05499903445748211 +87418,437.08999999963874,-0.05499898237438755 +87419,437.09499999963873,-0.05499893028961276 +87420,437.0999999996387,-0.054998878203157575 +87421,437.1049999996387,-0.05499882611502186 +87422,437.1099999996387,-0.054998774025205435 +87423,437.1149999996387,-0.05499872193370815 +87424,437.1199999996387,-0.054998669840529875 +87425,437.1249999996387,-0.054998617745670414 +87426,437.1299999996387,-0.054998565649129645 +87427,437.1349999996387,-0.0549985135509074 +87428,437.1399999996387,-0.05499846145100354 +87429,437.1449999996387,-0.05499840934941788 +87430,437.1499999996387,-0.05499835724615029 +87431,437.1549999996387,-0.05499830514120062 +87432,437.15999999963867,-0.05499825303456869 +87433,437.16499999963867,-0.05499820092625437 +87434,437.16999999963866,-0.054998148816257496 +87435,437.17499999963866,-0.05499809670457792 +87436,437.17999999963865,-0.054998044591215475 +87437,437.18499999963865,-0.054997992476170016 +87438,437.18999999963864,-0.054997940359441375 +87439,437.19499999963864,-0.05499788824102941 +87440,437.19999999963864,-0.054997836120933986 +87441,437.20499999963863,-0.05499778399915492 +87442,437.2099999996386,-0.05499773187569207 +87443,437.2149999996386,-0.05499767975054527 +87444,437.2199999996386,-0.05499762762371438 +87445,437.2249999996386,-0.05499757549519924 +87446,437.2299999996386,-0.0549975233649997 +87447,437.2349999996386,-0.05499747123311559 +87448,437.2399999996386,-0.05499741909954678 +87449,437.2449999996386,-0.054997366964293096 +87450,437.2499999996386,-0.054997314827354406 +87451,437.2549999996386,-0.05499726268873053 +87452,437.2599999996386,-0.054997210548421334 +87453,437.2649999996386,-0.05499715840642667 +87454,437.26999999963857,-0.054997106262746356 +87455,437.27499999963857,-0.05499705411738026 +87456,437.27999999963856,-0.05499700197032823 +87457,437.28499999963856,-0.05499694982159009 +87458,437.28999999963855,-0.054996897671165716 +87459,437.29499999963855,-0.054996845519054934 +87460,437.29999999963854,-0.05499679336525759 +87461,437.30499999963854,-0.05499674120977355 +87462,437.30999999963853,-0.05499668905260263 +87463,437.31499999963853,-0.05499663689374471 +87464,437.3199999996385,-0.05499658473319961 +87465,437.3249999996385,-0.05499653257096719 +87466,437.3299999996385,-0.0549964804070473 +87467,437.3349999996385,-0.05499642824143977 +87468,437.3399999996385,-0.05499637607414447 +87469,437.3449999996385,-0.054996323905161223 +87470,437.3499999996385,-0.054996271734489885 +87471,437.3549999996385,-0.05499621956213031 +87472,437.3599999996385,-0.05499616738808233 +87473,437.3649999996385,-0.0549961152123458 +87474,437.3699999996385,-0.05499606303492057 +87475,437.3749999996385,-0.05499601085580649 +87476,437.37999999963847,-0.0549959586750034 +87477,437.38499999963847,-0.05499590649251114 +87478,437.38999999963846,-0.054995854308329574 +87479,437.39499999963846,-0.054995802122458526 +87480,437.39999999963845,-0.05499574993489787 +87481,437.40499999963845,-0.05499569774564745 +87482,437.40999999963844,-0.05499564555470708 +87483,437.41499999963844,-0.05499559336207665 +87484,437.41999999963843,-0.05499554116775598 +87485,437.42499999963843,-0.05499548897174492 +87486,437.4299999996384,-0.05499543677404333 +87487,437.4349999996384,-0.05499538457465104 +87488,437.4399999996384,-0.05499533237356791 +87489,437.4449999996384,-0.054995280170793776 +87490,437.4499999996384,-0.054995227966328504 +87491,437.4549999996384,-0.05499517576017192 +87492,437.4599999996384,-0.054995123552323874 +87493,437.4649999996384,-0.05499507134278423 +87494,437.4699999996384,-0.05499501913155282 +87495,437.4749999996384,-0.054994966918629505 +87496,437.4799999996384,-0.054994914704014124 +87497,437.4849999996384,-0.054994862487706526 +87498,437.48999999963837,-0.05499481026970656 +87499,437.49499999963837,-0.054994758050014074 +87500,437.49999999963836,-0.0549947058286289 +87501,437.50499999963836,-0.0549946536055509 +87502,437.50999999963835,-0.05499460138077991 +87503,437.51499999963835,-0.05499454915431581 +87504,437.51999999963834,-0.05499449692615842 +87505,437.52499999963834,-0.054994444696307584 +87506,437.52999999963833,-0.05499439246476317 +87507,437.53499999963833,-0.054994340231525 +87508,437.5399999996383,-0.05499428799659294 +87509,437.5449999996383,-0.05499423575996684 +87510,437.5499999996383,-0.05499418352164655 +87511,437.5549999996383,-0.05499413128163189 +87512,437.5599999996383,-0.05499407903992274 +87513,437.5649999996383,-0.054994026796518936 +87514,437.5699999996383,-0.05499397455142032 +87515,437.5749999996383,-0.05499392230462675 +87516,437.5799999996383,-0.05499387005613807 +87517,437.5849999996383,-0.05499381780595412 +87518,437.5899999996383,-0.05499376555407477 +87519,437.5949999996383,-0.05499371330049985 +87520,437.59999999963827,-0.0549936610452292 +87521,437.60499999963827,-0.05499360878826269 +87522,437.60999999963826,-0.054993556529600154 +87523,437.61499999963826,-0.05499350426924144 +87524,437.61999999963825,-0.05499345200718641 +87525,437.62499999963825,-0.054993399743434895 +87526,437.62999999963824,-0.054993347477986745 +87527,437.63499999963824,-0.05499329521084182 +87528,437.63999999963823,-0.05499324294199997 +87529,437.64499999963823,-0.05499319067146104 +87530,437.6499999996382,-0.054993138399224865 +87531,437.6549999996382,-0.0549930861252913 +87532,437.6599999996382,-0.05499303384966019 +87533,437.6649999996382,-0.0549929815723314 +87534,437.6699999996382,-0.05499292929330477 +87535,437.6749999996382,-0.054992877012580155 +87536,437.6799999996382,-0.05499282473015738 +87537,437.6849999996382,-0.054992772446036314 +87538,437.6899999996382,-0.05499272016021681 +87539,437.6949999996382,-0.05499266787269869 +87540,437.6999999996382,-0.054992615583481834 +87541,437.7049999996382,-0.05499256329256608 +87542,437.70999999963817,-0.05499251099995126 +87543,437.71499999963817,-0.05499245870563725 +87544,437.71999999963816,-0.05499240640962387 +87545,437.72499999963816,-0.05499235411191099 +87546,437.72999999963815,-0.05499230181249846 +87547,437.73499999963815,-0.05499224951138611 +87548,437.73999999963814,-0.054992197208573804 +87549,437.74499999963814,-0.05499214490406138 +87550,437.74999999963813,-0.0549920925978487 +87551,437.75499999963813,-0.0549920402899356 +87552,437.7599999996381,-0.054991987980321955 +87553,437.7649999996381,-0.05499193566900759 +87554,437.7699999996381,-0.05499188335599236 +87555,437.7749999996381,-0.0549918310412761 +87556,437.7799999996381,-0.05499177872485868 +87557,437.7849999996381,-0.054991726406739945 +87558,437.7899999996381,-0.05499167408691973 +87559,437.7949999996381,-0.05499162176539791 +87560,437.7999999996381,-0.05499156944217431 +87561,437.8049999996381,-0.05499151711724879 +87562,437.8099999996381,-0.0549914647906212 +87563,437.8149999996381,-0.05499141246229138 +87564,437.81999999963807,-0.05499136013225919 +87565,437.82499999963807,-0.05499130780052448 +87566,437.82999999963806,-0.05499125546708709 +87567,437.83499999963806,-0.05499120313194688 +87568,437.83999999963805,-0.05499115079510368 +87569,437.84499999963805,-0.05499109845655737 +87570,437.84999999963804,-0.05499104611630777 +87571,437.85499999963804,-0.05499099377435475 +87572,437.85999999963803,-0.054990941430698145 +87573,437.86499999963803,-0.054990889085337814 +87574,437.869999999638,-0.0549908367382736 +87575,437.874999999638,-0.054990784389505366 +87576,437.879999999638,-0.05499073203903295 +87577,437.884999999638,-0.0549906796868562 +87578,437.889999999638,-0.05499062733297497 +87579,437.894999999638,-0.0549905749773891 +87580,437.899999999638,-0.05499052262009846 +87581,437.904999999638,-0.05499047026110289 +87582,437.909999999638,-0.05499041790040224 +87583,437.914999999638,-0.054990365537996355 +87584,437.919999999638,-0.054990313173885086 +87585,437.924999999638,-0.054990260808068285 +87586,437.92999999963797,-0.054990208440545814 +87587,437.93499999963797,-0.0549901560713175 +87588,437.93999999963796,-0.0549901037003832 +87589,437.94499999963796,-0.054990051327742775 +87590,437.94999999963795,-0.05498999895339607 +87591,437.95499999963795,-0.054989946577342935 +87592,437.95999999963794,-0.05498989419958322 +87593,437.96499999963794,-0.054989841820116764 +87594,437.96999999963793,-0.054989789438943434 +87595,437.97499999963793,-0.05498973705606307 +87596,437.9799999996379,-0.05498968467147552 +87597,437.9849999996379,-0.05498963228518063 +87598,437.9899999996379,-0.05498957989717827 +87599,437.9949999996379,-0.054989527507468286 +87600,437.9999999996379,-0.05498947511605051 +87601,438.0049999996379,-0.05498942272292481 +87602,438.0099999996379,-0.05498937032809104 +87603,438.0149999996379,-0.05498931793154904 +87604,438.0199999996379,-0.05498926553329865 +87605,438.0249999996379,-0.05498921313333973 +87606,438.0299999996379,-0.05498916073167214 +87607,438.0349999996379,-0.05498910832829573 +87608,438.03999999963787,-0.05498905592321033 +87609,438.04499999963787,-0.05498900351641581 +87610,438.04999999963786,-0.054988951107912014 +87611,438.05499999963786,-0.05498889869769879 +87612,438.05999999963785,-0.054988846285775994 +87613,438.06499999963785,-0.05498879387214348 +87614,438.06999999963784,-0.054988741456801084 +87615,438.07499999963784,-0.05498868903974866 +87616,438.07999999963783,-0.054988636620986076 +87617,438.08499999963783,-0.05498858420051316 +87618,438.0899999996378,-0.054988531778329776 +87619,438.0949999996378,-0.05498847935443577 +87620,438.0999999996378,-0.054988426928831005 +87621,438.1049999996378,-0.05498837450151532 +87622,438.1099999996378,-0.05498832207248857 +87623,438.1149999996378,-0.0549882696417506 +87624,438.1199999996378,-0.05498821720930127 +87625,438.1249999996378,-0.05498816477514042 +87626,438.1299999996378,-0.054988112339267904 +87627,438.1349999996378,-0.054988059901683574 +87628,438.1399999996378,-0.05498800746238729 +87629,438.1449999996378,-0.0549879550213789 +87630,438.14999999963777,-0.05498790257865824 +87631,438.15499999963777,-0.05498785013422517 +87632,438.15999999963776,-0.05498779768807956 +87633,438.16499999963776,-0.05498774524022123 +87634,438.16999999963775,-0.05498769279065004 +87635,438.17499999963775,-0.05498764033936585 +87636,438.17999999963774,-0.05498758788636852 +87637,438.18499999963774,-0.05498753543165787 +87638,438.18999999963773,-0.05498748297523379 +87639,438.19499999963773,-0.0549874305170961 +87640,438.1999999996377,-0.05498737805724467 +87641,438.2049999996377,-0.054987325595679336 +87642,438.2099999996377,-0.05498727313239996 +87643,438.2149999996377,-0.05498722066740639 +87644,438.2199999996377,-0.05498716820069848 +87645,438.2249999996377,-0.05498711573227608 +87646,438.2299999996377,-0.05498706326213905 +87647,438.2349999996377,-0.05498701079028723 +87648,438.2399999996377,-0.05498695831672048 +87649,438.2449999996377,-0.05498690584143863 +87650,438.2499999996377,-0.054986853364441556 +87651,438.2549999996377,-0.0549868008857291 +87652,438.25999999963767,-0.054986748405301114 +87653,438.26499999963767,-0.054986695923157455 +87654,438.26999999963766,-0.05498664343929797 +87655,438.27499999963766,-0.0549865909537225 +87656,438.27999999963765,-0.054986538466430916 +87657,438.28499999963765,-0.05498648597742306 +87658,438.28999999963764,-0.05498643348669879 +87659,438.29499999963764,-0.05498638099425794 +87660,438.29999999963763,-0.054986328500100386 +87661,438.30499999963763,-0.054986276004225974 +87662,438.3099999996376,-0.05498622350663455 +87663,438.3149999996376,-0.05498617100732597 +87664,438.3199999996376,-0.05498611850630007 +87665,438.3249999996376,-0.05498606600355673 +87666,438.3299999996376,-0.05498601349909578 +87667,438.3349999996376,-0.054985960992917075 +87668,438.3399999996376,-0.054985908485020475 +87669,438.3449999996376,-0.054985855975405826 +87670,438.3499999996376,-0.05498580346407299 +87671,438.3549999996376,-0.0549857509510218 +87672,438.3599999996376,-0.054985698436252124 +87673,438.3649999996376,-0.05498564591976381 +87674,438.36999999963757,-0.05498559340155671 +87675,438.37499999963757,-0.05498554088163067 +87676,438.37999999963756,-0.054985488359985554 +87677,438.38499999963756,-0.05498543583662121 +87678,438.38999999963755,-0.054985383311537475 +87679,438.39499999963755,-0.054985330784734235 +87680,438.39999999963754,-0.054985278256211315 +87681,438.40499999963754,-0.054985225725968576 +87682,438.40999999963753,-0.054985173194005865 +87683,438.41499999963753,-0.05498512066032305 +87684,438.4199999996375,-0.05498506812491996 +87685,438.4249999996375,-0.05498501558779647 +87686,438.4299999996375,-0.05498496304895241 +87687,438.4349999996375,-0.05498491050838764 +87688,438.4399999996375,-0.05498485796610203 +87689,438.4449999996375,-0.05498480542209542 +87690,438.4499999996375,-0.054984752876367664 +87691,438.4549999996375,-0.054984700328918605 +87692,438.4599999996375,-0.05498464777974812 +87693,438.4649999996375,-0.054984595228856036 +87694,438.4699999996375,-0.05498454267624221 +87695,438.4749999996375,-0.0549844901219065 +87696,438.47999999963747,-0.05498443756584877 +87697,438.48499999963747,-0.054984385008068855 +87698,438.48999999963746,-0.05498433244856662 +87699,438.49499999963746,-0.0549842798873419 +87700,438.49999999963745,-0.05498422732439457 +87701,438.50499999963745,-0.05498417475972447 +87702,438.50999999963744,-0.05498412219333146 +87703,438.51499999963744,-0.05498406962521538 +87704,438.51999999963743,-0.0549840170553761 +87705,438.52499999963743,-0.054983964483813465 +87706,438.5299999996374,-0.054983911910527324 +87707,438.5349999996374,-0.05498385933551754 +87708,438.5399999996374,-0.054983806758783955 +87709,438.5449999996374,-0.05498375418032643 +87710,438.5499999996374,-0.05498370160014481 +87711,438.5549999996374,-0.05498364901823897 +87712,438.5599999996374,-0.05498359643460873 +87713,438.5649999996374,-0.05498354384925396 +87714,438.5699999996374,-0.054983491262174514 +87715,438.5749999996374,-0.054983438673370244 +87716,438.5799999996374,-0.05498338608284101 +87717,438.5849999996374,-0.05498333349058664 +87718,438.58999999963737,-0.05498328089660703 +87719,438.59499999963737,-0.054983228300902 +87720,438.59999999963736,-0.054983175703471415 +87721,438.60499999963736,-0.05498312310431513 +87722,438.60999999963735,-0.054983070503432985 +87723,438.61499999963735,-0.05498301790082485 +87724,438.61999999963734,-0.05498296529649056 +87725,438.62499999963734,-0.054982912690429986 +87726,438.62999999963733,-0.05498286008264297 +87727,438.63499999963733,-0.054982807473129384 +87728,438.6399999996373,-0.05498275486188906 +87729,438.6449999996373,-0.05498270224892187 +87730,438.6499999996373,-0.05498264963422766 +87731,438.6549999996373,-0.05498259701780627 +87732,438.6599999996373,-0.05498254439965757 +87733,438.6649999996373,-0.054982491779781414 +87734,438.6699999996373,-0.054982439158177646 +87735,438.6749999996373,-0.05498238653484611 +87736,438.6799999996373,-0.05498233390978669 +87737,438.6849999996373,-0.05498228128299922 +87738,438.6899999996373,-0.054982228654483566 +87739,438.6949999996373,-0.05498217602423956 +87740,438.69999999963727,-0.054982123392267074 +87741,438.70499999963727,-0.054982070758565954 +87742,438.70999999963726,-0.05498201812313606 +87743,438.71499999963726,-0.054981965485977245 +87744,438.71999999963725,-0.054981912847089365 +87745,438.72499999963725,-0.05498186020647226 +87746,438.72999999963724,-0.0549818075641258 +87747,438.73499999963724,-0.054981754920049836 +87748,438.73999999963723,-0.05498170227424422 +87749,438.74499999963723,-0.05498164962670879 +87750,438.7499999996372,-0.05498159697744342 +87751,438.7549999996372,-0.05498154432644796 +87752,438.7599999996372,-0.05498149167372227 +87753,438.7649999996372,-0.05498143901926621 +87754,438.7699999996372,-0.05498138636307961 +87755,438.7749999996372,-0.05498133370516233 +87756,438.7799999996372,-0.05498128104551424 +87757,438.7849999996372,-0.05498122838413518 +87758,438.7899999996372,-0.05498117572102501 +87759,438.7949999996372,-0.05498112305618358 +87760,438.7999999996372,-0.05498107038961075 +87761,438.8049999996372,-0.054981017721306376 +87762,438.80999999963717,-0.05498096505127031 +87763,438.81499999963717,-0.05498091237950239 +87764,438.81999999963716,-0.05498085970600249 +87765,438.82499999963716,-0.05498080703077046 +87766,438.82999999963715,-0.054980754353806165 +87767,438.83499999963715,-0.054980701675109434 +87768,438.83999999963714,-0.05498064899468014 +87769,438.84499999963714,-0.05498059631251813 +87770,438.84999999963713,-0.054980543628623264 +87771,438.85499999963713,-0.054980490942995404 +87772,438.8599999996371,-0.05498043825563438 +87773,438.8649999996371,-0.05498038556654008 +87774,438.8699999996371,-0.054980332875712336 +87775,438.8749999996371,-0.05498028018315101 +87776,438.8799999996371,-0.05498022748885595 +87777,438.8849999996371,-0.05498017479282702 +87778,438.8899999996371,-0.05498012209506406 +87779,438.8949999996371,-0.05498006939556695 +87780,438.8999999996371,-0.05498001669433552 +87781,438.9049999996371,-0.05497996399136963 +87782,438.9099999996371,-0.05497991128666914 +87783,438.9149999996371,-0.05497985858023391 +87784,438.91999999963707,-0.05497980587206378 +87785,438.92499999963707,-0.05497975316215862 +87786,438.92999999963706,-0.05497970045051828 +87787,438.93499999963706,-0.05497964773714262 +87788,438.93999999963705,-0.05497959502203147 +87789,438.94499999963705,-0.054979542305184724 +87790,438.94999999963704,-0.05497948958660222 +87791,438.95499999963704,-0.054979436866283794 +87792,438.95999999963703,-0.054979384144229315 +87793,438.96499999963703,-0.054979331420438655 +87794,438.969999999637,-0.05497927869491164 +87795,438.974999999637,-0.05497922596764815 +87796,438.979999999637,-0.05497917323864803 +87797,438.984999999637,-0.054979120507911136 +87798,438.989999999637,-0.05497906777543732 +87799,438.994999999637,-0.05497901504122643 +87800,438.999999999637,-0.054978962305278344 +87801,439.004999999637,-0.054978909567592896 +87802,439.009999999637,-0.054978856828169956 +87803,439.014999999637,-0.054978804087009364 +87804,439.019999999637,-0.05497875134411099 +87805,439.024999999637,-0.054978698599474685 +87806,439.02999999963697,-0.054978645853100305 +87807,439.03499999963697,-0.0549785931049877 +87808,439.03999999963696,-0.05497854035513673 +87809,439.04499999963696,-0.05497848760354725 +87810,439.04999999963695,-0.05497843485021912 +87811,439.05499999963695,-0.054978382095152184 +87812,439.05999999963694,-0.054978329338346316 +87813,439.06499999963694,-0.054978276579801345 +87814,439.06999999963693,-0.054978223819517155 +87815,439.07499999963693,-0.054978171057493586 +87816,439.0799999996369,-0.05497811829373049 +87817,439.0849999996369,-0.05497806552822773 +87818,439.0899999996369,-0.05497801276098517 +87819,439.0949999996369,-0.05497795999200264 +87820,439.0999999996369,-0.05497790722128002 +87821,439.1049999996369,-0.05497785444881716 +87822,439.1099999996369,-0.0549778016746139 +87823,439.1149999996369,-0.05497774889867012 +87824,439.1199999996369,-0.05497769612098566 +87825,439.1249999996369,-0.054977643341560384 +87826,439.1299999996369,-0.05497759056039415 +87827,439.1349999996369,-0.054977537777486804 +87828,439.13999999963687,-0.054977484992838214 +87829,439.14499999963687,-0.054977432206448226 +87830,439.14999999963686,-0.0549773794183167 +87831,439.15499999963686,-0.05497732662844349 +87832,439.15999999963685,-0.05497727383682845 +87833,439.16499999963685,-0.054977221043471435 +87834,439.16999999963684,-0.05497716824837231 +87835,439.17499999963684,-0.054977115451530924 +87836,439.17999999963683,-0.05497706265294714 +87837,439.18499999963683,-0.054977009852620815 +87838,439.1899999996368,-0.05497695705055179 +87839,439.1949999996368,-0.054976904246739934 +87840,439.1999999996368,-0.0549768514411851 +87841,439.2049999996368,-0.054976798633887144 +87842,439.2099999996368,-0.05497674582484592 +87843,439.2149999996368,-0.05497669301406129 +87844,439.2199999996368,-0.0549766402015331 +87845,439.2249999996368,-0.05497658738726122 +87846,439.2299999996368,-0.054976534571245496 +87847,439.2349999996368,-0.05497648175348579 +87848,439.2399999996368,-0.05497642893398195 +87849,439.2449999996368,-0.054976376112733844 +87850,439.24999999963677,-0.05497632328974133 +87851,439.25499999963677,-0.054976270465004265 +87852,439.25999999963676,-0.054976217638522486 +87853,439.26499999963676,-0.05497616481029587 +87854,439.26999999963675,-0.05497611198032426 +87855,439.27499999963675,-0.05497605914860752 +87856,439.27999999963674,-0.0549760063151455 +87857,439.28499999963674,-0.05497595347993807 +87858,439.28999999963673,-0.05497590064298507 +87859,439.29499999963673,-0.05497584780428636 +87860,439.2999999996367,-0.054975794963841806 +87861,439.3049999996367,-0.054975742121651267 +87862,439.3099999996367,-0.054975689277714596 +87863,439.3149999996367,-0.054975636432031634 +87864,439.3199999996367,-0.054975583584602264 +87865,439.3249999996367,-0.05497553073542632 +87866,439.3299999996367,-0.05497547788450367 +87867,439.3349999996367,-0.054975425031834176 +87868,439.3399999996367,-0.054975372177417686 +87869,439.3449999996367,-0.054975319321254046 +87870,439.3499999996367,-0.054975266463343136 +87871,439.3549999996367,-0.05497521360368479 +87872,439.35999999963667,-0.054975160742278886 +87873,439.36499999963667,-0.054975107879125275 +87874,439.36999999963666,-0.05497505501422381 +87875,439.37499999963666,-0.05497500214757436 +87876,439.37999999963665,-0.05497494927917675 +87877,439.38499999963665,-0.054974896409030874 +87878,439.38999999963664,-0.05497484353713658 +87879,439.39499999963664,-0.05497479066349371 +87880,439.39999999963663,-0.054974737788102135 +87881,439.40499999963663,-0.0549746849109617 +87882,439.4099999996366,-0.054974632032072264 +87883,439.4149999996366,-0.0549745791514337 +87884,439.4199999996366,-0.05497452626904586 +87885,439.4249999996366,-0.05497447338490858 +87886,439.4299999996366,-0.05497442049902175 +87887,439.4349999996366,-0.0549743676113852 +87888,439.4399999996366,-0.05497431472199881 +87889,439.4449999996366,-0.05497426183086242 +87890,439.4499999996366,-0.05497420893797589 +87891,439.4549999996366,-0.05497415604333908 +87892,439.4599999996366,-0.05497410314695185 +87893,439.4649999996366,-0.054974050248814056 +87894,439.46999999963657,-0.05497399734892555 +87895,439.47499999963657,-0.054973944447286184 +87896,439.47999999963656,-0.054973891543895835 +87897,439.48499999963656,-0.054973838638754345 +87898,439.48999999963655,-0.05497378573186158 +87899,439.49499999963655,-0.0549737328232174 +87900,439.49999999963654,-0.054973679912821656 +87901,439.50499999963654,-0.0549736270006742 +87902,439.50999999963653,-0.054973574086774904 +87903,439.51499999963653,-0.05497352117112362 +87904,439.5199999996365,-0.0549734682537202 +87905,439.5249999996365,-0.054973415334564506 +87906,439.5299999996365,-0.054973362413656406 +87907,439.5349999996365,-0.054973309490995735 +87908,439.5399999996365,-0.05497325656658236 +87909,439.5449999996365,-0.05497320364041615 +87910,439.5499999996365,-0.05497315071249695 +87911,439.5549999996365,-0.05497309778282462 +87912,439.5599999996365,-0.054973044851399026 +87913,439.5649999996365,-0.05497299191822002 +87914,439.5699999996365,-0.05497293898328745 +87915,439.5749999996365,-0.054972886046601194 +87916,439.57999999963647,-0.0549728331081611 +87917,439.58499999963647,-0.05497278016796702 +87918,439.58999999963646,-0.05497272722601882 +87919,439.59499999963646,-0.054972674282316364 +87920,439.59999999963645,-0.05497262133685949 +87921,439.60499999963645,-0.05497256838964808 +87922,439.60999999963644,-0.05497251544068196 +87923,439.61499999963644,-0.054972462489961016 +87924,439.61999999963643,-0.054972409537485105 +87925,439.62499999963643,-0.054972356583254084 +87926,439.6299999996364,-0.05497230362726779 +87927,439.6349999996364,-0.05497225066952611 +87928,439.6399999996364,-0.05497219771002888 +87929,439.6449999996364,-0.05497214474877598 +87930,439.6499999996364,-0.05497209178576724 +87931,439.6549999996364,-0.05497203882100253 +87932,439.6599999996364,-0.054971985854481716 +87933,439.6649999996364,-0.05497193288620466 +87934,439.6699999996364,-0.0549718799161712 +87935,439.6749999996364,-0.05497182694438122 +87936,439.6799999996364,-0.05497177397083456 +87937,439.6849999996364,-0.05497172099553109 +87938,439.68999999963637,-0.05497166801847065 +87939,439.69499999963637,-0.054971615039653116 +87940,439.69999999963636,-0.05497156205907834 +87941,439.70499999963636,-0.05497150907674619 +87942,439.70999999963635,-0.05497145609265651 +87943,439.71499999963635,-0.05497140310680916 +87944,439.71999999963634,-0.054971350119204 +87945,439.72499999963634,-0.054971297129840904 +87946,439.72999999963633,-0.05497124413871971 +87947,439.73499999963633,-0.05497119114584028 +87948,439.7399999996363,-0.054971138151202484 +87949,439.7449999996363,-0.05497108515480618 +87950,439.7499999996363,-0.05497103215665121 +87951,439.7549999996363,-0.054970979156737446 +87952,439.7599999996363,-0.05497092615506475 +87953,439.7649999996363,-0.05497087315163296 +87954,439.7699999996363,-0.05497082014644195 +87955,439.7749999996363,-0.05497076713949159 +87956,439.7799999996363,-0.054970714130781716 +87957,439.7849999996363,-0.0549706611203122 +87958,439.7899999996363,-0.0549706081080829 +87959,439.7949999996363,-0.05497055509409368 +87960,439.79999999963627,-0.0549705020783444 +87961,439.80499999963627,-0.0549704490608349 +87962,439.80999999963626,-0.054970396041565055 +87963,439.81499999963626,-0.05497034302053472 +87964,439.81999999963625,-0.05497028999774375 +87965,439.82499999963625,-0.054970236973192005 +87966,439.82999999963624,-0.054970183946879345 +87967,439.83499999963624,-0.05497013091880564 +87968,439.83999999963623,-0.054970077888970736 +87969,439.84499999963623,-0.05497002485737448 +87970,439.8499999996362,-0.05496997182401677 +87971,439.8549999996362,-0.05496991878889743 +87972,439.8599999996362,-0.05496986575201633 +87973,439.8649999996362,-0.05496981271337333 +87974,439.8699999996362,-0.05496975967296829 +87975,439.8749999996362,-0.05496970663080107 +87976,439.8799999996362,-0.05496965358687153 +87977,439.8849999996362,-0.05496960054117952 +87978,439.8899999996362,-0.0549695474937249 +87979,439.8949999996362,-0.05496949444450755 +87980,439.8999999996362,-0.05496944139352731 +87981,439.9049999996362,-0.054969388340784034 +87982,439.90999999963617,-0.0549693352862776 +87983,439.91499999963617,-0.05496928223000785 +87984,439.91999999963616,-0.054969229171974665 +87985,439.92499999963616,-0.05496917611217788 +87986,439.92999999963615,-0.05496912305061737 +87987,439.93499999963615,-0.054969069987293 +87988,439.93999999963614,-0.05496901692220461 +87989,439.94499999963614,-0.05496896385535206 +87990,439.94999999963613,-0.05496891078673522 +87991,439.95499999963613,-0.054968857716353965 +87992,439.9599999996361,-0.054968804644208134 +87993,439.9649999996361,-0.05496875157029758 +87994,439.9699999996361,-0.05496869849462219 +87995,439.9749999996361,-0.05496864541718179 +87996,439.9799999996361,-0.05496859233797626 +87997,439.9849999996361,-0.05496853925700546 +87998,439.9899999996361,-0.05496848617426925 +87999,439.9949999996361,-0.054968433089767475 +88000,439.9999999996361,-0.05496838000350002 +88001,440.0049999996361,-0.05496832691546672 +88002,440.0099999996361,-0.05496827382566744 +88003,440.0149999996361,-0.05496822073410205 +88004,440.01999999963607,-0.05496816764077041 +88005,440.02499999963607,-0.05496811454567237 +88006,440.02999999963606,-0.05496806144880779 +88007,440.03499999963606,-0.05496800835017653 +88008,440.03999999963605,-0.05496795524977847 +88009,440.04499999963605,-0.05496790214761345 +88010,440.04999999963604,-0.05496784904368133 +88011,440.05499999963604,-0.05496779593798196 +88012,440.05999999963603,-0.05496774283051522 +88013,440.06499999963603,-0.054967689721280966 +88014,440.069999999636,-0.05496763661027906 +88015,440.074999999636,-0.054967583497509354 +88016,440.079999999636,-0.05496753038297172 +88017,440.084999999636,-0.054967477266665996 +88018,440.089999999636,-0.05496742414859206 +88019,440.094999999636,-0.05496737102874977 +88020,440.099999999636,-0.05496731790713898 +88021,440.104999999636,-0.05496726478375956 +88022,440.109999999636,-0.05496721165861136 +88023,440.114999999636,-0.05496715853169425 +88024,440.119999999636,-0.05496710540300808 +88025,440.124999999636,-0.054967052272552705 +88026,440.12999999963597,-0.054966999140328016 +88027,440.13499999963597,-0.054966946006333846 +88028,440.13999999963596,-0.05496689287057005 +88029,440.14499999963596,-0.05496683973303651 +88030,440.14999999963595,-0.05496678659373308 +88031,440.15499999963595,-0.054966733452659615 +88032,440.15999999963594,-0.05496668030981597 +88033,440.16499999963594,-0.054966627165202016 +88034,440.16999999963593,-0.05496657401881761 +88035,440.17499999963593,-0.05496652087066262 +88036,440.1799999996359,-0.054966467720736885 +88037,440.1849999996359,-0.054966414569040285 +88038,440.1899999996359,-0.05496636141557268 +88039,440.1949999996359,-0.05496630826033392 +88040,440.1999999996359,-0.054966255103323876 +88041,440.2049999996359,-0.05496620194454241 +88042,440.2099999996359,-0.05496614878398935 +88043,440.2149999996359,-0.05496609562166461 +88044,440.2199999996359,-0.05496604245756801 +88045,440.2249999996359,-0.05496598929169943 +88046,440.2299999996359,-0.054965936124058715 +88047,440.2349999996359,-0.05496588295464574 +88048,440.23999999963587,-0.05496582978346037 +88049,440.24499999963587,-0.05496577661050245 +88050,440.24999999963586,-0.054965723435771836 +88051,440.25499999963586,-0.05496567025926841 +88052,440.25999999963585,-0.05496561708099202 +88053,440.26499999963585,-0.05496556390094253 +88054,440.26999999963584,-0.05496551071911981 +88055,440.27499999963584,-0.0549654575355237 +88056,440.27999999963583,-0.054965404350154075 +88057,440.28499999963583,-0.054965351163010795 +88058,440.2899999996358,-0.05496529797409372 +88059,440.2949999996358,-0.054965244783402714 +88060,440.2999999996358,-0.05496519159093762 +88061,440.3049999996358,-0.054965138396698324 +88062,440.3099999996358,-0.05496508520068467 +88063,440.3149999996358,-0.054965032002896534 +88064,440.3199999996358,-0.054964978803333765 +88065,440.3249999996358,-0.05496492560199623 +88066,440.3299999996358,-0.054964872398883785 +88067,440.3349999996358,-0.05496481919399629 +88068,440.3399999996358,-0.05496476598733361 +88069,440.3449999996358,-0.05496471277889561 +88070,440.34999999963577,-0.054964659568682135 +88071,440.35499999963577,-0.05496460635669307 +88072,440.35999999963576,-0.05496455314292825 +88073,440.36499999963576,-0.05496449992738756 +88074,440.36999999963575,-0.05496444671007086 +88075,440.37499999963575,-0.054964393490978 +88076,440.37999999963574,-0.05496434027010884 +88077,440.38499999963574,-0.05496428704746323 +88078,440.38999999963573,-0.05496423382304106 +88079,440.39499999963573,-0.05496418059684217 +88080,440.3999999996357,-0.05496412736886643 +88081,440.4049999996357,-0.05496407413911371 +88082,440.4099999996357,-0.054964020907583844 +88083,440.4149999996357,-0.05496396767427672 +88084,440.4199999996357,-0.0549639144391922 +88085,440.4249999996357,-0.05496386120233012 +88086,440.4299999996357,-0.054963807963690374 +88087,440.4349999996357,-0.0549637547232728 +88088,440.4399999996357,-0.054963701481077265 +88089,440.4449999996357,-0.054963648237103625 +88090,440.4499999996357,-0.054963594991351755 +88091,440.4549999996357,-0.05496354174382151 +88092,440.45999999963567,-0.05496348849451275 +88093,440.46499999963567,-0.05496343524342534 +88094,440.46999999963566,-0.05496338199055914 +88095,440.47499999963566,-0.05496332873591402 +88096,440.47999999963565,-0.05496327547948982 +88097,440.48499999963565,-0.05496322222128642 +88098,440.48999999963564,-0.05496316896130367 +88099,440.49499999963564,-0.05496311569954143 +88100,440.49999999963563,-0.05496306243599959 +88101,440.50499999963563,-0.05496300917067798 +88102,440.5099999996356,-0.05496295590357647 +88103,440.5149999996356,-0.05496290263469493 +88104,440.5199999996356,-0.05496284936403322 +88105,440.5249999996356,-0.0549627960915912 +88106,440.5299999996356,-0.05496274281736874 +88107,440.5349999996356,-0.05496268954136568 +88108,440.5399999996356,-0.05496263626358189 +88109,440.5449999996356,-0.05496258298401723 +88110,440.5499999996356,-0.05496252970267158 +88111,440.5549999996356,-0.054962476419544784 +88112,440.5599999996356,-0.05496242313463671 +88113,440.5649999996356,-0.05496236984794723 +88114,440.56999999963557,-0.05496231655947619 +88115,440.57499999963557,-0.05496226326922346 +88116,440.57999999963556,-0.05496220997718889 +88117,440.58499999963556,-0.05496215668337236 +88118,440.58999999963555,-0.05496210338777372 +88119,440.59499999963555,-0.05496205009039284 +88120,440.59999999963554,-0.05496199679122958 +88121,440.60499999963554,-0.0549619434902838 +88122,440.60999999963553,-0.05496189018755535 +88123,440.61499999963553,-0.05496183688304412 +88124,440.6199999996355,-0.054961783576749954 +88125,440.6249999996355,-0.05496173026867271 +88126,440.6299999996355,-0.05496167695881227 +88127,440.6349999996355,-0.054961623647168466 +88128,440.6399999996355,-0.054961570333741196 +88129,440.6449999996355,-0.05496151701853029 +88130,440.6499999996355,-0.05496146370153562 +88131,440.6549999996355,-0.054961410382757064 +88132,440.6599999996355,-0.05496135706219448 +88133,440.6649999996355,-0.05496130373984771 +88134,440.6699999996355,-0.05496125041571664 +88135,440.6749999996355,-0.05496119708980111 +88136,440.67999999963547,-0.05496114376210099 +88137,440.68499999963547,-0.05496109043261616 +88138,440.68999999963546,-0.05496103710134646 +88139,440.69499999963546,-0.05496098376829177 +88140,440.69999999963545,-0.05496093043345195 +88141,440.70499999963545,-0.05496087709682685 +88142,440.70999999963544,-0.05496082375841634 +88143,440.71499999963544,-0.05496077041822028 +88144,440.71999999963543,-0.05496071707623854 +88145,440.72499999963543,-0.05496066373247098 +88146,440.7299999996354,-0.054960610386917456 +88147,440.7349999996354,-0.05496055703957782 +88148,440.7399999996354,-0.05496050369045196 +88149,440.7449999996354,-0.05496045033953972 +88150,440.7499999996354,-0.05496039698684098 +88151,440.7549999996354,-0.054960343632355586 +88152,440.7599999996354,-0.054960290276083415 +88153,440.7649999996354,-0.054960236918024326 +88154,440.7699999996354,-0.05496018355817816 +88155,440.7749999996354,-0.05496013019654481 +88156,440.7799999996354,-0.05496007683312412 +88157,440.7849999996354,-0.05496002346791596 +88158,440.78999999963537,-0.05495997010092021 +88159,440.79499999963537,-0.05495991673213669 +88160,440.79999999963536,-0.054959863361565296 +88161,440.80499999963536,-0.054959809989205896 +88162,440.80999999963535,-0.05495975661505833 +88163,440.81499999963535,-0.054959703239122464 +88164,440.81999999963534,-0.054959649861398174 +88165,440.82499999963534,-0.054959596481885316 +88166,440.82999999963533,-0.054959543100583756 +88167,440.83499999963533,-0.05495948971749336 +88168,440.8399999996353,-0.05495943633261398 +88169,440.8449999996353,-0.05495938294594548 +88170,440.8499999996353,-0.054959329557487724 +88171,440.8549999996353,-0.05495927616724058 +88172,440.8599999996353,-0.05495922277520391 +88173,440.8649999996353,-0.05495916938137758 +88174,440.8699999996353,-0.05495911598576144 +88175,440.8749999996353,-0.05495906258835538 +88176,440.8799999996353,-0.05495900918915923 +88177,440.8849999996353,-0.054958955788172885 +88178,440.8899999996353,-0.054958902385396184 +88179,440.8949999996353,-0.054958848980829006 +88180,440.89999999963527,-0.0549587955744712 +88181,440.90499999963527,-0.05495874216632264 +88182,440.90999999963526,-0.054958688756383184 +88183,440.91499999963526,-0.054958635344652694 +88184,440.91999999963525,-0.05495858193113104 +88185,440.92499999963525,-0.054958528515818075 +88186,440.92999999963524,-0.05495847509871366 +88187,440.93499999963524,-0.054958421679817675 +88188,440.93999999963523,-0.05495836825912998 +88189,440.94499999963523,-0.05495831483665043 +88190,440.9499999996352,-0.05495826141237889 +88191,440.9549999996352,-0.05495820798631523 +88192,440.9599999996352,-0.054958154558459316 +88193,440.9649999996352,-0.054958101128811 +88194,440.9699999996352,-0.05495804769737015 +88195,440.9749999996352,-0.05495799426413662 +88196,440.9799999996352,-0.054957940829110284 +88197,440.9849999996352,-0.054957887392291016 +88198,440.9899999996352,-0.05495783395367866 +88199,440.9949999996352,-0.054957780513273095 +88200,440.9999999996352,-0.05495772707107417 +88201,441.0049999996352,-0.05495767362708176 +88202,441.00999999963517,-0.05495762018129573 +88203,441.01499999963517,-0.05495756673371592 +88204,441.01999999963516,-0.05495751328434223 +88205,441.02499999963516,-0.054957459833174495 +88206,441.02999999963515,-0.05495740638021259 +88207,441.03499999963515,-0.05495735292545638 +88208,441.03999999963514,-0.05495729946890572 +88209,441.04499999963514,-0.054957246010560484 +88210,441.04999999963513,-0.05495719255042053 +88211,441.05499999963513,-0.05495713908848572 +88212,441.0599999996351,-0.05495708562475592 +88213,441.0649999996351,-0.054957032159231006 +88214,441.0699999996351,-0.054956978691910824 +88215,441.0749999996351,-0.05495692522279525 +88216,441.0799999996351,-0.054956871751884136 +88217,441.0849999996351,-0.05495681827917736 +88218,441.0899999996351,-0.054956764804674776 +88219,441.0949999996351,-0.05495671132837625 +88220,441.0999999996351,-0.05495665785028164 +88221,441.1049999996351,-0.05495660437039082 +88222,441.1099999996351,-0.05495655088870366 +88223,441.1149999996351,-0.05495649740522001 +88224,441.11999999963507,-0.05495644391993973 +88225,441.12499999963507,-0.05495639043286269 +88226,441.12999999963506,-0.054956336943988764 +88227,441.13499999963506,-0.05495628345331781 +88228,441.13999999963505,-0.05495622996084969 +88229,441.14499999963505,-0.05495617646658427 +88230,441.14999999963504,-0.05495612297052141 +88231,441.15499999963504,-0.05495606947266097 +88232,441.15999999963503,-0.054956015973002835 +88233,441.16499999963503,-0.05495596247154684 +88234,441.169999999635,-0.054955908968292874 +88235,441.174999999635,-0.0549558554632408 +88236,441.179999999635,-0.05495580195639046 +88237,441.184999999635,-0.05495574844774174 +88238,441.189999999635,-0.0549556949372945 +88239,441.194999999635,-0.054955641425048586 +88240,441.199999999635,-0.05495558791100388 +88241,441.204999999635,-0.054955534395160245 +88242,441.209999999635,-0.054955480877517546 +88243,441.214999999635,-0.05495542735807564 +88244,441.219999999635,-0.054955373836834395 +88245,441.224999999635,-0.05495532031379368 +88246,441.22999999963497,-0.05495526678895336 +88247,441.23499999963497,-0.05495521326231328 +88248,441.23999999963496,-0.054955159733873334 +88249,441.24499999963496,-0.054955106203633364 +88250,441.24999999963495,-0.05495505267159325 +88251,441.25499999963495,-0.05495499913775285 +88252,441.25999999963494,-0.05495494560211203 +88253,441.26499999963494,-0.05495489206467065 +88254,441.26999999963493,-0.054954838525428575 +88255,441.27499999963493,-0.05495478498438567 +88256,441.2799999996349,-0.054954731441541796 +88257,441.2849999996349,-0.05495467789689683 +88258,441.2899999996349,-0.05495462435045063 +88259,441.2949999996349,-0.054954570802203055 +88260,441.2999999996349,-0.05495451725215398 +88261,441.3049999996349,-0.054954463700303255 +88262,441.3099999996349,-0.054954410146650756 +88263,441.3149999996349,-0.054954356591196345 +88264,441.3199999996349,-0.054954303033939896 +88265,441.3249999996349,-0.054954249474881256 +88266,441.3299999996349,-0.05495419591402029 +88267,441.3349999996349,-0.05495414235135688 +88268,441.33999999963487,-0.05495408878689088 +88269,441.34499999963487,-0.05495403522062216 +88270,441.34999999963486,-0.05495398165255058 +88271,441.35499999963486,-0.05495392808267602 +88272,441.35999999963485,-0.05495387451099832 +88273,441.36499999963485,-0.05495382093751735 +88274,441.36999999963484,-0.05495376736223298 +88275,441.37499999963484,-0.05495371378514508 +88276,441.37999999963483,-0.054953660206253516 +88277,441.38499999963483,-0.05495360662555814 +88278,441.3899999996348,-0.05495355304305882 +88279,441.3949999996348,-0.05495349945875543 +88280,441.3999999996348,-0.05495344587264783 +88281,441.4049999996348,-0.0549533922847359 +88282,441.4099999996348,-0.054953338695019484 +88283,441.4149999996348,-0.054953285103498443 +88284,441.4199999996348,-0.05495323151017266 +88285,441.4249999996348,-0.05495317791504199 +88286,441.4299999996348,-0.054953124318106304 +88287,441.4349999996348,-0.054953070719365456 +88288,441.4399999996348,-0.05495301711881932 +88289,441.4449999996348,-0.054952963516467765 +88290,441.44999999963477,-0.054952909912310645 +88291,441.45499999963477,-0.05495285630634783 +88292,441.45999999963476,-0.05495280269857919 +88293,441.46499999963476,-0.054952749089004584 +88294,441.46999999963475,-0.05495269547762388 +88295,441.47499999963475,-0.05495264186443694 +88296,441.47999999963474,-0.054952588249443636 +88297,441.48499999963474,-0.05495253463264383 +88298,441.48999999963473,-0.05495248101403739 +88299,441.49499999963473,-0.05495242739362418 +88300,441.4999999996347,-0.05495237377140406 +88301,441.5049999996347,-0.054952320147376894 +88302,441.5099999996347,-0.05495226652154256 +88303,441.5149999996347,-0.054952212893900905 +88304,441.5199999996347,-0.05495215926445181 +88305,441.5249999996347,-0.05495210563319513 +88306,441.5299999996347,-0.05495205200013074 +88307,441.5349999996347,-0.05495199836525849 +88308,441.5399999996347,-0.05495194472857827 +88309,441.5449999996347,-0.05495189109008993 +88310,441.5499999996347,-0.05495183744979333 +88311,441.5549999996347,-0.054951783807688344 +88312,441.55999999963467,-0.05495173016377484 +88313,441.56499999963467,-0.05495167651805268 +88314,441.56999999963466,-0.05495162287052173 +88315,441.57499999963466,-0.054951569221181856 +88316,441.57999999963465,-0.05495151557003292 +88317,441.58499999963465,-0.0549514619170748 +88318,441.58999999963464,-0.05495140826230734 +88319,441.59499999963464,-0.05495135460573042 +88320,441.59999999963463,-0.0549513009473439 +88321,441.60499999963463,-0.054951247287147655 +88322,441.6099999996346,-0.05495119362514153 +88323,441.6149999996346,-0.05495113996132541 +88324,441.6199999996346,-0.054951086295699156 +88325,441.6249999996346,-0.05495103262826264 +88326,441.6299999996346,-0.05495097895901572 +88327,441.6349999996346,-0.05495092528795826 +88328,441.6399999996346,-0.05495087161509012 +88329,441.6449999996346,-0.054950817940411185 +88330,441.6499999996346,-0.0549507642639213 +88331,441.6549999996346,-0.054950710585620344 +88332,441.6599999996346,-0.05495065690550818 +88333,441.6649999996346,-0.05495060322358468 +88334,441.66999999963457,-0.0549505495398497 +88335,441.67499999963457,-0.054950495854303116 +88336,441.67999999963456,-0.054950442166944787 +88337,441.68499999963456,-0.054950388477774566 +88338,441.68999999963455,-0.05495033478679234 +88339,441.69499999963455,-0.05495028109399796 +88340,441.69999999963454,-0.054950227399391295 +88341,441.70499999963454,-0.05495017370297222 +88342,441.70999999963453,-0.0549501200047406 +88343,441.71499999963453,-0.054950066304696295 +88344,441.7199999996345,-0.05495001260283917 +88345,441.7249999996345,-0.054949958899169093 +88346,441.7299999996345,-0.054949905193685936 +88347,441.7349999996345,-0.05494985148638955 +88348,441.7399999996345,-0.05494979777727981 +88349,441.7449999996345,-0.05494974406635659 +88350,441.7499999996345,-0.05494969035361975 +88351,441.7549999996345,-0.054949636639069155 +88352,441.7599999996345,-0.054949582922704666 +88353,441.7649999996345,-0.05494952920452616 +88354,441.7699999996345,-0.054949475484533494 +88355,441.7749999996345,-0.05494942176272655 +88356,441.77999999963447,-0.05494936803910517 +88357,441.78499999963446,-0.054949314313669236 +88358,441.78999999963446,-0.0549492605864186 +88359,441.79499999963446,-0.05494920685735315 +88360,441.79999999963445,-0.054949153126472736 +88361,441.80499999963445,-0.054949099393777234 +88362,441.80999999963444,-0.054949045659266504 +88363,441.81499999963444,-0.05494899192294041 +88364,441.81999999963443,-0.05494893818479882 +88365,441.82499999963443,-0.05494888444484161 +88366,441.8299999996344,-0.054948830703068635 +88367,441.8349999996344,-0.05494877695947977 +88368,441.8399999996344,-0.054948723214074874 +88369,441.8449999996344,-0.05494866946685382 +88370,441.8499999996344,-0.054948615717816465 +88371,441.8549999996344,-0.05494856196696268 +88372,441.8599999996344,-0.05494850821429235 +88373,441.8649999996344,-0.054948454459805306 +88374,441.8699999996344,-0.05494840070350143 +88375,441.8749999996344,-0.05494834694538061 +88376,441.8799999996344,-0.05494829318544268 +88377,441.8849999996344,-0.05494823942368751 +88378,441.88999999963437,-0.05494818566011499 +88379,441.89499999963436,-0.054948131894724965 +88380,441.89999999963436,-0.05494807812751732 +88381,441.90499999963436,-0.05494802435849191 +88382,441.90999999963435,-0.0549479705876486 +88383,441.91499999963435,-0.05494791681498725 +88384,441.91999999963434,-0.05494786304050774 +88385,441.92499999963434,-0.05494780926420994 +88386,441.92999999963433,-0.0549477554860937 +88387,441.93499999963433,-0.0549477017061589 +88388,441.9399999996343,-0.0549476479244054 +88389,441.9449999996343,-0.05494759414083308 +88390,441.9499999996343,-0.05494754035544179 +88391,441.9549999996343,-0.054947486568231396 +88392,441.9599999996343,-0.05494743277920178 +88393,441.9649999996343,-0.054947378988352794 +88394,441.9699999996343,-0.054947325195684314 +88395,441.9749999996343,-0.05494727140119621 +88396,441.9799999996343,-0.05494721760488834 +88397,441.9849999996343,-0.054947163806760575 +88398,441.9899999996343,-0.05494711000681278 +88399,441.9949999996343,-0.054947056205044816 +88400,441.99999999963427,-0.05494700240145656 +88401,442.00499999963426,-0.05494694859604787 +88402,442.00999999963426,-0.05494689478881864 +88403,442.01499999963426,-0.054946840979768694 +88404,442.01999999963425,-0.05494678716889793 +88405,442.02499999963425,-0.054946733356206194 +88406,442.02999999963424,-0.05494667954169337 +88407,442.03499999963424,-0.05494662572535933 +88408,442.03999999963423,-0.054946571907203916 +88409,442.04499999963423,-0.054946518087227024 +88410,442.0499999996342,-0.05494646426542849 +88411,442.0549999996342,-0.054946410441808195 +88412,442.0599999996342,-0.054946356616366016 +88413,442.0649999996342,-0.05494630278910182 +88414,442.0699999996342,-0.054946248960015466 +88415,442.0749999996342,-0.05494619512910681 +88416,442.0799999996342,-0.05494614129637574 +88417,442.0849999996342,-0.05494608746182212 +88418,442.0899999996342,-0.05494603362544579 +88419,442.0949999996342,-0.054945979787246656 +88420,442.0999999996342,-0.054945925947224555 +88421,442.1049999996342,-0.054945872105379365 +88422,442.10999999963417,-0.05494581826171096 +88423,442.11499999963416,-0.05494576441621919 +88424,442.11999999963416,-0.05494571056890395 +88425,442.12499999963416,-0.05494565671976508 +88426,442.12999999963415,-0.05494560286880247 +88427,442.13499999963415,-0.054945549016015977 +88428,442.13999999963414,-0.05494549516140546 +88429,442.14499999963414,-0.0549454413049708 +88430,442.14999999963413,-0.054945387446711846 +88431,442.15499999963413,-0.054945333586628495 +88432,442.1599999996341,-0.054945279724720596 +88433,442.1649999996341,-0.054945225860988 +88434,442.1699999996341,-0.0549451719954306 +88435,442.1749999996341,-0.054945118128048254 +88436,442.1799999996341,-0.05494506425884083 +88437,442.1849999996341,-0.0549450103878082 +88438,442.1899999996341,-0.054944956514950224 +88439,442.1949999996341,-0.054944902640266774 +88440,442.1999999996341,-0.05494484876375772 +88441,442.2049999996341,-0.05494479488542292 +88442,442.2099999996341,-0.05494474100526225 +88443,442.2149999996341,-0.05494468712327557 +88444,442.21999999963407,-0.05494463323946276 +88445,442.22499999963406,-0.05494457935382367 +88446,442.22999999963406,-0.05494452546635819 +88447,442.23499999963406,-0.05494447157706617 +88448,442.23999999963405,-0.054944417685947475 +88449,442.24499999963405,-0.054944363793001987 +88450,442.24999999963404,-0.054944309898229564 +88451,442.25499999963404,-0.05494425600163007 +88452,442.25999999963403,-0.05494420210320338 +88453,442.26499999963403,-0.054944148202949364 +88454,442.269999999634,-0.05494409430086789 +88455,442.274999999634,-0.05494404039695881 +88456,442.279999999634,-0.05494398649122202 +88457,442.284999999634,-0.05494393258365736 +88458,442.289999999634,-0.05494387867426471 +88459,442.294999999634,-0.054943824763043936 +88460,442.299999999634,-0.054943770849994904 +88461,442.304999999634,-0.054943716935117494 +88462,442.309999999634,-0.054943663018411554 +88463,442.314999999634,-0.054943609099876965 +88464,442.319999999634,-0.054943555179513597 +88465,442.324999999634,-0.054943501257321316 +88466,442.32999999963397,-0.054943447333299984 +88467,442.33499999963396,-0.05494339340744948 +88468,442.33999999963396,-0.05494333947976965 +88469,442.34499999963396,-0.05494328555026037 +88470,442.34999999963395,-0.054943231618921534 +88471,442.35499999963395,-0.05494317768575297 +88472,442.35999999963394,-0.05494312375075458 +88473,442.36499999963394,-0.054943069813926215 +88474,442.36999999963393,-0.05494301587526773 +88475,442.3749999996339,-0.054942961934779024 +88476,442.3799999996339,-0.05494290799245994 +88477,442.3849999996339,-0.054942854048310355 +88478,442.3899999996339,-0.05494280010233014 +88479,442.3949999996339,-0.054942746154519155 +88480,442.3999999996339,-0.054942692204877276 +88481,442.4049999996339,-0.05494263825340437 +88482,442.4099999996339,-0.05494258430010031 +88483,442.4149999996339,-0.05494253034496495 +88484,442.4199999996339,-0.05494247638799817 +88485,442.4249999996339,-0.054942422429199826 +88486,442.4299999996339,-0.0549423684685698 +88487,442.4349999996339,-0.054942314506107946 +88488,442.43999999963387,-0.05494226054181415 +88489,442.44499999963386,-0.05494220657568826 +88490,442.44999999963386,-0.054942152607730166 +88491,442.45499999963386,-0.054942098637939724 +88492,442.45999999963385,-0.05494204466631679 +88493,442.46499999963385,-0.05494199069286126 +88494,442.46999999963384,-0.05494193671757297 +88495,442.47499999963384,-0.054941882740451815 +88496,442.47999999963383,-0.05494182876149766 +88497,442.4849999996338,-0.05494177478071036 +88498,442.4899999996338,-0.05494172079808979 +88499,442.4949999996338,-0.05494166681363582 +88500,442.4999999996338,-0.05494161282734831 +88501,442.5049999996338,-0.05494155883922714 +88502,442.5099999996338,-0.05494150484927218 +88503,442.5149999996338,-0.05494145085748329 +88504,442.5199999996338,-0.054941396863860334 +88505,442.5249999996338,-0.0549413428684032 +88506,442.5299999996338,-0.054941288871111736 +88507,442.5349999996338,-0.054941234871985815 +88508,442.5399999996338,-0.054941180871025314 +88509,442.5449999996338,-0.054941126868230085 +88510,442.54999999963377,-0.05494107286360001 +88511,442.55499999963376,-0.05494101885713496 +88512,442.55999999963376,-0.054940964848834796 +88513,442.56499999963376,-0.05494091083869938 +88514,442.56999999963375,-0.054940856826728605 +88515,442.57499999963375,-0.05494080281292232 +88516,442.57999999963374,-0.05494074879728039 +88517,442.58499999963374,-0.0549406947798027 +88518,442.58999999963373,-0.0549406407604891 +88519,442.5949999996337,-0.05494058673933948 +88520,442.5999999996337,-0.054940532716353685 +88521,442.6049999996337,-0.0549404786915316 +88522,442.6099999996337,-0.05494042466487308 +88523,442.6149999996337,-0.05494037063637801 +88524,442.6199999996337,-0.05494031660604625 +88525,442.6249999996337,-0.05494026257387768 +88526,442.6299999996337,-0.054940208539872144 +88527,442.6349999996337,-0.05494015450402954 +88528,442.6399999996337,-0.05494010046634971 +88529,442.6449999996337,-0.05494004642683254 +88530,442.6499999996337,-0.05493999238547789 +88531,442.6549999996337,-0.05493993834228563 +88532,442.65999999963367,-0.05493988429725563 +88533,442.66499999963366,-0.05493983025038776 +88534,442.66999999963366,-0.054939776201681896 +88535,442.67499999963366,-0.054939722151137904 +88536,442.67999999963365,-0.05493966809875563 +88537,442.68499999963365,-0.05493961404453498 +88538,442.68999999963364,-0.05493955998847579 +88539,442.69499999963364,-0.054939505930577955 +88540,442.69999999963363,-0.05493945187084132 +88541,442.7049999996336,-0.05493939780926577 +88542,442.7099999996336,-0.05493934374585116 +88543,442.7149999996336,-0.054939289680597386 +88544,442.7199999996336,-0.05493923561350428 +88545,442.7249999996336,-0.05493918154457174 +88546,442.7299999996336,-0.05493912747379963 +88547,442.7349999996336,-0.05493907340118781 +88548,442.7399999996336,-0.05493901932673616 +88549,442.7449999996336,-0.054938965250444526 +88550,442.7499999996336,-0.0549389111723128 +88551,442.7549999996336,-0.054938857092340844 +88552,442.7599999996336,-0.05493880301052852 +88553,442.7649999996336,-0.054938748926875704 +88554,442.76999999963357,-0.05493869484138227 +88555,442.77499999963356,-0.0549386407540481 +88556,442.77999999963356,-0.05493858666487303 +88557,442.78499999963356,-0.054938532573856946 +88558,442.78999999963355,-0.05493847848099972 +88559,442.79499999963355,-0.054938424386301206 +88560,442.79999999963354,-0.0549383702897613 +88561,442.80499999963354,-0.05493831619137984 +88562,442.80999999963353,-0.054938262091156716 +88563,442.8149999996335,-0.054938207989091783 +88564,442.8199999996335,-0.054938153885184915 +88565,442.8249999996335,-0.054938099779436 +88566,442.8299999996335,-0.05493804567184489 +88567,442.8349999996335,-0.054937991562411456 +88568,442.8399999996335,-0.05493793745113555 +88569,442.8449999996335,-0.05493788333801707 +88570,442.8499999996335,-0.05493782922305587 +88571,442.8549999996335,-0.054937775106251835 +88572,442.8599999996335,-0.05493772098760482 +88573,442.8649999996335,-0.05493766686711469 +88574,442.8699999996335,-0.05493761274478132 +88575,442.8749999996335,-0.05493755862060458 +88576,442.87999999963347,-0.054937504494584344 +88577,442.88499999963346,-0.054937450366720486 +88578,442.88999999963346,-0.054937396237012846 +88579,442.89499999963346,-0.05493734210546133 +88580,442.89999999963345,-0.054937287972065776 +88581,442.90499999963345,-0.05493723383682608 +88582,442.90999999963344,-0.05493717969974211 +88583,442.91499999963344,-0.05493712556081371 +88584,442.91999999963343,-0.05493707142004077 +88585,442.9249999996334,-0.05493701727742315 +88586,442.9299999996334,-0.05493696313296073 +88587,442.9349999996334,-0.05493690898665336 +88588,442.9399999996334,-0.054936854838500936 +88589,442.9449999996334,-0.05493680068850331 +88590,442.9499999996334,-0.05493674653666035 +88591,442.9549999996334,-0.05493669238297194 +88592,442.9599999996334,-0.05493663822743794 +88593,442.9649999996334,-0.05493658407005822 +88594,442.9699999996334,-0.05493652991083265 +88595,442.9749999996334,-0.0549364757497611 +88596,442.9799999996334,-0.05493642158684344 +88597,442.9849999996334,-0.054936367422079545 +88598,442.98999999963337,-0.05493631325546927 +88599,442.99499999963336,-0.0549362590870125 +88600,442.99999999963336,-0.054936204916709086 +88601,443.00499999963336,-0.05493615074455892 +88602,443.00999999963335,-0.054936096570561845 +88603,443.01499999963335,-0.05493604239471776 +88604,443.01999999963334,-0.05493598821702652 +88605,443.02499999963334,-0.054935934037488 +88606,443.02999999963333,-0.054935879856102064 +88607,443.0349999996333,-0.054935825672868574 +88608,443.0399999996333,-0.05493577148778742 +88609,443.0449999996333,-0.05493571730085846 +88610,443.0499999996333,-0.054935663112081555 +88611,443.0549999996333,-0.054935608921456595 +88612,443.0599999996333,-0.054935554728983434 +88613,443.0649999996333,-0.05493550053466196 +88614,443.0699999996333,-0.05493544633849202 +88615,443.0749999996333,-0.05493539214047349 +88616,443.0799999996333,-0.05493533794060623 +88617,443.0849999996333,-0.05493528373889015 +88618,443.0899999996333,-0.05493522953532508 +88619,443.0949999996333,-0.05493517532991091 +88620,443.09999999963327,-0.0549351211226475 +88621,443.10499999963326,-0.054935066913534725 +88622,443.10999999963326,-0.05493501270257245 +88623,443.11499999963326,-0.05493495848976055 +88624,443.11999999963325,-0.05493490427509889 +88625,443.12499999963325,-0.054934850058587344 +88626,443.12999999963324,-0.05493479584022577 +88627,443.13499999963324,-0.05493474162001407 +88628,443.13999999963323,-0.05493468739795208 +88629,443.1449999996332,-0.05493463317403969 +88630,443.1499999996332,-0.054934578948276754 +88631,443.1549999996332,-0.05493452472066315 +88632,443.1599999996332,-0.054934470491198754 +88633,443.1649999996332,-0.054934416259883434 +88634,443.1699999996332,-0.05493436202671705 +88635,443.1749999996332,-0.054934307791699485 +88636,443.1799999996332,-0.05493425355483061 +88637,443.1849999996332,-0.05493419931611028 +88638,443.1899999996332,-0.05493414507553837 +88639,443.1949999996332,-0.054934090833114756 +88640,443.1999999996332,-0.05493403658883931 +88641,443.2049999996332,-0.054933982342711886 +88642,443.20999999963317,-0.05493392809473238 +88643,443.21499999963316,-0.054933873844900644 +88644,443.21999999963316,-0.054933819593216554 +88645,443.22499999963316,-0.05493376533967998 +88646,443.22999999963315,-0.05493371108429079 +88647,443.23499999963315,-0.05493365682704885 +88648,443.23999999963314,-0.05493360256795404 +88649,443.24499999963314,-0.05493354830700622 +88650,443.24999999963313,-0.054933494044205264 +88651,443.2549999996331,-0.05493343977955105 +88652,443.2599999996331,-0.054933385513043435 +88653,443.2649999996331,-0.0549333312446823 +88654,443.2699999996331,-0.0549332769744675 +88655,443.2749999996331,-0.054933222702398934 +88656,443.2799999996331,-0.05493316842847645 +88657,443.2849999996331,-0.05493311415269993 +88658,443.2899999996331,-0.05493305987506923 +88659,443.2949999996331,-0.054933005595584235 +88660,443.2999999996331,-0.054932951314244804 +88661,443.3049999996331,-0.054932897031050816 +88662,443.3099999996331,-0.05493284274600214 +88663,443.3149999996331,-0.05493278845909863 +88664,443.31999999963307,-0.05493273417034018 +88665,443.32499999963306,-0.05493267987972665 +88666,443.32999999963306,-0.0549326255872579 +88667,443.33499999963306,-0.05493257129293383 +88668,443.33999999963305,-0.05493251699675429 +88669,443.34499999963305,-0.05493246269871915 +88670,443.34999999963304,-0.05493240839882827 +88671,443.35499999963304,-0.05493235409708155 +88672,443.35999999963303,-0.054932299793478835 +88673,443.364999999633,-0.054932245488020004 +88674,443.369999999633,-0.054932191180704935 +88675,443.374999999633,-0.05493213687153349 +88676,443.379999999633,-0.05493208256050554 +88677,443.384999999633,-0.05493202824762095 +88678,443.389999999633,-0.0549319739328796 +88679,443.394999999633,-0.05493191961628136 +88680,443.399999999633,-0.05493186529782611 +88681,443.404999999633,-0.05493181097751369 +88682,443.409999999633,-0.054931756655344006 +88683,443.414999999633,-0.0549317023313169 +88684,443.419999999633,-0.054931648005432265 +88685,443.424999999633,-0.05493159367768996 +88686,443.42999999963297,-0.05493153934808986 +88687,443.43499999963296,-0.05493148501663182 +88688,443.43999999963296,-0.05493143068331574 +88689,443.44499999963296,-0.05493137634814147 +88690,443.44999999963295,-0.054931322011108875 +88691,443.45499999963295,-0.05493126767221784 +88692,443.45999999963294,-0.05493121333146824 +88693,443.46499999963294,-0.05493115898885993 +88694,443.46999999963293,-0.05493110464439279 +88695,443.4749999996329,-0.0549310502980667 +88696,443.4799999996329,-0.05493099594988151 +88697,443.4849999996329,-0.0549309415998371 +88698,443.4899999996329,-0.054930887247933345 +88699,443.4949999996329,-0.05493083289417011 +88700,443.4999999996329,-0.05493077853854726 +88701,443.5049999996329,-0.05493072418106468 +88702,443.5099999996329,-0.05493066982172223 +88703,443.5149999996329,-0.05493061546051979 +88704,443.5199999996329,-0.05493056109745723 +88705,443.5249999996329,-0.05493050673253441 +88706,443.5299999996329,-0.05493045236575121 +88707,443.5349999996329,-0.05493039799710751 +88708,443.53999999963287,-0.054930343626603165 +88709,443.54499999963286,-0.05493028925423805 +88710,443.54999999963286,-0.05493023488001204 +88711,443.55499999963286,-0.05493018050392499 +88712,443.55999999963285,-0.05493012612597679 +88713,443.56499999963285,-0.0549300717461673 +88714,443.56999999963284,-0.05493001736449641 +88715,443.57499999963284,-0.05492996298096397 +88716,443.57999999963283,-0.05492990859556986 +88717,443.5849999996328,-0.05492985420831394 +88718,443.5899999996328,-0.054929799819196094 +88719,443.5949999996328,-0.054929745428216194 +88720,443.5999999996328,-0.05492969103537411 +88721,443.6049999996328,-0.0549296366406697 +88722,443.6099999996328,-0.05492958224410285 +88723,443.6149999996328,-0.05492952784567342 +88724,443.6199999996328,-0.054929473445381294 +88725,443.6249999996328,-0.05492941904322632 +88726,443.6299999996328,-0.05492936463920839 +88727,443.6349999996328,-0.05492931023332737 +88728,443.6399999996328,-0.054929255825583126 +88729,443.6449999996328,-0.05492920141597554 +88730,443.64999999963277,-0.05492914700450447 +88731,443.65499999963276,-0.054929092591169806 +88732,443.65999999963276,-0.054929038175971404 +88733,443.66499999963276,-0.05492898375890913 +88734,443.66999999963275,-0.054928929339982877 +88735,443.67499999963275,-0.054928874919192495 +88736,443.67999999963274,-0.05492882049653787 +88737,443.68499999963274,-0.05492876607201886 +88738,443.68999999963273,-0.05492871164563535 +88739,443.6949999996327,-0.0549286572173872 +88740,443.6999999996327,-0.054928602787274274 +88741,443.7049999996327,-0.05492854835529646 +88742,443.7099999996327,-0.054928493921453624 +88743,443.7149999996327,-0.05492843948574564 +88744,443.7199999996327,-0.05492838504817237 +88745,443.7249999996327,-0.05492833060873371 +88746,443.7299999996327,-0.05492827616742949 +88747,443.7349999996327,-0.05492822172425962 +88748,443.7399999996327,-0.05492816727922394 +88749,443.7449999996327,-0.05492811283232236 +88750,443.7499999996327,-0.05492805838355472 +88751,443.7549999996327,-0.05492800393292089 +88752,443.75999999963267,-0.05492794948042075 +88753,443.76499999963266,-0.05492789502605418 +88754,443.76999999963266,-0.05492784056982104 +88755,443.77499999963266,-0.05492778611172121 +88756,443.77999999963265,-0.054927731651754554 +88757,443.78499999963265,-0.05492767718992094 +88758,443.78999999963264,-0.05492762272622025 +88759,443.79499999963264,-0.05492756826065235 +88760,443.79999999963263,-0.054927513793217114 +88761,443.8049999996326,-0.05492745932391442 +88762,443.8099999996326,-0.05492740485274413 +88763,443.8149999996326,-0.054927350379706114 +88764,443.8199999996326,-0.05492729590480025 +88765,443.8249999996326,-0.054927241428026394 +88766,443.8299999996326,-0.054927186949384435 +88767,443.8349999996326,-0.05492713246887425 +88768,443.8399999996326,-0.05492707798649569 +88769,443.8449999996326,-0.05492702350224863 +88770,443.8499999996326,-0.05492696901613296 +88771,443.8549999996326,-0.05492691452814853 +88772,443.8599999996326,-0.054926860038295236 +88773,443.8649999996326,-0.05492680554657292 +88774,443.86999999963257,-0.054926751052981476 +88775,443.87499999963256,-0.054926696557520756 +88776,443.87999999963256,-0.05492664206019066 +88777,443.88499999963256,-0.05492658756099104 +88778,443.88999999963255,-0.05492653305992177 +88779,443.89499999963255,-0.05492647855698272 +88780,443.89999999963254,-0.05492642405217376 +88781,443.90499999963254,-0.05492636954549476 +88782,443.90999999963253,-0.05492631503694561 +88783,443.9149999996325,-0.05492626052652617 +88784,443.9199999996325,-0.0549262060142363 +88785,443.9249999996325,-0.05492615150007589 +88786,443.9299999996325,-0.054926096984044805 +88787,443.9349999996325,-0.05492604246614292 +88788,443.9399999996325,-0.0549259879463701 +88789,443.9449999996325,-0.05492593342472621 +88790,443.9499999996325,-0.05492587890121114 +88791,443.9549999996325,-0.054925824375824744 +88792,443.9599999996325,-0.05492576984856692 +88793,443.9649999996325,-0.05492571531943752 +88794,443.9699999996325,-0.05492566078843641 +88795,443.9749999996325,-0.05492560625556347 +88796,443.97999999963247,-0.054925551720818575 +88797,443.98499999963246,-0.05492549718420159 +88798,443.98999999963246,-0.0549254426457124 +88799,443.99499999963246,-0.054925388105350866 +88800,443.99999999963245,-0.05492533356311685 +88801,444.00499999963245,-0.054925279019010245 +88802,444.00999999963244,-0.05492522447303092 +88803,444.01499999963244,-0.054925169925178735 +88804,444.01999999963243,-0.054925115375453575 +88805,444.0249999996324,-0.054925060823855294 +88806,444.0299999996324,-0.054925006270383776 +88807,444.0349999996324,-0.05492495171503889 +88808,444.0399999996324,-0.054924897157820514 +88809,444.0449999996324,-0.054924842598728506 +88810,444.0499999996324,-0.05492478803776275 +88811,444.0549999996324,-0.05492473347492312 +88812,444.0599999996324,-0.05492467891020948 +88813,444.0649999996324,-0.054924624343621706 +88814,444.0699999996324,-0.05492456977515967 +88815,444.0749999996324,-0.054924515204823235 +88816,444.0799999996324,-0.0549244606326123 +88817,444.0849999996324,-0.0549244060585267 +88818,444.08999999963237,-0.05492435148256634 +88819,444.09499999963236,-0.054924296904731065 +88820,444.09999999963236,-0.05492424232502077 +88821,444.10499999963235,-0.05492418774343531 +88822,444.10999999963235,-0.054924133159974575 +88823,444.11499999963235,-0.054924078574638414 +88824,444.11999999963234,-0.054924023987426705 +88825,444.12499999963234,-0.05492396939833934 +88826,444.12999999963233,-0.05492391480737616 +88827,444.1349999996323,-0.054923860214537074 +88828,444.1399999996323,-0.05492380561982192 +88829,444.1449999996323,-0.0549237510232306 +88830,444.1499999996323,-0.054923696424762955 +88831,444.1549999996323,-0.05492364182441888 +88832,444.1599999996323,-0.054923587222198235 +88833,444.1649999996323,-0.05492353261810091 +88834,444.1699999996323,-0.05492347801212675 +88835,444.1749999996323,-0.054923423404275654 +88836,444.1799999996323,-0.05492336879454747 +88837,444.1849999996323,-0.05492331418294209 +88838,444.1899999996323,-0.05492325956945938 +88839,444.1949999996323,-0.054923204954099206 +88840,444.19999999963227,-0.05492315033686144 +88841,444.20499999963226,-0.054923095717745965 +88842,444.20999999963226,-0.05492304109675264 +88843,444.21499999963225,-0.05492298647388135 +88844,444.21999999963225,-0.054922931849131974 +88845,444.22499999963225,-0.05492287722250436 +88846,444.22999999963224,-0.05492282259399839 +88847,444.23499999963224,-0.05492276796361395 +88848,444.23999999963223,-0.054922713331350896 +88849,444.2449999996322,-0.0549226586972091 +88850,444.2499999996322,-0.05492260406118845 +88851,444.2549999996322,-0.0549225494232888 +88852,444.2599999996322,-0.05492249478351004 +88853,444.2649999996322,-0.054922440141852026 +88854,444.2699999996322,-0.054922385498314644 +88855,444.2749999996322,-0.054922330852897744 +88856,444.2799999996322,-0.05492227620560122 +88857,444.2849999996322,-0.05492222155642495 +88858,444.2899999996322,-0.05492216690536878 +88859,444.2949999996322,-0.05492211225243261 +88860,444.2999999996322,-0.0549220575976163 +88861,444.3049999996322,-0.05492200294091973 +88862,444.30999999963217,-0.05492194828234274 +88863,444.31499999963216,-0.054921893621885244 +88864,444.31999999963216,-0.05492183895954709 +88865,444.32499999963215,-0.054921784295328166 +88866,444.32999999963215,-0.05492172962922834 +88867,444.33499999963215,-0.054921674961247474 +88868,444.33999999963214,-0.054921620291385455 +88869,444.34499999963214,-0.05492156561964214 +88870,444.34999999963213,-0.05492151094601741 +88871,444.3549999996321,-0.05492145627051113 +88872,444.3599999996321,-0.05492140159312319 +88873,444.3649999996321,-0.054921346913853454 +88874,444.3699999996321,-0.05492129223270179 +88875,444.3749999996321,-0.05492123754966808 +88876,444.3799999996321,-0.054921182864752185 +88877,444.3849999996321,-0.05492112817795399 +88878,444.3899999996321,-0.05492107348927335 +88879,444.3949999996321,-0.05492101879871015 +88880,444.3999999996321,-0.054920964106264264 +88881,444.4049999996321,-0.05492090941193557 +88882,444.4099999996321,-0.05492085471572392 +88883,444.4149999996321,-0.0549208000176292 +88884,444.41999999963207,-0.05492074531765128 +88885,444.42499999963206,-0.05492069061579004 +88886,444.42999999963206,-0.054920635912045344 +88887,444.43499999963205,-0.05492058120641707 +88888,444.43999999963205,-0.05492052649890509 +88889,444.44499999963205,-0.05492047178950926 +88890,444.44999999963204,-0.05492041707822948 +88891,444.45499999963204,-0.0549203623650656 +88892,444.45999999963203,-0.05492030765001751 +88893,444.464999999632,-0.054920252933085084 +88894,444.469999999632,-0.05492019821426818 +88895,444.474999999632,-0.054920143493566685 +88896,444.479999999632,-0.05492008877098046 +88897,444.484999999632,-0.05492003404650937 +88898,444.489999999632,-0.0549199793201533 +88899,444.494999999632,-0.05491992459191214 +88900,444.499999999632,-0.05491986986178573 +88901,444.504999999632,-0.054919815129773966 +88902,444.509999999632,-0.05491976039587671 +88903,444.514999999632,-0.05491970566009384 +88904,444.519999999632,-0.05491965092242522 +88905,444.524999999632,-0.054919596182870734 +88906,444.52999999963197,-0.054919541441430256 +88907,444.53499999963196,-0.05491948669810364 +88908,444.53999999963196,-0.05491943195289078 +88909,444.54499999963195,-0.054919377205791535 +88910,444.54999999963195,-0.05491932245680579 +88911,444.55499999963195,-0.05491926770593341 +88912,444.55999999963194,-0.05491921295317427 +88913,444.56499999963194,-0.05491915819852824 +88914,444.56999999963193,-0.054919103441995194 +88915,444.5749999996319,-0.054919048683575 +88916,444.5799999996319,-0.05491899392326755 +88917,444.5849999996319,-0.054918939161072704 +88918,444.5899999996319,-0.054918884396990324 +88919,444.5949999996319,-0.0549188296310203 +88920,444.5999999996319,-0.054918774863162496 +88921,444.6049999996319,-0.0549187200934168 +88922,444.6099999996319,-0.05491866532178306 +88923,444.6149999996319,-0.05491861054826116 +88924,444.6199999996319,-0.05491855577285098 +88925,444.6249999996319,-0.05491850099555239 +88926,444.6299999996319,-0.05491844621636527 +88927,444.6349999996319,-0.05491839143528947 +88928,444.63999999963187,-0.05491833665232489 +88929,444.64499999963186,-0.05491828186747138 +88930,444.64999999963186,-0.054918227080728826 +88931,444.65499999963185,-0.0549181722920971 +88932,444.65999999963185,-0.05491811750157606 +88933,444.66499999963185,-0.0549180627091656 +88934,444.66999999963184,-0.054918007914865584 +88935,444.67499999963184,-0.05491795311867588 +88936,444.67999999963183,-0.05491789832059638 +88937,444.6849999996318,-0.054917843520626945 +88938,444.6899999996318,-0.054917788718767444 +88939,444.6949999996318,-0.05491773391501775 +88940,444.6999999996318,-0.05491767910937775 +88941,444.7049999996318,-0.054917624301847295 +88942,444.7099999996318,-0.05491756949242628 +88943,444.7149999996318,-0.05491751468111457 +88944,444.7199999996318,-0.05491745986791203 +88945,444.7249999996318,-0.05491740505281854 +88946,444.7299999996318,-0.05491735023583397 +88947,444.7349999996318,-0.054917295416958195 +88948,444.7399999996318,-0.054917240596191096 +88949,444.7449999996318,-0.05491718577353254 +88950,444.74999999963177,-0.054917130948982394 +88951,444.75499999963176,-0.054917076122540535 +88952,444.75999999963176,-0.05491702129420685 +88953,444.76499999963175,-0.0549169664639812 +88954,444.76999999963175,-0.05491691163186344 +88955,444.77499999963175,-0.05491685679785347 +88956,444.77999999963174,-0.054916801961951166 +88957,444.78499999963174,-0.05491674712415639 +88958,444.78999999963173,-0.05491669228446901 +88959,444.7949999996317,-0.054916637442888896 +88960,444.7999999996317,-0.054916582599415946 +88961,444.8049999996317,-0.05491652775405001 +88962,444.8099999996317,-0.05491647290679097 +88963,444.8149999996317,-0.054916418057638694 +88964,444.8199999996317,-0.054916363206593065 +88965,444.8249999996317,-0.05491630835365395 +88966,444.8299999996317,-0.05491625349882122 +88967,444.8349999996317,-0.05491619864209476 +88968,444.8399999996317,-0.054916143783474425 +88969,444.8449999996317,-0.0549160889229601 +88970,444.8499999996317,-0.054916034060551656 +88971,444.8549999996317,-0.05491597919624897 +88972,444.85999999963167,-0.05491592433005191 +88973,444.86499999963166,-0.05491586946196036 +88974,444.86999999963166,-0.05491581459197417 +88975,444.87499999963165,-0.054915759720093237 +88976,444.87999999963165,-0.05491570484631743 +88977,444.88499999963165,-0.054915649970646616 +88978,444.88999999963164,-0.05491559509308067 +88979,444.89499999963164,-0.05491554021361947 +88980,444.89999999963163,-0.05491548533226288 +88981,444.9049999996316,-0.054915430449010774 +88982,444.9099999996316,-0.054915375563863035 +88983,444.9149999996316,-0.054915320676819535 +88984,444.9199999996316,-0.05491526578788015 +88985,444.9249999996316,-0.05491521089704473 +88986,444.9299999996316,-0.054915156004313175 +88987,444.9349999996316,-0.05491510110968535 +88988,444.9399999996316,-0.05491504621316114 +88989,444.9449999996316,-0.05491499131474039 +88990,444.9499999996316,-0.054914936414423 +88991,444.9549999996316,-0.05491488151220882 +88992,444.9599999996316,-0.05491482660809776 +88993,444.9649999996316,-0.05491477170208965 +88994,444.96999999963157,-0.0549147167941844 +88995,444.97499999963156,-0.054914661884381856 +88996,444.97999999963156,-0.05491460697268191 +88997,444.98499999963155,-0.05491455205908443 +88998,444.98999999963155,-0.054914497143589286 +88999,444.99499999963155,-0.05491444222619636 +89000,444.99999999963154,-0.05491438730690551 +89001,445.00499999963154,-0.054914332385716635 +89002,445.00999999963153,-0.054914277462629585 +89003,445.0149999996315,-0.05491422253764423 +89004,445.0199999996315,-0.05491416761076048 +89005,445.0249999996315,-0.05491411268197817 +89006,445.0299999996315,-0.05491405775129719 +89007,445.0349999996315,-0.05491400281871741 +89008,445.0399999996315,-0.05491394788423871 +89009,445.0449999996315,-0.05491389294786096 +89010,445.0499999996315,-0.05491383800958403 +89011,445.0549999996315,-0.054913783069407786 +89012,445.0599999996315,-0.05491372812733212 +89013,445.0649999996315,-0.054913673183356895 +89014,445.0699999996315,-0.05491361823748198 +89015,445.0749999996315,-0.05491356328970727 +89016,445.07999999963147,-0.05491350834003262 +89017,445.08499999963146,-0.05491345338845791 +89018,445.08999999963146,-0.05491339843498301 +89019,445.09499999963145,-0.05491334347960779 +89020,445.09999999963145,-0.05491328852233214 +89021,445.10499999963145,-0.054913233563155917 +89022,445.10999999963144,-0.054913178602079005 +89023,445.11499999963144,-0.05491312363910126 +89024,445.11999999963143,-0.054913068674222576 +89025,445.1249999996314,-0.054913013707442816 +89026,445.1299999996314,-0.05491295873876186 +89027,445.1349999996314,-0.05491290376817959 +89028,445.1399999996314,-0.054912848795695864 +89029,445.1449999996314,-0.054912793821310556 +89030,445.1499999996314,-0.054912738845023554 +89031,445.1549999996314,-0.054912683866834726 +89032,445.1599999996314,-0.05491262888674393 +89033,445.1649999996314,-0.05491257390475106 +89034,445.1699999996314,-0.054912518920855975 +89035,445.1749999996314,-0.05491246393505857 +89036,445.1799999996314,-0.0549124089473587 +89037,445.1849999996314,-0.05491235395775624 +89038,445.18999999963137,-0.05491229896625107 +89039,445.19499999963136,-0.054912243972843056 +89040,445.19999999963136,-0.054912188977532084 +89041,445.20499999963135,-0.054912133980318016 +89042,445.20999999963135,-0.054912078981200735 +89043,445.21499999963135,-0.05491202398018011 +89044,445.21999999963134,-0.054911968977256025 +89045,445.22499999963134,-0.05491191397242834 +89046,445.22999999963133,-0.054911858965696926 +89047,445.2349999996313,-0.05491180395706167 +89048,445.2399999996313,-0.05491174894652244 +89049,445.2449999996313,-0.05491169393407911 +89050,445.2499999996313,-0.05491163891973156 +89051,445.2549999996313,-0.05491158390347965 +89052,445.2599999996313,-0.05491152888532327 +89053,445.2649999996313,-0.05491147386526228 +89054,445.2699999996313,-0.05491141884329656 +89055,445.2749999996313,-0.05491136381942599 +89056,445.2799999996313,-0.054911308793650436 +89057,445.2849999996313,-0.054911253765969774 +89058,445.2899999996313,-0.05491119873638388 +89059,445.2949999996313,-0.054911143704892626 +89060,445.29999999963127,-0.05491108867149589 +89061,445.30499999963126,-0.05491103363619354 +89062,445.30999999963126,-0.05491097859898545 +89063,445.31499999963125,-0.05491092355987149 +89064,445.31999999963125,-0.05491086851885155 +89065,445.32499999963125,-0.05491081347592548 +89066,445.32999999963124,-0.054910758431093186 +89067,445.33499999963124,-0.05491070338435452 +89068,445.33999999963123,-0.054910648335709356 +89069,445.3449999996312,-0.05491059328515758 +89070,445.3499999996312,-0.054910538232699056 +89071,445.3549999996312,-0.05491048317833366 +89072,445.3599999996312,-0.054910428122061275 +89073,445.3649999996312,-0.054910373063881766 +89074,445.3699999996312,-0.054910318003795 +89075,445.3749999996312,-0.054910262941800854 +89076,445.3799999996312,-0.054910207877899214 +89077,445.3849999996312,-0.05491015281208995 +89078,445.3899999996312,-0.054910097744372936 +89079,445.3949999996312,-0.05491004267474804 +89080,445.3999999996312,-0.054909987603215145 +89081,445.4049999996312,-0.05490993252977411 +89082,445.40999999963117,-0.05490987745442482 +89083,445.41499999963116,-0.05490982237716715 +89084,445.41999999963116,-0.054909767298000976 +89085,445.42499999963115,-0.05490971221692617 +89086,445.42999999963115,-0.0549096571339426 +89087,445.43499999963115,-0.054909602049050155 +89088,445.43999999963114,-0.05490954696224869 +89089,445.44499999963114,-0.05490949187353807 +89090,445.44999999963113,-0.05490943678291821 +89091,445.4549999996311,-0.054909381690388955 +89092,445.4599999996311,-0.05490932659595019 +89093,445.4649999996311,-0.054909271499601786 +89094,445.4699999996311,-0.054909216401343615 +89095,445.4749999996311,-0.05490916130117555 +89096,445.4799999996311,-0.05490910619909747 +89097,445.4849999996311,-0.05490905109510923 +89098,445.4899999996311,-0.054908995989210736 +89099,445.4949999996311,-0.05490894088140185 +89100,445.4999999996311,-0.05490888577168244 +89101,445.5049999996311,-0.054908830660052386 +89102,445.5099999996311,-0.054908775546511565 +89103,445.5149999996311,-0.054908720431059835 +89104,445.51999999963107,-0.054908665313697085 +89105,445.52499999963106,-0.05490861019442319 +89106,445.52999999963106,-0.05490855507323802 +89107,445.53499999963105,-0.05490849995014145 +89108,445.53999999963105,-0.05490844482513336 +89109,445.54499999963105,-0.054908389698213614 +89110,445.54999999963104,-0.05490833456938209 +89111,445.55499999963104,-0.05490827943863866 +89112,445.55999999963103,-0.054908224305983196 +89113,445.564999999631,-0.05490816917141558 +89114,445.569999999631,-0.054908114034935694 +89115,445.574999999631,-0.0549080588965434 +89116,445.579999999631,-0.054908003756238576 +89117,445.584999999631,-0.05490794861402108 +89118,445.589999999631,-0.05490789346989081 +89119,445.594999999631,-0.05490783832384763 +89120,445.599999999631,-0.05490778317589143 +89121,445.604999999631,-0.054907728026022055 +89122,445.609999999631,-0.054907672874239394 +89123,445.614999999631,-0.05490761772054333 +89124,445.619999999631,-0.054907562564933725 +89125,445.624999999631,-0.05490750740741047 +89126,445.62999999963097,-0.05490745224797341 +89127,445.63499999963096,-0.054907397086622456 +89128,445.63999999963096,-0.05490734192335745 +89129,445.64499999963095,-0.05490728675817829 +89130,445.64999999963095,-0.05490723159108483 +89131,445.65499999963095,-0.05490717642207696 +89132,445.65999999963094,-0.05490712125115455 +89133,445.66499999963094,-0.05490706607831747 +89134,445.66999999963093,-0.05490701090356559 +89135,445.6749999996309,-0.0549069557268988 +89136,445.6799999996309,-0.05490690054831697 +89137,445.6849999996309,-0.05490684536781997 +89138,445.6899999996309,-0.05490679018540767 +89139,445.6949999996309,-0.054906735001079954 +89140,445.6999999996309,-0.05490667981483669 +89141,445.7049999996309,-0.054906624626677766 +89142,445.7099999996309,-0.054906569436603034 +89143,445.7149999996309,-0.05490651424461238 +89144,445.7199999996309,-0.054906459050705694 +89145,445.7249999996309,-0.054906403854882824 +89146,445.7299999996309,-0.05490634865714365 +89147,445.7349999996309,-0.05490629345748806 +89148,445.73999999963087,-0.05490623825591592 +89149,445.74499999963086,-0.05490618305242711 +89150,445.74999999963086,-0.054906127847021494 +89151,445.75499999963085,-0.05490607263969896 +89152,445.75999999963085,-0.05490601743045937 +89153,445.76499999963085,-0.054905962219302606 +89154,445.76999999963084,-0.05490590700622855 +89155,445.77499999963084,-0.054905851791237054 +89156,445.77999999963083,-0.05490579657432801 +89157,445.7849999996308,-0.054905741355501275 +89158,445.7899999996308,-0.05490568613475675 +89159,445.7949999996308,-0.0549056309120943 +89160,445.7999999996308,-0.05490557568751377 +89161,445.8049999996308,-0.05490552046101509 +89162,445.8099999996308,-0.054905465232598094 +89163,445.8149999996308,-0.05490541000226266 +89164,445.8199999996308,-0.05490535477000867 +89165,445.8249999996308,-0.05490529953583601 +89166,445.8299999996308,-0.05490524429974454 +89167,445.8349999996308,-0.05490518906173414 +89168,445.8399999996308,-0.05490513382180467 +89169,445.8449999996308,-0.054905078579956024 +89170,445.84999999963077,-0.05490502333618807 +89171,445.85499999963076,-0.054904968090500675 +89172,445.85999999963076,-0.05490491284289374 +89173,445.86499999963075,-0.054904857593367114 +89174,445.86999999963075,-0.054904802341920675 +89175,445.87499999963075,-0.054904747088554307 +89176,445.87999999963074,-0.05490469183326786 +89177,445.88499999963074,-0.05490463657606124 +89178,445.88999999963073,-0.05490458131693431 +89179,445.8949999996307,-0.05490452605588695 +89180,445.8999999996307,-0.05490447079291901 +89181,445.9049999996307,-0.0549044155280304 +89182,445.9099999996307,-0.054904360261220975 +89183,445.9149999996307,-0.05490430499249061 +89184,445.9199999996307,-0.05490424972183918 +89185,445.9249999996307,-0.05490419444926657 +89186,445.9299999996307,-0.05490413917477264 +89187,445.9349999996307,-0.05490408389835727 +89188,445.9399999996307,-0.05490402862002034 +89189,445.9449999996307,-0.05490397333976172 +89190,445.9499999996307,-0.0549039180575813 +89191,445.9549999996307,-0.054903862773478924 +89192,445.95999999963067,-0.054903807487454485 +89193,445.96499999963066,-0.05490375219950786 +89194,445.96999999963066,-0.05490369690963893 +89195,445.97499999963065,-0.05490364161784754 +89196,445.97999999963065,-0.0549035863241336 +89197,445.98499999963065,-0.05490353102849696 +89198,445.98999999963064,-0.054903475730937505 +89199,445.99499999963064,-0.0549034204314551 +89200,445.99999999963063,-0.054903365130049654 +89201,446.0049999996306,-0.054903309826721 +89202,446.0099999996306,-0.05490325452146904 +89203,446.0149999996306,-0.054903199214293624 +89204,446.0199999996306,-0.05490314390519464 +89205,446.0249999996306,-0.05490308859417198 +89206,446.0299999996306,-0.05490303328122549 +89207,446.0349999996306,-0.05490297796635507 +89208,446.0399999996306,-0.054902922649560565 +89209,446.0449999996306,-0.054902867330841876 +89210,446.0499999996306,-0.05490281201019886 +89211,446.0549999996306,-0.054902756687631414 +89212,446.0599999996306,-0.054902701363139385 +89213,446.0649999996306,-0.05490264603672267 +89214,446.06999999963057,-0.05490259070838114 +89215,446.07499999963056,-0.05490253537811467 +89216,446.07999999963056,-0.054902480045923116 +89217,446.08499999963055,-0.054902424711806376 +89218,446.08999999963055,-0.05490236937576432 +89219,446.09499999963055,-0.054902314037796815 +89220,446.09999999963054,-0.05490225869790375 +89221,446.10499999963054,-0.054902203356084985 +89222,446.10999999963053,-0.05490214801234039 +89223,446.1149999996305,-0.05490209266666986 +89224,446.1199999996305,-0.05490203731907326 +89225,446.1249999996305,-0.05490198196955046 +89226,446.1299999996305,-0.054901926618101345 +89227,446.1349999996305,-0.05490187126472579 +89228,446.1399999996305,-0.05490181590942365 +89229,446.1449999996305,-0.05490176055219482 +89230,446.1499999996305,-0.05490170519303916 +89231,446.1549999996305,-0.05490164983195658 +89232,446.1599999996305,-0.054901594468946914 +89233,446.1649999996305,-0.05490153910401006 +89234,446.1699999996305,-0.05490148373714588 +89235,446.1749999996305,-0.05490142836835426 +89236,446.17999999963047,-0.05490137299763507 +89237,446.18499999963046,-0.05490131762498817 +89238,446.18999999963046,-0.05490126225041345 +89239,446.19499999963045,-0.0549012068739108 +89240,446.19999999963045,-0.05490115149548007 +89241,446.20499999963045,-0.05490109611512114 +89242,446.20999999963044,-0.054901040732833896 +89243,446.21499999963044,-0.05490098534861821 +89244,446.21999999963043,-0.05490092996247394 +89245,446.2249999996304,-0.05490087457440099 +89246,446.2299999996304,-0.054900819184399215 +89247,446.2349999996304,-0.054900763792468485 +89248,446.2399999996304,-0.05490070839860869 +89249,446.2449999996304,-0.054900653002819697 +89250,446.2499999996304,-0.05490059760510138 +89251,446.2549999996304,-0.054900542205453616 +89252,446.2599999996304,-0.05490048680387629 +89253,446.2649999996304,-0.05490043140036927 +89254,446.2699999996304,-0.054900375994932436 +89255,446.2749999996304,-0.054900320587565644 +89256,446.2799999996304,-0.054900265178268785 +89257,446.2849999996304,-0.054900209767041734 +89258,446.28999999963037,-0.054900154353884345 +89259,446.29499999963036,-0.05490009893879652 +89260,446.29999999963036,-0.05490004352177813 +89261,446.30499999963035,-0.05489998810282904 +89262,446.30999999963035,-0.05489993268194914 +89263,446.31499999963034,-0.05489987725913828 +89264,446.31999999963034,-0.05489982183439635 +89265,446.32499999963034,-0.05489976640772323 +89266,446.32999999963033,-0.0548997109791188 +89267,446.3349999996303,-0.054899655548582914 +89268,446.3399999996303,-0.05489960011611545 +89269,446.3449999996303,-0.05489954468171631 +89270,446.3499999996303,-0.05489948924538534 +89271,446.3549999996303,-0.05489943380712242 +89272,446.3599999996303,-0.05489937836692744 +89273,446.3649999996303,-0.05489932292480026 +89274,446.3699999996303,-0.05489926748074076 +89275,446.3749999996303,-0.05489921203474882 +89276,446.3799999996303,-0.05489915658682431 +89277,446.3849999996303,-0.0548991011369671 +89278,446.3899999996303,-0.05489904568517709 +89279,446.3949999996303,-0.05489899023145412 +89280,446.39999999963027,-0.05489893477579808 +89281,446.40499999963026,-0.05489887931820886 +89282,446.40999999963026,-0.054898823858686316 +89283,446.41499999963025,-0.054898768397230326 +89284,446.41999999963025,-0.05489871293384077 +89285,446.42499999963024,-0.05489865746851753 +89286,446.42999999963024,-0.054898602001260455 +89287,446.43499999963024,-0.05489854653206945 +89288,446.43999999963023,-0.05489849106094437 +89289,446.4449999996302,-0.054898435587885104 +89290,446.4499999996302,-0.05489838011289152 +89291,446.4549999996302,-0.05489832463596349 +89292,446.4599999996302,-0.0548982691571009 +89293,446.4649999996302,-0.05489821367630361 +89294,446.4699999996302,-0.05489815819357152 +89295,446.4749999996302,-0.054898102708904474 +89296,446.4799999996302,-0.05489804722230237 +89297,446.4849999996302,-0.05489799173376507 +89298,446.4899999996302,-0.05489793624329245 +89299,446.4949999996302,-0.0548978807508844 +89300,446.4999999996302,-0.054897825256540786 +89301,446.5049999996302,-0.054897769760261485 +89302,446.50999999963017,-0.054897714262046364 +89303,446.51499999963016,-0.0548976587618953 +89304,446.51999999963016,-0.05489760325980818 +89305,446.52499999963015,-0.05489754775578487 +89306,446.52999999963015,-0.05489749224982525 +89307,446.53499999963014,-0.054897436741929186 +89308,446.53999999963014,-0.05489738123209655 +89309,446.54499999963014,-0.05489732572032723 +89310,446.54999999963013,-0.0548972702066211 +89311,446.5549999996301,-0.05489721469097803 +89312,446.5599999996301,-0.05489715917339791 +89313,446.5649999996301,-0.05489710365388059 +89314,446.5699999996301,-0.05489704813242596 +89315,446.5749999996301,-0.054896992609033905 +89316,446.5799999996301,-0.05489693708370427 +89317,446.5849999996301,-0.05489688155643697 +89318,446.5899999996301,-0.05489682602723184 +89319,446.5949999996301,-0.05489677049608878 +89320,446.5999999996301,-0.054896714963007666 +89321,446.6049999996301,-0.05489665942798837 +89322,446.6099999996301,-0.05489660389103075 +89323,446.6149999996301,-0.0548965483521347 +89324,446.61999999963007,-0.054896492811300095 +89325,446.62499999963006,-0.05489643726852681 +89326,446.62999999963006,-0.05489638172381472 +89327,446.63499999963005,-0.05489632617716369 +89328,446.63999999963005,-0.05489627062857361 +89329,446.64499999963004,-0.05489621507804433 +89330,446.64999999963004,-0.054896159525575756 +89331,446.65499999963004,-0.054896103971167745 +89332,446.65999999963003,-0.05489604841482019 +89333,446.66499999963,-0.054895992856532946 +89334,446.66999999963,-0.05489593729630589 +89335,446.67499999963,-0.05489588173413891 +89336,446.67999999963,-0.05489582617003188 +89337,446.68499999963,-0.05489577060398466 +89338,446.68999999963,-0.05489571503599714 +89339,446.69499999963,-0.05489565946606919 +89340,446.69999999963,-0.054895603894200694 +89341,446.70499999963,-0.054895548320391514 +89342,446.70999999963,-0.05489549274464153 +89343,446.71499999963,-0.05489543716695062 +89344,446.71999999963,-0.05489538158731865 +89345,446.72499999963,-0.054895326005745516 +89346,446.72999999962997,-0.05489527042223108 +89347,446.73499999962996,-0.05489521483677521 +89348,446.73999999962996,-0.05489515924937779 +89349,446.74499999962995,-0.054895103660038684 +89350,446.74999999962995,-0.054895048068757786 +89351,446.75499999962994,-0.05489499247553496 +89352,446.75999999962994,-0.054894936880370095 +89353,446.76499999962994,-0.054894881283263045 +89354,446.76999999962993,-0.0548948256842137 +89355,446.7749999996299,-0.05489477008322193 +89356,446.7799999996299,-0.05489471448028762 +89357,446.7849999996299,-0.05489465887541063 +89358,446.7899999996299,-0.054894603268590844 +89359,446.7949999996299,-0.05489454765982814 +89360,446.7999999996299,-0.054894492049122376 +89361,446.8049999996299,-0.05489443643647346 +89362,446.8099999996299,-0.05489438082188124 +89363,446.8149999996299,-0.05489432520534561 +89364,446.8199999996299,-0.05489426958686643 +89365,446.8249999996299,-0.054894213966443575 +89366,446.8299999996299,-0.05489415834407693 +89367,446.8349999996299,-0.054894102719766365 +89368,446.83999999962987,-0.05489404709351176 +89369,446.84499999962986,-0.05489399146531298 +89370,446.84999999962986,-0.05489393583516992 +89371,446.85499999962985,-0.05489388020308243 +89372,446.85999999962985,-0.05489382456905041 +89373,446.86499999962984,-0.05489376893307372 +89374,446.86999999962984,-0.054893713295152226 +89375,446.87499999962984,-0.054893657655285824 +89376,446.87999999962983,-0.05489360201347438 +89377,446.8849999996298,-0.054893546369717786 +89378,446.8899999996298,-0.05489349072401589 +89379,446.8949999996298,-0.05489343507636859 +89380,446.8999999996298,-0.05489337942677575 +89381,446.9049999996298,-0.05489332377523725 +89382,446.9099999996298,-0.05489326812175296 +89383,446.9149999996298,-0.054893212466322755 +89384,446.9199999996298,-0.05489315680894651 +89385,446.9249999996298,-0.05489310114962412 +89386,446.9299999996298,-0.05489304548835543 +89387,446.9349999996298,-0.054892989825140334 +89388,446.9399999996298,-0.05489293415997871 +89389,446.9449999996298,-0.054892878492870424 +89390,446.94999999962977,-0.05489282282381535 +89391,446.95499999962976,-0.054892767152813375 +89392,446.95999999962976,-0.05489271147986436 +89393,446.96499999962975,-0.05489265580496819 +89394,446.96999999962975,-0.05489260012812474 +89395,446.97499999962974,-0.054892544449333884 +89396,446.97999999962974,-0.0548924887685955 +89397,446.98499999962974,-0.05489243308590946 +89398,446.98999999962973,-0.05489237740127564 +89399,446.9949999996297,-0.05489232171469392 +89400,446.9999999996297,-0.05489226602616416 +89401,447.0049999996297,-0.05489221033568626 +89402,447.0099999996297,-0.05489215464326008 +89403,447.0149999996297,-0.054892098948885505 +89404,447.0199999996297,-0.0548920432525624 +89405,447.0249999996297,-0.05489198755429064 +89406,447.0299999996297,-0.05489193185407011 +89407,447.0349999996297,-0.05489187615190068 +89408,447.0399999996297,-0.05489182044778221 +89409,447.0449999996297,-0.054891764741714595 +89410,447.0499999996297,-0.05489170903369772 +89411,447.0549999996297,-0.05489165332373145 +89412,447.05999999962967,-0.05489159761181564 +89413,447.06499999962966,-0.054891541897950195 +89414,447.06999999962966,-0.05489148618213497 +89415,447.07499999962965,-0.05489143046436986 +89416,447.07999999962965,-0.054891374744654726 +89417,447.08499999962964,-0.05489131902298945 +89418,447.08999999962964,-0.0548912632993739 +89419,447.09499999962964,-0.054891207573807964 +89420,447.09999999962963,-0.05489115184629151 +89421,447.1049999996296,-0.054891096116824405 +89422,447.1099999996296,-0.05489104038540653 +89423,447.1149999996296,-0.054890984652037775 +89424,447.1199999996296,-0.054890928916718 +89425,447.1249999996296,-0.05489087317944708 +89426,447.1299999996296,-0.05489081744022491 +89427,447.1349999996296,-0.05489076169905134 +89428,447.1399999996296,-0.05489070595592627 +89429,447.1449999996296,-0.054890650210849545 +89430,447.1499999996296,-0.05489059446382106 +89431,447.1549999996296,-0.05489053871484069 +89432,447.1599999996296,-0.05489048296390831 +89433,447.1649999996296,-0.054890427211023794 +89434,447.16999999962957,-0.05489037145618701 +89435,447.17499999962956,-0.05489031569939786 +89436,447.17999999962956,-0.054890259940656196 +89437,447.18499999962955,-0.0548902041799619 +89438,447.18999999962955,-0.054890148417314835 +89439,447.19499999962954,-0.0548900926527149 +89440,447.19999999962954,-0.05489003688616195 +89441,447.20499999962954,-0.05488998111765588 +89442,447.20999999962953,-0.05488992534719654 +89443,447.2149999996295,-0.05488986957478383 +89444,447.2199999996295,-0.05488981380041762 +89445,447.2249999996295,-0.05488975802409776 +89446,447.2299999996295,-0.05488970224582416 +89447,447.2349999996295,-0.054889646465596686 +89448,447.2399999996295,-0.05488959068341521 +89449,447.2449999996295,-0.0548895348992796 +89450,447.2499999996295,-0.05488947911318974 +89451,447.2549999996295,-0.0548894233251455 +89452,447.2599999996295,-0.054889367535146776 +89453,447.2649999996295,-0.05488931174319342 +89454,447.2699999996295,-0.054889255949285315 +89455,447.2749999996295,-0.054889200153422336 +89456,447.27999999962947,-0.05488914435560436 +89457,447.28499999962946,-0.054889088555831266 +89458,447.28999999962946,-0.05488903275410293 +89459,447.29499999962945,-0.05488897695041922 +89460,447.29999999962945,-0.054888921144780015 +89461,447.30499999962944,-0.0548888653371852 +89462,447.30999999962944,-0.05488880952763462 +89463,447.31499999962944,-0.0548887537161282 +89464,447.31999999962943,-0.05488869790266577 +89465,447.3249999996294,-0.05488864208724722 +89466,447.3299999996294,-0.05488858626987243 +89467,447.3349999996294,-0.05488853045054128 +89468,447.3399999996294,-0.054888474629253635 +89469,447.3449999996294,-0.054888418806009386 +89470,447.3499999996294,-0.054888362980808396 +89471,447.3549999996294,-0.05488830715365055 +89472,447.3599999996294,-0.0548882513245357 +89473,447.3649999996294,-0.05488819549346376 +89474,447.3699999996294,-0.054888139660434564 +89475,447.3749999996294,-0.054888083825448006 +89476,447.3799999996294,-0.05488802798850398 +89477,447.3849999996294,-0.05488797214960234 +89478,447.38999999962937,-0.05488791630874296 +89479,447.39499999962936,-0.054887860465925725 +89480,447.39999999962936,-0.05488780462115051 +89481,447.40499999962935,-0.05488774877441719 +89482,447.40999999962935,-0.05488769292572563 +89483,447.41499999962934,-0.05488763707507573 +89484,447.41999999962934,-0.05488758122246735 +89485,447.42499999962934,-0.054887525367900356 +89486,447.42999999962933,-0.05488746951137463 +89487,447.4349999996293,-0.054887413652890064 +89488,447.4399999996293,-0.05488735779244651 +89489,447.4449999996293,-0.05488730193004386 +89490,447.4499999996293,-0.054887246065681995 +89491,447.4549999996293,-0.05488719019936077 +89492,447.4599999996293,-0.05488713433108008 +89493,447.4649999996293,-0.054887078460839775 +89494,447.4699999996293,-0.054887022588639756 +89495,447.4749999996293,-0.05488696671447988 +89496,447.4799999996293,-0.05488691083836004 +89497,447.4849999996293,-0.054886854960280104 +89498,447.4899999996293,-0.054886799080239954 +89499,447.4949999996293,-0.05488674319823946 +89500,447.49999999962927,-0.05488668731427849 +89501,447.50499999962926,-0.054886631428356925 +89502,447.50999999962926,-0.05488657554047464 +89503,447.51499999962925,-0.054886519650631516 +89504,447.51999999962925,-0.054886463758827435 +89505,447.52499999962924,-0.054886407865062256 +89506,447.52999999962924,-0.05488635196933586 +89507,447.53499999962924,-0.05488629607164813 +89508,447.53999999962923,-0.05488624017199894 +89509,447.5449999996292,-0.05488618427038816 +89510,447.5499999996292,-0.054886128366815654 +89511,447.5549999996292,-0.05488607246128132 +89512,447.5599999996292,-0.05488601655378503 +89513,447.5649999996292,-0.054885960644326645 +89514,447.5699999996292,-0.054885904732906055 +89515,447.5749999996292,-0.05488584881952313 +89516,447.5799999996292,-0.05488579290417775 +89517,447.5849999996292,-0.05488573698686979 +89518,447.5899999996292,-0.054885681067599126 +89519,447.5949999996292,-0.05488562514636563 +89520,447.5999999996292,-0.05488556922316917 +89521,447.6049999996292,-0.05488551329800964 +89522,447.60999999962917,-0.054885457370886896 +89523,447.61499999962916,-0.054885401441800825 +89524,447.61999999962916,-0.05488534551075131 +89525,447.62499999962915,-0.05488528957773821 +89526,447.62999999962915,-0.054885233642761405 +89527,447.63499999962914,-0.054885177705820784 +89528,447.63999999962914,-0.05488512176691621 +89529,447.64499999962914,-0.05488506582604757 +89530,447.64999999962913,-0.05488500988321472 +89531,447.6549999996291,-0.05488495393841755 +89532,447.6599999996291,-0.05488489799165593 +89533,447.6649999996291,-0.054884842042929746 +89534,447.6699999996291,-0.05488478609223887 +89535,447.6749999996291,-0.05488473013958317 +89536,447.6799999996291,-0.05488467418496252 +89537,447.6849999996291,-0.05488461822837681 +89538,447.6899999996291,-0.05488456226982591 +89539,447.6949999996291,-0.05488450630930969 +89540,447.6999999996291,-0.05488445034682802 +89541,447.7049999996291,-0.05488439438238079 +89542,447.7099999996291,-0.05488433841596786 +89543,447.7149999996291,-0.05488428244758913 +89544,447.71999999962907,-0.054884226477244454 +89545,447.72499999962906,-0.05488417050493371 +89546,447.72999999962906,-0.05488411453065677 +89547,447.73499999962905,-0.05488405855441354 +89548,447.73999999962905,-0.05488400257620387 +89549,447.74499999962904,-0.05488394659602764 +89550,447.74999999962904,-0.05488389061388472 +89551,447.75499999962904,-0.054883834629774995 +89552,447.75999999962903,-0.05488377864369834 +89553,447.764999999629,-0.054883722655654624 +89554,447.769999999629,-0.05488366666564372 +89555,447.774999999629,-0.05488361067366552 +89556,447.779999999629,-0.05488355467971988 +89557,447.784999999629,-0.054883498683806695 +89558,447.789999999629,-0.05488344268592583 +89559,447.794999999629,-0.05488338668607716 +89560,447.799999999629,-0.05488333068426056 +89561,447.804999999629,-0.05488327468047591 +89562,447.809999999629,-0.05488321867472308 +89563,447.814999999629,-0.05488316266700195 +89564,447.819999999629,-0.0548831066573124 +89565,447.824999999629,-0.0548830506456543 +89566,447.82999999962897,-0.05488299463202752 +89567,447.83499999962896,-0.054882938616431946 +89568,447.83999999962896,-0.054882882598867457 +89569,447.84499999962895,-0.05488282657933391 +89570,447.84999999962895,-0.054882770557831195 +89571,447.85499999962894,-0.054882714534359195 +89572,447.85999999962894,-0.05488265850891777 +89573,447.86499999962894,-0.05488260248150681 +89574,447.86999999962893,-0.05488254645212618 +89575,447.8749999996289,-0.054882490420775754 +89576,447.8799999996289,-0.05488243438745541 +89577,447.8849999996289,-0.05488237835216502 +89578,447.8899999996289,-0.054882322314904475 +89579,447.8949999996289,-0.05488226627567364 +89580,447.8999999996289,-0.054882210234472394 +89581,447.9049999996289,-0.05488215419130062 +89582,447.9099999996289,-0.05488209814615817 +89583,447.9149999996289,-0.05488204209904494 +89584,447.9199999996289,-0.054881986049960786 +89585,447.9249999996289,-0.05488192999890561 +89586,447.9299999996289,-0.05488187394587926 +89587,447.9349999996289,-0.05488181789088165 +89588,447.93999999962887,-0.05488176183391262 +89589,447.94499999962886,-0.05488170577497206 +89590,447.94999999962886,-0.05488164971405985 +89591,447.95499999962885,-0.05488159365117585 +89592,447.95999999962885,-0.05488153758631995 +89593,447.96499999962884,-0.054881481519492015 +89594,447.96999999962884,-0.05488142545069194 +89595,447.97499999962884,-0.054881369379919574 +89596,447.97999999962883,-0.05488131330717481 +89597,447.9849999996288,-0.054881257232457514 +89598,447.9899999996288,-0.05488120115576757 +89599,447.9949999996288,-0.05488114507710486 +89600,447.9999999996288,-0.05488108899646925 +89601,448.0049999996288,-0.05488103291386061 +89602,448.0099999996288,-0.054880976829278824 +89603,448.0149999996288,-0.05488092074272378 +89604,448.0199999996288,-0.054880864654195324 +89605,448.0249999996288,-0.05488080856369335 +89606,448.0299999996288,-0.054880752471217736 +89607,448.0349999996288,-0.054880696376768345 +89608,448.0399999996288,-0.05488064028034506 +89609,448.04499999962877,-0.054880584181947765 +89610,448.04999999962877,-0.054880528081576334 +89611,448.05499999962876,-0.05488047197923062 +89612,448.05999999962876,-0.05488041587491053 +89613,448.06499999962875,-0.05488035976861592 +89614,448.06999999962875,-0.05488030366034667 +89615,448.07499999962874,-0.05488024755010265 +89616,448.07999999962874,-0.05488019143788375 +89617,448.08499999962874,-0.05488013532368984 +89618,448.08999999962873,-0.0548800792075208 +89619,448.0949999996287,-0.05488002308937648 +89620,448.0999999996287,-0.05487996696925679 +89621,448.1049999996287,-0.05487991084716158 +89622,448.1099999996287,-0.054879854723090746 +89623,448.1149999996287,-0.05487979859704416 +89624,448.1199999996287,-0.05487974246902168 +89625,448.1249999996287,-0.054879686339023195 +89626,448.1299999996287,-0.05487963020704858 +89627,448.1349999996287,-0.054879574073097716 +89628,448.1399999996287,-0.05487951793717046 +89629,448.1449999996287,-0.054879461799266706 +89630,448.1499999996287,-0.054879405659386336 +89631,448.15499999962867,-0.05487934951752921 +89632,448.15999999962867,-0.05487929337369521 +89633,448.16499999962866,-0.0548792372278842 +89634,448.16999999962866,-0.054879181080096075 +89635,448.17499999962865,-0.05487912493033069 +89636,448.17999999962865,-0.05487906877858794 +89637,448.18499999962864,-0.05487901262486768 +89638,448.18999999962864,-0.05487895646916981 +89639,448.19499999962864,-0.05487890031149419 +89640,448.19999999962863,-0.054878844151840696 +89641,448.2049999996286,-0.054878787990209205 +89642,448.2099999996286,-0.05487873182659961 +89643,448.2149999996286,-0.054878675661011754 +89644,448.2199999996286,-0.054878619493445545 +89645,448.2249999996286,-0.054878563323900835 +89646,448.2299999996286,-0.05487850715237751 +89647,448.2349999996286,-0.054878450978875434 +89648,448.2399999996286,-0.0548783948033945 +89649,448.2449999996286,-0.054878338625934574 +89650,448.2499999996286,-0.054878282446495535 +89651,448.2549999996286,-0.05487822626507726 +89652,448.2599999996286,-0.054878170081679625 +89653,448.26499999962857,-0.05487811389630251 +89654,448.26999999962857,-0.05487805770894578 +89655,448.27499999962856,-0.0548780015196093 +89656,448.27999999962856,-0.05487794532829297 +89657,448.28499999962855,-0.05487788913499665 +89658,448.28999999962855,-0.054877832939720234 +89659,448.29499999962854,-0.05487777674246358 +89660,448.29999999962854,-0.05487772054322657 +89661,448.30499999962854,-0.05487766434200909 +89662,448.30999999962853,-0.054877608138810985 +89663,448.3149999996285,-0.05487755193363216 +89664,448.3199999996285,-0.05487749572647248 +89665,448.3249999996285,-0.05487743951733181 +89666,448.3299999996285,-0.05487738330621005 +89667,448.3349999996285,-0.05487732709310705 +89668,448.3399999996285,-0.054877270878022716 +89669,448.3449999996285,-0.054877214660956894 +89670,448.3499999996285,-0.05487715844190948 +89671,448.3549999996285,-0.05487710222088033 +89672,448.3599999996285,-0.054877045997869335 +89673,448.3649999996285,-0.054876989772876375 +89674,448.3699999996285,-0.05487693354590131 +89675,448.37499999962847,-0.05487687731694402 +89676,448.37999999962847,-0.05487682108600438 +89677,448.38499999962846,-0.05487676485308228 +89678,448.38999999962846,-0.054876708618177575 +89679,448.39499999962845,-0.05487665238129016 +89680,448.39999999962845,-0.0548765961424199 +89681,448.40499999962844,-0.05487653990156668 +89682,448.40999999962844,-0.05487648365873035 +89683,448.41499999962844,-0.05487642741391082 +89684,448.41999999962843,-0.05487637116710793 +89685,448.4249999996284,-0.05487631491832158 +89686,448.4299999996284,-0.05487625866755166 +89687,448.4349999996284,-0.054876202414798 +89688,448.4399999996284,-0.054876146160060514 +89689,448.4449999996284,-0.054876089903339066 +89690,448.4499999996284,-0.054876033644633525 +89691,448.4549999996284,-0.05487597738394378 +89692,448.4599999996284,-0.0548759211212697 +89693,448.4649999996284,-0.05487586485661116 +89694,448.4699999996284,-0.05487580858996803 +89695,448.4749999996284,-0.05487575232134019 +89696,448.4799999996284,-0.054875696050727514 +89697,448.48499999962837,-0.054875639778129884 +89698,448.48999999962837,-0.054875583503547175 +89699,448.49499999962836,-0.05487552722697926 +89700,448.49999999962836,-0.054875470948426014 +89701,448.50499999962835,-0.05487541466788731 +89702,448.50999999962835,-0.05487535838536303 +89703,448.51499999962834,-0.05487530210085305 +89704,448.51999999962834,-0.05487524581435723 +89705,448.52499999962833,-0.05487518952587547 +89706,448.52999999962833,-0.05487513323540763 +89707,448.5349999996283,-0.054875076942953585 +89708,448.5399999996283,-0.05487502064851321 +89709,448.5449999996283,-0.05487496435208639 +89710,448.5499999996283,-0.054874908053673 +89711,448.5549999996283,-0.054874851753272905 +89712,448.5599999996283,-0.054874795450885985 +89713,448.5649999996283,-0.05487473914651213 +89714,448.5699999996283,-0.05487468284015119 +89715,448.5749999996283,-0.05487462653180306 +89716,448.5799999996283,-0.054874570221467606 +89717,448.5849999996283,-0.05487451390914471 +89718,448.5899999996283,-0.05487445759483424 +89719,448.59499999962827,-0.054874401278536086 +89720,448.59999999962827,-0.0548743449602501 +89721,448.60499999962826,-0.05487428863997617 +89722,448.60999999962826,-0.05487423231771419 +89723,448.61499999962825,-0.05487417599346401 +89724,448.61999999962825,-0.05487411966722552 +89725,448.62499999962824,-0.05487406333899858 +89726,448.62999999962824,-0.05487400700878308 +89727,448.63499999962823,-0.05487395067657889 +89728,448.63999999962823,-0.05487389434238588 +89729,448.6449999996282,-0.05487383800620394 +89730,448.6499999996282,-0.05487378166803293 +89731,448.6549999996282,-0.05487372532787275 +89732,448.6599999996282,-0.054873668985723247 +89733,448.6649999996282,-0.0548736126415843 +89734,448.6699999996282,-0.0548735562954558 +89735,448.6749999996282,-0.054873499947337624 +89736,448.6799999996282,-0.05487344359722963 +89737,448.6849999996282,-0.054873387245131695 +89738,448.6899999996282,-0.05487333089104371 +89739,448.6949999996282,-0.054873274534965544 +89740,448.6999999996282,-0.05487321817689707 +89741,448.70499999962817,-0.05487316181683816 +89742,448.70999999962817,-0.0548731054547887 +89743,448.71499999962816,-0.05487304909074857 +89744,448.71999999962816,-0.05487299272471762 +89745,448.72499999962815,-0.054872936356695746 +89746,448.72999999962815,-0.05487287998668282 +89747,448.73499999962814,-0.054872823614678726 +89748,448.73999999962814,-0.054872767240683316 +89749,448.74499999962813,-0.054872710864696486 +89750,448.74999999962813,-0.0548726544867181 +89751,448.7549999996281,-0.05487259810674804 +89752,448.7599999996281,-0.054872541724786186 +89753,448.7649999996281,-0.054872485340832416 +89754,448.7699999996281,-0.05487242895488659 +89755,448.7749999996281,-0.05487237256694859 +89756,448.7799999996281,-0.05487231617701829 +89757,448.7849999996281,-0.054872259785095565 +89758,448.7899999996281,-0.05487220339118029 +89759,448.7949999996281,-0.05487214699527236 +89760,448.7999999996281,-0.05487209059737162 +89761,448.8049999996281,-0.05487203419747797 +89762,448.8099999996281,-0.054871977795591276 +89763,448.81499999962807,-0.05487192139171141 +89764,448.81999999962807,-0.054871864985838244 +89765,448.82499999962806,-0.054871808577971665 +89766,448.82999999962806,-0.05487175216811154 +89767,448.83499999962805,-0.05487169575625775 +89768,448.83999999962805,-0.05487163934241016 +89769,448.84499999962804,-0.054871582926568664 +89770,448.84999999962804,-0.05487152650873313 +89771,448.85499999962803,-0.054871470088903425 +89772,448.85999999962803,-0.05487141366707943 +89773,448.864999999628,-0.05487135724326102 +89774,448.869999999628,-0.05487130081744807 +89775,448.874999999628,-0.054871244389640465 +89776,448.879999999628,-0.05487118795983807 +89777,448.884999999628,-0.05487113152804077 +89778,448.889999999628,-0.05487107509424843 +89779,448.894999999628,-0.054871018658460925 +89780,448.899999999628,-0.05487096222067814 +89781,448.904999999628,-0.05487090578089993 +89782,448.909999999628,-0.0548708493391262 +89783,448.914999999628,-0.054870792895356804 +89784,448.919999999628,-0.05487073644959162 +89785,448.92499999962797,-0.054870680001830534 +89786,448.92999999962797,-0.05487062355207343 +89787,448.93499999962796,-0.05487056710032016 +89788,448.93999999962796,-0.05487051064657061 +89789,448.94499999962795,-0.05487045419082465 +89790,448.94999999962795,-0.05487039773308216 +89791,448.95499999962794,-0.05487034127334302 +89792,448.95999999962794,-0.05487028481160709 +89793,448.96499999962793,-0.054870228347874264 +89794,448.96999999962793,-0.05487017188214441 +89795,448.9749999996279,-0.054870115414417386 +89796,448.9799999996279,-0.0548700589446931 +89797,448.9849999996279,-0.054870002472971406 +89798,448.9899999996279,-0.054869945999252184 +89799,448.9949999996279,-0.05486988952353531 +89800,448.9999999996279,-0.05486983304582066 +89801,449.0049999996279,-0.0548697765661081 +89802,449.0099999996279,-0.05486972008439753 +89803,449.0149999996279,-0.05486966360068881 +89804,449.0199999996279,-0.0548696071149818 +89805,449.0249999996279,-0.054869550627276414 +89806,449.0299999996279,-0.054869494137572486 +89807,449.03499999962787,-0.05486943764586993 +89808,449.03999999962787,-0.05486938115216857 +89809,449.04499999962786,-0.054869324656468335 +89810,449.04999999962786,-0.05486926815876907 +89811,449.05499999962785,-0.05486921165907066 +89812,449.05999999962785,-0.05486915515737297 +89813,449.06499999962784,-0.05486909865367589 +89814,449.06999999962784,-0.0548690421479793 +89815,449.07499999962783,-0.05486898564028306 +89816,449.07999999962783,-0.05486892913058705 +89817,449.0849999996278,-0.054868872618891146 +89818,449.0899999996278,-0.05486881610519522 +89819,449.0949999996278,-0.05486875958949915 +89820,449.0999999996278,-0.05486870307180281 +89821,449.1049999996278,-0.05486864655210608 +89822,449.1099999996278,-0.05486859003040884 +89823,449.1149999996278,-0.05486853350671095 +89824,449.1199999996278,-0.05486847698101229 +89825,449.1249999996278,-0.05486842045331275 +89826,449.1299999996278,-0.0548683639236122 +89827,449.1349999996278,-0.054868307391910495 +89828,449.1399999996278,-0.05486825085820753 +89829,449.14499999962777,-0.05486819432250317 +89830,449.14999999962777,-0.0548681377847973 +89831,449.15499999962776,-0.05486808124508979 +89832,449.15999999962776,-0.054868024703380515 +89833,449.16499999962775,-0.054867968159669364 +89834,449.16999999962775,-0.05486791161395618 +89835,449.17499999962774,-0.05486785506624087 +89836,449.17999999962774,-0.05486779851652329 +89837,449.18499999962773,-0.05486774196480333 +89838,449.18999999962773,-0.054867685411080856 +89839,449.1949999996277,-0.054867628855355746 +89840,449.1999999996277,-0.05486757229762788 +89841,449.2049999996277,-0.054867515737897124 +89842,449.2099999996277,-0.054867459176163355 +89843,449.2149999996277,-0.054867402612426446 +89844,449.2199999996277,-0.0548673460466863 +89845,449.2249999996277,-0.05486728947894275 +89846,449.2299999996277,-0.05486723290919569 +89847,449.2349999996277,-0.054867176337445006 +89848,449.2399999996277,-0.054867119763690554 +89849,449.2449999996277,-0.05486706318793223 +89850,449.2499999996277,-0.0548670066101699 +89851,449.25499999962767,-0.054866950030403434 +89852,449.25999999962767,-0.05486689344863271 +89853,449.26499999962766,-0.054866836864857604 +89854,449.26999999962766,-0.05486678027907799 +89855,449.27499999962765,-0.054866723691293744 +89856,449.27999999962765,-0.05486666710150475 +89857,449.28499999962764,-0.05486661050971087 +89858,449.28999999962764,-0.05486655391591198 +89859,449.29499999962763,-0.054866497320107954 +89860,449.29999999962763,-0.054866440722298675 +89861,449.3049999996276,-0.05486638412248402 +89862,449.3099999996276,-0.05486632752066386 +89863,449.3149999996276,-0.05486627091683808 +89864,449.3199999996276,-0.05486621431100653 +89865,449.3249999996276,-0.05486615770316911 +89866,449.3299999996276,-0.05486610109332568 +89867,449.3349999996276,-0.054866044481476126 +89868,449.3399999996276,-0.05486598786762032 +89869,449.3449999996276,-0.05486593125175814 +89870,449.3499999996276,-0.05486587463388945 +89871,449.3549999996276,-0.05486581801401414 +89872,449.3599999996276,-0.054865761392132076 +89873,449.36499999962757,-0.05486570476824312 +89874,449.36999999962757,-0.05486564814234717 +89875,449.37499999962756,-0.05486559151444409 +89876,449.37999999962756,-0.05486553488453377 +89877,449.38499999962755,-0.054865478252616076 +89878,449.38999999962755,-0.054865421618690874 +89879,449.39499999962754,-0.054865364982758055 +89880,449.39999999962754,-0.05486530834481748 +89881,449.40499999962753,-0.05486525170486903 +89882,449.40999999962753,-0.054865195062912576 +89883,449.4149999996275,-0.054865138418947995 +89884,449.4199999996275,-0.05486508177297516 +89885,449.4249999996275,-0.054865025124993964 +89886,449.4299999996275,-0.054864968475004265 +89887,449.4349999996275,-0.05486491182300593 +89888,449.4399999996275,-0.05486485516899885 +89889,449.4449999996275,-0.054864798512982885 +89890,449.4499999996275,-0.05486474185495794 +89891,449.4549999996275,-0.054864685194923865 +89892,449.4599999996275,-0.054864628532880544 +89893,449.4649999996275,-0.05486457186882785 +89894,449.4699999996275,-0.05486451520276566 +89895,449.47499999962747,-0.05486445853469384 +89896,449.47999999962747,-0.05486440186461228 +89897,449.48499999962746,-0.05486434519252085 +89898,449.48999999962746,-0.054864288518419416 +89899,449.49499999962745,-0.05486423184230786 +89900,449.49999999962745,-0.054864175164186055 +89901,449.50499999962744,-0.05486411848405388 +89902,449.50999999962744,-0.05486406180191121 +89903,449.51499999962743,-0.054864005117757915 +89904,449.51999999962743,-0.05486394843159387 +89905,449.5249999996274,-0.05486389174341895 +89906,449.5299999996274,-0.054863835053233036 +89907,449.5349999996274,-0.054863778361036 +89908,449.5399999996274,-0.054863721666827715 +89909,449.5449999996274,-0.05486366497060806 +89910,449.5499999996274,-0.05486360827237691 +89911,449.5549999996274,-0.05486355157213414 +89912,449.5599999996274,-0.05486349486987962 +89913,449.5649999996274,-0.05486343816561323 +89914,449.5699999996274,-0.05486338145933485 +89915,449.5749999996274,-0.05486332475104435 +89916,449.5799999996274,-0.05486326804074159 +89917,449.58499999962737,-0.05486321132842646 +89918,449.58999999962737,-0.054863154614098845 +89919,449.59499999962736,-0.05486309789775861 +89920,449.59999999962736,-0.05486304117940562 +89921,449.60499999962735,-0.054862984459039754 +89922,449.60999999962735,-0.0548629277366609 +89923,449.61499999962734,-0.05486287101226893 +89924,449.61999999962734,-0.05486281428586371 +89925,449.62499999962733,-0.05486275755744512 +89926,449.62999999962733,-0.05486270082701303 +89927,449.6349999996273,-0.054862644094567314 +89928,449.6399999996273,-0.054862587360107865 +89929,449.6449999996273,-0.05486253062363454 +89930,449.6499999996273,-0.05486247388514723 +89931,449.6549999996273,-0.05486241714464579 +89932,449.6599999996273,-0.054862360402130106 +89933,449.6649999996273,-0.05486230365760005 +89934,449.6699999996273,-0.05486224691105549 +89935,449.6749999996273,-0.05486219016249632 +89936,449.6799999996273,-0.0548621334119224 +89937,449.6849999996273,-0.05486207665933361 +89938,449.6899999996273,-0.054862019904729824 +89939,449.69499999962727,-0.05486196314811092 +89940,449.69999999962727,-0.05486190638947676 +89941,449.70499999962726,-0.05486184962882723 +89942,449.70999999962726,-0.054861792866162204 +89943,449.71499999962725,-0.05486173610148157 +89944,449.71999999962725,-0.05486167933478518 +89945,449.72499999962724,-0.05486162256607292 +89946,449.72999999962724,-0.05486156579534467 +89947,449.73499999962723,-0.054861509022600306 +89948,449.73999999962723,-0.05486145224783968 +89949,449.7449999996272,-0.05486139547106268 +89950,449.7499999996272,-0.05486133869226919 +89951,449.7549999996272,-0.05486128191145907 +89952,449.7599999996272,-0.054861225128632216 +89953,449.7649999996272,-0.05486116834378848 +89954,449.7699999996272,-0.05486111155692775 +89955,449.7749999996272,-0.0548610547680499 +89956,449.7799999996272,-0.054860997977154796 +89957,449.7849999996272,-0.05486094118424232 +89958,449.7899999996272,-0.05486088438931236 +89959,449.7949999996272,-0.05486082759236477 +89960,449.7999999996272,-0.05486077079339944 +89961,449.80499999962717,-0.054860713992416224 +89962,449.80999999962717,-0.05486065718941501 +89963,449.81499999962716,-0.054860600384395684 +89964,449.81999999962716,-0.054860543577358103 +89965,449.82499999962715,-0.05486048676830215 +89966,449.82999999962715,-0.054860429957227695 +89967,449.83499999962714,-0.05486037314413461 +89968,449.83999999962714,-0.054860316329022794 +89969,449.84499999962713,-0.0548602595118921 +89970,449.84999999962713,-0.054860202692742395 +89971,449.8549999996271,-0.05486014587157356 +89972,449.8599999996271,-0.05486008904838549 +89973,449.8649999996271,-0.05486003222317804 +89974,449.8699999996271,-0.0548599753959511 +89975,449.8749999996271,-0.054859918566704524 +89976,449.8799999996271,-0.0548598617354382 +89977,449.8849999996271,-0.05485980490215201 +89978,449.8899999996271,-0.05485974806684581 +89979,449.8949999996271,-0.05485969122951948 +89980,449.8999999996271,-0.05485963439017291 +89981,449.9049999996271,-0.05485957754880596 +89982,449.9099999996271,-0.0548595207054185 +89983,449.91499999962707,-0.05485946386001042 +89984,449.91999999962707,-0.05485940701258159 +89985,449.92499999962706,-0.05485935016313188 +89986,449.92999999962706,-0.054859293311661166 +89987,449.93499999962705,-0.05485923645816932 +89988,449.93999999962705,-0.054859179602656225 +89989,449.94499999962704,-0.05485912274512175 +89990,449.94999999962704,-0.05485906588556577 +89991,449.95499999962703,-0.054859009023988166 +89992,449.95999999962703,-0.05485895216038881 +89993,449.964999999627,-0.05485889529476756 +89994,449.969999999627,-0.05485883842712433 +89995,449.974999999627,-0.054858781557458956 +89996,449.979999999627,-0.05485872468577132 +89997,449.984999999627,-0.054858667812061314 +89998,449.989999999627,-0.0548586109363288 +89999,449.994999999627,-0.054858554058573664 +90000,449.999999999627,-0.05485849717879576 +90001,450.004999999627,-0.05485844029699497 +90002,450.009999999627,-0.05485838341317118 +90003,450.014999999627,-0.05485832652732425 +90004,450.019999999627,-0.05485826963945407 +90005,450.02499999962697,-0.054858212749560493 +90006,450.02999999962697,-0.05485815585764341 +90007,450.03499999962696,-0.0548580989637027 +90008,450.03999999962696,-0.05485804206773823 +90009,450.04499999962695,-0.054857985169749865 +90010,450.04999999962695,-0.0548579282697375 +90011,450.05499999962694,-0.054857871367701 +90012,450.05999999962694,-0.05485781446364024 +90013,450.06499999962693,-0.05485775755755509 +90014,450.06999999962693,-0.05485770064944544 +90015,450.0749999996269,-0.054857643739311145 +90016,450.0799999996269,-0.05485758682715209 +90017,450.0849999996269,-0.05485752991296815 +90018,450.0899999996269,-0.054857472996759186 +90019,450.0949999996269,-0.054857416078525095 +90020,450.0999999996269,-0.05485735915826572 +90021,450.1049999996269,-0.05485730223598097 +90022,450.1099999996269,-0.054857245311670695 +90023,450.1149999996269,-0.05485718838533479 +90024,450.1199999996269,-0.05485713145697312 +90025,450.1249999996269,-0.05485707452658555 +90026,450.1299999996269,-0.05485701759417196 +90027,450.13499999962687,-0.05485696065973224 +90028,450.13999999962687,-0.054856903723266244 +90029,450.14499999962686,-0.054856846784773865 +90030,450.14999999962686,-0.05485678984425496 +90031,450.15499999962685,-0.05485673290170942 +90032,450.15999999962685,-0.0548566759571371 +90033,450.16499999962684,-0.054856619010537885 +90034,450.16999999962684,-0.05485656206191165 +90035,450.17499999962683,-0.05485650511125827 +90036,450.17999999962683,-0.05485644815857762 +90037,450.1849999996268,-0.05485639120386958 +90038,450.1899999996268,-0.054856334247134014 +90039,450.1949999996268,-0.054856277288370794 +90040,450.1999999996268,-0.05485622032757981 +90041,450.2049999996268,-0.054856163364760915 +90042,450.2099999996268,-0.054856106399914 +90043,450.2149999996268,-0.054856049433038935 +90044,450.2199999996268,-0.0548559924641356 +90045,450.2249999996268,-0.05485593549320386 +90046,450.2299999996268,-0.054855878520243595 +90047,450.2349999996268,-0.054855821545254674 +90048,450.2399999996268,-0.054855764568236966 +90049,450.24499999962677,-0.05485570758919036 +90050,450.24999999962677,-0.05485565060811473 +90051,450.25499999962676,-0.05485559362500995 +90052,450.25999999962676,-0.05485553663987588 +90053,450.26499999962675,-0.054855479652712404 +90054,450.26999999962675,-0.05485542266351941 +90055,450.27499999962674,-0.05485536567229674 +90056,450.27999999962674,-0.0548553086790443 +90057,450.28499999962673,-0.05485525168376195 +90058,450.28999999962673,-0.05485519468644957 +90059,450.2949999996267,-0.054855137687107015 +90060,450.2999999996267,-0.05485508068573418 +90061,450.3049999996267,-0.05485502368233094 +90062,450.3099999996267,-0.05485496667689716 +90063,450.3149999996267,-0.05485490966943272 +90064,450.3199999996267,-0.05485485265993748 +90065,450.3249999996267,-0.05485479564841134 +90066,450.3299999996267,-0.05485473863485416 +90067,450.3349999996267,-0.05485468161926581 +90068,450.3399999996267,-0.05485462460164617 +90069,450.3449999996267,-0.05485456758199511 +90070,450.3499999996267,-0.05485451056031252 +90071,450.35499999962667,-0.054854453536598256 +90072,450.35999999962667,-0.0548543965108522 +90073,450.36499999962666,-0.05485433948307423 +90074,450.36999999962666,-0.05485428245326421 +90075,450.37499999962665,-0.054854225421422015 +90076,450.37999999962665,-0.05485416838754753 +90077,450.38499999962664,-0.05485411135164062 +90078,450.38999999962664,-0.05485405431370117 +90079,450.39499999962663,-0.054853997273729034 +90080,450.39999999962663,-0.05485394023172411 +90081,450.4049999996266,-0.054853883187686255 +90082,450.4099999996266,-0.054853826141615346 +90083,450.4149999996266,-0.054853769093511265 +90084,450.4199999996266,-0.05485371204337387 +90085,450.4249999996266,-0.05485365499120306 +90086,450.4299999996266,-0.0548535979369987 +90087,450.4349999996266,-0.05485354088076065 +90088,450.4399999996266,-0.0548534838224888 +90089,450.4449999996266,-0.05485342676218302 +90090,450.4499999996266,-0.05485336969984319 +90091,450.4549999996266,-0.054853312635469165 +90092,450.4599999996266,-0.05485325556906084 +90093,450.46499999962657,-0.05485319850061807 +90094,450.46999999962657,-0.05485314143014074 +90095,450.47499999962656,-0.054853084357628715 +90096,450.47999999962656,-0.05485302728308189 +90097,450.48499999962655,-0.054852970206500117 +90098,450.48999999962655,-0.0548529131278833 +90099,450.49499999962654,-0.05485285604723129 +90100,450.49999999962654,-0.05485279896454395 +90101,450.50499999962653,-0.054852741879821185 +90102,450.50999999962653,-0.054852684793062836 +90103,450.5149999996265,-0.0548526277042688 +90104,450.5199999996265,-0.05485257061343894 +90105,450.5249999996265,-0.05485251352057314 +90106,450.5299999996265,-0.05485245642567128 +90107,450.5349999996265,-0.05485239932873322 +90108,450.5399999996265,-0.05485234222975882 +90109,450.5449999996265,-0.05485228512874798 +90110,450.5499999996265,-0.05485222802570057 +90111,450.5549999996265,-0.05485217092061646 +90112,450.5599999996265,-0.05485211381349552 +90113,450.5649999996265,-0.054852056704337626 +90114,450.5699999996265,-0.05485199959314265 +90115,450.57499999962647,-0.05485194247991048 +90116,450.57999999962647,-0.05485188536464098 +90117,450.58499999962646,-0.05485182824733401 +90118,450.58999999962646,-0.05485177112798947 +90119,450.59499999962645,-0.05485171400660721 +90120,450.59999999962645,-0.05485165688318712 +90121,450.60499999962644,-0.054851599757729075 +90122,450.60999999962644,-0.054851542630232945 +90123,450.61499999962643,-0.0548514855006986 +90124,450.61999999962643,-0.05485142836912591 +90125,450.6249999996264,-0.05485137123551476 +90126,450.6299999996264,-0.054851314099865024 +90127,450.6349999996264,-0.05485125696217656 +90128,450.6399999996264,-0.05485119982244926 +90129,450.6449999996264,-0.054851142680683 +90130,450.6499999996264,-0.05485108553687763 +90131,450.6549999996264,-0.054851028391033056 +90132,450.6599999996264,-0.05485097124314912 +90133,450.6649999996264,-0.05485091409322571 +90134,450.6699999996264,-0.0548508569412627 +90135,450.6749999996264,-0.05485079978725997 +90136,450.6799999996264,-0.0548507426312174 +90137,450.68499999962637,-0.05485068547313485 +90138,450.68999999962637,-0.054850628313012184 +90139,450.69499999962636,-0.05485057115084929 +90140,450.69999999962636,-0.05485051398664605 +90141,450.70499999962635,-0.05485045682040233 +90142,450.70999999962635,-0.054850399652118 +90143,450.71499999962634,-0.054850342481792935 +90144,450.71999999962634,-0.05485028530942701 +90145,450.72499999962633,-0.05485022813502009 +90146,450.72999999962633,-0.054850170958572066 +90147,450.7349999996263,-0.054850113780082796 +90148,450.7399999996263,-0.05485005659955216 +90149,450.7449999996263,-0.054849999416980044 +90150,450.7499999996263,-0.054849942232366306 +90151,450.7549999996263,-0.054849885045710825 +90152,450.7599999996263,-0.054849827857013464 +90153,450.7649999996263,-0.05484977066627411 +90154,450.7699999996263,-0.05484971347349264 +90155,450.7749999996263,-0.05484965627866892 +90156,450.7799999996263,-0.05484959908180282 +90157,450.7849999996263,-0.05484954188289423 +90158,450.7899999996263,-0.05484948468194301 +90159,450.79499999962627,-0.05484942747894904 +90160,450.79999999962627,-0.054849370273912186 +90161,450.80499999962626,-0.05484931306683232 +90162,450.80999999962626,-0.05484925585770933 +90163,450.81499999962625,-0.05484919864654307 +90164,450.81999999962625,-0.05484914143333343 +90165,450.82499999962624,-0.05484908421808028 +90166,450.82999999962624,-0.05484902700078349 +90167,450.83499999962623,-0.05484896978144295 +90168,450.83999999962623,-0.054848912560058506 +90169,450.8449999996262,-0.05484885533663005 +90170,450.8499999996262,-0.05484879811115745 +90171,450.8549999996262,-0.05484874088364058 +90172,450.8599999996262,-0.054848683654079314 +90173,450.8649999996262,-0.05484862642247353 +90174,450.8699999996262,-0.054848569188823096 +90175,450.8749999996262,-0.054848511953127885 +90176,450.8799999996262,-0.054848454715387775 +90177,450.8849999996262,-0.05484839747560264 +90178,450.8899999996262,-0.05484834023377235 +90179,450.8949999996262,-0.054848282989896774 +90180,450.8999999996262,-0.05484822574397579 +90181,450.90499999962617,-0.05484816849600928 +90182,450.90999999962617,-0.0548481112459971 +90183,450.91499999962616,-0.05484805399393915 +90184,450.91999999962616,-0.05484799673983528 +90185,450.92499999962615,-0.05484793948368538 +90186,450.92999999962615,-0.0548478822254893 +90187,450.93499999962614,-0.05484782496524694 +90188,450.93999999962614,-0.05484776770295817 +90189,450.94499999962613,-0.05484771043862284 +90190,450.94999999962613,-0.05484765317224084 +90191,450.9549999996261,-0.05484759590381205 +90192,450.9599999996261,-0.05484753863333633 +90193,450.9649999996261,-0.05484748136081356 +90194,450.9699999996261,-0.05484742408624362 +90195,450.9749999996261,-0.05484736680962637 +90196,450.9799999996261,-0.05484730953096168 +90197,450.9849999996261,-0.05484725225024944 +90198,450.9899999996261,-0.05484719496748953 +90199,450.9949999996261,-0.054847137682681804 +90200,450.9999999996261,-0.05484708039582614 +90201,451.0049999996261,-0.05484702310692241 +90202,451.0099999996261,-0.05484696581597049 +90203,451.01499999962607,-0.05484690852297026 +90204,451.01999999962607,-0.05484685122792158 +90205,451.02499999962606,-0.05484679393082433 +90206,451.02999999962606,-0.0548467366316784 +90207,451.03499999962605,-0.05484667933048364 +90208,451.03999999962605,-0.05484662202723993 +90209,451.04499999962604,-0.05484656472194715 +90210,451.04999999962604,-0.05484650741460516 +90211,451.05499999962603,-0.054846450105213836 +90212,451.05999999962603,-0.05484639279377306 +90213,451.064999999626,-0.054846335480282705 +90214,451.069999999626,-0.05484627816474264 +90215,451.074999999626,-0.05484622084715275 +90216,451.079999999626,-0.054846163527512884 +90217,451.084999999626,-0.054846106205822934 +90218,451.089999999626,-0.05484604888208277 +90219,451.094999999626,-0.054845991556292266 +90220,451.099999999626,-0.054845934228451285 +90221,451.104999999626,-0.05484587689855971 +90222,451.109999999626,-0.054845819566617424 +90223,451.114999999626,-0.05484576223262428 +90224,451.119999999626,-0.05484570489658017 +90225,451.12499999962597,-0.05484564755848496 +90226,451.12999999962597,-0.054845590218338514 +90227,451.13499999962596,-0.05484553287614071 +90228,451.13999999962596,-0.054845475531891424 +90229,451.14499999962595,-0.054845418185590536 +90230,451.14999999962595,-0.05484536083723791 +90231,451.15499999962594,-0.05484530348683342 +90232,451.15999999962594,-0.05484524613437693 +90233,451.16499999962593,-0.05484518877986834 +90234,451.16999999962593,-0.05484513142330749 +90235,451.1749999996259,-0.05484507406469427 +90236,451.1799999996259,-0.05484501670402857 +90237,451.1849999996259,-0.05484495934131023 +90238,451.1899999996259,-0.05484490197653915 +90239,451.1949999996259,-0.054844844609715185 +90240,451.1999999996259,-0.054844787240838216 +90241,451.2049999996259,-0.05484472986990812 +90242,451.2099999996259,-0.054844672496924776 +90243,451.2149999996259,-0.05484461512188803 +90244,451.2199999996259,-0.05484455774479777 +90245,451.2249999996259,-0.05484450036565387 +90246,451.2299999996259,-0.054844442984456225 +90247,451.23499999962587,-0.05484438560120468 +90248,451.23999999962587,-0.05484432821589911 +90249,451.24499999962586,-0.0548442708285394 +90250,451.24999999962586,-0.05484421343912541 +90251,451.25499999962585,-0.05484415604765702 +90252,451.25999999962585,-0.054844098654134116 +90253,451.26499999962584,-0.05484404125855655 +90254,451.26999999962584,-0.0548439838609242 +90255,451.27499999962583,-0.05484392646123693 +90256,451.27999999962583,-0.054843869059494635 +90257,451.2849999996258,-0.05484381165569718 +90258,451.2899999996258,-0.05484375424984444 +90259,451.2949999996258,-0.05484369684193628 +90260,451.2999999996258,-0.054843639431972575 +90261,451.3049999996258,-0.05484358201995321 +90262,451.3099999996258,-0.05484352460587803 +90263,451.3149999996258,-0.05484346718974693 +90264,451.3199999996258,-0.05484340977155979 +90265,451.3249999996258,-0.05484335235131647 +90266,451.3299999996258,-0.054843294929016836 +90267,451.3349999996258,-0.05484323750466078 +90268,451.3399999996258,-0.054843180078248156 +90269,451.34499999962577,-0.05484312264977885 +90270,451.34999999962577,-0.05484306521925274 +90271,451.35499999962576,-0.05484300778666967 +90272,451.35999999962576,-0.054842950352029546 +90273,451.36499999962575,-0.05484289291533223 +90274,451.36999999962575,-0.054842835476577576 +90275,451.37499999962574,-0.054842778035765476 +90276,451.37999999962574,-0.0548427205928958 +90277,451.38499999962573,-0.05484266314796842 +90278,451.38999999962573,-0.05484260570098321 +90279,451.3949999996257,-0.05484254825194006 +90280,451.3999999996257,-0.05484249080083882 +90281,451.4049999996257,-0.05484243334767936 +90282,451.4099999996257,-0.05484237589246156 +90283,451.4149999996257,-0.05484231843518529 +90284,451.4199999996257,-0.05484226097585044 +90285,451.4249999996257,-0.05484220351445686 +90286,451.4299999996257,-0.05484214605100444 +90287,451.4349999996257,-0.05484208858549303 +90288,451.4399999996257,-0.05484203111792253 +90289,451.4449999996257,-0.0548419736482928 +90290,451.4499999996257,-0.0548419161766037 +90291,451.45499999962567,-0.05484185870285512 +90292,451.45999999962567,-0.05484180122704693 +90293,451.46499999962566,-0.054841743749179 +90294,451.46999999962566,-0.05484168626925121 +90295,451.47499999962565,-0.05484162878726342 +90296,451.47999999962565,-0.05484157130321551 +90297,451.48499999962564,-0.05484151381710734 +90298,451.48999999962564,-0.054841456328938804 +90299,451.49499999962563,-0.05484139883870977 +90300,451.49999999962563,-0.054841341346420096 +90301,451.5049999996256,-0.05484128385206968 +90302,451.5099999996256,-0.05484122635565838 +90303,451.5149999996256,-0.05484116885718606 +90304,451.5199999996256,-0.05484111135665261 +90305,451.5249999996256,-0.054841053854057874 +90306,451.5299999996256,-0.054840996349401754 +90307,451.5349999996256,-0.05484093884268411 +90308,451.5399999996256,-0.05484088133390482 +90309,451.5449999996256,-0.054840823823063746 +90310,451.5499999996256,-0.05484076631016078 +90311,451.5549999996256,-0.054840708795195765 +90312,451.5599999996256,-0.05484065127816861 +90313,451.56499999962557,-0.054840593759079154 +90314,451.56999999962557,-0.0548405362379273 +90315,451.57499999962556,-0.05484047871471289 +90316,451.57999999962556,-0.054840421189435815 +90317,451.58499999962555,-0.05484036366209594 +90318,451.58999999962555,-0.054840306132693147 +90319,451.59499999962554,-0.054840248601227305 +90320,451.59999999962554,-0.054840191067698274 +90321,451.60499999962553,-0.05484013353210594 +90322,451.60999999962553,-0.05484007599445018 +90323,451.6149999996255,-0.054840018454730854 +90324,451.6199999996255,-0.05483996091294783 +90325,451.6249999996255,-0.054839903369100995 +90326,451.6299999996255,-0.054839845823190216 +90327,451.6349999996255,-0.05483978827521537 +90328,451.6399999996255,-0.054839730725176325 +90329,451.6449999996255,-0.05483967317307296 +90330,451.6499999996255,-0.05483961561890513 +90331,451.6549999996255,-0.054839558062672725 +90332,451.6599999996255,-0.05483950050437561 +90333,451.6649999996255,-0.054839442944013654 +90334,451.6699999996255,-0.05483938538158674 +90335,451.67499999962547,-0.054839327817094725 +90336,451.67999999962547,-0.054839270250537496 +90337,451.68499999962546,-0.05483921268191492 +90338,451.68999999962546,-0.05483915511122686 +90339,451.69499999962545,-0.0548390975384732 +90340,451.69999999962545,-0.0548390399636538 +90341,451.70499999962544,-0.05483898238676855 +90342,451.70999999962544,-0.05483892480781731 +90343,451.71499999962543,-0.054838867226799946 +90344,451.71999999962543,-0.05483880964371636 +90345,451.7249999996254,-0.0548387520585664 +90346,451.7299999996254,-0.05483869447134994 +90347,451.7349999996254,-0.05483863688206685 +90348,451.7399999996254,-0.05483857929071701 +90349,451.7449999996254,-0.05483852169730028 +90350,451.7499999996254,-0.05483846410181656 +90351,451.7549999996254,-0.05483840650426569 +90352,451.7599999996254,-0.05483834890464756 +90353,451.7649999996254,-0.054838291302962035 +90354,451.7699999996254,-0.054838233699209 +90355,451.7749999996254,-0.05483817609338831 +90356,451.7799999996254,-0.05483811848549985 +90357,451.78499999962537,-0.05483806087554348 +90358,451.78999999962537,-0.05483800326351907 +90359,451.79499999962536,-0.05483794564942652 +90360,451.79999999962536,-0.05483788803326567 +90361,451.80499999962535,-0.054837830415036405 +90362,451.80999999962535,-0.054837772794738615 +90363,451.81499999962534,-0.054837715172372146 +90364,451.81999999962534,-0.054837657547936874 +90365,451.82499999962533,-0.054837599921432674 +90366,451.82999999962533,-0.05483754229285943 +90367,451.8349999996253,-0.054837484662216995 +90368,451.8399999996253,-0.054837427029505253 +90369,451.8449999996253,-0.05483736939472406 +90370,451.8499999996253,-0.05483731175787331 +90371,451.8549999996253,-0.05483725411895287 +90372,451.8599999996253,-0.054837196477962605 +90373,451.8649999996253,-0.05483713883490239 +90374,451.8699999996253,-0.0548370811897721 +90375,451.8749999996253,-0.054837023542571604 +90376,451.8799999996253,-0.054836965893300775 +90377,451.8849999996253,-0.05483690824195948 +90378,451.8899999996253,-0.05483685058854759 +90379,451.89499999962527,-0.05483679293306499 +90380,451.89999999962527,-0.05483673527551153 +90381,451.90499999962526,-0.0548366776158871 +90382,451.90999999962526,-0.054836619954191576 +90383,451.91499999962525,-0.05483656229042482 +90384,451.91999999962525,-0.05483650462458671 +90385,451.92499999962524,-0.05483644695667711 +90386,451.92999999962524,-0.05483638928669589 +90387,451.93499999962523,-0.05483633161464293 +90388,451.93999999962523,-0.0548362739405181 +90389,451.9449999996252,-0.054836216264321266 +90390,451.9499999996252,-0.05483615858605231 +90391,451.9549999996252,-0.054836100905711095 +90392,451.9599999996252,-0.05483604322329749 +90393,451.9649999996252,-0.05483598553881139 +90394,451.9699999996252,-0.054835927852252636 +90395,451.9749999996252,-0.054835870163621125 +90396,451.9799999996252,-0.0548358124729167 +90397,451.9849999996252,-0.05483575478013925 +90398,451.9899999996252,-0.05483569708528866 +90399,451.9949999996252,-0.05483563938836478 +90400,451.9999999996252,-0.0548355816893675 +90401,452.00499999962517,-0.054835523988296685 +90402,452.00999999962517,-0.05483546628515219 +90403,452.01499999962516,-0.054835408579933916 +90404,452.01999999962516,-0.054835350872641714 +90405,452.02499999962515,-0.054835293163275456 +90406,452.02999999962515,-0.05483523545183502 +90407,452.03499999962514,-0.05483517773832027 +90408,452.03999999962514,-0.05483512002273109 +90409,452.04499999962513,-0.05483506230506734 +90410,452.04999999962513,-0.0548350045853289 +90411,452.0549999996251,-0.05483494686351564 +90412,452.0599999996251,-0.05483488913962744 +90413,452.0649999996251,-0.05483483141366415 +90414,452.0699999996251,-0.054834773685625664 +90415,452.0749999996251,-0.05483471595551184 +90416,452.0799999996251,-0.05483465822332255 +90417,452.0849999996251,-0.05483460048905767 +90418,452.0899999996251,-0.05483454275271707 +90419,452.0949999996251,-0.054834485014300625 +90420,452.0999999996251,-0.0548344272738082 +90421,452.1049999996251,-0.05483436953123967 +90422,452.1099999996251,-0.05483431178659491 +90423,452.11499999962507,-0.054834254039873784 +90424,452.11999999962507,-0.05483419629107617 +90425,452.12499999962506,-0.054834138540201936 +90426,452.12999999962506,-0.05483408078725095 +90427,452.13499999962505,-0.05483402303222309 +90428,452.13999999962505,-0.05483396527511822 +90429,452.14499999962504,-0.05483390751593622 +90430,452.14999999962504,-0.054833849754676964 +90431,452.15499999962503,-0.05483379199134031 +90432,452.15999999962503,-0.054833734225926134 +90433,452.164999999625,-0.05483367645843433 +90434,452.169999999625,-0.05483361868886473 +90435,452.174999999625,-0.05483356091721723 +90436,452.179999999625,-0.054833503143491696 +90437,452.184999999625,-0.054833445367688 +90438,452.189999999625,-0.05483338758980602 +90439,452.194999999625,-0.05483332980984562 +90440,452.199999999625,-0.054833272027806676 +90441,452.204999999625,-0.054833214243689046 +90442,452.209999999625,-0.05483315645749261 +90443,452.214999999625,-0.054833098669217234 +90444,452.219999999625,-0.0548330408788628 +90445,452.22499999962497,-0.054832983086429185 +90446,452.22999999962497,-0.05483292529191624 +90447,452.23499999962496,-0.05483286749532385 +90448,452.23999999962496,-0.05483280969665189 +90449,452.24499999962495,-0.054832751895900214 +90450,452.24999999962495,-0.054832694093068714 +90451,452.25499999962494,-0.05483263628815723 +90452,452.25999999962494,-0.05483257848116567 +90453,452.26499999962493,-0.054832520672093876 +90454,452.26999999962493,-0.05483246286094175 +90455,452.2749999996249,-0.05483240504770913 +90456,452.2799999996249,-0.054832347232395905 +90457,452.2849999996249,-0.054832289415001956 +90458,452.2899999996249,-0.05483223159552714 +90459,452.2949999996249,-0.05483217377397132 +90460,452.2999999996249,-0.05483211595033438 +90461,452.3049999996249,-0.05483205812461618 +90462,452.3099999996249,-0.054832000296816605 +90463,452.3149999996249,-0.05483194246693552 +90464,452.3199999996249,-0.054831884634972794 +90465,452.3249999996249,-0.054831826800928296 +90466,452.3299999996249,-0.05483176896480191 +90467,452.33499999962487,-0.054831711126593505 +90468,452.33999999962487,-0.05483165328630294 +90469,452.34499999962486,-0.054831595443930084 +90470,452.34999999962486,-0.05483153759947483 +90471,452.35499999962485,-0.05483147975293703 +90472,452.35999999962485,-0.05483142190431656 +90473,452.36499999962484,-0.05483136405361329 +90474,452.36999999962484,-0.05483130620082709 +90475,452.37499999962483,-0.05483124834595783 +90476,452.37999999962483,-0.05483119048900538 +90477,452.3849999996248,-0.054831132629969616 +90478,452.3899999996248,-0.054831074768850414 +90479,452.3949999996248,-0.05483101690564763 +90480,452.3999999996248,-0.05483095904036115 +90481,452.4049999996248,-0.05483090117299084 +90482,452.4099999996248,-0.05483084330353657 +90483,452.4149999996248,-0.05483078543199821 +90484,452.4199999996248,-0.054830727558375626 +90485,452.4249999996248,-0.0548306696826687 +90486,452.4299999996248,-0.05483061180487729 +90487,452.4349999996248,-0.05483055392500128 +90488,452.4399999996248,-0.05483049604304053 +90489,452.44499999962477,-0.05483043815899491 +90490,452.44999999962477,-0.054830380272864306 +90491,452.45499999962476,-0.05483032238464857 +90492,452.45999999962476,-0.05483026449434759 +90493,452.46499999962475,-0.05483020660196122 +90494,452.46999999962475,-0.05483014870748935 +90495,452.47499999962474,-0.054830090810931834 +90496,452.47999999962474,-0.05483003291228856 +90497,452.48499999962473,-0.05482997501155937 +90498,452.48999999962473,-0.05482991710874416 +90499,452.4949999996247,-0.05482985920384279 +90500,452.4999999996247,-0.05482980129685514 +90501,452.5049999996247,-0.054829743387781064 +90502,452.5099999996247,-0.054829685476620454 +90503,452.5149999996247,-0.054829627563373166 +90504,452.5199999996247,-0.05482956964803908 +90505,452.5249999996247,-0.054829511730618063 +90506,452.5299999996247,-0.054829453811109985 +90507,452.5349999996247,-0.054829395889514715 +90508,452.5399999996247,-0.054829337965832114 +90509,452.5449999996247,-0.05482928004006206 +90510,452.5499999996247,-0.05482922211220444 +90511,452.55499999962467,-0.054829164182259096 +90512,452.55999999962467,-0.05482910625022592 +90513,452.56499999962466,-0.05482904831610477 +90514,452.56999999962466,-0.05482899037989553 +90515,452.57499999962465,-0.054828932441598074 +90516,452.57999999962465,-0.054828874501212245 +90517,452.58499999962464,-0.054828816558737926 +90518,452.58999999962464,-0.054828758614175 +90519,452.59499999962463,-0.054828700667523336 +90520,452.59999999962463,-0.05482864271878279 +90521,452.6049999996246,-0.05482858476795325 +90522,452.6099999996246,-0.05482852681503456 +90523,452.6149999996246,-0.05482846886002662 +90524,452.6199999996246,-0.05482841090292928 +90525,452.6249999996246,-0.054828352943742414 +90526,452.6299999996246,-0.05482829498246591 +90527,452.6349999996246,-0.05482823701909962 +90528,452.6399999996246,-0.05482817905364343 +90529,452.6449999996246,-0.054828121086097185 +90530,452.6499999996246,-0.05482806311646077 +90531,452.6549999996246,-0.054828005144734064 +90532,452.6599999996246,-0.05482794717091693 +90533,452.66499999962457,-0.054827889195009236 +90534,452.66999999962457,-0.054827831217010854 +90535,452.67499999962456,-0.054827773236921645 +90536,452.67999999962456,-0.05482771525474149 +90537,452.68499999962455,-0.05482765727047027 +90538,452.68999999962455,-0.05482759928410783 +90539,452.69499999962454,-0.05482754129565406 +90540,452.69999999962454,-0.054827483305108816 +90541,452.70499999962453,-0.05482742531247198 +90542,452.70999999962453,-0.05482736731774341 +90543,452.7149999996245,-0.054827309320922994 +90544,452.7199999996245,-0.0548272513220106 +90545,452.7249999996245,-0.05482719332100608 +90546,452.7299999996245,-0.05482713531790931 +90547,452.7349999996245,-0.05482707731272018 +90548,452.7399999996245,-0.05482701930543854 +90549,452.7449999996245,-0.05482696129606426 +90550,452.7499999996245,-0.05482690328459721 +90551,452.7549999996245,-0.054826845271037275 +90552,452.7599999996245,-0.054826787255384306 +90553,452.7649999996245,-0.05482672923763819 +90554,452.7699999996245,-0.05482667121779879 +90555,452.77499999962447,-0.05482661319586597 +90556,452.77999999962447,-0.05482655517183962 +90557,452.78499999962446,-0.054826497145719584 +90558,452.78999999962446,-0.05482643911750576 +90559,452.79499999962445,-0.054826381087197985 +90560,452.79999999962445,-0.05482632305479615 +90561,452.80499999962444,-0.05482626502030013 +90562,452.80999999962444,-0.05482620698370978 +90563,452.81499999962443,-0.05482614894502499 +90564,452.81999999962443,-0.05482609090424559 +90565,452.8249999996244,-0.05482603286137149 +90566,452.8299999996244,-0.054825974816402535 +90567,452.8349999996244,-0.05482591676933862 +90568,452.8399999996244,-0.054825858720179595 +90569,452.8449999996244,-0.05482580066892534 +90570,452.8499999996244,-0.05482574261557572 +90571,452.8549999996244,-0.054825684560130615 +90572,452.8599999996244,-0.05482562650258987 +90573,452.8649999996244,-0.05482556844295339 +90574,452.8699999996244,-0.05482551038122101 +90575,452.8749999996244,-0.054825452317392616 +90576,452.8799999996244,-0.05482539425146808 +90577,452.88499999962437,-0.05482533618344728 +90578,452.88999999962437,-0.05482527811333006 +90579,452.89499999962436,-0.05482522004111631 +90580,452.89999999962436,-0.054825161966805896 +90581,452.90499999962435,-0.05482510389039868 +90582,452.90999999962435,-0.05482504581189454 +90583,452.91499999962434,-0.05482498773129335 +90584,452.91999999962434,-0.05482492964859498 +90585,452.92499999962433,-0.054824871563799275 +90586,452.92999999962433,-0.05482481347690613 +90587,452.9349999996243,-0.05482475538791542 +90588,452.9399999996243,-0.054824697296826985 +90589,452.9449999996243,-0.05482463920364072 +90590,452.9499999996243,-0.05482458110835649 +90591,452.9549999996243,-0.054824523010974145 +90592,452.9599999996243,-0.05482446491149359 +90593,452.9649999996243,-0.054824406809914676 +90594,452.9699999996243,-0.05482434870623727 +90595,452.9749999996243,-0.05482429060046124 +90596,452.9799999996243,-0.054824232492586465 +90597,452.9849999996243,-0.05482417438261281 +90598,452.9899999996243,-0.054824116270540145 +90599,452.99499999962427,-0.05482405815636834 +90600,452.99999999962427,-0.054824000040097264 +90601,453.00499999962426,-0.05482394192172677 +90602,453.00999999962426,-0.05482388380125676 +90603,453.01499999962425,-0.05482382567868707 +90604,453.01999999962425,-0.05482376755401759 +90605,453.02499999962424,-0.05482370942724819 +90606,453.02999999962424,-0.05482365129837874 +90607,453.03499999962423,-0.054823593167409104 +90608,453.03999999962423,-0.05482353503433914 +90609,453.0449999996242,-0.054823476899168756 +90610,453.0499999996242,-0.05482341876189779 +90611,453.0549999996242,-0.054823360622526095 +90612,453.0599999996242,-0.054823302481053576 +90613,453.0649999996242,-0.05482324433748009 +90614,453.0699999996242,-0.054823186191805505 +90615,453.0749999996242,-0.05482312804402969 +90616,453.0799999996242,-0.05482306989415251 +90617,453.0849999996242,-0.05482301174217385 +90618,453.0899999996242,-0.054822953588093554 +90619,453.0949999996242,-0.05482289543191152 +90620,453.0999999996242,-0.0548228372736276 +90621,453.10499999962417,-0.05482277911324167 +90622,453.10999999962416,-0.05482272095075358 +90623,453.11499999962416,-0.05482266278616322 +90624,453.11999999962416,-0.05482260461947046 +90625,453.12499999962415,-0.05482254645067515 +90626,453.12999999962415,-0.054822488279777176 +90627,453.13499999962414,-0.05482243010677641 +90628,453.13999999962414,-0.05482237193167272 +90629,453.14499999962413,-0.054822313754465966 +90630,453.14999999962413,-0.05482225557515602 +90631,453.1549999996241,-0.05482219739374276 +90632,453.1599999996241,-0.054822139210226044 +90633,453.1649999996241,-0.054822081024605736 +90634,453.1699999996241,-0.05482202283688173 +90635,453.1749999996241,-0.05482196464705388 +90636,453.1799999996241,-0.05482190645512205 +90637,453.1849999996241,-0.054821848261086104 +90638,453.1899999996241,-0.05482179006494593 +90639,453.1949999996241,-0.05482173186670138 +90640,453.1999999996241,-0.05482167366635234 +90641,453.2049999996241,-0.05482161546389867 +90642,453.2099999996241,-0.05482155725934022 +90643,453.21499999962407,-0.0548214990526769 +90644,453.21999999962406,-0.054821440843908546 +90645,453.22499999962406,-0.05482138263303504 +90646,453.22999999962406,-0.05482132442005626 +90647,453.23499999962405,-0.05482126620497205 +90648,453.23999999962405,-0.054821207987782304 +90649,453.24499999962404,-0.05482114976848688 +90650,453.24999999962404,-0.05482109154708564 +90651,453.25499999962403,-0.05482103332357846 +90652,453.25999999962403,-0.05482097509796522 +90653,453.264999999624,-0.05482091687024577 +90654,453.269999999624,-0.05482085864041999 +90655,453.274999999624,-0.054820800408487726 +90656,453.279999999624,-0.054820742174448885 +90657,453.284999999624,-0.054820683938303305 +90658,453.289999999624,-0.05482062570005087 +90659,453.294999999624,-0.054820567459691445 +90660,453.299999999624,-0.05482050921722491 +90661,453.304999999624,-0.05482045097265112 +90662,453.309999999624,-0.05482039272596994 +90663,453.314999999624,-0.05482033447718125 +90664,453.319999999624,-0.054820276226284916 +90665,453.32499999962397,-0.05482021797328081 +90666,453.32999999962396,-0.054820159718168796 +90667,453.33499999962396,-0.054820101460948734 +90668,453.33999999962396,-0.05482004320162051 +90669,453.34499999962395,-0.05481998494018399 +90670,453.34999999962395,-0.05481992667663903 +90671,453.35499999962394,-0.05481986841098551 +90672,453.35999999962394,-0.05481981014322329 +90673,453.36499999962393,-0.054819751873352245 +90674,453.36999999962393,-0.05481969360137224 +90675,453.3749999996239,-0.05481963532728315 +90676,453.3799999996239,-0.05481957705108484 +90677,453.3849999996239,-0.05481951877277717 +90678,453.3899999996239,-0.05481946049236002 +90679,453.3949999996239,-0.05481940220983326 +90680,453.3999999996239,-0.05481934392519675 +90681,453.4049999996239,-0.05481928563845036 +90682,453.4099999996239,-0.05481922734959396 +90683,453.4149999996239,-0.05481916905862742 +90684,453.4199999996239,-0.05481911076555062 +90685,453.4249999996239,-0.0548190524703634 +90686,453.4299999996239,-0.05481899417306565 +90687,453.43499999962387,-0.05481893587365723 +90688,453.43999999962386,-0.054818877572138006 +90689,453.44499999962386,-0.054818819268507867 +90690,453.44999999962386,-0.05481876096276666 +90691,453.45499999962385,-0.054818702654914266 +90692,453.45999999962385,-0.05481864434495054 +90693,453.46499999962384,-0.05481858603287536 +90694,453.46999999962384,-0.05481852771868859 +90695,453.47499999962383,-0.054818469402390095 +90696,453.47999999962383,-0.05481841108397976 +90697,453.4849999996238,-0.05481835276345743 +90698,453.4899999996238,-0.054818294440823 +90699,453.4949999996238,-0.05481823611607631 +90700,453.4999999996238,-0.05481817778921724 +90701,453.5049999996238,-0.054818119460245666 +90702,453.5099999996238,-0.054818061129161454 +90703,453.5149999996238,-0.05481800279596446 +90704,453.5199999996238,-0.05481794446065458 +90705,453.5249999996238,-0.05481788612323164 +90706,453.5299999996238,-0.05481782778369555 +90707,453.5349999996238,-0.05481776944204616 +90708,453.5399999996238,-0.054817711098283324 +90709,453.54499999962377,-0.05481765275240693 +90710,453.54999999962376,-0.05481759440441684 +90711,453.55499999962376,-0.05481753605431292 +90712,453.55999999962376,-0.054817477702095045 +90713,453.56499999962375,-0.05481741934776308 +90714,453.56999999962375,-0.05481736099131689 +90715,453.57499999962374,-0.05481730263275634 +90716,453.57999999962374,-0.05481724427208131 +90717,453.58499999962373,-0.05481718590929167 +90718,453.5899999996237,-0.054817127544387265 +90719,453.5949999996237,-0.054817069177367984 +90720,453.5999999996237,-0.05481701080823369 +90721,453.6049999996237,-0.054816952436984236 +90722,453.6099999996237,-0.05481689406361952 +90723,453.6149999996237,-0.05481683568813938 +90724,453.6199999996237,-0.0548167773105437 +90725,453.6249999996237,-0.054816718930832356 +90726,453.6299999996237,-0.05481666054900519 +90727,453.6349999996237,-0.054816602165062095 +90728,453.6399999996237,-0.05481654377900293 +90729,453.6449999996237,-0.054816485390827556 +90730,453.6499999996237,-0.05481642700053584 +90731,453.65499999962367,-0.054816368608127664 +90732,453.65999999962366,-0.05481631021360289 +90733,453.66499999962366,-0.054816251816961384 +90734,453.66999999962366,-0.05481619341820301 +90735,453.67499999962365,-0.054816135017327655 +90736,453.67999999962365,-0.05481607661433516 +90737,453.68499999962364,-0.05481601820922541 +90738,453.68999999962364,-0.054815959801998264 +90739,453.69499999962363,-0.05481590139265359 +90740,453.6999999996236,-0.05481584298119126 +90741,453.7049999996236,-0.05481578456761113 +90742,453.7099999996236,-0.054815726151913095 +90743,453.7149999996236,-0.054815667734097004 +90744,453.7199999996236,-0.05481560931416273 +90745,453.7249999996236,-0.054815550892110126 +90746,453.7299999996236,-0.054815492467939084 +90747,453.7349999996236,-0.05481543404164946 +90748,453.7399999996236,-0.0548153756132411 +90749,453.7449999996236,-0.054815317182713916 +90750,453.7499999996236,-0.05481525875006774 +90751,453.7549999996236,-0.05481520031530245 +90752,453.7599999996236,-0.05481514187841792 +90753,453.76499999962357,-0.05481508343941401 +90754,453.76999999962356,-0.0548150249982906 +90755,453.77499999962356,-0.054814966555047535 +90756,453.77999999962356,-0.054814908109684694 +90757,453.78499999962355,-0.05481484966220195 +90758,453.78999999962355,-0.054814791212599176 +90759,453.79499999962354,-0.05481473276087623 +90760,453.79999999962354,-0.054814674307032976 +90761,453.80499999962353,-0.05481461585106928 +90762,453.8099999996235,-0.05481455739298501 +90763,453.8149999996235,-0.054814498932780044 +90764,453.8199999996235,-0.054814440470454244 +90765,453.8249999996235,-0.05481438200600748 +90766,453.8299999996235,-0.054814323539439616 +90767,453.8349999996235,-0.05481426507075051 +90768,453.8399999996235,-0.05481420659994004 +90769,453.8449999996235,-0.05481414812700807 +90770,453.8499999996235,-0.05481408965195448 +90771,453.8549999996235,-0.05481403117477912 +90772,453.8599999996235,-0.05481397269548187 +90773,453.8649999996235,-0.05481391421406258 +90774,453.8699999996235,-0.054813855730521124 +90775,453.87499999962347,-0.05481379724485738 +90776,453.87999999962346,-0.05481373875707122 +90777,453.88499999962346,-0.0548136802671625 +90778,453.88999999962346,-0.054813621775131084 +90779,453.89499999962345,-0.054813563280976835 +90780,453.89999999962345,-0.05481350478469963 +90781,453.90499999962344,-0.05481344628629934 +90782,453.90999999962344,-0.05481338778577583 +90783,453.91499999962343,-0.054813329283128966 +90784,453.9199999996234,-0.054813270778358604 +90785,453.9249999996234,-0.05481321227146462 +90786,453.9299999996234,-0.05481315376244689 +90787,453.9349999996234,-0.05481309525130526 +90788,453.9399999996234,-0.05481303673803962 +90789,453.9449999996234,-0.05481297822264982 +90790,453.9499999996234,-0.05481291970513573 +90791,453.9549999996234,-0.054812861185497226 +90792,453.9599999996234,-0.05481280266373416 +90793,453.9649999996234,-0.054812744139846416 +90794,453.9699999996234,-0.05481268561383385 +90795,453.9749999996234,-0.054812627085696335 +90796,453.9799999996234,-0.05481256855543375 +90797,453.98499999962337,-0.054812510023045935 +90798,453.98999999962336,-0.05481245148853276 +90799,453.99499999962336,-0.054812392951894114 +90800,453.99999999962336,-0.05481233441312985 +90801,454.00499999962335,-0.05481227587223982 +90802,454.00999999962335,-0.05481221732922393 +90803,454.01499999962334,-0.054812158784082014 +90804,454.01999999962334,-0.054812100236813946 +90805,454.02499999962333,-0.05481204168741959 +90806,454.0299999996233,-0.05481198313589883 +90807,454.0349999996233,-0.05481192458225152 +90808,454.0399999996233,-0.05481186602647753 +90809,454.0449999996233,-0.054811807468576716 +90810,454.0499999996233,-0.054811748908548966 +90811,454.0549999996233,-0.05481169034639412 +90812,454.0599999996233,-0.05481163178211206 +90813,454.0649999996233,-0.05481157321570265 +90814,454.0699999996233,-0.054811514647165764 +90815,454.0749999996233,-0.05481145607650127 +90816,454.0799999996233,-0.05481139750370903 +90817,454.0849999996233,-0.0548113389287889 +90818,454.0899999996233,-0.05481128035174075 +90819,454.09499999962327,-0.05481122177256445 +90820,454.09999999962326,-0.05481116319125988 +90821,454.10499999962326,-0.05481110460782689 +90822,454.10999999962326,-0.05481104602226536 +90823,454.11499999962325,-0.05481098743457514 +90824,454.11999999962325,-0.05481092884475611 +90825,454.12499999962324,-0.05481087025280813 +90826,454.12999999962324,-0.05481081165873107 +90827,454.13499999962323,-0.05481075306252478 +90828,454.1399999996232,-0.05481069446418915 +90829,454.1449999996232,-0.05481063586372405 +90830,454.1499999996232,-0.05481057726112931 +90831,454.1549999996232,-0.05481051865640484 +90832,454.1599999996232,-0.05481046004955047 +90833,454.1649999996232,-0.0548104014405661 +90834,454.1699999996232,-0.054810342829451575 +90835,454.1749999996232,-0.054810284216206755 +90836,454.1799999996232,-0.05481022560083153 +90837,454.1849999996232,-0.05481016698332575 +90838,454.1899999996232,-0.05481010836368928 +90839,454.1949999996232,-0.054810049741922 +90840,454.1999999996232,-0.05480999111802376 +90841,454.20499999962317,-0.054809932491994444 +90842,454.20999999962316,-0.0548098738638339 +90843,454.21499999962316,-0.05480981523354201 +90844,454.21999999962316,-0.054809756601118635 +90845,454.22499999962315,-0.05480969796656363 +90846,454.22999999962315,-0.054809639329876876 +90847,454.23499999962314,-0.05480958069105823 +90848,454.23999999962314,-0.05480952205010756 +90849,454.24499999962313,-0.054809463407024736 +90850,454.2499999996231,-0.054809404761809635 +90851,454.2549999996231,-0.0548093461144621 +90852,454.2599999996231,-0.05480928746498201 +90853,454.2649999996231,-0.05480922881336922 +90854,454.2699999996231,-0.0548091701596236 +90855,454.2749999996231,-0.054809111503745046 +90856,454.2799999996231,-0.054809052845733376 +90857,454.2849999996231,-0.05480899418558849 +90858,454.2899999996231,-0.05480893552331024 +90859,454.2949999996231,-0.0548088768588985 +90860,454.2999999996231,-0.05480881819235313 +90861,454.3049999996231,-0.054808759523674 +90862,454.3099999996231,-0.054808700852860964 +90863,454.31499999962307,-0.0548086421799139 +90864,454.31999999962306,-0.054808583504832684 +90865,454.32499999962306,-0.05480852482761717 +90866,454.32999999962306,-0.054808466148267204 +90867,454.33499999962305,-0.054808407466782685 +90868,454.33999999962305,-0.05480834878316345 +90869,454.34499999962304,-0.054808290097409396 +90870,454.34999999962304,-0.054808231409520375 +90871,454.35499999962303,-0.05480817271949624 +90872,454.359999999623,-0.054808114027336874 +90873,454.364999999623,-0.05480805533304214 +90874,454.369999999623,-0.05480799663661189 +90875,454.374999999623,-0.054807937938045996 +90876,454.379999999623,-0.054807879237344335 +90877,454.384999999623,-0.05480782053450676 +90878,454.389999999623,-0.05480776182953315 +90879,454.394999999623,-0.05480770312242336 +90880,454.399999999623,-0.05480764441317726 +90881,454.404999999623,-0.05480758570179471 +90882,454.409999999623,-0.05480752698827558 +90883,454.414999999623,-0.054807468272619744 +90884,454.419999999623,-0.05480740955482706 +90885,454.42499999962297,-0.05480735083489739 +90886,454.42999999962296,-0.0548072921128306 +90887,454.43499999962296,-0.05480723338862656 +90888,454.43999999962296,-0.05480717466228514 +90889,454.44499999962295,-0.05480711593380619 +90890,454.44999999962295,-0.05480705720318959 +90891,454.45499999962294,-0.05480699847043519 +90892,454.45999999962294,-0.05480693973554287 +90893,454.46499999962293,-0.0548068809985125 +90894,454.4699999996229,-0.05480682225934393 +90895,454.4749999996229,-0.05480676351803703 +90896,454.4799999996229,-0.05480670477459168 +90897,454.4849999996229,-0.05480664602900773 +90898,454.4899999996229,-0.054806587281285034 +90899,454.4949999996229,-0.05480652853142348 +90900,454.4999999996229,-0.05480646977942294 +90901,454.5049999996229,-0.054806411025283254 +90902,454.5099999996229,-0.05480635226900431 +90903,454.5149999996229,-0.05480629351058595 +90904,454.5199999996229,-0.054806234750028056 +90905,454.5249999996229,-0.054806175987330494 +90906,454.5299999996229,-0.054806117222493116 +90907,454.53499999962287,-0.054806058455515796 +90908,454.53999999962286,-0.0548059996863984 +90909,454.54499999962286,-0.05480594091514078 +90910,454.54999999962286,-0.054805882141742826 +90911,454.55499999962285,-0.0548058233662044 +90912,454.55999999962285,-0.05480576458852534 +90913,454.56499999962284,-0.05480570580870554 +90914,454.56999999962284,-0.05480564702674485 +90915,454.57499999962283,-0.054805588242643144 +90916,454.5799999996228,-0.05480552945640028 +90917,454.5849999996228,-0.05480547066801613 +90918,454.5899999996228,-0.054805411877490544 +90919,454.5949999996228,-0.05480535308482339 +90920,454.5999999996228,-0.05480529429001456 +90921,454.6049999996228,-0.05480523549306389 +90922,454.6099999996228,-0.054805176693971266 +90923,454.6149999996228,-0.05480511789273653 +90924,454.6199999996228,-0.05480505908935958 +90925,454.6249999996228,-0.05480500028384024 +90926,454.6299999996228,-0.0548049414761784 +90927,454.6349999996228,-0.054804882666373914 +90928,454.6399999996228,-0.05480482385442666 +90929,454.64499999962277,-0.05480476504033649 +90930,454.64999999962276,-0.054804706224103286 +90931,454.65499999962276,-0.054804647405726895 +90932,454.65999999962276,-0.0548045885852072 +90933,454.66499999962275,-0.05480452976254405 +90934,454.66999999962275,-0.054804470937737305 +90935,454.67499999962274,-0.05480441211078684 +90936,454.67999999962274,-0.05480435328169253 +90937,454.68499999962273,-0.054804294450454226 +90938,454.6899999996227,-0.05480423561707178 +90939,454.6949999996227,-0.054804176781545096 +90940,454.6999999996227,-0.054804117943874006 +90941,454.7049999996227,-0.05480405910405838 +90942,454.7099999996227,-0.0548040002620981 +90943,454.7149999996227,-0.054803941417993 +90944,454.7199999996227,-0.05480388257174298 +90945,454.7249999996227,-0.054803823723347876 +90946,454.7299999996227,-0.05480376487280756 +90947,454.7349999996227,-0.05480370602012191 +90948,454.7399999996227,-0.054803647165290785 +90949,454.7449999996227,-0.054803588308314034 +90950,454.7499999996227,-0.05480352944919154 +90951,454.75499999962267,-0.05480347058792316 +90952,454.75999999962266,-0.05480341172450876 +90953,454.76499999962266,-0.054803352858948204 +90954,454.76999999962266,-0.05480329399124136 +90955,454.77499999962265,-0.054803235121388086 +90956,454.77999999962265,-0.05480317624938825 +90957,454.78499999962264,-0.05480311737524171 +90958,454.78999999962264,-0.05480305849894835 +90959,454.79499999962263,-0.05480299962050802 +90960,454.7999999996226,-0.054802940739920585 +90961,454.8049999996226,-0.05480288185718591 +90962,454.8099999996226,-0.054802822972303857 +90963,454.8149999996226,-0.05480276408527429 +90964,454.8199999996226,-0.05480270519609708 +90965,454.8249999996226,-0.054802646304772086 +90966,454.8299999996226,-0.054802587411299175 +90967,454.8349999996226,-0.054802528515678205 +90968,454.8399999996226,-0.05480246961790906 +90969,454.8449999996226,-0.05480241071799158 +90970,454.8499999996226,-0.05480235181592563 +90971,454.8549999996226,-0.05480229291171109 +90972,454.8599999996226,-0.05480223400534783 +90973,454.86499999962257,-0.0548021750968357 +90974,454.86999999962256,-0.05480211618617456 +90975,454.87499999962256,-0.054802057273364284 +90976,454.87999999962256,-0.054801998358404734 +90977,454.88499999962255,-0.05480193944129577 +90978,454.88999999962255,-0.054801880522037265 +90979,454.89499999962254,-0.05480182160062907 +90980,454.89999999962254,-0.054801762677071056 +90981,454.90499999962253,-0.0548017037513631 +90982,454.9099999996225,-0.054801644823505045 +90983,454.9149999996225,-0.05480158589349676 +90984,454.9199999996225,-0.054801526961338116 +90985,454.9249999996225,-0.054801468027028975 +90986,454.9299999996225,-0.05480140909056919 +90987,454.9349999996225,-0.054801350151958646 +90988,454.9399999996225,-0.054801291211197194 +90989,454.9449999996225,-0.054801232268284705 +90990,454.9499999996225,-0.054801173323221035 +90991,454.9549999996225,-0.05480111437600606 +90992,454.9599999996225,-0.05480105542663962 +90993,454.9649999996225,-0.05480099647512159 +90994,454.9699999996225,-0.05480093752145184 +90995,454.97499999962247,-0.05480087856563024 +90996,454.97999999962246,-0.05480081960765665 +90997,454.98499999962246,-0.05480076064753092 +90998,454.98999999962246,-0.05480070168525292 +90999,454.99499999962245,-0.05480064272082252 +91000,454.99999999962245,-0.05480058375423958 +91001,455.00499999962244,-0.05480052478550397 +91002,455.00999999962244,-0.054800465814615534 +91003,455.01499999962243,-0.05480040684157416 +91004,455.0199999996224,-0.054800347866379696 +91005,455.0249999996224,-0.05480028888903202 +91006,455.0299999996224,-0.054800229909530984 +91007,455.0349999996224,-0.05480017092787645 +91008,455.0399999996224,-0.054800111944068294 +91009,455.0449999996224,-0.05480005295810637 +91010,455.0499999996224,-0.05479999396999054 +91011,455.0549999996224,-0.054799934979720674 +91012,455.0599999996224,-0.05479987598729663 +91013,455.0649999996224,-0.05479981699271828 +91014,455.0699999996224,-0.05479975799598547 +91015,455.0749999996224,-0.05479969899709809 +91016,455.0799999996224,-0.054799639996055985 +91017,455.08499999962237,-0.054799580992859025 +91018,455.08999999962236,-0.054799521987507066 +91019,455.09499999962236,-0.05479946297999998 +91020,455.09999999962236,-0.054799403970337605 +91021,455.10499999962235,-0.05479934495851984 +91022,455.10999999962235,-0.05479928594454654 +91023,455.11499999962234,-0.05479922692841757 +91024,455.11999999962234,-0.054799167910132784 +91025,455.12499999962233,-0.054799108889692034 +91026,455.1299999996223,-0.05479904986709521 +91027,455.1349999996223,-0.05479899084234215 +91028,455.1399999996223,-0.05479893181543274 +91029,455.1449999996223,-0.05479887278636683 +91030,455.1499999996223,-0.05479881375514428 +91031,455.1549999996223,-0.054798754721764965 +91032,455.1599999996223,-0.05479869568622874 +91033,455.1649999996223,-0.05479863664853548 +91034,455.1699999996223,-0.05479857760868504 +91035,455.1749999996223,-0.05479851856667727 +91036,455.1799999996223,-0.05479845952251206 +91037,455.1849999996223,-0.05479840047618926 +91038,455.1899999996223,-0.05479834142770872 +91039,455.19499999962227,-0.05479828237707032 +91040,455.19999999962226,-0.05479822332427392 +91041,455.20499999962226,-0.05479816426931939 +91042,455.20999999962226,-0.054798105212206565 +91043,455.21499999962225,-0.05479804615293534 +91044,455.21999999962225,-0.05479798709150556 +91045,455.22499999962224,-0.054797928027917095 +91046,455.22999999962224,-0.054797868962169816 +91047,455.23499999962223,-0.05479780989426357 +91048,455.2399999996222,-0.054797750824198216 +91049,455.2449999996222,-0.054797691751973646 +91050,455.2499999996222,-0.05479763267758969 +91051,455.2549999996222,-0.05479757360104624 +91052,455.2599999996222,-0.05479751452234314 +91053,455.2649999996222,-0.05479745544148026 +91054,455.2699999996222,-0.05479739635845745 +91055,455.2749999996222,-0.05479733727327458 +91056,455.2799999996222,-0.05479727818593152 +91057,455.2849999996222,-0.05479721909642814 +91058,455.2899999996222,-0.054797160004764284 +91059,455.2949999996222,-0.05479710091093982 +91060,455.2999999996222,-0.05479704181495461 +91061,455.30499999962217,-0.05479698271680853 +91062,455.30999999962216,-0.05479692361650143 +91063,455.31499999962216,-0.05479686451403318 +91064,455.31999999962215,-0.05479680540940362 +91065,455.32499999962215,-0.05479674630261264 +91066,455.32999999962215,-0.05479668719366009 +91067,455.33499999962214,-0.05479662808254584 +91068,455.33999999962214,-0.054796568969269745 +91069,455.34499999962213,-0.05479650985383168 +91070,455.3499999996221,-0.054796450736231496 +91071,455.3549999996221,-0.054796391616469056 +91072,455.3599999996221,-0.05479633249454422 +91073,455.3649999996221,-0.05479627337045686 +91074,455.3699999996221,-0.05479621424420684 +91075,455.3749999996221,-0.05479615511579401 +91076,455.3799999996221,-0.05479609598521823 +91077,455.3849999996221,-0.05479603685247938 +91078,455.3899999996221,-0.05479597771757732 +91079,455.3949999996221,-0.054795918580511895 +91080,455.3999999996221,-0.054795859441282985 +91081,455.4049999996221,-0.054795800299890444 +91082,455.4099999996221,-0.054795741156334135 +91083,455.41499999962207,-0.05479568201061392 +91084,455.41999999962206,-0.05479562286272966 +91085,455.42499999962206,-0.05479556371268123 +91086,455.42999999962205,-0.05479550456046847 +91087,455.43499999962205,-0.05479544540609128 +91088,455.43999999962205,-0.05479538624954948 +91089,455.44499999962204,-0.05479532709084295 +91090,455.44999999962204,-0.054795267929971546 +91091,455.45499999962203,-0.054795208766935145 +91092,455.459999999622,-0.0547951496017336 +91093,455.464999999622,-0.05479509043436677 +91094,455.469999999622,-0.05479503126483452 +91095,455.474999999622,-0.054794972093136725 +91096,455.479999999622,-0.054794912919273214 +91097,455.484999999622,-0.05479485374324388 +91098,455.489999999622,-0.05479479456504858 +91099,455.494999999622,-0.05479473538468716 +91100,455.499999999622,-0.0547946762021595 +91101,455.504999999622,-0.054794617017465456 +91102,455.509999999622,-0.05479455783060489 +91103,455.514999999622,-0.05479449864157766 +91104,455.519999999622,-0.054794439450383634 +91105,455.52499999962197,-0.05479438025702267 +91106,455.52999999962196,-0.05479432106149463 +91107,455.53499999962196,-0.054794261863799376 +91108,455.53999999962195,-0.054794202663936774 +91109,455.54499999962195,-0.05479414346190669 +91110,455.54999999962195,-0.05479408425770896 +91111,455.55499999962194,-0.05479402505134348 +91112,455.55999999962194,-0.0547939658428101 +91113,455.56499999962193,-0.05479390663210866 +91114,455.5699999996219,-0.054793847419239046 +91115,455.5749999996219,-0.054793788204201124 +91116,455.5799999996219,-0.054793728986994736 +91117,455.5849999996219,-0.05479366976761976 +91118,455.5899999996219,-0.05479361054607605 +91119,455.5949999996219,-0.05479355132236347 +91120,455.5999999996219,-0.05479349209648187 +91121,455.6049999996219,-0.05479343286843113 +91122,455.6099999996219,-0.054793373638211094 +91123,455.6149999996219,-0.05479331440582165 +91124,455.6199999996219,-0.05479325517126263 +91125,455.6249999996219,-0.05479319593453391 +91126,455.6299999996219,-0.054793136695635354 +91127,455.63499999962187,-0.05479307745456682 +91128,455.63999999962186,-0.05479301821132816 +91129,455.64499999962186,-0.05479295896591926 +91130,455.64999999962185,-0.054792899718339956 +91131,455.65499999962185,-0.054792840468590114 +91132,455.65999999962185,-0.05479278121666961 +91133,455.66499999962184,-0.0547927219625783 +91134,455.66999999962184,-0.05479266270631604 +91135,455.67499999962183,-0.054792603447882685 +91136,455.6799999996218,-0.054792544187278115 +91137,455.6849999996218,-0.05479248492450218 +91138,455.6899999996218,-0.054792425659554736 +91139,455.6949999996218,-0.054792366392435655 +91140,455.6999999996218,-0.0547923071231448 +91141,455.7049999996218,-0.05479224785168202 +91142,455.7099999996218,-0.05479218857804719 +91143,455.7149999996218,-0.05479212930224016 +91144,455.7199999996218,-0.05479207002426079 +91145,455.7249999996218,-0.05479201074410895 +91146,455.7299999996218,-0.054791951461784505 +91147,455.7349999996218,-0.05479189217728731 +91148,455.7399999996218,-0.05479183289061722 +91149,455.74499999962177,-0.0547917736017741 +91150,455.74999999962176,-0.054791714310757814 +91151,455.75499999962176,-0.05479165501756822 +91152,455.75999999962175,-0.054791595722205176 +91153,455.76499999962175,-0.05479153642466855 +91154,455.76999999962175,-0.05479147712495821 +91155,455.77499999962174,-0.054791417823074 +91156,455.77999999962174,-0.05479135851901579 +91157,455.78499999962173,-0.054791299212783445 +91158,455.7899999996217,-0.05479123990437681 +91159,455.7949999996217,-0.05479118059379576 +91160,455.7999999996217,-0.05479112128104016 +91161,455.8049999996217,-0.05479106196610987 +91162,455.8099999996217,-0.05479100264900472 +91163,455.8149999996217,-0.05479094332972461 +91164,455.8199999996217,-0.05479088400826939 +91165,455.8249999996217,-0.054790824684638924 +91166,455.8299999996217,-0.05479076535883306 +91167,455.8349999996217,-0.05479070603085167 +91168,455.8399999996217,-0.0547906467006946 +91169,455.8449999996217,-0.05479058736836171 +91170,455.8499999996217,-0.0547905280338529 +91171,455.85499999962167,-0.054790468697167985 +91172,455.85999999962166,-0.05479040935830685 +91173,455.86499999962166,-0.05479035001726935 +91174,455.86999999962165,-0.054790290674055345 +91175,455.87499999962165,-0.05479023132866469 +91176,455.87999999962165,-0.054790171981097244 +91177,455.88499999962164,-0.05479011263135288 +91178,455.88999999962164,-0.05479005327943146 +91179,455.89499999962163,-0.05478999392533284 +91180,455.8999999996216,-0.05478993456905687 +91181,455.9049999996216,-0.05478987521060341 +91182,455.9099999996216,-0.05478981584997234 +91183,455.9149999996216,-0.0547897564871635 +91184,455.9199999996216,-0.05478969712217676 +91185,455.9249999996216,-0.054789637755012 +91186,455.9299999996216,-0.054789578385669044 +91187,455.9349999996216,-0.054789519014147775 +91188,455.9399999996216,-0.05478945964044805 +91189,455.9449999996216,-0.05478940026456972 +91190,455.9499999996216,-0.05478934088651266 +91191,455.9549999996216,-0.054789281506276724 +91192,455.9599999996216,-0.05478922212386177 +91193,455.96499999962157,-0.054789162739267656 +91194,455.96999999962156,-0.05478910335249424 +91195,455.97499999962156,-0.05478904396354139 +91196,455.97999999962155,-0.054788984572408966 +91197,455.98499999962155,-0.05478892517909684 +91198,455.98999999962155,-0.05478886578360485 +91199,455.99499999962154,-0.05478880638593287 +91200,455.99999999962154,-0.05478874698608075 +91201,456.00499999962153,-0.05478868758404836 +91202,456.0099999996215,-0.054788628179835555 +91203,456.0149999996215,-0.054788568773442195 +91204,456.0199999996215,-0.054788509364868135 +91205,456.0249999996215,-0.05478844995411325 +91206,456.0299999996215,-0.054788390541177394 +91207,456.0349999996215,-0.054788331126060415 +91208,456.0399999996215,-0.05478827170876218 +91209,456.0449999996215,-0.05478821228928256 +91210,456.0499999996215,-0.054788152867621405 +91211,456.0549999996215,-0.05478809344377858 +91212,456.0599999996215,-0.054788034017753943 +91213,456.0649999996215,-0.054787974589547345 +91214,456.0699999996215,-0.05478791515915866 +91215,456.07499999962147,-0.05478785572658774 +91216,456.07999999962146,-0.05478779629183444 +91217,456.08499999962146,-0.05478773685489863 +91218,456.08999999962145,-0.05478767741578017 +91219,456.09499999962145,-0.054787617974478904 +91220,456.09999999962145,-0.054787558530994714 +91221,456.10499999962144,-0.05478749908532746 +91222,456.10999999962144,-0.05478743963747697 +91223,456.11499999962143,-0.054787380187443134 +91224,456.1199999996214,-0.054787320735225804 +91225,456.1249999996214,-0.05478726128082484 +91226,456.1299999996214,-0.05478720182424009 +91227,456.1349999996214,-0.05478714236547143 +91228,456.1399999996214,-0.05478708290451871 +91229,456.1449999996214,-0.05478702344138179 +91230,456.1499999996214,-0.05478696397606053 +91231,456.1549999996214,-0.0547869045085548 +91232,456.1599999996214,-0.054786845038864454 +91233,456.1649999996214,-0.054786785566989356 +91234,456.1699999996214,-0.054786726092929346 +91235,456.1749999996214,-0.0547866666166843 +91236,456.1799999996214,-0.05478660713825407 +91237,456.18499999962137,-0.054786547657638525 +91238,456.18999999962136,-0.054786488174837514 +91239,456.19499999962136,-0.05478642868985091 +91240,456.19999999962135,-0.054786369202678556 +91241,456.20499999962135,-0.054786309713320325 +91242,456.20999999962135,-0.05478625022177606 +91243,456.21499999962134,-0.05478619072804564 +91244,456.21999999962134,-0.05478613123212891 +91245,456.22499999962133,-0.05478607173402574 +91246,456.2299999996213,-0.05478601223373598 +91247,456.2349999996213,-0.05478595273125949 +91248,456.2399999996213,-0.05478589322659613 +91249,456.2449999996213,-0.05478583371974577 +91250,456.2499999996213,-0.05478577421070826 +91251,456.2549999996213,-0.05478571469948345 +91252,456.2599999996213,-0.05478565518607121 +91253,456.2649999996213,-0.05478559567047141 +91254,456.2699999996213,-0.05478553615268389 +91255,456.2749999996213,-0.054785476632708524 +91256,456.2799999996213,-0.05478541711054515 +91257,456.2849999996213,-0.054785357586193656 +91258,456.2899999996213,-0.05478529805965388 +91259,456.29499999962127,-0.054785238530925685 +91260,456.29999999962126,-0.05478517900000893 +91261,456.30499999962126,-0.05478511946690347 +91262,456.30999999962125,-0.05478505993160917 +91263,456.31499999962125,-0.054785000394125906 +91264,456.31999999962125,-0.05478494085445351 +91265,456.32499999962124,-0.05478488131259185 +91266,456.32999999962124,-0.054784821768540784 +91267,456.33499999962123,-0.05478476222230017 +91268,456.3399999996212,-0.054784702673869874 +91269,456.3449999996212,-0.05478464312324975 +91270,456.3499999996212,-0.054784583570439666 +91271,456.3549999996212,-0.05478452401543946 +91272,456.3599999996212,-0.054784464458249006 +91273,456.3649999996212,-0.05478440489886816 +91274,456.3699999996212,-0.054784345337296786 +91275,456.3749999996212,-0.05478428577353474 +91276,456.3799999996212,-0.05478422620758187 +91277,456.3849999996212,-0.05478416663943804 +91278,456.3899999996212,-0.05478410706910312 +91279,456.3949999996212,-0.05478404749657695 +91280,456.3999999996212,-0.054783987921859394 +91281,456.40499999962117,-0.054783928344950314 +91282,456.40999999962116,-0.05478386876584958 +91283,456.41499999962116,-0.05478380918455703 +91284,456.41999999962115,-0.05478374960107253 +91285,456.42499999962115,-0.05478369001539595 +91286,456.42999999962115,-0.05478363042752713 +91287,456.43499999962114,-0.05478357083746595 +91288,456.43999999962114,-0.05478351124521224 +91289,456.44499999962113,-0.05478345165076588 +91290,456.4499999996211,-0.05478339205412674 +91291,456.4549999996211,-0.05478333245529464 +91292,456.4599999996211,-0.05478327285426947 +91293,456.4649999996211,-0.05478321325105108 +91294,456.4699999996211,-0.054783153645639335 +91295,456.4749999996211,-0.054783094038034066 +91296,456.4799999996211,-0.05478303442823516 +91297,456.4849999996211,-0.05478297481624246 +91298,456.4899999996211,-0.05478291520205583 +91299,456.4949999996211,-0.05478285558567514 +91300,456.4999999996211,-0.05478279596710023 +91301,456.5049999996211,-0.05478273634633096 +91302,456.5099999996211,-0.0547826767233672 +91303,456.51499999962107,-0.0547826170982088 +91304,456.51999999962106,-0.05478255747085562 +91305,456.52499999962106,-0.054782497841307516 +91306,456.52999999962105,-0.05478243820956435 +91307,456.53499999962105,-0.05478237857562597 +91308,456.53999999962105,-0.054782318939492244 +91309,456.54499999962104,-0.054782259301163025 +91310,456.54999999962104,-0.05478219966063817 +91311,456.55499999962103,-0.05478214001791754 +91312,456.559999999621,-0.054782080373000995 +91313,456.564999999621,-0.054782020725888385 +91314,456.569999999621,-0.054781961076579594 +91315,456.574999999621,-0.054781901425074456 +91316,456.579999999621,-0.054781841771372825 +91317,456.584999999621,-0.05478178211547457 +91318,456.589999999621,-0.05478172245737955 +91319,456.594999999621,-0.054781662797087606 +91320,456.599999999621,-0.054781603134598615 +91321,456.604999999621,-0.05478154346991242 +91322,456.609999999621,-0.05478148380302889 +91323,456.614999999621,-0.05478142413394788 +91324,456.619999999621,-0.05478136446266925 +91325,456.62499999962097,-0.05478130478919286 +91326,456.62999999962096,-0.05478124511351857 +91327,456.63499999962096,-0.05478118543564621 +91328,456.63999999962095,-0.05478112575557567 +91329,456.64499999962095,-0.05478106607330679 +91330,456.64999999962095,-0.05478100638883943 +91331,456.65499999962094,-0.054780946702173455 +91332,456.65999999962094,-0.054780887013308716 +91333,456.66499999962093,-0.054780827322245075 +91334,456.6699999996209,-0.05478076762898239 +91335,456.6749999996209,-0.054780707933520516 +91336,456.6799999996209,-0.05478064823585932 +91337,456.6849999996209,-0.05478058853599863 +91338,456.6899999996209,-0.05478052883393834 +91339,456.6949999996209,-0.05478046912967828 +91340,456.6999999996209,-0.05478040942321833 +91341,456.7049999996209,-0.05478034971455833 +91342,456.7099999996209,-0.05478029000369814 +91343,456.7149999996209,-0.05478023029063762 +91344,456.7199999996209,-0.05478017057537663 +91345,456.7249999996209,-0.054780110857915024 +91346,456.7299999996209,-0.05478005113825266 +91347,456.73499999962087,-0.054779991416389395 +91348,456.73999999962086,-0.05477993169232508 +91349,456.74499999962086,-0.05477987196605959 +91350,456.74999999962085,-0.05477981223759277 +91351,456.75499999962085,-0.05477975250692447 +91352,456.75999999962085,-0.054779692774054554 +91353,456.76499999962084,-0.05477963303898288 +91354,456.76999999962084,-0.05477957330170931 +91355,456.77499999962083,-0.05477951356223369 +91356,456.7799999996208,-0.054779453820555886 +91357,456.7849999996208,-0.05477939407667576 +91358,456.7899999996208,-0.05477933433059316 +91359,456.7949999996208,-0.05477927458230795 +91360,456.7999999996208,-0.054779214831819974 +91361,456.8049999996208,-0.054779155079129095 +91362,456.8099999996208,-0.05477909532423517 +91363,456.8149999996208,-0.05477903556713807 +91364,456.8199999996208,-0.054778975807837624 +91365,456.8249999996208,-0.05477891604633372 +91366,456.8299999996208,-0.054778856282626194 +91367,456.8349999996208,-0.054778796516714905 +91368,456.8399999996208,-0.05477873674859971 +91369,456.84499999962077,-0.054778676978280476 +91370,456.84999999962076,-0.054778617205757045 +91371,456.85499999962076,-0.05477855743102929 +91372,456.85999999962075,-0.054778497654097036 +91373,456.86499999962075,-0.05477843787496018 +91374,456.86999999962075,-0.05477837809361856 +91375,456.87499999962074,-0.05477831831007202 +91376,456.87999999962074,-0.05477825852432045 +91377,456.88499999962073,-0.05477819873636368 +91378,456.8899999996207,-0.054778138946201566 +91379,456.8949999996207,-0.054778079153833974 +91380,456.8999999996207,-0.05477801935926077 +91381,456.9049999996207,-0.054777959562481784 +91382,456.9099999996207,-0.05477789976349689 +91383,456.9149999996207,-0.054777839962305945 +91384,456.9199999996207,-0.054777780158908815 +91385,456.9249999996207,-0.054777720353305324 +91386,456.9299999996207,-0.05477766054549537 +91387,456.9349999996207,-0.05477760073547877 +91388,456.9399999996207,-0.0547775409232554 +91389,456.9449999996207,-0.05477748110882512 +91390,456.9499999996207,-0.05477742129218777 +91391,456.95499999962067,-0.05477736147334322 +91392,456.95999999962066,-0.05477730165229133 +91393,456.96499999962066,-0.05477724182903195 +91394,456.96999999962065,-0.054777182003564934 +91395,456.97499999962065,-0.05477712217589014 +91396,456.97999999962065,-0.054777062346007425 +91397,456.98499999962064,-0.054777002513916644 +91398,456.98999999962064,-0.05477694267961766 +91399,456.99499999962063,-0.05477688284311032 +91400,456.9999999996206,-0.05477682300439447 +91401,457.0049999996206,-0.054776763163469994 +91402,457.0099999996206,-0.05477670332033674 +91403,457.0149999996206,-0.054776643474994544 +91404,457.0199999996206,-0.054776583627443275 +91405,457.0249999996206,-0.0547765237776828 +91406,457.0299999996206,-0.05477646392571296 +91407,457.0349999996206,-0.054776404071533606 +91408,457.0399999996206,-0.05477634421514461 +91409,457.0449999996206,-0.054776284356545815 +91410,457.0499999996206,-0.05477622449573708 +91411,457.0549999996206,-0.054776164632718276 +91412,457.0599999996206,-0.054776104767489245 +91413,457.06499999962057,-0.05477604490004984 +91414,457.06999999962056,-0.054775985030399925 +91415,457.07499999962056,-0.05477592515853935 +91416,457.07999999962055,-0.05477586528446797 +91417,457.08499999962055,-0.05477580540818565 +91418,457.08999999962055,-0.05477574552969223 +91419,457.09499999962054,-0.05477568564898759 +91420,457.09999999962054,-0.054775625766071555 +91421,457.10499999962053,-0.054775565880944004 +91422,457.1099999996205,-0.054775505993604784 +91423,457.1149999996205,-0.05477544610405376 +91424,457.1199999996205,-0.05477538621229077 +91425,457.1249999996205,-0.05477532631831568 +91426,457.1299999996205,-0.05477526642212834 +91427,457.1349999996205,-0.054775206523728616 +91428,457.1399999996205,-0.054775146623116354 +91429,457.1449999996205,-0.054775086720291424 +91430,457.1499999996205,-0.05477502681525367 +91431,457.1549999996205,-0.05477496690800294 +91432,457.1599999996205,-0.0547749069985391 +91433,457.1649999996205,-0.054774847086862 +91434,457.1699999996205,-0.054774787172971504 +91435,457.17499999962047,-0.05477472725686745 +91436,457.17999999962046,-0.05477466733854972 +91437,457.18499999962046,-0.05477460741801815 +91438,457.18999999962045,-0.0547745474952726 +91439,457.19499999962045,-0.05477448757031291 +91440,457.19999999962045,-0.054774427643138966 +91441,457.20499999962044,-0.05477436771375059 +91442,457.20999999962044,-0.054774307782147674 +91443,457.21499999962043,-0.05477424784833005 +91444,457.2199999996204,-0.054774187912297566 +91445,457.2249999996204,-0.05477412797405009 +91446,457.2299999996204,-0.05477406803358748 +91447,457.2349999996204,-0.05477400809090959 +91448,457.2399999996204,-0.054773948146016264 +91449,457.2449999996204,-0.054773888198907376 +91450,457.2499999996204,-0.05477382824958275 +91451,457.2549999996204,-0.05477376829804227 +91452,457.2599999996204,-0.05477370834428578 +91453,457.2649999996204,-0.05477364838831313 +91454,457.2699999996204,-0.05477358843012419 +91455,457.2749999996204,-0.0547735284697188 +91456,457.2799999996204,-0.05477346850709682 +91457,457.28499999962037,-0.05477340854225811 +91458,457.28999999962036,-0.05477334857520252 +91459,457.29499999962036,-0.05477328860592991 +91460,457.29999999962035,-0.05477322863444012 +91461,457.30499999962035,-0.05477316866073302 +91462,457.30999999962035,-0.05477310868480846 +91463,457.31499999962034,-0.0547730487066663 +91464,457.31999999962034,-0.054772988726306385 +91465,457.32499999962033,-0.05477292874372857 +91466,457.3299999996203,-0.05477286875893272 +91467,457.3349999996203,-0.054772808771918674 +91468,457.3399999996203,-0.05477274878268631 +91469,457.3449999996203,-0.05477268879123545 +91470,457.3499999996203,-0.054772628797565975 +91471,457.3549999996203,-0.054772568801677725 +91472,457.3599999996203,-0.05477250880357056 +91473,457.3649999996203,-0.05477244880324435 +91474,457.3699999996203,-0.05477238880069892 +91475,457.3749999996203,-0.05477232879593415 +91476,457.3799999996203,-0.05477226878894988 +91477,457.3849999996203,-0.054772208779745965 +91478,457.3899999996203,-0.05477214876832227 +91479,457.39499999962027,-0.054772088754678636 +91480,457.39999999962026,-0.054772028738814926 +91481,457.40499999962026,-0.054771968720731 +91482,457.40999999962025,-0.0547719087004267 +91483,457.41499999962025,-0.05477184867790187 +91484,457.41999999962025,-0.05477178865315639 +91485,457.42499999962024,-0.05477172862619011 +91486,457.42999999962024,-0.05477166859700287 +91487,457.43499999962023,-0.054771608565594536 +91488,457.4399999996202,-0.054771548531964954 +91489,457.4449999996202,-0.054771488496113976 +91490,457.4499999996202,-0.05477142845804147 +91491,457.4549999996202,-0.05477136841774728 +91492,457.4599999996202,-0.05477130837523126 +91493,457.4649999996202,-0.054771248330493266 +91494,457.4699999996202,-0.054771188283533154 +91495,457.4749999996202,-0.05477112823435077 +91496,457.4799999996202,-0.054771068182945984 +91497,457.4849999996202,-0.054771008129318635 +91498,457.4899999996202,-0.05477094807346858 +91499,457.4949999996202,-0.05477088801539567 +91500,457.4999999996202,-0.054770827955099764 +91501,457.50499999962017,-0.05477076789258072 +91502,457.50999999962016,-0.0547707078278384 +91503,457.51499999962016,-0.05477064776087262 +91504,457.51999999962015,-0.054770587691683276 +91505,457.52499999962015,-0.0547705276202702 +91506,457.52999999962014,-0.054770467546633256 +91507,457.53499999962014,-0.05477040747077228 +91508,457.53999999962014,-0.05477034739268716 +91509,457.54499999962013,-0.05477028731237771 +91510,457.5499999996201,-0.0547702272298438 +91511,457.5549999996201,-0.054770167145085286 +91512,457.5599999996201,-0.05477010705810203 +91513,457.5649999996201,-0.054770046968893864 +91514,457.5699999996201,-0.054769986877460666 +91515,457.5749999996201,-0.05476992678380228 +91516,457.5799999996201,-0.05476986668791855 +91517,457.5849999996201,-0.05476980658980934 +91518,457.5899999996201,-0.05476974648947449 +91519,457.5949999996201,-0.05476968638691386 +91520,457.5999999996201,-0.05476962628212732 +91521,457.6049999996201,-0.054769566175114706 +91522,457.6099999996201,-0.05476950606587588 +91523,457.61499999962007,-0.05476944595441069 +91524,457.61999999962006,-0.054769385840718984 +91525,457.62499999962006,-0.05476932572480062 +91526,457.62999999962005,-0.054769265606655466 +91527,457.63499999962005,-0.054769205486283355 +91528,457.63999999962004,-0.05476914536368415 +91529,457.64499999962004,-0.0547690852388577 +91530,457.64999999962004,-0.05476902511180386 +91531,457.65499999962003,-0.054768964982522476 +91532,457.65999999962,-0.05476890485101342 +91533,457.66499999962,-0.05476884471727652 +91534,457.66999999962,-0.05476878458131165 +91535,457.67499999962,-0.05476872444311866 +91536,457.67999999962,-0.05476866430269739 +91537,457.68499999962,-0.0547686041600477 +91538,457.68999999962,-0.05476854401516945 +91539,457.69499999962,-0.05476848386806249 +91540,457.69999999962,-0.054768423718726665 +91541,457.70499999962,-0.054768363567161846 +91542,457.70999999962,-0.05476830341336786 +91543,457.71499999962,-0.05476824325734458 +91544,457.71999999962,-0.05476818309909186 +91545,457.72499999961997,-0.05476812293860954 +91546,457.72999999961996,-0.05476806277589748 +91547,457.73499999961996,-0.05476800261095552 +91548,457.73999999961995,-0.05476794244378354 +91549,457.74499999961995,-0.05476788227438136 +91550,457.74999999961994,-0.054767822102748866 +91551,457.75499999961994,-0.05476776192888589 +91552,457.75999999961994,-0.054767701752792296 +91553,457.76499999961993,-0.05476764157446792 +91554,457.7699999996199,-0.05476758139391262 +91555,457.7749999996199,-0.054767521211126255 +91556,457.7799999996199,-0.05476746102610868 +91557,457.7849999996199,-0.05476740083885973 +91558,457.7899999996199,-0.05476734064937928 +91559,457.7949999996199,-0.05476728045766717 +91560,457.7999999996199,-0.054767220263723264 +91561,457.8049999996199,-0.054767160067547394 +91562,457.8099999996199,-0.05476709986913943 +91563,457.8149999996199,-0.054767039668499225 +91564,457.8199999996199,-0.05476697946562662 +91565,457.8249999996199,-0.05476691926052148 +91566,457.8299999996199,-0.05476685905318364 +91567,457.83499999961987,-0.05476679884361296 +91568,457.83999999961986,-0.0547667386318093 +91569,457.84499999961986,-0.05476667841777251 +91570,457.84999999961985,-0.05476661820150244 +91571,457.85499999961985,-0.05476655798299893 +91572,457.85999999961984,-0.05476649776226185 +91573,457.86499999961984,-0.05476643753929105 +91574,457.86999999961984,-0.05476637731408637 +91575,457.87499999961983,-0.05476631708664768 +91576,457.8799999996198,-0.05476625685697481 +91577,457.8849999996198,-0.054766196625067626 +91578,457.8899999996198,-0.05476613639092598 +91579,457.8949999996198,-0.054766076154549724 +91580,457.8999999996198,-0.05476601591593871 +91581,457.9049999996198,-0.054765955675092785 +91582,457.9099999996198,-0.0547658954320118 +91583,457.9149999996198,-0.05476583518669562 +91584,457.9199999996198,-0.0547657749391441 +91585,457.9249999996198,-0.05476571468935707 +91586,457.9299999996198,-0.054765654437334395 +91587,457.9349999996198,-0.05476559418307592 +91588,457.9399999996198,-0.0547655339265815 +91589,457.94499999961977,-0.054765473667850985 +91590,457.94999999961976,-0.054765413406884234 +91591,457.95499999961976,-0.0547653531436811 +91592,457.95999999961975,-0.054765292878241424 +91593,457.96499999961975,-0.05476523261056507 +91594,457.96999999961974,-0.054765172340651876 +91595,457.97499999961974,-0.054765112068501695 +91596,457.97999999961974,-0.05476505179411439 +91597,457.98499999961973,-0.05476499151748981 +91598,457.9899999996197,-0.054764931238627794 +91599,457.9949999996197,-0.0547648709575282 +91600,457.9999999996197,-0.0547648106741909 +91601,458.0049999996197,-0.05476475038861571 +91602,458.0099999996197,-0.05476469010080251 +91603,458.0149999996197,-0.05476462981075115 +91604,458.0199999996197,-0.05476456951846146 +91605,458.0249999996197,-0.054764509223933305 +91606,458.0299999996197,-0.054764448927166524 +91607,458.0349999996197,-0.054764388628160986 +91608,458.0399999996197,-0.05476432832691654 +91609,458.0449999996197,-0.05476426802343303 +91610,458.0499999996197,-0.054764207717710324 +91611,458.05499999961967,-0.05476414740974825 +91612,458.05999999961966,-0.05476408709954667 +91613,458.06499999961966,-0.05476402678710544 +91614,458.06999999961965,-0.0547639664724244 +91615,458.07499999961965,-0.05476390615550341 +91616,458.07999999961964,-0.05476384583634231 +91617,458.08499999961964,-0.05476378551494097 +91618,458.08999999961964,-0.05476372519129922 +91619,458.09499999961963,-0.054763664865416915 +91620,458.0999999996196,-0.05476360453729392 +91621,458.1049999996196,-0.05476354420693008 +91622,458.1099999996196,-0.054763483874325246 +91623,458.1149999996196,-0.054763423539479265 +91624,458.1199999996196,-0.05476336320239199 +91625,458.1249999996196,-0.05476330286306327 +91626,458.1299999996196,-0.05476324252149297 +91627,458.1349999996196,-0.05476318217768092 +91628,458.1399999996196,-0.054763121831626974 +91629,458.1449999996196,-0.054763061483331 +91630,458.1499999996196,-0.05476300113279284 +91631,458.1549999996196,-0.05476294078001233 +91632,458.1599999996196,-0.054762880424989335 +91633,458.16499999961957,-0.05476282006772371 +91634,458.16999999961956,-0.0547627597082153 +91635,458.17499999961956,-0.054762699346463946 +91636,458.17999999961955,-0.05476263898246951 +91637,458.18499999961955,-0.05476257861623185 +91638,458.18999999961954,-0.05476251824775081 +91639,458.19499999961954,-0.05476245787702622 +91640,458.19999999961954,-0.05476239750405796 +91641,458.20499999961953,-0.05476233712884587 +91642,458.2099999996195,-0.0547622767513898 +91643,458.2149999996195,-0.054762216371689605 +91644,458.2199999996195,-0.054762155989745126 +91645,458.2249999996195,-0.05476209560555621 +91646,458.2299999996195,-0.05476203521912272 +91647,458.2349999996195,-0.05476197483044452 +91648,458.2399999996195,-0.05476191443952142 +91649,458.2449999996195,-0.05476185404635331 +91650,458.2499999996195,-0.054761793650940006 +91651,458.2549999996195,-0.054761733253281396 +91652,458.2599999996195,-0.05476167285337729 +91653,458.2649999996195,-0.05476161245122756 +91654,458.2699999996195,-0.054761552046832064 +91655,458.27499999961947,-0.05476149164019064 +91656,458.27999999961946,-0.05476143123130315 +91657,458.28499999961946,-0.054761370820169436 +91658,458.28999999961945,-0.05476131040678934 +91659,458.29499999961945,-0.05476124999116271 +91660,458.29999999961944,-0.05476118957328942 +91661,458.30499999961944,-0.054761129153169295 +91662,458.30999999961944,-0.05476106873080219 +91663,458.31499999961943,-0.05476100830618798 +91664,458.3199999996194,-0.054760947879326484 +91665,458.3249999996194,-0.05476088745021755 +91666,458.3299999996194,-0.05476082701886105 +91667,458.3349999996194,-0.05476076658525683 +91668,458.3399999996194,-0.05476070614940474 +91669,458.3449999996194,-0.05476064571130462 +91670,458.3499999996194,-0.05476058527095633 +91671,458.3549999996194,-0.054760524828359705 +91672,458.3599999996194,-0.054760464383514604 +91673,458.3649999996194,-0.054760403936420884 +91674,458.3699999996194,-0.05476034348707839 +91675,458.3749999996194,-0.05476028303548697 +91676,458.3799999996194,-0.05476022258164646 +91677,458.38499999961937,-0.05476016212555673 +91678,458.38999999961936,-0.05476010166721763 +91679,458.39499999961936,-0.054760041206629 +91680,458.39999999961935,-0.054759980743790695 +91681,458.40499999961935,-0.05475992027870255 +91682,458.40999999961934,-0.054759859811364435 +91683,458.41499999961934,-0.05475979934177619 +91684,458.41999999961934,-0.054759738869937666 +91685,458.42499999961933,-0.054759678395848714 +91686,458.4299999996193,-0.05475961791950917 +91687,458.4349999996193,-0.0547595574409189 +91688,458.4399999996193,-0.054759496960077744 +91689,458.4449999996193,-0.05475943647698556 +91690,458.4499999996193,-0.05475937599164219 +91691,458.4549999996193,-0.05475931550404748 +91692,458.4599999996193,-0.054759255014201286 +91693,458.4649999996193,-0.054759194522103455 +91694,458.4699999996193,-0.05475913402775385 +91695,458.4749999996193,-0.054759073531152294 +91696,458.4799999996193,-0.05475901303229865 +91697,458.4849999996193,-0.05475895253119278 +91698,458.4899999996193,-0.05475889202783451 +91699,458.49499999961927,-0.0547588315222237 +91700,458.49999999961926,-0.054758771014360205 +91701,458.50499999961926,-0.054758710504243864 +91702,458.50999999961925,-0.05475864999187453 +91703,458.51499999961925,-0.05475858947725206 +91704,458.51999999961924,-0.054758528960376286 +91705,458.52499999961924,-0.054758468441247064 +91706,458.52999999961924,-0.05475840791986424 +91707,458.53499999961923,-0.05475834739622768 +91708,458.5399999996192,-0.054758286870337215 +91709,458.5449999996192,-0.0547582263421927 +91710,458.5499999996192,-0.05475816581179399 +91711,458.5549999996192,-0.05475810527914092 +91712,458.5599999996192,-0.05475804474423335 +91713,458.5649999996192,-0.05475798420707112 +91714,458.5699999996192,-0.054757923667654085 +91715,458.5749999996192,-0.05475786312598208 +91716,458.5799999996192,-0.05475780258205498 +91717,458.5849999996192,-0.05475774203587261 +91718,458.5899999996192,-0.05475768148743484 +91719,458.5949999996192,-0.054757620936741504 +91720,458.5999999996192,-0.05475756038379245 +91721,458.60499999961917,-0.054757499828587526 +91722,458.60999999961916,-0.054757439271126584 +91723,458.61499999961916,-0.054757378711409475 +91724,458.61999999961915,-0.054757318149436046 +91725,458.62499999961915,-0.05475725758520615 +91726,458.62999999961914,-0.054757197018719624 +91727,458.63499999961914,-0.05475713644997632 +91728,458.63999999961914,-0.05475707587897608 +91729,458.64499999961913,-0.05475701530571878 +91730,458.6499999996191,-0.05475695473020424 +91731,458.6549999996191,-0.054756894152432324 +91732,458.6599999996191,-0.05475683357240287 +91733,458.6649999996191,-0.054756772990115735 +91734,458.6699999996191,-0.05475671240557076 +91735,458.6749999996191,-0.05475665181876779 +91736,458.6799999996191,-0.054756591229706685 +91737,458.6849999996191,-0.05475653063838729 +91738,458.6899999996191,-0.05475647004480945 +91739,458.6949999996191,-0.054756409448973004 +91740,458.6999999996191,-0.054756348850877816 +91741,458.7049999996191,-0.05475628825052373 +91742,458.7099999996191,-0.05475622764791058 +91743,458.71499999961907,-0.054756167043038234 +91744,458.71999999961906,-0.05475610643590653 +91745,458.72499999961906,-0.05475604582651532 +91746,458.72999999961905,-0.05475598521486444 +91747,458.73499999961905,-0.05475592460095375 +91748,458.73999999961904,-0.05475586398478309 +91749,458.74499999961904,-0.05475580336635233 +91750,458.74999999961904,-0.05475574274566128 +91751,458.75499999961903,-0.05475568212270983 +91752,458.759999999619,-0.0547556214974978 +91753,458.764999999619,-0.05475556087002504 +91754,458.769999999619,-0.054755500240291397 +91755,458.774999999619,-0.05475543960829673 +91756,458.779999999619,-0.05475537897404088 +91757,458.784999999619,-0.054755318337523694 +91758,458.789999999619,-0.054755257698745015 +91759,458.794999999619,-0.054755197057704694 +91760,458.799999999619,-0.054755136414402585 +91761,458.804999999619,-0.05475507576883854 +91762,458.809999999619,-0.05475501512101239 +91763,458.814999999619,-0.05475495447092399 +91764,458.819999999619,-0.054754893818573194 +91765,458.82499999961897,-0.054754833163959835 +91766,458.82999999961896,-0.05475477250708377 +91767,458.83499999961896,-0.05475471184794485 +91768,458.83999999961895,-0.0547546511865429 +91769,458.84499999961895,-0.054754590522877795 +91770,458.84999999961894,-0.054754529856949376 +91771,458.85499999961894,-0.05475446918875748 +91772,458.85999999961894,-0.05475440851830196 +91773,458.86499999961893,-0.05475434784558266 +91774,458.8699999996189,-0.05475428717059943 +91775,458.8749999996189,-0.05475422649335212 +91776,458.8799999996189,-0.05475416581384057 +91777,458.8849999996189,-0.05475410513206464 +91778,458.8899999996189,-0.05475404444802416 +91779,458.8949999996189,-0.054753983761719 +91780,458.8999999996189,-0.05475392307314898 +91781,458.9049999996189,-0.05475386238231397 +91782,458.9099999996189,-0.0547538016892138 +91783,458.9149999996189,-0.054753740993848325 +91784,458.9199999996189,-0.0547536802962174 +91785,458.9249999996189,-0.054753619596320864 +91786,458.9299999996189,-0.05475355889415855 +91787,458.93499999961887,-0.054753498189730326 +91788,458.93999999961886,-0.05475343748303602 +91789,458.94499999961886,-0.054753376774075505 +91790,458.94999999961885,-0.0547533160628486 +91791,458.95499999961885,-0.05475325534935516 +91792,458.95999999961884,-0.05475319463359504 +91793,458.96499999961884,-0.05475313391556809 +91794,458.96999999961884,-0.05475307319527414 +91795,458.97499999961883,-0.05475301247271305 +91796,458.9799999996188,-0.054752951747884665 +91797,458.9849999996188,-0.05475289102078883 +91798,458.9899999996188,-0.054752830291425386 +91799,458.9949999996188,-0.054752769559794176 +91800,458.9999999996188,-0.05475270882589506 +91801,459.0049999996188,-0.05475264808972787 +91802,459.0099999996188,-0.054752587351292466 +91803,459.0149999996188,-0.054752526610588687 +91804,459.0199999996188,-0.054752465867616396 +91805,459.0249999996188,-0.054752405122375405 +91806,459.0299999996188,-0.054752344374865605 +91807,459.0349999996188,-0.05475228362508681 +91808,459.0399999996188,-0.05475222287303886 +91809,459.04499999961877,-0.05475216211872163 +91810,459.04999999961876,-0.05475210136213494 +91811,459.05499999961876,-0.054752040603278644 +91812,459.05999999961875,-0.05475197984215261 +91813,459.06499999961875,-0.05475191907875666 +91814,459.06999999961874,-0.05475185831309064 +91815,459.07499999961874,-0.054751797545154406 +91816,459.07999999961874,-0.0547517367749478 +91817,459.08499999961873,-0.054751676002470676 +91818,459.0899999996187,-0.054751615227722865 +91819,459.0949999996187,-0.05475155445070422 +91820,459.0999999996187,-0.054751493671414596 +91821,459.1049999996187,-0.05475143288985382 +91822,459.1099999996187,-0.054751372106021746 +91823,459.1149999996187,-0.05475131131991823 +91824,459.1199999996187,-0.05475125053154311 +91825,459.1249999996187,-0.054751189740896225 +91826,459.1299999996187,-0.054751128947977436 +91827,459.1349999996187,-0.054751068152786575 +91828,459.1399999996187,-0.0547510073553235 +91829,459.1449999996187,-0.05475094655558804 +91830,459.1499999996187,-0.054750885753580066 +91831,459.15499999961867,-0.0547508249492994 +91832,459.15999999961866,-0.05475076414274589 +91833,459.16499999961866,-0.054750703333919404 +91834,459.16999999961865,-0.05475064252281976 +91835,459.17499999961865,-0.05475058170944682 +91836,459.17999999961864,-0.054750520893800426 +91837,459.18499999961864,-0.054750460075880414 +91838,459.18999999961864,-0.054750399255686644 +91839,459.19499999961863,-0.054750338433218956 +91840,459.1999999996186,-0.05475027760847719 +91841,459.2049999996186,-0.05475021678146119 +91842,459.2099999996186,-0.054750155952170816 +91843,459.2149999996186,-0.054750095120605906 +91844,459.2199999996186,-0.054750034286766294 +91845,459.2249999996186,-0.054749973450651836 +91846,459.2299999996186,-0.05474991261226238 +91847,459.2349999996186,-0.05474985177159776 +91848,459.2399999996186,-0.054749790928657845 +91849,459.2449999996186,-0.05474973008344246 +91850,459.2499999996186,-0.05474966923595145 +91851,459.2549999996186,-0.054749608386184666 +91852,459.25999999961857,-0.05474954753414194 +91853,459.26499999961857,-0.054749486679823135 +91854,459.26999999961856,-0.054749425823228094 +91855,459.27499999961856,-0.05474936496435666 +91856,459.27999999961855,-0.054749304103208676 +91857,459.28499999961855,-0.05474924323978398 +91858,459.28999999961854,-0.054749182374082425 +91859,459.29499999961854,-0.054749121506103865 +91860,459.29999999961854,-0.054749060635848126 +91861,459.30499999961853,-0.05474899976331506 +91862,459.3099999996185,-0.05474893888850451 +91863,459.3149999996185,-0.05474887801141633 +91864,459.3199999996185,-0.05474881713205035 +91865,459.3249999996185,-0.054748756250406434 +91866,459.3299999996185,-0.05474869536648441 +91867,459.3349999996185,-0.05474863448028414 +91868,459.3399999996185,-0.054748573591805454 +91869,459.3449999996185,-0.0547485127010482 +91870,459.3499999996185,-0.05474845180801222 +91871,459.3549999996185,-0.05474839091269736 +91872,459.3599999996185,-0.054748330015103465 +91873,459.3649999996185,-0.054748269115230376 +91874,459.36999999961847,-0.054748208213077944 +91875,459.37499999961847,-0.054748147308646015 +91876,459.37999999961846,-0.05474808640193443 +91877,459.38499999961846,-0.05474802549294303 +91878,459.38999999961845,-0.054747964581671665 +91879,459.39499999961845,-0.05474790366812018 +91880,459.39999999961844,-0.05474784275228841 +91881,459.40499999961844,-0.05474778183417621 +91882,459.40999999961844,-0.05474772091378341 +91883,459.41499999961843,-0.05474765999110987 +91884,459.4199999996184,-0.05474759906615543 +91885,459.4249999996184,-0.054747538138919936 +91886,459.4299999996184,-0.05474747720940323 +91887,459.4349999996184,-0.054747416277605154 +91888,459.4399999996184,-0.05474735534352556 +91889,459.4449999996184,-0.054747294407164276 +91890,459.4499999996184,-0.05474723346852116 +91891,459.4549999996184,-0.054747172527596054 +91892,459.4599999996184,-0.05474711158438879 +91893,459.4649999996184,-0.054747050638899224 +91894,459.4699999996184,-0.0547469896911272 +91895,459.4749999996184,-0.05474692874107255 +91896,459.47999999961837,-0.05474686778873513 +91897,459.48499999961837,-0.05474680683411479 +91898,459.48999999961836,-0.054746745877211365 +91899,459.49499999961836,-0.0547466849180247 +91900,459.49999999961835,-0.05474662395655463 +91901,459.50499999961835,-0.05474656299280101 +91902,459.50999999961834,-0.05474650202676366 +91903,459.51499999961834,-0.05474644105844247 +91904,459.51999999961834,-0.054746380087837256 +91905,459.52499999961833,-0.05474631911494785 +91906,459.5299999996183,-0.054746258139774115 +91907,459.5349999996183,-0.05474619716231588 +91908,459.5399999996183,-0.05474613618257301 +91909,459.5449999996183,-0.054746075200545335 +91910,459.5499999996183,-0.054746014216232694 +91911,459.5549999996183,-0.054745953229634936 +91912,459.5599999996183,-0.0547458922407519 +91913,459.5649999996183,-0.05474583124958343 +91914,459.5699999996183,-0.054745770256129374 +91915,459.5749999996183,-0.05474570926038959 +91916,459.5799999996183,-0.0547456482623639 +91917,459.5849999996183,-0.054745587262052156 +91918,459.58999999961827,-0.05474552625945418 +91919,459.59499999961827,-0.05474546525456984 +91920,459.59999999961826,-0.05474540424739897 +91921,459.60499999961826,-0.05474534323794141 +91922,459.60999999961825,-0.05474528222619702 +91923,459.61499999961825,-0.054745221212165636 +91924,459.61999999961824,-0.05474516019584709 +91925,459.62499999961824,-0.05474509917724125 +91926,459.62999999961824,-0.05474503815634792 +91927,459.63499999961823,-0.05474497713316697 +91928,459.6399999996182,-0.054744916107698244 +91929,459.6449999996182,-0.054744855079941576 +91930,459.6499999996182,-0.054744794049896815 +91931,459.6549999996182,-0.05474473301756379 +91932,459.6599999996182,-0.054744671982942354 +91933,459.6649999996182,-0.054744610946032356 +91934,459.6699999996182,-0.054744549906833626 +91935,459.6749999996182,-0.05474448886534602 +91936,459.6799999996182,-0.05474442782156936 +91937,459.6849999996182,-0.054744366775503525 +91938,459.6899999996182,-0.05474430572714833 +91939,459.6949999996182,-0.054744244676503614 +91940,459.69999999961817,-0.054744183623569226 +91941,459.70499999961817,-0.05474412256834502 +91942,459.70999999961816,-0.05474406151083083 +91943,459.71499999961816,-0.05474400045102651 +91944,459.71999999961815,-0.05474393938893188 +91945,459.72499999961815,-0.0547438783245468 +91946,459.72999999961814,-0.0547438172578711 +91947,459.73499999961814,-0.054743756188904626 +91948,459.73999999961814,-0.054743695117647234 +91949,459.74499999961813,-0.05474363404409876 +91950,459.7499999996181,-0.05474357296825903 +91951,459.7549999996181,-0.054743511890127904 +91952,459.7599999996181,-0.054743450809705226 +91953,459.7649999996181,-0.05474338972699081 +91954,459.7699999996181,-0.054743328641984536 +91955,459.7749999996181,-0.054743267554686226 +91956,459.7799999996181,-0.05474320646509573 +91957,459.7849999996181,-0.054743145373212884 +91958,459.7899999996181,-0.054743084279037534 +91959,459.7949999996181,-0.05474302318256952 +91960,459.7999999996181,-0.05474296208380868 +91961,459.8049999996181,-0.05474290098275486 +91962,459.80999999961807,-0.05474283987940791 +91963,459.81499999961807,-0.05474277877376767 +91964,459.81999999961806,-0.05474271766583397 +91965,459.82499999961806,-0.05474265655560666 +91966,459.82999999961805,-0.05474259544308558 +91967,459.83499999961805,-0.054742534328270566 +91968,459.83999999961804,-0.05474247321116147 +91969,459.84499999961804,-0.054742412091758126 +91970,459.84999999961803,-0.05474235097006039 +91971,459.85499999961803,-0.05474228984606809 +91972,459.859999999618,-0.05474222871978107 +91973,459.864999999618,-0.05474216759119918 +91974,459.869999999618,-0.05474210646032225 +91975,459.874999999618,-0.05474204532715012 +91976,459.879999999618,-0.05474198419168265 +91977,459.884999999618,-0.054741923053919665 +91978,459.889999999618,-0.05474186191386102 +91979,459.894999999618,-0.05474180077150653 +91980,459.899999999618,-0.05474173962685607 +91981,459.904999999618,-0.05474167847990947 +91982,459.909999999618,-0.054741617330666556 +91983,459.914999999618,-0.05474155617912719 +91984,459.91999999961797,-0.0547414950252912 +91985,459.92499999961797,-0.05474143386915843 +91986,459.92999999961796,-0.05474137271072873 +91987,459.93499999961796,-0.05474131155000193 +91988,459.93999999961795,-0.05474125038697787 +91989,459.94499999961795,-0.0547411892216564 +91990,459.94999999961794,-0.054741128054037365 +91991,459.95499999961794,-0.05474106688412059 +91992,459.95999999961793,-0.054741005711905925 +91993,459.96499999961793,-0.05474094453739322 +91994,459.9699999996179,-0.054740883360582304 +91995,459.9749999996179,-0.054740822181473026 +91996,459.9799999996179,-0.05474076100006522 +91997,459.9849999996179,-0.05474069981635873 +91998,459.9899999996179,-0.0547406386303534 +91999,459.9949999996179,-0.054740577442049076 +92000,459.9999999996179,-0.05474051625144558 +92001,460.0049999996179,-0.05474045505854277 +92002,460.0099999996179,-0.054740393863340474 +92003,460.0149999996179,-0.05474033266583854 +92004,460.0199999996179,-0.05474027146603682 +92005,460.0249999996179,-0.05474021026393514 +92006,460.02999999961787,-0.05474014905953334 +92007,460.03499999961787,-0.054740087852831264 +92008,460.03999999961786,-0.05474002664382876 +92009,460.04499999961786,-0.05473996543252565 +92010,460.04999999961785,-0.054739904218921796 +92011,460.05499999961785,-0.05473984300301703 +92012,460.05999999961784,-0.05473978178481119 +92013,460.06499999961784,-0.05473972056430412 +92014,460.06999999961783,-0.05473965934149567 +92015,460.07499999961783,-0.054739598116385665 +92016,460.0799999996178,-0.05473953688897395 +92017,460.0849999996178,-0.05473947565926035 +92018,460.0899999996178,-0.05473941442724474 +92019,460.0949999996178,-0.05473935319292694 +92020,460.0999999996178,-0.054739291956306786 +92021,460.1049999996178,-0.05473923071738413 +92022,460.1099999996178,-0.05473916947615881 +92023,460.1149999996178,-0.05473910823263066 +92024,460.1199999996178,-0.054739046986799524 +92025,460.1249999996178,-0.05473898573866524 +92026,460.1299999996178,-0.05473892448822764 +92027,460.1349999996178,-0.05473886323548658 +92028,460.13999999961777,-0.05473880198044189 +92029,460.14499999961777,-0.054738740723093426 +92030,460.14999999961776,-0.05473867946344102 +92031,460.15499999961776,-0.0547386182014845 +92032,460.15999999961775,-0.05473855693722371 +92033,460.16499999961775,-0.05473849567065849 +92034,460.16999999961774,-0.054738434401788695 +92035,460.17499999961774,-0.05473837313061415 +92036,460.17999999961773,-0.05473831185713471 +92037,460.18499999961773,-0.054738250581350185 +92038,460.1899999996177,-0.054738189303260444 +92039,460.1949999996177,-0.05473812802286531 +92040,460.1999999996177,-0.05473806674016464 +92041,460.2049999996177,-0.05473800545515826 +92042,460.2099999996177,-0.05473794416784601 +92043,460.2149999996177,-0.054737882878227735 +92044,460.2199999996177,-0.05473782158630327 +92045,460.2249999996177,-0.05473776029207245 +92046,460.2299999996177,-0.05473769899553513 +92047,460.2349999996177,-0.05473763769669114 +92048,460.2399999996177,-0.05473757639554032 +92049,460.2449999996177,-0.0547375150920825 +92050,460.24999999961767,-0.054737453786317544 +92051,460.25499999961767,-0.05473739247824527 +92052,460.25999999961766,-0.054737331167865534 +92053,460.26499999961766,-0.054737269855178156 +92054,460.26999999961765,-0.05473720854018299 +92055,460.27499999961765,-0.05473714722287987 +92056,460.27999999961764,-0.05473708590326864 +92057,460.28499999961764,-0.05473702458134913 +92058,460.28999999961763,-0.05473696325712119 +92059,460.29499999961763,-0.05473690193058465 +92060,460.2999999996176,-0.05473684060173935 +92061,460.3049999996176,-0.05473677927058513 +92062,460.3099999996176,-0.05473671793712184 +92063,460.3149999996176,-0.05473665660134931 +92064,460.3199999996176,-0.05473659526326738 +92065,460.3249999996176,-0.05473653392287588 +92066,460.3299999996176,-0.05473647258017467 +92067,460.3349999996176,-0.05473641123516356 +92068,460.3399999996176,-0.05473634988784241 +92069,460.3449999996176,-0.05473628853821106 +92070,460.3499999996176,-0.05473622718626933 +92071,460.3549999996176,-0.054736165832017084 +92072,460.35999999961757,-0.05473610447545414 +92073,460.36499999961757,-0.05473604311658035 +92074,460.36999999961756,-0.05473598175539554 +92075,460.37499999961756,-0.05473592039189957 +92076,460.37999999961755,-0.05473585902609226 +92077,460.38499999961755,-0.05473579765797345 +92078,460.38999999961754,-0.05473573628754299 +92079,460.39499999961754,-0.05473567491480071 +92080,460.39999999961753,-0.05473561353974645 +92081,460.40499999961753,-0.05473555216238006 +92082,460.4099999996175,-0.05473549078270136 +92083,460.4149999996175,-0.0547354294007102 +92084,460.4199999996175,-0.05473536801640641 +92085,460.4249999996175,-0.054735306629789836 +92086,460.4299999996175,-0.05473524524086031 +92087,460.4349999996175,-0.05473518384961767 +92088,460.4399999996175,-0.05473512245606176 +92089,460.4449999996175,-0.05473506106019242 +92090,460.4499999996175,-0.05473499966200949 +92091,460.4549999996175,-0.054734938261512794 +92092,460.4599999996175,-0.05473487685870218 +92093,460.4649999996175,-0.05473481545357748 +92094,460.46999999961747,-0.05473475404613855 +92095,460.47499999961747,-0.0547346926363852 +92096,460.47999999961746,-0.0547346312243173 +92097,460.48499999961746,-0.05473456980993466 +92098,460.48999999961745,-0.054734508393237125 +92099,460.49499999961745,-0.05473444697422454 +92100,460.49999999961744,-0.05473438555289674 +92101,460.50499999961744,-0.05473432412925357 +92102,460.50999999961743,-0.05473426270329486 +92103,460.51499999961743,-0.054734201275020454 +92104,460.5199999996174,-0.05473413984443017 +92105,460.5249999996174,-0.05473407841152388 +92106,460.5299999996174,-0.054734016976301404 +92107,460.5349999996174,-0.05473395553876257 +92108,460.5399999996174,-0.05473389409890723 +92109,460.5449999996174,-0.054733832656735204 +92110,460.5499999996174,-0.05473377121224635 +92111,460.5549999996174,-0.054733709765440494 +92112,460.5599999996174,-0.05473364831631749 +92113,460.5649999996174,-0.05473358686487716 +92114,460.5699999996174,-0.05473352541111933 +92115,460.5749999996174,-0.05473346395504386 +92116,460.57999999961737,-0.05473340249665058 +92117,460.58499999961737,-0.05473334103593933 +92118,460.58999999961736,-0.05473327957290994 +92119,460.59499999961736,-0.05473321810756225 +92120,460.59999999961735,-0.05473315663989609 +92121,460.60499999961735,-0.054733095169911324 +92122,460.60999999961734,-0.05473303369760777 +92123,460.61499999961734,-0.05473297222298525 +92124,460.61999999961733,-0.05473291074604363 +92125,460.62499999961733,-0.054732849266782735 +92126,460.6299999996173,-0.05473278778520241 +92127,460.6349999996173,-0.05473272630130248 +92128,460.6399999996173,-0.054732664815082786 +92129,460.6449999996173,-0.05473260332654317 +92130,460.6499999996173,-0.05473254183568346 +92131,460.6549999996173,-0.05473248034250351 +92132,460.6599999996173,-0.05473241884700313 +92133,460.6649999996173,-0.05473235734918218 +92134,460.6699999996173,-0.054732295849040484 +92135,460.6749999996173,-0.05473223434657788 +92136,460.6799999996173,-0.05473217284179421 +92137,460.6849999996173,-0.054732111334689325 +92138,460.68999999961727,-0.054732049825263036 +92139,460.69499999961727,-0.05473198831351519 +92140,460.69999999961726,-0.05473192679944562 +92141,460.70499999961726,-0.05473186528305416 +92142,460.70999999961725,-0.05473180376434067 +92143,460.71499999961725,-0.054731742243304966 +92144,460.71999999961724,-0.0547316807199469 +92145,460.72499999961724,-0.05473161919426627 +92146,460.72999999961723,-0.05473155766626296 +92147,460.73499999961723,-0.05473149613593678 +92148,460.7399999996172,-0.05473143460328758 +92149,460.7449999996172,-0.054731373068315194 +92150,460.7499999996172,-0.05473131153101944 +92151,460.7549999996172,-0.05473124999140018 +92152,460.7599999996172,-0.054731188449457235 +92153,460.7649999996172,-0.054731126905190434 +92154,460.7699999996172,-0.05473106535859964 +92155,460.7749999996172,-0.05473100380968467 +92156,460.7799999996172,-0.05473094225844535 +92157,460.7849999996172,-0.054730880704881545 +92158,460.7899999996172,-0.05473081914899308 +92159,460.7949999996172,-0.05473075759077978 +92160,460.79999999961717,-0.05473069603024149 +92161,460.80499999961717,-0.05473063446737804 +92162,460.80999999961716,-0.05473057290218928 +92163,460.81499999961716,-0.05473051133467503 +92164,460.81999999961715,-0.05473044976483515 +92165,460.82499999961715,-0.05473038819266944 +92166,460.82999999961714,-0.054730326618177755 +92167,460.83499999961714,-0.05473026504135994 +92168,460.83999999961713,-0.054730203462215826 +92169,460.84499999961713,-0.05473014188074524 +92170,460.8499999996171,-0.054730080296948015 +92171,460.8549999996171,-0.054730018710824 +92172,460.8599999996171,-0.054729957122373024 +92173,460.8649999996171,-0.05472989553159492 +92174,460.8699999996171,-0.054729833938489535 +92175,460.8749999996171,-0.0547297723430567 +92176,460.8799999996171,-0.05472971074529625 +92177,460.8849999996171,-0.05472964914520802 +92178,460.8899999996171,-0.054729587542791835 +92179,460.8949999996171,-0.054729525938047544 +92180,460.8999999996171,-0.054729464330974975 +92181,460.9049999996171,-0.05472940272157398 +92182,460.90999999961707,-0.05472934110984437 +92183,460.91499999961707,-0.05472927949578599 +92184,460.91999999961706,-0.054729217879398676 +92185,460.92499999961706,-0.05472915626068226 +92186,460.92999999961705,-0.054729094639636586 +92187,460.93499999961705,-0.05472903301626148 +92188,460.93999999961704,-0.054728971390556796 +92189,460.94499999961704,-0.05472890976252235 +92190,460.94999999961703,-0.05472884813215798 +92191,460.95499999961703,-0.05472878649946353 +92192,460.959999999617,-0.05472872486443882 +92193,460.964999999617,-0.0547286632270837 +92194,460.969999999617,-0.05472860158739801 +92195,460.974999999617,-0.05472853994538156 +92196,460.979999999617,-0.0547284783010342 +92197,460.984999999617,-0.05472841665435577 +92198,460.989999999617,-0.05472835500534609 +92199,460.994999999617,-0.054728293354005 +92200,460.999999999617,-0.05472823170033236 +92201,461.004999999617,-0.05472817004432797 +92202,461.009999999617,-0.054728108385991674 +92203,461.014999999617,-0.054728046725323325 +92204,461.01999999961697,-0.054727985062322744 +92205,461.02499999961697,-0.054727923396989765 +92206,461.02999999961696,-0.05472786172932422 +92207,461.03499999961696,-0.05472780005932595 +92208,461.03999999961695,-0.054727738386994774 +92209,461.04499999961695,-0.05472767671233055 +92210,461.04999999961694,-0.054727615035333105 +92211,461.05499999961694,-0.05472755335600226 +92212,461.05999999961693,-0.05472749167433787 +92213,461.06499999961693,-0.054727429990339756 +92214,461.0699999996169,-0.054727368304007755 +92215,461.0749999996169,-0.054727306615341705 +92216,461.0799999996169,-0.05472724492434144 +92217,461.0849999996169,-0.05472718323100679 +92218,461.0899999996169,-0.05472712153533759 +92219,461.0949999996169,-0.05472705983733368 +92220,461.0999999996169,-0.054726998136994894 +92221,461.1049999996169,-0.05472693643432106 +92222,461.1099999996169,-0.054726874729312015 +92223,461.1149999996169,-0.05472681302196759 +92224,461.1199999996169,-0.054726751312287616 +92225,461.1249999996169,-0.05472668960027194 +92226,461.12999999961687,-0.05472662788592039 +92227,461.13499999961687,-0.0547265661692328 +92228,461.13999999961686,-0.05472650445020899 +92229,461.14499999961686,-0.05472644272884882 +92230,461.14999999961685,-0.054726381005152105 +92231,461.15499999961685,-0.054726319279118696 +92232,461.15999999961684,-0.05472625755074841 +92233,461.16499999961684,-0.05472619582004109 +92234,461.16999999961683,-0.05472613408699655 +92235,461.17499999961683,-0.05472607235161466 +92236,461.1799999996168,-0.054726010613895225 +92237,461.1849999996168,-0.054725948873838096 +92238,461.1899999996168,-0.054725887131443086 +92239,461.1949999996168,-0.054725825386710045 +92240,461.1999999996168,-0.054725763639638804 +92241,461.2049999996168,-0.05472570189022919 +92242,461.2099999996168,-0.05472564013848104 +92243,461.2149999996168,-0.0547255783843942 +92244,461.2199999996168,-0.05472551662796849 +92245,461.2249999996168,-0.05472545486920374 +92246,461.2299999996168,-0.0547253931080998 +92247,461.2349999996168,-0.054725331344656486 +92248,461.23999999961677,-0.054725269578873637 +92249,461.24499999961677,-0.05472520781075109 +92250,461.24999999961676,-0.05472514604028868 +92251,461.25499999961676,-0.05472508426748624 +92252,461.25999999961675,-0.0547250224923436 +92253,461.26499999961675,-0.05472496071486059 +92254,461.26999999961674,-0.054724898935037035 +92255,461.27499999961674,-0.05472483715287278 +92256,461.27999999961673,-0.05472477536836766 +92257,461.28499999961673,-0.05472471358152151 +92258,461.2899999996167,-0.054724651792334156 +92259,461.2949999996167,-0.054724590000805436 +92260,461.2999999996167,-0.05472452820693518 +92261,461.3049999996167,-0.05472446641072321 +92262,461.3099999996167,-0.05472440461216938 +92263,461.3149999996167,-0.054724342811273516 +92264,461.3199999996167,-0.05472428100803545 +92265,461.3249999996167,-0.054724219202455 +92266,461.3299999996167,-0.05472415739453203 +92267,461.3349999996167,-0.05472409558426634 +92268,461.3399999996167,-0.05472403377165777 +92269,461.3449999996167,-0.05472397195670617 +92270,461.34999999961667,-0.05472391013941136 +92271,461.35499999961667,-0.05472384831977317 +92272,461.35999999961666,-0.054723786497791437 +92273,461.36499999961666,-0.05472372467346599 +92274,461.36999999961665,-0.05472366284679669 +92275,461.37499999961665,-0.05472360101778333 +92276,461.37999999961664,-0.05472353918642575 +92277,461.38499999961664,-0.05472347735272381 +92278,461.38999999961663,-0.05472341551667731 +92279,461.39499999961663,-0.05472335367828609 +92280,461.3999999996166,-0.054723291837549995 +92281,461.4049999996166,-0.05472322999446884 +92282,461.4099999996166,-0.05472316814904247 +92283,461.4149999996166,-0.0547231063012707 +92284,461.4199999996166,-0.0547230444511534 +92285,461.4249999996166,-0.054722982598690365 +92286,461.4299999996166,-0.054722920743881444 +92287,461.4349999996166,-0.05472285888672647 +92288,461.4399999996166,-0.05472279702722527 +92289,461.4449999996166,-0.05472273516537767 +92290,461.4499999996166,-0.05472267330118351 +92291,461.4549999996166,-0.05472261143464262 +92292,461.45999999961657,-0.054722549565754834 +92293,461.46499999961657,-0.05472248769451998 +92294,461.46999999961656,-0.0547224258209379 +92295,461.47499999961656,-0.054722363945008415 +92296,461.47999999961655,-0.05472230206673134 +92297,461.48499999961655,-0.054722240186106545 +92298,461.48999999961654,-0.05472217830313385 +92299,461.49499999961654,-0.054722116417813056 +92300,461.49999999961653,-0.05472205453014404 +92301,461.50499999961653,-0.0547219926401266 +92302,461.5099999996165,-0.054721930747760585 +92303,461.5149999996165,-0.05472186885304582 +92304,461.5199999996165,-0.05472180695598213 +92305,461.5249999996165,-0.05472174505656936 +92306,461.5299999996165,-0.05472168315480734 +92307,461.5349999996165,-0.05472162125069589 +92308,461.5399999996165,-0.05472155934423485 +92309,461.5449999996165,-0.05472149743542406 +92310,461.5499999996165,-0.054721435524263326 +92311,461.5549999996165,-0.05472137361075251 +92312,461.5599999996165,-0.05472131169489141 +92313,461.5649999996165,-0.05472124977667989 +92314,461.56999999961647,-0.05472118785611775 +92315,461.57499999961647,-0.05472112593320485 +92316,461.57999999961646,-0.054721064007940995 +92317,461.58499999961646,-0.05472100208032605 +92318,461.58999999961645,-0.05472094015035981 +92319,461.59499999961645,-0.054720878218042134 +92320,461.59999999961644,-0.05472081628337283 +92321,461.60499999961644,-0.05472075434635174 +92322,461.60999999961643,-0.0547206924069787 +92323,461.61499999961643,-0.054720630465253536 +92324,461.6199999996164,-0.05472056852117608 +92325,461.6249999996164,-0.054720506574746156 +92326,461.6299999996164,-0.054720444625963593 +92327,461.6349999996164,-0.05472038267482825 +92328,461.6399999996164,-0.05472032072133992 +92329,461.6449999996164,-0.05472025876549846 +92330,461.6499999996164,-0.05472019680730368 +92331,461.6549999996164,-0.054720134846755426 +92332,461.6599999996164,-0.054720072883853534 +92333,461.6649999996164,-0.05472001091859781 +92334,461.6699999996164,-0.0547199489509881 +92335,461.6749999996164,-0.05471988698102425 +92336,461.67999999961637,-0.054719825008706056 +92337,461.68499999961637,-0.05471976303403338 +92338,461.68999999961636,-0.054719701057006034 +92339,461.69499999961636,-0.05471963907762385 +92340,461.69999999961635,-0.054719577095886665 +92341,461.70499999961635,-0.054719515111794306 +92342,461.70999999961634,-0.0547194531253466 +92343,461.71499999961634,-0.054719391136543394 +92344,461.71999999961633,-0.05471932914538449 +92345,461.72499999961633,-0.05471926715186975 +92346,461.7299999996163,-0.054719205155998964 +92347,461.7349999996163,-0.054719143157771995 +92348,461.7399999996163,-0.05471908115718867 +92349,461.7449999996163,-0.054719019154248816 +92350,461.7499999996163,-0.054718957148952245 +92351,461.7549999996163,-0.0547188951412988 +92352,461.7599999996163,-0.05471883313128832 +92353,461.7649999996163,-0.05471877111892063 +92354,461.7699999996163,-0.05471870910419555 +92355,461.7749999996163,-0.05471864708711293 +92356,461.7799999996163,-0.054718585067672576 +92357,461.7849999996163,-0.05471852304587434 +92358,461.78999999961627,-0.054718461021718026 +92359,461.79499999961627,-0.05471839899520349 +92360,461.79999999961626,-0.05471833696633054 +92361,461.80499999961626,-0.054718274935099016 +92362,461.80999999961625,-0.05471821290150875 +92363,461.81499999961625,-0.05471815086555957 +92364,461.81999999961624,-0.05471808882725129 +92365,461.82499999961624,-0.054718026786583766 +92366,461.82999999961623,-0.05471796474355681 +92367,461.83499999961623,-0.05471790269817025 +92368,461.8399999996162,-0.05471784065042394 +92369,461.8449999996162,-0.05471777860031767 +92370,461.8499999996162,-0.05471771654785131 +92371,461.8549999996162,-0.05471765449302467 +92372,461.8599999996162,-0.05471759243583758 +92373,461.8649999996162,-0.05471753037628986 +92374,461.8699999996162,-0.05471746831438134 +92375,461.8749999996162,-0.054717406250111865 +92376,461.8799999996162,-0.054717344183481245 +92377,461.8849999996162,-0.05471728211448932 +92378,461.8899999996162,-0.05471722004313592 +92379,461.8949999996162,-0.054717157969420886 +92380,461.89999999961617,-0.054717095893344024 +92381,461.90499999961617,-0.05471703381490518 +92382,461.90999999961616,-0.054716971734104176 +92383,461.91499999961616,-0.05471690965094084 +92384,461.91999999961615,-0.054716847565415 +92385,461.92499999961615,-0.054716785477526474 +92386,461.92999999961614,-0.05471672338727511 +92387,461.93499999961614,-0.05471666129466074 +92388,461.93999999961613,-0.05471659919968318 +92389,461.94499999961613,-0.05471653710234225 +92390,461.9499999996161,-0.05471647500263779 +92391,461.9549999996161,-0.05471641290056964 +92392,461.9599999996161,-0.054716350796137604 +92393,461.9649999996161,-0.05471628868934154 +92394,461.9699999996161,-0.05471622658018126 +92395,461.9749999996161,-0.05471616446865659 +92396,461.9799999996161,-0.05471610235476736 +92397,461.9849999996161,-0.05471604023851339 +92398,461.9899999996161,-0.054715978119894516 +92399,461.9949999996161,-0.054715915998910576 +92400,461.9999999996161,-0.054715853875561396 +92401,462.0049999996161,-0.05471579174984679 +92402,462.00999999961607,-0.0547157296217666 +92403,462.01499999961607,-0.054715667491320646 +92404,462.01999999961606,-0.05471560535850876 +92405,462.02499999961606,-0.05471554322333077 +92406,462.02999999961605,-0.054715481085786506 +92407,462.03499999961605,-0.054715418945875796 +92408,462.03999999961604,-0.05471535680359847 +92409,462.04499999961604,-0.05471529465895433 +92410,462.04999999961603,-0.05471523251194324 +92411,462.05499999961603,-0.05471517036256502 +92412,462.059999999616,-0.05471510821081948 +92413,462.064999999616,-0.054715046056706455 +92414,462.069999999616,-0.05471498390022579 +92415,462.074999999616,-0.0547149217413773 +92416,462.079999999616,-0.054714859580160806 +92417,462.084999999616,-0.05471479741657615 +92418,462.089999999616,-0.054714735250623134 +92419,462.094999999616,-0.054714673082301615 +92420,462.099999999616,-0.054714610911611415 +92421,462.104999999616,-0.05471454873855235 +92422,462.109999999616,-0.054714486563124255 +92423,462.114999999616,-0.05471442438532695 +92424,462.11999999961597,-0.05471436220516027 +92425,462.12499999961597,-0.05471430002262405 +92426,462.12999999961596,-0.0547142378377181 +92427,462.13499999961596,-0.05471417565044226 +92428,462.13999999961595,-0.054714113460796354 +92429,462.14499999961595,-0.05471405126878021 +92430,462.14999999961594,-0.054713989074393655 +92431,462.15499999961594,-0.05471392687763651 +92432,462.15999999961593,-0.05471386467850862 +92433,462.16499999961593,-0.05471380247700978 +92434,462.1699999996159,-0.05471374027313985 +92435,462.1749999996159,-0.05471367806689864 +92436,462.1799999996159,-0.05471361585828598 +92437,462.1849999996159,-0.054713553647301696 +92438,462.1899999996159,-0.05471349143394562 +92439,462.1949999996159,-0.05471342921821757 +92440,462.1999999996159,-0.05471336700011739 +92441,462.2049999996159,-0.05471330477964489 +92442,462.2099999996159,-0.0547132425567999 +92443,462.2149999996159,-0.054713180331582255 +92444,462.2199999996159,-0.054713118103991765 +92445,462.2249999996159,-0.05471305587402827 +92446,462.22999999961587,-0.0547129936416916 +92447,462.23499999961587,-0.054712931406981566 +92448,462.23999999961586,-0.05471286916989802 +92449,462.24499999961586,-0.05471280693044076 +92450,462.24999999961585,-0.054712744688609635 +92451,462.25499999961585,-0.05471268244440445 +92452,462.25999999961584,-0.054712620197825045 +92453,462.26499999961584,-0.054712557948871254 +92454,462.26999999961583,-0.05471249569754289 +92455,462.27499999961583,-0.05471243344383979 +92456,462.2799999996158,-0.05471237118776176 +92457,462.2849999996158,-0.05471230892930865 +92458,462.2899999996158,-0.05471224666848028 +92459,462.2949999996158,-0.054712184405276476 +92460,462.2999999996158,-0.05471212213969706 +92461,462.3049999996158,-0.05471205987174186 +92462,462.3099999996158,-0.054711997601410704 +92463,462.3149999996158,-0.05471193532870341 +92464,462.3199999996158,-0.05471187305361981 +92465,462.3249999996158,-0.05471181077615974 +92466,462.3299999996158,-0.054711748496323015 +92467,462.3349999996158,-0.05471168621410945 +92468,462.33999999961577,-0.05471162392951889 +92469,462.34499999961577,-0.054711561642551164 +92470,462.34999999961576,-0.05471149935320608 +92471,462.35499999961576,-0.05471143706148348 +92472,462.35999999961575,-0.05471137476738318 +92473,462.36499999961575,-0.054711312470905 +92474,462.36999999961574,-0.05471125017204878 +92475,462.37499999961574,-0.05471118787081433 +92476,462.37999999961573,-0.05471112556720149 +92477,462.38499999961573,-0.054711063261210086 +92478,462.3899999996157,-0.05471100095283993 +92479,462.3949999996157,-0.05471093864209085 +92480,462.3999999996157,-0.05471087632896268 +92481,462.4049999996157,-0.05471081401345525 +92482,462.4099999996157,-0.054710751695568376 +92483,462.4149999996157,-0.05471068937530189 +92484,462.4199999996157,-0.0547106270526556 +92485,462.4249999996157,-0.05471056472762935 +92486,462.4299999996157,-0.05471050240022297 +92487,462.4349999996157,-0.05471044007043627 +92488,462.4399999996157,-0.054710377738269075 +92489,462.4449999996157,-0.05471031540372121 +92490,462.44999999961567,-0.054710253066792516 +92491,462.45499999961567,-0.05471019072748281 +92492,462.45999999961566,-0.0547101283857919 +92493,462.46499999961566,-0.05471006604171964 +92494,462.46999999961565,-0.05471000369526584 +92495,462.47499999961565,-0.05470994134643031 +92496,462.47999999961564,-0.0547098789952129 +92497,462.48499999961564,-0.05470981664161343 +92498,462.48999999961563,-0.05470975428563172 +92499,462.49499999961563,-0.05470969192726759 +92500,462.4999999996156,-0.05470962956652086 +92501,462.5049999996156,-0.054709567203391374 +92502,462.5099999996156,-0.05470950483787895 +92503,462.5149999996156,-0.05470944246998342 +92504,462.5199999996156,-0.05470938009970459 +92505,462.5249999996156,-0.05470931772704229 +92506,462.5299999996156,-0.05470925535199635 +92507,462.5349999996156,-0.05470919297456659 +92508,462.5399999996156,-0.05470913059475285 +92509,462.5449999996156,-0.05470906821255494 +92510,462.5499999996156,-0.054709005827972675 +92511,462.5549999996156,-0.0547089434410059 +92512,462.55999999961557,-0.05470888105165443 +92513,462.56499999961557,-0.05470881865991808 +92514,462.56999999961556,-0.054708756265796694 +92515,462.57499999961556,-0.05470869386929009 +92516,462.57999999961555,-0.054708631470398075 +92517,462.58499999961555,-0.054708569069120486 +92518,462.58999999961554,-0.05470850666545715 +92519,462.59499999961554,-0.0547084442594079 +92520,462.59999999961553,-0.05470838185097254 +92521,462.60499999961553,-0.0547083194401509 +92522,462.6099999996155,-0.05470825702694282 +92523,462.6149999996155,-0.054708194611348106 +92524,462.6199999996155,-0.05470813219336658 +92525,462.6249999996155,-0.05470806977299807 +92526,462.6299999996155,-0.054708007350242414 +92527,462.6349999996155,-0.054707944925099415 +92528,462.6399999996155,-0.0547078824975689 +92529,462.6449999996155,-0.054707820067650716 +92530,462.6499999996155,-0.05470775763534466 +92531,462.6549999996155,-0.05470769520065058 +92532,462.6599999996155,-0.05470763276356827 +92533,462.6649999996155,-0.05470757032409757 +92534,462.66999999961547,-0.05470750788223832 +92535,462.67499999961547,-0.05470744543799032 +92536,462.67999999961546,-0.05470738299135339 +92537,462.68499999961546,-0.05470732054232737 +92538,462.68999999961545,-0.054707258090912064 +92539,462.69499999961545,-0.05470719563710732 +92540,462.69999999961544,-0.05470713318091295 +92541,462.70499999961544,-0.054707070722328784 +92542,462.70999999961543,-0.054707008261354634 +92543,462.71499999961543,-0.05470694579799031 +92544,462.7199999996154,-0.05470688333223566 +92545,462.7249999996154,-0.054706820864090504 +92546,462.7299999996154,-0.05470675839355467 +92547,462.7349999996154,-0.05470669592062797 +92548,462.7399999996154,-0.05470663344531022 +92549,462.7449999996154,-0.05470657096760125 +92550,462.7499999996154,-0.0547065084875009 +92551,462.7549999996154,-0.05470644600500897 +92552,462.7599999996154,-0.05470638352012529 +92553,462.7649999996154,-0.05470632103284969 +92554,462.7699999996154,-0.05470625854318197 +92555,462.7749999996154,-0.054706196051121994 +92556,462.77999999961537,-0.05470613355666954 +92557,462.78499999961537,-0.05470607105982447 +92558,462.78999999961536,-0.05470600856058657 +92559,462.79499999961536,-0.05470594605895569 +92560,462.79999999961535,-0.054705883554931646 +92561,462.80499999961535,-0.05470582104851426 +92562,462.80999999961534,-0.05470575853970334 +92563,462.81499999961534,-0.054705696028498736 +92564,462.81999999961533,-0.054705633514900244 +92565,462.82499999961533,-0.0547055709989077 +92566,462.8299999996153,-0.054705508480520935 +92567,462.8349999996153,-0.05470544595973975 +92568,462.8399999996153,-0.054705383436563976 +92569,462.8449999996153,-0.05470532091099345 +92570,462.8499999996153,-0.054705258383027984 +92571,462.8549999996153,-0.054705195852667386 +92572,462.8599999996153,-0.054705133319911496 +92573,462.8649999996153,-0.054705070784760126 +92574,462.8699999996153,-0.054705008247213104 +92575,462.8749999996153,-0.054704945707270254 +92576,462.8799999996153,-0.054704883164931405 +92577,462.8849999996153,-0.05470482062019636 +92578,462.88999999961527,-0.054704758073064956 +92579,462.89499999961527,-0.054704695523536996 +92580,462.89999999961526,-0.05470463297161233 +92581,462.90499999961526,-0.05470457041729075 +92582,462.90999999961525,-0.054704507860572106 +92583,462.91499999961525,-0.054704445301456205 +92584,462.91999999961524,-0.05470438273994286 +92585,462.92499999961524,-0.05470432017603191 +92586,462.92999999961523,-0.054704257609723174 +92587,462.93499999961523,-0.054704195041016465 +92588,462.9399999996152,-0.05470413246991161 +92589,462.9449999996152,-0.05470406989640843 +92590,462.9499999996152,-0.054704007320506745 +92591,462.9549999996152,-0.05470394474220638 +92592,462.9599999996152,-0.05470388216150716 +92593,462.9649999996152,-0.054703819578408884 +92594,462.9699999996152,-0.0547037569929114 +92595,462.9749999996152,-0.05470369440501452 +92596,462.9799999996152,-0.054703631814718066 +92597,462.9849999996152,-0.05470356922202185 +92598,462.9899999996152,-0.05470350662692572 +92599,462.9949999996152,-0.05470344402942946 +92600,462.99999999961517,-0.054703381429532925 +92601,463.00499999961517,-0.05470331882723592 +92602,463.00999999961516,-0.05470325622253826 +92603,463.01499999961516,-0.05470319361543977 +92604,463.01999999961515,-0.05470313100594028 +92605,463.02499999961515,-0.05470306839403961 +92606,463.02999999961514,-0.054703005779737565 +92607,463.03499999961514,-0.05470294316303398 +92608,463.03999999961513,-0.054702880543928675 +92609,463.04499999961513,-0.05470281792242146 +92610,463.0499999996151,-0.05470275529851217 +92611,463.0549999996151,-0.054702692672200626 +92612,463.0599999996151,-0.05470263004348664 +92613,463.0649999996151,-0.05470256741237003 +92614,463.0699999996151,-0.05470250477885063 +92615,463.0749999996151,-0.05470244214292825 +92616,463.0799999996151,-0.054702379504602716 +92617,463.0849999996151,-0.05470231686387385 +92618,463.0899999996151,-0.054702254220741466 +92619,463.0949999996151,-0.054702191575205394 +92620,463.0999999996151,-0.054702128927265434 +92621,463.1049999996151,-0.05470206627692143 +92622,463.10999999961507,-0.05470200362417319 +92623,463.11499999961507,-0.05470194096902054 +92624,463.11999999961506,-0.05470187831146329 +92625,463.12499999961506,-0.05470181565150128 +92626,463.12999999961505,-0.05470175298913431 +92627,463.13499999961505,-0.05470169032436221 +92628,463.13999999961504,-0.05470162765718479 +92629,463.14499999961504,-0.05470156498760188 +92630,463.14999999961503,-0.05470150231561331 +92631,463.15499999961503,-0.05470143964121888 +92632,463.159999999615,-0.05470137696441843 +92633,463.164999999615,-0.054701314285211765 +92634,463.169999999615,-0.054701251603598705 +92635,463.174999999615,-0.05470118891957907 +92636,463.179999999615,-0.05470112623315268 +92637,463.184999999615,-0.054701063544319355 +92638,463.189999999615,-0.05470100085307893 +92639,463.194999999615,-0.0547009381594312 +92640,463.199999999615,-0.05470087546337601 +92641,463.204999999615,-0.054700812764913155 +92642,463.209999999615,-0.054700750064042465 +92643,463.214999999615,-0.054700687360763764 +92644,463.21999999961497,-0.05470062465507688 +92645,463.22499999961497,-0.054700561946981606 +92646,463.22999999961496,-0.05470049923647778 +92647,463.23499999961496,-0.05470043652356523 +92648,463.23999999961495,-0.05470037380824375 +92649,463.24499999961495,-0.05470031109051318 +92650,463.24999999961494,-0.05470024837037333 +92651,463.25499999961494,-0.05470018564782403 +92652,463.25999999961493,-0.05470012292286508 +92653,463.26499999961493,-0.05470006019549631 +92654,463.2699999996149,-0.05469999746571755 +92655,463.2749999996149,-0.0546999347335286 +92656,463.2799999996149,-0.054699871998929284 +92657,463.2849999996149,-0.054699809261919426 +92658,463.2899999996149,-0.05469974652249884 +92659,463.2949999996149,-0.054699683780667356 +92660,463.2999999996149,-0.05469962103642479 +92661,463.3049999996149,-0.05469955828977095 +92662,463.3099999996149,-0.054699495540705655 +92663,463.3149999996149,-0.05469943278922874 +92664,463.3199999996149,-0.05469937003534001 +92665,463.3249999996149,-0.05469930727903929 +92666,463.32999999961487,-0.05469924452032639 +92667,463.33499999961487,-0.05469918175920114 +92668,463.33999999961486,-0.054699118995663355 +92669,463.34499999961486,-0.054699056229712856 +92670,463.34999999961485,-0.054698993461349446 +92671,463.35499999961485,-0.05469893069057295 +92672,463.35999999961484,-0.054698867917383195 +92673,463.36499999961484,-0.05469880514178 +92674,463.36999999961483,-0.05469874236376319 +92675,463.37499999961483,-0.05469867958333256 +92676,463.3799999996148,-0.05469861680048795 +92677,463.3849999996148,-0.05469855401522916 +92678,463.3899999996148,-0.05469849122755603 +92679,463.3949999996148,-0.05469842843746837 +92680,463.3999999996148,-0.054698365644965975 +92681,463.4049999996148,-0.054698302850048695 +92682,463.4099999996148,-0.05469824005271633 +92683,463.4149999996148,-0.05469817725296871 +92684,463.4199999996148,-0.054698114450805635 +92685,463.4249999996148,-0.054698051646226944 +92686,463.4299999996148,-0.054697988839232436 +92687,463.4349999996148,-0.054697926029821944 +92688,463.43999999961477,-0.05469786321799528 +92689,463.44499999961477,-0.05469780040375227 +92690,463.44999999961476,-0.05469773758709272 +92691,463.45499999961476,-0.054697674768016444 +92692,463.45999999961475,-0.05469761194652327 +92693,463.46499999961475,-0.054697549122613015 +92694,463.46999999961474,-0.05469748629628549 +92695,463.47499999961474,-0.05469742346754053 +92696,463.47999999961473,-0.05469736063637794 +92697,463.48499999961473,-0.054697297802797536 +92698,463.4899999996147,-0.05469723496679913 +92699,463.4949999996147,-0.05469717212838255 +92700,463.4999999996147,-0.054697109287547604 +92701,463.5049999996147,-0.05469704644429413 +92702,463.5099999996147,-0.05469698359862193 +92703,463.5149999996147,-0.05469692075053081 +92704,463.5199999996147,-0.0546968579000206 +92705,463.5249999996147,-0.05469679504709113 +92706,463.5299999996147,-0.0546967321917422 +92707,463.5349999996147,-0.05469666933397363 +92708,463.5399999996147,-0.05469660647378524 +92709,463.5449999996147,-0.05469654361117684 +92710,463.54999999961467,-0.05469648074614825 +92711,463.55499999961467,-0.05469641787869929 +92712,463.55999999961466,-0.054696355008829786 +92713,463.56499999961466,-0.054696292136539544 +92714,463.56999999961465,-0.054696229261828364 +92715,463.57499999961465,-0.0546961663846961 +92716,463.57999999961464,-0.05469610350514255 +92717,463.58499999961464,-0.05469604062316752 +92718,463.58999999961463,-0.054695977738770836 +92719,463.59499999961463,-0.054695914851952326 +92720,463.5999999996146,-0.05469585196271179 +92721,463.6049999996146,-0.05469578907104905 +92722,463.6099999996146,-0.05469572617696393 +92723,463.6149999996146,-0.05469566328045623 +92724,463.6199999996146,-0.05469560038152578 +92725,463.6249999996146,-0.05469553748017239 +92726,463.6299999996146,-0.05469547457639588 +92727,463.6349999996146,-0.05469541167019608 +92728,463.6399999996146,-0.05469534876157279 +92729,463.6449999996146,-0.05469528585052582 +92730,463.6499999996146,-0.05469522293705499 +92731,463.6549999996146,-0.054695160021160136 +92732,463.65999999961457,-0.054695097102841046 +92733,463.66499999961457,-0.054695034182097556 +92734,463.66999999961456,-0.054694971258929484 +92735,463.67499999961456,-0.05469490833333663 +92736,463.67999999961455,-0.05469484540531882 +92737,463.68499999961455,-0.054694782474875865 +92738,463.68999999961454,-0.054694719542007594 +92739,463.69499999961454,-0.054694656606713805 +92740,463.69999999961453,-0.05469459366899432 +92741,463.70499999961453,-0.05469453072884896 +92742,463.7099999996145,-0.054694467786277526 +92743,463.7149999996145,-0.05469440484127986 +92744,463.7199999996145,-0.05469434189385577 +92745,463.7249999996145,-0.05469427894400505 +92746,463.7299999996145,-0.05469421599172753 +92747,463.7349999996145,-0.05469415303702303 +92748,463.7399999996145,-0.05469409007989135 +92749,463.7449999996145,-0.05469402712033233 +92750,463.7499999996145,-0.054693964158345765 +92751,463.7549999996145,-0.054693901193931485 +92752,463.7599999996145,-0.054693838227089286 +92753,463.7649999996145,-0.054693775257819 +92754,463.76999999961447,-0.054693712286120445 +92755,463.77499999961447,-0.05469364931199343 +92756,463.77999999961446,-0.054693586335437756 +92757,463.78499999961446,-0.05469352335645326 +92758,463.78999999961445,-0.05469346037503975 +92759,463.79499999961445,-0.05469339739119704 +92760,463.79999999961444,-0.054693334404924944 +92761,463.80499999961444,-0.05469327141622327 +92762,463.80999999961443,-0.05469320842509186 +92763,463.81499999961443,-0.0546931454315305 +92764,463.8199999996144,-0.05469308243553901 +92765,463.8249999996144,-0.05469301943711721 +92766,463.8299999996144,-0.05469295643626492 +92767,463.8349999996144,-0.05469289343298195 +92768,463.8399999996144,-0.05469283042726812 +92769,463.8449999996144,-0.05469276741912323 +92770,463.8499999996144,-0.0546927044085471 +92771,463.8549999996144,-0.05469264139553955 +92772,463.8599999996144,-0.0546925783801004 +92773,463.8649999996144,-0.05469251536222946 +92774,463.8699999996144,-0.05469245234192654 +92775,463.8749999996144,-0.054692389319191466 +92776,463.87999999961437,-0.05469232629402403 +92777,463.88499999961437,-0.05469226326642407 +92778,463.88999999961436,-0.05469220023639139 +92779,463.89499999961436,-0.054692137203925795 +92780,463.89999999961435,-0.05469207416902711 +92781,463.90499999961435,-0.054692011131695153 +92782,463.90999999961434,-0.05469194809192973 +92783,463.91499999961434,-0.05469188504973066 +92784,463.91999999961433,-0.054691822005097764 +92785,463.92499999961433,-0.05469175895803085 +92786,463.9299999996143,-0.05469169590852971 +92787,463.9349999996143,-0.05469163285659418 +92788,463.9399999996143,-0.05469156980222408 +92789,463.9449999996143,-0.05469150674541922 +92790,463.9499999996143,-0.05469144368617941 +92791,463.9549999996143,-0.05469138062450446 +92792,463.9599999996143,-0.0546913175603942 +92793,463.9649999996143,-0.05469125449384842 +92794,463.9699999996143,-0.05469119142486695 +92795,463.9749999996143,-0.05469112835344959 +92796,463.9799999996143,-0.05469106527959616 +92797,463.9849999996143,-0.054691002203306485 +92798,463.98999999961427,-0.05469093912458037 +92799,463.99499999961427,-0.054690876043417616 +92800,463.99999999961426,-0.054690812959818064 +92801,464.00499999961426,-0.0546907498737815 +92802,464.00999999961425,-0.054690686785307766 +92803,464.01499999961425,-0.05469062369439665 +92804,464.01999999961424,-0.05469056060104798 +92805,464.02499999961424,-0.05469049750526156 +92806,464.02999999961423,-0.054690434407037206 +92807,464.03499999961423,-0.05469037130637473 +92808,464.0399999996142,-0.05469030820327396 +92809,464.0449999996142,-0.05469024509773469 +92810,464.0499999996142,-0.05469018198975674 +92811,464.0549999996142,-0.05469011887933992 +92812,464.0599999996142,-0.05469005576648405 +92813,464.0649999996142,-0.05468999265118893 +92814,464.0699999996142,-0.05468992953345439 +92815,464.0749999996142,-0.054689866413280226 +92816,464.0799999996142,-0.05468980329066628 +92817,464.0849999996142,-0.05468974016561234 +92818,464.0899999996142,-0.05468967703811821 +92819,464.0949999996142,-0.05468961390818372 +92820,464.09999999961417,-0.054689550775808685 +92821,464.10499999961417,-0.054689487640992906 +92822,464.10999999961416,-0.054689424503736206 +92823,464.11499999961416,-0.05468936136403839 +92824,464.11999999961415,-0.05468929822189928 +92825,464.12499999961415,-0.054689235077318675 +92826,464.12999999961414,-0.0546891719302964 +92827,464.13499999961414,-0.05468910878083226 +92828,464.13999999961413,-0.05468904562892607 +92829,464.14499999961413,-0.054688982474577645 +92830,464.1499999996141,-0.054688919317786786 +92831,464.1549999996141,-0.05468885615855331 +92832,464.1599999996141,-0.05468879299687704 +92833,464.1649999996141,-0.054688729832757785 +92834,464.1699999996141,-0.054688666666195346 +92835,464.1749999996141,-0.05468860349718955 +92836,464.1799999996141,-0.05468854032574019 +92837,464.1849999996141,-0.0546884771518471 +92838,464.1899999996141,-0.054688413975510074 +92839,464.1949999996141,-0.05468835079672893 +92840,464.1999999996141,-0.054688287615503484 +92841,464.2049999996141,-0.05468822443183355 +92842,464.20999999961407,-0.05468816124571893 +92843,464.21499999961407,-0.054688098057159434 +92844,464.21999999961406,-0.054688034866154894 +92845,464.22499999961406,-0.0546879716727051 +92846,464.22999999961405,-0.054687908476809884 +92847,464.23499999961405,-0.05468784527846903 +92848,464.23999999961404,-0.05468778207768237 +92849,464.24499999961404,-0.05468771887444972 +92850,464.24999999961403,-0.054687655668770874 +92851,464.25499999961403,-0.05468759246064565 +92852,464.259999999614,-0.05468752925007386 +92853,464.264999999614,-0.054687466037055314 +92854,464.269999999614,-0.05468740282158983 +92855,464.274999999614,-0.05468733960367722 +92856,464.279999999614,-0.05468727638331728 +92857,464.284999999614,-0.05468721316050984 +92858,464.289999999614,-0.05468714993525471 +92859,464.294999999614,-0.05468708670755169 +92860,464.299999999614,-0.054687023477400586 +92861,464.304999999614,-0.05468696024480123 +92862,464.309999999614,-0.05468689700975341 +92863,464.314999999614,-0.05468683377225695 +92864,464.31999999961397,-0.054686770532311656 +92865,464.32499999961396,-0.054686707289917355 +92866,464.32999999961396,-0.05468664404507383 +92867,464.33499999961396,-0.05468658079778092 +92868,464.33999999961395,-0.054686517548038424 +92869,464.34499999961395,-0.05468645429584615 +92870,464.34999999961394,-0.05468639104120391 +92871,464.35499999961394,-0.0546863277841115 +92872,464.35999999961393,-0.054686264524568755 +92873,464.36499999961393,-0.05468620126257548 +92874,464.3699999996139,-0.05468613799813147 +92875,464.3749999996139,-0.05468607473123656 +92876,464.3799999996139,-0.054686011461890546 +92877,464.3849999996139,-0.05468594819009323 +92878,464.3899999996139,-0.05468588491584444 +92879,464.3949999996139,-0.05468582163914398 +92880,464.3999999996139,-0.054685758359991656 +92881,464.4049999996139,-0.05468569507838728 +92882,464.4099999996139,-0.05468563179433066 +92883,464.4149999996139,-0.054685568507821615 +92884,464.4199999996139,-0.054685505218859946 +92885,464.4249999996139,-0.05468544192744547 +92886,464.42999999961387,-0.054685378633577995 +92887,464.43499999961386,-0.05468531533725734 +92888,464.43999999961386,-0.05468525203848328 +92889,464.44499999961386,-0.054685188737255676 +92890,464.44999999961385,-0.0546851254335743 +92891,464.45499999961385,-0.05468506212743897 +92892,464.45999999961384,-0.054684998818849494 +92893,464.46499999961384,-0.05468493550780569 +92894,464.46999999961383,-0.05468487219430738 +92895,464.47499999961383,-0.05468480887835435 +92896,464.4799999996138,-0.05468474555994641 +92897,464.4849999996138,-0.05468468223908339 +92898,464.4899999996138,-0.05468461891576507 +92899,464.4949999996138,-0.054684555589991295 +92900,464.4999999996138,-0.05468449226176185 +92901,464.5049999996138,-0.054684428931076556 +92902,464.5099999996138,-0.054684365597935214 +92903,464.5149999996138,-0.05468430226233764 +92904,464.5199999996138,-0.05468423892428363 +92905,464.5249999996138,-0.05468417558377301 +92906,464.5299999996138,-0.05468411224080558 +92907,464.5349999996138,-0.05468404889538116 +92908,464.53999999961377,-0.054683985547499536 +92909,464.54499999961376,-0.05468392219716053 +92910,464.54999999961376,-0.054683858844363956 +92911,464.55499999961376,-0.05468379548910963 +92912,464.55999999961375,-0.05468373213139735 +92913,464.56499999961375,-0.05468366877122692 +92914,464.56999999961374,-0.05468360540859816 +92915,464.57499999961374,-0.05468354204351087 +92916,464.57999999961373,-0.05468347867596487 +92917,464.58499999961373,-0.054683415305959944 +92918,464.5899999996137,-0.05468335193349593 +92919,464.5949999996137,-0.054683288558572615 +92920,464.5999999996137,-0.05468322518118983 +92921,464.6049999996137,-0.05468316180134737 +92922,464.6099999996137,-0.05468309841904504 +92923,464.6149999996137,-0.05468303503428266 +92924,464.6199999996137,-0.054682971647060014 +92925,464.6249999996137,-0.05468290825737694 +92926,464.6299999996137,-0.054682844865233234 +92927,464.6349999996137,-0.054682781470628695 +92928,464.6399999996137,-0.054682718073563154 +92929,464.6449999996137,-0.0546826546740364 +92930,464.64999999961367,-0.05468259127204824 +92931,464.65499999961366,-0.054682527867598495 +92932,464.65999999961366,-0.054682464460686975 +92933,464.66499999961366,-0.05468240105131348 +92934,464.66999999961365,-0.05468233763947781 +92935,464.67499999961365,-0.05468227422517978 +92936,464.67999999961364,-0.054682210808419215 +92937,464.68499999961364,-0.054682147389195905 +92938,464.68999999961363,-0.054682083967509655 +92939,464.69499999961363,-0.054682020543360285 +92940,464.6999999996136,-0.05468195711674759 +92941,464.7049999996136,-0.05468189368767138 +92942,464.7099999996136,-0.05468183025613148 +92943,464.7149999996136,-0.05468176682212767 +92944,464.7199999996136,-0.05468170338565979 +92945,464.7249999996136,-0.05468163994672762 +92946,464.7299999996136,-0.05468157650533098 +92947,464.7349999996136,-0.05468151306146967 +92948,464.7399999996136,-0.054681449615143506 +92949,464.7449999996136,-0.0546813861663523 +92950,464.7499999996136,-0.05468132271509585 +92951,464.7549999996136,-0.05468125926137395 +92952,464.75999999961357,-0.05468119580518643 +92953,464.76499999961356,-0.054681132346533094 +92954,464.76999999961356,-0.054681068885413735 +92955,464.77499999961356,-0.054681005421828174 +92956,464.77999999961355,-0.05468094195577622 +92957,464.78499999961355,-0.054680878487257674 +92958,464.78999999961354,-0.05468081501627233 +92959,464.79499999961354,-0.05468075154282002 +92960,464.79999999961353,-0.054680688066900546 +92961,464.8049999996135,-0.05468062458851369 +92962,464.8099999996135,-0.05468056110765929 +92963,464.8149999996135,-0.05468049762433714 +92964,464.8199999996135,-0.05468043413854704 +92965,464.8249999996135,-0.05468037065028881 +92966,464.8299999996135,-0.05468030715956225 +92967,464.8349999996135,-0.05468024366636716 +92968,464.8399999996135,-0.05468018017070337 +92969,464.8449999996135,-0.054680116672570646 +92970,464.8499999996135,-0.054680053171968834 +92971,464.8549999996135,-0.05467998966889772 +92972,464.8599999996135,-0.05467992616335712 +92973,464.8649999996135,-0.05467986265534684 +92974,464.86999999961347,-0.05467979914486668 +92975,464.87499999961346,-0.05467973563191644 +92976,464.87999999961346,-0.05467967211649595 +92977,464.88499999961346,-0.05467960859860499 +92978,464.88999999961345,-0.05467954507824338 +92979,464.89499999961345,-0.05467948155541092 +92980,464.89999999961344,-0.05467941803010743 +92981,464.90499999961344,-0.0546793545023327 +92982,464.90999999961343,-0.05467929097208655 +92983,464.9149999996134,-0.054679227439368774 +92984,464.9199999996134,-0.05467916390417918 +92985,464.9249999996134,-0.054679100366517575 +92986,464.9299999996134,-0.05467903682638377 +92987,464.9349999996134,-0.054678973283777556 +92988,464.9399999996134,-0.05467890973869875 +92989,464.9449999996134,-0.05467884619114716 +92990,464.9499999996134,-0.054678782641122595 +92991,464.9549999996134,-0.05467871908862486 +92992,464.9599999996134,-0.05467865553365375 +92993,464.9649999996134,-0.05467859197620908 +92994,464.9699999996134,-0.054678528416290645 +92995,464.9749999996134,-0.05467846485389826 +92996,464.97999999961337,-0.054678401289031724 +92997,464.98499999961336,-0.05467833772169085 +92998,464.98999999961336,-0.05467827415187544 +92999,464.99499999961336,-0.0546782105795853 +93000,464.99999999961335,-0.05467814700482023 +93001,465.00499999961335,-0.054678083427580036 +93002,465.00999999961334,-0.05467801984786454 +93003,465.01499999961334,-0.05467795626567352 +93004,465.01999999961333,-0.0546778926810068 +93005,465.0249999996133,-0.05467782909386418 +93006,465.0299999996133,-0.05467776550424546 +93007,465.0349999996133,-0.054677701912150455 +93008,465.0399999996133,-0.05467763831757896 +93009,465.0449999996133,-0.05467757472053079 +93010,465.0499999996133,-0.05467751112100574 +93011,465.0549999996133,-0.05467744751900362 +93012,465.0599999996133,-0.05467738391452423 +93013,465.0649999996133,-0.05467732030756738 +93014,465.0699999996133,-0.05467725669813288 +93015,465.0749999996133,-0.05467719308622053 +93016,465.0799999996133,-0.05467712947183013 +93017,465.0849999996133,-0.05467706585496149 +93018,465.08999999961327,-0.0546770022356144 +93019,465.09499999961326,-0.05467693861378868 +93020,465.09999999961326,-0.054676874989484134 +93021,465.10499999961326,-0.05467681136270056 +93022,465.10999999961325,-0.05467674773343777 +93023,465.11499999961325,-0.05467668410169556 +93024,465.11999999961324,-0.05467662046747374 +93025,465.12499999961324,-0.05467655683077211 +93026,465.12999999961323,-0.05467649319159048 +93027,465.1349999996132,-0.05467642954992866 +93028,465.1399999996132,-0.05467636590578643 +93029,465.1449999996132,-0.05467630225916361 +93030,465.1499999996132,-0.05467623861006 +93031,465.1549999996132,-0.05467617495847542 +93032,465.1599999996132,-0.05467611130440964 +93033,465.1649999996132,-0.054676047647862505 +93034,465.1699999996132,-0.05467598398883379 +93035,465.1749999996132,-0.05467592032732331 +93036,465.1799999996132,-0.054675856663330864 +93037,465.1849999996132,-0.05467579299685626 +93038,465.1899999996132,-0.05467572932789929 +93039,465.1949999996132,-0.054675665656459774 +93040,465.19999999961317,-0.0546756019825375 +93041,465.20499999961316,-0.054675538306132296 +93042,465.20999999961316,-0.054675474627243946 +93043,465.21499999961316,-0.05467541094587224 +93044,465.21999999961315,-0.05467534726201701 +93045,465.22499999961315,-0.05467528357567805 +93046,465.22999999961314,-0.05467521988685516 +93047,465.23499999961314,-0.05467515619554814 +93048,465.23999999961313,-0.05467509250175681 +93049,465.2449999996131,-0.05467502880548095 +93050,465.2499999996131,-0.05467496510672038 +93051,465.2549999996131,-0.05467490140547489 +93052,465.2599999996131,-0.054674837701744285 +93053,465.2649999996131,-0.054674773995528385 +93054,465.2699999996131,-0.05467471028682698 +93055,465.2749999996131,-0.05467464657563987 +93056,465.2799999996131,-0.05467458286196686 +93057,465.2849999996131,-0.05467451914580775 +93058,465.2899999996131,-0.05467445542716236 +93059,465.2949999996131,-0.05467439170603048 +93060,465.2999999996131,-0.0546743279824119 +93061,465.3049999996131,-0.05467426425630644 +93062,465.30999999961307,-0.054674200527713906 +93063,465.31499999961306,-0.05467413679663409 +93064,465.31999999961306,-0.054674073063066785 +93065,465.32499999961306,-0.054674009327011816 +93066,465.32999999961305,-0.05467394558846897 +93067,465.33499999961305,-0.05467388184743806 +93068,465.33999999961304,-0.05467381810391888 +93069,465.34499999961304,-0.05467375435791123 +93070,465.34999999961303,-0.05467369060941493 +93071,465.354999999613,-0.054673626858429775 +93072,465.359999999613,-0.054673563104955546 +93073,465.364999999613,-0.054673499348992065 +93074,465.369999999613,-0.05467343559053913 +93075,465.374999999613,-0.05467337182959655 +93076,465.379999999613,-0.05467330806616411 +93077,465.384999999613,-0.05467324430024162 +93078,465.389999999613,-0.054673180531828895 +93079,465.394999999613,-0.054673116760925726 +93080,465.399999999613,-0.0546730529875319 +93081,465.404999999613,-0.05467298921164725 +93082,465.409999999613,-0.05467292543327156 +93083,465.414999999613,-0.05467286165240462 +93084,465.41999999961297,-0.054672797869046254 +93085,465.42499999961296,-0.05467273408319625 +93086,465.42999999961296,-0.05467267029485441 +93087,465.43499999961296,-0.05467260650402055 +93088,465.43999999961295,-0.05467254271069446 +93089,465.44499999961295,-0.05467247891487594 +93090,465.44999999961294,-0.054672415116564795 +93091,465.45499999961294,-0.05467235131576082 +93092,465.45999999961293,-0.05467228751246383 +93093,465.4649999996129,-0.05467222370667361 +93094,465.4699999996129,-0.054672159898389965 +93095,465.4749999996129,-0.054672096087612705 +93096,465.4799999996129,-0.05467203227434162 +93097,465.4849999996129,-0.05467196845857653 +93098,465.4899999996129,-0.05467190464031722 +93099,465.4949999996129,-0.0546718408195635 +93100,465.4999999996129,-0.05467177699631516 +93101,465.5049999996129,-0.054671713170572005 +93102,465.5099999996129,-0.05467164934233384 +93103,465.5149999996129,-0.05467158551160046 +93104,465.5199999996129,-0.054671521678371665 +93105,465.5249999996129,-0.05467145784264726 +93106,465.52999999961287,-0.05467139400442705 +93107,465.53499999961286,-0.05467133016371082 +93108,465.53999999961286,-0.05467126632049839 +93109,465.54499999961286,-0.05467120247478956 +93110,465.54999999961285,-0.05467113862658411 +93111,465.55499999961285,-0.05467107477588185 +93112,465.55999999961284,-0.05467101092268258 +93113,465.56499999961284,-0.054670947066986116 +93114,465.56999999961283,-0.05467088320879225 +93115,465.5749999996128,-0.054670819348100766 +93116,465.5799999996128,-0.05467075548491148 +93117,465.5849999996128,-0.054670691619224186 +93118,465.5899999996128,-0.054670627751038696 +93119,465.5949999996128,-0.054670563880354794 +93120,465.5999999996128,-0.05467050000717228 +93121,465.6049999996128,-0.054670436131490974 +93122,465.6099999996128,-0.05467037225331066 +93123,465.6149999996128,-0.05467030837263114 +93124,465.6199999996128,-0.054670244489452215 +93125,465.6249999996128,-0.05467018060377369 +93126,465.6299999996128,-0.05467011671559536 +93127,465.6349999996128,-0.054670052824917006 +93128,465.63999999961277,-0.05466998893173846 +93129,465.64499999961276,-0.05466992503605951 +93130,465.64999999961276,-0.05466986113787995 +93131,465.65499999961276,-0.05466979723719958 +93132,465.65999999961275,-0.05466973333401821 +93133,465.66499999961275,-0.05466966942833563 +93134,465.66999999961274,-0.05466960552015163 +93135,465.67499999961274,-0.054669541609466035 +93136,465.67999999961273,-0.05466947769627862 +93137,465.6849999996127,-0.0546694137805892 +93138,465.6899999996127,-0.05466934986239757 +93139,465.6949999996127,-0.05466928594170352 +93140,465.6999999996127,-0.05466922201850686 +93141,465.7049999996127,-0.05466915809280738 +93142,465.7099999996127,-0.05466909416460489 +93143,465.7149999996127,-0.05466903023389918 +93144,465.7199999996127,-0.05466896630069006 +93145,465.7249999996127,-0.05466890236497733 +93146,465.7299999996127,-0.05466883842676077 +93147,465.7349999996127,-0.05466877448604019 +93148,465.7399999996127,-0.05466871054281539 +93149,465.7449999996127,-0.054668646597086167 +93150,465.74999999961267,-0.054668582648852326 +93151,465.75499999961266,-0.054668518698113656 +93152,465.75999999961266,-0.05466845474486996 +93153,465.76499999961266,-0.05466839078912104 +93154,465.76999999961265,-0.05466832683086669 +93155,465.77499999961265,-0.054668262870106704 +93156,465.77999999961264,-0.05466819890684089 +93157,465.78499999961264,-0.05466813494106904 +93158,465.78999999961263,-0.05466807097279096 +93159,465.7949999996126,-0.054668007002006434 +93160,465.7999999996126,-0.05466794302871527 +93161,465.8049999996126,-0.05466787905291727 +93162,465.8099999996126,-0.054667815074612235 +93163,465.8149999996126,-0.054667751093799954 +93164,465.8199999996126,-0.054667687110480215 +93165,465.8249999996126,-0.054667623124652835 +93166,465.8299999996126,-0.05466755913631761 +93167,465.8349999996126,-0.054667495145474324 +93168,465.8399999996126,-0.05466743115212279 +93169,465.8449999996126,-0.0546673671562628 +93170,465.8499999996126,-0.054667303157894157 +93171,465.8549999996126,-0.05466723915701664 +93172,465.85999999961257,-0.05466717515363007 +93173,465.86499999961256,-0.05466711114773423 +93174,465.86999999961256,-0.05466704713932893 +93175,465.87499999961256,-0.05466698312841395 +93176,465.87999999961255,-0.0546669191149891 +93177,465.88499999961255,-0.054666855099054175 +93178,465.88999999961254,-0.05466679108060898 +93179,465.89499999961254,-0.05466672705965329 +93180,465.89999999961253,-0.05466666303618692 +93181,465.9049999996125,-0.05466659901020967 +93182,465.9099999996125,-0.054666534981721325 +93183,465.9149999996125,-0.054666470950721704 +93184,465.9199999996125,-0.05466640691721058 +93185,465.9249999996125,-0.05466634288118776 +93186,465.9299999996125,-0.05466627884265304 +93187,465.9349999996125,-0.05466621480160622 +93188,465.9399999996125,-0.054666150758047094 +93189,465.9449999996125,-0.05466608671197547 +93190,465.9499999996125,-0.05466602266339112 +93191,465.9549999996125,-0.05466595861229386 +93192,465.9599999996125,-0.054665894558683495 +93193,465.9649999996125,-0.054665830502559784 +93194,465.96999999961247,-0.05466576644392256 +93195,465.97499999961246,-0.054665702382771617 +93196,465.97999999961246,-0.05466563831910674 +93197,465.98499999961246,-0.054665574252927715 +93198,465.98999999961245,-0.054665510184234364 +93199,465.99499999961245,-0.05466544611302646 +93200,465.99999999961244,-0.05466538203930382 +93201,466.00499999961244,-0.05466531796306623 +93202,466.00999999961243,-0.05466525388431349 +93203,466.0149999996124,-0.0546651898030454 +93204,466.0199999996124,-0.05466512571926174 +93205,466.0249999996124,-0.05466506163296232 +93206,466.0299999996124,-0.05466499754414694 +93207,466.0349999996124,-0.05466493345281539 +93208,466.0399999996124,-0.054664869358967465 +93209,466.0449999996124,-0.05466480526260296 +93210,466.0499999996124,-0.05466474116372167 +93211,466.0549999996124,-0.05466467706232339 +93212,466.0599999996124,-0.05466461295840793 +93213,466.0649999996124,-0.054664548851975074 +93214,466.0699999996124,-0.05466448474302462 +93215,466.0749999996124,-0.054664420631556354 +93216,466.07999999961237,-0.05466435651757009 +93217,466.08499999961236,-0.05466429240106561 +93218,466.08999999961236,-0.05466422828204272 +93219,466.09499999961236,-0.054664164160501204 +93220,466.09999999961235,-0.05466410003644086 +93221,466.10499999961235,-0.054664035909861484 +93222,466.10999999961234,-0.05466397178076288 +93223,466.11499999961234,-0.05466390764914483 +93224,466.11999999961233,-0.054663843515007145 +93225,466.1249999996123,-0.05466377937834962 +93226,466.1299999996123,-0.05466371523917204 +93227,466.1349999996123,-0.05466365109747419 +93228,466.1399999996123,-0.05466358695325588 +93229,466.1449999996123,-0.054663522806516894 +93230,466.1499999996123,-0.05466345865725705 +93231,466.1549999996123,-0.05466339450547614 +93232,466.1599999996123,-0.054663330351173926 +93233,466.1649999996123,-0.05466326619435023 +93234,466.1699999996123,-0.05466320203500485 +93235,466.1749999996123,-0.05466313787313757 +93236,466.1799999996123,-0.054663073708748185 +93237,466.1849999996123,-0.054663009541836505 +93238,466.18999999961227,-0.05466294537240231 +93239,466.19499999961226,-0.054662881200445386 +93240,466.19999999961226,-0.05466281702596554 +93241,466.20499999961226,-0.05466275284896257 +93242,466.20999999961225,-0.054662688669436264 +93243,466.21499999961225,-0.05466262448738641 +93244,466.21999999961224,-0.05466256030281282 +93245,466.22499999961224,-0.054662496115715276 +93246,466.22999999961223,-0.054662431926093574 +93247,466.2349999996122,-0.05466236773394752 +93248,466.2399999996122,-0.05466230353927689 +93249,466.2449999996122,-0.05466223934208149 +93250,466.2499999996122,-0.05466217514236111 +93251,466.2549999996122,-0.05466211094011554 +93252,466.2599999996122,-0.054662046735344576 +93253,466.2649999996122,-0.05466198252804801 +93254,466.2699999996122,-0.05466191831822566 +93255,466.2749999996122,-0.05466185410587728 +93256,466.2799999996122,-0.0546617898910027 +93257,466.2849999996122,-0.0546617256736017 +93258,466.2899999996122,-0.05466166145367406 +93259,466.2949999996122,-0.05466159723121959 +93260,466.29999999961217,-0.05466153300623808 +93261,466.30499999961216,-0.054661468778729315 +93262,466.30999999961216,-0.0546614045486931 +93263,466.31499999961216,-0.05466134031612923 +93264,466.31999999961215,-0.054661276081037484 +93265,466.32499999961215,-0.05466121184341768 +93266,466.32999999961214,-0.05466114760326959 +93267,466.33499999961214,-0.05466108336059301 +93268,466.33999999961213,-0.054661019115387746 +93269,466.3449999996121,-0.054660954867653586 +93270,466.3499999996121,-0.05466089061739031 +93271,466.3549999996121,-0.05466082636459772 +93272,466.3599999996121,-0.054660762109275625 +93273,466.3649999996121,-0.054660697851423794 +93274,466.3699999996121,-0.05466063359104203 +93275,466.3749999996121,-0.054660569328130126 +93276,466.3799999996121,-0.054660505062687874 +93277,466.3849999996121,-0.054660440794715076 +93278,466.3899999996121,-0.054660376524211504 +93279,466.3949999996121,-0.054660312251176964 +93280,466.3999999996121,-0.05466024797561124 +93281,466.4049999996121,-0.054660183697514145 +93282,466.40999999961207,-0.05466011941688545 +93283,466.41499999961206,-0.05466005513372497 +93284,466.41999999961206,-0.05465999084803248 +93285,466.42499999961206,-0.054659926559807774 +93286,466.42999999961205,-0.05465986226905065 +93287,466.43499999961205,-0.0546597979757609 +93288,466.43999999961204,-0.0546597336799383 +93289,466.44499999961204,-0.05465966938158266 +93290,466.44999999961203,-0.05465960508069378 +93291,466.454999999612,-0.054659540777271434 +93292,466.459999999612,-0.05465947647131543 +93293,466.464999999612,-0.05465941216282555 +93294,466.469999999612,-0.054659347851801585 +93295,466.474999999612,-0.05465928353824333 +93296,466.479999999612,-0.05465921922215057 +93297,466.484999999612,-0.054659154903523105 +93298,466.489999999612,-0.054659090582360736 +93299,466.494999999612,-0.054659026258663236 +93300,466.499999999612,-0.0546589619324304 +93301,466.504999999612,-0.05465889760366203 +93302,466.509999999612,-0.05465883327235791 +93303,466.514999999612,-0.054658768938517836 +93304,466.51999999961197,-0.05465870460214161 +93305,466.52499999961196,-0.054658640263229 +93306,466.52999999961196,-0.05465857592177981 +93307,466.53499999961195,-0.05465851157779385 +93308,466.53999999961195,-0.05465844723127087 +93309,466.54499999961195,-0.05465838288221069 +93310,466.54999999961194,-0.054658318530613086 +93311,466.55499999961194,-0.05465825417647787 +93312,466.55999999961193,-0.05465818981980482 +93313,466.5649999996119,-0.054658125460593725 +93314,466.5699999996119,-0.054658061098844385 +93315,466.5749999996119,-0.05465799673455659 +93316,466.5799999996119,-0.05465793236773013 +93317,466.5849999996119,-0.05465786799836478 +93318,466.5899999996119,-0.054657803626460354 +93319,466.5949999996119,-0.05465773925201663 +93320,466.5999999996119,-0.054657674875033396 +93321,466.6049999996119,-0.054657610495510454 +93322,466.6099999996119,-0.05465754611344759 +93323,466.6149999996119,-0.054657481728844604 +93324,466.6199999996119,-0.054657417341701264 +93325,466.6249999996119,-0.05465735295201738 +93326,466.62999999961187,-0.05465728855979273 +93327,466.63499999961186,-0.05465722416502712 +93328,466.63999999961186,-0.054657159767720315 +93329,466.64499999961185,-0.05465709536787213 +93330,466.64999999961185,-0.05465703096548235 +93331,466.65499999961185,-0.05465696656055076 +93332,466.65999999961184,-0.054656902153077155 +93333,466.66499999961184,-0.05465683774306132 +93334,466.66999999961183,-0.05465677333050305 +93335,466.6749999996118,-0.054656708915402134 +93336,466.6799999996118,-0.054656644497758367 +93337,466.6849999996118,-0.054656580077571536 +93338,466.6899999996118,-0.05465651565484141 +93339,466.6949999996118,-0.05465645122956781 +93340,466.6999999996118,-0.054656386801750514 +93341,466.7049999996118,-0.05465632237138931 +93342,466.7099999996118,-0.05465625793848399 +93343,466.7149999996118,-0.05465619350303435 +93344,466.7199999996118,-0.054656129065040165 +93345,466.7249999996118,-0.054656064624501226 +93346,466.7299999996118,-0.05465600018141734 +93347,466.7349999996118,-0.054655935735788294 +93348,466.73999999961177,-0.054655871287613865 +93349,466.74499999961176,-0.05465580683689385 +93350,466.74999999961176,-0.054655742383628025 +93351,466.75499999961175,-0.054655677927816185 +93352,466.75999999961175,-0.05465561346945813 +93353,466.76499999961175,-0.05465554900855365 +93354,466.76999999961174,-0.05465548454510252 +93355,466.77499999961174,-0.054655420079104546 +93356,466.77999999961173,-0.054655355610559495 +93357,466.7849999996117,-0.05465529113946718 +93358,466.7899999996117,-0.054655226665827374 +93359,466.7949999996117,-0.054655162189639866 +93360,466.7999999996117,-0.05465509771090446 +93361,466.8049999996117,-0.054655033229620925 +93362,466.8099999996117,-0.05465496874578908 +93363,466.8149999996117,-0.05465490425940868 +93364,466.8199999996117,-0.054654839770479524 +93365,466.8249999996117,-0.054654775279001415 +93366,466.8299999996117,-0.05465471078497413 +93367,466.8349999996117,-0.05465464628839746 +93368,466.8399999996117,-0.05465458178927119 +93369,466.8449999996117,-0.054654517287595114 +93370,466.84999999961167,-0.05465445278336901 +93371,466.85499999961166,-0.05465438827659267 +93372,466.85999999961166,-0.054654323767265894 +93373,466.86499999961165,-0.05465425925538847 +93374,466.86999999961165,-0.054654194740960164 +93375,466.87499999961165,-0.05465413022398079 +93376,466.87999999961164,-0.05465406570445012 +93377,466.88499999961164,-0.05465400118236795 +93378,466.88999999961163,-0.05465393665773407 +93379,466.8949999996116,-0.05465387213054825 +93380,466.8999999996116,-0.054653807600810296 +93381,466.9049999996116,-0.05465374306852 +93382,466.9099999996116,-0.05465367853367714 +93383,466.9149999996116,-0.054653613996281505 +93384,466.9199999996116,-0.054653549456332884 +93385,466.9249999996116,-0.05465348491383107 +93386,466.9299999996116,-0.05465342036877583 +93387,466.9349999996116,-0.05465335582116697 +93388,466.9399999996116,-0.05465329127100428 +93389,466.9449999996116,-0.05465322671828754 +93390,466.9499999996116,-0.054653162163016536 +93391,466.9549999996116,-0.05465309760519105 +93392,466.95999999961157,-0.05465303304481088 +93393,466.96499999961156,-0.05465296848187582 +93394,466.96999999961156,-0.054652903916385644 +93395,466.97499999961155,-0.05465283934834015 +93396,466.97999999961155,-0.054652774777739124 +93397,466.98499999961155,-0.05465271020458235 +93398,466.98999999961154,-0.05465264562886961 +93399,466.99499999961154,-0.05465258105060069 +93400,466.99999999961153,-0.054652516469775377 +93401,467.0049999996115,-0.05465245188639346 +93402,467.0099999996115,-0.05465238730045475 +93403,467.0149999996115,-0.054652322711959 +93404,467.0199999996115,-0.05465225812090602 +93405,467.0249999996115,-0.05465219352729557 +93406,467.0299999996115,-0.054652128931127454 +93407,467.0349999996115,-0.054652064332401454 +93408,467.0399999996115,-0.054651999731117375 +93409,467.0449999996115,-0.05465193512727498 +93410,467.0499999996115,-0.05465187052087407 +93411,467.0549999996115,-0.054651805911914424 +93412,467.0599999996115,-0.05465174130039583 +93413,467.0649999996115,-0.05465167668631807 +93414,467.06999999961147,-0.05465161206968094 +93415,467.07499999961146,-0.054651547450484214 +93416,467.07999999961146,-0.05465148282872769 +93417,467.08499999961145,-0.05465141820441116 +93418,467.08999999961145,-0.054651353577534395 +93419,467.09499999961145,-0.054651288948097176 +93420,467.09999999961144,-0.054651224316099305 +93421,467.10499999961144,-0.054651159681540565 +93422,467.10999999961143,-0.05465109504442073 +93423,467.1149999996114,-0.0546510304047396 +93424,467.1199999996114,-0.054650965762496964 +93425,467.1249999996114,-0.0546509011176926 +93426,467.1299999996114,-0.054650836470326286 +93427,467.1349999996114,-0.05465077182039782 +93428,467.1399999996114,-0.05465070716790699 +93429,467.1449999996114,-0.054650642512853564 +93430,467.1499999996114,-0.054650577855237345 +93431,467.1549999996114,-0.05465051319505811 +93432,467.1599999996114,-0.05465044853231564 +93433,467.1649999996114,-0.054650383867009725 +93434,467.1699999996114,-0.05465031919914016 +93435,467.1749999996114,-0.05465025452870671 +93436,467.17999999961137,-0.054650189855709186 +93437,467.18499999961136,-0.054650125180147356 +93438,467.18999999961136,-0.05465006050202101 +93439,467.19499999961135,-0.05464999582132993 +93440,467.19999999961135,-0.0546499311380739 +93441,467.20499999961135,-0.05464986645225271 +93442,467.20999999961134,-0.054649801763866135 +93443,467.21499999961134,-0.05464973707291398 +93444,467.21999999961133,-0.05464967237939601 +93445,467.2249999996113,-0.05464960768331203 +93446,467.2299999996113,-0.054649542984661806 +93447,467.2349999996113,-0.05464947828344514 +93448,467.2399999996113,-0.054649413579661785 +93449,467.2449999996113,-0.054649348873311555 +93450,467.2499999996113,-0.054649284164394234 +93451,467.2549999996113,-0.05464921945290959 +93452,467.2599999996113,-0.05464915473885742 +93453,467.2649999996113,-0.0546490900222375 +93454,467.2699999996113,-0.054649025303049624 +93455,467.2749999996113,-0.054648960581293565 +93456,467.2799999996113,-0.054648895856969124 +93457,467.2849999996113,-0.05464883113007606 +93458,467.28999999961127,-0.05464876640061418 +93459,467.29499999961126,-0.05464870166858326 +93460,467.29999999961126,-0.054648636933983086 +93461,467.30499999961125,-0.05464857219681343 +93462,467.30999999961125,-0.05464850745707411 +93463,467.31499999961125,-0.05464844271476487 +93464,467.31999999961124,-0.05464837796988552 +93465,467.32499999961124,-0.05464831322243582 +93466,467.32999999961123,-0.054648248472415575 +93467,467.3349999996112,-0.05464818371982456 +93468,467.3399999996112,-0.05464811896466256 +93469,467.3449999996112,-0.05464805420692936 +93470,467.3499999996112,-0.05464798944662475 +93471,467.3549999996112,-0.0546479246837485 +93472,467.3599999996112,-0.0546478599183004 +93473,467.3649999996112,-0.05464779515028023 +93474,467.3699999996112,-0.05464773037968779 +93475,467.3749999996112,-0.05464766560652284 +93476,467.3799999996112,-0.05464760083078517 +93477,467.3849999996112,-0.05464753605247456 +93478,467.3899999996112,-0.0546474712715908 +93479,467.3949999996112,-0.05464740648813368 +93480,467.39999999961117,-0.05464734170210298 +93481,467.40499999961116,-0.05464727691349847 +93482,467.40999999961116,-0.054647212122319946 +93483,467.41499999961115,-0.05464714732856719 +93484,467.41999999961115,-0.05464708253223998 +93485,467.42499999961115,-0.05464701773333809 +93486,467.42999999961114,-0.05464695293186132 +93487,467.43499999961114,-0.05464688812780945 +93488,467.43999999961113,-0.05464682332118225 +93489,467.4449999996111,-0.05464675851197951 +93490,467.4499999996111,-0.054646693700201025 +93491,467.4549999996111,-0.054646628885846565 +93492,467.4599999996111,-0.05464656406891591 +93493,467.4649999996111,-0.05464649924940885 +93494,467.4699999996111,-0.05464643442732516 +93495,467.4749999996111,-0.05464636960266462 +93496,467.4799999996111,-0.05464630477542703 +93497,467.4849999996111,-0.05464623994561215 +93498,467.4899999996111,-0.054646175113219786 +93499,467.4949999996111,-0.05464611027824969 +93500,467.4999999996111,-0.054646045440701674 +93501,467.5049999996111,-0.0546459806005755 +93502,467.50999999961107,-0.05464591575787096 +93503,467.51499999961106,-0.05464585091258782 +93504,467.51999999961106,-0.054645786064725886 +93505,467.52499999961105,-0.05464572121428493 +93506,467.52999999961105,-0.05464565636126473 +93507,467.53499999961105,-0.054645591505665066 +93508,467.53999999961104,-0.054645526647485725 +93509,467.54499999961104,-0.05464546178672649 +93510,467.54999999961103,-0.05464539692338714 +93511,467.554999999611,-0.05464533205746746 +93512,467.559999999611,-0.05464526718896723 +93513,467.564999999611,-0.054645202317886214 +93514,467.569999999611,-0.054645137444224216 +93515,467.574999999611,-0.05464507256798102 +93516,467.579999999611,-0.05464500768915639 +93517,467.584999999611,-0.05464494280775011 +93518,467.589999999611,-0.054644877923761985 +93519,467.594999999611,-0.05464481303719177 +93520,467.599999999611,-0.05464474814803924 +93521,467.604999999611,-0.05464468325630419 +93522,467.609999999611,-0.054644618361986405 +93523,467.614999999611,-0.05464455346508566 +93524,467.61999999961097,-0.05464448856560175 +93525,467.62499999961096,-0.054644423663534426 +93526,467.62999999961096,-0.05464435875888349 +93527,467.63499999961095,-0.05464429385164871 +93528,467.63999999961095,-0.054644228941829895 +93529,467.64499999961095,-0.05464416402942679 +93530,467.64999999961094,-0.0546440991144392 +93531,467.65499999961094,-0.0546440341968669 +93532,467.65999999961093,-0.054643969276709656 +93533,467.6649999996109,-0.05464390435396726 +93534,467.6699999996109,-0.0546438394286395 +93535,467.6749999996109,-0.05464377450072614 +93536,467.6799999996109,-0.054643709570226975 +93537,467.6849999996109,-0.054643644637141775 +93538,467.6899999996109,-0.05464357970147033 +93539,467.6949999996109,-0.05464351476321241 +93540,467.6999999996109,-0.0546434498223678 +93541,467.7049999996109,-0.054643384878936274 +93542,467.7099999996109,-0.05464331993291762 +93543,467.7149999996109,-0.054643254984311614 +93544,467.7199999996109,-0.05464319003311803 +93545,467.7249999996109,-0.054643125079336656 +93546,467.72999999961087,-0.05464306012296727 +93547,467.73499999961086,-0.05464299516400966 +93548,467.73999999961086,-0.0546429302024636 +93549,467.74499999961085,-0.05464286523832887 +93550,467.74999999961085,-0.054642800271605244 +93551,467.75499999961085,-0.054642735302292494 +93552,467.75999999961084,-0.05464267033039042 +93553,467.76499999961084,-0.05464260535589878 +93554,467.76999999961083,-0.05464254037881738 +93555,467.7749999996108,-0.05464247539914597 +93556,467.7799999996108,-0.05464241041688435 +93557,467.7849999996108,-0.05464234543203229 +93558,467.7899999996108,-0.05464228044458956 +93559,467.7949999996108,-0.05464221545455597 +93560,467.7999999996108,-0.054642150461931265 +93561,467.8049999996108,-0.05464208546671524 +93562,467.8099999996108,-0.054642020468907676 +93563,467.8149999996108,-0.05464195546850834 +93564,467.8199999996108,-0.05464189046551704 +93565,467.8249999996108,-0.05464182545993351 +93566,467.8299999996108,-0.054641760451757566 +93567,467.8349999996108,-0.05464169544098897 +93568,467.83999999961077,-0.054641630427627506 +93569,467.84499999961076,-0.05464156541167294 +93570,467.84999999961076,-0.05464150039312507 +93571,467.85499999961075,-0.054641435371983675 +93572,467.85999999961075,-0.054641370348248515 +93573,467.86499999961075,-0.054641305321919374 +93574,467.86999999961074,-0.054641240292996045 +93575,467.87499999961074,-0.054641175261478284 +93576,467.87999999961073,-0.05464111022736589 +93577,467.8849999996107,-0.05464104519065862 +93578,467.8899999996107,-0.05464098015135626 +93579,467.8949999996107,-0.05464091510945861 +93580,467.8999999996107,-0.05464085006496542 +93581,467.9049999996107,-0.05464078501787648 +93582,467.9099999996107,-0.054640719968191566 +93583,467.9149999996107,-0.05464065491591045 +93584,467.9199999996107,-0.05464058986103291 +93585,467.9249999996107,-0.054640524803558736 +93586,467.9299999996107,-0.0546404597434877 +93587,467.9349999996107,-0.05464039468081957 +93588,467.9399999996107,-0.05464032961555414 +93589,467.9449999996107,-0.05464026454769118 +93590,467.94999999961067,-0.05464019947723046 +93591,467.95499999961066,-0.05464013440417176 +93592,467.95999999961066,-0.05464006932851487 +93593,467.96499999961065,-0.054640004250259555 +93594,467.96999999961065,-0.05463993916940559 +93595,467.97499999961065,-0.05463987408595277 +93596,467.97999999961064,-0.054639808999900855 +93597,467.98499999961064,-0.05463974391124963 +93598,467.98999999961063,-0.054639678819998865 +93599,467.9949999996106,-0.05463961372614834 +93600,467.9999999996106,-0.054639548629697846 +93601,468.0049999996106,-0.05463948353064714 +93602,468.0099999996106,-0.05463941842899601 +93603,468.0149999996106,-0.05463935332474423 +93604,468.0199999996106,-0.054639288217891574 +93605,468.0249999996106,-0.05463922310843782 +93606,468.0299999996106,-0.05463915799638275 +93607,468.0349999996106,-0.05463909288172613 +93608,468.0399999996106,-0.05463902776446774 +93609,468.0449999996106,-0.05463896264460736 +93610,468.0499999996106,-0.05463889752214478 +93611,468.0549999996106,-0.054638832397079756 +93612,468.05999999961057,-0.054638767269412074 +93613,468.06499999961056,-0.0546387021391415 +93614,468.06999999961056,-0.054638637006267816 +93615,468.07499999961055,-0.0546385718707908 +93616,468.07999999961055,-0.05463850673271023 +93617,468.08499999961055,-0.05463844159202587 +93618,468.08999999961054,-0.05463837644873752 +93619,468.09499999961054,-0.054638311302844925 +93620,468.09999999961053,-0.05463824615434788 +93621,468.1049999996105,-0.054638181003246175 +93622,468.1099999996105,-0.05463811584953956 +93623,468.1149999996105,-0.05463805069322782 +93624,468.1199999996105,-0.05463798553431073 +93625,468.1249999996105,-0.054637920372788064 +93626,468.1299999996105,-0.0546378552086596 +93627,468.1349999996105,-0.054637790041925115 +93628,468.1399999996105,-0.054637724872584385 +93629,468.1449999996105,-0.054637659700637185 +93630,468.1499999996105,-0.05463759452608329 +93631,468.1549999996105,-0.05463752934892247 +93632,468.1599999996105,-0.0546374641691545 +93633,468.1649999996105,-0.05463739898677916 +93634,468.16999999961047,-0.05463733380179623 +93635,468.17499999961046,-0.05463726861420548 +93636,468.17999999961046,-0.054637203424006686 +93637,468.18499999961045,-0.05463713823119962 +93638,468.18999999961045,-0.05463707303578406 +93639,468.19499999961045,-0.054637007837759786 +93640,468.19999999961044,-0.054636942637126554 +93641,468.20499999961044,-0.05463687743388415 +93642,468.20999999961043,-0.05463681222803236 +93643,468.2149999996104,-0.05463674701957095 +93644,468.2199999996104,-0.05463668180849969 +93645,468.2249999996104,-0.05463661659481837 +93646,468.2299999996104,-0.054636551378526736 +93647,468.2349999996104,-0.05463648615962458 +93648,468.2399999996104,-0.054636420938111684 +93649,468.2449999996104,-0.05463635571398781 +93650,468.2499999996104,-0.05463629048725275 +93651,468.2549999996104,-0.05463622525790626 +93652,468.2599999996104,-0.054636160025948115 +93653,468.2649999996104,-0.0546360947913781 +93654,468.2699999996104,-0.05463602955419597 +93655,468.2749999996104,-0.05463596431440152 +93656,468.27999999961037,-0.054635899071994516 +93657,468.28499999961036,-0.05463583382697473 +93658,468.28999999961036,-0.054635768579341944 +93659,468.29499999961035,-0.05463570332909592 +93660,468.29999999961035,-0.054635638076236434 +93661,468.30499999961035,-0.05463557282076327 +93662,468.30999999961034,-0.0546355075626762 +93663,468.31499999961034,-0.05463544230197499 +93664,468.31999999961033,-0.054635377038659415 +93665,468.3249999996103,-0.054635311772729254 +93666,468.3299999996103,-0.05463524650418427 +93667,468.3349999996103,-0.054635181233024244 +93668,468.3399999996103,-0.05463511595924895 +93669,468.3449999996103,-0.05463505068285815 +93670,468.3499999996103,-0.05463498540385163 +93671,468.3549999996103,-0.05463492012222916 +93672,468.3599999996103,-0.05463485483799052 +93673,468.3649999996103,-0.054634789551135474 +93674,468.3699999996103,-0.05463472426166379 +93675,468.3749999996103,-0.054634658969575256 +93676,468.3799999996103,-0.054634593674869635 +93677,468.3849999996103,-0.054634528377546704 +93678,468.38999999961027,-0.05463446307760624 +93679,468.39499999961026,-0.05463439777504801 +93680,468.39999999961026,-0.054634332469871795 +93681,468.40499999961025,-0.05463426716207735 +93682,468.40999999961025,-0.05463420185166446 +93683,468.41499999961025,-0.05463413653863289 +93684,468.41999999961024,-0.05463407122298242 +93685,468.42499999961024,-0.05463400590471281 +93686,468.42999999961023,-0.05463394058382384 +93687,468.4349999996102,-0.05463387526031531 +93688,468.4399999996102,-0.054633809934186955 +93689,468.4449999996102,-0.054633744605438565 +93690,468.4499999996102,-0.0546336792740699 +93691,468.4549999996102,-0.054633613940080754 +93692,468.4599999996102,-0.05463354860347086 +93693,468.4649999996102,-0.054633483264240015 +93694,468.4699999996102,-0.054633417922387996 +93695,468.4749999996102,-0.054633352577914567 +93696,468.4799999996102,-0.054633287230819505 +93697,468.4849999996102,-0.05463322188110259 +93698,468.4899999996102,-0.05463315652876356 +93699,468.4949999996102,-0.05463309117380223 +93700,468.49999999961017,-0.05463302581621834 +93701,468.50499999961016,-0.054632960456011674 +93702,468.50999999961016,-0.054632895093182005 +93703,468.51499999961015,-0.05463282972772911 +93704,468.51999999961015,-0.05463276435965274 +93705,468.52499999961015,-0.054632698988952684 +93706,468.52999999961014,-0.05463263361562871 +93707,468.53499999961014,-0.05463256823968058 +93708,468.53999999961013,-0.05463250286110808 +93709,468.5449999996101,-0.05463243747991098 +93710,468.5499999996101,-0.05463237209608903 +93711,468.5549999996101,-0.054632306709642024 +93712,468.5599999996101,-0.05463224132056972 +93713,468.5649999996101,-0.0546321759288719 +93714,468.5699999996101,-0.054632110534548334 +93715,468.5749999996101,-0.054632045137598784 +93716,468.5799999996101,-0.05463197973802302 +93717,468.5849999996101,-0.054631914335820826 +93718,468.5899999996101,-0.054631848930991954 +93719,468.5949999996101,-0.05463178352353619 +93720,468.5999999996101,-0.054631718113453305 +93721,468.6049999996101,-0.054631652700743064 +93722,468.60999999961007,-0.05463158728540523 +93723,468.61499999961006,-0.05463152186743959 +93724,468.61999999961006,-0.0546314564468459 +93725,468.62499999961005,-0.05463139102362394 +93726,468.62999999961005,-0.05463132559777347 +93727,468.63499999961005,-0.05463126016929427 +93728,468.63999999961004,-0.05463119473818611 +93729,468.64499999961004,-0.05463112930444875 +93730,468.64999999961003,-0.05463106386808197 +93731,468.65499999961,-0.05463099842908554 +93732,468.65999999961,-0.05463093298745922 +93733,468.66499999961,-0.054630867543202795 +93734,468.66999999961,-0.05463080209631603 +93735,468.67499999961,-0.05463073664679868 +93736,468.67999999961,-0.05463067119465053 +93737,468.68499999961,-0.05463060573987136 +93738,468.68999999961,-0.054630540282460914 +93739,468.69499999961,-0.05463047482241898 +93740,468.69999999961,-0.054630409359745315 +93741,468.70499999961,-0.054630343894439694 +93742,468.70999999961,-0.05463027842650189 +93743,468.71499999961,-0.05463021295593167 +93744,468.71999999960997,-0.054630147482728805 +93745,468.72499999960996,-0.05463008200689305 +93746,468.72999999960996,-0.0546300165284242 +93747,468.73499999960995,-0.054629951047321997 +93748,468.73999999960995,-0.05462988556358623 +93749,468.74499999960995,-0.05462982007721665 +93750,468.74999999960994,-0.05462975458821305 +93751,468.75499999960994,-0.05462968909657518 +93752,468.75999999960993,-0.054629623602302814 +93753,468.7649999996099,-0.05462955810539573 +93754,468.7699999996099,-0.05462949260585369 +93755,468.7749999996099,-0.05462942710367645 +93756,468.7799999996099,-0.05462936159886379 +93757,468.7849999996099,-0.05462929609141549 +93758,468.7899999996099,-0.0546292305813313 +93759,468.7949999996099,-0.054629165068611006 +93760,468.7999999996099,-0.05462909955325435 +93761,468.8049999996099,-0.05462903403526113 +93762,468.8099999996099,-0.0546289685146311 +93763,468.8149999996099,-0.05462890299136402 +93764,468.8199999996099,-0.05462883746545967 +93765,468.8249999996099,-0.054628771936917814 +93766,468.82999999960987,-0.05462870640573823 +93767,468.83499999960986,-0.05462864087192067 +93768,468.83999999960986,-0.05462857533546492 +93769,468.84499999960985,-0.054628509796370725 +93770,468.84999999960985,-0.05462844425463787 +93771,468.85499999960984,-0.05462837871026612 +93772,468.85999999960984,-0.05462831316325524 +93773,468.86499999960984,-0.054628247613605 +93774,468.86999999960983,-0.05462818206131517 +93775,468.8749999996098,-0.054628116506385514 +93776,468.8799999996098,-0.0546280509488158 +93777,468.8849999996098,-0.0546279853886058 +93778,468.8899999996098,-0.05462791982575526 +93779,468.8949999996098,-0.054627854260263974 +93780,468.8999999996098,-0.0546277886921317 +93781,468.9049999996098,-0.054627723121358204 +93782,468.9099999996098,-0.054627657547943256 +93783,468.9149999996098,-0.05462759197188663 +93784,468.9199999996098,-0.054627526393188075 +93785,468.9249999996098,-0.05462746081184737 +93786,468.9299999996098,-0.054627395227864285 +93787,468.9349999996098,-0.05462732964123858 +93788,468.93999999960977,-0.05462726405197002 +93789,468.94499999960976,-0.05462719846005837 +93790,468.94999999960976,-0.0546271328655034 +93791,468.95499999960975,-0.05462706726830489 +93792,468.95999999960975,-0.054627001668462585 +93793,468.96499999960974,-0.05462693606597627 +93794,468.96999999960974,-0.054626870460845696 +93795,468.97499999960974,-0.054626804853070636 +93796,468.97999999960973,-0.05462673924265087 +93797,468.9849999996097,-0.054626673629586155 +93798,468.9899999996097,-0.05462660801387624 +93799,468.9949999996097,-0.054626542395520915 +93800,468.9999999996097,-0.05462647677451993 +93801,469.0049999996097,-0.05462641115087307 +93802,469.0099999996097,-0.05462634552458009 +93803,469.0149999996097,-0.05462627989564075 +93804,469.0199999996097,-0.054626214264054826 +93805,469.0249999996097,-0.05462614862982207 +93806,469.0299999996097,-0.05462608299294226 +93807,469.0349999996097,-0.054626017353415164 +93808,469.0399999996097,-0.054625951711240545 +93809,469.0449999996097,-0.05462588606641816 +93810,469.04999999960967,-0.054625820418947785 +93811,469.05499999960966,-0.054625754768829186 +93812,469.05999999960966,-0.05462568911606212 +93813,469.06499999960965,-0.05462562346064635 +93814,469.06999999960965,-0.054625557802581666 +93815,469.07499999960964,-0.054625492141867814 +93816,469.07999999960964,-0.05462542647850455 +93817,469.08499999960964,-0.05462536081249166 +93818,469.08999999960963,-0.05462529514382891 +93819,469.0949999996096,-0.05462522947251604 +93820,469.0999999996096,-0.05462516379855283 +93821,469.1049999996096,-0.054625098121939046 +93822,469.1099999996096,-0.05462503244267446 +93823,469.1149999996096,-0.05462496676075883 +93824,469.1199999996096,-0.054624901076191903 +93825,469.1249999996096,-0.05462483538897348 +93826,469.1299999996096,-0.0546247696991033 +93827,469.1349999996096,-0.05462470400658114 +93828,469.1399999996096,-0.05462463831140676 +93829,469.1449999996096,-0.05462457261357991 +93830,469.1499999996096,-0.05462450691310039 +93831,469.1549999996096,-0.05462444120996793 +93832,469.15999999960957,-0.05462437550418231 +93833,469.16499999960956,-0.0546243097957433 +93834,469.16999999960956,-0.05462424408465066 +93835,469.17499999960955,-0.054624178370904136 +93836,469.17999999960955,-0.05462411265450351 +93837,469.18499999960954,-0.05462404693544855 +93838,469.18999999960954,-0.054623981213739 +93839,469.19499999960954,-0.054623915489374654 +93840,469.19999999960953,-0.05462384976235525 +93841,469.2049999996095,-0.05462378403268056 +93842,469.2099999996095,-0.054623718300350364 +93843,469.2149999996095,-0.054623652565364396 +93844,469.2199999996095,-0.05462358682772245 +93845,469.2249999996095,-0.054623521087424264 +93846,469.2299999996095,-0.05462345534446962 +93847,469.2349999996095,-0.05462338959885827 +93848,469.2399999996095,-0.05462332385058998 +93849,469.2449999996095,-0.05462325809966453 +93850,469.2499999996095,-0.05462319234608165 +93851,469.2549999996095,-0.054623126589841135 +93852,469.2599999996095,-0.05462306083094273 +93853,469.2649999996095,-0.054622995069386206 +93854,469.26999999960947,-0.054622929305171326 +93855,469.27499999960946,-0.05462286353829785 +93856,469.27999999960946,-0.05462279776876554 +93857,469.28499999960945,-0.054622731996574164 +93858,469.28999999960945,-0.05462266622172348 +93859,469.29499999960944,-0.05462260044421325 +93860,469.29999999960944,-0.054622534664043244 +93861,469.30499999960944,-0.05462246888121322 +93862,469.30999999960943,-0.05462240309572294 +93863,469.3149999996094,-0.05462233730757218 +93864,469.3199999996094,-0.054622271516760676 +93865,469.3249999996094,-0.05462220572328822 +93866,469.3299999996094,-0.05462213992715455 +93867,469.3349999996094,-0.05462207412835945 +93868,469.3399999996094,-0.05462200832690266 +93869,469.3449999996094,-0.054621942522783955 +93870,469.3499999996094,-0.054621876716003104 +93871,469.3549999996094,-0.05462181090655986 +93872,469.3599999996094,-0.054621745094453986 +93873,469.3649999996094,-0.05462167927968524 +93874,469.3699999996094,-0.054621613462253395 +93875,469.3749999996094,-0.05462154764215821 +93876,469.37999999960937,-0.05462148181939944 +93877,469.38499999960936,-0.05462141599397684 +93878,469.38999999960936,-0.05462135016589019 +93879,469.39499999960935,-0.05462128433513925 +93880,469.39999999960935,-0.05462121850172377 +93881,469.40499999960934,-0.054621152665643526 +93882,469.40999999960934,-0.054621086826898264 +93883,469.41499999960934,-0.05462102098548776 +93884,469.41999999960933,-0.05462095514141177 +93885,469.4249999996093,-0.05462088929467005 +93886,469.4299999996093,-0.054620823445262374 +93887,469.4349999996093,-0.05462075759318849 +93888,469.4399999996093,-0.05462069173844816 +93889,469.4449999996093,-0.05462062588104115 +93890,469.4499999996093,-0.05462056002096722 +93891,469.4549999996093,-0.05462049415822614 +93892,469.4599999996093,-0.054620428292817665 +93893,469.4649999996093,-0.054620362424741546 +93894,469.4699999996093,-0.05462029655399755 +93895,469.4749999996093,-0.054620230680585455 +93896,469.4799999996093,-0.054620164804504996 +93897,469.4849999996093,-0.05462009892575594 +93898,469.48999999960927,-0.05462003304433806 +93899,469.49499999960926,-0.05461996716025111 +93900,469.49999999960926,-0.05461990127349485 +93901,469.50499999960925,-0.05461983538406904 +93902,469.50999999960925,-0.05461976949197345 +93903,469.51499999960924,-0.05461970359720782 +93904,469.51999999960924,-0.05461963769977193 +93905,469.52499999960924,-0.05461957179966552 +93906,469.52999999960923,-0.05461950589688837 +93907,469.5349999996092,-0.054619439991440234 +93908,469.5399999996092,-0.05461937408332086 +93909,469.5449999996092,-0.054619308172530044 +93910,469.5499999996092,-0.05461924225906751 +93911,469.5549999996092,-0.05461917634293302 +93912,469.5599999996092,-0.05461911042412635 +93913,469.5649999996092,-0.054619044502647256 +93914,469.5699999996092,-0.054618978578495486 +93915,469.5749999996092,-0.05461891265167081 +93916,469.5799999996092,-0.054618846722172994 +93917,469.5849999996092,-0.05461878079000178 +93918,469.5899999996092,-0.05461871485515694 +93919,469.5949999996092,-0.05461864891763824 +93920,469.59999999960917,-0.05461858297744543 +93921,469.60499999960916,-0.05461851703457826 +93922,469.60999999960916,-0.05461845108903651 +93923,469.61499999960915,-0.054618385140819924 +93924,469.61999999960915,-0.05461831918992827 +93925,469.62499999960914,-0.0546182532363613 +93926,469.62999999960914,-0.054618187280118774 +93927,469.63499999960914,-0.05461812132120046 +93928,469.63999999960913,-0.05461805535960611 +93929,469.6449999996091,-0.05461798939533547 +93930,469.6499999996091,-0.054617923428388324 +93931,469.6549999996091,-0.05461785745876442 +93932,469.6599999996091,-0.05461779148646352 +93933,469.6649999996091,-0.05461772551148536 +93934,469.6699999996091,-0.05461765953382972 +93935,469.6749999996091,-0.054617593553496366 +93936,469.6799999996091,-0.05461752757048504 +93937,469.6849999996091,-0.05461746158479551 +93938,469.6899999996091,-0.05461739559642753 +93939,469.6949999996091,-0.05461732960538086 +93940,469.6999999996091,-0.05461726361165526 +93941,469.7049999996091,-0.05461719761525049 +93942,469.70999999960907,-0.054617131616166305 +93943,469.71499999960906,-0.054617065614402466 +93944,469.71999999960906,-0.05461699960995873 +93945,469.72499999960905,-0.05461693360283485 +93946,469.72999999960905,-0.054616867593030576 +93947,469.73499999960904,-0.05461680158054569 +93948,469.73999999960904,-0.05461673556537993 +93949,469.74499999960904,-0.05461666954753307 +93950,469.74999999960903,-0.05461660352700484 +93951,469.754999999609,-0.05461653750379503 +93952,469.759999999609,-0.05461647147790339 +93953,469.764999999609,-0.054616405449329664 +93954,469.769999999609,-0.05461633941807361 +93955,469.774999999609,-0.054616273384135 +93956,469.779999999609,-0.05461620734751358 +93957,469.784999999609,-0.05461614130820911 +93958,469.789999999609,-0.05461607526622136 +93959,469.794999999609,-0.05461600922155008 +93960,469.799999999609,-0.054615943174195 +93961,469.804999999609,-0.0546158771241559 +93962,469.809999999609,-0.05461581107143255 +93963,469.814999999609,-0.05461574501602469 +93964,469.81999999960897,-0.05461567895793209 +93965,469.82499999960896,-0.05461561289715449 +93966,469.82999999960896,-0.05461554683369165 +93967,469.83499999960895,-0.05461548076754335 +93968,469.83999999960895,-0.054615414698709314 +93969,469.84499999960894,-0.05461534862718932 +93970,469.84999999960894,-0.05461528255298312 +93971,469.85499999960894,-0.05461521647609045 +93972,469.85999999960893,-0.054615150396511096 +93973,469.8649999996089,-0.0546150843142448 +93974,469.8699999996089,-0.05461501822929132 +93975,469.8749999996089,-0.05461495214165042 +93976,469.8799999996089,-0.05461488605132185 +93977,469.8849999996089,-0.05461481995830536 +93978,469.8899999996089,-0.05461475386260071 +93979,469.8949999996089,-0.05461468776420766 +93980,469.8999999996089,-0.05461462166312596 +93981,469.9049999996089,-0.054614555559355384 +93982,469.9099999996089,-0.05461448945289567 +93983,469.9149999996089,-0.05461442334374657 +93984,469.9199999996089,-0.05461435723190785 +93985,469.9249999996089,-0.05461429111737927 +93986,469.92999999960887,-0.054614225000160575 +93987,469.93499999960886,-0.05461415888025153 +93988,469.93999999960886,-0.054614092757651875 +93989,469.94499999960885,-0.054614026632361375 +93990,469.94999999960885,-0.05461396050437979 +93991,469.95499999960884,-0.054613894373706874 +93992,469.95999999960884,-0.054613828240342374 +93993,469.96499999960884,-0.054613762104286055 +93994,469.96999999960883,-0.054613695965537674 +93995,469.9749999996088,-0.054613629824096975 +93996,469.9799999996088,-0.05461356367996372 +93997,469.9849999996088,-0.05461349753313766 +93998,469.9899999996088,-0.05461343138361855 +93999,469.9949999996088,-0.05461336523140615 +94000,469.9999999996088,-0.05461329907650021 +94001,470.0049999996088,-0.054613232918900495 +94002,470.0099999996088,-0.05461316675860674 +94003,470.0149999996088,-0.05461310059561872 +94004,470.0199999996088,-0.05461303442993618 +94005,470.0249999996088,-0.05461296826155888 +94006,470.0299999996088,-0.05461290209048656 +94007,470.0349999996088,-0.05461283591671898 +94008,470.03999999960877,-0.054612769740255904 +94009,470.04499999960876,-0.05461270356109708 +94010,470.04999999960876,-0.05461263737924226 +94011,470.05499999960875,-0.05461257119469121 +94012,470.05999999960875,-0.054612505007443676 +94013,470.06499999960874,-0.05461243881749941 +94014,470.06999999960874,-0.05461237262485817 +94015,470.07499999960874,-0.054612306429519704 +94016,470.07999999960873,-0.05461224023148377 +94017,470.0849999996087,-0.05461217403075011 +94018,470.0899999996087,-0.0546121078273185 +94019,470.0949999996087,-0.054612041621188684 +94020,470.0999999996087,-0.05461197541236041 +94021,470.1049999996087,-0.05461190920083344 +94022,470.1099999996087,-0.054611842986607526 +94023,470.1149999996087,-0.05461177676968242 +94024,470.1199999996087,-0.05461171055005787 +94025,470.1249999996087,-0.05461164432773363 +94026,470.1299999996087,-0.05461157810270946 +94027,470.1349999996087,-0.054611511874985114 +94028,470.1399999996087,-0.05461144564456034 +94029,470.1449999996087,-0.05461137941143488 +94030,470.14999999960867,-0.054611313175608515 +94031,470.15499999960866,-0.05461124693708098 +94032,470.15999999960866,-0.05461118069585203 +94033,470.16499999960865,-0.05461111445192141 +94034,470.16999999960865,-0.0546110482052889 +94035,470.17499999960864,-0.054610981955954215 +94036,470.17999999960864,-0.05461091570391714 +94037,470.18499999960864,-0.05461084944917741 +94038,470.18999999960863,-0.054610783191734784 +94039,470.1949999996086,-0.05461071693158901 +94040,470.1999999996086,-0.05461065066873985 +94041,470.2049999996086,-0.05461058440318705 +94042,470.2099999996086,-0.05461051813493035 +94043,470.2149999996086,-0.05461045186396952 +94044,470.2199999996086,-0.0546103855903043 +94045,470.2249999996086,-0.05461031931393445 +94046,470.2299999996086,-0.054610253034859724 +94047,470.2349999996086,-0.054610186753079874 +94048,470.2399999996086,-0.05461012046859465 +94049,470.2449999996086,-0.0546100541814038 +94050,470.2499999996086,-0.054609987891507075 +94051,470.2549999996086,-0.05460992159890424 +94052,470.25999999960857,-0.05460985530359503 +94053,470.26499999960856,-0.0546097890055792 +94054,470.26999999960856,-0.05460972270485651 +94055,470.27499999960855,-0.054609656401426704 +94056,470.27999999960855,-0.05460959009528953 +94057,470.28499999960854,-0.05460952378644476 +94058,470.28999999960854,-0.054609457474892126 +94059,470.29499999960854,-0.05460939116063139 +94060,470.29999999960853,-0.054609324843662294 +94061,470.3049999996085,-0.05460925852398459 +94062,470.3099999996085,-0.05460919220159804 +94063,470.3149999996085,-0.05460912587650238 +94064,470.3199999996085,-0.05460905954869736 +94065,470.3249999996085,-0.054608993218182744 +94066,470.3299999996085,-0.054608926884958296 +94067,470.3349999996085,-0.05460886054902373 +94068,470.3399999996085,-0.05460879421037882 +94069,470.3449999996085,-0.054608727869023314 +94070,470.3499999996085,-0.054608661524956956 +94071,470.3549999996085,-0.054608595178179516 +94072,470.3599999996085,-0.054608528828690724 +94073,470.3649999996085,-0.05460846247649033 +94074,470.36999999960847,-0.0546083961215781 +94075,470.37499999960846,-0.05460832976395378 +94076,470.37999999960846,-0.0546082634036171 +94077,470.38499999960845,-0.05460819704056783 +94078,470.38999999960845,-0.05460813067480572 +94079,470.39499999960844,-0.05460806430633052 +94080,470.39999999960844,-0.05460799793514198 +94081,470.40499999960844,-0.05460793156123984 +94082,470.40999999960843,-0.05460786518462386 +94083,470.4149999996084,-0.05460779880529378 +94084,470.4199999996084,-0.05460773242324937 +94085,470.4249999996084,-0.05460766603849036 +94086,470.4299999996084,-0.05460759965101652 +94087,470.4349999996084,-0.05460753326082757 +94088,470.4399999996084,-0.05460746686792327 +94089,470.4449999996084,-0.054607400472303384 +94090,470.4499999996084,-0.05460733407396765 +94091,470.4549999996084,-0.054607267672915814 +94092,470.4599999996084,-0.054607201269147636 +94093,470.4649999996084,-0.05460713486266286 +94094,470.4699999996084,-0.05460706845346124 +94095,470.4749999996084,-0.054607002041542514 +94096,470.47999999960837,-0.05460693562690644 +94097,470.48499999960836,-0.05460686920955276 +94098,470.48999999960836,-0.054606802789481226 +94099,470.49499999960835,-0.0546067363666916 +94100,470.49999999960835,-0.054606669941183614 +94101,470.50499999960834,-0.05460660351295702 +94102,470.50999999960834,-0.054606537082011575 +94103,470.51499999960834,-0.05460647064834701 +94104,470.51999999960833,-0.0546064042119631 +94105,470.5249999996083,-0.05460633777285956 +94106,470.5299999996083,-0.05460627133103617 +94107,470.5349999996083,-0.05460620488649266 +94108,470.5399999996083,-0.05460613843922879 +94109,470.5449999996083,-0.0546060719892443 +94110,470.5499999996083,-0.054606005536538944 +94111,470.5549999996083,-0.05460593908111247 +94112,470.5599999996083,-0.05460587262296461 +94113,470.5649999996083,-0.054605806162095136 +94114,470.5699999996083,-0.05460573969850378 +94115,470.5749999996083,-0.0546056732321903 +94116,470.5799999996083,-0.05460560676315444 +94117,470.58499999960827,-0.05460554029139594 +94118,470.58999999960827,-0.05460547381691457 +94119,470.59499999960826,-0.05460540733971005 +94120,470.59999999960826,-0.05460534085978215 +94121,470.60499999960825,-0.0546052743771306 +94122,470.60999999960825,-0.05460520789175516 +94123,470.61499999960824,-0.05460514140365556 +94124,470.61999999960824,-0.05460507491283157 +94125,470.62499999960824,-0.054605008419282924 +94126,470.62999999960823,-0.05460494192300938 +94127,470.6349999996082,-0.05460487542401067 +94128,470.6399999996082,-0.05460480892228655 +94129,470.6449999996082,-0.05460474241783676 +94130,470.6499999996082,-0.05460467591066106 +94131,470.6549999996082,-0.05460460940075919 +94132,470.6599999996082,-0.054604542888130894 +94133,470.6649999996082,-0.05460447637277592 +94134,470.6699999996082,-0.05460440985469403 +94135,470.6749999996082,-0.05460434333388494 +94136,470.6799999996082,-0.05460427681034843 +94137,470.6849999996082,-0.05460421028408422 +94138,470.6899999996082,-0.054604143755092066 +94139,470.69499999960817,-0.05460407722337172 +94140,470.69999999960817,-0.05460401068892293 +94141,470.70499999960816,-0.05460394415174542 +94142,470.70999999960816,-0.05460387761183897 +94143,470.71499999960815,-0.054603811069203305 +94144,470.71999999960815,-0.05460374452383818 +94145,470.72499999960814,-0.05460367797574332 +94146,470.72999999960814,-0.0546036114249185 +94147,470.73499999960814,-0.054603544871363444 +94148,470.73999999960813,-0.05460347831507791 +94149,470.7449999996081,-0.054603411756061634 +94150,470.7499999996081,-0.054603345194314375 +94151,470.7549999996081,-0.05460327862983587 +94152,470.7599999996081,-0.054603212062625875 +94153,470.7649999996081,-0.05460314549268412 +94154,470.7699999996081,-0.05460307892001036 +94155,470.7749999996081,-0.05460301234460434 +94156,470.7799999996081,-0.05460294576646581 +94157,470.7849999996081,-0.054602879185594505 +94158,470.7899999996081,-0.05460281260199017 +94159,470.7949999996081,-0.054602746015652556 +94160,470.7999999996081,-0.05460267942658142 +94161,470.80499999960807,-0.05460261283477648 +94162,470.80999999960807,-0.054602546240237505 +94163,470.81499999960806,-0.054602479642964226 +94164,470.81999999960806,-0.0546024130429564 +94165,470.82499999960805,-0.054602346440213764 +94166,470.82999999960805,-0.054602279834736055 +94167,470.83499999960804,-0.05460221322652302 +94168,470.83999999960804,-0.05460214661557443 +94169,470.84499999960804,-0.054602080001889985 +94170,470.84999999960803,-0.05460201338546948 +94171,470.854999999608,-0.05460194676631262 +94172,470.859999999608,-0.05460188014441917 +94173,470.864999999608,-0.054601813519788864 +94174,470.869999999608,-0.05460174689242145 +94175,470.874999999608,-0.05460168026231666 +94176,470.879999999608,-0.05460161362947426 +94177,470.884999999608,-0.054601546993893975 +94178,470.889999999608,-0.05460148035557556 +94179,470.894999999608,-0.05460141371451877 +94180,470.899999999608,-0.05460134707072334 +94181,470.904999999608,-0.054601280424189 +94182,470.909999999608,-0.05460121377491551 +94183,470.91499999960797,-0.05460114712290261 +94184,470.91999999960797,-0.05460108046815003 +94185,470.92499999960796,-0.054601013810657524 +94186,470.92999999960796,-0.05460094715042483 +94187,470.93499999960795,-0.05460088048745171 +94188,470.93999999960795,-0.05460081382173789 +94189,470.94499999960794,-0.05460074715328313 +94190,470.94999999960794,-0.05460068048208715 +94191,470.95499999960794,-0.054600613808149706 +94192,470.95999999960793,-0.05460054713147055 +94193,470.9649999996079,-0.05460048045204941 +94194,470.9699999996079,-0.05460041376988603 +94195,470.9749999996079,-0.05460034708498017 +94196,470.9799999996079,-0.05460028039733156 +94197,470.9849999996079,-0.05460021370693994 +94198,470.9899999996079,-0.054600147013805056 +94199,470.9949999996079,-0.05460008031792665 +94200,470.9999999996079,-0.054600013619304465 +94201,471.0049999996079,-0.05459994691793824 +94202,471.0099999996079,-0.05459988021382773 +94203,471.0149999996079,-0.05459981350697267 +94204,471.0199999996079,-0.054599746797372804 +94205,471.02499999960787,-0.05459968008502787 +94206,471.02999999960787,-0.054599613369937613 +94207,471.03499999960786,-0.05459954665210178 +94208,471.03999999960786,-0.05459947993152011 +94209,471.04499999960785,-0.05459941320819233 +94210,471.04999999960785,-0.054599346482118206 +94211,471.05499999960784,-0.05459927975329747 +94212,471.05999999960784,-0.054599213021729855 +94213,471.06499999960783,-0.054599146287415114 +94214,471.06999999960783,-0.05459907955035298 +94215,471.0749999996078,-0.05459901281054322 +94216,471.0799999996078,-0.054598946067985536 +94217,471.0849999996078,-0.054598879322679705 +94218,471.0899999996078,-0.054598812574625455 +94219,471.0949999996078,-0.05459874582382253 +94220,471.0999999996078,-0.05459867907027065 +94221,471.1049999996078,-0.054598612313969584 +94222,471.1099999996078,-0.05459854555491906 +94223,471.1149999996078,-0.05459847879311882 +94224,471.1199999996078,-0.054598412028568605 +94225,471.1249999996078,-0.054598345261268166 +94226,471.1299999996078,-0.05459827849121725 +94227,471.13499999960777,-0.05459821171841557 +94228,471.13999999960777,-0.054598144942862886 +94229,471.14499999960776,-0.054598078164558944 +94230,471.14999999960776,-0.05459801138350346 +94231,471.15499999960775,-0.054597944599696205 +94232,471.15999999960775,-0.05459787781313691 +94233,471.16499999960774,-0.054597811023825285 +94234,471.16999999960774,-0.054597744231761114 +94235,471.17499999960773,-0.05459767743694411 +94236,471.17999999960773,-0.054597610639374024 +94237,471.1849999996077,-0.054597543839050605 +94238,471.1899999996077,-0.054597477035973584 +94239,471.1949999996077,-0.0545974102301427 +94240,471.1999999996077,-0.0545973434215577 +94241,471.2049999996077,-0.0545972766102183 +94242,471.2099999996077,-0.05459720979612428 +94243,471.2149999996077,-0.05459714297927535 +94244,471.2199999996077,-0.054597076159671264 +94245,471.2249999996077,-0.05459700933731175 +94246,471.2299999996077,-0.05459694251219655 +94247,471.2349999996077,-0.05459687568432541 +94248,471.2399999996077,-0.05459680885369808 +94249,471.24499999960767,-0.05459674202031428 +94250,471.24999999960767,-0.054596675184173764 +94251,471.25499999960766,-0.05459660834527625 +94252,471.25999999960766,-0.0545965415036215 +94253,471.26499999960765,-0.054596474659209235 +94254,471.26999999960765,-0.05459640781203922 +94255,471.27499999960764,-0.05459634096211117 +94256,471.27999999960764,-0.054596274109424844 +94257,471.28499999960763,-0.054596207253979956 +94258,471.28999999960763,-0.05459614039577626 +94259,471.2949999996076,-0.0545960735348135 +94260,471.2999999996076,-0.0545960066710914 +94261,471.3049999996076,-0.054595939804609715 +94262,471.3099999996076,-0.054595872935368175 +94263,471.3149999996076,-0.054595806063366524 +94264,471.3199999996076,-0.0545957391886045 +94265,471.3249999996076,-0.05459567231108183 +94266,471.3299999996076,-0.05459560543079826 +94267,471.3349999996076,-0.054595538547753536 +94268,471.3399999996076,-0.054595471661947385 +94269,471.3449999996076,-0.054595404773379555 +94270,471.3499999996076,-0.054595337882049774 +94271,471.35499999960757,-0.05459527098795779 +94272,471.35999999960757,-0.05459520409110334 +94273,471.36499999960756,-0.05459513719148616 +94274,471.36999999960756,-0.05459507028910598 +94275,471.37499999960755,-0.05459500338396255 +94276,471.37999999960755,-0.054594936476055594 +94277,471.38499999960754,-0.05459486956538487 +94278,471.38999999960754,-0.05459480265195009 +94279,471.39499999960753,-0.054594735735751014 +94280,471.39999999960753,-0.05459466881678738 +94281,471.4049999996075,-0.0545946018950589 +94282,471.4099999996075,-0.05459453497056534 +94283,471.4149999996075,-0.05459446804330642 +94284,471.4199999996075,-0.05459440111328189 +94285,471.4249999996075,-0.05459433418049149 +94286,471.4299999996075,-0.05459426724493494 +94287,471.4349999996075,-0.05459420030661198 +94288,471.4399999996075,-0.05459413336552235 +94289,471.4449999996075,-0.0545940664216658 +94290,471.4499999996075,-0.05459399947504205 +94291,471.4549999996075,-0.05459393252565085 +94292,471.4599999996075,-0.054593865573491926 +94293,471.46499999960747,-0.05459379861856502 +94294,471.46999999960747,-0.054593731660869865 +94295,471.47499999960746,-0.05459366470040621 +94296,471.47999999960746,-0.05459359773717377 +94297,471.48499999960745,-0.0545935307711723 +94298,471.48999999960745,-0.05459346380240153 +94299,471.49499999960744,-0.054593396830861195 +94300,471.49999999960744,-0.05459332985655104 +94301,471.50499999960743,-0.054593262879470784 +94302,471.50999999960743,-0.05459319589962019 +94303,471.5149999996074,-0.05459312891699897 +94304,471.5199999996074,-0.05459306193160685 +94305,471.5249999996074,-0.0545929949434436 +94306,471.5299999996074,-0.05459292795250893 +94307,471.5349999996074,-0.05459286095880259 +94308,471.5399999996074,-0.05459279396232431 +94309,471.5449999996074,-0.05459272696307383 +94310,471.5499999996074,-0.054592659961050886 +94311,471.5549999996074,-0.0545925929562552 +94312,471.5599999996074,-0.05459252594868653 +94313,471.5649999996074,-0.05459245893834459 +94314,471.5699999996074,-0.05459239192522914 +94315,471.57499999960737,-0.05459232490933989 +94316,471.57999999960737,-0.05459225789067659 +94317,471.58499999960736,-0.05459219086923898 +94318,471.58999999960736,-0.05459212384502678 +94319,471.59499999960735,-0.054592056818039726 +94320,471.59999999960735,-0.05459198978827756 +94321,471.60499999960734,-0.05459192275574001 +94322,471.60999999960734,-0.054591855720426824 +94323,471.61499999960733,-0.05459178868233772 +94324,471.61999999960733,-0.05459172164147245 +94325,471.6249999996073,-0.05459165459783074 +94326,471.6299999996073,-0.054591587551412316 +94327,471.6349999996073,-0.05459152050221694 +94328,471.6399999996073,-0.05459145345024432 +94329,471.6449999996073,-0.0545913863954942 +94330,471.6499999996073,-0.054591319337966314 +94331,471.6549999996073,-0.05459125227766039 +94332,471.6599999996073,-0.05459118521457617 +94333,471.6649999996073,-0.05459111814871339 +94334,471.6699999996073,-0.05459105108007178 +94335,471.6749999996073,-0.054590984008651075 +94336,471.6799999996073,-0.054590916934451006 +94337,471.68499999960727,-0.05459084985747131 +94338,471.68999999960727,-0.054590782777711726 +94339,471.69499999960726,-0.05459071569517198 +94340,471.69999999960726,-0.0545906486098518 +94341,471.70499999960725,-0.05459058152175093 +94342,471.70999999960725,-0.05459051443086911 +94343,471.71499999960724,-0.05459044733720606 +94344,471.71999999960724,-0.05459038024076152 +94345,471.72499999960723,-0.05459031314153522 +94346,471.72999999960723,-0.05459024603952689 +94347,471.7349999996072,-0.05459017893473627 +94348,471.7399999996072,-0.0545901118271631 +94349,471.7449999996072,-0.054590044716807104 +94350,471.7499999996072,-0.054589977603668 +94351,471.7549999996072,-0.05458991048774556 +94352,471.7599999996072,-0.05458984336903947 +94353,471.7649999996072,-0.054589776247549494 +94354,471.7699999996072,-0.054589709123275355 +94355,471.7749999996072,-0.0545896419962168 +94356,471.7799999996072,-0.05458957486637354 +94357,471.7849999996072,-0.054589507733745324 +94358,471.7899999996072,-0.05458944059833188 +94359,471.79499999960717,-0.054589373460132935 +94360,471.79999999960717,-0.054589306319148226 +94361,471.80499999960716,-0.05458923917537749 +94362,471.80999999960716,-0.054589172028820444 +94363,471.81499999960715,-0.05458910487947684 +94364,471.81999999960715,-0.0545890377273464 +94365,471.82499999960714,-0.05458897057242885 +94366,471.82999999960714,-0.05458890341472393 +94367,471.83499999960713,-0.05458883625423137 +94368,471.83999999960713,-0.05458876909095091 +94369,471.8449999996071,-0.05458870192488226 +94370,471.8499999996071,-0.05458863475602517 +94371,471.8549999996071,-0.054588567584379376 +94372,471.8599999996071,-0.054588500409944604 +94373,471.8649999996071,-0.05458843323272058 +94374,471.8699999996071,-0.05458836605270703 +94375,471.8749999996071,-0.0545882988699037 +94376,471.8799999996071,-0.05458823168431032 +94377,471.8849999996071,-0.05458816449592661 +94378,471.8899999996071,-0.05458809730475231 +94379,471.8949999996071,-0.054588030110787146 +94380,471.8999999996071,-0.054587962914030855 +94381,471.90499999960707,-0.05458789571448317 +94382,471.90999999960707,-0.05458782851214382 +94383,471.91499999960706,-0.05458776130701253 +94384,471.91999999960706,-0.054587694099089035 +94385,471.92499999960705,-0.05458762688837307 +94386,471.92999999960705,-0.05458755967486435 +94387,471.93499999960704,-0.05458749245856262 +94388,471.93999999960704,-0.05458742523946761 +94389,471.94499999960703,-0.05458735801757904 +94390,471.94999999960703,-0.054587290792896655 +94391,471.954999999607,-0.05458722356542017 +94392,471.959999999607,-0.05458715633514933 +94393,471.964999999607,-0.05458708910208387 +94394,471.969999999607,-0.054587021866223495 +94395,471.974999999607,-0.05458695462756795 +94396,471.979999999607,-0.05458688738611697 +94397,471.984999999607,-0.05458682014187028 +94398,471.989999999607,-0.054586752894827596 +94399,471.994999999607,-0.054586685644988676 +94400,471.999999999607,-0.05458661839235323 +94401,472.004999999607,-0.05458655113692099 +94402,472.009999999607,-0.054586483878691694 +94403,472.01499999960697,-0.054586416617665064 +94404,472.01999999960697,-0.05458634935384083 +94405,472.02499999960696,-0.05458628208721872 +94406,472.02999999960696,-0.054586214817798476 +94407,472.03499999960695,-0.05458614754557982 +94408,472.03999999960695,-0.05458608027056248 +94409,472.04499999960694,-0.05458601299274618 +94410,472.04999999960694,-0.05458594571213065 +94411,472.05499999960693,-0.05458587842871563 +94412,472.05999999960693,-0.05458581114250083 +94413,472.0649999996069,-0.054585743853485996 +94414,472.0699999996069,-0.054585676561670855 +94415,472.0749999996069,-0.05458560926705512 +94416,472.0799999996069,-0.054585541969638544 +94417,472.0849999996069,-0.05458547466942083 +94418,472.0899999996069,-0.05458540736640174 +94419,472.0949999996069,-0.054585340060580974 +94420,472.0999999996069,-0.05458527275195827 +94421,472.1049999996069,-0.05458520544053336 +94422,472.1099999996069,-0.054585138126305964 +94423,472.1149999996069,-0.054585070809275806 +94424,472.1199999996069,-0.054585003489442625 +94425,472.12499999960687,-0.05458493616680616 +94426,472.12999999960687,-0.05458486884136612 +94427,472.13499999960686,-0.05458480151312223 +94428,472.13999999960686,-0.05458473418207423 +94429,472.14499999960685,-0.054584666848221844 +94430,472.14999999960685,-0.0545845995115648 +94431,472.15499999960684,-0.05458453217210283 +94432,472.15999999960684,-0.05458446482983566 +94433,472.16499999960683,-0.054584397484763 +94434,472.16999999960683,-0.0545843301368846 +94435,472.1749999996068,-0.05458426278620018 +94436,472.1799999996068,-0.05458419543270948 +94437,472.1849999996068,-0.0545841280764122 +94438,472.1899999996068,-0.05458406071730809 +94439,472.1949999996068,-0.05458399335539687 +94440,472.1999999996068,-0.05458392599067827 +94441,472.2049999996068,-0.054583858623152015 +94442,472.2099999996068,-0.05458379125281782 +94443,472.2149999996068,-0.05458372387967543 +94444,472.2199999996068,-0.05458365650372457 +94445,472.2249999996068,-0.05458358912496496 +94446,472.2299999996068,-0.05458352174339632 +94447,472.23499999960677,-0.05458345435901839 +94448,472.23999999960677,-0.05458338697183089 +94449,472.24499999960676,-0.05458331958183355 +94450,472.24999999960676,-0.054583252189026085 +94451,472.25499999960675,-0.054583184793408235 +94452,472.25999999960675,-0.05458311739497972 +94453,472.26499999960674,-0.05458304999374028 +94454,472.26999999960674,-0.05458298258968962 +94455,472.27499999960673,-0.05458291518282748 +94456,472.27999999960673,-0.05458284777315357 +94457,472.2849999996067,-0.05458278036066764 +94458,472.2899999996067,-0.05458271294536939 +94459,472.2949999996067,-0.054582645527258576 +94460,472.2999999996067,-0.054582578106334906 +94461,472.3049999996067,-0.0545825106825981 +94462,472.3099999996067,-0.054582443256047886 +94463,472.3149999996067,-0.054582375826684 +94464,472.3199999996067,-0.05458230839450616 +94465,472.3249999996067,-0.0545822409595141 +94466,472.3299999996067,-0.054582173521707536 +94467,472.3349999996067,-0.054582106081086185 +94468,472.3399999996067,-0.054582038637649787 +94469,472.34499999960667,-0.05458197119139807 +94470,472.34999999960667,-0.054581903742330753 +94471,472.35499999960666,-0.054581836290447557 +94472,472.35999999960666,-0.05458176883574821 +94473,472.36499999960665,-0.05458170137823244 +94474,472.36999999960665,-0.05458163391789996 +94475,472.37499999960664,-0.05458156645475051 +94476,472.37999999960664,-0.05458149898878381 +94477,472.38499999960663,-0.05458143151999957 +94478,472.38999999960663,-0.054581364048397536 +94479,472.3949999996066,-0.05458129657397743 +94480,472.3999999996066,-0.054581229096738966 +94481,472.4049999996066,-0.05458116161668187 +94482,472.4099999996066,-0.05458109413380588 +94483,472.4149999996066,-0.054581026648110695 +94484,472.4199999996066,-0.054580959159596064 +94485,472.4249999996066,-0.0545808916682617 +94486,472.4299999996066,-0.05458082417410732 +94487,472.4349999996066,-0.05458075667713266 +94488,472.4399999996066,-0.05458068917733743 +94489,472.4449999996066,-0.05458062167472137 +94490,472.4499999996066,-0.0545805541692842 +94491,472.45499999960657,-0.05458048666102565 +94492,472.45999999960657,-0.05458041914994543 +94493,472.46499999960656,-0.05458035163604326 +94494,472.46999999960656,-0.054580284119318874 +94495,472.47499999960655,-0.054580216599772004 +94496,472.47999999960655,-0.05458014907740236 +94497,472.48499999960654,-0.05458008155220965 +94498,472.48999999960654,-0.054580014024193615 +94499,472.49499999960653,-0.05457994649335399 +94500,472.49999999960653,-0.05457987895969048 +94501,472.5049999996065,-0.05457981142320281 +94502,472.5099999996065,-0.05457974388389072 +94503,472.5149999996065,-0.05457967634175391 +94504,472.5199999996065,-0.05457960879679211 +94505,472.5249999996065,-0.05457954124900506 +94506,472.5299999996065,-0.054579473698392465 +94507,472.5349999996065,-0.05457940614495404 +94508,472.5399999996065,-0.05457933858868951 +94509,472.5449999996065,-0.054579271029598614 +94510,472.5499999996065,-0.05457920346768107 +94511,472.5549999996065,-0.0545791359029366 +94512,472.5599999996065,-0.05457906833536491 +94513,472.56499999960647,-0.05457900076496574 +94514,472.56999999960647,-0.054578933191738815 +94515,472.57499999960646,-0.05457886561568384 +94516,472.57999999960646,-0.054578798036800553 +94517,472.58499999960645,-0.05457873045508866 +94518,472.58999999960645,-0.05457866287054789 +94519,472.59499999960644,-0.05457859528317796 +94520,472.59999999960644,-0.054578527692978614 +94521,472.60499999960643,-0.05457846009994954 +94522,472.60999999960643,-0.05457839250409049 +94523,472.6149999996064,-0.05457832490540116 +94524,472.6199999996064,-0.054578257303881286 +94525,472.6249999996064,-0.0545781896995306 +94526,472.6299999996064,-0.054578122092348795 +94527,472.6349999996064,-0.05457805448233562 +94528,472.6399999996064,-0.05457798686949077 +94529,472.6449999996064,-0.054577919253813986 +94530,472.6499999996064,-0.05457785163530498 +94531,472.6549999996064,-0.05457778401396348 +94532,472.6599999996064,-0.054577716389789206 +94533,472.6649999996064,-0.054577648762781865 +94534,472.6699999996064,-0.05457758113294119 +94535,472.67499999960637,-0.054577513500266905 +94536,472.67999999960637,-0.05457744586475873 +94537,472.68499999960636,-0.054577378226416375 +94538,472.68999999960636,-0.05457731058523956 +94539,472.69499999960635,-0.054577242941228024 +94540,472.69999999960635,-0.05457717529438146 +94541,472.70499999960634,-0.05457710764469961 +94542,472.70999999960634,-0.05457703999218219 +94543,472.71499999960633,-0.05457697233682892 +94544,472.71999999960633,-0.05457690467863951 +94545,472.7249999996063,-0.0545768370176137 +94546,472.7299999996063,-0.05457676935375119 +94547,472.7349999996063,-0.05457670168705171 +94548,472.7399999996063,-0.054576634017514974 +94549,472.7449999996063,-0.05457656634514071 +94550,472.7499999996063,-0.05457649866992863 +94551,472.7549999996063,-0.05457643099187844 +94552,472.7599999996063,-0.05457636331098989 +94553,472.7649999996063,-0.05457629562726268 +94554,472.7699999996063,-0.05457622794069654 +94555,472.7749999996063,-0.05457616025129119 +94556,472.7799999996063,-0.05457609255904633 +94557,472.78499999960627,-0.054576024863961695 +94558,472.78999999960627,-0.054575957166036984 +94559,472.79499999960626,-0.05457588946527194 +94560,472.79999999960626,-0.054575821761666275 +94561,472.80499999960625,-0.05457575405521972 +94562,472.80999999960625,-0.05457568634593197 +94563,472.81499999960624,-0.05457561863380276 +94564,472.81999999960624,-0.05457555091883181 +94565,472.82499999960623,-0.05457548320101883 +94566,472.82999999960623,-0.054575415480363536 +94567,472.8349999996062,-0.05457534775686564 +94568,472.8399999996062,-0.05457528003052488 +94569,472.8449999996062,-0.05457521230134097 +94570,472.8499999996062,-0.05457514456931362 +94571,472.8549999996062,-0.05457507683444256 +94572,472.8599999996062,-0.05457500909672749 +94573,472.8649999996062,-0.05457494135616814 +94574,472.8699999996062,-0.054574873612764224 +94575,472.8749999996062,-0.05457480586651546 +94576,472.8799999996062,-0.05457473811742158 +94577,472.8849999996062,-0.054574670365482275 +94578,472.8899999996062,-0.054574602610697284 +94579,472.89499999960617,-0.05457453485306631 +94580,472.89999999960617,-0.05457446709258909 +94581,472.90499999960616,-0.05457439932926532 +94582,472.90999999960616,-0.054574331563094734 +94583,472.91499999960615,-0.054574263794077045 +94584,472.91999999960615,-0.05457419602221195 +94585,472.92499999960614,-0.05457412824749919 +94586,472.92999999960614,-0.05457406046993848 +94587,472.93499999960613,-0.05457399268952953 +94588,472.93999999960613,-0.05457392490627207 +94589,472.9449999996061,-0.0545738571201658 +94590,472.9499999996061,-0.05457378933121044 +94591,472.9549999996061,-0.05457372153940571 +94592,472.9599999996061,-0.05457365374475133 +94593,472.9649999996061,-0.05457358594724701 +94594,472.9699999996061,-0.05457351814689247 +94595,472.9749999996061,-0.05457345034368743 +94596,472.9799999996061,-0.0545733825376316 +94597,472.9849999996061,-0.054573314728724696 +94598,472.9899999996061,-0.05457324691696644 +94599,472.9949999996061,-0.054573179102356546 +94600,472.9999999996061,-0.05457311128489474 +94601,473.00499999960607,-0.05457304346458072 +94602,473.00999999960607,-0.0545729756414142 +94603,473.01499999960606,-0.054572907815394915 +94604,473.01999999960606,-0.05457283998652257 +94605,473.02499999960605,-0.05457277215479688 +94606,473.02999999960605,-0.05457270432021757 +94607,473.03499999960604,-0.05457263648278435 +94608,473.03999999960604,-0.05457256864249693 +94609,473.04499999960603,-0.05457250079935503 +94610,473.04999999960603,-0.05457243295335836 +94611,473.054999999606,-0.054572365104506644 +94612,473.059999999606,-0.054572297252799586 +94613,473.064999999606,-0.054572229398236916 +94614,473.069999999606,-0.05457216154081834 +94615,473.074999999606,-0.054572093680543575 +94616,473.079999999606,-0.05457202581741234 +94617,473.084999999606,-0.05457195795142434 +94618,473.089999999606,-0.0545718900825793 +94619,473.094999999606,-0.05457182221087693 +94620,473.099999999606,-0.05457175433631695 +94621,473.104999999606,-0.05457168645889905 +94622,473.109999999606,-0.05457161857862298 +94623,473.11499999960597,-0.05457155069548843 +94624,473.11999999960597,-0.05457148280949512 +94625,473.12499999960596,-0.05457141492064278 +94626,473.12999999960596,-0.054571347028931114 +94627,473.13499999960595,-0.05457127913435983 +94628,473.13999999960595,-0.05457121123692865 +94629,473.14499999960594,-0.054571143336637276 +94630,473.14999999960594,-0.05457107543348543 +94631,473.15499999960593,-0.054571007527472834 +94632,473.15999999960593,-0.054570939618599185 +94633,473.1649999996059,-0.05457087170686421 +94634,473.1699999996059,-0.05457080379226763 +94635,473.1749999996059,-0.05457073587480913 +94636,473.1799999996059,-0.05457066795448844 +94637,473.1849999996059,-0.05457060003130529 +94638,473.1899999996059,-0.054570532105259376 +94639,473.1949999996059,-0.0545704641763504 +94640,473.1999999996059,-0.054570396244578094 +94641,473.2049999996059,-0.05457032830994217 +94642,473.2099999996059,-0.054570260372442336 +94643,473.2149999996059,-0.0545701924320783 +94644,473.2199999996059,-0.054570124488849785 +94645,473.22499999960587,-0.05457005654275649 +94646,473.22999999960587,-0.05456998859379814 +94647,473.23499999960586,-0.05456992064197445 +94648,473.23999999960586,-0.05456985268728512 +94649,473.24499999960585,-0.05456978472972988 +94650,473.24999999960585,-0.05456971676930843 +94651,473.25499999960584,-0.054569648806020485 +94652,473.25999999960584,-0.05456958083986575 +94653,473.26499999960583,-0.05456951287084395 +94654,473.26999999960583,-0.0545694448989548 +94655,473.2749999996058,-0.054569376924198 +94656,473.2799999996058,-0.05456930894657326 +94657,473.2849999996058,-0.054569240966080304 +94658,473.2899999996058,-0.05456917298271884 +94659,473.2949999996058,-0.05456910499648858 +94660,473.2999999996058,-0.05456903700738923 +94661,473.3049999996058,-0.05456896901542051 +94662,473.3099999996058,-0.054568901020582136 +94663,473.3149999996058,-0.054568833022873804 +94664,473.3199999996058,-0.05456876502229524 +94665,473.3249999996058,-0.05456869701884614 +94666,473.3299999996058,-0.05456862901252622 +94667,473.33499999960577,-0.05456856100333521 +94668,473.33999999960577,-0.05456849299127279 +94669,473.34499999960576,-0.054568424976338695 +94670,473.34999999960576,-0.054568356958532634 +94671,473.35499999960575,-0.05456828893785431 +94672,473.35999999960575,-0.05456822091430344 +94673,473.36499999960574,-0.05456815288787972 +94674,473.36999999960574,-0.05456808485858288 +94675,473.37499999960573,-0.054568016826412616 +94676,473.37999999960573,-0.05456794879136865 +94677,473.3849999996057,-0.0545678807534507 +94678,473.3899999996057,-0.05456781271265845 +94679,473.3949999996057,-0.054567744668991634 +94680,473.3999999996057,-0.05456767662244997 +94681,473.4049999996057,-0.054567608573033145 +94682,473.4099999996057,-0.054567540520740865 +94683,473.4149999996057,-0.054567472465572864 +94684,473.4199999996057,-0.05456740440752883 +94685,473.4249999996057,-0.054567336346608486 +94686,473.4299999996057,-0.05456726828281154 +94687,473.4349999996057,-0.05456720021613771 +94688,473.4399999996057,-0.054567132146586685 +94689,473.44499999960567,-0.0545670640741582 +94690,473.44999999960567,-0.05456699599885194 +94691,473.45499999960566,-0.05456692792066763 +94692,473.45999999960566,-0.05456685983960496 +94693,473.46499999960565,-0.054566791755663674 +94694,473.46999999960565,-0.05456672366884345 +94695,473.47499999960564,-0.054566655579144016 +94696,473.47999999960564,-0.05456658748656507 +94697,473.48499999960563,-0.05456651939110633 +94698,473.48999999960563,-0.0545664512927675 +94699,473.4949999996056,-0.05456638319154829 +94700,473.4999999996056,-0.0545663150874484 +94701,473.5049999996056,-0.05456624698046757 +94702,473.5099999996056,-0.05456617887060547 +94703,473.5149999996056,-0.05456611075786184 +94704,473.5199999996056,-0.054566042642236356 +94705,473.5249999996056,-0.05456597452372876 +94706,473.5299999996056,-0.05456590640233874 +94707,473.5349999996056,-0.05456583827806601 +94708,473.5399999996056,-0.054565770150910284 +94709,473.5449999996056,-0.05456570202087126 +94710,473.5499999996056,-0.05456563388794865 +94711,473.55499999960557,-0.054565565752142164 +94712,473.55999999960557,-0.054565497613451516 +94713,473.56499999960556,-0.0545654294718764 +94714,473.56999999960556,-0.054565361327416524 +94715,473.57499999960555,-0.054565293180071604 +94716,473.57999999960555,-0.05456522502984136 +94717,473.58499999960554,-0.05456515687672547 +94718,473.58999999960554,-0.054565088720723666 +94719,473.59499999960553,-0.05456502056183564 +94720,473.59999999960553,-0.054564952400061116 +94721,473.6049999996055,-0.05456488423539979 +94722,473.6099999996055,-0.054564816067851366 +94723,473.6149999996055,-0.054564747897415555 +94724,473.6199999996055,-0.054564679724092076 +94725,473.6249999996055,-0.054564611547880615 +94726,473.6299999996055,-0.0545645433687809 +94727,473.6349999996055,-0.05456447518679264 +94728,473.6399999996055,-0.05456440700191551 +94729,473.6449999996055,-0.05456433881414925 +94730,473.6499999996055,-0.05456427062349354 +94731,473.6549999996055,-0.05456420242994811 +94732,473.6599999996055,-0.05456413423351266 +94733,473.66499999960547,-0.0545640660341869 +94734,473.66999999960547,-0.05456399783197051 +94735,473.67499999960546,-0.05456392962686323 +94736,473.67999999960546,-0.05456386141886475 +94737,473.68499999960545,-0.05456379320797477 +94738,473.68999999960545,-0.054563724994193014 +94739,473.69499999960544,-0.05456365677751917 +94740,473.69999999960544,-0.05456358855795297 +94741,473.70499999960543,-0.05456352033549409 +94742,473.70999999960543,-0.054563452110142255 +94743,473.7149999996054,-0.054563383881897166 +94744,473.7199999996054,-0.054563315650758525 +94745,473.7249999996054,-0.054563247416726045 +94746,473.7299999996054,-0.05456317917979942 +94747,473.7349999996054,-0.05456311093997837 +94748,473.7399999996054,-0.05456304269726259 +94749,473.7449999996054,-0.054562974451651786 +94750,473.7499999996054,-0.054562906203145675 +94751,473.7549999996054,-0.054562837951743944 +94752,473.7599999996054,-0.05456276969744631 +94753,473.7649999996054,-0.054562701440252485 +94754,473.7699999996054,-0.054562633180162155 +94755,473.77499999960537,-0.054562564917175024 +94756,473.77999999960537,-0.054562496651290815 +94757,473.78499999960536,-0.05456242838250923 +94758,473.78999999960536,-0.05456236011082996 +94759,473.79499999960535,-0.054562291836252726 +94760,473.79999999960535,-0.05456222355877722 +94761,473.80499999960534,-0.054562155278403156 +94762,473.80999999960534,-0.05456208699513023 +94763,473.81499999960533,-0.05456201870895815 +94764,473.81999999960533,-0.054561950419886616 +94765,473.8249999996053,-0.05456188212791534 +94766,473.8299999996053,-0.05456181383304403 +94767,473.8349999996053,-0.05456174553527236 +94768,473.8399999996053,-0.05456167723460007 +94769,473.8449999996053,-0.05456160893102686 +94770,473.8499999996053,-0.05456154062455241 +94771,473.8549999996053,-0.05456147231517645 +94772,473.8599999996053,-0.054561404002898654 +94773,473.8649999996053,-0.05456133568771875 +94774,473.8699999996053,-0.05456126736963644 +94775,473.8749999996053,-0.05456119904865142 +94776,473.8799999996053,-0.05456113072476339 +94777,473.88499999960527,-0.054561062397972065 +94778,473.88999999960527,-0.05456099406827714 +94779,473.89499999960526,-0.05456092573567833 +94780,473.89999999960526,-0.05456085740017531 +94781,473.90499999960525,-0.054560789061767805 +94782,473.90999999960525,-0.05456072072045552 +94783,473.91499999960524,-0.05456065237623815 +94784,473.91999999960524,-0.05456058402911541 +94785,473.92499999960523,-0.05456051567908698 +94786,473.92999999960523,-0.05456044732615257 +94787,473.9349999996052,-0.0545603789703119 +94788,473.9399999996052,-0.05456031061156466 +94789,473.9449999996052,-0.054560242249910545 +94790,473.9499999996052,-0.05456017388534927 +94791,473.9549999996052,-0.05456010551788053 +94792,473.9599999996052,-0.054560037147504035 +94793,473.9649999996052,-0.054559968774219474 +94794,473.9699999996052,-0.05455990039802656 +94795,473.9749999996052,-0.05455983201892498 +94796,473.9799999996052,-0.054559763636914456 +94797,473.9849999996052,-0.05455969525199468 +94798,473.9899999996052,-0.05455962686416535 +94799,473.99499999960517,-0.05455955847342618 +94800,473.99999999960517,-0.05455949007977687 +94801,474.00499999960516,-0.0545594216832171 +94802,474.00999999960516,-0.05455935328374659 +94803,474.01499999960515,-0.05455928488136504 +94804,474.01999999960515,-0.054559216476072155 +94805,474.02499999960514,-0.05455914806786762 +94806,474.02999999960514,-0.05455907965675115 +94807,474.03499999960513,-0.05455901124272245 +94808,474.03999999960513,-0.05455894282578122 +94809,474.0449999996051,-0.054558874405927146 +94810,474.0499999996051,-0.05455880598315993 +94811,474.0549999996051,-0.05455873755747929 +94812,474.0599999996051,-0.054558669128884914 +94813,474.0649999996051,-0.05455860069737651 +94814,474.0699999996051,-0.05455853226295376 +94815,474.0749999996051,-0.05455846382561639 +94816,474.0799999996051,-0.054558395385364084 +94817,474.0849999996051,-0.05455832694219655 +94818,474.0899999996051,-0.05455825849611348 +94819,474.0949999996051,-0.054558190047114596 +94820,474.0999999996051,-0.054558121595199564 +94821,474.10499999960507,-0.054558053140368115 +94822,474.10999999960507,-0.05455798468261993 +94823,474.11499999960506,-0.054557916221954716 +94824,474.11999999960506,-0.05455784775837216 +94825,474.12499999960505,-0.05455777929187198 +94826,474.12999999960505,-0.05455771082245387 +94827,474.13499999960504,-0.054557642350117536 +94828,474.13999999960504,-0.05455757387486265 +94829,474.14499999960503,-0.05455750539668895 +94830,474.14999999960503,-0.054557436915596114 +94831,474.154999999605,-0.05455736843158384 +94832,474.159999999605,-0.05455729994465183 +94833,474.164999999605,-0.05455723145479979 +94834,474.169999999605,-0.05455716296202741 +94835,474.174999999605,-0.054557094466334374 +94836,474.179999999605,-0.05455702596772042 +94837,474.184999999605,-0.054556957466185226 +94838,474.189999999605,-0.05455688896172848 +94839,474.194999999605,-0.05455682045434989 +94840,474.199999999605,-0.05455675194404915 +94841,474.204999999605,-0.054556683430825974 +94842,474.209999999605,-0.05455661491468004 +94843,474.21499999960497,-0.05455654639561107 +94844,474.21999999960497,-0.054556477873618746 +94845,474.22499999960496,-0.054556409348702775 +94846,474.22999999960496,-0.054556340820862845 +94847,474.23499999960495,-0.05455627229009865 +94848,474.23999999960495,-0.054556203756409904 +94849,474.24499999960494,-0.05455613521979629 +94850,474.24999999960494,-0.05455606668025752 +94851,474.25499999960493,-0.054555998137793285 +94852,474.25999999960493,-0.054555929592403275 +94853,474.2649999996049,-0.054555861044087196 +94854,474.2699999996049,-0.05455579249284474 +94855,474.2749999996049,-0.05455572393867563 +94856,474.2799999996049,-0.054555655381579526 +94857,474.2849999996049,-0.054555586821556146 +94858,474.2899999996049,-0.054555518258605176 +94859,474.2949999996049,-0.05455544969272633 +94860,474.2999999996049,-0.05455538112391929 +94861,474.3049999996049,-0.05455531255218375 +94862,474.3099999996049,-0.05455524397751942 +94863,474.3149999996049,-0.054555175399926 +94864,474.3199999996049,-0.05455510681940316 +94865,474.32499999960487,-0.054555038235950634 +94866,474.32999999960487,-0.054554969649568096 +94867,474.33499999960486,-0.054554901060255234 +94868,474.33999999960486,-0.054554832468011766 +94869,474.34499999960485,-0.05455476387283737 +94870,474.34999999960485,-0.05455469527473176 +94871,474.35499999960484,-0.054554626673694616 +94872,474.35999999960484,-0.054554558069725645 +94873,474.36499999960483,-0.05455448946282453 +94874,474.36999999960483,-0.05455442085299099 +94875,474.3749999996048,-0.0545543522402247 +94876,474.3799999996048,-0.05455428362452537 +94877,474.3849999996048,-0.054554215005892685 +94878,474.3899999996048,-0.054554146384326346 +94879,474.3949999996048,-0.05455407775982604 +94880,474.3999999996048,-0.05455400913239149 +94881,474.4049999996048,-0.054553940502022356 +94882,474.4099999996048,-0.054553871868718344 +94883,474.4149999996048,-0.05455380323247917 +94884,474.4199999996048,-0.054553734593304495 +94885,474.4249999996048,-0.05455366595119405 +94886,474.4299999996048,-0.0545535973061475 +94887,474.43499999960477,-0.054553528658164555 +94888,474.43999999960477,-0.05455346000724491 +94889,474.44499999960476,-0.05455339135338825 +94890,474.44999999960476,-0.05455332269659428 +94891,474.45499999960475,-0.05455325403686268 +94892,474.45999999960475,-0.05455318537419317 +94893,474.46499999960474,-0.054553116708585425 +94894,474.46999999960474,-0.054553048040039145 +94895,474.47499999960473,-0.05455297936855402 +94896,474.47999999960473,-0.05455291069412975 +94897,474.4849999996047,-0.05455284201676604 +94898,474.4899999996047,-0.054552773336462565 +94899,474.4949999996047,-0.05455270465321903 +94900,474.4999999996047,-0.054552635967035114 +94901,474.5049999996047,-0.054552567277910524 +94902,474.5099999996047,-0.05455249858584496 +94903,474.5149999996047,-0.0545524298908381 +94904,474.5199999996047,-0.05455236119288965 +94905,474.5249999996047,-0.0545522924919993 +94906,474.5299999996047,-0.054552223788166744 +94907,474.5349999996047,-0.05455215508139166 +94908,474.5399999996047,-0.05455208637167377 +94909,474.54499999960467,-0.05455201765901275 +94910,474.54999999960467,-0.05455194894340829 +94911,474.55499999960466,-0.054551880224860086 +94912,474.55999999960466,-0.054551811503367846 +94913,474.56499999960465,-0.054551742778931246 +94914,474.56999999960465,-0.05455167405154998 +94915,474.57499999960464,-0.054551605321223745 +94916,474.57999999960464,-0.054551536587952226 +94917,474.58499999960463,-0.054551467851735126 +94918,474.58999999960463,-0.05455139911257214 +94919,474.5949999996046,-0.05455133037046295 +94920,474.5999999996046,-0.054551261625407264 +94921,474.6049999996046,-0.05455119287740476 +94922,474.6099999996046,-0.05455112412645514 +94923,474.6149999996046,-0.05455105537255808 +94924,474.6199999996046,-0.05455098661571329 +94925,474.6249999996046,-0.05455091785592045 +94926,474.6299999996046,-0.054550849093179254 +94927,474.6349999996046,-0.05455078032748939 +94928,474.6399999996046,-0.054550711558850565 +94929,474.6449999996046,-0.05455064278726246 +94930,474.6499999996046,-0.05455057401272477 +94931,474.65499999960457,-0.05455050523523718 +94932,474.65999999960457,-0.0545504364547994 +94933,474.66499999960456,-0.054550367671411096 +94934,474.66999999960456,-0.05455029888507197 +94935,474.67499999960455,-0.054550230095781714 +94936,474.67999999960455,-0.054550161303540026 +94937,474.68499999960454,-0.05455009250834658 +94938,474.68999999960454,-0.05455002371020109 +94939,474.69499999960453,-0.05454995490910322 +94940,474.69999999960453,-0.054549886105052695 +94941,474.7049999996045,-0.054549817298049176 +94942,474.7099999996045,-0.05454974848809236 +94943,474.7149999996045,-0.05454967967518195 +94944,474.7199999996045,-0.05454961085931762 +94945,474.7249999996045,-0.054549542040499076 +94946,474.7299999996045,-0.054549473218726 +94947,474.7349999996045,-0.05454940439399807 +94948,474.7399999996045,-0.054549335566315006 +94949,474.7449999996045,-0.054549266735676484 +94950,474.7499999996045,-0.05454919790208219 +94951,474.7549999996045,-0.054549129065531804 +94952,474.7599999996045,-0.054549060226025035 +94953,474.76499999960447,-0.05454899138356157 +94954,474.76999999960447,-0.0545489225381411 +94955,474.77499999960446,-0.0545488536897633 +94956,474.77999999960446,-0.05454878483842788 +94957,474.78499999960445,-0.05454871598413451 +94958,474.78999999960445,-0.054548647126882885 +94959,474.79499999960444,-0.054548578266672705 +94960,474.79999999960444,-0.05454850940350364 +94961,474.80499999960443,-0.0545484405373754 +94962,474.80999999960443,-0.05454837166828766 +94963,474.8149999996044,-0.05454830279624012 +94964,474.8199999996044,-0.05454823392123247 +94965,474.8249999996044,-0.054548165043264374 +94966,474.8299999996044,-0.05454809616233555 +94967,474.8349999996044,-0.054548027278445675 +94968,474.8399999996044,-0.05454795839159444 +94969,474.8449999996044,-0.05454788950178153 +94970,474.8499999996044,-0.054547820609006634 +94971,474.8549999996044,-0.05454775171326945 +94972,474.8599999996044,-0.054547682814569655 +94973,474.8649999996044,-0.05454761391290694 +94974,474.8699999996044,-0.05454754500828099 +94975,474.87499999960437,-0.0545474761006915 +94976,474.87999999960437,-0.05454740719013816 +94977,474.88499999960436,-0.05454733827662065 +94978,474.88999999960436,-0.05454726936013866 +94979,474.89499999960435,-0.05454720044069188 +94980,474.89999999960435,-0.05454713151828 +94981,474.90499999960434,-0.05454706259290269 +94982,474.90999999960434,-0.054546993664559666 +94983,474.91499999960433,-0.054546924733250596 +94984,474.91999999960433,-0.054546855798975176 +94985,474.9249999996043,-0.05454678686173308 +94986,474.9299999996043,-0.054546717921524025 +94987,474.9349999996043,-0.05454664897834766 +94988,474.9399999996043,-0.05454658003220371 +94989,474.9449999996043,-0.05454651108309183 +94990,474.9499999996043,-0.054546442131011716 +94991,474.9549999996043,-0.05454637317596307 +94992,474.9599999996043,-0.05454630421794556 +94993,474.9649999996043,-0.05454623525695888 +94994,474.9699999996043,-0.05454616629300271 +94995,474.9749999996043,-0.05454609732607675 +94996,474.9799999996043,-0.054546028356180686 +94997,474.98499999960427,-0.0545459593833142 +94998,474.98999999960427,-0.05454589040747696 +94999,474.99499999960426,-0.05454582142866868 +95000,474.99999999960426,-0.05454575244688903 +95001,475.00499999960425,-0.0545456834621377 +95002,475.00999999960425,-0.05454561447441438 +95003,475.01499999960424,-0.05454554548371875 +95004,475.01999999960424,-0.0545454764900505 +95005,475.02499999960423,-0.05454540749340932 +95006,475.02999999960423,-0.054545338493794886 +95007,475.0349999996042,-0.054545269491206895 +95008,475.0399999996042,-0.05454520048564501 +95009,475.0449999996042,-0.05454513147710894 +95010,475.0499999996042,-0.054545062465598364 +95011,475.0549999996042,-0.05454499345111296 +95012,475.0599999996042,-0.05454492443365243 +95013,475.0649999996042,-0.05454485541321644 +95014,475.0699999996042,-0.054544786389804686 +95015,475.0749999996042,-0.05454471736341684 +95016,475.0799999996042,-0.0545446483340526 +95017,475.0849999996042,-0.05454457930171165 +95018,475.0899999996042,-0.054544510266393675 +95019,475.09499999960417,-0.05454444122809835 +95020,475.09999999960417,-0.05454437218682537 +95021,475.10499999960416,-0.05454430314257442 +95022,475.10999999960416,-0.05454423409534517 +95023,475.11499999960415,-0.05454416504513732 +95024,475.11999999960415,-0.05454409599195054 +95025,475.12499999960414,-0.05454402693578453 +95026,475.12999999960414,-0.054543957876638974 +95027,475.13499999960413,-0.05454388881451354 +95028,475.13999999960413,-0.05454381974940792 +95029,475.1449999996041,-0.0545437506813218 +95030,475.1499999996041,-0.054543681610254864 +95031,475.1549999996041,-0.05454361253620679 +95032,475.1599999996041,-0.05454354345917727 +95033,475.1649999996041,-0.054543474379165985 +95034,475.1699999996041,-0.054543405296172624 +95035,475.1749999996041,-0.05454333621019686 +95036,475.1799999996041,-0.05454326712123837 +95037,475.1849999996041,-0.054543198029296844 +95038,475.1899999996041,-0.05454312893437198 +95039,475.1949999996041,-0.054543059836463445 +95040,475.1999999996041,-0.05454299073557092 +95041,475.20499999960407,-0.0545429216316941 +95042,475.20999999960407,-0.05454285252483265 +95043,475.21499999960406,-0.05454278341498628 +95044,475.21999999960406,-0.05454271430215465 +95045,475.22499999960405,-0.05454264518633745 +95046,475.22999999960405,-0.054542576067534355 +95047,475.23499999960404,-0.05454250694574506 +95048,475.23999999960404,-0.05454243782096924 +95049,475.24499999960403,-0.05454236869320658 +95050,475.24999999960403,-0.054542299562456764 +95051,475.254999999604,-0.05454223042871947 +95052,475.259999999604,-0.05454216129199438 +95053,475.264999999604,-0.054542092152281174 +95054,475.269999999604,-0.05454202300957954 +95055,475.274999999604,-0.05454195386388915 +95056,475.279999999604,-0.05454188471520969 +95057,475.284999999604,-0.05454181556354085 +95058,475.289999999604,-0.054541746408882305 +95059,475.294999999604,-0.05454167725123374 +95060,475.299999999604,-0.05454160809059482 +95061,475.304999999604,-0.05454153892696525 +95062,475.309999999604,-0.0545414697603447 +95063,475.31499999960397,-0.05454140059073285 +95064,475.31999999960397,-0.05454133141812939 +95065,475.32499999960396,-0.05454126224253399 +95066,475.32999999960396,-0.054541193063946336 +95067,475.33499999960395,-0.05454112388236611 +95068,475.33999999960395,-0.05454105469779299 +95069,475.34499999960394,-0.054540985510226646 +95070,475.34999999960394,-0.05454091631966678 +95071,475.35499999960393,-0.054540847126113054 +95072,475.35999999960393,-0.05454077792956515 +95073,475.3649999996039,-0.05454070873002276 +95074,475.3699999996039,-0.05454063952748556 +95075,475.3749999996039,-0.054540570321953225 +95076,475.3799999996039,-0.054540501113425434 +95077,475.3849999996039,-0.05454043190190189 +95078,475.3899999996039,-0.05454036268738224 +95079,475.3949999996039,-0.054540293469866184 +95080,475.3999999996039,-0.05454022424935339 +95081,475.4049999996039,-0.05454015502584355 +95082,475.4099999996039,-0.05454008579933633 +95083,475.4149999996039,-0.05454001656983142 +95084,475.4199999996039,-0.0545399473373285 +95085,475.42499999960387,-0.05453987810182724 +95086,475.42999999960387,-0.05453980886332732 +95087,475.43499999960386,-0.05453973962182843 +95088,475.43999999960386,-0.05453967037733024 +95089,475.44499999960385,-0.054539601129832437 +95090,475.44999999960385,-0.05453953187933469 +95091,475.45499999960384,-0.05453946262583669 +95092,475.45999999960384,-0.0545393933693381 +95093,475.46499999960383,-0.05453932410983862 +95094,475.46999999960383,-0.054539254847337904 +95095,475.4749999996038,-0.05453918558183564 +95096,475.4799999996038,-0.05453911631333152 +95097,475.4849999996038,-0.0545390470418252 +95098,475.4899999996038,-0.054538977767316366 +95099,475.4949999996038,-0.054538908489804715 +95100,475.4999999996038,-0.054538839209289904 +95101,475.5049999996038,-0.05453876992577162 +95102,475.5099999996038,-0.05453870063924953 +95103,475.5149999996038,-0.05453863134972332 +95104,475.5199999996038,-0.054538562057192666 +95105,475.5249999996038,-0.05453849276165724 +95106,475.5299999996038,-0.05453842346311673 +95107,475.53499999960377,-0.05453835416157081 +95108,475.53999999960376,-0.05453828485701916 +95109,475.54499999960376,-0.054538215549461456 +95110,475.54999999960376,-0.05453814623889737 +95111,475.55499999960375,-0.05453807692532659 +95112,475.55999999960375,-0.05453800760874879 +95113,475.56499999960374,-0.05453793828916363 +95114,475.56999999960374,-0.05453786896657081 +95115,475.57499999960373,-0.05453779964097 +95116,475.57999999960373,-0.054537730312360866 +95117,475.5849999996037,-0.054537660980743086 +95118,475.5899999996037,-0.05453759164611636 +95119,475.5949999996037,-0.054537522308480336 +95120,475.5999999996037,-0.054537452967834694 +95121,475.6049999996037,-0.05453738362417913 +95122,475.6099999996037,-0.05453731427751331 +95123,475.6149999996037,-0.054537244927836896 +95124,475.6199999996037,-0.05453717557514959 +95125,475.6249999996037,-0.05453710621945105 +95126,475.6299999996037,-0.054537036860740955 +95127,475.6349999996037,-0.054536967499018985 +95128,475.6399999996037,-0.05453689813428481 +95129,475.64499999960367,-0.05453682876653812 +95130,475.64999999960366,-0.054536759395778574 +95131,475.65499999960366,-0.05453669002200586 +95132,475.65999999960366,-0.05453662064521964 +95133,475.66499999960365,-0.054536551265419606 +95134,475.66999999960365,-0.05453648188260542 +95135,475.67499999960364,-0.05453641249677675 +95136,475.67999999960364,-0.054536343107933295 +95137,475.68499999960363,-0.0545362737160747 +95138,475.68999999960363,-0.054536204321200675 +95139,475.6949999996036,-0.05453613492331087 +95140,475.6999999996036,-0.05453606552240497 +95141,475.7049999996036,-0.054535996118482644 +95142,475.7099999996036,-0.054535926711543566 +95143,475.7149999996036,-0.05453585730158743 +95144,475.7199999996036,-0.054535787888613886 +95145,475.7249999996036,-0.054535718472622605 +95146,475.7299999996036,-0.054535649053613286 +95147,475.7349999996036,-0.054535579631585576 +95148,475.7399999996036,-0.05453551020653917 +95149,475.7449999996036,-0.05453544077847374 +95150,475.7499999996036,-0.054535371347388964 +95151,475.75499999960357,-0.0545353019132845 +95152,475.75999999960356,-0.05453523247616002 +95153,475.76499999960356,-0.05453516303601521 +95154,475.76999999960356,-0.054535093592849734 +95155,475.77499999960355,-0.054535024146663294 +95156,475.77999999960355,-0.05453495469745552 +95157,475.78499999960354,-0.05453488524522612 +95158,475.78999999960354,-0.05453481578997476 +95159,475.79499999960353,-0.0545347463317011 +95160,475.79999999960353,-0.05453467687040482 +95161,475.8049999996035,-0.0545346074060856 +95162,475.8099999996035,-0.0545345379387431 +95163,475.8149999996035,-0.054534468468377 +95164,475.8199999996035,-0.05453439899498697 +95165,475.8249999996035,-0.05453432951857269 +95166,475.8299999996035,-0.05453426003913383 +95167,475.8349999996035,-0.054534190556670054 +95168,475.8399999996035,-0.05453412107118103 +95169,475.8449999996035,-0.05453405158266645 +95170,475.8499999996035,-0.054533982091125976 +95171,475.8549999996035,-0.05453391259655929 +95172,475.8599999996035,-0.05453384309896605 +95173,475.86499999960347,-0.05453377359834593 +95174,475.86999999960346,-0.054533704094698605 +95175,475.87499999960346,-0.05453363458802376 +95176,475.87999999960346,-0.05453356507832105 +95177,475.88499999960345,-0.054533495565590145 +95178,475.88999999960345,-0.054533426049830726 +95179,475.89499999960344,-0.05453335653104246 +95180,475.89999999960344,-0.05453328700922502 +95181,475.90499999960343,-0.05453321748437809 +95182,475.90999999960343,-0.05453314795650131 +95183,475.9149999996034,-0.054533078425594385 +95184,475.9199999996034,-0.054533008891656964 +95185,475.9249999996034,-0.054532939354688725 +95186,475.9299999996034,-0.054532869814689335 +95187,475.9349999996034,-0.05453280027165847 +95188,475.9399999996034,-0.054532730725595814 +95189,475.9449999996034,-0.05453266117650101 +95190,475.9499999996034,-0.05453259162437374 +95191,475.9549999996034,-0.05453252206921368 +95192,475.9599999996034,-0.0545324525110205 +95193,475.9649999996034,-0.05453238294979386 +95194,475.9699999996034,-0.054532313385533444 +95195,475.97499999960337,-0.054532243818238915 +95196,475.97999999960336,-0.05453217424790994 +95197,475.98499999960336,-0.05453210467454619 +95198,475.98999999960336,-0.05453203509814735 +95199,475.99499999960335,-0.05453196551871307 +95200,475.99999999960335,-0.05453189593624303 +95201,476.00499999960334,-0.05453182635073691 +95202,476.00999999960334,-0.05453175676219435 +95203,476.01499999960333,-0.054531687170615045 +95204,476.01999999960333,-0.054531617575998656 +95205,476.0249999996033,-0.05453154797834485 +95206,476.0299999996033,-0.0545314783776533 +95207,476.0349999996033,-0.05453140877392367 +95208,476.0399999996033,-0.054531339167155635 +95209,476.0449999996033,-0.05453126955734886 +95210,476.0499999996033,-0.054531199944503034 +95211,476.0549999996033,-0.05453113032861779 +95212,476.0599999996033,-0.054531060709692825 +95213,476.0649999996033,-0.054530991087727784 +95214,476.0699999996033,-0.05453092146272236 +95215,476.0749999996033,-0.054530851834676215 +95216,476.0799999996033,-0.054530782203589 +95217,476.08499999960327,-0.054530712569460404 +95218,476.08999999960326,-0.054530642932290097 +95219,476.09499999960326,-0.05453057329207772 +95220,476.09999999960326,-0.05453050364882296 +95221,476.10499999960325,-0.05453043400252548 +95222,476.10999999960325,-0.054530364353184965 +95223,476.11499999960324,-0.05453029470080106 +95224,476.11999999960324,-0.05453022504537346 +95225,476.12499999960323,-0.0545301553869018 +95226,476.1299999996032,-0.054530085725385764 +95227,476.1349999996032,-0.05453001606082502 +95228,476.1399999996032,-0.05452994639321924 +95229,476.1449999996032,-0.05452987672256808 +95230,476.1499999996032,-0.054529807048871205 +95231,476.1549999996032,-0.054529737372128295 +95232,476.1599999996032,-0.054529667692339016 +95233,476.1649999996032,-0.054529598009503036 +95234,476.1699999996032,-0.05452952832362 +95235,476.1749999996032,-0.0545294586346896 +95236,476.1799999996032,-0.05452938894271149 +95237,476.1849999996032,-0.05452931924768535 +95238,476.1899999996032,-0.05452924954961084 +95239,476.19499999960317,-0.05452917984848762 +95240,476.19999999960316,-0.05452911014431536 +95241,476.20499999960316,-0.054529040437093716 +95242,476.20999999960316,-0.05452897072682237 +95243,476.21499999960315,-0.05452890101350098 +95244,476.21999999960315,-0.05452883129712923 +95245,476.22499999960314,-0.05452876157770676 +95246,476.22999999960314,-0.05452869185523325 +95247,476.23499999960313,-0.054528622129708354 +95248,476.2399999996031,-0.05452855240113175 +95249,476.2449999996031,-0.05452848266950311 +95250,476.2499999996031,-0.05452841293482207 +95251,476.2549999996031,-0.05452834319708833 +95252,476.2599999996031,-0.05452827345630153 +95253,476.2649999996031,-0.054528203712461365 +95254,476.2699999996031,-0.054528133965567466 +95255,476.2749999996031,-0.05452806421561951 +95256,476.2799999996031,-0.05452799446261718 +95257,476.2849999996031,-0.054527924706560114 +95258,476.2899999996031,-0.054527854947447996 +95259,476.2949999996031,-0.05452778518528048 +95260,476.2999999996031,-0.054527715420057236 +95261,476.30499999960307,-0.05452764565177793 +95262,476.30999999960306,-0.054527575880442214 +95263,476.31499999960306,-0.05452750610604977 +95264,476.31999999960306,-0.05452743632860025 +95265,476.32499999960305,-0.05452736654809333 +95266,476.32999999960305,-0.05452729676452866 +95267,476.33499999960304,-0.054527226977905914 +95268,476.33999999960304,-0.05452715718822475 +95269,476.34499999960303,-0.05452708739548484 +95270,476.349999999603,-0.05452701759968583 +95271,476.354999999603,-0.05452694780082742 +95272,476.359999999603,-0.05452687799890923 +95273,476.364999999603,-0.05452680819393095 +95274,476.369999999603,-0.05452673838589223 +95275,476.374999999603,-0.054526668574792755 +95276,476.379999999603,-0.05452659876063216 +95277,476.384999999603,-0.054526528943410126 +95278,476.389999999603,-0.054526459123126314 +95279,476.394999999603,-0.05452638929978039 +95280,476.399999999603,-0.05452631947337201 +95281,476.404999999603,-0.05452624964390084 +95282,476.409999999603,-0.05452617981136653 +95283,476.41499999960297,-0.05452610997576876 +95284,476.41999999960296,-0.05452604013710719 +95285,476.42499999960296,-0.05452597029538148 +95286,476.42999999960296,-0.054525900450591296 +95287,476.43499999960295,-0.054525830602736296 +95288,476.43999999960295,-0.05452576075181614 +95289,476.44499999960294,-0.054525690897830485 +95290,476.44999999960294,-0.054525621040779015 +95291,476.45499999960293,-0.054525551180661366 +95292,476.4599999996029,-0.05452548131747722 +95293,476.4649999996029,-0.05452541145122622 +95294,476.4699999996029,-0.054525341581908054 +95295,476.4749999996029,-0.05452527170952236 +95296,476.4799999996029,-0.05452520183406881 +95297,476.4849999996029,-0.05452513195554707 +95298,476.4899999996029,-0.05452506207395679 +95299,476.4949999996029,-0.054524992189297634 +95300,476.4999999996029,-0.054524922301569266 +95301,476.5049999996029,-0.054524852410771346 +95302,476.5099999996029,-0.05452478251690354 +95303,476.5149999996029,-0.0545247126199655 +95304,476.5199999996029,-0.05452464271995689 +95305,476.52499999960287,-0.05452457281687738 +95306,476.52999999960286,-0.05452450291072663 +95307,476.53499999960286,-0.05452443300150428 +95308,476.53999999960286,-0.054524363089210014 +95309,476.54499999960285,-0.054524293173843476 +95310,476.54999999960285,-0.05452422325540434 +95311,476.55499999960284,-0.054524153333892246 +95312,476.55999999960284,-0.05452408340930687 +95313,476.56499999960283,-0.05452401348164787 +95314,476.5699999996028,-0.05452394355091491 +95315,476.5749999996028,-0.05452387361710764 +95316,476.5799999996028,-0.05452380368022574 +95317,476.5849999996028,-0.05452373374026885 +95318,476.5899999996028,-0.05452366379723664 +95319,476.5949999996028,-0.05452359385112875 +95320,476.5999999996028,-0.05452352390194487 +95321,476.6049999996028,-0.054523453949684636 +95322,476.6099999996028,-0.05452338399434771 +95323,476.6149999996028,-0.054523314035933766 +95324,476.6199999996028,-0.054523244074442444 +95325,476.6249999996028,-0.054523174109873423 +95326,476.6299999996028,-0.054523104142226345 +95327,476.63499999960277,-0.05452303417150088 +95328,476.63999999960276,-0.05452296419769668 +95329,476.64499999960276,-0.0545228942208134 +95330,476.64999999960276,-0.05452282424085071 +95331,476.65499999960275,-0.05452275425780826 +95332,476.65999999960275,-0.05452268427168572 +95333,476.66499999960274,-0.054522614282482736 +95334,476.66999999960274,-0.05452254429019897 +95335,476.67499999960273,-0.05452247429483407 +95336,476.6799999996027,-0.05452240429638771 +95337,476.6849999996027,-0.05452233429485953 +95338,476.6899999996027,-0.05452226429024923 +95339,476.6949999996027,-0.05452219428255641 +95340,476.6999999996027,-0.05452212427178077 +95341,476.7049999996027,-0.054522054257921955 +95342,476.7099999996027,-0.05452198424097962 +95343,476.7149999996027,-0.05452191422095342 +95344,476.7199999996027,-0.05452184419784303 +95345,476.7249999996027,-0.05452177417164808 +95346,476.7299999996027,-0.05452170414236824 +95347,476.7349999996027,-0.054521634110003166 +95348,476.7399999996027,-0.05452156407455252 +95349,476.74499999960267,-0.05452149403601595 +95350,476.74999999960266,-0.05452142399439313 +95351,476.75499999960266,-0.0545213539496837 +95352,476.75999999960266,-0.05452128390188732 +95353,476.76499999960265,-0.054521213851003655 +95354,476.76999999960265,-0.05452114379703235 +95355,476.77499999960264,-0.054521073739973065 +95356,476.77999999960264,-0.05452100367982546 +95357,476.78499999960263,-0.05452093361658919 +95358,476.7899999996026,-0.054520863550263914 +95359,476.7949999996026,-0.05452079348084928 +95360,476.7999999996026,-0.05452072340834495 +95361,476.8049999996026,-0.05452065333275057 +95362,476.8099999996026,-0.054520583254065814 +95363,476.8149999996026,-0.05452051317229032 +95364,476.8199999996026,-0.05452044308742376 +95365,476.8249999996026,-0.05452037299946578 +95366,476.8299999996026,-0.05452030290841603 +95367,476.8349999996026,-0.054520232814274185 +95368,476.8399999996026,-0.05452016271703988 +95369,476.8449999996026,-0.05452009261671278 +95370,476.8499999996026,-0.054520022513292535 +95371,476.85499999960257,-0.0545199524067788 +95372,476.85999999960256,-0.05451988229717124 +95373,476.86499999960256,-0.05451981218446949 +95374,476.86999999960256,-0.05451974206867322 +95375,476.87499999960255,-0.05451967194978209 +95376,476.87999999960255,-0.05451960182779574 +95377,476.88499999960254,-0.054519531702713835 +95378,476.88999999960254,-0.05451946157453603 +95379,476.89499999960253,-0.05451939144326197 +95380,476.8999999996025,-0.05451932130889131 +95381,476.9049999996025,-0.054519251171423706 +95382,476.9099999996025,-0.054519181030858815 +95383,476.9149999996025,-0.05451911088719629 +95384,476.9199999996025,-0.05451904074043579 +95385,476.9249999996025,-0.054518970590576955 +95386,476.9299999996025,-0.05451890043761945 +95387,476.9349999996025,-0.05451883028156293 +95388,476.9399999996025,-0.05451876012240705 +95389,476.9449999996025,-0.05451868996015145 +95390,476.9499999996025,-0.05451861979479578 +95391,476.9549999996025,-0.05451854962633972 +95392,476.9599999996025,-0.05451847945478291 +95393,476.96499999960247,-0.05451840928012498 +95394,476.96999999960246,-0.054518339102365615 +95395,476.97499999960246,-0.05451826892150446 +95396,476.97999999960246,-0.05451819873754116 +95397,476.98499999960245,-0.054518128550475366 +95398,476.98999999960245,-0.05451805836030674 +95399,476.99499999960244,-0.05451798816703493 +95400,476.99999999960244,-0.0545179179706596 +95401,477.00499999960243,-0.054517847771180385 +95402,477.0099999996024,-0.054517777568596944 +95403,477.0149999996024,-0.054517707362908924 +95404,477.0199999996024,-0.05451763715411599 +95405,477.0249999996024,-0.054517566942217786 +95406,477.0299999996024,-0.05451749672721397 +95407,477.0349999996024,-0.05451742650910418 +95408,477.0399999996024,-0.05451735628788808 +95409,477.0449999996024,-0.05451728606356531 +95410,477.0499999996024,-0.05451721583613554 +95411,477.0549999996024,-0.0545171456055984 +95412,477.0599999996024,-0.054517075371953556 +95413,477.0649999996024,-0.05451700513520065 +95414,477.0699999996024,-0.05451693489533935 +95415,477.07499999960237,-0.05451686465236928 +95416,477.07999999960236,-0.05451679440629012 +95417,477.08499999960236,-0.054516724157101494 +95418,477.08999999960236,-0.05451665390480308 +95419,477.09499999960235,-0.054516583649394504 +95420,477.09999999960235,-0.05451651339087543 +95421,477.10499999960234,-0.0545164431292455 +95422,477.10999999960234,-0.05451637286450438 +95423,477.11499999960233,-0.0545163025966517 +95424,477.1199999996023,-0.05451623232568713 +95425,477.1249999996023,-0.054516162051610306 +95426,477.1299999996023,-0.054516091774420884 +95427,477.1349999996023,-0.05451602149411852 +95428,477.1399999996023,-0.05451595121070285 +95429,477.1449999996023,-0.054515880924173546 +95430,477.1499999996023,-0.054515810634530225 +95431,477.1549999996023,-0.05451574034177257 +95432,477.1599999996023,-0.05451567004590021 +95433,477.1649999996023,-0.0545155997469128 +95434,477.1699999996023,-0.05451552944480999 +95435,477.1749999996023,-0.05451545913959142 +95436,477.1799999996023,-0.05451538883125674 +95437,477.18499999960227,-0.05451531851980562 +95438,477.18999999960226,-0.0545152482052377 +95439,477.19499999960226,-0.05451517788755261 +95440,477.19999999960226,-0.05451510756675002 +95441,477.20499999960225,-0.05451503724282958 +95442,477.20999999960225,-0.05451496691579092 +95443,477.21499999960224,-0.05451489658563371 +95444,477.21999999960224,-0.05451482625235758 +95445,477.22499999960223,-0.054514755915962186 +95446,477.2299999996022,-0.05451468557644718 +95447,477.2349999996022,-0.05451461523381221 +95448,477.2399999996022,-0.05451454488805692 +95449,477.2449999996022,-0.05451447453918095 +95450,477.2499999996022,-0.05451440418718396 +95451,477.2549999996022,-0.05451433383206559 +95452,477.2599999996022,-0.05451426347382549 +95453,477.2649999996022,-0.05451419311246332 +95454,477.2699999996022,-0.05451412274797872 +95455,477.2749999996022,-0.054514052380371325 +95456,477.2799999996022,-0.0545139820096408 +95457,477.2849999996022,-0.05451391163578678 +95458,477.2899999996022,-0.054513841258808926 +95459,477.29499999960217,-0.05451377087870687 +95460,477.29999999960216,-0.054513700495480266 +95461,477.30499999960216,-0.054513630109128755 +95462,477.30999999960216,-0.054513559719651994 +95463,477.31499999960215,-0.05451348932704963 +95464,477.31999999960215,-0.0545134189313213 +95465,477.32499999960214,-0.05451334853246665 +95466,477.32999999960214,-0.054513278130485336 +95467,477.33499999960213,-0.05451320772537699 +95468,477.3399999996021,-0.054513137317141275 +95469,477.3449999996021,-0.054513066905777834 +95470,477.3499999996021,-0.054512996491286304 +95471,477.3549999996021,-0.05451292607366633 +95472,477.3599999996021,-0.05451285565291758 +95473,477.3649999996021,-0.05451278522903968 +95474,477.3699999996021,-0.05451271480203228 +95475,477.3749999996021,-0.05451264437189502 +95476,477.3799999996021,-0.05451257393862755 +95477,477.3849999996021,-0.05451250350222952 +95478,477.3899999996021,-0.054512433062700566 +95479,477.3949999996021,-0.05451236262004035 +95480,477.3999999996021,-0.0545122921742485 +95481,477.40499999960207,-0.05451222172532467 +95482,477.40999999960206,-0.0545121512732685 +95483,477.41499999960206,-0.05451208081807964 +95484,477.41999999960206,-0.05451201035975774 +95485,477.42499999960205,-0.05451193989830243 +95486,477.42999999960205,-0.05451186943371336 +95487,477.43499999960204,-0.054511798965990184 +95488,477.43999999960204,-0.054511728495132535 +95489,477.44499999960203,-0.05451165802114005 +95490,477.449999999602,-0.0545115875440124 +95491,477.454999999602,-0.05451151706374921 +95492,477.459999999602,-0.05451144658035013 +95493,477.464999999602,-0.05451137609381479 +95494,477.469999999602,-0.05451130560414285 +95495,477.474999999602,-0.05451123511133395 +95496,477.479999999602,-0.05451116461538773 +95497,477.484999999602,-0.05451109411630384 +95498,477.489999999602,-0.05451102361408192 +95499,477.494999999602,-0.05451095310872162 +95500,477.499999999602,-0.05451088260022258 +95501,477.504999999602,-0.05451081208858443 +95502,477.509999999602,-0.05451074157380683 +95503,477.51499999960197,-0.05451067105588941 +95504,477.51999999960196,-0.054510600534831824 +95505,477.52499999960196,-0.05451053001063372 +95506,477.52999999960196,-0.05451045948329473 +95507,477.53499999960195,-0.05451038895281448 +95508,477.53999999960195,-0.05451031841919264 +95509,477.54499999960194,-0.05451024788242884 +95510,477.54999999960194,-0.05451017734252274 +95511,477.55499999960193,-0.05451010679947396 +95512,477.5599999996019,-0.05451003625328215 +95513,477.5649999996019,-0.054509965703946964 +95514,477.5699999996019,-0.054509895151468014 +95515,477.5749999996019,-0.054509824595844976 +95516,477.5799999996019,-0.054509754037077474 +95517,477.5849999996019,-0.05450968347516515 +95518,477.5899999996019,-0.054509612910107634 +95519,477.5949999996019,-0.054509542341904596 +95520,477.5999999996019,-0.05450947177055565 +95521,477.6049999996019,-0.054509401196060465 +95522,477.6099999996019,-0.05450933061841866 +95523,477.6149999996019,-0.05450926003762989 +95524,477.6199999996019,-0.05450918945369378 +95525,477.62499999960187,-0.054509118866609994 +95526,477.62999999960186,-0.054509048276378154 +95527,477.63499999960186,-0.05450897768299791 +95528,477.63999999960186,-0.0545089070864689 +95529,477.64499999960185,-0.05450883648679076 +95530,477.64999999960185,-0.05450876588396314 +95531,477.65499999960184,-0.054508695277985665 +95532,477.65999999960184,-0.05450862466885801 +95533,477.66499999960183,-0.05450855405657977 +95534,477.6699999996018,-0.05450848344115062 +95535,477.6749999996018,-0.05450841282257018 +95536,477.6799999996018,-0.054508342200838104 +95537,477.6849999996018,-0.05450827157595401 +95538,477.6899999996018,-0.05450820094791756 +95539,477.6949999996018,-0.05450813031672838 +95540,477.6999999996018,-0.05450805968238613 +95541,477.7049999996018,-0.05450798904489044 +95542,477.7099999996018,-0.05450791840424094 +95543,477.7149999996018,-0.054507847760437274 +95544,477.7199999996018,-0.05450777711347908 +95545,477.7249999996018,-0.054507706463365994 +95546,477.7299999996018,-0.05450763581009767 +95547,477.73499999960177,-0.05450756515367373 +95548,477.73999999960176,-0.05450749449409382 +95549,477.74499999960176,-0.054507423831357586 +95550,477.74999999960176,-0.05450735316546465 +95551,477.75499999960175,-0.054507282496414663 +95552,477.75999999960175,-0.054507211824207265 +95553,477.76499999960174,-0.05450714114884208 +95554,477.76999999960174,-0.05450707047031877 +95555,477.77499999960173,-0.05450699978863695 +95556,477.7799999996017,-0.054506929103796266 +95557,477.7849999996017,-0.05450685841579636 +95558,477.7899999996017,-0.054506787724636865 +95559,477.7949999996017,-0.05450671703031743 +95560,477.7999999996017,-0.054506646332837694 +95561,477.8049999996017,-0.05450657563219727 +95562,477.8099999996017,-0.054506504928395816 +95563,477.8149999996017,-0.05450643422143297 +95564,477.8199999996017,-0.05450636351130835 +95565,477.8249999996017,-0.05450629279802162 +95566,477.8299999996017,-0.0545062220815724 +95567,477.8349999996017,-0.05450615136196033 +95568,477.8399999996017,-0.05450608063918506 +95569,477.84499999960167,-0.0545060099132462 +95570,477.84999999960166,-0.05450593918414342 +95571,477.85499999960166,-0.05450586845187633 +95572,477.85999999960165,-0.05450579771644458 +95573,477.86499999960165,-0.054505726977847786 +95574,477.86999999960165,-0.054505656236085616 +95575,477.87499999960164,-0.05450558549115769 +95576,477.87999999960164,-0.05450551474306364 +95577,477.88499999960163,-0.05450544399180312 +95578,477.8899999996016,-0.054505373237375754 +95579,477.8949999996016,-0.054505302479781165 +95580,477.8999999996016,-0.05450523171901901 +95581,477.9049999996016,-0.054505160955088915 +95582,477.9099999996016,-0.054505090187990504 +95583,477.9149999996016,-0.054505019417723434 +95584,477.9199999996016,-0.05450494864428734 +95585,477.9249999996016,-0.05450487786768184 +95586,477.9299999996016,-0.05450480708790659 +95587,477.9349999996016,-0.0545047363049612 +95588,477.9399999996016,-0.05450466551884533 +95589,477.9449999996016,-0.054504594729558604 +95590,477.9499999996016,-0.05450452393710066 +95591,477.95499999960157,-0.054504453141471135 +95592,477.95999999960156,-0.05450438234266966 +95593,477.96499999960156,-0.05450431154069587 +95594,477.96999999960155,-0.05450424073554939 +95595,477.97499999960155,-0.05450416992722987 +95596,477.97999999960155,-0.054504099115736934 +95597,477.98499999960154,-0.05450402830107022 +95598,477.98999999960154,-0.05450395748322936 +95599,477.99499999960153,-0.054503886662213986 +95600,477.9999999996015,-0.054503815838023745 +95601,478.0049999996015,-0.05450374501065825 +95602,478.0099999996015,-0.05450367418011716 +95603,478.0149999996015,-0.0545036033464001 +95604,478.0199999996015,-0.05450353250950669 +95605,478.0249999996015,-0.05450346166943658 +95606,478.0299999996015,-0.054503390826189387 +95607,478.0349999996015,-0.05450331997976476 +95608,478.0399999996015,-0.054503249130162315 +95609,478.0449999996015,-0.05450317827738171 +95610,478.0499999996015,-0.05450310742142256 +95611,478.0549999996015,-0.054503036562284495 +95612,478.0599999996015,-0.05450296569996716 +95613,478.06499999960147,-0.0545028948344702 +95614,478.06999999960146,-0.054502823965793215 +95615,478.07499999960146,-0.05450275309393585 +95616,478.07999999960145,-0.054502682218897744 +95617,478.08499999960145,-0.054502611340678526 +95618,478.08999999960145,-0.05450254045927784 +95619,478.09499999960144,-0.054502469574695296 +95620,478.09999999960144,-0.054502398686930534 +95621,478.10499999960143,-0.05450232779598319 +95622,478.1099999996014,-0.054502256901852904 +95623,478.1149999996014,-0.0545021860045393 +95624,478.1199999996014,-0.054502115104041994 +95625,478.1249999996014,-0.054502044200360644 +95626,478.1299999996014,-0.05450197329349487 +95627,478.1349999996014,-0.0545019023834443 +95628,478.1399999996014,-0.054501831470208574 +95629,478.1449999996014,-0.05450176055378731 +95630,478.1499999996014,-0.05450168963418014 +95631,478.1549999996014,-0.054501618711386715 +95632,478.1599999996014,-0.05450154778540665 +95633,478.1649999996014,-0.054501476856239565 +95634,478.1699999996014,-0.05450140592388512 +95635,478.17499999960137,-0.05450133498834292 +95636,478.17999999960136,-0.05450126404961261 +95637,478.18499999960136,-0.05450119310769382 +95638,478.18999999960135,-0.05450112216258617 +95639,478.19499999960135,-0.0545010512142893 +95640,478.19999999960135,-0.05450098026280284 +95641,478.20499999960134,-0.05450090930812641 +95642,478.20999999960134,-0.05450083835025966 +95643,478.21499999960133,-0.0545007673892022 +95644,478.2199999996013,-0.054500696424953664 +95645,478.2249999996013,-0.05450062545751368 +95646,478.2299999996013,-0.054500554486881896 +95647,478.2349999996013,-0.05450048351305792 +95648,478.2399999996013,-0.05450041253604138 +95649,478.2449999996013,-0.05450034155583192 +95650,478.2499999996013,-0.05450027057242918 +95651,478.2549999996013,-0.05450019958583276 +95652,478.2599999996013,-0.0545001285960423 +95653,478.2649999996013,-0.05450005760305744 +95654,478.2699999996013,-0.0544999866068778 +95655,478.2749999996013,-0.054499915607503 +95656,478.2799999996013,-0.05449984460493269 +95657,478.28499999960127,-0.054499773599166475 +95658,478.28999999960126,-0.054499702590203994 +95659,478.29499999960126,-0.05449963157804488 +95660,478.29999999960125,-0.05449956056268876 +95661,478.30499999960125,-0.05449948954413526 +95662,478.30999999960125,-0.054499418522384005 +95663,478.31499999960124,-0.054499347497434625 +95664,478.31999999960124,-0.054499276469286755 +95665,478.32499999960123,-0.054499205437940006 +95666,478.3299999996012,-0.054499134403394024 +95667,478.3349999996012,-0.05449906336564843 +95668,478.3399999996012,-0.054498992324702844 +95669,478.3449999996012,-0.0544989212805569 +95670,478.3499999996012,-0.05449885023321022 +95671,478.3549999996012,-0.054498779182662445 +95672,478.3599999996012,-0.05449870812891319 +95673,478.3649999996012,-0.05449863707196208 +95674,478.3699999996012,-0.05449856601180875 +95675,478.3749999996012,-0.05449849494845282 +95676,478.3799999996012,-0.054498423881893916 +95677,478.3849999996012,-0.054498352812131674 +95678,478.3899999996012,-0.05449828173916572 +95679,478.39499999960117,-0.05449821066299568 +95680,478.39999999960116,-0.054498139583621166 +95681,478.40499999960116,-0.05449806850104183 +95682,478.40999999960115,-0.05449799741525727 +95683,478.41499999960115,-0.05449792632626713 +95684,478.41999999960115,-0.054497855234071024 +95685,478.42499999960114,-0.05449778413866859 +95686,478.42999999960114,-0.05449771304005945 +95687,478.43499999960113,-0.05449764193824323 +95688,478.4399999996011,-0.05449757083321956 +95689,478.4449999996011,-0.05449749972498805 +95690,478.4499999996011,-0.054497428613548324 +95691,478.4549999996011,-0.05449735749890003 +95692,478.4599999996011,-0.05449728638104279 +95693,478.4649999996011,-0.0544972152599762 +95694,478.4699999996011,-0.054497144135699914 +95695,478.4749999996011,-0.05449707300821355 +95696,478.4799999996011,-0.05449700187751672 +95697,478.4849999996011,-0.05449693074360907 +95698,478.4899999996011,-0.05449685960649022 +95699,478.4949999996011,-0.05449678846615979 +95700,478.4999999996011,-0.054496717322617384 +95701,478.50499999960107,-0.054496646175862654 +95702,478.50999999960106,-0.054496575025895215 +95703,478.51499999960106,-0.05449650387271469 +95704,478.51999999960105,-0.0544964327163207 +95705,478.52499999960105,-0.054496361556712884 +95706,478.52999999960105,-0.05449629039389086 +95707,478.53499999960104,-0.05449621922785424 +95708,478.53999999960104,-0.05449614805860266 +95709,478.54499999960103,-0.054496076886135725 +95710,478.549999999601,-0.05449600571045308 +95711,478.554999999601,-0.05449593453155434 +95712,478.559999999601,-0.054495863349439136 +95713,478.564999999601,-0.054495792164107076 +95714,478.569999999601,-0.05449572097555779 +95715,478.574999999601,-0.054495649783790893 +95716,478.579999999601,-0.05449557858880603 +95717,478.584999999601,-0.0544955073906028 +95718,478.589999999601,-0.05449543618918084 +95719,478.594999999601,-0.05449536498453976 +95720,478.599999999601,-0.05449529377667921 +95721,478.604999999601,-0.054495222565598765 +95722,478.609999999601,-0.05449515135129809 +95723,478.61499999960097,-0.054495080133776796 +95724,478.61999999960096,-0.0544950089130345 +95725,478.62499999960096,-0.05449493768907082 +95726,478.62999999960095,-0.054494866461885394 +95727,478.63499999960095,-0.05449479523147782 +95728,478.63999999960095,-0.054494723997847744 +95729,478.64499999960094,-0.05449465276099477 +95730,478.64999999960094,-0.05449458152091852 +95731,478.65499999960093,-0.05449451027761862 +95732,478.6599999996009,-0.05449443903109469 +95733,478.6649999996009,-0.05449436778134636 +95734,478.6699999996009,-0.05449429652837324 +95735,478.6749999996009,-0.054494225272174956 +95736,478.6799999996009,-0.054494154012751136 +95737,478.6849999996009,-0.05449408275010138 +95738,478.6899999996009,-0.05449401148422534 +95739,478.6949999996009,-0.054493940215122605 +95740,478.6999999996009,-0.05449386894279282 +95741,478.7049999996009,-0.05449379766723558 +95742,478.7099999996009,-0.05449372638845053 +95743,478.7149999996009,-0.05449365510643728 +95744,478.7199999996009,-0.05449358382119543 +95745,478.72499999960087,-0.054493512532724636 +95746,478.72999999960086,-0.0544934412410245 +95747,478.73499999960086,-0.05449336994609463 +95748,478.73999999960085,-0.05449329864793467 +95749,478.74499999960085,-0.054493227346544215 +95750,478.74999999960085,-0.05449315604192292 +95751,478.75499999960084,-0.054493084734070364 +95752,478.75999999960084,-0.054493013422986195 +95753,478.76499999960083,-0.05449294210867002 +95754,478.7699999996008,-0.054492870791121466 +95755,478.7749999996008,-0.05449279947034013 +95756,478.7799999996008,-0.054492728146325664 +95757,478.7849999996008,-0.05449265681907765 +95758,478.7899999996008,-0.054492585488595736 +95759,478.7949999996008,-0.05449251415487953 +95760,478.7999999996008,-0.05449244281792865 +95761,478.8049999996008,-0.05449237147774271 +95762,478.8099999996008,-0.05449230013432134 +95763,478.8149999996008,-0.054492228787664146 +95764,478.8199999996008,-0.05449215743777076 +95765,478.8249999996008,-0.05449208608464079 +95766,478.8299999996008,-0.054492014728273856 +95767,478.83499999960077,-0.05449194336866958 +95768,478.83999999960076,-0.05449187200582758 +95769,478.84499999960076,-0.054491800639747456 +95770,478.84999999960075,-0.054491729270428835 +95771,478.85499999960075,-0.05449165789787135 +95772,478.85999999960075,-0.0544915865220746 +95773,478.86499999960074,-0.05449151514303822 +95774,478.86999999960074,-0.0544914437607618 +95775,478.87499999960073,-0.05449137237524498 +95776,478.8799999996007,-0.054491300986487363 +95777,478.8849999996007,-0.05449122959448857 +95778,478.8899999996007,-0.054491158199248234 +95779,478.8949999996007,-0.05449108680076594 +95780,478.8999999996007,-0.05449101539904133 +95781,478.9049999996007,-0.05449094399407402 +95782,478.9099999996007,-0.05449087258586362 +95783,478.9149999996007,-0.05449080117440973 +95784,478.9199999996007,-0.05449072975971198 +95785,478.9249999996007,-0.05449065834177 +95786,478.9299999996007,-0.05449058692058338 +95787,478.9349999996007,-0.05449051549615176 +95788,478.9399999996007,-0.054490444068474746 +95789,478.94499999960067,-0.054490372637551944 +95790,478.94999999960066,-0.05449030120338298 +95791,478.95499999960066,-0.05449022976596747 +95792,478.95999999960065,-0.054490158325305016 +95793,478.96499999960065,-0.05449008688139524 +95794,478.96999999960065,-0.05449001543423778 +95795,478.97499999960064,-0.05448994398383222 +95796,478.97999999960064,-0.05448987253017819 +95797,478.98499999960063,-0.054489801073275286 +95798,478.9899999996006,-0.05448972961312315 +95799,478.9949999996006,-0.05448965814972138 +95800,478.9999999996006,-0.054489586683069594 +95801,479.0049999996006,-0.05448951521316741 +95802,479.0099999996006,-0.05448944374001444 +95803,479.0149999996006,-0.054489372263610295 +95804,479.0199999996006,-0.05448930078395459 +95805,479.0249999996006,-0.05448922930104695 +95806,479.0299999996006,-0.05448915781488697 +95807,479.0349999996006,-0.05448908632547428 +95808,479.0399999996006,-0.05448901483280848 +95809,479.0449999996006,-0.054488943336889195 +95810,479.0499999996006,-0.05448887183771604 +95811,479.05499999960057,-0.0544888003352886 +95812,479.05999999960056,-0.05448872882960653 +95813,479.06499999960056,-0.05448865732066942 +95814,479.06999999960055,-0.05448858580847689 +95815,479.07499999960055,-0.05448851429302855 +95816,479.07999999960055,-0.054488442774324 +95817,479.08499999960054,-0.05448837125236287 +95818,479.08999999960054,-0.054488299727144765 +95819,479.09499999960053,-0.0544882281986693 +95820,479.0999999996005,-0.054488156666936106 +95821,479.1049999996005,-0.05448808513194477 +95822,479.1099999996005,-0.0544880135936949 +95823,479.1149999996005,-0.05448794205218613 +95824,479.1199999996005,-0.05448787050741805 +95825,479.1249999996005,-0.05448779895939031 +95826,479.1299999996005,-0.054487727408102475 +95827,479.1349999996005,-0.054487655853554175 +95828,479.1399999996005,-0.05448758429574504 +95829,479.1449999996005,-0.054487512734674656 +95830,479.1499999996005,-0.05448744117034265 +95831,479.1549999996005,-0.054487369602748616 +95832,479.1599999996005,-0.05448729803189218 +95833,479.16499999960047,-0.05448722645777295 +95834,479.16999999960046,-0.054487154880390534 +95835,479.17499999960046,-0.054487083299744554 +95836,479.17999999960045,-0.054487011715834616 +95837,479.18499999960045,-0.05448694012866032 +95838,479.18999999960045,-0.05448686853822129 +95839,479.19499999960044,-0.05448679694451713 +95840,479.19999999960044,-0.05448672534754745 +95841,479.20499999960043,-0.05448665374731186 +95842,479.2099999996004,-0.05448658214380997 +95843,479.2149999996004,-0.0544865105370414 +95844,479.2199999996004,-0.054486438927005734 +95845,479.2249999996004,-0.05448636731370261 +95846,479.2299999996004,-0.05448629569713164 +95847,479.2349999996004,-0.05448622407729241 +95848,479.2399999996004,-0.05448615245418453 +95849,479.2449999996004,-0.05448608082780764 +95850,479.2499999996004,-0.05448600919816133 +95851,479.2549999996004,-0.054485937565245196 +95852,479.2599999996004,-0.05448586592905886 +95853,479.2649999996004,-0.054485794289601944 +95854,479.2699999996004,-0.05448572264687404 +95855,479.27499999960037,-0.054485651000874755 +95856,479.27999999960036,-0.054485579351603704 +95857,479.28499999960036,-0.054485507699060506 +95858,479.28999999960035,-0.054485436043244746 +95859,479.29499999960035,-0.054485364384156056 +95860,479.29999999960035,-0.05448529272179404 +95861,479.30499999960034,-0.054485221056158294 +95862,479.30999999960034,-0.05448514938724843 +95863,479.31499999960033,-0.05448507771506405 +95864,479.3199999996003,-0.05448500603960479 +95865,479.3249999996003,-0.05448493436087023 +95866,479.3299999996003,-0.054484862678859984 +95867,479.3349999996003,-0.054484790993573666 +95868,479.3399999996003,-0.054484719305010886 +95869,479.3449999996003,-0.05448464761317123 +95870,479.3499999996003,-0.054484575918054334 +95871,479.3549999996003,-0.054484504219659786 +95872,479.3599999996003,-0.0544844325179872 +95873,479.3649999996003,-0.05448436081303619 +95874,479.3699999996003,-0.05448428910480635 +95875,479.3749999996003,-0.054484217393297285 +95876,479.3799999996003,-0.054484145678508615 +95877,479.38499999960027,-0.05448407396043993 +95878,479.38999999960026,-0.054484002239090855 +95879,479.39499999960026,-0.054483930514460994 +95880,479.39999999960025,-0.054483858786549946 +95881,479.40499999960025,-0.054483787055357315 +95882,479.40999999960025,-0.05448371532088271 +95883,479.41499999960024,-0.05448364358312574 +95884,479.41999999960024,-0.05448357184208601 +95885,479.42499999960023,-0.05448350009776313 +95886,479.4299999996002,-0.05448342835015669 +95887,479.4349999996002,-0.0544833565992663 +95888,479.4399999996002,-0.05448328484509159 +95889,479.4449999996002,-0.05448321308763214 +95890,479.4499999996002,-0.054483141326887564 +95891,479.4549999996002,-0.054483069562857464 +95892,479.4599999996002,-0.05448299779554145 +95893,479.4649999996002,-0.05448292602493912 +95894,479.4699999996002,-0.05448285425105009 +95895,479.4749999996002,-0.05448278247387394 +95896,479.4799999996002,-0.0544827106934103 +95897,479.4849999996002,-0.054482638909658765 +95898,479.4899999996002,-0.054482567122618945 +95899,479.49499999960017,-0.054482495332290444 +95900,479.49999999960016,-0.05448242353867285 +95901,479.50499999960016,-0.054482351741765786 +95902,479.50999999960015,-0.05448227994156885 +95903,479.51499999960015,-0.05448220813808165 +95904,479.51999999960015,-0.05448213633130378 +95905,479.52499999960014,-0.05448206452123485 +95906,479.52999999960014,-0.05448199270787447 +95907,479.53499999960013,-0.05448192089122223 +95908,479.5399999996001,-0.05448184907127775 +95909,479.5449999996001,-0.05448177724804062 +95910,479.5499999996001,-0.05448170542151044 +95911,479.5549999996001,-0.05448163359168683 +95912,479.5599999996001,-0.05448156175856937 +95913,479.5649999996001,-0.05448148992215768 +95914,479.5699999996001,-0.054481418082451355 +95915,479.5749999996001,-0.05448134623945001 +95916,479.5799999996001,-0.05448127439315323 +95917,479.5849999996001,-0.054481202543560626 +95918,479.5899999996001,-0.05448113069067181 +95919,479.5949999996001,-0.054481058834486375 +95920,479.5999999996001,-0.054480986975003934 +95921,479.60499999960007,-0.05448091511222407 +95922,479.60999999960006,-0.054480843246146396 +95923,479.61499999960006,-0.05448077137677051 +95924,479.61999999960005,-0.05448069950409601 +95925,479.62499999960005,-0.05448062762812251 +95926,479.62999999960005,-0.0544805557488496 +95927,479.63499999960004,-0.05448048386627687 +95928,479.63999999960004,-0.054480411980403945 +95929,479.64499999960003,-0.05448034009123042 +95930,479.6499999996,-0.05448026819875589 +95931,479.6549999996,-0.054480196302979976 +95932,479.6599999996,-0.05448012440390225 +95933,479.6649999996,-0.05448005250152234 +95934,479.6699999996,-0.05447998059583982 +95935,479.6749999996,-0.05447990868685432 +95936,479.6799999996,-0.054479836774565416 +95937,479.6849999996,-0.05447976485897271 +95938,479.6899999996,-0.054479692940075826 +95939,479.6949999996,-0.054479621017874326 +95940,479.6999999996,-0.05447954909236783 +95941,479.7049999996,-0.05447947716355596 +95942,479.7099999996,-0.05447940523143828 +95943,479.71499999959997,-0.054479333296014405 +95944,479.71999999959996,-0.05447926135728393 +95945,479.72499999959996,-0.054479189415246466 +95946,479.72999999959995,-0.05447911746990161 +95947,479.73499999959995,-0.05447904552124895 +95948,479.73999999959995,-0.0544789735692881 +95949,479.74499999959994,-0.05447890161401865 +95950,479.74999999959994,-0.054478829655440195 +95951,479.75499999959993,-0.05447875769355234 +95952,479.7599999995999,-0.054478685728354695 +95953,479.7649999995999,-0.05447861375984684 +95954,479.7699999995999,-0.054478541788028384 +95955,479.7749999995999,-0.05447846981289891 +95956,479.7799999995999,-0.054478397834458035 +95957,479.7849999995999,-0.05447832585270535 +95958,479.7899999995999,-0.054478253867640464 +95959,479.7949999995999,-0.05447818187926295 +95960,479.7999999995999,-0.05447810988757243 +95961,479.8049999995999,-0.0544780378925685 +95962,479.8099999995999,-0.05447796589425073 +95963,479.8149999995999,-0.054477893892618756 +95964,479.8199999995999,-0.054477821887672154 +95965,479.82499999959987,-0.05447774987941052 +95966,479.82999999959986,-0.05447767786783347 +95967,479.83499999959986,-0.05447760585294057 +95968,479.83999999959985,-0.054477533834731445 +95969,479.84499999959985,-0.05447746181320568 +95970,479.84999999959985,-0.05447738978836287 +95971,479.85499999959984,-0.05447731776020263 +95972,479.85999999959984,-0.054477245728724526 +95973,479.86499999959983,-0.05447717369392818 +95974,479.8699999995998,-0.054477101655813175 +95975,479.8749999995998,-0.05447702961437912 +95976,479.8799999995998,-0.054476957569625596 +95977,479.8849999995998,-0.05447688552155222 +95978,479.8899999995998,-0.054476813470158564 +95979,479.8949999995998,-0.05447674141544424 +95980,479.8999999995998,-0.05447666935740884 +95981,479.9049999995998,-0.05447659729605195 +95982,479.9099999995998,-0.054476525231373175 +95983,479.9149999995998,-0.054476453163372116 +95984,479.9199999995998,-0.05447638109204836 +95985,479.9249999995998,-0.054476309017401504 +95986,479.9299999995998,-0.05447623693943115 +95987,479.93499999959977,-0.05447616485813688 +95988,479.93999999959976,-0.0544760927735183 +95989,479.94499999959976,-0.05447602068557499 +95990,479.94999999959975,-0.05447594859430657 +95991,479.95499999959975,-0.05447587649971261 +95992,479.95999999959975,-0.05447580440179273 +95993,479.96499999959974,-0.054475732300546496 +95994,479.96999999959974,-0.05447566019597352 +95995,479.97499999959973,-0.054475588088073394 +95996,479.9799999995997,-0.05447551597684572 +95997,479.9849999995997,-0.054475443862290064 +95998,479.9899999995997,-0.054475371744406045 +95999,479.9949999995997,-0.05447529962319325 +96000,479.9999999995997,-0.05447522749865128 +96001,480.0049999995997,-0.05447515537077972 +96002,480.0099999995997,-0.054475083239578156 +96003,480.0149999995997,-0.05447501110504619 +96004,480.0199999995997,-0.05447493896718342 +96005,480.0249999995997,-0.05447486682598944 +96006,480.0299999995997,-0.05447479468146384 +96007,480.0349999995997,-0.0544747225336062 +96008,480.0399999995997,-0.05447465038241613 +96009,480.04499999959967,-0.05447457822789322 +96010,480.04999999959966,-0.05447450607003705 +96011,480.05499999959966,-0.05447443390884723 +96012,480.05999999959965,-0.054474361744323345 +96013,480.06499999959965,-0.05447428957646498 +96014,480.06999999959964,-0.054474217405271745 +96015,480.07499999959964,-0.05447414523074322 +96016,480.07999999959964,-0.05447407305287899 +96017,480.08499999959963,-0.05447400087167867 +96018,480.0899999995996,-0.05447392868714182 +96019,480.0949999995996,-0.05447385649926805 +96020,480.0999999995996,-0.054473784308056966 +96021,480.1049999995996,-0.05447371211350813 +96022,480.1099999995996,-0.05447363991562115 +96023,480.1149999995996,-0.05447356771439561 +96024,480.1199999995996,-0.054473495509831125 +96025,480.1249999995996,-0.054473423301927254 +96026,480.1299999995996,-0.05447335109068361 +96027,480.1349999995996,-0.05447327887609977 +96028,480.1399999995996,-0.05447320665817533 +96029,480.1449999995996,-0.054473134436909876 +96030,480.1499999995996,-0.054473062212303004 +96031,480.15499999959957,-0.0544729899843543 +96032,480.15999999959956,-0.05447291775306336 +96033,480.16499999959956,-0.05447284551842976 +96034,480.16999999959955,-0.05447277328045313 +96035,480.17499999959955,-0.054472701039133015 +96036,480.17999999959954,-0.05447262879446902 +96037,480.18499999959954,-0.054472556546460736 +96038,480.18999999959954,-0.054472484295107766 +96039,480.19499999959953,-0.054472412040409667 +96040,480.1999999995995,-0.05447233978236605 +96041,480.2049999995995,-0.05447226752097652 +96042,480.2099999995995,-0.05447219525624064 +96043,480.2149999995995,-0.054472122988158005 +96044,480.2199999995995,-0.054472050716728206 +96045,480.2249999995995,-0.05447197844195084 +96046,480.2299999995995,-0.05447190616382548 +96047,480.2349999995995,-0.05447183388235173 +96048,480.2399999995995,-0.054471761597529166 +96049,480.2449999995995,-0.05447168930935739 +96050,480.2499999995995,-0.05447161701783597 +96051,480.2549999995995,-0.05447154472296451 +96052,480.2599999995995,-0.0544714724247426 +96053,480.26499999959947,-0.05447140012316982 +96054,480.26999999959946,-0.054471327818245756 +96055,480.27499999959946,-0.05447125550997001 +96056,480.27999999959945,-0.05447118319834216 +96057,480.28499999959945,-0.05447111088336179 +96058,480.28999999959944,-0.054471038565028496 +96059,480.29499999959944,-0.05447096624334186 +96060,480.29999999959944,-0.05447089391830147 +96061,480.30499999959943,-0.05447082158990692 +96062,480.3099999995994,-0.05447074925815778 +96063,480.3149999995994,-0.05447067692305364 +96064,480.3199999995994,-0.054470604584594115 +96065,480.3249999995994,-0.05447053224277876 +96066,480.3299999995994,-0.054470459897607175 +96067,480.3349999995994,-0.05447038754907894 +96068,480.3399999995994,-0.05447031519719364 +96069,480.3449999995994,-0.05447024284195088 +96070,480.3499999995994,-0.05447017048335023 +96071,480.3549999995994,-0.054470098121391274 +96072,480.3599999995994,-0.05447002575607361 +96073,480.3649999995994,-0.05446995338739682 +96074,480.3699999995994,-0.054469881015360475 +96075,480.37499999959937,-0.05446980863996417 +96076,480.37999999959936,-0.054469736261207505 +96077,480.38499999959936,-0.05446966387909005 +96078,480.38999999959935,-0.05446959149361139 +96079,480.39499999959935,-0.05446951910477112 +96080,480.39999999959934,-0.05446944671256883 +96081,480.40499999959934,-0.054469374317004084 +96082,480.40999999959934,-0.05446930191807647 +96083,480.41499999959933,-0.05446922951578559 +96084,480.4199999995993,-0.054469157110131006 +96085,480.4249999995993,-0.05446908470111232 +96086,480.4299999995993,-0.05446901228872912 +96087,480.4349999995993,-0.054468939872980966 +96088,480.4399999995993,-0.054468867453867476 +96089,480.4449999995993,-0.05446879503138821 +96090,480.4499999995993,-0.05446872260554275 +96091,480.4549999995993,-0.0544686501763307 +96092,480.4599999995993,-0.05446857774375163 +96093,480.4649999995993,-0.054468505307805115 +96094,480.4699999995993,-0.054468432868490756 +96095,480.4749999995993,-0.05446836042580813 +96096,480.4799999995993,-0.05446828797975681 +96097,480.48499999959927,-0.05446821553033639 +96098,480.48999999959926,-0.05446814307754646 +96099,480.49499999959926,-0.05446807062138659 +96100,480.49999999959925,-0.05446799816185637 +96101,480.50499999959925,-0.05446792569895539 +96102,480.50999999959924,-0.05446785323268321 +96103,480.51499999959924,-0.05446778076303943 +96104,480.51999999959924,-0.05446770829002363 +96105,480.52499999959923,-0.05446763581363538 +96106,480.5299999995992,-0.0544675633338743 +96107,480.5349999995992,-0.05446749085073992 +96108,480.5399999995992,-0.054467418364231864 +96109,480.5449999995992,-0.05446734587434969 +96110,480.5499999995992,-0.054467273381092994 +96111,480.5549999995992,-0.05446720088446135 +96112,480.5599999995992,-0.054467128384454326 +96113,480.5649999995992,-0.05446705588107153 +96114,480.5699999995992,-0.054466983374312536 +96115,480.5749999995992,-0.05446691086417691 +96116,480.5799999995992,-0.05446683835066425 +96117,480.5849999995992,-0.05446676583377412 +96118,480.5899999995992,-0.054466693313506113 +96119,480.59499999959917,-0.05446662078985982 +96120,480.59999999959916,-0.054466548262834806 +96121,480.60499999959916,-0.05446647573243065 +96122,480.60999999959915,-0.05446640319864694 +96123,480.61499999959915,-0.05446633066148326 +96124,480.61999999959914,-0.05446625812093917 +96125,480.62499999959914,-0.05446618557701429 +96126,480.62999999959914,-0.054466113029708156 +96127,480.63499999959913,-0.054466040479020365 +96128,480.6399999995991,-0.05446596792495051 +96129,480.6449999995991,-0.05446589536749815 +96130,480.6499999995991,-0.054465822806662886 +96131,480.6549999995991,-0.05446575024244427 +96132,480.6599999995991,-0.054465677674841916 +96133,480.6649999995991,-0.05446560510385537 +96134,480.6699999995991,-0.054465532529484224 +96135,480.6749999995991,-0.054465459951728065 +96136,480.6799999995991,-0.054465387370586454 +96137,480.6849999995991,-0.054465314786058996 +96138,480.6899999995991,-0.05446524219814525 +96139,480.6949999995991,-0.0544651696068448 +96140,480.6999999995991,-0.05446509701215722 +96141,480.70499999959907,-0.054465024414082096 +96142,480.70999999959906,-0.05446495181261899 +96143,480.71499999959906,-0.05446487920776751 +96144,480.71999999959905,-0.05446480659952721 +96145,480.72499999959905,-0.054464733987897675 +96146,480.72999999959904,-0.05446466137287848 +96147,480.73499999959904,-0.054464588754469204 +96148,480.73999999959904,-0.05446451613266943 +96149,480.74499999959903,-0.054464443507478734 +96150,480.749999999599,-0.05446437087889669 +96151,480.754999999599,-0.054464298246922865 +96152,480.759999999599,-0.05446422561155686 +96153,480.764999999599,-0.05446415297279823 +96154,480.769999999599,-0.05446408033064657 +96155,480.774999999599,-0.054464007685101436 +96156,480.779999999599,-0.05446393503616241 +96157,480.784999999599,-0.05446386238382908 +96158,480.789999999599,-0.05446378972810102 +96159,480.794999999599,-0.054463717068977804 +96160,480.799999999599,-0.05446364440645901 +96161,480.804999999599,-0.05446357174054421 +96162,480.809999999599,-0.05446349907123299 +96163,480.81499999959897,-0.0544634263985249 +96164,480.81999999959896,-0.05446335372241954 +96165,480.82499999959896,-0.05446328104291649 +96166,480.82999999959895,-0.054463208360015315 +96167,480.83499999959895,-0.054463135673715586 +96168,480.83999999959894,-0.05446306298401689 +96169,480.84499999959894,-0.054462990290918785 +96170,480.84999999959894,-0.05446291759442086 +96171,480.85499999959893,-0.054462844894522675 +96172,480.8599999995989,-0.05446277219122382 +96173,480.8649999995989,-0.05446269948452387 +96174,480.8699999995989,-0.05446262677442239 +96175,480.8749999995989,-0.05446255406091896 +96176,480.8799999995989,-0.05446248134401317 +96177,480.8849999995989,-0.05446240862370458 +96178,480.8899999995989,-0.054462335899992755 +96179,480.8949999995989,-0.05446226317287727 +96180,480.8999999995989,-0.054462190442357714 +96181,480.9049999995989,-0.05446211770843364 +96182,480.9099999995989,-0.05446204497110465 +96183,480.9149999995989,-0.0544619722303703 +96184,480.9199999995989,-0.054461899486230154 +96185,480.92499999959887,-0.05446182673868381 +96186,480.92999999959886,-0.05446175398773083 +96187,480.93499999959886,-0.054461681233370786 +96188,480.93999999959885,-0.054461608475603246 +96189,480.94499999959885,-0.054461535714427786 +96190,480.94999999959884,-0.054461462949843976 +96191,480.95499999959884,-0.0544613901818514 +96192,480.95999999959884,-0.05446131741044963 +96193,480.96499999959883,-0.05446124463563822 +96194,480.9699999995988,-0.05446117185741677 +96195,480.9749999995988,-0.05446109907578483 +96196,480.9799999995988,-0.05446102629074198 +96197,480.9849999995988,-0.054460953502287794 +96198,480.9899999995988,-0.05446088071042185 +96199,480.9949999995988,-0.054460807915143704 +96200,480.9999999995988,-0.05446073511645294 +96201,481.0049999995988,-0.05446066231434912 +96202,481.0099999995988,-0.05446058950883182 +96203,481.0149999995988,-0.05446051669990061 +96204,481.0199999995988,-0.05446044388755506 +96205,481.0249999995988,-0.05446037107179476 +96206,481.0299999995988,-0.054460298252619256 +96207,481.03499999959877,-0.05446022543002812 +96208,481.03999999959876,-0.054460152604020935 +96209,481.04499999959876,-0.05446007977459728 +96210,481.04999999959875,-0.054460006941756706 +96211,481.05499999959875,-0.05445993410549879 +96212,481.05999999959874,-0.0544598612658231 +96213,481.06499999959874,-0.05445978842272921 +96214,481.06999999959874,-0.054459715576216684 +96215,481.07499999959873,-0.0544596427262851 +96216,481.0799999995987,-0.05445956987293403 +96217,481.0849999995987,-0.054459497016163046 +96218,481.0899999995987,-0.05445942415597171 +96219,481.0949999995987,-0.054459351292359584 +96220,481.0999999995987,-0.054459278425326246 +96221,481.1049999995987,-0.05445920555487128 +96222,481.1099999995987,-0.054459132680994234 +96223,481.1149999995987,-0.05445905980369467 +96224,481.1199999995987,-0.054458986922972186 +96225,481.1249999995987,-0.054458914038826335 +96226,481.1299999995987,-0.05445884115125668 +96227,481.1349999995987,-0.0544587682602628 +96228,481.1399999995987,-0.054458695365844266 +96229,481.14499999959867,-0.05445862246800063 +96230,481.14999999959866,-0.054458549566731476 +96231,481.15499999959866,-0.05445847666203636 +96232,481.15999999959865,-0.054458403753914864 +96233,481.16499999959865,-0.05445833084236655 +96234,481.16999999959864,-0.054458257927390986 +96235,481.17499999959864,-0.05445818500898774 +96236,481.17999999959864,-0.05445811208715637 +96237,481.18499999959863,-0.054458039161896454 +96238,481.1899999995986,-0.05445796623320756 +96239,481.1949999995986,-0.054457893301089244 +96240,481.1999999995986,-0.05445782036554108 +96241,481.2049999995986,-0.05445774742656265 +96242,481.2099999995986,-0.0544576744841535 +96243,481.2149999995986,-0.0544576015383132 +96244,481.2199999995986,-0.054457528589041335 +96245,481.2249999995986,-0.05445745563633744 +96246,481.2299999995986,-0.05445738268020111 +96247,481.2349999995986,-0.0544573097206319 +96248,481.2399999995986,-0.054457236757629375 +96249,481.2449999995986,-0.0544571637911931 +96250,481.2499999995986,-0.05445709082132264 +96251,481.25499999959857,-0.05445701784801757 +96252,481.25999999959856,-0.05445694487127746 +96253,481.26499999959856,-0.054456871891101856 +96254,481.26999999959855,-0.05445679890749034 +96255,481.27499999959855,-0.05445672592044247 +96256,481.27999999959854,-0.0544566529299578 +96257,481.28499999959854,-0.05445657993603592 +96258,481.28999999959854,-0.05445650693867639 +96259,481.29499999959853,-0.05445643393787876 +96260,481.2999999995985,-0.0544563609336426 +96261,481.3049999995985,-0.054456287925967475 +96262,481.3099999995985,-0.05445621491485295 +96263,481.3149999995985,-0.05445614190029859 +96264,481.3199999995985,-0.05445606888230397 +96265,481.3249999995985,-0.05445599586086864 +96266,481.3299999995985,-0.05445592283599217 +96267,481.3349999995985,-0.05445584980767413 +96268,481.3399999995985,-0.05445577677591407 +96269,481.3449999995985,-0.05445570374071157 +96270,481.3499999995985,-0.054455630702066174 +96271,481.3549999995985,-0.054455557659977456 +96272,481.3599999995985,-0.054455484614444986 +96273,481.36499999959847,-0.05445541156546833 +96274,481.36999999959846,-0.05445533851304703 +96275,481.37499999959846,-0.05445526545718066 +96276,481.37999999959845,-0.054455192397868786 +96277,481.38499999959845,-0.05445511933511098 +96278,481.38999999959844,-0.054455046268906786 +96279,481.39499999959844,-0.054454973199255775 +96280,481.39999999959844,-0.054454900126157516 +96281,481.40499999959843,-0.05445482704961157 +96282,481.4099999995984,-0.054454753969617485 +96283,481.4149999995984,-0.05445468088617484 +96284,481.4199999995984,-0.05445460779928318 +96285,481.4249999995984,-0.05445453470894209 +96286,481.4299999995984,-0.05445446161515112 +96287,481.4349999995984,-0.05445438851790982 +96288,481.4399999995984,-0.05445431541721776 +96289,481.4449999995984,-0.054454242313074504 +96290,481.4499999995984,-0.054454169205479616 +96291,481.4549999995984,-0.05445409609443266 +96292,481.4599999995984,-0.05445402297993319 +96293,481.4649999995984,-0.05445394986198076 +96294,481.4699999995984,-0.05445387674057494 +96295,481.47499999959837,-0.0544538036157153 +96296,481.47999999959836,-0.05445373048740139 +96297,481.48499999959836,-0.054453657355632755 +96298,481.48999999959835,-0.05445358422040899 +96299,481.49499999959835,-0.05445351108172963 +96300,481.49999999959834,-0.054453437939594236 +96301,481.50499999959834,-0.05445336479400238 +96302,481.50999999959834,-0.054453291644953626 +96303,481.51499999959833,-0.05445321849244752 +96304,481.5199999995983,-0.05445314533648361 +96305,481.5249999995983,-0.05445307217706149 +96306,481.5299999995983,-0.05445299901418069 +96307,481.5349999995983,-0.05445292584784079 +96308,481.5399999995983,-0.05445285267804134 +96309,481.5449999995983,-0.05445277950478189 +96310,481.5499999995983,-0.054452706328062005 +96311,481.5549999995983,-0.054452633147881256 +96312,481.5599999995983,-0.0544525599642392 +96313,481.5649999995983,-0.05445248677713538 +96314,481.5699999995983,-0.05445241358656937 +96315,481.5749999995983,-0.0544523403925407 +96316,481.5799999995983,-0.054452267195048976 +96317,481.58499999959827,-0.05445219399409372 +96318,481.58999999959826,-0.0544521207896745 +96319,481.59499999959826,-0.05445204758179087 +96320,481.59999999959825,-0.0544519743704424 +96321,481.60499999959825,-0.05445190115562863 +96322,481.60999999959824,-0.05445182793734914 +96323,481.61499999959824,-0.05445175471560347 +96324,481.61999999959824,-0.05445168149039118 +96325,481.62499999959823,-0.05445160826171184 +96326,481.6299999995982,-0.05445153502956499 +96327,481.6349999995982,-0.054451461793950204 +96328,481.6399999995982,-0.054451388554867024 +96329,481.6449999995982,-0.05445131531231501 +96330,481.6499999995982,-0.05445124206629372 +96331,481.6549999995982,-0.05445116881680271 +96332,481.6599999995982,-0.054451095563841534 +96333,481.6649999995982,-0.05445102230740976 +96334,481.6699999995982,-0.05445094904750693 +96335,481.6749999995982,-0.05445087578413261 +96336,481.6799999995982,-0.05445080251728635 +96337,481.6849999995982,-0.05445072924696771 +96338,481.6899999995982,-0.05445065597317624 +96339,481.69499999959817,-0.054450582695911506 +96340,481.69999999959816,-0.05445050941517306 +96341,481.70499999959816,-0.05445043613096044 +96342,481.70999999959815,-0.054450362843273224 +96343,481.71499999959815,-0.05445028955211096 +96344,481.71999999959814,-0.054450216257473205 +96345,481.72499999959814,-0.054450142959359495 +96346,481.72999999959814,-0.05445006965776942 +96347,481.73499999959813,-0.0544499963527025 +96348,481.7399999995981,-0.05444992304415831 +96349,481.7449999995981,-0.0544498497321364 +96350,481.7499999995981,-0.05444977641663633 +96351,481.7549999995981,-0.054449703097657634 +96352,481.7599999995981,-0.0544496297751999 +96353,481.7649999995981,-0.054449556449262644 +96354,481.7699999995981,-0.05444948311984544 +96355,481.7749999995981,-0.05444940978694784 +96356,481.7799999995981,-0.05444933645056941 +96357,481.7849999995981,-0.05444926311070968 +96358,481.7899999995981,-0.05444918976736821 +96359,481.7949999995981,-0.05444911642054457 +96360,481.79999999959807,-0.05444904307023829 +96361,481.80499999959807,-0.05444896971644894 +96362,481.80999999959806,-0.054448896359176074 +96363,481.81499999959806,-0.05444882299841923 +96364,481.81999999959805,-0.05444874963417797 +96365,481.82499999959805,-0.05444867626645184 +96366,481.82999999959804,-0.0544486028952404 +96367,481.83499999959804,-0.05444852952054319 +96368,481.83999999959804,-0.054448456142359776 +96369,481.84499999959803,-0.05444838276068971 +96370,481.849999999598,-0.05444830937553255 +96371,481.854999999598,-0.054448235986887826 +96372,481.859999999598,-0.05444816259475511 +96373,481.864999999598,-0.05444808919913393 +96374,481.869999999598,-0.054448015800023855 +96375,481.874999999598,-0.05444794239742444 +96376,481.879999999598,-0.054447868991335226 +96377,481.884999999598,-0.05444779558175577 +96378,481.889999999598,-0.05444772216868562 +96379,481.894999999598,-0.05444764875212432 +96380,481.899999999598,-0.05444757533207144 +96381,481.904999999598,-0.054447501908526506 +96382,481.90999999959797,-0.054447428481489084 +96383,481.91499999959797,-0.05444735505095873 +96384,481.91999999959796,-0.05444728161693499 +96385,481.92499999959796,-0.0544472081794174 +96386,481.92999999959795,-0.054447134738405525 +96387,481.93499999959795,-0.05444706129389891 +96388,481.93999999959794,-0.05444698784589711 +96389,481.94499999959794,-0.05444691439439967 +96390,481.94999999959794,-0.05444684093940613 +96391,481.95499999959793,-0.05444676748091605 +96392,481.9599999995979,-0.05444669401892898 +96393,481.9649999995979,-0.05444662055344448 +96394,481.9699999995979,-0.05444654708446207 +96395,481.9749999995979,-0.05444647361198132 +96396,481.9799999995979,-0.05444640013600177 +96397,481.9849999995979,-0.054446326656522985 +96398,481.9899999995979,-0.05444625317354449 +96399,481.9949999995979,-0.05444617968706585 +96400,481.9999999995979,-0.054446106197086605 +96401,482.0049999995979,-0.054446032703606324 +96402,482.0099999995979,-0.054445959206624525 +96403,482.0149999995979,-0.05444588570614077 +96404,482.01999999959787,-0.054445812202154616 +96405,482.02499999959787,-0.054445738694665596 +96406,482.02999999959786,-0.054445665183673254 +96407,482.03499999959786,-0.054445591669177146 +96408,482.03999999959785,-0.054445518151176826 +96409,482.04499999959785,-0.054445444629671824 +96410,482.04999999959784,-0.0544453711046617 +96411,482.05499999959784,-0.054445297576146 +96412,482.05999999959784,-0.054445224044124274 +96413,482.06499999959783,-0.05444515050859606 +96414,482.0699999995978,-0.0544450769695609 +96415,482.0749999995978,-0.054445003427018364 +96416,482.0799999995978,-0.054444929880967975 +96417,482.0849999995978,-0.054444856331409296 +96418,482.0899999995978,-0.05444478277834186 +96419,482.0949999995978,-0.054444709221765225 +96420,482.0999999995978,-0.05444463566167893 +96421,482.1049999995978,-0.054444562098082516 +96422,482.1099999995978,-0.054444488530975534 +96423,482.1149999995978,-0.05444441496035753 +96424,482.1199999995978,-0.05444434138622805 +96425,482.1249999995978,-0.05444426780858663 +96426,482.12999999959777,-0.05444419422743283 +96427,482.13499999959777,-0.05444412064276619 +96428,482.13999999959776,-0.05444404705458626 +96429,482.14499999959776,-0.05444397346289257 +96430,482.14999999959775,-0.05444389986768468 +96431,482.15499999959775,-0.05444382626896212 +96432,482.15999999959774,-0.05444375266672444 +96433,482.16499999959774,-0.054443679060971195 +96434,482.16999999959774,-0.05444360545170191 +96435,482.17499999959773,-0.05444353183891615 +96436,482.1799999995977,-0.05444345822261344 +96437,482.1849999995977,-0.05444338460279335 +96438,482.1899999995977,-0.054443310979455393 +96439,482.1949999995977,-0.05444323735259913 +96440,482.1999999995977,-0.0544431637222241 +96441,482.2049999995977,-0.05444309008832984 +96442,482.2099999995977,-0.054443016450915906 +96443,482.2149999995977,-0.05444294280998183 +96444,482.2199999995977,-0.05444286916552717 +96445,482.2249999995977,-0.05444279551755146 +96446,482.2299999995977,-0.05444272186605424 +96447,482.2349999995977,-0.05444264821103505 +96448,482.23999999959767,-0.05444257455249344 +96449,482.24499999959767,-0.054442500890428944 +96450,482.24999999959766,-0.05444242722484111 +96451,482.25499999959766,-0.05444235355572948 +96452,482.25999999959765,-0.05444227988309361 +96453,482.26499999959765,-0.05444220620693301 +96454,482.26999999959764,-0.05444213252724726 +96455,482.27499999959764,-0.05444205884403587 +96456,482.27999999959763,-0.05444198515729839 +96457,482.28499999959763,-0.05444191146703437 +96458,482.2899999995976,-0.05444183777324335 +96459,482.2949999995976,-0.05444176407592487 +96460,482.2999999995976,-0.054441690375078455 +96461,482.3049999995976,-0.054441616670703664 +96462,482.3099999995976,-0.054441542962800044 +96463,482.3149999995976,-0.054441469251367114 +96464,482.3199999995976,-0.05444139553640442 +96465,482.3249999995976,-0.05444132181791152 +96466,482.3299999995976,-0.05444124809588793 +96467,482.3349999995976,-0.054441174370333204 +96468,482.3399999995976,-0.054441100641246874 +96469,482.3449999995976,-0.0544410269086285 +96470,482.34999999959757,-0.05444095317247761 +96471,482.35499999959757,-0.054440879432793736 +96472,482.35999999959756,-0.054440805689576426 +96473,482.36499999959756,-0.05444073194282521 +96474,482.36999999959755,-0.05444065819253965 +96475,482.37499999959755,-0.054440584438719256 +96476,482.37999999959754,-0.05444051068136358 +96477,482.38499999959754,-0.054440436920472166 +96478,482.38999999959753,-0.054440363156044544 +96479,482.39499999959753,-0.05444028938808026 +96480,482.3999999995975,-0.05444021561657886 +96481,482.4049999995975,-0.054440141841539856 +96482,482.4099999995975,-0.05444006806296281 +96483,482.4149999995975,-0.05443999428084725 +96484,482.4199999995975,-0.05443992049519271 +96485,482.4249999995975,-0.054439846705998746 +96486,482.4299999995975,-0.05443977291326488 +96487,482.4349999995975,-0.054439699116990654 +96488,482.4399999995975,-0.05443962531717561 +96489,482.4449999995975,-0.05443955151381928 +96490,482.4499999995975,-0.05443947770692121 +96491,482.4549999995975,-0.05443940389648093 +96492,482.45999999959747,-0.05443933008249796 +96493,482.46499999959747,-0.05443925626497186 +96494,482.46999999959746,-0.05443918244390217 +96495,482.47499999959746,-0.054439108619288405 +96496,482.47999999959745,-0.054439034791130124 +96497,482.48499999959745,-0.05443896095942685 +96498,482.48999999959744,-0.054438887124178124 +96499,482.49499999959744,-0.05443881328538349 +96500,482.49999999959743,-0.054438739443042464 +96501,482.50499999959743,-0.0544386655971546 +96502,482.5099999995974,-0.05443859174771943 +96503,482.5149999995974,-0.05443851789473648 +96504,482.5199999995974,-0.05443844403820529 +96505,482.5249999995974,-0.05443837017812541 +96506,482.5299999995974,-0.05443829631449636 +96507,482.5349999995974,-0.05443822244731767 +96508,482.5399999995974,-0.0544381485765889 +96509,482.5449999995974,-0.05443807470230957 +96510,482.5499999995974,-0.05443800082447921 +96511,482.5549999995974,-0.054437926943097355 +96512,482.5599999995974,-0.054437853058163545 +96513,482.5649999995974,-0.05443777916967731 +96514,482.56999999959737,-0.054437705277638186 +96515,482.57499999959737,-0.05443763138204572 +96516,482.57999999959736,-0.05443755748289944 +96517,482.58499999959736,-0.054437483580198856 +96518,482.58999999959735,-0.05443740967394354 +96519,482.59499999959735,-0.054437335764132996 +96520,482.59999999959734,-0.05443726185076676 +96521,482.60499999959734,-0.05443718793384439 +96522,482.60999999959733,-0.05443711401336539 +96523,482.61499999959733,-0.054437040089329314 +96524,482.6199999995973,-0.054436966161735684 +96525,482.6249999995973,-0.05443689223058404 +96526,482.6299999995973,-0.05443681829587391 +96527,482.6349999995973,-0.05443674435760482 +96528,482.6399999995973,-0.05443667041577632 +96529,482.6449999995973,-0.05443659647038793 +96530,482.6499999995973,-0.05443652252143919 +96531,482.6549999995973,-0.054436448568929624 +96532,482.6599999995973,-0.05443637461285877 +96533,482.6649999995973,-0.054436300653226154 +96534,482.6699999995973,-0.05443622669003132 +96535,482.6749999995973,-0.05443615272327378 +96536,482.67999999959727,-0.05443607875295308 +96537,482.68499999959727,-0.05443600477906876 +96538,482.68999999959726,-0.05443593080162033 +96539,482.69499999959726,-0.054435856820607344 +96540,482.69999999959725,-0.0544357828360293 +96541,482.70499999959725,-0.05443570884788577 +96542,482.70999999959724,-0.05443563485617625 +96543,482.71499999959724,-0.054435560860900296 +96544,482.71999999959723,-0.05443548686205742 +96545,482.72499999959723,-0.05443541285964716 +96546,482.7299999995972,-0.05443533885366905 +96547,482.7349999995972,-0.054435264844122616 +96548,482.7399999995972,-0.05443519083100739 +96549,482.7449999995972,-0.0544351168143229 +96550,482.7499999995972,-0.05443504279406868 +96551,482.7549999995972,-0.05443496877024426 +96552,482.7599999995972,-0.054434894742849155 +96553,482.7649999995972,-0.05443482071188291 +96554,482.7699999995972,-0.05443474667734505 +96555,482.7749999995972,-0.054434672639235106 +96556,482.7799999995972,-0.054434598597552605 +96557,482.7849999995972,-0.05443452455229708 +96558,482.78999999959717,-0.054434450503468054 +96559,482.79499999959717,-0.05443437645106507 +96560,482.79999999959716,-0.054434302395087626 +96561,482.80499999959716,-0.05443422833553528 +96562,482.80999999959715,-0.05443415427240755 +96563,482.81499999959715,-0.054434080205703964 +96564,482.81999999959714,-0.05443400613542404 +96565,482.82499999959714,-0.05443393206156733 +96566,482.82999999959713,-0.05443385798413334 +96567,482.83499999959713,-0.05443378390312161 +96568,482.8399999995971,-0.054433709818531656 +96569,482.8449999995971,-0.05443363573036302 +96570,482.8499999995971,-0.054433561638615215 +96571,482.8549999995971,-0.054433487543287785 +96572,482.8599999995971,-0.054433413444380234 +96573,482.8649999995971,-0.05443333934189211 +96574,482.8699999995971,-0.05443326523582293 +96575,482.8749999995971,-0.05443319112617223 +96576,482.8799999995971,-0.054433117012939534 +96577,482.8849999995971,-0.05443304289612435 +96578,482.8899999995971,-0.054432968775726225 +96579,482.8949999995971,-0.054432894651744675 +96580,482.89999999959707,-0.054432820524179235 +96581,482.90499999959707,-0.05443274639302942 +96582,482.90999999959706,-0.05443267225829476 +96583,482.91499999959706,-0.054432598119974786 +96584,482.91999999959705,-0.05443252397806902 +96585,482.92499999959705,-0.05443244983257698 +96586,482.92999999959704,-0.05443237568349821 +96587,482.93499999959704,-0.05443230153083222 +96588,482.93999999959703,-0.054432227374578535 +96589,482.94499999959703,-0.05443215321473668 +96590,482.949999999597,-0.054432079051306176 +96591,482.954999999597,-0.054432004884286574 +96592,482.959999999597,-0.05443193071367738 +96593,482.964999999597,-0.05443185653947811 +96594,482.969999999597,-0.054431782361688295 +96595,482.974999999597,-0.05443170818030745 +96596,482.979999999597,-0.05443163399533512 +96597,482.984999999597,-0.05443155980677082 +96598,482.989999999597,-0.05443148561461408 +96599,482.994999999597,-0.0544314114188644 +96600,482.999999999597,-0.05443133721952133 +96601,483.004999999597,-0.054431263016584366 +96602,483.00999999959697,-0.05443118881005306 +96603,483.01499999959697,-0.054431114599926916 +96604,483.01999999959696,-0.05443104038620547 +96605,483.02499999959696,-0.054430966168888234 +96606,483.02999999959695,-0.05443089194797474 +96607,483.03499999959695,-0.05443081772346452 +96608,483.03999999959694,-0.054430743495357065 +96609,483.04499999959694,-0.05443066926365192 +96610,483.04999999959693,-0.054430595028348606 +96611,483.05499999959693,-0.054430520789446636 +96612,483.0599999995969,-0.05443044654694553 +96613,483.0649999995969,-0.054430372300844826 +96614,483.0699999995969,-0.054430298051144035 +96615,483.0749999995969,-0.05443022379784269 +96616,483.0799999995969,-0.05443014954094029 +96617,483.0849999995969,-0.054430075280436384 +96618,483.0899999995969,-0.05443000101633046 +96619,483.0949999995969,-0.054429926748622064 +96620,483.0999999995969,-0.05442985247731072 +96621,483.1049999995969,-0.05442977820239594 +96622,483.1099999995969,-0.05442970392387724 +96623,483.1149999995969,-0.05442962964175415 +96624,483.11999999959687,-0.05442955535602617 +96625,483.12499999959687,-0.05442948106669285 +96626,483.12999999959686,-0.054429406773753686 +96627,483.13499999959686,-0.05442933247720821 +96628,483.13999999959685,-0.05442925817705594 +96629,483.14499999959685,-0.0544291838732964 +96630,483.14999999959684,-0.0544291095659291 +96631,483.15499999959684,-0.05442903525495356 +96632,483.15999999959683,-0.05442896094036931 +96633,483.16499999959683,-0.05442888662217587 +96634,483.1699999995968,-0.05442881230037274 +96635,483.1749999995968,-0.054428737974959465 +96636,483.1799999995968,-0.05442866364593554 +96637,483.1849999995968,-0.054428589313300496 +96638,483.1899999995968,-0.05442851497705385 +96639,483.1949999995968,-0.054428440637195125 +96640,483.1999999995968,-0.05442836629372383 +96641,483.2049999995968,-0.05442829194663949 +96642,483.2099999995968,-0.054428217595941616 +96643,483.2149999995968,-0.05442814324162974 +96644,483.2199999995968,-0.054428068883703364 +96645,483.2249999995968,-0.05442799452216201 +96646,483.22999999959677,-0.054427920157005205 +96647,483.23499999959677,-0.05442784578823246 +96648,483.23999999959676,-0.05442777141584328 +96649,483.24499999959676,-0.0544276970398372 +96650,483.24999999959675,-0.05442762266021373 +96651,483.25499999959675,-0.05442754827697239 +96652,483.25999999959674,-0.054427473890112696 +96653,483.26499999959674,-0.05442739949963416 +96654,483.26999999959673,-0.054427325105536314 +96655,483.27499999959673,-0.05442725070781866 +96656,483.2799999995967,-0.0544271763064807 +96657,483.2849999995967,-0.05442710190152198 +96658,483.2899999995967,-0.054427027492942 +96659,483.2949999995967,-0.054426953080740276 +96660,483.2999999995967,-0.05442687866491633 +96661,483.3049999995967,-0.05442680424546968 +96662,483.3099999995967,-0.054426729822399836 +96663,483.3149999995967,-0.054426655395706305 +96664,483.3199999995967,-0.05442658096538861 +96665,483.3249999995967,-0.05442650653144627 +96666,483.3299999995967,-0.05442643209387879 +96667,483.3349999995967,-0.0544263576526857 +96668,483.33999999959667,-0.05442628320786651 +96669,483.34499999959667,-0.05442620875942072 +96670,483.34999999959666,-0.05442613430734786 +96671,483.35499999959666,-0.05442605985164745 +96672,483.35999999959665,-0.05442598539231898 +96673,483.36499999959665,-0.05442591092936198 +96674,483.36999999959664,-0.05442583646277596 +96675,483.37499999959664,-0.05442576199256044 +96676,483.37999999959663,-0.054425687518714926 +96677,483.38499999959663,-0.054425613041238934 +96678,483.3899999995966,-0.054425538560131985 +96679,483.3949999995966,-0.05442546407539358 +96680,483.3999999995966,-0.05442538958702323 +96681,483.4049999995966,-0.054425315095020466 +96682,483.4099999995966,-0.05442524059938479 +96683,483.4149999995966,-0.05442516610011572 +96684,483.4199999995966,-0.05442509159721276 +96685,483.4249999995966,-0.054425017090675425 +96686,483.4299999995966,-0.054424942580503226 +96687,483.4349999995966,-0.05442486806669568 +96688,483.4399999995966,-0.0544247935492523 +96689,483.4449999995966,-0.05442471902817259 +96690,483.44999999959657,-0.05442464450345606 +96691,483.45499999959657,-0.05442456997510225 +96692,483.45999999959656,-0.05442449544311063 +96693,483.46499999959656,-0.05442442090748074 +96694,483.46999999959655,-0.054424346368212084 +96695,483.47499999959655,-0.054424271825304175 +96696,483.47999999959654,-0.054424197278756525 +96697,483.48499999959654,-0.054424122728568634 +96698,483.48999999959653,-0.054424048174740024 +96699,483.49499999959653,-0.054423973617270194 +96700,483.4999999995965,-0.05442389905615867 +96701,483.5049999995965,-0.05442382449140496 +96702,483.5099999995965,-0.05442374992300856 +96703,483.5149999995965,-0.054423675350968995 +96704,483.5199999995965,-0.05442360077528576 +96705,483.5249999995965,-0.05442352619595839 +96706,483.5299999995965,-0.05442345161298637 +96707,483.5349999995965,-0.05442337702636921 +96708,483.5399999995965,-0.05442330243610643 +96709,483.5449999995965,-0.05442322784219753 +96710,483.5499999995965,-0.05442315324464204 +96711,483.5549999995965,-0.054423078643439454 +96712,483.55999999959647,-0.05442300403858928 +96713,483.56499999959647,-0.054422929430091034 +96714,483.56999999959646,-0.05442285481794421 +96715,483.57499999959646,-0.05442278020214833 +96716,483.57999999959645,-0.0544227055827029 +96717,483.58499999959645,-0.054422630959607435 +96718,483.58999999959644,-0.05442255633286142 +96719,483.59499999959644,-0.05442248170246438 +96720,483.59999999959643,-0.05442240706841582 +96721,483.60499999959643,-0.05442233243071526 +96722,483.6099999995964,-0.054422257789362195 +96723,483.6149999995964,-0.05442218314435613 +96724,483.6199999995964,-0.054422108495696564 +96725,483.6249999995964,-0.05442203384338302 +96726,483.6299999995964,-0.05442195918741501 +96727,483.6349999995964,-0.05442188452779203 +96728,483.6399999995964,-0.054421809864513594 +96729,483.6449999995964,-0.054421735197579195 +96730,483.6499999995964,-0.054421660526988345 +96731,483.6549999995964,-0.05442158585274057 +96732,483.6599999995964,-0.054421511174835346 +96733,483.6649999995964,-0.0544214364932722 +96734,483.66999999959637,-0.05442136180805062 +96735,483.67499999959637,-0.05442128711917013 +96736,483.67999999959636,-0.054421212426630235 +96737,483.68499999959636,-0.05442113773043043 +96738,483.68999999959635,-0.054421063030570226 +96739,483.69499999959635,-0.054420988327049134 +96740,483.69999999959634,-0.05442091361986664 +96741,483.70499999959634,-0.054420838909022266 +96742,483.70999999959633,-0.05442076419451551 +96743,483.71499999959633,-0.05442068947634589 +96744,483.7199999995963,-0.05442061475451288 +96745,483.7249999995963,-0.05442054002901602 +96746,483.7299999995963,-0.054420465299854795 +96747,483.7349999995963,-0.05442039056702872 +96748,483.7399999995963,-0.05442031583053729 +96749,483.7449999995963,-0.05442024109038 +96750,483.7499999995963,-0.05442016634655637 +96751,483.7549999995963,-0.0544200915990659 +96752,483.7599999995963,-0.054420016847908086 +96753,483.7649999995963,-0.05441994209308246 +96754,483.7699999995963,-0.05441986733458849 +96755,483.7749999995963,-0.05441979257242569 +96756,483.77999999959627,-0.05441971780659357 +96757,483.78499999959627,-0.05441964303709162 +96758,483.78999999959626,-0.05441956826391936 +96759,483.79499999959626,-0.05441949348707628 +96760,483.79999999959625,-0.05441941870656188 +96761,483.80499999959625,-0.05441934392237569 +96762,483.80999999959624,-0.05441926913451718 +96763,483.81499999959624,-0.05441919434298586 +96764,483.81999999959623,-0.05441911954778124 +96765,483.82499999959623,-0.05441904474890281 +96766,483.8299999995962,-0.05441896994635007 +96767,483.8349999995962,-0.05441889514012255 +96768,483.8399999995962,-0.05441882033021972 +96769,483.8449999995962,-0.054418745516641095 +96770,483.8499999995962,-0.05441867069938618 +96771,483.8549999995962,-0.05441859587845447 +96772,483.8599999995962,-0.05441852105384547 +96773,483.8649999995962,-0.05441844622555867 +96774,483.8699999995962,-0.054418371393593575 +96775,483.8749999995962,-0.05441829655794969 +96776,483.8799999995962,-0.054418221718626515 +96777,483.8849999995962,-0.05441814687562355 +96778,483.88999999959617,-0.0544180720289403 +96779,483.89499999959617,-0.05441799717857626 +96780,483.89999999959616,-0.054417922324530923 +96781,483.90499999959616,-0.054417847466803795 +96782,483.90999999959615,-0.05441777260539438 +96783,483.91499999959615,-0.05441769774030216 +96784,483.91999999959614,-0.05441762287152666 +96785,483.92499999959614,-0.05441754799906737 +96786,483.92999999959613,-0.05441747312292377 +96787,483.93499999959613,-0.054417398243095376 +96788,483.9399999995961,-0.05441732335958169 +96789,483.9449999995961,-0.0544172484723822 +96790,483.9499999995961,-0.05441717358149641 +96791,483.9549999995961,-0.05441709868692382 +96792,483.9599999995961,-0.05441702378866393 +96793,483.9649999995961,-0.05441694888671623 +96794,483.9699999995961,-0.054416873981080215 +96795,483.9749999995961,-0.05441679907175541 +96796,483.9799999995961,-0.05441672415874128 +96797,483.9849999995961,-0.05441664924203734 +96798,483.9899999995961,-0.05441657432164308 +96799,483.9949999995961,-0.054416499397558 +96800,483.99999999959607,-0.05441642446978161 +96801,484.00499999959607,-0.05441634953831337 +96802,484.00999999959606,-0.05441627460315281 +96803,484.01499999959606,-0.054416199664299426 +96804,484.01999999959605,-0.054416124721752696 +96805,484.02499999959605,-0.054416049775512135 +96806,484.02999999959604,-0.054415974825577224 +96807,484.03499999959604,-0.054415899871947476 +96808,484.03999999959603,-0.054415824914622365 +96809,484.04499999959603,-0.054415749953601406 +96810,484.049999999596,-0.054415674988884076 +96811,484.054999999596,-0.0544156000204699 +96812,484.059999999596,-0.05441552504835835 +96813,484.064999999596,-0.05441545007254892 +96814,484.069999999596,-0.05441537509304112 +96815,484.074999999596,-0.05441530010983443 +96816,484.079999999596,-0.054415225122928366 +96817,484.084999999596,-0.0544151501323224 +96818,484.089999999596,-0.054415075138016036 +96819,484.094999999596,-0.054415000140008773 +96820,484.099999999596,-0.05441492513830009 +96821,484.104999999596,-0.0544148501328895 +96822,484.10999999959597,-0.054414775123776495 +96823,484.11499999959597,-0.05441470011096056 +96824,484.11999999959596,-0.05441462509444118 +96825,484.12499999959596,-0.054414550074217874 +96826,484.12999999959595,-0.05441447505029012 +96827,484.13499999959595,-0.05441440002265742 +96828,484.13999999959594,-0.05441432499131925 +96829,484.14499999959594,-0.05441424995627511 +96830,484.14999999959593,-0.054414174917524503 +96831,484.15499999959593,-0.05441409987506692 +96832,484.1599999995959,-0.05441402482890185 +96833,484.1649999995959,-0.05441394977902878 +96834,484.1699999995959,-0.05441387472544722 +96835,484.1749999995959,-0.05441379966815664 +96836,484.1799999995959,-0.05441372460715654 +96837,484.1849999995959,-0.05441364954244642 +96838,484.1899999995959,-0.05441357447402577 +96839,484.1949999995959,-0.05441349940189407 +96840,484.1999999995959,-0.054413424326050834 +96841,484.2049999995959,-0.05441334924649553 +96842,484.2099999995959,-0.05441327416322766 +96843,484.2149999995959,-0.0544131990762467 +96844,484.21999999959587,-0.05441312398555216 +96845,484.22499999959587,-0.05441304889114353 +96846,484.22999999959586,-0.0544129737930203 +96847,484.23499999959586,-0.05441289869118195 +96848,484.23999999959585,-0.05441282358562799 +96849,484.24499999959585,-0.054412748476357894 +96850,484.24999999959584,-0.054412673363371154 +96851,484.25499999959584,-0.05441259824666726 +96852,484.25999999959583,-0.054412523126245706 +96853,484.26499999959583,-0.05441244800210598 +96854,484.2699999995958,-0.05441237287424757 +96855,484.2749999995958,-0.05441229774266998 +96856,484.2799999995958,-0.05441222260737268 +96857,484.2849999995958,-0.054412147468355175 +96858,484.2899999995958,-0.054412072325616935 +96859,484.2949999995958,-0.05441199717915747 +96860,484.2999999995958,-0.05441192202897625 +96861,484.3049999995958,-0.05441184687507277 +96862,484.3099999995958,-0.05441177171744653 +96863,484.3149999995958,-0.054411696556097 +96864,484.3199999995958,-0.054411621391023686 +96865,484.3249999995958,-0.05441154622222607 +96866,484.32999999959577,-0.05441147104970362 +96867,484.33499999959577,-0.05441139587345586 +96868,484.33999999959576,-0.05441132069348226 +96869,484.34499999959576,-0.05441124550978229 +96870,484.34999999959575,-0.05441117032235548 +96871,484.35499999959575,-0.05441109513120128 +96872,484.35999999959574,-0.054411019936319194 +96873,484.36499999959574,-0.05441094473770869 +96874,484.36999999959573,-0.05441086953536927 +96875,484.37499999959573,-0.05441079432930043 +96876,484.3799999995957,-0.05441071911950165 +96877,484.3849999995957,-0.05441064390597241 +96878,484.3899999995957,-0.05441056868871219 +96879,484.3949999995957,-0.0544104934677205 +96880,484.3999999995957,-0.05441041824299681 +96881,484.4049999995957,-0.054410343014540605 +96882,484.4099999995957,-0.05441026778235137 +96883,484.4149999995957,-0.05441019254642861 +96884,484.4199999995957,-0.05441011730677178 +96885,484.4249999995957,-0.05441004206338039 +96886,484.4299999995957,-0.054409966816253916 +96887,484.4349999995957,-0.05440989156539183 +96888,484.43999999959567,-0.054409816310793634 +96889,484.44499999959567,-0.05440974105245881 +96890,484.44999999959566,-0.05440966579038684 +96891,484.45499999959566,-0.054409590524577216 +96892,484.45999999959565,-0.054409515255029406 +96893,484.46499999959565,-0.054409439981742906 +96894,484.46999999959564,-0.05440936470471721 +96895,484.47499999959564,-0.054409289423951776 +96896,484.47999999959563,-0.054409214139446105 +96897,484.48499999959563,-0.05440913885119969 +96898,484.4899999995956,-0.054409063559212004 +96899,484.4949999995956,-0.05440898826348251 +96900,484.4999999995956,-0.05440891296401072 +96901,484.5049999995956,-0.05440883766079613 +96902,484.5099999995956,-0.05440876235383817 +96903,484.5149999995956,-0.05440868704313637 +96904,484.5199999995956,-0.054408611728690194 +96905,484.5249999995956,-0.05440853641049913 +96906,484.5299999995956,-0.05440846108856265 +96907,484.5349999995956,-0.05440838576288024 +96908,484.5399999995956,-0.054408310433451394 +96909,484.5449999995956,-0.05440823510027558 +96910,484.54999999959557,-0.05440815976335229 +96911,484.55499999959557,-0.054408084422681004 +96912,484.55999999959556,-0.0544080090782612 +96913,484.56499999959556,-0.05440793373009237 +96914,484.56999999959555,-0.05440785837817397 +96915,484.57499999959555,-0.0544077830225055 +96916,484.57999999959554,-0.05440770766308644 +96917,484.58499999959554,-0.05440763229991628 +96918,484.58999999959553,-0.05440755693299448 +96919,484.59499999959553,-0.054407481562320545 +96920,484.5999999995955,-0.05440740618789393 +96921,484.6049999995955,-0.054407330809714126 +96922,484.6099999995955,-0.05440725542778061 +96923,484.6149999995955,-0.05440718004209288 +96924,484.6199999995955,-0.05440710465265039 +96925,484.6249999995955,-0.05440702925945263 +96926,484.6299999995955,-0.05440695386249908 +96927,484.6349999995955,-0.054406878461789224 +96928,484.6399999995955,-0.05440680305732253 +96929,484.6449999995955,-0.0544067276490985 +96930,484.6499999995955,-0.05440665223711659 +96931,484.6549999995955,-0.05440657682137629 +96932,484.65999999959547,-0.05440650140187708 +96933,484.66499999959547,-0.05440642597861843 +96934,484.66999999959546,-0.054406350551599814 +96935,484.67499999959546,-0.054406275120820725 +96936,484.67999999959545,-0.05440619968628063 +96937,484.68499999959545,-0.054406124247979026 +96938,484.68999999959544,-0.05440604880591536 +96939,484.69499999959544,-0.054405973360089135 +96940,484.69999999959543,-0.05440589791049983 +96941,484.70499999959543,-0.05440582245714691 +96942,484.7099999995954,-0.05440574700002986 +96943,484.7149999995954,-0.054405671539148145 +96944,484.7199999995954,-0.054405596074501246 +96945,484.7249999995954,-0.05440552060608866 +96946,484.7299999995954,-0.05440544513390984 +96947,484.7349999995954,-0.054405369657964275 +96948,484.7399999995954,-0.05440529417825143 +96949,484.7449999995954,-0.05440521869477078 +96950,484.7499999995954,-0.054405143207521815 +96951,484.7549999995954,-0.05440506771650401 +96952,484.7599999995954,-0.05440499222171684 +96953,484.7649999995954,-0.05440491672315977 +96954,484.76999999959537,-0.0544048412208323 +96955,484.77499999959537,-0.05440476571473387 +96956,484.77999999959536,-0.054404690204863985 +96957,484.78499999959536,-0.05440461469122211 +96958,484.78999999959535,-0.054404539173807706 +96959,484.79499999959535,-0.054404463652620264 +96960,484.79999999959534,-0.05440438812765926 +96961,484.80499999959534,-0.054404312598924164 +96962,484.80999999959533,-0.05440423706641445 +96963,484.81499999959533,-0.0544041615301296 +96964,484.8199999995953,-0.05440408599006908 +96965,484.8249999995953,-0.054404010446232366 +96966,484.8299999995953,-0.05440393489861893 +96967,484.8349999995953,-0.05440385934722825 +96968,484.8399999995953,-0.0544037837920598 +96969,484.8449999995953,-0.05440370823311305 +96970,484.8499999995953,-0.05440363267038747 +96971,484.8549999995953,-0.05440355710388253 +96972,484.8599999995953,-0.054403481533597725 +96973,484.8649999995953,-0.054403405959532504 +96974,484.8699999995953,-0.05440333038168636 +96975,484.8749999995953,-0.05440325480005875 +96976,484.87999999959527,-0.05440317921464914 +96977,484.88499999959527,-0.05440310362545702 +96978,484.88999999959526,-0.05440302803248186 +96979,484.89499999959526,-0.05440295243572312 +96980,484.89999999959525,-0.054402876835180296 +96981,484.90499999959525,-0.05440280123085283 +96982,484.90999999959524,-0.05440272562274022 +96983,484.91499999959524,-0.05440265001084193 +96984,484.91999999959523,-0.0544025743951574 +96985,484.92499999959523,-0.05440249877568614 +96986,484.9299999995952,-0.05440242315242762 +96987,484.9349999995952,-0.05440234752538129 +96988,484.9399999995952,-0.05440227189454663 +96989,484.9449999995952,-0.05440219625992312 +96990,484.9499999995952,-0.05440212062151021 +96991,484.9549999995952,-0.054402044979307375 +96992,484.9599999995952,-0.0544019693333141 +96993,484.9649999995952,-0.05440189368352985 +96994,484.9699999995952,-0.054401818029954085 +96995,484.9749999995952,-0.054401742372586284 +96996,484.9799999995952,-0.05440166671142592 +96997,484.9849999995952,-0.05440159104647245 +96998,484.98999999959517,-0.05440151537772535 +96999,484.99499999959517,-0.05440143970518409 +97000,484.99999999959516,-0.05440136402884814 +97001,485.00499999959516,-0.054401288348716964 +97002,485.00999999959515,-0.05440121266479004 +97003,485.01499999959515,-0.054401136977066826 +97004,485.01999999959514,-0.0544010612855468 +97005,485.02499999959514,-0.05440098559022943 +97006,485.02999999959513,-0.054400909891114166 +97007,485.03499999959513,-0.05440083418820049 +97008,485.0399999995951,-0.054400758481487885 +97009,485.0449999995951,-0.054400682770975796 +97010,485.0499999995951,-0.05440060705666369 +97011,485.0549999995951,-0.05440053133855105 +97012,485.0599999995951,-0.05440045561663733 +97013,485.0649999995951,-0.054400379890922015 +97014,485.0699999995951,-0.05440030416140455 +97015,485.0749999995951,-0.0544002284280844 +97016,485.0799999995951,-0.054400152690961066 +97017,485.0849999995951,-0.05440007695003398 +97018,485.0899999995951,-0.05440000120530262 +97019,485.0949999995951,-0.05439992545676645 +97020,485.09999999959507,-0.05439984970442494 +97021,485.10499999959507,-0.05439977394827756 +97022,485.10999999959506,-0.05439969818832377 +97023,485.11499999959506,-0.05439962242456303 +97024,485.11999999959505,-0.05439954665699481 +97025,485.12499999959505,-0.054399470885618584 +97026,485.12999999959504,-0.054399395110433804 +97027,485.13499999959504,-0.05439931933143994 +97028,485.13999999959503,-0.05439924354863646 +97029,485.14499999959503,-0.054399167762022846 +97030,485.149999999595,-0.05439909197159852 +97031,485.154999999595,-0.05439901617736298 +97032,485.159999999595,-0.05439894037931569 +97033,485.164999999595,-0.054398864577456095 +97034,485.169999999595,-0.054398788771783675 +97035,485.174999999595,-0.05439871296229788 +97036,485.179999999595,-0.05439863714899819 +97037,485.184999999595,-0.05439856133188405 +97038,485.189999999595,-0.05439848551095494 +97039,485.194999999595,-0.05439840968621031 +97040,485.199999999595,-0.054398333857649646 +97041,485.204999999595,-0.054398258025272386 +97042,485.20999999959497,-0.054398182189078 +97043,485.21499999959497,-0.05439810634906596 +97044,485.21999999959496,-0.05439803050523573 +97045,485.22499999959496,-0.054397954657586754 +97046,485.22999999959495,-0.0543978788061185 +97047,485.23499999959495,-0.05439780295083044 +97048,485.23999999959494,-0.05439772709172203 +97049,485.24499999959494,-0.05439765122879274 +97050,485.24999999959493,-0.05439757536204202 +97051,485.25499999959493,-0.05439749949146933 +97052,485.2599999995949,-0.054397423617074156 +97053,485.2649999995949,-0.054397347738855927 +97054,485.2699999995949,-0.05439727185681413 +97055,485.2749999995949,-0.054397195970948206 +97056,485.2799999995949,-0.054397120081257626 +97057,485.2849999995949,-0.05439704418774184 +97058,485.2899999995949,-0.054396968290400326 +97059,485.2949999995949,-0.05439689238923254 +97060,485.2999999995949,-0.054396816484237935 +97061,485.3049999995949,-0.054396740575415964 +97062,485.3099999995949,-0.0543966646627661 +97063,485.3149999995949,-0.054396588746287805 +97064,485.31999999959487,-0.054396512825980535 +97065,485.32499999959487,-0.05439643690184376 +97066,485.32999999959486,-0.05439636097387691 +97067,485.33499999959486,-0.05439628504207947 +97068,485.33999999959485,-0.054396209106450884 +97069,485.34499999959485,-0.05439613316699062 +97070,485.34999999959484,-0.054396057223698134 +97071,485.35499999959484,-0.0543959812765729 +97072,485.35999999959483,-0.05439590532561435 +97073,485.36499999959483,-0.054395829370821956 +97074,485.3699999995948,-0.05439575341219518 +97075,485.3749999995948,-0.05439567744973347 +97076,485.3799999995948,-0.05439560148343628 +97077,485.3849999995948,-0.05439552551330309 +97078,485.3899999995948,-0.054395449539333326 +97079,485.3949999995948,-0.05439537356152647 +97080,485.3999999995948,-0.05439529757988197 +97081,485.4049999995948,-0.05439522159439929 +97082,485.4099999995948,-0.05439514560507789 +97083,485.4149999995948,-0.05439506961191721 +97084,485.4199999995948,-0.05439499361491672 +97085,485.4249999995948,-0.05439491761407587 +97086,485.42999999959477,-0.054394841609394125 +97087,485.43499999959477,-0.05439476560087093 +97088,485.43999999959476,-0.05439468958850574 +97089,485.44499999959476,-0.05439461357229803 +97090,485.44999999959475,-0.05439453755224725 +97091,485.45499999959475,-0.05439446152835284 +97092,485.45999999959474,-0.05439438550061426 +97093,485.46499999959474,-0.054394309469030976 +97094,485.46999999959473,-0.05439423343360244 +97095,485.47499999959473,-0.0543941573943281 +97096,485.4799999995947,-0.05439408135120742 +97097,485.4849999995947,-0.054394005304239844 +97098,485.4899999995947,-0.05439392925342483 +97099,485.4949999995947,-0.054393853198761846 +97100,485.4999999995947,-0.054393777140250336 +97101,485.5049999995947,-0.054393701077889746 +97102,485.5099999995947,-0.05439362501167955 +97103,485.5149999995947,-0.05439354894161917 +97104,485.5199999995947,-0.0543934728677081 +97105,485.5249999995947,-0.05439339678994576 +97106,485.5299999995947,-0.05439332070833162 +97107,485.5349999995947,-0.05439324462286513 +97108,485.53999999959467,-0.054393168533545734 +97109,485.54499999959467,-0.054393092440372895 +97110,485.54999999959466,-0.054393016343346076 +97111,485.55499999959466,-0.054392940242464716 +97112,485.55999999959465,-0.054392864137728265 +97113,485.56499999959465,-0.054392788029136184 +97114,485.56999999959464,-0.05439271191668793 +97115,485.57499999959464,-0.054392635800382935 +97116,485.57999999959463,-0.05439255968022067 +97117,485.58499999959463,-0.05439248355620058 +97118,485.5899999995946,-0.054392407428322104 +97119,485.5949999995946,-0.05439233129658472 +97120,485.5999999995946,-0.05439225516098786 +97121,485.6049999995946,-0.05439217902153098 +97122,485.6099999995946,-0.05439210287821352 +97123,485.6149999995946,-0.054392026731034944 +97124,485.6199999995946,-0.05439195057999471 +97125,485.6249999995946,-0.05439187442509225 +97126,485.6299999995946,-0.05439179826632703 +97127,485.6349999995946,-0.0543917221036985 +97128,485.6399999995946,-0.05439164593720609 +97129,485.6449999995946,-0.05439156976684927 +97130,485.64999999959457,-0.0543914935926275 +97131,485.65499999959457,-0.0543914174145402 +97132,485.65999999959456,-0.05439134123258684 +97133,485.66499999959456,-0.05439126504676686 +97134,485.66999999959455,-0.05439118885707971 +97135,485.67499999959455,-0.05439111266352484 +97136,485.67999999959454,-0.054391036466101696 +97137,485.68499999959454,-0.05439096026480974 +97138,485.68999999959453,-0.0543908840596484 +97139,485.69499999959453,-0.05439080785061714 +97140,485.6999999995945,-0.054390731637715406 +97141,485.7049999995945,-0.05439065542094264 +97142,485.7099999995945,-0.05439057920029829 +97143,485.7149999995945,-0.05439050297578182 +97144,485.7199999995945,-0.05439042674739265 +97145,485.7249999995945,-0.05439035051513027 +97146,485.7299999995945,-0.05439027427899409 +97147,485.7349999995945,-0.05439019803898356 +97148,485.7399999995945,-0.05439012179509814 +97149,485.7449999995945,-0.054390045547337264 +97150,485.7499999995945,-0.0543899692957004 +97151,485.7549999995945,-0.05438989304018698 +97152,485.75999999959447,-0.054389816780796435 +97153,485.76499999959447,-0.05438974051752824 +97154,485.76999999959446,-0.05438966425038183 +97155,485.77499999959446,-0.05438958797935665 +97156,485.77999999959445,-0.05438951170445215 +97157,485.78499999959445,-0.05438943542566777 +97158,485.78999999959444,-0.05438935914300296 +97159,485.79499999959444,-0.05438928285645717 +97160,485.79999999959443,-0.05438920656602983 +97161,485.80499999959443,-0.05438913027172039 +97162,485.8099999995944,-0.054389053973528306 +97163,485.8149999995944,-0.05438897767145301 +97164,485.8199999995944,-0.05438890136549395 +97165,485.8249999995944,-0.05438882505565058 +97166,485.8299999995944,-0.054388748741922344 +97167,485.8349999995944,-0.05438867242430867 +97168,485.8399999995944,-0.054388596102809 +97169,485.8449999995944,-0.0543885197774228 +97170,485.8499999995944,-0.054388443448149505 +97171,485.8549999995944,-0.05438836711498855 +97172,485.8599999995944,-0.054388290777939406 +97173,485.8649999995944,-0.05438821443700148 +97174,485.86999999959437,-0.05438813809217423 +97175,485.87499999959437,-0.0543880617434571 +97176,485.87999999959436,-0.05438798539084954 +97177,485.88499999959436,-0.05438790903435097 +97178,485.88999999959435,-0.054387832673960856 +97179,485.89499999959435,-0.05438775630967864 +97180,485.89999999959434,-0.05438767994150375 +97181,485.90499999959434,-0.05438760356943563 +97182,485.90999999959433,-0.05438752719347373 +97183,485.91499999959433,-0.05438745081361749 +97184,485.9199999995943,-0.05438737442986635 +97185,485.9249999995943,-0.054387298042219756 +97186,485.9299999995943,-0.05438722165067714 +97187,485.9349999995943,-0.05438714525523794 +97188,485.9399999995943,-0.05438706885590162 +97189,485.9449999995943,-0.0543869924526676 +97190,485.9499999995943,-0.05438691604553532 +97191,485.9549999995943,-0.054386839634504226 +97192,485.9599999995943,-0.05438676321957377 +97193,485.9649999995943,-0.05438668680074338 +97194,485.9699999995943,-0.05438661037801249 +97195,485.9749999995943,-0.05438653395138056 +97196,485.97999999959427,-0.054386457520847004 +97197,485.98499999959427,-0.05438638108641128 +97198,485.98999999959426,-0.05438630464807282 +97199,485.99499999959426,-0.054386228205831076 +97200,485.99999999959425,-0.05438615175968546 +97201,486.00499999959425,-0.054386075309635434 +97202,486.00999999959424,-0.05438599885568043 +97203,486.01499999959424,-0.054385922397819884 +97204,486.01999999959423,-0.054385845936053244 +97205,486.02499999959423,-0.054385769470379944 +97206,486.0299999995942,-0.05438569300079942 +97207,486.0349999995942,-0.054385616527311116 +97208,486.0399999995942,-0.05438554004991446 +97209,486.0449999995942,-0.054385463568608884 +97210,486.0499999995942,-0.05438538708339384 +97211,486.0549999995942,-0.05438531059426876 +97212,486.0599999995942,-0.05438523410123308 +97213,486.0649999995942,-0.05438515760428625 +97214,486.0699999995942,-0.0543850811034277 +97215,486.0749999995942,-0.05438500459865685 +97216,486.0799999995942,-0.05438492808997316 +97217,486.0849999995942,-0.054384851577376055 +97218,486.08999999959417,-0.05438477506086497 +97219,486.09499999959417,-0.05438469854043935 +97220,486.09999999959416,-0.054384622016098616 +97221,486.10499999959416,-0.05438454548784223 +97222,486.10999999959415,-0.054384468955669604 +97223,486.11499999959415,-0.05438439241958018 +97224,486.11999999959414,-0.054384315879573396 +97225,486.12499999959414,-0.05438423933564869 +97226,486.12999999959413,-0.05438416278780548 +97227,486.13499999959413,-0.05438408623604322 +97228,486.1399999995941,-0.054384009680361334 +97229,486.1449999995941,-0.054383933120759266 +97230,486.1499999995941,-0.054383856557236446 +97231,486.1549999995941,-0.054383779989792304 +97232,486.1599999995941,-0.05438370341842628 +97233,486.1649999995941,-0.05438362684313781 +97234,486.1699999995941,-0.05438355026392633 +97235,486.1749999995941,-0.05438347368079126 +97236,486.1799999995941,-0.05438339709373204 +97237,486.1849999995941,-0.054383320502748106 +97238,486.1899999995941,-0.05438324390783889 +97239,486.1949999995941,-0.054383167309003826 +97240,486.19999999959407,-0.054383090706242344 +97241,486.20499999959407,-0.05438301409955389 +97242,486.20999999959406,-0.05438293748893788 +97243,486.21499999959406,-0.05438286087439376 +97244,486.21999999959405,-0.05438278425592094 +97245,486.22499999959405,-0.05438270763351888 +97246,486.22999999959404,-0.05438263100718699 +97247,486.23499999959404,-0.05438255437692472 +97248,486.23999999959403,-0.054382477742731486 +97249,486.24499999959403,-0.05438240110460673 +97250,486.249999999594,-0.054382324462549876 +97251,486.254999999594,-0.054382247816560356 +97252,486.259999999594,-0.054382171166637606 +97253,486.264999999594,-0.05438209451278105 +97254,486.269999999594,-0.054382017854990125 +97255,486.274999999594,-0.05438194119326427 +97256,486.279999999594,-0.0543818645276029 +97257,486.284999999594,-0.05438178785800545 +97258,486.289999999594,-0.05438171118447136 +97259,486.294999999594,-0.05438163450700003 +97260,486.299999999594,-0.05438155782559092 +97261,486.304999999594,-0.05438148114024345 +97262,486.30999999959397,-0.05438140445095705 +97263,486.31499999959397,-0.054381327757731156 +97264,486.31999999959396,-0.05438125106056519 +97265,486.32499999959396,-0.054381174359458585 +97266,486.32999999959395,-0.05438109765441075 +97267,486.33499999959395,-0.054381020945421146 +97268,486.33999999959394,-0.054380944232489174 +97269,486.34499999959394,-0.05438086751561427 +97270,486.34999999959393,-0.05438079079479587 +97271,486.35499999959393,-0.054380714070033406 +97272,486.3599999995939,-0.054380637341326296 +97273,486.3649999995939,-0.05438056060867396 +97274,486.3699999995939,-0.05438048387207584 +97275,486.3749999995939,-0.054380407131531375 +97276,486.3799999995939,-0.05438033038703996 +97277,486.3849999995939,-0.05438025363860105 +97278,486.3899999995939,-0.05438017688621406 +97279,486.3949999995939,-0.054380100129878414 +97280,486.3999999995939,-0.05438002336959354 +97281,486.4049999995939,-0.054379946605358866 +97282,486.4099999995939,-0.05437986983717383 +97283,486.4149999995939,-0.05437979306503783 +97284,486.41999999959387,-0.054379716288950324 +97285,486.42499999959387,-0.05437963950891071 +97286,486.42999999959386,-0.054379562724918444 +97287,486.43499999959386,-0.05437948593697293 +97288,486.43999999959385,-0.05437940914507358 +97289,486.44499999959385,-0.05437933234921985 +97290,486.44999999959384,-0.05437925554941116 +97291,486.45499999959384,-0.05437917874564691 +97292,486.45999999959383,-0.05437910193792655 +97293,486.46499999959383,-0.0543790251262495 +97294,486.4699999995938,-0.054378948310615176 +97295,486.4749999995938,-0.05437887149102301 +97296,486.4799999995938,-0.05437879466747242 +97297,486.4849999995938,-0.054378717839962835 +97298,486.4899999995938,-0.054378641008493676 +97299,486.4949999995938,-0.054378564173064366 +97300,486.4999999995938,-0.05437848733367433 +97301,486.5049999995938,-0.05437841049032299 +97302,486.5099999995938,-0.054378333643009785 +97303,486.5149999995938,-0.054378256791734116 +97304,486.5199999995938,-0.054378179936495415 +97305,486.5249999995938,-0.054378103077293106 +97306,486.52999999959377,-0.05437802621412661 +97307,486.53499999959377,-0.05437794934699534 +97308,486.53999999959376,-0.05437787247589873 +97309,486.54499999959376,-0.05437779560083619 +97310,486.54999999959375,-0.05437771872180717 +97311,486.55499999959375,-0.05437764183881106 +97312,486.55999999959374,-0.05437756495184729 +97313,486.56499999959374,-0.054377488060915295 +97314,486.56999999959373,-0.05437741116601448 +97315,486.57499999959373,-0.05437733426714428 +97316,486.5799999995937,-0.0543772573643041 +97317,486.5849999995937,-0.05437718045749338 +97318,486.5899999995937,-0.054377103546711526 +97319,486.5949999995937,-0.05437702663195796 +97320,486.5999999995937,-0.054376949713232106 +97321,486.6049999995937,-0.05437687279053338 +97322,486.6099999995937,-0.05437679586386122 +97323,486.6149999995937,-0.05437671893321502 +97324,486.6199999995937,-0.05437664199859421 +97325,486.6249999995937,-0.054376565059998216 +97326,486.6299999995937,-0.05437648811742645 +97327,486.6349999995937,-0.05437641117087833 +97328,486.63999999959367,-0.054376334220353276 +97329,486.64499999959367,-0.0543762572658507 +97330,486.64999999959366,-0.054376180307370035 +97331,486.65499999959366,-0.054376103344910706 +97332,486.65999999959365,-0.05437602637847211 +97333,486.66499999959365,-0.054375949408053674 +97334,486.66999999959364,-0.05437587243365482 +97335,486.67499999959364,-0.054375795455274954 +97336,486.67999999959363,-0.0543757184729135 +97337,486.68499999959363,-0.05437564148656989 +97338,486.6899999995936,-0.05437556449624353 +97339,486.6949999995936,-0.054375487501933835 +97340,486.6999999995936,-0.05437541050364021 +97341,486.7049999995936,-0.054375333501362096 +97342,486.7099999995936,-0.054375256495098896 +97343,486.7149999995936,-0.05437517948485004 +97344,486.7199999995936,-0.054375102470614924 +97345,486.7249999995936,-0.05437502545239298 +97346,486.7299999995936,-0.05437494843018361 +97347,486.7349999995936,-0.054374871403986245 +97348,486.7399999995936,-0.0543747943738003 +97349,486.7449999995936,-0.05437471733962518 +97350,486.74999999959357,-0.0543746403014603 +97351,486.75499999959357,-0.05437456325930509 +97352,486.75999999959356,-0.05437448621315895 +97353,486.76499999959356,-0.054374409163021296 +97354,486.76999999959355,-0.05437433210889155 +97355,486.77499999959355,-0.054374255050769135 +97356,486.77999999959354,-0.05437417798865346 +97357,486.78499999959354,-0.05437410092254392 +97358,486.78999999959353,-0.054374023852439946 +97359,486.79499999959353,-0.054373946778340954 +97360,486.7999999995935,-0.054373869700246345 +97361,486.8049999995935,-0.05437379261815555 +97362,486.8099999995935,-0.054373715532067976 +97363,486.8149999995935,-0.054373638441983035 +97364,486.8199999995935,-0.05437356134790014 +97365,486.8249999995935,-0.054373484249818686 +97366,486.8299999995935,-0.05437340714773812 +97367,486.8349999995935,-0.05437333004165784 +97368,486.8399999995935,-0.05437325293157724 +97369,486.8449999995935,-0.05437317581749576 +97370,486.8499999995935,-0.05437309869941281 +97371,486.8549999995935,-0.054373021577327776 +97372,486.85999999959347,-0.0543729444512401 +97373,486.86499999959346,-0.054372867321149175 +97374,486.86999999959346,-0.05437279018705442 +97375,486.87499999959346,-0.054372713048955246 +97376,486.87999999959345,-0.05437263590685106 +97377,486.88499999959345,-0.054372558760741284 +97378,486.88999999959344,-0.054372481610625314 +97379,486.89499999959344,-0.05437240445650258 +97380,486.89999999959343,-0.05437232729837247 +97381,486.90499999959343,-0.05437225013623442 +97382,486.9099999995934,-0.054372172970087805 +97383,486.9149999995934,-0.05437209579993207 +97384,486.9199999995934,-0.0543720186257666 +97385,486.9249999995934,-0.05437194144759081 +97386,486.9299999995934,-0.05437186426540413 +97387,486.9349999995934,-0.054371787079205945 +97388,486.9399999995934,-0.05437170988899568 +97389,486.9449999995934,-0.05437163269477274 +97390,486.9499999995934,-0.05437155549653653 +97391,486.9549999995934,-0.054371478294286464 +97392,486.9599999995934,-0.054371401088021944 +97393,486.9649999995934,-0.054371323877742385 +97394,486.96999999959337,-0.0543712466634472 +97395,486.97499999959336,-0.05437116944513578 +97396,486.97999999959336,-0.05437109222280753 +97397,486.98499999959336,-0.05437101499646188 +97398,486.98999999959335,-0.054370937766098235 +97399,486.99499999959335,-0.05437086053171599 +97400,486.99999999959334,-0.05437078329331456 +97401,487.00499999959334,-0.05437070605089335 +97402,487.00999999959333,-0.05437062880445176 +97403,487.01499999959333,-0.054370551553989205 +97404,487.0199999995933,-0.05437047429950509 +97405,487.0249999995933,-0.05437039704099882 +97406,487.0299999995933,-0.054370319778469824 +97407,487.0349999995933,-0.054370242511917466 +97408,487.0399999995933,-0.05437016524134118 +97409,487.0449999995933,-0.05437008796674037 +97410,487.0499999995933,-0.05437001068811444 +97411,487.0549999995933,-0.05436993340546279 +97412,487.0599999995933,-0.05436985611878482 +97413,487.0649999995933,-0.05436977882807996 +97414,487.0699999995933,-0.05436970153334758 +97415,487.0749999995933,-0.054369624234587105 +97416,487.07999999959327,-0.05436954693179794 +97417,487.08499999959326,-0.05436946962497949 +97418,487.08999999959326,-0.05436939231413116 +97419,487.09499999959326,-0.054369314999252356 +97420,487.09999999959325,-0.054369237680342464 +97421,487.10499999959325,-0.0543691603574009 +97422,487.10999999959324,-0.054369083030427076 +97423,487.11499999959324,-0.05436900569942039 +97424,487.11999999959323,-0.05436892836438024 +97425,487.12499999959323,-0.05436885102530603 +97426,487.1299999995932,-0.054368773682197176 +97427,487.1349999995932,-0.05436869633505306 +97428,487.1399999995932,-0.05436861898387311 +97429,487.1449999995932,-0.0543685416286567 +97430,487.1499999995932,-0.05436846426940325 +97431,487.1549999995932,-0.05436838690611216 +97432,487.1599999995932,-0.05436830953878284 +97433,487.1649999995932,-0.054368232167414675 +97434,487.1699999995932,-0.05436815479200708 +97435,487.1749999995932,-0.054368077412559446 +97436,487.1799999995932,-0.05436800002907117 +97437,487.1849999995932,-0.054367922641541666 +97438,487.18999999959317,-0.05436784524997035 +97439,487.19499999959316,-0.05436776785435659 +97440,487.19999999959316,-0.0543676904546998 +97441,487.20499999959316,-0.05436761305099938 +97442,487.20999999959315,-0.05436753564325474 +97443,487.21499999959315,-0.054367458231465264 +97444,487.21999999959314,-0.05436738081563037 +97445,487.22499999959314,-0.054367303395749446 +97446,487.22999999959313,-0.0543672259718219 +97447,487.23499999959313,-0.05436714854384711 +97448,487.2399999995931,-0.054367071111824504 +97449,487.2449999995931,-0.05436699367575346 +97450,487.2499999995931,-0.054366916235633396 +97451,487.2549999995931,-0.054366838791463694 +97452,487.2599999995931,-0.05436676134324375 +97453,487.2649999995931,-0.05436668389097298 +97454,487.2699999995931,-0.05436660643465078 +97455,487.2749999995931,-0.05436652897427653 +97456,487.2799999995931,-0.05436645150984965 +97457,487.2849999995931,-0.05436637404136953 +97458,487.2899999995931,-0.05436629656883555 +97459,487.2949999995931,-0.054366219092247134 +97460,487.29999999959307,-0.05436614161160367 +97461,487.30499999959306,-0.05436606412690455 +97462,487.30999999959306,-0.054365986638149184 +97463,487.31499999959306,-0.054365909145336955 +97464,487.31999999959305,-0.05436583164846726 +97465,487.32499999959305,-0.054365754147539504 +97466,487.32999999959304,-0.05436567664255308 +97467,487.33499999959304,-0.054365599133507386 +97468,487.33999999959303,-0.05436552162040182 +97469,487.344999999593,-0.05436544410323577 +97470,487.349999999593,-0.054365366582008634 +97471,487.354999999593,-0.05436528905671982 +97472,487.359999999593,-0.0543652115273687 +97473,487.364999999593,-0.054365133993954685 +97474,487.369999999593,-0.054365056456477164 +97475,487.374999999593,-0.05436497891493554 +97476,487.379999999593,-0.05436490136932919 +97477,487.384999999593,-0.05436482381965753 +97478,487.389999999593,-0.05436474626591995 +97479,487.394999999593,-0.05436466870811583 +97480,487.399999999593,-0.054364591146244576 +97481,487.404999999593,-0.054364513580305585 +97482,487.40999999959297,-0.05436443601029825 +97483,487.41499999959296,-0.05436435843622195 +97484,487.41999999959296,-0.05436428085807608 +97485,487.42499999959296,-0.054364203275860064 +97486,487.42999999959295,-0.05436412568957326 +97487,487.43499999959295,-0.05436404809921507 +97488,487.43999999959294,-0.054363970504784906 +97489,487.44499999959294,-0.05436389290628213 +97490,487.44999999959293,-0.05436381530370616 +97491,487.4549999995929,-0.054363737697056366 +97492,487.4599999995929,-0.054363660086332165 +97493,487.4649999995929,-0.054363582471532924 +97494,487.4699999995929,-0.05436350485265804 +97495,487.4749999995929,-0.05436342722970692 +97496,487.4799999995929,-0.05436334960267894 +97497,487.4849999995929,-0.0543632719715735 +97498,487.4899999995929,-0.05436319433638998 +97499,487.4949999995929,-0.05436311669712778 +97500,487.4999999995929,-0.0543630390537863 +97501,487.5049999995929,-0.0543629614063649 +97502,487.5099999995929,-0.054362883754863006 +97503,487.5149999995929,-0.054362806099279994 +97504,487.51999999959287,-0.05436272843961524 +97505,487.52499999959286,-0.054362650775868146 +97506,487.52999999959286,-0.054362573108038104 +97507,487.53499999959286,-0.05436249543612451 +97508,487.53999999959285,-0.054362417760126736 +97509,487.54499999959285,-0.05436234008004418 +97510,487.54999999959284,-0.05436226239587623 +97511,487.55499999959284,-0.054362184707622274 +97512,487.55999999959283,-0.054362107015281706 +97513,487.5649999995928,-0.054362029318853915 +97514,487.5699999995928,-0.05436195161833828 +97515,487.5749999995928,-0.054361873913734204 +97516,487.5799999995928,-0.054361796205041044 +97517,487.5849999995928,-0.054361718492258224 +97518,487.5899999995928,-0.0543616407753851 +97519,487.5949999995928,-0.05436156305442109 +97520,487.5999999995928,-0.05436148532936555 +97521,487.6049999995928,-0.054361407600217904 +97522,487.6099999995928,-0.05436132986697752 +97523,487.6149999995928,-0.05436125212964376 +97524,487.6199999995928,-0.05436117438821604 +97525,487.6249999995928,-0.05436109664269375 +97526,487.62999999959277,-0.05436101889307626 +97527,487.63499999959276,-0.05436094113936297 +97528,487.63999999959276,-0.05436086338155324 +97529,487.64499999959276,-0.054360785619646496 +97530,487.64999999959275,-0.05436070785364208 +97531,487.65499999959275,-0.05436063008353942 +97532,487.65999999959274,-0.054360552309337874 +97533,487.66499999959274,-0.05436047453103683 +97534,487.66999999959273,-0.05436039674863568 +97535,487.6749999995927,-0.0543603189621338 +97536,487.6799999995927,-0.05436024117153059 +97537,487.6849999995927,-0.054360163376825414 +97538,487.6899999995927,-0.054360085578017664 +97539,487.6949999995927,-0.054360007775106724 +97540,487.6999999995927,-0.05435992996809199 +97541,487.7049999995927,-0.05435985215697284 +97542,487.7099999995927,-0.054359774341748636 +97543,487.7149999995927,-0.05435969652241879 +97544,487.7199999995927,-0.054359618698982676 +97545,487.7249999995927,-0.05435954087143966 +97546,487.7299999995927,-0.05435946303978915 +97547,487.7349999995927,-0.05435938520403052 +97548,487.73999999959267,-0.05435930736416315 +97549,487.74499999959266,-0.05435922952018642 +97550,487.74999999959266,-0.05435915167209972 +97551,487.75499999959266,-0.054359073819902404 +97552,487.75999999959265,-0.0543589959635939 +97553,487.76499999959265,-0.05435891810317355 +97554,487.76999999959264,-0.054358840238640765 +97555,487.77499999959264,-0.05435876236999491 +97556,487.77999999959263,-0.05435868449723536 +97557,487.7849999995926,-0.054358606620361516 +97558,487.7899999995926,-0.05435852873937275 +97559,487.7949999995926,-0.05435845085426843 +97560,487.7999999995926,-0.054358372965047946 +97561,487.8049999995926,-0.05435829507171069 +97562,487.8099999995926,-0.05435821717425601 +97563,487.8149999995926,-0.05435813927268332 +97564,487.8199999995926,-0.05435806136699198 +97565,487.8249999995926,-0.054357983457181375 +97566,487.8299999995926,-0.054357905543250894 +97567,487.8349999995926,-0.0543578276251999 +97568,487.8399999995926,-0.05435774970302778 +97569,487.8449999995926,-0.05435767177673391 +97570,487.84999999959257,-0.05435759384631767 +97571,487.85499999959256,-0.05435751591177845 +97572,487.85999999959256,-0.05435743797311561 +97573,487.86499999959256,-0.05435736003032854 +97574,487.86999999959255,-0.05435728208341661 +97575,487.87499999959255,-0.0543572041323792 +97576,487.87999999959254,-0.05435712617721569 +97577,487.88499999959254,-0.05435704821792547 +97578,487.88999999959253,-0.054356970254507884 +97579,487.8949999995925,-0.05435689228696233 +97580,487.8999999995925,-0.054356814315288195 +97581,487.9049999995925,-0.05435673633948484 +97582,487.9099999995925,-0.05435665835955165 +97583,487.9149999995925,-0.054356580375487996 +97584,487.9199999995925,-0.05435650238729325 +97585,487.9249999995925,-0.054356424394966796 +97586,487.9299999995925,-0.05435634639850801 +97587,487.9349999995925,-0.05435626839791627 +97588,487.9399999995925,-0.054356190393190944 +97589,487.9449999995925,-0.05435611238433141 +97590,487.9499999995925,-0.05435603437133705 +97591,487.9549999995925,-0.05435595635420722 +97592,487.95999999959247,-0.05435587833294132 +97593,487.96499999959246,-0.0543558003075387 +97594,487.96999999959246,-0.05435572227799875 +97595,487.97499999959246,-0.05435564424432084 +97596,487.97999999959245,-0.05435556620650435 +97597,487.98499999959245,-0.054355488164548646 +97598,487.98999999959244,-0.05435541011845311 +97599,487.99499999959244,-0.0543553320682171 +97600,487.99999999959243,-0.05435525401384 +97601,488.0049999995924,-0.05435517595532119 +97602,488.0099999995924,-0.05435509789266003 +97603,488.0149999995924,-0.054355019825855895 +97604,488.0199999995924,-0.05435494175490817 +97605,488.0249999995924,-0.05435486367981622 +97606,488.0299999995924,-0.05435478560057941 +97607,488.0349999995924,-0.054354707517197114 +97608,488.0399999995924,-0.05435462942966872 +97609,488.0449999995924,-0.054354551337993585 +97610,488.0499999995924,-0.05435447324217108 +97611,488.0549999995924,-0.05435439514220059 +97612,488.0599999995924,-0.054354317038081475 +97613,488.0649999995924,-0.05435423892981311 +97614,488.06999999959237,-0.05435416081739486 +97615,488.07499999959236,-0.0543540827008261 +97616,488.07999999959236,-0.0543540045801062 +97617,488.08499999959236,-0.05435392645523453 +97618,488.08999999959235,-0.05435384832621047 +97619,488.09499999959235,-0.05435377019303337 +97620,488.09999999959234,-0.054353692055702625 +97621,488.10499999959234,-0.05435361391421758 +97622,488.10999999959233,-0.05435353576857761 +97623,488.1149999995923,-0.0543534576187821 +97624,488.1199999995923,-0.05435337946483041 +97625,488.1249999995923,-0.054353301306721905 +97626,488.1299999995923,-0.05435322314445595 +97627,488.1349999995923,-0.05435314497803194 +97628,488.1399999995923,-0.05435306680744921 +97629,488.1449999995923,-0.054352988632707155 +97630,488.1499999995923,-0.05435291045380512 +97631,488.1549999995923,-0.054352832270742495 +97632,488.1599999995923,-0.05435275408351863 +97633,488.1649999995923,-0.054352675892132905 +97634,488.1699999995923,-0.05435259769658468 +97635,488.1749999995923,-0.05435251949687333 +97636,488.17999999959227,-0.05435244129299821 +97637,488.18499999959226,-0.05435236308495869 +97638,488.18999999959226,-0.05435228487275413 +97639,488.19499999959226,-0.05435220665638391 +97640,488.19999999959225,-0.054352128435847406 +97641,488.20499999959225,-0.05435205021114396 +97642,488.20999999959224,-0.054351971982272956 +97643,488.21499999959224,-0.05435189374923376 +97644,488.21999999959223,-0.05435181551202571 +97645,488.2249999995922,-0.0543517372706482 +97646,488.2299999995922,-0.05435165902510059 +97647,488.2349999995922,-0.05435158077538225 +97648,488.2399999995922,-0.05435150252149252 +97649,488.2449999995922,-0.0543514242634308 +97650,488.2499999995922,-0.054351346001196434 +97651,488.2549999995922,-0.054351267734788794 +97652,488.2599999995922,-0.05435118946420722 +97653,488.2649999995922,-0.054351111189451115 +97654,488.2699999995922,-0.05435103291051982 +97655,488.2749999995922,-0.054350954627412705 +97656,488.2799999995922,-0.05435087634012912 +97657,488.2849999995922,-0.054350798048668436 +97658,488.28999999959217,-0.05435071975303003 +97659,488.29499999959216,-0.05435064145321326 +97660,488.29999999959216,-0.054350563149217476 +97661,488.30499999959216,-0.054350484841042046 +97662,488.30999999959215,-0.054350406528686335 +97663,488.31499999959215,-0.054350328212149704 +97664,488.31999999959214,-0.054350249891431515 +97665,488.32499999959214,-0.05435017156653113 +97666,488.32999999959213,-0.054350093237447925 +97667,488.3349999995921,-0.05435001490418124 +97668,488.3399999995921,-0.054349936566730435 +97669,488.3449999995921,-0.054349858225094895 +97670,488.3499999995921,-0.05434977987927395 +97671,488.3549999995921,-0.054349701529267 +97672,488.3599999995921,-0.054349623175073365 +97673,488.3649999995921,-0.05434954481669243 +97674,488.3699999995921,-0.05434946645412354 +97675,488.3749999995921,-0.05434938808736608 +97676,488.3799999995921,-0.05434930971641939 +97677,488.3849999995921,-0.05434923134128283 +97678,488.3899999995921,-0.05434915296195577 +97679,488.3949999995921,-0.05434907457843755 +97680,488.39999999959207,-0.05434899619072755 +97681,488.40499999959206,-0.054348917798825114 +97682,488.40999999959206,-0.05434883940272961 +97683,488.41499999959206,-0.0543487610024404 +97684,488.41999999959205,-0.05434868259795684 +97685,488.42499999959205,-0.05434860418927829 +97686,488.42999999959204,-0.0543485257764041 +97687,488.43499999959204,-0.05434844735933363 +97688,488.43999999959203,-0.054348368938066244 +97689,488.444999999592,-0.054348290512601295 +97690,488.449999999592,-0.054348212082938135 +97691,488.454999999592,-0.05434813364907613 +97692,488.459999999592,-0.05434805521101464 +97693,488.464999999592,-0.05434797676875301 +97694,488.469999999592,-0.0543478983222906 +97695,488.474999999592,-0.05434781987162678 +97696,488.479999999592,-0.054347741416760895 +97697,488.484999999592,-0.05434766295769229 +97698,488.489999999592,-0.05434758449442035 +97699,488.494999999592,-0.0543475060269444 +97700,488.499999999592,-0.054347427555263825 +97701,488.504999999592,-0.05434734907937795 +97702,488.50999999959197,-0.05434727059928615 +97703,488.51499999959196,-0.05434719211498778 +97704,488.51999999959196,-0.05434711362648219 +97705,488.52499999959196,-0.05434703513376873 +97706,488.52999999959195,-0.05434695663684676 +97707,488.53499999959195,-0.05434687813571563 +97708,488.53999999959194,-0.054346799630374705 +97709,488.54499999959194,-0.05434672112082333 +97710,488.54999999959193,-0.05434664260706086 +97711,488.5549999995919,-0.05434656408908664 +97712,488.5599999995919,-0.05434648556690004 +97713,488.5649999995919,-0.05434640704050041 +97714,488.5699999995919,-0.054346328509887104 +97715,488.5749999995919,-0.05434624997505946 +97716,488.5799999995919,-0.054346171436016846 +97717,488.5849999995919,-0.05434609289275861 +97718,488.5899999995919,-0.054346014345284105 +97719,488.5949999995919,-0.05434593579359269 +97720,488.5999999995919,-0.0543458572376837 +97721,488.6049999995919,-0.054345778677556494 +97722,488.6099999995919,-0.05434570011321043 +97723,488.6149999995919,-0.05434562154464486 +97724,488.61999999959187,-0.05434554297185912 +97725,488.62499999959186,-0.054345464394852584 +97726,488.62999999959186,-0.05434538581362459 +97727,488.63499999959186,-0.054345307228174475 +97728,488.63999999959185,-0.05434522863850161 +97729,488.64499999959185,-0.05434515004460535 +97730,488.64999999959184,-0.054345071446485024 +97731,488.65499999959184,-0.054344992844139996 +97732,488.65999999959183,-0.05434491423756961 +97733,488.6649999995918,-0.05434483562677322 +97734,488.6699999995918,-0.05434475701175018 +97735,488.6749999995918,-0.05434467839249983 +97736,488.6799999995918,-0.054344599769021514 +97737,488.6849999995918,-0.054344521141314606 +97738,488.6899999995918,-0.05434444250937843 +97739,488.6949999995918,-0.05434436387321233 +97740,488.6999999995918,-0.05434428523281568 +97741,488.7049999995918,-0.0543442065881878 +97742,488.7099999995918,-0.05434412793932806 +97743,488.7149999995918,-0.054344049286235804 +97744,488.7199999995918,-0.054343970628910374 +97745,488.7249999995918,-0.054343891967351114 +97746,488.72999999959177,-0.054343813301557374 +97747,488.73499999959176,-0.05434373463152852 +97748,488.73999999959176,-0.05434365595726388 +97749,488.74499999959176,-0.054343577278762795 +97750,488.74999999959175,-0.05434349859602463 +97751,488.75499999959175,-0.05434341990904872 +97752,488.75999999959174,-0.05434334121783441 +97753,488.76499999959174,-0.05434326252238104 +97754,488.76999999959173,-0.05434318382268798 +97755,488.7749999995917,-0.05434310511875455 +97756,488.7799999995917,-0.05434302641058011 +97757,488.7849999995917,-0.054342947698163994 +97758,488.7899999995917,-0.05434286898150556 +97759,488.7949999995917,-0.05434279026060415 +97760,488.7999999995917,-0.0543427115354591 +97761,488.8049999995917,-0.05434263280606976 +97762,488.8099999995917,-0.054342554072435476 +97763,488.8149999995917,-0.054342475334555586 +97764,488.8199999995917,-0.05434239659242944 +97765,488.8249999995917,-0.05434231784605638 +97766,488.8299999995917,-0.05434223909543574 +97767,488.8349999995917,-0.054342160340566895 +97768,488.83999999959167,-0.05434208158144915 +97769,488.84499999959166,-0.054342002818081866 +97770,488.84999999959166,-0.05434192405046439 +97771,488.85499999959166,-0.054341845278596056 +97772,488.85999999959165,-0.054341766502476206 +97773,488.86499999959165,-0.05434168772210418 +97774,488.86999999959164,-0.05434160893747934 +97775,488.87499999959164,-0.05434153014860101 +97776,488.87999999959163,-0.054341451355468536 +97777,488.8849999995916,-0.05434137255808126 +97778,488.8899999995916,-0.05434129375643852 +97779,488.8949999995916,-0.05434121495053965 +97780,488.8999999995916,-0.05434113614038401 +97781,488.9049999995916,-0.054341057325970936 +97782,488.9099999995916,-0.05434097850729977 +97783,488.9149999995916,-0.05434089968436983 +97784,488.9199999995916,-0.05434082085718048 +97785,488.9249999995916,-0.05434074202573105 +97786,488.9299999995916,-0.05434066319002088 +97787,488.9349999995916,-0.05434058435004931 +97788,488.9399999995916,-0.054340505505815685 +97789,488.9449999995916,-0.05434042665731934 +97790,488.94999999959157,-0.05434034780455962 +97791,488.95499999959156,-0.054340268947535846 +97792,488.95999999959156,-0.05434019008624739 +97793,488.96499999959156,-0.05434011122069356 +97794,488.96999999959155,-0.0543400323508737 +97795,488.97499999959155,-0.05433995347678716 +97796,488.97999999959154,-0.05433987459843327 +97797,488.98499999959154,-0.054339795715811365 +97798,488.98999999959153,-0.05433971682892079 +97799,488.9949999995915,-0.054339637937760886 +97800,488.9999999995915,-0.054339559042330975 +97801,489.0049999995915,-0.05433948014263041 +97802,489.0099999995915,-0.05433940123865851 +97803,489.0149999995915,-0.054339322330414636 +97804,489.0199999995915,-0.05433924341789811 +97805,489.0249999995915,-0.05433916450110826 +97806,489.0299999995915,-0.054339085580044424 +97807,489.0349999995915,-0.05433900665470596 +97808,489.0399999995915,-0.054338927725092176 +97809,489.0449999995915,-0.054338848791202425 +97810,489.0499999995915,-0.05433876985303604 +97811,489.0549999995915,-0.05433869091059235 +97812,489.05999999959147,-0.054338611963870694 +97813,489.06499999959146,-0.0543385330128704 +97814,489.06999999959146,-0.05433845405759082 +97815,489.07499999959145,-0.05433837509803128 +97816,489.07999999959145,-0.05433829613419111 +97817,489.08499999959145,-0.05433821716606964 +97818,489.08999999959144,-0.05433813819366621 +97819,489.09499999959144,-0.05433805921698016 +97820,489.09999999959143,-0.05433798023601082 +97821,489.1049999995914,-0.05433790125075753 +97822,489.1099999995914,-0.0543378222612196 +97823,489.1149999995914,-0.05433774326739638 +97824,489.1199999995914,-0.054337664269287204 +97825,489.1249999995914,-0.0543375852668914 +97826,489.1299999995914,-0.054337506260208286 +97827,489.1349999995914,-0.05433742724923722 +97828,489.1399999995914,-0.054337348233977525 +97829,489.1449999995914,-0.05433726921442853 +97830,489.1499999995914,-0.054337190190589565 +97831,489.1549999995914,-0.05433711116245996 +97832,489.1599999995914,-0.05433703213003905 +97833,489.1649999995914,-0.054336953093326174 +97834,489.16999999959137,-0.054336874052320655 +97835,489.17499999959136,-0.05433679500702182 +97836,489.17999999959136,-0.054336715957429005 +97837,489.18499999959135,-0.054336636903541534 +97838,489.18999999959135,-0.05433655784535874 +97839,489.19499999959135,-0.05433647878287996 +97840,489.19999999959134,-0.05433639971610452 +97841,489.20499999959134,-0.05433632064503175 +97842,489.20999999959133,-0.05433624156966097 +97843,489.2149999995913,-0.05433616248999153 +97844,489.2199999995913,-0.05433608340602272 +97845,489.2249999995913,-0.05433600431775392 +97846,489.2299999995913,-0.05433592522518443 +97847,489.2349999995913,-0.05433584612831356 +97848,489.2399999995913,-0.05433576702714068 +97849,489.2449999995913,-0.054335687921665085 +97850,489.2499999995913,-0.05433560881188612 +97851,489.2549999995913,-0.054335529697803114 +97852,489.2599999995913,-0.05433545057941538 +97853,489.2649999995913,-0.05433537145672226 +97854,489.2699999995913,-0.054335292329723076 +97855,489.2749999995913,-0.05433521319841715 +97856,489.27999999959127,-0.05433513406280382 +97857,489.28499999959126,-0.054335054922882396 +97858,489.28999999959126,-0.054334975778652206 +97859,489.29499999959125,-0.054334896630112595 +97860,489.29999999959125,-0.054334817477262876 +97861,489.30499999959125,-0.054334738320102376 +97862,489.30999999959124,-0.05433465915863043 +97863,489.31499999959124,-0.05433457999284635 +97864,489.31999999959123,-0.05433450082274946 +97865,489.3249999995912,-0.054334421648339105 +97866,489.3299999995912,-0.054334342469614584 +97867,489.3349999995912,-0.054334263286575236 +97868,489.3399999995912,-0.05433418409922038 +97869,489.3449999995912,-0.05433410490754935 +97870,489.3499999995912,-0.05433402571156145 +97871,489.3549999995912,-0.05433394651125603 +97872,489.3599999995912,-0.0543338673066324 +97873,489.3649999995912,-0.05433378809768988 +97874,489.3699999995912,-0.054333708884427796 +97875,489.3749999995912,-0.05433362966684547 +97876,489.3799999995912,-0.05433355044494222 +97877,489.3849999995912,-0.05433347121871738 +97878,489.38999999959117,-0.054333391988170276 +97879,489.39499999959116,-0.05433331275330022 +97880,489.39999999959116,-0.05433323351410654 +97881,489.40499999959115,-0.05433315427058855 +97882,489.40999999959115,-0.05433307502274558 +97883,489.41499999959115,-0.054332995770576945 +97884,489.41999999959114,-0.05433291651408197 +97885,489.42499999959114,-0.054332837253259984 +97886,489.42999999959113,-0.05433275798811029 +97887,489.4349999995911,-0.054332678718632225 +97888,489.4399999995911,-0.054332599444825096 +97889,489.4449999995911,-0.05433252016668823 +97890,489.4499999995911,-0.05433244088422094 +97891,489.4549999995911,-0.054332361597422565 +97892,489.4599999995911,-0.05433228230629241 +97893,489.4649999995911,-0.054332203010829805 +97894,489.4699999995911,-0.05433212371103406 +97895,489.4749999995911,-0.054332044406904485 +97896,489.4799999995911,-0.05433196509844042 +97897,489.4849999995911,-0.05433188578564118 +97898,489.4899999995911,-0.05433180646850608 +97899,489.4949999995911,-0.05433172714703443 +97900,489.49999999959107,-0.05433164782122556 +97901,489.50499999959106,-0.054331568491078785 +97902,489.50999999959106,-0.05433148915659342 +97903,489.51499999959105,-0.054331409817768773 +97904,489.51999999959105,-0.05433133047460417 +97905,489.52499999959105,-0.05433125112709894 +97906,489.52999999959104,-0.05433117177525239 +97907,489.53499999959104,-0.05433109241906384 +97908,489.53999999959103,-0.05433101305853261 +97909,489.544999999591,-0.054330933693658 +97910,489.549999999591,-0.05433085432443934 +97911,489.554999999591,-0.05433077495087595 +97912,489.559999999591,-0.05433069557296713 +97913,489.564999999591,-0.05433061619071221 +97914,489.569999999591,-0.05433053680411049 +97915,489.574999999591,-0.054330457413161316 +97916,489.579999999591,-0.05433037801786398 +97917,489.584999999591,-0.054330298618217795 +97918,489.589999999591,-0.054330219214222084 +97919,489.594999999591,-0.05433013980587616 +97920,489.599999999591,-0.054330060393179336 +97921,489.604999999591,-0.054329980976130926 +97922,489.60999999959097,-0.05432990155473024 +97923,489.61499999959096,-0.0543298221289766 +97924,489.61999999959096,-0.054329742698869324 +97925,489.62499999959095,-0.05432966326440771 +97926,489.62999999959095,-0.05432958382559109 +97927,489.63499999959095,-0.05432950438241875 +97928,489.63999999959094,-0.05432942493489003 +97929,489.64499999959094,-0.05432934548300422 +97930,489.64999999959093,-0.05432926602676065 +97931,489.6549999995909,-0.05432918656615863 +97932,489.6599999995909,-0.05432910710119747 +97933,489.6649999995909,-0.05432902763187647 +97934,489.6699999995909,-0.054328948158194966 +97935,489.6749999995909,-0.05432886868015224 +97936,489.6799999995909,-0.054328789197747626 +97937,489.6849999995909,-0.05432870971098044 +97938,489.6899999995909,-0.054328630219849953 +97939,489.6949999995909,-0.05432855072435552 +97940,489.6999999995909,-0.05432847122449644 +97941,489.7049999995909,-0.05432839172027201 +97942,489.7099999995909,-0.05432831221168155 +97943,489.7149999995909,-0.05432823269872437 +97944,489.71999999959087,-0.054328153181399774 +97945,489.72499999959086,-0.05432807365970707 +97946,489.72999999959086,-0.05432799413364559 +97947,489.73499999959085,-0.05432791460321462 +97948,489.73999999959085,-0.05432783506841348 +97949,489.74499999959085,-0.054327755529241475 +97950,489.74999999959084,-0.05432767598569791 +97951,489.75499999959084,-0.054327596437782094 +97952,489.75999999959083,-0.054327516885493324 +97953,489.7649999995908,-0.05432743732883093 +97954,489.7699999995908,-0.05432735776779421 +97955,489.7749999995908,-0.05432727820238247 +97956,489.7799999995908,-0.05432719863259503 +97957,489.7849999995908,-0.054327119058431184 +97958,489.7899999995908,-0.05432703947989023 +97959,489.7949999995908,-0.054326959896971505 +97960,489.7999999995908,-0.05432688030967428 +97961,489.8049999995908,-0.054326800717997885 +97962,489.8099999995908,-0.05432672112194162 +97963,489.8149999995908,-0.0543266415215048 +97964,489.8199999995908,-0.054326561916686715 +97965,489.8249999995908,-0.05432648230748667 +97966,489.82999999959077,-0.054326402693903986 +97967,489.83499999959076,-0.05432632307593797 +97968,489.83999999959076,-0.05432624345358791 +97969,489.84499999959075,-0.054326163826853104 +97970,489.84999999959075,-0.05432608419573289 +97971,489.85499999959075,-0.054326004560226536 +97972,489.85999999959074,-0.05432592492033338 +97973,489.86499999959074,-0.054325845276052706 +97974,489.86999999959073,-0.05432576562738382 +97975,489.8749999995907,-0.05432568597432602 +97976,489.8799999995907,-0.05432560631687862 +97977,489.8849999995907,-0.054325526655040916 +97978,489.8899999995907,-0.05432544698881222 +97979,489.8949999995907,-0.054325367318191826 +97980,489.8999999995907,-0.05432528764317904 +97981,489.9049999995907,-0.054325207963773166 +97982,489.9099999995907,-0.054325128279973496 +97983,489.9149999995907,-0.05432504859177935 +97984,489.9199999995907,-0.05432496889919003 +97985,489.9249999995907,-0.05432488920220482 +97986,489.9299999995907,-0.054324809500823024 +97987,489.9349999995907,-0.05432472979504395 +97988,489.93999999959067,-0.05432465008486691 +97989,489.94499999959066,-0.05432457037029117 +97990,489.94999999959066,-0.05432449065131607 +97991,489.95499999959065,-0.05432441092794089 +97992,489.95999999959065,-0.05432433120016494 +97993,489.96499999959065,-0.05432425146798751 +97994,489.96999999959064,-0.054324171731407904 +97995,489.97499999959064,-0.05432409199042541 +97996,489.97999999959063,-0.054324012245039355 +97997,489.9849999995906,-0.05432393249524903 +97998,489.9899999995906,-0.05432385274105372 +97999,489.9949999995906,-0.05432377298245272 +98000,489.9999999995906,-0.05432369321944535 +98001,490.0049999995906,-0.054323613452030885 +98002,490.0099999995906,-0.05432353368020864 +98003,490.0149999995906,-0.05432345390397792 +98004,490.0199999995906,-0.054323374123338014 +98005,490.0249999995906,-0.05432329433828821 +98006,490.0299999995906,-0.054323214548827804 +98007,490.0349999995906,-0.054323134754956114 +98008,490.0399999995906,-0.054323054956672424 +98009,490.0449999995906,-0.054322975153976036 +98010,490.04999999959057,-0.05432289534686623 +98011,490.05499999959056,-0.05432281553534233 +98012,490.05999999959056,-0.05432273571940361 +98013,490.06499999959055,-0.05432265589904938 +98014,490.06999999959055,-0.05432257607427893 +98015,490.07499999959055,-0.054322496245091556 +98016,490.07999999959054,-0.054322416411486545 +98017,490.08499999959054,-0.054322336573463206 +98018,490.08999999959053,-0.05432225673102083 +98019,490.0949999995905,-0.05432217688415871 +98020,490.0999999995905,-0.05432209703287613 +98021,490.1049999995905,-0.0543220171771724 +98022,490.1099999995905,-0.05432193731704682 +98023,490.1149999995905,-0.054321857452498665 +98024,490.1199999995905,-0.054321777583527235 +98025,490.1249999995905,-0.05432169771013183 +98026,490.1299999995905,-0.05432161783231174 +98027,490.1349999995905,-0.05432153795006626 +98028,490.1399999995905,-0.05432145806339469 +98029,490.1449999995905,-0.054321378172296306 +98030,490.1499999995905,-0.05432129827677041 +98031,490.1549999995905,-0.05432121837681629 +98032,490.15999999959047,-0.05432113847243325 +98033,490.16499999959046,-0.05432105856362057 +98034,490.16999999959046,-0.05432097865037754 +98035,490.17499999959045,-0.05432089873270345 +98036,490.17999999959045,-0.05432081881059762 +98037,490.18499999959045,-0.0543207388840593 +98038,490.18999999959044,-0.054320658953087804 +98039,490.19499999959044,-0.05432057901768242 +98040,490.19999999959043,-0.05432049907784244 +98041,490.2049999995904,-0.05432041913356716 +98042,490.2099999995904,-0.054320339184855855 +98043,490.2149999995904,-0.05432025923170782 +98044,490.2199999995904,-0.05432017927412235 +98045,490.2249999995904,-0.05432009931209873 +98046,490.2299999995904,-0.05432001934563627 +98047,490.2349999995904,-0.054319939374734234 +98048,490.2399999995904,-0.05431985939939192 +98049,490.2449999995904,-0.05431977941960861 +98050,490.2499999995904,-0.054319699435383596 +98051,490.2549999995904,-0.05431961944671618 +98052,490.2599999995904,-0.05431953945360562 +98053,490.2649999995904,-0.05431945945605122 +98054,490.26999999959037,-0.05431937945405228 +98055,490.27499999959036,-0.05431929944760808 +98056,490.27999999959036,-0.0543192194367179 +98057,490.28499999959035,-0.05431913942138104 +98058,490.28999999959035,-0.05431905940159677 +98059,490.29499999959035,-0.0543189793773644 +98060,490.29999999959034,-0.05431889934868319 +98061,490.30499999959034,-0.05431881931555245 +98062,490.30999999959033,-0.05431873927797145 +98063,490.3149999995903,-0.05431865923593948 +98064,490.3199999995903,-0.05431857918945582 +98065,490.3249999995903,-0.05431849913851977 +98066,490.3299999995903,-0.054318419083130606 +98067,490.3349999995903,-0.05431833902328762 +98068,490.3399999995903,-0.05431825895899009 +98069,490.3449999995903,-0.054318178890237295 +98070,490.3499999995903,-0.05431809881702853 +98071,490.3549999995903,-0.05431801873936309 +98072,490.3599999995903,-0.05431793865724024 +98073,490.3649999995903,-0.05431785857065925 +98074,490.3699999995903,-0.05431777847961945 +98075,490.3749999995903,-0.054317698384120094 +98076,490.37999999959027,-0.054317618284160464 +98077,490.38499999959026,-0.05431753817973984 +98078,490.38999999959026,-0.05431745807085753 +98079,490.39499999959025,-0.05431737795751279 +98080,490.39999999959025,-0.05431729783970491 +98081,490.40499999959025,-0.05431721771743317 +98082,490.40999999959024,-0.05431713759069686 +98083,490.41499999959024,-0.05431705745949526 +98084,490.41999999959023,-0.05431697732382765 +98085,490.4249999995902,-0.0543168971836933 +98086,490.4299999995902,-0.05431681703909152 +98087,490.4349999995902,-0.05431673689002156 +98088,490.4399999995902,-0.05431665673648273 +98089,490.4449999995902,-0.05431657657847429 +98090,490.4499999995902,-0.054316496415995515 +98091,490.4549999995902,-0.0543164162490457 +98092,490.4599999995902,-0.05431633607762413 +98093,490.4649999995902,-0.05431625590173007 +98094,490.4699999995902,-0.05431617572136281 +98095,490.4749999995902,-0.05431609553652163 +98096,490.4799999995902,-0.054316015347205794 +98097,490.4849999995902,-0.05431593515341459 +98098,490.48999999959017,-0.054315854955147305 +98099,490.49499999959016,-0.0543157747524032 +98100,490.49999999959016,-0.05431569454518157 +98101,490.50499999959015,-0.05431561433348169 +98102,490.50999999959015,-0.05431553411730283 +98103,490.51499999959015,-0.054315453896644286 +98104,490.51999999959014,-0.05431537367150532 +98105,490.52499999959014,-0.0543152934418852 +98106,490.52999999959013,-0.05431521320778323 +98107,490.5349999995901,-0.054315132969198675 +98108,490.5399999995901,-0.054315052726130804 +98109,490.5449999995901,-0.054314972478578895 +98110,490.5499999995901,-0.054314892226542226 +98111,490.5549999995901,-0.054314811970020076 +98112,490.5599999995901,-0.05431473170901171 +98113,490.5649999995901,-0.054314651443516423 +98114,490.5699999995901,-0.05431457117353348 +98115,490.5749999995901,-0.054314490899062165 +98116,490.5799999995901,-0.05431441062010174 +98117,490.5849999995901,-0.05431433033665148 +98118,490.5899999995901,-0.054314250048710676 +98119,490.5949999995901,-0.05431416975627859 +98120,490.59999999959007,-0.054314089459354495 +98121,490.60499999959006,-0.05431400915793766 +98122,490.60999999959006,-0.05431392885202738 +98123,490.61499999959005,-0.054313848541622904 +98124,490.61999999959005,-0.05431376822672353 +98125,490.62499999959005,-0.0543136879073285 +98126,490.62999999959004,-0.05431360758343712 +98127,490.63499999959004,-0.05431352725504864 +98128,490.63999999959003,-0.05431344692216234 +98129,490.64499999959,-0.0543133665847775 +98130,490.64999999959,-0.05431328624289338 +98131,490.65499999959,-0.05431320589650926 +98132,490.65999999959,-0.054313125545624404 +98133,490.66499999959,-0.054313045190238086 +98134,490.66999999959,-0.054312964830349586 +98135,490.67499999959,-0.05431288446595818 +98136,490.67999999959,-0.05431280409706312 +98137,490.68499999959,-0.05431272372366368 +98138,490.68999999959,-0.054312643345759144 +98139,490.69499999959,-0.05431256296334877 +98140,490.69999999959,-0.054312482576431835 +98141,490.70499999959,-0.0543124021850076 +98142,490.70999999958997,-0.054312321789075343 +98143,490.71499999958996,-0.05431224138863432 +98144,490.71999999958996,-0.05431216098368383 +98145,490.72499999958995,-0.054312080574223105 +98146,490.72999999958995,-0.05431200016025144 +98147,490.73499999958995,-0.05431191974176809 +98148,490.73999999958994,-0.05431183931877234 +98149,490.74499999958994,-0.05431175889126344 +98150,490.74999999958993,-0.05431167845924067 +98151,490.7549999995899,-0.05431159802270329 +98152,490.7599999995899,-0.05431151758165058 +98153,490.7649999995899,-0.05431143713608178 +98154,490.7699999995899,-0.05431135668599619 +98155,490.7749999995899,-0.054311276231393056 +98156,490.7799999995899,-0.05431119577227165 +98157,490.7849999995899,-0.054311115308631246 +98158,490.7899999995899,-0.0543110348404711 +98159,490.7949999995899,-0.05431095436779047 +98160,490.7999999995899,-0.054310873890588654 +98161,490.8049999995899,-0.05431079340886488 +98162,490.8099999995899,-0.05431071292261845 +98163,490.8149999995899,-0.0543106324318486 +98164,490.81999999958987,-0.0543105519365546 +98165,490.82499999958986,-0.05431047143673572 +98166,490.82999999958986,-0.05431039093239125 +98167,490.83499999958985,-0.05431031042352041 +98168,490.83999999958985,-0.054310229910122486 +98169,490.84499999958985,-0.054310149392196735 +98170,490.84999999958984,-0.05431006886974243 +98171,490.85499999958984,-0.05430998834275883 +98172,490.85999999958983,-0.0543099078112452 +98173,490.8649999995898,-0.054309827275200805 +98174,490.8699999995898,-0.054309746734624895 +98175,490.8749999995898,-0.05430966618951675 +98176,490.8799999995898,-0.054309585639875625 +98177,490.8849999995898,-0.05430950508570078 +98178,490.8899999995898,-0.05430942452699148 +98179,490.8949999995898,-0.05430934396374698 +98180,490.8999999995898,-0.054309263395966555 +98181,490.9049999995898,-0.05430918282364945 +98182,490.9099999995898,-0.05430910224679495 +98183,490.9149999995898,-0.0543090216654023 +98184,490.9199999995898,-0.054308941079470756 +98185,490.9249999995898,-0.054308860488999584 +98186,490.92999999958977,-0.054308779893988045 +98187,490.93499999958976,-0.054308699294435415 +98188,490.93999999958976,-0.05430861869034092 +98189,490.94499999958975,-0.05430853808170385 +98190,490.94999999958975,-0.05430845746852345 +98191,490.95499999958975,-0.05430837685079898 +98192,490.95999999958974,-0.0543082962285297 +98193,490.96499999958974,-0.05430821560171488 +98194,490.96999999958973,-0.054308134970353764 +98195,490.9749999995897,-0.05430805433444562 +98196,490.9799999995897,-0.054307973693989695 +98197,490.9849999995897,-0.05430789304898526 +98198,490.9899999995897,-0.05430781239943157 +98199,490.9949999995897,-0.05430773174532789 +98200,490.9999999995897,-0.054307651086673445 +98201,491.0049999995897,-0.054307570423467524 +98202,491.0099999995897,-0.054307489755709384 +98203,491.0149999995897,-0.05430740908339827 +98204,491.0199999995897,-0.05430732840653343 +98205,491.0249999995897,-0.05430724772511414 +98206,491.0299999995897,-0.054307167039139646 +98207,491.0349999995897,-0.0543070863486092 +98208,491.03999999958967,-0.05430700565352207 +98209,491.04499999958966,-0.0543069249538775 +98210,491.04999999958966,-0.05430684424967475 +98211,491.05499999958965,-0.054306763540913086 +98212,491.05999999958965,-0.05430668282759175 +98213,491.06499999958965,-0.05430660210970999 +98214,491.06999999958964,-0.05430652138726707 +98215,491.07499999958964,-0.05430644066026225 +98216,491.07999999958963,-0.05430635992869478 +98217,491.0849999995896,-0.05430627919256391 +98218,491.0899999995896,-0.054306198451868896 +98219,491.0949999995896,-0.05430611770660899 +98220,491.0999999995896,-0.054306036956783446 +98221,491.1049999995896,-0.054305956202391516 +98222,491.1099999995896,-0.054305875443432454 +98223,491.1149999995896,-0.054305794679905504 +98224,491.1199999995896,-0.05430571391180993 +98225,491.1249999995896,-0.054305633139144986 +98226,491.1299999995896,-0.05430555236190992 +98227,491.1349999995896,-0.05430547158010397 +98228,491.1399999995896,-0.054305390793726406 +98229,491.1449999995896,-0.05430531000277647 +98230,491.14999999958957,-0.05430522920725342 +98231,491.15499999958956,-0.054305148407156494 +98232,491.15999999958956,-0.054305067602484956 +98233,491.16499999958955,-0.05430498679323806 +98234,491.16999999958955,-0.05430490597941504 +98235,491.17499999958955,-0.05430482516101516 +98236,491.17999999958954,-0.05430474433803765 +98237,491.18499999958954,-0.05430466351048179 +98238,491.18999999958953,-0.054304582678346806 +98239,491.1949999995895,-0.05430450184163195 +98240,491.1999999995895,-0.05430442100033648 +98241,491.2049999995895,-0.054304340154459625 +98242,491.2099999995895,-0.05430425930400065 +98243,491.2149999995895,-0.05430417844895881 +98244,491.2199999995895,-0.05430409758933334 +98245,491.2249999995895,-0.05430401672512349 +98246,491.2299999995895,-0.054303935856328506 +98247,491.2349999995895,-0.05430385498294764 +98248,491.2399999995895,-0.054303774104980135 +98249,491.2449999995895,-0.05430369322242525 +98250,491.2499999995895,-0.05430361233528223 +98251,491.2549999995895,-0.0543035314435503 +98252,491.25999999958947,-0.054303450547228724 +98253,491.26499999958946,-0.05430336964631674 +98254,491.26999999958946,-0.0543032887408136 +98255,491.27499999958945,-0.05430320783071855 +98256,491.27999999958945,-0.05430312691603082 +98257,491.28499999958944,-0.05430304599674968 +98258,491.28999999958944,-0.05430296507287436 +98259,491.29499999958944,-0.0543028841444041 +98260,491.29999999958943,-0.05430280321133816 +98261,491.3049999995894,-0.05430272227367577 +98262,491.3099999995894,-0.054302641331416185 +98263,491.3149999995894,-0.05430256038455865 +98264,491.3199999995894,-0.054302479433102395 +98265,491.3249999995894,-0.05430239847704667 +98266,491.3299999995894,-0.05430231751639072 +98267,491.3349999995894,-0.05430223655113379 +98268,491.3399999995894,-0.054302155581275116 +98269,491.3449999995894,-0.054302074606813945 +98270,491.3499999995894,-0.054301993627749526 +98271,491.3549999995894,-0.0543019126440811 +98272,491.3599999995894,-0.0543018316558079 +98273,491.3649999995894,-0.054301750662929166 +98274,491.36999999958937,-0.054301669665444155 +98275,491.37499999958936,-0.05430158866335209 +98276,491.37999999958936,-0.05430150765665222 +98277,491.38499999958935,-0.054301426645343785 +98278,491.38999999958935,-0.054301345629426026 +98279,491.39499999958934,-0.054301264608898184 +98280,491.39999999958934,-0.054301183583759495 +98281,491.40499999958934,-0.05430110255400922 +98282,491.40999999958933,-0.05430102151964657 +98283,491.4149999995893,-0.05430094048067081 +98284,491.4199999995893,-0.05430085943708114 +98285,491.4249999995893,-0.05430077838887685 +98286,491.4299999995893,-0.05430069733605714 +98287,491.4349999995893,-0.05430061627862126 +98288,491.4399999995893,-0.05430053521656846 +98289,491.4449999995893,-0.054300454149897974 +98290,491.4499999995893,-0.05430037307860903 +98291,491.4549999995893,-0.05430029200270086 +98292,491.4599999995893,-0.05430021092217272 +98293,491.4649999995893,-0.05430012983702385 +98294,491.4699999995893,-0.05430004874725346 +98295,491.4749999995893,-0.054299967652860805 +98296,491.47999999958927,-0.05429988655384513 +98297,491.48499999958926,-0.05429980545020566 +98298,491.48999999958926,-0.05429972434194163 +98299,491.49499999958925,-0.05429964322905228 +98300,491.49999999958925,-0.054299562111536845 +98301,491.50499999958924,-0.054299480989394557 +98302,491.50999999958924,-0.05429939986262466 +98303,491.51499999958924,-0.05429931873122636 +98304,491.51999999958923,-0.05429923759519893 +98305,491.5249999995892,-0.05429915645454161 +98306,491.5299999995892,-0.0542990753092536 +98307,491.5349999995892,-0.054298994159334146 +98308,491.5399999995892,-0.05429891300478248 +98309,491.5449999995892,-0.05429883184559785 +98310,491.5499999995892,-0.054298750681779466 +98311,491.5549999995892,-0.05429866951332659 +98312,491.5599999995892,-0.05429858834023844 +98313,491.5649999995892,-0.05429850716251424 +98314,491.5699999995892,-0.05429842598015324 +98315,491.5749999995892,-0.05429834479315467 +98316,491.5799999995892,-0.054298263601517745 +98317,491.5849999995892,-0.05429818240524172 +98318,491.58999999958917,-0.05429810120432582 +98319,491.59499999958916,-0.054298019998769265 +98320,491.59999999958916,-0.05429793878857129 +98321,491.60499999958915,-0.05429785757373114 +98322,491.60999999958915,-0.05429777635424803 +98323,491.61499999958914,-0.0542976951301212 +98324,491.61999999958914,-0.05429761390134988 +98325,491.62499999958914,-0.05429753266793328 +98326,491.62999999958913,-0.05429745142987066 +98327,491.6349999995891,-0.054297370187161235 +98328,491.6399999995891,-0.05429728893980425 +98329,491.6449999995891,-0.0542972076877989 +98330,491.6499999995891,-0.05429712643114445 +98331,491.6549999995891,-0.0542970451698401 +98332,491.6599999995891,-0.054296963903885116 +98333,491.6649999995891,-0.054296882633278684 +98334,491.6699999995891,-0.054296801358020064 +98335,491.6749999995891,-0.054296720078108464 +98336,491.6799999995891,-0.05429663879354313 +98337,491.6849999995891,-0.05429655750432326 +98338,491.6899999995891,-0.05429647621044812 +98339,491.6949999995891,-0.05429639491191691 +98340,491.69999999958907,-0.054296313608728865 +98341,491.70499999958906,-0.05429623230088321 +98342,491.70999999958906,-0.05429615098837917 +98343,491.71499999958905,-0.054296069671215974 +98344,491.71999999958905,-0.05429598834939286 +98345,491.72499999958904,-0.05429590702290903 +98346,491.72999999958904,-0.05429582569176373 +98347,491.73499999958904,-0.05429574435595616 +98348,491.73999999958903,-0.05429566301548557 +98349,491.744999999589,-0.05429558167035119 +98350,491.749999999589,-0.054295500320552206 +98351,491.754999999589,-0.05429541896608788 +98352,491.759999999589,-0.054295337606957435 +98353,491.764999999589,-0.05429525624316007 +98354,491.769999999589,-0.05429517487469502 +98355,491.774999999589,-0.054295093501561524 +98356,491.779999999589,-0.0542950121237588 +98357,491.784999999589,-0.05429493074128605 +98358,491.789999999589,-0.05429484935414251 +98359,491.794999999589,-0.05429476796232741 +98360,491.799999999589,-0.05429468656583997 +98361,491.804999999589,-0.0542946051646794 +98362,491.80999999958897,-0.054294523758844936 +98363,491.81499999958896,-0.05429444234833578 +98364,491.81999999958896,-0.05429436093315117 +98365,491.82499999958895,-0.054294279513290335 +98366,491.82999999958895,-0.05429419808875248 +98367,491.83499999958894,-0.054294116659536824 +98368,491.83999999958894,-0.054294035225642606 +98369,491.84499999958894,-0.05429395378706903 +98370,491.84999999958893,-0.05429387234381532 +98371,491.8549999995889,-0.054293790895880704 +98372,491.8599999995889,-0.05429370944326439 +98373,491.8649999995889,-0.05429362798596561 +98374,491.8699999995889,-0.054293546523983584 +98375,491.8749999995889,-0.054293465057317504 +98376,491.8799999995889,-0.05429338358596662 +98377,491.8849999995889,-0.05429330210993014 +98378,491.8899999995889,-0.05429322062920727 +98379,491.8949999995889,-0.05429313914379725 +98380,491.8999999995889,-0.05429305765369928 +98381,491.9049999995889,-0.054292976158912584 +98382,491.9099999995889,-0.05429289465943639 +98383,491.9149999995889,-0.054292813155269896 +98384,491.91999999958887,-0.05429273164641234 +98385,491.92499999958886,-0.05429265013286292 +98386,491.92999999958886,-0.05429256861462085 +98387,491.93499999958885,-0.05429248709168536 +98388,491.93999999958885,-0.05429240556405567 +98389,491.94499999958884,-0.05429232403173099 +98390,491.94999999958884,-0.05429224249471052 +98391,491.95499999958884,-0.0542921609529935 +98392,491.95999999958883,-0.05429207940657914 +98393,491.9649999995888,-0.05429199785546664 +98394,491.9699999995888,-0.05429191629965521 +98395,491.9749999995888,-0.0542918347391441 +98396,491.9799999995888,-0.05429175317393249 +98397,491.9849999995888,-0.05429167160401961 +98398,491.9899999995888,-0.054291590029404674 +98399,491.9949999995888,-0.054291508450086894 +98400,491.9999999995888,-0.05429142686606548 +98401,492.0049999995888,-0.05429134527733964 +98402,492.0099999995888,-0.05429126368390861 +98403,492.0149999995888,-0.054291182085771585 +98404,492.0199999995888,-0.054291100482927776 +98405,492.0249999995888,-0.05429101887537639 +98406,492.02999999958877,-0.054290937263116665 +98407,492.03499999958876,-0.05429085564614778 +98408,492.03999999958876,-0.05429077402446896 +98409,492.04499999958875,-0.05429069239807942 +98410,492.04999999958875,-0.05429061076697836 +98411,492.05499999958874,-0.05429052913116502 +98412,492.05999999958874,-0.054290447490638584 +98413,492.06499999958874,-0.05429036584539827 +98414,492.06999999958873,-0.05429028419544328 +98415,492.0749999995887,-0.05429020254077284 +98416,492.0799999995887,-0.05429012088138615 +98417,492.0849999995887,-0.05429003921728241 +98418,492.0899999995887,-0.054289957548460846 +98419,492.0949999995887,-0.05428987587492067 +98420,492.0999999995887,-0.054289794196661065 +98421,492.1049999995887,-0.05428971251368127 +98422,492.1099999995887,-0.05428963082598047 +98423,492.1149999995887,-0.054289549133557886 +98424,492.1199999995887,-0.05428946743641272 +98425,492.1249999995887,-0.054289385734544185 +98426,492.1299999995887,-0.05428930402795148 +98427,492.1349999995887,-0.054289222316633814 +98428,492.13999999958867,-0.0542891406005904 +98429,492.14499999958866,-0.05428905887982045 +98430,492.14999999958866,-0.05428897715432315 +98431,492.15499999958865,-0.05428889542409773 +98432,492.15999999958865,-0.05428881368914338 +98433,492.16499999958864,-0.054288731949459317 +98434,492.16999999958864,-0.05428865020504473 +98435,492.17499999958864,-0.05428856845589884 +98436,492.17999999958863,-0.05428848670202085 +98437,492.1849999995886,-0.05428840494340996 +98438,492.1899999995886,-0.05428832318006538 +98439,492.1949999995886,-0.05428824141198631 +98440,492.1999999995886,-0.054288159639171954 +98441,492.2049999995886,-0.05428807786162152 +98442,492.2099999995886,-0.05428799607933421 +98443,492.2149999995886,-0.054287914292309225 +98444,492.2199999995886,-0.054287832500545766 +98445,492.2249999995886,-0.054287750704043035 +98446,492.2299999995886,-0.05428766890280025 +98447,492.2349999995886,-0.054287587096816595 +98448,492.2399999995886,-0.054287505286091275 +98449,492.2449999995886,-0.05428742347062351 +98450,492.24999999958857,-0.05428734165041249 +98451,492.25499999958856,-0.054287259825457415 +98452,492.25999999958856,-0.054287177995757475 +98453,492.26499999958855,-0.054287096161311894 +98454,492.26999999958855,-0.05428701432211986 +98455,492.27499999958854,-0.054286932478180575 +98456,492.27999999958854,-0.05428685062949325 +98457,492.28499999958854,-0.05428676877605706 +98458,492.28999999958853,-0.054286686917871224 +98459,492.2949999995885,-0.05428660505493494 +98460,492.2999999995885,-0.054286523187247415 +98461,492.3049999995885,-0.05428644131480783 +98462,492.3099999995885,-0.0542863594376154 +98463,492.3149999995885,-0.05428627755566932 +98464,492.3199999995885,-0.05428619566896877 +98465,492.3249999995885,-0.05428611377751298 +98466,492.3299999995885,-0.05428603188130113 +98467,492.3349999995885,-0.05428594998033242 +98468,492.3399999995885,-0.05428586807460606 +98469,492.3449999995885,-0.05428578616412122 +98470,492.3499999995885,-0.054285704248877124 +98471,492.3549999995885,-0.05428562232887296 +98472,492.35999999958847,-0.05428554040410792 +98473,492.36499999958846,-0.0542854584745812 +98474,492.36999999958846,-0.05428537654029201 +98475,492.37499999958845,-0.05428529460123953 +98476,492.37999999958845,-0.05428521265742296 +98477,492.38499999958844,-0.05428513070884149 +98478,492.38999999958844,-0.05428504875549433 +98479,492.39499999958844,-0.054284966797380665 +98480,492.39999999958843,-0.05428488483449969 +98481,492.4049999995884,-0.05428480286685061 +98482,492.4099999995884,-0.05428472089443261 +98483,492.4149999995884,-0.054284638917244894 +98484,492.4199999995884,-0.05428455693528663 +98485,492.4249999995884,-0.05428447494855704 +98486,492.4299999995884,-0.054284392957055304 +98487,492.4349999995884,-0.05428431096078062 +98488,492.4399999995884,-0.05428422895973218 +98489,492.4449999995884,-0.05428414695390917 +98490,492.4499999995884,-0.0542840649433108 +98491,492.4549999995884,-0.054283982927936236 +98492,492.4599999995884,-0.0542839009077847 +98493,492.4649999995884,-0.054283818882855356 +98494,492.46999999958837,-0.05428373685314742 +98495,492.47499999958836,-0.05428365481866007 +98496,492.47999999958836,-0.054283572779392504 +98497,492.48499999958835,-0.05428349073534391 +98498,492.48999999958835,-0.054283408686513455 +98499,492.49499999958834,-0.05428332663290037 +98500,492.49999999958834,-0.05428324457450383 +98501,492.50499999958834,-0.054283162511323015 +98502,492.50999999958833,-0.054283080443357126 +98503,492.5149999995883,-0.05428299837060533 +98504,492.5199999995883,-0.054282916293066835 +98505,492.5249999995883,-0.05428283421074083 +98506,492.5299999995883,-0.05428275212362651 +98507,492.5349999995883,-0.05428267003172306 +98508,492.5399999995883,-0.05428258793502965 +98509,492.5449999995883,-0.0542825058335455 +98510,492.5499999995883,-0.054282423727269775 +98511,492.5549999995883,-0.054282341616201664 +98512,492.5599999995883,-0.05428225950034036 +98513,492.5649999995883,-0.054282177379685055 +98514,492.5699999995883,-0.05428209525423492 +98515,492.5749999995883,-0.05428201312398915 +98516,492.57999999958827,-0.05428193098894692 +98517,492.58499999958826,-0.05428184884910745 +98518,492.58999999958826,-0.0542817667044699 +98519,492.59499999958825,-0.05428168455503347 +98520,492.59999999958825,-0.054281602400797324 +98521,492.60499999958824,-0.05428152024176066 +98522,492.60999999958824,-0.05428143807792266 +98523,492.61499999958824,-0.054281355909282514 +98524,492.61999999958823,-0.054281273735839394 +98525,492.6249999995882,-0.05428119155759249 +98526,492.6299999995882,-0.054281109374541 +98527,492.6349999995882,-0.0542810271866841 +98528,492.6399999995882,-0.054280944994020974 +98529,492.6449999995882,-0.0542808627965508 +98530,492.6499999995882,-0.05428078059427276 +98531,492.6549999995882,-0.054280698387186035 +98532,492.6599999995882,-0.05428061617528982 +98533,492.6649999995882,-0.054280533958583295 +98534,492.6699999995882,-0.05428045173706562 +98535,492.6749999995882,-0.054280369510736 +98536,492.6799999995882,-0.05428028727959361 +98537,492.6849999995882,-0.05428020504363764 +98538,492.68999999958817,-0.05428012280286725 +98539,492.69499999958816,-0.05428004055728165 +98540,492.69999999958816,-0.054279958306880004 +98541,492.70499999958815,-0.05427987605166149 +98542,492.70999999958815,-0.05427979379162528 +98543,492.71499999958814,-0.05427971152677057 +98544,492.71999999958814,-0.05427962925709655 +98545,492.72499999958814,-0.05427954698260237 +98546,492.72999999958813,-0.054279464703287233 +98547,492.7349999995881,-0.05427938241915031 +98548,492.7399999995881,-0.05427930013019078 +98549,492.7449999995881,-0.05427921783640781 +98550,492.7499999995881,-0.05427913553780059 +98551,492.7549999995881,-0.05427905323436829 +98552,492.7599999995881,-0.05427897092611011 +98553,492.7649999995881,-0.054278888613025204 +98554,492.7699999995881,-0.05427880629511276 +98555,492.7749999995881,-0.05427872397237195 +98556,492.7799999995881,-0.05427864164480195 +98557,492.7849999995881,-0.054278559312401956 +98558,492.7899999995881,-0.05427847697517112 +98559,492.7949999995881,-0.05427839463310862 +98560,492.79999999958807,-0.05427831228621365 +98561,492.80499999958806,-0.05427822993448537 +98562,492.80999999958806,-0.05427814757792295 +98563,492.81499999958805,-0.054278065216525576 +98564,492.81999999958805,-0.054277982850292436 +98565,492.82499999958804,-0.05427790047922268 +98566,492.82999999958804,-0.0542778181033155 +98567,492.83499999958804,-0.05427773572257006 +98568,492.83999999958803,-0.05427765333698554 +98569,492.844999999588,-0.0542775709465611 +98570,492.849999999588,-0.05427748855129593 +98571,492.854999999588,-0.0542774061511892 +98572,492.859999999588,-0.05427732374624007 +98573,492.864999999588,-0.054277241336447735 +98574,492.869999999588,-0.05427715892181135 +98575,492.874999999588,-0.05427707650233009 +98576,492.879999999588,-0.05427699407800314 +98577,492.884999999588,-0.054276911648829654 +98578,492.889999999588,-0.054276829214808815 +98579,492.894999999588,-0.054276746775939785 +98580,492.899999999588,-0.054276664332221745 +98581,492.904999999588,-0.05427658188365386 +98582,492.90999999958797,-0.054276499430235305 +98583,492.91499999958796,-0.054276416971965245 +98584,492.91999999958796,-0.054276334508842866 +98585,492.92499999958795,-0.05427625204086732 +98586,492.92999999958795,-0.054276169568037776 +98587,492.93499999958794,-0.0542760870903534 +98588,492.93999999958794,-0.05427600460781338 +98589,492.94499999958794,-0.05427592212041687 +98590,492.94999999958793,-0.05427583962816304 +98591,492.9549999995879,-0.05427575713105107 +98592,492.9599999995879,-0.05427567462908012 +98593,492.9649999995879,-0.054275592122249354 +98594,492.9699999995879,-0.05427550961055795 +98595,492.9749999995879,-0.05427542709400507 +98596,492.9799999995879,-0.054275344572589874 +98597,492.9849999995879,-0.05427526204631154 +98598,492.9899999995879,-0.054275179515169227 +98599,492.9949999995879,-0.0542750969791621 +98600,492.9999999995879,-0.05427501443828933 +98601,493.0049999995879,-0.05427493189255009 +98602,493.0099999995879,-0.05427484934194352 +98603,493.01499999958787,-0.054274766786468816 +98604,493.01999999958787,-0.054274684226125136 +98605,493.02499999958786,-0.05427460166091163 +98606,493.02999999958786,-0.054274519090827485 +98607,493.03499999958785,-0.05427443651587184 +98608,493.03999999958785,-0.05427435393604388 +98609,493.04499999958784,-0.05427427135134276 +98610,493.04999999958784,-0.05427418876176765 +98611,493.05499999958784,-0.0542741061673177 +98612,493.05999999958783,-0.054274023567992075 +98613,493.0649999995878,-0.05427394096378996 +98614,493.0699999995878,-0.054273858354710484 +98615,493.0749999995878,-0.05427377574075284 +98616,493.0799999995878,-0.05427369312191618 +98617,493.0849999995878,-0.05427361049819966 +98618,493.0899999995878,-0.05427352786960245 +98619,493.0949999995878,-0.05427344523612371 +98620,493.0999999995878,-0.05427336259776259 +98621,493.1049999995878,-0.05427327995451826 +98622,493.1099999995878,-0.05427319730638989 +98623,493.1149999995878,-0.05427311465337663 +98624,493.1199999995878,-0.05427303199547764 +98625,493.12499999958777,-0.05427294933269208 +98626,493.12999999958777,-0.05427286666501911 +98627,493.13499999958776,-0.054272783992457906 +98628,493.13999999958776,-0.054272701315007596 +98629,493.14499999958775,-0.05427261863266736 +98630,493.14999999958775,-0.05427253594543636 +98631,493.15499999958774,-0.05427245325331374 +98632,493.15999999958774,-0.05427237055629867 +98633,493.16499999958774,-0.0542722878543903 +98634,493.16999999958773,-0.0542722051475878 +98635,493.1749999995877,-0.05427212243589031 +98636,493.1799999995877,-0.054272039719297 +98637,493.1849999995877,-0.05427195699780703 +98638,493.1899999995877,-0.05427187427141954 +98639,493.1949999995877,-0.054271791540133694 +98640,493.1999999995877,-0.05427170880394866 +98641,493.2049999995877,-0.05427162606286358 +98642,493.2099999995877,-0.05427154331687761 +98643,493.2149999995877,-0.05427146056598993 +98644,493.2199999995877,-0.05427137781019967 +98645,493.2249999995877,-0.054271295049505994 +98646,493.2299999995877,-0.054271212283908056 +98647,493.23499999958767,-0.054271129513405 +98648,493.23999999958767,-0.054271046737996 +98649,493.24499999958766,-0.0542709639576802 +98650,493.24999999958766,-0.05427088117245674 +98651,493.25499999958765,-0.0542707983823248 +98652,493.25999999958765,-0.05427071558728352 +98653,493.26499999958764,-0.054270632787332046 +98654,493.26999999958764,-0.054270549982469544 +98655,493.27499999958764,-0.054270467172695167 +98656,493.27999999958763,-0.05427038435800806 +98657,493.2849999995876,-0.05427030153840737 +98658,493.2899999995876,-0.05427021871389227 +98659,493.2949999995876,-0.05427013588446188 +98660,493.2999999995876,-0.05427005305011538 +98661,493.3049999995876,-0.05426997021085191 +98662,493.3099999995876,-0.05426988736667062 +98663,493.3149999995876,-0.054269804517570665 +98664,493.3199999995876,-0.05426972166355118 +98665,493.3249999995876,-0.05426963880461133 +98666,493.3299999995876,-0.054269555940750266 +98667,493.3349999995876,-0.05426947307196714 +98668,493.3399999995876,-0.054269390198261096 +98669,493.34499999958757,-0.05426930731963128 +98670,493.34999999958757,-0.05426922443607684 +98671,493.35499999958756,-0.05426914154759693 +98672,493.35999999958756,-0.054269058654190704 +98673,493.36499999958755,-0.0542689757558573 +98674,493.36999999958755,-0.05426889285259587 +98675,493.37499999958754,-0.05426880994440555 +98676,493.37999999958754,-0.0542687270312855 +98677,493.38499999958754,-0.05426864411323486 +98678,493.38999999958753,-0.054268561190252786 +98679,493.3949999995875,-0.054268478262338424 +98680,493.3999999995875,-0.05426839532949092 +98681,493.4049999995875,-0.054268312391709414 +98682,493.4099999995875,-0.05426822944899305 +98683,493.4149999995875,-0.05426814650134099 +98684,493.4199999995875,-0.05426806354875237 +98685,493.4249999995875,-0.05426798059122632 +98686,493.4299999995875,-0.054267897628762 +98687,493.4349999995875,-0.054267814661358556 +98688,493.4399999995875,-0.054267731689015136 +98689,493.4449999995875,-0.05426764871173087 +98690,493.4499999995875,-0.05426756572950491 +98691,493.45499999958747,-0.0542674827423364 +98692,493.45999999958747,-0.05426739975022449 +98693,493.46499999958746,-0.0542673167531683 +98694,493.46999999958746,-0.054267233751167 +98695,493.47499999958745,-0.05426715074421972 +98696,493.47999999958745,-0.0542670677323256 +98697,493.48499999958744,-0.05426698471548379 +98698,493.48999999958744,-0.05426690169369343 +98699,493.49499999958744,-0.05426681866695365 +98700,493.49999999958743,-0.054266735635263616 +98701,493.5049999995874,-0.05426665259862244 +98702,493.5099999995874,-0.054266569557029284 +98703,493.5149999995874,-0.054266486510483276 +98704,493.5199999995874,-0.054266403458983564 +98705,493.5249999995874,-0.05426632040252929 +98706,493.5299999995874,-0.05426623734111959 +98707,493.5349999995874,-0.054266154274753606 +98708,493.5399999995874,-0.05426607120343047 +98709,493.5449999995874,-0.05426598812714933 +98710,493.5499999995874,-0.05426590504590931 +98711,493.5549999995874,-0.054265821959709554 +98712,493.5599999995874,-0.05426573886854922 +98713,493.56499999958737,-0.054265655772427424 +98714,493.56999999958737,-0.054265572671343305 +98715,493.57499999958736,-0.054265489565296025 +98716,493.57999999958736,-0.05426540645428469 +98717,493.58499999958735,-0.05426532333830845 +98718,493.58999999958735,-0.054265240217366444 +98719,493.59499999958734,-0.05426515709145781 +98720,493.59999999958734,-0.054265073960581674 +98721,493.60499999958733,-0.05426499082473718 +98722,493.60999999958733,-0.05426490768392347 +98723,493.6149999995873,-0.05426482453813968 +98724,493.6199999995873,-0.05426474138738493 +98725,493.6249999995873,-0.05426465823165836 +98726,493.6299999995873,-0.05426457507095911 +98727,493.6349999995873,-0.05426449190528632 +98728,493.6399999995873,-0.05426440873463911 +98729,493.6449999995873,-0.05426432555901661 +98730,493.6499999995873,-0.054264242378417975 +98731,493.6549999995873,-0.05426415919284233 +98732,493.6599999995873,-0.0542640760022888 +98733,493.6649999995873,-0.054263992806756534 +98734,493.6699999995873,-0.05426390960624465 +98735,493.67499999958727,-0.05426382640075228 +98736,493.67999999958727,-0.05426374319027856 +98737,493.68499999958726,-0.05426365997482263 +98738,493.68999999958726,-0.054263576754383605 +98739,493.69499999958725,-0.054263493528960635 +98740,493.69999999958725,-0.05426341029855284 +98741,493.70499999958724,-0.05426332706315935 +98742,493.70999999958724,-0.05426324382277932 +98743,493.71499999958723,-0.05426316057741184 +98744,493.71999999958723,-0.05426307732705607 +98745,493.7249999995872,-0.05426299407171112 +98746,493.7299999995872,-0.05426291081137613 +98747,493.7349999995872,-0.05426282754605023 +98748,493.7399999995872,-0.054262744275732556 +98749,493.7449999995872,-0.05426266100042223 +98750,493.7499999995872,-0.054262577720118374 +98751,493.7549999995872,-0.054262494434820126 +98752,493.7599999995872,-0.05426241114452661 +98753,493.7649999995872,-0.05426232784923696 +98754,493.7699999995872,-0.054262244548950296 +98755,493.7749999995872,-0.054262161243665744 +98756,493.7799999995872,-0.05426207793338243 +98757,493.78499999958717,-0.054261994618099496 +98758,493.78999999958717,-0.054261911297816046 +98759,493.79499999958716,-0.05426182797253122 +98760,493.79999999958716,-0.054261744642244154 +98761,493.80499999958715,-0.05426166130695396 +98762,493.80999999958715,-0.05426157796665976 +98763,493.81499999958714,-0.054261494621360686 +98764,493.81999999958714,-0.05426141127105585 +98765,493.82499999958713,-0.0542613279157444 +98766,493.82999999958713,-0.05426124455542545 +98767,493.8349999995871,-0.05426116119009812 +98768,493.8399999995871,-0.05426107781976154 +98769,493.8449999995871,-0.05426099444441484 +98770,493.8499999995871,-0.054260911064057116 +98771,493.8549999995871,-0.05426082767868752 +98772,493.8599999995871,-0.054260744288305164 +98773,493.8649999995871,-0.05426066089290917 +98774,493.8699999995871,-0.05426057749249867 +98775,493.8749999995871,-0.05426049408707277 +98776,493.8799999995871,-0.0542604106766306 +98777,493.8849999995871,-0.05426032726117128 +98778,493.8899999995871,-0.054260243840693945 +98779,493.89499999958707,-0.05426016041519769 +98780,493.89999999958707,-0.05426007698468166 +98781,493.90499999958706,-0.054259993549144965 +98782,493.90999999958706,-0.054259910108586724 +98783,493.91499999958705,-0.05425982666300605 +98784,493.91999999958705,-0.05425974321240209 +98785,493.92499999958704,-0.05425965975677393 +98786,493.92999999958704,-0.054259576296120715 +98787,493.93499999958703,-0.05425949283044155 +98788,493.93999999958703,-0.054259409359735555 +98789,493.944999999587,-0.054259325884001855 +98790,493.949999999587,-0.05425924240323957 +98791,493.954999999587,-0.05425915891744781 +98792,493.959999999587,-0.05425907542662568 +98793,493.964999999587,-0.05425899193077234 +98794,493.969999999587,-0.05425890842988687 +98795,493.974999999587,-0.054258824923968406 +98796,493.979999999587,-0.054258741413016044 +98797,493.984999999587,-0.05425865789702891 +98798,493.989999999587,-0.054258574376006126 +98799,493.994999999587,-0.054258490849946814 +98800,493.999999999587,-0.05425840731885008 +98801,494.00499999958697,-0.05425832378271502 +98802,494.00999999958697,-0.054258240241540794 +98803,494.01499999958696,-0.05425815669532648 +98804,494.01999999958696,-0.0542580731440712 +98805,494.02499999958695,-0.05425798958777408 +98806,494.02999999958695,-0.05425790602643423 +98807,494.03499999958694,-0.054257822460050766 +98808,494.03999999958694,-0.054257738888622786 +98809,494.04499999958693,-0.05425765531214941 +98810,494.04999999958693,-0.05425757173062976 +98811,494.0549999995869,-0.05425748814406295 +98812,494.0599999995869,-0.05425740455244808 +98813,494.0649999995869,-0.05425732095578427 +98814,494.0699999995869,-0.05425723735407063 +98815,494.0749999995869,-0.054257153747306275 +98816,494.0799999995869,-0.05425707013549031 +98817,494.0849999995869,-0.05425698651862186 +98818,494.0899999995869,-0.054256902896700016 +98819,494.0949999995869,-0.054256819269723894 +98820,494.0999999995869,-0.054256735637692614 +98821,494.1049999995869,-0.05425665200060529 +98822,494.1099999995869,-0.05425656835846101 +98823,494.11499999958687,-0.05425648471125891 +98824,494.11999999958687,-0.05425640105899808 +98825,494.12499999958686,-0.054256317401677634 +98826,494.12999999958686,-0.05425623373929669 +98827,494.13499999958685,-0.05425615007185434 +98828,494.13999999958685,-0.054256066399349705 +98829,494.14499999958684,-0.05425598272178189 +98830,494.14999999958684,-0.05425589903915 +98831,494.15499999958683,-0.054255815351453136 +98832,494.15999999958683,-0.05425573165869042 +98833,494.1649999995868,-0.05425564796086096 +98834,494.1699999995868,-0.05425556425796386 +98835,494.1749999995868,-0.054255480549998215 +98836,494.1799999995868,-0.05425539683696313 +98837,494.1849999995868,-0.05425531311885773 +98838,494.1899999995868,-0.0542552293956811 +98839,494.1949999995868,-0.05425514566743236 +98840,494.1999999995868,-0.054255061934110616 +98841,494.2049999995868,-0.054254978195714954 +98842,494.2099999995868,-0.054254894452244504 +98843,494.2149999995868,-0.05425481070369836 +98844,494.2199999995868,-0.05425472695007561 +98845,494.22499999958677,-0.05425464319137538 +98846,494.22999999958677,-0.05425455942759678 +98847,494.23499999958676,-0.054254475658738886 +98848,494.23999999958676,-0.054254391884800815 +98849,494.24499999958675,-0.05425430810578166 +98850,494.24999999958675,-0.05425422432168054 +98851,494.25499999958674,-0.05425414053249655 +98852,494.25999999958674,-0.0542540567382288 +98853,494.26499999958673,-0.05425397293887638 +98854,494.26999999958673,-0.054253889134438384 +98855,494.2749999995867,-0.05425380532491393 +98856,494.2799999995867,-0.05425372151030212 +98857,494.2849999995867,-0.054253637690602034 +98858,494.2899999995867,-0.05425355386581279 +98859,494.2949999995867,-0.05425347003593349 +98860,494.2999999995867,-0.05425338620096322 +98861,494.3049999995867,-0.05425330236090109 +98862,494.3099999995867,-0.0542532185157462 +98863,494.3149999995867,-0.054253134665497645 +98864,494.3199999995867,-0.054253050810154524 +98865,494.3249999995867,-0.05425296694971593 +98866,494.3299999995867,-0.05425288308418097 +98867,494.33499999958667,-0.05425279921354874 +98868,494.33999999958667,-0.05425271533781834 +98869,494.34499999958666,-0.054252631456988866 +98870,494.34999999958666,-0.05425254757105941 +98871,494.35499999958665,-0.05425246368002907 +98872,494.35999999958665,-0.054252379783896944 +98873,494.36499999958664,-0.05425229588266212 +98874,494.36999999958664,-0.054252211976323725 +98875,494.37499999958663,-0.05425212806488082 +98876,494.37999999958663,-0.05425204414833252 +98877,494.3849999995866,-0.05425196022667791 +98878,494.3899999995866,-0.05425187629991609 +98879,494.3949999995866,-0.054251792368046156 +98880,494.3999999995866,-0.0542517084310672 +98881,494.4049999995866,-0.05425162448897831 +98882,494.4099999995866,-0.05425154054177858 +98883,494.4149999995866,-0.054251456589467124 +98884,494.4199999995866,-0.054251372632043014 +98885,494.4249999995866,-0.054251288669505356 +98886,494.4299999995866,-0.05425120470185324 +98887,494.4349999995866,-0.05425112072908576 +98888,494.4399999995866,-0.05425103675120199 +98889,494.44499999958657,-0.05425095276820105 +98890,494.44999999958657,-0.054250868780082 +98891,494.45499999958656,-0.054250784786843954 +98892,494.45999999958656,-0.054250700788486005 +98893,494.46499999958655,-0.05425061678500723 +98894,494.46999999958655,-0.05425053277640673 +98895,494.47499999958654,-0.05425044876268359 +98896,494.47999999958654,-0.05425036474383691 +98897,494.48499999958653,-0.05425028071986577 +98898,494.48999999958653,-0.05425019669076926 +98899,494.4949999995865,-0.05425011265654648 +98900,494.4999999995865,-0.05425002861719651 +98901,494.5049999995865,-0.054249944572718437 +98902,494.5099999995865,-0.05424986052311135 +98903,494.5149999995865,-0.05424977646837434 +98904,494.5199999995865,-0.054249692408506495 +98905,494.5249999995865,-0.054249608343506894 +98906,494.5299999995865,-0.054249524273374636 +98907,494.5349999995865,-0.0542494401981088 +98908,494.5399999995865,-0.05424935611770849 +98909,494.5449999995865,-0.05424927203217277 +98910,494.5499999995865,-0.054249187941500736 +98911,494.55499999958647,-0.05424910384569148 +98912,494.55999999958647,-0.05424901974474409 +98913,494.56499999958646,-0.054248935638657646 +98914,494.56999999958646,-0.05424885152743122 +98915,494.57499999958645,-0.05424876741106391 +98916,494.57999999958645,-0.0542486832895548 +98917,494.58499999958644,-0.05424859916290298 +98918,494.58999999958644,-0.054248515031107516 +98919,494.59499999958643,-0.05424843089416751 +98920,494.59999999958643,-0.054248346752082045 +98921,494.6049999995864,-0.054248262604850196 +98922,494.6099999995864,-0.054248178452471055 +98923,494.6149999995864,-0.054248094294943684 +98924,494.6199999995864,-0.05424801013226718 +98925,494.6249999995864,-0.05424792596444064 +98926,494.6299999995864,-0.054247841791463115 +98927,494.6349999995864,-0.05424775761333372 +98928,494.6399999995864,-0.054247673430051505 +98929,494.6449999995864,-0.054247589241615574 +98930,494.6499999995864,-0.05424750504802499 +98931,494.6549999995864,-0.05424742084927885 +98932,494.6599999995864,-0.054247336645376225 +98933,494.66499999958637,-0.0542472524363162 +98934,494.66999999958637,-0.05424716822209786 +98935,494.67499999958636,-0.054247084002720256 +98936,494.67999999958636,-0.0542469997781825 +98937,494.68499999958635,-0.054246915548483654 +98938,494.68999999958635,-0.05424683131362281 +98939,494.69499999958634,-0.05424674707359904 +98940,494.69999999958634,-0.05424666282841142 +98941,494.70499999958633,-0.054246578578059014 +98942,494.70999999958633,-0.054246494322540924 +98943,494.7149999995863,-0.05424641006185622 +98944,494.7199999995863,-0.054246325796003976 +98945,494.7249999995863,-0.054246241524983266 +98946,494.7299999995863,-0.05424615724879317 +98947,494.7349999995863,-0.054246072967432765 +98948,494.7399999995863,-0.054245988680901136 +98949,494.7449999995863,-0.05424590438919734 +98950,494.7499999995863,-0.05424582009232046 +98951,494.7549999995863,-0.054245735790269575 +98952,494.7599999995863,-0.05424565148304376 +98953,494.7649999995863,-0.05424556717064208 +98954,494.7699999995863,-0.054245482853063624 +98955,494.77499999958627,-0.05424539853030746 +98956,494.77999999958627,-0.05424531420237264 +98957,494.78499999958626,-0.05424522986925827 +98958,494.78999999958626,-0.054245145530963414 +98959,494.79499999958625,-0.05424506118748714 +98960,494.79999999958625,-0.05424497683882852 +98961,494.80499999958624,-0.05424489248498662 +98962,494.80999999958624,-0.05424480812596053 +98963,494.81499999958623,-0.05424472376174931 +98964,494.81999999958623,-0.054244639392352044 +98965,494.8249999995862,-0.05424455501776778 +98966,494.8299999995862,-0.054244470637995604 +98967,494.8349999995862,-0.05424438625303459 +98968,494.8399999995862,-0.0542443018628838 +98969,494.8449999995862,-0.054244217467542315 +98970,494.8499999995862,-0.05424413306700919 +98971,494.8549999995862,-0.0542440486612835 +98972,494.8599999995862,-0.05424396425036432 +98973,494.8649999995862,-0.054243879834250705 +98974,494.8699999995862,-0.05424379541294174 +98975,494.8749999995862,-0.05424371098643648 +98976,494.8799999995862,-0.054243626554734005 +98977,494.88499999958617,-0.05424354211783339 +98978,494.88999999958617,-0.05424345767573368 +98979,494.89499999958616,-0.05424337322843396 +98980,494.89999999958616,-0.054243288775933284 +98981,494.90499999958615,-0.05424320431823072 +98982,494.90999999958615,-0.05424311985532536 +98983,494.91499999958614,-0.05424303538721624 +98984,494.91999999958614,-0.05424295091390243 +98985,494.92499999958613,-0.05424286643538302 +98986,494.92999999958613,-0.05424278195165705 +98987,494.9349999995861,-0.0542426974627236 +98988,494.9399999995861,-0.05424261296858171 +98989,494.9449999995861,-0.054242528469230465 +98990,494.9499999995861,-0.054242443964668936 +98991,494.9549999995861,-0.05424235945489617 +98992,494.9599999995861,-0.05424227493991124 +98993,494.9649999995861,-0.05424219041971321 +98994,494.9699999995861,-0.054242105894301146 +98995,494.9749999995861,-0.0542420213636741 +98996,494.9799999995861,-0.05424193682783114 +98997,494.9849999995861,-0.054241852286771336 +98998,494.9899999995861,-0.05424176774049373 +98999,494.99499999958607,-0.0542416831889974 +99000,494.99999999958607,-0.05424159863228141 +99001,495.00499999958606,-0.054241514070344804 +99002,495.00999999958606,-0.05424142950318667 +99003,495.01499999958605,-0.05424134493080604 +99004,495.01999999958605,-0.054241260353201995 +99005,495.02499999958604,-0.05424117577037359 +99006,495.02999999958604,-0.05424109118231988 +99007,495.03499999958603,-0.05424100658903993 +99008,495.03999999958603,-0.054240921990532785 +99009,495.044999999586,-0.054240837386797525 +99010,495.049999999586,-0.0542407527778332 +99011,495.054999999586,-0.05424066816363886 +99012,495.059999999586,-0.054240583544213565 +99013,495.064999999586,-0.05424049891955639 +99014,495.069999999586,-0.054240414289666375 +99015,495.074999999586,-0.05424032965454258 +99016,495.079999999586,-0.05424024501418407 +99017,495.084999999586,-0.0542401603685899 +99018,495.089999999586,-0.054240075717759115 +99019,495.094999999586,-0.05423999106169077 +99020,495.099999999586,-0.054239906400383946 +99021,495.10499999958597,-0.05423982173383767 +99022,495.10999999958597,-0.05423973706205102 +99023,495.11499999958596,-0.05423965238502305 +99024,495.11999999958596,-0.054239567702752796 +99025,495.12499999958595,-0.05423948301523933 +99026,495.12999999958595,-0.05423939832248169 +99027,495.13499999958594,-0.05423931362447894 +99028,495.13999999958594,-0.054239228921230134 +99029,495.14499999958593,-0.05423914421273433 +99030,495.14999999958593,-0.05423905949899057 +99031,495.1549999995859,-0.0542389747799979 +99032,495.1599999995859,-0.05423889005575539 +99033,495.1649999995859,-0.054238805326262095 +99034,495.1699999995859,-0.054238720591517055 +99035,495.1749999995859,-0.05423863585151932 +99036,495.1799999995859,-0.05423855110626795 +99037,495.1849999995859,-0.05423846635576199 +99038,495.1899999995859,-0.05423838160000048 +99039,495.1949999995859,-0.05423829683898249 +99040,495.1999999995859,-0.05423821207270707 +99041,495.2049999995859,-0.054238127301173264 +99042,495.2099999995859,-0.05423804252438012 +99043,495.21499999958587,-0.05423795774232669 +99044,495.21999999958587,-0.054237872955012006 +99045,495.22499999958586,-0.05423778816243515 +99046,495.22999999958586,-0.05423770336459515 +99047,495.23499999958585,-0.05423761856149105 +99048,495.23999999958585,-0.05423753375312191 +99049,495.24499999958584,-0.05423744893948677 +99050,495.24999999958584,-0.05423736412058467 +99051,495.25499999958583,-0.054237279296414684 +99052,495.25999999958583,-0.054237194466975835 +99053,495.2649999995858,-0.05423710963226718 +99054,495.2699999995858,-0.05423702479228776 +99055,495.2749999995858,-0.05423693994703662 +99056,495.2799999995858,-0.0542368550965128 +99057,495.2849999995858,-0.05423677024071536 +99058,495.2899999995858,-0.05423668537964334 +99059,495.2949999995858,-0.05423660051329577 +99060,495.2999999995858,-0.054236515641671715 +99061,495.3049999995858,-0.05423643076477022 +99062,495.3099999995858,-0.05423634588259031 +99063,495.3149999995858,-0.05423626099513105 +99064,495.3199999995858,-0.05423617610239147 +99065,495.32499999958577,-0.05423609120437061 +99066,495.32999999958577,-0.05423600630106752 +99067,495.33499999958576,-0.05423592139248125 +99068,495.33999999958576,-0.05423583647861082 +99069,495.34499999958575,-0.05423575155945529 +99070,495.34999999958575,-0.0542356666350137 +99071,495.35499999958574,-0.054235581705285085 +99072,495.35999999958574,-0.054235496770268496 +99073,495.36499999958573,-0.05423541182996297 +99074,495.36999999958573,-0.05423532688436754 +99075,495.3749999995857,-0.05423524193348125 +99076,495.3799999995857,-0.054235156977303134 +99077,495.3849999995857,-0.05423507201583225 +99078,495.3899999995857,-0.054234987049067616 +99079,495.3949999995857,-0.054234902077008276 +99080,495.3999999995857,-0.05423481709965327 +99081,495.4049999995857,-0.05423473211700166 +99082,495.4099999995857,-0.054234647129052446 +99083,495.4149999995857,-0.054234562135804694 +99084,495.4199999995857,-0.05423447713725743 +99085,495.4249999995857,-0.054234392133409685 +99086,495.4299999995857,-0.054234307124260514 +99087,495.43499999958567,-0.05423422210980894 +99088,495.43999999958567,-0.05423413709005401 +99089,495.44499999958566,-0.054234052064994744 +99090,495.44999999958566,-0.05423396703463018 +99091,495.45499999958565,-0.054233881998959364 +99092,495.45999999958565,-0.05423379695798133 +99093,495.46499999958564,-0.05423371191169511 +99094,495.46999999958564,-0.054233626860099735 +99095,495.47499999958563,-0.05423354180319424 +99096,495.47999999958563,-0.054233456740977674 +99097,495.4849999995856,-0.054233371673449056 +99098,495.4899999995856,-0.05423328660060743 +99099,495.4949999995856,-0.054233201522451806 +99100,495.4999999995856,-0.054233116438981245 +99101,495.5049999995856,-0.05423303135019476 +99102,495.5099999995856,-0.05423294625609141 +99103,495.5149999995856,-0.0542328611566702 +99104,495.5199999995856,-0.05423277605193016 +99105,495.5249999995856,-0.05423269094187033 +99106,495.5299999995856,-0.05423260582648976 +99107,495.5349999995856,-0.05423252070578745 +99108,495.5399999995856,-0.054232435579762456 +99109,495.54499999958557,-0.054232350448413784 +99110,495.54999999958557,-0.054232265311740475 +99111,495.55499999958556,-0.054232180169741566 +99112,495.55999999958556,-0.05423209502241609 +99113,495.56499999958555,-0.054232009869763065 +99114,495.56999999958555,-0.054231924711781516 +99115,495.57499999958554,-0.054231839548470474 +99116,495.57999999958554,-0.05423175437982899 +99117,495.58499999958553,-0.05423166920585605 +99118,495.58999999958553,-0.05423158402655072 +99119,495.5949999995855,-0.054231498841912 +99120,495.5999999995855,-0.05423141365193894 +99121,495.6049999995855,-0.05423132845663055 +99122,495.6099999995855,-0.05423124325598586 +99123,495.6149999995855,-0.0542311580500039 +99124,495.6199999995855,-0.054231072838683704 +99125,495.6249999995855,-0.054230987622024274 +99126,495.6299999995855,-0.054230902400024664 +99127,495.6349999995855,-0.054230817172683875 +99128,495.6399999995855,-0.054230731940000935 +99129,495.6449999995855,-0.054230646701974895 +99130,495.6499999995855,-0.05423056145860474 +99131,495.65499999958547,-0.054230476209889515 +99132,495.65999999958547,-0.05423039095582825 +99133,495.66499999958546,-0.05423030569641996 +99134,495.66999999958546,-0.054230220431663666 +99135,495.67499999958545,-0.0542301351615584 +99136,495.67999999958545,-0.05423004988610316 +99137,495.68499999958544,-0.054229964605297 +99138,495.68999999958544,-0.05422987931913892 +99139,495.69499999958543,-0.054229794027627946 +99140,495.69999999958543,-0.05422970873076311 +99141,495.7049999995854,-0.05422962342854342 +99142,495.7099999995854,-0.0542295381209679 +99143,495.7149999995854,-0.05422945280803557 +99144,495.7199999995854,-0.05422936748974546 +99145,495.7249999995854,-0.054229282166096585 +99146,495.7299999995854,-0.054229196837087955 +99147,495.7349999995854,-0.0542291115027186 +99148,495.7399999995854,-0.054229026162987526 +99149,495.7449999995854,-0.054228940817893756 +99150,495.7499999995854,-0.05422885546743632 +99151,495.7549999995854,-0.05422877011161423 +99152,495.7599999995854,-0.0542286847504265 +99153,495.76499999958537,-0.05422859938387214 +99154,495.76999999958537,-0.05422851401195018 +99155,495.77499999958536,-0.05422842863465964 +99156,495.77999999958536,-0.05422834325199952 +99157,495.78499999958535,-0.05422825786396885 +99158,495.78999999958535,-0.054228172470566646 +99159,495.79499999958534,-0.05422808707179192 +99160,495.79999999958534,-0.05422800166764368 +99161,495.80499999958533,-0.054227916258120956 +99162,495.80999999958533,-0.054227830843222746 +99163,495.8149999995853,-0.05422774542294807 +99164,495.8199999995853,-0.05422765999729596 +99165,495.8249999995853,-0.0542275745662654 +99166,495.8299999995853,-0.05422748912985543 +99167,495.8349999995853,-0.05422740368806504 +99168,495.8399999995853,-0.05422731824089325 +99169,495.8449999995853,-0.054227232788339096 +99170,495.8499999995853,-0.054227147330401564 +99171,495.8549999995853,-0.05422706186707967 +99172,495.8599999995853,-0.05422697639837243 +99173,495.8649999995853,-0.05422689092427886 +99174,495.8699999995853,-0.054226805444797965 +99175,495.87499999958527,-0.05422671995992875 +99176,495.87999999958527,-0.05422663446967023 +99177,495.88499999958526,-0.054226548974021425 +99178,495.88999999958526,-0.05422646347298134 +99179,495.89499999958525,-0.05422637796654898 +99180,495.89999999958525,-0.05422629245472335 +99181,495.90499999958524,-0.05422620693750348 +99182,495.90999999958524,-0.054226121414888355 +99183,495.91499999958523,-0.05422603588687699 +99184,495.91999999958523,-0.054225950353468395 +99185,495.9249999995852,-0.05422586481466158 +99186,495.9299999995852,-0.05422577927045555 +99187,495.9349999995852,-0.05422569372084932 +99188,495.9399999995852,-0.05422560816584189 +99189,495.9449999995852,-0.054225522605432265 +99190,495.9499999995852,-0.05422543703961945 +99191,495.9549999995852,-0.05422535146840247 +99192,495.9599999995852,-0.0542252658917803 +99193,495.9649999995852,-0.054225180309751965 +99194,495.9699999995852,-0.05422509472231647 +99195,495.9749999995852,-0.05422500912947281 +99196,495.9799999995852,-0.05422492353122 +99197,495.98499999958517,-0.054224837927557036 +99198,495.98999999958517,-0.05422475231848293 +99199,495.99499999958516,-0.05422466670399668 +99200,495.99999999958516,-0.05422458108409728 +99201,496.00499999958515,-0.05422449545878375 +99202,496.00999999958515,-0.05422440982805509 +99203,496.01499999958514,-0.0542243241919103 +99204,496.01999999958514,-0.05422423855034838 +99205,496.02499999958513,-0.054224152903368336 +99206,496.02999999958513,-0.054224067250969156 +99207,496.0349999995851,-0.05422398159314986 +99208,496.0399999995851,-0.05422389592990945 +99209,496.0449999995851,-0.05422381026124691 +99210,496.0499999995851,-0.054223724587161244 +99211,496.0549999995851,-0.054223638907651465 +99212,496.0599999995851,-0.05422355322271655 +99213,496.0649999995851,-0.05422346753235552 +99214,496.0699999995851,-0.05422338183656736 +99215,496.0749999995851,-0.05422329613535108 +99216,496.0799999995851,-0.05422321042870567 +99217,496.0849999995851,-0.05422312471663014 +99218,496.0899999995851,-0.05422303899912347 +99219,496.09499999958507,-0.05422295327618467 +99220,496.09999999958507,-0.05422286754781274 +99221,496.10499999958506,-0.054222781814006665 +99222,496.10999999958506,-0.05422269607476545 +99223,496.11499999958505,-0.054222610330088086 +99224,496.11999999958505,-0.054222524579973584 +99225,496.12499999958504,-0.05422243882442092 +99226,496.12999999958504,-0.054222353063429096 +99227,496.13499999958503,-0.05422226729699712 +99228,496.13999999958503,-0.05422218152512396 +99229,496.144999999585,-0.05422209574780864 +99230,496.149999999585,-0.05422200996505013 +99231,496.154999999585,-0.05422192417684744 +99232,496.159999999585,-0.05422183838319956 +99233,496.164999999585,-0.05422175258410548 +99234,496.169999999585,-0.05422166677956419 +99235,496.174999999585,-0.05422158096957469 +99236,496.179999999585,-0.05422149515413598 +99237,496.184999999585,-0.05422140933324704 +99238,496.189999999585,-0.05422132350690686 +99239,496.194999999585,-0.05422123767511444 +99240,496.199999999585,-0.05422115183786876 +99241,496.20499999958497,-0.054221065995168814 +99242,496.20999999958497,-0.054220980147013605 +99243,496.21499999958496,-0.054220894293402114 +99244,496.21999999958496,-0.05422080843433332 +99245,496.22499999958495,-0.05422072256980624 +99246,496.22999999958495,-0.05422063669981985 +99247,496.23499999958494,-0.054220550824373125 +99248,496.23999999958494,-0.05422046494346506 +99249,496.24499999958493,-0.05422037905709466 +99250,496.24999999958493,-0.0542202931652609 +99251,496.2549999995849,-0.05422020726796276 +99252,496.2599999995849,-0.05422012136519925 +99253,496.2649999995849,-0.054220035456969344 +99254,496.2699999995849,-0.05421994954327202 +99255,496.2749999995849,-0.05421986362410628 +99256,496.2799999995849,-0.05421977769947111 +99257,496.2849999995849,-0.05421969176936548 +99258,496.2899999995849,-0.0542196058337884 +99259,496.2949999995849,-0.054219519892738835 +99260,496.2999999995849,-0.05421943394621578 +99261,496.3049999995849,-0.05421934799421821 +99262,496.3099999995849,-0.054219262036745125 +99263,496.31499999958487,-0.0542191760737955 +99264,496.31999999958487,-0.05421909010536831 +99265,496.32499999958486,-0.05421900413146256 +99266,496.32999999958486,-0.05421891815207721 +99267,496.33499999958485,-0.05421883216721126 +99268,496.33999999958485,-0.05421874617686369 +99269,496.34499999958484,-0.054218660181033475 +99270,496.34999999958484,-0.0542185741797196 +99271,496.35499999958483,-0.05421848817292104 +99272,496.35999999958483,-0.05421840216063679 +99273,496.3649999995848,-0.05421831614286582 +99274,496.3699999995848,-0.054218230119607115 +99275,496.3749999995848,-0.054218144090859656 +99276,496.3799999995848,-0.05421805805662243 +99277,496.3849999995848,-0.054217972016894406 +99278,496.3899999995848,-0.054217885971674575 +99279,496.3949999995848,-0.05421779992096191 +99280,496.3999999995848,-0.054217713864755386 +99281,496.4049999995848,-0.054217627803053975 +99282,496.4099999995848,-0.05421754173585667 +99283,496.4149999995848,-0.05421745566316244 +99284,496.4199999995848,-0.054217369584970275 +99285,496.42499999958477,-0.05421728350127913 +99286,496.42999999958477,-0.054217197412088 +99287,496.43499999958476,-0.054217111317395865 +99288,496.43999999958476,-0.05421702521720168 +99289,496.44499999958475,-0.05421693911150444 +99290,496.44999999958475,-0.05421685300030312 +99291,496.45499999958474,-0.05421676688359669 +99292,496.45999999958474,-0.054216680761384126 +99293,496.46499999958473,-0.0542165946336644 +99294,496.46999999958473,-0.05421650850043649 +99295,496.4749999995847,-0.05421642236169937 +99296,496.4799999995847,-0.054216336217452026 +99297,496.4849999995847,-0.05421625006769341 +99298,496.4899999995847,-0.0542161639124225 +99299,496.4949999995847,-0.05421607775163828 +99300,496.4999999995847,-0.054215991585339726 +99301,496.5049999995847,-0.05421590541352579 +99302,496.5099999995847,-0.05421581923619546 +99303,496.5149999995847,-0.05421573305334769 +99304,496.5199999995847,-0.05421564686498148 +99305,496.5249999995847,-0.05421556067109577 +99306,496.5299999995847,-0.05421547447168956 +99307,496.53499999958467,-0.05421538826676181 +99308,496.53999999958467,-0.054215302056311476 +99309,496.54499999958466,-0.05421521584033754 +99310,496.54999999958466,-0.054215129618838974 +99311,496.55499999958465,-0.05421504339181473 +99312,496.55999999958465,-0.054214957159263805 +99313,496.56499999958464,-0.054214870921185154 +99314,496.56999999958464,-0.05421478467757774 +99315,496.57499999958463,-0.05421469842844053 +99316,496.57999999958463,-0.05421461217377249 +99317,496.5849999995846,-0.05421452591357261 +99318,496.5899999995846,-0.05421443964783984 +99319,496.5949999995846,-0.05421435337657315 +99320,496.5999999995846,-0.05421426709977149 +99321,496.6049999995846,-0.054214180817433844 +99322,496.6099999995846,-0.05421409452955918 +99323,496.6149999995846,-0.05421400823614646 +99324,496.6199999995846,-0.05421392193719464 +99325,496.6249999995846,-0.0542138356327027 +99326,496.6299999995846,-0.054213749322669584 +99327,496.6349999995846,-0.054213663007094286 +99328,496.6399999995846,-0.05421357668597574 +99329,496.64499999958457,-0.054213490359312916 +99330,496.64999999958457,-0.05421340402710479 +99331,496.65499999958456,-0.05421331768935032 +99332,496.65999999958456,-0.05421323134604846 +99333,496.66499999958455,-0.05421314499719818 +99334,496.66999999958455,-0.05421305864279845 +99335,496.67499999958454,-0.054212972282848215 +99336,496.67999999958454,-0.054212885917346444 +99337,496.68499999958453,-0.05421279954629211 +99338,496.68999999958453,-0.05421271316968415 +99339,496.6949999995845,-0.05421262678752155 +99340,496.6999999995845,-0.054212540399803236 +99341,496.7049999995845,-0.054212454006528195 +99342,496.7099999995845,-0.05421236760769537 +99343,496.7149999995845,-0.05421228120330375 +99344,496.7199999995845,-0.05421219479335226 +99345,496.7249999995845,-0.05421210837783987 +99346,496.7299999995845,-0.05421202195676554 +99347,496.7349999995845,-0.05421193553012823 +99348,496.7399999995845,-0.0542118490979269 +99349,496.7449999995845,-0.054211762660160506 +99350,496.7499999995845,-0.054211676216828 +99351,496.75499999958447,-0.05421158976792833 +99352,496.75999999958447,-0.05421150331346047 +99353,496.76499999958446,-0.05421141685342337 +99354,496.76999999958446,-0.05421133038781599 +99355,496.77499999958445,-0.05421124391663727 +99356,496.77999999958445,-0.05421115743988618 +99357,496.78499999958444,-0.054211070957561676 +99358,496.78999999958444,-0.054210984469662694 +99359,496.79499999958443,-0.05421089797618821 +99360,496.79999999958443,-0.054210811477137154 +99361,496.8049999995844,-0.0542107249725085 +99362,496.8099999995844,-0.05421063846230119 +99363,496.8149999995844,-0.05421055194651419 +99364,496.8199999995844,-0.05421046542514644 +99365,496.8249999995844,-0.054210378898196895 +99366,496.8299999995844,-0.0542102923656645 +99367,496.8349999995844,-0.05421020582754822 +99368,496.8399999995844,-0.05421011928384701 +99369,496.8449999995844,-0.05421003273455979 +99370,496.8499999995844,-0.054209946179685546 +99371,496.8549999995844,-0.054209859619223214 +99372,496.8599999995844,-0.054209773053171734 +99373,496.86499999958437,-0.05420968648153007 +99374,496.86999999958437,-0.05420959990429716 +99375,496.87499999958436,-0.054209513321471975 +99376,496.87999999958436,-0.054209426733053435 +99377,496.88499999958435,-0.05420934013904051 +99378,496.88999999958435,-0.05420925353943213 +99379,496.89499999958434,-0.054209166934227254 +99380,496.89999999958434,-0.05420908032342483 +99381,496.90499999958433,-0.0542089937070238 +99382,496.90999999958433,-0.0542089070850231 +99383,496.9149999995843,-0.054208820457421696 +99384,496.9199999995843,-0.05420873382421853 +99385,496.9249999995843,-0.054208647185412545 +99386,496.9299999995843,-0.05420856054100268 +99387,496.9349999995843,-0.05420847389098789 +99388,496.9399999995843,-0.05420838723536711 +99389,496.9449999995843,-0.0542083005741393 +99390,496.9499999995843,-0.05420821390730339 +99391,496.9549999995843,-0.054208127234858336 +99392,496.9599999995843,-0.05420804055680307 +99393,496.9649999995843,-0.05420795387313653 +99394,496.9699999995843,-0.05420786718385767 +99395,496.97499999958427,-0.05420778048896544 +99396,496.97999999958427,-0.05420769378845877 +99397,496.98499999958426,-0.05420760708233661 +99398,496.98999999958426,-0.054207520370597895 +99399,496.99499999958425,-0.05420743365324155 +99400,496.99999999958425,-0.05420734693026654 +99401,497.00499999958424,-0.054207260201671804 +99402,497.00999999958424,-0.05420717346745627 +99403,497.01499999958423,-0.05420708672761889 +99404,497.01999999958423,-0.054206999982158596 +99405,497.0249999995842,-0.05420691323107433 +99406,497.0299999995842,-0.05420682647436502 +99407,497.0349999995842,-0.05420673971202962 +99408,497.0399999995842,-0.05420665294406706 +99409,497.0449999995842,-0.0542065661704763 +99410,497.0499999995842,-0.05420647939125624 +99411,497.0549999995842,-0.05420639260640584 +99412,497.0599999995842,-0.05420630581592404 +99413,497.0649999995842,-0.054206219019809765 +99414,497.0699999995842,-0.054206132218061955 +99415,497.0749999995842,-0.054206045410679554 +99416,497.0799999995842,-0.05420595859766148 +99417,497.08499999958417,-0.05420587177900669 +99418,497.08999999958417,-0.05420578495471409 +99419,497.09499999958416,-0.054205698124782646 +99420,497.09999999958416,-0.05420561128921128 +99421,497.10499999958415,-0.054205524447998914 +99422,497.10999999958415,-0.0542054376011445 +99423,497.11499999958414,-0.05420535074864696 +99424,497.11999999958414,-0.054205263890505236 +99425,497.12499999958413,-0.054205177026718246 +99426,497.12999999958413,-0.054205090157284946 +99427,497.1349999995841,-0.05420500328220425 +99428,497.1399999995841,-0.05420491640147509 +99429,497.1449999995841,-0.054204829515096406 +99430,497.1499999995841,-0.05420474262306712 +99431,497.1549999995841,-0.05420465572538618 +99432,497.1599999995841,-0.0542045688220525 +99433,497.1649999995841,-0.054204481913065 +99434,497.1699999995841,-0.05420439499842263 +99435,497.1749999995841,-0.05420430807812431 +99436,497.1799999995841,-0.05420422115216898 +99437,497.1849999995841,-0.05420413422055556 +99438,497.1899999995841,-0.05420404728328298 +99439,497.19499999958407,-0.05420396034035017 +99440,497.19999999958407,-0.05420387339175605 +99441,497.20499999958406,-0.05420378643749955 +99442,497.20999999958406,-0.05420369947757961 +99443,497.21499999958405,-0.05420361251199513 +99444,497.21999999958405,-0.05420352554074506 +99445,497.22499999958404,-0.05420343856382833 +99446,497.22999999958404,-0.054203351581243855 +99447,497.23499999958403,-0.054203264592990553 +99448,497.23999999958403,-0.05420317759906736 +99449,497.244999999584,-0.0542030905994732 +99450,497.249999999584,-0.05420300359420699 +99451,497.254999999584,-0.05420291658326767 +99452,497.259999999584,-0.05420282956665415 +99453,497.264999999584,-0.05420274254436535 +99454,497.269999999584,-0.0542026555164002 +99455,497.274999999584,-0.054202568482757625 +99456,497.279999999584,-0.054202481443436555 +99457,497.284999999584,-0.0542023943984359 +99458,497.289999999584,-0.05420230734775459 +99459,497.294999999584,-0.054202220291391524 +99460,497.299999999584,-0.054202133229345646 +99461,497.30499999958397,-0.054202046161615884 +99462,497.30999999958397,-0.054201959088201135 +99463,497.31499999958396,-0.054201872009100344 +99464,497.31999999958396,-0.05420178492431241 +99465,497.32499999958395,-0.05420169783383625 +99466,497.32999999958395,-0.054201610737670804 +99467,497.33499999958394,-0.05420152363581498 +99468,497.33999999958394,-0.05420143652826769 +99469,497.34499999958393,-0.05420134941502786 +99470,497.34999999958393,-0.05420126229609441 +99471,497.3549999995839,-0.05420117517146626 +99472,497.3599999995839,-0.05420108804114231 +99473,497.3649999995839,-0.05420100090512149 +99474,497.3699999995839,-0.054200913763402726 +99475,497.3749999995839,-0.05420082661598491 +99476,497.3799999995839,-0.05420073946286698 +99477,497.3849999995839,-0.05420065230404784 +99478,497.3899999995839,-0.054200565139526403 +99479,497.3949999995839,-0.05420047796930159 +99480,497.3999999995839,-0.05420039079337232 +99481,497.4049999995839,-0.0542003036117375 +99482,497.4099999995839,-0.05420021642439605 +99483,497.41499999958387,-0.054200129231346865 +99484,497.41999999958387,-0.05420004203258889 +99485,497.42499999958386,-0.05419995482812101 +99486,497.42999999958386,-0.05419986761794215 +99487,497.43499999958385,-0.05419978040205122 +99488,497.43999999958385,-0.05419969318044713 +99489,497.44499999958384,-0.054199605953128796 +99490,497.44999999958384,-0.05419951872009513 +99491,497.45499999958383,-0.05419943148134503 +99492,497.45999999958383,-0.054199344236877424 +99493,497.4649999995838,-0.05419925698669121 +99494,497.4699999995838,-0.0541991697307853 +99495,497.4749999995838,-0.05419908246915861 +99496,497.4799999995838,-0.05419899520181005 +99497,497.4849999995838,-0.05419890792873852 +99498,497.4899999995838,-0.054198820649942935 +99499,497.4949999995838,-0.0541987333654222 +99500,497.4999999995838,-0.05419864607517522 +99501,497.5049999995838,-0.05419855877920091 +99502,497.5099999995838,-0.05419847147749818 +99503,497.5149999995838,-0.05419838417006591 +99504,497.5199999995838,-0.05419829685690303 +99505,497.52499999958377,-0.05419820953800844 +99506,497.52999999958377,-0.05419812221338106 +99507,497.53499999958376,-0.05419803488301979 +99508,497.53999999958376,-0.05419794754692352 +99509,497.54499999958375,-0.05419786020509116 +99510,497.54999999958375,-0.05419777285752163 +99511,497.55499999958374,-0.054197685504213826 +99512,497.55999999958374,-0.054197598145166635 +99513,497.56499999958373,-0.054197510780378995 +99514,497.56999999958373,-0.054197423409849774 +99515,497.5749999995837,-0.054197336033577896 +99516,497.5799999995837,-0.05419724865156225 +99517,497.5849999995837,-0.054197161263801745 +99518,497.5899999995837,-0.054197073870295286 +99519,497.5949999995837,-0.05419698647104177 +99520,497.5999999995837,-0.054196899066040104 +99521,497.6049999995837,-0.05419681165528918 +99522,497.6099999995837,-0.05419672423878791 +99523,497.6149999995837,-0.05419663681653518 +99524,497.6199999995837,-0.05419654938852989 +99525,497.6249999995837,-0.05419646195477095 +99526,497.6299999995837,-0.05419637451525726 +99527,497.63499999958367,-0.054196287069987706 +99528,497.63999999958367,-0.0541961996189612 +99529,497.64499999958366,-0.05419611216217663 +99530,497.64999999958366,-0.0541960246996329 +99531,497.65499999958365,-0.054195937231328914 +99532,497.65999999958365,-0.05419584975726356 +99533,497.66499999958364,-0.054195762277435736 +99534,497.66999999958364,-0.054195674791844325 +99535,497.67499999958363,-0.05419558730048824 +99536,497.67999999958363,-0.054195499803366375 +99537,497.6849999995836,-0.05419541230047761 +99538,497.6899999995836,-0.05419532479182087 +99539,497.6949999995836,-0.054195237277395024 +99540,497.6999999995836,-0.054195149757198975 +99541,497.7049999995836,-0.05419506223123162 +99542,497.7099999995836,-0.05419497469949185 +99543,497.7149999995836,-0.05419488716197856 +99544,497.7199999995836,-0.05419479961869064 +99545,497.7249999995836,-0.05419471206962698 +99546,497.7299999995836,-0.05419462451478647 +99547,497.7349999995836,-0.05419453695416802 +99548,497.7399999995836,-0.0541944493877705 +99549,497.74499999958357,-0.05419436181559281 +99550,497.74999999958357,-0.05419427423763385 +99551,497.75499999958356,-0.0541941866538925 +99552,497.75999999958356,-0.05419409906436765 +99553,497.76499999958355,-0.054194011469058195 +99554,497.76999999958355,-0.054193923867963026 +99555,497.77499999958354,-0.05419383626108102 +99556,497.77999999958354,-0.054193748648411075 +99557,497.78499999958353,-0.05419366102995209 +99558,497.78999999958353,-0.054193573405702924 +99559,497.7949999995835,-0.054193485775662485 +99560,497.7999999995835,-0.05419339813982965 +99561,497.8049999995835,-0.054193310498203334 +99562,497.8099999995835,-0.054193222850782395 +99563,497.8149999995835,-0.054193135197565724 +99564,497.8199999995835,-0.05419304753855221 +99565,497.8249999995835,-0.054192959873740745 +99566,497.8299999995835,-0.05419287220313021 +99567,497.8349999995835,-0.05419278452671948 +99568,497.8399999995835,-0.054192696844507456 +99569,497.8449999995835,-0.05419260915649302 +99570,497.8499999995835,-0.054192521462675045 +99571,497.85499999958347,-0.054192433763052425 +99572,497.85999999958347,-0.05419234605762404 +99573,497.86499999958346,-0.05419225834638877 +99574,497.86999999958346,-0.0541921706293455 +99575,497.87499999958345,-0.05419208290649311 +99576,497.87999999958345,-0.05419199517783049 +99577,497.88499999958344,-0.05419190744335653 +99578,497.88999999958344,-0.054191819703070084 +99579,497.89499999958343,-0.054191731956970045 +99580,497.89999999958343,-0.054191644205055296 +99581,497.9049999995834,-0.054191556447324714 +99582,497.9099999995834,-0.05419146868377719 +99583,497.9149999995834,-0.0541913809144116 +99584,497.9199999995834,-0.054191293139226805 +99585,497.9249999995834,-0.054191205358221695 +99586,497.9299999995834,-0.05419111757139516 +99587,497.9349999995834,-0.054191029778746055 +99588,497.9399999995834,-0.05419094198027328 +99589,497.9449999995834,-0.0541908541759757 +99590,497.9499999995834,-0.0541907663658522 +99591,497.9549999995834,-0.054190678549901665 +99592,497.9599999995834,-0.05419059072812294 +99593,497.96499999958337,-0.05419050290051493 +99594,497.96999999958337,-0.0541904150670765 +99595,497.97499999958336,-0.054190327227806534 +99596,497.97999999958336,-0.0541902393827039 +99597,497.98499999958335,-0.054190151531767455 +99598,497.98999999958335,-0.0541900636749961 +99599,497.99499999958334,-0.0541899758123887 +99600,497.99999999958334,-0.05418988794394413 +99601,498.00499999958333,-0.05418980006966126 +99602,498.00999999958333,-0.05418971218953897 +99603,498.0149999995833,-0.05418962430357613 +99604,498.0199999995833,-0.0541895364117716 +99605,498.0249999995833,-0.054189448514124265 +99606,498.0299999995833,-0.05418936061063299 +99607,498.0349999995833,-0.05418927270129664 +99608,498.0399999995833,-0.05418918478611411 +99609,498.0449999995833,-0.05418909686508425 +99610,498.0499999995833,-0.05418900893820595 +99611,498.0549999995833,-0.05418892100547805 +99612,498.0599999995833,-0.054188833066899436 +99613,498.0649999995833,-0.054188745122468976 +99614,498.0699999995833,-0.05418865717218553 +99615,498.07499999958327,-0.054188569216047984 +99616,498.07999999958326,-0.05418848125405519 +99617,498.08499999958326,-0.05418839328620604 +99618,498.08999999958326,-0.054188305312499366 +99619,498.09499999958325,-0.05418821733293406 +99620,498.09999999958325,-0.054188129347508975 +99621,498.10499999958324,-0.054188041356222995 +99622,498.10999999958324,-0.05418795335907497 +99623,498.11499999958323,-0.05418786535606377 +99624,498.11999999958323,-0.05418777734718826 +99625,498.1249999995832,-0.05418768933244731 +99626,498.1299999995832,-0.05418760131183977 +99627,498.1349999995832,-0.05418751328536453 +99628,498.1399999995832,-0.054187425253020435 +99629,498.1449999995832,-0.05418733721480635 +99630,498.1499999995832,-0.05418724917072113 +99631,498.1549999995832,-0.05418716112076366 +99632,498.1599999995832,-0.05418707306493279 +99633,498.1649999995832,-0.05418698500322738 +99634,498.1699999995832,-0.05418689693564629 +99635,498.1749999995832,-0.054186808862188386 +99636,498.1799999995832,-0.054186720782852534 +99637,498.18499999958317,-0.05418663269763758 +99638,498.18999999958316,-0.054186544606542396 +99639,498.19499999958316,-0.05418645650956584 +99640,498.19999999958316,-0.05418636840670678 +99641,498.20499999958315,-0.05418628029796406 +99642,498.20999999958315,-0.05418619218333655 +99643,498.21499999958314,-0.05418610406282309 +99644,498.21999999958314,-0.05418601593642256 +99645,498.22499999958313,-0.05418592780413381 +99646,498.22999999958313,-0.0541858396659557 +99647,498.2349999995831,-0.05418575152188707 +99648,498.2399999995831,-0.05418566337192681 +99649,498.2449999995831,-0.05418557521607374 +99650,498.2499999995831,-0.05418548705432674 +99651,498.2549999995831,-0.054185398886684666 +99652,498.2599999995831,-0.05418531071314637 +99653,498.2649999995831,-0.054185222533710685 +99654,498.2699999995831,-0.0541851343483765 +99655,498.2749999995831,-0.05418504615714264 +99656,498.2799999995831,-0.05418495796000798 +99657,498.2849999995831,-0.054184869756971364 +99658,498.2899999995831,-0.05418478154803165 +99659,498.29499999958307,-0.054184693333187685 +99660,498.29999999958306,-0.05418460511243832 +99661,498.30499999958306,-0.054184516885782415 +99662,498.30999999958306,-0.05418442865321882 +99663,498.31499999958305,-0.054184340414746374 +99664,498.31999999958305,-0.05418425217036395 +99665,498.32499999958304,-0.054184163920070375 +99666,498.32999999958304,-0.05418407566386452 +99667,498.33499999958303,-0.05418398740174523 +99668,498.33999999958303,-0.05418389913371135 +99669,498.344999999583,-0.05418381085976173 +99670,498.349999999583,-0.05418372257989522 +99671,498.354999999583,-0.05418363429411066 +99672,498.359999999583,-0.054183546002406914 +99673,498.364999999583,-0.05418345770478283 +99674,498.369999999583,-0.05418336940123723 +99675,498.374999999583,-0.05418328109176899 +99676,498.379999999583,-0.05418319277637694 +99677,498.384999999583,-0.05418310445505994 +99678,498.389999999583,-0.05418301612781681 +99679,498.394999999583,-0.05418292779464643 +99680,498.399999999583,-0.054182839455547624 +99681,498.40499999958297,-0.05418275111051925 +99682,498.40999999958296,-0.05418266275956013 +99683,498.41499999958296,-0.05418257440266913 +99684,498.41999999958296,-0.05418248603984509 +99685,498.42499999958295,-0.054182397671086846 +99686,498.42999999958295,-0.05418230929639324 +99687,498.43499999958294,-0.05418222091576313 +99688,498.43999999958294,-0.05418213252919534 +99689,498.44499999958293,-0.054182044136688735 +99690,498.44999999958293,-0.05418195573824214 +99691,498.4549999995829,-0.05418186733385438 +99692,498.4599999995829,-0.05418177892352433 +99693,498.4649999995829,-0.05418169050725082 +99694,498.4699999995829,-0.05418160208503268 +99695,498.4749999995829,-0.05418151365686876 +99696,498.4799999995829,-0.054181425222757894 +99697,498.4849999995829,-0.05418133678269892 +99698,498.4899999995829,-0.05418124833669067 +99699,498.4949999995829,-0.054181159884731996 +99700,498.4999999995829,-0.054181071426821735 +99701,498.5049999995829,-0.05418098296295872 +99702,498.5099999995829,-0.05418089449314179 +99703,498.51499999958287,-0.05418080601736979 +99704,498.51999999958286,-0.05418071753564155 +99705,498.52499999958286,-0.054180629047955904 +99706,498.52999999958286,-0.05418054055431169 +99707,498.53499999958285,-0.05418045205470774 +99708,498.53999999958285,-0.0541803635491429 +99709,498.54499999958284,-0.05418027503761599 +99710,498.54999999958284,-0.05418018652012584 +99711,498.55499999958283,-0.05418009799667131 +99712,498.55999999958283,-0.05418000946725121 +99713,498.5649999995828,-0.05417992093186439 +99714,498.5699999995828,-0.05417983239050968 +99715,498.5749999995828,-0.05417974384318589 +99716,498.5799999995828,-0.05417965528989188 +99717,498.5849999995828,-0.054179566730626474 +99718,498.5899999995828,-0.054179478165388505 +99719,498.5949999995828,-0.0541793895941768 +99720,498.5999999995828,-0.05417930101699018 +99721,498.6049999995828,-0.054179212433827506 +99722,498.6099999995828,-0.054179123844687566 +99723,498.6149999995828,-0.05417903524956923 +99724,498.6199999995828,-0.054178946648471296 +99725,498.62499999958277,-0.054178858041392615 +99726,498.62999999958276,-0.054178769428332 +99727,498.63499999958276,-0.054178680809288296 +99728,498.63999999958276,-0.05417859218426033 +99729,498.64499999958275,-0.054178503553246916 +99730,498.64999999958275,-0.05417841491624688 +99731,498.65499999958274,-0.05417832627325906 +99732,498.65999999958274,-0.054178237624282276 +99733,498.66499999958273,-0.05417814896931536 +99734,498.6699999995827,-0.05417806030835713 +99735,498.6749999995827,-0.05417797164140642 +99736,498.6799999995827,-0.05417788296846204 +99737,498.6849999995827,-0.05417779428952284 +99738,498.6899999995827,-0.054177705604587616 +99739,498.6949999995827,-0.05417761691365521 +99740,498.6999999995827,-0.05417752821672444 +99741,498.7049999995827,-0.054177439513794126 +99742,498.7099999995827,-0.0541773508048631 +99743,498.7149999995827,-0.054177262089930185 +99744,498.7199999995827,-0.05417717336899419 +99745,498.7249999995827,-0.054177084642053945 +99746,498.7299999995827,-0.05417699590910827 +99747,498.73499999958267,-0.05417690717015598 +99748,498.73999999958266,-0.05417681842519592 +99749,498.74499999958266,-0.054176729674226876 +99750,498.74999999958266,-0.054176640917247686 +99751,498.75499999958265,-0.054176552154257165 +99752,498.75999999958265,-0.05417646338525414 +99753,498.76499999958264,-0.054176374610237416 +99754,498.76999999958264,-0.05417628582920583 +99755,498.77499999958263,-0.05417619704215818 +99756,498.7799999995826,-0.0541761082490933 +99757,498.7849999995826,-0.05417601945001001 +99758,498.7899999995826,-0.0541759306449071 +99759,498.7949999995826,-0.05417584183378341 +99760,498.7999999995826,-0.05417575301663774 +99761,498.8049999995826,-0.054175664193468934 +99762,498.8099999995826,-0.05417557536427577 +99763,498.8149999995826,-0.0541754865290571 +99764,498.8199999995826,-0.05417539768781171 +99765,498.8249999995826,-0.054175308840538436 +99766,498.8299999995826,-0.054175219987236074 +99767,498.8349999995826,-0.05417513112790344 +99768,498.8399999995826,-0.054175042262539365 +99769,498.84499999958257,-0.05417495339114264 +99770,498.84999999958256,-0.05417486451371208 +99771,498.85499999958256,-0.054174775630246516 +99772,498.85999999958256,-0.05417468674074475 +99773,498.86499999958255,-0.054174597845205584 +99774,498.86999999958255,-0.05417450894362783 +99775,498.87499999958254,-0.05417442003601031 +99776,498.87999999958254,-0.054174331122351815 +99777,498.88499999958253,-0.054174242202651185 +99778,498.8899999995825,-0.05417415327690721 +99779,498.8949999995825,-0.0541740643451187 +99780,498.8999999995825,-0.05417397540728446 +99781,498.9049999995825,-0.054173886463403306 +99782,498.9099999995825,-0.054173797513474044 +99783,498.9149999995825,-0.054173708557495474 +99784,498.9199999995825,-0.05417361959546642 +99785,498.9249999995825,-0.054173530627385676 +99786,498.9299999995825,-0.05417344165325206 +99787,498.9349999995825,-0.054173352673064355 +99788,498.9399999995825,-0.054173263686821384 +99789,498.9449999995825,-0.054173174694521965 +99790,498.9499999995825,-0.05417308569616488 +99791,498.95499999958247,-0.05417299669174894 +99792,498.95999999958246,-0.05417290768127295 +99793,498.96499999958246,-0.054172818664735715 +99794,498.96999999958246,-0.054172729642136035 +99795,498.97499999958245,-0.054172640613472725 +99796,498.97999999958245,-0.05417255157874457 +99797,498.98499999958244,-0.0541724625379504 +99798,498.98999999958244,-0.05417237349108898 +99799,498.99499999958243,-0.05417228443815914 +99800,498.9999999995824,-0.05417219537915966 +99801,499.0049999995824,-0.05417210631408936 +99802,499.0099999995824,-0.05417201724294703 +99803,499.0149999995824,-0.054171928165731485 +99804,499.0199999995824,-0.05417183908244151 +99805,499.0249999995824,-0.05417174999307589 +99806,499.0299999995824,-0.05417166089763346 +99807,499.0349999995824,-0.05417157179611299 +99808,499.0399999995824,-0.05417148268851328 +99809,499.0449999995824,-0.054171393574833145 +99810,499.0499999995824,-0.05417130445507138 +99811,499.0549999995824,-0.05417121532922677 +99812,499.0599999995824,-0.05417112619729811 +99813,499.06499999958237,-0.0541710370592842 +99814,499.06999999958236,-0.05417094791518385 +99815,499.07499999958236,-0.05417085876499584 +99816,499.07999999958236,-0.05417076960871897 +99817,499.08499999958235,-0.05417068044635204 +99818,499.08999999958235,-0.05417059127789384 +99819,499.09499999958234,-0.054170502103343156 +99820,499.09999999958234,-0.05417041292269879 +99821,499.10499999958233,-0.05417032373595954 +99822,499.1099999995823,-0.054170234543124196 +99823,499.1149999995823,-0.05417014534419154 +99824,499.1199999995823,-0.05417005613916038 +99825,499.1249999995823,-0.054169966928029493 +99826,499.1299999995823,-0.054169877710797676 +99827,499.1349999995823,-0.05416978848746373 +99828,499.1399999995823,-0.05416969925802644 +99829,499.1449999995823,-0.05416961002248459 +99830,499.1499999995823,-0.05416952078083696 +99831,499.1549999995823,-0.05416943153308236 +99832,499.1599999995823,-0.05416934227921958 +99833,499.1649999995823,-0.054169253019247396 +99834,499.1699999995823,-0.0541691637531646 +99835,499.17499999958227,-0.054169074480969984 +99836,499.17999999958226,-0.05416898520266233 +99837,499.18499999958226,-0.05416889591824042 +99838,499.18999999958226,-0.05416880662770306 +99839,499.19499999958225,-0.05416871733104903 +99840,499.19999999958225,-0.0541686280282771 +99841,499.20499999958224,-0.05416853871938607 +99842,499.20999999958224,-0.054168449404374715 +99843,499.21499999958223,-0.054168360083241836 +99844,499.2199999995822,-0.054168270755986216 +99845,499.2249999995822,-0.054168181422606626 +99846,499.2299999995822,-0.05416809208310185 +99847,499.2349999995822,-0.05416800273747069 +99848,499.2399999995822,-0.0541679133857119 +99849,499.2449999995822,-0.05416782402782428 +99850,499.2499999995822,-0.05416773466380663 +99851,499.2549999995822,-0.0541676452936577 +99852,499.2599999995822,-0.05416755591737629 +99853,499.2649999995822,-0.05416746653496118 +99854,499.2699999995822,-0.05416737714641114 +99855,499.2749999995822,-0.054167287751724955 +99856,499.2799999995822,-0.05416719835090142 +99857,499.28499999958217,-0.054167108943939286 +99858,499.28999999958216,-0.05416701953083735 +99859,499.29499999958216,-0.054166930111594395 +99860,499.29999999958216,-0.05416684068620919 +99861,499.30499999958215,-0.054166751254680505 +99862,499.30999999958215,-0.05416666181700714 +99863,499.31499999958214,-0.054166572373187866 +99864,499.31999999958214,-0.05416648292322145 +99865,499.32499999958213,-0.05416639346710667 +99866,499.3299999995821,-0.05416630400484232 +99867,499.3349999995821,-0.05416621453642715 +99868,499.3399999995821,-0.05416612506185994 +99869,499.3449999995821,-0.054166035581139485 +99870,499.3499999995821,-0.05416594609426454 +99871,499.3549999995821,-0.05416585660123389 +99872,499.3599999995821,-0.05416576710204629 +99873,499.3649999995821,-0.05416567759670053 +99874,499.3699999995821,-0.05416558808519539 +99875,499.3749999995821,-0.05416549856752964 +99876,499.3799999995821,-0.05416540904370204 +99877,499.3849999995821,-0.05416531951371137 +99878,499.3899999995821,-0.05416522997755639 +99879,499.39499999958207,-0.05416514043523588 +99880,499.39999999958206,-0.05416505088674862 +99881,499.40499999958206,-0.05416496133209337 +99882,499.40999999958206,-0.05416487177126889 +99883,499.41499999958205,-0.054164782204273974 +99884,499.41999999958205,-0.054164692631107375 +99885,499.42499999958204,-0.05416460305176786 +99886,499.42999999958204,-0.054164513466254206 +99887,499.43499999958203,-0.054164423874565173 +99888,499.439999999582,-0.05416433427669953 +99889,499.444999999582,-0.054164244672656056 +99890,499.449999999582,-0.05416415506243351 +99891,499.454999999582,-0.05416406544603065 +99892,499.459999999582,-0.05416397582344625 +99893,499.464999999582,-0.05416388619467908 +99894,499.469999999582,-0.0541637965597279 +99895,499.474999999582,-0.05416370691859147 +99896,499.479999999582,-0.05416361727126857 +99897,499.484999999582,-0.05416352761775794 +99898,499.489999999582,-0.05416343795805837 +99899,499.494999999582,-0.05416334829216861 +99900,499.499999999582,-0.05416325862008742 +99901,499.50499999958197,-0.05416316894181357 +99902,499.50999999958196,-0.054163079257345814 +99903,499.51499999958196,-0.054162989566682924 +99904,499.51999999958196,-0.05416289986982365 +99905,499.52499999958195,-0.05416281016676676 +99906,499.52999999958195,-0.05416272045751101 +99907,499.53499999958194,-0.05416263074205517 +99908,499.53999999958194,-0.054162541020398 +99909,499.54499999958193,-0.05416245129253824 +99910,499.5499999995819,-0.05416236155847466 +99911,499.5549999995819,-0.05416227181820602 +99912,499.5599999995819,-0.05416218207173108 +99913,499.5649999995819,-0.054162092319048595 +99914,499.5699999995819,-0.05416200256015733 +99915,499.5749999995819,-0.05416191279505604 +99916,499.5799999995819,-0.054161823023743484 +99917,499.5849999995819,-0.0541617332462184 +99918,499.5899999995819,-0.054161643462479564 +99919,499.5949999995819,-0.05416155367252572 +99920,499.5999999995819,-0.05416146387635561 +99921,499.6049999995819,-0.05416137407396802 +99922,499.6099999995819,-0.05416128426536169 +99923,499.61499999958187,-0.054161194450535376 +99924,499.61999999958186,-0.054161104629487825 +99925,499.62499999958186,-0.05416101480221779 +99926,499.62999999958186,-0.05416092496872403 +99927,499.63499999958185,-0.05416083512900531 +99928,499.63999999958185,-0.05416074528306035 +99929,499.64499999958184,-0.05416065543088793 +99930,499.64999999958184,-0.05416056557248679 +99931,499.65499999958183,-0.05416047570785567 +99932,499.6599999995818,-0.05416038583699333 +99933,499.6649999995818,-0.05416029595989852 +99934,499.6699999995818,-0.05416020607657001 +99935,499.6749999995818,-0.05416011618700651 +99936,499.6799999995818,-0.054160026291206795 +99937,499.6849999995818,-0.054159936389169605 +99938,499.6899999995818,-0.05415984648089369 +99939,499.6949999995818,-0.05415975656637781 +99940,499.6999999995818,-0.05415966664562069 +99941,499.7049999995818,-0.054159576718621094 +99942,499.7099999995818,-0.05415948678537777 +99943,499.7149999995818,-0.05415939684588943 +99944,499.7199999995818,-0.05415930690015486 +99945,499.72499999958177,-0.054159216948172786 +99946,499.72999999958176,-0.05415912698994196 +99947,499.73499999958176,-0.05415903702546112 +99948,499.73999999958176,-0.05415894705472901 +99949,499.74499999958175,-0.054158857077744385 +99950,499.74999999958175,-0.054158767094505976 +99951,499.75499999958174,-0.05415867710501253 +99952,499.75999999958174,-0.0541585871092628 +99953,499.76499999958173,-0.05415849710725552 +99954,499.7699999995817,-0.05415840709898941 +99955,499.7749999995817,-0.05415831708446325 +99956,499.7799999995817,-0.054158227063675755 +99957,499.7849999995817,-0.05415813703662566 +99958,499.7899999995817,-0.05415804700331173 +99959,499.7949999995817,-0.05415795696373268 +99960,499.7999999995817,-0.054157866917887265 +99961,499.8049999995817,-0.05415777686577423 +99962,499.8099999995817,-0.054157686807392295 +99963,499.8149999995817,-0.05415759674274021 +99964,499.8199999995817,-0.05415750667181671 +99965,499.8249999995817,-0.054157416594620526 +99966,499.8299999995817,-0.054157326511150405 +99967,499.83499999958167,-0.054157236421405075 +99968,499.83999999958166,-0.05415714632538328 +99969,499.84499999958166,-0.05415705622308374 +99970,499.84999999958166,-0.05415696611450521 +99971,499.85499999958165,-0.054156875999646414 +99972,499.85999999958165,-0.0541567858785061 +99973,499.86499999958164,-0.05415669575108298 +99974,499.86999999958164,-0.05415660561737581 +99975,499.87499999958163,-0.054156515477383295 +99976,499.8799999995816,-0.05415642533110419 +99977,499.8849999995816,-0.05415633517853722 +99978,499.8899999995816,-0.054156245019681123 +99979,499.8949999995816,-0.05415615485453462 +99980,499.8999999995816,-0.05415606468309646 +99981,499.9049999995816,-0.05415597450536536 +99982,499.9099999995816,-0.05415588432134005 +99983,499.9149999995816,-0.054155794131019265 +99984,499.9199999995816,-0.05415570393440173 +99985,499.9249999995816,-0.05415561373148618 +99986,499.9299999995816,-0.054155523522271355 +99987,499.9349999995816,-0.05415543330675596 +99988,499.9399999995816,-0.054155343084938724 +99989,499.94499999958157,-0.05415525285681838 +99990,499.94999999958156,-0.054155162622393664 +99991,499.95499999958156,-0.054155072381663304 +99992,499.95999999958156,-0.05415498213462601 +99993,499.96499999958155,-0.05415489188128052 +99994,499.96999999958155,-0.05415480162162555 +99995,499.97499999958154,-0.05415471135565984 +99996,499.97999999958154,-0.054154621083382114 +99997,499.98499999958153,-0.05415453080479108 +99998,499.9899999995815,-0.05415444051988547 +99999,499.9949999995815,-0.054154350228664015 +100000,499.9999999995815,-0.05415425993112544 +100001,500.0049999995815,-0.05415416962726845 +100002,500.0099999995815,-0.05415407931709177 +100003,500.0149999995815,-0.054153989000594135 +100004,500.0199999995815,-0.054153898677774266 +100005,500.0249999995815,-0.05415380834863088 +100006,500.0299999995815,-0.05415371801316269 +100007,500.0349999995815,-0.05415362767136843 +100008,500.0399999995815,-0.05415353732324681 +100009,500.0449999995815,-0.054153446968796544 +100010,500.0499999995815,-0.054153356608016366 +100011,500.05499999958147,-0.054153266240904996 +100012,500.05999999958146,-0.05415317586746114 +100013,500.06499999958146,-0.05415308548768353 +100014,500.06999999958146,-0.05415299510157085 +100015,500.07499999958145,-0.05415290470912186 +100016,500.07999999958145,-0.054152814310335244 +100017,500.08499999958144,-0.05415272390520974 +100018,500.08999999958144,-0.054152633493744065 +100019,500.09499999958143,-0.05415254307593691 +100020,500.0999999995814,-0.054152452651787 +100021,500.1049999995814,-0.05415236222129306 +100022,500.1099999995814,-0.0541522717844538 +100023,500.1149999995814,-0.05415218134126794 +100024,500.1199999995814,-0.05415209089173418 +100025,500.1249999995814,-0.054152000435851236 +100026,500.1299999995814,-0.05415190997361784 +100027,500.1349999995814,-0.05415181950503268 +100028,500.1399999995814,-0.05415172903009447 +100029,500.1449999995814,-0.05415163854880193 +100030,500.1499999995814,-0.05415154806115376 +100031,500.1549999995814,-0.05415145756714868 +100032,500.1599999995814,-0.05415136706678541 +100033,500.16499999958137,-0.05415127656006264 +100034,500.16999999958136,-0.05415118604697909 +100035,500.17499999958136,-0.05415109552753347 +100036,500.17999999958136,-0.054151005001724484 +100037,500.18499999958135,-0.054150914469550844 +100038,500.18999999958135,-0.05415082393101125 +100039,500.19499999958134,-0.054150733386104405 +100040,500.19999999958134,-0.05415064283482903 +100041,500.20499999958133,-0.054150552277183836 +100042,500.2099999995813,-0.054150461713167515 +100043,500.2149999995813,-0.05415037114277877 +100044,500.2199999995813,-0.054150280566016305 +100045,500.2249999995813,-0.05415018998287884 +100046,500.2299999995813,-0.054150099393365084 +100047,500.2349999995813,-0.05415000879747372 +100048,500.2399999995813,-0.054149918195203456 +100049,500.2449999995813,-0.054149827586553005 +100050,500.2499999995813,-0.05414973697152107 +100051,500.2549999995813,-0.054149646350106335 +100052,500.2599999995813,-0.05414955572230753 +100053,500.2649999995813,-0.05414946508812332 +100054,500.2699999995813,-0.05414937444755243 +100055,500.27499999958127,-0.05414928380059356 +100056,500.27999999958126,-0.054149193147245415 +100057,500.28499999958126,-0.054149102487506685 +100058,500.28999999958125,-0.05414901182137607 +100059,500.29499999958125,-0.054148921148852266 +100060,500.29999999958125,-0.05414883046993398 +100061,500.30499999958124,-0.054148739784619905 +100062,500.30999999958124,-0.05414864909290874 +100063,500.31499999958123,-0.054148558394799186 +100064,500.3199999995812,-0.054148467690289935 +100065,500.3249999995812,-0.05414837697937969 +100066,500.3299999995812,-0.05414828626206715 +100067,500.3349999995812,-0.05414819553835099 +100068,500.3399999995812,-0.054148104808229916 +100069,500.3449999995812,-0.05414801407170263 +100070,500.3499999995812,-0.05414792332876782 +100071,500.3549999995812,-0.054147832579424175 +100072,500.3599999995812,-0.0541477418236704 +100073,500.3649999995812,-0.05414765106150519 +100074,500.3699999995812,-0.05414756029292723 +100075,500.3749999995812,-0.05414746951793519 +100076,500.3799999995812,-0.0541473787365278 +100077,500.38499999958117,-0.054147287948703736 +100078,500.38999999958116,-0.054147197154461695 +100079,500.39499999958116,-0.05414710635380036 +100080,500.39999999958115,-0.054147015546718406 +100081,500.40499999958115,-0.05414692473321455 +100082,500.40999999958115,-0.054146833913287465 +100083,500.41499999958114,-0.05414674308693586 +100084,500.41999999958114,-0.0541466522541584 +100085,500.42499999958113,-0.05414656141495378 +100086,500.4299999995811,-0.0541464705693207 +100087,500.4349999995811,-0.05414637971725783 +100088,500.4399999995811,-0.054146288858763866 +100089,500.4449999995811,-0.054146197993837505 +100090,500.4499999995811,-0.054146107122477416 +100091,500.4549999995811,-0.054146016244682287 +100092,500.4599999995811,-0.054145925360450806 +100093,500.4649999995811,-0.05414583446978166 +100094,500.4699999995811,-0.05414574357267352 +100095,500.4749999995811,-0.0541456526691251 +100096,500.4799999995811,-0.05414556175913505 +100097,500.4849999995811,-0.05414547084270207 +100098,500.4899999995811,-0.054145379919824835 +100099,500.49499999958107,-0.05414528899050204 +100100,500.49999999958106,-0.05414519805473236 +100101,500.50499999958106,-0.05414510711251448 +100102,500.50999999958105,-0.05414501616384708 +100103,500.51499999958105,-0.05414492520872882 +100104,500.51999999958105,-0.054144834247158415 +100105,500.52499999958104,-0.054144743279134516 +100106,500.52999999958104,-0.05414465230465582 +100107,500.53499999958103,-0.054144561323720995 +100108,500.539999999581,-0.05414447033632872 +100109,500.544999999581,-0.05414437934247768 +100110,500.549999999581,-0.05414428834216655 +100111,500.554999999581,-0.05414419733539401 +100112,500.559999999581,-0.054144106322158735 +100113,500.564999999581,-0.054144015302459395 +100114,500.569999999581,-0.05414392427629467 +100115,500.574999999581,-0.05414383324366324 +100116,500.579999999581,-0.05414374220456376 +100117,500.584999999581,-0.05414365115899494 +100118,500.589999999581,-0.05414356010695544 +100119,500.594999999581,-0.05414346904844391 +100120,500.599999999581,-0.05414337798345905 +100121,500.60499999958097,-0.05414328691199952 +100122,500.60999999958096,-0.054143195834064003 +100123,500.61499999958096,-0.05414310474965117 +100124,500.61999999958095,-0.05414301365875969 +100125,500.62499999958095,-0.05414292256138822 +100126,500.62999999958095,-0.05414283145753545 +100127,500.63499999958094,-0.05414274034720005 +100128,500.63999999958094,-0.054142649230380674 +100129,500.64499999958093,-0.054142558107076 +100130,500.6499999995809,-0.0541424669772847 +100131,500.6549999995809,-0.054142375841005445 +100132,500.6599999995809,-0.054142284698236905 +100133,500.6649999995809,-0.05414219354897774 +100134,500.6699999995809,-0.05414210239322662 +100135,500.6749999995809,-0.05414201123098221 +100136,500.6799999995809,-0.05414192006224317 +100137,500.6849999995809,-0.05414182888700819 +100138,500.6899999995809,-0.0541417377052759 +100139,500.6949999995809,-0.05414164651704499 +100140,500.6999999995809,-0.054141555322314135 +100141,500.7049999995809,-0.05414146412108197 +100142,500.7099999995809,-0.05414137291334717 +100143,500.71499999958087,-0.0541412816991084 +100144,500.71999999958086,-0.05414119047836434 +100145,500.72499999958086,-0.05414109925111363 +100146,500.72999999958085,-0.05414100801735495 +100147,500.73499999958085,-0.05414091677708695 +100148,500.73999999958085,-0.05414082553030828 +100149,500.74499999958084,-0.05414073427701763 +100150,500.74999999958084,-0.054140643017213635 +100151,500.75499999958083,-0.05414055175089497 +100152,500.7599999995808,-0.054140460478060294 +100153,500.7649999995808,-0.05414036919870826 +100154,500.7699999995808,-0.05414027791283752 +100155,500.7749999995808,-0.05414018662044674 +100156,500.7799999995808,-0.05414009532153459 +100157,500.7849999995808,-0.05414000401609971 +100158,500.7899999995808,-0.05413991270414077 +100159,500.7949999995808,-0.05413982138565642 +100160,500.7999999995808,-0.054139730060645305 +100161,500.8049999995808,-0.0541396387291061 +100162,500.8099999995808,-0.054139547391037456 +100163,500.8149999995808,-0.05413945604643803 +100164,500.8199999995808,-0.05413936469530647 +100165,500.82499999958077,-0.05413927333764143 +100166,500.82999999958076,-0.05413918197344155 +100167,500.83499999958076,-0.05413909060270551 +100168,500.83999999958075,-0.054138999225431944 +100169,500.84499999958075,-0.05413890784161953 +100170,500.84999999958075,-0.05413881645126689 +100171,500.85499999958074,-0.054138725054372686 +100172,500.85999999958074,-0.054138633650935575 +100173,500.86499999958073,-0.0541385422409542 +100174,500.8699999995807,-0.05413845082442721 +100175,500.8749999995807,-0.05413835940135326 +100176,500.8799999995807,-0.054138267971731 +100177,500.8849999995807,-0.05413817653555907 +100178,500.8899999995807,-0.05413808509283614 +100179,500.8949999995807,-0.05413799364356083 +100180,500.8999999995807,-0.05413790218773181 +100181,500.9049999995807,-0.05413781072534772 +100182,500.9099999995807,-0.054137719256407195 +100183,500.9149999995807,-0.0541376277809089 +100184,500.9199999995807,-0.05413753629885146 +100185,500.9249999995807,-0.05413744481023353 +100186,500.9299999995807,-0.054137353315053774 +100187,500.93499999958067,-0.054137261813310814 +100188,500.93999999958066,-0.0541371703050033 +100189,500.94499999958066,-0.05413707879012986 +100190,500.94999999958065,-0.05413698726868917 +100191,500.95499999958065,-0.05413689574067985 +100192,500.95999999958065,-0.05413680420610055 +100193,500.96499999958064,-0.05413671266494991 +100194,500.96999999958064,-0.05413662111722657 +100195,500.97499999958063,-0.05413652956292917 +100196,500.9799999995806,-0.05413643800205635 +100197,500.9849999995806,-0.05413634643460676 +100198,500.9899999995806,-0.05413625486057905 +100199,500.9949999995806,-0.05413616327997181 +100200,500.9999999995806,-0.054136071692783734 +100201,501.0049999995806,-0.05413598009901342 +100202,501.0099999995806,-0.054135888498659544 +100203,501.0149999995806,-0.054135796891720704 +100204,501.0199999995806,-0.05413570527819556 +100205,501.0249999995806,-0.05413561365808275 +100206,501.0299999995806,-0.0541355220313809 +100207,501.0349999995806,-0.05413543039808866 +100208,501.0399999995806,-0.05413533875820466 +100209,501.04499999958057,-0.05413524711172751 +100210,501.04999999958056,-0.054135155458655874 +100211,501.05499999958056,-0.054135063798988386 +100212,501.05999999958055,-0.05413497213272366 +100213,501.06499999958055,-0.05413488045986034 +100214,501.06999999958055,-0.054134788780397076 +100215,501.07499999958054,-0.05413469709433247 +100216,501.07999999958054,-0.05413460540166517 +100217,501.08499999958053,-0.054134513702393805 +100218,501.0899999995805,-0.05413442199651701 +100219,501.0949999995805,-0.054134330284033395 +100220,501.0999999995805,-0.054134238564941616 +100221,501.1049999995805,-0.05413414683924029 +100222,501.1099999995805,-0.05413405510692804 +100223,501.1149999995805,-0.054133963368003524 +100224,501.1199999995805,-0.054133871622465336 +100225,501.1249999995805,-0.05413377987031213 +100226,501.1299999995805,-0.05413368811154251 +100227,501.1349999995805,-0.05413359634615512 +100228,501.1399999995805,-0.054133504574148575 +100229,501.1449999995805,-0.05413341279552151 +100230,501.1499999995805,-0.05413332101027255 +100231,501.15499999958047,-0.05413322921840032 +100232,501.15999999958046,-0.054133137419903436 +100233,501.16499999958046,-0.05413304561478053 +100234,501.16999999958045,-0.05413295380303022 +100235,501.17499999958045,-0.05413286198465114 +100236,501.17999999958045,-0.05413277015964191 +100237,501.18499999958044,-0.05413267832800115 +100238,501.18999999958044,-0.05413258648972748 +100239,501.19499999958043,-0.05413249464481952 +100240,501.1999999995804,-0.054132402793275886 +100241,501.2049999995804,-0.05413231093509522 +100242,501.2099999995804,-0.05413221907027612 +100243,501.2149999995804,-0.054132127198817215 +100244,501.2199999995804,-0.05413203532071712 +100245,501.2249999995804,-0.05413194343597447 +100246,501.2299999995804,-0.05413185154458786 +100247,501.2349999995804,-0.054131759646555935 +100248,501.2399999995804,-0.0541316677418773 +100249,501.2449999995804,-0.05413157583055056 +100250,501.2499999995804,-0.054131483912574344 +100251,501.2549999995804,-0.05413139198794727 +100252,501.2599999995804,-0.05413130005666794 +100253,501.26499999958037,-0.05413120811873499 +100254,501.26999999958036,-0.05413111617414702 +100255,501.27499999958036,-0.054131024222902654 +100256,501.27999999958035,-0.0541309322650005 +100257,501.28499999958035,-0.05413084030043916 +100258,501.28999999958035,-0.05413074832921727 +100259,501.29499999958034,-0.05413065635133343 +100260,501.29999999958034,-0.054130564366786246 +100261,501.30499999958033,-0.05413047237557434 +100262,501.3099999995803,-0.054130380377696324 +100263,501.3149999995803,-0.05413028837315082 +100264,501.3199999995803,-0.05413019636193642 +100265,501.3249999995803,-0.05413010434405173 +100266,501.3299999995803,-0.05413001231949538 +100267,501.3349999995803,-0.054129920288265965 +100268,501.3399999995803,-0.0541298282503621 +100269,501.3449999995803,-0.05412973620578238 +100270,501.3499999995803,-0.054129644154525425 +100271,501.3549999995803,-0.05412955209658984 +100272,501.3599999995803,-0.05412946003197422 +100273,501.3649999995803,-0.05412936796067719 +100274,501.3699999995803,-0.05412927588269734 +100275,501.37499999958027,-0.0541291837980333 +100276,501.37999999958026,-0.05412909170668365 +100277,501.38499999958026,-0.05412899960864702 +100278,501.38999999958025,-0.054128907503922 +100279,501.39499999958025,-0.054128815392507176 +100280,501.39999999958025,-0.05412872327440117 +100281,501.40499999958024,-0.054128631149602584 +100282,501.40999999958024,-0.05412853901811002 +100283,501.41499999958023,-0.05412844687992208 +100284,501.4199999995802,-0.05412835473503736 +100285,501.4249999995802,-0.054128262583454476 +100286,501.4299999995802,-0.054128170425172005 +100287,501.4349999995802,-0.05412807826018856 +100288,501.4399999995802,-0.054127986088502736 +100289,501.4449999995802,-0.05412789391011315 +100290,501.4499999995802,-0.054127801725018375 +100291,501.4549999995802,-0.05412770953321703 +100292,501.4599999995802,-0.054127617334707695 +100293,501.4649999995802,-0.05412752512948897 +100294,501.4699999995802,-0.054127432917559476 +100295,501.4749999995802,-0.05412734069891778 +100296,501.4799999995802,-0.05412724847356249 +100297,501.48499999958017,-0.054127156241492204 +100298,501.48999999958016,-0.05412706400270551 +100299,501.49499999958016,-0.05412697175720102 +100300,501.49999999958015,-0.05412687950497731 +100301,501.50499999958015,-0.054126787246032974 +100302,501.50999999958015,-0.054126694980366624 +100303,501.51499999958014,-0.05412660270797683 +100304,501.51999999958014,-0.05412651042886219 +100305,501.52499999958013,-0.0541264181430213 +100306,501.5299999995801,-0.054126325850452746 +100307,501.5349999995801,-0.054126233551155124 +100308,501.5399999995801,-0.05412614124512703 +100309,501.5449999995801,-0.054126048932367055 +100310,501.5499999995801,-0.05412595661287378 +100311,501.5549999995801,-0.05412586428664579 +100312,501.5599999995801,-0.05412577195368169 +100313,501.5649999995801,-0.05412567961398006 +100314,501.5699999995801,-0.05412558726753947 +100315,501.5749999995801,-0.05412549491435853 +100316,501.5799999995801,-0.05412540255443581 +100317,501.5849999995801,-0.054125310187769914 +100318,501.5899999995801,-0.054125217814359416 +100319,501.59499999958007,-0.05412512543420291 +100320,501.59999999958006,-0.05412503304729899 +100321,501.60499999958006,-0.05412494065364621 +100322,501.60999999958005,-0.05412484825324317 +100323,501.61499999958005,-0.05412475584608846 +100324,501.61999999958005,-0.05412466343218067 +100325,501.62499999958004,-0.05412457101151836 +100326,501.62999999958004,-0.05412447858410012 +100327,501.63499999958003,-0.05412438614992455 +100328,501.63999999958,-0.05412429370899021 +100329,501.64499999958,-0.05412420126129568 +100330,501.64999999958,-0.05412410880683956 +100331,501.65499999958,-0.054124016345620404 +100332,501.65999999958,-0.054123923877636815 +100333,501.66499999958,-0.05412383140288736 +100334,501.66999999958,-0.054123738921370616 +100335,501.67499999958,-0.05412364643308517 +100336,501.67999999958,-0.05412355393802959 +100337,501.68499999958,-0.05412346143620246 +100338,501.68999999958,-0.05412336892760236 +100339,501.69499999958,-0.054123276412227854 +100340,501.69999999958,-0.05412318389007753 +100341,501.70499999957997,-0.05412309136114996 +100342,501.70999999957996,-0.05412299882544372 +100343,501.71499999957996,-0.05412290628295737 +100344,501.71999999957995,-0.0541228137336895 +100345,501.72499999957995,-0.05412272117763868 +100346,501.72999999957995,-0.05412262861480349 +100347,501.73499999957994,-0.05412253604518249 +100348,501.73999999957994,-0.05412244346877425 +100349,501.74499999957993,-0.05412235088557735 +100350,501.7499999995799,-0.05412225829559036 +100351,501.7549999995799,-0.05412216569881184 +100352,501.7599999995799,-0.054122073095240385 +100353,501.7649999995799,-0.05412198048487454 +100354,501.7699999995799,-0.0541218878677129 +100355,501.7749999995799,-0.05412179524375401 +100356,501.7799999995799,-0.054121702612996446 +100357,501.7849999995799,-0.05412160997543877 +100358,501.7899999995799,-0.054121517331079574 +100359,501.7949999995799,-0.054121424679917395 +100360,501.7999999995799,-0.054121332021950824 +100361,501.8049999995799,-0.0541212393571784 +100362,501.8099999995799,-0.054121146685598705 +100363,501.81499999957987,-0.054121054007210304 +100364,501.81999999957986,-0.05412096132201177 +100365,501.82499999957986,-0.05412086863000164 +100366,501.82999999957985,-0.0541207759311785 +100367,501.83499999957985,-0.054120683225540915 +100368,501.83999999957985,-0.05412059051308744 +100369,501.84499999957984,-0.05412049779381663 +100370,501.84999999957984,-0.05412040506772705 +100371,501.85499999957983,-0.054120312334817275 +100372,501.8599999995798,-0.05412021959508586 +100373,501.8649999995798,-0.05412012684853136 +100374,501.8699999995798,-0.054120034095152335 +100375,501.8749999995798,-0.05411994133494736 +100376,501.8799999995798,-0.05411984856791497 +100377,501.8849999995798,-0.05411975579405373 +100378,501.8899999995798,-0.05411966301336221 +100379,501.8949999995798,-0.05411957022583897 +100380,501.8999999995798,-0.05411947743148255 +100381,501.9049999995798,-0.054119384630291506 +100382,501.9099999995798,-0.054119291822264416 +100383,501.9149999995798,-0.05411919900739982 +100384,501.9199999995798,-0.05411910618569627 +100385,501.92499999957977,-0.05411901335715233 +100386,501.92999999957976,-0.05411892052176654 +100387,501.93499999957976,-0.054118827679537476 +100388,501.93999999957975,-0.05411873483046368 +100389,501.94499999957975,-0.054118641974543705 +100390,501.94999999957975,-0.054118549111776104 +100391,501.95499999957974,-0.05411845624215943 +100392,501.95999999957974,-0.05411836336569222 +100393,501.96499999957973,-0.05411827048237305 +100394,501.9699999995797,-0.05411817759220045 +100395,501.9749999995797,-0.054118084695172985 +100396,501.9799999995797,-0.054117991791289184 +100397,501.9849999995797,-0.05411789888054763 +100398,501.9899999995797,-0.054117805962946845 +100399,501.9949999995797,-0.05411771303848538 +100400,501.9999999995797,-0.054117620107161785 +100401,502.0049999995797,-0.054117527168974604 +100402,502.0099999995797,-0.0541174342239224 +100403,502.0149999995797,-0.054117341272003704 +100404,502.0199999995797,-0.05411724831321706 +100405,502.0249999995797,-0.05411715534756102 +100406,502.0299999995797,-0.054117062375034136 +100407,502.03499999957967,-0.05411696939563494 +100408,502.03999999957966,-0.05411687640936198 +100409,502.04499999957966,-0.05411678341621381 +100410,502.04999999957965,-0.054116690416188946 +100411,502.05499999957965,-0.05411659740928596 +100412,502.05999999957965,-0.05411650439550337 +100413,502.06499999957964,-0.054116411374839746 +100414,502.06999999957964,-0.0541163183472936 +100415,502.07499999957963,-0.054116225312863496 +100416,502.0799999995796,-0.05411613227154794 +100417,502.0849999995796,-0.05411603922334551 +100418,502.0899999995796,-0.05411594616825473 +100419,502.0949999995796,-0.054115853106274134 +100420,502.0999999995796,-0.054115760037402254 +100421,502.1049999995796,-0.054115666961637644 +100422,502.1099999995796,-0.054115573878978834 +100423,502.1149999995796,-0.05411548078942437 +100424,502.1199999995796,-0.05411538769297278 +100425,502.1249999995796,-0.054115294589622595 +100426,502.1299999995796,-0.05411520147937236 +100427,502.1349999995796,-0.054115108362220596 +100428,502.1399999995796,-0.05411501523816585 +100429,502.14499999957957,-0.054114922107206656 +100430,502.14999999957956,-0.054114828969341534 +100431,502.15499999957956,-0.05411473582456903 +100432,502.15999999957955,-0.05411464267288767 +100433,502.16499999957955,-0.054114549514296 +100434,502.16999999957955,-0.05411445634879254 +100435,502.17499999957954,-0.05411436317637582 +100436,502.17999999957954,-0.05411426999704436 +100437,502.18499999957953,-0.05411417681079671 +100438,502.1899999995795,-0.0541140836176314 +100439,502.1949999995795,-0.05411399041754694 +100440,502.1999999995795,-0.05411389721054188 +100441,502.2049999995795,-0.05411380399661474 +100442,502.2099999995795,-0.05411371077576403 +100443,502.2149999995795,-0.054113617547988296 +100444,502.2199999995795,-0.05411352431328607 +100445,502.2249999995795,-0.05411343107165585 +100446,502.2299999995795,-0.054113337823096186 +100447,502.2349999995795,-0.054113244567605606 +100448,502.2399999995795,-0.05411315130518263 +100449,502.2449999995795,-0.05411305803582577 +100450,502.2499999995795,-0.05411296475953357 +100451,502.25499999957947,-0.05411287147630454 +100452,502.25999999957946,-0.05411277818613719 +100453,502.26499999957946,-0.054112684889030066 +100454,502.26999999957945,-0.054112591584981676 +100455,502.27499999957945,-0.054112498273990554 +100456,502.27999999957945,-0.05411240495605522 +100457,502.28499999957944,-0.054112311631174165 +100458,502.28999999957944,-0.05411221829934594 +100459,502.29499999957943,-0.054112124960569066 +100460,502.2999999995794,-0.054112031614842036 +100461,502.3049999995794,-0.054111938262163393 +100462,502.3099999995794,-0.054111844902531646 +100463,502.3149999995794,-0.054111751535945316 +100464,502.3199999995794,-0.05411165816240292 +100465,502.3249999995794,-0.05411156478190296 +100466,502.3299999995794,-0.054111471394443965 +100467,502.3349999995794,-0.05411137800002446 +100468,502.3399999995794,-0.05411128459864294 +100469,502.3449999995794,-0.05411119119029793 +100470,502.3499999995794,-0.05411109777498794 +100471,502.3549999995794,-0.05411100435271149 +100472,502.3599999995794,-0.05411091092346709 +100473,502.36499999957937,-0.05411081748725324 +100474,502.36999999957936,-0.05411072404406848 +100475,502.37499999957936,-0.054110630593911295 +100476,502.37999999957935,-0.05411053713678021 +100477,502.38499999957935,-0.05411044367267372 +100478,502.38999999957935,-0.054110350201590364 +100479,502.39499999957934,-0.05411025672352862 +100480,502.39999999957934,-0.05411016323848702 +100481,502.40499999957933,-0.05411006974646406 +100482,502.4099999995793,-0.054109976247458266 +100483,502.4149999995793,-0.05410988274146813 +100484,502.4199999995793,-0.05410978922849215 +100485,502.4249999995793,-0.054109695708528846 +100486,502.4299999995793,-0.05410960218157673 +100487,502.4349999995793,-0.0541095086476343 +100488,502.4399999995793,-0.05410941510670006 +100489,502.4449999995793,-0.05410932155877251 +100490,502.4499999995793,-0.054109228003850166 +100491,502.4549999995793,-0.05410913444193153 +100492,502.4599999995793,-0.0541090408730151 +100493,502.4649999995793,-0.05410894729709938 +100494,502.4699999995793,-0.05410885371418287 +100495,502.47499999957927,-0.054108760124264084 +100496,502.47999999957926,-0.0541086665273415 +100497,502.48499999957926,-0.054108572923413645 +100498,502.48999999957925,-0.05410847931247901 +100499,502.49499999957925,-0.05410838569453608 +100500,502.49999999957925,-0.05410829206958337 +100501,502.50499999957924,-0.05410819843761938 +100502,502.50999999957924,-0.0541081047986426 +100503,502.51499999957923,-0.05410801115265153 +100504,502.5199999995792,-0.05410791749964467 +100505,502.5249999995792,-0.054107823839620525 +100506,502.5299999995792,-0.05410773017257758 +100507,502.5349999995792,-0.05410763649851433 +100508,502.5399999995792,-0.054107542817429265 +100509,502.5449999995792,-0.054107449129320896 +100510,502.5499999995792,-0.05410735543418771 +100511,502.5549999995792,-0.054107261732028206 +100512,502.5599999995792,-0.054107168022840865 +100513,502.5649999995792,-0.05410707430662418 +100514,502.5699999995792,-0.05410698058337667 +100515,502.5749999995792,-0.054106886853096794 +100516,502.5799999995792,-0.054106793115783064 +100517,502.58499999957917,-0.05410669937143396 +100518,502.58999999957916,-0.05410660562004799 +100519,502.59499999957916,-0.054106511861623616 +100520,502.59999999957915,-0.05410641809615935 +100521,502.60499999957915,-0.05410632432365367 +100522,502.60999999957914,-0.05410623054410506 +100523,502.61499999957914,-0.05410613675751202 +100524,502.61999999957914,-0.05410604296387302 +100525,502.62499999957913,-0.05410594916318658 +100526,502.6299999995791,-0.054105855355451156 +100527,502.6349999995791,-0.054105761540665244 +100528,502.6399999995791,-0.054105667718827334 +100529,502.6449999995791,-0.0541055738899359 +100530,502.6499999995791,-0.05410548005398944 +100531,502.6549999995791,-0.05410538621098643 +100532,502.6599999995791,-0.05410529236092535 +100533,502.6649999995791,-0.054105198503804686 +100534,502.6699999995791,-0.054105104639622925 +100535,502.6749999995791,-0.054105010768378536 +100536,502.6799999995791,-0.054104916890070014 +100537,502.6849999995791,-0.054104823004695844 +100538,502.6899999995791,-0.05410472911225449 +100539,502.69499999957907,-0.054104635212744445 +100540,502.69999999957906,-0.05410454130616418 +100541,502.70499999957906,-0.05410444739251219 +100542,502.70999999957905,-0.05410435347178694 +100543,502.71499999957905,-0.0541042595439869 +100544,502.71999999957904,-0.054104165609110556 +100545,502.72499999957904,-0.05410407166715639 +100546,502.72999999957904,-0.05410397771812288 +100547,502.73499999957903,-0.054103883762008496 +100548,502.739999999579,-0.054103789798811704 +100549,502.744999999579,-0.05410369582853099 +100550,502.749999999579,-0.05410360185116483 +100551,502.754999999579,-0.0541035078667117 +100552,502.759999999579,-0.054103413875170064 +100553,502.764999999579,-0.054103319876538394 +100554,502.769999999579,-0.05410322587081517 +100555,502.774999999579,-0.054103131857998865 +100556,502.779999999579,-0.054103037838087946 +100557,502.784999999579,-0.05410294381108088 +100558,502.789999999579,-0.054102849776976145 +100559,502.794999999579,-0.05410275573577221 +100560,502.799999999579,-0.054102661687467545 +100561,502.80499999957897,-0.054102567632060616 +100562,502.80999999957896,-0.054102473569549885 +100563,502.81499999957896,-0.054102379499933836 +100564,502.81999999957895,-0.05410228542321092 +100565,502.82499999957895,-0.054102191339379616 +100566,502.82999999957894,-0.05410209724843838 +100567,502.83499999957894,-0.0541020031503857 +100568,502.83999999957894,-0.05410190904522001 +100569,502.84499999957893,-0.05410181493293979 +100570,502.8499999995789,-0.05410172081354351 +100571,502.8549999995789,-0.05410162668702962 +100572,502.8599999995789,-0.05410153255339659 +100573,502.8649999995789,-0.054101438412642894 +100574,502.8699999995789,-0.05410134426476698 +100575,502.8749999995789,-0.05410125010976731 +100576,502.8799999995789,-0.05410115594764236 +100577,502.8849999995789,-0.05410106177839057 +100578,502.8899999995789,-0.054100967602010414 +100579,502.8949999995789,-0.054100873418500346 +100580,502.8999999995789,-0.054100779227858824 +100581,502.9049999995789,-0.054100685030084306 +100582,502.9099999995789,-0.05410059082517526 +100583,502.91499999957887,-0.05410049661313015 +100584,502.91999999957886,-0.05410040239394741 +100585,502.92499999957886,-0.054100308167625503 +100586,502.92999999957885,-0.054100213934162894 +100587,502.93499999957885,-0.054100119693558046 +100588,502.93999999957884,-0.05410002544580939 +100589,502.94499999957884,-0.0540999311909154 +100590,502.94999999957884,-0.054099836928874524 +100591,502.95499999957883,-0.05409974265968522 +100592,502.9599999995788,-0.054099648383345925 +100593,502.9649999995788,-0.0540995540998551 +100594,502.9699999995788,-0.054099459809211214 +100595,502.9749999995788,-0.0540993655114127 +100596,502.9799999995788,-0.054099271206458015 +100597,502.9849999995788,-0.0540991768943456 +100598,502.9899999995788,-0.054099082575073926 +100599,502.9949999995788,-0.05409898824864142 +100600,502.9999999995788,-0.05409889391504655 +100601,503.0049999995788,-0.05409879957428774 +100602,503.0099999995788,-0.05409870522636347 +100603,503.0149999995788,-0.05409861087127216 +100604,503.0199999995788,-0.05409851650901227 +100605,503.02499999957877,-0.05409842213958224 +100606,503.02999999957876,-0.054098327762980535 +100607,503.03499999957876,-0.054098233379205565 +100608,503.03999999957875,-0.054098138988255814 +100609,503.04499999957875,-0.05409804459012971 +100610,503.04999999957874,-0.05409795018482568 +100611,503.05499999957874,-0.054097855772342184 +100612,503.05999999957874,-0.054097761352677666 +100613,503.06499999957873,-0.05409766692583057 +100614,503.0699999995787,-0.05409757249179933 +100615,503.0749999995787,-0.05409747805058238 +100616,503.0799999995787,-0.05409738360217818 +100617,503.0849999995787,-0.05409728914658517 +100618,503.0899999995787,-0.05409719468380177 +100619,503.0949999995787,-0.05409710021382644 +100620,503.0999999995787,-0.05409700573665761 +100621,503.1049999995787,-0.05409691125229371 +100622,503.1099999995787,-0.05409681676073319 +100623,503.1149999995787,-0.05409672226197448 +100624,503.1199999995787,-0.05409662775601602 +100625,503.1249999995787,-0.05409653324285624 +100626,503.1299999995787,-0.05409643872249359 +100627,503.13499999957867,-0.05409634419492649 +100628,503.13999999957866,-0.054096249660153375 +100629,503.14499999957866,-0.05409615511817269 +100630,503.14999999957865,-0.05409606056898286 +100631,503.15499999957865,-0.054095966012582326 +100632,503.15999999957864,-0.05409587144896952 +100633,503.16499999957864,-0.054095776878142855 +100634,503.16999999957864,-0.05409568230010079 +100635,503.17499999957863,-0.05409558771484174 +100636,503.1799999995786,-0.054095493122364134 +100637,503.1849999995786,-0.05409539852266641 +100638,503.1899999995786,-0.054095303915746996 +100639,503.1949999995786,-0.054095209301604316 +100640,503.1999999995786,-0.05409511468023679 +100641,503.2049999995786,-0.054095020051642864 +100642,503.2099999995786,-0.054094925415820956 +100643,503.2149999995786,-0.0540948307727695 +100644,503.2199999995786,-0.05409473612248691 +100645,503.2249999995786,-0.054094641464971616 +100646,503.2299999995786,-0.05409454680022205 +100647,503.2349999995786,-0.054094452128236624 +100648,503.2399999995786,-0.05409435744901379 +100649,503.24499999957857,-0.054094262762551935 +100650,503.24999999957856,-0.0540941680688495 +100651,503.25499999957856,-0.054094073367904914 +100652,503.25999999957855,-0.05409397865971659 +100653,503.26499999957855,-0.05409388394428294 +100654,503.26999999957854,-0.054093789221602406 +100655,503.27499999957854,-0.05409369449167341 +100656,503.27999999957854,-0.054093599754494334 +100657,503.28499999957853,-0.05409350501006364 +100658,503.2899999995785,-0.05409341025837972 +100659,503.2949999995785,-0.05409331549944102 +100660,503.2999999995785,-0.05409322073324593 +100661,503.3049999995785,-0.05409312595979289 +100662,503.3099999995785,-0.054093031179080285 +100663,503.3149999995785,-0.054092936391106565 +100664,503.3199999995785,-0.05409284159587013 +100665,503.3249999995785,-0.05409274679336939 +100666,503.3299999995785,-0.05409265198360277 +100667,503.3349999995785,-0.05409255716656868 +100668,503.3399999995785,-0.054092462342265536 +100669,503.3449999995785,-0.05409236751069175 +100670,503.3499999995785,-0.054092272671845736 +100671,503.35499999957847,-0.054092177825725896 +100672,503.35999999957846,-0.05409208297233066 +100673,503.36499999957846,-0.054091988111658426 +100674,503.36999999957845,-0.054091893243707605 +100675,503.37499999957845,-0.05409179836847662 +100676,503.37999999957844,-0.054091703485963864 +100677,503.38499999957844,-0.054091608596167746 +100678,503.38999999957844,-0.05409151369908668 +100679,503.39499999957843,-0.05409141879471908 +100680,503.3999999995784,-0.05409132388306334 +100681,503.4049999995784,-0.054091228964117874 +100682,503.4099999995784,-0.05409113403788109 +100683,503.4149999995784,-0.054091039104351396 +100684,503.4199999995784,-0.05409094416352719 +100685,503.4249999995784,-0.05409084921540686 +100686,503.4299999995784,-0.05409075425998884 +100687,503.4349999995784,-0.05409065929727153 +100688,503.4399999995784,-0.05409056432725332 +100689,503.4449999995784,-0.05409046934993262 +100690,503.4499999995784,-0.054090374365307836 +100691,503.4549999995784,-0.054090279373377355 +100692,503.4599999995784,-0.0540901843741396 +100693,503.46499999957837,-0.054090089367592936 +100694,503.46999999957836,-0.05408999435373581 +100695,503.47499999957836,-0.054089899332566575 +100696,503.47999999957835,-0.05408980430408366 +100697,503.48499999957835,-0.05408970926828545 +100698,503.48999999957834,-0.05408961422517035 +100699,503.49499999957834,-0.05408951917473675 +100700,503.49999999957834,-0.05408942411698305 +100701,503.50499999957833,-0.05408932905190766 +100702,503.5099999995783,-0.05408923397950895 +100703,503.5149999995783,-0.054089138899785325 +100704,503.5199999995783,-0.05408904381273519 +100705,503.5249999995783,-0.05408894871835692 +100706,503.5299999995783,-0.05408885361664892 +100707,503.5349999995783,-0.05408875850760959 +100708,503.5399999995783,-0.05408866339123731 +100709,503.5449999995783,-0.05408856826753047 +100710,503.5499999995783,-0.054088473136487465 +100711,503.5549999995783,-0.054088377998106694 +100712,503.5599999995783,-0.054088282852386545 +100713,503.5649999995783,-0.054088187699325406 +100714,503.5699999995783,-0.05408809253892166 +100715,503.57499999957827,-0.0540879973711737 +100716,503.57999999957826,-0.05408790219607991 +100717,503.58499999957826,-0.05408780701363868 +100718,503.58999999957825,-0.054087711823848396 +100719,503.59499999957825,-0.05408761662670745 +100720,503.59999999957824,-0.05408752142221422 +100721,503.60499999957824,-0.0540874262103671 +100722,503.60999999957824,-0.054087330991164466 +100723,503.61499999957823,-0.05408723576460472 +100724,503.6199999995782,-0.054087140530686216 +100725,503.6249999995782,-0.05408704528940736 +100726,503.6299999995782,-0.054086950040766524 +100727,503.6349999995782,-0.0540868547847621 +100728,503.6399999995782,-0.054086759521392455 +100729,503.6449999995782,-0.05408666425065599 +100730,503.6499999995782,-0.05408656897255106 +100731,503.6549999995782,-0.054086473687076066 +100732,503.6599999995782,-0.05408637839422938 +100733,503.6649999995782,-0.05408628309400939 +100734,503.6699999995782,-0.054086187786414455 +100735,503.6749999995782,-0.05408609247144297 +100736,503.6799999995782,-0.054085997149093304 +100737,503.68499999957817,-0.054085901819363826 +100738,503.68999999957816,-0.05408580648225293 +100739,503.69499999957816,-0.05408571113775898 +100740,503.69999999957815,-0.05408561578588035 +100741,503.70499999957815,-0.05408552042661542 +100742,503.70999999957814,-0.05408542505996256 +100743,503.71499999957814,-0.054085329685920155 +100744,503.71999999957814,-0.054085234304486564 +100745,503.72499999957813,-0.05408513891566017 +100746,503.7299999995781,-0.054085043519439324 +100747,503.7349999995781,-0.05408494811582243 +100748,503.7399999995781,-0.05408485270480783 +100749,503.7449999995781,-0.05408475728639391 +100750,503.7499999995781,-0.05408466186057903 +100751,503.7549999995781,-0.05408456642736156 +100752,503.7599999995781,-0.05408447098673989 +100753,503.7649999995781,-0.05408437553871235 +100754,503.7699999995781,-0.054084280083277335 +100755,503.7749999995781,-0.054084184620433205 +100756,503.7799999995781,-0.05408408915017833 +100757,503.7849999995781,-0.05408399367251107 +100758,503.7899999995781,-0.054083898187429785 +100759,503.79499999957807,-0.05408380269493284 +100760,503.79999999957806,-0.05408370719501862 +100761,503.80499999957806,-0.05408361168768546 +100762,503.80999999957805,-0.05408351617293175 +100763,503.81499999957805,-0.054083420650755845 +100764,503.81999999957804,-0.05408332512115608 +100765,503.82499999957804,-0.05408322958413085 +100766,503.82999999957804,-0.0540831340396785 +100767,503.83499999957803,-0.0540830384877974 +100768,503.839999999578,-0.054082942928485894 +100769,503.844999999578,-0.054082847361742355 +100770,503.849999999578,-0.05408275178756514 +100771,503.854999999578,-0.0540826562059526 +100772,503.859999999578,-0.05408256061690311 +100773,503.864999999578,-0.054082465020415 +100774,503.869999999578,-0.05408236941648664 +100775,503.874999999578,-0.054082273805116404 +100776,503.879999999578,-0.054082178186302614 +100777,503.884999999578,-0.05408208256004365 +100778,503.889999999578,-0.05408198692633785 +100779,503.894999999578,-0.05408189128518357 +100780,503.899999999578,-0.05408179563657917 +100781,503.90499999957797,-0.054081699980523014 +100782,503.90999999957796,-0.05408160431701343 +100783,503.91499999957796,-0.05408150864604878 +100784,503.91999999957795,-0.054081412967627404 +100785,503.92499999957795,-0.05408131728174767 +100786,503.92999999957794,-0.05408122158840793 +100787,503.93499999957794,-0.05408112588760652 +100788,503.93999999957794,-0.05408103017934178 +100789,503.94499999957793,-0.05408093446361208 +100790,503.9499999995779,-0.054080838740415756 +100791,503.9549999995779,-0.05408074300975116 +100792,503.9599999995779,-0.05408064727161664 +100793,503.9649999995779,-0.05408055152601054 +100794,503.9699999995779,-0.05408045577293119 +100795,503.9749999995779,-0.05408036001237696 +100796,503.9799999995779,-0.05408026424434617 +100797,503.9849999995779,-0.05408016846883719 +100798,503.9899999995779,-0.054080072685848336 +100799,503.9949999995779,-0.05407997689537797 +100800,503.9999999995779,-0.05407988109742442 +100801,504.0049999995779,-0.054079785291986045 +100802,504.0099999995779,-0.05407968947906117 +100803,504.01499999957787,-0.05407959365864815 +100804,504.01999999957786,-0.05407949783074531 +100805,504.02499999957786,-0.054079401995350995 +100806,504.02999999957785,-0.05407930615246355 +100807,504.03499999957785,-0.05407921030208129 +100808,504.03999999957784,-0.05407911444420259 +100809,504.04499999957784,-0.05407901857882576 +100810,504.04999999957784,-0.05407892270594914 +100811,504.05499999957783,-0.05407882682557107 +100812,504.0599999995778,-0.05407873093768988 +100813,504.0649999995778,-0.05407863504230392 +100814,504.0699999995778,-0.054078539139411505 +100815,504.0749999995778,-0.05407844322901099 +100816,504.0799999995778,-0.054078347311100686 +100817,504.0849999995778,-0.05407825138567894 +100818,504.0899999995778,-0.054078155452744074 +100819,504.0949999995778,-0.05407805951229442 +100820,504.0999999995778,-0.05407796356432831 +100821,504.1049999995778,-0.05407786760884409 +100822,504.1099999995778,-0.05407777164584007 +100823,504.1149999995778,-0.05407767567531458 +100824,504.1199999995778,-0.05407757969726596 +100825,504.12499999957777,-0.05407748371169254 +100826,504.12999999957776,-0.054077387718592634 +100827,504.13499999957776,-0.05407729171796457 +100828,504.13999999957775,-0.05407719570980669 +100829,504.14499999957775,-0.054077099694117295 +100830,504.14999999957774,-0.05407700367089473 +100831,504.15499999957774,-0.054076907640137305 +100832,504.15999999957774,-0.05407681160184336 +100833,504.16499999957773,-0.05407671555601121 +100834,504.1699999995777,-0.054076619502639194 +100835,504.1749999995777,-0.054076523441725616 +100836,504.1799999995777,-0.05407642737326879 +100837,504.1849999995777,-0.05407633129726705 +100838,504.1899999995777,-0.05407623521371872 +100839,504.1949999995777,-0.05407613912262211 +100840,504.1999999995777,-0.05407604302397556 +100841,504.2049999995777,-0.05407594691777736 +100842,504.2099999995777,-0.05407585080402585 +100843,504.2149999995777,-0.054075754682719336 +100844,504.2199999995777,-0.05407565855385615 +100845,504.2249999995777,-0.05407556241743458 +100846,504.2299999995777,-0.05407546627345298 +100847,504.23499999957767,-0.05407537012190963 +100848,504.23999999957766,-0.05407527396280287 +100849,504.24499999957766,-0.054075177796131 +100850,504.24999999957765,-0.054075081621892354 +100851,504.25499999957765,-0.05407498544008522 +100852,504.25999999957764,-0.054074889250707914 +100853,504.26499999957764,-0.05407479305375877 +100854,504.26999999957764,-0.054074696849236076 +100855,504.27499999957763,-0.05407460063713816 +100856,504.2799999995776,-0.054074504417463316 +100857,504.2849999995776,-0.054074408190209866 +100858,504.2899999995776,-0.05407431195537612 +100859,504.2949999995776,-0.05407421571296038 +100860,504.2999999995776,-0.054074119462960965 +100861,504.3049999995776,-0.054074023205376166 +100862,504.3099999995776,-0.054073926940204305 +100863,504.3149999995776,-0.05407383066744367 +100864,504.3199999995776,-0.054073734387092585 +100865,504.3249999995776,-0.05407363809914935 +100866,504.3299999995776,-0.05407354180361228 +100867,504.3349999995776,-0.05407344550047965 +100868,504.33999999957757,-0.05407334918974979 +100869,504.34499999957757,-0.05407325287142099 +100870,504.34999999957756,-0.05407315654549157 +100871,504.35499999957756,-0.05407306021195982 +100872,504.35999999957755,-0.054072963870824026 +100873,504.36499999957755,-0.054072867522082506 +100874,504.36999999957754,-0.05407277116573356 +100875,504.37499999957754,-0.05407267480177548 +100876,504.37999999957754,-0.054072578430206575 +100877,504.38499999957753,-0.05407248205102515 +100878,504.3899999995775,-0.054072385664229485 +100879,504.3949999995775,-0.054072289269817886 +100880,504.3999999995775,-0.054072192867788645 +100881,504.4049999995775,-0.054072096458140054 +100882,504.4099999995775,-0.05407200004087042 +100883,504.4149999995775,-0.05407190361597803 +100884,504.4199999995775,-0.05407180718346119 +100885,504.4249999995775,-0.05407171074331818 +100886,504.4299999995775,-0.05407161429554729 +100887,504.4349999995775,-0.05407151784014683 +100888,504.4399999995775,-0.05407142137711508 +100889,504.4449999995775,-0.05407132490645033 +100890,504.44999999957747,-0.054071228428150875 +100891,504.45499999957747,-0.05407113194221502 +100892,504.45999999957746,-0.05407103544864103 +100893,504.46499999957746,-0.05407093894742721 +100894,504.46999999957745,-0.054070842438571846 +100895,504.47499999957745,-0.05407074592207321 +100896,504.47999999957744,-0.05407064939792962 +100897,504.48499999957744,-0.05407055286613934 +100898,504.48999999957744,-0.05407045632670067 +100899,504.49499999957743,-0.05407035977961188 +100900,504.4999999995774,-0.054070263224871254 +100901,504.5049999995774,-0.05407016666247709 +100902,504.5099999995774,-0.054070070092427674 +100903,504.5149999995774,-0.05406997351472129 +100904,504.5199999995774,-0.0540698769293562 +100905,504.5249999995774,-0.05406978033633071 +100906,504.5299999995774,-0.05406968373564308 +100907,504.5349999995774,-0.05406958712729161 +100908,504.5399999995774,-0.05406949051127458 +100909,504.5449999995774,-0.05406939388759025 +100910,504.5499999995774,-0.05406929725623692 +100911,504.5549999995774,-0.054069200617212855 +100912,504.55999999957737,-0.054069103970516355 +100913,504.56499999957737,-0.054069007316145674 +100914,504.56999999957736,-0.0540689106540991 +100915,504.57499999957736,-0.0540688139843749 +100916,504.57999999957735,-0.05406871730697137 +100917,504.58499999957735,-0.054068620621886755 +100918,504.58999999957734,-0.05406852392911935 +100919,504.59499999957734,-0.054068427228667434 +100920,504.59999999957734,-0.054068330520529256 +100921,504.60499999957733,-0.05406823380470312 +100922,504.6099999995773,-0.054068137081187274 +100923,504.6149999995773,-0.054068040349979994 +100924,504.6199999995773,-0.05406794361107957 +100925,504.6249999995773,-0.05406784686448425 +100926,504.6299999995773,-0.054067750110192325 +100927,504.6349999995773,-0.054067653348202044 +100928,504.6399999995773,-0.054067556578511686 +100929,504.6449999995773,-0.05406745980111951 +100930,504.6499999995773,-0.054067363016023794 +100931,504.6549999995773,-0.054067266223222804 +100932,504.6599999995773,-0.0540671694227148 +100933,504.6649999995773,-0.054067072614498043 +100934,504.66999999957727,-0.054066975798570824 +100935,504.67499999957727,-0.054066878974931384 +100936,504.67999999957726,-0.054066782143578 +100937,504.68499999957726,-0.05406668530450891 +100938,504.68999999957725,-0.05406658845772241 +100939,504.69499999957725,-0.054066491603216735 +100940,504.69999999957724,-0.05406639474099016 +100941,504.70499999957724,-0.05406629787104096 +100942,504.70999999957724,-0.054066200993367376 +100943,504.71499999957723,-0.05406610410796767 +100944,504.7199999995772,-0.05406600721484012 +100945,504.7249999995772,-0.05406591031398295 +100946,504.7299999995772,-0.05406581340539445 +100947,504.7349999995772,-0.05406571648907287 +100948,504.7399999995772,-0.054065619565016466 +100949,504.7449999995772,-0.05406552263322348 +100950,504.7499999995772,-0.05406542569369218 +100951,504.7549999995772,-0.05406532874642082 +100952,504.7599999995772,-0.05406523179140765 +100953,504.7649999995772,-0.05406513482865094 +100954,504.7699999995772,-0.05406503785814893 +100955,504.7749999995772,-0.05406494087989987 +100956,504.77999999957717,-0.05406484389390202 +100957,504.78499999957717,-0.054064746900153636 +100958,504.78999999957716,-0.054064649898652964 +100959,504.79499999957716,-0.054064552889398244 +100960,504.79999999957715,-0.05406445587238773 +100961,504.80499999957715,-0.054064358847619676 +100962,504.80999999957714,-0.054064261815092336 +100963,504.81499999957714,-0.054064164774803955 +100964,504.81999999957713,-0.05406406772675277 +100965,504.82499999957713,-0.05406397067093704 +100966,504.8299999995771,-0.054063873607355005 +100967,504.8349999995771,-0.05406377653600491 +100968,504.8399999995771,-0.054063679456885 +100969,504.8449999995771,-0.05406358236999353 +100970,504.8499999995771,-0.05406348527532873 +100971,504.8549999995771,-0.05406338817288885 +100972,504.8599999995771,-0.05406329106267214 +100973,504.8649999995771,-0.054063193944676825 +100974,504.8699999995771,-0.05406309681890116 +100975,504.8749999995771,-0.05406299968534339 +100976,504.8799999995771,-0.05406290254400173 +100977,504.8849999995771,-0.054062805394874444 +100978,504.88999999957707,-0.05406270823795977 +100979,504.89499999957707,-0.05406261107325594 +100980,504.89999999957706,-0.05406251390076119 +100981,504.90499999957706,-0.05406241672047375 +100982,504.90999999957705,-0.05406231953239187 +100983,504.91499999957705,-0.05406222233651378 +100984,504.91999999957704,-0.05406212513283772 +100985,504.92499999957704,-0.05406202792136193 +100986,504.92999999957703,-0.05406193070208464 +100987,504.93499999957703,-0.05406183347500407 +100988,504.939999999577,-0.054061736240118466 +100989,504.944999999577,-0.05406163899742606 +100990,504.949999999577,-0.054061541746925075 +100991,504.954999999577,-0.05406144448861376 +100992,504.959999999577,-0.05406134722249033 +100993,504.964999999577,-0.05406124994855301 +100994,504.969999999577,-0.054061152666800054 +100995,504.974999999577,-0.05406105537722968 +100996,504.979999999577,-0.054060958079840106 +100997,504.984999999577,-0.054060860774629564 +100998,504.989999999577,-0.05406076346159628 +100999,504.994999999577,-0.05406066614073849 +101000,504.99999999957697,-0.05406056881205441 +101001,505.00499999957697,-0.05406047147554227 +101002,505.00999999957696,-0.05406037413120031 +101003,505.01499999957696,-0.05406027677902672 +101004,505.01999999957695,-0.05406017941901975 +101005,505.02499999957695,-0.054060082051177606 +101006,505.02999999957694,-0.05405998467549852 +101007,505.03499999957694,-0.054059887291980704 +101008,505.03999999957693,-0.05405978990062239 +101009,505.04499999957693,-0.054059692501421806 +101010,505.0499999995769,-0.05405959509437716 +101011,505.0549999995769,-0.054059497679486666 +101012,505.0599999995769,-0.05405940025674856 +101013,505.0649999995769,-0.054059302826161046 +101014,505.0699999995769,-0.054059205387722346 +101015,505.0749999995769,-0.05405910794143067 +101016,505.0799999995769,-0.054059010487284224 +101017,505.0849999995769,-0.054058913025281256 +101018,505.0899999995769,-0.054058815555419956 +101019,505.0949999995769,-0.05405871807769855 +101020,505.0999999995769,-0.054058620592115234 +101021,505.1049999995769,-0.054058523098668244 +101022,505.10999999957687,-0.0540584255973558 +101023,505.11499999957687,-0.054058328088176066 +101024,505.11999999957686,-0.0540582305711273 +101025,505.12499999957686,-0.054058133046207685 +101026,505.12999999957685,-0.05405803551341546 +101027,505.13499999957685,-0.05405793797274882 +101028,505.13999999957684,-0.054057840424205965 +101029,505.14499999957684,-0.05405774286778511 +101030,505.14999999957683,-0.05405764530348445 +101031,505.15499999957683,-0.05405754773130221 +101032,505.1599999995768,-0.05405745015123659 +101033,505.1649999995768,-0.0540573525632858 +101034,505.1699999995768,-0.054057254967448044 +101035,505.1749999995768,-0.05405715736372152 +101036,505.1799999995768,-0.054057059752104425 +101037,505.1849999995768,-0.05405696213259498 +101038,505.1899999995768,-0.05405686450519137 +101039,505.1949999995768,-0.05405676686989182 +101040,505.1999999995768,-0.05405666922669451 +101041,505.2049999995768,-0.05405657157559766 +101042,505.2099999995768,-0.05405647391659944 +101043,505.2149999995768,-0.05405637624969809 +101044,505.21999999957677,-0.05405627857489178 +101045,505.22499999957677,-0.054056180892178715 +101046,505.22999999957676,-0.0540560832015571 +101047,505.23499999957676,-0.05405598550302513 +101048,505.23999999957675,-0.05405588779658099 +101049,505.24499999957675,-0.05405579008222289 +101050,505.24999999957674,-0.05405569235994901 +101051,505.25499999957674,-0.05405559462975755 +101052,505.25999999957673,-0.054055496891646716 +101053,505.26499999957673,-0.054055399145614684 +101054,505.2699999995767,-0.05405530139165967 +101055,505.2749999995767,-0.05405520362977984 +101056,505.2799999995767,-0.0540551058599734 +101057,505.2849999995767,-0.05405500808223853 +101058,505.2899999995767,-0.05405491029657344 +101059,505.2949999995767,-0.05405481250297631 +101060,505.2999999995767,-0.05405471470144532 +101061,505.3049999995767,-0.05405461689197867 +101062,505.3099999995767,-0.05405451907457454 +101063,505.3149999995767,-0.05405442124923113 +101064,505.3199999995767,-0.05405432341594661 +101065,505.3249999995767,-0.054054225574719186 +101066,505.32999999957667,-0.05405412772554702 +101067,505.33499999957667,-0.054054029868428305 +101068,505.33999999957666,-0.05405393200336123 +101069,505.34499999957666,-0.054053834130343974 +101070,505.34999999957665,-0.05405373624937472 +101071,505.35499999957665,-0.054053638360451656 +101072,505.35999999957664,-0.05405354046357296 +101073,505.36499999957664,-0.05405344255873682 +101074,505.36999999957663,-0.05405334464594141 +101075,505.37499999957663,-0.05405324672518489 +101076,505.3799999995766,-0.054053148796465465 +101077,505.3849999995766,-0.05405305085978131 +101078,505.3899999995766,-0.054052952915130605 +101079,505.3949999995766,-0.05405285496251152 +101080,505.3999999995766,-0.05405275700192223 +101081,505.4049999995766,-0.054052659033360914 +101082,505.4099999995766,-0.05405256105682574 +101083,505.4149999995766,-0.05405246307231489 +101084,505.4199999995766,-0.054052365079826546 +101085,505.4249999995766,-0.054052267079358875 +101086,505.4299999995766,-0.05405216907091004 +101087,505.4349999995766,-0.05405207105447822 +101088,505.43999999957657,-0.05405197303006159 +101089,505.44499999957657,-0.05405187499765832 +101090,505.44999999957656,-0.05405177695726658 +101091,505.45499999957656,-0.05405167890888454 +101092,505.45999999957655,-0.05405158085251037 +101093,505.46499999957655,-0.05405148278814224 +101094,505.46999999957654,-0.05405138471577831 +101095,505.47499999957654,-0.05405128663541676 +101096,505.47999999957653,-0.05405118854705575 +101097,505.48499999957653,-0.05405109045069342 +101098,505.4899999995765,-0.05405099234632797 +101099,505.4949999995765,-0.054050894233957564 +101100,505.4999999995765,-0.054050796113580345 +101101,505.5049999995765,-0.05405069798519449 +101102,505.5099999995765,-0.05405059984879816 +101103,505.5149999995765,-0.05405050170438952 +101104,505.5199999995765,-0.054050403551966726 +101105,505.5249999995765,-0.05405030539152794 +101106,505.5299999995765,-0.05405020722307133 +101107,505.5349999995765,-0.05405010904659504 +101108,505.5399999995765,-0.054050010862097236 +101109,505.5449999995765,-0.054049912669576074 +101110,505.54999999957647,-0.054049814469029726 +101111,505.55499999957647,-0.054049716260456335 +101112,505.55999999957646,-0.05404961804385405 +101113,505.56499999957646,-0.05404951981922105 +101114,505.56999999957645,-0.05404942158655547 +101115,505.57499999957645,-0.05404932334585547 +101116,505.57999999957644,-0.05404922509711922 +101117,505.58499999957644,-0.05404912684034485 +101118,505.58999999957643,-0.05404902857553053 +101119,505.59499999957643,-0.054048930302674394 +101120,505.5999999995764,-0.0540488320217746 +101121,505.6049999995764,-0.054048733732829306 +101122,505.6099999995764,-0.054048635435836656 +101123,505.6149999995764,-0.05404853713079481 +101124,505.6199999995764,-0.05404843881770191 +101125,505.6249999995764,-0.054048340496556095 +101126,505.6299999995764,-0.05404824216735553 +101127,505.6349999995764,-0.054048143830098344 +101128,505.6399999995764,-0.05404804548478269 +101129,505.6449999995764,-0.05404794713140672 +101130,505.6499999995764,-0.05404784876996857 +101131,505.6549999995764,-0.05404775040046639 +101132,505.65999999957637,-0.0540476520228983 +101133,505.66499999957637,-0.054047553637262484 +101134,505.66999999957636,-0.05404745524355707 +101135,505.67499999957636,-0.054047356841780185 +101136,505.67999999957635,-0.05404725843192998 +101137,505.68499999957635,-0.05404716001400459 +101138,505.68999999957634,-0.05404706158800217 +101139,505.69499999957634,-0.054046963153920845 +101140,505.69999999957633,-0.054046864711758756 +101141,505.70499999957633,-0.05404676626151405 +101142,505.7099999995763,-0.05404666780318486 +101143,505.7149999995763,-0.05404656933676931 +101144,505.7199999995763,-0.05404647086226555 +101145,505.7249999995763,-0.05404637237967171 +101146,505.7299999995763,-0.054046273888985925 +101147,505.7349999995763,-0.05404617539020633 +101148,505.7399999995763,-0.05404607688333105 +101149,505.7449999995763,-0.054045978368358234 +101150,505.7499999995763,-0.05404587984528601 +101151,505.7549999995763,-0.0540457813141125 +101152,505.7599999995763,-0.05404568277483584 +101153,505.7649999995763,-0.05404558422745416 +101154,505.76999999957627,-0.05404548567196559 +101155,505.77499999957627,-0.05404538710836826 +101156,505.77999999957626,-0.054045288536660296 +101157,505.78499999957626,-0.05404518995683982 +101158,505.78999999957625,-0.05404509136890498 +101159,505.79499999957625,-0.05404499277285388 +101160,505.79999999957624,-0.05404489416868465 +101161,505.80499999957624,-0.054044795556395415 +101162,505.80999999957623,-0.05404469693598431 +101163,505.81499999957623,-0.05404459830744945 +101164,505.8199999995762,-0.054044499670788955 +101165,505.8249999995762,-0.05404440102600096 +101166,505.8299999995762,-0.054044302373083566 +101167,505.8349999995762,-0.054044203712034916 +101168,505.8399999995762,-0.05404410504285312 +101169,505.8449999995762,-0.05404400636553631 +101170,505.8499999995762,-0.05404390768008258 +101171,505.8549999995762,-0.05404380898649006 +101172,505.8599999995762,-0.054043710284756886 +101173,505.8649999995762,-0.054043611574881155 +101174,505.8699999995762,-0.05404351285686099 +101175,505.8749999995762,-0.0540434141306945 +101176,505.87999999957617,-0.05404331539637981 +101177,505.88499999957617,-0.054043216653915024 +101178,505.88999999957616,-0.05404311790329827 +101179,505.89499999957616,-0.05404301914452765 +101180,505.89999999957615,-0.05404292037760128 +101181,505.90499999957615,-0.05404282160251726 +101182,505.90999999957614,-0.05404272281927372 +101183,505.91499999957614,-0.05404262402786877 +101184,505.91999999957613,-0.054042525228300504 +101185,505.92499999957613,-0.054042426420567044 +101186,505.9299999995761,-0.0540423276046665 +101187,505.9349999995761,-0.054042228780596974 +101188,505.9399999995761,-0.054042129948356575 +101189,505.9449999995761,-0.054042031107943415 +101190,505.9499999995761,-0.05404193225935559 +101191,505.9549999995761,-0.05404183340259121 +101192,505.9599999995761,-0.054041734537648385 +101193,505.9649999995761,-0.0540416356645252 +101194,505.9699999995761,-0.05404153678321978 +101195,505.9749999995761,-0.05404143789373023 +101196,505.9799999995761,-0.054041338996054636 +101197,505.9849999995761,-0.05404124009019111 +101198,505.98999999957607,-0.054041141176137744 +101199,505.99499999957607,-0.05404104225389264 +101200,505.99999999957606,-0.054040943323453904 +101201,506.00499999957606,-0.05404084438481964 +101202,506.00999999957605,-0.054040745437987925 +101203,506.01499999957605,-0.054040646482956874 +101204,506.01999999957604,-0.054040547519724584 +101205,506.02499999957604,-0.05404044854828915 +101206,506.02999999957603,-0.054040349568648664 +101207,506.03499999957603,-0.05404025058080122 +101208,506.039999999576,-0.05404015158474491 +101209,506.044999999576,-0.054040052580477824 +101210,506.049999999576,-0.05403995356799807 +101211,506.054999999576,-0.054039854547303735 +101212,506.059999999576,-0.05403975551839289 +101213,506.064999999576,-0.054039656481263666 +101214,506.069999999576,-0.05403955743591412 +101215,506.074999999576,-0.054039458382342365 +101216,506.079999999576,-0.054039359320546466 +101217,506.084999999576,-0.05403926025052452 +101218,506.089999999576,-0.05403916117227462 +101219,506.094999999576,-0.054039062085794856 +101220,506.09999999957597,-0.054038962991083295 +101221,506.10499999957597,-0.05403886388813804 +101222,506.10999999957596,-0.05403876477695718 +101223,506.11499999957596,-0.05403866565753879 +101224,506.11999999957595,-0.054038566529880955 +101225,506.12499999957595,-0.05403846739398175 +101226,506.12999999957594,-0.054038368249839264 +101227,506.13499999957594,-0.05403826909745159 +101228,506.13999999957593,-0.05403816993681679 +101229,506.14499999957593,-0.054038070767932954 +101230,506.1499999995759,-0.054037971590798164 +101231,506.1549999995759,-0.0540378724054105 +101232,506.1599999995759,-0.05403777321176803 +101233,506.1649999995759,-0.054037674009868836 +101234,506.1699999995759,-0.054037574799711 +101235,506.1749999995759,-0.054037475581292585 +101236,506.1799999995759,-0.05403737635461168 +101237,506.1849999995759,-0.054037277119666355 +101238,506.1899999995759,-0.05403717787645469 +101239,506.1949999995759,-0.054037078624974755 +101240,506.1999999995759,-0.05403697936522463 +101241,506.2049999995759,-0.054036880097202374 +101242,506.20999999957587,-0.05403678082090606 +101243,506.21499999957587,-0.05403668153633376 +101244,506.21999999957586,-0.05403658224348355 +101245,506.22499999957586,-0.054036482942353505 +101246,506.22999999957585,-0.05403638363294168 +101247,506.23499999957585,-0.05403628431524614 +101248,506.23999999957584,-0.05403618498926497 +101249,506.24499999957584,-0.05403608565499623 +101250,506.24999999957583,-0.05403598631243797 +101251,506.25499999957583,-0.05403588696158828 +101252,506.2599999995758,-0.054035787602445214 +101253,506.2649999995758,-0.05403568823500683 +101254,506.2699999995758,-0.0540355888592712 +101255,506.2749999995758,-0.05403548947523639 +101256,506.2799999995758,-0.05403539008290047 +101257,506.2849999995758,-0.054035290682261476 +101258,506.2899999995758,-0.05403519127331748 +101259,506.2949999995758,-0.054035091856066544 +101260,506.2999999995758,-0.05403499243050673 +101261,506.3049999995758,-0.0540348929966361 +101262,506.3099999995758,-0.054034793554452704 +101263,506.3149999995758,-0.054034694103954596 +101264,506.31999999957577,-0.054034594645139836 +101265,506.32499999957577,-0.05403449517800648 +101266,506.32999999957576,-0.054034395702552605 +101267,506.33499999957576,-0.054034296218776236 +101268,506.33999999957575,-0.054034196726675435 +101269,506.34499999957575,-0.054034097226248266 +101270,506.34999999957574,-0.05403399771749277 +101271,506.35499999957574,-0.05403389820040699 +101272,506.35999999957573,-0.054033798674989 +101273,506.36499999957573,-0.05403369914123684 +101274,506.3699999995757,-0.05403359959914856 +101275,506.3749999995757,-0.05403350004872222 +101276,506.3799999995757,-0.054033400489955856 +101277,506.3849999995757,-0.05403330092284752 +101278,506.3899999995757,-0.05403320134739525 +101279,506.3949999995757,-0.0540331017635971 +101280,506.3999999995757,-0.054033002171451114 +101281,506.4049999995757,-0.054032902570955346 +101282,506.4099999995757,-0.05403280296210782 +101283,506.4149999995757,-0.05403270334490661 +101284,506.4199999995757,-0.05403260371934974 +101285,506.4249999995757,-0.05403250408543525 +101286,506.42999999957567,-0.0540324044431612 +101287,506.43499999957567,-0.05403230479252561 +101288,506.43999999957566,-0.05403220513352653 +101289,506.44499999957566,-0.054032105466161995 +101290,506.44999999957565,-0.05403200579043005 +101291,506.45499999957565,-0.054031906106328735 +101292,506.45999999957564,-0.054031806413856076 +101293,506.46499999957564,-0.05403170671301012 +101294,506.46999999957563,-0.05403160700378891 +101295,506.47499999957563,-0.05403150728619046 +101296,506.4799999995756,-0.05403140756021283 +101297,506.4849999995756,-0.05403130782585403 +101298,506.4899999995756,-0.054031208083112105 +101299,506.4949999995756,-0.054031108331985093 +101300,506.4999999995756,-0.05403100857247103 +101301,506.5049999995756,-0.05403090880456793 +101302,506.5099999995756,-0.05403080902827384 +101303,506.5149999995756,-0.05403070924358677 +101304,506.5199999995756,-0.05403060945050477 +101305,506.5249999995756,-0.05403050964902586 +101306,506.5299999995756,-0.054030409839148065 +101307,506.5349999995756,-0.05403031002086942 +101308,506.53999999957557,-0.05403021019418796 +101309,506.54499999957557,-0.054030110359101685 +101310,506.54999999957556,-0.054030010515608635 +101311,506.55499999957556,-0.05402991066370685 +101312,506.55999999957555,-0.054029810803394314 +101313,506.56499999957555,-0.05402971093466909 +101314,506.56999999957554,-0.05402961105752918 +101315,506.57499999957554,-0.05402951117197262 +101316,506.57999999957553,-0.05402941127799741 +101317,506.58499999957553,-0.05402931137560158 +101318,506.5899999995755,-0.054029211464783164 +101319,506.5949999995755,-0.05402911154554016 +101320,506.5999999995755,-0.0540290116178706 +101321,506.6049999995755,-0.054028911681772485 +101322,506.6099999995755,-0.05402881173724386 +101323,506.6149999995755,-0.05402871178428272 +101324,506.6199999995755,-0.05402861182288709 +101325,506.6249999995755,-0.05402851185305498 +101326,506.6299999995755,-0.054028411874784396 +101327,506.6349999995755,-0.05402831188807336 +101328,506.6399999995755,-0.0540282118929199 +101329,506.6449999995755,-0.05402811188932201 +101330,506.64999999957547,-0.054028011877277696 +101331,506.65499999957547,-0.05402791185678498 +101332,506.65999999957546,-0.05402781182784187 +101333,506.66499999957546,-0.054027711790446374 +101334,506.66999999957545,-0.05402761174459651 +101335,506.67499999957545,-0.054027511690290284 +101336,506.67999999957544,-0.05402741162752568 +101337,506.68499999957544,-0.05402731155630073 +101338,506.68999999957543,-0.054027211476613435 +101339,506.69499999957543,-0.05402711138846179 +101340,506.6999999995754,-0.054027011291843806 +101341,506.7049999995754,-0.05402691118675749 +101342,506.7099999995754,-0.054026811073200835 +101343,506.7149999995754,-0.05402671095117185 +101344,506.7199999995754,-0.054026610820668536 +101345,506.7249999995754,-0.054026510681688907 +101346,506.7299999995754,-0.054026410534230934 +101347,506.7349999995754,-0.05402631037829265 +101348,506.7399999995754,-0.054026210213872036 +101349,506.7449999995754,-0.054026110040967086 +101350,506.7499999995754,-0.05402600985957579 +101351,506.7549999995754,-0.05402590966969618 +101352,506.75999999957537,-0.054025809471326215 +101353,506.76499999957537,-0.0540257092644639 +101354,506.76999999957536,-0.05402560904910725 +101355,506.77499999957536,-0.05402550882525423 +101356,506.77999999957535,-0.05402540859290286 +101357,506.78499999957535,-0.05402530835205111 +101358,506.78999999957534,-0.05402520810269698 +101359,506.79499999957534,-0.05402510784483846 +101360,506.79999999957533,-0.05402500757847355 +101361,506.80499999957533,-0.05402490730360023 +101362,506.8099999995753,-0.05402480702021649 +101363,506.8149999995753,-0.05402470672832031 +101364,506.8199999995753,-0.054024606427909704 +101365,506.8249999995753,-0.05402450611898263 +101366,506.8299999995753,-0.054024405801537084 +101367,506.8349999995753,-0.05402430547557107 +101368,506.8399999995753,-0.05402420514108255 +101369,506.8449999995753,-0.0540241047980695 +101370,506.8499999995753,-0.05402400444652993 +101371,506.8549999995753,-0.054023904086461814 +101372,506.8599999995753,-0.05402380371786312 +101373,506.8649999995753,-0.054023703340731845 +101374,506.86999999957527,-0.054023602955065954 +101375,506.87499999957527,-0.05402350256086345 +101376,506.87999999957526,-0.0540234021581223 +101377,506.88499999957526,-0.05402330174684046 +101378,506.88999999957525,-0.05402320132701594 +101379,506.89499999957525,-0.0540231008986467 +101380,506.89999999957524,-0.05402300046173073 +101381,506.90499999957524,-0.054022900016265994 +101382,506.90999999957523,-0.05402279956225047 +101383,506.91499999957523,-0.05402269909968213 +101384,506.9199999995752,-0.05402259862855895 +101385,506.9249999995752,-0.05402249814887891 +101386,506.9299999995752,-0.054022397660639966 +101387,506.9349999995752,-0.05402229716384009 +101388,506.9399999995752,-0.054022196658477274 +101389,506.9449999995752,-0.05402209614454947 +101390,506.9499999995752,-0.05402199562205465 +101391,506.9549999995752,-0.05402189509099077 +101392,506.9599999995752,-0.05402179455135581 +101393,506.9649999995752,-0.05402169400314775 +101394,506.9699999995752,-0.054021593446364535 +101395,506.9749999995752,-0.05402149288100415 +101396,506.97999999957517,-0.05402139230706455 +101397,506.98499999957517,-0.05402129172454369 +101398,506.98999999957516,-0.05402119113343955 +101399,506.99499999957516,-0.05402109053375007 +101400,506.99999999957515,-0.05402098992547323 +101401,507.00499999957515,-0.05402088930860698 +101402,507.00999999957514,-0.054020788683149294 +101403,507.01499999957514,-0.054020688049098126 +101404,507.01999999957513,-0.054020587406451444 +101405,507.02499999957513,-0.05402048675520719 +101406,507.0299999995751,-0.054020386095363325 +101407,507.0349999995751,-0.05402028542691781 +101408,507.0399999995751,-0.05402018474986859 +101409,507.0449999995751,-0.05402008406421364 +101410,507.0499999995751,-0.0540199833699509 +101411,507.0549999995751,-0.05401988266707832 +101412,507.0599999995751,-0.05401978195559387 +101413,507.0649999995751,-0.0540196812354955 +101414,507.0699999995751,-0.054019580506781156 +101415,507.0749999995751,-0.05401947976944879 +101416,507.0799999995751,-0.05401937902349636 +101417,507.0849999995751,-0.0540192782689218 +101418,507.08999999957507,-0.05401917750572306 +101419,507.09499999957507,-0.0540190767338981 +101420,507.09999999957506,-0.05401897595344487 +101421,507.10499999957506,-0.0540188751643613 +101422,507.10999999957505,-0.05401877436664536 +101423,507.11499999957505,-0.05401867356029497 +101424,507.11999999957504,-0.054018572745308094 +101425,507.12499999957504,-0.05401847192168266 +101426,507.12999999957503,-0.05401837108941662 +101427,507.13499999957503,-0.0540182702485079 +101428,507.139999999575,-0.05401816939895447 +101429,507.144999999575,-0.054018068540754256 +101430,507.149999999575,-0.0540179676739052 +101431,507.154999999575,-0.054017866798405235 +101432,507.159999999575,-0.05401776591425231 +101433,507.164999999575,-0.05401766502144436 +101434,507.169999999575,-0.054017564119979315 +101435,507.174999999575,-0.05401746320985512 +101436,507.179999999575,-0.054017362291069716 +101437,507.184999999575,-0.05401726136362102 +101438,507.189999999575,-0.05401716042750698 +101439,507.194999999575,-0.05401705948272553 +101440,507.19999999957497,-0.05401695852927459 +101441,507.20499999957497,-0.05401685756715212 +101442,507.20999999957496,-0.05401675659635602 +101443,507.21499999957496,-0.054016655616884235 +101444,507.21999999957495,-0.0540165546287347 +101445,507.22499999957495,-0.054016453631905326 +101446,507.22999999957494,-0.05401635262639405 +101447,507.23499999957494,-0.054016251612198814 +101448,507.23999999957493,-0.05401615058931753 +101449,507.24499999957493,-0.054016049557748136 +101450,507.2499999995749,-0.05401594851748854 +101451,507.2549999995749,-0.054015847468536694 +101452,507.2599999995749,-0.0540157464108905 +101453,507.2649999995749,-0.05401564534454788 +101454,507.2699999995749,-0.05401554426950676 +101455,507.2749999995749,-0.05401544318576508 +101456,507.2799999995749,-0.05401534209332074 +101457,507.2849999995749,-0.05401524099217167 +101458,507.2899999995749,-0.05401513988231578 +101459,507.2949999995749,-0.054015038763750994 +101460,507.2999999995749,-0.05401493763647524 +101461,507.3049999995749,-0.05401483650048643 +101462,507.30999999957487,-0.05401473535578247 +101463,507.31499999957487,-0.05401463420236128 +101464,507.31999999957486,-0.05401453304022078 +101465,507.32499999957486,-0.054014431869358906 +101466,507.32999999957485,-0.05401433068977353 +101467,507.33499999957485,-0.0540142295014626 +101468,507.33999999957484,-0.054014128304423994 +101469,507.34499999957484,-0.054014027098655645 +101470,507.34999999957483,-0.05401392588415547 +101471,507.35499999957483,-0.054013824660921375 +101472,507.3599999995748,-0.054013723428951256 +101473,507.3649999995748,-0.054013622188243036 +101474,507.3699999995748,-0.054013520938794614 +101475,507.3749999995748,-0.05401341968060391 +101476,507.3799999995748,-0.05401331841366881 +101477,507.3849999995748,-0.05401321713798724 +101478,507.3899999995748,-0.0540131158535571 +101479,507.3949999995748,-0.05401301456037628 +101480,507.3999999995748,-0.054012913258442694 +101481,507.4049999995748,-0.054012811947754244 +101482,507.4099999995748,-0.05401271062830884 +101483,507.4149999995748,-0.054012609300104375 +101484,507.41999999957477,-0.054012507963138744 +101485,507.42499999957477,-0.05401240661740985 +101486,507.42999999957476,-0.0540123052629156 +101487,507.43499999957476,-0.0540122038996539 +101488,507.43999999957475,-0.05401210252762262 +101489,507.44499999957475,-0.05401200114681967 +101490,507.44999999957474,-0.054011899757242944 +101491,507.45499999957474,-0.05401179835889035 +101492,507.45999999957473,-0.05401169695175976 +101493,507.46499999957473,-0.05401159553584908 +101494,507.4699999995747,-0.05401149411115621 +101495,507.4749999995747,-0.05401139267767904 +101496,507.4799999995747,-0.054011291235415454 +101497,507.4849999995747,-0.05401118978436335 +101498,507.4899999995747,-0.05401108832452062 +101499,507.4949999995747,-0.05401098685588514 +101500,507.4999999995747,-0.054010885378454804 +101501,507.5049999995747,-0.05401078389222749 +101502,507.5099999995747,-0.05401068239720111 +101503,507.5149999995747,-0.05401058089337353 +101504,507.5199999995747,-0.05401047938074265 +101505,507.5249999995747,-0.05401037785930635 +101506,507.52999999957467,-0.05401027632906251 +101507,507.53499999957467,-0.054010174790009004 +101508,507.53999999957466,-0.054010073242143734 +101509,507.54499999957466,-0.054009971685464564 +101510,507.54999999957465,-0.05400987011996939 +101511,507.55499999957465,-0.05400976854565609 +101512,507.55999999957464,-0.05400966696252253 +101513,507.56499999957464,-0.05400956537056661 +101514,507.56999999957463,-0.05400946376978618 +101515,507.57499999957463,-0.05400936216017914 +101516,507.5799999995746,-0.05400926054174336 +101517,507.5849999995746,-0.05400915891447672 +101518,507.5899999995746,-0.05400905727837707 +101519,507.5949999995746,-0.05400895563344231 +101520,507.5999999995746,-0.05400885397967032 +101521,507.6049999995746,-0.05400875231705895 +101522,507.6099999995746,-0.05400865064560608 +101523,507.6149999995746,-0.054008548965309586 +101524,507.6199999995746,-0.05400844727616735 +101525,507.6249999995746,-0.054008345578177214 +101526,507.6299999995746,-0.054008243871337056 +101527,507.6349999995746,-0.05400814215564476 +101528,507.63999999957457,-0.05400804043109818 +101529,507.64499999957457,-0.054007938697695185 +101530,507.64999999957456,-0.05400783695543363 +101531,507.65499999957456,-0.0540077352043114 +101532,507.65999999957455,-0.054007633444326346 +101533,507.66499999957455,-0.05400753167547633 +101534,507.66999999957454,-0.054007429897759224 +101535,507.67499999957454,-0.054007328111172884 +101536,507.67999999957453,-0.054007226315715175 +101537,507.68499999957453,-0.05400712451138395 +101538,507.6899999995745,-0.05400702269817708 +101539,507.6949999995745,-0.05400692087609242 +101540,507.6999999995745,-0.05400681904512783 +101541,507.7049999995745,-0.05400671720528115 +101542,507.7099999995745,-0.054006615356550255 +101543,507.7149999995745,-0.054006513498933005 +101544,507.7199999995745,-0.05400641163242725 +101545,507.7249999995745,-0.05400630975703082 +101546,507.7299999995745,-0.0540062078727416 +101547,507.7349999995745,-0.054006105979557434 +101548,507.7399999995745,-0.05400600407747618 +101549,507.7449999995745,-0.05400590216649567 +101550,507.74999999957447,-0.05400580024661378 +101551,507.75499999957447,-0.05400569831782833 +101552,507.75999999957446,-0.054005596380137195 +101553,507.76499999957446,-0.054005494433538206 +101554,507.76999999957445,-0.05400539247802923 +101555,507.77499999957445,-0.05400529051360809 +101556,507.77999999957444,-0.05400518854027264 +101557,507.78499999957444,-0.054005086558020735 +101558,507.78999999957443,-0.054004984566850225 +101559,507.79499999957443,-0.054004882566758936 +101560,507.7999999995744,-0.054004780557744714 +101561,507.8049999995744,-0.054004678539805395 +101562,507.8099999995744,-0.05400457651293884 +101563,507.8149999995744,-0.05400447447714288 +101564,507.8199999995744,-0.054004372432415355 +101565,507.8249999995744,-0.054004270378754105 +101566,507.8299999995744,-0.05400416831615695 +101567,507.8349999995744,-0.05400406624462176 +101568,507.8399999995744,-0.05400396416414634 +101569,507.8449999995744,-0.05400386207472855 +101570,507.8499999995744,-0.054003759976366215 +101571,507.8549999995744,-0.05400365786905716 +101572,507.85999999957437,-0.05400355575279925 +101573,507.86499999957437,-0.05400345362759029 +101574,507.86999999957436,-0.054003351493428116 +101575,507.87499999957436,-0.05400324935031057 +101576,507.87999999957435,-0.05400314719823547 +101577,507.88499999957435,-0.05400304503720065 +101578,507.88999999957434,-0.054002942867203946 +101579,507.89499999957434,-0.05400284068824317 +101580,507.89999999957433,-0.05400273850031616 +101581,507.90499999957433,-0.05400263630342075 +101582,507.9099999995743,-0.05400253409755475 +101583,507.9149999995743,-0.05400243188271598 +101584,507.9199999995743,-0.054002329658902296 +101585,507.9249999995743,-0.05400222742611151 +101586,507.9299999995743,-0.05400212518434141 +101587,507.9349999995743,-0.054002022933589855 +101588,507.9399999995743,-0.054001920673854654 +101589,507.9449999995743,-0.054001818405133635 +101590,507.9499999995743,-0.05400171612742462 +101591,507.9549999995743,-0.05400161384072541 +101592,507.9599999995743,-0.05400151154503384 +101593,507.9649999995743,-0.054001409240347714 +101594,507.96999999957427,-0.054001306926664855 +101595,507.97499999957427,-0.05400120460398308 +101596,507.97999999957426,-0.054001102272300205 +101597,507.98499999957426,-0.05400099993161404 +101598,507.98999999957425,-0.05400089758192239 +101599,507.99499999957425,-0.0540007952232231 +101600,507.99999999957424,-0.05400069285551395 +101601,508.00499999957424,-0.054000590478792763 +101602,508.00999999957423,-0.054000488093057346 +101603,508.01499999957423,-0.054000385698305495 +101604,508.0199999995742,-0.05400028329453504 +101605,508.0249999995742,-0.05400018088174379 +101606,508.0299999995742,-0.05400007845992954 +101607,508.0349999995742,-0.053999976029090097 +101608,508.0399999995742,-0.05399987358922327 +101609,508.0449999995742,-0.053999771140326856 +101610,508.0499999995742,-0.05399966868239868 +101611,508.0549999995742,-0.053999566215436515 +101612,508.0599999995742,-0.05399946373943818 +101613,508.0649999995742,-0.053999361254401496 +101614,508.0699999995742,-0.05399925876032423 +101615,508.0749999995742,-0.053999156257204195 +101616,508.07999999957417,-0.053999053745039195 +101617,508.08499999957417,-0.05399895122382702 +101618,508.08999999957416,-0.05399884869356548 +101619,508.09499999957416,-0.05399874615425236 +101620,508.09999999957415,-0.053998643605885466 +101621,508.10499999957415,-0.05399854104846257 +101622,508.10999999957414,-0.0539984384819815 +101623,508.11499999957414,-0.05399833590644002 +101624,508.11999999957413,-0.05399823332183594 +101625,508.12499999957413,-0.05399813072816706 +101626,508.1299999995741,-0.05399802812543115 +101627,508.1349999995741,-0.053997925513626005 +101628,508.1399999995741,-0.05399782289274941 +101629,508.1449999995741,-0.05399772026279918 +101630,508.1499999995741,-0.05399761762377308 +101631,508.1549999995741,-0.05399751497566891 +101632,508.1599999995741,-0.053997412318484435 +101633,508.1649999995741,-0.05399730965221747 +101634,508.1699999995741,-0.05399720697686578 +101635,508.1749999995741,-0.05399710429242717 +101636,508.1799999995741,-0.05399700159889939 +101637,508.1849999995741,-0.053996898896280246 +101638,508.18999999957407,-0.053996796184567514 +101639,508.19499999957407,-0.053996693463758974 +101640,508.19999999957406,-0.05399659073385241 +101641,508.20499999957406,-0.05399648799484561 +101642,508.20999999957405,-0.05399638524673633 +101643,508.21499999957405,-0.05399628248952236 +101644,508.21999999957404,-0.05399617972320148 +101645,508.22499999957404,-0.053996076947771456 +101646,508.22999999957403,-0.05399597416323008 +101647,508.23499999957403,-0.0539958713695751 +101648,508.239999999574,-0.05399576856680432 +101649,508.244999999574,-0.053995665754915496 +101650,508.249999999574,-0.0539955629339064 +101651,508.254999999574,-0.0539954601037748 +101652,508.259999999574,-0.05399535726451849 +101653,508.264999999574,-0.05399525441613521 +101654,508.269999999574,-0.05399515155862275 +101655,508.274999999574,-0.05399504869197887 +101656,508.279999999574,-0.053994945816201324 +101657,508.284999999574,-0.053994842931287895 +101658,508.289999999574,-0.05399474003723634 +101659,508.294999999574,-0.05399463713404444 +101660,508.29999999957397,-0.05399453422170994 +101661,508.30499999957397,-0.053994431300230614 +101662,508.30999999957396,-0.05399432836960424 +101663,508.31499999957396,-0.05399422542982855 +101664,508.31999999957395,-0.05399412248090131 +101665,508.32499999957395,-0.0539940195228203 +101666,508.32999999957394,-0.053993916555583256 +101667,508.33499999957394,-0.05399381357918794 +101668,508.33999999957393,-0.05399371059363213 +101669,508.34499999957393,-0.05399360759891356 +101670,508.3499999995739,-0.05399350459502999 +101671,508.3549999995739,-0.053993401581979183 +101672,508.3599999995739,-0.0539932985597589 +101673,508.3649999995739,-0.05399319552836687 +101674,508.3699999995739,-0.05399309248780087 +101675,508.3749999995739,-0.05399298943805864 +101676,508.3799999995739,-0.05399288637913795 +101677,508.3849999995739,-0.053992783311036505 +101678,508.3899999995739,-0.053992680233752095 +101679,508.3949999995739,-0.053992577147282464 +101680,508.3999999995739,-0.05399247405162535 +101681,508.4049999995739,-0.05399237094677851 +101682,508.40999999957387,-0.05399226783273967 +101683,508.41499999957387,-0.053992164709506595 +101684,508.41999999957386,-0.053992061577077026 +101685,508.42499999957386,-0.05399195843544871 +101686,508.42999999957385,-0.053991855284619375 +101687,508.43499999957385,-0.05399175212458678 +101688,508.43999999957384,-0.05399164895534865 +101689,508.44499999957384,-0.05399154577690274 +101690,508.44999999957383,-0.05399144258924679 +101691,508.45499999957383,-0.053991339392378525 +101692,508.4599999995738,-0.05399123618629569 +101693,508.4649999995738,-0.05399113297099604 +101694,508.4699999995738,-0.05399102974647728 +101695,508.4749999995738,-0.053990926512737174 +101696,508.4799999995738,-0.05399082326977345 +101697,508.4849999995738,-0.053990720017583815 +101698,508.4899999995738,-0.05399061675616604 +101699,508.4949999995738,-0.053990513485517824 +101700,508.4999999995738,-0.05399041020563692 +101701,508.5049999995738,-0.05399030691652106 +101702,508.5099999995738,-0.05399020361816797 +101703,508.5149999995738,-0.05399010031057537 +101704,508.51999999957377,-0.053989996993741005 +101705,508.52499999957377,-0.05398989366766259 +101706,508.52999999957376,-0.05398979033233785 +101707,508.53499999957376,-0.05398968698776452 +101708,508.53999999957375,-0.05398958363394032 +101709,508.54499999957375,-0.05398948027086297 +101710,508.54999999957374,-0.053989376898530214 +101711,508.55499999957374,-0.053989273516939745 +101712,508.55999999957373,-0.05398917012608931 +101713,508.56499999957373,-0.0539890667259766 +101714,508.5699999995737,-0.053988963316599366 +101715,508.5749999995737,-0.05398885989795531 +101716,508.5799999995737,-0.053988756470042164 +101717,508.5849999995737,-0.05398865303285763 +101718,508.5899999995737,-0.05398854958639943 +101719,508.5949999995737,-0.05398844613066528 +101720,508.5999999995737,-0.053988342665652896 +101721,508.6049999995737,-0.05398823919136 +101722,508.6099999995737,-0.053988135707784296 +101723,508.6149999995737,-0.053988032214923494 +101724,508.6199999995737,-0.053987928712775315 +101725,508.6249999995737,-0.05398782520133746 +101726,508.62999999957367,-0.05398772168060765 +101727,508.63499999957367,-0.05398761815058359 +101728,508.63999999957366,-0.053987514611262985 +101729,508.64499999957366,-0.05398741106264355 +101730,508.64999999957365,-0.05398730750472298 +101731,508.65499999957365,-0.05398720393749899 +101732,508.65999999957364,-0.05398710036096928 +101733,508.66499999957364,-0.05398699677513156 +101734,508.66999999957363,-0.05398689317998354 +101735,508.67499999957363,-0.05398678957552291 +101736,508.6799999995736,-0.05398668596174737 +101737,508.6849999995736,-0.05398658233865463 +101738,508.6899999995736,-0.05398647870624238 +101739,508.6949999995736,-0.05398637506450834 +101740,508.6999999995736,-0.053986271413450186 +101741,508.7049999995736,-0.05398616775306563 +101742,508.7099999995736,-0.05398606408335236 +101743,508.7149999995736,-0.05398596040430807 +101744,508.7199999995736,-0.053985856715930466 +101745,508.7249999995736,-0.05398575301821724 +101746,508.7299999995736,-0.053985649311166076 +101747,508.7349999995736,-0.05398554559477466 +101748,508.73999999957357,-0.053985441869040716 +101749,508.74499999957357,-0.053985338133961905 +101750,508.74999999957356,-0.05398523438953593 +101751,508.75499999957356,-0.053985130635760485 +101752,508.75999999957355,-0.05398502687263324 +101753,508.76499999957355,-0.053984923100151905 +101754,508.76999999957354,-0.053984819318314156 +101755,508.77499999957354,-0.05398471552711767 +101756,508.77999999957353,-0.05398461172656015 +101757,508.78499999957353,-0.05398450791663926 +101758,508.7899999995735,-0.053984404097352695 +101759,508.7949999995735,-0.05398430026869814 +101760,508.7999999995735,-0.053984196430673266 +101761,508.8049999995735,-0.053984092583275765 +101762,508.8099999995735,-0.053983988726503326 +101763,508.8149999995735,-0.05398388486035361 +101764,508.8199999995735,-0.05398378098482431 +101765,508.8249999995735,-0.05398367709991308 +101766,508.8299999995735,-0.05398357320561762 +101767,508.8349999995735,-0.05398346930193559 +101768,508.8399999995735,-0.05398336538886467 +101769,508.8449999995735,-0.05398326146640254 +101770,508.84999999957347,-0.05398315753454686 +101771,508.85499999957347,-0.053983053593295326 +101772,508.85999999957346,-0.05398294964264559 +101773,508.86499999957346,-0.05398284568259533 +101774,508.86999999957345,-0.053982741713142206 +101775,508.87499999957345,-0.0539826377342839 +101776,508.87999999957344,-0.05398253374601808 +101777,508.88499999957344,-0.0539824297483424 +101778,508.88999999957343,-0.05398232574125454 +101779,508.89499999957343,-0.053982221724752165 +101780,508.8999999995734,-0.05398211769883294 +101781,508.9049999995734,-0.05398201366349451 +101782,508.9099999995734,-0.053981909618734565 +101783,508.9149999995734,-0.05398180556455074 +101784,508.9199999995734,-0.05398170150094072 +101785,508.9249999995734,-0.05398159742790216 +101786,508.9299999995734,-0.05398149334543271 +101787,508.9349999995734,-0.05398138925353004 +101788,508.9399999995734,-0.053981285152191805 +101789,508.9449999995734,-0.05398118104141565 +101790,508.9499999995734,-0.053981076921199245 +101791,508.9549999995734,-0.05398097279154025 +101792,508.95999999957337,-0.053980868652436315 +101793,508.96499999957337,-0.05398076450388509 +101794,508.96999999957336,-0.05398066034588422 +101795,508.97499999957336,-0.05398055617843136 +101796,508.97999999957335,-0.053980452001524175 +101797,508.98499999957335,-0.0539803478151603 +101798,508.98999999957334,-0.053980243619337405 +101799,508.99499999957334,-0.053980139414053115 +101800,508.99999999957333,-0.05398003519930508 +101801,509.00499999957333,-0.05397993097509097 +101802,509.0099999995733,-0.0539798267414084 +101803,509.0149999995733,-0.05397972249825504 +101804,509.0199999995733,-0.05397961824562853 +101805,509.0249999995733,-0.0539795139835265 +101806,509.0299999995733,-0.053979409711946605 +101807,509.0349999995733,-0.05397930543088647 +101808,509.0399999995733,-0.05397920114034376 +101809,509.0449999995733,-0.053979096840316106 +101810,509.0499999995733,-0.053978992530801136 +101811,509.0549999995733,-0.0539788882117965 +101812,509.0599999995733,-0.053978783883299825 +101813,509.0649999995733,-0.053978679545308765 +101814,509.06999999957327,-0.053978575197820934 +101815,509.07499999957327,-0.05397847084083398 +101816,509.07999999957326,-0.053978366474345535 +101817,509.08499999957326,-0.05397826209835324 +101818,509.08999999957325,-0.05397815771285471 +101819,509.09499999957325,-0.0539780533178476 +101820,509.09999999957324,-0.053977948913329514 +101821,509.10499999957324,-0.0539778444992981 +101822,509.10999999957323,-0.05397774007575097 +101823,509.11499999957323,-0.05397763564268577 +101824,509.1199999995732,-0.05397753120010012 +101825,509.1249999995732,-0.05397742674799164 +101826,509.1299999995732,-0.05397732228635796 +101827,509.1349999995732,-0.05397721781519671 +101828,509.1399999995732,-0.05397711333450551 +101829,509.1449999995732,-0.05397700884428197 +101830,509.1499999995732,-0.053976904344523735 +101831,509.1549999995732,-0.053976799835228406 +101832,509.1599999995732,-0.05397669531639362 +101833,509.1649999995732,-0.053976590788016976 +101834,509.1699999995732,-0.053976486250096115 +101835,509.1749999995732,-0.05397638170262865 +101836,509.17999999957317,-0.05397627714561217 +101837,509.18499999957317,-0.05397617257904433 +101838,509.18999999957316,-0.05397606800292272 +101839,509.19499999957316,-0.053975963417244956 +101840,509.19999999957315,-0.053975858822008664 +101841,509.20499999957315,-0.053975754217211444 +101842,509.20999999957314,-0.05397564960285091 +101843,509.21499999957314,-0.05397554497892468 +101844,509.21999999957313,-0.053975440345430344 +101845,509.22499999957313,-0.053975335702365526 +101846,509.2299999995731,-0.05397523104972784 +101847,509.2349999995731,-0.05397512638751488 +101848,509.2399999995731,-0.053975021715724256 +101849,509.2449999995731,-0.053974917034353566 +101850,509.2499999995731,-0.05397481234340043 +101851,509.2549999995731,-0.05397470764286244 +101852,509.2599999995731,-0.05397460293273722 +101853,509.2649999995731,-0.05397449821302233 +101854,509.2699999995731,-0.053974393483715404 +101855,509.2749999995731,-0.05397428874481403 +101856,509.2799999995731,-0.05397418399631582 +101857,509.2849999995731,-0.053974079238218356 +101858,509.28999999957307,-0.053973974470519236 +101859,509.29499999957306,-0.053973869693216076 +101860,509.29999999957306,-0.05397376490630644 +101861,509.30499999957306,-0.053973660109787956 +101862,509.30999999957305,-0.0539735553036582 +101863,509.31499999957305,-0.05397345048791476 +101864,509.31999999957304,-0.05397334566255523 +101865,509.32499999957304,-0.053973240827577214 +101866,509.32999999957303,-0.053973135982978294 +101867,509.33499999957303,-0.053973031128756066 +101868,509.339999999573,-0.0539729262649081 +101869,509.344999999573,-0.053972821391431995 +101870,509.349999999573,-0.05397271650832534 +101871,509.354999999573,-0.05397261161558572 +101872,509.359999999573,-0.05397250671321072 +101873,509.364999999573,-0.05397240180119792 +101874,509.369999999573,-0.05397229687954491 +101875,509.374999999573,-0.05397219194824927 +101876,509.379999999573,-0.053972087007308586 +101877,509.384999999573,-0.05397198205672042 +101878,509.389999999573,-0.05397187709648237 +101879,509.394999999573,-0.053971772126592016 +101880,509.39999999957297,-0.05397166714704692 +101881,509.40499999957296,-0.05397156215784466 +101882,509.40999999957296,-0.05397145715898283 +101883,509.41499999957296,-0.053971352150459 +101884,509.41999999957295,-0.053971247132270736 +101885,509.42499999957295,-0.05397114210441561 +101886,509.42999999957294,-0.0539710370668912 +101887,509.43499999957294,-0.05397093201969507 +101888,509.43999999957293,-0.053970826962824806 +101889,509.44499999957293,-0.05397072189627797 +101890,509.4499999995729,-0.053970616820052116 +101891,509.4549999995729,-0.053970511734144834 +101892,509.4599999995729,-0.05397040663855369 +101893,509.4649999995729,-0.05397030153327623 +101894,509.4699999995729,-0.05397019641831004 +101895,509.4749999995729,-0.053970091293652676 +101896,509.4799999995729,-0.0539699861593017 +101897,509.4849999995729,-0.053969881015254684 +101898,509.4899999995729,-0.05396977586150918 +101899,509.4949999995729,-0.053969670698062744 +101900,509.4999999995729,-0.05396956552491295 +101901,509.5049999995729,-0.05396946034205736 +101902,509.50999999957287,-0.053969355149493525 +101903,509.51499999957286,-0.05396924994721899 +101904,509.51999999957286,-0.053969144735231324 +101905,509.52499999957286,-0.05396903951352808 +101906,509.52999999957285,-0.0539689342821068 +101907,509.53499999957285,-0.05396882904096506 +101908,509.53999999957284,-0.05396872379010041 +101909,509.54499999957284,-0.0539686185295104 +101910,509.54999999957283,-0.053968513259192566 +101911,509.55499999957283,-0.05396840797914448 +101912,509.5599999995728,-0.053968302689363666 +101913,509.5649999995728,-0.05396819738984769 +101914,509.5699999995728,-0.05396809208059409 +101915,509.5749999995728,-0.05396798676160042 +101916,509.5799999995728,-0.05396788143286422 +101917,509.5849999995728,-0.053967776094383045 +101918,509.5899999995728,-0.053967670746154425 +101919,509.5949999995728,-0.05396756538817592 +101920,509.5999999995728,-0.05396746002044504 +101921,509.6049999995728,-0.05396735464295937 +101922,509.6099999995728,-0.05396724925571641 +101923,509.6149999995728,-0.05396714385871373 +101924,509.61999999957277,-0.05396703845194884 +101925,509.62499999957276,-0.0539669330354193 +101926,509.62999999957276,-0.05396682760912265 +101927,509.63499999957276,-0.0539667221730564 +101928,509.63999999957275,-0.0539666167272181 +101929,509.64499999957275,-0.05396651127160529 +101930,509.64999999957274,-0.05396640580621548 +101931,509.65499999957274,-0.05396630033104623 +101932,509.65999999957273,-0.05396619484609505 +101933,509.66499999957273,-0.053966089351359485 +101934,509.6699999995727,-0.05396598384683706 +101935,509.6749999995727,-0.053965878332525294 +101936,509.6799999995727,-0.05396577280842172 +101937,509.6849999995727,-0.05396566727452387 +101938,509.6899999995727,-0.05396556173082927 +101939,509.6949999995727,-0.053965456177335426 +101940,509.6999999995727,-0.05396535061403989 +101941,509.7049999995727,-0.05396524504094018 +101942,509.7099999995727,-0.053965139458033794 +101943,509.7149999995727,-0.053965033865318264 +101944,509.7199999995727,-0.05396492826279112 +101945,509.7249999995727,-0.05396482265044988 +101946,509.72999999957267,-0.053964717028292045 +101947,509.73499999957266,-0.05396461139631515 +101948,509.73999999957266,-0.05396450575451671 +101949,509.74499999957266,-0.05396440010289423 +101950,509.74999999957265,-0.05396429444144524 +101951,509.75499999957265,-0.053964188770167225 +101952,509.75999999957264,-0.05396408308905772 +101953,509.76499999957264,-0.05396397739811425 +101954,509.76999999957263,-0.0539638716973343 +101955,509.77499999957263,-0.05396376598671539 +101956,509.7799999995726,-0.053963660266255035 +101957,509.7849999995726,-0.05396355453595074 +101958,509.7899999995726,-0.05396344879579999 +101959,509.7949999995726,-0.05396334304580032 +101960,509.7999999995726,-0.05396323728594922 +101961,509.8049999995726,-0.053963131516244205 +101962,509.8099999995726,-0.05396302573668278 +101963,509.8149999995726,-0.05396291994726243 +101964,509.8199999995726,-0.05396281414798068 +101965,509.8249999995726,-0.053962708338835014 +101966,509.8299999995726,-0.05396260251982294 +101967,509.8349999995726,-0.05396249669094195 +101968,509.83999999957257,-0.05396239085218955 +101969,509.84499999957256,-0.053962285003563225 +101970,509.84999999957256,-0.053962179145060477 +101971,509.85499999957256,-0.05396207327667881 +101972,509.85999999957255,-0.05396196739841571 +101973,509.86499999957255,-0.05396186151026866 +101974,509.86999999957254,-0.053961755612235165 +101975,509.87499999957254,-0.05396164970431272 +101976,509.87999999957253,-0.05396154378649881 +101977,509.8849999995725,-0.05396143785879093 +101978,509.8899999995725,-0.05396133192118656 +101979,509.8949999995725,-0.053961225973683184 +101980,509.8999999995725,-0.0539611200162783 +101981,509.9049999995725,-0.053961014048969407 +101982,509.9099999995725,-0.053960908071753966 +101983,509.9149999995725,-0.053960802084629465 +101984,509.9199999995725,-0.05396069608759339 +101985,509.9249999995725,-0.05396059008064323 +101986,509.9299999995725,-0.05396048406377645 +101987,509.9349999995725,-0.05396037803699053 +101988,509.9399999995725,-0.05396027200028297 +101989,509.9449999995725,-0.053960165953651246 +101990,509.94999999957247,-0.05396005989709282 +101991,509.95499999957246,-0.05395995383060517 +101992,509.95999999957246,-0.05395984775418579 +101993,509.96499999957246,-0.053959741667832135 +101994,509.96999999957245,-0.05395963557154168 +101995,509.97499999957245,-0.05395952946531192 +101996,509.97999999957244,-0.05395942334914029 +101997,509.98499999957244,-0.0539593172230243 +101998,509.98999999957243,-0.05395921108696139 +101999,509.9949999995724,-0.05395910494094905 +102000,509.9999999995724,-0.05395899878498473 +102001,510.0049999995724,-0.05395889261906591 +102002,510.0099999995724,-0.05395878644319005 +102003,510.0149999995724,-0.05395868025735462 +102004,510.0199999995724,-0.053958574061557074 +102005,510.0249999995724,-0.05395846785579488 +102006,510.0299999995724,-0.053958361640065504 +102007,510.0349999995724,-0.05395825541436642 +102008,510.0399999995724,-0.05395814917869507 +102009,510.0449999995724,-0.053958042933048914 +102010,510.0499999995724,-0.053957936677425426 +102011,510.0549999995724,-0.05395783041182205 +102012,510.05999999957237,-0.053957724136236236 +102013,510.06499999957236,-0.05395761785066546 +102014,510.06999999957236,-0.05395751155510716 +102015,510.07499999957236,-0.053957405249558804 +102016,510.07999999957235,-0.05395729893401784 +102017,510.08499999957235,-0.05395719260848172 +102018,510.08999999957234,-0.053957086272947895 +102019,510.09499999957234,-0.0539569799274138 +102020,510.09999999957233,-0.053956873571876895 +102021,510.1049999995723,-0.053956767206334647 +102022,510.1099999995723,-0.05395666083078447 +102023,510.1149999995723,-0.05395655444522385 +102024,510.1199999995723,-0.05395644804965019 +102025,510.1249999995723,-0.053956341644060955 +102026,510.1299999995723,-0.053956235228453595 +102027,510.1349999995723,-0.05395612880282555 +102028,510.1399999995723,-0.05395602236717424 +102029,510.1449999995723,-0.053955915921497136 +102030,510.1499999995723,-0.05395580946579166 +102031,510.1549999995723,-0.05395570300005527 +102032,510.1599999995723,-0.05395559652428537 +102033,510.1649999995723,-0.05395549003847942 +102034,510.16999999957227,-0.05395538354263486 +102035,510.17499999957226,-0.053955277036749114 +102036,510.17999999957226,-0.053955170520819606 +102037,510.18499999957226,-0.0539550639948438 +102038,510.18999999957225,-0.0539549574588191 +102039,510.19499999957225,-0.05395485091274294 +102040,510.19999999957224,-0.053954744356612766 +102041,510.20499999957224,-0.053954637790425995 +102042,510.20999999957223,-0.05395453121418007 +102043,510.2149999995722,-0.0539544246278724 +102044,510.2199999995722,-0.05395431803150042 +102045,510.2249999995722,-0.05395421142506154 +102046,510.2299999995722,-0.05395410480855321 +102047,510.2349999995722,-0.053953998181972836 +102048,510.2399999995722,-0.05395389154531784 +102049,510.2449999995722,-0.05395378489858567 +102050,510.2499999995722,-0.05395367824177372 +102051,510.2549999995722,-0.05395357157487941 +102052,510.2599999995722,-0.053953464897900164 +102053,510.2649999995722,-0.0539533582108334 +102054,510.2699999995722,-0.05395325151367653 +102055,510.2749999995722,-0.053953144806426975 +102056,510.27999999957217,-0.05395303808908216 +102057,510.28499999957216,-0.05395293136163947 +102058,510.28999999957216,-0.053952824624096354 +102059,510.29499999957216,-0.053952717876450194 +102060,510.29999999957215,-0.05395261111869842 +102061,510.30499999957215,-0.053952504350838426 +102062,510.30999999957214,-0.05395239757286764 +102063,510.31499999957214,-0.05395229078478346 +102064,510.31999999957213,-0.05395218398658328 +102065,510.3249999995721,-0.05395207717826453 +102066,510.3299999995721,-0.0539519703598246 +102067,510.3349999995721,-0.0539518635312609 +102068,510.3399999995721,-0.053951756692570824 +102069,510.3449999995721,-0.05395164984375178 +102070,510.3499999995721,-0.05395154298480118 +102071,510.3549999995721,-0.05395143611571641 +102072,510.3599999995721,-0.05395132923649487 +102073,510.3649999995721,-0.05395122234713397 +102074,510.3699999995721,-0.0539511154476311 +102075,510.3749999995721,-0.05395100853798365 +102076,510.3799999995721,-0.05395090161818902 +102077,510.3849999995721,-0.05395079468824462 +102078,510.38999999957207,-0.05395068774814782 +102079,510.39499999957206,-0.05395058079789601 +102080,510.39999999957206,-0.0539504738374866 +102081,510.40499999957206,-0.05395036686691698 +102082,510.40999999957205,-0.05395025988618453 +102083,510.41499999957205,-0.05395015289528664 +102084,510.41999999957204,-0.05395004589422069 +102085,510.42499999957204,-0.0539499388829841 +102086,510.42999999957203,-0.053949831861574225 +102087,510.434999999572,-0.05394972482998846 +102088,510.439999999572,-0.05394961778822417 +102089,510.444999999572,-0.053949510736278766 +102090,510.449999999572,-0.05394940367414961 +102091,510.454999999572,-0.05394929660183409 +102092,510.459999999572,-0.05394918951932958 +102093,510.464999999572,-0.05394908242663347 +102094,510.469999999572,-0.053948975323743126 +102095,510.474999999572,-0.053948868210655934 +102096,510.479999999572,-0.05394876108736926 +102097,510.484999999572,-0.053948653953880495 +102098,510.489999999572,-0.053948546810187 +102099,510.494999999572,-0.05394843965628616 +102100,510.49999999957197,-0.05394833249217532 +102101,510.50499999957196,-0.05394822531785188 +102102,510.50999999957196,-0.053948118133313204 +102103,510.51499999957196,-0.053948010938556654 +102104,510.51999999957195,-0.05394790373357959 +102105,510.52499999957195,-0.053947796518379394 +102106,510.52999999957194,-0.053947689292953425 +102107,510.53499999957194,-0.05394758205729905 +102108,510.53999999957193,-0.053947474811413626 +102109,510.5449999995719,-0.053947367555294536 +102110,510.5499999995719,-0.05394726028893912 +102111,510.5549999995719,-0.05394715301234474 +102112,510.5599999995719,-0.05394704572550877 +102113,510.5649999995719,-0.05394693842842857 +102114,510.5699999995719,-0.053946831121101484 +102115,510.5749999995719,-0.053946723803524874 +102116,510.5799999995719,-0.0539466164756961 +102117,510.5849999995719,-0.05394650913761252 +102118,510.5899999995719,-0.05394640178927148 +102119,510.5949999995719,-0.05394629443067034 +102120,510.5999999995719,-0.05394618706180644 +102121,510.6049999995719,-0.05394607968267714 +102122,510.60999999957187,-0.0539459722932798 +102123,510.61499999957186,-0.05394586489361174 +102124,510.61999999957186,-0.05394575748367034 +102125,510.62499999957186,-0.053945650063452935 +102126,510.62999999957185,-0.05394554263295686 +102127,510.63499999957185,-0.053945435192179474 +102128,510.63999999957184,-0.05394532774111812 +102129,510.64499999957184,-0.05394522027977014 +102130,510.64999999957183,-0.053945112808132877 +102131,510.6549999995718,-0.05394500532620367 +102132,510.6599999995718,-0.053944897833979856 +102133,510.6649999995718,-0.053944790331458777 +102134,510.6699999995718,-0.053944682818637776 +102135,510.6749999995718,-0.053944575295514184 +102136,510.6799999995718,-0.05394446776208534 +102137,510.6849999995718,-0.053944360218348565 +102138,510.6899999995718,-0.053944252664301216 +102139,510.6949999995718,-0.05394414509994062 +102140,510.6999999995718,-0.053944037525264096 +102141,510.7049999995718,-0.05394392994026899 +102142,510.7099999995718,-0.053943822344952624 +102143,510.7149999995718,-0.05394371473931233 +102144,510.71999999957177,-0.05394360712334543 +102145,510.72499999957176,-0.05394349949704926 +102146,510.72999999957176,-0.053943391860421144 +102147,510.73499999957176,-0.05394328421345841 +102148,510.73999999957175,-0.05394317655615838 +102149,510.74499999957175,-0.05394306888851837 +102150,510.74999999957174,-0.05394296121053571 +102151,510.75499999957174,-0.05394285352220773 +102152,510.75999999957173,-0.05394274582353172 +102153,510.7649999995717,-0.05394263811450503 +102154,510.7699999995717,-0.05394253039512496 +102155,510.7749999995717,-0.05394242266538883 +102156,510.7799999995717,-0.05394231492529397 +102157,510.7849999995717,-0.05394220717483768 +102158,510.7899999995717,-0.053942099414017265 +102159,510.7949999995717,-0.05394199164283006 +102160,510.7999999995717,-0.05394188386127337 +102161,510.8049999995717,-0.0539417760693445 +102162,510.8099999995717,-0.05394166826704077 +102163,510.8149999995717,-0.05394156045435947 +102164,510.8199999995717,-0.05394145263129794 +102165,510.8249999995717,-0.053941344797853445 +102166,510.82999999957167,-0.05394123695402332 +102167,510.83499999957166,-0.05394112909980487 +102168,510.83999999957166,-0.0539410212351954 +102169,510.84499999957166,-0.05394091336019218 +102170,510.84999999957165,-0.053940805474792554 +102171,510.85499999957165,-0.05394069757899381 +102172,510.85999999957164,-0.053940589672793235 +102173,510.86499999957164,-0.05394048175618814 +102174,510.86999999957163,-0.05394037382917581 +102175,510.8749999995716,-0.053940265891753554 +102176,510.8799999995716,-0.05394015794391868 +102177,510.8849999995716,-0.05394004998566845 +102178,510.8899999995716,-0.05393994201700018 +102179,510.8949999995716,-0.05393983403791115 +102180,510.8999999995716,-0.05393972604839867 +102181,510.9049999995716,-0.05393961804846002 +102182,510.9099999995716,-0.0539395100380925 +102183,510.9149999995716,-0.05393940201729338 +102184,510.9199999995716,-0.053939293986059955 +102185,510.9249999995716,-0.05393918594438951 +102186,510.9299999995716,-0.05393907789227933 +102187,510.9349999995716,-0.0539389698297267 +102188,510.93999999957157,-0.05393886175672891 +102189,510.94499999957156,-0.05393875367328325 +102190,510.94999999957156,-0.05393864557938697 +102191,510.95499999957156,-0.05393853747503738 +102192,510.95999999957155,-0.053938429360231736 +102193,510.96499999957155,-0.05393832123496735 +102194,510.96999999957154,-0.05393821309924147 +102195,510.97499999957154,-0.05393810495305138 +102196,510.97999999957153,-0.05393799679639436 +102197,510.9849999995715,-0.053937888629267676 +102198,510.9899999995715,-0.0539377804516686 +102199,510.9949999995715,-0.05393767226359441 +102200,510.9999999995715,-0.05393756406504238 +102201,511.0049999995715,-0.05393745585600978 +102202,511.0099999995715,-0.05393734763649387 +102203,511.0149999995715,-0.05393723940649193 +102204,511.0199999995715,-0.05393713116600121 +102205,511.0249999995715,-0.053937022915019 +102206,511.0299999995715,-0.05393691465354254 +102207,511.0349999995715,-0.05393680638156911 +102208,511.0399999995715,-0.05393669809909598 +102209,511.0449999995715,-0.05393658980612038 +102210,511.04999999957147,-0.05393648150263961 +102211,511.05499999957146,-0.0539363731886509 +102212,511.05999999957146,-0.053936264864151526 +102213,511.06499999957146,-0.05393615652913873 +102214,511.06999999957145,-0.05393604818360979 +102215,511.07499999957145,-0.05393593982756194 +102216,511.07999999957144,-0.05393583146099245 +102217,511.08499999957144,-0.05393572308389855 +102218,511.08999999957143,-0.05393561469627753 +102219,511.0949999995714,-0.053935506298126615 +102220,511.0999999995714,-0.05393539788944306 +102221,511.1049999995714,-0.05393528947022411 +102222,511.1099999995714,-0.05393518104046702 +102223,511.1149999995714,-0.05393507260016904 +102224,511.1199999995714,-0.0539349641493274 +102225,511.1249999995714,-0.05393485568793936 +102226,511.1299999995714,-0.053934747216002166 +102227,511.1349999995714,-0.053934638733513056 +102228,511.1399999995714,-0.05393453024046927 +102229,511.1449999995714,-0.05393442173686806 +102230,511.1499999995714,-0.05393431322270666 +102231,511.1549999995714,-0.05393420469798231 +102232,511.15999999957137,-0.05393409616269224 +102233,511.16499999957136,-0.05393398761683369 +102234,511.16999999957136,-0.053933879060403894 +102235,511.17499999957136,-0.05393377049340009 +102236,511.17999999957135,-0.05393366191581951 +102237,511.18499999957135,-0.053933553327659395 +102238,511.18999999957134,-0.053933444728916966 +102239,511.19499999957134,-0.053933336119589455 +102240,511.19999999957133,-0.05393322749967409 +102241,511.2049999995713,-0.0539331188691681 +102242,511.2099999995713,-0.05393301022806873 +102243,511.2149999995713,-0.05393290157637317 +102244,511.2199999995713,-0.053932792914078674 +102245,511.2249999995713,-0.05393268424118246 +102246,511.2299999995713,-0.053932575557681744 +102247,511.2349999995713,-0.053932466863573766 +102248,511.2399999995713,-0.053932358158855734 +102249,511.2449999995713,-0.05393224944352487 +102250,511.2499999995713,-0.05393214071757838 +102251,511.2549999995713,-0.0539320319810135 +102252,511.2599999995713,-0.053931923233827436 +102253,511.2649999995713,-0.05393181447601741 +102254,511.26999999957127,-0.053931705707580636 +102255,511.27499999957126,-0.053931596928514326 +102256,511.27999999957126,-0.053931488138815695 +102257,511.28499999957126,-0.053931379338481945 +102258,511.28999999957125,-0.053931270527510296 +102259,511.29499999957125,-0.05393116170589795 +102260,511.29999999957124,-0.05393105287364213 +102261,511.30499999957124,-0.05393094403074004 +102262,511.30999999957123,-0.05393083517718887 +102263,511.3149999995712,-0.05393072631298583 +102264,511.3199999995712,-0.053930617438128124 +102265,511.3249999995712,-0.053930508552612964 +102266,511.3299999995712,-0.05393039965643756 +102267,511.3349999995712,-0.0539302907495991 +102268,511.3399999995712,-0.053930181832094776 +102269,511.3449999995712,-0.0539300729039218 +102270,511.3499999995712,-0.05392996396507736 +102271,511.3549999995712,-0.05392985501555866 +102272,511.3599999995712,-0.05392974605536288 +102273,511.3649999995712,-0.05392963708448724 +102274,511.3699999995712,-0.05392952810292893 +102275,511.3749999995712,-0.05392941911068512 +102276,511.37999999957117,-0.05392931010775301 +102277,511.38499999957116,-0.05392920109412981 +102278,511.38999999957116,-0.05392909206981268 +102279,511.39499999957116,-0.05392898303479884 +102280,511.39999999957115,-0.053928873989085434 +102281,511.40499999957115,-0.05392876493266968 +102282,511.40999999957114,-0.053928655865548764 +102283,511.41499999957114,-0.053928546787719855 +102284,511.41999999957113,-0.05392843769918014 +102285,511.4249999995711,-0.0539283285999268 +102286,511.4299999995711,-0.05392821948995703 +102287,511.4349999995711,-0.053928110369267986 +102288,511.4399999995711,-0.05392800123785686 +102289,511.4449999995711,-0.05392789209572084 +102290,511.4499999995711,-0.05392778294285708 +102291,511.4549999995711,-0.05392767377926276 +102292,511.4599999995711,-0.05392756460493506 +102293,511.4649999995711,-0.05392745541987115 +102294,511.4699999995711,-0.0539273462240682 +102295,511.4749999995711,-0.053927237017523395 +102296,511.4799999995711,-0.05392712780023389 +102297,511.4849999995711,-0.05392701857219686 +102298,511.48999999957107,-0.05392690933340947 +102299,511.49499999957106,-0.05392680008386889 +102300,511.49999999957106,-0.05392669082357227 +102301,511.50499999957106,-0.0539265815525168 +102302,511.50999999957105,-0.05392647227069962 +102303,511.51499999957105,-0.05392636297811791 +102304,511.51999999957104,-0.05392625367476882 +102305,511.52499999957104,-0.053926144360649506 +102306,511.52999999957103,-0.05392603503575714 +102307,511.534999999571,-0.05392592570008887 +102308,511.539999999571,-0.05392581635364185 +102309,511.544999999571,-0.053925706996413254 +102310,511.549999999571,-0.053925597628400226 +102311,511.554999999571,-0.05392548824959991 +102312,511.559999999571,-0.053925378860009476 +102313,511.564999999571,-0.05392526945962605 +102314,511.569999999571,-0.053925160048446816 +102315,511.574999999571,-0.053925050626468886 +102316,511.579999999571,-0.05392494119368944 +102317,511.584999999571,-0.05392483175010561 +102318,511.589999999571,-0.053924722295714544 +102319,511.594999999571,-0.0539246128305134 +102320,511.59999999957097,-0.0539245033544993 +102321,511.60499999957096,-0.05392439386766938 +102322,511.60999999957096,-0.053924284370020815 +102323,511.61499999957095,-0.053924174861550725 +102324,511.61999999957095,-0.053924065342256244 +102325,511.62499999957095,-0.05392395581213452 +102326,511.62999999957094,-0.0539238462711827 +102327,511.63499999957094,-0.053923736719397895 +102328,511.63999999957093,-0.05392362715677726 +102329,511.6449999995709,-0.05392351758331792 +102330,511.6499999995709,-0.053923407999017 +102331,511.6549999995709,-0.05392329840387165 +102332,511.6599999995709,-0.053923188797878996 +102333,511.6649999995709,-0.05392307918103616 +102334,511.6699999995709,-0.05392296955334027 +102335,511.6749999995709,-0.053922859914788464 +102336,511.6799999995709,-0.05392275026537786 +102337,511.6849999995709,-0.05392264060510557 +102338,511.6899999995709,-0.053922530933968746 +102339,511.6949999995709,-0.053922421251964496 +102340,511.6999999995709,-0.053922311559089935 +102341,511.7049999995709,-0.053922201855342196 +102342,511.70999999957087,-0.05392209214071839 +102343,511.71499999957086,-0.05392198241521564 +102344,511.71999999957086,-0.05392187267883106 +102345,511.72499999957085,-0.05392176293156178 +102346,511.72999999957085,-0.053921653173404895 +102347,511.73499999957085,-0.05392154340435752 +102348,511.73999999957084,-0.053921433624416794 +102349,511.74499999957084,-0.053921323833579796 +102350,511.74999999957083,-0.05392121403184365 +102351,511.7549999995708,-0.05392110421920548 +102352,511.7599999995708,-0.053920994395662364 +102353,511.7649999995708,-0.05392088456121144 +102354,511.7699999995708,-0.05392077471584979 +102355,511.7749999995708,-0.05392066485957453 +102356,511.7799999995708,-0.053920554992382776 +102357,511.7849999995708,-0.05392044511427162 +102358,511.7899999995708,-0.05392033522523815 +102359,511.7949999995708,-0.05392022532527949 +102360,511.7999999995708,-0.053920115414392726 +102361,511.8049999995708,-0.05392000549257496 +102362,511.8099999995708,-0.05391989555982329 +102363,511.8149999995708,-0.0539197856161348 +102364,511.81999999957077,-0.05391967566150661 +102365,511.82499999957076,-0.05391956569593579 +102366,511.82999999957076,-0.053919455719419446 +102367,511.83499999957075,-0.053919345731954664 +102368,511.83999999957075,-0.053919235733538545 +102369,511.84499999957075,-0.053919125724168154 +102370,511.84999999957074,-0.0539190157038406 +102371,511.85499999957074,-0.05391890567255298 +102372,511.85999999957073,-0.05391879563030236 +102373,511.8649999995707,-0.053918685577085824 +102374,511.8699999995707,-0.053918575512900475 +102375,511.8749999995707,-0.05391846543774338 +102376,511.8799999995707,-0.05391835535161162 +102377,511.8849999995707,-0.0539182452545023 +102378,511.8899999995707,-0.05391813514641247 +102379,511.8949999995707,-0.053918025027339216 +102380,511.8999999995707,-0.053917914897279616 +102381,511.9049999995707,-0.05391780475623075 +102382,511.9099999995707,-0.05391769460418969 +102383,511.9149999995707,-0.05391758444115351 +102384,511.9199999995707,-0.05391747426711929 +102385,511.9249999995707,-0.05391736408208409 +102386,511.92999999957067,-0.05391725388604499 +102387,511.93499999957066,-0.05391714367899904 +102388,511.93999999957066,-0.05391703346094333 +102389,511.94499999957065,-0.05391692323187492 +102390,511.94999999957065,-0.05391681299179088 +102391,511.95499999957065,-0.053916702740688265 +102392,511.95999999957064,-0.05391659247856414 +102393,511.96499999957064,-0.053916482205415575 +102394,511.96999999957063,-0.05391637192123963 +102395,511.9749999995706,-0.053916261626033364 +102396,511.9799999995706,-0.05391615131979384 +102397,511.9849999995706,-0.053916041002518116 +102398,511.9899999995706,-0.05391593067420324 +102399,511.9949999995706,-0.05391582033484627 +102400,511.9999999995706,-0.05391570998444426 +102401,512.0049999995707,-0.05391559962299427 +102402,512.0099999995708,-0.05391548925049334 +102403,512.0149999995709,-0.05391537886693854 +102404,512.019999999571,-0.0539152684723269 +102405,512.0249999995712,-0.05391515806665548 +102406,512.0299999995713,-0.05391504764992133 +102407,512.0349999995714,-0.0539149372221215 +102408,512.0399999995715,-0.053914826783253024 +102409,512.0449999995716,-0.053914716333312955 +102410,512.0499999995717,-0.05391460587229833 +102411,512.0549999995718,-0.053914495400206194 +102412,512.0599999995719,-0.05391438491703359 +102413,512.064999999572,-0.053914274422777554 +102414,512.0699999995721,-0.05391416391743512 +102415,512.0749999995722,-0.05391405340100333 +102416,512.0799999995724,-0.05391394287347923 +102417,512.0849999995725,-0.05391383233485985 +102418,512.0899999995726,-0.05391372178514221 +102419,512.0949999995727,-0.053913611224323366 +102420,512.0999999995728,-0.05391350065240033 +102421,512.1049999995729,-0.05391339006937014 +102422,512.109999999573,-0.05391327947522983 +102423,512.1149999995731,-0.053913168869976415 +102424,512.1199999995732,-0.053913058253606934 +102425,512.1249999995733,-0.05391294762611841 +102426,512.1299999995734,-0.05391283698750787 +102427,512.1349999995736,-0.05391272633777234 +102428,512.1399999995737,-0.053912615676908845 +102429,512.1449999995738,-0.053912505004914395 +102430,512.1499999995739,-0.05391239432178601 +102431,512.154999999574,-0.05391228362752072 +102432,512.1599999995741,-0.05391217292211553 +102433,512.1649999995742,-0.05391206220556747 +102434,512.1699999995743,-0.053911951477873546 +102435,512.1749999995744,-0.053911840739030784 +102436,512.1799999995745,-0.05391172998903619 +102437,512.1849999995746,-0.05391161922788677 +102438,512.1899999995748,-0.05391150845557955 +102439,512.1949999995749,-0.05391139767211153 +102440,512.199999999575,-0.053911286877479724 +102441,512.2049999995751,-0.053911176071681124 +102442,512.2099999995752,-0.05391106525471275 +102443,512.2149999995753,-0.05391095442657161 +102444,512.2199999995754,-0.0539108435872547 +102445,512.2249999995755,-0.05391073273675903 +102446,512.2299999995756,-0.0539106218750816 +102447,512.2349999995757,-0.053910511002219406 +102448,512.2399999995758,-0.05391040011816945 +102449,512.244999999576,-0.05391028922292874 +102450,512.2499999995761,-0.05391017831649426 +102451,512.2549999995762,-0.053910067398863004 +102452,512.2599999995763,-0.053909956470031974 +102453,512.2649999995764,-0.05390984552999817 +102454,512.2699999995765,-0.05390973457875858 +102455,512.2749999995766,-0.05390962361631017 +102456,512.2799999995767,-0.053909512642649975 +102457,512.2849999995768,-0.05390940165777495 +102458,512.2899999995769,-0.0539092906616821 +102459,512.294999999577,-0.0539091796543684 +102460,512.2999999995772,-0.05390906863583085 +102461,512.3049999995773,-0.05390895760606643 +102462,512.3099999995774,-0.0539088465650721 +102463,512.3149999995775,-0.05390873551284487 +102464,512.3199999995776,-0.05390862444938172 +102465,512.3249999995777,-0.05390851337467962 +102466,512.3299999995778,-0.053908402288735544 +102467,512.3349999995779,-0.053908291191546484 +102468,512.339999999578,-0.0539081800831094 +102469,512.3449999995781,-0.05390806896342127 +102470,512.3499999995782,-0.053907957832479085 +102471,512.3549999995784,-0.0539078466902798 +102472,512.3599999995785,-0.053907735536820385 +102473,512.3649999995786,-0.05390762437209781 +102474,512.3699999995787,-0.053907513196109064 +102475,512.3749999995788,-0.05390740200885111 +102476,512.3799999995789,-0.05390729081032089 +102477,512.384999999579,-0.053907179600515394 +102478,512.3899999995791,-0.05390706837943158 +102479,512.3949999995792,-0.053906957147066406 +102480,512.3999999995793,-0.053906845903416836 +102481,512.4049999995794,-0.053906734648479844 +102482,512.4099999995796,-0.05390662338225236 +102483,512.4149999995797,-0.05390651210473138 +102484,512.4199999995798,-0.05390640081591383 +102485,512.4249999995799,-0.05390628951579667 +102486,512.42999999958,-0.053906178204376876 +102487,512.4349999995801,-0.053906066881651386 +102488,512.4399999995802,-0.05390595554761716 +102489,512.4449999995803,-0.05390584420227114 +102490,512.4499999995804,-0.053905732845610274 +102491,512.4549999995805,-0.053905621477631525 +102492,512.4599999995806,-0.05390551009833183 +102493,512.4649999995808,-0.05390539870770814 +102494,512.4699999995809,-0.053905287305757416 +102495,512.474999999581,-0.053905175892476564 +102496,512.4799999995811,-0.05390506446786256 +102497,512.4849999995812,-0.053904953031912325 +102498,512.4899999995813,-0.05390484158462282 +102499,512.4949999995814,-0.053904730125990966 +102500,512.4999999995815,-0.05390461865601371 +102501,512.5049999995816,-0.05390450717468799 +102502,512.5099999995817,-0.05390439568201075 +102503,512.5149999995818,-0.05390428417797891 +102504,512.519999999582,-0.05390417266258941 +102505,512.5249999995821,-0.05390406113583917 +102506,512.5299999995822,-0.05390394959772515 +102507,512.5349999995823,-0.05390383804824425 +102508,512.5399999995824,-0.05390372648739343 +102509,512.5449999995825,-0.05390361491516958 +102510,512.5499999995826,-0.05390350333156965 +102511,512.5549999995827,-0.05390339173659057 +102512,512.5599999995828,-0.053903280130229235 +102513,512.5649999995829,-0.05390316851248259 +102514,512.569999999583,-0.05390305688334756 +102515,512.5749999995832,-0.05390294524282106 +102516,512.5799999995833,-0.05390283359090002 +102517,512.5849999995834,-0.053902721927581325 +102518,512.5899999995835,-0.05390261025286192 +102519,512.5949999995836,-0.05390249856673872 +102520,512.5999999995837,-0.053902386869208625 +102521,512.6049999995838,-0.05390227516026856 +102522,512.6099999995839,-0.053902163439915426 +102523,512.614999999584,-0.053902051708146145 +102524,512.6199999995841,-0.053901939964957624 +102525,512.6249999995842,-0.05390182821034677 +102526,512.6299999995844,-0.05390171644431048 +102527,512.6349999995845,-0.05390160466684569 +102528,512.6399999995846,-0.053901492877949264 +102529,512.6449999995847,-0.05390138107761814 +102530,512.6499999995848,-0.05390126926584921 +102531,512.6549999995849,-0.05390115744263936 +102532,512.659999999585,-0.05390104560798551 +102533,512.6649999995851,-0.05390093376188455 +102534,512.6699999995852,-0.053900821904333374 +102535,512.6749999995853,-0.05390071003532887 +102536,512.6799999995854,-0.05390059815486795 +102537,512.6849999995856,-0.05390048626294751 +102538,512.6899999995857,-0.05390037435956443 +102539,512.6949999995858,-0.05390026244471561 +102540,512.6999999995859,-0.053900150518397937 +102541,512.704999999586,-0.053900038580608295 +102542,512.7099999995861,-0.053899926631343575 +102543,512.7149999995862,-0.05389981467060066 +102544,512.7199999995863,-0.05389970269837646 +102545,512.7249999995864,-0.05389959071466782 +102546,512.7299999995865,-0.05389947871947166 +102547,512.7349999995866,-0.05389936671278484 +102548,512.7399999995868,-0.053899254694604236 +102549,512.7449999995869,-0.05389914266492674 +102550,512.749999999587,-0.053899030623749226 +102551,512.7549999995871,-0.053898918571068564 +102552,512.7599999995872,-0.05389880650688164 +102553,512.7649999995873,-0.05389869443118532 +102554,512.7699999995874,-0.05389858234397649 +102555,512.7749999995875,-0.053898470245252 +102556,512.7799999995876,-0.05389835813500875 +102557,512.7849999995877,-0.0538982460132436 +102558,512.7899999995878,-0.053898133879953396 +102559,512.794999999588,-0.05389802173513502 +102560,512.7999999995881,-0.05389790957878535 +102561,512.8049999995882,-0.053897797410901234 +102562,512.8099999995883,-0.053897685231479545 +102563,512.8149999995884,-0.05389757304051713 +102564,512.8199999995885,-0.053897460838010856 +102565,512.8249999995886,-0.0538973486239576 +102566,512.8299999995887,-0.0538972363983542 +102567,512.8349999995888,-0.053897124161197525 +102568,512.8399999995889,-0.05389701191248443 +102569,512.844999999589,-0.05389689965221176 +102570,512.8499999995892,-0.053896787380376385 +102571,512.8549999995893,-0.053896675096975134 +102572,512.8599999995894,-0.05389656280200487 +102573,512.8649999995895,-0.05389645049546245 +102574,512.8699999995896,-0.05389633817734472 +102575,512.8749999995897,-0.05389622584764853 +102576,512.8799999995898,-0.0538961135063707 +102577,512.8849999995899,-0.053896001153508094 +102578,512.88999999959,-0.053895888789057565 +102579,512.8949999995901,-0.053895776413015954 +102580,512.8999999995902,-0.05389566402538009 +102581,512.9049999995904,-0.053895551626146815 +102582,512.9099999995905,-0.053895439215312965 +102583,512.9149999995906,-0.053895326792875384 +102584,512.9199999995907,-0.05389521435883091 +102585,512.9249999995908,-0.053895101913176376 +102586,512.9299999995909,-0.053894989455908614 +102587,512.934999999591,-0.05389487698702446 +102588,512.9399999995911,-0.05389476450652075 +102589,512.9449999995912,-0.053894652014394286 +102590,512.9499999995913,-0.05389453951064192 +102591,512.9549999995915,-0.05389442699526049 +102592,512.9599999995916,-0.053894314468246794 +102593,512.9649999995917,-0.05389420192959767 +102594,512.9699999995918,-0.05389408937930995 +102595,512.9749999995919,-0.05389397681738045 +102596,512.979999999592,-0.053893864243805996 +102597,512.9849999995921,-0.0538937516585834 +102598,512.9899999995922,-0.05389363906170948 +102599,512.9949999995923,-0.05389352645318105 +102600,512.9999999995924,-0.05389341383299494 +102601,513.0049999995925,-0.05389330120114795 +102602,513.0099999995927,-0.053893188557636904 +102603,513.0149999995928,-0.05389307590245862 +102604,513.0199999995929,-0.0538929632356099 +102605,513.024999999593,-0.053892850557087556 +102606,513.0299999995931,-0.0538927378668884 +102607,513.0349999995932,-0.05389262516500922 +102608,513.0399999995933,-0.05389251245144685 +102609,513.0449999995934,-0.05389239972619808 +102610,513.0499999995935,-0.05389228698925972 +102611,513.0549999995936,-0.05389217424062857 +102612,513.0599999995937,-0.05389206148030142 +102613,513.0649999995939,-0.05389194870827508 +102614,513.069999999594,-0.053891835924546355 +102615,513.0749999995941,-0.053891723129112036 +102616,513.0799999995942,-0.053891610321968916 +102617,513.0849999995943,-0.05389149750311378 +102618,513.0899999995944,-0.05389138467254345 +102619,513.0949999995945,-0.053891271830254696 +102620,513.0999999995946,-0.053891158976244316 +102621,513.1049999995947,-0.05389104611050909 +102622,513.1099999995948,-0.05389093323304583 +102623,513.1149999995949,-0.0538908203438513 +102624,513.119999999595,-0.053890707442922306 +102625,513.1249999995952,-0.053890594530255624 +102626,513.1299999995953,-0.05389048160584804 +102627,513.1349999995954,-0.05389036866969631 +102628,513.1399999995955,-0.05389025572179726 +102629,513.1449999995956,-0.05389014276214763 +102630,513.1499999995957,-0.053890029790744226 +102631,513.1549999995958,-0.0538899168075838 +102632,513.1599999995959,-0.053889803812663145 +102633,513.164999999596,-0.053889690805979044 +102634,513.1699999995961,-0.05388957778752825 +102635,513.1749999995963,-0.05388946475730755 +102636,513.1799999995964,-0.053889351715313706 +102637,513.1849999995965,-0.053889238661543486 +102638,513.1899999995966,-0.05388912559599366 +102639,513.1949999995967,-0.053889012518661 +102640,513.1999999995968,-0.05388889942954228 +102641,513.2049999995969,-0.05388878632863424 +102642,513.209999999597,-0.053888673215933665 +102643,513.2149999995971,-0.0538885600914373 +102644,513.2199999995972,-0.053888446955141917 +102645,513.2249999995973,-0.053888333807044275 +102646,513.2299999995975,-0.053888220647141126 +102647,513.2349999995976,-0.053888107475429235 +102648,513.2399999995977,-0.053887994291905356 +102649,513.2449999995978,-0.05388788109656623 +102650,513.2499999995979,-0.05388776788940862 +102651,513.254999999598,-0.05388765467042929 +102652,513.2599999995981,-0.05388754143962497 +102653,513.2649999995982,-0.05388742819699242 +102654,513.2699999995983,-0.05388731494252838 +102655,513.2749999995984,-0.053887201676229596 +102656,513.2799999995985,-0.053887088398092815 +102657,513.2849999995987,-0.053886975108114785 +102658,513.2899999995988,-0.05388686180629225 +102659,513.2949999995989,-0.05388674849262195 +102660,513.299999999599,-0.05388663516710062 +102661,513.3049999995991,-0.05388652182972501 +102662,513.3099999995992,-0.05388640848049185 +102663,513.3149999995993,-0.053886295119397874 +102664,513.3199999995994,-0.05388618174643982 +102665,513.3249999995995,-0.05388606836161442 +102666,513.3299999995996,-0.053885954964918416 +102667,513.3349999995997,-0.05388584155634851 +102668,513.3399999995999,-0.05388572813590146 +102669,513.3449999996,-0.053885614703573996 +102670,513.3499999996001,-0.053885501259362825 +102671,513.3549999996002,-0.05388538780326468 +102672,513.3599999996003,-0.0538852743352763 +102673,513.3649999996004,-0.053885160855394375 +102674,513.3699999996005,-0.05388504736361567 +102675,513.3749999996006,-0.05388493385993688 +102676,513.3799999996007,-0.053884820344354725 +102677,513.3849999996008,-0.053884706816865933 +102678,513.389999999601,-0.0538845932774672 +102679,513.394999999601,-0.05388447972615527 +102680,513.3999999996012,-0.05388436616292683 +102681,513.4049999996013,-0.053884252587778604 +102682,513.4099999996014,-0.05388413900070731 +102683,513.4149999996015,-0.053884025401709654 +102684,513.4199999996016,-0.05388391179078235 +102685,513.4249999996017,-0.053883798167922096 +102686,513.4299999996018,-0.05388368453312561 +102687,513.4349999996019,-0.05388357088638958 +102688,513.439999999602,-0.05388345722771072 +102689,513.4449999996021,-0.05388334355708574 +102690,513.4499999996023,-0.053883229874511315 +102691,513.4549999996024,-0.053883116179984175 +102692,513.4599999996025,-0.053883002473500995 +102693,513.4649999996026,-0.05388288875505849 +102694,513.4699999996027,-0.05388277502465334 +102695,513.4749999996028,-0.05388266128228226 +102696,513.4799999996029,-0.05388254752794192 +102697,513.484999999603,-0.05388243376162903 +102698,513.4899999996031,-0.05388231998334028 +102699,513.4949999996032,-0.05388220619307235 +102700,513.4999999996033,-0.05388209239082192 +102701,513.5049999996035,-0.05388197857658569 +102702,513.5099999996036,-0.05388186475036035 +102703,513.5149999996037,-0.05388175091214258 +102704,513.5199999996038,-0.053881637061929055 +102705,513.5249999996039,-0.05388152319971647 +102706,513.529999999604,-0.05388140932550149 +102707,513.5349999996041,-0.05388129543928081 +102708,513.5399999996042,-0.05388118154105108 +102709,513.5449999996043,-0.053881067630809 +102710,513.5499999996044,-0.053880953708551234 +102711,513.5549999996045,-0.053880839774274464 +102712,513.5599999996047,-0.05388072582797535 +102713,513.5649999996048,-0.05388061186965058 +102714,513.5699999996049,-0.05388049789929682 +102715,513.574999999605,-0.05388038391691072 +102716,513.5799999996051,-0.05388026992248896 +102717,513.5849999996052,-0.05388015591602822 +102718,513.5899999996053,-0.053880041897525134 +102719,513.5949999996054,-0.05387992786697639 +102720,513.5999999996055,-0.05387981382437863 +102721,513.6049999996056,-0.053879699769728534 +102722,513.6099999996057,-0.053879585703022745 +102723,513.6149999996059,-0.053879471624257935 +102724,513.619999999606,-0.05387935753343073 +102725,513.6249999996061,-0.05387924343053783 +102726,513.6299999996062,-0.053879129315575855 +102727,513.6349999996063,-0.05387901518854146 +102728,513.6399999996064,-0.053878901049431306 +102729,513.6449999996065,-0.05387878689824204 +102730,513.6499999996066,-0.05387867273497031 +102731,513.6549999996067,-0.05387855855961277 +102732,513.6599999996068,-0.05387844437216606 +102733,513.664999999607,-0.05387833017262682 +102734,513.6699999996071,-0.053878215960991696 +102735,513.6749999996072,-0.05387810173725732 +102736,513.6799999996073,-0.05387798750142035 +102737,513.6849999996074,-0.05387787325347742 +102738,513.6899999996075,-0.053877758993425146 +102739,513.6949999996076,-0.0538776447212602 +102740,513.6999999996077,-0.05387753043697919 +102741,513.7049999996078,-0.05387741614057876 +102742,513.7099999996079,-0.05387730183205554 +102743,513.714999999608,-0.05387718751140617 +102744,513.7199999996081,-0.053877073178627256 +102745,513.7249999996083,-0.053876958833715446 +102746,513.7299999996084,-0.05387684447666736 +102747,513.7349999996085,-0.053876730107479634 +102748,513.7399999996086,-0.05387661572614887 +102749,513.7449999996087,-0.05387650133267171 +102750,513.7499999996088,-0.053876386927044766 +102751,513.7549999996089,-0.05387627250926467 +102752,513.759999999609,-0.053876158079328024 +102753,513.7649999996091,-0.05387604363723145 +102754,513.7699999996092,-0.05387592918297158 +102755,513.7749999996093,-0.05387581471654501 +102756,513.7799999996095,-0.053875700237948354 +102757,513.7849999996096,-0.05387558574717823 +102758,513.7899999996097,-0.05387547124423127 +102759,513.7949999996098,-0.05387535672910404 +102760,513.7999999996099,-0.05387524220179317 +102761,513.80499999961,-0.05387512766229527 +102762,513.8099999996101,-0.05387501311060695 +102763,513.8149999996102,-0.053874898546724795 +102764,513.8199999996103,-0.053874783970645414 +102765,513.8249999996104,-0.05387466938236541 +102766,513.8299999996105,-0.053874554781881384 +102767,513.8349999996107,-0.05387444016918994 +102768,513.8399999996108,-0.05387432554428767 +102769,513.8449999996109,-0.05387421090717118 +102770,513.849999999611,-0.05387409625783704 +102771,513.8549999996111,-0.053873981596281866 +102772,513.8599999996112,-0.053873866922502234 +102773,513.8649999996113,-0.05387375223649474 +102774,513.8699999996114,-0.053873637538255977 +102775,513.8749999996115,-0.05387352282778252 +102776,513.8799999996116,-0.05387340810507098 +102777,513.8849999996118,-0.053873293370117925 +102778,513.8899999996119,-0.053873178622919925 +102779,513.894999999612,-0.053873063863473576 +102780,513.8999999996121,-0.053872949091775466 +102781,513.9049999996122,-0.05387283430782216 +102782,513.9099999996123,-0.05387271951161026 +102783,513.9149999996124,-0.05387260470313632 +102784,513.9199999996125,-0.05387248988239691 +102785,513.9249999996126,-0.053872375049388625 +102786,513.9299999996127,-0.05387226020410802 +102787,513.9349999996128,-0.05387214534655168 +102788,513.939999999613,-0.05387203047671616 +102789,513.9449999996131,-0.05387191559459804 +102790,513.9499999996132,-0.053871800700193886 +102791,513.9549999996133,-0.05387168579350026 +102792,513.9599999996134,-0.053871570874513726 +102793,513.9649999996135,-0.053871455943230846 +102794,513.9699999996136,-0.05387134099964819 +102795,513.9749999996137,-0.05387122604376231 +102796,513.9799999996138,-0.05387111107556976 +102797,513.9849999996139,-0.0538709960950671 +102798,513.989999999614,-0.05387088110225089 +102799,513.9949999996142,-0.053870766097117696 +102800,513.9999999996143,-0.05387065107966406 +102801,514.0049999996144,-0.05387053604988653 +102802,514.0099999996145,-0.053870421007781645 +102803,514.0149999996146,-0.05387030595334598 +102804,514.0199999996147,-0.05387019088657607 +102805,514.0249999996148,-0.05387007580746847 +102806,514.0299999996149,-0.0538699607160197 +102807,514.034999999615,-0.053869845612226346 +102808,514.0399999996151,-0.053869730496084914 +102809,514.0449999996152,-0.053869615367591946 +102810,514.0499999996154,-0.05386950022674399 +102811,514.0549999996155,-0.0538693850735376 +102812,514.0599999996156,-0.05386926990796929 +102813,514.0649999996157,-0.05386915473003559 +102814,514.0699999996158,-0.05386903953973305 +102815,514.0749999996159,-0.053868924337058206 +102816,514.079999999616,-0.053868809122007574 +102817,514.0849999996161,-0.053868693894577706 +102818,514.0899999996162,-0.053868578654765104 +102819,514.0949999996163,-0.053868463402566305 +102820,514.0999999996164,-0.05386834813797785 +102821,514.1049999996166,-0.05386823286099625 +102822,514.1099999996167,-0.05386811757161802 +102823,514.1149999996168,-0.05386800226983968 +102824,514.1199999996169,-0.05386788695565775 +102825,514.124999999617,-0.05386777162906877 +102826,514.1299999996171,-0.05386765629006923 +102827,514.1349999996172,-0.053867540938655666 +102828,514.1399999996173,-0.05386742557482458 +102829,514.1449999996174,-0.0538673101985725 +102830,514.1499999996175,-0.05386719480989592 +102831,514.1549999996176,-0.05386707940879135 +102832,514.1599999996178,-0.05386696399525532 +102833,514.1649999996179,-0.053866848569284316 +102834,514.169999999618,-0.05386673313087485 +102835,514.1749999996181,-0.053866617680023425 +102836,514.1799999996182,-0.05386650221672654 +102837,514.1849999996183,-0.053866386740980716 +102838,514.1899999996184,-0.05386627125278243 +102839,514.1949999996185,-0.05386615575212819 +102840,514.1999999996186,-0.0538660402390145 +102841,514.2049999996187,-0.05386592471343784 +102842,514.2099999996188,-0.05386580917539472 +102843,514.214999999619,-0.05386569362488162 +102844,514.2199999996191,-0.053865578061895035 +102845,514.2249999996192,-0.05386546248643147 +102846,514.2299999996193,-0.053865346898487404 +102847,514.2349999996194,-0.05386523129805931 +102848,514.2399999996195,-0.05386511568514371 +102849,514.2449999996196,-0.05386500005973706 +102850,514.2499999996197,-0.05386488442183584 +102851,514.2549999996198,-0.05386476877143655 +102852,514.2599999996199,-0.05386465310853565 +102853,514.26499999962,-0.053864537433129626 +102854,514.2699999996202,-0.05386442174521497 +102855,514.2749999996203,-0.05386430604478815 +102856,514.2799999996204,-0.053864190331845634 +102857,514.2849999996205,-0.05386407460638389 +102858,514.2899999996206,-0.053863958868399425 +102859,514.2949999996207,-0.053863843117888666 +102860,514.2999999996208,-0.053863727354848095 +102861,514.3049999996209,-0.05386361157927419 +102862,514.309999999621,-0.05386349579116342 +102863,514.3149999996211,-0.05386337999051223 +102864,514.3199999996212,-0.053863264177317106 +102865,514.3249999996214,-0.0538631483515745 +102866,514.3299999996215,-0.05386303251328086 +102867,514.3349999996216,-0.053862916662432654 +102868,514.3399999996217,-0.05386280079902635 +102869,514.3449999996218,-0.053862684923058395 +102870,514.3499999996219,-0.053862569034525236 +102871,514.354999999622,-0.053862453133423346 +102872,514.3599999996221,-0.053862337219749166 +102873,514.3649999996222,-0.053862221293499137 +102874,514.3699999996223,-0.053862105354669725 +102875,514.3749999996224,-0.05386198940325737 +102876,514.3799999996226,-0.053861873439258516 +102877,514.3849999996227,-0.0538617574626696 +102878,514.3899999996228,-0.053861641473487085 +102879,514.3949999996229,-0.053861525471707396 +102880,514.399999999623,-0.05386140945732699 +102881,514.4049999996231,-0.05386129343034229 +102882,514.4099999996232,-0.053861177390749734 +102883,514.4149999996233,-0.05386106133854577 +102884,514.4199999996234,-0.05386094527372681 +102885,514.4249999996235,-0.05386082919628932 +102886,514.4299999996236,-0.05386071310622971 +102887,514.4349999996238,-0.05386059700354441 +102888,514.4399999996239,-0.05386048088822986 +102889,514.444999999624,-0.053860364760282484 +102890,514.4499999996241,-0.053860248619698695 +102891,514.4549999996242,-0.05386013246647494 +102892,514.4599999996243,-0.05386001630060761 +102893,514.4649999996244,-0.053859900122093164 +102894,514.4699999996245,-0.053859783930928 +102895,514.4749999996246,-0.05385966772710855 +102896,514.4799999996247,-0.05385955151063121 +102897,514.4849999996248,-0.05385943528149241 +102898,514.489999999625,-0.05385931903968856 +102899,514.4949999996251,-0.05385920278521607 +102900,514.4999999996252,-0.053859086518071364 +102901,514.5049999996253,-0.05385897023825085 +102902,514.5099999996254,-0.05385885394575093 +102903,514.5149999996255,-0.053858737640568 +102904,514.5199999996256,-0.05385862132269848 +102905,514.5249999996257,-0.053858504992138775 +102906,514.5299999996258,-0.0538583886488853 +102907,514.5349999996259,-0.05385827229293442 +102908,514.539999999626,-0.05385815592428256 +102909,514.5449999996262,-0.053858039542926124 +102910,514.5499999996263,-0.05385792314886149 +102911,514.5549999996264,-0.05385780674208506 +102912,514.5599999996265,-0.05385769032259323 +102913,514.5649999996266,-0.0538575738903824 +102914,514.5699999996267,-0.053857457445448946 +102915,514.5749999996268,-0.05385734098778927 +102916,514.5799999996269,-0.05385722451739976 +102917,514.584999999627,-0.05385710803427679 +102918,514.5899999996271,-0.05385699153841676 +102919,514.5949999996272,-0.05385687502981605 +102920,514.5999999996274,-0.053856758508471034 +102921,514.6049999996275,-0.053856641974378096 +102922,514.6099999996276,-0.053856525427533615 +102923,514.6149999996277,-0.05385640886793397 +102924,514.6199999996278,-0.05385629229557554 +102925,514.6249999996279,-0.05385617571045471 +102926,514.629999999628,-0.053856059112567835 +102927,514.6349999996281,-0.05385594250191129 +102928,514.6399999996282,-0.05385582587848144 +102929,514.6449999996283,-0.053855709242274674 +102930,514.6499999996284,-0.053855592593287344 +102931,514.6549999996286,-0.053855475931515816 +102932,514.6599999996287,-0.05385535925695646 +102933,514.6649999996288,-0.05385524256960565 +102934,514.6699999996289,-0.05385512586945973 +102935,514.674999999629,-0.05385500915651507 +102936,514.6799999996291,-0.05385489243076802 +102937,514.6849999996292,-0.05385477569221493 +102938,514.6899999996293,-0.053854658940852174 +102939,514.6949999996294,-0.05385454217667611 +102940,514.6999999996295,-0.05385442539968307 +102941,514.7049999996296,-0.05385430860986941 +102942,514.7099999996298,-0.053854191807231486 +102943,514.7149999996299,-0.05385407499176566 +102944,514.71999999963,-0.05385395816346825 +102945,514.7249999996301,-0.053853841322335616 +102946,514.7299999996302,-0.053853724468364096 +102947,514.7349999996303,-0.05385360760155004 +102948,514.7399999996304,-0.05385349072188979 +102949,514.7449999996305,-0.05385337382937968 +102950,514.7499999996306,-0.05385325692401605 +102951,514.7549999996307,-0.05385314000579524 +102952,514.7599999996308,-0.053853023074713575 +102953,514.764999999631,-0.053852906130767396 +102954,514.7699999996311,-0.05385278917395303 +102955,514.7749999996312,-0.05385267220426681 +102956,514.7799999996313,-0.05385255522170506 +102957,514.7849999996314,-0.053852438226264114 +102958,514.7899999996315,-0.0538523212179403 +102959,514.7949999996316,-0.053852204196729946 +102960,514.7999999996317,-0.05385208716262936 +102961,514.8049999996318,-0.05385197011563487 +102962,514.8099999996319,-0.0538518530557428 +102963,514.814999999632,-0.05385173598294945 +102964,514.8199999996322,-0.05385161889725116 +102965,514.8249999996323,-0.05385150179864424 +102966,514.8299999996324,-0.05385138468712499 +102967,514.8349999996325,-0.05385126756268974 +102968,514.8399999996326,-0.053851150425334796 +102969,514.8449999996327,-0.05385103327505647 +102970,514.8499999996328,-0.05385091611185105 +102971,514.8549999996329,-0.053850798935714865 +102972,514.859999999633,-0.053850681746644216 +102973,514.8649999996331,-0.0538505645446354 +102974,514.8699999996333,-0.05385044732968473 +102975,514.8749999996334,-0.05385033010178849 +102976,514.8799999996335,-0.05385021286094298 +102977,514.8849999996336,-0.05385009560714451 +102978,514.8899999996337,-0.05384997834038937 +102979,514.8949999996338,-0.05384986106067386 +102980,514.8999999996339,-0.05384974376799426 +102981,514.904999999634,-0.05384962646234686 +102982,514.9099999996341,-0.05384950914372797 +102983,514.9149999996342,-0.053849391812133864 +102984,514.9199999996343,-0.05384927446756082 +102985,514.9249999996345,-0.05384915711000514 +102986,514.9299999996346,-0.053849039739463096 +102987,514.9349999996347,-0.05384892235593098 +102988,514.9399999996348,-0.053848804959405076 +102989,514.9449999996349,-0.053848687549881646 +102990,514.949999999635,-0.05384857012735698 +102991,514.9549999996351,-0.05384845269182735 +102992,514.9599999996352,-0.05384833524328903 +102993,514.9649999996353,-0.05384821778173829 +102994,514.9699999996354,-0.05384810030717141 +102995,514.9749999996355,-0.053847982819584646 +102996,514.9799999996357,-0.053847865318974286 +102997,514.9849999996358,-0.053847747805336584 +102998,514.9899999996359,-0.05384763027866781 +102999,514.994999999636,-0.05384751273896423 +103000,514.9999999996361,-0.053847395186222086 +103001,515.0049999996362,-0.053847277620437665 +103002,515.0099999996363,-0.05384716004160721 +103003,515.0149999996364,-0.053847042449727 +103004,515.0199999996365,-0.05384692484479327 +103005,515.0249999996366,-0.05384680722680227 +103006,515.0299999996367,-0.05384668959575028 +103007,515.0349999996369,-0.053846571951633525 +103008,515.039999999637,-0.053846454294448266 +103009,515.0449999996371,-0.053846336624190756 +103010,515.0499999996372,-0.05384621894085723 +103011,515.0549999996373,-0.053846101244443945 +103012,515.0599999996374,-0.05384598353494714 +103013,515.0649999996375,-0.05384586581236306 +103014,515.0699999996376,-0.05384574807668794 +103015,515.0749999996377,-0.05384563032791802 +103016,515.0799999996378,-0.05384551256604954 +103017,515.084999999638,-0.053845394791078735 +103018,515.089999999638,-0.05384527700300184 +103019,515.0949999996382,-0.053845159201815096 +103020,515.0999999996383,-0.053845041387514725 +103021,515.1049999996384,-0.05384492356009696 +103022,515.1099999996385,-0.05384480571955803 +103023,515.1149999996386,-0.05384468786589416 +103024,515.1199999996387,-0.05384456999910158 +103025,515.1249999996388,-0.05384445211917651 +103026,515.1299999996389,-0.05384433422611517 +103027,515.134999999639,-0.05384421631991378 +103028,515.1399999996391,-0.05384409840056857 +103029,515.1449999996393,-0.053843980468075744 +103030,515.1499999996394,-0.05384386252243152 +103031,515.1549999996395,-0.05384374456363211 +103032,515.1599999996396,-0.05384362659167376 +103033,515.1649999996397,-0.05384350860655263 +103034,515.1699999996398,-0.05384339060826497 +103035,515.1749999996399,-0.05384327259680697 +103036,515.17999999964,-0.05384315457217484 +103037,515.1849999996401,-0.05384303653436477 +103038,515.1899999996402,-0.053842918483372984 +103039,515.1949999996403,-0.05384280041919568 +103040,515.1999999996405,-0.05384268234182906 +103041,515.2049999996406,-0.05384256425126933 +103042,515.2099999996407,-0.053842446147512664 +103043,515.2149999996408,-0.05384232803055527 +103044,515.2199999996409,-0.053842209900393345 +103045,515.224999999641,-0.05384209175702307 +103046,515.2299999996411,-0.05384197360044066 +103047,515.2349999996412,-0.05384185543064229 +103048,515.2399999996413,-0.05384173724762414 +103049,515.2449999996414,-0.05384161905138241 +103050,515.2499999996415,-0.053841500841913276 +103051,515.2549999996417,-0.053841382619212924 +103052,515.2599999996418,-0.053841264383277534 +103053,515.2649999996419,-0.0538411461341033 +103054,515.269999999642,-0.05384102787168638 +103055,515.2749999996421,-0.05384090959602295 +103056,515.2799999996422,-0.05384079130710921 +103057,515.2849999996423,-0.053840673004941324 +103058,515.2899999996424,-0.053840554689515444 +103059,515.2949999996425,-0.05384043636082777 +103060,515.2999999996426,-0.05384031801887444 +103061,515.3049999996427,-0.053840199663651646 +103062,515.3099999996429,-0.053840081295155544 +103063,515.314999999643,-0.05383996291338231 +103064,515.3199999996431,-0.053839844518328094 +103065,515.3249999996432,-0.05383972610998906 +103066,515.3299999996433,-0.05383960768836137 +103067,515.3349999996434,-0.053839489253441175 +103068,515.3399999996435,-0.053839370805224634 +103069,515.3449999996436,-0.05383925234370791 +103070,515.3499999996437,-0.05383913386888715 +103071,515.3549999996438,-0.0538390153807585 +103072,515.359999999644,-0.053838896879318116 +103073,515.364999999644,-0.05383877836456215 +103074,515.3699999996442,-0.053838659836486745 +103075,515.3749999996443,-0.05383854129508805 +103076,515.3799999996444,-0.053838422740362206 +103077,515.3849999996445,-0.05383830417230536 +103078,515.3899999996446,-0.05383818559091364 +103079,515.3949999996447,-0.0538380669961832 +103080,515.3999999996448,-0.053837948388110166 +103081,515.4049999996449,-0.05383782976669067 +103082,515.409999999645,-0.05383771113192087 +103083,515.4149999996451,-0.05383759248379687 +103084,515.4199999996453,-0.053837473822314824 +103085,515.4249999996454,-0.05383735514747083 +103086,515.4299999996455,-0.05383723645926105 +103087,515.4349999996456,-0.053837117757681595 +103088,515.4399999996457,-0.053836999042728595 +103089,515.4449999996458,-0.05383688031439816 +103090,515.4499999996459,-0.05383676157268643 +103091,515.454999999646,-0.05383664281758951 +103092,515.4599999996461,-0.05383652404910352 +103093,515.4649999996462,-0.05383640526722458 +103094,515.4699999996463,-0.05383628647194881 +103095,515.4749999996465,-0.05383616766327232 +103096,515.4799999996466,-0.05383604884119122 +103097,515.4849999996467,-0.05383593000570162 +103098,515.4899999996468,-0.053835811156799626 +103099,515.4949999996469,-0.05383569229448133 +103100,515.499999999647,-0.05383557341874287 +103101,515.5049999996471,-0.053835454529580336 +103102,515.5099999996472,-0.05383533562698982 +103103,515.5149999996473,-0.05383521671096743 +103104,515.5199999996474,-0.05383509778150928 +103105,515.5249999996475,-0.053834978838611436 +103106,515.5299999996477,-0.05383485988227003 +103107,515.5349999996478,-0.053834740912481124 +103108,515.5399999996479,-0.05383462192924083 +103109,515.544999999648,-0.05383450293254522 +103110,515.5499999996481,-0.0538343839223904 +103111,515.5549999996482,-0.05383426489877246 +103112,515.5599999996483,-0.05383414586168748 +103113,515.5649999996484,-0.05383402681113152 +103114,515.5699999996485,-0.053833907747100694 +103115,515.5749999996486,-0.053833788669591084 +103116,515.5799999996487,-0.05383366957859876 +103117,515.5849999996489,-0.05383355047411979 +103118,515.589999999649,-0.053833431356150256 +103119,515.5949999996491,-0.05383331222468624 +103120,515.5999999996492,-0.05383319307972381 +103121,515.6049999996493,-0.05383307392125904 +103122,515.6099999996494,-0.05383295474928801 +103123,515.6149999996495,-0.053832835563806754 +103124,515.6199999996496,-0.05383271636481138 +103125,515.6249999996497,-0.05383259715229792 +103126,515.6299999996498,-0.05383247792626246 +103127,515.63499999965,-0.05383235868670104 +103128,515.6399999996501,-0.05383223943360974 +103129,515.6449999996502,-0.05383212016698461 +103130,515.6499999996503,-0.053832000886821704 +103131,515.6549999996504,-0.053831881593117074 +103132,515.6599999996505,-0.05383176228586677 +103133,515.6649999996506,-0.053831642965066866 +103134,515.6699999996507,-0.05383152363071339 +103135,515.6749999996508,-0.05383140428280241 +103136,515.6799999996509,-0.05383128492132996 +103137,515.684999999651,-0.05383116554629207 +103138,515.6899999996511,-0.05383104615768481 +103139,515.6949999996513,-0.05383092675550421 +103140,515.6999999996514,-0.053830807339746316 +103141,515.7049999996515,-0.05383068791040715 +103142,515.7099999996516,-0.05383056846748276 +103143,515.7149999996517,-0.05383044901096919 +103144,515.7199999996518,-0.05383032954086247 +103145,515.7249999996519,-0.05383021005715862 +103146,515.729999999652,-0.05383009055985369 +103147,515.7349999996521,-0.053829971048943694 +103148,515.7399999996522,-0.053829851524424654 +103149,515.7449999996524,-0.053829731986292616 +103150,515.7499999996525,-0.05382961243454358 +103151,515.7549999996526,-0.05382949286917358 +103152,515.7599999996527,-0.05382937329017864 +103153,515.7649999996528,-0.053829253697554764 +103154,515.7699999996529,-0.05382913409129799 +103155,515.774999999653,-0.053829014471404306 +103156,515.7799999996531,-0.053828894837869755 +103157,515.7849999996532,-0.05382877519069034 +103158,515.7899999996533,-0.05382865552986206 +103159,515.7949999996534,-0.053828535855380936 +103160,515.7999999996536,-0.053828416167242966 +103161,515.8049999996537,-0.05382829646544415 +103162,515.8099999996538,-0.053828176749980514 +103163,515.8149999996539,-0.05382805702084805 +103164,515.819999999654,-0.053827937278042755 +103165,515.8249999996541,-0.05382781752156062 +103166,515.8299999996542,-0.05382769775139765 +103167,515.8349999996543,-0.05382757796754985 +103168,515.8399999996544,-0.0538274581700132 +103169,515.8449999996545,-0.053827338358783706 +103170,515.8499999996546,-0.05382721853385735 +103171,515.8549999996548,-0.053827098695230106 +103172,515.8599999996549,-0.053826978842897985 +103173,515.864999999655,-0.05382685897685697 +103174,515.8699999996551,-0.05382673909710303 +103175,515.8749999996552,-0.05382661920363215 +103176,515.8799999996553,-0.05382649929644032 +103177,515.8849999996554,-0.053826379375523516 +103178,515.8899999996555,-0.05382625944087771 +103179,515.8949999996556,-0.05382613949249887 +103180,515.8999999996557,-0.053826019530383 +103181,515.9049999996558,-0.05382589955452603 +103182,515.909999999656,-0.053825779564923966 +103183,515.9149999996561,-0.05382565956157275 +103184,515.9199999996562,-0.05382553954446837 +103185,515.9249999996563,-0.05382541951360679 +103186,515.9299999996564,-0.053825299468983956 +103187,515.9349999996565,-0.05382517941059585 +103188,515.9399999996566,-0.053825059338438425 +103189,515.9449999996567,-0.053824939252507635 +103190,515.9499999996568,-0.053824819152799436 +103191,515.9549999996569,-0.05382469903930978 +103192,515.959999999657,-0.053824578912034626 +103193,515.9649999996572,-0.053824458770969925 +103194,515.9699999996573,-0.05382433861611163 +103195,515.9749999996574,-0.05382421844745569 +103196,515.9799999996575,-0.05382409826499806 +103197,515.9849999996576,-0.053823978068734665 +103198,515.9899999996577,-0.05382385785866146 +103199,515.9949999996578,-0.053823737634774375 +103200,515.9999999996579,-0.05382361739706937 +103201,516.004999999658,-0.053823497145542375 +103202,516.0099999996581,-0.053823376880189316 +103203,516.0149999996582,-0.05382325660100614 +103204,516.0199999996584,-0.053823136307988774 +103205,516.0249999996585,-0.05382301600113316 +103206,516.0299999996586,-0.05382289568043521 +103207,516.0349999996587,-0.05382277534589086 +103208,516.0399999996588,-0.05382265499749605 +103209,516.0449999996589,-0.05382253463524667 +103210,516.049999999659,-0.05382241425913867 +103211,516.0549999996591,-0.05382229386916797 +103212,516.0599999996592,-0.05382217346533048 +103213,516.0649999996593,-0.05382205304762214 +103214,516.0699999996594,-0.053821932616038834 +103215,516.0749999996596,-0.053821812170576494 +103216,516.0799999996597,-0.05382169171123102 +103217,516.0849999996598,-0.053821571237998356 +103218,516.0899999996599,-0.053821450750874376 +103219,516.09499999966,-0.053821330249855 +103220,516.0999999996601,-0.053821209734936135 +103221,516.1049999996602,-0.053821089206113684 +103222,516.1099999996603,-0.05382096866338355 +103223,516.1149999996604,-0.053820848106741634 +103224,516.1199999996605,-0.053820727536183825 +103225,516.1249999996606,-0.053820606951706026 +103226,516.1299999996608,-0.05382048635330415 +103227,516.1349999996609,-0.05382036574097407 +103228,516.139999999661,-0.05382024511471168 +103229,516.1449999996611,-0.053820124474512884 +103230,516.1499999996612,-0.053820003820373545 +103231,516.1549999996613,-0.053819883152289576 +103232,516.1599999996614,-0.05381976247025685 +103233,516.1649999996615,-0.053819641774271246 +103234,516.1699999996616,-0.053819521064328656 +103235,516.1749999996617,-0.05381940034042495 +103236,516.1799999996618,-0.05381927960255601 +103237,516.184999999662,-0.05381915885071772 +103238,516.1899999996621,-0.05381903808490594 +103239,516.1949999996622,-0.05381891730511656 +103240,516.1999999996623,-0.05381879651134544 +103241,516.2049999996624,-0.053818675703588455 +103242,516.2099999996625,-0.05381855488184148 +103243,516.2149999996626,-0.053818434046100365 +103244,516.2199999996627,-0.053818313196360976 +103245,516.2249999996628,-0.05381819233261919 +103246,516.2299999996629,-0.053818071454870865 +103247,516.234999999663,-0.05381795056311184 +103248,516.2399999996632,-0.05381782965733798 +103249,516.2449999996633,-0.05381770873754516 +103250,516.2499999996634,-0.053817587803729215 +103251,516.2549999996635,-0.053817466855885995 +103252,516.2599999996636,-0.05381734589401137 +103253,516.2649999996637,-0.05381722491810116 +103254,516.2699999996638,-0.05381710392815124 +103255,516.2749999996639,-0.053816982924157444 +103256,516.279999999664,-0.05381686190611562 +103257,516.2849999996641,-0.05381674087402159 +103258,516.2899999996642,-0.053816619827871226 +103259,516.2949999996644,-0.053816498767660335 +103260,516.2999999996645,-0.053816377693384765 +103261,516.3049999996646,-0.053816256605040365 +103262,516.3099999996647,-0.05381613550262296 +103263,516.3149999996648,-0.05381601438612836 +103264,516.3199999996649,-0.05381589325555242 +103265,516.324999999665,-0.05381577211089096 +103266,516.3299999996651,-0.053815650952139804 +103267,516.3349999996652,-0.05381552977929478 +103268,516.3399999996653,-0.053815408592351704 +103269,516.3449999996654,-0.0538152873913064 +103270,516.3499999996656,-0.05381516617615468 +103271,516.3549999996657,-0.05381504494689237 +103272,516.3599999996658,-0.053814923703515295 +103273,516.3649999996659,-0.053814802446019244 +103274,516.369999999666,-0.05381468117440005 +103275,516.3749999996661,-0.05381455988865351 +103276,516.3799999996662,-0.05381443858877543 +103277,516.3849999996663,-0.05381431727476164 +103278,516.3899999996664,-0.05381419594660791 +103279,516.3949999996665,-0.053814074604310064 +103280,516.3999999996666,-0.05381395324786391 +103281,516.4049999996668,-0.05381383187726523 +103282,516.4099999996669,-0.053813710492509825 +103283,516.414999999667,-0.05381358909359351 +103284,516.4199999996671,-0.053813467680512046 +103285,516.4249999996672,-0.05381334625326126 +103286,516.4299999996673,-0.05381322481183692 +103287,516.4349999996674,-0.05381310335623482 +103288,516.4399999996675,-0.05381298188645074 +103289,516.4449999996676,-0.053812860402480484 +103290,516.4499999996677,-0.05381273890431982 +103291,516.4549999996678,-0.05381261739196452 +103292,516.459999999668,-0.0538124958654104 +103293,516.4649999996681,-0.05381237432465321 +103294,516.4699999996682,-0.05381225276968873 +103295,516.4749999996683,-0.05381213120051274 +103296,516.4799999996684,-0.05381200961712101 +103297,516.4849999996685,-0.0538118880195093 +103298,516.4899999996686,-0.05381176640767339 +103299,516.4949999996687,-0.05381164478160905 +103300,516.4999999996688,-0.05381152314131204 +103301,516.5049999996689,-0.053811401486778127 +103302,516.509999999669,-0.05381127981800307 +103303,516.5149999996692,-0.05381115813498265 +103304,516.5199999996693,-0.05381103643771259 +103305,516.5249999996694,-0.05381091472618867 +103306,516.5299999996695,-0.053810793000406636 +103307,516.5349999996696,-0.05381067126036224 +103308,516.5399999996697,-0.05381054950605125 +103309,516.5449999996698,-0.053810427737469385 +103310,516.5499999996699,-0.05381030595461242 +103311,516.55499999967,-0.053810184157476085 +103312,516.5599999996701,-0.05381006234605613 +103313,516.5649999996702,-0.05380994052034829 +103314,516.5699999996704,-0.05380981868034833 +103315,516.5749999996705,-0.05380969682605196 +103316,516.5799999996706,-0.05380957495745493 +103317,516.5849999996707,-0.05380945307455296 +103318,516.5899999996708,-0.0538093311773418 +103319,516.5949999996709,-0.05380920926581719 +103320,516.599999999671,-0.05380908733997484 +103321,516.6049999996711,-0.05380896539981049 +103322,516.6099999996712,-0.05380884344531985 +103323,516.6149999996713,-0.053808721476498664 +103324,516.6199999996714,-0.05380859949334264 +103325,516.6249999996716,-0.0538084774958475 +103326,516.6299999996717,-0.053808355484008974 +103327,516.6349999996718,-0.05380823345782277 +103328,516.6399999996719,-0.053808111417284595 +103329,516.644999999672,-0.053807989362390174 +103330,516.6499999996721,-0.05380786729313522 +103331,516.6549999996722,-0.05380774520951543 +103332,516.6599999996723,-0.05380762311152652 +103333,516.6649999996724,-0.053807500999164204 +103334,516.6699999996725,-0.053807378872424184 +103335,516.6749999996727,-0.05380725673130215 +103336,516.6799999996728,-0.053807134575793815 +103337,516.6849999996729,-0.05380701240589487 +103338,516.689999999673,-0.05380689022160101 +103339,516.6949999996731,-0.05380676802290793 +103340,516.6999999996732,-0.05380664580981133 +103341,516.7049999996733,-0.0538065235823069 +103342,516.7099999996734,-0.053806401340390324 +103343,516.7149999996735,-0.053806279084057294 +103344,516.7199999996736,-0.0538061568133035 +103345,516.7249999996737,-0.05380603452812463 +103346,516.7299999996739,-0.05380591222851635 +103347,516.734999999674,-0.05380578991447435 +103348,516.7399999996741,-0.0538056675859943 +103349,516.7449999996742,-0.05380554524307189 +103350,516.7499999996743,-0.05380542288570278 +103351,516.7549999996744,-0.05380530051388266 +103352,516.7599999996745,-0.05380517812760719 +103353,516.7649999996746,-0.05380505572687204 +103354,516.7699999996747,-0.05380493331167288 +103355,516.7749999996748,-0.05380481088200539 +103356,516.7799999996749,-0.0538046884378652 +103357,516.784999999675,-0.053804565979248 +103358,516.7899999996752,-0.05380444350614943 +103359,516.7949999996753,-0.053804321018565165 +103360,516.7999999996754,-0.053804198516490855 +103361,516.8049999996755,-0.053804075999922166 +103362,516.8099999996756,-0.05380395346885473 +103363,516.8149999996757,-0.05380383092328421 +103364,516.8199999996758,-0.053803708363206255 +103365,516.8249999996759,-0.053803585788616506 +103366,516.829999999676,-0.053803463199510605 +103367,516.8349999996761,-0.05380334059588421 +103368,516.8399999996763,-0.05380321797773296 +103369,516.8449999996764,-0.05380309534505248 +103370,516.8499999996765,-0.05380297269783843 +103371,516.8549999996766,-0.053802850036086425 +103372,516.8599999996767,-0.053802727359792114 +103373,516.8649999996768,-0.05380260466895112 +103374,516.8699999996769,-0.05380248196355909 +103375,516.874999999677,-0.05380235924361163 +103376,516.8799999996771,-0.05380223650910437 +103377,516.8849999996772,-0.05380211376003295 +103378,516.8899999996773,-0.05380199099639299 +103379,516.8949999996775,-0.0538018682181801 +103380,516.8999999996776,-0.05380174542538991 +103381,516.9049999996777,-0.05380162261801803 +103382,516.9099999996778,-0.053801499796060075 +103383,516.9149999996779,-0.053801376959511656 +103384,516.919999999678,-0.0538012541083684 +103385,516.9249999996781,-0.0538011312426259 +103386,516.9299999996782,-0.05380100836227977 +103387,516.9349999996783,-0.05380088546732563 +103388,516.9399999996784,-0.05380076255775907 +103389,516.9449999996785,-0.0538006396335757 +103390,516.9499999996787,-0.05380051669477111 +103391,516.9549999996788,-0.0538003937413409 +103392,516.9599999996789,-0.05380027077328067 +103393,516.964999999679,-0.05380014779058601 +103394,516.9699999996791,-0.05380002479325252 +103395,516.9749999996792,-0.05379990178127579 +103396,516.9799999996793,-0.05379977875465142 +103397,516.9849999996794,-0.05379965571337498 +103398,516.9899999996795,-0.053799532657442056 +103399,516.9949999996796,-0.05379940958684824 +103400,516.9999999996797,-0.05379928650158911 +103401,517.0049999996799,-0.05379916340166025 +103402,517.00999999968,-0.05379904028705724 +103403,517.0149999996801,-0.053798917157775634 +103404,517.0199999996802,-0.05379879401381103 +103405,517.0249999996803,-0.053798670855159006 +103406,517.0299999996804,-0.053798547681815106 +103407,517.0349999996805,-0.05379842449377492 +103408,517.0399999996806,-0.053798301291033995 +103409,517.0449999996807,-0.05379817807358791 +103410,517.0499999996808,-0.05379805484143222 +103411,517.054999999681,-0.0537979315945625 +103412,517.059999999681,-0.053797808332974296 +103413,517.0649999996812,-0.05379768505666317 +103414,517.0699999996813,-0.05379756176562468 +103415,517.0749999996814,-0.05379743845985438 +103416,517.0799999996815,-0.0537973151393478 +103417,517.0849999996816,-0.05379719180410052 +103418,517.0899999996817,-0.053797068454108074 +103419,517.0949999996818,-0.053796945089366006 +103420,517.0999999996819,-0.05379682170986986 +103421,517.104999999682,-0.05379669831561518 +103422,517.1099999996821,-0.0537965749065975 +103423,517.1149999996823,-0.053796451482812375 +103424,517.1199999996824,-0.05379632804425532 +103425,517.1249999996825,-0.053796204590921874 +103426,517.1299999996826,-0.05379608112280758 +103427,517.1349999996827,-0.05379595763990795 +103428,517.1399999996828,-0.053795834142218536 +103429,517.1449999996829,-0.05379571062973486 +103430,517.149999999683,-0.053795587102452434 +103431,517.1549999996831,-0.05379546356036678 +103432,517.1599999996832,-0.05379534000347343 +103433,517.1649999996833,-0.0537952164317679 +103434,517.1699999996835,-0.05379509284524571 +103435,517.1749999996836,-0.05379496924390236 +103436,517.1799999996837,-0.053794845627733366 +103437,517.1849999996838,-0.053794721996734254 +103438,517.1899999996839,-0.05379459835090053 +103439,517.194999999684,-0.05379447469022769 +103440,517.1999999996841,-0.05379435101471126 +103441,517.2049999996842,-0.05379422732434671 +103442,517.2099999996843,-0.05379410361912958 +103443,517.2149999996844,-0.05379397989905533 +103444,517.2199999996845,-0.05379385616411949 +103445,517.2249999996847,-0.05379373241431755 +103446,517.2299999996848,-0.05379360864964498 +103447,517.2349999996849,-0.0537934848700973 +103448,517.239999999685,-0.053793361075669996 +103449,517.2449999996851,-0.05379323726635853 +103450,517.2499999996852,-0.05379311344215842 +103451,517.2549999996853,-0.053792989603065125 +103452,517.2599999996854,-0.05379286574907415 +103453,517.2649999996855,-0.05379274188018097 +103454,517.2699999996856,-0.053792617996381055 +103455,517.2749999996857,-0.053792494097669875 +103456,517.2799999996859,-0.05379237018404291 +103457,517.284999999686,-0.05379224625549564 +103458,517.2899999996861,-0.05379212231202354 +103459,517.2949999996862,-0.05379199835362206 +103460,517.2999999996863,-0.05379187438028669 +103461,517.3049999996864,-0.05379175039201287 +103462,517.3099999996865,-0.053791626388796074 +103463,517.3149999996866,-0.05379150237063176 +103464,517.3199999996867,-0.0537913783375154 +103465,517.3249999996868,-0.05379125428944244 +103466,517.329999999687,-0.05379113022640833 +103467,517.334999999687,-0.05379100614840853 +103468,517.3399999996872,-0.05379088205543847 +103469,517.3449999996873,-0.053790757947493634 +103470,517.3499999996874,-0.05379063382456946 +103471,517.3549999996875,-0.05379050968666137 +103472,517.3599999996876,-0.05379038553376482 +103473,517.3649999996877,-0.053790261365875267 +103474,517.3699999996878,-0.05379013718298813 +103475,517.3749999996879,-0.053790012985098855 +103476,517.379999999688,-0.05378988877220287 +103477,517.3849999996881,-0.053789764544295626 +103478,517.3899999996883,-0.05378964030137253 +103479,517.3949999996884,-0.053789516043429034 +103480,517.3999999996885,-0.05378939177046054 +103481,517.4049999996886,-0.053789267482462495 +103482,517.4099999996887,-0.053789143179430315 +103483,517.4149999996888,-0.05378901886135942 +103484,517.4199999996889,-0.053788894528245236 +103485,517.424999999689,-0.05378877018008318 +103486,517.4299999996891,-0.05378864581686865 +103487,517.4349999996892,-0.05378852143859709 +103488,517.4399999996893,-0.05378839704526388 +103489,517.4449999996895,-0.05378827263686445 +103490,517.4499999996896,-0.05378814821339419 +103491,517.4549999996897,-0.05378802377484853 +103492,517.4599999996898,-0.053787899321222854 +103493,517.4649999996899,-0.05378777485251257 +103494,517.46999999969,-0.05378765036871307 +103495,517.4749999996901,-0.053787525869819774 +103496,517.4799999996902,-0.05378740135582805 +103497,517.4849999996903,-0.05378727682673332 +103498,517.4899999996904,-0.053787152282530955 +103499,517.4949999996905,-0.05378702772321634 +103500,517.4999999996907,-0.05378690314878489 +103501,517.5049999996908,-0.05378677855923196 +103502,517.5099999996909,-0.05378665395455295 +103503,517.514999999691,-0.05378652933474324 +103504,517.5199999996911,-0.0537864046997982 +103505,517.5249999996912,-0.053786280049713225 +103506,517.5299999996913,-0.053786155384483676 +103507,517.5349999996914,-0.053786030704104947 +103508,517.5399999996915,-0.05378590600857238 +103509,517.5449999996916,-0.05378578129788137 +103510,517.5499999996917,-0.05378565657202727 +103511,517.5549999996919,-0.05378553183100544 +103512,517.559999999692,-0.053785407074811276 +103513,517.5649999996921,-0.053785282303440096 +103514,517.5699999996922,-0.0537851575168873 +103515,517.5749999996923,-0.05378503271514822 +103516,517.5799999996924,-0.05378490789821822 +103517,517.5849999996925,-0.05378478306609265 +103518,517.5899999996926,-0.05378465821876685 +103519,517.5949999996927,-0.053784533356236196 +103520,517.5999999996928,-0.05378440847849602 +103521,517.604999999693,-0.05378428358554167 +103522,517.6099999996931,-0.05378415867736849 +103523,517.6149999996932,-0.05378403375397184 +103524,517.6199999996933,-0.05378390881534703 +103525,517.6249999996934,-0.05378378386148941 +103526,517.6299999996935,-0.053783658892394316 +103527,517.6349999996936,-0.05378353390805708 +103528,517.6399999996937,-0.05378340890847304 +103529,517.6449999996938,-0.053783283893637505 +103530,517.6499999996939,-0.05378315886354582 +103531,517.654999999694,-0.053783033818193306 +103532,517.6599999996942,-0.053782908757575285 +103533,517.6649999996943,-0.05378278368168708 +103534,517.6699999996944,-0.05378265859052401 +103535,517.6749999996945,-0.0537825334840814 +103536,517.6799999996946,-0.053782408362354546 +103537,517.6849999996947,-0.053782283225338776 +103538,517.6899999996948,-0.05378215807302939 +103539,517.6949999996949,-0.05378203290542172 +103540,517.699999999695,-0.053781907722511055 +103541,517.7049999996951,-0.05378178252429269 +103542,517.7099999996952,-0.05378165731076196 +103543,517.7149999996954,-0.053781532081914135 +103544,517.7199999996955,-0.053781406837744544 +103545,517.7249999996956,-0.053781281578248456 +103546,517.7299999996957,-0.053781156303421174 +103547,517.7349999996958,-0.053781031013257985 +103548,517.7399999996959,-0.0537809057077542 +103549,517.744999999696,-0.05378078038690509 +103550,517.7499999996961,-0.053780655050705964 +103551,517.7549999996962,-0.05378052969915207 +103552,517.7599999996963,-0.05378040433223872 +103553,517.7649999996964,-0.05378027894996117 +103554,517.7699999996966,-0.05378015355231473 +103555,517.7749999996967,-0.05378002813929466 +103556,517.7799999996968,-0.05377990271089622 +103557,517.7849999996969,-0.05377977726711471 +103558,517.789999999697,-0.053779651807945375 +103559,517.7949999996971,-0.05377952633338349 +103560,517.7999999996972,-0.05377940084342433 +103561,517.8049999996973,-0.05377927533806316 +103562,517.8099999996974,-0.05377914981729524 +103563,517.8149999996975,-0.05377902428111581 +103564,517.8199999996976,-0.05377889872952015 +103565,517.8249999996978,-0.05377877316250351 +103566,517.8299999996979,-0.05377864758006115 +103567,517.834999999698,-0.05377852198218831 +103568,517.8399999996981,-0.05377839636888025 +103569,517.8449999996982,-0.053778270740132215 +103570,517.8499999996983,-0.053778145095939436 +103571,517.8549999996984,-0.053778019436297175 +103572,517.8599999996985,-0.05377789376120066 +103573,517.8649999996986,-0.05377776807064514 +103574,517.8699999996987,-0.05377764236462585 +103575,517.8749999996988,-0.053777516643138026 +103576,517.879999999699,-0.053777390906176906 +103577,517.8849999996991,-0.0537772651537377 +103578,517.8899999996992,-0.05377713938581566 +103579,517.8949999996993,-0.053777013602406 +103580,517.8999999996994,-0.05377688780350395 +103581,517.9049999996995,-0.05377676198910473 +103582,517.9099999996996,-0.05377663615920356 +103583,517.9149999996997,-0.053776510313795656 +103584,517.9199999996998,-0.05377638445287625 +103585,517.9249999996999,-0.05377625857644053 +103586,517.9299999997,-0.05377613268448373 +103587,517.9349999997002,-0.05377600677700105 +103588,517.9399999997003,-0.053775880853987705 +103589,517.9449999997004,-0.05377575491543888 +103590,517.9499999997005,-0.05377562896134981 +103591,517.9549999997006,-0.053775502991715685 +103592,517.9599999997007,-0.0537753770065317 +103593,517.9649999997008,-0.05377525100579306 +103594,517.9699999997009,-0.053775124989494945 +103595,517.974999999701,-0.05377499895763255 +103596,517.9799999997011,-0.05377487291020108 +103597,517.9849999997012,-0.053774746847195715 +103598,517.9899999997014,-0.05377462076861164 +103599,517.9949999997015,-0.053774494674444055 +103600,517.9999999997016,-0.05377436856468813 +103601,518.0049999997017,-0.05377424243933905 +103602,518.0099999997018,-0.05377411629839199 +103603,518.0149999997019,-0.05377399014184212 +103604,518.019999999702,-0.05377386396968463 +103605,518.0249999997021,-0.053773737781914674 +103606,518.0299999997022,-0.053773611578527454 +103607,518.0349999997023,-0.053773485359518106 +103608,518.0399999997024,-0.053773359124881806 +103609,518.0449999997026,-0.053773232874613726 +103610,518.0499999997027,-0.053773106608709015 +103611,518.0549999997028,-0.05377298032716284 +103612,518.0599999997029,-0.05377285402997036 +103613,518.064999999703,-0.053772727717126725 +103614,518.0699999997031,-0.0537726013886271 +103615,518.0749999997032,-0.053772475044466604 +103616,518.0799999997033,-0.05377234868464042 +103617,518.0849999997034,-0.05377222230914367 +103618,518.0899999997035,-0.05377209591797153 +103619,518.0949999997036,-0.05377196951111911 +103620,518.0999999997038,-0.053771843088581565 +103621,518.1049999997039,-0.05377171665035404 +103622,518.109999999704,-0.053771590196431664 +103623,518.1149999997041,-0.053771463726809555 +103624,518.1199999997042,-0.053771337241482885 +103625,518.1249999997043,-0.053771210740446745 +103626,518.1299999997044,-0.05377108422369628 +103627,518.1349999997045,-0.05377095769122661 +103628,518.1399999997046,-0.05377083114303287 +103629,518.1449999997047,-0.05377070457911016 +103630,518.1499999997048,-0.053770577999453624 +103631,518.154999999705,-0.05377045140405837 +103632,518.1599999997051,-0.053770324792919495 +103633,518.1649999997052,-0.05377019816603213 +103634,518.1699999997053,-0.05377007152339138 +103635,518.1749999997054,-0.053769944864992356 +103636,518.1799999997055,-0.05376981819083017 +103637,518.1849999997056,-0.05376969150089991 +103638,518.1899999997057,-0.053769564795196685 +103639,518.1949999997058,-0.053769438073715606 +103640,518.1999999997059,-0.05376931133645175 +103641,518.204999999706,-0.053769184583400235 +103642,518.2099999997062,-0.05376905781455613 +103643,518.2149999997063,-0.053768931029914556 +103644,518.2199999997064,-0.05376880422947058 +103645,518.2249999997065,-0.05376867741321929 +103646,518.2299999997066,-0.05376855058115578 +103647,518.2349999997067,-0.05376842373327513 +103648,518.2399999997068,-0.053768296869572414 +103649,518.2449999997069,-0.05376816999004271 +103650,518.249999999707,-0.053768043094681105 +103651,518.2549999997071,-0.05376791618348266 +103652,518.2599999997072,-0.053767789256442454 +103653,518.2649999997074,-0.053767662313555564 +103654,518.2699999997075,-0.05376753535481704 +103655,518.2749999997076,-0.053767408380221954 +103656,518.2799999997077,-0.05376728138976537 +103657,518.2849999997078,-0.05376715438344236 +103658,518.2899999997079,-0.05376702736124797 +103659,518.294999999708,-0.053766900323177255 +103660,518.2999999997081,-0.05376677326922527 +103661,518.3049999997082,-0.05376664619938707 +103662,518.3099999997083,-0.05376651911365771 +103663,518.3149999997084,-0.053766392012032226 +103664,518.3199999997086,-0.053766264894505665 +103665,518.3249999997087,-0.053766137761073085 +103666,518.3299999997088,-0.05376601061172952 +103667,518.3349999997089,-0.05376588344647 +103668,518.339999999709,-0.053765756265289566 +103669,518.3449999997091,-0.05376562906818326 +103670,518.3499999997092,-0.053765501855146114 +103671,518.3549999997093,-0.05376537462617316 +103672,518.3599999997094,-0.053765247381259415 +103673,518.3649999997095,-0.05376512012039991 +103674,518.3699999997096,-0.05376499284358967 +103675,518.3749999997098,-0.053764865550823715 +103676,518.3799999997099,-0.05376473824209707 +103677,518.38499999971,-0.05376461091740474 +103678,518.3899999997101,-0.05376448357674175 +103679,518.3949999997102,-0.05376435622010311 +103680,518.3999999997103,-0.05376422884748384 +103681,518.4049999997104,-0.05376410145887893 +103682,518.4099999997105,-0.053763974054283396 +103683,518.4149999997106,-0.05376384663369224 +103684,518.4199999997107,-0.053763719197100455 +103685,518.4249999997108,-0.05376359174450306 +103686,518.429999999711,-0.05376346427589505 +103687,518.4349999997111,-0.0537633367912714 +103688,518.4399999997112,-0.05376320929062712 +103689,518.4449999997113,-0.0537630817739572 +103690,518.4499999997114,-0.05376295424125662 +103691,518.4549999997115,-0.05376282669252038 +103692,518.4599999997116,-0.053762699127743445 +103693,518.4649999997117,-0.05376257154692081 +103694,518.4699999997118,-0.05376244395004746 +103695,518.4749999997119,-0.05376231633711835 +103696,518.479999999712,-0.053762188708128475 +103697,518.4849999997122,-0.05376206106307281 +103698,518.4899999997123,-0.05376193340194631 +103699,518.4949999997124,-0.053761805724743955 +103700,518.4999999997125,-0.05376167803146069 +103701,518.5049999997126,-0.05376155032209151 +103702,518.5099999997127,-0.053761422596631366 +103703,518.5149999997128,-0.053761294855075206 +103704,518.5199999997129,-0.053761167097417996 +103705,518.524999999713,-0.053761039323654704 +103706,518.5299999997131,-0.05376091153378026 +103707,518.5349999997132,-0.053760783727789634 +103708,518.5399999997134,-0.05376065590567775 +103709,518.5449999997135,-0.053760528067439584 +103710,518.5499999997136,-0.053760400213070055 +103711,518.5549999997137,-0.05376027234256412 +103712,518.5599999997138,-0.05376014445591672 +103713,518.5649999997139,-0.05376001655312277 +103714,518.569999999714,-0.05375988863417723 +103715,518.5749999997141,-0.05375976069907502 +103716,518.5799999997142,-0.05375963274781107 +103717,518.5849999997143,-0.053759504780380316 +103718,518.5899999997145,-0.053759376796777676 +103719,518.5949999997146,-0.05375924879699808 +103720,518.5999999997147,-0.05375912078103646 +103721,518.6049999997148,-0.05375899274888772 +103722,518.6099999997149,-0.053758864700546784 +103723,518.614999999715,-0.05375873663600855 +103724,518.6199999997151,-0.05375860855526794 +103725,518.6249999997152,-0.05375848045831988 +103726,518.6299999997153,-0.053758352345159265 +103727,518.6349999997154,-0.053758224215781 +103728,518.6399999997155,-0.05375809607017999 +103729,518.6449999997157,-0.053757967908351134 +103730,518.6499999997158,-0.05375783973028934 +103731,518.6549999997159,-0.053757711535989475 +103732,518.659999999716,-0.05375758332544646 +103733,518.6649999997161,-0.053757455098655184 +103734,518.6699999997162,-0.05375732685561054 +103735,518.6749999997163,-0.05375719859630742 +103736,518.6799999997164,-0.053757070320740695 +103737,518.6849999997165,-0.053756942028905255 +103738,518.6899999997166,-0.05375681372079598 +103739,518.6949999997167,-0.05375668539640773 +103740,518.6999999997169,-0.05375655705573541 +103741,518.704999999717,-0.05375642869877389 +103742,518.7099999997171,-0.05375630032551803 +103743,518.7149999997172,-0.0537561719359627 +103744,518.7199999997173,-0.05375604353010277 +103745,518.7249999997174,-0.05375591510793312 +103746,518.7299999997175,-0.0537557866694486 +103747,518.7349999997176,-0.05375565821464406 +103748,518.7399999997177,-0.05375552974351436 +103749,518.7449999997178,-0.05375540125605437 +103750,518.7499999997179,-0.053755272752258935 +103751,518.754999999718,-0.0537551442321229 +103752,518.7599999997182,-0.05375501569564114 +103753,518.7649999997183,-0.053754887142808475 +103754,518.7699999997184,-0.053754758573619756 +103755,518.7749999997185,-0.053754629988069826 +103756,518.7799999997186,-0.05375450138615352 +103757,518.7849999997187,-0.053754372767865675 +103758,518.7899999997188,-0.053754244133201144 +103759,518.7949999997189,-0.05375411548215473 +103760,518.799999999719,-0.05375398681472129 +103761,518.8049999997191,-0.053753858130895636 +103762,518.8099999997193,-0.05375372943067261 +103763,518.8149999997194,-0.053753600714047015 +103764,518.8199999997195,-0.05375347198101369 +103765,518.8249999997196,-0.05375334323156744 +103766,518.8299999997197,-0.053753214465703095 +103767,518.8349999997198,-0.05375308568341546 +103768,518.8399999997199,-0.05375295688469936 +103769,518.84499999972,-0.053752828069549584 +103770,518.8499999997201,-0.053752699237960944 +103771,518.8549999997202,-0.053752570389928256 +103772,518.8599999997203,-0.053752441525446316 +103773,518.8649999997205,-0.05375231264450993 +103774,518.8699999997206,-0.053752183747113894 +103775,518.8749999997207,-0.053752054833253 +103776,518.8799999997208,-0.05375192590292204 +103777,518.8849999997209,-0.05375179695611581 +103778,518.889999999721,-0.0537516679928291 +103779,518.8949999997211,-0.05375153901305669 +103780,518.8999999997212,-0.05375141001679336 +103781,518.9049999997213,-0.0537512810040339 +103782,518.9099999997214,-0.05375115197477309 +103783,518.9149999997215,-0.053751022929005715 +103784,518.9199999997217,-0.05375089386672653 +103785,518.9249999997218,-0.053750764787930325 +103786,518.9299999997219,-0.05375063569261187 +103787,518.934999999722,-0.05375050658076592 +103788,518.9399999997221,-0.05375037745238724 +103789,518.9449999997222,-0.0537502483074706 +103790,518.9499999997223,-0.053750119146010765 +103791,518.9549999997224,-0.05374998996800248 +103792,518.9599999997225,-0.053749860773440516 +103793,518.9649999997226,-0.05374973156231962 +103794,518.9699999997227,-0.053749602334634564 +103795,518.9749999997229,-0.053749473090380064 +103796,518.979999999723,-0.053749343829550884 +103797,518.9849999997231,-0.05374921455214175 +103798,518.9899999997232,-0.053749085258147436 +103799,518.9949999997233,-0.05374895594756265 +103800,518.9999999997234,-0.05374882662038215 +103801,519.0049999997235,-0.053748697276600664 +103802,519.0099999997236,-0.053748567916212936 +103803,519.0149999997237,-0.05374843853921368 +103804,519.0199999997238,-0.05374830914559763 +103805,519.024999999724,-0.0537481797353595 +103806,519.029999999724,-0.05374805030849403 +103807,519.0349999997242,-0.053747920864995934 +103808,519.0399999997243,-0.053747791404859926 +103809,519.0449999997244,-0.05374766192808073 +103810,519.0499999997245,-0.05374753243465307 +103811,519.0549999997246,-0.053747402924571634 +103812,519.0599999997247,-0.05374727339783114 +103813,519.0649999997248,-0.0537471438544263 +103814,519.0699999997249,-0.053747014294351816 +103815,519.074999999725,-0.05374688471760238 +103816,519.0799999997251,-0.05374675512417271 +103817,519.0849999997253,-0.05374662551405748 +103818,519.0899999997254,-0.053746495887251416 +103819,519.0949999997255,-0.05374636624374918 +103820,519.0999999997256,-0.05374623658354547 +103821,519.1049999997257,-0.05374610690663498 +103822,519.1099999997258,-0.0537459772130124 +103823,519.1149999997259,-0.05374584750267239 +103824,519.119999999726,-0.053745717775609665 +103825,519.1249999997261,-0.05374558803181887 +103826,519.1299999997262,-0.0537454582712947 +103827,519.1349999997263,-0.05374532849403181 +103828,519.1399999997265,-0.0537451987000249 +103829,519.1449999997266,-0.053745068889268624 +103830,519.1499999997267,-0.05374493906175763 +103831,519.1549999997268,-0.0537448092174866 +103832,519.1599999997269,-0.053744679356450206 +103833,519.164999999727,-0.05374454947864309 +103834,519.1699999997271,-0.05374441958405991 +103835,519.1749999997272,-0.05374428967269533 +103836,519.1799999997273,-0.053744159744543996 +103837,519.1849999997274,-0.053744029799600544 +103838,519.1899999997275,-0.053743899837859634 +103839,519.1949999997277,-0.05374376985931591 +103840,519.1999999997278,-0.05374363986396401 +103841,519.2049999997279,-0.05374350985179858 +103842,519.209999999728,-0.05374337982281425 +103843,519.2149999997281,-0.05374324977700566 +103844,519.2199999997282,-0.05374311971436744 +103845,519.2249999997283,-0.05374298963489422 +103846,519.2299999997284,-0.053742859538580635 +103847,519.2349999997285,-0.053742729425421305 +103848,519.2399999997286,-0.053742599295410844 +103849,519.2449999997287,-0.05374246914854388 +103850,519.2499999997289,-0.053742338984815036 +103851,519.254999999729,-0.05374220880421892 +103852,519.2599999997291,-0.05374207860675014 +103853,519.2649999997292,-0.05374194839240333 +103854,519.2699999997293,-0.05374181816117307 +103855,519.2749999997294,-0.05374168791305398 +103856,519.2799999997295,-0.05374155764804067 +103857,519.2849999997296,-0.05374142736612773 +103858,519.2899999997297,-0.05374129706730975 +103859,519.2949999997298,-0.053741166751581346 +103860,519.29999999973,-0.0537410364189371 +103861,519.3049999997301,-0.053740906069371604 +103862,519.3099999997302,-0.05374077570287945 +103863,519.3149999997303,-0.05374064531945523 +103864,519.3199999997304,-0.05374051491909351 +103865,519.3249999997305,-0.0537403845017889 +103866,519.3299999997306,-0.05374025406753594 +103867,519.3349999997307,-0.053740123616329245 +103868,519.3399999997308,-0.05373999314816335 +103869,519.3449999997309,-0.05373986266303285 +103870,519.349999999731,-0.05373973216093232 +103871,519.3549999997311,-0.05373960164185632 +103872,519.3599999997313,-0.05373947110579943 +103873,519.3649999997314,-0.05373934055275618 +103874,519.3699999997315,-0.05373920998272114 +103875,519.3749999997316,-0.05373907939568888 +103876,519.3799999997317,-0.05373894879165394 +103877,519.3849999997318,-0.05373881817061089 +103878,519.3899999997319,-0.05373868753255425 +103879,519.394999999732,-0.05373855687747859 +103880,519.3999999997321,-0.05373842620537845 +103881,519.4049999997322,-0.05373829551624837 +103882,519.4099999997323,-0.053738164810082895 +103883,519.4149999997325,-0.05373803408687655 +103884,519.4199999997326,-0.05373790334662388 +103885,519.4249999997327,-0.05373777258931942 +103886,519.4299999997328,-0.0537376418149577 +103887,519.4349999997329,-0.05373751102353323 +103888,519.439999999733,-0.05373738021504056 +103889,519.4449999997331,-0.053737249389474204 +103890,519.4499999997332,-0.053737118546828666 +103891,519.4549999997333,-0.053736987687098475 +103892,519.4599999997334,-0.05373685681027816 +103893,519.4649999997335,-0.05373672591636221 +103894,519.4699999997337,-0.05373659500534514 +103895,519.4749999997338,-0.053736464077221456 +103896,519.4799999997339,-0.05373633313198568 +103897,519.484999999734,-0.05373620216963229 +103898,519.4899999997341,-0.05373607119015581 +103899,519.4949999997342,-0.053735940193550734 +103900,519.4999999997343,-0.05373580917981154 +103901,519.5049999997344,-0.053735678148932736 +103902,519.5099999997345,-0.053735547100908804 +103903,519.5149999997346,-0.053735416035734236 +103904,519.5199999997348,-0.05373528495340351 +103905,519.5249999997349,-0.053735153853911116 +103906,519.529999999735,-0.053735022737251545 +103907,519.5349999997351,-0.053734891603419245 +103908,519.5399999997352,-0.05373476045240871 +103909,519.5449999997353,-0.05373462928421442 +103910,519.5499999997354,-0.05373449809883083 +103911,519.5549999997355,-0.05373436689625241 +103912,519.5599999997356,-0.05373423567647363 +103913,519.5649999997357,-0.053734104439488964 +103914,519.5699999997358,-0.05373397318529284 +103915,519.574999999736,-0.05373384191387975 +103916,519.5799999997361,-0.05373371062524412 +103917,519.5849999997362,-0.053733579319380415 +103918,519.5899999997363,-0.05373344799628309 +103919,519.5949999997364,-0.053733316655946585 +103920,519.5999999997365,-0.05373318529836534 +103921,519.6049999997366,-0.053733053923533815 +103922,519.6099999997367,-0.05373292253144645 +103923,519.6149999997368,-0.05373279112209767 +103924,519.6199999997369,-0.0537326596954819 +103925,519.624999999737,-0.053732528251593595 +103926,519.6299999997372,-0.05373239679042716 +103927,519.6349999997373,-0.05373226531197704 +103928,519.6399999997374,-0.05373213381623766 +103929,519.6449999997375,-0.05373200230320344 +103930,519.6499999997376,-0.053731870772868805 +103931,519.6549999997377,-0.053731739225228156 +103932,519.6599999997378,-0.05373160766027591 +103933,519.6649999997379,-0.0537314760780065 +103934,519.669999999738,-0.053731344478414315 +103935,519.6749999997381,-0.05373121286149377 +103936,519.6799999997382,-0.053731081227239276 +103937,519.6849999997384,-0.05373094957564521 +103938,519.6899999997385,-0.053730817906705995 +103939,519.6949999997386,-0.05373068622041602 +103940,519.6999999997387,-0.05373055451676969 +103941,519.7049999997388,-0.05373042279576137 +103942,519.7099999997389,-0.05373029105738547 +103943,519.714999999739,-0.053730159301636375 +103944,519.7199999997391,-0.05373002752850847 +103945,519.7249999997392,-0.05372989573799613 +103946,519.7299999997393,-0.05372976393009374 +103947,519.7349999997394,-0.05372963210479567 +103948,519.7399999997396,-0.053729500262096296 +103949,519.7449999997397,-0.05372936840198999 +103950,519.7499999997398,-0.05372923652447112 +103951,519.7549999997399,-0.05372910462953405 +103952,519.75999999974,-0.053728972717173154 +103953,519.7649999997401,-0.05372884078738276 +103954,519.7699999997402,-0.05372870884015727 +103955,519.7749999997403,-0.05372857687549101 +103956,519.7799999997404,-0.053728444893378365 +103957,519.7849999997405,-0.053728312893813655 +103958,519.7899999997406,-0.05372818087679123 +103959,519.7949999997408,-0.053728048842305455 +103960,519.7999999997409,-0.05372791679035066 +103961,519.804999999741,-0.05372778472092118 +103962,519.8099999997411,-0.053727652634011365 +103963,519.8149999997412,-0.05372752052961555 +103964,519.8199999997413,-0.05372738840772805 +103965,519.8249999997414,-0.053727256268343196 +103966,519.8299999997415,-0.05372712411145534 +103967,519.8349999997416,-0.0537269919370588 +103968,519.8399999997417,-0.05372685974514789 +103969,519.8449999997418,-0.05372672753571693 +103970,519.849999999742,-0.05372659530876024 +103971,519.8549999997421,-0.053726463064272124 +103972,519.8599999997422,-0.05372633080224691 +103973,519.8649999997423,-0.0537261985226789 +103974,519.8699999997424,-0.05372606622556239 +103975,519.8749999997425,-0.0537259339108917 +103976,519.8799999997426,-0.05372580157866112 +103977,519.8849999997427,-0.05372566922886496 +103978,519.8899999997428,-0.053725536861497517 +103979,519.8949999997429,-0.05372540447655308 +103980,519.899999999743,-0.053725272074025936 +103981,519.9049999997432,-0.053725139653910375 +103982,519.9099999997433,-0.05372500721620068 +103983,519.9149999997434,-0.05372487476089114 +103984,519.9199999997435,-0.05372474228797603 +103985,519.9249999997436,-0.053724609797449634 +103986,519.9299999997437,-0.053724477289306224 +103987,519.9349999997438,-0.05372434476354008 +103988,519.9399999997439,-0.053724212220145465 +103989,519.944999999744,-0.053724079659116644 +103990,519.9499999997441,-0.053723947080447886 +103991,519.9549999997442,-0.05372381448413346 +103992,519.9599999997444,-0.053723681870167614 +103993,519.9649999997445,-0.053723549238544596 +103994,519.9699999997446,-0.05372341658925868 +103995,519.9749999997447,-0.053723283922304105 +103996,519.9799999997448,-0.05372315123767514 +103997,519.9849999997449,-0.05372301853536601 +103998,519.989999999745,-0.053722885815370956 +103999,519.9949999997451,-0.053722753077684246 +104000,519.9999999997452,-0.05372262032230009 +104001,520.0049999997453,-0.053722487549212744 +104002,520.0099999997454,-0.053722354758416434 +104003,520.0149999997456,-0.05372222194990538 +104004,520.0199999997457,-0.05372208912367383 +104005,520.0249999997458,-0.05372195627971598 +104006,520.0299999997459,-0.053721823418026095 +104007,520.034999999746,-0.053721690538598356 +104008,520.0399999997461,-0.053721557641427 +104009,520.0449999997462,-0.05372142472650624 +104010,520.0499999997463,-0.05372129179383029 +104011,520.0549999997464,-0.05372115884339335 +104012,520.0599999997465,-0.05372102587518964 +104013,520.0649999997466,-0.05372089288921335 +104014,520.0699999997468,-0.05372075988545868 +104015,520.0749999997469,-0.05372062686391983 +104016,520.079999999747,-0.05372049382459102 +104017,520.0849999997471,-0.05372036076746642 +104018,520.0899999997472,-0.05372022769254022 +104019,520.0949999997473,-0.05372009459980662 +104020,520.0999999997474,-0.05371996148925979 +104021,520.1049999997475,-0.05371982836089393 +104022,520.1099999997476,-0.05371969521470321 +104023,520.1149999997477,-0.053719562050681804 +104024,520.1199999997478,-0.0537194288688239 +104025,520.124999999748,-0.05371929566912365 +104026,520.1299999997481,-0.05371916245157524 +104027,520.1349999997482,-0.053719029216172845 +104028,520.1399999997483,-0.05371889596291061 +104029,520.1449999997484,-0.053718762691782704 +104030,520.1499999997485,-0.05371862940278328 +104031,520.1549999997486,-0.0537184960959065 +104032,520.1599999997487,-0.05371836277114652 +104033,520.1649999997488,-0.05371822942849748 +104034,520.1699999997489,-0.05371809606795354 +104035,520.174999999749,-0.05371796268950884 +104036,520.1799999997492,-0.05371782929315752 +104037,520.1849999997493,-0.053717695878893724 +104038,520.1899999997494,-0.05371756244671158 +104039,520.1949999997495,-0.05371742899660523 +104040,520.1999999997496,-0.05371729552856881 +104041,520.2049999997497,-0.053717162042596446 +104042,520.2099999997498,-0.05371702853868226 +104043,520.2149999997499,-0.05371689501682037 +104044,520.21999999975,-0.05371676147700491 +104045,520.2249999997501,-0.053716627919229994 +104046,520.2299999997502,-0.053716494343489726 +104047,520.2349999997504,-0.05371636074977823 +104048,520.2399999997505,-0.05371622713808962 +104049,520.2449999997506,-0.053716093508418 +104050,520.2499999997507,-0.053715959860757466 +104051,520.2549999997508,-0.05371582619510214 +104052,520.2599999997509,-0.053715692511446096 +104053,520.264999999751,-0.053715558809783445 +104054,520.2699999997511,-0.053715425090108286 +104055,520.2749999997512,-0.05371529135241469 +104056,520.2799999997513,-0.05371515759669677 +104057,520.2849999997514,-0.0537150238229486 +104058,520.2899999997516,-0.053714890031164246 +104059,520.2949999997517,-0.05371475622133781 +104060,520.2999999997518,-0.05371462239346336 +104061,520.3049999997519,-0.05371448854753497 +104062,520.309999999752,-0.05371435468354672 +104063,520.3149999997521,-0.05371422080149267 +104064,520.3199999997522,-0.0537140869013669 +104065,520.3249999997523,-0.053713952983163456 +104066,520.3299999997524,-0.05371381904687641 +104067,520.3349999997525,-0.05371368509249982 +104068,520.3399999997526,-0.05371355112002773 +104069,520.3449999997528,-0.053713417129454204 +104070,520.3499999997529,-0.05371328312077329 +104071,520.354999999753,-0.05371314909397903 +104072,520.3599999997531,-0.05371301504906548 +104073,520.3649999997532,-0.05371288098602666 +104074,520.3699999997533,-0.05371274690485663 +104075,520.3749999997534,-0.053712612805549426 +104076,520.3799999997535,-0.05371247868809907 +104077,520.3849999997536,-0.053712344552499604 +104078,520.3899999997537,-0.05371221039874505 +104079,520.3949999997538,-0.05371207622682943 +104080,520.399999999754,-0.053711942036746764 +104081,520.4049999997541,-0.053711807828491075 +104082,520.4099999997542,-0.05371167360205638 +104083,520.4149999997543,-0.053711539357436694 +104084,520.4199999997544,-0.05371140509462603 +104085,520.4249999997545,-0.0537112708136184 +104086,520.4299999997546,-0.0537111365144078 +104087,520.4349999997547,-0.05371100219698823 +104088,520.4399999997548,-0.053710867861353706 +104089,520.4449999997549,-0.05371073350749822 +104090,520.449999999755,-0.05371059913541577 +104091,520.4549999997552,-0.05371046474510033 +104092,520.4599999997553,-0.053710330336545896 +104093,520.4649999997554,-0.05371019590974646 +104094,520.4699999997555,-0.053710061464696014 +104095,520.4749999997556,-0.053709927001388526 +104096,520.4799999997557,-0.053709792519817966 +104097,520.4849999997558,-0.053709658019978325 +104098,520.4899999997559,-0.05370952350186356 +104099,520.494999999756,-0.053709388965467654 +104100,520.4999999997561,-0.053709254410784585 +104101,520.5049999997563,-0.05370911983780829 +104102,520.5099999997564,-0.053708985246532746 +104103,520.5149999997565,-0.05370885063695191 +104104,520.5199999997566,-0.05370871600905973 +104105,520.5249999997567,-0.05370858136285016 +104106,520.5299999997568,-0.05370844669831715 +104107,520.5349999997569,-0.05370831201545465 +104108,520.539999999757,-0.05370817731425662 +104109,520.5449999997571,-0.053708042594716975 +104110,520.5499999997572,-0.05370790785682966 +104111,520.5549999997573,-0.05370777310058863 +104112,520.5599999997575,-0.05370763832598779 +104113,520.5649999997576,-0.05370750353302108 +104114,520.5699999997577,-0.05370736872168244 +104115,520.5749999997578,-0.053707233891965786 +104116,520.5799999997579,-0.05370709904386503 +104117,520.584999999758,-0.053706964177374104 +104118,520.5899999997581,-0.053706829292486914 +104119,520.5949999997582,-0.05370669438919738 +104120,520.5999999997583,-0.053706559467499415 +104121,520.6049999997584,-0.05370642452738693 +104122,520.6099999997585,-0.05370628956885382 +104123,520.6149999997587,-0.05370615459189399 +104124,520.6199999997588,-0.053706019596501335 +104125,520.6249999997589,-0.053705884582669755 +104126,520.629999999759,-0.05370574955039314 +104127,520.6349999997591,-0.05370561449966539 +104128,520.6399999997592,-0.05370547943048038 +104129,520.6449999997593,-0.05370534434283201 +104130,520.6499999997594,-0.05370520923671414 +104131,520.6549999997595,-0.05370507411212067 +104132,520.6599999997596,-0.05370493896904547 +104133,520.6649999997597,-0.05370480380748241 +104134,520.6699999997599,-0.05370466862742535 +104135,520.67499999976,-0.053704533428868176 +104136,520.6799999997601,-0.05370439821180475 +104137,520.6849999997602,-0.053704262976228934 +104138,520.6899999997603,-0.053704127722134586 +104139,520.6949999997604,-0.053703992449515556 +104140,520.6999999997605,-0.053703857158365696 +104141,520.7049999997606,-0.053703721848678866 +104142,520.7099999997607,-0.05370358652044891 +104143,520.7149999997608,-0.053703451173669675 +104144,520.719999999761,-0.053703315808335005 +104145,520.724999999761,-0.05370318042443873 +104146,520.7299999997612,-0.05370304502197469 +104147,520.7349999997613,-0.053702909600936724 +104148,520.7399999997614,-0.05370277416131865 +104149,520.7449999997615,-0.05370263870311431 +104150,520.7499999997616,-0.053702503226317505 +104151,520.7549999997617,-0.053702367730922095 +104152,520.7599999997618,-0.05370223221692187 +104153,520.7649999997619,-0.05370209668431065 +104154,520.769999999762,-0.05370196113308225 +104155,520.7749999997621,-0.053701825563230485 +104156,520.7799999997623,-0.05370168997474916 +104157,520.7849999997624,-0.05370155436763207 +104158,520.7899999997625,-0.05370141874187304 +104159,520.7949999997626,-0.05370128309746585 +104160,520.7999999997627,-0.053701147434404295 +104161,520.8049999997628,-0.05370101175268218 +104162,520.8099999997629,-0.05370087605229328 +104163,520.814999999763,-0.0537007403332314 +104164,520.8199999997631,-0.05370060459549031 +104165,520.8249999997632,-0.05370046883906379 +104166,520.8299999997633,-0.05370033306394562 +104167,520.8349999997635,-0.05370019727012958 +104168,520.8399999997636,-0.05370006145760944 +104169,520.8449999997637,-0.05369992562637897 +104170,520.8499999997638,-0.053699789776431944 +104171,520.8549999997639,-0.053699653907762115 +104172,520.859999999764,-0.05369951802036325 +104173,520.8649999997641,-0.053699382114229095 +104174,520.8699999997642,-0.05369924618935342 +104175,520.8749999997643,-0.05369911024572997 +104176,520.8799999997644,-0.0536989742833525 +104177,520.8849999997645,-0.05369883830221475 +104178,520.8899999997647,-0.05369870230231047 +104179,520.8949999997648,-0.0536985662836334 +104180,520.8999999997649,-0.05369843024617727 +104181,520.904999999765,-0.05369829418993581 +104182,520.9099999997651,-0.05369815811490277 +104183,520.9149999997652,-0.053698022021071865 +104184,520.9199999997653,-0.05369788590843682 +104185,520.9249999997654,-0.053697749776991356 +104186,520.9299999997655,-0.05369761362672921 +104187,520.9349999997656,-0.05369747745764408 +104188,520.9399999997657,-0.05369734126972969 +104189,520.9449999997659,-0.05369720506297975 +104190,520.949999999766,-0.05369706883738796 +104191,520.9549999997661,-0.053696932592948034 +104192,520.9599999997662,-0.053696796329653664 +104193,520.9649999997663,-0.05369666004749857 +104194,520.9699999997664,-0.05369652374647643 +104195,520.9749999997665,-0.05369638742658094 +104196,520.9799999997666,-0.05369625108780579 +104197,520.9849999997667,-0.05369611473014467 +104198,520.9899999997668,-0.05369597835359127 +104199,520.994999999767,-0.05369584195813926 +104200,520.999999999767,-0.05369570554378233 +104201,521.0049999997672,-0.05369556911051413 +104202,521.0099999997673,-0.05369543265832836 +104203,521.0149999997674,-0.05369529618721869 +104204,521.0199999997675,-0.053695159697178765 +104205,521.0249999997676,-0.053695023188202275 +104206,521.0299999997677,-0.053694886660282846 +104207,521.0349999997678,-0.05369475011341417 +104208,521.0399999997679,-0.053694613547589885 +104209,521.044999999768,-0.05369447696280363 +104210,521.0499999997681,-0.053694340359049096 +104211,521.0549999997683,-0.053694203736319876 +104212,521.0599999997684,-0.05369406709460965 +104213,521.0649999997685,-0.053693930433912046 +104214,521.0699999997686,-0.053693793754220696 +104215,521.0749999997687,-0.05369365705552925 +104216,521.0799999997688,-0.05369352033783132 +104217,521.0849999997689,-0.05369338360112053 +104218,521.089999999769,-0.05369324684539052 +104219,521.0949999997691,-0.0536931100706349 +104220,521.0999999997692,-0.053692973276847314 +104221,521.1049999997693,-0.05369283646402134 +104222,521.1099999997695,-0.05369269963215062 +104223,521.1149999997696,-0.05369256278122876 +104224,521.1199999997697,-0.05369242591124935 +104225,521.1249999997698,-0.053692289022206 +104226,521.1299999997699,-0.05369215211409231 +104227,521.13499999977,-0.053692015186901886 +104228,521.1399999997701,-0.053691878240628314 +104229,521.1449999997702,-0.0536917412752652 +104230,521.1499999997703,-0.053691604290806126 +104231,521.1549999997704,-0.053691467287244665 +104232,521.1599999997705,-0.053691330264574406 +104233,521.1649999997707,-0.05369119322278894 +104234,521.1699999997708,-0.053691056161881835 +104235,521.1749999997709,-0.05369091908184666 +104236,521.179999999771,-0.05369078198267698 +104237,521.1849999997711,-0.05369064486436638 +104238,521.1899999997712,-0.05369050772690841 +104239,521.1949999997713,-0.05369037057029664 +104240,521.1999999997714,-0.053690233394524625 +104241,521.2049999997715,-0.053690096199585924 +104242,521.2099999997716,-0.05368995898547408 +104243,521.2149999997717,-0.05368982175218264 +104244,521.2199999997719,-0.05368968449970517 +104245,521.224999999772,-0.0536895472280352 +104246,521.2299999997721,-0.05368940993716626 +104247,521.2349999997722,-0.053689272627091895 +104248,521.2399999997723,-0.05368913529780565 +104249,521.2449999997724,-0.05368899794930104 +104250,521.2499999997725,-0.0536888605815716 +104251,521.2549999997726,-0.05368872319461086 +104252,521.2599999997727,-0.053688585788412325 +104253,521.2649999997728,-0.053688448362969536 +104254,521.269999999773,-0.053688310918275986 +104255,521.2749999997731,-0.05368817345432521 +104256,521.2799999997732,-0.053688035971110694 +104257,521.2849999997733,-0.05368789846862596 +104258,521.2899999997734,-0.053687760946864505 +104259,521.2949999997735,-0.05368762340581983 +104260,521.2999999997736,-0.05368748584548544 +104261,521.3049999997737,-0.05368734826585483 +104262,521.3099999997738,-0.05368721066692146 +104263,521.3149999997739,-0.053687073048678854 +104264,521.319999999774,-0.05368693541112049 +104265,521.3249999997741,-0.05368679775423983 +104266,521.3299999997743,-0.05368666007803037 +104267,521.3349999997744,-0.05368652238248558 +104268,521.3399999997745,-0.05368638466759893 +104269,521.3449999997746,-0.05368624693336389 +104270,521.3499999997747,-0.053686109179773935 +104271,521.3549999997748,-0.05368597140682252 +104272,521.3599999997749,-0.05368583361450311 +104273,521.364999999775,-0.05368569580280915 +104274,521.3699999997751,-0.05368555797173411 +104275,521.3749999997752,-0.053685420121271435 +104276,521.3799999997754,-0.053685282251414564 +104277,521.3849999997755,-0.05368514436215695 +104278,521.3899999997756,-0.053685006453492036 +104279,521.3949999997757,-0.05368486852541325 +104280,521.3999999997758,-0.05368473057791404 +104281,521.4049999997759,-0.05368459261098782 +104282,521.409999999776,-0.05368445462462805 +104283,521.4149999997761,-0.05368431661882812 +104284,521.4199999997762,-0.05368417859358148 +104285,521.4249999997763,-0.053684040548881526 +104286,521.4299999997764,-0.0536839024847217 +104287,521.4349999997766,-0.05368376440109539 +104288,521.4399999997767,-0.05368362629799603 +104289,521.4449999997768,-0.053683488175417016 +104290,521.4499999997769,-0.05368335003335174 +104291,521.454999999777,-0.05368321187179362 +104292,521.4599999997771,-0.053683073690736036 +104293,521.4649999997772,-0.05368293549017241 +104294,521.4699999997773,-0.053682797270096116 +104295,521.4749999997774,-0.05368265903050053 +104296,521.4799999997775,-0.05368252077137906 +104297,521.4849999997776,-0.053682382492725084 +104298,521.4899999997778,-0.053682244194531964 +104299,521.4949999997779,-0.05368210587679309 +104300,521.499999999778,-0.05368196753950183 +104301,521.5049999997781,-0.053681829182651554 +104302,521.5099999997782,-0.05368169080623564 +104303,521.5149999997783,-0.05368155241024742 +104304,521.5199999997784,-0.05368141399468029 +104305,521.5249999997785,-0.05368127555952758 +104306,521.5299999997786,-0.05368113710478265 +104307,521.5349999997787,-0.05368099863043887 +104308,521.5399999997788,-0.05368086013648956 +104309,521.544999999779,-0.05368072162292808 +104310,521.5499999997791,-0.053680583089747755 +104311,521.5549999997792,-0.05368044453694195 +104312,521.5599999997793,-0.053680305964503974 +104313,521.5649999997794,-0.053680167372427166 +104314,521.5699999997795,-0.05368002876070486 +104315,521.5749999997796,-0.053679890129330374 +104316,521.5799999997797,-0.05367975147829704 +104317,521.5849999997798,-0.053679612807598164 +104318,521.5899999997799,-0.05367947411722706 +104319,521.59499999978,-0.05367933540717705 +104320,521.5999999997802,-0.05367919667744144 +104321,521.6049999997803,-0.053679057928013536 +104322,521.6099999997804,-0.053678919158886645 +104323,521.6149999997805,-0.05367878037005406 +104324,521.6199999997806,-0.05367864156150908 +104325,521.6249999997807,-0.053678502733244995 +104326,521.6299999997808,-0.0536783638852551 +104327,521.6349999997809,-0.053678225017532666 +104328,521.639999999781,-0.053678086130070995 +104329,521.6449999997811,-0.05367794722286337 +104330,521.6499999997812,-0.05367780829590305 +104331,521.6549999997814,-0.05367766934918332 +104332,521.6599999997815,-0.053677530382697444 +104333,521.6649999997816,-0.05367739139643869 +104334,521.6699999997817,-0.05367725239040034 +104335,521.6749999997818,-0.05367711336457563 +104336,521.6799999997819,-0.053676974318957835 +104337,521.684999999782,-0.05367683525354021 +104338,521.6899999997821,-0.05367669616831599 +104339,521.6949999997822,-0.053676557063278424 +104340,521.6999999997823,-0.05367641793842077 +104341,521.7049999997824,-0.05367627879373627 +104342,521.7099999997826,-0.053676139629218154 +104343,521.7149999997827,-0.05367600044485967 +104344,521.7199999997828,-0.05367586124065403 +104345,521.7249999997829,-0.05367572201659448 +104346,521.729999999783,-0.05367558277267424 +104347,521.7349999997831,-0.05367544350888652 +104348,521.7399999997832,-0.053675304225224554 +104349,521.7449999997833,-0.053675164921681555 +104350,521.7499999997834,-0.05367502559825074 +104351,521.7549999997835,-0.053674886254925315 +104352,521.7599999997836,-0.053674746891698474 +104353,521.7649999997838,-0.05367460750856343 +104354,521.7699999997839,-0.053674468105513386 +104355,521.774999999784,-0.05367432868254153 +104356,521.7799999997841,-0.053674189239641054 +104357,521.7849999997842,-0.05367404977680515 +104358,521.7899999997843,-0.05367391029402701 +104359,521.7949999997844,-0.05367377079129982 +104360,521.7999999997845,-0.053673631268616746 +104361,521.8049999997846,-0.053673491725970975 +104362,521.8099999997847,-0.05367335216335568 +104363,521.8149999997848,-0.05367321258076402 +104364,521.819999999785,-0.05367307297818917 +104365,521.8249999997851,-0.05367293335562429 +104366,521.8299999997852,-0.05367279371306255 +104367,521.8349999997853,-0.0536726540504971 +104368,521.8399999997854,-0.053672514367921094 +104369,521.8449999997855,-0.053672374665327684 +104370,521.8499999997856,-0.053672234942710007 +104371,521.8549999997857,-0.05367209520006122 +104372,521.8599999997858,-0.05367195543737446 +104373,521.8649999997859,-0.05367181565464287 +104374,521.869999999786,-0.05367167585185958 +104375,521.8749999997862,-0.053671536029017704 +104376,521.8799999997863,-0.05367139618611039 +104377,521.8849999997864,-0.05367125632313075 +104378,521.8899999997865,-0.053671116440071914 +104379,521.8949999997866,-0.053670976536926984 +104380,521.8999999997867,-0.05367083661368909 +104381,521.9049999997868,-0.053670696670351334 +104382,521.9099999997869,-0.05367055670690684 +104383,521.914999999787,-0.05367041672334869 +104384,521.9199999997871,-0.05367027671967 +104385,521.9249999997872,-0.05367013669586386 +104386,521.9299999997874,-0.053669996651923374 +104387,521.9349999997875,-0.05366985658784161 +104388,521.9399999997876,-0.053669716503611666 +104389,521.9449999997877,-0.05366957639922664 +104390,521.9499999997878,-0.05366943627467961 +104391,521.9549999997879,-0.05366929612996364 +104392,521.959999999788,-0.05366915596507181 +104393,521.9649999997881,-0.0536690157799972 +104394,521.9699999997882,-0.05366887557473285 +104395,521.9749999997883,-0.05366873534927186 +104396,521.9799999997884,-0.053668595103607275 +104397,521.9849999997886,-0.053668454837732145 +104398,521.9899999997887,-0.05366831455163953 +104399,521.9949999997888,-0.05366817424532249 +104400,521.9999999997889,-0.05366803391877406 +104401,522.004999999789,-0.05366789357198729 +104402,522.0099999997891,-0.05366775320495522 +104403,522.0149999997892,-0.053667612817670886 +104404,522.0199999997893,-0.053667472410127336 +104405,522.0249999997894,-0.05366733198231758 +104406,522.0299999997895,-0.053667191534234646 +104407,522.0349999997896,-0.05366705106587158 +104408,522.0399999997898,-0.05366691057722137 +104409,522.0449999997899,-0.05366677006827706 +104410,522.04999999979,-0.05366662953903166 +104411,522.0549999997901,-0.05366648898947817 +104412,522.0599999997902,-0.05366634841960961 +104413,522.0649999997903,-0.053666207829418965 +104414,522.0699999997904,-0.05366606721889926 +104415,522.0749999997905,-0.05366592658804348 +104416,522.0799999997906,-0.053665785936844616 +104417,522.0849999997907,-0.05366564526529565 +104418,522.0899999997908,-0.05366550457338958 +104419,522.094999999791,-0.053665363861119406 +104420,522.0999999997911,-0.05366522312847807 +104421,522.1049999997912,-0.053665082375458584 +104422,522.1099999997913,-0.0536649416020539 +104423,522.1149999997914,-0.053664800808257 +104424,522.1199999997915,-0.053664659994060844 +104425,522.1249999997916,-0.05366451915945839 +104426,522.1299999997917,-0.05366437830444261 +104427,522.1349999997918,-0.05366423742900645 +104428,522.1399999997919,-0.05366409653314287 +104429,522.144999999792,-0.05366395561684482 +104430,522.1499999997922,-0.05366381468010523 +104431,522.1549999997923,-0.05366367372291707 +104432,522.1599999997924,-0.05366353274527326 +104433,522.1649999997925,-0.05366339174716674 +104434,522.1699999997926,-0.05366325072859044 +104435,522.1749999997927,-0.053663109689537296 +104436,522.1799999997928,-0.053662968630000224 +104437,522.1849999997929,-0.05366282754997217 +104438,522.189999999793,-0.053662686449446016 +104439,522.1949999997931,-0.05366254532841471 +104440,522.1999999997932,-0.05366240418687115 +104441,522.2049999997934,-0.05366226302480823 +104442,522.2099999997935,-0.05366212184221888 +104443,522.2149999997936,-0.05366198063909599 +104444,522.2199999997937,-0.053661839415432455 +104445,522.2249999997938,-0.05366169817122118 +104446,522.2299999997939,-0.05366155690645505 +104447,522.234999999794,-0.05366141562112695 +104448,522.2399999997941,-0.05366127431522976 +104449,522.2449999997942,-0.05366113298875638 +104450,522.2499999997943,-0.05366099164169967 +104451,522.2549999997944,-0.053660850274052506 +104452,522.2599999997946,-0.05366070888580777 +104453,522.2649999997947,-0.05366056747695832 +104454,522.2699999997948,-0.053660426047497024 +104455,522.2749999997949,-0.05366028459741674 +104456,522.279999999795,-0.05366014312671031 +104457,522.2849999997951,-0.05366000163537061 +104458,522.2899999997952,-0.053659860123390475 +104459,522.2949999997953,-0.05365971859076277 +104460,522.2999999997954,-0.05365957703748032 +104461,522.3049999997955,-0.05365943546353597 +104462,522.3099999997957,-0.05365929386892255 +104463,522.3149999997958,-0.0536591522536329 +104464,522.3199999997959,-0.05365901061765985 +104465,522.324999999796,-0.05365886896099622 +104466,522.3299999997961,-0.053658727283634834 +104467,522.3349999997962,-0.053658585585568505 +104468,522.3399999997963,-0.05365844386679005 +104469,522.3449999997964,-0.053658302127292286 +104470,522.3499999997965,-0.053658160367068025 +104471,522.3549999997966,-0.05365801858611006 +104472,522.3599999997967,-0.0536578767844112 +104473,522.3649999997969,-0.053657734961964236 +104474,522.369999999797,-0.05365759311876197 +104475,522.3749999997971,-0.053657451254797185 +104476,522.3799999997972,-0.05365730937006266 +104477,522.3849999997973,-0.05365716746455121 +104478,522.3899999997974,-0.05365702553825558 +104479,522.3949999997975,-0.05365688359116857 +104480,522.3999999997976,-0.05365674162328294 +104481,522.4049999997977,-0.05365659963459146 +104482,522.4099999997978,-0.053656457625086904 +104483,522.4149999997979,-0.05365631559476202 +104484,522.419999999798,-0.05365617354360958 +104485,522.4249999997982,-0.053656031471622345 +104486,522.4299999997983,-0.05365588937879305 +104487,522.4349999997984,-0.05365574726511444 +104488,522.4399999997985,-0.05365560513057928 +104489,522.4449999997986,-0.0536554629751803 +104490,522.4499999997987,-0.05365532079891024 +104491,522.4549999997988,-0.05365517860176183 +104492,522.4599999997989,-0.0536550363837278 +104493,522.464999999799,-0.053654894144800895 +104494,522.4699999997991,-0.0536547518849738 +104495,522.4749999997993,-0.05365460960423928 +104496,522.4799999997994,-0.05365446730259002 +104497,522.4849999997995,-0.05365432498001874 +104498,522.4899999997996,-0.05365418263651816 +104499,522.4949999997997,-0.053654040272080976 +104500,522.4999999997998,-0.05365389788669989 +104501,522.5049999997999,-0.05365375548036761 +104502,522.5099999998,-0.05365361305307681 +104503,522.5149999998001,-0.0536534706048202 +104504,522.5199999998002,-0.053653328135590456 +104505,522.5249999998003,-0.053653185645380276 +104506,522.5299999998005,-0.05365304313418233 +104507,522.5349999998006,-0.0536529006019893 +104508,522.5399999998007,-0.05365275804879386 +104509,522.5449999998008,-0.053652615474588675 +104510,522.5499999998009,-0.05365247287936641 +104511,522.554999999801,-0.05365233026311974 +104512,522.5599999998011,-0.053652187625841306 +104513,522.5649999998012,-0.05365204496752378 +104514,522.5699999998013,-0.0536519022881598 +104515,522.5749999998014,-0.053651759587742036 +104516,522.5799999998015,-0.053651616866263116 +104517,522.5849999998017,-0.053651474123715674 +104518,522.5899999998018,-0.05365133136009237 +104519,522.5949999998019,-0.05365118857538583 +104520,522.599999999802,-0.05365104576958868 +104521,522.6049999998021,-0.053650902942693535 +104522,522.6099999998022,-0.053650760094693044 +104523,522.6149999998023,-0.05365061722557981 +104524,522.6199999998024,-0.05365047433534645 +104525,522.6249999998025,-0.053650331423985564 +104526,522.6299999998026,-0.05365018849148979 +104527,522.6349999998027,-0.05365004553785171 +104528,522.6399999998029,-0.05364990256306395 +104529,522.644999999803,-0.05364975956711908 +104530,522.6499999998031,-0.053649616550009695 +104531,522.6549999998032,-0.05364947351172842 +104532,522.6599999998033,-0.05364933045226781 +104533,522.6649999998034,-0.053649187371620444 +104534,522.6699999998035,-0.05364904426977893 +104535,522.6749999998036,-0.053648901146735824 +104536,522.6799999998037,-0.053648758002483705 +104537,522.6849999998038,-0.053648614837015135 +104538,522.689999999804,-0.053648471650322695 +104539,522.694999999804,-0.05364832844239892 +104540,522.6999999998042,-0.05364818521323639 +104541,522.7049999998043,-0.05364804196282765 +104542,522.7099999998044,-0.053647898691165256 +104543,522.7149999998045,-0.05364775539824176 +104544,522.7199999998046,-0.05364761208404968 +104545,522.7249999998047,-0.05364746874858159 +104546,522.7299999998048,-0.05364732539183001 +104547,522.7349999998049,-0.05364718201378746 +104548,522.739999999805,-0.05364703861444649 +104549,522.7449999998051,-0.05364689519379961 +104550,522.7499999998053,-0.05364675175183935 +104551,522.7549999998054,-0.05364660828855821 +104552,522.7599999998055,-0.05364646480394873 +104553,522.7649999998056,-0.053646321298003403 +104554,522.7699999998057,-0.053646177770714745 +104555,522.7749999998058,-0.05364603422207524 +104556,522.7799999998059,-0.053645890652077415 +104557,522.784999999806,-0.05364574706071375 +104558,522.7899999998061,-0.053645603447976725 +104559,522.7949999998062,-0.05364545981385885 +104560,522.7999999998063,-0.0536453161583526 +104561,522.8049999998065,-0.05364517248145046 +104562,522.8099999998066,-0.05364502878314491 +104563,522.8149999998067,-0.053644885063428405 +104564,522.8199999998068,-0.05364474132229343 +104565,522.8249999998069,-0.05364459755973245 +104566,522.829999999807,-0.05364445377573791 +104567,522.8349999998071,-0.053644309970302305 +104568,522.8399999998072,-0.05364416614341806 +104569,522.8449999998073,-0.053644022295077635 +104570,522.8499999998074,-0.053643878425273475 +104571,522.8549999998075,-0.05364373453399802 +104572,522.8599999998077,-0.05364359062124372 +104573,522.8649999998078,-0.05364344668700301 +104574,522.8699999998079,-0.05364330273126831 +104575,522.874999999808,-0.05364315875403206 +104576,522.8799999998081,-0.05364301475528667 +104577,522.8849999998082,-0.053642870735024585 +104578,522.8899999998083,-0.053642726693238205 +104579,522.8949999998084,-0.053642582629919944 +104580,522.8999999998085,-0.05364243854506222 +104581,522.9049999998086,-0.053642294438657444 +104582,522.9099999998087,-0.053642150310698 +104583,522.9149999998089,-0.053642006161176314 +104584,522.919999999809,-0.05364186199008475 +104585,522.9249999998091,-0.05364171779741572 +104586,522.9299999998092,-0.0536415735831616 +104587,522.9349999998093,-0.053641429347314785 +104588,522.9399999998094,-0.05364128508986764 +104589,522.9449999998095,-0.05364114081081256 +104590,522.9499999998096,-0.053640996510141904 +104591,522.9549999998097,-0.05364085218784804 +104592,522.9599999998098,-0.05364070784392334 +104593,522.96499999981,-0.053640563478360166 +104594,522.96999999981,-0.05364041909115086 +104595,522.9749999998102,-0.0536402746822878 +104596,522.9799999998103,-0.05364013025176331 +104597,522.9849999998104,-0.05363998579956976 +104598,522.9899999998105,-0.05363984132569948 +104599,522.9949999998106,-0.0536396968301448 +104600,522.9999999998107,-0.053639552312898076 +104601,523.0049999998108,-0.05363940777395162 +104602,523.0099999998109,-0.05363926321329777 +104603,523.014999999811,-0.053639118630928836 +104604,523.0199999998111,-0.05363897402683715 +104605,523.0249999998113,-0.05363882940101503 +104606,523.0299999998114,-0.053638684753454784 +104607,523.0349999998115,-0.053638540084148714 +104608,523.0399999998116,-0.05363839539308913 +104609,523.0449999998117,-0.053638250680268326 +104610,523.0499999998118,-0.0536381059456786 +104611,523.0549999998119,-0.053637961189312265 +104612,523.059999999812,-0.05363781641116158 +104613,523.0649999998121,-0.05363767161121885 +104614,523.0699999998122,-0.05363752678947634 +104615,523.0749999998123,-0.053637381945926335 +104616,523.0799999998125,-0.053637237080561125 +104617,523.0849999998126,-0.053637092193372954 +104618,523.0899999998127,-0.05363694728435411 +104619,523.0949999998128,-0.05363680235349683 +104620,523.0999999998129,-0.05363665740079341 +104621,523.104999999813,-0.053636512426236065 +104622,523.1099999998131,-0.053636367429817075 +104623,523.1149999998132,-0.05363622241152866 +104624,523.1199999998133,-0.05363607737136309 +104625,523.1249999998134,-0.05363593230931258 +104626,523.1299999998135,-0.05363578722536939 +104627,523.1349999998137,-0.05363564211952573 +104628,523.1399999998138,-0.053635496991773834 +104629,523.1449999998139,-0.05363535184210593 +104630,523.149999999814,-0.05363520667051425 +104631,523.1549999998141,-0.053635061476990986 +104632,523.1599999998142,-0.05363491626152836 +104633,523.1649999998143,-0.05363477102411858 +104634,523.1699999998144,-0.05363462576475385 +104635,523.1749999998145,-0.053634480483426374 +104636,523.1799999998146,-0.053634335180128334 +104637,523.1849999998147,-0.05363418985485194 +104638,523.1899999998149,-0.05363404450758938 +104639,523.194999999815,-0.05363389913833284 +104640,523.1999999998151,-0.05363375374707448 +104641,523.2049999998152,-0.053633608333806496 +104642,523.2099999998153,-0.05363346289852106 +104643,523.2149999998154,-0.05363331744121034 +104644,523.2199999998155,-0.053633171961866496 +104645,523.2249999998156,-0.0536330264604817 +104646,523.2299999998157,-0.0536328809370481 +104647,523.2349999998158,-0.053632735391557856 +104648,523.239999999816,-0.05363258982400312 +104649,523.2449999998161,-0.05363244423437603 +104650,523.2499999998162,-0.05363229862266873 +104651,523.2549999998163,-0.05363215298887336 +104652,523.2599999998164,-0.053632007332982054 +104653,523.2649999998165,-0.05363186165498695 +104654,523.2699999998166,-0.053631715954880164 +104655,523.2749999998167,-0.053631570232653816 +104656,523.2799999998168,-0.05363142448830003 +104657,523.2849999998169,-0.05363127872181093 +104658,523.289999999817,-0.05363113293317862 +104659,523.2949999998172,-0.053630987122395196 +104660,523.2999999998173,-0.05363084128945277 +104661,523.3049999998174,-0.05363069543434345 +104662,523.3099999998175,-0.053630549557059315 +104663,523.3149999998176,-0.05363040365759245 +104664,523.3199999998177,-0.05363025773593497 +104665,523.3249999998178,-0.05363011179207895 +104666,523.3299999998179,-0.053629965826016444 +104667,523.334999999818,-0.05362981983773955 +104668,523.3399999998181,-0.05362967382724034 +104669,523.3449999998182,-0.05362952779451088 +104670,523.3499999998184,-0.05362938173954322 +104671,523.3549999998185,-0.05362923566232944 +104672,523.3599999998186,-0.05362908956286157 +104673,523.3649999998187,-0.053628943441131685 +104674,523.3699999998188,-0.05362879729713181 +104675,523.3749999998189,-0.05362865113085401 +104676,523.379999999819,-0.05362850494229032 +104677,523.3849999998191,-0.05362835873143277 +104678,523.3899999998192,-0.05362821249827339 +104679,523.3949999998193,-0.05362806624280421 +104680,523.3999999998194,-0.05362791996501726 +104681,523.4049999998196,-0.05362777366490455 +104682,523.4099999998197,-0.0536276273424581 +104683,523.4149999998198,-0.053627480997669924 +104684,523.4199999998199,-0.05362733463053202 +104685,523.42499999982,-0.053627188241036405 +104686,523.4299999998201,-0.05362704182917507 +104687,523.4349999998202,-0.05362689539494002 +104688,523.4399999998203,-0.05362674893832325 +104689,523.4449999998204,-0.05362660245931672 +104690,523.4499999998205,-0.053626455957912426 +104691,523.4549999998206,-0.05362630943410237 +104692,523.4599999998208,-0.05362616288787851 +104693,523.4649999998209,-0.053626016319232805 +104694,523.469999999821,-0.05362586972815724 +104695,523.4749999998211,-0.053625723114643774 +104696,523.4799999998212,-0.05362557647868438 +104697,523.4849999998213,-0.053625429820271 +104698,523.4899999998214,-0.05362528313939558 +104699,523.4949999998215,-0.05362513643605007 +104700,523.4999999998216,-0.05362498971022642 +104701,523.5049999998217,-0.05362484296191656 +104702,523.5099999998218,-0.05362469619111244 +104703,523.514999999822,-0.053624549397805976 +104704,523.5199999998221,-0.053624402581989104 +104705,523.5249999998222,-0.05362425574365375 +104706,523.5299999998223,-0.053624108882791816 +104707,523.5349999998224,-0.05362396199939524 +104708,523.5399999998225,-0.053623815093455915 +104709,523.5449999998226,-0.05362366816496576 +104710,523.5499999998227,-0.053623521213916676 +104711,523.5549999998228,-0.05362337424030055 +104712,523.5599999998229,-0.05362322724410929 +104713,523.564999999823,-0.053623080225334775 +104714,523.5699999998232,-0.053622933183968914 +104715,523.5749999998233,-0.05362278612000357 +104716,523.5799999998234,-0.05362263903343062 +104717,523.5849999998235,-0.05362249192424194 +104718,523.5899999998236,-0.053622344792429416 +104719,523.5949999998237,-0.0536221976379849 +104720,523.5999999998238,-0.05362205046090025 +104721,523.6049999998239,-0.05362190326116735 +104722,523.609999999824,-0.053621756038778015 +104723,523.6149999998241,-0.05362160879372412 +104724,523.6199999998242,-0.05362146152599752 +104725,523.6249999998244,-0.05362131423559004 +104726,523.6299999998245,-0.0536211669224935 +104727,523.6349999998246,-0.05362101958669976 +104728,523.6399999998247,-0.05362087222820065 +104729,523.6449999998248,-0.05362072484698798 +104730,523.6499999998249,-0.05362057744305359 +104731,523.654999999825,-0.05362043001638928 +104732,523.6599999998251,-0.05362028256698687 +104733,523.6649999998252,-0.05362013509483818 +104734,523.6699999998253,-0.05361998759993499 +104735,523.6749999998254,-0.05361984008226911 +104736,523.6799999998256,-0.05361969254183234 +104737,523.6849999998257,-0.05361954497861648 +104738,523.6899999998258,-0.053619397392613295 +104739,523.6949999998259,-0.0536192497838146 +104740,523.699999999826,-0.053619102152212154 +104741,523.7049999998261,-0.05361895449779773 +104742,523.7099999998262,-0.05361880682056311 +104743,523.7149999998263,-0.05361865912050005 +104744,523.7199999998264,-0.05361851139760033 +104745,523.7249999998265,-0.053618363651855704 +104746,523.7299999998266,-0.05361821588325792 +104747,523.7349999998268,-0.05361806809179873 +104748,523.7399999998269,-0.05361792027746988 +104749,523.744999999827,-0.05361777244026311 +104750,523.7499999998271,-0.05361762458017017 +104751,523.7549999998272,-0.053617476697182795 +104752,523.7599999998273,-0.0536173287912927 +104753,523.7649999998274,-0.053617180862491606 +104754,523.7699999998275,-0.05361703291077126 +104755,523.7749999998276,-0.053616884936123356 +104756,523.7799999998277,-0.05361673693853963 +104757,523.7849999998278,-0.05361658891801177 +104758,523.789999999828,-0.05361644087453149 +104759,523.7949999998281,-0.05361629280809049 +104760,523.7999999998282,-0.053616144718680474 +104761,523.8049999998283,-0.053615996606293126 +104762,523.8099999998284,-0.05361584847092013 +104763,523.8149999998285,-0.05361570031255317 +104764,523.8199999998286,-0.053615552131183936 +104765,523.8249999998287,-0.05361540392680409 +104766,523.8299999998288,-0.05361525569940531 +104767,523.8349999998289,-0.05361510744897927 +104768,523.839999999829,-0.053614959175517625 +104769,523.8449999998292,-0.05361481087901204 +104770,523.8499999998293,-0.053614662559454164 +104771,523.8549999998294,-0.05361451421683565 +104772,523.8599999998295,-0.05361436585114812 +104773,523.8649999998296,-0.053614217462383255 +104774,523.8699999998297,-0.05361406905053266 +104775,523.8749999998298,-0.053613920615588 +104776,523.8799999998299,-0.05361377215754088 +104777,523.88499999983,-0.05361362367638293 +104778,523.8899999998301,-0.05361347517210577 +104779,523.8949999998302,-0.05361332664470102 +104780,523.8999999998304,-0.05361317809416029 +104781,523.9049999998305,-0.0536130295204752 +104782,523.9099999998306,-0.05361288092363732 +104783,523.9149999998307,-0.053612732303638284 +104784,523.9199999998308,-0.05361258366046967 +104785,523.9249999998309,-0.05361243499412306 +104786,523.929999999831,-0.05361228630459007 +104787,523.9349999998311,-0.053612137591862265 +104788,523.9399999998312,-0.053611988855931214 +104789,523.9449999998313,-0.0536118400967885 +104790,523.9499999998314,-0.0536116913144257 +104791,523.9549999998316,-0.05361154250883436 +104792,523.9599999998317,-0.05361139368000606 +104793,523.9649999998318,-0.05361124482793236 +104794,523.9699999998319,-0.053611095952604784 +104795,523.974999999832,-0.0536109470540149 +104796,523.9799999998321,-0.05361079813215425 +104797,523.9849999998322,-0.05361064918701436 +104798,523.9899999998323,-0.05361050021858678 +104799,523.9949999998324,-0.05361035122686305 +104800,523.9999999998325,-0.05361020221183468 +104801,524.0049999998326,-0.05361005317349318 +104802,524.0099999998328,-0.05360990411183011 +104803,524.0149999998329,-0.05360975502683694 +104804,524.019999999833,-0.0536096059185052 +104805,524.0249999998331,-0.05360945678682639 +104806,524.0299999998332,-0.05360930763179201 +104807,524.0349999998333,-0.05360915845339356 +104808,524.0399999998334,-0.05360900925162254 +104809,524.0449999998335,-0.053608860026470424 +104810,524.0499999998336,-0.05360871077792869 +104811,524.0549999998337,-0.05360856150598883 +104812,524.0599999998338,-0.05360841221064232 +104813,524.064999999834,-0.053608262891880615 +104814,524.0699999998341,-0.05360811354969519 +104815,524.0749999998342,-0.05360796418407752 +104816,524.0799999998343,-0.05360781479501904 +104817,524.0849999998344,-0.053607665382511216 +104818,524.0899999998345,-0.05360751594654549 +104819,524.0949999998346,-0.05360736648711331 +104820,524.0999999998347,-0.05360721700420612 +104821,524.1049999998348,-0.05360706749781535 +104822,524.1099999998349,-0.05360691796793243 +104823,524.114999999835,-0.0536067684145488 +104824,524.1199999998352,-0.05360661883765586 +104825,524.1249999998353,-0.05360646923724504 +104826,524.1299999998354,-0.05360631961330775 +104827,524.1349999998355,-0.05360616996583539 +104828,524.1399999998356,-0.05360602029481939 +104829,524.1449999998357,-0.05360587060025114 +104830,524.1499999998358,-0.05360572088212203 +104831,524.1549999998359,-0.05360557114042345 +104832,524.159999999836,-0.05360542137514679 +104833,524.1649999998361,-0.053605271586283434 +104834,524.1699999998363,-0.05360512177382477 +104835,524.1749999998364,-0.05360497193776215 +104836,524.1799999998365,-0.05360482207808696 +104837,524.1849999998366,-0.053604672194790565 +104838,524.1899999998367,-0.05360452228786433 +104839,524.1949999998368,-0.0536043723572996 +104840,524.1999999998369,-0.05360422240308773 +104841,524.204999999837,-0.05360407242522007 +104842,524.2099999998371,-0.053603922423687965 +104843,524.2149999998372,-0.05360377239848275 +104844,524.2199999998373,-0.05360362234959575 +104845,524.2249999998375,-0.05360347227701831 +104846,524.2299999998376,-0.05360332218074176 +104847,524.2349999998377,-0.053603172060757404 +104848,524.2399999998378,-0.05360302191705657 +104849,524.2449999998379,-0.05360287174963057 +104850,524.249999999838,-0.05360272155847069 +104851,524.2549999998381,-0.05360257134356826 +104852,524.2599999998382,-0.05360242110491457 +104853,524.2649999998383,-0.05360227084250092 +104854,524.2699999998384,-0.053602120556318585 +104855,524.2749999998385,-0.05360197024635886 +104856,524.2799999998387,-0.05360181991261304 +104857,524.2849999998388,-0.053601669555072375 +104858,524.2899999998389,-0.053601519173728164 +104859,524.294999999839,-0.05360136876857165 +104860,524.2999999998391,-0.0536012183395941 +104861,524.3049999998392,-0.05360106788678678 +104862,524.3099999998393,-0.053600917410140954 +104863,524.3149999998394,-0.05360076690964786 +104864,524.3199999998395,-0.053600616385298734 +104865,524.3249999998396,-0.05360046583708484 +104866,524.3299999998397,-0.053600315264997395 +104867,524.3349999998399,-0.05360016466902764 +104868,524.33999999984,-0.05360001404916679 +104869,524.3449999998401,-0.05359986340540608 +104870,524.3499999998402,-0.05359971273773673 +104871,524.3549999998403,-0.05359956204614994 +104872,524.3599999998404,-0.05359941133063693 +104873,524.3649999998405,-0.05359926059118889 +104874,524.3699999998406,-0.05359910982779705 +104875,524.3749999998407,-0.05359895904045259 +104876,524.3799999998408,-0.053598808229146686 +104877,524.3849999998409,-0.05359865739387054 +104878,524.389999999841,-0.05359850653461533 +104879,524.3949999998412,-0.053598355651372234 +104880,524.3999999998413,-0.05359820474413243 +104881,524.4049999998414,-0.05359805381288709 +104882,524.4099999998415,-0.05359790285762736 +104883,524.4149999998416,-0.05359775187834441 +104884,524.4199999998417,-0.0535976008750294 +104885,524.4249999998418,-0.05359744984767347 +104886,524.4299999998419,-0.05359729879626778 +104887,524.434999999842,-0.05359714772080346 +104888,524.4399999998421,-0.053596996621271646 +104889,524.4449999998423,-0.05359684549766347 +104890,524.4499999998424,-0.05359669434997007 +104891,524.4549999998425,-0.053596543178182555 +104892,524.4599999998426,-0.053596391982292046 +104893,524.4649999998427,-0.05359624076228967 +104894,524.4699999998428,-0.05359608951816652 +104895,524.4749999998429,-0.05359593824991372 +104896,524.479999999843,-0.05359578695752234 +104897,524.4849999998431,-0.053595635640983505 +104898,524.4899999998432,-0.05359548430028829 +104899,524.4949999998433,-0.05359533293542778 +104900,524.4999999998435,-0.05359518154639307 +104901,524.5049999998436,-0.053595030133175216 +104902,524.5099999998437,-0.05359487869576532 +104903,524.5149999998438,-0.05359472723415442 +104904,524.5199999998439,-0.053594575748333595 +104905,524.524999999844,-0.053594424238293914 +104906,524.5299999998441,-0.05359427270402641 +104907,524.5349999998442,-0.05359412114552214 +104908,524.5399999998443,-0.05359396956277215 +104909,524.5449999998444,-0.05359381795576748 +104910,524.5499999998445,-0.05359366632449917 +104911,524.5549999998447,-0.05359351466895825 +104912,524.5599999998448,-0.053593362989135744 +104913,524.5649999998449,-0.05359321128502266 +104914,524.569999999845,-0.05359305955661005 +104915,524.5749999998451,-0.053592907803888895 +104916,524.5799999998452,-0.053592756026850215 +104917,524.5849999998453,-0.05359260422548501 +104918,524.5899999998454,-0.05359245239978427 +104919,524.5949999998455,-0.05359230054973899 +104920,524.5999999998456,-0.053592148675340186 +104921,524.6049999998457,-0.053591996776578825 +104922,524.6099999998459,-0.053591844853445876 +104923,524.614999999846,-0.05359169290593233 +104924,524.6199999998461,-0.05359154093402915 +104925,524.6249999998462,-0.053591388937727316 +104926,524.6299999998463,-0.05359123691701777 +104927,524.6349999998464,-0.053591084871891466 +104928,524.6399999998465,-0.05359093280233938 +104929,524.6449999998466,-0.053590780708352444 +104930,524.6499999998467,-0.05359062858992159 +104931,524.6549999998468,-0.05359047644703777 +104932,524.659999999847,-0.05359032427969193 +104933,524.664999999847,-0.05359017208787498 +104934,524.6699999998472,-0.05359001987157784 +104935,524.6749999998473,-0.05358986763079143 +104936,524.6799999998474,-0.05358971536550668 +104937,524.6849999998475,-0.05358956307571448 +104938,524.6899999998476,-0.05358941076140576 +104939,524.6949999998477,-0.05358925842257141 +104940,524.6999999998478,-0.05358910605920231 +104941,524.7049999998479,-0.05358895367128936 +104942,524.709999999848,-0.053588801258823454 +104943,524.7149999998481,-0.05358864882179546 +104944,524.7199999998483,-0.05358849636019626 +104945,524.7249999998484,-0.05358834387401673 +104946,524.7299999998485,-0.053588191363247745 +104947,524.7349999998486,-0.05358803882788016 +104948,524.7399999998487,-0.053587886267904825 +104949,524.7449999998488,-0.05358773368331259 +104950,524.7499999998489,-0.053587581074094316 +104951,524.754999999849,-0.05358742844024084 +104952,524.7599999998491,-0.05358727578174302 +104953,524.7649999998492,-0.05358712309859166 +104954,524.7699999998493,-0.05358697039077761 +104955,524.7749999998495,-0.05358681765829168 +104956,524.7799999998496,-0.053586664901124695 +104957,524.7849999998497,-0.05358651211926747 +104958,524.7899999998498,-0.05358635931271083 +104959,524.7949999998499,-0.05358620648144556 +104960,524.79999999985,-0.05358605362546247 +104961,524.8049999998501,-0.05358590074475235 +104962,524.8099999998502,-0.053585747839305996 +104963,524.8149999998503,-0.053585594909114194 +104964,524.8199999998504,-0.05358544195416772 +104965,524.8249999998505,-0.05358528897445736 +104966,524.8299999998507,-0.05358513596997388 +104967,524.8349999998508,-0.05358498294070805 +104968,524.8399999998509,-0.05358482988665063 +104969,524.844999999851,-0.053584676807792365 +104970,524.8499999998511,-0.053584523704124025 +104971,524.8549999998512,-0.05358437057563636 +104972,524.8599999998513,-0.05358421742232009 +104973,524.8649999998514,-0.05358406424416599 +104974,524.8699999998515,-0.05358391104116477 +104975,524.8749999998516,-0.05358375781330716 +104976,524.8799999998517,-0.05358360456058388 +104977,524.8849999998519,-0.05358345128298567 +104978,524.889999999852,-0.05358329798050321 +104979,524.8949999998521,-0.05358314465312724 +104980,524.8999999998522,-0.05358299130084845 +104981,524.9049999998523,-0.053582837923657534 +104982,524.9099999998524,-0.05358268452154521 +104983,524.9149999998525,-0.05358253109450213 +104984,524.9199999998526,-0.05358237764251901 +104985,524.9249999998527,-0.05358222416558653 +104986,524.9299999998528,-0.05358207066369535 +104987,524.934999999853,-0.05358191713683615 +104988,524.9399999998531,-0.053581763584999595 +104989,524.9449999998532,-0.05358161000817634 +104990,524.9499999998533,-0.05358145640635705 +104991,524.9549999998534,-0.05358130277953237 +104992,524.9599999998535,-0.05358114912769294 +104993,524.9649999998536,-0.05358099545082941 +104994,524.9699999998537,-0.05358084174893241 +104995,524.9749999998538,-0.05358068802199259 +104996,524.9799999998539,-0.05358053427000054 +104997,524.984999999854,-0.053580380492946916 +104998,524.9899999998541,-0.05358022669082233 +104999,524.9949999998543,-0.05358007286361738 +105000,524.9999999998544,-0.053579919011322676 +105001,525.0049999998545,-0.05357976513392882 +105002,525.0099999998546,-0.05357961123142641 +105003,525.0149999998547,-0.053579457303806054 +105004,525.0199999998548,-0.053579303351058316 +105005,525.0249999998549,-0.05357914937317379 +105006,525.029999999855,-0.053578995370143066 +105007,525.0349999998551,-0.05357884134195669 +105008,525.0399999998552,-0.05357868728860524 +105009,525.0449999998553,-0.053578533210079285 +105010,525.0499999998555,-0.05357837910636938 +105011,525.0549999998556,-0.05357822497746608 +105012,525.0599999998557,-0.05357807082335993 +105013,525.0649999998558,-0.053577916644041455 +105014,525.0699999998559,-0.053577762439501214 +105015,525.074999999856,-0.053577608209729746 +105016,525.0799999998561,-0.05357745395471757 +105017,525.0849999998562,-0.05357729967445521 +105018,525.0899999998563,-0.05357714536893316 +105019,525.0949999998564,-0.05357699103814197 +105020,525.0999999998565,-0.05357683668207213 +105021,525.1049999998567,-0.05357668230071414 +105022,525.1099999998568,-0.053576527894058514 +105023,525.1149999998569,-0.05357637346209573 +105024,525.119999999857,-0.05357621900481628 +105025,525.1249999998571,-0.053576064522210656 +105026,525.1299999998572,-0.053575910014269326 +105027,525.1349999998573,-0.05357575548098276 +105028,525.1399999998574,-0.053575600922341454 +105029,525.1449999998575,-0.05357544633833584 +105030,525.1499999998576,-0.053575291728956385 +105031,525.1549999998578,-0.05357513709419355 +105032,525.1599999998579,-0.053574982434037764 +105033,525.164999999858,-0.05357482774847949 +105034,525.1699999998581,-0.05357467303750916 +105035,525.1749999998582,-0.05357451830111721 +105036,525.1799999998583,-0.053574363539294054 +105037,525.1849999998584,-0.05357420875203013 +105038,525.1899999998585,-0.05357405393931586 +105039,525.1949999998586,-0.05357389910114165 +105040,525.1999999998587,-0.05357374423749791 +105041,525.2049999998588,-0.05357358934837502 +105042,525.209999999859,-0.05357343443376341 +105043,525.2149999998591,-0.05357327949365346 +105044,525.2199999998592,-0.053573124528035566 +105045,525.2249999998593,-0.053572969536900106 +105046,525.2299999998594,-0.05357281452023745 +105047,525.2349999998595,-0.05357265947803798 +105048,525.2399999998596,-0.05357250441029206 +105049,525.2449999998597,-0.053572349316990044 +105050,525.2499999998598,-0.05357219419812231 +105051,525.2549999998599,-0.053572039053679195 +105052,525.25999999986,-0.05357188388365104 +105053,525.2649999998602,-0.0535717286880282 +105054,525.2699999998603,-0.05357157346680101 +105055,525.2749999998604,-0.05357141821995981 +105056,525.2799999998605,-0.05357126294749492 +105057,525.2849999998606,-0.053571107649396654 +105058,525.2899999998607,-0.05357095232565533 +105059,525.2949999998608,-0.05357079697626126 +105060,525.2999999998609,-0.05357064160120477 +105061,525.304999999861,-0.05357048620047614 +105062,525.3099999998611,-0.05357033077406568 +105063,525.3149999998612,-0.053570175321963676 +105064,525.3199999998614,-0.0535700198441604 +105065,525.3249999998615,-0.05356986434064615 +105066,525.3299999998616,-0.0535697088114112 +105067,525.3349999998617,-0.053569553256445815 +105068,525.3399999998618,-0.05356939767574026 +105069,525.3449999998619,-0.05356924206928481 +105070,525.349999999862,-0.053569086437069716 +105071,525.3549999998621,-0.05356893077908521 +105072,525.3599999998622,-0.053568775095321555 +105073,525.3649999998623,-0.053568619385768984 +105074,525.3699999998624,-0.05356846365041773 +105075,525.3749999998626,-0.053568307889258024 +105076,525.3799999998627,-0.053568152102280095 +105077,525.3849999998628,-0.05356799628947415 +105078,525.3899999998629,-0.05356784045083042 +105079,525.394999999863,-0.0535676845863391 +105080,525.3999999998631,-0.05356752869599041 +105081,525.4049999998632,-0.05356737277977453 +105082,525.4099999998633,-0.05356721683768167 +105083,525.4149999998634,-0.053567060869702005 +105084,525.4199999998635,-0.05356690487582573 +105085,525.4249999998636,-0.053566748856043005 +105086,525.4299999998638,-0.05356659281034402 +105087,525.4349999998639,-0.053566436738718935 +105088,525.439999999864,-0.05356628064115792 +105089,525.4449999998641,-0.05356612451765112 +105090,525.4499999998642,-0.05356596836818869 +105091,525.4549999998643,-0.05356581219276079 +105092,525.4599999998644,-0.05356565599135755 +105093,525.4649999998645,-0.0535654997639691 +105094,525.4699999998646,-0.05356534351058558 +105095,525.4749999998647,-0.05356518723119712 +105096,525.4799999998648,-0.05356503092579382 +105097,525.484999999865,-0.05356487459436582 +105098,525.4899999998651,-0.05356471823690322 +105099,525.4949999998652,-0.053564561853396114 +105100,525.4999999998653,-0.05356440544383462 +105101,525.5049999998654,-0.05356424900820882 +105102,525.5099999998655,-0.053564092546508804 +105103,525.5149999998656,-0.053563936058724664 +105104,525.5199999998657,-0.05356377954484647 +105105,525.5249999998658,-0.0535636230048643 +105106,525.5299999998659,-0.05356346643876822 +105107,525.534999999866,-0.05356330984654829 +105108,525.5399999998662,-0.053563153228194584 +105109,525.5449999998663,-0.05356299658369713 +105110,525.5499999998664,-0.053562839913045994 +105111,525.5549999998665,-0.05356268321623119 +105112,525.5599999998666,-0.053562526493242786 +105113,525.5649999998667,-0.05356236974407081 +105114,525.5699999998668,-0.05356221296870527 +105115,525.5749999998669,-0.05356205616713619 +105116,525.579999999867,-0.053561899339353604 +105117,525.5849999998671,-0.053561742485347494 +105118,525.5899999998672,-0.053561585605107896 +105119,525.5949999998674,-0.053561428698624784 +105120,525.5999999998675,-0.05356127176588815 +105121,525.6049999998676,-0.053561114806888 +105122,525.6099999998677,-0.05356095782161431 +105123,525.6149999998678,-0.05356080081005706 +105124,525.6199999998679,-0.05356064377220622 +105125,525.624999999868,-0.053560486708051754 +105126,525.6299999998681,-0.053560329617583634 +105127,525.6349999998682,-0.05356017250079181 +105128,525.6399999998683,-0.05356001535766623 +105129,525.6449999998684,-0.053559858188196856 +105130,525.6499999998686,-0.05355970099237361 +105131,525.6549999998687,-0.05355954377018642 +105132,525.6599999998688,-0.053559386521625243 +105133,525.6649999998689,-0.05355922924667999 +105134,525.669999999869,-0.053559071945340576 +105135,525.6749999998691,-0.053558914617596924 +105136,525.6799999998692,-0.053558757263438936 +105137,525.6849999998693,-0.053558599882856515 +105138,525.6899999998694,-0.05355844247583956 +105139,525.6949999998695,-0.05355828504237796 +105140,525.6999999998696,-0.05355812758246161 +105141,525.7049999998698,-0.05355797009608038 +105142,525.7099999998699,-0.05355781258322417 +105143,525.71499999987,-0.05355765504388282 +105144,525.7199999998701,-0.053557497478046216 +105145,525.7249999998702,-0.053557339885704214 +105146,525.7299999998703,-0.05355718226684665 +105147,525.7349999998704,-0.053557024621463396 +105148,525.7399999998705,-0.053556866949544285 +105149,525.7449999998706,-0.05355670925107916 +105150,525.7499999998707,-0.053556551526057844 +105151,525.7549999998708,-0.05355639377447018 +105152,525.759999999871,-0.05355623599630599 +105153,525.7649999998711,-0.05355607819155508 +105154,525.7699999998712,-0.05355592036020725 +105155,525.7749999998713,-0.05355576250225234 +105156,525.7799999998714,-0.05355560461768012 +105157,525.7849999998715,-0.05355544670648038 +105158,525.7899999998716,-0.05355528876864294 +105159,525.7949999998717,-0.05355513080415756 +105160,525.7999999998718,-0.05355497281301403 +105161,525.8049999998719,-0.05355481479520212 +105162,525.809999999872,-0.05355465675071159 +105163,525.8149999998722,-0.0535544986795322 +105164,525.8199999998723,-0.05355434058165373 +105165,525.8249999998724,-0.05355418245706592 +105166,525.8299999998725,-0.05355402430575851 +105167,525.8349999998726,-0.05355386612772122 +105168,525.8399999998727,-0.05355370792294382 +105169,525.8449999998728,-0.05355354969141603 +105170,525.8499999998729,-0.05355339143312756 +105171,525.854999999873,-0.05355323314806813 +105172,525.8599999998731,-0.05355307483622747 +105173,525.8649999998732,-0.05355291649759526 +105174,525.8699999998734,-0.05355275813216123 +105175,525.8749999998735,-0.053552599739915066 +105176,525.8799999998736,-0.05355244132084645 +105177,525.8849999998737,-0.05355228287494508 +105178,525.8899999998738,-0.05355212440220062 +105179,525.8949999998739,-0.05355196590260276 +105180,525.899999999874,-0.05355180737614116 +105181,525.9049999998741,-0.05355164882280548 +105182,525.9099999998742,-0.053551490242585376 +105183,525.9149999998743,-0.0535513316354705 +105184,525.9199999998744,-0.05355117300145051 +105185,525.9249999998746,-0.05355101434051504 +105186,525.9299999998747,-0.053550855652653724 +105187,525.9349999998748,-0.05355069693785619 +105188,525.9399999998749,-0.05355053819611206 +105189,525.944999999875,-0.05355037942741096 +105190,525.9499999998751,-0.053550220631742494 +105191,525.9549999998752,-0.05355006180909628 +105192,525.9599999998753,-0.0535499029594619 +105193,525.9649999998754,-0.05354974408282898 +105194,525.9699999998755,-0.05354958517918709 +105195,525.9749999998756,-0.05354942624852582 +105196,525.9799999998758,-0.053549267290834736 +105197,525.9849999998759,-0.05354910830610342 +105198,525.989999999876,-0.05354894929432146 +105199,525.9949999998761,-0.053548790255478394 +105200,525.9999999998762,-0.053548631189563795 +105201,526.0049999998763,-0.0535484720965672 +105202,526.0099999998764,-0.053548312976478156 +105203,526.0149999998765,-0.05354815382928621 +105204,526.0199999998766,-0.0535479946549809 +105205,526.0249999998767,-0.05354783545355174 +105206,526.0299999998768,-0.053547676224988267 +105207,526.034999999877,-0.053547516969279986 +105208,526.0399999998771,-0.05354735768641642 +105209,526.0449999998772,-0.05354719837638707 +105210,526.0499999998773,-0.05354703903918144 +105211,526.0549999998774,-0.05354687967478903 +105212,526.0599999998775,-0.05354672028319931 +105213,526.0649999998776,-0.05354656086440177 +105214,526.0699999998777,-0.053546401418385896 +105215,526.0749999998778,-0.05354624194514116 +105216,526.0799999998779,-0.053546082444657035 +105217,526.084999999878,-0.053545922916922964 +105218,526.0899999998782,-0.05354576336192841 +105219,526.0949999998783,-0.053545603779662825 +105220,526.0999999998784,-0.05354544417011566 +105221,526.1049999998785,-0.05354528453327633 +105222,526.1099999998786,-0.053545124869134285 +105223,526.1149999998787,-0.05354496517767895 +105224,526.1199999998788,-0.053544805458899745 +105225,526.1249999998789,-0.05354464571278608 +105226,526.129999999879,-0.053544485939327376 +105227,526.1349999998791,-0.05354432613851303 +105228,526.1399999998793,-0.05354416631033243 +105229,526.1449999998794,-0.05354400645477499 +105230,526.1499999998795,-0.053543846571830075 +105231,526.1549999998796,-0.053543686661487074 +105232,526.1599999998797,-0.05354352672373537 +105233,526.1649999998798,-0.05354336675856433 +105234,526.1699999998799,-0.05354320676596332 +105235,526.17499999988,-0.05354304674592169 +105236,526.1799999998801,-0.05354288669842879 +105237,526.1849999998802,-0.053542726623473966 +105238,526.1899999998803,-0.05354256652104657 +105239,526.1949999998805,-0.05354240639113593 +105240,526.1999999998806,-0.05354224623373136 +105241,526.2049999998807,-0.05354208604882221 +105242,526.2099999998808,-0.053541925836397795 +105243,526.2149999998809,-0.0535417655964474 +105244,526.219999999881,-0.05354160532896037 +105245,526.2249999998811,-0.05354144503392598 +105246,526.2299999998812,-0.053541284711333535 +105247,526.2349999998813,-0.05354112436117231 +105248,526.2399999998814,-0.0535409639834316 +105249,526.2449999998815,-0.05354080357810066 +105250,526.2499999998817,-0.0535406431451688 +105251,526.2549999998818,-0.05354048268462526 +105252,526.2599999998819,-0.0535403221964593 +105253,526.264999999882,-0.05354016168066018 +105254,526.2699999998821,-0.05354000113721713 +105255,526.2749999998822,-0.05353984056611943 +105256,526.2799999998823,-0.05353967996735628 +105257,526.2849999998824,-0.05353951934091693 +105258,526.2899999998825,-0.05353935868679059 +105259,526.2949999998826,-0.05353919800496651 +105260,526.2999999998827,-0.05353903729543387 +105261,526.3049999998829,-0.053538876558181896 +105262,526.309999999883,-0.05353871579319977 +105263,526.3149999998831,-0.053538555000476704 +105264,526.3199999998832,-0.05353839418000189 +105265,526.3249999998833,-0.0535382333317645 +105266,526.3299999998834,-0.05353807245575372 +105267,526.3349999998835,-0.053537911551958715 +105268,526.3399999998836,-0.053537750620368654 +105269,526.3449999998837,-0.053537589660972704 +105270,526.3499999998838,-0.053537428673760004 +105271,526.354999999884,-0.05353726765871972 +105272,526.359999999884,-0.05353710661584097 +105273,526.3649999998842,-0.053536945545112916 +105274,526.3699999998843,-0.053536784446524675 +105275,526.3749999998844,-0.053536623320065375 +105276,526.3799999998845,-0.053536462165724136 +105277,526.3849999998846,-0.05353630098349007 +105278,526.3899999998847,-0.053536139773352275 +105279,526.3949999998848,-0.05353597853529988 +105280,526.3999999998849,-0.05353581726932195 +105281,526.404999999885,-0.053535655975407596 +105282,526.4099999998851,-0.05353549465354588 +105283,526.4149999998853,-0.053535333303725896 +105284,526.4199999998854,-0.05353517192593671 +105285,526.4249999998855,-0.053535010520167375 +105286,526.4299999998856,-0.05353484908640697 +105287,526.4349999998857,-0.053534687624644535 +105288,526.4399999998858,-0.05353452613486913 +105289,526.4449999998859,-0.053534364617069785 +105290,526.449999999886,-0.053534203071235555 +105291,526.4549999998861,-0.053534041497355446 +105292,526.4599999998862,-0.053533879895418496 +105293,526.4649999998863,-0.05353371826541371 +105294,526.4699999998865,-0.05353355660733011 +105295,526.4749999998866,-0.0535333949211567 +105296,526.4799999998867,-0.05353323320688249 +105297,526.4849999998868,-0.05353307146449644 +105298,526.4899999998869,-0.05353290969398758 +105299,526.494999999887,-0.05353274789534487 +105300,526.4999999998871,-0.05353258606855728 +105301,526.5049999998872,-0.053532424213613795 +105302,526.5099999998873,-0.05353226233050337 +105303,526.5149999998874,-0.053532100419214974 +105304,526.5199999998875,-0.053531938479737536 +105305,526.5249999998877,-0.05353177651206001 +105306,526.5299999998878,-0.05353161451617135 +105307,526.5349999998879,-0.05353145249206047 +105308,526.539999999888,-0.0535312904397163 +105309,526.5449999998881,-0.05353112835912778 +105310,526.5499999998882,-0.053530966250283814 +105311,526.5549999998883,-0.053530804113173305 +105312,526.5599999998884,-0.053530641947785174 +105313,526.5649999998885,-0.0535304797541083 +105314,526.5699999998886,-0.053530317532131576 +105315,526.5749999998887,-0.05353015528184389 +105316,526.5799999998889,-0.053529993003234126 +105317,526.584999999889,-0.05352983069629114 +105318,526.5899999998891,-0.053529668361003827 +105319,526.5949999998892,-0.05352950599736103 +105320,526.5999999998893,-0.0535293436053516 +105321,526.6049999998894,-0.053529181184964386 +105322,526.6099999998895,-0.05352901873618825 +105323,526.6149999998896,-0.053528856259012006 +105324,526.6199999998897,-0.05352869375342449 +105325,526.6249999998898,-0.05352853121941453 +105326,526.62999999989,-0.05352836865697094 +105327,526.63499999989,-0.05352820606608253 +105328,526.6399999998902,-0.05352804344673812 +105329,526.6449999998903,-0.0535278807989265 +105330,526.6499999998904,-0.05352771812263646 +105331,526.6549999998905,-0.05352755541785679 +105332,526.6599999998906,-0.05352739268457627 +105333,526.6649999998907,-0.05352722992278368 +105334,526.6699999998908,-0.05352706713246778 +105335,526.6749999998909,-0.05352690431361734 +105336,526.679999999891,-0.0535267414662211 +105337,526.6849999998911,-0.05352657859026783 +105338,526.6899999998913,-0.05352641568574627 +105339,526.6949999998914,-0.05352625275264515 +105340,526.6999999998915,-0.05352608979095321 +105341,526.7049999998916,-0.05352592680065918 +105342,526.7099999998917,-0.053525763781751765 +105343,526.7149999998918,-0.05352560073421968 +105344,526.7199999998919,-0.05352543765805164 +105345,526.724999999892,-0.05352527455323636 +105346,526.7299999998921,-0.05352511141976251 +105347,526.7349999998922,-0.053524948257618776 +105348,526.7399999998923,-0.053524785066793854 +105349,526.7449999998925,-0.053524621847276424 +105350,526.7499999998926,-0.053524458599055136 +105351,526.7549999998927,-0.05352429532211868 +105352,526.7599999998928,-0.05352413201645568 +105353,526.7649999998929,-0.053523968682054814 +105354,526.769999999893,-0.05352380531890472 +105355,526.7749999998931,-0.053523641926994034 +105356,526.7799999998932,-0.053523478506311395 +105357,526.7849999998933,-0.05352331505684542 +105358,526.7899999998934,-0.053523151578584734 +105359,526.7949999998935,-0.053522988071517945 +105360,526.7999999998937,-0.05352282453563366 +105361,526.8049999998938,-0.05352266097092048 +105362,526.8099999998939,-0.053522497377367015 +105363,526.814999999894,-0.053522333754961834 +105364,526.8199999998941,-0.05352217010369353 +105365,526.8249999998942,-0.053522006423550664 +105366,526.8299999998943,-0.053521842714521824 +105367,526.8349999998944,-0.053521678976595564 +105368,526.8399999998945,-0.05352151520976045 +105369,526.8449999998946,-0.053521351414005026 +105370,526.8499999998947,-0.053521187589317835 +105371,526.8549999998949,-0.05352102373568741 +105372,526.859999999895,-0.05352085985310228 +105373,526.8649999998951,-0.05352069594155098 +105374,526.8699999998952,-0.05352053200102203 +105375,526.8749999998953,-0.05352036803150395 +105376,526.8799999998954,-0.053520204032985234 +105377,526.8849999998955,-0.05352004000545438 +105378,526.8899999998956,-0.053519875948899884 +105379,526.8949999998957,-0.05351971186331023 +105380,526.8999999998958,-0.053519547748673915 +105381,526.904999999896,-0.0535193836049794 +105382,526.9099999998961,-0.05351921943221515 +105383,526.9149999998962,-0.05351905523036964 +105384,526.9199999998963,-0.05351889099943132 +105385,526.9249999998964,-0.05351872673938864 +105386,526.9299999998965,-0.05351856245023004 +105387,526.9349999998966,-0.053518398131943944 +105388,526.9399999998967,-0.0535182337845188 +105389,526.9449999998968,-0.05351806940794302 +105390,526.9499999998969,-0.053517905002205025 +105391,526.954999999897,-0.053517740567293234 +105392,526.9599999998971,-0.05351757610319604 +105393,526.9649999998973,-0.053517411609901845 +105394,526.9699999998974,-0.05351724708739904 +105395,526.9749999998975,-0.05351708253567601 +105396,526.9799999998976,-0.05351691795472114 +105397,526.9849999998977,-0.053516753344522786 +105398,526.9899999998978,-0.053516588705069326 +105399,526.9949999998979,-0.053516424036349125 +105400,526.999999999898,-0.053516259338350525 +105401,527.0049999998981,-0.053516094611061875 +105402,527.0099999998982,-0.05351592985447151 +105403,527.0149999998984,-0.053515765068567776 +105404,527.0199999998985,-0.05351560025333899 +105405,527.0249999998986,-0.053515435408773473 +105406,527.0299999998987,-0.05351527053485954 +105407,527.0349999998988,-0.0535151056315855 +105408,527.0399999998989,-0.05351494069893965 +105409,527.044999999899,-0.0535147757369103 +105410,527.0499999998991,-0.05351461074548571 +105411,527.0549999998992,-0.053514445724654185 +105412,527.0599999998993,-0.053514280674403995 +105413,527.0649999998994,-0.05351411559472341 +105414,527.0699999998996,-0.053513950485600675 +105415,527.0749999998997,-0.05351378534702407 +105416,527.0799999998998,-0.05351362017898183 +105417,527.0849999998999,-0.05351345498146219 +105418,527.0899999999,-0.05351328975445341 +105419,527.0949999999001,-0.05351312449794371 +105420,527.0999999999002,-0.0535129592119213 +105421,527.1049999999003,-0.05351279389637441 +105422,527.1099999999004,-0.05351262855129123 +105423,527.1149999999005,-0.05351246317665998 +105424,527.1199999999006,-0.05351229777246885 +105425,527.1249999999008,-0.05351213233870605 +105426,527.1299999999009,-0.05351196687535975 +105427,527.134999999901,-0.053511801382418116 +105428,527.1399999999011,-0.05351163585986933 +105429,527.1449999999012,-0.05351147030770156 +105430,527.1499999999013,-0.053511304725902945 +105431,527.1549999999014,-0.053511139114461655 +105432,527.1599999999015,-0.05351097347336582 +105433,527.1649999999016,-0.053510807802603595 +105434,527.1699999999017,-0.05351064210216309 +105435,527.1749999999018,-0.05351047637203244 +105436,527.179999999902,-0.05351031061219976 +105437,527.1849999999021,-0.05351014482265316 +105438,527.1899999999022,-0.05350997900338075 +105439,527.1949999999023,-0.05350981315437063 +105440,527.1999999999024,-0.05350964727561089 +105441,527.2049999999025,-0.053509481367089606 +105442,527.2099999999026,-0.05350931542879485 +105443,527.2149999999027,-0.05350914946071471 +105444,527.2199999999028,-0.05350898346283725 +105445,527.2249999999029,-0.05350881743515052 +105446,527.229999999903,-0.05350865137764257 +105447,527.2349999999032,-0.05350848529030144 +105448,527.2399999999033,-0.05350831917311518 +105449,527.2449999999034,-0.05350815302607183 +105450,527.2499999999035,-0.05350798684915938 +105451,527.2549999999036,-0.05350782064236587 +105452,527.2599999999037,-0.05350765440567932 +105453,527.2649999999038,-0.053507488139087726 +105454,527.2699999999039,-0.05350732184257907 +105455,527.274999999904,-0.053507155516141366 +105456,527.2799999999041,-0.0535069891597626 +105457,527.2849999999042,-0.05350682277343073 +105458,527.2899999999044,-0.05350665635713374 +105459,527.2949999999045,-0.053506489910859587 +105460,527.2999999999046,-0.05350632343459623 +105461,527.3049999999047,-0.05350615692833162 +105462,527.3099999999048,-0.053505990392053705 +105463,527.3149999999049,-0.05350582382575043 +105464,527.319999999905,-0.053505657229409705 +105465,527.3249999999051,-0.05350549060301947 +105466,527.3299999999052,-0.05350532394656763 +105467,527.3349999999053,-0.0535051572600421 +105468,527.3399999999054,-0.053504990543430796 +105469,527.3449999999056,-0.0535048237967216 +105470,527.3499999999057,-0.053504657019902396 +105471,527.3549999999058,-0.05350449021296109 +105472,527.3599999999059,-0.05350432337588554 +105473,527.364999999906,-0.053504156508663615 +105474,527.3699999999061,-0.05350398961128319 +105475,527.3749999999062,-0.05350382268373211 +105476,527.3799999999063,-0.05350365572599823 +105477,527.3849999999064,-0.05350348873806939 +105478,527.3899999999065,-0.053503321719933425 +105479,527.3949999999066,-0.05350315467157817 +105480,527.3999999999068,-0.05350298759299145 +105481,527.4049999999069,-0.053502820484161065 +105482,527.409999999907,-0.05350265334507482 +105483,527.4149999999071,-0.05350248617572054 +105484,527.4199999999072,-0.053502318976086004 +105485,527.4249999999073,-0.053502151746159 +105486,527.4299999999074,-0.05350198448592731 +105487,527.4349999999075,-0.053501817195378706 +105488,527.4399999999076,-0.05350164987450097 +105489,527.4449999999077,-0.05350148252328184 +105490,527.4499999999078,-0.05350131514170909 +105491,527.454999999908,-0.05350114772977044 +105492,527.4599999999081,-0.05350098028745366 +105493,527.4649999999082,-0.053500812814746466 +105494,527.4699999999083,-0.05350064531163659 +105495,527.4749999999084,-0.053500477778111746 +105496,527.4799999999085,-0.053500310214159644 +105497,527.4849999999086,-0.05350014261976799 +105498,527.4899999999087,-0.05349997499492449 +105499,527.4949999999088,-0.053499807339616824 +105500,527.4999999999089,-0.05349963965383269 +105501,527.504999999909,-0.05349947193755976 +105502,527.5099999999092,-0.05349930419078571 +105503,527.5149999999093,-0.053499136413498176 +105504,527.5199999999094,-0.05349896860568485 +105505,527.5249999999095,-0.05349880076733336 +105506,527.5299999999096,-0.05349863289843137 +105507,527.5349999999097,-0.05349846499896648 +105508,527.5399999999098,-0.05349829706892635 +105509,527.5449999999099,-0.053498129108298584 +105510,527.54999999991,-0.053497961117070815 +105511,527.5549999999101,-0.05349779309523065 +105512,527.5599999999102,-0.053497625042765666 +105513,527.5649999999104,-0.05349745695966348 +105514,527.5699999999105,-0.05349728884591167 +105515,527.5749999999106,-0.05349712070149782 +105516,527.5799999999107,-0.0534969525264095 +105517,527.5849999999108,-0.053496784320634275 +105518,527.5899999999109,-0.0534966160841597 +105519,527.594999999911,-0.05349644781697333 +105520,527.5999999999111,-0.05349627951906271 +105521,527.6049999999112,-0.05349611119041539 +105522,527.6099999999113,-0.05349594283101888 +105523,527.6149999999114,-0.05349577444086071 +105524,527.6199999999116,-0.05349560601992842 +105525,527.6249999999117,-0.053495437568209486 +105526,527.6299999999118,-0.05349526908569143 +105527,527.6349999999119,-0.05349510057236175 +105528,527.639999999912,-0.05349493202820793 +105529,527.6449999999121,-0.05349476345321743 +105530,527.6499999999122,-0.05349459484737776 +105531,527.6549999999123,-0.05349442621067637 +105532,527.6599999999124,-0.053494257543100714 +105533,527.6649999999125,-0.05349408884463826 +105534,527.6699999999126,-0.05349392011527644 +105535,527.6749999999128,-0.0534937513550027 +105536,527.6799999999129,-0.053493582563804466 +105537,527.684999999913,-0.053493413741669174 +105538,527.6899999999131,-0.05349324488858423 +105539,527.6949999999132,-0.05349307600453706 +105540,527.6999999999133,-0.05349290708951506 +105541,527.7049999999134,-0.05349273814350562 +105542,527.7099999999135,-0.053492569166496126 +105543,527.7149999999136,-0.05349240015847397 +105544,527.7199999999137,-0.05349223111942652 +105545,527.7249999999138,-0.053492062049341156 +105546,527.729999999914,-0.053491892948205236 +105547,527.7349999999141,-0.0534917238160061 +105548,527.7399999999142,-0.053491554652731095 +105549,527.7449999999143,-0.053491385458367575 +105550,527.7499999999144,-0.05349121623290286 +105551,527.7549999999145,-0.053491046976324286 +105552,527.7599999999146,-0.053490877688619154 +105553,527.7649999999147,-0.05349070836977478 +105554,527.7699999999148,-0.05349053901977848 +105555,527.7749999999149,-0.05349036963861754 +105556,527.779999999915,-0.05349020022627924 +105557,527.7849999999152,-0.05349003078275088 +105558,527.7899999999153,-0.05348986130801973 +105559,527.7949999999154,-0.05348969180207304 +105560,527.7999999999155,-0.05348952226489809 +105561,527.8049999999156,-0.05348935269648212 +105562,527.8099999999157,-0.05348918309681239 +105563,527.8149999999158,-0.05348901346587611 +105564,527.8199999999159,-0.05348884380366054 +105565,527.824999999916,-0.0534886741101529 +105566,527.8299999999161,-0.05348850438534039 +105567,527.8349999999162,-0.05348833462921023 +105568,527.8399999999164,-0.053488164841749626 +105569,527.8449999999165,-0.05348799502294575 +105570,527.8499999999166,-0.053487825172785816 +105571,527.8549999999167,-0.053487655291257 +105572,527.8599999999168,-0.05348748537834647 +105573,527.8649999999169,-0.053487315434041366 +105574,527.869999999917,-0.05348714545832888 +105575,527.8749999999171,-0.05348697545119616 +105576,527.8799999999172,-0.05348680541263033 +105577,527.8849999999173,-0.053486635342618556 +105578,527.8899999999174,-0.05348646524114794 +105579,527.8949999999176,-0.053486295108205614 +105580,527.8999999999177,-0.05348612494377869 +105581,527.9049999999178,-0.05348595474785428 +105582,527.9099999999179,-0.05348578452041947 +105583,527.914999999918,-0.05348561426146137 +105584,527.9199999999181,-0.05348544397096706 +105585,527.9249999999182,-0.053485273648923595 +105586,527.9299999999183,-0.05348510329531808 +105587,527.9349999999184,-0.05348493291013756 +105588,527.9399999999185,-0.053484762493369094 +105589,527.9449999999187,-0.05348459204499972 +105590,527.9499999999188,-0.05348442156501649 +105591,527.9549999999189,-0.05348425105340644 +105592,527.959999999919,-0.05348408051015659 +105593,527.9649999999191,-0.05348390993525395 +105594,527.9699999999192,-0.053483739328685546 +105595,527.9749999999193,-0.053483568690438375 +105596,527.9799999999194,-0.05348339802049942 +105597,527.9849999999195,-0.0534832273188557 +105598,527.9899999999196,-0.05348305658549417 +105599,527.9949999999197,-0.0534828858204018 +105600,527.9999999999199,-0.05348271502356559 +105601,528.00499999992,-0.05348254419497246 +105602,528.0099999999201,-0.053482373334609395 +105603,528.0149999999202,-0.05348220244246332 +105604,528.0199999999203,-0.05348203151852117 +105605,528.0249999999204,-0.053481860562769885 +105606,528.0299999999205,-0.05348168957519637 +105607,528.0349999999206,-0.05348151855578756 +105608,528.0399999999207,-0.05348134750453035 +105609,528.0449999999208,-0.05348117642141163 +105610,528.0499999999209,-0.05348100530641831 +105611,528.054999999921,-0.05348083415953727 +105612,528.0599999999212,-0.053480662980755385 +105613,528.0649999999213,-0.053480491770059514 +105614,528.0699999999214,-0.05348032052743654 +105615,528.0749999999215,-0.05348014925287329 +105616,528.0799999999216,-0.053479977946356644 +105617,528.0849999999217,-0.053479806607873416 +105618,528.0899999999218,-0.053479635237410436 +105619,528.0949999999219,-0.05347946383495455 +105620,528.099999999922,-0.053479292400492554 +105621,528.1049999999221,-0.05347912093401126 +105622,528.1099999999223,-0.05347894943549748 +105623,528.1149999999224,-0.053478777904938 +105624,528.1199999999225,-0.05347860634231961 +105625,528.1249999999226,-0.05347843474762908 +105626,528.1299999999227,-0.05347826312085319 +105627,528.1349999999228,-0.0534780914619787 +105628,528.1399999999229,-0.05347791977099236 +105629,528.144999999923,-0.05347774804788093 +105630,528.1499999999231,-0.05347757629263114 +105631,528.1549999999232,-0.05347740450522973 +105632,528.1599999999233,-0.05347723268566342 +105633,528.1649999999235,-0.05347706083391894 +105634,528.1699999999236,-0.053476888949982995 +105635,528.1749999999237,-0.053476717033842276 +105636,528.1799999999238,-0.053476545085483496 +105637,528.1849999999239,-0.05347637310489333 +105638,528.189999999924,-0.053476201092058445 +105639,528.1949999999241,-0.05347602904696554 +105640,528.1999999999242,-0.05347585696960127 +105641,528.2049999999243,-0.053475684859952285 +105642,528.2099999999244,-0.053475512718005234 +105643,528.2149999999245,-0.053475340543746766 +105644,528.2199999999247,-0.05347516833716351 +105645,528.2249999999248,-0.05347499609824209 +105646,528.2299999999249,-0.05347482382696913 +105647,528.234999999925,-0.05347465152333123 +105648,528.2399999999251,-0.053474479187315016 +105649,528.2449999999252,-0.05347430681890705 +105650,528.2499999999253,-0.053474134418093955 +105651,528.2549999999254,-0.05347396198486229 +105652,528.2599999999255,-0.05347378951919862 +105653,528.2649999999256,-0.05347361702108953 +105654,528.2699999999257,-0.05347344449052156 +105655,528.2749999999259,-0.05347327192748127 +105656,528.279999999926,-0.05347309933195518 +105657,528.2849999999261,-0.053472926703929856 +105658,528.2899999999262,-0.0534727540433918 +105659,528.2949999999263,-0.05347258135032754 +105660,528.2999999999264,-0.053472408624723584 +105661,528.3049999999265,-0.05347223586656642 +105662,528.3099999999266,-0.05347206307584257 +105663,528.3149999999267,-0.0534718902525385 +105664,528.3199999999268,-0.05347171739664069 +105665,528.324999999927,-0.053471544508135606 +105666,528.329999999927,-0.05347137158700973 +105667,528.3349999999272,-0.0534711986332495 +105668,528.3399999999273,-0.053471025646841384 +105669,528.3449999999274,-0.053470852627771806 +105670,528.3499999999275,-0.0534706795760272 +105671,528.3549999999276,-0.05347050649159398 +105672,528.3599999999277,-0.05347033337445859 +105673,528.3649999999278,-0.05347016022460741 +105674,528.3699999999279,-0.05346998704202686 +105675,528.374999999928,-0.053469813826703315 +105676,528.3799999999281,-0.05346964057862317 +105677,528.3849999999283,-0.05346946729777281 +105678,528.3899999999284,-0.05346929398413859 +105679,528.3949999999285,-0.05346912063770688 +105680,528.3999999999286,-0.05346894725846403 +105681,528.4049999999287,-0.053468773846396374 +105682,528.4099999999288,-0.05346860040149026 +105683,528.4149999999289,-0.05346842692373204 +105684,528.419999999929,-0.053468253413108 +105685,528.4249999999291,-0.053468079869604467 +105686,528.4299999999292,-0.053467906293207745 +105687,528.4349999999293,-0.053467732683904146 +105688,528.4399999999295,-0.053467559041679935 +105689,528.4449999999296,-0.05346738536652142 +105690,528.4499999999297,-0.05346721165841486 +105691,528.4549999999298,-0.05346703791734652 +105692,528.4599999999299,-0.05346686414330266 +105693,528.46499999993,-0.05346669033626954 +105694,528.4699999999301,-0.053466516496233386 +105695,528.4749999999302,-0.05346634262318044 +105696,528.4799999999303,-0.05346616871709692 +105697,528.4849999999304,-0.05346599477796906 +105698,528.4899999999305,-0.05346582080578307 +105699,528.4949999999307,-0.05346564680052514 +105700,528.4999999999308,-0.053465472762181464 +105701,528.5049999999309,-0.05346529869073824 +105702,528.509999999931,-0.05346512458618165 +105703,528.5149999999311,-0.05346495044849785 +105704,528.5199999999312,-0.053464776277672994 +105705,528.5249999999313,-0.05346460207369326 +105706,528.5299999999314,-0.05346442783654477 +105707,528.5349999999315,-0.05346425356621368 +105708,528.5399999999316,-0.05346407926268613 +105709,528.5449999999317,-0.053463904925948214 +105710,528.5499999999319,-0.053463730555986064 +105711,528.554999999932,-0.05346355615278577 +105712,528.5599999999321,-0.05346338171633346 +105713,528.5649999999322,-0.0534632072466152 +105714,528.5699999999323,-0.053463032743617064 +105715,528.5749999999324,-0.053462858207325145 +105716,528.5799999999325,-0.053462683637725494 +105717,528.5849999999326,-0.05346250903480417 +105718,528.5899999999327,-0.053462334398547244 +105719,528.5949999999328,-0.053462159728940736 +105720,528.599999999933,-0.05346198502597068 +105721,528.604999999933,-0.0534618102896231 +105722,528.6099999999332,-0.053461635519884025 +105723,528.6149999999333,-0.053461460716739455 +105724,528.6199999999334,-0.05346128588017538 +105725,528.6249999999335,-0.053461111010177816 +105726,528.6299999999336,-0.053460936106732734 +105727,528.6349999999337,-0.0534607611698261 +105728,528.6399999999338,-0.053460586199443896 +105729,528.6449999999339,-0.05346041119557208 +105730,528.649999999934,-0.053460236158196596 +105731,528.6549999999341,-0.05346006108730339 +105732,528.6599999999343,-0.05345988598287839 +105733,528.6649999999344,-0.05345971084490753 +105734,528.6699999999345,-0.05345953567337674 +105735,528.6749999999346,-0.05345936046827191 +105736,528.6799999999347,-0.053459185229578966 +105737,528.6849999999348,-0.05345900995728378 +105738,528.6899999999349,-0.053458834651372245 +105739,528.694999999935,-0.053458659311830234 +105740,528.6999999999351,-0.05345848393864362 +105741,528.7049999999352,-0.05345830853179828 +105742,528.7099999999353,-0.05345813309128005 +105743,528.7149999999355,-0.05345795761707477 +105744,528.7199999999356,-0.05345778210916828 +105745,528.7249999999357,-0.05345760656754641 +105746,528.7299999999358,-0.05345743099219497 +105747,528.7349999999359,-0.05345725538309979 +105748,528.739999999936,-0.053457079740246674 +105749,528.7449999999361,-0.05345690406362139 +105750,528.7499999999362,-0.053456728353209755 +105751,528.7549999999363,-0.05345655260899753 +105752,528.7599999999364,-0.05345637683097047 +105753,528.7649999999365,-0.05345620101911436 +105754,528.7699999999367,-0.053456025173414946 +105755,528.7749999999368,-0.05345584929385798 +105756,528.7799999999369,-0.05345567338042919 +105757,528.784999999937,-0.053455497433114306 +105758,528.7899999999371,-0.05345532145189904 +105759,528.7949999999372,-0.053455145436769116 +105760,528.7999999999373,-0.05345496938771024 +105761,528.8049999999374,-0.05345479330470809 +105762,528.8099999999375,-0.053454617187748354 +105763,528.8149999999376,-0.05345444103681672 +105764,528.8199999999377,-0.05345426485189886 +105765,528.8249999999379,-0.053454088632980415 +105766,528.829999999938,-0.053453912380047056 +105767,528.8349999999381,-0.05345373609308443 +105768,528.8399999999382,-0.05345355977207816 +105769,528.8449999999383,-0.05345338341701388 +105770,528.8499999999384,-0.05345320702787722 +105771,528.8549999999385,-0.05345303060465376 +105772,528.8599999999386,-0.05345285414732912 +105773,528.8649999999387,-0.05345267765588889 +105774,528.8699999999388,-0.053452501130318665 +105775,528.874999999939,-0.05345232457060402 +105776,528.8799999999391,-0.053452147976730514 +105777,528.8849999999392,-0.053451971348683715 +105778,528.8899999999393,-0.053451794686449165 +105779,528.8949999999394,-0.05345161799001241 +105780,528.8999999999395,-0.05345144125935899 +105781,528.9049999999396,-0.05345126449447442 +105782,528.9099999999397,-0.053451087695344214 +105783,528.9149999999398,-0.0534509108619539 +105784,528.9199999999399,-0.05345073399428897 +105785,528.92499999994,-0.053450557092334906 +105786,528.9299999999402,-0.053450380156077205 +105787,528.9349999999403,-0.05345020318550134 +105788,528.9399999999404,-0.05345002618059276 +105789,528.9449999999405,-0.05344984914133694 +105790,528.9499999999406,-0.053449672067719334 +105791,528.9549999999407,-0.053449494959725355 +105792,528.9599999999408,-0.053449317817340455 +105793,528.9649999999409,-0.05344914064055006 +105794,528.969999999941,-0.05344896342933957 +105795,528.9749999999411,-0.05344878618369441 +105796,528.9799999999412,-0.05344860890359996 +105797,528.9849999999414,-0.05344843158904162 +105798,528.9899999999415,-0.053448254240004774 +105799,528.9949999999416,-0.05344807685647477 +105800,528.9999999999417,-0.053447899438436995 +105801,529.0049999999418,-0.05344772198587679 +105802,529.0099999999419,-0.05344754449877951 +105803,529.014999999942,-0.053447366977130484 +105804,529.0199999999421,-0.05344718942091505 +105805,529.0249999999422,-0.05344701183011851 +105806,529.0299999999423,-0.0534468342047262 +105807,529.0349999999424,-0.0534466565447234 +105808,529.0399999999426,-0.0534464788500954 +105809,529.0449999999427,-0.053446301120827516 +105810,529.0499999999428,-0.05344612335690499 +105811,529.0549999999429,-0.05344594555831311 +105812,529.059999999943,-0.05344576772503715 +105813,529.0649999999431,-0.05344558985706232 +105814,529.0699999999432,-0.053445411954373884 +105815,529.0749999999433,-0.053445234016957076 +105816,529.0799999999434,-0.053445056044797115 +105817,529.0849999999435,-0.05344487803787922 +105818,529.0899999999436,-0.0534446999961886 +105819,529.0949999999438,-0.053444521919710455 +105820,529.0999999999439,-0.05344434380842995 +105821,529.104999999944,-0.05344416566233228 +105822,529.1099999999441,-0.05344398748140263 +105823,529.1149999999442,-0.05344380926562614 +105824,529.1199999999443,-0.05344363101498799 +105825,529.1249999999444,-0.05344345272947331 +105826,529.1299999999445,-0.05344327440906723 +105827,529.1349999999446,-0.053443096053754885 +105828,529.1399999999447,-0.0534429176635214 +105829,529.1449999999448,-0.053442739238351876 +105830,529.149999999945,-0.053442560778231424 +105831,529.1549999999451,-0.05344238228314512 +105832,529.1599999999452,-0.053442203753078066 +105833,529.1649999999453,-0.05344202518801532 +105834,529.1699999999454,-0.05344184658794195 +105835,529.1749999999455,-0.05344166795284303 +105836,529.1799999999456,-0.0534414892827036 +105837,529.1849999999457,-0.053441310577508686 +105838,529.1899999999458,-0.05344113183724333 +105839,529.1949999999459,-0.053440953061892546 +105840,529.199999999946,-0.05344077425144136 +105841,529.2049999999462,-0.05344059540587476 +105842,529.2099999999463,-0.05344041652517775 +105843,529.2149999999464,-0.05344023760933531 +105844,529.2199999999465,-0.053440058658332436 +105845,529.2249999999466,-0.053439879672154064 +105846,529.2299999999467,-0.05343970065078517 +105847,529.2349999999468,-0.053439521594210705 +105848,529.2399999999469,-0.05343934250241562 +105849,529.244999999947,-0.053439163375384825 +105850,529.2499999999471,-0.05343898421310325 +105851,529.2549999999472,-0.05343880501555583 +105852,529.2599999999474,-0.05343862578272744 +105853,529.2649999999475,-0.053438446514603 +105854,529.2699999999476,-0.05343826721116739 +105855,529.2749999999477,-0.053438087872405476 +105856,529.2799999999478,-0.05343790849830215 +105857,529.2849999999479,-0.05343772908884226 +105858,529.289999999948,-0.05343754964401066 +105859,529.2949999999481,-0.05343737016379218 +105860,529.2999999999482,-0.053437190648171665 +105861,529.3049999999483,-0.053437011097133946 +105862,529.3099999999484,-0.05343683151066382 +105863,529.3149999999486,-0.05343665188874611 +105864,529.3199999999487,-0.05343647223136561 +105865,529.3249999999488,-0.0534362925385071 +105866,529.3299999999489,-0.05343611281015537 +105867,529.334999999949,-0.053435933046295174 +105868,529.3399999999491,-0.05343575324691129 +105869,529.3449999999492,-0.05343557341198846 +105870,529.3499999999493,-0.05343539354151143 +105871,529.3549999999494,-0.05343521363546493 +105872,529.3599999999495,-0.05343503369383369 +105873,529.3649999999496,-0.05343485371660242 +105874,529.3699999999498,-0.05343467370375583 +105875,529.3749999999499,-0.05343449365527863 +105876,529.37999999995,-0.05343431357115549 +105877,529.3849999999501,-0.05343413345137108 +105878,529.3899999999502,-0.05343395329591009 +105879,529.3949999999503,-0.053433773104757165 +105880,529.3999999999504,-0.05343359287789697 +105881,529.4049999999505,-0.05343341261531415 +105882,529.4099999999506,-0.053433232316993325 +105883,529.4149999999507,-0.05343305198291912 +105884,529.4199999999508,-0.05343287161307617 +105885,529.424999999951,-0.053432691207449055 +105886,529.4299999999511,-0.05343251076602237 +105887,529.4349999999512,-0.053432330288780736 +105888,529.4399999999513,-0.0534321497757087 +105889,529.4449999999514,-0.053431969226790825 +105890,529.4499999999515,-0.053431788642011695 +105891,529.4549999999516,-0.05343160802135586 +105892,529.4599999999517,-0.05343142736480783 +105893,529.4649999999518,-0.053431246672352176 +105894,529.4699999999519,-0.05343106594397339 +105895,529.474999999952,-0.053430885179656 +105896,529.4799999999522,-0.05343070437938451 +105897,529.4849999999523,-0.05343052354314339 +105898,529.4899999999524,-0.053430342670917175 +105899,529.4949999999525,-0.05343016176269029 +105900,529.4999999999526,-0.053429980818447236 +105901,529.5049999999527,-0.053429799838172455 +105902,529.5099999999528,-0.0534296188218504 +105903,529.5149999999529,-0.053429437769465495 +105904,529.519999999953,-0.05342925668100219 +105905,529.5249999999531,-0.053429075556444904 +105906,529.5299999999532,-0.05342889439577803 +105907,529.5349999999534,-0.05342871319898599 +105908,529.5399999999535,-0.053428531966053155 +105909,529.5449999999536,-0.05342835069696393 +105910,529.5499999999537,-0.05342816939170268 +105911,529.5549999999538,-0.05342798805025376 +105912,529.5599999999539,-0.05342780667260154 +105913,529.564999999954,-0.05342762525873035 +105914,529.5699999999541,-0.05342744380862453 +105915,529.5749999999542,-0.0534272623222684 +105916,529.5799999999543,-0.05342708079964631 +105917,529.5849999999544,-0.053426899240742516 +105918,529.5899999999546,-0.05342671764554136 +105919,529.5949999999547,-0.05342653601402711 +105920,529.5999999999548,-0.05342635434618404 +105921,529.6049999999549,-0.05342617264199643 +105922,529.609999999955,-0.05342599090144855 +105923,529.6149999999551,-0.05342580912452462 +105924,529.6199999999552,-0.053425627311208916 +105925,529.6249999999553,-0.05342544546148565 +105926,529.6299999999554,-0.05342526357533905 +105927,529.6349999999555,-0.05342508165275332 +105928,529.6399999999556,-0.053424899693712675 +105929,529.6449999999558,-0.053424717698201306 +105930,529.6499999999559,-0.0534245356662034 +105931,529.654999999956,-0.05342435359770312 +105932,529.6599999999561,-0.053424171492684636 +105933,529.6649999999562,-0.05342398935113211 +105934,529.6699999999563,-0.05342380717302967 +105935,529.6749999999564,-0.05342362495836149 +105936,529.6799999999565,-0.05342344270711166 +105937,529.6849999999566,-0.05342326041926431 +105938,529.6899999999567,-0.05342307809480356 +105939,529.6949999999568,-0.05342289573371349 +105940,529.699999999957,-0.053422713335978186 +105941,529.7049999999571,-0.05342253090158175 +105942,529.7099999999572,-0.053422348430508235 +105943,529.7149999999573,-0.05342216592274171 +105944,529.7199999999574,-0.05342198337826622 +105945,529.7249999999575,-0.0534218007970658 +105946,529.7299999999576,-0.05342161817912448 +105947,529.7349999999577,-0.05342143552442629 +105948,529.7399999999578,-0.053421252832955235 +105949,529.7449999999579,-0.05342107010469533 +105950,529.749999999958,-0.05342088733963055 +105951,529.7549999999582,-0.0534207045377449 +105952,529.7599999999583,-0.05342052169902233 +105953,529.7649999999584,-0.053420338823446815 +105954,529.7699999999585,-0.0534201559110023 +105955,529.7749999999586,-0.053419972961672745 +105956,529.7799999999587,-0.05341978997544207 +105957,529.7849999999588,-0.0534196069522942 +105958,529.7899999999589,-0.05341942389221306 +105959,529.794999999959,-0.053419240795182545 +105960,529.7999999999591,-0.053419057661186556 +105961,529.8049999999593,-0.053418874490208976 +105962,529.8099999999594,-0.053418691282233685 +105963,529.8149999999595,-0.05341850803724454 +105964,529.8199999999596,-0.0534183247552254 +105965,529.8249999999597,-0.05341814143616012 +105966,529.8299999999598,-0.053417958080032524 +105967,529.8349999999599,-0.05341777468682645 +105968,529.83999999996,-0.05341759125652571 +105969,529.8449999999601,-0.05341740778911411 +105970,529.8499999999602,-0.05341722428457544 +105971,529.8549999999603,-0.05341704074289351 +105972,529.8599999999605,-0.053416857164052076 +105973,529.8649999999606,-0.05341667354803491 +105974,529.8699999999607,-0.053416489894825774 +105975,529.8749999999608,-0.05341630620440843 +105976,529.8799999999609,-0.05341612247676659 +105977,529.884999999961,-0.053415938711884 +105978,529.8899999999611,-0.05341575490974438 +105979,529.8949999999612,-0.05341557107033142 +105980,529.8999999999613,-0.053415387193628844 +105981,529.9049999999614,-0.05341520327962033 +105982,529.9099999999615,-0.05341501932828955 +105983,529.9149999999617,-0.05341483533962017 +105984,529.9199999999618,-0.05341465131359587 +105985,529.9249999999619,-0.05341446725020028 +105986,529.929999999962,-0.05341428314941705 +105987,529.9349999999621,-0.053414099011229794 +105988,529.9399999999622,-0.053413914835622155 +105989,529.9449999999623,-0.05341373062257773 +105990,529.9499999999624,-0.05341354637208012 +105991,529.9549999999625,-0.05341336208411292 +105992,529.9599999999626,-0.053413177758659704 +105993,529.9649999999627,-0.053412993395704024 +105994,529.9699999999629,-0.05341280899522947 +105995,529.974999999963,-0.053412624557219575 +105996,529.9799999999631,-0.05341244008165788 +105997,529.9849999999632,-0.05341225556852791 +105998,529.9899999999633,-0.053412071017813194 +105999,529.9949999999634,-0.05341188642949723 +106000,529.9999999999635,-0.053411701803563534 +106001,530.0049999999636,-0.05341151713999558 +106002,530.0099999999637,-0.05341133243877687 +106003,530.0149999999638,-0.053411147699890846 +106004,530.0199999999639,-0.05341096292332098 +106005,530.024999999964,-0.05341077810905071 +106006,530.0299999999642,-0.053410593257063495 +106007,530.0349999999643,-0.05341040836734275 +106008,530.0399999999644,-0.0534102234398719 +106009,530.0449999999645,-0.053410038474634346 +106010,530.0499999999646,-0.05340985347161349 +106011,530.0549999999647,-0.05340966843079272 +106012,530.0599999999648,-0.053409483352155424 +106013,530.0649999999649,-0.053409298235684945 +106014,530.069999999965,-0.053409113081364666 +106015,530.0749999999651,-0.05340892788917792 +106016,530.0799999999653,-0.05340874265910804 +106017,530.0849999999654,-0.053408557391138374 +106018,530.0899999999655,-0.053408372085252225 +106019,530.0949999999656,-0.05340818674143292 +106020,530.0999999999657,-0.05340800135966371 +106021,530.1049999999658,-0.05340781593992793 +106022,530.1099999999659,-0.05340763048220883 +106023,530.114999999966,-0.053407444986489694 +106024,530.1199999999661,-0.053407259452753764 +106025,530.1249999999662,-0.053407073880984285 +106026,530.1299999999663,-0.05340688827116449 +106027,530.1349999999665,-0.05340670262327761 +106028,530.1399999999666,-0.053406516937306865 +106029,530.1449999999667,-0.053406331213235445 +106030,530.1499999999668,-0.05340614545104657 +106031,530.1549999999669,-0.0534059596507234 +106032,530.159999999967,-0.053405773812249126 +106033,530.1649999999671,-0.05340558793560689 +106034,530.1699999999672,-0.05340540202077986 +106035,530.1749999999673,-0.05340521606775117 +106036,530.1799999999674,-0.05340503007650396 +106037,530.1849999999675,-0.05340484404702136 +106038,530.1899999999677,-0.05340465797928646 +106039,530.1949999999678,-0.053404471873282365 +106040,530.1999999999679,-0.05340428572899218 +106041,530.204999999968,-0.053404099546398985 +106042,530.2099999999681,-0.05340391332548583 +106043,530.2149999999682,-0.05340372706623581 +106044,530.2199999999683,-0.05340354076863194 +106045,530.2249999999684,-0.053403354432657285 +106046,530.2299999999685,-0.053403168058294856 +106047,530.2349999999686,-0.053402981645527675 +106048,530.2399999999687,-0.05340279519433875 +106049,530.2449999999689,-0.053402608704711085 +106050,530.249999999969,-0.053402422176627655 +106051,530.2549999999691,-0.053402235610071444 +106052,530.2599999999692,-0.05340204900502542 +106053,530.2649999999693,-0.05340186236147253 +106054,530.2699999999694,-0.05340167567939572 +106055,530.2749999999695,-0.053401488958777936 +106056,530.2799999999696,-0.05340130219960209 +106057,530.2849999999697,-0.0534011154018511 +106058,530.2899999999698,-0.05340092856550787 +106059,530.29499999997,-0.053400741690555295 +106060,530.29999999997,-0.05340055477697625 +106061,530.3049999999702,-0.05340036782475362 +106062,530.3099999999703,-0.053400180833870235 +106063,530.3149999999704,-0.05339999380430898 +106064,530.3199999999705,-0.053399806736052685 +106065,530.3249999999706,-0.05339961962908417 +106066,530.3299999999707,-0.053399432483386265 +106067,530.3349999999708,-0.053399245298941765 +106068,530.3399999999709,-0.05339905807573348 +106069,530.344999999971,-0.053398870813744184 +106070,530.3499999999711,-0.05339868351295665 +106071,530.3549999999713,-0.05339849617335366 +106072,530.3599999999714,-0.05339830879491797 +106073,530.3649999999715,-0.05339812137763231 +106074,530.3699999999716,-0.05339793392147942 +106075,530.3749999999717,-0.05339774642644203 +106076,530.3799999999718,-0.05339755889250285 +106077,530.3849999999719,-0.05339737131964457 +106078,530.389999999972,-0.05339718370784988 +106079,530.3949999999721,-0.05339699605710148 +106080,530.3999999999722,-0.053396808367382025 +106081,530.4049999999723,-0.05339662063867417 +106082,530.4099999999725,-0.05339643287096057 +106083,530.4149999999726,-0.053396245064223864 +106084,530.4199999999727,-0.05339605721844669 +106085,530.4249999999728,-0.053395869333611644 +106086,530.4299999999729,-0.05339568140970134 +106087,530.434999999973,-0.05339549344669837 +106088,530.4399999999731,-0.05339530544458532 +106089,530.4449999999732,-0.05339511740334476 +106090,530.4499999999733,-0.05339492932295924 +106091,530.4549999999734,-0.053394741203411346 +106092,530.4599999999735,-0.053394553044683594 +106093,530.4649999999737,-0.05339436484675851 +106094,530.4699999999738,-0.05339417660961863 +106095,530.4749999999739,-0.05339398833324644 +106096,530.479999999974,-0.053393800017624456 +106097,530.4849999999741,-0.05339361166273515 +106098,530.4899999999742,-0.05339342326856102 +106099,530.4949999999743,-0.05339323483508451 +106100,530.4999999999744,-0.05339304636228809 +106101,530.5049999999745,-0.053392857850154185 +106102,530.5099999999746,-0.05339266929866524 +106103,530.5149999999747,-0.05339248070780367 +106104,530.5199999999749,-0.05339229207755189 +106105,530.524999999975,-0.05339210340789228 +106106,530.5299999999751,-0.053391914698807254 +106107,530.5349999999752,-0.05339172595027918 +106108,530.5399999999753,-0.053391537162290434 +106109,530.5449999999754,-0.05339134833482336 +106110,530.5499999999755,-0.05339115946786031 +106111,530.5549999999756,-0.053390970561383595 +106112,530.5599999999757,-0.053390781615375575 +106113,530.5649999999758,-0.05339059262981853 +106114,530.569999999976,-0.05339040360469478 +106115,530.5749999999761,-0.053390214539986616 +106116,530.5799999999762,-0.05339002543567631 +106117,530.5849999999763,-0.05338983629174612 +106118,530.5899999999764,-0.053389647108178326 +106119,530.5949999999765,-0.05338945788495515 +106120,530.5999999999766,-0.05338926862205884 +106121,530.6049999999767,-0.05338907931947161 +106122,530.6099999999768,-0.05338888997717568 +106123,530.6149999999769,-0.05338870059515326 +106124,530.619999999977,-0.05338851117338652 +106125,530.6249999999771,-0.05338832171185766 +106126,530.6299999999773,-0.05338813221054883 +106127,530.6349999999774,-0.0533879426694422 +106128,530.6399999999775,-0.05338775308851992 +106129,530.6449999999776,-0.05338756346776411 +106130,530.6499999999777,-0.053387373807156906 +106131,530.6549999999778,-0.05338718410668041 +106132,530.6599999999779,-0.05338699436631673 +106133,530.664999999978,-0.053386804586047956 +106134,530.6699999999781,-0.05338661476585617 +106135,530.6749999999782,-0.05338642490572343 +106136,530.6799999999783,-0.053386235005631805 +106137,530.6849999999785,-0.05338604506556334 +106138,530.6899999999786,-0.053385855085500054 +106139,530.6949999999787,-0.05338566506542399 +106140,530.6999999999788,-0.05338547500531715 +106141,530.7049999999789,-0.05338528490516154 +106142,530.709999999979,-0.05338509476493914 +106143,530.7149999999791,-0.053384904584631944 +106144,530.7199999999792,-0.05338471436422191 +106145,530.7249999999793,-0.05338452410369098 +106146,530.7299999999794,-0.05338433380302112 +106147,530.7349999999796,-0.053384143462194264 +106148,530.7399999999797,-0.053383953081192315 +106149,530.7449999999798,-0.053383762659997204 +106150,530.7499999999799,-0.053383572198590815 +106151,530.75499999998,-0.05338338169695504 +106152,530.7599999999801,-0.05338319115507176 +106153,530.7649999999802,-0.05338300057292283 +106154,530.7699999999803,-0.053382809950490114 +106155,530.7749999999804,-0.053382619287755464 +106156,530.7799999999805,-0.05338242858470069 +106157,530.7849999999806,-0.05338223784130763 +106158,530.7899999999808,-0.053382047057558085 +106159,530.7949999999809,-0.053381856233433854 +106160,530.799999999981,-0.05338166536891672 +106161,530.8049999999811,-0.05338147446398844 +106162,530.8099999999812,-0.053381283518630814 +106163,530.8149999999813,-0.053381092532825566 +106164,530.8199999999814,-0.05338090150655445 +106165,530.8249999999815,-0.05338071043979919 +106166,530.8299999999816,-0.053380519332541496 +106167,530.8349999999817,-0.05338032818476309 +106168,530.8399999999818,-0.05338013699644566 +106169,530.844999999982,-0.05337994576757087 +106170,530.8499999999821,-0.05337975449812042 +106171,530.8549999999822,-0.05337956318807596 +106172,530.8599999999823,-0.05337937183741914 +106173,530.8649999999824,-0.0533791804461316 +106174,530.8699999999825,-0.053378989014194946 +106175,530.8749999999826,-0.0533787975415908 +106176,530.8799999999827,-0.05337860602830078 +106177,530.8849999999828,-0.053378414474306454 +106178,530.8899999999829,-0.05337822287958942 +106179,530.894999999983,-0.053378031244131235 +106180,530.8999999999832,-0.053377839567913456 +106181,530.9049999999833,-0.05337764785091763 +106182,530.9099999999834,-0.05337745609312529 +106183,530.9149999999835,-0.05337726429451796 +106184,530.9199999999836,-0.05337707245507714 +106185,530.9249999999837,-0.05337688057478434 +106186,530.9299999999838,-0.053376688653621045 +106187,530.9349999999839,-0.05337649669156872 +106188,530.939999999984,-0.05337630468860883 +106189,530.9449999999841,-0.05337611264472283 +106190,530.9499999999842,-0.053375920559892154 +106191,530.9549999999844,-0.053375728434098234 +106192,530.9599999999845,-0.053375536267322506 +106193,530.9649999999846,-0.05337534405954635 +106194,530.9699999999847,-0.05337515181075116 +106195,530.9749999999848,-0.05337495952091832 +106196,530.9799999999849,-0.053374767190029204 +106197,530.984999999985,-0.05337457481806517 +106198,530.9899999999851,-0.05337438240500757 +106199,530.9949999999852,-0.05337418995083772 +106200,530.9999999999853,-0.053373997455536955 +106201,531.0049999999854,-0.05337380491908658 +106202,531.0099999999856,-0.05337361234146789 +106203,531.0149999999857,-0.05337341972266219 +106204,531.0199999999858,-0.05337322706265074 +106205,531.0249999999859,-0.05337303436141481 +106206,531.029999999986,-0.053372841618935636 +106207,531.0349999999861,-0.053372648835194485 +106208,531.0399999999862,-0.053372456010172556 +106209,531.0449999999863,-0.05337226314385109 +106210,531.0499999999864,-0.05337207023621127 +106211,531.0549999999865,-0.05337187728723431 +106212,531.0599999999866,-0.05337168429690138 +106213,531.0649999999868,-0.05337149126519364 +106214,531.0699999999869,-0.05337129819209227 +106215,531.074999999987,-0.05337110507757839 +106216,531.0799999999871,-0.05337091192163315 +106217,531.0849999999872,-0.05337071872423766 +106218,531.0899999999873,-0.053370525485373035 +106219,531.0949999999874,-0.05337033220502036 +106220,531.0999999999875,-0.053370138883160737 +106221,531.1049999999876,-0.05336994551977523 +106222,531.1099999999877,-0.053369752114844904 +106223,531.1149999999878,-0.05336955866835081 +106224,531.119999999988,-0.05336936518027398 +106225,531.1249999999881,-0.05336917165059543 +106226,531.1299999999882,-0.053368978079296185 +106227,531.1349999999883,-0.053368784466357254 +106228,531.1399999999884,-0.05336859081175962 +106229,531.1449999999885,-0.053368397115484245 +106230,531.1499999999886,-0.0533682033775121 +106231,531.1549999999887,-0.05336800959782416 +106232,531.1599999999888,-0.05336781577640133 +106233,531.1649999999889,-0.05336762191322457 +106234,531.169999999989,-0.053367428008274785 +106235,531.1749999999892,-0.05336723406153288 +106236,531.1799999999893,-0.05336704007297975 +106237,531.1849999999894,-0.05336684604259627 +106238,531.1899999999895,-0.05336665197036331 +106239,531.1949999999896,-0.05336645785626172 +106240,531.1999999999897,-0.05336626370027236 +106241,531.2049999999898,-0.05336606950237604 +106242,531.2099999999899,-0.05336587526255359 +106243,531.21499999999,-0.053365680980785826 +106244,531.2199999999901,-0.05336548665705354 +106245,531.2249999999902,-0.0533652922913375 +106246,531.2299999999904,-0.05336509788361849 +106247,531.2349999999905,-0.05336490343387726 +106248,531.2399999999906,-0.053364708942094566 +106249,531.2449999999907,-0.05336451440825114 +106250,531.2499999999908,-0.05336431983232769 +106251,531.2549999999909,-0.05336412521430495 +106252,531.259999999991,-0.0533639305541636 +106253,531.2649999999911,-0.05336373585188433 +106254,531.2699999999912,-0.053363541107447815 +106255,531.2749999999913,-0.05336334632083471 +106256,531.2799999999914,-0.05336315149202567 +106257,531.2849999999916,-0.053362956621001316 +106258,531.2899999999917,-0.0533627617077423 +106259,531.2949999999918,-0.0533625667522292 +106260,531.2999999999919,-0.05336237175444263 +106261,531.304999999992,-0.05336217671436319 +106262,531.3099999999921,-0.053361981631971436 +106263,531.3149999999922,-0.053361786507247926 +106264,531.3199999999923,-0.05336159134017322 +106265,531.3249999999924,-0.053361396130727844 +106266,531.3299999999925,-0.05336120087889233 +106267,531.3349999999926,-0.0533610055846472 +106268,531.3399999999928,-0.053360810247972935 +106269,531.3449999999929,-0.053360614868850034 +106270,531.349999999993,-0.053360419447258965 +106271,531.3549999999931,-0.053360223983180195 +106272,531.3599999999932,-0.05336002847659417 +106273,531.3649999999933,-0.053359832927481324 +106274,531.3699999999934,-0.05335963733582209 +106275,531.3749999999935,-0.05335944170159688 +106276,531.3799999999936,-0.05335924602478609 +106277,531.3849999999937,-0.0533590503053701 +106278,531.3899999999938,-0.0533588545433293 +106279,531.394999999994,-0.05335865873864404 +106280,531.3999999999941,-0.053358462891294665 +106281,531.4049999999942,-0.053358267001261526 +106282,531.4099999999943,-0.05335807106852495 +106283,531.4149999999944,-0.053357875093065235 +106284,531.4199999999945,-0.05335767907486269 +106285,531.4249999999946,-0.053357483013897596 +106286,531.4299999999947,-0.05335728691015022 +106287,531.4349999999948,-0.05335709076360084 +106288,531.4399999999949,-0.05335689457422969 +106289,531.444999999995,-0.05335669834201701 +106290,531.4499999999952,-0.053356502066943035 +106291,531.4549999999953,-0.05335630574898796 +106292,531.4599999999954,-0.053356109388132 +106293,531.4649999999955,-0.05335591298435533 +106294,531.4699999999956,-0.05335571653763812 +106295,531.4749999999957,-0.05335552004796053 +106296,531.4799999999958,-0.0533553235153027 +106297,531.4849999999959,-0.053355126939644795 +106298,531.489999999996,-0.0533549303209669 +106299,531.4949999999961,-0.05335473365924915 +106300,531.4999999999962,-0.05335453695447163 +106301,531.5049999999964,-0.05335434020661441 +106302,531.5099999999965,-0.05335414341565759 +106303,531.5149999999966,-0.05335394658158121 +106304,531.5199999999967,-0.053353749704365315 +106305,531.5249999999968,-0.05335355278398994 +106306,531.5299999999969,-0.053353355820435114 +106307,531.534999999997,-0.05335315881368082 +106308,531.5399999999971,-0.053352961763707074 +106309,531.5449999999972,-0.05335276467049386 +106310,531.5499999999973,-0.05335256753402112 +106311,531.5549999999974,-0.05335237035426883 +106312,531.5599999999976,-0.05335217313121693 +106313,531.5649999999977,-0.053351975864845344 +106314,531.5699999999978,-0.05335177855513399 +106315,531.5749999999979,-0.05335158120206278 +106316,531.579999999998,-0.053351383805611594 +106317,531.5849999999981,-0.05335118636576031 +106318,531.5899999999982,-0.05335098888248879 +106319,531.5949999999983,-0.05335079135577691 +106320,531.5999999999984,-0.05335059378560447 +106321,531.6049999999985,-0.05335039617195133 +106322,531.6099999999986,-0.05335019851479728 +106323,531.6149999999988,-0.053350000814122125 +106324,531.6199999999989,-0.053349803069905666 +106325,531.624999999999,-0.053349605282127656 +106326,531.6299999999991,-0.05334940745076787 +106327,531.6349999999992,-0.05334920957580604 +106328,531.6399999999993,-0.053349011657221924 +106329,531.6449999999994,-0.05334881369499523 +106330,531.6499999999995,-0.05334861568910567 +106331,531.6549999999996,-0.05334841763953294 +106332,531.6599999999997,-0.053348219546256716 +106333,531.6649999999998,-0.05334802140925666 +106334,531.67,-0.053347823228512455 +106335,531.6750000000001,-0.05334762500400372 +106336,531.6800000000002,-0.053347426735710086 +106337,531.6850000000003,-0.053347228423611184 +106338,531.6900000000004,-0.0533470300676866 +106339,531.6950000000005,-0.05334683166791595 +106340,531.7000000000006,-0.053346633224278794 +106341,531.7050000000007,-0.05334643473675469 +106342,531.7100000000008,-0.053346236205323194 +106343,531.7150000000009,-0.053346037629963844 +106344,531.720000000001,-0.05334583901065616 +106345,531.7250000000012,-0.05334564034737967 +106346,531.7300000000013,-0.05334544164011385 +106347,531.7350000000014,-0.053345242888838185 +106348,531.7400000000015,-0.05334504409353217 +106349,531.7450000000016,-0.05334484525417524 +106350,531.7500000000017,-0.05334464637074686 +106351,531.7550000000018,-0.053344447443226445 +106352,531.7600000000019,-0.05334424847159341 +106353,531.765000000002,-0.053344049455827165 +106354,531.7700000000021,-0.0533438503959071 +106355,531.7750000000023,-0.05334365129181261 +106356,531.7800000000024,-0.05334345214352304 +106357,531.7850000000025,-0.053343252951017744 +106358,531.7900000000026,-0.05334305371427607 +106359,531.7950000000027,-0.053342854433277326 +106360,531.8000000000028,-0.053342655108000826 +106361,531.8050000000029,-0.05334245573842589 +106362,531.810000000003,-0.05334225632453176 +106363,531.8150000000031,-0.053342056866297755 +106364,531.8200000000032,-0.0533418573637031 +106365,531.8250000000033,-0.05334165781672705 +106366,531.8300000000035,-0.05334145822534883 +106367,531.8350000000036,-0.05334125858954766 +106368,531.8400000000037,-0.05334105890930275 +106369,531.8450000000038,-0.05334085918459327 +106370,531.8500000000039,-0.05334065941539842 +106371,531.855000000004,-0.05334045960169735 +106372,531.8600000000041,-0.053340259743469204 +106373,531.8650000000042,-0.05334005984069313 +106374,531.8700000000043,-0.053339859893348246 +106375,531.8750000000044,-0.05333965990141367 +106376,531.8800000000045,-0.053339459864868474 +106377,531.8850000000047,-0.05333925978369176 +106378,531.8900000000048,-0.05333905965786259 +106379,531.8950000000049,-0.053338859487360016 +106380,531.900000000005,-0.05333865927216307 +106381,531.9050000000051,-0.053338459012250795 +106382,531.9100000000052,-0.05333825870760219 +106383,531.9150000000053,-0.053338058358196265 +106384,531.9200000000054,-0.053337857964012005 +106385,531.9250000000055,-0.05333765752502838 +106386,531.9300000000056,-0.05333745704122434 +106387,531.9350000000057,-0.05333725651257883 +106388,531.9400000000059,-0.05333705593907081 +106389,531.945000000006,-0.053336855320679166 +106390,531.9500000000061,-0.05333665465738281 +106391,531.9550000000062,-0.05333645394916063 +106392,531.9600000000063,-0.0533362531959915 +106393,531.9650000000064,-0.05333605239785431 +106394,531.9700000000065,-0.05333585155472787 +106395,531.9750000000066,-0.053335650666591024 +106396,531.9800000000067,-0.05333544973342261 +106397,531.9850000000068,-0.053335248755201424 +106398,531.990000000007,-0.05333504773190625 +106399,531.995000000007,-0.05333484666351588 +106400,532.0000000000072,-0.05333464555000907 +106401,532.0050000000073,-0.05333444439136459 +106402,532.0100000000074,-0.05333424318756116 +106403,532.0150000000075,-0.0533340419385775 +106404,532.0200000000076,-0.05333384064439234 +106405,532.0250000000077,-0.05333363930498436 +106406,532.0300000000078,-0.053333437920332245 +106407,532.0350000000079,-0.053333236490414666 +106408,532.040000000008,-0.05333303501521027 +106409,532.0450000000081,-0.05333283349469771 +106410,532.0500000000083,-0.05333263192885561 +106411,532.0550000000084,-0.05333243031766257 +106412,532.0600000000085,-0.05333222866109721 +106413,532.0650000000086,-0.05333202695913808 +106414,532.0700000000087,-0.05333182521176377 +106415,532.0750000000088,-0.053331623418952846 +106416,532.0800000000089,-0.05333142158068384 +106417,532.085000000009,-0.05333121969693528 +106418,532.0900000000091,-0.05333101776768568 +106419,532.0950000000092,-0.053330815792913544 +106420,532.1000000000093,-0.053330613772597346 +106421,532.1050000000095,-0.05333041170671557 +106422,532.1100000000096,-0.053330209595246675 +106423,532.1150000000097,-0.05333000743816909 +106424,532.1200000000098,-0.05332980523546125 +106425,532.1250000000099,-0.053329602987101585 +106426,532.13000000001,-0.05332940069306848 +106427,532.1350000000101,-0.05332919835334032 +106428,532.1400000000102,-0.05332899596789548 +106429,532.1450000000103,-0.05332879353671233 +106430,532.1500000000104,-0.0533285910597692 +106431,532.1550000000105,-0.053328388537044434 +106432,532.1600000000107,-0.05332818596851634 +106433,532.1650000000108,-0.05332798335416321 +106434,532.1700000000109,-0.05332778069396335 +106435,532.175000000011,-0.05332757798789501 +106436,532.1800000000111,-0.053327375235936475 +106437,532.1850000000112,-0.05332717243806597 +106438,532.1900000000113,-0.05332696959426174 +106439,532.1950000000114,-0.05332676670450198 +106440,532.2000000000115,-0.0533265637687649 +106441,532.2050000000116,-0.0533263607870287 +106442,532.2100000000117,-0.053326157759271554 +106443,532.2150000000119,-0.053325954685471605 +106444,532.220000000012,-0.053325751565606996 +106445,532.2250000000121,-0.05332554839965586 +106446,532.2300000000122,-0.05332534518759632 +106447,532.2350000000123,-0.053325141929406454 +106448,532.2400000000124,-0.05332493862506438 +106449,532.2450000000125,-0.053324735274548146 +106450,532.2500000000126,-0.053324531877835826 +106451,532.2550000000127,-0.053324328434905456 +106452,532.2600000000128,-0.05332412494573505 +106453,532.265000000013,-0.05332392141030265 +106454,532.270000000013,-0.05332371782858624 +106455,532.2750000000132,-0.05332351420056381 +106456,532.2800000000133,-0.05332331052621332 +106457,532.2850000000134,-0.053323106805512735 +106458,532.2900000000135,-0.05332290303843999 +106459,532.2950000000136,-0.05332269922497302 +106460,532.3000000000137,-0.05332249536508974 +106461,532.3050000000138,-0.053322291458768024 +106462,532.3100000000139,-0.05332208750598578 +106463,532.315000000014,-0.05332188350672087 +106464,532.3200000000141,-0.053321679460951135 +106465,532.3250000000143,-0.053321475368654433 +106466,532.3300000000144,-0.05332127122980857 +106467,532.3350000000145,-0.05332106704439137 +106468,532.3400000000146,-0.053320862812380625 +106469,532.3450000000147,-0.05332065853375412 +106470,532.3500000000148,-0.05332045420848961 +106471,532.3550000000149,-0.05332024983656486 +106472,532.360000000015,-0.05332004541795759 +106473,532.3650000000151,-0.053319840952645525 +106474,532.3700000000152,-0.053319636440606374 +106475,532.3750000000153,-0.053319431881817834 +106476,532.3800000000155,-0.0533192272762576 +106477,532.3850000000156,-0.0533190226239033 +106478,532.3900000000157,-0.05331881792473259 +106479,532.3950000000158,-0.053318613178723114 +106480,532.4000000000159,-0.05331840838585248 +106481,532.405000000016,-0.05331820354609831 +106482,532.4100000000161,-0.05331799865943816 +106483,532.4150000000162,-0.053317793725849626 +106484,532.4200000000163,-0.053317588745310264 +106485,532.4250000000164,-0.05331738371779761 +106486,532.4300000000165,-0.05331717864328921 +106487,532.4350000000167,-0.05331697352176257 +106488,532.4400000000168,-0.053316768353195175 +106489,532.4450000000169,-0.053316563137564534 +106490,532.450000000017,-0.0533163578748481 +106491,532.4550000000171,-0.05331615256502332 +106492,532.4600000000172,-0.05331594720806764 +106493,532.4650000000173,-0.05331574180395849 +106494,532.4700000000174,-0.053315536352673276 +106495,532.4750000000175,-0.0533153308541894 +106496,532.4800000000176,-0.05331512530848423 +106497,532.4850000000177,-0.053314919715535126 +106498,532.4900000000179,-0.05331471407531946 +106499,532.495000000018,-0.05331450838781454 +106500,532.5000000000181,-0.0533143026529977 +106501,532.5050000000182,-0.05331409687084624 +106502,532.5100000000183,-0.053313891041337456 +106503,532.5150000000184,-0.0533136851644486 +106504,532.5200000000185,-0.053313479240156954 +106505,532.5250000000186,-0.053313273268439744 +106506,532.5300000000187,-0.05331306724927421 +106507,532.5350000000188,-0.05331286118263756 +106508,532.540000000019,-0.053312655068507 +106509,532.5450000000191,-0.053312448906859704 +106510,532.5500000000192,-0.05331224269767283 +106511,532.5550000000193,-0.05331203644092355 +106512,532.5600000000194,-0.053311830136588995 +106513,532.5650000000195,-0.05331162378464629 +106514,532.5700000000196,-0.053311417385072515 +106515,532.5750000000197,-0.05331121093784479 +106516,532.5800000000198,-0.05331100444294019 +106517,532.5850000000199,-0.05331079790033577 +106518,532.59000000002,-0.05331059131000858 +106519,532.5950000000201,-0.05331038467193562 +106520,532.6000000000203,-0.05331017798609395 +106521,532.6050000000204,-0.05330997125246054 +106522,532.6100000000205,-0.053309764471012384 +106523,532.6150000000206,-0.05330955764172644 +106524,532.6200000000207,-0.053309350764579676 +106525,532.6250000000208,-0.053309143839549024 +106526,532.6300000000209,-0.0533089368666114 +106527,532.635000000021,-0.05330872984574373 +106528,532.6400000000211,-0.053308522776922884 +106529,532.6450000000212,-0.05330831566012574 +106530,532.6500000000214,-0.05330810849532918 +106531,532.6550000000215,-0.053307901282510034 +106532,532.6600000000216,-0.05330769402164512 +106533,532.6650000000217,-0.053307486712711266 +106534,532.6700000000218,-0.053307279355685265 +106535,532.6750000000219,-0.05330707195054392 +106536,532.680000000022,-0.053306864497263975 +106537,532.6850000000221,-0.05330665699582218 +106538,532.6900000000222,-0.05330644944619529 +106539,532.6950000000223,-0.05330624184836002 +106540,532.7000000000224,-0.053306034202293066 +106541,532.7050000000226,-0.05330582650797112 +106542,532.7100000000227,-0.05330561876537087 +106543,532.7150000000228,-0.053305410974468954 +106544,532.7200000000229,-0.05330520313524203 +106545,532.725000000023,-0.053304995247666714 +106546,532.7300000000231,-0.05330478731171962 +106547,532.7350000000232,-0.05330457932737735 +106548,532.7400000000233,-0.05330437129461649 +106549,532.7450000000234,-0.05330416321341359 +106550,532.7500000000235,-0.0533039550837452 +106551,532.7550000000236,-0.05330374690558785 +106552,532.7600000000238,-0.05330353867891806 +106553,532.7650000000239,-0.05330333040371234 +106554,532.770000000024,-0.05330312207994716 +106555,532.7750000000241,-0.05330291370759901 +106556,532.7800000000242,-0.053302705286644325 +106557,532.7850000000243,-0.05330249681705955 +106558,532.7900000000244,-0.05330228829882111 +106559,532.7950000000245,-0.05330207973190541 +106560,532.8000000000246,-0.05330187111628884 +106561,532.8050000000247,-0.05330166245194778 +106562,532.8100000000248,-0.05330145373885857 +106563,532.815000000025,-0.053301244976997564 +106564,532.8200000000251,-0.05330103616634109 +106565,532.8250000000252,-0.05330082730686547 +106566,532.8300000000253,-0.05330061839854699 +106567,532.8350000000254,-0.053300409441361905 +106568,532.8400000000255,-0.053300200435286514 +106569,532.8450000000256,-0.05329999138029704 +106570,532.8500000000257,-0.053299782276369743 +106571,532.8550000000258,-0.0532995731234808 +106572,532.8600000000259,-0.05329936392160643 +106573,532.865000000026,-0.05329915467072281 +106574,532.8700000000262,-0.05329894537080612 +106575,532.8750000000263,-0.0532987360218325 +106576,532.8800000000264,-0.05329852662377808 +106577,532.8850000000265,-0.05329831717661898 +106578,532.8900000000266,-0.053298107680331316 +106579,532.8950000000267,-0.05329789813489116 +106580,532.9000000000268,-0.05329768854027458 +106581,532.9050000000269,-0.053297478896457647 +106582,532.910000000027,-0.05329726920341639 +106583,532.9150000000271,-0.053297059461126825 +106584,532.9200000000272,-0.053296849669564966 +106585,532.9250000000274,-0.05329663982870679 +106586,532.9300000000275,-0.053296429938528275 +106587,532.9350000000276,-0.05329621999900539 +106588,532.9400000000277,-0.05329601001011406 +106589,532.9450000000278,-0.05329579997183022 +106590,532.9500000000279,-0.05329558988412977 +106591,532.955000000028,-0.0532953797469886 +106592,532.9600000000281,-0.05329516956038259 +106593,532.9650000000282,-0.05329495932428761 +106594,532.9700000000283,-0.05329474903867947 +106595,532.9750000000284,-0.05329453870353403 +106596,532.9800000000286,-0.053294328318827085 +106597,532.9850000000287,-0.053294117884534434 +106598,532.9900000000288,-0.05329390740063184 +106599,532.9950000000289,-0.05329369686709508 +106600,533.000000000029,-0.0532934862838999 +106601,533.0050000000291,-0.053293275651022015 +106602,533.0100000000292,-0.05329306496843714 +106603,533.0150000000293,-0.05329285423612098 +106604,533.0200000000294,-0.0532926434540492 +106605,533.0250000000295,-0.05329243262219747 +106606,533.0300000000296,-0.05329222174054142 +106607,533.0350000000298,-0.053292010809056704 +106608,533.0400000000299,-0.05329179982771892 +106609,533.04500000003,-0.05329158879650366 +106610,533.0500000000301,-0.0532913777153865 +106611,533.0550000000302,-0.05329116658434302 +106612,533.0600000000303,-0.053290955403348765 +106613,533.0650000000304,-0.05329074417237925 +106614,533.0700000000305,-0.053290532891409996 +106615,533.0750000000306,-0.053290321560416486 +106616,533.0800000000307,-0.053290110179374225 +106617,533.0850000000308,-0.05328989874825865 +106618,533.090000000031,-0.05328968726704523 +106619,533.0950000000311,-0.05328947573570938 +106620,533.1000000000312,-0.053289264154226516 +106621,533.1050000000313,-0.05328905252257204 +106622,533.1100000000314,-0.05328884084072131 +106623,533.1150000000315,-0.053288629108649704 +106624,533.1200000000316,-0.05328841732633258 +106625,533.1250000000317,-0.05328820549374525 +106626,533.1300000000318,-0.053287993610863026 +106627,533.1350000000319,-0.05328778167766122 +106628,533.140000000032,-0.05328756969411508 +106629,533.1450000000322,-0.05328735766019989 +106630,533.1500000000323,-0.05328714557589089 +106631,533.1550000000324,-0.053286933441163316 +106632,533.1600000000325,-0.05328672125599236 +106633,533.1650000000326,-0.053286509020353236 +106634,533.1700000000327,-0.05328629673422111 +106635,533.1750000000328,-0.05328608439757115 +106636,533.1800000000329,-0.05328587201037849 +106637,533.185000000033,-0.05328565957261826 +106638,533.1900000000331,-0.05328544708426557 +106639,533.1950000000332,-0.053285234545295525 +106640,533.2000000000334,-0.05328502195568318 +106641,533.2050000000335,-0.053284809315403595 +106642,533.2100000000336,-0.053284596624431815 +106643,533.2150000000337,-0.053284383882742876 +106644,533.2200000000338,-0.05328417109031178 +106645,533.2250000000339,-0.0532839582471135 +106646,533.230000000034,-0.053283745353123024 +106647,533.2350000000341,-0.053283532408315314 +106648,533.2400000000342,-0.05328331941266529 +106649,533.2450000000343,-0.053283106366147893 +106650,533.2500000000344,-0.05328289326873801 +106651,533.2550000000346,-0.05328268012041055 +106652,533.2600000000347,-0.05328246692114036 +106653,533.2650000000348,-0.05328225367090231 +106654,533.2700000000349,-0.05328204036967122 +106655,533.275000000035,-0.05328182701742192 +106656,533.2800000000351,-0.05328161361412921 +106657,533.2850000000352,-0.05328140015976787 +106658,533.2900000000353,-0.053281186654312675 +106659,533.2950000000354,-0.05328097309773837 +106660,533.3000000000355,-0.053280759490019675 +106661,533.3050000000356,-0.05328054583113132 +106662,533.3100000000358,-0.05328033212104799 +106663,533.3150000000359,-0.05328011835974438 +106664,533.320000000036,-0.053279904547195146 +106665,533.3250000000361,-0.05327969068337494 +106666,533.3300000000362,-0.05327947676825838 +106667,533.3350000000363,-0.05327926280182007 +106668,533.3400000000364,-0.05327904878403462 +106669,533.3450000000365,-0.05327883471487658 +106670,533.3500000000366,-0.05327862059432054 +106671,533.3550000000367,-0.05327840642234104 +106672,533.3600000000368,-0.053278192198912576 +106673,533.365000000037,-0.053277977924009665 +106674,533.3700000000371,-0.053277763597606796 +106675,533.3750000000372,-0.05327754921967845 +106676,533.3800000000373,-0.05327733479019906 +106677,533.3850000000374,-0.05327712030914309 +106678,533.3900000000375,-0.053276905776484924 +106679,533.3950000000376,-0.05327669119219898 +106680,533.4000000000377,-0.05327647655625965 +106681,533.4050000000378,-0.05327626186864129 +106682,533.4100000000379,-0.053276047129318244 +106683,533.415000000038,-0.05327583233826485 +106684,533.4200000000382,-0.05327561749545541 +106685,533.4250000000383,-0.05327540260086421 +106686,533.4300000000384,-0.05327518765446555 +106687,533.4350000000385,-0.05327497265623369 +106688,533.4400000000386,-0.05327475760614284 +106689,533.4450000000387,-0.05327454250416726 +106690,533.4500000000388,-0.05327432735028113 +106691,533.4550000000389,-0.053274112144458645 +106692,533.460000000039,-0.053273896886673985 +106693,533.4650000000391,-0.0532736815769013 +106694,533.4700000000392,-0.05327346621511471 +106695,533.4750000000394,-0.05327325080128834 +106696,533.4800000000395,-0.053273035335396304 +106697,533.4850000000396,-0.05327281981741266 +106698,533.4900000000397,-0.05327260424731148 +106699,533.4950000000398,-0.053272388625066815 +106700,533.5000000000399,-0.053272172950652674 +106701,533.50500000004,-0.05327195722404308 +106702,533.5100000000401,-0.05327174144521202 +106703,533.5150000000402,-0.053271525614133466 +106704,533.5200000000403,-0.05327130973078138 +106705,533.5250000000404,-0.053271093795129704 +106706,533.5300000000406,-0.053270877807152346 +106707,533.5350000000407,-0.05327066176682321 +106708,533.5400000000408,-0.05327044567411619 +106709,533.5450000000409,-0.053270229529005134 +106710,533.550000000041,-0.0532700133314639 +106711,533.5550000000411,-0.05326979708146631 +106712,533.5600000000412,-0.053269580778986185 +106713,533.5650000000413,-0.0532693644239973 +106714,533.5700000000414,-0.05326914801647345 +106715,533.5750000000415,-0.053268931556388385 +106716,533.5800000000417,-0.05326871504371583 +106717,533.5850000000418,-0.05326849847842952 +106718,533.5900000000419,-0.053268281860503156 +106719,533.595000000042,-0.05326806518991042 +106720,533.6000000000421,-0.05326784846662497 +106721,533.6050000000422,-0.053267631690620466 +106722,533.6100000000423,-0.05326741486187052 +106723,533.6150000000424,-0.053267197980348756 +106724,533.6200000000425,-0.05326698104602876 +106725,533.6250000000426,-0.05326676405888411 +106726,533.6300000000427,-0.05326654701888836 +106727,533.6350000000429,-0.05326632992601505 +106728,533.640000000043,-0.05326611278023769 +106729,533.6450000000431,-0.05326589558152979 +106730,533.6500000000432,-0.05326567832986483 +106731,533.6550000000433,-0.05326546102521625 +106732,533.6600000000434,-0.05326524366755753 +106733,533.6650000000435,-0.05326502625686209 +106734,533.6700000000436,-0.053264808793103316 +106735,533.6750000000437,-0.05326459127625462 +106736,533.6800000000438,-0.053264373706289364 +106737,533.6850000000439,-0.05326415608318091 +106738,533.690000000044,-0.053263938406902585 +106739,533.6950000000442,-0.0532637206774277 +106740,533.7000000000443,-0.05326350289472956 +106741,533.7050000000444,-0.05326328505878144 +106742,533.7100000000445,-0.053263067169556595 +106743,533.7150000000446,-0.05326284922702827 +106744,533.7200000000447,-0.05326263123116969 +106745,533.7250000000448,-0.05326241318195406 +106746,533.7300000000449,-0.053262195079354556 +106747,533.735000000045,-0.05326197692334435 +106748,533.7400000000451,-0.0532617587138966 +106749,533.7450000000453,-0.05326154045098441 +106750,533.7500000000454,-0.05326132213458092 +106751,533.7550000000455,-0.053261103764659215 +106752,533.7600000000456,-0.05326088534119235 +106753,533.7650000000457,-0.05326066686415339 +106754,533.7700000000458,-0.05326044833351537 +106755,533.7750000000459,-0.05326022974925131 +106756,533.780000000046,-0.053260011111334195 +106757,533.7850000000461,-0.05325979241973702 +106758,533.7900000000462,-0.05325957367443274 +106759,533.7950000000463,-0.053259354875394294 +106760,533.8000000000465,-0.053259136022594605 +106761,533.8050000000466,-0.053258917116006575 +106762,533.8100000000467,-0.053258698155603086 +106763,533.8150000000468,-0.053258479141357 +106764,533.8200000000469,-0.05325826007324118 +106765,533.825000000047,-0.05325804095122842 +106766,533.8300000000471,-0.05325782177529158 +106767,533.8350000000472,-0.053257602545403404 +106768,533.8400000000473,-0.05325738326153667 +106769,533.8450000000474,-0.053257163923664155 +106770,533.8500000000475,-0.05325694453175856 +106771,533.8550000000477,-0.05325672508579263 +106772,533.8600000000478,-0.05325650558573902 +106773,533.8650000000479,-0.05325628603157043 +106774,533.870000000048,-0.053256066423259515 +106775,533.8750000000481,-0.053255846760778894 +106776,533.8800000000482,-0.0532556270441012 +106777,533.8850000000483,-0.053255407273199044 +106778,533.8900000000484,-0.05325518744804498 +106779,533.8950000000485,-0.053254967568611575 +106780,533.9000000000486,-0.05325474763487137 +106781,533.9050000000487,-0.05325452764679689 +106782,533.9100000000489,-0.05325430760436063 +106783,533.915000000049,-0.053254087507535075 +106784,533.9200000000491,-0.053253867356292686 +106785,533.9250000000492,-0.05325364715060592 +106786,533.9300000000493,-0.05325342689044719 +106787,533.9350000000494,-0.05325320657578889 +106788,533.9400000000495,-0.05325298620660344 +106789,533.9450000000496,-0.05325276578286318 +106790,533.9500000000497,-0.05325254530454046 +106791,533.9550000000498,-0.05325232477160761 +106792,533.96000000005,-0.05325210418403694 +106793,533.96500000005,-0.053251883541800736 +106794,533.9700000000502,-0.05325166284487126 +106795,533.9750000000503,-0.053251442093220774 +106796,533.9800000000504,-0.053251221286821505 +106797,533.9850000000505,-0.05325100042564566 +106798,533.9900000000506,-0.05325077950966543 +106799,533.9950000000507,-0.053250558538853 +106800,534.0000000000508,-0.0532503375131805 +106801,534.0050000000509,-0.05325011643262008 +106802,534.010000000051,-0.053249895297143836 +106803,534.0150000000511,-0.05324967410672388 +106804,534.0200000000513,-0.05324945286133226 +106805,534.0250000000514,-0.05324923156094106 +106806,534.0300000000515,-0.053249010205522286 +106807,534.0350000000516,-0.05324878879504797 +106808,534.0400000000517,-0.0532485673294901 +106809,534.0450000000518,-0.053248345808820645 +106810,534.0500000000519,-0.05324812423301157 +106811,534.055000000052,-0.05324790260203481 +106812,534.0600000000521,-0.053247680915862274 +106813,534.0650000000522,-0.05324745917446586 +106814,534.0700000000523,-0.05324723737781744 +106815,534.0750000000525,-0.05324701552588888 +106816,534.0800000000526,-0.05324679361865202 +106817,534.0850000000527,-0.053246571656078656 +106818,534.0900000000528,-0.05324634963814059 +106819,534.0950000000529,-0.0532461275648096 +106820,534.100000000053,-0.05324590543605744 +106821,534.1050000000531,-0.053245683251855865 +106822,534.1100000000532,-0.053245461012176566 +106823,534.1150000000533,-0.05324523871699125 +106824,534.1200000000534,-0.0532450163662716 +106825,534.1250000000535,-0.05324479395998925 +106826,534.1300000000537,-0.05324457149811586 +106827,534.1350000000538,-0.05324434898062303 +106828,534.1400000000539,-0.05324412640748237 +106829,534.145000000054,-0.05324390377866544 +106830,534.1500000000541,-0.05324368109414381 +106831,534.1550000000542,-0.05324345835388901 +106832,534.1600000000543,-0.053243235557872554 +106833,534.1650000000544,-0.05324301270606594 +106834,534.1700000000545,-0.05324278979844064 +106835,534.1750000000546,-0.0532425668349681 +106836,534.1800000000547,-0.05324234381561978 +106837,534.1850000000549,-0.05324212074036707 +106838,534.190000000055,-0.05324189760918137 +106839,534.1950000000551,-0.053241674422034056 +106840,534.2000000000552,-0.05324145117889648 +106841,534.2050000000553,-0.053241227879739984 +106842,534.2100000000554,-0.05324100452453587 +106843,534.2150000000555,-0.05324078111325543 +106844,534.2200000000556,-0.05324055764586993 +106845,534.2250000000557,-0.05324033412235063 +106846,534.2300000000558,-0.05324011054266877 +106847,534.235000000056,-0.05323988690679555 +106848,534.240000000056,-0.053239663214702165 +106849,534.2450000000562,-0.05323943946635977 +106850,534.2500000000563,-0.05323921566173954 +106851,534.2550000000564,-0.05323899180081257 +106852,534.2600000000565,-0.053238767883549996 +106853,534.2650000000566,-0.0532385439099229 +106854,534.2700000000567,-0.05323831987990234 +106855,534.2750000000568,-0.05323809579345937 +106856,534.2800000000569,-0.05323787165056501 +106857,534.285000000057,-0.05323764745119027 +106858,534.2900000000571,-0.05323742319530614 +106859,534.2950000000573,-0.05323719888288358 +106860,534.3000000000574,-0.05323697451389352 +106861,534.3050000000575,-0.053236750088306896 +106862,534.3100000000576,-0.053236525606094605 +106863,534.3150000000577,-0.05323630106722753 +106864,534.3200000000578,-0.053236076471676524 +106865,534.3250000000579,-0.05323585181941245 +106866,534.330000000058,-0.05323562711040609 +106867,534.3350000000581,-0.05323540234462826 +106868,534.3400000000582,-0.05323517752204974 +106869,534.3450000000583,-0.05323495264264129 +106870,534.3500000000585,-0.053234727706373636 +106871,534.3550000000586,-0.053234502713217495 +106872,534.3600000000587,-0.05323427766314356 +106873,534.3650000000588,-0.053234052556122506 +106874,534.3700000000589,-0.05323382739212498 +106875,534.375000000059,-0.05323360217112162 +106876,534.3800000000591,-0.05323337689308302 +106877,534.3850000000592,-0.05323315155797978 +106878,534.3900000000593,-0.05323292616578247 +106879,534.3950000000594,-0.053232700716461634 +106880,534.4000000000595,-0.0532324752099878 +106881,534.4050000000597,-0.053232249646331456 +106882,534.4100000000598,-0.05323202402546309 +106883,534.4150000000599,-0.05323179834735318 +106884,534.42000000006,-0.05323157261197216 +106885,534.4250000000601,-0.05323134681929044 +106886,534.4300000000602,-0.05323112096927842 +106887,534.4350000000603,-0.053230895061906494 +106888,534.4400000000604,-0.05323066909714501 +106889,534.4450000000605,-0.0532304430749643 +106890,534.4500000000606,-0.05323021699533467 +106891,534.4550000000607,-0.05322999085822643 +106892,534.4600000000609,-0.053229764663609826 +106893,534.465000000061,-0.05322953841145513 +106894,534.4700000000611,-0.05322931210173256 +106895,534.4750000000612,-0.053229085734412325 +106896,534.4800000000613,-0.05322885930946461 +106897,534.4850000000614,-0.05322863282685958 +106898,534.4900000000615,-0.05322840628656738 +106899,534.4950000000616,-0.05322817968855813 +106900,534.5000000000617,-0.053227953032801936 +106901,534.5050000000618,-0.05322772631926887 +106902,534.510000000062,-0.05322749954792897 +106903,534.5150000000621,-0.05322727271875231 +106904,534.5200000000622,-0.05322704583170886 +106905,534.5250000000623,-0.053226818886768654 +106906,534.5300000000624,-0.05322659188390165 +106907,534.5350000000625,-0.05322636482307778 +106908,534.5400000000626,-0.05322613770426698 +106909,534.5450000000627,-0.053225910527439156 +106910,534.5500000000628,-0.0532256832925642 +106911,534.5550000000629,-0.05322545599961197 +106912,534.560000000063,-0.0532252286485523 +106913,534.5650000000632,-0.05322500123935502 +106914,534.5700000000633,-0.05322477377198993 +106915,534.5750000000634,-0.0532245462464268 +106916,534.5800000000635,-0.05322431866263537 +106917,534.5850000000636,-0.05322409102058539 +106918,534.5900000000637,-0.05322386332024657 +106919,534.5950000000638,-0.05322363556158858 +106920,534.6000000000639,-0.05322340774458111 +106921,534.605000000064,-0.05322317986919379 +106922,534.6100000000641,-0.05322295193539624 +106923,534.6150000000642,-0.05322272394315807 +106924,534.6200000000644,-0.05322249589244886 +106925,534.6250000000645,-0.053222267783238165 +106926,534.6300000000646,-0.05322203961549552 +106927,534.6350000000647,-0.053221811389190424 +106928,534.6400000000648,-0.053221583104292376 +106929,534.6450000000649,-0.05322135476077087 +106930,534.650000000065,-0.053221126358595314 +106931,534.6550000000651,-0.05322089789773516 +106932,534.6600000000652,-0.053220669378159786 +106933,534.6650000000653,-0.0532204407998386 +106934,534.6700000000654,-0.053220212162740935 +106935,534.6750000000656,-0.053219983466836145 +106936,534.6800000000657,-0.05321975471209353 +106937,534.6850000000658,-0.0532195258984824 +106938,534.6900000000659,-0.05321929702597203 +106939,534.695000000066,-0.053219068094531634 +106940,534.7000000000661,-0.053218839104130465 +106941,534.7050000000662,-0.053218610054737714 +106942,534.7100000000663,-0.05321838094632256 +106943,534.7150000000664,-0.05321815177885417 +106944,534.7200000000665,-0.05321792255230166 +106945,534.7250000000666,-0.05321769326663417 +106946,534.7300000000668,-0.05321746392182078 +106947,534.7350000000669,-0.05321723451783055 +106948,534.740000000067,-0.05321700505463254 +106949,534.7450000000671,-0.05321677553219577 +106950,534.7500000000672,-0.05321654595048923 +106951,534.7550000000673,-0.05321631630948191 +106952,534.7600000000674,-0.05321608660914277 +106953,534.7650000000675,-0.053215856849440725 +106954,534.7700000000676,-0.05321562703034471 +106955,534.7750000000677,-0.05321539715182359 +106956,534.7800000000678,-0.05321516721384626 +106957,534.785000000068,-0.05321493721638154 +106958,534.7900000000681,-0.05321470715939826 +106959,534.7950000000682,-0.053214477042865214 +106960,534.8000000000683,-0.053214246866751184 +106961,534.8050000000684,-0.05321401663102492 +106962,534.8100000000685,-0.05321378633565514 +106963,534.8150000000686,-0.05321355598061057 +106964,534.8200000000687,-0.05321332556585988 +106965,534.8250000000688,-0.05321309509137173 +106966,534.8300000000689,-0.05321286455711477 +106967,534.835000000069,-0.053212633963057615 +106968,534.8400000000692,-0.05321240330916886 +106969,534.8450000000693,-0.05321217259541707 +106970,534.8500000000694,-0.053211941821770796 +106971,534.8550000000695,-0.053211710988198546 +106972,534.8600000000696,-0.05321148009466885 +106973,534.8650000000697,-0.05321124914115016 +106974,534.8700000000698,-0.053211018127610955 +106975,534.8750000000699,-0.053210787054019645 +106976,534.88000000007,-0.05321055592034466 +106977,534.8850000000701,-0.053210324726554376 +106978,534.8900000000702,-0.05321009347261716 +106979,534.8950000000704,-0.053209862158501355 +106980,534.9000000000705,-0.05320963078417526 +106981,534.9050000000706,-0.053209399349607195 +106982,534.9100000000707,-0.05320916785476541 +106983,534.9150000000708,-0.053208936299618176 +106984,534.9200000000709,-0.0532087046841337 +106985,534.925000000071,-0.05320847300828017 +106986,534.9300000000711,-0.05320824127202579 +106987,534.9350000000712,-0.05320800947533871 +106988,534.9400000000713,-0.053207777618187055 +106989,534.9450000000714,-0.05320754570053893 +106990,534.9500000000716,-0.05320731372236243 +106991,534.9550000000717,-0.05320708168362562 +106992,534.9600000000718,-0.05320684958429652 +106993,534.9650000000719,-0.05320661742434316 +106994,534.970000000072,-0.05320638520373353 +106995,534.9750000000721,-0.05320615292243561 +106996,534.9800000000722,-0.053205920580417315 +106997,534.9850000000723,-0.05320568817764659 +106998,534.9900000000724,-0.05320545571409133 +106999,534.9950000000725,-0.05320522318971939 +107000,535.0000000000726,-0.053204990604498646 +107001,535.0050000000728,-0.05320475795839691 +107002,535.0100000000729,-0.05320452525138198 +107003,535.015000000073,-0.05320429248342166 +107004,535.0200000000731,-0.053204059654483674 +107005,535.0250000000732,-0.05320382676453578 +107006,535.0300000000733,-0.05320359381354568 +107007,535.0350000000734,-0.05320336080148105 +107008,535.0400000000735,-0.05320312772830957 +107009,535.0450000000736,-0.053202894593998865 +107010,535.0500000000737,-0.05320266139851654 +107011,535.0550000000738,-0.053202428141830196 +107012,535.060000000074,-0.05320219482390741 +107013,535.0650000000741,-0.05320196144471571 +107014,535.0700000000742,-0.05320172800422262 +107015,535.0750000000743,-0.053201494502395634 +107016,535.0800000000744,-0.053201260939202216 +107017,535.0850000000745,-0.053201027314609815 +107018,535.0900000000746,-0.053200793628585874 +107019,535.0950000000747,-0.05320055988109776 +107020,535.1000000000748,-0.05320032607211287 +107021,535.1050000000749,-0.053200092201598555 +107022,535.110000000075,-0.05319985826952212 +107023,535.1150000000752,-0.05319962427585091 +107024,535.1200000000753,-0.05319939022055216 +107025,535.1250000000754,-0.05319915610359315 +107026,535.1300000000755,-0.053198921924941106 +107027,535.1350000000756,-0.05319868768456323 +107028,535.1400000000757,-0.05319845338242671 +107029,535.1450000000758,-0.053198219018498694 +107030,535.1500000000759,-0.05319798459274632 +107031,535.155000000076,-0.05319775010513671 +107032,535.1600000000761,-0.053197515555636926 +107033,535.1650000000762,-0.05319728094421406 +107034,535.1700000000764,-0.053197046270835116 +107035,535.1750000000765,-0.05319681153546713 +107036,535.1800000000766,-0.05319657673807709 +107037,535.1850000000767,-0.05319634187863194 +107038,535.1900000000768,-0.053196106957098636 +107039,535.1950000000769,-0.05319587197344409 +107040,535.200000000077,-0.05319563692763518 +107041,535.2050000000771,-0.05319540181963879 +107042,535.2100000000772,-0.053195166649421755 +107043,535.2150000000773,-0.0531949314169509 +107044,535.2200000000774,-0.053194696122193 +107045,535.2250000000776,-0.053194460765114825 +107046,535.2300000000777,-0.05319422534568314 +107047,535.2350000000778,-0.053193989863864644 +107048,535.2400000000779,-0.05319375431962604 +107049,535.245000000078,-0.05319351871293398 +107050,535.2500000000781,-0.05319328304375513 +107051,535.2550000000782,-0.053193047312056096 +107052,535.2600000000783,-0.05319281151780348 +107053,535.2650000000784,-0.05319257566096385 +107054,535.2700000000785,-0.05319233974150377 +107055,535.2750000000786,-0.053192103759389736 +107056,535.2800000000788,-0.05319186771458825 +107057,535.2850000000789,-0.053191631607065804 +107058,535.290000000079,-0.05319139543678881 +107059,535.2950000000791,-0.05319115920372371 +107060,535.3000000000792,-0.053190922907836904 +107061,535.3050000000793,-0.05319068654909475 +107062,535.3100000000794,-0.05319045012746361 +107063,535.3150000000795,-0.05319021364290978 +107064,535.3200000000796,-0.05318997709539958 +107065,535.3250000000797,-0.053189740484899294 +107066,535.3300000000798,-0.05318950381137513 +107067,535.33500000008,-0.05318926707479334 +107068,535.3400000000801,-0.053189030275120106 +107069,535.3450000000802,-0.053188793412321606 +107070,535.3500000000803,-0.05318855648636398 +107071,535.3550000000804,-0.05318831949721336 +107072,535.3600000000805,-0.05318808244483583 +107073,535.3650000000806,-0.05318784532919747 +107074,535.3700000000807,-0.053187608150264326 +107075,535.3750000000808,-0.05318737090800241 +107076,535.3800000000809,-0.05318713360237773 +107077,535.385000000081,-0.053186896233356235 +107078,535.3900000000812,-0.05318665880090388 +107079,535.3950000000813,-0.053186421304986596 +107080,535.4000000000814,-0.05318618374557026 +107081,535.4050000000815,-0.05318594612262075 +107082,535.4100000000816,-0.053185708436103894 +107083,535.4150000000817,-0.053185470685985524 +107084,535.4200000000818,-0.053185232872231425 +107085,535.4250000000819,-0.053184994994807354 +107086,535.430000000082,-0.05318475705367907 +107087,535.4350000000821,-0.05318451904881228 +107088,535.4400000000823,-0.05318428098017267 +107089,535.4450000000824,-0.053184042847725904 +107090,535.4500000000825,-0.05318380465143763 +107091,535.4550000000826,-0.053183566391273446 +107092,535.4600000000827,-0.05318332806719894 +107093,535.4650000000828,-0.05318308967917969 +107094,535.4700000000829,-0.05318285122718122 +107095,535.475000000083,-0.053182612711169044 +107096,535.4800000000831,-0.053182374131108635 +107097,535.4850000000832,-0.053182135486965466 +107098,535.4900000000833,-0.053181896778704954 +107099,535.4950000000835,-0.05318165800629252 +107100,535.5000000000836,-0.053181419169693545 +107101,535.5050000000837,-0.05318118026887336 +107102,535.5100000000838,-0.053180941303797316 +107103,535.5150000000839,-0.053180702274430704 +107104,535.520000000084,-0.05318046318073881 +107105,535.5250000000841,-0.053180224022686885 +107106,535.5300000000842,-0.05317998480024015 +107107,535.5350000000843,-0.053179745513363796 +107108,535.5400000000844,-0.05317950616202301 +107109,535.5450000000845,-0.05317926674618292 +107110,535.5500000000847,-0.05317902726580866 +107111,535.5550000000848,-0.05317878772086532 +107112,535.5600000000849,-0.05317854811131797 +107113,535.565000000085,-0.05317830843713165 +107114,535.5700000000851,-0.05317806869827137 +107115,535.5750000000852,-0.05317782889470215 +107116,535.5800000000853,-0.053177589026388916 +107117,535.5850000000854,-0.05317734909329661 +107118,535.5900000000855,-0.05317710909539017 +107119,535.5950000000856,-0.053176869032634445 +107120,535.6000000000857,-0.053176628904994305 +107121,535.6050000000859,-0.05317638871243459 +107122,535.610000000086,-0.053176148454920094 +107123,535.6150000000861,-0.0531759081324156 +107124,535.6200000000862,-0.05317566774488586 +107125,535.6250000000863,-0.053175427292295595 +107126,535.6300000000864,-0.053175186774609515 +107127,535.6350000000865,-0.05317494619179229 +107128,535.6400000000866,-0.05317470554380854 +107129,535.6450000000867,-0.05317446483062292 +107130,535.6500000000868,-0.05317422405220001 +107131,535.6550000000869,-0.05317398320850437 +107132,535.660000000087,-0.05317374229950053 +107133,535.6650000000872,-0.05317350132515303 +107134,535.6700000000873,-0.05317326028542632 +107135,535.6750000000874,-0.0531730191802849 +107136,535.6800000000875,-0.053172778009693174 +107137,535.6850000000876,-0.053172536773615546 +107138,535.6900000000877,-0.05317229547201641 +107139,535.6950000000878,-0.05317205410486011 +107140,535.7000000000879,-0.05317181267211098 +107141,535.705000000088,-0.053171571173733286 +107142,535.7100000000881,-0.05317132960969133 +107143,535.7150000000883,-0.05317108797994935 +107144,535.7200000000884,-0.05317084628447155 +107145,535.7250000000885,-0.05317060452322214 +107146,535.7300000000886,-0.05317036269616527 +107147,535.7350000000887,-0.05317012080326508 +107148,535.7400000000888,-0.053169878844485666 +107149,535.7450000000889,-0.05316963681979112 +107150,535.750000000089,-0.05316939472914551 +107151,535.7550000000891,-0.05316915257251285 +107152,535.7600000000892,-0.053168910349857115 +107153,535.7650000000893,-0.053168668061142316 +107154,535.7700000000895,-0.05316842570633237 +107155,535.7750000000896,-0.053168183285391225 +107156,535.7800000000897,-0.05316794079828274 +107157,535.7850000000898,-0.05316769824497081 +107158,535.7900000000899,-0.05316745562541925 +107159,535.79500000009,-0.05316721293959188 +107160,535.8000000000901,-0.053166970187452464 +107161,535.8050000000902,-0.05316672736896477 +107162,535.8100000000903,-0.05316648448409252 +107163,535.8150000000904,-0.05316624153279942 +107164,535.8200000000905,-0.05316599851504913 +107165,535.8250000000907,-0.05316575543080529 +107166,535.8300000000908,-0.05316551228003154 +107167,535.8350000000909,-0.053165269062691436 +107168,535.840000000091,-0.05316502577874857 +107169,535.8450000000911,-0.05316478242816646 +107170,535.8500000000912,-0.05316453901090861 +107171,535.8550000000913,-0.05316429552693851 +107172,535.8600000000914,-0.05316405197621958 +107173,535.8650000000915,-0.05316380835871529 +107174,535.8700000000916,-0.05316356467438899 +107175,535.8750000000917,-0.05316332092320407 +107176,535.8800000000919,-0.053163077105123864 +107177,535.885000000092,-0.05316283322011168 +107178,535.8900000000921,-0.053162589268130805 +107179,535.8950000000922,-0.053162345249144496 +107180,535.9000000000923,-0.053162101163115975 +107181,535.9050000000924,-0.053161857010008445 +107182,535.9100000000925,-0.05316161278978508 +107183,535.9150000000926,-0.05316136850240902 +107184,535.9200000000927,-0.05316112414784337 +107185,535.9250000000928,-0.05316087972605122 +107186,535.930000000093,-0.05316063523699564 +107187,535.935000000093,-0.053160390680639664 +107188,535.9400000000932,-0.053160146056946286 +107189,535.9450000000933,-0.05315990136587848 +107190,535.9500000000934,-0.0531596566073992 +107191,535.9550000000935,-0.05315941178147135 +107192,535.9600000000936,-0.05315916688805783 +107193,535.9650000000937,-0.05315892192712148 +107194,535.9700000000938,-0.05315867689862516 +107195,535.9750000000939,-0.053158431802531665 +107196,535.980000000094,-0.053158186638803784 +107197,535.9850000000941,-0.053157941407404236 +107198,535.9900000000943,-0.053157696108295766 +107199,535.9950000000944,-0.053157450741441056 +107200,536.0000000000945,-0.05315720530680277 +107201,536.0050000000946,-0.05315695980434353 +107202,536.0100000000947,-0.05315671423402596 +107203,536.0150000000948,-0.05315646859581261 +107204,536.0200000000949,-0.05315622288966607 +107205,536.025000000095,-0.05315597711554882 +107206,536.0300000000951,-0.05315573127342337 +107207,536.0350000000952,-0.05315548536325218 +107208,536.0400000000953,-0.053155239384997686 +107209,536.0450000000955,-0.05315499333862228 +107210,536.0500000000956,-0.05315474722408834 +107211,536.0550000000957,-0.05315450104135823 +107212,536.0600000000958,-0.05315425479039425 +107213,536.0650000000959,-0.05315400847115869 +107214,536.070000000096,-0.05315376208361383 +107215,536.0750000000961,-0.05315351562772187 +107216,536.0800000000962,-0.05315326910344504 +107217,536.0850000000963,-0.0531530225107455 +107218,536.0900000000964,-0.053152775849585394 +107219,536.0950000000965,-0.05315252911992684 +107220,536.1000000000967,-0.053152282321731935 +107221,536.1050000000968,-0.053152035454962714 +107222,536.1100000000969,-0.05315178851958123 +107223,536.115000000097,-0.05315154151554947 +107224,536.1200000000971,-0.0531512944428294 +107225,536.1250000000972,-0.05315104730138296 +107226,536.1300000000973,-0.05315080009117206 +107227,536.1350000000974,-0.053150552812158594 +107228,536.1400000000975,-0.053150305464304395 +107229,536.1450000000976,-0.05315005804757131 +107230,536.1500000000977,-0.05314981056192111 +107231,536.1550000000979,-0.05314956300731558 +107232,536.160000000098,-0.05314931538371644 +107233,536.1650000000981,-0.053149067691085405 +107234,536.1700000000982,-0.05314881992938416 +107235,536.1750000000983,-0.053148572098574334 +107236,536.1800000000984,-0.05314832419861754 +107237,536.1850000000985,-0.05314807622947539 +107238,536.1900000000986,-0.05314782819110943 +107239,536.1950000000987,-0.05314758008348117 +107240,536.2000000000988,-0.05314733190655214 +107241,536.205000000099,-0.0531470836602838 +107242,536.2100000000991,-0.053146835344637565 +107243,536.2150000000992,-0.053146586959574874 +107244,536.2200000000993,-0.0531463385050571 +107245,536.2250000000994,-0.05314608998104559 +107246,536.2300000000995,-0.05314584138750166 +107247,536.2350000000996,-0.053145592724386605 +107248,536.2400000000997,-0.05314534399166169 +107249,536.2450000000998,-0.053145095189288144 +107250,536.2500000000999,-0.053144846317227164 +107251,536.2550000001,-0.05314459737543992 +107252,536.2600000001001,-0.053144348363887546 +107253,536.2650000001003,-0.05314409928253116 +107254,536.2700000001004,-0.05314385013133185 +107255,536.2750000001005,-0.05314360091025066 +107256,536.2800000001006,-0.05314335161924861 +107257,536.2850000001007,-0.05314310225828669 +107258,536.2900000001008,-0.05314285282732587 +107259,536.2950000001009,-0.053142603326327066 +107260,536.300000000101,-0.05314235375525118 +107261,536.3050000001011,-0.053142104114059084 +107262,536.3100000001012,-0.053141854402711616 +107263,536.3150000001013,-0.05314160462116959 +107264,536.3200000001015,-0.05314135476939379 +107265,536.3250000001016,-0.05314110484734493 +107266,536.3300000001017,-0.05314085485498377 +107267,536.3350000001018,-0.05314060479227098 +107268,536.3400000001019,-0.053140354659167215 +107269,536.345000000102,-0.053140104455633094 +107270,536.3500000001021,-0.05313985418162922 +107271,536.3550000001022,-0.05313960383711617 +107272,536.3600000001023,-0.053139353422054454 +107273,536.3650000001024,-0.0531391029364046 +107274,536.3700000001026,-0.05313885238012706 +107275,536.3750000001027,-0.0531386017531823 +107276,536.3800000001028,-0.05313835105553072 +107277,536.3850000001029,-0.053138100287132686 +107278,536.390000000103,-0.05313784944794857 +107279,536.3950000001031,-0.05313759853793869 +107280,536.4000000001032,-0.05313734755706331 +107281,536.4050000001033,-0.05313709650528271 +107282,536.4100000001034,-0.05313684538255711 +107283,536.4150000001035,-0.05313659418884672 +107284,536.4200000001036,-0.053136342924111686 +107285,536.4250000001038,-0.05313609158831216 +107286,536.4300000001039,-0.05313584018140821 +107287,536.435000000104,-0.053135588703359944 +107288,536.4400000001041,-0.05313533715412738 +107289,536.4450000001042,-0.05313508553367055 +107290,536.4500000001043,-0.05313483384194942 +107291,536.4550000001044,-0.05313458207892393 +107292,536.4600000001045,-0.05313433024455401 +107293,536.4650000001046,-0.053134078338799524 +107294,536.4700000001047,-0.053133826361620354 +107295,536.4750000001048,-0.053133574312976294 +107296,536.480000000105,-0.053133322192827154 +107297,536.4850000001051,-0.05313307000113268 +107298,536.4900000001052,-0.05313281773785262 +107299,536.4950000001053,-0.053132565402946655 +107300,536.5000000001054,-0.053132312996374456 +107301,536.5050000001055,-0.053132060518095645 +107302,536.5100000001056,-0.053131807968069836 +107303,536.5150000001057,-0.053131555346256604 +107304,536.5200000001058,-0.053131302652615474 +107305,536.5250000001059,-0.05313104988710596 +107306,536.530000000106,-0.053130797049687546 +107307,536.5350000001062,-0.05313054414031966 +107308,536.5400000001063,-0.053130291158961715 +107309,536.5450000001064,-0.05313003810557311 +107310,536.5500000001065,-0.05312978498011317 +107311,536.5550000001066,-0.053129531782541234 +107312,536.5600000001067,-0.05312927851281657 +107313,536.5650000001068,-0.053129025170898445 +107314,536.5700000001069,-0.05312877175674606 +107315,536.575000000107,-0.05312851827031862 +107316,536.5800000001071,-0.053128264711575286 +107317,536.5850000001072,-0.05312801108047518 +107318,536.5900000001074,-0.053127757376977384 +107319,536.5950000001075,-0.05312750360104097 +107320,536.6000000001076,-0.05312724975262498 +107321,536.6050000001077,-0.053126995831688374 +107322,536.6100000001078,-0.053126741838190154 +107323,536.6150000001079,-0.05312648777208923 +107324,536.620000000108,-0.05312623363334451 +107325,536.6250000001081,-0.05312597942191486 +107326,536.6300000001082,-0.05312572513775912 +107327,536.6350000001083,-0.0531254707808361 +107328,536.6400000001084,-0.05312521635110456 +107329,536.6450000001086,-0.05312496184852323 +107330,536.6500000001087,-0.05312470727305083 +107331,536.6550000001088,-0.05312445262464604 +107332,536.6600000001089,-0.05312419790326749 +107333,536.665000000109,-0.05312394310887379 +107334,536.6700000001091,-0.05312368824142352 +107335,536.6750000001092,-0.05312343330087522 +107336,536.6800000001093,-0.0531231782871874 +107337,536.6850000001094,-0.05312292320031854 +107338,536.6900000001095,-0.05312266804022708 +107339,536.6950000001096,-0.05312241280687145 +107340,536.7000000001098,-0.05312215750021002 +107341,536.7050000001099,-0.053121902120201146 +107342,536.71000000011,-0.053121646666803114 +107343,536.7150000001101,-0.05312139113997424 +107344,536.7200000001102,-0.05312113553967275 +107345,536.7250000001103,-0.05312087986585688 +107346,536.7300000001104,-0.0531206241184848 +107347,536.7350000001105,-0.05312036829751466 +107348,536.7400000001106,-0.05312011240290458 +107349,536.7450000001107,-0.053119856434612645 +107350,536.7500000001108,-0.053119600392596895 +107351,536.755000000111,-0.053119344276815354 +107352,536.7600000001111,-0.05311908808722602 +107353,536.7650000001112,-0.053118831823786836 +107354,536.7700000001113,-0.05311857548645571 +107355,536.7750000001114,-0.053118319075190545 +107356,536.7800000001115,-0.05311806258994918 +107357,536.7850000001116,-0.05311780603068943 +107358,536.7900000001117,-0.053117549397369075 +107359,536.7950000001118,-0.05311729268994589 +107360,536.8000000001119,-0.053117035908377574 +107361,536.805000000112,-0.053116779052621826 +107362,536.8100000001122,-0.05311652212263628 +107363,536.8150000001123,-0.05311626511837858 +107364,536.8200000001124,-0.053116008039806276 +107365,536.8250000001125,-0.053115750886876936 +107366,536.8300000001126,-0.053115493659548096 +107367,536.8350000001127,-0.05311523635777721 +107368,536.8400000001128,-0.05311497898152173 +107369,536.8450000001129,-0.05311472153073909 +107370,536.850000000113,-0.05311446400538665 +107371,536.8550000001131,-0.053114206405421784 +107372,536.8600000001132,-0.05311394873080178 +107373,536.8650000001134,-0.05311369098148394 +107374,536.8700000001135,-0.05311343315742549 +107375,536.8750000001136,-0.05311317525858367 +107376,536.8800000001137,-0.05311291728491563 +107377,536.8850000001138,-0.05311265923637852 +107378,536.8900000001139,-0.05311240111292946 +107379,536.895000000114,-0.05311214291452553 +107380,536.9000000001141,-0.053111884641123784 +107381,536.9050000001142,-0.053111626292681194 +107382,536.9100000001143,-0.05311136786915476 +107383,536.9150000001144,-0.053111109370501425 +107384,536.9200000001146,-0.05311085079667808 +107385,536.9250000001147,-0.0531105921476416 +107386,536.9300000001148,-0.053110333423348824 +107387,536.9350000001149,-0.05311007462375656 +107388,536.940000000115,-0.05310981574882158 +107389,536.9450000001151,-0.053109556798500594 +107390,536.9500000001152,-0.05310929777275032 +107391,536.9550000001153,-0.05310903867152743 +107392,536.9600000001154,-0.05310877949478854 +107393,536.9650000001155,-0.05310852024249024 +107394,536.9700000001156,-0.05310826091458911 +107395,536.9750000001158,-0.05310800151104166 +107396,536.9800000001159,-0.053107742031804406 +107397,536.985000000116,-0.05310748247683378 +107398,536.9900000001161,-0.05310722284608622 +107399,536.9950000001162,-0.0531069631395181 +107400,537.0000000001163,-0.05310670335708579 +107401,537.0050000001164,-0.053106443498745604 +107402,537.0100000001165,-0.05310618356445382 +107403,537.0150000001166,-0.05310592355416668 +107404,537.0200000001167,-0.05310566346784042 +107405,537.0250000001168,-0.0531054033054312 +107406,537.030000000117,-0.05310514306689516 +107407,537.0350000001171,-0.053104882752188415 +107408,537.0400000001172,-0.05310462236126705 +107409,537.0450000001173,-0.05310436189408708 +107410,537.0500000001174,-0.053104101350604525 +107411,537.0550000001175,-0.05310384073077535 +107412,537.0600000001176,-0.05310358003455548 +107413,537.0650000001177,-0.05310331926190081 +107414,537.0700000001178,-0.05310305841276721 +107415,537.0750000001179,-0.05310279748711051 +107416,537.080000000118,-0.0531025364848865 +107417,537.0850000001182,-0.05310227540605093 +107418,537.0900000001183,-0.053102014250559534 +107419,537.0950000001184,-0.053101753018367975 +107420,537.1000000001185,-0.05310149170943191 +107421,537.1050000001186,-0.053101230323706956 +107422,537.1100000001187,-0.0531009688611487 +107423,537.1150000001188,-0.053100707321712674 +107424,537.1200000001189,-0.05310044570535439 +107425,537.125000000119,-0.0531001840120293 +107426,537.1300000001191,-0.05309992224169287 +107427,537.1350000001192,-0.053099660394300474 +107428,537.1400000001194,-0.0530993984698075 +107429,537.1450000001195,-0.05309913646816925 +107430,537.1500000001196,-0.053098874389341036 +107431,537.1550000001197,-0.0530986122332781 +107432,537.1600000001198,-0.05309834999993568 +107433,537.1650000001199,-0.053098087689268936 +107434,537.17000000012,-0.05309782530123303 +107435,537.1750000001201,-0.05309756283578307 +107436,537.1800000001202,-0.05309730029287414 +107437,537.1850000001203,-0.05309703767246127 +107438,537.1900000001204,-0.05309677497449947 +107439,537.1950000001206,-0.0530965121989437 +107440,537.2000000001207,-0.0530962493457489 +107441,537.2050000001208,-0.053095986414869956 +107442,537.2100000001209,-0.05309572340626173 +107443,537.215000000121,-0.05309546031987904 +107444,537.2200000001211,-0.05309519715567669 +107445,537.2250000001212,-0.05309493391360939 +107446,537.2300000001213,-0.053094670593631904 +107447,537.2350000001214,-0.05309440719569888 +107448,537.2400000001215,-0.053094143719764945 +107449,537.2450000001216,-0.05309388016578473 +107450,537.2500000001218,-0.05309361653371278 +107451,537.2550000001219,-0.05309335282350362 +107452,537.260000000122,-0.053093089035111764 +107453,537.2650000001221,-0.05309282516849166 +107454,537.2700000001222,-0.05309256122359773 +107455,537.2750000001223,-0.05309229720038434 +107456,537.2800000001224,-0.053092033098805856 +107457,537.2850000001225,-0.05309176891881658 +107458,537.2900000001226,-0.05309150466037079 +107459,537.2950000001227,-0.053091240323422696 +107460,537.3000000001228,-0.053090975907926524 +107461,537.305000000123,-0.053090711413836415 +107462,537.3100000001231,-0.053090446841106496 +107463,537.3150000001232,-0.05309018218969087 +107464,537.3200000001233,-0.05308991745954357 +107465,537.3250000001234,-0.053089652650618616 +107466,537.3300000001235,-0.05308938776286998 +107467,537.3350000001236,-0.05308912279625159 +107468,537.3400000001237,-0.05308885775071735 +107469,537.3450000001238,-0.05308859262622114 +107470,537.3500000001239,-0.053088327422716776 +107471,537.355000000124,-0.05308806214015803 +107472,537.3600000001242,-0.053087796778498675 +107473,537.3650000001243,-0.053087531337692395 +107474,537.3700000001244,-0.053087265817692894 +107475,537.3750000001245,-0.05308700021845381 +107476,537.3800000001246,-0.05308673453992873 +107477,537.3850000001247,-0.05308646878207121 +107478,537.3900000001248,-0.05308620294483478 +107479,537.3950000001249,-0.053085937028172936 +107480,537.400000000125,-0.05308567103203913 +107481,537.4050000001251,-0.05308540495638676 +107482,537.4100000001253,-0.0530851388011692 +107483,537.4150000001254,-0.053084872566339786 +107484,537.4200000001255,-0.053084606251851824 +107485,537.4250000001256,-0.05308433985765856 +107486,537.4300000001257,-0.05308407338371323 +107487,537.4350000001258,-0.05308380682996902 +107488,537.4400000001259,-0.053083540196379064 +107489,537.445000000126,-0.05308327348289646 +107490,537.4500000001261,-0.053083006689474306 +107491,537.4550000001262,-0.0530827398160656 +107492,537.4600000001263,-0.053082472862623346 +107493,537.4650000001265,-0.05308220582910052 +107494,537.4700000001266,-0.05308193871545001 +107495,537.4750000001267,-0.0530816715216247 +107496,537.4800000001268,-0.053081404247577436 +107497,537.4850000001269,-0.05308113689326102 +107498,537.490000000127,-0.0530808694586282 +107499,537.4950000001271,-0.053080601943631706 +107500,537.5000000001272,-0.05308033434822423 +107501,537.5050000001273,-0.0530800666723584 +107502,537.5100000001274,-0.053079798915986846 +107503,537.5150000001275,-0.05307953107906211 +107504,537.5200000001277,-0.053079263161536744 +107505,537.5250000001278,-0.05307899516336323 +107506,537.5300000001279,-0.05307872708449402 +107507,537.535000000128,-0.053078458924881534 +107508,537.5400000001281,-0.053078190684478145 +107509,537.5450000001282,-0.053077922363236184 +107510,537.5500000001283,-0.05307765396110796 +107511,537.5550000001284,-0.05307738547804571 +107512,537.5600000001285,-0.05307711691400167 +107513,537.5650000001286,-0.05307684826892801 +107514,537.5700000001287,-0.05307657954277686 +107515,537.5750000001289,-0.05307631073550033 +107516,537.580000000129,-0.05307604184705049 +107517,537.5850000001291,-0.053075772877379364 +107518,537.5900000001292,-0.05307550382643892 +107519,537.5950000001293,-0.05307523469418111 +107520,537.6000000001294,-0.05307496548055784 +107521,537.6050000001295,-0.053074696185520964 +107522,537.6100000001296,-0.05307442680902233 +107523,537.6150000001297,-0.053074157351013694 +107524,537.6200000001298,-0.05307388781144683 +107525,537.62500000013,-0.053073618190273425 +107526,537.63000000013,-0.053073348487445146 +107527,537.6350000001302,-0.05307307870291363 +107528,537.6400000001303,-0.05307280883663047 +107529,537.6450000001304,-0.053072538888547204 +107530,537.6500000001305,-0.05307226885861533 +107531,537.6550000001306,-0.053071998746786336 +107532,537.6600000001307,-0.05307172855301164 +107533,537.6650000001308,-0.05307145827724263 +107534,537.6700000001309,-0.05307118791943064 +107535,537.675000000131,-0.053070917479527 +107536,537.6800000001311,-0.05307064695748297 +107537,537.6850000001313,-0.05307037635324977 +107538,537.6900000001314,-0.053070105666778604 +107539,537.6950000001315,-0.053069834898020606 +107540,537.7000000001316,-0.053069564046926886 +107541,537.7050000001317,-0.053069293113448525 +107542,537.7100000001318,-0.053069022097536535 +107543,537.7150000001319,-0.0530687509991419 +107544,537.720000000132,-0.053068479818215566 +107545,537.7250000001321,-0.05306820855470845 +107546,537.7300000001322,-0.053067937208571406 +107547,537.7350000001323,-0.05306766577975526 +107548,537.7400000001325,-0.05306739426821079 +107549,537.7450000001326,-0.053067122673888745 +107550,537.7500000001327,-0.053066850996739835 +107551,537.7550000001328,-0.053066579236714706 +107552,537.7600000001329,-0.053066307393763994 +107553,537.765000000133,-0.053066035467838266 +107554,537.7700000001331,-0.053065763458888075 +107555,537.7750000001332,-0.053065491366863914 +107556,537.7800000001333,-0.05306521919171622 +107557,537.7850000001334,-0.053064946933395446 +107558,537.7900000001335,-0.05306467459185194 +107559,537.7950000001337,-0.053064402167036034 +107560,537.8000000001338,-0.05306412965889804 +107561,537.8050000001339,-0.0530638570673882 +107562,537.810000000134,-0.05306358439245672 +107563,537.8150000001341,-0.05306331163405378 +107564,537.8200000001342,-0.05306303879212951 +107565,537.8250000001343,-0.053062765866633985 +107566,537.8300000001344,-0.053062492857517254 +107567,537.8350000001345,-0.05306221976472932 +107568,537.8400000001346,-0.05306194658822015 +107569,537.8450000001347,-0.05306167332793967 +107570,537.8500000001349,-0.05306139998383775 +107571,537.855000000135,-0.05306112655586422 +107572,537.8600000001351,-0.05306085304396889 +107573,537.8650000001352,-0.053060579448101525 +107574,537.8700000001353,-0.05306030576821182 +107575,537.8750000001354,-0.05306003200424945 +107576,537.8800000001355,-0.05305975815616404 +107577,537.8850000001356,-0.05305948422390519 +107578,537.8900000001357,-0.05305921020742242 +107579,537.8950000001358,-0.053058936106665275 +107580,537.900000000136,-0.053058661921583185 +107581,537.905000000136,-0.053058387652125574 +107582,537.9100000001362,-0.053058113298241824 +107583,537.9150000001363,-0.05305783885988126 +107584,537.9200000001364,-0.0530575643369932 +107585,537.9250000001365,-0.05305728972952687 +107586,537.9300000001366,-0.05305701503743149 +107587,537.9350000001367,-0.05305674026065622 +107588,537.9400000001368,-0.05305646539915018 +107589,537.9450000001369,-0.05305619045286248 +107590,537.950000000137,-0.05305591542174213 +107591,537.9550000001371,-0.05305564030573814 +107592,537.9600000001373,-0.05305536510479945 +107593,537.9650000001374,-0.05305508981887499 +107594,537.9700000001375,-0.053054814447913615 +107595,537.9750000001376,-0.05305453899186415 +107596,537.9800000001377,-0.0530542634506754 +107597,537.9850000001378,-0.05305398782429607 +107598,537.9900000001379,-0.053053712112674886 +107599,537.995000000138,-0.05305343631576051 +107600,538.0000000001381,-0.053053160433501535 +107601,538.0050000001382,-0.05305288446584653 +107602,538.0100000001383,-0.05305260841274402 +107603,538.0150000001385,-0.0530523322741425 +107604,538.0200000001386,-0.0530520560499904 +107605,538.0250000001387,-0.05305177974023613 +107606,538.0300000001388,-0.053051503344828034 +107607,538.0350000001389,-0.05305122686371442 +107608,538.040000000139,-0.053050950296843556 +107609,538.0450000001391,-0.053050673644163666 +107610,538.0500000001392,-0.053050396905622944 +107611,538.0550000001393,-0.05305012008116951 +107612,538.0600000001394,-0.053049843170751475 +107613,538.0650000001395,-0.053049566174316866 +107614,538.0700000001397,-0.05304928909181371 +107615,538.0750000001398,-0.053049011923189955 +107616,538.0800000001399,-0.053048734668393535 +107617,538.08500000014,-0.05304845732737232 +107618,538.0900000001401,-0.053048179900074134 +107619,538.0950000001402,-0.05304790238644678 +107620,538.1000000001403,-0.05304762478643799 +107621,538.1050000001404,-0.053047347099995465 +107622,538.1100000001405,-0.05304706932706687 +107623,538.1150000001406,-0.0530467914675998 +107624,538.1200000001407,-0.053046513521541855 +107625,538.1250000001409,-0.05304623548884054 +107626,538.130000000141,-0.05304595736944333 +107627,538.1350000001411,-0.053045679163297665 +107628,538.1400000001412,-0.053045400870350944 +107629,538.1450000001413,-0.05304512249055051 +107630,538.1500000001414,-0.053044844023843664 +107631,538.1550000001415,-0.053044565470177676 +107632,538.1600000001416,-0.05304428682949976 +107633,538.1650000001417,-0.05304400810175706 +107634,538.1700000001418,-0.05304372928689673 +107635,538.175000000142,-0.05304345038486585 +107636,538.1800000001421,-0.05304317139561144 +107637,538.1850000001422,-0.05304289231908049 +107638,538.1900000001423,-0.053042613155219985 +107639,538.1950000001424,-0.053042333903976786 +107640,538.2000000001425,-0.053042054565297765 +107641,538.2050000001426,-0.05304177513912974 +107642,538.2100000001427,-0.053041495625419474 +107643,538.2150000001428,-0.05304121602411368 +107644,538.2200000001429,-0.053040936335159064 +107645,538.225000000143,-0.053040656558502236 +107646,538.2300000001431,-0.053040376694089786 +107647,538.2350000001433,-0.05304009674186827 +107648,538.2400000001434,-0.05303981670178416 +107649,538.2450000001435,-0.053039536573783935 +107650,538.2500000001436,-0.053039256357814 +107651,538.2550000001437,-0.053038976053820706 +107652,538.2600000001438,-0.05303869566175037 +107653,538.2650000001439,-0.05303841518154927 +107654,538.270000000144,-0.053038134613163625 +107655,538.2750000001441,-0.05303785395653961 +107656,538.2800000001442,-0.05303757321162337 +107657,538.2850000001444,-0.053037292378361 +107658,538.2900000001445,-0.053037011456698535 +107659,538.2950000001446,-0.05303673044658197 +107660,538.3000000001447,-0.05303644934795726 +107661,538.3050000001448,-0.0530361681607703 +107662,538.3100000001449,-0.05303588688496697 +107663,538.315000000145,-0.05303560552049308 +107664,538.3200000001451,-0.05303532406729439 +107665,538.3250000001452,-0.053035042525316614 +107666,538.3300000001453,-0.05303476089450544 +107667,538.3350000001454,-0.053034479174806505 +107668,538.3400000001456,-0.05303419736616539 +107669,538.3450000001457,-0.05303391546852763 +107670,538.3500000001458,-0.05303363348183869 +107671,538.3550000001459,-0.053033351406044066 +107672,538.360000000146,-0.05303306924108911 +107673,538.3650000001461,-0.053032786986919205 +107674,538.3700000001462,-0.05303250464347964 +107675,538.3750000001463,-0.05303222221071569 +107676,538.3800000001464,-0.05303193968857255 +107677,538.3850000001465,-0.0530316570769954 +107678,538.3900000001466,-0.05303137437592935 +107679,538.3950000001468,-0.053031091585319476 +107680,538.4000000001469,-0.0530308087051108 +107681,538.405000000147,-0.0530305257352483 +107682,538.4100000001471,-0.05303024267567693 +107683,538.4150000001472,-0.053029959526341555 +107684,538.4200000001473,-0.053029676287187015 +107685,538.4250000001474,-0.053029392958158096 +107686,538.4300000001475,-0.053029109539199565 +107687,538.4350000001476,-0.0530288260302561 +107688,538.4400000001477,-0.053028542431272356 +107689,538.4450000001478,-0.053028258742192934 +107690,538.450000000148,-0.05302797496296239 +107691,538.4550000001481,-0.053027691093525224 +107692,538.4600000001482,-0.05302740713382591 +107693,538.4650000001483,-0.053027123083808844 +107694,538.4700000001484,-0.05302683894341841 +107695,538.4750000001485,-0.05302655471259892 +107696,538.4800000001486,-0.053026270391294664 +107697,538.4850000001487,-0.05302598597944983 +107698,538.4900000001488,-0.053025701477008615 +107699,538.4950000001489,-0.05302541688391513 +107700,538.500000000149,-0.05302513220011346 +107701,538.5050000001492,-0.05302484742554765 +107702,538.5100000001493,-0.05302456256016167 +107703,538.5150000001494,-0.05302427760389947 +107704,538.5200000001495,-0.053023992556704924 +107705,538.5250000001496,-0.05302370741852188 +107706,538.5300000001497,-0.05302342218929412 +107707,538.5350000001498,-0.05302313686896541 +107708,538.5400000001499,-0.05302285145747942 +107709,538.54500000015,-0.05302256595477981 +107710,538.5500000001501,-0.05302228036081017 +107711,538.5550000001502,-0.053021994675514064 +107712,538.5600000001504,-0.053021708898834986 +107713,538.5650000001505,-0.05302142303071638 +107714,538.5700000001506,-0.05302113707110166 +107715,538.5750000001507,-0.05302085101993419 +107716,538.5800000001508,-0.053020564877157256 +107717,538.5850000001509,-0.05302027864271415 +107718,538.590000000151,-0.053019992316548054 +107719,538.5950000001511,-0.053019705898602144 +107720,538.6000000001512,-0.053019419388819516 +107721,538.6050000001513,-0.05301913278714325 +107722,538.6100000001514,-0.05301884609351635 +107723,538.6150000001516,-0.05301855930788179 +107724,538.6200000001517,-0.05301827243018248 +107725,538.6250000001518,-0.05301798546036129 +107726,538.6300000001519,-0.053017698398361034 +107727,538.635000000152,-0.05301741124412449 +107728,538.6400000001521,-0.05301712399759437 +107729,538.6450000001522,-0.053016836658713345 +107730,538.6500000001523,-0.053016549227424034 +107731,538.6550000001524,-0.05301626170366902 +107732,538.6600000001525,-0.05301597408739082 +107733,538.6650000001526,-0.0530156863785319 +107734,538.6700000001528,-0.053015398577034675 +107735,538.6750000001529,-0.05301511068284154 +107736,538.680000000153,-0.053014822695894796 +107737,538.6850000001531,-0.05301453461613673 +107738,538.6900000001532,-0.05301424644350956 +107739,538.6950000001533,-0.05301395817795548 +107740,538.7000000001534,-0.053013669819416576 +107741,538.7050000001535,-0.053013381367834955 +107742,538.7100000001536,-0.05301309282315262 +107743,538.7150000001537,-0.05301280418531154 +107744,538.7200000001538,-0.05301251545425366 +107745,538.725000000154,-0.05301222662992083 +107746,538.7300000001541,-0.05301193771225489 +107747,538.7350000001542,-0.053011648701197615 +107748,538.7400000001543,-0.05301135959669071 +107749,538.7450000001544,-0.05301107039867586 +107750,538.7500000001545,-0.05301078110709469 +107751,538.7550000001546,-0.05301049172188876 +107752,538.7600000001547,-0.053010202242999585 +107753,538.7650000001548,-0.053009912670368635 +107754,538.7700000001549,-0.05300962300393735 +107755,538.775000000155,-0.05300933324364708 +107756,538.7800000001552,-0.053009043389439146 +107757,538.7850000001553,-0.053008753441254795 +107758,538.7900000001554,-0.05300846339903527 +107759,538.7950000001555,-0.05300817326272171 +107760,538.8000000001556,-0.05300788303225525 +107761,538.8050000001557,-0.05300759270757695 +107762,538.8100000001558,-0.053007302288627815 +107763,538.8150000001559,-0.0530070117753488 +107764,538.820000000156,-0.053006721167680806 +107765,538.8250000001561,-0.053006430465564705 +107766,538.8300000001562,-0.053006139668941306 +107767,538.8350000001564,-0.053005848777751344 +107768,538.8400000001565,-0.05300555779193552 +107769,538.8450000001566,-0.053005266711434504 +107770,538.8500000001567,-0.05300497553618888 +107771,538.8550000001568,-0.0530046842661392 +107772,538.8600000001569,-0.05300439290122596 +107773,538.865000000157,-0.053004101441389596 +107774,538.8700000001571,-0.05300380988657051 +107775,538.8750000001572,-0.05300351823670904 +107776,538.8800000001573,-0.05300322649174548 +107777,538.8850000001574,-0.05300293465162005 +107778,538.8900000001576,-0.053002642716272946 +107779,538.8950000001577,-0.05300235068564429 +107780,538.9000000001578,-0.05300205855967415 +107781,538.9050000001579,-0.053001766338302586 +107782,538.910000000158,-0.05300147402146955 +107783,538.9150000001581,-0.05300118160911497 +107784,538.9200000001582,-0.053000889101178714 +107785,538.9250000001583,-0.0530005964976006 +107786,538.9300000001584,-0.05300030379832039 +107787,538.9350000001585,-0.053000011003277794 +107788,538.9400000001586,-0.05299971811241248 +107789,538.9450000001588,-0.052999425125664044 +107790,538.9500000001589,-0.052999132042972054 +107791,538.955000000159,-0.052998838864276 +107792,538.9600000001591,-0.05299854558951532 +107793,538.9650000001592,-0.052998252218629416 +107794,538.9700000001593,-0.05299795875155765 +107795,538.9750000001594,-0.052997665188239285 +107796,538.9800000001595,-0.05299737152861357 +107797,538.9850000001596,-0.05299707777261968 +107798,538.9900000001597,-0.05299678392019675 +107799,538.9950000001598,-0.05299648997128385 +107800,539.00000000016,-0.05299619592582001 +107801,539.0050000001601,-0.05299590178374417 +107802,539.0100000001602,-0.052995607544995285 +107803,539.0150000001603,-0.052995313209512195 +107804,539.0200000001604,-0.05299501877723371 +107805,539.0250000001605,-0.05299472424809859 +107806,539.0300000001606,-0.05299442962204553 +107807,539.0350000001607,-0.052994134899013175 +107808,539.0400000001608,-0.052993840078940126 +107809,539.0450000001609,-0.05299354516176492 +107810,539.050000000161,-0.05299325014742603 +107811,539.0550000001612,-0.0529929550358619 +107812,539.0600000001613,-0.052992659827010895 +107813,539.0650000001614,-0.05299236452081135 +107814,539.0700000001615,-0.05299206911720152 +107815,539.0750000001616,-0.05299177361611963 +107816,539.0800000001617,-0.05299147801750384 +107817,539.0850000001618,-0.05299118232129224 +107818,539.0900000001619,-0.05299088652742289 +107819,539.095000000162,-0.052990590635833786 +107820,539.1000000001621,-0.05299029464646287 +107821,539.1050000001622,-0.052989998559248026 +107822,539.1100000001624,-0.052989702374127076 +107823,539.1150000001625,-0.052989406091037826 +107824,539.1200000001626,-0.05298910970991797 +107825,539.1250000001627,-0.05298881323070518 +107826,539.1300000001628,-0.05298851665333707 +107827,539.1350000001629,-0.0529882199777512 +107828,539.140000000163,-0.052987923203885075 +107829,539.1450000001631,-0.05298762633167613 +107830,539.1500000001632,-0.05298732936106177 +107831,539.1550000001633,-0.05298703229197932 +107832,539.1600000001634,-0.052986735124366066 +107833,539.1650000001636,-0.052986437858159235 +107834,539.1700000001637,-0.052986140493295995 +107835,539.1750000001638,-0.05298584302971345 +107836,539.1800000001639,-0.052985545467348676 +107837,539.185000000164,-0.05298524780613866 +107838,539.1900000001641,-0.05298495004602036 +107839,539.1950000001642,-0.05298465218693066 +107840,539.2000000001643,-0.05298435422880641 +107841,539.2050000001644,-0.05298405617158437 +107842,539.2100000001645,-0.05298375801520128 +107843,539.2150000001647,-0.05298345975959379 +107844,539.2200000001648,-0.05298316140469852 +107845,539.2250000001649,-0.052982862950452035 +107846,539.230000000165,-0.05298256439679082 +107847,539.2350000001651,-0.05298226574365133 +107848,539.2400000001652,-0.052981966990969936 +107849,539.2450000001653,-0.05298166813868298 +107850,539.2500000001654,-0.052981369186726725 +107851,539.2550000001655,-0.05298107013503739 +107852,539.2600000001656,-0.05298077098355114 +107853,539.2650000001657,-0.05298047173220407 +107854,539.2700000001659,-0.05298017238093223 +107855,539.275000000166,-0.052979872929671615 +107856,539.2800000001661,-0.05297957337835815 +107857,539.2850000001662,-0.05297927372692772 +107858,539.2900000001663,-0.05297897397531614 +107859,539.2950000001664,-0.052978674123459156 +107860,539.3000000001665,-0.0529783741712925 +107861,539.3050000001666,-0.05297807411875179 +107862,539.3100000001667,-0.05297777396577264 +107863,539.3150000001668,-0.05297747371229058 +107864,539.3200000001669,-0.052977173358241064 +107865,539.325000000167,-0.05297687290355953 +107866,539.3300000001672,-0.052976572348181324 +107867,539.3350000001673,-0.05297627169204176 +107868,539.3400000001674,-0.052975970935076076 +107869,539.3450000001675,-0.05297567007721946 +107870,539.3500000001676,-0.05297536911840704 +107871,539.3550000001677,-0.052975068058573896 +107872,539.3600000001678,-0.05297476689765503 +107873,539.3650000001679,-0.0529744656355854 +107874,539.370000000168,-0.052974164272299916 +107875,539.3750000001681,-0.0529738628077334 +107876,539.3800000001683,-0.052973561241820635 +107877,539.3850000001684,-0.05297325957449634 +107878,539.3900000001685,-0.05297295780569519 +107879,539.3950000001686,-0.05297265593535178 +107880,539.4000000001687,-0.052972353963400665 +107881,539.4050000001688,-0.05297205188977634 +107882,539.4100000001689,-0.05297174971441322 +107883,539.415000000169,-0.05297144743724569 +107884,539.4200000001691,-0.052971145058208054 +107885,539.4250000001692,-0.05297084257723456 +107886,539.4300000001693,-0.052970539994259415 +107887,539.4350000001695,-0.052970237309216746 +107888,539.4400000001696,-0.05296993452204063 +107889,539.4450000001697,-0.0529696316326651 +107890,539.4500000001698,-0.05296932864102409 +107891,539.4550000001699,-0.05296902554705153 +107892,539.46000000017,-0.05296872235068124 +107893,539.4650000001701,-0.052968419051846995 +107894,539.4700000001702,-0.05296811565048252 +107895,539.4750000001703,-0.052967812146521485 +107896,539.4800000001704,-0.052967508539897484 +107897,539.4850000001705,-0.05296720483054406 +107898,539.4900000001707,-0.052966901018394706 +107899,539.4950000001708,-0.05296659710338284 +107900,539.5000000001709,-0.05296629308544182 +107901,539.505000000171,-0.05296598896450496 +107902,539.5100000001711,-0.052965684740505496 +107903,539.5150000001712,-0.05296538041337661 +107904,539.5200000001713,-0.05296507598305142 +107905,539.5250000001714,-0.05296477144946299 +107906,539.5300000001715,-0.05296446681254433 +107907,539.5350000001716,-0.05296416207222838 +107908,539.5400000001717,-0.05296385722844802 +107909,539.5450000001719,-0.05296355228113608 +107910,539.550000000172,-0.05296324723022531 +107911,539.5550000001721,-0.05296294207564842 +107912,539.5600000001722,-0.052962636817338024 +107913,539.5650000001723,-0.05296233145522673 +107914,539.5700000001724,-0.052962025989247055 +107915,539.5750000001725,-0.05296172041933144 +107916,539.5800000001726,-0.052961414745412286 +107917,539.5850000001727,-0.052961108967421934 +107918,539.5900000001728,-0.052960803085292656 +107919,539.595000000173,-0.052960497098956665 +107920,539.600000000173,-0.052960191008346105 +107921,539.6050000001732,-0.052959884813393074 +107922,539.6100000001733,-0.052959578514029604 +107923,539.6150000001734,-0.05295927211018766 +107924,539.6200000001735,-0.052958965601799135 +107925,539.6250000001736,-0.05295865898879589 +107926,539.6300000001737,-0.05295835227110969 +107927,539.6350000001738,-0.05295804544867227 +107928,539.6400000001739,-0.05295773852141528 +107929,539.645000000174,-0.05295743148927033 +107930,539.6500000001741,-0.05295712435216895 +107931,539.6550000001743,-0.05295681711004261 +107932,539.6600000001744,-0.05295650976282272 +107933,539.6650000001745,-0.05295620231044063 +107934,539.6700000001746,-0.05295589475282763 +107935,539.6750000001747,-0.05295558708991494 +107936,539.6800000001748,-0.05295527932163373 +107937,539.6850000001749,-0.052954971447915083 +107938,539.690000000175,-0.05295466346869006 +107939,539.6950000001751,-0.05295435538388961 +107940,539.7000000001752,-0.05295404719344465 +107941,539.7050000001753,-0.052953738897286044 +107942,539.7100000001755,-0.05295343049534457 +107943,539.7150000001756,-0.05295312198755094 +107944,539.7200000001757,-0.05295281337383584 +107945,539.7250000001758,-0.05295250465412984 +107946,539.7300000001759,-0.05295219582836349 +107947,539.735000000176,-0.052951886896467244 +107948,539.7400000001761,-0.05295157785837154 +107949,539.7450000001762,-0.05295126871400669 +107950,539.7500000001763,-0.05295095946330299 +107951,539.7550000001764,-0.05295065010619065 +107952,539.7600000001765,-0.05295034064259984 +107953,539.7650000001767,-0.052950031072460636 +107954,539.7700000001768,-0.05294972139570305 +107955,539.7750000001769,-0.05294941161225708 +107956,539.780000000177,-0.052949101722052604 +107957,539.7850000001771,-0.05294879172501945 +107958,539.7900000001772,-0.052948481621087395 +107959,539.7950000001773,-0.05294817141018615 +107960,539.8000000001774,-0.05294786109224536 +107961,539.8050000001775,-0.052947550667194594 +107962,539.8100000001776,-0.052947240134963366 +107963,539.8150000001777,-0.05294692949548113 +107964,539.8200000001779,-0.05294661874867728 +107965,539.825000000178,-0.052946307894481126 +107966,539.8300000001781,-0.05294599693282191 +107967,539.8350000001782,-0.052945685863628855 +107968,539.8400000001783,-0.05294537468683106 +107969,539.8450000001784,-0.052945063402357606 +107970,539.8500000001785,-0.05294475201013748 +107971,539.8550000001786,-0.0529444405100996 +107972,539.8600000001787,-0.05294412890217285 +107973,539.8650000001788,-0.052943817186286025 +107974,539.870000000179,-0.052943505362367874 +107975,539.875000000179,-0.05294319343034705 +107976,539.8800000001792,-0.052942881390152165 +107977,539.8850000001793,-0.05294256924171177 +107978,539.8900000001794,-0.05294225698495431 +107979,539.8950000001795,-0.05294194461980822 +107980,539.9000000001796,-0.05294163214620186 +107981,539.9050000001797,-0.05294131956406346 +107982,539.9100000001798,-0.05294100687332126 +107983,539.9150000001799,-0.0529406940739034 +107984,539.92000000018,-0.05294038116573796 +107985,539.9250000001801,-0.05294006814875296 +107986,539.9300000001803,-0.052939755022876345 +107987,539.9350000001804,-0.05293944178803598 +107988,539.9400000001805,-0.05293912844415969 +107989,539.9450000001806,-0.05293881499117523 +107990,539.9500000001807,-0.05293850142901029 +107991,539.9550000001808,-0.05293818775759246 +107992,539.9600000001809,-0.052937873976849306 +107993,539.965000000181,-0.0529375600867083 +107994,539.9700000001811,-0.05293724608709688 +107995,539.9750000001812,-0.052936931977942366 +107996,539.9800000001813,-0.05293661775917205 +107997,539.9850000001815,-0.05293630343071316 +107998,539.9900000001816,-0.05293598899249283 +107999,539.9950000001817,-0.052935674444438134 +108000,540.0000000001818,-0.0529353597864761 +108001,540.0050000001819,-0.05293504501853366 +108002,540.010000000182,-0.0529347301405377 +108003,540.0150000001821,-0.05293441515241503 +108004,540.0200000001822,-0.052934100054092395 +108005,540.0250000001823,-0.05293378484549646 +108006,540.0300000001824,-0.05293346952655385 +108007,540.0350000001825,-0.05293315409719109 +108008,540.0400000001827,-0.05293283855733466 +108009,540.0450000001828,-0.05293252290691096 +108010,540.0500000001829,-0.05293220714584634 +108011,540.055000000183,-0.05293189127406704 +108012,540.0600000001831,-0.052931575291499285 +108013,540.0650000001832,-0.0529312591980692 +108014,540.0700000001833,-0.052930942993702844 +108015,540.0750000001834,-0.05293062667832621 +108016,540.0800000001835,-0.052930310251865224 +108017,540.0850000001836,-0.052929993714245754 +108018,540.0900000001837,-0.05292967706539358 +108019,540.0950000001839,-0.05292936030523441 +108020,540.100000000184,-0.05292904343369392 +108021,540.1050000001841,-0.05292872645069768 +108022,540.1100000001842,-0.0529284093561712 +108023,540.1150000001843,-0.05292809215003993 +108024,540.1200000001844,-0.052927774832229234 +108025,540.1250000001845,-0.052927457402664434 +108026,540.1300000001846,-0.05292713986127075 +108027,540.1350000001847,-0.052926822207973345 +108028,540.1400000001848,-0.052926504442697336 +108029,540.145000000185,-0.052926186565367746 +108030,540.1500000001851,-0.05292586857590952 +108031,540.1550000001852,-0.05292555047424756 +108032,540.1600000001853,-0.052925232260306675 +108033,540.1650000001854,-0.052924913934011615 +108034,540.1700000001855,-0.052924595495287066 +108035,540.1750000001856,-0.05292427694405762 +108036,540.1800000001857,-0.05292395828024783 +108037,540.1850000001858,-0.052923639503782156 +108038,540.1900000001859,-0.05292332061458501 +108039,540.195000000186,-0.05292300161258069 +108040,540.2000000001862,-0.052922682497693475 +108041,540.2050000001863,-0.05292236326984754 +108042,540.2100000001864,-0.052922043928967016 +108043,540.2150000001865,-0.05292172447497593 +108044,540.2200000001866,-0.052921404907798265 +108045,540.2250000001867,-0.05292108522735791 +108046,540.2300000001868,-0.05292076543357871 +108047,540.2350000001869,-0.05292044552638441 +108048,540.240000000187,-0.052920125505698724 +108049,540.2450000001871,-0.05291980537144525 +108050,540.2500000001872,-0.052919485123547536 +108051,540.2550000001874,-0.05291916476192905 +108052,540.2600000001875,-0.05291884428651322 +108053,540.2650000001876,-0.052918523697223364 +108054,540.2700000001877,-0.052918202993982734 +108055,540.2750000001878,-0.05291788217671453 +108056,540.2800000001879,-0.05291756124534186 +108057,540.285000000188,-0.052917240199787774 +108058,540.2900000001881,-0.052916919039975245 +108059,540.2950000001882,-0.05291659776582716 +108060,540.3000000001883,-0.05291627637726637 +108061,540.3050000001884,-0.05291595487421562 +108062,540.3100000001886,-0.05291563325659757 +108063,540.3150000001887,-0.05291531152433487 +108064,540.3200000001888,-0.052914989677350026 +108065,540.3250000001889,-0.052914667715565515 +108066,540.330000000189,-0.052914345638903744 +108067,540.3350000001891,-0.05291402344728701 +108068,540.3400000001892,-0.05291370114063757 +108069,540.3450000001893,-0.05291337871887759 +108070,540.3500000001894,-0.052913056181929194 +108071,540.3550000001895,-0.05291273352971437 +108072,540.3600000001896,-0.0529124107621551 +108073,540.3650000001898,-0.05291208787917327 +108074,540.3700000001899,-0.05291176488069067 +108075,540.37500000019,-0.05291144176662904 +108076,540.3800000001901,-0.05291111853691004 +108077,540.3850000001902,-0.05291079519145525 +108078,540.3900000001903,-0.052910471730186204 +108079,540.3950000001904,-0.052910148153024326 +108080,540.4000000001905,-0.052909824459890974 +108081,540.4050000001906,-0.052909500650707444 +108082,540.4100000001907,-0.052909176725394955 +108083,540.4150000001908,-0.052908852683874644 +108084,540.420000000191,-0.05290852852606759 +108085,540.4250000001911,-0.05290820425189476 +108086,540.4300000001912,-0.052907879861277096 +108087,540.4350000001913,-0.05290755535413544 +108088,540.4400000001914,-0.05290723073039055 +108089,540.4450000001915,-0.052906905989963136 +108090,540.4500000001916,-0.05290658113277381 +108091,540.4550000001917,-0.05290625615874312 +108092,540.4600000001918,-0.052905931067791526 +108093,540.4650000001919,-0.052905605859839444 +108094,540.470000000192,-0.05290528053480716 +108095,540.4750000001922,-0.05290495509261494 +108096,540.4800000001923,-0.05290462953318296 +108097,540.4850000001924,-0.05290430385643129 +108098,540.4900000001925,-0.05290397806227995 +108099,540.4950000001926,-0.0529036521506489 +108100,540.5000000001927,-0.05290332612145798 +108101,540.5050000001928,-0.05290299997462701 +108102,540.5100000001929,-0.052902673710075676 +108103,540.515000000193,-0.052902347327723635 +108104,540.5200000001931,-0.05290202082749043 +108105,540.5250000001932,-0.05290169420929557 +108106,540.5300000001934,-0.052901367473058444 +108107,540.5350000001935,-0.05290104061869839 +108108,540.5400000001936,-0.05290071364613466 +108109,540.5450000001937,-0.05290038655528645 +108110,540.5500000001938,-0.052900059346072836 +108111,540.5550000001939,-0.052899732018412866 +108112,540.560000000194,-0.05289940457222548 +108113,540.5650000001941,-0.05289907700742955 +108114,540.5700000001942,-0.052898749323943874 +108115,540.5750000001943,-0.05289842152168715 +108116,540.5800000001944,-0.05289809360057805 +108117,540.5850000001946,-0.052897765560535125 +108118,540.5900000001947,-0.052897437401476836 +108119,540.5950000001948,-0.052897109123321615 +108120,540.6000000001949,-0.05289678072598778 +108121,540.605000000195,-0.0528964522093936 +108122,540.6100000001951,-0.05289612357345723 +108123,540.6150000001952,-0.052895794818096774 +108124,540.6200000001953,-0.05289546594323025 +108125,540.6250000001954,-0.0528951369487756 +108126,540.6300000001955,-0.05289480783465068 +108127,540.6350000001956,-0.05289447860077329 +108128,540.6400000001958,-0.05289414924706111 +108129,540.6450000001959,-0.05289381977343177 +108130,540.650000000196,-0.05289349017980284 +108131,540.6550000001961,-0.05289316046609177 +108132,540.6600000001962,-0.05289283063221595 +108133,540.6650000001963,-0.05289250067809269 +108134,540.6700000001964,-0.05289217060363923 +108135,540.6750000001965,-0.052891840408772726 +108136,540.6800000001966,-0.05289151009341025 +108137,540.6850000001967,-0.052891179657468784 +108138,540.6900000001968,-0.05289084910086526 +108139,540.695000000197,-0.0528905184235165 +108140,540.7000000001971,-0.052890187625339265 +108141,540.7050000001972,-0.05288985670625023 +108142,540.7100000001973,-0.052889525666166 +108143,540.7150000001974,-0.052889194505003075 +108144,540.7200000001975,-0.0528888632226779 +108145,540.7250000001976,-0.052888531819106833 +108146,540.7300000001977,-0.052888200294206156 +108147,540.7350000001978,-0.052887868647892064 +108148,540.7400000001979,-0.05288753688008066 +108149,540.745000000198,-0.052887204990687976 +108150,540.7500000001982,-0.05288687297962998 +108151,540.7550000001983,-0.05288654084682256 +108152,540.7600000001984,-0.052886208592181475 +108153,540.7650000001985,-0.05288587621562245 +108154,540.7700000001986,-0.05288554371706111 +108155,540.7750000001987,-0.05288521109641303 +108156,540.7800000001988,-0.052884878353593665 +108157,540.7850000001989,-0.052884545488518384 +108158,540.790000000199,-0.05288421250110253 +108159,540.7950000001991,-0.05288387939126129 +108160,540.8000000001992,-0.052883546158909826 +108161,540.8050000001994,-0.052883212803963194 +108162,540.8100000001995,-0.05288287932633638 +108163,540.8150000001996,-0.05288254572594429 +108164,540.8200000001997,-0.052882212002701705 +108165,540.8250000001998,-0.0528818781565234 +108166,540.8300000001999,-0.052881544187324 +108167,540.8350000002,-0.052881210095018075 +108168,540.8400000002001,-0.05288087587952012 +108169,540.8450000002002,-0.05288054154074455 +108170,540.8500000002003,-0.05288020707860567 +108171,540.8550000002004,-0.05287987249301772 +108172,540.8600000002006,-0.05287953778389485 +108173,540.8650000002007,-0.052879202951151144 +108174,540.8700000002008,-0.05287886799470059 +108175,540.8750000002009,-0.052878532914457085 +108176,540.880000000201,-0.052878197710334474 +108177,540.8850000002011,-0.052877862382246475 +108178,540.8900000002012,-0.05287752693010677 +108179,540.8950000002013,-0.05287719135382891 +108180,540.9000000002014,-0.052876855653326386 +108181,540.9050000002015,-0.052876519828512616 +108182,540.9100000002016,-0.05287618387930091 +108183,540.9150000002018,-0.052875847805604524 +108184,540.9200000002019,-0.05287551160733659 +108185,540.925000000202,-0.05287517528441019 +108186,540.9300000002021,-0.052874838836738304 +108187,540.9350000002022,-0.05287450226423384 +108188,540.9400000002023,-0.05287416556680962 +108189,540.9450000002024,-0.052873828744378376 +108190,540.9500000002025,-0.05287349179685273 +108191,540.9550000002026,-0.05287315472414527 +108192,540.9600000002027,-0.052872817526168465 +108193,540.9650000002028,-0.05287248020283471 +108194,540.970000000203,-0.052872142754056314 +108195,540.9750000002031,-0.0528718051797455 +108196,540.9800000002032,-0.0528714674798144 +108197,540.9850000002033,-0.052871129654175064 +108198,540.9900000002034,-0.05287079170273947 +108199,540.9950000002035,-0.052870453625419485 +108200,541.0000000002036,-0.05287011542212692 +108201,541.0050000002037,-0.05286977709277346 +108202,541.0100000002038,-0.05286943863727076 +108203,541.0150000002039,-0.05286910005553034 +108204,541.020000000204,-0.05286876134746365 +108205,541.0250000002042,-0.05286842251298205 +108206,541.0300000002043,-0.05286808355199682 +108207,541.0350000002044,-0.052867744464419164 +108208,541.0400000002045,-0.05286740525016018 +108209,541.0450000002046,-0.05286706590913087 +108210,541.0500000002047,-0.05286672644124219 +108211,541.0550000002048,-0.05286638684640498 +108212,541.0600000002049,-0.05286604712452998 +108213,541.065000000205,-0.05286570727552788 +108214,541.0700000002051,-0.052865367299309254 +108215,541.0750000002053,-0.052865027195784606 +108216,541.0800000002054,-0.052864686964864335 +108217,541.0850000002055,-0.052864346606458765 +108218,541.0900000002056,-0.05286400612047814 +108219,541.0950000002057,-0.05286366550683257 +108220,541.1000000002058,-0.05286332476543215 +108221,541.1050000002059,-0.052862983896186835 +108222,541.110000000206,-0.0528626428990065 +108223,541.1150000002061,-0.052862301773800954 +108224,541.1200000002062,-0.05286196052047988 +108225,541.1250000002063,-0.05286161913895292 +108226,541.1300000002065,-0.05286127762912957 +108227,541.1350000002066,-0.0528609359909193 +108228,541.1400000002067,-0.05286059422423145 +108229,541.1450000002068,-0.05286025232897527 +108230,541.1500000002069,-0.052859910305059946 +108231,541.155000000207,-0.052859568152394544 +108232,541.1600000002071,-0.052859225870888066 +108233,541.1650000002072,-0.052858883460449424 +108234,541.1700000002073,-0.05285854092098742 +108235,541.1750000002074,-0.05285819825241079 +108236,541.1800000002075,-0.052857855454628164 +108237,541.1850000002077,-0.0528575125275481 +108238,541.1900000002078,-0.05285716947107902 +108239,541.1950000002079,-0.05285682628512932 +108240,541.200000000208,-0.05285648296960727 +108241,541.2050000002081,-0.05285613952442105 +108242,541.2100000002082,-0.052855795949478764 +108243,541.2150000002083,-0.05285545224468839 +108244,541.2200000002084,-0.05285510840995788 +108245,541.2250000002085,-0.05285476444519503 +108246,541.2300000002086,-0.05285442035030758 +108247,541.2350000002087,-0.05285407612520317 +108248,541.2400000002089,-0.05285373176978935 +108249,541.245000000209,-0.052853387283973575 +108250,541.2500000002091,-0.05285304266766322 +108251,541.2550000002092,-0.052852697920765565 +108252,541.2600000002093,-0.05285235304318779 +108253,541.2650000002094,-0.052852008034836986 +108254,541.2700000002095,-0.052851662895620155 +108255,541.2750000002096,-0.0528513176254442 +108256,541.2800000002097,-0.05285097222421594 +108257,541.2850000002098,-0.052850626691842095 +108258,541.29000000021,-0.05285028102822932 +108259,541.29500000021,-0.05284993523328414 +108260,541.3000000002102,-0.052849589306913004 +108261,541.3050000002103,-0.052849243249022265 +108262,541.3100000002104,-0.052848897059518195 +108263,541.3150000002105,-0.05284855073830696 +108264,541.3200000002106,-0.05284820428529463 +108265,541.3250000002107,-0.0528478577003872 +108266,541.3300000002108,-0.05284751098349054 +108267,541.3350000002109,-0.05284716413451047 +108268,541.340000000211,-0.052846817153352675 +108269,541.3450000002111,-0.052846470039922794 +108270,541.3500000002113,-0.052846122794126316 +108271,541.3550000002114,-0.05284577541586867 +108272,541.3600000002115,-0.052845427905055205 +108273,541.3650000002116,-0.05284508026159114 +108274,541.3700000002117,-0.052844732485381615 +108275,541.3750000002118,-0.05284438457633168 +108276,541.3800000002119,-0.05284403653434627 +108277,541.385000000212,-0.052843688359330274 +108278,541.3900000002121,-0.05284334005118844 +108279,541.3950000002122,-0.05284299160982542 +108280,541.4000000002123,-0.05284264303514581 +108281,541.4050000002125,-0.05284229432705409 +108282,541.4100000002126,-0.05284194548545463 +108283,541.4150000002127,-0.052841596510251734 +108284,541.4200000002128,-0.05284124740134958 +108285,541.4250000002129,-0.05284089815865227 +108286,541.430000000213,-0.052840548782063804 +108287,541.4350000002131,-0.05284019927148811 +108288,541.4400000002132,-0.052839849626828965 +108289,541.4450000002133,-0.0528394998479901 +108290,541.4500000002134,-0.05283914993487514 +108291,541.4550000002135,-0.05283879988738759 +108292,541.4600000002137,-0.05283844970543089 +108293,541.4650000002138,-0.05283809938890836 +108294,541.4700000002139,-0.05283774893772325 +108295,541.475000000214,-0.052837398351778676 +108296,541.4800000002141,-0.05283704763097768 +108297,541.4850000002142,-0.05283669677522322 +108298,541.4900000002143,-0.052836345784418114 +108299,541.4950000002144,-0.05283599465846514 +108300,541.5000000002145,-0.052835643397266936 +108301,541.5050000002146,-0.05283529200072604 +108302,541.5100000002147,-0.052834940468744936 +108303,541.5150000002149,-0.05283458880122596 +108304,541.520000000215,-0.05283423699807139 +108305,541.5250000002151,-0.05283388505918338 +108306,541.5300000002152,-0.052833532984463985 +108307,541.5350000002153,-0.052833180773815186 +108308,541.5400000002154,-0.05283282842713885 +108309,541.5450000002155,-0.05283247594433674 +108310,541.5500000002156,-0.05283212332531052 +108311,541.5550000002157,-0.05283177056996178 +108312,541.5600000002158,-0.052831417678191966 +108313,541.565000000216,-0.05283106464990249 +108314,541.570000000216,-0.052830711484994596 +108315,541.5750000002162,-0.05283035818336947 +108316,541.5800000002163,-0.05283000474492819 +108317,541.5850000002164,-0.05282965116957174 +108318,541.5900000002165,-0.05282929745720097 +108319,541.5950000002166,-0.052828943607716686 +108320,541.6000000002167,-0.05282858962101955 +108321,541.6050000002168,-0.052828235497010156 +108322,541.6100000002169,-0.05282788123558898 +108323,541.615000000217,-0.052827526836656376 +108324,541.6200000002171,-0.05282717230011265 +108325,541.6250000002173,-0.052826817625857954 +108326,541.6300000002174,-0.05282646281379239 +108327,541.6350000002175,-0.05282610786381592 +108328,541.6400000002176,-0.052825752775828405 +108329,541.6450000002177,-0.05282539754972965 +108330,541.6500000002178,-0.052825042185419294 +108331,541.6550000002179,-0.052824686682796926 +108332,541.660000000218,-0.052824331041762006 +108333,541.6650000002181,-0.05282397526221392 +108334,541.6700000002182,-0.05282361934405192 +108335,541.6750000002183,-0.05282326328717518 +108336,541.6800000002185,-0.05282290709148275 +108337,541.6850000002186,-0.052822550756873594 +108338,541.6900000002187,-0.052822194283246575 +108339,541.6950000002188,-0.05282183767050044 +108340,541.7000000002189,-0.052821480918533864 +108341,541.705000000219,-0.05282112402724538 +108342,541.7100000002191,-0.05282076699653342 +108343,541.7150000002192,-0.05282040982629637 +108344,541.7200000002193,-0.052820052516432445 +108345,541.7250000002194,-0.052819695066839784 +108346,541.7300000002195,-0.05281933747741643 +108347,541.7350000002197,-0.05281897974806032 +108348,541.7400000002198,-0.052818621878669265 +108349,541.7450000002199,-0.052818263869141006 +108350,541.75000000022,-0.05281790571937316 +108351,541.7550000002201,-0.05281754742926324 +108352,541.7600000002202,-0.05281718899870867 +108353,541.7650000002203,-0.052816830427606744 +108354,541.7700000002204,-0.05281647171585469 +108355,541.7750000002205,-0.05281611286334959 +108356,541.7800000002206,-0.05281575386998844 +108357,541.7850000002207,-0.05281539473566814 +108358,541.7900000002209,-0.05281503546028546 +108359,541.795000000221,-0.052814676043737095 +108360,541.8000000002211,-0.0528143164859196 +108361,541.8050000002212,-0.052813956786729475 +108362,541.8100000002213,-0.05281359694606307 +108363,541.8150000002214,-0.05281323696381665 +108364,541.8200000002215,-0.05281287683988636 +108365,541.8250000002216,-0.052812516574168245 +108366,541.8300000002217,-0.05281215616655825 +108367,541.8350000002218,-0.05281179561695223 +108368,541.840000000222,-0.05281143492524589 +108369,541.8450000002221,-0.05281107409133486 +108370,541.8500000002222,-0.05281071311511467 +108371,541.8550000002223,-0.05281035199648071 +108372,541.8600000002224,-0.052809990735328285 +108373,541.8650000002225,-0.0528096293315526 +108374,541.8700000002226,-0.052809267785048734 +108375,541.8750000002227,-0.05280890609571168 +108376,541.8800000002228,-0.052808544263436306 +108377,541.8850000002229,-0.052808182288117365 +108378,541.890000000223,-0.052807820169649536 +108379,541.8950000002231,-0.05280745790792736 +108380,541.9000000002233,-0.052807095502845285 +108381,541.9050000002234,-0.05280673295429764 +108382,541.9100000002235,-0.05280637026217866 +108383,541.9150000002236,-0.05280600742638245 +108384,541.9200000002237,-0.05280564444680303 +108385,541.9250000002238,-0.0528052813233343 +108386,541.9300000002239,-0.05280491805587005 +108387,541.935000000224,-0.05280455464430395 +108388,541.9400000002241,-0.052804191088529594 +108389,541.9450000002242,-0.05280382738844044 +108390,541.9500000002243,-0.05280346354392984 +108391,541.9550000002245,-0.052803099554891035 +108392,541.9600000002246,-0.05280273542121718 +108393,541.9650000002247,-0.05280237114280129 +108394,541.9700000002248,-0.05280200671953628 +108395,541.9750000002249,-0.05280164215131495 +108396,541.980000000225,-0.052801277438030016 +108397,541.9850000002251,-0.05280091257957403 +108398,541.9900000002252,-0.052800547575839504 +108399,541.9950000002253,-0.05280018242671878 +108400,542.0000000002254,-0.05279981713210411 +108401,542.0050000002256,-0.05279945169188764 +108402,542.0100000002257,-0.05279908610596141 +108403,542.0150000002258,-0.052798720374217324 +108404,542.0200000002259,-0.052798354496547205 +108405,542.025000000226,-0.05279798847284275 +108406,542.0300000002261,-0.052797622302995534 +108407,542.0350000002262,-0.052797255986897045 +108408,542.0400000002263,-0.052796889524438624 +108409,542.0450000002264,-0.05279652291551153 +108410,542.0500000002265,-0.0527961561600069 +108411,542.0550000002266,-0.05279578925781576 +108412,542.0600000002268,-0.05279542220882901 +108413,542.0650000002269,-0.05279505501293746 +108414,542.070000000227,-0.052794687670031794 +108415,542.0750000002271,-0.05279432018000259 +108416,542.0800000002272,-0.05279395254274029 +108417,542.0850000002273,-0.052793584758135254 +108418,542.0900000002274,-0.05279321682607771 +108419,542.0950000002275,-0.05279284874645778 +108420,542.1000000002276,-0.05279248051916546 +108421,542.1050000002277,-0.052792112144090665 +108422,542.1100000002278,-0.05279174362112315 +108423,542.115000000228,-0.05279137495015258 +108424,542.1200000002281,-0.0527910061310685 +108425,542.1250000002282,-0.052790637163760354 +108426,542.1300000002283,-0.052790268048117456 +108427,542.1350000002284,-0.05278989878402901 +108428,542.1400000002285,-0.052789529371384106 +108429,542.1450000002286,-0.05278915981007171 +108430,542.1500000002287,-0.052788790099980686 +108431,542.1550000002288,-0.052788420240999785 +108432,542.1600000002289,-0.05278805023301763 +108433,542.165000000229,-0.05278768007592272 +108434,542.1700000002292,-0.05278730976960347 +108435,542.1750000002293,-0.05278693931394814 +108436,542.1800000002294,-0.0527865687088449 +108437,542.1850000002295,-0.05278619795418179 +108438,542.1900000002296,-0.052785827049846745 +108439,542.1950000002297,-0.05278545599572759 +108440,542.2000000002298,-0.05278508479171201 +108441,542.2050000002299,-0.052784713437687585 +108442,542.21000000023,-0.05278434193354177 +108443,542.2150000002301,-0.05278397027916192 +108444,542.2200000002302,-0.052783598474435256 +108445,542.2250000002304,-0.05278322651924888 +108446,542.2300000002305,-0.052782854413489816 +108447,542.2350000002306,-0.0527824821570449 +108448,542.2400000002307,-0.052782109749800896 +108449,542.2450000002308,-0.05278173719164445 +108450,542.2500000002309,-0.05278136448246208 +108451,542.255000000231,-0.05278099162214018 +108452,542.2600000002311,-0.05278061861056503 +108453,542.2650000002312,-0.05278024544762279 +108454,542.2700000002313,-0.05277987213319952 +108455,542.2750000002314,-0.05277949866718112 +108456,542.2800000002316,-0.0527791250494534 +108457,542.2850000002317,-0.05277875127990205 +108458,542.2900000002318,-0.05277837735841264 +108459,542.2950000002319,-0.05277800328487061 +108460,542.300000000232,-0.052777629059161286 +108461,542.3050000002321,-0.052777254681169866 +108462,542.3100000002322,-0.05277688015078144 +108463,542.3150000002323,-0.05277650546788095 +108464,542.3200000002324,-0.05277613063235327 +108465,542.3250000002325,-0.05277575564408311 +108466,542.3300000002326,-0.05277538050295506 +108467,542.3350000002328,-0.052775005208853615 +108468,542.3400000002329,-0.052774629761663125 +108469,542.345000000233,-0.05277425416126782 +108470,542.3500000002331,-0.052773878407551836 +108471,542.3550000002332,-0.052773502500399146 +108472,542.3600000002333,-0.052773126439693625 +108473,542.3650000002334,-0.05277275022531903 +108474,542.3700000002335,-0.05277237385715898 +108475,542.3750000002336,-0.052771997335096986 +108476,542.3800000002337,-0.05277162065901641 +108477,542.3850000002338,-0.052771243828800524 +108478,542.390000000234,-0.05277086684433246 +108479,542.3950000002341,-0.052770489705495235 +108480,542.4000000002342,-0.05277011241217174 +108481,542.4050000002343,-0.05276973496424473 +108482,542.4100000002344,-0.052769357361596846 +108483,542.4150000002345,-0.052768979604110616 +108484,542.4200000002346,-0.05276860169166841 +108485,542.4250000002347,-0.052768223624152524 +108486,542.4300000002348,-0.052767845401445086 +108487,542.4350000002349,-0.052767467023428126 +108488,542.440000000235,-0.05276708848998354 +108489,542.4450000002352,-0.052766709800993086 +108490,542.4500000002353,-0.05276633095633841 +108491,542.4550000002354,-0.052765951955901044 +108492,542.4600000002355,-0.05276557279956238 +108493,542.4650000002356,-0.052765193487203675 +108494,542.4700000002357,-0.05276481401870609 +108495,542.4750000002358,-0.052764434393950635 +108496,542.4800000002359,-0.052764054612818204 +108497,542.485000000236,-0.05276367467518955 +108498,542.4900000002361,-0.05276329458094533 +108499,542.4950000002362,-0.052762914329966035 +108500,542.5000000002364,-0.052762533922132066 +108501,542.5050000002365,-0.05276215335732367 +108502,542.5100000002366,-0.052761772635421 +108503,542.5150000002367,-0.05276139175630404 +108504,542.5200000002368,-0.05276101071985267 +108505,542.5250000002369,-0.05276062952594663 +108506,542.530000000237,-0.05276024817446556 +108507,542.5350000002371,-0.05275986666528894 +108508,542.5400000002372,-0.05275948499829615 +108509,542.5450000002373,-0.0527591031733664 +108510,542.5500000002374,-0.052758721190378825 +108511,542.5550000002376,-0.052758339049212385 +108512,542.5600000002377,-0.052757956749745934 +108513,542.5650000002378,-0.052757574291858206 +108514,542.5700000002379,-0.05275719167542778 +108515,542.575000000238,-0.05275680890033313 +108516,542.5800000002381,-0.052756425966452566 +108517,542.5850000002382,-0.05275604287366432 +108518,542.5900000002383,-0.052755659621846446 +108519,542.5950000002384,-0.0527552762108769 +108520,542.6000000002385,-0.05275489264063349 +108521,542.6050000002386,-0.05275450891099389 +108522,542.6100000002388,-0.052754125021835664 +108523,542.6150000002389,-0.05275374097303623 +108524,542.620000000239,-0.05275335676447288 +108525,542.6250000002391,-0.05275297239602277 +108526,542.6300000002392,-0.05275258786756292 +108527,542.6350000002393,-0.05275220317897023 +108528,542.6400000002394,-0.052751818330121485 +108529,542.6450000002395,-0.052751433320893285 +108530,542.6500000002396,-0.052751048151162154 +108531,542.6550000002397,-0.05275066282080445 +108532,542.6600000002398,-0.0527502773296964 +108533,542.66500000024,-0.05274989167771412 +108534,542.6700000002401,-0.05274950586473358 +108535,542.6750000002402,-0.05274911989063061 +108536,542.6800000002403,-0.05274873375528093 +108537,542.6850000002404,-0.05274834745856008 +108538,542.6900000002405,-0.05274796100034353 +108539,542.6950000002406,-0.05274757438050655 +108540,542.7000000002407,-0.05274718759892434 +108541,542.7050000002408,-0.052746800655471916 +108542,542.7100000002409,-0.052746413550024185 +108543,542.715000000241,-0.052746026282455914 +108544,542.7200000002412,-0.05274563885264173 +108545,542.7250000002413,-0.05274525126045614 +108546,542.7300000002414,-0.05274486350577351 +108547,542.7350000002415,-0.05274447558846805 +108548,542.7400000002416,-0.052744087508413855 +108549,542.7450000002417,-0.05274369926548488 +108550,542.7500000002418,-0.05274331085955496 +108551,542.7550000002419,-0.05274292229049776 +108552,542.760000000242,-0.05274253355818684 +108553,542.7650000002421,-0.05274214466249559 +108554,542.7700000002422,-0.05274175560329731 +108555,542.7750000002424,-0.05274136638046512 +108556,542.7800000002425,-0.052740976993872056 +108557,542.7850000002426,-0.05274058744339094 +108558,542.7900000002427,-0.05274019772889452 +108559,542.7950000002428,-0.05273980785025537 +108560,542.8000000002429,-0.05273941780734596 +108561,542.805000000243,-0.052739027600038596 +108562,542.8100000002431,-0.05273863722820545 +108563,542.8150000002432,-0.05273824669171856 +108564,542.8200000002433,-0.05273785599044983 +108565,542.8250000002434,-0.05273746512427103 +108566,542.8300000002436,-0.05273707409305375 +108567,542.8350000002437,-0.05273668289666951 +108568,542.8400000002438,-0.05273629153498962 +108569,542.8450000002439,-0.052735900007885306 +108570,542.850000000244,-0.05273550831522762 +108571,542.8550000002441,-0.0527351164568875 +108572,542.8600000002442,-0.05273472443273572 +108573,542.8650000002443,-0.05273433224264292 +108574,542.8700000002444,-0.05273393988647962 +108575,542.8750000002445,-0.052733547364116166 +108576,542.8800000002446,-0.052733154675422785 +108577,542.8850000002448,-0.05273276182026956 +108578,542.8900000002449,-0.05273236879852644 +108579,542.895000000245,-0.0527319756100632 +108580,542.9000000002451,-0.052731582254749526 +108581,542.9050000002452,-0.05273118873245493 +108582,542.9100000002453,-0.052730795043048756 +108583,542.9150000002454,-0.05273040118640027 +108584,542.9200000002455,-0.052730007162378544 +108585,542.9250000002456,-0.05272961297085253 +108586,542.9300000002457,-0.052729218611691026 +108587,542.9350000002459,-0.05272882408476269 +108588,542.940000000246,-0.052728429389936056 +108589,542.9450000002461,-0.05272803452707949 +108590,542.9500000002462,-0.05272763949606122 +108591,542.9550000002463,-0.05272724429674932 +108592,542.9600000002464,-0.05272684892901175 +108593,542.9650000002465,-0.052726453392716324 +108594,542.9700000002466,-0.05272605768773068 +108595,542.9750000002467,-0.052725661813922305 +108596,542.9800000002468,-0.05272526577115859 +108597,542.9850000002469,-0.052724869559306754 +108598,542.990000000247,-0.05272447317823388 +108599,542.9950000002472,-0.052724076627806885 +108600,543.0000000002473,-0.05272367990789255 +108601,543.0050000002474,-0.052723283018357506 +108602,543.0100000002475,-0.052722885959068266 +108603,543.0150000002476,-0.052722488729891166 +108604,543.0200000002477,-0.05272209133069241 +108605,543.0250000002478,-0.05272169376133805 +108606,543.0300000002479,-0.05272129602169399 +108607,543.035000000248,-0.05272089811162599 +108608,543.0400000002481,-0.052720500030999644 +108609,543.0450000002483,-0.05272010177968045 +108610,543.0500000002484,-0.052719703357533704 +108611,543.0550000002485,-0.05271930476442458 +108612,543.0600000002486,-0.0527189060002181 +108613,543.0650000002487,-0.05271850706477913 +108614,543.0700000002488,-0.052718107957972396 +108615,543.0750000002489,-0.05271770867966248 +108616,543.080000000249,-0.05271730922971381 +108617,543.0850000002491,-0.05271690960799064 +108618,543.0900000002492,-0.052716509814357125 +108619,543.0950000002493,-0.05271610984867724 +108620,543.1000000002495,-0.052715709710814795 +108621,543.1050000002496,-0.05271530940063349 +108622,543.1100000002497,-0.052714908917996836 +108623,543.1150000002498,-0.05271450826276824 +108624,543.1200000002499,-0.052714107434810885 +108625,543.12500000025,-0.05271370643398788 +108626,543.1300000002501,-0.052713305260162144 +108627,543.1350000002502,-0.052712903913196454 +108628,543.1400000002503,-0.05271250239295344 +108629,543.1450000002504,-0.052712100699295564 +108630,543.1500000002505,-0.05271169883208513 +108631,543.1550000002507,-0.052711296791184324 +108632,543.1600000002508,-0.05271089457645516 +108633,543.1650000002509,-0.0527104921877595 +108634,543.170000000251,-0.05271008962495905 +108635,543.1750000002511,-0.05270968688791537 +108636,543.1800000002512,-0.05270928397648986 +108637,543.1850000002513,-0.05270888089054377 +108638,543.1900000002514,-0.0527084776299382 +108639,543.1950000002515,-0.05270807419453409 +108640,543.2000000002516,-0.05270767058419223 +108641,543.2050000002517,-0.052707266798773265 +108642,543.2100000002519,-0.05270686283813766 +108643,543.215000000252,-0.05270645870214574 +108644,543.2200000002521,-0.05270605439065768 +108645,543.2250000002522,-0.0527056499035335 +108646,543.2300000002523,-0.052705245240633046 +108647,543.2350000002524,-0.05270484040181604 +108648,543.2400000002525,-0.05270443538694203 +108649,543.2450000002526,-0.052704030195870374 +108650,543.2500000002527,-0.052703624828460346 +108651,543.2550000002528,-0.05270321928457101 +108652,543.260000000253,-0.05270281356406129 +108653,543.265000000253,-0.052702407666789956 +108654,543.2700000002532,-0.0527020015926156 +108655,543.2750000002533,-0.0527015953413967 +108656,543.2800000002534,-0.052701188912991526 +108657,543.2850000002535,-0.05270078230725824 +108658,543.2900000002536,-0.05270037552405479 +108659,543.2950000002537,-0.05269996856323901 +108660,543.3000000002538,-0.05269956142466856 +108661,543.3050000002539,-0.052699154108200946 +108662,543.310000000254,-0.0526987466136935 +108663,543.3150000002541,-0.05269833894100341 +108664,543.3200000002543,-0.05269793108998771 +108665,543.3250000002544,-0.052697523060503244 +108666,543.3300000002545,-0.052697114852406746 +108667,543.3350000002546,-0.052696706465554743 +108668,543.3400000002547,-0.05269629789980361 +108669,543.3450000002548,-0.0526958891550096 +108670,543.3500000002549,-0.05269548023102874 +108671,543.355000000255,-0.05269507112771696 +108672,543.3600000002551,-0.052694661844929984 +108673,543.3650000002552,-0.052694252382523406 +108674,543.3700000002553,-0.052693842740352624 +108675,543.3750000002555,-0.05269343291827291 +108676,543.3800000002556,-0.052693022916139344 +108677,543.3850000002557,-0.05269261273380687 +108678,543.3900000002558,-0.05269220237113025 +108679,543.3950000002559,-0.052691791827964095 +108680,543.400000000256,-0.05269138110416285 +108681,543.4050000002561,-0.052690970199580765 +108682,543.4100000002562,-0.05269055911407197 +108683,543.4150000002563,-0.05269014784749044 +108684,543.4200000002564,-0.052689736399689935 +108685,543.4250000002565,-0.0526893247705241 +108686,543.4300000002567,-0.052688912959846367 +108687,543.4350000002568,-0.05268850096751004 +108688,543.4400000002569,-0.052688088793368254 +108689,543.445000000257,-0.05268767643727396 +108690,543.4500000002571,-0.05268726389907997 +108691,543.4550000002572,-0.0526868511786389 +108692,543.4600000002573,-0.05268643827580323 +108693,543.4650000002574,-0.05268602519042524 +108694,543.4700000002575,-0.05268561192235709 +108695,543.4750000002576,-0.05268519847145072 +108696,543.4800000002577,-0.052684784837557945 +108697,543.4850000002579,-0.05268437102053039 +108698,543.490000000258,-0.05268395702021954 +108699,543.4950000002581,-0.052683542836476666 +108700,543.5000000002582,-0.05268312846915291 +108701,543.5050000002583,-0.05268271391809923 +108702,543.5100000002584,-0.05268229918316641 +108703,543.5150000002585,-0.05268188426420508 +108704,543.5200000002586,-0.05268146916106571 +108705,543.5250000002587,-0.05268105387359856 +108706,543.5300000002588,-0.052680638401653754 +108707,543.535000000259,-0.05268022274508125 +108708,543.540000000259,-0.05267980690373082 +108709,543.5450000002592,-0.05267939087745207 +108710,543.5500000002593,-0.05267897466609442 +108711,543.5550000002594,-0.05267855826950715 +108712,543.5600000002595,-0.05267814168753937 +108713,543.5650000002596,-0.05267772492003998 +108714,543.5700000002597,-0.05267730796685774 +108715,543.5750000002598,-0.05267689082784122 +108716,543.5800000002599,-0.05267647350283885 +108717,543.58500000026,-0.05267605599169885 +108718,543.5900000002601,-0.05267563829426929 +108719,543.5950000002603,-0.05267522041039806 +108720,543.6000000002604,-0.052674802339932866 +108721,543.6050000002605,-0.05267438408272128 +108722,543.6100000002606,-0.052673965638610654 +108723,543.6150000002607,-0.052673547007448196 +108724,543.6200000002608,-0.05267312818908093 +108725,543.6250000002609,-0.0526727091833557 +108726,543.630000000261,-0.05267228999011917 +108727,543.6350000002611,-0.052671870609217866 +108728,543.6400000002612,-0.0526714510404981 +108729,543.6450000002613,-0.052671031283806034 +108730,543.6500000002615,-0.05267061133898763 +108731,543.6550000002616,-0.0526701912058887 +108732,543.6600000002617,-0.052669770884354865 +108733,543.6650000002618,-0.05266935037423156 +108734,543.6700000002619,-0.05266892967536407 +108735,543.675000000262,-0.052668508787597476 +108736,543.6800000002621,-0.052668087710776704 +108737,543.6850000002622,-0.052667666444746505 +108738,543.6900000002623,-0.052667244989351415 +108739,543.6950000002624,-0.05266682334443584 +108740,543.7000000002625,-0.05266640150984398 +108741,543.7050000002627,-0.052665979485419866 +108742,543.7100000002628,-0.05266555727100736 +108743,543.7150000002629,-0.0526651348664501 +108744,543.720000000263,-0.05266471227159161 +108745,543.7250000002631,-0.05266428948627518 +108746,543.7300000002632,-0.052663866510343965 +108747,543.7350000002633,-0.05266344334364089 +108748,543.7400000002634,-0.052663019986008766 +108749,543.7450000002635,-0.05266259643729015 +108750,543.7500000002636,-0.05266217269732747 +108751,543.7550000002637,-0.05266174876596294 +108752,543.7600000002639,-0.05266132464303864 +108753,543.765000000264,-0.052660900328396425 +108754,543.7700000002641,-0.05266047582187797 +108755,543.7750000002642,-0.052660051123324794 +108756,543.7800000002643,-0.05265962623257821 +108757,543.7850000002644,-0.05265920114947936 +108758,543.7900000002645,-0.05265877587386919 +108759,543.7950000002646,-0.05265835040558849 +108760,543.8000000002647,-0.052657924744477856 +108761,543.8050000002648,-0.05265749889037767 +108762,543.810000000265,-0.05265707284312818 +108763,543.8150000002651,-0.05265664660256941 +108764,543.8200000002652,-0.05265622016854121 +108765,543.8250000002653,-0.05265579354088327 +108766,543.8300000002654,-0.052655366719435055 +108767,543.8350000002655,-0.052654939704035855 +108768,543.8400000002656,-0.05265451249452481 +108769,543.8450000002657,-0.052654085090740835 +108770,543.8500000002658,-0.05265365749252267 +108771,543.8550000002659,-0.05265322969970888 +108772,543.860000000266,-0.0526528017121378 +108773,543.8650000002661,-0.05265237352964765 +108774,543.8700000002663,-0.052651945152076406 +108775,543.8750000002664,-0.0526515165792619 +108776,543.8800000002665,-0.05265108781104172 +108777,543.8850000002666,-0.05265065884725331 +108778,543.8900000002667,-0.05265022968773391 +108779,543.8950000002668,-0.05264980033232057 +108780,543.9000000002669,-0.05264937078085016 +108781,543.905000000267,-0.05264894103315936 +108782,543.9100000002671,-0.05264851108908465 +108783,543.9150000002672,-0.05264808094846232 +108784,543.9200000002674,-0.052647650611128485 +108785,543.9250000002675,-0.05264722007691907 +108786,543.9300000002676,-0.05264678934566979 +108787,543.9350000002677,-0.052646358417216176 +108788,543.9400000002678,-0.05264592729139358 +108789,543.9450000002679,-0.05264549596803714 +108790,543.950000000268,-0.05264506444698184 +108791,543.9550000002681,-0.052644632728062433 +108792,543.9600000002682,-0.05264420081111349 +108793,543.9650000002683,-0.052643768695969415 +108794,543.9700000002684,-0.052643336382464385 +108795,543.9750000002686,-0.05264290387043239 +108796,543.9800000002687,-0.052642471159707244 +108797,543.9850000002688,-0.05264203825012256 +108798,543.9900000002689,-0.05264160514151175 +108799,543.995000000269,-0.05264117183370803 +108800,544.0000000002691,-0.05264073832654444 +108801,544.0050000002692,-0.05264030461985379 +108802,544.0100000002693,-0.052639870713468755 +108803,544.0150000002694,-0.05263943660722174 +108804,544.0200000002695,-0.05263900230094501 +108805,544.0250000002696,-0.052638567794470605 +108806,544.0300000002698,-0.05263813308763038 +108807,544.0350000002699,-0.052637698180255994 +108808,544.04000000027,-0.05263726307217891 +108809,544.0450000002701,-0.05263682776323037 +108810,544.0500000002702,-0.05263639225324147 +108811,544.0550000002703,-0.05263595654204305 +108812,544.0600000002704,-0.05263552062946579 +108813,544.0650000002705,-0.05263508451534016 +108814,544.0700000002706,-0.052634648199496425 +108815,544.0750000002707,-0.05263421168176467 +108816,544.0800000002708,-0.052633774961974765 +108817,544.085000000271,-0.05263333803995637 +108818,544.0900000002711,-0.05263290091553897 +108819,544.0950000002712,-0.05263246358855183 +108820,544.1000000002713,-0.05263202605882404 +108821,544.1050000002714,-0.052631588326184454 +108822,544.1100000002715,-0.05263115039046174 +108823,544.1150000002716,-0.052630712251484385 +108824,544.1200000002717,-0.05263027390908063 +108825,544.1250000002718,-0.05262983536307856 +108826,544.1300000002719,-0.052629396613306026 +108827,544.135000000272,-0.0526289576595907 +108828,544.1400000002722,-0.05262851850176003 +108829,544.1450000002723,-0.05262807913964127 +108830,544.1500000002724,-0.05262763957306147 +108831,544.1550000002725,-0.052627199801847484 +108832,544.1600000002726,-0.052626759825825944 +108833,544.1650000002727,-0.05262631964482328 +108834,544.1700000002728,-0.05262587925866575 +108835,544.1750000002729,-0.05262543866717936 +108836,544.180000000273,-0.05262499787018991 +108837,544.1850000002731,-0.052624556867523056 +108838,544.1900000002732,-0.05262411565900419 +108839,544.1950000002734,-0.05262367424445851 +108840,544.2000000002735,-0.05262323262371103 +108841,544.2050000002736,-0.05262279079658653 +108842,544.2100000002737,-0.05262234876290958 +108843,544.2150000002738,-0.05262190652250456 +108844,544.2200000002739,-0.05262146407519565 +108845,544.225000000274,-0.05262102142080678 +108846,544.2300000002741,-0.05262057855916173 +108847,544.2350000002742,-0.052620135490084013 +108848,544.2400000002743,-0.052619692213396976 +108849,544.2450000002744,-0.052619248728923734 +108850,544.2500000002746,-0.05261880503648721 +108851,544.2550000002747,-0.05261836113591008 +108852,544.2600000002748,-0.052617917027014856 +108853,544.2650000002749,-0.05261747270962381 +108854,544.270000000275,-0.05261702818355902 +108855,544.2750000002751,-0.05261658344864232 +108856,544.2800000002752,-0.052616138504695376 +108857,544.2850000002753,-0.05261569335153961 +108858,544.2900000002754,-0.05261524798899624 +108859,544.2950000002755,-0.05261480241688629 +108860,544.3000000002756,-0.052614356635030536 +108861,544.3050000002758,-0.05261391064324956 +108862,544.3100000002759,-0.052613464441363736 +108863,544.315000000276,-0.052613018029193215 +108864,544.3200000002761,-0.05261257140655794 +108865,544.3250000002762,-0.052612124573277616 +108866,544.3300000002763,-0.05261167752917176 +108867,544.3350000002764,-0.05261123027405968 +108868,544.3400000002765,-0.05261078280776043 +108869,544.3450000002766,-0.052610335130092896 +108870,544.3500000002767,-0.052609887240875695 +108871,544.3550000002768,-0.05260943913992728 +108872,544.360000000277,-0.05260899082706584 +108873,544.3650000002771,-0.05260854230210937 +108874,544.3700000002772,-0.05260809356487566 +108875,544.3750000002773,-0.052607644615182254 +108876,544.3800000002774,-0.0526071954528465 +108877,544.3850000002775,-0.052606746077685514 +108878,544.3900000002776,-0.052606296489516195 +108879,544.3950000002777,-0.052605846688155225 +108880,544.4000000002778,-0.05260539667341907 +108881,544.4050000002779,-0.05260494644512396 +108882,544.410000000278,-0.052604496003085914 +108883,544.4150000002782,-0.052604045347120744 +108884,544.4200000002783,-0.052603594477044026 +108885,544.4250000002784,-0.052603143392671116 +108886,544.4300000002785,-0.05260269209381714 +108887,544.4350000002786,-0.05260224058029702 +108888,544.4400000002787,-0.05260178885192545 +108889,544.4450000002788,-0.052601336908516885 +108890,544.4500000002789,-0.05260088474988558 +108891,544.455000000279,-0.05260043237584556 +108892,544.4600000002791,-0.05259997978621061 +108893,544.4650000002792,-0.05259952698079431 +108894,544.4700000002794,-0.05259907395940999 +108895,544.4750000002795,-0.052598620721870805 +108896,544.4800000002796,-0.052598167267989625 +108897,544.4850000002797,-0.05259771359757913 +108898,544.4900000002798,-0.05259725971045177 +108899,544.4950000002799,-0.052596805606419765 +108900,544.50000000028,-0.0525963512852951 +108901,544.5050000002801,-0.05259589674688955 +108902,544.5100000002802,-0.05259544199101465 +108903,544.5150000002803,-0.05259498701748171 +108904,544.5200000002804,-0.05259453182610182 +108905,544.5250000002806,-0.05259407641668581 +108906,544.5300000002807,-0.052593620789044324 +108907,544.5350000002808,-0.052593164942987755 +108908,544.5400000002809,-0.05259270887832627 +108909,544.545000000281,-0.05259225259486979 +108910,544.5500000002811,-0.05259179609242804 +108911,544.5550000002812,-0.05259133937081049 +108912,544.5600000002813,-0.05259088242982638 +108913,544.5650000002814,-0.05259042526928474 +108914,544.5700000002815,-0.052589967888994324 +108915,544.5750000002816,-0.052589510288763706 +108916,544.5800000002818,-0.05258905246840119 +108917,544.5850000002819,-0.05258859442771485 +108918,544.590000000282,-0.052588136166512554 +108919,544.5950000002821,-0.052587677684601916 +108920,544.6000000002822,-0.052587218981790314 +108921,544.6050000002823,-0.0525867600578849 +108922,544.6100000002824,-0.0525863009126926 +108923,544.6150000002825,-0.052585841546020064 +108924,544.6200000002826,-0.05258538195767376 +108925,544.6250000002827,-0.05258492214745989 +108926,544.6300000002828,-0.05258446211518442 +108927,544.635000000283,-0.05258400186065309 +108928,544.6400000002831,-0.052583541383671405 +108929,544.6450000002832,-0.05258308068404462 +108930,544.6500000002833,-0.05258261976157775 +108931,544.6550000002834,-0.05258215861607559 +108932,544.6600000002835,-0.05258169724734269 +108933,544.6650000002836,-0.05258123565518336 +108934,544.6700000002837,-0.05258077383940167 +108935,544.6750000002838,-0.05258031179980145 +108936,544.6800000002839,-0.052579849536186274 +108937,544.685000000284,-0.05257938704835951 +108938,544.6900000002842,-0.05257892433612426 +108939,544.6950000002843,-0.0525784613992834 +108940,544.7000000002844,-0.05257799823763955 +108941,544.7050000002845,-0.052577534850995096 +108942,544.7100000002846,-0.052577071239152194 +108943,544.7150000002847,-0.05257660740191272 +108944,544.7200000002848,-0.052576143339078354 +108945,544.7250000002849,-0.052575679050450505 +108946,544.730000000285,-0.05257521453583034 +108947,544.7350000002851,-0.05257474979501879 +108948,544.7400000002852,-0.05257428482781654 +108949,544.7450000002854,-0.05257381963402402 +108950,544.7500000002855,-0.05257335421344142 +108951,544.7550000002856,-0.0525728885658687 +108952,544.7600000002857,-0.05257242269110555 +108953,544.7650000002858,-0.052571956588951425 +108954,544.7700000002859,-0.05257149025920553 +108955,544.775000000286,-0.052571023701666844 +108956,544.7800000002861,-0.05257055691613407 +108957,544.7850000002862,-0.05257008990240566 +108958,544.7900000002863,-0.05256962266027985 +108959,544.7950000002864,-0.052569155189554594 +108960,544.8000000002866,-0.05256868749002761 +108961,544.8050000002867,-0.05256821956149639 +108962,544.8100000002868,-0.05256775140375814 +108963,544.8150000002869,-0.052567283016609824 +108964,544.820000000287,-0.05256681439984816 +108965,544.8250000002871,-0.05256634555326961 +108966,544.8300000002872,-0.05256587647667041 +108967,544.8350000002873,-0.05256540716984651 +108968,544.8400000002874,-0.05256493763259363 +108969,544.8450000002875,-0.05256446786470721 +108970,544.8500000002877,-0.05256399786598249 +108971,544.8550000002878,-0.05256352763621439 +108972,544.8600000002879,-0.05256305717519763 +108973,544.865000000288,-0.052562586482726645 +108974,544.8700000002881,-0.05256211555859562 +108975,544.8750000002882,-0.05256164440259849 +108976,544.8800000002883,-0.05256117301452895 +108977,544.8850000002884,-0.0525607013941804 +108978,544.8900000002885,-0.05256022954134602 +108979,544.8950000002886,-0.052559757455818715 +108980,544.9000000002887,-0.052559285137391144 +108981,544.9050000002889,-0.052558812585855694 +108982,544.910000000289,-0.05255833980100451 +108983,544.9150000002891,-0.05255786678262946 +108984,544.9200000002892,-0.052557393530522176 +108985,544.9250000002893,-0.052556920044474015 +108986,544.9300000002894,-0.05255644632427607 +108987,544.9350000002895,-0.052555972369719185 +108988,544.9400000002896,-0.05255549818059394 +108989,544.9450000002897,-0.05255502375669066 +108990,544.9500000002898,-0.0525545490977994 +108991,544.9550000002899,-0.05255407420370996 +108992,544.96000000029,-0.05255359907421187 +108993,544.9650000002902,-0.05255312370909441 +108994,544.9700000002903,-0.05255264810814657 +108995,544.9750000002904,-0.052552172271157105 +108996,544.9800000002905,-0.0525516961979145 +108997,544.9850000002906,-0.05255121988820696 +108998,544.9900000002907,-0.052550743341822456 +108999,544.9950000002908,-0.05255026655854866 +109000,545.0000000002909,-0.05254978953817299 +109001,545.005000000291,-0.05254931228048261 +109002,545.0100000002911,-0.05254883478526442 +109003,545.0150000002913,-0.052548357052305025 +109004,545.0200000002914,-0.05254787908139079 +109005,545.0250000002915,-0.0525474008723078 +109006,545.0300000002916,-0.05254692242484188 +109007,545.0350000002917,-0.052546443738778564 +109008,545.0400000002918,-0.05254596481390314 +109009,545.0450000002919,-0.05254548565000063 +109010,545.050000000292,-0.05254500624685576 +109011,545.0550000002921,-0.052544526604253024 +109012,545.0600000002922,-0.052544046721976614 +109013,545.0650000002923,-0.05254356659981045 +109014,545.0700000002925,-0.05254308623753819 +109015,545.0750000002926,-0.05254260563494324 +109016,545.0800000002927,-0.052542124791808704 +109017,545.0850000002928,-0.05254164370791742 +109018,545.0900000002929,-0.052541162383051954 +109019,545.095000000293,-0.052540680816994596 +109020,545.1000000002931,-0.052540199009527375 +109021,545.1050000002932,-0.05253971696043203 +109022,545.1100000002933,-0.052539234669490044 +109023,545.1150000002934,-0.05253875213648259 +109024,545.1200000002935,-0.05253826936119059 +109025,545.1250000002937,-0.0525377863433947 +109026,545.1300000002938,-0.05253730308287527 +109027,545.1350000002939,-0.0525368195794124 +109028,545.140000000294,-0.05253633583278588 +109029,545.1450000002941,-0.05253585184277526 +109030,545.1500000002942,-0.05253536760915978 +109031,545.1550000002943,-0.05253488313171842 +109032,545.1600000002944,-0.05253439841022987 +109033,545.1650000002945,-0.052533913444472544 +109034,545.1700000002946,-0.05253342823422458 +109035,545.1750000002947,-0.052532942779263805 +109036,545.1800000002949,-0.052532457079367816 +109037,545.185000000295,-0.05253197113431389 +109038,545.1900000002951,-0.052531484943879034 +109039,545.1950000002952,-0.05253099850783998 +109040,545.2000000002953,-0.05253051182597315 +109041,545.2050000002954,-0.05253002489805472 +109042,545.2100000002955,-0.05252953772386054 +109043,545.2150000002956,-0.0525290503031662 +109044,545.2200000002957,-0.05252856263574701 +109045,545.2250000002958,-0.05252807472137798 +109046,545.230000000296,-0.05252758655983384 +109047,545.235000000296,-0.05252709815088903 +109048,545.2400000002962,-0.05252660949431773 +109049,545.2450000002963,-0.05252612058989377 +109050,545.2500000002964,-0.052525631437390745 +109051,545.2550000002965,-0.05252514203658196 +109052,545.2600000002966,-0.0525246523872404 +109053,545.2650000002967,-0.05252416248913879 +109054,545.2700000002968,-0.05252367234204955 +109055,545.2750000002969,-0.05252318194574481 +109056,545.280000000297,-0.05252269129999641 +109057,545.2850000002971,-0.05252220040457591 +109058,545.2900000002973,-0.05252170925925456 +109059,545.2950000002974,-0.05252121786380333 +109060,545.3000000002975,-0.05252072621799289 +109061,545.3050000002976,-0.05252023432159362 +109062,545.3100000002977,-0.052519742174375626 +109063,545.3150000002978,-0.05251924977610867 +109064,545.3200000002979,-0.05251875712656227 +109065,545.325000000298,-0.052518264225505616 +109066,545.3300000002981,-0.05251777107270763 +109067,545.3350000002982,-0.05251727766793691 +109068,545.3400000002983,-0.05251678401096177 +109069,545.3450000002985,-0.05251629010155024 +109070,545.3500000002986,-0.05251579593947003 +109071,545.3550000002987,-0.05251530152448855 +109072,545.3600000002988,-0.05251480685637294 +109073,545.3650000002989,-0.05251431193489002 +109074,545.370000000299,-0.052513816759806306 +109075,545.3750000002991,-0.05251332133088802 +109076,545.3800000002992,-0.0525128256479011 +109077,545.3850000002993,-0.05251232971061116 +109078,545.3900000002994,-0.0525118335187835 +109079,545.3950000002995,-0.05251133707218317 +109080,545.4000000002997,-0.05251084037057487 +109081,545.4050000002998,-0.05251034341372301 +109082,545.4100000002999,-0.052509846201391694 +109083,545.4150000003,-0.05250934873334475 +109084,545.4200000003001,-0.052508851009345665 +109085,545.4250000003002,-0.05250835302915762 +109086,545.4300000003003,-0.05250785479254351 +109087,545.4350000003004,-0.052507356299265937 +109088,545.4400000003005,-0.05250685754908716 +109089,545.4450000003006,-0.052506358541769146 +109090,545.4500000003007,-0.052505859277073554 +109091,545.4550000003009,-0.052505359754761755 +109092,545.460000000301,-0.05250485997459478 +109093,545.4650000003011,-0.05250435993633336 +109094,545.4700000003012,-0.05250385963973793 +109095,545.4750000003013,-0.0525033590845686 +109096,545.4800000003014,-0.05250285827058518 +109097,545.4850000003015,-0.05250235719754716 +109098,545.4900000003016,-0.05250185586521371 +109099,545.4950000003017,-0.05250135427334371 +109100,545.5000000003018,-0.052500852421695714 +109101,545.505000000302,-0.05250035031002797 +109102,545.510000000302,-0.0524998479380984 +109103,545.5150000003022,-0.05249934530566462 +109104,545.5200000003023,-0.052498842412483926 +109105,545.5250000003024,-0.052498339258313306 +109106,545.5300000003025,-0.05249783584290942 +109107,545.5350000003026,-0.05249733216602864 +109108,545.5400000003027,-0.05249682822742699 +109109,545.5450000003028,-0.052496324026860164 +109110,545.5500000003029,-0.05249581956408359 +109111,545.555000000303,-0.052495314838852336 +109112,545.5600000003031,-0.052494809850921156 +109113,545.5650000003033,-0.0524943046000445 +109114,545.5700000003034,-0.05249379908597649 +109115,545.5750000003035,-0.052493293308470926 +109116,545.5800000003036,-0.05249278726728127 +109117,545.5850000003037,-0.05249228096216071 +109118,545.5900000003038,-0.05249177439286204 +109119,545.5950000003039,-0.0524912675591378 +109120,545.600000000304,-0.052490760460740166 +109121,545.6050000003041,-0.052490253097421 +109122,545.6100000003042,-0.052489745468931856 +109123,545.6150000003043,-0.05248923757502394 +109124,545.6200000003045,-0.05248872941544812 +109125,545.6250000003046,-0.05248822098995498 +109126,545.6300000003047,-0.052487712298294756 +109127,545.6350000003048,-0.05248720334021734 +109128,545.6400000003049,-0.052486694115472306 +109129,545.645000000305,-0.052486184623808926 +109130,545.6500000003051,-0.05248567486497611 +109131,545.6550000003052,-0.05248516483872245 +109132,545.6600000003053,-0.052484654544796214 +109133,545.6650000003054,-0.05248414398294534 +109134,545.6700000003055,-0.05248363315291741 +109135,545.6750000003057,-0.0524831220544597 +109136,545.6800000003058,-0.05248261068731915 +109137,545.6850000003059,-0.05248209905124236 +109138,545.690000000306,-0.052481587145975596 +109139,545.6950000003061,-0.05248107497126481 +109140,545.7000000003062,-0.05248056252685558 +109141,545.7050000003063,-0.05248004981249318 +109142,545.7100000003064,-0.05247953682792254 +109143,545.7150000003065,-0.052479023572888264 +109144,545.7200000003066,-0.052478510047134594 +109145,545.7250000003067,-0.05247799625040544 +109146,545.7300000003069,-0.052477482182444406 +109147,545.735000000307,-0.05247696784299473 +109148,545.7400000003071,-0.0524764532317993 +109149,545.7450000003072,-0.0524759383486007 +109150,545.7500000003073,-0.05247542319314113 +109151,545.7550000003074,-0.05247490776516247 +109152,545.7600000003075,-0.05247439206440629 +109153,545.7650000003076,-0.05247387609061377 +109154,545.7700000003077,-0.05247335984352576 +109155,545.7750000003078,-0.05247284332288278 +109156,545.780000000308,-0.052472326528425005 +109157,545.7850000003081,-0.052471809459892244 +109158,545.7900000003082,-0.05247129211702398 +109159,545.7950000003083,-0.05247077449955934 +109160,545.8000000003084,-0.05247025660723712 +109161,545.8050000003085,-0.052469738439795764 +109162,545.8100000003086,-0.05246921999697335 +109163,545.8150000003087,-0.05246870127850764 +109164,545.8200000003088,-0.05246818228413602 +109165,545.8250000003089,-0.05246766301359554 +109166,545.830000000309,-0.05246714346662289 +109167,545.8350000003092,-0.052466623642954416 +109168,545.8400000003093,-0.05246610354232613 +109169,545.8450000003094,-0.05246558316447366 +109170,545.8500000003095,-0.0524650625091323 +109171,545.8550000003096,-0.05246454157603698 +109172,545.8600000003097,-0.05246402036492231 +109173,545.8650000003098,-0.05246349887552249 +109174,545.8700000003099,-0.05246297710757142 +109175,545.87500000031,-0.05246245506080261 +109176,545.8800000003101,-0.05246193273494924 +109177,545.8850000003102,-0.05246141012974411 +109178,545.8900000003104,-0.052460887244919666 +109179,545.8950000003105,-0.052460364080207995 +109180,545.9000000003106,-0.05245984063534086 +109181,545.9050000003107,-0.05245931691004961 +109182,545.9100000003108,-0.05245879290406528 +109183,545.9150000003109,-0.05245826861711852 +109184,545.920000000311,-0.05245774404893963 +109185,545.9250000003111,-0.05245721919925855 +109186,545.9300000003112,-0.052456694067804836 +109187,545.9350000003113,-0.0524561686543077 +109188,545.9400000003114,-0.052455642958496 +109189,545.9450000003116,-0.052455116980098214 +109190,545.9500000003117,-0.05245459071884247 +109191,545.9550000003118,-0.052454064174456506 +109192,545.9600000003119,-0.05245353734666772 +109193,545.965000000312,-0.05245301023520312 +109194,545.9700000003121,-0.05245248283978937 +109195,545.9750000003122,-0.052451955160152754 +109196,545.9800000003123,-0.05245142719601918 +109197,545.9850000003124,-0.05245089894711421 +109198,545.9900000003125,-0.05245037041316303 +109199,545.9950000003126,-0.05244984159389043 +109200,546.0000000003128,-0.052449312489020856 +109201,546.0050000003129,-0.05244878309827837 +109202,546.010000000313,-0.05244825342138667 +109203,546.0150000003131,-0.05244772345806908 +109204,546.0200000003132,-0.05244719320804853 +109205,546.0250000003133,-0.05244666267104762 +109206,546.0300000003134,-0.052446131846788535 +109207,546.0350000003135,-0.052445600734993096 +109208,546.0400000003136,-0.05244506933538274 +109209,546.0450000003137,-0.052444537647678556 +109210,546.0500000003138,-0.052444005671601235 +109211,546.055000000314,-0.052443473406871076 +109212,546.0600000003141,-0.05244294085320803 +109213,546.0650000003142,-0.05244240801033165 +109214,546.0700000003143,-0.0524418748779611 +109215,546.0750000003144,-0.05244134145581518 +109216,546.0800000003145,-0.05244080774361231 +109217,546.0850000003146,-0.05244027374107053 +109218,546.0900000003147,-0.052439739447907474 +109219,546.0950000003148,-0.05243920486384042 +109220,546.1000000003149,-0.05243866998858623 +109221,546.105000000315,-0.05243813482186141 +109222,546.1100000003152,-0.05243759936338209 +109223,546.1150000003153,-0.05243706361286398 +109224,546.1200000003154,-0.05243652757002242 +109225,546.1250000003155,-0.052435991234572356 +109226,546.1300000003156,-0.05243545460622835 +109227,546.1350000003157,-0.05243491768470459 +109228,546.1400000003158,-0.05243438046971484 +109229,546.1450000003159,-0.05243384296097251 +109230,546.150000000316,-0.05243330515819059 +109231,546.1550000003161,-0.05243276706108171 +109232,546.1600000003162,-0.052432228669358066 +109233,546.1650000003164,-0.05243168998273151 +109234,546.1700000003165,-0.05243115100091346 +109235,546.1750000003166,-0.05243061172361496 +109236,546.1800000003167,-0.05243007215054665 +109237,546.1850000003168,-0.052429532281418785 +109238,546.1900000003169,-0.052428992115941216 +109239,546.195000000317,-0.05242845165382337 +109240,546.2000000003171,-0.052427910894774346 +109241,546.2050000003172,-0.05242736983850277 +109242,546.2100000003173,-0.05242682848471691 +109243,546.2150000003174,-0.05242628683312462 +109244,546.2200000003176,-0.05242574488343337 +109245,546.2250000003177,-0.05242520263535022 +109246,546.2300000003178,-0.052424660088581806 +109247,546.2350000003179,-0.052424117242834384 +109248,546.240000000318,-0.05242357409781381 +109249,546.2450000003181,-0.05242303065322554 +109250,546.2500000003182,-0.05242248690877459 +109251,546.2550000003183,-0.0524219428641656 +109252,546.2600000003184,-0.052421398519102796 +109253,546.2650000003185,-0.05242085387329 +109254,546.2700000003186,-0.052420308926430625 +109255,546.2750000003188,-0.05241976367822767 +109256,546.2800000003189,-0.05241921812838373 +109257,546.285000000319,-0.05241867227660102 +109258,546.2900000003191,-0.052418126122581274 +109259,546.2950000003192,-0.05241757966602586 +109260,546.3000000003193,-0.05241703290663574 +109261,546.3050000003194,-0.05241648584411145 +109262,546.3100000003195,-0.05241593847815311 +109263,546.3150000003196,-0.05241539080846043 +109264,546.3200000003197,-0.052414842834732696 +109265,546.3250000003198,-0.052414294556668795 +109266,546.33000000032,-0.052413745973967196 +109267,546.3350000003201,-0.05241319708632593 +109268,546.3400000003202,-0.052412647893442625 +109269,546.3450000003203,-0.0524120983950145 +109270,546.3500000003204,-0.05241154859073832 +109271,546.3550000003205,-0.05241099848031047 +109272,546.3600000003206,-0.0524104480634269 +109273,546.3650000003207,-0.052409897339783115 +109274,546.3700000003208,-0.05240934630907424 +109275,546.3750000003209,-0.05240879497099493 +109276,546.380000000321,-0.052408243325239454 +109277,546.3850000003212,-0.05240769137150164 +109278,546.3900000003213,-0.0524071391094749 +109279,546.3950000003214,-0.0524065865388522 +109280,546.4000000003215,-0.052406033659326084 +109281,546.4050000003216,-0.05240548047058868 +109282,546.4100000003217,-0.05240492697233169 +109283,546.4150000003218,-0.05240437316424638 +109284,546.4200000003219,-0.05240381904602357 +109285,546.425000000322,-0.05240326461735367 +109286,546.4300000003221,-0.05240270987792664 +109287,546.4350000003222,-0.05240215482743203 +109288,546.4400000003224,-0.052401599465558946 +109289,546.4450000003225,-0.05240104379199606 +109290,546.4500000003226,-0.0524004878064316 +109291,546.4550000003227,-0.052399931508553384 +109292,546.4600000003228,-0.05239937489804875 +109293,546.4650000003229,-0.05239881797460464 +109294,546.470000000323,-0.05239826073790755 +109295,546.4750000003231,-0.052397703187643516 +109296,546.4800000003232,-0.05239714532349815 +109297,546.4850000003233,-0.05239658714515663 +109298,546.4900000003234,-0.05239602865230369 +109299,546.4950000003236,-0.05239546984462359 +109300,546.5000000003237,-0.052394910721800206 +109301,546.5050000003238,-0.05239435128351691 +109302,546.5100000003239,-0.05239379152945668 +109303,546.515000000324,-0.05239323145930202 +109304,546.5200000003241,-0.052392671072734986 +109305,546.5250000003242,-0.05239211036943721 +109306,546.5300000003243,-0.05239154934908984 +109307,546.5350000003244,-0.052390988011373624 +109308,546.5400000003245,-0.052390426355968814 +109309,546.5450000003246,-0.05238986438255523 +109310,546.5500000003248,-0.05238930209081225 +109311,546.5550000003249,-0.052388739480418806 +109312,546.560000000325,-0.05238817655105335 +109313,546.5650000003251,-0.0523876133023939 +109314,546.5700000003252,-0.05238704973411802 +109315,546.5750000003253,-0.05238648584590281 +109316,546.5800000003254,-0.05238592163742491 +109317,546.5850000003255,-0.05238535710836052 +109318,546.5900000003256,-0.052384792258385375 +109319,546.5950000003257,-0.05238422708717475 +109320,546.6000000003258,-0.05238366159440346 +109321,546.605000000326,-0.05238309577974588 +109322,546.6100000003261,-0.05238252964287587 +109323,546.6150000003262,-0.0523819631834669 +109324,546.6200000003263,-0.05238139640119191 +109325,546.6250000003264,-0.05238082929572343 +109326,546.6300000003265,-0.052380261866733495 +109327,546.6350000003266,-0.05237969411389368 +109328,546.6400000003267,-0.052379126036875105 +109329,546.6450000003268,-0.05237855763534843 +109330,546.6500000003269,-0.05237798890898381 +109331,546.655000000327,-0.05237741985745096 +109332,546.6600000003272,-0.052376850480419124 +109333,546.6650000003273,-0.05237628077755707 +109334,546.6700000003274,-0.05237571074853311 +109335,546.6750000003275,-0.05237514039301506 +109336,546.6800000003276,-0.052374569710670275 +109337,546.6850000003277,-0.05237399870116563 +109338,546.6900000003278,-0.052373427364167544 +109339,546.6950000003279,-0.05237285569934193 +109340,546.700000000328,-0.05237228370635425 +109341,546.7050000003281,-0.0523717113848695 +109342,546.7100000003283,-0.05237113873455216 +109343,546.7150000003284,-0.05237056575506625 +109344,546.7200000003285,-0.05236999244607532 +109345,546.7250000003286,-0.05236941880724241 +109346,546.7300000003287,-0.05236884483823012 +109347,546.7350000003288,-0.052368270538700544 +109348,546.7400000003289,-0.05236769590831528 +109349,546.745000000329,-0.05236712094673547 +109350,546.7500000003291,-0.052366545653621754 +109351,546.7550000003292,-0.052365970028634294 +109352,546.7600000003293,-0.052365394071432744 +109353,546.7650000003295,-0.052364817781676294 +109354,546.7700000003296,-0.05236424115902363 +109355,546.7750000003297,-0.05236366420313299 +109356,546.7800000003298,-0.052363086913662045 +109357,546.7850000003299,-0.05236250929026804 +109358,546.79000000033,-0.052361931332607685 +109359,546.7950000003301,-0.05236135304033722 +109360,546.8000000003302,-0.05236077441311241 +109361,546.8050000003303,-0.05236019545058848 +109362,546.8100000003304,-0.052359616152420185 +109363,546.8150000003305,-0.05235903651826179 +109364,546.8200000003307,-0.05235845654776704 +109365,546.8250000003308,-0.05235787624058918 +109366,546.8300000003309,-0.05235729559638098 +109367,546.835000000331,-0.0523567146147947 +109368,546.8400000003311,-0.05235613329548208 +109369,546.8450000003312,-0.0523555516380944 +109370,546.8500000003313,-0.05235496964228239 +109371,546.8550000003314,-0.05235438730769629 +109372,546.8600000003315,-0.05235380463398585 +109373,546.8650000003316,-0.052353221620800285 +109374,546.8700000003317,-0.05235263826778834 +109375,546.8750000003319,-0.052352054574598225 +109376,546.880000000332,-0.05235147054087766 +109377,546.8850000003321,-0.05235088616627383 +109378,546.8900000003322,-0.05235030145043341 +109379,546.8950000003323,-0.05234971639300259 +109380,546.9000000003324,-0.05234913099362704 +109381,546.9050000003325,-0.05234854525195189 +109382,546.9100000003326,-0.052347959167621784 +109383,546.9150000003327,-0.05234737274028083 +109384,546.9200000003328,-0.05234678596957265 +109385,546.925000000333,-0.052346198855140316 +109386,546.930000000333,-0.052345611396626385 +109387,546.9350000003332,-0.05234502359367291 +109388,546.9400000003333,-0.052344435445921406 +109389,546.9450000003334,-0.05234384695301287 +109390,546.9500000003335,-0.0523432581145878 +109391,546.9550000003336,-0.05234266893028614 +109392,546.9600000003337,-0.05234207939974732 +109393,546.9650000003338,-0.05234148952261026 +109394,546.9700000003339,-0.05234089929851332 +109395,546.975000000334,-0.052340308727094366 +109396,546.9800000003341,-0.05233971780799071 +109397,546.9850000003343,-0.052339126540839144 +109398,546.9900000003344,-0.05233853492527595 +109399,546.9950000003345,-0.05233794296093684 +109400,547.0000000003346,-0.052337350647457016 +109401,547.0050000003347,-0.05233675798447115 +109402,547.0100000003348,-0.05233616497161336 +109403,547.0150000003349,-0.05233557160851724 +109404,547.020000000335,-0.052334977894815865 +109405,547.0250000003351,-0.052334383830141745 +109406,547.0300000003352,-0.05233378941412687 +109407,547.0350000003353,-0.05233319464640266 +109408,547.0400000003355,-0.052332599526600035 +109409,547.0450000003356,-0.05233200405434935 +109410,547.0500000003357,-0.05233140822928043 +109411,547.0550000003358,-0.05233081205102254 +109412,547.0600000003359,-0.0523302155192044 +109413,547.065000000336,-0.05232961863345422 +109414,547.0700000003361,-0.052329021393399615 +109415,547.0750000003362,-0.05232842379866767 +109416,547.0800000003363,-0.05232782584888493 +109417,547.0850000003364,-0.052327227543677385 +109418,547.0900000003365,-0.05232662888267048 +109419,547.0950000003367,-0.05232602986548909 +109420,547.1000000003368,-0.052325430491757544 +109421,547.1050000003369,-0.05232483076109964 +109422,547.110000000337,-0.05232423067313857 +109423,547.1150000003371,-0.05232363022749704 +109424,547.1200000003372,-0.05232302942379712 +109425,547.1250000003373,-0.05232242826166039 +109426,547.1300000003374,-0.05232182674070784 +109427,547.1350000003375,-0.05232122486055988 +109428,547.1400000003376,-0.05232062262083641 +109429,547.1450000003377,-0.052320020021156696 +109430,547.1500000003379,-0.05231941706113952 +109431,547.155000000338,-0.05231881374040304 +109432,547.1600000003381,-0.05231821005856487 +109433,547.1650000003382,-0.05231760601524207 +109434,547.1700000003383,-0.052317001610051095 +109435,547.1750000003384,-0.052316396842607873 +109436,547.1800000003385,-0.052315791712527725 +109437,547.1850000003386,-0.05231518621942543 +109438,547.1900000003387,-0.05231458036291518 +109439,547.1950000003388,-0.05231397414261059 +109440,547.200000000339,-0.05231336755812471 +109441,547.205000000339,-0.05231276060907001 +109442,547.2100000003392,-0.05231215329505838 +109443,547.2150000003393,-0.05231154561570114 +109444,547.2200000003394,-0.05231093757060901 +109445,547.2250000003395,-0.05231032915939218 +109446,547.2300000003396,-0.0523097203816602 +109447,547.2350000003397,-0.05230911123702207 +109448,547.2400000003398,-0.05230850172508617 +109449,547.2450000003399,-0.052307891845460364 +109450,547.25000000034,-0.052307281597751866 +109451,547.2550000003401,-0.05230667098156734 +109452,547.2600000003403,-0.052306059996512846 +109453,547.2650000003404,-0.05230544864219385 +109454,547.2700000003405,-0.05230483691821525 +109455,547.2750000003406,-0.05230422482418132 +109456,547.2800000003407,-0.05230361235969578 +109457,547.2850000003408,-0.05230299952436171 +109458,547.2900000003409,-0.05230238631778164 +109459,547.295000000341,-0.05230177273955748 +109460,547.3000000003411,-0.05230115878929054 +109461,547.3050000003412,-0.052300544466581556 +109462,547.3100000003413,-0.05229992977103064 +109463,547.3150000003415,-0.052299314702237296 +109464,547.3200000003416,-0.052298699259800456 +109465,547.3250000003417,-0.05229808344331843 +109466,547.3300000003418,-0.05229746725238893 +109467,547.3350000003419,-0.052296850686609046 +109468,547.340000000342,-0.052296233745575293 +109469,547.3450000003421,-0.05229561642888355 +109470,547.3500000003422,-0.052294998736129104 +109471,547.3550000003423,-0.05229438066690662 +109472,547.3600000003424,-0.05229376222081017 +109473,547.3650000003425,-0.052293143397433184 +109474,547.3700000003427,-0.052292524196368505 +109475,547.3750000003428,-0.05229190461720835 +109476,547.3800000003429,-0.052291284659544315 +109477,547.385000000343,-0.0522906643229674 +109478,547.3900000003431,-0.05229004360706796 +109479,547.3950000003432,-0.05228942251143574 +109480,547.4000000003433,-0.05228880103565989 +109481,547.4050000003434,-0.05228817917932888 +109482,547.4100000003435,-0.052287556942030605 +109483,547.4150000003436,-0.05228693432335231 +109484,547.4200000003437,-0.05228631132288065 +109485,547.4250000003439,-0.052285687940201615 +109486,547.430000000344,-0.05228506417490057 +109487,547.4350000003441,-0.05228444002656227 +109488,547.4400000003442,-0.05228381549477082 +109489,547.4450000003443,-0.05228319057910972 +109490,547.4500000003444,-0.0522825652791618 +109491,547.4550000003445,-0.052281939594509295 +109492,547.4600000003446,-0.05228131352473377 +109493,547.4650000003447,-0.05228068706941619 +109494,547.4700000003448,-0.05228006022813683 +109495,547.475000000345,-0.05227943300047536 +109496,547.4800000003451,-0.05227880538601083 +109497,547.4850000003452,-0.0522781773843216 +109498,547.4900000003453,-0.05227754899498539 +109499,547.4950000003454,-0.05227692021757935 +109500,547.5000000003455,-0.05227629105167988 +109501,547.5050000003456,-0.052275661496862795 +109502,547.5100000003457,-0.05227503155270326 +109503,547.5150000003458,-0.052274401218775766 +109504,547.5200000003459,-0.052273770494654176 +109505,547.525000000346,-0.05227313937991168 +109506,547.5300000003461,-0.05227250787412085 +109507,547.5350000003463,-0.05227187597685355 +109508,547.5400000003464,-0.05227124368768104 +109509,547.5450000003465,-0.05227061100617388 +109510,547.5500000003466,-0.052269977931901995 +109511,547.5550000003467,-0.05226934446443465 +109512,547.5600000003468,-0.05226871060334045 +109513,547.5650000003469,-0.05226807634818732 +109514,547.570000000347,-0.05226744169854254 +109515,547.5750000003471,-0.05226680665397272 +109516,547.5800000003472,-0.05226617121404381 +109517,547.5850000003473,-0.05226553537832108 +109518,547.5900000003475,-0.05226489914636912 +109519,547.5950000003476,-0.052264262517751875 +109520,547.6000000003477,-0.0522636254920326 +109521,547.6050000003478,-0.05226298806877389 +109522,547.6100000003479,-0.05226235024753767 +109523,547.615000000348,-0.05226171202788517 +109524,547.6200000003481,-0.05226107340937695 +109525,547.6250000003482,-0.05226043439157289 +109526,547.6300000003483,-0.05225979497403221 +109527,547.6350000003484,-0.052259155156313415 +109528,547.6400000003486,-0.05225851493797434 +109529,547.6450000003487,-0.052257874318572164 +109530,547.6500000003488,-0.05225723329766333 +109531,547.6550000003489,-0.05225659187480365 +109532,547.660000000349,-0.05225595004954821 +109533,547.6650000003491,-0.052255307821451394 +109534,547.6700000003492,-0.05225466519006695 +109535,547.6750000003493,-0.05225402215494788 +109536,547.6800000003494,-0.05225337871564652 +109537,547.6850000003495,-0.05225273487171451 +109538,547.6900000003496,-0.05225209062270278 +109539,547.6950000003498,-0.05225144596816158 +109540,547.7000000003499,-0.05225080090764043 +109541,547.70500000035,-0.052250155440688194 +109542,547.7100000003501,-0.052249509566852995 +109543,547.7150000003502,-0.052248863285682276 +109544,547.7200000003503,-0.05224821659672277 +109545,547.7250000003504,-0.052247569499520495 +109546,547.7300000003505,-0.052246921993620764 +109547,547.7350000003506,-0.052246274078568196 +109548,547.7400000003507,-0.052245625753906684 +109549,547.7450000003508,-0.052244977019179406 +109550,547.750000000351,-0.05224432787392884 +109551,547.7550000003511,-0.05224367831769673 +109552,547.7600000003512,-0.05224302835002413 +109553,547.7650000003513,-0.05224237797045137 +109554,547.7700000003514,-0.05224172717851805 +109555,547.7750000003515,-0.05224107597376303 +109556,547.7800000003516,-0.0522404243557245 +109557,547.7850000003517,-0.05223977232393988 +109558,547.7900000003518,-0.05223911987794588 +109559,547.7950000003519,-0.052238467017278495 +109560,547.800000000352,-0.052237813741472995 +109561,547.8050000003522,-0.05223716005006388 +109562,547.8100000003523,-0.05223650594258497 +109563,547.8150000003524,-0.052235851418569325 +109564,547.8200000003525,-0.05223519647754927 +109565,547.8250000003526,-0.052234541119056406 +109566,547.8300000003527,-0.05223388534262159 +109567,547.8350000003528,-0.05223322914777495 +109568,547.8400000003529,-0.05223257253404586 +109569,547.845000000353,-0.052231915500962955 +109570,547.8500000003531,-0.05223125804805415 +109571,547.8550000003532,-0.05223060017484657 +109572,547.8600000003534,-0.052229941880866645 +109573,547.8650000003535,-0.052229283165640045 +109574,547.8700000003536,-0.05222862402869164 +109575,547.8750000003537,-0.052227964469545626 +109576,547.8800000003538,-0.05222730448772539 +109577,547.8850000003539,-0.0522266440827536 +109578,547.890000000354,-0.05222598325415214 +109579,547.8950000003541,-0.05222532200144216 +109580,547.9000000003542,-0.05222466032414406 +109581,547.9050000003543,-0.05222399822177744 +109582,547.9100000003544,-0.05222333569386116 +109583,547.9150000003546,-0.05222267273991335 +109584,547.9200000003547,-0.05222200935945132 +109585,547.9250000003548,-0.05222134555199166 +109586,547.9300000003549,-0.05222068131705017 +109587,547.935000000355,-0.05222001665414186 +109588,547.9400000003551,-0.05221935156278101 +109589,547.9450000003552,-0.05221868604248112 +109590,547.9500000003553,-0.0522180200927549 +109591,547.9550000003554,-0.05221735371311428 +109592,547.9600000003555,-0.05221668690307044 +109593,547.9650000003556,-0.05221601966213376 +109594,547.9700000003558,-0.05221535198981384 +109595,547.9750000003559,-0.05221468388561952 +109596,547.980000000356,-0.052214015349058826 +109597,547.9850000003561,-0.05221334637963902 +109598,547.9900000003562,-0.05221267697686656 +109599,547.9950000003563,-0.05221200714024714 +109600,548.0000000003564,-0.052211336869285634 +109601,548.0050000003565,-0.05221066616348615 +109602,548.0100000003566,-0.052209995022352004 +109603,548.0150000003567,-0.052209323445385696 +109604,548.0200000003568,-0.05220865143208893 +109605,548.025000000357,-0.05220797898196264 +109606,548.0300000003571,-0.05220730609450693 +109607,548.0350000003572,-0.052206632769221134 +109608,548.0400000003573,-0.05220595900560373 +109609,548.0450000003574,-0.05220528480315245 +109610,548.0500000003575,-0.052204610161364184 +109611,548.0550000003576,-0.052203935079735045 +109612,548.0600000003577,-0.05220325955776029 +109613,548.0650000003578,-0.0522025835949344 +109614,548.0700000003579,-0.05220190719075103 +109615,548.075000000358,-0.05220123034470304 +109616,548.0800000003582,-0.052200553056282434 +109617,548.0850000003583,-0.052199875324980424 +109618,548.0900000003584,-0.0521991971502874 +109619,548.0950000003585,-0.05219851853169294 +109620,548.1000000003586,-0.05219783946868579 +109621,548.1050000003587,-0.05219715996075384 +109622,548.1100000003588,-0.05219648000738421 +109623,548.1150000003589,-0.052195799608063156 +109624,548.120000000359,-0.052195118762276095 +109625,548.1250000003591,-0.05219443746950765 +109626,548.1300000003592,-0.05219375572924157 +109627,548.1350000003594,-0.0521930735409608 +109628,548.1400000003595,-0.052192390904147415 +109629,548.1450000003596,-0.052191707818282695 +109630,548.1500000003597,-0.05219102428284704 +109631,548.1550000003598,-0.052190340297320024 +109632,548.1600000003599,-0.05218965586118037 +109633,548.16500000036,-0.05218897097390597 +109634,548.1700000003601,-0.05218828563497385 +109635,548.1750000003602,-0.05218759984386021 +109636,548.1800000003603,-0.05218691360004037 +109637,548.1850000003604,-0.05218622690298881 +109638,548.1900000003606,-0.05218553975217914 +109639,548.1950000003607,-0.05218485214708415 +109640,548.2000000003608,-0.052184164087175744 +109641,548.2050000003609,-0.05218347557192497 +109642,548.210000000361,-0.05218278660080202 +109643,548.2150000003611,-0.0521820971732762 +109644,548.2200000003612,-0.05218140728881599 +109645,548.2250000003613,-0.052180716946888965 +109646,548.2300000003614,-0.05218002614696185 +109647,548.2350000003615,-0.052179334888500496 +109648,548.2400000003616,-0.05217864317096987 +109649,548.2450000003618,-0.05217795099383408 +109650,548.2500000003619,-0.05217725835655634 +109651,548.255000000362,-0.052176565258599 +109652,548.2600000003621,-0.052175871699423525 +109653,548.2650000003622,-0.0521751776784905 +109654,548.2700000003623,-0.05217448319525963 +109655,548.2750000003624,-0.052173788249189716 +109656,548.2800000003625,-0.052173092839738686 +109657,548.2850000003626,-0.05217239696636357 +109658,548.2900000003627,-0.052171700628520515 +109659,548.2950000003628,-0.05217100382566476 +109660,548.300000000363,-0.052170306557250655 +109661,548.3050000003631,-0.052169608822731674 +109662,548.3100000003632,-0.05216891062156036 +109663,548.3150000003633,-0.05216821195318836 +109664,548.3200000003634,-0.05216751281706644 +109665,548.3250000003635,-0.05216681321264444 +109666,548.3300000003636,-0.052166113139371306 +109667,548.3350000003637,-0.05216541259669505 +109668,548.3400000003638,-0.0521647115840628 +109669,548.3450000003639,-0.05216401010092076 +109670,548.350000000364,-0.05216330814671423 +109671,548.3550000003642,-0.05216260572088757 +109672,548.3600000003643,-0.05216190282288424 +109673,548.3650000003644,-0.05216119945214679 +109674,548.3700000003645,-0.05216049560811681 +109675,548.3750000003646,-0.05215979129023499 +109676,548.3800000003647,-0.052159086497941105 +109677,548.3850000003648,-0.05215838123067397 +109678,548.3900000003649,-0.0521576754878715 +109679,548.395000000365,-0.052156969268970656 +109680,548.4000000003651,-0.052156262573407476 +109681,548.4050000003652,-0.052155555400617046 +109682,548.4100000003654,-0.05215484775003354 +109683,548.4150000003655,-0.05215413962109017 +109684,548.4200000003656,-0.052153431013219204 +109685,548.4250000003657,-0.05215272192585198 +109686,548.4300000003658,-0.052152012358418876 +109687,548.4350000003659,-0.052151302310349326 +109688,548.440000000366,-0.052150591781071814 +109689,548.4450000003661,-0.05214988077001388 +109690,548.4500000003662,-0.0521491692766021 +109691,548.4550000003663,-0.05214845730026208 +109692,548.4600000003664,-0.05214774484041848 +109693,548.4650000003666,-0.05214703189649502 +109694,548.4700000003667,-0.05214631846791441 +109695,548.4750000003668,-0.05214560455409844 +109696,548.4800000003669,-0.0521448901544679 +109697,548.485000000367,-0.05214417526844262 +109698,548.4900000003671,-0.05214345989544148 +109699,548.4950000003672,-0.05214274403488236 +109700,548.5000000003673,-0.05214202768618216 +109701,548.5050000003674,-0.05214131084875683 +109702,548.5100000003675,-0.05214059352202132 +109703,548.5150000003676,-0.0521398757053896 +109704,548.5200000003678,-0.05213915739827465 +109705,548.5250000003679,-0.05213843860008848 +109706,548.530000000368,-0.05213771931024211 +109707,548.5350000003681,-0.05213699952814554 +109708,548.5400000003682,-0.052136279253207816 +109709,548.5450000003683,-0.05213555848483698 +109710,548.5500000003684,-0.052134837222440056 +109711,548.5550000003685,-0.052134115465423084 +109712,548.5600000003686,-0.05213339321319108 +109713,548.5650000003687,-0.052132670465148113 +109714,548.5700000003689,-0.05213194722069719 +109715,548.575000000369,-0.05213122347924032 +109716,548.5800000003691,-0.05213049924017853 +109717,548.5850000003692,-0.0521297745029118 +109718,548.5900000003693,-0.05212904926683912 +109719,548.5950000003694,-0.05212832353135845 +109720,548.6000000003695,-0.05212759729586674 +109721,548.6050000003696,-0.0521268705597599 +109722,548.6100000003697,-0.05212614332243284 +109723,548.6150000003698,-0.05212541558327943 +109724,548.6200000003699,-0.052124687341692524 +109725,548.62500000037,-0.0521239585970639 +109726,548.6300000003702,-0.05212322934878439 +109727,548.6350000003703,-0.05212249959624372 +109728,548.6400000003704,-0.05212176933883057 +109729,548.6450000003705,-0.05212103857593266 +109730,548.6500000003706,-0.052120307306936585 +109731,548.6550000003707,-0.05211957553122794 +109732,548.6600000003708,-0.05211884324819127 +109733,548.6650000003709,-0.05211811045721005 +109734,548.670000000371,-0.052117377157666726 +109735,548.6750000003711,-0.05211664334894268 +109736,548.6800000003713,-0.05211590903041824 +109737,548.6850000003714,-0.052115174201472686 +109738,548.6900000003715,-0.052114438861484216 +109739,548.6950000003716,-0.05211370300982999 +109740,548.7000000003717,-0.05211296664588609 +109741,548.7050000003718,-0.052112229769027525 +109742,548.7100000003719,-0.05211149237862823 +109743,548.715000000372,-0.0521107544740611 +109744,548.7200000003721,-0.05211001605469792 +109745,548.7250000003722,-0.052109277119909425 +109746,548.7300000003723,-0.05210853766906526 +109747,548.7350000003725,-0.05210779770153397 +109748,548.7400000003726,-0.052107057216683045 +109749,548.7450000003727,-0.05210631621387887 +109750,548.7500000003728,-0.05210557469248676 +109751,548.7550000003729,-0.05210483265187091 +109752,548.760000000373,-0.05210409009139444 +109753,548.7650000003731,-0.05210334701041938 +109754,548.7700000003732,-0.05210260340830665 +109755,548.7750000003733,-0.05210185928441607 +109756,548.7800000003734,-0.05210111463810634 +109757,548.7850000003735,-0.0521003694687351 +109758,548.7900000003737,-0.05209962377565884 +109759,548.7950000003738,-0.052098877558232955 +109760,548.8000000003739,-0.05209813081581173 +109761,548.805000000374,-0.05209738354774832 +109762,548.8100000003741,-0.05209663575339478 +109763,548.8150000003742,-0.05209588743210202 +109764,548.8200000003743,-0.052095138583219854 +109765,548.8250000003744,-0.05209438920609695 +109766,548.8300000003745,-0.05209363930008085 +109767,548.8350000003746,-0.052092888864517975 +109768,548.8400000003747,-0.05209213789875361 +109769,548.8450000003749,-0.0520913864021319 +109770,548.850000000375,-0.05209063437399586 +109771,548.8550000003751,-0.052089881813687344 +109772,548.8600000003752,-0.05208912872054708 +109773,548.8650000003753,-0.05208837509391464 +109774,548.8700000003754,-0.05208762093312845 +109775,548.8750000003755,-0.0520868662375258 +109776,548.8800000003756,-0.05208611100644281 +109777,548.8850000003757,-0.052085355239214426 +109778,548.8900000003758,-0.05208459893517447 +109779,548.895000000376,-0.05208384209365559 +109780,548.900000000376,-0.052083084713989265 +109781,548.9050000003762,-0.05208232679550579 +109782,548.9100000003763,-0.052081568337534336 +109783,548.9150000003764,-0.05208080933940285 +109784,548.9200000003765,-0.052080049800438136 +109785,548.9250000003766,-0.05207928971996582 +109786,548.9300000003767,-0.052078529097310325 +109787,548.9350000003768,-0.05207776793179492 +109788,548.9400000003769,-0.052077006222741674 +109789,548.945000000377,-0.05207624396947145 +109790,548.9500000003771,-0.05207548117130395 +109791,548.9550000003773,-0.05207471782755768 +109792,548.9600000003774,-0.05207395393754992 +109793,548.9650000003775,-0.052073189500596785 +109794,548.9700000003776,-0.05207242451601316 +109795,548.9750000003777,-0.052071658983112744 +109796,548.9800000003778,-0.052070892901208025 +109797,548.9850000003779,-0.05207012626961027 +109798,548.990000000378,-0.05206935908762955 +109799,548.9950000003781,-0.05206859135457472 +109800,549.0000000003782,-0.052067823069753404 +109801,549.0050000003783,-0.05206705423247199 +109802,549.0100000003785,-0.05206628484203569 +109803,549.0150000003786,-0.05206551489774843 +109804,549.0200000003787,-0.05206474439891297 +109805,549.0250000003788,-0.052063973344830775 +109806,549.0300000003789,-0.052063201734802125 +109807,549.035000000379,-0.05206242956812603 +109808,549.0400000003791,-0.05206165684410029 +109809,549.0450000003792,-0.052060883562021404 +109810,549.0500000003793,-0.05206010972118469 +109811,549.0550000003794,-0.05205933532088417 +109812,549.0600000003795,-0.052058560360412655 +109813,549.0650000003797,-0.052057784839061656 +109814,549.0700000003798,-0.052057008756121466 +109815,549.0750000003799,-0.05205623211088108 +109816,549.08000000038,-0.05205545490262826 +109817,549.0850000003801,-0.052054677130649485 +109818,549.0900000003802,-0.05205389879422997 +109819,549.0950000003803,-0.05205311989265364 +109820,549.1000000003804,-0.05205234042520319 +109821,549.1050000003805,-0.05205156039115997 +109822,549.1100000003806,-0.05205077978980411 +109823,549.1150000003807,-0.05204999862041443 +109824,549.1200000003809,-0.052049216882268455 +109825,549.125000000381,-0.05204843457464243 +109826,549.1300000003811,-0.0520476516968113 +109827,549.1350000003812,-0.05204686824804871 +109828,549.1400000003813,-0.052046084227627035 +109829,549.1450000003814,-0.05204529963481731 +109830,549.1500000003815,-0.05204451446888929 +109831,549.1550000003816,-0.05204372872911141 +109832,549.1600000003817,-0.052042942414750784 +109833,549.1650000003818,-0.05204215552507324 +109834,549.170000000382,-0.05204136805934326 +109835,549.175000000382,-0.05204058001682401 +109836,549.1800000003822,-0.05203979139677736 +109837,549.1850000003823,-0.05203900219846382 +109838,549.1900000003824,-0.05203821242114259 +109839,549.1950000003825,-0.05203742206407152 +109840,549.2000000003826,-0.052036631126507145 +109841,549.2050000003827,-0.052035839607704644 +109842,549.2100000003828,-0.05203504750691786 +109843,549.2150000003829,-0.052034254823399295 +109844,549.220000000383,-0.05203346155640008 +109845,549.2250000003831,-0.05203266770517003 +109846,549.2300000003833,-0.05203187326895757 +109847,549.2350000003834,-0.0520310782470098 +109848,549.2400000003835,-0.05203028263857244 +109849,549.2450000003836,-0.05202948644288985 +109850,549.2500000003837,-0.052028689659205 +109851,549.2550000003838,-0.052027892286759525 +109852,549.2600000003839,-0.05202709432479368 +109853,549.265000000384,-0.05202629577254632 +109854,549.2700000003841,-0.05202549662925493 +109855,549.2750000003842,-0.05202469689415563 +109856,549.2800000003843,-0.05202389656648312 +109857,549.2850000003845,-0.05202309564547073 +109858,549.2900000003846,-0.05202229413035042 +109859,549.2950000003847,-0.052021492020352694 +109860,549.3000000003848,-0.0520206893147067 +109861,549.3050000003849,-0.052019886012640175 +109862,549.310000000385,-0.05201908211337944 +109863,549.3150000003851,-0.05201827761614942 +109864,549.3200000003852,-0.0520174725201736 +109865,549.3250000003853,-0.05201666682467409 +109866,549.3300000003854,-0.05201586052887154 +109867,549.3350000003855,-0.05201505363198521 +109868,549.3400000003857,-0.052014246133232904 +109869,549.3450000003858,-0.052013438031831005 +109870,549.3500000003859,-0.05201262932699447 +109871,549.355000000386,-0.052011820017936826 +109872,549.3600000003861,-0.05201101010387014 +109873,549.3650000003862,-0.05201019958400504 +109874,549.3700000003863,-0.052009388457550716 +109875,549.3750000003864,-0.05200857672371491 +109876,549.3800000003865,-0.052007764381703896 +109877,549.3850000003866,-0.052006951430722495 +109878,549.3900000003867,-0.05200613786997407 +109879,549.3950000003869,-0.05200532369866052 +109880,549.400000000387,-0.052004508915982274 +109881,549.4050000003871,-0.05200369352113829 +109882,549.4100000003872,-0.052002877513326044 +109883,549.4150000003873,-0.05200206089174155 +109884,549.4200000003874,-0.05200124365557933 +109885,549.4250000003875,-0.052000425804032434 +109886,549.4300000003876,-0.051999607336292386 +109887,549.4350000003877,-0.05199878825154926 +109888,549.4400000003878,-0.05199796854899161 +109889,549.445000000388,-0.05199714822780651 +109890,549.4500000003881,-0.0519963272871795 +109891,549.4550000003882,-0.051995505726294626 +109892,549.4600000003883,-0.05199468354433444 +109893,549.4650000003884,-0.05199386074047996 +109894,549.4700000003885,-0.05199303731391071 +109895,549.4750000003886,-0.05199221326380466 +109896,549.4800000003887,-0.05199138858933827 +109897,549.4850000003888,-0.05199056328968648 +109898,549.4900000003889,-0.051989737364022674 +109899,549.495000000389,-0.05198891081151873 +109900,549.5000000003892,-0.05198808363134498 +109901,549.5050000003893,-0.05198725582267019 +109902,549.5100000003894,-0.051986427384661596 +109903,549.5150000003895,-0.05198559831648488 +109904,549.5200000003896,-0.051984768617304174 +109905,549.5250000003897,-0.05198393828628204 +109906,549.5300000003898,-0.051983107322579485 +109907,549.5350000003899,-0.051982275725355964 +109908,549.54000000039,-0.05198144349376933 +109909,549.5450000003901,-0.05198061062697589 +109910,549.5500000003902,-0.05197977712413035 +109911,549.5550000003904,-0.051978942984385865 +109912,549.5600000003905,-0.05197810820689399 +109913,549.5650000003906,-0.05197727279080468 +109914,549.5700000003907,-0.05197643673526631 +109915,549.5750000003908,-0.05197560003942566 +109916,549.5800000003909,-0.051974762702427894 +109917,549.585000000391,-0.05197392472341659 +109918,549.5900000003911,-0.051973086101533714 +109919,549.5950000003912,-0.051972246835919604 +109920,549.6000000003913,-0.05197140692571301 +109921,549.6050000003914,-0.051970566370051034 +109922,549.6100000003916,-0.051969725168069164 +109923,549.6150000003917,-0.05196888331890127 +109924,549.6200000003918,-0.051968040821679565 +109925,549.6250000003919,-0.051967197675534677 +109926,549.630000000392,-0.05196635387959553 +109927,549.6350000003921,-0.05196550943298945 +109928,549.6400000003922,-0.051964664334842085 +109929,549.6450000003923,-0.05196381858427746 +109930,549.6500000003924,-0.05196297218041792 +109931,549.6550000003925,-0.05196212512238416 +109932,549.6600000003926,-0.05196127740929522 +109933,549.6650000003928,-0.05196042904026845 +109934,549.6700000003929,-0.05195958001441955 +109935,549.675000000393,-0.05195873033086251 +109936,549.6800000003931,-0.05195787998870968 +109937,549.6850000003932,-0.05195702898707171 +109938,549.6900000003933,-0.051956177325057556 +109939,549.6950000003934,-0.05195532500177449 +109940,549.7000000003935,-0.05195447201632806 +109941,549.7050000003936,-0.05195361836782215 +109942,549.7100000003937,-0.05195276405535891 +109943,549.7150000003938,-0.05195190907803881 +109944,549.720000000394,-0.051951053434960585 +109945,549.7250000003941,-0.051950197125221254 +109946,549.7300000003942,-0.05194934014791611 +109947,549.7350000003943,-0.05194848250213872 +109948,549.7400000003944,-0.051947624186980935 +109949,549.7450000003945,-0.051946765201532845 +109950,549.7500000003946,-0.05194590554488282 +109951,549.7550000003947,-0.051945045216117494 +109952,549.7600000003948,-0.05194418421432174 +109953,549.7650000003949,-0.051943322538578654 +109954,549.770000000395,-0.05194246018796963 +109955,549.7750000003952,-0.05194159716157425 +109956,549.7800000003953,-0.05194073345847036 +109957,549.7850000003954,-0.051939869077734034 +109958,549.7900000003955,-0.05193900401843956 +109959,549.7950000003956,-0.05193813827965946 +109960,549.8000000003957,-0.051937271860464436 +109961,549.8050000003958,-0.05193640475992346 +109962,549.8100000003959,-0.05193553697710368 +109963,549.815000000396,-0.05193466851107044 +109964,549.8200000003961,-0.051933799360887295 +109965,549.8250000003962,-0.05193292952561599 +109966,549.8300000003964,-0.05193205900431647 +109967,549.8350000003965,-0.05193118779604687 +109968,549.8400000003966,-0.05193031589986347 +109969,549.8450000003967,-0.05192944331482077 +109970,549.8500000003968,-0.05192857003997142 +109971,549.8550000003969,-0.051927696074366224 +109972,549.860000000397,-0.051926821417054174 +109973,549.8650000003971,-0.05192594606708241 +109974,549.8700000003972,-0.05192507002349622 +109975,549.8750000003973,-0.05192419328533906 +109976,549.8800000003974,-0.0519233158516525 +109977,549.8850000003976,-0.05192243772147627 +109978,549.8900000003977,-0.05192155889384823 +109979,549.8950000003978,-0.05192067936780437 +109980,549.9000000003979,-0.051919799142378806 +109981,549.905000000398,-0.051918918216603785 +109982,549.9100000003981,-0.05191803658950964 +109983,549.9150000003982,-0.051917154260124845 +109984,549.9200000003983,-0.05191627122747596 +109985,549.9250000003984,-0.05191538749058766 +109986,549.9300000003985,-0.05191450304848272 +109987,549.9350000003986,-0.05191361790018198 +109988,549.9400000003988,-0.0519127320447044 +109989,549.9450000003989,-0.051911845481067004 +109990,549.950000000399,-0.051910958208284896 +109991,549.9550000003991,-0.05191007022537126 +109992,549.9600000003992,-0.05190918153133734 +109993,549.9650000003993,-0.05190829212519245 +109994,549.9700000003994,-0.05190740200594394 +109995,549.9750000003995,-0.05190651117259724 +109996,549.9800000003996,-0.051905619624155803 +109997,549.9850000003997,-0.051904727359621164 +109998,549.9900000003998,-0.051903834377992855 +109999,549.9950000004,-0.05190294067826845 +110000,550.0000000004001,-0.051902046259443564 +110001,550.0050000004002,-0.05190115112051184 +110002,550.0100000004003,-0.051900255260464906 +110003,550.0150000004004,-0.05189935867829243 +110004,550.0200000004005,-0.051898461372982096 +110005,550.0250000004006,-0.05189756334351957 +110006,550.0300000004007,-0.0518966645888885 +110007,550.0350000004008,-0.05189576510807058 +110008,550.0400000004009,-0.05189486490004543 +110009,550.045000000401,-0.05189396396379071 +110010,550.0500000004012,-0.05189306229828201 +110011,550.0550000004013,-0.05189215990249291 +110012,550.0600000004014,-0.05189125677539495 +110013,550.0650000004015,-0.05189035291595765 +110014,550.0700000004016,-0.05188944832314847 +110015,550.0750000004017,-0.05188854299593284 +110016,550.0800000004018,-0.0518876369332741 +110017,550.0850000004019,-0.051886730134133544 +110018,550.090000000402,-0.051885822597470425 +110019,550.0950000004021,-0.0518849143222419 +110020,550.1000000004022,-0.05188400530740306 +110021,550.1050000004024,-0.051883095551906906 +110022,550.1100000004025,-0.05188218505470436 +110023,550.1150000004026,-0.051881273814744264 +110024,550.1200000004027,-0.05188036183097333 +110025,550.1250000004028,-0.051879449102336196 +110026,550.1300000004029,-0.05187853562777539 +110027,550.135000000403,-0.05187762140623131 +110028,550.1400000004031,-0.051876706436642266 +110029,550.1450000004032,-0.051875790717944396 +110030,550.1500000004033,-0.05187487424907174 +110031,550.1550000004034,-0.0518739570289562 +110032,550.1600000004036,-0.051873039056527535 +110033,550.1650000004037,-0.051872120330713346 +110034,550.1700000004038,-0.05187120085043909 +110035,550.1750000004039,-0.05187028061462809 +110036,550.180000000404,-0.05186935962220145 +110037,550.1850000004041,-0.05186843787207815 +110038,550.1900000004042,-0.051867515363174986 +110039,550.1950000004043,-0.05186659209440657 +110040,550.2000000004044,-0.05186566806468532 +110041,550.2050000004045,-0.05186474327292149 +110042,550.2100000004046,-0.051863817718023085 +110043,550.2150000004048,-0.05186289139889595 +110044,550.2200000004049,-0.051861964314443725 +110045,550.225000000405,-0.05186103646356779 +110046,550.2300000004051,-0.05186010784516735 +110047,550.2350000004052,-0.05185917845813935 +110048,550.2400000004053,-0.051858248301378536 +110049,550.2450000004054,-0.05185731737377739 +110050,550.2500000004055,-0.05185638567422617 +110051,550.2550000004056,-0.05185545320161286 +110052,550.2600000004057,-0.0518545199548232 +110053,550.2650000004058,-0.05185358593274067 +110054,550.270000000406,-0.051852651134246475 +110055,550.2750000004061,-0.051851715558219554 +110056,550.2800000004062,-0.05185077920353656 +110057,550.2850000004063,-0.05184984206907189 +110058,550.2900000004064,-0.05184890415369758 +110059,550.2950000004065,-0.05184796545628343 +110060,550.3000000004066,-0.05184702597569694 +110061,550.3050000004067,-0.051846085710803236 +110062,550.3100000004068,-0.0518451446604652 +110063,550.3150000004069,-0.05184420282354333 +110064,550.320000000407,-0.051843260198895846 +110065,550.3250000004072,-0.051842316785378616 +110066,550.3300000004073,-0.05184137258184515 +110067,550.3350000004074,-0.05184042758714664 +110068,550.3400000004075,-0.05183948180013189 +110069,550.3450000004076,-0.05183853521964738 +110070,550.3500000004077,-0.051837587844537215 +110071,550.3550000004078,-0.05183663967364309 +110072,550.3600000004079,-0.051835690705804384 +110073,550.365000000408,-0.051834740939858036 +110074,550.3700000004081,-0.05183379037463864 +110075,550.3750000004082,-0.05183283900897836 +110076,550.3800000004084,-0.05183188684170695 +110077,550.3850000004085,-0.05183093387165178 +110078,550.3900000004086,-0.051829980097637805 +110079,550.3950000004087,-0.051829025518487525 +110080,550.4000000004088,-0.05182807013302104 +110081,550.4050000004089,-0.05182711394005603 +110082,550.410000000409,-0.05182615693840765 +110083,550.4150000004091,-0.0518251991268887 +110084,550.4200000004092,-0.05182424050430949 +110085,550.4250000004093,-0.051823281069477846 +110086,550.4300000004094,-0.05182232082119914 +110087,550.4350000004096,-0.051821359758276286 +110088,550.4400000004097,-0.051820397879509685 +110089,550.4450000004098,-0.05181943518369727 +110090,550.4500000004099,-0.051818471669634464 +110091,550.45500000041,-0.051817507336114205 +110092,550.4600000004101,-0.05181654218192692 +110093,550.4650000004102,-0.05181557620586051 +110094,550.4700000004103,-0.051814609406700345 +110095,550.4750000004104,-0.051813641783229274 +110096,550.4800000004105,-0.05181267333422763 +110097,550.4850000004107,-0.05181170405847316 +110098,550.4900000004108,-0.051810733954741096 +110099,550.4950000004109,-0.051809763021804116 +110100,550.500000000411,-0.05180879125843231 +110101,550.5050000004111,-0.05180781866339319 +110102,550.5100000004112,-0.05180684523545173 +110103,550.5150000004113,-0.05180587097337029 +110104,550.5200000004114,-0.05180489587590864 +110105,550.5250000004115,-0.05180391994182396 +110106,550.5300000004116,-0.05180294316987083 +110107,550.5350000004117,-0.051801965558801184 +110108,550.5400000004119,-0.05180098710736437 +110109,550.545000000412,-0.05180000781430708 +110110,550.5500000004121,-0.051799027678373424 +110111,550.5550000004122,-0.0517980466983048 +110112,550.5600000004123,-0.05179706487284001 +110113,550.5650000004124,-0.051796082200715174 +110114,550.5700000004125,-0.05179509868066376 +110115,550.5750000004126,-0.05179411431141655 +110116,550.5800000004127,-0.051793129091701674 +110117,550.5850000004128,-0.051792143020244555 +110118,550.5900000004129,-0.05179115609576792 +110119,550.595000000413,-0.05179016831699181 +110120,550.6000000004132,-0.05178917968263356 +110121,550.6050000004133,-0.0517881901914078 +110122,550.6100000004134,-0.051787199842026385 +110123,550.6150000004135,-0.0517862086331985 +110124,550.6200000004136,-0.05178521656363057 +110125,550.6250000004137,-0.05178422363202627 +110126,550.6300000004138,-0.051783229837086525 +110127,550.6350000004139,-0.051782235177509496 +110128,550.640000000414,-0.05178123965199059 +110129,550.6450000004141,-0.05178024325922243 +110130,550.6500000004143,-0.051779245997894865 +110131,550.6550000004144,-0.051778247866694924 +110132,550.6600000004145,-0.051777248864306874 +110133,550.6650000004146,-0.05177624898941215 +110134,550.6700000004147,-0.051775248240689395 +110135,550.6750000004148,-0.05177424661681441 +110136,550.6800000004149,-0.05177324411646018 +110137,550.685000000415,-0.051772240738296844 +110138,550.6900000004151,-0.0517712364809917 +110139,550.6950000004152,-0.051770231343209204 +110140,550.7000000004153,-0.051769225323610925 +110141,550.7050000004155,-0.05176821842085559 +110142,550.7100000004156,-0.05176721063359902 +110143,550.7150000004157,-0.05176620196049419 +110144,550.7200000004158,-0.051765192400191125 +110145,550.7250000004159,-0.05176418195133701 +110146,550.730000000416,-0.05176317061257609 +110147,550.7350000004161,-0.05176215838254969 +110148,550.7400000004162,-0.05176114525989621 +110149,550.7450000004163,-0.051760131243251135 +110150,550.7500000004164,-0.051759116331247 +110151,550.7550000004165,-0.05175810052251336 +110152,550.7600000004167,-0.05175708381567687 +110153,550.7650000004168,-0.05175606620936115 +110154,550.7700000004169,-0.051755047702186904 +110155,550.775000000417,-0.05175402829277181 +110156,550.7800000004171,-0.051753007979730585 +110157,550.7850000004172,-0.051751986761674945 +110158,550.7900000004173,-0.051750964637213556 +110159,550.7950000004174,-0.05174994160495213 +110160,550.8000000004175,-0.0517489176634933 +110161,550.8050000004176,-0.051747892811436685 +110162,550.8100000004177,-0.051746867047378874 +110163,550.8150000004179,-0.05174584036991338 +110164,550.820000000418,-0.05174481277763068 +110165,550.8250000004181,-0.051743784269118166 +110166,550.8300000004182,-0.051742754842960155 +110167,550.8350000004183,-0.051741724497737895 +110168,550.8400000004184,-0.051740693232029504 +110169,550.8450000004185,-0.05173966104441003 +110170,550.8500000004186,-0.051738627933451395 +110171,550.8550000004187,-0.05173759389772241 +110172,550.8600000004188,-0.05173655893578874 +110173,550.865000000419,-0.05173552304621292 +110174,550.870000000419,-0.05173448622755434 +110175,550.8750000004192,-0.05173344847836924 +110176,550.8800000004193,-0.05173240979721068 +110177,550.8850000004194,-0.051731370182628536 +110178,550.8900000004195,-0.051730329633169536 +110179,550.8950000004196,-0.05172928814737718 +110180,550.9000000004197,-0.05172824572379179 +110181,550.9050000004198,-0.05172720236095046 +110182,550.9100000004199,-0.05172615805738707 +110183,550.91500000042,-0.05172511281163227 +110184,550.9200000004201,-0.05172406662221349 +110185,550.9250000004203,-0.051723019487654884 +110186,550.9300000004204,-0.051721971406477364 +110187,550.9350000004205,-0.05172092237719858 +110188,550.9400000004206,-0.05171987239833288 +110189,550.9450000004207,-0.05171882146839136 +110190,550.9500000004208,-0.0517177695858818 +110191,550.9550000004209,-0.051716716749308674 +110192,550.960000000421,-0.05171566295717317 +110193,550.9650000004211,-0.05171460820797311 +110194,550.9700000004212,-0.051713552500203035 +110195,550.9750000004213,-0.051712495832354106 +110196,550.9800000004215,-0.05171143820291414 +110197,550.9850000004216,-0.051710379610367584 +110198,550.9900000004217,-0.05170932005319554 +110199,550.9950000004218,-0.051708259529875705 +110200,551.0000000004219,-0.051707198038882386 +110201,551.005000000422,-0.0517061355786865 +110202,551.0100000004221,-0.05170507214775556 +110203,551.0150000004222,-0.05170400774455364 +110204,551.0200000004223,-0.05170294236754138 +110205,551.0250000004224,-0.05170187601517603 +110206,551.0300000004225,-0.051700808685911315 +110207,551.0350000004227,-0.05169974037819755 +110208,551.0400000004228,-0.051698671090481554 +110209,551.0450000004229,-0.05169760082120669 +110210,551.050000000423,-0.05169652956881281 +110211,551.0550000004231,-0.05169545733173628 +110212,551.0600000004232,-0.05169438410840994 +110213,551.0650000004233,-0.05169330989726312 +110214,551.0700000004234,-0.05169223469672163 +110215,551.0750000004235,-0.051691158505207696 +110216,551.0800000004236,-0.051690081321140044 +110217,551.0850000004237,-0.0516890031429338 +110218,551.0900000004239,-0.051687923969000536 +110219,551.095000000424,-0.051686843797748225 +110220,551.1000000004241,-0.05168576262758127 +110221,551.1050000004242,-0.05168468045690045 +110222,551.1100000004243,-0.05168359728410293 +110223,551.1150000004244,-0.051682513107582255 +110224,551.1200000004245,-0.05168142792572833 +110225,551.1250000004246,-0.05168034173692743 +110226,551.1300000004247,-0.05167925453956214 +110227,551.1350000004248,-0.0516781663320114 +110228,551.140000000425,-0.05167707711265048 +110229,551.1450000004251,-0.05167598687985093 +110230,551.1500000004252,-0.051674895631980605 +110231,551.1550000004253,-0.05167380336740367 +110232,551.1600000004254,-0.051672710084480544 +110233,551.1650000004255,-0.05167161578156794 +110234,551.1700000004256,-0.051670520457018795 +110235,551.1750000004257,-0.0516694241091823 +110236,551.1800000004258,-0.0516683267364039 +110237,551.1850000004259,-0.05166722833702522 +110238,551.190000000426,-0.05166612890938413 +110239,551.1950000004261,-0.05166502845181469 +110240,551.2000000004263,-0.05166392696264714 +110241,551.2050000004264,-0.051662824440207915 +110242,551.2100000004265,-0.05166172088281958 +110243,551.2150000004266,-0.0516606162888009 +110244,551.2200000004267,-0.051659510656466734 +110245,551.2250000004268,-0.05165840398412812 +110246,551.2300000004269,-0.051657296270092176 +110247,551.235000000427,-0.05165618751266214 +110248,551.2400000004271,-0.051655077710137366 +110249,551.2450000004272,-0.05165396686081326 +110250,551.2500000004273,-0.051652854962981325 +110251,551.2550000004275,-0.051651742014929114 +110252,551.2600000004276,-0.05165062801494023 +110253,551.2650000004277,-0.05164951296129431 +110254,551.2700000004278,-0.05164839685226703 +110255,551.2750000004279,-0.05164727968613007 +110256,551.280000000428,-0.0516461614611511 +110257,551.2850000004281,-0.051645042175593785 +110258,551.2900000004282,-0.051643921827717806 +110259,551.2950000004283,-0.051642800415778754 +110260,551.3000000004284,-0.05164167793802818 +110261,551.3050000004285,-0.05164055439271361 +110262,551.3100000004287,-0.051639429778078484 +110263,551.3150000004288,-0.051638304092362135 +110264,551.3200000004289,-0.05163717733379984 +110265,551.325000000429,-0.051636049500622734 +110266,551.3300000004291,-0.05163492059105785 +110267,551.3350000004292,-0.05163379060332808 +110268,551.3400000004293,-0.051632659535652166 +110269,551.3450000004294,-0.0516315273862447 +110270,551.3500000004295,-0.051630394153316106 +110271,551.3550000004296,-0.051629259835072605 +110272,551.3600000004297,-0.05162812442971625 +110273,551.3650000004299,-0.05162698793544486 +110274,551.37000000043,-0.05162585035045204 +110275,551.3750000004301,-0.051624711672927176 +110276,551.3800000004302,-0.05162357190105537 +110277,551.3850000004303,-0.05162243103301751 +110278,551.3900000004304,-0.05162128906699016 +110279,551.3950000004305,-0.051620146001145645 +110280,551.4000000004306,-0.05161900183365195 +110281,551.4050000004307,-0.05161785656267279 +110282,551.4100000004308,-0.0516167101863675 +110283,551.415000000431,-0.05161556270289111 +110284,551.4200000004311,-0.05161441411039431 +110285,551.4250000004312,-0.05161326440702339 +110286,551.4300000004313,-0.051612113590920286 +110287,551.4350000004314,-0.05161096166022253 +110288,551.4400000004315,-0.05160980861306324 +110289,551.4450000004316,-0.051608654447571116 +110290,551.4500000004317,-0.051607499161870435 +110291,551.4550000004318,-0.05160634275408104 +110292,551.4600000004319,-0.05160518522231829 +110293,551.465000000432,-0.05160402656469305 +110294,551.4700000004322,-0.05160286677931174 +110295,551.4750000004323,-0.05160170586427627 +110296,551.4800000004324,-0.051600543817684 +110297,551.4850000004325,-0.05159938063762779 +110298,551.4900000004326,-0.05159821632219595 +110299,551.4950000004327,-0.05159705086947224 +110300,551.5000000004328,-0.05159588427753583 +110301,551.5050000004329,-0.051594716544461294 +110302,551.510000000433,-0.05159354766831863 +110303,551.5150000004331,-0.051592377647173226 +110304,551.5200000004332,-0.05159120647908581 +110305,551.5250000004334,-0.05159003416211249 +110306,551.5300000004335,-0.0515888606943047 +110307,551.5350000004336,-0.051587686073709206 +110308,551.5400000004337,-0.051586510298368096 +110309,551.5450000004338,-0.05158533336631875 +110310,551.5500000004339,-0.05158415527559383 +110311,551.555000000434,-0.051582976024221266 +110312,551.5600000004341,-0.05158179561022423 +110313,551.5650000004342,-0.051580614031621154 +110314,551.5700000004343,-0.05157943128642569 +110315,551.5750000004344,-0.05157824737264667 +110316,551.5800000004346,-0.05157706228828818 +110317,551.5850000004347,-0.05157587603134941 +110318,551.5900000004348,-0.05157468859982477 +110319,551.5950000004349,-0.05157349999170378 +110320,551.600000000435,-0.05157231020497115 +110321,551.6050000004351,-0.05157111923760664 +110322,551.6100000004352,-0.05156992708758514 +110323,551.6150000004353,-0.051568733752876655 +110324,551.6200000004354,-0.051567539231446205 +110325,551.6250000004355,-0.051566343521253916 +110326,551.6300000004356,-0.05156514662025492 +110327,551.6350000004358,-0.051563948526399415 +110328,551.6400000004359,-0.05156274923763256 +110329,551.645000000436,-0.051561548751894525 +110330,551.6500000004361,-0.05156034706712046 +110331,551.6550000004362,-0.051559144181240496 +110332,551.6600000004363,-0.05155794009217968 +110333,551.6650000004364,-0.05155673479785799 +110334,551.6700000004365,-0.05155552829619032 +110335,551.6750000004366,-0.05155432058508649 +110336,551.6800000004367,-0.05155311166245115 +110337,551.6850000004368,-0.05155190152618386 +110338,551.690000000437,-0.051550690174178994 +110339,551.6950000004371,-0.05154947760432579 +110340,551.7000000004372,-0.05154826381450826 +110341,551.7050000004373,-0.051547048802605244 +110342,551.7100000004374,-0.051545832566490375 +110343,551.7150000004375,-0.05154461510403202 +110344,551.7200000004376,-0.05154339641309331 +110345,551.7250000004377,-0.05154217649153209 +110346,551.7300000004378,-0.051540955337200954 +110347,551.7350000004379,-0.051539732947947156 +110348,551.740000000438,-0.05153850932161266 +110349,551.7450000004382,-0.05153728445603409 +110350,551.7500000004383,-0.05153605834904269 +110351,551.7550000004384,-0.05153483099846437 +110352,551.7600000004385,-0.05153360240211963 +110353,551.7650000004386,-0.05153237255782355 +110354,551.7700000004387,-0.051531141463385825 +110355,551.7750000004388,-0.051529909116610685 +110356,551.7800000004389,-0.0515286755152969 +110357,551.785000000439,-0.05152744065723778 +110358,551.7900000004391,-0.05152620454022112 +110359,551.7950000004392,-0.051524967162029214 +110360,551.8000000004394,-0.051523728520438836 +110361,551.8050000004395,-0.0515224886132212 +110362,551.8100000004396,-0.05152124743814197 +110363,551.8150000004397,-0.05152000499296121 +110364,551.8200000004398,-0.05151876127543338 +110365,551.8250000004399,-0.05151751628330734 +110366,551.83000000044,-0.051516270014326314 +110367,551.8350000004401,-0.051515022466227835 +110368,551.8400000004402,-0.051513773636743795 +110369,551.8450000004403,-0.05151252352360038 +110370,551.8500000004404,-0.05151127212451806 +110371,551.8550000004406,-0.0515100194372116 +110372,551.8600000004407,-0.05150876545938996 +110373,551.8650000004408,-0.05150751018875641 +110374,551.8700000004409,-0.05150625362300836 +110375,551.875000000441,-0.05150499575983747 +110376,551.8800000004411,-0.05150373659692953 +110377,551.8850000004412,-0.051502476131964514 +110378,551.8900000004413,-0.051501214362616524 +110379,551.8950000004414,-0.05149995128655378 +110380,551.9000000004415,-0.051498686901438606 +110381,551.9050000004416,-0.051497421204927375 +110382,551.9100000004418,-0.05149615419467058 +110383,551.9150000004419,-0.0514948858683127 +110384,551.920000000442,-0.051493616223492224 +110385,551.9250000004421,-0.05149234525784171 +110386,551.9300000004422,-0.051491072968987625 +110387,551.9350000004423,-0.05148979935455044 +110388,551.9400000004424,-0.05148852441214454 +110389,551.9450000004425,-0.05148724813937825 +110390,551.9500000004426,-0.05148597053385377 +110391,551.9550000004427,-0.051484691593167216 +110392,551.9600000004428,-0.051483411314908537 +110393,551.965000000443,-0.051482129696661515 +110394,551.9700000004431,-0.05148084673600378 +110395,551.9750000004432,-0.05147956243050675 +110396,551.9800000004433,-0.051478276777735574 +110397,551.9850000004434,-0.05147698977524923 +110398,551.9900000004435,-0.05147570142060039 +110399,551.9950000004436,-0.051474411711335454 +110400,552.0000000004437,-0.05147312064499449 +110401,552.0050000004438,-0.05147182821911129 +110402,552.0100000004439,-0.05147053443121324 +110403,552.015000000444,-0.05146923927882139 +110404,552.0200000004442,-0.051467942759450394 +110405,552.0250000004443,-0.051466644870608494 +110406,552.0300000004444,-0.05146534560979748 +110407,552.0350000004445,-0.05146404497451272 +110408,552.0400000004446,-0.05146274296224308 +110409,552.0450000004447,-0.05146143957047093 +110410,552.0500000004448,-0.05146013479667212 +110411,552.0550000004449,-0.05145882863831597 +110412,552.060000000445,-0.051457521092865194 +110413,552.0650000004451,-0.05145621215777597 +110414,552.0700000004452,-0.05145490183049782 +110415,552.0750000004454,-0.051453590108473675 +110416,552.0800000004455,-0.0514522769891398 +110417,552.0850000004456,-0.05145096246992577 +110418,552.0900000004457,-0.05144964654825445 +110419,552.0950000004458,-0.051448329221542015 +110420,552.1000000004459,-0.051447010487197874 +110421,552.105000000446,-0.051445690342624674 +110422,552.1100000004461,-0.05144436878521826 +110423,552.1150000004462,-0.05144304581236769 +110424,552.1200000004463,-0.051441721421455144 +110425,552.1250000004464,-0.05144039560985597 +110426,552.1300000004466,-0.051439068374938626 +110427,552.1350000004467,-0.051437739714064665 +110428,552.1400000004468,-0.051436409624588696 +110429,552.1450000004469,-0.05143507810385839 +110430,552.150000000447,-0.051433745149214415 +110431,552.1550000004471,-0.05143241075799047 +110432,552.1600000004472,-0.0514310749275132 +110433,552.1650000004473,-0.05142973765510219 +110434,552.1700000004474,-0.05142839893806999 +110435,552.1750000004475,-0.05142705877372201 +110436,552.1800000004476,-0.051425717159356565 +110437,552.1850000004478,-0.051424374092264816 +110438,552.1900000004479,-0.051423029569730716 +110439,552.195000000448,-0.05142168358903106 +110440,552.2000000004481,-0.05142033614743542 +110441,552.2050000004482,-0.0514189872422061 +110442,552.2100000004483,-0.051417636870598145 +110443,552.2150000004484,-0.05141628502985928 +110444,552.2200000004485,-0.051414931717229946 +110445,552.2250000004486,-0.05141357692994321 +110446,552.2300000004487,-0.05141222066522474 +110447,552.2350000004488,-0.05141086292029286 +110448,552.240000000449,-0.05140950369235843 +110449,552.2450000004491,-0.051408142978624866 +110450,552.2500000004492,-0.051406780776288116 +110451,552.2550000004493,-0.05140541708253663 +110452,552.2600000004494,-0.0514040518945513 +110453,552.2650000004495,-0.05140268520950549 +110454,552.2700000004496,-0.05140131702456496 +110455,552.2750000004497,-0.051399947336887894 +110456,552.2800000004498,-0.051398576143624794 +110457,552.2850000004499,-0.05139720344191855 +110458,552.29000000045,-0.05139582922890432 +110459,552.2950000004502,-0.051394453501709576 +110460,552.3000000004503,-0.051393076257454054 +110461,552.3050000004504,-0.051391697493249684 +110462,552.3100000004505,-0.051390317206200624 +110463,552.3150000004506,-0.05138893539340319 +110464,552.3200000004507,-0.051387552051945874 +110465,552.3250000004508,-0.05138616717890928 +110466,552.3300000004509,-0.051384780771366066 +110467,552.335000000451,-0.05138339282638101 +110468,552.3400000004511,-0.0513820033410109 +110469,552.3450000004513,-0.05138061231230452 +110470,552.3500000004514,-0.05137921973730266 +110471,552.3550000004515,-0.05137782561303804 +110472,552.3600000004516,-0.05137642993653533 +110473,552.3650000004517,-0.051375032704811065 +110474,552.3700000004518,-0.05137363391487365 +110475,552.3750000004519,-0.05137223356372334 +110476,552.380000000452,-0.05137083164835221 +110477,552.3850000004521,-0.051369428165744066 +110478,552.3900000004522,-0.05136802311287453 +110479,552.3950000004523,-0.05136661648671087 +110480,552.4000000004525,-0.0513652082842121 +110481,552.4050000004526,-0.051363798502328875 +110482,552.4100000004527,-0.051362387138003486 +110483,552.4150000004528,-0.051360974188169824 +110484,552.4200000004529,-0.05135955964975334 +110485,552.425000000453,-0.05135814351967103 +110486,552.4300000004531,-0.051356725794831436 +110487,552.4350000004532,-0.051355306472134515 +110488,552.4400000004533,-0.05135388554847172 +110489,552.4450000004534,-0.05135246302072591 +110490,552.4500000004535,-0.05135103888577133 +110491,552.4550000004537,-0.05134961314047358 +110492,552.4600000004538,-0.05134818578168959 +110493,552.4650000004539,-0.051346756806267595 +110494,552.470000000454,-0.051345326211047065 +110495,552.4750000004541,-0.05134389399285873 +110496,552.4800000004542,-0.0513424601485245 +110497,552.4850000004543,-0.051341024674857454 +110498,552.4900000004544,-0.051339587568661825 +110499,552.4950000004545,-0.05133814882673293 +110500,552.5000000004546,-0.05133670844585717 +110501,552.5050000004547,-0.05133526642281197 +110502,552.5100000004549,-0.051333822754365786 +110503,552.515000000455,-0.05133237743727801 +110504,552.5200000004551,-0.051330930468299014 +110505,552.5250000004552,-0.05132948184417006 +110506,552.5300000004553,-0.05132803156162329 +110507,552.5350000004554,-0.051326579617381685 +110508,552.5400000004555,-0.05132512600815901 +110509,552.5450000004556,-0.05132367073065984 +110510,552.5500000004557,-0.05132221378157948 +110511,552.5550000004558,-0.051320755157603926 +110512,552.560000000456,-0.05131929485540988 +110513,552.565000000456,-0.05131783287166464 +110514,552.5700000004562,-0.05131636920302613 +110515,552.5750000004563,-0.05131490384614285 +110516,552.5800000004564,-0.051313436797653836 +110517,552.5850000004565,-0.0513119680541886 +110518,552.5900000004566,-0.05131049761236713 +110519,552.5950000004567,-0.05130902546879985 +110520,552.6000000004568,-0.05130755162008758 +110521,552.6050000004569,-0.05130607606282149 +110522,552.610000000457,-0.05130459879358308 +110523,552.6150000004571,-0.051303119808944135 +110524,552.6200000004573,-0.05130163910546668 +110525,552.6250000004574,-0.05130015667970298 +110526,552.6300000004575,-0.051298672528195456 +110527,552.6350000004576,-0.05129718664747668 +110528,552.6400000004577,-0.05129569903406933 +110529,552.6450000004578,-0.05129420968448616 +110530,552.6500000004579,-0.05129271859522994 +110531,552.655000000458,-0.05129122576279345 +110532,552.6600000004581,-0.05128973118365941 +110533,552.6650000004582,-0.051288234854300487 +110534,552.6700000004583,-0.051286736771179196 +110535,552.6750000004585,-0.05128523693074793 +110536,552.6800000004586,-0.05128373532944886 +110537,552.6850000004587,-0.05128223196371395 +110538,552.6900000004588,-0.051280726829964894 +110539,552.6950000004589,-0.05127921992461303 +110540,552.700000000459,-0.05127771124405942 +110541,552.7050000004591,-0.05127620078469468 +110542,552.7100000004592,-0.05127468854289903 +110543,552.7150000004593,-0.051273174515042215 +110544,552.7200000004594,-0.05127165869748349 +110545,552.7250000004595,-0.051270141086571554 +110546,552.7300000004597,-0.05126862167864454 +110547,552.7350000004598,-0.05126710047002992 +110548,552.7400000004599,-0.05126557745704453 +110549,552.74500000046,-0.051264052635994505 +110550,552.7500000004601,-0.05126252600317521 +110551,552.7550000004602,-0.051260997554871256 +110552,552.7600000004603,-0.0512594672873564 +110553,552.7650000004604,-0.05125793519689357 +110554,552.7700000004605,-0.051256401279734735 +110555,552.7750000004606,-0.05125486553212095 +110556,552.7800000004607,-0.05125332795028226 +110557,552.7850000004609,-0.051251788530437666 +110558,552.790000000461,-0.05125024726879514 +110559,552.7950000004611,-0.05124870416155147 +110560,552.8000000004612,-0.05124715920489234 +110561,552.8050000004613,-0.051245612394992195 +110562,552.8100000004614,-0.05124406372801424 +110563,552.8150000004615,-0.05124251320011041 +110564,552.8200000004616,-0.05124096080742128 +110565,552.8250000004617,-0.051239406546076054 +110566,552.8300000004618,-0.05123785041219253 +110567,552.835000000462,-0.05123629240187704 +110568,552.840000000462,-0.05123473251122438 +110569,552.8450000004622,-0.05123317073631782 +110570,552.8500000004623,-0.05123160707322902 +110571,552.8550000004624,-0.051230041518018 +110572,552.8600000004625,-0.0512284740667331 +110573,552.8650000004626,-0.05122690471541093 +110574,552.8700000004627,-0.05122533346007629 +110575,552.8750000004628,-0.0512237602967422 +110576,552.8800000004629,-0.051222185221409776 +110577,552.885000000463,-0.051220608230068236 +110578,552.8900000004631,-0.05121902931869484 +110579,552.8950000004633,-0.05121744848325482 +110580,552.9000000004634,-0.05121586571970135 +110581,552.9050000004635,-0.051214281023975544 +110582,552.9100000004636,-0.05121269439200631 +110583,552.9150000004637,-0.05121110581971041 +110584,552.9200000004638,-0.051209515302992316 +110585,552.9250000004639,-0.05120792283774424 +110586,552.930000000464,-0.051206328419846014 +110587,552.9350000004641,-0.051204732045165145 +110588,552.9400000004642,-0.05120313370955664 +110589,552.9450000004643,-0.05120153340886304 +110590,552.9500000004645,-0.05119993113891436 +110591,552.9550000004646,-0.05119832689552803 +110592,552.9600000004647,-0.05119672067450881 +110593,552.9650000004648,-0.05119511247164884 +110594,552.9700000004649,-0.05119350228272747 +110595,552.975000000465,-0.05119189010351127 +110596,552.9800000004651,-0.05119027592975401 +110597,552.9850000004652,-0.05118865975719653 +110598,552.9900000004653,-0.051187041581566776 +110599,552.9950000004654,-0.051185421398579664 +110600,553.0000000004655,-0.0511837992039371 +110601,553.0050000004657,-0.051182174993327875 +110602,553.0100000004658,-0.05118054876242766 +110603,553.0150000004659,-0.05117892050689892 +110604,553.020000000466,-0.051177290222390856 +110605,553.0250000004661,-0.051175657904539366 +110606,553.0300000004662,-0.05117402354896703 +110607,553.0350000004663,-0.05117238715128298 +110608,553.0400000004664,-0.05117074870708291 +110609,553.0450000004665,-0.051169108211948984 +110610,553.0500000004666,-0.0511674656614498 +110611,553.0550000004667,-0.05116582105114034 +110612,553.0600000004669,-0.051164174376561906 +110613,553.065000000467,-0.05116252563324204 +110614,553.0700000004671,-0.05116087481669453 +110615,553.0750000004672,-0.051159221922419305 +110616,553.0800000004673,-0.05115756694590239 +110617,553.0850000004674,-0.05115590988261586 +110618,553.0900000004675,-0.051154250728017756 +110619,553.0950000004676,-0.051152589477552086 +110620,553.1000000004677,-0.0511509261266487 +110621,553.1050000004678,-0.05114926067072329 +110622,553.110000000468,-0.051147593105177296 +110623,553.1150000004681,-0.051145923425397824 +110624,553.1200000004682,-0.051144251626757696 +110625,553.1250000004683,-0.05114257770461525 +110626,553.1300000004684,-0.05114090165431439 +110627,553.1350000004685,-0.051139223471184464 +110628,553.1400000004686,-0.051137543150540254 +110629,553.1450000004687,-0.05113586068768187 +110630,553.1500000004688,-0.05113417607789471 +110631,553.1550000004689,-0.05113248931644941 +110632,553.160000000469,-0.05113080039860178 +110633,553.1650000004691,-0.05112910931959271 +110634,553.1700000004693,-0.051127416074648185 +110635,553.1750000004694,-0.05112572065897911 +110636,553.1800000004695,-0.051124023067781355 +110637,553.1850000004696,-0.05112232329623565 +110638,553.1900000004697,-0.051120621339507524 +110639,553.1950000004698,-0.05111891719274722 +110640,553.2000000004699,-0.05111721085108967 +110641,553.20500000047,-0.05111550230965442 +110642,553.2100000004701,-0.05111379156354555 +110643,553.2150000004702,-0.05111207860785163 +110644,553.2200000004703,-0.05111036343764566 +110645,553.2250000004705,-0.05110864604798498 +110646,553.2300000004706,-0.0511069264339112 +110647,553.2350000004707,-0.05110520459045018 +110648,553.2400000004708,-0.05110348051261195 +110649,553.2450000004709,-0.05110175419539061 +110650,553.250000000471,-0.05110002563376428 +110651,553.2550000004711,-0.05109829482269504 +110652,553.2600000004712,-0.0510965617571289 +110653,553.2650000004713,-0.05109482643199563 +110654,553.2700000004714,-0.05109308884220882 +110655,553.2750000004716,-0.05109134898266571 +110656,553.2800000004717,-0.05108960684824717 +110657,553.2850000004718,-0.051087862433817646 +110658,553.2900000004719,-0.051086115734225036 +110659,553.295000000472,-0.051084366744300655 +110660,553.3000000004721,-0.051082615458859185 +110661,553.3050000004722,-0.05108086187269855 +110662,553.3100000004723,-0.051079105980599906 +110663,553.3150000004724,-0.05107734777732753 +110664,553.3200000004725,-0.05107558725762876 +110665,553.3250000004726,-0.05107382441623392 +110666,553.3300000004728,-0.05107205924785626 +110667,553.3350000004729,-0.051070291747191875 +110668,553.340000000473,-0.05106852190891962 +110669,553.3450000004731,-0.05106674972770107 +110670,553.3500000004732,-0.05106497519818041 +110671,553.3550000004733,-0.051063198314984376 +110672,553.3600000004734,-0.0510614190727222 +110673,553.3650000004735,-0.05105963746598552 +110674,553.3700000004736,-0.051057853489348264 +110675,553.3750000004737,-0.05105606713736664 +110676,553.3800000004738,-0.05105427840457904 +110677,553.385000000474,-0.05105248728550593 +110678,553.3900000004741,-0.051050693774649845 +110679,553.3950000004742,-0.05104889786649521 +110680,553.4000000004743,-0.05104709955550837 +110681,553.4050000004744,-0.05104529883613742 +110682,553.4100000004745,-0.05104349570281221 +110683,553.4150000004746,-0.051041690149944176 +110684,553.4200000004747,-0.05103988217192635 +110685,553.4250000004748,-0.051038071763133235 +110686,553.4300000004749,-0.051036258917920706 +110687,553.435000000475,-0.051034443630625974 +110688,553.4400000004752,-0.051032625895567466 +110689,553.4450000004753,-0.05103080570704479 +110690,553.4500000004754,-0.0510289830593386 +110691,553.4550000004755,-0.05102715794671056 +110692,553.4600000004756,-0.05102533036340322 +110693,553.4650000004757,-0.05102350030363997 +110694,553.4700000004758,-0.05102166776162493 +110695,553.4750000004759,-0.051019832731542876 +110696,553.480000000476,-0.05101799520755917 +110697,553.4850000004761,-0.051016155183819634 +110698,553.4900000004762,-0.051014312654450535 +110699,553.4950000004764,-0.05101246761355842 +110700,553.5000000004765,-0.05101062005523005 +110701,553.5050000004766,-0.05100876997353238 +110702,553.5100000004767,-0.0510069173625124 +110703,553.5150000004768,-0.05100506221619705 +110704,553.5200000004769,-0.05100320452859316 +110705,553.525000000477,-0.05100134429368737 +110706,553.5300000004771,-0.05099948150544598 +110707,553.5350000004772,-0.05099761615781496 +110708,553.5400000004773,-0.050995748244719766 +110709,553.5450000004774,-0.050993877760065275 +110710,553.5500000004776,-0.05099200469773574 +110711,553.5550000004777,-0.05099012905159462 +110712,553.5600000004778,-0.050988250815484575 +110713,553.5650000004779,-0.05098636998322732 +110714,553.570000000478,-0.050984486548623524 +110715,553.5750000004781,-0.05098260050545274 +110716,553.5800000004782,-0.050980711847473305 +110717,553.5850000004783,-0.050978820568422255 +110718,553.5900000004784,-0.050976926662015205 +110719,553.5950000004785,-0.05097503012194629 +110720,553.6000000004786,-0.05097313094188803 +110721,553.6050000004788,-0.050971229115491255 +110722,553.6100000004789,-0.050969324636385 +110723,553.615000000479,-0.050967417498176404 +110724,553.6200000004791,-0.050965507694450636 +110725,553.6250000004792,-0.05096359521877078 +110726,553.6300000004793,-0.05096168006467771 +110727,553.6350000004794,-0.05095976222569003 +110728,553.6400000004795,-0.05095784169530394 +110729,553.6450000004796,-0.0509559184669932 +110730,553.6500000004797,-0.05095399253420891 +110731,553.6550000004798,-0.05095206389037953 +110732,553.66000000048,-0.050950132528910716 +110733,553.6650000004801,-0.050948198443185204 +110734,553.6700000004802,-0.050946261626562746 +110735,553.6750000004803,-0.05094432207237998 +110736,553.6800000004804,-0.05094237977395034 +110737,553.6850000004805,-0.05094043472456393 +110738,553.6900000004806,-0.05093848691748745 +110739,553.6950000004807,-0.05093653634596405 +110740,553.7000000004808,-0.05093458300321322 +110741,553.7050000004809,-0.050932626882430755 +110742,553.710000000481,-0.05093066797678857 +110743,553.7150000004812,-0.05092870627943459 +110744,553.7200000004813,-0.050926741783492706 +110745,553.7250000004814,-0.05092477448206259 +110746,553.7300000004815,-0.05092280436821963 +110747,553.7350000004816,-0.05092083143501482 +110748,553.7400000004817,-0.050918855675474606 +110749,553.7450000004818,-0.050916877082600794 +110750,553.7500000004819,-0.05091489564937048 +110751,553.755000000482,-0.05091291136873585 +110752,553.7600000004821,-0.050910924233624144 +110753,553.7650000004822,-0.0509089342369375 +110754,553.7700000004824,-0.050906941371552834 +110755,553.7750000004825,-0.05090494563032173 +110756,553.7800000004826,-0.05090294700607035 +110757,553.7850000004827,-0.05090094549159927 +110758,553.7900000004828,-0.050898941079683395 +110759,553.7950000004829,-0.05089693376307181 +110760,553.800000000483,-0.05089492353448769 +110761,553.8050000004831,-0.05089291038662816 +110762,553.8100000004832,-0.05089089431216417 +110763,553.8150000004833,-0.05088887530374038 +110764,553.8200000004834,-0.05088685335397506 +110765,553.8250000004836,-0.0508848284554599 +110766,553.8300000004837,-0.05088280060075997 +110767,553.8350000004838,-0.050880769782413494 +110768,553.8400000004839,-0.05087873599293185 +110769,553.845000000484,-0.050876699224799336 +110770,553.8500000004841,-0.05087465947047308 +110771,553.8550000004842,-0.0508726167223829 +110772,553.8600000004843,-0.05087057097293122 +110773,553.8650000004844,-0.050868522214492874 +110774,553.8700000004845,-0.05086647043941503 +110775,553.8750000004846,-0.050864415640017015 +110776,553.8800000004848,-0.05086235780859022 +110777,553.8850000004849,-0.050860296937397936 +110778,553.890000000485,-0.05085823301867524 +110779,553.8950000004851,-0.05085616604462885 +110780,553.9000000004852,-0.05085409600743701 +110781,553.9050000004853,-0.050852022899249304 +110782,553.9100000004854,-0.050849946712186594 +110783,553.9150000004855,-0.0508478674383408 +110784,553.9200000004856,-0.05084578506977482 +110785,553.9250000004857,-0.05084369959852238 +110786,553.9300000004858,-0.05084161101658785 +110787,553.935000000486,-0.05083951931594618 +110788,553.9400000004861,-0.0508374244885427 +110789,553.9450000004862,-0.050835326526292975 +110790,553.9500000004863,-0.050833225421082706 +110791,553.9550000004864,-0.050831121164767526 +110792,553.9600000004865,-0.05082901374917292 +110793,553.9650000004866,-0.05082690316609401 +110794,553.9700000004867,-0.050824789407295484 +110795,553.9750000004868,-0.05082267246451137 +110796,553.9800000004869,-0.050820552329444935 +110797,553.985000000487,-0.050818428993768525 +110798,553.9900000004872,-0.0508163024491234 +110799,553.9950000004873,-0.05081417268711961 +110800,554.0000000004874,-0.050812039699335815 +110801,554.0050000004875,-0.05080990347731914 +110802,554.0100000004876,-0.05080776401258503 +110803,554.0150000004877,-0.050805621296617094 +110804,554.0200000004878,-0.050803475320866924 +110805,554.0250000004879,-0.050801326076753965 +110806,554.030000000488,-0.05079917355566535 +110807,554.0350000004881,-0.050797017748955724 +110808,554.0400000004882,-0.05079485864794711 +110809,554.0450000004884,-0.05079269624392873 +110810,554.0500000004885,-0.05079053052815684 +110811,554.0550000004886,-0.050788361491854575 +110812,554.0600000004887,-0.05078618912621179 +110813,554.0650000004888,-0.0507840134223849 +110814,554.0700000004889,-0.05078183437149667 +110815,554.075000000489,-0.05077965196463609 +110816,554.0800000004891,-0.0507774661928582 +110817,554.0850000004892,-0.050775277047183924 +110818,554.0900000004893,-0.05077308451859986 +110819,554.0950000004894,-0.05077088859805819 +110820,554.1000000004896,-0.05076868927647641 +110821,554.1050000004897,-0.05076648654473722 +110822,554.1100000004898,-0.05076428039368834 +110823,554.1150000004899,-0.05076207081414232 +110824,554.12000000049,-0.05075985779687636 +110825,554.1250000004901,-0.05075764133263215 +110826,554.1300000004902,-0.050755421412115684 +110827,554.1350000004903,-0.050753198025997065 +110828,554.1400000004904,-0.050750971164910355 +110829,554.1450000004905,-0.050748740819453346 +110830,554.1500000004906,-0.050746506980187435 +110831,554.1550000004908,-0.05074426963763739 +110832,554.1600000004909,-0.05074202878229116 +110833,554.165000000491,-0.050739784404599746 +110834,554.1700000004911,-0.05073753649497697 +110835,554.1750000004912,-0.05073528504379927 +110836,554.1800000004913,-0.05073303004140553 +110837,554.1850000004914,-0.05073077147809691 +110838,554.1900000004915,-0.05072850934413661 +110839,554.1950000004916,-0.0507262436297497 +110840,554.2000000004917,-0.05072397432512294 +110841,554.2050000004919,-0.05072170142040453 +110842,554.210000000492,-0.05071942490570396 +110843,554.2150000004921,-0.0507171447710918 +110844,554.2200000004922,-0.050714861006599464 +110845,554.2250000004923,-0.0507125736022191 +110846,554.2300000004924,-0.050710282547903246 +110847,554.2350000004925,-0.050707987833564776 +110848,554.2400000004926,-0.05070568944907657 +110849,554.2450000004927,-0.05070338738427138 +110850,554.2500000004928,-0.05070108162894161 +110851,554.2550000004929,-0.05069877217283906 +110852,554.260000000493,-0.050696459005674786 +110853,554.2650000004932,-0.05069414211711883 +110854,554.2700000004933,-0.05069182149680003 +110855,554.2750000004934,-0.05068949713430582 +110856,554.2800000004935,-0.050687169019181966 +110857,554.2850000004936,-0.05068483714093239 +110858,554.2900000004937,-0.050682501489018934 +110859,554.2950000004938,-0.050680162052861154 +110860,554.3000000004939,-0.05067781882183606 +110861,554.305000000494,-0.05067547178527792 +110862,554.3100000004941,-0.050673120932478055 +110863,554.3150000004943,-0.050670766252684574 +110864,554.3200000004944,-0.05066840773510214 +110865,554.3250000004945,-0.050666045368891785 +110866,554.3300000004946,-0.05066367914317064 +110867,554.3350000004947,-0.050661309047011716 +110868,554.3400000004948,-0.05065893506944366 +110869,554.3450000004949,-0.05065655719945053 +110870,554.350000000495,-0.05065417542597156 +110871,554.3550000004951,-0.05065178973790092 +110872,554.3600000004952,-0.05064940012408744 +110873,554.3650000004953,-0.05064700657333442 +110874,554.3700000004955,-0.05064460907439937 +110875,554.3750000004956,-0.05064220761599373 +110876,554.3800000004957,-0.05063980218678266 +110877,554.3850000004958,-0.050637392775384794 +110878,554.3900000004959,-0.050634979370371966 +110879,554.395000000496,-0.05063256196026896 +110880,554.4000000004961,-0.050630140533553275 +110881,554.4050000004962,-0.05062771507865483 +110882,554.4100000004963,-0.05062528558395577 +110883,554.4150000004964,-0.050622852037790156 +110884,554.4200000004965,-0.05062041442844369 +110885,554.4250000004967,-0.050617972744153535 +110886,554.4300000004968,-0.05061552697310795 +110887,554.4350000004969,-0.05061307710344609 +110888,554.440000000497,-0.05061062312325771 +110889,554.4450000004971,-0.050608165020582914 +110890,554.4500000004972,-0.05060570278341186 +110891,554.4550000004973,-0.05060323639968449 +110892,554.4600000004974,-0.050600765857290286 +110893,554.4650000004975,-0.05059829114406794 +110894,554.4700000004976,-0.05059581224780514 +110895,554.4750000004977,-0.050593329156238216 +110896,554.4800000004979,-0.05059084185705191 +110897,554.485000000498,-0.050588350337879076 +110898,554.4900000004981,-0.050585854586300404 +110899,554.4950000004982,-0.05058335458984408 +110900,554.5000000004983,-0.05058085033598556 +110901,554.5050000004984,-0.05057834181214726 +110902,554.5100000004985,-0.05057582900569822 +110903,554.5150000004986,-0.05057331190395388 +110904,554.5200000004987,-0.0505707904941757 +110905,554.5250000004988,-0.05056826476357091 +110906,554.530000000499,-0.050565734699292195 +110907,554.535000000499,-0.0505632002884374 +110908,554.5400000004992,-0.0505606615180492 +110909,554.5450000004993,-0.05055811837511482 +110910,554.5500000004994,-0.05055557084656566 +110911,554.5550000004995,-0.05055301891927708 +110912,554.5600000004996,-0.050550462580068 +110913,554.5650000004997,-0.050547901815700624 +110914,554.5700000004998,-0.05054533661288011 +110915,554.5750000004999,-0.05054276695825422 +110916,554.5800000005,-0.05054019283841304 +110917,554.5850000005001,-0.050537614239888624 +110918,554.5900000005003,-0.050535031149154676 +110919,554.5950000005004,-0.05053244355262622 +110920,554.6000000005005,-0.050529851436659244 +110921,554.6050000005006,-0.05052725478755038 +110922,554.6100000005007,-0.05052465359153658 +110923,554.6150000005008,-0.050522047834794734 +110924,554.6200000005009,-0.050519437503441365 +110925,554.625000000501,-0.050516822583532274 +110926,554.6300000005011,-0.05051420306106216 +110927,554.6350000005012,-0.05051157892196432 +110928,554.6400000005013,-0.05050895015211023 +110929,554.6450000005015,-0.05050631673730928 +110930,554.6500000005016,-0.050503678663308293 +110931,554.6550000005017,-0.05050103591579129 +110932,554.6600000005018,-0.05049838848037905 +110933,554.6650000005019,-0.050495736342628744 +110934,554.670000000502,-0.0504930794880336 +110935,554.6750000005021,-0.050490417902022515 +110936,554.6800000005022,-0.05048775156995964 +110937,554.6850000005023,-0.05048508047714408 +110938,554.6900000005024,-0.05048240460880946 +110939,554.6950000005025,-0.05047972395012356 +110940,554.7000000005027,-0.050477038486187925 +110941,554.7050000005028,-0.05047434820203745 +110942,554.7100000005029,-0.050471653082640046 +110943,554.715000000503,-0.0504689531128962 +110944,554.7200000005031,-0.0504662482776386 +110945,554.7250000005032,-0.05046353856163171 +110946,554.7300000005033,-0.05046082394957138 +110947,554.7350000005034,-0.05045810442608448 +110948,554.7400000005035,-0.050455379975728396 +110949,554.7450000005036,-0.05045265058299073 +110950,554.7500000005037,-0.050449916232288804 +110951,554.7550000005039,-0.05044717690796925 +110952,554.760000000504,-0.05044443259430764 +110953,554.7650000005041,-0.05044168327550803 +110954,554.7700000005042,-0.050438928935702496 +110955,554.7750000005043,-0.05043616955895075 +110956,554.7800000005044,-0.05043340512923972 +110957,554.7850000005045,-0.05043063563048304 +110958,554.7900000005046,-0.05042786104652069 +110959,554.7950000005047,-0.050425081361118514 +110960,554.8000000005048,-0.05042229655796777 +110961,554.805000000505,-0.05041950662068467 +110962,554.810000000505,-0.05041671153280997 +110963,554.8150000005052,-0.05041391127780847 +110964,554.8200000005053,-0.05041110583906857 +110965,554.8250000005054,-0.0504082951999018 +110966,554.8300000005055,-0.05040547934354237 +110967,554.8350000005056,-0.05040265825314665 +110968,554.8400000005057,-0.050399831911792786 +110969,554.8450000005058,-0.05039700030248011 +110970,554.8500000005059,-0.05039416340812873 +110971,554.855000000506,-0.05039132121157904 +110972,554.8600000005061,-0.050388473695591206 +110973,554.8650000005063,-0.050385620842844675 +110974,554.8700000005064,-0.05038276263593771 +110975,554.8750000005065,-0.05037989905738685 +110976,554.8800000005066,-0.050377030089626434 +110977,554.8850000005067,-0.05037415571500806 +110978,554.8900000005068,-0.050371275915800096 +110979,554.8950000005069,-0.050368390674187184 +110980,554.900000000507,-0.050365499972269676 +110981,554.9050000005071,-0.050362603792063115 +110982,554.9100000005072,-0.05035970211549774 +110983,554.9150000005073,-0.05035679492441794 +110984,554.9200000005075,-0.05035388220058168 +110985,554.9250000005076,-0.050350963925660026 +110986,554.9300000005077,-0.050348040081236535 +110987,554.9350000005078,-0.05034511064880676 +110988,554.9400000005079,-0.05034217560977764 +110989,554.945000000508,-0.050339234945467014 +110990,554.9500000005081,-0.05033628863710298 +110991,554.9550000005082,-0.050333336665823396 +110992,554.9600000005083,-0.05033037901267525 +110993,554.9650000005084,-0.05032741565861413 +110994,554.9700000005085,-0.05032444658450362 +110995,554.9750000005087,-0.050321471771114734 +110996,554.9800000005088,-0.05031849119912528 +110997,554.9850000005089,-0.050315504849119334 +110998,554.990000000509,-0.0503125127015866 +110999,554.9950000005091,-0.05030951473692179 +111000,555.0000000005092,-0.050306510935424056 +111001,555.0050000005093,-0.05030350127729637 +111002,555.0100000005094,-0.05030048574264484 +111003,555.0150000005095,-0.05029746431147821 +111004,555.0200000005096,-0.05029443696370711 +111005,555.0250000005097,-0.050291403679143504 +111006,555.0300000005099,-0.05028836443750001 +111007,555.03500000051,-0.05028531921838926 +111008,555.0400000005101,-0.05028226800132329 +111009,555.0450000005102,-0.0502792107657128 +111010,555.0500000005103,-0.05027614749086662 +111011,555.0550000005104,-0.05027307815599092 +111012,555.0600000005105,-0.05027000274018862 +111013,555.0650000005106,-0.050266921222458676 +111014,555.0700000005107,-0.050263833581695436 +111015,555.0750000005108,-0.0502607397966879 +111016,555.080000000511,-0.050257639846119063 +111017,555.0850000005111,-0.05025453370856523 +111018,555.0900000005112,-0.050251421362495295 +111019,555.0950000005113,-0.05024830278626999 +111020,555.1000000005114,-0.050245177958141256 +111021,555.1050000005115,-0.05024204685625145 +111022,555.1100000005116,-0.050238909458632665 +111023,555.1150000005117,-0.05023576574320593 +111024,555.1200000005118,-0.050232615687780584 +111025,555.1250000005119,-0.0502294592700534 +111026,555.130000000512,-0.05022629646760792 +111027,555.1350000005122,-0.050223127257913704 +111028,555.1400000005123,-0.050219951618325466 +111029,555.1450000005124,-0.05021676952608244 +111030,555.1500000005125,-0.050213580958307504 +111031,555.1550000005126,-0.050210385892006416 +111032,555.1600000005127,-0.05020718430406707 +111033,555.1650000005128,-0.05020397617125863 +111034,555.1700000005129,-0.05020076147023079 +111035,555.175000000513,-0.050197540177512906 +111036,555.1800000005131,-0.05019431226951325 +111037,555.1850000005132,-0.05019107772251809 +111038,555.1900000005134,-0.05018783651269095 +111039,555.1950000005135,-0.05018458861607174 +111040,555.2000000005136,-0.05018133400857588 +111041,555.2050000005137,-0.05017807266599349 +111042,555.2100000005138,-0.050174804563988505 +111043,555.2150000005139,-0.05017152967809783 +111044,555.220000000514,-0.05016824798373042 +111045,555.2250000005141,-0.050164959456166475 +111046,555.2300000005142,-0.05016166407055647 +111047,555.2350000005143,-0.050158361801920306 +111048,555.2400000005144,-0.05015505262514641 +111049,555.2450000005146,-0.05015173651499076 +111050,555.2500000005147,-0.05014841344607605 +111051,555.2550000005148,-0.0501450833928907 +111052,555.2600000005149,-0.050141746329787934 +111053,555.265000000515,-0.05013840223098487 +111054,555.2700000005151,-0.0501350510705615 +111055,555.2750000005152,-0.050131692822459786 +111056,555.2800000005153,-0.05012832746048265 +111057,555.2850000005154,-0.05012495495829306 +111058,555.2900000005155,-0.05012157528941295 +111059,555.2950000005156,-0.05011818842722228 +111060,555.3000000005158,-0.050114794344958045 +111061,555.3050000005159,-0.05011139301571322 +111062,555.310000000516,-0.05010798441243577 +111063,555.3150000005161,-0.05010456850792761 +111064,555.3200000005162,-0.05010114527484355 +111065,555.3250000005163,-0.050097714685690235 +111066,555.3300000005164,-0.05009427671282517 +111067,555.3350000005165,-0.05009083132845552 +111068,555.3400000005166,-0.050087378504637146 +111069,555.3450000005167,-0.05008391821327345 +111070,555.3500000005168,-0.05008045042611431 +111071,555.355000000517,-0.050076975114754944 +111072,555.3600000005171,-0.05007349225063483 +111073,555.3650000005172,-0.050070001805036554 +111074,555.3700000005173,-0.050066503749084675 +111075,555.3750000005174,-0.05006299805374457 +111076,555.3800000005175,-0.05005948468982128 +111077,555.3850000005176,-0.05005596362795836 +111078,555.3900000005177,-0.0500524348386367 +111079,555.3950000005178,-0.050048898292173294 +111080,555.4000000005179,-0.050045353958720055 +111081,555.405000000518,-0.05004180180826265 +111082,555.4100000005182,-0.0500382418106192 +111083,555.4150000005183,-0.05003467393543912 +111084,555.4200000005184,-0.050031098152201796 +111085,555.4250000005185,-0.05002751443021541 +111086,555.4300000005186,-0.0500239227386156 +111087,555.4350000005187,-0.05002032304636422 +111088,555.4400000005188,-0.050016715322248065 +111089,555.4450000005189,-0.05001309953487747 +111090,555.450000000519,-0.05000947565268511 +111091,555.4550000005191,-0.05000584364392464 +111092,555.4600000005192,-0.05000220347666927 +111093,555.4650000005194,-0.04999855511881054 +111094,555.4700000005195,-0.04999489853805685 +111095,555.4750000005196,-0.04999123370193215 +111096,555.4800000005197,-0.049987560577774474 +111097,555.4850000005198,-0.049983879132734624 +111098,555.4900000005199,-0.04998018933377468 +111099,555.49500000052,-0.0499764911476666 +111100,555.5000000005201,-0.04997278454099075 +111101,555.5050000005202,-0.049969069480134486 +111102,555.5100000005203,-0.049965345931290636 +111103,555.5150000005204,-0.049961613860456035 +111104,555.5200000005206,-0.049957873233430025 +111105,555.5250000005207,-0.049954124015812916 +111106,555.5300000005208,-0.04995036617300449 +111107,555.5350000005209,-0.04994659967020242 +111108,555.540000000521,-0.049942824472400754 +111109,555.5450000005211,-0.04993904054438827 +111110,555.5500000005212,-0.04993524785074696 +111111,555.5550000005213,-0.049931446355850374 +111112,555.5600000005214,-0.04992763602386203 +111113,555.5650000005215,-0.04992381681873374 +111114,555.5700000005216,-0.049919988704204 +111115,555.5750000005218,-0.04991615164379627 +111116,555.5800000005219,-0.04991230560081735 +111117,555.585000000522,-0.04990845053835561 +111118,555.5900000005221,-0.04990458641927933 +111119,555.5950000005222,-0.04990071320623491 +111120,555.6000000005223,-0.049896830861645175 +111121,555.6050000005224,-0.04989293934770754 +111122,555.6100000005225,-0.04988903862639228 +111123,555.6150000005226,-0.04988512865944069 +111124,555.6200000005227,-0.04988120940836327 +111125,555.6250000005228,-0.049877280834437876 +111126,555.630000000523,-0.04987334289870788 +111127,555.6350000005231,-0.04986939556198027 +111128,555.6400000005232,-0.049865438784823746 +111129,555.6450000005233,-0.049861472527566834 +111130,555.6500000005234,-0.04985749675029592 +111131,555.6550000005235,-0.04985351141285331 +111132,555.6600000005236,-0.04984951647483525 +111133,555.6650000005237,-0.049845511895589924 +111134,555.6700000005238,-0.04984149763421545 +111135,555.6750000005239,-0.04983747364955784 +111136,555.680000000524,-0.04983343990020892 +111137,555.6850000005242,-0.049829396344504305 +111138,555.6900000005243,-0.04982534294052123 +111139,555.6950000005244,-0.0498212796460765 +111140,555.7000000005245,-0.04981720641872428 +111141,555.7050000005246,-0.04981312321575399 +111142,555.7100000005247,-0.04980902999418807 +111143,555.7150000005248,-0.04980492671077979 +111144,555.7200000005249,-0.04980081332201104 +111145,555.725000000525,-0.04979668978409003 +111146,555.7300000005251,-0.04979255605294903 +111147,555.7350000005252,-0.0497884120842421 +111148,555.7400000005254,-0.049784257833342685 +111149,555.7450000005255,-0.04978009325534134 +111150,555.7500000005256,-0.049775918305043326 +111151,555.7550000005257,-0.04977173293696619 +111152,555.7600000005258,-0.04976753710533736 +111153,555.7650000005259,-0.04976333076409168 +111154,555.770000000526,-0.04975911386686896 +111155,555.7750000005261,-0.04975488636701143 +111156,555.7800000005262,-0.049750648217561234 +111157,555.7850000005263,-0.049746399371257875 +111158,555.7900000005264,-0.049742139780535606 +111159,555.7950000005266,-0.04973786939752084 +111160,555.8000000005267,-0.04973358817402951 +111161,555.8050000005268,-0.04972929606156437 +111162,555.8100000005269,-0.04972499301131233 +111163,555.815000000527,-0.049720678974141716 +111164,555.8200000005271,-0.0497163539005995 +111165,555.8250000005272,-0.04971201774090855 +111166,555.8300000005273,-0.04970767044496474 +111167,555.8350000005274,-0.04970331196233421 +111168,555.8400000005275,-0.049698942242250396 +111169,555.8450000005276,-0.04969456123361114 +111170,555.8500000005278,-0.04969016888497578 +111171,555.8550000005279,-0.04968576514456213 +111172,555.860000000528,-0.04968134996024353 +111173,555.8650000005281,-0.04967692327954574 +111174,555.8700000005282,-0.0496724850496439 +111175,555.8750000005283,-0.04966803521735944 +111176,555.8800000005284,-0.04966357372915689 +111177,555.8850000005285,-0.04965910053114073 +111178,555.8900000005286,-0.049654615569052186 +111179,555.8950000005287,-0.04965011878826596 +111180,555.9000000005288,-0.04964561013378694 +111181,555.905000000529,-0.04964108955024691 +111182,555.9100000005291,-0.049636556981901156 +111183,555.9150000005292,-0.04963201237262508 +111184,555.9200000005293,-0.04962745566591076 +111185,555.9250000005294,-0.04962288680486348 +111186,555.9300000005295,-0.04961830573219821 +111187,555.9350000005296,-0.049613712390236056 +111188,555.9400000005297,-0.049609106720900645 +111189,555.9450000005298,-0.04960448866571451 +111190,555.9500000005299,-0.049599858165795416 +111191,555.95500000053,-0.049595215161852606 +111192,555.9600000005302,-0.04959055959418306 +111193,555.9650000005303,-0.04958589140266769 +111194,555.9700000005304,-0.04958121052676747 +111195,555.9750000005305,-0.049576516905519556 +111196,555.9800000005306,-0.049571810477533326 +111197,555.9850000005307,-0.04956709118098642 +111198,555.9900000005308,-0.04956235895362067 +111199,555.9950000005309,-0.049557613732738044 +111200,556.000000000531,-0.04955285545519649 +111201,556.0050000005311,-0.04954808405740581 +111202,556.0100000005312,-0.04954329947532336 +111203,556.0150000005314,-0.04953850164444981 +111204,556.0200000005315,-0.04953369049982482 +111205,556.0250000005316,-0.04952886597602263 +111206,556.0300000005317,-0.049524028007147676 +111207,556.0350000005318,-0.04951917652683005 +111208,556.0400000005319,-0.04951431146822099 +111209,556.045000000532,-0.04950943276398827 +111210,556.0500000005321,-0.04950454034631155 +111211,556.0550000005322,-0.0494996341468777 +111212,556.0600000005323,-0.04949471409687599 +111213,556.0650000005325,-0.04948978012699331 +111214,556.0700000005326,-0.04948483216740926 +111215,556.0750000005327,-0.04947987014779122 +111216,556.0800000005328,-0.04947489399728934 +111217,556.0850000005329,-0.04946990364453152 +111218,556.090000000533,-0.04946489901761823 +111219,556.0950000005331,-0.049459880044117346 +111220,556.1000000005332,-0.049454846651058926 +111221,556.1050000005333,-0.04944979876492983 +111222,556.1100000005334,-0.04944473631166841 +111223,556.1150000005335,-0.049439659216659 +111224,556.1200000005337,-0.04943456740472645 +111225,556.1250000005338,-0.04942946080013049 +111226,556.1300000005339,-0.04942433932656011 +111227,556.135000000534,-0.049419202907127806 +111228,556.1400000005341,-0.0494140514643638 +111229,556.1450000005342,-0.04940888492021015 +111230,556.1500000005343,-0.04940370319601482 +111231,556.1550000005344,-0.049398506212525645 +111232,556.1600000005345,-0.04939329388988421 +111233,556.1650000005346,-0.0493880661476197 +111234,556.1700000005347,-0.049382822904642645 +111235,556.1750000005349,-0.04937756407923854 +111236,556.180000000535,-0.049372289589061466 +111237,556.1850000005351,-0.04936699935112757 +111238,556.1900000005352,-0.049361693281808484 +111239,556.1950000005353,-0.04935637129682463 +111240,556.2000000005354,-0.04935103331123847 +111241,556.2050000005355,-0.04934567923944768 +111242,556.2100000005356,-0.04934030899517817 +111243,556.2150000005357,-0.04933492249147709 +111244,556.2200000005358,-0.04932951964070568 +111245,556.2250000005359,-0.049324100354532066 +111246,556.230000000536,-0.049318664543923946 +111247,556.2350000005362,-0.04931321211914117 +111248,556.2400000005363,-0.049307742989728245 +111249,556.2450000005364,-0.04930225706450672 +111250,556.2500000005365,-0.049296754251567466 +111251,556.2550000005366,-0.04929123445826286 +111252,556.2600000005367,-0.0492856975911989 +111253,556.2650000005368,-0.04928014355622711 +111254,556.2700000005369,-0.04927457225843646 +111255,556.275000000537,-0.04926898360214512 +111256,556.2800000005371,-0.049263377490892046 +111257,556.2850000005373,-0.04925775382742856 +111258,556.2900000005374,-0.04925211251370973 +111259,556.2950000005375,-0.04924645345088568 +111260,556.3000000005376,-0.049240776539292735 +111261,556.3050000005377,-0.0492350816784445 +111262,556.3100000005378,-0.04922936876702278 +111263,556.3150000005379,-0.04922363770286834 +111264,556.320000000538,-0.04921788838297163 +111265,556.3250000005381,-0.049212120703463286 +111266,556.3300000005382,-0.04920633455960455 +111267,556.3350000005383,-0.04920052984577753 +111268,556.3400000005385,-0.049194706455475364 +111269,556.3450000005386,-0.04918886428129217 +111270,556.3500000005387,-0.049183003214912924 +111271,556.3550000005388,-0.04917712314710317 +111272,556.3600000005389,-0.04917122396769858 +111273,556.365000000539,-0.04916530556559433 +111274,556.3700000005391,-0.04915936782873439 +111275,556.3750000005392,-0.049153410644100635 +111276,556.3800000005393,-0.04914743389770175 +111277,556.3850000005394,-0.04914143747456207 +111278,556.3900000005395,-0.04913542125871015 +111279,556.3950000005397,-0.049129385133167204 +111280,556.4000000005398,-0.04912332897993548 +111281,556.4050000005399,-0.04911725267998628 +111282,556.41000000054,-0.04911115611324794 +111283,556.4150000005401,-0.0491050391585936 +111284,556.4200000005402,-0.04909890169382873 +111285,556.4250000005403,-0.04909274359567858 +111286,556.4300000005404,-0.04908656473977534 +111287,556.4350000005405,-0.04908036500064517 +111288,556.4400000005406,-0.049074144251695054 +111289,556.4450000005407,-0.049067902365199326 +111290,556.4500000005409,-0.049061639212286165 +111291,556.455000000541,-0.04905535466292379 +111292,556.4600000005411,-0.049049048585906425 +111293,556.4650000005412,-0.049042720848840114 +111294,556.4700000005413,-0.049036371318128276 +111295,556.4750000005414,-0.04902999985895705 +111296,556.4800000005415,-0.04902360633528041 +111297,556.4850000005416,-0.049017190609805084 +111298,556.4900000005417,-0.049010752543975154 +111299,556.4950000005418,-0.049004291997956494 +111300,556.500000000542,-0.048997808830620965 +111301,556.505000000542,-0.04899130289953029 +111302,556.5100000005422,-0.048984774060919764 +111303,556.5150000005423,-0.04897822216968163 +111304,556.5200000005424,-0.04897164707934825 +111305,556.5250000005425,-0.04896504864207497 +111306,556.5300000005426,-0.04895842670862272 +111307,556.5350000005427,-0.04895178112834037 +111308,556.5400000005428,-0.04894511174914673 +111309,556.5450000005429,-0.048938418417512314 +111310,556.550000000543,-0.04893170097844083 +111311,556.5550000005431,-0.0489249592754503 +111312,556.5600000005433,-0.048918193150553915 +111313,556.5650000005434,-0.04891140244424057 +111314,556.5700000005435,-0.04890458699545507 +111315,556.5750000005436,-0.048897746641578047 +111316,556.5800000005437,-0.048890881218405485 +111317,556.5850000005438,-0.04888399056012794 +111318,556.5900000005439,-0.04887707449930944 +111319,556.595000000544,-0.04887013286686594 +111320,556.6000000005441,-0.04886316549204353 +111321,556.6050000005442,-0.048856172202396214 +111322,556.6100000005443,-0.04884915282376331 +111323,556.6150000005445,-0.04884210718024645 +111324,556.6200000005446,-0.048835035094186297 +111325,556.6250000005447,-0.04882793638613868 +111326,556.6300000005448,-0.048820810874850504 +111327,556.6350000005449,-0.04881365837723511 +111328,556.640000000545,-0.04880647870834729 +111329,556.6450000005451,-0.048799271681357836 +111330,556.6500000005452,-0.048792037107527636 +111331,556.6550000005453,-0.04878477479618132 +111332,556.6600000005454,-0.04877748455468048 +111333,556.6650000005455,-0.04877016618839637 +111334,556.6700000005457,-0.04876281950068216 +111335,556.6750000005458,-0.048755444292844646 +111336,556.6800000005459,-0.04874804036411551 +111337,556.685000000546,-0.04874060751162204 +111338,556.6900000005461,-0.048733145530357326 +111339,556.6950000005462,-0.04872565421314992 +111340,556.7000000005463,-0.048718133350632936 +111341,556.7050000005464,-0.04871058273121257 +111342,556.7100000005465,-0.04870300214103613 +111343,556.7150000005466,-0.04869539136395936 +111344,556.7200000005467,-0.048687750181513244 +111345,556.7250000005469,-0.048680078372870174 +111346,556.730000000547,-0.04867237571480946 +111347,556.7350000005471,-0.048664641981682244 +111348,556.7400000005472,-0.04865687694537574 +111349,556.7450000005473,-0.04864908037527675 +111350,556.7500000005474,-0.04864125203823461 +111351,556.7550000005475,-0.04863339169852328 +111352,556.7600000005476,-0.04862549911780281 +111353,556.7650000005477,-0.04861757405508008 +111354,556.7700000005478,-0.04860961626666873 +111355,556.775000000548,-0.04860162550614831 +111356,556.7800000005481,-0.04859360152432269 +111357,556.7850000005482,-0.04858554406917763 +111358,556.7900000005483,-0.04857745288583752 +111359,556.7950000005484,-0.04856932771652129 +111360,556.8000000005485,-0.048561168300497365 +111361,556.8050000005486,-0.04855297437403788 +111362,556.8100000005487,-0.048544745670371835 +111363,556.8150000005488,-0.04853648191963738 +111364,556.8200000005489,-0.04852818284883316 +111365,556.825000000549,-0.04851984818176861 +111366,556.8300000005491,-0.04851147763901329 +111367,556.8350000005493,-0.048503070937845186 +111368,556.8400000005494,-0.04849462779219793 +111369,556.8450000005495,-0.04848614791260695 +111370,556.8500000005496,-0.04847763100615447 +111371,556.8550000005497,-0.04846907677641347 +111372,556.8600000005498,-0.0484604849233903 +111373,556.8650000005499,-0.04845185514346626 +111374,556.87000000055,-0.04844318712933787 +111375,556.8750000005501,-0.04843448056995586 +111376,556.8800000005502,-0.04842573515046288 +111377,556.8850000005503,-0.048416950552129925 +111378,556.8900000005505,-0.04840812645229128 +111379,556.8950000005506,-0.04839926252427817 +111380,556.9000000005507,-0.04839035843735089 +111381,556.9050000005508,-0.048381413856629536 +111382,556.9100000005509,-0.0483724284430231 +111383,556.915000000551,-0.048363401853157094 +111384,556.9200000005511,-0.04835433373929956 +111385,556.9250000005512,-0.04834522374928535 +111386,556.9300000005513,-0.04833607152643882 +111387,556.9350000005514,-0.0483268767094947 +111388,556.9400000005515,-0.04831763893251721 +111389,556.9450000005517,-0.04830835782481733 +111390,556.9500000005518,-0.048299033010868124 +111391,556.9550000005519,-0.04828966411021821 +111392,556.960000000552,-0.048280250737403156 +111393,556.9650000005521,-0.048270792501854815 +111394,556.9700000005522,-0.048261289007808565 +111395,556.9750000005523,-0.04825173985420836 +111396,556.9800000005524,-0.04824214463460951 +111397,556.9850000005525,-0.04823250293707917 +111398,556.9900000005526,-0.04822281434409443 +111399,556.9950000005527,-0.04821307843243799 +111400,557.0000000005529,-0.04820329477309122 +111401,557.005000000553,-0.04819346293112469 +111402,557.0100000005531,-0.048183582465586045 +111403,557.0150000005532,-0.048173652929384976 +111404,557.0200000005533,-0.04816367386917551 +111405,557.0250000005534,-0.04815364482523522 +111406,557.0300000005535,-0.04814356533134149 +111407,557.0350000005536,-0.0481334349146446 +111408,557.0400000005537,-0.04812325309553765 +111409,557.0450000005538,-0.04811301938752308 +111410,557.050000000554,-0.04810273329707582 +111411,557.0550000005541,-0.04809239432350281 +111412,557.0600000005542,-0.04808200195879899 +111413,557.0650000005543,-0.04807155568749939 +111414,557.0700000005544,-0.04806105498652735 +111415,557.0750000005545,-0.04805049932503875 +111416,557.0800000005546,-0.048039888164261996 +111417,557.0850000005547,-0.04802922095733378 +111418,557.0900000005548,-0.04801849714913031 +111419,557.0950000005549,-0.048007716176094 +111420,557.100000000555,-0.04799687746605533 +111421,557.1050000005552,-0.0479859804380498 +111422,557.1100000005553,-0.047975024502129864 +111423,557.1150000005554,-0.04796400905917143 +111424,557.1200000005555,-0.04795293350067502 +111425,557.1250000005556,-0.04794179720856121 +111426,557.1300000005557,-0.047930599554960256 +111427,557.1350000005558,-0.047919339901995546 +111428,557.1400000005559,-0.04790801760156088 +111429,557.145000000556,-0.047896631995091116 +111430,557.1500000005561,-0.047885182413326115 +111431,557.1550000005562,-0.04787366817606762 +111432,557.1600000005564,-0.04786208859192887 +111433,557.1650000005565,-0.04785044295807663 +111434,557.1700000005566,-0.04783873055996544 +111435,557.1750000005567,-0.04782695067106354 +111436,557.1800000005568,-0.04781510255257054 +111437,557.1850000005569,-0.047803185453126146 +111438,557.190000000557,-0.04779119860850972 +111439,557.1950000005571,-0.04777914124133045 +111440,557.2000000005572,-0.04776701256070746 +111441,557.2050000005573,-0.04775481176193975 +111442,557.2100000005574,-0.047742538026165335 +111443,557.2150000005576,-0.04773019052000927 +111444,557.2200000005577,-0.047717768395219955 +111445,557.2250000005578,-0.04770527078829346 +111446,557.2300000005579,-0.04769269682008508 +111447,557.235000000558,-0.047680045595407776 +111448,557.2400000005581,-0.047667316202616876 +111449,557.2450000005582,-0.04765450771318041 +111450,557.2500000005583,-0.04764161918123446 +111451,557.2550000005584,-0.047628649643122904 +111452,557.2600000005585,-0.04761559811692076 +111453,557.2650000005586,-0.04760246360194046 +111454,557.2700000005588,-0.047589245078220266 +111455,557.2750000005589,-0.047575941505993966 +111456,557.280000000559,-0.047562551825141 +111457,557.2850000005591,-0.04754907495461606 +111458,557.2900000005592,-0.047535509791857215 +111459,557.2950000005593,-0.047521855212171574 +111460,557.3000000005594,-0.04750811006809721 +111461,557.3050000005595,-0.04749427318874041 +111462,557.3100000005596,-0.047480343379086805 +111463,557.3150000005597,-0.047466319419285266 +111464,557.3200000005598,-0.04745220006390296 +111465,557.32500000056,-0.04743798404115025 +111466,557.3300000005601,-0.04742367005207382 +111467,557.3350000005602,-0.04740925676971623 +111468,557.3400000005603,-0.04739474283824033 +111469,557.3450000005604,-0.0473801268720164 +111470,557.3500000005605,-0.04736540745467013 +111471,557.3550000005606,-0.04735058313808923 +111472,557.3600000005607,-0.047335652441386246 +111473,557.3650000005608,-0.047320613849815306 +111474,557.3700000005609,-0.047305465813639896 +111475,557.375000000561,-0.047290206746949046 +111476,557.3800000005612,-0.04727483502641864 +111477,557.3850000005613,-0.04725934899001474 +111478,557.3900000005614,-0.04724374693563541 +111479,557.3950000005615,-0.04722802711968705 +111480,557.4000000005616,-0.04721218775559137 +111481,557.4050000005617,-0.04719622701221858 +111482,557.4100000005618,-0.04718014301224194 +111483,557.4150000005619,-0.04716393383040863 +111484,557.420000000562,-0.04714759749172149 +111485,557.4250000005621,-0.04713113196952544 +111486,557.4300000005622,-0.04711453518349232 +111487,557.4350000005624,-0.04709780499749696 +111488,557.4400000005625,-0.04708093921737697 +111489,557.4450000005626,-0.047063935588567835 +111490,557.4500000005627,-0.04704679179360437 +111491,557.4550000005628,-0.04702950544947863 +111492,557.4600000005629,-0.04701207410484365 +111493,557.465000000563,-0.046994495237051084 +111494,557.4700000005631,-0.04697676624901006 +111495,557.4750000005632,-0.04695888446585307 +111496,557.4800000005633,-0.046940847131393536 +111497,557.4850000005634,-0.04692265140435789 +111498,557.4900000005636,-0.04690429435437365 +111499,557.4950000005637,-0.04688577295769269 +111500,557.5000000005638,-0.04686708409262697 +111501,557.5050000005639,-0.04684822453467151 +111502,557.510000000564,-0.04682919095128655 +111503,557.5150000005641,-0.046809979896307835 +111504,557.5200000005642,-0.046790587803950456 +111505,557.5250000005643,-0.04677101098236761 +111506,557.5300000005644,-0.04675124560672117 +111507,557.5350000005645,-0.046731287711715766 +111508,557.5400000005646,-0.04671113318354221 +111509,557.5450000005648,-0.04669077775116921 +111510,557.5500000005649,-0.04667021697691476 +111511,557.555000000565,-0.04664944624621927 +111512,557.5600000005651,-0.04662846075653272 +111513,557.5650000005652,-0.04660725550521548 +111514,557.5700000005653,-0.046585825276339116 +111515,557.5750000005654,-0.04656416462625695 +111516,557.5800000005655,-0.04654226786779529 +111517,557.5850000005656,-0.046520129052894245 +111518,557.5900000005657,-0.04649774195350073 +111519,557.5950000005658,-0.04647510004048577 +111520,557.600000000566,-0.04645219646032174 +111521,557.6050000005661,-0.04642902400921223 +111522,557.6100000005662,-0.04640557510431593 +111523,557.6150000005663,-0.04638184175164484 +111524,557.6200000005664,-0.04635781551014403 +111525,557.6250000005665,-0.04633348745137276 +111526,557.6300000005666,-0.046308848114101395 +111527,557.6350000005667,-0.04628388745301263 +111528,557.6400000005668,-0.046258594780543325 +111529,557.6450000005669,-0.046232958700721104 +111530,557.650000000567,-0.046206967033631245 +111531,557.6550000005672,-0.046180606728888136 +111532,557.6600000005673,-0.04615386376617597 +111533,557.6650000005674,-0.046126723040558336 +111534,557.6700000005675,-0.046099168229832156 +111535,557.6750000005676,-0.04607118164071571 +111536,557.6800000005677,-0.04604274403011584 +111537,557.6850000005678,-0.04601383439712802 +111538,557.6900000005679,-0.04598442974080927 +111539,557.695000000568,-0.04595450477817108 +111540,557.7000000005681,-0.04592403161634382 +111541,557.7050000005682,-0.045892979372572806 +111542,557.7100000005684,-0.04586131373577662 +111543,557.7150000005685,-0.045828996464024885 +111544,557.7200000005686,-0.04579598481370259 +111545,557.7250000005687,-0.0457622308985453 +111546,557.7300000005688,-0.04572768098033716 +111547,557.7350000005689,-0.04569227469796666 +111548,557.740000000569,-0.04565594424774237 +111549,557.7450000005691,-0.04561861353526476 +111550,557.7500000005692,-0.04558019732728064 +111551,557.7550000005693,-0.045540600439448575 +111552,557.7600000005694,-0.04549971699978054 +111553,557.7650000005696,-0.045457429823148605 +111554,557.7700000005697,-0.04541360991615413 +111555,557.7750000005698,-0.045368116106178545 +111556,557.7800000005699,-0.04532079476536468 +111557,557.78500000057,-0.045271479598831196 +111558,557.7900000005701,-0.045219991504417634 +111559,557.7950000005702,-0.04516613859446726 +111560,557.8000000005703,-0.045109716586844796 +111561,557.8050000005704,-0.04505050989420606 +111562,557.8100000005705,-0.04498829382310277 +111563,557.8150000005706,-0.04492283827559353 +111564,557.8200000005708,-0.0448539131572995 +111565,557.8250000005709,-0.044781295307997696 +111566,557.830000000571,-0.04470477625571442 +111567,557.8350000005711,-0.04462416963861278 +111568,557.8400000005712,-0.04453931695318929 +111569,557.8450000005713,-0.04445009047751871 +111570,557.8500000005714,-0.044356392724118794 +111571,557.8550000005715,-0.044258152428991206 +111572,557.8600000005716,-0.04415531769190713 +111573,557.8650000005717,-0.044047847294464225 +111574,557.8700000005718,-0.04393570135625668 +111575,557.875000000572,-0.04381883236248596 +111576,557.8800000005721,-0.04369717730690926 +111577,557.8850000005722,-0.04357065136651255 +111578,557.8900000005723,-0.043439143253905486 +111579,557.8950000005724,-0.043302512223481096 +111580,557.9000000005725,-0.04316058663691002 +111581,557.9050000005726,-0.04301316399642771 +111582,557.9100000005727,-0.0428600123955011 +111583,557.9150000005728,-0.042700873381105786 +111584,557.9200000005729,-0.042535466241043124 +111585,557.925000000573,-0.042363493705187515 +111586,557.9300000005732,-0.0421846489786706 +111587,557.9350000005733,-0.04199862392242291 +111588,557.9400000005734,-0.041805118087608235 +111589,557.9450000005735,-0.04160384821754754 +111590,557.9500000005736,-0.041394557760184365 +111591,557.9550000005737,-0.041177025875823295 +111592,557.9600000005738,-0.04095107536440922 +111593,557.9650000005739,-0.0407165788707605 +111594,557.970000000574,-0.04047346266896403 +111595,557.9750000005741,-0.04022170730499665 +111596,557.9800000005743,-0.03996134442103599 +111597,557.9850000005744,-0.03969244922998691 +111598,557.9900000005745,-0.03941512838799086 +111599,557.9950000005746,-0.03912950344090239 +111600,558.0000000005747,-0.03883569056086896 +111601,558.0050000005748,-0.03853377783191253 +111602,558.0100000005749,-0.03822380173302758 +111603,558.015000000575,-0.03790572457160478 +111604,558.0200000005751,-0.03757941439822557 +111605,558.0250000005752,-0.03724462845462288 +111606,558.0300000005753,-0.03690100060976444 +111607,558.0350000005755,-0.036548032674554504 +111608,558.0400000005756,-0.036185089063650686 +111609,558.0450000005757,-0.03581139403858592 +111610,558.0500000005758,-0.0354260306987429 +111611,558.0550000005759,-0.035027940918028154 +111612,558.060000000576,-0.03461592547965871 +111613,558.0650000005761,-0.034188643702898494 +111614,558.0700000005762,-0.03374461191617958 +111615,558.0750000005763,-0.033282200294670196 +111616,558.0800000005764,-0.03279962791854629 +111617,558.0850000005765,-0.03229495640997323 +111618,558.0900000005767,-0.03176608304863576 +111619,558.0950000005768,-0.03121073463729475 +111620,558.1000000005769,-0.030626463366446664 +111621,558.105000000577,-0.030010645383940465 +111622,558.1100000005771,-0.02936048180357514 +111623,558.1150000005772,-0.028673000865874477 +111624,558.1200000005773,-0.027945059490945015 +111625,558.1250000005774,-0.027173343104661813 +111626,558.1300000005775,-0.026354364585825744 +111627,558.1350000005776,-0.025484466130940162 +111628,558.1400000005777,-0.02455983096823524 +111629,558.1450000005779,-0.02357651429822313 +111630,558.150000000578,-0.02253050411201279 +111631,558.1550000005781,-0.021417822830176632 +111632,558.1600000005782,-0.020234680664084615 +111633,558.1650000005783,-0.018977691583118152 +111634,558.1700000005784,-0.017644161923356966 +111635,558.1750000005785,-0.01623245756204707 +111636,558.1800000005786,-0.014742444890027184 +111637,558.1850000005787,-0.013175981115356599 +111638,558.1900000005788,-0.011537401479238388 +111639,558.195000000579,-0.009833920533814468 +111640,558.200000000579,-0.008075842682444538 +111641,558.2050000005792,-0.0062764773407115795 +111642,558.2100000005793,-0.004451687374270829 +111643,558.2150000005794,-0.002619067585595353 +111644,558.2200000005795,-0.0007968395245899789 +111645,558.2250000005796,0.0009973689941882196 +111646,558.2300000005797,0.002747650720892809 +111647,558.2350000005798,0.004440665253922568 +111648,558.2400000005799,0.006066095763322965 +111649,558.24500000058,0.0076167083161045885 +111650,558.2500000005801,0.009088091134635089 +111651,558.2550000005803,0.010478195250022065 +111652,558.2600000005804,0.011786798842191085 +111653,558.2650000005805,0.013014989470327667 +111654,558.2700000005806,0.01416472025296119 +111655,558.2750000005807,0.015238462014958718 +111656,558.2800000005808,0.016238949976018068 +111657,558.2850000005809,0.017169011096538664 +111658,558.290000000581,0.01803145400939197 +111659,558.2950000005811,0.01882900419979544 +111660,558.3000000005812,0.019564270052625458 +111661,558.3050000005813,0.02023972886652835 +111662,558.3100000005815,0.020857725081523854 +111663,558.3150000005816,0.021420475474478163 +111664,558.3200000005817,0.021930077926931777 +111665,558.3250000005818,0.02238852166342717 +111666,558.3300000005819,0.022797697725216986 +111667,558.335000000582,0.023159409002590132 +111668,558.3400000005821,0.02347537949426145 +111669,558.3450000005822,0.023747262665689314 +111670,558.3500000005823,0.023976648890862394 +111671,558.3550000005824,0.02416507201912669 +111672,558.3600000005825,0.024314015133212828 +111673,558.3650000005827,0.024424915571470637 +111674,558.3700000005828,0.024499169285311487 +111675,558.3750000005829,0.02453813459707668 +111676,558.380000000583,0.024543135416716908 +111677,558.3850000005831,0.024515463969108798 +111678,558.3900000005832,0.024456383078105062 +111679,558.3950000005833,0.024367128048671405 +111680,558.4000000005834,0.024248908184670327 +111681,558.4050000005835,0.024102907976898097 +111682,558.4100000005836,0.023930287993729815 +111683,558.4150000005837,0.023732185505042934 +111684,558.4200000005839,0.023509714868843106 +111685,558.425000000584,0.02326396770909179 +111686,558.4300000005841,0.022996012912524653 +111687,558.4350000005842,0.022706896471658432 +111688,558.4400000005843,0.022397641200623715 +111689,558.4450000005844,0.022069246349857657 +111690,558.4500000005845,0.021722687144974766 +111691,558.4550000005846,0.021358914274258085 +111692,558.4600000005847,0.020978853348127723 +111693,558.4650000005848,0.02058340435262946 +111694,558.470000000585,0.020173441117423547 +111695,558.475000000585,0.01974981081694523 +111696,558.4800000005852,0.019313333521373297 +111697,558.4850000005853,0.018864801811804114 +111698,558.4900000005854,0.018404980471637335 +111699,558.4950000005855,0.01793460626368153 +111700,558.5000000005856,0.017454387799950805 +111701,558.5050000005857,0.01696500550860924 +111702,558.5100000005858,0.01646711170009606 +111703,558.5150000005859,0.015961330732194412 +111704,558.520000000586,0.01544825927174046 +111705,558.5250000005861,0.014928466648856362 +111706,558.5300000005863,0.014402495298058095 +111707,558.5350000005864,0.01387086127935315 +111708,558.5400000005865,0.013334054871511255 +111709,558.5450000005866,0.012792541229049426 +111710,558.5500000005867,0.012246761094107467 +111711,558.5550000005868,0.011697131554267892 +111712,558.5600000005869,0.011144046837470355 +111713,558.565000000587,0.010587879135443906 +111714,558.5700000005871,0.010028979447500423 +111715,558.5750000005872,0.009467678437061259 +111716,558.5800000005873,0.008904287293897827 +111717,558.5850000005875,0.00833909859572782 +111718,558.5900000005876,0.007772387163492877 +111719,558.5950000005877,0.007204410905336927 +111720,558.6000000005878,0.006635411644985966 +111721,558.6050000005879,0.0060656159308872335 +111722,558.610000000588,0.0054952358230906904 +111723,558.6150000005881,0.004924469655440163 +111724,558.6200000005882,0.00435350277117888 +111725,558.6250000005883,0.003782508230566698 +111726,558.6300000005884,0.0032116474895487637 +111727,558.6350000005885,0.0026410710489098736 +111728,558.6400000005887,0.0020709190736960714 +111729,558.6450000005888,0.0015013219829902891 +111730,558.6500000005889,0.0009324010103891851 +111731,558.655000000589,0.00036426873575346266 +111732,558.6600000005891,-0.00020297041100878844 +111733,558.6650000005892,-0.0007692196732068712 +111734,558.6700000005893,-0.001334389516634536 +111735,558.6750000005894,-0.001898397203687173 +111736,558.6800000005895,-0.002461166391094679 +111737,558.6850000005896,-0.003022626749972066 +111738,558.6900000005897,-0.0035827136068401657 +111739,558.6950000005899,-0.004141367604236141 +111740,558.70000000059,-0.004698534379511948 +111741,558.7050000005901,-0.0052541642604067495 +111742,558.7100000005902,-0.0058082119759797915 +111743,558.7150000005903,-0.00636063638149632 +111744,558.7200000005904,-0.006911400195876425 +111745,558.7250000005905,-0.0074604697503396124 +111746,558.7300000005906,-0.008007814746910005 +111747,558.7350000005907,-0.008553408025485812 +111748,558.7400000005908,-0.009097225338222775 +111749,558.745000000591,-0.009639245130034873 +111750,558.7500000005911,-0.010179448324074844 +111751,558.7550000005912,-0.0107178181111254 +111752,558.7600000005913,-0.011254339741902854 +111753,558.7650000005914,-0.011789000321357889 +111754,558.7700000005915,-0.012321788604142438 +111755,558.7750000005916,-0.012852694790505523 +111756,558.7800000005917,-0.013381710321983225 +111757,558.7850000005918,-0.013908827676355526 +111758,558.7900000005919,-0.014434040161461407 +111759,558.795000000592,-0.014957341707592189 +111760,558.8000000005921,-0.015478726658320443 +111761,558.8050000005923,-0.015998189559773404 +111762,558.8100000005924,-0.01651572494851963 +111763,558.8150000005925,-0.017031327138413516 +111764,558.8200000005926,-0.017544990006923212 +111765,558.8250000005927,-0.01805670678166276 +111766,558.8300000005928,-0.018566469828047764 +111767,558.8350000005929,-0.019074270439197818 +111768,558.840000000593,-0.0195800986294108 +111769,558.8450000005931,-0.020083942932732305 +111770,558.8500000005932,-0.02058579020832927 +111771,558.8550000005933,-0.021085625454547077 +111772,558.8600000005935,-0.02158343163367632 +111773,558.8650000005936,-0.022079189509573362 +111774,558.8700000005937,-0.022572877500360307 +111775,558.8750000005938,-0.02306447154847154 +111776,558.8800000005939,-0.023553945010309215 +111777,558.885000000594,-0.024041268567712087 +111778,558.8900000005941,-0.02452641016333291 +111779,558.8950000005942,-0.025009334961853185 +111780,558.9000000005943,-0.025490005338740653 +111781,558.9050000005944,-0.025968380897976432 +111782,558.9100000005946,-0.026444418519849387 +111783,558.9150000005947,-0.02691807243953552 +111784,558.9200000005948,-0.027389294356761667 +111785,558.9250000005949,-0.02785803357639932 +111786,558.930000000595,-0.02832423717935889 +111787,558.9350000005951,-0.028787850222664026 +111788,558.9400000005952,-0.029248815967096647 +111789,558.9450000005953,-0.029707076130323223 +111790,558.9500000005954,-0.0301625711629582 +111791,558.9550000005955,-0.03061524054460059 +111792,558.9600000005956,-0.0310650230965097 +111793,558.9650000005958,-0.03151185730727311 +111794,558.9700000005959,-0.03195568166757542 +111795,558.975000000596,-0.03239643501000768 +111796,558.9800000005961,-0.032834056849768437 +111797,558.9850000005962,-0.03326848772210229 +111798,558.9900000005963,-0.03369966951240023 +111799,558.9950000005964,-0.03412754577504623 +111800,559.0000000005965,-0.03455206203733089 +111801,559.0050000005966,-0.03497316608506028 +111802,559.0100000005967,-0.03539080822685487 +111803,559.0150000005968,-0.03580494153455188 +111804,559.020000000597,-0.03621552205757952 +111805,559.0250000005971,-0.03662250900965428 +111806,559.0300000005972,-0.03702586492664563 +111807,559.0350000005973,-0.03742555579494741 +111808,559.0400000005974,-0.037821551150177025 +111809,559.0450000005975,-0.03821382414648175 +111810,559.0500000005976,-0.03860235159715774 +111811,559.0550000005977,-0.03898711398767114 +111812,559.0600000005978,-0.039368095462508086 +111813,559.0650000005979,-0.039745283787565394 +111814,559.070000000598,-0.040118670290024604 +111815,559.0750000005982,-0.04048824977782746 +111816,559.0800000005983,-0.04085402044099246 +111817,559.0850000005984,-0.041215983737081206 +111818,559.0900000005985,-0.041574144263144396 +111819,559.0950000005986,-0.041928509616454536 +111820,559.1000000005987,-0.04227909024627042 +111821,559.1050000005988,-0.04262589929878433 +111822,559.1100000005989,-0.042968952457280656 +111823,559.115000000599,-0.0433082677793919 +111824,559.1200000005991,-0.04364386553317918 +111825,559.1250000005992,-0.04397576803359506 +111826,559.1300000005994,-0.044303999480712536 +111827,559.1350000005995,-0.04462858580092756 +111828,559.1400000005996,-0.04494955449217013 +111829,559.1450000005997,-0.04526693447399078 +111830,559.1500000005998,-0.045580755943230945 +111831,559.1550000005999,-0.04589105023583563 +111832,559.1600000006,-0.04619784969523017 +111833,559.1650000006001,-0.04650118754755733 +111834,559.1700000006002,-0.04680109778395905 +111835,559.1750000006003,-0.04709761504998801 +111836,559.1800000006004,-0.04739077454214801 +111837,559.1850000006006,-0.04768061191148844 +111838,559.1900000006007,-0.04796716317411572 +111839,559.1950000006008,-0.04825046462843403 +111840,559.2000000006009,-0.04853055277888574 +111841,559.205000000601,-0.04880746426593112 +111842,559.2100000006011,-0.04908123580198225 +111843,559.2150000006012,-0.04935190411299004 +111844,559.2200000006013,-0.049619505885372873 +111845,559.2250000006014,-0.04988407771797067 +111846,559.2300000006015,-0.05014565607870783 +111847,559.2350000006016,-0.050404277265652 +111848,559.2400000006018,-0.050659977372162504 +111849,559.2450000006019,-0.050912792255831125 +111850,559.250000000602,-0.05116275751092917 +111851,559.2550000006021,-0.051409908444087084 +111852,559.2600000006022,-0.051654280052946394 +111853,559.2650000006023,-0.05189590700753806 +111854,559.2700000006024,-0.052134823634155385 +111855,559.2750000006025,-0.05237106390150451 +111856,559.2800000006026,-0.05260466140892974 +111857,559.2850000006027,-0.05283564937652514 +111858,559.2900000006028,-0.05306406063695742 +111859,559.295000000603,-0.05328992762883848 +111860,559.3000000006031,-0.05351328239149825 +111861,559.3050000006032,-0.05373415656102066 +111862,559.3100000006033,-0.053952581367416645 +111863,559.3150000006034,-0.05416858763281876 +111864,559.3200000006035,-0.054382205770591587 +111865,559.3250000006036,-0.054593465785261586 +111866,559.3300000006037,-0.05480239727317843 +111867,559.3350000006038,-0.05500902942382754 +111868,559.3400000006039,-0.05521339102172117 +111869,559.345000000604,-0.055415510448801546 +111870,559.3500000006042,-0.05561541568729629 +111871,559.3550000006043,-0.05581313432297131 +111872,559.3600000006044,-0.05600869354873186 +111873,559.3650000006045,-0.0562021201685271 +111874,559.3700000006046,-0.0563934406015177 +111875,559.3750000006047,-0.056582680886469505 +111876,559.3800000006048,-0.056769866686340764 +111877,559.3850000006049,-0.05695502329303245 +111878,559.390000000605,-0.05713817563227498 +111879,559.3950000006051,-0.0573193482686269 +111880,559.4000000006052,-0.05749856541056354 +111881,559.4050000006054,-0.05767585091563584 +111882,559.4100000006055,-0.05785122829568141 +111883,559.4150000006056,-0.05802472072207201 +111884,559.4200000006057,-0.05819635103098271 +111885,559.4250000006058,-0.05836614172867003 +111886,559.4300000006059,-0.05853411499674724 +111887,559.435000000606,-0.058700292697446484 +111888,559.4400000006061,-0.05886469637885849 +111889,559.4450000006062,-0.05902734728014133 +111890,559.4500000006063,-0.059188266336691116 +111891,559.4550000006064,-0.05934747418526786 +111892,559.4600000006066,-0.059504991169070695 +111893,559.4650000006067,-0.05966083734275753 +111894,559.4700000006068,-0.05981503247740438 +111895,559.4750000006069,-0.059967596065400544 +111896,559.480000000607,-0.06011854732527645 +111897,559.4850000006071,-0.06026790520646084 +111898,559.4900000006072,-0.06041568839396506 +111899,559.4950000006073,-0.060561915312992425 +111900,559.5000000006074,-0.06070660413347072 +111901,559.5050000006075,-0.06084977277450658 +111902,559.5100000006076,-0.060991438908760555 +111903,559.5150000006078,-0.06113161996674224 +111904,559.5200000006079,-0.061270333141024536 +111905,559.525000000608,-0.06140759539037713 +111906,559.5300000006081,-0.06154342344381868 +111907,559.5350000006082,-0.061677833804588064 +111908,559.5400000006083,-0.06181084275403465 +111909,559.5450000006084,-0.06194246635542822 +111910,559.5500000006085,-0.062072720457688906 +111911,559.5550000006086,-0.062201620699037764 +111912,559.5600000006087,-0.06232918251056903 +111913,559.5650000006088,-0.06245542111974453 +111914,559.570000000609,-0.06258035155381157 +111915,559.5750000006091,-0.06270398864314508 +111916,559.5800000006092,-0.06282634702451537 +111917,559.5850000006093,-0.06294744114428252 +111918,559.5900000006094,-0.06306728526151872 +111919,559.5950000006095,-0.06318589345105988 +111920,559.6000000006096,-0.06330327960648778 +111921,559.6050000006097,-0.06341945744304432 +111922,559.6100000006098,-0.06353444050047896 +111923,559.6150000006099,-0.06364824214583117 +111924,559.62000000061,-0.06376087557614908 +111925,559.6250000006102,-0.06387235382114585 +111926,559.6300000006103,-0.06398268974579546 +111927,559.6350000006104,-0.06409189605286908 +111928,559.6400000006105,-0.0641999852854138 +111929,559.6450000006106,-0.06430696982917508 +111930,559.6500000006107,-0.06441286191496438 +111931,559.6550000006108,-0.06451767362097373 +111932,559.6600000006109,-0.06462141687503825 +111933,559.665000000611,-0.06472410345684862 +111934,559.6700000006111,-0.06482574500011451 +111935,559.6750000006112,-0.06492635299468066 +111936,559.6800000006114,-0.06502593878859692 +111937,559.6850000006115,-0.06512451359014375 +111938,559.6900000006116,-0.0652220884698144 +111939,559.6950000006117,-0.06531867436225519 +111940,559.7000000006118,-0.06541428206816532 +111941,559.7050000006119,-0.06550892225615723 +111942,559.710000000612,-0.0656026054645791 +111943,559.7150000006121,-0.06569534210330044 +111944,559.7200000006122,-0.06578714245546213 +111945,559.7250000006123,-0.0658780166791921 +111946,559.7300000006124,-0.0659679748092876 +111947,559.7350000006126,-0.0660570267588654 +111948,559.7400000006127,-0.06614518232098088 +111949,559.7450000006128,-0.06623245117021694 +111950,559.7500000006129,-0.06631884286424396 +111951,559.755000000613,-0.06640436684535167 +111952,559.7600000006131,-0.06648903244195377 +111953,559.7650000006132,-0.06657284887006633 +111954,559.7700000006133,-0.06665582523476084 +111955,559.7750000006134,-0.06673797053159276 +111956,559.7800000006135,-0.06681929364800618 +111957,559.7850000006136,-0.06689980336471561 +111958,559.7900000006138,-0.06697950835706552 +111959,559.7950000006139,-0.06705841719636844 +111960,559.800000000614,-0.06713653835122205 +111961,559.8050000006141,-0.06721388018880622 +111962,559.8100000006142,-0.06729045097616052 +111963,559.8150000006143,-0.0673662588814425 +111964,559.8200000006144,-0.06744131197516796 +111965,559.8250000006145,-0.06751561823143298 +111966,559.8300000006146,-0.0675891855291188 +111967,559.8350000006147,-0.06766202165307976 +111968,559.8400000006149,-0.06773413429531493 +111969,559.845000000615,-0.06780553105612358 +111970,559.8500000006151,-0.06787621944524536 +111971,559.8550000006152,-0.06794620688298507 +111972,559.8600000006153,-0.0680155007013229 +111973,559.8650000006154,-0.0680841081450101 +111974,559.8700000006155,-0.06815203637265067 +111975,559.8750000006156,-0.06821929245776918 +111976,559.8800000006157,-0.06828588338986528 +111977,559.8850000006158,-0.0683518160754549 +111978,559.8900000006159,-0.06841709733909876 +111979,559.895000000616,-0.06848173392441798 +111980,559.9000000006162,-0.06854573249509754 +111981,559.9050000006163,-0.0686090996358774 +111982,559.9100000006164,-0.06867184185353181 +111983,559.9150000006165,-0.06873396557783684 +111984,559.9200000006166,-0.06879547716252625 +111985,559.9250000006167,-0.06885638288623622 +111986,559.9300000006168,-0.06891668895343869 +111987,559.9350000006169,-0.06897640149536387 +111988,559.940000000617,-0.06903552657091165 +111989,559.9450000006171,-0.06909407016755265 +111990,559.9500000006173,-0.06915203820221831 +111991,559.9550000006174,-0.06920943652218087 +111992,559.9600000006175,-0.06926627090592287 +111993,559.9650000006176,-0.06932254706399656 +111994,559.9700000006177,-0.06937827063987317 +111995,559.9750000006178,-0.06943344721078241 +111996,559.9800000006179,-0.06948808228854192 +111997,559.985000000618,-0.06954218132037707 +111998,559.9900000006181,-0.0695957496897313 +111999,559.9950000006182,-0.06964879271706663 +112000,560.0000000006183,-0.06970131566065506 +112001,560.0050000006185,-0.06975332371736032 +112002,560.0100000006186,-0.06980482202341065 +112003,560.0150000006187,-0.06985581565516222 +112004,560.0200000006188,-0.06990630962985356 +112005,560.0250000006189,-0.06995630890635099 +112006,560.030000000619,-0.07000581838588513 +112007,560.0350000006191,-0.07005484291277855 +112008,560.0400000006192,-0.07010338727516482 +112009,560.0450000006193,-0.0701514562056986 +112010,560.0500000006194,-0.0701990543822574 +112011,560.0550000006195,-0.07024618642863474 +112012,560.0600000006197,-0.07029285691522484 +112013,560.0650000006198,-0.07033907035969894 +112014,560.0700000006199,-0.07038483122767333 +112015,560.07500000062,-0.07043014393336927 +112016,560.0800000006201,-0.07047501284026456 +112017,560.0850000006202,-0.07051944226173723 +112018,560.0900000006203,-0.07056343646170114 +112019,560.0950000006204,-0.0706069996552337 +112020,560.1000000006205,-0.0706501360091957 +112021,560.1050000006206,-0.07069284964284336 +112022,560.1100000006207,-0.07073514462843274 +112023,560.1150000006209,-0.07077702499181647 +112024,560.120000000621,-0.07081849471303295 +112025,560.1250000006211,-0.07085955772688801 +112026,560.1300000006212,-0.07090021792352925 +112027,560.1350000006213,-0.070940479149013 +112028,560.1400000006214,-0.07098034520586397 +112029,560.1450000006215,-0.07101981985362778 +112030,560.1500000006216,-0.07105890680941639 +112031,560.1550000006217,-0.07109760974844638 +112032,560.1600000006218,-0.07113593230457037 +112033,560.165000000622,-0.07117387807080147 +112034,560.170000000622,-0.071211450599831 +112035,560.1750000006222,-0.07124865340453936 +112036,560.1800000006223,-0.07128548995850022 +112037,560.1850000006224,-0.07132196369647828 +112038,560.1900000006225,-0.07135807801492022 +112039,560.1950000006226,-0.07139383627243949 +112040,560.2000000006227,-0.07142924179029445 +112041,560.2050000006228,-0.0714642978528604 +112042,560.2100000006229,-0.07149900770809531 +112043,560.215000000623,-0.07153337456799927 +112044,560.2200000006231,-0.07156740160906808 +112045,560.2250000006233,-0.07160109197274055 +112046,560.2300000006234,-0.07163444876584008 +112047,560.2350000006235,-0.07166747506101023 +112048,560.2400000006236,-0.07170017389714453 +112049,560.2450000006237,-0.07173254827981047 +112050,560.2500000006238,-0.07176460118166801 +112051,560.2550000006239,-0.07179633554288231 +112052,560.260000000624,-0.07182775427153099 +112053,560.2650000006241,-0.07185886024400592 +112054,560.2700000006242,-0.07188965630540978 +112055,560.2750000006243,-0.07192014526994694 +112056,560.2800000006245,-0.07195032992130952 +112057,560.2850000006246,-0.0719802130130579 +112058,560.2900000006247,-0.07200979726899637 +112059,560.2950000006248,-0.0720390853835435 +112060,560.3000000006249,-0.0720680800220978 +112061,560.305000000625,-0.07209678382139818 +112062,560.3100000006251,-0.07212519938987971 +112063,560.3150000006252,-0.07215332930802458 +112064,560.3200000006253,-0.0721811761287083 +112065,560.3250000006254,-0.07220874237754116 +112066,560.3300000006255,-0.07223603055320534 +112067,560.3350000006257,-0.07226304312778713 +112068,560.3400000006258,-0.07228978254710496 +112069,560.3450000006259,-0.07231625123103282 +112070,560.350000000626,-0.07234245157381947 +112071,560.3550000006261,-0.07236838594440323 +112072,560.3600000006262,-0.07239405668672262 +112073,560.3650000006263,-0.07241946612002273 +112074,560.3700000006264,-0.07244461653915754 +112075,560.3750000006265,-0.07246951021488814 +112076,560.3800000006266,-0.07249414939417693 +112077,560.3850000006267,-0.0725185363004779 +112078,560.3900000006269,-0.07254267313402295 +112079,560.395000000627,-0.07256656207210442 +112080,560.4000000006271,-0.07259020526935381 +112081,560.4050000006272,-0.0726136048580167 +112082,560.4100000006273,-0.07263676294822413 +112083,560.4150000006274,-0.07265968162826016 +112084,560.4200000006275,-0.07268236296482598 +112085,560.4250000006276,-0.07270480900330042 +112086,560.4300000006277,-0.07272702176799703 +112087,560.4350000006278,-0.07274900326241761 +112088,560.440000000628,-0.0727707554695025 +112089,560.445000000628,-0.0727922803518775 +112090,560.4500000006282,-0.07281357985209731 +112091,560.4550000006283,-0.07283465589288604 +112092,560.4600000006284,-0.07285551037737423 +112093,560.4650000006285,-0.07287614518933293 +112094,560.4700000006286,-0.07289656219340453 +112095,560.4750000006287,-0.07291676323533054 +112096,560.4800000006288,-0.07293675014217649 +112097,560.4850000006289,-0.07295652472255366 +112098,560.490000000629,-0.07297608876683798 +112099,560.4950000006291,-0.07299544404738599 +112100,560.5000000006293,-0.07301459231874803 +112101,560.5050000006294,-0.07303353531787847 +112102,560.5100000006295,-0.07305227476434334 +112103,560.5150000006296,-0.07307081236052505 +112104,560.5200000006297,-0.0730891497918246 +112105,560.5250000006298,-0.07310728872686093 +112106,560.5300000006299,-0.07312523081766785 +112107,560.53500000063,-0.0731429776998882 +112108,560.5400000006301,-0.07316053099296571 +112109,560.5450000006302,-0.073177892300334 +112110,560.5500000006303,-0.07319506320960348 +112111,560.5550000006305,-0.07321204529274555 +112112,560.5600000006306,-0.07322884010627455 +112113,560.5650000006307,-0.07324544919142716 +112114,560.5700000006308,-0.07326187407433969 +112115,560.5750000006309,-0.07327811626622292 +112116,560.580000000631,-0.07329417726353472 +112117,560.5850000006311,-0.07331005854815036 +112118,560.5900000006312,-0.07332576158753072 +112119,560.5950000006313,-0.07334128783488829 +112120,560.6000000006314,-0.07335663872935098 +112121,560.6050000006315,-0.0733718156961238 +112122,560.6100000006317,-0.07338682014664862 +112123,560.6150000006318,-0.0734016534787616 +112124,560.6200000006319,-0.0734163170768489 +112125,560.625000000632,-0.0734308123120001 +112126,560.6300000006321,-0.07344514054215989 +112127,560.6350000006322,-0.07345930311227766 +112128,560.6400000006323,-0.07347330135445526 +112129,560.6450000006324,-0.07348713658809278 +112130,560.6500000006325,-0.07350081012003261 +112131,560.6550000006326,-0.07351432324470154 +112132,560.6600000006327,-0.07352767724425108 +112133,560.6650000006329,-0.07354087338869603 +112134,560.670000000633,-0.07355391293605122 +112135,560.6750000006331,-0.07356679713246664 +112136,560.6800000006332,-0.07357952721236068 +112137,560.6850000006333,-0.07359210439855184 +112138,560.6900000006334,-0.07360452990238871 +112139,560.6950000006335,-0.07361680492387826 +112140,560.7000000006336,-0.07362893065181264 +112141,560.7050000006337,-0.07364090826389422 +112142,560.7100000006338,-0.07365273892685918 +112143,560.715000000634,-0.07366442379659957 +112144,560.7200000006341,-0.07367596401828361 +112145,560.7250000006342,-0.0736873607264748 +112146,560.7300000006343,-0.07369861504524935 +112147,560.7350000006344,-0.07370972808831211 +112148,560.7400000006345,-0.07372070095911115 +112149,560.7450000006346,-0.07373153475095093 +112150,560.7500000006347,-0.07374223054710388 +112151,560.7550000006348,-0.07375278942092088 +112152,560.7600000006349,-0.07376321243594003 +112153,560.765000000635,-0.07377350064599437 +112154,560.7700000006352,-0.07378365509531809 +112155,560.7750000006353,-0.07379367681865141 +112156,560.7800000006354,-0.07380356684134434 +112157,560.7850000006355,-0.07381332617945892 +112158,560.7900000006356,-0.07382295583987039 +112159,560.7950000006357,-0.07383245682036702 +112160,560.8000000006358,-0.07384183010974867 +112161,560.8050000006359,-0.07385107668792432 +112162,560.810000000636,-0.07386019752600814 +112163,560.8150000006361,-0.07386919358641458 +112164,560.8200000006362,-0.07387806582295227 +112165,560.8250000006364,-0.07388681518091665 +112166,560.8300000006365,-0.07389544259718163 +112167,560.8350000006366,-0.07390394900028996 +112168,560.8400000006367,-0.07391233531054264 +112169,560.8450000006368,-0.07392060244008723 +112170,560.8500000006369,-0.07392875129300495 +112171,560.855000000637,-0.07393678276539685 +112172,560.8600000006371,-0.07394469774546891 +112173,560.8650000006372,-0.07395249711361612 +112174,560.8700000006373,-0.07396018174250542 +112175,560.8750000006374,-0.0739677524971578 +112176,560.8800000006376,-0.0739752102350294 +112177,560.8850000006377,-0.07398255580609138 +112178,560.8900000006378,-0.07398979005290925 +112179,560.8950000006379,-0.07399691381072081 +112180,560.900000000638,-0.07400392790751349 +112181,560.9050000006381,-0.07401083316410054 +112182,560.9100000006382,-0.07401763039419641 +112183,560.9150000006383,-0.07402432040449126 +112184,560.9200000006384,-0.07403090399472444 +112185,560.9250000006385,-0.07403738195775722 +112186,560.9300000006386,-0.07404375507964459 +112187,560.9350000006388,-0.0740500241397062 +112188,560.9400000006389,-0.07405618991059654 +112189,560.945000000639,-0.07406225315837411 +112190,560.9500000006391,-0.07406821464257 +112191,560.9550000006392,-0.07407407511625538 +112192,560.9600000006393,-0.07407983532610847 +112193,560.9650000006394,-0.0740854960124805 +112194,560.9700000006395,-0.07409105790946104 +112195,560.9750000006396,-0.07409652174494237 +112196,560.9800000006397,-0.07410188824068337 +112197,560.9850000006398,-0.07410715811237238 +112198,560.99000000064,-0.07411233206968947 +112199,560.9950000006401,-0.07411741081636793 +112200,561.0000000006402,-0.07412239505025509 +112201,561.0050000006403,-0.0741272854633723 +112202,561.0100000006404,-0.0741320827419744 +112203,561.0150000006405,-0.07413678756660827 +112204,561.0200000006406,-0.07414140061217088 +112205,561.0250000006407,-0.0741459225479666 +112206,561.0300000006408,-0.07415035403776377 +112207,561.0350000006409,-0.07415469573985066 +112208,561.040000000641,-0.07415894830709088 +112209,561.0450000006412,-0.074163112386978 +112210,561.0500000006413,-0.07416718862168954 +112211,561.0550000006414,-0.07417117764814048 +112212,561.0600000006415,-0.0741750800980359 +112213,561.0650000006416,-0.07417889659792337 +112214,561.0700000006417,-0.07418262776924432 +112215,561.0750000006418,-0.07418627422838513 +112216,561.0800000006419,-0.0741898365867275 +112217,561.085000000642,-0.07419331545069821 +112218,561.0900000006421,-0.07419671142181845 +112219,561.0950000006422,-0.07420002509675241 +112220,561.1000000006424,-0.0742032570673554 +112221,561.1050000006425,-0.0742064079207214 +112222,561.1100000006426,-0.07420947823923013 +112223,561.1150000006427,-0.07421246860059343 +112224,561.1200000006428,-0.07421537957790127 +112225,561.1250000006429,-0.07421821173966711 +112226,561.130000000643,-0.07422096564987288 +112227,561.1350000006431,-0.07422364186801328 +112228,561.1400000006432,-0.07422624094913965 +112229,561.1450000006433,-0.07422876344390344 +112230,561.1500000006434,-0.07423120989859903 +112231,561.1550000006436,-0.07423358085520614 +112232,561.1600000006437,-0.0742358768514317 +112233,561.1650000006438,-0.07423809842075141 +112234,561.1700000006439,-0.07424024609245063 +112235,561.175000000644,-0.07424232039166487 +112236,561.1800000006441,-0.07424432183941991 +112237,561.1850000006442,-0.0742462509526714 +112238,561.1900000006443,-0.07424810824434395 +112239,561.1950000006444,-0.0742498942233699 +112240,561.2000000006445,-0.07425160939472761 +112241,561.2050000006446,-0.07425325425947923 +112242,561.2100000006448,-0.07425482931480824 +112243,561.2150000006449,-0.07425633505405639 +112244,561.220000000645,-0.0742577719667603 +112245,561.2250000006451,-0.07425914053868765 +112246,561.2300000006452,-0.07426044125187296 +112247,561.2350000006453,-0.07426167458465299 +112248,561.2400000006454,-0.07426284101170172 +112249,561.2450000006455,-0.07426394100406492 +112250,561.2500000006456,-0.0742649750291944 +112251,561.2550000006457,-0.07426594355098183 +112252,561.2600000006458,-0.07426684702979222 +112253,561.265000000646,-0.07426768592249698 +112254,561.2700000006461,-0.07426846068250668 +112255,561.2750000006462,-0.07426917175980337 +112256,561.2800000006463,-0.07426981960097262 +112257,561.2850000006464,-0.07427040464923516 +112258,561.2900000006465,-0.0742709273444782 +112259,561.2950000006466,-0.07427138812328635 +112260,561.3000000006467,-0.0742717874189723 +112261,561.3050000006468,-0.07427212566160708 +112262,561.3100000006469,-0.07427240327805 +112263,561.315000000647,-0.07427262069197826 +112264,561.3200000006472,-0.07427277832391632 +112265,561.3250000006473,-0.07427287659126486 +112266,561.3300000006474,-0.07427291590832936 +112267,561.3350000006475,-0.0742728966863486 +112268,561.3400000006476,-0.07427281933352255 +112269,561.3450000006477,-0.07427268425504029 +112270,561.3500000006478,-0.0742724918531073 +112271,561.3550000006479,-0.07427224252697265 +112272,561.360000000648,-0.0742719366729559 +112273,561.3650000006481,-0.07427157468447357 +112274,561.3700000006482,-0.07427115695206551 +112275,561.3750000006484,-0.07427068386342084 +112276,561.3800000006485,-0.07427015580340364 +112277,561.3850000006486,-0.07426957315407842 +112278,561.3900000006487,-0.07426893629473526 +112279,561.3950000006488,-0.07426824560191472 +112280,561.4000000006489,-0.07426750144943249 +112281,561.405000000649,-0.07426670420840364 +112282,561.4100000006491,-0.07426585424726685 +112283,561.4150000006492,-0.07426495193180815 +112284,561.4200000006493,-0.07426399762518464 +112285,561.4250000006494,-0.07426299168794766 +112286,561.4300000006496,-0.074261934478066 +112287,561.4350000006497,-0.07426082635094872 +112288,561.4400000006498,-0.07425966765946769 +112289,561.4450000006499,-0.07425845875398009 +112290,561.45000000065,-0.07425719998235035 +112291,561.4550000006501,-0.0742558916899722 +112292,561.4600000006502,-0.07425453421979022 +112293,561.4650000006503,-0.07425312791232143 +112294,561.4700000006504,-0.07425167310567628 +112295,561.4750000006505,-0.07425017013557976 +112296,561.4800000006506,-0.07424861933539222 +112297,561.4850000006508,-0.07424702103612975 +112298,561.4900000006509,-0.07424537556648467 +112299,561.495000000651,-0.07424368325284555 +112300,561.5000000006511,-0.07424194441931718 +112301,561.5050000006512,-0.07424015938774019 +112302,561.5100000006513,-0.07423832847771064 +112303,561.5150000006514,-0.07423645200659924 +112304,561.5200000006515,-0.07423453028957047 +112305,561.5250000006516,-0.07423256363960151 +112306,561.5300000006517,-0.07423055236750084 +112307,561.5350000006518,-0.07422849678192682 +112308,561.540000000652,-0.07422639718940602 +112309,561.5450000006521,-0.07422425389435126 +112310,561.5500000006522,-0.07422206719907963 +112311,561.5550000006523,-0.07421983740383019 +112312,561.5600000006524,-0.07421756480678156 +112313,561.5650000006525,-0.0742152497040693 +112314,561.5700000006526,-0.07421289238980312 +112315,561.5750000006527,-0.07421049315608394 +112316,561.5800000006528,-0.07420805229302073 +112317,561.5850000006529,-0.07420557008874716 +112318,561.590000000653,-0.07420304682943821 +112319,561.5950000006532,-0.07420048279932642 +112320,561.6000000006533,-0.07419787828071814 +112321,561.6050000006534,-0.07419523355400952 +112322,561.6100000006535,-0.07419254889770237 +112323,561.6150000006536,-0.07418982458841984 +112324,561.6200000006537,-0.07418706090092202 +112325,561.6250000006538,-0.07418425810812124 +112326,561.6300000006539,-0.07418141648109734 +112327,561.635000000654,-0.07417853628911272 +112328,561.6400000006541,-0.07417561779962728 +112329,561.6450000006542,-0.07417266127831317 +112330,561.6500000006544,-0.0741696669890694 +112331,561.6550000006545,-0.07416663519403638 +112332,561.6600000006546,-0.07416356615361017 +112333,561.6650000006547,-0.0741604601264567 +112334,561.6700000006548,-0.07415731736952583 +112335,561.6750000006549,-0.07415413813806523 +112336,561.680000000655,-0.07415092268563418 +112337,561.6850000006551,-0.07414767126411717 +112338,561.6900000006552,-0.07414438412373736 +112339,561.6950000006553,-0.07414106151307003 +112340,561.7000000006555,-0.07413770367905577 +112341,561.7050000006556,-0.07413431086701353 +112342,561.7100000006557,-0.07413088332065366 +112343,561.7150000006558,-0.07412742128209072 +112344,561.7200000006559,-0.07412392499185619 +112345,561.725000000656,-0.07412039468891105 +112346,561.7300000006561,-0.0741168306106583 +112347,561.7350000006562,-0.07411323299295523 +112348,561.7400000006563,-0.07410960207012572 +112349,561.7450000006564,-0.07410593807497226 +112350,561.7500000006565,-0.07410224123878802 +112351,561.7550000006567,-0.07409851179136866 +112352,561.7600000006568,-0.07409474996102411 +112353,561.7650000006569,-0.07409095597459021 +112354,561.770000000657,-0.07408713005744026 +112355,561.7750000006571,-0.07408327243349637 +112356,561.7800000006572,-0.07407938332524079 +112357,561.7850000006573,-0.07407546295372718 +112358,561.7900000006574,-0.07407151153859158 +112359,561.7950000006575,-0.07406752929806351 +112360,561.8000000006576,-0.07406351644897673 +112361,561.8050000006577,-0.0740594732067801 +112362,561.8100000006579,-0.0740553997855482 +112363,561.815000000658,-0.07405129639799195 +112364,561.8200000006581,-0.074047163255469 +112365,561.8250000006582,-0.07404300056799416 +112366,561.8300000006583,-0.07403880854424962 +112367,561.8350000006584,-0.07403458739159517 +112368,561.8400000006585,-0.07403033731607823 +112369,561.8450000006586,-0.07402605852244384 +112370,561.8500000006587,-0.07402175121414459 +112371,561.8550000006588,-0.07401741559335029 +112372,561.8600000006589,-0.07401305186095782 +112373,561.865000000659,-0.0740086602166006 +112374,561.8700000006592,-0.07400424085865821 +112375,561.8750000006593,-0.07399979398426575 +112376,561.8800000006594,-0.07399531978932321 +112377,561.8850000006595,-0.07399081846850472 +112378,561.8900000006596,-0.07398629021526767 +112379,561.8950000006597,-0.07398173522186188 +112380,561.9000000006598,-0.07397715367933852 +112381,561.9050000006599,-0.073972545777559 +112382,561.91000000066,-0.0739679117052039 +112383,561.9150000006601,-0.0739632516497816 +112384,561.9200000006603,-0.07395856579763704 +112385,561.9250000006604,-0.07395385433396022 +112386,561.9300000006605,-0.07394911744279482 +112387,561.9350000006606,-0.07394435530704647 +112388,561.9400000006607,-0.07393956810849125 +112389,561.9450000006608,-0.07393475602778389 +112390,561.9500000006609,-0.07392991924446596 +112391,561.955000000661,-0.07392505793697399 +112392,561.9600000006611,-0.07392017228264759 +112393,561.9650000006612,-0.07391526245773733 +112394,561.9700000006613,-0.07391032863741272 +112395,561.9750000006615,-0.07390537099576998 +112396,561.9800000006616,-0.0739003897058398 +112397,561.9850000006617,-0.0738953849395951 +112398,561.9900000006618,-0.07389035686795858 +112399,561.9950000006619,-0.0738853056608103 +112400,562.000000000662,-0.0738802314869951 +112401,562.0050000006621,-0.07387513451433014 +112402,562.0100000006622,-0.07387001490961215 +112403,562.0150000006623,-0.07386487283862474 +112404,562.0200000006624,-0.07385970846614559 +112405,562.0250000006625,-0.07385452195595366 +112406,562.0300000006627,-0.07384931347083623 +112407,562.0350000006628,-0.07384408317259596 +112408,562.0400000006629,-0.0738388312220578 +112409,562.045000000663,-0.07383355777907592 +112410,562.0500000006631,-0.07382826300254061 +112411,562.0550000006632,-0.07382294705038496 +112412,562.0600000006633,-0.07381761007959162 +112413,562.0650000006634,-0.07381225224619946 +112414,562.0700000006635,-0.07380687370531022 +112415,562.0750000006636,-0.07380147461109494 +112416,562.0800000006637,-0.07379605511680057 +112417,562.0850000006639,-0.07379061537475629 +112418,562.090000000664,-0.07378515553637996 +112419,562.0950000006641,-0.0737796757521844 +112420,562.1000000006642,-0.07377417617178367 +112421,562.1050000006643,-0.07376865694389925 +112422,562.1100000006644,-0.07376311821636622 +112423,562.1150000006645,-0.07375756013613938 +112424,562.1200000006646,-0.07375198284929921 +112425,562.1250000006647,-0.07374638650105797 +112426,562.1300000006648,-0.07374077123576558 +112427,562.135000000665,-0.0737351371969155 +112428,562.140000000665,-0.07372948452715065 +112429,562.1450000006652,-0.0737238133682691 +112430,562.1500000006653,-0.07371812386122988 +112431,562.1550000006654,-0.07371241614615864 +112432,562.1600000006655,-0.07370669036235335 +112433,562.1650000006656,-0.07370094664828977 +112434,562.1700000006657,-0.07369518514162715 +112435,562.1750000006658,-0.07368940597921361 +112436,562.1800000006659,-0.0736836092970917 +112437,562.185000000666,-0.07367779523050365 +112438,562.1900000006661,-0.07367196391389694 +112439,562.1950000006663,-0.07366611548092943 +112440,562.2000000006664,-0.07366025006447473 +112441,562.2050000006665,-0.07365436779662743 +112442,562.2100000006666,-0.07364846880870823 +112443,562.2150000006667,-0.07364255323126913 +112444,562.2200000006668,-0.07363662119409851 +112445,562.2250000006669,-0.07363067282622617 +112446,562.230000000667,-0.07362470825592833 +112447,562.2350000006671,-0.07361872761073267 +112448,562.2400000006672,-0.07361273101742319 +112449,562.2450000006673,-0.07360671860204515 +112450,562.2500000006675,-0.07360069048990986 +112451,562.2550000006676,-0.07359464680559952 +112452,562.2600000006677,-0.07358858767297198 +112453,562.2650000006678,-0.07358251321516554 +112454,562.2700000006679,-0.07357642355460348 +112455,562.275000000668,-0.0735703188129989 +112456,562.2800000006681,-0.07356419911135915 +112457,562.2850000006682,-0.0735580645699906 +112458,562.2900000006683,-0.07355191530850301 +112459,562.2950000006684,-0.0735457514458141 +112460,562.3000000006685,-0.07353957310015403 +112461,562.3050000006687,-0.07353338038906983 +112462,562.3100000006688,-0.07352717342942972 +112463,562.3150000006689,-0.07352095233742757 +112464,562.320000000669,-0.07351471722858718 +112465,562.3250000006691,-0.07350846821776655 +112466,562.3300000006692,-0.07350220541916211 +112467,562.3350000006693,-0.07349592894631303 +112468,562.3400000006694,-0.0734896389121053 +112469,562.3450000006695,-0.07348333542877598 +112470,562.3500000006696,-0.07347701860791726 +112471,562.3550000006697,-0.07347068856048052 +112472,562.3600000006699,-0.07346434539678041 +112473,562.36500000067,-0.07345798922649897 +112474,562.3700000006701,-0.07345162015868942 +112475,562.3750000006702,-0.0734452383017803 +112476,562.3800000006703,-0.07343884376357929 +112477,562.3850000006704,-0.07343243665127713 +112478,562.3900000006705,-0.07342601707145151 +112479,562.3950000006706,-0.07341958513007091 +112480,562.4000000006707,-0.07341314093249829 +112481,562.4050000006708,-0.07340668458349509 +112482,562.410000000671,-0.07340021618722471 +112483,562.4150000006711,-0.07339373584725645 +112484,562.4200000006712,-0.07338724366656907 +112485,562.4250000006713,-0.07338073974755446 +112486,562.4300000006714,-0.07337422419202133 +112487,562.4350000006715,-0.07336769710119874 +112488,562.4400000006716,-0.07336115857573974 +112489,562.4450000006717,-0.07335460871572486 +112490,562.4500000006718,-0.07334804762066566 +112491,562.4550000006719,-0.0733414753895082 +112492,562.460000000672,-0.07333489212063658 +112493,562.4650000006721,-0.07332829791187626 +112494,562.4700000006723,-0.07332169286049753 +112495,562.4750000006724,-0.07331507706321892 +112496,562.4800000006725,-0.07330845061621058 +112497,562.4850000006726,-0.07330181361509752 +112498,562.4900000006727,-0.07329516615496297 +112499,562.4950000006728,-0.07328850833035172 +112500,562.5000000006729,-0.07328184023527329 +112501,562.505000000673,-0.07327516196320524 +112502,562.5100000006731,-0.0732684736070963 +112503,562.5150000006732,-0.07326177525936965 +112504,562.5200000006733,-0.07325506701192604 +112505,562.5250000006735,-0.07324834895614687 +112506,562.5300000006736,-0.07324162118289744 +112507,562.5350000006737,-0.0732348837825299 +112508,562.5400000006738,-0.07322813684488647 +112509,562.5450000006739,-0.07322138045930231 +112510,562.550000000674,-0.0732146147146087 +112511,562.5550000006741,-0.07320783969913597 +112512,562.5600000006742,-0.07320105550071647 +112513,562.5650000006743,-0.07319426220668757 +112514,562.5700000006744,-0.07318745990389458 +112515,562.5750000006745,-0.07318064867869363 +112516,562.5800000006747,-0.07317382861695462 +112517,562.5850000006748,-0.07316699980406408 +112518,562.5900000006749,-0.07316016232492796 +112519,562.595000000675,-0.07315331626397453 +112520,562.6000000006751,-0.07314646170515718 +112521,562.6050000006752,-0.07313959873195718 +112522,562.6100000006753,-0.07313272742738648 +112523,562.6150000006754,-0.07312584787399044 +112524,562.6200000006755,-0.07311896015385055 +112525,562.6250000006756,-0.07311206434858716 +112526,562.6300000006758,-0.0731051605393622 +112527,562.6350000006759,-0.07309824880688173 +112528,562.640000000676,-0.07309132923139876 +112529,562.6450000006761,-0.07308440189271577 +112530,562.6500000006762,-0.07307746687018735 +112531,562.6550000006763,-0.0730705242427228 +112532,562.6600000006764,-0.07306357408878869 +112533,562.6650000006765,-0.07305661648641146 +112534,562.6700000006766,-0.07304965151317991 +112535,562.6750000006767,-0.07304267924624777 +112536,562.6800000006768,-0.07303569976233618 +112537,562.685000000677,-0.07302871313773615 +112538,562.6900000006771,-0.07302171944831108 +112539,562.6950000006772,-0.07301471876949917 +112540,562.7000000006773,-0.07300771117631591 +112541,562.7050000006774,-0.07300069674335644 +112542,562.7100000006775,-0.07299367554479795 +112543,562.7150000006776,-0.07298664765440213 +112544,562.7200000006777,-0.07297961314551747 +112545,562.7250000006778,-0.07297257209108166 +112546,562.7300000006779,-0.07296552456362386 +112547,562.735000000678,-0.07295847063526709 +112548,562.7400000006782,-0.0729514103777305 +112549,562.7450000006783,-0.07294434386233165 +112550,562.7500000006784,-0.0729372711599888 +112551,562.7550000006785,-0.07293019234122315 +112552,562.7600000006786,-0.0729231074761611 +112553,562.7650000006787,-0.07291601663453644 +112554,562.7700000006788,-0.0729089198856926 +112555,562.7750000006789,-0.0729018172985848 +112556,562.780000000679,-0.0728947089417823 +112557,562.7850000006791,-0.07288759488347046 +112558,562.7900000006792,-0.07288047519145299 +112559,562.7950000006794,-0.07287334993315403 +112560,562.8000000006795,-0.0728662191756203 +112561,562.8050000006796,-0.07285908298552318 +112562,562.8100000006797,-0.07285194142916084 +112563,562.8150000006798,-0.07284479457246024 +112564,562.8200000006799,-0.07283764248097929 +112565,562.82500000068,-0.07283048521990886 +112566,562.8300000006801,-0.07282332285407479 +112567,562.8350000006802,-0.07281615544793998 +112568,562.8400000006803,-0.07280898306560633 +112569,562.8450000006804,-0.07280180577081677 +112570,562.8500000006806,-0.07279462362695725 +112571,562.8550000006807,-0.07278743669705869 +112572,562.8600000006808,-0.07278024504379894 +112573,562.8650000006809,-0.07277304872950477 +112574,562.870000000681,-0.07276584781615371 +112575,562.8750000006811,-0.07275864236537607 +112576,562.8800000006812,-0.07275143243845678 +112577,562.8850000006813,-0.07274421809633728 +112578,562.8900000006814,-0.07273699939961745 +112579,562.8950000006815,-0.07272977640855745 +112580,562.9000000006816,-0.07272254918307956 +112581,562.9050000006818,-0.0727153177827701 +112582,562.9100000006819,-0.07270808226688114 +112583,562.915000000682,-0.07270084269433241 +112584,562.9200000006821,-0.0726935991237131 +112585,562.9250000006822,-0.07268635161328363 +112586,562.9300000006823,-0.07267910022097748 +112587,562.9350000006824,-0.07267184500440288 +112588,562.9400000006825,-0.07266458602084468 +112589,562.9450000006826,-0.07265732332726604 +112590,562.9500000006827,-0.07265005698031016 +112591,562.9550000006828,-0.07264278703630205 +112592,562.960000000683,-0.0726355135512502 +112593,562.9650000006831,-0.07262823658084835 +112594,562.9700000006832,-0.07262095618047715 +112595,562.9750000006833,-0.07261367240520582 +112596,562.9800000006834,-0.07260638530979387 +112597,562.9850000006835,-0.07259909494869274 +112598,562.9900000006836,-0.07259180137604747 +112599,562.9950000006837,-0.07258450464569834 +112600,563.0000000006838,-0.07257720481118247 +112601,563.0050000006839,-0.07256990192573552 +112602,563.010000000684,-0.0725625960422932 +112603,563.0150000006842,-0.07255528721349297 +112604,563.0200000006843,-0.07254797549167558 +112605,563.0250000006844,-0.07254066092888663 +112606,563.0300000006845,-0.0725333435768782 +112607,563.0350000006846,-0.07252602348711039 +112608,563.0400000006847,-0.07251870071075289 +112609,563.0450000006848,-0.07251137529868648 +112610,563.0500000006849,-0.07250404730150456 +112611,563.055000000685,-0.07249671676951476 +112612,563.0600000006851,-0.0724893837527404 +112613,563.0650000006852,-0.07248204830092195 +112614,563.0700000006854,-0.0724747104635186 +112615,563.0750000006855,-0.0724673702897097 +112616,563.0800000006856,-0.07246002782839632 +112617,563.0850000006857,-0.07245268312820258 +112618,563.0900000006858,-0.07244533623747723 +112619,563.0950000006859,-0.07243798720429508 +112620,563.100000000686,-0.07243063607645836 +112621,563.1050000006861,-0.07242328290149827 +112622,563.1100000006862,-0.07241592772667635 +112623,563.1150000006863,-0.07240857059898587 +112624,563.1200000006864,-0.07240121156515328 +112625,563.1250000006866,-0.07239385067163961 +112626,563.1300000006867,-0.07238648796464185 +112627,563.1350000006868,-0.0723791234900943 +112628,563.1400000006869,-0.07237175729367001 +112629,563.145000000687,-0.0723643894207821 +112630,563.1500000006871,-0.07235701991658514 +112631,563.1550000006872,-0.07234964882597644 +112632,563.1600000006873,-0.07234227619359752 +112633,563.1650000006874,-0.07233490206383533 +112634,563.1700000006875,-0.07232752648082358 +112635,563.1750000006876,-0.07232014948844415 +112636,563.1800000006878,-0.07231277113032829 +112637,563.1850000006879,-0.07230539144985801 +112638,563.190000000688,-0.07229801049016732 +112639,563.1950000006881,-0.07229062829414354 +112640,563.2000000006882,-0.07228324490442856 +112641,563.2050000006883,-0.07227586036342017 +112642,563.2100000006884,-0.07226847471327323 +112643,563.2150000006885,-0.07226108799590103 +112644,563.2200000006886,-0.07225370025297644 +112645,563.2250000006887,-0.07224631152593322 +112646,563.2300000006888,-0.07223892185596728 +112647,563.235000000689,-0.0722315312840378 +112648,563.2400000006891,-0.07222413985086855 +112649,563.2450000006892,-0.07221674759694907 +112650,563.2500000006893,-0.0722093545625359 +112651,563.2550000006894,-0.07220196078765369 +112652,563.2600000006895,-0.07219456631209653 +112653,563.2650000006896,-0.07218717117542901 +112654,563.2700000006897,-0.07217977541698753 +112655,563.2750000006898,-0.07217237907588131 +112656,563.2800000006899,-0.07216498219099372 +112657,563.28500000069,-0.07215758480098333 +112658,563.2900000006902,-0.07215018694428509 +112659,563.2950000006903,-0.07214278865911146 +112660,563.3000000006904,-0.07213538998345363 +112661,563.3050000006905,-0.07212799095508257 +112662,563.3100000006906,-0.07212059161155016 +112663,563.3150000006907,-0.07211319199019033 +112664,563.3200000006908,-0.0721057921281202 +112665,563.3250000006909,-0.07209839206224115 +112666,563.330000000691,-0.07209099182923993 +112667,563.3350000006911,-0.07208359146558974 +112668,563.3400000006912,-0.07207619100755136 +112669,563.3450000006914,-0.07206879049117419 +112670,563.3500000006915,-0.07206138995229734 +112671,563.3550000006916,-0.07205398942655074 +112672,563.3600000006917,-0.07204658894935613 +112673,563.3650000006918,-0.07203918855592818 +112674,563.3700000006919,-0.07203178828127549 +112675,563.375000000692,-0.07202438816020168 +112676,563.3800000006921,-0.07201698822730643 +112677,563.3850000006922,-0.07200958851698648 +112678,563.3900000006923,-0.07200218906343672 +112679,563.3950000006924,-0.0719947899006511 +112680,563.4000000006926,-0.0719873910624238 +112681,563.4050000006927,-0.0719799925823501 +112682,563.4100000006928,-0.07197259449382751 +112683,563.4150000006929,-0.07196519683005664 +112684,563.420000000693,-0.07195779962404232 +112685,563.4250000006931,-0.07195040290859454 +112686,563.4300000006932,-0.07194300671632937 +112687,563.4350000006933,-0.07193561107967009 +112688,563.4400000006934,-0.07192821603084797 +112689,563.4450000006935,-0.0719208216019034 +112690,563.4500000006936,-0.07191342782468681 +112691,563.4550000006938,-0.07190603473085957 +112692,563.4600000006939,-0.07189864235189503 +112693,563.465000000694,-0.07189125071907936 +112694,563.4700000006941,-0.07188385986351259 +112695,563.4750000006942,-0.07187646981610953 +112696,563.4800000006943,-0.07186908060760064 +112697,563.4850000006944,-0.07186169226853302 +112698,563.4900000006945,-0.07185430482927133 +112699,563.4950000006946,-0.07184691831999865 +112700,563.5000000006947,-0.07183953277071747 +112701,563.5050000006948,-0.07183214821125052 +112702,563.510000000695,-0.07182476467124171 +112703,563.5150000006951,-0.07181738218015707 +112704,563.5200000006952,-0.07181000076728554 +112705,563.5250000006953,-0.07180262046173998 +112706,563.5300000006954,-0.07179524129245793 +112707,563.5350000006955,-0.07178786328820258 +112708,563.5400000006956,-0.07178048647756359 +112709,563.5450000006957,-0.071773110888958 +112710,563.5500000006958,-0.07176573655063107 +112711,563.5550000006959,-0.0717583634906571 +112712,563.560000000696,-0.07175099173694043 +112713,563.5650000006962,-0.07174362131721605 +112714,563.5700000006963,-0.0717362522590507 +112715,563.5750000006964,-0.07172888458984353 +112716,563.5800000006965,-0.07172151833682704 +112717,563.5850000006966,-0.07171415352706784 +112718,563.5900000006967,-0.07170679018746753 +112719,563.5950000006968,-0.0716994283447635 +112720,563.6000000006969,-0.07169206802552978 +112721,563.605000000697,-0.07168470925617779 +112722,563.6100000006971,-0.07167735206295721 +112723,563.6150000006973,-0.07166999647195678 +112724,563.6200000006974,-0.07166264250910508 +112725,563.6250000006975,-0.0716552902001713 +112726,563.6300000006976,-0.07164793957076615 +112727,563.6350000006977,-0.07164059064634253 +112728,563.6400000006978,-0.0716332434521963 +112729,563.6450000006979,-0.07162589801346722 +112730,563.650000000698,-0.07161855435513957 +112731,563.6550000006981,-0.07161121250204296 +112732,563.6600000006982,-0.07160387247885318 +112733,563.6650000006983,-0.07159653431009283 +112734,563.6700000006985,-0.07158919802013222 +112735,563.6750000006986,-0.07158186363319001 +112736,563.6800000006987,-0.07157453117333407 +112737,563.6850000006988,-0.0715672006644821 +112738,563.6900000006989,-0.07155987213040253 +112739,563.695000000699,-0.07155254559471512 +112740,563.7000000006991,-0.0715452210808918 +112741,563.7050000006992,-0.07153789861225733 +112742,563.7100000006993,-0.07153057821199009 +112743,563.7150000006994,-0.07152325990312279 +112744,563.7200000006995,-0.07151594370854317 +112745,563.7250000006997,-0.0715086296509947 +112746,563.7300000006998,-0.07150131775307739 +112747,563.7350000006999,-0.0714940080372484 +112748,563.7400000007,-0.07148670052582279 +112749,563.7450000007001,-0.07147939524097424 +112750,563.7500000007002,-0.07147209220473573 +112751,563.7550000007003,-0.07146479143900024 +112752,563.7600000007004,-0.07145749296552142 +112753,563.7650000007005,-0.07145019680591436 +112754,563.7700000007006,-0.07144290298165616 +112755,563.7750000007007,-0.07143561151408671 +112756,563.7800000007009,-0.07142832242440936 +112757,563.785000000701,-0.07142103573369152 +112758,563.7900000007011,-0.0714137514628654 +112759,563.7950000007012,-0.07140646963272866 +112760,563.8000000007013,-0.07139919026394512 +112761,563.8050000007014,-0.07139191337704534 +112762,563.8100000007015,-0.07138463899242735 +112763,563.8150000007016,-0.07137736713035724 +112764,563.8200000007017,-0.07137009781096987 +112765,563.8250000007018,-0.07136283105426952 +112766,563.830000000702,-0.07135556688013049 +112767,563.835000000702,-0.07134830530829782 +112768,563.8400000007022,-0.07134104635838778 +112769,563.8450000007023,-0.07133379004988873 +112770,563.8500000007024,-0.07132653640216151 +112771,563.8550000007025,-0.07131928543444027 +112772,563.8600000007026,-0.071312037165833 +112773,563.8650000007027,-0.07130479161532213 +112774,563.8700000007028,-0.07129754880176524 +112775,563.8750000007029,-0.07129030874389562 +112776,563.880000000703,-0.0712830714603229 +112777,563.8850000007031,-0.07127583696953359 +112778,563.8900000007033,-0.07126860528989183 +112779,563.8950000007034,-0.07126137643963988 +112780,563.9000000007035,-0.07125415043689878 +112781,563.9050000007036,-0.07124692729966893 +112782,563.9100000007037,-0.07123970704583066 +112783,563.9150000007038,-0.07123248969314486 +112784,563.9200000007039,-0.0712252752592536 +112785,563.925000000704,-0.0712180637616806 +112786,563.9300000007041,-0.071210855217832 +112787,563.9350000007042,-0.07120364964499674 +112788,563.9400000007043,-0.07119644706034726 +112789,563.9450000007045,-0.0711892474809401 +112790,563.9500000007046,-0.07118205092371634 +112791,563.9550000007047,-0.0711748574055023 +112792,563.9600000007048,-0.07116766694301009 +112793,563.9650000007049,-0.07116047955283808 +112794,563.970000000705,-0.07115329525147157 +112795,563.9750000007051,-0.07114611405528332 +112796,563.9800000007052,-0.07113893598053404 +112797,563.9850000007053,-0.07113176104337306 +112798,563.9900000007054,-0.07112458925983878 +112799,563.9950000007055,-0.07111742064585924 +112800,564.0000000007057,-0.07111025521725274 +112801,564.0050000007058,-0.07110309298972829 +112802,564.0100000007059,-0.0710959339788862 +112803,564.015000000706,-0.07108877820021857 +112804,564.0200000007061,-0.07108162566910992 +112805,564.0250000007062,-0.0710744764008376 +112806,564.0300000007063,-0.07106733041057241 +112807,564.0350000007064,-0.0710601877133791 +112808,564.0400000007065,-0.07105304832421692 +112809,564.0450000007066,-0.07104591225794006 +112810,564.0500000007067,-0.07103877952929825 +112811,564.0550000007069,-0.07103165015293728 +112812,564.060000000707,-0.07102452414339945 +112813,564.0650000007071,-0.07101740151512412 +112814,564.0700000007072,-0.07101028228244825 +112815,564.0750000007073,-0.07100316645960687 +112816,564.0800000007074,-0.07099605406073357 +112817,564.0850000007075,-0.07098894509986103 +112818,564.0900000007076,-0.07098183959092151 +112819,564.0950000007077,-0.07097473754774737 +112820,564.1000000007078,-0.07096763898407153 +112821,564.105000000708,-0.07096054391352799 +112822,564.110000000708,-0.0709534523496523 +112823,564.1150000007082,-0.07094636430588205 +112824,564.1200000007083,-0.07093927979555739 +112825,564.1250000007084,-0.07093219883192145 +112826,564.1300000007085,-0.0709251214281209 +112827,564.1350000007086,-0.07091804759720631 +112828,564.1400000007087,-0.0709109773521328 +112829,564.1450000007088,-0.07090391070576033 +112830,564.1500000007089,-0.0708968476708543 +112831,564.155000000709,-0.07088978826008598 +112832,564.1600000007091,-0.07088273248603297 +112833,564.1650000007093,-0.07087568036117965 +112834,564.1700000007094,-0.07086863189791767 +112835,564.1750000007095,-0.07086158710854641 +112836,564.1800000007096,-0.07085454600527345 +112837,564.1850000007097,-0.07084750860021495 +112838,564.1900000007098,-0.0708404749053962 +112839,564.1950000007099,-0.07083344493275205 +112840,564.20000000071,-0.07082641869412729 +112841,564.2050000007101,-0.07081939620127718 +112842,564.2100000007102,-0.0708123774658679 +112843,564.2150000007103,-0.07080536249947689 +112844,564.2200000007105,-0.0707983513135934 +112845,564.2250000007106,-0.07079134391961889 +112846,564.2300000007107,-0.07078434032886743 +112847,564.2350000007108,-0.07077734055256622 +112848,564.2400000007109,-0.07077034460185593 +112849,564.245000000711,-0.0707633524877912 +112850,564.2500000007111,-0.07075636422134103 +112851,564.2550000007112,-0.07074937981338923 +112852,564.2600000007113,-0.07074239927473483 +112853,564.2650000007114,-0.07073542261609249 +112854,564.2700000007115,-0.07072844984809297 +112855,564.2750000007117,-0.07072148098128347 +112856,564.2800000007118,-0.07071451602612817 +112857,564.2850000007119,-0.07070755499300847 +112858,564.290000000712,-0.07070059789222356 +112859,564.2950000007121,-0.07069364473399076 +112860,564.3000000007122,-0.07068669552844592 +112861,564.3050000007123,-0.0706797502856439 +112862,564.3100000007124,-0.07067280901555884 +112863,564.3150000007125,-0.07066587172808471 +112864,564.3200000007126,-0.07065893843303563 +112865,564.3250000007127,-0.07065200914014626 +112866,564.3300000007129,-0.07064508385907226 +112867,564.335000000713,-0.07063816259939061 +112868,564.3400000007131,-0.07063124537060009 +112869,564.3450000007132,-0.07062433218212155 +112870,564.3500000007133,-0.07061742304329845 +112871,564.3550000007134,-0.07061051796339711 +112872,564.3600000007135,-0.0706036169516072 +112873,564.3650000007136,-0.07059672001704208 +112874,564.3700000007137,-0.07058982716873914 +112875,564.3750000007138,-0.07058293841566027 +112876,564.380000000714,-0.07057605376669218 +112877,564.3850000007141,-0.0705691732306468 +112878,564.3900000007142,-0.07056229681626165 +112879,564.3950000007143,-0.07055542453220018 +112880,564.4000000007144,-0.07054855638705221 +112881,564.4050000007145,-0.07054169238933423 +112882,564.4100000007146,-0.07053483254748984 +112883,564.4150000007147,-0.07052797686989005 +112884,564.4200000007148,-0.0705211253648337 +112885,564.4250000007149,-0.07051427804054777 +112886,564.430000000715,-0.07050743490518778 +112887,564.4350000007151,-0.07050059596683814 +112888,564.4400000007153,-0.0704937612335125 +112889,564.4450000007154,-0.07048693071315414 +112890,564.4500000007155,-0.07048010441363627 +112891,564.4550000007156,-0.07047328234276243 +112892,564.4600000007157,-0.07046646450826682 +112893,564.4650000007158,-0.07045965091781464 +112894,564.4700000007159,-0.07045284157900249 +112895,564.475000000716,-0.07044603649935861 +112896,564.4800000007161,-0.07043923568634339 +112897,564.4850000007162,-0.07043243914734952 +112898,564.4900000007163,-0.0704256468897025 +112899,564.4950000007165,-0.07041885892066091 +112900,564.5000000007166,-0.0704120752474167 +112901,564.5050000007167,-0.0704052958770956 +112902,564.5100000007168,-0.07039852081675745 +112903,564.5150000007169,-0.07039175007339649 +112904,564.520000000717,-0.07038498365394173 +112905,564.5250000007171,-0.07037822156525728 +112906,564.5300000007172,-0.07037146381414267 +112907,564.5350000007173,-0.07036471040733314 +112908,564.5400000007174,-0.07035796135150003 +112909,564.5450000007176,-0.07035121665325111 +112910,564.5500000007177,-0.07034447631913082 +112911,564.5550000007178,-0.07033774035562067 +112912,564.5600000007179,-0.07033100876913952 +112913,564.565000000718,-0.07032428156604392 +112914,564.5700000007181,-0.07031755875262843 +112915,564.5750000007182,-0.0703108403351259 +112916,564.5800000007183,-0.07030412631970785 +112917,564.5850000007184,-0.0702974167124847 +112918,564.5900000007185,-0.07029071151950614 +112919,564.5950000007186,-0.07028401074676144 +112920,564.6000000007188,-0.07027731440017974 +112921,564.6050000007189,-0.07027062248563037 +112922,564.610000000719,-0.0702639350089231 +112923,564.6150000007191,-0.07025725197580855 +112924,564.6200000007192,-0.07025057339197838 +112925,564.6250000007193,-0.0702438992630657 +112926,564.6300000007194,-0.07023722959464528 +112927,564.6350000007195,-0.0702305643922339 +112928,564.6400000007196,-0.07022390366129061 +112929,564.6450000007197,-0.07021724740721709 +112930,564.6500000007198,-0.07021059563535786 +112931,564.65500000072,-0.07020394835100065 +112932,564.6600000007201,-0.07019730555937663 +112933,564.6650000007202,-0.07019066726566076 +112934,564.6700000007203,-0.070184033474972 +112935,564.6750000007204,-0.07017740419237371 +112936,564.6800000007205,-0.07017077942287384 +112937,564.6850000007206,-0.07016415917142522 +112938,564.6900000007207,-0.07015754344292593 +112939,564.6950000007208,-0.07015093224221947 +112940,564.7000000007209,-0.07014432557409514 +112941,564.705000000721,-0.07013772344328824 +112942,564.7100000007212,-0.07013112585448042 +112943,564.7150000007213,-0.0701245328122999 +112944,564.7200000007214,-0.07011794432132175 +112945,564.7250000007215,-0.07011136038606823 +112946,564.7300000007216,-0.07010478101100899 +112947,564.7350000007217,-0.07009820620056138 +112948,564.7400000007218,-0.0700916359590907 +112949,564.7450000007219,-0.07008507029091048 +112950,564.750000000722,-0.07007850920028276 +112951,564.7550000007221,-0.07007195269141832 +112952,564.7600000007222,-0.07006540076847702 +112953,564.7650000007224,-0.07005885343556799 +112954,564.7700000007225,-0.0700523106967499 +112955,564.7750000007226,-0.0700457725560313 +112956,564.7800000007227,-0.07003923901737076 +112957,564.7850000007228,-0.07003271008467725 +112958,564.7900000007229,-0.07002618576181031 +112959,564.795000000723,-0.07001966605258036 +112960,564.8000000007231,-0.07001315096074893 +112961,564.8050000007232,-0.07000664049002893 +112962,564.8100000007233,-0.07000013464408489 +112963,564.8150000007234,-0.06999363342653322 +112964,564.8200000007236,-0.06998713684094249 +112965,564.8250000007237,-0.06998064489083362 +112966,564.8300000007238,-0.06997415757968017 +112967,564.8350000007239,-0.0699676749109086 +112968,564.840000000724,-0.06996119688789848 +112969,564.8450000007241,-0.06995472351398277 +112970,564.8500000007242,-0.06994825479244804 +112971,564.8550000007243,-0.06994179072653472 +112972,564.8600000007244,-0.06993533131943735 +112973,564.8650000007245,-0.06992887657430483 +112974,564.8700000007246,-0.06992242649424062 +112975,564.8750000007248,-0.06991598108230304 +112976,564.8800000007249,-0.06990954034150546 +112977,564.885000000725,-0.06990310427481654 +112978,564.8900000007251,-0.06989667288516054 +112979,564.8950000007252,-0.0698902461754174 +112980,564.9000000007253,-0.06988382414842316 +112981,564.9050000007254,-0.06987740680697004 +112982,564.9100000007255,-0.06987099415380675 +112983,564.9150000007256,-0.06986458619163871 +112984,564.9200000007257,-0.06985818292312829 +112985,564.9250000007258,-0.06985178435089498 +112986,564.930000000726,-0.06984539047751569 +112987,564.9350000007261,-0.06983900130552494 +112988,564.9400000007262,-0.0698326168374151 +112989,564.9450000007263,-0.06982623707563657 +112990,564.9500000007264,-0.0698198620225981 +112991,564.9550000007265,-0.06981349168066692 +112992,564.9600000007266,-0.06980712605216897 +112993,564.9650000007267,-0.06980076513938917 +112994,564.9700000007268,-0.06979440894457163 +112995,564.9750000007269,-0.06978805746991981 +112996,564.980000000727,-0.06978171071759681 +112997,564.9850000007272,-0.06977536868972554 +112998,564.9900000007273,-0.06976903138838896 +112999,564.9950000007274,-0.06976269881563026 +113000,565.0000000007275,-0.06975637097345315 +113001,565.0050000007276,-0.06975004786382197 +113002,565.0100000007277,-0.06974372948866196 +113003,565.0150000007278,-0.06973741584985949 +113004,565.0200000007279,-0.06973110694926223 +113005,565.025000000728,-0.06972480278867935 +113006,565.0300000007281,-0.06971850336988175 +113007,565.0350000007282,-0.0697122086946023 +113008,565.0400000007284,-0.06970591876453598 +113009,565.0450000007285,-0.06969963358134013 +113010,565.0500000007286,-0.0696933531466346 +113011,565.0550000007287,-0.06968707746200206 +113012,565.0600000007288,-0.06968080652898807 +113013,565.0650000007289,-0.06967454034910138 +113014,565.070000000729,-0.06966827892381407 +113015,565.0750000007291,-0.06966202225456179 +113016,565.0800000007292,-0.06965577034274395 +113017,565.0850000007293,-0.06964952318972388 +113018,565.0900000007294,-0.06964328079682908 +113019,565.0950000007296,-0.06963704316535137 +113020,565.1000000007297,-0.06963081029654714 +113021,565.1050000007298,-0.06962458219163747 +113022,565.1100000007299,-0.06961835885180838 +113023,565.11500000073,-0.069612140278211 +113024,565.1200000007301,-0.06960592647196179 +113025,565.1250000007302,-0.06959971743414263 +113026,565.1300000007303,-0.06959351316580119 +113027,565.1350000007304,-0.06958731366795093 +113028,565.1400000007305,-0.06958111894157139 +113029,565.1450000007306,-0.06957492898760838 +113030,565.1500000007308,-0.06956874380697411 +113031,565.1550000007309,-0.06956256340054745 +113032,565.160000000731,-0.06955638776917403 +113033,565.1650000007311,-0.06955021691366647 +113034,565.1700000007312,-0.06954405083480461 +113035,565.1750000007313,-0.06953788953333556 +113036,565.1800000007314,-0.069531733009974 +113037,565.1850000007315,-0.06952558126540233 +113038,565.1900000007316,-0.0695194343002708 +113039,565.1950000007317,-0.06951329211519779 +113040,565.2000000007318,-0.06950715471076985 +113041,565.205000000732,-0.069501022087542 +113042,565.2100000007321,-0.06949489424603784 +113043,565.2150000007322,-0.06948877118674976 +113044,565.2200000007323,-0.06948265291013907 +113045,565.2250000007324,-0.0694765394166362 +113046,565.2300000007325,-0.06947043070664091 +113047,565.2350000007326,-0.06946432678052238 +113048,565.2400000007327,-0.06945822763861943 +113049,565.2450000007328,-0.06945213328124072 +113050,565.2500000007329,-0.06944604370866485 +113051,565.255000000733,-0.06943995892114058 +113052,565.2600000007332,-0.06943387891888694 +113053,565.2650000007333,-0.06942780370209353 +113054,565.2700000007334,-0.0694217332709205 +113055,565.2750000007335,-0.06941566762549886 +113056,565.2800000007336,-0.06940960676593057 +113057,565.2850000007337,-0.06940355069228875 +113058,565.2900000007338,-0.0693974994046178 +113059,565.2950000007339,-0.06939145290293362 +113060,565.300000000734,-0.0693854111872237 +113061,565.3050000007341,-0.06937937425744732 +113062,565.3100000007342,-0.06937334211353575 +113063,565.3150000007344,-0.06936731475539232 +113064,565.3200000007345,-0.06936129218289262 +113065,565.3250000007346,-0.06935527439588474 +113066,565.3300000007347,-0.06934926139418925 +113067,565.3350000007348,-0.06934325317759951 +113068,565.3400000007349,-0.06933724974588179 +113069,565.345000000735,-0.06933125109877539 +113070,565.3500000007351,-0.0693252572359928 +113071,565.3550000007352,-0.06931926815721988 +113072,565.3600000007353,-0.069313283862116 +113073,565.3650000007354,-0.06930730435031422 +113074,565.3700000007356,-0.06930132962142138 +113075,565.3750000007357,-0.06929535967501826 +113076,565.3800000007358,-0.06928939451065982 +113077,565.3850000007359,-0.06928343412787524 +113078,565.390000000736,-0.06927747852616814 +113079,565.3950000007361,-0.0692715277050167 +113080,565.4000000007362,-0.06926558166387378 +113081,565.4050000007363,-0.06925964040216713 +113082,565.4100000007364,-0.06925370391929947 +113083,565.4150000007365,-0.06924777221464871 +113084,565.4200000007366,-0.06924184528756804 +113085,565.4250000007368,-0.06923592313738605 +113086,565.4300000007369,-0.06923000576340695 +113087,565.435000000737,-0.06922409316491066 +113088,565.4400000007371,-0.06921818534115294 +113089,565.4450000007372,-0.06921228229136563 +113090,565.4500000007373,-0.06920638401475662 +113091,565.4550000007374,-0.06920049051051018 +113092,565.4600000007375,-0.06919460177778693 +113093,565.4650000007376,-0.06918871781572411 +113094,565.4700000007377,-0.06918283862343562 +113095,565.4750000007379,-0.06917696420001224 +113096,565.480000000738,-0.06917109454452171 +113097,565.4850000007381,-0.0691652296560089 +113098,565.4900000007382,-0.0691593695334959 +113099,565.4950000007383,-0.0691535141759822 +113100,565.5000000007384,-0.06914766358244481 +113101,565.5050000007385,-0.0691418177518384 +113102,565.5100000007386,-0.06913597668309544 +113103,565.5150000007387,-0.06913014037512627 +113104,565.5200000007388,-0.06912430882681934 +113105,565.5250000007389,-0.06911848203704125 +113106,565.530000000739,-0.0691126600046369 +113107,565.5350000007392,-0.06910684272842964 +113108,565.5400000007393,-0.06910103020722143 +113109,565.5450000007394,-0.06909522243979288 +113110,565.5500000007395,-0.06908941942490346 +113111,565.5550000007396,-0.06908362116129159 +113112,565.5600000007397,-0.06907782764767477 +113113,565.5650000007398,-0.06907203888274972 +113114,565.5700000007399,-0.0690662548651925 +113115,565.57500000074,-0.06906047559365859 +113116,565.5800000007401,-0.06905470106678313 +113117,565.5850000007403,-0.06904893128318089 +113118,565.5900000007404,-0.06904316624144653 +113119,565.5950000007405,-0.06903740594015466 +113120,565.6000000007406,-0.06903165037785994 +113121,565.6050000007407,-0.06902589955309726 +113122,565.6100000007408,-0.06902015346438184 +113123,565.6150000007409,-0.0690144121102093 +113124,565.620000000741,-0.06900867548905586 +113125,565.6250000007411,-0.06900294359937842 +113126,565.6300000007412,-0.06899721643961466 +113127,565.6350000007413,-0.06899149400818323 +113128,565.6400000007415,-0.06898577630348375 +113129,565.6450000007416,-0.06898006332389703 +113130,565.6500000007417,-0.06897435506778517 +113131,565.6550000007418,-0.06896865153349165 +113132,565.6600000007419,-0.0689629527193414 +113133,565.665000000742,-0.06895725862364105 +113134,565.6700000007421,-0.06895156924467893 +113135,565.6750000007422,-0.0689458845807252 +113136,565.6800000007423,-0.06894020463003202 +113137,565.6850000007424,-0.06893452939083358 +113138,565.6900000007425,-0.0689288588613463 +113139,565.6950000007427,-0.06892319303976888 +113140,565.7000000007428,-0.06891753192428242 +113141,565.7050000007429,-0.06891187551305054 +113142,565.710000000743,-0.06890622380421954 +113143,565.7150000007431,-0.06890057679591839 +113144,565.7200000007432,-0.06889493448625898 +113145,565.7250000007433,-0.0688892968733361 +113146,565.7300000007434,-0.06888366395522764 +113147,565.7350000007435,-0.06887803572999468 +113148,565.7400000007436,-0.06887241219568155 +113149,565.7450000007437,-0.068866793350316 +113150,565.7500000007439,-0.06886117919190923 +113151,565.755000000744,-0.0688555697184561 +113152,565.7600000007441,-0.06884996492793516 +113153,565.7650000007442,-0.06884436481830875 +113154,565.7700000007443,-0.06883876938752315 +113155,565.7750000007444,-0.06883317863350864 +113156,565.7800000007445,-0.06882759255417965 +113157,565.7850000007446,-0.0688220111474348 +113158,565.7900000007447,-0.06881643441115709 +113159,565.7950000007448,-0.06881086234321392 +113160,565.800000000745,-0.0688052949414572 +113161,565.805000000745,-0.06879973220372353 +113162,565.8100000007452,-0.06879417412783419 +113163,565.8150000007453,-0.06878862071159532 +113164,565.8200000007454,-0.068783071952798 +113165,565.8250000007455,-0.06877752784921833 +113166,565.8300000007456,-0.06877198839861753 +113167,565.8350000007457,-0.06876645359874207 +113168,565.8400000007458,-0.06876092344732375 +113169,565.8450000007459,-0.06875539794207977 +113170,565.850000000746,-0.06874987708071285 +113171,565.8550000007461,-0.06874436086091136 +113172,565.8600000007463,-0.06873884928034935 +113173,565.8650000007464,-0.06873334233668668 +113174,565.8700000007465,-0.06872784002756913 +113175,565.8750000007466,-0.06872234235062848 +113176,565.8800000007467,-0.06871684930348258 +113177,565.8850000007468,-0.06871136088373547 +113178,565.8900000007469,-0.06870587708897748 +113179,565.895000000747,-0.06870039791678528 +113180,565.9000000007471,-0.06869492336472205 +113181,565.9050000007472,-0.06868945343033749 +113182,565.9100000007473,-0.06868398811116794 +113183,565.9150000007475,-0.0686785274047365 +113184,565.9200000007476,-0.06867307130855309 +113185,565.9250000007477,-0.06866761982011456 +113186,565.9300000007478,-0.06866217293690473 +113187,565.9350000007479,-0.06865673065639454 +113188,565.940000000748,-0.0686512929760421 +113189,565.9450000007481,-0.06864585989329282 +113190,565.9500000007482,-0.06864043140557946 +113191,565.9550000007483,-0.06863500751032221 +113192,565.9600000007484,-0.06862958820492882 +113193,565.9650000007485,-0.06862417348679462 +113194,565.9700000007487,-0.06861876335330269 +113195,565.9750000007488,-0.06861335780182393 +113196,565.9800000007489,-0.06860795682971703 +113197,565.985000000749,-0.06860256043432872 +113198,565.9900000007491,-0.06859716861299375 +113199,565.9950000007492,-0.06859178136303501 +113200,566.0000000007493,-0.0685863986817636 +113201,566.0050000007494,-0.06858102056647893 +113202,566.0100000007495,-0.06857564701446879 +113203,566.0150000007496,-0.06857027802300943 +113204,566.0200000007497,-0.06856491358936564 +113205,566.0250000007499,-0.06855955371079088 +113206,566.03000000075,-0.06855419838452728 +113207,566.0350000007501,-0.06854884760780579 +113208,566.0400000007502,-0.06854350137784619 +113209,566.0450000007503,-0.06853815969185727 +113210,566.0500000007504,-0.06853282254703678 +113211,566.0550000007505,-0.06852748994057169 +113212,566.0600000007506,-0.06852216186963805 +113213,566.0650000007507,-0.06851683833140128 +113214,566.0700000007508,-0.06851151932301605 +113215,566.075000000751,-0.06850620484162653 +113216,566.080000000751,-0.06850089488436636 +113217,566.0850000007512,-0.06849558944835878 +113218,566.0900000007513,-0.06849028853071666 +113219,566.0950000007514,-0.06848499212854264 +113220,566.1000000007515,-0.06847970023892916 +113221,566.1050000007516,-0.06847441285895853 +113222,566.1100000007517,-0.06846912998570304 +113223,566.1150000007518,-0.06846385161622501 +113224,566.1200000007519,-0.06845857774757684 +113225,566.125000000752,-0.06845330837680119 +113226,566.1300000007521,-0.06844804350093091 +113227,566.1350000007523,-0.06844278311698922 +113228,566.1400000007524,-0.06843752722198974 +113229,566.1450000007525,-0.06843227581293655 +113230,566.1500000007526,-0.06842702888682432 +113231,566.1550000007527,-0.0684217864406383 +113232,566.1600000007528,-0.06841654847135446 +113233,566.1650000007529,-0.06841131497593954 +113234,566.170000000753,-0.0684060859513511 +113235,566.1750000007531,-0.06840086139453763 +113236,566.1800000007532,-0.0683956413024386 +113237,566.1850000007533,-0.06839042567198447 +113238,566.1900000007535,-0.06838521450009692 +113239,566.1950000007536,-0.06838000778368876 +113240,566.2000000007537,-0.06837480551966404 +113241,566.2050000007538,-0.06836960770491816 +113242,566.2100000007539,-0.06836441433633794 +113243,566.215000000754,-0.06835922541080162 +113244,566.2200000007541,-0.068354040925179 +113245,566.2250000007542,-0.06834886087633144 +113246,566.2300000007543,-0.068343685261112 +113247,566.2350000007544,-0.06833851407636544 +113248,566.2400000007545,-0.06833334731892837 +113249,566.2450000007547,-0.06832818498562923 +113250,566.2500000007548,-0.06832302707328838 +113251,566.2550000007549,-0.0683178735787182 +113252,566.260000000755,-0.06831272449872307 +113253,566.2650000007551,-0.06830757983009958 +113254,566.2700000007552,-0.06830243956963648 +113255,566.2750000007553,-0.06829730371411473 +113256,566.2800000007554,-0.06829217226030766 +113257,566.2850000007555,-0.06828704520498095 +113258,566.2900000007556,-0.06828192254489275 +113259,566.2950000007557,-0.06827680427679368 +113260,566.3000000007559,-0.06827169039742698 +113261,566.305000000756,-0.06826658090352847 +113262,566.3100000007561,-0.06826147579182669 +113263,566.3150000007562,-0.06825637505904293 +113264,566.3200000007563,-0.0682512787018913 +113265,566.3250000007564,-0.06824618671707877 +113266,566.3300000007565,-0.0682410991013053 +113267,566.3350000007566,-0.06823601585126378 +113268,566.3400000007567,-0.06823093696364019 +113269,566.3450000007568,-0.06822586243511365 +113270,566.350000000757,-0.06822079226235644 +113271,566.3550000007571,-0.06821572644203407 +113272,566.3600000007572,-0.06821066497080534 +113273,566.3650000007573,-0.06820560784532244 +113274,566.3700000007574,-0.06820055506223092 +113275,566.3750000007575,-0.06819550661816987 +113276,566.3800000007576,-0.06819046250977183 +113277,566.3850000007577,-0.06818542273366301 +113278,566.3900000007578,-0.06818038728646324 +113279,566.3950000007579,-0.06817535616478597 +113280,566.400000000758,-0.06817032936523852 +113281,566.4050000007582,-0.06816530688442196 +113282,566.4100000007583,-0.06816028871893128 +113283,566.4150000007584,-0.06815527486535532 +113284,566.4200000007585,-0.06815026532027696 +113285,566.4250000007586,-0.06814526008027312 +113286,566.4300000007587,-0.06814025914191478 +113287,566.4350000007588,-0.06813526250176709 +113288,566.4400000007589,-0.0681302701563894 +113289,566.445000000759,-0.06812528210233527 +113290,566.4500000007591,-0.06812029833615267 +113291,566.4550000007592,-0.06811531885438384 +113292,566.4600000007594,-0.06811034365356544 +113293,566.4650000007595,-0.06810537273022867 +113294,566.4700000007596,-0.06810040608089918 +113295,566.4750000007597,-0.06809544370209723 +113296,566.4800000007598,-0.0680904855903377 +113297,566.4850000007599,-0.06808553174213017 +113298,566.49000000076,-0.06808058215397891 +113299,566.4950000007601,-0.068075636822383 +113300,566.5000000007602,-0.06807069574383634 +113301,566.5050000007603,-0.06806575891482773 +113302,566.5100000007604,-0.06806082633184089 +113303,566.5150000007606,-0.06805589799135453 +113304,566.5200000007607,-0.06805097388984241 +113305,566.5250000007608,-0.06804605402377335 +113306,566.5300000007609,-0.06804113838961133 +113307,566.535000000761,-0.0680362269838155 +113308,566.5400000007611,-0.06803131980284027 +113309,566.5450000007612,-0.06802641684313529 +113310,566.5500000007613,-0.06802151810114558 +113311,566.5550000007614,-0.06801662357331151 +113312,566.5600000007615,-0.06801173325606891 +113313,566.5650000007616,-0.06800684714584906 +113314,566.5700000007618,-0.0680019652390788 +113315,566.5750000007619,-0.0679970875321805 +113316,566.580000000762,-0.06799221402157217 +113317,566.5850000007621,-0.06798734470366749 +113318,566.5900000007622,-0.06798247957487585 +113319,566.5950000007623,-0.0679776186316024 +113320,566.6000000007624,-0.06797276187024807 +113321,566.6050000007625,-0.06796790928720971 +113322,566.6100000007626,-0.06796306087888 +113323,566.6150000007627,-0.06795821664164758 +113324,566.6200000007628,-0.06795337657189711 +113325,566.625000000763,-0.06794854066600924 +113326,566.6300000007631,-0.06794370892036074 +113327,566.6350000007632,-0.06793888133132447 +113328,566.6400000007633,-0.06793405789526946 +113329,566.6450000007634,-0.067929238608561 +113330,566.6500000007635,-0.06792442346756056 +113331,566.6550000007636,-0.06791961246862599 +113332,566.6600000007637,-0.0679148056081114 +113333,566.6650000007638,-0.06791000288236738 +113334,566.6700000007639,-0.06790520428774087 +113335,566.675000000764,-0.06790040982057534 +113336,566.6800000007642,-0.06789561947721072 +113337,566.6850000007643,-0.06789083325398354 +113338,566.6900000007644,-0.06788605114722694 +113339,566.6950000007645,-0.06788127315327065 +113340,566.7000000007646,-0.06787649926844114 +113341,566.7050000007647,-0.06787172948906156 +113342,566.7100000007648,-0.06786696381145187 +113343,566.7150000007649,-0.06786220223192879 +113344,566.720000000765,-0.06785744474680593 +113345,566.7250000007651,-0.06785269135239376 +113346,566.7300000007652,-0.0678479420449997 +113347,566.7350000007654,-0.06784319682092817 +113348,566.7400000007655,-0.06783845567648052 +113349,566.7450000007656,-0.06783371860795522 +113350,566.7500000007657,-0.0678289856116478 +113351,566.7550000007658,-0.06782425668385092 +113352,566.7600000007659,-0.06781953182085443 +113353,566.765000000766,-0.06781481101894535 +113354,566.7700000007661,-0.06781009427440798 +113355,566.7750000007662,-0.06780538158352392 +113356,566.7800000007663,-0.06780067294257205 +113357,566.7850000007664,-0.06779596834782863 +113358,566.7900000007666,-0.0677912677955673 +113359,566.7950000007667,-0.06778657128205919 +113360,566.8000000007668,-0.06778187880357285 +113361,566.8050000007669,-0.06777719035637439 +113362,566.810000000767,-0.06777250593672744 +113363,566.8150000007671,-0.06776782554089322 +113364,566.8200000007672,-0.0677631491651306 +113365,566.8250000007673,-0.06775847680569606 +113366,566.8300000007674,-0.06775380845884382 +113367,566.8350000007675,-0.06774914412082582 +113368,566.8400000007676,-0.06774448378789179 +113369,566.8450000007678,-0.0677398274562892 +113370,566.8500000007679,-0.06773517512226346 +113371,566.855000000768,-0.06773052678205778 +113372,566.8600000007681,-0.06772588243191331 +113373,566.8650000007682,-0.06772124206806913 +113374,566.8700000007683,-0.06771660568676234 +113375,566.8750000007684,-0.06771197328422802 +113376,566.8800000007685,-0.06770734485669933 +113377,566.8850000007686,-0.06770272040040748 +113378,566.8900000007687,-0.06769809991158182 +113379,566.8950000007688,-0.06769348338644987 +113380,566.900000000769,-0.06768887082123731 +113381,566.9050000007691,-0.06768426221216808 +113382,566.9100000007692,-0.06767965755546433 +113383,566.9150000007693,-0.06767505684734652 +113384,566.9200000007694,-0.06767046008403345 +113385,566.9250000007695,-0.06766586726174224 +113386,566.9300000007696,-0.06766127837668841 +113387,566.9350000007697,-0.06765669342508589 +113388,566.9400000007698,-0.0676521124031471 +113389,566.9450000007699,-0.06764753530708292 +113390,566.95000000077,-0.06764296213310274 +113391,566.9550000007702,-0.06763839287741452 +113392,566.9600000007703,-0.06763382753622475 +113393,566.9650000007704,-0.06762926610573862 +113394,566.9700000007705,-0.06762470858215988 +113395,566.9750000007706,-0.067620154961691 +113396,566.9800000007707,-0.06761560524053313 +113397,566.9850000007708,-0.06761105941488618 +113398,566.9900000007709,-0.06760651748094883 +113399,566.995000000771,-0.06760197943491852 +113400,567.0000000007711,-0.06759744527299155 +113401,567.0050000007712,-0.06759291499136309 +113402,567.0100000007714,-0.06758838858622716 +113403,567.0150000007715,-0.06758386605377675 +113404,567.0200000007716,-0.06757934739020374 +113405,567.0250000007717,-0.06757483259169902 +113406,567.0300000007718,-0.0675703216544525 +113407,567.0350000007719,-0.06756581457465309 +113408,567.040000000772,-0.0675613113484888 +113409,567.0450000007721,-0.06755681197214672 +113410,567.0500000007722,-0.06755231644181306 +113411,567.0550000007723,-0.0675478247536732 +113412,567.0600000007724,-0.06754333690391166 +113413,567.0650000007726,-0.06753885288871223 +113414,567.0700000007727,-0.06753437270425788 +113415,567.0750000007728,-0.06752989634673089 +113416,567.0800000007729,-0.06752542381231279 +113417,567.085000000773,-0.06752095509718445 +113418,567.0900000007731,-0.06751649019752609 +113419,567.0950000007732,-0.06751202910951733 +113420,567.1000000007733,-0.06750757182933716 +113421,567.1050000007734,-0.06750311835316399 +113422,567.1100000007735,-0.06749866867717572 +113423,567.1150000007736,-0.06749422279754971 +113424,567.1200000007738,-0.06748978071046285 +113425,567.1250000007739,-0.06748534241209156 +113426,567.130000000774,-0.06748090789861179 +113427,567.1350000007741,-0.06747647716619914 +113428,567.1400000007742,-0.06747205021102878 +113429,567.1450000007743,-0.06746762702927554 +113430,567.1500000007744,-0.06746320761711391 +113431,567.1550000007745,-0.06745879197071807 +113432,567.1600000007746,-0.06745438008626192 +113433,567.1650000007747,-0.06744997195991911 +113434,567.1700000007748,-0.06744556758786306 +113435,567.175000000775,-0.06744116696626698 +113436,567.1800000007751,-0.06743677009130389 +113437,567.1850000007752,-0.06743237695914665 +113438,567.1900000007753,-0.06742798756596803 +113439,567.1950000007754,-0.06742360190794063 +113440,567.2000000007755,-0.06741921998123701 +113441,567.2050000007756,-0.06741484178202965 +113442,567.2100000007757,-0.06741046730649103 +113443,567.2150000007758,-0.06740609655079358 +113444,567.2200000007759,-0.06740172951110975 +113445,567.225000000776,-0.06739736618361204 +113446,567.2300000007762,-0.06739300656447299 +113447,567.2350000007763,-0.06738865064986524 +113448,567.2400000007764,-0.06738429843596155 +113449,567.2450000007765,-0.0673799499189348 +113450,567.2500000007766,-0.06737560509495799 +113451,567.2550000007767,-0.06737126396020433 +113452,567.2600000007768,-0.06736692651084722 +113453,567.2650000007769,-0.0673625927430603 +113454,567.270000000777,-0.06735826265301742 +113455,567.2750000007771,-0.0673539362368927 +113456,567.2800000007772,-0.0673496134908606 +113457,567.2850000007774,-0.06734529441109582 +113458,567.2900000007775,-0.06734097899377343 +113459,567.2950000007776,-0.06733666723506884 +113460,567.3000000007777,-0.06733235913115787 +113461,567.3050000007778,-0.06732805467821669 +113462,567.3100000007779,-0.0673237538724219 +113463,567.315000000778,-0.06731945670995057 +113464,567.3200000007781,-0.06731516318698022 +113465,567.3250000007782,-0.06731087329968882 +113466,567.3300000007783,-0.06730658704425488 +113467,567.3350000007785,-0.06730230441685744 +113468,567.3400000007786,-0.06729802541367605 +113469,567.3450000007787,-0.06729375003089083 +113470,567.3500000007788,-0.06728947826468254 +113471,567.3550000007789,-0.0672852101112325 +113472,567.360000000779,-0.06728094556672262 +113473,567.3650000007791,-0.06727668462733556 +113474,567.3700000007792,-0.06727242728925455 +113475,567.3750000007793,-0.06726817354866357 +113476,567.3800000007794,-0.06726392340174728 +113477,567.3850000007795,-0.06725967684469106 +113478,567.3900000007797,-0.06725543387368106 +113479,567.3950000007798,-0.06725119448490416 +113480,567.4000000007799,-0.06724695867454808 +113481,567.40500000078,-0.06724272643880129 +113482,567.4100000007801,-0.0672384977738531 +113483,567.4150000007802,-0.06723427267589369 +113484,567.4200000007803,-0.06723005114111404 +113485,567.4250000007804,-0.06722583316570606 +113486,567.4300000007805,-0.06722161874586258 +113487,567.4350000007806,-0.06721740787777727 +113488,567.4400000007807,-0.0672132005576448 +113489,567.4450000007809,-0.06720899678166078 +113490,567.450000000781,-0.06720479654602177 +113491,567.4550000007811,-0.06720059984692534 +113492,567.4600000007812,-0.06719640668057003 +113493,567.4650000007813,-0.06719221704315549 +113494,567.4700000007814,-0.06718803093088234 +113495,567.4750000007815,-0.06718384833995228 +113496,567.4800000007816,-0.06717966926656808 +113497,567.4850000007817,-0.06717549370693365 +113498,567.4900000007818,-0.06717132165725395 +113499,567.4950000007819,-0.06716715311373513 +113500,567.500000000782,-0.06716298807258445 +113501,567.5050000007822,-0.06715882653001033 +113502,567.5100000007823,-0.0671546684822224 +113503,567.5150000007824,-0.0671505139254315 +113504,567.5200000007825,-0.06714636285584963 +113505,567.5250000007826,-0.06714221526969007 +113506,567.5300000007827,-0.06713807116316732 +113507,567.5350000007828,-0.0671339305324972 +113508,567.5400000007829,-0.06712979337389671 +113509,567.545000000783,-0.06712565968358426 +113510,567.5500000007831,-0.0671215294577795 +113511,567.5550000007833,-0.06711740269270342 +113512,567.5600000007834,-0.06711327938457838 +113513,567.5650000007835,-0.06710915952962809 +113514,567.5700000007836,-0.06710504312407764 +113515,567.5750000007837,-0.0671009301641535 +113516,567.5800000007838,-0.06709682064608356 +113517,567.5850000007839,-0.06709271456609713 +113518,567.590000000784,-0.06708861192042496 +113519,567.5950000007841,-0.06708451270529928 +113520,567.6000000007842,-0.06708041691695373 +113521,567.6050000007843,-0.06707632455162348 +113522,567.6100000007845,-0.06707223560554518 +113523,567.6150000007846,-0.067068150074957 +113524,567.6200000007847,-0.06706406795609866 +113525,567.6250000007848,-0.06705998924521142 +113526,567.6300000007849,-0.06705591393853806 +113527,567.635000000785,-0.06705184203232295 +113528,567.6400000007851,-0.06704777352281208 +113529,567.6450000007852,-0.06704370840625301 +113530,567.6500000007853,-0.06703964667889489 +113531,567.6550000007854,-0.06703558833698858 +113532,567.6600000007855,-0.0670315333767865 +113533,567.6650000007857,-0.06702748179454278 +113534,567.6700000007858,-0.06702343358651319 +113535,567.6750000007859,-0.06701938874895523 +113536,567.680000000786,-0.06701534727812804 +113537,567.6850000007861,-0.06701130917029252 +113538,567.6900000007862,-0.06700727442171127 +113539,567.6950000007863,-0.06700324302864866 +113540,567.7000000007864,-0.06699921498737077 +113541,567.7050000007865,-0.06699519029414547 +113542,567.7100000007866,-0.06699116894524242 +113543,567.7150000007867,-0.06698715093693307 +113544,567.7200000007869,-0.06698313626549063 +113545,567.725000000787,-0.06697912492719019 +113546,567.7300000007871,-0.06697511691830862 +113547,567.7350000007872,-0.06697111223512471 +113548,567.7400000007873,-0.06696711087391902 +113549,567.7450000007874,-0.066963112830974 +113550,567.7500000007875,-0.06695911810257403 +113551,567.7550000007876,-0.06695512668500532 +113552,567.7600000007877,-0.06695113857455606 +113553,567.7650000007878,-0.06694715376751627 +113554,567.770000000788,-0.06694317226017797 +113555,567.775000000788,-0.06693919404883511 +113556,567.7800000007882,-0.06693521912978355 +113557,567.7850000007883,-0.06693124749932118 +113558,567.7900000007884,-0.06692727915374783 +113559,567.7950000007885,-0.0669233140893653 +113560,567.8000000007886,-0.06691935230247748 +113561,567.8050000007887,-0.06691539378939017 +113562,567.8100000007888,-0.06691143854641125 +113563,567.8150000007889,-0.06690748656985064 +113564,567.820000000789,-0.06690353785602027 +113565,567.8250000007891,-0.06689959240123416 +113566,567.8300000007893,-0.0668956502018084 +113567,567.8350000007894,-0.06689171125406117 +113568,567.8400000007895,-0.0668877755543127 +113569,567.8450000007896,-0.06688384309888537 +113570,567.8500000007897,-0.06687991388410365 +113571,567.8550000007898,-0.06687598790629413 +113572,567.8600000007899,-0.06687206516178555 +113573,567.86500000079,-0.06686814564690882 +113574,567.8700000007901,-0.06686422935799693 +113575,567.8750000007902,-0.06686031629138513 +113576,567.8800000007903,-0.0668564064434108 +113577,567.8850000007905,-0.06685249981041352 +113578,567.8900000007906,-0.06684859638873505 +113579,567.8950000007907,-0.06684469617471936 +113580,567.9000000007908,-0.06684079916471268 +113581,567.9050000007909,-0.06683690535506344 +113582,567.910000000791,-0.0668330147421223 +113583,567.9150000007911,-0.0668291273222422 +113584,567.9200000007912,-0.06682524309177829 +113585,567.9250000007913,-0.06682136204708805 +113586,567.9300000007914,-0.06681748418453119 +113587,567.9350000007915,-0.06681360950046976 +113588,567.9400000007917,-0.06680973799126802 +113589,567.9450000007918,-0.06680586965329263 +113590,567.9500000007919,-0.06680200448291254 +113591,567.955000000792,-0.066798142476499 +113592,567.9600000007921,-0.06679428363042561 +113593,567.9650000007922,-0.06679042794106833 +113594,567.9700000007923,-0.06678657540480547 +113595,567.9750000007924,-0.06678272601801766 +113596,567.9800000007925,-0.06677887977708796 +113597,567.9850000007926,-0.06677503667840182 +113598,567.9900000007927,-0.06677119671834701 +113599,567.9950000007929,-0.06676735989331377 +113600,568.000000000793,-0.06676352619969471 +113601,568.0050000007931,-0.06675969563388486 +113602,568.0100000007932,-0.06675586819228169 +113603,568.0150000007933,-0.06675204387128508 +113604,568.0200000007934,-0.0667482226672974 +113605,568.0250000007935,-0.06674440457672341 +113606,568.0300000007936,-0.06674058959597037 +113607,568.0350000007937,-0.06673677772144802 +113608,568.0400000007938,-0.06673296894956852 +113609,568.045000000794,-0.06672916327674659 +113610,568.0500000007941,-0.06672536069939936 +113611,568.0550000007942,-0.06672156121394653 +113612,568.0600000007943,-0.06671776481681027 +113613,568.0650000007944,-0.06671397150441528 +113614,568.0700000007945,-0.0667101812731888 +113615,568.0750000007946,-0.06670639411956056 +113616,568.0800000007947,-0.06670261003996288 +113617,568.0850000007948,-0.0666988290308306 +113618,568.0900000007949,-0.0666950510886011 +113619,568.095000000795,-0.06669127620971439 +113620,568.1000000007951,-0.06668750439061297 +113621,568.1050000007953,-0.06668373562774196 +113622,568.1100000007954,-0.06667996991754908 +113623,568.1150000007955,-0.06667620725648461 +113624,568.1200000007956,-0.06667244764100146 +113625,568.1250000007957,-0.0666686910675551 +113626,568.1300000007958,-0.06666493753260368 +113627,568.1350000007959,-0.06666118703260793 +113628,568.140000000796,-0.06665743956403122 +113629,568.1450000007961,-0.06665369512333957 +113630,568.1500000007962,-0.06664995370700164 +113631,568.1550000007963,-0.06664621531148869 +113632,568.1600000007965,-0.06664247993327471 +113633,568.1650000007966,-0.06663874756883634 +113634,568.1700000007967,-0.06663501821465283 +113635,568.1750000007968,-0.06663129186720619 +113636,568.1800000007969,-0.06662756852298106 +113637,568.185000000797,-0.06662384817846481 +113638,568.1900000007971,-0.06662013083014746 +113639,568.1950000007972,-0.06661641647452177 +113640,568.2000000007973,-0.0666127051080832 +113641,568.2050000007974,-0.06660899672732994 +113642,568.2100000007975,-0.06660529132876288 +113643,568.2150000007977,-0.06660158890888564 +113644,568.2200000007978,-0.06659788946420458 +113645,568.2250000007979,-0.06659419299122886 +113646,568.230000000798,-0.06659049948647028 +113647,568.2350000007981,-0.06658680894644348 +113648,568.2400000007982,-0.06658312136766581 +113649,568.2450000007983,-0.06657943674665742 +113650,568.2500000007984,-0.06657575507994122 +113651,568.2550000007985,-0.0665720763640429 +113652,568.2600000007986,-0.06656840059549092 +113653,568.2650000007988,-0.06656472777081655 +113654,568.2700000007989,-0.06656105788655382 +113655,568.275000000799,-0.06655739093923962 +113656,568.2800000007991,-0.0665537269254136 +113657,568.2850000007992,-0.06655006584161824 +113658,568.2900000007993,-0.06654640768439882 +113659,568.2950000007994,-0.06654275245030346 +113660,568.3000000007995,-0.0665391001358831 +113661,568.3050000007996,-0.06653545073769153 +113662,568.3100000007997,-0.06653180425228537 +113663,568.3150000007998,-0.06652816067622408 +113664,568.3200000008,-0.06652452000606995 +113665,568.3250000008001,-0.06652088223838817 +113666,568.3300000008002,-0.06651724736974676 +113667,568.3350000008003,-0.0665136153967166 +113668,568.3400000008004,-0.06650998631587147 +113669,568.3450000008005,-0.066506360123788 +113670,568.3500000008006,-0.06650273681704572 +113671,568.3550000008007,-0.06649911639222701 +113672,568.3600000008008,-0.06649549884591717 +113673,568.3650000008009,-0.06649188417470439 +113674,568.370000000801,-0.06648827237517976 +113675,568.3750000008012,-0.06648466344393726 +113676,568.3800000008013,-0.0664810573775738 +113677,568.3850000008014,-0.0664774541726892 +113678,568.3900000008015,-0.06647385382588618 +113679,568.3950000008016,-0.06647025633377039 +113680,568.4000000008017,-0.06646666169295043 +113681,568.4050000008018,-0.0664630699000378 +113682,568.4100000008019,-0.06645948095164694 +113683,568.415000000802,-0.06645589484439526 +113684,568.4200000008021,-0.0664523115749031 +113685,568.4250000008022,-0.06644873113979372 +113686,568.4300000008024,-0.06644515353569336 +113687,568.4350000008025,-0.0664415787592312 +113688,568.4400000008026,-0.06643800680703944 +113689,568.4450000008027,-0.06643443767575317 +113690,568.4500000008028,-0.0664308713620105 +113691,568.4550000008029,-0.06642730786245246 +113692,568.460000000803,-0.06642374717372314 +113693,568.4650000008031,-0.06642018929246954 +113694,568.4700000008032,-0.06641663421534169 +113695,568.4750000008033,-0.06641308193899256 +113696,568.4800000008034,-0.06640953246007816 +113697,568.4850000008036,-0.0664059857752575 +113698,568.4900000008037,-0.06640244188119253 +113699,568.4950000008038,-0.06639890077454828 +113700,568.5000000008039,-0.06639536245199275 +113701,568.505000000804,-0.06639182691019696 +113702,568.5100000008041,-0.06638829414583491 +113703,568.5150000008042,-0.06638476415558371 +113704,568.5200000008043,-0.06638123693612338 +113705,568.5250000008044,-0.06637771248413707 +113706,568.5300000008045,-0.06637419079631086 +113707,568.5350000008046,-0.06637067186933394 +113708,568.5400000008048,-0.06636715569989853 +113709,568.5450000008049,-0.06636364228469982 +113710,568.550000000805,-0.06636013162043614 +113711,568.5550000008051,-0.06635662370380879 +113712,568.5600000008052,-0.06635311853152216 +113713,568.5650000008053,-0.06634961610028367 +113714,568.5700000008054,-0.06634611640680382 +113715,568.5750000008055,-0.06634261944779614 +113716,568.5800000008056,-0.06633912521997724 +113717,568.5850000008057,-0.06633563372006682 +113718,568.5900000008058,-0.06633214494478758 +113719,568.595000000806,-0.06632865889086534 +113720,568.6000000008061,-0.066325175555029 +113721,568.6050000008062,-0.0663216949340105 +113722,568.6100000008063,-0.06631821702454489 +113723,568.6150000008064,-0.0663147418233703 +113724,568.6200000008065,-0.06631126932722793 +113725,568.6250000008066,-0.06630779953286207 +113726,568.6300000008067,-0.06630433243702012 +113727,568.6350000008068,-0.06630086803645255 +113728,568.6400000008069,-0.06629740632791292 +113729,568.645000000807,-0.06629394730815792 +113730,568.6500000008072,-0.06629049097394733 +113731,568.6550000008073,-0.06628703732204401 +113732,568.6600000008074,-0.06628358634921397 +113733,568.6650000008075,-0.06628013805222627 +113734,568.6700000008076,-0.06627669242785313 +113735,568.6750000008077,-0.06627324947286985 +113736,568.6800000008078,-0.0662698091840549 +113737,568.6850000008079,-0.06626637155818978 +113738,568.690000000808,-0.06626293659205919 +113739,568.6950000008081,-0.06625950428245092 +113740,568.7000000008082,-0.06625607462615588 +113741,568.7050000008084,-0.06625264761996813 +113742,568.7100000008085,-0.06624922326068483 +113743,568.7150000008086,-0.06624580154510627 +113744,568.7200000008087,-0.06624238247003592 +113745,568.7250000008088,-0.06623896603228034 +113746,568.7300000008089,-0.06623555222864924 +113747,568.735000000809,-0.06623214105595548 +113748,568.7400000008091,-0.06622873251101503 +113749,568.7450000008092,-0.06622532659064706 +113750,568.7500000008093,-0.06622192329167383 +113751,568.7550000008094,-0.06621852261092076 +113752,568.7600000008096,-0.06621512454521646 +113753,568.7650000008097,-0.06621172909139263 +113754,568.7700000008098,-0.06620833624628417 +113755,568.7750000008099,-0.0662049460067291 +113756,568.78000000081,-0.06620155836956863 +113757,568.7850000008101,-0.0661981733316471 +113758,568.7900000008102,-0.06619479088981203 +113759,568.7950000008103,-0.0661914110409141 +113760,568.8000000008104,-0.06618803378180711 +113761,568.8050000008105,-0.06618465910934809 +113762,568.8100000008106,-0.0661812870203972 +113763,568.8150000008108,-0.0661779175118178 +113764,568.8200000008109,-0.06617455058047635 +113765,568.825000000811,-0.06617118622324254 +113766,568.8300000008111,-0.06616782443698924 +113767,568.8350000008112,-0.06616446521859244 +113768,568.8400000008113,-0.06616110856493133 +113769,568.8450000008114,-0.06615775447288832 +113770,568.8500000008115,-0.06615440293934895 +113771,568.8550000008116,-0.06615105396120191 +113772,568.8600000008117,-0.06614770753533913 +113773,568.8650000008118,-0.06614436365865572 +113774,568.870000000812,-0.06614102232804994 +113775,568.8750000008121,-0.06613768354042324 +113776,568.8800000008122,-0.06613434729268028 +113777,568.8850000008123,-0.06613101358172886 +113778,568.8900000008124,-0.06612768240448003 +113779,568.8950000008125,-0.06612435375784798 +113780,568.9000000008126,-0.0661210276387501 +113781,568.9050000008127,-0.06611770404410698 +113782,568.9100000008128,-0.06611438297084242 +113783,568.9150000008129,-0.06611106441588335 +113784,568.920000000813,-0.06610774837615996 +113785,568.9250000008132,-0.0661044348486056 +113786,568.9300000008133,-0.06610112383015686 +113787,568.9350000008134,-0.06609781531775343 +113788,568.9400000008135,-0.06609450930833831 +113789,568.9450000008136,-0.06609120579885762 +113790,568.9500000008137,-0.06608790478626071 +113791,568.9550000008138,-0.06608460626750014 +113792,568.9600000008139,-0.06608131023953165 +113793,568.965000000814,-0.06607801669931418 +113794,568.9700000008141,-0.06607472564380988 +113795,568.9750000008142,-0.06607143706998413 +113796,568.9800000008144,-0.06606815097480545 +113797,568.9850000008145,-0.06606486735524562 +113798,568.9900000008146,-0.06606158620827961 +113799,568.9950000008147,-0.06605830753088558 +113800,569.0000000008148,-0.06605503132004492 +113801,569.0050000008149,-0.0660517575727422 +113802,569.010000000815,-0.06604848628596523 +113803,569.0150000008151,-0.066045217456705 +113804,569.0200000008152,-0.06604195108195571 +113805,569.0250000008153,-0.06603868715871478 +113806,569.0300000008154,-0.06603542568398284 +113807,569.0350000008156,-0.06603216665476372 +113808,569.0400000008157,-0.06602891006806447 +113809,569.0450000008158,-0.06602565592089533 +113810,569.0500000008159,-0.06602240421026978 +113811,569.055000000816,-0.0660191549332045 +113812,569.0600000008161,-0.06601590808671935 +113813,569.0650000008162,-0.06601266366783747 +113814,569.0700000008163,-0.06600942167358513 +113815,569.0750000008164,-0.06600618210099186 +113816,569.0800000008165,-0.06600294494709043 +113817,569.0850000008166,-0.06599971020891675 +113818,569.0900000008168,-0.06599647788351 +113819,569.0950000008169,-0.06599324796791253 +113820,569.100000000817,-0.06599002045916998 +113821,569.1050000008171,-0.06598679535433108 +113822,569.1100000008172,-0.06598357265044788 +113823,569.1150000008173,-0.06598035234457562 +113824,569.1200000008174,-0.06597713443377272 +113825,569.1250000008175,-0.06597391891510082 +113826,569.1300000008176,-0.06597070578562482 +113827,569.1350000008177,-0.06596749504241277 +113828,569.1400000008178,-0.06596428668253597 +113829,569.145000000818,-0.06596108070306894 +113830,569.1500000008181,-0.0659578771010894 +113831,569.1550000008182,-0.06595467587367826 +113832,569.1600000008183,-0.06595147701791969 +113833,569.1650000008184,-0.06594828053090104 +113834,569.1700000008185,-0.06594508640971289 +113835,569.1750000008186,-0.065941894651449 +113836,569.1800000008187,-0.06593870525320641 +113837,569.1850000008188,-0.0659355182120853 +113838,569.1900000008189,-0.0659323335251891 +113839,569.195000000819,-0.06592915118962443 +113840,569.2000000008192,-0.06592597120250117 +113841,569.2050000008193,-0.06592279356093236 +113842,569.2100000008194,-0.06591961826203427 +113843,569.2150000008195,-0.06591644530292637 +113844,569.2200000008196,-0.06591327468073135 +113845,569.2250000008197,-0.06591010639257512 +113846,569.2300000008198,-0.06590694043558677 +113847,569.2350000008199,-0.06590377680689866 +113848,569.24000000082,-0.06590061550364626 +113849,569.2450000008201,-0.06589745652296837 +113850,569.2500000008203,-0.0658942998620069 +113851,569.2550000008204,-0.06589114551790701 +113852,569.2600000008205,-0.06588799348781706 +113853,569.2650000008206,-0.06588484376888862 +113854,569.2700000008207,-0.06588169635827644 +113855,569.2750000008208,-0.06587855125313855 +113856,569.2800000008209,-0.06587540845063608 +113857,569.285000000821,-0.06587226794793344 +113858,569.2900000008211,-0.06586912974219823 +113859,569.2950000008212,-0.06586599383060124 +113860,569.3000000008213,-0.06586286021031647 +113861,569.3050000008215,-0.06585972887852112 +113862,569.3100000008216,-0.0658565998323956 +113863,569.3150000008217,-0.06585347306912351 +113864,569.3200000008218,-0.06585034858589167 +113865,569.3250000008219,-0.06584722637989006 +113866,569.330000000822,-0.06584410644831189 +113867,569.3350000008221,-0.06584098878835357 +113868,569.3400000008222,-0.0658378733972147 +113869,569.3450000008223,-0.06583476027209807 +113870,569.3500000008224,-0.06583164941020966 +113871,569.3550000008225,-0.06582854080875869 +113872,569.3600000008227,-0.06582543446495752 +113873,569.3650000008228,-0.06582233037602174 +113874,569.3700000008229,-0.0658192285391701 +113875,569.375000000823,-0.06581612895162456 +113876,569.3800000008231,-0.06581303161061028 +113877,569.3850000008232,-0.06580993651335561 +113878,569.3900000008233,-0.06580684365709207 +113879,569.3950000008234,-0.06580375303905438 +113880,569.4000000008235,-0.06580066465648043 +113881,569.4050000008236,-0.06579757850661136 +113882,569.4100000008237,-0.06579449458669141 +113883,569.4150000008239,-0.06579141289396806 +113884,569.420000000824,-0.06578833342569194 +113885,569.4250000008241,-0.06578525617911692 +113886,569.4300000008242,-0.06578218115149997 +113887,569.4350000008243,-0.0657791083401013 +113888,569.4400000008244,-0.06577603774218428 +113889,569.4450000008245,-0.06577296935501548 +113890,569.4500000008246,-0.0657699031758646 +113891,569.4550000008247,-0.06576683920200456 +113892,569.4600000008248,-0.06576377743071145 +113893,569.465000000825,-0.0657607178592645 +113894,569.470000000825,-0.06575766048494618 +113895,569.4750000008252,-0.06575460530504205 +113896,569.4800000008253,-0.0657515523168409 +113897,569.4850000008254,-0.06574850151763469 +113898,569.4900000008255,-0.06574545290471849 +113899,569.4950000008256,-0.0657424064753906 +113900,569.5000000008257,-0.06573936222695248 +113901,569.5050000008258,-0.06573632015670872 +113902,569.5100000008259,-0.06573328026196708 +113903,569.515000000826,-0.06573024254003854 +113904,569.5200000008261,-0.06572720698823714 +113905,569.5250000008263,-0.06572417360388019 +113906,569.5300000008264,-0.06572114238428807 +113907,569.5350000008265,-0.06571811332678437 +113908,569.5400000008266,-0.06571508642869583 +113909,569.5450000008267,-0.06571206168735232 +113910,569.5500000008268,-0.06570903910008688 +113911,569.5550000008269,-0.06570601866423571 +113912,569.560000000827,-0.06570300037713815 +113913,569.5650000008271,-0.0656999842361367 +113914,569.5700000008272,-0.065696970238577 +113915,569.5750000008273,-0.06569395838180782 +113916,569.5800000008275,-0.0656909486631811 +113917,569.5850000008276,-0.06568794108005192 +113918,569.5900000008277,-0.06568493562977851 +113919,569.5950000008278,-0.06568193230972222 +113920,569.6000000008279,-0.06567893111724754 +113921,569.605000000828,-0.06567593204972214 +113922,569.6100000008281,-0.06567293510451677 +113923,569.6150000008282,-0.06566994027900536 +113924,569.6200000008283,-0.06566694757056495 +113925,569.6250000008284,-0.0656639569765757 +113926,569.6300000008285,-0.06566096849442096 +113927,569.6350000008287,-0.06565798212148714 +113928,569.6400000008288,-0.06565499785516382 +113929,569.6450000008289,-0.06565201569284368 +113930,569.650000000829,-0.06564903563192256 +113931,569.6550000008291,-0.06564605766979939 +113932,569.6600000008292,-0.06564308180387624 +113933,569.6650000008293,-0.06564010803155827 +113934,569.6700000008294,-0.06563713635025381 +113935,569.6750000008295,-0.06563416675737428 +113936,569.6800000008296,-0.0656311992503342 +113937,569.6850000008297,-0.06562823382655122 +113938,569.6900000008299,-0.06562527048344613 +113939,569.69500000083,-0.06562230921844277 +113940,569.7000000008301,-0.06561935002896813 +113941,569.7050000008302,-0.0656163929124523 +113942,569.7100000008303,-0.06561343786632848 +113943,569.7150000008304,-0.06561048488803296 +113944,569.7200000008305,-0.06560753397500514 +113945,569.7250000008306,-0.06560458512468752 +113946,569.7300000008307,-0.0656016383345257 +113947,569.7350000008308,-0.06559869360196839 +113948,569.740000000831,-0.06559575092446737 +113949,569.745000000831,-0.06559281029947751 +113950,569.7500000008312,-0.0655898717244568 +113951,569.7550000008313,-0.06558693519686633 +113952,569.7600000008314,-0.06558400071417021 +113953,569.7650000008315,-0.06558106827383572 +113954,569.7700000008316,-0.06557813787333318 +113955,569.7750000008317,-0.06557520951013598 +113956,569.7800000008318,-0.06557228318172062 +113957,569.7850000008319,-0.06556935888556668 +113958,569.790000000832,-0.06556643661915681 +113959,569.7950000008321,-0.06556351637997673 +113960,569.8000000008323,-0.06556059816551524 +113961,569.8050000008324,-0.06555768197326418 +113962,569.8100000008325,-0.06555476780071852 +113963,569.8150000008326,-0.06555185564537629 +113964,569.8200000008327,-0.0655489455047385 +113965,569.8250000008328,-0.06554603737630935 +113966,569.8300000008329,-0.065543131257596 +113967,569.835000000833,-0.06554022714610874 +113968,569.8400000008331,-0.0655373250393609 +113969,569.8450000008332,-0.06553442493486883 +113970,569.8500000008333,-0.06553152683015198 +113971,569.8550000008335,-0.06552863072273282 +113972,569.8600000008336,-0.06552573661013691 +113973,569.8650000008337,-0.06552284448989283 +113974,569.8700000008338,-0.06551995435953221 +113975,569.8750000008339,-0.06551706621658973 +113976,569.880000000834,-0.06551418005860311 +113977,569.8850000008341,-0.06551129588311314 +113978,569.8900000008342,-0.0655084136876636 +113979,569.8950000008343,-0.06550553346980134 +113980,569.9000000008344,-0.06550265522707624 +113981,569.9050000008345,-0.06549977895704119 +113982,569.9100000008347,-0.06549690465725215 +113983,569.9150000008348,-0.06549403232526808 +113984,569.9200000008349,-0.065491161958651 +113985,569.925000000835,-0.06548829355496591 +113986,569.9300000008351,-0.06548542711178086 +113987,569.9350000008352,-0.06548256262666695 +113988,569.9400000008353,-0.06547970009719824 +113989,569.9450000008354,-0.06547683952095183 +113990,569.9500000008355,-0.06547398089550785 +113991,569.9550000008356,-0.06547112421844942 +113992,569.9600000008357,-0.06546826948736269 +113993,569.9650000008359,-0.06546541669983683 +113994,569.970000000836,-0.06546256585346397 +113995,569.9750000008361,-0.0654597169458393 +113996,569.9800000008362,-0.06545686997456095 +113997,569.9850000008363,-0.06545402493723011 +113998,569.9900000008364,-0.06545118183145096 +113999,569.9950000008365,-0.06544834065483063 +114000,570.0000000008366,-0.06544550140497929 +114001,570.0050000008367,-0.06544266407951006 +114002,570.0100000008368,-0.06543982867603913 +114003,570.015000000837,-0.06543699519218557 +114004,570.0200000008371,-0.0654341636255715 +114005,570.0250000008372,-0.06543133397382202 +114006,570.0300000008373,-0.06542850623456521 +114007,570.0350000008374,-0.0654256804054321 +114008,570.0400000008375,-0.06542285648405674 +114009,570.0450000008376,-0.06542003446807611 +114010,570.0500000008377,-0.0654172143551302 +114011,570.0550000008378,-0.06541439614286194 +114012,570.0600000008379,-0.06541157982891725 +114013,570.065000000838,-0.06540876541094501 +114014,570.0700000008381,-0.06540595288659705 +114015,570.0750000008383,-0.06540314225352817 +114016,570.0800000008384,-0.06540033350939614 +114017,570.0850000008385,-0.06539752665186166 +114018,570.0900000008386,-0.06539472167858841 +114019,570.0950000008387,-0.06539191858724303 +114020,570.1000000008388,-0.06538911737549506 +114021,570.1050000008389,-0.06538631804101705 +114022,570.110000000839,-0.06538352058148444 +114023,570.1150000008391,-0.06538072499457566 +114024,570.1200000008392,-0.06537793127797203 +114025,570.1250000008393,-0.06537513942935787 +114026,570.1300000008395,-0.06537234944642038 +114027,570.1350000008396,-0.06536956132684973 +114028,570.1400000008397,-0.06536677506833902 +114029,570.1450000008398,-0.06536399066858423 +114030,570.1500000008399,-0.06536120812528433 +114031,570.15500000084,-0.06535842743614118 +114032,570.1600000008401,-0.06535564859885958 +114033,570.1650000008402,-0.06535287161114722 +114034,570.1700000008403,-0.06535009647071476 +114035,570.1750000008404,-0.06534732317527574 +114036,570.1800000008406,-0.06534455172254658 +114037,570.1850000008407,-0.06534178211024669 +114038,570.1900000008408,-0.06533901433609832 +114039,570.1950000008409,-0.06533624839782665 +114040,570.200000000841,-0.06533348429315977 +114041,570.2050000008411,-0.06533072201982867 +114042,570.2100000008412,-0.06532796157556724 +114043,570.2150000008413,-0.06532520295811223 +114044,570.2200000008414,-0.06532244616520334 +114045,570.2250000008415,-0.06531969119458314 +114046,570.2300000008416,-0.06531693804399707 +114047,570.2350000008418,-0.06531418671119348 +114048,570.2400000008419,-0.06531143719392359 +114049,570.245000000842,-0.06530868948994151 +114050,570.2500000008421,-0.06530594359700422 +114051,570.2550000008422,-0.0653031995128716 +114052,570.2600000008423,-0.06530045723530638 +114053,570.2650000008424,-0.06529771676207417 +114054,570.2700000008425,-0.06529497809094346 +114055,570.2750000008426,-0.06529224121968558 +114056,570.2800000008427,-0.06528950614607476 +114057,570.2850000008428,-0.06528677286788806 +114058,570.290000000843,-0.06528404138290543 +114059,570.2950000008431,-0.06528131168890967 +114060,570.3000000008432,-0.06527858378368642 +114061,570.3050000008433,-0.06527585766502417 +114062,570.3100000008434,-0.06527313333071427 +114063,570.3150000008435,-0.06527041077855096 +114064,570.3200000008436,-0.06526769000633123 +114065,570.3250000008437,-0.06526497101185501 +114066,570.3300000008438,-0.06526225379292501 +114067,570.3350000008439,-0.0652595383473468 +114068,570.340000000844,-0.06525682467292876 +114069,570.3450000008442,-0.06525411276748215 +114070,570.3500000008443,-0.06525140262882104 +114071,570.3550000008444,-0.06524869425476232 +114072,570.3600000008445,-0.06524598764312568 +114073,570.3650000008446,-0.06524328279173369 +114074,570.3700000008447,-0.06524057969841171 +114075,570.3750000008448,-0.0652378783609879 +114076,570.3800000008449,-0.06523517877729329 +114077,570.385000000845,-0.06523248094516164 +114078,570.3900000008451,-0.0652297848624296 +114079,570.3950000008452,-0.06522709052693659 +114080,570.4000000008454,-0.06522439793652485 +114081,570.4050000008455,-0.06522170708903942 +114082,570.4100000008456,-0.0652190179823281 +114083,570.4150000008457,-0.06521633061424155 +114084,570.4200000008458,-0.06521364498263318 +114085,570.4250000008459,-0.06521096108535925 +114086,570.430000000846,-0.06520827892027874 +114087,570.4350000008461,-0.06520559848525344 +114088,570.4400000008462,-0.06520291977814795 +114089,570.4450000008463,-0.06520024279682964 +114090,570.4500000008464,-0.06519756753916864 +114091,570.4550000008466,-0.06519489400303788 +114092,570.4600000008467,-0.06519222218631306 +114093,570.4650000008468,-0.06518955208687267 +114094,570.4700000008469,-0.06518688370259793 +114095,570.475000000847,-0.06518421703137284 +114096,570.4800000008471,-0.06518155207108418 +114097,570.4850000008472,-0.0651788888196215 +114098,570.4900000008473,-0.06517622727487708 +114099,570.4950000008474,-0.06517356743474596 +114100,570.5000000008475,-0.06517090929712596 +114101,570.5050000008476,-0.06516825285991765 +114102,570.5100000008478,-0.0651655981210243 +114103,570.5150000008479,-0.06516294507835199 +114104,570.520000000848,-0.06516029372980951 +114105,570.5250000008481,-0.06515764407330839 +114106,570.5300000008482,-0.06515499610676291 +114107,570.5350000008483,-0.06515234982809008 +114108,570.5400000008484,-0.06514970523520967 +114109,570.5450000008485,-0.06514706232604413 +114110,570.5500000008486,-0.06514442109851866 +114111,570.5550000008487,-0.06514178155056122 +114112,570.5600000008488,-0.06513914368010246 +114113,570.565000000849,-0.06513650748507573 +114114,570.5700000008491,-0.06513387296341713 +114115,570.5750000008492,-0.0651312401130655 +114116,570.5800000008493,-0.06512860893196232 +114117,570.5850000008494,-0.06512597941805184 +114118,570.5900000008495,-0.065123351569281 +114119,570.5950000008496,-0.06512072538359943 +114120,570.6000000008497,-0.06511810085895951 +114121,570.6050000008498,-0.06511547799331625 +114122,570.6100000008499,-0.0651128567846274 +114123,570.61500000085,-0.06511023723085341 +114124,570.6200000008502,-0.06510761932995737 +114125,570.6250000008503,-0.06510500307990515 +114126,570.6300000008504,-0.06510238847866522 +114127,570.6350000008505,-0.06509977552420879 +114128,570.6400000008506,-0.06509716421450969 +114129,570.6450000008507,-0.06509455454754451 +114130,570.6500000008508,-0.06509194652129244 +114131,570.6550000008509,-0.06508934013373541 +114132,570.660000000851,-0.06508673538285796 +114133,570.6650000008511,-0.06508413226664732 +114134,570.6700000008512,-0.06508153078309341 +114135,570.6750000008514,-0.0650789309301888 +114136,570.6800000008515,-0.06507633270592866 +114137,570.6850000008516,-0.06507373610831092 +114138,570.6900000008517,-0.0650711411353361 +114139,570.6950000008518,-0.0650685477850074 +114140,570.7000000008519,-0.06506595605533064 +114141,570.705000000852,-0.06506336594431429 +114142,570.7100000008521,-0.06506077744996949 +114143,570.7150000008522,-0.06505819057031002 +114144,570.7200000008523,-0.06505560530335226 +114145,570.7250000008524,-0.0650530216471153 +114146,570.7300000008526,-0.06505043959962074 +114147,570.7350000008527,-0.06504785915889295 +114148,570.7400000008528,-0.06504528032295884 +114149,570.7450000008529,-0.06504270308984797 +114150,570.750000000853,-0.06504012745759252 +114151,570.7550000008531,-0.0650375534242273 +114152,570.7600000008532,-0.06503498098778973 +114153,570.7650000008533,-0.06503241014631982 +114154,570.7700000008534,-0.06502984089786024 +114155,570.7750000008535,-0.06502727324045623 +114156,570.7800000008536,-0.0650247071721557 +114157,570.7850000008538,-0.06502214269100903 +114158,570.7900000008539,-0.06501957979506937 +114159,570.795000000854,-0.06501701848239233 +114160,570.8000000008541,-0.0650144587510362 +114161,570.8050000008542,-0.06501190059906184 +114162,570.8100000008543,-0.06500934402453265 +114163,570.8150000008544,-0.06500678902551471 +114164,570.8200000008545,-0.06500423560007661 +114165,570.8250000008546,-0.06500168374628958 +114166,570.8300000008547,-0.06499913346222737 +114167,570.8350000008548,-0.06499658474596633 +114168,570.840000000855,-0.06499403759558543 +114169,570.8450000008551,-0.06499149200916614 +114170,570.8500000008552,-0.06498894798479254 +114171,570.8550000008553,-0.0649864055205513 +114172,570.8600000008554,-0.06498386461453155 +114173,570.8650000008555,-0.06498132526482513 +114174,570.8700000008556,-0.06497878746952632 +114175,570.8750000008557,-0.06497625122673199 +114176,570.8800000008558,-0.06497371653454158 +114177,570.8850000008559,-0.06497118339105708 +114178,570.890000000856,-0.064968651794383 +114179,570.8950000008562,-0.06496612174262643 +114180,570.9000000008563,-0.06496359323389696 +114181,570.9050000008564,-0.06496106626630677 +114182,570.9100000008565,-0.06495854083797051 +114183,570.9150000008566,-0.06495601694700542 +114184,570.9200000008567,-0.06495349459153127 +114185,570.9250000008568,-0.06495097376967032 +114186,570.9300000008569,-0.0649484544795474 +114187,570.935000000857,-0.06494593671928983 +114188,570.9400000008571,-0.06494342048702746 +114189,570.9450000008572,-0.06494090578089266 +114190,570.9500000008574,-0.06493839259902032 +114191,570.9550000008575,-0.06493588093954783 +114192,570.9600000008576,-0.06493337080061509 +114193,570.9650000008577,-0.06493086218036453 +114194,570.9700000008578,-0.06492835507694104 +114195,570.9750000008579,-0.06492584948849207 +114196,570.980000000858,-0.06492334541316752 +114197,570.9850000008581,-0.06492084284911981 +114198,570.9900000008582,-0.06491834179450383 +114199,570.9950000008583,-0.064915842247477 +114200,571.0000000008584,-0.06491334420619918 +114201,571.0050000008586,-0.06491084766883276 +114202,571.0100000008587,-0.06490835263354258 +114203,571.0150000008588,-0.06490585909849599 +114204,571.0200000008589,-0.06490336706186277 +114205,571.025000000859,-0.06490087652181523 +114206,571.0300000008591,-0.0648983874765281 +114207,571.0350000008592,-0.06489589992417864 +114208,571.0400000008593,-0.0648934138629465 +114209,571.0450000008594,-0.06489092929101387 +114210,571.0500000008595,-0.06488844620656534 +114211,571.0550000008596,-0.06488596460778799 +114212,571.0600000008598,-0.06488348449287135 +114213,571.0650000008599,-0.06488100586000739 +114214,571.07000000086,-0.06487852870739055 +114215,571.0750000008601,-0.06487605303321774 +114216,571.0800000008602,-0.06487357883568823 +114217,571.0850000008603,-0.0648711061130038 +114218,571.0900000008604,-0.06486863486336866 +114219,571.0950000008605,-0.06486616508498945 +114220,571.1000000008606,-0.06486369677607523 +114221,571.1050000008607,-0.06486122993483752 +114222,571.1100000008609,-0.06485876455949026 +114223,571.115000000861,-0.06485630064824979 +114224,571.1200000008611,-0.06485383819933489 +114225,571.1250000008612,-0.06485137721096677 +114226,571.1300000008613,-0.06484891768136906 +114227,571.1350000008614,-0.06484645960876778 +114228,571.1400000008615,-0.06484400299139137 +114229,571.1450000008616,-0.06484154782747069 +114230,571.1500000008617,-0.06483909411523901 +114231,571.1550000008618,-0.06483664185293199 +114232,571.1600000008619,-0.0648341910387877 +114233,571.165000000862,-0.06483174167104659 +114234,571.1700000008622,-0.06482929374795154 +114235,571.1750000008623,-0.06482684726774779 +114236,571.1800000008624,-0.064824402228683 +114237,571.1850000008625,-0.06482195862900719 +114238,571.1900000008626,-0.06481951646697277 +114239,571.1950000008627,-0.06481707574083455 +114240,571.2000000008628,-0.06481463644884973 +114241,571.2050000008629,-0.06481219858927782 +114242,571.210000000863,-0.0648097621603808 +114243,571.2150000008631,-0.06480732716042295 +114244,571.2200000008633,-0.06480489358767091 +114245,571.2250000008634,-0.06480246144039377 +114246,571.2300000008635,-0.0648000307168629 +114247,571.2350000008636,-0.06479760141535205 +114248,571.2400000008637,-0.06479517353413736 +114249,571.2450000008638,-0.0647927470714973 +114250,571.2500000008639,-0.0647903220257127 +114251,571.255000000864,-0.06478789839506673 +114252,571.2600000008641,-0.0647854761778449 +114253,571.2650000008642,-0.0647830553723351 +114254,571.2700000008643,-0.06478063597682754 +114255,571.2750000008645,-0.06477821798961476 +114256,571.2800000008646,-0.06477580140899164 +114257,571.2850000008647,-0.0647733862332554 +114258,571.2900000008648,-0.06477097246070562 +114259,571.2950000008649,-0.06476856008964414 +114260,571.300000000865,-0.06476614911837518 +114261,571.3050000008651,-0.06476373954520527 +114262,571.3100000008652,-0.06476133136844325 +114263,571.3150000008653,-0.0647589245864003 +114264,571.3200000008654,-0.06475651919738988 +114265,571.3250000008655,-0.06475411519972779 +114266,571.3300000008657,-0.06475171259173212 +114267,571.3350000008658,-0.06474931137172331 +114268,571.3400000008659,-0.06474691153802405 +114269,571.345000000866,-0.06474451308895936 +114270,571.3500000008661,-0.06474211602285654 +114271,571.3550000008662,-0.0647397203380452 +114272,571.3600000008663,-0.06473732603285727 +114273,571.3650000008664,-0.06473493310562692 +114274,571.3700000008665,-0.06473254155469065 +114275,571.3750000008666,-0.0647301513783872 +114276,571.3800000008667,-0.06472776257505762 +114277,571.3850000008669,-0.06472537514304527 +114278,571.390000000867,-0.06472298908069572 +114279,571.3950000008671,-0.06472060438635688 +114280,571.4000000008672,-0.06471822105837889 +114281,571.4050000008673,-0.06471583909511418 +114282,571.4100000008674,-0.06471345849491743 +114283,571.4150000008675,-0.0647110792561456 +114284,571.4200000008676,-0.0647087013771579 +114285,571.4250000008677,-0.0647063248563158 +114286,571.4300000008678,-0.06470394969198304 +114287,571.435000000868,-0.0647015758825256 +114288,571.440000000868,-0.06469920342631172 +114289,571.4450000008682,-0.06469683232171185 +114290,571.4500000008683,-0.06469446256709875 +114291,571.4550000008684,-0.06469209416084738 +114292,571.4600000008685,-0.06468972710133494 +114293,571.4650000008686,-0.06468736138694088 +114294,571.4700000008687,-0.0646849970160469 +114295,571.4750000008688,-0.06468263398703689 +114296,571.4800000008689,-0.06468027229829698 +114297,571.485000000869,-0.06467791194821558 +114298,571.4900000008691,-0.06467555293518325 +114299,571.4950000008693,-0.06467319525759282 +114300,571.5000000008694,-0.06467083891383932 +114301,571.5050000008695,-0.06466848390232 +114302,571.5100000008696,-0.06466613022143432 +114303,571.5150000008697,-0.06466377786958395 +114304,571.5200000008698,-0.06466142684517279 +114305,571.5250000008699,-0.06465907714660689 +114306,571.53000000087,-0.06465672877229457 +114307,571.5350000008701,-0.06465438172064633 +114308,571.5400000008702,-0.06465203599007482 +114309,571.5450000008703,-0.06464969157899496 +114310,571.5500000008705,-0.0646473484858238 +114311,571.5550000008706,-0.06464500670898062 +114312,571.5600000008707,-0.06464266624688686 +114313,571.5650000008708,-0.06464032709796616 +114314,571.5700000008709,-0.06463798926064435 +114315,571.575000000871,-0.06463565273334941 +114316,571.5800000008711,-0.0646333175145115 +114317,571.5850000008712,-0.06463098360256299 +114318,571.5900000008713,-0.0646286509959384 +114319,571.5950000008714,-0.0646263196930744 +114320,571.6000000008715,-0.06462398969240987 +114321,571.6050000008717,-0.06462166099238578 +114322,571.6100000008718,-0.06461933359144535 +114323,571.6150000008719,-0.06461700748803391 +114324,571.620000000872,-0.06461468268059892 +114325,571.6250000008721,-0.06461235916759005 +114326,571.6300000008722,-0.06461003694745907 +114327,571.6350000008723,-0.06460771601865993 +114328,571.6400000008724,-0.06460539637964872 +114329,571.6450000008725,-0.06460307802888368 +114330,571.6500000008726,-0.06460076096482517 +114331,571.6550000008727,-0.06459844518593567 +114332,571.6600000008729,-0.06459613069067985 +114333,571.665000000873,-0.06459381747752445 +114334,571.6700000008731,-0.06459150554493841 +114335,571.6750000008732,-0.06458919489139273 +114336,571.6800000008733,-0.06458688551536056 +114337,571.6850000008734,-0.06458457741531717 +114338,571.6900000008735,-0.06458227058973998 +114339,571.6950000008736,-0.06457996503710847 +114340,571.7000000008737,-0.06457766075590426 +114341,571.7050000008738,-0.0645753577446111 +114342,571.710000000874,-0.06457305600171481 +114343,571.715000000874,-0.06457075552570336 +114344,571.7200000008742,-0.06456845631506679 +114345,571.7250000008743,-0.06456615836829724 +114346,571.7300000008744,-0.06456386168388896 +114347,571.7350000008745,-0.0645615662603383 +114348,571.7400000008746,-0.0645592720961437 +114349,571.7450000008747,-0.06455697918980569 +114350,571.7500000008748,-0.06455468753982688 +114351,571.7550000008749,-0.06455239714471195 +114352,571.760000000875,-0.0645501080029677 +114353,571.7650000008751,-0.06454782011310302 +114354,571.7700000008753,-0.0645455334736288 +114355,571.7750000008754,-0.06454324808305809 +114356,571.7800000008755,-0.06454096393990597 +114357,571.7850000008756,-0.06453868104268957 +114358,571.7900000008757,-0.06453639938992817 +114359,571.7950000008758,-0.06453411898014301 +114360,571.8000000008759,-0.06453183981185745 +114361,571.805000000876,-0.06452956188359692 +114362,571.8100000008761,-0.06452728519388884 +114363,571.8150000008762,-0.0645250097412628 +114364,571.8200000008763,-0.06452273552425031 +114365,571.8250000008765,-0.06452046254138503 +114366,571.8300000008766,-0.06451819079120262 +114367,571.8350000008767,-0.06451592027224078 +114368,571.8400000008768,-0.06451365098303927 +114369,571.8450000008769,-0.06451138292213988 +114370,571.850000000877,-0.06450911608808646 +114371,571.8550000008771,-0.06450685047942485 +114372,571.8600000008772,-0.06450458609470296 +114373,571.8650000008773,-0.06450232293247071 +114374,571.8700000008774,-0.06450006099128003 +114375,571.8750000008775,-0.06449780026968491 +114376,571.8800000008777,-0.06449554076624135 +114377,571.8850000008778,-0.06449328247950736 +114378,571.8900000008779,-0.06449102540804295 +114379,571.895000000878,-0.0644887695504102 +114380,571.9000000008781,-0.06448651490517313 +114381,571.9050000008782,-0.06448426147089781 +114382,571.9100000008783,-0.0644820092461523 +114383,571.9150000008784,-0.06447975822950669 +114384,571.9200000008785,-0.06447750841953304 +114385,571.9250000008786,-0.06447525981480542 +114386,571.9300000008787,-0.06447301241389991 +114387,571.9350000008789,-0.06447076621539455 +114388,571.940000000879,-0.0644685212178694 +114389,571.9450000008791,-0.0644662774199065 +114390,571.9500000008792,-0.06446403482008987 +114391,571.9550000008793,-0.06446179341700554 +114392,571.9600000008794,-0.06445955320924145 +114393,571.9650000008795,-0.0644573141953876 +114394,571.9700000008796,-0.06445507637403593 +114395,571.9750000008797,-0.06445283974378034 +114396,571.9800000008798,-0.06445060430321674 +114397,571.98500000088,-0.06444837005094296 +114398,571.9900000008801,-0.06444613698555883 +114399,571.9950000008802,-0.06444390510566614 +114400,572.0000000008803,-0.06444167440986862 +114401,572.0050000008804,-0.06443944489677196 +114402,572.0100000008805,-0.06443721656498386 +114403,572.0150000008806,-0.0644349894131139 +114404,572.0200000008807,-0.06443276343977364 +114405,572.0250000008808,-0.0644305386435766 +114406,572.0300000008809,-0.06442831502313823 +114407,572.035000000881,-0.06442609257707592 +114408,572.0400000008812,-0.06442387130400903 +114409,572.0450000008813,-0.06442165120255883 +114410,572.0500000008814,-0.06441943227134851 +114411,572.0550000008815,-0.06441721450900324 +114412,572.0600000008816,-0.0644149979141501 +114413,572.0650000008817,-0.0644127824854181 +114414,572.0700000008818,-0.06441056822143815 +114415,572.0750000008819,-0.0644083551208431 +114416,572.080000000882,-0.06440614318226774 +114417,572.0850000008821,-0.06440393240434879 +114418,572.0900000008822,-0.06440172278572481 +114419,572.0950000008824,-0.06439951432503636 +114420,572.1000000008825,-0.06439730702092589 +114421,572.1050000008826,-0.06439510087203769 +114422,572.1100000008827,-0.06439289587701805 +114423,572.1150000008828,-0.06439069203451511 +114424,572.1200000008829,-0.06438848934317894 +114425,572.125000000883,-0.06438628780166147 +114426,572.1300000008831,-0.06438408740861656 +114427,572.1350000008832,-0.06438188816269998 +114428,572.1400000008833,-0.06437969006256933 +114429,572.1450000008834,-0.06437749310688415 +114430,572.1500000008836,-0.06437529729430586 +114431,572.1550000008837,-0.06437310262349773 +114432,572.1600000008838,-0.06437090909312497 +114433,572.1650000008839,-0.06436871670185461 +114434,572.170000000884,-0.06436652544835561 +114435,572.1750000008841,-0.06436433533129875 +114436,572.1800000008842,-0.06436214634935672 +114437,572.1850000008843,-0.06435995850120409 +114438,572.1900000008844,-0.06435777178551726 +114439,572.1950000008845,-0.06435558620097451 +114440,572.2000000008846,-0.06435340174625598 +114441,572.2050000008848,-0.0643512184200437 +114442,572.2100000008849,-0.06434903622102149 +114443,572.215000000885,-0.06434685514787511 +114444,572.2200000008851,-0.0643446751992921 +114445,572.2250000008852,-0.06434249637396189 +114446,572.2300000008853,-0.06434031867057576 +114447,572.2350000008854,-0.0643381420878268 +114448,572.2400000008855,-0.06433596662440998 +114449,572.2450000008856,-0.0643337922790221 +114450,572.2500000008857,-0.06433161905036178 +114451,572.2550000008858,-0.06432944693712951 +114452,572.260000000886,-0.06432727593802759 +114453,572.2650000008861,-0.06432510605176014 +114454,572.2700000008862,-0.06432293727703314 +114455,572.2750000008863,-0.06432076961255438 +114456,572.2800000008864,-0.06431860305703348 +114457,572.2850000008865,-0.06431643760918185 +114458,572.2900000008866,-0.06431427326771276 +114459,572.2950000008867,-0.06431211003134131 +114460,572.3000000008868,-0.06430994789878434 +114461,572.3050000008869,-0.06430778686876058 +114462,572.310000000887,-0.06430562693999053 +114463,572.3150000008872,-0.06430346811119651 +114464,572.3200000008873,-0.06430131038110262 +114465,572.3250000008874,-0.06429915374843483 +114466,572.3300000008875,-0.0642969982119208 +114467,572.3350000008876,-0.06429484377029009 +114468,572.3400000008877,-0.06429269042227401 +114469,572.3450000008878,-0.06429053816660567 +114470,572.3500000008879,-0.06428838700201997 +114471,572.355000000888,-0.0642862369272536 +114472,572.3600000008881,-0.06428408794104504 +114473,572.3650000008882,-0.06428194004213453 +114474,572.3700000008884,-0.06427979322926411 +114475,572.3750000008885,-0.06427764750117762 +114476,572.3800000008886,-0.06427550285662065 +114477,572.3850000008887,-0.06427335929434055 +114478,572.3900000008888,-0.06427121681308648 +114479,572.3950000008889,-0.06426907541160935 +114480,572.400000000889,-0.06426693508866184 +114481,572.4050000008891,-0.06426479584299838 +114482,572.4100000008892,-0.0642626576733752 +114483,572.4150000008893,-0.06426052057855025 +114484,572.4200000008894,-0.06425838455728326 +114485,572.4250000008896,-0.0642562496083357 +114486,572.4300000008897,-0.06425411573047082 +114487,572.4350000008898,-0.06425198292245358 +114488,572.4400000008899,-0.06424985118305074 +114489,572.44500000089,-0.06424772051103077 +114490,572.4500000008901,-0.06424559090516388 +114491,572.4550000008902,-0.06424346236422206 +114492,572.4600000008903,-0.06424133488697899 +114493,572.4650000008904,-0.06423920847221014 +114494,572.4700000008905,-0.06423708311869267 +114495,572.4750000008906,-0.06423495882520548 +114496,572.4800000008908,-0.06423283559052922 +114497,572.4850000008909,-0.06423071341344626 +114498,572.490000000891,-0.0642285922927407 +114499,572.4950000008911,-0.06422647222719834 +114500,572.5000000008912,-0.06422435321560671 +114501,572.5050000008913,-0.0642222352567551 +114502,572.5100000008914,-0.06422011834943446 +114503,572.5150000008915,-0.06421800249243748 +114504,572.5200000008916,-0.06421588768455855 +114505,572.5250000008917,-0.06421377392459379 +114506,572.5300000008918,-0.06421166121134103 +114507,572.535000000892,-0.06420954954359975 +114508,572.5400000008921,-0.0642074389201712 +114509,572.5450000008922,-0.06420532933985831 +114510,572.5500000008923,-0.06420322080146569 +114511,572.5550000008924,-0.06420111330379967 +114512,572.5600000008925,-0.06419900684566825 +114513,572.5650000008926,-0.06419690142588114 +114514,572.5700000008927,-0.06419479704324974 +114515,572.5750000008928,-0.06419269369658712 +114516,572.5800000008929,-0.06419059138470803 +114517,572.585000000893,-0.06418849010642895 +114518,572.5900000008932,-0.06418638986056797 +114519,572.5950000008933,-0.06418429064594493 +114520,572.6000000008934,-0.0641821924613813 +114521,572.6050000008935,-0.06418009530570021 +114522,572.6100000008936,-0.06417799917772651 +114523,572.6150000008937,-0.06417590407628669 +114524,572.6200000008938,-0.0641738100002089 +114525,572.6250000008939,-0.064171716948323 +114526,572.630000000894,-0.06416962491946043 +114527,572.6350000008941,-0.06416753391245437 +114528,572.6400000008942,-0.06416544392613961 +114529,572.6450000008944,-0.06416335495935263 +114530,572.6500000008945,-0.06416126701093153 +114531,572.6550000008946,-0.06415918007971605 +114532,572.6600000008947,-0.06415709416454765 +114533,572.6650000008948,-0.06415500926426936 +114534,572.6700000008949,-0.06415292537772589 +114535,572.675000000895,-0.06415084250376361 +114536,572.6800000008951,-0.0641487606412305 +114537,572.6850000008952,-0.06414667978897616 +114538,572.6900000008953,-0.06414459994585187 +114539,572.6950000008954,-0.06414252111071052 +114540,572.7000000008956,-0.06414044328240663 +114541,572.7050000008957,-0.06413836645979637 +114542,572.7100000008958,-0.06413629064173752 +114543,572.7150000008959,-0.06413421582708947 +114544,572.720000000896,-0.06413214201471326 +114545,572.7250000008961,-0.06413006920347156 +114546,572.7300000008962,-0.06412799739222858 +114547,572.7350000008963,-0.06412592657985025 +114548,572.7400000008964,-0.06412385676520406 +114549,572.7450000008965,-0.06412178794715909 +114550,572.7500000008966,-0.0641197201245861 +114551,572.7550000008968,-0.06411765329635738 +114552,572.7600000008969,-0.06411558746134687 +114553,572.765000000897,-0.06411352261843009 +114554,572.7700000008971,-0.0641114587664842 +114555,572.7750000008972,-0.06410939590438791 +114556,572.7800000008973,-0.06410733403102155 +114557,572.7850000008974,-0.06410527314526705 +114558,572.7900000008975,-0.06410321324600791 +114559,572.7950000008976,-0.06410115433212925 +114560,572.8000000008977,-0.06409909640251772 +114561,572.8050000008978,-0.06409703945606164 +114562,572.810000000898,-0.06409498349165085 +114563,572.8150000008981,-0.0640929285081768 +114564,572.8200000008982,-0.06409087450453249 +114565,572.8250000008983,-0.06408882147961255 +114566,572.8300000008984,-0.06408676943231312 +114567,572.8350000008985,-0.06408471836153196 +114568,572.8400000008986,-0.06408266826616837 +114569,572.8450000008987,-0.06408061914512324 +114570,572.8500000008988,-0.06407857099729901 +114571,572.8550000008989,-0.06407652382159972 +114572,572.860000000899,-0.06407447761693091 +114573,572.8650000008992,-0.06407243238219974 +114574,572.8700000008993,-0.0640703881163149 +114575,572.8750000008994,-0.0640683448181866 +114576,572.8800000008995,-0.06406630248672669 +114577,572.8850000008996,-0.06406426112084848 +114578,572.8900000008997,-0.0640622207194669 +114579,572.8950000008998,-0.0640601812814984 +114580,572.9000000008999,-0.06405814280586096 +114581,572.9050000009,-0.06405610529147411 +114582,572.9100000009001,-0.06405406873725894 +114583,572.9150000009002,-0.06405203314213807 +114584,572.9200000009004,-0.06404999850503564 +114585,572.9250000009005,-0.06404796482487733 +114586,572.9300000009006,-0.06404593210059037 +114587,572.9350000009007,-0.0640439003311035 +114588,572.9400000009008,-0.06404186951534702 +114589,572.9450000009009,-0.0640398396522527 +114590,572.950000000901,-0.06403781074075389 +114591,572.9550000009011,-0.06403578277978542 +114592,572.9600000009012,-0.06403375576828368 +114593,572.9650000009013,-0.06403172970518656 +114594,572.9700000009015,-0.06402970458943343 +114595,572.9750000009016,-0.0640276804199652 +114596,572.9800000009017,-0.06402565719572435 +114597,572.9850000009018,-0.06402363491565477 +114598,572.9900000009019,-0.06402161357870192 +114599,572.995000000902,-0.06401959318381274 +114600,573.0000000009021,-0.0640175737299357 +114601,573.0050000009022,-0.06401555521602074 +114602,573.0100000009023,-0.06401353764101932 +114603,573.0150000009024,-0.06401152100388437 +114604,573.0200000009025,-0.06400950530357036 +114605,573.0250000009027,-0.06400749053903318 +114606,573.0300000009028,-0.06400547670923032 +114607,573.0350000009029,-0.06400346381312066 +114608,573.040000000903,-0.0640014518496646 +114609,573.0450000009031,-0.06399944081782405 +114610,573.0500000009032,-0.06399743071656236 +114611,573.0550000009033,-0.06399542154484439 +114612,573.0600000009034,-0.06399341330163646 +114613,573.0650000009035,-0.0639914059859064 +114614,573.0700000009036,-0.06398939959662346 +114615,573.0750000009037,-0.0639873941327584 +114616,573.0800000009039,-0.06398538959328345 +114617,573.085000000904,-0.06398338597717232 +114618,573.0900000009041,-0.06398138328340014 +114619,573.0950000009042,-0.06397938151094353 +114620,573.1000000009043,-0.06397738065878059 +114621,573.1050000009044,-0.06397538072589086 +114622,573.1100000009045,-0.06397338171125534 +114623,573.1150000009046,-0.06397138361385649 +114624,573.1200000009047,-0.06396938643267823 +114625,573.1250000009048,-0.06396739016670593 +114626,573.1300000009049,-0.06396539481492639 +114627,573.135000000905,-0.06396340037632788 +114628,573.1400000009052,-0.06396140684990011 +114629,573.1450000009053,-0.06395941423463423 +114630,573.1500000009054,-0.06395742252952286 +114631,573.1550000009055,-0.06395543173356003 +114632,573.1600000009056,-0.06395344184574119 +114633,573.1650000009057,-0.06395145286506326 +114634,573.1700000009058,-0.06394946479052462 +114635,573.1750000009059,-0.063947477621125 +114636,573.180000000906,-0.06394549135586565 +114637,573.1850000009061,-0.06394350599374918 +114638,573.1900000009063,-0.06394152153377965 +114639,573.1950000009064,-0.06393953797496256 +114640,573.2000000009065,-0.06393755531630482 +114641,573.2050000009066,-0.06393557355681477 +114642,573.2100000009067,-0.06393359269550214 +114643,573.2150000009068,-0.06393161273137811 +114644,573.2200000009069,-0.06392963366345523 +114645,573.225000000907,-0.06392765549074753 +114646,573.2300000009071,-0.06392567821227038 +114647,573.2350000009072,-0.06392370182704062 +114648,573.2400000009073,-0.06392172633407645 +114649,573.2450000009075,-0.06391975173239749 +114650,573.2500000009076,-0.06391777802102477 +114651,573.2550000009077,-0.06391580519898073 +114652,573.2600000009078,-0.06391383326528917 +114653,573.2650000009079,-0.06391186221897534 +114654,573.270000000908,-0.06390989205906582 +114655,573.2750000009081,-0.06390792278458864 +114656,573.2800000009082,-0.06390595439457321 +114657,573.2850000009083,-0.0639039868880503 +114658,573.2900000009084,-0.0639020202640521 +114659,573.2950000009085,-0.06390005452161217 +114660,573.3000000009087,-0.06389808965976544 +114661,573.3050000009088,-0.06389612567754827 +114662,573.3100000009089,-0.06389416257399834 +114663,573.315000000909,-0.06389220034815475 +114664,573.3200000009091,-0.06389023899905794 +114665,573.3250000009092,-0.06388827852574974 +114666,573.3300000009093,-0.06388631892727338 +114667,573.3350000009094,-0.06388436020267342 +114668,573.3400000009095,-0.0638824023509958 +114669,573.3450000009096,-0.06388044537128784 +114670,573.3500000009097,-0.06387848926259819 +114671,573.3550000009099,-0.06387653402397692 +114672,573.36000000091,-0.06387457965447538 +114673,573.3650000009101,-0.06387262615314637 +114674,573.3700000009102,-0.06387067351904398 +114675,573.3750000009103,-0.06386872175122366 +114676,573.3800000009104,-0.06386677084874225 +114677,573.3850000009105,-0.0638648208106579 +114678,573.3900000009106,-0.06386287163603015 +114679,573.3950000009107,-0.06386092332391985 +114680,573.4000000009108,-0.0638589758733892 +114681,573.405000000911,-0.06385702928350176 +114682,573.410000000911,-0.06385508355332244 +114683,573.4150000009112,-0.06385313868191744 +114684,573.4200000009113,-0.06385119466835437 +114685,573.4250000009114,-0.06384925151170212 +114686,573.4300000009115,-0.06384730921103093 +114687,573.4350000009116,-0.06384536776541237 +114688,573.4400000009117,-0.06384342717391936 +114689,573.4450000009118,-0.0638414874356261 +114690,573.4500000009119,-0.06383954854960817 +114691,573.455000000912,-0.06383761051494244 +114692,573.4600000009121,-0.06383567333070714 +114693,573.4650000009123,-0.06383373699598177 +114694,573.4700000009124,-0.06383180150984719 +114695,573.4750000009125,-0.06382986687138555 +114696,573.4800000009126,-0.06382793307968034 +114697,573.4850000009127,-0.06382600013381634 +114698,573.4900000009128,-0.06382406803287966 +114699,573.4950000009129,-0.06382213677595769 +114700,573.500000000913,-0.06382020636213917 +114701,573.5050000009131,-0.06381827679051415 +114702,573.5100000009132,-0.06381634806017393 +114703,573.5150000009133,-0.06381442017021113 +114704,573.5200000009135,-0.06381249311971972 +114705,573.5250000009136,-0.0638105669077949 +114706,573.5300000009137,-0.0638086415335332 +114707,573.5350000009138,-0.06380671699603248 +114708,573.5400000009139,-0.06380479329439182 +114709,573.545000000914,-0.06380287042771164 +114710,573.5500000009141,-0.06380094839509365 +114711,573.5550000009142,-0.0637990271956408 +114712,573.5600000009143,-0.0637971068284574 +114713,573.5650000009144,-0.063795187292649 +114714,573.5700000009145,-0.06379326858732243 +114715,573.5750000009147,-0.06379135071158581 +114716,573.5800000009148,-0.06378943366454855 +114717,573.5850000009149,-0.0637875174453213 +114718,573.590000000915,-0.06378560205301602 +114719,573.5950000009151,-0.06378368748674595 +114720,573.6000000009152,-0.06378177374562556 +114721,573.6050000009153,-0.06377986082877063 +114722,573.6100000009154,-0.06377794873529818 +114723,573.6150000009155,-0.06377603746432654 +114724,573.6200000009156,-0.06377412701497524 +114725,573.6250000009157,-0.06377221738636511 +114726,573.6300000009159,-0.06377030857761826 +114727,573.635000000916,-0.063768400587858 +114728,573.6400000009161,-0.06376649341620895 +114729,573.6450000009162,-0.06376458706179697 +114730,573.6500000009163,-0.06376268152374918 +114731,573.6550000009164,-0.06376077680119392 +114732,573.6600000009165,-0.06375887289326083 +114733,573.6650000009166,-0.06375696979908076 +114734,573.6700000009167,-0.0637550675177858 +114735,573.6750000009168,-0.06375316604850934 +114736,573.680000000917,-0.06375126539038593 +114737,573.6850000009171,-0.06374936554255146 +114738,573.6900000009172,-0.06374746650414298 +114739,573.6950000009173,-0.06374556827429881 +114740,573.7000000009174,-0.06374367085215848 +114741,573.7050000009175,-0.06374177423686282 +114742,573.7100000009176,-0.06373987842755383 +114743,573.7150000009177,-0.06373798342337474 +114744,573.7200000009178,-0.06373608922347003 +114745,573.7250000009179,-0.06373419582698543 +114746,573.730000000918,-0.06373230323306786 +114747,573.7350000009181,-0.06373041144086546 +114748,573.7400000009183,-0.06372852044952762 +114749,573.7450000009184,-0.06372663025820494 +114750,573.7500000009185,-0.06372474086604923 +114751,573.7550000009186,-0.06372285227221353 +114752,573.7600000009187,-0.06372096447585207 +114753,573.7650000009188,-0.06371907747612034 +114754,573.7700000009189,-0.06371719127217497 +114755,573.775000000919,-0.06371530586317388 +114756,573.7800000009191,-0.06371342124827616 +114757,573.7850000009192,-0.06371153742664208 +114758,573.7900000009193,-0.06370965439743317 +114759,573.7950000009195,-0.06370777215981212 +114760,573.8000000009196,-0.06370589071294284 +114761,573.8050000009197,-0.06370401005599045 +114762,573.8100000009198,-0.06370213018812125 +114763,573.8150000009199,-0.06370025110850273 +114764,573.82000000092,-0.06369837281630357 +114765,573.8250000009201,-0.06369649531069371 +114766,573.8300000009202,-0.06369461859084419 +114767,573.8350000009203,-0.06369274265592728 +114768,573.8400000009204,-0.06369086750511645 +114769,573.8450000009205,-0.06368899313758634 +114770,573.8500000009207,-0.06368711955251277 +114771,573.8550000009208,-0.06368524674907276 +114772,573.8600000009209,-0.0636833747264445 +114773,573.865000000921,-0.06368150348380734 +114774,573.8700000009211,-0.06367963302034187 +114775,573.8750000009212,-0.06367776333522979 +114776,573.8800000009213,-0.06367589442765399 +114777,573.8850000009214,-0.06367402629679857 +114778,573.8900000009215,-0.06367215894184872 +114779,573.8950000009216,-0.0636702923619909 +114780,573.9000000009218,-0.06366842655641268 +114781,573.9050000009219,-0.0636665615243028 +114782,573.910000000922,-0.06366469726485117 +114783,573.9150000009221,-0.06366283377724886 +114784,573.9200000009222,-0.06366097106068812 +114785,573.9250000009223,-0.06365910911436232 +114786,573.9300000009224,-0.063657247937466 +114787,573.9350000009225,-0.0636553875291949 +114788,573.9400000009226,-0.06365352788874586 +114789,573.9450000009227,-0.0636516690153169 +114790,573.9500000009228,-0.06364981090810717 +114791,573.955000000923,-0.063647953566317 +114792,573.9600000009231,-0.06364609698914785 +114793,573.9650000009232,-0.06364424117580232 +114794,573.9700000009233,-0.06364238612548419 +114795,573.9750000009234,-0.0636405318373983 +114796,573.9800000009235,-0.06363867831075073 +114797,573.9850000009236,-0.06363682554474864 +114798,573.9900000009237,-0.06363497353860037 +114799,573.9950000009238,-0.06363312229151533 +114800,574.0000000009239,-0.06363127180270411 +114801,574.005000000924,-0.06362942207137848 +114802,574.0100000009242,-0.06362757309675122 +114803,574.0150000009243,-0.06362572487803635 +114804,574.0200000009244,-0.06362387741444897 +114805,574.0250000009245,-0.0636220307052053 +114806,574.0300000009246,-0.06362018474952272 +114807,574.0350000009247,-0.06361833954661969 +114808,574.0400000009248,-0.06361649509571583 +114809,574.0450000009249,-0.06361465139603188 +114810,574.050000000925,-0.06361280844678964 +114811,574.0550000009251,-0.0636109662472121 +114812,574.0600000009252,-0.06360912479652334 +114813,574.0650000009254,-0.06360728409394853 +114814,574.0700000009255,-0.06360544413871397 +114815,574.0750000009256,-0.06360360493004709 +114816,574.0800000009257,-0.06360176646717638 +114817,574.0850000009258,-0.06359992874933151 +114818,574.0900000009259,-0.06359809177574319 +114819,574.095000000926,-0.06359625554564326 +114820,574.1000000009261,-0.06359442005826466 +114821,574.1050000009262,-0.06359258531284144 +114822,574.1100000009263,-0.06359075130860872 +114823,574.1150000009264,-0.06358891804480275 +114824,574.1200000009266,-0.06358708552066088 +114825,574.1250000009267,-0.06358525373542152 +114826,574.1300000009268,-0.0635834226883242 +114827,574.1350000009269,-0.06358159237860954 +114828,574.140000000927,-0.06357976280551923 +114829,574.1450000009271,-0.0635779339682961 +114830,574.1500000009272,-0.06357610586618398 +114831,574.1550000009273,-0.06357427849842787 +114832,574.1600000009274,-0.0635724518642738 +114833,574.1650000009275,-0.06357062596296889 +114834,574.1700000009276,-0.06356880079376138 +114835,574.1750000009278,-0.06356697635590056 +114836,574.1800000009279,-0.06356515264863677 +114837,574.185000000928,-0.06356332967122147 +114838,574.1900000009281,-0.06356150742290718 +114839,574.1950000009282,-0.0635596859029475 +114840,574.2000000009283,-0.06355786511059708 +114841,574.2050000009284,-0.06355604504511166 +114842,574.2100000009285,-0.06355422570574804 +114843,574.2150000009286,-0.06355240709176409 +114844,574.2200000009287,-0.06355058920241873 +114845,574.2250000009288,-0.06354877203697194 +114846,574.230000000929,-0.06354695559468482 +114847,574.2350000009291,-0.06354513987481947 +114848,574.2400000009292,-0.06354332487663907 +114849,574.2450000009293,-0.06354151059940784 +114850,574.2500000009294,-0.0635396970423911 +114851,574.2550000009295,-0.06353788420485518 +114852,574.2600000009296,-0.06353607208606749 +114853,574.2650000009297,-0.06353426068529644 +114854,574.2700000009298,-0.06353245000181158 +114855,574.2750000009299,-0.06353064003488344 +114856,574.28000000093,-0.06352883078378362 +114857,574.2850000009302,-0.06352702224778474 +114858,574.2900000009303,-0.0635252144261605 +114859,574.2950000009304,-0.06352340731818563 +114860,574.3000000009305,-0.0635216009231359 +114861,574.3050000009306,-0.0635197952402881 +114862,574.3100000009307,-0.06351799026892009 +114863,574.3150000009308,-0.06351618600831074 +114864,574.3200000009309,-0.06351438245773998 +114865,574.325000000931,-0.06351257961648875 +114866,574.3300000009311,-0.06351077748383904 +114867,574.3350000009312,-0.06350897605907385 +114868,574.3400000009314,-0.06350717534147722 +114869,574.3450000009315,-0.06350537533033423 +114870,574.3500000009316,-0.06350357602493097 +114871,574.3550000009317,-0.06350177742455455 +114872,574.3600000009318,-0.06349997952849311 +114873,574.3650000009319,-0.06349818233603582 +114874,574.370000000932,-0.06349638584647288 +114875,574.3750000009321,-0.06349459005909545 +114876,574.3800000009322,-0.06349279497319579 +114877,574.3850000009323,-0.0634910005880671 +114878,574.3900000009324,-0.06348920690300364 +114879,574.3950000009326,-0.06348741391730067 +114880,574.4000000009327,-0.06348562163025445 +114881,574.4050000009328,-0.06348383004116229 +114882,574.4100000009329,-0.06348203914932246 +114883,574.415000000933,-0.06348024895403427 +114884,574.4200000009331,-0.063478459454598 +114885,574.4250000009332,-0.06347667065031495 +114886,574.4300000009333,-0.06347488254048747 +114887,574.4350000009334,-0.06347309512441883 +114888,574.4400000009335,-0.06347130840141335 +114889,574.4450000009336,-0.06346952237077633 +114890,574.4500000009338,-0.06346773703181409 +114891,574.4550000009339,-0.0634659523838339 +114892,574.460000000934,-0.06346416842614407 +114893,574.4650000009341,-0.06346238515805387 +114894,574.4700000009342,-0.0634606025788736 +114895,574.4750000009343,-0.06345882068791452 +114896,574.4800000009344,-0.06345703948448884 +114897,574.4850000009345,-0.06345525896790985 +114898,574.4900000009346,-0.06345347913749175 +114899,574.4950000009347,-0.06345169999254974 +114900,574.5000000009348,-0.06344992153240002 +114901,574.505000000935,-0.06344814375635975 +114902,574.5100000009351,-0.0634463666637471 +114903,574.5150000009352,-0.06344459025388119 +114904,574.5200000009353,-0.06344281452608212 +114905,574.5250000009354,-0.06344103947967096 +114906,574.5300000009355,-0.06343926511396979 +114907,574.5350000009356,-0.0634374914283016 +114908,574.5400000009357,-0.0634357184219904 +114909,574.5450000009358,-0.06343394609436116 +114910,574.5500000009359,-0.06343217444473982 +114911,574.555000000936,-0.06343040347245325 +114912,574.5600000009362,-0.06342863317682935 +114913,574.5650000009363,-0.06342686355719694 +114914,574.5700000009364,-0.0634250946128858 +114915,574.5750000009365,-0.0634233263432267 +114916,574.5800000009366,-0.06342155874755132 +114917,574.5850000009367,-0.06341979182519236 +114918,574.5900000009368,-0.06341802557548344 +114919,574.5950000009369,-0.06341625999775914 +114920,574.600000000937,-0.06341449509135501 +114921,574.6050000009371,-0.06341273085560752 +114922,574.6100000009372,-0.06341096728985413 +114923,574.6150000009374,-0.06340920439343321 +114924,574.6200000009375,-0.06340744216568411 +114925,574.6250000009376,-0.06340568060594713 +114926,574.6300000009377,-0.06340391971356348 +114927,574.6350000009378,-0.06340215948787532 +114928,574.6400000009379,-0.06340039992822583 +114929,574.645000000938,-0.06339864103395901 +114930,574.6500000009381,-0.06339688280441991 +114931,574.6550000009382,-0.06339512523895444 +114932,574.6600000009383,-0.06339336833690948 +114933,574.6650000009384,-0.06339161209763285 +114934,574.6700000009386,-0.06338985652047328 +114935,574.6750000009387,-0.0633881016047805 +114936,574.6800000009388,-0.06338634734990509 +114937,574.6850000009389,-0.06338459375519859 +114938,574.690000000939,-0.06338284082001347 +114939,574.6950000009391,-0.06338108854370317 +114940,574.7000000009392,-0.06337933692562199 +114941,574.7050000009393,-0.06337758596512517 +114942,574.7100000009394,-0.06337583566156894 +114943,574.7150000009395,-0.06337408601431037 +114944,574.7200000009396,-0.06337233702270748 +114945,574.7250000009398,-0.0633705886861192 +114946,574.7300000009399,-0.0633688410039054 +114947,574.73500000094,-0.06336709397542686 +114948,574.7400000009401,-0.0633653476000453 +114949,574.7450000009402,-0.06336360187712328 +114950,574.7500000009403,-0.06336185680602437 +114951,574.7550000009404,-0.06336011238611296 +114952,574.7600000009405,-0.06335836861675442 +114953,574.7650000009406,-0.063356625497315 +114954,574.7700000009407,-0.06335488302716184 +114955,574.7750000009408,-0.06335314120566306 +114956,574.780000000941,-0.06335140003218757 +114957,574.7850000009411,-0.06334965950610529 +114958,574.7900000009412,-0.06334791962678697 +114959,574.7950000009413,-0.06334618039360433 +114960,574.8000000009414,-0.06334444180592992 +114961,574.8050000009415,-0.06334270386313721 +114962,574.8100000009416,-0.0633409665646006 +114963,574.8150000009417,-0.06333922990969536 +114964,574.8200000009418,-0.06333749389779766 +114965,574.8250000009419,-0.06333575852828455 +114966,574.830000000942,-0.06333402380053399 +114967,574.8350000009422,-0.06333228971392481 +114968,574.8400000009423,-0.06333055626783676 +114969,574.8450000009424,-0.06332882346165046 +114970,574.8500000009425,-0.06332709129474741 +114971,574.8550000009426,-0.06332535976651 +114972,574.8600000009427,-0.06332362887632154 +114973,574.8650000009428,-0.06332189862356616 +114974,574.8700000009429,-0.06332016900762891 +114975,574.875000000943,-0.0633184400278957 +114976,574.8800000009431,-0.06331671168375337 +114977,574.8850000009433,-0.06331498397458957 +114978,574.8900000009434,-0.06331325689979286 +114979,574.8950000009435,-0.06331153045875268 +114980,574.9000000009436,-0.06330980465085934 +114981,574.9050000009437,-0.063308079475504 +114982,574.9100000009438,-0.06330635493207873 +114983,574.9150000009439,-0.06330463101997644 +114984,574.920000000944,-0.06330290773859093 +114985,574.9250000009441,-0.06330118508731686 +114986,574.9300000009442,-0.06329946306554972 +114987,574.9350000009443,-0.06329774167268593 +114988,574.9400000009445,-0.06329602090812274 +114989,574.9450000009446,-0.06329430077125826 +114990,574.9500000009447,-0.06329258126149147 +114991,574.9550000009448,-0.06329086237822219 +114992,574.9600000009449,-0.06328914412085114 +114993,574.965000000945,-0.06328742648877984 +114994,574.9700000009451,-0.06328570948141074 +114995,574.9750000009452,-0.06328399309814707 +114996,574.9800000009453,-0.06328227733839296 +114997,574.9850000009454,-0.06328056220155338 +114998,574.9900000009455,-0.06327884768703416 +114999,574.9950000009457,-0.06327713379424195 +115000,575.0000000009458,-0.06327542052258428 +115001,575.0050000009459,-0.06327370787146953 +115002,575.010000000946,-0.0632719958403069 +115003,575.0150000009461,-0.06327028442850646 +115004,575.0200000009462,-0.06326857363547908 +115005,575.0250000009463,-0.06326686346063656 +115006,575.0300000009464,-0.06326515390339144 +115007,575.0350000009465,-0.06326344496315715 +115008,575.0400000009466,-0.06326173663934799 +115009,575.0450000009467,-0.06326002893137903 +115010,575.0500000009469,-0.06325832183866621 +115011,575.055000000947,-0.06325661536062631 +115012,575.0600000009471,-0.06325490949667695 +115013,575.0650000009472,-0.06325320424623655 +115014,575.0700000009473,-0.0632514996087244 +115015,575.0750000009474,-0.0632497955835606 +115016,575.0800000009475,-0.06324809217016607 +115017,575.0850000009476,-0.06324638936796256 +115018,575.0900000009477,-0.06324468717637269 +115019,575.0950000009478,-0.06324298559481986 +115020,575.100000000948,-0.0632412846227283 +115021,575.105000000948,-0.06323958425952304 +115022,575.1100000009482,-0.06323788450463 +115023,575.1150000009483,-0.06323618535747587 +115024,575.1200000009484,-0.06323448681748815 +115025,575.1250000009485,-0.0632327888840952 +115026,575.1300000009486,-0.06323109155672617 +115027,575.1350000009487,-0.06322939483481103 +115028,575.1400000009488,-0.06322769871778057 +115029,575.1450000009489,-0.06322600320506638 +115030,575.150000000949,-0.06322430829610087 +115031,575.1550000009491,-0.06322261399031727 +115032,575.1600000009493,-0.0632209202871496 +115033,575.1650000009494,-0.06321922718603269 +115034,575.1700000009495,-0.06321753468640222 +115035,575.1750000009496,-0.06321584278769461 +115036,575.1800000009497,-0.06321415148934714 +115037,575.1850000009498,-0.06321246079079788 +115038,575.1900000009499,-0.06321077069148566 +115039,575.19500000095,-0.06320908119085017 +115040,575.2000000009501,-0.06320739228833187 +115041,575.2050000009502,-0.06320570398337204 +115042,575.2100000009503,-0.06320401627541271 +115043,575.2150000009505,-0.06320232916389676 +115044,575.2200000009506,-0.06320064264826784 +115045,575.2250000009507,-0.0631989567279704 +115046,575.2300000009508,-0.06319727140244971 +115047,575.2350000009509,-0.06319558667115177 +115048,575.240000000951,-0.06319390253352342 +115049,575.2450000009511,-0.06319221898901226 +115050,575.2500000009512,-0.0631905360370667 +115051,575.2550000009513,-0.06318885367713595 +115052,575.2600000009514,-0.06318717190866997 +115053,575.2650000009515,-0.06318549073111954 +115054,575.2700000009517,-0.06318381014393618 +115055,575.2750000009518,-0.06318213014657222 +115056,575.2800000009519,-0.0631804507384808 +115057,575.285000000952,-0.06317877191911579 +115058,575.2900000009521,-0.06317709368793185 +115059,575.2950000009522,-0.06317541604438447 +115060,575.3000000009523,-0.06317373898792983 +115061,575.3050000009524,-0.06317206251802494 +115062,575.3100000009525,-0.06317038663412759 +115063,575.3150000009526,-0.06316871133569633 +115064,575.3200000009527,-0.06316703662219048 +115065,575.3250000009529,-0.06316536249307012 +115066,575.330000000953,-0.06316368894779613 +115067,575.3350000009531,-0.06316201598583014 +115068,575.3400000009532,-0.06316034360663454 +115069,575.3450000009533,-0.0631586718096725 +115070,575.3500000009534,-0.06315700059440794 +115071,575.3550000009535,-0.0631553299603056 +115072,575.3600000009536,-0.06315365990683089 +115073,575.3650000009537,-0.06315199043345006 +115074,575.3700000009538,-0.06315032153963009 +115075,575.375000000954,-0.06314865322483872 +115076,575.380000000954,-0.06314698548854444 +115077,575.3850000009542,-0.06314531833021654 +115078,575.3900000009543,-0.063143651749325 +115079,575.3950000009544,-0.06314198574534062 +115080,575.4000000009545,-0.06314032031773492 +115081,575.4050000009546,-0.06313865546598019 +115082,575.4100000009547,-0.06313699118954942 +115083,575.4150000009548,-0.06313532748791643 +115084,575.4200000009549,-0.06313366436055574 +115085,575.425000000955,-0.06313200180694264 +115086,575.4300000009551,-0.06313033982655315 +115087,575.4350000009553,-0.06312867841886408 +115088,575.4400000009554,-0.0631270175833529 +115089,575.4450000009555,-0.0631253573194979 +115090,575.4500000009556,-0.06312369762677808 +115091,575.4550000009557,-0.0631220385046732 +115092,575.4600000009558,-0.06312037995266374 +115093,575.4650000009559,-0.06311872197023095 +115094,575.470000000956,-0.0631170645568568 +115095,575.4750000009561,-0.06311540771202397 +115096,575.4800000009562,-0.06311375143521593 +115097,575.4850000009563,-0.06311209572591686 +115098,575.4900000009565,-0.06311044058361168 +115099,575.4950000009566,-0.06310878600778602 +115100,575.5000000009567,-0.0631071319979263 +115101,575.5050000009568,-0.06310547855351957 +115102,575.5100000009569,-0.06310382567405373 +115103,575.515000000957,-0.06310217335901731 +115104,575.5200000009571,-0.06310052160789965 +115105,575.5250000009572,-0.06309887042019076 +115106,575.5300000009573,-0.0630972197953814 +115107,575.5350000009574,-0.06309556973296301 +115108,575.5400000009575,-0.06309392023242784 +115109,575.5450000009577,-0.06309227129326878 +115110,575.5500000009578,-0.06309062291497951 +115111,575.5550000009579,-0.06308897509705436 +115112,575.560000000958,-0.06308732783898843 +115113,575.5650000009581,-0.06308568114027753 +115114,575.5700000009582,-0.06308403500041819 +115115,575.5750000009583,-0.0630823894189076 +115116,575.5800000009584,-0.06308074439524379 +115117,575.5850000009585,-0.06307909992892537 +115118,575.5900000009586,-0.06307745601945172 +115119,575.5950000009587,-0.06307581266632295 +115120,575.6000000009589,-0.06307416986903987 +115121,575.605000000959,-0.06307252762710397 +115122,575.6100000009591,-0.06307088594001747 +115123,575.6150000009592,-0.06306924480728335 +115124,575.6200000009593,-0.06306760422840517 +115125,575.6250000009594,-0.06306596420288733 +115126,575.6300000009595,-0.06306432473023486 +115127,575.6350000009596,-0.06306268580995351 +115128,575.6400000009597,-0.06306104744154974 +115129,575.6450000009598,-0.06305940962453069 +115130,575.65000000096,-0.06305777235840422 +115131,575.6550000009601,-0.06305613564267888 +115132,575.6600000009602,-0.06305449947686394 +115133,575.6650000009603,-0.06305286386046934 +115134,575.6700000009604,-0.0630512287930057 +115135,575.6750000009605,-0.06304959427398442 +115136,575.6800000009606,-0.06304796030291748 +115137,575.6850000009607,-0.06304632687931766 +115138,575.6900000009608,-0.06304469400269835 +115139,575.6950000009609,-0.06304306167257366 +115140,575.700000000961,-0.0630414298884584 +115141,575.7050000009611,-0.06303979864986806 +115142,575.7100000009613,-0.06303816795631884 +115143,575.7150000009614,-0.06303653780732758 +115144,575.7200000009615,-0.06303490820241184 +115145,575.7250000009616,-0.06303327914108987 +115146,575.7300000009617,-0.0630316506228806 +115147,575.7350000009618,-0.06303002264730363 +115148,575.7400000009619,-0.06302839521387922 +115149,575.745000000962,-0.06302676832212836 +115150,575.7500000009621,-0.0630251419715727 +115151,575.7550000009622,-0.06302351616173457 +115152,575.7600000009623,-0.06302189089213699 +115153,575.7650000009625,-0.0630202661623036 +115154,575.7700000009626,-0.0630186419717588 +115155,575.7750000009627,-0.06301701832002761 +115156,575.7800000009628,-0.06301539520663572 +115157,575.7850000009629,-0.06301377263110954 +115158,575.790000000963,-0.0630121505929761 +115159,575.7950000009631,-0.06301052909176313 +115160,575.8000000009632,-0.06300890812699904 +115161,575.8050000009633,-0.06300728769821287 +115162,575.8100000009634,-0.06300566780493434 +115163,575.8150000009636,-0.0630040484466939 +115164,575.8200000009637,-0.06300242962302256 +115165,575.8250000009638,-0.06300081133345208 +115166,575.8300000009639,-0.06299919357751484 +115167,575.835000000964,-0.06299757635474389 +115168,575.8400000009641,-0.06299595966467296 +115169,575.8450000009642,-0.06299434350683641 +115170,575.8500000009643,-0.0629927278807693 +115171,575.8550000009644,-0.06299111278600733 +115172,575.8600000009645,-0.06298949822208685 +115173,575.8650000009646,-0.06298788418854487 +115174,575.8700000009648,-0.06298627068491905 +115175,575.8750000009649,-0.06298465771074772 +115176,575.880000000965,-0.06298304526556987 +115177,575.8850000009651,-0.06298143334892513 +115178,575.8900000009652,-0.06297982196035376 +115179,575.8950000009653,-0.06297821109939672 +115180,575.9000000009654,-0.0629766007655956 +115181,575.9050000009655,-0.06297499095849261 +115182,575.9100000009656,-0.06297338167763065 +115183,575.9150000009657,-0.06297177292255325 +115184,575.9200000009658,-0.06297016469280459 +115185,575.925000000966,-0.0629685569879295 +115186,575.9300000009661,-0.06296694980747342 +115187,575.9350000009662,-0.06296534315098248 +115188,575.9400000009663,-0.06296373701800342 +115189,575.9450000009664,-0.06296213140808367 +115190,575.9500000009665,-0.06296052632077122 +115191,575.9550000009666,-0.06295892175561478 +115192,575.9600000009667,-0.06295731771216366 +115193,575.9650000009668,-0.06295571418996779 +115194,575.9700000009669,-0.06295411118857779 +115195,575.975000000967,-0.06295250870754485 +115196,575.9800000009672,-0.06295090674642087 +115197,575.9850000009673,-0.06294930530475833 +115198,575.9900000009674,-0.06294770438211035 +115199,575.9950000009675,-0.06294610397803067 +115200,576.0000000009676,-0.06294450409207374 +115201,576.0050000009677,-0.06294290472379452 +115202,576.0100000009678,-0.06294130587274868 +115203,576.0150000009679,-0.06293970753849251 +115204,576.020000000968,-0.06293810972058292 +115205,576.0250000009681,-0.06293651241857742 +115206,576.0300000009682,-0.0629349156320342 +115207,576.0350000009684,-0.062933319360512 +115208,576.0400000009685,-0.06293172360357027 +115209,576.0450000009686,-0.06293012836076903 +115210,576.0500000009687,-0.06292853363166892 +115211,576.0550000009688,-0.0629269394158312 +115212,576.0600000009689,-0.06292534571281778 +115213,576.065000000969,-0.06292375252219119 +115214,576.0700000009691,-0.06292215984351454 +115215,576.0750000009692,-0.06292056767635157 +115216,576.0800000009693,-0.06291897602026665 +115217,576.0850000009694,-0.06291738487482477 +115218,576.0900000009696,-0.06291579423959152 +115219,576.0950000009697,-0.06291420411413311 +115220,576.1000000009698,-0.06291261449801634 +115221,576.1050000009699,-0.06291102539080866 +115222,576.11000000097,-0.06290943679207811 +115223,576.1150000009701,-0.06290784870139333 +115224,576.1200000009702,-0.0629062611183236 +115225,576.1250000009703,-0.06290467404243878 +115226,576.1300000009704,-0.06290308747330936 +115227,576.1350000009705,-0.0629015014105064 +115228,576.1400000009706,-0.06289991585360159 +115229,576.1450000009708,-0.06289833080216725 +115230,576.1500000009709,-0.06289674625577625 +115231,576.155000000971,-0.0628951622140021 +115232,576.1600000009711,-0.0628935786764189 +115233,576.1650000009712,-0.06289199564260134 +115234,576.1700000009713,-0.06289041311212475 +115235,576.1750000009714,-0.06288883108456501 +115236,576.1800000009715,-0.06288724955949863 +115237,576.1850000009716,-0.0628856685365027 +115238,576.1900000009717,-0.06288408801515491 +115239,576.1950000009718,-0.06288250799503355 +115240,576.200000000972,-0.06288092847571751 +115241,576.2050000009721,-0.06287934945678628 +115242,576.2100000009722,-0.06287777093781989 +115243,576.2150000009723,-0.06287619291839903 +115244,576.2200000009724,-0.06287461539810495 +115245,576.2250000009725,-0.0628730383765195 +115246,576.2300000009726,-0.0628714618532251 +115247,576.2350000009727,-0.06286988582780478 +115248,576.2400000009728,-0.06286831029984215 +115249,576.2450000009729,-0.06286673526892139 +115250,576.250000000973,-0.06286516073462729 +115251,576.2550000009732,-0.06286358669654522 +115252,576.2600000009733,-0.06286201315426114 +115253,576.2650000009734,-0.06286044010736155 +115254,576.2700000009735,-0.0628588675554336 +115255,576.2750000009736,-0.06285729549806499 +115256,576.2800000009737,-0.06285572393484397 +115257,576.2850000009738,-0.0628541528653594 +115258,576.2900000009739,-0.06285258228920075 +115259,576.295000000974,-0.062851012205958 +115260,576.3000000009741,-0.06284944261522177 +115261,576.3050000009742,-0.06284787351658319 +115262,576.3100000009744,-0.06284630490963403 +115263,576.3150000009745,-0.0628447367939666 +115264,576.3200000009746,-0.0628431691691738 +115265,576.3250000009747,-0.06284160203484909 +115266,576.3300000009748,-0.0628400353905865 +115267,576.3350000009749,-0.06283846923598065 +115268,576.340000000975,-0.06283690357062668 +115269,576.3450000009751,-0.0628353383941204 +115270,576.3500000009752,-0.06283377370605808 +115271,576.3550000009753,-0.06283220950603662 +115272,576.3600000009754,-0.06283064579365347 +115273,576.3650000009756,-0.06282908256850664 +115274,576.3700000009757,-0.06282751983019472 +115275,576.3750000009758,-0.06282595757831684 +115276,576.3800000009759,-0.06282439581247273 +115277,576.385000000976,-0.06282283453226264 +115278,576.3900000009761,-0.06282127373728742 +115279,576.3950000009762,-0.06281971342714847 +115280,576.4000000009763,-0.06281815360144774 +115281,576.4050000009764,-0.06281659425978772 +115282,576.4100000009765,-0.06281503540177151 +115283,576.4150000009766,-0.06281347702700274 +115284,576.4200000009768,-0.06281191913508558 +115285,576.4250000009769,-0.06281036172562479 +115286,576.430000000977,-0.06280880479822565 +115287,576.4350000009771,-0.06280724835249403 +115288,576.4400000009772,-0.06280569238803634 +115289,576.4450000009773,-0.06280413690445952 +115290,576.4500000009774,-0.06280258190137107 +115291,576.4550000009775,-0.06280102737837907 +115292,576.4600000009776,-0.06279947333509214 +115293,576.4650000009777,-0.06279791977111944 +115294,576.4700000009778,-0.06279636668607065 +115295,576.475000000978,-0.06279481407955606 +115296,576.4800000009781,-0.06279326195118645 +115297,576.4850000009782,-0.06279171030057319 +115298,576.4900000009783,-0.06279015912732816 +115299,576.4950000009784,-0.06278860843106379 +115300,576.5000000009785,-0.06278705821139309 +115301,576.5050000009786,-0.06278550846792956 +115302,576.5100000009787,-0.06278395920028729 +115303,576.5150000009788,-0.06278241040808087 +115304,576.5200000009789,-0.06278086209092544 +115305,576.525000000979,-0.06277931424843672 +115306,576.5300000009792,-0.06277776688023091 +115307,576.5350000009793,-0.0627762199859248 +115308,576.5400000009794,-0.06277467356513568 +115309,576.5450000009795,-0.06277312761748138 +115310,576.5500000009796,-0.06277158214258029 +115311,576.5550000009797,-0.0627700371400513 +115312,576.5600000009798,-0.06276849260951387 +115313,576.5650000009799,-0.06276694855058797 +115314,576.57000000098,-0.06276540496289411 +115315,576.5750000009801,-0.06276386184605331 +115316,576.5800000009802,-0.06276231919968717 +115317,576.5850000009804,-0.06276077702341777 +115318,576.5900000009805,-0.06275923531686776 +115319,576.5950000009806,-0.06275769407966027 +115320,576.6000000009807,-0.062756153311419 +115321,576.6050000009808,-0.06275461301176816 +115322,576.6100000009809,-0.06275307318033249 +115323,576.615000000981,-0.06275153381673725 +115324,576.6200000009811,-0.06274999492060823 +115325,576.6250000009812,-0.06274845649157175 +115326,576.6300000009813,-0.06274691852925461 +115327,576.6350000009814,-0.06274538103328421 +115328,576.6400000009816,-0.06274384400328839 +115329,576.6450000009817,-0.06274230743889557 +115330,576.6500000009818,-0.06274077133973467 +115331,576.6550000009819,-0.0627392357054351 +115332,576.660000000982,-0.06273770053562684 +115333,576.6650000009821,-0.06273616582994035 +115334,576.6700000009822,-0.06273463158800661 +115335,576.6750000009823,-0.06273309780945714 +115336,576.6800000009824,-0.06273156449392395 +115337,576.6850000009825,-0.06273003164103956 +115338,576.6900000009826,-0.06272849925043704 +115339,576.6950000009828,-0.06272696732174994 +115340,576.7000000009829,-0.06272543585461234 +115341,576.705000000983,-0.06272390484865879 +115342,576.7100000009831,-0.06272237430352443 +115343,576.7150000009832,-0.06272084421884482 +115344,576.7200000009833,-0.06271931459425609 +115345,576.7250000009834,-0.06271778542939487 +115346,576.7300000009835,-0.06271625672389826 +115347,576.7350000009836,-0.0627147284774039 +115348,576.7400000009837,-0.06271320068954996 +115349,576.7450000009839,-0.06271167335997505 +115350,576.750000000984,-0.06271014648831831 +115351,576.7550000009841,-0.06270862007421943 +115352,576.7600000009842,-0.06270709411731853 +115353,576.7650000009843,-0.06270556861725629 +115354,576.7700000009844,-0.06270404357367386 +115355,576.7750000009845,-0.06270251898621289 +115356,576.7800000009846,-0.06270099485451552 +115357,576.7850000009847,-0.06269947117822446 +115358,576.7900000009848,-0.06269794795698283 +115359,576.7950000009849,-0.06269642519043428 +115360,576.800000000985,-0.06269490287822298 +115361,576.8050000009852,-0.06269338101999357 +115362,576.8100000009853,-0.06269185961539119 +115363,576.8150000009854,-0.06269033866406144 +115364,576.8200000009855,-0.0626888181656505 +115365,576.8250000009856,-0.06268729811980497 +115366,576.8300000009857,-0.06268577852617198 +115367,576.8350000009858,-0.0626842593843991 +115368,576.8400000009859,-0.06268274069413446 +115369,576.845000000986,-0.06268122245502664 +115370,576.8500000009861,-0.0626797046667247 +115371,576.8550000009863,-0.06267818732887824 +115372,576.8600000009864,-0.06267667044113728 +115373,576.8650000009865,-0.06267515400315238 +115374,576.8700000009866,-0.06267363801457454 +115375,576.8750000009867,-0.06267212247505531 +115376,576.8800000009868,-0.06267060738424665 +115377,576.8850000009869,-0.06266909274180106 +115378,576.890000000987,-0.06266757854737152 +115379,576.8950000009871,-0.06266606480061146 +115380,576.9000000009872,-0.0626645515011748 +115381,576.9050000009873,-0.06266303864871597 +115382,576.9100000009875,-0.06266152624288986 +115383,576.9150000009876,-0.06266001428335181 +115384,576.9200000009877,-0.06265850276975772 +115385,576.9250000009878,-0.06265699170176389 +115386,576.9300000009879,-0.06265548107902713 +115387,576.935000000988,-0.06265397090120473 +115388,576.9400000009881,-0.06265246116795445 +115389,576.9450000009882,-0.06265095187893452 +115390,576.9500000009883,-0.06264944303380365 +115391,576.9550000009884,-0.06264793463222104 +115392,576.9600000009885,-0.06264642667384632 +115393,576.9650000009887,-0.06264491915833965 +115394,576.9700000009888,-0.06264341208536162 +115395,576.9750000009889,-0.06264190545457331 +115396,576.980000000989,-0.06264039926563625 +115397,576.9850000009891,-0.06263889351821247 +115398,576.9900000009892,-0.06263738821196445 +115399,576.9950000009893,-0.06263588334655514 +115400,577.0000000009894,-0.06263437892164796 +115401,577.0050000009895,-0.0626328749369068 +115402,577.0100000009896,-0.062631371391996 +115403,577.0150000009897,-0.06262986828658039 +115404,577.0200000009899,-0.06262836562032527 +115405,577.02500000099,-0.06262686339289637 +115406,577.0300000009901,-0.0626253616039599 +115407,577.0350000009902,-0.06262386025318255 +115408,577.0400000009903,-0.06262235934023143 +115409,577.0450000009904,-0.06262085886477417 +115410,577.0500000009905,-0.0626193588264788 +115411,577.0550000009906,-0.06261785922501387 +115412,577.0600000009907,-0.06261636006004832 +115413,577.0650000009908,-0.06261486133125163 +115414,577.070000000991,-0.06261336303829367 +115415,577.075000000991,-0.0626118651808448 +115416,577.0800000009912,-0.06261036775857584 +115417,577.0850000009913,-0.06260887077115802 +115418,577.0900000009914,-0.06260737421826311 +115419,577.0950000009915,-0.06260587809956324 +115420,577.1000000009916,-0.06260438241473107 +115421,577.1050000009917,-0.06260288716343965 +115422,577.1100000009918,-0.06260139234536254 +115423,577.1150000009919,-0.06259989796017372 +115424,577.120000000992,-0.06259840400754763 +115425,577.1250000009921,-0.06259691048715917 +115426,577.1300000009923,-0.06259541739868366 +115427,577.1350000009924,-0.06259392474179688 +115428,577.1400000009925,-0.06259243251617509 +115429,577.1450000009926,-0.06259094072149496 +115430,577.1500000009927,-0.06258944935743363 +115431,577.1550000009928,-0.06258795842366865 +115432,577.1600000009929,-0.06258646791987807 +115433,577.165000000993,-0.06258497784574035 +115434,577.1700000009931,-0.0625834882009344 +115435,577.1750000009932,-0.06258199898513958 +115436,577.1800000009933,-0.06258051019803568 +115437,577.1850000009935,-0.06257902183930296 +115438,577.1900000009936,-0.06257753390862207 +115439,577.1950000009937,-0.06257604640567416 +115440,577.2000000009938,-0.06257455933014079 +115441,577.2050000009939,-0.06257307268170396 +115442,577.210000000994,-0.06257158646004612 +115443,577.2150000009941,-0.06257010066485015 +115444,577.2200000009942,-0.06256861529579937 +115445,577.2250000009943,-0.06256713035257752 +115446,577.2300000009944,-0.06256564583486882 +115447,577.2350000009945,-0.06256416174235788 +115448,577.2400000009947,-0.06256267807472977 +115449,577.2450000009948,-0.06256119483167 +115450,577.2500000009949,-0.06255971201286446 +115451,577.255000000995,-0.06255822961799958 +115452,577.2600000009951,-0.06255674764676211 +115453,577.2650000009952,-0.06255526609883928 +115454,577.2700000009953,-0.06255378497391878 +115455,577.2750000009954,-0.06255230427168869 +115456,577.2800000009955,-0.06255082399183752 +115457,577.2850000009956,-0.06254934413405423 +115458,577.2900000009957,-0.06254786469802821 +115459,577.2950000009959,-0.06254638568344925 +115460,577.300000000996,-0.06254490709000758 +115461,577.3050000009961,-0.06254342891739388 +115462,577.3100000009962,-0.06254195116529923 +115463,577.3150000009963,-0.06254047383341514 +115464,577.3200000009964,-0.06253899692143354 +115465,577.3250000009965,-0.06253752042904681 +115466,577.3300000009966,-0.06253604435594773 +115467,577.3350000009967,-0.06253456870182948 +115468,577.3400000009968,-0.06253309346638573 +115469,577.345000000997,-0.06253161864931053 +115470,577.350000000997,-0.06253014425029832 +115471,577.3550000009972,-0.06252867026904402 +115472,577.3600000009973,-0.06252719670524293 +115473,577.3650000009974,-0.06252572355859079 +115474,577.3700000009975,-0.06252425082878374 +115475,577.3750000009976,-0.06252277851551835 +115476,577.3800000009977,-0.06252130661849162 +115477,577.3850000009978,-0.06251983513740093 +115478,577.3900000009979,-0.06251836407194411 +115479,577.395000000998,-0.06251689342181939 +115480,577.4000000009981,-0.06251542318672541 +115481,577.4050000009983,-0.06251395336636123 +115482,577.4100000009984,-0.06251248396042636 +115483,577.4150000009985,-0.06251101496862063 +115484,577.4200000009986,-0.06250954639064438 +115485,577.4250000009987,-0.06250807822619829 +115486,577.4300000009988,-0.06250661047498351 +115487,577.4350000009989,-0.06250514313670158 +115488,577.440000000999,-0.06250367621105442 +115489,577.4450000009991,-0.06250220969774437 +115490,577.4500000009992,-0.06250074359647421 +115491,577.4550000009993,-0.0624992779069471 +115492,577.4600000009995,-0.06249781262886661 +115493,577.4650000009996,-0.06249634776193674 +115494,577.4700000009997,-0.06249488330586185 +115495,577.4750000009998,-0.062493419260346746 +115496,577.4800000009999,-0.06249195562509661 +115497,577.485000001,-0.062490492399817056 +115498,577.4900000010001,-0.062489029584214095 +115499,577.4950000010002,-0.06248756717799413 +115500,577.5000000010003,-0.06248610518086395 +115501,577.5050000010004,-0.06248464359253079 +115502,577.5100000010005,-0.06248318241270225 +115503,577.5150000010007,-0.06248172164108634 +115504,577.5200000010008,-0.06248026127739148 +115505,577.5250000010009,-0.06247880132132649 +115506,577.530000001001,-0.062477341772600566 +115507,577.5350000010011,-0.062475882630923324 +115508,577.5400000010012,-0.062474423896004765 +115509,577.5450000010013,-0.06247296556755529 +115510,577.5500000010014,-0.0624715076452857 +115511,577.5550000010015,-0.06247005012890719 +115512,577.5600000010016,-0.062468593018131346 +115513,577.5650000010017,-0.06246713631267015 +115514,577.5700000010019,-0.06246568001223599 +115515,577.575000001002,-0.06246422411654164 +115516,577.5800000010021,-0.06246276862530026 +115517,577.5850000010022,-0.062461313538225385 +115518,577.5900000010023,-0.06245985885503099 +115519,577.5950000010024,-0.062458404575431406 +115520,577.6000000010025,-0.062456950699141346 +115521,577.6050000010026,-0.06245549722587595 +115522,577.6100000010027,-0.062454044155350705 +115523,577.6150000010028,-0.06245259148728152 +115524,577.620000001003,-0.06245113922138468 +115525,577.6250000010031,-0.06244968735737686 +115526,577.6300000010032,-0.0624482358949751 +115527,577.6350000010033,-0.06244678483389686 +115528,577.6400000010034,-0.062445334173859966 +115529,577.6450000010035,-0.06244388391458263 +115530,577.6500000010036,-0.06244243405578345 +115531,577.6550000010037,-0.06244098459718141 +115532,577.6600000010038,-0.06243953553849589 +115533,577.6650000010039,-0.06243808687944663 +115534,577.670000001004,-0.06243663861975375 +115535,577.6750000010042,-0.06243519075913778 +115536,577.6800000010043,-0.06243374329731961 +115537,577.6850000010044,-0.0624322962340205 +115538,577.6900000010045,-0.06243084956896212 +115539,577.6950000010046,-0.062429403301866485 +115540,577.7000000010047,-0.06242795743245603 +115541,577.7050000010048,-0.062426511960453526 +115542,577.7100000010049,-0.06242506688558216 +115543,577.715000001005,-0.062423622207565456 +115544,577.7200000010051,-0.06242217792612735 +115545,577.7250000010052,-0.06242073404099213 +115546,577.7300000010054,-0.06241929055188447 +115547,577.7350000010055,-0.06241784745852942 +115548,577.7400000010056,-0.06241640476065241 +115549,577.7450000010057,-0.06241496245797923 +115550,577.7500000010058,-0.06241352055023603 +115551,577.7550000010059,-0.062412079037149355 +115552,577.760000001006,-0.06241063791844613 +115553,577.7650000010061,-0.06240919719385363 +115554,577.7700000010062,-0.06240775686309951 +115555,577.7750000010063,-0.062406316925911795 +115556,577.7800000010064,-0.06240487738201888 +115557,577.7850000010066,-0.06240343823114952 +115558,577.7900000010067,-0.06240199947303286 +115559,577.7950000010068,-0.06240056110739839 +115560,577.8000000010069,-0.06239912313397596 +115561,577.805000001007,-0.06239768555249583 +115562,577.8100000010071,-0.062396248362688596 +115563,577.8150000010072,-0.06239481156428521 +115564,577.8200000010073,-0.062393375157017004 +115565,577.8250000010074,-0.06239193914061569 +115566,577.8300000010075,-0.0623905035148133 +115567,577.8350000010076,-0.062389068279342284 +115568,577.8400000010078,-0.06238763343393542 +115569,577.8450000010079,-0.062386198978325855 +115570,577.850000001008,-0.06238476491224708 +115571,577.8550000010081,-0.06238333123543299 +115572,577.8600000010082,-0.062381897947617816 +115573,577.8650000010083,-0.062380465048536136 +115574,577.8700000010084,-0.06237903253792291 +115575,577.8750000010085,-0.062377600415513455 +115576,577.8800000010086,-0.06237616868104344 +115577,577.8850000010087,-0.06237473733424888 +115578,577.8900000010088,-0.06237330637486616 +115579,577.895000001009,-0.06237187580263204 +115580,577.9000000010091,-0.06237044561728361 +115581,577.9050000010092,-0.062369015818558325 +115582,577.9100000010093,-0.062367586406194 +115583,577.9150000010094,-0.06236615737992878 +115584,577.9200000010095,-0.062364728739501205 +115585,577.9250000010096,-0.06236330048465013 +115586,577.9300000010097,-0.06236187261511479 +115587,577.9350000010098,-0.062360445130634774 +115588,577.9400000010099,-0.06235901803095 +115589,577.94500000101,-0.062357591315800764 +115590,577.9500000010102,-0.06235616498492767 +115591,577.9550000010103,-0.06235473903807174 +115592,577.9600000010104,-0.06235331347497429 +115593,577.9650000010105,-0.062351888295376995 +115594,577.9700000010106,-0.0623504634990219 +115595,577.9750000010107,-0.062349039085651384 +115596,577.9800000010108,-0.06234761505500818 +115597,577.9850000010109,-0.062346191406835345 +115598,577.990000001011,-0.062344768140876326 +115599,577.9950000010111,-0.062343345256874884 +115600,578.0000000010112,-0.062341922754575126 +115601,578.0050000010114,-0.06234050063372152 +115602,578.0100000010115,-0.062339078894058875 +115603,578.0150000010116,-0.062337657535332325 +115604,578.0200000010117,-0.06233623655728738 +115605,578.0250000010118,-0.062334815959669866 +115606,578.0300000010119,-0.062333395742225975 +115607,578.035000001012,-0.06233197590470222 +115608,578.0400000010121,-0.06233055644684545 +115609,578.0450000010122,-0.062329137368402884 +115610,578.0500000010123,-0.06232771866912208 +115611,578.0550000010124,-0.06232630034875089 +115612,578.0600000010126,-0.06232488240703756 +115613,578.0650000010127,-0.062323464843730664 +115614,578.0700000010128,-0.06232204765857908 +115615,578.0750000010129,-0.062320630851332055 +115616,578.080000001013,-0.062319214421739176 +115617,578.0850000010131,-0.06231779836955035 +115618,578.0900000010132,-0.06231638269451581 +115619,578.0950000010133,-0.062314967396386166 +115620,578.1000000010134,-0.06231355247491234 +115621,578.1050000010135,-0.06231213792984559 +115622,578.1100000010136,-0.06231072376093749 +115623,578.1150000010138,-0.062309309967939985 +115624,578.1200000010139,-0.06230789655060532 +115625,578.125000001014,-0.0623064835086861 +115626,578.1300000010141,-0.062305070841935234 +115627,578.1350000010142,-0.06230365855010599 +115628,578.1400000010143,-0.06230224663295197 +115629,578.1450000010144,-0.062300835090227054 +115630,578.1500000010145,-0.06229942392168553 +115631,578.1550000010146,-0.06229801312708196 +115632,578.1600000010147,-0.062296602706171246 +115633,578.1650000010148,-0.06229519265870863 +115634,578.170000001015,-0.062293782984449694 +115635,578.1750000010151,-0.062292373683150305 +115636,578.1800000010152,-0.062290964754566705 +115637,578.1850000010153,-0.06228955619845543 +115638,578.1900000010154,-0.062288148014573365 +115639,578.1950000010155,-0.06228674020267771 +115640,578.2000000010156,-0.062285332762525986 +115641,578.2050000010157,-0.062283925693876044 +115642,578.2100000010158,-0.06228251899648606 +115643,578.2150000010159,-0.06228111267011454 +115644,578.220000001016,-0.0622797067145203 +115645,578.2250000010162,-0.06227830112946249 +115646,578.2300000010163,-0.06227689591470058 +115647,578.2350000010164,-0.062275491069994346 +115648,578.2400000010165,-0.06227408659510391 +115649,578.2450000010166,-0.06227268248978972 +115650,578.2500000010167,-0.06227127875381251 +115651,578.2550000010168,-0.06226987538693336 +115652,578.2600000010169,-0.062268472388913663 +115653,578.265000001017,-0.06226706975951514 +115654,578.2700000010171,-0.06226566749849981 +115655,578.2750000010172,-0.06226426560563002 +115656,578.2800000010174,-0.06226286408066844 +115657,578.2850000010175,-0.062261462923378065 +115658,578.2900000010176,-0.062260062133522184 +115659,578.2950000010177,-0.062258661710864416 +115660,578.3000000010178,-0.062257261655168705 +115661,578.3050000010179,-0.06225586196619929 +115662,578.310000001018,-0.06225446264372073 +115663,578.3150000010181,-0.0622530636874979 +115664,578.3200000010182,-0.062251665097296 +115665,578.3250000010183,-0.06225026687288053 +115666,578.3300000010184,-0.06224886901401732 +115667,578.3350000010186,-0.062247471520472476 +115668,578.3400000010187,-0.06224607439201245 +115669,578.3450000010188,-0.062244677628403994 +115670,578.3500000010189,-0.06224328122941418 +115671,578.355000001019,-0.06224188519481038 +115672,578.3600000010191,-0.062240489524360273 +115673,578.3650000010192,-0.06223909421783185 +115674,578.3700000010193,-0.06223769927499342 +115675,578.3750000010194,-0.0622363046956136 +115676,578.3800000010195,-0.062234910479461295 +115677,578.3850000010196,-0.062233516626305746 +115678,578.3900000010198,-0.06223212313591648 +115679,578.3950000010199,-0.06223073000806335 +115680,578.40000000102,-0.06222933724251648 +115681,578.4050000010201,-0.06222794483904635 +115682,578.4100000010202,-0.062226552797423694 +115683,578.4150000010203,-0.06222516111741959 +115684,578.4200000010204,-0.06222376979880541 +115685,578.4250000010205,-0.06222237884135282 +115686,578.4300000010206,-0.062220988244833804 +115687,578.4350000010207,-0.06221959800902063 +115688,578.4400000010208,-0.06221820813368589 +115689,578.445000001021,-0.06221681861860246 +115690,578.4500000010211,-0.06221542946354353 +115691,578.4550000010212,-0.06221404066828258 +115692,578.4600000010213,-0.0622126522325934 +115693,578.4650000010214,-0.062211264156250085 +115694,578.4700000010215,-0.06220987643902701 +115695,578.4750000010216,-0.06220848908069887 +115696,578.4800000010217,-0.06220710208104065 +115697,578.4850000010218,-0.06220571543982763 +115698,578.4900000010219,-0.0622043291568354 +115699,578.495000001022,-0.06220294323183984 +115700,578.5000000010222,-0.062201557664617116 +115701,578.5050000010223,-0.06220017245494371 +115702,578.5100000010224,-0.0621987876025964 +115703,578.5150000010225,-0.06219740310735223 +115704,578.5200000010226,-0.06219601896898858 +115705,578.5250000010227,-0.0621946351872831 +115706,578.5300000010228,-0.062193251762013735 +115707,578.5350000010229,-0.062191868692958736 +115708,578.540000001023,-0.06219048597989664 +115709,578.5450000010231,-0.06218910362260628 +115710,578.5500000010232,-0.06218772162086678 +115711,578.5550000010234,-0.062186339974457557 +115712,578.5600000010235,-0.0621849586831583 +115713,578.5650000010236,-0.06218357774674904 +115714,578.5700000010237,-0.06218219716501004 +115715,578.5750000010238,-0.062180816937721886 +115716,578.5800000010239,-0.062179437064665465 +115717,578.585000001024,-0.062178057545621924 +115718,578.5900000010241,-0.062176678380372705 +115719,578.5950000010242,-0.062175299568699556 +115720,578.6000000010243,-0.062173921110384514 +115721,578.6050000010245,-0.062172543005209864 +115722,578.6100000010246,-0.06217116525295822 +115723,578.6150000010247,-0.06216978785341249 +115724,578.6200000010248,-0.06216841080635582 +115725,578.6250000010249,-0.062167034111571685 +115726,578.630000001025,-0.06216565776884383 +115727,578.6350000010251,-0.06216428177795629 +115728,578.6400000010252,-0.06216290613869337 +115729,578.6450000010253,-0.06216153085083968 +115730,578.6500000010254,-0.06216015591418011 +115731,578.6550000010255,-0.062158781328499814 +115732,578.6600000010257,-0.06215740709358424 +115733,578.6650000010258,-0.062156033209219134 +115734,578.6700000010259,-0.0621546596751905 +115735,578.675000001026,-0.06215328649128466 +115736,578.6800000010261,-0.06215191365728818 +115737,578.6850000010262,-0.0621505411729879 +115738,578.6900000010263,-0.062149169038170984 +115739,578.6950000010264,-0.06214779725262484 +115740,578.7000000010265,-0.062146425816137184 +115741,578.7050000010266,-0.06214505472849598 +115742,578.7100000010267,-0.06214368398948949 +115743,578.7150000010269,-0.06214231359890624 +115744,578.720000001027,-0.062140943556535065 +115745,578.7250000010271,-0.06213957386216505 +115746,578.7300000010272,-0.062138204515585556 +115747,578.7350000010273,-0.062136835516586233 +115748,578.7400000010274,-0.062135466864956995 +115749,578.7450000010275,-0.06213409856048806 +115750,578.7500000010276,-0.06213273060296987 +115751,578.7550000010277,-0.062131362992193205 +115752,578.7600000010278,-0.06212999572794907 +115753,578.7650000010279,-0.06212862881002876 +115754,578.770000001028,-0.06212726223822385 +115755,578.7750000010282,-0.06212589601232618 +115756,578.7800000010283,-0.062124530132127875 +115757,578.7850000010284,-0.06212316459742132 +115758,578.7900000010285,-0.06212179940799918 +115759,578.7950000010286,-0.062120434563654375 +115760,578.8000000010287,-0.062119070064180125 +115761,578.8050000010288,-0.06211770590936989 +115762,578.8100000010289,-0.06211634209901743 +115763,578.815000001029,-0.06211497863291675 +115764,578.8200000010291,-0.062113615510862134 +115765,578.8250000010293,-0.06211225273264813 +115766,578.8300000010294,-0.06211089029806958 +115767,578.8350000010295,-0.06210952820692157 +115768,578.8400000010296,-0.06210816645899945 +115769,578.8450000010297,-0.062106805054098844 +115770,578.8500000010298,-0.06210544399201567 +115771,578.8550000010299,-0.062104083272546066 +115772,578.86000000103,-0.062102722895486455 +115773,578.8650000010301,-0.062101362860633544 +115774,578.8700000010302,-0.062100003167784294 +115775,578.8750000010303,-0.06209864381673592 +115776,578.8800000010305,-0.0620972848072859 +115777,578.8850000010306,-0.062095926139232024 +115778,578.8900000010307,-0.06209456781237226 +115779,578.8950000010308,-0.062093209826504916 +115780,578.9000000010309,-0.062091852181428535 +115781,578.905000001031,-0.06209049487694192 +115782,578.9100000010311,-0.062089137912844136 +115783,578.9150000010312,-0.062087781288934524 +115784,578.9200000010313,-0.06208642500501267 +115785,578.9250000010314,-0.06208506906087843 +115786,578.9300000010315,-0.062083713456331895 +115787,578.9350000010317,-0.06208235819117347 +115788,578.9400000010318,-0.06208100326520378 +115789,578.9450000010319,-0.06207964867822371 +115790,578.950000001032,-0.0620782944300344 +115791,578.9550000010321,-0.062076940520437295 +115792,578.9600000010322,-0.06207558694923404 +115793,578.9650000010323,-0.06207423371622657 +115794,578.9700000010324,-0.062072880821217084 +115795,578.9750000010325,-0.062071528264008 +115796,578.9800000010326,-0.06207017604440202 +115797,578.9850000010327,-0.06206882416220212 +115798,578.9900000010329,-0.062067472617211496 +115799,578.995000001033,-0.06206612140923362 +115800,579.0000000010331,-0.06206477053807221 +115801,579.0050000010332,-0.06206342000353127 +115802,579.0100000010333,-0.062062069805414996 +115803,579.0150000010334,-0.06206071994352789 +115804,579.0200000010335,-0.06205937041767469 +115805,579.0250000010336,-0.062058021227660375 +115806,579.0300000010337,-0.06205667237329021 +115807,579.0350000010338,-0.06205532385436969 +115808,579.040000001034,-0.06205397567070457 +115809,579.045000001034,-0.062052627822100845 +115810,579.0500000010342,-0.06205128030836477 +115811,579.0550000010343,-0.06204993312930285 +115812,579.0600000010344,-0.06204858628472184 +115813,579.0650000010345,-0.06204723977442875 +115814,579.0700000010346,-0.062045893598230824 +115815,579.0750000010347,-0.06204454775593557 +115816,579.0800000010348,-0.06204320224735075 +115817,579.0850000010349,-0.06204185707228437 +115818,579.090000001035,-0.06204051223054468 +115819,579.0950000010351,-0.062039167721940174 +115820,579.1000000010353,-0.0620378235462796 +115821,579.1050000010354,-0.06203647970337194 +115822,579.1100000010355,-0.06203513619302645 +115823,579.1150000010356,-0.06203379301505261 +115824,579.1200000010357,-0.06203245016926016 +115825,579.1250000010358,-0.062031107655459085 +115826,579.1300000010359,-0.06202976547345959 +115827,579.135000001036,-0.062028423623072156 +115828,579.1400000010361,-0.062027082104107505 +115829,579.1450000010362,-0.06202574091637658 +115830,579.1500000010363,-0.06202440005969059 +115831,579.1550000010365,-0.06202305953386099 +115832,579.1600000010366,-0.06202171933869944 +115833,579.1650000010367,-0.0620203794740179 +115834,579.1700000010368,-0.06201903993962854 +115835,579.1750000010369,-0.06201770073534377 +115836,579.180000001037,-0.06201636186097625 +115837,579.1850000010371,-0.06201502331633887 +115838,579.1900000010372,-0.062013685101244775 +115839,579.1950000010373,-0.06201234721550735 +115840,579.2000000010374,-0.062011009658940214 +115841,579.2050000010375,-0.062009672431357216 +115842,579.2100000010377,-0.06200833553257248 +115843,579.2150000010378,-0.06200699896240032 +115844,579.2200000010379,-0.06200566272065532 +115845,579.225000001038,-0.06200432680715231 +115846,579.2300000010381,-0.06200299122170633 +115847,579.2350000010382,-0.062001655964132665 +115848,579.2400000010383,-0.062000321034246866 +115849,579.2450000010384,-0.06199898643186468 +115850,579.2500000010385,-0.061997652156802106 +115851,579.2550000010386,-0.0619963182088754 +115852,579.2600000010387,-0.061994984587901016 +115853,579.2650000010389,-0.061993651293695676 +115854,579.270000001039,-0.06199231832607633 +115855,579.2750000010391,-0.06199098568486015 +115856,579.2800000010392,-0.061989653369864554 +115857,579.2850000010393,-0.061988321380907194 +115858,579.2900000010394,-0.06198698971780594 +115859,579.2950000010395,-0.06198565838037891 +115860,579.3000000010396,-0.061984327368444454 +115861,579.3050000010397,-0.06198299668182115 +115862,579.3100000010398,-0.06198166632032782 +115863,579.31500000104,-0.06198033628378349 +115864,579.3200000010401,-0.06197900657200745 +115865,579.3250000010402,-0.06197767718481922 +115866,579.3300000010403,-0.061976348122038505 +115867,579.3350000010404,-0.061975019383485305 +115868,579.3400000010405,-0.0619736909689798 +115869,579.3450000010406,-0.06197236287834242 +115870,579.3500000010407,-0.061971035111393846 +115871,579.3550000010408,-0.06196970766795493 +115872,579.3600000010409,-0.06196838054784682 +115873,579.365000001041,-0.061967053750890844 +115874,579.3700000010411,-0.061965727276908585 +115875,579.3750000010413,-0.061964401125721824 +115876,579.3800000010414,-0.0619630752971526 +115877,579.3850000010415,-0.06196174979102317 +115878,579.3900000010416,-0.06196042460715601 +115879,579.3950000010417,-0.061959099745373836 +115880,579.4000000010418,-0.061957775205499575 +115881,579.4050000010419,-0.061956450987356394 +115882,579.410000001042,-0.06195512709076766 +115883,579.4150000010421,-0.061953803515557 +115884,579.4200000010422,-0.061952480261548246 +115885,579.4250000010423,-0.06195115732856546 +115886,579.4300000010425,-0.0619498347164329 +115887,579.4350000010426,-0.06194851242497511 +115888,579.4400000010427,-0.061947190454016796 +115889,579.4450000010428,-0.06194586880338291 +115890,579.4500000010429,-0.06194454747289862 +115891,579.455000001043,-0.06194322646238933 +115892,579.4600000010431,-0.06194190577168068 +115893,579.4650000010432,-0.06194058540059848 +115894,579.4700000010433,-0.061939265348968806 +115895,579.4750000010434,-0.06193794561661794 +115896,579.4800000010435,-0.06193662620337238 +115897,579.4850000010437,-0.061935307109058854 +115898,579.4900000010438,-0.0619339883335043 +115899,579.4950000010439,-0.061932669876535895 +115900,579.500000001044,-0.061931351737981005 +115901,579.5050000010441,-0.06193003391766723 +115902,579.5100000010442,-0.0619287164154224 +115903,579.5150000010443,-0.06192739923107455 +115904,579.5200000010444,-0.06192608236445193 +115905,579.5250000010445,-0.061924765815383025 +115906,579.5300000010446,-0.06192344958369651 +115907,579.5350000010448,-0.061922133669221294 +115908,579.5400000010449,-0.06192081807178652 +115909,579.545000001045,-0.061919502791221506 +115910,579.5500000010451,-0.06191818782735581 +115911,579.5550000010452,-0.06191687318001921 +115912,579.5600000010453,-0.0619155588490417 +115913,579.5650000010454,-0.061914244834253465 +115914,579.5700000010455,-0.06191293113548494 +115915,579.5750000010456,-0.061911617752566726 +115916,579.5800000010457,-0.061910304685329695 +115917,579.5850000010458,-0.0619089919336049 +115918,579.590000001046,-0.061907679497223596 +115919,579.5950000010461,-0.06190636737601729 +115920,579.6000000010462,-0.061905055569817666 +115921,579.6050000010463,-0.06190374407845663 +115922,579.6100000010464,-0.06190243290176631 +115923,579.6150000010465,-0.061901122039579023 +115924,579.6200000010466,-0.06189981149172734 +115925,579.6250000010467,-0.061898501258044 +115926,579.6300000010468,-0.06189719133836197 +115927,579.6350000010469,-0.06189588173251441 +115928,579.640000001047,-0.06189457244033474 +115929,579.6450000010472,-0.06189326346165653 +115930,579.6500000010473,-0.0618919547963136 +115931,579.6550000010474,-0.06189064644413996 +115932,579.6600000010475,-0.06188933840496984 +115933,579.6650000010476,-0.06188803067863765 +115934,579.6700000010477,-0.061886723264978044 +115935,579.6750000010478,-0.06188541616382588 +115936,579.6800000010479,-0.0618841093750162 +115937,579.685000001048,-0.061882802898384257 +115938,579.6900000010481,-0.06188149673376554 +115939,579.6950000010482,-0.06188019088099573 +115940,579.7000000010484,-0.061878885339910684 +115941,579.7050000010485,-0.061877580110346504 +115942,579.7100000010486,-0.06187627519213947 +115943,579.7150000010487,-0.06187497058512611 +115944,579.7200000010488,-0.061873666289143106 +115945,579.7250000010489,-0.061872362304027366 +115946,579.730000001049,-0.061871058629616005 +115947,579.7350000010491,-0.06186975526574635 +115948,579.7400000010492,-0.06186845221225592 +115949,579.7450000010493,-0.06186714946898242 +115950,579.7500000010494,-0.061865847035763796 +115951,579.7550000010496,-0.06186454491243818 +115952,579.7600000010497,-0.0618632430988439 +115953,579.7650000010498,-0.06186194159481948 +115954,579.7700000010499,-0.06186064040020368 +115955,579.77500000105,-0.06185933951483542 +115956,579.7800000010501,-0.061858038938553836 +115957,579.7850000010502,-0.061856738671198286 +115958,579.7900000010503,-0.061855438712608304 +115959,579.7950000010504,-0.06185413906262363 +115960,579.8000000010505,-0.06185283972108421 +115961,579.8050000010506,-0.06185154068783018 +115962,579.8100000010508,-0.06185024196270189 +115963,579.8150000010509,-0.06184894354553987 +115964,579.820000001051,-0.061847645436184866 +115965,579.8250000010511,-0.06184634763447781 +115966,579.8300000010512,-0.061845050140259844 +115967,579.8350000010513,-0.06184375295337229 +115968,579.8400000010514,-0.061842456073656696 +115969,579.8450000010515,-0.06184115950095478 +115970,579.8500000010516,-0.06183986323510847 +115971,579.8550000010517,-0.06183856727595989 +115972,579.8600000010518,-0.061837271623351356 +115973,579.865000001052,-0.061835976277125386 +115974,579.8700000010521,-0.06183468123712468 +115975,579.8750000010522,-0.06183338650319217 +115976,579.8800000010523,-0.06183209207517094 +115977,579.8850000010524,-0.061830797952904276 +115978,579.8900000010525,-0.0618295041362357 +115979,579.8950000010526,-0.061828210625008866 +115980,579.9000000010527,-0.06182691741906767 +115981,579.9050000010528,-0.06182562451825619 +115982,579.9100000010529,-0.06182433192241869 +115983,579.915000001053,-0.06182303963139962 +115984,579.9200000010532,-0.06182174764504365 +115985,579.9250000010533,-0.0618204559631956 +115986,579.9300000010534,-0.06181916458570053 +115987,579.9350000010535,-0.061817873512403664 +115988,579.9400000010536,-0.06181658274315042 +115989,579.9450000010537,-0.06181529227778643 +115990,579.9500000010538,-0.06181400211615747 +115991,579.9550000010539,-0.061812712258109546 +115992,579.960000001054,-0.06181142270348885 +115993,579.9650000010541,-0.061810133452141744 +115994,579.9700000010542,-0.061808844503914814 +115995,579.9750000010544,-0.06180755585865481 +115996,579.9800000010545,-0.061806267516208664 +115997,579.9850000010546,-0.061804979476423515 +115998,579.9900000010547,-0.06180369173914669 +115999,579.9950000010548,-0.06180240430422569 +116000,580.0000000010549,-0.06180111717150824 +116001,580.005000001055,-0.06179983034084221 +116002,580.0100000010551,-0.06179854381207567 +116003,580.0150000010552,-0.061797257585056886 +116004,580.0200000010553,-0.061795971659634304 +116005,580.0250000010554,-0.06179468603565657 +116006,580.0300000010556,-0.0617934007129725 +116007,580.0350000010557,-0.06179211569143111 +116008,580.0400000010558,-0.06179083097088159 +116009,580.0450000010559,-0.061789546551173316 +116010,580.050000001056,-0.06178826243215588 +116011,580.0550000010561,-0.061786978613678996 +116012,580.0600000010562,-0.06178569509559263 +116013,580.0650000010563,-0.06178441187774689 +116014,580.0700000010564,-0.061783128959992085 +116015,580.0750000010565,-0.061781846342178696 +116016,580.0800000010566,-0.0617805640241574 +116017,580.0850000010568,-0.061779282005779056 +116018,580.0900000010569,-0.06177800028689468 +116019,580.095000001057,-0.06177671886735553 +116020,580.1000000010571,-0.06177543774701299 +116021,580.1050000010572,-0.06177415692571866 +116022,580.1100000010573,-0.06177287640332429 +116023,580.1150000010574,-0.06177159617968185 +116024,580.1200000010575,-0.061770316254643465 +116025,580.1250000010576,-0.06176903662806144 +116026,580.1300000010577,-0.06176775729978829 +116027,580.1350000010578,-0.06176647826967667 +116028,580.140000001058,-0.06176519953757943 +116029,580.1450000010581,-0.061763921103349634 +116030,580.1500000010582,-0.061762642966840475 +116031,580.1550000010583,-0.06176136512790535 +116032,580.1600000010584,-0.06176008758639783 +116033,580.1650000010585,-0.061758810342171684 +116034,580.1700000010586,-0.061757533395080826 +116035,580.1750000010587,-0.061756256744979386 +116036,580.1800000010588,-0.061754980391721635 +116037,580.1850000010589,-0.061753704335162043 +116038,580.190000001059,-0.06175242857515525 +116039,580.1950000010592,-0.061751153111556094 +116040,580.2000000010593,-0.061749877944219565 +116041,580.2050000010594,-0.06174860307300084 +116042,580.2100000010595,-0.061747328497755265 +116043,580.2150000010596,-0.061746054218338356 +116044,580.2200000010597,-0.06174478023460584 +116045,580.2250000010598,-0.0617435065464136 +116046,580.2300000010599,-0.061742233153617675 +116047,580.23500000106,-0.0617409600560743 +116048,580.2400000010601,-0.06173968725363989 +116049,580.2450000010602,-0.061738414746171005 +116050,580.2500000010604,-0.06173714253352441 +116051,580.2550000010605,-0.061735870615557034 +116052,580.2600000010606,-0.06173459899212598 +116053,580.2650000010607,-0.06173332766308853 +116054,580.2700000010608,-0.06173205662830213 +116055,580.2750000010609,-0.06173078588762441 +116056,580.280000001061,-0.061729515440913145 +116057,580.2850000010611,-0.06172824528802633 +116058,580.2900000010612,-0.061726975428822085 +116059,580.2950000010613,-0.06172570586315874 +116060,580.3000000010614,-0.06172443659089477 +116061,580.3050000010616,-0.06172316761188883 +116062,580.3100000010617,-0.06172189892599974 +116063,580.3150000010618,-0.06172063053308651 +116064,580.3200000010619,-0.0617193624330083 +116065,580.325000001062,-0.06171809462562446 +116066,580.3300000010621,-0.0617168271107945 +116067,580.3350000010622,-0.06171555988837808 +116068,580.3400000010623,-0.06171429295823508 +116069,580.3450000010624,-0.061713026320225496 +116070,580.3500000010625,-0.06171175997420952 +116071,580.3550000010626,-0.061710493920047516 +116072,580.3600000010628,-0.061709228157599993 +116073,580.3650000010629,-0.06170796268672767 +116074,580.370000001063,-0.061706697507291394 +116075,580.3750000010631,-0.06170543261915219 +116076,580.3800000010632,-0.061704168022171275 +116077,580.3850000010633,-0.06170290371620999 +116078,580.3900000010634,-0.06170163970112988 +116079,580.3950000010635,-0.06170037597679264 +116080,580.4000000010636,-0.06169911254306015 +116081,580.4050000010637,-0.06169784939979444 +116082,580.4100000010638,-0.06169658654685769 +116083,580.415000001064,-0.06169532398411228 +116084,580.4200000010641,-0.06169406171142073 +116085,580.4250000010642,-0.06169279972864574 +116086,580.4300000010643,-0.06169153803565017 +116087,580.4350000010644,-0.06169027663229704 +116088,580.4400000010645,-0.061689015518449554 +116089,580.4450000010646,-0.061687754693971045 +116090,580.4500000010647,-0.06168649415872504 +116091,580.4550000010648,-0.06168523391257523 +116092,580.4600000010649,-0.061683973955385454 +116093,580.465000001065,-0.06168271428701972 +116094,580.4700000010652,-0.0616814549073422 +116095,580.4750000010653,-0.06168019581621724 +116096,580.4800000010654,-0.061678937013509315 +116097,580.4850000010655,-0.0616776784990831 +116098,580.4900000010656,-0.06167642027280343 +116099,580.4950000010657,-0.06167516233453526 +116100,580.5000000010658,-0.06167390468414375 +116101,580.5050000010659,-0.06167264732149421 +116102,580.510000001066,-0.06167139024645211 +116103,580.5150000010661,-0.06167013345888306 +116104,580.5200000010663,-0.06166887695865288 +116105,580.5250000010664,-0.06166762074562749 +116106,580.5300000010665,-0.061666364819673025 +116107,580.5350000010666,-0.061665109180655736 +116108,580.5400000010667,-0.061663853828442056 +116109,580.5450000010668,-0.061662598762898584 +116110,580.5500000010669,-0.061661343983892065 +116111,580.555000001067,-0.06166008949128941 +116112,580.5600000010671,-0.06165883528495768 +116113,580.5650000010672,-0.06165758136476408 +116114,580.5700000010673,-0.06165632773057604 +116115,580.5750000010675,-0.06165507438226107 +116116,580.5800000010676,-0.06165382131968686 +116117,580.5850000010677,-0.06165256854272127 +116118,580.5900000010678,-0.06165131605123233 +116119,580.5950000010679,-0.0616500638450882 +116120,580.600000001068,-0.0616488119241572 +116121,580.6050000010681,-0.06164756028830783 +116122,580.6100000010682,-0.06164630893740872 +116123,580.6150000010683,-0.06164505787132866 +116124,580.6200000010684,-0.061643807089936616 +116125,580.6250000010685,-0.06164255659310169 +116126,580.6300000010687,-0.06164130638069314 +116127,580.6350000010688,-0.06164005645258038 +116128,580.6400000010689,-0.06163880680863299 +116129,580.645000001069,-0.0616375574487207 +116130,580.6500000010691,-0.061636308372713375 +116131,580.6550000010692,-0.06163505958048107 +116132,580.6600000010693,-0.06163381107189396 +116133,580.6650000010694,-0.0616325628468224 +116134,580.6700000010695,-0.061631314905136875 +116135,580.6750000010696,-0.061630067246708053 +116136,580.6800000010697,-0.06162881987140673 +116137,580.6850000010699,-0.061627572779103856 +116138,580.69000000107,-0.06162632596967055 +116139,580.6950000010701,-0.06162507944297805 +116140,580.7000000010702,-0.0616238331988978 +116141,580.7050000010703,-0.061622587237301345 +116142,580.7100000010704,-0.061621341558060407 +116143,580.7150000010705,-0.06162009616104685 +116144,580.7200000010706,-0.06161885104613269 +116145,580.7250000010707,-0.0616176062131901 +116146,580.7300000010708,-0.06161636166209141 +116147,580.735000001071,-0.06161511739270907 +116148,580.740000001071,-0.06161387340491571 +116149,580.7450000010712,-0.061612629698584116 +116150,580.7500000010713,-0.061611386273587185 +116151,580.7550000010714,-0.061610143129798005 +116152,580.7600000010715,-0.061608900267089796 +116153,580.7650000010716,-0.06160765768533592 +116154,580.7700000010717,-0.0616064153844099 +116155,580.7750000010718,-0.06160517336418539 +116156,580.7800000010719,-0.061603931624536215 +116157,580.785000001072,-0.06160269016533633 +116158,580.7900000010721,-0.06160144898645986 +116159,580.7950000010723,-0.06160020808778104 +116160,580.8000000010724,-0.0615989674691743 +116161,580.8050000010725,-0.061597727130514174 +116162,580.8100000010726,-0.061596487071675386 +116163,580.8150000010727,-0.06159524729253276 +116164,580.8200000010728,-0.06159400779296131 +116165,580.8250000010729,-0.06159276857283615 +116166,580.830000001073,-0.06159152963203259 +116167,580.8350000010731,-0.06159029097042606 +116168,580.8400000010732,-0.061589052587892115 +116169,580.8450000010733,-0.06158781448430651 +116170,580.8500000010735,-0.06158657665954509 +116171,580.8550000010736,-0.061585339113483885 +116172,580.8600000010737,-0.06158410184599903 +116173,580.8650000010738,-0.06158286485696685 +116174,580.8700000010739,-0.0615816281462638 +116175,580.875000001074,-0.06158039171376645 +116176,580.8800000010741,-0.061579155559351534 +116177,580.8850000010742,-0.06157791968289596 +116178,580.8900000010743,-0.061576684084276724 +116179,580.8950000010744,-0.061575448763371 +116180,580.9000000010745,-0.06157421372005611 +116181,580.9050000010747,-0.06157297895420949 +116182,580.9100000010748,-0.06157174446570873 +116183,580.9150000010749,-0.06157051025443158 +116184,580.920000001075,-0.061569276320255925 +116185,580.9250000010751,-0.06156804266305977 +116186,580.9300000010752,-0.0615668092827213 +116187,580.9350000010753,-0.06156557617911879 +116188,580.9400000010754,-0.06156434335213071 +116189,580.9450000010755,-0.06156311080163563 +116190,580.9500000010756,-0.06156187852751229 +116191,580.9550000010757,-0.06156064652963956 +116192,580.9600000010759,-0.061559414807896444 +116193,580.965000001076,-0.0615581833621621 +116194,580.9700000010761,-0.06155695219231581 +116195,580.9750000010762,-0.06155572129823699 +116196,580.9800000010763,-0.06155449067980523 +116197,580.9850000010764,-0.061553260336900235 +116198,580.9900000010765,-0.061552030269401856 +116199,580.9950000010766,-0.06155080047719007 +116200,581.0000000010767,-0.061549570960145 +116201,581.0050000010768,-0.06154834171814693 +116202,581.010000001077,-0.061547112751076244 +116203,581.015000001077,-0.061545884058813484 +116204,581.0200000010772,-0.06154465564123933 +116205,581.0250000010773,-0.06154342749823461 +116206,581.0300000010774,-0.06154219962968027 +116207,581.0350000010775,-0.0615409720354574 +116208,581.0400000010776,-0.06153974471544723 +116209,581.0450000010777,-0.06153851766953112 +116210,581.0500000010778,-0.061537290897590566 +116211,581.0550000010779,-0.06153606439950723 +116212,581.060000001078,-0.061534838175162865 +116213,581.0650000010781,-0.061533612224439385 +116214,581.0700000010783,-0.061532386547218834 +116215,581.0750000010784,-0.0615311611433834 +116216,581.0800000010785,-0.061529936012815416 +116217,581.0850000010786,-0.061528711155397306 +116218,581.0900000010787,-0.06152748657101168 +116219,581.0950000010788,-0.06152626225954124 +116220,581.1000000010789,-0.06152503822086887 +116221,581.105000001079,-0.06152381445487754 +116222,581.1100000010791,-0.06152259096145038 +116223,581.1150000010792,-0.06152136774047065 +116224,581.1200000010793,-0.06152014479182175 +116225,581.1250000010795,-0.06151892211538721 +116226,581.1300000010796,-0.061517699711050686 +116227,581.1350000010797,-0.06151647757869596 +116228,581.1400000010798,-0.06151525571820697 +116229,581.1450000010799,-0.06151403412946779 +116230,581.15000000108,-0.06151281281236259 +116231,581.1550000010801,-0.061511591766775696 +116232,581.1600000010802,-0.06151037099259157 +116233,581.1650000010803,-0.061509150489694804 +116234,581.1700000010804,-0.06150793025797012 +116235,581.1750000010805,-0.06150671029730236 +116236,581.1800000010807,-0.06150549060757652 +116237,581.1850000010808,-0.061504271188677705 +116238,581.1900000010809,-0.061503052040491155 +116239,581.195000001081,-0.06150183316290226 +116240,581.2000000010811,-0.061500614555796515 +116241,581.2050000010812,-0.06149939621905958 +116242,581.2100000010813,-0.061498178152577194 +116243,581.2150000010814,-0.06149696035623528 +116244,581.2200000010815,-0.06149574282991985 +116245,581.2250000010816,-0.061494525573517055 +116246,581.2300000010817,-0.06149330858691319 +116247,581.2350000010819,-0.06149209186999468 +116248,581.240000001082,-0.06149087542264806 +116249,581.2450000010821,-0.061489659244760006 +116250,581.2500000010822,-0.061488443336217315 +116251,581.2550000010823,-0.06148722769690691 +116252,581.2600000010824,-0.06148601232671587 +116253,581.2650000010825,-0.061484797225531365 +116254,581.2700000010826,-0.06148358239324073 +116255,581.2750000010827,-0.06148236782973138 +116256,581.2800000010828,-0.06148115353489089 +116257,581.285000001083,-0.06147993950860697 +116258,581.2900000010831,-0.06147872575076744 +116259,581.2950000010832,-0.06147751226126025 +116260,581.3000000010833,-0.06147629903997347 +116261,581.3050000010834,-0.061475086086795305 +116262,581.3100000010835,-0.06147387340161409 +116263,581.3150000010836,-0.061472660984318285 +116264,581.3200000010837,-0.061471448834796466 +116265,581.3250000010838,-0.06147023695293733 +116266,581.3300000010839,-0.06146902533862972 +116267,581.335000001084,-0.06146781399176261 +116268,581.3400000010841,-0.06146660291222507 +116269,581.3450000010843,-0.06146539209990631 +116270,581.3500000010844,-0.06146418155469566 +116271,581.3550000010845,-0.06146297127648258 +116272,581.3600000010846,-0.06146176126515664 +116273,581.3650000010847,-0.061460551520607566 +116274,581.3700000010848,-0.061459342042725185 +116275,581.3750000010849,-0.06145813283139944 +116276,581.380000001085,-0.061456923886520416 +116277,581.3850000010851,-0.061455715207978316 +116278,581.3900000010852,-0.061454506795663465 +116279,581.3950000010854,-0.06145329864946629 +116280,581.4000000010855,-0.06145209076927739 +116281,581.4050000010856,-0.06145088315498745 +116282,581.4100000010857,-0.06144967580648728 +116283,581.4150000010858,-0.06144846872366782 +116284,581.4200000010859,-0.06144726190642012 +116285,581.425000001086,-0.06144605535463539 +116286,581.4300000010861,-0.06144484906820492 +116287,581.4350000010862,-0.061443643047020116 +116288,581.4400000010863,-0.06144243729097255 +116289,581.4450000010864,-0.06144123179995387 +116290,581.4500000010866,-0.061440026573855874 +116291,581.4550000010867,-0.06143882161257048 +116292,581.4600000010868,-0.06143761691598971 +116293,581.4650000010869,-0.06143641248400571 +116294,581.470000001087,-0.06143520831651077 +116295,581.4750000010871,-0.06143400441339725 +116296,581.4800000010872,-0.06143280077455768 +116297,581.4850000010873,-0.06143159739988469 +116298,581.4900000010874,-0.06143039428927104 +116299,581.4950000010875,-0.06142919144260958 +116300,581.5000000010876,-0.0614279888597933 +116301,581.5050000010878,-0.06142678654071533 +116302,581.5100000010879,-0.06142558448526887 +116303,581.515000001088,-0.06142438269334728 +116304,581.5200000010881,-0.06142318116484403 +116305,581.5250000010882,-0.06142197989965269 +116306,581.5300000010883,-0.06142077889766695 +116307,581.5350000010884,-0.06141957815878065 +116308,581.5400000010885,-0.06141837768288772 +116309,581.5450000010886,-0.061417177469882206 +116310,581.5500000010887,-0.061415977519658285 +116311,581.5550000010888,-0.06141477783211023 +116312,581.560000001089,-0.06141357840713246 +116313,581.5650000010891,-0.0614123792446195 +116314,581.5700000010892,-0.06141118034446599 +116315,581.5750000010893,-0.06140998170656667 +116316,581.5800000010894,-0.06140878333081642 +116317,581.5850000010895,-0.061407585217110226 +116318,581.5900000010896,-0.06140638736534319 +116319,581.5950000010897,-0.06140518977541053 +116320,581.6000000010898,-0.06140399244720759 +116321,581.6050000010899,-0.061402795380629815 +116322,581.61000000109,-0.061401598575572765 +116323,581.6150000010902,-0.061400402031932116 +116324,581.6200000010903,-0.06139920574960368 +116325,581.6250000010904,-0.06139800972848336 +116326,581.6300000010905,-0.06139681396846717 +116327,581.6350000010906,-0.06139561846945127 +116328,581.6400000010907,-0.06139442323133189 +116329,581.6450000010908,-0.06139322825400541 +116330,581.6500000010909,-0.06139203353736831 +116331,581.655000001091,-0.061390839081317185 +116332,581.6600000010911,-0.06138964488574874 +116333,581.6650000010912,-0.0613884509505598 +116334,581.6700000010914,-0.061387257275647304 +116335,581.6750000010915,-0.061386063860908294 +116336,581.6800000010916,-0.061384870706239936 +116337,581.6850000010917,-0.0613836778115395 +116338,581.6900000010918,-0.06138248517670437 +116339,581.6950000010919,-0.06138129280163203 +116340,581.700000001092,-0.06138010068622012 +116341,581.7050000010921,-0.06137890883036634 +116342,581.7100000010922,-0.06137771723396854 +116343,581.7150000010923,-0.06137652589692465 +116344,581.7200000010924,-0.06137533481913273 +116345,581.7250000010926,-0.06137414400049096 +116346,581.7300000010927,-0.061372953440897604 +116347,581.7350000010928,-0.061371763140251064 +116348,581.7400000010929,-0.06137057309844984 +116349,581.745000001093,-0.06136938331539254 +116350,581.7500000010931,-0.06136819379097788 +116351,581.7550000010932,-0.061367004525104706 +116352,581.7600000010933,-0.06136581551767195 +116353,581.7650000010934,-0.06136462676857868 +116354,581.7700000010935,-0.06136343827772403 +116355,581.7750000010936,-0.061362250045007304 +116356,581.7800000010938,-0.06136106207032786 +116357,581.7850000010939,-0.0613598743535852 +116358,581.790000001094,-0.061358686894678924 +116359,581.7950000010941,-0.061357499693508746 +116360,581.8000000010942,-0.06135631274997447 +116361,581.8050000010943,-0.061355126063976015 +116362,581.8100000010944,-0.06135393963541344 +116363,581.8150000010945,-0.06135275346418688 +116364,581.8200000010946,-0.06135156755019658 +116365,581.8250000010947,-0.0613503818933429 +116366,581.8300000010948,-0.061349196493526305 +116367,581.835000001095,-0.06134801135064739 +116368,581.8400000010951,-0.061346826464606805 +116369,581.8450000010952,-0.06134564183530537 +116370,581.8500000010953,-0.06134445746264396 +116371,581.8550000010954,-0.06134327334652359 +116372,581.8600000010955,-0.06134208948684535 +116373,581.8650000010956,-0.06134090588351049 +116374,581.8700000010957,-0.061339722536420296 +116375,581.8750000010958,-0.06133853944547623 +116376,581.8800000010959,-0.061337356610579805 +116377,581.885000001096,-0.06133617403163268 +116378,581.8900000010962,-0.061334991708536596 +116379,581.8950000010963,-0.0613338096411934 +116380,581.9000000010964,-0.061332627829505056 +116381,581.9050000010965,-0.06133144627337363 +116382,581.9100000010966,-0.06133026497270129 +116383,581.9150000010967,-0.0613290839273903 +116384,581.9200000010968,-0.06132790313734306 +116385,581.9250000010969,-0.06132672260246203 +116386,581.930000001097,-0.06132554232264983 +116387,581.9350000010971,-0.06132436229780912 +116388,581.9400000010972,-0.06132318252784272 +116389,581.9450000010974,-0.061322003012653524 +116390,581.9500000010975,-0.06132082375214454 +116391,581.9550000010976,-0.06131964474621886 +116392,581.9600000010977,-0.06131846599477971 +116393,581.9650000010978,-0.06131728749773042 +116394,581.9700000010979,-0.061316109254974396 +116395,581.975000001098,-0.06131493126641516 +116396,581.9800000010981,-0.06131375353195634 +116397,581.9850000010982,-0.06131257605150165 +116398,581.9900000010983,-0.06131139882495495 +116399,581.9950000010984,-0.061310221852220154 +116400,582.0000000010986,-0.0613090451332013 +116401,582.0050000010987,-0.06130786866780252 +116402,582.0100000010988,-0.061306692455928076 +116403,582.0150000010989,-0.06130551649748229 +116404,582.020000001099,-0.06130434079236961 +116405,582.0250000010991,-0.061303165340494604 +116406,582.0300000010992,-0.06130199014176188 +116407,582.0350000010993,-0.0613008151960762 +116408,582.0400000010994,-0.06129964050334243 +116409,582.0450000010995,-0.06129846606346551 +116410,582.0500000010996,-0.06129729187635049 +116411,582.0550000010998,-0.061296117941902525 +116412,582.0600000010999,-0.06129494426002685 +116413,582.0650000011,-0.06129377083062885 +116414,582.0700000011001,-0.06129259765361395 +116415,582.0750000011002,-0.06129142472888772 +116416,582.0800000011003,-0.0612902520563558 +116417,582.0850000011004,-0.061289079635923956 +116418,582.0900000011005,-0.06128790746749803 +116419,582.0950000011006,-0.061286735550983976 +116420,582.1000000011007,-0.06128556388628785 +116421,582.1050000011008,-0.06128439247331579 +116422,582.110000001101,-0.061283221311974063 +116423,582.1150000011011,-0.06128205040216899 +116424,582.1200000011012,-0.06128087974380705 +116425,582.1250000011013,-0.06127970933679477 +116426,582.1300000011014,-0.06127853918103878 +116427,582.1350000011015,-0.06127736927644586 +116428,582.1400000011016,-0.06127619962292282 +116429,582.1450000011017,-0.06127503022037661 +116430,582.1500000011018,-0.061273861068714255 +116431,582.1550000011019,-0.06127269216784289 +116432,582.160000001102,-0.06127152351766976 +116433,582.1650000011022,-0.061270355118102186 +116434,582.1700000011023,-0.061269186969047595 +116435,582.1750000011024,-0.0612680190704135 +116436,582.1800000011025,-0.06126685142210752 +116437,582.1850000011026,-0.061265684024037384 +116438,582.1900000011027,-0.061264516876110904 +116439,582.1950000011028,-0.06126334997823598 +116440,582.2000000011029,-0.06126218333032062 +116441,582.205000001103,-0.06126101693227294 +116442,582.2100000011031,-0.06125985078400112 +116443,582.2150000011032,-0.06125868488541346 +116444,582.2200000011034,-0.06125751923641835 +116445,582.2250000011035,-0.06125635383692428 +116446,582.2300000011036,-0.061255188686839816 +116447,582.2350000011037,-0.06125402378607365 +116448,582.2400000011038,-0.06125285913453455 +116449,582.2450000011039,-0.06125169473213137 +116450,582.250000001104,-0.06125053057877308 +116451,582.2550000011041,-0.06124936667436875 +116452,582.2600000011042,-0.061248203018827496 +116453,582.2650000011043,-0.06124703961205859 +116454,582.2700000011044,-0.061245876453971365 +116455,582.2750000011046,-0.06124471354447525 +116456,582.2800000011047,-0.06124355088347977 +116457,582.2850000011048,-0.061242388470894554 +116458,582.2900000011049,-0.061241226306629315 +116459,582.295000001105,-0.061240064390593874 +116460,582.3000000011051,-0.061238902722698114 +116461,582.3050000011052,-0.06123774130285203 +116462,582.3100000011053,-0.06123658013096572 +116463,582.3150000011054,-0.06123541920694936 +116464,582.3200000011055,-0.06123425853071324 +116465,582.3250000011056,-0.06123309810216769 +116466,582.3300000011058,-0.06123193792122321 +116467,582.3350000011059,-0.06123077798779032 +116468,582.340000001106,-0.061229618301779684 +116469,582.3450000011061,-0.061228458863102034 +116470,582.3500000011062,-0.061227299671668206 +116471,582.3550000011063,-0.06122614072738911 +116472,582.3600000011064,-0.06122498203017577 +116473,582.3650000011065,-0.06122382357993928 +116474,582.3700000011066,-0.061222665376590824 +116475,582.3750000011067,-0.06122150742004172 +116476,582.3800000011069,-0.06122034971020333 +116477,582.385000001107,-0.06121919224698711 +116478,582.3900000011071,-0.06121803503030464 +116479,582.3950000011072,-0.061216878060067544 +116480,582.4000000011073,-0.061215721336187585 +116481,582.4050000011074,-0.0612145648585766 +116482,582.4100000011075,-0.06121340862714649 +116483,582.4150000011076,-0.0612122526418093 +116484,582.4200000011077,-0.06121109690247711 +116485,582.4250000011078,-0.061209941409062114 +116486,582.4300000011079,-0.0612087861614766 +116487,582.435000001108,-0.06120763115963292 +116488,582.4400000011082,-0.06120647640344357 +116489,582.4450000011083,-0.06120532189282109 +116490,582.4500000011084,-0.06120416762767811 +116491,582.4550000011085,-0.06120301360792736 +116492,582.4600000011086,-0.06120185983348166 +116493,582.4650000011087,-0.06120070630425393 +116494,582.4700000011088,-0.06119955302015716 +116495,582.4750000011089,-0.061198399981104434 +116496,582.480000001109,-0.06119724718700891 +116497,582.4850000011091,-0.061196094637783874 +116498,582.4900000011093,-0.06119494233334267 +116499,582.4950000011094,-0.061193790273598725 +116500,582.5000000011095,-0.061192638458465565 +116501,582.5050000011096,-0.061191486887856826 +116502,582.5100000011097,-0.061190335561686196 +116503,582.5150000011098,-0.061189184479867466 +116504,582.5200000011099,-0.061188033642314496 +116505,582.52500000111,-0.06118688304894127 +116506,582.5300000011101,-0.06118573269966183 +116507,582.5350000011102,-0.06118458259439032 +116508,582.5400000011103,-0.06118343273304096 +116509,582.5450000011105,-0.06118228311552806 +116510,582.5500000011106,-0.061181133741766036 +116511,582.5550000011107,-0.061179984611669354 +116512,582.5600000011108,-0.061178835725152585 +116513,582.5650000011109,-0.061177687082130394 +116514,582.570000001111,-0.06117653868251752 +116515,582.5750000011111,-0.0611753905262288 +116516,582.5800000011112,-0.061174242613179136 +116517,582.5850000011113,-0.061173094943283546 +116518,582.5900000011114,-0.06117194751645711 +116519,582.5950000011115,-0.06117080033261499 +116520,582.6000000011117,-0.061169653391672456 +116521,582.6050000011118,-0.061168506693544844 +116522,582.6100000011119,-0.06116736023814758 +116523,582.615000001112,-0.06116621402539619 +116524,582.6200000011121,-0.06116506805520625 +116525,582.6250000011122,-0.061163922327493465 +116526,582.6300000011123,-0.06116277684217359 +116527,582.6350000011124,-0.06116163159916248 +116528,582.6400000011125,-0.06116048659837606 +116529,582.6450000011126,-0.06115934183973036 +116530,582.6500000011127,-0.06115819732314148 +116531,582.6550000011129,-0.06115705304852561 +116532,582.660000001113,-0.06115590901579901 +116533,582.6650000011131,-0.06115476522487805 +116534,582.6700000011132,-0.061153621675679164 +116535,582.6750000011133,-0.06115247836811888 +116536,582.6800000011134,-0.06115133530211379 +116537,582.6850000011135,-0.06115019247758059 +116538,582.6900000011136,-0.06114904989443605 +116539,582.6950000011137,-0.06114790755259702 +116540,582.7000000011138,-0.061146765451980445 +116541,582.705000001114,-0.06114562359250334 +116542,582.710000001114,-0.06114448197408282 +116543,582.7150000011142,-0.06114334059663605 +116544,582.7200000011143,-0.06114219946008031 +116545,582.7250000011144,-0.06114105856433294 +116546,582.7300000011145,-0.06113991790931138 +116547,582.7350000011146,-0.06113877749493314 +116548,582.7400000011147,-0.061137637321115816 +116549,582.7450000011148,-0.061136497387777086 +116550,582.7500000011149,-0.0611353576948347 +116551,582.755000001115,-0.0611342182422065 +116552,582.7600000011151,-0.06113307902981042 +116553,582.7650000011153,-0.06113194005756445 +116554,582.7700000011154,-0.061130801325386674 +116555,582.7750000011155,-0.06112966283319526 +116556,582.7800000011156,-0.061128524580908436 +116557,582.7850000011157,-0.06112738656844453 +116558,582.7900000011158,-0.061126248795721976 +116559,582.7950000011159,-0.061125111262659244 +116560,582.800000001116,-0.0611239739691749 +116561,582.8050000011161,-0.06112283691518759 +116562,582.8100000011162,-0.06112170010061604 +116563,582.8150000011163,-0.061120563525379056 +116564,582.8200000011165,-0.061119427189395524 +116565,582.8250000011166,-0.06111829109258442 +116566,582.8300000011167,-0.06111715523486479 +116567,582.8350000011168,-0.06111601961615574 +116568,582.8400000011169,-0.061114884236376496 +116569,582.845000001117,-0.06111374909544634 +116570,582.8500000011171,-0.06111261419328461 +116571,582.8550000011172,-0.06111147952981078 +116572,582.8600000011173,-0.06111034510494436 +116573,582.8650000011174,-0.061109210918604946 +116574,582.8700000011175,-0.06110807697071222 +116575,582.8750000011177,-0.06110694326118593 +116576,582.8800000011178,-0.06110580978994594 +116577,582.8850000011179,-0.061104676556912124 +116578,582.890000001118,-0.0611035435620045 +116579,582.8950000011181,-0.061102410805143136 +116580,582.9000000011182,-0.06110127828624817 +116581,582.9050000011183,-0.06110014600523984 +116582,582.9100000011184,-0.06109901396203843 +116583,582.9150000011185,-0.06109788215656434 +116584,582.9200000011186,-0.06109675058873802 +116585,582.9250000011187,-0.06109561925848 +116586,582.9300000011189,-0.0610944881657109 +116587,582.935000001119,-0.06109335731035141 +116588,582.9400000011191,-0.0610922266923223 +116589,582.9450000011192,-0.061091096311544406 +116590,582.9500000011193,-0.06108996616793866 +116591,582.9550000011194,-0.06108883626142604 +116592,582.9600000011195,-0.06108770659192763 +116593,582.9650000011196,-0.06108657715936458 +116594,582.9700000011197,-0.06108544796365813 +116595,582.9750000011198,-0.06108431900472957 +116596,582.98000000112,-0.06108319028250027 +116597,582.98500000112,-0.06108206179689169 +116598,582.9900000011202,-0.061080933547825365 +116599,582.9950000011203,-0.0610798055352229 +116600,583.0000000011204,-0.06107867775900599 +116601,583.0050000011205,-0.06107755021909637 +116602,583.0100000011206,-0.06107642291541588 +116603,583.0150000011207,-0.06107529584788642 +116604,583.0200000011208,-0.061074169016429994 +116605,583.0250000011209,-0.06107304242096865 +116606,583.030000001121,-0.061071916061424515 +116607,583.0350000011211,-0.06107078993771981 +116608,583.0400000011213,-0.0610696640497768 +116609,583.0450000011214,-0.06106853839751786 +116610,583.0500000011215,-0.0610674129808654 +116611,583.0550000011216,-0.06106628779974194 +116612,583.0600000011217,-0.06106516285407007 +116613,583.0650000011218,-0.061064038143772426 +116614,583.0700000011219,-0.06106291366877173 +116615,583.075000001122,-0.061061789428990806 +116616,583.0800000011221,-0.061060665424352525 +116617,583.0850000011222,-0.06105954165477982 +116618,583.0900000011223,-0.06105841812019574 +116619,583.0950000011225,-0.061057294820523356 +116620,583.1000000011226,-0.061056171755685854 +116621,583.1050000011227,-0.061055048925606474 +116622,583.1100000011228,-0.06105392633020853 +116623,583.1150000011229,-0.06105280396941541 +116624,583.120000001123,-0.061051681843150574 +116625,583.1250000011231,-0.061050559951337575 +116626,583.1300000011232,-0.06104943829390001 +116627,583.1350000011233,-0.06104831687076155 +116628,583.1400000011234,-0.06104719568184597 +116629,583.1450000011235,-0.06104607472707707 +116630,583.1500000011237,-0.061044954006378764 +116631,583.1550000011238,-0.061043833519675 +116632,583.1600000011239,-0.06104271326688985 +116633,583.165000001124,-0.061041593247947404 +116634,583.1700000011241,-0.061040473462771874 +116635,583.1750000011242,-0.061039353911287494 +116636,583.1800000011243,-0.061038234593418596 +116637,583.1850000011244,-0.06103711550908957 +116638,583.1900000011245,-0.06103599665822492 +116639,583.1950000011246,-0.06103487804074916 +116640,583.2000000011247,-0.061033759656586924 +116641,583.2050000011249,-0.06103264150566288 +116642,583.210000001125,-0.06103152358790179 +116643,583.2150000011251,-0.06103040590322849 +116644,583.2200000011252,-0.061029288451567854 +116645,583.2250000011253,-0.06102817123284487 +116646,583.2300000011254,-0.061027054246984576 +116647,583.2350000011255,-0.06102593749391208 +116648,583.2400000011256,-0.061024820973552565 +116649,583.2450000011257,-0.06102370468583128 +116650,583.2500000011258,-0.06102258863067352 +116651,583.255000001126,-0.06102147280800472 +116652,583.2600000011261,-0.0610203572177503 +116653,583.2650000011262,-0.0610192418598358 +116654,583.2700000011263,-0.061018126734186835 +116655,583.2750000011264,-0.06101701184072907 +116656,583.2800000011265,-0.06101589717938822 +116657,583.2850000011266,-0.06101478275009012 +116658,583.2900000011267,-0.061013668552760636 +116659,583.2950000011268,-0.06101255458732571 +116660,583.3000000011269,-0.061011440853711366 +116661,583.305000001127,-0.06101032735184369 +116662,583.3100000011272,-0.061009214081648826 +116663,583.3150000011273,-0.06100810104305299 +116664,583.3200000011274,-0.06100698823598249 +116665,583.3250000011275,-0.061005875660363675 +116666,583.3300000011276,-0.06100476331612298 +116667,583.3350000011277,-0.06100365120318689 +116668,583.3400000011278,-0.061002539321481974 +116669,583.3450000011279,-0.06100142767093486 +116670,583.350000001128,-0.06100031625147226 +116671,583.3550000011281,-0.06099920506302092 +116672,583.3600000011282,-0.0609980941055077 +116673,583.3650000011284,-0.0609969833788595 +116674,583.3700000011285,-0.060995872883003274 +116675,583.3750000011286,-0.06099476261786607 +116676,583.3800000011287,-0.06099365258337501 +116677,583.3850000011288,-0.06099254277945725 +116678,583.3900000011289,-0.060991433206040044 +116679,583.395000001129,-0.06099032386305068 +116680,583.4000000011291,-0.060989214750416534 +116681,583.4050000011292,-0.06098810586806508 +116682,583.4100000011293,-0.060986997215923794 +116683,583.4150000011294,-0.06098588879392026 +116684,583.4200000011296,-0.06098478060198211 +116685,583.4250000011297,-0.060983672640037075 +116686,583.4300000011298,-0.060982564908012904 +116687,583.4350000011299,-0.060981457405837464 +116688,583.44000000113,-0.06098035013343865 +116689,583.4450000011301,-0.060979243090744435 +116690,583.4500000011302,-0.06097813627768285 +116691,583.4550000011303,-0.060977029694182026 +116692,583.4600000011304,-0.060975923340170116 +116693,583.4650000011305,-0.06097481721557536 +116694,583.4700000011306,-0.06097371132032605 +116695,583.4750000011308,-0.06097260565435056 +116696,583.4800000011309,-0.06097150021757733 +116697,583.485000001131,-0.06097039500993486 +116698,583.4900000011311,-0.06096929003135171 +116699,583.4950000011312,-0.06096818528175651 +116700,583.5000000011313,-0.06096708076107794 +116701,583.5050000011314,-0.06096597646924478 +116702,583.5100000011315,-0.060964872406185845 +116703,583.5150000011316,-0.06096376857183003 +116704,583.5200000011317,-0.06096266496610628 +116705,583.5250000011318,-0.060961561588943614 +116706,583.530000001132,-0.06096045844027111 +116707,583.5350000011321,-0.060959355520017924 +116708,583.5400000011322,-0.06095825282811326 +116709,583.5450000011323,-0.060957150364486394 +116710,583.5500000011324,-0.06095604812906667 +116711,583.5550000011325,-0.060954946121783496 +116712,583.5600000011326,-0.06095384434256633 +116713,583.5650000011327,-0.06095274279134469 +116714,583.5700000011328,-0.0609516414680482 +116715,583.5750000011329,-0.060950540372606485 +116716,583.580000001133,-0.0609494395049493 +116717,583.5850000011332,-0.060948338865006405 +116718,583.5900000011333,-0.06094723845270765 +116719,583.5950000011334,-0.06094613826798296 +116720,583.6000000011335,-0.0609450383107623 +116721,583.6050000011336,-0.060943938580975715 +116722,583.6100000011337,-0.060942839078553294 +116723,583.6150000011338,-0.060941739803425196 +116724,583.6200000011339,-0.060940640755521656 +116725,583.625000001134,-0.06093954193477296 +116726,583.6300000011341,-0.06093844334110946 +116727,583.6350000011342,-0.060937344974461585 +116728,583.6400000011344,-0.06093624683475979 +116729,583.6450000011345,-0.06093514892193461 +116730,583.6500000011346,-0.06093405123591667 +116731,583.6550000011347,-0.06093295377663661 +116732,583.6600000011348,-0.06093185654402515 +116733,583.6650000011349,-0.06093075953801309 +116734,583.670000001135,-0.06092966275853128 +116735,583.6750000011351,-0.06092856620551062 +116736,583.6800000011352,-0.0609274698788821 +116737,583.6850000011353,-0.060926373778576716 +116738,583.6900000011354,-0.0609252779045256 +116739,583.6950000011356,-0.06092418225665989 +116740,583.7000000011357,-0.060923086834910795 +116741,583.7050000011358,-0.0609219916392096 +116742,583.7100000011359,-0.06092089666948765 +116743,583.715000001136,-0.06091980192567634 +116744,583.7200000011361,-0.060918707407707134 +116745,583.7250000011362,-0.06091761311551155 +116746,583.7300000011363,-0.060916519049021164 +116747,583.7350000011364,-0.06091542520816763 +116748,583.7400000011365,-0.06091433159288265 +116749,583.7450000011366,-0.06091323820309798 +116750,583.7500000011368,-0.06091214503874544 +116751,583.7550000011369,-0.06091105209975693 +116752,583.760000001137,-0.06090995938606439 +116753,583.7650000011371,-0.060908866897599806 +116754,583.7700000011372,-0.06090777463429527 +116755,583.7750000011373,-0.06090668259608289 +116756,583.7800000011374,-0.06090559078289485 +116757,583.7850000011375,-0.060904499194663404 +116758,583.7900000011376,-0.06090340783132085 +116759,583.7950000011377,-0.060902316692799545 +116760,583.8000000011378,-0.06090122577903192 +116761,583.805000001138,-0.06090013508995044 +116762,583.8100000011381,-0.06089904462548766 +116763,583.8150000011382,-0.060897954385576186 +116764,583.8200000011383,-0.060896864370148664 +116765,583.8250000011384,-0.06089577457913782 +116766,583.8300000011385,-0.060894685012476434 +116767,583.8350000011386,-0.06089359567009733 +116768,583.8400000011387,-0.06089250655193341 +116769,583.8450000011388,-0.06089141765791761 +116770,583.8500000011389,-0.06089032898798297 +116771,583.855000001139,-0.06088924054206254 +116772,583.8600000011392,-0.06088815232008946 +116773,583.8650000011393,-0.06088706432199692 +116774,583.8700000011394,-0.06088597654771814 +116775,583.8750000011395,-0.06088488899718645 +116776,583.8800000011396,-0.060883801670335205 +116777,583.8850000011397,-0.06088271456709781 +116778,583.8900000011398,-0.060881627687407756 +116779,583.8950000011399,-0.060880541031198575 +116780,583.90000000114,-0.060879454598403854 +116781,583.9050000011401,-0.060878368388957244 +116782,583.9100000011402,-0.060877282402792464 +116783,583.9150000011404,-0.06087619663984326 +116784,583.9200000011405,-0.060875111100043455 +116785,583.9250000011406,-0.06087402578332694 +116786,583.9300000011407,-0.060872940689627654 +116787,583.9350000011408,-0.060871855818879585 +116788,583.9400000011409,-0.06087077117101679 +116789,583.945000001141,-0.06086968674597335 +116790,583.9500000011411,-0.06086860254368347 +116791,583.9550000011412,-0.06086751856408134 +116792,583.9600000011413,-0.060866434807101244 +116793,583.9650000011414,-0.06086535127267753 +116794,583.9700000011416,-0.060864267960744574 +116795,583.9750000011417,-0.060863184871236826 +116796,583.9800000011418,-0.060862102004088786 +116797,583.9850000011419,-0.06086101935923502 +116798,583.990000001142,-0.06085993693661014 +116799,583.9950000011421,-0.060858854736148826 +116800,584.0000000011422,-0.0608577727577858 +116801,584.0050000011423,-0.06085669100145583 +116802,584.0100000011424,-0.060855609467093785 +116803,584.0150000011425,-0.06085452815463454 +116804,584.0200000011426,-0.06085344706401306 +116805,584.0250000011428,-0.06085236619516432 +116806,584.0300000011429,-0.06085128554802343 +116807,584.035000001143,-0.060850205122525466 +116808,584.0400000011431,-0.06084912491860563 +116809,584.0450000011432,-0.060848044936199115 +116810,584.0500000011433,-0.06084696517524124 +116811,584.0550000011434,-0.06084588563566732 +116812,584.0600000011435,-0.060844806317412764 +116813,584.0650000011436,-0.060843727220413 +116814,584.0700000011437,-0.060842648344603546 +116815,584.0750000011438,-0.060841569689919967 +116816,584.080000001144,-0.060840491256297854 +116817,584.0850000011441,-0.06083941304367288 +116818,584.0900000011442,-0.06083833505198077 +116819,584.0950000011443,-0.06083725728115729 +116820,584.1000000011444,-0.060836179731138286 +116821,584.1050000011445,-0.060835102401859645 +116822,584.1100000011446,-0.060834025293257286 +116823,584.1150000011447,-0.060832948405267206 +116824,584.1200000011448,-0.060831871737825456 +116825,584.1250000011449,-0.06083079529086814 +116826,584.130000001145,-0.0608297190643314 +116827,584.1350000011452,-0.06082864305815146 +116828,584.1400000011453,-0.06082756727226458 +116829,584.1450000011454,-0.06082649170660706 +116830,584.1500000011455,-0.06082541636111528 +116831,584.1550000011456,-0.060824341235725644 +116832,584.1600000011457,-0.06082326633037465 +116833,584.1650000011458,-0.06082219164499882 +116834,584.1700000011459,-0.06082111717953474 +116835,584.175000001146,-0.06082004293391903 +116836,584.1800000011461,-0.0608189689080884 +116837,584.1850000011462,-0.06081789510197956 +116838,584.1900000011464,-0.06081682151552933 +116839,584.1950000011465,-0.06081574814867455 +116840,584.2000000011466,-0.06081467500135212 +116841,584.2050000011467,-0.060813602073498986 +116842,584.2100000011468,-0.06081252936505216 +116843,584.2150000011469,-0.060811456875948695 +116844,584.220000001147,-0.06081038460612571 +116845,584.2250000011471,-0.06080931255552035 +116846,584.2300000011472,-0.060808240724069845 +116847,584.2350000011473,-0.06080716911171146 +116848,584.2400000011475,-0.0608060977183825 +116849,584.2450000011476,-0.060805026544020355 +116850,584.2500000011477,-0.06080395558856242 +116851,584.2550000011478,-0.06080288485194619 +116852,584.2600000011479,-0.06080181433410918 +116853,584.265000001148,-0.06080074403498898 +116854,584.2700000011481,-0.060799673954523216 +116855,584.2750000011482,-0.06079860409264957 +116856,584.2800000011483,-0.06079753444930576 +116857,584.2850000011484,-0.060796465024429584 +116858,584.2900000011485,-0.060795395817958876 +116859,584.2950000011487,-0.06079432682983152 +116860,584.3000000011488,-0.060793258059985464 +116861,584.3050000011489,-0.06079218950835868 +116862,584.310000001149,-0.06079112117488921 +116863,584.3150000011491,-0.06079005305951516 +116864,584.3200000011492,-0.06078898516217465 +116865,584.3250000011493,-0.060787917482805896 +116866,584.3300000011494,-0.06078685002134712 +116867,584.3350000011495,-0.06078578277773663 +116868,584.3400000011496,-0.06078471575191276 +116869,584.3450000011497,-0.06078364894381392 +116870,584.3500000011499,-0.06078258235337853 +116871,584.35500000115,-0.06078151598054511 +116872,584.3600000011501,-0.06078044982525219 +116873,584.3650000011502,-0.060779383887438386 +116874,584.3700000011503,-0.06077831816704233 +116875,584.3750000011504,-0.06077725266400272 +116876,584.3800000011505,-0.0607761873782583 +116877,584.3850000011506,-0.06077512230974786 +116878,584.3900000011507,-0.060774057458410254 +116879,584.3950000011508,-0.060772992824184385 +116880,584.4000000011509,-0.060771928407009186 +116881,584.405000001151,-0.06077086420682366 +116882,584.4100000011512,-0.06076980022356685 +116883,584.4150000011513,-0.060768736457177855 +116884,584.4200000011514,-0.06076767290759581 +116885,584.4250000011515,-0.06076660957475991 +116886,584.4300000011516,-0.0607655464586094 +116887,584.4350000011517,-0.06076448355908356 +116888,584.4400000011518,-0.06076342087612174 +116889,584.4450000011519,-0.06076235840966333 +116890,584.450000001152,-0.060761296159647774 +116891,584.4550000011521,-0.06076023412601454 +116892,584.4600000011523,-0.06075917230870319 +116893,584.4650000011524,-0.06075811070765329 +116894,584.4700000011525,-0.06075704932280448 +116895,584.4750000011526,-0.06075598815409643 +116896,584.4800000011527,-0.06075492720146889 +116897,584.4850000011528,-0.06075386646486162 +116898,584.4900000011529,-0.06075280594421446 +116899,584.495000001153,-0.060751745639467274 +116900,584.5000000011531,-0.06075068555055999 +116901,584.5050000011532,-0.06074962567743259 +116902,584.5100000011533,-0.0607485660200251 +116903,584.5150000011535,-0.06074750657827755 +116904,584.5200000011536,-0.06074644735213009 +116905,584.5250000011537,-0.060745388341522884 +116906,584.5300000011538,-0.06074432954639613 +116907,584.5350000011539,-0.06074327096669009 +116908,584.540000001154,-0.06074221260234508 +116909,584.5450000011541,-0.06074115445330144 +116910,584.5500000011542,-0.060740096519499576 +116911,584.5550000011543,-0.06073903880087994 +116912,584.5600000011544,-0.06073798129738303 +116913,584.5650000011545,-0.0607369240089494 +116914,584.5700000011547,-0.060735866935519627 +116915,584.5750000011548,-0.06073481007703436 +116916,584.5800000011549,-0.06073375343343426 +116917,584.585000001155,-0.0607326970046601 +116918,584.5900000011551,-0.06073164079065262 +116919,584.5950000011552,-0.06073058479135267 +116920,584.6000000011553,-0.06072952900670113 +116921,584.6050000011554,-0.0607284734366389 +116922,584.6100000011555,-0.060727418081106946 +116923,584.6150000011556,-0.060726362940046304 +116924,584.6200000011557,-0.06072530801339801 +116925,584.6250000011559,-0.06072425330110319 +116926,584.630000001156,-0.06072319880310299 +116927,584.6350000011561,-0.0607221445193386 +116928,584.6400000011562,-0.060721090449751276 +116929,584.6450000011563,-0.06072003659428231 +116930,584.6500000011564,-0.06071898295287302 +116931,584.6550000011565,-0.06071792952546483 +116932,584.6600000011566,-0.06071687631199913 +116933,584.6650000011567,-0.060715823312417413 +116934,584.6700000011568,-0.0607147705266612 +116935,584.675000001157,-0.060713717954672064 +116936,584.680000001157,-0.0607126655963916 +116937,584.6850000011572,-0.060711613451761494 +116938,584.6900000011573,-0.06071056152072343 +116939,584.6950000011574,-0.06070950980321917 +116940,584.7000000011575,-0.060708458299190485 +116941,584.7050000011576,-0.06070740700857924 +116942,584.7100000011577,-0.06070635593132731 +116943,584.7150000011578,-0.060705305067376626 +116944,584.7200000011579,-0.06070425441666919 +116945,584.725000001158,-0.06070320397914699 +116946,584.7300000011581,-0.0607021537547521 +116947,584.7350000011583,-0.060701103743426646 +116948,584.7400000011584,-0.06070005394511277 +116949,584.7450000011585,-0.06069900435975268 +116950,584.7500000011586,-0.060697954987288624 +116951,584.7550000011587,-0.06069690582766289 +116952,584.7600000011588,-0.060695856880817814 +116953,584.7650000011589,-0.060694808146695776 +116954,584.770000001159,-0.060693759625239194 +116955,584.7750000011591,-0.06069271131639054 +116956,584.7800000011592,-0.06069166322009234 +116957,584.7850000011593,-0.06069061533628714 +116958,584.7900000011595,-0.06068956766491755 +116959,584.7950000011596,-0.06068852020592621 +116960,584.8000000011597,-0.06068747295925581 +116961,584.8050000011598,-0.06068642592484909 +116962,584.8100000011599,-0.060685379102648825 +116963,584.81500000116,-0.06068433249259783 +116964,584.8200000011601,-0.06068328609463899 +116965,584.8250000011602,-0.06068223990871519 +116966,584.8300000011603,-0.060681193934769395 +116967,584.8350000011604,-0.060680148172744613 +116968,584.8400000011605,-0.06067910262258387 +116969,584.8450000011607,-0.060678057284230265 +116970,584.8500000011608,-0.06067701215762692 +116971,584.8550000011609,-0.06067596724271701 +116972,584.860000001161,-0.060674922539443746 +116973,584.8650000011611,-0.06067387804775038 +116974,584.8700000011612,-0.06067283376758022 +116975,584.8750000011613,-0.06067178969887661 +116976,584.8800000011614,-0.06067074584158294 +116977,584.8850000011615,-0.06066970219564265 +116978,584.8900000011616,-0.06066865876099918 +116979,584.8950000011617,-0.06066761553759608 +116980,584.9000000011619,-0.0606665725253769 +116981,584.905000001162,-0.06066552972428524 +116982,584.9100000011621,-0.060664487134264734 +116983,584.9150000011622,-0.060663444755259095 +116984,584.9200000011623,-0.06066240258721203 +116985,584.9250000011624,-0.06066136063006732 +116986,584.9300000011625,-0.0606603188837688 +116987,584.9350000011626,-0.06065927734826029 +116988,584.9400000011627,-0.06065823602348572 +116989,584.9450000011628,-0.06065719490938902 +116990,584.950000001163,-0.060656154005914176 +116991,584.9550000011631,-0.060655113313005216 +116992,584.9600000011632,-0.06065407283060621 +116993,584.9650000011633,-0.060653032558661266 +116994,584.9700000011634,-0.06065199249711454 +116995,584.9750000011635,-0.06065095264591021 +116996,584.9800000011636,-0.06064991300499254 +116997,584.9850000011637,-0.060648873574305796 +116998,584.9900000011638,-0.0606478343537943 +116999,584.9950000011639,-0.06064679534340241 +117000,585.000000001164,-0.06064575654307451 +117001,585.0050000011641,-0.06064471795275508 +117002,585.0100000011643,-0.06064367957238858 +117003,585.0150000011644,-0.060642641401919564 +117004,585.0200000011645,-0.060641603441292574 +117005,585.0250000011646,-0.06064056569045224 +117006,585.0300000011647,-0.06063952814934321 +117007,585.0350000011648,-0.060638490817910166 +117008,585.0400000011649,-0.060637453696097854 +117009,585.045000001165,-0.06063641678385103 +117010,585.0500000011651,-0.060635380081114534 +117011,585.0550000011652,-0.06063434358783321 +117012,585.0600000011653,-0.060633307303951965 +117013,585.0650000011655,-0.06063227122941574 +117014,585.0700000011656,-0.0606312353641695 +117015,585.0750000011657,-0.06063019970815826 +117016,585.0800000011658,-0.060629164261327105 +117017,585.0850000011659,-0.060628129023621115 +117018,585.090000001166,-0.06062709399498545 +117019,585.0950000011661,-0.060626059175365274 +117020,585.1000000011662,-0.06062502456470581 +117021,585.1050000011663,-0.06062399016295234 +117022,585.1100000011664,-0.06062295597005016 +117023,585.1150000011665,-0.0606219219859446 +117024,585.1200000011667,-0.06062088821058106 +117025,585.1250000011668,-0.06061985464390496 +117026,585.1300000011669,-0.060618821285861754 +117027,585.135000001167,-0.060617788136396955 +117028,585.1400000011671,-0.06061675519545611 +117029,585.1450000011672,-0.06061572246298479 +117030,585.1500000011673,-0.060614689938928636 +117031,585.1550000011674,-0.06061365762323329 +117032,585.1600000011675,-0.060612625515844475 +117033,585.1650000011676,-0.06061159361670792 +117034,585.1700000011678,-0.06061056192576942 +117035,585.1750000011679,-0.06060953044297478 +117036,585.180000001168,-0.06060849916826986 +117037,585.1850000011681,-0.06060746810160057 +117038,585.1900000011682,-0.06060643724291286 +117039,585.1950000011683,-0.0606054065921527 +117040,585.2000000011684,-0.0606043761492661 +117041,585.2050000011685,-0.06060334591419914 +117042,585.2100000011686,-0.060602315886897885 +117043,585.2150000011687,-0.060601286067308496 +117044,585.2200000011688,-0.06060025645537714 +117045,585.225000001169,-0.060599227051050024 +117046,585.2300000011691,-0.06059819785427341 +117047,585.2350000011692,-0.06059716886499358 +117048,585.2400000011693,-0.06059614008315687 +117049,585.2450000011694,-0.06059511150870965 +117050,585.2500000011695,-0.06059408314159834 +117051,585.2550000011696,-0.06059305498176936 +117052,585.2600000011697,-0.0605920270291692 +117053,585.2650000011698,-0.06059099928374441 +117054,585.2700000011699,-0.06058997174544152 +117055,585.27500000117,-0.060588944414207146 +117056,585.2800000011702,-0.06058791728998793 +117057,585.2850000011703,-0.06058689037273054 +117058,585.2900000011704,-0.06058586366238169 +117059,585.2950000011705,-0.06058483715888812 +117060,585.3000000011706,-0.06058381086219664 +117061,585.3050000011707,-0.06058278477225409 +117062,585.3100000011708,-0.060581758889007305 +117063,585.3150000011709,-0.06058073321240322 +117064,585.320000001171,-0.060579707742388765 +117065,585.3250000011711,-0.06057868247891092 +117066,585.3300000011712,-0.060577657421916696 +117067,585.3350000011714,-0.06057663257135316 +117068,585.3400000011715,-0.06057560792716741 +117069,585.3450000011716,-0.060574583489306576 +117070,585.3500000011717,-0.06057355925771782 +117071,585.3550000011718,-0.060572535232348346 +117072,585.3600000011719,-0.0605715114131454 +117073,585.365000001172,-0.06057048780005627 +117074,585.3700000011721,-0.06056946439302827 +117075,585.3750000011722,-0.060568441192008764 +117076,585.3800000011723,-0.060567418196945125 +117077,585.3850000011724,-0.060566395407784815 +117078,585.3900000011726,-0.06056537282447528 +117079,585.3950000011727,-0.06056435044696402 +117080,585.4000000011728,-0.060563328275198586 +117081,585.4050000011729,-0.060562306309126554 +117082,585.410000001173,-0.06056128454869554 +117083,585.4150000011731,-0.060560262993853205 +117084,585.4200000011732,-0.060559241644547214 +117085,585.4250000011733,-0.06055822050072531 +117086,585.4300000011734,-0.060557199562335275 +117087,585.4350000011735,-0.06055617882932487 +117088,585.4400000011736,-0.06055515830164195 +117089,585.4450000011738,-0.060554137979234396 +117090,585.4500000011739,-0.0605531178620501 +117091,585.455000001174,-0.060552097950037014 +117092,585.4600000011741,-0.06055107824314311 +117093,585.4650000011742,-0.06055005874131642 +117094,585.4700000011743,-0.06054903944450499 +117095,585.4750000011744,-0.060548020352656905 +117096,585.4800000011745,-0.06054700146572031 +117097,585.4850000011746,-0.06054598278364336 +117098,585.4900000011747,-0.06054496430637424 +117099,585.4950000011748,-0.06054394603386121 +117100,585.500000001175,-0.060542927966052505 +117101,585.5050000011751,-0.06054191010289645 +117102,585.5100000011752,-0.060540892444341396 +117103,585.5150000011753,-0.06053987499033572 +117104,585.5200000011754,-0.060538857740827824 +117105,585.5250000011755,-0.06053784069576616 +117106,585.5300000011756,-0.06053682385509923 +117107,585.5350000011757,-0.06053580721877553 +117108,585.5400000011758,-0.06053479078674363 +117109,585.5450000011759,-0.06053377455895212 +117110,585.550000001176,-0.06053275853534962 +117111,585.5550000011762,-0.06053174271588479 +117112,585.5600000011763,-0.06053072710050634 +117113,585.5650000011764,-0.06052971168916301 +117114,585.5700000011765,-0.06052869648180355 +117115,585.5750000011766,-0.06052768147837676 +117116,585.5800000011767,-0.060526666678831505 +117117,585.5850000011768,-0.06052565208311664 +117118,585.5900000011769,-0.06052463769118107 +117119,585.595000001177,-0.06052362350297375 +117120,585.6000000011771,-0.06052260951844365 +117121,585.6050000011772,-0.060521595737539784 +117122,585.6100000011774,-0.06052058216021121 +117123,585.6150000011775,-0.06051956878640699 +117124,585.6200000011776,-0.06051855561607627 +117125,585.6250000011777,-0.06051754264916818 +117126,585.6300000011778,-0.060516529885631914 +117127,585.6350000011779,-0.0605155173254167 +117128,585.640000001178,-0.060514504968471786 +117129,585.6450000011781,-0.06051349281474646 +117130,585.6500000011782,-0.06051248086419005 +117131,585.6550000011783,-0.060511469116751926 +117132,585.6600000011784,-0.06051045757238147 +117133,585.6650000011786,-0.06050944623102811 +117134,585.6700000011787,-0.06050843509264131 +117135,585.6750000011788,-0.060507424157170565 +117136,585.6800000011789,-0.06050641342456541 +117137,585.685000001179,-0.0605054028947754 +117138,585.6900000011791,-0.06050439256775015 +117139,585.6950000011792,-0.06050338244343928 +117140,585.7000000011793,-0.060502372521792455 +117141,585.7050000011794,-0.060501362802759376 +117142,585.7100000011795,-0.06050035328628978 +117143,585.7150000011796,-0.06049934397233343 +117144,585.7200000011798,-0.06049833486084015 +117145,585.7250000011799,-0.06049732595175975 +117146,585.73000000118,-0.060496317245042106 +117147,585.7350000011801,-0.06049530874063711 +117148,585.7400000011802,-0.06049430043849472 +117149,585.7450000011803,-0.06049329233856489 +117150,585.7500000011804,-0.06049228444079762 +117151,585.7550000011805,-0.06049127674514296 +117152,585.7600000011806,-0.060490269251550974 +117153,585.7650000011807,-0.06048926195997176 +117154,585.7700000011808,-0.060488254870355446 +117155,585.775000001181,-0.060487247982652224 +117156,585.7800000011811,-0.06048624129681228 +117157,585.7850000011812,-0.060485234812785865 +117158,585.7900000011813,-0.060484228530523224 +117159,585.7950000011814,-0.06048322244997468 +117160,585.8000000011815,-0.06048221657109055 +117161,585.8050000011816,-0.06048121089382121 +117162,585.8100000011817,-0.060480205418117064 +117163,585.8150000011818,-0.06047920014392854 +117164,585.8200000011819,-0.0604781950712061 +117165,585.825000001182,-0.06047719019990025 +117166,585.8300000011822,-0.06047618552996153 +117167,585.8350000011823,-0.06047518106134048 +117168,585.8400000011824,-0.06047417679398771 +117169,585.8450000011825,-0.06047317272785385 +117170,585.8500000011826,-0.060472168862889565 +117171,585.8550000011827,-0.060471165199045544 +117172,585.8600000011828,-0.0604701617362725 +117173,585.8650000011829,-0.06046915847452121 +117174,585.870000001183,-0.060468155413742466 +117175,585.8750000011831,-0.06046715255388708 +117176,585.8800000011832,-0.06046614989490591 +117177,585.8850000011834,-0.06046514743674985 +117178,585.8900000011835,-0.06046414517936981 +117179,585.8950000011836,-0.06046314312271674 +117180,585.9000000011837,-0.06046214126674164 +117181,585.9050000011838,-0.06046113961139551 +117182,585.9100000011839,-0.0604601381566294 +117183,585.915000001184,-0.06045913690239439 +117184,585.9200000011841,-0.060458135848641605 +117185,585.9250000011842,-0.06045713499532217 +117186,585.9300000011843,-0.06045613434238726 +117187,585.9350000011844,-0.060455133889788105 +117188,585.9400000011846,-0.06045413363747592 +117189,585.9450000011847,-0.060453133585401976 +117190,585.9500000011848,-0.06045213373351757 +117191,585.9550000011849,-0.060451134081774056 +117192,585.960000001185,-0.06045013463012279 +117193,585.9650000011851,-0.06044913537851515 +117194,585.9700000011852,-0.06044813632690259 +117195,585.9750000011853,-0.06044713747523655 +117196,585.9800000011854,-0.06044613882346852 +117197,585.9850000011855,-0.06044514037155003 +117198,585.9900000011856,-0.06044414211943263 +117199,585.9950000011858,-0.060443144067067904 +117200,586.0000000011859,-0.06044214621440746 +117201,586.005000001186,-0.06044114856140296 +117202,586.0100000011861,-0.06044015110800605 +117203,586.0150000011862,-0.06043915385416847 +117204,586.0200000011863,-0.060438156799841936 +117205,586.0250000011864,-0.06043715994497822 +117206,586.0300000011865,-0.06043616328952914 +117207,586.0350000011866,-0.060435166833446505 +117208,586.0400000011867,-0.06043417057668219 +117209,586.0450000011868,-0.06043317451918809 +117210,586.050000001187,-0.06043217866091611 +117211,586.0550000011871,-0.060431183001818226 +117212,586.0600000011872,-0.06043018754184641 +117213,586.0650000011873,-0.06042919228095268 +117214,586.0700000011874,-0.06042819721908907 +117215,586.0750000011875,-0.060427202356207674 +117216,586.0800000011876,-0.06042620769226059 +117217,586.0850000011877,-0.06042521322719995 +117218,586.0900000011878,-0.060424218960977924 +117219,586.0950000011879,-0.06042322489354672 +117220,586.100000001188,-0.060422231024858546 +117221,586.1050000011882,-0.06042123735486567 +117222,586.1100000011883,-0.06042024388352037 +117223,586.1150000011884,-0.06041925061077498 +117224,586.1200000011885,-0.06041825753658185 +117225,586.1250000011886,-0.06041726466089334 +117226,586.1300000011887,-0.06041627198366186 +117227,586.1350000011888,-0.06041527950483986 +117228,586.1400000011889,-0.060414287224379803 +117229,586.145000001189,-0.06041329514223419 +117230,586.1500000011891,-0.06041230325835554 +117231,586.1550000011893,-0.060411311572696406 +117232,586.1600000011894,-0.06041032008520939 +117233,586.1650000011895,-0.0604093287958471 +117234,586.1700000011896,-0.060408337704562186 +117235,586.1750000011897,-0.06040734681130732 +117236,586.1800000011898,-0.0604063561160352 +117237,586.1850000011899,-0.06040536561869857 +117238,586.19000000119,-0.06040437531925019 +117239,586.1950000011901,-0.060403385217642866 +117240,586.2000000011902,-0.060402395313829405 +117241,586.2050000011903,-0.06040140560776267 +117242,586.2100000011905,-0.060400416099395546 +117243,586.2150000011906,-0.060399426788680925 +117244,586.2200000011907,-0.06039843767557176 +117245,586.2250000011908,-0.060397448760021025 +117246,586.2300000011909,-0.0603964600419817 +117247,586.235000001191,-0.060395471521406834 +117248,586.2400000011911,-0.06039448319824948 +117249,586.2450000011912,-0.0603934950724627 +117250,586.2500000011913,-0.06039250714399964 +117251,586.2550000011914,-0.06039151941281343 +117252,586.2600000011915,-0.060390531878857234 +117253,586.2650000011917,-0.06038954454208427 +117254,586.2700000011918,-0.060388557402447744 +117255,586.2750000011919,-0.060387570459900945 +117256,586.280000001192,-0.06038658371439713 +117257,586.2850000011921,-0.06038559716588965 +117258,586.2900000011922,-0.06038461081433182 +117259,586.2950000011923,-0.060383624659677025 +117260,586.3000000011924,-0.06038263870187866 +117261,586.3050000011925,-0.06038165294089018 +117262,586.3100000011926,-0.06038066737666502 +117263,586.3150000011927,-0.060379682009156666 +117264,586.3200000011929,-0.060378696838318646 +117265,586.325000001193,-0.06037771186410448 +117266,586.3300000011931,-0.06037672708646777 +117267,586.3350000011932,-0.0603757425053621 +117268,586.3400000011933,-0.060374758120741105 +117269,586.3450000011934,-0.06037377393255845 +117270,586.3500000011935,-0.06037278994076781 +117271,586.3550000011936,-0.06037180614532289 +117272,586.3600000011937,-0.060370822546177455 +117273,586.3650000011938,-0.060369839143285246 +117274,586.370000001194,-0.06036885593660009 +117275,586.375000001194,-0.06036787292607579 +117276,586.3800000011942,-0.06036689011166621 +117277,586.3850000011943,-0.060365907493325224 +117278,586.3900000011944,-0.060364925071006756 +117279,586.3950000011945,-0.060363942844664724 +117280,586.4000000011946,-0.0603629608142531 +117281,586.4050000011947,-0.06036197897972588 +117282,586.4100000011948,-0.06036099734103708 +117283,586.4150000011949,-0.060360015898140745 +117284,586.420000001195,-0.06035903465099097 +117285,586.4250000011951,-0.060358053599541835 +117286,586.4300000011953,-0.06035707274374748 +117287,586.4350000011954,-0.06035609208356206 +117288,586.4400000011955,-0.060355111618939764 +117289,586.4450000011956,-0.06035413134983479 +117290,586.4500000011957,-0.06035315127620139 +117291,586.4550000011958,-0.06035217139799383 +117292,586.4600000011959,-0.06035119171516641 +117293,586.465000001196,-0.06035021222767346 +117294,586.4700000011961,-0.0603492329354693 +117295,586.4750000011962,-0.06034825383850833 +117296,586.4800000011963,-0.06034727493674494 +117297,586.4850000011965,-0.06034629623013356 +117298,586.4900000011966,-0.060345317718628666 +117299,586.4950000011967,-0.060344339402184734 +117300,586.5000000011968,-0.06034336128075627 +117301,586.5050000011969,-0.06034238335429781 +117302,586.510000001197,-0.06034140562276393 +117303,586.5150000011971,-0.06034042808610921 +117304,586.5200000011972,-0.06033945074428829 +117305,586.5250000011973,-0.06033847359725578 +117306,586.5300000011974,-0.0603374966449664 +117307,586.5350000011975,-0.060336519887374804 +117308,586.5400000011977,-0.06033554332443575 +117309,586.5450000011978,-0.06033456695610397 +117310,586.5500000011979,-0.06033359078233426 +117311,586.555000001198,-0.060332614803081414 +117312,586.5600000011981,-0.060331639018300263 +117313,586.5650000011982,-0.06033066342794568 +117314,586.5700000011983,-0.06032968803197254 +117315,586.5750000011984,-0.060328712830335765 +117316,586.5800000011985,-0.06032773782299027 +117317,586.5850000011986,-0.06032676300989104 +117318,586.5900000011987,-0.06032578839099307 +117319,586.5950000011989,-0.060324813966251355 +117320,586.600000001199,-0.06032383973562095 +117321,586.6050000011991,-0.060322865699056934 +117322,586.6100000011992,-0.0603218918565144 +117323,586.6150000011993,-0.06032091820794845 +117324,586.6200000011994,-0.06031994475331426 +117325,586.6250000011995,-0.060318971492566986 +117326,586.6300000011996,-0.06031799842566183 +117327,586.6350000011997,-0.06031702555255401 +117328,586.6400000011998,-0.0603160528731988 +117329,586.6450000012,-0.06031508038755146 +117330,586.6500000012,-0.06031410809556731 +117331,586.6550000012002,-0.06031313599720166 +117332,586.6600000012003,-0.06031216409240987 +117333,586.6650000012004,-0.060311192381147335 +117334,586.6700000012005,-0.06031022086336945 +117335,586.6750000012006,-0.060309249539031655 +117336,586.6800000012007,-0.060308278408089395 +117337,586.6850000012008,-0.06030730747049816 +117338,586.6900000012009,-0.06030633672621347 +117339,586.695000001201,-0.060305366175190854 +117340,586.7000000012011,-0.06030439581738587 +117341,586.7050000012013,-0.06030342565275409 +117342,586.7100000012014,-0.06030245568125115 +117343,586.7150000012015,-0.060301485902832665 +117344,586.7200000012016,-0.06030051631745431 +117345,586.7250000012017,-0.060299546925071765 +117346,586.7300000012018,-0.060298577725640755 +117347,586.7350000012019,-0.06029760871911701 +117348,586.740000001202,-0.06029663990545629 +117349,586.7450000012021,-0.06029567128461439 +117350,586.7500000012022,-0.06029470285654712 +117351,586.7550000012023,-0.06029373462121032 +117352,586.7600000012025,-0.06029276657855985 +117353,586.7650000012026,-0.060291798728551615 +117354,586.7700000012027,-0.0602908310711415 +117355,586.7750000012028,-0.060289863606285465 +117356,586.7800000012029,-0.06028889633393946 +117357,586.785000001203,-0.06028792925405949 +117358,586.7900000012031,-0.06028696236660156 +117359,586.7950000012032,-0.06028599567152171 +117360,586.8000000012033,-0.06028502916877599 +117361,586.8050000012034,-0.06028406285832051 +117362,586.8100000012035,-0.060283096740111376 +117363,586.8150000012037,-0.06028213081410472 +117364,586.8200000012038,-0.0602811650802567 +117365,586.8250000012039,-0.0602801995385235 +117366,586.830000001204,-0.06027923418886135 +117367,586.8350000012041,-0.060278269031226475 +117368,586.8400000012042,-0.06027730406557514 +117369,586.8450000012043,-0.06027633929186362 +117370,586.8500000012044,-0.06027537471004823 +117371,586.8550000012045,-0.0602744103200853 +117372,586.8600000012046,-0.06027344612193119 +117373,586.8650000012047,-0.06027248211554229 +117374,586.8700000012049,-0.060271518300875 +117375,586.875000001205,-0.06027055467788576 +117376,586.8800000012051,-0.06026959124653101 +117377,586.8850000012052,-0.06026862800676723 +117378,586.8900000012053,-0.06026766495855094 +117379,586.8950000012054,-0.06026670210183865 +117380,586.9000000012055,-0.06026573943658691 +117381,586.9050000012056,-0.06026477696275232 +117382,586.9100000012057,-0.060263814680291475 +117383,586.9150000012058,-0.06026285258916099 +117384,586.920000001206,-0.0602618906893175 +117385,586.9250000012061,-0.06026092898071769 +117386,586.9300000012062,-0.06025996746331826 +117387,586.9350000012063,-0.06025900613707593 +117388,586.9400000012064,-0.06025804500194744 +117389,586.9450000012065,-0.06025708405788956 +117390,586.9500000012066,-0.06025612330485908 +117391,586.9550000012067,-0.06025516274281281 +117392,586.9600000012068,-0.06025420237170761 +117393,586.9650000012069,-0.06025324219150032 +117394,586.970000001207,-0.060252282202147824 +117395,586.9750000012071,-0.06025132240360705 +117396,586.9800000012073,-0.06025036279583492 +117397,586.9850000012074,-0.0602494033787884 +117398,586.9900000012075,-0.06024844415242445 +117399,586.9950000012076,-0.060247485116700104 +117400,587.0000000012077,-0.06024652627157236 +117401,587.0050000012078,-0.0602455676169983 +117402,587.0100000012079,-0.060244609152934975 +117403,587.015000001208,-0.060243650879339486 +117404,587.0200000012081,-0.06024269279616896 +117405,587.0250000012082,-0.060241734903380535 +117406,587.0300000012084,-0.06024077720093138 +117407,587.0350000012085,-0.060239819688778694 +117408,587.0400000012086,-0.06023886236687969 +117409,587.0450000012087,-0.06023790523519159 +117410,587.0500000012088,-0.060236948293671676 +117411,587.0550000012089,-0.06023599154227722 +117412,587.060000001209,-0.060235034980965524 +117413,587.0650000012091,-0.060234078609693924 +117414,587.0700000012092,-0.06023312242841978 +117415,587.0750000012093,-0.06023216643710045 +117416,587.0800000012094,-0.06023121063569333 +117417,587.0850000012096,-0.06023025502415587 +117418,587.0900000012097,-0.060229299602445496 +117419,587.0950000012098,-0.06022834437051967 +117420,587.1000000012099,-0.06022738932833589 +117421,587.10500000121,-0.060226434475851666 +117422,587.1100000012101,-0.060225479813024535 +117423,587.1150000012102,-0.06022452533981206 +117424,587.1200000012103,-0.06022357105617182 +117425,587.1250000012104,-0.06022261696206141 +117426,587.1300000012105,-0.060221663057438465 +117427,587.1350000012106,-0.060220709342260634 +117428,587.1400000012108,-0.06021975581648559 +117429,587.1450000012109,-0.06021880248007102 +117430,587.150000001211,-0.06021784933297464 +117431,587.1550000012111,-0.06021689637515419 +117432,587.1600000012112,-0.06021594360656745 +117433,587.1650000012113,-0.06021499102717218 +117434,587.1700000012114,-0.06021403863692619 +117435,587.1750000012115,-0.06021308643578732 +117436,587.1800000012116,-0.06021213442371341 +117437,587.1850000012117,-0.06021118260066234 +117438,587.1900000012118,-0.06021023096659201 +117439,587.195000001212,-0.06020927952146033 +117440,587.2000000012121,-0.06020832826522525 +117441,587.2050000012122,-0.060207377197844705 +117442,587.2100000012123,-0.06020642631927672 +117443,587.2150000012124,-0.06020547562947927 +117444,587.2200000012125,-0.06020452512841038 +117445,587.2250000012126,-0.06020357481602812 +117446,587.2300000012127,-0.06020262469229057 +117447,587.2350000012128,-0.0602016747571558 +117448,587.2400000012129,-0.06020072501058195 +117449,587.245000001213,-0.06019977545252714 +117450,587.2500000012132,-0.060198826082949526 +117451,587.2550000012133,-0.06019787690180731 +117452,587.2600000012134,-0.06019692790905869 +117453,587.2650000012135,-0.06019597910466189 +117454,587.2700000012136,-0.060195030488575156 +117455,587.2750000012137,-0.06019408206075676 +117456,587.2800000012138,-0.06019313382116499 +117457,587.2850000012139,-0.060192185769758155 +117458,587.290000001214,-0.060191237906494596 +117459,587.2950000012141,-0.06019029023133267 +117460,587.3000000012142,-0.06018934274423076 +117461,587.3050000012144,-0.06018839544514725 +117462,587.3100000012145,-0.060187448334040584 +117463,587.3150000012146,-0.06018650141086918 +117464,587.3200000012147,-0.06018555467559152 +117465,587.3250000012148,-0.060184608128166076 +117466,587.3300000012149,-0.06018366176855136 +117467,587.335000001215,-0.060182715596705905 +117468,587.3400000012151,-0.06018176961258824 +117469,587.3450000012152,-0.06018082381615696 +117470,587.3500000012153,-0.06017987820737065 +117471,587.3550000012154,-0.06017893278618793 +117472,587.3600000012156,-0.06017798755256742 +117473,587.3650000012157,-0.060177042506467784 +117474,587.3700000012158,-0.0601760976478477 +117475,587.3750000012159,-0.06017515297666587 +117476,587.380000001216,-0.06017420849288101 +117477,587.3850000012161,-0.06017326419645185 +117478,587.3900000012162,-0.060172320087337174 +117479,587.3950000012163,-0.06017137616549575 +117480,587.4000000012164,-0.06017043243088638 +117481,587.4050000012165,-0.060169488883467896 +117482,587.4100000012166,-0.06016854552319913 +117483,587.4150000012168,-0.060167602350038964 +117484,587.4200000012169,-0.06016665936394628 +117485,587.425000001217,-0.060165716564880005 +117486,587.4300000012171,-0.06016477395279904 +117487,587.4350000012172,-0.06016383152766234 +117488,587.4400000012173,-0.06016288928942889 +117489,587.4450000012174,-0.06016194723805768 +117490,587.4500000012175,-0.06016100537350771 +117491,587.4550000012176,-0.060160063695738016 +117492,587.4600000012177,-0.060159122204707656 +117493,587.4650000012178,-0.06015818090037571 +117494,587.470000001218,-0.060157239782701266 +117495,587.4750000012181,-0.06015629885164344 +117496,587.4800000012182,-0.060155358107161376 +117497,587.4850000012183,-0.06015441754921422 +117498,587.4900000012184,-0.06015347717776115 +117499,587.4950000012185,-0.06015253699276137 +117500,587.5000000012186,-0.0601515969941741 +117501,587.5050000012187,-0.06015065718195856 +117502,587.5100000012188,-0.06014971755607404 +117503,587.5150000012189,-0.060148778116479805 +117504,587.520000001219,-0.06014783886313515 +117505,587.5250000012192,-0.0601468997959994 +117506,587.5300000012193,-0.060145960915031896 +117507,587.5350000012194,-0.06014502222019199 +117508,587.5400000012195,-0.06014408371143908 +117509,587.5450000012196,-0.06014314538873255 +117510,587.5500000012197,-0.060142207252031836 +117511,587.5550000012198,-0.060141269301296374 +117512,587.5600000012199,-0.06014033153648562 +117513,587.56500000122,-0.060139393957559066 +117514,587.5700000012201,-0.0601384565644762 +117515,587.5750000012202,-0.06013751935719657 +117516,587.5800000012204,-0.06013658233567969 +117517,587.5850000012205,-0.06013564549988514 +117518,587.5900000012206,-0.0601347088497725 +117519,587.5950000012207,-0.060133772385301355 +117520,587.6000000012208,-0.060132836106431345 +117521,587.6050000012209,-0.06013190001312211 +117522,587.610000001221,-0.06013096410533329 +117523,587.6150000012211,-0.06013002838302459 +117524,587.6200000012212,-0.06012909284615572 +117525,587.6250000012213,-0.06012815749468638 +117526,587.6300000012214,-0.06012722232857631 +117527,587.6350000012216,-0.06012628734778528 +117528,587.6400000012217,-0.060125352552273074 +117529,587.6450000012218,-0.060124417941999485 +117530,587.6500000012219,-0.06012348351692434 +117531,587.655000001222,-0.06012254927700747 +117532,587.6600000012221,-0.060121615222208734 +117533,587.6650000012222,-0.060120681352488006 +117534,587.6700000012223,-0.0601197476678052 +117535,587.6750000012224,-0.060118814168120226 +117536,587.6800000012225,-0.06011788085339301 +117537,587.6850000012226,-0.06011694772358352 +117538,587.6900000012228,-0.060116014778651736 +117539,587.6950000012229,-0.06011508201855764 +117540,587.700000001223,-0.06011414944326125 +117541,587.7050000012231,-0.06011321705272262 +117542,587.7100000012232,-0.06011228484690177 +117543,587.7150000012233,-0.0601113528257588 +117544,587.7200000012234,-0.06011042098925378 +117545,587.7250000012235,-0.06010948933734685 +117546,587.7300000012236,-0.06010855786999811 +117547,587.7350000012237,-0.06010762658716773 +117548,587.7400000012238,-0.06010669548881587 +117549,587.745000001224,-0.06010576457490272 +117550,587.7500000012241,-0.060104833845388485 +117551,587.7550000012242,-0.0601039033002334 +117552,587.7600000012243,-0.0601029729393977 +117553,587.7650000012244,-0.06010204276284165 +117554,587.7700000012245,-0.060101112770525544 +117555,587.7750000012246,-0.060100182962409675 +117556,587.7800000012247,-0.06009925333845436 +117557,587.7850000012248,-0.06009832389861995 +117558,587.7900000012249,-0.06009739464286681 +117559,587.795000001225,-0.06009646557115529 +117560,587.8000000012252,-0.06009553668344583 +117561,587.8050000012253,-0.06009460797969881 +117562,587.8100000012254,-0.06009367945987468 +117563,587.8150000012255,-0.0600927511239339 +117564,587.8200000012256,-0.06009182297183692 +117565,587.8250000012257,-0.06009089500354425 +117566,587.8300000012258,-0.06008996721901639 +117567,587.8350000012259,-0.06008903961821387 +117568,587.840000001226,-0.06008811220109725 +117569,587.8450000012261,-0.060087184967627084 +117570,587.8500000012262,-0.060086257917763945 +117571,587.8550000012264,-0.06008533105146846 +117572,587.8600000012265,-0.060084404368701244 +117573,587.8650000012266,-0.060083477869422926 +117574,587.8700000012267,-0.060082551553594175 +117575,587.8750000012268,-0.060081625421175656 +117576,587.8800000012269,-0.06008069947212809 +117577,587.885000001227,-0.06007977370641217 +117578,587.8900000012271,-0.060078848123988636 +117579,587.8950000012272,-0.06007792272481824 +117580,587.9000000012273,-0.06007699750886175 +117581,587.9050000012274,-0.06007607247607996 +117582,587.9100000012276,-0.060075147626433664 +117583,587.9150000012277,-0.06007422295988368 +117584,587.9200000012278,-0.060073298476390875 +117585,587.9250000012279,-0.0600723741759161 +117586,587.930000001228,-0.060071450058420225 +117587,587.9350000012281,-0.060070526123864154 +117588,587.9400000012282,-0.060069602372208805 +117589,587.9450000012283,-0.06006867880341511 +117590,587.9500000012284,-0.06006775541744403 +117591,587.9550000012285,-0.06006683221425652 +117592,587.9600000012287,-0.060065909193813584 +117593,587.9650000012288,-0.06006498635607622 +117594,587.9700000012289,-0.060064063701005456 +117595,587.975000001229,-0.060063141228562315 +117596,587.9800000012291,-0.06006221893870789 +117597,587.9850000012292,-0.060061296831403224 +117598,587.9900000012293,-0.06006037490660944 +117599,587.9950000012294,-0.060059453164287645 +117600,588.0000000012295,-0.06005853160439897 +117601,588.0050000012296,-0.06005761022690456 +117602,588.0100000012297,-0.06005668903176559 +117603,588.0150000012299,-0.06005576801894324 +117604,588.02000000123,-0.06005484718839873 +117605,588.0250000012301,-0.06005392654009326 +117606,588.0300000012302,-0.06005300607398807 +117607,588.0350000012303,-0.06005208579004443 +117608,588.0400000012304,-0.06005116568822362 +117609,588.0450000012305,-0.060050245768486915 +117610,588.0500000012306,-0.06004932603079563 +117611,588.0550000012307,-0.060048406475111095 +117612,588.0600000012308,-0.06004748710139465 +117613,588.0650000012309,-0.060046567909607676 +117614,588.070000001231,-0.06004564889971153 +117615,588.0750000012312,-0.060044730071667614 +117616,588.0800000012313,-0.060043811425437355 +117617,588.0850000012314,-0.06004289296098219 +117618,588.0900000012315,-0.06004197467826355 +117619,588.0950000012316,-0.060041056577242916 +117620,588.1000000012317,-0.06004013865788177 +117621,588.1050000012318,-0.06003922092014162 +117622,588.1100000012319,-0.06003830336398397 +117623,588.115000001232,-0.060037385989370376 +117624,588.1200000012321,-0.060036468796262385 +117625,588.1250000012323,-0.06003555178462156 +117626,588.1300000012324,-0.06003463495440951 +117627,588.1350000012325,-0.060033718305587826 +117628,588.1400000012326,-0.06003280183811815 +117629,588.1450000012327,-0.06003188555196211 +117630,588.1500000012328,-0.06003096944708136 +117631,588.1550000012329,-0.06003005352343759 +117632,588.160000001233,-0.060029137780992475 +117633,588.1650000012331,-0.060028222219707744 +117634,588.1700000012332,-0.06002730683954511 +117635,588.1750000012333,-0.06002639164046632 +117636,588.1800000012335,-0.06002547662243315 +117637,588.1850000012336,-0.06002456178540736 +117638,588.1900000012337,-0.06002364712935075 +117639,588.1950000012338,-0.06002273265422514 +117640,588.2000000012339,-0.06002181835999235 +117641,588.205000001234,-0.060020904246614236 +117642,588.2100000012341,-0.06001999031405266 +117643,588.2150000012342,-0.060019076562269506 +117644,588.2200000012343,-0.06001816299122665 +117645,588.2250000012344,-0.060017249600886016 +117646,588.2300000012345,-0.06001633639120955 +117647,588.2350000012347,-0.06001542336215918 +117648,588.2400000012348,-0.06001451051369689 +117649,588.2450000012349,-0.06001359784578466 +117650,588.250000001235,-0.06001268535838448 +117651,588.2550000012351,-0.06001177305145835 +117652,588.2600000012352,-0.06001086092496833 +117653,588.2650000012353,-0.06000994897887645 +117654,588.2700000012354,-0.06000903721314478 +117655,588.2750000012355,-0.060008125627735394 +117656,588.2800000012356,-0.06000721422261042 +117657,588.2850000012357,-0.060006302997731936 +117658,588.2900000012359,-0.060005391953062086 +117659,588.295000001236,-0.06000448108856302 +117660,588.3000000012361,-0.060003570404196925 +117661,588.3050000012362,-0.060002659899925946 +117662,588.3100000012363,-0.0600017495757123 +117663,588.3150000012364,-0.0600008394315182 +117664,588.3200000012365,-0.059999929467305875 +117665,588.3250000012366,-0.05999901968303757 +117666,588.3300000012367,-0.05999811007867555 +117667,588.3350000012368,-0.05999720065418211 +117668,588.340000001237,-0.05999629140951953 +117669,588.345000001237,-0.05999538234465013 +117670,588.3500000012372,-0.05999447345953623 +117671,588.3550000012373,-0.059993564754140166 +117672,588.3600000012374,-0.059992656228424326 +117673,588.3650000012375,-0.05999174788235108 +117674,588.3700000012376,-0.059990839715882815 +117675,588.3750000012377,-0.05998993172898195 +117676,588.3800000012378,-0.059989023921610894 +117677,588.3850000012379,-0.05998811629373212 +117678,588.390000001238,-0.05998720884530806 +117679,588.3950000012381,-0.0599863015763012 +117680,588.4000000012383,-0.05998539448667404 +117681,588.4050000012384,-0.05998448757638907 +117682,588.4100000012385,-0.05998358084540884 +117683,588.4150000012386,-0.059982674293695866 +117684,588.4200000012387,-0.05998176792121271 +117685,588.4250000012388,-0.05998086172792195 +117686,588.4300000012389,-0.05997995571378616 +117687,588.435000001239,-0.059979049878767954 +117688,588.4400000012391,-0.05997814422282995 +117689,588.4450000012392,-0.0599772387459348 +117690,588.4500000012393,-0.05997633344804513 +117691,588.4550000012395,-0.059975428329123615 +117692,588.4600000012396,-0.05997452338913294 +117693,588.4650000012397,-0.05997361862803581 +117694,588.4700000012398,-0.05997271404579495 +117695,588.4750000012399,-0.05997180964237306 +117696,588.48000000124,-0.05997090541773291 +117697,588.4850000012401,-0.05997000137183726 +117698,588.4900000012402,-0.059969097504648884 +117699,588.4950000012403,-0.0599681938161306 +117700,588.5000000012404,-0.059967290306245175 +117701,588.5050000012405,-0.05996638697495547 +117702,588.5100000012407,-0.0599654838222243 +117703,588.5150000012408,-0.05996458084801454 +117704,588.5200000012409,-0.059963678052289054 +117705,588.525000001241,-0.059962775435010746 +117706,588.5300000012411,-0.0599618729961425 +117707,588.5350000012412,-0.059960970735647254 +117708,588.5400000012413,-0.05996006865348792 +117709,588.5450000012414,-0.05995916674962747 +117710,588.5500000012415,-0.059958265024028866 +117711,588.5550000012416,-0.059957363476655076 +117712,588.5600000012417,-0.05995646210746911 +117713,588.5650000012419,-0.05995556091643398 +117714,588.570000001242,-0.05995465990351271 +117715,588.5750000012421,-0.05995375906866835 +117716,588.5800000012422,-0.059952858411863943 +117717,588.5850000012423,-0.059951957933062586 +117718,588.5900000012424,-0.05995105763222736 +117719,588.5950000012425,-0.05995015750932136 +117720,588.6000000012426,-0.05994925756430772 +117721,588.6050000012427,-0.059948357797149555 +117722,588.6100000012428,-0.05994745820781004 +117723,588.615000001243,-0.05994655879625233 +117724,588.620000001243,-0.059945659562439614 +117725,588.6250000012432,-0.059944760506335085 +117726,588.6300000012433,-0.059943861627901954 +117727,588.6350000012434,-0.05994296292710345 +117728,588.6400000012435,-0.05994206440390282 +117729,588.6450000012436,-0.05994116605826331 +117730,588.6500000012437,-0.0599402678901482 +117731,588.6550000012438,-0.05993936989952077 +117732,588.6600000012439,-0.059938472086344334 +117733,588.665000001244,-0.059937574450582204 +117734,588.6700000012441,-0.05993667699219772 +117735,588.6750000012443,-0.05993577971115421 +117736,588.6800000012444,-0.059934882607415065 +117737,588.6850000012445,-0.05993398568094365 +117738,588.6900000012446,-0.059933088931703356 +117739,588.6950000012447,-0.05993219235965759 +117740,588.7000000012448,-0.05993129596476979 +117741,588.7050000012449,-0.05993039974700338 +117742,588.710000001245,-0.05992950370632181 +117743,588.7150000012451,-0.05992860784268855 +117744,588.7200000012452,-0.05992771215606709 +117745,588.7250000012453,-0.05992681664642092 +117746,588.7300000012455,-0.05992592131371356 +117747,588.7350000012456,-0.05992502615790853 +117748,588.7400000012457,-0.05992413117896939 +117749,588.7450000012458,-0.05992323637685968 +117750,588.7500000012459,-0.05992234175154298 +117751,588.755000001246,-0.05992144730298286 +117752,588.7600000012461,-0.05992055303114293 +117753,588.7650000012462,-0.059919658935986816 +117754,588.7700000012463,-0.059918765017478136 +117755,588.7750000012464,-0.05991787127558054 +117756,588.7800000012465,-0.05991697771025768 +117757,588.7850000012467,-0.05991608432147325 +117758,588.7900000012468,-0.05991519110919093 +117759,588.7950000012469,-0.059914298073374415 +117760,588.800000001247,-0.059913405213987435 +117761,588.8050000012471,-0.05991251253099371 +117762,588.8100000012472,-0.059911620024356994 +117763,588.8150000012473,-0.05991072769404106 +117764,588.8200000012474,-0.05990983554000967 +117765,588.8250000012475,-0.05990894356222661 +117766,588.8300000012476,-0.05990805176065571 +117767,588.8350000012477,-0.05990716013526077 +117768,588.8400000012479,-0.05990626868600562 +117769,588.845000001248,-0.05990537741285412 +117770,588.8500000012481,-0.059904486315770146 +117771,588.8550000012482,-0.05990359539471754 +117772,588.8600000012483,-0.05990270464966022 +117773,588.8650000012484,-0.05990181408056209 +117774,588.8700000012485,-0.05990092368738708 +117775,588.8750000012486,-0.059900033470099104 +117776,588.8800000012487,-0.059899143428662115 +117777,588.8850000012488,-0.059898253563040085 +117778,588.890000001249,-0.059897363873196996 +117779,588.8950000012491,-0.05989647435909681 +117780,588.9000000012492,-0.05989558502070358 +117781,588.9050000012493,-0.05989469585798129 +117782,588.9100000012494,-0.05989380687089398 +117783,588.9150000012495,-0.05989291805940572 +117784,588.9200000012496,-0.059892029423480556 +117785,588.9250000012497,-0.05989114096308255 +117786,588.9300000012498,-0.059890252678175826 +117787,588.9350000012499,-0.05988936456872448 +117788,588.94000000125,-0.05988847663469261 +117789,588.9450000012502,-0.05988758887604436 +117790,588.9500000012503,-0.05988670129274389 +117791,588.9550000012504,-0.05988581388475535 +117792,588.9600000012505,-0.059884926652042925 +117793,588.9650000012506,-0.059884039594570795 +117794,588.9700000012507,-0.05988315271230317 +117795,588.9750000012508,-0.05988226600520426 +117796,588.9800000012509,-0.0598813794732383 +117797,588.985000001251,-0.05988049311636954 +117798,588.9900000012511,-0.059879606934562235 +117799,588.9950000012512,-0.05987872092778066 +117800,589.0000000012514,-0.0598778350959891 +117801,589.0050000012515,-0.05987694943915186 +117802,589.0100000012516,-0.05987606395723326 +117803,589.0150000012517,-0.05987517865019761 +117804,589.0200000012518,-0.05987429351800927 +117805,589.0250000012519,-0.059873408560632585 +117806,589.030000001252,-0.059872523778031934 +117807,589.0350000012521,-0.059871639170171694 +117808,589.0400000012522,-0.05987075473701626 +117809,589.0450000012523,-0.05986987047853005 +117810,589.0500000012524,-0.05986898639467748 +117811,589.0550000012526,-0.05986810248542299 +117812,589.0600000012527,-0.059867218750731054 +117813,589.0650000012528,-0.05986633519056612 +117814,589.0700000012529,-0.05986545180489267 +117815,589.075000001253,-0.059864568593675206 +117816,589.0800000012531,-0.05986368555687821 +117817,589.0850000012532,-0.05986280269446623 +117818,589.0900000012533,-0.05986192000640378 +117819,589.0950000012534,-0.059861037492655415 +117820,589.1000000012535,-0.05986015515318569 +117821,589.1050000012536,-0.05985927298795919 +117822,589.1100000012538,-0.0598583909969405 +117823,589.1150000012539,-0.05985750918009423 +117824,589.120000001254,-0.05985662753738498 +117825,589.1250000012541,-0.05985574606877738 +117826,589.1300000012542,-0.05985486477423608 +117827,589.1350000012543,-0.05985398365372573 +117828,589.1400000012544,-0.05985310270721101 +117829,589.1450000012545,-0.059852221934656585 +117830,589.1500000012546,-0.05985134133602716 +117831,589.1550000012547,-0.05985046091128744 +117832,589.1600000012548,-0.059849580660402156 +117833,589.165000001255,-0.059848700583336044 +117834,589.1700000012551,-0.05984782068005384 +117835,589.1750000012552,-0.05984694095052032 +117836,589.1800000012553,-0.059846061394700244 +117837,589.1850000012554,-0.05984518201255841 +117838,589.1900000012555,-0.059844302804059626 +117839,589.1950000012556,-0.059843423769168694 +117840,589.2000000012557,-0.059842544907850466 +117841,589.2050000012558,-0.059841666220069756 +117842,589.2100000012559,-0.05984078770579143 +117843,589.215000001256,-0.05983990936498036 +117844,589.2200000012562,-0.05983903119760143 +117845,589.2250000012563,-0.05983815320361953 +117846,589.2300000012564,-0.059837275382999565 +117847,589.2350000012565,-0.059836397735706454 +117848,589.2400000012566,-0.059835520261705126 +117849,589.2450000012567,-0.059834642960960555 +117850,589.2500000012568,-0.05983376583343767 +117851,589.2550000012569,-0.059832888879101445 +117852,589.260000001257,-0.05983201209791689 +117853,589.2650000012571,-0.05983113548984899 +117854,589.2700000012572,-0.05983025905486275 +117855,589.2750000012574,-0.059829382792923214 +117856,589.2800000012575,-0.0598285067039954 +117857,589.2850000012576,-0.05982763078804437 +117858,589.2900000012577,-0.059826755045035186 +117859,589.2950000012578,-0.05982587947493292 +117860,589.3000000012579,-0.05982500407770266 +117861,589.305000001258,-0.05982412885330952 +117862,589.3100000012581,-0.05982325380171861 +117863,589.3150000012582,-0.059822378922895054 +117864,589.3200000012583,-0.059821504216804 +117865,589.3250000012584,-0.0598206296834106 +117866,589.3300000012586,-0.059819755322680024 +117867,589.3350000012587,-0.05981888113457744 +117868,589.3400000012588,-0.059818007119068047 +117869,589.3450000012589,-0.05981713327611705 +117870,589.350000001259,-0.05981625960568967 +117871,589.3550000012591,-0.059815386107751126 +117872,589.3600000012592,-0.059814512782266675 +117873,589.3650000012593,-0.05981363962920156 +117874,589.3700000012594,-0.05981276664852107 +117875,589.3750000012595,-0.059811893840190464 +117876,589.3800000012596,-0.05981102120417505 +117877,589.3850000012598,-0.059810148740440126 +117878,589.3900000012599,-0.059809276448951024 +117879,589.39500000126,-0.05980840432967307 +117880,589.4000000012601,-0.059807532382571596 +117881,589.4050000012602,-0.05980666060761197 +117882,589.4100000012603,-0.05980578900475957 +117883,589.4150000012604,-0.059804917573979766 +117884,589.4200000012605,-0.05980404631523795 +117885,589.4250000012606,-0.05980317522849954 +117886,589.4300000012607,-0.05980230431372995 +117887,589.4350000012608,-0.05980143357089462 +117888,589.440000001261,-0.05980056299995897 +117889,589.4450000012611,-0.05979969260088849 +117890,589.4500000012612,-0.059798822373648634 +117891,589.4550000012613,-0.05979795231820488 +117892,589.4600000012614,-0.05979708243452274 +117893,589.4650000012615,-0.05979621272256769 +117894,589.4700000012616,-0.059795343182305276 +117895,589.4750000012617,-0.05979447381370102 +117896,589.4800000012618,-0.059793604616720473 +117897,589.4850000012619,-0.059792735591329194 +117898,589.490000001262,-0.059791866737492726 +117899,589.4950000012622,-0.059790998055176674 +117900,589.5000000012623,-0.05979012954434663 +117901,589.5050000012624,-0.059789261204968185 +117902,589.5100000012625,-0.05978839303700697 +117903,589.5150000012626,-0.05978752504042862 +117904,589.5200000012627,-0.059786657215198775 +117905,589.5250000012628,-0.05978578956128307 +117906,589.5300000012629,-0.05978492207864718 +117907,589.535000001263,-0.0597840547672568 +117908,589.5400000012631,-0.05978318762707763 +117909,589.5450000012632,-0.05978232065807534 +117910,589.5500000012634,-0.05978145386021566 +117911,589.5550000012635,-0.059780587233464334 +117912,589.5600000012636,-0.05977972077778708 +117913,589.5650000012637,-0.05977885449314965 +117914,589.5700000012638,-0.059777988379517824 +117915,589.5750000012639,-0.05977712243685736 +117916,589.580000001264,-0.05977625666513406 +117917,589.5850000012641,-0.05977539106431371 +117918,589.5900000012642,-0.059774525634362134 +117919,589.5950000012643,-0.05977366037524516 +117920,589.6000000012644,-0.059772795286928616 +117921,589.6050000012646,-0.059771930369378355 +117922,589.6100000012647,-0.059771065622560245 +117923,589.6150000012648,-0.05977020104644015 +117924,589.6200000012649,-0.05976933664098395 +117925,589.625000001265,-0.05976847240615754 +117926,589.6300000012651,-0.05976760834192685 +117927,589.6350000012652,-0.05976674444825777 +117928,589.6400000012653,-0.059765880725116245 +117929,589.6450000012654,-0.05976501717246824 +117930,589.6500000012655,-0.05976415379027967 +117931,589.6550000012656,-0.059763290578516516 +117932,589.6600000012658,-0.05976242753714479 +117933,589.6650000012659,-0.05976156466613045 +117934,589.670000001266,-0.05976070196543951 +117935,589.6750000012661,-0.05975983943503797 +117936,589.6800000012662,-0.05975897707489189 +117937,589.6850000012663,-0.05975811488496729 +117938,589.6900000012664,-0.05975725286523022 +117939,589.6950000012665,-0.059756391015646726 +117940,589.7000000012666,-0.0597555293361829 +117941,589.7050000012667,-0.05975466782680484 +117942,589.7100000012668,-0.05975380648747861 +117943,589.715000001267,-0.05975294531817036 +117944,589.7200000012671,-0.05975208431884619 +117945,589.7250000012672,-0.059751223489472226 +117946,589.7300000012673,-0.05975036283001461 +117947,589.7350000012674,-0.059749502340439506 +117948,589.7400000012675,-0.059748642020713096 +117949,589.7450000012676,-0.059747781870801535 +117950,589.7500000012677,-0.05974692189067102 +117951,589.7550000012678,-0.05974606208028776 +117952,589.7600000012679,-0.05974520243961797 +117953,589.765000001268,-0.059744342968627864 +117954,589.7700000012682,-0.05974348366728369 +117955,589.7750000012683,-0.05974262453555169 +117956,589.7800000012684,-0.05974176557339813 +117957,589.7850000012685,-0.05974090678078928 +117958,589.7900000012686,-0.059740048157691406 +117959,589.7950000012687,-0.05973918970407083 +117960,589.8000000012688,-0.05973833141989384 +117961,589.8050000012689,-0.059737473305126756 +117962,589.810000001269,-0.05973661535973592 +117963,589.8150000012691,-0.05973575758368766 +117964,589.8200000012692,-0.05973489997694833 +117965,589.8250000012694,-0.05973404253948429 +117966,589.8300000012695,-0.05973318527126192 +117967,589.8350000012696,-0.059732328172247606 +117968,589.8400000012697,-0.05973147124240775 +117969,589.8450000012698,-0.059730614481708744 +117970,589.8500000012699,-0.059729757890117016 +117971,589.85500000127,-0.059728901467599 +117972,589.8600000012701,-0.05972804521412115 +117973,589.8650000012702,-0.059727189129649916 +117974,589.8700000012703,-0.05972633321415175 +117975,589.8750000012705,-0.05972547746759314 +117976,589.8800000012706,-0.05972462188994055 +117977,589.8850000012707,-0.05972376648116051 +117978,589.8900000012708,-0.05972291124121952 +117979,589.8950000012709,-0.0597220561700841 +117980,589.900000001271,-0.059721201267720785 +117981,589.9050000012711,-0.05972034653409611 +117982,589.9100000012712,-0.059719491969176634 +117983,589.9150000012713,-0.059718637572928925 +117984,589.9200000012714,-0.059717783345319575 +117985,589.9250000012715,-0.059716929286315154 +117986,589.9300000012717,-0.05971607539588227 +117987,589.9350000012718,-0.05971522167398753 +117988,589.9400000012719,-0.05971436812059756 +117989,589.945000001272,-0.059713514735678985 +117990,589.9500000012721,-0.05971266151919846 +117991,589.9550000012722,-0.05971180847112264 +117992,589.9600000012723,-0.05971095559141819 +117993,589.9650000012724,-0.05971010288005178 +117994,589.9700000012725,-0.05970925033699011 +117995,589.9750000012726,-0.05970839796219987 +117996,589.9800000012727,-0.059707545755647774 +117997,589.9850000012729,-0.05970669371730054 +117998,589.990000001273,-0.059705841847124914 +117999,589.9950000012731,-0.059704990145087636 +118000,590.0000000012732,-0.05970413861115544 +118001,590.0050000012733,-0.05970328724529512 +118002,590.0100000012734,-0.059702436047473426 +118003,590.0150000012735,-0.05970158501765717 +118004,590.0200000012736,-0.05970073415581314 +118005,590.0250000012737,-0.05969988346190813 +118006,590.0300000012738,-0.05969903293590899 +118007,590.0350000012739,-0.05969818257778253 +118008,590.040000001274,-0.0596973323874956 +118009,590.0450000012742,-0.05969648236501505 +118010,590.0500000012743,-0.05969563251030773 +118011,590.0550000012744,-0.05969478282334055 +118012,590.0600000012745,-0.05969393330408036 +118013,590.0650000012746,-0.05969308395249408 +118014,590.0700000012747,-0.059692234768548603 +118015,590.0750000012748,-0.05969138575221085 +118016,590.0800000012749,-0.059690536903447736 +118017,590.085000001275,-0.05968968822222623 +118018,590.0900000012751,-0.059688839708513255 +118019,590.0950000012753,-0.059687991362275795 +118020,590.1000000012754,-0.0596871431834808 +118021,590.1050000012755,-0.059686295172095255 +118022,590.1100000012756,-0.05968544732808617 +118023,590.1150000012757,-0.05968459965142053 +118024,590.1200000012758,-0.05968375214206536 +118025,590.1250000012759,-0.05968290479998768 +118026,590.130000001276,-0.05968205762515453 +118027,590.1350000012761,-0.059681210617532954 +118028,590.1400000012762,-0.05968036377709001 +118029,590.1450000012763,-0.05967951710379276 +118030,590.1500000012765,-0.05967867059760829 +118031,590.1550000012766,-0.05967782425850368 +118032,590.1600000012767,-0.05967697808644603 +118033,590.1650000012768,-0.05967613208140246 +118034,590.1700000012769,-0.059675286243340085 +118035,590.175000001277,-0.05967444057222603 +118036,590.1800000012771,-0.059673595068027455 +118037,590.1850000012772,-0.05967274973071149 +118038,590.1900000012773,-0.0596719045602453 +118039,590.1950000012774,-0.059671059556596066 +118040,590.2000000012775,-0.05967021471973097 +118041,590.2050000012777,-0.0596693700496172 +118042,590.2100000012778,-0.05966852554622197 +118043,590.2150000012779,-0.0596676812095125 +118044,590.220000001278,-0.05966683703945599 +118045,590.2250000012781,-0.05966599303601969 +118046,590.2300000012782,-0.059665149199170854 +118047,590.2350000012783,-0.05966430552887674 +118048,590.2400000012784,-0.05966346202510459 +118049,590.2450000012785,-0.059662618687821724 +118050,590.2500000012786,-0.05966177551699539 +118051,590.2550000012787,-0.059660932512592905 +118052,590.2600000012789,-0.05966008967458157 +118053,590.265000001279,-0.05965924700292871 +118054,590.2700000012791,-0.05965840449760165 +118055,590.2750000012792,-0.05965756215856773 +118056,590.2800000012793,-0.0596567199857943 +118057,590.2850000012794,-0.05965587797924871 +118058,590.2900000012795,-0.05965503613889835 +118059,590.2950000012796,-0.0596541944647106 +118060,590.3000000012797,-0.05965335295665284 +118061,590.3050000012798,-0.059652511614692476 +118062,590.31000000128,-0.0596516704387969 +118063,590.31500000128,-0.059650829428933565 +118064,590.3200000012802,-0.059649988585069876 +118065,590.3250000012803,-0.0596491479071733 +118066,590.3300000012804,-0.05964830739521128 +118067,590.3350000012805,-0.05964746704915126 +118068,590.3400000012806,-0.05964662686896074 +118069,590.3450000012807,-0.0596457868546072 +118070,590.3500000012808,-0.0596449470060581 +118071,590.3550000012809,-0.059644107323280994 +118072,590.360000001281,-0.05964326780624336 +118073,590.3650000012811,-0.059642428454912716 +118074,590.3700000012813,-0.059641589269256626 +118075,590.3750000012814,-0.05964075024924262 +118076,590.3800000012815,-0.059639911394838235 +118077,590.3850000012816,-0.05963907270601105 +118078,590.3900000012817,-0.059638234182728636 +118079,590.3950000012818,-0.05963739582495859 +118080,590.4000000012819,-0.05963655763266849 +118081,590.405000001282,-0.05963571960582594 +118082,590.4100000012821,-0.05963488174439856 +118083,590.4150000012822,-0.05963404404835397 +118084,590.4200000012823,-0.05963320651765982 +118085,590.4250000012825,-0.05963236915228373 +118086,590.4300000012826,-0.059631531952193374 +118087,590.4350000012827,-0.0596306949173564 +118088,590.4400000012828,-0.059629858047740486 +118089,590.4450000012829,-0.05962902134331331 +118090,590.450000001283,-0.05962818480404259 +118091,590.4550000012831,-0.059627348429896004 +118092,590.4600000012832,-0.05962651222084128 +118093,590.4650000012833,-0.05962567617684613 +118094,590.4700000012834,-0.0596248402978783 +118095,590.4750000012835,-0.059624004583905515 +118096,590.4800000012837,-0.059623169034895555 +118097,590.4850000012838,-0.05962233365081616 +118098,590.4900000012839,-0.05962149843163512 +118099,590.495000001284,-0.0596206633773202 +118100,590.5000000012841,-0.05961982848783921 +118101,590.5050000012842,-0.05961899376315995 +118102,590.5100000012843,-0.05961815920325022 +118103,590.5150000012844,-0.05961732480807784 +118104,590.5200000012845,-0.05961649057761066 +118105,590.5250000012846,-0.05961565651181651 +118106,590.5300000012847,-0.059614822610663254 +118107,590.5350000012849,-0.059613988874118735 +118108,590.540000001285,-0.05961315530215083 +118109,590.5450000012851,-0.059612321894727434 +118110,590.5500000012852,-0.05961148865181642 +118111,590.5550000012853,-0.059610655573385685 +118112,590.5600000012854,-0.05960982265940315 +118113,590.5650000012855,-0.059608989909836735 +118114,590.5700000012856,-0.059608157324654375 +118115,590.5750000012857,-0.059607324903824 +118116,590.5800000012858,-0.05960649264731355 +118117,590.585000001286,-0.05960566055509098 +118118,590.5900000012861,-0.05960482862712428 +118119,590.5950000012862,-0.059603996863381414 +118120,590.6000000012863,-0.05960316526383038 +118121,590.6050000012864,-0.05960233382843916 +118122,590.6100000012865,-0.059601502557175765 +118123,590.6150000012866,-0.05960067145000822 +118124,590.6200000012867,-0.05959984050690454 +118125,590.6250000012868,-0.05959900972783277 +118126,590.6300000012869,-0.059598179112760934 +118127,590.635000001287,-0.05959734866165711 +118128,590.6400000012871,-0.05959651837448935 +118129,590.6450000012873,-0.05959568825122574 +118130,590.6500000012874,-0.05959485829183434 +118131,590.6550000012875,-0.05959402849628326 +118132,590.6600000012876,-0.0595931988645406 +118133,590.6650000012877,-0.05959236939657447 +118134,590.6700000012878,-0.059591540092352985 +118135,590.6750000012879,-0.05959071095184429 +118136,590.680000001288,-0.059589881975016495 +118137,590.6850000012881,-0.05958905316183778 +118138,590.6900000012882,-0.0595882245122763 +118139,590.6950000012883,-0.0595873960263002 +118140,590.7000000012885,-0.05958656770387768 +118141,590.7050000012886,-0.059585739544976916 +118142,590.7100000012887,-0.05958491154956612 +118143,590.7150000012888,-0.059584083717613485 +118144,590.7200000012889,-0.059583256049087215 +118145,590.725000001289,-0.05958242854395556 +118146,590.7300000012891,-0.05958160120218673 +118147,590.7350000012892,-0.059580774023748985 +118148,590.7400000012893,-0.05957994700861058 +118149,590.7450000012894,-0.059579120156739766 +118150,590.7500000012895,-0.059578293468104816 +118151,590.7550000012897,-0.05957746694267401 +118152,590.7600000012898,-0.059576640580415646 +118153,590.7650000012899,-0.05957581438129802 +118154,590.77000000129,-0.05957498834528943 +118155,590.7750000012901,-0.059574162472358194 +118156,590.7800000012902,-0.059573336762472666 +118157,590.7850000012903,-0.05957251121560116 +118158,590.7900000012904,-0.05957168583171202 +118159,590.7950000012905,-0.05957086061077361 +118160,590.8000000012906,-0.059570035552754294 +118161,590.8050000012908,-0.05956921065762243 +118162,590.8100000012909,-0.05956838592534643 +118163,590.815000001291,-0.059567561355894666 +118164,590.8200000012911,-0.05956673694923553 +118165,590.8250000012912,-0.059565912705337454 +118166,590.8300000012913,-0.05956508862416884 +118167,590.8350000012914,-0.059564264705698124 +118168,590.8400000012915,-0.05956344094989375 +118169,590.8450000012916,-0.05956261735672415 +118170,590.8500000012917,-0.05956179392615779 +118171,590.8550000012918,-0.05956097065816315 +118172,590.860000001292,-0.05956014755270867 +118173,590.8650000012921,-0.059559324609762855 +118174,590.8700000012922,-0.0595585018292942 +118175,590.8750000012923,-0.0595576792112712 +118176,590.8800000012924,-0.05955685675566235 +118177,590.8850000012925,-0.0595560344624362 +118178,590.8900000012926,-0.05955521233156127 +118179,590.8950000012927,-0.05955439036300608 +118180,590.9000000012928,-0.0595535685567392 +118181,590.9050000012929,-0.05955274691272918 +118182,590.910000001293,-0.05955192543094458 +118183,590.9150000012932,-0.05955110411135397 +118184,590.9200000012933,-0.05955028295392593 +118185,590.9250000012934,-0.05954946195862907 +118186,590.9300000012935,-0.059548641125431984 +118187,590.9350000012936,-0.05954782045430328 +118188,590.9400000012937,-0.059546999945211565 +118189,590.9450000012938,-0.05954617959812549 +118190,590.9500000012939,-0.05954535941301367 +118191,590.955000001294,-0.059544539389844775 +118192,590.9600000012941,-0.05954371952858743 +118193,590.9650000012942,-0.05954289982921033 +118194,590.9700000012944,-0.05954208029168213 +118195,590.9750000012945,-0.059541260915971506 +118196,590.9800000012946,-0.05954044170204716 +118197,590.9850000012947,-0.059539622649877784 +118198,590.9900000012948,-0.0595388037594321 +118199,590.9950000012949,-0.059537985030678815 +118200,591.000000001295,-0.059537166463586644 +118201,591.0050000012951,-0.05953634805812435 +118202,591.0100000012952,-0.05953552981426064 +118203,591.0150000012953,-0.059534711731964306 +118204,591.0200000012954,-0.05953389381120408 +118205,591.0250000012956,-0.059533076051948755 +118206,591.0300000012957,-0.05953225845416709 +118207,591.0350000012958,-0.05953144101782789 +118208,591.0400000012959,-0.059530623742899934 +118209,591.045000001296,-0.05952980662935204 +118210,591.0500000012961,-0.059528989677153026 +118211,591.0550000012962,-0.05952817288627169 +118212,591.0600000012963,-0.0595273562566769 +118213,591.0650000012964,-0.05952653978833746 +118214,591.0700000012965,-0.059525723481222245 +118215,591.0750000012966,-0.059524907335300116 +118216,591.0800000012968,-0.05952409135053992 +118217,591.0850000012969,-0.059523275526910537 +118218,591.090000001297,-0.059522459864380865 +118219,591.0950000012971,-0.05952164436291979 +118220,591.1000000012972,-0.059520829022496204 +118221,591.1050000012973,-0.05952001384307903 +118222,591.1100000012974,-0.05951919882463719 +118223,591.1150000012975,-0.0595183839671396 +118224,591.1200000012976,-0.0595175692705552 +118225,591.1250000012977,-0.05951675473485294 +118226,591.1300000012978,-0.05951594036000177 +118227,591.135000001298,-0.05951512614597064 +118228,591.1400000012981,-0.05951431209272855 +118229,591.1450000012982,-0.059513498200244444 +118230,591.1500000012983,-0.059512684468487335 +118231,591.1550000012984,-0.059511870897426225 +118232,591.1600000012985,-0.05951105748703009 +118233,591.1650000012986,-0.05951024423726797 +118234,591.1700000012987,-0.059509431148108874 +118235,591.1750000012988,-0.05950861821952185 +118236,591.1800000012989,-0.059507805451475916 +118237,591.185000001299,-0.05950699284394014 +118238,591.1900000012992,-0.059506180396883566 +118239,591.1950000012993,-0.05950536811027526 +118240,591.2000000012994,-0.059504555984084294 +118241,591.2050000012995,-0.059503744018279764 +118242,591.2100000012996,-0.05950293221283074 +118243,591.2150000012997,-0.059502120567706346 +118244,591.2200000012998,-0.05950130908287567 +118245,591.2250000012999,-0.05950049775830783 +118246,591.2300000013,-0.05949968659397196 +118247,591.2350000013001,-0.059498875589837186 +118248,591.2400000013002,-0.05949806474587265 +118249,591.2450000013004,-0.05949725406204752 +118250,591.2500000013005,-0.05949644353833094 +118251,591.2550000013006,-0.05949563317469207 +118252,591.2600000013007,-0.05949482297110009 +118253,591.2650000013008,-0.059494012927524195 +118254,591.2700000013009,-0.05949320304393357 +118255,591.275000001301,-0.05949239332029741 +118256,591.2800000013011,-0.059491583756584934 +118257,591.2850000013012,-0.05949077435276534 +118258,591.2900000013013,-0.05948996510880788 +118259,591.2950000013014,-0.05948915602468178 +118260,591.3000000013016,-0.05948834710035628 +118261,591.3050000013017,-0.05948753833580062 +118262,591.3100000013018,-0.05948672973098408 +118263,591.3150000013019,-0.05948592128587592 +118264,591.320000001302,-0.059485113000445414 +118265,591.3250000013021,-0.05948430487466183 +118266,591.3300000013022,-0.05948349690849449 +118267,591.3350000013023,-0.059482689101912685 +118268,591.3400000013024,-0.05948188145488573 +118269,591.3450000013025,-0.05948107396738291 +118270,591.3500000013026,-0.0594802666393736 +118271,591.3550000013028,-0.0594794594708271 +118272,591.3600000013029,-0.05947865246171276 +118273,591.365000001303,-0.059477845611999924 +118274,591.3700000013031,-0.05947703892165797 +118275,591.3750000013032,-0.059476232390656254 +118276,591.3800000013033,-0.05947542601896414 +118277,591.3850000013034,-0.059474619806551034 +118278,591.3900000013035,-0.059473813753386326 +118279,591.3950000013036,-0.05947300785943941 +118280,591.4000000013037,-0.059472202124679685 +118281,591.4050000013038,-0.05947139654907657 +118282,591.410000001304,-0.0594705911325995 +118283,591.4150000013041,-0.059469785875217895 +118284,591.4200000013042,-0.05946898077690121 +118285,591.4250000013043,-0.05946817583761889 +118286,591.4300000013044,-0.05946737105734039 +118287,591.4350000013045,-0.05946656643603518 +118288,591.4400000013046,-0.05946576197367273 +118289,591.4450000013047,-0.05946495767022252 +118290,591.4500000013048,-0.05946415352565404 +118291,591.4550000013049,-0.05946334953993679 +118292,591.460000001305,-0.05946254571304027 +118293,591.4650000013052,-0.05946174204493401 +118294,591.4700000013053,-0.05946093853558752 +118295,591.4750000013054,-0.05946013518497033 +118296,591.4800000013055,-0.05945933199305199 +118297,591.4850000013056,-0.05945852895980204 +118298,591.4900000013057,-0.05945772608519003 +118299,591.4950000013058,-0.05945692336918553 +118300,591.5000000013059,-0.0594561208117581 +118301,591.505000001306,-0.05945531841287734 +118302,591.5100000013061,-0.059454516172512815 +118303,591.5150000013062,-0.05945371409063412 +118304,591.5200000013064,-0.05945291216721088 +118305,591.5250000013065,-0.05945211040221268 +118306,591.5300000013066,-0.05945130879560916 +118307,591.5350000013067,-0.05945050734736995 +118308,591.5400000013068,-0.05944970605746467 +118309,591.5450000013069,-0.059448904925862946 +118310,591.550000001307,-0.05944810395253447 +118311,591.5550000013071,-0.05944730313744887 +118312,591.5600000013072,-0.059446502480575834 +118313,591.5650000013073,-0.05944570198188502 +118314,591.5700000013074,-0.05944490164134612 +118315,591.5750000013076,-0.05944410145892883 +118316,591.5800000013077,-0.05944330143460283 +118317,591.5850000013078,-0.05944250156833785 +118318,591.5900000013079,-0.05944170186010358 +118319,591.595000001308,-0.05944090230986976 +118320,591.6000000013081,-0.05944010291760611 +118321,591.6050000013082,-0.05943930368328239 +118322,591.6100000013083,-0.05943850460686832 +118323,591.6150000013084,-0.05943770568833367 +118324,591.6200000013085,-0.0594369069276482 +118325,591.6250000013086,-0.059436108324781675 +118326,591.6300000013088,-0.059435309879703864 +118327,591.6350000013089,-0.05943451159238458 +118328,591.640000001309,-0.059433713462793594 +118329,591.6450000013091,-0.05943291549090071 +118330,591.6500000013092,-0.05943211767667574 +118331,591.6550000013093,-0.05943132002008851 +118332,591.6600000013094,-0.05943052252110883 +118333,591.6650000013095,-0.05942972517970654 +118334,591.6700000013096,-0.05942892799585147 +118335,591.6750000013097,-0.05942813096951348 +118336,591.6800000013098,-0.05942733410066242 +118337,591.68500000131,-0.05942653738926816 +118338,591.6900000013101,-0.059425740835300576 +118339,591.6950000013102,-0.05942494443872954 +118340,591.7000000013103,-0.059424148199524934 +118341,591.7050000013104,-0.05942335211765666 +118342,591.7100000013105,-0.059422556193094625 +118343,591.7150000013106,-0.059421760425808726 +118344,591.7200000013107,-0.05942096481576888 +118345,591.7250000013108,-0.05942016936294503 +118346,591.7300000013109,-0.0594193740673071 +118347,591.735000001311,-0.059418578928825044 +118348,591.7400000013112,-0.05941778394746878 +118349,591.7450000013113,-0.05941698912320828 +118350,591.7500000013114,-0.05941619445601353 +118351,591.7550000013115,-0.05941539994585448 +118352,591.7600000013116,-0.059414605592701106 +118353,591.7650000013117,-0.059413811396523415 +118354,591.7700000013118,-0.05941301735729138 +118355,591.7750000013119,-0.059412223474975025 +118356,591.780000001312,-0.05941142974954434 +118357,591.7850000013121,-0.059410636180969346 +118358,591.7900000013123,-0.05940984276922008 +118359,591.7950000013124,-0.05940904951426657 +118360,591.8000000013125,-0.05940825641607886 +118361,591.8050000013126,-0.059407463474627 +118362,591.8100000013127,-0.05940667068988104 +118363,591.8150000013128,-0.05940587806181104 +118364,591.8200000013129,-0.059405085590387076 +118365,591.825000001313,-0.05940429327557924 +118366,591.8300000013131,-0.05940350111735759 +118367,591.8350000013132,-0.059402709115692245 +118368,591.8400000013133,-0.059401917270553314 +118369,591.8450000013135,-0.05940112558191088 +118370,591.8500000013136,-0.05940033404973507 +118371,591.8550000013137,-0.05939954267399601 +118372,591.8600000013138,-0.05939875145466384 +118373,591.8650000013139,-0.05939796039170868 +118374,591.870000001314,-0.05939716948510069 +118375,591.8750000013141,-0.05939637873481003 +118376,591.8800000013142,-0.05939558814080685 +118377,591.8850000013143,-0.05939479770306133 +118378,591.8900000013144,-0.05939400742154363 +118379,591.8950000013145,-0.05939321729622395 +118380,591.9000000013147,-0.059392427327072485 +118381,591.9050000013148,-0.059391637514059424 +118382,591.9100000013149,-0.05939084785715498 +118383,591.915000001315,-0.059390058356329364 +118384,591.9200000013151,-0.0593892690115528 +118385,591.9250000013152,-0.05938847982279552 +118386,591.9300000013153,-0.05938769079002775 +118387,591.9350000013154,-0.05938690191321975 +118388,591.9400000013155,-0.05938611319234175 +118389,591.9450000013156,-0.059385324627364046 +118390,591.9500000013157,-0.05938453621825687 +118391,591.9550000013159,-0.059383747964990505 +118392,591.960000001316,-0.05938295986753524 +118393,591.9650000013161,-0.05938217192586136 +118394,591.9700000013162,-0.05938138413993916 +118395,591.9750000013163,-0.05938059650973894 +118396,591.9800000013164,-0.05937980903523102 +118397,591.9850000013165,-0.05937902171638571 +118398,591.9900000013166,-0.05937823455317334 +118399,591.9950000013167,-0.05937744754556425 +118400,592.0000000013168,-0.05937666069352878 +118401,592.005000001317,-0.05937587399703726 +118402,592.010000001317,-0.05937508745606006 +118403,592.0150000013172,-0.05937430107056754 +118404,592.0200000013173,-0.05937351484053008 +118405,592.0250000013174,-0.059372728765918044 +118406,592.0300000013175,-0.05937194284670182 +118407,592.0350000013176,-0.05937115708285178 +118408,592.0400000013177,-0.05937037147433836 +118409,592.0450000013178,-0.05936958602113195 +118410,592.0500000013179,-0.05936880072320297 +118411,592.055000001318,-0.05936801558052183 +118412,592.0600000013181,-0.05936723059305896 +118413,592.0650000013183,-0.0593664457607848 +118414,592.0700000013184,-0.05936566108366979 +118415,592.0750000013185,-0.059364876561684383 +118416,592.0800000013186,-0.059364092194799045 +118417,592.0850000013187,-0.059363307982984226 +118418,592.0900000013188,-0.0593625239262104 +118419,592.0950000013189,-0.05936174002444806 +118420,592.100000001319,-0.059360956277667666 +118421,592.1050000013191,-0.05936017268583974 +118422,592.1100000013192,-0.059359389248934774 +118423,592.1150000013193,-0.05935860596692328 +118424,592.1200000013195,-0.05935782283977575 +118425,592.1250000013196,-0.059357039867462734 +118426,592.1300000013197,-0.05935625704995475 +118427,592.1350000013198,-0.05935547438722234 +118428,592.1400000013199,-0.059354691879236046 +118429,592.14500000132,-0.05935390952596642 +118430,592.1500000013201,-0.059353127327384014 +118431,592.1550000013202,-0.0593523452834594 +118432,592.1600000013203,-0.05935156339416315 +118433,592.1650000013204,-0.059350781659465855 +118434,592.1700000013205,-0.05935000007933809 +118435,592.1750000013207,-0.059349218653750445 +118436,592.1800000013208,-0.05934843738267352 +118437,592.1850000013209,-0.05934765626607795 +118438,592.190000001321,-0.05934687530393433 +118439,592.1950000013211,-0.05934609449621327 +118440,592.2000000013212,-0.05934531384288542 +118441,592.2050000013213,-0.05934453334392142 +118442,592.2100000013214,-0.05934375299929189 +118443,592.2150000013215,-0.05934297280896752 +118444,592.2200000013216,-0.05934219277291894 +118445,592.2250000013217,-0.05934141289111682 +118446,592.2300000013219,-0.05934063316353184 +118447,592.235000001322,-0.05933985359013467 +118448,592.2400000013221,-0.059339074170896 +118449,592.2450000013222,-0.05933829490578653 +118450,592.2500000013223,-0.059337515794776946 +118451,592.2550000013224,-0.059336736837837974 +118452,592.2600000013225,-0.059335958034940336 +118453,592.2650000013226,-0.05933517938605472 +118454,592.2700000013227,-0.05933440089115189 +118455,592.2750000013228,-0.05933362255020257 +118456,592.280000001323,-0.059332844363177484 +118457,592.285000001323,-0.05933206633004741 +118458,592.2900000013232,-0.059331288450783094 +118459,592.2950000013233,-0.0593305107253553 +118460,592.3000000013234,-0.05932973315373479 +118461,592.3050000013235,-0.059328955735892364 +118462,592.3100000013236,-0.05932817847179878 +118463,592.3150000013237,-0.05932740136142485 +118464,592.3200000013238,-0.05932662440474137 +118465,592.3250000013239,-0.05932584760171915 +118466,592.330000001324,-0.05932507095232899 +118467,592.3350000013241,-0.05932429445654171 +118468,592.3400000013243,-0.05932351811432816 +118469,592.3450000013244,-0.059322741925659145 +118470,592.3500000013245,-0.05932196589050553 +118471,592.3550000013246,-0.05932119000883815 +118472,592.3600000013247,-0.059320414280627856 +118473,592.3650000013248,-0.05931963870584552 +118474,592.3700000013249,-0.059318863284462016 +118475,592.375000001325,-0.0593180880164482 +118476,592.3800000013251,-0.05931731290177497 +118477,592.3850000013252,-0.0593165379404132 +118478,592.3900000013253,-0.059315763132333804 +118479,592.3950000013255,-0.05931498847750767 +118480,592.4000000013256,-0.059314213975905715 +118481,592.4050000013257,-0.05931343962749887 +118482,592.4100000013258,-0.05931266543225803 +118483,592.4150000013259,-0.059311891390154144 +118484,592.420000001326,-0.05931111750115815 +118485,592.4250000013261,-0.05931034376524099 +118486,592.4300000013262,-0.05930957018237361 +118487,592.4350000013263,-0.059308796752526975 +118488,592.4400000013264,-0.059308023475672045 +118489,592.4450000013265,-0.0593072503517798 +118490,592.4500000013267,-0.05930647738082121 +118491,592.4550000013268,-0.059305704562767264 +118492,592.4600000013269,-0.059304931897588946 +118493,592.465000001327,-0.059304159385257266 +118494,592.4700000013271,-0.05930338702574322 +118495,592.4750000013272,-0.059302614819017836 +118496,592.4800000013273,-0.05930184276505212 +118497,592.4850000013274,-0.059301070863817106 +118498,592.4900000013275,-0.059300299115283825 +118499,592.4950000013276,-0.05929952751942331 +118500,592.5000000013277,-0.05929875607620662 +118501,592.5050000013279,-0.0592979847856048 +118502,592.510000001328,-0.05929721364758891 +118503,592.5150000013281,-0.05929644266213002 +118504,592.5200000013282,-0.05929567182919921 +118505,592.5250000013283,-0.05929490114876755 +118506,592.5300000013284,-0.05929413062080613 +118507,592.5350000013285,-0.05929336024528604 +118508,592.5400000013286,-0.05929259002217839 +118509,592.5450000013287,-0.059291819951454286 +118510,592.5500000013288,-0.059291050033084845 +118511,592.555000001329,-0.05929028026704117 +118512,592.5600000013291,-0.0592895106532944 +118513,592.5650000013292,-0.05928874119181567 +118514,592.5700000013293,-0.05928797188257613 +118515,592.5750000013294,-0.05928720272554692 +118516,592.5800000013295,-0.059286433720699194 +118517,592.5850000013296,-0.05928566486800411 +118518,592.5900000013297,-0.059284896167432835 +118519,592.5950000013298,-0.059284127618956545 +118520,592.6000000013299,-0.059283359222546426 +118521,592.60500000133,-0.059282590978173656 +118522,592.6100000013301,-0.05928182288580945 +118523,592.6150000013303,-0.05928105494542499 +118524,592.6200000013304,-0.059280287156991476 +118525,592.6250000013305,-0.059279519520480155 +118526,592.6300000013306,-0.05927875203586221 +118527,592.6350000013307,-0.0592779847031089 +118528,592.6400000013308,-0.059277217522191436 +118529,592.6450000013309,-0.05927645049308107 +118530,592.650000001331,-0.05927568361574906 +118531,592.6550000013311,-0.05927491689016664 +118532,592.6600000013312,-0.059274150316305084 +118533,592.6650000013314,-0.059273383894135646 +118534,592.6700000013315,-0.05927261762362961 +118535,592.6750000013316,-0.05927185150475828 +118536,592.6800000013317,-0.0592710855374929 +118537,592.6850000013318,-0.059270319721804784 +118538,592.6900000013319,-0.059269554057665236 +118539,592.695000001332,-0.05926878854504555 +118540,592.7000000013321,-0.05926802318391705 +118541,592.7050000013322,-0.059267257974251066 +118542,592.7100000013323,-0.059266492916018904 +118543,592.7150000013324,-0.05926572800919191 +118544,592.7200000013326,-0.059264963253741414 +118545,592.7250000013327,-0.05926419864963877 +118546,592.7300000013328,-0.05926343419685533 +118547,592.7350000013329,-0.05926266989536245 +118548,592.740000001333,-0.0592619057451315 +118549,592.7450000013331,-0.05926114174613386 +118550,592.7500000013332,-0.05926037789834089 +118551,592.7550000013333,-0.059259614201723994 +118552,592.7600000013334,-0.05925885065625455 +118553,592.7650000013335,-0.059258087261903965 +118554,592.7700000013336,-0.05925732401864363 +118555,592.7750000013338,-0.059256560926444976 +118556,592.7800000013339,-0.05925579798527941 +118557,592.785000001334,-0.05925503519511837 +118558,592.7900000013341,-0.059254272555933254 +118559,592.7950000013342,-0.05925351006769553 +118560,592.8000000013343,-0.05925274773037663 +118561,592.8050000013344,-0.05925198554394801 +118562,592.8100000013345,-0.05925122350838112 +118563,592.8150000013346,-0.05925046162364742 +118564,592.8200000013347,-0.0592496998897184 +118565,592.8250000013348,-0.059248938306565524 +118566,592.830000001335,-0.059248176874160265 +118567,592.8350000013351,-0.05924741559247413 +118568,592.8400000013352,-0.0592466544614786 +118569,592.8450000013353,-0.05924589348114519 +118570,592.8500000013354,-0.05924513265144539 +118571,592.8550000013355,-0.05924437197235074 +118572,592.8600000013356,-0.059243611443832736 +118573,592.8650000013357,-0.059242851065862925 +118574,592.8700000013358,-0.05924209083841282 +118575,592.8750000013359,-0.059241330761453985 +118576,592.880000001336,-0.05924057083495795 +118577,592.8850000013362,-0.05923981105889628 +118578,592.8900000013363,-0.05923905143324052 +118579,592.8950000013364,-0.05923829195796225 +118580,592.9000000013365,-0.05923753263303303 +118581,592.9050000013366,-0.05923677345842444 +118582,592.9100000013367,-0.05923601443410807 +118583,592.9150000013368,-0.05923525556005552 +118584,592.9200000013369,-0.05923449683623838 +118585,592.925000001337,-0.059233738262628254 +118586,592.9300000013371,-0.059232979839196745 +118587,592.9350000013372,-0.05923222156591548 +118588,592.9400000013374,-0.05923146344275608 +118589,592.9450000013375,-0.05923070546969018 +118590,592.9500000013376,-0.05922994764668941 +118591,592.9550000013377,-0.059229189973725414 +118592,592.9600000013378,-0.05922843245076983 +118593,592.9650000013379,-0.05922767507779432 +118594,592.970000001338,-0.05922691785477055 +118595,592.9750000013381,-0.05922616078167017 +118596,592.9800000013382,-0.059225403858464885 +118597,592.9850000013383,-0.05922464708512635 +118598,592.9900000013384,-0.05922389046162627 +118599,592.9950000013386,-0.05922313398793632 +118600,593.0000000013387,-0.0592223776640282 +118601,593.0050000013388,-0.05922162148987363 +118602,593.0100000013389,-0.059220865465444306 +118603,593.015000001339,-0.059220109590711945 +118604,593.0200000013391,-0.05921935386564828 +118605,593.0250000013392,-0.059218598290225036 +118606,593.0300000013393,-0.05921784286441396 +118607,593.0350000013394,-0.05921708758818677 +118608,593.0400000013395,-0.05921633246151525 +118609,593.0450000013396,-0.059215577484371125 +118610,593.0500000013398,-0.059214822656726174 +118611,593.0550000013399,-0.05921406797855215 +118612,593.06000000134,-0.059213313449820844 +118613,593.0650000013401,-0.05921255907050403 +118614,593.0700000013402,-0.05921180484057349 +118615,593.0750000013403,-0.05921105076000103 +118616,593.0800000013404,-0.05921029682875843 +118617,593.0850000013405,-0.059209543046817505 +118618,593.0900000013406,-0.05920878941415006 +118619,593.0950000013407,-0.05920803593072792 +118620,593.1000000013408,-0.0592072825965229 +118621,593.105000001341,-0.059206529411506836 +118622,593.1100000013411,-0.05920577637565157 +118623,593.1150000013412,-0.059205023488928935 +118624,593.1200000013413,-0.059204270751310774 +118625,593.1250000013414,-0.05920351816276895 +118626,593.1300000013415,-0.05920276572327532 +118627,593.1350000013416,-0.059202013432801764 +118628,593.1400000013417,-0.05920126129132014 +118629,593.1450000013418,-0.05920050929880233 +118630,593.1500000013419,-0.05919975745522022 +118631,593.155000001342,-0.0591990057605457 +118632,593.1600000013422,-0.059198254214750674 +118633,593.1650000013423,-0.059197502817807036 +118634,593.1700000013424,-0.0591967515696867 +118635,593.1750000013425,-0.05919600047036158 +118636,593.1800000013426,-0.05919524951980361 +118637,593.1850000013427,-0.05919449871798472 +118638,593.1900000013428,-0.05919374806487682 +118639,593.1950000013429,-0.059192997560451856 +118640,593.200000001343,-0.059192247204681796 +118641,593.2050000013431,-0.05919149699753858 +118642,593.2100000013432,-0.05919074693899417 +118643,593.2150000013434,-0.059189997029020516 +118644,593.2200000013435,-0.05918924726758961 +118645,593.2250000013436,-0.05918849765467341 +118646,593.2300000013437,-0.05918774819024392 +118647,593.2350000013438,-0.05918699887427312 +118648,593.2400000013439,-0.059186249706732995 +118649,593.245000001344,-0.05918550068759555 +118650,593.2500000013441,-0.059184751816832804 +118651,593.2550000013442,-0.05918400309441675 +118652,593.2600000013443,-0.05918325452031944 +118653,593.2650000013444,-0.05918250609451287 +118654,593.2700000013446,-0.059181757816969084 +118655,593.2750000013447,-0.05918100968766012 +118656,593.2800000013448,-0.05918026170655802 +118657,593.2850000013449,-0.05917951387363482 +118658,593.290000001345,-0.0591787661888626 +118659,593.2950000013451,-0.059178018652213414 +118660,593.3000000013452,-0.05917727126365932 +118661,593.3050000013453,-0.05917652402317241 +118662,593.3100000013454,-0.05917577693072474 +118663,593.3150000013455,-0.05917502998628841 +118664,593.3200000013456,-0.05917428318983551 +118665,593.3250000013458,-0.05917353654133814 +118666,593.3300000013459,-0.05917279004076839 +118667,593.335000001346,-0.0591720436880984 +118668,593.3400000013461,-0.05917129748330025 +118669,593.3450000013462,-0.05917055142634609 +118670,593.3500000013463,-0.05916980551720803 +118671,593.3550000013464,-0.05916905975585821 +118672,593.3600000013465,-0.05916831414226879 +118673,593.3650000013466,-0.059167568676411875 +118674,593.3700000013467,-0.05916682335825965 +118675,593.3750000013468,-0.05916607818778425 +118676,593.380000001347,-0.05916533316495786 +118677,593.3850000013471,-0.05916458828975263 +118678,593.3900000013472,-0.05916384356214076 +118679,593.3950000013473,-0.059163098982094396 +118680,593.4000000013474,-0.05916235454958576 +118681,593.4050000013475,-0.05916161026458703 +118682,593.4100000013476,-0.05916086612707041 +118683,593.4150000013477,-0.05916012213700809 +118684,593.4200000013478,-0.0591593782943723 +118685,593.4250000013479,-0.05915863459913526 +118686,593.430000001348,-0.05915789105126916 +118687,593.4350000013482,-0.05915714765074627 +118688,593.4400000013483,-0.059156404397538796 +118689,593.4450000013484,-0.059155661291619 +118690,593.4500000013485,-0.05915491833295911 +118691,593.4550000013486,-0.059154175521531384 +118692,593.4600000013487,-0.05915343285730809 +118693,593.4650000013488,-0.059152690340261486 +118694,593.4700000013489,-0.059151947970363834 +118695,593.475000001349,-0.05915120574758743 +118696,593.4800000013491,-0.05915046367190453 +118697,593.4850000013492,-0.05914972174328745 +118698,593.4900000013494,-0.05914897996170845 +118699,593.4950000013495,-0.05914823832713986 +118700,593.5000000013496,-0.05914749683955398 +118701,593.5050000013497,-0.05914675549892311 +118702,593.5100000013498,-0.05914601430521958 +118703,593.5150000013499,-0.059145273258415704 +118704,593.52000000135,-0.059144532358483805 +118705,593.5250000013501,-0.05914379160539622 +118706,593.5300000013502,-0.05914305099912529 +118707,593.5350000013503,-0.059142310539643375 +118708,593.5400000013504,-0.059141570226922825 +118709,593.5450000013506,-0.059140830060935984 +118710,593.5500000013507,-0.05914009004165523 +118711,593.5550000013508,-0.05913935016905292 +118712,593.5600000013509,-0.059138610443101446 +118713,593.565000001351,-0.05913787086377317 +118714,593.5700000013511,-0.059137131431040504 +118715,593.5750000013512,-0.059136392144875816 +118716,593.5800000013513,-0.05913565300525151 +118717,593.5850000013514,-0.05913491401214 +118718,593.5900000013515,-0.0591341751655137 +118719,593.5950000013517,-0.059133436465345 +118720,593.6000000013518,-0.059132697911606344 +118721,593.6050000013519,-0.05913195950427016 +118722,593.610000001352,-0.05913122124330887 +118723,593.6150000013521,-0.05913048312869492 +118724,593.6200000013522,-0.05912974516040076 +118725,593.6250000013523,-0.059129007338398834 +118726,593.6300000013524,-0.059128269662661596 +118727,593.6350000013525,-0.05912753213316151 +118728,593.6400000013526,-0.05912679474987105 +118729,593.6450000013527,-0.0591260575127627 +118730,593.6500000013529,-0.05912532042180891 +118731,593.655000001353,-0.059124583476982184 +118732,593.6600000013531,-0.05912384667825501 +118733,593.6650000013532,-0.05912311002559989 +118734,593.6700000013533,-0.05912237351898932 +118735,593.6750000013534,-0.059121637158395815 +118736,593.6800000013535,-0.05912090094379188 +118737,593.6850000013536,-0.05912016487515004 +118738,593.6900000013537,-0.05911942895244282 +118739,593.6950000013538,-0.05911869317564275 +118740,593.7000000013539,-0.05911795754472238 +118741,593.705000001354,-0.05911722205965422 +118742,593.7100000013542,-0.059116486720410866 +118743,593.7150000013543,-0.05911575152696483 +118744,593.7200000013544,-0.059115016479288685 +118745,593.7250000013545,-0.059114281577355 +118746,593.7300000013546,-0.05911354682113634 +118747,593.7350000013547,-0.059112812210605284 +118748,593.7400000013548,-0.059112077745734425 +118749,593.7450000013549,-0.05911134342649635 +118750,593.750000001355,-0.05911060925286364 +118751,593.7550000013551,-0.05910987522480889 +118752,593.7600000013553,-0.05910914134230472 +118753,593.7650000013554,-0.05910840760532375 +118754,593.7700000013555,-0.059107674013838575 +118755,593.7750000013556,-0.05910694056782182 +118756,593.7800000013557,-0.05910620726724612 +118757,593.7850000013558,-0.05910547411208411 +118758,593.7900000013559,-0.05910474110230843 +118759,593.795000001356,-0.059104008237891706 +118760,593.8000000013561,-0.05910327551880661 +118761,593.8050000013562,-0.0591025429450258 +118762,593.8100000013563,-0.05910181051652193 +118763,593.8150000013565,-0.059101078233267657 +118764,593.8200000013566,-0.059100346095235665 +118765,593.8250000013567,-0.05909961410239863 +118766,593.8300000013568,-0.05909888225472925 +118767,593.8350000013569,-0.0590981505522002 +118768,593.840000001357,-0.059097418994784164 +118769,593.8450000013571,-0.05909668758245387 +118770,593.8500000013572,-0.05909595631518201 +118771,593.8550000013573,-0.05909522519294129 +118772,593.8600000013574,-0.059094494215704445 +118773,593.8650000013575,-0.05909376338344419 +118774,593.8700000013577,-0.05909303269613325 +118775,593.8750000013578,-0.05909230215374436 +118776,593.8800000013579,-0.05909157175625026 +118777,593.885000001358,-0.05909084150362371 +118778,593.8900000013581,-0.05909011139583744 +118779,593.8950000013582,-0.059089381432864234 +118780,593.9000000013583,-0.059088651614676836 +118781,593.9050000013584,-0.05908792194124801 +118782,593.9100000013585,-0.05908719241255054 +118783,593.9150000013586,-0.059086463028557204 +118784,593.9200000013587,-0.05908573378924078 +118785,593.9250000013589,-0.05908500469457407 +118786,593.930000001359,-0.05908427574452986 +118787,593.9350000013591,-0.05908354693908096 +118788,593.9400000013592,-0.059082818278200167 +118789,593.9450000013593,-0.0590820897618603 +118790,593.9500000013594,-0.05908136139003418 +118791,593.9550000013595,-0.05908063316269463 +118792,593.9600000013596,-0.05907990507981447 +118793,593.9650000013597,-0.05907917714136655 +118794,593.9700000013598,-0.05907844934732368 +118795,593.97500000136,-0.05907772169765875 +118796,593.98000000136,-0.05907699419234457 +118797,593.9850000013602,-0.059076266831354037 +118798,593.9900000013603,-0.05907553961465997 +118799,593.9950000013604,-0.05907481254223528 +118800,594.0000000013605,-0.05907408561405281 +118801,594.0050000013606,-0.05907335883008544 +118802,594.0100000013607,-0.05907263219030607 +118803,594.0150000013608,-0.059071905694687586 +118804,594.0200000013609,-0.059071179343202884 +118805,594.025000001361,-0.05907045313582487 +118806,594.0300000013611,-0.05906972707252642 +118807,594.0350000013613,-0.05906900115328047 +118808,594.0400000013614,-0.05906827537805994 +118809,594.0450000013615,-0.05906754974683774 +118810,594.0500000013616,-0.05906682425958681 +118811,594.0550000013617,-0.059066098916280084 +118812,594.0600000013618,-0.059065373716890496 +118813,594.0650000013619,-0.05906464866139099 +118814,594.070000001362,-0.05906392374975453 +118815,594.0750000013621,-0.05906319898195404 +118816,594.0800000013622,-0.05906247435796252 +118817,594.0850000013623,-0.0590617498777529 +118818,594.0900000013625,-0.05906102554129818 +118819,594.0950000013626,-0.05906030134857133 +118820,594.1000000013627,-0.05905957729954533 +118821,594.1050000013628,-0.059058853394193166 +118822,594.1100000013629,-0.059058129632487834 +118823,594.115000001363,-0.05905740601440233 +118824,594.1200000013631,-0.05905668253990967 +118825,594.1250000013632,-0.05905595920898286 +118826,594.1300000013633,-0.05905523602159491 +118827,594.1350000013634,-0.05905451297771885 +118828,594.1400000013635,-0.059053790077327695 +118829,594.1450000013637,-0.059053067320394476 +118830,594.1500000013638,-0.059052344706892246 +118831,594.1550000013639,-0.05905162223679402 +118832,594.160000001364,-0.059050899910072875 +118833,594.1650000013641,-0.05905017772670185 +118834,594.1700000013642,-0.059049455686654 +118835,594.1750000013643,-0.0590487337899024 +118836,594.1800000013644,-0.05904801203642012 +118837,594.1850000013645,-0.059047290426180225 +118838,594.1900000013646,-0.059046568959155804 +118839,594.1950000013647,-0.05904584763531995 +118840,594.2000000013649,-0.05904512645464573 +118841,594.205000001365,-0.05904440541710625 +118842,594.2100000013651,-0.059043684522674625 +118843,594.2150000013652,-0.05904296377132395 +118844,594.2200000013653,-0.05904224316302735 +118845,594.2250000013654,-0.05904152269775793 +118846,594.2300000013655,-0.05904080237548881 +118847,594.2350000013656,-0.05904008219619314 +118848,594.2400000013657,-0.05903936215984403 +118849,594.2450000013658,-0.05903864226641464 +118850,594.250000001366,-0.0590379225158781 +118851,594.255000001366,-0.05903720290820756 +118852,594.2600000013662,-0.059036483443376184 +118853,594.2650000013663,-0.05903576412135714 +118854,594.2700000013664,-0.059035044942123575 +118855,594.2750000013665,-0.05903432590564867 +118856,594.2800000013666,-0.0590336070119056 +118857,594.2850000013667,-0.059032888260867555 +118858,594.2900000013668,-0.0590321696525077 +118859,594.2950000013669,-0.05903145118679926 +118860,594.300000001367,-0.059030732863715414 +118861,594.3050000013671,-0.05903001468322937 +118862,594.3100000013673,-0.05902929664531433 +118863,594.3150000013674,-0.05902857874994352 +118864,594.3200000013675,-0.05902786099709016 +118865,594.3250000013676,-0.05902714338672746 +118866,594.3300000013677,-0.05902642591882865 +118867,594.3350000013678,-0.059025708593366984 +118868,594.3400000013679,-0.0590249914103157 +118869,594.345000001368,-0.059024274369648015 +118870,594.3500000013681,-0.05902355747133722 +118871,594.3550000013682,-0.05902284071535654 +118872,594.3600000013683,-0.05902212410167926 +118873,594.3650000013685,-0.05902140763027863 +118874,594.3700000013686,-0.05902069130112793 +118875,594.3750000013687,-0.059019975114200436 +118876,594.3800000013688,-0.05901925906946943 +118877,594.3850000013689,-0.0590185431669082 +118878,594.390000001369,-0.05901782740649006 +118879,594.3950000013691,-0.059017111788188276 +118880,594.4000000013692,-0.059016396311976166 +118881,594.4050000013693,-0.05901568097782705 +118882,594.4100000013694,-0.059014965785714225 +118883,594.4150000013695,-0.059014250735611014 +118884,594.4200000013697,-0.059013535827490755 +118885,594.4250000013698,-0.05901282106132676 +118886,594.4300000013699,-0.059012106437092385 +118887,594.43500000137,-0.059011391954760954 +118888,594.4400000013701,-0.05901067761430582 +118889,594.4450000013702,-0.05900996341570033 +118890,594.4500000013703,-0.05900924935891784 +118891,594.4550000013704,-0.05900853544393172 +118892,594.4600000013705,-0.05900782167071533 +118893,594.4650000013706,-0.05900710803924206 +118894,594.4700000013707,-0.059006394549485267 +118895,594.4750000013709,-0.05900568120141833 +118896,594.480000001371,-0.05900496799501465 +118897,594.4850000013711,-0.05900425493024763 +118898,594.4900000013712,-0.05900354200709065 +118899,594.4950000013713,-0.059002829225517105 +118900,594.5000000013714,-0.05900211658550042 +118901,594.5050000013715,-0.05900140408701401 +118902,594.5100000013716,-0.05900069173003128 +118903,594.5150000013717,-0.058999979514525666 +118904,594.5200000013718,-0.05899926744047059 +118905,594.525000001372,-0.0589985555078395 +118906,594.5300000013721,-0.05899784371660583 +118907,594.5350000013722,-0.05899713206674302 +118908,594.5400000013723,-0.05899642055822453 +118909,594.5450000013724,-0.05899570919102381 +118910,594.5500000013725,-0.05899499796511431 +118911,594.5550000013726,-0.0589942868804695 +118912,594.5600000013727,-0.05899357593706287 +118913,594.5650000013728,-0.058992865134867886 +118914,594.5700000013729,-0.05899215447385802 +118915,594.575000001373,-0.05899144395400677 +118916,594.5800000013732,-0.05899073357528762 +118917,594.5850000013733,-0.05899002333767406 +118918,594.5900000013734,-0.05898931324113962 +118919,594.5950000013735,-0.058988603285657776 +118920,594.6000000013736,-0.05898789347120204 +118921,594.6050000013737,-0.05898718379774596 +118922,594.6100000013738,-0.05898647426526303 +118923,594.6150000013739,-0.058985764873726795 +118924,594.620000001374,-0.05898505562311078 +118925,594.6250000013741,-0.05898434651338853 +118926,594.6300000013742,-0.05898363754453358 +118927,594.6350000013744,-0.05898292871651948 +118928,594.6400000013745,-0.05898222002931978 +118929,594.6450000013746,-0.05898151148290805 +118930,594.6500000013747,-0.05898080307725783 +118931,594.6550000013748,-0.05898009481234272 +118932,594.6600000013749,-0.05897938668813627 +118933,594.665000001375,-0.058978678704612084 +118934,594.6700000013751,-0.058977970861743716 +118935,594.6750000013752,-0.05897726315950477 +118936,594.6800000013753,-0.05897655559786885 +118937,594.6850000013754,-0.05897584817680955 +118938,594.6900000013756,-0.05897514089630046 +118939,594.6950000013757,-0.05897443375631521 +118940,594.7000000013758,-0.05897372675682739 +118941,594.7050000013759,-0.05897301989781065 +118942,594.710000001376,-0.05897231317923858 +118943,594.7150000013761,-0.058971606601084844 +118944,594.7200000013762,-0.05897090016332307 +118945,594.7250000013763,-0.05897019386592689 +118946,594.7300000013764,-0.05896948770886995 +118947,594.7350000013765,-0.0589687816921259 +118948,594.7400000013766,-0.0589680758156684 +118949,594.7450000013768,-0.058967370079471094 +118950,594.7500000013769,-0.05896666448350767 +118951,594.755000001377,-0.05896595902775179 +118952,594.7600000013771,-0.05896525371217713 +118953,594.7650000013772,-0.05896454853675738 +118954,594.7700000013773,-0.058963843501466204 +118955,594.7750000013774,-0.05896313860627731 +118956,594.7800000013775,-0.05896243385116439 +118957,594.7850000013776,-0.05896172923610115 +118958,594.7900000013777,-0.058961024761061284 +118959,594.7950000013778,-0.058960320426018516 +118960,594.800000001378,-0.05895961623094655 +118961,594.8050000013781,-0.058958912175819125 +118962,594.8100000013782,-0.05895820826060995 +118963,594.8150000013783,-0.05895750448529277 +118964,594.8200000013784,-0.05895680084984132 +118965,594.8250000013785,-0.05895609735422933 +118966,594.8300000013786,-0.058955393998430555 +118967,594.8350000013787,-0.05895469078241874 +118968,594.8400000013788,-0.05895398770616764 +118969,594.8450000013789,-0.05895328476965102 +118970,594.850000001379,-0.058952581972842664 +118971,594.8550000013792,-0.05895187931571633 +118972,594.8600000013793,-0.05895117679824578 +118973,594.8650000013794,-0.05895047442040482 +118974,594.8700000013795,-0.05894977218216722 +118975,594.8750000013796,-0.058949070083506784 +118976,594.8800000013797,-0.058948368124397306 +118977,594.8850000013798,-0.058947666304812574 +118978,594.8900000013799,-0.05894696462472641 +118979,594.89500000138,-0.05894626308411262 +118980,594.9000000013801,-0.05894556168294503 +118981,594.9050000013802,-0.05894486042119745 +118982,594.9100000013804,-0.0589441592988437 +118983,594.9150000013805,-0.05894345831585763 +118984,594.9200000013806,-0.05894275747221306 +118985,594.9250000013807,-0.05894205676788385 +118986,594.9300000013808,-0.05894135620284385 +118987,594.9350000013809,-0.0589406557770669 +118988,594.940000001381,-0.058939955490526844 +118989,594.9450000013811,-0.05893925534319756 +118990,594.9500000013812,-0.05893855533505291 +118991,594.9550000013813,-0.058937855466066766 +118992,594.9600000013814,-0.058937155736213 +118993,594.9650000013816,-0.0589364561454655 +118994,594.9700000013817,-0.05893575669379816 +118995,594.9750000013818,-0.05893505738118485 +118996,594.9800000013819,-0.05893435820759947 +118997,594.985000001382,-0.05893365917301594 +118998,594.9900000013821,-0.05893296027740816 +118999,594.9950000013822,-0.05893226152075003 +119000,595.0000000013823,-0.05893156290301549 +119001,595.0050000013824,-0.05893086442417844 +119002,595.0100000013825,-0.0589301660842128 +119003,595.0150000013826,-0.05892946788309253 +119004,595.0200000013828,-0.058928769820791545 +119005,595.0250000013829,-0.05892807189728379 +119006,595.030000001383,-0.05892737411254321 +119007,595.0350000013831,-0.05892667646654375 +119008,595.0400000013832,-0.058925978959259384 +119009,595.0450000013833,-0.058925281590664055 +119010,595.0500000013834,-0.05892458436073173 +119011,595.0550000013835,-0.05892388726943639 +119012,595.0600000013836,-0.058923190316752 +119013,595.0650000013837,-0.058922493502652544 +119014,595.0700000013838,-0.058921796827112016 +119015,595.075000001384,-0.05892110029010441 +119016,595.0800000013841,-0.0589204038916037 +119017,595.0850000013842,-0.05891970763158389 +119018,595.0900000013843,-0.058919011510019006 +119019,595.0950000013844,-0.058918315526883036 +119020,595.1000000013845,-0.05891761968215001 +119021,595.1050000013846,-0.058916923975793935 +119022,595.1100000013847,-0.05891622840778884 +119023,595.1150000013848,-0.05891553297810876 +119024,595.1200000013849,-0.05891483768672772 +119025,595.125000001385,-0.05891414253361977 +119026,595.1300000013852,-0.058913447518758946 +119027,595.1350000013853,-0.0589127526421193 +119028,595.1400000013854,-0.058912057903674896 +119029,595.1450000013855,-0.05891136330339977 +119030,595.1500000013856,-0.058910668841268006 +119031,595.1550000013857,-0.05890997451725366 +119032,595.1600000013858,-0.05890928033133082 +119033,595.1650000013859,-0.058908586283473556 +119034,595.170000001386,-0.05890789237365594 +119035,595.1750000013861,-0.058907198601852076 +119036,595.1800000013862,-0.058906504968036046 +119037,595.1850000013864,-0.05890581147218197 +119038,595.1900000013865,-0.05890511811426393 +119039,595.1950000013866,-0.05890442489425604 +119040,595.2000000013867,-0.05890373181213241 +119041,595.2050000013868,-0.05890303886786715 +119042,595.2100000013869,-0.0589023460614344 +119043,595.215000001387,-0.05890165339280827 +119044,595.2200000013871,-0.0589009608619629 +119045,595.2250000013872,-0.058900268468872426 +119046,595.2300000013873,-0.058899576213510996 +119047,595.2350000013874,-0.058898884095852755 +119048,595.2400000013876,-0.058898192115871835 +119049,595.2450000013877,-0.05889750027354242 +119050,595.2500000013878,-0.058896808568838666 +119051,595.2550000013879,-0.05889611700173472 +119052,595.260000001388,-0.05889542557220477 +119053,595.2650000013881,-0.058894734280222995 +119054,595.2700000013882,-0.058894043125763545 +119055,595.2750000013883,-0.058893352108800645 +119056,595.2800000013884,-0.058892661229308446 +119057,595.2850000013885,-0.05889197048726118 +119058,595.2900000013886,-0.05889127988263301 +119059,595.2950000013888,-0.05889058941539818 +119060,595.3000000013889,-0.05888989908553087 +119061,595.305000001389,-0.05888920889300531 +119062,595.3100000013891,-0.0588885188377957 +119063,595.3150000013892,-0.05888782891987628 +119064,595.3200000013893,-0.05888713913922129 +119065,595.3250000013894,-0.05888644949580494 +119066,595.3300000013895,-0.058885759989601466 +119067,595.3350000013896,-0.05888507062058514 +119068,595.3400000013897,-0.05888438138873018 +119069,595.3450000013898,-0.058883692294010845 +119070,595.35000000139,-0.0588830033364014 +119071,595.3550000013901,-0.05888231451587612 +119072,595.3600000013902,-0.058881625832409246 +119073,595.3650000013903,-0.05888093728597505 +119074,595.3700000013904,-0.058880248876547824 +119075,595.3750000013905,-0.058879560604101856 +119076,595.3800000013906,-0.058878872468611405 +119077,595.3850000013907,-0.05887818447005078 +119078,595.3900000013908,-0.05887749660839428 +119079,595.3950000013909,-0.05887680888361621 +119080,595.400000001391,-0.05887612129569085 +119081,595.4050000013912,-0.058875433844592526 +119082,595.4100000013913,-0.058874746530295556 +119083,595.4150000013914,-0.058874059352774254 +119084,595.4200000013915,-0.058873372312002945 +119085,595.4250000013916,-0.058872685407955955 +119086,595.4300000013917,-0.05887199864060762 +119087,595.4350000013918,-0.058871312009932286 +119088,595.4400000013919,-0.05887062551590428 +119089,595.445000001392,-0.058869939158497975 +119090,595.4500000013921,-0.05886925293768769 +119091,595.4550000013922,-0.05886856685344782 +119092,595.4600000013924,-0.0588678809057527 +119093,595.4650000013925,-0.058867195094576705 +119094,595.4700000013926,-0.0588665094198942 +119095,595.4750000013927,-0.05886582388167959 +119096,595.4800000013928,-0.05886513847990723 +119097,595.4850000013929,-0.058864453214551506 +119098,595.490000001393,-0.05886376808558681 +119099,595.4950000013931,-0.05886308309298755 +119100,595.5000000013932,-0.058862398236728126 +119101,595.5050000013933,-0.05886171351678293 +119102,595.5100000013935,-0.05886102893312638 +119103,595.5150000013936,-0.05886034448573288 +119104,595.5200000013937,-0.058859660174576875 +119105,595.5250000013938,-0.05885897599963276 +119106,595.5300000013939,-0.05885829196087498 +119107,595.535000001394,-0.058857608058277965 +119108,595.5400000013941,-0.058856924291816146 +119109,595.5450000013942,-0.05885624066146397 +119110,595.5500000013943,-0.0588555571671959 +119111,595.5550000013944,-0.05885487380898637 +119112,595.5600000013945,-0.05885419058680984 +119113,595.5650000013947,-0.05885350750064078 +119114,595.5700000013948,-0.058852824550453646 +119115,595.5750000013949,-0.05885214173622292 +119116,595.580000001395,-0.058851459057923064 +119117,595.5850000013951,-0.058850776515528565 +119118,595.5900000013952,-0.05885009410901391 +119119,595.5950000013953,-0.05884941183835359 +119120,595.6000000013954,-0.0588487297035221 +119121,595.6050000013955,-0.058848047704493936 +119122,595.6100000013956,-0.0588473658412436 +119123,595.6150000013957,-0.05884668411374561 +119124,595.6200000013959,-0.05884600252197447 +119125,595.625000001396,-0.0588453210659047 +119126,595.6300000013961,-0.05884463974551082 +119127,595.6350000013962,-0.058843958560767365 +119128,595.6400000013963,-0.05884327751164887 +119129,595.6450000013964,-0.05884259659812986 +119130,595.6500000013965,-0.05884191582018488 +119131,595.6550000013966,-0.05884123517778849 +119132,595.6600000013967,-0.05884055467091523 +119133,595.6650000013968,-0.05883987429953964 +119134,595.6700000013969,-0.058839194063636316 +119135,595.675000001397,-0.05883851396317978 +119136,595.6800000013972,-0.058837833998144635 +119137,595.6850000013973,-0.058837154168505434 +119138,595.6900000013974,-0.05883647447423677 +119139,595.6950000013975,-0.05883579491531322 +119140,595.7000000013976,-0.058835115491709375 +119141,595.7050000013977,-0.058834436203399836 +119142,595.7100000013978,-0.05883375705035918 +119143,595.7150000013979,-0.058833078032562026 +119144,595.720000001398,-0.05883239914998298 +119145,595.7250000013981,-0.05883172040259665 +119146,595.7300000013983,-0.05883104179037764 +119147,595.7350000013984,-0.0588303633133006 +119148,595.7400000013985,-0.05882968497134011 +119149,595.7450000013986,-0.05882900676447085 +119150,595.7500000013987,-0.05882832869266743 +119151,595.7550000013988,-0.05882765075590449 +119152,595.7600000013989,-0.058826972954156675 +119153,595.765000001399,-0.058826295287398626 +119154,595.7700000013991,-0.05882561775560501 +119155,595.7750000013992,-0.05882494035875048 +119156,595.7800000013993,-0.0588242630968097 +119157,595.7850000013995,-0.058823585969757335 +119158,595.7900000013996,-0.05882290897756805 +119159,595.7950000013997,-0.058822232120216526 +119160,595.8000000013998,-0.058821555397677444 +119161,595.8050000013999,-0.05882087880992549 +119162,595.8100000014,-0.05882020235693536 +119163,595.8150000014001,-0.05881952603868174 +119164,595.8200000014002,-0.05881884985513935 +119165,595.8250000014003,-0.058818173806282875 +119166,595.8300000014004,-0.05881749789208702 +119167,595.8350000014005,-0.05881682211252649 +119168,595.8400000014007,-0.05881614646757603 +119169,595.8450000014008,-0.058815470957210354 +119170,595.8500000014009,-0.058814795581404185 +119171,595.855000001401,-0.05881412034013225 +119172,595.8600000014011,-0.058813445233369295 +119173,595.8650000014012,-0.05881277026109005 +119174,595.8700000014013,-0.05881209542326927 +119175,595.8750000014014,-0.0588114207198817 +119176,595.8800000014015,-0.05881074615090209 +119177,595.8850000014016,-0.058810071716305215 +119178,595.8900000014017,-0.058809397416065834 +119179,595.8950000014019,-0.058808723250158706 +119180,595.900000001402,-0.05880804921855861 +119181,595.9050000014021,-0.058807375321240314 +119182,595.9100000014022,-0.05880670155817862 +119183,595.9150000014023,-0.05880602792934829 +119184,595.9200000014024,-0.058805354434724136 +119185,595.9250000014025,-0.058804681074280954 +119186,595.9300000014026,-0.058804007847993535 +119187,595.9350000014027,-0.05880333475583668 +119188,595.9400000014028,-0.058802661797785205 +119189,595.945000001403,-0.05880198897381392 +119190,595.950000001403,-0.05880131628389765 +119191,595.9550000014032,-0.05880064372801123 +119192,595.9600000014033,-0.05879997130612947 +119193,595.9650000014034,-0.05879929901822719 +119194,595.9700000014035,-0.05879862686427926 +119195,595.9750000014036,-0.0587979548442605 +119196,595.9800000014037,-0.058797282958145757 +119197,595.9850000014038,-0.0587966112059099 +119198,595.9900000014039,-0.058795939587527754 +119199,595.995000001404,-0.0587952681029742 +119200,596.0000000014041,-0.05879459675222411 +119201,596.0050000014043,-0.058793925535252325 +119202,596.0100000014044,-0.058793254452033754 +119203,596.0150000014045,-0.05879258350254324 +119204,596.0200000014046,-0.05879191268675568 +119205,596.0250000014047,-0.058791242004645965 +119206,596.0300000014048,-0.05879057145618899 +119207,596.0350000014049,-0.05878990104135964 +119208,596.040000001405,-0.05878923076013282 +119209,596.0450000014051,-0.058788560612483436 +119210,596.0500000014052,-0.0587878905983864 +119211,596.0550000014053,-0.05878722071781663 +119212,596.0600000014055,-0.05878655097074904 +119213,596.0650000014056,-0.058785881357158544 +119214,596.0700000014057,-0.05878521187702008 +119215,596.0750000014058,-0.05878454253030857 +119216,596.0800000014059,-0.05878387331699896 +119217,596.085000001406,-0.058783204237066206 +119218,596.0900000014061,-0.05878253529048523 +119219,596.0950000014062,-0.05878186647723099 +119220,596.1000000014063,-0.05878119779727845 +119221,596.1050000014064,-0.05878052925060256 +119222,596.1100000014065,-0.058779860837178274 +119223,596.1150000014067,-0.05877919255698059 +119224,596.1200000014068,-0.058778524409984455 +119225,596.1250000014069,-0.05877785639616487 +119226,596.130000001407,-0.05877718851549679 +119227,596.1350000014071,-0.05877652076795522 +119228,596.1400000014072,-0.05877585315351515 +119229,596.1450000014073,-0.058775185672151564 +119230,596.1500000014074,-0.058774518323839474 +119231,596.1550000014075,-0.05877385110855388 +119232,596.1600000014076,-0.05877318402626979 +119233,596.1650000014077,-0.05877251707696222 +119234,596.1700000014079,-0.05877185026060619 +119235,596.175000001408,-0.058771183577176714 +119236,596.1800000014081,-0.05877051702664883 +119237,596.1850000014082,-0.05876985060899756 +119238,596.1900000014083,-0.058769184324197955 +119239,596.1950000014084,-0.05876851817222503 +119240,596.2000000014085,-0.05876785215305385 +119241,596.2050000014086,-0.058767186266659464 +119242,596.2100000014087,-0.05876652051301693 +119243,596.2150000014088,-0.05876585489210129 +119244,596.220000001409,-0.05876518940388762 +119245,596.2250000014091,-0.05876452404835098 +119246,596.2300000014092,-0.05876385882546645 +119247,596.2350000014093,-0.058763193735209086 +119248,596.2400000014094,-0.058762528777553995 +119249,596.2450000014095,-0.05876186395247625 +119250,596.2500000014096,-0.05876119925995094 +119251,596.2550000014097,-0.05876053469995317 +119252,596.2600000014098,-0.058759870272458034 +119253,596.2650000014099,-0.058759205977440616 +119254,596.27000000141,-0.05875854181487605 +119255,596.2750000014101,-0.05875787778473943 +119256,596.2800000014103,-0.05875721388700589 +119257,596.2850000014104,-0.058756550121650535 +119258,596.2900000014105,-0.058755886488648504 +119259,596.2950000014106,-0.05875522298797492 +119260,596.3000000014107,-0.05875455961960492 +119261,596.3050000014108,-0.05875389638351364 +119262,596.3100000014109,-0.05875323327967621 +119263,596.315000001411,-0.058752570308067804 +119264,596.3200000014111,-0.05875190746866356 +119265,596.3250000014112,-0.05875124476143864 +119266,596.3300000014113,-0.058750582186368194 +119267,596.3350000014115,-0.0587499197434274 +119268,596.3400000014116,-0.05874925743259142 +119269,596.3450000014117,-0.05874859525383543 +119270,596.3500000014118,-0.058747933207134624 +119271,596.3550000014119,-0.05874727129246416 +119272,596.360000001412,-0.05874660950979924 +119273,596.3650000014121,-0.058745947859115064 +119274,596.3700000014122,-0.05874528634038682 +119275,596.3750000014123,-0.058744624953589696 +119276,596.3800000014124,-0.05874396369869891 +119277,596.3850000014125,-0.05874330257568967 +119278,596.3900000014127,-0.058742641584537195 +119279,596.3950000014128,-0.058741980725216705 +119280,596.4000000014129,-0.05874131999770341 +119281,596.405000001413,-0.05874065940197255 +119282,596.4100000014131,-0.05873999893799936 +119283,596.4150000014132,-0.05873933860575906 +119284,596.4200000014133,-0.05873867840522691 +119285,596.4250000014134,-0.05873801833637814 +119286,596.4300000014135,-0.058737358399188 +119287,596.4350000014136,-0.05873669859363176 +119288,596.4400000014138,-0.05873603891968466 +119289,596.4450000014139,-0.058735379377321977 +119290,596.450000001414,-0.05873471996651897 +119291,596.4550000014141,-0.05873406068725092 +119292,596.4600000014142,-0.05873340153949309 +119293,596.4650000014143,-0.05873274252322076 +119294,596.4700000014144,-0.05873208363840924 +119295,596.4750000014145,-0.058731424885033794 +119296,596.4800000014146,-0.058730766263069716 +119297,596.4850000014147,-0.05873010777249232 +119298,596.4900000014148,-0.058729449413276895 +119299,596.495000001415,-0.05872879118539876 +119300,596.5000000014151,-0.05872813308883322 +119301,596.5050000014152,-0.05872747512355558 +119302,596.5100000014153,-0.058726817289541176 +119303,596.5150000014154,-0.05872615958676534 +119304,596.5200000014155,-0.05872550201520338 +119305,596.5250000014156,-0.058724844574830626 +119306,596.5300000014157,-0.05872418726562243 +119307,596.5350000014158,-0.05872353008755414 +119308,596.5400000014159,-0.05872287304060109 +119309,596.545000001416,-0.05872221612473864 +119310,596.5500000014162,-0.058721559339942137 +119311,596.5550000014163,-0.05872090268618693 +119312,596.5600000014164,-0.05872024616344841 +119313,596.5650000014165,-0.058719589771701934 +119314,596.5700000014166,-0.05871893351092287 +119315,596.5750000014167,-0.05871827738108659 +119316,596.5800000014168,-0.05871762138216849 +119317,596.5850000014169,-0.05871696551414395 +119318,596.590000001417,-0.05871630977698836 +119319,596.5950000014171,-0.058715654170677097 +119320,596.6000000014172,-0.05871499869518559 +119321,596.6050000014174,-0.058714343350489216 +119322,596.6100000014175,-0.058713688136563406 +119323,596.6150000014176,-0.05871303305338357 +119324,596.6200000014177,-0.05871237810092511 +119325,596.6250000014178,-0.05871172327916345 +119326,596.6300000014179,-0.05871106858807401 +119327,596.635000001418,-0.05871041402763224 +119328,596.6400000014181,-0.05870975959781356 +119329,596.6450000014182,-0.058709105298593404 +119330,596.6500000014183,-0.05870845112994722 +119331,596.6550000014184,-0.05870779709185045 +119332,596.6600000014186,-0.058707143184278554 +119333,596.6650000014187,-0.05870648940720699 +119334,596.6700000014188,-0.05870583576061121 +119335,596.6750000014189,-0.05870518224446667 +119336,596.680000001419,-0.05870452885874886 +119337,596.6850000014191,-0.058703875603433237 +119338,596.6900000014192,-0.05870322247849528 +119339,596.6950000014193,-0.05870256948391047 +119340,596.7000000014194,-0.0587019166196543 +119341,596.7050000014195,-0.05870126388570225 +119342,596.7100000014196,-0.05870061128202983 +119343,596.7150000014198,-0.05869995880861252 +119344,596.7200000014199,-0.058699306465425836 +119345,596.72500000142,-0.05869865425244528 +119346,596.7300000014201,-0.05869800216964637 +119347,596.7350000014202,-0.058697350217004625 +119348,596.7400000014203,-0.05869669839449556 +119349,596.7450000014204,-0.05869604670209469 +119350,596.7500000014205,-0.05869539513977756 +119351,596.7550000014206,-0.058694743707519696 +119352,596.7600000014207,-0.05869409240529663 +119353,596.7650000014208,-0.05869344123308392 +119354,596.770000001421,-0.058692790190857096 +119355,596.7750000014211,-0.05869213927859171 +119356,596.7800000014212,-0.058691488496263336 +119357,596.7850000014213,-0.05869083784384752 +119358,596.7900000014214,-0.05869018732131983 +119359,596.7950000014215,-0.05868953692865581 +119360,596.8000000014216,-0.058688886665831067 +119361,596.8050000014217,-0.05868823653282117 +119362,596.8100000014218,-0.05868758652960169 +119363,596.8150000014219,-0.05868693665614822 +119364,596.820000001422,-0.058686286912436346 +119365,596.8250000014222,-0.058685637298441666 +119366,596.8300000014223,-0.058684987814139764 +119367,596.8350000014224,-0.05868433845950625 +119368,596.8400000014225,-0.05868368923451674 +119369,596.8450000014226,-0.058683040139146825 +119370,596.8500000014227,-0.05868239117337216 +119371,596.8550000014228,-0.058681742337168316 +119372,596.8600000014229,-0.05868109363051096 +119373,596.865000001423,-0.05868044505337569 +119374,596.8700000014231,-0.058679796605738146 +119375,596.8750000014232,-0.058679148287573965 +119376,596.8800000014234,-0.058678500098858805 +119377,596.8850000014235,-0.058677852039568296 +119378,596.8900000014236,-0.058677204109678076 +119379,596.8950000014237,-0.05867655630916382 +119380,596.9000000014238,-0.05867590863800118 +119381,596.9050000014239,-0.05867526109616581 +119382,596.910000001424,-0.0586746136836334 +119383,596.9150000014241,-0.058673966400379585 +119384,596.9200000014242,-0.05867331924638008 +119385,596.9250000014243,-0.058672672221610524 +119386,596.9300000014244,-0.05867202532604664 +119387,596.9350000014246,-0.058671378559664096 +119388,596.9400000014247,-0.05867073192243858 +119389,596.9450000014248,-0.05867008541434579 +119390,596.9500000014249,-0.058669439035361454 +119391,596.955000001425,-0.058668792785461235 +119392,596.9600000014251,-0.05866814666462088 +119393,596.9650000014252,-0.05866750067281608 +119394,596.9700000014253,-0.05866685481002256 +119395,596.9750000014254,-0.05866620907621605 +119396,596.9800000014255,-0.058665563471372265 +119397,596.9850000014256,-0.058664917995466935 +119398,596.9900000014258,-0.058664272648475804 +119399,596.9950000014259,-0.05866362743037461 +119400,597.000000001426,-0.058662982341139085 +119401,597.0050000014261,-0.058662337380745 +119402,597.0100000014262,-0.058661692549168094 +119403,597.0150000014263,-0.05866104784638412 +119404,597.0200000014264,-0.05866040327236884 +119405,597.0250000014265,-0.058659758827098035 +119406,597.0300000014266,-0.05865911451054744 +119407,597.0350000014267,-0.05865847032269286 +119408,597.0400000014268,-0.058657826263510064 +119409,597.045000001427,-0.05865718233297483 +119410,597.0500000014271,-0.05865653853106294 +119411,597.0550000014272,-0.0586558948577502 +119412,597.0600000014273,-0.058655251313012385 +119413,597.0650000014274,-0.05865460789682531 +119414,597.0700000014275,-0.05865396460916478 +119415,597.0750000014276,-0.05865332145000659 +119416,597.0800000014277,-0.05865267841932655 +119417,597.0850000014278,-0.058652035517100486 +119418,597.0900000014279,-0.05865139274330421 +119419,597.095000001428,-0.05865075009791356 +119420,597.1000000014282,-0.058650107580904345 +119421,597.1050000014283,-0.05864946519225242 +119422,597.1100000014284,-0.05864882293193361 +119423,597.1150000014285,-0.05864818079992375 +119424,597.1200000014286,-0.0586475387961987 +119425,597.1250000014287,-0.058646896920734305 +119426,597.1300000014288,-0.05864625517350642 +119427,597.1350000014289,-0.0586456135544909 +119428,597.140000001429,-0.05864497206366359 +119429,597.1450000014291,-0.058644330701000384 +119430,597.1500000014292,-0.05864368946647714 +119431,597.1550000014294,-0.05864304836006974 +119432,597.1600000014295,-0.05864240738175405 +119433,597.1650000014296,-0.05864176653150598 +119434,597.1700000014297,-0.0586411258093014 +119435,597.1750000014298,-0.0586404852151162 +119436,597.1800000014299,-0.05863984474892628 +119437,597.18500000143,-0.05863920441070754 +119438,597.1900000014301,-0.05863856420043588 +119439,597.1950000014302,-0.058637924118087215 +119440,597.2000000014303,-0.05863728416363745 +119441,597.2050000014304,-0.058636644337062505 +119442,597.2100000014306,-0.058636004638338304 +119443,597.2150000014307,-0.05863536506744079 +119444,597.2200000014308,-0.058634725624345865 +119445,597.2250000014309,-0.05863408630902947 +119446,597.230000001431,-0.058633447121467556 +119447,597.2350000014311,-0.05863280806163606 +119448,597.2400000014312,-0.058632169129510914 +119449,597.2450000014313,-0.058631530325068085 +119450,597.2500000014314,-0.05863089164828352 +119451,597.2550000014315,-0.0586302530991332 +119452,597.2600000014316,-0.05862961467759307 +119453,597.2650000014318,-0.058628976383639085 +119454,597.2700000014319,-0.058628338217247236 +119455,597.275000001432,-0.0586277001783935 +119456,597.2800000014321,-0.058627062267053845 +119457,597.2850000014322,-0.058626424483204265 +119458,597.2900000014323,-0.05862578682682074 +119459,597.2950000014324,-0.05862514929787928 +119460,597.3000000014325,-0.058624511896355855 +119461,597.3050000014326,-0.058623874622226485 +119462,597.3100000014327,-0.05862323747546717 +119463,597.3150000014328,-0.05862260045605392 +119464,597.320000001433,-0.05862196356396275 +119465,597.3250000014331,-0.05862132679916968 +119466,597.3300000014332,-0.05862069016165073 +119467,597.3350000014333,-0.058620053651381926 +119468,597.3400000014334,-0.058619417268339295 +119469,597.3450000014335,-0.05861878101249887 +119470,597.3500000014336,-0.05861814488383671 +119471,597.3550000014337,-0.058617508882328834 +119472,597.3600000014338,-0.0586168730079513 +119473,597.3650000014339,-0.05861623726068015 +119474,597.370000001434,-0.05861560164049145 +119475,597.3750000014342,-0.05861496614736126 +119476,597.3800000014343,-0.058614330781265635 +119477,597.3850000014344,-0.058613695542180655 +119478,597.3900000014345,-0.058613060430082374 +119479,597.3950000014346,-0.05861242544494688 +119480,597.4000000014347,-0.05861179058675026 +119481,597.4050000014348,-0.0586111558554686 +119482,597.4100000014349,-0.05861052125107797 +119483,597.415000001435,-0.05860988677355448 +119484,597.4200000014351,-0.05860925242287422 +119485,597.4250000014353,-0.05860861819901329 +119486,597.4300000014354,-0.058607984101947806 +119487,597.4350000014355,-0.058607350131653864 +119488,597.4400000014356,-0.058606716288107576 +119489,597.4450000014357,-0.05860608257128507 +119490,597.4500000014358,-0.05860544898116247 +119491,597.4550000014359,-0.058604815517715896 +119492,597.460000001436,-0.05860418218092147 +119493,597.4650000014361,-0.05860354897075534 +119494,597.4700000014362,-0.05860291588719365 +119495,597.4750000014363,-0.058602282930212524 +119496,597.4800000014365,-0.058601650099788134 +119497,597.4850000014366,-0.058601017395896605 +119498,597.4900000014367,-0.0586003848185141 +119499,597.4950000014368,-0.05859975236761679 +119500,597.5000000014369,-0.05859912004318082 +119501,597.505000001437,-0.05859848784518238 +119502,597.5100000014371,-0.058597855773597614 +119503,597.5150000014372,-0.05859722382840272 +119504,597.5200000014373,-0.05859659200957387 +119505,597.5250000014374,-0.05859596031708726 +119506,597.5300000014375,-0.058595328750919065 +119507,597.5350000014377,-0.05859469731104548 +119508,597.5400000014378,-0.0585940659974427 +119509,597.5450000014379,-0.058593434810086935 +119510,597.550000001438,-0.058592803748954383 +119511,597.5550000014381,-0.05859217281402124 +119512,597.5600000014382,-0.05859154200526374 +119513,597.5650000014383,-0.05859091132265809 +119514,597.5700000014384,-0.058590280766180516 +119515,597.5750000014385,-0.058589650335807236 +119516,597.5800000014386,-0.0585890200315145 +119517,597.5850000014387,-0.058588389853278515 +119518,597.5900000014389,-0.058587759801075535 +119519,597.595000001439,-0.0585871298748818 +119520,597.6000000014391,-0.05858650007467355 +119521,597.6050000014392,-0.058585870400427044 +119522,597.6100000014393,-0.05858524085211852 +119523,597.6150000014394,-0.05858461142972425 +119524,597.6200000014395,-0.058583982133220504 +119525,597.6250000014396,-0.05858335296258353 +119526,597.6300000014397,-0.058582723917789625 +119527,597.6350000014398,-0.05858209499881504 +119528,597.64000000144,-0.05858146620563605 +119529,597.64500000144,-0.05858083753822895 +119530,597.6500000014402,-0.058580208996570036 +119531,597.6550000014403,-0.058579580580635594 +119532,597.6600000014404,-0.0585789522904019 +119533,597.6650000014405,-0.05857832412584529 +119534,597.6700000014406,-0.05857769608694203 +119535,597.6750000014407,-0.05857706817366845 +119536,597.6800000014408,-0.05857644038600086 +119537,597.6850000014409,-0.058575812723915564 +119538,597.690000001441,-0.0585751851873889 +119539,597.6950000014411,-0.058574557776397175 +119540,597.7000000014413,-0.05857393049091673 +119541,597.7050000014414,-0.05857330333092389 +119542,597.7100000014415,-0.058572676296395 +119543,597.7150000014416,-0.058572049387306396 +119544,597.7200000014417,-0.05857142260363442 +119545,597.7250000014418,-0.058570795945355414 +119546,597.7300000014419,-0.05857016941244575 +119547,597.735000001442,-0.058569543004881784 +119548,597.7400000014421,-0.058568916722639856 +119549,597.7450000014422,-0.058568290565696346 +119550,597.7500000014423,-0.05856766453402761 +119551,597.7550000014425,-0.05856703862761005 +119552,597.7600000014426,-0.05856641284642001 +119553,597.7650000014427,-0.0585657871904339 +119554,597.7700000014428,-0.05856516165962808 +119555,597.7750000014429,-0.058564536253978956 +119556,597.780000001443,-0.058563910973462925 +119557,597.7850000014431,-0.05856328581805637 +119558,597.7900000014432,-0.0585626607877357 +119559,597.7950000014433,-0.05856203588247732 +119560,597.8000000014434,-0.05856141110225764 +119561,597.8050000014435,-0.05856078644705308 +119562,597.8100000014437,-0.05856016191684005 +119563,597.8150000014438,-0.05855953751159497 +119564,597.8200000014439,-0.058558913231294286 +119565,597.825000001444,-0.05855828907591442 +119566,597.8300000014441,-0.05855766504543179 +119567,597.8350000014442,-0.058557041139822845 +119568,597.8400000014443,-0.05855641735906403 +119569,597.8450000014444,-0.0585557937031318 +119570,597.8500000014445,-0.05855517017200259 +119571,597.8550000014446,-0.05855454676565286 +119572,597.8600000014447,-0.05855392348405907 +119573,597.8650000014449,-0.05855330032719769 +119574,597.870000001445,-0.05855267729504519 +119575,597.8750000014451,-0.05855205438757801 +119576,597.8800000014452,-0.058551431604772664 +119577,597.8850000014453,-0.0585508089466056 +119578,597.8900000014454,-0.058550186413053325 +119579,597.8950000014455,-0.05854956400409232 +119580,597.9000000014456,-0.05854894171969907 +119581,597.9050000014457,-0.058548319559850084 +119582,597.9100000014458,-0.05854769752452185 +119583,597.915000001446,-0.058547075613690866 +119584,597.920000001446,-0.05854645382733365 +119585,597.9250000014462,-0.058545832165426706 +119586,597.9300000014463,-0.05854521062794656 +119587,597.9350000014464,-0.058544589214869734 +119588,597.9400000014465,-0.058543967926172724 +119589,597.9450000014466,-0.0585433467618321 +119590,597.9500000014467,-0.058542725721824354 +119591,597.9550000014468,-0.05854210480612605 +119592,597.9600000014469,-0.05854148401471372 +119593,597.965000001447,-0.0585408633475639 +119594,597.9700000014471,-0.05854024280465315 +119595,597.9750000014473,-0.058539622385958015 +119596,597.9800000014474,-0.05853900209145506 +119597,597.9850000014475,-0.05853838192112085 +119598,597.9900000014476,-0.05853776187493192 +119599,597.9950000014477,-0.05853714195286486 +119600,598.0000000014478,-0.05853652215489625 +119601,598.0050000014479,-0.058535902481002655 +119602,598.010000001448,-0.05853528293116065 +119603,598.0150000014481,-0.05853466350534683 +119604,598.0200000014482,-0.05853404420353778 +119605,598.0250000014483,-0.05853342502571009 +119606,598.0300000014485,-0.058532805971840365 +119607,598.0350000014486,-0.05853218704190519 +119608,598.0400000014487,-0.05853156823588118 +119609,598.0450000014488,-0.058530949553744945 +119610,598.0500000014489,-0.05853033099547309 +119611,598.055000001449,-0.058529712561042245 +119612,598.0600000014491,-0.05852909425042903 +119613,598.0650000014492,-0.05852847606361006 +119614,598.0700000014493,-0.05852785800056196 +119615,598.0750000014494,-0.05852724006126138 +119616,598.0800000014495,-0.05852662224568495 +119617,598.0850000014497,-0.058526004553809303 +119618,598.0900000014498,-0.05852538698561109 +119619,598.0950000014499,-0.05852476954106696 +119620,598.10000000145,-0.05852415222015357 +119621,598.1050000014501,-0.05852353502284757 +119622,598.1100000014502,-0.05852291794912561 +119623,598.1150000014503,-0.05852230099896438 +119624,598.1200000014504,-0.05852168417234054 +119625,598.1250000014505,-0.05852106746923076 +119626,598.1300000014506,-0.058520450889611726 +119627,598.1350000014507,-0.05851983443346011 +119628,598.1400000014509,-0.0585192181007526 +119629,598.145000001451,-0.05851860189146588 +119630,598.1500000014511,-0.05851798580557664 +119631,598.1550000014512,-0.0585173698430616 +119632,598.1600000014513,-0.058516754003897435 +119633,598.1650000014514,-0.05851613828806086 +119634,598.1700000014515,-0.058515522695528586 +119635,598.1750000014516,-0.05851490722627733 +119636,598.1800000014517,-0.05851429188028381 +119637,598.1850000014518,-0.058513676657524744 +119638,598.190000001452,-0.05851306155797684 +119639,598.1950000014521,-0.058512446581616855 +119640,598.2000000014522,-0.05851183172842151 +119641,598.2050000014523,-0.058511216998367546 +119642,598.2100000014524,-0.05851060239143169 +119643,598.2150000014525,-0.058509987907590696 +119644,598.2200000014526,-0.05850937354682132 +119645,598.2250000014527,-0.058508759309100315 +119646,598.2300000014528,-0.058508145194404435 +119647,598.2350000014529,-0.05850753120271044 +119648,598.240000001453,-0.058506917333995094 +119649,598.2450000014531,-0.05850630358823517 +119650,598.2500000014533,-0.05850568996540744 +119651,598.2550000014534,-0.058505076465488685 +119652,598.2600000014535,-0.05850446308845568 +119653,598.2650000014536,-0.05850384983428521 +119654,598.2700000014537,-0.05850323670295407 +119655,598.2750000014538,-0.05850262369443905 +119656,598.2800000014539,-0.05850201080871695 +119657,598.285000001454,-0.05850139804576456 +119658,598.2900000014541,-0.058500785405558704 +119659,598.2950000014542,-0.05850017288807618 +119660,598.3000000014544,-0.0584995604932938 +119661,598.3050000014545,-0.05849894822118839 +119662,598.3100000014546,-0.058498336071736746 +119663,598.3150000014547,-0.05849772404491572 +119664,598.3200000014548,-0.05849711214070213 +119665,598.3250000014549,-0.05849650035907281 +119666,598.330000001455,-0.0584958887000046 +119667,598.3350000014551,-0.058495277163474343 +119668,598.3400000014552,-0.05849466574945888 +119669,598.3450000014553,-0.05849405445793507 +119670,598.3500000014554,-0.058493443288879746 +119671,598.3550000014556,-0.05849283224226979 +119672,598.3600000014557,-0.05849222131808203 +119673,598.3650000014558,-0.05849161051629336 +119674,598.3700000014559,-0.058490999836880636 +119675,598.375000001456,-0.05849038927982073 +119676,598.3800000014561,-0.058489778845090525 +119677,598.3850000014562,-0.05848916853266691 +119678,598.3900000014563,-0.058488558342526746 +119679,598.3950000014564,-0.05848794827464694 +119680,598.4000000014565,-0.05848733832900437 +119681,598.4050000014566,-0.05848672850557596 +119682,598.4100000014568,-0.05848611880433857 +119683,598.4150000014569,-0.05848550922526914 +119684,598.420000001457,-0.058484899768344575 +119685,598.4250000014571,-0.05848429043354177 +119686,598.4300000014572,-0.058483681220837656 +119687,598.4350000014573,-0.05848307213020914 +119688,598.4400000014574,-0.05848246316163315 +119689,598.4450000014575,-0.05848185431508662 +119690,598.4500000014576,-0.058481245590546495 +119691,598.4550000014577,-0.058480636987989686 +119692,598.4600000014578,-0.058480028507393145 +119693,598.465000001458,-0.05847942014873382 +119694,598.4700000014581,-0.05847881191198866 +119695,598.4750000014582,-0.0584782037971346 +119696,598.4800000014583,-0.05847759580414861 +119697,598.4850000014584,-0.05847698793300765 +119698,598.4900000014585,-0.05847638018368868 +119699,598.4950000014586,-0.05847577255616866 +119700,598.5000000014587,-0.0584751650504246 +119701,598.5050000014588,-0.058474557666433426 +119702,598.5100000014589,-0.058473950404172144 +119703,598.515000001459,-0.058473343263617736 +119704,598.5200000014592,-0.058472736244747185 +119705,598.5250000014593,-0.05847212934753749 +119706,598.5300000014594,-0.05847152257196564 +119707,598.5350000014595,-0.05847091591800863 +119708,598.5400000014596,-0.058470309385643474 +119709,598.5450000014597,-0.05846970297484718 +119710,598.5500000014598,-0.05846909668559675 +119711,598.5550000014599,-0.058468490517869204 +119712,598.56000000146,-0.05846788447164156 +119713,598.5650000014601,-0.05846727854689084 +119714,598.5700000014602,-0.05846667274359407 +119715,598.5750000014604,-0.0584660670617283 +119716,598.5800000014605,-0.05846546150127054 +119717,598.5850000014606,-0.05846485606219784 +119718,598.5900000014607,-0.05846425074448723 +119719,598.5950000014608,-0.05846364554811578 +119720,598.6000000014609,-0.058463040473060515 +119721,598.605000001461,-0.05846243551929851 +119722,598.6100000014611,-0.05846183068680682 +119723,598.6150000014612,-0.0584612259755625 +119724,598.6200000014613,-0.05846062138554262 +119725,598.6250000014614,-0.058460016916724256 +119726,598.6300000014616,-0.058459412569084476 +119727,598.6350000014617,-0.058458808342600366 +119728,598.6400000014618,-0.05845820423724899 +119729,598.6450000014619,-0.05845760025300746 +119730,598.650000001462,-0.05845699638985285 +119731,598.6550000014621,-0.058456392647762256 +119732,598.6600000014622,-0.05845578902671278 +119733,598.6650000014623,-0.05845518552668152 +119734,598.6700000014624,-0.05845458214764557 +119735,598.6750000014625,-0.058453978889582064 +119736,598.6800000014626,-0.05845337575246809 +119737,598.6850000014628,-0.05845277273628079 +119738,598.6900000014629,-0.05845216984099727 +119739,598.695000001463,-0.05845156706659466 +119740,598.7000000014631,-0.05845096441305009 +119741,598.7050000014632,-0.058450361880340695 +119742,598.7100000014633,-0.0584497594684436 +119743,598.7150000014634,-0.05844915717733597 +119744,598.7200000014635,-0.058448555006994925 +119745,598.7250000014636,-0.05844795295739762 +119746,598.7300000014637,-0.058447351028521215 +119747,598.7350000014638,-0.05844674922034287 +119748,598.740000001464,-0.058446147532839735 +119749,598.7450000014641,-0.058445545965988985 +119750,598.7500000014642,-0.058444944519767776 +119751,598.7550000014643,-0.05844434319415329 +119752,598.7600000014644,-0.0584437419891227 +119753,598.7650000014645,-0.058443140904653176 +119754,598.7700000014646,-0.05844253994072193 +119755,598.7750000014647,-0.05844193909730612 +119756,598.7800000014648,-0.05844133837438295 +119757,598.7850000014649,-0.058440737771929624 +119758,598.790000001465,-0.05844013728992333 +119759,598.7950000014652,-0.05843953692834127 +119760,598.8000000014653,-0.058438936687160666 +119761,598.8050000014654,-0.05843833656635872 +119762,598.8100000014655,-0.05843773656591263 +119763,598.8150000014656,-0.05843713668579965 +119764,598.8200000014657,-0.05843653692599698 +119765,598.8250000014658,-0.058435937286481845 +119766,598.8300000014659,-0.05843533776723149 +119767,598.835000001466,-0.05843473836822314 +119768,598.8400000014661,-0.05843413908943404 +119769,598.8450000014662,-0.05843353993084144 +119770,598.8500000014664,-0.05843294089242257 +119771,598.8550000014665,-0.05843234197415468 +119772,598.8600000014666,-0.05843174317601504 +119773,598.8650000014667,-0.05843114449798088 +119774,598.8700000014668,-0.05843054594002949 +119775,598.8750000014669,-0.05842994750213813 +119776,598.880000001467,-0.058429349184284066 +119777,598.8850000014671,-0.05842875098644457 +119778,598.8900000014672,-0.05842815290859693 +119779,598.8950000014673,-0.05842755495071842 +119780,598.9000000014674,-0.05842695711278631 +119781,598.9050000014676,-0.05842635939477792 +119782,598.9100000014677,-0.058425761796670514 +119783,598.9150000014678,-0.05842516431844142 +119784,598.9200000014679,-0.058424566960067904 +119785,598.925000001468,-0.0584239697215273 +119786,598.9300000014681,-0.058423372602796904 +119787,598.9350000014682,-0.05842277560385402 +119788,598.9400000014683,-0.05842217872467599 +119789,598.9450000014684,-0.05842158196524011 +119790,598.9500000014685,-0.05842098532552372 +119791,598.9550000014686,-0.05842038880550413 +119792,598.9600000014688,-0.05841979240515869 +119793,598.9650000014689,-0.05841919612446472 +119794,598.970000001469,-0.05841859996339957 +119795,598.9750000014691,-0.058418003921940596 +119796,598.9800000014692,-0.058417408000065126 +119797,598.9850000014693,-0.058416812197750516 +119798,598.9900000014694,-0.058416216514974126 +119799,598.9950000014695,-0.05841562095171331 +119800,599.0000000014696,-0.05841502550794543 +119801,599.0050000014697,-0.05841443018364785 +119802,599.0100000014698,-0.05841383497879795 +119803,599.01500000147,-0.0584132398933731 +119804,599.0200000014701,-0.05841264492735068 +119805,599.0250000014702,-0.05841205008070807 +119806,599.0300000014703,-0.05841145535342265 +119807,599.0350000014704,-0.058410860745471825 +119808,599.0400000014705,-0.05841026625683299 +119809,599.0450000014706,-0.05840967188748353 +119810,599.0500000014707,-0.058409077637400844 +119811,599.0550000014708,-0.05840848350656235 +119812,599.0600000014709,-0.05840788949494545 +119813,599.065000001471,-0.05840729560252757 +119814,599.0700000014712,-0.05840670182928611 +119815,599.0750000014713,-0.0584061081751985 +119816,599.0800000014714,-0.058405514640242163 +119817,599.0850000014715,-0.058404921224394515 +119818,599.0900000014716,-0.058404327927633004 +119819,599.0950000014717,-0.05840373474993507 +119820,599.1000000014718,-0.05840314169127814 +119821,599.1050000014719,-0.05840254875163967 +119822,599.110000001472,-0.058401955930997104 +119823,599.1150000014721,-0.05840136322932789 +119824,599.1200000014722,-0.058400770646609486 +119825,599.1250000014724,-0.05840017818281936 +119826,599.1300000014725,-0.05839958583793497 +119827,599.1350000014726,-0.058398993611933764 +119828,599.1400000014727,-0.058398401504793244 +119829,599.1450000014728,-0.058397809516490866 +119830,599.1500000014729,-0.05839721764700411 +119831,599.155000001473,-0.05839662589631047 +119832,599.1600000014731,-0.05839603426438743 +119833,599.1650000014732,-0.05839544275121246 +119834,599.1700000014733,-0.05839485135676307 +119835,599.1750000014734,-0.058394260081016766 +119836,599.1800000014736,-0.05839366892395104 +119837,599.1850000014737,-0.05839307788554339 +119838,599.1900000014738,-0.05839248696577134 +119839,599.1950000014739,-0.058391896164612406 +119840,599.200000001474,-0.05839130548204409 +119841,599.2050000014741,-0.05839071491804393 +119842,599.2100000014742,-0.058390124472589434 +119843,599.2150000014743,-0.058389534145658145 +119844,599.2200000014744,-0.05838894393722758 +119845,599.2250000014745,-0.058388353847275296 +119846,599.2300000014747,-0.05838776387577882 +119847,599.2350000014748,-0.0583871740227157 +119848,599.2400000014749,-0.058386584288063474 +119849,599.245000001475,-0.05838599467179971 +119850,599.2500000014751,-0.05838540517390196 +119851,599.2550000014752,-0.058384815794347775 +119852,599.2600000014753,-0.058384226533114716 +119853,599.2650000014754,-0.058383637390180355 +119854,599.2700000014755,-0.05838304836552227 +119855,599.2750000014756,-0.05838245945911804 +119856,599.2800000014757,-0.05838187067094523 +119857,599.2850000014759,-0.05838128200098143 +119858,599.290000001476,-0.05838069344920422 +119859,599.2950000014761,-0.0583801050155912 +119860,599.3000000014762,-0.058379516700119954 +119861,599.3050000014763,-0.05837892850276808 +119862,599.3100000014764,-0.0583783404235132 +119863,599.3150000014765,-0.05837775246233289 +119864,599.3200000014766,-0.05837716461920478 +119865,599.3250000014767,-0.05837657689410646 +119866,599.3300000014768,-0.05837598928701559 +119867,599.3350000014769,-0.058375401797909746 +119868,599.340000001477,-0.05837481442676658 +119869,599.3450000014772,-0.0583742271735637 +119870,599.3500000014773,-0.05837364003827875 +119871,599.3550000014774,-0.058373053020889375 +119872,599.3600000014775,-0.058372466121373194 +119873,599.3650000014776,-0.058371879339707874 +119874,599.3700000014777,-0.058371292675871045 +119875,599.3750000014778,-0.058370706129840376 +119876,599.3800000014779,-0.0583701197015935 +119877,599.385000001478,-0.05836953339110808 +119878,599.3900000014781,-0.05836894719836178 +119879,599.3950000014783,-0.05836836112333228 +119880,599.4000000014784,-0.05836777516599725 +119881,599.4050000014785,-0.05836718932633434 +119882,599.4100000014786,-0.058366603604321256 +119883,599.4150000014787,-0.05836601799993567 +119884,599.4200000014788,-0.058365432513155256 +119885,599.4250000014789,-0.05836484714395773 +119886,599.430000001479,-0.05836426189232077 +119887,599.4350000014791,-0.05836367675822207 +119888,599.4400000014792,-0.058363091741639325 +119889,599.4450000014793,-0.058362506842550246 +119890,599.4500000014795,-0.05836192206093256 +119891,599.4550000014796,-0.05836133739676396 +119892,599.4600000014797,-0.058360752850022166 +119893,599.4650000014798,-0.0583601684206849 +119894,599.4700000014799,-0.05835958410872988 +119895,599.47500000148,-0.058358999914134825 +119896,599.4800000014801,-0.0583584158368775 +119897,599.4850000014802,-0.058357831876935606 +119898,599.4900000014803,-0.0583572480342869 +119899,599.4950000014804,-0.058356664308909116 +119900,599.5000000014805,-0.058356080700780015 +119901,599.5050000014807,-0.05835549720987733 +119902,599.5100000014808,-0.05835491383617882 +119903,599.5150000014809,-0.058354330579662245 +119904,599.520000001481,-0.05835374744030537 +119905,599.5250000014811,-0.058353164418085954 +119906,599.5300000014812,-0.058352581512981776 +119907,599.5350000014813,-0.0583519987249706 +119908,599.5400000014814,-0.058351416054030214 +119909,599.5450000014815,-0.05835083350013838 +119910,599.5500000014816,-0.05835025106327291 +119911,599.5550000014817,-0.05834966874341157 +119912,599.5600000014819,-0.058349086540532155 +119913,599.565000001482,-0.05834850445461247 +119914,599.5700000014821,-0.05834792248563031 +119915,599.5750000014822,-0.05834734063356348 +119916,599.5800000014823,-0.05834675889838978 +119917,599.5850000014824,-0.058346177280087036 +119918,599.5900000014825,-0.058345595778633054 +119919,599.5950000014826,-0.05834501439400566 +119920,599.6000000014827,-0.05834443312618266 +119921,599.6050000014828,-0.05834385197514191 +119922,599.610000001483,-0.05834327094086119 +119923,599.615000001483,-0.058342690023318385 +119924,599.6200000014832,-0.058342109222491306 +119925,599.6250000014833,-0.05834152853835779 +119926,599.6300000014834,-0.058340947970895715 +119927,599.6350000014835,-0.0583403675200829 +119928,599.6400000014836,-0.0583397871858972 +119929,599.6450000014837,-0.05833920696831647 +119930,599.6500000014838,-0.058338626867318596 +119931,599.6550000014839,-0.05833804688288142 +119932,599.660000001484,-0.05833746701498281 +119933,599.6650000014841,-0.058336887263600645 +119934,599.6700000014843,-0.0583363076287128 +119935,599.6750000014844,-0.05833572811029716 +119936,599.6800000014845,-0.05833514870833159 +119937,599.6850000014846,-0.058334569422793976 +119938,599.6900000014847,-0.05833399025366224 +119939,599.6950000014848,-0.058333411200914245 +119940,599.7000000014849,-0.058332832264527894 +119941,599.705000001485,-0.05833225344448111 +119942,599.7100000014851,-0.05833167474075178 +119943,599.7150000014852,-0.058331096153317816 +119944,599.7200000014853,-0.058330517682157135 +119945,599.7250000014855,-0.05832993932724766 +119946,599.7300000014856,-0.058329361088567296 +119947,599.7350000014857,-0.058328782966093985 +119948,599.7400000014858,-0.05832820495980563 +119949,599.7450000014859,-0.05832762706968019 +119950,599.750000001486,-0.05832704929569559 +119951,599.7550000014861,-0.05832647163782977 +119952,599.7600000014862,-0.05832589409606068 +119953,599.7650000014863,-0.05832531667036625 +119954,599.7700000014864,-0.05832473936072445 +119955,599.7750000014865,-0.05832416216711323 +119956,599.7800000014867,-0.05832358508951055 +119957,599.7850000014868,-0.05832300812789436 +119958,599.7900000014869,-0.05832243128224263 +119959,599.795000001487,-0.05832185455253334 +119960,599.8000000014871,-0.05832127793874446 +119961,599.8050000014872,-0.05832070144085395 +119962,599.8100000014873,-0.05832012505883982 +119963,599.8150000014874,-0.05831954879268004 +119964,599.8200000014875,-0.05831897264235259 +119965,599.8250000014876,-0.058318396607835485 +119966,599.8300000014877,-0.058317820689106695 +119967,599.8350000014879,-0.05831724488614425 +119968,599.840000001488,-0.058316669198926134 +119969,599.8450000014881,-0.058316093627430364 +119970,599.8500000014882,-0.05831551817163494 +119971,599.8550000014883,-0.05831494283151787 +119972,599.8600000014884,-0.058314367607057195 +119973,599.8650000014885,-0.058313792498230925 +119974,599.8700000014886,-0.05831321750501709 +119975,599.8750000014887,-0.05831264262739372 +119976,599.8800000014888,-0.05831206786533885 +119977,599.885000001489,-0.05831149321883051 +119978,599.890000001489,-0.05831091868784674 +119979,599.8950000014892,-0.058310344272365595 +119980,599.9000000014893,-0.05830976997236513 +119981,599.9050000014894,-0.058309195787823384 +119982,599.9100000014895,-0.058308621718718416 +119983,599.9150000014896,-0.05830804776502828 +119984,599.9200000014897,-0.05830747392673105 +119985,599.9250000014898,-0.05830690020380479 +119986,599.9300000014899,-0.05830632659622758 +119987,599.93500000149,-0.05830575310397748 +119988,599.9400000014901,-0.05830517972703258 +119989,599.9450000014903,-0.05830460646537095 +119990,599.9500000014904,-0.058304033318970695 +119991,599.9550000014905,-0.05830346028780989 +119992,599.9600000014906,-0.05830288737186663 +119993,599.9650000014907,-0.05830231457111903 +119994,599.9700000014908,-0.058301741885545155 +119995,599.9750000014909,-0.05830116931512315 +119996,599.980000001491,-0.05830059685983109 +119997,599.9850000014911,-0.05830002451964711 +119998,599.9900000014912,-0.058299452294549324 +119999,599.9950000014913,-0.05829888018451585 +120000,600.0000000014915,-0.058298308189524806 +120001,600.0050000014916,-0.05829773630955431 +120002,600.0100000014917,-0.058297164544582517 +120003,600.0150000014918,-0.05829659289458755 +120004,600.0200000014919,-0.05829602135954754 +120005,600.025000001492,-0.05829544993944064 +120006,600.0300000014921,-0.05829487863424501 +120007,600.0350000014922,-0.058294307443938764 +120008,600.0400000014923,-0.058293736368500076 +120009,600.0450000014924,-0.05829316540790711 +120010,600.0500000014925,-0.05829259456213802 +120011,600.0550000014927,-0.058292023831170964 +120012,600.0600000014928,-0.058291453214984135 +120013,600.0650000014929,-0.058290882713555675 +120014,600.070000001493,-0.05829031232686377 +120015,600.0750000014931,-0.0582897420548866 +120016,600.0800000014932,-0.05828917189760236 +120017,600.0850000014933,-0.05828860185498923 +120018,600.0900000014934,-0.05828803192702539 +120019,600.0950000014935,-0.058287462113689036 +120020,600.1000000014936,-0.05828689241495837 +120021,600.1050000014937,-0.058286322830811615 +120022,600.1100000014939,-0.058285753361226954 +120023,600.115000001494,-0.05828518400618259 +120024,600.1200000014941,-0.05828461476565676 +120025,600.1250000014942,-0.05828404563962766 +120026,600.1300000014943,-0.05828347662807353 +120027,600.1350000014944,-0.05828290773097258 +120028,600.1400000014945,-0.058282338948303036 +120029,600.1450000014946,-0.05828177028004314 +120030,600.1500000014947,-0.05828120172617112 +120031,600.1550000014948,-0.058280633286665225 +120032,600.160000001495,-0.05828006496150368 +120033,600.1650000014951,-0.05827949675066477 +120034,600.1700000014952,-0.05827892865412669 +120035,600.1750000014953,-0.05827836067186773 +120036,600.1800000014954,-0.05827779280386615 +120037,600.1850000014955,-0.058277225050100204 +120038,600.1900000014956,-0.05827665741054814 +120039,600.1950000014957,-0.05827608988518826 +120040,600.2000000014958,-0.05827552247399881 +120041,600.2050000014959,-0.058274955176958076 +120042,600.210000001496,-0.05827438799404435 +120043,600.2150000014962,-0.0582738209252359 +120044,600.2200000014963,-0.05827325397051101 +120045,600.2250000014964,-0.05827268712984798 +120046,600.2300000014965,-0.05827212040322512 +120047,600.2350000014966,-0.058271553790620705 +120048,600.2400000014967,-0.05827098729201305 +120049,600.2450000014968,-0.05827042090738046 +120050,600.2500000014969,-0.05826985463670123 +120051,600.255000001497,-0.05826928847995369 +120052,600.2600000014971,-0.05826872243711616 +120053,600.2650000014972,-0.05826815650816694 +120054,600.2700000014974,-0.058267590693084376 +120055,600.2750000014975,-0.058267024991846786 +120056,600.2800000014976,-0.05826645940443251 +120057,600.2850000014977,-0.058265893930819886 +120058,600.2900000014978,-0.058265328570987235 +120059,600.2950000014979,-0.05826476332491292 +120060,600.300000001498,-0.05826419819257528 +120061,600.3050000014981,-0.05826363317395266 +120062,600.3100000014982,-0.05826306826902342 +120063,600.3150000014983,-0.05826250347776592 +120064,600.3200000014984,-0.05826193880015852 +120065,600.3250000014986,-0.05826137423617958 +120066,600.3300000014987,-0.058260809785807485 +120067,600.3350000014988,-0.05826024544902059 +120068,600.3400000014989,-0.058259681225797284 +120069,600.345000001499,-0.058259117116115935 +120070,600.3500000014991,-0.05825855311995494 +120071,600.3550000014992,-0.058257989237292675 +120072,600.3600000014993,-0.05825742546810754 +120073,600.3650000014994,-0.058256861812377936 +120074,600.3700000014995,-0.05825629827008224 +120075,600.3750000014996,-0.05825573484119887 +120076,600.3800000014998,-0.05825517152570623 +120077,600.3850000014999,-0.05825460832358273 +120078,600.3900000015,-0.05825404523480678 +120079,600.3950000015001,-0.0582534822593568 +120080,600.4000000015002,-0.058252919397211216 +120081,600.4050000015003,-0.058252356648348456 +120082,600.4100000015004,-0.05825179401274693 +120083,600.4150000015005,-0.05825123149038508 +120084,600.4200000015006,-0.058250669081241345 +120085,600.4250000015007,-0.05825010678529415 +120086,600.4300000015008,-0.05824954460252195 +120087,600.435000001501,-0.0582489825329032 +120088,600.4400000015011,-0.05824842057641634 +120089,600.4450000015012,-0.05824785873303982 +120090,600.4500000015013,-0.05824729700275211 +120091,600.4550000015014,-0.05824673538553166 +120092,600.4600000015015,-0.05824617388135695 +120093,600.4650000015016,-0.058245612490206426 +120094,600.4700000015017,-0.058245051212058585 +120095,600.4750000015018,-0.05824449004689188 +120096,600.4800000015019,-0.05824392899468481 +120097,600.485000001502,-0.05824336805541584 +120098,600.4900000015022,-0.05824280722906348 +120099,600.4950000015023,-0.0582422465156062 +120100,600.5000000015024,-0.05824168591502252 +120101,600.5050000015025,-0.05824112542729091 +120102,600.5100000015026,-0.058240565052389885 +120103,600.5150000015027,-0.05824000479029794 +120104,600.5200000015028,-0.058239444640993614 +120105,600.5250000015029,-0.05823888460445539 +120106,600.530000001503,-0.058238324680661806 +120107,600.5350000015031,-0.05823776486959136 +120108,600.5400000015032,-0.058237205171222585 +120109,600.5450000015034,-0.05823664558553402 +120110,600.5500000015035,-0.058236086112504186 +120111,600.5550000015036,-0.05823552675211161 +120112,600.5600000015037,-0.05823496750433485 +120113,600.5650000015038,-0.05823440836915243 +120114,600.5700000015039,-0.05823384934654291 +120115,600.575000001504,-0.058233290436484834 +120116,600.5800000015041,-0.058232731638956765 +120117,600.5850000015042,-0.058232172953937254 +120118,600.5900000015043,-0.05823161438140485 +120119,600.5950000015044,-0.05823105592133813 +120120,600.6000000015046,-0.05823049757371565 +120121,600.6050000015047,-0.05822993933851601 +120122,600.6100000015048,-0.05822938121571775 +120123,600.6150000015049,-0.05822882320529948 +120124,600.620000001505,-0.058228265307239756 +120125,600.6250000015051,-0.05822770752151717 +120126,600.6300000015052,-0.05822714984811033 +120127,600.6350000015053,-0.058226592286997815 +120128,600.6400000015054,-0.058226034838158226 +120129,600.6450000015055,-0.05822547750157017 +120130,600.6500000015056,-0.05822492027721225 +120131,600.6550000015058,-0.05822436316506307 +120132,600.6600000015059,-0.05822380616510124 +120133,600.665000001506,-0.05822324927730537 +120134,600.6700000015061,-0.05822269250165409 +120135,600.6750000015062,-0.058222135838126035 +120136,600.6800000015063,-0.058221579286699805 +120137,600.6850000015064,-0.05822102284735405 +120138,600.6900000015065,-0.05822046652006739 +120139,600.6950000015066,-0.05821991030481848 +120140,600.7000000015067,-0.05821935420158596 +120141,600.7050000015068,-0.058218798210348456 +120142,600.710000001507,-0.05821824233108463 +120143,600.7150000015071,-0.05821768656377313 +120144,600.7200000015072,-0.05821713090839262 +120145,600.7250000015073,-0.05821657536492175 +120146,600.7300000015074,-0.058216019933339185 +120147,600.7350000015075,-0.0582154646136236 +120148,600.7400000015076,-0.05821490940575365 +120149,600.7450000015077,-0.05821435430970803 +120150,600.7500000015078,-0.0582137993254654 +120151,600.7550000015079,-0.05821324445300445 +120152,600.760000001508,-0.05821268969230387 +120153,600.7650000015082,-0.05821213504334234 +120154,600.7700000015083,-0.05821158050609856 +120155,600.7750000015084,-0.058211026080551224 +120156,600.7800000015085,-0.05821047176667902 +120157,600.7850000015086,-0.058209917564460666 +120158,600.7900000015087,-0.05820936347387488 +120159,600.7950000015088,-0.058208809494900336 +120160,600.8000000015089,-0.05820825562751578 +120161,600.805000001509,-0.05820770187169993 +120162,600.8100000015091,-0.05820714822743149 +120163,600.8150000015092,-0.05820659469468919 +120164,600.8200000015094,-0.05820604127345176 +120165,600.8250000015095,-0.058205487963697934 +120166,600.8300000015096,-0.05820493476540647 +120167,600.8350000015097,-0.05820438167855608 +120168,600.8400000015098,-0.05820382870312551 +120169,600.8450000015099,-0.05820327583909351 +120170,600.85000000151,-0.05820272308643884 +120171,600.8550000015101,-0.05820217044514024 +120172,600.8600000015102,-0.05820161791517649 +120173,600.8650000015103,-0.05820106549652633 +120174,600.8700000015104,-0.05820051318916853 +120175,600.8750000015106,-0.058199960993081876 +120176,600.8800000015107,-0.05819940890824512 +120177,600.8850000015108,-0.05819885693463705 +120178,600.8900000015109,-0.05819830507223644 +120179,600.895000001511,-0.058197753321022075 +120180,600.9000000015111,-0.058197201680972754 +120181,600.9050000015112,-0.05819665015206725 +120182,600.9100000015113,-0.058196098734284364 +120183,600.9150000015114,-0.058195547427602905 +120184,600.9200000015115,-0.05819499623200166 +120185,600.9250000015116,-0.05819444514745943 +120186,600.9300000015118,-0.05819389417395506 +120187,600.9350000015119,-0.05819334331146732 +120188,600.940000001512,-0.058192792559975046 +120189,600.9450000015121,-0.058192241919457065 +120190,600.9500000015122,-0.058191691389892185 +120191,600.9550000015123,-0.05819114097125925 +120192,600.9600000015124,-0.058190590663537066 +120193,600.9650000015125,-0.058190040466704486 +120194,600.9700000015126,-0.05818949038074035 +120195,600.9750000015127,-0.0581889404056235 +120196,600.9800000015128,-0.05818839054133277 +120197,600.985000001513,-0.05818784078784701 +120198,600.9900000015131,-0.058187291145145086 +120199,600.9950000015132,-0.05818674161320584 +120200,601.0000000015133,-0.058186192192008136 +120201,601.0050000015134,-0.05818564288153084 +120202,601.0100000015135,-0.05818509368175282 +120203,601.0150000015136,-0.05818454459265296 +120204,601.0200000015137,-0.05818399561421011 +120205,601.0250000015138,-0.05818344674640315 +120206,601.0300000015139,-0.05818289798921099 +120207,601.035000001514,-0.05818234934261248 +120208,601.0400000015142,-0.05818180080658654 +120209,601.0450000015143,-0.058181252381112034 +120210,601.0500000015144,-0.058180704066167876 +120211,601.0550000015145,-0.058180155861732974 +120212,601.0600000015146,-0.05817960776778621 +120213,601.0650000015147,-0.05817905978430651 +120214,601.0700000015148,-0.05817851191127277 +120215,601.0750000015149,-0.058177964148663906 +120216,601.080000001515,-0.058177416496458835 +120217,601.0850000015151,-0.05817686895463649 +120218,601.0900000015153,-0.05817632152317579 +120219,601.0950000015154,-0.05817577420205566 +120220,601.1000000015155,-0.05817522699125505 +120221,601.1050000015156,-0.058174679890752874 +120222,601.1100000015157,-0.058174132900528065 +120223,601.1150000015158,-0.058173586020559595 +120224,601.1200000015159,-0.05817303925082639 +120225,601.125000001516,-0.05817249259130742 +120226,601.1300000015161,-0.058171946041981615 +120227,601.1350000015162,-0.058171399602827946 +120228,601.1400000015163,-0.058170853273825374 +120229,601.1450000015165,-0.05817030705495286 +120230,601.1500000015166,-0.05816976094618937 +120231,601.1550000015167,-0.0581692149475139 +120232,601.1600000015168,-0.058168669058905394 +120233,601.1650000015169,-0.05816812328034284 +120234,601.170000001517,-0.05816757761180523 +120235,601.1750000015171,-0.05816703205327154 +120236,601.1800000015172,-0.05816648660472078 +120237,601.1850000015173,-0.05816594126613193 +120238,601.1900000015174,-0.058165396037483975 +120239,601.1950000015175,-0.05816485091875593 +120240,601.2000000015177,-0.058164305909926814 +120241,601.2050000015178,-0.058163761010975604 +120242,601.2100000015179,-0.05816321622188134 +120243,601.215000001518,-0.05816267154262303 +120244,601.2200000015181,-0.058162126973179684 +120245,601.2250000015182,-0.05816158251353032 +120246,601.2300000015183,-0.058161038163653984 +120247,601.2350000015184,-0.058160493923529684 +120248,601.2400000015185,-0.058159949793136476 +120249,601.2450000015186,-0.05815940577245338 +120250,601.2500000015187,-0.058158861861459445 +120251,601.2550000015189,-0.05815831806013371 +120252,601.260000001519,-0.058157774368455234 +120253,601.2650000015191,-0.058157230786403065 +120254,601.2700000015192,-0.05815668731395624 +120255,601.2750000015193,-0.05815614395109384 +120256,601.2800000015194,-0.058155600697794914 +120257,601.2850000015195,-0.05815505755403853 +120258,601.2900000015196,-0.05815451451980377 +120259,601.2950000015197,-0.058153971595069694 +120260,601.3000000015198,-0.05815342877981537 +120261,601.3050000015199,-0.0581528860740199 +120262,601.31000000152,-0.058152343477662356 +120263,601.3150000015202,-0.05815180099072183 +120264,601.3200000015203,-0.05815125861317741 +120265,601.3250000015204,-0.058150716345008194 +120266,601.3300000015205,-0.05815017418619327 +120267,601.3350000015206,-0.05814963213671176 +120268,601.3400000015207,-0.05814909019654275 +120269,601.3450000015208,-0.058148548365665347 +120270,601.3500000015209,-0.05814800664405868 +120271,601.355000001521,-0.05814746503170187 +120272,601.3600000015211,-0.05814692352857402 +120273,601.3650000015213,-0.05814638213465426 +120274,601.3700000015214,-0.058145840849921714 +120275,601.3750000015215,-0.05814529967435551 +120276,601.3800000015216,-0.05814475860793479 +120277,601.3850000015217,-0.05814421765063868 +120278,601.3900000015218,-0.05814367680244634 +120279,601.3950000015219,-0.058143136063336896 +120280,601.400000001522,-0.058142595433289514 +120281,601.4050000015221,-0.05814205491228333 +120282,601.4100000015222,-0.0581415145002975 +120283,601.4150000015223,-0.05814097419731121 +120284,601.4200000015225,-0.0581404340033036 +120285,601.4250000015226,-0.05813989391825383 +120286,601.4300000015227,-0.058139353942141085 +120287,601.4350000015228,-0.058138814074944534 +120288,601.4400000015229,-0.05813827431664335 +120289,601.445000001523,-0.05813773466721672 +120290,601.4500000015231,-0.058137195126643816 +120291,601.4550000015232,-0.05813665569490384 +120292,601.4600000015233,-0.05813611637197597 +120293,601.4650000015234,-0.05813557715783942 +120294,601.4700000015235,-0.05813503805247338 +120295,601.4750000015237,-0.05813449905585705 +120296,601.4800000015238,-0.05813396016796964 +120297,601.4850000015239,-0.05813342138879035 +120298,601.490000001524,-0.058132882718298404 +120299,601.4950000015241,-0.05813234415647301 +120300,601.5000000015242,-0.0581318057032934 +120301,601.5050000015243,-0.05813126735873878 +120302,601.5100000015244,-0.0581307291227884 +120303,601.5150000015245,-0.05813019099542147 +120304,601.5200000015246,-0.058129652976617235 +120305,601.5250000015247,-0.058129115066354944 +120306,601.5300000015249,-0.05812857726461381 +120307,601.535000001525,-0.058128039571373094 +120308,601.5400000015251,-0.05812750198661205 +120309,601.5450000015252,-0.05812696451030992 +120310,601.5500000015253,-0.058126427142445966 +120311,601.5550000015254,-0.058125889882999444 +120312,601.5600000015255,-0.05812535273194963 +120313,601.5650000015256,-0.05812481568927578 +120314,601.5700000015257,-0.05812427875495716 +120315,601.5750000015258,-0.05812374192897305 +120316,601.580000001526,-0.05812320521130272 +120317,601.585000001526,-0.058122668601925456 +120318,601.5900000015262,-0.05812213210082054 +120319,601.5950000015263,-0.05812159570796726 +120320,601.6000000015264,-0.05812105942334492 +120321,601.6050000015265,-0.05812052324693281 +120322,601.6100000015266,-0.058119987178710204 +120323,601.6150000015267,-0.058119451218656436 +120324,601.6200000015268,-0.0581189153667508 +120325,601.6250000015269,-0.058118379622972616 +120326,601.630000001527,-0.058117843987301174 +120327,601.6350000015271,-0.0581173084597158 +120328,601.6400000015273,-0.05811677304019582 +120329,601.6450000015274,-0.058116237728720564 +120330,601.6500000015275,-0.05811570252526934 +120331,601.6550000015276,-0.0581151674298215 +120332,601.6600000015277,-0.058114632442356366 +120333,601.6650000015278,-0.058114097562853274 +120334,601.6700000015279,-0.058113562791291574 +120335,601.675000001528,-0.058113028127650596 +120336,601.6800000015281,-0.05811249357190971 +120337,601.6850000015282,-0.058111959124048256 +120338,601.6900000015283,-0.05811142478404558 +120339,601.6950000015285,-0.05811089055188106 +120340,601.7000000015286,-0.058110356427534045 +120341,601.7050000015287,-0.05810982241098391 +120342,601.7100000015288,-0.05810928850221002 +120343,601.7150000015289,-0.058108754701191756 +120344,601.720000001529,-0.05810822100790848 +120345,601.7250000015291,-0.0581076874223396 +120346,601.7300000015292,-0.058107153944464474 +120347,601.7350000015293,-0.058106620574262496 +120348,601.7400000015294,-0.05810608731171305 +120349,601.7450000015295,-0.058105554156795566 +120350,601.7500000015297,-0.0581050211094894 +120351,601.7550000015298,-0.058104488169773975 +120352,601.7600000015299,-0.058103955337628695 +120353,601.76500000153,-0.05810342261303296 +120354,601.7700000015301,-0.058102889995966196 +120355,601.7750000015302,-0.05810235748640781 +120356,601.7800000015303,-0.05810182508433722 +120357,601.7850000015304,-0.05810129278973386 +120358,601.7900000015305,-0.05810076060257714 +120359,601.7950000015306,-0.058100228522846506 +120360,601.8000000015307,-0.058099696550521385 +120361,601.8050000015309,-0.05809916468558122 +120362,601.810000001531,-0.05809863292800545 +120363,601.8150000015311,-0.05809810127777351 +120364,601.8200000015312,-0.05809756973486485 +120365,601.8250000015313,-0.05809703829925893 +120366,601.8300000015314,-0.0580965069709352 +120367,601.8350000015315,-0.05809597574987312 +120368,601.8400000015316,-0.05809544463605215 +120369,601.8450000015317,-0.058094913629451767 +120370,601.8500000015318,-0.058094382730051436 +120371,601.855000001532,-0.05809385193783062 +120372,601.8600000015321,-0.0580933212527688 +120373,601.8650000015322,-0.05809279067484546 +120374,601.8700000015323,-0.05809226020404009 +120375,601.8750000015324,-0.05809172984033215 +120376,601.8800000015325,-0.05809119958370115 +120377,601.8850000015326,-0.0580906694341266 +120378,601.8900000015327,-0.05809013939158797 +120379,601.8950000015328,-0.05808960945606476 +120380,601.9000000015329,-0.05808907962753651 +120381,601.905000001533,-0.05808854990598269 +120382,601.9100000015331,-0.05808802029138283 +120383,601.9150000015333,-0.05808749078371645 +120384,601.9200000015334,-0.05808696138296306 +120385,601.9250000015335,-0.05808643208910218 +120386,601.9300000015336,-0.05808590290211333 +120387,601.9350000015337,-0.05808537382197605 +120388,601.9400000015338,-0.058084844848669874 +120389,601.9450000015339,-0.05808431598217433 +120390,601.950000001534,-0.05808378722246897 +120391,601.9550000015341,-0.05808325856953333 +120392,601.9600000015342,-0.058082730023346955 +120393,601.9650000015343,-0.058082201583889416 +120394,601.9700000015345,-0.05808167325114025 +120395,601.9750000015346,-0.058081145025078995 +120396,601.9800000015347,-0.05808061690568525 +120397,601.9850000015348,-0.058080088892938565 +120398,601.9900000015349,-0.05807956098681849 +120399,601.995000001535,-0.05807903318730463 +120400,602.0000000015351,-0.05807850549437654 +120401,602.0050000015352,-0.058077977908013806 +120402,602.0100000015353,-0.058077450428196 +120403,602.0150000015354,-0.058076923054902724 +120404,602.0200000015355,-0.05807639578811354 +120405,602.0250000015357,-0.05807586862780808 +120406,602.0300000015358,-0.05807534157396592 +120407,602.0350000015359,-0.05807481462656665 +120408,602.040000001536,-0.05807428778558989 +120409,602.0450000015361,-0.05807376105101524 +120410,602.0500000015362,-0.05807323442282231 +120411,602.0550000015363,-0.05807270790099071 +120412,602.0600000015364,-0.05807218148550007 +120413,602.0650000015365,-0.05807165517633 +120414,602.0700000015366,-0.05807112897346013 +120415,602.0750000015368,-0.058070602876870096 +120416,602.0800000015369,-0.058070076886539514 +120417,602.085000001537,-0.058069551002448025 +120418,602.0900000015371,-0.05806902522457527 +120419,602.0950000015372,-0.0580684995529009 +120420,602.1000000015373,-0.058067973987404556 +120421,602.1050000015374,-0.05806744852806588 +120422,602.1100000015375,-0.05806692317486453 +120423,602.1150000015376,-0.05806639792778016 +120424,602.1200000015377,-0.05806587278679243 +120425,602.1250000015378,-0.05806534775188099 +120426,602.130000001538,-0.05806482282302554 +120427,602.1350000015381,-0.058064298000205725 +120428,602.1400000015382,-0.05806377328340123 +120429,602.1450000015383,-0.05806324867259173 +120430,602.1500000015384,-0.0580627241677569 +120431,602.1550000015385,-0.05806219976887643 +120432,602.1600000015386,-0.058061675475930004 +120433,602.1650000015387,-0.05806115128889732 +120434,602.1700000015388,-0.05806062720775808 +120435,602.1750000015389,-0.05806010323249196 +120436,602.180000001539,-0.05805957936307867 +120437,602.1850000015392,-0.05805905559949792 +120438,602.1900000015393,-0.05805853194172943 +120439,602.1950000015394,-0.0580580083897529 +120440,602.2000000015395,-0.05805748494354805 +120441,602.2050000015396,-0.05805696160309459 +120442,602.2100000015397,-0.05805643836837227 +120443,602.2150000015398,-0.05805591523936079 +120444,602.2200000015399,-0.05805539221603988 +120445,602.22500000154,-0.058054869298389294 +120446,602.2300000015401,-0.058054346486388755 +120447,602.2350000015402,-0.058053823780018006 +120448,602.2400000015404,-0.05805330117925679 +120449,602.2450000015405,-0.05805277868408486 +120450,602.2500000015406,-0.05805225629448195 +120451,602.2550000015407,-0.05805173401042784 +120452,602.2600000015408,-0.05805121183190227 +120453,602.2650000015409,-0.05805068975888501 +120454,602.270000001541,-0.058050167791355835 +120455,602.2750000015411,-0.058049645929294486 +120456,602.2800000015412,-0.058049124172680766 +120457,602.2850000015413,-0.05804860252149443 +120458,602.2900000015414,-0.05804808097571527 +120459,602.2950000015416,-0.05804755953532305 +120460,602.3000000015417,-0.058047038200297565 +120461,602.3050000015418,-0.05804651697061861 +120462,602.3100000015419,-0.058045995846265984 +120463,602.315000001542,-0.05804547482721948 +120464,602.3200000015421,-0.0580449539134589 +120465,602.3250000015422,-0.05804443310496403 +120466,602.3300000015423,-0.05804391240171469 +120467,602.3350000015424,-0.0580433918036907 +120468,602.3400000015425,-0.05804287131087186 +120469,602.3450000015426,-0.05804235092323799 +120470,602.3500000015428,-0.05804183064076892 +120471,602.3550000015429,-0.058041310463444476 +120472,602.360000001543,-0.05804079039124447 +120473,602.3650000015431,-0.05804027042414875 +120474,602.3700000015432,-0.05803975056213713 +120475,602.3750000015433,-0.058039230805189475 +120476,602.3800000015434,-0.05803871115328562 +120477,602.3850000015435,-0.058038191606405394 +120478,602.3900000015436,-0.05803767216452866 +120479,602.3950000015437,-0.05803715282763527 +120480,602.4000000015438,-0.05803663359570509 +120481,602.405000001544,-0.05803611446871795 +120482,602.4100000015441,-0.058035595446653744 +120483,602.4150000015442,-0.05803507652949233 +120484,602.4200000015443,-0.058034557717213574 +120485,602.4250000015444,-0.05803403900979734 +120486,602.4300000015445,-0.058033520407223524 +120487,602.4350000015446,-0.05803300190947199 +120488,602.4400000015447,-0.05803248351652263 +120489,602.4450000015448,-0.058031965228355346 +120490,602.4500000015449,-0.058031447044950016 +120491,602.455000001545,-0.058030928966286525 +120492,602.4600000015452,-0.05803041099234479 +120493,602.4650000015453,-0.058029893123104685 +120494,602.4700000015454,-0.058029375358546145 +120495,602.4750000015455,-0.058028857698649065 +120496,602.4800000015456,-0.05802834014339335 +120497,602.4850000015457,-0.05802782269275893 +120498,602.4900000015458,-0.05802730534672571 +120499,602.4950000015459,-0.058026788105273626 +120500,602.500000001546,-0.05802627096838261 +120501,602.5050000015461,-0.058025753936032556 +120502,602.5100000015462,-0.05802523700820343 +120503,602.5150000015464,-0.058024720184875166 +120504,602.5200000015465,-0.058024203466027685 +120505,602.5250000015466,-0.05802368685164095 +120506,602.5300000015467,-0.058023170341694894 +120507,602.5350000015468,-0.058022653936169476 +120508,602.5400000015469,-0.05802213763504466 +120509,602.545000001547,-0.058021621438300384 +120510,602.5500000015471,-0.05802110534591661 +120511,602.5550000015472,-0.058020589357873305 +120512,602.5600000015473,-0.05802007347415045 +120513,602.5650000015474,-0.058019557694728 +120514,602.5700000015476,-0.05801904201958592 +120515,602.5750000015477,-0.05801852644870422 +120516,602.5800000015478,-0.05801801098206286 +120517,602.5850000015479,-0.05801749561964183 +120518,602.590000001548,-0.05801698036142113 +120519,602.5950000015481,-0.058016465207380734 +120520,602.6000000015482,-0.05801595015750064 +120521,602.6050000015483,-0.05801543521176086 +120522,602.6100000015484,-0.05801492037014138 +120523,602.6150000015485,-0.05801440563262222 +120524,602.6200000015486,-0.05801389099918337 +120525,602.6250000015488,-0.05801337646980487 +120526,602.6300000015489,-0.05801286204446671 +120527,602.635000001549,-0.058012347723148935 +120528,602.6400000015491,-0.05801183350583155 +120529,602.6450000015492,-0.05801131939249457 +120530,602.6500000015493,-0.05801080538311806 +120531,602.6550000015494,-0.05801029147768202 +120532,602.6600000015495,-0.05800977767616651 +120533,602.6650000015496,-0.05800926397855156 +120534,602.6700000015497,-0.05800875038481722 +120535,602.6750000015498,-0.05800823689494354 +120536,602.68000000155,-0.05800772350891056 +120537,602.6850000015501,-0.05800721022669835 +120538,602.6900000015502,-0.058006697048286954 +120539,602.6950000015503,-0.058006183973656436 +120540,602.7000000015504,-0.05800567100278687 +120541,602.7050000015505,-0.05800515813565832 +120542,602.7100000015506,-0.05800464537225085 +120543,602.7150000015507,-0.058004132712544544 +120544,602.7200000015508,-0.05800362015651948 +120545,602.7250000015509,-0.058003107704155725 +120546,602.730000001551,-0.05800259535543339 +120547,602.7350000015512,-0.05800208311033254 +120548,602.7400000015513,-0.05800157096883328 +120549,602.7450000015514,-0.05800105893091571 +120550,602.7500000015515,-0.05800054699655992 +120551,602.7550000015516,-0.058000035165746026 +120552,602.7600000015517,-0.05799952343845412 +120553,602.7650000015518,-0.05799901181466432 +120554,602.7700000015519,-0.057998500294356735 +120555,602.775000001552,-0.057997988877511474 +120556,602.7800000015521,-0.05799747756410868 +120557,602.7850000015522,-0.05799696635412846 +120558,602.7900000015524,-0.057996455247550954 +120559,602.7950000015525,-0.05799594424435628 +120560,602.8000000015526,-0.057995433344524575 +120561,602.8050000015527,-0.057994922548035975 +120562,602.8100000015528,-0.05799441185487062 +120563,602.8150000015529,-0.05799390126500866 +120564,602.820000001553,-0.05799339077843024 +120565,602.8250000015531,-0.05799288039511552 +120566,602.8300000015532,-0.057992370115044635 +120567,602.8350000015533,-0.05799185993819776 +120568,602.8400000015534,-0.057991349864555064 +120569,602.8450000015536,-0.057990839894096695 +120570,602.8500000015537,-0.057990330026802824 +120571,602.8550000015538,-0.057989820262653625 +120572,602.8600000015539,-0.05798931060162927 +120573,602.865000001554,-0.057988801043709945 +120574,602.8700000015541,-0.05798829158887583 +120575,602.8750000015542,-0.05798778223710711 +120576,602.8800000015543,-0.05798727298838398 +120577,602.8850000015544,-0.05798676384268663 +120578,602.8900000015545,-0.05798625479999525 +120579,602.8950000015546,-0.05798574586029004 +120580,602.9000000015548,-0.05798523702355121 +120581,602.9050000015549,-0.057984728289758966 +120582,602.910000001555,-0.05798421965889351 +120583,602.9150000015551,-0.05798371113093506 +120584,602.9200000015552,-0.057983202705863844 +120585,602.9250000015553,-0.05798269438366008 +120586,602.9300000015554,-0.05798218616430397 +120587,602.9350000015555,-0.05798167804777576 +120588,602.9400000015556,-0.05798117003405567 +120589,602.9450000015557,-0.05798066212312394 +120590,602.9500000015558,-0.0579801543149608 +120591,602.955000001556,-0.057979646609546506 +120592,602.9600000015561,-0.0579791390068613 +120593,602.9650000015562,-0.057978631506885425 +120594,602.9700000015563,-0.05797812410959912 +120595,602.9750000015564,-0.05797761681498267 +120596,602.9800000015565,-0.057977109623016304 +120597,602.9850000015566,-0.057976602533680296 +120598,602.9900000015567,-0.05797609554695491 +120599,602.9950000015568,-0.05797558866282042 +120600,603.0000000015569,-0.057975081881257086 +120601,603.005000001557,-0.05797457520224519 +120602,603.0100000015572,-0.05797406862576501 +120603,603.0150000015573,-0.05797356215179683 +120604,603.0200000015574,-0.057973055780320935 +120605,603.0250000015575,-0.05797254951131761 +120606,603.0300000015576,-0.05797204334476716 +120607,603.0350000015577,-0.05797153728064987 +120608,603.0400000015578,-0.057971031318946036 +120609,603.0450000015579,-0.05797052545963596 +120610,603.050000001558,-0.05797001970269997 +120611,603.0550000015581,-0.057969514048118356 +120612,603.0600000015583,-0.05796900849587144 +120613,603.0650000015584,-0.05796850304593953 +120614,603.0700000015585,-0.05796799769830295 +120615,603.0750000015586,-0.05796749245294203 +120616,603.0800000015587,-0.057966987309837084 +120617,603.0850000015588,-0.05796648226896845 +120618,603.0900000015589,-0.057965977330316464 +120619,603.095000001559,-0.057965472493861456 +120620,603.1000000015591,-0.05796496775958377 +120621,603.1050000015592,-0.05796446312746376 +120622,603.1100000015593,-0.05796395859748175 +120623,603.1150000015595,-0.057963454169618116 +120624,603.1200000015596,-0.057962949843853195 +120625,603.1250000015597,-0.057962445620167356 +120626,603.1300000015598,-0.057961941498540955 +120627,603.1350000015599,-0.05796143747895435 +120628,603.14000000156,-0.05796093356138792 +120629,603.1450000015601,-0.057960429745822044 +120630,603.1500000015602,-0.057959926032237076 +120631,603.1550000015603,-0.05795942242061341 +120632,603.1600000015604,-0.05795891891093142 +120633,603.1650000015605,-0.05795841550317148 +120634,603.1700000015607,-0.057957912197314006 +120635,603.1750000015608,-0.05795740899333937 +120636,603.1800000015609,-0.057956905891227976 +120637,603.185000001561,-0.05795640289096022 +120638,603.1900000015611,-0.057955899992516505 +120639,603.1950000015612,-0.057955397195877244 +120640,603.2000000015613,-0.05795489450102282 +120641,603.2050000015614,-0.05795439190793367 +120642,603.2100000015615,-0.0579538894165902 +120643,603.2150000015616,-0.057953387026972836 +120644,603.2200000015617,-0.057952884739062 +120645,603.2250000015619,-0.05795238255283812 +120646,603.230000001562,-0.05795188046828162 +120647,603.2350000015621,-0.05795137848537293 +120648,603.2400000015622,-0.05795087660409249 +120649,603.2450000015623,-0.05795037482442074 +120650,603.2500000015624,-0.05794987314633812 +120651,603.2550000015625,-0.05794937156982509 +120652,603.2600000015626,-0.05794887009486209 +120653,603.2650000015627,-0.05794836872142956 +120654,603.2700000015628,-0.05794786744950798 +120655,603.275000001563,-0.057947366279077796 +120656,603.280000001563,-0.057946865210119484 +120657,603.2850000015632,-0.05794636424261351 +120658,603.2900000015633,-0.05794586337654035 +120659,603.2950000015634,-0.05794536261188044 +120660,603.3000000015635,-0.057944861948614305 +120661,603.3050000015636,-0.05794436138672239 +120662,603.3100000015637,-0.05794386092618521 +120663,603.3150000015638,-0.05794336056698323 +120664,603.3200000015639,-0.05794286030909694 +120665,603.325000001564,-0.05794236015250685 +120666,603.3300000015641,-0.05794186009719346 +120667,603.3350000015643,-0.05794136014313725 +120668,603.3400000015644,-0.05794086029031874 +120669,603.3450000015645,-0.05794036053871844 +120670,603.3500000015646,-0.05793986088831686 +120671,603.3550000015647,-0.057939361339094504 +120672,603.3600000015648,-0.05793886189103191 +120673,603.3650000015649,-0.05793836254410957 +120674,603.370000001565,-0.05793786329830803 +120675,603.3750000015651,-0.05793736415360782 +120676,603.3800000015652,-0.05793686510998947 +120677,603.3850000015653,-0.05793636616743351 +120678,603.3900000015655,-0.05793586732592049 +120679,603.3950000015656,-0.05793536858543092 +120680,603.4000000015657,-0.05793486994594538 +120681,603.4050000015658,-0.05793437140744442 +120682,603.4100000015659,-0.05793387296990857 +120683,603.415000001566,-0.057933374633318394 +120684,603.4200000015661,-0.05793287639765445 +120685,603.4250000015662,-0.057932378262897315 +120686,603.4300000015663,-0.057931880229027545 +120687,603.4350000015664,-0.05793138229602571 +120688,603.4400000015665,-0.05793088446387237 +120689,603.4450000015667,-0.057930386732548134 +120690,603.4500000015668,-0.05792988910203354 +120691,603.4550000015669,-0.057929391572309204 +120692,603.460000001567,-0.05792889414335569 +120693,603.4650000015671,-0.057928396815153604 +120694,603.4700000015672,-0.057927899587683525 +120695,603.4750000015673,-0.057927402460926064 +120696,603.4800000015674,-0.05792690543486181 +120697,603.4850000015675,-0.057926408509471373 +120698,603.4900000015676,-0.057925911684735355 +120699,603.4950000015677,-0.05792541496063437 +120700,603.5000000015679,-0.05792491833714902 +120701,603.505000001568,-0.05792442181425995 +120702,603.5100000015681,-0.057923925391947746 +120703,603.5150000015682,-0.05792342907019305 +120704,603.5200000015683,-0.05792293284897649 +120705,603.5250000015684,-0.05792243672827868 +120706,603.5300000015685,-0.05792194070808029 +120707,603.5350000015686,-0.05792144478836191 +120708,603.5400000015687,-0.05792094896910422 +120709,603.5450000015688,-0.05792045325028785 +120710,603.550000001569,-0.05791995763189344 +120711,603.555000001569,-0.05791946211390164 +120712,603.5600000015692,-0.05791896669629313 +120713,603.5650000015693,-0.05791847137904854 +120714,603.5700000015694,-0.05791797616214855 +120715,603.5750000015695,-0.05791748104557381 +120716,603.5800000015696,-0.05791698602930498 +120717,603.5850000015697,-0.05791649111332275 +120718,603.5900000015698,-0.05791599629760779 +120719,603.5950000015699,-0.05791550158214078 +120720,603.60000000157,-0.057915006966902396 +120721,603.6050000015701,-0.057914512451873325 +120722,603.6100000015703,-0.057914018037034255 +120723,603.6150000015704,-0.05791352372236587 +120724,603.6200000015705,-0.05791302950784888 +120725,603.6250000015706,-0.05791253539346397 +120726,603.6300000015707,-0.05791204137919185 +120727,603.6350000015708,-0.057911547465013216 +120728,603.6400000015709,-0.05791105365090878 +120729,603.645000001571,-0.05791055993685926 +120730,603.6500000015711,-0.05791006632284537 +120731,603.6550000015712,-0.057909572808847815 +120732,603.6600000015713,-0.05790907939484734 +120733,603.6650000015715,-0.05790858608082465 +120734,603.6700000015716,-0.057908092866760484 +120735,603.6750000015717,-0.057907599752635576 +120736,603.6800000015718,-0.05790710673843066 +120737,603.6850000015719,-0.05790661382412646 +120738,603.690000001572,-0.05790612100970373 +120739,603.6950000015721,-0.057905628295143216 +120740,603.7000000015722,-0.05790513568042567 +120741,603.7050000015723,-0.05790464316553184 +120742,603.7100000015724,-0.05790415075044249 +120743,603.7150000015725,-0.05790365843513835 +120744,603.7200000015727,-0.057903166219600226 +120745,603.7250000015728,-0.05790267410380885 +120746,603.7300000015729,-0.057902182087745 +120747,603.735000001573,-0.057901690171389464 +120748,603.7400000015731,-0.057901198354722995 +120749,603.7450000015732,-0.05790070663772639 +120750,603.7500000015733,-0.05790021502038042 +120751,603.7550000015734,-0.05789972350266588 +120752,603.7600000015735,-0.05789923208456355 +120753,603.7650000015736,-0.05789874076605423 +120754,603.7700000015737,-0.05789824954711871 +120755,603.7750000015739,-0.0578977584277378 +120756,603.780000001574,-0.057897267407892285 +120757,603.7850000015741,-0.05789677648756299 +120758,603.7900000015742,-0.05789628566673072 +120759,603.7950000015743,-0.057895794945376285 +120760,603.8000000015744,-0.0578953043234805 +120761,603.8050000015745,-0.05789481380102419 +120762,603.8100000015746,-0.05789432337798817 +120763,603.8150000015747,-0.057893833054353284 +120764,603.8200000015748,-0.057893342830100336 +120765,603.825000001575,-0.05789285270521018 +120766,603.8300000015751,-0.057892362679663634 +120767,603.8350000015752,-0.05789187275344156 +120768,603.8400000015753,-0.057891382926524786 +120769,603.8450000015754,-0.057890893198894164 +120770,603.8500000015755,-0.05789040357053054 +120771,603.8550000015756,-0.05788991404141477 +120772,603.8600000015757,-0.05788942461152772 +120773,603.8650000015758,-0.057888935280850234 +120774,603.8700000015759,-0.05788844604936318 +120775,603.875000001576,-0.057887956917047435 +120776,603.8800000015761,-0.05788746788388386 +120777,603.8850000015763,-0.057886978949853334 +120778,603.8900000015764,-0.05788649011493672 +120779,603.8950000015765,-0.05788600137911492 +120780,603.9000000015766,-0.05788551274236879 +120781,603.9050000015767,-0.05788502420467924 +120782,603.9100000015768,-0.05788453576602716 +120783,603.9150000015769,-0.057884047426393435 +120784,603.920000001577,-0.05788355918575897 +120785,603.9250000015771,-0.05788307104410465 +120786,603.9300000015772,-0.05788258300141139 +120787,603.9350000015774,-0.05788209505766009 +120788,603.9400000015775,-0.057881607212831684 +120789,603.9450000015776,-0.05788111946690707 +120790,603.9500000015777,-0.05788063181986715 +120791,603.9550000015778,-0.05788014427169286 +120792,603.9600000015779,-0.05787965682236512 +120793,603.965000001578,-0.05787916947186487 +120794,603.9700000015781,-0.05787868222017302 +120795,603.9750000015782,-0.05787819506727052 +120796,603.9800000015783,-0.0578777080131383 +120797,603.9850000015784,-0.05787722105775731 +120798,603.9900000015786,-0.057876734201108476 +120799,603.9950000015787,-0.05787624744317276 +120800,604.0000000015788,-0.05787576078393111 +120801,604.0050000015789,-0.057875274223364484 +120802,604.010000001579,-0.057874787761453834 +120803,604.0150000015791,-0.05787430139818011 +120804,604.0200000015792,-0.05787381513352429 +120805,604.0250000015793,-0.057873328967467344 +120806,604.0300000015794,-0.057872842899990236 +120807,604.0350000015795,-0.05787235693107394 +120808,604.0400000015796,-0.05787187106069944 +120809,604.0450000015798,-0.05787138528884771 +120810,604.0500000015799,-0.057870899615499724 +120811,604.05500000158,-0.05787041404063649 +120812,604.0600000015801,-0.05786992856423899 +120813,604.0650000015802,-0.05786944318628822 +120814,604.0700000015803,-0.05786895790676519 +120815,604.0750000015804,-0.05786847272565088 +120816,604.0800000015805,-0.0578679876429263 +120817,604.0850000015806,-0.05786750265857246 +120818,604.0900000015807,-0.05786701777257038 +120819,604.0950000015808,-0.057866532984901055 +120820,604.100000001581,-0.057866048295545515 +120821,604.1050000015811,-0.05786556370448477 +120822,604.1100000015812,-0.057865079211699866 +120823,604.1150000015813,-0.05786459481717182 +120824,604.1200000015814,-0.057864110520881654 +120825,604.1250000015815,-0.057863626322810405 +120826,604.1300000015816,-0.05786314222293912 +120827,604.1350000015817,-0.057862658221248836 +120828,604.1400000015818,-0.0578621743177206 +120829,604.1450000015819,-0.05786169051233546 +120830,604.150000001582,-0.057861206805074464 +120831,604.1550000015822,-0.05786072319591865 +120832,604.1600000015823,-0.05786023968484911 +120833,604.1650000015824,-0.05785975627184688 +120834,604.1700000015825,-0.057859272956893026 +120835,604.1750000015826,-0.05785878973996863 +120836,604.1800000015827,-0.057858306621054754 +120837,604.1850000015828,-0.05785782360013247 +120838,604.1900000015829,-0.05785734067718285 +120839,604.195000001583,-0.05785685785218699 +120840,604.2000000015831,-0.05785637512512598 +120841,604.2050000015832,-0.05785589249598088 +120842,604.2100000015834,-0.05785540996473282 +120843,604.2150000015835,-0.05785492753136285 +120844,604.2200000015836,-0.057854445195852096 +120845,604.2250000015837,-0.057853962958181654 +120846,604.2300000015838,-0.05785348081833263 +120847,604.2350000015839,-0.05785299877628613 +120848,604.240000001584,-0.057852516832023256 +120849,604.2450000015841,-0.05785203498552514 +120850,604.2500000015842,-0.057851553236772886 +120851,604.2550000015843,-0.05785107158574762 +120852,604.2600000015844,-0.05785059003243046 +120853,604.2650000015846,-0.05785010857680254 +120854,604.2700000015847,-0.057849627218844984 +120855,604.2750000015848,-0.05784914595853894 +120856,604.2800000015849,-0.05784866479586555 +120857,604.285000001585,-0.05784818373080593 +120858,604.2900000015851,-0.057847702763341245 +120859,604.2950000015852,-0.05784722189345263 +120860,604.3000000015853,-0.057846741121121245 +120861,604.3050000015854,-0.057846260446328235 +120862,604.3100000015855,-0.057845779869054766 +120863,604.3150000015856,-0.057845299389282005 +120864,604.3200000015858,-0.0578448190069911 +120865,604.3250000015859,-0.05784433872216323 +120866,604.330000001586,-0.05784385853477957 +120867,604.3350000015861,-0.057843378444821285 +120868,604.3400000015862,-0.05784289845226955 +120869,604.3450000015863,-0.05784241855710556 +120870,604.3500000015864,-0.05784193875931048 +120871,604.3550000015865,-0.057841459058865514 +120872,604.3600000015866,-0.05784097945575184 +120873,604.3650000015867,-0.057840499949950656 +120874,604.3700000015868,-0.05784002054144317 +120875,604.375000001587,-0.057839541230210574 +120876,604.3800000015871,-0.057839062016234066 +120877,604.3850000015872,-0.05783858289949487 +120878,604.3900000015873,-0.057838103879974186 +120879,604.3950000015874,-0.05783762495765323 +120880,604.4000000015875,-0.05783714613251323 +120881,604.4050000015876,-0.05783666740453538 +120882,604.4100000015877,-0.057836188773700926 +120883,604.4150000015878,-0.05783571023999109 +120884,604.4200000015879,-0.0578352318033871 +120885,604.425000001588,-0.0578347534638702 +120886,604.4300000015882,-0.05783427522142162 +120887,604.4350000015883,-0.05783379707602259 +120888,604.4400000015884,-0.05783331902765437 +120889,604.4450000015885,-0.05783284107629819 +120890,604.4500000015886,-0.05783236322193533 +120891,604.4550000015887,-0.05783188546454702 +120892,604.4600000015888,-0.05783140780411452 +120893,604.4650000015889,-0.0578309302406191 +120894,604.470000001589,-0.057830452774042015 +120895,604.4750000015891,-0.057829975404364534 +120896,604.4800000015892,-0.05782949813156793 +120897,604.4850000015894,-0.057829020955633484 +120898,604.4900000015895,-0.05782854387654245 +120899,604.4950000015896,-0.05782806689427614 +120900,604.5000000015897,-0.05782759000881581 +120901,604.5050000015898,-0.05782711322014275 +120902,604.5100000015899,-0.057826636528238266 +120903,604.51500000159,-0.05782615993308365 +120904,604.5200000015901,-0.05782568343466018 +120905,604.5250000015902,-0.05782520703294917 +120906,604.5300000015903,-0.05782473072793192 +120907,604.5350000015904,-0.057824254519589745 +120908,604.5400000015906,-0.057823778407903946 +120909,604.5450000015907,-0.05782330239285584 +120910,604.5500000015908,-0.057822826474426735 +120911,604.5550000015909,-0.05782235065259796 +120912,604.560000001591,-0.05782187492735085 +120913,604.5650000015911,-0.05782139929866672 +120914,604.5700000015912,-0.05782092376652689 +120915,604.5750000015913,-0.05782044833091271 +120916,604.5800000015914,-0.0578199729918055 +120917,604.5850000015915,-0.05781949774918661 +120918,604.5900000015916,-0.05781902260303738 +120919,604.5950000015918,-0.05781854755333917 +120920,604.6000000015919,-0.05781807260007332 +120921,604.605000001592,-0.05781759774322117 +120922,604.6100000015921,-0.05781712298276409 +120923,604.6150000015922,-0.05781664831868345 +120924,604.6200000015923,-0.05781617375096059 +120925,604.6250000015924,-0.057815699279576895 +120926,604.6300000015925,-0.05781522490451371 +120927,604.6350000015926,-0.05781475062575244 +120928,604.6400000015927,-0.057814276443274436 +120929,604.6450000015928,-0.05781380235706109 +120930,604.650000001593,-0.05781332836709379 +120931,604.6550000015931,-0.05781285447335391 +120932,604.6600000015932,-0.05781238067582284 +120933,604.6650000015933,-0.05781190697448197 +120934,604.6700000015934,-0.05781143336931271 +120935,604.6750000015935,-0.057810959860296454 +120936,604.6800000015936,-0.05781048644741459 +120937,604.6850000015937,-0.05781001313064854 +120938,604.6900000015938,-0.0578095399099797 +120939,604.6950000015939,-0.0578090667853895 +120940,604.700000001594,-0.05780859375685935 +120941,604.7050000015942,-0.05780812082437066 +120942,604.7100000015943,-0.05780764798790486 +120943,604.7150000015944,-0.05780717524744337 +120944,604.7200000015945,-0.05780670260296762 +120945,604.7250000015946,-0.05780623005445905 +120946,604.7300000015947,-0.05780575760189909 +120947,604.7350000015948,-0.05780528524526918 +120948,604.7400000015949,-0.05780481298455075 +120949,604.745000001595,-0.057804340819725256 +120950,604.7500000015951,-0.05780386875077416 +120951,604.7550000015952,-0.057803396777678887 +120952,604.7600000015954,-0.0578029249004209 +120953,604.7650000015955,-0.057802453118981675 +120954,604.7700000015956,-0.05780198143334266 +120955,604.7750000015957,-0.057801509843485324 +120956,604.7800000015958,-0.05780103834939112 +120957,604.7850000015959,-0.05780056695104155 +120958,604.790000001596,-0.05780009564841805 +120959,604.7950000015961,-0.057799624441502134 +120960,604.8000000015962,-0.057799153330275264 +120961,604.8050000015963,-0.057798682314718935 +120962,604.8100000015964,-0.057798211394814614 +120963,604.8150000015966,-0.05779774057054382 +120964,604.8200000015967,-0.05779726984188804 +120965,604.8250000015968,-0.05779679920882876 +120966,604.8300000015969,-0.057796328671347486 +120967,604.835000001597,-0.05779585822942572 +120968,604.8400000015971,-0.05779538788304497 +120969,604.8450000015972,-0.057794917632186756 +120970,604.8500000015973,-0.057794447476832586 +120971,604.8550000015974,-0.05779397741696399 +120972,604.8600000015975,-0.05779350745256247 +120973,604.8650000015977,-0.05779303758360955 +120974,604.8700000015978,-0.057792567810086765 +120975,604.8750000015979,-0.05779209813197565 +120976,604.880000001598,-0.05779162854925774 +120977,604.8850000015981,-0.05779115906191456 +120978,604.8900000015982,-0.05779068966992765 +120979,604.8950000015983,-0.05779022037327856 +120980,604.9000000015984,-0.05778975117194884 +120981,604.9050000015985,-0.05778928206592004 +120982,604.9100000015986,-0.05778881305517371 +120983,604.9150000015987,-0.0577883441396914 +120984,604.9200000015989,-0.05778787531945469 +120985,604.925000001599,-0.05778740659444513 +120986,604.9300000015991,-0.057786937964644285 +120987,604.9350000015992,-0.05778646943003372 +120988,604.9400000015993,-0.05778600099059503 +120989,604.9450000015994,-0.05778553264630978 +120990,604.9500000015995,-0.05778506439715953 +120991,604.9550000015996,-0.05778459624312589 +120992,604.9600000015997,-0.05778412818419044 +120993,604.9650000015998,-0.05778366022033475 +120994,604.9700000015999,-0.05778319235154044 +120995,604.9750000016,-0.05778272457778908 +120996,604.9800000016002,-0.05778225689906231 +120997,604.9850000016003,-0.05778178931534168 +120998,604.9900000016004,-0.05778132182660885 +120999,604.9950000016005,-0.05778085443284539 +121000,605.0000000016006,-0.05778038713403292 +121001,605.0050000016007,-0.05777991993015306 +121002,605.0100000016008,-0.05777945282118742 +121003,605.0150000016009,-0.057778985807117635 +121004,605.020000001601,-0.05777851888792533 +121005,605.0250000016011,-0.05777805206359213 +121006,605.0300000016013,-0.05777758533409966 +121007,605.0350000016014,-0.057777118699429565 +121008,605.0400000016015,-0.057776652159563485 +121009,605.0450000016016,-0.05777618571448305 +121010,605.0500000016017,-0.05777571936416992 +121011,605.0550000016018,-0.05777525310860573 +121012,605.0600000016019,-0.057774786947772126 +121013,605.065000001602,-0.057774320881650784 +121014,605.0700000016021,-0.05777385491022335 +121015,605.0750000016022,-0.05777338903347148 +121016,605.0800000016023,-0.05777292325137684 +121017,605.0850000016025,-0.05777245756392111 +121018,605.0900000016026,-0.057771991971085956 +121019,605.0950000016027,-0.05777152647285304 +121020,605.1000000016028,-0.057771061069204065 +121021,605.1050000016029,-0.05777059576012068 +121022,605.110000001603,-0.05777013054558461 +121023,605.1150000016031,-0.0577696654255775 +121024,605.1200000016032,-0.057769200400081065 +121025,605.1250000016033,-0.05776873546907699 +121026,605.1300000016034,-0.05776827063254698 +121027,605.1350000016035,-0.057767805890472715 +121028,605.1400000016037,-0.057767341242835925 +121029,605.1450000016038,-0.0577668766896183 +121030,605.1500000016039,-0.05776641223080156 +121031,605.155000001604,-0.05776594786636741 +121032,605.1600000016041,-0.05776548359629757 +121033,605.1650000016042,-0.057765019420573764 +121034,605.1700000016043,-0.05776455533917772 +121035,605.1750000016044,-0.057764091352091144 +121036,605.1800000016045,-0.05776362745929578 +121037,605.1850000016046,-0.05776316366077336 +121038,605.1900000016047,-0.05776269995650562 +121039,605.1950000016049,-0.057762236346474295 +121040,605.200000001605,-0.05776177283066113 +121041,605.2050000016051,-0.05776130940904788 +121042,605.2100000016052,-0.05776084608161628 +121043,605.2150000016053,-0.057760382848348085 +121044,605.2200000016054,-0.05775991970922506 +121045,605.2250000016055,-0.05775945666422895 +121046,605.2300000016056,-0.057758993713341526 +121047,605.2350000016057,-0.05775853085654455 +121048,605.2400000016058,-0.0577580680938198 +121049,605.245000001606,-0.05775760542514904 +121050,605.250000001606,-0.057757142850514046 +121051,605.2550000016062,-0.05775668036989659 +121052,605.2600000016063,-0.057756217983278464 +121053,605.2650000016064,-0.05775575569064145 +121054,605.2700000016065,-0.057755293491967334 +121055,605.2750000016066,-0.057754831387237915 +121056,605.2800000016067,-0.057754369376434966 +121057,605.2850000016068,-0.0577539074595403 +121058,605.2900000016069,-0.05775344563653572 +121059,605.295000001607,-0.05775298390740302 +121060,605.3000000016071,-0.057752522272124025 +121061,605.3050000016073,-0.057752060730680545 +121062,605.3100000016074,-0.05775159928305438 +121063,605.3150000016075,-0.05775113792922734 +121064,605.3200000016076,-0.05775067666918126 +121065,605.3250000016077,-0.05775021550289796 +121066,605.3300000016078,-0.057749754430359276 +121067,605.3350000016079,-0.05774929345154702 +121068,605.340000001608,-0.057748832566443045 +121069,605.3450000016081,-0.05774837177502917 +121070,605.3500000016082,-0.057747911077287245 +121071,605.3550000016083,-0.05774745047319911 +121072,605.3600000016085,-0.05774698996274661 +121073,605.3650000016086,-0.0577465295459116 +121074,605.3700000016087,-0.05774606922267593 +121075,605.3750000016088,-0.05774560899302145 +121076,605.3800000016089,-0.05774514885693003 +121077,605.385000001609,-0.057744688814383535 +121078,605.3900000016091,-0.057744228865363824 +121079,605.3950000016092,-0.05774376900985276 +121080,605.4000000016093,-0.05774330924783222 +121081,605.4050000016094,-0.05774284957928407 +121082,605.4100000016095,-0.057742390004190215 +121083,605.4150000016097,-0.057741930522532514 +121084,605.4200000016098,-0.05774147113429285 +121085,605.4250000016099,-0.05774101183945314 +121086,605.43000000161,-0.05774055263799524 +121087,605.4350000016101,-0.05774009352990106 +121088,605.4400000016102,-0.0577396345151525 +121089,605.4450000016103,-0.057739175593731464 +121090,605.4500000016104,-0.057738716765619855 +121091,605.4550000016105,-0.05773825803079957 +121092,605.4600000016106,-0.05773779938925253 +121093,605.4650000016107,-0.05773734084096065 +121094,605.4700000016109,-0.057736882385905845 +121095,605.475000001611,-0.05773642402407003 +121096,605.4800000016111,-0.057735965755435145 +121097,605.4850000016112,-0.05773550757998311 +121098,605.4900000016113,-0.05773504949769584 +121099,605.4950000016114,-0.05773459150855528 +121100,605.5000000016115,-0.05773413361254338 +121101,605.5050000016116,-0.05773367580964205 +121102,605.5100000016117,-0.057733218099833256 +121103,605.5150000016118,-0.05773276048309893 +121104,605.520000001612,-0.057732302959421035 +121105,605.525000001612,-0.05773184552878152 +121106,605.5300000016122,-0.05773138819116234 +121107,605.5350000016123,-0.05773093094654546 +121108,605.5400000016124,-0.05773047379491283 +121109,605.5450000016125,-0.05773001673624643 +121110,605.5500000016126,-0.05772955977052821 +121111,605.5550000016127,-0.057729102897740164 +121112,605.5600000016128,-0.05772864611786426 +121113,605.5650000016129,-0.05772818943088247 +121114,605.570000001613,-0.05772773283677677 +121115,605.5750000016131,-0.057727276335529154 +121116,605.5800000016133,-0.05772681992712163 +121117,605.5850000016134,-0.05772636361153616 +121118,605.5900000016135,-0.05772590738875475 +121119,605.5950000016136,-0.05772545125875939 +121120,605.6000000016137,-0.0577249952215321 +121121,605.6050000016138,-0.057724539277054863 +121122,605.6100000016139,-0.057724083425309686 +121123,605.615000001614,-0.0577236276662786 +121124,605.6200000016141,-0.05772317199994362 +121125,605.6250000016142,-0.057722716426286735 +121126,605.6300000016143,-0.05772226094528999 +121127,605.6350000016145,-0.057721805556935395 +121128,605.6400000016146,-0.05772135026120499 +121129,605.6450000016147,-0.057720895058080784 +121130,605.6500000016148,-0.05772043994754483 +121131,605.6550000016149,-0.05771998492957917 +121132,605.660000001615,-0.05771953000416582 +121133,605.6650000016151,-0.057719075171286834 +121134,605.6700000016152,-0.05771862043092426 +121135,605.6750000016153,-0.057718165783060146 +121136,605.6800000016154,-0.05771771122767655 +121137,605.6850000016155,-0.05771725676475552 +121138,605.6900000016157,-0.057716802394279114 +121139,605.6950000016158,-0.0577163481162294 +121140,605.7000000016159,-0.05771589393058844 +121141,605.705000001616,-0.057715439837338296 +121142,605.7100000016161,-0.05771498583646106 +121143,605.7150000016162,-0.05771453192793878 +121144,605.7200000016163,-0.05771407811175355 +121145,605.7250000016164,-0.05771362438788746 +121146,605.7300000016165,-0.05771317075632258 +121147,605.7350000016166,-0.05771271721704101 +121148,605.7400000016167,-0.05771226377002482 +121149,605.7450000016169,-0.05771181041525612 +121150,605.750000001617,-0.057711357152717004 +121151,605.7550000016171,-0.057710903982389566 +121152,605.7600000016172,-0.057710450904255924 +121153,605.7650000016173,-0.05770999791829817 +121154,605.7700000016174,-0.057709545024498425 +121155,605.7750000016175,-0.057709092222838806 +121156,605.7800000016176,-0.05770863951330142 +121157,605.7850000016177,-0.05770818689586838 +121158,605.7900000016178,-0.05770773437052182 +121159,605.795000001618,-0.057707281937243865 +121160,605.8000000016181,-0.05770682959601665 +121161,605.8050000016182,-0.057706377346822296 +121162,605.8100000016183,-0.05770592518964294 +121163,605.8150000016184,-0.05770547312446073 +121164,605.8200000016185,-0.0577050211512578 +121165,605.8250000016186,-0.05770456927001629 +121166,605.8300000016187,-0.05770411748071837 +121167,605.8350000016188,-0.05770366578334617 +121168,605.8400000016189,-0.05770321417788185 +121169,605.845000001619,-0.05770276266430757 +121170,605.8500000016192,-0.057702311242605504 +121171,605.8550000016193,-0.0577018599127578 +121172,605.8600000016194,-0.05770140867474663 +121173,605.8650000016195,-0.05770095752855417 +121174,605.8700000016196,-0.05770050647416258 +121175,605.8750000016197,-0.057700055511554056 +121176,605.8800000016198,-0.057699604640710764 +121177,605.8850000016199,-0.05769915386161489 +121178,605.89000000162,-0.05769870317424862 +121179,605.8950000016201,-0.05769825257859415 +121180,605.9000000016202,-0.057697802074633674 +121181,605.9050000016204,-0.05769735166234938 +121182,605.9100000016205,-0.05769690134172348 +121183,605.9150000016206,-0.05769645111273816 +121184,605.9200000016207,-0.05769600097537564 +121185,605.9250000016208,-0.057695550929618124 +121186,605.9300000016209,-0.05769510097544783 +121187,605.935000001621,-0.05769465111284697 +121188,605.9400000016211,-0.05769420134179775 +121189,605.9450000016212,-0.05769375166228241 +121190,605.9500000016213,-0.05769330207428317 +121191,605.9550000016214,-0.05769285257778225 +121192,605.9600000016216,-0.057692403172761884 +121193,605.9650000016217,-0.057691953859204316 +121194,605.9700000016218,-0.05769150463709179 +121195,605.9750000016219,-0.05769105550640651 +121196,605.980000001622,-0.05769060646713076 +121197,605.9850000016221,-0.05769015751924678 +121198,605.9900000016222,-0.05768970866273681 +121199,605.9950000016223,-0.0576892598975831 +121200,606.0000000016224,-0.057688811223767913 +121201,606.0050000016225,-0.05768836264127351 +121202,606.0100000016226,-0.057687914150082155 +121203,606.0150000016228,-0.0576874657501761 +121204,606.0200000016229,-0.05768701744153765 +121205,606.025000001623,-0.05768656922414904 +121206,606.0300000016231,-0.05768612109799257 +121207,606.0350000016232,-0.0576856730630505 +121208,606.0400000016233,-0.05768522511930513 +121209,606.0450000016234,-0.057684777266738735 +121210,606.0500000016235,-0.05768432950533361 +121211,606.0550000016236,-0.057683881835072046 +121212,606.0600000016237,-0.05768343425593633 +121213,606.0650000016238,-0.05768298676790878 +121214,606.070000001624,-0.05768253937097167 +121215,606.0750000016241,-0.05768209206510731 +121216,606.0800000016242,-0.05768164485029803 +121217,606.0850000016243,-0.05768119772652612 +121218,606.0900000016244,-0.0576807506937739 +121219,606.0950000016245,-0.05768030375202369 +121220,606.1000000016246,-0.057679856901257806 +121221,606.1050000016247,-0.057679410141458574 +121222,606.1100000016248,-0.05767896347260832 +121223,606.1150000016249,-0.05767851689468937 +121224,606.120000001625,-0.057678070407684065 +121225,606.1250000016252,-0.05767762401157474 +121226,606.1300000016253,-0.05767717770634373 +121227,606.1350000016254,-0.057676731491973374 +121228,606.1400000016255,-0.05767628536844602 +121229,606.1450000016256,-0.057675839335744016 +121230,606.1500000016257,-0.05767539339384973 +121231,606.1550000016258,-0.0576749475427455 +121232,606.1600000016259,-0.057674501782413685 +121233,606.165000001626,-0.05767405611283665 +121234,606.1700000016261,-0.057673610533996764 +121235,606.1750000016262,-0.057673165045876405 +121236,606.1800000016264,-0.05767271964845792 +121237,606.1850000016265,-0.057672274341723694 +121238,606.1900000016266,-0.057671829125656104 +121239,606.1950000016267,-0.057671384000237524 +121240,606.2000000016268,-0.05767093896545035 +121241,606.2050000016269,-0.05767049402127697 +121242,606.210000001627,-0.05767004916769976 +121243,606.2150000016271,-0.05766960440470112 +121244,606.2200000016272,-0.057669159732263456 +121245,606.2250000016273,-0.05766871515036916 +121246,606.2300000016274,-0.05766827065900061 +121247,606.2350000016276,-0.05766782625814025 +121248,606.2400000016277,-0.057667381947770484 +121249,606.2450000016278,-0.0576669377278737 +121250,606.2500000016279,-0.05766649359843234 +121251,606.255000001628,-0.0576660495594288 +121252,606.2600000016281,-0.05766560561084552 +121253,606.2650000016282,-0.057665161752664916 +121254,606.2700000016283,-0.05766471798486941 +121255,606.2750000016284,-0.05766427430744145 +121256,606.2800000016285,-0.05766383072036345 +121257,606.2850000016286,-0.057663387223617864 +121258,606.2900000016288,-0.05766294381718711 +121259,606.2950000016289,-0.057662500501053655 +121260,606.300000001629,-0.05766205727519994 +121261,606.3050000016291,-0.05766161413960842 +121262,606.3100000016292,-0.05766117109426153 +121263,606.3150000016293,-0.057660728139141755 +121264,606.3200000016294,-0.057660285274231525 +121265,606.3250000016295,-0.057659842499513315 +121266,606.3300000016296,-0.05765939981496959 +121267,606.3350000016297,-0.05765895722058282 +121268,606.3400000016298,-0.05765851471633548 +121269,606.34500000163,-0.05765807230221003 +121270,606.3500000016301,-0.05765762997818896 +121271,606.3550000016302,-0.057657187744254774 +121272,606.3600000016303,-0.05765674560038993 +121273,606.3650000016304,-0.05765630354657691 +121274,606.3700000016305,-0.05765586158279822 +121275,606.3750000016306,-0.05765541970903635 +121276,606.3800000016307,-0.0576549779252738 +121277,606.3850000016308,-0.05765453623149305 +121278,606.3900000016309,-0.05765409462767664 +121279,606.395000001631,-0.05765365311380705 +121280,606.4000000016312,-0.05765321168986681 +121281,606.4050000016313,-0.05765277035583841 +121282,606.4100000016314,-0.05765232911170438 +121283,606.4150000016315,-0.05765188795744723 +121284,606.4200000016316,-0.0576514468930495 +121285,606.4250000016317,-0.057651005918493696 +121286,606.4300000016318,-0.05765056503376235 +121287,606.4350000016319,-0.057650124238838 +121288,606.440000001632,-0.057649683533703186 +121289,606.4450000016321,-0.057649242918340435 +121290,606.4500000016322,-0.0576488023927323 +121291,606.4550000016324,-0.05764836195686131 +121292,606.4600000016325,-0.05764792161071003 +121293,606.4650000016326,-0.05764748135426099 +121294,606.4700000016327,-0.05764704118749677 +121295,606.4750000016328,-0.0576466011103999 +121296,606.4800000016329,-0.05764616112295296 +121297,606.485000001633,-0.0576457212251385 +121298,606.4900000016331,-0.0576452814169391 +121299,606.4950000016332,-0.05764484169833732 +121300,606.5000000016333,-0.05764440206931573 +121301,606.5050000016334,-0.05764396252985692 +121302,606.5100000016336,-0.05764352307994345 +121303,606.5150000016337,-0.057643083719557925 +121304,606.5200000016338,-0.0576426444486829 +121305,606.5250000016339,-0.057642205267300996 +121306,606.530000001634,-0.05764176617539478 +121307,606.5350000016341,-0.05764132717294686 +121308,606.5400000016342,-0.05764088825993983 +121309,606.5450000016343,-0.05764044943635628 +121310,606.5500000016344,-0.05764001070217883 +121311,606.5550000016345,-0.057639572057390086 +121312,606.5600000016346,-0.05763913350197265 +121313,606.5650000016348,-0.05763869503590914 +121314,606.5700000016349,-0.057638256659182166 +121315,606.575000001635,-0.05763781837177436 +121316,606.5800000016351,-0.05763738017366833 +121317,606.5850000016352,-0.05763694206484672 +121318,606.5900000016353,-0.05763650404529214 +121319,606.5950000016354,-0.05763606611498725 +121320,606.6000000016355,-0.05763562827391465 +121321,606.6050000016356,-0.057635190522057005 +121322,606.6100000016357,-0.05763475285939694 +121323,606.6150000016358,-0.057634315285917115 +121324,606.620000001636,-0.057633877801600154 +121325,606.6250000016361,-0.05763344040642872 +121326,606.6300000016362,-0.05763300310038548 +121327,606.6350000016363,-0.057632565883453085 +121328,606.6400000016364,-0.057632128755614194 +121329,606.6450000016365,-0.057631691716851466 +121330,606.6500000016366,-0.05763125476714757 +121331,606.6550000016367,-0.057630817906485166 +121332,606.6600000016368,-0.05763038113484694 +121333,606.6650000016369,-0.057629944452215566 +121334,606.670000001637,-0.05762950785857373 +121335,606.6750000016372,-0.05762907135390411 +121336,606.6800000016373,-0.05762863493818938 +121337,606.6850000016374,-0.05762819861141223 +121338,606.6900000016375,-0.05762776237355536 +121339,606.6950000016376,-0.05762732622460146 +121340,606.7000000016377,-0.057626890164533234 +121341,606.7050000016378,-0.05762645419333339 +121342,606.7100000016379,-0.05762601831098461 +121343,606.715000001638,-0.05762558251746961 +121344,606.7200000016381,-0.05762514681277111 +121345,606.7250000016383,-0.0576247111968718 +121346,606.7300000016384,-0.05762427566975443 +121347,606.7350000016385,-0.057623840231401685 +121348,606.7400000016386,-0.05762340488179632 +121349,606.7450000016387,-0.05762296962092104 +121350,606.7500000016388,-0.057622534448758575 +121351,606.7550000016389,-0.05762209936529166 +121352,606.760000001639,-0.05762166437050304 +121353,606.7650000016391,-0.05762122946437545 +121354,606.7700000016392,-0.05762079464689161 +121355,606.7750000016393,-0.057620359918034283 +121356,606.7800000016395,-0.05761992527778623 +121357,606.7850000016396,-0.057619490726130165 +121358,606.7900000016397,-0.057619056263048876 +121359,606.7950000016398,-0.057618621888525116 +121360,606.8000000016399,-0.05761818760254163 +121361,606.80500000164,-0.05761775340508118 +121362,606.8100000016401,-0.05761731929612654 +121363,606.8150000016402,-0.05761688527566048 +121364,606.8200000016403,-0.057616451343665775 +121365,606.8250000016404,-0.0576160175001252 +121366,606.8300000016405,-0.05761558374502153 +121367,606.8350000016407,-0.05761515007833755 +121368,606.8400000016408,-0.05761471650005605 +121369,606.8450000016409,-0.05761428301015981 +121370,606.850000001641,-0.05761384960863161 +121371,606.8550000016411,-0.05761341629545427 +121372,606.8600000016412,-0.05761298307061057 +121373,606.8650000016413,-0.05761254993408332 +121374,606.8700000016414,-0.05761211688585532 +121375,606.8750000016415,-0.05761168392590936 +121376,606.8800000016416,-0.05761125105422828 +121377,606.8850000016417,-0.05761081827079487 +121378,606.8900000016419,-0.05761038557559195 +121379,606.895000001642,-0.05760995296860234 +121380,606.9000000016421,-0.05760952044980888 +121381,606.9050000016422,-0.05760908801919438 +121382,606.9100000016423,-0.057608655676741664 +121383,606.9150000016424,-0.05760822342243357 +121384,606.9200000016425,-0.05760779125625293 +121385,606.9250000016426,-0.05760735917818258 +121386,606.9300000016427,-0.05760692718820536 +121387,606.9350000016428,-0.05760649528630413 +121388,606.9400000016429,-0.057606063472461715 +121389,606.945000001643,-0.057605631746660974 +121390,606.9500000016432,-0.05760520010888477 +121391,606.9550000016433,-0.057604768559115956 +121392,606.9600000016434,-0.05760433709733738 +121393,606.9650000016435,-0.05760390572353191 +121394,606.9700000016436,-0.05760347443768243 +121395,606.9750000016437,-0.057603043239771765 +121396,606.9800000016438,-0.05760261212978283 +121397,606.9850000016439,-0.05760218110769847 +121398,606.990000001644,-0.05760175017350159 +121399,606.9950000016441,-0.05760131932717505 +121400,607.0000000016443,-0.057600888568701734 +121401,607.0050000016444,-0.05760045789806455 +121402,607.0100000016445,-0.05760002731524637 +121403,607.0150000016446,-0.05759959682023009 +121404,607.0200000016447,-0.057599166412998615 +121405,607.0250000016448,-0.05759873609353484 +121406,607.0300000016449,-0.05759830586182166 +121407,607.035000001645,-0.05759787571784199 +121408,607.0400000016451,-0.05759744566157873 +121409,607.0450000016452,-0.057597015693014814 +121410,607.0500000016453,-0.05759658581213313 +121411,607.0550000016455,-0.0575961560189166 +121412,607.0600000016456,-0.05759572631334817 +121413,607.0650000016457,-0.05759529669541074 +121414,607.0700000016458,-0.057594867165087237 +121415,607.0750000016459,-0.057594437722360614 +121416,607.080000001646,-0.057594008367213775 +121417,607.0850000016461,-0.05759357909962968 +121418,607.0900000016462,-0.057593149919591254 +121419,607.0950000016463,-0.05759272082708145 +121420,607.1000000016464,-0.05759229182208321 +121421,607.1050000016465,-0.05759186290457949 +121422,607.1100000016467,-0.05759143407455322 +121423,607.1150000016468,-0.057591005331987376 +121424,607.1200000016469,-0.057590576676864916 +121425,607.125000001647,-0.05759014810916879 +121426,607.1300000016471,-0.05758971962888198 +121427,607.1350000016472,-0.057589291235987446 +121428,607.1400000016473,-0.05758886293046815 +121429,607.1450000016474,-0.057588434712307075 +121430,607.1500000016475,-0.057588006581487196 +121431,607.1550000016476,-0.05758757853799148 +121432,607.1600000016477,-0.057587150581802915 +121433,607.1650000016479,-0.057586722712904506 +121434,607.170000001648,-0.05758629493127923 +121435,607.1750000016481,-0.05758586723691006 +121436,607.1800000016482,-0.05758543962978003 +121437,607.1850000016483,-0.05758501210987211 +121438,607.1900000016484,-0.05758458467716931 +121439,607.1950000016485,-0.057584157331654624 +121440,607.2000000016486,-0.05758373007331107 +121441,607.2050000016487,-0.05758330290212167 +121442,607.2100000016488,-0.05758287581806942 +121443,607.215000001649,-0.05758244882113735 +121444,607.220000001649,-0.05758202191130846 +121445,607.2250000016492,-0.05758159508856579 +121446,607.2300000016493,-0.05758116835289236 +121447,607.2350000016494,-0.05758074170427121 +121448,607.2400000016495,-0.05758031514268535 +121449,607.2450000016496,-0.057579888668117835 +121450,607.2500000016497,-0.0575794622805517 +121451,607.2550000016498,-0.057579035979969974 +121452,607.2600000016499,-0.05757860976635571 +121453,607.26500000165,-0.05757818363969196 +121454,607.2700000016501,-0.057577757599961775 +121455,607.2750000016503,-0.0575773316471482 +121456,607.2800000016504,-0.057576905781234304 +121457,607.2850000016505,-0.057576480002203126 +121458,607.2900000016506,-0.05757605431003775 +121459,607.2950000016507,-0.05757562870472123 +121460,607.3000000016508,-0.057575203186236636 +121461,607.3050000016509,-0.05757477775456704 +121462,607.310000001651,-0.05757435240969552 +121463,607.3150000016511,-0.05757392715160516 +121464,607.3200000016512,-0.05757350198027904 +121465,607.3250000016513,-0.05757307689570023 +121466,607.3300000016515,-0.05757265189785183 +121467,607.3350000016516,-0.05757222698671693 +121468,607.3400000016517,-0.05757180216227862 +121469,607.3450000016518,-0.057571377424519996 +121470,607.3500000016519,-0.05757095277342415 +121471,607.355000001652,-0.05757052820897421 +121472,607.3600000016521,-0.05757010373115327 +121473,607.3650000016522,-0.05756967933994443 +121474,607.3700000016523,-0.0575692550353308 +121475,607.3750000016524,-0.05756883081729551 +121476,607.3800000016525,-0.05756840668582166 +121477,607.3850000016527,-0.057567982640892384 +121478,607.3900000016528,-0.0575675586824908 +121479,607.3950000016529,-0.05756713481060004 +121480,607.400000001653,-0.057566711025203235 +121481,607.4050000016531,-0.057566287326283515 +121482,607.4100000016532,-0.057565863713824016 +121483,607.4150000016533,-0.05756544018780788 +121484,607.4200000016534,-0.057565016748218255 +121485,607.4250000016535,-0.05756459339503828 +121486,607.4300000016536,-0.057564170128251095 +121487,607.4350000016537,-0.05756374694783986 +121488,607.4400000016539,-0.057563323853787735 +121489,607.445000001654,-0.05756290084607787 +121490,607.4500000016541,-0.05756247792469343 +121491,607.4550000016542,-0.05756205508961757 +121492,607.4600000016543,-0.05756163234083349 +121493,607.4650000016544,-0.057561209678324315 +121494,607.4700000016545,-0.057560787102073234 +121495,607.4750000016546,-0.05756036461206344 +121496,607.4800000016547,-0.05755994220827809 +121497,607.4850000016548,-0.05755951989070037 +121498,607.490000001655,-0.05755909765931348 +121499,607.4950000016551,-0.0575586755141006 +121500,607.5000000016552,-0.05755825345504492 +121501,607.5050000016553,-0.05755783148212963 +121502,607.5100000016554,-0.05755740959533793 +121503,607.5150000016555,-0.05755698779465303 +121504,607.5200000016556,-0.057556566080058116 +121505,607.5250000016557,-0.057556144451536416 +121506,607.5300000016558,-0.05755572290907112 +121507,607.5350000016559,-0.05755530145264545 +121508,607.540000001656,-0.05755488008224262 +121509,607.5450000016561,-0.057554458797845855 +121510,607.5500000016563,-0.057554037599438376 +121511,607.5550000016564,-0.0575536164870034 +121512,607.5600000016565,-0.057553195460524155 +121513,607.5650000016566,-0.05755277451998387 +121514,607.5700000016567,-0.057552353665365784 +121515,607.5750000016568,-0.05755193289665314 +121516,607.5800000016569,-0.05755151221382917 +121517,607.585000001657,-0.05755109161687713 +121518,607.5900000016571,-0.05755067110578026 +121519,607.5950000016572,-0.05755025068052179 +121520,607.6000000016573,-0.05754983034108498 +121521,607.6050000016575,-0.05754941008745311 +121522,607.6100000016576,-0.057548989919609425 +121523,607.6150000016577,-0.05754856983753717 +121524,607.6200000016578,-0.05754814984121963 +121525,607.6250000016579,-0.057547729930640064 +121526,607.630000001658,-0.057547310105781735 +121527,607.6350000016581,-0.05754689036662793 +121528,607.6400000016582,-0.05754647071316193 +121529,607.6450000016583,-0.05754605114536699 +121530,607.6500000016584,-0.05754563166322642 +121531,607.6550000016585,-0.05754521226672348 +121532,607.6600000016587,-0.05754479295584147 +121533,607.6650000016588,-0.057544373730563696 +121534,607.6700000016589,-0.05754395459087343 +121535,607.675000001659,-0.05754353553675398 +121536,607.6800000016591,-0.057543116568188654 +121537,607.6850000016592,-0.057542697685160744 +121538,607.6900000016593,-0.057542278887653564 +121539,607.6950000016594,-0.05754186017565043 +121540,607.7000000016595,-0.057541441549134646 +121541,607.7050000016596,-0.057541023008089526 +121542,607.7100000016598,-0.057540604552498396 +121543,607.7150000016599,-0.05754018618234457 +121544,607.72000000166,-0.05753976789761139 +121545,607.7250000016601,-0.05753934969828215 +121546,607.7300000016602,-0.05753893158434022 +121547,607.7350000016603,-0.057538513555768916 +121548,607.7400000016604,-0.057538095612551576 +121549,607.7450000016605,-0.057537677754671536 +121550,607.7500000016606,-0.05753725998211215 +121551,607.7550000016607,-0.057536842294856755 +121552,607.7600000016608,-0.0575364246928887 +121553,607.765000001661,-0.057536007176191346 +121554,607.7700000016611,-0.05753558974474805 +121555,607.7750000016612,-0.05753517239854216 +121556,607.7800000016613,-0.05753475513755704 +121557,607.7850000016614,-0.05753433796177606 +121558,607.7900000016615,-0.05753392087118259 +121559,607.7950000016616,-0.057533503865759984 +121560,607.8000000016617,-0.057533086945491634 +121561,607.8050000016618,-0.057532670110360895 +121562,607.8100000016619,-0.057532253360351164 +121563,607.815000001662,-0.05753183669544582 +121564,607.8200000016622,-0.05753142011562825 +121565,607.8250000016623,-0.05753100362088185 +121566,607.8300000016624,-0.05753058721119 +121567,607.8350000016625,-0.0575301708865361 +121568,607.8400000016626,-0.05752975464690354 +121569,607.8450000016627,-0.057529338492275726 +121570,607.8500000016628,-0.05752892242263606 +121571,607.8550000016629,-0.05752850643796795 +121572,607.860000001663,-0.05752809053825482 +121573,607.8650000016631,-0.05752767472348006 +121574,607.8700000016632,-0.0575272589936271 +121575,607.8750000016634,-0.05752684334867935 +121576,607.8800000016635,-0.057526427788620244 +121577,607.8850000016636,-0.057526012313433184 +121578,607.8900000016637,-0.05752559692310162 +121579,607.8950000016638,-0.05752518161760898 +121580,607.9000000016639,-0.05752476639693869 +121581,607.905000001664,-0.05752435126107419 +121582,607.9100000016641,-0.057523936209998926 +121583,607.9150000016642,-0.057523521243696335 +121584,607.9200000016643,-0.05752310636214986 +121585,607.9250000016644,-0.057522691565342954 +121586,607.9300000016646,-0.05752227685325907 +121587,607.9350000016647,-0.05752186222588166 +121588,607.9400000016648,-0.0575214476831942 +121589,607.9450000016649,-0.057521033225180124 +121590,607.950000001665,-0.057520618851822906 +121591,607.9550000016651,-0.05752020456310602 +121592,607.9600000016652,-0.05751979035901293 +121593,607.9650000016653,-0.057519376239527104 +121594,607.9700000016654,-0.05751896220463203 +121595,607.9750000016655,-0.057518548254311186 +121596,607.9800000016656,-0.05751813438854803 +121597,607.9850000016658,-0.05751772060732609 +121598,607.9900000016659,-0.05751730691062882 +121599,607.995000001666,-0.057516893298439724 +121600,608.0000000016661,-0.05751647977074229 +121601,608.0050000016662,-0.05751606632752002 +121602,608.0100000016663,-0.057515652968756416 +121603,608.0150000016664,-0.057515239694434984 +121604,608.0200000016665,-0.057514826504539214 +121605,608.0250000016666,-0.05751441339905263 +121606,608.0300000016667,-0.057514000377958736 +121607,608.0350000016668,-0.057513587441241056 +121608,608.040000001667,-0.0575131745888831 +121609,608.0450000016671,-0.057512761820868404 +121610,608.0500000016672,-0.05751234913718048 +121611,608.0550000016673,-0.05751193653780286 +121612,608.0600000016674,-0.05751152402271906 +121613,608.0650000016675,-0.05751111159191263 +121614,608.0700000016676,-0.05751069924536709 +121615,608.0750000016677,-0.057510286983066 +121616,608.0800000016678,-0.057509874804992894 +121617,608.0850000016679,-0.057509462711131304 +121618,608.090000001668,-0.0575090507014648 +121619,608.0950000016682,-0.05750863877597692 +121620,608.1000000016683,-0.05750822693465122 +121621,608.1050000016684,-0.05750781517747126 +121622,608.1100000016685,-0.057507403504420594 +121623,608.1150000016686,-0.05750699191548279 +121624,608.1200000016687,-0.057506580410641404 +121625,608.1250000016688,-0.05750616898988003 +121626,608.1300000016689,-0.057505757653182214 +121627,608.135000001669,-0.05750534640053155 +121628,608.1400000016691,-0.0575049352319116 +121629,608.1450000016692,-0.05750452414730596 +121630,608.1500000016694,-0.057504113146698205 +121631,608.1550000016695,-0.057503702230071924 +121632,608.1600000016696,-0.05750329139741071 +121633,608.1650000016697,-0.057502880648698136 +121634,608.1700000016698,-0.05750246998391784 +121635,608.1750000016699,-0.057502059403053384 +121636,608.18000000167,-0.05750164890608838 +121637,608.1850000016701,-0.057501238493006444 +121638,608.1900000016702,-0.05750082816379117 +121639,608.1950000016703,-0.05750041791842618 +121640,608.2000000016704,-0.05750000775689509 +121641,608.2050000016706,-0.05749959767918151 +121642,608.2100000016707,-0.05749918768526905 +121643,608.2150000016708,-0.05749877777514135 +121644,608.2200000016709,-0.057498367948782034 +121645,608.225000001671,-0.05749795820617472 +121646,608.2300000016711,-0.05749754854730304 +121647,608.2350000016712,-0.057497138972150655 +121648,608.2400000016713,-0.05749672948070118 +121649,608.2450000016714,-0.05749632007293825 +121650,608.2500000016715,-0.05749591074884552 +121651,608.2550000016716,-0.057495501508406634 +121652,608.2600000016718,-0.05749509235160525 +121653,608.2650000016719,-0.05749468327842502 +121654,608.270000001672,-0.05749427428884958 +121655,608.2750000016721,-0.05749386538286261 +121656,608.2800000016722,-0.05749345656044777 +121657,608.2850000016723,-0.05749304782158872 +121658,608.2900000016724,-0.05749263916626913 +121659,608.2950000016725,-0.05749223059447266 +121660,608.3000000016726,-0.057491822106183 +121661,608.3050000016727,-0.05749141370138381 +121662,608.3100000016728,-0.05749100538005878 +121663,608.315000001673,-0.05749059714219159 +121664,608.3200000016731,-0.057490188987765936 +121665,608.3250000016732,-0.0574897809167655 +121666,608.3300000016733,-0.05748937292917397 +121667,608.3350000016734,-0.05748896502497503 +121668,608.3400000016735,-0.0574885572041524 +121669,608.3450000016736,-0.057488149466689765 +121670,608.3500000016737,-0.05748774181257083 +121671,608.3550000016738,-0.05748733424177931 +121672,608.3600000016739,-0.05748692675429891 +121673,608.365000001674,-0.05748651935011334 +121674,608.3700000016742,-0.057486112029206324 +121675,608.3750000016743,-0.05748570479156157 +121676,608.3800000016744,-0.057485297637162806 +121677,608.3850000016745,-0.057484890565993756 +121678,608.3900000016746,-0.05748448357803814 +121679,608.3950000016747,-0.05748407667327969 +121680,608.4000000016748,-0.05748366985170215 +121681,608.4050000016749,-0.05748326311328924 +121682,608.410000001675,-0.057482856458024714 +121683,608.4150000016751,-0.05748244988589231 +121684,608.4200000016752,-0.057482043396875765 +121685,608.4250000016754,-0.05748163699095883 +121686,608.4300000016755,-0.057481230668125265 +121687,608.4350000016756,-0.057480824428358814 +121688,608.4400000016757,-0.05748041827164325 +121689,608.4450000016758,-0.05748001219796231 +121690,608.4500000016759,-0.057479606207299784 +121691,608.455000001676,-0.05747920029963942 +121692,608.4600000016761,-0.057478794474964984 +121693,608.4650000016762,-0.05747838873326026 +121694,608.4700000016763,-0.05747798307450901 +121695,608.4750000016764,-0.05747757749869501 +121696,608.4800000016766,-0.05747717200580206 +121697,608.4850000016767,-0.05747676659581393 +121698,608.4900000016768,-0.0574763612687144 +121699,608.4950000016769,-0.057475956024487275 +121700,608.500000001677,-0.05747555086311634 +121701,608.5050000016771,-0.057475145784585395 +121702,608.5100000016772,-0.05747474078887824 +121703,608.5150000016773,-0.057474335875978666 +121704,608.5200000016774,-0.05747393104587049 +121705,608.5250000016775,-0.05747352629853751 +121706,608.5300000016776,-0.05747312163396353 +121707,608.5350000016778,-0.05747271705213238 +121708,608.5400000016779,-0.057472312553027864 +121709,608.545000001678,-0.057471908136633804 +121710,608.5500000016781,-0.057471503802934025 +121711,608.5550000016782,-0.05747109955191236 +121712,608.5600000016783,-0.05747069538355262 +121713,608.5650000016784,-0.057470291297838656 +121714,608.5700000016785,-0.05746988729475429 +121715,608.5750000016786,-0.05746948337428334 +121716,608.5800000016787,-0.05746907953640968 +121717,608.5850000016788,-0.057468675781117126 +121718,608.590000001679,-0.05746827210838954 +121719,608.5950000016791,-0.05746786851821078 +121720,608.6000000016792,-0.05746746501056468 +121721,608.6050000016793,-0.05746706158543509 +121722,608.6100000016794,-0.057466658242805876 +121723,608.6150000016795,-0.05746625498266091 +121724,608.6200000016796,-0.05746585180498404 +121725,608.6250000016797,-0.05746544870975914 +121726,608.6300000016798,-0.05746504569697008 +121727,608.6350000016799,-0.05746464276660073 +121728,608.64000000168,-0.05746423991863496 +121729,608.6450000016802,-0.05746383715305666 +121730,608.6500000016803,-0.0574634344698497 +121731,608.6550000016804,-0.057463031868997975 +121732,608.6600000016805,-0.05746262935048536 +121733,608.6650000016806,-0.05746222691429574 +121734,608.6700000016807,-0.05746182456041304 +121735,608.6750000016808,-0.05746142228882111 +121736,608.6800000016809,-0.057461020099503886 +121737,608.685000001681,-0.05746061799244526 +121738,608.6900000016811,-0.05746021596762914 +121739,608.6950000016813,-0.05745981402503942 +121740,608.7000000016814,-0.05745941216466002 +121741,608.7050000016815,-0.05745901038647486 +121742,608.7100000016816,-0.057458608690467844 +121743,608.7150000016817,-0.0574582070766229 +121744,608.7200000016818,-0.05745780554492395 +121745,608.7250000016819,-0.0574574040953549 +121746,608.730000001682,-0.057457002727899706 +121747,608.7350000016821,-0.0574566014425423 +121748,608.7400000016822,-0.05745620023926659 +121749,608.7450000016823,-0.05745579911805653 +121750,608.7500000016825,-0.05745539807889607 +121751,608.7550000016826,-0.05745499712176914 +121752,608.7600000016827,-0.057454596246659675 +121753,608.7650000016828,-0.05745419545355165 +121754,608.7700000016829,-0.057453794742428996 +121755,608.775000001683,-0.05745339411327568 +121756,608.7800000016831,-0.05745299356607565 +121757,608.7850000016832,-0.057452593100812875 +121758,608.7900000016833,-0.05745219271747132 +121759,608.7950000016834,-0.05745179241603494 +121760,608.8000000016835,-0.057451392196487705 +121761,608.8050000016837,-0.0574509920588136 +121762,608.8100000016838,-0.05745059200299659 +121763,608.8150000016839,-0.05745019202902066 +121764,608.820000001684,-0.05744979213686979 +121765,608.8250000016841,-0.05744939232652797 +121766,608.8300000016842,-0.05744899259797917 +121767,608.8350000016843,-0.057448592951207404 +121768,608.8400000016844,-0.05744819338619664 +121769,608.8450000016845,-0.05744779390293089 +121770,608.8500000016846,-0.05744739450139415 +121771,608.8550000016847,-0.05744699518157042 +121772,608.8600000016849,-0.0574465959434437 +121773,608.865000001685,-0.057446196786998 +121774,608.8700000016851,-0.05744579771221734 +121775,608.8750000016852,-0.05744539871908573 +121776,608.8800000016853,-0.05744499980758718 +121777,608.8850000016854,-0.057444600977705707 +121778,608.8900000016855,-0.05744420222942535 +121779,608.8950000016856,-0.057443803562730114 +121780,608.9000000016857,-0.057443404977604036 +121781,608.9050000016858,-0.05744300647403114 +121782,608.910000001686,-0.05744260805199546 +121783,608.915000001686,-0.057442209711481056 +121784,608.9200000016862,-0.05744181145247195 +121785,608.9250000016863,-0.05744141327495218 +121786,608.9300000016864,-0.057441015178905805 +121787,608.9350000016865,-0.057440617164316865 +121788,608.9400000016866,-0.05744021923116941 +121789,608.9450000016867,-0.05743982137944751 +121790,608.9500000016868,-0.057439423609135204 +121791,608.9550000016869,-0.05743902592021655 +121792,608.960000001687,-0.057438628312675634 +121793,608.9650000016871,-0.05743823078649651 +121794,608.9700000016873,-0.05743783334166324 +121795,608.9750000016874,-0.057437435978159895 +121796,608.9800000016875,-0.057437038695970555 +121797,608.9850000016876,-0.0574366414950793 +121798,608.9900000016877,-0.05743624437547021 +121799,608.9950000016878,-0.05743584733712737 +121800,609.0000000016879,-0.057435450380034864 +121801,609.005000001688,-0.057435053504176777 +121802,609.0100000016881,-0.05743465670953722 +121803,609.0150000016882,-0.057434259996100266 +121804,609.0200000016883,-0.05743386336385002 +121805,609.0250000016885,-0.05743346681277059 +121806,609.0300000016886,-0.05743307034284608 +121807,609.0350000016887,-0.05743267395406059 +121808,609.0400000016888,-0.05743227764639824 +121809,609.0450000016889,-0.05743188141984312 +121810,609.050000001689,-0.05743148527437937 +121811,609.0550000016891,-0.0574310892099911 +121812,609.0600000016892,-0.05743069322666243 +121813,609.0650000016893,-0.05743029732437748 +121814,609.0700000016894,-0.05742990150312039 +121815,609.0750000016895,-0.05742950576287528 +121816,609.0800000016897,-0.05742911010362629 +121817,609.0850000016898,-0.05742871452535755 +121818,609.0900000016899,-0.05742831902805321 +121819,609.09500000169,-0.05742792361169739 +121820,609.1000000016901,-0.05742752827627426 +121821,609.1050000016902,-0.05742713302176796 +121822,609.1100000016903,-0.05742673784816263 +121823,609.1150000016904,-0.057426342755442436 +121824,609.1200000016905,-0.05742594774359152 +121825,609.1250000016906,-0.057425552812594066 +121826,609.1300000016907,-0.05742515796243421 +121827,609.1350000016909,-0.057424763193096126 +121828,609.140000001691,-0.057424368504563984 +121829,609.1450000016911,-0.05742397389682197 +121830,609.1500000016912,-0.057423579369854226 +121831,609.1550000016913,-0.057423184923644954 +121832,609.1600000016914,-0.057422790558178324 +121833,609.1650000016915,-0.05742239627343852 +121834,609.1700000016916,-0.05742200206940973 +121835,609.1750000016917,-0.05742160794607614 +121836,609.1800000016918,-0.05742121390342195 +121837,609.185000001692,-0.057420819941431334 +121838,609.190000001692,-0.0574204260600885 +121839,609.1950000016922,-0.05742003225937767 +121840,609.2000000016923,-0.057419638539283016 +121841,609.2050000016924,-0.05741924489978875 +121842,609.2100000016925,-0.05741885134087909 +121843,609.2150000016926,-0.057418457862538234 +121844,609.2200000016927,-0.05741806446475042 +121845,609.2250000016928,-0.057417671147499835 +121846,609.2300000016929,-0.057417277910770725 +121847,609.235000001693,-0.0574168847545473 +121848,609.2400000016931,-0.05741649167881378 +121849,609.2450000016933,-0.05741609868355441 +121850,609.2500000016934,-0.05741570576875341 +121851,609.2550000016935,-0.05741531293439504 +121852,609.2600000016936,-0.0574149201804635 +121853,609.2650000016937,-0.05741452750694305 +121854,609.2700000016938,-0.05741413491381794 +121855,609.2750000016939,-0.0574137424010724 +121856,609.280000001694,-0.057413349968690686 +121857,609.2850000016941,-0.05741295761665705 +121858,609.2900000016942,-0.05741256534495575 +121859,609.2950000016943,-0.05741217315357105 +121860,609.3000000016945,-0.05741178104248721 +121861,609.3050000016946,-0.05741138901168847 +121862,609.3100000016947,-0.057410997061159125 +121863,609.3150000016948,-0.05741060519088343 +121864,609.3200000016949,-0.057410213400845664 +121865,609.325000001695,-0.05740982169103011 +121866,609.3300000016951,-0.05740943006142102 +121867,609.3350000016952,-0.0574090385120027 +121868,609.3400000016953,-0.057408647042759414 +121869,609.3450000016954,-0.057408255653675466 +121870,609.3500000016955,-0.057407864344735146 +121871,609.3550000016957,-0.05740747311592273 +121872,609.3600000016958,-0.05740708196722252 +121873,609.3650000016959,-0.05740669089861882 +121874,609.370000001696,-0.05740629991009594 +121875,609.3750000016961,-0.05740590900163817 +121876,609.3800000016962,-0.05740551817322981 +121877,609.3850000016963,-0.05740512742485518 +121878,609.3900000016964,-0.0574047367564986 +121879,609.3950000016965,-0.057404346168144375 +121880,609.4000000016966,-0.05740395565977683 +121881,609.4050000016967,-0.05740356523138029 +121882,609.4100000016969,-0.057403174882939056 +121883,609.415000001697,-0.05740278461443748 +121884,609.4200000016971,-0.057402394425859884 +121885,609.4250000016972,-0.05740200431719061 +121886,609.4300000016973,-0.057401614288413984 +121887,609.4350000016974,-0.05740122433951434 +121888,609.4400000016975,-0.05740083447047603 +121889,609.4450000016976,-0.05740044468128339 +121890,609.4500000016977,-0.05740005497192078 +121891,609.4550000016978,-0.05739966534237254 +121892,609.460000001698,-0.05739927579262303 +121893,609.4650000016981,-0.05739888632265659 +121894,609.4700000016982,-0.057398496932457604 +121895,609.4750000016983,-0.05739810762201041 +121896,609.4800000016984,-0.057397718391299396 +121897,609.4850000016985,-0.057397329240308895 +121898,609.4900000016986,-0.057396940169023296 +121899,609.4950000016987,-0.05739655117742699 +121900,609.5000000016988,-0.057396162265504334 +121901,609.5050000016989,-0.05739577343323971 +121902,609.510000001699,-0.0573953846806175 +121903,609.5150000016991,-0.05739499600762209 +121904,609.5200000016993,-0.05739460741423785 +121905,609.5250000016994,-0.057394218900449205 +121906,609.5300000016995,-0.05739383046624053 +121907,609.5350000016996,-0.05739344211159623 +121908,609.5400000016997,-0.05739305383650069 +121909,609.5450000016998,-0.05739266564093832 +121910,609.5500000016999,-0.057392277524893516 +121911,609.5550000017,-0.0573918894883507 +121912,609.5600000017001,-0.05739150153129427 +121913,609.5650000017002,-0.05739111365370864 +121914,609.5700000017004,-0.057390725855578244 +121915,609.5750000017005,-0.05739033813688748 +121916,609.5800000017006,-0.05738995049762079 +121917,609.5850000017007,-0.05738956293776258 +121918,609.5900000017008,-0.057389175457297284 +121919,609.5950000017009,-0.05738878805620934 +121920,609.600000001701,-0.057388400734483175 +121921,609.6050000017011,-0.057388013492103214 +121922,609.6100000017012,-0.05738762632905392 +121923,609.6150000017013,-0.05738723924531972 +121924,609.6200000017014,-0.057386852240885064 +121925,609.6250000017016,-0.0573864653157344 +121926,609.6300000017017,-0.057386078469852164 +121927,609.6350000017018,-0.05738569170322284 +121928,609.6400000017019,-0.057385305015830855 +121929,609.645000001702,-0.057384918407660676 +121930,609.6500000017021,-0.05738453187869678 +121931,609.6550000017022,-0.057384145428923616 +121932,609.6600000017023,-0.05738375905832567 +121933,609.6650000017024,-0.05738337276688739 +121934,609.6700000017025,-0.05738298655459326 +121935,609.6750000017026,-0.05738260042142775 +121936,609.6800000017028,-0.05738221436737535 +121937,609.6850000017029,-0.05738182839242054 +121938,609.690000001703,-0.05738144249654781 +121939,609.6950000017031,-0.05738105667974162 +121940,609.7000000017032,-0.0573806709419865 +121941,609.7050000017033,-0.05738028528326691 +121942,609.7100000017034,-0.057379899703567376 +121943,609.7150000017035,-0.05737951420287237 +121944,609.7200000017036,-0.05737912878116642 +121945,609.7250000017037,-0.057378743438434 +121946,609.7300000017038,-0.05737835817465964 +121947,609.735000001704,-0.05737797298982784 +121948,609.7400000017041,-0.05737758788392313 +121949,609.7450000017042,-0.057377202856930015 +121950,609.7500000017043,-0.057376817908833005 +121951,609.7550000017044,-0.05737643303961664 +121952,609.7600000017045,-0.05737604824926544 +121953,609.7650000017046,-0.05737566353776393 +121954,609.7700000017047,-0.05737527890509664 +121955,609.7750000017048,-0.0573748943512481 +121956,609.7800000017049,-0.05737450987620285 +121957,609.785000001705,-0.057374125479945436 +121958,609.7900000017052,-0.05737374116246039 +121959,609.7950000017053,-0.05737335692373226 +121960,609.8000000017054,-0.057372972763745596 +121961,609.8050000017055,-0.057372588682484946 +121962,609.8100000017056,-0.057372204679934855 +121963,609.8150000017057,-0.0573718207560799 +121964,609.8200000017058,-0.05737143691090462 +121965,609.8250000017059,-0.057371053144393586 +121966,609.830000001706,-0.05737066945653136 +121967,609.8350000017061,-0.05737028584730251 +121968,609.8400000017062,-0.057369902316691625 +121969,609.8450000017064,-0.05736951886468326 +121970,609.8500000017065,-0.057369135491261984 +121971,609.8550000017066,-0.05736875219641239 +121972,609.8600000017067,-0.057368368980119044 +121973,609.8650000017068,-0.057367985842366555 +121974,609.8700000017069,-0.05736760278313949 +121975,609.875000001707,-0.05736721980242246 +121976,609.8800000017071,-0.05736683690020003 +121977,609.8850000017072,-0.05736645407645682 +121978,609.8900000017073,-0.05736607133117741 +121979,609.8950000017074,-0.05736568866434642 +121980,609.9000000017076,-0.05736530607594844 +121981,609.9050000017077,-0.05736492356596808 +121982,609.9100000017078,-0.05736454113438997 +121983,609.9150000017079,-0.057364158781198694 +121984,609.920000001708,-0.05736377650637888 +121985,609.9250000017081,-0.057363394309915154 +121986,609.9300000017082,-0.05736301219179212 +121987,609.9350000017083,-0.05736263015199442 +121988,609.9400000017084,-0.05736224819050668 +121989,609.9450000017085,-0.05736186630731352 +121990,609.9500000017086,-0.05736148450239958 +121991,609.9550000017088,-0.05736110277574949 +121992,609.9600000017089,-0.057360721127347886 +121993,609.965000001709,-0.05736033955717943 +121994,609.9700000017091,-0.057359958065228756 +121995,609.9750000017092,-0.0573595766514805 +121996,609.9800000017093,-0.057359195315919306 +121997,609.9850000017094,-0.05735881405852986 +121998,609.9900000017095,-0.05735843287929679 +121999,609.9950000017096,-0.05735805177820476 +122000,610.0000000017097,-0.057357670755238434 +122001,610.0050000017098,-0.05735728981038247 +122002,610.01000000171,-0.05735690894362155 +122003,610.0150000017101,-0.05735652815494032 +122004,610.0200000017102,-0.05735614744432347 +122005,610.0250000017103,-0.05735576681175567 +122006,610.0300000017104,-0.05735538625722161 +122007,610.0350000017105,-0.05735500578070595 +122008,610.0400000017106,-0.057354625382193394 +122009,610.0450000017107,-0.057354245061668606 +122010,610.0500000017108,-0.0573538648191163 +122011,610.0550000017109,-0.057353484654521156 +122012,610.060000001711,-0.05735310456786786 +122013,610.0650000017112,-0.05735272455914112 +122014,610.0700000017113,-0.057352344628325655 +122015,610.0750000017114,-0.05735196477540615 +122016,610.0800000017115,-0.05735158500036729 +122017,610.0850000017116,-0.05735120530319383 +122018,610.0900000017117,-0.05735082568387044 +122019,610.0950000017118,-0.057350446142381856 +122020,610.1000000017119,-0.05735006667871279 +122021,610.105000001712,-0.05734968729284798 +122022,610.1100000017121,-0.05734930798477213 +122023,610.1150000017122,-0.057348928754469966 +122024,610.1200000017124,-0.05734854960192622 +122025,610.1250000017125,-0.05734817052712563 +122026,610.1300000017126,-0.057347791530052934 +122027,610.1350000017127,-0.05734741261069286 +122028,610.1400000017128,-0.05734703376903015 +122029,610.1450000017129,-0.05734665500504954 +122030,610.150000001713,-0.05734627631873579 +122031,610.1550000017131,-0.05734589771007363 +122032,610.1600000017132,-0.05734551917904783 +122033,610.1650000017133,-0.05734514072564313 +122034,610.1700000017134,-0.05734476234984431 +122035,610.1750000017136,-0.057344384051636096 +122036,610.1800000017137,-0.05734400583100329 +122037,610.1850000017138,-0.05734362768793062 +122038,610.1900000017139,-0.05734324962240288 +122039,610.195000001714,-0.05734287163440483 +122040,610.2000000017141,-0.05734249372392125 +122041,610.2050000017142,-0.057342115890936914 +122042,610.2100000017143,-0.0573417381354366 +122043,610.2150000017144,-0.05734136045740509 +122044,610.2200000017145,-0.05734098285682717 +122045,610.2250000017146,-0.057340605333687636 +122046,610.2300000017148,-0.057340227887971267 +122047,610.2350000017149,-0.05733985051966286 +122048,610.240000001715,-0.05733947322874721 +122049,610.2450000017151,-0.057339096015209125 +122050,610.2500000017152,-0.05733871887903339 +122051,610.2550000017153,-0.057338341820204836 +122052,610.2600000017154,-0.05733796483870825 +122053,610.2650000017155,-0.05733758793452844 +122054,610.2700000017156,-0.05733721110765025 +122055,610.2750000017157,-0.05733683435805847 +122056,610.2800000017158,-0.05733645768573791 +122057,610.285000001716,-0.05733608109067342 +122058,610.2900000017161,-0.0573357045728498 +122059,610.2950000017162,-0.057335328132251874 +122060,610.3000000017163,-0.0573349517688645 +122061,610.3050000017164,-0.05733457548267249 +122062,610.3100000017165,-0.05733419927366069 +122063,610.3150000017166,-0.05733382314181394 +122064,610.3200000017167,-0.057333447087117066 +122065,610.3250000017168,-0.05733307110955492 +122066,610.3300000017169,-0.05733269520911236 +122067,610.335000001717,-0.05733231938577421 +122068,610.3400000017172,-0.05733194363952535 +122069,610.3450000017173,-0.05733156797035062 +122070,610.3500000017174,-0.05733119237823489 +122071,610.3550000017175,-0.057330816863163006 +122072,610.3600000017176,-0.057330441425119845 +122073,610.3650000017177,-0.05733006606409026 +122074,610.3700000017178,-0.057329690780059124 +122075,610.3750000017179,-0.05732931557301132 +122076,610.380000001718,-0.057328940442931714 +122077,610.3850000017181,-0.05732856538980518 +122078,610.3900000017182,-0.057328190413616614 +122079,610.3950000017184,-0.05732781551435089 +122080,610.4000000017185,-0.057327440691992894 +122081,610.4050000017186,-0.0573270659465275 +122082,610.4100000017187,-0.057326691277939615 +122083,610.4150000017188,-0.05732631668621414 +122084,610.4200000017189,-0.05732594217133597 +122085,610.425000001719,-0.057325567733289985 +122086,610.4300000017191,-0.05732519337206111 +122087,610.4350000017192,-0.05732481908763424 +122088,610.4400000017193,-0.05732444487999429 +122089,610.4450000017194,-0.05732407074912617 +122090,610.4500000017196,-0.05732369669501479 +122091,610.4550000017197,-0.05732332271764507 +122092,610.4600000017198,-0.05732294881700193 +122093,610.4650000017199,-0.057322574993070294 +122094,610.47000000172,-0.05732220124583508 +122095,610.4750000017201,-0.0573218275752812 +122096,610.4800000017202,-0.05732145398139362 +122097,610.4850000017203,-0.05732108046415725 +122098,610.4900000017204,-0.05732070702355704 +122099,610.4950000017205,-0.057320333659577914 +122100,610.5000000017207,-0.05731996037220483 +122101,610.5050000017208,-0.057319587161422735 +122102,610.5100000017209,-0.05731921402721656 +122103,610.515000001721,-0.05731884096957126 +122104,610.5200000017211,-0.05731846798847178 +122105,610.5250000017212,-0.057318095083903106 +122106,610.5300000017213,-0.057317722255850155 +122107,610.5350000017214,-0.057317349504297926 +122108,610.5400000017215,-0.05731697682923136 +122109,610.5450000017216,-0.057316604230635435 +122110,610.5500000017217,-0.05731623170849511 +122111,610.5550000017219,-0.05731585926279537 +122112,610.560000001722,-0.057315486893521186 +122113,610.5650000017221,-0.057315114600657524 +122114,610.5700000017222,-0.05731474238418938 +122115,610.5750000017223,-0.05731437024410173 +122116,610.5800000017224,-0.057313998180379556 +122117,610.5850000017225,-0.057313626193007866 +122118,610.5900000017226,-0.05731325428197164 +122119,610.5950000017227,-0.05731288244725586 +122120,610.6000000017228,-0.05731251068884555 +122121,610.6050000017229,-0.05731213900672569 +122122,610.610000001723,-0.05731176740088128 +122123,610.6150000017232,-0.05731139587129735 +122124,610.6200000017233,-0.05731102441795889 +122125,610.6250000017234,-0.05731065304085091 +122126,610.6300000017235,-0.057310281739958426 +122127,610.6350000017236,-0.05730991051526647 +122128,610.6400000017237,-0.05730953936676004 +122129,610.6450000017238,-0.05730916829442415 +122130,610.6500000017239,-0.05730879729824386 +122131,610.655000001724,-0.05730842637820418 +122132,610.6600000017241,-0.05730805553429014 +122133,610.6650000017243,-0.057307684766486774 +122134,610.6700000017244,-0.05730731407477912 +122135,610.6750000017245,-0.05730694345915221 +122136,610.6800000017246,-0.05730657291959109 +122137,610.6850000017247,-0.05730620245608081 +122138,610.6900000017248,-0.05730583206860642 +122139,610.6950000017249,-0.05730546175715295 +122140,610.700000001725,-0.05730509152170548 +122141,610.7050000017251,-0.05730472136224904 +122142,610.7100000017252,-0.057304351278768706 +122143,610.7150000017253,-0.05730398127124954 +122144,610.7200000017255,-0.0573036113396766 +122145,610.7250000017256,-0.05730324148403494 +122146,610.7300000017257,-0.05730287170430965 +122147,610.7350000017258,-0.05730250200048579 +122148,610.7400000017259,-0.05730213237254844 +122149,610.745000001726,-0.05730176282048268 +122150,610.7500000017261,-0.05730139334427358 +122151,610.7550000017262,-0.05730102394390623 +122152,610.7600000017263,-0.05730065461936572 +122153,610.7650000017264,-0.05730028537063713 +122154,610.7700000017265,-0.05729991619770556 +122155,610.7750000017267,-0.0572995471005561 +122156,610.7800000017268,-0.05729917807917384 +122157,610.7850000017269,-0.0572988091335439 +122158,610.790000001727,-0.05729844026365136 +122159,610.7950000017271,-0.05729807146948133 +122160,610.8000000017272,-0.057297702751018934 +122161,610.8050000017273,-0.05729733410824926 +122162,610.8100000017274,-0.05729696554115745 +122163,610.8150000017275,-0.057296597049728594 +122164,610.8200000017276,-0.05729622863394782 +122165,610.8250000017277,-0.057295860293800245 +122166,610.8300000017279,-0.057295492029271006 +122167,610.835000001728,-0.05729512384034523 +122168,610.8400000017281,-0.05729475572700804 +122169,610.8450000017282,-0.05729438768924456 +122170,610.8500000017283,-0.05729401972703994 +122171,610.8550000017284,-0.057293651840379316 +122172,610.8600000017285,-0.05729328402924782 +122173,610.8650000017286,-0.0572929162936306 +122174,610.8700000017287,-0.05729254863351281 +122175,610.8750000017288,-0.0572921810488796 +122176,610.880000001729,-0.057291813539716116 +122177,610.885000001729,-0.05729144610600751 +122178,610.8900000017292,-0.05729107874773895 +122179,610.8950000017293,-0.05729071146489558 +122180,610.9000000017294,-0.05729034425746258 +122181,610.9050000017295,-0.0572899771254251 +122182,610.9100000017296,-0.057289610068768315 +122183,610.9150000017297,-0.057289243087477404 +122184,610.9200000017298,-0.05728887618153753 +122185,610.9250000017299,-0.05728850935093388 +122186,610.93000000173,-0.05728814259565164 +122187,610.9350000017301,-0.057287775915675965 +122188,610.9400000017303,-0.05728740931099206 +122189,610.9450000017304,-0.05728704278158511 +122190,610.9500000017305,-0.057286676327440306 +122191,610.9550000017306,-0.057286309948542835 +122192,610.9600000017307,-0.05728594364487791 +122193,610.9650000017308,-0.0572855774164307 +122194,610.9700000017309,-0.05728521126318643 +122195,610.975000001731,-0.057284845185130294 +122196,610.9800000017311,-0.05728447918224751 +122197,610.9850000017312,-0.057284113254523275 +122198,610.9900000017313,-0.05728374740194282 +122199,610.9950000017315,-0.05728338162449134 +122200,611.0000000017316,-0.05728301592215407 +122201,611.0050000017317,-0.05728265029491621 +122202,611.0100000017318,-0.057282284742763 +122203,611.0150000017319,-0.05728191926567966 +122204,611.020000001732,-0.05728155386365143 +122205,611.0250000017321,-0.05728118853666352 +122206,611.0300000017322,-0.05728082328470119 +122207,611.0350000017323,-0.057280458107749656 +122208,611.0400000017324,-0.05728009300579416 +122209,611.0450000017325,-0.05727972797881995 +122210,611.0500000017327,-0.05727936302681228 +122211,611.0550000017328,-0.05727899814975638 +122212,611.0600000017329,-0.05727863334763751 +122213,611.065000001733,-0.05727826862044093 +122214,611.0700000017331,-0.057277903968151876 +122215,611.0750000017332,-0.05727753939075564 +122216,611.0800000017333,-0.057277174888237456 +122217,611.0850000017334,-0.0572768104605826 +122218,611.0900000017335,-0.057276446107776324 +122219,611.0950000017336,-0.05727608182980391 +122220,611.1000000017337,-0.057275717626650645 +122221,611.1050000017339,-0.05727535349830178 +122222,611.110000001734,-0.057274989444742616 +122223,611.1150000017341,-0.057274625465958406 +122224,611.1200000017342,-0.05727426156193445 +122225,611.1250000017343,-0.05727389773265604 +122226,611.1300000017344,-0.057273533978108464 +122227,611.1350000017345,-0.057273170298277 +122228,611.1400000017346,-0.057272806693146945 +122229,611.1450000017347,-0.057272443162703614 +122230,611.1500000017348,-0.05727207970693229 +122231,611.155000001735,-0.057271716325818275 +122232,611.160000001735,-0.057271353019346875 +122233,611.1650000017352,-0.05727098978750341 +122234,611.1700000017353,-0.057270626630273186 +122235,611.1750000017354,-0.0572702635476415 +122236,611.1800000017355,-0.057269900539593695 +122237,611.1850000017356,-0.05726953760611506 +122238,611.1900000017357,-0.05726917474719096 +122239,611.1950000017358,-0.057268811962806684 +122240,611.2000000017359,-0.057268449252947565 +122241,611.205000001736,-0.057268086617598926 +122242,611.2100000017361,-0.05726772405674612 +122243,611.2150000017363,-0.05726736157037448 +122244,611.2200000017364,-0.05726699915846932 +122245,611.2250000017365,-0.05726663682101601 +122246,611.2300000017366,-0.05726627455799987 +122247,611.2350000017367,-0.05726591236940625 +122248,611.2400000017368,-0.05726555025522052 +122249,611.2450000017369,-0.05726518821542801 +122250,611.250000001737,-0.057264826250014084 +122251,611.2550000017371,-0.05726446435896409 +122252,611.2600000017372,-0.057264102542263405 +122253,611.2650000017373,-0.05726374079989738 +122254,611.2700000017375,-0.05726337913185138 +122255,611.2750000017376,-0.05726301753811078 +122256,611.2800000017377,-0.057262656018660936 +122257,611.2850000017378,-0.05726229457348723 +122258,611.2900000017379,-0.05726193320257504 +122259,611.295000001738,-0.05726157190590973 +122260,611.3000000017381,-0.057261210683476706 +122261,611.3050000017382,-0.057260849535261345 +122262,611.3100000017383,-0.05726048846124902 +122263,611.3150000017384,-0.05726012746142514 +122264,611.3200000017385,-0.05725976653577509 +122265,611.3250000017387,-0.05725940568428425 +122266,611.3300000017388,-0.057259044906938034 +122267,611.3350000017389,-0.05725868420372183 +122268,611.340000001739,-0.05725832357462106 +122269,611.3450000017391,-0.05725796301962112 +122270,611.3500000017392,-0.0572576025387074 +122271,611.3550000017393,-0.05725724213186534 +122272,611.3600000017394,-0.057256881799080346 +122273,611.3650000017395,-0.05725652154033783 +122274,611.3700000017396,-0.05725616135562322 +122275,611.3750000017397,-0.057255801244921925 +122276,611.3800000017399,-0.05725544120821938 +122277,611.38500000174,-0.05725508124550101 +122278,611.3900000017401,-0.057254721356752226 +122279,611.3950000017402,-0.0572543615419585 +122280,611.4000000017403,-0.05725400180110525 +122281,611.4050000017404,-0.0572536421341779 +122282,611.4100000017405,-0.057253282541161896 +122283,611.4150000017406,-0.0572529230220427 +122284,611.4200000017407,-0.05725256357680574 +122285,611.4250000017408,-0.057252204205436474 +122286,611.430000001741,-0.057251844907920346 +122287,611.4350000017411,-0.05725148568424283 +122288,611.4400000017412,-0.057251126534389345 +122289,611.4450000017413,-0.057250767458345383 +122290,611.4500000017414,-0.05725040845609639 +122291,611.4550000017415,-0.057250049527627855 +122292,611.4600000017416,-0.05724969067292523 +122293,611.4650000017417,-0.05724933189197398 +122294,611.4700000017418,-0.05724897318475959 +122295,611.4750000017419,-0.057248614551267535 +122296,611.480000001742,-0.05724825599148329 +122297,611.4850000017422,-0.05724789750539233 +122298,611.4900000017423,-0.05724753909298015 +122299,611.4950000017424,-0.05724718075423222 +122300,611.5000000017425,-0.05724682248913405 +122301,611.5050000017426,-0.05724646429767113 +122302,611.5100000017427,-0.05724610617982894 +122303,611.5150000017428,-0.057245748135592994 +122304,611.5200000017429,-0.05724539016494878 +122305,611.525000001743,-0.0572450322678818 +122306,611.5300000017431,-0.057244674444377565 +122307,611.5350000017432,-0.0572443166944216 +122308,611.5400000017434,-0.05724395901799939 +122309,611.5450000017435,-0.05724360141509646 +122310,611.5500000017436,-0.05724324388569833 +122311,611.5550000017437,-0.057242886429790515 +122312,611.5600000017438,-0.057242529047358534 +122313,611.5650000017439,-0.05724217173838791 +122314,611.570000001744,-0.05724181450286419 +122315,611.5750000017441,-0.057241457340772885 +122316,611.5800000017442,-0.05724110025209953 +122317,611.5850000017443,-0.05724074323682966 +122318,611.5900000017444,-0.057240386294948806 +122319,611.5950000017446,-0.05724002942644252 +122320,611.6000000017447,-0.05723967263129635 +122321,611.6050000017448,-0.05723931590949583 +122322,611.6100000017449,-0.05723895926102651 +122323,611.615000001745,-0.05723860268587394 +122324,611.6200000017451,-0.0572382461840237 +122325,611.6250000017452,-0.05723788975546131 +122326,611.6300000017453,-0.057237533400172354 +122327,611.6350000017454,-0.057237177118142385 +122328,611.6400000017455,-0.057236820909356965 +122329,611.6450000017456,-0.057236464773801655 +122330,611.6500000017458,-0.05723610871146205 +122331,611.6550000017459,-0.057235752722323695 +122332,611.660000001746,-0.05723539680637218 +122333,611.6650000017461,-0.057235040963593095 +122334,611.6700000017462,-0.057234685193972 +122335,611.6750000017463,-0.057234329497494484 +122336,611.6800000017464,-0.05723397387414613 +122337,611.6850000017465,-0.057233618323912536 +122338,611.6900000017466,-0.0572332628467793 +122339,611.6950000017467,-0.057232907442732 +122340,611.7000000017468,-0.057232552111756235 +122341,611.705000001747,-0.05723219685383761 +122342,611.7100000017471,-0.057231841668961725 +122343,611.7150000017472,-0.05723148655711418 +122344,611.7200000017473,-0.057231131518280604 +122345,611.7250000017474,-0.057230776552446586 +122346,611.7300000017475,-0.05723042165959774 +122347,611.7350000017476,-0.0572300668397197 +122348,611.7400000017477,-0.05722971209279807 +122349,611.7450000017478,-0.05722935741881847 +122350,611.7500000017479,-0.057229002817766515 +122351,611.755000001748,-0.05722864828962784 +122352,611.7600000017482,-0.057228293834388086 +122353,611.7650000017483,-0.057227939452032875 +122354,611.7700000017484,-0.05722758514254784 +122355,611.7750000017485,-0.057227230905918615 +122356,611.7800000017486,-0.05722687674213086 +122357,611.7850000017487,-0.05722652265117019 +122358,611.7900000017488,-0.057226168633022254 +122359,611.7950000017489,-0.057225814687672724 +122360,611.800000001749,-0.05722546081510723 +122361,611.8050000017491,-0.05722510701531142 +122362,611.8100000017492,-0.05722475328827097 +122363,611.8150000017494,-0.05722439963397153 +122364,611.8200000017495,-0.057224046052398746 +122365,611.8250000017496,-0.057223692543538304 +122366,611.8300000017497,-0.05722333910737586 +122367,611.8350000017498,-0.05722298574389709 +122368,611.8400000017499,-0.05722263245308764 +122369,611.84500000175,-0.05722227923493321 +122370,611.8500000017501,-0.05722192608941947 +122371,611.8550000017502,-0.05722157301653211 +122372,611.8600000017503,-0.0572212200162568 +122373,611.8650000017504,-0.057220867088579215 +122374,611.8700000017506,-0.057220514233485065 +122375,611.8750000017507,-0.057220161450960025 +122376,611.8800000017508,-0.057219808740989794 +122377,611.8850000017509,-0.05721945610356008 +122378,611.890000001751,-0.05721910353865656 +122379,611.8950000017511,-0.05721875104626494 +122380,611.9000000017512,-0.05721839862637093 +122381,611.9050000017513,-0.05721804627896023 +122382,611.9100000017514,-0.057217694004018556 +122383,611.9150000017515,-0.05721734180153162 +122384,611.9200000017516,-0.05721698967148513 +122385,611.9250000017518,-0.05721663761386481 +122386,611.9300000017519,-0.05721628562865637 +122387,611.935000001752,-0.05721593371584554 +122388,611.9400000017521,-0.05721558187541804 +122389,611.9450000017522,-0.057215230107359606 +122390,611.9500000017523,-0.05721487841165596 +122391,611.9550000017524,-0.05721452678829283 +122392,611.9600000017525,-0.05721417523725596 +122393,611.9650000017526,-0.057213823758531096 +122394,611.9700000017527,-0.05721347235210395 +122395,611.9750000017528,-0.05721312101796029 +122396,611.980000001753,-0.057212769756085864 +122397,611.9850000017531,-0.05721241856646641 +122398,611.9900000017532,-0.05721206744908768 +122399,611.9950000017533,-0.05721171640393544 +122400,612.0000000017534,-0.05721136543099543 +122401,612.0050000017535,-0.05721101453025342 +122402,612.0100000017536,-0.05721066370169517 +122403,612.0150000017537,-0.057210312945306444 +122404,612.0200000017538,-0.05720996226107301 +122405,612.0250000017539,-0.05720961164898063 +122406,612.030000001754,-0.057209261109015086 +122407,612.0350000017542,-0.05720891064116217 +122408,612.0400000017543,-0.05720856024540761 +122409,612.0450000017544,-0.05720820992173724 +122410,612.0500000017545,-0.057207859670136814 +122411,612.0550000017546,-0.05720750949059212 +122412,612.0600000017547,-0.05720715938308895 +122413,612.0650000017548,-0.0572068093476131 +122414,612.0700000017549,-0.057206459384150365 +122415,612.075000001755,-0.05720610949268652 +122416,612.0800000017551,-0.057205759673207394 +122417,612.0850000017552,-0.05720540992569877 +122418,612.0900000017554,-0.05720506025014646 +122419,612.0950000017555,-0.057204710646536275 +122420,612.1000000017556,-0.057204361114854 +122421,612.1050000017557,-0.057204011655085464 +122422,612.1100000017558,-0.05720366226721649 +122423,612.1150000017559,-0.05720331295123289 +122424,612.120000001756,-0.057202963707120476 +122425,612.1250000017561,-0.05720261453486508 +122426,612.1300000017562,-0.05720226543445253 +122427,612.1350000017563,-0.05720191640586864 +122428,612.1400000017564,-0.05720156744909926 +122429,612.1450000017566,-0.0572012185641302 +122430,612.1500000017567,-0.05720086975094732 +122431,612.1550000017568,-0.057200521009536445 +122432,612.1600000017569,-0.05720017233988341 +122433,612.165000001757,-0.057199823741974076 +122434,612.1700000017571,-0.057199475215794264 +122435,612.1750000017572,-0.05719912676132985 +122436,612.1800000017573,-0.05719877837856669 +122437,612.1850000017574,-0.057198430067490605 +122438,612.1900000017575,-0.057198081828087485 +122439,612.1950000017576,-0.05719773366034316 +122440,612.2000000017578,-0.057197385564243516 +122441,612.2050000017579,-0.05719703753977441 +122442,612.210000001758,-0.05719668958692172 +122443,612.2150000017581,-0.057196341705671304 +122444,612.2200000017582,-0.05719599389600903 +122445,612.2250000017583,-0.057195646157920776 +122446,612.2300000017584,-0.057195298491392425 +122447,612.2350000017585,-0.05719495089640985 +122448,612.2400000017586,-0.05719460337295895 +122449,612.2450000017587,-0.0571942559210256 +122450,612.2500000017588,-0.0571939085405957 +122451,612.255000001759,-0.05719356123165512 +122452,612.2600000017591,-0.05719321399418978 +122453,612.2650000017592,-0.05719286682818554 +122454,612.2700000017593,-0.05719251973362833 +122455,612.2750000017594,-0.05719217271050405 +122456,612.2800000017595,-0.0571918257587986 +122457,612.2850000017596,-0.057191478878497876 +122458,612.2900000017597,-0.05719113206958779 +122459,612.2950000017598,-0.057190785332054274 +122460,612.3000000017599,-0.05719043866588322 +122461,612.30500000176,-0.057190092071060565 +122462,612.3100000017602,-0.0571897455475722 +122463,612.3150000017603,-0.05718939909540407 +122464,612.3200000017604,-0.0571890527145421 +122465,612.3250000017605,-0.05718870640497221 +122466,612.3300000017606,-0.057188360166680344 +122467,612.3350000017607,-0.05718801399965241 +122468,612.3400000017608,-0.05718766790387437 +122469,612.3450000017609,-0.05718732187933216 +122470,612.350000001761,-0.05718697592601171 +122471,612.3550000017611,-0.057186630043898956 +122472,612.3600000017613,-0.05718628423297986 +122473,612.3650000017614,-0.05718593849324037 +122474,612.3700000017615,-0.05718559282466643 +122475,612.3750000017616,-0.05718524722724399 +122476,612.3800000017617,-0.05718490170095903 +122477,612.3850000017618,-0.057184556245797484 +122478,612.3900000017619,-0.05718421086174533 +122479,612.395000001762,-0.05718386554878852 +122480,612.4000000017621,-0.057183520306913024 +122481,612.4050000017622,-0.057183175136104825 +122482,612.4100000017623,-0.05718283003634987 +122483,612.4150000017625,-0.057182485007634155 +122484,612.4200000017626,-0.05718214004994365 +122485,612.4250000017627,-0.057181795163264354 +122486,612.4300000017628,-0.05718145034758223 +122487,612.4350000017629,-0.05718110560288325 +122488,612.440000001763,-0.057180760929153425 +122489,612.4450000017631,-0.057180416326378734 +122490,612.4500000017632,-0.057180071794545186 +122491,612.4550000017633,-0.05717972733363877 +122492,612.4600000017634,-0.05717938294364547 +122493,612.4650000017635,-0.057179038624551294 +122494,612.4700000017637,-0.057178694376342265 +122495,612.4750000017638,-0.05717835019900437 +122496,612.4800000017639,-0.05717800609252362 +122497,612.485000001764,-0.05717766205688602 +122498,612.4900000017641,-0.0571773180920776 +122499,612.4950000017642,-0.05717697419808437 +122500,612.5000000017643,-0.05717663037489234 +122501,612.5050000017644,-0.05717628662248754 +122502,612.5100000017645,-0.057175942940856005 +122503,612.5150000017646,-0.05717559932998374 +122504,612.5200000017647,-0.05717525578985679 +122505,612.5250000017649,-0.057174912320461194 +122506,612.530000001765,-0.057174568921782964 +122507,612.5350000017651,-0.05717422559380816 +122508,612.5400000017652,-0.05717388233652281 +122509,612.5450000017653,-0.05717353914991296 +122510,612.5500000017654,-0.057173196033964646 +122511,612.5550000017655,-0.05717285298866393 +122512,612.5600000017656,-0.05717251001399687 +122513,612.5650000017657,-0.0571721671099495 +122514,612.5700000017658,-0.057171824276507875 +122515,612.5750000017659,-0.057171481513658064 +122516,612.580000001766,-0.05717113882138612 +122517,612.5850000017662,-0.057170796199678124 +122518,612.5900000017663,-0.05717045364852012 +122519,612.5950000017664,-0.057170111167898184 +122520,612.6000000017665,-0.057169768757798396 +122521,612.6050000017666,-0.057169426418206826 +122522,612.6100000017667,-0.05716908414910954 +122523,612.6150000017668,-0.05716874195049262 +122524,612.6200000017669,-0.057168399822342154 +122525,612.625000001767,-0.05716805776464423 +122526,612.6300000017671,-0.05716771577738493 +122527,612.6350000017673,-0.05716737386055034 +122528,612.6400000017674,-0.05716703201412656 +122529,612.6450000017675,-0.05716669023809968 +122530,612.6500000017676,-0.05716634853245579 +122531,612.6550000017677,-0.057166006897180995 +122532,612.6600000017678,-0.057165665332261396 +122533,612.6650000017679,-0.05716532383768312 +122534,612.670000001768,-0.05716498241343224 +122535,612.6750000017681,-0.0571646410594949 +122536,612.6800000017682,-0.05716429977585717 +122537,612.6850000017683,-0.0571639585625052 +122538,612.6900000017685,-0.05716361741942511 +122539,612.6950000017686,-0.057163276346603 +122540,612.7000000017687,-0.057162935344025 +122541,612.7050000017688,-0.05716259441167725 +122542,612.7100000017689,-0.057162253549545856 +122543,612.715000001769,-0.057161912757616964 +122544,612.7200000017691,-0.05716157203587669 +122545,612.7250000017692,-0.05716123138431118 +122546,612.7300000017693,-0.05716089080290658 +122547,612.7350000017694,-0.05716055029164903 +122548,612.7400000017695,-0.05716020985052467 +122549,612.7450000017697,-0.05715986947951964 +122550,612.7500000017698,-0.057159529178620105 +122551,612.7550000017699,-0.057159188947812196 +122552,612.76000000177,-0.05715884878708208 +122553,612.7650000017701,-0.05715850869641591 +122554,612.7700000017702,-0.057158168675799856 +122555,612.7750000017703,-0.05715782872522007 +122556,612.7800000017704,-0.05715748884466271 +122557,612.7850000017705,-0.05715714903411396 +122558,612.7900000017706,-0.05715680929355998 +122559,612.7950000017707,-0.057156469622986934 +122560,612.8000000017709,-0.057156130022381006 +122561,612.805000001771,-0.05715579049172837 +122562,612.8100000017711,-0.05715545103101521 +122563,612.8150000017712,-0.057155111640227706 +122564,612.8200000017713,-0.05715477231935204 +122565,612.8250000017714,-0.0571544330683744 +122566,612.8300000017715,-0.057154093887280995 +122567,612.8350000017716,-0.057153754776058 +122568,612.8400000017717,-0.05715341573469159 +122569,612.8450000017718,-0.057153076763168005 +122570,612.850000001772,-0.057152737861473416 +122571,612.855000001772,-0.057152399029594035 +122572,612.8600000017722,-0.057152060267516076 +122573,612.8650000017723,-0.05715172157522574 +122574,612.8700000017724,-0.05715138295270923 +122575,612.8750000017725,-0.05715104439995277 +122576,612.8800000017726,-0.057150705916942574 +122577,612.8850000017727,-0.05715036750366485 +122578,612.8900000017728,-0.05715002916010584 +122579,612.8950000017729,-0.05714969088625176 +122580,612.900000001773,-0.05714935268208883 +122581,612.9050000017731,-0.05714901454760327 +122582,612.9100000017733,-0.057148676482781324 +122583,612.9150000017734,-0.05714833848760924 +122584,612.9200000017735,-0.057148000562073226 +122585,612.9250000017736,-0.057147662706159535 +122586,612.9300000017737,-0.057147324919854414 +122587,612.9350000017738,-0.057146987203144095 +122588,612.9400000017739,-0.057146649556014825 +122589,612.945000001774,-0.05714631197845286 +122590,612.9500000017741,-0.05714597447044444 +122591,612.9550000017742,-0.05714563703197584 +122592,612.9600000017743,-0.0571452996630333 +122593,612.9650000017745,-0.0571449623636031 +122594,612.9700000017746,-0.05714462513367148 +122595,612.9750000017747,-0.057144287973224725 +122596,612.9800000017748,-0.05714395088224907 +122597,612.9850000017749,-0.05714361386073082 +122598,612.990000001775,-0.05714327690865623 +122599,612.9950000017751,-0.05714294002601157 +122600,613.0000000017752,-0.05714260321278313 +122601,613.0050000017753,-0.05714226646895719 +122602,613.0100000017754,-0.05714192979452003 +122603,613.0150000017755,-0.057141593189457926 +122604,613.0200000017757,-0.05714125665375717 +122605,613.0250000017758,-0.05714092018740405 +122606,613.0300000017759,-0.05714058379038487 +122607,613.035000001776,-0.05714024746268591 +122608,613.0400000017761,-0.057139911204293486 +122609,613.0450000017762,-0.057139575015193886 +122610,613.0500000017763,-0.05713923889537341 +122611,613.0550000017764,-0.05713890284481837 +122612,613.0600000017765,-0.05713856686351508 +122613,613.0650000017766,-0.05713823095144984 +122614,613.0700000017767,-0.05713789510860898 +122615,613.0750000017769,-0.05713755933497879 +122616,613.080000001777,-0.05713722363054561 +122617,613.0850000017771,-0.05713688799529574 +122618,613.0900000017772,-0.05713655242921552 +122619,613.0950000017773,-0.05713621693229126 +122620,613.1000000017774,-0.057135881504509316 +122621,613.1050000017775,-0.057135546145855996 +122622,613.1100000017776,-0.057135210856317654 +122623,613.1150000017777,-0.05713487563588061 +122624,613.1200000017778,-0.057134540484531204 +122625,613.125000001778,-0.05713420540225578 +122626,613.1300000017781,-0.057133870389040685 +122627,613.1350000017782,-0.05713353544487225 +122628,613.1400000017783,-0.05713320056973684 +122629,613.1450000017784,-0.05713286576362082 +122630,613.1500000017785,-0.05713253102651051 +122631,613.1550000017786,-0.05713219635839228 +122632,613.1600000017787,-0.057131861759252486 +122633,613.1650000017788,-0.05713152722907751 +122634,613.1700000017789,-0.057131192767853695 +122635,613.175000001779,-0.05713085837556742 +122636,613.1800000017791,-0.05713052405220505 +122637,613.1850000017793,-0.05713018979775295 +122638,613.1900000017794,-0.0571298556121975 +122639,613.1950000017795,-0.05712952149552508 +122640,613.2000000017796,-0.05712918744772207 +122641,613.2050000017797,-0.05712885346877485 +122642,613.2100000017798,-0.057128519558669794 +122643,613.2150000017799,-0.05712818571739331 +122644,613.22000000178,-0.057127851944931765 +122645,613.2250000017801,-0.05712751824127156 +122646,613.2300000017802,-0.0571271846063991 +122647,613.2350000017803,-0.05712685104030076 +122648,613.2400000017805,-0.057126517542962975 +122649,613.2450000017806,-0.05712618411437211 +122650,613.2500000017807,-0.05712585075451459 +122651,613.2550000017808,-0.05712551746337681 +122652,613.2600000017809,-0.05712518424094519 +122653,613.265000001781,-0.05712485108720614 +122654,613.2700000017811,-0.057124518002146074 +122655,613.2750000017812,-0.057124184985751426 +122656,613.2800000017813,-0.05712385203800859 +122657,613.2850000017814,-0.057123519158904006 +122658,613.2900000017816,-0.05712318634842409 +122659,613.2950000017817,-0.057122853606555266 +122660,613.3000000017818,-0.05712252093328398 +122661,613.3050000017819,-0.057122188328596654 +122662,613.310000001782,-0.05712185579247972 +122663,613.3150000017821,-0.05712152332491962 +122664,613.3200000017822,-0.05712119092590281 +122665,613.3250000017823,-0.05712085859541571 +122666,613.3300000017824,-0.05712052633344478 +122667,613.3350000017825,-0.057120194139976446 +122668,613.3400000017826,-0.057119862014997184 +122669,613.3450000017828,-0.05711952995849343 +122670,613.3500000017829,-0.05711919797045165 +122671,613.355000001783,-0.05711886605085829 +122672,613.3600000017831,-0.057118534199699825 +122673,613.3650000017832,-0.05711820241696271 +122674,613.3700000017833,-0.0571178707026334 +122675,613.3750000017834,-0.05711753905669838 +122676,613.3800000017835,-0.057117207479144116 +122677,613.3850000017836,-0.05711687596995709 +122678,613.3900000017837,-0.05711654452912377 +122679,613.3950000017838,-0.05711621315663064 +122680,613.400000001784,-0.057115881852464155 +122681,613.4050000017841,-0.05711555061661082 +122682,613.4100000017842,-0.05711521944905712 +122683,613.4150000017843,-0.05711488834978954 +122684,613.4200000017844,-0.05711455731879457 +122685,613.4250000017845,-0.05711422635605871 +122686,613.4300000017846,-0.05711389546156845 +122687,613.4350000017847,-0.05711356463531028 +122688,613.4400000017848,-0.057113233877270735 +122689,613.4450000017849,-0.057112903187436274 +122690,613.450000001785,-0.057112572565793426 +122691,613.4550000017852,-0.05711224201232871 +122692,613.4600000017853,-0.05711191152702861 +122693,613.4650000017854,-0.057111581109879656 +122694,613.4700000017855,-0.05711125076086836 +122695,613.4750000017856,-0.05711092047998123 +122696,613.4800000017857,-0.05711059026720482 +122697,613.4850000017858,-0.05711026012252562 +122698,613.4900000017859,-0.05710993004593017 +122699,613.495000001786,-0.057109600037405006 +122700,613.5000000017861,-0.05710927009693664 +122701,613.5050000017862,-0.057108940224511615 +122702,613.5100000017864,-0.05710861042011647 +122703,613.5150000017865,-0.05710828068373773 +122704,613.5200000017866,-0.057107951015361966 +122705,613.5250000017867,-0.05710762141497568 +122706,613.5300000017868,-0.05710729188256546 +122707,613.5350000017869,-0.05710696241811783 +122708,613.540000001787,-0.05710663302161935 +122709,613.5450000017871,-0.05710630369305656 +122710,613.5500000017872,-0.05710597443241604 +122711,613.5550000017873,-0.057105645239684324 +122712,613.5600000017874,-0.057105316114847995 +122713,613.5650000017876,-0.05710498705789361 +122714,613.5700000017877,-0.057104658068807726 +122715,613.5750000017878,-0.05710432914757692 +122716,613.5800000017879,-0.05710400029418776 +122717,613.585000001788,-0.057103671508626816 +122718,613.5900000017881,-0.057103342790880675 +122719,613.5950000017882,-0.057103014140935916 +122720,613.6000000017883,-0.0571026855587791 +122721,613.6050000017884,-0.05710235704439684 +122722,613.6100000017885,-0.0571020285977757 +122723,613.6150000017886,-0.057101700218902283 +122724,613.6200000017888,-0.05710137190776317 +122725,613.6250000017889,-0.05710104366434496 +122726,613.630000001789,-0.05710071548863424 +122727,613.6350000017891,-0.05710038738061762 +122728,613.6400000017892,-0.05710005934028171 +122729,613.6450000017893,-0.05709973136761309 +122730,613.6500000017894,-0.057099403462598376 +122731,613.6550000017895,-0.05709907562522418 +122732,613.6600000017896,-0.05709874785547712 +122733,613.6650000017897,-0.0570984201533438 +122734,613.6700000017898,-0.05709809251881083 +122735,613.67500000179,-0.057097764951864846 +122736,613.6800000017901,-0.05709743745249246 +122737,613.6850000017902,-0.05709711002068029 +122738,613.6900000017903,-0.05709678265641498 +122739,613.6950000017904,-0.057096455359683135 +122740,613.7000000017905,-0.0570961281304714 +122741,613.7050000017906,-0.05709580096876641 +122742,613.7100000017907,-0.05709547387455481 +122743,613.7150000017908,-0.057095146847823235 +122744,613.7200000017909,-0.05709481988855831 +122745,613.725000001791,-0.05709449299674668 +122746,613.7300000017912,-0.057094166172375 +122747,613.7350000017913,-0.05709383941542993 +122748,613.7400000017914,-0.0570935127258981 +122749,613.7450000017915,-0.05709318610376617 +122750,613.7500000017916,-0.057092859549020804 +122751,613.7550000017917,-0.05709253306164865 +122752,613.7600000017918,-0.05709220664163638 +122753,613.7650000017919,-0.05709188028897066 +122754,613.770000001792,-0.05709155400363814 +122755,613.7750000017921,-0.05709122778562551 +122756,613.7800000017922,-0.05709090163491942 +122757,613.7850000017924,-0.05709057555150656 +122758,613.7900000017925,-0.0570902495353736 +122759,613.7950000017926,-0.05708992358650721 +122760,613.8000000017927,-0.05708959770489409 +122761,613.8050000017928,-0.057089271890520904 +122762,613.8100000017929,-0.057088946143374356 +122763,613.815000001793,-0.05708862046344112 +122764,613.8200000017931,-0.0570882948507079 +122765,613.8250000017932,-0.05708796930516138 +122766,613.8300000017933,-0.057087643826788256 +122767,613.8350000017934,-0.057087318415575225 +122768,613.8400000017936,-0.057086993071509 +122769,613.8450000017937,-0.057086667794576273 +122770,613.8500000017938,-0.057086342584763757 +122771,613.8550000017939,-0.05708601744205815 +122772,613.860000001794,-0.057085692366446165 +122773,613.8650000017941,-0.057085367357914536 +122774,613.8700000017942,-0.05708504241644995 +122775,613.8750000017943,-0.05708471754203914 +122776,613.8800000017944,-0.05708439273466884 +122777,613.8850000017945,-0.05708406799432575 +122778,613.8900000017946,-0.057083743320996604 +122779,613.8950000017948,-0.05708341871466814 +122780,613.9000000017949,-0.05708309417532708 +122781,613.905000001795,-0.057082769702960154 +122782,613.9100000017951,-0.0570824452975541 +122783,613.9150000017952,-0.057082120959095664 +122784,613.9200000017953,-0.057081796687571566 +122785,613.9250000017954,-0.05708147248296858 +122786,613.9300000017955,-0.05708114834527343 +122787,613.9350000017956,-0.05708082427447288 +122788,613.9400000017957,-0.057080500270553655 +122789,613.9450000017958,-0.057080176333502534 +122790,613.950000001796,-0.057079852463306255 +122791,613.9550000017961,-0.05707952865995158 +122792,613.9600000017962,-0.05707920492342528 +122793,613.9650000017963,-0.0570788812537141 +122794,613.9700000017964,-0.05707855765080483 +122795,613.9750000017965,-0.057078234114684205 +122796,613.9800000017966,-0.057077910645339035 +122797,613.9850000017967,-0.05707758724275607 +122798,613.9900000017968,-0.05707726390692208 +122799,613.9950000017969,-0.057076940637823856 +122800,614.000000001797,-0.057076617435448174 +122801,614.0050000017972,-0.05707629429978181 +122802,614.0100000017973,-0.05707597123081156 +122803,614.0150000017974,-0.0570756482285242 +122804,614.0200000017975,-0.05707532529290653 +122805,614.0250000017976,-0.05707500242394534 +122806,614.0300000017977,-0.057074679621627426 +122807,614.0350000017978,-0.05707435688593958 +122808,614.0400000017979,-0.05707403421686861 +122809,614.045000001798,-0.05707371161440132 +122810,614.0500000017981,-0.0570733890785245 +122811,614.0550000017982,-0.05707306660922497 +122812,614.0600000017984,-0.057072744206489535 +122813,614.0650000017985,-0.05707242187030501 +122814,614.0700000017986,-0.057072099600658205 +122815,614.0750000017987,-0.05707177739753595 +122816,614.0800000017988,-0.057071455260925066 +122817,614.0850000017989,-0.05707113319081236 +122818,614.090000001799,-0.05707081118718466 +122819,614.0950000017991,-0.0570704892500288 +122820,614.1000000017992,-0.05707016737933159 +122821,614.1050000017993,-0.057069845575079894 +122822,614.1100000017994,-0.05706952383726052 +122823,614.1150000017996,-0.05706920216586032 +122824,614.1200000017997,-0.05706888056086612 +122825,614.1250000017998,-0.05706855902226478 +122826,614.1300000017999,-0.05706823755004314 +122827,614.1350000018,-0.05706791614418803 +122828,614.1400000018001,-0.057067594804686324 +122829,614.1450000018002,-0.05706727353152485 +122830,614.1500000018003,-0.05706695232469048 +122831,614.1550000018004,-0.05706663118417005 +122832,614.1600000018005,-0.05706631010995044 +122833,614.1650000018006,-0.057065989102018495 +122834,614.1700000018008,-0.0570656681603611 +122835,614.1750000018009,-0.0570653472849651 +122836,614.180000001801,-0.057065026475817376 +122837,614.1850000018011,-0.0570647057329048 +122838,614.1900000018012,-0.05706438505621424 +122839,614.1950000018013,-0.057064064445732574 +122840,614.2000000018014,-0.05706374390144669 +122841,614.2050000018015,-0.05706342342334345 +122842,614.2100000018016,-0.05706310301140975 +122843,614.2150000018017,-0.057062782665632486 +122844,614.2200000018018,-0.05706246238599853 +122845,614.225000001802,-0.05706214217249477 +122846,614.2300000018021,-0.057061822025108115 +122847,614.2350000018022,-0.05706150194382545 +122848,614.2400000018023,-0.05706118192863367 +122849,614.2450000018024,-0.0570608619795197 +122850,614.2500000018025,-0.057060542096470414 +122851,614.2550000018026,-0.05706022227947274 +122852,614.2600000018027,-0.057059902528513576 +122853,614.2650000018028,-0.057059582843579836 +122854,614.2700000018029,-0.05705926322465842 +122855,614.275000001803,-0.05705894367173626 +122856,614.2800000018032,-0.057058624184800254 +122857,614.2850000018033,-0.057058304763837345 +122858,614.2900000018034,-0.057057985408834444 +122859,614.2950000018035,-0.05705766611977848 +122860,614.3000000018036,-0.05705734689665637 +122861,614.3050000018037,-0.057057027739455056 +122862,614.3100000018038,-0.05705670864816146 +122863,614.3150000018039,-0.05705638962276254 +122864,614.320000001804,-0.05705607066324521 +122865,614.3250000018041,-0.05705575176959643 +122866,614.3300000018043,-0.05705543294180312 +122867,614.3350000018044,-0.05705511417985224 +122868,614.3400000018045,-0.05705479548373073 +122869,614.3450000018046,-0.057054476853425545 +122870,614.3500000018047,-0.05705415828892363 +122871,614.3550000018048,-0.05705383979021194 +122872,614.3600000018049,-0.05705352135727743 +122873,614.365000001805,-0.057053202990107084 +122874,614.3700000018051,-0.05705288468868784 +122875,614.3750000018052,-0.057052566453006666 +122876,614.3800000018053,-0.05705224828305052 +122877,614.3850000018055,-0.05705193017880639 +122878,614.3900000018056,-0.05705161214026124 +122879,614.3950000018057,-0.057051294167402046 +122880,614.4000000018058,-0.057050976260215776 +122881,614.4050000018059,-0.05705065841868941 +122882,614.410000001806,-0.05705034064280994 +122883,614.4150000018061,-0.057050022932564344 +122884,614.4200000018062,-0.0570497052879396 +122885,614.4250000018063,-0.05704938770892271 +122886,614.4300000018064,-0.057049070195500665 +122887,614.4350000018065,-0.05704875274766045 +122888,614.4400000018067,-0.057048435365389054 +122889,614.4450000018068,-0.05704811804867349 +122890,614.4500000018069,-0.057047800797500756 +122891,614.455000001807,-0.05704748361185786 +122892,614.4600000018071,-0.05704716649173179 +122893,614.4650000018072,-0.05704684943710956 +122894,614.4700000018073,-0.05704653244797819 +122895,614.4750000018074,-0.05704621552432469 +122896,614.4800000018075,-0.05704589866613608 +122897,614.4850000018076,-0.05704558187339937 +122898,614.4900000018077,-0.05704526514610159 +122899,614.4950000018079,-0.05704494848422974 +122900,614.500000001808,-0.05704463188777086 +122901,614.5050000018081,-0.05704431535671198 +122902,614.5100000018082,-0.05704399889104012 +122903,614.5150000018083,-0.05704368249074233 +122904,614.5200000018084,-0.05704336615580563 +122905,614.5250000018085,-0.05704304988621706 +122906,614.5300000018086,-0.05704273368196366 +122907,614.5350000018087,-0.05704241754303247 +122908,614.5400000018088,-0.05704210146941054 +122909,614.545000001809,-0.05704178546108492 +122910,614.550000001809,-0.057041469518042634 +122911,614.5550000018092,-0.057041153640270764 +122912,614.5600000018093,-0.05704083782775635 +122913,614.5650000018094,-0.057040522080486454 +122914,614.5700000018095,-0.05704020639844814 +122915,614.5750000018096,-0.05703989078162846 +122916,614.5800000018097,-0.05703957523001448 +122917,614.5850000018098,-0.057039259743593265 +122918,614.5900000018099,-0.05703894432235188 +122919,614.59500000181,-0.0570386289662774 +122920,614.6000000018101,-0.0570383136753569 +122921,614.6050000018103,-0.05703799844957746 +122922,614.6100000018104,-0.057037683288926146 +122923,614.6150000018105,-0.05703736819339005 +122924,614.6200000018106,-0.05703705316295626 +122925,614.6250000018107,-0.05703673819761184 +122926,614.6300000018108,-0.0570364232973439 +122927,614.6350000018109,-0.05703610846213952 +122928,614.640000001811,-0.0570357936919858 +122929,614.6450000018111,-0.05703547898686982 +122930,614.6500000018112,-0.05703516434677869 +122931,614.6550000018113,-0.057034849771699515 +122932,614.6600000018115,-0.05703453526161938 +122933,614.6650000018116,-0.057034220816525406 +122934,614.6700000018117,-0.05703390643640469 +122935,614.6750000018118,-0.057033592121244356 +122936,614.6800000018119,-0.05703327787103149 +122937,614.685000001812,-0.05703296368575323 +122938,614.6900000018121,-0.057032649565396686 +122939,614.6950000018122,-0.05703233550994897 +122940,614.7000000018123,-0.05703202151939721 +122941,614.7050000018124,-0.057031707593728526 +122942,614.7100000018125,-0.05703139373293006 +122943,614.7150000018127,-0.057031079936988915 +122944,614.7200000018128,-0.05703076620589225 +122945,614.7250000018129,-0.05703045253962718 +122946,614.730000001813,-0.057030138938180854 +122947,614.7350000018131,-0.05702982540154041 +122948,614.7400000018132,-0.05702951192969297 +122949,614.7450000018133,-0.05702919852262569 +122950,614.7500000018134,-0.057028885180325714 +122951,614.7550000018135,-0.057028571902780205 +122952,614.7600000018136,-0.05702825868997628 +122953,614.7650000018137,-0.05702794554190113 +122954,614.7700000018139,-0.05702763245854189 +122955,614.775000001814,-0.05702731943988572 +122956,614.7800000018141,-0.057027006485919775 +122957,614.7850000018142,-0.05702669359663122 +122958,614.7900000018143,-0.05702638077200723 +122959,614.7950000018144,-0.05702606801203497 +122960,614.8000000018145,-0.05702575531670161 +122961,614.8050000018146,-0.057025442685994306 +122962,614.8100000018147,-0.05702513011990026 +122963,614.8150000018148,-0.057024817618406616 +122964,614.820000001815,-0.057024505181500575 +122965,614.825000001815,-0.05702419280916932 +122966,614.8300000018152,-0.05702388050140003 +122967,614.8350000018153,-0.05702356825817989 +122968,614.8400000018154,-0.05702325607949609 +122969,614.8450000018155,-0.057022943965335825 +122970,614.8500000018156,-0.05702263191568629 +122971,614.8550000018157,-0.057022319930534665 +122972,614.8600000018158,-0.05702200800986816 +122973,614.8650000018159,-0.05702169615367399 +122974,614.870000001816,-0.05702138436193933 +122975,614.8750000018161,-0.05702107263465141 +122976,614.8800000018163,-0.05702076097179742 +122977,614.8850000018164,-0.05702044937336458 +122978,614.8900000018165,-0.05702013783934011 +122979,614.8950000018166,-0.057019826369711216 +122980,614.9000000018167,-0.057019514964465105 +122981,614.9050000018168,-0.057019203623589025 +122982,614.9100000018169,-0.05701889234707018 +122983,614.915000001817,-0.05701858113489578 +122984,614.9200000018171,-0.05701826998705309 +122985,614.9250000018172,-0.05701795890352931 +122986,614.9300000018173,-0.05701764788431167 +122987,614.9350000018175,-0.05701733692938743 +122988,614.9400000018176,-0.05701702603874381 +122989,614.9450000018177,-0.057016715212368056 +122990,614.9500000018178,-0.05701640445024741 +122991,614.9550000018179,-0.0570160937523691 +122992,614.960000001818,-0.057015783118720395 +122993,614.9650000018181,-0.05701547254928852 +122994,614.9700000018182,-0.05701516204406074 +122995,614.9750000018183,-0.05701485160302431 +122996,614.9800000018184,-0.05701454122616649 +122997,614.9850000018185,-0.057014230913474524 +122998,614.9900000018187,-0.057013920664935686 +122999,614.9950000018188,-0.05701361048053723 +123000,615.0000000018189,-0.05701330036026642 +123001,615.005000001819,-0.05701299030411052 +123002,615.0100000018191,-0.057012680312056814 +123003,615.0150000018192,-0.05701237038409258 +123004,615.0200000018193,-0.05701206052020507 +123005,615.0250000018194,-0.057011750720381574 +123006,615.0300000018195,-0.05701144098460936 +123007,615.0350000018196,-0.05701113131287573 +123008,615.0400000018197,-0.05701082170516797 +123009,615.0450000018199,-0.05701051216147335 +123010,615.05000000182,-0.057010202681779164 +123011,615.0550000018201,-0.05700989326607271 +123012,615.0600000018202,-0.057009583914341265 +123013,615.0650000018203,-0.05700927462657214 +123014,615.0700000018204,-0.05700896540275264 +123015,615.0750000018205,-0.05700865624287005 +123016,615.0800000018206,-0.05700834714691168 +123017,615.0850000018207,-0.05700803811486483 +123018,615.0900000018208,-0.057007729146716826 +123019,615.095000001821,-0.05700742024245497 +123020,615.1000000018211,-0.057007111402066574 +123021,615.1050000018212,-0.05700680262553894 +123022,615.1100000018213,-0.0570064939128594 +123023,615.1150000018214,-0.057006185264015276 +123024,615.1200000018215,-0.05700587667899387 +123025,615.1250000018216,-0.05700556815778254 +123026,615.1300000018217,-0.057005259700368585 +123027,615.1350000018218,-0.05700495130673935 +123028,615.1400000018219,-0.05700464297688215 +123029,615.145000001822,-0.05700433471078435 +123030,615.1500000018221,-0.05700402650843326 +123031,615.1550000018223,-0.05700371836981623 +123032,615.1600000018224,-0.057003410294920585 +123033,615.1650000018225,-0.057003102283733696 +123034,615.1700000018226,-0.05700279433624289 +123035,615.1750000018227,-0.05700248645243552 +123036,615.1800000018228,-0.057002178632298936 +123037,615.1850000018229,-0.0570018708758205 +123038,615.190000001823,-0.057001563182987554 +123039,615.1950000018231,-0.05700125555378746 +123040,615.2000000018232,-0.05700094798820759 +123041,615.2050000018234,-0.057000640486235286 +123042,615.2100000018235,-0.05700033304785794 +123043,615.2150000018236,-0.05700002567306289 +123044,615.2200000018237,-0.05699971836183752 +123045,615.2250000018238,-0.05699941111416921 +123046,615.2300000018239,-0.05699910393004532 +123047,615.235000001824,-0.05699879680945324 +123048,615.2400000018241,-0.05699848975238034 +123049,615.2450000018242,-0.056998182758814 +123050,615.2500000018243,-0.05699787582874161 +123051,615.2550000018244,-0.05699756896215055 +123052,615.2600000018246,-0.05699726215902823 +123053,615.2650000018247,-0.05699695541936201 +123054,615.2700000018248,-0.05699664874313929 +123055,615.2750000018249,-0.05699634213034749 +123056,615.280000001825,-0.056996035580973985 +123057,615.2850000018251,-0.05699572909500617 +123058,615.2900000018252,-0.05699542267243146 +123059,615.2950000018253,-0.05699511631323726 +123060,615.3000000018254,-0.05699481001741098 +123061,615.3050000018255,-0.05699450378494004 +123062,615.3100000018256,-0.05699419761581183 +123063,615.3150000018258,-0.05699389151001377 +123064,615.3200000018259,-0.05699358546753328 +123065,615.325000001826,-0.056993279488357786 +123066,615.3300000018261,-0.056992973572474695 +123067,615.3350000018262,-0.05699266771987145 +123068,615.3400000018263,-0.056992361930535466 +123069,615.3450000018264,-0.056992056204454175 +123070,615.3500000018265,-0.05699175054161499 +123071,615.3550000018266,-0.05699144494200537 +123072,615.3600000018267,-0.05699113940561274 +123073,615.3650000018268,-0.05699083393242454 +123074,615.370000001827,-0.05699052852242821 +123075,615.3750000018271,-0.05699022317561119 +123076,615.3800000018272,-0.05698991789196093 +123077,615.3850000018273,-0.05698961267146487 +123078,615.3900000018274,-0.056989307514110465 +123079,615.3950000018275,-0.05698900241988517 +123080,615.4000000018276,-0.05698869738877643 +123081,615.4050000018277,-0.0569883924207717 +123082,615.4100000018278,-0.05698808751585847 +123083,615.4150000018279,-0.056987782674024164 +123084,615.420000001828,-0.05698747789525627 +123085,615.4250000018282,-0.05698717317954222 +123086,615.4300000018283,-0.05698686852686953 +123087,615.4350000018284,-0.05698656393722564 +123088,615.4400000018285,-0.05698625941059804 +123089,615.4450000018286,-0.05698595494697419 +123090,615.4500000018287,-0.056985650546341575 +123091,615.4550000018288,-0.05698534620868768 +123092,615.4600000018289,-0.05698504193399998 +123093,615.465000001829,-0.05698473772226596 +123094,615.4700000018291,-0.056984433573473124 +123095,615.4750000018292,-0.05698412948760894 +123096,615.4800000018294,-0.05698382546466091 +123097,615.4850000018295,-0.05698352150461653 +123098,615.4900000018296,-0.05698321760746329 +123099,615.4950000018297,-0.0569829137731887 +123100,615.5000000018298,-0.056982610001780246 +123101,615.5050000018299,-0.05698230629322543 +123102,615.51000000183,-0.05698200264751178 +123103,615.5150000018301,-0.056981699064626794 +123104,615.5200000018302,-0.056981395544557986 +123105,615.5250000018303,-0.05698109208729285 +123106,615.5300000018304,-0.05698078869281892 +123107,615.5350000018306,-0.05698048536112371 +123108,615.5400000018307,-0.05698018209219474 +123109,615.5450000018308,-0.05697987888601953 +123110,615.5500000018309,-0.05697957574258561 +123111,615.555000001831,-0.0569792726618805 +123112,615.5600000018311,-0.05697896964389173 +123113,615.5650000018312,-0.056978666688606835 +123114,615.5700000018313,-0.05697836379601336 +123115,615.5750000018314,-0.05697806096609881 +123116,615.5800000018315,-0.05697775819885075 +123117,615.5850000018316,-0.056977455494256715 +123118,615.5900000018318,-0.05697715285230426 +123119,615.5950000018319,-0.05697685027298091 +123120,615.600000001832,-0.05697654775627423 +123121,615.6050000018321,-0.05697624530217175 +123122,615.6100000018322,-0.056975942910661034 +123123,615.6150000018323,-0.05697564058172964 +123124,615.6200000018324,-0.05697533831536512 +123125,615.6250000018325,-0.05697503611155504 +123126,615.6300000018326,-0.05697473397028696 +123127,615.6350000018327,-0.05697443189154845 +123128,615.6400000018328,-0.056974129875327066 +123129,615.645000001833,-0.05697382792161038 +123130,615.6500000018331,-0.056973526030385954 +123131,615.6550000018332,-0.05697322420164139 +123132,615.6600000018333,-0.05697292243536424 +123133,615.6650000018334,-0.05697262073154208 +123134,615.6700000018335,-0.0569723190901625 +123135,615.6750000018336,-0.056972017511213086 +123136,615.6800000018337,-0.05697171599468142 +123137,615.6850000018338,-0.05697141454055509 +123138,615.6900000018339,-0.056971113148821674 +123139,615.695000001834,-0.05697081181946878 +123140,615.7000000018342,-0.056970510552484005 +123141,615.7050000018343,-0.05697020934785493 +123142,615.7100000018344,-0.05696990820556917 +123143,615.7150000018345,-0.056969607125614316 +123144,615.7200000018346,-0.05696930610797797 +123145,615.7250000018347,-0.05696900515264774 +123146,615.7300000018348,-0.056968704259611244 +123147,615.7350000018349,-0.056968403428856076 +123148,615.740000001835,-0.05696810266036987 +123149,615.7450000018351,-0.05696780195414022 +123150,615.7500000018352,-0.05696750131015476 +123151,615.7550000018354,-0.0569672007284011 +123152,615.7600000018355,-0.05696690020886686 +123153,615.7650000018356,-0.05696659975153968 +123154,615.7700000018357,-0.05696629935640718 +123155,615.7750000018358,-0.05696599902345699 +123156,615.7800000018359,-0.05696569875267673 +123157,615.785000001836,-0.05696539854405405 +123158,615.7900000018361,-0.05696509839757658 +123159,615.7950000018362,-0.05696479831323195 +123160,615.8000000018363,-0.05696449829100782 +123161,615.8050000018364,-0.05696419833089181 +123162,615.8100000018366,-0.05696389843287158 +123163,615.8150000018367,-0.05696359859693478 +123164,615.8200000018368,-0.05696329882306905 +123165,615.8250000018369,-0.05696299911126205 +123166,615.830000001837,-0.05696269946150143 +123167,615.8350000018371,-0.056962399873774855 +123168,615.8400000018372,-0.056962100348069984 +123169,615.8450000018373,-0.05696180088437447 +123170,615.8500000018374,-0.05696150148267597 +123171,615.8550000018375,-0.056961202142962165 +123172,615.8600000018376,-0.056960902865220715 +123173,615.8650000018378,-0.056960603649439306 +123174,615.8700000018379,-0.0569603044956056 +123175,615.875000001838,-0.05696000540370727 +123176,615.8800000018381,-0.05695970637373199 +123177,615.8850000018382,-0.05695940740566745 +123178,615.8900000018383,-0.05695910849950133 +123179,615.8950000018384,-0.056958809655221314 +123180,615.9000000018385,-0.05695851087281508 +123181,615.9050000018386,-0.056958212152270336 +123182,615.9100000018387,-0.05695791349357476 +123183,615.9150000018388,-0.05695761489671605 +123184,615.920000001839,-0.05695731636168191 +123185,615.9250000018391,-0.05695701788846002 +123186,615.9300000018392,-0.05695671947703809 +123187,615.9350000018393,-0.05695642112740383 +123188,615.9400000018394,-0.05695612283954493 +123189,615.9450000018395,-0.05695582461344913 +123190,615.9500000018396,-0.0569555264491041 +123191,615.9550000018397,-0.05695522834649758 +123192,615.9600000018398,-0.05695493030561727 +123193,615.9650000018399,-0.05695463232645089 +123194,615.97000000184,-0.05695433440898616 +123195,615.9750000018402,-0.056954036553210796 +123196,615.9800000018403,-0.05695373875911254 +123197,615.9850000018404,-0.056953441026679104 +123198,615.9900000018405,-0.056953143355898204 +123199,615.9950000018406,-0.0569528457467576 +123200,616.0000000018407,-0.056952548199245 +123201,616.0050000018408,-0.056952250713348154 +123202,616.0100000018409,-0.05695195328905479 +123203,616.015000001841,-0.05695165592635266 +123204,616.0200000018411,-0.05695135862522949 +123205,616.0250000018412,-0.056951061385673046 +123206,616.0300000018414,-0.056950764207671055 +123207,616.0350000018415,-0.05695046709121128 +123208,616.0400000018416,-0.056950170036281465 +123209,616.0450000018417,-0.05694987304286936 +123210,616.0500000018418,-0.05694957611096273 +123211,616.0550000018419,-0.056949279240549315 +123212,616.060000001842,-0.0569489824316169 +123213,616.0650000018421,-0.05694868568415323 +123214,616.0700000018422,-0.05694838899814609 +123215,616.0750000018423,-0.056948092373583226 +123216,616.0800000018424,-0.05694779581045241 +123217,616.0850000018426,-0.05694749930874141 +123218,616.0900000018427,-0.056947202868438025 +123219,616.0950000018428,-0.05694690648953001 +123220,616.1000000018429,-0.056946610172005155 +123221,616.105000001843,-0.056946313915851234 +123222,616.1100000018431,-0.056946017721056036 +123223,616.1150000018432,-0.056945721587607336 +123224,616.1200000018433,-0.05694542551549293 +123225,616.1250000018434,-0.056945129504700605 +123226,616.1300000018435,-0.056944833555218156 +123227,616.1350000018437,-0.05694453766703339 +123228,616.1400000018438,-0.05694424184013409 +123229,616.1450000018439,-0.05694394607450805 +123230,616.150000001844,-0.056943650370143074 +123231,616.1550000018441,-0.056943354727026975 +123232,616.1600000018442,-0.05694305914514756 +123233,616.1650000018443,-0.05694276362449263 +123234,616.1700000018444,-0.05694246816504999 +123235,616.1750000018445,-0.056942172766807464 +123236,616.1800000018446,-0.05694187742975287 +123237,616.1850000018447,-0.05694158215387401 +123238,616.1900000018449,-0.05694128693915872 +123239,616.195000001845,-0.05694099178559482 +123240,616.2000000018451,-0.056940696693170124 +123241,616.2050000018452,-0.056940401661872475 +123242,616.2100000018453,-0.05694010669168968 +123243,616.2150000018454,-0.05693981178260958 +123244,616.2200000018455,-0.056939516934620016 +123245,616.2250000018456,-0.05693922214770882 +123246,616.2300000018457,-0.056938927421863836 +123247,616.2350000018458,-0.05693863275707289 +123248,616.2400000018459,-0.056938338153323845 +123249,616.245000001846,-0.056938043610604526 +123250,616.2500000018462,-0.05693774912890278 +123251,616.2550000018463,-0.05693745470820646 +123252,616.2600000018464,-0.05693716034850343 +123253,616.2650000018465,-0.05693686604978153 +123254,616.2700000018466,-0.056936571812028616 +123255,616.2750000018467,-0.05693627763523256 +123256,616.2800000018468,-0.056935983519381214 +123257,616.2850000018469,-0.056935689464462445 +123258,616.290000001847,-0.056935395470464105 +123259,616.2950000018471,-0.056935101537374085 +123260,616.3000000018473,-0.056934807665180234 +123261,616.3050000018474,-0.05693451385387043 +123262,616.3100000018475,-0.056934220103432555 +123263,616.3150000018476,-0.05693392641385448 +123264,616.3200000018477,-0.056933632785124075 +123265,616.3250000018478,-0.056933339217229234 +123266,616.3300000018479,-0.056933045710157844 +123267,616.335000001848,-0.05693275226389777 +123268,616.3400000018481,-0.05693245887843692 +123269,616.3450000018482,-0.056932165553763174 +123270,616.3500000018483,-0.05693187228986443 +123271,616.3550000018485,-0.05693157908672858 +123272,616.3600000018486,-0.05693128594434352 +123273,616.3650000018487,-0.056930992862697156 +123274,616.3700000018488,-0.056930699841777385 +123275,616.3750000018489,-0.05693040688157211 +123276,616.380000001849,-0.05693011398206924 +123277,616.3850000018491,-0.05692982114325669 +123278,616.3900000018492,-0.05692952836512235 +123279,616.3950000018493,-0.056929235647654154 +123280,616.4000000018494,-0.056928942990840004 +123281,616.4050000018495,-0.05692865039466782 +123282,616.4100000018497,-0.05692835785912551 +123283,616.4150000018498,-0.05692806538420102 +123284,616.4200000018499,-0.05692777296988227 +123285,616.42500000185,-0.05692748061615717 +123286,616.4300000018501,-0.05692718832301367 +123287,616.4350000018502,-0.05692689609043968 +123288,616.4400000018503,-0.056926603918423156 +123289,616.4450000018504,-0.05692631180695201 +123290,616.4500000018505,-0.0569260197560142 +123291,616.4550000018506,-0.05692572776559764 +123292,616.4600000018507,-0.0569254358356903 +123293,616.4650000018509,-0.0569251439662801 +123294,616.470000001851,-0.05692485215735501 +123295,616.4750000018511,-0.056924560408902966 +123296,616.4800000018512,-0.05692426872091193 +123297,616.4850000018513,-0.05692397709336984 +123298,616.4900000018514,-0.056923685526264665 +123299,616.4950000018515,-0.05692339401958435 +123300,616.5000000018516,-0.05692310257331687 +123301,616.5050000018517,-0.05692281118745018 +123302,616.5100000018518,-0.056922519861972234 +123303,616.515000001852,-0.05692222859687102 +123304,616.520000001852,-0.0569219373921345 +123305,616.5250000018522,-0.05692164624775063 +123306,616.5300000018523,-0.0569213551637074 +123307,616.5350000018524,-0.056921064139992796 +123308,616.5400000018525,-0.05692077317659477 +123309,616.5450000018526,-0.05692048227350132 +123310,616.5500000018527,-0.05692019143070043 +123311,616.5550000018528,-0.056919900648180075 +123312,616.5600000018529,-0.05691960992592824 +123313,616.565000001853,-0.056919319263932934 +123314,616.5700000018531,-0.05691902866218213 +123315,616.5750000018533,-0.05691873812066384 +123316,616.5800000018534,-0.05691844763936602 +123317,616.5850000018535,-0.05691815721827672 +123318,616.5900000018536,-0.05691786685738391 +123319,616.5950000018537,-0.0569175765566756 +123320,616.6000000018538,-0.05691728631613979 +123321,616.6050000018539,-0.05691699613576451 +123322,616.610000001854,-0.05691670601553774 +123323,616.6150000018541,-0.056916415955447504 +123324,616.6200000018542,-0.05691612595548182 +123325,616.6250000018543,-0.0569158360156287 +123326,616.6300000018545,-0.05691554613587617 +123327,616.6350000018546,-0.056915256316212234 +123328,616.6400000018547,-0.05691496655662493 +123329,616.6450000018548,-0.056914676857102296 +123330,616.6500000018549,-0.056914387217632326 +123331,616.655000001855,-0.05691409763820308 +123332,616.6600000018551,-0.05691380811880257 +123333,616.6650000018552,-0.05691351865941884 +123334,616.6700000018553,-0.05691322926003993 +123335,616.6750000018554,-0.05691293992065387 +123336,616.6800000018555,-0.0569126506412487 +123337,616.6850000018557,-0.056912361421812475 +123338,616.6900000018558,-0.056912072262333226 +123339,616.6950000018559,-0.05691178316279901 +123340,616.700000001856,-0.05691149412319788 +123341,616.7050000018561,-0.05691120514351789 +123342,616.7100000018562,-0.05691091622374708 +123343,616.7150000018563,-0.05691062736387352 +123344,616.7200000018564,-0.05691033856388525 +123345,616.7250000018565,-0.056910049823770355 +123346,616.7300000018566,-0.056909761143516875 +123347,616.7350000018567,-0.056909472523112896 +123348,616.7400000018569,-0.05690918396254648 +123349,616.745000001857,-0.0569088954618057 +123350,616.7500000018571,-0.05690860702087862 +123351,616.7550000018572,-0.05690831863975332 +123352,616.7600000018573,-0.056908030318417874 +123353,616.7650000018574,-0.056907742056860375 +123354,616.7700000018575,-0.05690745385506888 +123355,616.7750000018576,-0.05690716571303149 +123356,616.7800000018577,-0.05690687763073628 +123357,616.7850000018578,-0.05690658960817135 +123358,616.790000001858,-0.05690630164532477 +123359,616.795000001858,-0.05690601374218466 +123360,616.8000000018582,-0.056905725898739094 +123361,616.8050000018583,-0.05690543811497618 +123362,616.8100000018584,-0.05690515039088401 +123363,616.8150000018585,-0.05690486272645068 +123364,616.8200000018586,-0.05690457512166431 +123365,616.8250000018587,-0.056904287576513 +123366,616.8300000018588,-0.056904000090984855 +123367,616.8350000018589,-0.056903712665067975 +123368,616.840000001859,-0.056903425298750476 +123369,616.8450000018591,-0.05690313799202049 +123370,616.8500000018593,-0.05690285074486613 +123371,616.8550000018594,-0.0569025635572755 +123372,616.8600000018595,-0.05690227642923674 +123373,616.8650000018596,-0.056901989360737946 +123374,616.8700000018597,-0.056901702351767273 +123375,616.8750000018598,-0.056901415402312826 +123376,616.8800000018599,-0.056901128512362745 +123377,616.88500000186,-0.05690084168190518 +123378,616.8900000018601,-0.056900554910928235 +123379,616.8950000018602,-0.05690026819942007 +123380,616.9000000018603,-0.05689998154736881 +123381,616.9050000018605,-0.056899694954762596 +123382,616.9100000018606,-0.05689940842158959 +123383,616.9150000018607,-0.056899121947837916 +123384,616.9200000018608,-0.05689883553349573 +123385,616.9250000018609,-0.05689854917855118 +123386,616.930000001861,-0.05689826288299243 +123387,616.9350000018611,-0.056897976646807624 +123388,616.9400000018612,-0.05689769046998491 +123389,616.9450000018613,-0.05689740435251247 +123390,616.9500000018614,-0.05689711829437845 +123391,616.9550000018615,-0.056896832295571007 +123392,616.9600000018617,-0.05689654635607832 +123393,616.9650000018618,-0.056896260475888555 +123394,616.9700000018619,-0.05689597465498987 +123395,616.975000001862,-0.05689568889337045 +123396,616.9800000018621,-0.05689540319101846 +123397,616.9850000018622,-0.0568951175479221 +123398,616.9900000018623,-0.056894831964069525 +123399,616.9950000018624,-0.05689454643944892 +123400,617.0000000018625,-0.05689426097404846 +123401,617.0050000018626,-0.05689397556785636 +123402,617.0100000018627,-0.05689369022086079 +123403,617.0150000018629,-0.05689340493304994 +123404,617.020000001863,-0.056893119704411986 +123405,617.0250000018631,-0.05689283453493515 +123406,617.0300000018632,-0.05689254942460761 +123407,617.0350000018633,-0.05689226437341758 +123408,617.0400000018634,-0.056891979381353236 +123409,617.0450000018635,-0.056891694448402814 +123410,617.0500000018636,-0.056891409574554505 +123411,617.0550000018637,-0.05689112475979651 +123412,617.0600000018638,-0.05689084000411704 +123413,617.065000001864,-0.056890555307504316 +123414,617.0700000018641,-0.05689027066994655 +123415,617.0750000018642,-0.05688998609143195 +123416,617.0800000018643,-0.05688970157194873 +123417,617.0850000018644,-0.05688941711148513 +123418,617.0900000018645,-0.05688913271002936 +123419,617.0950000018646,-0.056888848367569654 +123420,617.1000000018647,-0.05688856408409423 +123421,617.1050000018648,-0.05688827985959132 +123422,617.1100000018649,-0.05688799569404917 +123423,617.115000001865,-0.056887711587455994 +123424,617.1200000018652,-0.05688742753980004 +123425,617.1250000018653,-0.056887143551069545 +123426,617.1300000018654,-0.05688685962125274 +123427,617.1350000018655,-0.05688657575033787 +123428,617.1400000018656,-0.056886291938313197 +123429,617.1450000018657,-0.056886008185166946 +123430,617.1500000018658,-0.056885724490887385 +123431,617.1550000018659,-0.056885440855462745 +123432,617.160000001866,-0.05688515727888131 +123433,617.1650000018661,-0.056884873761131306 +123434,617.1700000018662,-0.056884590302201006 +123435,617.1750000018664,-0.056884306902078664 +123436,617.1800000018665,-0.056884023560752554 +123437,617.1850000018666,-0.05688374027821092 +123438,617.1900000018667,-0.05688345705444206 +123439,617.1950000018668,-0.056883173889434216 +123440,617.2000000018669,-0.05688289078317567 +123441,617.205000001867,-0.05688260773565469 +123442,617.2100000018671,-0.056882324746859565 +123443,617.2150000018672,-0.05688204181677857 +123444,617.2200000018673,-0.056881758945399964 +123445,617.2250000018674,-0.05688147613271205 +123446,617.2300000018676,-0.0568811933787031 +123447,617.2350000018677,-0.05688091068336142 +123448,617.2400000018678,-0.056880628046675284 +123449,617.2450000018679,-0.056880345468632985 +123450,617.250000001868,-0.05688006294922281 +123451,617.2550000018681,-0.056879780488433056 +123452,617.2600000018682,-0.05687949808625204 +123453,617.2650000018683,-0.05687921574266804 +123454,617.2700000018684,-0.05687893345766936 +123455,617.2750000018685,-0.05687865123124432 +123456,617.2800000018686,-0.056878369063381215 +123457,617.2850000018688,-0.05687808695406835 +123458,617.2900000018689,-0.05687780490329405 +123459,617.295000001869,-0.05687752291104661 +123460,617.3000000018691,-0.05687724097731436 +123461,617.3050000018692,-0.05687695910208561 +123462,617.3100000018693,-0.056876677285348676 +123463,617.3150000018694,-0.05687639552709189 +123464,617.3200000018695,-0.05687611382730357 +123465,617.3250000018696,-0.056875832185972044 +123466,617.3300000018697,-0.05687555060308564 +123467,617.3350000018698,-0.05687526907863268 +123468,617.34000000187,-0.05687498761260151 +123469,617.3450000018701,-0.05687470620498045 +123470,617.3500000018702,-0.05687442485575785 +123471,617.3550000018703,-0.05687414356492205 +123472,617.3600000018704,-0.05687386233246139 +123473,617.3650000018705,-0.05687358115836419 +123474,617.3700000018706,-0.05687330004261883 +123475,617.3750000018707,-0.05687301898521364 +123476,617.3800000018708,-0.05687273798613697 +123477,617.3850000018709,-0.056872457045377175 +123478,617.390000001871,-0.0568721761629226 +123479,617.3950000018712,-0.05687189533876162 +123480,617.4000000018713,-0.05687161457288258 +123481,617.4050000018714,-0.05687133386527384 +123482,617.4100000018715,-0.056871053215923784 +123483,617.4150000018716,-0.056870772624820744 +123484,617.4200000018717,-0.05687049209195313 +123485,617.4250000018718,-0.05687021161730927 +123486,617.4300000018719,-0.05686993120087755 +123487,617.435000001872,-0.05686965084264635 +123488,617.4400000018721,-0.05686937054260405 +123489,617.4450000018722,-0.05686909030073902 +123490,617.4500000018724,-0.056868810117039634 +123491,617.4550000018725,-0.056868529991494284 +123492,617.4600000018726,-0.05686824992409136 +123493,617.4650000018727,-0.05686796991481923 +123494,617.4700000018728,-0.05686768996366629 +123495,617.4750000018729,-0.05686741007062095 +123496,617.480000001873,-0.05686713023567158 +123497,617.4850000018731,-0.05686685045880659 +123498,617.4900000018732,-0.05686657074001438 +123499,617.4950000018733,-0.05686629107928334 +123500,617.5000000018734,-0.056866011476601884 +123501,617.5050000018736,-0.056865731931958395 +123502,617.5100000018737,-0.05686545244534129 +123503,617.5150000018738,-0.05686517301673898 +123504,617.5200000018739,-0.05686489364613988 +123505,617.525000001874,-0.056864614333532404 +123506,617.5300000018741,-0.05686433507890496 +123507,617.5350000018742,-0.05686405588224597 +123508,617.5400000018743,-0.056863776743543835 +123509,617.5450000018744,-0.056863497662787 +123510,617.5500000018745,-0.056863218639963874 +123511,617.5550000018746,-0.0568629396750629 +123512,617.5600000018748,-0.056862660768072504 +123513,617.5650000018749,-0.0568623819189811 +123514,617.570000001875,-0.05686210312777713 +123515,617.5750000018751,-0.056861824394449034 +123516,617.5800000018752,-0.056861545718985225 +123517,617.5850000018753,-0.056861267101374166 +123518,617.5900000018754,-0.056860988541604304 +123519,617.5950000018755,-0.05686071003966406 +123520,617.6000000018756,-0.05686043159554188 +123521,617.6050000018757,-0.05686015320922623 +123522,617.6100000018758,-0.05685987488070555 +123523,617.615000001876,-0.056859596609968296 +123524,617.6200000018761,-0.05685931839700291 +123525,617.6250000018762,-0.05685904024179786 +123526,617.6300000018763,-0.0568587621443416 +123527,617.6350000018764,-0.05685848410462259 +123528,617.6400000018765,-0.0568582061226293 +123529,617.6450000018766,-0.05685792819835018 +123530,617.6500000018767,-0.056857650331773715 +123531,617.6550000018768,-0.056857372522888354 +123532,617.6600000018769,-0.05685709477168258 +123533,617.665000001877,-0.05685681707814487 +123534,617.6700000018772,-0.056856539442263695 +123535,617.6750000018773,-0.05685626186402753 +123536,617.6800000018774,-0.05685598434342486 +123537,617.6850000018775,-0.056855706880444175 +123538,617.6900000018776,-0.05685542947507395 +123539,617.6950000018777,-0.05685515212730266 +123540,617.7000000018778,-0.0568548748371188 +123541,617.7050000018779,-0.05685459760451087 +123542,617.710000001878,-0.056854320429467364 +123543,617.7150000018781,-0.05685404331197677 +123544,617.7200000018782,-0.056853766252027586 +123545,617.7250000018784,-0.056853489249608306 +123546,617.7300000018785,-0.056853212304707426 +123547,617.7350000018786,-0.056852935417313476 +123548,617.7400000018787,-0.056852658587414936 +123549,617.7450000018788,-0.05685238181500033 +123550,617.7500000018789,-0.056852105100058156 +123551,617.755000001879,-0.056851828442576934 +123552,617.7600000018791,-0.05685155184254518 +123553,617.7650000018792,-0.0568512752999514 +123554,617.7700000018793,-0.05685099881478412 +123555,617.7750000018794,-0.056850722387031864 +123556,617.7800000018796,-0.056850446016683154 +123557,617.7850000018797,-0.05685016970372649 +123558,617.7900000018798,-0.05684989344815044 +123559,617.7950000018799,-0.05684961724994351 +123560,617.80000000188,-0.056849341109094224 +123561,617.8050000018801,-0.056849065025591144 +123562,617.8100000018802,-0.05684878899942278 +123563,617.8150000018803,-0.056848513030577676 +123564,617.8200000018804,-0.05684823711904439 +123565,617.8250000018805,-0.05684796126481143 +123566,617.8300000018806,-0.056847685467867365 +123567,617.8350000018808,-0.05684740972820073 +123568,617.8400000018809,-0.05684713404580009 +123569,617.845000001881,-0.05684685842065399 +123570,617.8500000018811,-0.056846582852750974 +123571,617.8550000018812,-0.056846307342079586 +123572,617.8600000018813,-0.056846031888628405 +123573,617.8650000018814,-0.05684575649238599 +123574,617.8700000018815,-0.056845481153340885 +123575,617.8750000018816,-0.05684520587148167 +123576,617.8800000018817,-0.056844930646796896 +123577,617.8850000018818,-0.05684465547927515 +123578,617.890000001882,-0.05684438036890498 +123579,617.8950000018821,-0.05684410531567498 +123580,617.9000000018822,-0.05684383031957371 +123581,617.9050000018823,-0.05684355538058975 +123582,617.9100000018824,-0.05684328049871168 +123583,617.9150000018825,-0.056843005673928075 +123584,617.9200000018826,-0.05684273090622753 +123585,617.9250000018827,-0.05684245619559861 +123586,617.9300000018828,-0.05684218154202992 +123587,617.9350000018829,-0.05684190694551005 +123588,617.940000001883,-0.056841632406027576 +123589,617.9450000018832,-0.0568413579235711 +123590,617.9500000018833,-0.05684108349812921 +123591,617.9550000018834,-0.056840809129690514 +123592,617.9600000018835,-0.05684053481824361 +123593,617.9650000018836,-0.05684026056377709 +123594,617.9700000018837,-0.05683998636627958 +123595,617.9750000018838,-0.056839712225739664 +123596,617.9800000018839,-0.05683943814214597 +123597,617.985000001884,-0.05683916411548708 +123598,617.9900000018841,-0.056838890145751636 +123599,617.9950000018843,-0.056838616232928234 +123600,618.0000000018844,-0.0568383423770055 +123601,618.0050000018845,-0.05683806857797205 +123602,618.0100000018846,-0.05683779483581651 +123603,618.0150000018847,-0.056837521150527495 +123604,618.0200000018848,-0.05683724752209363 +123605,618.0250000018849,-0.05683697395050355 +123606,618.030000001885,-0.05683670043574588 +123607,618.0350000018851,-0.05683642697780925 +123608,618.0400000018852,-0.05683615357668229 +123609,618.0450000018853,-0.05683588023235365 +123610,618.0500000018855,-0.056835606944811955 +123611,618.0550000018856,-0.05683533371404586 +123612,618.0600000018857,-0.05683506054004398 +123613,618.0650000018858,-0.05683478742279499 +123614,618.0700000018859,-0.05683451436228752 +123615,618.075000001886,-0.05683424135851023 +123616,618.0800000018861,-0.05683396841145175 +123617,618.0850000018862,-0.05683369552110075 +123618,618.0900000018863,-0.05683342268744589 +123619,618.0950000018864,-0.05683314991047581 +123620,618.1000000018865,-0.056832877190179175 +123621,618.1050000018867,-0.05683260452654466 +123622,618.1100000018868,-0.0568323319195609 +123623,618.1150000018869,-0.05683205936921658 +123624,618.120000001887,-0.05683178687550037 +123625,618.1250000018871,-0.05683151443840093 +123626,618.1300000018872,-0.05683124205790693 +123627,618.1350000018873,-0.05683096973400707 +123628,618.1400000018874,-0.05683069746669 +123629,618.1450000018875,-0.05683042525594441 +123630,618.1500000018876,-0.05683015310175897 +123631,618.1550000018877,-0.056829881004122375 +123632,618.1600000018879,-0.05682960896302329 +123633,618.165000001888,-0.05682933697845041 +123634,618.1700000018881,-0.056829065050392445 +123635,618.1750000018882,-0.05682879317883806 +123636,618.1800000018883,-0.05682852136377596 +123637,618.1850000018884,-0.05682824960519484 +123638,618.1900000018885,-0.056827977903083395 +123639,618.1950000018886,-0.056827706257430326 +123640,618.2000000018887,-0.056827434668224326 +123641,618.2050000018888,-0.05682716313545411 +123642,618.210000001889,-0.05682689165910838 +123643,618.215000001889,-0.05682662023917584 +123644,618.2200000018892,-0.056826348875645194 +123645,618.2250000018893,-0.05682607756850517 +123646,618.2300000018894,-0.05682580631774448 +123647,618.2350000018895,-0.056825535123351825 +123648,618.2400000018896,-0.05682526398531594 +123649,618.2450000018897,-0.05682499290362554 +123650,618.2500000018898,-0.05682472187826935 +123651,618.2550000018899,-0.05682445090923608 +123652,618.26000000189,-0.05682417999651448 +123653,618.2650000018901,-0.05682390914009326 +123654,618.2700000018903,-0.056823638339961166 +123655,618.2750000018904,-0.05682336759610692 +123656,618.2800000018905,-0.05682309690851926 +123657,618.2850000018906,-0.05682282627718692 +123658,618.2900000018907,-0.05682255570209864 +123659,618.2950000018908,-0.05682228518324317 +123660,618.3000000018909,-0.05682201472060925 +123661,618.305000001891,-0.05682174431418562 +123662,618.3100000018911,-0.05682147396396104 +123663,618.3150000018912,-0.05682120366992425 +123664,618.3200000018913,-0.056820933432064 +123665,618.3250000018915,-0.05682066325036904 +123666,618.3300000018916,-0.056820393124828145 +123667,618.3350000018917,-0.056820123055430063 +123668,618.3400000018918,-0.05681985304216355 +123669,618.3450000018919,-0.056819583085017354 +123670,618.350000001892,-0.05681931318398027 +123671,618.3550000018921,-0.05681904333904106 +123672,618.3600000018922,-0.05681877355018848 +123673,618.3650000018923,-0.05681850381741131 +123674,618.3700000018924,-0.05681823414069832 +123675,618.3750000018925,-0.05681796452003829 +123676,618.3800000018927,-0.05681769495541998 +123677,618.3850000018928,-0.05681742544683219 +123678,618.3900000018929,-0.056817155994263686 +123679,618.395000001893,-0.05681688659770326 +123680,618.4000000018931,-0.056816617257139684 +123681,618.4050000018932,-0.056816347972561757 +123682,618.4100000018933,-0.056816078743958276 +123683,618.4150000018934,-0.05681580957131803 +123684,618.4200000018935,-0.0568155404546298 +123685,618.4250000018936,-0.056815271393882386 +123686,618.4300000018937,-0.05681500238906459 +123687,618.4350000018939,-0.056814733440165216 +123688,618.440000001894,-0.05681446454717306 +123689,618.4450000018941,-0.05681419571007693 +123690,618.4500000018942,-0.056813926928865645 +123691,618.4550000018943,-0.056813658203527996 +123692,618.4600000018944,-0.05681338953405279 +123693,618.4650000018945,-0.056813120920428846 +123694,618.4700000018946,-0.05681285236264499 +123695,618.4750000018947,-0.056812583860690026 +123696,618.4800000018948,-0.05681231541455277 +123697,618.485000001895,-0.05681204702422205 +123698,618.490000001895,-0.05681177868968669 +123699,618.4950000018952,-0.05681151041093551 +123700,618.5000000018953,-0.05681124218795735 +123701,618.5050000018954,-0.05681097402074103 +123702,618.5100000018955,-0.05681070590927537 +123703,618.5150000018956,-0.056810437853549216 +123704,618.5200000018957,-0.05681016985355142 +123705,618.5250000018958,-0.056809901909270794 +123706,618.5300000018959,-0.05680963402069618 +123707,618.535000001896,-0.056809366187816436 +123708,618.5400000018961,-0.056809098410620394 +123709,618.5450000018963,-0.056808830689096895 +123710,618.5500000018964,-0.056808563023234795 +123711,618.5550000018965,-0.05680829541302295 +123712,618.5600000018966,-0.056808027858450204 +123713,618.5650000018967,-0.05680776035950541 +123714,618.5700000018968,-0.05680749291617744 +123715,618.5750000018969,-0.05680722552845514 +123716,618.580000001897,-0.05680695819632736 +123717,618.5850000018971,-0.05680669091978298 +123718,618.5900000018972,-0.05680642369881086 +123719,618.5950000018973,-0.056806156533399856 +123720,618.6000000018975,-0.05680588942353886 +123721,618.6050000018976,-0.05680562236921672 +123722,618.6100000018977,-0.05680535537042232 +123723,618.6150000018978,-0.05680508842714454 +123724,618.6200000018979,-0.05680482153937224 +123725,618.625000001898,-0.05680455470709433 +123726,618.6300000018981,-0.05680428793029965 +123727,618.6350000018982,-0.05680402120897712 +123728,618.6400000018983,-0.056803754543115606 +123729,618.6450000018984,-0.056803487932704004 +123730,618.6500000018985,-0.056803221377731195 +123731,618.6550000018987,-0.056802954878186075 +123732,618.6600000018988,-0.05680268843405753 +123733,618.6650000018989,-0.056802422045334484 +123734,618.670000001899,-0.0568021557120058 +123735,618.6750000018991,-0.0568018894340604 +123736,618.6800000018992,-0.056801623211487184 +123737,618.6850000018993,-0.05680135704427505 +123738,618.6900000018994,-0.0568010909324129 +123739,618.6950000018995,-0.05680082487588966 +123740,618.7000000018996,-0.05680055887469422 +123741,618.7050000018997,-0.0568002929288155 +123742,618.7100000018999,-0.05680002703824242 +123743,618.7150000019,-0.05679976120296389 +123744,618.7200000019001,-0.05679949542296883 +123745,618.7250000019002,-0.05679922969824617 +123746,618.7300000019003,-0.05679896402878481 +123747,618.7350000019004,-0.056798698414573696 +123748,618.7400000019005,-0.056798432855601745 +123749,618.7450000019006,-0.0567981673518579 +123750,618.7500000019007,-0.05679790190333108 +123751,618.7550000019008,-0.05679763651001022 +123752,618.760000001901,-0.05679737117188425 +123753,618.7650000019011,-0.056797105888942115 +123754,618.7700000019012,-0.05679684066117275 +123755,618.7750000019013,-0.0567965754885651 +123756,618.7800000019014,-0.056796310371108105 +123757,618.7850000019015,-0.05679604530879071 +123758,618.7900000019016,-0.056795780301601866 +123759,618.7950000019017,-0.05679551534953052 +123760,618.8000000019018,-0.05679525045256563 +123761,618.8050000019019,-0.05679498561069613 +123762,618.810000001902,-0.056794720823910995 +123763,618.8150000019021,-0.056794456092199186 +123764,618.8200000019023,-0.05679419141554965 +123765,618.8250000019024,-0.05679392679395136 +123766,618.8300000019025,-0.05679366222739327 +123767,618.8350000019026,-0.05679339771586434 +123768,618.8400000019027,-0.056793133259353555 +123769,618.8450000019028,-0.056792868857849885 +123770,618.8500000019029,-0.05679260451134229 +123771,618.855000001903,-0.05679234021981975 +123772,618.8600000019031,-0.05679207598327125 +123773,618.8650000019032,-0.05679181180168576 +123774,618.8700000019033,-0.05679154767505224 +123775,618.8750000019035,-0.0567912836033597 +123776,618.8800000019036,-0.056791019586597116 +123777,618.8850000019037,-0.05679075562475349 +123778,618.8900000019038,-0.05679049171781779 +123779,618.8950000019039,-0.056790227865779 +123780,618.900000001904,-0.05678996406862615 +123781,618.9050000019041,-0.0567897003263482 +123782,618.9100000019042,-0.05678943663893415 +123783,618.9150000019043,-0.05678917300637302 +123784,618.9200000019044,-0.0567889094286538 +123785,618.9250000019046,-0.05678864590576548 +123786,618.9300000019047,-0.056788382437697085 +123787,618.9350000019048,-0.05678811902443761 +123788,618.9400000019049,-0.05678785566597607 +123789,618.945000001905,-0.05678759236230147 +123790,618.9500000019051,-0.05678732911340282 +123791,618.9550000019052,-0.05678706591926915 +123792,618.9600000019053,-0.05678680277988947 +123793,618.9650000019054,-0.0567865396952528 +123794,618.9700000019055,-0.056786276665348155 +123795,618.9750000019056,-0.05678601369016457 +123796,618.9800000019058,-0.056785750769691064 +123797,618.9850000019059,-0.05678548790391667 +123798,618.990000001906,-0.05678522509283042 +123799,618.9950000019061,-0.05678496233642133 +123800,619.0000000019062,-0.05678469963467845 +123801,619.0050000019063,-0.056784436987590794 +123802,619.0100000019064,-0.05678417439514742 +123803,619.0150000019065,-0.05678391185733736 +123804,619.0200000019066,-0.05678364937414966 +123805,619.0250000019067,-0.05678338694557337 +123806,619.0300000019068,-0.056783124571597524 +123807,619.035000001907,-0.05678286225221118 +123808,619.0400000019071,-0.05678259998740337 +123809,619.0450000019072,-0.056782337777163176 +123810,619.0500000019073,-0.05678207562147963 +123811,619.0550000019074,-0.0567818135203418 +123812,619.0600000019075,-0.05678155147373873 +123813,619.0650000019076,-0.05678128948165949 +123814,619.0700000019077,-0.056781027544093136 +123815,619.0750000019078,-0.05678076566102874 +123816,619.0800000019079,-0.056780503832455365 +123817,619.085000001908,-0.05678024205836208 +123818,619.0900000019082,-0.05677998033873794 +123819,619.0950000019083,-0.05677971867357205 +123820,619.1000000019084,-0.05677945706285347 +123821,619.1050000019085,-0.05677919550657127 +123822,619.1100000019086,-0.05677893400471453 +123823,619.1150000019087,-0.05677867255727233 +123824,619.1200000019088,-0.05677841116423376 +123825,619.1250000019089,-0.056778149825587904 +123826,619.130000001909,-0.056777888541323845 +123827,619.1350000019091,-0.05677762731143066 +123828,619.1400000019092,-0.05677736613589747 +123829,619.1450000019094,-0.05677710501471334 +123830,619.1500000019095,-0.056776843947867375 +123831,619.1550000019096,-0.05677658293534867 +123832,619.1600000019097,-0.05677632197714634 +123833,619.1650000019098,-0.056776061073249465 +123834,619.1700000019099,-0.05677580022364715 +123835,619.17500000191,-0.05677553942832852 +123836,619.1800000019101,-0.05677527868728265 +123837,619.1850000019102,-0.056775018000498674 +123838,619.1900000019103,-0.056774757367965695 +123839,619.1950000019104,-0.05677449678967283 +123840,619.2000000019106,-0.05677423626560918 +123841,619.2050000019107,-0.056773975795763876 +123842,619.2100000019108,-0.05677371538012604 +123843,619.2150000019109,-0.05677345501868478 +123844,619.220000001911,-0.05677319471142924 +123845,619.2250000019111,-0.05677293445834853 +123846,619.2300000019112,-0.056772674259431784 +123847,619.2350000019113,-0.05677241411466812 +123848,619.2400000019114,-0.05677215402404669 +123849,619.2450000019115,-0.056771893987556596 +123850,619.2500000019116,-0.056771634005187 +123851,619.2550000019118,-0.056771374076927034 +123852,619.2600000019119,-0.05677111420276583 +123853,619.265000001912,-0.05677085438269253 +123854,619.2700000019121,-0.056770594616696285 +123855,619.2750000019122,-0.05677033490476625 +123856,619.2800000019123,-0.05677007524689155 +123857,619.2850000019124,-0.05676981564306135 +123858,619.2900000019125,-0.0567695560932648 +123859,619.2950000019126,-0.05676929659749104 +123860,619.3000000019127,-0.056769037155729236 +123861,619.3050000019128,-0.056768777767968556 +123862,619.310000001913,-0.05676851843419815 +123863,619.3150000019131,-0.05676825915440716 +123864,619.3200000019132,-0.056767999928584785 +123865,619.3250000019133,-0.05676774075672018 +123866,619.3300000019134,-0.05676748163880249 +123867,619.3350000019135,-0.05676722257482092 +123868,619.3400000019136,-0.05676696356476463 +123869,619.3450000019137,-0.05676670460862278 +123870,619.3500000019138,-0.05676644570638455 +123871,619.3550000019139,-0.05676618685803912 +123872,619.360000001914,-0.05676592806357569 +123873,619.3650000019142,-0.056765669322983416 +123874,619.3700000019143,-0.05676541063625149 +123875,619.3750000019144,-0.056765152003369096 +123876,619.3800000019145,-0.056764893424325426 +123877,619.3850000019146,-0.05676463489910967 +123878,619.3900000019147,-0.05676437642771102 +123879,619.3950000019148,-0.05676411801011865 +123880,619.4000000019149,-0.056763859646321795 +123881,619.405000001915,-0.05676360133630962 +123882,619.4100000019151,-0.05676334308007134 +123883,619.4150000019152,-0.05676308487759616 +123884,619.4200000019154,-0.05676282672887328 +123885,619.4250000019155,-0.056762568633891904 +123886,619.4300000019156,-0.056762310592641245 +123887,619.4350000019157,-0.0567620526051105 +123888,619.4400000019158,-0.0567617946712889 +123889,619.4450000019159,-0.05676153679116564 +123890,619.450000001916,-0.056761278964729954 +123891,619.4550000019161,-0.05676102119197104 +123892,619.4600000019162,-0.05676076347287814 +123893,619.4650000019163,-0.056760505807440464 +123894,619.4700000019164,-0.056760248195647234 +123895,619.4750000019166,-0.05675999063748769 +123896,619.4800000019167,-0.05675973313295104 +123897,619.4850000019168,-0.056759475682026536 +123898,619.4900000019169,-0.05675921828470339 +123899,619.495000001917,-0.056758960940970854 +123900,619.5000000019171,-0.05675870365081815 +123901,619.5050000019172,-0.05675844641423451 +123902,619.5100000019173,-0.056758189231209205 +123903,619.5150000019174,-0.05675793210173144 +123904,619.5200000019175,-0.05675767502579049 +123905,619.5250000019176,-0.056757418003375595 +123906,619.5300000019178,-0.056757161034475985 +123907,619.5350000019179,-0.05675690411908093 +123908,619.540000001918,-0.05675664725717967 +123909,619.5450000019181,-0.05675639044876147 +123910,619.5500000019182,-0.056756133693815575 +123911,619.5550000019183,-0.05675587699233124 +123912,619.5600000019184,-0.05675562034429774 +123913,619.5650000019185,-0.05675536374970433 +123914,619.5700000019186,-0.05675510720854028 +123915,619.5750000019187,-0.05675485072079485 +123916,619.5800000019188,-0.05675459428645731 +123917,619.585000001919,-0.05675433790551692 +123918,619.5900000019191,-0.05675408157796297 +123919,619.5950000019192,-0.05675382530378472 +123920,619.6000000019193,-0.05675356908297147 +123921,619.6050000019194,-0.056753312915512465 +123922,619.6100000019195,-0.05675305680139701 +123923,619.6150000019196,-0.056752800740614374 +123924,619.6200000019197,-0.05675254473315384 +123925,619.6250000019198,-0.0567522887790047 +123926,619.6300000019199,-0.05675203287815624 +123927,619.63500000192,-0.056751777030597764 +123928,619.6400000019202,-0.056751521236318554 +123929,619.6450000019203,-0.056751265495307894 +123930,619.6500000019204,-0.0567510098075551 +123931,619.6550000019205,-0.05675075417304944 +123932,619.6600000019206,-0.056750498591780246 +123933,619.6650000019207,-0.056750243063736806 +123934,619.6700000019208,-0.056749987588908424 +123935,619.6750000019209,-0.056749732167284406 +123936,619.680000001921,-0.05674947679885406 +123937,619.6850000019211,-0.056749221483606706 +123938,619.6900000019212,-0.05674896622153163 +123939,619.6950000019214,-0.05674871101261818 +123940,619.7000000019215,-0.056748455856855645 +123941,619.7050000019216,-0.056748200754233355 +123942,619.7100000019217,-0.05674794570474063 +123943,619.7150000019218,-0.05674769070836679 +123944,619.7200000019219,-0.05674743576510116 +123945,619.725000001922,-0.056747180874933065 +123946,619.7300000019221,-0.056746926037851836 +123947,619.7350000019222,-0.0567466712538468 +123948,619.7400000019223,-0.056746416522907295 +123949,619.7450000019224,-0.05674616184502266 +123950,619.7500000019226,-0.056745907220182204 +123951,619.7550000019227,-0.056745652648375285 +123952,619.7600000019228,-0.056745398129591236 +123953,619.7650000019229,-0.05674514366381942 +123954,619.770000001923,-0.05674488925104916 +123955,619.7750000019231,-0.056744634891269796 +123956,619.7800000019232,-0.05674438058447069 +123957,619.7850000019233,-0.056744126330641194 +123958,619.7900000019234,-0.05674387212977065 +123959,619.7950000019235,-0.05674361798184842 +123960,619.8000000019236,-0.05674336388686385 +123961,619.8050000019238,-0.0567431098448063 +123962,619.8100000019239,-0.05674285585566513 +123963,619.815000001924,-0.0567426019194297 +123964,619.8200000019241,-0.056742348036089386 +123965,619.8250000019242,-0.05674209420563354 +123966,619.8300000019243,-0.05674184042805153 +123967,619.8350000019244,-0.05674158670333274 +123968,619.8400000019245,-0.05674133303146654 +123969,619.8450000019246,-0.05674107941244229 +123970,619.8500000019247,-0.056740825846249364 +123971,619.8550000019249,-0.05674057233287715 +123972,619.860000001925,-0.05674031887231503 +123973,619.8650000019251,-0.056740065464552375 +123974,619.8700000019252,-0.05673981210957857 +123975,619.8750000019253,-0.05673955880738301 +123976,619.8800000019254,-0.05673930555795507 +123977,619.8850000019255,-0.05673905236128414 +123978,619.8900000019256,-0.05673879921735963 +123979,619.8950000019257,-0.056738546126170915 +123980,619.9000000019258,-0.056738293087707406 +123981,619.9050000019259,-0.05673804010195848 +123982,619.910000001926,-0.05673778716891354 +123983,619.9150000019262,-0.05673753428856201 +123984,619.9200000019263,-0.056737281460893275 +123985,619.9250000019264,-0.05673702868589673 +123986,619.9300000019265,-0.05673677596356181 +123987,619.9350000019266,-0.05673652329387791 +123988,619.9400000019267,-0.05673627067683442 +123989,619.9450000019268,-0.05673601811242078 +123990,619.9500000019269,-0.05673576560062641 +123991,619.955000001927,-0.05673551314144071 +123992,619.9600000019271,-0.0567352607348531 +123993,619.9650000019273,-0.056735008380853005 +123994,619.9700000019274,-0.05673475607942984 +123995,619.9750000019275,-0.056734503830573046 +123996,619.9800000019276,-0.056734251634272044 +123997,619.9850000019277,-0.05673399949051625 +123998,619.9900000019278,-0.05673374739929511 +123999,619.9950000019279,-0.05673349536059806 +124000,620.000000001928,-0.056733243374414516 +124001,620.0050000019281,-0.056732991440733925 +124002,620.0100000019282,-0.05673273955954572 +124003,620.0150000019283,-0.05673248773083935 +124004,620.0200000019285,-0.05673223595460426 +124005,620.0250000019286,-0.056731984230829896 +124006,620.0300000019287,-0.05673173255950569 +124007,620.0350000019288,-0.056731480940621096 +124008,620.0400000019289,-0.05673122937416557 +124009,620.045000001929,-0.05673097786012856 +124010,620.0500000019291,-0.05673072639849953 +124011,620.0550000019292,-0.05673047498926792 +124012,620.0600000019293,-0.05673022363242319 +124013,620.0650000019294,-0.05672997232795481 +124014,620.0700000019295,-0.05672972107585224 +124015,620.0750000019297,-0.05672946987610494 +124016,620.0800000019298,-0.05672921872870238 +124017,620.0850000019299,-0.05672896763363403 +124018,620.09000000193,-0.05672871659088935 +124019,620.0950000019301,-0.05672846560045783 +124020,620.1000000019302,-0.05672821466232893 +124021,620.1050000019303,-0.05672796377649212 +124022,620.1100000019304,-0.05672771294293689 +124023,620.1150000019305,-0.05672746216165271 +124024,620.1200000019306,-0.05672721143262908 +124025,620.1250000019307,-0.05672696075585546 +124026,620.1300000019309,-0.056726710131321356 +124027,620.135000001931,-0.05672645955901625 +124028,620.1400000019311,-0.05672620903892962 +124029,620.1450000019312,-0.05672595857105097 +124030,620.1500000019313,-0.056725708155369786 +124031,620.1550000019314,-0.05672545779187557 +124032,620.1600000019315,-0.056725207480557815 +124033,620.1650000019316,-0.05672495722140602 +124034,620.1700000019317,-0.05672470701440969 +124035,620.1750000019318,-0.056724456859558334 +124036,620.180000001932,-0.05672420675684144 +124037,620.185000001932,-0.05672395670624853 +124038,620.1900000019322,-0.05672370670776911 +124039,620.1950000019323,-0.056723456761392684 +124040,620.2000000019324,-0.05672320686710877 +124041,620.2050000019325,-0.05672295702490689 +124042,620.2100000019326,-0.05672270723477655 +124043,620.2150000019327,-0.05672245749670726 +124044,620.2200000019328,-0.056722207810688575 +124045,620.2250000019329,-0.056721958176709976 +124046,620.230000001933,-0.056721708594761014 +124047,620.2350000019331,-0.05672145906483121 +124048,620.2400000019333,-0.05672120958691009 +124049,620.2450000019334,-0.05672096016098719 +124050,620.2500000019335,-0.05672071078705204 +124051,620.2550000019336,-0.05672046146509418 +124052,620.2600000019337,-0.056720212195103134 +124053,620.2650000019338,-0.05671996297706845 +124054,620.2700000019339,-0.056719713810979656 +124055,620.275000001934,-0.05671946469682631 +124056,620.2800000019341,-0.05671921563459795 +124057,620.2850000019342,-0.056718966624284106 +124058,620.2900000019343,-0.05671871766587435 +124059,620.2950000019345,-0.05671846875935823 +124060,620.3000000019346,-0.05671821990472529 +124061,620.3050000019347,-0.05671797110196508 +124062,620.3100000019348,-0.05671772235106717 +124063,620.3150000019349,-0.0567174736520211 +124064,620.320000001935,-0.05671722500481644 +124065,620.3250000019351,-0.05671697640944275 +124066,620.3300000019352,-0.0567167278658896 +124067,620.3350000019353,-0.05671647937414655 +124068,620.3400000019354,-0.05671623093420315 +124069,620.3450000019355,-0.056715982546048996 +124070,620.3500000019357,-0.05671573420967364 +124071,620.3550000019358,-0.05671548592506667 +124072,620.3600000019359,-0.05671523769221766 +124073,620.365000001936,-0.05671498951111617 +124074,620.3700000019361,-0.05671474138175181 +124075,620.3750000019362,-0.05671449330411413 +124076,620.3800000019363,-0.056714245278192736 +124077,620.3850000019364,-0.05671399730397719 +124078,620.3900000019365,-0.05671374938145711 +124079,620.3950000019366,-0.05671350151062205 +124080,620.4000000019367,-0.05671325369146163 +124081,620.4050000019369,-0.05671300592396543 +124082,620.410000001937,-0.056712758208123035 +124083,620.4150000019371,-0.05671251054392405 +124084,620.4200000019372,-0.05671226293135809 +124085,620.4250000019373,-0.05671201537041472 +124086,620.4300000019374,-0.05671176786108356 +124087,620.4350000019375,-0.056711520403354226 +124088,620.4400000019376,-0.05671127299721632 +124089,620.4450000019377,-0.056711025642659424 +124090,620.4500000019378,-0.05671077833967318 +124091,620.455000001938,-0.056710531088247196 +124092,620.460000001938,-0.056710283888371064 +124093,620.4650000019382,-0.05671003674003443 +124094,620.4700000019383,-0.056709789643226885 +124095,620.4750000019384,-0.056709542597938055 +124096,620.4800000019385,-0.05670929560415758 +124097,620.4850000019386,-0.05670904866187506 +124098,620.4900000019387,-0.05670880177108013 +124099,620.4950000019388,-0.056708554931762425 +124100,620.5000000019389,-0.056708308143911555 +124101,620.505000001939,-0.05670806140751716 +124102,620.5100000019391,-0.05670781472256888 +124103,620.5150000019393,-0.05670756808905635 +124104,620.5200000019394,-0.05670732150696921 +124105,620.5250000019395,-0.05670707497629708 +124106,620.5300000019396,-0.05670682849702962 +124107,620.5350000019397,-0.05670658206915646 +124108,620.5400000019398,-0.05670633569266724 +124109,620.5450000019399,-0.05670608936755163 +124110,620.55000000194,-0.05670584309379926 +124111,620.5550000019401,-0.05670559687139979 +124112,620.5600000019402,-0.05670535070034286 +124113,620.5650000019403,-0.05670510458061814 +124114,620.5700000019405,-0.05670485851221528 +124115,620.5750000019406,-0.05670461249512394 +124116,620.5800000019407,-0.05670436652933377 +124117,620.5850000019408,-0.05670412061483444 +124118,620.5900000019409,-0.05670387475161562 +124119,620.595000001941,-0.056703628939666954 +124120,620.6000000019411,-0.05670338317897814 +124121,620.6050000019412,-0.05670313746953883 +124122,620.6100000019413,-0.0567028918113387 +124123,620.6150000019414,-0.056702646204367414 +124124,620.6200000019415,-0.056702400648614655 +124125,620.6250000019417,-0.05670215514407011 +124126,620.6300000019418,-0.05670190969072344 +124127,620.6350000019419,-0.05670166428856433 +124128,620.640000001942,-0.05670141893758247 +124129,620.6450000019421,-0.056701173637767555 +124130,620.6500000019422,-0.05670092838910925 +124131,620.6550000019423,-0.056700683191597254 +124132,620.6600000019424,-0.05670043804522125 +124133,620.6650000019425,-0.05670019294997094 +124134,620.6700000019426,-0.056699947905836025 +124135,620.6750000019427,-0.05669970291280619 +124136,620.6800000019429,-0.056699457970871135 +124137,620.685000001943,-0.05669921308002057 +124138,620.6900000019431,-0.05669896824024419 +124139,620.6950000019432,-0.05669872345153168 +124140,620.7000000019433,-0.05669847871387278 +124141,620.7050000019434,-0.056698234027257176 +124142,620.7100000019435,-0.056697989391674586 +124143,620.7150000019436,-0.05669774480711472 +124144,620.7200000019437,-0.056697500273567285 +124145,620.7250000019438,-0.05669725579102202 +124146,620.730000001944,-0.056697011359468606 +124147,620.7350000019441,-0.05669676697889679 +124148,620.7400000019442,-0.05669652264929628 +124149,620.7450000019443,-0.056696278370656814 +124150,620.7500000019444,-0.0566960341429681 +124151,620.7550000019445,-0.05669578996621988 +124152,620.7600000019446,-0.05669554584040188 +124153,620.7650000019447,-0.05669530176550382 +124154,620.7700000019448,-0.05669505774151544 +124155,620.7750000019449,-0.05669481376842647 +124156,620.780000001945,-0.05669456984622666 +124157,620.7850000019451,-0.056694325974905736 +124158,620.7900000019453,-0.05669408215445344 +124159,620.7950000019454,-0.05669383838485952 +124160,620.8000000019455,-0.05669359466611371 +124161,620.8050000019456,-0.05669335099820577 +124162,620.8100000019457,-0.05669310738112544 +124163,620.8150000019458,-0.05669286381486248 +124164,620.8200000019459,-0.05669262029940662 +124165,620.825000001946,-0.05669237683474762 +124166,620.8300000019461,-0.05669213342087525 +124167,620.8350000019462,-0.05669189005777926 +124168,620.8400000019464,-0.0566916467454494 +124169,620.8450000019465,-0.05669140348387545 +124170,620.8500000019466,-0.05669116027304716 +124171,620.8550000019467,-0.0566909171129543 +124172,620.8600000019468,-0.05669067400358662 +124173,620.8650000019469,-0.05669043094493392 +124174,620.870000001947,-0.05669018793698595 +124175,620.8750000019471,-0.05668994497973249 +124176,620.8800000019472,-0.0566897020731633 +124177,620.8850000019473,-0.05668945921726818 +124178,620.8900000019474,-0.0566892164120369 +124179,620.8950000019476,-0.05668897365745923 +124180,620.9000000019477,-0.05668873095352497 +124181,620.9050000019478,-0.05668848830022388 +124182,620.9100000019479,-0.05668824569754577 +124183,620.915000001948,-0.05668800314548043 +124184,620.9200000019481,-0.056687760644017614 +124185,620.9250000019482,-0.05668751819314716 +124186,620.9300000019483,-0.05668727579285883 +124187,620.9350000019484,-0.05668703344314242 +124188,620.9400000019485,-0.056686791143987746 +124189,620.9450000019486,-0.05668654889538459 +124190,620.9500000019488,-0.05668630669732277 +124191,620.9550000019489,-0.05668606454979207 +124192,620.960000001949,-0.05668582245278231 +124193,620.9650000019491,-0.05668558040628328 +124194,620.9700000019492,-0.056685338410284815 +124195,620.9750000019493,-0.05668509646477671 +124196,620.9800000019494,-0.05668485456974877 +124197,620.9850000019495,-0.05668461272519082 +124198,620.9900000019496,-0.05668437093109267 +124199,620.9950000019497,-0.05668412918744414 +124200,621.0000000019498,-0.056683887494235065 +124201,621.00500000195,-0.05668364585145524 +124202,621.0100000019501,-0.0566834042590945 +124203,621.0150000019502,-0.05668316271714268 +124204,621.0200000019503,-0.0566829212255896 +124205,621.0250000019504,-0.056682679784425094 +124206,621.0300000019505,-0.05668243839363899 +124207,621.0350000019506,-0.05668219705322112 +124208,621.0400000019507,-0.05668195576316131 +124209,621.0450000019508,-0.05668171452344942 +124210,621.0500000019509,-0.056681473334075264 +124211,621.055000001951,-0.05668123219502871 +124212,621.0600000019512,-0.05668099110629959 +124213,621.0650000019513,-0.05668075006787774 +124214,621.0700000019514,-0.05668050907975301 +124215,621.0750000019515,-0.05668026814191525 +124216,621.0800000019516,-0.0566800272543543 +124217,621.0850000019517,-0.05667978641706003 +124218,621.0900000019518,-0.056679545630022275 +124219,621.0950000019519,-0.056679304893230906 +124220,621.100000001952,-0.056679064206675775 +124221,621.1050000019521,-0.05667882357034675 +124222,621.1100000019522,-0.056678582984233686 +124223,621.1150000019524,-0.056678342448326445 +124224,621.1200000019525,-0.05667810196261489 +124225,621.1250000019526,-0.056677861527088896 +124226,621.1300000019527,-0.05667762114173831 +124227,621.1350000019528,-0.05667738080655303 +124228,621.1400000019529,-0.05667714052152293 +124229,621.145000001953,-0.05667690028663786 +124230,621.1500000019531,-0.056676660101887724 +124231,621.1550000019532,-0.05667641996726238 +124232,621.1600000019533,-0.05667617988275171 +124233,621.1650000019534,-0.05667593984834561 +124234,621.1700000019536,-0.056675699864033945 +124235,621.1750000019537,-0.056675459929806625 +124236,621.1800000019538,-0.05667522004565351 +124237,621.1850000019539,-0.0566749802115645 +124238,621.190000001954,-0.0566747404275295 +124239,621.1950000019541,-0.05667450069353839 +124240,621.2000000019542,-0.056674261009581076 +124241,621.2050000019543,-0.05667402137564744 +124242,621.2100000019544,-0.05667378179172739 +124243,621.2150000019545,-0.056673542257810836 +124244,621.2200000019546,-0.05667330277388766 +124245,621.2250000019548,-0.056673063339947774 +124246,621.2300000019549,-0.05667282395598109 +124247,621.235000001955,-0.05667258462197752 +124248,621.2400000019551,-0.05667234533792697 +124249,621.2450000019552,-0.05667210610381935 +124250,621.2500000019553,-0.05667186691964457 +124251,621.2550000019554,-0.05667162778539256 +124252,621.2600000019555,-0.05667138870105322 +124253,621.2650000019556,-0.05667114966661649 +124254,621.2700000019557,-0.056670910682072265 +124255,621.2750000019558,-0.05667067174741048 +124256,621.280000001956,-0.05667043286262107 +124257,621.2850000019561,-0.05667019402769395 +124258,621.2900000019562,-0.05666995524261907 +124259,621.2950000019563,-0.05666971650738634 +124260,621.3000000019564,-0.0566694778219857 +124261,621.3050000019565,-0.05666923918640707 +124262,621.3100000019566,-0.0566690006006404 +124263,621.3150000019567,-0.05666876206467564 +124264,621.3200000019568,-0.0566685235785027 +124265,621.3250000019569,-0.05666828514211156 +124266,621.330000001957,-0.05666804675549213 +124267,621.3350000019572,-0.05666780841863436 +124268,621.3400000019573,-0.056667570131528226 +124269,621.3450000019574,-0.056667331894163654 +124270,621.3500000019575,-0.05666709370653059 +124271,621.3550000019576,-0.056666855568619015 +124272,621.3600000019577,-0.05666661748041885 +124273,621.3650000019578,-0.05666637944192007 +124274,621.3700000019579,-0.05666614145311265 +124275,621.375000001958,-0.05666590351398651 +124276,621.3800000019581,-0.056665665624531646 +124277,621.3850000019582,-0.056665427784738 +124278,621.3900000019584,-0.05666518999459556 +124279,621.3950000019585,-0.05666495225409429 +124280,621.4000000019586,-0.05666471456322414 +124281,621.4050000019587,-0.05666447692197509 +124282,621.4100000019588,-0.05666423933033714 +124283,621.4150000019589,-0.05666400178830023 +124284,621.420000001959,-0.05666376429585435 +124285,621.4250000019591,-0.05666352685298949 +124286,621.4300000019592,-0.05666328945969562 +124287,621.4350000019593,-0.05666305211596273 +124288,621.4400000019594,-0.05666281482178079 +124289,621.4450000019596,-0.0566625775771398 +124290,621.4500000019597,-0.05666234038202974 +124291,621.4550000019598,-0.056662103236440615 +124292,621.4600000019599,-0.05666186614036241 +124293,621.46500000196,-0.05666162909378511 +124294,621.4700000019601,-0.05666139209669872 +124295,621.4750000019602,-0.056661155149093236 +124296,621.4800000019603,-0.05666091825095865 +124297,621.4850000019604,-0.05666068140228497 +124298,621.4900000019605,-0.0566604446030622 +124299,621.4950000019606,-0.05666020785328035 +124300,621.5000000019608,-0.05665997115292943 +124301,621.5050000019609,-0.056659734501999424 +124302,621.510000001961,-0.05665949790048036 +124303,621.5150000019611,-0.056659261348362265 +124304,621.5200000019612,-0.056659024845635134 +124305,621.5250000019613,-0.05665878839228899 +124306,621.5300000019614,-0.056658551988313835 +124307,621.5350000019615,-0.05665831563369972 +124308,621.5400000019616,-0.056658079328436646 +124309,621.5450000019617,-0.05665784307251464 +124310,621.5500000019618,-0.05665760686592373 +124311,621.555000001962,-0.05665737070865393 +124312,621.5600000019621,-0.05665713460069529 +124313,621.5650000019622,-0.056656898542037835 +124314,621.5700000019623,-0.05665666253267159 +124315,621.5750000019624,-0.0566564265725866 +124316,621.5800000019625,-0.056656190661772896 +124317,621.5850000019626,-0.056655954800220516 +124318,621.5900000019627,-0.056655718987919504 +124319,621.5950000019628,-0.056655483224859894 +124320,621.6000000019629,-0.05665524751103173 +124321,621.605000001963,-0.05665501184642507 +124322,621.6100000019632,-0.056654776231029956 +124323,621.6150000019633,-0.05665454066483643 +124324,621.6200000019634,-0.056654305147834566 +124325,621.6250000019635,-0.056654069680014386 +124326,621.6300000019636,-0.05665383426136597 +124327,621.6350000019637,-0.05665359889187937 +124328,621.6400000019638,-0.05665336357154463 +124329,621.6450000019639,-0.056653128300351824 +124330,621.650000001964,-0.056652893078291015 +124331,621.6550000019641,-0.05665265790535226 +124332,621.6600000019642,-0.056652422781525616 +124333,621.6650000019644,-0.05665218770680117 +124334,621.6700000019645,-0.056651952681168995 +124335,621.6750000019646,-0.056651717704619145 +124336,621.6800000019647,-0.056651482777141694 +124337,621.6850000019648,-0.05665124789872674 +124338,621.6900000019649,-0.05665101306936434 +124339,621.695000001965,-0.056650778289044565 +124340,621.7000000019651,-0.05665054355775752 +124341,621.7050000019652,-0.056650308875493265 +124342,621.7100000019653,-0.0566500742422419 +124343,621.7150000019654,-0.056649839657993514 +124344,621.7200000019656,-0.05664960512273818 +124345,621.7250000019657,-0.056649370636466 +124346,621.7300000019658,-0.05664913619916706 +124347,621.7350000019659,-0.05664890181083146 +124348,621.740000001966,-0.05664866747144929 +124349,621.7450000019661,-0.05664843318101065 +124350,621.7500000019662,-0.05664819893950562 +124351,621.7550000019663,-0.05664796474692433 +124352,621.7600000019664,-0.056647730603256875 +124353,621.7650000019665,-0.05664749650849335 +124354,621.7700000019667,-0.056647262462623874 +124355,621.7750000019668,-0.056647028465638544 +124356,621.7800000019669,-0.056646794517527466 +124357,621.785000001967,-0.05664656061828077 +124358,621.7900000019671,-0.05664632676788857 +124359,621.7950000019672,-0.05664609296634096 +124360,621.8000000019673,-0.05664585921362807 +124361,621.8050000019674,-0.05664562550974002 +124362,621.8100000019675,-0.056645391854666924 +124363,621.8150000019676,-0.056645158248398914 +124364,621.8200000019677,-0.05664492469092612 +124365,621.8250000019679,-0.056644691182238645 +124366,621.830000001968,-0.05664445772232664 +124367,621.8350000019681,-0.05664422431118023 +124368,621.8400000019682,-0.05664399094878954 +124369,621.8450000019683,-0.05664375763514471 +124370,621.8500000019684,-0.056643524370235884 +124371,621.8550000019685,-0.05664329115405317 +124372,621.8600000019686,-0.05664305798658674 +124373,621.8650000019687,-0.05664282486782672 +124374,621.8700000019688,-0.05664259179776326 +124375,621.8750000019689,-0.0566423587763865 +124376,621.880000001969,-0.056642125803686584 +124377,621.8850000019692,-0.05664189287965367 +124378,621.8900000019693,-0.056641660004277894 +124379,621.8950000019694,-0.05664142717754942 +124380,621.9000000019695,-0.0566411943994584 +124381,621.9050000019696,-0.056640961669994994 +124382,621.9100000019697,-0.056640728989149354 +124383,621.9150000019698,-0.05664049635691163 +124384,621.9200000019699,-0.056640263773272 +124385,621.92500000197,-0.05664003123822062 +124386,621.9300000019701,-0.05663979875174765 +124387,621.9350000019703,-0.05663956631384326 +124388,621.9400000019704,-0.056639333924497624 +124389,621.9450000019705,-0.05663910158370089 +124390,621.9500000019706,-0.05663886929144326 +124391,621.9550000019707,-0.05663863704771489 +124392,621.9600000019708,-0.05663840485250597 +124393,621.9650000019709,-0.05663817270580667 +124394,621.970000001971,-0.056637940607607164 +124395,621.9750000019711,-0.05663770855789764 +124396,621.9800000019712,-0.05663747655666828 +124397,621.9850000019713,-0.056637244603909266 +124398,621.9900000019715,-0.05663701269961079 +124399,621.9950000019716,-0.056636780843763036 +124400,622.0000000019717,-0.056636549036356204 +124401,622.0050000019718,-0.05663631727738047 +124402,622.0100000019719,-0.05663608556682604 +124403,622.015000001972,-0.056635853904683106 +124404,622.0200000019721,-0.05663562229094186 +124405,622.0250000019722,-0.056635390725592503 +124406,622.0300000019723,-0.05663515920862524 +124407,622.0350000019724,-0.05663492774003028 +124408,622.0400000019725,-0.05663469631979781 +124409,622.0450000019727,-0.056634464947918066 +124410,622.0500000019728,-0.056634233624381226 +124411,622.0550000019729,-0.05663400234917752 +124412,622.060000001973,-0.05663377112229715 +124413,622.0650000019731,-0.05663353994373033 +124414,622.0700000019732,-0.05663330881346728 +124415,622.0750000019733,-0.05663307773149822 +124416,622.0800000019734,-0.05663284669781336 +124417,622.0850000019735,-0.05663261571240294 +124418,622.0900000019736,-0.05663238477525715 +124419,622.0950000019737,-0.05663215388636624 +124420,622.1000000019739,-0.05663192304572044 +124421,622.105000001974,-0.05663169225330997 +124422,622.1100000019741,-0.05663146150912505 +124423,622.1150000019742,-0.05663123081315592 +124424,622.1200000019743,-0.05663100016539282 +124425,622.1250000019744,-0.05663076956582599 +124426,622.1300000019745,-0.05663053901444565 +124427,622.1350000019746,-0.05663030851124204 +124428,622.1400000019747,-0.05663007805620541 +124429,622.1450000019748,-0.056629847649326 +124430,622.150000001975,-0.056629617290594056 +124431,622.155000001975,-0.05662938697999982 +124432,622.1600000019752,-0.05662915671753356 +124433,622.1650000019753,-0.05662892650318551 +124434,622.1700000019754,-0.05662869633694592 +124435,622.1750000019755,-0.056628466218805046 +124436,622.1800000019756,-0.05662823614875313 +124437,622.1850000019757,-0.05662800612678045 +124438,622.1900000019758,-0.056627776152877264 +124439,622.1950000019759,-0.056627546227033816 +124440,622.200000001976,-0.05662731634924039 +124441,622.2050000019761,-0.05662708651948724 +124442,622.2100000019763,-0.056626856737764616 +124443,622.2150000019764,-0.05662662700406281 +124444,622.2200000019765,-0.05662639731837209 +124445,622.2250000019766,-0.05662616768068272 +124446,622.2300000019767,-0.05662593809098496 +124447,622.2350000019768,-0.056625708549269106 +124448,622.2400000019769,-0.05662547905552543 +124449,622.245000001977,-0.056625249609744216 +124450,622.2500000019771,-0.056625020211915726 +124451,622.2550000019772,-0.056624790862030254 +124452,622.2600000019773,-0.05662456156007809 +124453,622.2650000019775,-0.056624332306049525 +124454,622.2700000019776,-0.056624103099934826 +124455,622.2750000019777,-0.0566238739417243 +124456,622.2800000019778,-0.05662364483140823 +124457,622.2850000019779,-0.0566234157689769 +124458,622.290000001978,-0.056623186754420615 +124459,622.2950000019781,-0.056622957787729675 +124460,622.3000000019782,-0.056622728868894384 +124461,622.3050000019783,-0.05662249999790502 +124462,622.3100000019784,-0.056622271174751916 +124463,622.3150000019785,-0.05662204239942536 +124464,622.3200000019787,-0.05662181367191565 +124465,622.3250000019788,-0.056621584992213085 +124466,622.3300000019789,-0.056621356360308 +124467,622.335000001979,-0.0566211277761907 +124468,622.3400000019791,-0.056620899239851495 +124469,622.3450000019792,-0.0566206707512807 +124470,622.3500000019793,-0.05662044231046862 +124471,622.3550000019794,-0.05662021391740559 +124472,622.3600000019795,-0.05661998557208193 +124473,622.3650000019796,-0.05661975727448795 +124474,622.3700000019797,-0.056619529024613986 +124475,622.3750000019799,-0.05661930082245034 +124476,622.38000000198,-0.056619072667987366 +124477,622.3850000019801,-0.05661884456121538 +124478,622.3900000019802,-0.05661861650212471 +124479,622.3950000019803,-0.0566183884907057 +124480,622.4000000019804,-0.05661816052694867 +124481,622.4050000019805,-0.05661793261084397 +124482,622.4100000019806,-0.05661770474238192 +124483,622.4150000019807,-0.05661747692155288 +124484,622.4200000019808,-0.05661724914834718 +124485,622.425000001981,-0.056617021422755175 +124486,622.430000001981,-0.05661679374476719 +124487,622.4350000019812,-0.05661656611437359 +124488,622.4400000019813,-0.05661633853156471 +124489,622.4450000019814,-0.056616110996330904 +124490,622.4500000019815,-0.056615883508662534 +124491,622.4550000019816,-0.05661565606854995 +124492,622.4600000019817,-0.05661542867598351 +124493,622.4650000019818,-0.05661520133095355 +124494,622.4700000019819,-0.05661497403345045 +124495,622.475000001982,-0.05661474678346457 +124496,622.4800000019821,-0.05661451958098627 +124497,622.4850000019823,-0.05661429242600592 +124498,622.4900000019824,-0.056614065318513866 +124499,622.4950000019825,-0.056613838258500505 +124500,622.5000000019826,-0.056613611245956194 +124501,622.5050000019827,-0.0566133842808713 +124502,622.5100000019828,-0.0566131573632362 +124503,622.5150000019829,-0.05661293049304126 +124504,622.520000001983,-0.056612703670276876 +124505,622.5250000019831,-0.05661247689493341 +124506,622.5300000019832,-0.05661225016700125 +124507,622.5350000019833,-0.05661202348647079 +124508,622.5400000019835,-0.0566117968533324 +124509,622.5450000019836,-0.056611570267576454 +124510,622.5500000019837,-0.05661134372919337 +124511,622.5550000019838,-0.056611117238173504 +124512,622.5600000019839,-0.05661089079450728 +124513,622.565000001984,-0.05661066439818508 +124514,622.5700000019841,-0.056610438049197284 +124515,622.5750000019842,-0.056610211747534306 +124516,622.5800000019843,-0.05660998549318654 +124517,622.5850000019844,-0.05660975928614438 +124518,622.5900000019845,-0.056609533126398236 +124519,622.5950000019847,-0.05660930701393851 +124520,622.6000000019848,-0.056609080948755594 +124521,622.6050000019849,-0.05660885493083991 +124522,622.610000001985,-0.05660862896018186 +124523,622.6150000019851,-0.056608403036771865 +124524,622.6200000019852,-0.05660817716060032 +124525,622.6250000019853,-0.05660795133165766 +124526,622.6300000019854,-0.05660772554993429 +124527,622.6350000019855,-0.056607499815420625 +124528,622.6400000019856,-0.05660727412810709 +124529,622.6450000019857,-0.05660704848798412 +124530,622.6500000019859,-0.056606822895042104 +124531,622.655000001986,-0.056606597349271495 +124532,622.6600000019861,-0.05660637185066271 +124533,622.6650000019862,-0.056606146399206185 +124534,622.6700000019863,-0.05660592099489233 +124535,622.6750000019864,-0.05660569563771159 +124536,622.6800000019865,-0.0566054703276544 +124537,622.6850000019866,-0.0566052450647112 +124538,622.6900000019867,-0.056605019848872416 +124539,622.6950000019868,-0.05660479468012851 +124540,622.700000001987,-0.05660456955846989 +124541,622.7050000019871,-0.05660434448388702 +124542,622.7100000019872,-0.056604119456370346 +124543,622.7150000019873,-0.0566038944759103 +124544,622.7200000019874,-0.05660366954249733 +124545,622.7250000019875,-0.056603444656121896 +124546,622.7300000019876,-0.05660321981677446 +124547,622.7350000019877,-0.05660299502444545 +124548,622.7400000019878,-0.05660277027912534 +124549,622.7450000019879,-0.056602545580804575 +124550,622.750000001988,-0.05660232092947361 +124551,622.7550000019882,-0.05660209632512292 +124552,622.7600000019883,-0.05660187176774295 +124553,622.7650000019884,-0.056601647257324174 +124554,622.7700000019885,-0.05660142279385707 +124555,622.7750000019886,-0.05660119837733208 +124556,622.7800000019887,-0.056600974007739696 +124557,622.7850000019888,-0.05660074968507037 +124558,622.7900000019889,-0.05660052540931459 +124559,622.795000001989,-0.05660030118046281 +124560,622.8000000019891,-0.056600076998505514 +124561,622.8050000019892,-0.0565998528634332 +124562,622.8100000019894,-0.056599628775236326 +124563,622.8150000019895,-0.05659940473390537 +124564,622.8200000019896,-0.056599180739430835 +124565,622.8250000019897,-0.05659895679180319 +124566,622.8300000019898,-0.05659873289101293 +124567,622.8350000019899,-0.056598509037050534 +124568,622.84000000199,-0.05659828522990651 +124569,622.8450000019901,-0.05659806146957134 +124570,622.8500000019902,-0.0565978377560355 +124571,622.8550000019903,-0.05659761408928951 +124572,622.8600000019904,-0.056597390469323855 +124573,622.8650000019906,-0.05659716689612904 +124574,622.8700000019907,-0.056596943369695556 +124575,622.8750000019908,-0.05659671989001391 +124576,622.8800000019909,-0.056596496457074624 +124577,622.885000001991,-0.05659627307086817 +124578,622.8900000019911,-0.05659604973138508 +124579,622.8950000019912,-0.05659582643861586 +124580,622.9000000019913,-0.05659560319255101 +124581,622.9050000019914,-0.05659537999318106 +124582,622.9100000019915,-0.0565951568404965 +124583,622.9150000019916,-0.056594933734487866 +124584,622.9200000019918,-0.056594710675145675 +124585,622.9250000019919,-0.05659448766246044 +124586,622.930000001992,-0.05659426469642268 +124587,622.9350000019921,-0.05659404177702294 +124588,622.9400000019922,-0.05659381890425172 +124589,622.9450000019923,-0.05659359607809955 +124590,622.9500000019924,-0.05659337329855699 +124591,622.9550000019925,-0.05659315056561452 +124592,622.9600000019926,-0.056592927879262706 +124593,622.9650000019927,-0.05659270523949208 +124594,622.9700000019928,-0.056592482646293164 +124595,622.975000001993,-0.056592260099656504 +124596,622.9800000019931,-0.05659203759957263 +124597,622.9850000019932,-0.05659181514603211 +124598,622.9900000019933,-0.05659159273902545 +124599,622.9950000019934,-0.056591370378543206 +124600,623.0000000019935,-0.056591148064575936 +124601,623.0050000019936,-0.05659092579711418 +124602,623.0100000019937,-0.05659070357614849 +124603,623.0150000019938,-0.05659048140166941 +124604,623.0200000019939,-0.0565902592736675 +124605,623.025000001994,-0.05659003719213331 +124606,623.0300000019942,-0.0565898151570574 +124607,623.0350000019943,-0.056589593168430326 +124608,623.0400000019944,-0.05658937122624266 +124609,623.0450000019945,-0.05658914933048494 +124610,623.0500000019946,-0.05658892748114775 +124611,623.0550000019947,-0.05658870567822164 +124612,623.0600000019948,-0.05658848392169721 +124613,623.0650000019949,-0.05658826221156498 +124614,623.070000001995,-0.056588040547815556 +124615,623.0750000019951,-0.056587818930439494 +124616,623.0800000019952,-0.05658759735942738 +124617,623.0850000019954,-0.056587375834769776 +124618,623.0900000019955,-0.05658715435645726 +124619,623.0950000019956,-0.05658693292448042 +124620,623.1000000019957,-0.05658671153882983 +124621,623.1050000019958,-0.05658649019949608 +124622,623.1100000019959,-0.056586268906469755 +124623,623.115000001996,-0.05658604765974143 +124624,623.1200000019961,-0.056585826459301686 +124625,623.1250000019962,-0.05658560530514113 +124626,623.1300000019963,-0.05658538419725035 +124627,623.1350000019964,-0.05658516313561994 +124628,623.1400000019966,-0.05658494212024048 +124629,623.1450000019967,-0.0565847211511026 +124630,623.1500000019968,-0.056584500228196874 +124631,623.1550000019969,-0.0565842793515139 +124632,623.160000001997,-0.056584058521044284 +124633,623.1650000019971,-0.056583837736778636 +124634,623.1700000019972,-0.056583616998707544 +124635,623.1750000019973,-0.056583396306821625 +124636,623.1800000019974,-0.0565831756611115 +124637,623.1850000019975,-0.05658295506156776 +124638,623.1900000019976,-0.05658273450818102 +124639,623.1950000019978,-0.0565825140009419 +124640,623.2000000019979,-0.05658229353984102 +124641,623.205000001998,-0.05658207312486899 +124642,623.2100000019981,-0.05658185275601642 +124643,623.2150000019982,-0.05658163243327394 +124644,623.2200000019983,-0.05658141215663217 +124645,623.2250000019984,-0.05658119192608174 +124646,623.2300000019985,-0.056580971741613285 +124647,623.2350000019986,-0.05658075160321741 +124648,623.2400000019987,-0.056580531510884755 +124649,623.2450000019988,-0.05658031146460596 +124650,623.250000001999,-0.05658009146437164 +124651,623.2550000019991,-0.05657987151017244 +124652,623.2600000019992,-0.056579651601998994 +124653,623.2650000019993,-0.05657943173984194 +124654,623.2700000019994,-0.05657921192369192 +124655,623.2750000019995,-0.05657899215353956 +124656,623.2800000019996,-0.05657877242937552 +124657,623.2850000019997,-0.05657855275119045 +124658,623.2900000019998,-0.056578333118974984 +124659,623.2950000019999,-0.05657811353271977 +124660,623.300000002,-0.05657789399241545 +124661,623.3050000020002,-0.056577674498052705 +124662,623.3100000020003,-0.05657745504962216 +124663,623.3150000020004,-0.05657723564711449 +124664,623.3200000020005,-0.05657701629052035 +124665,623.3250000020006,-0.056576796979830375 +124666,623.3300000020007,-0.05657657771503524 +124667,623.3350000020008,-0.05657635849612562 +124668,623.3400000020009,-0.05657613932309217 +124669,623.345000002001,-0.056575920195925535 +124670,623.3500000020011,-0.056575701114616406 +124671,623.3550000020012,-0.05657548207915545 +124672,623.3600000020014,-0.05657526308953334 +124673,623.3650000020015,-0.05657504414574074 +124674,623.3700000020016,-0.056574825247768315 +124675,623.3750000020017,-0.05657460639560676 +124676,623.3800000020018,-0.05657438758924674 +124677,623.3850000020019,-0.05657416882867894 +124678,623.390000002002,-0.056573950113894045 +124679,623.3950000020021,-0.05657373144488272 +124680,623.4000000020022,-0.056573512821635676 +124681,623.4050000020023,-0.056573294244143583 +124682,623.4100000020024,-0.05657307571239713 +124683,623.4150000020026,-0.056572857226387004 +124684,623.4200000020027,-0.0565726387861039 +124685,623.4250000020028,-0.0565724203915385 +124686,623.4300000020029,-0.05657220204268151 +124687,623.435000002003,-0.05657198373952363 +124688,623.4400000020031,-0.05657176548205556 +124689,623.4450000020032,-0.05657154727026799 +124690,623.4500000020033,-0.056571329104151614 +124691,623.4550000020034,-0.05657111098369715 +124692,623.4600000020035,-0.056570892908895304 +124693,623.4650000020036,-0.05657067487973677 +124694,623.4700000020038,-0.05657045689621226 +124695,623.4750000020039,-0.0565702389583125 +124696,623.480000002004,-0.056570021066028174 +124697,623.4850000020041,-0.05656980321935002 +124698,623.4900000020042,-0.056569585418268745 +124699,623.4950000020043,-0.056569367662775066 +124700,623.5000000020044,-0.05656914995285969 +124701,623.5050000020045,-0.056568932288513354 +124702,623.5100000020046,-0.05656871466972677 +124703,623.5150000020047,-0.05656849709649067 +124704,623.5200000020048,-0.05656827956879577 +124705,623.525000002005,-0.05656806208663281 +124706,623.5300000020051,-0.05656784464999251 +124707,623.5350000020052,-0.0565676272588656 +124708,623.5400000020053,-0.056567409913242814 +124709,623.5450000020054,-0.05656719261311489 +124710,623.5500000020055,-0.05656697535847255 +124711,623.5550000020056,-0.05656675814930654 +124712,623.5600000020057,-0.05656654098560759 +124713,623.5650000020058,-0.056566323867366465 +124714,623.5700000020059,-0.056566106794573884 +124715,623.575000002006,-0.0565658897672206 +124716,623.5800000020062,-0.05656567278529735 +124717,623.5850000020063,-0.056565455848794896 +124718,623.5900000020064,-0.05656523895770398 +124719,623.5950000020065,-0.05656502211201537 +124720,623.6000000020066,-0.0565648053117198 +124721,623.6050000020067,-0.05656458855680802 +124722,623.6100000020068,-0.05656437184727079 +124723,623.6150000020069,-0.056564155183098874 +124724,623.620000002007,-0.05656393856428304 +124725,623.6250000020071,-0.05656372199081403 +124726,623.6300000020073,-0.056563505462682614 +124727,623.6350000020074,-0.05656328897987956 +124728,623.6400000020075,-0.056563072542395634 +124729,623.6450000020076,-0.056562856150221594 +124730,623.6500000020077,-0.05656263980334822 +124731,623.6550000020078,-0.056562423501766275 +124732,623.6600000020079,-0.05656220724546655 +124733,623.665000002008,-0.0565619910344398 +124734,623.6700000020081,-0.056561774868676806 +124735,623.6750000020082,-0.05656155874816835 +124736,623.6800000020083,-0.056561342672905225 +124737,623.6850000020085,-0.05656112664287819 +124738,623.6900000020086,-0.05656091065807804 +124739,623.6950000020087,-0.056560694718495556 +124740,623.7000000020088,-0.05656047882412152 +124741,623.7050000020089,-0.05656026297494673 +124742,623.710000002009,-0.05656004717096197 +124743,623.7150000020091,-0.056559831412158035 +124744,623.7200000020092,-0.05655961569852572 +124745,623.7250000020093,-0.056559400030055815 +124746,623.7300000020094,-0.05655918440673912 +124747,623.7350000020095,-0.05655896882856644 +124748,623.7400000020097,-0.05655875329552856 +124749,623.7450000020098,-0.05655853780761629 +124750,623.7500000020099,-0.056558322364820425 +124751,623.75500000201,-0.056558106967131795 +124752,623.7600000020101,-0.05655789161454118 +124753,623.7650000020102,-0.0565576763070394 +124754,623.7700000020103,-0.05655746104461727 +124755,623.7750000020104,-0.05655724582726559 +124756,623.7800000020105,-0.05655703065497518 +124757,623.7850000020106,-0.05655681552773686 +124758,623.7900000020107,-0.056556600445541436 +124759,623.7950000020109,-0.05655638540837974 +124760,623.800000002011,-0.05655617041624258 +124761,623.8050000020111,-0.05655595546912079 +124762,623.8100000020112,-0.056555740567005186 +124763,623.8150000020113,-0.056555525709886596 +124764,623.8200000020114,-0.056555310897755846 +124765,623.8250000020115,-0.056555096130603756 +124766,623.8300000020116,-0.056554881408421166 +124767,623.8350000020117,-0.056554666731198924 +124768,623.8400000020118,-0.05655445209892784 +124769,623.845000002012,-0.05655423751159876 +124770,623.850000002012,-0.056554022969202505 +124771,623.8550000020122,-0.05655380847172994 +124772,623.8600000020123,-0.0565535940191719 +124773,623.8650000020124,-0.056553379611519204 +124774,623.8700000020125,-0.05655316524876273 +124775,623.8750000020126,-0.05655295093089329 +124776,623.8800000020127,-0.05655273665790176 +124777,623.8850000020128,-0.05655252242977898 +124778,623.8900000020129,-0.056552308246515796 +124779,623.895000002013,-0.056552094108103065 +124780,623.9000000020131,-0.05655188001453163 +124781,623.9050000020133,-0.05655166596579237 +124782,623.9100000020134,-0.05655145196187611 +124783,623.9150000020135,-0.05655123800277374 +124784,623.9200000020136,-0.056551024088476114 +124785,623.9250000020137,-0.05655081021897408 +124786,623.9300000020138,-0.05655059639425851 +124787,623.9350000020139,-0.05655038261432027 +124788,623.940000002014,-0.05655016887915024 +124789,623.9450000020141,-0.05654995518873926 +124790,623.9500000020142,-0.05654974154307823 +124791,623.9550000020143,-0.05654952794215801 +124792,623.9600000020145,-0.05654931438596948 +124793,623.9650000020146,-0.05654910087450351 +124794,623.9700000020147,-0.056548887407750985 +124795,623.9750000020148,-0.05654867398570276 +124796,623.9800000020149,-0.05654846060834976 +124797,623.985000002015,-0.05654824727568283 +124798,623.9900000020151,-0.05654803398769286 +124799,623.9950000020152,-0.05654782074437075 +124800,624.0000000020153,-0.05654760754570738 +124801,624.0050000020154,-0.056547394391693644 +124802,624.0100000020155,-0.056547181282320426 +124803,624.0150000020157,-0.056546968217578625 +124804,624.0200000020158,-0.05654675519745912 +124805,624.0250000020159,-0.05654654222195282 +124806,624.030000002016,-0.05654632929105063 +124807,624.0350000020161,-0.056546116404743434 +124808,624.0400000020162,-0.05654590356302214 +124809,624.0450000020163,-0.056545690765877656 +124810,624.0500000020164,-0.05654547801330088 +124811,624.0550000020165,-0.05654526530528273 +124812,624.0600000020166,-0.05654505264181409 +124813,624.0650000020167,-0.056544840022885894 +124814,624.0700000020169,-0.05654462744848904 +124815,624.075000002017,-0.056544414918614436 +124816,624.0800000020171,-0.056544202433253005 +124817,624.0850000020172,-0.05654398999239567 +124818,624.0900000020173,-0.05654377759603332 +124819,624.0950000020174,-0.05654356524415691 +124820,624.1000000020175,-0.05654335293675734 +124821,624.1050000020176,-0.05654314067382555 +124822,624.1100000020177,-0.05654292845535244 +124823,624.1150000020178,-0.05654271628132895 +124824,624.120000002018,-0.056542504151746005 +124825,624.125000002018,-0.05654229206659454 +124826,624.1300000020182,-0.05654208002586549 +124827,624.1350000020183,-0.056541868029549774 +124828,624.1400000020184,-0.056541656077638336 +124829,624.1450000020185,-0.05654144417012211 +124830,624.1500000020186,-0.05654123230699202 +124831,624.1550000020187,-0.056541020488239016 +124832,624.1600000020188,-0.05654080871385405 +124833,624.1650000020189,-0.05654059698382805 +124834,624.170000002019,-0.056540385298151974 +124835,624.1750000020191,-0.05654017365681676 +124836,624.1800000020193,-0.05653996205981335 +124837,624.1850000020194,-0.0565397505071327 +124838,624.1900000020195,-0.05653953899876575 +124839,624.1950000020196,-0.056539327534703476 +124840,624.2000000020197,-0.05653911611493682 +124841,624.2050000020198,-0.056538904739456726 +124842,624.2100000020199,-0.056538693408254174 +124843,624.21500000202,-0.056538482121320115 +124844,624.2200000020201,-0.056538270878645505 +124845,624.2250000020202,-0.05653805968022131 +124846,624.2300000020203,-0.05653784852603849 +124847,624.2350000020205,-0.05653763741608802 +124848,624.2400000020206,-0.05653742635036086 +124849,624.2450000020207,-0.05653721532884798 +124850,624.2500000020208,-0.05653700435154035 +124851,624.2550000020209,-0.056536793418428946 +124852,624.260000002021,-0.05653658252950474 +124853,624.2650000020211,-0.056536371684758724 +124854,624.2700000020212,-0.056536160884181855 +124855,624.2750000020213,-0.05653595012776512 +124856,624.2800000020214,-0.05653573941549949 +124857,624.2850000020215,-0.05653552874737596 +124858,624.2900000020217,-0.05653531812338551 +124859,624.2950000020218,-0.05653510754351912 +124860,624.3000000020219,-0.05653489700776778 +124861,624.305000002022,-0.05653468651612249 +124862,624.3100000020221,-0.05653447606857424 +124863,624.3150000020222,-0.056534265665114006 +124864,624.3200000020223,-0.05653405530573279 +124865,624.3250000020224,-0.0565338449904216 +124866,624.3300000020225,-0.056533634719171416 +124867,624.3350000020226,-0.05653342449197325 +124868,624.3400000020227,-0.0565332143088181 +124869,624.3450000020229,-0.05653300416969697 +124870,624.350000002023,-0.05653279407460086 +124871,624.3550000020231,-0.05653258402352077 +124872,624.3600000020232,-0.05653237401644772 +124873,624.3650000020233,-0.0565321640533727 +124874,624.3700000020234,-0.05653195413428674 +124875,624.3750000020235,-0.05653174425918084 +124876,624.3800000020236,-0.05653153442804602 +124877,624.3850000020237,-0.05653132464087329 +124878,624.3900000020238,-0.05653111489765368 +124879,624.395000002024,-0.05653090519837821 +124880,624.4000000020241,-0.05653069554303788 +124881,624.4050000020242,-0.05653048593162373 +124882,624.4100000020243,-0.05653027636412678 +124883,624.4150000020244,-0.05653006684053804 +124884,624.4200000020245,-0.056529857360848555 +124885,624.4250000020246,-0.056529647925049345 +124886,624.4300000020247,-0.05652943853313146 +124887,624.4350000020248,-0.0565292291850859 +124888,624.4400000020249,-0.05652901988090372 +124889,624.445000002025,-0.05652881062057596 +124890,624.4500000020251,-0.05652860140409364 +124891,624.4550000020253,-0.056528392231447795 +124892,624.4600000020254,-0.056528183102629484 +124893,624.4650000020255,-0.05652797401762975 +124894,624.4700000020256,-0.05652776497643961 +124895,624.4750000020257,-0.05652755597905013 +124896,624.4800000020258,-0.056527347025452375 +124897,624.4850000020259,-0.05652713811563736 +124898,624.490000002026,-0.05652692924959614 +124899,624.4950000020261,-0.05652672042731977 +124900,624.5000000020262,-0.05652651164879933 +124901,624.5050000020263,-0.056526302914025835 +124902,624.5100000020265,-0.05652609422299037 +124903,624.5150000020266,-0.05652588557568397 +124904,624.5200000020267,-0.05652567697209771 +124905,624.5250000020268,-0.05652546841222267 +124906,624.5300000020269,-0.056525259896049874 +124907,624.535000002027,-0.05652505142357042 +124908,624.5400000020271,-0.05652484299477536 +124909,624.5450000020272,-0.05652463460965575 +124910,624.5500000020273,-0.05652442626820268 +124911,624.5550000020274,-0.05652421797040721 +124912,624.5600000020276,-0.05652400971626041 +124913,624.5650000020277,-0.05652380150575337 +124914,624.5700000020278,-0.056523593338877166 +124915,624.5750000020279,-0.056523385215622855 +124916,624.580000002028,-0.056523177135981525 +124917,624.5850000020281,-0.056522969099944274 +124918,624.5900000020282,-0.05652276110750218 +124919,624.5950000020283,-0.05652255315864631 +124920,624.6000000020284,-0.05652234525336776 +124921,624.6050000020285,-0.05652213739165762 +124922,624.6100000020286,-0.056521929573506983 +124923,624.6150000020288,-0.056521721798906924 +124924,624.6200000020289,-0.056521514067848555 +124925,624.625000002029,-0.056521306380322954 +124926,624.6300000020291,-0.05652109873632124 +124927,624.6350000020292,-0.05652089113583448 +124928,624.6400000020293,-0.05652068357885379 +124929,624.6450000020294,-0.05652047606537028 +124930,624.6500000020295,-0.05652026859537503 +124931,624.6550000020296,-0.05652006116885916 +124932,624.6600000020297,-0.056519853785813784 +124933,624.6650000020298,-0.05651964644622998 +124934,624.67000000203,-0.05651943915009889 +124935,624.6750000020301,-0.0565192318974116 +124936,624.6800000020302,-0.05651902468815924 +124937,624.6850000020303,-0.05651881752233291 +124938,624.6900000020304,-0.05651861039992373 +124939,624.6950000020305,-0.05651840332092282 +124940,624.7000000020306,-0.056518196285321294 +124941,624.7050000020307,-0.05651798929311028 +124942,624.7100000020308,-0.05651778234428089 +124943,624.7150000020309,-0.056517575438824255 +124944,624.720000002031,-0.0565173685767315 +124945,624.7250000020312,-0.05651716175799375 +124946,624.7300000020313,-0.05651695498260213 +124947,624.7350000020314,-0.056516748250547776 +124948,624.7400000020315,-0.05651654156182183 +124949,624.7450000020316,-0.0565163349164154 +124950,624.7500000020317,-0.056516128314319646 +124951,624.7550000020318,-0.05651592175552568 +124952,624.7600000020319,-0.05651571524002466 +124953,624.765000002032,-0.05651550876780772 +124954,624.7700000020321,-0.056515302338865994 +124955,624.7750000020322,-0.05651509595319064 +124956,624.7800000020324,-0.056514889610772785 +124957,624.7850000020325,-0.05651468331160359 +124958,624.7900000020326,-0.05651447705567421 +124959,624.7950000020327,-0.056514270842975764 +124960,624.8000000020328,-0.05651406467349943 +124961,624.8050000020329,-0.056513858547236354 +124962,624.810000002033,-0.056513652464177694 +124963,624.8150000020331,-0.05651344642431459 +124964,624.8200000020332,-0.05651324042763822 +124965,624.8250000020333,-0.056513034474139745 +124966,624.8300000020334,-0.056512828563810305 +124967,624.8350000020336,-0.05651262269664108 +124968,624.8400000020337,-0.05651241687262322 +124969,624.8450000020338,-0.0565122110917479 +124970,624.8500000020339,-0.056512005354006294 +124971,624.855000002034,-0.05651179965938955 +124972,624.8600000020341,-0.05651159400788886 +124973,624.8650000020342,-0.05651138839949539 +124974,624.8700000020343,-0.05651118283420031 +124975,624.8750000020344,-0.056510977311994795 +124976,624.8800000020345,-0.056510771832870024 +124977,624.8850000020346,-0.05651056639681718 +124978,624.8900000020348,-0.05651036100382744 +124979,624.8950000020349,-0.05651015565389199 +124980,624.900000002035,-0.05650995034700201 +124981,624.9050000020351,-0.056509745083148676 +124982,624.9100000020352,-0.05650953986232318 +124983,624.9150000020353,-0.05650933468451673 +124984,624.9200000020354,-0.056509129549720497 +124985,624.9250000020355,-0.05650892445792567 +124986,624.9300000020356,-0.056508719409123456 +124987,624.9350000020357,-0.056508514403305045 +124988,624.9400000020358,-0.05650830944046162 +124989,624.945000002036,-0.0565081045205844 +124990,624.9500000020361,-0.05650789964366456 +124991,624.9550000020362,-0.056507694809693323 +124992,624.9600000020363,-0.056507490018661885 +124993,624.9650000020364,-0.05650728527056145 +124994,624.9700000020365,-0.056507080565383234 +124995,624.9750000020366,-0.056506875903118425 +124996,624.9800000020367,-0.056506671283758254 +124997,624.9850000020368,-0.05650646670729391 +124998,624.9900000020369,-0.05650626217371662 +124999,624.995000002037,-0.056506057683017606 +125000,625.0000000020372,-0.05650585323518806 +125001,625.0050000020373,-0.05650564883021922 +125002,625.0100000020374,-0.056505444468102295 +125003,625.0150000020375,-0.05650524014882851 +125004,625.0200000020376,-0.05650503587238909 +125005,625.0250000020377,-0.056504831638775246 +125006,625.0300000020378,-0.05650462744797821 +125007,625.0350000020379,-0.05650442329998921 +125008,625.040000002038,-0.05650421919479949 +125009,625.0450000020381,-0.056504015132400255 +125010,625.0500000020382,-0.056503811112782756 +125011,625.0550000020384,-0.05650360713593821 +125012,625.0600000020385,-0.056503403201857864 +125013,625.0650000020386,-0.05650319931053295 +125014,625.0700000020387,-0.05650299546195471 +125015,625.0750000020388,-0.05650279165611438 +125016,625.0800000020389,-0.05650258789300321 +125017,625.085000002039,-0.05650238417261244 +125018,625.0900000020391,-0.0565021804949333 +125019,625.0950000020392,-0.05650197685995705 +125020,625.1000000020393,-0.05650177326767495 +125021,625.1050000020394,-0.056501569718078216 +125022,625.1100000020396,-0.05650136621115813 +125023,625.1150000020397,-0.056501162746905934 +125024,625.1200000020398,-0.05650095932531288 +125025,625.1250000020399,-0.05650075594637022 +125026,625.13000000204,-0.05650055261006922 +125027,625.1350000020401,-0.056500349316401126 +125028,625.1400000020402,-0.056500146065357214 +125029,625.1450000020403,-0.05649994285692874 +125030,625.1500000020404,-0.056499739691106984 +125031,625.1550000020405,-0.05649953656788318 +125032,625.1600000020406,-0.05649933348724862 +125033,625.1650000020408,-0.056499130449194565 +125034,625.1700000020409,-0.05649892745371229 +125035,625.175000002041,-0.056498724500793046 +125036,625.1800000020411,-0.056498521590428126 +125037,625.1850000020412,-0.056498318722608805 +125038,625.1900000020413,-0.05649811589732636 +125039,625.1950000020414,-0.05649791311457206 +125040,625.2000000020415,-0.05649771037433719 +125041,625.2050000020416,-0.05649750767661304 +125042,625.2100000020417,-0.05649730502139089 +125043,625.2150000020418,-0.056497102408662 +125044,625.220000002042,-0.05649689983841769 +125045,625.2250000020421,-0.05649669731064924 +125046,625.2300000020422,-0.05649649482534792 +125047,625.2350000020423,-0.056496292382505045 +125048,625.2400000020424,-0.0564960899821119 +125049,625.2450000020425,-0.05649588762415977 +125050,625.2500000020426,-0.05649568530863995 +125051,625.2550000020427,-0.05649548303554374 +125052,625.2600000020428,-0.05649528080486246 +125053,625.2650000020429,-0.056495078616587396 +125054,625.270000002043,-0.05649487647070984 +125055,625.2750000020432,-0.05649467436722111 +125056,625.2800000020433,-0.0564944723061125 +125057,625.2850000020434,-0.05649427028737533 +125058,625.2900000020435,-0.0564940683110009 +125059,625.2950000020436,-0.05649386637698052 +125060,625.3000000020437,-0.0564936644853055 +125061,625.3050000020438,-0.05649346263596716 +125062,625.3100000020439,-0.05649326082895681 +125063,625.315000002044,-0.056493059064265765 +125064,625.3200000020441,-0.056492857341885354 +125065,625.3250000020442,-0.05649265566180688 +125066,625.3300000020444,-0.056492454024021685 +125067,625.3350000020445,-0.05649225242852107 +125068,625.3400000020446,-0.05649205087529637 +125069,625.3450000020447,-0.05649184936433892 +125070,625.3500000020448,-0.056491647895640026 +125071,625.3550000020449,-0.056491446469191034 +125072,625.360000002045,-0.05649124508498328 +125073,625.3650000020451,-0.056491043743008076 +125074,625.3700000020452,-0.05649084244325677 +125075,625.3750000020453,-0.05649064118572069 +125076,625.3800000020454,-0.05649043997039118 +125077,625.3850000020456,-0.05649023879725958 +125078,625.3900000020457,-0.056490037666317224 +125079,625.3950000020458,-0.05648983657755545 +125080,625.4000000020459,-0.056489635530965615 +125081,625.405000002046,-0.05648943452653906 +125082,625.4100000020461,-0.056489233564267126 +125083,625.4150000020462,-0.056489032644141166 +125084,625.4200000020463,-0.05648883176615251 +125085,625.4250000020464,-0.05648863093029254 +125086,625.4300000020465,-0.05648843013655261 +125087,625.4350000020466,-0.05648822938492404 +125088,625.4400000020468,-0.05648802867539821 +125089,625.4450000020469,-0.056487828007966485 +125090,625.450000002047,-0.056487627382620205 +125091,625.4550000020471,-0.056487426799350746 +125092,625.4600000020472,-0.05648722625814945 +125093,625.4650000020473,-0.05648702575900771 +125094,625.4700000020474,-0.056486825301916864 +125095,625.4750000020475,-0.0564866248868683 +125096,625.4800000020476,-0.05648642451385338 +125097,625.4850000020477,-0.05648622418286347 +125098,625.4900000020479,-0.05648602389388994 +125099,625.495000002048,-0.056485823646924165 +125100,625.5000000020481,-0.05648562344195753 +125101,625.5050000020482,-0.0564854232789814 +125102,625.5100000020483,-0.056485223157987166 +125103,625.5150000020484,-0.0564850230789662 +125104,625.5200000020485,-0.05648482304190986 +125105,625.5250000020486,-0.056484623046809575 +125106,625.5300000020487,-0.0564844230936567 +125107,625.5350000020488,-0.05648422318244264 +125108,625.5400000020489,-0.05648402331315874 +125109,625.545000002049,-0.05648382348579643 +125110,625.5500000020492,-0.056483623700347096 +125111,625.5550000020493,-0.05648342395680213 +125112,625.5600000020494,-0.05648322425515292 +125113,625.5650000020495,-0.05648302459539086 +125114,625.5700000020496,-0.05648282497750735 +125115,625.5750000020497,-0.05648262540149378 +125116,625.5800000020498,-0.05648242586734156 +125117,625.5850000020499,-0.05648222637504209 +125118,625.59000000205,-0.05648202692458678 +125119,625.5950000020501,-0.05648182751596701 +125120,625.6000000020503,-0.056481628149174214 +125121,625.6050000020504,-0.0564814288241998 +125122,625.6100000020505,-0.05648122954103516 +125123,625.6150000020506,-0.05648103029967172 +125124,625.6200000020507,-0.056480831100100874 +125125,625.6250000020508,-0.05648063194231405 +125126,625.6300000020509,-0.05648043282630266 +125127,625.635000002051,-0.05648023375205813 +125128,625.6400000020511,-0.05648003471957188 +125129,625.6450000020512,-0.05647983572883531 +125130,625.6500000020513,-0.056479636779839866 +125131,625.6550000020515,-0.056479437872576956 +125132,625.6600000020516,-0.056479239007038 +125133,625.6650000020517,-0.05647904018321445 +125134,625.6700000020518,-0.056478841401097726 +125135,625.6750000020519,-0.05647864266067924 +125136,625.680000002052,-0.056478443961950446 +125137,625.6850000020521,-0.05647824530490276 +125138,625.6900000020522,-0.05647804668952762 +125139,625.6950000020523,-0.05647784811581647 +125140,625.7000000020524,-0.05647764958376074 +125141,625.7050000020525,-0.05647745109335187 +125142,625.7100000020527,-0.05647725264458131 +125143,625.7150000020528,-0.0564770542374405 +125144,625.7200000020529,-0.056476855871920875 +125145,625.725000002053,-0.05647665754801389 +125146,625.7300000020531,-0.05647645926571099 +125147,625.7350000020532,-0.05647626102500361 +125148,625.7400000020533,-0.056476062825883216 +125149,625.7450000020534,-0.05647586466834126 +125150,625.7500000020535,-0.05647566655236919 +125151,625.7550000020536,-0.05647546847795847 +125152,625.7600000020537,-0.05647527044510055 +125153,625.7650000020539,-0.05647507245378688 +125154,625.770000002054,-0.056474874504008926 +125155,625.7750000020541,-0.05647467659575815 +125156,625.7800000020542,-0.05647447872902602 +125157,625.7850000020543,-0.056474280903803985 +125158,625.7900000020544,-0.056474083120083535 +125159,625.7950000020545,-0.05647388537785612 +125160,625.8000000020546,-0.05647368767711322 +125161,625.8050000020547,-0.05647349001784629 +125162,625.8100000020548,-0.056473292400046816 +125163,625.815000002055,-0.056473094823706264 +125164,625.820000002055,-0.05647289728881612 +125165,625.8250000020552,-0.056472699795367835 +125166,625.8300000020553,-0.0564725023433529 +125167,625.8350000020554,-0.05647230493276281 +125168,625.8400000020555,-0.05647210756358904 +125169,625.8450000020556,-0.05647191023582306 +125170,625.8500000020557,-0.056471712949456375 +125171,625.8550000020558,-0.05647151570448045 +125172,625.8600000020559,-0.0564713185008868 +125173,625.865000002056,-0.05647112133866688 +125174,625.8700000020561,-0.0564709242178122 +125175,625.8750000020563,-0.05647072713831425 +125176,625.8800000020564,-0.05647053010016453 +125177,625.8850000020565,-0.056470333103354524 +125178,625.8900000020566,-0.05647013614787574 +125179,625.8950000020567,-0.05646993923371967 +125180,625.9000000020568,-0.05646974236087782 +125181,625.9050000020569,-0.05646954552934167 +125182,625.910000002057,-0.056469348739102754 +125183,625.9150000020571,-0.05646915199015255 +125184,625.9200000020572,-0.0564689552824826 +125185,625.9250000020573,-0.05646875861608437 +125186,625.9300000020575,-0.0564685619909494 +125187,625.9350000020576,-0.05646836540706919 +125188,625.9400000020577,-0.056468168864435245 +125189,625.9450000020578,-0.05646797236303908 +125190,625.9500000020579,-0.05646777590287222 +125191,625.955000002058,-0.056467579483926174 +125192,625.9600000020581,-0.056467383106192474 +125193,625.9650000020582,-0.056467186769662635 +125194,625.9700000020583,-0.05646699047432817 +125195,625.9750000020584,-0.056466794220180604 +125196,625.9800000020585,-0.056466598007211474 +125197,625.9850000020587,-0.05646640183541229 +125198,625.9900000020588,-0.056466205704774584 +125199,625.9950000020589,-0.05646600961528989 +125200,626.000000002059,-0.05646581356694975 +125201,626.0050000020591,-0.05646561755974568 +125202,626.0100000020592,-0.05646542159366922 +125203,626.0150000020593,-0.05646522566871191 +125204,626.0200000020594,-0.056465029784865284 +125205,626.0250000020595,-0.056464833942120866 +125206,626.0300000020596,-0.056464638140470216 +125207,626.0350000020597,-0.05646444237990487 +125208,626.0400000020599,-0.05646424666041636 +125209,626.04500000206,-0.05646405098199625 +125210,626.0500000020601,-0.05646385534463608 +125211,626.0550000020602,-0.056463659748327386 +125212,626.0600000020603,-0.05646346419306174 +125213,626.0650000020604,-0.056463268678830676 +125214,626.0700000020605,-0.05646307320562575 +125215,626.0750000020606,-0.05646287777343852 +125216,626.0800000020607,-0.05646268238226054 +125217,626.0850000020608,-0.05646248703208336 +125218,626.090000002061,-0.05646229172289856 +125219,626.095000002061,-0.05646209645469767 +125220,626.1000000020612,-0.056461901227472286 +125221,626.1050000020613,-0.05646170604121393 +125222,626.1100000020614,-0.0564615108959142 +125223,626.1150000020615,-0.05646131579156466 +125224,626.1200000020616,-0.05646112072815686 +125225,626.1250000020617,-0.05646092570568239 +125226,626.1300000020618,-0.0564607307241328 +125227,626.1350000020619,-0.05646053578349968 +125228,626.140000002062,-0.05646034088377459 +125229,626.1450000020621,-0.05646014602494913 +125230,626.1500000020623,-0.05645995120701484 +125231,626.1550000020624,-0.056459756429963336 +125232,626.1600000020625,-0.05645956169378617 +125233,626.1650000020626,-0.05645936699847495 +125234,626.1700000020627,-0.056459172344021244 +125235,626.1750000020628,-0.05645897773041664 +125236,626.1800000020629,-0.0564587831576527 +125237,626.185000002063,-0.05645858862572105 +125238,626.1900000020631,-0.056458394134613274 +125239,626.1950000020632,-0.05645819968432095 +125240,626.2000000020633,-0.05645800527483566 +125241,626.2050000020635,-0.05645781090614902 +125242,626.2100000020636,-0.05645761657825263 +125243,626.2150000020637,-0.05645742229113806 +125244,626.2200000020638,-0.05645722804479692 +125245,626.2250000020639,-0.05645703383922083 +125246,626.230000002064,-0.05645683967440137 +125247,626.2350000020641,-0.056456645550330135 +125248,626.2400000020642,-0.05645645146699876 +125249,626.2450000020643,-0.05645625742439883 +125250,626.2500000020644,-0.05645606342252195 +125251,626.2550000020645,-0.05645586946135974 +125252,626.2600000020647,-0.05645567554090381 +125253,626.2650000020648,-0.056455481661145786 +125254,626.2700000020649,-0.05645528782207725 +125255,626.275000002065,-0.05645509402368984 +125256,626.2800000020651,-0.05645490026597517 +125257,626.2850000020652,-0.056454706548924864 +125258,626.2900000020653,-0.05645451287253052 +125259,626.2950000020654,-0.056454319236783776 +125260,626.3000000020655,-0.056454125641676255 +125261,626.3050000020656,-0.05645393208719958 +125262,626.3100000020657,-0.056453738573345374 +125263,626.3150000020659,-0.05645354510010527 +125264,626.320000002066,-0.0564533516674709 +125265,626.3250000020661,-0.05645315827543388 +125266,626.3300000020662,-0.05645296492398586 +125267,626.3350000020663,-0.05645277161311847 +125268,626.3400000020664,-0.05645257834282334 +125269,626.3450000020665,-0.056452385113092106 +125270,626.3500000020666,-0.0564521919239164 +125271,626.3550000020667,-0.05645199877528788 +125272,626.3600000020668,-0.05645180566719817 +125273,626.365000002067,-0.056451612599638934 +125274,626.3700000020671,-0.056451419572601795 +125275,626.3750000020672,-0.05645122658607841 +125276,626.3800000020673,-0.05645103364006042 +125277,626.3850000020674,-0.05645084073453949 +125278,626.3900000020675,-0.05645064786950725 +125279,626.3950000020676,-0.05645045504495536 +125280,626.4000000020677,-0.056450262260875475 +125281,626.4050000020678,-0.056450069517259255 +125282,626.4100000020679,-0.05644987681409835 +125283,626.415000002068,-0.05644968415138442 +125284,626.4200000020682,-0.05644949152910913 +125285,626.4250000020683,-0.05644929894726413 +125286,626.4300000020684,-0.05644910640584108 +125287,626.4350000020685,-0.05644891390483166 +125288,626.4400000020686,-0.056448721444227516 +125289,626.4450000020687,-0.056448529024020346 +125290,626.4500000020688,-0.05644833664420179 +125291,626.4550000020689,-0.05644814430476353 +125292,626.460000002069,-0.056447952005697244 +125293,626.4650000020691,-0.05644775974699459 +125294,626.4700000020692,-0.056447567528647255 +125295,626.4750000020694,-0.05644737535064691 +125296,626.4800000020695,-0.05644718321298524 +125297,626.4850000020696,-0.05644699111565392 +125298,626.4900000020697,-0.056446799058644616 +125299,626.4950000020698,-0.05644660704194902 +125300,626.5000000020699,-0.05644641506555884 +125301,626.50500000207,-0.056446223129465734 +125302,626.5100000020701,-0.0564460312336614 +125303,626.5150000020702,-0.05644583937813752 +125304,626.5200000020703,-0.05644564756288578 +125305,626.5250000020704,-0.056445455787897884 +125306,626.5300000020706,-0.056445264053165516 +125307,626.5350000020707,-0.056445072358680376 +125308,626.5400000020708,-0.05644488070443415 +125309,626.5450000020709,-0.056444689090418554 +125310,626.550000002071,-0.05644449751662528 +125311,626.5550000020711,-0.05644430598304602 +125312,626.5600000020712,-0.05644411448967249 +125313,626.5650000020713,-0.056443923036496375 +125314,626.5700000020714,-0.056443731623509394 +125315,626.5750000020715,-0.05644354025070325 +125316,626.5800000020716,-0.056443348918069645 +125317,626.5850000020718,-0.056443157625600295 +125318,626.5900000020719,-0.056442966373286906 +125319,626.595000002072,-0.05644277516112121 +125320,626.6000000020721,-0.0564425839890949 +125321,626.6050000020722,-0.05644239285719971 +125322,626.6100000020723,-0.05644220176542733 +125323,626.6150000020724,-0.056442010713769496 +125324,626.6200000020725,-0.05644181970221793 +125325,626.6250000020726,-0.05644162873076435 +125326,626.6300000020727,-0.05644143779940047 +125327,626.6350000020728,-0.056441246908118047 +125328,626.640000002073,-0.05644105605690878 +125329,626.6450000020731,-0.05644086524576439 +125330,626.6500000020732,-0.056440674474676614 +125331,626.6550000020733,-0.056440483743637186 +125332,626.6600000020734,-0.056440293052637855 +125333,626.6650000020735,-0.056440102401670335 +125334,626.6700000020736,-0.056439911790726355 +125335,626.6750000020737,-0.056439721219797664 +125336,626.6800000020738,-0.05643953068887599 +125337,626.6850000020739,-0.05643934019795309 +125338,626.690000002074,-0.056439149747020696 +125339,626.6950000020742,-0.05643895933607056 +125340,626.7000000020743,-0.0564387689650944 +125341,626.7050000020744,-0.05643857863408398 +125342,626.7100000020745,-0.056438388343031054 +125343,626.7150000020746,-0.056438198091927363 +125344,626.7200000020747,-0.05643800788076465 +125345,626.7250000020748,-0.05643781770953467 +125346,626.7300000020749,-0.056437627578229184 +125347,626.735000002075,-0.05643743748683994 +125348,626.7400000020751,-0.0564372474353587 +125349,626.7450000020752,-0.05643705742377722 +125350,626.7500000020754,-0.05643686745208726 +125351,626.7550000020755,-0.056436677520280566 +125352,626.7600000020756,-0.05643648762834893 +125353,626.7650000020757,-0.056436297776284096 +125354,626.7700000020758,-0.056436107964077824 +125355,626.7750000020759,-0.0564359181917219 +125356,626.780000002076,-0.056435728459208065 +125357,626.7850000020761,-0.05643553876652811 +125358,626.7900000020762,-0.05643534911367381 +125359,626.7950000020763,-0.056435159500636926 +125360,626.8000000020764,-0.05643496992740924 +125361,626.8050000020766,-0.056434780393982524 +125362,626.8100000020767,-0.05643459090034854 +125363,626.8150000020768,-0.05643440144649908 +125364,626.8200000020769,-0.056434212032425934 +125365,626.825000002077,-0.05643402265812087 +125366,626.8300000020771,-0.05643383332357568 +125367,626.8350000020772,-0.05643364402878214 +125368,626.8400000020773,-0.05643345477373205 +125369,626.8450000020774,-0.05643326555841719 +125370,626.8500000020775,-0.05643307638282934 +125371,626.8550000020776,-0.05643288724696031 +125372,626.8600000020778,-0.05643269815080187 +125373,626.8650000020779,-0.05643250909434582 +125374,626.870000002078,-0.05643232007758397 +125375,626.8750000020781,-0.056432131100508105 +125376,626.8800000020782,-0.05643194216311001 +125377,626.8850000020783,-0.0564317532653815 +125378,626.8900000020784,-0.05643156440731439 +125379,626.8950000020785,-0.056431375588900455 +125380,626.9000000020786,-0.056431186810131505 +125381,626.9050000020787,-0.05643099807099937 +125382,626.9100000020788,-0.056430809371495826 +125383,626.915000002079,-0.05643062071161271 +125384,626.9200000020791,-0.0564304320913418 +125385,626.9250000020792,-0.056430243510674945 +125386,626.9300000020793,-0.05643005496960393 +125387,626.9350000020794,-0.05642986646812058 +125388,626.9400000020795,-0.056429678006216705 +125389,626.9450000020796,-0.05642948958388412 +125390,626.9500000020797,-0.056429301201114654 +125391,626.9550000020798,-0.05642911285790012 +125392,626.9600000020799,-0.05642892455423235 +125393,626.96500000208,-0.056428736290103164 +125394,626.9700000020802,-0.056428548065504375 +125395,626.9750000020803,-0.05642835988042782 +125396,626.9800000020804,-0.05642817173486532 +125397,626.9850000020805,-0.05642798362880871 +125398,626.9900000020806,-0.05642779556224981 +125399,626.9950000020807,-0.056427607535180474 +125400,627.0000000020808,-0.05642741954759252 +125401,627.0050000020809,-0.056427231599477795 +125402,627.010000002081,-0.05642704369082813 +125403,627.0150000020811,-0.056426855821635355 +125404,627.0200000020812,-0.056426667991891326 +125405,627.0250000020814,-0.056426480201587866 +125406,627.0300000020815,-0.05642629245071683 +125407,627.0350000020816,-0.05642610473927006 +125408,627.0400000020817,-0.0564259170672394 +125409,627.0450000020818,-0.056425729434616684 +125410,627.0500000020819,-0.056425541841393784 +125411,627.055000002082,-0.05642535428756254 +125412,627.0600000020821,-0.056425166773114814 +125413,627.0650000020822,-0.05642497929804243 +125414,627.0700000020823,-0.05642479186233727 +125415,627.0750000020824,-0.05642460446599118 +125416,627.0800000020826,-0.056424417108996025 +125417,627.0850000020827,-0.05642422979134365 +125418,627.0900000020828,-0.05642404251302593 +125419,627.0950000020829,-0.05642385527403471 +125420,627.100000002083,-0.056423668074361874 +125421,627.1050000020831,-0.05642348091399927 +125422,627.1100000020832,-0.056423293792938777 +125423,627.1150000020833,-0.056423106711172254 +125424,627.1200000020834,-0.056422919668691576 +125425,627.1250000020835,-0.05642273266548861 +125426,627.1300000020836,-0.056422545701555235 +125427,627.1350000020838,-0.05642235877688331 +125428,627.1400000020839,-0.05642217189146473 +125429,627.145000002084,-0.056421985045291355 +125430,627.1500000020841,-0.05642179823835507 +125431,627.1550000020842,-0.056421611470647746 +125432,627.1600000020843,-0.056421424742161295 +125433,627.1650000020844,-0.05642123805288756 +125434,627.1700000020845,-0.05642105140281845 +125435,627.1750000020846,-0.05642086479194585 +125436,627.1800000020847,-0.05642067822026162 +125437,627.1850000020848,-0.05642049168775767 +125438,627.190000002085,-0.05642030519442591 +125439,627.1950000020851,-0.05642011874025819 +125440,627.2000000020852,-0.05641993232524644 +125441,627.2050000020853,-0.05641974594938253 +125442,627.2100000020854,-0.05641955961265836 +125443,627.2150000020855,-0.05641937331506584 +125444,627.2200000020856,-0.056419187056596855 +125445,627.2250000020857,-0.056419000837243306 +125446,627.2300000020858,-0.0564188146569971 +125447,627.2350000020859,-0.05641862851585013 +125448,627.240000002086,-0.056418442413794324 +125449,627.2450000020862,-0.056418256350821566 +125450,627.2500000020863,-0.05641807032692377 +125451,627.2550000020864,-0.05641788434209285 +125452,627.2600000020865,-0.056417698396320715 +125453,627.2650000020866,-0.056417512489599274 +125454,627.2700000020867,-0.05641732662192044 +125455,627.2750000020868,-0.05641714079327614 +125456,627.2800000020869,-0.05641695500365826 +125457,627.285000002087,-0.056416769253058746 +125458,627.2900000020871,-0.05641658354146951 +125459,627.2950000020872,-0.05641639786888247 +125460,627.3000000020874,-0.05641621223528955 +125461,627.3050000020875,-0.056416026640682675 +125462,627.3100000020876,-0.05641584108505377 +125463,627.3150000020877,-0.05641565556839477 +125464,627.3200000020878,-0.0564154700906976 +125465,627.3250000020879,-0.05641528465195417 +125466,627.330000002088,-0.056415099252156424 +125467,627.3350000020881,-0.05641491389129631 +125468,627.3400000020882,-0.05641472856936574 +125469,627.3450000020883,-0.05641454328635665 +125470,627.3500000020884,-0.056414358042260984 +125471,627.3550000020886,-0.056414172837070696 +125472,627.3600000020887,-0.0564139876707777 +125473,627.3650000020888,-0.05641380254337395 +125474,627.3700000020889,-0.05641361745485139 +125475,627.375000002089,-0.05641343240520196 +125476,627.3800000020891,-0.05641324739441761 +125477,627.3850000020892,-0.056413062422490286 +125478,627.3900000020893,-0.05641287748941193 +125479,627.3950000020894,-0.05641269259517449 +125480,627.4000000020895,-0.05641250773976993 +125481,627.4050000020897,-0.056412322923190206 +125482,627.4100000020898,-0.05641213814542725 +125483,627.4150000020899,-0.05641195340647303 +125484,627.42000000209,-0.056411768706319525 +125485,627.4250000020901,-0.05641158404495866 +125486,627.4300000020902,-0.056411399422382415 +125487,627.4350000020903,-0.05641121483858275 +125488,627.4400000020904,-0.05641103029355162 +125489,627.4450000020905,-0.05641084578728099 +125490,627.4500000020906,-0.05641066131976284 +125491,627.4550000020907,-0.05641047689098912 +125492,627.4600000020909,-0.056410292500951816 +125493,627.465000002091,-0.05641010814964288 +125494,627.4700000020911,-0.056409923837054295 +125495,627.4750000020912,-0.05640973956317804 +125496,627.4800000020913,-0.05640955532800608 +125497,627.4850000020914,-0.05640937113153039 +125498,627.4900000020915,-0.05640918697374296 +125499,627.4950000020916,-0.05640900285463576 +125500,627.5000000020917,-0.056408818774200765 +125501,627.5050000020918,-0.05640863473242998 +125502,627.5100000020919,-0.056408450729315364 +125503,627.515000002092,-0.05640826676484892 +125504,627.5200000020922,-0.056408082839022614 +125505,627.5250000020923,-0.05640789895182845 +125506,627.5300000020924,-0.05640771510325841 +125507,627.5350000020925,-0.0564075312933045 +125508,627.5400000020926,-0.0564073475219587 +125509,627.5450000020927,-0.056407163789213004 +125510,627.5500000020928,-0.0564069800950594 +125511,627.5550000020929,-0.0564067964394899 +125512,627.560000002093,-0.05640661282249648 +125513,627.5650000020931,-0.05640642924407117 +125514,627.5700000020933,-0.056406245704205944 +125515,627.5750000020934,-0.05640606220289283 +125516,627.5800000020935,-0.05640587874012381 +125517,627.5850000020936,-0.056405695315890896 +125518,627.5900000020937,-0.05640551193018609 +125519,627.5950000020938,-0.05640532858300142 +125520,627.6000000020939,-0.056405145274328876 +125521,627.605000002094,-0.05640496200416047 +125522,627.6100000020941,-0.056404778772488215 +125523,627.6150000020942,-0.05640459557930414 +125524,627.6200000020943,-0.05640441242460025 +125525,627.6250000020945,-0.056404229308368574 +125526,627.6300000020946,-0.0564040462306011 +125527,627.6350000020947,-0.05640386319128987 +125528,627.6400000020948,-0.056403680190426915 +125529,627.6450000020949,-0.05640349722800423 +125530,627.650000002095,-0.056403314304013866 +125531,627.6550000020951,-0.05640313141844783 +125532,627.6600000020952,-0.056402948571298156 +125533,627.6650000020953,-0.05640276576255687 +125534,627.6700000020954,-0.05640258299221601 +125535,627.6750000020955,-0.0564024002602676 +125536,627.6800000020957,-0.05640221756670368 +125537,627.6850000020958,-0.05640203491151628 +125538,627.6900000020959,-0.056401852294697435 +125539,627.695000002096,-0.05640166971623919 +125540,627.7000000020961,-0.05640148717613356 +125541,627.7050000020962,-0.05640130467437261 +125542,627.7100000020963,-0.056401122210948375 +125543,627.7150000020964,-0.05640093978585289 +125544,627.7200000020965,-0.056400757399078204 +125545,627.7250000020966,-0.05640057505061637 +125546,627.7300000020967,-0.056400392740459424 +125547,627.7350000020969,-0.05640021046859943 +125548,627.740000002097,-0.05640002823502842 +125549,627.7450000020971,-0.05639984603973845 +125550,627.7500000020972,-0.056399663882721586 +125551,627.7550000020973,-0.05639948176396986 +125552,627.7600000020974,-0.05639929968347535 +125553,627.7650000020975,-0.05639911764123011 +125554,627.7700000020976,-0.05639893563722619 +125555,627.7750000020977,-0.05639875367145565 +125556,627.7800000020978,-0.05639857174391057 +125557,627.785000002098,-0.05639838985458299 +125558,627.790000002098,-0.05639820800346499 +125559,627.7950000020982,-0.05639802619054862 +125560,627.8000000020983,-0.05639784441582596 +125561,627.8050000020984,-0.05639766267928907 +125562,627.8100000020985,-0.056397480980930025 +125563,627.8150000020986,-0.05639729932074091 +125564,627.8200000020987,-0.056397117698713785 +125565,627.8250000020988,-0.05639693611484073 +125566,627.8300000020989,-0.05639675456911381 +125567,627.835000002099,-0.0563965730615251 +125568,627.8400000020991,-0.056396391592066705 +125569,627.8450000020993,-0.05639621016073069 +125570,627.8500000020994,-0.056396028767509127 +125571,627.8550000020995,-0.056395847412394104 +125572,627.8600000020996,-0.056395666095377724 +125573,627.8650000020997,-0.05639548481645204 +125574,627.8700000020998,-0.05639530357560918 +125575,627.8750000020999,-0.0563951223728412 +125576,627.8800000021,-0.0563949412081402 +125577,627.8850000021001,-0.056394760081498276 +125578,627.8900000021002,-0.05639457899290753 +125579,627.8950000021003,-0.05639439794236003 +125580,627.9000000021005,-0.05639421692984789 +125581,627.9050000021006,-0.05639403595536321 +125582,627.9100000021007,-0.056393855018898084 +125583,627.9150000021008,-0.05639367412044462 +125584,627.9200000021009,-0.0563934932599949 +125585,627.925000002101,-0.056393312437541046 +125586,627.9300000021011,-0.05639313165307516 +125587,627.9350000021012,-0.056392950906589336 +125588,627.9400000021013,-0.056392770198075697 +125589,627.9450000021014,-0.05639258952752634 +125590,627.9500000021015,-0.05639240889493338 +125591,627.9550000021017,-0.056392228300288935 +125592,627.9600000021018,-0.05639204774358511 +125593,627.9650000021019,-0.056391867224814034 +125594,627.970000002102,-0.056391686743967814 +125595,627.9750000021021,-0.05639150630103856 +125596,627.9800000021022,-0.056391325896018404 +125597,627.9850000021023,-0.05639114552889944 +125598,627.9900000021024,-0.05639096519967383 +125599,627.9950000021025,-0.05639078490833366 +125600,628.0000000021026,-0.05639060465487107 +125601,628.0050000021027,-0.05639042443927819 +125602,628.0100000021029,-0.05639024426154715 +125603,628.015000002103,-0.05639006412167008 +125604,628.0200000021031,-0.0563898840196391 +125605,628.0250000021032,-0.05638970395544634 +125606,628.0300000021033,-0.05638952392908394 +125607,628.0350000021034,-0.05638934394054404 +125608,628.0400000021035,-0.05638916398981877 +125609,628.0450000021036,-0.05638898407690026 +125610,628.0500000021037,-0.05638880420178066 +125611,628.0550000021038,-0.05638862436445211 +125612,628.060000002104,-0.05638844456490675 +125613,628.0650000021041,-0.056388264803136724 +125614,628.0700000021042,-0.056388085079134176 +125615,628.0750000021043,-0.05638790539289124 +125616,628.0800000021044,-0.05638772574440009 +125617,628.0850000021045,-0.05638754613365285 +125618,628.0900000021046,-0.05638736656064168 +125619,628.0950000021047,-0.05638718702535873 +125620,628.1000000021048,-0.05638700752779616 +125621,628.1050000021049,-0.056386828067946114 +125622,628.110000002105,-0.05638664864580075 +125623,628.1150000021051,-0.05638646926135223 +125624,628.1200000021053,-0.05638628991459271 +125625,628.1250000021054,-0.056386110605514364 +125626,628.1300000021055,-0.05638593133410933 +125627,628.1350000021056,-0.056385752100369786 +125628,628.1400000021057,-0.056385572904287896 +125629,628.1450000021058,-0.05638539374585582 +125630,628.1500000021059,-0.05638521462506573 +125631,628.155000002106,-0.05638503554190979 +125632,628.1600000021061,-0.05638485649638017 +125633,628.1650000021062,-0.05638467748846905 +125634,628.1700000021063,-0.056384498518168596 +125635,628.1750000021065,-0.05638431958547099 +125636,628.1800000021066,-0.0563841406903684 +125637,628.1850000021067,-0.056383961832853005 +125638,628.1900000021068,-0.05638378301291698 +125639,628.1950000021069,-0.05638360423055251 +125640,628.200000002107,-0.05638342548575177 +125641,628.2050000021071,-0.05638324677850696 +125642,628.2100000021072,-0.056383068108810254 +125643,628.2150000021073,-0.05638288947665383 +125644,628.2200000021074,-0.05638271088202988 +125645,628.2250000021075,-0.05638253232493061 +125646,628.2300000021077,-0.05638235380534819 +125647,628.2350000021078,-0.05638217532327481 +125648,628.2400000021079,-0.05638199687870267 +125649,628.245000002108,-0.05638181847162396 +125650,628.2500000021081,-0.05638164010203089 +125651,628.2550000021082,-0.05638146176991563 +125652,628.2600000021083,-0.05638128347527041 +125653,628.2650000021084,-0.0563811052180874 +125654,628.2700000021085,-0.05638092699835882 +125655,628.2750000021086,-0.05638074881607686 +125656,628.2800000021087,-0.05638057067123374 +125657,628.2850000021089,-0.05638039256382166 +125658,628.290000002109,-0.05638021449383283 +125659,628.2950000021091,-0.056380036461259435 +125660,628.3000000021092,-0.056379858466093724 +125661,628.3050000021093,-0.05637968050832788 +125662,628.3100000021094,-0.05637950258795412 +125663,628.3150000021095,-0.05637932470496466 +125664,628.3200000021096,-0.05637914685935172 +125665,628.3250000021097,-0.05637896905110751 +125666,628.3300000021098,-0.05637879128022425 +125667,628.33500000211,-0.056378613546694156 +125668,628.3400000021101,-0.056378435850509466 +125669,628.3450000021102,-0.05637825819166238 +125670,628.3500000021103,-0.05637808057014513 +125671,628.3550000021104,-0.05637790298594995 +125672,628.3600000021105,-0.056377725439069055 +125673,628.3650000021106,-0.05637754792949468 +125674,628.3700000021107,-0.05637737045721906 +125675,628.3750000021108,-0.05637719302223441 +125676,628.3800000021109,-0.056377015624532976 +125677,628.385000002111,-0.05637683826410698 +125678,628.3900000021112,-0.05637666094094867 +125679,628.3950000021113,-0.05637648365505027 +125680,628.4000000021114,-0.056376306406404016 +125681,628.4050000021115,-0.05637612919500215 +125682,628.4100000021116,-0.056375952020836936 +125683,628.4150000021117,-0.05637577488390059 +125684,628.4200000021118,-0.05637559778418536 +125685,628.4250000021119,-0.0563754207216835 +125686,628.430000002112,-0.056375243696387245 +125687,628.4350000021121,-0.056375066708288846 +125688,628.4400000021122,-0.056374889757380545 +125689,628.4450000021124,-0.056374712843654605 +125690,628.4500000021125,-0.05637453596710328 +125691,628.4550000021126,-0.05637435912771882 +125692,628.4600000021127,-0.05637418232549348 +125693,628.4650000021128,-0.05637400556041951 +125694,628.4700000021129,-0.05637382883248917 +125695,628.475000002113,-0.05637365214169471 +125696,628.4800000021131,-0.05637347548802841 +125697,628.4850000021132,-0.05637329887148252 +125698,628.4900000021133,-0.056373122292049306 +125699,628.4950000021134,-0.05637294574972103 +125700,628.5000000021136,-0.056372769244489945 +125701,628.5050000021137,-0.05637259277634834 +125702,628.5100000021138,-0.05637241634528849 +125703,628.5150000021139,-0.05637223995130263 +125704,628.520000002114,-0.056372063594383064 +125705,628.5250000021141,-0.05637188727452205 +125706,628.5300000021142,-0.056371710991711864 +125707,628.5350000021143,-0.056371534745944786 +125708,628.5400000021144,-0.05637135853721308 +125709,628.5450000021145,-0.056371182365509045 +125710,628.5500000021146,-0.05637100623082495 +125711,628.5550000021148,-0.056370830133153076 +125712,628.5600000021149,-0.056370654072485704 +125713,628.565000002115,-0.056370478048815134 +125714,628.5700000021151,-0.05637030206213362 +125715,628.5750000021152,-0.05637012611243347 +125716,628.5800000021153,-0.05636995019970696 +125717,628.5850000021154,-0.0563697743239464 +125718,628.5900000021155,-0.05636959848514407 +125719,628.5950000021156,-0.05636942268329226 +125720,628.6000000021157,-0.056369246918383256 +125721,628.6050000021158,-0.056369071190409376 +125722,628.610000002116,-0.056368895499362894 +125723,628.6150000021161,-0.056368719845236115 +125724,628.6200000021162,-0.05636854422802135 +125725,628.6250000021163,-0.05636836864771088 +125726,628.6300000021164,-0.05636819310429702 +125727,628.6350000021165,-0.05636801759777207 +125728,628.6400000021166,-0.05636784212812833 +125729,628.6450000021167,-0.05636766669535813 +125730,628.6500000021168,-0.056367491299453745 +125731,628.6550000021169,-0.05636731594040751 +125732,628.660000002117,-0.05636714061821172 +125733,628.6650000021172,-0.05636696533285868 +125734,628.6700000021173,-0.05636679008434072 +125735,628.6750000021174,-0.05636661487265015 +125736,628.6800000021175,-0.05636643969777928 +125737,628.6850000021176,-0.056366264559720436 +125738,628.6900000021177,-0.05636608945846594 +125739,628.6950000021178,-0.0563659143940081 +125740,628.7000000021179,-0.05636573936633924 +125741,628.705000002118,-0.056365564375451684 +125742,628.7100000021181,-0.05636538942133775 +125743,628.7150000021182,-0.05636521450398979 +125744,628.7200000021184,-0.05636503962340011 +125745,628.7250000021185,-0.056364864779561034 +125746,628.7300000021186,-0.0563646899724649 +125747,628.7350000021187,-0.056364515202104046 +125748,628.7400000021188,-0.05636434046847079 +125749,628.7450000021189,-0.056364165771557465 +125750,628.750000002119,-0.056363991111356426 +125751,628.7550000021191,-0.05636381648785999 +125752,628.7600000021192,-0.0563636419010605 +125753,628.7650000021193,-0.056363467350950304 +125754,628.7700000021194,-0.05636329283752174 +125755,628.7750000021196,-0.05636311836076715 +125756,628.7800000021197,-0.05636294392067886 +125757,628.7850000021198,-0.05636276951724924 +125758,628.7900000021199,-0.056362595150470624 +125759,628.79500000212,-0.05636242082033537 +125760,628.8000000021201,-0.05636224652683582 +125761,628.8050000021202,-0.056362072269964314 +125762,628.8100000021203,-0.05636189804971322 +125763,628.8150000021204,-0.05636172386607488 +125764,628.8200000021205,-0.05636154971904166 +125765,628.8250000021206,-0.05636137560860593 +125766,628.8300000021208,-0.056361201534760014 +125767,628.8350000021209,-0.05636102749749628 +125768,628.840000002121,-0.0563608534968071 +125769,628.8450000021211,-0.05636067953268483 +125770,628.8500000021212,-0.05636050560512183 +125771,628.8550000021213,-0.05636033171411047 +125772,628.8600000021214,-0.05636015785964311 +125773,628.8650000021215,-0.05635998404171213 +125774,628.8700000021216,-0.056359810260309874 +125775,628.8750000021217,-0.05635963651542873 +125776,628.8800000021218,-0.05635946280706106 +125777,628.885000002122,-0.05635928913519925 +125778,628.8900000021221,-0.05635911549983567 +125779,628.8950000021222,-0.056358941900962675 +125780,628.9000000021223,-0.05635876833857267 +125781,628.9050000021224,-0.05635859481265803 +125782,628.9100000021225,-0.0563584213232111 +125783,628.9150000021226,-0.0563582478702243 +125784,628.9200000021227,-0.05635807445369001 +125785,628.9250000021228,-0.056357901073600586 +125786,628.9300000021229,-0.05635772772994844 +125787,628.935000002123,-0.05635755442272594 +125788,628.9400000021232,-0.0563573811519255 +125789,628.9450000021233,-0.05635720791753947 +125790,628.9500000021234,-0.05635703471956027 +125791,628.9550000021235,-0.056356861557980295 +125792,628.9600000021236,-0.056356688432791915 +125793,628.9650000021237,-0.05635651534398754 +125794,628.9700000021238,-0.05635634229155956 +125795,628.9750000021239,-0.05635616927550038 +125796,628.980000002124,-0.05635599629580239 +125797,628.9850000021241,-0.05635582335245799 +125798,628.9900000021242,-0.056355650445459586 +125799,628.9950000021244,-0.05635547757479958 +125800,629.0000000021245,-0.056355304740470374 +125801,629.0050000021246,-0.05635513194246438 +125802,629.0100000021247,-0.056354959180774 +125803,629.0150000021248,-0.056354786455391645 +125804,629.0200000021249,-0.05635461376630973 +125805,629.025000002125,-0.05635444111352065 +125806,629.0300000021251,-0.056354268497016836 +125807,629.0350000021252,-0.056354095916790685 +125808,629.0400000021253,-0.05635392337283462 +125809,629.0450000021254,-0.05635375086514105 +125810,629.0500000021256,-0.056353578393702405 +125811,629.0550000021257,-0.056353405958511106 +125812,629.0600000021258,-0.056353233559559554 +125813,629.0650000021259,-0.0563530611968402 +125814,629.070000002126,-0.05635288887034545 +125815,629.0750000021261,-0.05635271658006772 +125816,629.0800000021262,-0.05635254432599946 +125817,629.0850000021263,-0.056352372108133084 +125818,629.0900000021264,-0.05635219992646101 +125819,629.0950000021265,-0.05635202778097569 +125820,629.1000000021266,-0.05635185567166954 +125821,629.1050000021268,-0.05635168359853499 +125822,629.1100000021269,-0.05635151156156448 +125823,629.115000002127,-0.056351339560750446 +125824,629.1200000021271,-0.056351167596085334 +125825,629.1250000021272,-0.056350995667561576 +125826,629.1300000021273,-0.05635082377517161 +125827,629.1350000021274,-0.056350651918907875 +125828,629.1400000021275,-0.05635048009876282 +125829,629.1450000021276,-0.05635030831472888 +125830,629.1500000021277,-0.05635013656679851 +125831,629.1550000021278,-0.05634996485496416 +125832,629.160000002128,-0.05634979317921827 +125833,629.1650000021281,-0.056349621539553287 +125834,629.1700000021282,-0.05634944993596166 +125835,629.1750000021283,-0.05634927836843585 +125836,629.1800000021284,-0.05634910683696829 +125837,629.1850000021285,-0.05634893534155146 +125838,629.1900000021286,-0.056348763882177806 +125839,629.1950000021287,-0.05634859245883979 +125840,629.2000000021288,-0.056348421071529854 +125841,629.2050000021289,-0.05634824972024049 +125842,629.210000002129,-0.05634807840496413 +125843,629.2150000021292,-0.05634790712569324 +125844,629.2200000021293,-0.0563477358824203 +125845,629.2250000021294,-0.05634756467513776 +125846,629.2300000021295,-0.056347393503838106 +125847,629.2350000021296,-0.056347222368513784 +125848,629.2400000021297,-0.056347051269157275 +125849,629.2450000021298,-0.056346880205761056 +125850,629.2500000021299,-0.056346709178317585 +125851,629.25500000213,-0.056346538186819346 +125852,629.2600000021301,-0.05634636723125881 +125853,629.2650000021303,-0.05634619631162846 +125854,629.2700000021304,-0.05634602542792077 +125855,629.2750000021305,-0.05634585458012822 +125856,629.2800000021306,-0.056345683768243275 +125857,629.2850000021307,-0.05634551299225845 +125858,629.2900000021308,-0.05634534225216619 +125859,629.2950000021309,-0.05634517154795901 +125860,629.300000002131,-0.05634500087962938 +125861,629.3050000021311,-0.0563448302471698 +125862,629.3100000021312,-0.05634465965057274 +125863,629.3150000021313,-0.0563444890898307 +125864,629.3200000021315,-0.05634431856493617 +125865,629.3250000021316,-0.05634414807588165 +125866,629.3300000021317,-0.05634397762265962 +125867,629.3350000021318,-0.056343807205262594 +125868,629.3400000021319,-0.056343636823683055 +125869,629.345000002132,-0.05634346647791351 +125870,629.3500000021321,-0.05634329616794645 +125871,629.3550000021322,-0.056343125893774375 +125872,629.3600000021323,-0.05634295565538979 +125873,629.3650000021324,-0.05634278545278521 +125874,629.3700000021325,-0.056342615285953114 +125875,629.3750000021327,-0.05634244515488604 +125876,629.3800000021328,-0.056342275059576466 +125877,629.3850000021329,-0.05634210500001693 +125878,629.390000002133,-0.05634193497619992 +125879,629.3950000021331,-0.05634176498811796 +125880,629.4000000021332,-0.056341595035763546 +125881,629.4050000021333,-0.056341425119129214 +125882,629.4100000021334,-0.05634125523820747 +125883,629.4150000021335,-0.05634108539299082 +125884,629.4200000021336,-0.0563409155834718 +125885,629.4250000021337,-0.05634074580964293 +125886,629.4300000021339,-0.056340576071496715 +125887,629.435000002134,-0.05634040636902569 +125888,629.4400000021341,-0.05634023670222237 +125889,629.4450000021342,-0.05634006707107929 +125890,629.4500000021343,-0.05633989747558897 +125891,629.4550000021344,-0.05633972791574394 +125892,629.4600000021345,-0.05633955839153671 +125893,629.4650000021346,-0.05633938890295984 +125894,629.4700000021347,-0.056339219450005855 +125895,629.4750000021348,-0.05633905003266729 +125896,629.480000002135,-0.05633888065093666 +125897,629.485000002135,-0.05633871130480653 +125898,629.4900000021352,-0.05633854199426941 +125899,629.4950000021353,-0.056338372719317846 +125900,629.5000000021354,-0.056338203479944386 +125901,629.5050000021355,-0.05633803427614157 +125902,629.5100000021356,-0.05633786510790193 +125903,629.5150000021357,-0.056337695975218025 +125904,629.5200000021358,-0.05633752687808239 +125905,629.5250000021359,-0.05633735781648757 +125906,629.530000002136,-0.056337188790426124 +125907,629.5350000021361,-0.0563370197998906 +125908,629.5400000021363,-0.05633685084487354 +125909,629.5450000021364,-0.056336681925367504 +125910,629.5500000021365,-0.05633651304136504 +125911,629.5550000021366,-0.05633634419285869 +125912,629.5600000021367,-0.056336175379841036 +125913,629.5650000021368,-0.056336006602304624 +125914,629.5700000021369,-0.05633583786024201 +125915,629.575000002137,-0.056335669153645754 +125916,629.5800000021371,-0.05633550048250841 +125917,629.5850000021372,-0.05633533184682256 +125918,629.5900000021373,-0.05633516324658075 +125919,629.5950000021375,-0.05633499468177556 +125920,629.6000000021376,-0.05633482615239954 +125921,629.6050000021377,-0.05633465765844528 +125922,629.6100000021378,-0.05633448919990534 +125923,629.6150000021379,-0.05633432077677227 +125924,629.620000002138,-0.05633415238903868 +125925,629.6250000021381,-0.05633398403669711 +125926,629.6300000021382,-0.056333815719740145 +125927,629.6350000021383,-0.05633364743816037 +125928,629.6400000021384,-0.056333479191950364 +125929,629.6450000021385,-0.05633331098110268 +125930,629.6500000021387,-0.05633314280560993 +125931,629.6550000021388,-0.05633297466546468 +125932,629.6600000021389,-0.056332806560659504 +125933,629.665000002139,-0.05633263849118701 +125934,629.6700000021391,-0.05633247045703976 +125935,629.6750000021392,-0.056332302458210366 +125936,629.6800000021393,-0.05633213449469139 +125937,629.6850000021394,-0.05633196656647543 +125938,629.6900000021395,-0.05633179867355509 +125939,629.6950000021396,-0.056331630815922934 +125940,629.7000000021397,-0.05633146299357159 +125941,629.7050000021399,-0.05633129520649364 +125942,629.71000000214,-0.05633112745468166 +125943,629.7150000021401,-0.056330959738128274 +125944,629.7200000021402,-0.056330792056826055 +125945,629.7250000021403,-0.05633062441076763 +125946,629.7300000021404,-0.05633045679994558 +125947,629.7350000021405,-0.05633028922435253 +125948,629.7400000021406,-0.05633012168398106 +125949,629.7450000021407,-0.056329954178823784 +125950,629.7500000021408,-0.056329786708873314 +125951,629.755000002141,-0.05632961927412225 +125952,629.760000002141,-0.05632945187456321 +125953,629.7650000021412,-0.05632928451018879 +125954,629.7700000021413,-0.056329117180991616 +125955,629.7750000021414,-0.0563289498869643 +125956,629.7800000021415,-0.05632878262809945 +125957,629.7850000021416,-0.056328615404389694 +125958,629.7900000021417,-0.05632844821582764 +125959,629.7950000021418,-0.05632828106240591 +125960,629.8000000021419,-0.056328113944117124 +125961,629.805000002142,-0.0563279468609539 +125962,629.8100000021421,-0.05632777981290886 +125963,629.8150000021423,-0.056327612799974634 +125964,629.8200000021424,-0.05632744582214384 +125965,629.8250000021425,-0.05632727887940912 +125966,629.8300000021426,-0.05632711197176309 +125967,629.8350000021427,-0.05632694509919837 +125968,629.8400000021428,-0.0563267782617076 +125969,629.8450000021429,-0.056326611459283416 +125970,629.850000002143,-0.05632644469191844 +125971,629.8550000021431,-0.05632627795960532 +125972,629.8600000021432,-0.056326111262336685 +125973,629.8650000021433,-0.05632594460010518 +125974,629.8700000021435,-0.056325777972903425 +125975,629.8750000021436,-0.05632561138072408 +125976,629.8800000021437,-0.05632544482355978 +125977,629.8850000021438,-0.05632527830140316 +125978,629.8900000021439,-0.05632511181424688 +125979,629.895000002144,-0.056324945362083566 +125980,629.9000000021441,-0.056324778944905875 +125981,629.9050000021442,-0.05632461256270645 +125982,629.9100000021443,-0.05632444621547795 +125983,629.9150000021444,-0.05632427990321301 +125984,629.9200000021445,-0.0563241136259043 +125985,629.9250000021447,-0.056323947383544466 +125986,629.9300000021448,-0.056323781176126166 +125987,629.9350000021449,-0.05632361500364203 +125988,629.940000002145,-0.05632344886608475 +125989,629.9450000021451,-0.056323282763446954 +125990,629.9500000021452,-0.05632311669572133 +125991,629.9550000021453,-0.05632295066290052 +125992,629.9600000021454,-0.056322784664977206 +125993,629.9650000021455,-0.05632261870194402 +125994,629.9700000021456,-0.056322452773793656 +125995,629.9750000021457,-0.056322286880518775 +125996,629.9800000021459,-0.05632212102211203 +125997,629.985000002146,-0.0563219551985661 +125998,629.9900000021461,-0.05632178940987366 +125999,629.9950000021462,-0.05632162365602737 +126000,630.0000000021463,-0.05632145793701992 +126001,630.0050000021464,-0.05632129225284396 +126002,630.0100000021465,-0.05632112660349219 +126003,630.0150000021466,-0.05632096098895727 +126004,630.0200000021467,-0.05632079540923189 +126005,630.0250000021468,-0.05632062986430871 +126006,630.030000002147,-0.05632046435418044 +126007,630.0350000021471,-0.05632029887883975 +126008,630.0400000021472,-0.05632013343827932 +126009,630.0450000021473,-0.05631996803249181 +126010,630.0500000021474,-0.05631980266146995 +126011,630.0550000021475,-0.0563196373252064 +126012,630.0600000021476,-0.05631947202369386 +126013,630.0650000021477,-0.056319306756925015 +126014,630.0700000021478,-0.056319141524892556 +126015,630.0750000021479,-0.056318976327589185 +126016,630.080000002148,-0.05631881116500759 +126017,630.0850000021481,-0.05631864603714046 +126018,630.0900000021483,-0.05631848094398049 +126019,630.0950000021484,-0.056318315885520394 +126020,630.1000000021485,-0.056318150861752854 +126021,630.1050000021486,-0.05631798587267059 +126022,630.1100000021487,-0.056317820918266294 +126023,630.1150000021488,-0.05631765599853266 +126024,630.1200000021489,-0.056317491113462397 +126025,630.125000002149,-0.056317326263048216 +126026,630.1300000021491,-0.056317161447282826 +126027,630.1350000021492,-0.05631699666615893 +126028,630.1400000021493,-0.05631683191966923 +126029,630.1450000021495,-0.056316667207806446 +126030,630.1500000021496,-0.0563165025305633 +126031,630.1550000021497,-0.05631633788793249 +126032,630.1600000021498,-0.056316173279906734 +126033,630.1650000021499,-0.05631600870647876 +126034,630.17000000215,-0.05631584416764126 +126035,630.1750000021501,-0.05631567966338698 +126036,630.1800000021502,-0.05631551519370862 +126037,630.1850000021503,-0.05631535075859893 +126038,630.1900000021504,-0.0563151863580506 +126039,630.1950000021506,-0.056315021992056374 +126040,630.2000000021507,-0.056314857660608966 +126041,630.2050000021508,-0.05631469336370111 +126042,630.2100000021509,-0.05631452910132553 +126043,630.215000002151,-0.05631436487347496 +126044,630.2200000021511,-0.056314200680142125 +126045,630.2250000021512,-0.05631403652131975 +126046,630.2300000021513,-0.05631387239700059 +126047,630.2350000021514,-0.056313708307177364 +126048,630.2400000021515,-0.05631354425184282 +126049,630.2450000021516,-0.05631338023098967 +126050,630.2500000021518,-0.05631321624461067 +126051,630.2550000021519,-0.056313052292698576 +126052,630.260000002152,-0.05631288837524609 +126053,630.2650000021521,-0.056312724492245995 +126054,630.2700000021522,-0.056312560643691 +126055,630.2750000021523,-0.05631239682957387 +126056,630.2800000021524,-0.056312233049887354 +126057,630.2850000021525,-0.056312069304624186 +126058,630.2900000021526,-0.05631190559377713 +126059,630.2950000021527,-0.05631174191733892 +126060,630.3000000021528,-0.05631157827530231 +126061,630.305000002153,-0.05631141466766006 +126062,630.3100000021531,-0.05631125109440493 +126063,630.3150000021532,-0.05631108755552965 +126064,630.3200000021533,-0.056310924051027014 +126065,630.3250000021534,-0.05631076058088975 +126066,630.3300000021535,-0.056310597145110636 +126067,630.3350000021536,-0.05631043374368241 +126068,630.3400000021537,-0.05631027037659786 +126069,630.3450000021538,-0.05631010704384973 +126070,630.3500000021539,-0.05630994374543079 +126071,630.355000002154,-0.0563097804813338 +126072,630.3600000021542,-0.05630961725155154 +126073,630.3650000021543,-0.05630945405607678 +126074,630.3700000021544,-0.056309290894902275 +126075,630.3750000021545,-0.0563091277680208 +126076,630.3800000021546,-0.05630896467542513 +126077,630.3850000021547,-0.056308801617108044 +126078,630.3900000021548,-0.056308638593062316 +126079,630.3950000021549,-0.056308475603280714 +126080,630.400000002155,-0.05630831264775603 +126081,630.4050000021551,-0.05630814972648102 +126082,630.4100000021552,-0.05630798683944847 +126083,630.4150000021554,-0.056307823986651184 +126084,630.4200000021555,-0.056307661168081925 +126085,630.4250000021556,-0.05630749838373347 +126086,630.4300000021557,-0.056307335633598625 +126087,630.4350000021558,-0.05630717291767016 +126088,630.4400000021559,-0.05630701023594087 +126089,630.445000002156,-0.05630684758840354 +126090,630.4500000021561,-0.05630668497505097 +126091,630.4550000021562,-0.05630652239587595 +126092,630.4600000021563,-0.05630635985087125 +126093,630.4650000021564,-0.05630619734002969 +126094,630.4700000021566,-0.056306034863344054 +126095,630.4750000021567,-0.056305872420807146 +126096,630.4800000021568,-0.05630571001241177 +126097,630.4850000021569,-0.0563055476381507 +126098,630.490000002157,-0.056305385298016764 +126099,630.4950000021571,-0.05630522299200275 +126100,630.5000000021572,-0.05630506072010147 +126101,630.5050000021573,-0.056304898482305715 +126102,630.5100000021574,-0.056304736278608304 +126103,630.5150000021575,-0.05630457410900203 +126104,630.5200000021576,-0.05630441197347973 +126105,630.5250000021578,-0.056304249872034196 +126106,630.5300000021579,-0.056304087804658225 +126107,630.535000002158,-0.05630392577134464 +126108,630.5400000021581,-0.056303763772086256 +126109,630.5450000021582,-0.05630360180687589 +126110,630.5500000021583,-0.05630343987570636 +126111,630.5550000021584,-0.05630327797857048 +126112,630.5600000021585,-0.056303116115461065 +126113,630.5650000021586,-0.05630295428637095 +126114,630.5700000021587,-0.056302792491292934 +126115,630.5750000021588,-0.05630263073021986 +126116,630.580000002159,-0.05630246900314454 +126117,630.5850000021591,-0.05630230731005981 +126118,630.5900000021592,-0.05630214565095848 +126119,630.5950000021593,-0.05630198402583339 +126120,630.6000000021594,-0.056301822434677365 +126121,630.6050000021595,-0.05630166087748323 +126122,630.6100000021596,-0.056301499354243834 +126123,630.6150000021597,-0.05630133786495199 +126124,630.6200000021598,-0.05630117640960054 +126125,630.6250000021599,-0.05630101498818233 +126126,630.63000000216,-0.05630085360069019 +126127,630.6350000021602,-0.05630069224711696 +126128,630.6400000021603,-0.05630053092745547 +126129,630.6450000021604,-0.056300369641698565 +126130,630.6500000021605,-0.05630020838983909 +126131,630.6550000021606,-0.05630004717186988 +126132,630.6600000021607,-0.056299885987783786 +126133,630.6650000021608,-0.05629972483757365 +126134,630.6700000021609,-0.056299563721232335 +126135,630.675000002161,-0.05629940263875267 +126136,630.6800000021611,-0.05629924159012751 +126137,630.6850000021612,-0.05629908057534972 +126138,630.6900000021614,-0.05629891959441214 +126139,630.6950000021615,-0.05629875864730762 +126140,630.7000000021616,-0.05629859773402902 +126141,630.7050000021617,-0.056298436854569193 +126142,630.7100000021618,-0.056298276008921 +126143,630.7150000021619,-0.05629811519707728 +126144,630.720000002162,-0.05629795441903093 +126145,630.7250000021621,-0.05629779367477478 +126146,630.7300000021622,-0.056297632964301715 +126147,630.7350000021623,-0.05629747228760458 +126148,630.7400000021624,-0.056297311644676246 +126149,630.7450000021626,-0.056297151035509585 +126150,630.7500000021627,-0.056296990460097465 +126151,630.7550000021628,-0.05629682991843275 +126152,630.7600000021629,-0.0562966694105083 +126153,630.765000002163,-0.05629650893631701 +126154,630.7700000021631,-0.05629634849585173 +126155,630.7750000021632,-0.05629618808910536 +126156,630.7800000021633,-0.05629602771607074 +126157,630.7850000021634,-0.05629586737674078 +126158,630.7900000021635,-0.05629570707110833 +126159,630.7950000021636,-0.05629554679916629 +126160,630.8000000021638,-0.05629538656090753 +126161,630.8050000021639,-0.056295226356324946 +126162,630.810000002164,-0.0562950661854114 +126163,630.8150000021641,-0.05629490604815979 +126164,630.8200000021642,-0.05629474594456299 +126165,630.8250000021643,-0.0562945858746139 +126166,630.8300000021644,-0.0562944258383054 +126167,630.8350000021645,-0.05629426583563039 +126168,630.8400000021646,-0.05629410586658175 +126169,630.8450000021647,-0.05629394593115237 +126170,630.8500000021648,-0.05629378602933514 +126171,630.855000002165,-0.056293626161122975 +126172,630.8600000021651,-0.05629346632650875 +126173,630.8650000021652,-0.05629330652548538 +126174,630.8700000021653,-0.05629314675804574 +126175,630.8750000021654,-0.056292987024182735 +126176,630.8800000021655,-0.05629282732388929 +126177,630.8850000021656,-0.05629266765715828 +126178,630.8900000021657,-0.05629250802398262 +126179,630.8950000021658,-0.05629234842435521 +126180,630.9000000021659,-0.05629218885826897 +126181,630.905000002166,-0.0562920293257168 +126182,630.9100000021662,-0.0562918698266916 +126183,630.9150000021663,-0.05629171036118628 +126184,630.9200000021664,-0.056291550929193745 +126185,630.9250000021665,-0.05629139153070692 +126186,630.9300000021666,-0.05629123216571871 +126187,630.9350000021667,-0.05629107283422205 +126188,630.9400000021668,-0.05629091353620983 +126189,630.9450000021669,-0.056290754271674986 +126190,630.950000002167,-0.05629059504061043 +126191,630.9550000021671,-0.05629043584300908 +126192,630.9600000021672,-0.05629027667886385 +126193,630.9650000021674,-0.05629011754816767 +126194,630.9700000021675,-0.056289958450913474 +126195,630.9750000021676,-0.05628979938709418 +126196,630.9800000021677,-0.056289640356702704 +126197,630.9850000021678,-0.05628948135973198 +126198,630.9900000021679,-0.05628932239617494 +126199,630.995000002168,-0.05628916346602451 +126200,631.0000000021681,-0.05628900456927362 +126201,631.0050000021682,-0.056288845705915205 +126202,631.0100000021683,-0.056288686875942205 +126203,631.0150000021684,-0.05628852807934755 +126204,631.0200000021686,-0.05628836931612416 +126205,631.0250000021687,-0.05628821058626499 +126206,631.0300000021688,-0.056288051889762984 +126207,631.0350000021689,-0.056287893226611076 +126208,631.040000002169,-0.0562877345968022 +126209,631.0450000021691,-0.05628757600032931 +126210,631.0500000021692,-0.05628741743718534 +126211,631.0550000021693,-0.05628725890736324 +126212,631.0600000021694,-0.05628710041085596 +126213,631.0650000021695,-0.056286941947656446 +126214,631.0700000021696,-0.05628678351775764 +126215,631.0750000021698,-0.0562866251211525 +126216,631.0800000021699,-0.05628646675783396 +126217,631.08500000217,-0.05628630842779501 +126218,631.0900000021701,-0.05628615013102856 +126219,631.0950000021702,-0.0562859918675276 +126220,631.1000000021703,-0.056285833637285065 +126221,631.1050000021704,-0.05628567544029393 +126222,631.1100000021705,-0.05628551727654714 +126223,631.1150000021706,-0.05628535914603766 +126224,631.1200000021707,-0.056285201048758456 +126225,631.1250000021709,-0.05628504298470249 +126226,631.130000002171,-0.05628488495386272 +126227,631.1350000021711,-0.05628472695623211 +126228,631.1400000021712,-0.056284568991803625 +126229,631.1450000021713,-0.056284411060570236 +126230,631.1500000021714,-0.05628425316252492 +126231,631.1550000021715,-0.056284095297660645 +126232,631.1600000021716,-0.05628393746597037 +126233,631.1650000021717,-0.056283779667447076 +126234,631.1700000021718,-0.056283621902083754 +126235,631.1750000021719,-0.05628346416987336 +126236,631.180000002172,-0.05628330647080887 +126237,631.1850000021722,-0.05628314880488327 +126238,631.1900000021723,-0.05628299117208954 +126239,631.1950000021724,-0.05628283357242064 +126240,631.2000000021725,-0.05628267600586958 +126241,631.2050000021726,-0.056282518472429335 +126242,631.2100000021727,-0.056282360972092875 +126243,631.2150000021728,-0.056282203504853204 +126244,631.2200000021729,-0.056282046070703286 +126245,631.225000002173,-0.05628188866963613 +126246,631.2300000021731,-0.056281731301644725 +126247,631.2350000021733,-0.05628157396672205 +126248,631.2400000021734,-0.05628141666486111 +126249,631.2450000021735,-0.05628125939605489 +126250,631.2500000021736,-0.05628110216029639 +126251,631.2550000021737,-0.056280944957578585 +126252,631.2600000021738,-0.0562807877878945 +126253,631.2650000021739,-0.056280630651237104 +126254,631.270000002174,-0.056280473547599415 +126255,631.2750000021741,-0.056280316476974436 +126256,631.2800000021742,-0.05628015943935516 +126257,631.2850000021743,-0.0562800024347346 +126258,631.2900000021745,-0.05627984546310574 +126259,631.2950000021746,-0.05627968852446161 +126260,631.3000000021747,-0.0562795316187952 +126261,631.3050000021748,-0.056279374746099536 +126262,631.3100000021749,-0.056279217906367605 +126263,631.315000002175,-0.05627906109959243 +126264,631.3200000021751,-0.056278904325767015 +126265,631.3250000021752,-0.05627874758488439 +126266,631.3300000021753,-0.05627859087693755 +126267,631.3350000021754,-0.05627843420191951 +126268,631.3400000021755,-0.05627827755982331 +126269,631.3450000021757,-0.05627812095064195 +126270,631.3500000021758,-0.05627796437436845 +126271,631.3550000021759,-0.05627780783099583 +126272,631.360000002176,-0.05627765132051711 +126273,631.3650000021761,-0.056277494842925324 +126274,631.3700000021762,-0.056277338398213486 +126275,631.3750000021763,-0.05627718198637463 +126276,631.3800000021764,-0.05627702560740178 +126277,631.3850000021765,-0.05627686926128797 +126278,631.3900000021766,-0.05627671294802622 +126279,631.3950000021767,-0.056276556667609556 +126280,631.4000000021769,-0.056276400420031014 +126281,631.405000002177,-0.05627624420528363 +126282,631.4100000021771,-0.05627608802336045 +126283,631.4150000021772,-0.05627593187425448 +126284,631.4200000021773,-0.056275775757958786 +126285,631.4250000021774,-0.056275619674466384 +126286,631.4300000021775,-0.056275463623770325 +126287,631.4350000021776,-0.05627530760586365 +126288,631.4400000021777,-0.05627515162073939 +126289,631.4450000021778,-0.0562749956683906 +126290,631.450000002178,-0.056274839748810326 +126291,631.455000002178,-0.05627468386199161 +126292,631.4600000021782,-0.05627452800792749 +126293,631.4650000021783,-0.05627437218661102 +126294,631.4700000021784,-0.05627421639803525 +126295,631.4750000021785,-0.05627406064219324 +126296,631.4800000021786,-0.05627390491907802 +126297,631.4850000021787,-0.05627374922868266 +126298,631.4900000021788,-0.05627359357100022 +126299,631.4950000021789,-0.056273437946023734 +126300,631.500000002179,-0.05627328235374627 +126301,631.5050000021791,-0.05627312679416089 +126302,631.5100000021793,-0.05627297126726064 +126303,631.5150000021794,-0.0562728157730386 +126304,631.5200000021795,-0.056272660311487824 +126305,631.5250000021796,-0.05627250488260137 +126306,631.5300000021797,-0.056272349486372296 +126307,631.5350000021798,-0.05627219412279368 +126308,631.5400000021799,-0.056272038791858575 +126309,631.54500000218,-0.05627188349356007 +126310,631.5500000021801,-0.05627172822789122 +126311,631.5550000021802,-0.05627157299484509 +126312,631.5600000021803,-0.05627141779441476 +126313,631.5650000021805,-0.0562712626265933 +126314,631.5700000021806,-0.05627110749137378 +126315,631.5750000021807,-0.056270952388749296 +126316,631.5800000021808,-0.056270797318712894 +126317,631.5850000021809,-0.05627064228125768 +126318,631.590000002181,-0.056270487276376714 +126319,631.5950000021811,-0.05627033230406308 +126320,631.6000000021812,-0.05627017736430986 +126321,631.6050000021813,-0.056270022457110144 +126322,631.6100000021814,-0.056269867582457014 +126323,631.6150000021815,-0.056269712740343536 +126324,631.6200000021817,-0.05626955793076282 +126325,631.6250000021818,-0.056269403153707945 +126326,631.6300000021819,-0.056269248409171996 +126327,631.635000002182,-0.05626909369714808 +126328,631.6400000021821,-0.05626893901762926 +126329,631.6450000021822,-0.05626878437060866 +126330,631.6500000021823,-0.05626862975607935 +126331,631.6550000021824,-0.05626847517403444 +126332,631.6600000021825,-0.05626832062446701 +126333,631.6650000021826,-0.05626816610737018 +126334,631.6700000021827,-0.05626801162273702 +126335,631.6750000021829,-0.05626785717056066 +126336,631.680000002183,-0.05626770275083419 +126337,631.6850000021831,-0.056267548363550704 +126338,631.6900000021832,-0.05626739400870331 +126339,631.6950000021833,-0.05626723968628511 +126340,631.7000000021834,-0.05626708539628922 +126341,631.7050000021835,-0.056266931138708745 +126342,631.7100000021836,-0.056266776913536785 +126343,631.7150000021837,-0.05626662272076646 +126344,631.7200000021838,-0.05626646856039088 +126345,631.725000002184,-0.05626631443240315 +126346,631.730000002184,-0.05626616033679639 +126347,631.7350000021842,-0.05626600627356371 +126348,631.7400000021843,-0.056265852242698214 +126349,631.7450000021844,-0.05626569824419305 +126350,631.7500000021845,-0.05626554427804132 +126351,631.7550000021846,-0.05626539034423614 +126352,631.7600000021847,-0.05626523644277063 +126353,631.7650000021848,-0.05626508257363793 +126354,631.7700000021849,-0.05626492873683114 +126355,631.775000002185,-0.0562647749323434 +126356,631.7800000021851,-0.05626462116016784 +126357,631.7850000021853,-0.056264467420297566 +126358,631.7900000021854,-0.05626431371272572 +126359,631.7950000021855,-0.056264160037445436 +126360,631.8000000021856,-0.05626400639444984 +126361,631.8050000021857,-0.05626385278373205 +126362,631.8100000021858,-0.056263699205285206 +126363,631.8150000021859,-0.056263545659102465 +126364,631.820000002186,-0.056263392145176935 +126365,631.8250000021861,-0.05626323866350177 +126366,631.8300000021862,-0.056263085214070106 +126367,631.8350000021863,-0.05626293179687507 +126368,631.8400000021865,-0.05626277841190981 +126369,631.8450000021866,-0.05626262505916748 +126370,631.8500000021867,-0.0562624717386412 +126371,631.8550000021868,-0.05626231845032413 +126372,631.8600000021869,-0.056262165194209415 +126373,631.865000002187,-0.0562620119702902 +126374,631.8700000021871,-0.05626185877855963 +126375,631.8750000021872,-0.05626170561901086 +126376,631.8800000021873,-0.05626155249163702 +126377,631.8850000021874,-0.05626139939643129 +126378,631.8900000021875,-0.05626124633338681 +126379,631.8950000021877,-0.056261093302496734 +126380,631.9000000021878,-0.05626094030375421 +126381,631.9050000021879,-0.05626078733715241 +126382,631.910000002188,-0.05626063440268449 +126383,631.9150000021881,-0.0562604815003436 +126384,631.9200000021882,-0.056260328630122904 +126385,631.9250000021883,-0.05626017579201556 +126386,631.9300000021884,-0.056260022986014735 +126387,631.9350000021885,-0.05625987021211359 +126388,631.9400000021886,-0.05625971747030529 +126389,631.9450000021887,-0.056259564760583004 +126390,631.9500000021889,-0.05625941208293991 +126391,631.955000002189,-0.05625925943736914 +126392,631.9600000021891,-0.056259106823863904 +126393,631.9650000021892,-0.05625895424241735 +126394,631.9700000021893,-0.056258801693022664 +126395,631.9750000021894,-0.05625864917567302 +126396,631.9800000021895,-0.05625849669036157 +126397,631.9850000021896,-0.056258344237081516 +126398,631.9900000021897,-0.056258191815826024 +126399,631.9950000021898,-0.05625803942658828 +126400,632.00000000219,-0.05625788706936146 +126401,632.0050000021901,-0.056257734744138733 +126402,632.0100000021902,-0.05625758245091329 +126403,632.0150000021903,-0.05625743018967832 +126404,632.0200000021904,-0.056257277960427 +126405,632.0250000021905,-0.05625712576315253 +126406,632.0300000021906,-0.05625697359784809 +126407,632.0350000021907,-0.056256821464506855 +126408,632.0400000021908,-0.05625666936312203 +126409,632.0450000021909,-0.056256517293686796 +126410,632.050000002191,-0.056256365256194346 +126411,632.0550000021912,-0.05625621325063787 +126412,632.0600000021913,-0.05625606127701058 +126413,632.0650000021914,-0.056255909335305644 +126414,632.0700000021915,-0.05625575742551628 +126415,632.0750000021916,-0.05625560554763568 +126416,632.0800000021917,-0.05625545370165705 +126417,632.0850000021918,-0.056255301887573585 +126418,632.0900000021919,-0.05625515010537848 +126419,632.095000002192,-0.05625499835506494 +126420,632.1000000021921,-0.056254846636626187 +126421,632.1050000021922,-0.056254694950055396 +126422,632.1100000021924,-0.0562545432953458 +126423,632.1150000021925,-0.056254391672490585 +126424,632.1200000021926,-0.05625424008148298 +126425,632.1250000021927,-0.056254088522316184 +126426,632.1300000021928,-0.056253936994983406 +126427,632.1350000021929,-0.056253785499477856 +126428,632.140000002193,-0.05625363403579276 +126429,632.1450000021931,-0.05625348260392133 +126430,632.1500000021932,-0.056253331203856775 +126431,632.1550000021933,-0.05625317983559232 +126432,632.1600000021934,-0.05625302849912117 +126433,632.1650000021936,-0.056252877194436564 +126434,632.1700000021937,-0.05625272592153171 +126435,632.1750000021938,-0.05625257468039983 +126436,632.1800000021939,-0.056252423471034166 +126437,632.185000002194,-0.05625227229342792 +126438,632.1900000021941,-0.05625212114757433 +126439,632.1950000021942,-0.05625197003346661 +126440,632.2000000021943,-0.056251818951098 +126441,632.2050000021944,-0.056251667900461724 +126442,632.2100000021945,-0.05625151688155103 +126443,632.2150000021946,-0.056251365894359126 +126444,632.2200000021948,-0.05625121493887926 +126445,632.2250000021949,-0.05625106401510465 +126446,632.230000002195,-0.05625091312302854 +126447,632.2350000021951,-0.05625076226264417 +126448,632.2400000021952,-0.05625061143394478 +126449,632.2450000021953,-0.056250460636923606 +126450,632.2500000021954,-0.05625030987157389 +126451,632.2550000021955,-0.056250159137888875 +126452,632.2600000021956,-0.0562500084358618 +126453,632.2650000021957,-0.05624985776548591 +126454,632.2700000021958,-0.05624970712675444 +126455,632.275000002196,-0.05624955651966066 +126456,632.2800000021961,-0.05624940594419779 +126457,632.2850000021962,-0.056249255400359105 +126458,632.2900000021963,-0.056249104888137835 +126459,632.2950000021964,-0.05624895440752725 +126460,632.3000000021965,-0.05624880395852058 +126461,632.3050000021966,-0.056248653541111096 +126462,632.3100000021967,-0.05624850315529204 +126463,632.3150000021968,-0.05624835280105668 +126464,632.3200000021969,-0.05624820247839827 +126465,632.325000002197,-0.05624805218731007 +126466,632.3300000021972,-0.056247901927785324 +126467,632.3350000021973,-0.0562477516998173 +126468,632.3400000021974,-0.05624760150339928 +126469,632.3450000021975,-0.05624745133852451 +126470,632.3500000021976,-0.05624730120518626 +126471,632.3550000021977,-0.05624715110337779 +126472,632.3600000021978,-0.05624700103309236 +126473,632.3650000021979,-0.05624685099432326 +126474,632.370000002198,-0.05624670098706373 +126475,632.3750000021981,-0.056246551011307065 +126476,632.3800000021982,-0.05624640106704652 +126477,632.3850000021984,-0.05624625115427539 +126478,632.3900000021985,-0.05624610127298692 +126479,632.3950000021986,-0.05624595142317441 +126480,632.4000000021987,-0.056245801604831114 +126481,632.4050000021988,-0.05624565181795033 +126482,632.4100000021989,-0.056245502062525335 +126483,632.415000002199,-0.056245352338549395 +126484,632.4200000021991,-0.05624520264601581 +126485,632.4250000021992,-0.05624505298491785 +126486,632.4300000021993,-0.056244903355248795 +126487,632.4350000021994,-0.05624475375700195 +126488,632.4400000021996,-0.05624460419017056 +126489,632.4450000021997,-0.056244454654747957 +126490,632.4500000021998,-0.05624430515072742 +126491,632.4550000021999,-0.05624415567810222 +126492,632.4600000022,-0.05624400623686566 +126493,632.4650000022001,-0.05624385682701103 +126494,632.4700000022002,-0.056243707448531625 +126495,632.4750000022003,-0.05624355810142073 +126496,632.4800000022004,-0.05624340878567165 +126497,632.4850000022005,-0.056243259501277676 +126498,632.4900000022006,-0.056243110248232114 +126499,632.4950000022008,-0.05624296102652825 +126500,632.5000000022009,-0.0562428118361594 +126501,632.505000002201,-0.05624266267711886 +126502,632.5100000022011,-0.05624251354939993 +126503,632.5150000022012,-0.056242364452995915 +126504,632.5200000022013,-0.05624221538790012 +126505,632.5250000022014,-0.05624206635410586 +126506,632.5300000022015,-0.056241917351606434 +126507,632.5350000022016,-0.056241768380395143 +126508,632.5400000022017,-0.05624161944046532 +126509,632.5450000022018,-0.05624147053181025 +126510,632.550000002202,-0.05624132165442326 +126511,632.5550000022021,-0.056241172808297664 +126512,632.5600000022022,-0.056241023993426766 +126513,632.5650000022023,-0.05624087520980389 +126514,632.5700000022024,-0.056240726457422355 +126515,632.5750000022025,-0.05624057773627547 +126516,632.5800000022026,-0.056240429046356566 +126517,632.5850000022027,-0.05624028038765896 +126518,632.5900000022028,-0.05624013176017597 +126519,632.5950000022029,-0.056239983163900935 +126520,632.600000002203,-0.05623983459882714 +126521,632.6050000022032,-0.05623968606494796 +126522,632.6100000022033,-0.056239537562256685 +126523,632.6150000022034,-0.056239389090746654 +126524,632.6200000022035,-0.05623924065041121 +126525,632.6250000022036,-0.05623909224124367 +126526,632.6300000022037,-0.05623894386323737 +126527,632.6350000022038,-0.05623879551638562 +126528,632.6400000022039,-0.056238647200681786 +126529,632.645000002204,-0.056238498916119185 +126530,632.6500000022041,-0.056238350662691165 +126531,632.6550000022042,-0.05623820244039105 +126532,632.6600000022044,-0.05623805424921218 +126533,632.6650000022045,-0.056237906089147915 +126534,632.6700000022046,-0.05623775796019157 +126535,632.6750000022047,-0.0562376098623365 +126536,632.6800000022048,-0.05623746179557604 +126537,632.6850000022049,-0.05623731375990355 +126538,632.690000002205,-0.05623716575531236 +126539,632.6950000022051,-0.05623701778179583 +126540,632.7000000022052,-0.056236869839347295 +126541,632.7050000022053,-0.05623672192796011 +126542,632.7100000022054,-0.05623657404762763 +126543,632.7150000022056,-0.056236426198343195 +126544,632.7200000022057,-0.056236278380100174 +126545,632.7250000022058,-0.05623613059289191 +126546,632.7300000022059,-0.05623598283671176 +126547,632.735000002206,-0.05623583511155307 +126548,632.7400000022061,-0.05623568741740921 +126549,632.7450000022062,-0.05623553975427355 +126550,632.7500000022063,-0.05623539212213943 +126551,632.7550000022064,-0.05623524452100021 +126552,632.7600000022065,-0.05623509695084927 +126553,632.7650000022066,-0.05623494941167995 +126554,632.7700000022068,-0.056234801903485634 +126555,632.7750000022069,-0.05623465442625968 +126556,632.780000002207,-0.056234506979995456 +126557,632.7850000022071,-0.056234359564686344 +126558,632.7900000022072,-0.056234212180325684 +126559,632.7950000022073,-0.05623406482690688 +126560,632.8000000022074,-0.056233917504423275 +126561,632.8050000022075,-0.05623377021286825 +126562,632.8100000022076,-0.056233622952235184 +126563,632.8150000022077,-0.056233475722517454 +126564,632.8200000022078,-0.05623332852370844 +126565,632.825000002208,-0.05623318135580149 +126566,632.8300000022081,-0.05623303421879002 +126567,632.8350000022082,-0.0562328871126674 +126568,632.8400000022083,-0.056232740037426995 +126569,632.8450000022084,-0.0562325929930622 +126570,632.8500000022085,-0.05623244597956639 +126571,632.8550000022086,-0.05623229899693297 +126572,632.8600000022087,-0.056232152045155304 +126573,632.8650000022088,-0.05623200512422679 +126574,632.8700000022089,-0.05623185823414082 +126575,632.875000002209,-0.05623171137489078 +126576,632.8800000022092,-0.056231564546470054 +126577,632.8850000022093,-0.05623141774887203 +126578,632.8900000022094,-0.056231270982090124 +126579,632.8950000022095,-0.0562311242461177 +126580,632.9000000022096,-0.05623097754094818 +126581,632.9050000022097,-0.05623083086657493 +126582,632.9100000022098,-0.056230684222991385 +126583,632.9150000022099,-0.05623053761019092 +126584,632.92000000221,-0.05623039102816695 +126585,632.9250000022101,-0.05623024447691286 +126586,632.9300000022102,-0.05623009795642206 +126587,632.9350000022104,-0.05622995146668795 +126588,632.9400000022105,-0.05622980500770393 +126589,632.9450000022106,-0.05622965857946342 +126590,632.9500000022107,-0.05622951218195982 +126591,632.9550000022108,-0.05622936581518654 +126592,632.9600000022109,-0.05622921947913699 +126593,632.965000002211,-0.056229073173804565 +126594,632.9700000022111,-0.0562289268991827 +126595,632.9750000022112,-0.056228780655264786 +126596,632.9800000022113,-0.056228634442044255 +126597,632.9850000022115,-0.05622848825951452 +126598,632.9900000022116,-0.05622834210766899 +126599,632.9950000022117,-0.05622819598650109 +126600,633.0000000022118,-0.05622804989600424 +126601,633.0050000022119,-0.05622790383617185 +126602,633.010000002212,-0.05622775780699733 +126603,633.0150000022121,-0.05622761180847414 +126604,633.0200000022122,-0.056227465840595674 +126605,633.0250000022123,-0.05622731990335537 +126606,633.0300000022124,-0.05622717399674663 +126607,633.0350000022125,-0.05622702812076291 +126608,633.0400000022127,-0.05622688227539763 +126609,633.0450000022128,-0.05622673646064422 +126610,633.0500000022129,-0.0562265906764961 +126611,633.055000002213,-0.05622644492294671 +126612,633.0600000022131,-0.056226299199989484 +126613,633.0650000022132,-0.05622615350761785 +126614,633.0700000022133,-0.05622600784582525 +126615,633.0750000022134,-0.05622586221460512 +126616,633.0800000022135,-0.05622571661395089 +126617,633.0850000022136,-0.05622557104385601 +126618,633.0900000022137,-0.056225425504313906 +126619,633.0950000022139,-0.05622527999531803 +126620,633.100000002214,-0.05622513451686183 +126621,633.1050000022141,-0.056224989068938726 +126622,633.1100000022142,-0.05622484365154219 +126623,633.1150000022143,-0.05622469826466565 +126624,633.1200000022144,-0.056224552908302555 +126625,633.1250000022145,-0.05622440758244636 +126626,633.1300000022146,-0.0562242622870905 +126627,633.1350000022147,-0.056224117022228445 +126628,633.1400000022148,-0.05622397178785363 +126629,633.1450000022149,-0.05622382658395951 +126630,633.150000002215,-0.056223681410539544 +126631,633.1550000022152,-0.05622353626758719 +126632,633.1600000022153,-0.0562233911550959 +126633,633.1650000022154,-0.05622324607305913 +126634,633.1700000022155,-0.056223101021470344 +126635,633.1750000022156,-0.056222956000322996 +126636,633.1800000022157,-0.05622281100961055 +126637,633.1850000022158,-0.056222666049326464 +126638,633.1900000022159,-0.05622252111946421 +126639,633.195000002216,-0.05622237622001724 +126640,633.2000000022161,-0.05622223135097903 +126641,633.2050000022163,-0.05622208651234304 +126642,633.2100000022164,-0.056221941704102746 +126643,633.2150000022165,-0.0562217969262516 +126644,633.2200000022166,-0.05622165217878309 +126645,633.2250000022167,-0.056221507461690676 +126646,633.2300000022168,-0.056221362774967844 +126647,633.2350000022169,-0.05622121811860805 +126648,633.240000002217,-0.05622107349260479 +126649,633.2450000022171,-0.05622092889695152 +126650,633.2500000022172,-0.056220784331641724 +126651,633.2550000022173,-0.05622063979666888 +126652,633.2600000022175,-0.056220495292026475 +126653,633.2650000022176,-0.05622035081770798 +126654,633.2700000022177,-0.05622020637370689 +126655,633.2750000022178,-0.056220061960016665 +126656,633.2800000022179,-0.05621991757663081 +126657,633.285000002218,-0.0562197732235428 +126658,633.2900000022181,-0.05621962890074613 +126659,633.2950000022182,-0.05621948460823428 +126660,633.3000000022183,-0.056219340346000735 +126661,633.3050000022184,-0.05621919611403899 +126662,633.3100000022185,-0.056219051912342534 +126663,633.3150000022187,-0.05621890774090487 +126664,633.3200000022188,-0.05621876359971948 +126665,633.3250000022189,-0.05621861948877987 +126666,633.330000002219,-0.05621847540807951 +126667,633.3350000022191,-0.05621833135761193 +126668,633.3400000022192,-0.056218187337370606 +126669,633.3450000022193,-0.05621804334734904 +126670,633.3500000022194,-0.056217899387540744 +126671,633.3550000022195,-0.05621775545793921 +126672,633.3600000022196,-0.056217611558537925 +126673,633.3650000022197,-0.05621746768933042 +126674,633.3700000022199,-0.0562173238503102 +126675,633.37500000222,-0.05621718004147074 +126676,633.3800000022201,-0.05621703626280558 +126677,633.3850000022202,-0.05621689251430821 +126678,633.3900000022203,-0.05621674879597215 +126679,633.3950000022204,-0.05621660510779091 +126680,633.4000000022205,-0.056216461449758004 +126681,633.4050000022206,-0.05621631782186694 +126682,633.4100000022207,-0.05621617422411123 +126683,633.4150000022208,-0.056216030656484395 +126684,633.420000002221,-0.056215887118979936 +126685,633.425000002221,-0.056215743611591394 +126686,633.4300000022212,-0.05621560013431227 +126687,633.4350000022213,-0.05621545668713608 +126688,633.4400000022214,-0.05621531327005637 +126689,633.4450000022215,-0.05621516988306665 +126690,633.4500000022216,-0.05621502652616043 +126691,633.4550000022217,-0.05621488319933125 +126692,633.4600000022218,-0.056214739902572634 +126693,633.4650000022219,-0.05621459663587811 +126694,633.470000002222,-0.05621445339924119 +126695,633.4750000022221,-0.05621431019265544 +126696,633.4800000022223,-0.05621416701611435 +126697,633.4850000022224,-0.05621402386961147 +126698,633.4900000022225,-0.056213880753140315 +126699,633.4950000022226,-0.05621373766669444 +126700,633.5000000022227,-0.05621359461026738 +126701,633.5050000022228,-0.05621345158385266 +126702,633.5100000022229,-0.05621330858744383 +126703,633.515000002223,-0.05621316562103442 +126704,633.5200000022231,-0.05621302268461797 +126705,633.5250000022232,-0.05621287977818803 +126706,633.5300000022233,-0.05621273690173813 +126707,633.5350000022235,-0.05621259405526181 +126708,633.5400000022236,-0.056212451238752605 +126709,633.5450000022237,-0.056212308452204096 +126710,633.5500000022238,-0.056212165695609814 +126711,633.5550000022239,-0.056212022968963285 +126712,633.560000002224,-0.05621188027225807 +126713,633.5650000022241,-0.05621173760548774 +126714,633.5700000022242,-0.05621159496864583 +126715,633.5750000022243,-0.056211452361725874 +126716,633.5800000022244,-0.05621130978472145 +126717,633.5850000022245,-0.05621116723762611 +126718,633.5900000022247,-0.0562110247204334 +126719,633.5950000022248,-0.05621088223313689 +126720,633.6000000022249,-0.05621073977573012 +126721,633.605000002225,-0.056210597348206666 +126722,633.6100000022251,-0.056210454950560075 +126723,633.6150000022252,-0.05621031258278392 +126724,633.6200000022253,-0.05621017024487175 +126725,633.6250000022254,-0.05621002793681714 +126726,633.6300000022255,-0.05620988565861366 +126727,633.6350000022256,-0.05620974341025486 +126728,633.6400000022257,-0.05620960119173431 +126729,633.6450000022259,-0.05620945900304558 +126730,633.650000002226,-0.056209316844182254 +126731,633.6550000022261,-0.056209174715137894 +126732,633.6600000022262,-0.056209032615906054 +126733,633.6650000022263,-0.05620889054648032 +126734,633.6700000022264,-0.05620874850685428 +126735,633.6750000022265,-0.056208606497021495 +126736,633.6800000022266,-0.05620846451697554 +126737,633.6850000022267,-0.056208322566709996 +126738,633.6900000022268,-0.056208180646218436 +126739,633.695000002227,-0.05620803875549445 +126740,633.7000000022271,-0.0562078968945316 +126741,633.7050000022272,-0.05620775506332349 +126742,633.7100000022273,-0.05620761326186369 +126743,633.7150000022274,-0.05620747149014578 +126744,633.7200000022275,-0.05620732974816336 +126745,633.7250000022276,-0.05620718803591001 +126746,633.7300000022277,-0.056207046353379315 +126747,633.7350000022278,-0.056206904700564865 +126748,633.7400000022279,-0.05620676307746025 +126749,633.745000002228,-0.05620662148405907 +126750,633.7500000022281,-0.05620647992035491 +126751,633.7550000022283,-0.056206338386341356 +126752,633.7600000022284,-0.05620619688201201 +126753,633.7650000022285,-0.05620605540736047 +126754,633.7700000022286,-0.056205913962380324 +126755,633.7750000022287,-0.05620577254706518 +126756,633.7800000022288,-0.056205631161408635 +126757,633.7850000022289,-0.05620548980540428 +126758,633.790000002229,-0.05620534847904574 +126759,633.7950000022291,-0.05620520718232659 +126760,633.8000000022292,-0.05620506591524044 +126761,633.8050000022293,-0.05620492467778091 +126762,633.8100000022295,-0.05620478346994159 +126763,633.8150000022296,-0.05620464229171609 +126764,633.8200000022297,-0.05620450114309802 +126765,633.8250000022298,-0.05620436002408098 +126766,633.8300000022299,-0.0562042189346586 +126767,633.83500000223,-0.05620407787482448 +126768,633.8400000022301,-0.05620393684457224 +126769,633.8450000022302,-0.056203795843895475 +126770,633.8500000022303,-0.05620365487278783 +126771,633.8550000022304,-0.0562035139312429 +126772,633.8600000022305,-0.0562033730192543 +126773,633.8650000022307,-0.05620323213681566 +126774,633.8700000022308,-0.056203091283920585 +126775,633.8750000022309,-0.05620295046056272 +126776,633.880000002231,-0.05620280966673566 +126777,633.8850000022311,-0.05620266890243305 +126778,633.8900000022312,-0.056202528167648494 +126779,633.8950000022313,-0.05620238746237562 +126780,633.9000000022314,-0.056202246786608075 +126781,633.9050000022315,-0.05620210614033947 +126782,633.9100000022316,-0.05620196552356343 +126783,633.9150000022317,-0.0562018249362736 +126784,633.9200000022319,-0.056201684378463596 +126785,633.925000002232,-0.05620154385012705 +126786,633.9300000022321,-0.05620140335125761 +126787,633.9350000022322,-0.056201262881848894 +126788,633.9400000022323,-0.05620112244189454 +126789,633.9450000022324,-0.056200982031388194 +126790,633.9500000022325,-0.0562008416503235 +126791,633.9550000022326,-0.056200701298694075 +126792,633.9600000022327,-0.05620056097649356 +126793,633.9650000022328,-0.05620042068371562 +126794,633.970000002233,-0.056200280420353875 +126795,633.9750000022331,-0.05620014018640198 +126796,633.9800000022332,-0.05619999998185358 +126797,633.9850000022333,-0.05619985980670231 +126798,633.9900000022334,-0.056199719660941824 +126799,633.9950000022335,-0.05619957954456577 +126800,634.0000000022336,-0.05619943945756779 +126801,634.0050000022337,-0.05619929939994154 +126802,634.0100000022338,-0.05619915937168068 +126803,634.0150000022339,-0.05619901937277885 +126804,634.020000002234,-0.0561988794032297 +126805,634.0250000022342,-0.0561987394630269 +126806,634.0300000022343,-0.05619859955216409 +126807,634.0350000022344,-0.056198459670634936 +126808,634.0400000022345,-0.056198319818433096 +126809,634.0450000022346,-0.056198179995552225 +126810,634.0500000022347,-0.056198040201985974 +126811,634.0550000022348,-0.05619790043772802 +126812,634.0600000022349,-0.05619776070277203 +126813,634.065000002235,-0.056197620997111654 +126814,634.0700000022351,-0.05619748132074057 +126815,634.0750000022352,-0.056197341673652416 +126816,634.0800000022354,-0.05619720205584089 +126817,634.0850000022355,-0.05619706246729965 +126818,634.0900000022356,-0.05619692290802235 +126819,634.0950000022357,-0.05619678337800268 +126820,634.1000000022358,-0.05619664387723431 +126821,634.1050000022359,-0.0561965044057109 +126822,634.110000002236,-0.056196364963426136 +126823,634.1150000022361,-0.05619622555037369 +126824,634.1200000022362,-0.05619608616654722 +126825,634.1250000022363,-0.056195946811940435 +126826,634.1300000022364,-0.056195807486546984 +126827,634.1350000022366,-0.056195668190360565 +126828,634.1400000022367,-0.05619552892337485 +126829,634.1450000022368,-0.05619538968558354 +126830,634.1500000022369,-0.05619525047698029 +126831,634.155000002237,-0.056195111297558796 +126832,634.1600000022371,-0.056194972147312755 +126833,634.1650000022372,-0.056194833026235826 +126834,634.1700000022373,-0.05619469393432172 +126835,634.1750000022374,-0.056194554871564106 +126836,634.1800000022375,-0.0561944158379567 +126837,634.1850000022376,-0.056194276833493165 +126838,634.1900000022378,-0.05619413785816721 +126839,634.1950000022379,-0.05619399891197251 +126840,634.200000002238,-0.056193859994902784 +126841,634.2050000022381,-0.0561937211069517 +126842,634.2100000022382,-0.056193582248112973 +126843,634.2150000022383,-0.0561934434183803 +126844,634.2200000022384,-0.056193304617747374 +126845,634.2250000022385,-0.05619316584620789 +126846,634.2300000022386,-0.05619302710375555 +126847,634.2350000022387,-0.05619288839038407 +126848,634.2400000022388,-0.05619274970608714 +126849,634.245000002239,-0.056192611050858474 +126850,634.2500000022391,-0.05619247242469176 +126851,634.2550000022392,-0.05619233382758071 +126852,634.2600000022393,-0.05619219525951904 +126853,634.2650000022394,-0.05619205672050046 +126854,634.2700000022395,-0.056191918210518665 +126855,634.2750000022396,-0.056191779729567376 +126856,634.2800000022397,-0.0561916412776403 +126857,634.2850000022398,-0.05619150285473116 +126858,634.2900000022399,-0.05619136446083366 +126859,634.29500000224,-0.056191226095941516 +126860,634.3000000022402,-0.05619108776004845 +126861,634.3050000022403,-0.05619094945314818 +126862,634.3100000022404,-0.05619081117523442 +126863,634.3150000022405,-0.05619067292630088 +126864,634.3200000022406,-0.0561905347063413 +126865,634.3250000022407,-0.05619039651534939 +126866,634.3300000022408,-0.05619025835331888 +126867,634.3350000022409,-0.056190120220243486 +126868,634.340000002241,-0.056189982116116935 +126869,634.3450000022411,-0.05618984404093297 +126870,634.3500000022412,-0.0561897059946853 +126871,634.3550000022414,-0.05618956797736765 +126872,634.3600000022415,-0.056189429988973756 +126873,634.3650000022416,-0.05618929202949735 +126874,634.3700000022417,-0.056189154098932166 +126875,634.3750000022418,-0.05618901619727194 +126876,634.3800000022419,-0.0561888783245104 +126877,634.385000002242,-0.05618874048064127 +126878,634.3900000022421,-0.05618860266565831 +126879,634.3950000022422,-0.05618846487955524 +126880,634.4000000022423,-0.05618832712232582 +126881,634.4050000022424,-0.05618818939396377 +126882,634.4100000022426,-0.05618805169446283 +126883,634.4150000022427,-0.056187914023816746 +126884,634.4200000022428,-0.056187776382019265 +126885,634.4250000022429,-0.05618763876906414 +126886,634.430000002243,-0.056187501184945095 +126887,634.4350000022431,-0.05618736362965588 +126888,634.4400000022432,-0.056187226103190255 +126889,634.4450000022433,-0.05618708860554196 +126890,634.4500000022434,-0.05618695113670475 +126891,634.4550000022435,-0.056186813696672375 +126892,634.4600000022436,-0.05618667628543858 +126893,634.4650000022438,-0.05618653890299713 +126894,634.4700000022439,-0.05618640154934177 +126895,634.475000002244,-0.05618626422446626 +126896,634.4800000022441,-0.05618612692836435 +126897,634.4850000022442,-0.05618598966102979 +126898,634.4900000022443,-0.05618585242245636 +126899,634.4950000022444,-0.05618571521263782 +126900,634.5000000022445,-0.056185578031567915 +126901,634.5050000022446,-0.056185440879240406 +126902,634.5100000022447,-0.05618530375564906 +126903,634.5150000022448,-0.05618516666078765 +126904,634.520000002245,-0.05618502959464993 +126905,634.5250000022451,-0.05618489255722967 +126906,634.5300000022452,-0.056184755548520655 +126907,634.5350000022453,-0.05618461856851663 +126908,634.5400000022454,-0.05618448161721136 +126909,634.5450000022455,-0.05618434469459864 +126910,634.5500000022456,-0.05618420780067223 +126911,634.5550000022457,-0.05618407093542589 +126912,634.5600000022458,-0.056183934098853416 +126913,634.5650000022459,-0.05618379729094858 +126914,634.570000002246,-0.05618366051170514 +126915,634.5750000022462,-0.05618352376111689 +126916,634.5800000022463,-0.05618338703917761 +126917,634.5850000022464,-0.056183250345881064 +126918,634.5900000022465,-0.056183113681221045 +126919,634.5950000022466,-0.05618297704519134 +126920,634.6000000022467,-0.056182840437785715 +126921,634.6050000022468,-0.05618270385899797 +126922,634.6100000022469,-0.056182567308821874 +126923,634.615000002247,-0.056182430787251235 +126924,634.6200000022471,-0.05618229429427983 +126925,634.6250000022472,-0.05618215782990143 +126926,634.6300000022474,-0.05618202139410984 +126927,634.6350000022475,-0.05618188498689885 +126928,634.6400000022476,-0.05618174860826227 +126929,634.6450000022477,-0.05618161225819387 +126930,634.6500000022478,-0.05618147593668744 +126931,634.6550000022479,-0.056181339643736776 +126932,634.660000002248,-0.0561812033793357 +126933,634.6650000022481,-0.05618106714347799 +126934,634.6700000022482,-0.05618093093615744 +126935,634.6750000022483,-0.05618079475736786 +126936,634.6800000022484,-0.05618065860710304 +126937,634.6850000022486,-0.05618052248535679 +126938,634.6900000022487,-0.056180386392122916 +126939,634.6950000022488,-0.056180250327395216 +126940,634.7000000022489,-0.05618011429116748 +126941,634.705000002249,-0.056179978283433546 +126942,634.7100000022491,-0.056179842304187204 +126943,634.7150000022492,-0.05617970635342226 +126944,634.7200000022493,-0.05617957043113253 +126945,634.7250000022494,-0.05617943453731182 +126946,634.7300000022495,-0.056179298671953946 +126947,634.7350000022496,-0.05617916283505271 +126948,634.7400000022498,-0.05617902702660193 +126949,634.7450000022499,-0.056178891246595426 +126950,634.75000000225,-0.05617875549502702 +126951,634.7550000022501,-0.05617861977189051 +126952,634.7600000022502,-0.056178484077179736 +126953,634.7650000022503,-0.05617834841088849 +126954,634.7700000022504,-0.05617821277301061 +126955,634.7750000022505,-0.056178077163539925 +126956,634.7800000022506,-0.05617794158247024 +126957,634.7850000022507,-0.05617780602979539 +126958,634.7900000022508,-0.056177670505509196 +126959,634.795000002251,-0.05617753500960549 +126960,634.8000000022511,-0.056177399542078094 +126961,634.8050000022512,-0.05617726410292083 +126962,634.8100000022513,-0.05617712869212754 +126963,634.8150000022514,-0.05617699330969204 +126964,634.8200000022515,-0.05617685795560817 +126965,634.8250000022516,-0.05617672262986976 +126966,634.8300000022517,-0.05617658733247065 +126967,634.8350000022518,-0.05617645206340467 +126968,634.8400000022519,-0.05617631682266564 +126969,634.845000002252,-0.05617618161024743 +126970,634.8500000022522,-0.05617604642614384 +126971,634.8550000022523,-0.05617591127034874 +126972,634.8600000022524,-0.05617577614285595 +126973,634.8650000022525,-0.056175641043659325 +126974,634.8700000022526,-0.056175505972752705 +126975,634.8750000022527,-0.056175370930129934 +126976,634.8800000022528,-0.05617523591578484 +126977,634.8850000022529,-0.05617510092971129 +126978,634.890000002253,-0.05617496597190312 +126979,634.8950000022531,-0.05617483104235417 +126980,634.9000000022533,-0.05617469614105831 +126981,634.9050000022534,-0.05617456126800937 +126982,634.9100000022535,-0.05617442642320121 +126983,634.9150000022536,-0.056174291606627694 +126984,634.9200000022537,-0.05617415681828264 +126985,634.9250000022538,-0.05617402205815993 +126986,634.9300000022539,-0.056173887326253426 +126987,634.935000002254,-0.056173752622556965 +126988,634.9400000022541,-0.056173617947064415 +126989,634.9450000022542,-0.05617348329976963 +126990,634.9500000022543,-0.056173348680666466 +126991,634.9550000022545,-0.0561732140897488 +126992,634.9600000022546,-0.05617307952701047 +126993,634.9650000022547,-0.056172944992445364 +126994,634.9700000022548,-0.056172810486047324 +126995,634.9750000022549,-0.05617267600781022 +126996,634.980000002255,-0.05617254155772794 +126997,634.9850000022551,-0.056172407135794335 +126998,634.9900000022552,-0.05617227274200326 +126999,634.9950000022553,-0.0561721383763486 +127000,635.0000000022554,-0.056172004038824226 +127001,635.0050000022555,-0.05617186972942401 +127002,635.0100000022557,-0.056171735448141816 +127003,635.0150000022558,-0.056171601194971534 +127004,635.0200000022559,-0.05617146696990702 +127005,635.025000002256,-0.05617133277294215 +127006,635.0300000022561,-0.05617119860407083 +127007,635.0350000022562,-0.056171064463286895 +127008,635.0400000022563,-0.05617093035058426 +127009,635.0450000022564,-0.05617079626595678 +127010,635.0500000022565,-0.05617066220939836 +127011,635.0550000022566,-0.05617052818090288 +127012,635.0600000022567,-0.056170394180464205 +127013,635.0650000022569,-0.05617026020807623 +127014,635.070000002257,-0.05617012626373284 +127015,635.0750000022571,-0.05616999234742792 +127016,635.0800000022572,-0.05616985845915536 +127017,635.0850000022573,-0.05616972459890906 +127018,635.0900000022574,-0.05616959076668289 +127019,635.0950000022575,-0.05616945696247076 +127020,635.1000000022576,-0.05616932318626655 +127021,635.1050000022577,-0.05616918943806417 +127022,635.1100000022578,-0.05616905571785749 +127023,635.115000002258,-0.056168922025640416 +127024,635.120000002258,-0.05616878836140684 +127025,635.1250000022582,-0.056168654725150674 +127026,635.1300000022583,-0.05616852111686581 +127027,635.1350000022584,-0.056168387536546134 +127028,635.1400000022585,-0.05616825398418557 +127029,635.1450000022586,-0.05616812045977801 +127030,635.1500000022587,-0.056167986963317346 +127031,635.1550000022588,-0.0561678534947975 +127032,635.1600000022589,-0.05616772005421237 +127033,635.165000002259,-0.056167586641555856 +127034,635.1700000022591,-0.056167453256821875 +127035,635.1750000022593,-0.05616731990000433 +127036,635.1800000022594,-0.056167186571097136 +127037,635.1850000022595,-0.0561670532700942 +127038,635.1900000022596,-0.05616691999698944 +127039,635.1950000022597,-0.056166786751776755 +127040,635.2000000022598,-0.056166653534450064 +127041,635.2050000022599,-0.056166520345003294 +127042,635.21000000226,-0.056166387183430345 +127043,635.2150000022601,-0.05616625404972514 +127044,635.2200000022602,-0.05616612094388161 +127045,635.2250000022603,-0.056165987865893656 +127046,635.2300000022605,-0.056165854815755215 +127047,635.2350000022606,-0.05616572179346018 +127048,635.2400000022607,-0.056165588799002505 +127049,635.2450000022608,-0.056165455832376095 +127050,635.2500000022609,-0.056165322893574884 +127051,635.255000002261,-0.056165189982592796 +127052,635.2600000022611,-0.05616505709942375 +127053,635.2650000022612,-0.05616492424406169 +127054,635.2700000022613,-0.056164791416500534 +127055,635.2750000022614,-0.05616465861673422 +127056,635.2800000022615,-0.05616452584475667 +127057,635.2850000022617,-0.05616439310056181 +127058,635.2900000022618,-0.05616426038414359 +127059,635.2950000022619,-0.05616412769549594 +127060,635.300000002262,-0.056163995034612786 +127061,635.3050000022621,-0.056163862401488074 +127062,635.3100000022622,-0.056163729796115745 +127063,635.3150000022623,-0.05616359721848973 +127064,635.3200000022624,-0.05616346466860397 +127065,635.3250000022625,-0.05616333214645239 +127066,635.3300000022626,-0.05616319965202896 +127067,635.3350000022627,-0.05616306718532762 +127068,635.3400000022629,-0.056162934746342305 +127069,635.345000002263,-0.056162802335066944 +127070,635.3500000022631,-0.056162669951495506 +127071,635.3550000022632,-0.056162537595621925 +127072,635.3600000022633,-0.056162405267440166 +127073,635.3650000022634,-0.05616227296694418 +127074,635.3700000022635,-0.056162140694127886 +127075,635.3750000022636,-0.056162008448985265 +127076,635.3800000022637,-0.05616187623151026 +127077,635.3850000022638,-0.05616174404169683 +127078,635.390000002264,-0.05616161187953893 +127079,635.395000002264,-0.0561614797450305 +127080,635.4000000022642,-0.05616134763816553 +127081,635.4050000022643,-0.05616121555893794 +127082,635.4100000022644,-0.056161083507341704 +127083,635.4150000022645,-0.05616095148337078 +127084,635.4200000022646,-0.05616081948701914 +127085,635.4250000022647,-0.05616068751828074 +127086,635.4300000022648,-0.05616055557714954 +127087,635.4350000022649,-0.056160423663619514 +127088,635.440000002265,-0.056160291777684605 +127089,635.4450000022651,-0.05616015991933881 +127090,635.4500000022653,-0.056160028088576085 +127091,635.4550000022654,-0.05615989628539039 +127092,635.4600000022655,-0.0561597645097757 +127093,635.4650000022656,-0.05615963276172599 +127094,635.4700000022657,-0.05615950104123522 +127095,635.4750000022658,-0.05615936934829738 +127096,635.4800000022659,-0.05615923768290643 +127097,635.485000002266,-0.05615910604505635 +127098,635.4900000022661,-0.056158974434741125 +127099,635.4950000022662,-0.056158842851954716 +127100,635.5000000022663,-0.05615871129669111 +127101,635.5050000022665,-0.0561585797689443 +127102,635.5100000022666,-0.05615844826870824 +127103,635.5150000022667,-0.05615831679597693 +127104,635.5200000022668,-0.05615818535074435 +127105,635.5250000022669,-0.05615805393300447 +127106,635.530000002267,-0.056157922542751294 +127107,635.5350000022671,-0.0561577911799788 +127108,635.5400000022672,-0.05615765984468098 +127109,635.5450000022673,-0.0561575285368518 +127110,635.5500000022674,-0.05615739725648527 +127111,635.5550000022675,-0.05615726600357537 +127112,635.5600000022677,-0.056157134778116104 +127113,635.5650000022678,-0.056157003580101464 +127114,635.5700000022679,-0.05615687240952544 +127115,635.575000002268,-0.05615674126638202 +127116,635.5800000022681,-0.05615661015066519 +127117,635.5850000022682,-0.05615647906236896 +127118,635.5900000022683,-0.05615634800148733 +127119,635.5950000022684,-0.056156216968014296 +127120,635.6000000022685,-0.05615608596194386 +127121,635.6050000022686,-0.05615595498327001 +127122,635.6100000022687,-0.056155824031986754 +127123,635.6150000022689,-0.0561556931080881 +127124,635.620000002269,-0.056155562211568054 +127125,635.6250000022691,-0.056155431342420625 +127126,635.6300000022692,-0.05615530050063981 +127127,635.6350000022693,-0.05615516968621961 +127128,635.6400000022694,-0.05615503889915404 +127129,635.6450000022695,-0.05615490813943711 +127130,635.6500000022696,-0.05615477740706284 +127131,635.6550000022697,-0.05615464670202522 +127132,635.6600000022698,-0.05615451602431827 +127133,635.66500000227,-0.05615438537393601 +127134,635.6700000022701,-0.056154254750872455 +127135,635.6750000022702,-0.056154124155121624 +127136,635.6800000022703,-0.05615399358667752 +127137,635.6850000022704,-0.056153863045534165 +127138,635.6900000022705,-0.05615373253168559 +127139,635.6950000022706,-0.05615360204512581 +127140,635.7000000022707,-0.05615347158584884 +127141,635.7050000022708,-0.056153341153848686 +127142,635.7100000022709,-0.056153210749119394 +127143,635.715000002271,-0.05615308037165499 +127144,635.7200000022711,-0.0561529500214495 +127145,635.7250000022713,-0.05615281969849693 +127146,635.7300000022714,-0.05615268940279131 +127147,635.7350000022715,-0.05615255913432669 +127148,635.7400000022716,-0.056152428893097094 +127149,635.7450000022717,-0.05615229867909653 +127150,635.7500000022718,-0.05615216849231905 +127151,635.7550000022719,-0.05615203833275868 +127152,635.760000002272,-0.05615190820040947 +127153,635.7650000022721,-0.05615177809526543 +127154,635.7700000022722,-0.056151648017320595 +127155,635.7750000022723,-0.05615151796656903 +127156,635.7800000022725,-0.05615138794300475 +127157,635.7850000022726,-0.0561512579466218 +127158,635.7900000022727,-0.05615112797741422 +127159,635.7950000022728,-0.05615099803537605 +127160,635.8000000022729,-0.05615086812050133 +127161,635.805000002273,-0.05615073823278411 +127162,635.8100000022731,-0.05615060837221843 +127163,635.8150000022732,-0.05615047853879833 +127164,635.8200000022733,-0.056150348732517855 +127165,635.8250000022734,-0.056150218953371064 +127166,635.8300000022736,-0.056150089201352005 +127167,635.8350000022737,-0.05614995947645473 +127168,635.8400000022738,-0.05614982977867326 +127169,635.8450000022739,-0.05614970010800168 +127170,635.850000002274,-0.056149570464434036 +127171,635.8550000022741,-0.056149440847964374 +127172,635.8600000022742,-0.05614931125858675 +127173,635.8650000022743,-0.05614918169629523 +127174,635.8700000022744,-0.05614905216108386 +127175,635.8750000022745,-0.056148922652946694 +127176,635.8800000022746,-0.0561487931718778 +127177,635.8850000022748,-0.05614866371787123 +127178,635.8900000022749,-0.056148534290921065 +127179,635.895000002275,-0.056148404891021346 +127180,635.9000000022751,-0.056148275518166146 +127181,635.9050000022752,-0.056148146172349526 +127182,635.9100000022753,-0.056148016853565554 +127183,635.9150000022754,-0.05614788756180829 +127184,635.9200000022755,-0.056147758297071804 +127185,635.9250000022756,-0.05614762905935017 +127186,635.9300000022757,-0.05614749984863744 +127187,635.9350000022758,-0.056147370664927705 +127188,635.940000002276,-0.05614724150821503 +127189,635.9450000022761,-0.05614711237849349 +127190,635.9500000022762,-0.05614698327575715 +127191,635.9550000022763,-0.056146854200000096 +127192,635.9600000022764,-0.05614672515121639 +127193,635.9650000022765,-0.05614659612940012 +127194,635.9700000022766,-0.05614646713454536 +127195,635.9750000022767,-0.0561463381666462 +127196,635.9800000022768,-0.05614620922569671 +127197,635.9850000022769,-0.056146080311690966 +127198,635.990000002277,-0.05614595142462305 +127199,635.9950000022772,-0.05614582256448705 +127200,636.0000000022773,-0.05614569373127705 +127201,636.0050000022774,-0.056145564924987144 +127202,636.0100000022775,-0.0561454361456114 +127203,636.0150000022776,-0.056145307393143926 +127204,636.0200000022777,-0.05614517866757879 +127205,636.0250000022778,-0.0561450499689101 +127206,636.0300000022779,-0.05614492129713193 +127207,636.035000002278,-0.05614479265223838 +127208,636.0400000022781,-0.05614466403422354 +127209,636.0450000022782,-0.05614453544308151 +127210,636.0500000022784,-0.05614440687880638 +127211,636.0550000022785,-0.05614427834139224 +127212,636.0600000022786,-0.0561441498308332 +127213,636.0650000022787,-0.056144021347123346 +127214,636.0700000022788,-0.05614389289025678 +127215,636.0750000022789,-0.056143764460227605 +127216,636.080000002279,-0.05614363605702991 +127217,636.0850000022791,-0.056143507680657824 +127218,636.0900000022792,-0.05614337933110542 +127219,636.0950000022793,-0.05614325100836682 +127220,636.1000000022794,-0.05614312271243613 +127221,636.1050000022796,-0.056142994443307434 +127222,636.1100000022797,-0.05614286620097487 +127223,636.1150000022798,-0.05614273798543252 +127224,636.1200000022799,-0.05614260979667451 +127225,636.12500000228,-0.05614248163469494 +127226,636.1300000022801,-0.05614235349948794 +127227,636.1350000022802,-0.0561422253910476 +127228,636.1400000022803,-0.05614209730936804 +127229,636.1450000022804,-0.05614196925444338 +127230,636.1500000022805,-0.05614184122626773 +127231,636.1550000022806,-0.056141713224835216 +127232,636.1600000022808,-0.056141585250139944 +127233,636.1650000022809,-0.05614145730217604 +127234,636.170000002281,-0.05614132938093762 +127235,636.1750000022811,-0.05614120148641881 +127236,636.1800000022812,-0.056141073618613715 +127237,636.1850000022813,-0.05614094577751648 +127238,636.1900000022814,-0.05614081796312121 +127239,636.1950000022815,-0.05614069017542205 +127240,636.2000000022816,-0.05614056241441311 +127241,636.2050000022817,-0.056140434680088516 +127242,636.2100000022818,-0.05614030697244242 +127243,636.215000002282,-0.056140179291468924 +127244,636.2200000022821,-0.056140051637162174 +127245,636.2250000022822,-0.05613992400951629 +127246,636.2300000022823,-0.056139796408525414 +127247,636.2350000022824,-0.05613966883418367 +127248,636.2400000022825,-0.056139541286485184 +127249,636.2450000022826,-0.05613941376542411 +127250,636.2500000022827,-0.05613928627099458 +127251,636.2550000022828,-0.056139158803190724 +127252,636.2600000022829,-0.056139031362006694 +127253,636.265000002283,-0.05613890394743662 +127254,636.2700000022832,-0.05613877655947465 +127255,636.2750000022833,-0.05613864919811492 +127256,636.2800000022834,-0.056138521863351575 +127257,636.2850000022835,-0.05613839455517875 +127258,636.2900000022836,-0.056138267273590586 +127259,636.2950000022837,-0.056138140018581244 +127260,636.3000000022838,-0.05613801279014486 +127261,636.3050000022839,-0.05613788558827559 +127262,636.310000002284,-0.05613775841296759 +127263,636.3150000022841,-0.05613763126421499 +127264,636.3200000022842,-0.05613750414201195 +127265,636.3250000022844,-0.056137377046352625 +127266,636.3300000022845,-0.056137249977231164 +127267,636.3350000022846,-0.05613712293464172 +127268,636.3400000022847,-0.05613699591857845 +127269,636.3450000022848,-0.056136868929035515 +127270,636.3500000022849,-0.05613674196600706 +127271,636.355000002285,-0.05613661502948726 +127272,636.3600000022851,-0.05613648811947026 +127273,636.3650000022852,-0.05613636123595022 +127274,636.3700000022853,-0.05613623437892132 +127275,636.3750000022854,-0.056136107548377695 +127276,636.3800000022856,-0.05613598074431353 +127277,636.3850000022857,-0.05613585396672298 +127278,636.3900000022858,-0.056135727215600215 +127279,636.3950000022859,-0.056135600490939394 +127280,636.400000002286,-0.05613547379273469 +127281,636.4050000022861,-0.056135347120980256 +127282,636.4100000022862,-0.05613522047567028 +127283,636.4150000022863,-0.056135093856798934 +127284,636.4200000022864,-0.05613496726436038 +127285,636.4250000022865,-0.0561348406983488 +127286,636.4300000022866,-0.056134714158758356 +127287,636.4350000022868,-0.05613458764558324 +127288,636.4400000022869,-0.0561344611588176 +127289,636.445000002287,-0.056134334698455635 +127290,636.4500000022871,-0.056134208264491524 +127291,636.4550000022872,-0.05613408185691943 +127292,636.4600000022873,-0.05613395547573354 +127293,636.4650000022874,-0.05613382912092804 +127294,636.4700000022875,-0.0561337027924971 +127295,636.4750000022876,-0.05613357649043492 +127296,636.4800000022877,-0.056133450214735675 +127297,636.4850000022878,-0.05613332396539354 +127298,636.490000002288,-0.05613319774240273 +127299,636.4950000022881,-0.056133071545757404 +127300,636.5000000022882,-0.05613294537545176 +127301,636.5050000022883,-0.05613281923147999 +127302,636.5100000022884,-0.05613269311383627 +127303,636.5150000022885,-0.056132567022514804 +127304,636.5200000022886,-0.056132440957509785 +127305,636.5250000022887,-0.056132314918815394 +127306,636.5300000022888,-0.05613218890642584 +127307,636.5350000022889,-0.05613206292033532 +127308,636.540000002289,-0.05613193696053802 +127309,636.5450000022892,-0.05613181102702813 +127310,636.5500000022893,-0.05613168511979987 +127311,636.5550000022894,-0.05613155923884742 +127312,636.5600000022895,-0.05613143338416499 +127313,636.5650000022896,-0.05613130755574679 +127314,636.5700000022897,-0.056131181753587 +127315,636.5750000022898,-0.05613105597767984 +127316,636.5800000022899,-0.05613093022801951 +127317,636.58500000229,-0.05613080450460021 +127318,636.5900000022901,-0.056130678807416144 +127319,636.5950000022902,-0.05613055313646154 +127320,636.6000000022904,-0.056130427491730604 +127321,636.6050000022905,-0.05613030187321752 +127322,636.6100000022906,-0.056130176280916516 +127323,636.6150000022907,-0.05613005071482181 +127324,636.6200000022908,-0.05612992517492761 +127325,636.6250000022909,-0.05612979966122812 +127326,636.630000002291,-0.05612967417371756 +127327,636.6350000022911,-0.05612954871239015 +127328,636.6400000022912,-0.05612942327724011 +127329,636.6450000022913,-0.056129297868261645 +127330,636.6500000022914,-0.05612917248544898 +127331,636.6550000022916,-0.05612904712879633 +127332,636.6600000022917,-0.056128921798297926 +127333,636.6650000022918,-0.05612879649394799 +127334,636.6700000022919,-0.056128671215740736 +127335,636.675000002292,-0.05612854596367041 +127336,636.6800000022921,-0.05612842073773121 +127337,636.6850000022922,-0.056128295537917365 +127338,636.6900000022923,-0.05612817036422311 +127339,636.6950000022924,-0.05612804521664268 +127340,636.7000000022925,-0.056127920095170286 +127341,636.7050000022926,-0.056127794999800175 +127342,636.7100000022928,-0.056127669930526564 +127343,636.7150000022929,-0.05612754488734371 +127344,636.720000002293,-0.056127419870245804 +127345,636.7250000022931,-0.05612729487922711 +127346,636.7300000022932,-0.05612716991428186 +127347,636.7350000022933,-0.05612704497540431 +127348,636.7400000022934,-0.05612692006258865 +127349,636.7450000022935,-0.05612679517582916 +127350,636.7500000022936,-0.05612667031512005 +127351,636.7550000022937,-0.05612654548045558 +127352,636.7600000022939,-0.05612642067182998 +127353,636.765000002294,-0.056126295889237496 +127354,636.7700000022941,-0.05612617113267238 +127355,636.7750000022942,-0.056126046402128864 +127356,636.7800000022943,-0.0561259216976012 +127357,636.7850000022944,-0.056125797019083636 +127358,636.7900000022945,-0.056125672366570414 +127359,636.7950000022946,-0.05612554774005578 +127360,636.8000000022947,-0.056125423139533996 +127361,636.8050000022948,-0.0561252985649993 +127362,636.8100000022949,-0.056125174016445956 +127363,636.815000002295,-0.056125049493868207 +127364,636.8200000022952,-0.05612492499726031 +127365,636.8250000022953,-0.05612480052661651 +127366,636.8300000022954,-0.05612467608193107 +127367,636.8350000022955,-0.05612455166319826 +127368,636.8400000022956,-0.056124427270412315 +127369,636.8450000022957,-0.05612430290356751 +127370,636.8500000022958,-0.056124178562658104 +127371,636.8550000022959,-0.05612405424767834 +127372,636.860000002296,-0.0561239299586225 +127373,636.8650000022961,-0.056123805695484835 +127374,636.8700000022963,-0.05612368145825961 +127375,636.8750000022964,-0.05612355724694109 +127376,636.8800000022965,-0.056123433061523544 +127377,636.8850000022966,-0.05612330890200124 +127378,636.8900000022967,-0.056123184768368445 +127379,636.8950000022968,-0.05612306066061943 +127380,636.9000000022969,-0.05612293657874845 +127381,636.905000002297,-0.056122812522749796 +127382,636.9100000022971,-0.05612268849261773 +127383,636.9150000022972,-0.056122564488346516 +127384,636.9200000022973,-0.05612244050993044 +127385,636.9250000022975,-0.05612231655736378 +127386,636.9300000022976,-0.0561221926306408 +127387,636.9350000022977,-0.05612206872975578 +127388,636.9400000022978,-0.05612194485470302 +127389,636.9450000022979,-0.05612182100547676 +127390,636.950000002298,-0.056121697182071315 +127391,636.9550000022981,-0.05612157338448094 +127392,636.9600000022982,-0.056121449612699936 +127393,636.9650000022983,-0.056121325866722575 +127394,636.9700000022984,-0.05612120214654314 +127395,636.9750000022985,-0.05612107845215593 +127396,636.9800000022987,-0.05612095478355522 +127397,636.9850000022988,-0.056120831140735294 +127398,636.9900000022989,-0.056120707523690444 +127399,636.995000002299,-0.05612058393241496 +127400,637.0000000022991,-0.05612046036690313 +127401,637.0050000022992,-0.056120336827149245 +127402,637.0100000022993,-0.0561202133131476 +127403,637.0150000022994,-0.05612008982489249 +127404,637.0200000022995,-0.05611996636237821 +127405,637.0250000022996,-0.056119842925599045 +127406,637.0300000022997,-0.056119719514549304 +127407,637.0350000022999,-0.05611959612922327 +127408,637.0400000023,-0.05611947276961526 +127409,637.0450000023001,-0.05611934943571956 +127410,637.0500000023002,-0.05611922612753045 +127411,637.0550000023003,-0.056119102845042276 +127412,637.0600000023004,-0.05611897958824932 +127413,637.0650000023005,-0.05611885635714588 +127414,637.0700000023006,-0.05611873315172625 +127415,637.0750000023007,-0.056118609971984756 +127416,637.0800000023008,-0.056118486817915696 +127417,637.085000002301,-0.056118363689513374 +127418,637.090000002301,-0.0561182405867721 +127419,637.0950000023012,-0.056118117509686184 +127420,637.1000000023013,-0.05611799445824994 +127421,637.1050000023014,-0.05611787143245768 +127422,637.1100000023015,-0.056117748432303716 +127423,637.1150000023016,-0.05611762545778235 +127424,637.1200000023017,-0.05611750250888791 +127425,637.1250000023018,-0.0561173795856147 +127426,637.1300000023019,-0.05611725668795704 +127427,637.135000002302,-0.056117133815909256 +127428,637.1400000023021,-0.056117010969465655 +127429,637.1450000023023,-0.056116888148620564 +127430,637.1500000023024,-0.05611676535336829 +127431,637.1550000023025,-0.056116642583703184 +127432,637.1600000023026,-0.056116519839619544 +127433,637.1650000023027,-0.05611639712111169 +127434,637.1700000023028,-0.05611627442817397 +127435,637.1750000023029,-0.056116151760800675 +127436,637.180000002303,-0.056116029118986166 +127437,637.1850000023031,-0.05611590650272476 +127438,637.1900000023032,-0.05611578391201077 +127439,637.1950000023033,-0.056115661346838534 +127440,637.2000000023035,-0.05611553880720239 +127441,637.2050000023036,-0.05611541629309666 +127442,637.2100000023037,-0.05611529380451567 +127443,637.2150000023038,-0.05611517134145377 +127444,637.2200000023039,-0.05611504890390529 +127445,637.225000002304,-0.056114926491864565 +127446,637.2300000023041,-0.05611480410532593 +127447,637.2350000023042,-0.05611468174428372 +127448,637.2400000023043,-0.05611455940873228 +127449,637.2450000023044,-0.05611443709866593 +127450,637.2500000023045,-0.05611431481407904 +127451,637.2550000023047,-0.05611419255496593 +127452,637.2600000023048,-0.05611407032132095 +127453,637.2650000023049,-0.05611394811313845 +127454,637.270000002305,-0.05611382593041276 +127455,637.2750000023051,-0.05611370377313823 +127456,637.2800000023052,-0.05611358164130921 +127457,637.2850000023053,-0.05611345953492006 +127458,637.2900000023054,-0.0561133374539651 +127459,637.2950000023055,-0.0561132153984387 +127460,637.3000000023056,-0.0561130933683352 +127461,637.3050000023057,-0.056112971363648956 +127462,637.3100000023059,-0.056112849384374316 +127463,637.315000002306,-0.056112727430505646 +127464,637.3200000023061,-0.05611260550203728 +127465,637.3250000023062,-0.05611248359896359 +127466,637.3300000023063,-0.05611236172127893 +127467,637.3350000023064,-0.056112239868977655 +127468,637.3400000023065,-0.05611211804205412 +127469,637.3450000023066,-0.05611199624050269 +127470,637.3500000023067,-0.05611187446431772 +127471,637.3550000023068,-0.05611175271349359 +127472,637.360000002307,-0.05611163098802463 +127473,637.365000002307,-0.05611150928790524 +127474,637.3700000023072,-0.056111387613129754 +127475,637.3750000023073,-0.05611126596369255 +127476,637.3800000023074,-0.056111144339587984 +127477,637.3850000023075,-0.056111022740810444 +127478,637.3900000023076,-0.05611090116735429 +127479,637.3950000023077,-0.056110779619213874 +127480,637.4000000023078,-0.05611065809638359 +127481,637.4050000023079,-0.05611053659885779 +127482,637.410000002308,-0.05611041512663087 +127483,637.4150000023081,-0.05611029367969718 +127484,637.4200000023083,-0.05611017225805111 +127485,637.4250000023084,-0.05611005086168703 +127486,637.4300000023085,-0.056109929490599314 +127487,637.4350000023086,-0.056109808144782336 +127488,637.4400000023087,-0.05610968682423048 +127489,637.4450000023088,-0.05610956552893812 +127490,637.4500000023089,-0.056109444258899646 +127491,637.455000002309,-0.05610932301410944 +127492,637.4600000023091,-0.05610920179456187 +127493,637.4650000023092,-0.05610908060025133 +127494,637.4700000023093,-0.05610895943117221 +127495,637.4750000023095,-0.05610883828731888 +127496,637.4800000023096,-0.05610871716868573 +127497,637.4850000023097,-0.05610859607526716 +127498,637.4900000023098,-0.056108475007057554 +127499,637.4950000023099,-0.05610835396405129 +127500,637.50000000231,-0.056108232946242766 +127501,637.5050000023101,-0.05610811195362638 +127502,637.5100000023102,-0.056107990986196496 +127503,637.5150000023103,-0.056107870043947544 +127504,637.5200000023104,-0.0561077491268739 +127505,637.5250000023105,-0.05610762823496997 +127506,637.5300000023107,-0.056107507368230135 +127507,637.5350000023108,-0.056107386526648796 +127508,637.5400000023109,-0.056107265710220344 +127509,637.545000002311,-0.0561071449189392 +127510,637.5500000023111,-0.05610702415279975 +127511,637.5550000023112,-0.056106903411796395 +127512,637.5600000023113,-0.05610678269592354 +127513,637.5650000023114,-0.0561066620051756 +127514,637.5700000023115,-0.05610654133954695 +127515,637.5750000023116,-0.05610642069903203 +127516,637.5800000023117,-0.056106300083625216 +127517,637.5850000023119,-0.05610617949332094 +127518,637.590000002312,-0.056106058928113586 +127519,637.5950000023121,-0.056105938387997586 +127520,637.6000000023122,-0.05610581787296734 +127521,637.6050000023123,-0.056105697383017246 +127522,637.6100000023124,-0.05610557691814174 +127523,637.6150000023125,-0.05610545647833522 +127524,637.6200000023126,-0.056105336063592096 +127525,637.6250000023127,-0.056105215673906784 +127526,637.6300000023128,-0.056105095309273725 +127527,637.635000002313,-0.056104974969687305 +127528,637.6400000023131,-0.056104854655141964 +127529,637.6450000023132,-0.05610473436563211 +127530,637.6500000023133,-0.05610461410115217 +127531,637.6550000023134,-0.05610449386169654 +127532,637.6600000023135,-0.056104373647259675 +127533,637.6650000023136,-0.056104253457835984 +127534,637.6700000023137,-0.05610413329341988 +127535,637.6750000023138,-0.056104013154005816 +127536,637.6800000023139,-0.05610389303958819 +127537,637.685000002314,-0.056103772950161446 +127538,637.6900000023142,-0.056103652885719994 +127539,637.6950000023143,-0.05610353284625829 +127540,637.7000000023144,-0.05610341283177074 +127541,637.7050000023145,-0.05610329284225179 +127542,637.7100000023146,-0.05610317287769585 +127543,637.7150000023147,-0.05610305293809738 +127544,637.7200000023148,-0.056102933023450804 +127545,637.7250000023149,-0.05610281313375056 +127546,637.730000002315,-0.056102693268991075 +127547,637.7350000023151,-0.05610257342916678 +127548,637.7400000023152,-0.05610245361427214 +127549,637.7450000023154,-0.056102333824301555 +127550,637.7500000023155,-0.05610221405924949 +127551,637.7550000023156,-0.056102094319110396 +127552,637.7600000023157,-0.05610197460387869 +127553,637.7650000023158,-0.05610185491354882 +127554,637.7700000023159,-0.056101735248115236 +127555,637.775000002316,-0.05610161560757239 +127556,637.7800000023161,-0.056101495991914704 +127557,637.7850000023162,-0.056101376401136646 +127558,637.7900000023163,-0.05610125683523266 +127559,637.7950000023164,-0.05610113729419719 +127560,637.8000000023166,-0.05610101777802468 +127561,637.8050000023167,-0.0561008982867096 +127562,637.8100000023168,-0.056100778820246375 +127563,637.8150000023169,-0.05610065937862947 +127564,637.820000002317,-0.056100539961853345 +127565,637.8250000023171,-0.05610042056991245 +127566,637.8300000023172,-0.05610030120280123 +127567,637.8350000023173,-0.05610018186051417 +127568,637.8400000023174,-0.0561000625430457 +127569,637.8450000023175,-0.056099943250390284 +127570,637.8500000023176,-0.05609982398254239 +127571,637.8550000023178,-0.05609970473949646 +127572,637.8600000023179,-0.056099585521246983 +127573,637.865000002318,-0.056099466327788394 +127574,637.8700000023181,-0.05609934715911517 +127575,637.8750000023182,-0.05609922801522177 +127576,637.8800000023183,-0.056099108896102666 +127577,637.8850000023184,-0.056098989801752326 +127578,637.8900000023185,-0.05609887073216521 +127579,637.8950000023186,-0.056098751687335795 +127580,637.9000000023187,-0.05609863266725853 +127581,637.9050000023188,-0.056098513671927905 +127582,637.910000002319,-0.05609839470133838 +127583,637.9150000023191,-0.056098275755484435 +127584,637.9200000023192,-0.056098156834360535 +127585,637.9250000023193,-0.05609803793796117 +127586,637.9300000023194,-0.056097919066280796 +127587,637.9350000023195,-0.0560978002193139 +127588,637.9400000023196,-0.056097681397054955 +127589,637.9450000023197,-0.05609756259949845 +127590,637.9500000023198,-0.05609744382663884 +127591,637.9550000023199,-0.05609732507847062 +127592,637.96000000232,-0.05609720635498827 +127593,637.9650000023202,-0.056097087656186276 +127594,637.9700000023203,-0.05609696898205911 +127595,637.9750000023204,-0.05609685033260126 +127596,637.9800000023205,-0.056096731707807226 +127597,637.9850000023206,-0.05609661310767147 +127598,637.9900000023207,-0.056096494532188505 +127599,637.9950000023208,-0.056096375981352795 +127600,638.0000000023209,-0.05609625745515884 +127601,638.005000002321,-0.05609613895360111 +127602,638.0100000023211,-0.05609602047667413 +127603,638.0150000023212,-0.05609590202437237 +127604,638.0200000023214,-0.056095783596690325 +127605,638.0250000023215,-0.056095665193622496 +127606,638.0300000023216,-0.056095546815163363 +127607,638.0350000023217,-0.05609542846130742 +127608,638.0400000023218,-0.05609531013204919 +127609,638.0450000023219,-0.05609519182738315 +127610,638.050000002322,-0.0560950735473038 +127611,638.0550000023221,-0.05609495529180565 +127612,638.0600000023222,-0.05609483706088318 +127613,638.0650000023223,-0.05609471885453091 +127614,638.0700000023224,-0.05609460067274334 +127615,638.0750000023226,-0.05609448251551497 +127616,638.0800000023227,-0.056094364382840295 +127617,638.0850000023228,-0.05609424627471383 +127618,638.0900000023229,-0.05609412819113007 +127619,638.095000002323,-0.05609401013208354 +127620,638.1000000023231,-0.056093892097568744 +127621,638.1050000023232,-0.056093774087580185 +127622,638.1100000023233,-0.05609365610211238 +127623,638.1150000023234,-0.056093538141159825 +127624,638.1200000023235,-0.05609342020471705 +127625,638.1250000023236,-0.05609330229277856 +127626,638.1300000023238,-0.05609318440533888 +127627,638.1350000023239,-0.05609306654239251 +127628,638.140000002324,-0.056092948703933956 +127629,638.1450000023241,-0.05609283088995776 +127630,638.1500000023242,-0.05609271310045843 +127631,638.1550000023243,-0.05609259533543048 +127632,638.1600000023244,-0.05609247759486843 +127633,638.1650000023245,-0.05609235987876682 +127634,638.1700000023246,-0.05609224218712015 +127635,638.1750000023247,-0.05609212451992295 +127636,638.1800000023248,-0.05609200687716974 +127637,638.185000002325,-0.05609188925885505 +127638,638.1900000023251,-0.056091771664973394 +127639,638.1950000023252,-0.05609165409551932 +127640,638.2000000023253,-0.056091536550487334 +127641,638.2050000023254,-0.05609141902987199 +127642,638.2100000023255,-0.05609130153366779 +127643,638.2150000023256,-0.05609118406186927 +127644,638.2200000023257,-0.056091066614470976 +127645,638.2250000023258,-0.05609094919146743 +127646,638.2300000023259,-0.056090831792853166 +127647,638.235000002326,-0.05609071441862273 +127648,638.2400000023262,-0.056090597068770634 +127649,638.2450000023263,-0.05609047974329143 +127650,638.2500000023264,-0.05609036244217965 +127651,638.2550000023265,-0.05609024516542983 +127652,638.2600000023266,-0.056090127913036525 +127653,638.2650000023267,-0.05609001068499427 +127654,638.2700000023268,-0.056089893481297594 +127655,638.2750000023269,-0.05608977630194104 +127656,638.280000002327,-0.056089659146919164 +127657,638.2850000023271,-0.05608954201622649 +127658,638.2900000023272,-0.056089424909857584 +127659,638.2950000023274,-0.05608930782780698 +127660,638.3000000023275,-0.05608919077006922 +127661,638.3050000023276,-0.056089073736638864 +127662,638.3100000023277,-0.056088956727510464 +127663,638.3150000023278,-0.05608883974267856 +127664,638.3200000023279,-0.05608872278213771 +127665,638.325000002328,-0.056088605845882454 +127666,638.3300000023281,-0.05608848893390736 +127667,638.3350000023282,-0.05608837204620697 +127668,638.3400000023283,-0.05608825518277584 +127669,638.3450000023284,-0.05608813834360852 +127670,638.3500000023286,-0.056088021528699586 +127671,638.3550000023287,-0.05608790473804358 +127672,638.3600000023288,-0.056087787971635064 +127673,638.3650000023289,-0.056087671229468596 +127674,638.370000002329,-0.05608755451153874 +127675,638.3750000023291,-0.056087437817840056 +127676,638.3800000023292,-0.05608732114836711 +127677,638.3850000023293,-0.05608720450311445 +127678,638.3900000023294,-0.05608708788207666 +127679,638.3950000023295,-0.0560869712852483 +127680,638.4000000023296,-0.05608685471262392 +127681,638.4050000023298,-0.05608673816419811 +127682,638.4100000023299,-0.05608662163996543 +127683,638.41500000233,-0.05608650513992043 +127684,638.4200000023301,-0.056086388664057706 +127685,638.4250000023302,-0.05608627221237183 +127686,638.4300000023303,-0.05608615578485736 +127687,638.4350000023304,-0.056086039381508856 +127688,638.4400000023305,-0.056085923002320924 +127689,638.4450000023306,-0.05608580664728813 +127690,638.4500000023307,-0.05608569031640502 +127691,638.4550000023308,-0.056085574009666204 +127692,638.460000002331,-0.05608545772706626 +127693,638.4650000023311,-0.05608534146859975 +127694,638.4700000023312,-0.05608522523426126 +127695,638.4750000023313,-0.056085109024045364 +127696,638.4800000023314,-0.05608499283794666 +127697,638.4850000023315,-0.05608487667595972 +127698,638.4900000023316,-0.05608476053807913 +127699,638.4950000023317,-0.05608464442429946 +127700,638.5000000023318,-0.056084528334615316 +127701,638.5050000023319,-0.05608441226902127 +127702,638.510000002332,-0.05608429622751193 +127703,638.5150000023322,-0.05608418021008185 +127704,638.5200000023323,-0.056084064216725654 +127705,638.5250000023324,-0.056083948247437905 +127706,638.5300000023325,-0.05608383230221321 +127707,638.5350000023326,-0.05608371638104616 +127708,638.5400000023327,-0.05608360048393135 +127709,638.5450000023328,-0.05608348461086337 +127710,638.5500000023329,-0.05608336876183681 +127711,638.555000002333,-0.05608325293684627 +127712,638.5600000023331,-0.05608313713588635 +127713,638.5650000023332,-0.05608302135895164 +127714,638.5700000023334,-0.05608290560603675 +127715,638.5750000023335,-0.05608278987713627 +127716,638.5800000023336,-0.056082674172244794 +127717,638.5850000023337,-0.05608255849135694 +127718,638.5900000023338,-0.056082442834467304 +127719,638.5950000023339,-0.05608232720157049 +127720,638.600000002334,-0.056082211592661114 +127721,638.6050000023341,-0.056082096007733756 +127722,638.6100000023342,-0.05608198044678304 +127723,638.6150000023343,-0.05608186490980356 +127724,638.6200000023345,-0.05608174939678995 +127725,638.6250000023346,-0.05608163390773679 +127726,638.6300000023347,-0.056081518442638714 +127727,638.6350000023348,-0.05608140300149032 +127728,638.6400000023349,-0.05608128758428622 +127729,638.645000002335,-0.056081172191021024 +127730,638.6500000023351,-0.05608105682168936 +127731,638.6550000023352,-0.05608094147628583 +127732,638.6600000023353,-0.05608082615480505 +127733,638.6650000023354,-0.05608071085724166 +127734,638.6700000023355,-0.05608059558359024 +127735,638.6750000023357,-0.05608048033384543 +127736,638.6800000023358,-0.05608036510800186 +127737,638.6850000023359,-0.05608024990605413 +127738,638.690000002336,-0.05608013472799688 +127739,638.6950000023361,-0.05608001957382471 +127740,638.7000000023362,-0.05607990444353227 +127741,638.7050000023363,-0.05607978933711417 +127742,638.7100000023364,-0.056079674254565025 +127743,638.7150000023365,-0.05607955919587947 +127744,638.7200000023366,-0.056079444161052136 +127745,638.7250000023367,-0.056079329150077656 +127746,638.7300000023369,-0.05607921416295066 +127747,638.735000002337,-0.05607909919966578 +127748,638.7400000023371,-0.056078984260217624 +127749,638.7450000023372,-0.056078869344600844 +127750,638.7500000023373,-0.056078754452810076 +127751,638.7550000023374,-0.05607863958483993 +127752,638.7600000023375,-0.056078524740685066 +127753,638.7650000023376,-0.05607840992034012 +127754,638.7700000023377,-0.05607829512379972 +127755,638.7750000023378,-0.05607818035105849 +127756,638.7800000023379,-0.056078065602111093 +127757,638.785000002338,-0.05607795087695216 +127758,638.7900000023382,-0.05607783617557632 +127759,638.7950000023383,-0.05607772149797823 +127760,638.8000000023384,-0.05607760684415253 +127761,638.8050000023385,-0.05607749221409385 +127762,638.8100000023386,-0.056077377607796866 +127763,638.8150000023387,-0.05607726302525619 +127764,638.8200000023388,-0.056077148466466484 +127765,638.8250000023389,-0.056077033931422396 +127766,638.830000002339,-0.05607691942011856 +127767,638.8350000023391,-0.056076804932549636 +127768,638.8400000023393,-0.056076690468710284 +127769,638.8450000023394,-0.05607657602859514 +127770,638.8500000023395,-0.05607646161219887 +127771,638.8550000023396,-0.05607634721951611 +127772,638.8600000023397,-0.056076232850541516 +127773,638.8650000023398,-0.056076118505269765 +127774,638.8700000023399,-0.05607600418369549 +127775,638.87500000234,-0.05607588988581336 +127776,638.8800000023401,-0.056075775611618014 +127777,638.8850000023402,-0.056075661361104125 +127778,638.8900000023403,-0.05607554713426636 +127779,638.8950000023405,-0.05607543293109937 +127780,638.9000000023406,-0.05607531875159782 +127781,638.9050000023407,-0.056075204595756364 +127782,638.9100000023408,-0.05607509046356967 +127783,638.9150000023409,-0.056074976355032405 +127784,638.920000002341,-0.056074862270139234 +127785,638.9250000023411,-0.05607474820888483 +127786,638.9300000023412,-0.05607463417126384 +127787,638.9350000023413,-0.056074520157270956 +127788,638.9400000023414,-0.05607440616690083 +127789,638.9450000023415,-0.05607429220014814 +127790,638.9500000023417,-0.05607417825700755 +127791,638.9550000023418,-0.05607406433747374 +127792,638.9600000023419,-0.056073950441541384 +127793,638.965000002342,-0.05607383656920514 +127794,638.9700000023421,-0.0560737227204597 +127795,638.9750000023422,-0.05607360889529973 +127796,638.9800000023423,-0.056073495093719915 +127797,638.9850000023424,-0.056073381315714925 +127798,638.9900000023425,-0.05607326756127945 +127799,638.9950000023426,-0.05607315383040816 +127800,639.0000000023427,-0.056073040123095726 +127801,639.0050000023429,-0.05607292643933684 +127802,639.010000002343,-0.05607281277912618 +127803,639.0150000023431,-0.05607269914245845 +127804,639.0200000023432,-0.05607258552932831 +127805,639.0250000023433,-0.05607247193973045 +127806,639.0300000023434,-0.05607235837365956 +127807,639.0350000023435,-0.05607224483111031 +127808,639.0400000023436,-0.05607213131207742 +127809,639.0450000023437,-0.05607201781655555 +127810,639.0500000023438,-0.0560719043445394 +127811,639.055000002344,-0.056071790896023675 +127812,639.060000002344,-0.05607167747100304 +127813,639.0650000023442,-0.0560715640694722 +127814,639.0700000023443,-0.056071450691425856 +127815,639.0750000023444,-0.05607133733685869 +127816,639.0800000023445,-0.05607122400576542 +127817,639.0850000023446,-0.05607111069814071 +127818,639.0900000023447,-0.056070997413979286 +127819,639.0950000023448,-0.05607088415327583 +127820,639.1000000023449,-0.05607077091602504 +127821,639.105000002345,-0.056070657702221624 +127822,639.1100000023451,-0.056070544511860276 +127823,639.1150000023453,-0.0560704313449357 +127824,639.1200000023454,-0.05607031820144261 +127825,639.1250000023455,-0.05607020508137569 +127826,639.1300000023456,-0.05607009198472966 +127827,639.1350000023457,-0.05606997891149922 +127828,639.1400000023458,-0.05606986586167908 +127829,639.1450000023459,-0.05606975283526394 +127830,639.150000002346,-0.05606963983224851 +127831,639.1550000023461,-0.056069526852627505 +127832,639.1600000023462,-0.05606941389639563 +127833,639.1650000023463,-0.056069300963547605 +127834,639.1700000023465,-0.056069188054078144 +127835,639.1750000023466,-0.05606907516798195 +127836,639.1800000023467,-0.05606896230525373 +127837,639.1850000023468,-0.05606884946588822 +127838,639.1900000023469,-0.05606873664988012 +127839,639.195000002347,-0.05606862385722416 +127840,639.2000000023471,-0.056068511087915045 +127841,639.2050000023472,-0.056068398341947503 +127842,639.2100000023473,-0.05606828561931625 +127843,639.2150000023474,-0.056068172920016 +127844,639.2200000023475,-0.05606806024404149 +127845,639.2250000023477,-0.05606794759138744 +127846,639.2300000023478,-0.05606783496204855 +127847,639.2350000023479,-0.056067722356019575 +127848,639.240000002348,-0.05606760977329522 +127849,639.2450000023481,-0.056067497213870214 +127850,639.2500000023482,-0.0560673846777393 +127851,639.2550000023483,-0.056067272164897194 +127852,639.2600000023484,-0.05606715967533862 +127853,639.2650000023485,-0.056067047209058314 +127854,639.2700000023486,-0.056066934766051006 +127855,639.2750000023487,-0.05606682234631144 +127856,639.2800000023489,-0.056066709949834335 +127857,639.285000002349,-0.056066597576614426 +127858,639.2900000023491,-0.05606648522664645 +127859,639.2950000023492,-0.056066372899925145 +127860,639.3000000023493,-0.05606626059644523 +127861,639.3050000023494,-0.056066148316201464 +127862,639.3100000023495,-0.05606603605918858 +127863,639.3150000023496,-0.05606592382540131 +127864,639.3200000023497,-0.056065811614834406 +127865,639.3250000023498,-0.0560656994274826 +127866,639.33000000235,-0.056065587263340634 +127867,639.3350000023501,-0.05606547512240326 +127868,639.3400000023502,-0.05606536300466522 +127869,639.3450000023503,-0.05606525091012125 +127870,639.3500000023504,-0.056065138838766106 +127871,639.3550000023505,-0.05606502679059453 +127872,639.3600000023506,-0.05606491476560126 +127873,639.3650000023507,-0.05606480276378106 +127874,639.3700000023508,-0.05606469078512868 +127875,639.3750000023509,-0.05606457882963885 +127876,639.380000002351,-0.05606446689730635 +127877,639.3850000023511,-0.05606435498812591 +127878,639.3900000023513,-0.05606424310209229 +127879,639.3950000023514,-0.05606413123920025 +127880,639.4000000023515,-0.05606401939944455 +127881,639.4050000023516,-0.05606390758281992 +127882,639.4100000023517,-0.05606379578932115 +127883,639.4150000023518,-0.05606368401894297 +127884,639.4200000023519,-0.05606357227168014 +127885,639.425000002352,-0.056063460547527456 +127886,639.4300000023521,-0.05606334884647964 +127887,639.4350000023522,-0.056063237168531475 +127888,639.4400000023523,-0.0560631255136777 +127889,639.4450000023525,-0.05606301388191311 +127890,639.4500000023526,-0.056062902273232455 +127891,639.4550000023527,-0.056062790687630495 +127892,639.4600000023528,-0.056062679125101995 +127893,639.4650000023529,-0.05606256758564173 +127894,639.470000002353,-0.05606245606924446 +127895,639.4750000023531,-0.05606234457590498 +127896,639.4800000023532,-0.056062233105618024 +127897,639.4850000023533,-0.05606212165837837 +127898,639.4900000023534,-0.056062010234180816 +127899,639.4950000023535,-0.05606189883302011 +127900,639.5000000023537,-0.056061787454891036 +127901,639.5050000023538,-0.056061676099788356 +127902,639.5100000023539,-0.05606156476770687 +127903,639.515000002354,-0.056061453458641324 +127904,639.5200000023541,-0.05606134217258652 +127905,639.5250000023542,-0.056061230909537234 +127906,639.5300000023543,-0.05606111966948822 +127907,639.5350000023544,-0.056061008452434294 +127908,639.5400000023545,-0.05606089725837022 +127909,639.5450000023546,-0.056060786087290766 +127910,639.5500000023547,-0.05606067493919074 +127911,639.5550000023549,-0.056060563814064907 +127912,639.560000002355,-0.05606045271190806 +127913,639.5650000023551,-0.056060341632714984 +127914,639.5700000023552,-0.05606023057648046 +127915,639.5750000023553,-0.0560601195431993 +127916,639.5800000023554,-0.05606000853286625 +127917,639.5850000023555,-0.056059897545476134 +127918,639.5900000023556,-0.05605978658102373 +127919,639.5950000023557,-0.056059675639503835 +127920,639.6000000023558,-0.05605956472091124 +127921,639.605000002356,-0.05605945382524074 +127922,639.6100000023561,-0.056059342952487115 +127923,639.6150000023562,-0.05605923210264517 +127924,639.6200000023563,-0.0560591212757097 +127925,639.6250000023564,-0.05605901047167551 +127926,639.6300000023565,-0.05605889969053737 +127927,639.6350000023566,-0.05605878893229011 +127928,639.6400000023567,-0.05605867819692853 +127929,639.6450000023568,-0.056058567484447396 +127930,639.6500000023569,-0.05605845679484153 +127931,639.655000002357,-0.05605834612810576 +127932,639.6600000023572,-0.056058235484234845 +127933,639.6650000023573,-0.05605812486322361 +127934,639.6700000023574,-0.05605801426506686 +127935,639.6750000023575,-0.0560579036897594 +127936,639.6800000023576,-0.056057793137296044 +127937,639.6850000023577,-0.0560576826076716 +127938,639.6900000023578,-0.056057572100880845 +127939,639.6950000023579,-0.05605746161691863 +127940,639.700000002358,-0.05605735115577974 +127941,639.7050000023581,-0.056057240717458996 +127942,639.7100000023582,-0.05605713030195122 +127943,639.7150000023584,-0.05605701990925121 +127944,639.7200000023585,-0.056056909539353786 +127945,639.7250000023586,-0.056056799192253766 +127946,639.7300000023587,-0.05605668886794595 +127947,639.7350000023588,-0.05605657856642517 +127948,639.7400000023589,-0.05605646828768625 +127949,639.745000002359,-0.05605635803172399 +127950,639.7500000023591,-0.05605624779853322 +127951,639.7550000023592,-0.05605613758810877 +127952,639.7600000023593,-0.05605602740044544 +127953,639.7650000023594,-0.05605591723553808 +127954,639.7700000023596,-0.05605580709338149 +127955,639.7750000023597,-0.0560556969739705 +127956,639.7800000023598,-0.056055586877299945 +127957,639.7850000023599,-0.056055476803364646 +127958,639.79000000236,-0.05605536675215941 +127959,639.7950000023601,-0.05605525672367911 +127960,639.8000000023602,-0.05605514671791853 +127961,639.8050000023603,-0.05605503673487253 +127962,639.8100000023604,-0.05605492677453593 +127963,639.8150000023605,-0.056054816836903554 +127964,639.8200000023606,-0.05605470692197024 +127965,639.8250000023608,-0.05605459702973081 +127966,639.8300000023609,-0.05605448716018013 +127967,639.835000002361,-0.05605437731331301 +127968,639.8400000023611,-0.0560542674891243 +127969,639.8450000023612,-0.056054157687608824 +127970,639.8500000023613,-0.05605404790876142 +127971,639.8550000023614,-0.056053938152576935 +127972,639.8600000023615,-0.056053828419050204 +127973,639.8650000023616,-0.056053718708176076 +127974,639.8700000023617,-0.056053609019949394 +127975,639.8750000023618,-0.056053499354364975 +127976,639.880000002362,-0.0560533897114177 +127977,639.8850000023621,-0.05605328009110238 +127978,639.8900000023622,-0.05605317049341387 +127979,639.8950000023623,-0.05605306091834703 +127980,639.9000000023624,-0.056052951365896705 +127981,639.9050000023625,-0.056052841836057736 +127982,639.9100000023626,-0.056052732328824975 +127983,639.9150000023627,-0.05605262284419327 +127984,639.9200000023628,-0.05605251338215746 +127985,639.9250000023629,-0.056052403942712416 +127986,639.930000002363,-0.05605229452585299 +127987,639.9350000023632,-0.05605218513157402 +127988,639.9400000023633,-0.05605207575987036 +127989,639.9450000023634,-0.056051966410736884 +127990,639.9500000023635,-0.05605185708416843 +127991,639.9550000023636,-0.05605174778015987 +127992,639.9600000023637,-0.056051638498706056 +127993,639.9650000023638,-0.056051529239801855 +127994,639.9700000023639,-0.05605142000344212 +127995,639.975000002364,-0.05605131078962171 +127996,639.9800000023641,-0.05605120159833548 +127997,639.9850000023642,-0.05605109242957831 +127998,639.9900000023644,-0.05605098328334505 +127999,639.9950000023645,-0.056050874159630566 +128000,640.0000000023646,-0.056050765058429736 +128001,640.0050000023647,-0.0560506559797374 +128002,640.0100000023648,-0.05605054692354845 +128003,640.0150000023649,-0.05605043788985775 +128004,640.020000002365,-0.056050328878660155 +128005,640.0250000023651,-0.056050219889950556 +128006,640.0300000023652,-0.056050110923723806 +128007,640.0350000023653,-0.056050001979974784 +128008,640.0400000023654,-0.05604989305869836 +128009,640.0450000023656,-0.05604978415988941 +128010,640.0500000023657,-0.056049675283542814 +128011,640.0550000023658,-0.05604956642965344 +128012,640.0600000023659,-0.05604945759821617 +128013,640.065000002366,-0.05604934878922588 +128014,640.0700000023661,-0.056049240002677435 +128015,640.0750000023662,-0.05604913123856574 +128016,640.0800000023663,-0.05604902249688564 +128017,640.0850000023664,-0.05604891377763204 +128018,640.0900000023665,-0.056048805080799825 +128019,640.0950000023666,-0.05604869640638387 +128020,640.1000000023668,-0.056048587754379056 +128021,640.1050000023669,-0.056048479124780275 +128022,640.110000002367,-0.0560483705175824 +128023,640.1150000023671,-0.05604826193278032 +128024,640.1200000023672,-0.05604815337036894 +128025,640.1250000023673,-0.05604804483034312 +128026,640.1300000023674,-0.05604793631269777 +128027,640.1350000023675,-0.05604782781742777 +128028,640.1400000023676,-0.05604771934452802 +128029,640.1450000023677,-0.05604761089399341 +128030,640.1500000023678,-0.05604750246581883 +128031,640.155000002368,-0.056047394059999166 +128032,640.1600000023681,-0.056047285676529314 +128033,640.1650000023682,-0.056047177315404186 +128034,640.1700000023683,-0.05604706897661866 +128035,640.1750000023684,-0.05604696066016764 +128036,640.1800000023685,-0.05604685236604603 +128037,640.1850000023686,-0.05604674409424871 +128038,640.1900000023687,-0.056046635844770605 +128039,640.1950000023688,-0.056046527617606604 +128040,640.2000000023689,-0.056046419412751604 +128041,640.205000002369,-0.05604631123020052 +128042,640.2100000023692,-0.05604620306994824 +128043,640.2150000023693,-0.05604609493198967 +128044,640.2200000023694,-0.056045986816319726 +128045,640.2250000023695,-0.05604587872293331 +128046,640.2300000023696,-0.056045770651825325 +128047,640.2350000023697,-0.056045662602990674 +128048,640.2400000023698,-0.05604555457642428 +128049,640.2450000023699,-0.05604544657212105 +128050,640.25000000237,-0.0560453385900759 +128051,640.2550000023701,-0.05604523063028373 +128052,640.2600000023702,-0.05604512269273946 +128053,640.2650000023704,-0.056045014777437986 +128054,640.2700000023705,-0.056044906884374246 +128055,640.2750000023706,-0.056044799013543145 +128056,640.2800000023707,-0.0560446911649396 +128057,640.2850000023708,-0.05604458333855851 +128058,640.2900000023709,-0.05604447553439482 +128059,640.295000002371,-0.05604436775244344 +128060,640.3000000023711,-0.05604425999269928 +128061,640.3050000023712,-0.05604415225515727 +128062,640.3100000023713,-0.056044044539812335 +128063,640.3150000023714,-0.05604393684665939 +128064,640.3200000023716,-0.05604382917569336 +128065,640.3250000023717,-0.05604372152690918 +128066,640.3300000023718,-0.05604361390030176 +128067,640.3350000023719,-0.05604350629586604 +128068,640.340000002372,-0.05604339871359693 +128069,640.3450000023721,-0.05604329115348936 +128070,640.3500000023722,-0.05604318361553827 +128071,640.3550000023723,-0.05604307609973858 +128072,640.3600000023724,-0.05604296860608524 +128073,640.3650000023725,-0.05604286113457316 +128074,640.3700000023726,-0.05604275368519727 +128075,640.3750000023728,-0.056042646257952515 +128076,640.3800000023729,-0.05604253885283383 +128077,640.385000002373,-0.056042431469836146 +128078,640.3900000023731,-0.05604232410895439 +128079,640.3950000023732,-0.05604221677018351 +128080,640.4000000023733,-0.05604210945351845 +128081,640.4050000023734,-0.056042002158954135 +128082,640.4100000023735,-0.05604189488648551 +128083,640.4150000023736,-0.056041787636107517 +128084,640.4200000023737,-0.05604168040781508 +128085,640.4250000023738,-0.056041573201603155 +128086,640.430000002374,-0.05604146601746671 +128087,640.4350000023741,-0.056041358855400646 +128088,640.4400000023742,-0.05604125171539993 +128089,640.4450000023743,-0.05604114459745949 +128090,640.4500000023744,-0.05604103750157431 +128091,640.4550000023745,-0.05604093042773931 +128092,640.4600000023746,-0.05604082337594944 +128093,640.4650000023747,-0.056040716346199664 +128094,640.4700000023748,-0.0560406093384849 +128095,640.4750000023749,-0.056040502352800135 +128096,640.480000002375,-0.0560403953891403 +128097,640.4850000023752,-0.05604028844750036 +128098,640.4900000023753,-0.05604018152787525 +128099,640.4950000023754,-0.05604007463025994 +128100,640.5000000023755,-0.05603996775464938 +128101,640.5050000023756,-0.05603986090103854 +128102,640.5100000023757,-0.05603975406942236 +128103,640.5150000023758,-0.0560396472597958 +128104,640.5200000023759,-0.056039540472153836 +128105,640.525000002376,-0.05603943370649141 +128106,640.5300000023761,-0.05603932696280349 +128107,640.5350000023763,-0.056039220241085035 +128108,640.5400000023764,-0.05603911354133101 +128109,640.5450000023765,-0.05603900686353637 +128110,640.5500000023766,-0.056038900207696106 +128111,640.5550000023767,-0.05603879357380515 +128112,640.5600000023768,-0.056038686961858486 +128113,640.5650000023769,-0.05603858037185108 +128114,640.570000002377,-0.056038473803777904 +128115,640.5750000023771,-0.05603836725763393 +128116,640.5800000023772,-0.05603826073341411 +128117,640.5850000023773,-0.05603815423111343 +128118,640.5900000023775,-0.05603804775072685 +128119,640.5950000023776,-0.056037941292249344 +128120,640.6000000023777,-0.0560378348556759 +128121,640.6050000023778,-0.05603772844100148 +128122,640.6100000023779,-0.056037622048221054 +128123,640.615000002378,-0.05603751567732961 +128124,640.6200000023781,-0.05603740932832213 +128125,640.6250000023782,-0.05603730300119358 +128126,640.6300000023783,-0.05603719669593893 +128127,640.6350000023784,-0.056037090412553184 +128128,640.6400000023785,-0.056036984151031304 +128129,640.6450000023787,-0.05603687791136828 +128130,640.6500000023788,-0.05603677169355909 +128131,640.6550000023789,-0.05603666549759872 +128132,640.660000002379,-0.05603655932348214 +128133,640.6650000023791,-0.056036453171204356 +128134,640.6700000023792,-0.05603634704076035 +128135,640.6750000023793,-0.05603624093214509 +128136,640.6800000023794,-0.05603613484535359 +128137,640.6850000023795,-0.05603602878038082 +128138,640.6900000023796,-0.056035922737221786 +128139,640.6950000023797,-0.05603581671587146 +128140,640.7000000023799,-0.05603571071632484 +128141,640.70500000238,-0.056035604738576925 +128142,640.7100000023801,-0.0560354987826227 +128143,640.7150000023802,-0.05603539284845716 +128144,640.7200000023803,-0.05603528693607531 +128145,640.7250000023804,-0.05603518104547213 +128146,640.7300000023805,-0.05603507517664262 +128147,640.7350000023806,-0.05603496932958178 +128148,640.7400000023807,-0.05603486350428462 +128149,640.7450000023808,-0.05603475770074611 +128150,640.750000002381,-0.05603465191896129 +128151,640.755000002381,-0.05603454615892513 +128152,640.7600000023812,-0.05603444042063264 +128153,640.7650000023813,-0.056034334704078814 +128154,640.7700000023814,-0.05603422900925868 +128155,640.7750000023815,-0.05603412333616723 +128156,640.7800000023816,-0.056034017684799466 +128157,640.7850000023817,-0.056033912055150396 +128158,640.7900000023818,-0.05603380644721503 +128159,640.7950000023819,-0.05603370086098836 +128160,640.800000002382,-0.05603359529646542 +128161,640.8050000023821,-0.056033489753641204 +128162,640.8100000023823,-0.05603338423251073 +128163,640.8150000023824,-0.056033278733069 +128164,640.8200000023825,-0.05603317325531103 +128165,640.8250000023826,-0.056033067799231846 +128166,640.8300000023827,-0.056032962364826445 +128167,640.8350000023828,-0.05603285695208986 +128168,640.8400000023829,-0.05603275156101708 +128169,640.845000002383,-0.05603264619160315 +128170,640.8500000023831,-0.056032540843843064 +128171,640.8550000023832,-0.05603243551773187 +128172,640.8600000023833,-0.05603233021326456 +128173,640.8650000023835,-0.05603222493043617 +128174,640.8700000023836,-0.05603211966924171 +128175,640.8750000023837,-0.05603201442967621 +128176,640.8800000023838,-0.05603190921173469 +128177,640.8850000023839,-0.056031804015412176 +128178,640.890000002384,-0.0560316988407037 +128179,640.8950000023841,-0.05603159368760427 +128180,640.9000000023842,-0.05603148855610893 +128181,640.9050000023843,-0.05603138344621269 +128182,640.9100000023844,-0.056031278357910594 +128183,640.9150000023845,-0.056031173291197674 +128184,640.9200000023847,-0.05603106824606894 +128185,640.9250000023848,-0.05603096322251945 +128186,640.9300000023849,-0.056030858220544204 +128187,640.935000002385,-0.05603075324013825 +128188,640.9400000023851,-0.056030648281296634 +128189,640.9450000023852,-0.056030543344014375 +128190,640.9500000023853,-0.05603043842828652 +128191,640.9550000023854,-0.0560303335341081 +128192,640.9600000023855,-0.05603022866147414 +128193,640.9650000023856,-0.056030123810379695 +128194,640.9700000023857,-0.056030018980819794 +128195,640.9750000023859,-0.05602991417278948 +128196,640.980000002386,-0.05602980938628379 +128197,640.9850000023861,-0.05602970462129777 +128198,640.9900000023862,-0.05602959987782647 +128199,640.9950000023863,-0.056029495155864924 +128200,641.0000000023864,-0.056029390455408175 +128201,641.0050000023865,-0.056029285776451276 +128202,641.0100000023866,-0.056029181118989274 +128203,641.0150000023867,-0.05602907648301719 +128204,641.0200000023868,-0.056028971868530106 +128205,641.025000002387,-0.05602886727552306 +128206,641.030000002387,-0.05602876270399108 +128207,641.0350000023872,-0.056028658153929246 +128208,641.0400000023873,-0.05602855362533259 +128209,641.0450000023874,-0.056028449118196176 +128210,641.0500000023875,-0.05602834463251506 +128211,641.0550000023876,-0.05602824016828427 +128212,641.0600000023877,-0.05602813572549888 +128213,641.0650000023878,-0.05602803130415396 +128214,641.0700000023879,-0.05602792690424454 +128215,641.075000002388,-0.056027822525765686 +128216,641.0800000023881,-0.05602771816871247 +128217,641.0850000023883,-0.05602761383307994 +128218,641.0900000023884,-0.05602750951886316 +128219,641.0950000023885,-0.05602740522605717 +128220,641.1000000023886,-0.05602730095465705 +128221,641.1050000023887,-0.05602719670465787 +128222,641.1100000023888,-0.056027092476054675 +128223,641.1150000023889,-0.056026988268842545 +128224,641.120000002389,-0.056026884083016544 +128225,641.1250000023891,-0.05602677991857172 +128226,641.1300000023892,-0.05602667577550317 +128227,641.1350000023893,-0.05602657165380593 +128228,641.1400000023895,-0.05602646755347509 +128229,641.1450000023896,-0.056026363474505715 +128230,641.1500000023897,-0.05602625941689287 +128231,641.1550000023898,-0.05602615538063164 +128232,641.1600000023899,-0.05602605136571708 +128233,641.16500000239,-0.05602594737214427 +128234,641.1700000023901,-0.0560258433999083 +128235,641.1750000023902,-0.05602573944900421 +128236,641.1800000023903,-0.056025635519427096 +128237,641.1850000023904,-0.05602553161117204 +128238,641.1900000023905,-0.05602542772423412 +128239,641.1950000023907,-0.0560253238586084 +128240,641.2000000023908,-0.05602522001428997 +128241,641.2050000023909,-0.05602511619127391 +128242,641.210000002391,-0.056025012389555304 +128243,641.2150000023911,-0.05602490860912921 +128244,641.2200000023912,-0.05602480484999074 +128245,641.2250000023913,-0.056024701112134964 +128246,641.2300000023914,-0.056024597395556965 +128247,641.2350000023915,-0.05602449370025184 +128248,641.2400000023916,-0.05602439002621466 +128249,641.2450000023917,-0.056024286373440535 +128250,641.2500000023919,-0.05602418274192452 +128251,641.255000002392,-0.05602407913166172 +128252,641.2600000023921,-0.056023975542647236 +128253,641.2650000023922,-0.05602387197487615 +128254,641.2700000023923,-0.05602376842834354 +128255,641.2750000023924,-0.05602366490304452 +128256,641.2800000023925,-0.05602356139897418 +128257,641.2850000023926,-0.056023457916127596 +128258,641.2900000023927,-0.05602335445449988 +128259,641.2950000023928,-0.05602325101408613 +128260,641.300000002393,-0.056023147594881424 +128261,641.3050000023931,-0.056023044196880874 +128262,641.3100000023932,-0.05602294082007958 +128263,641.3150000023933,-0.05602283746447263 +128264,641.3200000023934,-0.05602273413005513 +128265,641.3250000023935,-0.05602263081682219 +128266,641.3300000023936,-0.05602252752476889 +128267,641.3350000023937,-0.05602242425389035 +128268,641.3400000023938,-0.056022321004181676 +128269,641.3450000023939,-0.05602221777563797 +128270,641.350000002394,-0.05602211456825432 +128271,641.3550000023941,-0.056022011382025866 +128272,641.3600000023943,-0.05602190821694768 +128273,641.3650000023944,-0.05602180507301489 +128274,641.3700000023945,-0.056021701950222595 +128275,641.3750000023946,-0.05602159884856592 +128276,641.3800000023947,-0.056021495768039956 +128277,641.3850000023948,-0.056021392708639824 +128278,641.3900000023949,-0.056021289670360644 +128279,641.395000002395,-0.05602118665319752 +128280,641.4000000023951,-0.056021083657145566 +128281,641.4050000023952,-0.05602098068219989 +128282,641.4100000023953,-0.056020877728355616 +128283,641.4150000023955,-0.05602077479560787 +128284,641.4200000023956,-0.05602067188395175 +128285,641.4250000023957,-0.05602056899338238 +128286,641.4300000023958,-0.05602046612389489 +128287,641.4350000023959,-0.0560203632754844 +128288,641.440000002396,-0.05602026044814602 +128289,641.4450000023961,-0.056020157641874874 +128290,641.4500000023962,-0.05602005485666609 +128291,641.4550000023963,-0.0560199520925148 +128292,641.4600000023964,-0.056019849349416104 +128293,641.4650000023966,-0.056019746627365155 +128294,641.4700000023967,-0.05601964392635705 +128295,641.4750000023968,-0.05601954124638694 +128296,641.4800000023969,-0.05601943858744993 +128297,641.485000002397,-0.05601933594954117 +128298,641.4900000023971,-0.056019233332655786 +128299,641.4950000023972,-0.056019130736788894 +128300,641.5000000023973,-0.05601902816193564 +128301,641.5050000023974,-0.05601892560809115 +128302,641.5100000023975,-0.056018823075250565 +128303,641.5150000023976,-0.05601872056340901 +128304,641.5200000023978,-0.05601861807256162 +128305,641.5250000023979,-0.056018515602703545 +128306,641.530000002398,-0.056018413153829896 +128307,641.5350000023981,-0.056018310725935834 +128308,641.5400000023982,-0.05601820831901648 +128309,641.5450000023983,-0.05601810593306699 +128310,641.5500000023984,-0.056018003568082494 +128311,641.5550000023985,-0.05601790122405812 +128312,641.5600000023986,-0.056017798900989034 +128313,641.5650000023987,-0.056017696598870376 +128314,641.5700000023988,-0.056017594317697275 +128315,641.575000002399,-0.05601749205746488 +128316,641.5800000023991,-0.05601738981816834 +128317,641.5850000023992,-0.056017287599802804 +128318,641.5900000023993,-0.0560171854023634 +128319,641.5950000023994,-0.05601708322584528 +128320,641.6000000023995,-0.05601698107024362 +128321,641.6050000023996,-0.05601687893555355 +128322,641.6100000023997,-0.056016776821770226 +128323,641.6150000023998,-0.05601667472888879 +128324,641.6200000023999,-0.0560165726569044 +128325,641.6250000024,-0.056016470605812205 +128326,641.6300000024002,-0.05601636857560736 +128327,641.6350000024003,-0.05601626656628503 +128328,641.6400000024004,-0.05601616457784036 +128329,641.6450000024005,-0.05601606261026851 +128330,641.6500000024006,-0.05601596066356463 +128331,641.6550000024007,-0.05601585873772388 +128332,641.6600000024008,-0.05601575683274142 +128333,641.6650000024009,-0.05601565494861241 +128334,641.670000002401,-0.056015553085332015 +128335,641.6750000024011,-0.0560154512428954 +128336,641.6800000024012,-0.05601534942129772 +128337,641.6850000024014,-0.05601524762053414 +128338,641.6900000024015,-0.05601514584059983 +128339,641.6950000024016,-0.05601504408148995 +128340,641.7000000024017,-0.05601494234319965 +128341,641.7050000024018,-0.05601484062572412 +128342,641.7100000024019,-0.05601473892905851 +128343,641.715000002402,-0.056014637253198 +128344,641.7200000024021,-0.05601453559813777 +128345,641.7250000024022,-0.05601443396387296 +128346,641.7300000024023,-0.05601433235039876 +128347,641.7350000024024,-0.05601423075771035 +128348,641.7400000024026,-0.05601412918580289 +128349,641.7450000024027,-0.05601402763467155 +128350,641.7500000024028,-0.05601392610431151 +128351,641.7550000024029,-0.056013824594717945 +128352,641.760000002403,-0.05601372310588603 +128353,641.7650000024031,-0.05601362163781094 +128354,641.7700000024032,-0.056013520190487866 +128355,641.7750000024033,-0.05601341876391197 +128356,641.7800000024034,-0.05601331735807844 +128357,641.7850000024035,-0.05601321597298245 +128358,641.7900000024036,-0.05601311460861919 +128359,641.7950000024038,-0.05601301326498384 +128360,641.8000000024039,-0.056012911942071586 +128361,641.805000002404,-0.0560128106398776 +128362,641.8100000024041,-0.05601270935839708 +128363,641.8150000024042,-0.05601260809762519 +128364,641.8200000024043,-0.056012506857557126 +128365,641.8250000024044,-0.05601240563818809 +128366,641.8300000024045,-0.05601230443951326 +128367,641.8350000024046,-0.05601220326152783 +128368,641.8400000024047,-0.05601210210422698 +128369,641.8450000024048,-0.05601200096760592 +128370,641.850000002405,-0.05601189985165981 +128371,641.8550000024051,-0.05601179875638385 +128372,641.8600000024052,-0.056011697681773255 +128373,641.8650000024053,-0.056011596627823214 +128374,641.8700000024054,-0.0560114955945289 +128375,641.8750000024055,-0.056011394581885525 +128376,641.8800000024056,-0.05601129358988828 +128377,641.8850000024057,-0.05601119261853238 +128378,641.8900000024058,-0.056011091667813005 +128379,641.8950000024059,-0.05601099073772535 +128380,641.900000002406,-0.056010889828264625 +128381,641.9050000024062,-0.056010788939426036 +128382,641.9100000024063,-0.05601068807120477 +128383,641.9150000024064,-0.05601058722359605 +128384,641.9200000024065,-0.056010486396595054 +128385,641.9250000024066,-0.056010385590197005 +128386,641.9300000024067,-0.056010284804397105 +128387,641.9350000024068,-0.05601018403919055 +128388,641.9400000024069,-0.056010083294572556 +128389,641.945000002407,-0.056009982570538325 +128390,641.9500000024071,-0.05600988186708308 +128391,641.9550000024072,-0.05600978118420203 +128392,641.9600000024074,-0.05600968052189036 +128393,641.9650000024075,-0.056009579880143295 +128394,641.9700000024076,-0.05600947925895605 +128395,641.9750000024077,-0.05600937865832384 +128396,641.9800000024078,-0.05600927807824188 +128397,641.9850000024079,-0.05600917751870537 +128398,641.990000002408,-0.056009076979709534 +128399,641.9950000024081,-0.05600897646124959 +128400,642.0000000024082,-0.05600887596332075 +128401,642.0050000024083,-0.05600877548591824 +128402,642.0100000024084,-0.056008675029037266 +128403,642.0150000024086,-0.056008574592673055 +128404,642.0200000024087,-0.05600847417682084 +128405,642.0250000024088,-0.05600837378147583 +128406,642.0300000024089,-0.05600827340663324 +128407,642.035000002409,-0.0560081730522883 +128408,642.0400000024091,-0.05600807271843624 +128409,642.0450000024092,-0.056007972405072284 +128410,642.0500000024093,-0.05600787211219164 +128411,642.0550000024094,-0.05600777183978954 +128412,642.0600000024095,-0.05600767158786123 +128413,642.0650000024096,-0.05600757135640193 +128414,642.0700000024098,-0.056007471145406856 +128415,642.0750000024099,-0.05600737095487125 +128416,642.08000000241,-0.056007270784790335 +128417,642.0850000024101,-0.05600717063515936 +128418,642.0900000024102,-0.05600707050597353 +128419,642.0950000024103,-0.0560069703972281 +128420,642.1000000024104,-0.056006870308918294 +128421,642.1050000024105,-0.05600677024103935 +128422,642.1100000024106,-0.0560066701935865 +128423,642.1150000024107,-0.056006570166555 +128424,642.1200000024108,-0.05600647015994005 +128425,642.125000002411,-0.056006370173736914 +128426,642.1300000024111,-0.05600627020794083 +128427,642.1350000024112,-0.056006170262547034 +128428,642.1400000024113,-0.056006070337550756 +128429,642.1450000024114,-0.05600597043294725 +128430,642.1500000024115,-0.05600587054873177 +128431,642.1550000024116,-0.05600577068489953 +128432,642.1600000024117,-0.05600567084144581 +128433,642.1650000024118,-0.05600557101836581 +128434,642.1700000024119,-0.05600547121565482 +128435,642.175000002412,-0.056005371433308075 +128436,642.1800000024122,-0.0560052716713208 +128437,642.1850000024123,-0.05600517192968826 +128438,642.1900000024124,-0.056005072208405705 +128439,642.1950000024125,-0.05600497250746838 +128440,642.2000000024126,-0.056004872826871534 +128441,642.2050000024127,-0.056004773166610435 +128442,642.2100000024128,-0.05600467352668032 +128443,642.2150000024129,-0.05600457390707645 +128444,642.220000002413,-0.056004474307794073 +128445,642.2250000024131,-0.05600437472882844 +128446,642.2300000024132,-0.056004275170174825 +128447,642.2350000024134,-0.05600417563182846 +128448,642.2400000024135,-0.05600407611378462 +128449,642.2450000024136,-0.05600397661603856 +128450,642.2500000024137,-0.05600387713858554 +128451,642.2550000024138,-0.05600377768142081 +128452,642.2600000024139,-0.05600367824453966 +128453,642.265000002414,-0.05600357882793732 +128454,642.2700000024141,-0.05600347943160907 +128455,642.2750000024142,-0.05600338005555017 +128456,642.2800000024143,-0.05600328069975588 +128457,642.2850000024144,-0.056003181364221465 +128458,642.2900000024146,-0.05600308204894219 +128459,642.2950000024147,-0.05600298275391333 +128460,642.3000000024148,-0.05600288347913015 +128461,642.3050000024149,-0.05600278422458791 +128462,642.310000002415,-0.056002684990281895 +128463,642.3150000024151,-0.05600258577620737 +128464,642.3200000024152,-0.056002486582359595 +128465,642.3250000024153,-0.05600238740873385 +128466,642.3300000024154,-0.05600228825532541 +128467,642.3350000024155,-0.05600218912212955 +128468,642.3400000024156,-0.05600209000914154 +128469,642.3450000024158,-0.05600199091635666 +128470,642.3500000024159,-0.056001891843770184 +128471,642.355000002416,-0.05600179279137738 +128472,642.3600000024161,-0.056001693759173535 +128473,642.3650000024162,-0.05600159474715392 +128474,642.3700000024163,-0.056001495755313824 +128475,642.3750000024164,-0.05600139678364853 +128476,642.3800000024165,-0.05600129783215332 +128477,642.3850000024166,-0.05600119890082344 +128478,642.3900000024167,-0.056001099989654225 +128479,642.3950000024169,-0.05600100109864093 +128480,642.400000002417,-0.056000902227778836 +128481,642.4050000024171,-0.05600080337706325 +128482,642.4100000024172,-0.05600070454648944 +128483,642.4150000024173,-0.05600060573605271 +128484,642.4200000024174,-0.05600050694574831 +128485,642.4250000024175,-0.05600040817557158 +128486,642.4300000024176,-0.05600030942551777 +128487,642.4350000024177,-0.056000210695582184 +128488,642.4400000024178,-0.05600011198576012 +128489,642.4450000024179,-0.05600001329604686 +128490,642.450000002418,-0.0559999146264377 +128491,642.4550000024182,-0.05599981597692795 +128492,642.4600000024183,-0.055999717347512884 +128493,642.4650000024184,-0.05599961873818781 +128494,642.4700000024185,-0.05599952014894801 +128495,642.4750000024186,-0.05599942157978879 +128496,642.4800000024187,-0.05599932303070544 +128497,642.4850000024188,-0.05599922450169328 +128498,642.4900000024189,-0.05599912599274758 +128499,642.495000002419,-0.05599902750386366 +128500,642.5000000024191,-0.05599892903503681 +128501,642.5050000024193,-0.055998830586262344 +128502,642.5100000024194,-0.055998732157535556 +128503,642.5150000024195,-0.05599863374885176 +128504,642.5200000024196,-0.05599853536020625 +128505,642.5250000024197,-0.05599843699159433 +128506,642.5300000024198,-0.055998338643011326 +128507,642.5350000024199,-0.05599824031445253 +128508,642.54000000242,-0.05599814200591325 +128509,642.5450000024201,-0.0559980437173888 +128510,642.5500000024202,-0.05599794544887448 +128511,642.5550000024203,-0.0559978472003656 +128512,642.5600000024205,-0.055997748971857476 +128513,642.5650000024206,-0.05599765076334543 +128514,642.5700000024207,-0.05599755257482477 +128515,642.5750000024208,-0.0559974544062908 +128516,642.5800000024209,-0.05599735625773884 +128517,642.585000002421,-0.05599725812916421 +128518,642.5900000024211,-0.05599716002056222 +128519,642.5950000024212,-0.05599706193192819 +128520,642.6000000024213,-0.055996963863257435 +128521,642.6050000024214,-0.05599686581454527 +128522,642.6100000024215,-0.05599676778578703 +128523,642.6150000024217,-0.05599666977697802 +128524,642.6200000024218,-0.05599657178811358 +128525,642.6250000024219,-0.05599647381918902 +128526,642.630000002422,-0.055996375870199656 +128527,642.6350000024221,-0.05599627794114082 +128528,642.6400000024222,-0.055996180032007827 +128529,642.6450000024223,-0.055996082142796014 +128530,642.6500000024224,-0.055995984273500714 +128531,642.6550000024225,-0.05599588642411723 +128532,642.6600000024226,-0.05599578859464092 +128533,642.6650000024227,-0.05599569078506708 +128534,642.6700000024229,-0.055995592995391065 +128535,642.675000002423,-0.0559954952256082 +128536,642.6800000024231,-0.055995397475713804 +128537,642.6850000024232,-0.05599529974570322 +128538,642.6900000024233,-0.055995202035571796 +128539,642.6950000024234,-0.05599510434531483 +128540,642.7000000024235,-0.05599500667492768 +128541,642.7050000024236,-0.05599490902440569 +128542,642.7100000024237,-0.055994811393744175 +128543,642.7150000024238,-0.05599471378293848 +128544,642.720000002424,-0.05599461619198394 +128545,642.725000002424,-0.05599451862087589 +128546,642.7300000024242,-0.05599442106960969 +128547,642.7350000024243,-0.055994323538180665 +128548,642.7400000024244,-0.05599422602658416 +128549,642.7450000024245,-0.055994128534815515 +128550,642.7500000024246,-0.05599403106287006 +128551,642.7550000024247,-0.055993933610743174 +128552,642.7600000024248,-0.05599383617843016 +128553,642.7650000024249,-0.05599373876592639 +128554,642.770000002425,-0.05599364137322721 +128555,642.7750000024251,-0.055993544000327945 +128556,642.7800000024253,-0.055993446647223964 +128557,642.7850000024254,-0.05599334931391062 +128558,642.7900000024255,-0.055993252000383235 +128559,642.7950000024256,-0.05599315470663718 +128560,642.8000000024257,-0.05599305743266781 +128561,642.8050000024258,-0.05599296017847047 +128562,642.8100000024259,-0.05599286294404051 +128563,642.815000002426,-0.05599276572937329 +128564,642.8200000024261,-0.05599266853446416 +128565,642.8250000024262,-0.05599257135930847 +128566,642.8300000024263,-0.055992474203901584 +128567,642.8350000024265,-0.055992377068238855 +128568,642.8400000024266,-0.05599227995231564 +128569,642.8450000024267,-0.0559921828561273 +128570,642.8500000024268,-0.055992085779669194 +128571,642.8550000024269,-0.055991988722936696 +128572,642.860000002427,-0.05599189168592514 +128573,642.8650000024271,-0.055991794668629906 +128574,642.8700000024272,-0.05599169767104636 +128575,642.8750000024273,-0.05599160069316984 +128576,642.8800000024274,-0.05599150373499575 +128577,642.8850000024275,-0.05599140679651943 +128578,642.8900000024277,-0.05599130987773624 +128579,642.8950000024278,-0.05599121297864157 +128580,642.9000000024279,-0.05599111609923077 +128581,642.905000002428,-0.05599101923949921 +128582,642.9100000024281,-0.055990922399442256 +128583,642.9150000024282,-0.055990825579055284 +128584,642.9200000024283,-0.05599072877833368 +128585,642.9250000024284,-0.055990631997272784 +128586,642.9300000024285,-0.05599053523586799 +128587,642.9350000024286,-0.05599043849411467 +128588,642.9400000024287,-0.05599034177200819 +128589,642.9450000024289,-0.05599024506954395 +128590,642.950000002429,-0.055990148386717294 +128591,642.9550000024291,-0.05599005172352361 +128592,642.9600000024292,-0.05598995507995828 +128593,642.9650000024293,-0.05598985845601668 +128594,642.9700000024294,-0.055989761851694186 +128595,642.9750000024295,-0.05598966526698618 +128596,642.9800000024296,-0.05598956870188805 +128597,642.9850000024297,-0.055989472156395166 +128598,642.9900000024298,-0.05598937563050292 +128599,642.99500000243,-0.05598927912420669 +128600,643.00000000243,-0.055989182637501855 +128601,643.0050000024302,-0.05598908617038382 +128602,643.0100000024303,-0.05598898972284794 +128603,643.0150000024304,-0.055988893294889625 +128604,643.0200000024305,-0.055988796886504245 +128605,643.0250000024306,-0.055988700497687206 +128606,643.0300000024307,-0.05598860412843389 +128607,643.0350000024308,-0.05598850777873969 +128608,643.0400000024309,-0.05598841144859999 +128609,643.045000002431,-0.0559883151380102 +128610,643.0500000024311,-0.05598821884696568 +128611,643.0550000024313,-0.055988122575461846 +128612,643.0600000024314,-0.05598802632349408 +128613,643.0650000024315,-0.05598793009105779 +128614,643.0700000024316,-0.05598783387814837 +128615,643.0750000024317,-0.0559877376847612 +128616,643.0800000024318,-0.05598764151089171 +128617,643.0850000024319,-0.055987545356535266 +128618,643.090000002432,-0.055987449221687274 +128619,643.0950000024321,-0.05598735310634314 +128620,643.1000000024322,-0.05598725701049827 +128621,643.1050000024323,-0.05598716093414805 +128622,643.1100000024325,-0.05598706487728789 +128623,643.1150000024326,-0.055986968839913206 +128624,643.1200000024327,-0.05598687282201938 +128625,643.1250000024328,-0.055986776823601814 +128626,643.1300000024329,-0.05598668084465594 +128627,643.135000002433,-0.05598658488517714 +128628,643.1400000024331,-0.05598648894516083 +128629,643.1450000024332,-0.05598639302460242 +128630,643.1500000024333,-0.05598629712349732 +128631,643.1550000024334,-0.05598620124184095 +128632,643.1600000024335,-0.055986105379628684 +128633,643.1650000024337,-0.05598600953685596 +128634,643.1700000024338,-0.05598591371351819 +128635,643.1750000024339,-0.05598581790961079 +128636,643.180000002434,-0.05598572212512916 +128637,643.1850000024341,-0.05598562636006872 +128638,643.1900000024342,-0.05598553061442489 +128639,643.1950000024343,-0.05598543488819308 +128640,643.2000000024344,-0.055985339181368714 +128641,643.2050000024345,-0.05598524349394719 +128642,643.2100000024346,-0.05598514782592396 +128643,643.2150000024347,-0.05598505217729442 +128644,643.2200000024349,-0.055984956548053987 +128645,643.225000002435,-0.0559848609381981 +128646,643.2300000024351,-0.05598476534772216 +128647,643.2350000024352,-0.0559846697766216 +128648,643.2400000024353,-0.05598457422489186 +128649,643.2450000024354,-0.055984478692528344 +128650,643.2500000024355,-0.055984383179526476 +128651,643.2550000024356,-0.055984287685881685 +128652,643.2600000024357,-0.0559841922115894 +128653,643.2650000024358,-0.05598409675664506 +128654,643.270000002436,-0.05598400132104408 +128655,643.2750000024361,-0.05598390590478188 +128656,643.2800000024362,-0.05598381050785391 +128657,643.2850000024363,-0.055983715130255574 +128658,643.2900000024364,-0.05598361977198234 +128659,643.2950000024365,-0.05598352443302962 +128660,643.3000000024366,-0.055983429113392845 +128661,643.3050000024367,-0.05598333381306745 +128662,643.3100000024368,-0.055983238532048875 +128663,643.3150000024369,-0.05598314327033255 +128664,643.320000002437,-0.05598304802791391 +128665,643.3250000024372,-0.05598295280478841 +128666,643.3300000024373,-0.05598285760095148 +128667,643.3350000024374,-0.055982762416398546 +128668,643.3400000024375,-0.05598266725112505 +128669,643.3450000024376,-0.05598257210512644 +128670,643.3500000024377,-0.05598247697839816 +128671,643.3550000024378,-0.05598238187093564 +128672,643.3600000024379,-0.055982286782734335 +128673,643.365000002438,-0.05598219171378969 +128674,643.3700000024381,-0.05598209666409714 +128675,643.3750000024382,-0.055982001633652134 +128676,643.3800000024384,-0.055981906622450124 +128677,643.3850000024385,-0.05598181163048655 +128678,643.3900000024386,-0.055981716657756864 +128679,643.3950000024387,-0.05598162170425651 +128680,643.4000000024388,-0.055981526769980944 +128681,643.4050000024389,-0.0559814318549256 +128682,643.410000002439,-0.05598133695908595 +128683,643.4150000024391,-0.055981242082457444 +128684,643.4200000024392,-0.05598114722503551 +128685,643.4250000024393,-0.05598105238681563 +128686,643.4300000024394,-0.055980957567793255 +128687,643.4350000024396,-0.05598086276796383 +128688,643.4400000024397,-0.05598076798732281 +128689,643.4450000024398,-0.05598067322586565 +128690,643.4500000024399,-0.055980578483587805 +128691,643.45500000244,-0.05598048376048476 +128692,643.4600000024401,-0.05598038905655194 +128693,643.4650000024402,-0.05598029437178484 +128694,643.4700000024403,-0.05598019970617888 +128695,643.4750000024404,-0.05598010505972956 +128696,643.4800000024405,-0.05598001043243231 +128697,643.4850000024406,-0.05597991582428261 +128698,643.4900000024408,-0.05597982123527594 +128699,643.4950000024409,-0.05597972666540774 +128700,643.500000002441,-0.05597963211467348 +128701,643.5050000024411,-0.05597953758306864 +128702,643.5100000024412,-0.05597944307058866 +128703,643.5150000024413,-0.055979348577229034 +128704,643.5200000024414,-0.055979254102985224 +128705,643.5250000024415,-0.055979159647852696 +128706,643.5300000024416,-0.05597906521182692 +128707,643.5350000024417,-0.05597897079490336 +128708,643.5400000024418,-0.055978876397077514 +128709,643.545000002442,-0.05597878201834483 +128710,643.5500000024421,-0.055978687658700794 +128711,643.5550000024422,-0.05597859331814087 +128712,643.5600000024423,-0.05597849899666053 +128713,643.5650000024424,-0.055978404694255274 +128714,643.5700000024425,-0.05597831041092057 +128715,643.5750000024426,-0.05597821614665189 +128716,643.5800000024427,-0.05597812190144471 +128717,643.5850000024428,-0.055978027675294514 +128718,643.5900000024429,-0.05597793346819678 +128719,643.595000002443,-0.055977839280147 +128720,643.6000000024432,-0.055977745111140634 +128721,643.6050000024433,-0.055977650961173187 +128722,643.6100000024434,-0.05597755683024012 +128723,643.6150000024435,-0.05597746271833692 +128724,643.6200000024436,-0.055977368625459094 +128725,643.6250000024437,-0.05597727455160211 +128726,643.6300000024438,-0.05597718049676147 +128727,643.6350000024439,-0.05597708646093264 +128728,643.640000002444,-0.05597699244411112 +128729,643.6450000024441,-0.05597689844629241 +128730,643.6500000024442,-0.05597680446747198 +128731,643.6550000024444,-0.055976710507645334 +128732,643.6600000024445,-0.05597661656680796 +128733,643.6650000024446,-0.055976522644955354 +128734,643.6700000024447,-0.05597642874208299 +128735,643.6750000024448,-0.05597633485818638 +128736,643.6800000024449,-0.05597624099326102 +128737,643.685000002445,-0.05597614714730238 +128738,643.6900000024451,-0.055976053320305995 +128739,643.6950000024452,-0.05597595951226734 +128740,643.7000000024453,-0.05597586572318191 +128741,643.7050000024454,-0.05597577195304521 +128742,643.7100000024456,-0.055975678201852744 +128743,643.7150000024457,-0.05597558446960001 +128744,643.7200000024458,-0.0559754907562825 +128745,643.7250000024459,-0.05597539706189572 +128746,643.730000002446,-0.05597530338643517 +128747,643.7350000024461,-0.055975209729896364 +128748,643.7400000024462,-0.055975116092274804 +128749,643.7450000024463,-0.055975022473565984 +128750,643.7500000024464,-0.055974928873765435 +128751,643.7550000024465,-0.05597483529286863 +128752,643.7600000024466,-0.0559747417308711 +128753,643.7650000024468,-0.05597464818776835 +128754,643.7700000024469,-0.055974554663555894 +128755,643.775000002447,-0.05597446115822922 +128756,643.7800000024471,-0.055974367671783855 +128757,643.7850000024472,-0.05597427420421531 +128758,643.7900000024473,-0.05597418075551909 +128759,643.7950000024474,-0.055974087325690716 +128760,643.8000000024475,-0.0559739939147257 +128761,643.8050000024476,-0.05597390052261956 +128762,643.8100000024477,-0.0559738071493678 +128763,643.8150000024478,-0.05597371379496595 +128764,643.820000002448,-0.05597362045940952 +128765,643.8250000024481,-0.055973527142694025 +128766,643.8300000024482,-0.05597343384481499 +128767,643.8350000024483,-0.05597334056576793 +128768,643.8400000024484,-0.05597324730554837 +128769,643.8450000024485,-0.05597315406415183 +128770,643.8500000024486,-0.05597306084157383 +128771,643.8550000024487,-0.05597296763780989 +128772,643.8600000024488,-0.05597287445285554 +128773,643.8650000024489,-0.0559727812867063 +128774,643.870000002449,-0.055972688139357685 +128775,643.8750000024492,-0.05597259501080524 +128776,643.8800000024493,-0.05597250190104448 +128777,643.8850000024494,-0.05597240881007095 +128778,643.8900000024495,-0.055972315737880154 +128779,643.8950000024496,-0.05597222268446764 +128780,643.9000000024497,-0.055972129649828915 +128781,643.9050000024498,-0.055972036633959533 +128782,643.9100000024499,-0.055971943636855016 +128783,643.91500000245,-0.0559718506585109 +128784,643.9200000024501,-0.055971757698922715 +128785,643.9250000024502,-0.055971664758085994 +128786,643.9300000024504,-0.05597157183599627 +128787,643.9350000024505,-0.055971478932649095 +128788,643.9400000024506,-0.05597138604803997 +128789,643.9450000024507,-0.055971293182164476 +128790,643.9500000024508,-0.05597120033501811 +128791,643.9550000024509,-0.05597110750659644 +128792,643.960000002451,-0.055971014696894986 +128793,643.9650000024511,-0.05597092190590929 +128794,643.9700000024512,-0.05597082913363491 +128795,643.9750000024513,-0.05597073638006738 +128796,643.9800000024514,-0.055970643645202246 +128797,643.9850000024516,-0.055970550929035044 +128798,643.9900000024517,-0.05597045823156131 +128799,643.9950000024518,-0.0559703655527766 +128800,644.0000000024519,-0.05597027289267646 +128801,644.005000002452,-0.05597018025125644 +128802,644.0100000024521,-0.05597008762851208 +128803,644.0150000024522,-0.05596999502443893 +128804,644.0200000024523,-0.055969902439032555 +128805,644.0250000024524,-0.05596980987228848 +128806,644.0300000024525,-0.055969717324202264 +128807,644.0350000024526,-0.05596962479476946 +128808,644.0400000024528,-0.05596953228398563 +128809,644.0450000024529,-0.055969439791846314 +128810,644.050000002453,-0.05596934731834706 +128811,644.0550000024531,-0.05596925486348344 +128812,644.0600000024532,-0.05596916242725101 +128813,644.0650000024533,-0.05596907000964531 +128814,644.0700000024534,-0.0559689776106619 +128815,644.0750000024535,-0.05596888523029634 +128816,644.0800000024536,-0.055968792868544184 +128817,644.0850000024537,-0.055968700525401004 +128818,644.0900000024538,-0.055968608200862364 +128819,644.095000002454,-0.05596851589492381 +128820,644.1000000024541,-0.05596842360758092 +128821,644.1050000024542,-0.05596833133882923 +128822,644.1100000024543,-0.05596823908866432 +128823,644.1150000024544,-0.05596814685708175 +128824,644.1200000024545,-0.055968054644077087 +128825,644.1250000024546,-0.055967962449645914 +128826,644.1300000024547,-0.05596787027378376 +128827,644.1350000024548,-0.05596777811648623 +128828,644.1400000024549,-0.05596768597774887 +128829,644.145000002455,-0.055967593857567256 +128830,644.1500000024552,-0.055967501755936955 +128831,644.1550000024553,-0.05596740967285353 +128832,644.1600000024554,-0.05596731760831257 +128833,644.1650000024555,-0.05596722556230964 +128834,644.1700000024556,-0.0559671335348403 +128835,644.1750000024557,-0.05596704152590013 +128836,644.1800000024558,-0.055966949535484714 +128837,644.1850000024559,-0.05596685756358963 +128838,644.190000002456,-0.05596676561021043 +128839,644.1950000024561,-0.05596667367534272 +128840,644.2000000024562,-0.05596658175898206 +128841,644.2050000024564,-0.055966489861124034 +128842,644.2100000024565,-0.055966397981764206 +128843,644.2150000024566,-0.05596630612089817 +128844,644.2200000024567,-0.055966214278521505 +128845,644.2250000024568,-0.0559661224546298 +128846,644.2300000024569,-0.05596603064921862 +128847,644.235000002457,-0.05596593886228358 +128848,644.2400000024571,-0.05596584709382023 +128849,644.2450000024572,-0.05596575534382417 +128850,644.2500000024573,-0.05596566361229098 +128851,644.2550000024575,-0.055965571899216256 +128852,644.2600000024576,-0.05596548020459558 +128853,644.2650000024577,-0.055965388528424524 +128854,644.2700000024578,-0.0559652968706987 +128855,644.2750000024579,-0.05596520523141368 +128856,644.280000002458,-0.05596511361056507 +128857,644.2850000024581,-0.05596502200814845 +128858,644.2900000024582,-0.05596493042415942 +128859,644.2950000024583,-0.05596483885859355 +128860,644.3000000024584,-0.05596474731144646 +128861,644.3050000024585,-0.055964655782713736 +128862,644.3100000024587,-0.05596456427239097 +128863,644.3150000024588,-0.055964472780473756 +128864,644.3200000024589,-0.05596438130695769 +128865,644.325000002459,-0.05596428985183839 +128866,644.3300000024591,-0.055964198415111424 +128867,644.3350000024592,-0.0559641069967724 +128868,644.3400000024593,-0.055964015596816935 +128869,644.3450000024594,-0.05596392421524061 +128870,644.3500000024595,-0.055963832852039035 +128871,644.3550000024596,-0.0559637415072078 +128872,644.3600000024597,-0.05596365018074252 +128873,644.3650000024599,-0.0559635588726388 +128874,644.37000000246,-0.05596346758289224 +128875,644.3750000024601,-0.05596337631149844 +128876,644.3800000024602,-0.055963285058453015 +128877,644.3850000024603,-0.055963193823751554 +128878,644.3900000024604,-0.05596310260738969 +128879,644.3950000024605,-0.05596301140936302 +128880,644.4000000024606,-0.055962920229667146 +128881,644.4050000024607,-0.05596282906829769 +128882,644.4100000024608,-0.05596273792525025 +128883,644.4150000024609,-0.055962646800520446 +128884,644.420000002461,-0.05596255569410388 +128885,644.4250000024612,-0.05596246460599619 +128886,644.4300000024613,-0.055962373536192975 +128887,644.4350000024614,-0.05596228248468984 +128888,644.4400000024615,-0.0559621914514824 +128889,644.4450000024616,-0.05596210043656629 +128890,644.4500000024617,-0.05596200943993711 +128891,644.4550000024618,-0.05596191846159049 +128892,644.4600000024619,-0.05596182750152204 +128893,644.465000002462,-0.055961736559727374 +128894,644.4700000024621,-0.05596164563620212 +128895,644.4750000024623,-0.0559615547309419 +128896,644.4800000024624,-0.05596146384394234 +128897,644.4850000024625,-0.055961372975199056 +128898,644.4900000024626,-0.05596128212470767 +128899,644.4950000024627,-0.0559611912924638 +128900,644.5000000024628,-0.05596110047846308 +128901,644.5050000024629,-0.05596100968270113 +128902,644.510000002463,-0.05596091890517359 +128903,644.5150000024631,-0.055960828145876065 +128904,644.5200000024632,-0.05596073740480421 +128905,644.5250000024633,-0.055960646681953635 +128906,644.5300000024635,-0.05596055597731997 +128907,644.5350000024636,-0.055960465290898855 +128908,644.5400000024637,-0.0559603746226859 +128909,644.5450000024638,-0.055960283972676765 +128910,644.5500000024639,-0.05596019334086707 +128911,644.555000002464,-0.055960102727252437 +128912,644.5600000024641,-0.05596001213182851 +128913,644.5650000024642,-0.055959921554590925 +128914,644.5700000024643,-0.055959830995535316 +128915,644.5750000024644,-0.05595974045465732 +128916,644.5800000024645,-0.05595964993195257 +128917,644.5850000024647,-0.055959559427416705 +128918,644.5900000024648,-0.05595946894104537 +128919,644.5950000024649,-0.055959378472834206 +128920,644.600000002465,-0.05595928802277885 +128921,644.6050000024651,-0.055959197590874935 +128922,644.6100000024652,-0.05595910717711811 +128923,644.6150000024653,-0.055959016781504035 +128924,644.6200000024654,-0.05595892640402832 +128925,644.6250000024655,-0.05595883604468662 +128926,644.6300000024656,-0.055958745703474595 +128927,644.6350000024657,-0.055958655380387884 +128928,644.6400000024659,-0.05595856507542213 +128929,644.645000002466,-0.05595847478857297 +128930,644.6500000024661,-0.05595838451983608 +128931,644.6550000024662,-0.05595829426920707 +128932,644.6600000024663,-0.055958204036681634 +128933,644.6650000024664,-0.0559581138222554 +128934,644.6700000024665,-0.05595802362592402 +128935,644.6750000024666,-0.055957933447683135 +128936,644.6800000024667,-0.055957843287528404 +128937,644.6850000024668,-0.0559577531454555 +128938,644.690000002467,-0.055957663021460054 +128939,644.695000002467,-0.055957572915537726 +128940,644.7000000024672,-0.055957482827684174 +128941,644.7050000024673,-0.05595739275789507 +128942,644.7100000024674,-0.05595730270616605 +128943,644.7150000024675,-0.055957212672492776 +128944,644.7200000024676,-0.05595712265687091 +128945,644.7250000024677,-0.05595703265929612 +128946,644.7300000024678,-0.05595694267976405 +128947,644.7350000024679,-0.05595685271827038 +128948,644.740000002468,-0.05595676277481077 +128949,644.7450000024681,-0.05595667284938086 +128950,644.7500000024683,-0.05595658294197635 +128951,644.7550000024684,-0.05595649305259288 +128952,644.7600000024685,-0.05595640318122611 +128953,644.7650000024686,-0.05595631332787171 +128954,644.7700000024687,-0.05595622349252537 +128955,644.7750000024688,-0.05595613367518273 +128956,644.7800000024689,-0.05595604387583947 +128957,644.785000002469,-0.05595595409449125 +128958,644.7900000024691,-0.05595586433113375 +128959,644.7950000024692,-0.05595577458576264 +128960,644.8000000024693,-0.055955684858373586 +128961,644.8050000024695,-0.05595559514896228 +128962,644.8100000024696,-0.055955505457524354 +128963,644.8150000024697,-0.055955415784055516 +128964,644.8200000024698,-0.05595532612855143 +128965,644.8250000024699,-0.05595523649100778 +128966,644.83000000247,-0.055955146871420225 +128967,644.8350000024701,-0.05595505726978446 +128968,644.8400000024702,-0.05595496768609615 +128969,644.8450000024703,-0.055954878120350986 +128970,644.8500000024704,-0.05595478857254463 +128971,644.8550000024705,-0.05595469904267277 +128972,644.8600000024707,-0.05595460953073109 +128973,644.8650000024708,-0.05595452003671527 +128974,644.8700000024709,-0.05595443056062098 +128975,644.875000002471,-0.05595434110244392 +128976,644.8800000024711,-0.05595425166217977 +128977,644.8850000024712,-0.05595416223982422 +128978,644.8900000024713,-0.055954072835372945 +128979,644.8950000024714,-0.05595398344882163 +128980,644.9000000024715,-0.05595389408016597 +128981,644.9050000024716,-0.05595380472940164 +128982,644.9100000024717,-0.05595371539652435 +128983,644.9150000024719,-0.05595362608152976 +128984,644.920000002472,-0.05595353678441359 +128985,644.9250000024721,-0.05595344750517151 +128986,644.9300000024722,-0.05595335824379922 +128987,644.9350000024723,-0.05595326900029241 +128988,644.9400000024724,-0.05595317977464677 +128989,644.9450000024725,-0.05595309056685801 +128990,644.9500000024726,-0.05595300137692181 +128991,644.9550000024727,-0.055952912204833866 +128992,644.9600000024728,-0.05595282305058987 +128993,644.965000002473,-0.05595273391418553 +128994,644.9700000024731,-0.05595264479561655 +128995,644.9750000024732,-0.055952555694878614 +128996,644.9800000024733,-0.05595246661196743 +128997,644.9850000024734,-0.05595237754687868 +128998,644.9900000024735,-0.05595228849960809 +128999,644.9950000024736,-0.05595219947015134 +129000,645.0000000024737,-0.05595211045850415 +129001,645.0050000024738,-0.05595202146466221 +129002,645.0100000024739,-0.05595193248862122 +129003,645.015000002474,-0.0559518435303769 +129004,645.0200000024741,-0.05595175458992496 +129005,645.0250000024743,-0.055951665667261084 +129006,645.0300000024744,-0.055951576762380995 +129007,645.0350000024745,-0.05595148787528039 +129008,645.0400000024746,-0.055951399005954985 +129009,645.0450000024747,-0.05595131015440049 +129010,645.0500000024748,-0.0559512213206126 +129011,645.0550000024749,-0.05595113250458705 +129012,645.060000002475,-0.055951043706319536 +129013,645.0650000024751,-0.05595095492580579 +129014,645.0700000024752,-0.0559508661630415 +129015,645.0750000024753,-0.05595077741802239 +129016,645.0800000024755,-0.055950688690744176 +129017,645.0850000024756,-0.05595059998120256 +129018,645.0900000024757,-0.055950511289393275 +129019,645.0950000024758,-0.05595042261531204 +129020,645.1000000024759,-0.05595033395895456 +129021,645.105000002476,-0.055950245320316554 +129022,645.1100000024761,-0.05595015669939376 +129023,645.1150000024762,-0.05595006809618188 +129024,645.1200000024763,-0.055949979510676644 +129025,645.1250000024764,-0.05594989094287377 +129026,645.1300000024765,-0.05594980239276896 +129027,645.1350000024767,-0.055949713860357964 +129028,645.1400000024768,-0.055949625345636494 +129029,645.1450000024769,-0.05594953684860029 +129030,645.150000002477,-0.055949448369245064 +129031,645.1550000024771,-0.05594935990756655 +129032,645.1600000024772,-0.05594927146356045 +129033,645.1650000024773,-0.05594918303722252 +129034,645.1700000024774,-0.055949094628548496 +129035,645.1750000024775,-0.05594900623753408 +129036,645.1800000024776,-0.055948917864175 +129037,645.1850000024778,-0.05594882950846702 +129038,645.1900000024779,-0.05594874117040584 +129039,645.195000002478,-0.0559486528499872 +129040,645.2000000024781,-0.05594856454720684 +129041,645.2050000024782,-0.055948476262060495 +129042,645.2100000024783,-0.055948387994543894 +129043,645.2150000024784,-0.05594829974465277 +129044,645.2200000024785,-0.055948211512382856 +129045,645.2250000024786,-0.05594812329772989 +129046,645.2300000024787,-0.05594803510068962 +129047,645.2350000024788,-0.055947946921257784 +129048,645.240000002479,-0.05594785875943012 +129049,645.2450000024791,-0.05594777061520236 +129050,645.2500000024792,-0.05594768248857025 +129051,645.2550000024793,-0.055947594379529536 +129052,645.2600000024794,-0.055947506288075946 +129053,645.2650000024795,-0.05594741821420523 +129054,645.2700000024796,-0.055947330157913144 +129055,645.2750000024797,-0.05594724211919541 +129056,645.2800000024798,-0.05594715409804779 +129057,645.2850000024799,-0.05594706609446602 +129058,645.29000000248,-0.055946978108445865 +129059,645.2950000024802,-0.05594689013998305 +129060,645.3000000024803,-0.05594680218907334 +129061,645.3050000024804,-0.05594671425571248 +129062,645.3100000024805,-0.055946626339896215 +129063,645.3150000024806,-0.05594653844162029 +129064,645.3200000024807,-0.05594645056088047 +129065,645.3250000024808,-0.0559463626976725 +129066,645.3300000024809,-0.05594627485199213 +129067,645.335000002481,-0.05594618702383512 +129068,645.3400000024811,-0.05594609921319723 +129069,645.3450000024812,-0.0559460114200742 +129070,645.3500000024814,-0.055945923644461784 +129071,645.3550000024815,-0.055945835886355766 +129072,645.3600000024816,-0.05594574814575188 +129073,645.3650000024817,-0.055945660422645885 +129074,645.3700000024818,-0.05594557271703354 +129075,645.3750000024819,-0.05594548502891063 +129076,645.380000002482,-0.05594539735827287 +129077,645.3850000024821,-0.05594530970511606 +129078,645.3900000024822,-0.055945222069435946 +129079,645.3950000024823,-0.055945134451228284 +129080,645.4000000024824,-0.055945046850488865 +129081,645.4050000024826,-0.05594495926721342 +129082,645.4100000024827,-0.055944871701397746 +129083,645.4150000024828,-0.05594478415303757 +129084,645.4200000024829,-0.055944696622128705 +129085,645.425000002483,-0.05594460910866688 +129086,645.4300000024831,-0.055944521612647874 +129087,645.4350000024832,-0.05594443413406747 +129088,645.4400000024833,-0.05594434667292141 +129089,645.4450000024834,-0.0559442592292055 +129090,645.4500000024835,-0.05594417180291549 +129091,645.4550000024836,-0.055944084394047154 +129092,645.4600000024838,-0.055943997002596266 +129093,645.4650000024839,-0.05594390962855859 +129094,645.470000002484,-0.055943822271929906 +129095,645.4750000024841,-0.055943734932706 +129096,645.4800000024842,-0.055943647610882635 +129097,645.4850000024843,-0.05594356030645559 +129098,645.4900000024844,-0.05594347301942065 +129099,645.4950000024845,-0.05594338574977358 +129100,645.5000000024846,-0.055943298497510174 +129101,645.5050000024847,-0.05594321126262619 +129102,645.5100000024848,-0.05594312404511743 +129103,645.515000002485,-0.05594303684497967 +129104,645.5200000024851,-0.05594294966220869 +129105,645.5250000024852,-0.055942862496800264 +129106,645.5300000024853,-0.055942775348750175 +129107,645.5350000024854,-0.05594268821805423 +129108,645.5400000024855,-0.05594260110470819 +129109,645.5450000024856,-0.055942514008707846 +129110,645.5500000024857,-0.055942426930049 +129111,645.5550000024858,-0.05594233986872742 +129112,645.5600000024859,-0.055942252824738886 +129113,645.565000002486,-0.055942165798079216 +129114,645.5700000024862,-0.05594207878874419 +129115,645.5750000024863,-0.05594199179672957 +129116,645.5800000024864,-0.05594190482203118 +129117,645.5850000024865,-0.05594181786464479 +129118,645.5900000024866,-0.05594173092456622 +129119,645.5950000024867,-0.05594164400179123 +129120,645.6000000024868,-0.05594155709631563 +129121,645.6050000024869,-0.05594147020813523 +129122,645.610000002487,-0.0559413833372458 +129123,645.6150000024871,-0.05594129648364314 +129124,645.6200000024872,-0.05594120964732306 +129125,645.6250000024874,-0.05594112282828135 +129126,645.6300000024875,-0.05594103602651381 +129127,645.6350000024876,-0.055940949242016244 +129128,645.6400000024877,-0.05594086247478444 +129129,645.6450000024878,-0.0559407757248142 +129130,645.6500000024879,-0.05594068899210134 +129131,645.655000002488,-0.05594060227664166 +129132,645.6600000024881,-0.05594051557843093 +129133,645.6650000024882,-0.055940428897465 +129134,645.6700000024883,-0.05594034223373964 +129135,645.6750000024884,-0.05594025558725068 +129136,645.6800000024886,-0.055940168957993905 +129137,645.6850000024887,-0.05594008234596514 +129138,645.6900000024888,-0.05593999575116017 +129139,645.6950000024889,-0.05593990917357482 +129140,645.700000002489,-0.0559398226132049 +129141,645.7050000024891,-0.05593973607004621 +129142,645.7100000024892,-0.05593964954409456 +129143,645.7150000024893,-0.055939563035345787 +129144,645.7200000024894,-0.05593947654379568 +129145,645.7250000024895,-0.05593939006944005 +129146,645.7300000024896,-0.05593930361227471 +129147,645.7350000024898,-0.05593921717229549 +129148,645.7400000024899,-0.05593913074949819 +129149,645.74500000249,-0.055939044343878634 +129150,645.7500000024901,-0.055938957955432626 +129151,645.7550000024902,-0.055938871584156 +129152,645.7600000024903,-0.05593878523004456 +129153,645.7650000024904,-0.05593869889309413 +129154,645.7700000024905,-0.05593861257330053 +129155,645.7750000024906,-0.05593852627065958 +129156,645.7800000024907,-0.05593843998516711 +129157,645.7850000024908,-0.05593835371681893 +129158,645.790000002491,-0.05593826746561086 +129159,645.7950000024911,-0.055938181231538736 +129160,645.8000000024912,-0.05593809501459838 +129161,645.8050000024913,-0.055938008814785604 +129162,645.8100000024914,-0.055937922632096244 +129163,645.8150000024915,-0.05593783646652612 +129164,645.8200000024916,-0.05593775031807107 +129165,645.8250000024917,-0.05593766418672691 +129166,645.8300000024918,-0.055937578072489474 +129167,645.8350000024919,-0.05593749197535459 +129168,645.840000002492,-0.05593740589531808 +129169,645.8450000024922,-0.05593731983237579 +129170,645.8500000024923,-0.05593723378652355 +129171,645.8550000024924,-0.055937147757757176 +129172,645.8600000024925,-0.05593706174607252 +129173,645.8650000024926,-0.0559369757514654 +129174,645.8700000024927,-0.05593688977393165 +129175,645.8750000024928,-0.05593680381346712 +129176,645.8800000024929,-0.05593671787006764 +129177,645.885000002493,-0.055936631943729054 +129178,645.8900000024931,-0.05593654603444719 +129179,645.8950000024932,-0.055936460142217884 +129180,645.9000000024934,-0.05593637426703698 +129181,645.9050000024935,-0.05593628840890031 +129182,645.9100000024936,-0.05593620256780372 +129183,645.9150000024937,-0.05593611674374306 +129184,645.9200000024938,-0.05593603093671416 +129185,645.9250000024939,-0.05593594514671287 +129186,645.930000002494,-0.05593585937373503 +129187,645.9350000024941,-0.05593577361777648 +129188,645.9400000024942,-0.05593568787883307 +129189,645.9450000024943,-0.055935602156900646 +129190,645.9500000024944,-0.055935516451975045 +129191,645.9550000024946,-0.05593543076405214 +129192,645.9600000024947,-0.05593534509312777 +129193,645.9650000024948,-0.05593525943919775 +129194,645.9700000024949,-0.055935173802257966 +129195,645.975000002495,-0.055935088182304256 +129196,645.9800000024951,-0.055935002579332475 +129197,645.9850000024952,-0.055934916993338475 +129198,645.9900000024953,-0.055934831424318106 +129199,645.9950000024954,-0.05593474587226722 +129200,646.0000000024955,-0.055934660337181655 +129201,646.0050000024956,-0.05593457481905729 +129202,646.0100000024958,-0.05593448931788997 +129203,646.0150000024959,-0.05593440383367556 +129204,646.020000002496,-0.05593431836640991 +129205,646.0250000024961,-0.05593423291608887 +129206,646.0300000024962,-0.055934147482708314 +129207,646.0350000024963,-0.05593406206626409 +129208,646.0400000024964,-0.055933976666752074 +129209,646.0450000024965,-0.05593389128416811 +129210,646.0500000024966,-0.05593380591850806 +129211,646.0550000024967,-0.05593372056976779 +129212,646.0600000024968,-0.05593363523794317 +129213,646.065000002497,-0.05593354992303005 +129214,646.0700000024971,-0.055933464625024285 +129215,646.0750000024972,-0.05593337934392177 +129216,646.0800000024973,-0.055933294079718365 +129217,646.0850000024974,-0.05593320883240992 +129218,646.0900000024975,-0.05593312360199231 +129219,646.0950000024976,-0.0559330383884614 +129220,646.1000000024977,-0.05593295319181307 +129221,646.1050000024978,-0.055932868012043176 +129222,646.1100000024979,-0.0559327828491476 +129223,646.115000002498,-0.0559326977031222 +129224,646.1200000024982,-0.055932612573962856 +129225,646.1250000024983,-0.055932527461665445 +129226,646.1300000024984,-0.055932442366225826 +129227,646.1350000024985,-0.05593235728763989 +129228,646.1400000024986,-0.0559322722259035 +129229,646.1450000024987,-0.05593218718101254 +129230,646.1500000024988,-0.05593210215296288 +129231,646.1550000024989,-0.05593201714175041 +129232,646.160000002499,-0.05593193214737099 +129233,646.1650000024991,-0.055931847169820505 +129234,646.1700000024993,-0.05593176220909483 +129235,646.1750000024994,-0.05593167726518985 +129236,646.1800000024995,-0.05593159233810144 +129237,646.1850000024996,-0.055931507427825496 +129238,646.1900000024997,-0.05593142253435788 +129239,646.1950000024998,-0.05593133765769449 +129240,646.2000000024999,-0.05593125279783119 +129241,646.2050000025,-0.0559311679547639 +129242,646.2100000025001,-0.05593108312848847 +129243,646.2150000025002,-0.05593099831900081 +129244,646.2200000025003,-0.05593091352629679 +129245,646.2250000025005,-0.055930828750372315 +129246,646.2300000025006,-0.055930743991223254 +129247,646.2350000025007,-0.0559306592488455 +129248,646.2400000025008,-0.05593057452323495 +129249,646.2450000025009,-0.0559304898143875 +129250,646.250000002501,-0.05593040512229902 +129251,646.2550000025011,-0.05593032044696543 +129252,646.2600000025012,-0.05593023578838259 +129253,646.2650000025013,-0.055930151146546425 +129254,646.2700000025014,-0.055930066521452805 +129255,646.2750000025015,-0.055929981913097636 +129256,646.2800000025017,-0.05592989732147682 +129257,646.2850000025018,-0.05592981274658624 +129258,646.2900000025019,-0.05592972818842179 +129259,646.295000002502,-0.05592964364697939 +129260,646.3000000025021,-0.05592955912225492 +129261,646.3050000025022,-0.05592947461424427 +129262,646.3100000025023,-0.05592939012294336 +129263,646.3150000025024,-0.05592930564834809 +129264,646.3200000025025,-0.055929221190454355 +129265,646.3250000025026,-0.05592913674925805 +129266,646.3300000025027,-0.05592905232475509 +129267,646.3350000025029,-0.05592896791694137 +129268,646.340000002503,-0.05592888352581281 +129269,646.3450000025031,-0.05592879915136528 +129270,646.3500000025032,-0.05592871479359472 +129271,646.3550000025033,-0.05592863045249703 +129272,646.3600000025034,-0.05592854612806811 +129273,646.3650000025035,-0.055928461820303865 +129274,646.3700000025036,-0.05592837752920022 +129275,646.3750000025037,-0.05592829325475307 +129276,646.3800000025038,-0.055928208996958335 +129277,646.385000002504,-0.05592812475581192 +129278,646.390000002504,-0.05592804053130974 +129279,646.3950000025042,-0.055927956323447686 +129280,646.4000000025043,-0.05592787213222171 +129281,646.4050000025044,-0.0559277879576277 +129282,646.4100000025045,-0.055927703799661575 +129283,646.4150000025046,-0.05592761965831926 +129284,646.4200000025047,-0.05592753553359665 +129285,646.4250000025048,-0.055927451425489695 +129286,646.4300000025049,-0.05592736733399428 +129287,646.435000002505,-0.05592728325910635 +129288,646.4400000025051,-0.055927199200821794 +129289,646.4450000025053,-0.05592711515913655 +129290,646.4500000025054,-0.05592703113404655 +129291,646.4550000025055,-0.05592694712554769 +129292,646.4600000025056,-0.05592686313363591 +129293,646.4650000025057,-0.05592677915830711 +129294,646.4700000025058,-0.055926695199557244 +129295,646.4750000025059,-0.05592661125738222 +129296,646.480000002506,-0.05592652733177798 +129297,646.4850000025061,-0.05592644342274042 +129298,646.4900000025062,-0.055926359530265486 +129299,646.4950000025063,-0.0559262756543491 +129300,646.5000000025065,-0.055926191794987194 +129301,646.5050000025066,-0.0559261079521757 +129302,646.5100000025067,-0.05592602412591053 +129303,646.5150000025068,-0.05592594031618764 +129304,646.5200000025069,-0.055925856523002936 +129305,646.525000002507,-0.05592577274635237 +129306,646.5300000025071,-0.05592568898623185 +129307,646.5350000025072,-0.05592560524263733 +129308,646.5400000025073,-0.05592552151556474 +129309,646.5450000025074,-0.055925437805010005 +129310,646.5500000025075,-0.05592535411096907 +129311,646.5550000025077,-0.055925270433437875 +129312,646.5600000025078,-0.055925186772412344 +129313,646.5650000025079,-0.05592510312788842 +129314,646.570000002508,-0.05592501949986205 +129315,646.5750000025081,-0.05592493588832915 +129316,646.5800000025082,-0.055924852293285685 +129317,646.5850000025083,-0.055924768714727575 +129318,646.5900000025084,-0.05592468515265078 +129319,646.5950000025085,-0.05592460160705123 +129320,646.6000000025086,-0.055924518077924874 +129321,646.6050000025087,-0.05592443456526765 +129322,646.6100000025089,-0.0559243510690755 +129323,646.615000002509,-0.05592426758934437 +129324,646.6200000025091,-0.055924184126070205 +129325,646.6250000025092,-0.05592410067924895 +129326,646.6300000025093,-0.055924017248876565 +129327,646.6350000025094,-0.05592393383494899 +129328,646.6400000025095,-0.05592385043746217 +129329,646.6450000025096,-0.05592376705641205 +129330,646.6500000025097,-0.055923683691794596 +129331,646.6550000025098,-0.055923600343605745 +129332,646.66000000251,-0.05592351701184144 +129333,646.66500000251,-0.05592343369649765 +129334,646.6700000025102,-0.055923350397570334 +129335,646.6750000025103,-0.05592326711505542 +129336,646.6800000025104,-0.0559231838489489 +129337,646.6850000025105,-0.05592310059924668 +129338,646.6900000025106,-0.05592301736594476 +129339,646.6950000025107,-0.055922934149039066 +129340,646.7000000025108,-0.05592285094852558 +129341,646.7050000025109,-0.055922767764400236 +129342,646.710000002511,-0.055922684596659014 +129343,646.7150000025111,-0.055922601445297856 +129344,646.7200000025113,-0.05592251831031274 +129345,646.7250000025114,-0.05592243519169961 +129346,646.7300000025115,-0.055922352089454425 +129347,646.7350000025116,-0.055922269003573166 +129348,646.7400000025117,-0.05592218593405179 +129349,646.7450000025118,-0.05592210288088625 +129350,646.7500000025119,-0.05592201984407251 +129351,646.755000002512,-0.05592193682360654 +129352,646.7600000025121,-0.05592185381948433 +129353,646.7650000025122,-0.05592177083170181 +129354,646.7700000025123,-0.05592168786025496 +129355,646.7750000025125,-0.05592160490513976 +129356,646.7800000025126,-0.055921521966352174 +129357,646.7850000025127,-0.05592143904388816 +129358,646.7900000025128,-0.055921356137743704 +129359,646.7950000025129,-0.05592127324791476 +129360,646.800000002513,-0.055921190374397314 +129361,646.8050000025131,-0.055921107517187325 +129362,646.8100000025132,-0.05592102467628078 +129363,646.8150000025133,-0.05592094185167365 +129364,646.8200000025134,-0.0559208590433619 +129365,646.8250000025135,-0.05592077625134152 +129366,646.8300000025137,-0.05592069347560848 +129367,646.8350000025138,-0.055920610716158746 +129368,646.8400000025139,-0.05592052797298831 +129369,646.845000002514,-0.05592044524609314 +129370,646.8500000025141,-0.055920362535469226 +129371,646.8550000025142,-0.05592027984111253 +129372,646.8600000025143,-0.055920197163019054 +129373,646.8650000025144,-0.055920114501184774 +129374,646.8700000025145,-0.05592003185560566 +129375,646.8750000025146,-0.05591994922627771 +129376,646.8800000025147,-0.05591986661319689 +129377,646.8850000025149,-0.055919784016359206 +129378,646.890000002515,-0.05591970143576062 +129379,646.8950000025151,-0.05591961887139713 +129380,646.9000000025152,-0.055919536323264726 +129381,646.9050000025153,-0.05591945379135939 +129382,646.9100000025154,-0.05591937127567711 +129383,646.9150000025155,-0.055919288776213875 +129384,646.9200000025156,-0.05591920629296567 +129385,646.9250000025157,-0.05591912382592848 +129386,646.9300000025158,-0.055919041375098316 +129387,646.935000002516,-0.05591895894047116 +129388,646.9400000025161,-0.05591887652204299 +129389,646.9450000025162,-0.055918794119809816 +129390,646.9500000025163,-0.055918711733767626 +129391,646.9550000025164,-0.055918629363912405 +129392,646.9600000025165,-0.05591854701024016 +129393,646.9650000025166,-0.05591846467274688 +129394,646.9700000025167,-0.055918382351428576 +129395,646.9750000025168,-0.05591830004628123 +129396,646.9800000025169,-0.05591821775730084 +129397,646.985000002517,-0.05591813548448341 +129398,646.9900000025171,-0.05591805322782494 +129399,646.9950000025173,-0.05591797098732142 +129400,647.0000000025174,-0.055917888762968875 +129401,647.0050000025175,-0.05591780655476328 +129402,647.0100000025176,-0.05591772436270064 +129403,647.0150000025177,-0.05591764218677697 +129404,647.0200000025178,-0.05591756002698827 +129405,647.0250000025179,-0.05591747788333055 +129406,647.030000002518,-0.055917395755799806 +129407,647.0350000025181,-0.05591731364439204 +129408,647.0400000025182,-0.05591723154910327 +129409,647.0450000025183,-0.0559171494699295 +129410,647.0500000025185,-0.055917067406866736 +129411,647.0550000025186,-0.055916985359910985 +129412,647.0600000025187,-0.05591690332905826 +129413,647.0650000025188,-0.055916821314304574 +129414,647.0700000025189,-0.055916739315645926 +129415,647.075000002519,-0.05591665733307834 +129416,647.0800000025191,-0.05591657536659781 +129417,647.0850000025192,-0.05591649341620037 +129418,647.0900000025193,-0.05591641148188203 +129419,647.0950000025194,-0.055916329563638796 +129420,647.1000000025196,-0.05591624766146668 +129421,647.1050000025197,-0.05591616577536172 +129422,647.1100000025198,-0.05591608390531991 +129423,647.1150000025199,-0.055916002051337274 +129424,647.12000000252,-0.05591592021340983 +129425,647.1250000025201,-0.055915838391533614 +129426,647.1300000025202,-0.055915756585704614 +129427,647.1350000025203,-0.05591567479591888 +129428,647.1400000025204,-0.055915593022172416 +129429,647.1450000025205,-0.055915511264461246 +129430,647.1500000025206,-0.0559154295227814 +129431,647.1550000025208,-0.05591534779712889 +129432,647.1600000025209,-0.05591526608749975 +129433,647.165000002521,-0.05591518439388999 +129434,647.1700000025211,-0.055915102716295635 +129435,647.1750000025212,-0.05591502105471272 +129436,647.1800000025213,-0.05591493940913729 +129437,647.1850000025214,-0.055914857779565355 +129438,647.1900000025215,-0.055914776165992934 +129439,647.1950000025216,-0.055914694568416065 +129440,647.2000000025217,-0.05591461298683078 +129441,647.2050000025218,-0.055914531421233093 +129442,647.210000002522,-0.05591444987161906 +129443,647.2150000025221,-0.0559143683379847 +129444,647.2200000025222,-0.055914286820326044 +129445,647.2250000025223,-0.05591420531863914 +129446,647.2300000025224,-0.05591412383292 +129447,647.2350000025225,-0.05591404236316467 +129448,647.2400000025226,-0.05591396090936918 +129449,647.2450000025227,-0.05591387947152957 +129450,647.2500000025228,-0.05591379804964188 +129451,647.2550000025229,-0.05591371664370215 +129452,647.260000002523,-0.055913635253706406 +129453,647.2650000025232,-0.05591355387965069 +129454,647.2700000025233,-0.055913472521531046 +129455,647.2750000025234,-0.05591339117934352 +129456,647.2800000025235,-0.055913309853084146 +129457,647.2850000025236,-0.05591322854274895 +129458,647.2900000025237,-0.055913147248334016 +129459,647.2950000025238,-0.05591306596983534 +129460,647.3000000025239,-0.055912984707248994 +129461,647.305000002524,-0.05591290346057102 +129462,647.3100000025241,-0.05591282222979746 +129463,647.3150000025242,-0.05591274101492435 +129464,647.3200000025244,-0.055912659815947764 +129465,647.3250000025245,-0.05591257863286373 +129466,647.3300000025246,-0.05591249746566828 +129467,647.3350000025247,-0.055912416314357484 +129468,647.3400000025248,-0.05591233517892741 +129469,647.3450000025249,-0.05591225405937408 +129470,647.350000002525,-0.05591217295569355 +129471,647.3550000025251,-0.05591209186788187 +129472,647.3600000025252,-0.05591201079593511 +129473,647.3650000025253,-0.055911929739849285 +129474,647.3700000025254,-0.055911848699620494 +129475,647.3750000025256,-0.055911767675244764 +129476,647.3800000025257,-0.055911686666718155 +129477,647.3850000025258,-0.05591160567403674 +129478,647.3900000025259,-0.05591152469719654 +129479,647.395000002526,-0.055911443736193646 +129480,647.4000000025261,-0.055911362791024106 +129481,647.4050000025262,-0.055911281861683974 +129482,647.4100000025263,-0.05591120094816931 +129483,647.4150000025264,-0.05591112005047619 +129484,647.4200000025265,-0.05591103916860065 +129485,647.4250000025266,-0.055910958302538775 +129486,647.4300000025268,-0.055910877452286616 +129487,647.4350000025269,-0.055910796617840236 +129488,647.440000002527,-0.0559107157991957 +129489,647.4450000025271,-0.05591063499634907 +129490,647.4500000025272,-0.05591055420929642 +129491,647.4550000025273,-0.055910473438033806 +129492,647.4600000025274,-0.055910392682557306 +129493,647.4650000025275,-0.055910311942862966 +129494,647.4700000025276,-0.05591023121894688 +129495,647.4750000025277,-0.0559101505108051 +129496,647.4800000025278,-0.055910069818433696 +129497,647.485000002528,-0.055909989141828764 +129498,647.4900000025281,-0.055909908480986335 +129499,647.4950000025282,-0.0559098278359025 +129500,647.5000000025283,-0.055909747206573344 +129501,647.5050000025284,-0.05590966659299493 +129502,647.5100000025285,-0.05590958599516331 +129503,647.5150000025286,-0.0559095054130746 +129504,647.5200000025287,-0.05590942484672485 +129505,647.5250000025288,-0.055909344296110136 +129506,647.5300000025289,-0.05590926376122654 +129507,647.535000002529,-0.05590918324207014 +129508,647.5400000025292,-0.05590910273863702 +129509,647.5450000025293,-0.05590902225092324 +129510,647.5500000025294,-0.0559089417789249 +129511,647.5550000025295,-0.05590886132263806 +129512,647.5600000025296,-0.05590878088205882 +129513,647.5650000025297,-0.05590870045718326 +129514,647.5700000025298,-0.05590862004800745 +129515,647.5750000025299,-0.055908539654527474 +129516,647.58000000253,-0.055908459276739424 +129517,647.5850000025301,-0.05590837891463939 +129518,647.5900000025302,-0.05590829856822344 +129519,647.5950000025304,-0.05590821823748768 +129520,647.6000000025305,-0.05590813792242817 +129521,647.6050000025306,-0.05590805762304102 +129522,647.6100000025307,-0.05590797733932232 +129523,647.6150000025308,-0.05590789707126814 +129524,647.6200000025309,-0.05590781681887458 +129525,647.625000002531,-0.05590773658213773 +129526,647.6300000025311,-0.05590765636105368 +129527,647.6350000025312,-0.05590757615561853 +129528,647.6400000025313,-0.05590749596582836 +129529,647.6450000025314,-0.05590741579167927 +129530,647.6500000025316,-0.05590733563316737 +129531,647.6550000025317,-0.05590725549028872 +129532,647.6600000025318,-0.05590717536303943 +129533,647.6650000025319,-0.0559070952514156 +129534,647.670000002532,-0.05590701515541332 +129535,647.6750000025321,-0.055906935075028696 +129536,647.6800000025322,-0.05590685501025783 +129537,647.6850000025323,-0.0559067749610968 +129538,647.6900000025324,-0.055906694927541724 +129539,647.6950000025325,-0.055906614909588696 +129540,647.7000000025326,-0.055906534907233824 +129541,647.7050000025328,-0.0559064549204732 +129542,647.7100000025329,-0.055906374949302916 +129543,647.715000002533,-0.0559062949937191 +129544,647.7200000025331,-0.055906215053717845 +129545,647.7250000025332,-0.05590613512929525 +129546,647.7300000025333,-0.05590605522044743 +129547,647.7350000025334,-0.05590597532717047 +129548,647.7400000025335,-0.05590589544946049 +129549,647.7450000025336,-0.0559058155873136 +129550,647.7500000025337,-0.055905735740725916 +129551,647.7550000025338,-0.055905655909693534 +129552,647.760000002534,-0.05590557609421257 +129553,647.7650000025341,-0.05590549629427912 +129554,647.7700000025342,-0.05590541650988931 +129555,647.7750000025343,-0.05590533674103925 +129556,647.7800000025344,-0.05590525698772504 +129557,647.7850000025345,-0.05590517724994281 +129558,647.7900000025346,-0.05590509752768867 +129559,647.7950000025347,-0.05590501782095872 +129560,647.8000000025348,-0.05590493812974909 +129561,647.8050000025349,-0.055904858454055885 +129562,647.810000002535,-0.055904778793875225 +129563,647.8150000025352,-0.05590469914920324 +129564,647.8200000025353,-0.055904619520036024 +129565,647.8250000025354,-0.055904539906369705 +129566,647.8300000025355,-0.05590446030820041 +129567,647.8350000025356,-0.05590438072552426 +129568,647.8400000025357,-0.055904301158337374 +129569,647.8450000025358,-0.05590422160663586 +129570,647.8500000025359,-0.055904142070415844 +129571,647.855000002536,-0.05590406254967347 +129572,647.8600000025361,-0.05590398304440484 +129573,647.8650000025362,-0.055903903554606074 +129574,647.8700000025364,-0.055903824080273314 +129575,647.8750000025365,-0.055903744621402664 +129576,647.8800000025366,-0.05590366517799028 +129577,647.8850000025367,-0.055903585750032264 +129578,647.8900000025368,-0.055903506337524764 +129579,647.8950000025369,-0.055903426940463886 +129580,647.900000002537,-0.05590334755884578 +129581,647.9050000025371,-0.05590326819266656 +129582,647.9100000025372,-0.05590318884192236 +129583,647.9150000025373,-0.05590310950660931 +129584,647.9200000025374,-0.05590303018672356 +129585,647.9250000025376,-0.05590295088226121 +129586,647.9300000025377,-0.055902871593218426 +129587,647.9350000025378,-0.05590279231959131 +129588,647.9400000025379,-0.055902713061376036 +129589,647.945000002538,-0.055902633818568706 +129590,647.9500000025381,-0.05590255459116547 +129591,647.9550000025382,-0.05590247537916245 +129592,647.9600000025383,-0.055902396182555804 +129593,647.9650000025384,-0.055902317001341656 +129594,647.9700000025385,-0.055902237835516164 +129595,647.9750000025386,-0.05590215868507545 +129596,647.9800000025388,-0.05590207955001566 +129597,647.9850000025389,-0.05590200043033292 +129598,647.990000002539,-0.055901921326023396 +129599,647.9950000025391,-0.055901842237083214 +129600,648.0000000025392,-0.05590176316350853 +129601,648.0050000025393,-0.055901684105295474 +129602,648.0100000025394,-0.0559016050624402 +129603,648.0150000025395,-0.05590152603493886 +129604,648.0200000025396,-0.05590144702278758 +129605,648.0250000025397,-0.05590136802598252 +129606,648.0300000025399,-0.05590128904451982 +129607,648.03500000254,-0.05590121007839562 +129608,648.0400000025401,-0.05590113112760609 +129609,648.0450000025402,-0.055901052192147374 +129610,648.0500000025403,-0.05590097327201562 +129611,648.0550000025404,-0.05590089436720697 +129612,648.0600000025405,-0.05590081547771759 +129613,648.0650000025406,-0.055900736603543624 +129614,648.0700000025407,-0.05590065774468121 +129615,648.0750000025408,-0.05590057890112654 +129616,648.0800000025409,-0.05590050007287573 +129617,648.085000002541,-0.055900421259924955 +129618,648.0900000025412,-0.05590034246227036 +129619,648.0950000025413,-0.05590026367990811 +129620,648.1000000025414,-0.05590018491283436 +129621,648.1050000025415,-0.05590010616104527 +129622,648.1100000025416,-0.055900027424537 +129623,648.1150000025417,-0.055899948703305696 +129624,648.1200000025418,-0.055899869997347536 +129625,648.1250000025419,-0.055899791306658675 +129626,648.130000002542,-0.05589971263123526 +129627,648.1350000025421,-0.05589963397107347 +129628,648.1400000025423,-0.05589955532616946 +129629,648.1450000025424,-0.0558994766965194 +129630,648.1500000025425,-0.05589939808211943 +129631,648.1550000025426,-0.055899319482965754 +129632,648.1600000025427,-0.05589924089905451 +129633,648.1650000025428,-0.055899162330381856 +129634,648.1700000025429,-0.055899083776943984 +129635,648.175000002543,-0.055899005238737046 +129636,648.1800000025431,-0.055898926715757226 +129637,648.1850000025432,-0.05589884820800069 +129638,648.1900000025433,-0.055898769715463585 +129639,648.1950000025435,-0.05589869123814211 +129640,648.2000000025436,-0.05589861277603241 +129641,648.2050000025437,-0.05589853432913067 +129642,648.2100000025438,-0.055898455897433065 +129643,648.2150000025439,-0.05589837748093576 +129644,648.220000002544,-0.05589829907963494 +129645,648.2250000025441,-0.05589822069352677 +129646,648.2300000025442,-0.055898142322607425 +129647,648.2350000025443,-0.0558980639668731 +129648,648.2400000025444,-0.05589798562631994 +129649,648.2450000025445,-0.05589790730094414 +129650,648.2500000025447,-0.05589782899074189 +129651,648.2550000025448,-0.05589775069570933 +129652,648.2600000025449,-0.05589767241584268 +129653,648.265000002545,-0.05589759415113811 +129654,648.2700000025451,-0.05589751590159179 +129655,648.2750000025452,-0.05589743766719991 +129656,648.2800000025453,-0.05589735944795865 +129657,648.2850000025454,-0.055897281243864186 +129658,648.2900000025455,-0.05589720305491271 +129659,648.2950000025456,-0.0558971248811004 +129660,648.3000000025457,-0.05589704672242344 +129661,648.3050000025459,-0.05589696857887802 +129662,648.310000002546,-0.05589689045046033 +129663,648.3150000025461,-0.055896812337166556 +129664,648.3200000025462,-0.05589673423899288 +129665,648.3250000025463,-0.05589665615593549 +129666,648.3300000025464,-0.055896578087990575 +129667,648.3350000025465,-0.05589650003515433 +129668,648.3400000025466,-0.05589642199742295 +129669,648.3450000025467,-0.055896343974792616 +129670,648.3500000025468,-0.05589626596725952 +129671,648.355000002547,-0.05589618797481987 +129672,648.360000002547,-0.055896109997469835 +129673,648.3650000025472,-0.055896032035205635 +129674,648.3700000025473,-0.05589595408802345 +129675,648.3750000025474,-0.05589587615591947 +129676,648.3800000025475,-0.0558957982388899 +129677,648.3850000025476,-0.05589572033693094 +129678,648.3900000025477,-0.05589564245003878 +129679,648.3950000025478,-0.055895564578209614 +129680,648.4000000025479,-0.05589548672143965 +129681,648.405000002548,-0.055895408879725085 +129682,648.4100000025481,-0.05589533105306211 +129683,648.4150000025483,-0.05589525324144694 +129684,648.4200000025484,-0.05589517544487577 +129685,648.4250000025485,-0.055895097663344814 +129686,648.4300000025486,-0.05589501989685026 +129687,648.4350000025487,-0.0558949421453883 +129688,648.4400000025488,-0.05589486440895516 +129689,648.4450000025489,-0.05589478668754704 +129690,648.450000002549,-0.055894708981160154 +129691,648.4550000025491,-0.055894631289790685 +129692,648.4600000025492,-0.05589455361343485 +129693,648.4650000025493,-0.05589447595208887 +129694,648.4700000025495,-0.05589439830574895 +129695,648.4750000025496,-0.05589432067441129 +129696,648.4800000025497,-0.055894243058072106 +129697,648.4850000025498,-0.05589416545672761 +129698,648.4900000025499,-0.055894087870374 +129699,648.49500000255,-0.05589401029900749 +129700,648.5000000025501,-0.05589393274262432 +129701,648.5050000025502,-0.055893855201220664 +129702,648.5100000025503,-0.05589377767479276 +129703,648.5150000025504,-0.05589370016333682 +129704,648.5200000025505,-0.05589362266684906 +129705,648.5250000025507,-0.05589354518532568 +129706,648.5300000025508,-0.05589346771876292 +129707,648.5350000025509,-0.05589339026715699 +129708,648.540000002551,-0.055893312830504104 +129709,648.5450000025511,-0.05589323540880048 +129710,648.5500000025512,-0.055893158002042344 +129711,648.5550000025513,-0.05589308061022591 +129712,648.5600000025514,-0.0558930032333474 +129713,648.5650000025515,-0.055892925871403036 +129714,648.5700000025516,-0.05589284852438904 +129715,648.5750000025517,-0.05589277119230164 +129716,648.5800000025519,-0.05589269387513704 +129717,648.585000002552,-0.05589261657289148 +129718,648.5900000025521,-0.0558925392855612 +129719,648.5950000025522,-0.05589246201314241 +129720,648.6000000025523,-0.055892384755631325 +129721,648.6050000025524,-0.055892307513024195 +129722,648.6100000025525,-0.05589223028531723 +129723,648.6150000025526,-0.05589215307250666 +129724,648.6200000025527,-0.05589207587458873 +129725,648.6250000025528,-0.05589199869155965 +129726,648.630000002553,-0.05589192152341566 +129727,648.635000002553,-0.055891844370152995 +129728,648.6400000025532,-0.055891767231767885 +129729,648.6450000025533,-0.05589169010825656 +129730,648.6500000025534,-0.05589161299961525 +129731,648.6550000025535,-0.05589153590584019 +129732,648.6600000025536,-0.05589145882692762 +129733,648.6650000025537,-0.05589138176287376 +129734,648.6700000025538,-0.05589130471367487 +129735,648.6750000025539,-0.05589122767932717 +129736,648.680000002554,-0.05589115065982691 +129737,648.6850000025541,-0.05589107365517032 +129738,648.6900000025543,-0.05589099666535364 +129739,648.6950000025544,-0.05589091969037311 +129740,648.7000000025545,-0.05589084273022496 +129741,648.7050000025546,-0.05589076578490544 +129742,648.7100000025547,-0.0558906888544108 +129743,648.7150000025548,-0.05589061193873727 +129744,648.7200000025549,-0.05589053503788109 +129745,648.725000002555,-0.05589045815183852 +129746,648.7300000025551,-0.055890381280605785 +129747,648.7350000025552,-0.05589030442417914 +129748,648.7400000025553,-0.05589022758255483 +129749,648.7450000025555,-0.0558901507557291 +129750,648.7500000025556,-0.0558900739436982 +129751,648.7550000025557,-0.05588999714645837 +129752,648.7600000025558,-0.05588992036400586 +129753,648.7650000025559,-0.05588984359633693 +129754,648.770000002556,-0.05588976684344782 +129755,648.7750000025561,-0.05588969010533478 +129756,648.7800000025562,-0.055889613381994066 +129757,648.7850000025563,-0.05588953667342193 +129758,648.7900000025564,-0.05588945997961463 +129759,648.7950000025565,-0.0558893833005684 +129760,648.8000000025567,-0.0558893066362795 +129761,648.8050000025568,-0.0558892299867442 +129762,648.8100000025569,-0.055889153351958744 +129763,648.815000002557,-0.05588907673191939 +129764,648.8200000025571,-0.055889000126622394 +129765,648.8250000025572,-0.055888923536064 +129766,648.8300000025573,-0.05588884696024048 +129767,648.8350000025574,-0.0558887703991481 +129768,648.8400000025575,-0.055888693852783104 +129769,648.8450000025576,-0.05588861732114177 +129770,648.8500000025577,-0.05588854080422033 +129771,648.8550000025579,-0.055888464302015065 +129772,648.860000002558,-0.05588838781452223 +129773,648.8650000025581,-0.055888311341738106 +129774,648.8700000025582,-0.05588823488365894 +129775,648.8750000025583,-0.05588815844028099 +129776,648.8800000025584,-0.05588808201160053 +129777,648.8850000025585,-0.05588800559761383 +129778,648.8900000025586,-0.055887929198317136 +129779,648.8950000025587,-0.05588785281370674 +129780,648.9000000025588,-0.0558877764437789 +129781,648.905000002559,-0.05588770008852988 +129782,648.9100000025591,-0.05588762374795596 +129783,648.9150000025592,-0.05588754742205339 +129784,648.9200000025593,-0.05588747111081845 +129785,648.9250000025594,-0.05588739481424742 +129786,648.9300000025595,-0.05588731853233655 +129787,648.9350000025596,-0.05588724226508214 +129788,648.9400000025597,-0.05588716601248045 +129789,648.9450000025598,-0.055887089774527755 +129790,648.9500000025599,-0.05588701355122032 +129791,648.95500000256,-0.055886937342554434 +129792,648.9600000025602,-0.055886861148526354 +129793,648.9650000025603,-0.055886784969132366 +129794,648.9700000025604,-0.05588670880436875 +129795,648.9750000025605,-0.05588663265423179 +129796,648.9800000025606,-0.05588655651871775 +129797,648.9850000025607,-0.05588648039782292 +129798,648.9900000025608,-0.055886404291543575 +129799,648.9950000025609,-0.05588632819987599 +129800,649.000000002561,-0.05588625212281646 +129801,649.0050000025611,-0.05588617606036125 +129802,649.0100000025612,-0.05588610001250666 +129803,649.0150000025614,-0.05588602397924896 +129804,649.0200000025615,-0.05588594796058443 +129805,649.0250000025616,-0.055885871956509375 +129806,649.0300000025617,-0.055885795967020056 +129807,649.0350000025618,-0.05588571999211278 +129808,649.0400000025619,-0.05588564403178383 +129809,649.045000002562,-0.05588556808602948 +129810,649.0500000025621,-0.05588549215484602 +129811,649.0550000025622,-0.055885416238229756 +129812,649.0600000025623,-0.05588534033617695 +129813,649.0650000025624,-0.05588526444868391 +129814,649.0700000025626,-0.055885188575746925 +129815,649.0750000025627,-0.055885112717362274 +129816,649.0800000025628,-0.05588503687352628 +129817,649.0850000025629,-0.055884961044235196 +129818,649.090000002563,-0.05588488522948535 +129819,649.0950000025631,-0.05588480942927301 +129820,649.1000000025632,-0.055884733643594475 +129821,649.1050000025633,-0.05588465787244606 +129822,649.1100000025634,-0.05588458211582403 +129823,649.1150000025635,-0.055884506373724704 +129824,649.1200000025636,-0.05588443064614438 +129825,649.1250000025638,-0.055884354933079354 +129826,649.1300000025639,-0.05588427923452592 +129827,649.135000002564,-0.05588420355048038 +129828,649.1400000025641,-0.05588412788093902 +129829,649.1450000025642,-0.05588405222589816 +129830,649.1500000025643,-0.05588397658535409 +129831,649.1550000025644,-0.05588390095930312 +129832,649.1600000025645,-0.05588382534774155 +129833,649.1650000025646,-0.055883749750665686 +129834,649.1700000025647,-0.05588367416807182 +129835,649.1750000025648,-0.05588359859995627 +129836,649.180000002565,-0.05588352304631533 +129837,649.1850000025651,-0.05588344750714532 +129838,649.1900000025652,-0.05588337198244254 +129839,649.1950000025653,-0.055883296472203296 +129840,649.2000000025654,-0.0558832209764239 +129841,649.2050000025655,-0.05588314549510065 +129842,649.2100000025656,-0.05588307002822987 +129843,649.2150000025657,-0.05588299457580786 +129844,649.2200000025658,-0.05588291913783094 +129845,649.2250000025659,-0.05588284371429542 +129846,649.230000002566,-0.0558827683051976 +129847,649.2350000025662,-0.055882692910533806 +129848,649.2400000025663,-0.055882617530300355 +129849,649.2450000025664,-0.055882542164493544 +129850,649.2500000025665,-0.0558824668131097 +129851,649.2550000025666,-0.055882391476145134 +129852,649.2600000025667,-0.055882316153596165 +129853,649.2650000025668,-0.05588224084545911 +129854,649.2700000025669,-0.055882165551730284 +129855,649.275000002567,-0.055882090272406 +129856,649.2800000025671,-0.05588201500748259 +129857,649.2850000025672,-0.05588193975695637 +129858,649.2900000025674,-0.05588186452082366 +129859,649.2950000025675,-0.05588178929908077 +129860,649.3000000025676,-0.05588171409172404 +129861,649.3050000025677,-0.05588163889874977 +129862,649.3100000025678,-0.055881563720154306 +129863,649.3150000025679,-0.05588148855593396 +129864,649.320000002568,-0.055881413406085045 +129865,649.3250000025681,-0.0558813382706039 +129866,649.3300000025682,-0.05588126314948687 +129867,649.3350000025683,-0.05588118804273025 +129868,649.3400000025684,-0.05588111295033038 +129869,649.3450000025686,-0.05588103787228359 +129870,649.3500000025687,-0.05588096280858619 +129871,649.3550000025688,-0.05588088775923453 +129872,649.3600000025689,-0.055880812724224925 +129873,649.365000002569,-0.05588073770355372 +129874,649.3700000025691,-0.05588066269721723 +129875,649.3750000025692,-0.05588058770521181 +129876,649.3800000025693,-0.05588051272753377 +129877,649.3850000025694,-0.05588043776417946 +129878,649.3900000025695,-0.055880362815145204 +129879,649.3950000025696,-0.055880287880427336 +129880,649.4000000025698,-0.05588021296002218 +129881,649.4050000025699,-0.05588013805392609 +129882,649.41000000257,-0.0558800631621354 +129883,649.4150000025701,-0.055879988284646444 +129884,649.4200000025702,-0.055879913421455554 +129885,649.4250000025703,-0.055879838572559085 +129886,649.4300000025704,-0.05587976373795336 +129887,649.4350000025705,-0.05587968891763472 +129888,649.4400000025706,-0.05587961411159951 +129889,649.4450000025707,-0.055879539319844074 +129890,649.4500000025708,-0.05587946454236475 +129891,649.455000002571,-0.05587938977915788 +129892,649.4600000025711,-0.055879315030219805 +129893,649.4650000025712,-0.05587924029554687 +129894,649.4700000025713,-0.05587916557513542 +129895,649.4750000025714,-0.05587909086898181 +129896,649.4800000025715,-0.055879016177082366 +129897,649.4850000025716,-0.055878941499433454 +129898,649.4900000025717,-0.05587886683603141 +129899,649.4950000025718,-0.05587879218687259 +129900,649.5000000025719,-0.05587871755195333 +129901,649.505000002572,-0.055878642931269984 +129902,649.5100000025722,-0.055878568324818904 +129903,649.5150000025723,-0.05587849373259644 +129904,649.5200000025724,-0.05587841915459894 +129905,649.5250000025725,-0.055878344590822776 +129906,649.5300000025726,-0.05587827004126427 +129907,649.5350000025727,-0.05587819550591979 +129908,649.5400000025728,-0.055878120984785694 +129909,649.5450000025729,-0.05587804647785834 +129910,649.550000002573,-0.055877971985134056 +129911,649.5550000025731,-0.055877897506609216 +129912,649.5600000025732,-0.055877823042280186 +129913,649.5650000025734,-0.05587774859214332 +129914,649.5700000025735,-0.055877674156194955 +129915,649.5750000025736,-0.055877599734431474 +129916,649.5800000025737,-0.055877525326849226 +129917,649.5850000025738,-0.05587745093344457 +129918,649.5900000025739,-0.05587737655421387 +129919,649.595000002574,-0.05587730218915348 +129920,649.6000000025741,-0.05587722783825977 +129921,649.6050000025742,-0.05587715350152911 +129922,649.6100000025743,-0.055877079178957845 +129923,649.6150000025744,-0.05587700487054234 +129924,649.6200000025746,-0.05587693057627897 +129925,649.6250000025747,-0.055876856296164096 +129926,649.6300000025748,-0.05587678203019408 +129927,649.6350000025749,-0.0558767077783653 +129928,649.640000002575,-0.055876633540674105 +129929,649.6450000025751,-0.05587655931711689 +129930,649.6500000025752,-0.05587648510769 +129931,649.6550000025753,-0.05587641091238982 +129932,649.6600000025754,-0.05587633673121269 +129933,649.6650000025755,-0.05587626256415502 +129934,649.6700000025756,-0.055876188411213154 +129935,649.6750000025758,-0.055876114272383474 +129936,649.6800000025759,-0.05587604014766235 +129937,649.685000002576,-0.05587596603704616 +129938,649.6900000025761,-0.05587589194053126 +129939,649.6950000025762,-0.055875817858114046 +129940,649.7000000025763,-0.05587574378979089 +129941,649.7050000025764,-0.055875669735558166 +129942,649.7100000025765,-0.05587559569541224 +129943,649.7150000025766,-0.05587552166934951 +129944,649.7200000025767,-0.05587544765736634 +129945,649.7250000025768,-0.055875373659459104 +129946,649.730000002577,-0.05587529967562418 +129947,649.7350000025771,-0.055875225705857956 +129948,649.7400000025772,-0.055875151750156817 +129949,649.7450000025773,-0.05587507780851714 +129950,649.7500000025774,-0.055875003880935296 +129951,649.7550000025775,-0.055874929967407685 +129952,649.7600000025776,-0.05587485606793068 +129953,649.7650000025777,-0.055874782182500665 +129954,649.7700000025778,-0.05587470831111403 +129955,649.7750000025779,-0.05587463445376716 +129956,649.780000002578,-0.055874560610456425 +129957,649.7850000025782,-0.055874486781178234 +129958,649.7900000025783,-0.05587441296592895 +129959,649.7950000025784,-0.055874339164704995 +129960,649.8000000025785,-0.05587426537750272 +129961,649.8050000025786,-0.05587419160431854 +129962,649.8100000025787,-0.055874117845148834 +129963,649.8150000025788,-0.055874044099989986 +129964,649.8200000025789,-0.0558739703688384 +129965,649.825000002579,-0.05587389665169046 +129966,649.8300000025791,-0.055873822948542554 +129967,649.8350000025792,-0.05587374925939109 +129968,649.8400000025794,-0.05587367558423246 +129969,649.8450000025795,-0.05587360192306305 +129970,649.8500000025796,-0.055873528275879256 +129971,649.8550000025797,-0.05587345464267748 +129972,649.8600000025798,-0.0558733810234541 +129973,649.8650000025799,-0.05587330741820553 +129974,649.87000000258,-0.05587323382692817 +129975,649.8750000025801,-0.05587316024961841 +129976,649.8800000025802,-0.055873086686272645 +129977,649.8850000025803,-0.05587301313688728 +129978,649.8900000025805,-0.055872939601458727 +129979,649.8950000025806,-0.05587286607998337 +129980,649.9000000025807,-0.05587279257245763 +129981,649.9050000025808,-0.05587271907887789 +129982,649.9100000025809,-0.05587264559924056 +129983,649.915000002581,-0.055872572133542034 +129984,649.9200000025811,-0.05587249868177874 +129985,649.9250000025812,-0.05587242524394707 +129986,649.9300000025813,-0.05587235182004342 +129987,649.9350000025814,-0.055872278410064216 +129988,649.9400000025815,-0.055872205014005846 +129989,649.9450000025817,-0.05587213163186472 +129990,649.9500000025818,-0.05587205826363726 +129991,649.9550000025819,-0.05587198490931986 +129992,649.960000002582,-0.055871911568908944 +129993,649.9650000025821,-0.05587183824240091 +129994,649.9700000025822,-0.05587176492979218 +129995,649.9750000025823,-0.05587169163107915 +129996,649.9800000025824,-0.05587161834625825 +129997,649.9850000025825,-0.05587154507532587 +129998,649.9900000025826,-0.05587147181827845 +129999,649.9950000025827,-0.055871398575112384 +130000,650.0000000025829,-0.05587132534582409 +130001,650.005000002583,-0.05587125213041 +130002,650.0100000025831,-0.05587117892886651 +130003,650.0150000025832,-0.05587110574119005 +130004,650.0200000025833,-0.05587103256737703 +130005,650.0250000025834,-0.05587095940742387 +130006,650.0300000025835,-0.05587088626132699 +130007,650.0350000025836,-0.05587081312908282 +130008,650.0400000025837,-0.05587074001068777 +130009,650.0450000025838,-0.055870666906138254 +130010,650.0500000025839,-0.0558705938154307 +130011,650.055000002584,-0.055870520738561524 +130012,650.0600000025842,-0.05587044767552716 +130013,650.0650000025843,-0.05587037462632402 +130014,650.0700000025844,-0.055870301590948544 +130015,650.0750000025845,-0.05587022856939714 +130016,650.0800000025846,-0.05587015556166625 +130017,650.0850000025847,-0.05587008256775229 +130018,650.0900000025848,-0.05587000958765168 +130019,650.0950000025849,-0.05586993662136087 +130020,650.100000002585,-0.05586986366887625 +130021,650.1050000025851,-0.05586979073019428 +130022,650.1100000025853,-0.05586971780531138 +130023,650.1150000025854,-0.05586964489422398 +130024,650.1200000025855,-0.05586957199692851 +130025,650.1250000025856,-0.055869499113421414 +130026,650.1300000025857,-0.05586942624369911 +130027,650.1350000025858,-0.055869353387758024 +130028,650.1400000025859,-0.055869280545594605 +130029,650.145000002586,-0.055869207717205285 +130030,650.1500000025861,-0.055869134902586486 +130031,650.1550000025862,-0.05586906210173466 +130032,650.1600000025863,-0.05586898931464623 +130033,650.1650000025865,-0.055868916541317634 +130034,650.1700000025866,-0.055868843781745316 +130035,650.1750000025867,-0.055868771035925704 +130036,650.1800000025868,-0.05586869830385524 +130037,650.1850000025869,-0.055868625585530365 +130038,650.190000002587,-0.05586855288094753 +130039,650.1950000025871,-0.055868480190103174 +130040,650.2000000025872,-0.05586840751299371 +130041,650.2050000025873,-0.055868334849615606 +130042,650.2100000025874,-0.0558682621999653 +130043,650.2150000025875,-0.05586818956403923 +130044,650.2200000025877,-0.055868116941833836 +130045,650.2250000025878,-0.055868044333345565 +130046,650.2300000025879,-0.055867971738570874 +130047,650.235000002588,-0.0558678991575062 +130048,650.2400000025881,-0.055867826590148 +130049,650.2450000025882,-0.055867754036492696 +130050,650.2500000025883,-0.055867681496536765 +130051,650.2550000025884,-0.055867608970276636 +130052,650.2600000025885,-0.05586753645770877 +130053,650.2650000025886,-0.055867463958829605 +130054,650.2700000025887,-0.05586739147363559 +130055,650.2750000025889,-0.05586731900212318 +130056,650.280000002589,-0.05586724654428883 +130057,650.2850000025891,-0.055867174100128994 +130058,650.2900000025892,-0.055867101669640123 +130059,650.2950000025893,-0.05586702925281867 +130060,650.3000000025894,-0.055866956849661094 +130061,650.3050000025895,-0.05586688446016383 +130062,650.3100000025896,-0.055866812084323356 +130063,650.3150000025897,-0.05586673972213612 +130064,650.3200000025898,-0.05586666737359858 +130065,650.32500000259,-0.05586659503870719 +130066,650.33000000259,-0.05586652271745841 +130067,650.3350000025902,-0.05586645040984871 +130068,650.3400000025903,-0.05586637811587454 +130069,650.3450000025904,-0.05586630583553236 +130070,650.3500000025905,-0.05586623356881862 +130071,650.3550000025906,-0.05586616131572979 +130072,650.3600000025907,-0.05586608907626233 +130073,650.3650000025908,-0.05586601685041271 +130074,650.3700000025909,-0.0558659446381774 +130075,650.375000002591,-0.05586587243955285 +130076,650.3800000025911,-0.05586580025453552 +130077,650.3850000025913,-0.05586572808312188 +130078,650.3900000025914,-0.05586565592530842 +130079,650.3950000025915,-0.05586558378109158 +130080,650.4000000025916,-0.055865511650467825 +130081,650.4050000025917,-0.05586543953343363 +130082,650.4100000025918,-0.05586536742998547 +130083,650.4150000025919,-0.05586529534011982 +130084,650.420000002592,-0.055865223263833134 +130085,650.4250000025921,-0.05586515120112188 +130086,650.4300000025922,-0.05586507915198253 +130087,650.4350000025923,-0.055865007116411576 +130088,650.4400000025925,-0.05586493509440547 +130089,650.4450000025926,-0.05586486308596069 +130090,650.4500000025927,-0.055864791091073715 +130091,650.4550000025928,-0.055864719109741015 +130092,650.4600000025929,-0.055864647141959066 +130093,650.465000002593,-0.05586457518772436 +130094,650.4700000025931,-0.05586450324703334 +130095,650.4750000025932,-0.055864431319882515 +130096,650.4800000025933,-0.055864359406268334 +130097,650.4850000025934,-0.0558642875061873 +130098,650.4900000025935,-0.05586421561963587 +130099,650.4950000025937,-0.055864143746610535 +130100,650.5000000025938,-0.055864071887107784 +130101,650.5050000025939,-0.05586400004112409 +130102,650.510000002594,-0.05586392820865593 +130103,650.5150000025941,-0.05586385638969979 +130104,650.5200000025942,-0.05586378458425216 +130105,650.5250000025943,-0.05586371279230951 +130106,650.5300000025944,-0.055863641013868336 +130107,650.5350000025945,-0.05586356924892512 +130108,650.5400000025946,-0.05586349749747633 +130109,650.5450000025947,-0.05586342575951848 +130110,650.5500000025949,-0.05586335403504803 +130111,650.555000002595,-0.0558632823240615 +130112,650.5600000025951,-0.05586321062655536 +130113,650.5650000025952,-0.05586313894252609 +130114,650.5700000025953,-0.0558630672719702 +130115,650.5750000025954,-0.055862995614884156 +130116,650.5800000025955,-0.05586292397126445 +130117,650.5850000025956,-0.0558628523411076 +130118,650.5900000025957,-0.055862780724410074 +130119,650.5950000025958,-0.055862709121168364 +130120,650.600000002596,-0.05586263753137898 +130121,650.6050000025961,-0.055862565955038405 +130122,650.6100000025962,-0.055862494392143136 +130123,650.6150000025963,-0.05586242284268967 +130124,650.6200000025964,-0.055862351306674496 +130125,650.6250000025965,-0.05586227978409412 +130126,650.6300000025966,-0.05586220827494502 +130127,650.6350000025967,-0.05586213677922372 +130128,650.6400000025968,-0.0558620652969267 +130129,650.6450000025969,-0.055861993828050474 +130130,650.650000002597,-0.055861922372591535 +130131,650.6550000025971,-0.05586185093054638 +130132,650.6600000025973,-0.05586177950191151 +130133,650.6650000025974,-0.055861708086683434 +130134,650.6700000025975,-0.05586163668485864 +130135,650.6750000025976,-0.05586156529643364 +130136,650.6800000025977,-0.055861493921404944 +130137,650.6850000025978,-0.05586142255976904 +130138,650.6900000025979,-0.05586135121152245 +130139,650.695000002598,-0.05586127987666165 +130140,650.7000000025981,-0.05586120855518319 +130141,650.7050000025982,-0.055861137247083546 +130142,650.7100000025983,-0.05586106595235924 +130143,650.7150000025985,-0.05586099467100677 +130144,650.7200000025986,-0.05586092340302264 +130145,650.7250000025987,-0.05586085214840338 +130146,650.7300000025988,-0.05586078090714548 +130147,650.7350000025989,-0.05586070967924546 +130148,650.740000002599,-0.05586063846469983 +130149,650.7450000025991,-0.055860567263505106 +130150,650.7500000025992,-0.055860496075657795 +130151,650.7550000025993,-0.05586042490115442 +130152,650.7600000025994,-0.05586035373999148 +130153,650.7650000025995,-0.05586028259216549 +130154,650.7700000025997,-0.055860211457672976 +130155,650.7750000025998,-0.055860140336510454 +130156,650.7800000025999,-0.05586006922867443 +130157,650.7850000026,-0.05585999813416143 +130158,650.7900000026001,-0.05585992705296796 +130159,650.7950000026002,-0.055859855985090565 +130160,650.8000000026003,-0.055859784930525735 +130161,650.8050000026004,-0.055859713889269996 +130162,650.8100000026005,-0.055859642861319884 +130163,650.8150000026006,-0.055859571846671896 +130164,650.8200000026008,-0.055859500845322575 +130165,650.8250000026009,-0.055859429857268425 +130166,650.830000002601,-0.05585935888250599 +130167,650.8350000026011,-0.05585928792103178 +130168,650.8400000026012,-0.05585921697284232 +130169,650.8450000026013,-0.05585914603793414 +130170,650.8500000026014,-0.05585907511630376 +130171,650.8550000026015,-0.055859004207947704 +130172,650.8600000026016,-0.055858933312862506 +130173,650.8650000026017,-0.05585886243104469 +130174,650.8700000026018,-0.05585879156249078 +130175,650.875000002602,-0.05585872070719731 +130176,650.8800000026021,-0.055858649865160814 +130177,650.8850000026022,-0.05585857903637782 +130178,650.8900000026023,-0.055858508220844844 +130179,650.8950000026024,-0.05585843741855843 +130180,650.9000000026025,-0.055858366629515106 +130181,650.9050000026026,-0.05585829585371141 +130182,650.9100000026027,-0.05585822509114387 +130183,650.9150000026028,-0.05585815434180901 +130184,650.9200000026029,-0.055858083605703386 +130185,650.925000002603,-0.055858012882823514 +130186,650.9300000026032,-0.055857942173165955 +130187,650.9350000026033,-0.05585787147672723 +130188,650.9400000026034,-0.05585780079350386 +130189,650.9450000026035,-0.055857730123492405 +130190,650.9500000026036,-0.0558576594666894 +130191,650.9550000026037,-0.05585758882309138 +130192,650.9600000026038,-0.05585751819269487 +130193,650.9650000026039,-0.05585744757549644 +130194,650.970000002604,-0.0558573769714926 +130195,650.9750000026041,-0.055857306380679914 +130196,650.9800000026042,-0.05585723580305492 +130197,650.9850000026044,-0.055857165238614156 +130198,650.9900000026045,-0.05585709468735416 +130199,650.9950000026046,-0.055857024149271496 +130200,651.0000000026047,-0.05585695362436269 +130201,651.0050000026048,-0.05585688311262429 +130202,651.0100000026049,-0.05585681261405284 +130203,651.015000002605,-0.055856742128644894 +130204,651.0200000026051,-0.05585667165639701 +130205,651.0250000026052,-0.055856601197305726 +130206,651.0300000026053,-0.055856530751367574 +130207,651.0350000026054,-0.055856460318579125 +130208,651.0400000026056,-0.05585638989893691 +130209,651.0450000026057,-0.055856319492437495 +130210,651.0500000026058,-0.05585624909907742 +130211,651.0550000026059,-0.05585617871885325 +130212,651.060000002606,-0.055856108351761524 +130213,651.0650000026061,-0.055856037997798806 +130214,651.0700000026062,-0.05585596765696164 +130215,651.0750000026063,-0.05585589732924659 +130216,651.0800000026064,-0.0558558270146502 +130217,651.0850000026065,-0.055855756713169044 +130218,651.0900000026066,-0.055855686424799655 +130219,651.0950000026068,-0.05585561614953861 +130220,651.1000000026069,-0.05585554588738245 +130221,651.105000002607,-0.05585547563832773 +130222,651.1100000026071,-0.055855405402371036 +130223,651.1150000026072,-0.0558553351795089 +130224,651.1200000026073,-0.05585526496973789 +130225,651.1250000026074,-0.05585519477305456 +130226,651.1300000026075,-0.0558551245894555 +130227,651.1350000026076,-0.05585505441893725 +130228,651.1400000026077,-0.055854984261496356 +130229,651.1450000026078,-0.05585491411712941 +130230,651.150000002608,-0.05585484398583296 +130231,651.1550000026081,-0.05585477386760358 +130232,651.1600000026082,-0.05585470376243784 +130233,651.1650000026083,-0.05585463367033228 +130234,651.1700000026084,-0.05585456359128348 +130235,651.1750000026085,-0.05585449352528802 +130236,651.1800000026086,-0.055854423472342464 +130237,651.1850000026087,-0.05585435343244336 +130238,651.1900000026088,-0.0558542834055873 +130239,651.1950000026089,-0.055854213391770845 +130240,651.200000002609,-0.05585414339099056 +130241,651.2050000026092,-0.05585407340324302 +130242,651.2100000026093,-0.055854003428524805 +130243,651.2150000026094,-0.05585393346683248 +130244,651.2200000026095,-0.0558538635181626 +130245,651.2250000026096,-0.05585379358251176 +130246,651.2300000026097,-0.05585372365987652 +130247,651.2350000026098,-0.055853653750253474 +130248,651.2400000026099,-0.05585358385363918 +130249,651.24500000261,-0.05585351397003024 +130250,651.2500000026101,-0.0558534440994232 +130251,651.2550000026102,-0.05585337424181465 +130252,651.2600000026104,-0.05585330439720116 +130253,651.2650000026105,-0.055853234565579314 +130254,651.2700000026106,-0.0558531647469457 +130255,651.2750000026107,-0.05585309494129687 +130256,651.2800000026108,-0.05585302514862944 +130257,651.2850000026109,-0.05585295536893997 +130258,651.290000002611,-0.05585288560222506 +130259,651.2950000026111,-0.05585281584848127 +130260,651.3000000026112,-0.05585274610770519 +130261,651.3050000026113,-0.0558526763798934 +130262,651.3100000026114,-0.055852606665042485 +130263,651.3150000026116,-0.05585253696314905 +130264,651.3200000026117,-0.05585246727420966 +130265,651.3250000026118,-0.05585239759822091 +130266,651.3300000026119,-0.055852327935179365 +130267,651.335000002612,-0.055852258285081634 +130268,651.3400000026121,-0.055852188647924295 +130269,651.3450000026122,-0.05585211902370395 +130270,651.3500000026123,-0.05585204941241718 +130271,651.3550000026124,-0.05585197981406057 +130272,651.3600000026125,-0.055851910228630716 +130273,651.3650000026126,-0.05585184065612421 +130274,651.3700000026128,-0.05585177109653765 +130275,651.3750000026129,-0.05585170154986761 +130276,651.380000002613,-0.0558516320161107 +130277,651.3850000026131,-0.05585156249526351 +130278,651.3900000026132,-0.055851492987322615 +130279,651.3950000026133,-0.05585142349228464 +130280,651.4000000026134,-0.055851354010146154 +130281,651.4050000026135,-0.05585128454090378 +130282,651.4100000026136,-0.05585121508455409 +130283,651.4150000026137,-0.0558511456410937 +130284,651.4200000026138,-0.055851076210519185 +130285,651.425000002614,-0.05585100679282717 +130286,651.4300000026141,-0.055850937388014235 +130287,651.4350000026142,-0.05585086799607698 +130288,651.4400000026143,-0.05585079861701203 +130289,651.4450000026144,-0.055850729250815974 +130290,651.4500000026145,-0.0558506598974854 +130291,651.4550000026146,-0.05585059055701693 +130292,651.4600000026147,-0.05585052122940715 +130293,651.4650000026148,-0.05585045191465267 +130294,651.4700000026149,-0.0558503826127501 +130295,651.475000002615,-0.05585031332369603 +130296,651.4800000026152,-0.055850244047487084 +130297,651.4850000026153,-0.05585017478411986 +130298,651.4900000026154,-0.05585010553359097 +130299,651.4950000026155,-0.055850036295897 +130300,651.5000000026156,-0.05584996707103459 +130301,651.5050000026157,-0.055849897859000325 +130302,651.5100000026158,-0.055849828659790816 +130303,651.5150000026159,-0.055849759473402684 +130304,651.520000002616,-0.05584969029983255 +130305,651.5250000026161,-0.05584962113907699 +130306,651.5300000026162,-0.055849551991132645 +130307,651.5350000026164,-0.05584948285599611 +130308,651.5400000026165,-0.055849413733664026 +130309,651.5450000026166,-0.05584934462413297 +130310,651.5500000026167,-0.055849275527399586 +130311,651.5550000026168,-0.055849206443460475 +130312,651.5600000026169,-0.05584913737231226 +130313,651.565000002617,-0.05584906831395153 +130314,651.5700000026171,-0.055848999268374944 +130315,651.5750000026172,-0.05584893023557909 +130316,651.5800000026173,-0.055848861215560604 +130317,651.5850000026174,-0.0558487922083161 +130318,651.5900000026176,-0.05584872321384219 +130319,651.5950000026177,-0.0558486542321355 +130320,651.6000000026178,-0.05584858526319265 +130321,651.6050000026179,-0.05584851630701026 +130322,651.610000002618,-0.055848447363584956 +130323,651.6150000026181,-0.05584837843291335 +130324,651.6200000026182,-0.05584830951499207 +130325,651.6250000026183,-0.05584824060981774 +130326,651.6300000026184,-0.05584817171738699 +130327,651.6350000026185,-0.055848102837696444 +130328,651.6400000026186,-0.05584803397074272 +130329,651.6450000026188,-0.05584796511652246 +130330,651.6500000026189,-0.05584789627503227 +130331,651.655000002619,-0.055847827446268795 +130332,651.6600000026191,-0.05584775863022866 +130333,651.6650000026192,-0.05584768982690848 +130334,651.6700000026193,-0.055847621036304904 +130335,651.6750000026194,-0.055847552258414555 +130336,651.6800000026195,-0.055847483493234054 +130337,651.6850000026196,-0.05584741474076005 +130338,651.6900000026197,-0.05584734600098915 +130339,651.6950000026198,-0.055847277273918014 +130340,651.70000000262,-0.05584720855954325 +130341,651.7050000026201,-0.05584713985786151 +130342,651.7100000026202,-0.055847071168869424 +130343,651.7150000026203,-0.055847002492563635 +130344,651.7200000026204,-0.055846933828940765 +130345,651.7250000026205,-0.05584686517799746 +130346,651.7300000026206,-0.05584679653973035 +130347,651.7350000026207,-0.05584672791413607 +130348,651.7400000026208,-0.055846659301211264 +130349,651.7450000026209,-0.055846590700952575 +130350,651.750000002621,-0.055846522113356646 +130351,651.7550000026212,-0.0558464535384201 +130352,651.7600000026213,-0.05584638497613958 +130353,651.7650000026214,-0.055846316426511736 +130354,651.7700000026215,-0.055846247889533206 +130355,651.7750000026216,-0.05584617936520064 +130356,651.7800000026217,-0.05584611085351068 +130357,651.7850000026218,-0.05584604235445997 +130358,651.7900000026219,-0.055845973868045136 +130359,651.795000002622,-0.055845905394262846 +130360,651.8000000026221,-0.05584583693310974 +130361,651.8050000026223,-0.055845768484582455 +130362,651.8100000026224,-0.05584570004867764 +130363,651.8150000026225,-0.05584563162539196 +130364,651.8200000026226,-0.05584556321472205 +130365,651.8250000026227,-0.05584549481666456 +130366,651.8300000026228,-0.05584542643121613 +130367,651.8350000026229,-0.05584535805837342 +130368,651.840000002623,-0.055845289698133085 +130369,651.8450000026231,-0.05584522135049177 +130370,651.8500000026232,-0.05584515301544613 +130371,651.8550000026233,-0.05584508469299281 +130372,651.8600000026235,-0.05584501638312847 +130373,651.8650000026236,-0.05584494808584976 +130374,651.8700000026237,-0.05584487980115334 +130375,651.8750000026238,-0.055844811529035865 +130376,651.8800000026239,-0.05584474326949399 +130377,651.885000002624,-0.05584467502252436 +130378,651.8900000026241,-0.05584460678812364 +130379,651.8950000026242,-0.055844538566288494 +130380,651.9000000026243,-0.05584447035701557 +130381,651.9050000026244,-0.055844402160301544 +130382,651.9100000026245,-0.05584433397614305 +130383,651.9150000026247,-0.05584426580453676 +130384,651.9200000026248,-0.05584419764547934 +130385,651.9250000026249,-0.05584412949896745 +130386,651.930000002625,-0.055844061364997755 +130387,651.9350000026251,-0.05584399324356692 +130388,651.9400000026252,-0.05584392513467158 +130389,651.9450000026253,-0.05584385703830843 +130390,651.9500000026254,-0.05584378895447412 +130391,651.9550000026255,-0.05584372088316532 +130392,651.9600000026256,-0.0558436528243787 +130393,651.9650000026257,-0.05584358477811091 +130394,651.9700000026259,-0.055843516744358626 +130395,651.975000002626,-0.05584344872311851 +130396,651.9800000026261,-0.055843380714387256 +130397,651.9850000026262,-0.0558433127181615 +130398,651.9900000026263,-0.055843244734437934 +130399,651.9950000026264,-0.05584317676321321 +130400,652.0000000026265,-0.05584310880448402 +130401,652.0050000026266,-0.05584304085824701 +130402,652.0100000026267,-0.05584297292449887 +130403,652.0150000026268,-0.05584290500323627 +130404,652.020000002627,-0.05584283709445587 +130405,652.025000002627,-0.055842769198154375 +130406,652.0300000026272,-0.055842701314328426 +130407,652.0350000026273,-0.0558426334429747 +130408,652.0400000026274,-0.0558425655840899 +130409,652.0450000026275,-0.055842497737670686 +130410,652.0500000026276,-0.05584242990371372 +130411,652.0550000026277,-0.0558423620822157 +130412,652.0600000026278,-0.0558422942731733 +130413,652.0650000026279,-0.05584222647658319 +130414,652.070000002628,-0.05584215869244207 +130415,652.0750000026281,-0.0558420909207466 +130416,652.0800000026283,-0.05584202316149346 +130417,652.0850000026284,-0.05584195541467933 +130418,652.0900000026285,-0.05584188768030091 +130419,652.0950000026286,-0.055841819958354875 +130420,652.1000000026287,-0.05584175224883791 +130421,652.1050000026288,-0.055841684551746686 +130422,652.1100000026289,-0.05584161686707789 +130423,652.115000002629,-0.05584154919482822 +130424,652.1200000026291,-0.055841481534994346 +130425,652.1250000026292,-0.05584141388757296 +130426,652.1300000026293,-0.05584134625256074 +130427,652.1350000026295,-0.05584127862995439 +130428,652.1400000026296,-0.05584121101975059 +130429,652.1450000026297,-0.05584114342194603 +130430,652.1500000026298,-0.0558410758365374 +130431,652.1550000026299,-0.05584100826352139 +130432,652.16000000263,-0.0558409407028947 +130433,652.1650000026301,-0.055840873154654004 +130434,652.1700000026302,-0.055840805618796 +130435,652.1750000026303,-0.05584073809531738 +130436,652.1800000026304,-0.05584067058421484 +130437,652.1850000026305,-0.05584060308548506 +130438,652.1900000026307,-0.05584053559912475 +130439,652.1950000026308,-0.0558404681251306 +130440,652.2000000026309,-0.055840400663499296 +130441,652.205000002631,-0.05584033321422756 +130442,652.2100000026311,-0.055840265777312055 +130443,652.2150000026312,-0.0558401983527495 +130444,652.2200000026313,-0.05584013094053658 +130445,652.2250000026314,-0.05584006354067002 +130446,652.2300000026315,-0.05583999615314649 +130447,652.2350000026316,-0.0558399287779627 +130448,652.2400000026317,-0.05583986141511535 +130449,652.2450000026319,-0.055839794064601135 +130450,652.250000002632,-0.05583972672641677 +130451,652.2550000026321,-0.05583965940055895 +130452,652.2600000026322,-0.055839592087024374 +130453,652.2650000026323,-0.055839524785809745 +130454,652.2700000026324,-0.05583945749691178 +130455,652.2750000026325,-0.05583939022032716 +130456,652.2800000026326,-0.055839322956052616 +130457,652.2850000026327,-0.055839255704084836 +130458,652.2900000026328,-0.055839188464420535 +130459,652.295000002633,-0.05583912123705642 +130460,652.300000002633,-0.05583905402198919 +130461,652.3050000026332,-0.055838986819215564 +130462,652.3100000026333,-0.05583891962873224 +130463,652.3150000026334,-0.055838852450535936 +130464,652.3200000026335,-0.05583878528462337 +130465,652.3250000026336,-0.05583871813099124 +130466,652.3300000026337,-0.055838650989636265 +130467,652.3350000026338,-0.055838583860555145 +130468,652.3400000026339,-0.055838516743744605 +130469,652.345000002634,-0.05583844963920136 +130470,652.3500000026341,-0.055838382546922104 +130471,652.3550000026343,-0.055838315466903564 +130472,652.3600000026344,-0.05583824839914246 +130473,652.3650000026345,-0.055838181343635496 +130474,652.3700000026346,-0.0558381143003794 +130475,652.3750000026347,-0.05583804726937089 +130476,652.3800000026348,-0.05583798025060668 +130477,652.3850000026349,-0.055837913244083485 +130478,652.390000002635,-0.05583784624979802 +130479,652.3950000026351,-0.05583777926774701 +130480,652.4000000026352,-0.05583771229792717 +130481,652.4050000026353,-0.05583764534033523 +130482,652.4100000026355,-0.055837578394967904 +130483,652.4150000026356,-0.05583751146182192 +130484,652.4200000026357,-0.055837444540893996 +130485,652.4250000026358,-0.055837377632180864 +130486,652.4300000026359,-0.05583731073567923 +130487,652.435000002636,-0.055837243851385825 +130488,652.4400000026361,-0.05583717697929737 +130489,652.4450000026362,-0.055837110119410595 +130490,652.4500000026363,-0.05583704327172224 +130491,652.4550000026364,-0.05583697643622901 +130492,652.4600000026365,-0.05583690961292764 +130493,652.4650000026367,-0.05583684280181487 +130494,652.4700000026368,-0.0558367760028874 +130495,652.4750000026369,-0.055836709216142 +130496,652.480000002637,-0.055836642441575365 +130497,652.4850000026371,-0.055836575679184236 +130498,652.4900000026372,-0.05583650892896534 +130499,652.4950000026373,-0.055836442190915436 +130500,652.5000000026374,-0.05583637546503122 +130501,652.5050000026375,-0.055836308751309446 +130502,652.5100000026376,-0.05583624204974683 +130503,652.5150000026377,-0.05583617536034012 +130504,652.5200000026379,-0.055836108683086055 +130505,652.525000002638,-0.055836042017981355 +130506,652.5300000026381,-0.055835975365022765 +130507,652.5350000026382,-0.05583590872420702 +130508,652.5400000026383,-0.05583584209553085 +130509,652.5450000026384,-0.05583577547899101 +130510,652.5500000026385,-0.05583570887458423 +130511,652.5550000026386,-0.05583564228230724 +130512,652.5600000026387,-0.055835575702156776 +130513,652.5650000026388,-0.055835509134129595 +130514,652.570000002639,-0.05583544257822243 +130515,652.5750000026391,-0.05583537603443202 +130516,652.5800000026392,-0.05583530950275511 +130517,652.5850000026393,-0.055835242983188454 +130518,652.5900000026394,-0.055835176475728776 +130519,652.5950000026395,-0.05583510998037283 +130520,652.6000000026396,-0.05583504349711737 +130521,652.6050000026397,-0.05583497702595912 +130522,652.6100000026398,-0.05583491056689484 +130523,652.6150000026399,-0.055834844119921255 +130524,652.62000000264,-0.055834777685035135 +130525,652.6250000026401,-0.05583471126223323 +130526,652.6300000026403,-0.055834644851512266 +130527,652.6350000026404,-0.05583457845286901 +130528,652.6400000026405,-0.055834512066300204 +130529,652.6450000026406,-0.0558344456918026 +130530,652.6500000026407,-0.05583437932937295 +130531,652.6550000026408,-0.055834312979008004 +130532,652.6600000026409,-0.05583424664070451 +130533,652.665000002641,-0.05583418031445922 +130534,652.6700000026411,-0.0558341140002689 +130535,652.6750000026412,-0.055834047698130294 +130536,652.6800000026413,-0.05583398140804015 +130537,652.6850000026415,-0.05583391512999522 +130538,652.6900000026416,-0.05583384886399227 +130539,652.6950000026417,-0.05583378261002807 +130540,652.7000000026418,-0.05583371636809935 +130541,652.7050000026419,-0.05583365013820287 +130542,652.710000002642,-0.055833583920335404 +130543,652.7150000026421,-0.0558335177144937 +130544,652.7200000026422,-0.05583345152067452 +130545,652.7250000026423,-0.05583338533887462 +130546,652.7300000026424,-0.055833319169090775 +130547,652.7350000026426,-0.055833253011319715 +130548,652.7400000026427,-0.055833186865558236 +130549,652.7450000026428,-0.055833120731803076 +130550,652.7500000026429,-0.05583305461005101 +130551,652.755000002643,-0.05583298850029878 +130552,652.7600000026431,-0.05583292240254318 +130553,652.7650000026432,-0.05583285631678096 +130554,652.7700000026433,-0.05583279024300889 +130555,652.7750000026434,-0.055832724181223724 +130556,652.7800000026435,-0.055832658131422234 +130557,652.7850000026436,-0.0558325920936012 +130558,652.7900000026438,-0.05583252606775737 +130559,652.7950000026439,-0.055832460053887534 +130560,652.800000002644,-0.055832394051988435 +130561,652.8050000026441,-0.05583232806205686 +130562,652.8100000026442,-0.05583226208408956 +130563,652.8150000026443,-0.055832196118083335 +130564,652.8200000026444,-0.05583213016403494 +130565,652.8250000026445,-0.05583206422194114 +130566,652.8300000026446,-0.05583199829179871 +130567,652.8350000026447,-0.05583193237360443 +130568,652.8400000026448,-0.05583186646735507 +130569,652.845000002645,-0.055831800573047416 +130570,652.8500000026451,-0.05583173469067823 +130571,652.8550000026452,-0.05583166882024429 +130572,652.8600000026453,-0.05583160296174236 +130573,652.8650000026454,-0.05583153711516924 +130574,652.8700000026455,-0.05583147128052168 +130575,652.8750000026456,-0.05583140545779648 +130576,652.8800000026457,-0.05583133964699041 +130577,652.8850000026458,-0.05583127384810025 +130578,652.8900000026459,-0.05583120806112278 +130579,652.895000002646,-0.055831142286054784 +130580,652.9000000026462,-0.05583107652289303 +130581,652.9050000026463,-0.05583101077163431 +130582,652.9100000026464,-0.05583094503227541 +130583,652.9150000026465,-0.0558308793048131 +130584,652.9200000026466,-0.055830813589244174 +130585,652.9250000026467,-0.05583074788556542 +130586,652.9300000026468,-0.0558306821937736 +130587,652.9350000026469,-0.055830616513865505 +130588,652.940000002647,-0.05583055084583795 +130589,652.9450000026471,-0.055830485189687695 +130590,652.9500000026472,-0.055830419545411535 +130591,652.9550000026474,-0.05583035391300624 +130592,652.9600000026475,-0.05583028829246861 +130593,652.9650000026476,-0.05583022268379544 +130594,652.9700000026477,-0.05583015708698352 +130595,652.9750000026478,-0.05583009150202963 +130596,652.9800000026479,-0.05583002592893057 +130597,652.985000002648,-0.05582996036768313 +130598,652.9900000026481,-0.05582989481828409 +130599,652.9950000026482,-0.055829829280730256 +130600,653.0000000026483,-0.055829763755018406 +130601,653.0050000026484,-0.05582969824114535 +130602,653.0100000026486,-0.05582963273910788 +130603,653.0150000026487,-0.05582956724890278 +130604,653.0200000026488,-0.05582950177052685 +130605,653.0250000026489,-0.055829436303976895 +130606,653.030000002649,-0.0558293708492497 +130607,653.0350000026491,-0.05582930540634206 +130608,653.0400000026492,-0.05582923997525077 +130609,653.0450000026493,-0.055829174555972645 +130610,653.0500000026494,-0.055829109148504474 +130611,653.0550000026495,-0.05582904375284307 +130612,653.0600000026496,-0.055828978368985205 +130613,653.0650000026498,-0.0558289129969277 +130614,653.0700000026499,-0.05582884763666735 +130615,653.07500000265,-0.05582878228820096 +130616,653.0800000026501,-0.055828716951525324 +130617,653.0850000026502,-0.055828651626637256 +130618,653.0900000026503,-0.05582858631353357 +130619,653.0950000026504,-0.055828521012211044 +130620,653.1000000026505,-0.05582845572266649 +130621,653.1050000026506,-0.05582839044489673 +130622,653.1100000026507,-0.055828325178898554 +130623,653.1150000026508,-0.05582825992466877 +130624,653.120000002651,-0.05582819468220419 +130625,653.1250000026511,-0.05582812945150161 +130626,653.1300000026512,-0.055828064232557865 +130627,653.1350000026513,-0.05582799902536974 +130628,653.1400000026514,-0.055827933829934055 +130629,653.1450000026515,-0.05582786864624761 +130630,653.1500000026516,-0.055827803474307235 +130631,653.1550000026517,-0.055827738314109726 +130632,653.1600000026518,-0.0558276731656519 +130633,653.1650000026519,-0.055827608028930574 +130634,653.170000002652,-0.05582754290394255 +130635,653.1750000026522,-0.05582747779068464 +130636,653.1800000026523,-0.05582741268915368 +130637,653.1850000026524,-0.05582734759934647 +130638,653.1900000026525,-0.05582728252125982 +130639,653.1950000026526,-0.05582721745489056 +130640,653.2000000026527,-0.055827152400235495 +130641,653.2050000026528,-0.05582708735729145 +130642,653.2100000026529,-0.05582702232605524 +130643,653.215000002653,-0.055826957306523685 +130644,653.2200000026531,-0.05582689229869361 +130645,653.2250000026532,-0.055826827302561825 +130646,653.2300000026534,-0.055826762318125146 +130647,653.2350000026535,-0.05582669734538041 +130648,653.2400000026536,-0.05582663238432443 +130649,653.2450000026537,-0.05582656743495403 +130650,653.2500000026538,-0.055826502497266034 +130651,653.2550000026539,-0.05582643757125726 +130652,653.260000002654,-0.055826372656924535 +130653,653.2650000026541,-0.05582630775426469 +130654,653.2700000026542,-0.05582624286327455 +130655,653.2750000026543,-0.05582617798395091 +130656,653.2800000026544,-0.05582611311629064 +130657,653.2850000026546,-0.05582604826029055 +130658,653.2900000026547,-0.05582598341594747 +130659,653.2950000026548,-0.0558259185832582 +130660,653.3000000026549,-0.05582585376221961 +130661,653.305000002655,-0.05582578895282852 +130662,653.3100000026551,-0.055825724155081746 +130663,653.3150000026552,-0.05582565936897612 +130664,653.3200000026553,-0.05582559459450849 +130665,653.3250000026554,-0.055825529831675665 +130666,653.3300000026555,-0.0558254650804745 +130667,653.3350000026556,-0.05582540034090181 +130668,653.3400000026558,-0.055825335612954434 +130669,653.3450000026559,-0.055825270896629205 +130670,653.350000002656,-0.05582520619192297 +130671,653.3550000026561,-0.05582514149883255 +130672,653.3600000026562,-0.05582507681735478 +130673,653.3650000026563,-0.055825012147486516 +130674,653.3700000026564,-0.05582494748922457 +130675,653.3750000026565,-0.0558248828425658 +130676,653.3800000026566,-0.05582481820750704 +130677,653.3850000026567,-0.055824753584045116 +130678,653.3900000026568,-0.05582468897217687 +130679,653.395000002657,-0.05582462437189916 +130680,653.4000000026571,-0.05582455978320881 +130681,653.4050000026572,-0.05582449520610267 +130682,653.4100000026573,-0.05582443064057758 +130683,653.4150000026574,-0.05582436608663036 +130684,653.4200000026575,-0.055824301544257895 +130685,653.4250000026576,-0.055824237013457 +130686,653.4300000026577,-0.05582417249422453 +130687,653.4350000026578,-0.05582410798655733 +130688,653.4400000026579,-0.055824043490452224 +130689,653.445000002658,-0.0558239790059061 +130690,653.4500000026582,-0.05582391453291577 +130691,653.4550000026583,-0.055823850071478096 +130692,653.4600000026584,-0.05582378562158992 +130693,653.4650000026585,-0.0558237211832481 +130694,653.4700000026586,-0.055823656756449465 +130695,653.4750000026587,-0.055823592341190886 +130696,653.4800000026588,-0.05582352793746921 +130697,653.4850000026589,-0.055823463545281275 +130698,653.490000002659,-0.055823399164623935 +130699,653.4950000026591,-0.05582333479549405 +130700,653.5000000026592,-0.05582327043788847 +130701,653.5050000026594,-0.05582320609180406 +130702,653.5100000026595,-0.055823141757237654 +130703,653.5150000026596,-0.0558230774341861 +130704,653.5200000026597,-0.05582301312264629 +130705,653.5250000026598,-0.05582294882261505 +130706,653.5300000026599,-0.05582288453408924 +130707,653.53500000266,-0.05582282025706572 +130708,653.5400000026601,-0.055822755991541344 +130709,653.5450000026602,-0.05582269173751297 +130710,653.5500000026603,-0.05582262749497747 +130711,653.5550000026604,-0.05582256326393169 +130712,653.5600000026606,-0.055822499044372476 +130713,653.5650000026607,-0.055822434836296723 +130714,653.5700000026608,-0.055822370639701274 +130715,653.5750000026609,-0.055822306454582984 +130716,653.580000002661,-0.055822242280938725 +130717,653.5850000026611,-0.05582217811876535 +130718,653.5900000026612,-0.05582211396805974 +130719,653.5950000026613,-0.055822049828818734 +130720,653.6000000026614,-0.05582198570103921 +130721,653.6050000026615,-0.05582192158471804 +130722,653.6100000026616,-0.055821857479852084 +130723,653.6150000026618,-0.0558217933864382 +130724,653.6200000026619,-0.05582172930447327 +130725,653.625000002662,-0.055821665233954154 +130726,653.6300000026621,-0.055821601174877715 +130727,653.6350000026622,-0.05582153712724082 +130728,653.6400000026623,-0.055821473091040345 +130729,653.6450000026624,-0.05582140906627316 +130730,653.6500000026625,-0.055821345052936136 +130731,653.6550000026626,-0.055821281051026135 +130732,653.6600000026627,-0.05582121706054004 +130733,653.6650000026629,-0.05582115308147472 +130734,653.670000002663,-0.05582108911382704 +130735,653.6750000026631,-0.05582102515759388 +130736,653.6800000026632,-0.05582096121277212 +130737,653.6850000026633,-0.05582089727935862 +130738,653.6900000026634,-0.05582083335735027 +130739,653.6950000026635,-0.05582076944674394 +130740,653.7000000026636,-0.05582070554753651 +130741,653.7050000026637,-0.05582064165972484 +130742,653.7100000026638,-0.055820577783305826 +130743,653.7150000026639,-0.05582051391827633 +130744,653.720000002664,-0.05582045006463325 +130745,653.7250000026642,-0.055820386222373446 +130746,653.7300000026643,-0.05582032239149381 +130747,653.7350000026644,-0.055820258571991216 +130748,653.7400000026645,-0.05582019476386256 +130749,653.7450000026646,-0.055820130967104704 +130750,653.7500000026647,-0.05582006718171453 +130751,653.7550000026648,-0.055820003407688945 +130752,653.7600000026649,-0.05581993964502482 +130753,653.765000002665,-0.05581987589371903 +130754,653.7700000026651,-0.05581981215376845 +130755,653.7750000026653,-0.05581974842516999 +130756,653.7800000026654,-0.05581968470792053 +130757,653.7850000026655,-0.05581962100201695 +130758,653.7900000026656,-0.055819557307456136 +130759,653.7950000026657,-0.05581949362423498 +130760,653.8000000026658,-0.05581942995235036 +130761,653.8050000026659,-0.055819366291799184 +130762,653.810000002666,-0.055819302642578325 +130763,653.8150000026661,-0.055819239004684676 +130764,653.8200000026662,-0.055819175378115135 +130765,653.8250000026663,-0.05581911176286659 +130766,653.8300000026665,-0.055819048158935916 +130767,653.8350000026666,-0.05581898456632003 +130768,653.8400000026667,-0.055818920985015806 +130769,653.8450000026668,-0.05581885741502015 +130770,653.8500000026669,-0.05581879385632995 +130771,653.855000002667,-0.05581873030894211 +130772,653.8600000026671,-0.055818666772853506 +130773,653.8650000026672,-0.05581860324806105 +130774,653.8700000026673,-0.05581853973456164 +130775,653.8750000026674,-0.05581847623235216 +130776,653.8800000026675,-0.05581841274142951 +130777,653.8850000026677,-0.055818349261790585 +130778,653.8900000026678,-0.055818285793432294 +130779,653.8950000026679,-0.05581822233635154 +130780,653.900000002668,-0.05581815889054521 +130781,653.9050000026681,-0.0558180954560102 +130782,653.9100000026682,-0.05581803203274343 +130783,653.9150000026683,-0.055817968620741794 +130784,653.9200000026684,-0.05581790522000219 +130785,653.9250000026685,-0.05581784183052152 +130786,653.9300000026686,-0.05581777845229668 +130787,653.9350000026687,-0.05581771508532459 +130788,653.9400000026689,-0.05581765172960216 +130789,653.945000002669,-0.05581758838512627 +130790,653.9500000026691,-0.055817525051893836 +130791,653.9550000026692,-0.055817461729901784 +130792,653.9600000026693,-0.055817398419147 +130793,653.9650000026694,-0.055817335119626395 +130794,653.9700000026695,-0.05581727183133687 +130795,653.9750000026696,-0.05581720855427534 +130796,653.9800000026697,-0.05581714528843871 +130797,653.9850000026698,-0.055817082033823906 +130798,653.99000000267,-0.05581701879042782 +130799,653.99500000267,-0.05581695555824737 +130800,654.0000000026702,-0.05581689233727947 +130801,654.0050000026703,-0.055816829127521034 +130802,654.0100000026704,-0.05581676592896896 +130803,654.0150000026705,-0.05581670274162018 +130804,654.0200000026706,-0.055816639565471594 +130805,654.0250000026707,-0.055816576400520124 +130806,654.0300000026708,-0.055816513246762685 +130807,654.0350000026709,-0.0558164501041962 +130808,654.040000002671,-0.05581638697281756 +130809,654.0450000026711,-0.055816323852623695 +130810,654.0500000026713,-0.05581626074361154 +130811,654.0550000026714,-0.05581619764577799 +130812,654.0600000026715,-0.055816134559119976 +130813,654.0650000026716,-0.055816071483634405 +130814,654.0700000026717,-0.05581600841931821 +130815,654.0750000026718,-0.055815945366168296 +130816,654.0800000026719,-0.0558158823241816 +130817,654.085000002672,-0.05581581929335504 +130818,654.0900000026721,-0.05581575627368553 +130819,654.0950000026722,-0.05581569326516998 +130820,654.1000000026723,-0.055815630267805345 +130821,654.1050000026725,-0.05581556728158853 +130822,654.1100000026726,-0.05581550430651646 +130823,654.1150000026727,-0.05581544134258607 +130824,654.1200000026728,-0.05581537838979428 +130825,654.1250000026729,-0.05581531544813801 +130826,654.130000002673,-0.0558152525176142 +130827,654.1350000026731,-0.05581518959821976 +130828,654.1400000026732,-0.05581512668995163 +130829,654.1450000026733,-0.05581506379280673 +130830,654.1500000026734,-0.05581500090678199 +130831,654.1550000026735,-0.05581493803187435 +130832,654.1600000026737,-0.05581487516808074 +130833,654.1650000026738,-0.055814812315398074 +130834,654.1700000026739,-0.0558147494738233 +130835,654.175000002674,-0.05581468664335334 +130836,654.1800000026741,-0.05581462382398513 +130837,654.1850000026742,-0.055814561015715615 +130838,654.1900000026743,-0.0558144982185417 +130839,654.1950000026744,-0.05581443543246034 +130840,654.2000000026745,-0.05581437265746847 +130841,654.2050000026746,-0.05581430989356302 +130842,654.2100000026747,-0.05581424714074093 +130843,654.2150000026749,-0.055814184398999135 +130844,654.220000002675,-0.05581412166833456 +130845,654.2250000026751,-0.05581405894874416 +130846,654.2300000026752,-0.055813996240224865 +130847,654.2350000026753,-0.05581393354277363 +130848,654.2400000026754,-0.05581387085638737 +130849,654.2450000026755,-0.055813808181063025 +130850,654.2500000026756,-0.055813745516797554 +130851,654.2550000026757,-0.055813682863587885 +130852,654.2600000026758,-0.055813620221430965 +130853,654.265000002676,-0.05581355759032374 +130854,654.270000002676,-0.05581349497026315 +130855,654.2750000026762,-0.05581343236124613 +130856,654.2800000026763,-0.05581336976326964 +130857,654.2850000026764,-0.05581330717633061 +130858,654.2900000026765,-0.05581324460042599 +130859,654.2950000026766,-0.05581318203555273 +130860,654.3000000026767,-0.05581311948170777 +130861,654.3050000026768,-0.05581305693888807 +130862,654.3100000026769,-0.05581299440709056 +130863,654.315000002677,-0.0558129318863122 +130864,654.3200000026771,-0.055812869376549945 +130865,654.3250000026773,-0.05581280687780073 +130866,654.3300000026774,-0.055812744390061494 +130867,654.3350000026775,-0.055812681913329214 +130868,654.3400000026776,-0.05581261944760084 +130869,654.3450000026777,-0.0558125569928733 +130870,654.3500000026778,-0.05581249454914357 +130871,654.3550000026779,-0.055812432116408586 +130872,654.360000002678,-0.055812369694665305 +130873,654.3650000026781,-0.055812307283910685 +130874,654.3700000026782,-0.05581224488414168 +130875,654.3750000026783,-0.055812182495355245 +130876,654.3800000026785,-0.05581212011754833 +130877,654.3850000026786,-0.055812057750717896 +130878,654.3900000026787,-0.055811995394860904 +130879,654.3950000026788,-0.055811933049974304 +130880,654.4000000026789,-0.055811870716055055 +130881,654.405000002679,-0.055811808393100126 +130882,654.4100000026791,-0.055811746081106464 +130883,654.4150000026792,-0.055811683780071036 +130884,654.4200000026793,-0.0558116214899908 +130885,654.4250000026794,-0.05581155921086271 +130886,654.4300000026795,-0.05581149694268373 +130887,654.4350000026797,-0.055811434685450835 +130888,654.4400000026798,-0.055811372439160976 +130889,654.4450000026799,-0.05581131020381112 +130890,654.45000000268,-0.05581124797939822 +130891,654.4550000026801,-0.05581118576591925 +130892,654.4600000026802,-0.05581112356337119 +130893,654.4650000026803,-0.055811061371750965 +130894,654.4700000026804,-0.05581099919105559 +130895,654.4750000026805,-0.055810937021282 +130896,654.4800000026806,-0.05581087486242717 +130897,654.4850000026807,-0.05581081271448807 +130898,654.4900000026809,-0.05581075057746166 +130899,654.495000002681,-0.05581068845134492 +130900,654.5000000026811,-0.0558106263361348 +130901,654.5050000026812,-0.05581056423182829 +130902,654.5100000026813,-0.05581050213842237 +130903,654.5150000026814,-0.05581044005591397 +130904,654.5200000026815,-0.05581037798430011 +130905,654.5250000026816,-0.05581031592357772 +130906,654.5300000026817,-0.055810253873743804 +130907,654.5350000026818,-0.05581019183479532 +130908,654.540000002682,-0.05581012980672925 +130909,654.5450000026821,-0.055810067789542575 +130910,654.5500000026822,-0.055810005783232246 +130911,654.5550000026823,-0.05580994378779526 +130912,654.5600000026824,-0.05580988180322859 +130913,654.5650000026825,-0.055809819829529206 +130914,654.5700000026826,-0.055809757866694086 +130915,654.5750000026827,-0.05580969591472021 +130916,654.5800000026828,-0.05580963397360456 +130917,654.5850000026829,-0.05580957204334412 +130918,654.590000002683,-0.05580951012393587 +130919,654.5950000026832,-0.055809448215376777 +130920,654.6000000026833,-0.05580938631766382 +130921,654.6050000026834,-0.05580932443079399 +130922,654.6100000026835,-0.055809262554764275 +130923,654.6150000026836,-0.05580920068957165 +130924,654.6200000026837,-0.05580913883521311 +130925,654.6250000026838,-0.055809076991685615 +130926,654.6300000026839,-0.055809015158986175 +130927,654.635000002684,-0.05580895333711175 +130928,654.6400000026841,-0.05580889152605934 +130929,654.6450000026842,-0.05580882972582593 +130930,654.6500000026844,-0.055808767936408515 +130931,654.6550000026845,-0.05580870615780407 +130932,654.6600000026846,-0.05580864439000959 +130933,654.6650000026847,-0.055808582633022054 +130934,654.6700000026848,-0.055808520886838464 +130935,654.6750000026849,-0.05580845915145581 +130936,654.680000002685,-0.05580839742687107 +130937,654.6850000026851,-0.055808335713081234 +130938,654.6900000026852,-0.05580827401008329 +130939,654.6950000026853,-0.05580821231787425 +130940,654.7000000026854,-0.05580815063645109 +130941,654.7050000026856,-0.05580808896581081 +130942,654.7100000026857,-0.05580802730595041 +130943,654.7150000026858,-0.05580796565686687 +130944,654.7200000026859,-0.055807904018557196 +130945,654.725000002686,-0.05580784239101837 +130946,654.7300000026861,-0.055807780774247404 +130947,654.7350000026862,-0.05580771916824128 +130948,654.7400000026863,-0.055807657572997 +130949,654.7450000026864,-0.055807595988511566 +130950,654.7500000026865,-0.055807534414781985 +130951,654.7550000026866,-0.05580747285180523 +130952,654.7600000026868,-0.05580741129957832 +130953,654.7650000026869,-0.05580734975809826 +130954,654.770000002687,-0.05580728822736202 +130955,654.7750000026871,-0.05580722670736664 +130956,654.7800000026872,-0.05580716519810909 +130957,654.7850000026873,-0.05580710369958639 +130958,654.7900000026874,-0.055807042211795534 +130959,654.7950000026875,-0.05580698073473353 +130960,654.8000000026876,-0.055806919268397384 +130961,654.8050000026877,-0.05580685781278409 +130962,654.8100000026878,-0.05580679636789067 +130963,654.815000002688,-0.055806734933714124 +130964,654.8200000026881,-0.055806673510251446 +130965,654.8250000026882,-0.05580661209749965 +130966,654.8300000026883,-0.05580655069545576 +130967,654.8350000026884,-0.05580648930411675 +130968,654.8400000026885,-0.05580642792347966 +130969,654.8450000026886,-0.05580636655354148 +130970,654.8500000026887,-0.05580630519429923 +130971,654.8550000026888,-0.055806243845749906 +130972,654.8600000026889,-0.055806182507890524 +130973,654.865000002689,-0.05580612118071811 +130974,654.8700000026892,-0.055806059864229665 +130975,654.8750000026893,-0.05580599855842221 +130976,654.8800000026894,-0.055805937263292735 +130977,654.8850000026895,-0.05580587597883827 +130978,654.8900000026896,-0.055805814705055835 +130979,654.8950000026897,-0.05580575344194244 +130980,654.9000000026898,-0.05580569218949509 +130981,654.9050000026899,-0.055805630947710815 +130982,654.91000000269,-0.055805569716586616 +130983,654.9150000026901,-0.05580550849611953 +130984,654.9200000026902,-0.05580544728630656 +130985,654.9250000026904,-0.05580538608714473 +130986,654.9300000026905,-0.05580532489863104 +130987,654.9350000026906,-0.05580526372076254 +130988,654.9400000026907,-0.055805202553536236 +130989,654.9450000026908,-0.05580514139694914 +130990,654.9500000026909,-0.05580508025099829 +130991,654.955000002691,-0.05580501911568069 +130992,654.9600000026911,-0.05580495799099337 +130993,654.9650000026912,-0.05580489687693336 +130994,654.9700000026913,-0.05580483577349767 +130995,654.9750000026914,-0.05580477468068334 +130996,654.9800000026916,-0.055804713598487383 +130997,654.9850000026917,-0.05580465252690682 +130998,654.9900000026918,-0.055804591465938684 +130999,654.9950000026919,-0.055804530415580006 +131000,655.000000002692,-0.055804469375827795 +131001,655.0050000026921,-0.055804408346679095 +131002,655.0100000026922,-0.05580434732813093 +131003,655.0150000026923,-0.05580428632018033 +131004,655.0200000026924,-0.05580422532282431 +131005,655.0250000026925,-0.05580416433605991 +131006,655.0300000026926,-0.055804103359884165 +131007,655.0350000026928,-0.0558040423942941 +131008,655.0400000026929,-0.05580398143928675 +131009,655.045000002693,-0.05580392049485914 +131010,655.0500000026931,-0.055803859561008314 +131011,655.0550000026932,-0.05580379863773129 +131012,655.0600000026933,-0.055803737725025115 +131013,655.0650000026934,-0.05580367682288682 +131014,655.0700000026935,-0.055803615931313416 +131015,655.0750000026936,-0.05580355505030197 +131016,655.0800000026937,-0.0558034941798495 +131017,655.0850000026938,-0.05580343331995304 +131018,655.090000002694,-0.055803372470609645 +131019,655.0950000026941,-0.055803311631816344 +131020,655.1000000026942,-0.05580325080357018 +131021,655.1050000026943,-0.055803189985868175 +131022,655.1100000026944,-0.05580312917870738 +131023,655.1150000026945,-0.05580306838208483 +131024,655.1200000026946,-0.05580300759599757 +131025,655.1250000026947,-0.055802946820442643 +131026,655.1300000026948,-0.05580288605541709 +131027,655.1350000026949,-0.055802825300917944 +131028,655.140000002695,-0.055802764556942254 +131029,655.1450000026952,-0.055802703823487065 +131030,655.1500000026953,-0.05580264310054942 +131031,655.1550000026954,-0.055802582388126354 +131032,655.1600000026955,-0.05580252168621492 +131033,655.1650000026956,-0.055802460994812154 +131034,655.1700000026957,-0.05580240031391512 +131035,655.1750000026958,-0.05580233964352084 +131036,655.1800000026959,-0.05580227898362638 +131037,655.185000002696,-0.055802218334228784 +131038,655.1900000026961,-0.05580215769532511 +131039,655.1950000026962,-0.05580209706691238 +131040,655.2000000026964,-0.055802036448987666 +131041,655.2050000026965,-0.055801975841548015 +131042,655.2100000026966,-0.05580191524459046 +131043,655.2150000026967,-0.05580185465811208 +131044,655.2200000026968,-0.05580179408210991 +131045,655.2250000026969,-0.055801733516581 +131046,655.230000002697,-0.0558016729615224 +131047,655.2350000026971,-0.05580161241693118 +131048,655.2400000026972,-0.055801551882804376 +131049,655.2450000026973,-0.055801491359139054 +131050,655.2500000026974,-0.05580143084593226 +131051,655.2550000026976,-0.05580137034318106 +131052,655.2600000026977,-0.055801309850882504 +131053,655.2650000026978,-0.05580124936903364 +131054,655.2700000026979,-0.05580118889763155 +131055,655.275000002698,-0.055801128436673265 +131056,655.2800000026981,-0.05580106798615586 +131057,655.2850000026982,-0.05580100754607638 +131058,655.2900000026983,-0.0558009471164319 +131059,655.2950000026984,-0.05580088669721947 +131060,655.3000000026985,-0.055800826288436155 +131061,655.3050000026986,-0.055800765890079006 +131062,655.3100000026988,-0.055800705502145095 +131063,655.3150000026989,-0.05580064512463149 +131064,655.320000002699,-0.055800584757535236 +131065,655.3250000026991,-0.0558005244008534 +131066,655.3300000026992,-0.055800464054583075 +131067,655.3350000026993,-0.05580040371872128 +131068,655.3400000026994,-0.055800343393265124 +131069,655.3450000026995,-0.05580028307821164 +131070,655.3500000026996,-0.05580022277355791 +131071,655.3550000026997,-0.05580016247930098 +131072,655.3600000026998,-0.05580010219543795 +131073,655.3650000027,-0.05580004192196586 +131074,655.3700000027001,-0.055799981658881795 +131075,655.3750000027002,-0.05579992140618282 +131076,655.3800000027003,-0.055799861163865996 +131077,655.3850000027004,-0.055799800931928406 +131078,655.3900000027005,-0.05579974071036712 +131079,655.3950000027006,-0.0557996804991792 +131080,655.4000000027007,-0.05579962029836173 +131081,655.4050000027008,-0.05579956010791176 +131082,655.4100000027009,-0.05579949992782639 +131083,655.415000002701,-0.05579943975810266 +131084,655.4200000027012,-0.05579937959873769 +131085,655.4250000027013,-0.05579931944972852 +131086,655.4300000027014,-0.05579925931107222 +131087,655.4350000027015,-0.05579919918276589 +131088,655.4400000027016,-0.055799139064806595 +131089,655.4450000027017,-0.05579907895719141 +131090,655.4500000027018,-0.05579901885991743 +131091,655.4550000027019,-0.05579895877298171 +131092,655.460000002702,-0.05579889869638133 +131093,655.4650000027021,-0.05579883863011338 +131094,655.4700000027022,-0.055798778574174944 +131095,655.4750000027024,-0.055798718528563086 +131096,655.4800000027025,-0.0557986584932749 +131097,655.4850000027026,-0.05579859846830746 +131098,655.4900000027027,-0.055798538453657856 +131099,655.4950000027028,-0.055798478449323154 +131100,655.5000000027029,-0.05579841845530045 +131101,655.505000002703,-0.055798358471586824 +131102,655.5100000027031,-0.05579829849817936 +131103,655.5150000027032,-0.055798238535075144 +131104,655.5200000027033,-0.05579817858227126 +131105,655.5250000027035,-0.0557981186397648 +131106,655.5300000027036,-0.05579805870755284 +131107,655.5350000027037,-0.05579799878563248 +131108,655.5400000027038,-0.05579793887400078 +131109,655.5450000027039,-0.05579787897265486 +131110,655.550000002704,-0.0557978190815918 +131111,655.5550000027041,-0.05579775920080867 +131112,655.5600000027042,-0.055797699330302576 +131113,655.5650000027043,-0.055797639470070624 +131114,655.5700000027044,-0.05579757962010987 +131115,655.5750000027045,-0.055797519780417436 +131116,655.5800000027047,-0.05579745995099039 +131117,655.5850000027048,-0.05579740013182584 +131118,655.5900000027049,-0.05579734032292088 +131119,655.595000002705,-0.05579728052427258 +131120,655.6000000027051,-0.055797220735878054 +131121,655.6050000027052,-0.055797160957734404 +131122,655.6100000027053,-0.055797101189838716 +131123,655.6150000027054,-0.05579704143218808 +131124,655.6200000027055,-0.05579698168477961 +131125,655.6250000027056,-0.055796921947610385 +131126,655.6300000027057,-0.055796862220677514 +131127,655.6350000027059,-0.055796802503978074 +131128,655.640000002706,-0.05579674279750918 +131129,655.6450000027061,-0.055796683101267945 +131130,655.6500000027062,-0.05579662341525145 +131131,655.6550000027063,-0.05579656373945679 +131132,655.6600000027064,-0.055796504073881086 +131133,655.6650000027065,-0.05579644441852142 +131134,655.6700000027066,-0.055796384773374896 +131135,655.6750000027067,-0.055796325138438636 +131136,655.6800000027068,-0.055796265513709725 +131137,655.6850000027069,-0.05579620589918527 +131138,655.690000002707,-0.05579614629486238 +131139,655.6950000027072,-0.05579608670073816 +131140,655.7000000027073,-0.0557960271168097 +131141,655.7050000027074,-0.05579596754307413 +131142,655.7100000027075,-0.05579590797952854 +131143,655.7150000027076,-0.05579584842617004 +131144,655.7200000027077,-0.05579578888299574 +131145,655.7250000027078,-0.055795729350002744 +131146,655.7300000027079,-0.055795669827188164 +131147,655.735000002708,-0.05579561031454911 +131148,655.7400000027081,-0.055795550812082685 +131149,655.7450000027083,-0.055795491319786 +131150,655.7500000027084,-0.055795431837656166 +131151,655.7550000027085,-0.055795372365690314 +131152,655.7600000027086,-0.05579531290388553 +131153,655.7650000027087,-0.05579525345223894 +131154,655.7700000027088,-0.05579519401074765 +131155,655.7750000027089,-0.05579513457940878 +131156,655.780000002709,-0.05579507515821945 +131157,655.7850000027091,-0.05579501574717675 +131158,655.7900000027092,-0.05579495634627782 +131159,655.7950000027093,-0.055794896955519764 +131160,655.8000000027095,-0.055794837574899704 +131161,655.8050000027096,-0.05579477820441475 +131162,655.8100000027097,-0.055794718844062036 +131163,655.8150000027098,-0.055794659493838654 +131164,655.8200000027099,-0.05579460015374174 +131165,655.82500000271,-0.05579454082376842 +131166,655.8300000027101,-0.05579448150391579 +131167,655.8350000027102,-0.05579442219418098 +131168,655.8400000027103,-0.05579436289456112 +131169,655.8450000027104,-0.05579430360505333 +131170,655.8500000027105,-0.05579424432565473 +131171,655.8550000027107,-0.05579418505636244 +131172,655.8600000027108,-0.05579412579717358 +131173,655.8650000027109,-0.05579406654808527 +131174,655.870000002711,-0.05579400730909464 +131175,655.8750000027111,-0.055793948080198816 +131176,655.8800000027112,-0.055793888861394934 +131177,655.8850000027113,-0.0557938296526801 +131178,655.8900000027114,-0.055793770454051456 +131179,655.8950000027115,-0.05579371126550612 +131180,655.9000000027116,-0.055793652087041214 +131181,655.9050000027117,-0.05579359291865387 +131182,655.9100000027119,-0.05579353376034122 +131183,655.915000002712,-0.0557934746121004 +131184,655.9200000027121,-0.055793415473928534 +131185,655.9250000027122,-0.05579335634582275 +131186,655.9300000027123,-0.055793297227780175 +131187,655.9350000027124,-0.05579323811979795 +131188,655.9400000027125,-0.0557931790218732 +131189,655.9450000027126,-0.05579311993400306 +131190,655.9500000027127,-0.055793060856184656 +131191,655.9550000027128,-0.05579300178841513 +131192,655.960000002713,-0.05579294273069161 +131193,655.965000002713,-0.055792883683011225 +131194,655.9700000027132,-0.05579282464537113 +131195,655.9750000027133,-0.05579276561776844 +131196,655.9800000027134,-0.055792706600200304 +131197,655.9850000027135,-0.05579264759266387 +131198,655.9900000027136,-0.05579258859515625 +131199,655.9950000027137,-0.0557925296076746 +131200,656.0000000027138,-0.05579247063021604 +131201,656.0050000027139,-0.05579241166277774 +131202,656.010000002714,-0.055792352705356804 +131203,656.0150000027141,-0.05579229375795039 +131204,656.0200000027143,-0.05579223482055563 +131205,656.0250000027144,-0.05579217589316968 +131206,656.0300000027145,-0.05579211697578968 +131207,656.0350000027146,-0.05579205806841276 +131208,656.0400000027147,-0.05579199917103607 +131209,656.0450000027148,-0.05579194028365674 +131210,656.0500000027149,-0.05579188140627194 +131211,656.055000002715,-0.05579182253887881 +131212,656.0600000027151,-0.05579176368147447 +131213,656.0650000027152,-0.05579170483405608 +131214,656.0700000027153,-0.05579164599662079 +131215,656.0750000027155,-0.055791587169165754 +131216,656.0800000027156,-0.0557915283516881 +131217,656.0850000027157,-0.05579146954418499 +131218,656.0900000027158,-0.05579141074665357 +131219,656.0950000027159,-0.05579135195909099 +131220,656.100000002716,-0.05579129318149438 +131221,656.1050000027161,-0.05579123441386092 +131222,656.1100000027162,-0.05579117565618775 +131223,656.1150000027163,-0.05579111690847201 +131224,656.1200000027164,-0.05579105817071085 +131225,656.1250000027165,-0.05579099944290145 +131226,656.1300000027167,-0.05579094072504094 +131227,656.1350000027168,-0.05579088201712648 +131228,656.1400000027169,-0.05579082331915521 +131229,656.145000002717,-0.055790764631124305 +131230,656.1500000027171,-0.05579070595303091 +131231,656.1550000027172,-0.05579064728487218 +131232,656.1600000027173,-0.05579058862664527 +131233,656.1650000027174,-0.05579052997834735 +131234,656.1700000027175,-0.055790471339975556 +131235,656.1750000027176,-0.05579041271152706 +131236,656.1800000027177,-0.05579035409299901 +131237,656.1850000027179,-0.05579029548438858 +131238,656.190000002718,-0.05579023688569292 +131239,656.1950000027181,-0.05579017829690919 +131240,656.2000000027182,-0.05579011971803455 +131241,656.2050000027183,-0.05579006114906615 +131242,656.2100000027184,-0.055790002590001164 +131243,656.2150000027185,-0.05578994404083676 +131244,656.2200000027186,-0.055789885501570095 +131245,656.2250000027187,-0.05578982697219833 +131246,656.2300000027188,-0.05578976845271862 +131247,656.235000002719,-0.055789709943128145 +131248,656.2400000027191,-0.055789651443424064 +131249,656.2450000027192,-0.05578959295360355 +131250,656.2500000027193,-0.05578953447366375 +131251,656.2550000027194,-0.05578947600360185 +131252,656.2600000027195,-0.055789417543415 +131253,656.2650000027196,-0.05578935909310037 +131254,656.2700000027197,-0.055789300652655145 +131255,656.2750000027198,-0.055789242222076485 +131256,656.2800000027199,-0.055789183801361546 +131257,656.28500000272,-0.055789125390507524 +131258,656.2900000027201,-0.05578906698951157 +131259,656.2950000027203,-0.055789008598370854 +131260,656.3000000027204,-0.05578895021708256 +131261,656.3050000027205,-0.05578889184564385 +131262,656.3100000027206,-0.05578883348405189 +131263,656.3150000027207,-0.05578877513230387 +131264,656.3200000027208,-0.05578871679039695 +131265,656.3250000027209,-0.055788658458328304 +131266,656.330000002721,-0.055788600136095115 +131267,656.3350000027211,-0.05578854182369456 +131268,656.3400000027212,-0.05578848352112381 +131269,656.3450000027213,-0.05578842522838003 +131270,656.3500000027215,-0.05578836694546041 +131271,656.3550000027216,-0.05578830867236213 +131272,656.3600000027217,-0.05578825040908237 +131273,656.3650000027218,-0.05578819215561829 +131274,656.3700000027219,-0.05578813391196708 +131275,656.375000002722,-0.05578807567812592 +131276,656.3800000027221,-0.05578801745409199 +131277,656.3850000027222,-0.055787959239862475 +131278,656.3900000027223,-0.055787901035434545 +131279,656.3950000027224,-0.055787842840805395 +131280,656.4000000027225,-0.05578778465597221 +131281,656.4050000027227,-0.05578772648093215 +131282,656.4100000027228,-0.05578766831568241 +131283,656.4150000027229,-0.055787610160220186 +131284,656.420000002723,-0.05578755201454264 +131285,656.4250000027231,-0.05578749387864697 +131286,656.4300000027232,-0.055787435752530375 +131287,656.4350000027233,-0.055787377636190016 +131288,656.4400000027234,-0.05578731952962309 +131289,656.4450000027235,-0.055787261432826786 +131290,656.4500000027236,-0.05578720334579829 +131291,656.4550000027238,-0.05578714526853479 +131292,656.4600000027239,-0.055787087201033474 +131293,656.465000002724,-0.05578702914329153 +131294,656.4700000027241,-0.055786971095306156 +131295,656.4750000027242,-0.05578691305707455 +131296,656.4800000027243,-0.05578685502859387 +131297,656.4850000027244,-0.05578679700986133 +131298,656.4900000027245,-0.05578673900087412 +131299,656.4950000027246,-0.05578668100162943 +131300,656.5000000027247,-0.05578662301212447 +131301,656.5050000027248,-0.055786565032356406 +131302,656.510000002725,-0.055786507062322445 +131303,656.5150000027251,-0.055786449102019776 +131304,656.5200000027252,-0.055786391151445604 +131305,656.5250000027253,-0.055786333210597124 +131306,656.5300000027254,-0.055786275279471526 +131307,656.5350000027255,-0.05578621735806601 +131308,656.5400000027256,-0.055786159446377784 +131309,656.5450000027257,-0.05578610154440402 +131310,656.5500000027258,-0.055786043652141945 +131311,656.5550000027259,-0.055785985769588736 +131312,656.560000002726,-0.0557859278967416 +131313,656.5650000027262,-0.055785870033597744 +131314,656.5700000027263,-0.05578581218015437 +131315,656.5750000027264,-0.05578575433640866 +131316,656.5800000027265,-0.05578569650235784 +131317,656.5850000027266,-0.05578563867799909 +131318,656.5900000027267,-0.05578558086332963 +131319,656.5950000027268,-0.05578552305834666 +131320,656.6000000027269,-0.055785465263047375 +131321,656.605000002727,-0.055785407477428994 +131322,656.6100000027271,-0.05578534970148871 +131323,656.6150000027272,-0.05578529193522374 +131324,656.6200000027274,-0.05578523417863127 +131325,656.6250000027275,-0.05578517643170852 +131326,656.6300000027276,-0.055785118694452705 +131327,656.6350000027277,-0.055785060966861026 +131328,656.6400000027278,-0.055785003248930695 +131329,656.6450000027279,-0.05578494554065891 +131330,656.650000002728,-0.05578488784204288 +131331,656.6550000027281,-0.05578483015307983 +131332,656.6600000027282,-0.05578477247376695 +131333,656.6650000027283,-0.05578471480410147 +131334,656.6700000027284,-0.05578465714408058 +131335,656.6750000027286,-0.05578459949370152 +131336,656.6800000027287,-0.055784541852961486 +131337,656.6850000027288,-0.055784484221857694 +131338,656.6900000027289,-0.05578442660038736 +131339,656.695000002729,-0.055784368988547696 +131340,656.7000000027291,-0.05578431138633592 +131341,656.7050000027292,-0.05578425379374923 +131342,656.7100000027293,-0.055784196210784856 +131343,656.7150000027294,-0.05578413863744002 +131344,656.7200000027295,-0.05578408107371193 +131345,656.7250000027296,-0.05578402351959781 +131346,656.7300000027298,-0.05578396597509487 +131347,656.7350000027299,-0.055783908440200335 +131348,656.74000000273,-0.05578385091491143 +131349,656.7450000027301,-0.05578379339922536 +131350,656.7500000027302,-0.055783735893139355 +131351,656.7550000027303,-0.05578367839665063 +131352,656.7600000027304,-0.05578362090975641 +131353,656.7650000027305,-0.05578356343245391 +131354,656.7700000027306,-0.05578350596474036 +131355,656.7750000027307,-0.05578344850661297 +131356,656.7800000027308,-0.05578339105806899 +131357,656.785000002731,-0.05578333361910562 +131358,656.7900000027311,-0.0557832761897201 +131359,656.7950000027312,-0.05578321876990964 +131360,656.8000000027313,-0.05578316135967147 +131361,656.8050000027314,-0.055783103959002815 +131362,656.8100000027315,-0.05578304656790091 +131363,656.8150000027316,-0.055782989186362986 +131364,656.8200000027317,-0.05578293181438626 +131365,656.8250000027318,-0.05578287445196796 +131366,656.8300000027319,-0.05578281709910532 +131367,656.835000002732,-0.05578275975579555 +131368,656.8400000027322,-0.05578270242203591 +131369,656.8450000027323,-0.055782645097823616 +131370,656.8500000027324,-0.0557825877831559 +131371,656.8550000027325,-0.05578253047803 +131372,656.8600000027326,-0.05578247318244314 +131373,656.8650000027327,-0.05578241589639255 +131374,656.8700000027328,-0.05578235861987547 +131375,656.8750000027329,-0.05578230135288912 +131376,656.880000002733,-0.055782244095430755 +131377,656.8850000027331,-0.0557821868474976 +131378,656.8900000027332,-0.05578212960908688 +131379,656.8950000027334,-0.05578207238019584 +131380,656.9000000027335,-0.05578201516082173 +131381,656.9050000027336,-0.05578195795096177 +131382,656.9100000027337,-0.05578190075061319 +131383,656.9150000027338,-0.05578184355977325 +131384,656.9200000027339,-0.05578178637843918 +131385,656.925000002734,-0.055781729206608205 +131386,656.9300000027341,-0.055781672044277586 +131387,656.9350000027342,-0.05578161489144455 +131388,656.9400000027343,-0.055781557748106336 +131389,656.9450000027344,-0.055781500614260196 +131390,656.9500000027346,-0.055781443489903354 +131391,656.9550000027347,-0.05578138637503307 +131392,656.9600000027348,-0.05578132926964658 +131393,656.9650000027349,-0.05578127217374112 +131394,656.970000002735,-0.05578121508731394 +131395,656.9750000027351,-0.05578115801036229 +131396,656.9800000027352,-0.05578110094288341 +131397,656.9850000027353,-0.05578104388487455 +131398,656.9900000027354,-0.055780986836332945 +131399,656.9950000027355,-0.05578092979725585 +131400,657.0000000027356,-0.055780872767640516 +131401,657.0050000027358,-0.05578081574748418 +131402,657.0100000027359,-0.05578075873678409 +131403,657.015000002736,-0.05578070173553751 +131404,657.0200000027361,-0.05578064474374166 +131405,657.0250000027362,-0.05578058776139382 +131406,657.0300000027363,-0.05578053078849122 +131407,657.0350000027364,-0.055780473825031124 +131408,657.0400000027365,-0.055780416871010784 +131409,657.0450000027366,-0.055780359926427436 +131410,657.0500000027367,-0.05578030299127835 +131411,657.0550000027368,-0.055780246065560764 +131412,657.060000002737,-0.055780189149271936 +131413,657.0650000027371,-0.055780132242409124 +131414,657.0700000027372,-0.05578007534496959 +131415,657.0750000027373,-0.055780018456950575 +131416,657.0800000027374,-0.055779961578349344 +131417,657.0850000027375,-0.05577990470916315 +131418,657.0900000027376,-0.05577984784938924 +131419,657.0950000027377,-0.055779790999024886 +131420,657.1000000027378,-0.05577973415806733 +131421,657.1050000027379,-0.05577967732651385 +131422,657.110000002738,-0.055779620504361686 +131423,657.1150000027382,-0.0557795636916081 +131424,657.1200000027383,-0.05577950688825037 +131425,657.1250000027384,-0.05577945009428573 +131426,657.1300000027385,-0.05577939330971147 +131427,657.1350000027386,-0.05577933653452483 +131428,657.1400000027387,-0.05577927976872307 +131429,657.1450000027388,-0.05577922301230346 +131430,657.1500000027389,-0.055779166265263275 +131431,657.155000002739,-0.055779109527599756 +131432,657.1600000027391,-0.05577905279931018 +131433,657.1650000027392,-0.05577899608039181 +131434,657.1700000027394,-0.05577893937084191 +131435,657.1750000027395,-0.05577888267065775 +131436,657.1800000027396,-0.055778825979836584 +131437,657.1850000027397,-0.05577876929837569 +131438,657.1900000027398,-0.05577871262627234 +131439,657.1950000027399,-0.05577865596352379 +131440,657.20000000274,-0.055778599310127304 +131441,657.2050000027401,-0.05577854266608017 +131442,657.2100000027402,-0.055778486031379644 +131443,657.2150000027403,-0.055778429406023 +131444,657.2200000027404,-0.0557783727900075 +131445,657.2250000027406,-0.05577831618333042 +131446,657.2300000027407,-0.05577825958598903 +131447,657.2350000027408,-0.055778202997980614 +131448,657.2400000027409,-0.055778146419302434 +131449,657.245000002741,-0.05577808984995176 +131450,657.2500000027411,-0.05577803328992587 +131451,657.2550000027412,-0.055777976739222045 +131452,657.2600000027413,-0.05577792019783755 +131453,657.2650000027414,-0.05577786366576966 +131454,657.2700000027415,-0.05577780714301567 +131455,657.2750000027416,-0.055777750629572825 +131456,657.2800000027418,-0.05577769412543842 +131457,657.2850000027419,-0.055777637630609736 +131458,657.290000002742,-0.05577758114508404 +131459,657.2950000027421,-0.055777524668858616 +131460,657.3000000027422,-0.05577746820193075 +131461,657.3050000027423,-0.0557774117442977 +131462,657.3100000027424,-0.05577735529595677 +131463,657.3150000027425,-0.05577729885690522 +131464,657.3200000027426,-0.05577724242714035 +131465,657.3250000027427,-0.055777186006659436 +131466,657.3300000027428,-0.05577712959545974 +131467,657.335000002743,-0.05577707319353857 +131468,657.3400000027431,-0.05577701680089321 +131469,657.3450000027432,-0.05577696041752093 +131470,657.3500000027433,-0.05577690404341901 +131471,657.3550000027434,-0.05577684767858475 +131472,657.3600000027435,-0.05577679132301542 +131473,657.3650000027436,-0.05577673497670831 +131474,657.3700000027437,-0.05577667863966073 +131475,657.3750000027438,-0.055776622311869944 +131476,657.3800000027439,-0.055776565993333235 +131477,657.385000002744,-0.05577650968404791 +131478,657.3900000027442,-0.055776453384011236 +131479,657.3950000027443,-0.05577639709322051 +131480,657.4000000027444,-0.05577634081167302 +131481,657.4050000027445,-0.055776284539366075 +131482,657.4100000027446,-0.05577622827629695 +131483,657.4150000027447,-0.05577617202246293 +131484,657.4200000027448,-0.05577611577786131 +131485,657.4250000027449,-0.055776059542489397 +131486,657.430000002745,-0.05577600331634446 +131487,657.4350000027451,-0.0557759470994238 +131488,657.4400000027453,-0.05577589089172473 +131489,657.4450000027454,-0.05577583469324452 +131490,657.4500000027455,-0.05577577850398048 +131491,657.4550000027456,-0.0557757223239299 +131492,657.4600000027457,-0.05577566615309007 +131493,657.4650000027458,-0.055775609991458294 +131494,657.4700000027459,-0.05577555383903187 +131495,657.475000002746,-0.055775497695808085 +131496,657.4800000027461,-0.055775441561784246 +131497,657.4850000027462,-0.05577538543695765 +131498,657.4900000027463,-0.055775329321325604 +131499,657.4950000027465,-0.05577527321488539 +131500,657.5000000027466,-0.055775217117634314 +131501,657.5050000027467,-0.05577516102956968 +131502,657.5100000027468,-0.055775104950688784 +131503,657.5150000027469,-0.05577504888098895 +131504,657.520000002747,-0.055774992820467446 +131505,657.5250000027471,-0.0557749367691216 +131506,657.5300000027472,-0.055774880726948695 +131507,657.5350000027473,-0.05577482469394606 +131508,657.5400000027474,-0.055774768670110976 +131509,657.5450000027475,-0.05577471265544077 +131510,657.5500000027477,-0.055774656649932725 +131511,657.5550000027478,-0.05577460065358416 +131512,657.5600000027479,-0.055774544666392374 +131513,657.565000002748,-0.05577448868835468 +131514,657.5700000027481,-0.05577443271946838 +131515,657.5750000027482,-0.055774376759730786 +131516,657.5800000027483,-0.055774320809139216 +131517,657.5850000027484,-0.05577426486769096 +131518,657.5900000027485,-0.055774208935383346 +131519,657.5950000027486,-0.05577415301221366 +131520,657.6000000027487,-0.05577409709817923 +131521,657.6050000027489,-0.055774041193277356 +131522,657.610000002749,-0.055773985297505366 +131523,657.6150000027491,-0.05577392941086056 +131524,657.6200000027492,-0.05577387353334026 +131525,657.6250000027493,-0.05577381766494177 +131526,657.6300000027494,-0.05577376180566242 +131527,657.6350000027495,-0.0557737059554995 +131528,657.6400000027496,-0.05577365011445033 +131529,657.6450000027497,-0.05577359428251225 +131530,657.6500000027498,-0.05577353845968255 +131531,657.65500000275,-0.05577348264595855 +131532,657.66000000275,-0.055773426841337584 +131533,657.6650000027502,-0.05577337104581694 +131534,657.6700000027503,-0.05577331525939397 +131535,657.6750000027504,-0.05577325948206597 +131536,657.6800000027505,-0.05577320371383026 +131537,657.6850000027506,-0.055773147954684146 +131538,657.6900000027507,-0.05577309220462499 +131539,657.6950000027508,-0.055773036463650075 +131540,657.7000000027509,-0.05577298073175673 +131541,657.705000002751,-0.0557729250089423 +131542,657.7100000027511,-0.05577286929520408 +131543,657.7150000027513,-0.055772813590539386 +131544,657.7200000027514,-0.05577275789494557 +131545,657.7250000027515,-0.05577270220841994 +131546,657.7300000027516,-0.055772646530959834 +131547,657.7350000027517,-0.05577259086256255 +131548,657.7400000027518,-0.055772535203225435 +131549,657.7450000027519,-0.0557724795529458 +131550,657.750000002752,-0.05577242391172098 +131551,657.7550000027521,-0.055772368279548304 +131552,657.7600000027522,-0.0557723126564251 +131553,657.7650000027523,-0.0557722570423487 +131554,657.7700000027525,-0.05577220143731641 +131555,657.7750000027526,-0.05577214584132558 +131556,657.7800000027527,-0.05577209025437354 +131557,657.7850000027528,-0.05577203467645761 +131558,657.7900000027529,-0.05577197910757512 +131559,657.795000002753,-0.0557719235477234 +131560,657.8000000027531,-0.0557718679968998 +131561,657.8050000027532,-0.05577181245510163 +131562,657.8100000027533,-0.05577175692232622 +131563,657.8150000027534,-0.055771701398570926 +131564,657.8200000027535,-0.05577164588383308 +131565,657.8250000027537,-0.05577159037810999 +131566,657.8300000027538,-0.05577153488139901 +131567,657.8350000027539,-0.05577147939369746 +131568,657.840000002754,-0.0557714239150027 +131569,657.8450000027541,-0.05577136844531205 +131570,657.8500000027542,-0.05577131298462285 +131571,657.8550000027543,-0.05577125753293244 +131572,657.8600000027544,-0.05577120209023815 +131573,657.8650000027545,-0.055771146656537325 +131574,657.8700000027546,-0.055771091231827316 +131575,657.8750000027547,-0.05577103581610544 +131576,657.8800000027549,-0.05577098040936904 +131577,657.885000002755,-0.05577092501161548 +131578,657.8900000027551,-0.05577086962284207 +131579,657.8950000027552,-0.05577081424304616 +131580,657.9000000027553,-0.0557707588722251 +131581,657.9050000027554,-0.05577070351037624 +131582,657.9100000027555,-0.055770648157496897 +131583,657.9150000027556,-0.05577059281358443 +131584,657.9200000027557,-0.05577053747863619 +131585,657.9250000027558,-0.05577048215264951 +131586,657.930000002756,-0.055770426835621736 +131587,657.935000002756,-0.055770371527550225 +131588,657.9400000027562,-0.05577031622843231 +131589,657.9450000027563,-0.055770260938265336 +131590,657.9500000027564,-0.05577020565704668 +131591,657.9550000027565,-0.05577015038477364 +131592,657.9600000027566,-0.055770095121443604 +131593,657.9650000027567,-0.05577003986705391 +131594,657.9700000027568,-0.05576998462160191 +131595,657.9750000027569,-0.05576992938508494 +131596,657.980000002757,-0.05576987415750036 +131597,657.9850000027571,-0.05576981893884552 +131598,657.9900000027573,-0.05576976372911777 +131599,657.9950000027574,-0.055769708528314456 +131600,658.0000000027575,-0.05576965333643294 +131601,658.0050000027576,-0.055769598153470566 +131602,658.0100000027577,-0.0557695429794247 +131603,658.0150000027578,-0.05576948781429269 +131604,658.0200000027579,-0.055769432658071896 +131605,658.025000002758,-0.05576937751075965 +131606,658.0300000027581,-0.055769322372353346 +131607,658.0350000027582,-0.05576926724285031 +131608,658.0400000027583,-0.05576921212224789 +131609,658.0450000027585,-0.05576915701054348 +131610,658.0500000027586,-0.05576910190773441 +131611,658.0550000027587,-0.055769046813818036 +131612,658.0600000027588,-0.05576899172879173 +131613,658.0650000027589,-0.055768936652652853 +131614,658.070000002759,-0.055768881585398764 +131615,658.0750000027591,-0.055768826527026805 +131616,658.0800000027592,-0.05576877147753436 +131617,658.0850000027593,-0.05576871643691877 +131618,658.0900000027594,-0.05576866140517741 +131619,658.0950000027595,-0.05576860638230764 +131620,658.1000000027597,-0.055768551368306815 +131621,658.1050000027598,-0.055768496363172305 +131622,658.1100000027599,-0.05576844136690147 +131623,658.11500000276,-0.05576838637949169 +131624,658.1200000027601,-0.05576833140094031 +131625,658.1250000027602,-0.055768276431244705 +131626,658.1300000027603,-0.05576822147040224 +131627,658.1350000027604,-0.05576816651841027 +131628,658.1400000027605,-0.05576811157526618 +131629,658.1450000027606,-0.05576805664096732 +131630,658.1500000027607,-0.05576800171551108 +131631,658.1550000027609,-0.055767946798894796 +131632,658.160000002761,-0.05576789189111587 +131633,658.1650000027611,-0.05576783699217165 +131634,658.1700000027612,-0.05576778210205953 +131635,658.1750000027613,-0.05576772722077685 +131636,658.1800000027614,-0.055767672348321 +131637,658.1850000027615,-0.05576761748468934 +131638,658.1900000027616,-0.05576756262987925 +131639,658.1950000027617,-0.05576750778388811 +131640,658.2000000027618,-0.05576745294671328 +131641,658.205000002762,-0.055767398118352136 +131642,658.2100000027621,-0.05576734329880205 +131643,658.2150000027622,-0.0557672884880604 +131644,658.2200000027623,-0.05576723368612457 +131645,658.2250000027624,-0.055767178892991924 +131646,658.2300000027625,-0.055767124108659846 +131647,658.2350000027626,-0.0557670693331257 +131648,658.2400000027627,-0.05576701456638688 +131649,658.2450000027628,-0.05576695980844075 +131650,658.2500000027629,-0.05576690505928468 +131651,658.255000002763,-0.055766850318916074 +131652,658.2600000027631,-0.055766795587332295 +131653,658.2650000027633,-0.055766740864530734 +131654,658.2700000027634,-0.05576668615050876 +131655,658.2750000027635,-0.055766631445263753 +131656,658.2800000027636,-0.0557665767487931 +131657,658.2850000027637,-0.05576652206109418 +131658,658.2900000027638,-0.05576646738216438 +131659,658.2950000027639,-0.055766412712001084 +131660,658.300000002764,-0.05576635805060167 +131661,658.3050000027641,-0.055766303397963526 +131662,658.3100000027642,-0.055766248754084036 +131663,658.3150000027644,-0.05576619411896057 +131664,658.3200000027645,-0.055766139492590544 +131665,658.3250000027646,-0.05576608487497131 +131666,658.3300000027647,-0.055766030266100275 +131667,658.3350000027648,-0.05576597566597482 +131668,658.3400000027649,-0.05576592107459234 +131669,658.345000002765,-0.05576586649195022 +131670,658.3500000027651,-0.05576581191804584 +131671,658.3550000027652,-0.055765757352876595 +131672,658.3600000027653,-0.055765702796439866 +131673,658.3650000027654,-0.055765648248733056 +131674,658.3700000027656,-0.055765593709753564 +131675,658.3750000027657,-0.05576553917949876 +131676,658.3800000027658,-0.05576548465796604 +131677,658.3850000027659,-0.055765430145152804 +131678,658.390000002766,-0.055765375641056436 +131679,658.3950000027661,-0.05576532114567433 +131680,658.4000000027662,-0.05576526665900389 +131681,658.4050000027663,-0.05576521218104249 +131682,658.4100000027664,-0.05576515771178754 +131683,658.4150000027665,-0.05576510325123644 +131684,658.4200000027666,-0.055765048799386575 +131685,658.4250000027668,-0.05576499435623535 +131686,658.4300000027669,-0.05576493992178016 +131687,658.435000002767,-0.05576488549601838 +131688,658.4400000027671,-0.05576483107894744 +131689,658.4450000027672,-0.05576477667056472 +131690,658.4500000027673,-0.05576472227086762 +131691,658.4550000027674,-0.05576466787985355 +131692,658.4600000027675,-0.055764613497519905 +131693,658.4650000027676,-0.05576455912386408 +131694,658.4700000027677,-0.055764504758883476 +131695,658.4750000027678,-0.055764450402575494 +131696,658.480000002768,-0.055764396054937534 +131697,658.4850000027681,-0.05576434171596701 +131698,658.4900000027682,-0.05576428738566132 +131699,658.4950000027683,-0.05576423306401786 +131700,658.5000000027684,-0.05576417875103404 +131701,658.5050000027685,-0.055764124446707274 +131702,658.5100000027686,-0.05576407015103495 +131703,658.5150000027687,-0.05576401586401447 +131704,658.5200000027688,-0.05576396158564326 +131705,658.5250000027689,-0.055763907315918716 +131706,658.530000002769,-0.05576385305483824 +131707,658.5350000027692,-0.055763798802399255 +131708,658.5400000027693,-0.05576374455859914 +131709,658.5450000027694,-0.055763690323435346 +131710,658.5500000027695,-0.055763636096905246 +131711,658.5550000027696,-0.055763581879006256 +131712,658.5600000027697,-0.055763527669735795 +131713,658.5650000027698,-0.05576347346909127 +131714,658.5700000027699,-0.055763419277070084 +131715,658.57500000277,-0.055763365093669665 +131716,658.5800000027701,-0.055763310918887414 +131717,658.5850000027702,-0.05576325675272075 +131718,658.5900000027704,-0.05576320259516709 +131719,658.5950000027705,-0.05576314844622383 +131720,658.6000000027706,-0.05576309430588839 +131721,658.6050000027707,-0.055763040174158195 +131722,658.6100000027708,-0.05576298605103065 +131723,658.6150000027709,-0.05576293193650318 +131724,658.620000002771,-0.05576287783057319 +131725,658.6250000027711,-0.05576282373323811 +131726,658.6300000027712,-0.055762769644495336 +131727,658.6350000027713,-0.0557627155643423 +131728,658.6400000027714,-0.05576266149277643 +131729,658.6450000027716,-0.05576260742979513 +131730,658.6500000027717,-0.05576255337539581 +131731,658.6550000027718,-0.055762499329575915 +131732,658.6600000027719,-0.05576244529233286 +131733,658.665000002772,-0.05576239126366404 +131734,658.6700000027721,-0.055762337243566905 +131735,658.6750000027722,-0.05576228323203887 +131736,658.6800000027723,-0.05576222922907735 +131737,658.6850000027724,-0.05576217523467977 +131738,658.6900000027725,-0.055762121248843555 +131739,658.6950000027726,-0.05576206727156612 +131740,658.7000000027728,-0.05576201330284491 +131741,658.7050000027729,-0.05576195934267733 +131742,658.710000002773,-0.05576190539106082 +131743,658.7150000027731,-0.0557618514479928 +131744,658.7200000027732,-0.055761797513470684 +131745,658.7250000027733,-0.05576174358749192 +131746,658.7300000027734,-0.055761689670053925 +131747,658.7350000027735,-0.05576163576115412 +131748,658.7400000027736,-0.055761581860789944 +131749,658.7450000027737,-0.055761527968958835 +131750,658.7500000027738,-0.055761474085658194 +131751,658.755000002774,-0.055761420210885475 +131752,658.7600000027741,-0.055761366344638096 +131753,658.7650000027742,-0.05576131248691348 +131754,658.7700000027743,-0.05576125863770908 +131755,658.7750000027744,-0.05576120479702232 +131756,658.7800000027745,-0.05576115096485063 +131757,658.7850000027746,-0.05576109714119144 +131758,658.7900000027747,-0.05576104332604218 +131759,658.7950000027748,-0.0557609895194003 +131760,658.8000000027749,-0.05576093572126323 +131761,658.805000002775,-0.05576088193162839 +131762,658.8100000027752,-0.05576082815049323 +131763,658.8150000027753,-0.05576077437785517 +131764,658.8200000027754,-0.05576072061371167 +131765,658.8250000027755,-0.05576066685806015 +131766,658.8300000027756,-0.05576061311089805 +131767,658.8350000027757,-0.055760559372222816 +131768,658.8400000027758,-0.055760505642031874 +131769,658.8450000027759,-0.05576045192032267 +131770,658.850000002776,-0.05576039820709265 +131771,658.8550000027761,-0.055760344502339236 +131772,658.8600000027762,-0.05576029080605989 +131773,658.8650000027764,-0.05576023711825204 +131774,658.8700000027765,-0.05576018343891313 +131775,658.8750000027766,-0.0557601297680406 +131776,658.8800000027767,-0.0557600761056319 +131777,658.8850000027768,-0.05576002245168447 +131778,658.8900000027769,-0.05575996880619574 +131779,658.895000002777,-0.05575991516916318 +131780,658.9000000027771,-0.05575986154058421 +131781,658.9050000027772,-0.05575980792045628 +131782,658.9100000027773,-0.05575975430877685 +131783,658.9150000027774,-0.055759700705543355 +131784,658.9200000027776,-0.055759647110753235 +131785,658.9250000027777,-0.055759593524403954 +131786,658.9300000027778,-0.05575953994649295 +131787,658.9350000027779,-0.055759486377017664 +131788,658.940000002778,-0.055759432815975556 +131789,658.9450000027781,-0.05575937926336407 +131790,658.9500000027782,-0.05575932571918065 +131791,658.9550000027783,-0.05575927218342277 +131792,658.9600000027784,-0.05575921865608786 +131793,658.9650000027785,-0.055759165137173355 +131794,658.9700000027786,-0.055759111626676745 +131795,658.9750000027788,-0.05575905812459546 +131796,658.9800000027789,-0.05575900463092695 +131797,658.985000002779,-0.05575895114566868 +131798,658.9900000027791,-0.05575889766881809 +131799,658.9950000027792,-0.05575884420037265 +131800,659.0000000027793,-0.0557587907403298 +131801,659.0050000027794,-0.055758737288687014 +131802,659.0100000027795,-0.05575868384544174 +131803,659.0150000027796,-0.055758630410591425 +131804,659.0200000027797,-0.05575857698413353 +131805,659.0250000027798,-0.055758523566065504 +131806,659.03000000278,-0.05575847015638482 +131807,659.0350000027801,-0.05575841675508892 +131808,659.0400000027802,-0.055758363362175274 +131809,659.0450000027803,-0.05575830997764135 +131810,659.0500000027804,-0.05575825660148459 +131811,659.0550000027805,-0.05575820323370246 +131812,659.0600000027806,-0.05575814987429243 +131813,659.0650000027807,-0.055758096523251935 +131814,659.0700000027808,-0.05575804318057847 +131815,659.0750000027809,-0.055757989846269486 +131816,659.080000002781,-0.05575793652032243 +131817,659.0850000027812,-0.055757883202734775 +131818,659.0900000027813,-0.055757829893503995 +131819,659.0950000027814,-0.05575777659262754 +131820,659.1000000027815,-0.05575772330010288 +131821,659.1050000027816,-0.05575767001592749 +131822,659.1100000027817,-0.05575761674009881 +131823,659.1150000027818,-0.05575756347261434 +131824,659.1200000027819,-0.05575751021347152 +131825,659.125000002782,-0.05575745696266782 +131826,659.1300000027821,-0.055757403720200716 +131827,659.1350000027822,-0.05575735048606768 +131828,659.1400000027824,-0.055757297260266174 +131829,659.1450000027825,-0.05575724404279366 +131830,659.1500000027826,-0.05575719083364763 +131831,659.1550000027827,-0.05575713763282553 +131832,659.1600000027828,-0.055757084440324844 +131833,659.1650000027829,-0.055757031256143036 +131834,659.170000002783,-0.05575697808027759 +131835,659.1750000027831,-0.055756924912725964 +131836,659.1800000027832,-0.05575687175348564 +131837,659.1850000027833,-0.05575681860255409 +131838,659.1900000027834,-0.05575676545992879 +131839,659.1950000027836,-0.0557567123256072 +131840,659.2000000027837,-0.055756659199586805 +131841,659.2050000027838,-0.05575660608186509 +131842,659.2100000027839,-0.05575655297243951 +131843,659.215000002784,-0.055756499871307555 +131844,659.2200000027841,-0.055756446778466695 +131845,659.2250000027842,-0.05575639369391442 +131846,659.2300000027843,-0.05575634061764819 +131847,659.2350000027844,-0.05575628754966549 +131848,659.2400000027845,-0.0557562344899638 +131849,659.2450000027846,-0.05575618143854061 +131850,659.2500000027848,-0.05575612839539338 +131851,659.2550000027849,-0.0557560753605196 +131852,659.260000002785,-0.055756022333916765 +131853,659.2650000027851,-0.05575596931558232 +131854,659.2700000027852,-0.05575591630551378 +131855,659.2750000027853,-0.05575586330370861 +131856,659.2800000027854,-0.05575581031016429 +131857,659.2850000027855,-0.055755757324878336 +131858,659.2900000027856,-0.0557557043478482 +131859,659.2950000027857,-0.05575565137907137 +131860,659.3000000027859,-0.055755598418545334 +131861,659.305000002786,-0.05575554546626758 +131862,659.3100000027861,-0.055755492522235585 +131863,659.3150000027862,-0.05575543958644684 +131864,659.3200000027863,-0.05575538665889884 +131865,659.3250000027864,-0.05575533373958906 +131866,659.3300000027865,-0.055755280828515 +131867,659.3350000027866,-0.05575522792567413 +131868,659.3400000027867,-0.055755175031063954 +131869,659.3450000027868,-0.055755122144681965 +131870,659.3500000027869,-0.05575506926652564 +131871,659.355000002787,-0.055755016396592486 +131872,659.3600000027872,-0.055754963534879964 +131873,659.3650000027873,-0.0557549106813856 +131874,659.3700000027874,-0.055754857836106855 +131875,659.3750000027875,-0.055754804999041244 +131876,659.3800000027876,-0.05575475217018625 +131877,659.3850000027877,-0.05575469934953937 +131878,659.3900000027878,-0.055754646537098086 +131879,659.3950000027879,-0.0557545937328599 +131880,659.400000002788,-0.05575454093682231 +131881,659.4050000027881,-0.05575448814898282 +131882,659.4100000027883,-0.055754435369338905 +131883,659.4150000027884,-0.05575438259788807 +131884,659.4200000027885,-0.05575432983462781 +131885,659.4250000027886,-0.05575427707955564 +131886,659.4300000027887,-0.05575422433266903 +131887,659.4350000027888,-0.05575417159396549 +131888,659.4400000027889,-0.05575411886344253 +131889,659.445000002789,-0.055754066141097625 +131890,659.4500000027891,-0.055754013426928296 +131891,659.4550000027892,-0.05575396072093203 +131892,659.4600000027893,-0.055753908023106334 +131893,659.4650000027895,-0.05575385533344871 +131894,659.4700000027896,-0.05575380265195666 +131895,659.4750000027897,-0.055753749978627684 +131896,659.4800000027898,-0.055753697313459284 +131897,659.4850000027899,-0.05575364465644897 +131898,659.49000000279,-0.055753592007594235 +131899,659.4950000027901,-0.055753539366892584 +131900,659.5000000027902,-0.05575348673434152 +131901,659.5050000027903,-0.05575343410993857 +131902,659.5100000027904,-0.05575338149368122 +131903,659.5150000027905,-0.05575332888556697 +131904,659.5200000027907,-0.055753276285593345 +131905,659.5250000027908,-0.055753223693757833 +131906,659.5300000027909,-0.05575317111005797 +131907,659.535000002791,-0.05575311853449122 +131908,659.5400000027911,-0.055753065967055135 +131909,659.5450000027912,-0.05575301340774721 +131910,659.5500000027913,-0.05575296085656494 +131911,659.5550000027914,-0.05575290831350586 +131912,659.5600000027915,-0.05575285577856745 +131913,659.5650000027916,-0.05575280325174724 +131914,659.5700000027917,-0.05575275073304275 +131915,659.5750000027919,-0.05575269822245147 +131916,659.580000002792,-0.05575264571997093 +131917,659.5850000027921,-0.05575259322559863 +131918,659.5900000027922,-0.055752540739332106 +131919,659.5950000027923,-0.05575248826116885 +131920,659.6000000027924,-0.05575243579110638 +131921,659.6050000027925,-0.05575238332914222 +131922,659.6100000027926,-0.055752330875273884 +131923,659.6150000027927,-0.055752278429498876 +131924,659.6200000027928,-0.05575222599181473 +131925,659.625000002793,-0.05575217356221895 +131926,659.630000002793,-0.05575212114070905 +131927,659.6350000027932,-0.05575206872728256 +131928,659.6400000027933,-0.05575201632193699 +131929,659.6450000027934,-0.05575196392466987 +131930,659.6500000027935,-0.05575191153547871 +131931,659.6550000027936,-0.05575185915436103 +131932,659.6600000027937,-0.05575180678131436 +131933,659.6650000027938,-0.055751754416336216 +131934,659.6700000027939,-0.055751702059424105 +131935,659.675000002794,-0.055751649710575564 +131936,659.6800000027941,-0.05575159736978812 +131937,659.6850000027943,-0.05575154503705927 +131938,659.6900000027944,-0.05575149271238658 +131939,659.6950000027945,-0.05575144039576755 +131940,659.7000000027946,-0.055751388087199684 +131941,659.7050000027947,-0.055751335786680546 +131942,659.7100000027948,-0.055751283494207625 +131943,659.7150000027949,-0.055751231209778485 +131944,659.720000002795,-0.05575117893339062 +131945,659.7250000027951,-0.05575112666504157 +131946,659.7300000027952,-0.055751074404728866 +131947,659.7350000027953,-0.055751022152450036 +131948,659.7400000027955,-0.055750969908202594 +131949,659.7450000027956,-0.055750917671984083 +131950,659.7500000027957,-0.05575086544379202 +131951,659.7550000027958,-0.05575081322362395 +131952,659.7600000027959,-0.0557507610114774 +131953,659.765000002796,-0.0557507088073499 +131954,659.7700000027961,-0.055750656611238965 +131955,659.7750000027962,-0.05575060442314215 +131956,659.7800000027963,-0.05575055224305697 +131957,659.7850000027964,-0.05575050007098098 +131958,659.7900000027965,-0.055750447906911686 +131959,659.7950000027967,-0.055750395750846636 +131960,659.8000000027968,-0.05575034360278336 +131961,659.8050000027969,-0.055750291462719405 +131962,659.810000002797,-0.05575023933065229 +131963,659.8150000027971,-0.05575018720657957 +131964,659.8200000027972,-0.05575013509049876 +131965,659.8250000027973,-0.055750082982407405 +131966,659.8300000027974,-0.05575003088230305 +131967,659.8350000027975,-0.05574997879018322 +131968,659.8400000027976,-0.055749926706045456 +131969,659.8450000027977,-0.0557498746298873 +131970,659.8500000027979,-0.0557498225617063 +131971,659.855000002798,-0.055749770501499984 +131972,659.8600000027981,-0.055749718449265885 +131973,659.8650000027982,-0.05574966640500156 +131974,659.8700000027983,-0.055749614368704556 +131975,659.8750000027984,-0.05574956234037239 +131976,659.8800000027985,-0.05574951032000263 +131977,659.8850000027986,-0.05574945830759279 +131978,659.8900000027987,-0.05574940630314043 +131979,659.8950000027988,-0.0557493543066431 +131980,659.900000002799,-0.05574930231809833 +131981,659.905000002799,-0.05574925033750367 +131982,659.9100000027992,-0.055749198364856666 +131983,659.9150000027993,-0.055749146400154874 +131984,659.9200000027994,-0.05574909444339582 +131985,659.9250000027995,-0.05574904249457707 +131986,659.9300000027996,-0.05574899055369615 +131987,659.9350000027997,-0.05574893862075062 +131988,659.9400000027998,-0.05574888669573804 +131989,659.9450000027999,-0.055748834778655935 +131990,659.9500000028,-0.05574878286950187 +131991,659.9550000028001,-0.05574873096827338 +131992,659.9600000028003,-0.05574867907496803 +131993,659.9650000028004,-0.05574862718958336 +131994,659.9700000028005,-0.05574857531211693 +131995,659.9750000028006,-0.05574852344256628 +131996,659.9800000028007,-0.05574847158092898 +131997,659.9850000028008,-0.05574841972720256 +131998,659.9900000028009,-0.05574836788138458 +131999,659.995000002801,-0.055748316043472614 +132000,660.0000000028011,-0.055748264213464196 +132001,660.0050000028012,-0.055748212391356876 +132002,660.0100000028013,-0.055748160577148216 +132003,660.0150000028015,-0.055748108770835775 +132004,660.0200000028016,-0.0557480569724171 +132005,660.0250000028017,-0.05574800518188977 +132006,660.0300000028018,-0.055747953399251315 +132007,660.0350000028019,-0.05574790162449931 +132008,660.040000002802,-0.055747849857631294 +132009,660.0450000028021,-0.05574779809864485 +132010,660.0500000028022,-0.05574774634753751 +132011,660.0550000028023,-0.05574769460430686 +132012,660.0600000028024,-0.05574764286895044 +132013,660.0650000028025,-0.05574759114146582 +132014,660.0700000028027,-0.055747539421850546 +132015,660.0750000028028,-0.055747487710102205 +132016,660.0800000028029,-0.055747436006218336 +132017,660.085000002803,-0.05574738431019651 +132018,660.0900000028031,-0.055747332622034296 +132019,660.0950000028032,-0.055747280941729246 +132020,660.1000000028033,-0.055747229269278935 +132021,660.1050000028034,-0.05574717760468092 +132022,660.1100000028035,-0.05574712594793276 +132023,660.1150000028036,-0.055747074299032036 +132024,660.1200000028037,-0.055747022657976306 +132025,660.1250000028039,-0.05574697102476313 +132026,660.130000002804,-0.05574691939939007 +132027,660.1350000028041,-0.055746867781854705 +132028,660.1400000028042,-0.055746816172154594 +132029,660.1450000028043,-0.05574676457028733 +132030,660.1500000028044,-0.05574671297625045 +132031,660.1550000028045,-0.05574666139004154 +132032,660.1600000028046,-0.05574660981165816 +132033,660.1650000028047,-0.055746558241097886 +132034,660.1700000028048,-0.05574650667835829 +132035,660.175000002805,-0.055746455123436935 +132036,660.1800000028051,-0.055746403576331406 +132037,660.1850000028052,-0.05574635203703926 +132038,660.1900000028053,-0.05574630050555808 +132039,660.1950000028054,-0.05574624898188543 +132040,660.2000000028055,-0.0557461974660189 +132041,660.2050000028056,-0.055746145957956045 +132042,660.2100000028057,-0.05574609445769444 +132043,660.2150000028058,-0.05574604296523168 +132044,660.2200000028059,-0.055745991480565325 +132045,660.225000002806,-0.05574594000369295 +132046,660.2300000028062,-0.05574588853461213 +132047,660.2350000028063,-0.05574583707332046 +132048,660.2400000028064,-0.0557457856198155 +132049,660.2450000028065,-0.05574573417409482 +132050,660.2500000028066,-0.055745682736156016 +132051,660.2550000028067,-0.055745631305996655 +132052,660.2600000028068,-0.055745579883614324 +132053,660.2650000028069,-0.0557455284690066 +132054,660.270000002807,-0.05574547706217106 +132055,660.2750000028071,-0.055745425663105294 +132056,660.2800000028072,-0.05574537427180688 +132057,660.2850000028074,-0.05574532288827339 +132058,660.2900000028075,-0.055745271512502415 +132059,660.2950000028076,-0.05574522014449154 +132060,660.3000000028077,-0.055745168784238346 +132061,660.3050000028078,-0.05574511743174041 +132062,660.3100000028079,-0.055745066086995324 +132063,660.315000002808,-0.05574501475000067 +132064,660.3200000028081,-0.055744963420754017 +132065,660.3250000028082,-0.055744912099252975 +132066,660.3300000028083,-0.05574486078549512 +132067,660.3350000028084,-0.05574480947947804 +132068,660.3400000028086,-0.05574475818119932 +132069,660.3450000028087,-0.05574470689065655 +132070,660.3500000028088,-0.055744655607847304 +132071,660.3550000028089,-0.0557446043327692 +132072,660.360000002809,-0.05574455306541981 +132073,660.3650000028091,-0.055744501805796716 +132074,660.3700000028092,-0.055744450553897526 +132075,660.3750000028093,-0.05574439930971981 +132076,660.3800000028094,-0.05574434807326118 +132077,660.3850000028095,-0.05574429684451921 +132078,660.3900000028096,-0.05574424562349149 +132079,660.3950000028098,-0.05574419441017564 +132080,660.4000000028099,-0.05574414320456921 +132081,660.40500000281,-0.05574409200666983 +132082,660.4100000028101,-0.05574404081647508 +132083,660.4150000028102,-0.055743989633982555 +132084,660.4200000028103,-0.05574393845918985 +132085,660.4250000028104,-0.055743887292094556 +132086,660.4300000028105,-0.05574383613269427 +132087,660.4350000028106,-0.05574378498098659 +132088,660.4400000028107,-0.055743733836969116 +132089,660.4450000028108,-0.05574368270063944 +132090,660.450000002811,-0.05574363157199517 +132091,660.4550000028111,-0.05574358045103389 +132092,660.4600000028112,-0.0557435293377532 +132093,660.4650000028113,-0.05574347823215071 +132094,660.4700000028114,-0.055743427134224005 +132095,660.4750000028115,-0.0557433760439707 +132096,660.4800000028116,-0.055743324961388396 +132097,660.4850000028117,-0.05574327388647468 +132098,660.4900000028118,-0.05574322281922716 +132099,660.4950000028119,-0.05574317175964343 +132100,660.500000002812,-0.05574312070772112 +132101,660.5050000028122,-0.0557430696634578 +132102,660.5100000028123,-0.0557430186268511 +132103,660.5150000028124,-0.055742967597898596 +132104,660.5200000028125,-0.05574291657659792 +132105,660.5250000028126,-0.055742865562946664 +132106,660.5300000028127,-0.055742814556942424 +132107,660.5350000028128,-0.05574276355858281 +132108,660.5400000028129,-0.05574271256786544 +132109,660.545000002813,-0.05574266158478791 +132110,660.5500000028131,-0.055742610609347834 +132111,660.5550000028132,-0.05574255964154283 +132112,660.5600000028134,-0.055742508681370484 +132113,660.5650000028135,-0.055742457728828416 +132114,660.5700000028136,-0.05574240678391423 +132115,660.5750000028137,-0.05574235584662554 +132116,660.5800000028138,-0.055742304916959966 +132117,660.5850000028139,-0.05574225399491511 +132118,660.590000002814,-0.055742203080488564 +132119,660.5950000028141,-0.055742152173677964 +132120,660.6000000028142,-0.05574210127448092 +132121,660.6050000028143,-0.05574205038289503 +132122,660.6100000028144,-0.05574199949891792 +132123,660.6150000028146,-0.0557419486225472 +132124,660.6200000028147,-0.05574189775378048 +132125,660.6250000028148,-0.05574184689261539 +132126,660.6300000028149,-0.05574179603904952 +132127,660.635000002815,-0.055741745193080505 +132128,660.6400000028151,-0.05574169435470596 +132129,660.6450000028152,-0.05574164352392349 +132130,660.6500000028153,-0.05574159270073072 +132131,660.6550000028154,-0.055741541885125256 +132132,660.6600000028155,-0.05574149107710474 +132133,660.6650000028156,-0.05574144027666677 +132134,660.6700000028158,-0.05574138948380896 +132135,660.6750000028159,-0.05574133869852895 +132136,660.680000002816,-0.05574128792082435 +132137,660.6850000028161,-0.055741237150692784 +132138,660.6900000028162,-0.055741186388131865 +132139,660.6950000028163,-0.05574113563313921 +132140,660.7000000028164,-0.05574108488571246 +132141,660.7050000028165,-0.055741034145849216 +132142,660.7100000028166,-0.055740983413547114 +132143,660.7150000028167,-0.05574093268880377 +132144,660.7200000028168,-0.055740881971616814 +132145,660.725000002817,-0.05574083126198387 +132146,660.7300000028171,-0.05574078055990256 +132147,660.7350000028172,-0.0557407298653705 +132148,660.7400000028173,-0.05574067917838532 +132149,660.7450000028174,-0.05574062849894466 +132150,660.7500000028175,-0.05574057782704614 +132151,660.7550000028176,-0.055740527162687376 +132152,660.7600000028177,-0.055740476505866 +132153,660.7650000028178,-0.05574042585657965 +132154,660.7700000028179,-0.055740375214825943 +132155,660.775000002818,-0.05574032458060252 +132156,660.7800000028182,-0.055740273953906995 +132157,660.7850000028183,-0.055740223334736994 +132158,660.7900000028184,-0.05574017272309017 +132159,660.7950000028185,-0.05574012211896414 +132160,660.8000000028186,-0.05574007152235653 +132161,660.8050000028187,-0.05574002093326499 +132162,660.8100000028188,-0.05573997035168714 +132163,660.8150000028189,-0.0557399197776206 +132164,660.820000002819,-0.055739869211063026 +132165,660.8250000028191,-0.05573981865201203 +132166,660.8300000028192,-0.05573976810046527 +132167,660.8350000028194,-0.055739717556420376 +132168,660.8400000028195,-0.055739667019874976 +132169,660.8450000028196,-0.05573961649082669 +132170,660.8500000028197,-0.055739565969273173 +132171,660.8550000028198,-0.05573951545521206 +132172,660.8600000028199,-0.05573946494864099 +132173,660.86500000282,-0.05573941444955759 +132174,660.8700000028201,-0.05573936395795951 +132175,660.8750000028202,-0.05573931347384439 +132176,660.8800000028203,-0.05573926299720985 +132177,660.8850000028204,-0.05573921252805354 +132178,660.8900000028206,-0.05573916206637311 +132179,660.8950000028207,-0.05573911161216619 +132180,660.9000000028208,-0.05573906116543041 +132181,660.9050000028209,-0.05573901072616343 +132182,660.910000002821,-0.055738960294362885 +132183,660.9150000028211,-0.05573890987002642 +132184,660.9200000028212,-0.05573885945315168 +132185,660.9250000028213,-0.0557388090437363 +132186,660.9300000028214,-0.05573875864177792 +132187,660.9350000028215,-0.05573870824727419 +132188,660.9400000028216,-0.05573865786022276 +132189,660.9450000028218,-0.05573860748062127 +132190,660.9500000028219,-0.05573855710846736 +132191,660.955000002822,-0.055738506743758694 +132192,660.9600000028221,-0.055738456386492885 +132193,660.9650000028222,-0.05573840603666761 +132194,660.9700000028223,-0.05573835569428052 +132195,660.9750000028224,-0.055738305359329235 +132196,660.9800000028225,-0.05573825503181142 +132197,660.9850000028226,-0.05573820471172472 +132198,660.9900000028227,-0.055738154399066785 +132199,660.9950000028228,-0.055738104093835276 +132200,661.000000002823,-0.05573805379602783 +132201,661.0050000028231,-0.0557380035056421 +132202,661.0100000028232,-0.055737953222675746 +132203,661.0150000028233,-0.055737902947126404 +132204,661.0200000028234,-0.05573785267899174 +132205,661.0250000028235,-0.055737802418269415 +132206,661.0300000028236,-0.05573775216495704 +132207,661.0350000028237,-0.055737701919052314 +132208,661.0400000028238,-0.05573765168055287 +132209,661.0450000028239,-0.05573760144945638 +132210,661.050000002824,-0.05573755122576047 +132211,661.0550000028242,-0.05573750100946282 +132212,661.0600000028243,-0.05573745080056108 +132213,661.0650000028244,-0.05573740059905289 +132214,661.0700000028245,-0.05573735040493592 +132215,661.0750000028246,-0.05573730021820784 +132216,661.0800000028247,-0.055737250038866294 +132217,661.0850000028248,-0.05573719986690894 +132218,661.0900000028249,-0.05573714970233344 +132219,661.095000002825,-0.055737099545137454 +132220,661.1000000028251,-0.055737049395318636 +132221,661.1050000028252,-0.055736999252874654 +132222,661.1100000028254,-0.055736949117803164 +132223,661.1150000028255,-0.05573689899010182 +132224,661.1200000028256,-0.0557368488697683 +132225,661.1250000028257,-0.05573679875680026 +132226,661.1300000028258,-0.05573674865119536 +132227,661.1350000028259,-0.055736698552951255 +132228,661.140000002826,-0.055736648462065615 +132229,661.1450000028261,-0.05573659837853612 +132230,661.1500000028262,-0.055736548302360404 +132231,661.1550000028263,-0.05573649823353615 +132232,661.1600000028265,-0.05573644817206103 +132233,661.1650000028266,-0.05573639811793271 +132234,661.1700000028267,-0.05573634807114884 +132235,661.1750000028268,-0.05573629803170709 +132236,661.1800000028269,-0.055736247999605144 +132237,661.185000002827,-0.055736197974840654 +132238,661.1900000028271,-0.055736147957411275 +132239,661.1950000028272,-0.055736097947314704 +132240,661.2000000028273,-0.0557360479445486 +132241,661.2050000028274,-0.05573599794911064 +132242,661.2100000028275,-0.055735947960998476 +132243,661.2150000028277,-0.05573589798020979 +132244,661.2200000028278,-0.05573584800674224 +132245,661.2250000028279,-0.055735798040593525 +132246,661.230000002828,-0.0557357480817613 +132247,661.2350000028281,-0.05573569813024324 +132248,661.2400000028282,-0.05573564818603701 +132249,661.2450000028283,-0.055735598249140296 +132250,661.2500000028284,-0.05573554831955076 +132251,661.2550000028285,-0.05573549839726608 +132252,661.2600000028286,-0.05573544848228394 +132253,661.2650000028287,-0.05573539857460202 +132254,661.2700000028289,-0.05573534867421796 +132255,661.275000002829,-0.055735298781129476 +132256,661.2800000028291,-0.055735248895334225 +132257,661.2850000028292,-0.055735199016829884 +132258,661.2900000028293,-0.05573514914561414 +132259,661.2950000028294,-0.05573509928168467 +132260,661.3000000028295,-0.05573504942503915 +132261,661.3050000028296,-0.055734999575675265 +132262,661.3100000028297,-0.055734949733590666 +132263,661.3150000028298,-0.05573489989878307 +132264,661.3200000028299,-0.05573485007125014 +132265,661.32500000283,-0.05573480025098955 +132266,661.3300000028302,-0.055734750437999 +132267,661.3350000028303,-0.05573470063227616 +132268,661.3400000028304,-0.05573465083381872 +132269,661.3450000028305,-0.05573460104262435 +132270,661.3500000028306,-0.05573455125869074 +132271,661.3550000028307,-0.05573450148201557 +132272,661.3600000028308,-0.05573445171259654 +132273,661.3650000028309,-0.05573440195043132 +132274,661.370000002831,-0.0557343521955176 +132275,661.3750000028311,-0.05573430244785307 +132276,661.3800000028313,-0.05573425270743541 +132277,661.3850000028314,-0.05573420297426229 +132278,661.3900000028315,-0.055734153248331426 +132279,661.3950000028316,-0.05573410352964049 +132280,661.4000000028317,-0.055734053818187176 +132281,661.4050000028318,-0.05573400411396918 +132282,661.4100000028319,-0.05573395441698418 +132283,661.415000002832,-0.055733904727229854 +132284,661.4200000028321,-0.05573385504470392 +132285,661.4250000028322,-0.05573380536940404 +132286,661.4300000028323,-0.05573375570132792 +132287,661.4350000028325,-0.05573370604047325 +132288,661.4400000028326,-0.05573365638683772 +132289,661.4450000028327,-0.05573360674041904 +132290,661.4500000028328,-0.05573355710121487 +132291,661.4550000028329,-0.05573350746922291 +132292,661.460000002833,-0.05573345784444088 +132293,661.4650000028331,-0.05573340822686645 +132294,661.4700000028332,-0.055733358616497315 +132295,661.4750000028333,-0.05573330901333118 +132296,661.4800000028334,-0.055733259417365746 +132297,661.4850000028335,-0.05573320982859869 +132298,661.4900000028337,-0.05573316024702773 +132299,661.4950000028338,-0.05573311067265054 +132300,661.5000000028339,-0.05573306110546483 +132301,661.505000002834,-0.0557330115454683 +132302,661.5100000028341,-0.05573296199265865 +132303,661.5150000028342,-0.05573291244703356 +132304,661.5200000028343,-0.055732862908590745 +132305,661.5250000028344,-0.05573281337732792 +132306,661.5300000028345,-0.055732763853242745 +132307,661.5350000028346,-0.05573271433633295 +132308,661.5400000028347,-0.05573266482659624 +132309,661.5450000028349,-0.055732615324030295 +132310,661.550000002835,-0.055732565828632834 +132311,661.5550000028351,-0.05573251634040155 +132312,661.5600000028352,-0.05573246685933414 +132313,661.5650000028353,-0.05573241738542832 +132314,661.5700000028354,-0.0557323679186818 +132315,661.5750000028355,-0.05573231845909227 +132316,661.5800000028356,-0.055732269006657446 +132317,661.5850000028357,-0.05573221956137502 +132318,661.5900000028358,-0.05573217012324271 +132319,661.595000002836,-0.05573212069225822 +132320,661.600000002836,-0.055732071268419246 +132321,661.6050000028362,-0.055732021851723504 +132322,661.6100000028363,-0.055731972442168695 +132323,661.6150000028364,-0.055731923039752544 +132324,661.6200000028365,-0.05573187364447274 +132325,661.6250000028366,-0.055731824256327014 +132326,661.6300000028367,-0.05573177487531305 +132327,661.6350000028368,-0.055731725501428575 +132328,661.6400000028369,-0.05573167613467129 +132329,661.645000002837,-0.05573162677503892 +132330,661.6500000028371,-0.055731577422529155 +132331,661.6550000028373,-0.05573152807713973 +132332,661.6600000028374,-0.055731478738868336 +132333,661.6650000028375,-0.055731429407712696 +132334,661.6700000028376,-0.05573138008367053 +132335,661.6750000028377,-0.05573133076673955 +132336,661.6800000028378,-0.055731281456917456 +132337,661.6850000028379,-0.055731232154201976 +132338,661.690000002838,-0.055731182858590814 +132339,661.6950000028381,-0.0557311335700817 +132340,661.7000000028382,-0.055731084288672336 +132341,661.7050000028383,-0.05573103501436044 +132342,661.7100000028385,-0.05573098574714373 +132343,661.7150000028386,-0.05573093648701993 +132344,661.7200000028387,-0.05573088723398677 +132345,661.7250000028388,-0.055730837988041945 +132346,661.7300000028389,-0.05573078874918318 +132347,661.735000002839,-0.055730739517408194 +132348,661.7400000028391,-0.05573069029271471 +132349,661.7450000028392,-0.05573064107510045 +132350,661.7500000028393,-0.055730591864563125 +132351,661.7550000028394,-0.05573054266110046 +132352,661.7600000028395,-0.05573049346471018 +132353,661.7650000028397,-0.05573044427539001 +132354,661.7700000028398,-0.05573039509313767 +132355,661.7750000028399,-0.05573034591795089 +132356,661.78000000284,-0.05573029674982737 +132357,661.7850000028401,-0.05573024758876485 +132358,661.7900000028402,-0.05573019843476106 +132359,661.7950000028403,-0.05573014928781372 +132360,661.8000000028404,-0.055730100147920555 +132361,661.8050000028405,-0.05573005101507929 +132362,661.8100000028406,-0.05573000188928764 +132363,661.8150000028407,-0.05572995277054335 +132364,661.8200000028409,-0.055729903658844136 +132365,661.825000002841,-0.055729854554187726 +132366,661.8300000028411,-0.05572980545657186 +132367,661.8350000028412,-0.05572975636599425 +132368,661.8400000028413,-0.05572970728245264 +132369,661.8450000028414,-0.05572965820594475 +132370,661.8500000028415,-0.0557296091364683 +132371,661.8550000028416,-0.05572956007402104 +132372,661.8600000028417,-0.05572951101860069 +132373,661.8650000028418,-0.055729461970204994 +132374,661.870000002842,-0.05572941292883168 +132375,661.8750000028421,-0.05572936389447847 +132376,661.8800000028422,-0.05572931486714309 +132377,661.8850000028423,-0.0557292658468233 +132378,661.8900000028424,-0.0557292168335168 +132379,661.8950000028425,-0.055729167827221364 +132380,661.9000000028426,-0.05572911882793469 +132381,661.9050000028427,-0.05572906983565453 +132382,661.9100000028428,-0.05572902085037862 +132383,661.9150000028429,-0.055728971872104696 +132384,661.920000002843,-0.05572892290083049 +132385,661.9250000028431,-0.05572887393655373 +132386,661.9300000028433,-0.05572882497927216 +132387,661.9350000028434,-0.05572877602898353 +132388,661.9400000028435,-0.055728727085685575 +132389,661.9450000028436,-0.05572867814937602 +132390,661.9500000028437,-0.055728629220052624 +132391,661.9550000028438,-0.05572858029771311 +132392,661.9600000028439,-0.055728531382355215 +132393,661.965000002844,-0.0557284824739767 +132394,661.9700000028441,-0.05572843357257529 +132395,661.9750000028442,-0.05572838467814873 +132396,661.9800000028443,-0.05572833579069476 +132397,661.9850000028445,-0.055728286910211124 +132398,661.9900000028446,-0.055728238036695577 +132399,661.9950000028447,-0.05572818917014584 +132400,662.0000000028448,-0.05572814031055967 +132401,662.0050000028449,-0.055728091457934795 +132402,662.010000002845,-0.05572804261226898 +132403,662.0150000028451,-0.055727993773559976 +132404,662.0200000028452,-0.0557279449418055 +132405,662.0250000028453,-0.05572789611700333 +132406,662.0300000028454,-0.05572784729915118 +132407,662.0350000028455,-0.05572779848824682 +132408,662.0400000028457,-0.05572774968428799 +132409,662.0450000028458,-0.055727700887272434 +132410,662.0500000028459,-0.05572765209719792 +132411,662.055000002846,-0.05572760331406218 +132412,662.0600000028461,-0.05572755453786296 +132413,662.0650000028462,-0.05572750576859802 +132414,662.0700000028463,-0.0557274570062651 +132415,662.0750000028464,-0.055727408250861955 +132416,662.0800000028465,-0.05572735950238634 +132417,662.0850000028466,-0.05572731076083601 +132418,662.0900000028468,-0.05572726202620871 +132419,662.0950000028469,-0.05572721329850218 +132420,662.100000002847,-0.05572716457771419 +132421,662.1050000028471,-0.0557271158638425 +132422,662.1100000028472,-0.055727067156884844 +132423,662.1150000028473,-0.05572701845683899 +132424,662.1200000028474,-0.055726969763702686 +132425,662.1250000028475,-0.05572692107747369 +132426,662.1300000028476,-0.05572687239814977 +132427,662.1350000028477,-0.055726823725728666 +132428,662.1400000028478,-0.05572677506020813 +132429,662.145000002848,-0.055726726401585935 +132430,662.1500000028481,-0.055726677749859836 +132431,662.1550000028482,-0.05572662910502757 +132432,662.1600000028483,-0.05572658046708692 +132433,662.1650000028484,-0.05572653183603563 +132434,662.1700000028485,-0.055726483211871486 +132435,662.1750000028486,-0.05572643459459221 +132436,662.1800000028487,-0.055726385984195576 +132437,662.1850000028488,-0.05572633738067936 +132438,662.1900000028489,-0.0557262887840413 +132439,662.195000002849,-0.055726240194279186 +132440,662.2000000028492,-0.05572619161139076 +132441,662.2050000028493,-0.05572614303537378 +132442,662.2100000028494,-0.055726094466226034 +132443,662.2150000028495,-0.05572604590394525 +132444,662.2200000028496,-0.05572599734852922 +132445,662.2250000028497,-0.0557259487999757 +132446,662.2300000028498,-0.05572590025828245 +132447,662.2350000028499,-0.05572585172344725 +132448,662.24000000285,-0.05572580319546785 +132449,662.2450000028501,-0.055725754674342015 +132450,662.2500000028502,-0.05572570616006752 +132451,662.2550000028504,-0.055725657652642126 +132452,662.2600000028505,-0.055725609152063614 +132453,662.2650000028506,-0.055725560658329745 +132454,662.2700000028507,-0.055725512171438285 +132455,662.2750000028508,-0.05572546369138699 +132456,662.2800000028509,-0.05572541521817365 +132457,662.285000002851,-0.055725366751796034 +132458,662.2900000028511,-0.0557253182922519 +132459,662.2950000028512,-0.05572526983953902 +132460,662.3000000028513,-0.05572522139365519 +132461,662.3050000028514,-0.055725172954598154 +132462,662.3100000028516,-0.05572512452236569 +132463,662.3150000028517,-0.055725076096955574 +132464,662.3200000028518,-0.05572502767836558 +132465,662.3250000028519,-0.05572497926659348 +132466,662.330000002852,-0.05572493086163705 +132467,662.3350000028521,-0.05572488246349406 +132468,662.3400000028522,-0.055724834072162284 +132469,662.3450000028523,-0.0557247856876395 +132470,662.3500000028524,-0.055724737309923486 +132471,662.3550000028525,-0.055724688939012015 +132472,662.3600000028526,-0.05572464057490287 +132473,662.3650000028528,-0.05572459221759381 +132474,662.3700000028529,-0.05572454386708263 +132475,662.375000002853,-0.05572449552336711 +132476,662.3800000028531,-0.05572444718644502 +132477,662.3850000028532,-0.05572439885631414 +132478,662.3900000028533,-0.055724350532972255 +132479,662.3950000028534,-0.055724302216417144 +132480,662.4000000028535,-0.055724253906646586 +132481,662.4050000028536,-0.05572420560365835 +132482,662.4100000028537,-0.05572415730745023 +132483,662.4150000028538,-0.05572410901802002 +132484,662.420000002854,-0.05572406073536547 +132485,662.4250000028541,-0.055724012459484384 +132486,662.4300000028542,-0.05572396419037454 +132487,662.4350000028543,-0.05572391592803373 +132488,662.4400000028544,-0.05572386767245974 +132489,662.4450000028545,-0.055723819423650324 +132490,662.4500000028546,-0.0557237711816033 +132491,662.4550000028547,-0.055723722946316445 +132492,662.4600000028548,-0.05572367471778753 +132493,662.4650000028549,-0.05572362649601436 +132494,662.470000002855,-0.055723578280994716 +132495,662.4750000028552,-0.055723530072726395 +132496,662.4800000028553,-0.05572348187120716 +132497,662.4850000028554,-0.05572343367643481 +132498,662.4900000028555,-0.05572338548840715 +132499,662.4950000028556,-0.05572333730712194 +132500,662.5000000028557,-0.05572328913257699 +132501,662.5050000028558,-0.055723240964770084 +132502,662.5100000028559,-0.05572319280369902 +132503,662.515000002856,-0.055723144649361574 +132504,662.5200000028561,-0.055723096501755554 +132505,662.5250000028562,-0.055723048360878734 +132506,662.5300000028564,-0.055723000226728915 +132507,662.5350000028565,-0.055722952099303884 +132508,662.5400000028566,-0.055722903978601454 +132509,662.5450000028567,-0.05572285586461939 +132510,662.5500000028568,-0.05572280775735551 +132511,662.5550000028569,-0.0557227596568076 +132512,662.560000002857,-0.05572271156297345 +132513,662.5650000028571,-0.05572266347585085 +132514,662.5700000028572,-0.055722615395437616 +132515,662.5750000028573,-0.05572256732173153 +132516,662.5800000028574,-0.05572251925473039 +132517,662.5850000028576,-0.05572247119443199 +132518,662.5900000028577,-0.055722423140834136 +132519,662.5950000028578,-0.05572237509393463 +132520,662.6000000028579,-0.055722327053731265 +132521,662.605000002858,-0.05572227902022184 +132522,662.6100000028581,-0.05572223099340414 +132523,662.6150000028582,-0.055722182973275976 +132524,662.6200000028583,-0.05572213495983516 +132525,662.6250000028584,-0.05572208695307947 +132526,662.6300000028585,-0.05572203895300673 +132527,662.6350000028586,-0.05572199095961473 +132528,662.6400000028588,-0.05572194297290128 +132529,662.6450000028589,-0.05572189499286417 +132530,662.650000002859,-0.0557218470195012 +132531,662.6550000028591,-0.05572179905281018 +132532,662.6600000028592,-0.05572175109278892 +132533,662.6650000028593,-0.055721703139435225 +132534,662.6700000028594,-0.0557216551927469 +132535,662.6750000028595,-0.05572160725272174 +132536,662.6800000028596,-0.05572155931935755 +132537,662.6850000028597,-0.05572151139265216 +132538,662.6900000028598,-0.05572146347260335 +132539,662.69500000286,-0.05572141555920894 +132540,662.7000000028601,-0.05572136765246673 +132541,662.7050000028602,-0.05572131975237453 +132542,662.7100000028603,-0.05572127185893015 +132543,662.7150000028604,-0.05572122397213141 +132544,662.7200000028605,-0.055721176091976105 +132545,662.7250000028606,-0.05572112821846204 +132546,662.7300000028607,-0.05572108035158705 +132547,662.7350000028608,-0.055721032491348924 +132548,662.7400000028609,-0.055720984637745476 +132549,662.745000002861,-0.055720936790774514 +132550,662.7500000028612,-0.05572088895043386 +132551,662.7550000028613,-0.055720841116721334 +132552,662.7600000028614,-0.05572079328963473 +132553,662.7650000028615,-0.05572074546917188 +132554,662.7700000028616,-0.05572069765533057 +132555,662.7750000028617,-0.055720649848108636 +132556,662.7800000028618,-0.05572060204750389 +132557,662.7850000028619,-0.05572055425351415 +132558,662.790000002862,-0.05572050646613722 +132559,662.7950000028621,-0.05572045868537093 +132560,662.8000000028622,-0.055720410911213096 +132561,662.8050000028624,-0.055720363143661515 +132562,662.8100000028625,-0.05572031538271402 +132563,662.8150000028626,-0.05572026762836843 +132564,662.8200000028627,-0.05572021988062257 +132565,662.8250000028628,-0.05572017213947423 +132566,662.8300000028629,-0.055720124404921266 +132567,662.835000002863,-0.05572007667696147 +132568,662.8400000028631,-0.055720028955592686 +132569,662.8450000028632,-0.0557199812408127 +132570,662.8500000028633,-0.055719933532619365 +132571,662.8550000028634,-0.055719885831010486 +132572,662.8600000028636,-0.05571983813598389 +132573,662.8650000028637,-0.05571979044753741 +132574,662.8700000028638,-0.05571974276566886 +132575,662.8750000028639,-0.055719695090376054 +132576,662.880000002864,-0.05571964742165682 +132577,662.8850000028641,-0.055719599759509 +132578,662.8900000028642,-0.0557195521039304 +132579,662.8950000028643,-0.05571950445491885 +132580,662.9000000028644,-0.05571945681247217 +132581,662.9050000028645,-0.0557194091765882 +132582,662.9100000028646,-0.055719361547264756 +132583,662.9150000028648,-0.05571931392449966 +132584,662.9200000028649,-0.055719266308290744 +132585,662.925000002865,-0.055719218698635845 +132586,662.9300000028651,-0.055719171095532774 +132587,662.9350000028652,-0.055719123498979374 +132588,662.9400000028653,-0.055719075908973466 +132589,662.9450000028654,-0.055719028325512884 +132590,662.9500000028655,-0.05571898074859546 +132591,662.9550000028656,-0.05571893317821902 +132592,662.9600000028657,-0.055718885614381396 +132593,662.9650000028658,-0.055718838057080416 +132594,662.970000002866,-0.055718790506313925 +132595,662.9750000028661,-0.055718742962079744 +132596,662.9800000028662,-0.055718695424375714 +132597,662.9850000028663,-0.05571864789319965 +132598,662.9900000028664,-0.05571860036854939 +132599,662.9950000028665,-0.055718552850422785 +132600,663.0000000028666,-0.05571850533881765 +132601,663.0050000028667,-0.055718457833731846 +132602,663.0100000028668,-0.055718410335163185 +132603,663.0150000028669,-0.055718362843109506 +132604,663.020000002867,-0.05571831535756866 +132605,663.0250000028672,-0.05571826787853846 +132606,663.0300000028673,-0.055718220406016754 +132607,663.0350000028674,-0.0557181729400014 +132608,663.0400000028675,-0.055718125480490203 +132609,663.0450000028676,-0.055718078027481015 +132610,663.0500000028677,-0.05571803058097169 +132611,663.0550000028678,-0.05571798314096005 +132612,663.0600000028679,-0.055717935707443926 +132613,663.065000002868,-0.05571788828042118 +132614,663.0700000028681,-0.055717840859889636 +132615,663.0750000028683,-0.05571779344584715 +132616,663.0800000028684,-0.05571774603829155 +132617,663.0850000028685,-0.055717698637220696 +132618,663.0900000028686,-0.0557176512426324 +132619,663.0950000028687,-0.055717603854524525 +132620,663.1000000028688,-0.05571755647289491 +132621,663.1050000028689,-0.05571750909774142 +132622,663.110000002869,-0.05571746172906187 +132623,663.1150000028691,-0.055717414366854116 +132624,663.1200000028692,-0.055717367011116 +132625,663.1250000028693,-0.055717319661845364 +132626,663.1300000028695,-0.05571727231904008 +132627,663.1350000028696,-0.05571722498269796 +132628,663.1400000028697,-0.05571717765281688 +132629,663.1450000028698,-0.05571713032939467 +132630,663.1500000028699,-0.05571708301242917 +132631,663.15500000287,-0.05571703570191825 +132632,663.1600000028701,-0.05571698839785974 +132633,663.1650000028702,-0.05571694110025151 +132634,663.1700000028703,-0.055716893809091374 +132635,663.1750000028704,-0.055716846524377216 +132636,663.1800000028705,-0.05571679924610689 +132637,663.1850000028707,-0.05571675197427822 +132638,663.1900000028708,-0.05571670470888907 +132639,663.1950000028709,-0.05571665744993729 +132640,663.200000002871,-0.05571661019742074 +132641,663.2050000028711,-0.05571656295133727 +132642,663.2100000028712,-0.05571651571168472 +132643,663.2150000028713,-0.055716468478460957 +132644,663.2200000028714,-0.05571642125166383 +132645,663.2250000028715,-0.0557163740312912 +132646,663.2300000028716,-0.055716326817340914 +132647,663.2350000028717,-0.05571627960981083 +132648,663.2400000028719,-0.0557162324086988 +132649,663.245000002872,-0.05571618521400269 +132650,663.2500000028721,-0.055716138025720355 +132651,663.2550000028722,-0.055716090843849646 +132652,663.2600000028723,-0.05571604366838842 +132653,663.2650000028724,-0.055715996499334536 +132654,663.2700000028725,-0.055715949336685854 +132655,663.2750000028726,-0.05571590218044024 +132656,663.2800000028727,-0.05571585503059555 +132657,663.2850000028728,-0.05571580788714964 +132658,663.290000002873,-0.05571576075010036 +132659,663.295000002873,-0.05571571361944558 +132660,663.3000000028732,-0.05571566649518317 +132661,663.3050000028733,-0.05571561937731099 +132662,663.3100000028734,-0.05571557226582689 +132663,663.3150000028735,-0.055715525160728745 +132664,663.3200000028736,-0.05571547806201441 +132665,663.3250000028737,-0.05571543096968175 +132666,663.3300000028738,-0.05571538388372862 +132667,663.3350000028739,-0.0557153368041529 +132668,663.340000002874,-0.05571528973095245 +132669,663.3450000028741,-0.05571524266412513 +132670,663.3500000028743,-0.055715195603668805 +132671,663.3550000028744,-0.055715148549581345 +132672,663.3600000028745,-0.05571510150186062 +132673,663.3650000028746,-0.05571505446050449 +132674,663.3700000028747,-0.05571500742551083 +132675,663.3750000028748,-0.055714960396877504 +132676,663.3800000028749,-0.055714913374602375 +132677,663.385000002875,-0.05571486635868333 +132678,663.3900000028751,-0.055714819349118205 +132679,663.3950000028752,-0.05571477234590489 +132680,663.4000000028753,-0.05571472534904126 +132681,663.4050000028755,-0.05571467835852518 +132682,663.4100000028756,-0.05571463137435453 +132683,663.4150000028757,-0.055714584396527156 +132684,663.4200000028758,-0.05571453742504096 +132685,663.4250000028759,-0.05571449045989378 +132686,663.430000002876,-0.055714443501083524 +132687,663.4350000028761,-0.05571439654860804 +132688,663.4400000028762,-0.055714349602465206 +132689,663.4450000028763,-0.05571430266265291 +132690,663.4500000028764,-0.055714255729169014 +132691,663.4550000028765,-0.0557142088020114 +132692,663.4600000028767,-0.05571416188117793 +132693,663.4650000028768,-0.0557141149666665 +132694,663.4700000028769,-0.055714068058474966 +132695,663.475000002877,-0.05571402115660122 +132696,663.4800000028771,-0.05571397426104314 +132697,663.4850000028772,-0.055713927371798574 +132698,663.4900000028773,-0.05571388048886543 +132699,663.4950000028774,-0.055713833612241574 +132700,663.5000000028775,-0.05571378674192489 +132701,663.5050000028776,-0.05571373987791327 +132702,663.5100000028777,-0.055713693020204576 +132703,663.5150000028779,-0.055713646168796684 +132704,663.520000002878,-0.05571359932368749 +132705,663.5250000028781,-0.05571355248487487 +132706,663.5300000028782,-0.055713505652356686 +132707,663.5350000028783,-0.055713458826130845 +132708,663.5400000028784,-0.05571341200619523 +132709,663.5450000028785,-0.055713365192547715 +132710,663.5500000028786,-0.05571331838518617 +132711,663.5550000028787,-0.0557132715841085 +132712,663.5600000028788,-0.05571322478931258 +132713,663.565000002879,-0.05571317800079629 +132714,663.570000002879,-0.055713131218557525 +132715,663.5750000028792,-0.055713084442594166 +132716,663.5800000028793,-0.055713037672904094 +132717,663.5850000028794,-0.0557129909094852 +132718,663.5900000028795,-0.05571294415233538 +132719,663.5950000028796,-0.05571289740145251 +132720,663.6000000028797,-0.05571285065683448 +132721,663.6050000028798,-0.055712803918479166 +132722,663.6100000028799,-0.05571275718638448 +132723,663.61500000288,-0.05571271046054829 +132724,663.6200000028801,-0.05571266374096851 +132725,663.6250000028803,-0.055712617027643005 +132726,663.6300000028804,-0.05571257032056967 +132727,663.6350000028805,-0.05571252361974639 +132728,663.6400000028806,-0.055712476925171076 +132729,663.6450000028807,-0.055712430236841616 +132730,663.6500000028808,-0.05571238355475589 +132731,663.6550000028809,-0.0557123368789118 +132732,663.660000002881,-0.05571229020930723 +132733,663.6650000028811,-0.05571224354594007 +132734,663.6700000028812,-0.05571219688880822 +132735,663.6750000028813,-0.05571215023790958 +132736,663.6800000028815,-0.05571210359324205 +132737,663.6850000028816,-0.0557120569548035 +132738,663.6900000028817,-0.055712010322591855 +132739,663.6950000028818,-0.055711963696604985 +132740,663.7000000028819,-0.055711917076840804 +132741,663.705000002882,-0.0557118704632972 +132742,663.7100000028821,-0.055711823855972085 +132743,663.7150000028822,-0.055711777254863336 +132744,663.7200000028823,-0.055711730659968865 +132745,663.7250000028824,-0.05571168407128656 +132746,663.7300000028825,-0.05571163748881432 +132747,663.7350000028827,-0.055711590912550055 +132748,663.7400000028828,-0.05571154434249165 +132749,663.7450000028829,-0.05571149777863703 +132750,663.750000002883,-0.05571145122098407 +132751,663.7550000028831,-0.055711404669530694 +132752,663.7600000028832,-0.05571135812427478 +132753,663.7650000028833,-0.05571131158521425 +132754,663.7700000028834,-0.05571126505234699 +132755,663.7750000028835,-0.0557112185256709 +132756,663.7800000028836,-0.05571117200518391 +132757,663.7850000028837,-0.0557111254908839 +132758,663.7900000028839,-0.05571107898276878 +132759,663.795000002884,-0.05571103248083647 +132760,663.8000000028841,-0.055710985985084845 +132761,663.8050000028842,-0.05571093949551184 +132762,663.8100000028843,-0.055710893012115334 +132763,663.8150000028844,-0.05571084653489325 +132764,663.8200000028845,-0.05571080006384349 +132765,663.8250000028846,-0.05571075359896398 +132766,663.8300000028847,-0.05571070714025259 +132767,663.8350000028848,-0.05571066068770726 +132768,663.840000002885,-0.05571061424132589 +132769,663.8450000028851,-0.05571056780110638 +132770,663.8500000028852,-0.055710521367046656 +132771,663.8550000028853,-0.055710474939144605 +132772,663.8600000028854,-0.05571042851739816 +132773,663.8650000028855,-0.05571038210180523 +132774,663.8700000028856,-0.0557103356923637 +132775,663.8750000028857,-0.05571028928907151 +132776,663.8800000028858,-0.055710242891926554 +132777,663.8850000028859,-0.055710196500926755 +132778,663.890000002886,-0.05571015011607003 +132779,663.8950000028861,-0.05571010373735427 +132780,663.9000000028863,-0.05571005736477743 +132781,663.9050000028864,-0.05571001099833738 +132782,663.9100000028865,-0.055709964638032065 +132783,663.9150000028866,-0.055709918283859385 +132784,663.9200000028867,-0.05570987193581725 +132785,663.9250000028868,-0.05570982559390359 +132786,663.9300000028869,-0.055709779258116314 +132787,663.935000002887,-0.05570973292845335 +132788,663.9400000028871,-0.055709686604912594 +132789,663.9450000028872,-0.05570964028749198 +132790,663.9500000028874,-0.05570959397618942 +132791,663.9550000028875,-0.05570954767100284 +132792,663.9600000028876,-0.05570950137193015 +132793,663.9650000028877,-0.055709455078969274 +132794,663.9700000028878,-0.05570940879211813 +132795,663.9750000028879,-0.055709362511374635 +132796,663.980000002888,-0.05570931623673673 +132797,663.9850000028881,-0.05570926996820231 +132798,663.9900000028882,-0.055709223705769306 +132799,663.9950000028883,-0.05570917744943565 +132800,664.0000000028884,-0.055709131199199236 +132801,664.0050000028886,-0.05570908495505802 +132802,664.0100000028887,-0.055709038717009905 +132803,664.0150000028888,-0.055708992485052816 +132804,664.0200000028889,-0.05570894625918469 +132805,664.025000002889,-0.05570890003940343 +132806,664.0300000028891,-0.055708853825706985 +132807,664.0350000028892,-0.05570880761809326 +132808,664.0400000028893,-0.055708761416560205 +132809,664.0450000028894,-0.05570871522110574 +132810,664.0500000028895,-0.05570866903172777 +132811,664.0550000028896,-0.05570862284842424 +132812,664.0600000028898,-0.055708576671193076 +132813,664.0650000028899,-0.055708530500032195 +132814,664.07000000289,-0.055708484334939544 +132815,664.0750000028901,-0.05570843817591303 +132816,664.0800000028902,-0.05570839202295061 +132817,664.0850000028903,-0.05570834587605019 +132818,664.0900000028904,-0.05570829973520971 +132819,664.0950000028905,-0.0557082536004271 +132820,664.1000000028906,-0.05570820747170029 +132821,664.1050000028907,-0.05570816134902722 +132822,664.1100000028908,-0.05570811523240582 +132823,664.115000002891,-0.055708069121834 +132824,664.1200000028911,-0.05570802301730971 +132825,664.1250000028912,-0.05570797691883089 +132826,664.1300000028913,-0.05570793082639547 +132827,664.1350000028914,-0.05570788474000138 +132828,664.1400000028915,-0.05570783865964654 +132829,664.1450000028916,-0.055707792585328916 +132830,664.1500000028917,-0.05570774651704643 +132831,664.1550000028918,-0.055707700454797004 +132832,664.1600000028919,-0.055707654398578596 +132833,664.165000002892,-0.05570760834838913 +132834,664.1700000028922,-0.05570756230422654 +132835,664.1750000028923,-0.055707516266088775 +132836,664.1800000028924,-0.055707470233973766 +132837,664.1850000028925,-0.055707424207879455 +132838,664.1900000028926,-0.05570737818780377 +132839,664.1950000028927,-0.05570733217374466 +132840,664.2000000028928,-0.055707286165700066 +132841,664.2050000028929,-0.05570724016366793 +132842,664.210000002893,-0.05570719416764618 +132843,664.2150000028931,-0.05570714817763276 +132844,664.2200000028932,-0.05570710219362563 +132845,664.2250000028934,-0.05570705621562271 +132846,664.2300000028935,-0.05570701024362195 +132847,664.2350000028936,-0.0557069642776213 +132848,664.2400000028937,-0.05570691831761869 +132849,664.2450000028938,-0.05570687236361208 +132850,664.2500000028939,-0.055706826415599396 +132851,664.255000002894,-0.05570678047357859 +132852,664.2600000028941,-0.05570673453754762 +132853,664.2650000028942,-0.055706688607504405 +132854,664.2700000028943,-0.05570664268344692 +132855,664.2750000028944,-0.05570659676537308 +132856,664.2800000028946,-0.05570655085328086 +132857,664.2850000028947,-0.05570650494716819 +132858,664.2900000028948,-0.05570645904703302 +132859,664.2950000028949,-0.055706413152873294 +132860,664.300000002895,-0.05570636726468697 +132861,664.3050000028951,-0.055706321382472 +132862,664.3100000028952,-0.05570627550622632 +132863,664.3150000028953,-0.055706229635947895 +132864,664.3200000028954,-0.05570618377163466 +132865,664.3250000028955,-0.05570613791328457 +132866,664.3300000028956,-0.05570609206089557 +132867,664.3350000028958,-0.05570604621446563 +132868,664.3400000028959,-0.05570600037399268 +132869,664.345000002896,-0.05570595453947469 +132870,664.3500000028961,-0.0557059087109096 +132871,664.3550000028962,-0.05570586288829537 +132872,664.3600000028963,-0.05570581707162995 +132873,664.3650000028964,-0.05570577126091131 +132874,664.3700000028965,-0.055705725456137375 +132875,664.3750000028966,-0.05570567965730612 +132876,664.3800000028967,-0.05570563386441549 +132877,664.3850000028968,-0.055705588077463446 +132878,664.390000002897,-0.055705542296447946 +132879,664.3950000028971,-0.05570549652136694 +132880,664.4000000028972,-0.055705450752218395 +132881,664.4050000028973,-0.05570540498900026 +132882,664.4100000028974,-0.05570535923171049 +132883,664.4150000028975,-0.055705313480347046 +132884,664.4200000028976,-0.055705267734907894 +132885,664.4250000028977,-0.055705221995390984 +132886,664.4300000028978,-0.05570517626179428 +132887,664.4350000028979,-0.05570513053411574 +132888,664.440000002898,-0.05570508481235333 +132889,664.4450000028982,-0.055705039096505 +132890,664.4500000028983,-0.05570499338656873 +132891,664.4550000028984,-0.05570494768254247 +132892,664.4600000028985,-0.05570490198442417 +132893,664.4650000028986,-0.0557048562922118 +132894,664.4700000028987,-0.055704810605903335 +132895,664.4750000028988,-0.05570476492549672 +132896,664.4800000028989,-0.05570471925098994 +132897,664.485000002899,-0.05570467358238094 +132898,664.4900000028991,-0.05570462791966769 +132899,664.4950000028992,-0.05570458226284816 +132900,664.5000000028994,-0.05570453661192032 +132901,664.5050000028995,-0.05570449096688212 +132902,664.5100000028996,-0.055704445327731535 +132903,664.5150000028997,-0.055704399694466535 +132904,664.5200000028998,-0.05570435406708508 +132905,664.5250000028999,-0.05570430844558514 +132906,664.5300000029,-0.05570426282996469 +132907,664.5350000029001,-0.05570421722022168 +132908,664.5400000029002,-0.0557041716163541 +132909,664.5450000029003,-0.05570412601835992 +132910,664.5500000029004,-0.05570408042623708 +132911,664.5550000029006,-0.05570403483998358 +132912,664.5600000029007,-0.05570398925959738 +132913,664.5650000029008,-0.05570394368507645 +132914,664.5700000029009,-0.05570389811641877 +132915,664.575000002901,-0.0557038525536223 +132916,664.5800000029011,-0.05570380699668502 +132917,664.5850000029012,-0.0557037614456049 +132918,664.5900000029013,-0.0557037159003799 +132919,664.5950000029014,-0.055703670361008026 +132920,664.6000000029015,-0.05570362482748722 +132921,664.6050000029016,-0.055703579299815474 +132922,664.6100000029018,-0.055703533777990755 +132923,664.6150000029019,-0.05570348826201103 +132924,664.620000002902,-0.055703442751874305 +132925,664.6250000029021,-0.05570339724757852 +132926,664.6300000029022,-0.05570335174912168 +132927,664.6350000029023,-0.05570330625650175 +132928,664.6400000029024,-0.055703260769716705 +132929,664.6450000029025,-0.05570321528876453 +132930,664.6500000029026,-0.055703169813643184 +132931,664.6550000029027,-0.05570312434435067 +132932,664.6600000029028,-0.05570307888088496 +132933,664.665000002903,-0.05570303342324402 +132934,664.6700000029031,-0.05570298797142586 +132935,664.6750000029032,-0.05570294252542843 +132936,664.6800000029033,-0.05570289708524972 +132937,664.6850000029034,-0.05570285165088771 +132938,664.6900000029035,-0.05570280622234038 +132939,664.6950000029036,-0.055702760799605726 +132940,664.7000000029037,-0.05570271538268172 +132941,664.7050000029038,-0.05570266997156634 +132942,664.7100000029039,-0.05570262456625757 +132943,664.715000002904,-0.05570257916675341 +132944,664.7200000029042,-0.05570253377305183 +132945,664.7250000029043,-0.055702488385150815 +132946,664.7300000029044,-0.05570244300304836 +132947,664.7350000029045,-0.05570239762674244 +132948,664.7400000029046,-0.05570235225623104 +132949,664.7450000029047,-0.055702306891512156 +132950,664.7500000029048,-0.055702261532583765 +132951,664.7550000029049,-0.055702216179443854 +132952,664.760000002905,-0.05570217083209042 +132953,664.7650000029051,-0.05570212549052144 +132954,664.7700000029052,-0.0557020801547349 +132955,664.7750000029054,-0.05570203482472881 +132956,664.7800000029055,-0.05570198950050114 +132957,664.7850000029056,-0.055701944182049885 +132958,664.7900000029057,-0.05570189886937304 +132959,664.7950000029058,-0.05570185356246859 +132960,664.8000000029059,-0.05570180826133452 +132961,664.805000002906,-0.05570176296596883 +132962,664.8100000029061,-0.055701717676369514 +132963,664.8150000029062,-0.05570167239253456 +132964,664.8200000029063,-0.05570162711446196 +132965,664.8250000029064,-0.05570158184214971 +132966,664.8300000029066,-0.055701536575595796 +132967,664.8350000029067,-0.05570149131479822 +132968,664.8400000029068,-0.055701446059754973 +132969,664.8450000029069,-0.055701400810464055 +132970,664.850000002907,-0.05570135556692344 +132971,664.8550000029071,-0.05570131032913115 +132972,664.8600000029072,-0.05570126509708517 +132973,664.8650000029073,-0.05570121987078349 +132974,664.8700000029074,-0.05570117465022412 +132975,664.8750000029075,-0.055701129435405054 +132976,664.8800000029077,-0.055701084226324284 +132977,664.8850000029078,-0.05570103902297981 +132978,664.8900000029079,-0.05570099382536964 +132979,664.895000002908,-0.05570094863349175 +132980,664.9000000029081,-0.055700903447344165 +132981,664.9050000029082,-0.055700858266924856 +132982,664.9100000029083,-0.055700813092231856 +132983,664.9150000029084,-0.055700767923263145 +132984,664.9200000029085,-0.05570072276001673 +132985,664.9250000029086,-0.05570067760249062 +132986,664.9300000029087,-0.05570063245068279 +132987,664.9350000029089,-0.055700587304591265 +132988,664.940000002909,-0.05570054216421406 +132989,664.9450000029091,-0.05570049702954914 +132990,664.9500000029092,-0.05570045190059455 +132991,664.9550000029093,-0.05570040677734826 +132992,664.9600000029094,-0.055700361659808295 +132993,664.9650000029095,-0.055700316547972646 +132994,664.9700000029096,-0.05570027144183933 +132995,664.9750000029097,-0.05570022634140635 +132996,664.9800000029098,-0.055700181246671705 +132997,664.9850000029099,-0.05570013615763341 +132998,664.99000000291,-0.05570009107428948 +132999,664.9950000029102,-0.0557000459966379 +133000,665.0000000029103,-0.05570000092467669 +133001,665.0050000029104,-0.05569995585840386 +133002,665.0100000029105,-0.05569991079781741 +133003,665.0150000029106,-0.05569986574291535 +133004,665.0200000029107,-0.0556998206936957 +133005,665.0250000029108,-0.05569977565015647 +133006,665.0300000029109,-0.055699730612295655 +133007,665.035000002911,-0.05569968558011128 +133008,665.0400000029111,-0.055699640553601354 +133009,665.0450000029113,-0.05569959553276388 +133010,665.0500000029114,-0.055699550517596876 +133011,665.0550000029115,-0.05569950550809836 +133012,665.0600000029116,-0.05569946050426633 +133013,665.0650000029117,-0.05569941550609882 +133014,665.0700000029118,-0.05569937051359382 +133015,665.0750000029119,-0.05569932552674936 +133016,665.080000002912,-0.05569928054556345 +133017,665.0850000029121,-0.0556992355700341 +133018,665.0900000029122,-0.05569919060015934 +133019,665.0950000029123,-0.05569914563593717 +133020,665.1000000029125,-0.05569910067736562 +133021,665.1050000029126,-0.05569905572444269 +133022,665.1100000029127,-0.05569901077716641 +133023,665.1150000029128,-0.0556989658355348 +133024,665.1200000029129,-0.05569892089954585 +133025,665.125000002913,-0.05569887596919762 +133026,665.1300000029131,-0.05569883104448809 +133027,665.1350000029132,-0.05569878612541531 +133028,665.1400000029133,-0.05569874121197728 +133029,665.1450000029134,-0.055698696304172034 +133030,665.1500000029135,-0.05569865140199758 +133031,665.1550000029137,-0.05569860650545195 +133032,665.1600000029138,-0.05569856161453315 +133033,665.1650000029139,-0.0556985167292392 +133034,665.170000002914,-0.05569847184956815 +133035,665.1750000029141,-0.055698426975518 +133036,665.1800000029142,-0.055698382107086775 +133037,665.1850000029143,-0.0556983372442725 +133038,665.1900000029144,-0.055698292387073196 +133039,665.1950000029145,-0.055698247535486904 +133040,665.2000000029146,-0.05569820268951162 +133041,665.2050000029147,-0.05569815784914539 +133042,665.2100000029149,-0.055698113014386236 +133043,665.215000002915,-0.05569806818523217 +133044,665.2200000029151,-0.05569802336168124 +133045,665.2250000029152,-0.05569797854373145 +133046,665.2300000029153,-0.05569793373138086 +133047,665.2350000029154,-0.055697888924627466 +133048,665.2400000029155,-0.05569784412346931 +133049,665.2450000029156,-0.055697799327904404 +133050,665.2500000029157,-0.05569775453793079 +133051,665.2550000029158,-0.05569770975354651 +133052,665.260000002916,-0.055697664974749574 +133053,665.265000002916,-0.05569762020153802 +133054,665.2700000029162,-0.055697575433909866 +133055,665.2750000029163,-0.05569753067186315 +133056,665.2800000029164,-0.05569748591539592 +133057,665.2850000029165,-0.05569744116450619 +133058,665.2900000029166,-0.05569739641919199 +133059,665.2950000029167,-0.05569735167945136 +133060,665.3000000029168,-0.055697306945282334 +133061,665.3050000029169,-0.05569726221668295 +133062,665.310000002917,-0.055697217493651224 +133063,665.3150000029171,-0.0556971727761852 +133064,665.3200000029173,-0.05569712806428291 +133065,665.3250000029174,-0.05569708335794239 +133066,665.3300000029175,-0.055697038657161684 +133067,665.3350000029176,-0.055696993961938814 +133068,665.3400000029177,-0.055696949272271826 +133069,665.3450000029178,-0.05569690458815875 +133070,665.3500000029179,-0.05569685990959762 +133071,665.355000002918,-0.05569681523658649 +133072,665.3600000029181,-0.05569677056912339 +133073,665.3650000029182,-0.05569672590720635 +133074,665.3700000029183,-0.05569668125083341 +133075,665.3750000029185,-0.05569663660000262 +133076,665.3800000029186,-0.05569659195471201 +133077,665.3850000029187,-0.05569654731495962 +133078,665.3900000029188,-0.05569650268074349 +133079,665.3950000029189,-0.05569645805206167 +133080,665.400000002919,-0.0556964134289122 +133081,665.4050000029191,-0.0556963688112931 +133082,665.4100000029192,-0.05569632419920244 +133083,665.4150000029193,-0.05569627959263825 +133084,665.4200000029194,-0.05569623499159857 +133085,665.4250000029195,-0.05569619039608145 +133086,665.4300000029197,-0.05569614580608493 +133087,665.4350000029198,-0.05569610122160705 +133088,665.4400000029199,-0.055696056642645875 +133089,665.44500000292,-0.05569601206919941 +133090,665.4500000029201,-0.05569596750126574 +133091,665.4550000029202,-0.0556959229388429 +133092,665.4600000029203,-0.05569587838192892 +133093,665.4650000029204,-0.05569583383052187 +133094,665.4700000029205,-0.05569578928461977 +133095,665.4750000029206,-0.05569574474422068 +133096,665.4800000029207,-0.05569570020932265 +133097,665.4850000029209,-0.05569565567992373 +133098,665.490000002921,-0.05569561115602197 +133099,665.4950000029211,-0.055695566637615414 +133100,665.5000000029212,-0.05569552212470212 +133101,665.5050000029213,-0.05569547761728014 +133102,665.5100000029214,-0.0556954331153475 +133103,665.5150000029215,-0.055695388618902275 +133104,665.5200000029216,-0.05569534412794249 +133105,665.5250000029217,-0.05569529964246622 +133106,665.5300000029218,-0.055695255162471514 +133107,665.535000002922,-0.05569521068795642 +133108,665.540000002922,-0.055695166218918984 +133109,665.5450000029222,-0.05569512175535728 +133110,665.5500000029223,-0.05569507729726934 +133111,665.5550000029224,-0.05569503284465323 +133112,665.5600000029225,-0.05569498839750699 +133113,665.5650000029226,-0.05569494395582869 +133114,665.5700000029227,-0.055694899519616384 +133115,665.5750000029228,-0.05569485508886812 +133116,665.5800000029229,-0.055694810663581965 +133117,665.585000002923,-0.055694766243755967 +133118,665.5900000029231,-0.05569472182938817 +133119,665.5950000029233,-0.055694677420476665 +133120,665.6000000029234,-0.05569463301701948 +133121,665.6050000029235,-0.0556945886190147 +133122,665.6100000029236,-0.055694544226460356 +133123,665.6150000029237,-0.055694499839354504 +133124,665.6200000029238,-0.055694455457695226 +133125,665.6250000029239,-0.055694411081480585 +133126,665.630000002924,-0.05569436671070862 +133127,665.6350000029241,-0.055694322345377405 +133128,665.6400000029242,-0.055694277985484986 +133129,665.6450000029243,-0.05569423363102945 +133130,665.6500000029245,-0.05569418928200884 +133131,665.6550000029246,-0.05569414493842122 +133132,665.6600000029247,-0.05569410060026465 +133133,665.6650000029248,-0.05569405626753719 +133134,665.6700000029249,-0.05569401194023692 +133135,665.675000002925,-0.05569396761836189 +133136,665.6800000029251,-0.05569392330191018 +133137,665.6850000029252,-0.05569387899087984 +133138,665.6900000029253,-0.05569383468526894 +133139,665.6950000029254,-0.05569379038507555 +133140,665.7000000029255,-0.05569374609029772 +133141,665.7050000029257,-0.05569370180093354 +133142,665.7100000029258,-0.05569365751698105 +133143,665.7150000029259,-0.055693613238438335 +133144,665.720000002926,-0.055693568965303454 +133145,665.7250000029261,-0.05569352469757449 +133146,665.7300000029262,-0.0556934804352495 +133147,665.7350000029263,-0.055693436178326554 +133148,665.7400000029264,-0.05569339192680371 +133149,665.7450000029265,-0.05569334768067905 +133150,665.7500000029266,-0.05569330343995065 +133151,665.7550000029267,-0.05569325920461657 +133152,665.7600000029269,-0.05569321497467487 +133153,665.765000002927,-0.05569317075012366 +133154,665.7700000029271,-0.055693126530960965 +133155,665.7750000029272,-0.05569308231718489 +133156,665.7800000029273,-0.05569303810879349 +133157,665.7850000029274,-0.055692993905784846 +133158,665.7900000029275,-0.05569294970815703 +133159,665.7950000029276,-0.05569290551590812 +133160,665.8000000029277,-0.05569286132903619 +133161,665.8050000029278,-0.055692817147539306 +133162,665.810000002928,-0.05569277297141554 +133163,665.8150000029281,-0.05569272880066298 +133164,665.8200000029282,-0.05569268463527969 +133165,665.8250000029283,-0.05569264047526376 +133166,665.8300000029284,-0.05569259632061325 +133167,665.8350000029285,-0.055692552171326244 +133168,665.8400000029286,-0.05569250802740082 +133169,665.8450000029287,-0.055692463888835066 +133170,665.8500000029288,-0.05569241975562705 +133171,665.8550000029289,-0.055692375627774855 +133172,665.860000002929,-0.05569233150527654 +133173,665.8650000029292,-0.055692287388130216 +133174,665.8700000029293,-0.055692243276333944 +133175,665.8750000029294,-0.05569219916988581 +133176,665.8800000029295,-0.05569215506878389 +133177,665.8850000029296,-0.055692110973026274 +133178,665.8900000029297,-0.05569206688261103 +133179,665.8950000029298,-0.05569202279753625 +133180,665.9000000029299,-0.05569197871780003 +133181,665.90500000293,-0.055691934643400415 +133182,665.9100000029301,-0.05569189057433552 +133183,665.9150000029302,-0.05569184651060341 +133184,665.9200000029304,-0.055691802452202184 +133185,665.9250000029305,-0.05569175839912991 +133186,665.9300000029306,-0.05569171435138469 +133187,665.9350000029307,-0.0556916703089646 +133188,665.9400000029308,-0.05569162627186774 +133189,665.9450000029309,-0.05569158224009216 +133190,665.950000002931,-0.05569153821363598 +133191,665.9550000029311,-0.055691494192497276 +133192,665.9600000029312,-0.05569145017667414 +133193,665.9650000029313,-0.05569140616616466 +133194,665.9700000029314,-0.05569136216096691 +133195,665.9750000029316,-0.05569131816107898 +133196,665.9800000029317,-0.05569127416649897 +133197,665.9850000029318,-0.055691230177224965 +133198,665.9900000029319,-0.05569118619325506 +133199,665.995000002932,-0.05569114221458735 +133200,666.0000000029321,-0.05569109824121991 +133201,666.0050000029322,-0.055691054273150825 +133202,666.0100000029323,-0.0556910103103782 +133203,666.0150000029324,-0.055690966352900134 +133204,666.0200000029325,-0.0556909224007147 +133205,666.0250000029326,-0.05569087845382001 +133206,666.0300000029328,-0.05569083451221414 +133207,666.0350000029329,-0.0556907905758952 +133208,666.040000002933,-0.055690746644861254 +133209,666.0450000029331,-0.05569070271911042 +133210,666.0500000029332,-0.055690658798640796 +133211,666.0550000029333,-0.055690614883450465 +133212,666.0600000029334,-0.05569057097353754 +133213,666.0650000029335,-0.055690527068900084 +133214,666.0700000029336,-0.055690483169536224 +133215,666.0750000029337,-0.05569043927544404 +133216,666.0800000029338,-0.055690395386621634 +133217,666.085000002934,-0.05569035150306711 +133218,666.0900000029341,-0.05569030762477856 +133219,666.0950000029342,-0.05569026375175407 +133220,666.1000000029343,-0.05569021988399176 +133221,666.1050000029344,-0.05569017602148972 +133222,666.1100000029345,-0.05569013216424605 +133223,666.1150000029346,-0.05569008831225885 +133224,666.1200000029347,-0.055690044465526216 +133225,666.1250000029348,-0.05569000062404625 +133226,666.1300000029349,-0.05568995678781705 +133227,666.135000002935,-0.05568991295683672 +133228,666.1400000029352,-0.05568986913110337 +133229,666.1450000029353,-0.055689825310615095 +133230,666.1500000029354,-0.05568978149537 +133231,666.1550000029355,-0.055689737685366184 +133232,666.1600000029356,-0.05568969388060175 +133233,666.1650000029357,-0.05568965008107481 +133234,666.1700000029358,-0.05568960628678346 +133235,666.1750000029359,-0.0556895624977258 +133236,666.180000002936,-0.05568951871389996 +133237,666.1850000029361,-0.05568947493530402 +133238,666.1900000029362,-0.05568943116193609 +133239,666.1950000029364,-0.055689387393794275 +133240,666.2000000029365,-0.05568934363087669 +133241,666.2050000029366,-0.05568929987318144 +133242,666.2100000029367,-0.05568925612070663 +133243,666.2150000029368,-0.05568921237345038 +133244,666.2200000029369,-0.05568916863141078 +133245,666.225000002937,-0.05568912489458595 +133246,666.2300000029371,-0.05568908116297399 +133247,666.2350000029372,-0.05568903743657302 +133248,666.2400000029373,-0.05568899371538114 +133249,666.2450000029374,-0.05568894999939647 +133250,666.2500000029376,-0.05568890628861712 +133251,666.2550000029377,-0.0556888625830412 +133252,666.2600000029378,-0.05568881888266681 +133253,666.2650000029379,-0.05568877518749207 +133254,666.270000002938,-0.0556887314975151 +133255,666.2750000029381,-0.055688687812734006 +133256,666.2800000029382,-0.0556886441331469 +133257,666.2850000029383,-0.055688600458751895 +133258,666.2900000029384,-0.05568855678954711 +133259,666.2950000029385,-0.05568851312553065 +133260,666.3000000029386,-0.05568846946670064 +133261,666.3050000029388,-0.05568842581305519 +133262,666.3100000029389,-0.05568838216459241 +133263,666.315000002939,-0.05568833852131043 +133264,666.3200000029391,-0.05568829488320736 +133265,666.3250000029392,-0.05568825125028131 +133266,666.3300000029393,-0.05568820762253041 +133267,666.3350000029394,-0.05568816399995278 +133268,666.3400000029395,-0.055688120382546516 +133269,666.3450000029396,-0.05568807677030975 +133270,666.3500000029397,-0.055688033163240606 +133271,666.3550000029398,-0.05568798956133719 +133272,666.36000000294,-0.055687945964597634 +133273,666.3650000029401,-0.055687902373020036 +133274,666.3700000029402,-0.05568785878660255 +133275,666.3750000029403,-0.05568781520534327 +133276,666.3800000029404,-0.05568777162924033 +133277,666.3850000029405,-0.055687728058291856 +133278,666.3900000029406,-0.05568768449249595 +133279,666.3950000029407,-0.05568764093185075 +133280,666.4000000029408,-0.05568759737635438 +133281,666.4050000029409,-0.05568755382600496 +133282,666.410000002941,-0.05568751028080061 +133283,666.4150000029412,-0.055687466740739454 +133284,666.4200000029413,-0.05568742320581961 +133285,666.4250000029414,-0.05568737967603923 +133286,666.4300000029415,-0.055687336151396406 +133287,666.4350000029416,-0.05568729263188929 +133288,666.4400000029417,-0.05568724911751599 +133289,666.4450000029418,-0.05568720560827464 +133290,666.4500000029419,-0.055687162104163364 +133291,666.455000002942,-0.0556871186051803 +133292,666.4600000029421,-0.055687075111323564 +133293,666.4650000029422,-0.055687031622591296 +133294,666.4700000029424,-0.055686988138981604 +133295,666.4750000029425,-0.05568694466049263 +133296,666.4800000029426,-0.0556869011871225 +133297,666.4850000029427,-0.05568685771886935 +133298,666.4900000029428,-0.05568681425573129 +133299,666.4950000029429,-0.05568677079770649 +133300,666.500000002943,-0.05568672734479304 +133301,666.5050000029431,-0.055686683896989095 +133302,666.5100000029432,-0.05568664045429277 +133303,666.5150000029433,-0.055686597016702206 +133304,666.5200000029434,-0.055686553584215544 +133305,666.5250000029436,-0.055686510156830904 +133306,666.5300000029437,-0.05568646673454643 +133307,666.5350000029438,-0.055686423317360255 +133308,666.5400000029439,-0.0556863799052705 +133309,666.545000002944,-0.05568633649827531 +133310,666.5500000029441,-0.05568629309637281 +133311,666.5550000029442,-0.055686249699561145 +133312,666.5600000029443,-0.05568620630783845 +133313,666.5650000029444,-0.055686162921202854 +133314,666.5700000029445,-0.055686119539652496 +133315,666.5750000029446,-0.05568607616318552 +133316,666.5800000029448,-0.05568603279180006 +133317,666.5850000029449,-0.055685989425494256 +133318,666.590000002945,-0.05568594606426623 +133319,666.5950000029451,-0.055685902708114146 +133320,666.6000000029452,-0.05568585935703612 +133321,666.6050000029453,-0.055685816011030315 +133322,666.6100000029454,-0.05568577267009485 +133323,666.6150000029455,-0.05568572933422787 +133324,666.6200000029456,-0.05568568600342752 +133325,666.6250000029457,-0.05568564267769193 +133326,666.6300000029458,-0.05568559935701926 +133327,666.635000002946,-0.055685556041407624 +133328,666.6400000029461,-0.055685512730855195 +133329,666.6450000029462,-0.055685469425360096 +133330,666.6500000029463,-0.055685426124920466 +133331,666.6550000029464,-0.055685382829534474 +133332,666.6600000029465,-0.05568533953920024 +133333,666.6650000029466,-0.055685296253915925 +133334,666.6700000029467,-0.055685252973679655 +133335,666.6750000029468,-0.05568520969848957 +133336,666.6800000029469,-0.055685166428343834 +133337,666.685000002947,-0.05568512316324059 +133338,666.6900000029472,-0.05568507990317798 +133339,666.6950000029473,-0.055685036648154156 +133340,666.7000000029474,-0.05568499339816725 +133341,666.7050000029475,-0.05568495015321542 +133342,666.7100000029476,-0.055684906913296826 +133343,666.7150000029477,-0.0556848636784096 +133344,666.7200000029478,-0.05568482044855189 +133345,666.7250000029479,-0.05568477722372185 +133346,666.730000002948,-0.05568473400391763 +133347,666.7350000029481,-0.055684690789137375 +133348,666.7400000029482,-0.05568464757937924 +133349,666.7450000029484,-0.05568460437464138 +133350,666.7500000029485,-0.055684561174921925 +133351,666.7550000029486,-0.05568451798021904 +133352,666.7600000029487,-0.05568447479053089 +133353,666.7650000029488,-0.055684431605855594 +133354,666.7700000029489,-0.055684388426191334 +133355,666.775000002949,-0.05568434525153626 +133356,666.7800000029491,-0.05568430208188851 +133357,666.7850000029492,-0.05568425891724624 +133358,666.7900000029493,-0.05568421575760762 +133359,666.7950000029495,-0.05568417260297079 +133360,666.8000000029496,-0.05568412945333391 +133361,666.8050000029497,-0.05568408630869513 +133362,666.8100000029498,-0.0556840431690526 +133363,666.8150000029499,-0.05568400003440449 +133364,666.82000000295,-0.055683956904748956 +133365,666.8250000029501,-0.05568391378008414 +133366,666.8300000029502,-0.05568387066040822 +133367,666.8350000029503,-0.05568382754571934 +133368,666.8400000029504,-0.05568378443601566 +133369,666.8450000029505,-0.05568374133129534 +133370,666.8500000029507,-0.055683698231556535 +133371,666.8550000029508,-0.05568365513679741 +133372,666.8600000029509,-0.05568361204701613 +133373,666.865000002951,-0.05568356896221083 +133374,666.8700000029511,-0.0556835258823797 +133375,666.8750000029512,-0.055683482807520876 +133376,666.8800000029513,-0.05568343973763254 +133377,666.8850000029514,-0.05568339667271285 +133378,666.8900000029515,-0.055683353612759945 +133379,666.8950000029516,-0.055683310557772016 +133380,666.9000000029517,-0.05568326750774722 +133381,666.9050000029519,-0.0556832244626837 +133382,666.910000002952,-0.055683181422579636 +133383,666.9150000029521,-0.05568313838743319 +133384,666.9200000029522,-0.055683095357242536 +133385,666.9250000029523,-0.055683052332005815 +133386,666.9300000029524,-0.05568300931172121 +133387,666.9350000029525,-0.05568296629638688 +133388,666.9400000029526,-0.055682923286001 +133389,666.9450000029527,-0.05568288028056173 +133390,666.9500000029528,-0.05568283728006723 +133391,666.9550000029529,-0.05568279428451568 +133392,666.960000002953,-0.05568275129390524 +133393,666.9650000029532,-0.05568270830823407 +133394,666.9700000029533,-0.055682665327500346 +133395,666.9750000029534,-0.05568262235170224 +133396,666.9800000029535,-0.05568257938083792 +133397,666.9850000029536,-0.05568253641490556 +133398,666.9900000029537,-0.05568249345390332 +133399,666.9950000029538,-0.05568245049782936 +133400,667.0000000029539,-0.05568240754668188 +133401,667.005000002954,-0.05568236460045903 +133402,667.0100000029541,-0.05568232165915899 +133403,667.0150000029543,-0.05568227872277993 +133404,667.0200000029544,-0.05568223579132001 +133405,667.0250000029545,-0.05568219286477742 +133406,667.0300000029546,-0.05568214994315032 +133407,667.0350000029547,-0.055682107026436896 +133408,667.0400000029548,-0.05568206411463531 +133409,667.0450000029549,-0.055682021207743744 +133410,667.050000002955,-0.05568197830576037 +133411,667.0550000029551,-0.05568193540868336 +133412,667.0600000029552,-0.0556818925165109 +133413,667.0650000029553,-0.05568184962924116 +133414,667.0700000029555,-0.0556818067468723 +133415,667.0750000029556,-0.05568176386940252 +133416,667.0800000029557,-0.055681720996829984 +133417,667.0850000029558,-0.055681678129152874 +133418,667.0900000029559,-0.05568163526636937 +133419,667.095000002956,-0.05568159240847764 +133420,667.1000000029561,-0.05568154955547587 +133421,667.1050000029562,-0.05568150670736223 +133422,667.1100000029563,-0.05568146386413493 +133423,667.1150000029564,-0.055681421025792106 +133424,667.1200000029565,-0.055681378192331966 +133425,667.1250000029567,-0.05568133536375268 +133426,667.1300000029568,-0.05568129254005244 +133427,667.1350000029569,-0.05568124972122942 +133428,667.140000002957,-0.05568120690728179 +133429,667.1450000029571,-0.055681164098207746 +133430,667.1500000029572,-0.055681121294005466 +133431,667.1550000029573,-0.055681078494673145 +133432,667.1600000029574,-0.05568103570020895 +133433,667.1650000029575,-0.05568099291061107 +133434,667.1700000029576,-0.05568095012587769 +133435,667.1750000029577,-0.05568090734600699 +133436,667.1800000029579,-0.05568086457099716 +133437,667.185000002958,-0.055680821800846374 +133438,667.1900000029581,-0.05568077903555283 +133439,667.1950000029582,-0.05568073627511471 +133440,667.2000000029583,-0.05568069351953021 +133441,667.2050000029584,-0.05568065076879751 +133442,667.2100000029585,-0.05568060802291478 +133443,667.2150000029586,-0.055680565281880236 +133444,667.2200000029587,-0.05568052254569204 +133445,667.2250000029588,-0.055680479814348406 +133446,667.230000002959,-0.05568043708784749 +133447,667.235000002959,-0.05568039436618751 +133448,667.2400000029592,-0.05568035164936666 +133449,667.2450000029593,-0.055680308937383106 +133450,667.2500000029594,-0.05568026623023505 +133451,667.2550000029595,-0.05568022352792067 +133452,667.2600000029596,-0.05568018083043818 +133453,667.2650000029597,-0.055680138137785745 +133454,667.2700000029598,-0.05568009544996159 +133455,667.2750000029599,-0.05568005276696387 +133456,667.28000000296,-0.055680010088790796 +133457,667.2850000029601,-0.055679967415440575 +133458,667.2900000029603,-0.05567992474691137 +133459,667.2950000029604,-0.05567988208320139 +133460,667.3000000029605,-0.05567983942430884 +133461,667.3050000029606,-0.0556797967702319 +133462,667.3100000029607,-0.05567975412096878 +133463,667.3150000029608,-0.05567971147651765 +133464,667.3200000029609,-0.05567966883687673 +133465,667.325000002961,-0.055679626202044204 +133466,667.3300000029611,-0.05567958357201828 +133467,667.3350000029612,-0.05567954094679713 +133468,667.3400000029613,-0.05567949832637898 +133469,667.3450000029615,-0.055679455710762 +133470,667.3500000029616,-0.05567941309994441 +133471,667.3550000029617,-0.05567937049392441 +133472,667.3600000029618,-0.05567932789270017 +133473,667.3650000029619,-0.05567928529626993 +133474,667.370000002962,-0.05567924270463185 +133475,667.3750000029621,-0.05567920011778415 +133476,667.3800000029622,-0.05567915753572504 +133477,667.3850000029623,-0.055679114958452715 +133478,667.3900000029624,-0.055679072385965374 +133479,667.3950000029625,-0.0556790298182612 +133480,667.4000000029627,-0.055678987255338416 +133481,667.4050000029628,-0.05567894469719522 +133482,667.4100000029629,-0.05567890214382982 +133483,667.415000002963,-0.055678859595240396 +133484,667.4200000029631,-0.05567881705142519 +133485,667.4250000029632,-0.05567877451238236 +133486,667.4300000029633,-0.05567873197811015 +133487,667.4350000029634,-0.055678689448606745 +133488,667.4400000029635,-0.05567864692387036 +133489,667.4450000029636,-0.055678604403899185 +133490,667.4500000029637,-0.05567856188869145 +133491,667.4550000029639,-0.05567851937824534 +133492,667.460000002964,-0.05567847687255908 +133493,667.4650000029641,-0.05567843437163084 +133494,667.4700000029642,-0.05567839187545887 +133495,667.4750000029643,-0.055678349384041356 +133496,667.4800000029644,-0.05567830689737652 +133497,667.4850000029645,-0.05567826441546255 +133498,667.4900000029646,-0.05567822193829767 +133499,667.4950000029647,-0.05567817946588008 +133500,667.5000000029648,-0.055678136998208005 +133501,667.505000002965,-0.055678094535279644 +133502,667.5100000029651,-0.0556780520770932 +133503,667.5150000029652,-0.0556780096236469 +133504,667.5200000029653,-0.05567796717493896 +133505,667.5250000029654,-0.05567792473096756 +133506,667.5300000029655,-0.05567788229173094 +133507,667.5350000029656,-0.05567783985722731 +133508,667.5400000029657,-0.05567779742745488 +133509,667.5450000029658,-0.05567775500241186 +133510,667.5500000029659,-0.055677712582096466 +133511,667.555000002966,-0.055677670166506904 +133512,667.5600000029661,-0.05567762775564138 +133513,667.5650000029663,-0.05567758534949815 +133514,667.5700000029664,-0.055677542948075386 +133515,667.5750000029665,-0.05567750055137133 +133516,667.5800000029666,-0.05567745815938417 +133517,667.5850000029667,-0.05567741577211216 +133518,667.5900000029668,-0.05567737338955348 +133519,667.5950000029669,-0.055677331011706375 +133520,667.600000002967,-0.05567728863856906 +133521,667.6050000029671,-0.05567724627013972 +133522,667.6100000029672,-0.05567720390641661 +133523,667.6150000029673,-0.05567716154739793 +133524,667.6200000029675,-0.05567711919308191 +133525,667.6250000029676,-0.05567707684346677 +133526,667.6300000029677,-0.05567703449855073 +133527,667.6350000029678,-0.055676992158332 +133528,667.6400000029679,-0.0556769498228088 +133529,667.645000002968,-0.05567690749197935 +133530,667.6500000029681,-0.05567686516584189 +133531,667.6550000029682,-0.055676822844394624 +133532,667.6600000029683,-0.055676780527635784 +133533,667.6650000029684,-0.05567673821556359 +133534,667.6700000029685,-0.055676695908176255 +133535,667.6750000029687,-0.05567665360547201 +133536,667.6800000029688,-0.05567661130744908 +133537,667.6850000029689,-0.0556765690141057 +133538,667.690000002969,-0.05567652672544007 +133539,667.6950000029691,-0.05567648444145043 +133540,667.7000000029692,-0.055676442162135006 +133541,667.7050000029693,-0.05567639988749201 +133542,667.7100000029694,-0.055676357617519684 +133543,667.7150000029695,-0.05567631535221625 +133544,667.7200000029696,-0.05567627309157993 +133545,667.7250000029698,-0.055676230835608964 +133546,667.7300000029699,-0.05567618858430156 +133547,667.73500000297,-0.055676146337655955 +133548,667.7400000029701,-0.055676104095670385 +133549,667.7450000029702,-0.05567606185834306 +133550,667.7500000029703,-0.05567601962567223 +133551,667.7550000029704,-0.05567597739765611 +133552,667.7600000029705,-0.055675935174292944 +133553,667.7650000029706,-0.05567589295558095 +133554,667.7700000029707,-0.05567585074151836 +133555,667.7750000029708,-0.0556758085321034 +133556,667.780000002971,-0.055675766327334314 +133557,667.7850000029711,-0.055675724127209336 +133558,667.7900000029712,-0.05567568193172669 +133559,667.7950000029713,-0.055675639740884596 +133560,667.8000000029714,-0.0556755975546813 +133561,667.8050000029715,-0.05567555537311505 +133562,667.8100000029716,-0.055675513196184044 +133563,667.8150000029717,-0.05567547102388654 +133564,667.8200000029718,-0.05567542885622078 +133565,667.8250000029719,-0.055675386693184975 +133566,667.830000002972,-0.055675344534777384 +133567,667.8350000029722,-0.05567530238099623 +133568,667.8400000029723,-0.055675260231839746 +133569,667.8450000029724,-0.05567521808730618 +133570,667.8500000029725,-0.055675175947393754 +133571,667.8550000029726,-0.055675133812100715 +133572,667.8600000029727,-0.0556750916814253 +133573,667.8650000029728,-0.055675049555365744 +133574,667.8700000029729,-0.05567500743392029 +133575,667.875000002973,-0.05567496531708717 +133576,667.8800000029731,-0.055674923204864626 +133577,667.8850000029732,-0.055674881097250904 +133578,667.8900000029734,-0.055674838994244226 +133579,667.8950000029735,-0.05567479689584285 +133580,667.9000000029736,-0.055674754802045 +133581,667.9050000029737,-0.05567471271284895 +133582,667.9100000029738,-0.0556746706282529 +133583,667.9150000029739,-0.05567462854825512 +133584,667.920000002974,-0.05567458647285383 +133585,667.9250000029741,-0.055674544402047305 +133586,667.9300000029742,-0.05567450233583375 +133587,667.9350000029743,-0.055674460274211426 +133588,667.9400000029744,-0.055674418217178584 +133589,667.9450000029746,-0.05567437616473346 +133590,667.9500000029747,-0.05567433411687431 +133591,667.9550000029748,-0.05567429207359935 +133592,667.9600000029749,-0.05567425003490685 +133593,667.965000002975,-0.05567420800079505 +133594,667.9700000029751,-0.0556741659712622 +133595,667.9750000029752,-0.05567412394630654 +133596,667.9800000029753,-0.0556740819259263 +133597,667.9850000029754,-0.05567403991011976 +133598,667.9900000029755,-0.05567399789888515 +133599,667.9950000029756,-0.05567395589222072 +133600,668.0000000029758,-0.05567391389012472 +133601,668.0050000029759,-0.0556738718925954 +133602,668.010000002976,-0.055673829899631 +133603,668.0150000029761,-0.05567378791122978 +133604,668.0200000029762,-0.05567374592738999 +133605,668.0250000029763,-0.05567370394810986 +133606,668.0300000029764,-0.05567366197338767 +133607,668.0350000029765,-0.055673620003221645 +133608,668.0400000029766,-0.055673578037610055 +133609,668.0450000029767,-0.05567353607655114 +133610,668.0500000029768,-0.05567349412004316 +133611,668.055000002977,-0.05567345216808437 +133612,668.0600000029771,-0.05567341022067301 +133613,668.0650000029772,-0.05567336827780734 +133614,668.0700000029773,-0.055673326339485615 +133615,668.0750000029774,-0.05567328440570608 +133616,668.0800000029775,-0.05567324247646701 +133617,668.0850000029776,-0.055673200551766645 +133618,668.0900000029777,-0.05567315863160323 +133619,668.0950000029778,-0.055673116715975045 +133620,668.1000000029779,-0.05567307480488033 +133621,668.105000002978,-0.05567303289831735 +133622,668.1100000029782,-0.055672990996284345 +133623,668.1150000029783,-0.05567294909877958 +133624,668.1200000029784,-0.05567290720580132 +133625,668.1250000029785,-0.05567286531734783 +133626,668.1300000029786,-0.055672823433417354 +133627,668.1350000029787,-0.05567278155400814 +133628,668.1400000029788,-0.05567273967911847 +133629,668.1450000029789,-0.05567269780874659 +133630,668.150000002979,-0.05567265594289076 +133631,668.1550000029791,-0.05567261408154924 +133632,668.1600000029792,-0.0556725722247203 +133633,668.1650000029794,-0.0556725303724022 +133634,668.1700000029795,-0.05567248852459318 +133635,668.1750000029796,-0.05567244668129152 +133636,668.1800000029797,-0.055672404842495485 +133637,668.1850000029798,-0.055672363008203336 +133638,668.1900000029799,-0.05567232117841333 +133639,668.19500000298,-0.05567227935312373 +133640,668.2000000029801,-0.0556722375323328 +133641,668.2050000029802,-0.0556721957160388 +133642,668.2100000029803,-0.055672153904240004 +133643,668.2150000029804,-0.05567211209693467 +133644,668.2200000029806,-0.05567207029412106 +133645,668.2250000029807,-0.055672028495797436 +133646,668.2300000029808,-0.055671986701962085 +133647,668.2350000029809,-0.05567194491261326 +133648,668.240000002981,-0.055671903127749216 +133649,668.2450000029811,-0.055671861347368234 +133650,668.2500000029812,-0.05567181957146858 +133651,668.2550000029813,-0.05567177780004852 +133652,668.2600000029814,-0.055671736033106316 +133653,668.2650000029815,-0.05567169427064025 +133654,668.2700000029816,-0.05567165251264858 +133655,668.2750000029818,-0.05567161075912958 +133656,668.2800000029819,-0.055671569010081516 +133657,668.285000002982,-0.05567152726550266 +133658,668.2900000029821,-0.05567148552539128 +133659,668.2950000029822,-0.05567144378974565 +133660,668.3000000029823,-0.055671402058564044 +133661,668.3050000029824,-0.05567136033184473 +133662,668.3100000029825,-0.05567131860958597 +133663,668.3150000029826,-0.05567127689178605 +133664,668.3200000029827,-0.05567123517844324 +133665,668.3250000029828,-0.055671193469555805 +133666,668.330000002983,-0.05567115176512202 +133667,668.3350000029831,-0.055671110065140174 +133668,668.3400000029832,-0.05567106836960852 +133669,668.3450000029833,-0.05567102667852534 +133670,668.3500000029834,-0.05567098499188892 +133671,668.3550000029835,-0.05567094330969752 +133672,668.3600000029836,-0.05567090163194942 +133673,668.3650000029837,-0.0556708599586429 +133674,668.3700000029838,-0.05567081828977622 +133675,668.3750000029839,-0.05567077662534769 +133676,668.380000002984,-0.055670734965355566 +133677,668.3850000029842,-0.055670693309798125 +133678,668.3900000029843,-0.05567065165867365 +133679,668.3950000029844,-0.05567061001198042 +133680,668.4000000029845,-0.05567056836971669 +133681,668.4050000029846,-0.05567052673188077 +133682,668.4100000029847,-0.05567048509847092 +133683,668.4150000029848,-0.05567044346948544 +133684,668.4200000029849,-0.0556704018449226 +133685,668.425000002985,-0.05567036022478067 +133686,668.4300000029851,-0.05567031860905793 +133687,668.4350000029852,-0.055670276997752684 +133688,668.4400000029854,-0.0556702353908632 +133689,668.4450000029855,-0.05567019378838775 +133690,668.4500000029856,-0.05567015219032463 +133691,668.4550000029857,-0.055670110596672116 +133692,668.4600000029858,-0.05567006900742851 +133693,668.4650000029859,-0.05567002742259207 +133694,668.470000002986,-0.055669985842161096 +133695,668.4750000029861,-0.05566994426613387 +133696,668.4800000029862,-0.055669902694508666 +133697,668.4850000029863,-0.05566986112728377 +133698,668.4900000029864,-0.05566981956445747 +133699,668.4950000029866,-0.05566977800602807 +133700,668.5000000029867,-0.05566973645199383 +133701,668.5050000029868,-0.055669694902353045 +133702,668.5100000029869,-0.05566965335710401 +133703,668.515000002987,-0.05566961181624501 +133704,668.5200000029871,-0.05566957027977432 +133705,668.5250000029872,-0.05566952874769024 +133706,668.5300000029873,-0.05566948721999106 +133707,668.5350000029874,-0.055669445696675056 +133708,668.5400000029875,-0.055669404177740536 +133709,668.5450000029876,-0.05566936266318576 +133710,668.5500000029878,-0.055669321153009065 +133711,668.5550000029879,-0.0556692796472087 +133712,668.560000002988,-0.05566923814578297 +133713,668.5650000029881,-0.055669196648730164 +133714,668.5700000029882,-0.055669155156048575 +133715,668.5750000029883,-0.0556691136677365 +133716,668.5800000029884,-0.05566907218379221 +133717,668.5850000029885,-0.05566903070421402 +133718,668.5900000029886,-0.05566898922900022 +133719,668.5950000029887,-0.05566894775814909 +133720,668.6000000029888,-0.055668906291658944 +133721,668.605000002989,-0.05566886482952806 +133722,668.6100000029891,-0.055668823371754744 +133723,668.6150000029892,-0.055668781918337275 +133724,668.6200000029893,-0.055668740469273954 +133725,668.6250000029894,-0.05566869902456308 +133726,668.6300000029895,-0.055668657584202946 +133727,668.6350000029896,-0.05566861614819186 +133728,668.6400000029897,-0.0556685747165281 +133729,668.6450000029898,-0.055668533289209975 +133730,668.6500000029899,-0.055668491866235785 +133731,668.65500000299,-0.055668450447603816 +133732,668.6600000029902,-0.055668409033312376 +133733,668.6650000029903,-0.055668367623359756 +133734,668.6700000029904,-0.055668326217744264 +133735,668.6750000029905,-0.05566828481646419 +133736,668.6800000029906,-0.055668243419517836 +133737,668.6850000029907,-0.0556682020269035 +133738,668.6900000029908,-0.0556681606386195 +133739,668.6950000029909,-0.055668119254664104 +133740,668.700000002991,-0.05566807787503564 +133741,668.7050000029911,-0.0556680364997324 +133742,668.7100000029913,-0.05566799512875268 +133743,668.7150000029914,-0.055667953762094796 +133744,668.7200000029915,-0.05566791239975705 +133745,668.7250000029916,-0.055667871041737725 +133746,668.7300000029917,-0.05566782968803516 +133747,668.7350000029918,-0.05566778833864763 +133748,668.7400000029919,-0.05566774699357343 +133749,668.745000002992,-0.055667705652810894 +133750,668.7500000029921,-0.05566766431635831 +133751,668.7550000029922,-0.055667622984213995 +133752,668.7600000029923,-0.055667581656376246 +133753,668.7650000029925,-0.05566754033284336 +133754,668.7700000029926,-0.055667499013613654 +133755,668.7750000029927,-0.055667457698685426 +133756,668.7800000029928,-0.05566741638805701 +133757,668.7850000029929,-0.05566737508172668 +133758,668.790000002993,-0.055667333779692754 +133759,668.7950000029931,-0.055667292481953554 +133760,668.8000000029932,-0.05566725118850738 +133761,668.8050000029933,-0.05566720989935253 +133762,668.8100000029934,-0.055667168614487325 +133763,668.8150000029935,-0.05566712733391008 +133764,668.8200000029937,-0.05566708605761909 +133765,668.8250000029938,-0.05566704478561268 +133766,668.8300000029939,-0.05566700351788914 +133767,668.835000002994,-0.055666962254446804 +133768,668.8400000029941,-0.055666920995283975 +133769,668.8450000029942,-0.05566687974039897 +133770,668.8500000029943,-0.055666838489790094 +133771,668.8550000029944,-0.05566679724345566 +133772,668.8600000029945,-0.05566675600139398 +133773,668.8650000029946,-0.05566671476360337 +133774,668.8700000029947,-0.05566667353008214 +133775,668.8750000029949,-0.05566663230082861 +133776,668.880000002995,-0.0556665910758411 +133777,668.8850000029951,-0.05566654985511791 +133778,668.8900000029952,-0.05566650863865737 +133779,668.8950000029953,-0.05566646742645777 +133780,668.9000000029954,-0.05566642621851746 +133781,668.9050000029955,-0.05566638501483473 +133782,668.9100000029956,-0.055666343815407915 +133783,668.9150000029957,-0.055666302620235315 +133784,668.9200000029958,-0.05566626142931526 +133785,668.925000002996,-0.055666220242646065 +133786,668.930000002996,-0.05566617906022604 +133787,668.9350000029962,-0.05566613788205353 +133788,668.9400000029963,-0.05566609670812683 +133789,668.9450000029964,-0.05566605553844427 +133790,668.9500000029965,-0.05566601437300416 +133791,668.9550000029966,-0.055665973211804824 +133792,668.9600000029967,-0.05566593205484459 +133793,668.9650000029968,-0.05566589090212176 +133794,668.9700000029969,-0.05566584975363468 +133795,668.975000002997,-0.055665808609381646 +133796,668.9800000029971,-0.055665767469360986 +133797,668.9850000029973,-0.055665726333571044 +133798,668.9900000029974,-0.05566568520201012 +133799,668.9950000029975,-0.05566564407467655 +133800,669.0000000029976,-0.055665602951568645 +133801,669.0050000029977,-0.05566556183268474 +133802,669.0100000029978,-0.05566552071802316 +133803,669.0150000029979,-0.05566547960758222 +133804,669.020000002998,-0.05566543850136024 +133805,669.0250000029981,-0.05566539739935557 +133806,669.0300000029982,-0.05566535630156652 +133807,669.0350000029983,-0.055665315207991416 +133808,669.0400000029985,-0.05566527411862857 +133809,669.0450000029986,-0.05566523303347634 +133810,669.0500000029987,-0.055665191952533034 +133811,669.0550000029988,-0.05566515087579698 +133812,669.0600000029989,-0.055665109803266506 +133813,669.065000002999,-0.05566506873493994 +133814,669.0700000029991,-0.0556650276708156 +133815,669.0750000029992,-0.055664986610891844 +133816,669.0800000029993,-0.05566494555516698 +133817,669.0850000029994,-0.05566490450363935 +133818,669.0900000029995,-0.05566486345630727 +133819,669.0950000029997,-0.05566482241316908 +133820,669.1000000029998,-0.055664781374223114 +133821,669.1050000029999,-0.05566474033946769 +133822,669.110000003,-0.05566469930890115 +133823,669.1150000030001,-0.05566465828252182 +133824,669.1200000030002,-0.05566461726032803 +133825,669.1250000030003,-0.055664576242318124 +133826,669.1300000030004,-0.05566453522849042 +133827,669.1350000030005,-0.05566449421884327 +133828,669.1400000030006,-0.055664453213375 +133829,669.1450000030007,-0.05566441221208393 +133830,669.1500000030009,-0.055664371214968415 +133831,669.155000003001,-0.05566433022202678 +133832,669.1600000030011,-0.055664289233257364 +133833,669.1650000030012,-0.055664248248658496 +133834,669.1700000030013,-0.05566420726822852 +133835,669.1750000030014,-0.05566416629196577 +133836,669.1800000030015,-0.05566412531986858 +133837,669.1850000030016,-0.055664084351935275 +133838,669.1900000030017,-0.05566404338816422 +133839,669.1950000030018,-0.05566400242855373 +133840,669.200000003002,-0.05566396147310215 +133841,669.205000003002,-0.055663920521807825 +133842,669.2100000030022,-0.05566387957466908 +133843,669.2150000030023,-0.055663838631684275 +133844,669.2200000030024,-0.05566379769285173 +133845,669.2250000030025,-0.0556637567581698 +133846,669.2300000030026,-0.05566371582763681 +133847,669.2350000030027,-0.05566367490125111 +133848,669.2400000030028,-0.05566363397901106 +133849,669.2450000030029,-0.055663593060914965 +133850,669.250000003003,-0.055663552146961184 +133851,669.2550000030031,-0.05566351123714806 +133852,669.2600000030033,-0.05566347033147393 +133853,669.2650000030034,-0.05566342942993714 +133854,669.2700000030035,-0.05566338853253603 +133855,669.2750000030036,-0.055663347639268966 +133856,669.2800000030037,-0.055663306750134256 +133857,669.2850000030038,-0.05566326586513027 +133858,669.2900000030039,-0.055663224984255355 +133859,669.295000003004,-0.05566318410750783 +133860,669.3000000030041,-0.05566314323488607 +133861,669.3050000030042,-0.055663102366388405 +133862,669.3100000030043,-0.05566306150201318 +133863,669.3150000030045,-0.05566302064175874 +133864,669.3200000030046,-0.055662979785623436 +133865,669.3250000030047,-0.05566293893360562 +133866,669.3300000030048,-0.055662898085703634 +133867,669.3350000030049,-0.05566285724191583 +133868,669.340000003005,-0.055662816402240564 +133869,669.3450000030051,-0.055662775566676176 +133870,669.3500000030052,-0.05566273473522101 +133871,669.3550000030053,-0.05566269390787342 +133872,669.3600000030054,-0.05566265308463176 +133873,669.3650000030055,-0.05566261226549438 +133874,669.3700000030057,-0.05566257145045961 +133875,669.3750000030058,-0.05566253063952583 +133876,669.3800000030059,-0.05566248983269138 +133877,669.385000003006,-0.055662449029954604 +133878,669.3900000030061,-0.05566240823131386 +133879,669.3950000030062,-0.055662367436767515 +133880,669.4000000030063,-0.0556623266463139 +133881,669.4050000030064,-0.05566228585995138 +133882,669.4100000030065,-0.05566224507767831 +133883,669.4150000030066,-0.05566220429949303 +133884,669.4200000030067,-0.05566216352539391 +133885,669.4250000030069,-0.05566212275537929 +133886,669.430000003007,-0.05566208198944753 +133887,669.4350000030071,-0.055662041227597 +133888,669.4400000030072,-0.05566200046982604 +133889,669.4450000030073,-0.05566195971613301 +133890,669.4500000030074,-0.05566191896651627 +133891,669.4550000030075,-0.055661878220974174 +133892,669.4600000030076,-0.055661837479505066 +133893,669.4650000030077,-0.055661796742107326 +133894,669.4700000030078,-0.05566175600877931 +133895,669.475000003008,-0.05566171527951936 +133896,669.4800000030081,-0.05566167455432584 +133897,669.4850000030082,-0.05566163383319712 +133898,669.4900000030083,-0.055661593116131544 +133899,669.4950000030084,-0.05566155240312747 +133900,669.5000000030085,-0.05566151169418329 +133901,669.5050000030086,-0.05566147098929733 +133902,669.5100000030087,-0.05566143028846797 +133903,669.5150000030088,-0.05566138959169357 +133904,669.5200000030089,-0.055661348898972465 +133905,669.525000003009,-0.05566130821030305 +133906,669.5300000030091,-0.05566126752568367 +133907,669.5350000030093,-0.055661226845112696 +133908,669.5400000030094,-0.055661186168588485 +133909,669.5450000030095,-0.0556611454961094 +133910,669.5500000030096,-0.055661104827673814 +133911,669.5550000030097,-0.05566106416328007 +133912,669.5600000030098,-0.05566102350292656 +133913,669.5650000030099,-0.05566098284661163 +133914,669.57000000301,-0.05566094219433366 +133915,669.5750000030101,-0.055660901546091 +133916,669.5800000030102,-0.05566086090188202 +133917,669.5850000030104,-0.05566082026170509 +133918,669.5900000030105,-0.05566077962555858 +133919,669.5950000030106,-0.055660738993440845 +133920,669.6000000030107,-0.05566069836535027 +133921,669.6050000030108,-0.05566065774128521 +133922,669.6100000030109,-0.05566061712124403 +133923,669.615000003011,-0.05566057650522511 +133924,669.6200000030111,-0.05566053589322681 +133925,669.6250000030112,-0.0556604952852475 +133926,669.6300000030113,-0.05566045468128555 +133927,669.6350000030114,-0.05566041408133933 +133928,669.6400000030116,-0.05566037348540722 +133929,669.6450000030117,-0.055660332893487575 +133930,669.6500000030118,-0.05566029230557878 +133931,669.6550000030119,-0.0556602517216792 +133932,669.660000003012,-0.0556602111417872 +133933,669.6650000030121,-0.05566017056590117 +133934,669.6700000030122,-0.05566012999401946 +133935,669.6750000030123,-0.05566008942614046 +133936,669.6800000030124,-0.05566004886226253 +133937,669.6850000030125,-0.05566000830238406 +133938,669.6900000030126,-0.05565996774650341 +133939,669.6950000030128,-0.05565992719461896 +133940,669.7000000030129,-0.05565988664672908 +133941,669.705000003013,-0.05565984610283215 +133942,669.7100000030131,-0.05565980556292654 +133943,669.7150000030132,-0.05565976502701062 +133944,669.7200000030133,-0.05565972449508279 +133945,669.7250000030134,-0.0556596839671414 +133946,669.7300000030135,-0.05565964344318485 +133947,669.7350000030136,-0.055659602923211496 +133948,669.7400000030137,-0.05565956240721974 +133949,669.7450000030138,-0.05565952189520793 +133950,669.750000003014,-0.05565948138717447 +133951,669.7550000030141,-0.05565944088311773 +133952,669.7600000030142,-0.05565940038303607 +133953,669.7650000030143,-0.055659359886927905 +133954,669.7700000030144,-0.05565931939479158 +133955,669.7750000030145,-0.0556592789066255 +133956,669.7800000030146,-0.05565923842242804 +133957,669.7850000030147,-0.055659197942197564 +133958,669.7900000030148,-0.05565915746593247 +133959,669.7950000030149,-0.05565911699363113 +133960,669.800000003015,-0.05565907652529194 +133961,669.8050000030152,-0.05565903606091327 +133962,669.8100000030153,-0.05565899560049351 +133963,669.8150000030154,-0.05565895514403104 +133964,669.8200000030155,-0.055658914691524244 +133965,669.8250000030156,-0.055658874242971494 +133966,669.8300000030157,-0.05565883379837119 +133967,669.8350000030158,-0.055658793357721704 +133968,669.8400000030159,-0.05565875292102143 +133969,669.845000003016,-0.05565871248826875 +133970,669.8500000030161,-0.05565867205946205 +133971,669.8550000030162,-0.05565863163459971 +133972,669.8600000030164,-0.05565859121368013 +133973,669.8650000030165,-0.05565855079670168 +133974,669.8700000030166,-0.05565851038366276 +133975,669.8750000030167,-0.05565846997456175 +133976,669.8800000030168,-0.055658429569397046 +133977,669.8850000030169,-0.05565838916816702 +133978,669.890000003017,-0.05565834877087008 +133979,669.8950000030171,-0.0556583083775046 +133980,669.9000000030172,-0.05565826798806897 +133981,669.9050000030173,-0.05565822760256158 +133982,669.9100000030174,-0.05565818722098082 +133983,669.9150000030176,-0.05565814684332509 +133984,669.9200000030177,-0.055658106469592766 +133985,669.9250000030178,-0.055658066099782244 +133986,669.9300000030179,-0.05565802573389193 +133987,669.935000003018,-0.0556579853719202 +133988,669.9400000030181,-0.055657945013865444 +133989,669.9450000030182,-0.05565790465972606 +133990,669.9500000030183,-0.05565786430950044 +133991,669.9550000030184,-0.05565782396318697 +133992,669.9600000030185,-0.05565778362078406 +133993,669.9650000030186,-0.05565774328229008 +133994,669.9700000030188,-0.055657702947703454 +133995,669.9750000030189,-0.055657662617022555 +133996,669.980000003019,-0.05565762229024577 +133997,669.9850000030191,-0.055657581967371514 +133998,669.9900000030192,-0.05565754164839818 +133999,669.9950000030193,-0.05565750133332415 +134000,670.0000000030194,-0.05565746102214783 +134001,670.0050000030195,-0.055657420714867616 +134002,670.0100000030196,-0.05565738041148191 +134003,670.0150000030197,-0.0556573401119891 +134004,670.0200000030198,-0.0556572998163876 +134005,670.02500000302,-0.05565725952467578 +134006,670.0300000030201,-0.05565721923685206 +134007,670.0350000030202,-0.05565717895291483 +134008,670.0400000030203,-0.05565713867286249 +134009,670.0450000030204,-0.055657098396693444 +134010,670.0500000030205,-0.05565705812440608 +134011,670.0550000030206,-0.05565701785599882 +134012,670.0600000030207,-0.05565697759147004 +134013,670.0650000030208,-0.055656937330818154 +134014,670.0700000030209,-0.05565689707404157 +134015,670.075000003021,-0.055656856821138675 +134016,670.0800000030212,-0.05565681657210787 +134017,670.0850000030213,-0.055656776326947564 +134018,670.0900000030214,-0.05565673608565617 +134019,670.0950000030215,-0.055656695848232074 +134020,670.1000000030216,-0.0556566556146737 +134021,670.1050000030217,-0.055656615384979416 +134022,670.1100000030218,-0.05565657515914767 +134023,670.1150000030219,-0.05565653493717683 +134024,670.120000003022,-0.05565649471906532 +134025,670.1250000030221,-0.055656454504811534 +134026,670.1300000030222,-0.05565641429441389 +134027,670.1350000030224,-0.05565637408787079 +134028,670.1400000030225,-0.05565633388518063 +134029,670.1450000030226,-0.055656293686341826 +134030,670.1500000030227,-0.05565625349135279 +134031,670.1550000030228,-0.05565621330021191 +134032,670.1600000030229,-0.0556561731129176 +134033,670.165000003023,-0.055656132929468284 +134034,670.1700000030231,-0.05565609274986236 +134035,670.1750000030232,-0.055656052574098225 +134036,670.1800000030233,-0.05565601240217431 +134037,670.1850000030234,-0.055655972234089024 +134038,670.1900000030236,-0.05565593206984076 +134039,670.1950000030237,-0.055655891909427935 +134040,670.2000000030238,-0.05565585175284896 +134041,670.2050000030239,-0.05565581160010224 +134042,670.210000003024,-0.0556557714511862 +134043,670.2150000030241,-0.05565573130609923 +134044,670.2200000030242,-0.05565569116483975 +134045,670.2250000030243,-0.055655651027406196 +134046,670.2300000030244,-0.05565561089379695 +134047,670.2350000030245,-0.05565557076401043 +134048,670.2400000030246,-0.05565553063804506 +134049,670.2450000030248,-0.05565549051589926 +134050,670.2500000030249,-0.05565545039757143 +134051,670.255000003025,-0.055655410283059994 +134052,670.2600000030251,-0.05565537017236335 +134053,670.2650000030252,-0.05565533006547993 +134054,670.2700000030253,-0.05565528996240815 +134055,670.2750000030254,-0.05565524986314641 +134056,670.2800000030255,-0.055655209767693135 +134057,670.2850000030256,-0.055655169676046744 +134058,670.2900000030257,-0.05565512958820564 +134059,670.2950000030258,-0.05565508950416826 +134060,670.300000003026,-0.05565504942393301 +134061,670.3050000030261,-0.055655009347498306 +134062,670.3100000030262,-0.05565496927486258 +134063,670.3150000030263,-0.05565492920602425 +134064,670.3200000030264,-0.055654889140981725 +134065,670.3250000030265,-0.05565484907973343 +134066,670.3300000030266,-0.05565480902227776 +134067,670.3350000030267,-0.05565476896861317 +134068,670.3400000030268,-0.05565472891873806 +134069,670.3450000030269,-0.05565468887265087 +134070,670.350000003027,-0.05565464883035 +134071,670.3550000030272,-0.055654608791833884 +134072,670.3600000030273,-0.05565456875710093 +134073,670.3650000030274,-0.05565452872614958 +134074,670.3700000030275,-0.055654488698978245 +134075,670.3750000030276,-0.05565444867558535 +134076,670.3800000030277,-0.05565440865596931 +134077,670.3850000030278,-0.05565436864012856 +134078,670.3900000030279,-0.05565432862806151 +134079,670.395000003028,-0.0556542886197666 +134080,670.4000000030281,-0.055654248615242256 +134081,670.4050000030282,-0.05565420861448689 +134082,670.4100000030284,-0.05565416861749894 +134083,670.4150000030285,-0.05565412862427682 +134084,670.4200000030286,-0.055654088634818966 +134085,670.4250000030287,-0.055654048649123794 +134086,670.4300000030288,-0.055654008667189746 +134087,670.4350000030289,-0.05565396868901523 +134088,670.440000003029,-0.05565392871459868 +134089,670.4450000030291,-0.05565388874393853 +134090,670.4500000030292,-0.055653848777033194 +134091,670.4550000030293,-0.055653808813881114 +134092,670.4600000030294,-0.055653768854480715 +134093,670.4650000030296,-0.05565372889883044 +134094,670.4700000030297,-0.055653688946928695 +134095,670.4750000030298,-0.05565364899877393 +134096,670.4800000030299,-0.05565360905436457 +134097,670.48500000303,-0.055653569113699036 +134098,670.4900000030301,-0.05565352917677576 +134099,670.4950000030302,-0.05565348924359319 +134100,670.5000000030303,-0.05565344931414973 +134101,670.5050000030304,-0.055653409388443834 +134102,670.5100000030305,-0.05565336946647392 +134103,670.5150000030307,-0.055653329548238435 +134104,670.5200000030308,-0.05565328963373581 +134105,670.5250000030309,-0.055653249722964475 +134106,670.530000003031,-0.055653209815922866 +134107,670.5350000030311,-0.0556531699126094 +134108,670.5400000030312,-0.055653130013022536 +134109,670.5450000030313,-0.055653090117160686 +134110,670.5500000030314,-0.055653050225022316 +134111,670.5550000030315,-0.05565301033660583 +134112,670.5600000030316,-0.05565297045190968 +134113,670.5650000030317,-0.0556529305709323 +134114,670.5700000030319,-0.05565289069367212 +134115,670.575000003032,-0.0556528508201276 +134116,670.5800000030321,-0.05565281095029715 +134117,670.5850000030322,-0.05565277108417922 +134118,670.5900000030323,-0.05565273122177224 +134119,670.5950000030324,-0.055652691363074665 +134120,670.6000000030325,-0.05565265150808492 +134121,670.6050000030326,-0.055652611656801444 +134122,670.6100000030327,-0.05565257180922268 +134123,670.6150000030328,-0.055652531965347064 +134124,670.6200000030329,-0.05565249212517304 +134125,670.625000003033,-0.055652452288699056 +134126,670.6300000030332,-0.05565241245592354 +134127,670.6350000030333,-0.055652372626844936 +134128,670.6400000030334,-0.055652332801461694 +134129,670.6450000030335,-0.055652292979772255 +134130,670.6500000030336,-0.05565225316177505 +134131,670.6550000030337,-0.05565221334746852 +134132,670.6600000030338,-0.055652173536851125 +134133,670.6650000030339,-0.05565213372992129 +134134,670.670000003034,-0.05565209392667747 +134135,670.6750000030341,-0.05565205412711811 +134136,670.6800000030343,-0.055652014331241645 +134137,670.6850000030344,-0.05565197453904652 +134138,670.6900000030345,-0.0556519347505312 +134139,670.6950000030346,-0.0556518949656941 +134140,670.7000000030347,-0.05565185518453369 +134141,670.7050000030348,-0.0556518154070484 +134142,670.7100000030349,-0.0556517756332367 +134143,670.715000003035,-0.055651735863097004 +134144,670.7200000030351,-0.055651696096627776 +134145,670.7250000030352,-0.05565165633382746 +134146,670.7300000030353,-0.055651616574694515 +134147,670.7350000030355,-0.05565157681922739 +134148,670.7400000030356,-0.05565153706742451 +134149,670.7450000030357,-0.05565149731928435 +134150,670.7500000030358,-0.05565145757480534 +134151,670.7550000030359,-0.05565141783398593 +134152,670.760000003036,-0.05565137809682459 +134153,670.7650000030361,-0.05565133836331975 +134154,670.7700000030362,-0.05565129863346988 +134155,670.7750000030363,-0.055651258907273404 +134156,670.7800000030364,-0.05565121918472879 +134157,670.7850000030365,-0.05565117946583449 +134158,670.7900000030367,-0.055651139750588954 +134159,670.7950000030368,-0.05565110003899063 +134160,670.8000000030369,-0.055651060331037984 +134161,670.805000003037,-0.05565102062672946 +134162,670.8100000030371,-0.05565098092606351 +134163,670.8150000030372,-0.055650941229038596 +134164,670.8200000030373,-0.05565090153565316 +134165,670.8250000030374,-0.05565086184590567 +134166,670.8300000030375,-0.05565082215979456 +134167,670.8350000030376,-0.055650782477318306 +134168,670.8400000030377,-0.05565074279847535 +134169,670.8450000030379,-0.05565070312326415 +134170,670.850000003038,-0.05565066345168317 +134171,670.8550000030381,-0.05565062378373087 +134172,670.8600000030382,-0.05565058411940568 +134173,670.8650000030383,-0.05565054445870608 +134174,670.8700000030384,-0.055650504801630536 +134175,670.8750000030385,-0.05565046514817747 +134176,670.8800000030386,-0.05565042549834539 +134177,670.8850000030387,-0.055650385852132715 +134178,670.8900000030388,-0.05565034620953792 +134179,670.895000003039,-0.05565030657055945 +134180,670.900000003039,-0.055650266935195786 +134181,670.9050000030392,-0.055650227303445376 +134182,670.9100000030393,-0.05565018767530668 +134183,670.9150000030394,-0.05565014805077817 +134184,670.9200000030395,-0.05565010842985829 +134185,670.9250000030396,-0.055650068812545514 +134186,670.9300000030397,-0.0556500291988383 +134187,670.9350000030398,-0.05564998958873511 +134188,670.9400000030399,-0.0556499499822344 +134189,670.94500000304,-0.05564991037933466 +134190,670.9500000030401,-0.05564987078003432 +134191,670.9550000030403,-0.05564983118433186 +134192,670.9600000030404,-0.055649791592225724 +134193,670.9650000030405,-0.0556497520037144 +134194,670.9700000030406,-0.05564971241879634 +134195,670.9750000030407,-0.05564967283747002 +134196,670.9800000030408,-0.05564963325973389 +134197,670.9850000030409,-0.055649593685586425 +134198,670.990000003041,-0.05564955411502609 +134199,670.9950000030411,-0.05564951454805136 +134200,671.0000000030412,-0.055649474984660684 +134201,671.0050000030413,-0.05564943542485254 +134202,671.0100000030415,-0.05564939586862539 +134203,671.0150000030416,-0.05564935631597771 +134204,671.0200000030417,-0.05564931676690796 +134205,671.0250000030418,-0.055649277221414606 +134206,671.0300000030419,-0.05564923767949612 +134207,671.035000003042,-0.05564919814115099 +134208,671.0400000030421,-0.055649158606377654 +134209,671.0450000030422,-0.0556491190751746 +134210,671.0500000030423,-0.05564907954754028 +134211,671.0550000030424,-0.05564904002347319 +134212,671.0600000030425,-0.055649000502971786 +134213,671.0650000030427,-0.055648960986034536 +134214,671.0700000030428,-0.05564892147265992 +134215,671.0750000030429,-0.05564888196284642 +134216,671.080000003043,-0.05564884245659249 +134217,671.0850000030431,-0.055648802953896605 +134218,671.0900000030432,-0.05564876345475724 +134219,671.0950000030433,-0.05564872395917287 +134220,671.1000000030434,-0.05564868446714196 +134221,671.1050000030435,-0.055648644978663 +134222,671.1100000030436,-0.05564860549373445 +134223,671.1150000030437,-0.055648566012354794 +134224,671.1200000030439,-0.055648526534522506 +134225,671.125000003044,-0.05564848706023605 +134226,671.1300000030441,-0.055648447589493916 +134227,671.1350000030442,-0.05564840812229457 +134228,671.1400000030443,-0.05564836865863649 +134229,671.1450000030444,-0.05564832919851816 +134230,671.1500000030445,-0.05564828974193804 +134231,671.1550000030446,-0.055648250288894634 +134232,671.1600000030447,-0.0556482108393864 +134233,671.1650000030448,-0.0556481713934118 +134234,671.170000003045,-0.05564813195096934 +134235,671.175000003045,-0.055648092512057504 +134236,671.1800000030452,-0.05564805307667476 +134237,671.1850000030453,-0.05564801364481957 +134238,671.1900000030454,-0.05564797421649044 +134239,671.1950000030455,-0.055647934791685845 +134240,671.2000000030456,-0.055647895370404245 +134241,671.2050000030457,-0.05564785595264414 +134242,671.2100000030458,-0.055647816538404005 +134243,671.2150000030459,-0.05564777712768232 +134244,671.220000003046,-0.05564773772047758 +134245,671.2250000030461,-0.05564769831678825 +134246,671.2300000030463,-0.05564765891661283 +134247,671.2350000030464,-0.05564761951994979 +134248,671.2400000030465,-0.05564758012679761 +134249,671.2450000030466,-0.05564754073715477 +134250,671.2500000030467,-0.05564750135101977 +134251,671.2550000030468,-0.055647461968391085 +134252,671.2600000030469,-0.055647422589267206 +134253,671.265000003047,-0.05564738321364662 +134254,671.2700000030471,-0.0556473438415278 +134255,671.2750000030472,-0.05564730447290924 +134256,671.2800000030473,-0.055647265107789425 +134257,671.2850000030475,-0.055647225746166824 +134258,671.2900000030476,-0.055647186388039956 +134259,671.2950000030477,-0.05564714703340728 +134260,671.3000000030478,-0.05564710768226729 +134261,671.3050000030479,-0.05564706833461848 +134262,671.310000003048,-0.05564702899045935 +134263,671.3150000030481,-0.05564698964978837 +134264,671.3200000030482,-0.05564695031260402 +134265,671.3250000030483,-0.05564691097890481 +134266,671.3300000030484,-0.05564687164868923 +134267,671.3350000030485,-0.05564683232195574 +134268,671.3400000030487,-0.055646792998702864 +134269,671.3450000030488,-0.05564675367892907 +134270,671.3500000030489,-0.05564671436263287 +134271,671.355000003049,-0.05564667504981273 +134272,671.3600000030491,-0.05564663574046716 +134273,671.3650000030492,-0.055646596434594645 +134274,671.3700000030493,-0.05564655713219368 +134275,671.3750000030494,-0.05564651783326275 +134276,671.3800000030495,-0.055646478537800366 +134277,671.3850000030496,-0.055646439245805 +134278,671.3900000030497,-0.055646399957275154 +134279,671.3950000030499,-0.055646360672209315 +134280,671.40000000305,-0.05564632139060599 +134281,671.4050000030501,-0.05564628211246367 +134282,671.4100000030502,-0.055646242837780836 +134283,671.4150000030503,-0.055646203566555995 +134284,671.4200000030504,-0.05564616429878765 +134285,671.4250000030505,-0.055646125034474296 +134286,671.4300000030506,-0.05564608577361441 +134287,671.4350000030507,-0.0556460465162065 +134288,671.4400000030508,-0.05564600726224906 +134289,671.445000003051,-0.05564596801174059 +134290,671.4500000030511,-0.055645928764679595 +134291,671.4550000030512,-0.055645889521064563 +134292,671.4600000030513,-0.055645850280894 +134293,671.4650000030514,-0.05564581104416638 +134294,671.4700000030515,-0.055645771810880235 +134295,671.4750000030516,-0.055645732581034044 +134296,671.4800000030517,-0.05564569335462632 +134297,671.4850000030518,-0.05564565413165555 +134298,671.4900000030519,-0.055645614912120236 +134299,671.495000003052,-0.0556455756960189 +134300,671.5000000030522,-0.055645536483350015 +134301,671.5050000030523,-0.05564549727411209 +134302,671.5100000030524,-0.05564545806830363 +134303,671.5150000030525,-0.055645418865923134 +134304,671.5200000030526,-0.05564537966696911 +134305,671.5250000030527,-0.055645340471440055 +134306,671.5300000030528,-0.05564530127933447 +134307,671.5350000030529,-0.05564526209065088 +134308,671.540000003053,-0.05564522290538776 +134309,671.5450000030531,-0.05564518372354363 +134310,671.5500000030532,-0.05564514454511698 +134311,671.5550000030534,-0.05564510537010632 +134312,671.5600000030535,-0.05564506619851017 +134313,671.5650000030536,-0.05564502703032702 +134314,671.5700000030537,-0.05564498786555538 +134315,671.5750000030538,-0.055644948704193765 +134316,671.5800000030539,-0.05564490954624067 +134317,671.585000003054,-0.0556448703916946 +134318,671.5900000030541,-0.05564483124055407 +134319,671.5950000030542,-0.055644792092817585 +134320,671.6000000030543,-0.055644752948483645 +134321,671.6050000030544,-0.055644713807550775 +134322,671.6100000030546,-0.05564467467001747 +134323,671.6150000030547,-0.05564463553588223 +134324,671.6200000030548,-0.05564459640514359 +134325,671.6250000030549,-0.05564455727780004 +134326,671.630000003055,-0.05564451815385009 +134327,671.6350000030551,-0.055644479033292255 +134328,671.6400000030552,-0.055644439916125055 +134329,671.6450000030553,-0.05564440080234698 +134330,671.6500000030554,-0.055644361691956565 +134331,671.6550000030555,-0.055644322584952305 +134332,671.6600000030556,-0.05564428348133272 +134333,671.6650000030558,-0.05564424438109632 +134334,671.6700000030559,-0.05564420528424161 +134335,671.675000003056,-0.05564416619076711 +134336,671.6800000030561,-0.05564412710067133 +134337,671.6850000030562,-0.055644088013952785 +134338,671.6900000030563,-0.055644048930609986 +134339,671.6950000030564,-0.055644009850641454 +134340,671.7000000030565,-0.055643970774045697 +134341,671.7050000030566,-0.05564393170082123 +134342,671.7100000030567,-0.05564389263096658 +134343,671.7150000030568,-0.05564385356448024 +134344,671.720000003057,-0.05564381450136074 +134345,671.7250000030571,-0.05564377544160659 +134346,671.7300000030572,-0.05564373638521633 +134347,671.7350000030573,-0.055643697332188456 +134348,671.7400000030574,-0.055643658282521484 +134349,671.7450000030575,-0.055643619236213936 +134350,671.7500000030576,-0.055643580193264326 +134351,671.7550000030577,-0.05564354115367118 +134352,671.7600000030578,-0.055643502117433005 +134353,671.7650000030579,-0.05564346308454833 +134354,671.770000003058,-0.05564342405501567 +134355,671.7750000030582,-0.05564338502883355 +134356,671.7800000030583,-0.05564334600600049 +134357,671.7850000030584,-0.055643306986515 +134358,671.7900000030585,-0.0556432679703756 +134359,671.7950000030586,-0.05564322895758083 +134360,671.8000000030587,-0.05564318994812919 +134361,671.8050000030588,-0.05564315094201922 +134362,671.8100000030589,-0.05564311193924942 +134363,671.815000003059,-0.05564307293981833 +134364,671.8200000030591,-0.05564303394372446 +134365,671.8250000030592,-0.055642994950966355 +134366,671.8300000030594,-0.05564295596154251 +134367,671.8350000030595,-0.05564291697545147 +134368,671.8400000030596,-0.055642877992691755 +134369,671.8450000030597,-0.05564283901326188 +134370,671.8500000030598,-0.05564280003716037 +134371,671.8550000030599,-0.05564276106438575 +134372,671.86000000306,-0.05564272209493656 +134373,671.8650000030601,-0.055642683128811314 +134374,671.8700000030602,-0.05564264416600854 +134375,671.8750000030603,-0.055642605206526766 +134376,671.8800000030604,-0.05564256625036451 +134377,671.8850000030606,-0.05564252729752032 +134378,671.8900000030607,-0.055642488347992694 +134379,671.8950000030608,-0.05564244940178018 +134380,671.9000000030609,-0.055642410458881304 +134381,671.905000003061,-0.05564237151929459 +134382,671.9100000030611,-0.05564233258301856 +134383,671.9150000030612,-0.05564229365005176 +134384,671.9200000030613,-0.0556422547203927 +134385,671.9250000030614,-0.055642215794039926 +134386,671.9300000030615,-0.05564217687099196 +134387,671.9350000030616,-0.05564213795124734 +134388,671.9400000030618,-0.05564209903480459 +134389,671.9450000030619,-0.05564206012166224 +134390,671.950000003062,-0.05564202121181882 +134391,671.9550000030621,-0.05564198230527286 +134392,671.9600000030622,-0.05564194340202291 +134393,671.9650000030623,-0.05564190450206748 +134394,671.9700000030624,-0.055641865605405114 +134395,671.9750000030625,-0.05564182671203435 +134396,671.9800000030626,-0.0556417878219537 +134397,671.9850000030627,-0.05564174893516172 +134398,671.9900000030628,-0.05564171005165693 +134399,671.995000003063,-0.05564167117143788 +134400,672.0000000030631,-0.055641632294503085 +134401,672.0050000030632,-0.05564159342085109 +134402,672.0100000030633,-0.055641554550480435 +134403,672.0150000030634,-0.05564151568338966 +134404,672.0200000030635,-0.055641476819577276 +134405,672.0250000030636,-0.055641437959041855 +134406,672.0300000030637,-0.0556413991017819 +134407,672.0350000030638,-0.05564136024779597 +134408,672.0400000030639,-0.055641321397082597 +134409,672.045000003064,-0.05564128254964031 +134410,672.0500000030642,-0.055641243705467656 +134411,672.0550000030643,-0.055641204864563164 +134412,672.0600000030644,-0.05564116602692539 +134413,672.0650000030645,-0.05564112719255286 +134414,672.0700000030646,-0.05564108836144411 +134415,672.0750000030647,-0.055641049533597685 +134416,672.0800000030648,-0.055641010709012124 +134417,672.0850000030649,-0.05564097188768598 +134418,672.090000003065,-0.05564093306961777 +134419,672.0950000030651,-0.055640894254806054 +134420,672.1000000030652,-0.05564085544324938 +134421,672.1050000030654,-0.055640816634946265 +134422,672.1100000030655,-0.05564077782989526 +134423,672.1150000030656,-0.05564073902809492 +134424,672.1200000030657,-0.05564070022954377 +134425,672.1250000030658,-0.05564066143424036 +134426,672.1300000030659,-0.05564062264218323 +134427,672.135000003066,-0.055640583853370944 +134428,672.1400000030661,-0.05564054506780203 +134429,672.1450000030662,-0.05564050628547501 +134430,672.1500000030663,-0.05564046750638848 +134431,672.1550000030664,-0.055640428730540946 +134432,672.1600000030666,-0.05564038995793096 +134433,672.1650000030667,-0.05564035118855708 +134434,672.1700000030668,-0.055640312422417834 +134435,672.1750000030669,-0.055640273659511776 +134436,672.180000003067,-0.055640234899837465 +134437,672.1850000030671,-0.05564019614339344 +134438,672.1900000030672,-0.05564015739017823 +134439,672.1950000030673,-0.05564011864019041 +134440,672.2000000030674,-0.05564007989342852 +134441,672.2050000030675,-0.05564004114989111 +134442,672.2100000030676,-0.055640002409576714 +134443,672.2150000030678,-0.05563996367248389 +134444,672.2200000030679,-0.05563992493861119 +134445,672.225000003068,-0.055639886207957165 +134446,672.2300000030681,-0.05563984748052036 +134447,672.2350000030682,-0.055639808756299335 +134448,672.2400000030683,-0.05563977003529263 +134449,672.2450000030684,-0.05563973131749879 +134450,672.2500000030685,-0.05563969260291639 +134451,672.2550000030686,-0.05563965389154396 +134452,672.2600000030687,-0.05563961518338006 +134453,672.2650000030688,-0.055639576478423235 +134454,672.270000003069,-0.055639537776672056 +134455,672.2750000030691,-0.05563949907812506 +134456,672.2800000030692,-0.055639460382780795 +134457,672.2850000030693,-0.05563942169063783 +134458,672.2900000030694,-0.05563938300169473 +134459,672.2950000030695,-0.055639344315950016 +134460,672.3000000030696,-0.05563930563340226 +134461,672.3050000030697,-0.05563926695405002 +134462,672.3100000030698,-0.05563922827789185 +134463,672.3150000030699,-0.0556391896049263 +134464,672.32000000307,-0.05563915093515193 +134465,672.3250000030702,-0.055639112268567305 +134466,672.3300000030703,-0.055639073605170966 +134467,672.3350000030704,-0.05563903494496148 +134468,672.3400000030705,-0.055638996287937406 +134469,672.3450000030706,-0.055638957634097284 +134470,672.3500000030707,-0.05563891898343968 +134471,672.3550000030708,-0.05563888033596317 +134472,672.3600000030709,-0.05563884169166629 +134473,672.365000003071,-0.05563880305054761 +134474,672.3700000030711,-0.0556387644126057 +134475,672.3750000030712,-0.0556387257778391 +134476,672.3800000030714,-0.05563868714624638 +134477,672.3850000030715,-0.0556386485178261 +134478,672.3900000030716,-0.05563860989257681 +134479,672.3950000030717,-0.05563857127049708 +134480,672.4000000030718,-0.05563853265158548 +134481,672.4050000030719,-0.05563849403584055 +134482,672.410000003072,-0.05563845542326088 +134483,672.4150000030721,-0.055638416813845015 +134484,672.4200000030722,-0.055638378207591516 +134485,672.4250000030723,-0.05563833960449894 +134486,672.4300000030725,-0.05563830100456586 +134487,672.4350000030726,-0.05563826240779085 +134488,672.4400000030727,-0.055638223814172466 +134489,672.4450000030728,-0.05563818522370926 +134490,672.4500000030729,-0.055638146636399814 +134491,672.455000003073,-0.055638108052242674 +134492,672.4600000030731,-0.05563806947123642 +134493,672.4650000030732,-0.055638030893379625 +134494,672.4700000030733,-0.05563799231867083 +134495,672.4750000030734,-0.055637953747108615 +134496,672.4800000030735,-0.055637915178691544 +134497,672.4850000030737,-0.0556378766134182 +134498,672.4900000030738,-0.055637838051287136 +134499,672.4950000030739,-0.055637799492296906 +134500,672.500000003074,-0.0556377609364461 +134501,672.5050000030741,-0.055637722383733275 +134502,672.5100000030742,-0.055637683834157015 +134503,672.5150000030743,-0.05563764528771587 +134504,672.5200000030744,-0.055637606744408416 +134505,672.5250000030745,-0.05563756820423322 +134506,672.5300000030746,-0.05563752966718886 +134507,672.5350000030747,-0.055637491133273896 +134508,672.5400000030749,-0.055637452602486905 +134509,672.545000003075,-0.055637414074826454 +134510,672.5500000030751,-0.05563737555029113 +134511,672.5550000030752,-0.05563733702887947 +134512,672.5600000030753,-0.055637298510590086 +134513,672.5650000030754,-0.05563725999542152 +134514,672.5700000030755,-0.05563722148337236 +134515,672.5750000030756,-0.055637182974441174 +134516,672.5800000030757,-0.05563714446862653 +134517,672.5850000030758,-0.055637105965927004 +134518,672.5900000030759,-0.05563706746634118 +134519,672.595000003076,-0.05563702896986763 +134520,672.6000000030762,-0.05563699047650492 +134521,672.6050000030763,-0.05563695198625163 +134522,672.6100000030764,-0.05563691349910633 +134523,672.6150000030765,-0.05563687501506759 +134524,672.6200000030766,-0.055636836534134 +134525,672.6250000030767,-0.05563679805630413 +134526,672.6300000030768,-0.05563675958157656 +134527,672.6350000030769,-0.05563672110994986 +134528,672.640000003077,-0.05563668264142261 +134529,672.6450000030771,-0.0556366441759934 +134530,672.6500000030773,-0.05563660571366079 +134531,672.6550000030774,-0.055636567254423355 +134532,672.6600000030775,-0.05563652879827968 +134533,672.6650000030776,-0.05563649034522837 +134534,672.6700000030777,-0.05563645189526797 +134535,672.6750000030778,-0.055636413448397065 +134536,672.6800000030779,-0.05563637500461424 +134537,672.685000003078,-0.05563633656391807 +134538,672.6900000030781,-0.05563629812630714 +134539,672.6950000030782,-0.05563625969178004 +134540,672.7000000030783,-0.055636221260335336 +134541,672.7050000030785,-0.05563618283197161 +134542,672.7100000030786,-0.05563614440668745 +134543,672.7150000030787,-0.055636105984481446 +134544,672.7200000030788,-0.055636067565352165 +134545,672.7250000030789,-0.055636029149298195 +134546,672.730000003079,-0.05563599073631812 +134547,672.7350000030791,-0.05563595232641052 +134548,672.7400000030792,-0.05563591391957398 +134549,672.7450000030793,-0.055635875515807086 +134550,672.7500000030794,-0.05563583711510843 +134551,672.7550000030795,-0.05563579871747658 +134552,672.7600000030797,-0.05563576032291013 +134553,672.7650000030798,-0.05563572193140767 +134554,672.7700000030799,-0.05563568354296779 +134555,672.77500000308,-0.05563564515758904 +134556,672.7800000030801,-0.05563560677527005 +134557,672.7850000030802,-0.055635568396009374 +134558,672.7900000030803,-0.05563553001980563 +134559,672.7950000030804,-0.05563549164665739 +134560,672.8000000030805,-0.055635453276563225 +134561,672.8050000030806,-0.055635414909521744 +134562,672.8100000030807,-0.05563537654553153 +134563,672.8150000030809,-0.05563533818459116 +134564,672.820000003081,-0.05563529982669926 +134565,672.8250000030811,-0.055635261471854366 +134566,672.8300000030812,-0.0556352231200551 +134567,672.8350000030813,-0.05563518477130006 +134568,672.8400000030814,-0.05563514642558782 +134569,672.8450000030815,-0.055635108082916974 +134570,672.8500000030816,-0.05563506974328611 +134571,672.8550000030817,-0.05563503140669381 +134572,672.8600000030818,-0.05563499307313869 +134573,672.865000003082,-0.055634954742619314 +134574,672.870000003082,-0.0556349164151343 +134575,672.8750000030822,-0.055634878090682224 +134576,672.8800000030823,-0.055634839769261674 +134577,672.8850000030824,-0.05563480145087127 +134578,672.8900000030825,-0.05563476313550957 +134579,672.8950000030826,-0.055634724823175205 +134580,672.9000000030827,-0.05563468651386674 +134581,672.9050000030828,-0.055634648207582786 +134582,672.9100000030829,-0.05563460990432192 +134583,672.915000003083,-0.05563457160408275 +134584,672.9200000030831,-0.055634533306863874 +134585,672.9250000030833,-0.055634495012663876 +134586,672.9300000030834,-0.05563445672148136 +134587,672.9350000030835,-0.055634418433314924 +134588,672.9400000030836,-0.05563438014816316 +134589,672.9450000030837,-0.05563434186602467 +134590,672.9500000030838,-0.05563430358689804 +134591,672.9550000030839,-0.05563426531078189 +134592,672.960000003084,-0.05563422703767479 +134593,672.9650000030841,-0.05563418876757535 +134594,672.9700000030842,-0.05563415050048218 +134595,672.9750000030843,-0.05563411223639386 +134596,672.9800000030845,-0.055634073975309006 +134597,672.9850000030846,-0.055634035717226214 +134598,672.9900000030847,-0.05563399746214407 +134599,672.9950000030848,-0.05563395921006118 +134600,673.0000000030849,-0.055633920960976156 +134601,673.005000003085,-0.05563388271488759 +134602,673.0100000030851,-0.05563384447179409 +134603,673.0150000030852,-0.055633806231694255 +134604,673.0200000030853,-0.05563376799458668 +134605,673.0250000030854,-0.055633729760469965 +134606,673.0300000030855,-0.05563369152934273 +134607,673.0350000030857,-0.05563365330120355 +134608,673.0400000030858,-0.05563361507605106 +134609,673.0450000030859,-0.055633576853883836 +134610,673.050000003086,-0.055633538634700504 +134611,673.0550000030861,-0.055633500418499654 +134612,673.0600000030862,-0.0556334622052799 +134613,673.0650000030863,-0.05563342399503984 +134614,673.0700000030864,-0.055633385787778065 +134615,673.0750000030865,-0.055633347583493205 +134616,673.0800000030866,-0.05563330938218385 +134617,673.0850000030867,-0.05563327118384862 +134618,673.0900000030869,-0.05563323298848612 +134619,673.095000003087,-0.055633194796094944 +134620,673.1000000030871,-0.05563315660667371 +134621,673.1050000030872,-0.05563311842022101 +134622,673.1100000030873,-0.055633080236735466 +134623,673.1150000030874,-0.055633042056215685 +134624,673.1200000030875,-0.05563300387866028 +134625,673.1250000030876,-0.055632965704067845 +134626,673.1300000030877,-0.055632927532436996 +134627,673.1350000030878,-0.05563288936376634 +134628,673.140000003088,-0.05563285119805448 +134629,673.1450000030881,-0.055632813035300044 +134630,673.1500000030882,-0.05563277487550164 +134631,673.1550000030883,-0.05563273671865787 +134632,673.1600000030884,-0.05563269856476734 +134633,673.1650000030885,-0.05563266041382866 +134634,673.1700000030886,-0.05563262226584045 +134635,673.1750000030887,-0.055632584120801326 +134636,673.1800000030888,-0.0556325459787099 +134637,673.1850000030889,-0.05563250783956478 +134638,673.190000003089,-0.05563246970336458 +134639,673.1950000030891,-0.0556324315701079 +134640,673.2000000030893,-0.055632393439793364 +134641,673.2050000030894,-0.05563235531241959 +134642,673.2100000030895,-0.0556323171879852 +134643,673.2150000030896,-0.05563227906648878 +134644,673.2200000030897,-0.055632240947928964 +134645,673.2250000030898,-0.05563220283230438 +134646,673.2300000030899,-0.05563216471961362 +134647,673.23500000309,-0.055632126609855295 +134648,673.2400000030901,-0.055632088503028046 +134649,673.2450000030902,-0.05563205039913048 +134650,673.2500000030903,-0.0556320122981612 +134651,673.2550000030905,-0.05563197420011883 +134652,673.2600000030906,-0.055631936105002 +134653,673.2650000030907,-0.055631898012809315 +134654,673.2700000030908,-0.05563185992353941 +134655,673.2750000030909,-0.055631821837190884 +134656,673.280000003091,-0.05563178375376236 +134657,673.2850000030911,-0.05563174567325246 +134658,673.2900000030912,-0.055631707595659795 +134659,673.2950000030913,-0.05563166952098298 +134660,673.3000000030914,-0.05563163144922066 +134661,673.3050000030915,-0.05563159338037144 +134662,673.3100000030917,-0.05563155531443394 +134663,673.3150000030918,-0.055631517251406776 +134664,673.3200000030919,-0.05563147919128858 +134665,673.325000003092,-0.055631441134077975 +134666,673.3300000030921,-0.05563140307977358 +134667,673.3350000030922,-0.05563136502837401 +134668,673.3400000030923,-0.05563132697987788 +134669,673.3450000030924,-0.05563128893428383 +134670,673.3500000030925,-0.05563125089159048 +134671,673.3550000030926,-0.05563121285179645 +134672,673.3600000030928,-0.05563117481490036 +134673,673.3650000030929,-0.05563113678090085 +134674,673.370000003093,-0.05563109874979652 +134675,673.3750000030931,-0.05563106072158601 +134676,673.3800000030932,-0.055631022696267934 +134677,673.3850000030933,-0.05563098467384093 +134678,673.3900000030934,-0.05563094665430361 +134679,673.3950000030935,-0.055630908637654616 +134680,673.4000000030936,-0.05563087062389256 +134681,673.4050000030937,-0.05563083261301608 +134682,673.4100000030938,-0.05563079460502381 +134683,673.415000003094,-0.05563075659991435 +134684,673.4200000030941,-0.055630718597686354 +134685,673.4250000030942,-0.05563068059833843 +134686,673.4300000030943,-0.055630642601869215 +134687,673.4350000030944,-0.05563060460827734 +134688,673.4400000030945,-0.05563056661756143 +134689,673.4450000030946,-0.05563052862972012 +134690,673.4500000030947,-0.05563049064475203 +134691,673.4550000030948,-0.0556304526626558 +134692,673.4600000030949,-0.055630414683430045 +134693,673.465000003095,-0.05563037670707341 +134694,673.4700000030952,-0.05563033873358452 +134695,673.4750000030953,-0.05563030076296201 +134696,673.4800000030954,-0.0556302627952045 +134697,673.4850000030955,-0.05563022483031064 +134698,673.4900000030956,-0.055630186868279044 +134699,673.4950000030957,-0.055630148909108355 +134700,673.5000000030958,-0.05563011095279721 +134701,673.5050000030959,-0.05563007299934422 +134702,673.510000003096,-0.05563003504874804 +134703,673.5150000030961,-0.05562999710100731 +134704,673.5200000030962,-0.05562995915612064 +134705,673.5250000030964,-0.055629921214086664 +134706,673.5300000030965,-0.055629883274904035 +134707,673.5350000030966,-0.05562984533857137 +134708,673.5400000030967,-0.05562980740508732 +134709,673.5450000030968,-0.055629769474450516 +134710,673.5500000030969,-0.05562973154665959 +134711,673.555000003097,-0.055629693621713175 +134712,673.5600000030971,-0.05562965569960991 +134713,673.5650000030972,-0.05562961778034845 +134714,673.5700000030973,-0.05562957986392742 +134715,673.5750000030974,-0.05562954195034544 +134716,673.5800000030976,-0.05562950403960117 +134717,673.5850000030977,-0.055629466131693235 +134718,673.5900000030978,-0.05562942822662028 +134719,673.5950000030979,-0.05562939032438094 +134720,673.600000003098,-0.05562935242497385 +134721,673.6050000030981,-0.05562931452839766 +134722,673.6100000030982,-0.05562927663465101 +134723,673.6150000030983,-0.05562923874373253 +134724,673.6200000030984,-0.05562920085564086 +134725,673.6250000030985,-0.05562916297037465 +134726,673.6300000030986,-0.05562912508793254 +134727,673.6350000030988,-0.05562908720831315 +134728,673.6400000030989,-0.05562904933151515 +134729,673.645000003099,-0.05562901145753716 +134730,673.6500000030991,-0.05562897358637784 +134731,673.6550000030992,-0.05562893571803582 +134732,673.6600000030993,-0.055628897852509754 +134733,673.6650000030994,-0.055628859989798274 +134734,673.6700000030995,-0.05562882212990003 +134735,673.6750000030996,-0.05562878427281366 +134736,673.6800000030997,-0.055628746418537815 +134737,673.6850000030998,-0.055628708567071146 +134738,673.6900000031,-0.05562867071841228 +134739,673.6950000031001,-0.055628632872559876 +134740,673.7000000031002,-0.05562859502951257 +134741,673.7050000031003,-0.055628557189269005 +134742,673.7100000031004,-0.05562851935182783 +134743,673.7150000031005,-0.05562848151718771 +134744,673.7200000031006,-0.055628443685347265 +134745,673.7250000031007,-0.05562840585630515 +134746,673.7300000031008,-0.055628368030060014 +134747,673.7350000031009,-0.05562833020661052 +134748,673.740000003101,-0.05562829238595528 +134749,673.7450000031012,-0.05562825456809297 +134750,673.7500000031013,-0.05562821675302223 +134751,673.7550000031014,-0.05562817894074172 +134752,673.7600000031015,-0.05562814113125008 +134753,673.7650000031016,-0.05562810332454595 +134754,673.7700000031017,-0.05562806552062798 +134755,673.7750000031018,-0.05562802771949484 +134756,673.7800000031019,-0.055627989921145156 +134757,673.785000003102,-0.055627952125577605 +134758,673.7900000031021,-0.05562791433279082 +134759,673.7950000031022,-0.05562787654278346 +134760,673.8000000031024,-0.05562783875555417 +134761,673.8050000031025,-0.05562780097110159 +134762,673.8100000031026,-0.0556277631894244 +134763,673.8150000031027,-0.05562772541052124 +134764,673.8200000031028,-0.05562768763439077 +134765,673.8250000031029,-0.05562764986103163 +134766,673.830000003103,-0.05562761209044249 +134767,673.8350000031031,-0.05562757432262197 +134768,673.8400000031032,-0.05562753655756876 +134769,673.8450000031033,-0.0556274987952815 +134770,673.8500000031034,-0.05562746103575884 +134771,673.8550000031036,-0.055627423278999444 +134772,673.8600000031037,-0.055627385525001974 +134773,673.8650000031038,-0.055627347773765067 +134774,673.8700000031039,-0.0556273100252874 +134775,673.875000003104,-0.05562727227956761 +134776,673.8800000031041,-0.05562723453660436 +134777,673.8850000031042,-0.05562719679639631 +134778,673.8900000031043,-0.05562715905894211 +134779,673.8950000031044,-0.055627121324240435 +134780,673.9000000031045,-0.05562708359228992 +134781,673.9050000031046,-0.05562704586308924 +134782,673.9100000031048,-0.05562700813663705 +134783,673.9150000031049,-0.055626970412932 +134784,673.920000003105,-0.055626932691972754 +134785,673.9250000031051,-0.05562689497375799 +134786,673.9300000031052,-0.05562685725828634 +134787,673.9350000031053,-0.055626819545556476 +134788,673.9400000031054,-0.055626781835567046 +134789,673.9450000031055,-0.05562674412831673 +134790,673.9500000031056,-0.055626706423804184 +134791,673.9550000031057,-0.05562666872202806 +134792,673.9600000031058,-0.05562663102298703 +134793,673.965000003106,-0.055626593326679755 +134794,673.9700000031061,-0.05562655563310489 +134795,673.9750000031062,-0.0556265179422611 +134796,673.9800000031063,-0.05562648025414706 +134797,673.9850000031064,-0.055626442568761404 +134798,673.9900000031065,-0.05562640488610282 +134799,673.9950000031066,-0.05562636720616997 +134800,674.0000000031067,-0.05562632952896152 +134801,674.0050000031068,-0.05562629185447612 +134802,674.0100000031069,-0.05562625418271244 +134803,674.015000003107,-0.05562621651366916 +134804,674.0200000031072,-0.055626178847344936 +134805,674.0250000031073,-0.055626141183738424 +134806,674.0300000031074,-0.055626103522848296 +134807,674.0350000031075,-0.055626065864673224 +134808,674.0400000031076,-0.05562602820921187 +134809,674.0450000031077,-0.0556259905564629 +134810,674.0500000031078,-0.05562595290642498 +134811,674.0550000031079,-0.055625915259096784 +134812,674.060000003108,-0.05562587761447698 +134813,674.0650000031081,-0.05562583997256422 +134814,674.0700000031082,-0.0556258023333572 +134815,674.0750000031084,-0.055625764696854575 +134816,674.0800000031085,-0.05562572706305501 +134817,674.0850000031086,-0.05562568943195717 +134818,674.0900000031087,-0.05562565180355974 +134819,674.0950000031088,-0.05562561417786137 +134820,674.1000000031089,-0.055625576554860744 +134821,674.105000003109,-0.05562553893455653 +134822,674.1100000031091,-0.05562550131694741 +134823,674.1150000031092,-0.05562546370203204 +134824,674.1200000031093,-0.055625426089809096 +134825,674.1250000031094,-0.05562538848027725 +134826,674.1300000031096,-0.05562535087343518 +134827,674.1350000031097,-0.055625313269281565 +134828,674.1400000031098,-0.05562527566781506 +134829,674.1450000031099,-0.05562523806903434 +134830,674.15000000311,-0.05562520047293809 +134831,674.1550000031101,-0.05562516287952498 +134832,674.1600000031102,-0.05562512528879367 +134833,674.1650000031103,-0.055625087700742856 +134834,674.1700000031104,-0.055625050115371194 +134835,674.1750000031105,-0.055625012532677376 +134836,674.1800000031106,-0.05562497495266007 +134837,674.1850000031108,-0.05562493737531794 +134838,674.1900000031109,-0.05562489980064967 +134839,674.195000003111,-0.055624862228653954 +134840,674.2000000031111,-0.05562482465932945 +134841,674.2050000031112,-0.055624787092674835 +134842,674.2100000031113,-0.05562474952868878 +134843,674.2150000031114,-0.055624711967369976 +134844,674.2200000031115,-0.0556246744087171 +134845,674.2250000031116,-0.05562463685272883 +134846,674.2300000031117,-0.05562459929940384 +134847,674.2350000031118,-0.055624561748740815 +134848,674.240000003112,-0.05562452420073842 +134849,674.2450000031121,-0.05562448665539534 +134850,674.2500000031122,-0.055624449112710264 +134851,674.2550000031123,-0.05562441157268188 +134852,674.2600000031124,-0.05562437403530885 +134853,674.2650000031125,-0.05562433650058985 +134854,674.2700000031126,-0.055624298968523576 +134855,674.2750000031127,-0.05562426143910871 +134856,674.2800000031128,-0.05562422391234392 +134857,674.2850000031129,-0.0556241863882279 +134858,674.290000003113,-0.055624148866759315 +134859,674.2950000031132,-0.055624111347936864 +134860,674.3000000031133,-0.055624073831759234 +134861,674.3050000031134,-0.055624036318225094 +134862,674.3100000031135,-0.05562399880733314 +134863,674.3150000031136,-0.05562396129908204 +134864,674.3200000031137,-0.055623923793470496 +134865,674.3250000031138,-0.05562388629049717 +134866,674.3300000031139,-0.05562384879016077 +134867,674.335000003114,-0.05562381129245996 +134868,674.3400000031141,-0.055623773797393444 +134869,674.3450000031143,-0.05562373630495989 +134870,674.3500000031144,-0.05562369881515801 +134871,674.3550000031145,-0.05562366132798647 +134872,674.3600000031146,-0.05562362384344395 +134873,674.3650000031147,-0.05562358636152915 +134874,674.3700000031148,-0.055623548882240754 +134875,674.3750000031149,-0.05562351140557746 +134876,674.380000003115,-0.055623473931537944 +134877,674.3850000031151,-0.055623436460120884 +134878,674.3900000031152,-0.05562339899132499 +134879,674.3950000031153,-0.05562336152514894 +134880,674.4000000031155,-0.05562332406159142 +134881,674.4050000031156,-0.05562328660065111 +134882,674.4100000031157,-0.055623249142326726 +134883,674.4150000031158,-0.05562321168661694 +134884,674.4200000031159,-0.055623174233520443 +134885,674.425000003116,-0.05562313678303593 +134886,674.4300000031161,-0.055623099335162095 +134887,674.4350000031162,-0.05562306188989763 +134888,674.4400000031163,-0.05562302444724122 +134889,674.4450000031164,-0.05562298700719156 +134890,674.4500000031165,-0.05562294956974734 +134891,674.4550000031167,-0.05562291213490724 +134892,674.4600000031168,-0.055622874702669974 +134893,674.4650000031169,-0.05562283727303422 +134894,674.470000003117,-0.05562279984599869 +134895,674.4750000031171,-0.05562276242156205 +134896,674.4800000031172,-0.055622724999723004 +134897,674.4850000031173,-0.05562268758048026 +134898,674.4900000031174,-0.055622650163832506 +134899,674.4950000031175,-0.05562261274977843 +134900,674.5000000031176,-0.055622575338316736 +134901,674.5050000031177,-0.05562253792944611 +134902,674.5100000031179,-0.05562250052316526 +134903,674.515000003118,-0.05562246311947287 +134904,674.5200000031181,-0.05562242571836764 +134905,674.5250000031182,-0.05562238831984827 +134906,674.5300000031183,-0.05562235092391345 +134907,674.5350000031184,-0.055622313530561886 +134908,674.5400000031185,-0.055622276139792266 +134909,674.5450000031186,-0.05562223875160329 +134910,674.5500000031187,-0.055622201365993676 +134911,674.5550000031188,-0.055622163982962096 +134912,674.560000003119,-0.05562212660250725 +134913,674.565000003119,-0.05562208922462786 +134914,674.5700000031192,-0.055622051849322604 +134915,674.5750000031193,-0.055622014476590195 +134916,674.5800000031194,-0.05562197710642933 +134917,674.5850000031195,-0.055621939738838694 +134918,674.5900000031196,-0.055621902373817006 +134919,674.5950000031197,-0.05562186501136296 +134920,674.6000000031198,-0.05562182765147526 +134921,674.6050000031199,-0.0556217902941526 +134922,674.61000000312,-0.055621752939393705 +134923,674.6150000031201,-0.055621715587197244 +134924,674.6200000031203,-0.055621678237561936 +134925,674.6250000031204,-0.05562164089048649 +134926,674.6300000031205,-0.055621603545969595 +134927,674.6350000031206,-0.055621566204009966 +134928,674.6400000031207,-0.05562152886460631 +134929,674.6450000031208,-0.05562149152775731 +134930,674.6500000031209,-0.05562145419346169 +134931,674.655000003121,-0.05562141686171815 +134932,674.6600000031211,-0.055621379532525383 +134933,674.6650000031212,-0.055621342205882114 +134934,674.6700000031213,-0.05562130488178704 +134935,674.6750000031215,-0.055621267560238864 +134936,674.6800000031216,-0.05562123024123629 +134937,674.6850000031217,-0.05562119292477803 +134938,674.6900000031218,-0.05562115561086279 +134939,674.6950000031219,-0.05562111829948927 +134940,674.700000003122,-0.055621080990656185 +134941,674.7050000031221,-0.05562104368436225 +134942,674.7100000031222,-0.055621006380606165 +134943,674.7150000031223,-0.05562096907938663 +134944,674.7200000031224,-0.05562093178070236 +134945,674.7250000031225,-0.05562089448455207 +134946,674.7300000031227,-0.05562085719093446 +134947,674.7350000031228,-0.055620819899848246 +134948,674.7400000031229,-0.05562078261129213 +134949,674.745000003123,-0.055620745325264835 +134950,674.7500000031231,-0.055620708041765055 +134951,674.7550000031232,-0.05562067076079151 +134952,674.7600000031233,-0.055620633482342925 +134953,674.7650000031234,-0.05562059620641799 +134954,674.7700000031235,-0.055620558933015415 +134955,674.7750000031236,-0.05562052166213392 +134956,674.7800000031237,-0.05562048439377223 +134957,674.7850000031239,-0.05562044712792904 +134958,674.790000003124,-0.05562040986460308 +134959,674.7950000031241,-0.055620372603793045 +134960,674.8000000031242,-0.05562033534549765 +134961,674.8050000031243,-0.05562029808971562 +134962,674.8100000031244,-0.055620260836445654 +134963,674.8150000031245,-0.055620223585686475 +134964,674.8200000031246,-0.05562018633743681 +134965,674.8250000031247,-0.05562014909169535 +134966,674.8300000031248,-0.05562011184846082 +134967,674.835000003125,-0.055620074607731954 +134968,674.840000003125,-0.05562003736950743 +134969,674.8450000031252,-0.05562000013378599 +134970,674.8500000031253,-0.05561996290056635 +134971,674.8550000031254,-0.05561992566984722 +134972,674.8600000031255,-0.055619888441627324 +134973,674.8650000031256,-0.055619851215905375 +134974,674.8700000031257,-0.055619813992680095 +134975,674.8750000031258,-0.05561977677195019 +134976,674.8800000031259,-0.05561973955371438 +134977,674.885000003126,-0.05561970233797141 +134978,674.8900000031261,-0.05561966512471996 +134979,674.8950000031263,-0.05561962791395878 +134980,674.9000000031264,-0.055619590705686575 +134981,674.9050000031265,-0.055619553499902066 +134982,674.9100000031266,-0.05561951629660398 +134983,674.9150000031267,-0.05561947909579102 +134984,674.9200000031268,-0.05561944189746193 +134985,674.9250000031269,-0.05561940470161541 +134986,674.930000003127,-0.055619367508250195 +134987,674.9350000031271,-0.055619330317365 +134988,674.9400000031272,-0.05561929312895856 +134989,674.9450000031273,-0.055619255943029584 +134990,674.9500000031275,-0.055619218759576795 +134991,674.9550000031276,-0.05561918157859893 +134992,674.9600000031277,-0.05561914440009468 +134993,674.9650000031278,-0.055619107224062804 +134994,674.9700000031279,-0.055619070050502005 +134995,674.975000003128,-0.05561903287941101 +134996,674.9800000031281,-0.05561899571078856 +134997,674.9850000031282,-0.05561895854463335 +134998,674.9900000031283,-0.05561892138094412 +134999,674.9950000031284,-0.055618884219719604 +135000,675.0000000031285,-0.055618847060958515 +135001,675.0050000031287,-0.05561880990465959 +135002,675.0100000031288,-0.055618772750821534 +135003,675.0150000031289,-0.0556187355994431 +135004,675.020000003129,-0.055618698450523 +135005,675.0250000031291,-0.05561866130405997 +135006,675.0300000031292,-0.05561862416005272 +135007,675.0350000031293,-0.0556185870185 +135008,675.0400000031294,-0.05561854987940052 +135009,675.0450000031295,-0.055618512742753014 +135010,675.0500000031296,-0.05561847560855621 +135011,675.0550000031297,-0.05561843847680885 +135012,675.0600000031299,-0.05561840134750965 +135013,675.06500000313,-0.05561836422065733 +135014,675.0700000031301,-0.05561832709625064 +135015,675.0750000031302,-0.055618289974288304 +135016,675.0800000031303,-0.05561825285476904 +135017,675.0850000031304,-0.0556182157376916 +135018,675.0900000031305,-0.05561817862305469 +135019,675.0950000031306,-0.05561814151085706 +135020,675.1000000031307,-0.05561810440109744 +135021,675.1050000031308,-0.05561806729377456 +135022,675.110000003131,-0.05561803018888715 +135023,675.1150000031311,-0.05561799308643394 +135024,675.1200000031312,-0.05561795598641366 +135025,675.1250000031313,-0.05561791888882506 +135026,675.1300000031314,-0.055617881793666855 +135027,675.1350000031315,-0.05561784470093778 +135028,675.1400000031316,-0.055617807610636574 +135029,675.1450000031317,-0.05561777052276199 +135030,675.1500000031318,-0.05561773343731274 +135031,675.1550000031319,-0.05561769635428756 +135032,675.160000003132,-0.05561765927368519 +135033,675.1650000031321,-0.05561762219550437 +135034,675.1700000031323,-0.05561758511974382 +135035,675.1750000031324,-0.055617548046402294 +135036,675.1800000031325,-0.05561751097547851 +135037,675.1850000031326,-0.055617473906971214 +135038,675.1900000031327,-0.05561743684087915 +135039,675.1950000031328,-0.055617399777201044 +135040,675.2000000031329,-0.05561736271593564 +135041,675.205000003133,-0.05561732565708168 +135042,675.2100000031331,-0.055617288600637894 +135043,675.2150000031332,-0.05561725154660303 +135044,675.2200000031334,-0.055617214494975815 +135045,675.2250000031335,-0.05561717744575499 +135046,675.2300000031336,-0.0556171403989393 +135047,675.2350000031337,-0.055617103354527485 +135048,675.2400000031338,-0.05561706631251829 +135049,675.2450000031339,-0.05561702927291044 +135050,675.250000003134,-0.055616992235702684 +135051,675.2550000031341,-0.055616955200893756 +135052,675.2600000031342,-0.05561691816848242 +135053,675.2650000031343,-0.05561688113846739 +135054,675.2700000031344,-0.05561684411084743 +135055,675.2750000031346,-0.055616807085621264 +135056,675.2800000031347,-0.05561677006278764 +135057,675.2850000031348,-0.0556167330423453 +135058,675.2900000031349,-0.05561669602429299 +135059,675.295000003135,-0.05561665900862946 +135060,675.3000000031351,-0.05561662199535343 +135061,675.3050000031352,-0.055616584984463674 +135062,675.3100000031353,-0.05561654797595891 +135063,675.3150000031354,-0.055616510969837905 +135064,675.3200000031355,-0.055616473966099395 +135065,675.3250000031356,-0.05561643696474211 +135066,675.3300000031358,-0.05561639996576481 +135067,675.3350000031359,-0.05561636296916625 +135068,675.340000003136,-0.055616325974945154 +135069,675.3450000031361,-0.05561628898310029 +135070,675.3500000031362,-0.055616251993630385 +135071,675.3550000031363,-0.05561621500653421 +135072,675.3600000031364,-0.055616178021810486 +135073,675.3650000031365,-0.05561614103945797 +135074,675.3700000031366,-0.05561610405947542 +135075,675.3750000031367,-0.05561606708186157 +135076,675.3800000031368,-0.05561603010661517 +135077,675.385000003137,-0.05561599313373498 +135078,675.3900000031371,-0.05561595616321974 +135079,675.3950000031372,-0.05561591919506819 +135080,675.4000000031373,-0.055615882229279094 +135081,675.4050000031374,-0.055615845265851206 +135082,675.4100000031375,-0.05561580830478326 +135083,675.4150000031376,-0.05561577134607401 +135084,675.4200000031377,-0.05561573438972222 +135085,675.4250000031378,-0.055615697435726634 +135086,675.4300000031379,-0.05561566048408599 +135087,675.435000003138,-0.05561562353479907 +135088,675.4400000031382,-0.0556155865878646 +135089,675.4450000031383,-0.055615549643281345 +135090,675.4500000031384,-0.05561551270104803 +135091,675.4550000031385,-0.055615475761163456 +135092,675.4600000031386,-0.05561543882362634 +135093,675.4650000031387,-0.05561540188843543 +135094,675.4700000031388,-0.05561536495558951 +135095,675.4750000031389,-0.05561532802508733 +135096,675.480000003139,-0.05561529109692761 +135097,675.4850000031391,-0.05561525417110913 +135098,675.4900000031392,-0.055615217247630654 +135099,675.4950000031394,-0.05561518032649092 +135100,675.5000000031395,-0.055615143407688694 +135101,675.5050000031396,-0.05561510649122272 +135102,675.5100000031397,-0.05561506957709176 +135103,675.5150000031398,-0.05561503266529458 +135104,675.5200000031399,-0.05561499575582993 +135105,675.52500000314,-0.055614958848696563 +135106,675.5300000031401,-0.05561492194389324 +135107,675.5350000031402,-0.055614885041418705 +135108,675.5400000031403,-0.05561484814127174 +135109,675.5450000031404,-0.055614811243451086 +135110,675.5500000031406,-0.0556147743479555 +135111,675.5550000031407,-0.05561473745478375 +135112,675.5600000031408,-0.05561470056393459 +135113,675.5650000031409,-0.05561466367540679 +135114,675.570000003141,-0.055614626789199095 +135115,675.5750000031411,-0.05561458990531027 +135116,675.5800000031412,-0.05561455302373908 +135117,675.5850000031413,-0.05561451614448429 +135118,675.5900000031414,-0.05561447926754464 +135119,675.5950000031415,-0.055614442392918906 +135120,675.6000000031416,-0.05561440552060584 +135121,675.6050000031418,-0.05561436865060422 +135122,675.6100000031419,-0.0556143317829128 +135123,675.615000003142,-0.055614294917530345 +135124,675.6200000031421,-0.055614258054455606 +135125,675.6250000031422,-0.055614221193687356 +135126,675.6300000031423,-0.05561418433522435 +135127,675.6350000031424,-0.055614147479065366 +135128,675.6400000031425,-0.05561411062520915 +135129,675.6450000031426,-0.05561407377365448 +135130,675.6500000031427,-0.05561403692440011 +135131,675.6550000031428,-0.05561400007744482 +135132,675.660000003143,-0.055613963232787354 +135133,675.6650000031431,-0.0556139263904265 +135134,675.6700000031432,-0.055613889550361006 +135135,675.6750000031433,-0.055613852712589645 +135136,675.6800000031434,-0.05561381587711118 +135137,675.6850000031435,-0.05561377904392438 +135138,675.6900000031436,-0.055613742213028006 +135139,675.6950000031437,-0.05561370538442083 +135140,675.7000000031438,-0.055613668558101625 +135141,675.7050000031439,-0.05561363173406915 +135142,675.710000003144,-0.05561359491232217 +135143,675.7150000031442,-0.055613558092859464 +135144,675.7200000031443,-0.05561352127567979 +135145,675.7250000031444,-0.05561348446078192 +135146,675.7300000031445,-0.05561344764816462 +135147,675.7350000031446,-0.05561341083782668 +135148,675.7400000031447,-0.05561337402976685 +135149,675.7450000031448,-0.05561333722398391 +135150,675.7500000031449,-0.05561330042047661 +135151,675.755000003145,-0.05561326361924374 +135152,675.7600000031451,-0.05561322682028407 +135153,675.7650000031452,-0.05561319002359636 +135154,675.7700000031454,-0.05561315322917939 +135155,675.7750000031455,-0.055613116437031936 +135156,675.7800000031456,-0.05561307964715276 +135157,675.7850000031457,-0.05561304285954064 +135158,675.7900000031458,-0.055613006074194345 +135159,675.7950000031459,-0.055612969291112646 +135160,675.800000003146,-0.05561293251029433 +135161,675.8050000031461,-0.05561289573173815 +135162,675.8100000031462,-0.05561285895544289 +135163,675.8150000031463,-0.055612822181407326 +135164,675.8200000031464,-0.055612785409630223 +135165,675.8250000031466,-0.05561274864011037 +135166,675.8300000031467,-0.05561271187284653 +135167,675.8350000031468,-0.05561267510783749 +135168,675.8400000031469,-0.05561263834508202 +135169,675.845000003147,-0.05561260158457888 +135170,675.8500000031471,-0.05561256482632688 +135171,675.8550000031472,-0.05561252807032476 +135172,675.8600000031473,-0.055612491316571325 +135173,675.8650000031474,-0.05561245456506533 +135174,675.8700000031475,-0.05561241781580557 +135175,675.8750000031476,-0.05561238106879081 +135176,675.8800000031478,-0.05561234432401983 +135177,675.8850000031479,-0.055612307581491424 +135178,675.890000003148,-0.05561227084120435 +135179,675.8950000031481,-0.05561223410315739 +135180,675.9000000031482,-0.05561219736734934 +135181,675.9050000031483,-0.055612160633778954 +135182,675.9100000031484,-0.055612123902445035 +135183,675.9150000031485,-0.055612087173346356 +135184,675.9200000031486,-0.055612050446481674 +135185,675.9250000031487,-0.055612013721849804 +135186,675.9300000031488,-0.05561197699944951 +135187,675.935000003149,-0.055611940279279584 +135188,675.9400000031491,-0.05561190356133878 +135189,675.9450000031492,-0.0556118668456259 +135190,675.9500000031493,-0.05561183013213973 +135191,675.9550000031494,-0.05561179342087904 +135192,675.9600000031495,-0.05561175671184262 +135193,675.9650000031496,-0.05561172000502926 +135194,675.9700000031497,-0.05561168330043772 +135195,675.9750000031498,-0.05561164659806681 +135196,675.9800000031499,-0.055611609897915304 +135197,675.98500000315,-0.05561157319998198 +135198,675.9900000031502,-0.05561153650426562 +135199,675.9950000031503,-0.05561149981076501 +135200,676.0000000031504,-0.055611463119478954 +135201,676.0050000031505,-0.055611426430406216 +135202,676.0100000031506,-0.05561138974354559 +135203,676.0150000031507,-0.05561135305889586 +135204,676.0200000031508,-0.055611316376455805 +135205,676.0250000031509,-0.05561127969622423 +135206,676.030000003151,-0.055611243018199905 +135207,676.0350000031511,-0.05561120634238162 +135208,676.0400000031512,-0.05561116966876817 +135209,676.0450000031514,-0.05561113299735833 +135210,676.0500000031515,-0.055611096328150894 +135211,676.0550000031516,-0.05561105966114465 +135212,676.0600000031517,-0.05561102299633839 +135213,676.0650000031518,-0.05561098633373089 +135214,676.0700000031519,-0.05561094967332096 +135215,676.075000003152,-0.05561091301510737 +135216,676.0800000031521,-0.05561087635908892 +135217,676.0850000031522,-0.0556108397052644 +135218,676.0900000031523,-0.05561080305363258 +135219,676.0950000031524,-0.055610766404192276 +135220,676.1000000031526,-0.05561072975694228 +135221,676.1050000031527,-0.05561069311188136 +135222,676.1100000031528,-0.05561065646900832 +135223,676.1150000031529,-0.05561061982832196 +135224,676.120000003153,-0.05561058318982106 +135225,676.1250000031531,-0.055610546553504406 +135226,676.1300000031532,-0.05561050991937081 +135227,676.1350000031533,-0.055610473287419054 +135228,676.1400000031534,-0.05561043665764792 +135229,676.1450000031535,-0.055610400030056226 +135230,676.1500000031537,-0.05561036340464275 +135231,676.1550000031538,-0.05561032678140629 +135232,676.1600000031539,-0.055610290160345625 +135233,676.165000003154,-0.05561025354145957 +135234,676.1700000031541,-0.05561021692474692 +135235,676.1750000031542,-0.05561018031020646 +135236,676.1800000031543,-0.05561014369783699 +135237,676.1850000031544,-0.055610107087637306 +135238,676.1900000031545,-0.05561007047960619 +135239,676.1950000031546,-0.05561003387374246 +135240,676.2000000031547,-0.05560999727004489 +135241,676.2050000031549,-0.05560996066851229 +135242,676.210000003155,-0.05560992406914346 +135243,676.2150000031551,-0.0556098874719372 +135244,676.2200000031552,-0.0556098508768923 +135245,676.2250000031553,-0.05560981428400754 +135246,676.2300000031554,-0.05560977769328176 +135247,676.2350000031555,-0.05560974110471372 +135248,676.2400000031556,-0.05560970451830224 +135249,676.2450000031557,-0.05560966793404611 +135250,676.2500000031558,-0.05560963135194415 +135251,676.2550000031559,-0.05560959477199512 +135252,676.260000003156,-0.05560955819419785 +135253,676.2650000031562,-0.05560952161855113 +135254,676.2700000031563,-0.05560948504505376 +135255,676.2750000031564,-0.05560944847370455 +135256,676.2800000031565,-0.0556094119045023 +135257,676.2850000031566,-0.055609375337445796 +135258,676.2900000031567,-0.055609338772533864 +135259,676.2950000031568,-0.055609302209765274 +135260,676.3000000031569,-0.05560926564913885 +135261,676.305000003157,-0.05560922909065339 +135262,676.3100000031571,-0.0556091925343077 +135263,676.3150000031573,-0.055609155980100584 +135264,676.3200000031574,-0.05560911942803084 +135265,676.3250000031575,-0.05560908287809727 +135266,676.3300000031576,-0.055609046330298686 +135267,676.3350000031577,-0.05560900978463389 +135268,676.3400000031578,-0.05560897324110168 +135269,676.3450000031579,-0.055608936699700864 +135270,676.350000003158,-0.055608900160430255 +135271,676.3550000031581,-0.055608863623288644 +135272,676.3600000031582,-0.05560882708827485 +135273,676.3650000031583,-0.05560879055538767 +135274,676.3700000031585,-0.05560875402462591 +135275,676.3750000031586,-0.05560871749598839 +135276,676.3800000031587,-0.0556086809694739 +135277,676.3850000031588,-0.055608644445081255 +135278,676.3900000031589,-0.05560860792280926 +135279,676.395000003159,-0.05560857140265672 +135280,676.4000000031591,-0.05560853488462246 +135281,676.4050000031592,-0.055608498368705274 +135282,676.4100000031593,-0.055608461854903965 +135283,676.4150000031594,-0.055608425343217346 +135284,676.4200000031595,-0.055608388833644246 +135285,676.4250000031597,-0.055608352326183434 +135286,676.4300000031598,-0.055608315820833754 +135287,676.4350000031599,-0.05560827931759401 +135288,676.44000000316,-0.055608242816463004 +135289,676.4450000031601,-0.055608206317439554 +135290,676.4500000031602,-0.05560816982052246 +135291,676.4550000031603,-0.05560813332571054 +135292,676.4600000031604,-0.05560809683300261 +135293,676.4650000031605,-0.05560806034239748 +135294,676.4700000031606,-0.055608023853893955 +135295,676.4750000031607,-0.05560798736749085 +135296,676.4800000031609,-0.055607950883186985 +135297,676.485000003161,-0.05560791440098116 +135298,676.4900000031611,-0.0556078779208722 +135299,676.4950000031612,-0.055607841442858914 +135300,676.5000000031613,-0.05560780496694011 +135301,676.5050000031614,-0.05560776849311461 +135302,676.5100000031615,-0.05560773202138122 +135303,676.5150000031616,-0.05560769555173877 +135304,676.5200000031617,-0.05560765908418607 +135305,676.5250000031618,-0.05560762261872192 +135306,676.530000003162,-0.05560758615534515 +135307,676.535000003162,-0.05560754969405457 +135308,676.5400000031622,-0.055607513234849 +135309,676.5450000031623,-0.05560747677772725 +135310,676.5500000031624,-0.055607440322688134 +135311,676.5550000031625,-0.055607403869730475 +135312,676.5600000031626,-0.0556073674188531 +135313,676.5650000031627,-0.05560733097005482 +135314,676.5700000031628,-0.05560729452333445 +135315,676.5750000031629,-0.05560725807869079 +135316,676.580000003163,-0.05560722163612269 +135317,676.5850000031631,-0.05560718519562895 +135318,676.5900000031633,-0.05560714875720838 +135319,676.5950000031634,-0.055607112320859825 +135320,676.6000000031635,-0.0556070758865821 +135321,676.6050000031636,-0.05560703945437401 +135322,676.6100000031637,-0.055607003024234374 +135323,676.6150000031638,-0.05560696659616202 +135324,676.6200000031639,-0.05560693017015578 +135325,676.625000003164,-0.055606893746214456 +135326,676.6300000031641,-0.05560685732433687 +135327,676.6350000031642,-0.055606820904521854 +135328,676.6400000031643,-0.055606784486768236 +135329,676.6450000031645,-0.05560674807107482 +135330,676.6500000031646,-0.05560671165744043 +135331,676.6550000031647,-0.0556066752458639 +135332,676.6600000031648,-0.05560663883634405 +135333,676.6650000031649,-0.0556066024288797 +135334,676.670000003165,-0.05560656602346967 +135335,676.6750000031651,-0.05560652962011278 +135336,676.6800000031652,-0.055606493218807874 +135337,676.6850000031653,-0.05560645681955376 +135338,676.6900000031654,-0.05560642042234926 +135339,676.6950000031655,-0.055606384027193215 +135340,676.7000000031657,-0.05560634763408443 +135341,676.7050000031658,-0.055606311243021754 +135342,676.7100000031659,-0.05560627485400398 +135343,676.715000003166,-0.055606238467029966 +135344,676.7200000031661,-0.05560620208209852 +135345,676.7250000031662,-0.055606165699208475 +135346,676.7300000031663,-0.055606129318358656 +135347,676.7350000031664,-0.055606092939547894 +135348,676.7400000031665,-0.05560605656277501 +135349,676.7450000031666,-0.05560602018803884 +135350,676.7500000031667,-0.055605983815338204 +135351,676.7550000031669,-0.05560594744467194 +135352,676.760000003167,-0.055605911076038864 +135353,676.7650000031671,-0.055605874709437814 +135354,676.7700000031672,-0.05560583834486761 +135355,676.7750000031673,-0.055605801982327084 +135356,676.7800000031674,-0.055605765621815066 +135357,676.7850000031675,-0.055605729263330406 +135358,676.7900000031676,-0.05560569290687191 +135359,676.7950000031677,-0.055605656552438404 +135360,676.8000000031678,-0.05560562020002874 +135361,676.805000003168,-0.05560558384964173 +135362,676.810000003168,-0.05560554750127622 +135363,676.8150000031682,-0.05560551115493104 +135364,676.8200000031683,-0.055605474810605016 +135365,676.8250000031684,-0.055605438468296985 +135366,676.8300000031685,-0.055605402128005764 +135367,676.8350000031686,-0.055605365789730216 +135368,676.8400000031687,-0.05560532945346915 +135369,676.8450000031688,-0.055605293119221404 +135370,676.8500000031689,-0.05560525678698581 +135371,676.855000003169,-0.0556052204567612 +135372,676.8600000031691,-0.055605184128546425 +135373,676.8650000031693,-0.05560514780234031 +135374,676.8700000031694,-0.05560511147814168 +135375,676.8750000031695,-0.05560507515594938 +135376,676.8800000031696,-0.05560503883576225 +135377,676.8850000031697,-0.05560500251757911 +135378,676.8900000031698,-0.05560496620139881 +135379,676.8950000031699,-0.055604929887220184 +135380,676.90000000317,-0.05560489357504206 +135381,676.9050000031701,-0.05560485726486327 +135382,676.9100000031702,-0.05560482095668268 +135383,676.9150000031703,-0.055604784650499096 +135384,676.9200000031705,-0.05560474834631137 +135385,676.9250000031706,-0.05560471204411834 +135386,676.9300000031707,-0.05560467574391885 +135387,676.9350000031708,-0.055604639445711715 +135388,676.9400000031709,-0.055604603149495786 +135389,676.945000003171,-0.055604566855269925 +135390,676.9500000031711,-0.05560453056303294 +135391,676.9550000031712,-0.05560449427278368 +135392,676.9600000031713,-0.055604457984520995 +135393,676.9650000031714,-0.055604421698243714 +135394,676.9700000031715,-0.055604385413950665 +135395,676.9750000031717,-0.055604349131640717 +135396,676.9800000031718,-0.0556043128513127 +135397,676.9850000031719,-0.05560427657296545 +135398,676.990000003172,-0.05560424029659781 +135399,676.9950000031721,-0.05560420402220862 +135400,677.0000000031722,-0.05560416774979673 +135401,677.0050000031723,-0.055604131479360976 +135402,677.0100000031724,-0.0556040952109002 +135403,677.0150000031725,-0.05560405894441324 +135404,677.0200000031726,-0.055604022679898946 +135405,677.0250000031727,-0.05560398641735617 +135406,677.0300000031729,-0.05560395015678374 +135407,677.035000003173,-0.05560391389818051 +135408,677.0400000031731,-0.05560387764154533 +135409,677.0450000031732,-0.055603841386877025 +135410,677.0500000031733,-0.05560380513417445 +135411,677.0550000031734,-0.05560376888343646 +135412,677.0600000031735,-0.055603732634661895 +135413,677.0650000031736,-0.055603696387849594 +135414,677.0700000031737,-0.05560366014299841 +135415,677.0750000031738,-0.05560362390010718 +135416,677.080000003174,-0.055603587659174766 +135417,677.0850000031741,-0.055603551420199994 +135418,677.0900000031742,-0.055603515183181726 +135419,677.0950000031743,-0.055603478948118804 +135420,677.1000000031744,-0.055603442715010075 +135421,677.1050000031745,-0.05560340648385439 +135422,677.1100000031746,-0.0556033702546506 +135423,677.1150000031747,-0.055603334027397554 +135424,677.1200000031748,-0.05560329780209409 +135425,677.1250000031749,-0.055603261578739065 +135426,677.130000003175,-0.05560322535733132 +135427,677.1350000031752,-0.05560318913786972 +135428,677.1400000031753,-0.05560315292035311 +135429,677.1450000031754,-0.05560311670478033 +135430,677.1500000031755,-0.05560308049115024 +135431,677.1550000031756,-0.05560304427946169 +135432,677.1600000031757,-0.05560300806971353 +135433,677.1650000031758,-0.055602971861904604 +135434,677.1700000031759,-0.05560293565603378 +135435,677.175000003176,-0.05560289945209989 +135436,677.1800000031761,-0.05560286325010181 +135437,677.1850000031762,-0.055602827050038356 +135438,677.1900000031764,-0.055602790851908425 +135439,677.1950000031765,-0.055602754655710844 +135440,677.2000000031766,-0.055602718461444454 +135441,677.2050000031767,-0.05560268226910813 +135442,677.2100000031768,-0.05560264607870073 +135443,677.2150000031769,-0.05560260989022109 +135444,677.220000003177,-0.055602573703668084 +135445,677.2250000031771,-0.055602537519040554 +135446,677.2300000031772,-0.05560250133633735 +135447,677.2350000031773,-0.05560246515555734 +135448,677.2400000031774,-0.05560242897669937 +135449,677.2450000031776,-0.0556023927997623 +135450,677.2500000031777,-0.055602356624744984 +135451,677.2550000031778,-0.05560232045164628 +135452,677.2600000031779,-0.05560228428046504 +135453,677.265000003178,-0.05560224811120014 +135454,677.2700000031781,-0.055602211943850406 +135455,677.2750000031782,-0.05560217577841472 +135456,677.2800000031783,-0.055602139614891924 +135457,677.2850000031784,-0.05560210345328089 +135458,677.2900000031785,-0.05560206729358048 +135459,677.2950000031786,-0.055602031135789536 +135460,677.3000000031788,-0.05560199497990692 +135461,677.3050000031789,-0.05560195882593149 +135462,677.310000003179,-0.05560192267386211 +135463,677.3150000031791,-0.055601886523697644 +135464,677.3200000031792,-0.05560185037543694 +135465,677.3250000031793,-0.05560181422907887 +135466,677.3300000031794,-0.055601778084622286 +135467,677.3350000031795,-0.05560174194206606 +135468,677.3400000031796,-0.05560170580140904 +135469,677.3450000031797,-0.055601669662650094 +135470,677.3500000031798,-0.05560163352578809 +135471,677.35500000318,-0.05560159739082188 +135472,677.3600000031801,-0.05560156125775032 +135473,677.3650000031802,-0.055601525126572286 +135474,677.3700000031803,-0.05560148899728664 +135475,677.3750000031804,-0.05560145286989223 +135476,677.3800000031805,-0.055601416744387934 +135477,677.3850000031806,-0.05560138062077262 +135478,677.3900000031807,-0.05560134449904514 +135479,677.3950000031808,-0.05560130837920436 +135480,677.4000000031809,-0.055601272261249134 +135481,677.405000003181,-0.05560123614517835 +135482,677.4100000031812,-0.05560120003099085 +135483,677.4150000031813,-0.05560116391868553 +135484,677.4200000031814,-0.05560112780826123 +135485,677.4250000031815,-0.05560109169971682 +135486,677.4300000031816,-0.055601055593051174 +135487,677.4350000031817,-0.05560101948826315 +135488,677.4400000031818,-0.05560098338535161 +135489,677.4450000031819,-0.05560094728431542 +135490,677.450000003182,-0.055600911185153465 +135491,677.4550000031821,-0.05560087508786461 +135492,677.4600000031822,-0.05560083899244771 +135493,677.4650000031824,-0.05560080289890164 +135494,677.4700000031825,-0.055600766807225255 +135495,677.4750000031826,-0.05560073071741744 +135496,677.4800000031827,-0.055600694629477046 +135497,677.4850000031828,-0.05560065854340297 +135498,677.4900000031829,-0.055600622459194074 +135499,677.495000003183,-0.05560058637684921 +135500,677.5000000031831,-0.05560055029636725 +135501,677.5050000031832,-0.055600514217747074 +135502,677.5100000031833,-0.05560047814098755 +135503,677.5150000031834,-0.05560044206608755 +135504,677.5200000031836,-0.05560040599304596 +135505,677.5250000031837,-0.05560036992186161 +135506,677.5300000031838,-0.055600333852533414 +135507,677.5350000031839,-0.055600297785060225 +135508,677.540000003184,-0.05560026171944091 +135509,677.5450000031841,-0.05560022565567435 +135510,677.5500000031842,-0.05560018959375941 +135511,677.5550000031843,-0.05560015353369496 +135512,677.5600000031844,-0.05560011747547989 +135513,677.5650000031845,-0.055600081419113066 +135514,677.5700000031846,-0.05560004536459337 +135515,677.5750000031848,-0.05560000931191966 +135516,677.5800000031849,-0.055599973261090826 +135517,677.585000003185,-0.05559993721210572 +135518,677.5900000031851,-0.05559990116496323 +135519,677.5950000031852,-0.055599865119662244 +135520,677.6000000031853,-0.05559982907620162 +135521,677.6050000031854,-0.05559979303458023 +135522,677.6100000031855,-0.05559975699479696 +135523,677.6150000031856,-0.05559972095685069 +135524,677.6200000031857,-0.055599684920740286 +135525,677.6250000031858,-0.05559964888646464 +135526,677.630000003186,-0.05559961285402261 +135527,677.6350000031861,-0.05559957682341309 +135528,677.6400000031862,-0.05559954079463495 +135529,677.6450000031863,-0.05559950476768707 +135530,677.6500000031864,-0.05559946874256832 +135531,677.6550000031865,-0.055599432719277586 +135532,677.6600000031866,-0.05559939669781375 +135533,677.6650000031867,-0.05559936067817567 +135534,677.6700000031868,-0.055599324660362257 +135535,677.6750000031869,-0.05559928864437238 +135536,677.680000003187,-0.055599252630204904 +135537,677.6850000031872,-0.055599216617858715 +135538,677.6900000031873,-0.0555991806073327 +135539,677.6950000031874,-0.05559914459862574 +135540,677.7000000031875,-0.05559910859173671 +135541,677.7050000031876,-0.055599072586664494 +135542,677.7100000031877,-0.05559903658340798 +135543,677.7150000031878,-0.05559900058196604 +135544,677.7200000031879,-0.05559896458233756 +135545,677.725000003188,-0.055598928584521416 +135546,677.7300000031881,-0.05559889258851651 +135547,677.7350000031882,-0.05559885659432169 +135548,677.7400000031884,-0.05559882060193587 +135549,677.7450000031885,-0.05559878461135793 +135550,677.7500000031886,-0.05559874862258674 +135551,677.7550000031887,-0.05559871263562118 +135552,677.7600000031888,-0.055598676650460165 +135553,677.7650000031889,-0.055598640667102545 +135554,677.770000003189,-0.05559860468554722 +135555,677.7750000031891,-0.05559856870579307 +135556,677.7800000031892,-0.05559853272783899 +135557,677.7850000031893,-0.05559849675168386 +135558,677.7900000031894,-0.05559846077732657 +135559,677.7950000031896,-0.055598424804766 +135560,677.8000000031897,-0.05559838883400103 +135561,677.8050000031898,-0.055598352865030565 +135562,677.8100000031899,-0.05559831689785348 +135563,677.81500000319,-0.05559828093246866 +135564,677.8200000031901,-0.05559824496887499 +135565,677.8250000031902,-0.055598209007071374 +135566,677.8300000031903,-0.05559817304705669 +135567,677.8350000031904,-0.05559813708882982 +135568,677.8400000031905,-0.05559810113238966 +135569,677.8450000031906,-0.05559806517773509 +135570,677.8500000031908,-0.055598029224865016 +135571,677.8550000031909,-0.05559799327377832 +135572,677.860000003191,-0.05559795732447388 +135573,677.8650000031911,-0.0555979213769506 +135574,677.8700000031912,-0.05559788543120736 +135575,677.8750000031913,-0.055597849487243056 +135576,677.8800000031914,-0.055597813545056586 +135577,677.8850000031915,-0.05559777760464683 +135578,677.8900000031916,-0.05559774166601268 +135579,677.8950000031917,-0.055597705729153034 +135580,677.9000000031918,-0.05559766979406677 +135581,677.905000003192,-0.05559763386075281 +135582,677.9100000031921,-0.05559759792921001 +135583,677.9150000031922,-0.055597561999437294 +135584,677.9200000031923,-0.05559752607143352 +135585,677.9250000031924,-0.05559749014519761 +135586,677.9300000031925,-0.055597454220728454 +135587,677.9350000031926,-0.055597418298024934 +135588,677.9400000031927,-0.055597382377085953 +135589,677.9450000031928,-0.0555973464579104 +135590,677.9500000031929,-0.05559731054049718 +135591,677.955000003193,-0.05559727462484517 +135592,677.9600000031932,-0.055597238710953276 +135593,677.9650000031933,-0.055597202798820404 +135594,677.9700000031934,-0.05559716688844543 +135595,677.9750000031935,-0.055597130979827256 +135596,677.9800000031936,-0.05559709507296478 +135597,677.9850000031937,-0.0555970591678569 +135598,677.9900000031938,-0.05559702326450251 +135599,677.9950000031939,-0.05559698736290051 +135600,678.000000003194,-0.05559695146304979 +135601,678.0050000031941,-0.05559691556494926 +135602,678.0100000031942,-0.05559687966859781 +135603,678.0150000031944,-0.05559684377399434 +135604,678.0200000031945,-0.05559680788113774 +135605,678.0250000031946,-0.05559677199002691 +135606,678.0300000031947,-0.055596736100660765 +135607,678.0350000031948,-0.05559670021303819 +135608,678.0400000031949,-0.05559666432715808 +135609,678.045000003195,-0.05559662844301936 +135610,678.0500000031951,-0.05559659256062089 +135611,678.0550000031952,-0.055596556679961606 +135612,678.0600000031953,-0.0555965208010404 +135613,678.0650000031955,-0.05559648492385615 +135614,678.0700000031956,-0.05559644904840779 +135615,678.0750000031957,-0.05559641317469421 +135616,678.0800000031958,-0.05559637730271429 +135617,678.0850000031959,-0.05559634143246696 +135618,678.090000003196,-0.05559630556395111 +135619,678.0950000031961,-0.05559626969716564 +135620,678.1000000031962,-0.055596233832109467 +135621,678.1050000031963,-0.05559619796878147 +135622,678.1100000031964,-0.05559616210718056 +135623,678.1150000031965,-0.055596126247305665 +135624,678.1200000031967,-0.05559609038915567 +135625,678.1250000031968,-0.05559605453272946 +135626,678.1300000031969,-0.05559601867802596 +135627,678.135000003197,-0.05559598282504408 +135628,678.1400000031971,-0.055595946973782714 +135629,678.1450000031972,-0.055595911124240775 +135630,678.1500000031973,-0.05559587527641716 +135631,678.1550000031974,-0.055595839430310774 +135632,678.1600000031975,-0.055595803585920534 +135633,678.1650000031976,-0.05559576774324533 +135634,678.1700000031977,-0.05559573190228409 +135635,678.1750000031979,-0.0555956960630357 +135636,678.180000003198,-0.055595660225499076 +135637,678.1850000031981,-0.05559562438967312 +135638,678.1900000031982,-0.05559558855555675 +135639,678.1950000031983,-0.05559555272314886 +135640,678.2000000031984,-0.05559551689244838 +135641,678.2050000031985,-0.05559548106345419 +135642,678.2100000031986,-0.05559544523616522 +135643,678.2150000031987,-0.05559540941058036 +135644,678.2200000031988,-0.05559537358669854 +135645,678.2250000031989,-0.05559533776451866 +135646,678.230000003199,-0.05559530194403963 +135647,678.2350000031992,-0.055595266125260355 +135648,678.2400000031993,-0.055595230308179755 +135649,678.2450000031994,-0.05559519449279672 +135650,678.2500000031995,-0.05559515867911018 +135651,678.2550000031996,-0.05559512286711905 +135652,678.2600000031997,-0.05559508705682222 +135653,678.2650000031998,-0.055595051248218626 +135654,678.2700000031999,-0.05559501544130717 +135655,678.2750000032,-0.05559497963608675 +135656,678.2800000032001,-0.055594943832556296 +135657,678.2850000032003,-0.05559490803071472 +135658,678.2900000032004,-0.05559487223056093 +135659,678.2950000032005,-0.05559483643209383 +135660,678.3000000032006,-0.05559480063531234 +135661,678.3050000032007,-0.055594764840215374 +135662,678.3100000032008,-0.05559472904680186 +135663,678.3150000032009,-0.055594693255070694 +135664,678.320000003201,-0.05559465746502079 +135665,678.3250000032011,-0.05559462167665107 +135666,678.3300000032012,-0.055594585889960454 +135667,678.3350000032013,-0.055594550104947855 +135668,678.3400000032015,-0.05559451432161218 +135669,678.3450000032016,-0.05559447853995235 +135670,678.3500000032017,-0.05559444275996728 +135671,678.3550000032018,-0.05559440698165588 +135672,678.3600000032019,-0.05559437120501708 +135673,678.365000003202,-0.055594335430049796 +135674,678.3700000032021,-0.05559429965675292 +135675,678.3750000032022,-0.0555942638851254 +135676,678.3800000032023,-0.05559422811516615 +135677,678.3850000032024,-0.055594192346874065 +135678,678.3900000032025,-0.055594156580248084 +135679,678.3950000032027,-0.055594120815287126 +135680,678.4000000032028,-0.05559408505199011 +135681,678.4050000032029,-0.05559404929035594 +135682,678.410000003203,-0.05559401353038353 +135683,678.4150000032031,-0.055593977772071826 +135684,678.4200000032032,-0.05559394201541973 +135685,678.4250000032033,-0.055593906260426165 +135686,678.4300000032034,-0.05559387050709006 +135687,678.4350000032035,-0.055593834755410326 +135688,678.4400000032036,-0.05559379900538589 +135689,678.4450000032037,-0.05559376325701567 +135690,678.4500000032039,-0.05559372751029859 +135691,678.455000003204,-0.05559369176523357 +135692,678.4600000032041,-0.05559365602181953 +135693,678.4650000032042,-0.05559362028005539 +135694,678.4700000032043,-0.05559358453994008 +135695,678.4750000032044,-0.05559354880147253 +135696,678.4800000032045,-0.055593513064651635 +135697,678.4850000032046,-0.05559347732947633 +135698,678.4900000032047,-0.05559344159594555 +135699,678.4950000032048,-0.05559340586405821 +135700,678.500000003205,-0.05559337013381324 +135701,678.505000003205,-0.05559333440520956 +135702,678.5100000032052,-0.055593298678246104 +135703,678.5150000032053,-0.05559326295292178 +135704,678.5200000032054,-0.05559322722923551 +135705,678.5250000032055,-0.05559319150718624 +135706,678.5300000032056,-0.05559315578677288 +135707,678.5350000032057,-0.05559312006799436 +135708,678.5400000032058,-0.05559308435084962 +135709,678.5450000032059,-0.055593048635337566 +135710,678.550000003206,-0.05559301292145713 +135711,678.5550000032061,-0.05559297720920725 +135712,678.5600000032063,-0.05559294149858684 +135713,678.5650000032064,-0.05559290578959484 +135714,678.5700000032065,-0.05559287008223016 +135715,678.5750000032066,-0.055592834376491755 +135716,678.5800000032067,-0.05559279867237852 +135717,678.5850000032068,-0.05559276296988941 +135718,678.5900000032069,-0.05559272726902335 +135719,678.595000003207,-0.05559269156977925 +135720,678.6000000032071,-0.05559265587215606 +135721,678.6050000032072,-0.05559262017615269 +135722,678.6100000032073,-0.0555925844817681 +135723,678.6150000032075,-0.0555925487890012 +135724,678.6200000032076,-0.05559251309785091 +135725,678.6250000032077,-0.05559247740831619 +135726,678.6300000032078,-0.055592441720395944 +135727,678.6350000032079,-0.05559240603408911 +135728,678.640000003208,-0.055592370349394626 +135729,678.6450000032081,-0.055592334666311416 +135730,678.6500000032082,-0.055592298984838424 +135731,678.6550000032083,-0.05559226330497457 +135732,678.6600000032084,-0.055592227626718796 +135733,678.6650000032085,-0.055592191950070036 +135734,678.6700000032087,-0.055592156275027206 +135735,678.6750000032088,-0.05559212060158926 +135736,678.6800000032089,-0.05559208492975512 +135737,678.685000003209,-0.05559204925952372 +135738,678.6900000032091,-0.055592013590893996 +135739,678.6950000032092,-0.05559197792386489 +135740,678.7000000032093,-0.05559194225843533 +135741,678.7050000032094,-0.05559190659460424 +135742,678.7100000032095,-0.05559187093237057 +135743,678.7150000032096,-0.055591835271733246 +135744,678.7200000032097,-0.05559179961269121 +135745,678.7250000032099,-0.055591763955243394 +135746,678.73000000321,-0.055591728299388736 +135747,678.7350000032101,-0.05559169264512617 +135748,678.7400000032102,-0.05559165699245465 +135749,678.7450000032103,-0.05559162134137308 +135750,678.7500000032104,-0.05559158569188043 +135751,678.7550000032105,-0.05559155004397562 +135752,678.7600000032106,-0.05559151439765759 +135753,678.7650000032107,-0.055591478752925284 +135754,678.7700000032108,-0.05559144310977763 +135755,678.775000003211,-0.055591407468213574 +135756,678.7800000032111,-0.05559137182823206 +135757,678.7850000032112,-0.05559133618983201 +135758,678.7900000032113,-0.055591300553012375 +135759,678.7950000032114,-0.055591264917772096 +135760,678.8000000032115,-0.055591229284110116 +135761,678.8050000032116,-0.05559119365202537 +135762,678.8100000032117,-0.05559115802151679 +135763,678.8150000032118,-0.055591122392583334 +135764,678.8200000032119,-0.055591086765223924 +135765,678.825000003212,-0.05559105113943751 +135766,678.8300000032121,-0.05559101551522304 +135767,678.8350000032123,-0.05559097989257944 +135768,678.8400000032124,-0.055590944271505675 +135769,678.8450000032125,-0.05559090865200066 +135770,678.8500000032126,-0.05559087303406336 +135771,678.8550000032127,-0.05559083741769271 +135772,678.8600000032128,-0.055590801802887654 +135773,678.8650000032129,-0.05559076618964713 +135774,678.870000003213,-0.05559073057797009 +135775,678.8750000032131,-0.05559069496785547 +135776,678.8800000032132,-0.05559065935930222 +135777,678.8850000032133,-0.05559062375230928 +135778,678.8900000032135,-0.055590588146875605 +135779,678.8950000032136,-0.05559055254300013 +135780,678.9000000032137,-0.055590516940681796 +135781,678.9050000032138,-0.05559048133991955 +135782,678.9100000032139,-0.05559044574071234 +135783,678.915000003214,-0.05559041014305912 +135784,678.9200000032141,-0.05559037454695883 +135785,678.9250000032142,-0.055590338952410404 +135786,678.9300000032143,-0.05559030335941281 +135787,678.9350000032144,-0.05559026776796499 +135788,678.9400000032145,-0.05559023217806589 +135789,678.9450000032147,-0.05559019658971445 +135790,678.9500000032148,-0.05559016100290962 +135791,678.9550000032149,-0.055590125417650356 +135792,678.960000003215,-0.055590089833935596 +135793,678.9650000032151,-0.05559005425176429 +135794,678.9700000032152,-0.05559001867113538 +135795,678.9750000032153,-0.055589983092047844 +135796,678.9800000032154,-0.05558994751450061 +135797,678.9850000032155,-0.05558991193849262 +135798,678.9900000032156,-0.05558987636402284 +135799,678.9950000032158,-0.05558984079109021 +135800,679.0000000032159,-0.055589805219693686 +135801,679.005000003216,-0.05558976964983222 +135802,679.0100000032161,-0.05558973408150476 +135803,679.0150000032162,-0.055589698514710253 +135804,679.0200000032163,-0.05558966294944766 +135805,679.0250000032164,-0.05558962738571593 +135806,679.0300000032165,-0.055589591823514015 +135807,679.0350000032166,-0.05558955626284086 +135808,679.0400000032167,-0.05558952070369542 +135809,679.0450000032168,-0.055589485146076645 +135810,679.050000003217,-0.05558944958998349 +135811,679.0550000032171,-0.05558941403541492 +135812,679.0600000032172,-0.05558937848236987 +135813,679.0650000032173,-0.05558934293084731 +135814,679.0700000032174,-0.05558930738084618 +135815,679.0750000032175,-0.05558927183236544 +135816,679.0800000032176,-0.055589236285404055 +135817,679.0850000032177,-0.05558920073996097 +135818,679.0900000032178,-0.05558916519603514 +135819,679.0950000032179,-0.05558912965362552 +135820,679.100000003218,-0.05558909411273106 +135821,679.1050000032182,-0.055589058573350725 +135822,679.1100000032183,-0.05558902303548348 +135823,679.1150000032184,-0.055588987499128266 +135824,679.1200000032185,-0.05558895196428404 +135825,679.1250000032186,-0.05558891643094975 +135826,679.1300000032187,-0.05558888089912438 +135827,679.1350000032188,-0.05558884536880687 +135828,679.1400000032189,-0.05558880983999619 +135829,679.145000003219,-0.05558877431269127 +135830,679.1500000032191,-0.0555887387868911 +135831,679.1550000032192,-0.05558870326259462 +135832,679.1600000032194,-0.0555886677398008 +135833,679.1650000032195,-0.05558863221850858 +135834,679.1700000032196,-0.05558859669871694 +135835,679.1750000032197,-0.055588561180424836 +135836,679.1800000032198,-0.05558852566363122 +135837,679.1850000032199,-0.05558849014833506 +135838,679.19000000322,-0.055588454634535295 +135839,679.1950000032201,-0.05558841912223092 +135840,679.2000000032202,-0.05558838361142087 +135841,679.2050000032203,-0.055588348102104106 +135842,679.2100000032204,-0.0555883125942796 +135843,679.2150000032206,-0.05558827708794631 +135844,679.2200000032207,-0.0555882415831032 +135845,679.2250000032208,-0.05558820607974923 +135846,679.2300000032209,-0.05558817057788336 +135847,679.235000003221,-0.05558813507750456 +135848,679.2400000032211,-0.05558809957861179 +135849,679.2450000032212,-0.05558806408120401 +135850,679.2500000032213,-0.05558802858528018 +135851,679.2550000032214,-0.055587993090839276 +135852,679.2600000032215,-0.055587957597880246 +135853,679.2650000032216,-0.05558792210640208 +135854,679.2700000032218,-0.05558788661640371 +135855,679.2750000032219,-0.05558785112788411 +135856,679.280000003222,-0.05558781564084225 +135857,679.2850000032221,-0.0555877801552771 +135858,679.2900000032222,-0.05558774467118762 +135859,679.2950000032223,-0.05558770918857279 +135860,679.3000000032224,-0.05558767370743155 +135861,679.3050000032225,-0.05558763822776288 +135862,679.3100000032226,-0.05558760274956575 +135863,679.3150000032227,-0.05558756727283911 +135864,679.3200000032228,-0.05558753179758195 +135865,679.325000003223,-0.05558749632379322 +135866,679.3300000032231,-0.05558746085147189 +135867,679.3350000032232,-0.05558742538061694 +135868,679.3400000032233,-0.055587389911227324 +135869,679.3450000032234,-0.05558735444330202 +135870,679.3500000032235,-0.05558731897683998 +135871,679.3550000032236,-0.055587283511840196 +135872,679.3600000032237,-0.05558724804830163 +135873,679.3650000032238,-0.05558721258622325 +135874,679.3700000032239,-0.055587177125604 +135875,679.375000003224,-0.055587141666442894 +135876,679.3800000032242,-0.055587106208738864 +135877,679.3850000032243,-0.055587070752490905 +135878,679.3900000032244,-0.055587035297697984 +135879,679.3950000032245,-0.05558699984435906 +135880,679.4000000032246,-0.055586964392473105 +135881,679.4050000032247,-0.05558692894203911 +135882,679.4100000032248,-0.055586893493056025 +135883,679.4150000032249,-0.05558685804552283 +135884,679.420000003225,-0.05558682259943851 +135885,679.4250000032251,-0.05558678715480201 +135886,679.4300000032252,-0.05558675171161232 +135887,679.4350000032254,-0.05558671626986842 +135888,679.4400000032255,-0.05558668082956926 +135889,679.4450000032256,-0.055586645390713826 +135890,679.4500000032257,-0.05558660995330109 +135891,679.4550000032258,-0.05558657451733004 +135892,679.4600000032259,-0.05558653908279963 +135893,679.465000003226,-0.055586503649708845 +135894,679.4700000032261,-0.05558646821805667 +135895,679.4750000032262,-0.05558643278784206 +135896,679.4800000032263,-0.055586397359063996 +135897,679.4850000032264,-0.05558636193172146 +135898,679.4900000032266,-0.0555863265058134 +135899,679.4950000032267,-0.05558629108133883 +135900,679.5000000032268,-0.05558625565829671 +135901,679.5050000032269,-0.05558622023668602 +135902,679.510000003227,-0.055586184816505735 +135903,679.5150000032271,-0.055586149397754823 +135904,679.5200000032272,-0.055586113980432277 +135905,679.5250000032273,-0.05558607856453706 +135906,679.5300000032274,-0.05558604315006817 +135907,679.5350000032275,-0.05558600773702456 +135908,679.5400000032276,-0.05558597232540522 +135909,679.5450000032278,-0.05558593691520913 +135910,679.5500000032279,-0.05558590150643526 +135911,679.555000003228,-0.05558586609908261 +135912,679.5600000032281,-0.05558583069315013 +135913,679.5650000032282,-0.055585795288636816 +135914,679.5700000032283,-0.05558575988554165 +135915,679.5750000032284,-0.05558572448386362 +135916,679.5800000032285,-0.05558568908360168 +135917,679.5850000032286,-0.055585653684754835 +135918,679.5900000032287,-0.05558561828732205 +135919,679.5950000032288,-0.055585582891302325 +135920,679.600000003229,-0.055585547496694615 +135921,679.6050000032291,-0.05558551210349792 +135922,679.6100000032292,-0.055585476711711226 +135923,679.6150000032293,-0.055585441321333494 +135924,679.6200000032294,-0.055585405932363725 +135925,679.6250000032295,-0.055585370544800894 +135926,679.6300000032296,-0.055585335158643986 +135927,679.6350000032297,-0.055585299773891976 +135928,679.6400000032298,-0.055585264390543856 +135929,679.6450000032299,-0.055585229008598615 +135930,679.65000000323,-0.055585193628055224 +135931,679.6550000032302,-0.05558515824891268 +135932,679.6600000032303,-0.055585122871169956 +135933,679.6650000032304,-0.05558508749482604 +135934,679.6700000032305,-0.05558505211987992 +135935,679.6750000032306,-0.05558501674633058 +135936,679.6800000032307,-0.05558498137417701 +135937,679.6850000032308,-0.055584946003418186 +135938,679.6900000032309,-0.05558491063405309 +135939,679.695000003231,-0.05558487526608072 +135940,679.7000000032311,-0.055584839899500055 +135941,679.7050000032312,-0.0555848045343101 +135942,679.7100000032314,-0.055584769170509814 +135943,679.7150000032315,-0.05558473380809821 +135944,679.7200000032316,-0.05558469844707426 +135945,679.7250000032317,-0.05558466308743695 +135946,679.7300000032318,-0.05558462772918527 +135947,679.7350000032319,-0.05558459237231821 +135948,679.740000003232,-0.05558455701683477 +135949,679.7450000032321,-0.05558452166273392 +135950,679.7500000032322,-0.055584486310014655 +135951,679.7550000032323,-0.05558445095867597 +135952,679.7600000032324,-0.05558441560871685 +135953,679.7650000032326,-0.05558438026013628 +135954,679.7700000032327,-0.055584344912933265 +135955,679.7750000032328,-0.05558430956710677 +135956,679.7800000032329,-0.055584274222655806 +135957,679.785000003233,-0.055584238879579376 +135958,679.7900000032331,-0.055584203537876437 +135959,679.7950000032332,-0.05558416819754599 +135960,679.8000000032333,-0.05558413285858706 +135961,679.8050000032334,-0.0555840975209986 +135962,679.8100000032335,-0.05558406218477961 +135963,679.8150000032336,-0.05558402684992909 +135964,679.8200000032338,-0.05558399151644602 +135965,679.8250000032339,-0.05558395618432941 +135966,679.830000003234,-0.05558392085357824 +135967,679.8350000032341,-0.0555838855241915 +135968,679.8400000032342,-0.055583850196168204 +135969,679.8450000032343,-0.05558381486950732 +135970,679.8500000032344,-0.05558377954420787 +135971,679.8550000032345,-0.05558374422026883 +135972,679.8600000032346,-0.055583708897689196 +135973,679.8650000032347,-0.05558367357646796 +135974,679.8700000032348,-0.05558363825660413 +135975,679.875000003235,-0.05558360293809669 +135976,679.8800000032351,-0.055583567620944636 +135977,679.8850000032352,-0.055583532305146975 +135978,679.8900000032353,-0.05558349699070268 +135979,679.8950000032354,-0.055583461677610774 +135980,679.9000000032355,-0.05558342636587024 +135981,679.9050000032356,-0.05558339105548007 +135982,679.9100000032357,-0.055583355746439266 +135983,679.9150000032358,-0.05558332043874682 +135984,679.9200000032359,-0.05558328513240176 +135985,679.925000003236,-0.055583249827403036 +135986,679.9300000032362,-0.055583214523749674 +135987,679.9350000032363,-0.055583179221440675 +135988,679.9400000032364,-0.055583143920475024 +135989,679.9450000032365,-0.05558310862085173 +135990,679.9500000032366,-0.05558307332256979 +135991,679.9550000032367,-0.0555830380256282 +135992,679.9600000032368,-0.05558300273002597 +135993,679.9650000032369,-0.05558296743576209 +135994,679.970000003237,-0.055582932142835544 +135995,679.9750000032371,-0.055582896851245366 +135996,679.9800000032373,-0.055582861560990536 +135997,679.9850000032374,-0.05558282627207005 +135998,679.9900000032375,-0.055582790984482926 +135999,679.9950000032376,-0.05558275569822815 +136000,680.0000000032377,-0.05558272041330474 +136001,680.0050000032378,-0.05558268512971168 +136002,680.0100000032379,-0.055582649847447985 +136003,680.015000003238,-0.055582614566512645 +136004,680.0200000032381,-0.055582579286904674 +136005,680.0250000032382,-0.05558254400862307 +136006,680.0300000032383,-0.05558250873166685 +136007,680.0350000032385,-0.05558247345603499 +136008,680.0400000032386,-0.05558243818172652 +136009,680.0450000032387,-0.05558240290874042 +136010,680.0500000032388,-0.05558236763707572 +136011,680.0550000032389,-0.05558233236673141 +136012,680.060000003239,-0.05558229709770649 +136013,680.0650000032391,-0.055582261829999965 +136014,680.0700000032392,-0.055582226563610844 +136015,680.0750000032393,-0.055582191298538135 +136016,680.0800000032394,-0.05558215603478085 +136017,680.0850000032395,-0.05558212077233799 +136018,680.0900000032397,-0.05558208551120855 +136019,680.0950000032398,-0.055582050251391533 +136020,680.1000000032399,-0.055582014992885974 +136021,680.10500000324,-0.05558197973569085 +136022,680.1100000032401,-0.05558194447980519 +136023,680.1150000032402,-0.05558190922522799 +136024,680.1200000032403,-0.05558187397195826 +136025,680.1250000032404,-0.05558183871999501 +136026,680.1300000032405,-0.055581803469337235 +136027,680.1350000032406,-0.05558176821998396 +136028,680.1400000032407,-0.05558173297193419 +136029,680.1450000032409,-0.05558169772518693 +136030,680.150000003241,-0.05558166247974118 +136031,680.1550000032411,-0.055581627235595975 +136032,680.1600000032412,-0.055581591992750305 +136033,680.1650000032413,-0.05558155675120318 +136034,680.1700000032414,-0.05558152151095362 +136035,680.1750000032415,-0.05558148627200063 +136036,680.1800000032416,-0.05558145103434322 +136037,680.1850000032417,-0.0555814157979804 +136038,680.1900000032418,-0.05558138056291118 +136039,680.195000003242,-0.05558134532913458 +136040,680.200000003242,-0.055581310096649586 +136041,680.2050000032422,-0.05558127486545524 +136042,680.2100000032423,-0.05558123963555055 +136043,680.2150000032424,-0.0555812044069345 +136044,680.2200000032425,-0.05558116917960615 +136045,680.2250000032426,-0.055581133953564475 +136046,680.2300000032427,-0.0555810987288085 +136047,680.2350000032428,-0.055581063505337244 +136048,680.2400000032429,-0.05558102828314971 +136049,680.245000003243,-0.05558099306224491 +136050,680.2500000032431,-0.05558095784262187 +136051,680.2550000032433,-0.0555809226242796 +136052,680.2600000032434,-0.05558088740721711 +136053,680.2650000032435,-0.05558085219143341 +136054,680.2700000032436,-0.05558081697692754 +136055,680.2750000032437,-0.05558078176369848 +136056,680.2800000032438,-0.05558074655174528 +136057,680.2850000032439,-0.05558071134106693 +136058,680.290000003244,-0.05558067613166246 +136059,680.2950000032441,-0.05558064092353088 +136060,680.3000000032442,-0.055580605716671214 +136061,680.3050000032443,-0.05558057051108247 +136062,680.3100000032445,-0.05558053530676366 +136063,680.3150000032446,-0.05558050010371382 +136064,680.3200000032447,-0.05558046490193196 +136065,680.3250000032448,-0.05558042970141709 +136066,680.3300000032449,-0.055580394502168236 +136067,680.335000003245,-0.05558035930418442 +136068,680.3400000032451,-0.055580324107464635 +136069,680.3450000032452,-0.05558028891200793 +136070,680.3500000032453,-0.055580253717813305 +136071,680.3550000032454,-0.0555802185248798 +136072,680.3600000032455,-0.05558018333320642 +136073,680.3650000032457,-0.055580148142792184 +136074,680.3700000032458,-0.055580112953636115 +136075,680.3750000032459,-0.05558007776573723 +136076,680.380000003246,-0.05558004257909455 +136077,680.3850000032461,-0.05558000739370711 +136078,680.3900000032462,-0.05557997220957391 +136079,680.3950000032463,-0.05557993702669398 +136080,680.4000000032464,-0.055579901845066344 +136081,680.4050000032465,-0.05557986666469002 +136082,680.4100000032466,-0.05557983148556403 +136083,680.4150000032467,-0.055579796307687404 +136084,680.4200000032469,-0.05557976113105916 +136085,680.425000003247,-0.05557972595567832 +136086,680.4300000032471,-0.05557969078154389 +136087,680.4350000032472,-0.05557965560865492 +136088,680.4400000032473,-0.05557962043701042 +136089,680.4450000032474,-0.055579585266609416 +136090,680.4500000032475,-0.055579550097450935 +136091,680.4550000032476,-0.055579514929534 +136092,680.4600000032477,-0.05557947976285763 +136093,680.4650000032478,-0.05557944459742086 +136094,680.470000003248,-0.05557940943322271 +136095,680.475000003248,-0.055579374270262195 +136096,680.4800000032482,-0.05557933910853835 +136097,680.4850000032483,-0.05557930394805021 +136098,680.4900000032484,-0.055579268788796786 +136099,680.4950000032485,-0.05557923363077711 +136100,680.5000000032486,-0.055579198473990205 +136101,680.5050000032487,-0.055579163318435106 +136102,680.5100000032488,-0.05557912816411083 +136103,680.5150000032489,-0.05557909301101641 +136104,680.520000003249,-0.055579057859150884 +136105,680.5250000032491,-0.055579022708513254 +136106,680.5300000032493,-0.05557898755910256 +136107,680.5350000032494,-0.055578952410917835 +136108,680.5400000032495,-0.055578917263958104 +136109,680.5450000032496,-0.05557888211822239 +136110,680.5500000032497,-0.055578846973709746 +136111,680.5550000032498,-0.05557881183041917 +136112,680.5600000032499,-0.05557877668834971 +136113,680.56500000325,-0.055578741547500386 +136114,680.5700000032501,-0.05557870640787023 +136115,680.5750000032502,-0.05557867126945827 +136116,680.5800000032503,-0.05557863613226354 +136117,680.5850000032505,-0.055578600996285074 +136118,680.5900000032506,-0.05557856586152191 +136119,680.5950000032507,-0.055578530727973065 +136120,680.6000000032508,-0.055578495595637566 +136121,680.6050000032509,-0.055578460464514465 +136122,680.610000003251,-0.055578425334602784 +136123,680.6150000032511,-0.055578390205901544 +136124,680.6200000032512,-0.05557835507840979 +136125,680.6250000032513,-0.05557831995212655 +136126,680.6300000032514,-0.05557828482705085 +136127,680.6350000032515,-0.05557824970318174 +136128,680.6400000032517,-0.05557821458051825 +136129,680.6450000032518,-0.0555781794590594 +136130,680.6500000032519,-0.05557814433880424 +136131,680.655000003252,-0.05557810921975178 +136132,680.6600000032521,-0.05557807410190108 +136133,680.6650000032522,-0.05557803898525117 +136134,680.6700000032523,-0.055578003869801065 +136135,680.6750000032524,-0.05557796875554982 +136136,680.6800000032525,-0.05557793364249646 +136137,680.6850000032526,-0.055577898530640026 +136138,680.6900000032527,-0.05557786341997956 +136139,680.6950000032529,-0.055577828310514096 +136140,680.700000003253,-0.05557779320224266 +136141,680.7050000032531,-0.055577758095164284 +136142,680.7100000032532,-0.05557772298927803 +136143,680.7150000032533,-0.055577687884582914 +136144,680.7200000032534,-0.05557765278107797 +136145,680.7250000032535,-0.05557761767876225 +136146,680.7300000032536,-0.05557758257763479 +136147,680.7350000032537,-0.055577547477694625 +136148,680.7400000032538,-0.055577512378940784 +136149,680.745000003254,-0.055577477281372314 +136150,680.7500000032541,-0.05557744218498826 +136151,680.7550000032542,-0.055577407089787645 +136152,680.7600000032543,-0.05557737199576952 +136153,680.7650000032544,-0.05557733690293293 +136154,680.7700000032545,-0.055577301811276895 +136155,680.7750000032546,-0.05557726672080048 +136156,680.7800000032547,-0.0555772316315027 +136157,680.7850000032548,-0.05557719654338261 +136158,680.7900000032549,-0.055577161456439254 +136159,680.795000003255,-0.055577126370671665 +136160,680.8000000032551,-0.055577091286078885 +136161,680.8050000032553,-0.05557705620265995 +136162,680.8100000032554,-0.055577021120413905 +136163,680.8150000032555,-0.055576986039339804 +136164,680.8200000032556,-0.055576950959436676 +136165,680.8250000032557,-0.05557691588070357 +136166,680.8300000032558,-0.055576880803139515 +136167,680.8350000032559,-0.055576845726743575 +136168,680.840000003256,-0.05557681065151478 +136169,680.8450000032561,-0.05557677557745217 +136170,680.8500000032562,-0.05557674050455481 +136171,680.8550000032564,-0.05557670543282171 +136172,680.8600000032565,-0.055576670362251945 +136173,680.8650000032566,-0.055576635292844546 +136174,680.8700000032567,-0.05557660022459855 +136175,680.8750000032568,-0.05557656515751302 +136176,680.8800000032569,-0.05557653009158699 +136177,680.885000003257,-0.0555764950268195 +136178,680.8900000032571,-0.05557645996320962 +136179,680.8950000032572,-0.055576424900756365 +136180,680.9000000032573,-0.0555763898394588 +136181,680.9050000032574,-0.05557635477931595 +136182,680.9100000032576,-0.05557631972032688 +136183,680.9150000032577,-0.055576284662490635 +136184,680.9200000032578,-0.05557624960580627 +136185,680.9250000032579,-0.05557621455027281 +136186,680.930000003258,-0.05557617949588932 +136187,680.9350000032581,-0.05557614444265485 +136188,680.9400000032582,-0.05557610939056844 +136189,680.9450000032583,-0.05557607433962913 +136190,680.9500000032584,-0.055576039289835975 +136191,680.9550000032585,-0.05557600424118803 +136192,680.9600000032586,-0.05557596919368434 +136193,680.9650000032588,-0.055575934147323966 +136194,680.9700000032589,-0.05557589910210594 +136195,680.975000003259,-0.05557586405802931 +136196,680.9800000032591,-0.055575829015093135 +136197,680.9850000032592,-0.055575793973296456 +136198,680.9900000032593,-0.05557575893263834 +136199,680.9950000032594,-0.05557572389311782 +136200,681.0000000032595,-0.055575688854733955 +136201,681.0050000032596,-0.055575653817485804 +136202,681.0100000032597,-0.0555756187813724 +136203,681.0150000032598,-0.05557558374639281 +136204,681.02000000326,-0.05557554871254608 +136205,681.0250000032601,-0.05557551367983126 +136206,681.0300000032602,-0.05557547864824741 +136207,681.0350000032603,-0.05557544361779358 +136208,681.0400000032604,-0.05557540858846882 +136209,681.0450000032605,-0.05557537356027217 +136210,681.0500000032606,-0.0555753385332027 +136211,681.0550000032607,-0.05557530350725946 +136212,681.0600000032608,-0.055575268482441514 +136213,681.0650000032609,-0.0555752334587479 +136214,681.070000003261,-0.05557519843617769 +136215,681.0750000032612,-0.055575163414729914 +136216,681.0800000032613,-0.055575128394403636 +136217,681.0850000032614,-0.05557509337519791 +136218,681.0900000032615,-0.0555750583571118 +136219,681.0950000032616,-0.05557502334014436 +136220,681.1000000032617,-0.05557498832429464 +136221,681.1050000032618,-0.05557495330956169 +136222,681.1100000032619,-0.05557491829594459 +136223,681.115000003262,-0.05557488328344238 +136224,681.1200000032621,-0.05557484827205411 +136225,681.1250000032622,-0.05557481326177884 +136226,681.1300000032624,-0.05557477825261564 +136227,681.1350000032625,-0.05557474324456357 +136228,681.1400000032626,-0.055574708237621666 +136229,681.1450000032627,-0.055574673231788996 +136230,681.1500000032628,-0.05557463822706461 +136231,681.1550000032629,-0.05557460322344758 +136232,681.160000003263,-0.05557456822093697 +136233,681.1650000032631,-0.05557453321953182 +136234,681.1700000032632,-0.05557449821923119 +136235,681.1750000032633,-0.05557446322003415 +136236,681.1800000032634,-0.05557442822193975 +136237,681.1850000032636,-0.055574393224947075 +136238,681.1900000032637,-0.055574358229055154 +136239,681.1950000032638,-0.05557432323426306 +136240,681.2000000032639,-0.055574288240569855 +136241,681.205000003264,-0.055574253247974596 +136242,681.2100000032641,-0.05557421825647634 +136243,681.2150000032642,-0.05557418326607416 +136244,681.2200000032643,-0.055574148276767106 +136245,681.2250000032644,-0.055574113288554244 +136246,681.2300000032645,-0.05557407830143464 +136247,681.2350000032646,-0.05557404331540735 +136248,681.2400000032648,-0.05557400833047144 +136249,681.2450000032649,-0.05557397334662598 +136250,681.250000003265,-0.055573938363870014 +136251,681.2550000032651,-0.05557390338220262 +136252,681.2600000032652,-0.055573868401622845 +136253,681.2650000032653,-0.055573833422129765 +136254,681.2700000032654,-0.055573798443722455 +136255,681.2750000032655,-0.05557376346639995 +136256,681.2800000032656,-0.055573728490161345 +136257,681.2850000032657,-0.055573693515005684 +136258,681.2900000032658,-0.05557365854093205 +136259,681.295000003266,-0.0555736235679395 +136260,681.3000000032661,-0.05557358859602708 +136261,681.3050000032662,-0.05557355362519388 +136262,681.3100000032663,-0.05557351865543896 +136263,681.3150000032664,-0.05557348368676138 +136264,681.3200000032665,-0.055573448719160215 +136265,681.3250000032666,-0.055573413752634526 +136266,681.3300000032667,-0.055573378787183374 +136267,681.3350000032668,-0.05557334382280583 +136268,681.3400000032669,-0.05557330885950096 +136269,681.345000003267,-0.05557327389726784 +136270,681.3500000032672,-0.05557323893610552 +136271,681.3550000032673,-0.05557320397601309 +136272,681.3600000032674,-0.05557316901698961 +136273,681.3650000032675,-0.05557313405903415 +136274,681.3700000032676,-0.055573099102145765 +136275,681.3750000032677,-0.055573064146323535 +136276,681.3800000032678,-0.055573029191566536 +136277,681.3850000032679,-0.05557299423787383 +136278,681.390000003268,-0.05557295928524448 +136279,681.3950000032681,-0.05557292433367756 +136280,681.4000000032682,-0.055572889383172154 +136281,681.4050000032684,-0.055572854433727316 +136282,681.4100000032685,-0.05557281948534211 +136283,681.4150000032686,-0.055572784538015625 +136284,681.4200000032687,-0.05557274959174693 +136285,681.4250000032688,-0.05557271464653508 +136286,681.4300000032689,-0.05557267970237915 +136287,681.435000003269,-0.05557264475927822 +136288,681.4400000032691,-0.05557260981723137 +136289,681.4450000032692,-0.05557257487623765 +136290,681.4500000032693,-0.055572539936296156 +136291,681.4550000032694,-0.055572504997405944 +136292,681.4600000032696,-0.0555724700595661 +136293,681.4650000032697,-0.05557243512277569 +136294,681.4700000032698,-0.05557240018703378 +136295,681.4750000032699,-0.05557236525233945 +136296,681.48000000327,-0.055572330318691784 +136297,681.4850000032701,-0.055572295386089834 +136298,681.4900000032702,-0.055572260454532695 +136299,681.4950000032703,-0.05557222552401943 +136300,681.5000000032704,-0.055572190594549126 +136301,681.5050000032705,-0.05557215566612085 +136302,681.5100000032706,-0.055572120738733674 +136303,681.5150000032708,-0.05557208581238668 +136304,681.5200000032709,-0.05557205088707893 +136305,681.525000003271,-0.055572015962809515 +136306,681.5300000032711,-0.055571981039577494 +136307,681.5350000032712,-0.05557194611738197 +136308,681.5400000032713,-0.05557191119622199 +136309,681.5450000032714,-0.05557187627609666 +136310,681.5500000032715,-0.05557184135700504 +136311,681.5550000032716,-0.055571806438946214 +136312,681.5600000032717,-0.05557177152191925 +136313,681.5650000032718,-0.055571736605923225 +136314,681.570000003272,-0.05557170169095723 +136315,681.5750000032721,-0.05557166677702034 +136316,681.5800000032722,-0.055571631864111626 +136317,681.5850000032723,-0.05557159695223017 +136318,681.5900000032724,-0.05557156204137506 +136319,681.5950000032725,-0.05557152713154537 +136320,681.6000000032726,-0.05557149222274016 +136321,681.6050000032727,-0.055571457314958536 +136322,681.6100000032728,-0.05557142240819957 +136323,681.6150000032729,-0.05557138750246234 +136324,681.620000003273,-0.05557135259774594 +136325,681.6250000032732,-0.05557131769404943 +136326,681.6300000032733,-0.0555712827913719 +136327,681.6350000032734,-0.055571247889712426 +136328,681.6400000032735,-0.055571212989070105 +136329,681.6450000032736,-0.05557117808944401 +136330,681.6500000032737,-0.055571143190833214 +136331,681.6550000032738,-0.055571108293236804 +136332,681.6600000032739,-0.05557107339665386 +136333,681.665000003274,-0.055571038501083476 +136334,681.6700000032741,-0.05557100360652473 +136335,681.6750000032742,-0.0555709687129767 +136336,681.6800000032744,-0.05557093382043847 +136337,681.6850000032745,-0.05557089892890912 +136338,681.6900000032746,-0.05557086403838774 +136339,681.6950000032747,-0.055570829148873416 +136340,681.7000000032748,-0.055570794260365236 +136341,681.7050000032749,-0.05557075937286227 +136342,681.710000003275,-0.05557072448636362 +136343,681.7150000032751,-0.05557068960086835 +136344,681.7200000032752,-0.05557065471637556 +136345,681.7250000032753,-0.05557061983288433 +136346,681.7300000032754,-0.055570584950393756 +136347,681.7350000032756,-0.05557055006890291 +136348,681.7400000032757,-0.05557051518841088 +136349,681.7450000032758,-0.05557048030891676 +136350,681.7500000032759,-0.05557044543041963 +136351,681.755000003276,-0.05557041055291857 +136352,681.7600000032761,-0.055570375676412695 +136353,681.7650000032762,-0.055570340800901064 +136354,681.7700000032763,-0.055570305926382776 +136355,681.7750000032764,-0.05557027105285691 +136356,681.7800000032765,-0.05557023618032257 +136357,681.7850000032767,-0.055570201308778835 +136358,681.7900000032768,-0.05557016643822479 +136359,681.7950000032769,-0.05557013156865954 +136360,681.800000003277,-0.055570096700082144 +136361,681.8050000032771,-0.05557006183249172 +136362,681.8100000032772,-0.05557002696588734 +136363,681.8150000032773,-0.0555699921002681 +136364,681.8200000032774,-0.055569957235633086 +136365,681.8250000032775,-0.05556992237198139 +136366,681.8300000032776,-0.05556988750931211 +136367,681.8350000032777,-0.05556985264762433 +136368,681.8400000032779,-0.05556981778691714 +136369,681.845000003278,-0.055569782927189636 +136370,681.8500000032781,-0.0555697480684409 +136371,681.8550000032782,-0.05556971321067003 +136372,681.8600000032783,-0.05556967835387611 +136373,681.8650000032784,-0.055569643498058256 +136374,681.8700000032785,-0.05556960864321553 +136375,681.8750000032786,-0.05556957378934705 +136376,681.8800000032787,-0.055569538936451876 +136377,681.8850000032788,-0.05556950408452913 +136378,681.8900000032789,-0.05556946923357789 +136379,681.895000003279,-0.05556943438359727 +136380,681.9000000032792,-0.05556939953458634 +136381,681.9050000032793,-0.055569364686544206 +136382,681.9100000032794,-0.05556932983946996 +136383,681.9150000032795,-0.05556929499336269 +136384,681.9200000032796,-0.05556926014822149 +136385,681.9250000032797,-0.05556922530404546 +136386,681.9300000032798,-0.055569190460833695 +136387,681.9350000032799,-0.0555691556185853 +136388,681.94000000328,-0.05556912077729936 +136389,681.9450000032801,-0.055569085936974974 +136390,681.9500000032803,-0.055569051097611226 +136391,681.9550000032804,-0.05556901625920723 +136392,681.9600000032805,-0.05556898142176207 +136393,681.9650000032806,-0.05556894658527486 +136394,681.9700000032807,-0.055568911749744675 +136395,681.9750000032808,-0.05556887691517062 +136396,681.9800000032809,-0.05556884208155179 +136397,681.985000003281,-0.055568807248887284 +136398,681.9900000032811,-0.055568772417176206 +136399,681.9950000032812,-0.055568737586417644 +136400,682.0000000032813,-0.05556870275661071 +136401,682.0050000032815,-0.05556866792775449 +136402,682.0100000032816,-0.05556863309984809 +136403,682.0150000032817,-0.055568598272890596 +136404,682.0200000032818,-0.05556856344688113 +136405,682.0250000032819,-0.05556852862181877 +136406,682.030000003282,-0.05556849379770263 +136407,682.0350000032821,-0.0555684589745318 +136408,682.0400000032822,-0.05556842415230538 +136409,682.0450000032823,-0.055568389331022476 +136410,682.0500000032824,-0.055568354510682184 +136411,682.0550000032825,-0.055568319691283605 +136412,682.0600000032827,-0.055568284872825856 +136413,682.0650000032828,-0.055568250055308015 +136414,682.0700000032829,-0.05556821523872919 +136415,682.075000003283,-0.05556818042308851 +136416,682.0800000032831,-0.055568145608385036 +136417,682.0850000032832,-0.055568110794617896 +136418,682.0900000032833,-0.05556807598178618 +136419,682.0950000032834,-0.05556804116988898 +136420,682.1000000032835,-0.055568006358925434 +136421,682.1050000032836,-0.05556797154889462 +136422,682.1100000032837,-0.05556793673979564 +136423,682.1150000032839,-0.055567901931627604 +136424,682.120000003284,-0.055567867124389624 +136425,682.1250000032841,-0.05556783231808079 +136426,682.1300000032842,-0.05556779751270021 +136427,682.1350000032843,-0.05556776270824699 +136428,682.1400000032844,-0.055567727904720234 +136429,682.1450000032845,-0.05556769310211905 +136430,682.1500000032846,-0.055567658300442545 +136431,682.1550000032847,-0.055567623499689814 +136432,682.1600000032848,-0.05556758869985997 +136433,682.165000003285,-0.055567553900952124 +136434,682.170000003285,-0.05556751910296536 +136435,682.1750000032852,-0.05556748430589882 +136436,682.1800000032853,-0.055567449509751586 +136437,682.1850000032854,-0.05556741471452277 +136438,682.1900000032855,-0.055567379920211483 +136439,682.1950000032856,-0.05556734512681682 +136440,682.2000000032857,-0.055567310334337906 +136441,682.2050000032858,-0.05556727554277383 +136442,682.2100000032859,-0.05556724075212371 +136443,682.215000003286,-0.05556720596238665 +136444,682.2200000032861,-0.055567171173561775 +136445,682.2250000032863,-0.05556713638564818 +136446,682.2300000032864,-0.05556710159864498 +136447,682.2350000032865,-0.055567066812551275 +136448,682.2400000032866,-0.05556703202736617 +136449,682.2450000032867,-0.05556699724308878 +136450,682.2500000032868,-0.055566962459718226 +136451,682.2550000032869,-0.055566927677253616 +136452,682.260000003287,-0.05556689289569405 +136453,682.2650000032871,-0.05556685811503864 +136454,682.2700000032872,-0.0555668233352865 +136455,682.2750000032873,-0.055566788556436736 +136456,682.2800000032875,-0.055566753778488465 +136457,682.2850000032876,-0.055566719001440806 +136458,682.2900000032877,-0.055566684225292845 +136459,682.2950000032878,-0.05556664945004373 +136460,682.3000000032879,-0.05556661467569254 +136461,682.305000003288,-0.0555665799022384 +136462,682.3100000032881,-0.055566545129680435 +136463,682.3150000032882,-0.05556651035801774 +136464,682.3200000032883,-0.05556647558724943 +136465,682.3250000032884,-0.05556644081737463 +136466,682.3300000032885,-0.05556640604839244 +136467,682.3350000032887,-0.05556637128030198 +136468,682.3400000032888,-0.055566336513102374 +136469,682.3450000032889,-0.055566301746792716 +136470,682.350000003289,-0.05556626698137214 +136471,682.3550000032891,-0.055566232216839755 +136472,682.3600000032892,-0.05556619745319466 +136473,682.3650000032893,-0.05556616269043599 +136474,682.3700000032894,-0.05556612792856285 +136475,682.3750000032895,-0.055566093167574354 +136476,682.3800000032896,-0.05556605840746963 +136477,682.3850000032897,-0.05556602364824778 +136478,682.3900000032899,-0.05556598888990793 +136479,682.39500000329,-0.05556595413244918 +136480,682.4000000032901,-0.055565919375870666 +136481,682.4050000032902,-0.0555658846201715 +136482,682.4100000032903,-0.0555658498653508 +136483,682.4150000032904,-0.05556581511140767 +136484,682.4200000032905,-0.05556578035834125 +136485,682.4250000032906,-0.05556574560615064 +136486,682.4300000032907,-0.055565710854834964 +136487,682.4350000032908,-0.05556567610439335 +136488,682.440000003291,-0.05556564135482489 +136489,682.445000003291,-0.05556560660612873 +136490,682.4500000032912,-0.05556557185830397 +136491,682.4550000032913,-0.05556553711134974 +136492,682.4600000032914,-0.05556550236526516 +136493,682.4650000032915,-0.05556546762004936 +136494,682.4700000032916,-0.05556543287570145 +136495,682.4750000032917,-0.055565398132220535 +136496,682.4800000032918,-0.05556536338960575 +136497,682.4850000032919,-0.0555653286478562 +136498,682.490000003292,-0.055565293906971035 +136499,682.4950000032921,-0.05556525916694936 +136500,682.5000000032923,-0.0555652244277903 +136501,682.5050000032924,-0.05556518968949297 +136502,682.5100000032925,-0.05556515495205649 +136503,682.5150000032926,-0.055565120215479984 +136504,682.5200000032927,-0.05556508547976258 +136505,682.5250000032928,-0.05556505074490339 +136506,682.5300000032929,-0.055565016010901545 +136507,682.535000003293,-0.05556498127775618 +136508,682.5400000032931,-0.0555649465454664 +136509,682.5450000032932,-0.05556491181403134 +136510,682.5500000032933,-0.0555648770834501 +136511,682.5550000032935,-0.05556484235372183 +136512,682.5600000032936,-0.05556480762484564 +136513,682.5650000032937,-0.05556477289682066 +136514,682.5700000032938,-0.05556473816964601 +136515,682.5750000032939,-0.05556470344332081 +136516,682.580000003294,-0.0555646687178442 +136517,682.5850000032941,-0.0555646339932153 +136518,682.5900000032942,-0.05556459926943323 +136519,682.5950000032943,-0.05556456454649712 +136520,682.6000000032944,-0.05556452982440611 +136521,682.6050000032945,-0.05556449510315929 +136522,682.6100000032947,-0.05556446038275581 +136523,682.6150000032948,-0.0555644256631948 +136524,682.6200000032949,-0.05556439094447538 +136525,682.625000003295,-0.055564356226596674 +136526,682.6300000032951,-0.05556432150955781 +136527,682.6350000032952,-0.055564286793357925 +136528,682.6400000032953,-0.05556425207799613 +136529,682.6450000032954,-0.05556421736347157 +136530,682.6500000032955,-0.05556418264978336 +136531,682.6550000032956,-0.05556414793693064 +136532,682.6600000032957,-0.05556411322491253 +136533,682.6650000032959,-0.05556407851372817 +136534,682.670000003296,-0.055564043803376664 +136535,682.6750000032961,-0.05556400909385717 +136536,682.6800000032962,-0.055563974385168795 +136537,682.6850000032963,-0.05556393967731067 +136538,682.6900000032964,-0.05556390497028194 +136539,682.6950000032965,-0.05556387026408173 +136540,682.7000000032966,-0.055563835558709175 +136541,682.7050000032967,-0.05556380085416339 +136542,682.7100000032968,-0.05556376615044351 +136543,682.715000003297,-0.05556373144754868 +136544,682.7200000032971,-0.05556369674547803 +136545,682.7250000032972,-0.05556366204423067 +136546,682.7300000032973,-0.05556362734380575 +136547,682.7350000032974,-0.0555635926442024 +136548,682.7400000032975,-0.05556355794541975 +136549,682.7450000032976,-0.05556352324745693 +136550,682.7500000032977,-0.05556348855031307 +136551,682.7550000032978,-0.05556345385398731 +136552,682.7600000032979,-0.05556341915847878 +136553,682.765000003298,-0.05556338446378662 +136554,682.7700000032982,-0.055563349769909946 +136555,682.7750000032983,-0.05556331507684791 +136556,682.7800000032984,-0.055563280384599636 +136557,682.7850000032985,-0.055563245693164266 +136558,682.7900000032986,-0.05556321100254093 +136559,682.7950000032987,-0.05556317631272876 +136560,682.8000000032988,-0.05556314162372689 +136561,682.8050000032989,-0.05556310693553446 +136562,682.810000003299,-0.0555630722481506 +136563,682.8150000032991,-0.05556303756157446 +136564,682.8200000032992,-0.05556300287580516 +136565,682.8250000032994,-0.05556296819084183 +136566,682.8300000032995,-0.05556293350668362 +136567,682.8350000032996,-0.055562898823329675 +136568,682.8400000032997,-0.055562864140779114 +136569,682.8450000032998,-0.05556282945903108 +136570,682.8500000032999,-0.055562794778084706 +136571,682.8550000033,-0.05556276009793913 +136572,682.8600000033001,-0.0555627254185935 +136573,682.8650000033002,-0.055562690740046945 +136574,682.8700000033003,-0.0555626560622986 +136575,682.8750000033004,-0.055562621385347614 +136576,682.8800000033006,-0.05556258670919311 +136577,682.8850000033007,-0.05556255203383425 +136578,682.8900000033008,-0.05556251735927016 +136579,682.8950000033009,-0.05556248268549997 +136580,682.900000003301,-0.05556244801252284 +136581,682.9050000033011,-0.05556241334033789 +136582,682.9100000033012,-0.055562378668944264 +136583,682.9150000033013,-0.055562343998341104 +136584,682.9200000033014,-0.05556230932852755 +136585,682.9250000033015,-0.055562274659502746 +136586,682.9300000033016,-0.055562239991265826 +136587,682.9350000033018,-0.05556220532381595 +136588,682.9400000033019,-0.05556217065715222 +136589,682.945000003302,-0.05556213599127382 +136590,682.9500000033021,-0.05556210132617987 +136591,682.9550000033022,-0.05556206666186951 +136592,682.9600000033023,-0.05556203199834189 +136593,682.9650000033024,-0.055561997335596164 +136594,682.9700000033025,-0.05556196267363144 +136595,682.9750000033026,-0.05556192801244689 +136596,682.9800000033027,-0.05556189335204164 +136597,682.9850000033028,-0.055561858692414846 +136598,682.990000003303,-0.055561824033565646 +136599,682.9950000033031,-0.05556178937549318 +136600,683.0000000033032,-0.0555617547181966 +136601,683.0050000033033,-0.05556172006167505 +136602,683.0100000033034,-0.055561685405927666 +136603,683.0150000033035,-0.05556165075095359 +136604,683.0200000033036,-0.055561616096751976 +136605,683.0250000033037,-0.05556158144332197 +136606,683.0300000033038,-0.05556154679066272 +136607,683.0350000033039,-0.055561512138773354 +136608,683.040000003304,-0.055561477487653034 +136609,683.0450000033042,-0.055561442837300905 +136610,683.0500000033043,-0.0555614081877161 +136611,683.0550000033044,-0.05556137353889777 +136612,683.0600000033045,-0.055561338890845066 +136613,683.0650000033046,-0.05556130424355713 +136614,683.0700000033047,-0.05556126959703312 +136615,683.0750000033048,-0.05556123495127217 +136616,683.0800000033049,-0.055561200306273435 +136617,683.085000003305,-0.05556116566203606 +136618,683.0900000033051,-0.05556113101855921 +136619,683.0950000033052,-0.055561096375842015 +136620,683.1000000033054,-0.05556106173388362 +136621,683.1050000033055,-0.05556102709268318 +136622,683.1100000033056,-0.05556099245223983 +136623,683.1150000033057,-0.05556095781255274 +136624,683.1200000033058,-0.05556092317362105 +136625,683.1250000033059,-0.05556088853544391 +136626,683.130000003306,-0.05556085389802047 +136627,683.1350000033061,-0.05556081926134988 +136628,683.1400000033062,-0.055560784625431285 +136629,683.1450000033063,-0.05556074999026384 +136630,683.1500000033064,-0.05556071535584671 +136631,683.1550000033066,-0.05556068072217902 +136632,683.1600000033067,-0.05556064608925993 +136633,683.1650000033068,-0.0555606114570886 +136634,683.1700000033069,-0.05556057682566417 +136635,683.175000003307,-0.0555605421949858 +136636,683.1800000033071,-0.05556050756505263 +136637,683.1850000033072,-0.05556047293586383 +136638,683.1900000033073,-0.05556043830741854 +136639,683.1950000033074,-0.0555604036797159 +136640,683.2000000033075,-0.05556036905275509 +136641,683.2050000033076,-0.05556033442653525 +136642,683.2100000033078,-0.055560299801055535 +136643,683.2150000033079,-0.0555602651763151 +136644,683.220000003308,-0.055560230552313086 +136645,683.2250000033081,-0.055560195929048664 +136646,683.2300000033082,-0.055560161306520986 +136647,683.2350000033083,-0.0555601266847292 +136648,683.2400000033084,-0.055560092063672455 +136649,683.2450000033085,-0.05556005744334992 +136650,683.2500000033086,-0.055560022823760734 +136651,683.2550000033087,-0.05555998820490406 +136652,683.2600000033088,-0.05555995358677906 +136653,683.265000003309,-0.055559918969384885 +136654,683.2700000033091,-0.05555988435272069 +136655,683.2750000033092,-0.05555984973678563 +136656,683.2800000033093,-0.05555981512157885 +136657,683.2850000033094,-0.05555978050709953 +136658,683.2900000033095,-0.055559745893346814 +136659,683.2950000033096,-0.05555971128031986 +136660,683.3000000033097,-0.05555967666801782 +136661,683.3050000033098,-0.05555964205643986 +136662,683.3100000033099,-0.05555960744558513 +136663,683.31500000331,-0.0555595728354528 +136664,683.3200000033102,-0.05555953822604201 +136665,683.3250000033103,-0.05555950361735194 +136666,683.3300000033104,-0.05555946900938173 +136667,683.3350000033105,-0.05555943440213055 +136668,683.3400000033106,-0.05555939979559754 +136669,683.3450000033107,-0.055559365189781884 +136670,683.3500000033108,-0.05555933058468273 +136671,683.3550000033109,-0.055559295980299225 +136672,683.360000003311,-0.05555926137663056 +136673,683.3650000033111,-0.05555922677367588 +136674,683.3700000033112,-0.05555919217143433 +136675,683.3750000033114,-0.055559157569905086 +136676,683.3800000033115,-0.0555591229690873 +136677,683.3850000033116,-0.055559088368980145 +136678,683.3900000033117,-0.05555905376958278 +136679,683.3950000033118,-0.05555901917089435 +136680,683.4000000033119,-0.05555898457291403 +136681,683.405000003312,-0.05555894997564099 +136682,683.4100000033121,-0.055558915379074376 +136683,683.4150000033122,-0.05555888078321335 +136684,683.4200000033123,-0.05555884618805709 +136685,683.4250000033124,-0.05555881159360475 +136686,683.4300000033126,-0.05555877699985548 +136687,683.4350000033127,-0.05555874240680846 +136688,683.4400000033128,-0.055558707814462864 +136689,683.4450000033129,-0.05555867322281783 +136690,683.450000003313,-0.05555863863187254 +136691,683.4550000033131,-0.05555860404162614 +136692,683.4600000033132,-0.05555856945207781 +136693,683.4650000033133,-0.0555585348632267 +136694,683.4700000033134,-0.055558500275072 +136695,683.4750000033135,-0.055558465687612836 +136696,683.4800000033136,-0.05555843110084841 +136697,683.4850000033138,-0.05555839651477787 +136698,683.4900000033139,-0.05555836192940038 +136699,683.495000003314,-0.05555832734471511 +136700,683.5000000033141,-0.05555829276072123 +136701,683.5050000033142,-0.0555582581774179 +136702,683.5100000033143,-0.05555822359480429 +136703,683.5150000033144,-0.055558189012879566 +136704,683.5200000033145,-0.055558154431642894 +136705,683.5250000033146,-0.055558119851093435 +136706,683.5300000033147,-0.05555808527123037 +136707,683.5350000033148,-0.05555805069205286 +136708,683.540000003315,-0.05555801611356007 +136709,683.5450000033151,-0.05555798153575117 +136710,683.5500000033152,-0.05555794695862532 +136711,683.5550000033153,-0.0555579123821817 +136712,683.5600000033154,-0.05555787780641947 +136713,683.5650000033155,-0.05555784323133781 +136714,683.5700000033156,-0.055557808656935874 +136715,683.5750000033157,-0.05555777408321285 +136716,683.5800000033158,-0.055557739510167896 +136717,683.5850000033159,-0.055557704937800184 +136718,683.590000003316,-0.05555767036610888 +136719,683.5950000033162,-0.05555763579509315 +136720,683.6000000033163,-0.05555760122475218 +136721,683.6050000033164,-0.05555756665508513 +136722,683.6100000033165,-0.05555753208609116 +136723,683.6150000033166,-0.055557497517769464 +136724,683.6200000033167,-0.0555574629501192 +136725,683.6250000033168,-0.05555742838313954 +136726,683.6300000033169,-0.05555739381682966 +136727,683.635000003317,-0.05555735925118873 +136728,683.6400000033171,-0.05555732468621592 +136729,683.6450000033173,-0.0555572901219104 +136730,683.6500000033174,-0.05555725555827135 +136731,683.6550000033175,-0.05555722099529794 +136732,683.6600000033176,-0.05555718643298934 +136733,683.6650000033177,-0.05555715187134473 +136734,683.6700000033178,-0.055557117310363266 +136735,683.6750000033179,-0.055557082750044146 +136736,683.680000003318,-0.055557048190386524 +136737,683.6850000033181,-0.05555701363138958 +136738,683.6900000033182,-0.05555697907305249 +136739,683.6950000033183,-0.05555694451537443 +136740,683.7000000033185,-0.05555690995835457 +136741,683.7050000033186,-0.05555687540199209 +136742,683.7100000033187,-0.05555684084628616 +136743,683.7150000033188,-0.05555680629123597 +136744,683.7200000033189,-0.05555677173684068 +136745,683.725000003319,-0.05555673718309946 +136746,683.7300000033191,-0.0555567026300115 +136747,683.7350000033192,-0.05555666807757598 +136748,683.7400000033193,-0.055556633525792064 +136749,683.7450000033194,-0.05555659897465894 +136750,683.7500000033195,-0.055556564424175774 +136751,683.7550000033197,-0.05555652987434175 +136752,683.7600000033198,-0.05555649532515604 +136753,683.7650000033199,-0.055556460776617814 +136754,683.77000000332,-0.055556426228726266 +136755,683.7750000033201,-0.05555639168148056 +136756,683.7800000033202,-0.05555635713487989 +136757,683.7850000033203,-0.05555632258892342 +136758,683.7900000033204,-0.05555628804361034 +136759,683.7950000033205,-0.05555625349893981 +136760,683.8000000033206,-0.05555621895491103 +136761,683.8050000033207,-0.05555618441152318 +136762,683.8100000033209,-0.05555614986877542 +136763,683.815000003321,-0.05555611532666694 +136764,683.8200000033211,-0.05555608078519693 +136765,683.8250000033212,-0.055556046244364554 +136766,683.8300000033213,-0.055556011704168996 +136767,683.8350000033214,-0.055555977164609444 +136768,683.8400000033215,-0.05555594262568508 +136769,683.8450000033216,-0.05555590808739507 +136770,683.8500000033217,-0.05555587354973861 +136771,683.8550000033218,-0.055555839012714874 +136772,683.8600000033219,-0.05555580447632304 +136773,683.865000003322,-0.055555769940562286 +136774,683.8700000033222,-0.05555573540543182 +136775,683.8750000033223,-0.055555700870930806 +136776,683.8800000033224,-0.055555666337058426 +136777,683.8850000033225,-0.05555563180381387 +136778,683.8900000033226,-0.05555559727119631 +136779,683.8950000033227,-0.05555556273920493 +136780,683.9000000033228,-0.05555552820783892 +136781,683.9050000033229,-0.05555549367709746 +136782,683.910000003323,-0.05555545914697973 +136783,683.9150000033231,-0.055555424617484916 +136784,683.9200000033233,-0.05555539008861222 +136785,683.9250000033234,-0.05555535556036079 +136786,683.9300000033235,-0.05555532103272985 +136787,683.9350000033236,-0.055555286505718574 +136788,683.9400000033237,-0.055555251979326134 +136789,683.9450000033238,-0.05555521745355172 +136790,683.9500000033239,-0.055555182928394516 +136791,683.955000003324,-0.055555148403853706 +136792,683.9600000033241,-0.05555511387992849 +136793,683.9650000033242,-0.05555507935661804 +136794,683.9700000033243,-0.05555504483392154 +136795,683.9750000033245,-0.05555501031183819 +136796,683.9800000033246,-0.05555497579036717 +136797,683.9850000033247,-0.05555494126950767 +136798,683.9900000033248,-0.05555490674925888 +136799,683.9950000033249,-0.055554872229619974 +136800,684.000000003325,-0.05555483771059015 +136801,684.0050000033251,-0.05555480319216859 +136802,684.0100000033252,-0.05555476867435449 +136803,684.0150000033253,-0.05555473415714704 +136804,684.0200000033254,-0.05555469964054541 +136805,684.0250000033255,-0.055554665124548805 +136806,684.0300000033257,-0.05555463060915641 +136807,684.0350000033258,-0.055554596094367414 +136808,684.0400000033259,-0.055554561580181 +136809,684.045000003326,-0.05555452706659637 +136810,684.0500000033261,-0.05555449255361271 +136811,684.0550000033262,-0.055554458041229195 +136812,684.0600000033263,-0.05555442352944505 +136813,684.0650000033264,-0.05555438901825943 +136814,684.0700000033265,-0.05555435450767154 +136815,684.0750000033266,-0.05555431999768057 +136816,684.0800000033267,-0.0555542854882857 +136817,684.0850000033269,-0.055554250979486144 +136818,684.090000003327,-0.05555421647128108 +136819,684.0950000033271,-0.05555418196366971 +136820,684.1000000033272,-0.05555414745665121 +136821,684.1050000033273,-0.05555411295022478 +136822,684.1100000033274,-0.0555540784443896 +136823,684.1150000033275,-0.05555404393914489 +136824,684.1200000033276,-0.055554009434489814 +136825,684.1250000033277,-0.05555397493042358 +136826,684.1300000033278,-0.05555394042694539 +136827,684.135000003328,-0.05555390592405442 +136828,684.140000003328,-0.05555387142174986 +136829,684.1450000033282,-0.05555383692003092 +136830,684.1500000033283,-0.05555380241889679 +136831,684.1550000033284,-0.055553767918346666 +136832,684.1600000033285,-0.055553733418379735 +136833,684.1650000033286,-0.0555536989189952 +136834,684.1700000033287,-0.05555366442019225 +136835,684.1750000033288,-0.05555362992197007 +136836,684.1800000033289,-0.05555359542432788 +136837,684.185000003329,-0.05555356092726486 +136838,684.1900000033291,-0.055553526430780195 +136839,684.1950000033293,-0.055553491934873106 +136840,684.2000000033294,-0.055553457439542785 +136841,684.2050000033295,-0.05555342294478841 +136842,684.2100000033296,-0.05555338845060919 +136843,684.2150000033297,-0.05555335395700432 +136844,684.2200000033298,-0.055553319463972996 +136845,684.2250000033299,-0.05555328497151442 +136846,684.23000000333,-0.05555325047962778 +136847,684.2350000033301,-0.05555321598831229 +136848,684.2400000033302,-0.055553181497567126 +136849,684.2450000033303,-0.0555531470073915 +136850,684.2500000033305,-0.055553112517784616 +136851,684.2550000033306,-0.05555307802874566 +136852,684.2600000033307,-0.055553043540273836 +136853,684.2650000033308,-0.05555300905236834 +136854,684.2700000033309,-0.05555297456502836 +136855,684.275000003331,-0.05555294007825313 +136856,684.2800000033311,-0.055552905592041825 +136857,684.2850000033312,-0.05555287110639364 +136858,684.2900000033313,-0.05555283662130778 +136859,684.2950000033314,-0.05555280213678346 +136860,684.3000000033315,-0.05555276765281986 +136861,684.3050000033317,-0.05555273316941619 +136862,684.3100000033318,-0.055552698686571644 +136863,684.3150000033319,-0.05555266420428544 +136864,684.320000003332,-0.05555262972255676 +136865,684.3250000033321,-0.055552595241384825 +136866,684.3300000033322,-0.05555256076076882 +136867,684.3350000033323,-0.05555252628070794 +136868,684.3400000033324,-0.05555249180120141 +136869,684.3450000033325,-0.05555245732224843 +136870,684.3500000033326,-0.055552422843848176 +136871,684.3550000033327,-0.05555238836599988 +136872,684.3600000033329,-0.05555235388870273 +136873,684.365000003333,-0.05555231941195594 +136874,684.3700000033331,-0.05555228493575869 +136875,684.3750000033332,-0.05555225046011022 +136876,684.3800000033333,-0.05555221598500971 +136877,684.3850000033334,-0.055552181510456364 +136878,684.3900000033335,-0.0555521470364494 +136879,684.3950000033336,-0.055552112562988004 +136880,684.4000000033337,-0.05555207809007139 +136881,684.4050000033338,-0.055552043617698756 +136882,684.410000003334,-0.05555200914586932 +136883,684.4150000033341,-0.05555197467458228 +136884,684.4200000033342,-0.05555194020383685 +136885,684.4250000033343,-0.05555190573363222 +136886,684.4300000033344,-0.055551871263967614 +136887,684.4350000033345,-0.05555183679484222 +136888,684.4400000033346,-0.05555180232625524 +136889,684.4450000033347,-0.055551767858205904 +136890,684.4500000033348,-0.055551733390693414 +136891,684.4550000033349,-0.05555169892371697 +136892,684.460000003335,-0.05555166445727578 +136893,684.4650000033351,-0.05555162999136904 +136894,684.4700000033353,-0.05555159552599598 +136895,684.4750000033354,-0.05555156106115578 +136896,684.4800000033355,-0.05555152659684768 +136897,684.4850000033356,-0.05555149213307087 +136898,684.4900000033357,-0.055551457669824555 +136899,684.4950000033358,-0.05555142320710796 +136900,684.5000000033359,-0.05555138874492028 +136901,684.505000003336,-0.055551354283260725 +136902,684.5100000033361,-0.055551319822128506 +136903,684.5150000033362,-0.05555128536152283 +136904,684.5200000033363,-0.05555125090144292 +136905,684.5250000033365,-0.05555121644188798 +136906,684.5300000033366,-0.0555511819828572 +136907,684.5350000033367,-0.055551147524349816 +136908,684.5400000033368,-0.05555111306636504 +136909,684.5450000033369,-0.055551078608902064 +136910,684.550000003337,-0.0555510441519601 +136911,684.5550000033371,-0.05555100969553837 +136912,684.5600000033372,-0.05555097523963609 +136913,684.5650000033373,-0.05555094078425246 +136914,684.5700000033374,-0.055550906329386696 +136915,684.5750000033375,-0.055550871875038 +136916,684.5800000033377,-0.055550837421205604 +136917,684.5850000033378,-0.0555508029678887 +136918,684.5900000033379,-0.055550768515086515 +136919,684.595000003338,-0.05555073406279826 +136920,684.6000000033381,-0.05555069961102314 +136921,684.6050000033382,-0.05555066515976037 +136922,684.6100000033383,-0.05555063070900917 +136923,684.6150000033384,-0.055550596258768764 +136924,684.6200000033385,-0.05555056180903834 +136925,684.6250000033386,-0.05555052735981714 +136926,684.6300000033388,-0.05555049291110436 +136927,684.6350000033389,-0.0555504584628992 +136928,684.640000003339,-0.055550424015200904 +136929,684.6450000033391,-0.055550389568008667 +136930,684.6500000033392,-0.05555035512132173 +136931,684.6550000033393,-0.05555032067513928 +136932,684.6600000033394,-0.05555028622946054 +136933,684.6650000033395,-0.05555025178428474 +136934,684.6700000033396,-0.05555021733961108 +136935,684.6750000033397,-0.05555018289543878 +136936,684.6800000033398,-0.05555014845176706 +136937,684.68500000334,-0.05555011400859513 +136938,684.6900000033401,-0.05555007956592222 +136939,684.6950000033402,-0.05555004512374754 +136940,684.7000000033403,-0.05555001068207029 +136941,684.7050000033404,-0.05554997624088972 +136942,684.7100000033405,-0.05554994180020502 +136943,684.7150000033406,-0.05554990736001542 +136944,684.7200000033407,-0.05554987292032014 +136945,684.7250000033408,-0.0555498384811184 +136946,684.7300000033409,-0.055549804042409404 +136947,684.735000003341,-0.05554976960419239 +136948,684.7400000033412,-0.055549735166466566 +136949,684.7450000033413,-0.05554970072923115 +136950,684.7500000033414,-0.05554966629248536 +136951,684.7550000033415,-0.05554963185622842 +136952,684.7600000033416,-0.05554959742045955 +136953,684.7650000033417,-0.05554956298517797 +136954,684.7700000033418,-0.05554952855038291 +136955,684.7750000033419,-0.055549494116073565 +136956,684.780000003342,-0.05554945968224916 +136957,684.7850000033421,-0.05554942524890895 +136958,684.7900000033422,-0.055549390816052126 +136959,684.7950000033424,-0.0555493563836779 +136960,684.8000000033425,-0.05554932195178553 +136961,684.8050000033426,-0.05554928752037421 +136962,684.8100000033427,-0.055549253089443154 +136963,684.8150000033428,-0.05554921865899161 +136964,684.8200000033429,-0.05554918422901878 +136965,684.825000003343,-0.055549149799523904 +136966,684.8300000033431,-0.055549115370506184 +136967,684.8350000033432,-0.05554908094196486 +136968,684.8400000033433,-0.05554904651389916 +136969,684.8450000033434,-0.05554901208630828 +136970,684.8500000033436,-0.055548977659191465 +136971,684.8550000033437,-0.05554894323254794 +136972,684.8600000033438,-0.05554890880637692 +136973,684.8650000033439,-0.05554887438067763 +136974,684.870000003344,-0.0555488399554493 +136975,684.8750000033441,-0.055548805530691144 +136976,684.8800000033442,-0.0555487711064024 +136977,684.8850000033443,-0.05554873668258229 +136978,684.8900000033444,-0.055548702259230025 +136979,684.8950000033445,-0.05554866783634485 +136980,684.9000000033446,-0.05554863341392597 +136981,684.9050000033448,-0.05554859899197263 +136982,684.9100000033449,-0.05554856457048405 +136983,684.915000003345,-0.05554853014945945 +136984,684.9200000033451,-0.05554849572889806 +136985,684.9250000033452,-0.055548461308799105 +136986,684.9300000033453,-0.05554842688916182 +136987,684.9350000033454,-0.055548392469985414 +136988,684.9400000033455,-0.055548358051269134 +136989,684.9450000033456,-0.0555483236330122 +136990,684.9500000033457,-0.05554828921521384 +136991,684.9550000033458,-0.05554825479787329 +136992,684.960000003346,-0.05554822038098976 +136993,684.9650000033461,-0.05554818596456249 +136994,684.9700000033462,-0.05554815154859071 +136995,684.9750000033463,-0.05554811713307363 +136996,684.9800000033464,-0.055548082718010504 +136997,684.9850000033465,-0.05554804830340055 +136998,684.9900000033466,-0.055548013889243 +136999,684.9950000033467,-0.05554797947553708 +137000,685.0000000033468,-0.055547945062282014 +137001,685.0050000033469,-0.055547910649477034 +137002,685.010000003347,-0.05554787623712139 +137003,685.0150000033472,-0.05554784182521429 +137004,685.0200000033473,-0.055547807413754965 +137005,685.0250000033474,-0.05554777300274266 +137006,685.0300000033475,-0.0555477385921766 +137007,685.0350000033476,-0.05554770418205601 +137008,685.0400000033477,-0.05554766977238013 +137009,685.0450000033478,-0.05554763536314819 +137010,685.0500000033479,-0.055547600954359413 +137011,685.055000003348,-0.05554756654601303 +137012,685.0600000033481,-0.0555475321381083 +137013,685.0650000033482,-0.05554749773064442 +137014,685.0700000033484,-0.05554746332362065 +137015,685.0750000033485,-0.0555474289170362 +137016,685.0800000033486,-0.055547394510890316 +137017,685.0850000033487,-0.05554736010518222 +137018,685.0900000033488,-0.05554732569991117 +137019,685.0950000033489,-0.05554729129507638 +137020,685.100000003349,-0.05554725689067708 +137021,685.1050000033491,-0.05554722248671252 +137022,685.1100000033492,-0.055547188083181924 +137023,685.1150000033493,-0.05554715368008452 +137024,685.1200000033494,-0.05554711927741956 +137025,685.1250000033496,-0.05554708487518626 +137026,685.1300000033497,-0.055547050473383874 +137027,685.1350000033498,-0.05554701607201163 +137028,685.1400000033499,-0.055546981671068765 +137029,685.14500000335,-0.0555469472705545 +137030,685.1500000033501,-0.055546912870468076 +137031,685.1550000033502,-0.055546878470808754 +137032,685.1600000033503,-0.055546844071575736 +137033,685.1650000033504,-0.055546809672768274 +137034,685.1700000033505,-0.05554677527438561 +137035,685.1750000033506,-0.055546740876426984 +137036,685.1800000033508,-0.05554670647889161 +137037,685.1850000033509,-0.055546672081778756 +137038,685.190000003351,-0.055546637685087635 +137039,685.1950000033511,-0.0555466032888175 +137040,685.2000000033512,-0.05554656889296757 +137041,685.2050000033513,-0.055546534497537096 +137042,685.2100000033514,-0.05554650010252531 +137043,685.2150000033515,-0.05554646570793146 +137044,685.2200000033516,-0.05554643131375478 +137045,685.2250000033517,-0.05554639691999451 +137046,685.2300000033518,-0.055546362526649885 +137047,685.235000003352,-0.05554632813372015 +137048,685.2400000033521,-0.05554629374120455 +137049,685.2450000033522,-0.05554625934910232 +137050,685.2500000033523,-0.05554622495741269 +137051,685.2550000033524,-0.05554619056613491 +137052,685.2600000033525,-0.05554615617526821 +137053,685.2650000033526,-0.055546121784811844 +137054,685.2700000033527,-0.05554608739476504 +137055,685.2750000033528,-0.05554605300512705 +137056,685.2800000033529,-0.055546018615897114 +137057,685.285000003353,-0.05554598422707447 +137058,685.2900000033532,-0.05554594983865836 +137059,685.2950000033533,-0.05554591545064803 +137060,685.3000000033534,-0.0555458810630427 +137061,685.3050000033535,-0.05554584667584165 +137062,685.3100000033536,-0.05554581228904408 +137063,685.3150000033537,-0.055545777902649265 +137064,685.3200000033538,-0.05554574351665643 +137065,685.3250000033539,-0.05554570913106484 +137066,685.330000003354,-0.05554567474587371 +137067,685.3350000033541,-0.05554564036108231 +137068,685.3400000033542,-0.05554560597668986 +137069,685.3450000033544,-0.05554557159269561 +137070,685.3500000033545,-0.055545537209098814 +137071,685.3550000033546,-0.05554550282589871 +137072,685.3600000033547,-0.05554546844309455 +137073,685.3650000033548,-0.055545434060685565 +137074,685.3700000033549,-0.055545399678671004 +137075,685.375000003355,-0.05554536529705013 +137076,685.3800000033551,-0.055545330915822165 +137077,685.3850000033552,-0.05554529653498636 +137078,685.3900000033553,-0.05554526215454196 +137079,685.3950000033554,-0.05554522777448821 +137080,685.4000000033556,-0.05554519339482437 +137081,685.4050000033557,-0.055545159015549676 +137082,685.4100000033558,-0.05554512463666336 +137083,685.4150000033559,-0.05554509025816469 +137084,685.420000003356,-0.055545055880052915 +137085,685.4250000033561,-0.05554502150232726 +137086,685.4300000033562,-0.05554498712498699 +137087,685.4350000033563,-0.055544952748031354 +137088,685.4400000033564,-0.05554491837145958 +137089,685.4450000033565,-0.055544883995270924 +137090,685.4500000033566,-0.05554484961946465 +137091,685.4550000033568,-0.055544815244039994 +137092,685.4600000033569,-0.05554478086899622 +137093,685.465000003357,-0.055544746494332546 +137094,685.4700000033571,-0.05554471212004823 +137095,685.4750000033572,-0.055544677746142544 +137096,685.4800000033573,-0.055544643372614715 +137097,685.4850000033574,-0.05554460899946401 +137098,685.4900000033575,-0.05554457462668965 +137099,685.4950000033576,-0.05554454025429091 +137100,685.5000000033577,-0.05554450588226703 +137101,685.5050000033578,-0.05554447151061727 +137102,685.510000003358,-0.055544437139340874 +137103,685.5150000033581,-0.055544402768437084 +137104,685.5200000033582,-0.055544368397905164 +137105,685.5250000033583,-0.055544334027744356 +137106,685.5300000033584,-0.05554429965795391 +137107,685.5350000033585,-0.055544265288533096 +137108,685.5400000033586,-0.05554423091948115 +137109,685.5450000033587,-0.05554419655079732 +137110,685.5500000033588,-0.05554416218248088 +137111,685.5550000033589,-0.05554412781453105 +137112,685.560000003359,-0.0555440934469471 +137113,685.5650000033592,-0.055544059079728286 +137114,685.5700000033593,-0.05554402471287385 +137115,685.5750000033594,-0.055543990346383056 +137116,685.5800000033595,-0.05554395598025515 +137117,685.5850000033596,-0.05554392161448939 +137118,685.5900000033597,-0.05554388724908503 +137119,685.5950000033598,-0.05554385288404133 +137120,685.6000000033599,-0.05554381851935753 +137121,685.60500000336,-0.055543784155032895 +137122,685.6100000033601,-0.055543749791066674 +137123,685.6150000033603,-0.055543715427458125 +137124,685.6200000033604,-0.0555436810642065 +137125,685.6250000033605,-0.055543646701311046 +137126,685.6300000033606,-0.05554361233877103 +137127,685.6350000033607,-0.05554357797658571 +137128,685.6400000033608,-0.05554354361475433 +137129,685.6450000033609,-0.055543509253276155 +137130,685.650000003361,-0.055543474892150446 +137131,685.6550000033611,-0.055543440531376435 +137132,685.6600000033612,-0.05554340617095341 +137133,685.6650000033613,-0.0555433718108806 +137134,685.6700000033615,-0.05554333745115728 +137135,685.6750000033616,-0.0555433030917827 +137136,685.6800000033617,-0.05554326873275613 +137137,685.6850000033618,-0.05554323437407682 +137138,685.6900000033619,-0.055543200015744004 +137139,685.695000003362,-0.05554316565775697 +137140,685.7000000033621,-0.05554313130011496 +137141,685.7050000033622,-0.05554309694281726 +137142,685.7100000033623,-0.0555430625858631 +137143,685.7150000033624,-0.05554302822925173 +137144,685.7200000033625,-0.055542993872982435 +137145,685.7250000033627,-0.05554295951705447 +137146,685.7300000033628,-0.05554292516146708 +137147,685.7350000033629,-0.05554289080621953 +137148,685.740000003363,-0.055542856451311094 +137149,685.7450000033631,-0.055542822096741024 +137150,685.7500000033632,-0.055542787742508565 +137151,685.7550000033633,-0.055542753388612996 +137152,685.7600000033634,-0.05554271903505357 +137153,685.7650000033635,-0.055542684681829546 +137154,685.7700000033636,-0.05554265032894019 +137155,685.7750000033637,-0.055542615976384754 +137156,685.7800000033639,-0.05554258162416251 +137157,685.785000003364,-0.055542547272272716 +137158,685.7900000033641,-0.05554251292071463 +137159,685.7950000033642,-0.05554247856948751 +137160,685.8000000033643,-0.055542444218590635 +137161,685.8050000033644,-0.055542409868023244 +137162,685.8100000033645,-0.05554237551778462 +137163,685.8150000033646,-0.055542341167874015 +137164,685.8200000033647,-0.0555423068182907 +137165,685.8250000033648,-0.05554227246903393 +137166,685.830000003365,-0.055542238120102984 +137167,685.835000003365,-0.0555422037714971 +137168,685.8400000033652,-0.055542169423215555 +137169,685.8450000033653,-0.05554213507525762 +137170,685.8500000033654,-0.055542100727622556 +137171,685.8550000033655,-0.055542066380309604 +137172,685.8600000033656,-0.05554203203331807 +137173,685.8650000033657,-0.05554199768664718 +137174,685.8700000033658,-0.05554196334029622 +137175,685.8750000033659,-0.05554192899426445 +137176,685.880000003366,-0.05554189464855114 +137177,685.8850000033661,-0.05554186030315555 +137178,685.8900000033663,-0.05554182595807694 +137179,685.8950000033664,-0.05554179161331459 +137180,685.9000000033665,-0.05554175726886776 +137181,685.9050000033666,-0.055541722924735706 +137182,685.9100000033667,-0.05554168858091771 +137183,685.9150000033668,-0.05554165423741303 +137184,685.9200000033669,-0.05554161989422093 +137185,685.925000003367,-0.05554158555134069 +137186,685.9300000033671,-0.055541551208771564 +137187,685.9350000033672,-0.055541516866512826 +137188,685.9400000033673,-0.05554148252456375 +137189,685.9450000033675,-0.055541448182923586 +137190,685.9500000033676,-0.05554141384159162 +137191,685.9550000033677,-0.055541379500567103 +137192,685.9600000033678,-0.05554134515984931 +137193,685.9650000033679,-0.05554131081943753 +137194,685.970000003368,-0.055541276479331006 +137195,685.9750000033681,-0.05554124213952902 +137196,685.9800000033682,-0.055541207800030835 +137197,685.9850000033683,-0.05554117346083572 +137198,685.9900000033684,-0.05554113912194295 +137199,685.9950000033685,-0.05554110478335179 +137200,686.0000000033687,-0.055541070445061506 +137201,686.0050000033688,-0.05554103610707138 +137202,686.0100000033689,-0.05554100176938067 +137203,686.015000003369,-0.055540967431988664 +137204,686.0200000033691,-0.055540933094894614 +137205,686.0250000033692,-0.05554089875809781 +137206,686.0300000033693,-0.0555408644215975 +137207,686.0350000033694,-0.055540830085392984 +137208,686.0400000033695,-0.05554079574948351 +137209,686.0450000033696,-0.05554076141386836 +137210,686.0500000033697,-0.05554072707854679 +137211,686.0550000033699,-0.0555406927435181 +137212,686.06000000337,-0.05554065840878154 +137213,686.0650000033701,-0.055540624074336395 +137214,686.0700000033702,-0.05554058974018193 +137215,686.0750000033703,-0.05554055540631742 +137216,686.0800000033704,-0.055540521072742155 +137217,686.0850000033705,-0.05554048673945538 +137218,686.0900000033706,-0.05554045240645638 +137219,686.0950000033707,-0.055540418073744435 +137220,686.1000000033708,-0.055540383741318804 +137221,686.105000003371,-0.05554034940917879 +137222,686.110000003371,-0.05554031507732364 +137223,686.1150000033712,-0.05554028074575264 +137224,686.1200000033713,-0.05554024641446506 +137225,686.1250000033714,-0.055540212083460175 +137226,686.1300000033715,-0.055540177752737264 +137227,686.1350000033716,-0.0555401434222956 +137228,686.1400000033717,-0.05554010909213446 +137229,686.1450000033718,-0.05554007476225312 +137230,686.1500000033719,-0.055540040432650845 +137231,686.155000003372,-0.05554000610332693 +137232,686.1600000033721,-0.05553997177428065 +137233,686.1650000033723,-0.05553993744551126 +137234,686.1700000033724,-0.05553990311701806 +137235,686.1750000033725,-0.05553986878880031 +137236,686.1800000033726,-0.05553983446085729 +137237,686.1850000033727,-0.055539800133188294 +137238,686.1900000033728,-0.05553976580579258 +137239,686.1950000033729,-0.05553973147866944 +137240,686.200000003373,-0.05553969715181815 +137241,686.2050000033731,-0.055539662825237986 +137242,686.2100000033732,-0.05553962849892821 +137243,686.2150000033733,-0.05553959417288812 +137244,686.2200000033735,-0.05553955984711699 +137245,686.2250000033736,-0.0555395255216141 +137246,686.2300000033737,-0.05553949119637872 +137247,686.2350000033738,-0.05553945687141014 +137248,686.2400000033739,-0.05553942254670764 +137249,686.245000003374,-0.05553938822227049 +137250,686.2500000033741,-0.05553935389809797 +137251,686.2550000033742,-0.05553931957418938 +137252,686.2600000033743,-0.05553928525054398 +137253,686.2650000033744,-0.05553925092716106 +137254,686.2700000033745,-0.0555392166040399 +137255,686.2750000033747,-0.055539182281179766 +137256,686.2800000033748,-0.05553914795857995 +137257,686.2850000033749,-0.055539113636239736 +137258,686.290000003375,-0.0555390793141584 +137259,686.2950000033751,-0.05553904499233524 +137260,686.3000000033752,-0.055539010670769516 +137261,686.3050000033753,-0.05553897634946053 +137262,686.3100000033754,-0.055538942028407534 +137263,686.3150000033755,-0.05553890770760984 +137264,686.3200000033756,-0.055538873387066715 +137265,686.3250000033757,-0.05553883906677746 +137266,686.3300000033759,-0.05553880474674133 +137267,686.335000003376,-0.055538770426957644 +137268,686.3400000033761,-0.05553873610742565 +137269,686.3450000033762,-0.05553870178814465 +137270,686.3500000033763,-0.05553866746911392 +137271,686.3550000033764,-0.05553863315033274 +137272,686.3600000033765,-0.055538598831800415 +137273,686.3650000033766,-0.05553856451351621 +137274,686.3700000033767,-0.05553853019547941 +137275,686.3750000033768,-0.05553849587768932 +137276,686.380000003377,-0.0555384615601452 +137277,686.3850000033771,-0.05553842724284634 +137278,686.3900000033772,-0.05553839292579204 +137279,686.3950000033773,-0.05553835860898158 +137280,686.4000000033774,-0.055538324292414246 +137281,686.4050000033775,-0.05553828997608932 +137282,686.4100000033776,-0.05553825566000607 +137283,686.4150000033777,-0.055538221344163814 +137284,686.4200000033778,-0.05553818702856182 +137285,686.4250000033779,-0.05553815271319938 +137286,686.430000003378,-0.055538118398075785 +137287,686.4350000033781,-0.05553808408319032 +137288,686.4400000033783,-0.055538049768542264 +137289,686.4450000033784,-0.055538015454130917 +137290,686.4500000033785,-0.05553798113995556 +137291,686.4550000033786,-0.05553794682601548 +137292,686.4600000033787,-0.055537912512309974 +137293,686.4650000033788,-0.05553787819883831 +137294,686.4700000033789,-0.0555378438855998 +137295,686.475000003379,-0.055537809572593716 +137296,686.4800000033791,-0.05553777525981936 +137297,686.4850000033792,-0.055537740947275996 +137298,686.4900000033794,-0.05553770663496293 +137299,686.4950000033795,-0.05553767232287946 +137300,686.5000000033796,-0.05553763801102487 +137301,686.5050000033797,-0.05553760369939845 +137302,686.5100000033798,-0.05553756938799948 +137303,686.5150000033799,-0.05553753507682727 +137304,686.52000000338,-0.05553750076588109 +137305,686.5250000033801,-0.05553746645516024 +137306,686.5300000033802,-0.05553743214466401 +137307,686.5350000033803,-0.05553739783439168 +137308,686.5400000033804,-0.05553736352434257 +137309,686.5450000033806,-0.055537329214515936 +137310,686.5500000033807,-0.05553729490491109 +137311,686.5550000033808,-0.05553726059552733 +137312,686.5600000033809,-0.05553722628636392 +137313,686.565000003381,-0.05553719197742018 +137314,686.5700000033811,-0.05553715766869539 +137315,686.5750000033812,-0.055537123360188845 +137316,686.5800000033813,-0.05553708905189984 +137317,686.5850000033814,-0.05553705474382767 +137318,686.5900000033815,-0.05553702043597161 +137319,686.5950000033816,-0.05553698612833098 +137320,686.6000000033818,-0.055536951820905046 +137321,686.6050000033819,-0.05553691751369313 +137322,686.610000003382,-0.0555368832066945 +137323,686.6150000033821,-0.05553684889990847 +137324,686.6200000033822,-0.055536814593334316 +137325,686.6250000033823,-0.05553678028697135 +137326,686.6300000033824,-0.05553674598081886 +137327,686.6350000033825,-0.055536711674876144 +137328,686.6400000033826,-0.05553667736914248 +137329,686.6450000033827,-0.05553664306361719 +137330,686.6500000033828,-0.05553660875829955 +137331,686.655000003383,-0.05553657445318887 +137332,686.6600000033831,-0.055536540148284415 +137333,686.6650000033832,-0.055536505843585514 +137334,686.6700000033833,-0.05553647153909145 +137335,686.6750000033834,-0.055536437234801526 +137336,686.6800000033835,-0.05553640293071503 +137337,686.6850000033836,-0.05553636862683126 +137338,686.6900000033837,-0.05553633432314952 +137339,686.6950000033838,-0.0555363000196691 +137340,686.7000000033839,-0.055536265716389296 +137341,686.705000003384,-0.05553623141330941 +137342,686.7100000033842,-0.055536197110428745 +137343,686.7150000033843,-0.05553616280774659 +137344,686.7200000033844,-0.05553612850526225 +137345,686.7250000033845,-0.05553609420297502 +137346,686.7300000033846,-0.0555360599008842 +137347,686.7350000033847,-0.05553602559898908 +137348,686.7400000033848,-0.05553599129728897 +137349,686.7450000033849,-0.05553595699578317 +137350,686.750000003385,-0.05553592269447097 +137351,686.7550000033851,-0.05553588839335167 +137352,686.7600000033852,-0.05553585409242457 +137353,686.7650000033854,-0.05553581979168898 +137354,686.7700000033855,-0.055535785491144185 +137355,686.7750000033856,-0.0555357511907895 +137356,686.7800000033857,-0.055535716890624205 +137357,686.7850000033858,-0.05553568259064761 +137358,686.7900000033859,-0.05553564829085903 +137359,686.795000003386,-0.05553561399125775 +137360,686.8000000033861,-0.055535579691843084 +137361,686.8050000033862,-0.05553554539261433 +137362,686.8100000033863,-0.05553551109357078 +137363,686.8150000033864,-0.05553547679471174 +137364,686.8200000033866,-0.05553544249603651 +137365,686.8250000033867,-0.0555354081975444 +137366,686.8300000033868,-0.0555353738992347 +137367,686.8350000033869,-0.05553533960110673 +137368,686.840000003387,-0.055535305303159775 +137369,686.8450000033871,-0.05553527100539314 +137370,686.8500000033872,-0.055535236707806135 +137371,686.8550000033873,-0.055535202410398075 +137372,686.8600000033874,-0.05553516811316824 +137373,686.8650000033875,-0.055535133816115946 +137374,686.8700000033876,-0.05553509951924049 +137375,686.8750000033878,-0.05553506522254118 +137376,686.8800000033879,-0.05553503092601733 +137377,686.885000003388,-0.05553499662966823 +137378,686.8900000033881,-0.055534962333493185 +137379,686.8950000033882,-0.055534928037491514 +137380,686.9000000033883,-0.055534893741662504 +137381,686.9050000033884,-0.05553485944600547 +137382,686.9100000033885,-0.055534825150519725 +137383,686.9150000033886,-0.05553479085520455 +137384,686.9200000033887,-0.05553475656005927 +137385,686.9250000033888,-0.05553472226508319 +137386,686.930000003389,-0.055534687970275616 +137387,686.9350000033891,-0.055534653675635835 +137388,686.9400000033892,-0.055534619381163185 +137389,686.9450000033893,-0.05553458508685695 +137390,686.9500000033894,-0.05553455079271644 +137391,686.9550000033895,-0.055534516498740985 +137392,686.9600000033896,-0.05553448220492986 +137393,686.9650000033897,-0.055534447911282384 +137394,686.9700000033898,-0.05553441361779788 +137395,686.9750000033899,-0.055534379324475636 +137396,686.98000000339,-0.05553434503131497 +137397,686.9850000033902,-0.05553431073831518 +137398,686.9900000033903,-0.05553427644547559 +137399,686.9950000033904,-0.05553424215279549 +137400,687.0000000033905,-0.055534207860274194 +137401,687.0050000033906,-0.05553417356791103 +137402,687.0100000033907,-0.05553413927570529 +137403,687.0150000033908,-0.055534104983656275 +137404,687.0200000033909,-0.05553407069176332 +137405,687.025000003391,-0.055534036400025716 +137406,687.0300000033911,-0.05553400210844277 +137407,687.0350000033912,-0.05553396781701379 +137408,687.0400000033914,-0.055533933525738106 +137409,687.0450000033915,-0.05553389923461502 +137410,687.0500000033916,-0.05553386494364384 +137411,687.0550000033917,-0.05553383065282387 +137412,687.0600000033918,-0.055533796362154435 +137413,687.0650000033919,-0.055533762071634844 +137414,687.070000003392,-0.05553372778126439 +137415,687.0750000033921,-0.0555336934910424 +137416,687.0800000033922,-0.05553365920096819 +137417,687.0850000033923,-0.05553362491104106 +137418,687.0900000033924,-0.05553359062126033 +137419,687.0950000033926,-0.05553355633162532 +137420,687.1000000033927,-0.05553352204213533 +137421,687.1050000033928,-0.05553348775278967 +137422,687.1100000033929,-0.055533453463587665 +137423,687.115000003393,-0.05553341917452862 +137424,687.1200000033931,-0.05553338488561184 +137425,687.1250000033932,-0.05553335059683666 +137426,687.1300000033933,-0.05553331630820237 +137427,687.1350000033934,-0.05553328201970831 +137428,687.1400000033935,-0.05553324773135377 +137429,687.1450000033936,-0.05553321344313808 +137430,687.1500000033938,-0.05553317915506055 +137431,687.1550000033939,-0.055533144867120486 +137432,687.160000003394,-0.05553311057931721 +137433,687.1650000033941,-0.05553307629165005 +137434,687.1700000033942,-0.0555330420041183 +137435,687.1750000033943,-0.05553300771672129 +137436,687.1800000033944,-0.05553297342945832 +137437,687.1850000033945,-0.055532939142328715 +137438,687.1900000033946,-0.05553290485533179 +137439,687.1950000033947,-0.05553287056846686 +137440,687.2000000033948,-0.05553283628173326 +137441,687.205000003395,-0.05553280199513027 +137442,687.2100000033951,-0.055532767708657234 +137443,687.2150000033952,-0.055532733422313456 +137444,687.2200000033953,-0.05553269913609826 +137445,687.2250000033954,-0.05553266485001096 +137446,687.2300000033955,-0.055532630564050875 +137447,687.2350000033956,-0.05553259627821733 +137448,687.2400000033957,-0.05553256199250963 +137449,687.2450000033958,-0.0555325277069271 +137450,687.2500000033959,-0.055532493421469056 +137451,687.255000003396,-0.05553245913613482 +137452,687.2600000033962,-0.0555324248509237 +137453,687.2650000033963,-0.05553239056583503 +137454,687.2700000033964,-0.05553235628086812 +137455,687.2750000033965,-0.05553232199602229 +137456,687.2800000033966,-0.05553228771129686 +137457,687.2850000033967,-0.05553225342669116 +137458,687.2900000033968,-0.055532219142204485 +137459,687.2950000033969,-0.055532184857836175 +137460,687.300000003397,-0.05553215057358554 +137461,687.3050000033971,-0.055532116289451906 +137462,687.3100000033972,-0.05553208200543459 +137463,687.3150000033974,-0.055532047721532904 +137464,687.3200000033975,-0.055532013437746185 +137465,687.3250000033976,-0.055531979154073756 +137466,687.3300000033977,-0.055531944870514924 +137467,687.3350000033978,-0.05553191058706901 +137468,687.3400000033979,-0.05553187630373534 +137469,687.345000003398,-0.055531842020513256 +137470,687.3500000033981,-0.05553180773740205 +137471,687.3550000033982,-0.05553177345440105 +137472,687.3600000033983,-0.05553173917150959 +137473,687.3650000033984,-0.05553170488872698 +137474,687.3700000033986,-0.05553167060605256 +137475,687.3750000033987,-0.05553163632348564 +137476,687.3800000033988,-0.05553160204102555 +137477,687.3850000033989,-0.0555315677586716 +137478,687.390000003399,-0.055531533476423124 +137479,687.3950000033991,-0.05553149919427944 +137480,687.4000000033992,-0.05553146491223987 +137481,687.4050000033993,-0.055531430630303746 +137482,687.4100000033994,-0.055531396348470395 +137483,687.4150000033995,-0.055531362066739136 +137484,687.4200000033997,-0.05553132778510928 +137485,687.4250000033998,-0.05553129350358017 +137486,687.4300000033999,-0.05553125922215114 +137487,687.4350000034,-0.05553122494082149 +137488,687.4400000034001,-0.05553119065959055 +137489,687.4450000034002,-0.05553115637845765 +137490,687.4500000034003,-0.05553112209742213 +137491,687.4550000034004,-0.0555310878164833 +137492,687.4600000034005,-0.05553105353564048 +137493,687.4650000034006,-0.05553101925489301 +137494,687.4700000034007,-0.055530984974240215 +137495,687.4750000034009,-0.055530950693681407 +137496,687.480000003401,-0.05553091641321593 +137497,687.4850000034011,-0.05553088213284311 +137498,687.4900000034012,-0.05553084785256226 +137499,687.4950000034013,-0.055530813572372724 +137500,687.5000000034014,-0.05553077929227382 +137501,687.5050000034015,-0.055530745012264876 +137502,687.5100000034016,-0.055530710732345216 +137503,687.5150000034017,-0.05553067645251417 +137504,687.5200000034018,-0.05553064217277108 +137505,687.5250000034019,-0.05553060789311526 +137506,687.530000003402,-0.05553057361354604 +137507,687.5350000034022,-0.05553053933406275 +137508,687.5400000034023,-0.05553050505466473 +137509,687.5450000034024,-0.05553047077535129 +137510,687.5500000034025,-0.055530436496121764 +137511,687.5550000034026,-0.05553040221697549 +137512,687.5600000034027,-0.055530367937911794 +137513,687.5650000034028,-0.05553033365893001 +137514,687.5700000034029,-0.055530299380029464 +137515,687.575000003403,-0.05553026510120948 +137516,687.5800000034031,-0.055530230822469405 +137517,687.5850000034033,-0.05553019654380856 +137518,687.5900000034034,-0.055530162265226266 +137519,687.5950000034035,-0.05553012798672187 +137520,687.6000000034036,-0.05553009370829469 +137521,687.6050000034037,-0.05553005942994406 +137522,687.6100000034038,-0.05553002515166932 +137523,687.6150000034039,-0.0555299908734698 +137524,687.620000003404,-0.05552995659534483 +137525,687.6250000034041,-0.05552992231729374 +137526,687.6300000034042,-0.05552988803931586 +137527,687.6350000034043,-0.055529853761410536 +137528,687.6400000034045,-0.05552981948357709 +137529,687.6450000034046,-0.05552978520581485 +137530,687.6500000034047,-0.05552975092812315 +137531,687.6550000034048,-0.055529716650501326 +137532,687.6600000034049,-0.05552968237294873 +137533,687.665000003405,-0.055529648095464665 +137534,687.6700000034051,-0.05552961381804849 +137535,687.6750000034052,-0.055529579540699515 +137536,687.6800000034053,-0.05552954526341709 +137537,687.6850000034054,-0.05552951098620055 +137538,687.6900000034055,-0.05552947670904922 +137539,687.6950000034057,-0.055529442431962436 +137540,687.7000000034058,-0.05552940815493955 +137541,687.7050000034059,-0.05552937387797988 +137542,687.710000003406,-0.05552933960108277 +137543,687.7150000034061,-0.055529305324247547 +137544,687.7200000034062,-0.055529271047473544 +137545,687.7250000034063,-0.05552923677076011 +137546,687.7300000034064,-0.055529202494106575 +137547,687.7350000034065,-0.05552916821751227 +137548,687.7400000034066,-0.055529133940976534 +137549,687.7450000034067,-0.05552909966449872 +137550,687.7500000034069,-0.05552906538807814 +137551,687.755000003407,-0.05552903111171414 +137552,687.7600000034071,-0.05552899683540605 +137553,687.7650000034072,-0.05552896255915322 +137554,687.7700000034073,-0.05552892828295498 +137555,687.7750000034074,-0.05552889400681067 +137556,687.7800000034075,-0.055528859730719644 +137557,687.7850000034076,-0.05552882545468121 +137558,687.7900000034077,-0.055528791178694734 +137559,687.7950000034078,-0.055528756902759525 +137560,687.800000003408,-0.05552872262687495 +137561,687.805000003408,-0.05552868835104033 +137562,687.8100000034082,-0.05552865407525501 +137563,687.8150000034083,-0.05552861979951833 +137564,687.8200000034084,-0.055528585523829624 +137565,687.8250000034085,-0.055528551248188236 +137566,687.8300000034086,-0.055528516972593506 +137567,687.8350000034087,-0.055528482697044766 +137568,687.8400000034088,-0.05552844842154137 +137569,687.8450000034089,-0.05552841414608265 +137570,687.850000003409,-0.05552837987066795 +137571,687.8550000034091,-0.0555283455952966 +137572,687.8600000034093,-0.05552831131996796 +137573,687.8650000034094,-0.05552827704468135 +137574,687.8700000034095,-0.05552824276943612 +137575,687.8750000034096,-0.05552820849423161 +137576,687.8800000034097,-0.05552817421906717 +137577,687.8850000034098,-0.05552813994394212 +137578,687.8900000034099,-0.05552810566885583 +137579,687.89500000341,-0.055528071393807624 +137580,687.9000000034101,-0.05552803711879685 +137581,687.9050000034102,-0.055528002843822845 +137582,687.9100000034103,-0.05552796856888497 +137583,687.9150000034105,-0.055527934293982555 +137584,687.9200000034106,-0.05552790001911494 +137585,687.9250000034107,-0.05552786574428146 +137586,687.9300000034108,-0.055527831469481474 +137587,687.9350000034109,-0.05552779719471431 +137588,687.940000003411,-0.05552776291997932 +137589,687.9450000034111,-0.05552772864527586 +137590,687.9500000034112,-0.05552769437060326 +137591,687.9550000034113,-0.05552766009596087 +137592,687.9600000034114,-0.05552762582134803 +137593,687.9650000034115,-0.05552759154676409 +137594,687.9700000034117,-0.055527557272208386 +137595,687.9750000034118,-0.05552752299768027 +137596,687.9800000034119,-0.05552748872317908 +137597,687.985000003412,-0.05552745444870416 +137598,687.9900000034121,-0.055527420174254875 +137599,687.9950000034122,-0.05552738589983055 +137600,688.0000000034123,-0.05552735162543054 +137601,688.0050000034124,-0.05552731735105419 +137602,688.0100000034125,-0.05552728307670086 +137603,688.0150000034126,-0.055527248802369866 +137604,688.0200000034127,-0.05552721452806059 +137605,688.0250000034129,-0.055527180253772346 +137606,688.030000003413,-0.055527145979504484 +137607,688.0350000034131,-0.05552711170525638 +137608,688.0400000034132,-0.055527077431027354 +137609,688.0450000034133,-0.05552704315681676 +137610,688.0500000034134,-0.05552700888262395 +137611,688.0550000034135,-0.05552697460844827 +137612,688.0600000034136,-0.055526940334289066 +137613,688.0650000034137,-0.055526906060145695 +137614,688.0700000034138,-0.05552687178601749 +137615,688.075000003414,-0.05552683751190381 +137616,688.080000003414,-0.055526803237804005 +137617,688.0850000034142,-0.055526768963717416 +137618,688.0900000034143,-0.055526734689643406 +137619,688.0950000034144,-0.055526700415581304 +137620,688.1000000034145,-0.05552666614153047 +137621,688.1050000034146,-0.05552663186749025 +137622,688.1100000034147,-0.055526597593460014 +137623,688.1150000034148,-0.055526563319439094 +137624,688.1200000034149,-0.05552652904542683 +137625,688.125000003415,-0.055526494771422595 +137626,688.1300000034151,-0.05552646049742572 +137627,688.1350000034153,-0.055526426223435565 +137628,688.1400000034154,-0.055526391949451484 +137629,688.1450000034155,-0.05552635767547282 +137630,688.1500000034156,-0.05552632340149894 +137631,688.1550000034157,-0.05552628912752918 +137632,688.1600000034158,-0.055526254853562905 +137633,688.1650000034159,-0.05552622057959945 +137634,688.170000003416,-0.05552618630563818 +137635,688.1750000034161,-0.05552615203167844 +137636,688.1800000034162,-0.055526117757719574 +137637,688.1850000034163,-0.05552608348376096 +137638,688.1900000034165,-0.05552604920980193 +137639,688.1950000034166,-0.05552601493584185 +137640,688.2000000034167,-0.05552598066188005 +137641,688.2050000034168,-0.05552594638791591 +137642,688.2100000034169,-0.055525912113948764 +137643,688.215000003417,-0.055525877839977984 +137644,688.2200000034171,-0.05552584356600291 +137645,688.2250000034172,-0.0555258092920229 +137646,688.2300000034173,-0.05552577501803731 +137647,688.2350000034174,-0.055525740744045496 +137648,688.2400000034175,-0.0555257064700468 +137649,688.2450000034177,-0.05552567219604059 +137650,688.2500000034178,-0.05552563792202622 +137651,688.2550000034179,-0.05552560364800304 +137652,688.260000003418,-0.055525569373970414 +137653,688.2650000034181,-0.05552553509992768 +137654,688.2700000034182,-0.05552550082587421 +137655,688.2750000034183,-0.055525466551809344 +137656,688.2800000034184,-0.05552543227773245 +137657,688.2850000034185,-0.05552539800364288 +137658,688.2900000034186,-0.05552536372953999 +137659,688.2950000034187,-0.05552532945542315 +137660,688.3000000034189,-0.0555252951812917 +137661,688.305000003419,-0.055525260907145 +137662,688.3100000034191,-0.05552522663298241 +137663,688.3150000034192,-0.055525192358803294 +137664,688.3200000034193,-0.055525158084607 +137665,688.3250000034194,-0.05552512381039289 +137666,688.3300000034195,-0.05552508953616031 +137667,688.3350000034196,-0.05552505526190864 +137668,688.3400000034197,-0.05552502098763721 +137669,688.3450000034198,-0.0555249867133454 +137670,688.35000000342,-0.05552495243903256 +137671,688.3550000034201,-0.05552491816469805 +137672,688.3600000034202,-0.05552488389034123 +137673,688.3650000034203,-0.05552484961596146 +137674,688.3700000034204,-0.0555248153415581 +137675,688.3750000034205,-0.05552478106713049 +137676,688.3800000034206,-0.05552474679267802 +137677,688.3850000034207,-0.055524712518200035 +137678,688.3900000034208,-0.05552467824369589 +137679,688.3950000034209,-0.055524643969164955 +137680,688.400000003421,-0.05552460969460658 +137681,688.4050000034212,-0.05552457542002014 +137682,688.4100000034213,-0.055524541145405 +137683,688.4150000034214,-0.05552450687076049 +137684,688.4200000034215,-0.055524472596086 +137685,688.4250000034216,-0.05552443832138087 +137686,688.4300000034217,-0.05552440404664448 +137687,688.4350000034218,-0.055524369771876185 +137688,688.4400000034219,-0.055524335497075326 +137689,688.445000003422,-0.05552430122224129 +137690,688.4500000034221,-0.055524266947373446 +137691,688.4550000034222,-0.05552423267247114 +137692,688.4600000034224,-0.05552419839753374 +137693,688.4650000034225,-0.055524164122560594 +137694,688.4700000034226,-0.05552412984755108 +137695,688.4750000034227,-0.05552409557250457 +137696,688.4800000034228,-0.055524061297420386 +137697,688.4850000034229,-0.055524027022297945 +137698,688.490000003423,-0.055523992747136576 +137699,688.4950000034231,-0.055523958471935655 +137700,688.5000000034232,-0.05552392419669454 +137701,688.5050000034233,-0.05552388992141259 +137702,688.5100000034234,-0.05552385564608919 +137703,688.5150000034236,-0.05552382137072368 +137704,688.5200000034237,-0.05552378709531544 +137705,688.5250000034238,-0.05552375281986383 +137706,688.5300000034239,-0.055523718544368224 +137707,688.535000003424,-0.055523684268827964 +137708,688.5400000034241,-0.05552364999324245 +137709,688.5450000034242,-0.05552361571761101 +137710,688.5500000034243,-0.055523581441933034 +137711,688.5550000034244,-0.05552354716620788 +137712,688.5600000034245,-0.0555235128904349 +137713,688.5650000034246,-0.05552347861461349 +137714,688.5700000034248,-0.055523444338743004 +137715,688.5750000034249,-0.055523410062822805 +137716,688.580000003425,-0.05552337578685226 +137717,688.5850000034251,-0.05552334151083072 +137718,688.5900000034252,-0.05552330723475757 +137719,688.5950000034253,-0.05552327295863218 +137720,688.6000000034254,-0.05552323868245391 +137721,688.6050000034255,-0.05552320440622214 +137722,688.6100000034256,-0.05552317012993622 +137723,688.6150000034257,-0.05552313585359552 +137724,688.6200000034258,-0.05552310157719941 +137725,688.625000003426,-0.05552306730074727 +137726,688.6300000034261,-0.05552303302423846 +137727,688.6350000034262,-0.055522998747672345 +137728,688.6400000034263,-0.0555229644710483 +137729,688.6450000034264,-0.05552293019436569 +137730,688.6500000034265,-0.05552289591762388 +137731,688.6550000034266,-0.055522861640822256 +137732,688.6600000034267,-0.05552282736396018 +137733,688.6650000034268,-0.055522793087037 +137734,688.6700000034269,-0.055522758810052114 +137735,688.675000003427,-0.05552272453300488 +137736,688.6800000034272,-0.05552269025589467 +137737,688.6850000034273,-0.055522655978720865 +137738,688.6900000034274,-0.05552262170148282 +137739,688.6950000034275,-0.055522587424179905 +137740,688.7000000034276,-0.05552255314681149 +137741,688.7050000034277,-0.055522518869376966 +137742,688.7100000034278,-0.055522484591875684 +137743,688.7150000034279,-0.055522450314307026 +137744,688.720000003428,-0.05552241603667035 +137745,688.7250000034281,-0.05552238175896504 +137746,688.7300000034282,-0.05552234748119047 +137747,688.7350000034284,-0.055522313203346 +137748,688.7400000034285,-0.055522278925431025 +137749,688.7450000034286,-0.055522244647444895 +137750,688.7500000034287,-0.05552221036938698 +137751,688.7550000034288,-0.05552217609125667 +137752,688.7600000034289,-0.05552214181305332 +137753,688.765000003429,-0.05552210753477633 +137754,688.7700000034291,-0.055522073256425046 +137755,688.7750000034292,-0.055522038977998865 +137756,688.7800000034293,-0.05552200469949715 +137757,688.7850000034294,-0.05552197042091926 +137758,688.7900000034296,-0.0555219361422646 +137759,688.7950000034297,-0.05552190186353251 +137760,688.8000000034298,-0.055521867584722384 +137761,688.8050000034299,-0.055521833305833594 +137762,688.81000000343,-0.05552179902686553 +137763,688.8150000034301,-0.05552176474781753 +137764,688.8200000034302,-0.055521730468689 +137765,688.8250000034303,-0.0555216961894793 +137766,688.8300000034304,-0.05552166191018782 +137767,688.8350000034305,-0.05552162763081391 +137768,688.8400000034306,-0.05552159335135697 +137769,688.8450000034308,-0.05552155907181637 +137770,688.8500000034309,-0.05552152479219149 +137771,688.855000003431,-0.05552149051248169 +137772,688.8600000034311,-0.05552145623268636 +137773,688.8650000034312,-0.055521421952804885 +137774,688.8700000034313,-0.055521387672836625 +137775,688.8750000034314,-0.05552135339278097 +137776,688.8800000034315,-0.05552131911263729 +137777,688.8850000034316,-0.05552128483240495 +137778,688.8900000034317,-0.055521250552083345 +137779,688.8950000034318,-0.05552121627167185 +137780,688.900000003432,-0.05552118199116984 +137781,688.9050000034321,-0.0555211477105767 +137782,688.9100000034322,-0.0555211134298918 +137783,688.9150000034323,-0.05552107914911451 +137784,688.9200000034324,-0.05552104486824423 +137785,688.9250000034325,-0.05552101058728033 +137786,688.9300000034326,-0.05552097630622218 +137787,688.9350000034327,-0.05552094202506916 +137788,688.9400000034328,-0.05552090774382066 +137789,688.9450000034329,-0.05552087346247605 +137790,688.950000003433,-0.05552083918103472 +137791,688.9550000034332,-0.05552080489949604 +137792,688.9600000034333,-0.0555207706178594 +137793,688.9650000034334,-0.05552073633612417 +137794,688.9700000034335,-0.055520702054289744 +137795,688.9750000034336,-0.05552066777235548 +137796,688.9800000034337,-0.05552063349032078 +137797,688.9850000034338,-0.05552059920818501 +137798,688.9900000034339,-0.055520564925947556 +137799,688.995000003434,-0.0555205306436078 +137800,689.0000000034341,-0.05552049636116513 +137801,689.0050000034342,-0.05552046207861892 +137802,689.0100000034344,-0.05552042779596856 +137803,689.0150000034345,-0.055520393513213424 +137804,689.0200000034346,-0.055520359230352895 +137805,689.0250000034347,-0.05552032494738636 +137806,689.0300000034348,-0.055520290664313195 +137807,689.0350000034349,-0.05552025638113278 +137808,689.040000003435,-0.05552022209784451 +137809,689.0450000034351,-0.05552018781444775 +137810,689.0500000034352,-0.0555201535309419 +137811,689.0550000034353,-0.05552011924732633 +137812,689.0600000034354,-0.05552008496360044 +137813,689.0650000034356,-0.0555200506797636 +137814,689.0700000034357,-0.055520016395815205 +137815,689.0750000034358,-0.05551998211175463 +137816,689.0800000034359,-0.05551994782758126 +137817,689.085000003436,-0.05551991354329448 +137818,689.0900000034361,-0.05551987925889367 +137819,689.0950000034362,-0.055519844974378216 +137820,689.1000000034363,-0.05551981068974752 +137821,689.1050000034364,-0.05551977640500094 +137822,689.1100000034365,-0.055519742120137876 +137823,689.1150000034366,-0.055519707835157715 +137824,689.1200000034368,-0.05551967355005985 +137825,689.1250000034369,-0.05551963926484365 +137826,689.130000003437,-0.0555196049795085 +137827,689.1350000034371,-0.0555195706940538 +137828,689.1400000034372,-0.055519536408478926 +137829,689.1450000034373,-0.05551950212278327 +137830,689.1500000034374,-0.055519467836966215 +137831,689.1550000034375,-0.05551943355102715 +137832,689.1600000034376,-0.055519399264965456 +137833,689.1650000034377,-0.05551936497878053 +137834,689.1700000034378,-0.05551933069247176 +137835,689.175000003438,-0.055519296406038525 +137836,689.1800000034381,-0.05551926211948022 +137837,689.1850000034382,-0.05551922783279622 +137838,689.1900000034383,-0.05551919354598593 +137839,689.1950000034384,-0.05551915925904872 +137840,689.2000000034385,-0.05551912497198398 +137841,689.2050000034386,-0.05551909068479113 +137842,689.2100000034387,-0.05551905639746951 +137843,689.2150000034388,-0.05551902211001856 +137844,689.2200000034389,-0.055518987822437624 +137845,689.225000003439,-0.055518953534726107 +137846,689.2300000034392,-0.055518919246883416 +137847,689.2350000034393,-0.055518884958908915 +137848,689.2400000034394,-0.05551885067080201 +137849,689.2450000034395,-0.05551881638256208 +137850,689.2500000034396,-0.05551878209418853 +137851,689.2550000034397,-0.05551874780568073 +137852,689.2600000034398,-0.0555187135170381 +137853,689.2650000034399,-0.05551867922825998 +137854,689.27000000344,-0.05551864493934582 +137855,689.2750000034401,-0.055518610650294974 +137856,689.2800000034403,-0.05551857636110684 +137857,689.2850000034404,-0.055518542071780815 +137858,689.2900000034405,-0.055518507782316276 +137859,689.2950000034406,-0.05551847349271263 +137860,689.3000000034407,-0.05551843920296926 +137861,689.3050000034408,-0.05551840491308558 +137862,689.3100000034409,-0.05551837062306095 +137863,689.315000003441,-0.055518336332894776 +137864,689.3200000034411,-0.055518302042586454 +137865,689.3250000034412,-0.05551826775213537 +137866,689.3300000034413,-0.05551823346154093 +137867,689.3350000034415,-0.05551819917080252 +137868,689.3400000034416,-0.05551816487991953 +137869,689.3450000034417,-0.05551813058889134 +137870,689.3500000034418,-0.05551809629771737 +137871,689.3550000034419,-0.05551806200639699 +137872,689.360000003442,-0.055518027714929606 +137873,689.3650000034421,-0.05551799342331461 +137874,689.3700000034422,-0.05551795913155139 +137875,689.3750000034423,-0.05551792483963936 +137876,689.3800000034424,-0.05551789054757789 +137877,689.3850000034425,-0.0555178562553664 +137878,689.3900000034427,-0.055517821963004255 +137879,689.3950000034428,-0.05551778767049088 +137880,689.4000000034429,-0.05551775337782564 +137881,689.405000003443,-0.05551771908500795 +137882,689.4100000034431,-0.05551768479203722 +137883,689.4150000034432,-0.055517650498912816 +137884,689.4200000034433,-0.05551761620563414 +137885,689.4250000034434,-0.055517581912200596 +137886,689.4300000034435,-0.055517547618611586 +137887,689.4350000034436,-0.055517513324866485 +137888,689.4400000034437,-0.05551747903096471 +137889,689.4450000034439,-0.05551744473690565 +137890,689.450000003444,-0.0555174104426887 +137891,689.4550000034441,-0.055517376148313265 +137892,689.4600000034442,-0.05551734185377873 +137893,689.4650000034443,-0.0555173075590845 +137894,689.4700000034444,-0.05551727326422997 +137895,689.4750000034445,-0.055517238969214545 +137896,689.4800000034446,-0.05551720467403762 +137897,689.4850000034447,-0.055517170378698584 +137898,689.4900000034448,-0.05551713608319683 +137899,689.4950000034449,-0.055517101787531775 +137900,689.500000003445,-0.05551706749170281 +137901,689.5050000034452,-0.05551703319570933 +137902,689.5100000034453,-0.055516998899550744 +137903,689.5150000034454,-0.05551696460322644 +137904,689.5200000034455,-0.05551693030673583 +137905,689.5250000034456,-0.0555168960100783 +137906,689.5300000034457,-0.05551686171325325 +137907,689.5350000034458,-0.05551682741626009 +137908,689.5400000034459,-0.05551679311909821 +137909,689.545000003446,-0.05551675882176703 +137910,689.5500000034461,-0.055516724524265926 +137911,689.5550000034463,-0.055516690226594306 +137912,689.5600000034464,-0.055516655928751574 +137913,689.5650000034465,-0.05551662163073714 +137914,689.5700000034466,-0.055516587332550375 +137915,689.5750000034467,-0.05551655303419071 +137916,689.5800000034468,-0.05551651873565753 +137917,689.5850000034469,-0.05551648443695025 +137918,689.590000003447,-0.05551645013806827 +137919,689.5950000034471,-0.05551641583901098 +137920,689.6000000034472,-0.05551638153977778 +137921,689.6050000034473,-0.05551634724036808 +137922,689.6100000034475,-0.05551631294078128 +137923,689.6150000034476,-0.055516278641016784 +137924,689.6200000034477,-0.055516244341074 +137925,689.6250000034478,-0.05551621004095233 +137926,689.6300000034479,-0.055516175740651166 +137927,689.635000003448,-0.05551614144016992 +137928,689.6400000034481,-0.055516107139508 +137929,689.6450000034482,-0.05551607283866478 +137930,689.6500000034483,-0.0555160385376397 +137931,689.6550000034484,-0.05551600423643215 +137932,689.6600000034485,-0.05551596993504154 +137933,689.6650000034487,-0.05551593563346727 +137934,689.6700000034488,-0.055515901331708736 +137935,689.6750000034489,-0.055515867029765346 +137936,689.680000003449,-0.05551583272763651 +137937,689.6850000034491,-0.05551579842532164 +137938,689.6900000034492,-0.05551576412282012 +137939,689.6950000034493,-0.05551572982013137 +137940,689.7000000034494,-0.0555156955172548 +137941,689.7050000034495,-0.055515661214189806 +137942,689.7100000034496,-0.0555156269109358 +137943,689.7150000034497,-0.05551559260749217 +137944,689.7200000034499,-0.05551555830385833 +137945,689.72500000345,-0.05551552400003369 +137946,689.7300000034501,-0.05551548969601767 +137947,689.7350000034502,-0.055515455391809666 +137948,689.7400000034503,-0.05551542108740908 +137949,689.7450000034504,-0.055515386782815326 +137950,689.7500000034505,-0.05551535247802781 +137951,689.7550000034506,-0.055515318173045926 +137952,689.7600000034507,-0.0555152838678691 +137953,689.7650000034508,-0.05551524956249672 +137954,689.770000003451,-0.055515215256928215 +137955,689.775000003451,-0.05551518095116298 +137956,689.7800000034512,-0.055515146645200415 +137957,689.7850000034513,-0.05551511233903995 +137958,689.7900000034514,-0.05551507803268098 +137959,689.7950000034515,-0.05551504372612291 +137960,689.8000000034516,-0.05551500941936516 +137961,689.8050000034517,-0.055514975112407126 +137962,689.8100000034518,-0.05551494080524823 +137963,689.8150000034519,-0.05551490649788788 +137964,689.820000003452,-0.05551487219032548 +137965,689.8250000034521,-0.055514837882560446 +137966,689.8300000034523,-0.05551480357459218 +137967,689.8350000034524,-0.05551476926642009 +137968,689.8400000034525,-0.05551473495804359 +137969,689.8450000034526,-0.05551470064946209 +137970,689.8500000034527,-0.05551466634067499 +137971,689.8550000034528,-0.05551463203168173 +137972,689.8600000034529,-0.0555145977224817 +137973,689.865000003453,-0.055514563413074314 +137974,689.8700000034531,-0.055514529103458984 +137975,689.8750000034532,-0.05551449479363511 +137976,689.8800000034533,-0.055514460483602125 +137977,689.8850000034535,-0.05551442617335941 +137978,689.8900000034536,-0.05551439186290641 +137979,689.8950000034537,-0.055514357552242516 +137980,689.9000000034538,-0.05551432324136715 +137981,689.9050000034539,-0.05551428893027972 +137982,689.910000003454,-0.05551425461897964 +137983,689.9150000034541,-0.05551422030746632 +137984,689.9200000034542,-0.05551418599573917 +137985,689.9250000034543,-0.055514151683797607 +137986,689.9300000034544,-0.05551411737164105 +137987,689.9350000034545,-0.0555140830592689 +137988,689.9400000034547,-0.055514048746680575 +137989,689.9450000034548,-0.05551401443387549 +137990,689.9500000034549,-0.05551398012085306 +137991,689.955000003455,-0.0555139458076127 +137992,689.9600000034551,-0.05551391149415382 +137993,689.9650000034552,-0.05551387718047583 +137994,689.9700000034553,-0.05551384286657816 +137995,689.9750000034554,-0.05551380855246021 +137996,689.9800000034555,-0.0555137742381214 +137997,689.9850000034556,-0.05551373992356115 +137998,689.9900000034557,-0.055513705608778864 +137999,689.9950000034559,-0.05551367129377397 +138000,690.000000003456,-0.055513636978545874 +138001,690.0050000034561,-0.05551360266309399 +138002,690.0100000034562,-0.05551356834741775 +138003,690.0150000034563,-0.05551353403151654 +138004,690.0200000034564,-0.0555134997153898 +138005,690.0250000034565,-0.05551346539903693 +138006,690.0300000034566,-0.055513431082457376 +138007,690.0350000034567,-0.05551339676565053 +138008,690.0400000034568,-0.05551336244861581 +138009,690.045000003457,-0.05551332813135264 +138010,690.0500000034571,-0.05551329381386043 +138011,690.0550000034572,-0.055513259496138605 +138012,690.0600000034573,-0.055513225178186576 +138013,690.0650000034574,-0.055513190860003746 +138014,690.0700000034575,-0.055513156541589566 +138015,690.0750000034576,-0.05551312222294344 +138016,690.0800000034577,-0.05551308790406478 +138017,690.0850000034578,-0.055513053584953 +138018,690.0900000034579,-0.055513019265607526 +138019,690.095000003458,-0.05551298494602777 +138020,690.1000000034581,-0.05551295062621317 +138021,690.1050000034583,-0.05551291630616312 +138022,690.1100000034584,-0.05551288198587706 +138023,690.1150000034585,-0.0555128476653544 +138024,690.1200000034586,-0.05551281334459456 +138025,690.1250000034587,-0.05551277902359696 +138026,690.1300000034588,-0.05551274470236102 +138027,690.1350000034589,-0.05551271038088615 +138028,690.140000003459,-0.05551267605917178 +138029,690.1450000034591,-0.05551264173721734 +138030,690.1500000034592,-0.05551260741502223 +138031,690.1550000034593,-0.055512573092585886 +138032,690.1600000034595,-0.05551253876990772 +138033,690.1650000034596,-0.05551250444698715 +138034,690.1700000034597,-0.055512470123823605 +138035,690.1750000034598,-0.05551243580041651 +138036,690.1800000034599,-0.055512401476765276 +138037,690.18500000346,-0.055512367152869335 +138038,690.1900000034601,-0.05551233282872809 +138039,690.1950000034602,-0.055512298504340994 +138040,690.2000000034603,-0.05551226417970743 +138041,690.2050000034604,-0.055512229854826844 +138042,690.2100000034606,-0.05551219552969866 +138043,690.2150000034607,-0.0555121612043223 +138044,690.2200000034608,-0.05551212687869717 +138045,690.2250000034609,-0.05551209255282271 +138046,690.230000003461,-0.05551205822669833 +138047,690.2350000034611,-0.05551202390032347 +138048,690.2400000034612,-0.05551198957369755 +138049,690.2450000034613,-0.05551195524681998 +138050,690.2500000034614,-0.0555119209196902 +138051,690.2550000034615,-0.05551188659230762 +138052,690.2600000034616,-0.05551185226467166 +138053,690.2650000034618,-0.055511817936781754 +138054,690.2700000034619,-0.05551178360863733 +138055,690.275000003462,-0.05551174928023781 +138056,690.2800000034621,-0.05551171495158262 +138057,690.2850000034622,-0.05551168062267118 +138058,690.2900000034623,-0.05551164629350292 +138059,690.2950000034624,-0.055511611964077265 +138060,690.3000000034625,-0.05551157763439362 +138061,690.3050000034626,-0.05551154330445144 +138062,690.3100000034627,-0.05551150897425013 +138063,690.3150000034628,-0.05551147464378913 +138064,690.320000003463,-0.05551144031306785 +138065,690.3250000034631,-0.05551140598208573 +138066,690.3300000034632,-0.05551137165084221 +138067,690.3350000034633,-0.05551133731933669 +138068,690.3400000034634,-0.0555113029875686 +138069,690.3450000034635,-0.05551126865553738 +138070,690.3500000034636,-0.05551123432324243 +138071,690.3550000034637,-0.05551119999068321 +138072,690.3600000034638,-0.055511165657859136 +138073,690.3650000034639,-0.05551113132476964 +138074,690.370000003464,-0.05551109699141412 +138075,690.3750000034642,-0.05551106265779204 +138076,690.3800000034643,-0.055511028323902804 +138077,690.3850000034644,-0.055510993989745856 +138078,690.3900000034645,-0.05551095965532062 +138079,690.3950000034646,-0.05551092532062653 +138080,690.4000000034647,-0.055510890985662996 +138081,690.4050000034648,-0.055510856650429465 +138082,690.4100000034649,-0.055510822314925365 +138083,690.415000003465,-0.05551078797915011 +138084,690.4200000034651,-0.05551075364310314 +138085,690.4250000034652,-0.05551071930678388 +138086,690.4300000034654,-0.05551068497019178 +138087,690.4350000034655,-0.05551065063332624 +138088,690.4400000034656,-0.0555106162961867 +138089,690.4450000034657,-0.05551058195877259 +138090,690.4500000034658,-0.05551054762108335 +138091,690.4550000034659,-0.0555105132831184 +138092,690.460000003466,-0.05551047894487718 +138093,690.4650000034661,-0.0555104446063591 +138094,690.4700000034662,-0.05551041026756361 +138095,690.4750000034663,-0.05551037592849015 +138096,690.4800000034664,-0.055510341589138125 +138097,690.4850000034666,-0.05551030724950698 +138098,690.4900000034667,-0.05551027290959614 +138099,690.4950000034668,-0.05551023856940505 +138100,690.5000000034669,-0.05551020422893314 +138101,690.505000003467,-0.05551016988817982 +138102,690.5100000034671,-0.05551013554714455 +138103,690.5150000034672,-0.055510101205826744 +138104,690.5200000034673,-0.055510066864225834 +138105,690.5250000034674,-0.05551003252234126 +138106,690.5300000034675,-0.05550999818017246 +138107,690.5350000034676,-0.055509963837718855 +138108,690.5400000034678,-0.055509929494979904 +138109,690.5450000034679,-0.05550989515195501 +138110,690.550000003468,-0.05550986080864361 +138111,690.5550000034681,-0.05550982646504515 +138112,690.5600000034682,-0.055509792121159064 +138113,690.5650000034683,-0.05550975777698477 +138114,690.5700000034684,-0.055509723432521724 +138115,690.5750000034685,-0.05550968908776935 +138116,690.5800000034686,-0.055509654742727066 +138117,690.5850000034687,-0.05550962039739433 +138118,690.5900000034688,-0.05550958605177057 +138119,690.595000003469,-0.05550955170585522 +138120,690.6000000034691,-0.0555095173596477 +138121,690.6050000034692,-0.055509483013147475 +138122,690.6100000034693,-0.05550944866635396 +138123,690.6150000034694,-0.0555094143192666 +138124,690.6200000034695,-0.05550937997188483 +138125,690.6250000034696,-0.05550934562420807 +138126,690.6300000034697,-0.055509311276235776 +138127,690.6350000034698,-0.05550927692796738 +138128,690.6400000034699,-0.05550924257940231 +138129,690.64500000347,-0.055509208230540015 +138130,690.6500000034702,-0.05550917388137991 +138131,690.6550000034703,-0.05550913953192145 +138132,690.6600000034704,-0.05550910518216408 +138133,690.6650000034705,-0.05550907083210722 +138134,690.6700000034706,-0.055509036481750304 +138135,690.6750000034707,-0.055509002131092784 +138136,690.6800000034708,-0.0555089677801341 +138137,690.6850000034709,-0.055508933428873676 +138138,690.690000003471,-0.05550889907731096 +138139,690.6950000034711,-0.055508864725445375 +138140,690.7000000034712,-0.055508830373276384 +138141,690.7050000034714,-0.0555087960208034 +138142,690.7100000034715,-0.05550876166802588 +138143,690.7150000034716,-0.05550872731494326 +138144,690.7200000034717,-0.05550869296155497 +138145,690.7250000034718,-0.05550865860786045 +138146,690.7300000034719,-0.055508624253859155 +138147,690.735000003472,-0.0555085898995505 +138148,690.7400000034721,-0.05550855554493394 +138149,690.7450000034722,-0.05550852119000892 +138150,690.7500000034723,-0.05550848683477487 +138151,690.7550000034724,-0.05550845247923124 +138152,690.7600000034726,-0.05550841812337745 +138153,690.7650000034727,-0.05550838376721296 +138154,690.7700000034728,-0.055508349410737214 +138155,690.7750000034729,-0.05550831505394963 +138156,690.780000003473,-0.05550828069684967 +138157,690.7850000034731,-0.055508246339436754 +138158,690.7900000034732,-0.05550821198171033 +138159,690.7950000034733,-0.05550817762366985 +138160,690.8000000034734,-0.05550814326531476 +138161,690.8050000034735,-0.05550810890664448 +138162,690.8100000034736,-0.055508074547658486 +138163,690.8150000034738,-0.05550804018835618 +138164,690.8200000034739,-0.05550800582873703 +138165,690.825000003474,-0.05550797146880047 +138166,690.8300000034741,-0.05550793710854593 +138167,690.8350000034742,-0.055507902747972876 +138168,690.8400000034743,-0.05550786838708075 +138169,690.8450000034744,-0.05550783402586897 +138170,690.8500000034745,-0.05550779966433701 +138171,690.8550000034746,-0.0555077653024843 +138172,690.8600000034747,-0.055507730940310265 +138173,690.8650000034748,-0.055507696577814375 +138174,690.870000003475,-0.05550766221499606 +138175,690.8750000034751,-0.055507627851854764 +138176,690.8800000034752,-0.05550759348838995 +138177,690.8850000034753,-0.05550755912460103 +138178,690.8900000034754,-0.055507524760487474 +138179,690.8950000034755,-0.05550749039604872 +138180,690.9000000034756,-0.05550745603128422 +138181,690.9050000034757,-0.05550742166619339 +138182,690.9100000034758,-0.05550738730077571 +138183,690.9150000034759,-0.0555073529350306 +138184,690.920000003476,-0.05550731856895752 +138185,690.9250000034762,-0.05550728420255591 +138186,690.9300000034763,-0.05550724983582522 +138187,690.9350000034764,-0.0555072154687649 +138188,690.9400000034765,-0.055507181101374384 +138189,690.9450000034766,-0.05550714673365312 +138190,690.9500000034767,-0.05550711236560055 +138191,690.9550000034768,-0.05550707799721613 +138192,690.9600000034769,-0.05550704362849931 +138193,690.965000003477,-0.055507009259449534 +138194,690.9700000034771,-0.05550697489006625 +138195,690.9750000034772,-0.055506940520348894 +138196,690.9800000034774,-0.055506906150296915 +138197,690.9850000034775,-0.055506871779909775 +138198,690.9900000034776,-0.05550683740918692 +138199,690.9950000034777,-0.05550680303812777 +138200,691.0000000034778,-0.0555067686667318 +138201,691.0050000034779,-0.05550673429499845 +138202,691.010000003478,-0.055506699922927186 +138203,691.0150000034781,-0.05550666555051743 +138204,691.0200000034782,-0.05550663117776864 +138205,691.0250000034783,-0.05550659680468027 +138206,691.0300000034784,-0.055506562431251766 +138207,691.0350000034786,-0.055506528057482574 +138208,691.0400000034787,-0.05550649368337214 +138209,691.0450000034788,-0.05550645930891992 +138210,691.0500000034789,-0.05550642493412535 +138211,691.055000003479,-0.05550639055898791 +138212,691.0600000034791,-0.05550635618350701 +138213,691.0650000034792,-0.05550632180768213 +138214,691.0700000034793,-0.055506287431512716 +138215,691.0750000034794,-0.05550625305499821 +138216,691.0800000034795,-0.05550621867813807 +138217,691.0850000034796,-0.05550618430093174 +138218,691.0900000034798,-0.05550614992337867 +138219,691.0950000034799,-0.055506115545478324 +138220,691.10000000348,-0.05550608116723014 +138221,691.1050000034801,-0.05550604678863357 +138222,691.1100000034802,-0.05550601240968807 +138223,691.1150000034803,-0.05550597803039308 +138224,691.1200000034804,-0.05550594365074807 +138225,691.1250000034805,-0.05550590927075248 +138226,691.1300000034806,-0.05550587489040577 +138227,691.1350000034807,-0.05550584050970738 +138228,691.1400000034808,-0.05550580612865677 +138229,691.145000003481,-0.05550577174725341 +138230,691.1500000034811,-0.055505737365496716 +138231,691.1550000034812,-0.055505702983386175 +138232,691.1600000034813,-0.05550566860092121 +138233,691.1650000034814,-0.05550563421810129 +138234,691.1700000034815,-0.055505599834925874 +138235,691.1750000034816,-0.05550556545139441 +138236,691.1800000034817,-0.05550553106750634 +138237,691.1850000034818,-0.055505496683261143 +138238,691.1900000034819,-0.05550546229865826 +138239,691.195000003482,-0.055505427913697135 +138240,691.2000000034822,-0.055505393528377224 +138241,691.2050000034823,-0.055505359142697996 +138242,691.2100000034824,-0.0555053247566589 +138243,691.2150000034825,-0.05550529037025938 +138244,691.2200000034826,-0.0555052559834989 +138245,691.2250000034827,-0.055505221596376914 +138246,691.2300000034828,-0.05550518720889288 +138247,691.2350000034829,-0.055505152821046254 +138248,691.240000003483,-0.05550511843283648 +138249,691.2450000034831,-0.05550508404426303 +138250,691.2500000034833,-0.05550504965532535 +138251,691.2550000034834,-0.05550501526602291 +138252,691.2600000034835,-0.05550498087635515 +138253,691.2650000034836,-0.05550494648632153 +138254,691.2700000034837,-0.055504912095921496 +138255,691.2750000034838,-0.055504877705154526 +138256,691.2800000034839,-0.055504843314020065 +138257,691.285000003484,-0.05550480892251757 +138258,691.2900000034841,-0.0555047745306465 +138259,691.2950000034842,-0.055504740138406304 +138260,691.3000000034843,-0.05550470574579646 +138261,691.3050000034845,-0.055504671352816407 +138262,691.3100000034846,-0.0555046369594656 +138263,691.3150000034847,-0.055504602565743515 +138264,691.3200000034848,-0.055504568171649594 +138265,691.3250000034849,-0.0555045337771833 +138266,691.330000003485,-0.05550449938234409 +138267,691.3350000034851,-0.05550446498713144 +138268,691.3400000034852,-0.05550443059154479 +138269,691.3450000034853,-0.055504396195583595 +138270,691.3500000034854,-0.05550436179924732 +138271,691.3550000034855,-0.05550432740253544 +138272,691.3600000034857,-0.055504293005447396 +138273,691.3650000034858,-0.05550425860798265 +138274,691.3700000034859,-0.05550422421014067 +138275,691.375000003486,-0.055504189811920894 +138276,691.3800000034861,-0.055504155413322806 +138277,691.3850000034862,-0.055504121014345854 +138278,691.3900000034863,-0.055504086614989505 +138279,691.3950000034864,-0.05550405221525321 +138280,691.4000000034865,-0.05550401781513644 +138281,691.4050000034866,-0.05550398341463864 +138282,691.4100000034867,-0.05550394901375928 +138283,691.4150000034869,-0.05550391461249784 +138284,691.420000003487,-0.05550388021085375 +138285,691.4250000034871,-0.05550384580882648 +138286,691.4300000034872,-0.05550381140641551 +138287,691.4350000034873,-0.05550377700362029 +138288,691.4400000034874,-0.05550374260044026 +138289,691.4450000034875,-0.05550370819687491 +138290,691.4500000034876,-0.05550367379292371 +138291,691.4550000034877,-0.055503639388586094 +138292,691.4600000034878,-0.05550360498386154 +138293,691.465000003488,-0.0555035705787495 +138294,691.470000003488,-0.055503536173249456 +138295,691.4750000034882,-0.05550350176736086 +138296,691.4800000034883,-0.05550346736108317 +138297,691.4850000034884,-0.05550343295441584 +138298,691.4900000034885,-0.05550339854735836 +138299,691.4950000034886,-0.05550336413991017 +138300,691.5000000034887,-0.055503329732070755 +138301,691.5050000034888,-0.05550329532383957 +138302,691.5100000034889,-0.05550326091521606 +138303,691.515000003489,-0.05550322650619971 +138304,691.5200000034891,-0.05550319209678999 +138305,691.5250000034893,-0.05550315768698634 +138306,691.5300000034894,-0.05550312327678825 +138307,691.5350000034895,-0.05550308886619517 +138308,691.5400000034896,-0.05550305445520657 +138309,691.5450000034897,-0.055503020043821905 +138310,691.5500000034898,-0.05550298563204066 +138311,691.5550000034899,-0.05550295121986228 +138312,691.56000000349,-0.055502916807286244 +138313,691.5650000034901,-0.05550288239431201 +138314,691.5700000034902,-0.05550284798093905 +138315,691.5750000034903,-0.055502813567166825 +138316,691.5800000034905,-0.055502779152994806 +138317,691.5850000034906,-0.05550274473842245 +138318,691.5900000034907,-0.055502710323449236 +138319,691.5950000034908,-0.055502675908074624 +138320,691.6000000034909,-0.05550264149229808 +138321,691.605000003491,-0.05550260707611908 +138322,691.6100000034911,-0.05550257265953708 +138323,691.6150000034912,-0.05550253824255155 +138324,691.6200000034913,-0.055502503825161954 +138325,691.6250000034914,-0.05550246940736777 +138326,691.6300000034915,-0.05550243498916845 +138327,691.6350000034917,-0.05550240057056348 +138328,691.6400000034918,-0.055502366151552324 +138329,691.6450000034919,-0.05550233173213444 +138330,691.650000003492,-0.055502297312309296 +138331,691.6550000034921,-0.055502262892076375 +138332,691.6600000034922,-0.055502228471435135 +138333,691.6650000034923,-0.05550219405038504 +138334,691.6700000034924,-0.05550215962892557 +138335,691.6750000034925,-0.055502125207056184 +138336,691.6800000034926,-0.05550209078477636 +138337,691.6850000034927,-0.05550205636208556 +138338,691.6900000034929,-0.05550202193898325 +138339,691.695000003493,-0.05550198751546891 +138340,691.7000000034931,-0.055501953091542024 +138341,691.7050000034932,-0.055501918667202034 +138342,691.7100000034933,-0.05550188424244843 +138343,691.7150000034934,-0.05550184981728066 +138344,691.7200000034935,-0.05550181539169822 +138345,691.7250000034936,-0.05550178096570056 +138346,691.7300000034937,-0.055501746539287154 +138347,691.7350000034938,-0.05550171211245748 +138348,691.740000003494,-0.05550167768521102 +138349,691.745000003494,-0.05550164325754723 +138350,691.7500000034942,-0.05550160882946558 +138351,691.7550000034943,-0.055501574400965537 +138352,691.7600000034944,-0.055501539972046585 +138353,691.7650000034945,-0.055501505542708204 +138354,691.7700000034946,-0.05550147111294985 +138355,691.7750000034947,-0.05550143668277099 +138356,691.7800000034948,-0.05550140225217111 +138357,691.7850000034949,-0.05550136782114967 +138358,691.790000003495,-0.05550133338970616 +138359,691.7950000034951,-0.05550129895784005 +138360,691.8000000034953,-0.0555012645255508 +138361,691.8050000034954,-0.05550123009283789 +138362,691.8100000034955,-0.05550119565970078 +138363,691.8150000034956,-0.05550116122613896 +138364,691.8200000034957,-0.05550112679215191 +138365,691.8250000034958,-0.05550109235773908 +138366,691.8300000034959,-0.05550105792289998 +138367,691.835000003496,-0.05550102348763405 +138368,691.8400000034961,-0.055500989051940765 +138369,691.8450000034962,-0.05550095461581961 +138370,691.8500000034963,-0.055500920179270066 +138371,691.8550000034965,-0.0555008857422916 +138372,691.8600000034966,-0.055500851304883685 +138373,691.8650000034967,-0.0555008168670458 +138374,691.8700000034968,-0.055500782428777415 +138375,691.8750000034969,-0.055500747990078016 +138376,691.880000003497,-0.05550071355094706 +138377,691.8850000034971,-0.05550067911138403 +138378,691.8900000034972,-0.05550064467138842 +138379,691.8950000034973,-0.05550061023095968 +138380,691.9000000034974,-0.0555005757900973 +138381,691.9050000034975,-0.05550054134880075 +138382,691.9100000034977,-0.05550050690706952 +138383,691.9150000034978,-0.05550047246490307 +138384,691.9200000034979,-0.05550043802230088 +138385,691.925000003498,-0.05550040357926244 +138386,691.9300000034981,-0.05550036913578721 +138387,691.9350000034982,-0.055500334691874674 +138388,691.9400000034983,-0.055500300247524295 +138389,691.9450000034984,-0.05550026580273557 +138390,691.9500000034985,-0.05550023135750797 +138391,691.9550000034986,-0.05550019691184097 +138392,691.9600000034987,-0.05550016246573407 +138393,691.9650000034989,-0.055500128019186704 +138394,691.970000003499,-0.05550009357219838 +138395,691.9750000034991,-0.05550005912476858 +138396,691.9800000034992,-0.05550002467689677 +138397,691.9850000034993,-0.05549999022858244 +138398,691.9900000034994,-0.05549995577982504 +138399,691.9950000034995,-0.05549992133062409 +138400,692.0000000034996,-0.05549988688097904 +138401,692.0050000034997,-0.055499852430889375 +138402,692.0100000034998,-0.05549981798035458 +138403,692.0150000035,-0.05549978352937413 +138404,692.0200000035001,-0.0554997490779475 +138405,692.0250000035002,-0.055499714626074184 +138406,692.0300000035003,-0.055499680173753646 +138407,692.0350000035004,-0.05549964572098538 +138408,692.0400000035005,-0.055499611267768874 +138409,692.0450000035006,-0.05549957681410358 +138410,692.0500000035007,-0.055499542359988996 +138411,692.0550000035008,-0.05549950790542459 +138412,692.0600000035009,-0.05549947345040987 +138413,692.065000003501,-0.055499438994944285 +138414,692.0700000035011,-0.05549940453902734 +138415,692.0750000035013,-0.055499370082658504 +138416,692.0800000035014,-0.05549933562583726 +138417,692.0850000035015,-0.055499301168563095 +138418,692.0900000035016,-0.055499266710835486 +138419,692.0950000035017,-0.055499232252653914 +138420,692.1000000035018,-0.05549919779401786 +138421,692.1050000035019,-0.05549916333492682 +138422,692.110000003502,-0.05549912887538026 +138423,692.1150000035021,-0.05549909441537767 +138424,692.1200000035022,-0.05549905995491852 +138425,692.1250000035024,-0.05549902549400231 +138426,692.1300000035025,-0.05549899103262852 +138427,692.1350000035026,-0.055498956570796634 +138428,692.1400000035027,-0.05549892210850612 +138429,692.1450000035028,-0.05549888764575649 +138430,692.1500000035029,-0.05549885318254719 +138431,692.155000003503,-0.055498818718877733 +138432,692.1600000035031,-0.055498784254747593 +138433,692.1650000035032,-0.05549874979015625 +138434,692.1700000035033,-0.05549871532510319 +138435,692.1750000035034,-0.05549868085958791 +138436,692.1800000035036,-0.05549864639360987 +138437,692.1850000035037,-0.05549861192716858 +138438,692.1900000035038,-0.05549857746026352 +138439,692.1950000035039,-0.05549854299289416 +138440,692.200000003504,-0.05549850852505999 +138441,692.2050000035041,-0.0554984740567605 +138442,692.2100000035042,-0.05549843958799518 +138443,692.2150000035043,-0.055498405118763514 +138444,692.2200000035044,-0.05549837064906498 +138445,692.2250000035045,-0.055498336178899065 +138446,692.2300000035046,-0.05549830170826526 +138447,692.2350000035048,-0.05549826723716305 +138448,692.2400000035049,-0.055498232765591925 +138449,692.245000003505,-0.055498198293551355 +138450,692.2500000035051,-0.05549816382104085 +138451,692.2550000035052,-0.05549812934805988 +138452,692.2600000035053,-0.05549809487460793 +138453,692.2650000035054,-0.055498060400684494 +138454,692.2700000035055,-0.05549802592628906 +138455,692.2750000035056,-0.05549799145142111 +138456,692.2800000035057,-0.05549795697608015 +138457,692.2850000035058,-0.055497922500265646 +138458,692.290000003506,-0.0554978880239771 +138459,692.2950000035061,-0.05549785354721398 +138460,692.3000000035062,-0.05549781906997579 +138461,692.3050000035063,-0.055497784592262026 +138462,692.3100000035064,-0.055497750114072146 +138463,692.3150000035065,-0.05549771563540567 +138464,692.3200000035066,-0.05549768115626208 +138465,692.3250000035067,-0.05549764667664086 +138466,692.3300000035068,-0.055497612196541486 +138467,692.3350000035069,-0.05549757771596346 +138468,692.340000003507,-0.05549754323490628 +138469,692.3450000035072,-0.055497508753369416 +138470,692.3500000035073,-0.055497474271352376 +138471,692.3550000035074,-0.05549743978885464 +138472,692.3600000035075,-0.055497405305875706 +138473,692.3650000035076,-0.05549737082241505 +138474,692.3700000035077,-0.05549733633847218 +138475,692.3750000035078,-0.05549730185404657 +138476,692.3800000035079,-0.055497267369137716 +138477,692.385000003508,-0.05549723288374511 +138478,692.3900000035081,-0.05549719839786825 +138479,692.3950000035082,-0.05549716391150661 +138480,692.4000000035084,-0.05549712942465969 +138481,692.4050000035085,-0.05549709493732699 +138482,692.4100000035086,-0.05549706044950799 +138483,692.4150000035087,-0.05549702596120217 +138484,692.4200000035088,-0.05549699147240905 +138485,692.4250000035089,-0.0554969569831281 +138486,692.430000003509,-0.05549692249335882 +138487,692.4350000035091,-0.05549688800310071 +138488,692.4400000035092,-0.055496853512353256 +138489,692.4450000035093,-0.05549681902111594 +138490,692.4500000035094,-0.05549678452938826 +138491,692.4550000035096,-0.055496750037169716 +138492,692.4600000035097,-0.055496715544459806 +138493,692.4650000035098,-0.05549668105125801 +138494,692.4700000035099,-0.055496646557563825 +138495,692.47500000351,-0.05549661206337675 +138496,692.4800000035101,-0.05549657756869627 +138497,692.4850000035102,-0.05549654307352188 +138498,692.4900000035103,-0.055496508577853064 +138499,692.4950000035104,-0.05549647408168933 +138500,692.5000000035105,-0.05549643958503018 +138501,692.5050000035106,-0.05549640508787509 +138502,692.5100000035108,-0.05549637059022357 +138503,692.5150000035109,-0.0554963360920751 +138504,692.520000003511,-0.05549630159342918 +138505,692.5250000035111,-0.055496267094285304 +138506,692.5300000035112,-0.05549623259464296 +138507,692.5350000035113,-0.05549619809450167 +138508,692.5400000035114,-0.0554961635938609 +138509,692.5450000035115,-0.055496129092720156 +138510,692.5500000035116,-0.05549609459107893 +138511,692.5550000035117,-0.05549606008893673 +138512,692.5600000035118,-0.055496025586293046 +138513,692.565000003512,-0.05549599108314736 +138514,692.5700000035121,-0.0554959565794992 +138515,692.5750000035122,-0.05549592207534802 +138516,692.5800000035123,-0.05549588757069334 +138517,692.5850000035124,-0.05549585306553466 +138518,692.5900000035125,-0.055495818559871485 +138519,692.5950000035126,-0.05549578405370328 +138520,692.6000000035127,-0.055495749547029564 +138521,692.6050000035128,-0.055495715039849826 +138522,692.6100000035129,-0.055495680532163576 +138523,692.615000003513,-0.055495646023970294 +138524,692.6200000035132,-0.0554956115152695 +138525,692.6250000035133,-0.05549557700606067 +138526,692.6300000035134,-0.05549554249634332 +138527,692.6350000035135,-0.05549550798611694 +138528,692.6400000035136,-0.05549547347538102 +138529,692.6450000035137,-0.055495438964135065 +138530,692.6500000035138,-0.05549540445237856 +138531,692.6550000035139,-0.05549536994011103 +138532,692.660000003514,-0.05549533542733197 +138533,692.6650000035141,-0.055495300914040854 +138534,692.6700000035142,-0.0554952664002372 +138535,692.6750000035144,-0.0554952318859205 +138536,692.6800000035145,-0.05549519737109027 +138537,692.6850000035146,-0.05549516285574599 +138538,692.6900000035147,-0.05549512833988717 +138539,692.6950000035148,-0.055495093823513315 +138540,692.7000000035149,-0.05549505930662391 +138541,692.705000003515,-0.055495024789218465 +138542,692.7100000035151,-0.05549499027129647 +138543,692.7150000035152,-0.055494955752857435 +138544,692.7200000035153,-0.05549492123390085 +138545,692.7250000035154,-0.055494886714426234 +138546,692.7300000035156,-0.055494852194433064 +138547,692.7350000035157,-0.055494817673920865 +138548,692.7400000035158,-0.05549478315288913 +138549,692.7450000035159,-0.05549474863133736 +138550,692.750000003516,-0.05549471410926505 +138551,692.7550000035161,-0.05549467958667171 +138552,692.7600000035162,-0.055494645063556836 +138553,692.7650000035163,-0.055494610539919935 +138554,692.7700000035164,-0.0554945760157605 +138555,692.7750000035165,-0.05549454149107804 +138556,692.7800000035166,-0.05549450696587205 +138557,692.7850000035168,-0.05549447244014205 +138558,692.7900000035169,-0.05549443791388752 +138559,692.795000003517,-0.05549440338710798 +138560,692.8000000035171,-0.05549436885980293 +138561,692.8050000035172,-0.05549433433197187 +138562,692.8100000035173,-0.0554942998036143 +138563,692.8150000035174,-0.055494265274729726 +138564,692.8200000035175,-0.05549423074531765 +138565,692.8250000035176,-0.055494196215377586 +138566,692.8300000035177,-0.05549416168490902 +138567,692.8350000035178,-0.055494127153911464 +138568,692.840000003518,-0.05549409262238443 +138569,692.8450000035181,-0.05549405809032742 +138570,692.8500000035182,-0.05549402355773992 +138571,692.8550000035183,-0.05549398902462146 +138572,692.8600000035184,-0.05549395449097152 +138573,692.8650000035185,-0.05549391995678963 +138574,692.8700000035186,-0.055493885422075284 +138575,692.8750000035187,-0.05549385088682798 +138576,692.8800000035188,-0.05549381635104723 +138577,692.8850000035189,-0.055493781814732544 +138578,692.890000003519,-0.055493747277883414 +138579,692.8950000035192,-0.055493712740499364 +138580,692.9000000035193,-0.05549367820257989 +138581,692.9050000035194,-0.055493643664124494 +138582,692.9100000035195,-0.05549360912513268 +138583,692.9150000035196,-0.055493574585603965 +138584,692.9200000035197,-0.05549354004553786 +138585,692.9250000035198,-0.05549350550493385 +138586,692.9300000035199,-0.05549347096379145 +138587,692.93500000352,-0.05549343642211018 +138588,692.9400000035201,-0.055493401879889534 +138589,692.9450000035202,-0.055493367337129014 +138590,692.9500000035204,-0.05549333279382815 +138591,692.9550000035205,-0.055493298249986424 +138592,692.9600000035206,-0.055493263705603355 +138593,692.9650000035207,-0.055493229160678455 +138594,692.9700000035208,-0.055493194615211225 +138595,692.9750000035209,-0.05549316006920118 +138596,692.980000003521,-0.05549312552264783 +138597,692.9850000035211,-0.05549309097555067 +138598,692.9900000035212,-0.055493056427909214 +138599,692.9950000035213,-0.05549302187972298 +138600,693.0000000035214,-0.05549298733099146 +138601,693.0050000035216,-0.05549295278171417 +138602,693.0100000035217,-0.05549291823189063 +138603,693.0150000035218,-0.055492883681520326 +138604,693.0200000035219,-0.055492849130602796 +138605,693.025000003522,-0.05549281457913753 +138606,693.0300000035221,-0.055492780027124045 +138607,693.0350000035222,-0.055492745474561844 +138608,693.0400000035223,-0.05549271092145044 +138609,693.0450000035224,-0.055492676367789345 +138610,693.0500000035225,-0.05549264181357806 +138611,693.0550000035227,-0.05549260725881611 +138612,693.0600000035228,-0.055492572703503 +138613,693.0650000035229,-0.05549253814763824 +138614,693.070000003523,-0.055492503591221334 +138615,693.0750000035231,-0.05549246903425181 +138616,693.0800000035232,-0.055492434476729156 +138617,693.0850000035233,-0.05549239991865291 +138618,693.0900000035234,-0.05549236536002256 +138619,693.0950000035235,-0.05549233080083764 +138620,693.1000000035236,-0.05549229624109764 +138621,693.1050000035237,-0.055492261680802075 +138622,693.1100000035239,-0.05549222711995046 +138623,693.115000003524,-0.05549219255854231 +138624,693.1200000035241,-0.055492157996577134 +138625,693.1250000035242,-0.05549212343405445 +138626,693.1300000035243,-0.05549208887097376 +138627,693.1350000035244,-0.05549205430733459 +138628,693.1400000035245,-0.05549201974313644 +138629,693.1450000035246,-0.05549198517837884 +138630,693.1500000035247,-0.055491950613061294 +138631,693.1550000035248,-0.05549191604718331 +138632,693.1600000035249,-0.055491881480744396 +138633,693.165000003525,-0.055491846913744085 +138634,693.1700000035252,-0.055491812346181876 +138635,693.1750000035253,-0.055491777778057284 +138636,693.1800000035254,-0.05549174320936983 +138637,693.1850000035255,-0.055491708640119014 +138638,693.1900000035256,-0.05549167407030437 +138639,693.1950000035257,-0.0554916394999254 +138640,693.2000000035258,-0.055491604928981614 +138641,693.2050000035259,-0.05549157035747254 +138642,693.210000003526,-0.055491535785397686 +138643,693.2150000035261,-0.055491501212756575 +138644,693.2200000035263,-0.05549146663954871 +138645,693.2250000035264,-0.05549143206577361 +138646,693.2300000035265,-0.05549139749143079 +138647,693.2350000035266,-0.055491362916519765 +138648,693.2400000035267,-0.05549132834104005 +138649,693.2450000035268,-0.05549129376499116 +138650,693.2500000035269,-0.05549125918837261 +138651,693.255000003527,-0.05549122461118392 +138652,693.2600000035271,-0.05549119003342462 +138653,693.2650000035272,-0.055491155455094206 +138654,693.2700000035273,-0.0554911208761922 +138655,693.2750000035275,-0.055491086296718124 +138656,693.2800000035276,-0.05549105171667149 +138657,693.2850000035277,-0.055491017136051826 +138658,693.2900000035278,-0.05549098255485863 +138659,693.2950000035279,-0.055490947973091426 +138660,693.300000003528,-0.05549091339074973 +138661,693.3050000035281,-0.05549087880783307 +138662,693.3100000035282,-0.055490844224340946 +138663,693.3150000035283,-0.0554908096402729 +138664,693.3200000035284,-0.05549077505562843 +138665,693.3250000035285,-0.055490740470407064 +138666,693.3300000035287,-0.05549070588460832 +138667,693.3350000035288,-0.0554906712982317 +138668,693.3400000035289,-0.05549063671127675 +138669,693.345000003529,-0.05549060212374296 +138670,693.3500000035291,-0.055490567535629864 +138671,693.3550000035292,-0.05549053294693698 +138672,693.3600000035293,-0.05549049835766384 +138673,693.3650000035294,-0.055490463767809944 +138674,693.3700000035295,-0.055490429177374824 +138675,693.3750000035296,-0.05549039458635798 +138676,693.3800000035297,-0.055490359994758945 +138677,693.3850000035299,-0.05549032540257724 +138678,693.39000000353,-0.055490290809812395 +138679,693.3950000035301,-0.055490256216463904 +138680,693.4000000035302,-0.05549022162253131 +138681,693.4050000035303,-0.05549018702801412 +138682,693.4100000035304,-0.055490152432911874 +138683,693.4150000035305,-0.055490117837224066 +138684,693.4200000035306,-0.05549008324095023 +138685,693.4250000035307,-0.055490048644089886 +138686,693.4300000035308,-0.055490014046642555 +138687,693.435000003531,-0.05548997944860777 +138688,693.440000003531,-0.05548994484998504 +138689,693.4450000035312,-0.05548991025077388 +138690,693.4500000035313,-0.05548987565097382 +138691,693.4550000035314,-0.055489841050584375 +138692,693.4600000035315,-0.055489806449605085 +138693,693.4650000035316,-0.05548977184803546 +138694,693.4700000035317,-0.05548973724587502 +138695,693.4750000035318,-0.05548970264312328 +138696,693.4800000035319,-0.05548966803977979 +138697,693.485000003532,-0.055489633435844045 +138698,693.4900000035321,-0.05548959883131558 +138699,693.4950000035323,-0.05548956422619391 +138700,693.5000000035324,-0.05548952962047857 +138701,693.5050000035325,-0.05548949501416907 +138702,693.5100000035326,-0.05548946040726494 +138703,693.5150000035327,-0.055489425799765714 +138704,693.5200000035328,-0.05548939119167089 +138705,693.5250000035329,-0.05548935658298002 +138706,693.530000003533,-0.055489321973692614 +138707,693.5350000035331,-0.05548928736380819 +138708,693.5400000035332,-0.055489252753326286 +138709,693.5450000035333,-0.055489218142246416 +138710,693.5500000035335,-0.055489183530568115 +138711,693.5550000035336,-0.0554891489182909 +138712,693.5600000035337,-0.05548911430541429 +138713,693.5650000035338,-0.055489079691937816 +138714,693.5700000035339,-0.05548904507786101 +138715,693.575000003534,-0.05548901046318339 +138716,693.5800000035341,-0.055488975847904486 +138717,693.5850000035342,-0.0554889412320238 +138718,693.5900000035343,-0.0554889066155409 +138719,693.5950000035344,-0.05548887199845528 +138720,693.6000000035345,-0.05548883738076647 +138721,693.6050000035347,-0.05548880276247401 +138722,693.6100000035348,-0.055488768143577415 +138723,693.6150000035349,-0.05548873352407621 +138724,693.620000003535,-0.05548869890396994 +138725,693.6250000035351,-0.05548866428325809 +138726,693.6300000035352,-0.05548862966194022 +138727,693.6350000035353,-0.05548859504001587 +138728,693.6400000035354,-0.05548856041748454 +138729,693.6450000035355,-0.055488525794345746 +138730,693.6500000035356,-0.05548849117059905 +138731,693.6550000035357,-0.05548845654624395 +138732,693.6600000035359,-0.05548842192128001 +138733,693.665000003536,-0.055488387295706716 +138734,693.6700000035361,-0.05548835266952362 +138735,693.6750000035362,-0.055488318042730245 +138736,693.6800000035363,-0.05548828341532613 +138737,693.6850000035364,-0.05548824878731077 +138738,693.6900000035365,-0.05548821415868372 +138739,693.6950000035366,-0.05548817952944451 +138740,693.7000000035367,-0.05548814489959267 +138741,693.7050000035368,-0.05548811026912772 +138742,693.710000003537,-0.05548807563804918 +138743,693.715000003537,-0.0554880410063566 +138744,693.7200000035372,-0.05548800637404949 +138745,693.7250000035373,-0.0554879717411274 +138746,693.7300000035374,-0.05548793710758985 +138747,693.7350000035375,-0.05548790247343635 +138748,693.7400000035376,-0.05548786783866646 +138749,693.7450000035377,-0.05548783320327969 +138750,693.7500000035378,-0.05548779856727559 +138751,693.7550000035379,-0.055487763930653675 +138752,693.760000003538,-0.05548772929341347 +138753,693.7650000035381,-0.055487694655554524 +138754,693.7700000035383,-0.055487660017076355 +138755,693.7750000035384,-0.05548762537797849 +138756,693.7800000035385,-0.05548759073826046 +138757,693.7850000035386,-0.055487556097921824 +138758,693.7900000035387,-0.055487521456962084 +138759,693.7950000035388,-0.05548748681538078 +138760,693.8000000035389,-0.05548745217317743 +138761,693.805000003539,-0.05548741753035159 +138762,693.8100000035391,-0.05548738288690278 +138763,693.8150000035392,-0.05548734824283054 +138764,693.8200000035393,-0.05548731359813438 +138765,693.8250000035395,-0.05548727895281386 +138766,693.8300000035396,-0.05548724430686848 +138767,693.8350000035397,-0.05548720966029779 +138768,693.8400000035398,-0.05548717501310134 +138769,693.8450000035399,-0.05548714036527864 +138770,693.85000000354,-0.05548710571682924 +138771,693.8550000035401,-0.05548707106775265 +138772,693.8600000035402,-0.05548703641804842 +138773,693.8650000035403,-0.05548700176771608 +138774,693.8700000035404,-0.055486967116755166 +138775,693.8750000035405,-0.055486932465165215 +138776,693.8800000035407,-0.055486897812945746 +138777,693.8850000035408,-0.055486863160096295 +138778,693.8900000035409,-0.055486828506616404 +138779,693.895000003541,-0.055486793852505614 +138780,693.9000000035411,-0.05548675919776345 +138781,693.9050000035412,-0.05548672454238944 +138782,693.9100000035413,-0.05548668988638313 +138783,693.9150000035414,-0.055486655229744046 +138784,693.9200000035415,-0.05548662057247172 +138785,693.9250000035416,-0.05548658591456571 +138786,693.9300000035417,-0.055486551256025536 +138787,693.9350000035419,-0.05548651659685072 +138788,693.940000003542,-0.055486481937040824 +138789,693.9450000035421,-0.05548644727659536 +138790,693.9500000035422,-0.055486412615513875 +138791,693.9550000035423,-0.05548637795379589 +138792,693.9600000035424,-0.055486343291440976 +138793,693.9650000035425,-0.05548630862844864 +138794,693.9700000035426,-0.05548627396481842 +138795,693.9750000035427,-0.05548623930054987 +138796,693.9800000035428,-0.05548620463564251 +138797,693.985000003543,-0.055486169970095874 +138798,693.9900000035431,-0.05548613530390951 +138799,693.9950000035432,-0.05548610063708296 +138800,694.0000000035433,-0.055486065969615736 +138801,694.0050000035434,-0.055486031301507414 +138802,694.0100000035435,-0.055485996632757495 +138803,694.0150000035436,-0.05548596196336553 +138804,694.0200000035437,-0.05548592729333106 +138805,694.0250000035438,-0.055485892622653625 +138806,694.0300000035439,-0.05548585795133275 +138807,694.035000003544,-0.05548582327936798 +138808,694.0400000035442,-0.05548578860675886 +138809,694.0450000035443,-0.055485753933504925 +138810,694.0500000035444,-0.0554857192596057 +138811,694.0550000035445,-0.055485684585060736 +138812,694.0600000035446,-0.05548564990986958 +138813,694.0650000035447,-0.055485615234031754 +138814,694.0700000035448,-0.0554855805575468 +138815,694.0750000035449,-0.055485545880414266 +138816,694.080000003545,-0.05548551120263369 +138817,694.0850000035451,-0.0554854765242046 +138818,694.0900000035452,-0.05548544184512655 +138819,694.0950000035454,-0.05548540716539907 +138820,694.1000000035455,-0.0554853724850217 +138821,694.1050000035456,-0.055485337803993985 +138822,694.1100000035457,-0.05548530312231547 +138823,694.1150000035458,-0.05548526843998569 +138824,694.1200000035459,-0.05548523375700418 +138825,694.125000003546,-0.05548519907337048 +138826,694.1300000035461,-0.055485164389084136 +138827,694.1350000035462,-0.05548512970414468 +138828,694.1400000035463,-0.05548509501855168 +138829,694.1450000035464,-0.055485060332304645 +138830,694.1500000035466,-0.05548502564540313 +138831,694.1550000035467,-0.055484990957846675 +138832,694.1600000035468,-0.05548495626963482 +138833,694.1650000035469,-0.05548492158076712 +138834,694.170000003547,-0.05548488689124311 +138835,694.1750000035471,-0.055484852201062314 +138836,694.1800000035472,-0.05548481751022429 +138837,694.1850000035473,-0.055484782818728574 +138838,694.1900000035474,-0.055484748126574716 +138839,694.1950000035475,-0.05548471343376225 +138840,694.2000000035476,-0.055484678740290734 +138841,694.2050000035478,-0.05548464404615969 +138842,694.2100000035479,-0.055484609351368674 +138843,694.215000003548,-0.05548457465591723 +138844,694.2200000035481,-0.055484539959804895 +138845,694.2250000035482,-0.05548450526303121 +138846,694.2300000035483,-0.05548447056559573 +138847,694.2350000035484,-0.05548443586749798 +138848,694.2400000035485,-0.05548440116873752 +138849,694.2450000035486,-0.0554843664693139 +138850,694.2500000035487,-0.055484331769226646 +138851,694.2550000035488,-0.055484297068475304 +138852,694.260000003549,-0.05548426236705942 +138853,694.2650000035491,-0.05548422766497855 +138854,694.2700000035492,-0.055484192962232226 +138855,694.2750000035493,-0.055484158258820006 +138856,694.2800000035494,-0.055484123554741416 +138857,694.2850000035495,-0.05548408884999601 +138858,694.2900000035496,-0.05548405414458334 +138859,694.2950000035497,-0.055484019438502945 +138860,694.3000000035498,-0.055483984731754366 +138861,694.3050000035499,-0.05548395002433715 +138862,694.31000000355,-0.05548391531625085 +138863,694.3150000035502,-0.055483880607495 +138864,694.3200000035503,-0.05548384589806915 +138865,694.3250000035504,-0.05548381118797286 +138866,694.3300000035505,-0.05548377647720567 +138867,694.3350000035506,-0.055483741765767106 +138868,694.3400000035507,-0.055483707053656746 +138869,694.3450000035508,-0.05548367234087411 +138870,694.3500000035509,-0.05548363762741876 +138871,694.355000003551,-0.05548360291329023 +138872,694.3600000035511,-0.05548356819848807 +138873,694.3650000035512,-0.05548353348301184 +138874,694.3700000035514,-0.055483498766861074 +138875,694.3750000035515,-0.05548346405003534 +138876,694.3800000035516,-0.05548342933253416 +138877,694.3850000035517,-0.0554833946143571 +138878,694.3900000035518,-0.05548335989550368 +138879,694.3950000035519,-0.05548332517597348 +138880,694.400000003552,-0.05548329045576604 +138881,694.4050000035521,-0.0554832557348809 +138882,694.4100000035522,-0.0554832210133176 +138883,694.4150000035523,-0.05548318629107571 +138884,694.4200000035524,-0.05548315156815477 +138885,694.4250000035526,-0.055483116844554335 +138886,694.4300000035527,-0.05548308212027393 +138887,694.4350000035528,-0.05548304739531314 +138888,694.4400000035529,-0.05548301266967148 +138889,694.445000003553,-0.055482977943348534 +138890,694.4500000035531,-0.05548294321634381 +138891,694.4550000035532,-0.05548290848865689 +138892,694.4600000035533,-0.05548287376028731 +138893,694.4650000035534,-0.05548283903123462 +138894,694.4700000035535,-0.05548280430149838 +138895,694.4750000035536,-0.055482769571078124 +138896,694.4800000035538,-0.055482734839973416 +138897,694.4850000035539,-0.055482700108183805 +138898,694.490000003554,-0.05548266537570883 +138899,694.4950000035541,-0.05548263064254806 +138900,694.5000000035542,-0.05548259590870103 +138901,694.5050000035543,-0.055482561174167305 +138902,694.5100000035544,-0.055482526438946425 +138903,694.5150000035545,-0.055482491703037935 +138904,694.5200000035546,-0.055482456966441406 +138905,694.5250000035547,-0.05548242222915637 +138906,694.5300000035548,-0.055482387491182394 +138907,694.535000003555,-0.05548235275251902 +138908,694.5400000035551,-0.0554823180131658 +138909,694.5450000035552,-0.05548228327312228 +138910,694.5500000035553,-0.05548224853238803 +138911,694.5550000035554,-0.05548221379096259 +138912,694.5600000035555,-0.05548217904884551 +138913,694.5650000035556,-0.05548214430603636 +138914,694.5700000035557,-0.05548210956253467 +138915,694.5750000035558,-0.05548207481834001 +138916,694.5800000035559,-0.05548204007345193 +138917,694.585000003556,-0.05548200532786997 +138918,694.5900000035562,-0.0554819705815937 +138919,694.5950000035563,-0.05548193583462266 +138920,694.6000000035564,-0.055481901086956414 +138921,694.6050000035565,-0.05548186633859452 +138922,694.6100000035566,-0.05548183158953651 +138923,694.6150000035567,-0.05548179683978195 +138924,694.6200000035568,-0.0554817620893304 +138925,694.6250000035569,-0.055481727338181415 +138926,694.630000003557,-0.055481692586334536 +138927,694.6350000035571,-0.05548165783378931 +138928,694.6400000035572,-0.05548162308054532 +138929,694.6450000035574,-0.05548158832660211 +138930,694.6500000035575,-0.055481553571959226 +138931,694.6550000035576,-0.05548151881661623 +138932,694.6600000035577,-0.05548148406057268 +138933,694.6650000035578,-0.05548144930382813 +138934,694.6700000035579,-0.05548141454638213 +138935,694.675000003558,-0.05548137978823424 +138936,694.6800000035581,-0.055481345029384004 +138937,694.6850000035582,-0.05548131026983098 +138938,694.6900000035583,-0.05548127550957475 +138939,694.6950000035584,-0.05548124074861484 +138940,694.7000000035586,-0.05548120598695081 +138941,694.7050000035587,-0.055481171224582244 +138942,694.7100000035588,-0.05548113646150867 +138943,694.7150000035589,-0.05548110169772964 +138944,694.720000003559,-0.055481066933244734 +138945,694.7250000035591,-0.0554810321680535 +138946,694.7300000035592,-0.055480997402155494 +138947,694.7350000035593,-0.055480962635550274 +138948,694.7400000035594,-0.05548092786823739 +138949,694.7450000035595,-0.05548089310021641 +138950,694.7500000035596,-0.055480858331486874 +138951,694.7550000035598,-0.05548082356204836 +138952,694.7600000035599,-0.05548078879190041 +138953,694.76500000356,-0.0554807540210426 +138954,694.7700000035601,-0.055480719249474474 +138955,694.7750000035602,-0.0554806844771956 +138956,694.7800000035603,-0.05548064970420552 +138957,694.7850000035604,-0.055480614930503803 +138958,694.7900000035605,-0.05548058015609002 +138959,694.7950000035606,-0.055480545380963704 +138960,694.8000000035607,-0.055480510605124427 +138961,694.8050000035608,-0.05548047582857174 +138962,694.810000003561,-0.05548044105130522 +138963,694.8150000035611,-0.05548040627332442 +138964,694.8200000035612,-0.05548037149462889 +138965,694.8250000035613,-0.05548033671521819 +138966,694.8300000035614,-0.05548030193509189 +138967,694.8350000035615,-0.05548026715424955 +138968,694.8400000035616,-0.05548023237269071 +138969,694.8450000035617,-0.05548019759041495 +138970,694.8500000035618,-0.05548016280742182 +138971,694.8550000035619,-0.05548012802371089 +138972,694.860000003562,-0.055480093239281714 +138973,694.8650000035622,-0.055480058454133854 +138974,694.8700000035623,-0.05548002366826687 +138975,694.8750000035624,-0.05547998888168033 +138976,694.8800000035625,-0.055479954094373785 +138977,694.8850000035626,-0.05547991930634679 +138978,694.8900000035627,-0.05547988451759892 +138979,694.8950000035628,-0.055479849728129735 +138980,694.9000000035629,-0.0554798149379388 +138981,694.905000003563,-0.05547978014702567 +138982,694.9100000035631,-0.055479745355389895 +138983,694.9150000035633,-0.05547971056303105 +138984,694.9200000035634,-0.0554796757699487 +138985,694.9250000035635,-0.05547964097614239 +138986,694.9300000035636,-0.05547960618161171 +138987,694.9350000035637,-0.055479571386356216 +138988,694.9400000035638,-0.055479536590375446 +138989,694.9450000035639,-0.055479501793668985 +138990,694.950000003564,-0.05547946699623638 +138991,694.9550000035641,-0.05547943219807721 +138992,694.9600000035642,-0.05547939739919103 +138993,694.9650000035643,-0.0554793625995774 +138994,694.9700000035645,-0.05547932779923589 +138995,694.9750000035646,-0.05547929299816608 +138996,694.9800000035647,-0.055479258196367495 +138997,694.9850000035648,-0.05547922339383973 +138998,694.9900000035649,-0.05547918859058234 +138999,694.995000003565,-0.05547915378659488 +139000,695.0000000035651,-0.05547911898187692 +139001,695.0050000035652,-0.05547908417642803 +139002,695.0100000035653,-0.055479049370247766 +139003,695.0150000035654,-0.0554790145633357 +139004,695.0200000035655,-0.05547897975569138 +139005,695.0250000035657,-0.0554789449473144 +139006,695.0300000035658,-0.0554789101382043 +139007,695.0350000035659,-0.05547887532836066 +139008,695.040000003566,-0.055478840517783026 +139009,695.0450000035661,-0.05547880570647098 +139010,695.0500000035662,-0.05547877089442409 +139011,695.0550000035663,-0.055478736081641916 +139012,695.0600000035664,-0.055478701268124014 +139013,695.0650000035665,-0.055478666453869965 +139014,695.0700000035666,-0.05547863163887934 +139015,695.0750000035667,-0.05547859682315168 +139016,695.0800000035669,-0.05547856200668656 +139017,695.085000003567,-0.05547852718948356 +139018,695.0900000035671,-0.05547849237154223 +139019,695.0950000035672,-0.055478457552862154 +139020,695.1000000035673,-0.05547842273344288 +139021,695.1050000035674,-0.055478387913283994 +139022,695.1100000035675,-0.055478353092385066 +139023,695.1150000035676,-0.05547831827074563 +139024,695.1200000035677,-0.05547828344836529 +139025,695.1250000035678,-0.055478248625243594 +139026,695.130000003568,-0.05547821380138011 +139027,695.135000003568,-0.0554781789767744 +139028,695.1400000035682,-0.05547814415142605 +139029,695.1450000035683,-0.05547810932533462 +139030,695.1500000035684,-0.05547807449849967 +139031,695.1550000035685,-0.05547803967092078 +139032,695.1600000035686,-0.05547800484259752 +139033,695.1650000035687,-0.05547797001352944 +139034,695.1700000035688,-0.05547793518371613 +139035,695.1750000035689,-0.05547790035315714 +139036,695.180000003569,-0.055477865521852056 +139037,695.1850000035691,-0.05547783068980043 +139038,695.1900000035693,-0.05547779585700184 +139039,695.1950000035694,-0.055477761023455856 +139040,695.2000000035695,-0.05547772618916206 +139041,695.2050000035696,-0.05547769135412 +139042,695.2100000035697,-0.055477656518329255 +139043,695.2150000035698,-0.05547762168178939 +139044,695.2200000035699,-0.055477586844499986 +139045,695.22500000357,-0.0554775520064606 +139046,695.2300000035701,-0.0554775171676708 +139047,695.2350000035702,-0.055477482328130164 +139048,695.2400000035703,-0.055477447487838276 +139049,695.2450000035705,-0.05547741264679469 +139050,695.2500000035706,-0.05547737780499898 +139051,695.2550000035707,-0.05547734296245071 +139052,695.2600000035708,-0.05547730811914946 +139053,695.2650000035709,-0.0554772732750948 +139054,695.270000003571,-0.055477238430286305 +139055,695.2750000035711,-0.05547720358472354 +139056,695.2800000035712,-0.05547716873840608 +139057,695.2850000035713,-0.055477133891333484 +139058,695.2900000035714,-0.05547709904350533 +139059,695.2950000035715,-0.05547706419492121 +139060,695.3000000035717,-0.05547702934558068 +139061,695.3050000035718,-0.055476994495483295 +139062,695.3100000035719,-0.05547695964462866 +139063,695.315000003572,-0.05547692479301634 +139064,695.3200000035721,-0.05547688994064589 +139065,695.3250000035722,-0.05547685508751688 +139066,695.3300000035723,-0.0554768202336289 +139067,695.3350000035724,-0.05547678537898152 +139068,695.3400000035725,-0.055476750523574314 +139069,695.3450000035726,-0.055476715667406855 +139070,695.3500000035727,-0.05547668081047871 +139071,695.3550000035729,-0.055476645952789456 +139072,695.360000003573,-0.055476611094338664 +139073,695.3650000035731,-0.05547657623512592 +139074,695.3700000035732,-0.055476541375150776 +139075,695.3750000035733,-0.05547650651441282 +139076,695.3800000035734,-0.05547647165291163 +139077,695.3850000035735,-0.055476436790646774 +139078,695.3900000035736,-0.05547640192761782 +139079,695.3950000035737,-0.05547636706382434 +139080,695.4000000035738,-0.055476332199265926 +139081,695.405000003574,-0.05547629733394216 +139082,695.410000003574,-0.055476262467852595 +139083,695.4150000035742,-0.05547622760099681 +139084,695.4200000035743,-0.055476192733374376 +139085,695.4250000035744,-0.05547615786498489 +139086,695.4300000035745,-0.055476122995827895 +139087,695.4350000035746,-0.05547608812590299 +139088,695.4400000035747,-0.05547605325520975 +139089,695.4450000035748,-0.05547601838374773 +139090,695.4500000035749,-0.05547598351151653 +139091,695.455000003575,-0.05547594863851572 +139092,695.4600000035751,-0.05547591376474486 +139093,695.4650000035753,-0.05547587889020355 +139094,695.4700000035754,-0.055475844014891355 +139095,695.4750000035755,-0.05547580913880785 +139096,695.4800000035756,-0.05547577426195261 +139097,695.4850000035757,-0.05547573938432523 +139098,695.4900000035758,-0.055475704505925254 +139099,695.4950000035759,-0.05547566962675228 +139100,695.500000003576,-0.0554756347468059 +139101,695.5050000035761,-0.05547559986608566 +139102,695.5100000035762,-0.055475564984591164 +139103,695.5150000035763,-0.05547553010232197 +139104,695.5200000035765,-0.055475495219277665 +139105,695.5250000035766,-0.055475460335457825 +139106,695.5300000035767,-0.05547542545086202 +139107,695.5350000035768,-0.05547539056548985 +139108,695.5400000035769,-0.055475355679340865 +139109,695.545000003577,-0.05547532079241466 +139110,695.5500000035771,-0.05547528590471082 +139111,695.5550000035772,-0.05547525101622891 +139112,695.5600000035773,-0.05547521612696852 +139113,695.5650000035774,-0.05547518123692922 +139114,695.5700000035775,-0.05547514634611058 +139115,695.5750000035777,-0.05547511145451219 +139116,695.5800000035778,-0.055475076562133636 +139117,695.5850000035779,-0.05547504166897448 +139118,695.590000003578,-0.05547500677503433 +139119,695.5950000035781,-0.05547497188031274 +139120,695.6000000035782,-0.05547493698480929 +139121,695.6050000035783,-0.05547490208852358 +139122,695.6100000035784,-0.055474867191455175 +139123,695.6150000035785,-0.05547483229360366 +139124,695.6200000035786,-0.055474797394968606 +139125,695.6250000035787,-0.0554747624955496 +139126,695.6300000035789,-0.055474727595346225 +139127,695.635000003579,-0.05547469269435807 +139128,695.6400000035791,-0.055474657792584696 +139129,695.6450000035792,-0.0554746228900257 +139130,695.6500000035793,-0.055474587986680646 +139131,695.6550000035794,-0.05547455308254914 +139132,695.6600000035795,-0.055474518177630744 +139133,695.6650000035796,-0.055474483271925036 +139134,695.6700000035797,-0.05547444836543161 +139135,695.6750000035798,-0.05547441345815005 +139136,695.68000000358,-0.05547437855007994 +139137,695.6850000035801,-0.05547434364122083 +139138,695.6900000035802,-0.05547430873157234 +139139,695.6950000035803,-0.05547427382113403 +139140,695.7000000035804,-0.05547423890990549 +139141,695.7050000035805,-0.05547420399788631 +139142,695.7100000035806,-0.055474169085076054 +139143,695.7150000035807,-0.055474134171474336 +139144,695.7200000035808,-0.055474099257080696 +139145,695.7250000035809,-0.055474064341894745 +139146,695.730000003581,-0.055474029425916074 +139147,695.7350000035811,-0.055473994509144246 +139148,695.7400000035813,-0.05547395959157885 +139149,695.7450000035814,-0.055473924673219474 +139150,695.7500000035815,-0.0554738897540657 +139151,695.7550000035816,-0.055473854834117105 +139152,695.7600000035817,-0.05547381991337328 +139153,695.7650000035818,-0.055473784991833794 +139154,695.7700000035819,-0.05547375006949825 +139155,695.775000003582,-0.05547371514636623 +139156,695.7800000035821,-0.05547368022243731 +139157,695.7850000035822,-0.05547364529771109 +139158,695.7900000035823,-0.05547361037218714 +139159,695.7950000035825,-0.055473575445865037 +139160,695.8000000035826,-0.05547354051874439 +139161,695.8050000035827,-0.055473505590824757 +139162,695.8100000035828,-0.055473470662105756 +139163,695.8150000035829,-0.05547343573258695 +139164,695.820000003583,-0.05547340080226792 +139165,695.8250000035831,-0.05547336587114826 +139166,695.8300000035832,-0.05547333093922755 +139167,695.8350000035833,-0.05547329600650539 +139168,695.8400000035834,-0.05547326107298136 +139169,695.8450000035836,-0.05547322613865504 +139170,695.8500000035837,-0.055473191203526014 +139171,695.8550000035838,-0.05547315626759388 +139172,695.8600000035839,-0.05547312133085822 +139173,695.865000003584,-0.05547308639331861 +139174,695.8700000035841,-0.05547305145497465 +139175,695.8750000035842,-0.05547301651582592 +139176,695.8800000035843,-0.055472981575872014 +139177,695.8850000035844,-0.055472946635112506 +139178,695.8900000035845,-0.05547291169354699 +139179,695.8950000035846,-0.05547287675117505 +139180,695.9000000035848,-0.05547284180799629 +139181,695.9050000035849,-0.05547280686401028 +139182,695.910000003585,-0.05547277191921662 +139183,695.9150000035851,-0.05547273697361487 +139184,695.9200000035852,-0.05547270202720465 +139185,695.9250000035853,-0.05547266707998553 +139186,695.9300000035854,-0.05547263213195711 +139187,695.9350000035855,-0.05547259718311898 +139188,695.9400000035856,-0.05547256223347071 +139189,695.9450000035857,-0.0554725272830119 +139190,695.9500000035858,-0.055472492331742146 +139191,695.955000003586,-0.05547245737966102 +139192,695.9600000035861,-0.05547242242676812 +139193,695.9650000035862,-0.05547238747306304 +139194,695.9700000035863,-0.05547235251854536 +139195,695.9750000035864,-0.055472317563214676 +139196,695.9800000035865,-0.05547228260707057 +139197,695.9850000035866,-0.05547224765011264 +139198,695.9900000035867,-0.055472212692340477 +139199,695.9950000035868,-0.055472177733753666 +139200,696.0000000035869,-0.05547214277435179 +139201,696.005000003587,-0.05547210781413446 +139202,696.0100000035872,-0.05547207285310124 +139203,696.0150000035873,-0.055472037891251734 +139204,696.0200000035874,-0.05547200292858553 +139205,696.0250000035875,-0.055471967965102224 +139206,696.0300000035876,-0.0554719330008014 +139207,696.0350000035877,-0.05547189803568266 +139208,696.0400000035878,-0.05547186306974557 +139209,696.0450000035879,-0.05547182810298975 +139210,696.050000003588,-0.055471793135414775 +139211,696.0550000035881,-0.05547175816702023 +139212,696.0600000035882,-0.05547172319780572 +139213,696.0650000035884,-0.05547168822777083 +139214,696.0700000035885,-0.055471653256915165 +139215,696.0750000035886,-0.05547161828523829 +139216,696.0800000035887,-0.055471583312739825 +139217,696.0850000035888,-0.05547154833941934 +139218,696.0900000035889,-0.055471513365276455 +139219,696.095000003589,-0.05547147839031074 +139220,696.1000000035891,-0.05547144341452179 +139221,696.1050000035892,-0.05547140843790919 +139222,696.1100000035893,-0.05547137346047255 +139223,696.1150000035894,-0.05547133848221145 +139224,696.1200000035896,-0.0554713035031255 +139225,696.1250000035897,-0.05547126852321427 +139226,696.1300000035898,-0.05547123354247736 +139227,696.1350000035899,-0.05547119856091438 +139228,696.14000000359,-0.0554711635785249 +139229,696.1450000035901,-0.055471128595308526 +139230,696.1500000035902,-0.05547109361126485 +139231,696.1550000035903,-0.055471058626393475 +139232,696.1600000035904,-0.05547102364069397 +139233,696.1650000035905,-0.05547098865416595 +139234,696.1700000035906,-0.05547095366680901 +139235,696.1750000035908,-0.05547091867862274 +139236,696.1800000035909,-0.055470883689606724 +139237,696.185000003591,-0.055470848699760565 +139238,696.1900000035911,-0.05547081370908387 +139239,696.1950000035912,-0.055470778717576226 +139240,696.2000000035913,-0.055470743725237213 +139241,696.2050000035914,-0.05547070873206644 +139242,696.2100000035915,-0.0554706737380635 +139243,696.2150000035916,-0.05547063874322798 +139244,696.2200000035917,-0.055470603747559494 +139245,696.2250000035918,-0.05547056875105763 +139246,696.230000003592,-0.05547053375372197 +139247,696.2350000035921,-0.055470498755552114 +139248,696.2400000035922,-0.055470463756547676 +139249,696.2450000035923,-0.05547042875670823 +139250,696.2500000035924,-0.05547039375603339 +139251,696.2550000035925,-0.05547035875452273 +139252,696.2600000035926,-0.05547032375217587 +139253,696.2650000035927,-0.0554702887489924 +139254,696.2700000035928,-0.055470253744971915 +139255,696.2750000035929,-0.055470218740114006 +139256,696.280000003593,-0.05547018373441829 +139257,696.2850000035932,-0.05547014872788434 +139258,696.2900000035933,-0.05547011372051175 +139259,696.2950000035934,-0.055470078712300135 +139260,696.3000000035935,-0.05547004370324909 +139261,696.3050000035936,-0.05547000869335821 +139262,696.3100000035937,-0.055469973682627086 +139263,696.3150000035938,-0.05546993867105533 +139264,696.3200000035939,-0.05546990365864254 +139265,696.325000003594,-0.05546986864538829 +139266,696.3300000035941,-0.0554698336312922 +139267,696.3350000035942,-0.05546979861635387 +139268,696.3400000035944,-0.055469763600572874 +139269,696.3450000035945,-0.05546972858394884 +139270,696.3500000035946,-0.05546969356648134 +139271,696.3550000035947,-0.05546965854816999 +139272,696.3600000035948,-0.055469623529014384 +139273,696.3650000035949,-0.05546958850901413 +139274,696.370000003595,-0.055469553488168816 +139275,696.3750000035951,-0.05546951846647805 +139276,696.3800000035952,-0.05546948344394143 +139277,696.3850000035953,-0.05546944842055855 +139278,696.3900000035954,-0.055469413396329006 +139279,696.3950000035956,-0.055469378371252404 +139280,696.4000000035957,-0.05546934334532834 +139281,696.4050000035958,-0.05546930831855643 +139282,696.4100000035959,-0.05546927329093626 +139283,696.415000003596,-0.05546923826246741 +139284,696.4200000035961,-0.055469203233149515 +139285,696.4250000035962,-0.055469168202982165 +139286,696.4300000035963,-0.05546913317196496 +139287,696.4350000035964,-0.05546909814009749 +139288,696.4400000035965,-0.05546906310737937 +139289,696.4450000035966,-0.0554690280738102 +139290,696.4500000035968,-0.055468993039389576 +139291,696.4550000035969,-0.0554689580041171 +139292,696.460000003597,-0.05546892296799237 +139293,696.4650000035971,-0.05546888793101499 +139294,696.4700000035972,-0.05546885289318456 +139295,696.4750000035973,-0.05546881785450069 +139296,696.4800000035974,-0.05546878281496298 +139297,696.4850000035975,-0.05546874777457103 +139298,696.4900000035976,-0.05546871273332444 +139299,696.4950000035977,-0.05546867769122281 +139300,696.5000000035978,-0.055468642648265745 +139301,696.505000003598,-0.055468607604452845 +139302,696.5100000035981,-0.05546857255978371 +139303,696.5150000035982,-0.05546853751425795 +139304,696.5200000035983,-0.05546850246787517 +139305,696.5250000035984,-0.055468467420634965 +139306,696.5300000035985,-0.05546843237253694 +139307,696.5350000035986,-0.055468397323580707 +139308,696.5400000035987,-0.055468362273765864 +139309,696.5450000035988,-0.05546832722309201 +139310,696.5500000035989,-0.05546829217155874 +139311,696.555000003599,-0.055468257119165684 +139312,696.5600000035992,-0.05546822206591243 +139313,696.5650000035993,-0.05546818701179858 +139314,696.5700000035994,-0.05546815195682373 +139315,696.5750000035995,-0.05546811690098751 +139316,696.5800000035996,-0.0554680818442895 +139317,696.5850000035997,-0.05546804678672932 +139318,696.5900000035998,-0.055468011728306565 +139319,696.5950000035999,-0.05546797666902084 +139320,696.6000000036,-0.05546794160887176 +139321,696.6050000036001,-0.055467906547858915 +139322,696.6100000036002,-0.05546787148598193 +139323,696.6150000036004,-0.05546783642324039 +139324,696.6200000036005,-0.05546780135963391 +139325,696.6250000036006,-0.05546776629516209 +139326,696.6300000036007,-0.055467731229824555 +139327,696.6350000036008,-0.05546769616362087 +139328,696.6400000036009,-0.055467661096550686 +139329,696.645000003601,-0.05546762602861358 +139330,696.6500000036011,-0.055467590959809174 +139331,696.6550000036012,-0.05546755589013706 +139332,696.6600000036013,-0.055467520819596855 +139333,696.6650000036014,-0.055467485748188154 +139334,696.6700000036016,-0.05546745067591057 +139335,696.6750000036017,-0.05546741560276373 +139336,696.6800000036018,-0.0554673805287472 +139337,696.6850000036019,-0.05546734545386062 +139338,696.690000003602,-0.055467310378103575 +139339,696.6950000036021,-0.055467275301475695 +139340,696.7000000036022,-0.05546724022397656 +139341,696.7050000036023,-0.055467205145605804 +139342,696.7100000036024,-0.05546717006636301 +139343,696.7150000036025,-0.055467134986247814 +139344,696.7200000036026,-0.055467099905259803 +139345,696.7250000036028,-0.05546706482339859 +139346,696.7300000036029,-0.055467029740663774 +139347,696.735000003603,-0.055466994657054985 +139348,696.7400000036031,-0.05546695957257181 +139349,696.7450000036032,-0.05546692448721386 +139350,696.7500000036033,-0.05546688940098076 +139351,696.7550000036034,-0.055466854313872105 +139352,696.7600000036035,-0.055466819225887504 +139353,696.7650000036036,-0.05546678413702657 +139354,696.7700000036037,-0.0554667490472889 +139355,696.7750000036039,-0.05546671395667413 +139356,696.780000003604,-0.055466678865181834 +139357,696.7850000036041,-0.05546664377281165 +139358,696.7900000036042,-0.055466608679563184 +139359,696.7950000036043,-0.055466573585436024 +139360,696.8000000036044,-0.0554665384904298 +139361,696.8050000036045,-0.05546650339454412 +139362,696.8100000036046,-0.05546646829777859 +139363,696.8150000036047,-0.055466433200132816 +139364,696.8200000036048,-0.055466398101606404 +139365,696.8250000036049,-0.055466363002198975 +139366,696.830000003605,-0.05546632790191015 +139367,696.8350000036052,-0.05546629280073951 +139368,696.8400000036053,-0.05546625769868669 +139369,696.8450000036054,-0.05546622259575129 +139370,696.8500000036055,-0.05546618749193293 +139371,696.8550000036056,-0.0554661523872312 +139372,696.8600000036057,-0.05546611728164574 +139373,696.8650000036058,-0.055466082175176144 +139374,696.8700000036059,-0.055466047067822016 +139375,696.875000003606,-0.055466011959582985 +139376,696.8800000036061,-0.05546597685045866 +139377,696.8850000036063,-0.055465941740448645 +139378,696.8900000036064,-0.05546590662955255 +139379,696.8950000036065,-0.05546587151777 +139380,696.9000000036066,-0.05546583640510059 +139381,696.9050000036067,-0.055465801291543944 +139382,696.9100000036068,-0.05546576617709967 +139383,696.9150000036069,-0.05546573106176739 +139384,696.920000003607,-0.0554656959455467 +139385,696.9250000036071,-0.05546566082843722 +139386,696.9300000036072,-0.055465625710438574 +139387,696.9350000036073,-0.055465590591550366 +139388,696.9400000036075,-0.055465555471772204 +139389,696.9450000036076,-0.055465520351103706 +139390,696.9500000036077,-0.05546548522954448 +139391,696.9550000036078,-0.055465450107094146 +139392,696.9600000036079,-0.05546541498375231 +139393,696.965000003608,-0.05546537985951859 +139394,696.9700000036081,-0.0554653447343926 +139395,696.9750000036082,-0.05546530960837396 +139396,696.9800000036083,-0.055465274481462275 +139397,696.9850000036084,-0.05546523935365717 +139398,696.9900000036085,-0.055465204224958244 +139399,696.9950000036087,-0.05546516909536513 +139400,697.0000000036088,-0.05546513396487743 +139401,697.0050000036089,-0.05546509883349475 +139402,697.010000003609,-0.055465063701216726 +139403,697.0150000036091,-0.05546502856804295 +139404,697.0200000036092,-0.05546499343397306 +139405,697.0250000036093,-0.05546495829900667 +139406,697.0300000036094,-0.055464923163143366 +139407,697.0350000036095,-0.055464888026382796 +139408,697.0400000036096,-0.055464852888724554 +139409,697.0450000036097,-0.05546481775016827 +139410,697.0500000036099,-0.05546478261071354 +139411,697.05500000361,-0.05546474747036001 +139412,697.0600000036101,-0.055464712329107276 +139413,697.0650000036102,-0.05546467718695495 +139414,697.0700000036103,-0.05546464204390266 +139415,697.0750000036104,-0.05546460689995002 +139416,697.0800000036105,-0.05546457175509663 +139417,697.0850000036106,-0.055464536609342134 +139418,697.0900000036107,-0.05546450146268613 +139419,697.0950000036108,-0.05546446631512823 +139420,697.100000003611,-0.05546443116666808 +139421,697.105000003611,-0.05546439601730526 +139422,697.1100000036112,-0.05546436086703942 +139423,697.1150000036113,-0.05546432571587015 +139424,697.1200000036114,-0.05546429056379708 +139425,697.1250000036115,-0.055464255410819834 +139426,697.1300000036116,-0.05546422025693802 +139427,697.1350000036117,-0.055464185102151266 +139428,697.1400000036118,-0.05546414994645917 +139429,697.1450000036119,-0.05546411478986137 +139430,697.150000003612,-0.05546407963235747 +139431,697.1550000036121,-0.0554640444739471 +139432,697.1600000036123,-0.055464009314629865 +139433,697.1650000036124,-0.05546397415440539 +139434,697.1700000036125,-0.0554639389932733 +139435,697.1750000036126,-0.05546390383123321 +139436,697.1800000036127,-0.05546386866828473 +139437,697.1850000036128,-0.0554638335044275 +139438,697.1900000036129,-0.05546379833966111 +139439,697.195000003613,-0.0554637631739852 +139440,697.2000000036131,-0.055463728007399384 +139441,697.2050000036132,-0.055463692839903274 +139442,697.2100000036133,-0.055463657671496504 +139443,697.2150000036135,-0.05546362250217868 +139444,697.2200000036136,-0.05546358733194943 +139445,697.2250000036137,-0.05546355216080838 +139446,697.2300000036138,-0.05546351698875513 +139447,697.2350000036139,-0.05546348181578932 +139448,697.240000003614,-0.055463446641910566 +139449,697.2450000036141,-0.05546341146711848 +139450,697.2500000036142,-0.055463376291412674 +139451,697.2550000036143,-0.055463341114792786 +139452,697.2600000036144,-0.05546330593725843 +139453,697.2650000036145,-0.05546327075880923 +139454,697.2700000036147,-0.05546323557944481 +139455,697.2750000036148,-0.05546320039916479 +139456,697.2800000036149,-0.055463165217968784 +139457,697.285000003615,-0.05546313003585641 +139458,697.2900000036151,-0.0554630948528273 +139459,697.2950000036152,-0.05546305966888107 +139460,697.3000000036153,-0.05546302448401734 +139461,697.3050000036154,-0.05546298929823574 +139462,697.3100000036155,-0.05546295411153588 +139463,697.3150000036156,-0.0554629189239174 +139464,697.3200000036157,-0.05546288373537991 +139465,697.3250000036159,-0.055462848545923024 +139466,697.330000003616,-0.05546281335554638 +139467,697.3350000036161,-0.05546277816424958 +139468,697.3400000036162,-0.055462742972032276 +139469,697.3450000036163,-0.055462707778894074 +139470,697.3500000036164,-0.055462672584834595 +139471,697.3550000036165,-0.05546263738985347 +139472,697.3600000036166,-0.05546260219395032 +139473,697.3650000036167,-0.055462566997124756 +139474,697.3700000036168,-0.05546253179937641 +139475,697.375000003617,-0.05546249660070491 +139476,697.380000003617,-0.05546246140110988 +139477,697.3850000036172,-0.05546242620059093 +139478,697.3900000036173,-0.05546239099914769 +139479,697.3950000036174,-0.05546235579677979 +139480,697.4000000036175,-0.05546232059348685 +139481,697.4050000036176,-0.0554622853892685 +139482,697.4100000036177,-0.05546225018412436 +139483,697.4150000036178,-0.05546221497805405 +139484,697.4200000036179,-0.0554621797710572 +139485,697.425000003618,-0.05546214456313342 +139486,697.4300000036181,-0.05546210935428236 +139487,697.4350000036183,-0.05546207414450363 +139488,697.4400000036184,-0.05546203893379685 +139489,697.4450000036185,-0.05546200372216165 +139490,697.4500000036186,-0.05546196850959767 +139491,697.4550000036187,-0.05546193329610451 +139492,697.4600000036188,-0.05546189808168181 +139493,697.4650000036189,-0.05546186286632918 +139494,697.470000003619,-0.05546182765004627 +139495,697.4750000036191,-0.055461792432832696 +139496,697.4800000036192,-0.05546175721468808 +139497,697.4850000036193,-0.05546172199561206 +139498,697.4900000036195,-0.05546168677560424 +139499,697.4950000036196,-0.05546165155466426 +139500,697.5000000036197,-0.05546161633279175 +139501,697.5050000036198,-0.05546158110998633 +139502,697.5100000036199,-0.055461545886247625 +139503,697.51500000362,-0.055461510661575265 +139504,697.5200000036201,-0.05546147543596887 +139505,697.5250000036202,-0.05546144020942808 +139506,697.5300000036203,-0.05546140498195251 +139507,697.5350000036204,-0.0554613697535418 +139508,697.5400000036205,-0.05546133452419556 +139509,697.5450000036207,-0.05546129929391344 +139510,697.5500000036208,-0.055461264062695054 +139511,697.5550000036209,-0.05546122883054003 +139512,697.560000003621,-0.05546119359744797 +139513,697.5650000036211,-0.05546115836341855 +139514,697.5700000036212,-0.05546112312845136 +139515,697.5750000036213,-0.055461087892546064 +139516,697.5800000036214,-0.05546105265570226 +139517,697.5850000036215,-0.05546101741791958 +139518,697.5900000036216,-0.055460982179197656 +139519,697.5950000036217,-0.05546094693953613 +139520,697.6000000036219,-0.05546091169893461 +139521,697.605000003622,-0.05546087645739274 +139522,697.6100000036221,-0.05546084121491015 +139523,697.6150000036222,-0.05546080597148645 +139524,697.6200000036223,-0.055460770727121286 +139525,697.6250000036224,-0.05546073548181429 +139526,697.6300000036225,-0.05546070023556507 +139527,697.6350000036226,-0.055460664988373286 +139528,697.6400000036227,-0.055460629740238535 +139529,697.6450000036228,-0.05546059449116047 +139530,697.650000003623,-0.05546055924113871 +139531,697.6550000036231,-0.055460523990172886 +139532,697.6600000036232,-0.05546048873826264 +139533,697.6650000036233,-0.05546045348540758 +139534,697.6700000036234,-0.05546041823160736 +139535,697.6750000036235,-0.055460382976861594 +139536,697.6800000036236,-0.05546034772116992 +139537,697.6850000036237,-0.055460312464531966 +139538,697.6900000036238,-0.05546027720694737 +139539,697.6950000036239,-0.05546024194841574 +139540,697.700000003624,-0.05546020668893674 +139541,697.7050000036241,-0.055460171428509966 +139542,697.7100000036243,-0.05546013616713508 +139543,697.7150000036244,-0.055460100904811696 +139544,697.7200000036245,-0.055460065641539456 +139545,697.7250000036246,-0.055460030377317976 +139546,697.7300000036247,-0.0554599951121469 +139547,697.7350000036248,-0.05545995984602586 +139548,697.7400000036249,-0.05545992457895449 +139549,697.745000003625,-0.05545988931093241 +139550,697.7500000036251,-0.055459854041959265 +139551,697.7550000036252,-0.055459818772034666 +139552,697.7600000036254,-0.05545978350115827 +139553,697.7650000036255,-0.055459748229329704 +139554,697.7700000036256,-0.0554597129565486 +139555,697.7750000036257,-0.05545967768281459 +139556,697.7800000036258,-0.05545964240812729 +139557,697.7850000036259,-0.055459607132486356 +139558,697.790000003626,-0.05545957185589141 +139559,697.7950000036261,-0.055459536578342086 +139560,697.8000000036262,-0.05545950129983801 +139561,697.8050000036263,-0.05545946602037883 +139562,697.8100000036264,-0.05545943073996418 +139563,697.8150000036266,-0.05545939545859368 +139564,697.8200000036267,-0.05545936017626697 +139565,697.8250000036268,-0.05545932489298369 +139566,697.8300000036269,-0.05545928960874346 +139567,697.835000003627,-0.05545925432354593 +139568,697.8400000036271,-0.05545921903739074 +139569,697.8450000036272,-0.05545918375027749 +139570,697.8500000036273,-0.05545914846220585 +139571,697.8550000036274,-0.05545911317317542 +139572,697.8600000036275,-0.055459077883185874 +139573,697.8650000036276,-0.05545904259223683 +139574,697.8700000036278,-0.05545900730032791 +139575,697.8750000036279,-0.05545897200745877 +139576,697.880000003628,-0.05545893671362903 +139577,697.8850000036281,-0.05545890141883832 +139578,697.8900000036282,-0.055458866123086294 +139579,697.8950000036283,-0.055458830826372575 +139580,697.9000000036284,-0.055458795528696814 +139581,697.9050000036285,-0.05545876023005863 +139582,697.9100000036286,-0.05545872493045766 +139583,697.9150000036287,-0.055458689629893546 +139584,697.9200000036288,-0.055458654328365914 +139585,697.925000003629,-0.055458619025874414 +139586,697.9300000036291,-0.05545858372241868 +139587,697.9350000036292,-0.05545854841799835 +139588,697.9400000036293,-0.05545851311261304 +139589,697.9450000036294,-0.055458477806262396 +139590,697.9500000036295,-0.05545844249894607 +139591,697.9550000036296,-0.055458407190663694 +139592,697.9600000036297,-0.05545837188141489 +139593,697.9650000036298,-0.055458336571199314 +139594,697.9700000036299,-0.0554583012600166 +139595,697.97500000363,-0.05545826594786637 +139596,697.9800000036302,-0.05545823063474828 +139597,697.9850000036303,-0.05545819532066194 +139598,697.9900000036304,-0.05545816000560703 +139599,697.9950000036305,-0.055458124689583145 +139600,698.0000000036306,-0.055458089372589954 +139601,698.0050000036307,-0.05545805405462709 +139602,698.0100000036308,-0.05545801873569417 +139603,698.0150000036309,-0.05545798341579085 +139604,698.020000003631,-0.05545794809491676 +139605,698.0250000036311,-0.05545791277307154 +139606,698.0300000036312,-0.05545787745025484 +139607,698.0350000036314,-0.05545784212646629 +139608,698.0400000036315,-0.055457806801705534 +139609,698.0450000036316,-0.055457771475972195 +139610,698.0500000036317,-0.05545773614926593 +139611,698.0550000036318,-0.05545770082158636 +139612,698.0600000036319,-0.05545766549293315 +139613,698.065000003632,-0.05545763016330591 +139614,698.0700000036321,-0.0554575948327043 +139615,698.0750000036322,-0.05545755950112796 +139616,698.0800000036323,-0.055457524168576515 +139617,698.0850000036324,-0.05545748883504962 +139618,698.0900000036326,-0.055457453500546906 +139619,698.0950000036327,-0.05545741816506801 +139620,698.1000000036328,-0.05545738282861258 +139621,698.1050000036329,-0.05545734749118026 +139622,698.110000003633,-0.05545731215277067 +139623,698.1150000036331,-0.05545727681338347 +139624,698.1200000036332,-0.0554572414730183 +139625,698.1250000036333,-0.0554572061316748 +139626,698.1300000036334,-0.05545717078935259 +139627,698.1350000036335,-0.05545713544605134 +139628,698.1400000036336,-0.055457100101770664 +139629,698.1450000036338,-0.05545706475651022 +139630,698.1500000036339,-0.055457029410269656 +139631,698.155000003634,-0.0554569940630486 +139632,698.1600000036341,-0.055456958714846696 +139633,698.1650000036342,-0.05545692336566359 +139634,698.1700000036343,-0.05545688801549892 +139635,698.1750000036344,-0.055456852664352324 +139636,698.1800000036345,-0.055456817312223454 +139637,698.1850000036346,-0.05545678195911195 +139638,698.1900000036347,-0.05545674660501745 +139639,698.1950000036348,-0.05545671124993959 +139640,698.200000003635,-0.05545667589387803 +139641,698.2050000036351,-0.0554566405368324 +139642,698.2100000036352,-0.05545660517880233 +139643,698.2150000036353,-0.05545656981978749 +139644,698.2200000036354,-0.05545653445978751 +139645,698.2250000036355,-0.05545649909880203 +139646,698.2300000036356,-0.0554564637368307 +139647,698.2350000036357,-0.05545642837387315 +139648,698.2400000036358,-0.05545639300992904 +139649,698.2450000036359,-0.05545635764499801 +139650,698.250000003636,-0.0554563222790797 +139651,698.2550000036362,-0.055456286912173754 +139652,698.2600000036363,-0.05545625154427981 +139653,698.2650000036364,-0.05545621617539752 +139654,698.2700000036365,-0.055456180805526514 +139655,698.2750000036366,-0.055456145434666454 +139656,698.2800000036367,-0.05545611006281698 +139657,698.2850000036368,-0.05545607468997773 +139658,698.2900000036369,-0.05545603931614835 +139659,698.295000003637,-0.05545600394132849 +139660,698.3000000036371,-0.055455968565517794 +139661,698.3050000036372,-0.0554559331887159 +139662,698.3100000036374,-0.055455897810922465 +139663,698.3150000036375,-0.055455862432137126 +139664,698.3200000036376,-0.055455827052359526 +139665,698.3250000036377,-0.05545579167158931 +139666,698.3300000036378,-0.05545575628982613 +139667,698.3350000036379,-0.05545572090706962 +139668,698.340000003638,-0.055455685523319434 +139669,698.3450000036381,-0.05545565013857521 +139670,698.3500000036382,-0.0554556147528366 +139671,698.3550000036383,-0.05545557936610325 +139672,698.3600000036384,-0.05545554397837481 +139673,698.3650000036386,-0.05545550858965092 +139674,698.3700000036387,-0.055455473199931236 +139675,698.3750000036388,-0.055455437809215385 +139676,698.3800000036389,-0.055455402417503026 +139677,698.385000003639,-0.055455367024793804 +139678,698.3900000036391,-0.05545533163108737 +139679,698.3950000036392,-0.05545529623638338 +139680,698.4000000036393,-0.05545526084068145 +139681,698.4050000036394,-0.05545522544398125 +139682,698.4100000036395,-0.055455190046282424 +139683,698.4150000036396,-0.055455154647584624 +139684,698.4200000036398,-0.055455119247887485 +139685,698.4250000036399,-0.05545508384719065 +139686,698.43000000364,-0.05545504844549379 +139687,698.4350000036401,-0.05545501304279652 +139688,698.4400000036402,-0.05545497763909852 +139689,698.4450000036403,-0.055454942234399424 +139690,698.4500000036404,-0.055454906828698886 +139691,698.4550000036405,-0.055454871421996545 +139692,698.4600000036406,-0.05545483601429204 +139693,698.4650000036407,-0.05545480060558505 +139694,698.4700000036408,-0.0554547651958752 +139695,698.475000003641,-0.055454729785162145 +139696,698.4800000036411,-0.05545469437344554 +139697,698.4850000036412,-0.05545465896072501 +139698,698.4900000036413,-0.055454623547000224 +139699,698.4950000036414,-0.05545458813227083 +139700,698.5000000036415,-0.05545455271653647 +139701,698.5050000036416,-0.05545451729979681 +139702,698.5100000036417,-0.05545448188205148 +139703,698.5150000036418,-0.055454446463300146 +139704,698.5200000036419,-0.055454411043542436 +139705,698.525000003642,-0.05545437562277802 +139706,698.5300000036422,-0.05545434020100653 +139707,698.5350000036423,-0.05545430477822764 +139708,698.5400000036424,-0.055454269354440984 +139709,698.5450000036425,-0.055454233929646206 +139710,698.5500000036426,-0.05545419850384298 +139711,698.5550000036427,-0.05545416307703093 +139712,698.5600000036428,-0.05545412764920971 +139713,698.5650000036429,-0.05545409222037898 +139714,698.570000003643,-0.055454056790538386 +139715,698.5750000036431,-0.05545402135968759 +139716,698.5800000036432,-0.05545398592782622 +139717,698.5850000036434,-0.05545395049495396 +139718,698.5900000036435,-0.05545391506107043 +139719,698.5950000036436,-0.0554538796261753 +139720,698.6000000036437,-0.0554538441902682 +139721,698.6050000036438,-0.055453808753348814 +139722,698.6100000036439,-0.05545377331541677 +139723,698.615000003644,-0.055453737876471725 +139724,698.6200000036441,-0.055453702436513326 +139725,698.6250000036442,-0.055453666995541225 +139726,698.6300000036443,-0.05545363155355509 +139727,698.6350000036444,-0.05545359611055456 +139728,698.6400000036446,-0.05545356066653929 +139729,698.6450000036447,-0.055453525221508926 +139730,698.6500000036448,-0.055453489775463126 +139731,698.6550000036449,-0.05545345432840155 +139732,698.660000003645,-0.05545341888032384 +139733,698.6650000036451,-0.05545338343122965 +139734,698.6700000036452,-0.05545334798111864 +139735,698.6750000036453,-0.05545331252999046 +139736,698.6800000036454,-0.05545327707784475 +139737,698.6850000036455,-0.05545324162468118 +139738,698.6900000036457,-0.0554532061704994 +139739,698.6950000036458,-0.055453170715299066 +139740,698.7000000036459,-0.055453135259079814 +139741,698.705000003646,-0.05545309980184132 +139742,698.7100000036461,-0.05545306434358322 +139743,698.7150000036462,-0.055453028884305186 +139744,698.7200000036463,-0.05545299342400685 +139745,698.7250000036464,-0.05545295796268788 +139746,698.7300000036465,-0.055452922500347925 +139747,698.7350000036466,-0.055452887036986656 +139748,698.7400000036467,-0.055452851572603705 +139749,698.7450000036469,-0.055452816107198745 +139750,698.750000003647,-0.05545278064077141 +139751,698.7550000036471,-0.05545274517332136 +139752,698.7600000036472,-0.05545270970484826 +139753,698.7650000036473,-0.055452674235351766 +139754,698.7700000036474,-0.05545263876483152 +139755,698.7750000036475,-0.055452603293287196 +139756,698.7800000036476,-0.05545256782071843 +139757,698.7850000036477,-0.05545253234712489 +139758,698.7900000036478,-0.05545249687250622 +139759,698.7950000036479,-0.05545246139686209 +139760,698.800000003648,-0.055452425920192144 +139761,698.8050000036482,-0.05545239044249604 +139762,698.8100000036483,-0.055452354963773445 +139763,698.8150000036484,-0.055452319484024 +139764,698.8200000036485,-0.05545228400324737 +139765,698.8250000036486,-0.05545224852144321 +139766,698.8300000036487,-0.05545221303861118 +139767,698.8350000036488,-0.05545217755475092 +139768,698.8400000036489,-0.055452142069862105 +139769,698.845000003649,-0.05545210658394439 +139770,698.8500000036491,-0.055452071096997416 +139771,698.8550000036493,-0.05545203560902086 +139772,698.8600000036494,-0.05545200012001436 +139773,698.8650000036495,-0.05545196462997758 +139774,698.8700000036496,-0.055451929138910186 +139775,698.8750000036497,-0.05545189364681183 +139776,698.8800000036498,-0.05545185815368217 +139777,698.8850000036499,-0.05545182265952086 +139778,698.89000000365,-0.055451787164327554 +139779,698.8950000036501,-0.05545175166810192 +139780,698.9000000036502,-0.055451716170843615 +139781,698.9050000036503,-0.05545168067255229 +139782,698.9100000036505,-0.05545164517322761 +139783,698.9150000036506,-0.055451609672869225 +139784,698.9200000036507,-0.05545157417147681 +139785,698.9250000036508,-0.05545153866905001 +139786,698.9300000036509,-0.055451503165588494 +139787,698.935000003651,-0.0554514676610919 +139788,698.9400000036511,-0.0554514321555599 +139789,698.9450000036512,-0.05545139664899216 +139790,698.9500000036513,-0.05545136114138832 +139791,698.9550000036514,-0.05545132563274805 +139792,698.9600000036515,-0.05545129012307102 +139793,698.9650000036517,-0.05545125461235688 +139794,698.9700000036518,-0.055451219100605284 +139795,698.9750000036519,-0.055451183587815894 +139796,698.980000003652,-0.05545114807398836 +139797,698.9850000036521,-0.05545111255912236 +139798,698.9900000036522,-0.05545107704321757 +139799,698.9950000036523,-0.055451041526273614 +139800,699.0000000036524,-0.055451006008290164 +139801,699.0050000036525,-0.05545097048926688 +139802,699.0100000036526,-0.05545093496920342 +139803,699.0150000036527,-0.05545089944809945 +139804,699.0200000036529,-0.05545086392595462 +139805,699.025000003653,-0.05545082840276861 +139806,699.0300000036531,-0.055450792878541065 +139807,699.0350000036532,-0.05545075735327166 +139808,699.0400000036533,-0.05545072182696004 +139809,699.0450000036534,-0.05545068629960587 +139810,699.0500000036535,-0.055450650771208816 +139811,699.0550000036536,-0.055450615241768544 +139812,699.0600000036537,-0.055450579711284705 +139813,699.0650000036538,-0.055450544179756964 +139814,699.070000003654,-0.055450508647184975 +139815,699.075000003654,-0.055450473113568426 +139816,699.0800000036542,-0.05545043757890694 +139817,699.0850000036543,-0.05545040204320022 +139818,699.0900000036544,-0.05545036650644789 +139819,699.0950000036545,-0.05545033096864964 +139820,699.1000000036546,-0.055450295429805126 +139821,699.1050000036547,-0.055450259889914 +139822,699.1100000036548,-0.055450224348975924 +139823,699.1150000036549,-0.05545018880699057 +139824,699.120000003655,-0.0554501532639576 +139825,699.1250000036551,-0.05545011771987667 +139826,699.1300000036553,-0.05545008217474745 +139827,699.1350000036554,-0.05545004662856961 +139828,699.1400000036555,-0.055450011081342794 +139829,699.1450000036556,-0.05544997553306668 +139830,699.1500000036557,-0.05544993998374092 +139831,699.1550000036558,-0.05544990443336519 +139832,699.1600000036559,-0.05544986888193915 +139833,699.165000003656,-0.05544983332946247 +139834,699.1700000036561,-0.055449797775934784 +139835,699.1750000036562,-0.05544976222135579 +139836,699.1800000036563,-0.055449726665725126 +139837,699.1850000036565,-0.05544969110904248 +139838,699.1900000036566,-0.0554496555513075 +139839,699.1950000036567,-0.05544961999251986 +139840,699.2000000036568,-0.055449584432679215 +139841,699.2050000036569,-0.05544954887178524 +139842,699.210000003657,-0.055449513309837585 +139843,699.2150000036571,-0.05544947774683592 +139844,699.2200000036572,-0.05544944218277992 +139845,699.2250000036573,-0.05544940661766924 +139846,699.2300000036574,-0.05544937105150355 +139847,699.2350000036575,-0.05544933548428251 +139848,699.2400000036577,-0.0554492999160058 +139849,699.2450000036578,-0.05544926434667306 +139850,699.2500000036579,-0.05544922877628398 +139851,699.255000003658,-0.05544919320483821 +139852,699.2600000036581,-0.05544915763233541 +139853,699.2650000036582,-0.05544912205877527 +139854,699.2700000036583,-0.05544908648415745 +139855,699.2750000036584,-0.055449050908481595 +139856,699.2800000036585,-0.05544901533174739 +139857,699.2850000036586,-0.05544897975395449 +139858,699.2900000036587,-0.05544894417510257 +139859,699.2950000036589,-0.0554489085951913 +139860,699.300000003659,-0.05544887301422034 +139861,699.3050000036591,-0.055448837432189355 +139862,699.3100000036592,-0.055448801849098006 +139863,699.3150000036593,-0.05544876626494597 +139864,699.3200000036594,-0.05544873067973292 +139865,699.3250000036595,-0.05544869509345851 +139866,699.3300000036596,-0.05544865950612241 +139867,699.3350000036597,-0.055448623917724295 +139868,699.3400000036598,-0.05544858832826381 +139869,699.34500000366,-0.055448552737740645 +139870,699.35000000366,-0.05544851714615446 +139871,699.3550000036602,-0.05544848155350494 +139872,699.3600000036603,-0.05544844595979171 +139873,699.3650000036604,-0.05544841036501448 +139874,699.3700000036605,-0.0554483747691729 +139875,699.3750000036606,-0.055448339172266645 +139876,699.3800000036607,-0.05544830357429538 +139877,699.3850000036608,-0.05544826797525877 +139878,699.3900000036609,-0.055448232375156496 +139879,699.395000003661,-0.055448196773988205 +139880,699.4000000036611,-0.055448161171753586 +139881,699.4050000036613,-0.055448125568452286 +139882,699.4100000036614,-0.05544808996408399 +139883,699.4150000036615,-0.055448054358648365 +139884,699.4200000036616,-0.05544801875214509 +139885,699.4250000036617,-0.05544798314457381 +139886,699.4300000036618,-0.05544794753593422 +139887,699.4350000036619,-0.05544791192622597 +139888,699.440000003662,-0.05544787631544874 +139889,699.4450000036621,-0.055447840703602196 +139890,699.4500000036622,-0.055447805090686 +139891,699.4550000036623,-0.05544776947669983 +139892,699.4600000036625,-0.05544773386164336 +139893,699.4650000036626,-0.05544769824551625 +139894,699.4700000036627,-0.055447662628318184 +139895,699.4750000036628,-0.05544762701004882 +139896,699.4800000036629,-0.055447591390707845 +139897,699.485000003663,-0.055447555770294914 +139898,699.4900000036631,-0.05544752014880969 +139899,699.4950000036632,-0.05544748452625186 +139900,699.5000000036633,-0.05544744890262108 +139901,699.5050000036634,-0.05544741327791704 +139902,699.5100000036635,-0.0554473776521394 +139903,699.5150000036637,-0.055447342025287824 +139904,699.5200000036638,-0.055447306397362 +139905,699.5250000036639,-0.05544727076836159 +139906,699.530000003664,-0.05544723513828626 +139907,699.5350000036641,-0.0554471995071357 +139908,699.5400000036642,-0.05544716387490955 +139909,699.5450000036643,-0.05544712824160752 +139910,699.5500000036644,-0.05544709260722925 +139911,699.5550000036645,-0.05544705697177443 +139912,699.5600000036646,-0.05544702133524272 +139913,699.5650000036647,-0.05544698569763381 +139914,699.5700000036649,-0.055446950058947356 +139915,699.575000003665,-0.055446914419183035 +139916,699.5800000036651,-0.05544687877834052 +139917,699.5850000036652,-0.05544684313641949 +139918,699.5900000036653,-0.05544680749341961 +139919,699.5950000036654,-0.05544677184934055 +139920,699.6000000036655,-0.05544673620418199 +139921,699.6050000036656,-0.0554467005579436 +139922,699.6100000036657,-0.05544666491062505 +139923,699.6150000036658,-0.05544662926222601 +139924,699.620000003666,-0.05544659361274617 +139925,699.6250000036661,-0.0554465579621852 +139926,699.6300000036662,-0.05544652231054275 +139927,699.6350000036663,-0.05544648665781851 +139928,699.6400000036664,-0.05544645100401216 +139929,699.6450000036665,-0.05544641534912337 +139930,699.6500000036666,-0.05544637969315181 +139931,699.6550000036667,-0.05544634403609716 +139932,699.6600000036668,-0.05544630837795909 +139933,699.6650000036669,-0.05544627271873726 +139934,699.670000003667,-0.05544623705843138 +139935,699.6750000036672,-0.055446201397041095 +139936,699.6800000036673,-0.05544616573456608 +139937,699.6850000036674,-0.055446130071006024 +139938,699.6900000036675,-0.0554460944063606 +139939,699.6950000036676,-0.05544605874062947 +139940,699.7000000036677,-0.055446023073812314 +139941,699.7050000036678,-0.05544598740590881 +139942,699.7100000036679,-0.055445951736918644 +139943,699.715000003668,-0.055445916066841475 +139944,699.7200000036681,-0.05544588039567698 +139945,699.7250000036682,-0.05544584472342484 +139946,699.7300000036684,-0.055445809050084734 +139947,699.7350000036685,-0.05544577337565633 +139948,699.7400000036686,-0.0554457377001393 +139949,699.7450000036687,-0.05544570202353334 +139950,699.7500000036688,-0.055445666345838106 +139951,699.7550000036689,-0.05544563066705328 +139952,699.760000003669,-0.05544559498717854 +139953,699.7650000036691,-0.05544555930621357 +139954,699.7700000036692,-0.05544552362415803 +139955,699.7750000036693,-0.05544548794101161 +139956,699.7800000036694,-0.055445452256773976 +139957,699.7850000036696,-0.05544541657144481 +139958,699.7900000036697,-0.05544538088502379 +139959,699.7950000036698,-0.05544534519751059 +139960,699.8000000036699,-0.05544530950890489 +139961,699.80500000367,-0.055445273819206366 +139962,699.8100000036701,-0.05544523812841469 +139963,699.8150000036702,-0.05544520243652954 +139964,699.8200000036703,-0.055445166743550614 +139965,699.8250000036704,-0.05544513104947757 +139966,699.8300000036705,-0.05544509535431009 +139967,699.8350000036706,-0.05544505965804784 +139968,699.8400000036708,-0.05544502396069052 +139969,699.8450000036709,-0.0554449882622378 +139970,699.850000003671,-0.05544495256268935 +139971,699.8550000036711,-0.05544491686204485 +139972,699.8600000036712,-0.05544488116030398 +139973,699.8650000036713,-0.05544484545746643 +139974,699.8700000036714,-0.05544480975353186 +139975,699.8750000036715,-0.05544477404849997 +139976,699.8800000036716,-0.05544473834237042 +139977,699.8850000036717,-0.05544470263514289 +139978,699.8900000036718,-0.055444666926817064 +139979,699.895000003672,-0.055444631217392626 +139980,699.9000000036721,-0.05544459550686925 +139981,699.9050000036722,-0.05544455979524662 +139982,699.9100000036723,-0.05544452408252441 +139983,699.9150000036724,-0.0554444883687023 +139984,699.9200000036725,-0.055444452653779966 +139985,699.9250000036726,-0.055444416937757084 +139986,699.9300000036727,-0.055444381220633346 +139987,699.9350000036728,-0.055444345502408426 +139988,699.9400000036729,-0.055444309783082006 +139989,699.945000003673,-0.055444274062653766 +139990,699.9500000036732,-0.05544423834112338 +139991,699.9550000036733,-0.05544420261849055 +139992,699.9600000036734,-0.05544416689475493 +139993,699.9650000036735,-0.05544413116991622 +139994,699.9700000036736,-0.05544409544397408 +139995,699.9750000036737,-0.05544405971692821 +139996,699.9800000036738,-0.055444023988778283 +139997,699.9850000036739,-0.05544398825952398 +139998,699.990000003674,-0.05544395252916497 +139999,699.9950000036741,-0.05544391679770095 +140000,700.0000000036742,-0.05544388106513161 +140001,700.0050000036744,-0.055443845331456604 +140002,700.0100000036745,-0.05544380959667562 +140003,700.0150000036746,-0.05544377386078836 +140004,700.0200000036747,-0.05544373812379449 +140005,700.0250000036748,-0.0554437023856937 +140006,700.0300000036749,-0.055443666646485666 +140007,700.035000003675,-0.05544363090617007 +140008,700.0400000036751,-0.0554435951647466 +140009,700.0450000036752,-0.05544355942221492 +140010,700.0500000036753,-0.05544352367857472 +140011,700.0550000036754,-0.0554434879338257 +140012,700.0600000036756,-0.05544345218796753 +140013,700.0650000036757,-0.055443416440999885 +140014,700.0700000036758,-0.05544338069292246 +140015,700.0750000036759,-0.05544334494373493 +140016,700.080000003676,-0.05544330919343698 +140017,700.0850000036761,-0.05544327344202828 +140018,700.0900000036762,-0.055443237689508554 +140019,700.0950000036763,-0.05544320193587744 +140020,700.1000000036764,-0.055443166181134644 +140021,700.1050000036765,-0.055443130425279846 +140022,700.1100000036766,-0.05544309466831272 +140023,700.1150000036768,-0.05544305891023296 +140024,700.1200000036769,-0.05544302315104025 +140025,700.125000003677,-0.05544298739073428 +140026,700.1300000036771,-0.05544295162931471 +140027,700.1350000036772,-0.05544291586678125 +140028,700.1400000036773,-0.055442880103133564 +140029,700.1450000036774,-0.05544284433837134 +140030,700.1500000036775,-0.055442808572494284 +140031,700.1550000036776,-0.05544277280550206 +140032,700.1600000036777,-0.05544273703739435 +140033,700.1650000036778,-0.05544270126817085 +140034,700.170000003678,-0.055442665497831244 +140035,700.1750000036781,-0.0554426297263752 +140036,700.1800000036782,-0.05544259395380242 +140037,700.1850000036783,-0.05544255818011259 +140038,700.1900000036784,-0.05544252240530538 +140039,700.1950000036785,-0.055442486629380484 +140040,700.2000000036786,-0.05544245085233759 +140041,700.2050000036787,-0.05544241507417638 +140042,700.2100000036788,-0.05544237929489654 +140043,700.2150000036789,-0.05544234351449777 +140044,700.220000003679,-0.05544230773297973 +140045,700.2250000036792,-0.05544227195034212 +140046,700.2300000036793,-0.05544223616658462 +140047,700.2350000036794,-0.05544220038170693 +140048,700.2400000036795,-0.05544216459570872 +140049,700.2450000036796,-0.05544212880858969 +140050,700.2500000036797,-0.055442093020349505 +140051,700.2550000036798,-0.05544205723098787 +140052,700.2600000036799,-0.05544202144050446 +140053,700.26500000368,-0.05544198564889898 +140054,700.2700000036801,-0.0554419498561711 +140055,700.2750000036802,-0.055441914062320505 +140056,700.2800000036804,-0.055441878267346895 +140057,700.2850000036805,-0.055441842471249954 +140058,700.2900000036806,-0.05544180667402936 +140059,700.2950000036807,-0.05544177087568481 +140060,700.3000000036808,-0.05544173507621599 +140061,700.3050000036809,-0.055441699275622584 +140062,700.310000003681,-0.05544166347390427 +140063,700.3150000036811,-0.055441627671060756 +140064,700.3200000036812,-0.055441591867091716 +140065,700.3250000036813,-0.05544155606199685 +140066,700.3300000036814,-0.05544152025577583 +140067,700.3350000036816,-0.055441484448428356 +140068,700.3400000036817,-0.05544144863995411 +140069,700.3450000036818,-0.055441412830352775 +140070,700.3500000036819,-0.05544137701962406 +140071,700.355000003682,-0.055441341207767635 +140072,700.3600000036821,-0.05544130539478319 +140073,700.3650000036822,-0.05544126958067042 +140074,700.3700000036823,-0.05544123376542902 +140075,700.3750000036824,-0.05544119794905866 +140076,700.3800000036825,-0.055441162131559044 +140077,700.3850000036826,-0.05544112631292984 +140078,700.3900000036828,-0.05544109049317077 +140079,700.3950000036829,-0.0554410546722815 +140080,700.400000003683,-0.05544101885026173 +140081,700.4050000036831,-0.05544098302711113 +140082,700.4100000036832,-0.055440947202829424 +140083,700.4150000036833,-0.055440911377416274 +140084,700.4200000036834,-0.05544087555087137 +140085,700.4250000036835,-0.05544083972319441 +140086,700.4300000036836,-0.0554408038943851 +140087,700.4350000036837,-0.055440768064443105 +140088,700.4400000036838,-0.05544073223336812 +140089,700.445000003684,-0.05544069640115985 +140090,700.4500000036841,-0.055440660567817976 +140091,700.4550000036842,-0.05544062473334218 +140092,700.4600000036843,-0.05544058889773216 +140093,700.4650000036844,-0.0554405530609876 +140094,700.4700000036845,-0.0554405172231082 +140095,700.4750000036846,-0.05544048138409366 +140096,700.4800000036847,-0.05544044554394365 +140097,700.4850000036848,-0.05544040970265787 +140098,700.4900000036849,-0.05544037386023602 +140099,700.495000003685,-0.05544033801667778 +140100,700.5000000036852,-0.05544030217198285 +140101,700.5050000036853,-0.05544026632615091 +140102,700.5100000036854,-0.05544023047918165 +140103,700.5150000036855,-0.055440194631074774 +140104,700.5200000036856,-0.055440158781829965 +140105,700.5250000036857,-0.05544012293144692 +140106,700.5300000036858,-0.055440087079925336 +140107,700.5350000036859,-0.05544005122726489 +140108,700.540000003686,-0.05544001537346529 +140109,700.5450000036861,-0.055439979518526215 +140110,700.5500000036863,-0.055439943662447366 +140111,700.5550000036864,-0.05543990780522843 +140112,700.5600000036865,-0.055439871946869106 +140113,700.5650000036866,-0.05543983608736908 +140114,700.5700000036867,-0.055439800226728043 +140115,700.5750000036868,-0.0554397643649457 +140116,700.5800000036869,-0.05543972850202174 +140117,700.585000003687,-0.05543969263795585 +140118,700.5900000036871,-0.055439656772747724 +140119,700.5950000036872,-0.05543962090639706 +140120,700.6000000036873,-0.05543958503890355 +140121,700.6050000036875,-0.055439549170266875 +140122,700.6100000036876,-0.055439513300486756 +140123,700.6150000036877,-0.05543947742956286 +140124,700.6200000036878,-0.05543944155749489 +140125,700.6250000036879,-0.05543940568428255 +140126,700.630000003688,-0.055439369809925525 +140127,700.6350000036881,-0.055439333934423504 +140128,700.6400000036882,-0.055439298057776185 +140129,700.6450000036883,-0.05543926217998326 +140130,700.6500000036884,-0.05543922630104443 +140131,700.6550000036885,-0.05543919042095939 +140132,700.6600000036887,-0.055439154539727836 +140133,700.6650000036888,-0.055439118657349455 +140134,700.6700000036889,-0.05543908277382394 +140135,700.675000003689,-0.05543904688915099 +140136,700.6800000036891,-0.0554390110033303 +140137,700.6850000036892,-0.05543897511636156 +140138,700.6900000036893,-0.05543893922824448 +140139,700.6950000036894,-0.055438903338978746 +140140,700.7000000036895,-0.05543886744856406 +140141,700.7050000036896,-0.0554388315570001 +140142,700.7100000036897,-0.055438795664286576 +140143,700.7150000036899,-0.055438759770423174 +140144,700.72000000369,-0.05543872387540961 +140145,700.7250000036901,-0.05543868797924556 +140146,700.7300000036902,-0.05543865208193071 +140147,700.7350000036903,-0.05543861618346479 +140148,700.7400000036904,-0.055438580283847474 +140149,700.7450000036905,-0.05543854438307845 +140150,700.7500000036906,-0.055438508481157445 +140151,700.7550000036907,-0.05543847257808412 +140152,700.7600000036908,-0.05543843667385819 +140153,700.765000003691,-0.055438400768479355 +140154,700.770000003691,-0.05543836486194731 +140155,700.7750000036912,-0.05543832895426175 +140156,700.7800000036913,-0.055438293045422374 +140157,700.7850000036914,-0.055438257135428874 +140158,700.7900000036915,-0.05543822122428094 +140159,700.7950000036916,-0.05543818531197828 +140160,700.8000000036917,-0.055438149398520584 +140161,700.8050000036918,-0.05543811348390756 +140162,700.8100000036919,-0.05543807756813889 +140163,700.815000003692,-0.05543804165121429 +140164,700.8200000036921,-0.055438005733133455 +140165,700.8250000036923,-0.05543796981389608 +140166,700.8300000036924,-0.05543793389350185 +140167,700.8350000036925,-0.05543789797195048 +140168,700.8400000036926,-0.05543786204924166 +140169,700.8450000036927,-0.055437826125375095 +140170,700.8500000036928,-0.05543779020035048 +140171,700.8550000036929,-0.05543775427416751 +140172,700.860000003693,-0.05543771834682588 +140173,700.8650000036931,-0.05543768241832529 +140174,700.8700000036932,-0.05543764648866545 +140175,700.8750000036933,-0.05543761055784606 +140176,700.8800000036935,-0.055437574625866806 +140177,700.8850000036936,-0.05543753869272739 +140178,700.8900000036937,-0.0554375027584275 +140179,700.8950000036938,-0.05543746682296685 +140180,700.9000000036939,-0.05543743088634515 +140181,700.905000003694,-0.05543739494856209 +140182,700.9100000036941,-0.055437359009617354 +140183,700.9150000036942,-0.05543732306951066 +140184,700.9200000036943,-0.0554372871282417 +140185,700.9250000036944,-0.05543725118581017 +140186,700.9300000036945,-0.05543721524221577 +140187,700.9350000036947,-0.055437179297458214 +140188,700.9400000036948,-0.05543714335153719 +140189,700.9450000036949,-0.05543710740445241 +140190,700.950000003695,-0.05543707145620356 +140191,700.9550000036951,-0.05543703550679034 +140192,700.9600000036952,-0.05543699955621246 +140193,700.9650000036953,-0.05543696360446961 +140194,700.9700000036954,-0.0554369276515615 +140195,700.9750000036955,-0.05543689169748784 +140196,700.9800000036956,-0.05543685574224831 +140197,700.9850000036957,-0.05543681978584263 +140198,700.9900000036959,-0.05543678382827049 +140199,700.995000003696,-0.0554367478695316 +140200,701.0000000036961,-0.055436711909625645 +140201,701.0050000036962,-0.05543667594855234 +140202,701.0100000036963,-0.055436639986311376 +140203,701.0150000036964,-0.05543660402290246 +140204,701.0200000036965,-0.055436568058325295 +140205,701.0250000036966,-0.055436532092579587 +140206,701.0300000036967,-0.05543649612566503 +140207,701.0350000036968,-0.05543646015758132 +140208,701.040000003697,-0.05543642418832818 +140209,701.045000003697,-0.05543638821790529 +140210,701.0500000036972,-0.05543635224631237 +140211,701.0550000036973,-0.05543631627354911 +140212,701.0600000036974,-0.05543628029961522 +140213,701.0650000036975,-0.0554362443245104 +140214,701.0700000036976,-0.055436208348234345 +140215,701.0750000036977,-0.05543617237078677 +140216,701.0800000036978,-0.05543613639216737 +140217,701.0850000036979,-0.05543610041237585 +140218,701.090000003698,-0.05543606443141192 +140219,701.0950000036981,-0.05543602844927527 +140220,701.1000000036983,-0.05543599246596561 +140221,701.1050000036984,-0.05543595648148265 +140222,701.1100000036985,-0.05543592049582608 +140223,701.1150000036986,-0.055435884508995614 +140224,701.1200000036987,-0.05543584852099096 +140225,701.1250000036988,-0.055435812531811804 +140226,701.1300000036989,-0.05543577654145787 +140227,701.135000003699,-0.055435740549928836 +140228,701.1400000036991,-0.05543570455722443 +140229,701.1450000036992,-0.05543566856334435 +140230,701.1500000036993,-0.0554356325682883 +140231,701.1550000036995,-0.05543559657205597 +140232,701.1600000036996,-0.05543556057464709 +140233,701.1650000036997,-0.055435524576061344 +140234,701.1700000036998,-0.05543548857629844 +140235,701.1750000036999,-0.055435452575358084 +140236,701.1800000037,-0.05543541657323999 +140237,701.1850000037001,-0.05543538056994386 +140238,701.1900000037002,-0.05543534456546939 +140239,701.1950000037003,-0.05543530855981629 +140240,701.2000000037004,-0.05543527255298426 +140241,701.2050000037005,-0.05543523654497301 +140242,701.2100000037007,-0.05543520053578224 +140243,701.2150000037008,-0.05543516452541168 +140244,701.2200000037009,-0.055435128513861 +140245,701.225000003701,-0.05543509250112993 +140246,701.2300000037011,-0.055435056487218165 +140247,701.2350000037012,-0.05543502047212542 +140248,701.2400000037013,-0.05543498445585139 +140249,701.2450000037014,-0.0554349484383958 +140250,701.2500000037015,-0.05543491241975832 +140251,701.2550000037016,-0.05543487639993869 +140252,701.2600000037017,-0.0554348403789366 +140253,701.2650000037019,-0.05543480435675176 +140254,701.270000003702,-0.05543476833338387 +140255,701.2750000037021,-0.055434732308832654 +140256,701.2800000037022,-0.05543469628309781 +140257,701.2850000037023,-0.05543466025617905 +140258,701.2900000037024,-0.05543462422807606 +140259,701.2950000037025,-0.055434588198788576 +140260,701.3000000037026,-0.05543455216831629 +140261,701.3050000037027,-0.0554345161366589 +140262,701.3100000037028,-0.05543448010381613 +140263,701.315000003703,-0.055434444069787675 +140264,701.3200000037031,-0.05543440803457325 +140265,701.3250000037032,-0.05543437199817257 +140266,701.3300000037033,-0.055434335960585314 +140267,701.3350000037034,-0.05543429992181122 +140268,701.3400000037035,-0.05543426388184997 +140269,701.3450000037036,-0.055434227840701296 +140270,701.3500000037037,-0.05543419179836491 +140271,701.3550000037038,-0.05543415575484049 +140272,701.3600000037039,-0.05543411971012777 +140273,701.365000003704,-0.055434083664226454 +140274,701.3700000037041,-0.05543404761713623 +140275,701.3750000037043,-0.055434011568856835 +140276,701.3800000037044,-0.05543397551938796 +140277,701.3850000037045,-0.05543393946872932 +140278,701.3900000037046,-0.05543390341688063 +140279,701.3950000037047,-0.05543386736384159 +140280,701.4000000037048,-0.0554338313096119 +140281,701.4050000037049,-0.05543379525419128 +140282,701.410000003705,-0.05543375919757945 +140283,701.4150000037051,-0.055433723139776105 +140284,701.4200000037052,-0.05543368708078096 +140285,701.4250000037053,-0.055433651020593715 +140286,701.4300000037055,-0.05543361495921408 +140287,701.4350000037056,-0.05543357889664178 +140288,701.4400000037057,-0.05543354283287651 +140289,701.4450000037058,-0.055433506767917994 +140290,701.4500000037059,-0.05543347070176593 +140291,701.455000003706,-0.05543343463442004 +140292,701.4600000037061,-0.05543339856588001 +140293,701.4650000037062,-0.055433362496145576 +140294,701.4700000037063,-0.055433326425216436 +140295,701.4750000037064,-0.0554332903530923 +140296,701.4800000037066,-0.0554332542797729 +140297,701.4850000037067,-0.055433218205257914 +140298,701.4900000037068,-0.05543318212954708 +140299,701.4950000037069,-0.05543314605264008 +140300,701.500000003707,-0.05543310997453665 +140301,701.5050000037071,-0.05543307389523649 +140302,701.5100000037072,-0.05543303781473931 +140303,701.5150000037073,-0.05543300173304482 +140304,701.5200000037074,-0.05543296565015274 +140305,701.5250000037075,-0.055432929566062786 +140306,701.5300000037076,-0.05543289348077465 +140307,701.5350000037078,-0.05543285739428806 +140308,701.5400000037079,-0.05543282130660272 +140309,701.545000003708,-0.055432785217718335 +140310,701.5500000037081,-0.055432749127634635 +140311,701.5550000037082,-0.05543271303635132 +140312,701.5600000037083,-0.0554326769438681 +140313,701.5650000037084,-0.0554326408501847 +140314,701.5700000037085,-0.05543260475530082 +140315,701.5750000037086,-0.055432568659216176 +140316,701.5800000037087,-0.055432532561930474 +140317,701.5850000037088,-0.05543249646344343 +140318,701.590000003709,-0.05543246036375477 +140319,701.5950000037091,-0.05543242426286419 +140320,701.6000000037092,-0.05543238816077141 +140321,701.6050000037093,-0.05543235205747615 +140322,701.6100000037094,-0.055432315952978116 +140323,701.6150000037095,-0.05543227984727702 +140324,701.6200000037096,-0.05543224374037257 +140325,701.6250000037097,-0.05543220763226448 +140326,701.6300000037098,-0.055432171522952475 +140327,701.6350000037099,-0.05543213541243625 +140328,701.64000000371,-0.055432099300715534 +140329,701.6450000037102,-0.05543206318779005 +140330,701.6500000037103,-0.05543202707365948 +140331,701.6550000037104,-0.05543199095832357 +140332,701.6600000037105,-0.05543195484178202 +140333,701.6650000037106,-0.05543191872403453 +140334,701.6700000037107,-0.05543188260508085 +140335,701.6750000037108,-0.05543184648492066 +140336,701.6800000037109,-0.05543181036355368 +140337,701.685000003711,-0.055431774240979635 +140338,701.6900000037111,-0.05543173811719825 +140339,701.6950000037112,-0.05543170199220922 +140340,701.7000000037114,-0.05543166586601225 +140341,701.7050000037115,-0.05543162973860709 +140342,701.7100000037116,-0.05543159360999343 +140343,701.7150000037117,-0.05543155748017098 +140344,701.7200000037118,-0.05543152134913947 +140345,701.7250000037119,-0.05543148521689863 +140346,701.730000003712,-0.05543144908344813 +140347,701.7350000037121,-0.05543141294878773 +140348,701.7400000037122,-0.055431376812917106 +140349,701.7450000037123,-0.055431340675836015 +140350,701.7500000037124,-0.055431304537544135 +140351,701.7550000037126,-0.05543126839804121 +140352,701.7600000037127,-0.05543123225732694 +140353,701.7650000037128,-0.05543119611540104 +140354,701.7700000037129,-0.05543115997226323 +140355,701.775000003713,-0.055431123827913244 +140356,701.7800000037131,-0.05543108768235076 +140357,701.7850000037132,-0.05543105153557554 +140358,701.7900000037133,-0.055431015387587254 +140359,701.7950000037134,-0.05543097923838565 +140360,701.8000000037135,-0.05543094308797043 +140361,701.8050000037136,-0.05543090693634132 +140362,701.8100000037138,-0.055430870783498024 +140363,701.8150000037139,-0.05543083462944027 +140364,701.820000003714,-0.05543079847416777 +140365,701.8250000037141,-0.05543076231768025 +140366,701.8300000037142,-0.05543072615997743 +140367,701.8350000037143,-0.055430690001059005 +140368,701.8400000037144,-0.05543065384092471 +140369,701.8450000037145,-0.05543061767957425 +140370,701.8500000037146,-0.05543058151700737 +140371,701.8550000037147,-0.055430545353223754 +140372,701.8600000037148,-0.05543050918822313 +140373,701.865000003715,-0.05543047302200522 +140374,701.8700000037151,-0.05543043685456975 +140375,701.8750000037152,-0.055430400685916426 +140376,701.8800000037153,-0.05543036451604496 +140377,701.8850000037154,-0.055430328344955086 +140378,701.8900000037155,-0.05543029217264652 +140379,701.8950000037156,-0.05543025599911897 +140380,701.9000000037157,-0.055430219824372164 +140381,701.9050000037158,-0.055430183648405816 +140382,701.9100000037159,-0.05543014747121964 +140383,701.915000003716,-0.05543011129281337 +140384,701.9200000037162,-0.055430075113186705 +140385,701.9250000037163,-0.05543003893233939 +140386,701.9300000037164,-0.055430002750271115 +140387,701.9350000037165,-0.05542996656698162 +140388,701.9400000037166,-0.05542993038247062 +140389,701.9450000037167,-0.05542989419673782 +140390,701.9500000037168,-0.05542985800978295 +140391,701.9550000037169,-0.05542982182160573 +140392,701.960000003717,-0.05542978563220588 +140393,701.9650000037171,-0.05542974944158311 +140394,701.9700000037172,-0.05542971324973716 +140395,701.9750000037174,-0.055429677056667744 +140396,701.9800000037175,-0.05542964086237457 +140397,701.9850000037176,-0.05542960466685736 +140398,701.9900000037177,-0.05542956847011584 +140399,701.9950000037178,-0.05542953227214973 +140400,702.0000000037179,-0.05542949607295876 +140401,702.005000003718,-0.05542945987254262 +140402,702.0100000037181,-0.05542942367090106 +140403,702.0150000037182,-0.055429387468033796 +140404,702.0200000037183,-0.05542935126394053 +140405,702.0250000037184,-0.055429315058621004 +140406,702.0300000037186,-0.05542927885207493 +140407,702.0350000037187,-0.05542924264430204 +140408,702.0400000037188,-0.05542920643530204 +140409,702.0450000037189,-0.055429170225074646 +140410,702.050000003719,-0.05542913401361959 +140411,702.0550000037191,-0.05542909780093659 +140412,702.0600000037192,-0.055429061587025374 +140413,702.0650000037193,-0.05542902537188566 +140414,702.0700000037194,-0.055428989155517173 +140415,702.0750000037195,-0.055428952937919634 +140416,702.0800000037196,-0.05542891671909275 +140417,702.0850000037198,-0.05542888049903627 +140418,702.0900000037199,-0.05542884427774989 +140419,702.09500000372,-0.05542880805523335 +140420,702.1000000037201,-0.05542877183148636 +140421,702.1050000037202,-0.05542873560650864 +140422,702.1100000037203,-0.05542869938029992 +140423,702.1150000037204,-0.05542866315285993 +140424,702.1200000037205,-0.05542862692418838 +140425,702.1250000037206,-0.05542859069428499 +140426,702.1300000037207,-0.055428554463149496 +140427,702.1350000037208,-0.05542851823078162 +140428,702.140000003721,-0.05542848199718107 +140429,702.1450000037211,-0.05542844576234758 +140430,702.1500000037212,-0.05542840952628088 +140431,702.1550000037213,-0.05542837328898067 +140432,702.1600000037214,-0.05542833705044669 +140433,702.1650000037215,-0.05542830081067866 +140434,702.1700000037216,-0.05542826456967632 +140435,702.1750000037217,-0.05542822832743937 +140436,702.1800000037218,-0.05542819208396755 +140437,702.1850000037219,-0.05542815583926056 +140438,702.190000003722,-0.05542811959331814 +140439,702.1950000037222,-0.055428083346140015 +140440,702.2000000037223,-0.05542804709772591 +140441,702.2050000037224,-0.05542801084807555 +140442,702.2100000037225,-0.05542797459718865 +140443,702.2150000037226,-0.055427938345064945 +140444,702.2200000037227,-0.05542790209170416 +140445,702.2250000037228,-0.055427865837105995 +140446,702.2300000037229,-0.055427829581270203 +140447,702.235000003723,-0.0554277933241965 +140448,702.2400000037231,-0.055427757065884604 +140449,702.2450000037232,-0.05542772080633425 +140450,702.2500000037234,-0.05542768454554515 +140451,702.2550000037235,-0.055427648283517046 +140452,702.2600000037236,-0.05542761202024964 +140453,702.2650000037237,-0.055427575755742683 +140454,702.2700000037238,-0.05542753948999588 +140455,702.2750000037239,-0.05542750322300897 +140456,702.280000003724,-0.05542746695478168 +140457,702.2850000037241,-0.05542743068531372 +140458,702.2900000037242,-0.055427394414604834 +140459,702.2950000037243,-0.055427358142654724 +140460,702.3000000037244,-0.05542732186946314 +140461,702.3050000037246,-0.0554272855950298 +140462,702.3100000037247,-0.05542724931935443 +140463,702.3150000037248,-0.05542721304243675 +140464,702.3200000037249,-0.055427176764276484 +140465,702.325000003725,-0.05542714048487336 +140466,702.3300000037251,-0.05542710420422712 +140467,702.3350000037252,-0.05542706792233749 +140468,702.3400000037253,-0.05542703163920418 +140469,702.3450000037254,-0.05542699535482692 +140470,702.3500000037255,-0.055426959069205424 +140471,702.3550000037256,-0.05542692278233945 +140472,702.3600000037258,-0.0554268864942287 +140473,702.3650000037259,-0.055426850204872924 +140474,702.370000003726,-0.055426813914271816 +140475,702.3750000037261,-0.055426777622425136 +140476,702.3800000037262,-0.055426741329332604 +140477,702.3850000037263,-0.05542670503499393 +140478,702.3900000037264,-0.05542666873940885 +140479,702.3950000037265,-0.0554266324425771 +140480,702.4000000037266,-0.05542659614449841 +140481,702.4050000037267,-0.055426559845172495 +140482,702.4100000037269,-0.05542652354459908 +140483,702.415000003727,-0.0554264872427779 +140484,702.4200000037271,-0.05542645093970869 +140485,702.4250000037272,-0.05542641463539117 +140486,702.4300000037273,-0.05542637832982507 +140487,702.4350000037274,-0.05542634202301011 +140488,702.4400000037275,-0.05542630571494603 +140489,702.4450000037276,-0.055426269405632556 +140490,702.4500000037277,-0.05542623309506941 +140491,702.4550000037278,-0.05542619678325633 +140492,702.4600000037279,-0.05542616047019304 +140493,702.465000003728,-0.05542612415587927 +140494,702.4700000037282,-0.05542608784031474 +140495,702.4750000037283,-0.0554260515234992 +140496,702.4800000037284,-0.05542601520543237 +140497,702.4850000037285,-0.05542597888611397 +140498,702.4900000037286,-0.05542594256554372 +140499,702.4950000037287,-0.05542590624372137 +140500,702.5000000037288,-0.05542586992064665 +140501,702.5050000037289,-0.05542583359631928 +140502,702.510000003729,-0.055425797270739 +140503,702.5150000037291,-0.055425760943905535 +140504,702.5200000037293,-0.05542572461581859 +140505,702.5250000037294,-0.05542568828647794 +140506,702.5300000037295,-0.05542565195588328 +140507,702.5350000037296,-0.05542561562403436 +140508,702.5400000037297,-0.0554255792909309 +140509,702.5450000037298,-0.05542554295657263 +140510,702.5500000037299,-0.05542550662095928 +140511,702.55500000373,-0.055425470284090596 +140512,702.5600000037301,-0.055425433945966295 +140513,702.5650000037302,-0.0554253976065861 +140514,702.5700000037303,-0.05542536126594975 +140515,702.5750000037305,-0.05542532492405698 +140516,702.5800000037306,-0.05542528858090752 +140517,702.5850000037307,-0.0554252522365011 +140518,702.5900000037308,-0.05542521589083744 +140519,702.5950000037309,-0.05542517954391627 +140520,702.600000003731,-0.055425143195737346 +140521,702.6050000037311,-0.05542510684630038 +140522,702.6100000037312,-0.05542507049560511 +140523,702.6150000037313,-0.055425034143651276 +140524,702.6200000037314,-0.05542499779043858 +140525,702.6250000037315,-0.05542496143596678 +140526,702.6300000037317,-0.055424925080235596 +140527,702.6350000037318,-0.055424888723244775 +140528,702.6400000037319,-0.05542485236499404 +140529,702.645000003732,-0.05542481600548311 +140530,702.6500000037321,-0.055424779644711736 +140531,702.6550000037322,-0.05542474328267964 +140532,702.6600000037323,-0.055424706919386564 +140533,702.6650000037324,-0.05542467055483223 +140534,702.6700000037325,-0.05542463418901637 +140535,702.6750000037326,-0.05542459782193873 +140536,702.6800000037327,-0.055424561453599024 +140537,702.6850000037329,-0.055424525083997 +140538,702.690000003733,-0.05542448871313238 +140539,702.6950000037331,-0.05542445234100491 +140540,702.7000000037332,-0.05542441596761431 +140541,702.7050000037333,-0.05542437959296032 +140542,702.7100000037334,-0.055424343217042676 +140543,702.7150000037335,-0.055424306839861104 +140544,702.7200000037336,-0.055424270461415334 +140545,702.7250000037337,-0.05542423408170511 +140546,702.7300000037338,-0.05542419770073016 +140547,702.735000003734,-0.05542416131849022 +140548,702.740000003734,-0.05542412493498503 +140549,702.7450000037342,-0.05542408855021431 +140550,702.7500000037343,-0.0554240521641778 +140551,702.7550000037344,-0.05542401577687524 +140552,702.7600000037345,-0.05542397938830635 +140553,702.7650000037346,-0.05542394299847088 +140554,702.7700000037347,-0.05542390660736855 +140555,702.7750000037348,-0.055423870214999116 +140556,702.7800000037349,-0.05542383382136228 +140557,702.785000003735,-0.055423797426457797 +140558,702.7900000037351,-0.05542376103028541 +140559,702.7950000037353,-0.05542372463284484 +140560,702.8000000037354,-0.05542368823413583 +140561,702.8050000037355,-0.055423651834158094 +140562,702.8100000037356,-0.05542361543291139 +140563,702.8150000037357,-0.055423579030395444 +140564,702.8200000037358,-0.05542354262661 +140565,702.8250000037359,-0.05542350622155478 +140566,702.830000003736,-0.055423469815229526 +140567,702.8350000037361,-0.05542343340763397 +140568,702.8400000037362,-0.05542339699876786 +140569,702.8450000037363,-0.05542336058863091 +140570,702.8500000037365,-0.055423324177222885 +140571,702.8550000037366,-0.05542328776454349 +140572,702.8600000037367,-0.05542325135059248 +140573,702.8650000037368,-0.055423214935369586 +140574,702.8700000037369,-0.05542317851887454 +140575,702.875000003737,-0.055423142101107076 +140576,702.8800000037371,-0.055423105682066945 +140577,702.8850000037372,-0.05542306926175387 +140578,702.8900000037373,-0.05542303284016759 +140579,702.8950000037374,-0.05542299641730784 +140580,702.9000000037375,-0.05542295999317438 +140581,702.9050000037377,-0.0554229235677669 +140582,702.9100000037378,-0.05542288714108517 +140583,702.9150000037379,-0.05542285071312893 +140584,702.920000003738,-0.05542281428389789 +140585,702.9250000037381,-0.05542277785339182 +140586,702.9300000037382,-0.05542274142161044 +140587,702.9350000037383,-0.05542270498855348 +140588,702.9400000037384,-0.05542266855422069 +140589,702.9450000037385,-0.0554226321186118 +140590,702.9500000037386,-0.05542259568172655 +140591,702.9550000037387,-0.05542255924356468 +140592,702.9600000037389,-0.05542252280412592 +140593,702.965000003739,-0.05542248636341002 +140594,702.9700000037391,-0.05542244992141671 +140595,702.9750000037392,-0.05542241347814573 +140596,702.9800000037393,-0.055422377033596815 +140597,702.9850000037394,-0.05542234058776971 +140598,702.9900000037395,-0.05542230414066415 +140599,702.9950000037396,-0.05542226769227988 +140600,703.0000000037397,-0.0554222312426166 +140601,703.0050000037398,-0.0554221947916741 +140602,703.01000000374,-0.0554221583394521 +140603,703.01500000374,-0.05542212188595032 +140604,703.0200000037402,-0.05542208543116853 +140605,703.0250000037403,-0.055422048975106435 +140606,703.0300000037404,-0.055422012517763804 +140607,703.0350000037405,-0.055421976059140364 +140608,703.0400000037406,-0.05542193959923586 +140609,703.0450000037407,-0.05542190313805001 +140610,703.0500000037408,-0.055421866675582576 +140611,703.0550000037409,-0.0554218302118333 +140612,703.060000003741,-0.055421793746801895 +140613,703.0650000037411,-0.05542175728048812 +140614,703.0700000037413,-0.055421720812891706 +140615,703.0750000037414,-0.05542168434401241 +140616,703.0800000037415,-0.05542164787384995 +140617,703.0850000037416,-0.055421611402404085 +140618,703.0900000037417,-0.05542157492967453 +140619,703.0950000037418,-0.05542153845566105 +140620,703.1000000037419,-0.05542150198036337 +140621,703.105000003742,-0.055421465503781235 +140622,703.1100000037421,-0.0554214290259144 +140623,703.1150000037422,-0.05542139254676258 +140624,703.1200000037423,-0.05542135606632552 +140625,703.1250000037425,-0.05542131958460297 +140626,703.1300000037426,-0.05542128310159467 +140627,703.1350000037427,-0.05542124661730036 +140628,703.1400000037428,-0.05542121013171978 +140629,703.1450000037429,-0.055421173644852675 +140630,703.150000003743,-0.055421137156698774 +140631,703.1550000037431,-0.05542110066725783 +140632,703.1600000037432,-0.05542106417652958 +140633,703.1650000037433,-0.05542102768451376 +140634,703.1700000037434,-0.05542099119121012 +140635,703.1750000037435,-0.055420954696618396 +140636,703.1800000037437,-0.05542091820073833 +140637,703.1850000037438,-0.055420881703569666 +140638,703.1900000037439,-0.05542084520511213 +140639,703.195000003744,-0.05542080870536549 +140640,703.2000000037441,-0.05542077220432947 +140641,703.2050000037442,-0.05542073570200383 +140642,703.2100000037443,-0.055420699198388296 +140643,703.2150000037444,-0.0554206626934826 +140644,703.2200000037445,-0.0554206261872865 +140645,703.2250000037446,-0.05542058967979975 +140646,703.2300000037447,-0.05542055317102206 +140647,703.2350000037449,-0.05542051666095321 +140648,703.240000003745,-0.05542048014959292 +140649,703.2450000037451,-0.05542044363694093 +140650,703.2500000037452,-0.05542040712299699 +140651,703.2550000037453,-0.055420370607760845 +140652,703.2600000037454,-0.05542033409123224 +140653,703.2650000037455,-0.055420297573410895 +140654,703.2700000037456,-0.05542026105429657 +140655,703.2750000037457,-0.05542022453388903 +140656,703.2800000037458,-0.05542018801218798 +140657,703.285000003746,-0.05542015148919319 +140658,703.2900000037461,-0.055420114964904385 +140659,703.2950000037462,-0.05542007843932132 +140660,703.3000000037463,-0.055420041912443735 +140661,703.3050000037464,-0.05542000538427138 +140662,703.3100000037465,-0.055419968854803985 +140663,703.3150000037466,-0.0554199323240413 +140664,703.3200000037467,-0.055419895791983066 +140665,703.3250000037468,-0.055419859258629044 +140666,703.3300000037469,-0.05541982272397897 +140667,703.335000003747,-0.055419786188032574 +140668,703.3400000037472,-0.055419749650789614 +140669,703.3450000037473,-0.05541971311224982 +140670,703.3500000037474,-0.05541967657241297 +140671,703.3550000037475,-0.05541964003127878 +140672,703.3600000037476,-0.05541960348884699 +140673,703.3650000037477,-0.055419566945117356 +140674,703.3700000037478,-0.055419530400089616 +140675,703.3750000037479,-0.055419493853763525 +140676,703.380000003748,-0.05541945730613883 +140677,703.3850000037481,-0.05541942075721527 +140678,703.3900000037482,-0.05541938420699258 +140679,703.3950000037484,-0.05541934765547052 +140680,703.4000000037485,-0.05541931110264883 +140681,703.4050000037486,-0.055419274548527256 +140682,703.4100000037487,-0.05541923799310554 +140683,703.4150000037488,-0.05541920143638343 +140684,703.4200000037489,-0.055419164878360676 +140685,703.425000003749,-0.05541912831903702 +140686,703.4300000037491,-0.05541909175841221 +140687,703.4350000037492,-0.05541905519648599 +140688,703.4400000037493,-0.05541901863325809 +140689,703.4450000037494,-0.055418982068728286 +140690,703.4500000037496,-0.055418945502896305 +140691,703.4550000037497,-0.05541890893576191 +140692,703.4600000037498,-0.055418872367324824 +140693,703.4650000037499,-0.0554188357975848 +140694,703.47000000375,-0.055418799226541596 +140695,703.4750000037501,-0.05541876265419495 +140696,703.4800000037502,-0.055418726080544614 +140697,703.4850000037503,-0.05541868950559034 +140698,703.4900000037504,-0.05541865292933186 +140699,703.4950000037505,-0.055418616351768916 +140700,703.5000000037506,-0.055418579772901266 +140701,703.5050000037508,-0.05541854319272867 +140702,703.5100000037509,-0.05541850661125085 +140703,703.515000003751,-0.055418470028467566 +140704,703.5200000037511,-0.05541843344437858 +140705,703.5250000037512,-0.055418396858983615 +140706,703.5300000037513,-0.055418360272282426 +140707,703.5350000037514,-0.05541832368427477 +140708,703.5400000037515,-0.055418287094960376 +140709,703.5450000037516,-0.05541825050433902 +140710,703.5500000037517,-0.05541821391241041 +140711,703.5550000037518,-0.05541817731917433 +140712,703.560000003752,-0.05541814072463052 +140713,703.5650000037521,-0.05541810412877871 +140714,703.5700000037522,-0.05541806753161866 +140715,703.5750000037523,-0.055418030933150134 +140716,703.5800000037524,-0.05541799433337286 +140717,703.5850000037525,-0.055417957732286596 +140718,703.5900000037526,-0.055417921129891086 +140719,703.5950000037527,-0.055417884526186074 +140720,703.6000000037528,-0.05541784792117132 +140721,703.6050000037529,-0.05541781131484656 +140722,703.610000003753,-0.05541777470721155 +140723,703.6150000037532,-0.05541773809826604 +140724,703.6200000037533,-0.055417701488009785 +140725,703.6250000037534,-0.055417664876442514 +140726,703.6300000037535,-0.055417628263564 +140727,703.6350000037536,-0.05541759164937397 +140728,703.6400000037537,-0.05541755503387219 +140729,703.6450000037538,-0.05541751841705841 +140730,703.6500000037539,-0.055417481798932355 +140731,703.655000003754,-0.05541744517949381 +140732,703.6600000037541,-0.05541740855874251 +140733,703.6650000037542,-0.05541737193667819 +140734,703.6700000037544,-0.05541733531330063 +140735,703.6750000037545,-0.05541729868860955 +140736,703.6800000037546,-0.05541726206260472 +140737,703.6850000037547,-0.055417225435285884 +140738,703.6900000037548,-0.05541718880665279 +140739,703.6950000037549,-0.05541715217670519 +140740,703.700000003755,-0.055417115545442826 +140741,703.7050000037551,-0.055417078912865465 +140742,703.7100000037552,-0.055417042278972845 +140743,703.7150000037553,-0.05541700564376473 +140744,703.7200000037554,-0.05541696900724085 +140745,703.7250000037556,-0.05541693236940097 +140746,703.7300000037557,-0.055416895730244844 +140747,703.7350000037558,-0.055416859089772216 +140748,703.7400000037559,-0.05541682244798284 +140749,703.745000003756,-0.05541678580487645 +140750,703.7500000037561,-0.055416749160452826 +140751,703.7550000037562,-0.055416712514711704 +140752,703.7600000037563,-0.055416675867652844 +140753,703.7650000037564,-0.05541663921927598 +140754,703.7700000037565,-0.05541660256958088 +140755,703.7750000037566,-0.055416565918567286 +140756,703.7800000037568,-0.055416529266234964 +140757,703.7850000037569,-0.055416492612583655 +140758,703.790000003757,-0.05541645595761311 +140759,703.7950000037571,-0.05541641930132307 +140760,703.8000000037572,-0.05541638264371332 +140761,703.8050000037573,-0.055416345984783594 +140762,703.8100000037574,-0.05541630932453363 +140763,703.8150000037575,-0.055416272662963194 +140764,703.8200000037576,-0.05541623600007203 +140765,703.8250000037577,-0.055416199335859916 +140766,703.8300000037578,-0.05541616267032657 +140767,703.835000003758,-0.055416126003471775 +140768,703.8400000037581,-0.05541608933529526 +140769,703.8450000037582,-0.055416052665796786 +140770,703.8500000037583,-0.05541601599497611 +140771,703.8550000037584,-0.05541597932283298 +140772,703.8600000037585,-0.05541594264936715 +140773,703.8650000037586,-0.05541590597457838 +140774,703.8700000037587,-0.05541586929846642 +140775,703.8750000037588,-0.055415832621031016 +140776,703.8800000037589,-0.05541579594227193 +140777,703.885000003759,-0.05541575926218891 +140778,703.8900000037592,-0.05541572258078172 +140779,703.8950000037593,-0.0554156858980501 +140780,703.9000000037594,-0.055415649213993806 +140781,703.9050000037595,-0.0554156125286126 +140782,703.9100000037596,-0.055415575841906234 +140783,703.9150000037597,-0.05541553915387445 +140784,703.9200000037598,-0.05541550246451702 +140785,703.9250000037599,-0.05541546577383369 +140786,703.93000000376,-0.0554154290818242 +140787,703.9350000037601,-0.05541539238848833 +140788,703.9400000037602,-0.055415355693825816 +140789,703.9450000037604,-0.05541531899783642 +140790,703.9500000037605,-0.055415282300519904 +140791,703.9550000037606,-0.05541524560187601 +140792,703.9600000037607,-0.055415208901904496 +140793,703.9650000037608,-0.055415172200605115 +140794,703.9700000037609,-0.05541513549797763 +140795,703.975000003761,-0.05541509879402179 +140796,703.9800000037611,-0.055415062088737345 +140797,703.9850000037612,-0.05541502538212406 +140798,703.9900000037613,-0.05541498867418169 +140799,703.9950000037614,-0.055414951964909975 +140800,704.0000000037616,-0.055414915254308694 +140801,704.0050000037617,-0.055414878542377595 +140802,704.0100000037618,-0.05541484182911643 +140803,704.0150000037619,-0.05541480511452494 +140804,704.020000003762,-0.055414768398602904 +140805,704.0250000037621,-0.05541473168135006 +140806,704.0300000037622,-0.05541469496276618 +140807,704.0350000037623,-0.05541465824285101 +140808,704.0400000037624,-0.055414621521604306 +140809,704.0450000037625,-0.055414584799025834 +140810,704.0500000037626,-0.05541454807511534 +140811,704.0550000037628,-0.05541451134987258 +140812,704.0600000037629,-0.05541447462329732 +140813,704.065000003763,-0.055414437895389315 +140814,704.0700000037631,-0.05541440116614831 +140815,704.0750000037632,-0.05541436443557407 +140816,704.0800000037633,-0.05541432770366636 +140817,704.0850000037634,-0.05541429097042492 +140818,704.0900000037635,-0.05541425423584952 +140819,704.0950000037636,-0.0554142174999399 +140820,704.1000000037637,-0.055414180762695824 +140821,704.1050000037638,-0.05541414402411707 +140822,704.110000003764,-0.055414107284203366 +140823,704.1150000037641,-0.05541407054295449 +140824,704.1200000037642,-0.055414033800370195 +140825,704.1250000037643,-0.055413997056450226 +140826,704.1300000037644,-0.055413960311194346 +140827,704.1350000037645,-0.05541392356460231 +140828,704.1400000037646,-0.0554138868166739 +140829,704.1450000037647,-0.05541385006740884 +140830,704.1500000037648,-0.05541381331680693 +140831,704.1550000037649,-0.05541377656486787 +140832,704.160000003765,-0.05541373981159147 +140833,704.1650000037652,-0.055413703056977466 +140834,704.1700000037653,-0.055413666301025614 +140835,704.1750000037654,-0.05541362954373568 +140836,704.1800000037655,-0.055413592785107414 +140837,704.1850000037656,-0.05541355602514058 +140838,704.1900000037657,-0.05541351926383494 +140839,704.1950000037658,-0.05541348250119025 +140840,704.2000000037659,-0.05541344573720626 +140841,704.205000003766,-0.055413408971882745 +140842,704.2100000037661,-0.05541337220521945 +140843,704.2150000037662,-0.05541333543721613 +140844,704.2200000037664,-0.05541329866787257 +140845,704.2250000037665,-0.05541326189718851 +140846,704.2300000037666,-0.05541322512516371 +140847,704.2350000037667,-0.055413188351797926 +140848,704.2400000037668,-0.05541315157709093 +140849,704.2450000037669,-0.05541311480104247 +140850,704.250000003767,-0.05541307802365231 +140851,704.2550000037671,-0.05541304124492021 +140852,704.2600000037672,-0.05541300446484593 +140853,704.2650000037673,-0.055412967683429216 +140854,704.2700000037674,-0.05541293090066985 +140855,704.2750000037676,-0.055412894116567586 +140856,704.2800000037677,-0.05541285733112217 +140857,704.2850000037678,-0.05541282054433337 +140858,704.2900000037679,-0.05541278375620097 +140859,704.295000003768,-0.0554127469667247 +140860,704.3000000037681,-0.05541271017590432 +140861,704.3050000037682,-0.05541267338373962 +140862,704.3100000037683,-0.055412636590230324 +140863,704.3150000037684,-0.05541259979537621 +140864,704.3200000037685,-0.055412562999177045 +140865,704.3250000037687,-0.055412526201632575 +140866,704.3300000037688,-0.055412489402742564 +140867,704.3350000037689,-0.05541245260250679 +140868,704.340000003769,-0.05541241580092499 +140869,704.3450000037691,-0.05541237899799694 +140870,704.3500000037692,-0.055412342193722396 +140871,704.3550000037693,-0.05541230538810113 +140872,704.3600000037694,-0.05541226858113289 +140873,704.3650000037695,-0.05541223177281745 +140874,704.3700000037696,-0.05541219496315455 +140875,704.3750000037697,-0.055412158152143974 +140876,704.3800000037699,-0.05541212133978547 +140877,704.38500000377,-0.0554120845260788 +140878,704.3900000037701,-0.05541204771102373 +140879,704.3950000037702,-0.05541201089462003 +140880,704.4000000037703,-0.05541197407686745 +140881,704.4050000037704,-0.05541193725776576 +140882,704.4100000037705,-0.05541190043731471 +140883,704.4150000037706,-0.05541186361551408 +140884,704.4200000037707,-0.05541182679236363 +140885,704.4250000037708,-0.055411789967863105 +140886,704.4300000037709,-0.05541175314201227 +140887,704.435000003771,-0.055411716314810906 +140888,704.4400000037712,-0.05541167948625876 +140889,704.4450000037713,-0.05541164265635561 +140890,704.4500000037714,-0.055411605825101205 +140891,704.4550000037715,-0.0554115689924953 +140892,704.4600000037716,-0.05541153215853768 +140893,704.4650000037717,-0.055411495323228095 +140894,704.4700000037718,-0.05541145848656632 +140895,704.4750000037719,-0.055411421648552096 +140896,704.480000003772,-0.055411384809185206 +140897,704.4850000037721,-0.055411347968465405 +140898,704.4900000037723,-0.055411311126392464 +140899,704.4950000037724,-0.05541127428296613 +140900,704.5000000037725,-0.05541123743818619 +140901,704.5050000037726,-0.055411200592052394 +140902,704.5100000037727,-0.05541116374456451 +140903,704.5150000037728,-0.05541112689572229 +140904,704.5200000037729,-0.05541109004552551 +140905,704.525000003773,-0.05541105319397393 +140906,704.5300000037731,-0.055411016341067314 +140907,704.5350000037732,-0.055410979486805415 +140908,704.5400000037733,-0.05541094263118802 +140909,704.5450000037735,-0.05541090577421488 +140910,704.5500000037736,-0.05541086891588577 +140911,704.5550000037737,-0.05541083205620045 +140912,704.5600000037738,-0.05541079519515867 +140913,704.5650000037739,-0.05541075833276021 +140914,704.570000003774,-0.05541072146900483 +140915,704.5750000037741,-0.05541068460389229 +140916,704.5800000037742,-0.05541064773742237 +140917,704.5850000037743,-0.05541061086959482 +140918,704.5900000037744,-0.05541057400040941 +140919,704.5950000037745,-0.05541053712986592 +140920,704.6000000037747,-0.05541050025796409 +140921,704.6050000037748,-0.05541046338470369 +140922,704.6100000037749,-0.055410426510084494 +140923,704.615000003775,-0.055410389634106265 +140924,704.6200000037751,-0.055410352756768776 +140925,704.6250000037752,-0.05541031587807177 +140926,704.6300000037753,-0.055410278998015046 +140927,704.6350000037754,-0.05541024211659834 +140928,704.6400000037755,-0.05541020523382143 +140929,704.6450000037756,-0.05541016834968408 +140930,704.6500000037757,-0.055410131464186066 +140931,704.6550000037759,-0.055410094577327144 +140932,704.660000003776,-0.055410057689107076 +140933,704.6650000037761,-0.05541002079952564 +140934,704.6700000037762,-0.05540998390858261 +140935,704.6750000037763,-0.05540994701627773 +140936,704.6800000037764,-0.05540991012261077 +140937,704.6850000037765,-0.0554098732275815 +140938,704.6900000037766,-0.0554098363311897 +140939,704.6950000037767,-0.05540979943343511 +140940,704.7000000037768,-0.05540976253431752 +140941,704.705000003777,-0.0554097256338367 +140942,704.710000003777,-0.0554096887319924 +140943,704.7150000037772,-0.05540965182878439 +140944,704.7200000037773,-0.05540961492421245 +140945,704.7250000037774,-0.05540957801827633 +140946,704.7300000037775,-0.05540954111097581 +140947,704.7350000037776,-0.055409504202310646 +140948,704.7400000037777,-0.05540946729228061 +140949,704.7450000037778,-0.055409430380885485 +140950,704.7500000037779,-0.05540939346812502 +140951,704.755000003778,-0.05540935655399898 +140952,704.7600000037781,-0.05540931963850714 +140953,704.7650000037783,-0.05540928272164928 +140954,704.7700000037784,-0.05540924580342515 +140955,704.7750000037785,-0.05540920888383453 +140956,704.7800000037786,-0.05540917196287717 +140957,704.7850000037787,-0.05540913504055286 +140958,704.7900000037788,-0.05540909811686136 +140959,704.7950000037789,-0.05540906119180244 +140960,704.800000003779,-0.05540902426537586 +140961,704.8050000037791,-0.05540898733758141 +140962,704.8100000037792,-0.05540895040841883 +140963,704.8150000037793,-0.05540891347788791 +140964,704.8200000037795,-0.05540887654598841 +140965,704.8250000037796,-0.055408839612720084 +140966,704.8300000037797,-0.055408802678082736 +140967,704.8350000037798,-0.055408765742076115 +140968,704.8400000037799,-0.05540872880469998 +140969,704.84500000378,-0.05540869186595411 +140970,704.8500000037801,-0.055408654925838276 +140971,704.8550000037802,-0.055408617984352246 +140972,704.8600000037803,-0.05540858104149579 +140973,704.8650000037804,-0.05540854409726869 +140974,704.8700000037805,-0.05540850715167069 +140975,704.8750000037807,-0.055408470204701576 +140976,704.8800000037808,-0.055408433256361106 +140977,704.8850000037809,-0.055408396306649066 +140978,704.890000003781,-0.05540835935556523 +140979,704.8950000037811,-0.05540832240310934 +140980,704.9000000037812,-0.05540828544928118 +140981,704.9050000037813,-0.05540824849408053 +140982,704.9100000037814,-0.05540821153750714 +140983,704.9150000037815,-0.05540817457956081 +140984,704.9200000037816,-0.05540813762024128 +140985,704.9250000037817,-0.05540810065954834 +140986,704.9300000037819,-0.05540806369748175 +140987,704.935000003782,-0.055408026734041285 +140988,704.9400000037821,-0.055407989769226715 +140989,704.9450000037822,-0.05540795280303782 +140990,704.9500000037823,-0.055407915835474345 +140991,704.9550000037824,-0.05540787886653608 +140992,704.9600000037825,-0.05540784189622279 +140993,704.9650000037826,-0.05540780492453426 +140994,704.9700000037827,-0.055407767951470246 +140995,704.9750000037828,-0.05540773097703053 +140996,704.980000003783,-0.05540769400121486 +140997,704.9850000037831,-0.05540765702402304 +140998,704.9900000037832,-0.05540762004545482 +140999,704.9950000037833,-0.05540758306550998 +141000,705.0000000037834,-0.05540754608418828 +141001,705.0050000037835,-0.05540750910148951 +141002,705.0100000037836,-0.05540747211741343 +141003,705.0150000037837,-0.055407435131959816 +141004,705.0200000037838,-0.05540739814512844 +141005,705.0250000037839,-0.05540736115691907 +141006,705.030000003784,-0.05540732416733147 +141007,705.0350000037841,-0.05540728717636543 +141008,705.0400000037843,-0.055407250184020714 +141009,705.0450000037844,-0.05540721319029709 +141010,705.0500000037845,-0.05540717619519434 +141011,705.0550000037846,-0.05540713919871223 +141012,705.0600000037847,-0.05540710220085053 +141013,705.0650000037848,-0.05540706520160902 +141014,705.0700000037849,-0.05540702820098747 +141015,705.075000003785,-0.05540699119898565 +141016,705.0800000037851,-0.05540695419560333 +141017,705.0850000037852,-0.0554069171908403 +141018,705.0900000037853,-0.05540688018469632 +141019,705.0950000037855,-0.05540684317717116 +141020,705.1000000037856,-0.05540680616826459 +141021,705.1050000037857,-0.0554067691579764 +141022,705.1100000037858,-0.055406732146306356 +141023,705.1150000037859,-0.05540669513325422 +141024,705.120000003786,-0.05540665811881978 +141025,705.1250000037861,-0.055406621103002804 +141026,705.1300000037862,-0.05540658408580306 +141027,705.1350000037863,-0.055406547067220334 +141028,705.1400000037864,-0.05540651004725439 +141029,705.1450000037865,-0.055406473025905005 +141030,705.1500000037867,-0.055406436003171945 +141031,705.1550000037868,-0.05540639897905501 +141032,705.1600000037869,-0.05540636195355395 +141033,705.165000003787,-0.05540632492666855 +141034,705.1700000037871,-0.055406287898398576 +141035,705.1750000037872,-0.055406250868743796 +141036,705.1800000037873,-0.055406213837704 +141037,705.1850000037874,-0.05540617680527896 +141038,705.1900000037875,-0.055406139771468445 +141039,705.1950000037876,-0.05540610273627223 +141040,705.2000000037877,-0.0554060656996901 +141041,705.2050000037879,-0.05540602866172182 +141042,705.210000003788,-0.055405991622367166 +141043,705.2150000037881,-0.05540595458162592 +141044,705.2200000037882,-0.05540591753949785 +141045,705.2250000037883,-0.05540588049598273 +141046,705.2300000037884,-0.05540584345108033 +141047,705.2350000037885,-0.05540580640479044 +141048,705.2400000037886,-0.05540576935711282 +141049,705.2450000037887,-0.05540573230804725 +141050,705.2500000037888,-0.05540569525759351 +141051,705.255000003789,-0.05540565820575138 +141052,705.2600000037891,-0.05540562115252062 +141053,705.2650000037892,-0.05540558409790103 +141054,705.2700000037893,-0.055405547041892364 +141055,705.2750000037894,-0.0554055099844944 +141056,705.2800000037895,-0.05540547292570693 +141057,705.2850000037896,-0.05540543586552971 +141058,705.2900000037897,-0.05540539880396253 +141059,705.2950000037898,-0.05540536174100515 +141060,705.3000000037899,-0.055405324676657375 +141061,705.30500000379,-0.055405287610918966 +141062,705.3100000037902,-0.05540525054378969 +141063,705.3150000037903,-0.05540521347526933 +141064,705.3200000037904,-0.055405176405357665 +141065,705.3250000037905,-0.05540513933405447 +141066,705.3300000037906,-0.055405102261359515 +141067,705.3350000037907,-0.0554050651872726 +141068,705.3400000037908,-0.05540502811179347 +141069,705.3450000037909,-0.05540499103492192 +141070,705.350000003791,-0.05540495395665774 +141071,705.3550000037911,-0.05540491687700067 +141072,705.3600000037912,-0.055404879795950525 +141073,705.3650000037914,-0.055404842713507055 +141074,705.3700000037915,-0.055404805629670054 +141075,705.3750000037916,-0.05540476854443929 +141076,705.3800000037917,-0.05540473145781455 +141077,705.3850000037918,-0.05540469436979561 +141078,705.3900000037919,-0.05540465728038224 +141079,705.395000003792,-0.05540462018957422 +141080,705.4000000037921,-0.055404583097371334 +141081,705.4050000037922,-0.05540454600377335 +141082,705.4100000037923,-0.05540450890878005 +141083,705.4150000037924,-0.05540447181239121 +141084,705.4200000037926,-0.055404434714606626 +141085,705.4250000037927,-0.05540439761542605 +141086,705.4300000037928,-0.055404360514849274 +141087,705.4350000037929,-0.055404323412876086 +141088,705.440000003793,-0.05540428630950624 +141089,705.4450000037931,-0.05540424920473953 +141090,705.4500000037932,-0.055404212098575725 +141091,705.4550000037933,-0.05540417499101462 +141092,705.4600000037934,-0.055404137882055976 +141093,705.4650000037935,-0.05540410077169959 +141094,705.4700000037936,-0.05540406365994523 +141095,705.4750000037938,-0.05540402654679267 +141096,705.4800000037939,-0.05540398943224169 +141097,705.485000003794,-0.055403952316292075 +141098,705.4900000037941,-0.05540391519894361 +141099,705.4950000037942,-0.05540387808019607 +141100,705.5000000037943,-0.055403840960049223 +141101,705.5050000037944,-0.055403803838502866 +141102,705.5100000037945,-0.055403766715556774 +141103,705.5150000037946,-0.05540372959121072 +141104,705.5200000037947,-0.05540369246546449 +141105,705.5250000037948,-0.05540365533831785 +141106,705.530000003795,-0.055403618209770585 +141107,705.5350000037951,-0.05540358107982249 +141108,705.5400000037952,-0.05540354394847333 +141109,705.5450000037953,-0.05540350681572289 +141110,705.5500000037954,-0.055403469681570956 +141111,705.5550000037955,-0.0554034325460173 +141112,705.5600000037956,-0.0554033954090617 +141113,705.5650000037957,-0.055403358270703945 +141114,705.5700000037958,-0.05540332113094381 +141115,705.5750000037959,-0.055403283989781074 +141116,705.580000003796,-0.055403246847215516 +141117,705.5850000037962,-0.055403209703246914 +141118,705.5900000037963,-0.055403172557875066 +141119,705.5950000037964,-0.055403135411099744 +141120,705.6000000037965,-0.055403098262920725 +141121,705.6050000037966,-0.05540306111333779 +141122,705.6100000037967,-0.055403023962350716 +141123,705.6150000037968,-0.0554029868099593 +141124,705.6200000037969,-0.05540294965616332 +141125,705.625000003797,-0.05540291250096253 +141126,705.6300000037971,-0.05540287534435674 +141127,705.6350000037972,-0.05540283818634573 +141128,705.6400000037974,-0.055402801026929266 +141129,705.6450000037975,-0.05540276386610715 +141130,705.6500000037976,-0.05540272670387914 +141131,705.6550000037977,-0.055402689540245034 +141132,705.6600000037978,-0.055402652375204614 +141133,705.6650000037979,-0.05540261520875765 +141134,705.670000003798,-0.055402578040903934 +141135,705.6750000037981,-0.055402540871643244 +141136,705.6800000037982,-0.05540250370097536 +141137,705.6850000037983,-0.05540246652890008 +141138,705.6900000037984,-0.05540242935541717 +141139,705.6950000037986,-0.05540239218052641 +141140,705.7000000037987,-0.05540235500422759 +141141,705.7050000037988,-0.05540231782652049 +141142,705.7100000037989,-0.05540228064740489 +141143,705.715000003799,-0.05540224346688058 +141144,705.7200000037991,-0.05540220628494734 +141145,705.7250000037992,-0.055402169101604955 +141146,705.7300000037993,-0.05540213191685319 +141147,705.7350000037994,-0.05540209473069186 +141148,705.7400000037995,-0.05540205754312072 +141149,705.7450000037996,-0.05540202035413957 +141150,705.7500000037998,-0.05540198316374817 +141151,705.7550000037999,-0.05540194597194634 +141152,705.7600000038,-0.05540190877873383 +141153,705.7650000038001,-0.05540187158411044 +141154,705.7700000038002,-0.05540183438807594 +141155,705.7750000038003,-0.05540179719063013 +141156,705.7800000038004,-0.05540175999177279 +141157,705.7850000038005,-0.0554017227915037 +141158,705.7900000038006,-0.05540168558982265 +141159,705.7950000038007,-0.05540164838672941 +141160,705.8000000038008,-0.055401611182223774 +141161,705.805000003801,-0.05540157397630553 +141162,705.8100000038011,-0.055401536768974455 +141163,705.8150000038012,-0.05540149956023032 +141164,705.8200000038013,-0.055401462350072934 +141165,705.8250000038014,-0.05540142513850206 +141166,705.8300000038015,-0.0554013879255175 +141167,705.8350000038016,-0.05540135071111904 +141168,705.8400000038017,-0.05540131349530644 +141169,705.8450000038018,-0.05540127627807951 +141170,705.8500000038019,-0.05540123905943803 +141171,705.855000003802,-0.05540120183938177 +141172,705.8600000038022,-0.055401164617910524 +141173,705.8650000038023,-0.05540112739502408 +141174,705.8700000038024,-0.055401090170722214 +141175,705.8750000038025,-0.05540105294500472 +141176,705.8800000038026,-0.05540101571787139 +141177,705.8850000038027,-0.055400978489322 +141178,705.8900000038028,-0.05540094125935633 +141179,705.8950000038029,-0.055400904027974165 +141180,705.900000003803,-0.05540086679517531 +141181,705.9050000038031,-0.05540082956095952 +141182,705.9100000038032,-0.05540079232532661 +141183,705.9150000038034,-0.05540075508827634 +141184,705.9200000038035,-0.05540071784980852 +141185,705.9250000038036,-0.05540068060992292 +141186,705.9300000038037,-0.05540064336861933 +141187,705.9350000038038,-0.05540060612589753 +141188,705.9400000038039,-0.05540056888175731 +141189,705.945000003804,-0.055400531636198465 +141190,705.9500000038041,-0.05540049438922077 +141191,705.9550000038042,-0.05540045714082402 +141192,705.9600000038043,-0.05540041989100799 +141193,705.9650000038044,-0.055400382639772476 +141194,705.9700000038046,-0.05540034538711726 +141195,705.9750000038047,-0.05540030813304212 +141196,705.9800000038048,-0.05540027087754686 +141197,705.9850000038049,-0.055400233620631255 +141198,705.990000003805,-0.05540019636229511 +141199,705.9950000038051,-0.055400159102538184 +141200,706.0000000038052,-0.05540012184136028 +141201,706.0050000038053,-0.05540008457876118 +141202,706.0100000038054,-0.05540004731474068 +141203,706.0150000038055,-0.055400010049298544 +141204,706.0200000038056,-0.05539997278243459 +141205,706.0250000038058,-0.05539993551414858 +141206,706.0300000038059,-0.055399898244440325 +141207,706.035000003806,-0.05539986097330959 +141208,706.0400000038061,-0.055399823700756176 +141209,706.0450000038062,-0.055399786426779854 +141210,706.0500000038063,-0.055399749151380434 +141211,706.0550000038064,-0.055399711874557694 +141212,706.0600000038065,-0.05539967459631143 +141213,706.0650000038066,-0.055399637316641416 +141214,706.0700000038067,-0.05539960003554744 +141215,706.0750000038068,-0.055399562753029305 +141216,706.080000003807,-0.05539952546908678 +141217,706.0850000038071,-0.05539948818371967 +141218,706.0900000038072,-0.05539945089692775 +141219,706.0950000038073,-0.05539941360871082 +141220,706.1000000038074,-0.055399376319068654 +141221,706.1050000038075,-0.05539933902800105 +141222,706.1100000038076,-0.05539930173550779 +141223,706.1150000038077,-0.05539926444158867 +141224,706.1200000038078,-0.05539922714624348 +141225,706.1250000038079,-0.055399189849471994 +141226,706.130000003808,-0.05539915255127403 +141227,706.1350000038082,-0.05539911525164935 +141228,706.1400000038083,-0.05539907795059776 +141229,706.1450000038084,-0.05539904064811903 +141230,706.1500000038085,-0.05539900334421296 +141231,706.1550000038086,-0.05539896603887934 +141232,706.1600000038087,-0.05539892873211797 +141233,706.1650000038088,-0.05539889142392862 +141234,706.1700000038089,-0.05539885411431109 +141235,706.175000003809,-0.055398816803265166 +141236,706.1800000038091,-0.05539877949079063 +141237,706.1850000038093,-0.05539874217688728 +141238,706.1900000038094,-0.05539870486155492 +141239,706.1950000038095,-0.05539866754479331 +141240,706.2000000038096,-0.05539863022660227 +141241,706.2050000038097,-0.05539859290698156 +141242,706.2100000038098,-0.05539855558593099 +141243,706.2150000038099,-0.05539851826345036 +141244,706.22000000381,-0.055398480939539425 +141245,706.2250000038101,-0.055398443614198004 +141246,706.2300000038102,-0.05539840628742587 +141247,706.2350000038103,-0.055398368959222836 +141248,706.2400000038105,-0.05539833162958867 +141249,706.2450000038106,-0.05539829429852317 +141250,706.2500000038107,-0.05539825696602613 +141251,706.2550000038108,-0.05539821963209734 +141252,706.2600000038109,-0.05539818229673658 +141253,706.265000003811,-0.05539814495994365 +141254,706.2700000038111,-0.05539810762171835 +141255,706.2750000038112,-0.05539807028206046 +141256,706.2800000038113,-0.055398032940969774 +141257,706.2850000038114,-0.055397995598446076 +141258,706.2900000038115,-0.05539795825448917 +141259,706.2950000038117,-0.05539792090909883 +141260,706.3000000038118,-0.05539788356227486 +141261,706.3050000038119,-0.055397846214017055 +141262,706.310000003812,-0.05539780886432519 +141263,706.3150000038121,-0.055397771513199065 +141264,706.3200000038122,-0.05539773416063848 +141265,706.3250000038123,-0.05539769680664323 +141266,706.3300000038124,-0.05539765945121309 +141267,706.3350000038125,-0.055397622094347856 +141268,706.3400000038126,-0.05539758473604732 +141269,706.3450000038127,-0.05539754737631128 +141270,706.3500000038129,-0.05539751001513952 +141271,706.355000003813,-0.05539747265253183 +141272,706.3600000038131,-0.05539743528848801 +141273,706.3650000038132,-0.05539739792300786 +141274,706.3700000038133,-0.05539736055609116 +141275,706.3750000038134,-0.0553973231877377 +141276,706.3800000038135,-0.05539728581794728 +141277,706.3850000038136,-0.055397248446719685 +141278,706.3900000038137,-0.05539721107405472 +141279,706.3950000038138,-0.05539717369995218 +141280,706.400000003814,-0.05539713632441183 +141281,706.405000003814,-0.05539709894743349 +141282,706.4100000038142,-0.05539706156901694 +141283,706.4150000038143,-0.05539702418916198 +141284,706.4200000038144,-0.0553969868078684 +141285,706.4250000038145,-0.055396949425136004 +141286,706.4300000038146,-0.055396912040964565 +141287,706.4350000038147,-0.05539687465535389 +141288,706.4400000038148,-0.05539683726830376 +141289,706.4450000038149,-0.05539679987981398 +141290,706.450000003815,-0.05539676248988435 +141291,706.4550000038151,-0.05539672509851465 +141292,706.4600000038153,-0.05539668770570468 +141293,706.4650000038154,-0.05539665031145422 +141294,706.4700000038155,-0.05539661291576309 +141295,706.4750000038156,-0.05539657551863105 +141296,706.4800000038157,-0.055396538120057924 +141297,706.4850000038158,-0.05539650072004349 +141298,706.4900000038159,-0.05539646331858755 +141299,706.495000003816,-0.05539642591568989 +141300,706.5000000038161,-0.055396388511350314 +141301,706.5050000038162,-0.0553963511055686 +141302,706.5100000038163,-0.05539631369834456 +141303,706.5150000038165,-0.055396276289677984 +141304,706.5200000038166,-0.055396238879568654 +141305,706.5250000038167,-0.05539620146801639 +141306,706.5300000038168,-0.055396164055020965 +141307,706.5350000038169,-0.05539612664058218 +141308,706.540000003817,-0.05539608922469984 +141309,706.5450000038171,-0.05539605180737371 +141310,706.5500000038172,-0.05539601438860362 +141311,706.5550000038173,-0.055395976968389334 +141312,706.5600000038174,-0.05539593954673067 +141313,706.5650000038175,-0.055395902123627425 +141314,706.5700000038177,-0.05539586469907938 +141315,706.5750000038178,-0.05539582727308634 +141316,706.5800000038179,-0.05539578984564808 +141317,706.585000003818,-0.05539575241676443 +141318,706.5900000038181,-0.055395714986435154 +141319,706.5950000038182,-0.05539567755466007 +141320,706.6000000038183,-0.05539564012143896 +141321,706.6050000038184,-0.05539560268677163 +141322,706.6100000038185,-0.055395565250657856 +141323,706.6150000038186,-0.055395527813097444 +141324,706.6200000038187,-0.0553954903740902 +141325,706.6250000038189,-0.05539545293363591 +141326,706.630000003819,-0.055395415491734386 +141327,706.6350000038191,-0.055395378048385395 +141328,706.6400000038192,-0.055395340603588764 +141329,706.6450000038193,-0.055395303157344276 +141330,706.6500000038194,-0.05539526570965171 +141331,706.6550000038195,-0.05539522826051089 +141332,706.6600000038196,-0.055395190809921606 +141333,706.6650000038197,-0.05539515335788364 +141334,706.6700000038198,-0.0553951159043968 +141335,706.67500000382,-0.055395078449460886 +141336,706.68000000382,-0.055395040993075684 +141337,706.6850000038202,-0.055395003535241 +141338,706.6900000038203,-0.055394966075956634 +141339,706.6950000038204,-0.05539492861522237 +141340,706.7000000038205,-0.05539489115303802 +141341,706.7050000038206,-0.05539485368940336 +141342,706.7100000038207,-0.05539481622431821 +141343,706.7150000038208,-0.05539477875778235 +141344,706.7200000038209,-0.055394741289795595 +141345,706.725000003821,-0.05539470382035772 +141346,706.7300000038211,-0.05539466634946854 +141347,706.7350000038213,-0.055394628877127844 +141348,706.7400000038214,-0.05539459140333544 +141349,706.7450000038215,-0.05539455392809112 +141350,706.7500000038216,-0.05539451645139467 +141351,706.7550000038217,-0.0553944789732459 +141352,706.7600000038218,-0.05539444149364461 +141353,706.7650000038219,-0.05539440401259058 +141354,706.770000003822,-0.055394366530083644 +141355,706.7750000038221,-0.055394329046123576 +141356,706.7800000038222,-0.05539429156071017 +141357,706.7850000038223,-0.05539425407384323 +141358,706.7900000038225,-0.05539421658552256 +141359,706.7950000038226,-0.055394179095747946 +141360,706.8000000038227,-0.05539414160451919 +141361,706.8050000038228,-0.0553941041118361 +141362,706.8100000038229,-0.055394066617698474 +141363,706.815000003823,-0.05539402912210611 +141364,706.8200000038231,-0.05539399162505879 +141365,706.8250000038232,-0.05539395412655634 +141366,706.8300000038233,-0.05539391662659854 +141367,706.8350000038234,-0.055393879125185196 +141368,706.8400000038235,-0.0553938416223161 +141369,706.8450000038237,-0.05539380411799105 +141370,706.8500000038238,-0.05539376661220986 +141371,706.8550000038239,-0.055393729104972325 +141372,706.860000003824,-0.05539369159627823 +141373,706.8650000038241,-0.055393654086127384 +141374,706.8700000038242,-0.055393616574519584 +141375,706.8750000038243,-0.055393579061454645 +141376,706.8800000038244,-0.055393541546932344 +141377,706.8850000038245,-0.05539350403095249 +141378,706.8900000038246,-0.05539346651351488 +141379,706.8950000038247,-0.055393428994619326 +141380,706.9000000038249,-0.05539339147426561 +141381,706.905000003825,-0.05539335395245355 +141382,706.9100000038251,-0.05539331642918293 +141383,706.9150000038252,-0.055393278904453565 +141384,706.9200000038253,-0.05539324137826525 +141385,706.9250000038254,-0.055393203850617766 +141386,706.9300000038255,-0.05539316632151095 +141387,706.9350000038256,-0.055393128790944574 +141388,706.9400000038257,-0.05539309125891845 +141389,706.9450000038258,-0.055393053725432365 +141390,706.950000003826,-0.05539301619048614 +141391,706.9550000038261,-0.05539297865407956 +141392,706.9600000038262,-0.05539294111621243 +141393,706.9650000038263,-0.05539290357688455 +141394,706.9700000038264,-0.05539286603609573 +141395,706.9750000038265,-0.055392828493845754 +141396,706.9800000038266,-0.05539279095013444 +141397,706.9850000038267,-0.05539275340496158 +141398,706.9900000038268,-0.05539271585832698 +141399,706.9950000038269,-0.05539267831023044 +141400,707.000000003827,-0.055392640760671755 +141401,707.0050000038271,-0.05539260320965073 +141402,707.0100000038273,-0.05539256565716717 +141403,707.0150000038274,-0.05539252810322089 +141404,707.0200000038275,-0.05539249054781166 +141405,707.0250000038276,-0.055392452990939305 +141406,707.0300000038277,-0.05539241543260361 +141407,707.0350000038278,-0.05539237787280439 +141408,707.0400000038279,-0.055392340311541444 +141409,707.045000003828,-0.05539230274881457 +141410,707.0500000038281,-0.05539226518462358 +141411,707.0550000038282,-0.05539222761896827 +141412,707.0600000038283,-0.05539219005184843 +141413,707.0650000038285,-0.05539215248326389 +141414,707.0700000038286,-0.05539211491321441 +141415,707.0750000038287,-0.05539207734169983 +141416,707.0800000038288,-0.05539203976871994 +141417,707.0850000038289,-0.05539200219427456 +141418,707.090000003829,-0.05539196461836346 +141419,707.0950000038291,-0.05539192704098646 +141420,707.1000000038292,-0.05539188946214337 +141421,707.1050000038293,-0.05539185188183397 +141422,707.1100000038294,-0.05539181430005809 +141423,707.1150000038296,-0.05539177671681551 +141424,707.1200000038297,-0.055391739132106044 +141425,707.1250000038298,-0.0553917015459295 +141426,707.1300000038299,-0.05539166395828566 +141427,707.13500000383,-0.05539162636917435 +141428,707.1400000038301,-0.05539158877859537 +141429,707.1450000038302,-0.05539155118654851 +141430,707.1500000038303,-0.055391513593033584 +141431,707.1550000038304,-0.055391475998050395 +141432,707.1600000038305,-0.05539143840159875 +141433,707.1650000038306,-0.05539140080367844 +141434,707.1700000038308,-0.05539136320428928 +141435,707.1750000038309,-0.05539132560343106 +141436,707.180000003831,-0.05539128800110361 +141437,707.1850000038311,-0.055391250397306704 +141438,707.1900000038312,-0.055391212792040165 +141439,707.1950000038313,-0.055391175185303794 +141440,707.2000000038314,-0.055391137577097384 +141441,707.2050000038315,-0.05539109996742076 +141442,707.2100000038316,-0.05539106235627371 +141443,707.2150000038317,-0.05539102474365604 +141444,707.2200000038318,-0.05539098712956755 +141445,707.225000003832,-0.05539094951400806 +141446,707.2300000038321,-0.05539091189697736 +141447,707.2350000038322,-0.05539087427847527 +141448,707.2400000038323,-0.05539083665850157 +141449,707.2450000038324,-0.055390799037056085 +141450,707.2500000038325,-0.05539076141413862 +141451,707.2550000038326,-0.05539072378974898 +141452,707.2600000038327,-0.055390686163886954 +141453,707.2650000038328,-0.055390648536552366 +141454,707.2700000038329,-0.055390610907745004 +141455,707.275000003833,-0.05539057327746468 +141456,707.2800000038332,-0.05539053564571121 +141457,707.2850000038333,-0.055390498012484385 +141458,707.2900000038334,-0.05539046037778402 +141459,707.2950000038335,-0.055390422741609914 +141460,707.3000000038336,-0.055390385103961874 +141461,707.3050000038337,-0.05539034746483971 +141462,707.3100000038338,-0.05539030982424322 +141463,707.3150000038339,-0.05539027218217221 +141464,707.320000003834,-0.05539023453862649 +141465,707.3250000038341,-0.05539019689360586 +141466,707.3300000038342,-0.05539015924711013 +141467,707.3350000038344,-0.05539012159913912 +141468,707.3400000038345,-0.05539008394969261 +141469,707.3450000038346,-0.05539004629877043 +141470,707.3500000038347,-0.05539000864637237 +141471,707.3550000038348,-0.05538997099249823 +141472,707.3600000038349,-0.05538993333714784 +141473,707.365000003835,-0.05538989568032099 +141474,707.3700000038351,-0.05538985802201749 +141475,707.3750000038352,-0.05538982036223715 +141476,707.3800000038353,-0.055389782700979766 +141477,707.3850000038354,-0.055389745038245154 +141478,707.3900000038356,-0.05538970737403312 +141479,707.3950000038357,-0.05538966970834348 +141480,707.4000000038358,-0.055389632041176015 +141481,707.4050000038359,-0.055389594372530555 +141482,707.410000003836,-0.055389556702406896 +141483,707.4150000038361,-0.05538951903080485 +141484,707.4200000038362,-0.05538948135772422 +141485,707.4250000038363,-0.05538944368316483 +141486,707.4300000038364,-0.05538940600712647 +141487,707.4350000038365,-0.055389368329608946 +141488,707.4400000038366,-0.055389330650612065 +141489,707.4450000038368,-0.055389292970135645 +141490,707.4500000038369,-0.055389255288179486 +141491,707.455000003837,-0.05538921760474339 +141492,707.4600000038371,-0.05538917991982718 +141493,707.4650000038372,-0.05538914223343066 +141494,707.4700000038373,-0.055389104545553625 +141495,707.4750000038374,-0.0553890668561959 +141496,707.4800000038375,-0.055389029165357276 +141497,707.4850000038376,-0.055388991473037566 +141498,707.4900000038377,-0.05538895377923659 +141499,707.4950000038378,-0.055388916083954146 +141500,707.500000003838,-0.05538887838719003 +141501,707.5050000038381,-0.055388840688944084 +141502,707.5100000038382,-0.05538880298921609 +141503,707.5150000038383,-0.055388765288005855 +141504,707.5200000038384,-0.055388727585313206 +141505,707.5250000038385,-0.05538868988113794 +141506,707.5300000038386,-0.05538865217547986 +141507,707.5350000038387,-0.05538861446833879 +141508,707.5400000038388,-0.05538857675971453 +141509,707.5450000038389,-0.055388539049606875 +141510,707.550000003839,-0.05538850133801566 +141511,707.5550000038392,-0.05538846362494069 +141512,707.5600000038393,-0.05538842591038174 +141513,707.5650000038394,-0.05538838819433866 +141514,707.5700000038395,-0.05538835047681124 +141515,707.5750000038396,-0.0553883127577993 +141516,707.5800000038397,-0.055388275037302634 +141517,707.5850000038398,-0.05538823731532107 +141518,707.5900000038399,-0.055388199591854405 +141519,707.59500000384,-0.05538816186690245 +141520,707.6000000038401,-0.05538812414046501 +141521,707.6050000038402,-0.05538808641254191 +141522,707.6100000038404,-0.055388048683132955 +141523,707.6150000038405,-0.055388010952237936 +141524,707.6200000038406,-0.055387973219856675 +141525,707.6250000038407,-0.05538793548598899 +141526,707.6300000038408,-0.05538789775063469 +141527,707.6350000038409,-0.055387860013793574 +141528,707.640000003841,-0.05538782227546545 +141529,707.6450000038411,-0.055387784535650145 +141530,707.6500000038412,-0.05538774679434745 +141531,707.6550000038413,-0.055387709051557196 +141532,707.6600000038414,-0.05538767130727918 +141533,707.6650000038416,-0.055387633561513216 +141534,707.6700000038417,-0.055387595814259116 +141535,707.6750000038418,-0.055387558065516686 +141536,707.6800000038419,-0.055387520315285745 +141537,707.685000003842,-0.0553874825635661 +141538,707.6900000038421,-0.05538744481035755 +141539,707.6950000038422,-0.05538740705565992 +141540,707.7000000038423,-0.05538736929947302 +141541,707.7050000038424,-0.055387331541796654 +141542,707.7100000038425,-0.05538729378263064 +141543,707.7150000038426,-0.05538725602197478 +141544,707.7200000038428,-0.05538721825982888 +141545,707.7250000038429,-0.05538718049619278 +141546,707.730000003843,-0.05538714273106626 +141547,707.7350000038431,-0.05538710496444915 +141548,707.7400000038432,-0.05538706719634127 +141549,707.7450000038433,-0.0553870294267424 +141550,707.7500000038434,-0.05538699165565238 +141551,707.7550000038435,-0.055386953883071 +141552,707.7600000038436,-0.0553869161089981 +141553,707.7650000038437,-0.05538687833343346 +141554,707.7700000038438,-0.05538684055637691 +141555,707.775000003844,-0.05538680277782825 +141556,707.7800000038441,-0.05538676499778731 +141557,707.7850000038442,-0.055386727216253887 +141558,707.7900000038443,-0.055386689433227804 +141559,707.7950000038444,-0.055386651648708866 +141560,707.8000000038445,-0.055386613862696894 +141561,707.8050000038446,-0.055386576075191686 +141562,707.8100000038447,-0.05538653828619306 +141563,707.8150000038448,-0.05538650049570083 +141564,707.8200000038449,-0.05538646270371481 +141565,707.825000003845,-0.05538642491023482 +141566,707.8300000038452,-0.055386387115260664 +141567,707.8350000038453,-0.05538634931879214 +141568,707.8400000038454,-0.05538631152082908 +141569,707.8450000038455,-0.055386273721371296 +141570,707.8500000038456,-0.0553862359204186 +141571,707.8550000038457,-0.05538619811797079 +141572,707.8600000038458,-0.0553861603140277 +141573,707.8650000038459,-0.05538612250858914 +141574,707.870000003846,-0.05538608470165491 +141575,707.8750000038461,-0.05538604689322483 +141576,707.8800000038462,-0.055386009083298715 +141577,707.8850000038464,-0.05538597127187639 +141578,707.8900000038465,-0.055385933458957655 +141579,707.8950000038466,-0.05538589564454232 +141580,707.9000000038467,-0.055385857828630196 +141581,707.9050000038468,-0.05538582001122112 +141582,707.9100000038469,-0.05538578219231488 +141583,707.915000003847,-0.0553857443719113 +141584,707.9200000038471,-0.0553857065500102 +141585,707.9250000038472,-0.05538566872661139 +141586,707.9300000038473,-0.055385630901714666 +141587,707.9350000038474,-0.055385593075319865 +141588,707.9400000038476,-0.0553855552474268 +141589,707.9450000038477,-0.05538551741803526 +141590,707.9500000038478,-0.0553854795871451 +141591,707.9550000038479,-0.055385441754756105 +141592,707.960000003848,-0.05538540392086809 +141593,707.9650000038481,-0.055385366085480885 +141594,707.9700000038482,-0.055385328248594295 +141595,707.9750000038483,-0.05538529041020813 +141596,707.9800000038484,-0.05538525257032221 +141597,707.9850000038485,-0.05538521472893635 +141598,707.9900000038486,-0.05538517688605036 +141599,707.9950000038488,-0.055385139041664075 +141600,708.0000000038489,-0.05538510119577728 +141601,708.005000003849,-0.05538506334838982 +141602,708.0100000038491,-0.05538502549950148 +141603,708.0150000038492,-0.055384987649112094 +141604,708.0200000038493,-0.05538494979722148 +141605,708.0250000038494,-0.05538491194382944 +141606,708.0300000038495,-0.05538487408893579 +141607,708.0350000038496,-0.055384836232540355 +141608,708.0400000038497,-0.05538479837464294 +141609,708.0450000038499,-0.05538476051524339 +141610,708.05000000385,-0.055384722654341474 +141611,708.0550000038501,-0.05538468479193705 +141612,708.0600000038502,-0.05538464692802991 +141613,708.0650000038503,-0.055384609062619876 +141614,708.0700000038504,-0.05538457119570676 +141615,708.0750000038505,-0.05538453332729037 +141616,708.0800000038506,-0.055384495457370536 +141617,708.0850000038507,-0.055384457585947074 +141618,708.0900000038508,-0.05538441971301979 +141619,708.0950000038509,-0.05538438183858853 +141620,708.100000003851,-0.055384343962653064 +141621,708.1050000038512,-0.05538430608521324 +141622,708.1100000038513,-0.05538426820626886 +141623,708.1150000038514,-0.055384230325819746 +141624,708.1200000038515,-0.055384192443865714 +141625,708.1250000038516,-0.05538415456040659 +141626,708.1300000038517,-0.05538411667544217 +141627,708.1350000038518,-0.055384078788972294 +141628,708.1400000038519,-0.055384040900996766 +141629,708.145000003852,-0.05538400301151541 +141630,708.1500000038521,-0.05538396512052802 +141631,708.1550000038523,-0.05538392722803444 +141632,708.1600000038524,-0.05538388933403448 +141633,708.1650000038525,-0.05538385143852794 +141634,708.1700000038526,-0.05538381354151467 +141635,708.1750000038527,-0.055383775642994466 +141636,708.1800000038528,-0.05538373774296714 +141637,708.1850000038529,-0.055383699841432515 +141638,708.190000003853,-0.05538366193839042 +141639,708.1950000038531,-0.055383624033840666 +141640,708.2000000038532,-0.05538358612778305 +141641,708.2050000038533,-0.05538354822021742 +141642,708.2100000038535,-0.05538351031114358 +141643,708.2150000038536,-0.055383472400561344 +141644,708.2200000038537,-0.055383434488470544 +141645,708.2250000038538,-0.05538339657487097 +141646,708.2300000038539,-0.05538335865976248 +141647,708.235000003854,-0.055383320743144865 +141648,708.2400000038541,-0.05538328282501794 +141649,708.2450000038542,-0.05538324490538153 +141650,708.2500000038543,-0.05538320698423546 +141651,708.2550000038544,-0.055383169061579536 +141652,708.2600000038545,-0.0553831311374136 +141653,708.2650000038547,-0.05538309321173745 +141654,708.2700000038548,-0.055383055284550904 +141655,708.2750000038549,-0.055383017355853784 +141656,708.280000003855,-0.0553829794256459 +141657,708.2850000038551,-0.05538294149392709 +141658,708.2900000038552,-0.05538290356069716 +141659,708.2950000038553,-0.05538286562595593 +141660,708.3000000038554,-0.05538282768970322 +141661,708.3050000038555,-0.05538278975193886 +141662,708.3100000038556,-0.055382751812662646 +141663,708.3150000038557,-0.05538271387187441 +141664,708.3200000038559,-0.05538267592957398 +141665,708.325000003856,-0.055382637985761166 +141666,708.3300000038561,-0.05538260004043579 +141667,708.3350000038562,-0.055382562093597675 +141668,708.3400000038563,-0.05538252414524662 +141669,708.3450000038564,-0.055382486195382455 +141670,708.3500000038565,-0.055382448244005004 +141671,708.3550000038566,-0.055382410291114084 +141672,708.3600000038567,-0.05538237233670952 +141673,708.3650000038568,-0.05538233438079114 +141674,708.370000003857,-0.05538229642335874 +141675,708.375000003857,-0.055382258464412144 +141676,708.3800000038572,-0.05538222050395119 +141677,708.3850000038573,-0.05538218254197568 +141678,708.3900000038574,-0.055382144578485455 +141679,708.3950000038575,-0.0553821066134803 +141680,708.4000000038576,-0.05538206864696007 +141681,708.4050000038577,-0.05538203067892457 +141682,708.4100000038578,-0.05538199270937362 +141683,708.4150000038579,-0.055381954738307045 +141684,708.420000003858,-0.055381916765724654 +141685,708.4250000038581,-0.05538187879162628 +141686,708.4300000038583,-0.055381840816011746 +141687,708.4350000038584,-0.05538180283888086 +141688,708.4400000038585,-0.05538176486023345 +141689,708.4450000038586,-0.055381726880069336 +141690,708.4500000038587,-0.05538168889838835 +141691,708.4550000038588,-0.055381650915190296 +141692,708.4600000038589,-0.055381612930474985 +141693,708.465000003859,-0.055381574944242264 +141694,708.4700000038591,-0.05538153695649194 +141695,708.4750000038592,-0.05538149896722385 +141696,708.4800000038593,-0.05538146097643779 +141697,708.4850000038595,-0.05538142298413361 +141698,708.4900000038596,-0.0553813849903111 +141699,708.4950000038597,-0.055381346994970104 +141700,708.5000000038598,-0.055381308998110425 +141701,708.5050000038599,-0.0553812709997319 +141702,708.51000000386,-0.05538123299983434 +141703,708.5150000038601,-0.055381194998417586 +141704,708.5200000038602,-0.055381156995481434 +141705,708.5250000038603,-0.055381118991025734 +141706,708.5300000038604,-0.05538108098505028 +141707,708.5350000038605,-0.055381042977554897 +141708,708.5400000038607,-0.05538100496853943 +141709,708.5450000038608,-0.05538096695800369 +141710,708.5500000038609,-0.05538092894594749 +141711,708.555000003861,-0.05538089093237066 +141712,708.5600000038611,-0.055380852917273016 +141713,708.5650000038612,-0.055380814900654385 +141714,708.5700000038613,-0.055380776882514596 +141715,708.5750000038614,-0.05538073886285346 +141716,708.5800000038615,-0.0553807008416708 +141717,708.5850000038616,-0.05538066281896644 +141718,708.5900000038617,-0.055380624794740214 +141719,708.5950000038619,-0.055380586768991935 +141720,708.600000003862,-0.05538054874172143 +141721,708.6050000038621,-0.055380510712928516 +141722,708.6100000038622,-0.05538047268261301 +141723,708.6150000038623,-0.055380434650774746 +141724,708.6200000038624,-0.05538039661741354 +141725,708.6250000038625,-0.055380358582529224 +141726,708.6300000038626,-0.05538032054612161 +141727,708.6350000038627,-0.055380282508190534 +141728,708.6400000038628,-0.05538024446873581 +141729,708.645000003863,-0.05538020642775726 +141730,708.650000003863,-0.055380168385254724 +141731,708.6550000038632,-0.055380130341228 +141732,708.6600000038633,-0.05538009229567692 +141733,708.6650000038634,-0.05538005424860131 +141734,708.6700000038635,-0.05538001620000101 +141735,708.6750000038636,-0.05537997814987582 +141736,708.6800000038637,-0.055379940098225576 +141737,708.6850000038638,-0.055379902045050104 +141738,708.6900000038639,-0.05537986399034921 +141739,708.695000003864,-0.05537982593412274 +141740,708.7000000038641,-0.055379787876370504 +141741,708.7050000038643,-0.055379749817092316 +141742,708.7100000038644,-0.05537971175628803 +141743,708.7150000038645,-0.05537967369395746 +141744,708.7200000038646,-0.05537963563010041 +141745,708.7250000038647,-0.055379597564716734 +141746,708.7300000038648,-0.05537955949780623 +141747,708.7350000038649,-0.055379521429368736 +141748,708.740000003865,-0.055379483359404076 +141749,708.7450000038651,-0.055379445287912075 +141750,708.7500000038652,-0.055379407214892554 +141751,708.7550000038653,-0.05537936914034533 +141752,708.7600000038655,-0.055379331064270246 +141753,708.7650000038656,-0.05537929298666711 +141754,708.7700000038657,-0.05537925490753577 +141755,708.7750000038658,-0.05537921682687602 +141756,708.7800000038659,-0.05537917874468771 +141757,708.785000003866,-0.05537914066097065 +141758,708.7900000038661,-0.055379102575724676 +141759,708.7950000038662,-0.055379064488949595 +141760,708.8000000038663,-0.05537902640064526 +141761,708.8050000038664,-0.05537898831081148 +141762,708.8100000038665,-0.055378950219448074 +141763,708.8150000038667,-0.05537891212655488 +141764,708.8200000038668,-0.05537887403213172 +141765,708.8250000038669,-0.05537883593617842 +141766,708.830000003867,-0.055378797838694795 +141767,708.8350000038671,-0.05537875973968069 +141768,708.8400000038672,-0.05537872163913592 +141769,708.8450000038673,-0.0553786835370603 +141770,708.8500000038674,-0.05537864543345367 +141771,708.8550000038675,-0.05537860732831585 +141772,708.8600000038676,-0.05537856922164669 +141773,708.8650000038677,-0.055378531113445977 +141774,708.8700000038679,-0.05537849300371356 +141775,708.875000003868,-0.055378454892449254 +141776,708.8800000038681,-0.0553784167796529 +141777,708.8850000038682,-0.05537837866532431 +141778,708.8900000038683,-0.05537834054946332 +141779,708.8950000038684,-0.055378302432069745 +141780,708.9000000038685,-0.05537826431314343 +141781,708.9050000038686,-0.0553782261926842 +141782,708.9100000038687,-0.055378188070691864 +141783,708.9150000038688,-0.05537814994716625 +141784,708.920000003869,-0.0553781118221072 +141785,708.9250000038691,-0.05537807369551453 +141786,708.9300000038692,-0.055378035567388066 +141787,708.9350000038693,-0.055377997437727644 +141788,708.9400000038694,-0.05537795930653309 +141789,708.9450000038695,-0.055377921173804225 +141790,708.9500000038696,-0.05537788303954088 +141791,708.9550000038697,-0.05537784490374287 +141792,708.9600000038698,-0.055377806766410034 +141793,708.9650000038699,-0.0553777686275422 +141794,708.97000000387,-0.05537773048713919 +141795,708.9750000038702,-0.055377692345200846 +141796,708.9800000038703,-0.05537765420172697 +141797,708.9850000038704,-0.05537761605671741 +141798,708.9900000038705,-0.055377577910172 +141799,708.9950000038706,-0.05537753976209053 +141800,709.0000000038707,-0.055377501612472874 +141801,709.0050000038708,-0.055377463461318825 +141802,709.0100000038709,-0.055377425308628235 +141803,709.015000003871,-0.05537738715440092 +141804,709.0200000038711,-0.05537734899863671 +141805,709.0250000038712,-0.05537731084133543 +141806,709.0300000038714,-0.05537727268249691 +141807,709.0350000038715,-0.055377234522120976 +141808,709.0400000038716,-0.055377196360207465 +141809,709.0450000038717,-0.0553771581967562 +141810,709.0500000038718,-0.05537712003176701 +141811,709.0550000038719,-0.055377081865239715 +141812,709.060000003872,-0.05537704369717416 +141813,709.0650000038721,-0.05537700552757016 +141814,709.0700000038722,-0.055376967356427546 +141815,709.0750000038723,-0.05537692918374614 +141816,709.0800000038724,-0.055376891009525794 +141817,709.0850000038726,-0.055376852833766324 +141818,709.0900000038727,-0.05537681465646754 +141819,709.0950000038728,-0.05537677647762931 +141820,709.1000000038729,-0.05537673829725142 +141821,709.105000003873,-0.05537670011533374 +141822,709.1100000038731,-0.055376661931876056 +141823,709.1150000038732,-0.05537662374687824 +141824,709.1200000038733,-0.05537658556034009 +141825,709.1250000038734,-0.055376547372261456 +141826,709.1300000038735,-0.055376509182642156 +141827,709.1350000038736,-0.055376470991482026 +141828,709.1400000038738,-0.055376432798780885 +141829,709.1450000038739,-0.055376394604538574 +141830,709.150000003874,-0.05537635640875491 +141831,709.1550000038741,-0.055376318211429736 +141832,709.1600000038742,-0.055376280012562874 +141833,709.1650000038743,-0.05537624181215415 +141834,709.1700000038744,-0.05537620361020341 +141835,709.1750000038745,-0.05537616540671047 +141836,709.1800000038746,-0.05537612720167516 +141837,709.1850000038747,-0.05537608899509732 +141838,709.1900000038748,-0.055376050786976765 +141839,709.195000003875,-0.05537601257731333 +141840,709.2000000038751,-0.05537597436610686 +141841,709.2050000038752,-0.055375936153357175 +141842,709.2100000038753,-0.055375897939064105 +141843,709.2150000038754,-0.05537585972322748 +141844,709.2200000038755,-0.05537582150584713 +141845,709.2250000038756,-0.055375783286922886 +141846,709.2300000038757,-0.05537574506645457 +141847,709.2350000038758,-0.05537570684444202 +141848,709.2400000038759,-0.05537566862088508 +141849,709.245000003876,-0.05537563039578356 +141850,709.2500000038762,-0.05537559216913731 +141851,709.2550000038763,-0.05537555394094615 +141852,709.2600000038764,-0.055375515711209904 +141853,709.2650000038765,-0.05537547747992841 +141854,709.2700000038766,-0.0553754392471015 +141855,709.2750000038767,-0.05537540101272902 +141856,709.2800000038768,-0.05537536277681077 +141857,709.2850000038769,-0.055375324539346606 +141858,709.290000003877,-0.055375286300336356 +141859,709.2950000038771,-0.055375248059779836 +141860,709.3000000038772,-0.05537520981767689 +141861,709.3050000038774,-0.05537517157402735 +141862,709.3100000038775,-0.05537513332883104 +141863,709.3150000038776,-0.055375095082087794 +141864,709.3200000038777,-0.05537505683379746 +141865,709.3250000038778,-0.055375018583959844 +141866,709.3300000038779,-0.05537498033257479 +141867,709.335000003878,-0.055374942079642143 +141868,709.3400000038781,-0.05537490382516171 +141869,709.3450000038782,-0.05537486556913333 +141870,709.3500000038783,-0.055374827311556844 +141871,709.3550000038784,-0.05537478905243208 +141872,709.3600000038786,-0.055374750791758874 +141873,709.3650000038787,-0.05537471252953705 +141874,709.3700000038788,-0.05537467426576644 +141875,709.3750000038789,-0.055374636000446883 +141876,709.380000003879,-0.05537459773357822 +141877,709.3850000038791,-0.05537455946516026 +141878,709.3900000038792,-0.05537452119519286 +141879,709.3950000038793,-0.055374482923675826 +141880,709.4000000038794,-0.05537444465060902 +141881,709.4050000038795,-0.05537440637599225 +141882,709.4100000038796,-0.05537436809982536 +141883,709.4150000038798,-0.055374329822108194 +141884,709.4200000038799,-0.05537429154284057 +141885,709.42500000388,-0.055374253262022326 +141886,709.4300000038801,-0.05537421497965329 +141887,709.4350000038802,-0.0553741766957333 +141888,709.4400000038803,-0.055374138410262175 +141889,709.4450000038804,-0.055374100123239775 +141890,709.4500000038805,-0.05537406183466591 +141891,709.4550000038806,-0.05537402354454042 +141892,709.4600000038807,-0.055373985252863155 +141893,709.4650000038808,-0.055373946959633914 +141894,709.470000003881,-0.05537390866485257 +141895,709.4750000038811,-0.05537387036851892 +141896,709.4800000038812,-0.05537383207063283 +141897,709.4850000038813,-0.05537379377119412 +141898,709.4900000038814,-0.05537375547020261 +141899,709.4950000038815,-0.05537371716765816 +141900,709.5000000038816,-0.05537367886356057 +141901,709.5050000038817,-0.05537364055790971 +141902,709.5100000038818,-0.05537360225070539 +141903,709.5150000038819,-0.05537356394194745 +141904,709.520000003882,-0.05537352563163573 +141905,709.5250000038822,-0.055373487319770064 +141906,709.5300000038823,-0.05537344900635029 +141907,709.5350000038824,-0.055373410691376225 +141908,709.5400000038825,-0.055373372374847706 +141909,709.5450000038826,-0.055373334056764575 +141910,709.5500000038827,-0.05537329573712668 +141911,709.5550000038828,-0.05537325741593384 +141912,709.5600000038829,-0.055373219093185884 +141913,709.565000003883,-0.055373180768882646 +141914,709.5700000038831,-0.05537314244302398 +141915,709.5750000038832,-0.05537310411560971 +141916,709.5800000038834,-0.05537306578663967 +141917,709.5850000038835,-0.05537302745611371 +141918,709.5900000038836,-0.05537298912403164 +141919,709.5950000038837,-0.05537295079039329 +141920,709.6000000038838,-0.05537291245519852 +141921,709.6050000038839,-0.05537287411844716 +141922,709.610000003884,-0.055372835780139046 +141923,709.6150000038841,-0.055372797440274 +141924,709.6200000038842,-0.05537275909885186 +141925,709.6250000038843,-0.05537272075587248 +141926,709.6300000038844,-0.05537268241133567 +141927,709.6350000038846,-0.05537264406524129 +141928,709.6400000038847,-0.05537260571758915 +141929,709.6450000038848,-0.05537256736837911 +141930,709.6500000038849,-0.055372529017610986 +141931,709.655000003885,-0.05537249066528463 +141932,709.6600000038851,-0.05537245231139987 +141933,709.6650000038852,-0.055372413955956545 +141934,709.6700000038853,-0.05537237559895448 +141935,709.6750000038854,-0.05537233724039352 +141936,709.6800000038855,-0.05537229888027351 +141937,709.6850000038856,-0.055372260518594264 +141938,709.6900000038858,-0.05537222215535563 +141939,709.6950000038859,-0.05537218379055746 +141940,709.700000003886,-0.05537214542419956 +141941,709.7050000038861,-0.055372107056281795 +141942,709.7100000038862,-0.05537206868680397 +141943,709.7150000038863,-0.05537203031576596 +141944,709.7200000038864,-0.055371991943167574 +141945,709.7250000038865,-0.055371953569008654 +141946,709.7300000038866,-0.055371915193289045 +141947,709.7350000038867,-0.05537187681600857 +141948,709.7400000038868,-0.05537183843716707 +141949,709.745000003887,-0.055371800056764384 +141950,709.7500000038871,-0.05537176167480035 +141951,709.7550000038872,-0.05537172329127481 +141952,709.7600000038873,-0.05537168490618758 +141953,709.7650000038874,-0.05537164651953852 +141954,709.7700000038875,-0.055371608131327466 +141955,709.7750000038876,-0.05537156974155424 +141956,709.7800000038877,-0.05537153135021869 +141957,709.7850000038878,-0.055371492957320655 +141958,709.7900000038879,-0.05537145456285997 +141959,709.795000003888,-0.05537141616683647 +141960,709.8000000038882,-0.05537137776924999 +141961,709.8050000038883,-0.05537133937010037 +141962,709.8100000038884,-0.05537130096938745 +141963,709.8150000038885,-0.055371262567111064 +141964,709.8200000038886,-0.05537122416327105 +141965,709.8250000038887,-0.05537118575786725 +141966,709.8300000038888,-0.055371147350899506 +141967,709.8350000038889,-0.055371108942367644 +141968,709.840000003889,-0.055371070532271506 +141969,709.8450000038891,-0.05537103212061094 +141970,709.8500000038892,-0.05537099370738577 +141971,709.8550000038894,-0.055370955292595836 +141972,709.8600000038895,-0.05537091687624098 +141973,709.8650000038896,-0.055370878458321046 +141974,709.8700000038897,-0.05537084003883587 +141975,709.8750000038898,-0.05537080161778528 +141976,709.8800000038899,-0.05537076319516912 +141977,709.88500000389,-0.05537072477098722 +141978,709.8900000038901,-0.05537068634523944 +141979,709.8950000038902,-0.0553706479179256 +141980,709.9000000038903,-0.05537060948904555 +141981,709.9050000038904,-0.055370571058599126 +141982,709.9100000038906,-0.05537053262658617 +141983,709.9150000038907,-0.055370494193006506 +141984,709.9200000038908,-0.05537045575785999 +141985,709.9250000038909,-0.05537041732114645 +141986,709.930000003891,-0.05537037888286572 +141987,709.9350000038911,-0.055370340443017654 +141988,709.9400000038912,-0.05537030200160208 +141989,709.9450000038913,-0.05537026355861886 +141990,709.9500000038914,-0.055370225114067806 +141991,709.9550000038915,-0.055370186667948774 +141992,709.9600000038917,-0.05537014822026159 +141993,709.9650000038918,-0.055370109771006086 +141994,709.9700000038919,-0.055370071320182124 +141995,709.975000003892,-0.055370032867789534 +141996,709.9800000038921,-0.05536999441382815 +141997,709.9850000038922,-0.05536995595829782 +141998,709.9900000038923,-0.055369917501198386 +141999,709.9950000038924,-0.05536987904252969 +142000,710.0000000038925,-0.05536984058229156 +142001,710.0050000038926,-0.05536980212048384 +142002,710.0100000038927,-0.05536976365710638 +142003,710.0150000038929,-0.055369725192159 +142004,710.020000003893,-0.05536968672564154 +142005,710.0250000038931,-0.05536964825755386 +142006,710.0300000038932,-0.0553696097878958 +142007,710.0350000038933,-0.05536957131666719 +142008,710.0400000038934,-0.05536953284386788 +142009,710.0450000038935,-0.05536949436949769 +142010,710.0500000038936,-0.05536945589355648 +142011,710.0550000038937,-0.05536941741604407 +142012,710.0600000038938,-0.05536937893696032 +142013,710.0650000038939,-0.055369340456305066 +142014,710.070000003894,-0.05536930197407814 +142015,710.0750000038942,-0.055369263490279395 +142016,710.0800000038943,-0.05536922500490867 +142017,710.0850000038944,-0.0553691865179658 +142018,710.0900000038945,-0.05536914802945063 +142019,710.0950000038946,-0.055369109539363 +142020,710.1000000038947,-0.05536907104770275 +142021,710.1050000038948,-0.05536903255446971 +142022,710.1100000038949,-0.05536899405966374 +142023,710.115000003895,-0.05536895556328467 +142024,710.1200000038951,-0.055368917065332354 +142025,710.1250000038953,-0.05536887856580661 +142026,710.1300000038954,-0.0553688400647073 +142027,710.1350000038955,-0.05536880156203427 +142028,710.1400000038956,-0.05536876305778733 +142029,710.1450000038957,-0.055368724551966356 +142030,710.1500000038958,-0.055368686044571166 +142031,710.1550000038959,-0.05536864753560161 +142032,710.160000003896,-0.05536860902505754 +142033,710.1650000038961,-0.05536857051293879 +142034,710.1700000038962,-0.05536853199924519 +142035,710.1750000038963,-0.05536849348397661 +142036,710.1800000038965,-0.055368454967132864 +142037,710.1850000038966,-0.055368416448713806 +142038,710.1900000038967,-0.05536837792871927 +142039,710.1950000038968,-0.05536833940714911 +142040,710.2000000038969,-0.055368300884003165 +142041,710.205000003897,-0.05536826235928126 +142042,710.2100000038971,-0.05536822383298326 +142043,710.2150000038972,-0.055368185305108994 +142044,710.2200000038973,-0.055368146775658315 +142045,710.2250000038974,-0.05536810824463106 +142046,710.2300000038975,-0.05536806971202708 +142047,710.2350000038977,-0.05536803117784621 +142048,710.2400000038978,-0.05536799264208828 +142049,710.2450000038979,-0.055367954104753155 +142050,710.250000003898,-0.05536791556584066 +142051,710.2550000038981,-0.055367877025350655 +142052,710.2600000038982,-0.05536783848328295 +142053,710.2650000038983,-0.055367799939637426 +142054,710.2700000038984,-0.055367761394413906 +142055,710.2750000038985,-0.055367722847612245 +142056,710.2800000038986,-0.055367684299232264 +142057,710.2850000038987,-0.05536764574927384 +142058,710.2900000038989,-0.05536760719773679 +142059,710.295000003899,-0.05536756864462096 +142060,710.3000000038991,-0.055367530089926204 +142061,710.3050000038992,-0.055367491533652356 +142062,710.3100000038993,-0.055367452975799265 +142063,710.3150000038994,-0.05536741441636677 +142064,710.3200000038995,-0.05536737585535472 +142065,710.3250000038996,-0.055367337292762955 +142066,710.3300000038997,-0.05536729872859131 +142067,710.3350000038998,-0.055367260162839646 +142068,710.3400000039,-0.05536722159550779 +142069,710.3450000039,-0.0553671830265956 +142070,710.3500000039002,-0.055367144456102906 +142071,710.3550000039003,-0.05536710588402957 +142072,710.3600000039004,-0.05536706731037542 +142073,710.3650000039005,-0.05536702873514031 +142074,710.3700000039006,-0.05536699015832409 +142075,710.3750000039007,-0.05536695157992658 +142076,710.3800000039008,-0.05536691299994764 +142077,710.3850000039009,-0.05536687441838713 +142078,710.390000003901,-0.055366835835244856 +142079,710.3950000039011,-0.05536679725052069 +142080,710.4000000039013,-0.05536675866421448 +142081,710.4050000039014,-0.05536672007632605 +142082,710.4100000039015,-0.05536668148685526 +142083,710.4150000039016,-0.05536664289580195 +142084,710.4200000039017,-0.05536660430316596 +142085,710.4250000039018,-0.05536656570894714 +142086,710.4300000039019,-0.05536652711314534 +142087,710.435000003902,-0.0553664885157604 +142088,710.4400000039021,-0.05536644991679215 +142089,710.4450000039022,-0.05536641131624046 +142090,710.4500000039023,-0.05536637271410517 +142091,710.4550000039025,-0.055366334110386106 +142092,710.4600000039026,-0.05536629550508313 +142093,710.4650000039027,-0.05536625689819608 +142094,710.4700000039028,-0.055366218289724815 +142095,710.4750000039029,-0.05536617967966916 +142096,710.480000003903,-0.05536614106802898 +142097,710.4850000039031,-0.05536610245480411 +142098,710.4900000039032,-0.0553660638399944 +142099,710.4950000039033,-0.05536602522359968 +142100,710.5000000039034,-0.05536598660561981 +142101,710.5050000039035,-0.05536594798605464 +142102,710.5100000039037,-0.055365909364904 +142103,710.5150000039038,-0.05536587074216774 +142104,710.5200000039039,-0.05536583211784573 +142105,710.525000003904,-0.05536579349193778 +142106,710.5300000039041,-0.05536575486444376 +142107,710.5350000039042,-0.05536571623536351 +142108,710.5400000039043,-0.05536567760469687 +142109,710.5450000039044,-0.05536563897244369 +142110,710.5500000039045,-0.055365600338603826 +142111,710.5550000039046,-0.05536556170317711 +142112,710.5600000039047,-0.055365523066163394 +142113,710.5650000039049,-0.05536548442756252 +142114,710.570000003905,-0.055365445787374346 +142115,710.5750000039051,-0.0553654071455987 +142116,710.5800000039052,-0.05536536850223544 +142117,710.5850000039053,-0.05536532985728441 +142118,710.5900000039054,-0.05536529121074545 +142119,710.5950000039055,-0.05536525256261844 +142120,710.6000000039056,-0.05536521391290319 +142121,710.6050000039057,-0.05536517526159955 +142122,710.6100000039058,-0.05536513660870738 +142123,710.615000003906,-0.05536509795422651 +142124,710.6200000039061,-0.05536505929815683 +142125,710.6250000039062,-0.055365020640498135 +142126,710.6300000039063,-0.0553649819812503 +142127,710.6350000039064,-0.05536494332041316 +142128,710.6400000039065,-0.055364904657986574 +142129,710.6450000039066,-0.05536486599397037 +142130,710.6500000039067,-0.05536482732836442 +142131,710.6550000039068,-0.05536478866116855 +142132,710.6600000039069,-0.05536474999238261 +142133,710.665000003907,-0.055364711322006474 +142134,710.6700000039071,-0.05536467265003996 +142135,710.6750000039073,-0.05536463397648294 +142136,710.6800000039074,-0.05536459530133523 +142137,710.6850000039075,-0.0553645566245967 +142138,710.6900000039076,-0.055364517946267185 +142139,710.6950000039077,-0.05536447926634655 +142140,710.7000000039078,-0.055364440584834626 +142141,710.7050000039079,-0.055364401901731274 +142142,710.710000003908,-0.055364363217036326 +142143,710.7150000039081,-0.055364324530749645 +142144,710.7200000039082,-0.05536428584287107 +142145,710.7250000039083,-0.05536424715340046 +142146,710.7300000039085,-0.05536420846233766 +142147,710.7350000039086,-0.0553641697696825 +142148,710.7400000039087,-0.05536413107543486 +142149,710.7450000039088,-0.05536409237959457 +142150,710.7500000039089,-0.05536405368216147 +142151,710.755000003909,-0.05536401498313542 +142152,710.7600000039091,-0.05536397628251626 +142153,710.7650000039092,-0.055363937580303856 +142154,710.7700000039093,-0.05536389887649804 +142155,710.7750000039094,-0.055363860171098664 +142156,710.7800000039095,-0.05536382146410559 +142157,710.7850000039097,-0.05536378275551864 +142158,710.7900000039098,-0.0553637440453377 +142159,710.7950000039099,-0.05536370533356259 +142160,710.80000000391,-0.055363666620193173 +142161,710.8050000039101,-0.05536362790522928 +142162,710.8100000039102,-0.05536358918867077 +142163,710.8150000039103,-0.05536355047051751 +142164,710.8200000039104,-0.05536351175076932 +142165,710.8250000039105,-0.055363473029426076 +142166,710.8300000039106,-0.05536343430648761 +142167,710.8350000039107,-0.055363395581953766 +142168,710.8400000039109,-0.05536335685582441 +142169,710.845000003911,-0.05536331812809938 +142170,710.8500000039111,-0.05536327939877853 +142171,710.8550000039112,-0.05536324066786172 +142172,710.8600000039113,-0.055363201935348785 +142173,710.8650000039114,-0.055363163201239574 +142174,710.8700000039115,-0.055363124465533944 +142175,710.8750000039116,-0.05536308572823174 +142176,710.8800000039117,-0.055363046989332816 +142177,710.8850000039118,-0.05536300824883702 +142178,710.890000003912,-0.05536296950674419 +142179,710.8950000039121,-0.055362930763054194 +142180,710.9000000039122,-0.05536289201776688 +142181,710.9050000039123,-0.0553628532708821 +142182,710.9100000039124,-0.05536281452239969 +142183,710.9150000039125,-0.05536277577231951 +142184,710.9200000039126,-0.05536273702064141 +142185,710.9250000039127,-0.055362698267365236 +142186,710.9300000039128,-0.05536265951249085 +142187,710.9350000039129,-0.05536262075601809 +142188,710.940000003913,-0.0553625819979468 +142189,710.9450000039132,-0.05536254323827686 +142190,710.9500000039133,-0.055362504477008086 +142191,710.9550000039134,-0.05536246571414036 +142192,710.9600000039135,-0.055362426949673506 +142193,710.9650000039136,-0.05536238818360739 +142194,710.9700000039137,-0.05536234941594186 +142195,710.9750000039138,-0.05536231064667678 +142196,710.9800000039139,-0.05536227187581197 +142197,710.985000003914,-0.05536223310334731 +142198,710.9900000039141,-0.05536219432928263 +142199,710.9950000039142,-0.0553621555536178 +142200,711.0000000039144,-0.05536211677635265 +142201,711.0050000039145,-0.05536207799748705 +142202,711.0100000039146,-0.05536203921702084 +142203,711.0150000039147,-0.05536200043495387 +142204,711.0200000039148,-0.05536196165128601 +142205,711.0250000039149,-0.0553619228660171 +142206,711.030000003915,-0.055361884079146974 +142207,711.0350000039151,-0.055361845290675504 +142208,711.0400000039152,-0.05536180650060254 +142209,711.0450000039153,-0.05536176770892793 +142210,711.0500000039154,-0.055361728915651526 +142211,711.0550000039156,-0.055361690120773174 +142212,711.0600000039157,-0.055361651324292736 +142213,711.0650000039158,-0.055361612526210066 +142214,711.0700000039159,-0.05536157372652501 +142215,711.075000003916,-0.055361534925237425 +142216,711.0800000039161,-0.05536149612234715 +142217,711.0850000039162,-0.055361457317854045 +142218,711.0900000039163,-0.055361418511757965 +142219,711.0950000039164,-0.05536137970405875 +142220,711.1000000039165,-0.05536134089475627 +142221,711.1050000039166,-0.055361302083850365 +142222,711.1100000039168,-0.05536126327134089 +142223,711.1150000039169,-0.05536122445722771 +142224,711.120000003917,-0.05536118564151066 +142225,711.1250000039171,-0.055361146824189605 +142226,711.1300000039172,-0.055361108005264385 +142227,711.1350000039173,-0.05536106918473486 +142228,711.1400000039174,-0.055361030362600885 +142229,711.1450000039175,-0.05536099153886231 +142230,711.1500000039176,-0.055360952713518985 +142231,711.1550000039177,-0.05536091388657077 +142232,711.1600000039178,-0.05536087505801751 +142233,711.165000003918,-0.05536083622785907 +142234,711.1700000039181,-0.05536079739609529 +142235,711.1750000039182,-0.055360758562726035 +142236,711.1800000039183,-0.05536071972775115 +142237,711.1850000039184,-0.05536068089117047 +142238,711.1900000039185,-0.055360642052983876 +142239,711.1950000039186,-0.055360603213191216 +142240,711.2000000039187,-0.055360564371792334 +142241,711.2050000039188,-0.05536052552878709 +142242,711.2100000039189,-0.05536048668417534 +142243,711.215000003919,-0.05536044783795694 +142244,711.2200000039192,-0.05536040899013173 +142245,711.2250000039193,-0.05536037014069959 +142246,711.2300000039194,-0.055360331289660336 +142247,711.2350000039195,-0.055360292437013854 +142248,711.2400000039196,-0.055360253582759984 +142249,711.2450000039197,-0.055360214726898574 +142250,711.2500000039198,-0.0553601758694295 +142251,711.2550000039199,-0.05536013701035259 +142252,711.26000000392,-0.055360098149667705 +142253,711.2650000039201,-0.05536005928737471 +142254,711.2700000039202,-0.05536002042347345 +142255,711.2750000039204,-0.05535998155796378 +142256,711.2800000039205,-0.05535994269084556 +142257,711.2850000039206,-0.055359903822118625 +142258,711.2900000039207,-0.055359864951782856 +142259,711.2950000039208,-0.05535982607983809 +142260,711.3000000039209,-0.055359787206284185 +142261,711.305000003921,-0.055359748331121 +142262,711.3100000039211,-0.05535970945434839 +142263,711.3150000039212,-0.055359670575966205 +142264,711.3200000039213,-0.0553596316959743 +142265,711.3250000039214,-0.055359592814372534 +142266,711.3300000039216,-0.055359553931160765 +142267,711.3350000039217,-0.05535951504633884 +142268,711.3400000039218,-0.05535947615990662 +142269,711.3450000039219,-0.05535943727186395 +142270,711.350000003922,-0.0553593983822107 +142271,711.3550000039221,-0.055359359490946704 +142272,711.3600000039222,-0.05535932059807183 +142273,711.3650000039223,-0.055359281703585936 +142274,711.3700000039224,-0.05535924280748887 +142275,711.3750000039225,-0.05535920390978049 +142276,711.3800000039226,-0.055359165010460655 +142277,711.3850000039228,-0.055359126109529214 +142278,711.3900000039229,-0.055359087206986034 +142279,711.395000003923,-0.055359048302830956 +142280,711.4000000039231,-0.05535900939706385 +142281,711.4050000039232,-0.05535897048968455 +142282,711.4100000039233,-0.055358931580692924 +142283,711.4150000039234,-0.05535889267008884 +142284,711.4200000039235,-0.055358853757872126 +142285,711.4250000039236,-0.05535881484404267 +142286,711.4300000039237,-0.055358775928600314 +142287,711.4350000039238,-0.0553587370115449 +142288,711.440000003924,-0.055358698092876295 +142289,711.4450000039241,-0.05535865917259436 +142290,711.4500000039242,-0.05535862025069895 +142291,711.4550000039243,-0.05535858132718991 +142292,711.4600000039244,-0.05535854240206712 +142293,711.4650000039245,-0.05535850347533041 +142294,711.4700000039246,-0.055358464546979645 +142295,711.4750000039247,-0.05535842561701469 +142296,711.4800000039248,-0.05535838668543539 +142297,711.4850000039249,-0.05535834775224161 +142298,711.490000003925,-0.0553583088174332 +142299,711.4950000039252,-0.05535826988101002 +142300,711.5000000039253,-0.05535823094297192 +142301,711.5050000039254,-0.05535819200331876 +142302,711.5100000039255,-0.05535815306205041 +142303,711.5150000039256,-0.055358114119166704 +142304,711.5200000039257,-0.05535807517466752 +142305,711.5250000039258,-0.055358036228552704 +142306,711.5300000039259,-0.05535799728082212 +142307,711.535000003926,-0.05535795833147562 +142308,711.5400000039261,-0.05535791938051306 +142309,711.5450000039262,-0.055357880427934276 +142310,711.5500000039264,-0.05535784147373916 +142311,711.5550000039265,-0.05535780251792755 +142312,711.5600000039266,-0.055357763560499325 +142313,711.5650000039267,-0.05535772460145432 +142314,711.5700000039268,-0.055357685640792395 +142315,711.5750000039269,-0.05535764667851342 +142316,711.580000003927,-0.05535760771461723 +142317,711.5850000039271,-0.055357568749103706 +142318,711.5900000039272,-0.05535752978197269 +142319,711.5950000039273,-0.055357490813224046 +142320,711.6000000039274,-0.05535745184285763 +142321,711.6050000039276,-0.055357412870873306 +142322,711.6100000039277,-0.05535737389727092 +142323,711.6150000039278,-0.05535733492205034 +142324,711.6200000039279,-0.05535729594521142 +142325,711.625000003928,-0.055357256966754025 +142326,711.6300000039281,-0.055357217986677996 +142327,711.6350000039282,-0.05535717900498321 +142328,711.6400000039283,-0.05535714002166951 +142329,711.6450000039284,-0.055357101036736765 +142330,711.6500000039285,-0.05535706205018483 +142331,711.6550000039286,-0.05535702306201355 +142332,711.6600000039288,-0.0553569840722228 +142333,711.6650000039289,-0.05535694508081244 +142334,711.670000003929,-0.05535690608778232 +142335,711.6750000039291,-0.0553568670931323 +142336,711.6800000039292,-0.05535682809686223 +142337,711.6850000039293,-0.05535678909897199 +142338,711.6900000039294,-0.05535675009946142 +142339,711.6950000039295,-0.055356711098330395 +142340,711.7000000039296,-0.05535667209557876 +142341,711.7050000039297,-0.05535663309120638 +142342,711.7100000039298,-0.0553565940852131 +142343,711.71500000393,-0.0553565550775988 +142344,711.7200000039301,-0.05535651606836332 +142345,711.7250000039302,-0.05535647705750653 +142346,711.7300000039303,-0.05535643804502829 +142347,711.7350000039304,-0.05535639903092845 +142348,711.7400000039305,-0.05535636001520688 +142349,711.7450000039306,-0.05535632099786344 +142350,711.7500000039307,-0.05535628197889797 +142351,711.7550000039308,-0.05535624295831035 +142352,711.7600000039309,-0.055356203936100426 +142353,711.765000003931,-0.05535616491226807 +142354,711.7700000039312,-0.055356125886813136 +142355,711.7750000039313,-0.05535608685973548 +142356,711.7800000039314,-0.055356047831034975 +142357,711.7850000039315,-0.055356008800711454 +142358,711.7900000039316,-0.05535596976876479 +142359,711.7950000039317,-0.05535593073519486 +142360,711.8000000039318,-0.055355891700001505 +142361,711.8050000039319,-0.055355852663184595 +142362,711.810000003932,-0.055355813624743976 +142363,711.8150000039321,-0.05535577458467951 +142364,711.8200000039323,-0.05535573554299107 +142365,711.8250000039324,-0.0553556964996785 +142366,711.8300000039325,-0.05535565745474168 +142367,711.8350000039326,-0.05535561840818045 +142368,711.8400000039327,-0.05535557935999468 +142369,711.8450000039328,-0.05535554031018424 +142370,711.8500000039329,-0.055355501258748975 +142371,711.855000003933,-0.05535546220568875 +142372,711.8600000039331,-0.055355423151003426 +142373,711.8650000039332,-0.05535538409469285 +142374,711.8700000039333,-0.05535534503675692 +142375,711.8750000039335,-0.05535530597719546 +142376,711.8800000039336,-0.05535526691600833 +142377,711.8850000039337,-0.05535522785319542 +142378,711.8900000039338,-0.05535518878875657 +142379,711.8950000039339,-0.055355149722691635 +142380,711.900000003934,-0.055355110655000504 +142381,711.9050000039341,-0.05535507158568301 +142382,711.9100000039342,-0.05535503251473902 +142383,711.9150000039343,-0.05535499344216841 +142384,711.9200000039344,-0.05535495436797102 +142385,711.9250000039345,-0.055354915292146714 +142386,711.9300000039347,-0.05535487621469537 +142387,711.9350000039348,-0.055354837135616834 +142388,711.9400000039349,-0.055354798054910975 +142389,711.945000003935,-0.05535475897257764 +142390,711.9500000039351,-0.05535471988861671 +142391,711.9550000039352,-0.05535468080302805 +142392,711.9600000039353,-0.055354641715811496 +142393,711.9650000039354,-0.055354602626966926 +142394,711.9700000039355,-0.0553545635364942 +142395,711.9750000039356,-0.05535452444439318 +142396,711.9800000039357,-0.05535448535066372 +142397,711.9850000039359,-0.05535444625530569 +142398,711.990000003936,-0.05535440715831895 +142399,711.9950000039361,-0.05535436805970336 +142400,712.0000000039362,-0.055354328959458785 +142401,712.0050000039363,-0.05535428985758507 +142402,712.0100000039364,-0.0553542507540821 +142403,712.0150000039365,-0.05535421164894973 +142404,712.0200000039366,-0.05535417254218783 +142405,712.0250000039367,-0.055354133433796235 +142406,712.0300000039368,-0.05535409432377483 +142407,712.035000003937,-0.055354055212123485 +142408,712.040000003937,-0.05535401609884204 +142409,712.0450000039372,-0.05535397698393037 +142410,712.0500000039373,-0.05535393786738833 +142411,712.0550000039374,-0.055353898749215785 +142412,712.0600000039375,-0.05535385962941261 +142413,712.0650000039376,-0.05535382050797866 +142414,712.0700000039377,-0.05535378138491377 +142415,712.0750000039378,-0.055353742260217845 +142416,712.0800000039379,-0.05535370313389072 +142417,712.085000003938,-0.05535366400593227 +142418,712.0900000039381,-0.055353624876342364 +142419,712.0950000039383,-0.05535358574512085 +142420,712.1000000039384,-0.055353546612267594 +142421,712.1050000039385,-0.055353507477782456 +142422,712.1100000039386,-0.055353468341665324 +142423,712.1150000039387,-0.055353429203916026 +142424,712.1200000039388,-0.055353390064534436 +142425,712.1250000039389,-0.055353350923520436 +142426,712.130000003939,-0.05535331178087387 +142427,712.1350000039391,-0.0553532726365946 +142428,712.1400000039392,-0.055353233490682496 +142429,712.1450000039393,-0.05535319434313743 +142430,712.1500000039395,-0.05535315519395925 +142431,712.1550000039396,-0.05535311604314783 +142432,712.1600000039397,-0.05535307689070304 +142433,712.1650000039398,-0.05535303773662471 +142434,712.1700000039399,-0.05535299858091274 +142435,712.17500000394,-0.05535295942356697 +142436,712.1800000039401,-0.05535292026458728 +142437,712.1850000039402,-0.05535288110397353 +142438,712.1900000039403,-0.055352841941725586 +142439,712.1950000039404,-0.055352802777843296 +142440,712.2000000039405,-0.05535276361232654 +142441,712.2050000039407,-0.055352724445175173 +142442,712.2100000039408,-0.05535268527638907 +142443,712.2150000039409,-0.05535264610596808 +142444,712.220000003941,-0.05535260693391207 +142445,712.2250000039411,-0.05535256776022092 +142446,712.2300000039412,-0.055352528584894485 +142447,712.2350000039413,-0.05535248940793262 +142448,712.2400000039414,-0.05535245022933521 +142449,712.2450000039415,-0.05535241104910209 +142450,712.2500000039416,-0.055352371867233144 +142451,712.2550000039417,-0.05535233268372824 +142452,712.2600000039419,-0.05535229349858723 +142453,712.265000003942,-0.055352254311809984 +142454,712.2700000039421,-0.05535221512339638 +142455,712.2750000039422,-0.05535217593334626 +142456,712.2800000039423,-0.05535213674165951 +142457,712.2850000039424,-0.05535209754833598 +142458,712.2900000039425,-0.055352058353375526 +142459,712.2950000039426,-0.05535201915677803 +142460,712.3000000039427,-0.05535197995854335 +142461,712.3050000039428,-0.055351940758671364 +142462,712.310000003943,-0.05535190155716191 +142463,712.315000003943,-0.05535186235401487 +142464,712.3200000039432,-0.055351823149230116 +142465,712.3250000039433,-0.0553517839428075 +142466,712.3300000039434,-0.055351744734746904 +142467,712.3350000039435,-0.05535170552504817 +142468,712.3400000039436,-0.055351666313711176 +142469,712.3450000039437,-0.055351627100735795 +142470,712.3500000039438,-0.05535158788612188 +142471,712.3550000039439,-0.05535154866986929 +142472,712.360000003944,-0.05535150945197791 +142473,712.3650000039441,-0.055351470232447596 +142474,712.3700000039443,-0.05535143101127821 +142475,712.3750000039444,-0.05535139178846963 +142476,712.3800000039445,-0.05535135256402171 +142477,712.3850000039446,-0.05535131333793432 +142478,712.3900000039447,-0.055351274110207314 +142479,712.3950000039448,-0.05535123488084058 +142480,712.4000000039449,-0.05535119564983397 +142481,712.405000003945,-0.05535115641718735 +142482,712.4100000039451,-0.055351117182900596 +142483,712.4150000039452,-0.05535107794697356 +142484,712.4200000039453,-0.055351038709406115 +142485,712.4250000039455,-0.055350999470198135 +142486,712.4300000039456,-0.05535096022934947 +142487,712.4350000039457,-0.05535092098685999 +142488,712.4400000039458,-0.05535088174272957 +142489,712.4450000039459,-0.05535084249695808 +142490,712.450000003946,-0.05535080324954538 +142491,712.4550000039461,-0.055350764000491326 +142492,712.4600000039462,-0.055350724749795806 +142493,712.4650000039463,-0.05535068549745867 +142494,712.4700000039464,-0.05535064624347979 +142495,712.4750000039465,-0.05535060698785903 +142496,712.4800000039467,-0.05535056773059625 +142497,712.4850000039468,-0.055350528471691335 +142498,712.4900000039469,-0.05535048921114414 +142499,712.495000003947,-0.055350449948954536 +142500,712.5000000039471,-0.055350410685122385 +142501,712.5050000039472,-0.05535037141964756 +142502,712.5100000039473,-0.055350332152529914 +142503,712.5150000039474,-0.05535029288376933 +142504,712.5200000039475,-0.055350253613365666 +142505,712.5250000039476,-0.05535021434131881 +142506,712.5300000039477,-0.0553501750676286 +142507,712.5350000039479,-0.05535013579229492 +142508,712.540000003948,-0.05535009651531763 +142509,712.5450000039481,-0.0553500572366966 +142510,712.5500000039482,-0.0553500179564317 +142511,712.5550000039483,-0.05534997867452281 +142512,712.5600000039484,-0.055349939390969764 +142513,712.5650000039485,-0.05534990010577246 +142514,712.5700000039486,-0.05534986081893075 +142515,712.5750000039487,-0.0553498215304445 +142516,712.5800000039488,-0.05534978224031359 +142517,712.585000003949,-0.05534974294853788 +142518,712.5900000039491,-0.05534970365511724 +142519,712.5950000039492,-0.05534966436005154 +142520,712.6000000039493,-0.05534962506334064 +142521,712.6050000039494,-0.05534958576498441 +142522,712.6100000039495,-0.055349546464982725 +142523,712.6150000039496,-0.05534950716333545 +142524,712.6200000039497,-0.05534946786004245 +142525,712.6250000039498,-0.0553494285551036 +142526,712.6300000039499,-0.05534938924851876 +142527,712.63500000395,-0.05534934994028781 +142528,712.6400000039501,-0.0553493106304106 +142529,712.6450000039503,-0.055349271318887006 +142530,712.6500000039504,-0.0553492320057169 +142531,712.6550000039505,-0.055349192690900155 +142532,712.6600000039506,-0.05534915337443664 +142533,712.6650000039507,-0.05534911405632622 +142534,712.6700000039508,-0.055349074736568755 +142535,712.6750000039509,-0.05534903541516411 +142536,712.680000003951,-0.055348996092112177 +142537,712.6850000039511,-0.055348956767412805 +142538,712.6900000039512,-0.05534891744106587 +142539,712.6950000039513,-0.05534887811307124 +142540,712.7000000039515,-0.05534883878342878 +142541,712.7050000039516,-0.055348799452138366 +142542,712.7100000039517,-0.05534876011919987 +142543,712.7150000039518,-0.05534872078461315 +142544,712.7200000039519,-0.05534868144837809 +142545,712.725000003952,-0.05534864211049454 +142546,712.7300000039521,-0.055348602770962374 +142547,712.7350000039522,-0.055348563429781464 +142548,712.7400000039523,-0.055348524086951685 +142549,712.7450000039524,-0.055348484742472906 +142550,712.7500000039526,-0.055348445396345 +142551,712.7550000039527,-0.055348406048567826 +142552,712.7600000039528,-0.055348366699141255 +142553,712.7650000039529,-0.055348327348065156 +142554,712.770000003953,-0.055348287995339404 +142555,712.7750000039531,-0.05534824864096386 +142556,712.7800000039532,-0.05534820928493841 +142557,712.7850000039533,-0.0553481699272629 +142558,712.7900000039534,-0.05534813056793722 +142559,712.7950000039535,-0.05534809120696123 +142560,712.8000000039536,-0.055348051844334806 +142561,712.8050000039538,-0.05534801248005782 +142562,712.8100000039539,-0.05534797311413013 +142563,712.815000003954,-0.05534793374655161 +142564,712.8200000039541,-0.055347894377322134 +142565,712.8250000039542,-0.05534785500644158 +142566,712.8300000039543,-0.0553478156339098 +142567,712.8350000039544,-0.055347776259726686 +142568,712.8400000039545,-0.055347736883892086 +142569,712.8450000039546,-0.055347697506405884 +142570,712.8500000039547,-0.05534765812726793 +142571,712.8550000039548,-0.05534761874647814 +142572,712.860000003955,-0.05534757936403634 +142573,712.8650000039551,-0.05534753997994241 +142574,712.8700000039552,-0.055347500594196235 +142575,712.8750000039553,-0.05534746120679768 +142576,712.8800000039554,-0.055347421817746593 +142577,712.8850000039555,-0.055347382427042874 +142578,712.8900000039556,-0.05534734303468639 +142579,712.8950000039557,-0.055347303640677 +142580,712.9000000039558,-0.055347264245014585 +142581,712.9050000039559,-0.05534722484769901 +142582,712.910000003956,-0.05534718544873016 +142583,712.9150000039562,-0.055347146048107886 +142584,712.9200000039563,-0.05534710664583207 +142585,712.9250000039564,-0.05534706724190258 +142586,712.9300000039565,-0.055347027836319285 +142587,712.9350000039566,-0.05534698842908206 +142588,712.9400000039567,-0.05534694902019078 +142589,712.9450000039568,-0.05534690960964529 +142590,712.9500000039569,-0.0553468701974455 +142591,712.955000003957,-0.05534683078359126 +142592,712.9600000039571,-0.05534679136808245 +142593,712.9650000039572,-0.055346751950918927 +142594,712.9700000039574,-0.055346712532100585 +142595,712.9750000039575,-0.05534667311162727 +142596,712.9800000039576,-0.055346633689498874 +142597,712.9850000039577,-0.055346594265715254 +142598,712.9900000039578,-0.0553465548402763 +142599,712.9950000039579,-0.05534651541318186 +142600,713.000000003958,-0.055346475984431834 +142601,713.0050000039581,-0.055346436554026074 +142602,713.0100000039582,-0.055346397121964444 +142603,713.0150000039583,-0.05534635768824684 +142604,713.0200000039584,-0.05534631825287312 +142605,713.0250000039586,-0.05534627881584316 +142606,713.0300000039587,-0.05534623937715684 +142607,713.0350000039588,-0.05534619993681401 +142608,713.0400000039589,-0.055346160494814556 +142609,713.045000003959,-0.055346121051158347 +142610,713.0500000039591,-0.055346081605845275 +142611,713.0550000039592,-0.05534604215887518 +142612,713.0600000039593,-0.05534600271024796 +142613,713.0650000039594,-0.05534596325996347 +142614,713.0700000039595,-0.0553459238080216 +142615,713.0750000039596,-0.0553458843544222 +142616,713.0800000039598,-0.05534584489916516 +142617,713.0850000039599,-0.05534580544225035 +142618,713.09000000396,-0.05534576598367764 +142619,713.0950000039601,-0.0553457265234469 +142620,713.1000000039602,-0.05534568706155801 +142621,713.1050000039603,-0.05534564759801084 +142622,713.1100000039604,-0.05534560813280526 +142623,713.1150000039605,-0.05534556866594113 +142624,713.1200000039606,-0.05534552919741834 +142625,713.1250000039607,-0.05534548972723678 +142626,713.1300000039608,-0.0553454502553963 +142627,713.135000003961,-0.055345410781896774 +142628,713.1400000039611,-0.05534537130673808 +142629,713.1450000039612,-0.05534533182992009 +142630,713.1500000039613,-0.055345292351442664 +142631,713.1550000039614,-0.055345252871305706 +142632,713.1600000039615,-0.055345213389509054 +142633,713.1650000039616,-0.05534517390605261 +142634,713.1700000039617,-0.055345134420936234 +142635,713.1750000039618,-0.0553450949341598 +142636,713.1800000039619,-0.05534505544572319 +142637,713.185000003962,-0.05534501595562627 +142638,713.1900000039622,-0.055344976463868906 +142639,713.1950000039623,-0.05534493697045099 +142640,713.2000000039624,-0.05534489747537238 +142641,713.2050000039625,-0.05534485797863296 +142642,713.2100000039626,-0.055344818480232594 +142643,713.2150000039627,-0.05534477898017116 +142644,713.2200000039628,-0.055344739478448535 +142645,713.2250000039629,-0.0553446999750646 +142646,713.230000003963,-0.05534466047001922 +142647,713.2350000039631,-0.05534462096331227 +142648,713.2400000039632,-0.05534458145494362 +142649,713.2450000039634,-0.055344541944913145 +142650,713.2500000039635,-0.05534450243322073 +142651,713.2550000039636,-0.055344462919866236 +142652,713.2600000039637,-0.05534442340484954 +142653,713.2650000039638,-0.05534438388817053 +142654,713.2700000039639,-0.05534434436982906 +142655,713.275000003964,-0.05534430484982502 +142656,713.2800000039641,-0.05534426532815829 +142657,713.2850000039642,-0.05534422580482873 +142658,713.2900000039643,-0.055344186279836206 +142659,713.2950000039644,-0.05534414675318061 +142660,713.3000000039646,-0.05534410722486182 +142661,713.3050000039647,-0.0553440676948797 +142662,713.3100000039648,-0.05534402816323412 +142663,713.3150000039649,-0.05534398862992496 +142664,713.320000003965,-0.05534394909495211 +142665,713.3250000039651,-0.05534390955831542 +142666,713.3300000039652,-0.05534387002001478 +142667,713.3350000039653,-0.05534383048005006 +142668,713.3400000039654,-0.055343790938421136 +142669,713.3450000039655,-0.0553437513951279 +142670,713.3500000039656,-0.055343711850170195 +142671,713.3550000039658,-0.05534367230354792 +142672,713.3600000039659,-0.05534363275526094 +142673,713.365000003966,-0.055343593205309134 +142674,713.3700000039661,-0.05534355365369238 +142675,713.3750000039662,-0.055343514100410544 +142676,713.3800000039663,-0.05534347454546351 +142677,713.3850000039664,-0.05534343498885116 +142678,713.3900000039665,-0.05534339543057335 +142679,713.3950000039666,-0.05534335587062998 +142680,713.4000000039667,-0.05534331630902091 +142681,713.4050000039668,-0.05534327674574601 +142682,713.410000003967,-0.05534323718080516 +142683,713.4150000039671,-0.055343197614198245 +142684,713.4200000039672,-0.055343158045925135 +142685,713.4250000039673,-0.055343118475985706 +142686,713.4300000039674,-0.05534307890437984 +142687,713.4350000039675,-0.055343039331107395 +142688,713.4400000039676,-0.05534299975616826 +142689,713.4450000039677,-0.05534296017956231 +142690,713.4500000039678,-0.055342920601289425 +142691,713.4550000039679,-0.055342881021349474 +142692,713.460000003968,-0.055342841439742343 +142693,713.4650000039682,-0.0553428018564679 +142694,713.4700000039683,-0.05534276227152603 +142695,713.4750000039684,-0.05534272268491659 +142696,713.4800000039685,-0.05534268309663948 +142697,713.4850000039686,-0.05534264350669456 +142698,713.4900000039687,-0.05534260391508171 +142699,713.4950000039688,-0.05534256432180081 +142700,713.5000000039689,-0.055342524726851736 +142701,713.505000003969,-0.05534248513023437 +142702,713.5100000039691,-0.05534244553194857 +142703,713.5150000039692,-0.055342405931994236 +142704,713.5200000039694,-0.055342366330371234 +142705,713.5250000039695,-0.05534232672707944 +142706,713.5300000039696,-0.055342287122118736 +142707,713.5350000039697,-0.055342247515488996 +142708,713.5400000039698,-0.05534220790719009 +142709,713.5450000039699,-0.055342168297221904 +142710,713.55000000397,-0.055342128685584316 +142711,713.5550000039701,-0.05534208907227719 +142712,713.5600000039702,-0.05534204945730042 +142713,713.5650000039703,-0.05534200984065387 +142714,713.5700000039704,-0.055341970222337424 +142715,713.5750000039706,-0.05534193060235096 +142716,713.5800000039707,-0.05534189098069434 +142717,713.5850000039708,-0.05534185135736747 +142718,713.5900000039709,-0.05534181173237022 +142719,713.595000003971,-0.05534177210570245 +142720,713.6000000039711,-0.05534173247736405 +142721,713.6050000039712,-0.05534169284735489 +142722,713.6100000039713,-0.05534165321567486 +142723,713.6150000039714,-0.05534161358232382 +142724,713.6200000039715,-0.05534157394730166 +142725,713.6250000039716,-0.05534153431060825 +142726,713.6300000039718,-0.05534149467224349 +142727,713.6350000039719,-0.05534145503220722 +142728,713.640000003972,-0.05534141539049935 +142729,713.6450000039721,-0.05534137574711974 +142730,713.6500000039722,-0.05534133610206828 +142731,713.6550000039723,-0.05534129645534485 +142732,713.6600000039724,-0.05534125680694932 +142733,713.6650000039725,-0.05534121715688157 +142734,713.6700000039726,-0.055341177505141476 +142735,713.6750000039727,-0.055341137851728915 +142736,713.6800000039729,-0.05534109819664377 +142737,713.685000003973,-0.05534105853988592 +142738,713.6900000039731,-0.05534101888145524 +142739,713.6950000039732,-0.0553409792213516 +142740,713.7000000039733,-0.05534093955957489 +142741,713.7050000039734,-0.055340899896125 +142742,713.7100000039735,-0.055340860231001786 +142743,713.7150000039736,-0.05534082056420513 +142744,713.7200000039737,-0.05534078089573492 +142745,713.7250000039738,-0.05534074122559103 +142746,713.7300000039739,-0.055340701553773346 +142747,713.735000003974,-0.05534066188028173 +142748,713.7400000039742,-0.055340622205116076 +142749,713.7450000039743,-0.05534058252827626 +142750,713.7500000039744,-0.05534054284976216 +142751,713.7550000039745,-0.05534050316957365 +142752,713.7600000039746,-0.05534046348771062 +142753,713.7650000039747,-0.05534042380417294 +142754,713.7700000039748,-0.05534038411896049 +142755,713.7750000039749,-0.055340344432073155 +142756,713.780000003975,-0.0553403047435108 +142757,713.7850000039751,-0.055340265053273316 +142758,713.7900000039753,-0.05534022536136058 +142759,713.7950000039754,-0.055340185667772476 +142760,713.8000000039755,-0.05534014597250888 +142761,713.8050000039756,-0.05534010627556967 +142762,713.8100000039757,-0.05534006657695473 +142763,713.8150000039758,-0.05534002687666393 +142764,713.8200000039759,-0.055339987174697146 +142765,713.825000003976,-0.05533994747105427 +142766,713.8300000039761,-0.05533990776573519 +142767,713.8350000039762,-0.05533986805873977 +142768,713.8400000039763,-0.05533982835006789 +142769,713.8450000039765,-0.05533978863971943 +142770,713.8500000039766,-0.05533974892769428 +142771,713.8550000039767,-0.05533970921399231 +142772,713.8600000039768,-0.0553396694986134 +142773,713.8650000039769,-0.05533962978155744 +142774,713.870000003977,-0.05533959006282429 +142775,713.8750000039771,-0.05533955034241385 +142776,713.8800000039772,-0.05533951062032598 +142777,713.8850000039773,-0.055339470896560584 +142778,713.8900000039774,-0.05533943117111754 +142779,713.8950000039775,-0.055339391443996716 +142780,713.9000000039777,-0.05533935171519799 +142781,713.9050000039778,-0.05533931198472125 +142782,713.9100000039779,-0.05533927225256637 +142783,713.915000003978,-0.05533923251873325 +142784,713.9200000039781,-0.05533919278322175 +142785,713.9250000039782,-0.05533915304603176 +142786,713.9300000039783,-0.055339113307163144 +142787,713.9350000039784,-0.05533907356661581 +142788,713.9400000039785,-0.055339033824389615 +142789,713.9450000039786,-0.055338994080484455 +142790,713.9500000039787,-0.055338954334900194 +142791,713.9550000039789,-0.05533891458763674 +142792,713.960000003979,-0.055338874838693944 +142793,713.9650000039791,-0.055338835088071706 +142794,713.9700000039792,-0.0553387953357699 +142795,713.9750000039793,-0.055338755581788406 +142796,713.9800000039794,-0.055338715826127115 +142797,713.9850000039795,-0.05533867606878589 +142798,713.9900000039796,-0.05533863630976463 +142799,713.9950000039797,-0.0553385965490632 +142800,714.0000000039798,-0.055338556786681495 +142801,714.00500000398,-0.05533851702261939 +142802,714.01000000398,-0.05533847725687676 +142803,714.0150000039802,-0.055338437489453496 +142804,714.0200000039803,-0.05533839772034949 +142805,714.0250000039804,-0.0553383579495646 +142806,714.0300000039805,-0.055338318177098715 +142807,714.0350000039806,-0.05533827840295173 +142808,714.0400000039807,-0.05533823862712352 +142809,714.0450000039808,-0.05533819884961395 +142810,714.0500000039809,-0.05533815907042292 +142811,714.055000003981,-0.055338119289550305 +142812,714.0600000039811,-0.055338079506995985 +142813,714.0650000039813,-0.055338039722759844 +142814,714.0700000039814,-0.05533799993684177 +142815,714.0750000039815,-0.05533796014924164 +142816,714.0800000039816,-0.055337920359959325 +142817,714.0850000039817,-0.05533788056899472 +142818,714.0900000039818,-0.05533784077634771 +142819,714.0950000039819,-0.05533780098201817 +142820,714.100000003982,-0.05533776118600598 +142821,714.1050000039821,-0.05533772138831103 +142822,714.1100000039822,-0.055337681588933194 +142823,714.1150000039823,-0.05533764178787236 +142824,714.1200000039825,-0.0553376019851284 +142825,714.1250000039826,-0.05533756218070121 +142826,714.1300000039827,-0.055337522374590664 +142827,714.1350000039828,-0.05533748256679665 +142828,714.1400000039829,-0.055337442757319055 +142829,714.145000003983,-0.05533740294615775 +142830,714.1500000039831,-0.055337363133312625 +142831,714.1550000039832,-0.05533732331878355 +142832,714.1600000039833,-0.05533728350257042 +142833,714.1650000039834,-0.05533724368467311 +142834,714.1700000039835,-0.055337203865091514 +142835,714.1750000039837,-0.055337164043825514 +142836,714.1800000039838,-0.055337124220874986 +142837,714.1850000039839,-0.055337084396239807 +142838,714.190000003984,-0.05533704456991987 +142839,714.1950000039841,-0.05533700474191505 +142840,714.2000000039842,-0.05533696491222524 +142841,714.2050000039843,-0.05533692508085032 +142842,714.2100000039844,-0.055336885247790166 +142843,714.2150000039845,-0.05533684541304467 +142844,714.2200000039846,-0.05533680557661371 +142845,714.2250000039847,-0.055336765738497176 +142846,714.2300000039849,-0.05533672589869494 +142847,714.235000003985,-0.05533668605720689 +142848,714.2400000039851,-0.05533664621403291 +142849,714.2450000039852,-0.05533660636917288 +142850,714.2500000039853,-0.055336566522626696 +142851,714.2550000039854,-0.05533652667439424 +142852,714.2600000039855,-0.055336486824475374 +142853,714.2650000039856,-0.05533644697287 +142854,714.2700000039857,-0.055336407119578 +142855,714.2750000039858,-0.05533636726459925 +142856,714.280000003986,-0.055336327407933636 +142857,714.285000003986,-0.05533628754958106 +142858,714.2900000039862,-0.05533624768954138 +142859,714.2950000039863,-0.05533620782781449 +142860,714.3000000039864,-0.055336167964400274 +142861,714.3050000039865,-0.05533612809929862 +142862,714.3100000039866,-0.05533608823250941 +142863,714.3150000039867,-0.055336048364032525 +142864,714.3200000039868,-0.055336008493867855 +142865,714.3250000039869,-0.05533596862201527 +142866,714.330000003987,-0.05533592874847467 +142867,714.3350000039871,-0.055335888873245934 +142868,714.3400000039873,-0.05533584899632895 +142869,714.3450000039874,-0.05533580911772359 +142870,714.3500000039875,-0.05533576923742974 +142871,714.3550000039876,-0.0553357293554473 +142872,714.3600000039877,-0.05533568947177614 +142873,714.3650000039878,-0.05533564958641614 +142874,714.3700000039879,-0.0553356096993672 +142875,714.375000003988,-0.0553355698106292 +142876,714.3800000039881,-0.05533552992020202 +142877,714.3850000039882,-0.05533549002808556 +142878,714.3900000039883,-0.055335450134279686 +142879,714.3950000039885,-0.05533541023878428 +142880,714.4000000039886,-0.055335370341599244 +142881,714.4050000039887,-0.055335330442724456 +142882,714.4100000039888,-0.0553352905421598 +142883,714.4150000039889,-0.05533525063990516 +142884,714.420000003989,-0.05533521073596042 +142885,714.4250000039891,-0.05533517083032546 +142886,714.4300000039892,-0.055335130923000166 +142887,714.4350000039893,-0.05533509101398444 +142888,714.4400000039894,-0.055335051103278146 +142889,714.4450000039895,-0.05533501119088119 +142890,714.4500000039897,-0.05533497127679344 +142891,714.4550000039898,-0.055334931361014784 +142892,714.4600000039899,-0.05533489144354512 +142893,714.46500000399,-0.05533485152438432 +142894,714.4700000039901,-0.05533481160353228 +142895,714.4750000039902,-0.05533477168098887 +142896,714.4800000039903,-0.055334731756753984 +142897,714.4850000039904,-0.05533469183082751 +142898,714.4900000039905,-0.05533465190320932 +142899,714.4950000039906,-0.055334611973899314 +142900,714.5000000039907,-0.05533457204289738 +142901,714.5050000039909,-0.0553345321102034 +142902,714.510000003991,-0.05533449217581725 +142903,714.5150000039911,-0.055334452239738825 +142904,714.5200000039912,-0.05533441230196802 +142905,714.5250000039913,-0.05533437236250469 +142906,714.5300000039914,-0.05533433242134876 +142907,714.5350000039915,-0.05533429247850009 +142908,714.5400000039916,-0.05533425253395858 +142909,714.5450000039917,-0.0553342125877241 +142910,714.5500000039918,-0.05533417263979655 +142911,714.555000003992,-0.05533413269017581 +142912,714.5600000039921,-0.05533409273886177 +142913,714.5650000039922,-0.055334052785854314 +142914,714.5700000039923,-0.05533401283115333 +142915,714.5750000039924,-0.0553339728747587 +142916,714.5800000039925,-0.055333932916670305 +142917,714.5850000039926,-0.05533389295688805 +142918,714.5900000039927,-0.055333852995411804 +142919,714.5950000039928,-0.05533381303224147 +142920,714.6000000039929,-0.05533377306737691 +142921,714.605000003993,-0.05533373310081804 +142922,714.6100000039932,-0.05533369313256472 +142923,714.6150000039933,-0.055333653162616854 +142924,714.6200000039934,-0.055333613190974316 +142925,714.6250000039935,-0.05533357321763701 +142926,714.6300000039936,-0.055333533242604815 +142927,714.6350000039937,-0.05533349326587761 +142928,714.6400000039938,-0.055333453287455286 +142929,714.6450000039939,-0.05533341330733774 +142930,714.650000003994,-0.05533337332552485 +142931,714.6550000039941,-0.05533333334201649 +142932,714.6600000039942,-0.055333293356812564 +142933,714.6650000039944,-0.05533325336991295 +142934,714.6700000039945,-0.05533321338131755 +142935,714.6750000039946,-0.05533317339102625 +142936,714.6800000039947,-0.055333133399038927 +142937,714.6850000039948,-0.05533309340535547 +142938,714.6900000039949,-0.05533305340997576 +142939,714.695000003995,-0.05533301341289969 +142940,714.7000000039951,-0.05533297341412716 +142941,714.7050000039952,-0.055332933413658025 +142942,714.7100000039953,-0.05533289341149221 +142943,714.7150000039954,-0.055332853407629584 +142944,714.7200000039956,-0.05533281340207003 +142945,714.7250000039957,-0.05533277339481345 +142946,714.7300000039958,-0.055332733385859714 +142947,714.7350000039959,-0.05533269337520872 +142948,714.740000003996,-0.055332653362860355 +142949,714.7450000039961,-0.05533261334881452 +142950,714.7500000039962,-0.05533257333307108 +142951,714.7550000039963,-0.055332533315629935 +142952,714.7600000039964,-0.05533249329649097 +142953,714.7650000039965,-0.05533245327565407 +142954,714.7700000039966,-0.05533241325311913 +142955,714.7750000039968,-0.055332373228886025 +142956,714.7800000039969,-0.05533233320295466 +142957,714.785000003997,-0.05533229317532492 +142958,714.7900000039971,-0.05533225314599669 +142959,714.7950000039972,-0.055332213114969844 +142960,714.8000000039973,-0.0553321730822443 +142961,714.8050000039974,-0.05533213304781993 +142962,714.8100000039975,-0.0553320930116966 +142963,714.8150000039976,-0.05533205297387423 +142964,714.8200000039977,-0.055332012934352706 +142965,714.8250000039978,-0.05533197289313191 +142966,714.830000003998,-0.055331932850211714 +142967,714.8350000039981,-0.05533189280559204 +142968,714.8400000039982,-0.05533185275927275 +142969,714.8450000039983,-0.05533181271125375 +142970,714.8500000039984,-0.05533177266153491 +142971,714.8550000039985,-0.05533173261011613 +142972,714.8600000039986,-0.05533169255699731 +142973,714.8650000039987,-0.055331652502178315 +142974,714.8700000039988,-0.05533161244565905 +142975,714.8750000039989,-0.055331572387439396 +142976,714.880000003999,-0.055331532327519244 +142977,714.8850000039992,-0.055331492265898494 +142978,714.8900000039993,-0.055331452202577014 +142979,714.8950000039994,-0.05533141213755471 +142980,714.9000000039995,-0.05533137207083146 +142981,714.9050000039996,-0.05533133200240717 +142982,714.9100000039997,-0.0553312919322817 +142983,714.9150000039998,-0.05533125186045497 +142984,714.9200000039999,-0.05533121178692686 +142985,714.925000004,-0.055331171711697255 +142986,714.9300000040001,-0.05533113163476604 +142987,714.9350000040002,-0.055331091556133104 +142988,714.9400000040004,-0.05533105147579835 +142989,714.9450000040005,-0.055331011393761655 +142990,714.9500000040006,-0.05533097131002292 +142991,714.9550000040007,-0.05533093122458202 +142992,714.9600000040008,-0.05533089113743884 +142993,714.9650000040009,-0.05533085104859329 +142994,714.970000004001,-0.05533081095804525 +142995,714.9750000040011,-0.05533077086579462 +142996,714.9800000040012,-0.05533073077184127 +142997,714.9850000040013,-0.05533069067618512 +142998,714.9900000040014,-0.055330650578826024 +142999,714.9950000040016,-0.05533061047976389 +143000,715.0000000040017,-0.05533057037899862 +143001,715.0050000040018,-0.05533053027653007 +143002,715.0100000040019,-0.05533049017235815 +143003,715.015000004002,-0.05533045006648277 +143004,715.0200000040021,-0.05533040995890379 +143005,715.0250000040022,-0.05533036984962111 +143006,715.0300000040023,-0.055330329738634616 +143007,715.0350000040024,-0.05533028962594422 +143008,715.0400000040025,-0.05533024951154978 +143009,715.0450000040026,-0.055330209395451205 +143010,715.0500000040028,-0.05533016927764838 +143011,715.0550000040029,-0.05533012915814121 +143012,715.060000004003,-0.05533008903692956 +143013,715.0650000040031,-0.05533004891401335 +143014,715.0700000040032,-0.05533000878939244 +143015,715.0750000040033,-0.05532996866306674 +143016,715.0800000040034,-0.055329928535036134 +143017,715.0850000040035,-0.05532988840530051 +143018,715.0900000040036,-0.05532984827385977 +143019,715.0950000040037,-0.055329808140713796 +143020,715.1000000040038,-0.05532976800586248 +143021,715.105000004004,-0.05532972786930571 +143022,715.1100000040041,-0.055329687731043395 +143023,715.1150000040042,-0.0553296475910754 +143024,715.1200000040043,-0.05532960744940162 +143025,715.1250000040044,-0.05532956730602196 +143026,715.1300000040045,-0.055329527160936295 +143027,715.1350000040046,-0.055329487014144536 +143028,715.1400000040047,-0.05532944686564656 +143029,715.1450000040048,-0.05532940671544226 +143030,715.1500000040049,-0.05532936656353154 +143031,715.155000004005,-0.055329326409914274 +143032,715.1600000040052,-0.05532928625459036 +143033,715.1650000040053,-0.055329246097559674 +143034,715.1700000040054,-0.05532920593882213 +143035,715.1750000040055,-0.05532916577837762 +143036,715.1800000040056,-0.05532912561622602 +143037,715.1850000040057,-0.05532908545236724 +143038,715.1900000040058,-0.055329045286801146 +143039,715.1950000040059,-0.05532900511952765 +143040,715.200000004006,-0.055328964950546636 +143041,715.2050000040061,-0.055328924779858 +143042,715.2100000040062,-0.05532888460746162 +143043,715.2150000040064,-0.05532884443335741 +143044,715.2200000040065,-0.055328804257545244 +143045,715.2250000040066,-0.055328764080025024 +143046,715.2300000040067,-0.055328723900796635 +143047,715.2350000040068,-0.05532868371985997 +143048,715.2400000040069,-0.055328643537214915 +143049,715.245000004007,-0.05532860335286138 +143050,715.2500000040071,-0.055328563166799245 +143051,715.2550000040072,-0.055328522979028405 +143052,715.2600000040073,-0.055328482789548744 +143053,715.2650000040074,-0.05532844259836017 +143054,715.2700000040076,-0.05532840240546257 +143055,715.2750000040077,-0.05532836221085583 +143056,715.2800000040078,-0.055328322014539834 +143057,715.2850000040079,-0.055328281816514495 +143058,715.290000004008,-0.0553282416167797 +143059,715.2950000040081,-0.05532820141533533 +143060,715.3000000040082,-0.05532816121218129 +143061,715.3050000040083,-0.05532812100731747 +143062,715.3100000040084,-0.05532808080074375 +143063,715.3150000040085,-0.05532804059246003 +143064,715.3200000040086,-0.0553280003824662 +143065,715.3250000040088,-0.05532796017076217 +143066,715.3300000040089,-0.055327919957347815 +143067,715.335000004009,-0.055327879742223036 +143068,715.3400000040091,-0.055327839525387716 +143069,715.3450000040092,-0.05532779930684176 +143070,715.3500000040093,-0.05532775908658505 +143071,715.3550000040094,-0.055327718864617494 +143072,715.3600000040095,-0.055327678640938974 +143073,715.3650000040096,-0.05532763841554937 +143074,715.3700000040097,-0.0553275981884486 +143075,715.3750000040098,-0.05532755795963655 +143076,715.38000000401,-0.05532751772911311 +143077,715.3850000040101,-0.05532747749687818 +143078,715.3900000040102,-0.05532743726293164 +143079,715.3950000040103,-0.05532739702727339 +143080,715.4000000040104,-0.05532735678990332 +143081,715.4050000040105,-0.05532731655082132 +143082,715.4100000040106,-0.055327276310027304 +143083,715.4150000040107,-0.05532723606752114 +143084,715.4200000040108,-0.055327195823302734 +143085,715.4250000040109,-0.05532715557737197 +143086,715.430000004011,-0.055327115329728754 +143087,715.4350000040112,-0.05532707508037298 +143088,715.4400000040113,-0.05532703482930454 +143089,715.4450000040114,-0.05532699457652332 +143090,715.4500000040115,-0.05532695432202921 +143091,715.4550000040116,-0.05532691406582212 +143092,715.4600000040117,-0.05532687380790193 +143093,715.4650000040118,-0.05532683354826854 +143094,715.4700000040119,-0.05532679328692184 +143095,715.475000004012,-0.05532675302386173 +143096,715.4800000040121,-0.0553267127590881 +143097,715.4850000040122,-0.05532667249260085 +143098,715.4900000040124,-0.05532663222439986 +143099,715.4950000040125,-0.05532659195448504 +143100,715.5000000040126,-0.05532655168285628 +143101,715.5050000040127,-0.05532651140951346 +143102,715.5100000040128,-0.0553264711344565 +143103,715.5150000040129,-0.055326430857685266 +143104,715.520000004013,-0.05532639057919967 +143105,715.5250000040131,-0.0553263502989996 +143106,715.5300000040132,-0.05532631001708495 +143107,715.5350000040133,-0.05532626973345562 +143108,715.5400000040135,-0.055326229448111504 +143109,715.5450000040136,-0.055326189161052496 +143110,715.5500000040137,-0.0553261488722785 +143111,715.5550000040138,-0.055326108581789386 +143112,715.5600000040139,-0.05532606828958507 +143113,715.565000004014,-0.05532602799566543 +143114,715.5700000040141,-0.05532598770003037 +143115,715.5750000040142,-0.05532594740267977 +143116,715.5800000040143,-0.05532590710361356 +143117,715.5850000040144,-0.0553258668028316 +143118,715.5900000040145,-0.055325826500333804 +143119,715.5950000040147,-0.055325786196120066 +143120,715.6000000040148,-0.055325745890190264 +143121,715.6050000040149,-0.0553257055825443 +143122,715.610000004015,-0.055325665273182084 +143123,715.6150000040151,-0.05532562496210349 +143124,715.6200000040152,-0.05532558464930844 +143125,715.6250000040153,-0.055325544334796806 +143126,715.6300000040154,-0.055325504018568485 +143127,715.6350000040155,-0.05532546370062338 +143128,715.6400000040156,-0.055325423380961386 +143129,715.6450000040157,-0.05532538305958239 +143130,715.6500000040159,-0.05532534273648631 +143131,715.655000004016,-0.05532530241167301 +143132,715.6600000040161,-0.0553252620851424 +143133,715.6650000040162,-0.05532522175689438 +143134,715.6700000040163,-0.05532518142692884 +143135,715.6750000040164,-0.055325141095245674 +143136,715.6800000040165,-0.055325100761844784 +143137,715.6850000040166,-0.05532506042672605 +143138,715.6900000040167,-0.05532502008988939 +143139,715.6950000040168,-0.0553249797513347 +143140,715.7000000040169,-0.05532493941106185 +143141,715.705000004017,-0.05532489906907075 +143142,715.7100000040172,-0.05532485872536131 +143143,715.7150000040173,-0.05532481837993341 +143144,715.7200000040174,-0.05532477803278694 +143145,715.7250000040175,-0.0553247376839218 +143146,715.7300000040176,-0.0553246973333379 +143147,715.7350000040177,-0.05532465698103512 +143148,715.7400000040178,-0.05532461662701336 +143149,715.7450000040179,-0.05532457627127252 +143150,715.750000004018,-0.0553245359138125 +143151,715.7550000040181,-0.05532449555463319 +143152,715.7600000040183,-0.05532445519373448 +143153,715.7650000040184,-0.055324414831116275 +143154,715.7700000040185,-0.055324374466778466 +143155,715.7750000040186,-0.05532433410072095 +143156,715.7800000040187,-0.05532429373294363 +143157,715.7850000040188,-0.0553242533634464 +143158,715.7900000040189,-0.05532421299222915 +143159,715.795000004019,-0.05532417261929179 +143160,715.8000000040191,-0.0553241322446342 +143161,715.8050000040192,-0.05532409186825629 +143162,715.8100000040193,-0.05532405149015794 +143163,715.8150000040195,-0.05532401111033907 +143164,715.8200000040196,-0.05532397072879957 +143165,715.8250000040197,-0.05532393034553931 +143166,715.8300000040198,-0.05532388996055822 +143167,715.8350000040199,-0.05532384957385618 +143168,715.84000000402,-0.055323809185433094 +143169,715.8450000040201,-0.05532376879528886 +143170,715.8500000040202,-0.05532372840342336 +143171,715.8550000040203,-0.055323688009836516 +143172,715.8600000040204,-0.05532364761452822 +143173,715.8650000040205,-0.055323607217498336 +143174,715.8700000040207,-0.0553235668187468 +143175,715.8750000040208,-0.05532352641827349 +143176,715.8800000040209,-0.0553234860160783 +143177,715.885000004021,-0.055323445612161154 +143178,715.8900000040211,-0.05532340520652191 +143179,715.8950000040212,-0.0553233647991605 +143180,715.9000000040213,-0.055323324390076804 +143181,715.9050000040214,-0.05532328397927073 +143182,715.9100000040215,-0.055323243566742154 +143183,715.9150000040216,-0.05532320315249099 +143184,715.9200000040217,-0.055323162736517134 +143185,715.9250000040219,-0.05532312231882048 +143186,715.930000004022,-0.05532308189940093 +143187,715.9350000040221,-0.055323041478258374 +143188,715.9400000040222,-0.05532300105539272 +143189,715.9450000040223,-0.055322960630803865 +143190,715.9500000040224,-0.0553229202044917 +143191,715.9550000040225,-0.05532287977645612 +143192,715.9600000040226,-0.055322839346697024 +143193,715.9650000040227,-0.05532279891521432 +143194,715.9700000040228,-0.0553227584820079 +143195,715.975000004023,-0.05532271804707766 +143196,715.980000004023,-0.0553226776104235 +143197,715.9850000040232,-0.05532263717204532 +143198,715.9900000040233,-0.05532259673194301 +143199,715.9950000040234,-0.05532255629011648 +143200,716.0000000040235,-0.055322515846565626 +143201,716.0050000040236,-0.05532247540129034 +143202,716.0100000040237,-0.055322434954290504 +143203,716.0150000040238,-0.05532239450556604 +143204,716.0200000040239,-0.055322354055116846 +143205,716.025000004024,-0.05532231360294281 +143206,716.0300000040241,-0.05532227314904384 +143207,716.0350000040243,-0.055322232693419834 +143208,716.0400000040244,-0.055322192236070676 +143209,716.0450000040245,-0.05532215177699628 +143210,716.0500000040246,-0.05532211131619654 +143211,716.0550000040247,-0.05532207085367135 +143212,716.0600000040248,-0.05532203038942062 +143213,716.0650000040249,-0.05532198992344424 +143214,716.070000004025,-0.0553219494557421 +143215,716.0750000040251,-0.05532190898631412 +143216,716.0800000040252,-0.055321868515160175 +143217,716.0850000040253,-0.05532182804228019 +143218,716.0900000040255,-0.05532178756767404 +143219,716.0950000040256,-0.05532174709134163 +143220,716.1000000040257,-0.055321706613282874 +143221,716.1050000040258,-0.05532166613349764 +143222,716.1100000040259,-0.05532162565198587 +143223,716.115000004026,-0.05532158516874743 +143224,716.1200000040261,-0.055321544683782226 +143225,716.1250000040262,-0.05532150419709015 +143226,716.1300000040263,-0.055321463708671116 +143227,716.1350000040264,-0.055321423218525026 +143228,716.1400000040265,-0.05532138272665176 +143229,716.1450000040267,-0.05532134223305124 +143230,716.1500000040268,-0.055321301737723344 +143231,716.1550000040269,-0.055321261240667996 +143232,716.160000004027,-0.05532122074188507 +143233,716.1650000040271,-0.05532118024137448 +143234,716.1700000040272,-0.05532113973913612 +143235,716.1750000040273,-0.05532109923516988 +143236,716.1800000040274,-0.05532105872947568 +143237,716.1850000040275,-0.05532101822205341 +143238,716.1900000040276,-0.05532097771290296 +143239,716.1950000040277,-0.05532093720202424 +143240,716.2000000040279,-0.05532089668941716 +143241,716.205000004028,-0.055320856175081604 +143242,716.2100000040281,-0.05532081565901747 +143243,716.2150000040282,-0.05532077514122467 +143244,716.2200000040283,-0.055320734621703095 +143245,716.2250000040284,-0.05532069410045266 +143246,716.2300000040285,-0.05532065357747324 +143247,716.2350000040286,-0.05532061305276474 +143248,716.2400000040287,-0.055320572526327084 +143249,716.2450000040288,-0.05532053199816015 +143250,716.250000004029,-0.05532049146826384 +143251,716.2550000040291,-0.05532045093663805 +143252,716.2600000040292,-0.05532041040328269 +143253,716.2650000040293,-0.055320369868197675 +143254,716.2700000040294,-0.05532032933138288 +143255,716.2750000040295,-0.055320288792838214 +143256,716.2800000040296,-0.05532024825256358 +143257,716.2850000040297,-0.055320207710558865 +143258,716.2900000040298,-0.05532016716682398 +143259,716.2950000040299,-0.05532012662135882 +143260,716.30000000403,-0.0553200860741633 +143261,716.3050000040301,-0.0553200455252373 +143262,716.3100000040303,-0.055320004974580755 +143263,716.3150000040304,-0.055319964422193536 +143264,716.3200000040305,-0.05531992386807555 +143265,716.3250000040306,-0.055319883312226696 +143266,716.3300000040307,-0.055319842754646874 +143267,716.3350000040308,-0.055319802195335985 +143268,716.3400000040309,-0.055319761634293925 +143269,716.345000004031,-0.055319721071520604 +143270,716.3500000040311,-0.05531968050701592 +143271,716.3550000040312,-0.055319639940779784 +143272,716.3600000040313,-0.05531959937281208 +143273,716.3650000040315,-0.05531955880311271 +143274,716.3700000040316,-0.05531951823168159 +143275,716.3750000040317,-0.05531947765851861 +143276,716.3800000040318,-0.05531943708362367 +143277,716.3850000040319,-0.05531939650699667 +143278,716.390000004032,-0.05531935592863752 +143279,716.3950000040321,-0.055319315348546116 +143280,716.4000000040322,-0.05531927476672236 +143281,716.4050000040323,-0.055319234183166144 +143282,716.4100000040324,-0.05531919359787739 +143283,716.4150000040325,-0.055319153010855986 +143284,716.4200000040327,-0.055319112422101836 +143285,716.4250000040328,-0.05531907183161484 +143286,716.4300000040329,-0.05531903123939489 +143287,716.435000004033,-0.0553189906454419 +143288,716.4400000040331,-0.055318950049755775 +143289,716.4450000040332,-0.05531890945233642 +143290,716.4500000040333,-0.05531886885318372 +143291,716.4550000040334,-0.05531882825229758 +143292,716.4600000040335,-0.0553187876496779 +143293,716.4650000040336,-0.0553187470453246 +143294,716.4700000040337,-0.05531870643923756 +143295,716.4750000040339,-0.055318665831416695 +143296,716.480000004034,-0.05531862522186191 +143297,716.4850000040341,-0.05531858461057308 +143298,716.4900000040342,-0.05531854399755014 +143299,716.4950000040343,-0.05531850338279297 +143300,716.5000000040344,-0.05531846276630148 +143301,716.5050000040345,-0.055318422148075586 +143302,716.5100000040346,-0.05531838152811517 +143303,716.5150000040347,-0.055318340906420134 +143304,716.5200000040348,-0.055318300282990396 +143305,716.525000004035,-0.05531825965782584 +143306,716.5300000040351,-0.055318219030926374 +143307,716.5350000040352,-0.05531817840229191 +143308,716.5400000040353,-0.05531813777192234 +143309,716.5450000040354,-0.05531809713981757 +143310,716.5500000040355,-0.05531805650597751 +143311,716.5550000040356,-0.055318015870402054 +143312,716.5600000040357,-0.05531797523309111 +143313,716.5650000040358,-0.05531793459404456 +143314,716.5700000040359,-0.05531789395326233 +143315,716.575000004036,-0.05531785331074431 +143316,716.5800000040362,-0.05531781266649041 +143317,716.5850000040363,-0.055317772020500526 +143318,716.5900000040364,-0.05531773137277458 +143319,716.5950000040365,-0.05531769072331244 +143320,716.6000000040366,-0.05531765007211403 +143321,716.6050000040367,-0.055317609419179264 +143322,716.6100000040368,-0.055317568764508024 +143323,716.6150000040369,-0.05531752810810022 +143324,716.620000004037,-0.055317487449955766 +143325,716.6250000040371,-0.05531744679007454 +143326,716.6300000040372,-0.05531740612845647 +143327,716.6350000040374,-0.055317365465101444 +143328,716.6400000040375,-0.05531732480000937 +143329,716.6450000040376,-0.055317284133180156 +143330,716.6500000040377,-0.05531724346461368 +143331,716.6550000040378,-0.05531720279430988 +143332,716.6600000040379,-0.05531716212226864 +143333,716.665000004038,-0.055317121448489874 +143334,716.6700000040381,-0.05531708077297347 +143335,716.6750000040382,-0.05531704009571933 +143336,716.6800000040383,-0.05531699941672739 +143337,716.6850000040384,-0.05531695873599752 +143338,716.6900000040386,-0.05531691805352963 +143339,716.6950000040387,-0.055316877369323635 +143340,716.7000000040388,-0.055316836683379424 +143341,716.7050000040389,-0.05531679599569691 +143342,716.710000004039,-0.05531675530627599 +143343,716.7150000040391,-0.05531671461511658 +143344,716.7200000040392,-0.05531667392221857 +143345,716.7250000040393,-0.055316633227581874 +143346,716.7300000040394,-0.05531659253120638 +143347,716.7350000040395,-0.05531655183309201 +143348,716.7400000040396,-0.05531651113323866 +143349,716.7450000040398,-0.05531647043164624 +143350,716.7500000040399,-0.055316429728314645 +143351,716.75500000404,-0.055316389023243775 +143352,716.7600000040401,-0.05531634831643355 +143353,716.7650000040402,-0.055316307607883856 +143354,716.7700000040403,-0.05531626689759462 +143355,716.7750000040404,-0.05531622618556571 +143356,716.7800000040405,-0.05531618547179707 +143357,716.7850000040406,-0.05531614475628858 +143358,716.7900000040407,-0.05531610403904016 +143359,716.7950000040408,-0.055316063320051685 +143360,716.800000004041,-0.05531602259932309 +143361,716.8050000040411,-0.05531598187685427 +143362,716.8100000040412,-0.055315941152645126 +143363,716.8150000040413,-0.05531590042669556 +143364,716.8200000040414,-0.05531585969900549 +143365,716.8250000040415,-0.05531581896957479 +143366,716.8300000040416,-0.0553157782384034 +143367,716.8350000040417,-0.0553157375054912 +143368,716.8400000040418,-0.05531569677083812 +143369,716.8450000040419,-0.055315656034444036 +143370,716.850000004042,-0.055315615296308865 +143371,716.8550000040422,-0.05531557455643251 +143372,716.8600000040423,-0.05531553381481488 +143373,716.8650000040424,-0.05531549307145589 +143374,716.8700000040425,-0.05531545232635543 +143375,716.8750000040426,-0.0553154115795134 +143376,716.8800000040427,-0.05531537083092971 +143377,716.8850000040428,-0.05531533008060427 +143378,716.8900000040429,-0.05531528932853698 +143379,716.895000004043,-0.05531524857472775 +143380,716.9000000040431,-0.05531520781917647 +143381,716.9050000040432,-0.05531516706188306 +143382,716.9100000040434,-0.05531512630284742 +143383,716.9150000040435,-0.05531508554206945 +143384,716.9200000040436,-0.055315044779549086 +143385,716.9250000040437,-0.05531500401528619 +143386,716.9300000040438,-0.055314963249280695 +143387,716.9350000040439,-0.05531492248153249 +143388,716.940000004044,-0.0553148817120415 +143389,716.9450000040441,-0.0553148409408076 +143390,716.9500000040442,-0.055314800167830726 +143391,716.9550000040443,-0.055314759393110764 +143392,716.9600000040444,-0.05531471861664763 +143393,716.9650000040446,-0.055314677838441226 +143394,716.9700000040447,-0.055314637058491455 +143395,716.9750000040448,-0.05531459627679823 +143396,716.9800000040449,-0.05531455549336144 +143397,716.985000004045,-0.05531451470818101 +143398,716.9900000040451,-0.05531447392125684 +143399,716.9950000040452,-0.05531443313258883 +143400,717.0000000040453,-0.05531439234217689 +143401,717.0050000040454,-0.055314351550020915 +143402,717.0100000040455,-0.05531431075612083 +143403,717.0150000040456,-0.05531426996047654 +143404,717.0200000040458,-0.05531422916308793 +143405,717.0250000040459,-0.05531418836395493 +143406,717.030000004046,-0.055314147563077426 +143407,717.0350000040461,-0.05531410676045533 +143408,717.0400000040462,-0.05531406595608856 +143409,717.0450000040463,-0.055314025149977 +143410,717.0500000040464,-0.05531398434212058 +143411,717.0550000040465,-0.05531394353251918 +143412,717.0600000040466,-0.055313902721172724 +143413,717.0650000040467,-0.05531386190808112 +143414,717.0700000040468,-0.05531382109324427 +143415,717.075000004047,-0.055313780276662075 +143416,717.0800000040471,-0.05531373945833444 +143417,717.0850000040472,-0.055313698638261286 +143418,717.0900000040473,-0.0553136578164425 +143419,717.0950000040474,-0.05531361699287801 +143420,717.1000000040475,-0.055313576167567706 +143421,717.1050000040476,-0.05531353534051149 +143422,717.1100000040477,-0.0553134945117093 +143423,717.1150000040478,-0.05531345368116101 +143424,717.1200000040479,-0.05531341284886653 +143425,717.125000004048,-0.055313372014825786 +143426,717.1300000040482,-0.05531333117903867 +143427,717.1350000040483,-0.05531329034150508 +143428,717.1400000040484,-0.05531324950222495 +143429,717.1450000040485,-0.05531320866119816 +143430,717.1500000040486,-0.05531316781842463 +143431,717.1550000040487,-0.05531312697390426 +143432,717.1600000040488,-0.05531308612763697 +143433,717.1650000040489,-0.05531304527962264 +143434,717.170000004049,-0.05531300442986121 +143435,717.1750000040491,-0.05531296357835257 +143436,717.1800000040492,-0.05531292272509663 +143437,717.1850000040494,-0.05531288187009329 +143438,717.1900000040495,-0.05531284101334248 +143439,717.1950000040496,-0.055312800154844084 +143440,717.2000000040497,-0.05531275929459801 +143441,717.2050000040498,-0.05531271843260417 +143442,717.2100000040499,-0.05531267756886248 +143443,717.21500000405,-0.055312636703372844 +143444,717.2200000040501,-0.05531259583613516 +143445,717.2250000040502,-0.05531255496714934 +143446,717.2300000040503,-0.055312514096415286 +143447,717.2350000040504,-0.055312473223932915 +143448,717.2400000040506,-0.05531243234970212 +143449,717.2450000040507,-0.05531239147372283 +143450,717.2500000040508,-0.055312350595994944 +143451,717.2550000040509,-0.055312309716518356 +143452,717.260000004051,-0.055312268835293 +143453,717.2650000040511,-0.05531222795231875 +143454,717.2700000040512,-0.055312187067595546 +143455,717.2750000040513,-0.05531214618112328 +143456,717.2800000040514,-0.05531210529290186 +143457,717.2850000040515,-0.0553120644029312 +143458,717.2900000040516,-0.05531202351121119 +143459,717.2950000040518,-0.05531198261774176 +143460,717.3000000040519,-0.0553119417225228 +143461,717.305000004052,-0.05531190082555423 +143462,717.3100000040521,-0.05531185992683597 +143463,717.3150000040522,-0.0553118190263679 +143464,717.3200000040523,-0.05531177812414994 +143465,717.3250000040524,-0.055311737220182 +143466,717.3300000040525,-0.05531169631446399 +143467,717.3350000040526,-0.05531165540699581 +143468,717.3400000040527,-0.055311614497777384 +143469,717.3450000040528,-0.055311573586808604 +143470,717.350000004053,-0.05531153267408939 +143471,717.3550000040531,-0.05531149175961964 +143472,717.3600000040532,-0.05531145084339927 +143473,717.3650000040533,-0.05531140992542818 +143474,717.3700000040534,-0.05531136900570628 +143475,717.3750000040535,-0.05531132808423348 +143476,717.3800000040536,-0.055311287161009706 +143477,717.3850000040537,-0.05531124623603483 +143478,717.3900000040538,-0.05531120530930879 +143479,717.3950000040539,-0.05531116438083149 +143480,717.400000004054,-0.05531112345060282 +143481,717.4050000040542,-0.05531108251862271 +143482,717.4100000040543,-0.05531104158489107 +143483,717.4150000040544,-0.055311000649407804 +143484,717.4200000040545,-0.05531095971217281 +143485,717.4250000040546,-0.05531091877318599 +143486,717.4300000040547,-0.05531087783244728 +143487,717.4350000040548,-0.055310836889956576 +143488,717.4400000040549,-0.055310795945713795 +143489,717.445000004055,-0.055310754999718825 +143490,717.4500000040551,-0.05531071405197159 +143491,717.4550000040553,-0.055310673102471994 +143492,717.4600000040554,-0.05531063215121995 +143493,717.4650000040555,-0.05531059119821537 +143494,717.4700000040556,-0.055310550243458156 +143495,717.4750000040557,-0.055310509286948216 +143496,717.4800000040558,-0.055310468328685476 +143497,717.4850000040559,-0.05531042736866982 +143498,717.490000004056,-0.055310386406901176 +143499,717.4950000040561,-0.05531034544337945 +143500,717.5000000040562,-0.05531030447810454 +143501,717.5050000040563,-0.055310263511076374 +143502,717.5100000040565,-0.05531022254229484 +143503,717.5150000040566,-0.055310181571759855 +143504,717.5200000040567,-0.05531014059947134 +143505,717.5250000040568,-0.05531009962542919 +143506,717.5300000040569,-0.05531005864963332 +143507,717.535000004057,-0.05531001767208365 +143508,717.5400000040571,-0.05530997669278007 +143509,717.5450000040572,-0.055309935711722505 +143510,717.5500000040573,-0.05530989472891086 +143511,717.5550000040574,-0.05530985374434505 +143512,717.5600000040575,-0.055309812758024976 +143513,717.5650000040577,-0.05530977176995055 +143514,717.5700000040578,-0.05530973078012167 +143515,717.5750000040579,-0.055309689788538265 +143516,717.580000004058,-0.05530964879520025 +143517,717.5850000040581,-0.05530960780010752 +143518,717.5900000040582,-0.05530956680325997 +143519,717.5950000040583,-0.05530952580465754 +143520,717.6000000040584,-0.055309484804300126 +143521,717.6050000040585,-0.05530944380218764 +143522,717.6100000040586,-0.055309402798319994 +143523,717.6150000040587,-0.05530936179269709 +143524,717.6200000040589,-0.05530932078531885 +143525,717.625000004059,-0.05530927977618518 +143526,717.6300000040591,-0.05530923876529599 +143527,717.6350000040592,-0.05530919775265119 +143528,717.6400000040593,-0.05530915673825068 +143529,717.6450000040594,-0.05530911572209439 +143530,717.6500000040595,-0.055309074704182226 +143531,717.6550000040596,-0.05530903368451408 +143532,717.6600000040597,-0.05530899266308988 +143533,717.6650000040598,-0.05530895163990952 +143534,717.67000000406,-0.05530891061497293 +143535,717.67500000406,-0.05530886958828002 +143536,717.6800000040602,-0.055308828559830686 +143537,717.6850000040603,-0.05530878752962485 +143538,717.6900000040604,-0.05530874649766241 +143539,717.6950000040605,-0.0553087054639433 +143540,717.7000000040606,-0.05530866442846741 +143541,717.7050000040607,-0.05530862339123465 +143542,717.7100000040608,-0.055308582352244944 +143543,717.7150000040609,-0.05530854131149819 +143544,717.720000004061,-0.05530850026899431 +143545,717.7250000040611,-0.055308459224733215 +143546,717.7300000040613,-0.055308418178714805 +143547,717.7350000040614,-0.055308377130938995 +143548,717.7400000040615,-0.0553083360814057 +143549,717.7450000040616,-0.05530829503011482 +143550,717.7500000040617,-0.05530825397706629 +143551,717.7550000040618,-0.05530821292226 +143552,717.7600000040619,-0.05530817186569587 +143553,717.765000004062,-0.055308130807373804 +143554,717.7700000040621,-0.055308089747293725 +143555,717.7750000040622,-0.05530804868545553 +143556,717.7800000040623,-0.05530800762185913 +143557,717.7850000040625,-0.055307966556504454 +143558,717.7900000040626,-0.055307925489391396 +143559,717.7950000040627,-0.055307884420519884 +143560,717.8000000040628,-0.05530784334988981 +143561,717.8050000040629,-0.055307802277501095 +143562,717.810000004063,-0.05530776120335365 +143563,717.8150000040631,-0.0553077201274474 +143564,717.8200000040632,-0.05530767904978224 +143565,717.8250000040633,-0.05530763797035807 +143566,717.8300000040634,-0.05530759688917483 +143567,717.8350000040635,-0.055307555806232415 +143568,717.8400000040637,-0.05530751472153074 +143569,717.8450000040638,-0.055307473635069715 +143570,717.8500000040639,-0.05530743254684926 +143571,717.855000004064,-0.05530739145686927 +143572,717.8600000040641,-0.05530735036512968 +143573,717.8650000040642,-0.05530730927163039 +143574,717.8700000040643,-0.05530726817637131 +143575,717.8750000040644,-0.055307227079352345 +143576,717.8800000040645,-0.05530718598057342 +143577,717.8850000040646,-0.055307144880034444 +143578,717.8900000040647,-0.055307103777735324 +143579,717.8950000040649,-0.05530706267367597 +143580,717.900000004065,-0.05530702156785631 +143581,717.9050000040651,-0.05530698046027624 +143582,717.9100000040652,-0.05530693935093568 +143583,717.9150000040653,-0.05530689823983454 +143584,717.9200000040654,-0.05530685712697273 +143585,717.9250000040655,-0.05530681601235017 +143586,717.9300000040656,-0.055306774895966755 +143587,717.9350000040657,-0.055306733777822414 +143588,717.9400000040658,-0.05530669265791706 +143589,717.945000004066,-0.055306651536250584 +143590,717.950000004066,-0.05530661041282292 +143591,717.9550000040662,-0.05530656928763398 +143592,717.9600000040663,-0.05530652816068367 +143593,717.9650000040664,-0.05530648703197191 +143594,717.9700000040665,-0.05530644590149861 +143595,717.9750000040666,-0.05530640476926366 +143596,717.9800000040667,-0.055306363635267 +143597,717.9850000040668,-0.055306322499508544 +143598,717.9900000040669,-0.05530628136198819 +143599,717.995000004067,-0.05530624022270585 +143600,718.0000000040671,-0.05530619908166145 +143601,718.0050000040673,-0.0553061579388549 +143602,718.0100000040674,-0.0553061167942861 +143603,718.0150000040675,-0.05530607564795497 +143604,718.0200000040676,-0.05530603449986143 +143605,718.0250000040677,-0.055305993350005384 +143606,718.0300000040678,-0.05530595219838675 +143607,718.0350000040679,-0.05530591104500543 +143608,718.040000004068,-0.05530586988986136 +143609,718.0450000040681,-0.05530582873295443 +143610,718.0500000040682,-0.05530578757428455 +143611,718.0550000040683,-0.055305746413851664 +143612,718.0600000040685,-0.055305705251655665 +143613,718.0650000040686,-0.05530566408769647 +143614,718.0700000040687,-0.05530562292197398 +143615,718.0750000040688,-0.05530558175448812 +143616,718.0800000040689,-0.0553055405852388 +143617,718.085000004069,-0.05530549941422595 +143618,718.0900000040691,-0.05530545824144946 +143619,718.0950000040692,-0.055305417066909245 +143620,718.1000000040693,-0.05530537589060523 +143621,718.1050000040694,-0.05530533471253733 +143622,718.1100000040695,-0.05530529353270545 +143623,718.1150000040697,-0.0553052523511095 +143624,718.1200000040698,-0.055305211167749405 +143625,718.1250000040699,-0.05530516998262507 +143626,718.13000000407,-0.05530512879573642 +143627,718.1350000040701,-0.05530508760708335 +143628,718.1400000040702,-0.05530504641666579 +143629,718.1450000040703,-0.05530500522448365 +143630,718.1500000040704,-0.055304964030536835 +143631,718.1550000040705,-0.05530492283482528 +143632,718.1600000040706,-0.05530488163734887 +143633,718.1650000040707,-0.05530484043810755 +143634,718.1700000040709,-0.05530479923710121 +143635,718.175000004071,-0.055304758034329764 +143636,718.1800000040711,-0.05530471682979314 +143637,718.1850000040712,-0.055304675623491235 +143638,718.1900000040713,-0.05530463441542399 +143639,718.1950000040714,-0.05530459320559131 +143640,718.2000000040715,-0.05530455199399309 +143641,718.2050000040716,-0.05530451078062926 +143642,718.2100000040717,-0.05530446956549972 +143643,718.2150000040718,-0.05530442834860439 +143644,718.220000004072,-0.0553043871299432 +143645,718.2250000040721,-0.055304345909516044 +143646,718.2300000040722,-0.05530430468732286 +143647,718.2350000040723,-0.05530426346336354 +143648,718.2400000040724,-0.055304222237638014 +143649,718.2450000040725,-0.05530418101014618 +143650,718.2500000040726,-0.05530413978088797 +143651,718.2550000040727,-0.05530409854986328 +143652,718.2600000040728,-0.05530405731707204 +143653,718.2650000040729,-0.05530401608251415 +143654,718.270000004073,-0.05530397484618955 +143655,718.2750000040731,-0.05530393360809812 +143656,718.2800000040733,-0.0553038923682398 +143657,718.2850000040734,-0.055303851126614505 +143658,718.2900000040735,-0.05530380988322213 +143659,718.2950000040736,-0.055303768638062606 +143660,718.3000000040737,-0.05530372739113585 +143661,718.3050000040738,-0.05530368614244178 +143662,718.3100000040739,-0.05530364489198029 +143663,718.315000004074,-0.0553036036397513 +143664,718.3200000040741,-0.05530356238575475 +143665,718.3250000040742,-0.05530352112999051 +143666,718.3300000040743,-0.05530347987245854 +143667,718.3350000040745,-0.055303438613158735 +143668,718.3400000040746,-0.05530339735209101 +143669,718.3450000040747,-0.055303356089255275 +143670,718.3500000040748,-0.05530331482465145 +143671,718.3550000040749,-0.05530327355827946 +143672,718.360000004075,-0.055303232290139205 +143673,718.3650000040751,-0.05530319102023062 +143674,718.3700000040752,-0.0553031497485536 +143675,718.3750000040753,-0.05530310847510806 +143676,718.3800000040754,-0.05530306719989393 +143677,718.3850000040756,-0.05530302592291112 +143678,718.3900000040757,-0.05530298464415955 +143679,718.3950000040758,-0.05530294336363913 +143680,718.4000000040759,-0.055302902081349775 +143681,718.405000004076,-0.05530286079729139 +143682,718.4100000040761,-0.05530281951146391 +143683,718.4150000040762,-0.055302778223867234 +143684,718.4200000040763,-0.0553027369345013 +143685,718.4250000040764,-0.05530269564336599 +143686,718.4300000040765,-0.05530265435046126 +143687,718.4350000040766,-0.055302613055786994 +143688,718.4400000040768,-0.05530257175934311 +143689,718.4450000040769,-0.05530253046112954 +143690,718.450000004077,-0.05530248916114618 +143691,718.4550000040771,-0.05530244785939297 +143692,718.4600000040772,-0.05530240655586981 +143693,718.4650000040773,-0.055302365250576614 +143694,718.4700000040774,-0.05530232394351332 +143695,718.4750000040775,-0.05530228263467982 +143696,718.4800000040776,-0.055302241324076025 +143697,718.4850000040777,-0.05530220001170187 +143698,718.4900000040778,-0.05530215869755726 +143699,718.495000004078,-0.05530211738164212 +143700,718.5000000040781,-0.05530207606395637 +143701,718.5050000040782,-0.055302034744499906 +143702,718.5100000040783,-0.05530199342327266 +143703,718.5150000040784,-0.05530195210027455 +143704,718.5200000040785,-0.055301910775505475 +143705,718.5250000040786,-0.05530186944896536 +143706,718.5300000040787,-0.05530182812065414 +143707,718.5350000040788,-0.0553017867905717 +143708,718.5400000040789,-0.05530174545871797 +143709,718.545000004079,-0.05530170412509288 +143710,718.5500000040792,-0.05530166278969634 +143711,718.5550000040793,-0.05530162145252825 +143712,718.5600000040794,-0.055301580113588544 +143713,718.5650000040795,-0.05530153877287713 +143714,718.5700000040796,-0.05530149743039393 +143715,718.5750000040797,-0.055301456086138845 +143716,718.5800000040798,-0.05530141474011181 +143717,718.5850000040799,-0.05530137339231274 +143718,718.59000000408,-0.05530133204274155 +143719,718.5950000040801,-0.05530129069139815 +143720,718.6000000040802,-0.05530124933828246 +143721,718.6050000040804,-0.05530120798339439 +143722,718.6100000040805,-0.05530116662673387 +143723,718.6150000040806,-0.055301125268300826 +143724,718.6200000040807,-0.05530108390809514 +143725,718.6250000040808,-0.05530104254611675 +143726,718.6300000040809,-0.05530100118236558 +143727,718.635000004081,-0.05530095981684154 +143728,718.6400000040811,-0.05530091844954454 +143729,718.6450000040812,-0.05530087708047451 +143730,718.6500000040813,-0.05530083570963136 +143731,718.6550000040814,-0.055300794337015007 +143732,718.6600000040816,-0.05530075296262537 +143733,718.6650000040817,-0.05530071158646236 +143734,718.6700000040818,-0.0553006702085259 +143735,718.6750000040819,-0.0553006288288159 +143736,718.680000004082,-0.055300587447332294 +143737,718.6850000040821,-0.05530054606407498 +143738,718.6900000040822,-0.0553005046790439 +143739,718.6950000040823,-0.05530046329223894 +143740,718.7000000040824,-0.05530042190366005 +143741,718.7050000040825,-0.05530038051330712 +143742,718.7100000040826,-0.05530033912118008 +143743,718.7150000040828,-0.055300297727278847 +143744,718.7200000040829,-0.055300256331603334 +143745,718.725000004083,-0.05530021493415348 +143746,718.7300000040831,-0.05530017353492916 +143747,718.7350000040832,-0.05530013213393032 +143748,718.7400000040833,-0.05530009073115689 +143749,718.7450000040834,-0.05530004932660876 +143750,718.7500000040835,-0.05530000792028587 +143751,718.7550000040836,-0.05529996651218811 +143752,718.7600000040837,-0.05529992510231543 +143753,718.7650000040838,-0.055299883690667725 +143754,718.770000004084,-0.05529984227724492 +143755,718.7750000040841,-0.05529980086204694 +143756,718.7800000040842,-0.05529975944507369 +143757,718.7850000040843,-0.0552997180263251 +143758,718.7900000040844,-0.05529967660580108 +143759,718.7950000040845,-0.055299635183501554 +143760,718.8000000040846,-0.05529959375942643 +143761,718.8050000040847,-0.055299552333575634 +143762,718.8100000040848,-0.05529951090594909 +143763,718.8150000040849,-0.05529946947654671 +143764,718.820000004085,-0.0552994280453684 +143765,718.8250000040852,-0.0552993866124141 +143766,718.8300000040853,-0.05529934517768371 +143767,718.8350000040854,-0.055299303741177155 +143768,718.8400000040855,-0.055299262302894364 +143769,718.8450000040856,-0.055299220862835244 +143770,718.8500000040857,-0.05529917942099971 +143771,718.8550000040858,-0.05529913797738769 +143772,718.8600000040859,-0.055299096531999097 +143773,718.865000004086,-0.055299055084833855 +143774,718.8700000040861,-0.05529901363589187 +143775,718.8750000040862,-0.05529897218517307 +143776,718.8800000040864,-0.05529893073267738 +143777,718.8850000040865,-0.0552988892784047 +143778,718.8900000040866,-0.055298847822354974 +143779,718.8950000040867,-0.055298806364528094 +143780,718.9000000040868,-0.05529876490492398 +143781,718.9050000040869,-0.055298723443542586 +143782,718.910000004087,-0.05529868198038379 +143783,718.9150000040871,-0.055298640515447535 +143784,718.9200000040872,-0.055298599048733736 +143785,718.9250000040873,-0.055298557580242304 +143786,718.9300000040874,-0.05529851610997317 +143787,718.9350000040876,-0.05529847463792623 +143788,718.9400000040877,-0.05529843316410143 +143789,718.9450000040878,-0.05529839168849867 +143790,718.9500000040879,-0.055298350211117876 +143791,718.955000004088,-0.05529830873195897 +143792,718.9600000040881,-0.05529826725102187 +143793,718.9650000040882,-0.055298225768306494 +143794,718.9700000040883,-0.05529818428381276 +143795,718.9750000040884,-0.05529814279754058 +143796,718.9800000040885,-0.05529810130948988 +143797,718.9850000040886,-0.05529805981966058 +143798,718.9900000040888,-0.05529801832805261 +143799,718.9950000040889,-0.05529797683466588 +143800,719.000000004089,-0.0552979353395003 +143801,719.0050000040891,-0.0552978938425558 +143802,719.0100000040892,-0.05529785234383229 +143803,719.0150000040893,-0.0552978108433297 +143804,719.0200000040894,-0.05529776934104794 +143805,719.0250000040895,-0.055297727836986936 +143806,719.0300000040896,-0.05529768633114661 +143807,719.0350000040897,-0.05529764482352688 +143808,719.0400000040898,-0.05529760331412767 +143809,719.04500000409,-0.05529756180294889 +143810,719.0500000040901,-0.05529752028999046 +143811,719.0550000040902,-0.055297478775252304 +143812,719.0600000040903,-0.05529743725873434 +143813,719.0650000040904,-0.05529739574043649 +143814,719.0700000040905,-0.055297354220358655 +143815,719.0750000040906,-0.05529731269850079 +143816,719.0800000040907,-0.055297271174862786 +143817,719.0850000040908,-0.05529722964944458 +143818,719.0900000040909,-0.055297188122246085 +143819,719.095000004091,-0.05529714659326722 +143820,719.1000000040912,-0.055297105062507915 +143821,719.1050000040913,-0.05529706352996807 +143822,719.1100000040914,-0.05529702199564763 +143823,719.1150000040915,-0.055296980459546494 +143824,719.1200000040916,-0.055296938921664575 +143825,719.1250000040917,-0.05529689738200182 +143826,719.1300000040918,-0.055296855840558136 +143827,719.1350000040919,-0.05529681429733344 +143828,719.140000004092,-0.05529677275232767 +143829,719.1450000040921,-0.055296731205540725 +143830,719.1500000040922,-0.055296689656972535 +143831,719.1550000040924,-0.05529664810662301 +143832,719.1600000040925,-0.05529660655449209 +143833,719.1650000040926,-0.055296565000579674 +143834,719.1700000040927,-0.05529652344488569 +143835,719.1750000040928,-0.05529648188741007 +143836,719.1800000040929,-0.05529644032815273 +143837,719.185000004093,-0.05529639876711357 +143838,719.1900000040931,-0.05529635720429253 +143839,719.1950000040932,-0.05529631563968954 +143840,719.2000000040933,-0.0552962740733045 +143841,719.2050000040934,-0.05529623250513734 +143842,719.2100000040936,-0.05529619093518798 +143843,719.2150000040937,-0.05529614936345634 +143844,719.2200000040938,-0.055296107789942324 +143845,719.2250000040939,-0.055296066214645875 +143846,719.230000004094,-0.055296024637566915 +143847,719.2350000040941,-0.05529598305870536 +143848,719.2400000040942,-0.05529594147806113 +143849,719.2450000040943,-0.05529589989563414 +143850,719.2500000040944,-0.05529585831142431 +143851,719.2550000040945,-0.05529581672543157 +143852,719.2600000040946,-0.05529577513765582 +143853,719.2650000040948,-0.05529573354809702 +143854,719.2700000040949,-0.055295691956755065 +143855,719.275000004095,-0.05529565036362988 +143856,719.2800000040951,-0.05529560876872138 +143857,719.2850000040952,-0.05529556717202949 +143858,719.2900000040953,-0.05529552557355415 +143859,719.2950000040954,-0.05529548397329525 +143860,719.3000000040955,-0.05529544237125274 +143861,719.3050000040956,-0.05529540076742651 +143862,719.3100000040957,-0.05529535916181651 +143863,719.3150000040959,-0.055295317554422636 +143864,719.320000004096,-0.05529527594524484 +143865,719.3250000040961,-0.055295234334283024 +143866,719.3300000040962,-0.05529519272153711 +143867,719.3350000040963,-0.055295151107007015 +143868,719.3400000040964,-0.05529510949069267 +143869,719.3450000040965,-0.05529506787259399 +143870,719.3500000040966,-0.0552950262527109 +143871,719.3550000040967,-0.05529498463104332 +143872,719.3600000040968,-0.05529494300759117 +143873,719.3650000040969,-0.055294901382354385 +143874,719.370000004097,-0.05529485975533287 +143875,719.3750000040972,-0.05529481812652655 +143876,719.3800000040973,-0.05529477649593535 +143877,719.3850000040974,-0.0552947348635592 +143878,719.3900000040975,-0.055294693229398006 +143879,719.3950000040976,-0.055294651593451705 +143880,719.4000000040977,-0.055294609955720206 +143881,719.4050000040978,-0.05529456831620344 +143882,719.4100000040979,-0.05529452667490132 +143883,719.415000004098,-0.055294485031813764 +143884,719.4200000040981,-0.055294443386940714 +143885,719.4250000040983,-0.05529440174028207 +143886,719.4300000040984,-0.055294360091837774 +143887,719.4350000040985,-0.05529431844160773 +143888,719.4400000040986,-0.055294276789591874 +143889,719.4450000040987,-0.05529423513579012 +143890,719.4500000040988,-0.0552941934802024 +143891,719.4550000040989,-0.055294151822828624 +143892,719.460000004099,-0.05529411016366872 +143893,719.4650000040991,-0.05529406850272261 +143894,719.4700000040992,-0.05529402683999021 +143895,719.4750000040993,-0.05529398517547145 +143896,719.4800000040995,-0.05529394350916624 +143897,719.4850000040996,-0.055293901841074515 +143898,719.4900000040997,-0.0552938601711962 +143899,719.4950000040998,-0.055293818499531217 +143900,719.5000000040999,-0.05529377682607948 +143901,719.5050000041,-0.05529373515084092 +143902,719.5100000041001,-0.05529369347381545 +143903,719.5150000041002,-0.055293651795003 +143904,719.5200000041003,-0.055293610114403494 +143905,719.5250000041004,-0.05529356843201684 +143906,719.5300000041005,-0.05529352674784298 +143907,719.5350000041007,-0.05529348506188181 +143908,719.5400000041008,-0.05529344337413328 +143909,719.5450000041009,-0.0552934016845973 +143910,719.550000004101,-0.0552933599932738 +143911,719.5550000041011,-0.055293318300162694 +143912,719.5600000041012,-0.05529327660526391 +143913,719.5650000041013,-0.05529323490857738 +143914,719.5700000041014,-0.055293193210103 +143915,719.5750000041015,-0.05529315150984071 +143916,719.5800000041016,-0.055293109807790446 +143917,719.5850000041017,-0.05529306810395211 +143918,719.5900000041019,-0.05529302639832564 +143919,719.595000004102,-0.05529298469091094 +143920,719.6000000041021,-0.055292942981707956 +143921,719.6050000041022,-0.0552929012707166 +143922,719.6100000041023,-0.055292859557936794 +143923,719.6150000041024,-0.05529281784336845 +143924,719.6200000041025,-0.05529277612701152 +143925,719.6250000041026,-0.055292734408865896 +143926,719.6300000041027,-0.05529269268893153 +143927,719.6350000041028,-0.05529265096720832 +143928,719.640000004103,-0.05529260924369621 +143929,719.645000004103,-0.055292567518395105 +143930,719.6500000041032,-0.05529252579130494 +143931,719.6550000041033,-0.05529248406242563 +143932,719.6600000041034,-0.055292442331757105 +143933,719.6650000041035,-0.05529240059929929 +143934,719.6700000041036,-0.05529235886505209 +143935,719.6750000041037,-0.05529231712901546 +143936,719.6800000041038,-0.055292275391189305 +143937,719.6850000041039,-0.055292233651573555 +143938,719.690000004104,-0.05529219191016813 +143939,719.6950000041041,-0.05529215016697295 +143940,719.7000000041043,-0.05529210842198794 +143941,719.7050000041044,-0.055292066675213025 +143942,719.7100000041045,-0.05529202492664813 +143943,719.7150000041046,-0.05529198317629317 +143944,719.7200000041047,-0.055291941424148096 +143945,719.7250000041048,-0.0552918996702128 +143946,719.7300000041049,-0.05529185791448722 +143947,719.735000004105,-0.055291816156971284 +143948,719.7400000041051,-0.055291774397664896 +143949,719.7450000041052,-0.055291732636568 +143950,719.7500000041053,-0.05529169087368051 +143951,719.7550000041055,-0.05529164910900237 +143952,719.7600000041056,-0.055291607342533466 +143953,719.7650000041057,-0.05529156557427376 +143954,719.7700000041058,-0.05529152380422316 +143955,719.7750000041059,-0.05529148203238158 +143956,719.780000004106,-0.055291440258748964 +143957,719.7850000041061,-0.055291398483325226 +143958,719.7900000041062,-0.05529135670611028 +143959,719.7950000041063,-0.05529131492710407 +143960,719.8000000041064,-0.05529127314630651 +143961,719.8050000041065,-0.05529123136371752 +143962,719.8100000041067,-0.05529118957933703 +143963,719.8150000041068,-0.05529114779316497 +143964,719.8200000041069,-0.05529110600520124 +143965,719.825000004107,-0.0552910642154458 +143966,719.8300000041071,-0.05529102242389856 +143967,719.8350000041072,-0.055290980630559435 +143968,719.8400000041073,-0.05529093883542835 +143969,719.8450000041074,-0.05529089703850524 +143970,719.8500000041075,-0.05529085523979002 +143971,719.8550000041076,-0.05529081343928262 +143972,719.8600000041077,-0.05529077163698297 +143973,719.8650000041079,-0.05529072983289099 +143974,719.870000004108,-0.055290688027006596 +143975,719.8750000041081,-0.05529064621932972 +143976,719.8800000041082,-0.05529060440986028 +143977,719.8850000041083,-0.055290562598598214 +143978,719.8900000041084,-0.05529052078554345 +143979,719.8950000041085,-0.0552904789706959 +143980,719.9000000041086,-0.05529043715405548 +143981,719.9050000041087,-0.05529039533562214 +143982,719.9100000041088,-0.05529035351539578 +143983,719.915000004109,-0.05529031169337634 +143984,719.920000004109,-0.05529026986956374 +143985,719.9250000041092,-0.05529022804395791 +143986,719.9300000041093,-0.05529018621655877 +143987,719.9350000041094,-0.05529014438736624 +143988,719.9400000041095,-0.05529010255638026 +143989,719.9450000041096,-0.055290060723600744 +143990,719.9500000041097,-0.055290018889027626 +143991,719.9550000041098,-0.05528997705266082 +143992,719.9600000041099,-0.05528993521450025 +143993,719.96500000411,-0.05528989337454586 +143994,719.9700000041101,-0.05528985153279756 +143995,719.9750000041103,-0.055289809689255266 +143996,719.9800000041104,-0.055289767843918924 +143997,719.9850000041105,-0.05528972599678845 +143998,719.9900000041106,-0.05528968414786377 +143999,719.9950000041107,-0.055289642297144795 +144000,720.0000000041108,-0.05528960044463148 +144001,720.0050000041109,-0.05528955859032372 +144002,720.010000004111,-0.055289516734221465 +144003,720.0150000041111,-0.055289474876324636 +144004,720.0200000041112,-0.05528943301663314 +144005,720.0250000041113,-0.05528939115514693 +144006,720.0300000041115,-0.05528934929186591 +144007,720.0350000041116,-0.05528930742679 +144008,720.0400000041117,-0.05528926555991916 +144009,720.0450000041118,-0.05528922369125328 +144010,720.0500000041119,-0.05528918182079231 +144011,720.055000004112,-0.05528913994853616 +144012,720.0600000041121,-0.05528909807448477 +144013,720.0650000041122,-0.055289056198638054 +144014,720.0700000041123,-0.055289014320995936 +144015,720.0750000041124,-0.055288972441558344 +144016,720.0800000041125,-0.05528893056032522 +144017,720.0850000041127,-0.055288888677296456 +144018,720.0900000041128,-0.055288846792472014 +144019,720.0950000041129,-0.05528880490585181 +144020,720.100000004113,-0.05528876301743576 +144021,720.1050000041131,-0.05528872112722378 +144022,720.1100000041132,-0.055288679235215826 +144023,720.1150000041133,-0.0552886373414118 +144024,720.1200000041134,-0.05528859544581164 +144025,720.1250000041135,-0.05528855354841527 +144026,720.1300000041136,-0.05528851164922261 +144027,720.1350000041137,-0.05528846974823359 +144028,720.1400000041139,-0.05528842784544816 +144029,720.145000004114,-0.05528838594086621 +144030,720.1500000041141,-0.05528834403448768 +144031,720.1550000041142,-0.055288302126312486 +144032,720.1600000041143,-0.055288260216340576 +144033,720.1650000041144,-0.05528821830457186 +144034,720.1700000041145,-0.05528817639100628 +144035,720.1750000041146,-0.05528813447564374 +144036,720.1800000041147,-0.05528809255848418 +144037,720.1850000041148,-0.055288050639527526 +144038,720.190000004115,-0.055288008718773714 +144039,720.1950000041151,-0.05528796679622265 +144040,720.2000000041152,-0.05528792487187427 +144041,720.2050000041153,-0.0552878829457285 +144042,720.2100000041154,-0.05528784101778527 +144043,720.2150000041155,-0.05528779908804451 +144044,720.2200000041156,-0.055287757156506134 +144045,720.2250000041157,-0.05528771522317007 +144046,720.2300000041158,-0.055287673288036264 +144047,720.2350000041159,-0.05528763135110462 +144048,720.240000004116,-0.055287589412375084 +144049,720.2450000041162,-0.05528754747184756 +144050,720.2500000041163,-0.055287505529521996 +144051,720.2550000041164,-0.0552874635853983 +144052,720.2600000041165,-0.05528742163947642 +144053,720.2650000041166,-0.055287379691756275 +144054,720.2700000041167,-0.055287337742237784 +144055,720.2750000041168,-0.05528729579092088 +144056,720.2800000041169,-0.05528725383780548 +144057,720.285000004117,-0.05528721188289153 +144058,720.2900000041171,-0.05528716992617895 +144059,720.2950000041172,-0.05528712796766766 +144060,720.3000000041174,-0.055287086007357586 +144061,720.3050000041175,-0.055287044045248666 +144062,720.3100000041176,-0.05528700208134082 +144063,720.3150000041177,-0.05528696011563398 +144064,720.3200000041178,-0.05528691814812807 +144065,720.3250000041179,-0.055286876178823025 +144066,720.330000004118,-0.05528683420771876 +144067,720.3350000041181,-0.055286792234815196 +144068,720.3400000041182,-0.05528675026011229 +144069,720.3450000041183,-0.05528670828360994 +144070,720.3500000041184,-0.05528666630530809 +144071,720.3550000041186,-0.05528662432520666 +144072,720.3600000041187,-0.055286582343305586 +144073,720.3650000041188,-0.05528654035960477 +144074,720.3700000041189,-0.05528649837410417 +144075,720.375000004119,-0.055286456386803705 +144076,720.3800000041191,-0.0552864143977033 +144077,720.3850000041192,-0.05528637240680288 +144078,720.3900000041193,-0.05528633041410238 +144079,720.3950000041194,-0.05528628841960172 +144080,720.4000000041195,-0.05528624642330082 +144081,720.4050000041196,-0.05528620442519963 +144082,720.4100000041198,-0.05528616242529806 +144083,720.4150000041199,-0.05528612042359605 +144084,720.42000000412,-0.05528607842009352 +144085,720.4250000041201,-0.055286036414790386 +144086,720.4300000041202,-0.055285994407686605 +144087,720.4350000041203,-0.05528595239878209 +144088,720.4400000041204,-0.05528591038807676 +144089,720.4450000041205,-0.05528586837557055 +144090,720.4500000041206,-0.05528582636126339 +144091,720.4550000041207,-0.05528578434515521 +144092,720.4600000041208,-0.05528574232724593 +144093,720.465000004121,-0.055285700307535476 +144094,720.4700000041211,-0.0552856582860238 +144095,720.4750000041212,-0.05528561626271082 +144096,720.4800000041213,-0.05528557423759644 +144097,720.4850000041214,-0.0552855322106806 +144098,720.4900000041215,-0.05528549018196324 +144099,720.4950000041216,-0.05528544815144429 +144100,720.5000000041217,-0.055285406119123665 +144101,720.5050000041218,-0.05528536408500131 +144102,720.5100000041219,-0.05528532204907712 +144103,720.515000004122,-0.055285280011351065 +144104,720.5200000041222,-0.05528523797182304 +144105,720.5250000041223,-0.05528519593049299 +144106,720.5300000041224,-0.05528515388736085 +144107,720.5350000041225,-0.05528511184242653 +144108,720.5400000041226,-0.05528506979568998 +144109,720.5450000041227,-0.055285027747151105 +144110,720.5500000041228,-0.05528498569680984 +144111,720.5550000041229,-0.05528494364466613 +144112,720.560000004123,-0.05528490159071989 +144113,720.5650000041231,-0.05528485953497103 +144114,720.5700000041232,-0.05528481747741953 +144115,720.5750000041234,-0.055284775418065264 +144116,720.5800000041235,-0.05528473335690819 +144117,720.5850000041236,-0.05528469129394823 +144118,720.5900000041237,-0.05528464922918532 +144119,720.5950000041238,-0.05528460716261938 +144120,720.6000000041239,-0.05528456509425034 +144121,720.605000004124,-0.05528452302407813 +144122,720.6100000041241,-0.055284480952102685 +144123,720.6150000041242,-0.055284438878323926 +144124,720.6200000041243,-0.05528439680274178 +144125,720.6250000041244,-0.05528435472535618 +144126,720.6300000041246,-0.05528431264616705 +144127,720.6350000041247,-0.05528427056517434 +144128,720.6400000041248,-0.055284228482377955 +144129,720.6450000041249,-0.05528418639777783 +144130,720.650000004125,-0.05528414431137389 +144131,720.6550000041251,-0.05528410222316608 +144132,720.6600000041252,-0.05528406013315432 +144133,720.6650000041253,-0.05528401804133853 +144134,720.6700000041254,-0.055283975947718646 +144135,720.6750000041255,-0.05528393385229461 +144136,720.6800000041256,-0.05528389175506634 +144137,720.6850000041258,-0.05528384965603375 +144138,720.6900000041259,-0.0552838075551968 +144139,720.695000004126,-0.0552837654525554 +144140,720.7000000041261,-0.05528372334810949 +144141,720.7050000041262,-0.055283681241858985 +144142,720.7100000041263,-0.05528363913380383 +144143,720.7150000041264,-0.05528359702394394 +144144,720.7200000041265,-0.05528355491227926 +144145,720.7250000041266,-0.0552835127988097 +144146,720.7300000041267,-0.0552834706835352 +144147,720.7350000041268,-0.0552834285664557 +144148,720.740000004127,-0.0552833864475711 +144149,720.7450000041271,-0.05528334432688136 +144150,720.7500000041272,-0.0552833022043864 +144151,720.7550000041273,-0.055283260080086154 +144152,720.7600000041274,-0.05528321795398054 +144153,720.7650000041275,-0.055283175826069494 +144154,720.7700000041276,-0.05528313369635295 +144155,720.7750000041277,-0.05528309156483083 +144156,720.7800000041278,-0.05528304943150308 +144157,720.7850000041279,-0.055283007296369605 +144158,720.790000004128,-0.05528296515943035 +144159,720.7950000041282,-0.055282923020685236 +144160,720.8000000041283,-0.0552828808801342 +144161,720.8050000041284,-0.055282838737777173 +144162,720.8100000041285,-0.055282796593614084 +144163,720.8150000041286,-0.05528275444764486 +144164,720.8200000041287,-0.05528271229986943 +144165,720.8250000041288,-0.05528267015028773 +144166,720.8300000041289,-0.055282627998899686 +144167,720.835000004129,-0.05528258584570523 +144168,720.8400000041291,-0.05528254369070429 +144169,720.8450000041292,-0.05528250153389679 +144170,720.8500000041294,-0.055282459375282686 +144171,720.8550000041295,-0.05528241721486188 +144172,720.8600000041296,-0.05528237505263431 +144173,720.8650000041297,-0.05528233288859991 +144174,720.8700000041298,-0.05528229072275862 +144175,720.8750000041299,-0.055282248555110346 +144176,720.88000000413,-0.05528220638565503 +144177,720.8850000041301,-0.05528216421439261 +144178,720.8900000041302,-0.05528212204132301 +144179,720.8950000041303,-0.055282079866446156 +144180,720.9000000041304,-0.055282037689761976 +144181,720.9050000041306,-0.05528199551127042 +144182,720.9100000041307,-0.055281953330971405 +144183,720.9150000041308,-0.05528191114886487 +144184,720.9200000041309,-0.05528186896495072 +144185,720.925000004131,-0.05528182677922891 +144186,720.9300000041311,-0.055281784591699364 +144187,720.9350000041312,-0.055281742402362014 +144188,720.9400000041313,-0.05528170021121679 +144189,720.9450000041314,-0.05528165801826362 +144190,720.9500000041315,-0.05528161582350244 +144191,720.9550000041316,-0.055281573626933166 +144192,720.9600000041318,-0.055281531428555755 +144193,720.9650000041319,-0.05528148922837012 +144194,720.970000004132,-0.0552814470263762 +144195,720.9750000041321,-0.05528140482257392 +144196,720.9800000041322,-0.05528136261696321 +144197,720.9850000041323,-0.055281320409544 +144198,720.9900000041324,-0.055281278200316225 +144199,720.9950000041325,-0.05528123598927981 +144200,721.0000000041326,-0.055281193776434694 +144201,721.0050000041327,-0.0552811515617808 +144202,721.0100000041328,-0.055281109345318075 +144203,721.015000004133,-0.055281067127046425 +144204,721.0200000041331,-0.05528102490696581 +144205,721.0250000041332,-0.05528098268507614 +144206,721.0300000041333,-0.055280940461377354 +144207,721.0350000041334,-0.05528089823586939 +144208,721.0400000041335,-0.05528085600855216 +144209,721.0450000041336,-0.05528081377942561 +144210,721.0500000041337,-0.05528077154848967 +144211,721.0550000041338,-0.05528072931574427 +144212,721.0600000041339,-0.05528068708118933 +144213,721.065000004134,-0.05528064484482479 +144214,721.0700000041342,-0.05528060260665059 +144215,721.0750000041343,-0.05528056036666665 +144216,721.0800000041344,-0.05528051812487291 +144217,721.0850000041345,-0.055280475881269296 +144218,721.0900000041346,-0.05528043363585575 +144219,721.0950000041347,-0.05528039138863218 +144220,721.1000000041348,-0.05528034913959854 +144221,721.1050000041349,-0.05528030688875475 +144222,721.110000004135,-0.05528026463610074 +144223,721.1150000041351,-0.05528022238163645 +144224,721.1200000041352,-0.05528018012536181 +144225,721.1250000041354,-0.05528013786727675 +144226,721.1300000041355,-0.0552800956073812 +144227,721.1350000041356,-0.05528005334567509 +144228,721.1400000041357,-0.05528001108215835 +144229,721.1450000041358,-0.05527996881683093 +144230,721.1500000041359,-0.05527992654969275 +144231,721.155000004136,-0.05527988428074373 +144232,721.1600000041361,-0.05527984200998381 +144233,721.1650000041362,-0.055279799737412934 +144234,721.1700000041363,-0.05527975746303102 +144235,721.1750000041365,-0.055279715186838004 +144236,721.1800000041366,-0.055279672908833816 +144237,721.1850000041367,-0.05527963062901839 +144238,721.1900000041368,-0.055279588347391655 +144239,721.1950000041369,-0.05527954606395355 +144240,721.200000004137,-0.055279503778704 +144241,721.2050000041371,-0.05527946149164294 +144242,721.2100000041372,-0.0552794192027703 +144243,721.2150000041373,-0.05527937691208601 +144244,721.2200000041374,-0.05527933461959002 +144245,721.2250000041375,-0.055279292325282246 +144246,721.2300000041377,-0.05527925002916261 +144247,721.2350000041378,-0.05527920773123107 +144248,721.2400000041379,-0.055279165431487545 +144249,721.245000004138,-0.05527912312993196 +144250,721.2500000041381,-0.055279080826564256 +144251,721.2550000041382,-0.05527903852138437 +144252,721.2600000041383,-0.05527899621439222 +144253,721.2650000041384,-0.055278953905587756 +144254,721.2700000041385,-0.05527891159497089 +144255,721.2750000041386,-0.05527886928254158 +144256,721.2800000041387,-0.05527882696829974 +144257,721.2850000041389,-0.05527878465224531 +144258,721.290000004139,-0.05527874233437821 +144259,721.2950000041391,-0.05527870001469839 +144260,721.3000000041392,-0.05527865769320577 +144261,721.3050000041393,-0.055278615369900294 +144262,721.3100000041394,-0.05527857304478188 +144263,721.3150000041395,-0.05527853071785047 +144264,721.3200000041396,-0.055278488389106005 +144265,721.3250000041397,-0.0552784460585484 +144266,721.3300000041398,-0.05527840372617759 +144267,721.3350000041399,-0.05527836139199351 +144268,721.34000000414,-0.05527831905599611 +144269,721.3450000041402,-0.0552782767181853 +144270,721.3500000041403,-0.055278234378561025 +144271,721.3550000041404,-0.05527819203712322 +144272,721.3600000041405,-0.05527814969387181 +144273,721.3650000041406,-0.055278107348806726 +144274,721.3700000041407,-0.05527806500192792 +144275,721.3750000041408,-0.055278022653235295 +144276,721.3800000041409,-0.055277980302728805 +144277,721.385000004141,-0.055277937950408376 +144278,721.3900000041411,-0.05527789559627394 +144279,721.3950000041413,-0.05527785324032543 +144280,721.4000000041414,-0.05527781088256279 +144281,721.4050000041415,-0.05527776852298595 +144282,721.4100000041416,-0.05527772616159483 +144283,721.4150000041417,-0.055277683798389377 +144284,721.4200000041418,-0.05527764143336951 +144285,721.4250000041419,-0.05527759906653518 +144286,721.430000004142,-0.055277556697886296 +144287,721.4350000041421,-0.055277514327422825 +144288,721.4400000041422,-0.05527747195514468 +144289,721.4450000041423,-0.05527742958105179 +144290,721.4500000041425,-0.05527738720514409 +144291,721.4550000041426,-0.05527734482742153 +144292,721.4600000041427,-0.05527730244788403 +144293,721.4650000041428,-0.05527726006653151 +144294,721.4700000041429,-0.05527721768336393 +144295,721.475000004143,-0.05527717529838121 +144296,721.4800000041431,-0.05527713291158328 +144297,721.4850000041432,-0.055277090522970085 +144298,721.4900000041433,-0.05527704813254155 +144299,721.4950000041434,-0.05527700574029761 +144300,721.5000000041435,-0.0552769633462382 +144301,721.5050000041437,-0.05527692095036326 +144302,721.5100000041438,-0.055276878552672715 +144303,721.5150000041439,-0.0552768361531665 +144304,721.520000004144,-0.05527679375184455 +144305,721.5250000041441,-0.0552767513487068 +144306,721.5300000041442,-0.05527670894375318 +144307,721.5350000041443,-0.055276666536983626 +144308,721.5400000041444,-0.05527662412839807 +144309,721.5450000041445,-0.05527658171799645 +144310,721.5500000041446,-0.0552765393057787 +144311,721.5550000041447,-0.05527649689174474 +144312,721.5600000041449,-0.05527645447589453 +144313,721.565000004145,-0.055276412058227975 +144314,721.5700000041451,-0.05527636963874503 +144315,721.5750000041452,-0.05527632721744561 +144316,721.5800000041453,-0.05527628479432967 +144317,721.5850000041454,-0.05527624236939714 +144318,721.5900000041455,-0.05527619994264795 +144319,721.5950000041456,-0.05527615751408203 +144320,721.6000000041457,-0.055276115083699326 +144321,721.6050000041458,-0.05527607265149976 +144322,721.610000004146,-0.05527603021748327 +144323,721.615000004146,-0.05527598778164979 +144324,721.6200000041462,-0.05527594534399925 +144325,721.6250000041463,-0.05527590290453159 +144326,721.6300000041464,-0.05527586046324674 +144327,721.6350000041465,-0.05527581802014464 +144328,721.6400000041466,-0.05527577557522523 +144329,721.6450000041467,-0.05527573312848843 +144330,721.6500000041468,-0.055275690679934174 +144331,721.6550000041469,-0.05527564822956241 +144332,721.660000004147,-0.05527560577737306 +144333,721.6650000041471,-0.055275563323366056 +144334,721.6700000041473,-0.055275520867541346 +144335,721.6750000041474,-0.05527547840989887 +144336,721.6800000041475,-0.05527543595043854 +144337,721.6850000041476,-0.05527539348916031 +144338,721.6900000041477,-0.0552753510260641 +144339,721.6950000041478,-0.05527530856114986 +144340,721.7000000041479,-0.055275266094417505 +144341,721.705000004148,-0.05527522362586699 +144342,721.7100000041481,-0.05527518115549823 +144343,721.7150000041482,-0.05527513868331117 +144344,721.7200000041483,-0.05527509620930574 +144345,721.7250000041485,-0.0552750537334819 +144346,721.7300000041486,-0.05527501125583956 +144347,721.7350000041487,-0.055274968776378657 +144348,721.7400000041488,-0.05527492629509912 +144349,721.7450000041489,-0.055274883812000894 +144350,721.750000004149,-0.05527484132708392 +144351,721.7550000041491,-0.05527479884034811 +144352,721.7600000041492,-0.05527475635179343 +144353,721.7650000041493,-0.055274713861419786 +144354,721.7700000041494,-0.055274671369227125 +144355,721.7750000041495,-0.055274628875215386 +144356,721.7800000041497,-0.055274586379384504 +144357,721.7850000041498,-0.0552745438817344 +144358,721.7900000041499,-0.05527450138226503 +144359,721.79500000415,-0.05527445888097631 +144360,721.8000000041501,-0.055274416377868195 +144361,721.8050000041502,-0.0552743738729406 +144362,721.8100000041503,-0.05527433136619348 +144363,721.8150000041504,-0.05527428885762676 +144364,721.8200000041505,-0.05527424634724037 +144365,721.8250000041506,-0.055274203835034244 +144366,721.8300000041507,-0.05527416132100832 +144367,721.8350000041509,-0.055274118805162545 +144368,721.840000004151,-0.05527407628749686 +144369,721.8450000041511,-0.05527403376801117 +144370,721.8500000041512,-0.05527399124670542 +144371,721.8550000041513,-0.05527394872357957 +144372,721.8600000041514,-0.055273906198633524 +144373,721.8650000041515,-0.05527386367186725 +144374,721.8700000041516,-0.05527382114328066 +144375,721.8750000041517,-0.055273778612873685 +144376,721.8800000041518,-0.05527373608064627 +144377,721.885000004152,-0.055273693546598356 +144378,721.8900000041521,-0.05527365101072987 +144379,721.8950000041522,-0.055273608473040754 +144380,721.9000000041523,-0.05527356593353094 +144381,721.9050000041524,-0.05527352339220036 +144382,721.9100000041525,-0.05527348084904895 +144383,721.9150000041526,-0.05527343830407665 +144384,721.9200000041527,-0.0552733957572834 +144385,721.9250000041528,-0.05527335320866912 +144386,721.9300000041529,-0.05527331065823377 +144387,721.935000004153,-0.05527326810597727 +144388,721.9400000041531,-0.055273225551899556 +144389,721.9450000041533,-0.05527318299600057 +144390,721.9500000041534,-0.05527314043828025 +144391,721.9550000041535,-0.05527309787873853 +144392,721.9600000041536,-0.05527305531737532 +144393,721.9650000041537,-0.05527301275419059 +144394,721.9700000041538,-0.05527297018918426 +144395,721.9750000041539,-0.05527292762235628 +144396,721.980000004154,-0.055272885053706575 +144397,721.9850000041541,-0.05527284248323508 +144398,721.9900000041542,-0.05527279991094173 +144399,721.9950000041543,-0.05527275733682646 +144400,722.0000000041545,-0.05527271476088921 +144401,722.0050000041546,-0.05527267218312993 +144402,722.0100000041547,-0.05527262960354854 +144403,722.0150000041548,-0.05527258702214498 +144404,722.0200000041549,-0.05527254443891917 +144405,722.025000004155,-0.05527250185387108 +144406,722.0300000041551,-0.05527245926700061 +144407,722.0350000041552,-0.05527241667830772 +144408,722.0400000041553,-0.05527237408779234 +144409,722.0450000041554,-0.05527233149545441 +144410,722.0500000041555,-0.05527228890129386 +144411,722.0550000041557,-0.05527224630531065 +144412,722.0600000041558,-0.05527220370750467 +144413,722.0650000041559,-0.0552721611078759 +144414,722.070000004156,-0.055272118506424266 +144415,722.0750000041561,-0.055272075903149684 +144416,722.0800000041562,-0.05527203329805211 +144417,722.0850000041563,-0.055271990691131465 +144418,722.0900000041564,-0.055271948082387695 +144419,722.0950000041565,-0.055271905471820745 +144420,722.1000000041566,-0.055271862859430546 +144421,722.1050000041568,-0.05527182024521703 +144422,722.1100000041569,-0.05527177762918014 +144423,722.115000004157,-0.055271735011319795 +144424,722.1200000041571,-0.05527169239163595 +144425,722.1250000041572,-0.05527164977012855 +144426,722.1300000041573,-0.055271607146797505 +144427,722.1350000041574,-0.05527156452164277 +144428,722.1400000041575,-0.05527152189466428 +144429,722.1450000041576,-0.055271479265861956 +144430,722.1500000041577,-0.05527143663523576 +144431,722.1550000041578,-0.055271394002785613 +144432,722.160000004158,-0.05527135136851146 +144433,722.1650000041581,-0.05527130873241323 +144434,722.1700000041582,-0.05527126609449087 +144435,722.1750000041583,-0.05527122345474432 +144436,722.1800000041584,-0.05527118081317349 +144437,722.1850000041585,-0.05527113816977834 +144438,722.1900000041586,-0.055271095524558805 +144439,722.1950000041587,-0.05527105287751482 +144440,722.2000000041588,-0.05527101022864632 +144441,722.2050000041589,-0.055270967577953245 +144442,722.210000004159,-0.055270924925435526 +144443,722.2150000041592,-0.055270882271093114 +144444,722.2200000041593,-0.05527083961492593 +144445,722.2250000041594,-0.055270796956933925 +144446,722.2300000041595,-0.055270754297117024 +144447,722.2350000041596,-0.055270711635475166 +144448,722.2400000041597,-0.055270668972008295 +144449,722.2450000041598,-0.05527062630671635 +144450,722.2500000041599,-0.05527058363959927 +144451,722.25500000416,-0.055270540970656985 +144452,722.2600000041601,-0.05527049829988943 +144453,722.2650000041602,-0.055270455627296544 +144454,722.2700000041604,-0.05527041295287826 +144455,722.2750000041605,-0.05527037027663454 +144456,722.2800000041606,-0.05527032759856529 +144457,722.2850000041607,-0.05527028491867047 +144458,722.2900000041608,-0.05527024223695 +144459,722.2950000041609,-0.05527019955340383 +144460,722.300000004161,-0.05527015686803189 +144461,722.3050000041611,-0.05527011418083413 +144462,722.3100000041612,-0.05527007149181047 +144463,722.3150000041613,-0.05527002880096086 +144464,722.3200000041614,-0.05526998610828524 +144465,722.3250000041616,-0.05526994341378354 +144466,722.3300000041617,-0.0552699007174557 +144467,722.3350000041618,-0.055269858019301656 +144468,722.3400000041619,-0.05526981531932134 +144469,722.345000004162,-0.05526977261751471 +144470,722.3500000041621,-0.05526972991388169 +144471,722.3550000041622,-0.055269687208422215 +144472,722.3600000041623,-0.05526964450113623 +144473,722.3650000041624,-0.05526960179202366 +144474,722.3700000041625,-0.05526955908108447 +144475,722.3750000041626,-0.055269516368318575 +144476,722.3800000041628,-0.05526947365372593 +144477,722.3850000041629,-0.05526943093730644 +144478,722.390000004163,-0.05526938821906008 +144479,722.3950000041631,-0.055269345498986766 +144480,722.4000000041632,-0.05526930277708645 +144481,722.4050000041633,-0.05526926005335906 +144482,722.4100000041634,-0.05526921732780454 +144483,722.4150000041635,-0.05526917460042281 +144484,722.4200000041636,-0.05526913187121384 +144485,722.4250000041637,-0.05526908914017756 +144486,722.4300000041638,-0.05526904640731388 +144487,722.435000004164,-0.05526900367262276 +144488,722.4400000041641,-0.05526896093610414 +144489,722.4450000041642,-0.055268918197757956 +144490,722.4500000041643,-0.055268875457584146 +144491,722.4550000041644,-0.055268832715582646 +144492,722.4600000041645,-0.055268789971753406 +144493,722.4650000041646,-0.05526874722609635 +144494,722.4700000041647,-0.05526870447861141 +144495,722.4750000041648,-0.05526866172929854 +144496,722.4800000041649,-0.05526861897815768 +144497,722.485000004165,-0.055268576225188756 +144498,722.4900000041652,-0.05526853347039172 +144499,722.4950000041653,-0.0552684907137665 +144500,722.5000000041654,-0.055268447955313035 +144501,722.5050000041655,-0.05526840519503126 +144502,722.5100000041656,-0.05526836243292114 +144503,722.5150000041657,-0.055268319668982574 +144504,722.5200000041658,-0.05526827690321552 +144505,722.5250000041659,-0.055268234135619924 +144506,722.530000004166,-0.05526819136619571 +144507,722.5350000041661,-0.05526814859494283 +144508,722.5400000041662,-0.05526810582186123 +144509,722.5450000041664,-0.05526806304695082 +144510,722.5500000041665,-0.05526802027021155 +144511,722.5550000041666,-0.05526797749164338 +144512,722.5600000041667,-0.055267934711246226 +144513,722.5650000041668,-0.05526789192902004 +144514,722.5700000041669,-0.05526784914496474 +144515,722.575000004167,-0.05526780635908028 +144516,722.5800000041671,-0.055267763571366604 +144517,722.5850000041672,-0.05526772078182364 +144518,722.5900000041673,-0.05526767799045133 +144519,722.5950000041674,-0.05526763519724962 +144520,722.6000000041676,-0.05526759240221844 +144521,722.6050000041677,-0.05526754960535774 +144522,722.6100000041678,-0.055267506806667456 +144523,722.6150000041679,-0.05526746400614752 +144524,722.620000004168,-0.055267421203797865 +144525,722.6250000041681,-0.055267378399618455 +144526,722.6300000041682,-0.055267335593609204 +144527,722.6350000041683,-0.055267292785770056 +144528,722.6400000041684,-0.055267249976100954 +144529,722.6450000041685,-0.055267207164601845 +144530,722.6500000041686,-0.05526716435127266 +144531,722.6550000041688,-0.05526712153611334 +144532,722.6600000041689,-0.05526707871912382 +144533,722.665000004169,-0.05526703590030404 +144534,722.6700000041691,-0.055266993079653944 +144535,722.6750000041692,-0.05526695025717348 +144536,722.6800000041693,-0.05526690743286257 +144537,722.6850000041694,-0.05526686460672116 +144538,722.6900000041695,-0.05526682177874919 +144539,722.6950000041696,-0.05526677894894661 +144540,722.7000000041697,-0.05526673611731334 +144541,722.7050000041698,-0.05526669328384934 +144542,722.71000000417,-0.05526665044855453 +144543,722.7150000041701,-0.055266607611428854 +144544,722.7200000041702,-0.05526656477247225 +144545,722.7250000041703,-0.055266521931684666 +144546,722.7300000041704,-0.05526647908906604 +144547,722.7350000041705,-0.055266436244616315 +144548,722.7400000041706,-0.055266393398335424 +144549,722.7450000041707,-0.05526635055022331 +144550,722.7500000041708,-0.05526630770027991 +144551,722.7550000041709,-0.05526626484850516 +144552,722.760000004171,-0.055266221994899015 +144553,722.7650000041712,-0.0552661791394614 +144554,722.7700000041713,-0.05526613628219226 +144555,722.7750000041714,-0.055266093423091536 +144556,722.7800000041715,-0.055266050562159164 +144557,722.7850000041716,-0.05526600769939509 +144558,722.7900000041717,-0.05526596483479925 +144559,722.7950000041718,-0.05526592196837157 +144560,722.8000000041719,-0.05526587910011202 +144561,722.805000004172,-0.055265836230020515 +144562,722.8100000041721,-0.055265793358097004 +144563,722.8150000041722,-0.055265750484341424 +144564,722.8200000041724,-0.05526570760875373 +144565,722.8250000041725,-0.05526566473133385 +144566,722.8300000041726,-0.05526562185208171 +144567,722.8350000041727,-0.05526557897099727 +144568,722.8400000041728,-0.05526553608808047 +144569,722.8450000041729,-0.05526549320333123 +144570,722.850000004173,-0.05526545031674952 +144571,722.8550000041731,-0.055265407428335266 +144572,722.8600000041732,-0.055265364538088405 +144573,722.8650000041733,-0.05526532164600887 +144574,722.8700000041734,-0.05526527875209662 +144575,722.8750000041736,-0.05526523585635158 +144576,722.8800000041737,-0.0552651929587737 +144577,722.8850000041738,-0.05526515005936291 +144578,722.8900000041739,-0.055265107158119164 +144579,722.895000004174,-0.05526506425504239 +144580,722.9000000041741,-0.05526502135013253 +144581,722.9050000041742,-0.05526497844338954 +144582,722.9100000041743,-0.055264935534813334 +144583,722.9150000041744,-0.05526489262440387 +144584,722.9200000041745,-0.0552648497121611 +144585,722.9250000041746,-0.05526480679808493 +144586,722.9300000041748,-0.055264763882175334 +144587,722.9350000041749,-0.05526472096443223 +144588,722.940000004175,-0.055264678044855575 +144589,722.9450000041751,-0.0552646351234453 +144590,722.9500000041752,-0.05526459220020135 +144591,722.9550000041753,-0.055264549275123656 +144592,722.9600000041754,-0.05526450634821218 +144593,722.9650000041755,-0.055264463419466836 +144594,722.9700000041756,-0.055264420488887585 +144595,722.9750000041757,-0.055264377556474356 +144596,722.9800000041758,-0.055264334622227095 +144597,722.985000004176,-0.05526429168614574 +144598,722.9900000041761,-0.055264248748230244 +144599,722.9950000041762,-0.05526420580848053 +144600,723.0000000041763,-0.05526416286689654 +144601,723.0050000041764,-0.05526411992347823 +144602,723.0100000041765,-0.05526407697822553 +144603,723.0150000041766,-0.055264034031138394 +144604,723.0200000041767,-0.055263991082216746 +144605,723.0250000041768,-0.05526394813146054 +144606,723.0300000041769,-0.05526390517886969 +144607,723.035000004177,-0.05526386222444417 +144608,723.0400000041772,-0.05526381926818391 +144609,723.0450000041773,-0.055263776310088844 +144610,723.0500000041774,-0.05526373335015892 +144611,723.0550000041775,-0.05526369038839407 +144612,723.0600000041776,-0.05526364742479425 +144613,723.0650000041777,-0.055263604459359385 +144614,723.0700000041778,-0.05526356149208944 +144615,723.0750000041779,-0.05526351852298433 +144616,723.080000004178,-0.055263475552044014 +144617,723.0850000041781,-0.055263432579268426 +144618,723.0900000041783,-0.05526338960465751 +144619,723.0950000041784,-0.055263346628211196 +144620,723.1000000041785,-0.05526330364992944 +144621,723.1050000041786,-0.055263260669812186 +144622,723.1100000041787,-0.055263217687859356 +144623,723.1150000041788,-0.055263174704070904 +144624,723.1200000041789,-0.055263131718446774 +144625,723.125000004179,-0.0552630887309869 +144626,723.1300000041791,-0.05526304574169122 +144627,723.1350000041792,-0.05526300275055968 +144628,723.1400000041793,-0.055262959757592225 +144629,723.1450000041795,-0.05526291676278881 +144630,723.1500000041796,-0.055262873766149356 +144631,723.1550000041797,-0.055262830767673805 +144632,723.1600000041798,-0.05526278776736211 +144633,723.1650000041799,-0.05526274476521421 +144634,723.17000000418,-0.055262701761230035 +144635,723.1750000041801,-0.05526265875540953 +144636,723.1800000041802,-0.055262615747752646 +144637,723.1850000041803,-0.055262572738259325 +144638,723.1900000041804,-0.0552625297269295 +144639,723.1950000041805,-0.055262486713763125 +144640,723.2000000041807,-0.05526244369876012 +144641,723.2050000041808,-0.055262400681920454 +144642,723.2100000041809,-0.05526235766324405 +144643,723.215000004181,-0.05526231464273084 +144644,723.2200000041811,-0.055262271620380804 +144645,723.2250000041812,-0.055262228596193855 +144646,723.2300000041813,-0.05526218557016994 +144647,723.2350000041814,-0.055262142542308997 +144648,723.2400000041815,-0.05526209951261096 +144649,723.2450000041816,-0.05526205648107579 +144650,723.2500000041817,-0.05526201344770343 +144651,723.2550000041819,-0.05526197041249381 +144652,723.260000004182,-0.05526192737544688 +144653,723.2650000041821,-0.055261884336562574 +144654,723.2700000041822,-0.05526184129584084 +144655,723.2750000041823,-0.05526179825328161 +144656,723.2800000041824,-0.055261755208884836 +144657,723.2850000041825,-0.05526171216265047 +144658,723.2900000041826,-0.055261669114578436 +144659,723.2950000041827,-0.05526162606466869 +144660,723.3000000041828,-0.05526158301292115 +144661,723.305000004183,-0.055261539959335776 +144662,723.310000004183,-0.055261496903912515 +144663,723.3150000041832,-0.05526145384665131 +144664,723.3200000041833,-0.0552614107875521 +144665,723.3250000041834,-0.05526136772661481 +144666,723.3300000041835,-0.05526132466383941 +144667,723.3350000041836,-0.05526128159922581 +144668,723.3400000041837,-0.05526123853277399 +144669,723.3450000041838,-0.05526119546448386 +144670,723.3500000041839,-0.055261152394355396 +144671,723.355000004184,-0.05526110932238851 +144672,723.3600000041841,-0.05526106624858315 +144673,723.3650000041843,-0.05526102317293926 +144674,723.3700000041844,-0.05526098009545679 +144675,723.3750000041845,-0.055260937016135686 +144676,723.3800000041846,-0.05526089393497589 +144677,723.3850000041847,-0.05526085085197732 +144678,723.3900000041848,-0.05526080776713995 +144679,723.3950000041849,-0.055260764680463696 +144680,723.400000004185,-0.05526072159194851 +144681,723.4050000041851,-0.05526067850159434 +144682,723.4100000041852,-0.05526063540940113 +144683,723.4150000041853,-0.055260592315368826 +144684,723.4200000041855,-0.055260549219497364 +144685,723.4250000041856,-0.05526050612178668 +144686,723.4300000041857,-0.05526046302223672 +144687,723.4350000041858,-0.05526041992084744 +144688,723.4400000041859,-0.05526037681761878 +144689,723.445000004186,-0.05526033371255066 +144690,723.4500000041861,-0.05526029060564305 +144691,723.4550000041862,-0.05526024749689587 +144692,723.4600000041863,-0.05526020438630908 +144693,723.4650000041864,-0.05526016127388262 +144694,723.4700000041865,-0.05526011815961643 +144695,723.4750000041867,-0.05526007504351046 +144696,723.4800000041868,-0.05526003192556463 +144697,723.4850000041869,-0.05525998880577892 +144698,723.490000004187,-0.05525994568415324 +144699,723.4950000041871,-0.05525990256068755 +144700,723.5000000041872,-0.05525985943538179 +144701,723.5050000041873,-0.055259816308235885 +144702,723.5100000041874,-0.05525977317924981 +144703,723.5150000041875,-0.05525973004842348 +144704,723.5200000041876,-0.05525968691575686 +144705,723.5250000041877,-0.05525964378124988 +144706,723.5300000041879,-0.05525960064490249 +144707,723.535000004188,-0.05525955750671463 +144708,723.5400000041881,-0.055259514366686247 +144709,723.5450000041882,-0.05525947122481727 +144710,723.5500000041883,-0.055259428081107675 +144711,723.5550000041884,-0.05525938493555736 +144712,723.5600000041885,-0.055259341788166313 +144713,723.5650000041886,-0.05525929863893444 +144714,723.5700000041887,-0.05525925548786171 +144715,723.5750000041888,-0.05525921233494805 +144716,723.580000004189,-0.05525916918019341 +144717,723.585000004189,-0.05525912602359775 +144718,723.5900000041892,-0.05525908286516098 +144719,723.5950000041893,-0.055259039704883064 +144720,723.6000000041894,-0.055258996542763957 +144721,723.6050000041895,-0.05525895337880357 +144722,723.6100000041896,-0.05525891021300187 +144723,723.6150000041897,-0.055258867045358796 +144724,723.6200000041898,-0.05525882387587429 +144725,723.6250000041899,-0.05525878070454829 +144726,723.63000000419,-0.05525873753138075 +144727,723.6350000041901,-0.05525869435637161 +144728,723.6400000041903,-0.055258651179520814 +144729,723.6450000041904,-0.0552586080008283 +144730,723.6500000041905,-0.05525856482029403 +144731,723.6550000041906,-0.055258521637917925 +144732,723.6600000041907,-0.05525847845369994 +144733,723.6650000041908,-0.05525843526764001 +144734,723.6700000041909,-0.05525839207973809 +144735,723.675000004191,-0.05525834888999411 +144736,723.6800000041911,-0.05525830569840804 +144737,723.6850000041912,-0.055258262504979797 +144738,723.6900000041913,-0.05525821930970933 +144739,723.6950000041915,-0.055258176112596605 +144740,723.7000000041916,-0.05525813291364153 +144741,723.7050000041917,-0.05525808971284407 +144742,723.7100000041918,-0.05525804651020417 +144743,723.7150000041919,-0.055258003305721774 +144744,723.720000004192,-0.05525796009939681 +144745,723.7250000041921,-0.05525791689122925 +144746,723.7300000041922,-0.05525787368121901 +144747,723.7350000041923,-0.055257830469366054 +144748,723.7400000041924,-0.05525778725567032 +144749,723.7450000041925,-0.05525774404013176 +144750,723.7500000041927,-0.0552577008227503 +144751,723.7550000041928,-0.055257657603525884 +144752,723.7600000041929,-0.05525761438245847 +144753,723.765000004193,-0.05525757115954799 +144754,723.7700000041931,-0.055257527934794395 +144755,723.7750000041932,-0.055257484708197635 +144756,723.7800000041933,-0.05525744147975766 +144757,723.7850000041934,-0.05525739824947439 +144758,723.7900000041935,-0.05525735501734779 +144759,723.7950000041936,-0.05525731178337779 +144760,723.8000000041937,-0.05525726854756434 +144761,723.8050000041939,-0.055257225309907385 +144762,723.810000004194,-0.05525718207040687 +144763,723.8150000041941,-0.05525713882906274 +144764,723.8200000041942,-0.05525709558587494 +144765,723.8250000041943,-0.05525705234084342 +144766,723.8300000041944,-0.05525700909396811 +144767,723.8350000041945,-0.05525696584524897 +144768,723.8400000041946,-0.05525692259468593 +144769,723.8450000041947,-0.05525687934227895 +144770,723.8500000041948,-0.05525683608802796 +144771,723.855000004195,-0.0552567928319329 +144772,723.8600000041951,-0.05525674957399373 +144773,723.8650000041952,-0.05525670631421039 +144774,723.8700000041953,-0.055256663052582825 +144775,723.8750000041954,-0.055256619789110985 +144776,723.8800000041955,-0.05525657652379481 +144777,723.8850000041956,-0.05525653325663423 +144778,723.8900000041957,-0.05525648998762921 +144779,723.8950000041958,-0.05525644671677969 +144780,723.9000000041959,-0.055256403444085604 +144781,723.905000004196,-0.05525636016954691 +144782,723.9100000041961,-0.05525631689316354 +144783,723.9150000041963,-0.05525627361493545 +144784,723.9200000041964,-0.05525623033486259 +144785,723.9250000041965,-0.0552561870529449 +144786,723.9300000041966,-0.0552561437691823 +144787,723.9350000041967,-0.05525610048357477 +144788,723.9400000041968,-0.05525605719612224 +144789,723.9450000041969,-0.055256013906824664 +144790,723.950000004197,-0.05525597061568197 +144791,723.9550000041971,-0.055255927322694125 +144792,723.9600000041972,-0.055255884027861045 +144793,723.9650000041973,-0.05525584073118269 +144794,723.9700000041975,-0.05525579743265901 +144795,723.9750000041976,-0.05525575413228994 +144796,723.9800000041977,-0.05525571083007543 +144797,723.9850000041978,-0.05525566752601543 +144798,723.9900000041979,-0.05525562422010988 +144799,723.995000004198,-0.05525558091235872 +144800,724.0000000041981,-0.05525553760276192 +144801,724.0050000041982,-0.055255494291319394 +144802,724.0100000041983,-0.055255450978031105 +144803,724.0150000041984,-0.055255407662897 +144804,724.0200000041986,-0.055255364345917005 +144805,724.0250000041987,-0.05525532102709109 +144806,724.0300000041988,-0.05525527770641918 +144807,724.0350000041989,-0.055255234383901224 +144808,724.040000004199,-0.05525519105953718 +144809,724.0450000041991,-0.05525514773332698 +144810,724.0500000041992,-0.05525510440527057 +144811,724.0550000041993,-0.05525506107536791 +144812,724.0600000041994,-0.05525501774361892 +144813,724.0650000041995,-0.05525497441002356 +144814,724.0700000041996,-0.05525493107458179 +144815,724.0750000041998,-0.05525488773729355 +144816,724.0800000041999,-0.05525484439815875 +144817,724.0850000042,-0.05525480105717737 +144818,724.0900000042001,-0.05525475771434935 +144819,724.0950000042002,-0.05525471436967465 +144820,724.1000000042003,-0.05525467102315318 +144821,724.1050000042004,-0.055254627674784916 +144822,724.1100000042005,-0.055254584324569776 +144823,724.1150000042006,-0.05525454097250774 +144824,724.1200000042007,-0.055254497618598734 +144825,724.1250000042008,-0.0552544542628427 +144826,724.130000004201,-0.05525441090523958 +144827,724.1350000042011,-0.055254367545789336 +144828,724.1400000042012,-0.05525432418449191 +144829,724.1450000042013,-0.055254280821347236 +144830,724.1500000042014,-0.05525423745635527 +144831,724.1550000042015,-0.055254194089515964 +144832,724.1600000042016,-0.055254150720829245 +144833,724.1650000042017,-0.055254107350295074 +144834,724.1700000042018,-0.05525406397791339 +144835,724.1750000042019,-0.05525402060368414 +144836,724.180000004202,-0.05525397722760728 +144837,724.1850000042022,-0.05525393384968274 +144838,724.1900000042023,-0.05525389046991047 +144839,724.1950000042024,-0.05525384708829043 +144840,724.2000000042025,-0.055253803704822545 +144841,724.2050000042026,-0.05525376031950677 +144842,724.2100000042027,-0.05525371693234305 +144843,724.2150000042028,-0.05525367354333135 +144844,724.2200000042029,-0.05525363015247159 +144845,724.225000004203,-0.055253586759763725 +144846,724.2300000042031,-0.05525354336520769 +144847,724.2350000042032,-0.05525349996880345 +144848,724.2400000042034,-0.05525345657055094 +144849,724.2450000042035,-0.05525341317045011 +144850,724.2500000042036,-0.055253369768500905 +144851,724.2550000042037,-0.05525332636470327 +144852,724.2600000042038,-0.05525328295905716 +144853,724.2650000042039,-0.0552532395515625 +144854,724.270000004204,-0.05525319614221927 +144855,724.2750000042041,-0.055253152731027384 +144856,724.2800000042042,-0.0552531093179868 +144857,724.2850000042043,-0.05525306590309747 +144858,724.2900000042044,-0.05525302248635933 +144859,724.2950000042046,-0.05525297906777233 +144860,724.3000000042047,-0.05525293564733643 +144861,724.3050000042048,-0.05525289222505155 +144862,724.3100000042049,-0.055252848800917666 +144863,724.315000004205,-0.055252805374934696 +144864,724.3200000042051,-0.055252761947102616 +144865,724.3250000042052,-0.05525271851742134 +144866,724.3300000042053,-0.055252675085890844 +144867,724.3350000042054,-0.055252631652511056 +144868,724.3400000042055,-0.05525258821728193 +144869,724.3450000042056,-0.05525254478020341 +144870,724.3500000042058,-0.05525250134127545 +144871,724.3550000042059,-0.05525245790049797 +144872,724.360000004206,-0.055252414457870956 +144873,724.3650000042061,-0.05525237101339432 +144874,724.3700000042062,-0.055252327567068035 +144875,724.3750000042063,-0.055252284118892034 +144876,724.3800000042064,-0.05525224066886626 +144877,724.3850000042065,-0.05525219721699068 +144878,724.3900000042066,-0.05525215376326521 +144879,724.3950000042067,-0.05525211030768982 +144880,724.4000000042068,-0.05525206685026446 +144881,724.405000004207,-0.05525202339098905 +144882,724.4100000042071,-0.05525197992986357 +144883,724.4150000042072,-0.05525193646688794 +144884,724.4200000042073,-0.05525189300206212 +144885,724.4250000042074,-0.05525184953538605 +144886,724.4300000042075,-0.05525180606685967 +144887,724.4350000042076,-0.05525176259648295 +144888,724.4400000042077,-0.05525171912425583 +144889,724.4450000042078,-0.055251675650178245 +144890,724.4500000042079,-0.05525163217425015 +144891,724.455000004208,-0.05525158869647149 +144892,724.4600000042082,-0.05525154521684222 +144893,724.4650000042083,-0.05525150173536227 +144894,724.4700000042084,-0.0552514582520316 +144895,724.4750000042085,-0.055251414766850145 +144896,724.4800000042086,-0.05525137127981788 +144897,724.4850000042087,-0.05525132779093472 +144898,724.4900000042088,-0.05525128430020064 +144899,724.4950000042089,-0.05525124080761556 +144900,724.500000004209,-0.05525119731317945 +144901,724.5050000042091,-0.055251153816892246 +144902,724.5100000042092,-0.05525111031875389 +144903,724.5150000042094,-0.05525106681876433 +144904,724.5200000042095,-0.055251023316923525 +144905,724.5250000042096,-0.05525097981323141 +144906,724.5300000042097,-0.05525093630768794 +144907,724.5350000042098,-0.05525089280029306 +144908,724.5400000042099,-0.05525084929104672 +144909,724.54500000421,-0.05525080577994886 +144910,724.5500000042101,-0.05525076226699943 +144911,724.5550000042102,-0.055250718752198384 +144912,724.5600000042103,-0.05525067523554566 +144913,724.5650000042104,-0.05525063171704122 +144914,724.5700000042106,-0.055250588196685005 +144915,724.5750000042107,-0.055250544674476945 +144916,724.5800000042108,-0.05525050115041701 +144917,724.5850000042109,-0.05525045762450513 +144918,724.590000004211,-0.055250414096741265 +144919,724.5950000042111,-0.055250370567125374 +144920,724.6000000042112,-0.05525032703565738 +144921,724.6050000042113,-0.05525028350233724 +144922,724.6100000042114,-0.0552502399671649 +144923,724.6150000042115,-0.05525019643014032 +144924,724.6200000042116,-0.05525015289126343 +144925,724.6250000042118,-0.05525010935053418 +144926,724.6300000042119,-0.055250065807952525 +144927,724.635000004212,-0.05525002226351842 +144928,724.6400000042121,-0.0552499787172318 +144929,724.6450000042122,-0.05524993516909261 +144930,724.6500000042123,-0.05524989161910081 +144931,724.6550000042124,-0.05524984806725634 +144932,724.6600000042125,-0.05524980451355914 +144933,724.6650000042126,-0.055249760958009174 +144934,724.6700000042127,-0.055249717400606385 +144935,724.6750000042128,-0.05524967384135072 +144936,724.680000004213,-0.055249630280242115 +144937,724.6850000042131,-0.05524958671728054 +144938,724.6900000042132,-0.05524954315246592 +144939,724.6950000042133,-0.05524949958579822 +144940,724.7000000042134,-0.05524945601727738 +144941,724.7050000042135,-0.05524941244690335 +144942,724.7100000042136,-0.05524936887467608 +144943,724.7150000042137,-0.055249325300595516 +144944,724.7200000042138,-0.0552492817246616 +144945,724.7250000042139,-0.05524923814687429 +144946,724.730000004214,-0.05524919456723353 +144947,724.7350000042142,-0.055249150985739265 +144948,724.7400000042143,-0.055249107402391445 +144949,724.7450000042144,-0.05524906381719002 +144950,724.7500000042145,-0.05524902023013495 +144951,724.7550000042146,-0.055248976641226154 +144952,724.7600000042147,-0.05524893305046359 +144953,724.7650000042148,-0.05524888945784723 +144954,724.7700000042149,-0.055248845863377 +144955,724.775000004215,-0.05524880226705285 +144956,724.7800000042151,-0.05524875866887474 +144957,724.7850000042152,-0.0552487150688426 +144958,724.7900000042154,-0.055248671466956396 +144959,724.7950000042155,-0.055248627863216056 +144960,724.8000000042156,-0.05524858425762156 +144961,724.8050000042157,-0.05524854065017283 +144962,724.8100000042158,-0.05524849704086982 +144963,724.8150000042159,-0.055248453429712484 +144964,724.820000004216,-0.05524840981670076 +144965,724.8250000042161,-0.0552483662018346 +144966,724.8300000042162,-0.05524832258511395 +144967,724.8350000042163,-0.05524827896653878 +144968,724.8400000042164,-0.055248235346109016 +144969,724.8450000042166,-0.055248191723824606 +144970,724.8500000042167,-0.05524814809968551 +144971,724.8550000042168,-0.05524810447369167 +144972,724.8600000042169,-0.05524806084584303 +144973,724.865000004217,-0.05524801721613955 +144974,724.8700000042171,-0.055247973584581174 +144975,724.8750000042172,-0.05524792995116785 +144976,724.8800000042173,-0.055247886315899525 +144977,724.8850000042174,-0.05524784267877615 +144978,724.8900000042175,-0.05524779903979767 +144979,724.8950000042176,-0.055247755398964045 +144980,724.9000000042178,-0.05524771175627521 +144981,724.9050000042179,-0.05524766811173112 +144982,724.910000004218,-0.05524762446533171 +144983,724.9150000042181,-0.05524758081707695 +144984,724.9200000042182,-0.05524753716696678 +144985,724.9250000042183,-0.055247493515001155 +144986,724.9300000042184,-0.05524744986118002 +144987,724.9350000042185,-0.055247406205503315 +144988,724.9400000042186,-0.055247362547970996 +144989,724.9450000042187,-0.05524731888858301 +144990,724.9500000042189,-0.055247275227339306 +144991,724.955000004219,-0.05524723156423983 +144992,724.9600000042191,-0.05524718789928454 +144993,724.9650000042192,-0.05524714423247338 +144994,724.9700000042193,-0.0552471005638063 +144995,724.9750000042194,-0.05524705689328324 +144996,724.9800000042195,-0.05524701322090417 +144997,724.9850000042196,-0.05524696954666901 +144998,724.9900000042197,-0.05524692587057773 +144999,724.9950000042198,-0.05524688219263027 +145000,725.0000000042199,-0.055246838512826586 +145001,725.00500000422,-0.055246794831166623 +145002,725.0100000042202,-0.05524675114765035 +145003,725.0150000042203,-0.055246707462277674 +145004,725.0200000042204,-0.055246663775048575 +145005,725.0250000042205,-0.055246620085963004 +145006,725.0300000042206,-0.0552465763950209 +145007,725.0350000042207,-0.0552465327022222 +145008,725.0400000042208,-0.05524648900756687 +145009,725.0450000042209,-0.05524644531105486 +145010,725.050000004221,-0.055246401612686104 +145011,725.0550000042211,-0.05524635791246057 +145012,725.0600000042213,-0.05524631421037819 +145013,725.0650000042214,-0.05524627050643893 +145014,725.0700000042215,-0.055246226800642735 +145015,725.0750000042216,-0.055246183092989544 +145016,725.0800000042217,-0.05524613938347932 +145017,725.0850000042218,-0.05524609567211201 +145018,725.0900000042219,-0.05524605195888755 +145019,725.095000004222,-0.055246008243805905 +145020,725.1000000042221,-0.05524596452686702 +145021,725.1050000042222,-0.055245920808070836 +145022,725.1100000042223,-0.055245877087417315 +145023,725.1150000042225,-0.05524583336490639 +145024,725.1200000042226,-0.05524578964053802 +145025,725.1250000042227,-0.055245745914312167 +145026,725.1300000042228,-0.05524570218622877 +145027,725.1350000042229,-0.055245658456287774 +145028,725.140000004223,-0.055245614724489134 +145029,725.1450000042231,-0.05524557099083279 +145030,725.1500000042232,-0.055245527255318706 +145031,725.1550000042233,-0.05524548351794682 +145032,725.1600000042234,-0.055245439778717084 +145033,725.1650000042235,-0.055245396037629464 +145034,725.1700000042237,-0.055245352294683886 +145035,725.1750000042238,-0.05524530854988031 +145036,725.1800000042239,-0.05524526480321869 +145037,725.185000004224,-0.05524522105469897 +145038,725.1900000042241,-0.0552451773043211 +145039,725.1950000042242,-0.05524513355208504 +145040,725.2000000042243,-0.05524508979799072 +145041,725.2050000042244,-0.0552450460420381 +145042,725.2100000042245,-0.05524500228422713 +145043,725.2150000042246,-0.05524495852455776 +145044,725.2200000042247,-0.055244914763029944 +145045,725.2250000042249,-0.055244870999643626 +145046,725.230000004225,-0.055244827234398754 +145047,725.2350000042251,-0.05524478346729529 +145048,725.2400000042252,-0.05524473969833318 +145049,725.2450000042253,-0.055244695927512355 +145050,725.2500000042254,-0.05524465215483278 +145051,725.2550000042255,-0.05524460838029441 +145052,725.2600000042256,-0.05524456460389719 +145053,725.2650000042257,-0.055244520825641075 +145054,725.2700000042258,-0.055244477045526014 +145055,725.275000004226,-0.05524443326355194 +145056,725.280000004226,-0.05524438947971882 +145057,725.2850000042262,-0.05524434569402661 +145058,725.2900000042263,-0.055244301906475245 +145059,725.2950000042264,-0.055244258117064675 +145060,725.3000000042265,-0.055244214325794856 +145061,725.3050000042266,-0.05524417053266573 +145062,725.3100000042267,-0.055244126737677264 +145063,725.3150000042268,-0.0552440829408294 +145064,725.3200000042269,-0.055244039142122094 +145065,725.325000004227,-0.055243995341555274 +145066,725.3300000042271,-0.055243951539128915 +145067,725.3350000042273,-0.055243907734842966 +145068,725.3400000042274,-0.055243863928697366 +145069,725.3450000042275,-0.055243820120692066 +145070,725.3500000042276,-0.05524377631082702 +145071,725.3550000042277,-0.055243732499102166 +145072,725.3600000042278,-0.05524368868551747 +145073,725.3650000042279,-0.05524364487007288 +145074,725.370000004228,-0.055243601052768355 +145075,725.3750000042281,-0.05524355723360382 +145076,725.3800000042282,-0.05524351341257925 +145077,725.3850000042283,-0.05524346958969459 +145078,725.3900000042285,-0.055243425764949776 +145079,725.3950000042286,-0.055243381938344785 +145080,725.4000000042287,-0.055243338109879546 +145081,725.4050000042288,-0.05524329427955401 +145082,725.4100000042289,-0.05524325044736813 +145083,725.415000004229,-0.05524320661332186 +145084,725.4200000042291,-0.05524316277741515 +145085,725.4250000042292,-0.05524311893964796 +145086,725.4300000042293,-0.055243075100020224 +145087,725.4350000042294,-0.0552430312585319 +145088,725.4400000042295,-0.05524298741518294 +145089,725.4450000042297,-0.055242943569973293 +145090,725.4500000042298,-0.05524289972290291 +145091,725.4550000042299,-0.055242855873971736 +145092,725.46000000423,-0.05524281202317974 +145093,725.4650000042301,-0.05524276817052686 +145094,725.4700000042302,-0.05524272431601304 +145095,725.4750000042303,-0.05524268045963824 +145096,725.4800000042304,-0.05524263660140241 +145097,725.4850000042305,-0.0552425927413055 +145098,725.4900000042306,-0.05524254887934745 +145099,725.4950000042307,-0.055242505015528236 +145100,725.5000000042309,-0.05524246114984779 +145101,725.505000004231,-0.05524241728230605 +145102,725.5100000042311,-0.055242373412902994 +145103,725.5150000042312,-0.05524232954163857 +145104,725.5200000042313,-0.05524228566851272 +145105,725.5250000042314,-0.055242241793525396 +145106,725.5300000042315,-0.05524219791667655 +145107,725.5350000042316,-0.05524215403796613 +145108,725.5400000042317,-0.055242110157394095 +145109,725.5450000042318,-0.05524206627496038 +145110,725.550000004232,-0.05524202239066496 +145111,725.555000004232,-0.05524197850450776 +145112,725.5600000042322,-0.05524193461648875 +145113,725.5650000042323,-0.05524189072660788 +145114,725.5700000042324,-0.055241846834865084 +145115,725.5750000042325,-0.05524180294126033 +145116,725.5800000042326,-0.05524175904579357 +145117,725.5850000042327,-0.05524171514846475 +145118,725.5900000042328,-0.05524167124927381 +145119,725.5950000042329,-0.05524162734822072 +145120,725.600000004233,-0.05524158344530542 +145121,725.6050000042331,-0.05524153954052787 +145122,725.6100000042333,-0.055241495633888006 +145123,725.6150000042334,-0.055241451725385804 +145124,725.6200000042335,-0.05524140781502119 +145125,725.6250000042336,-0.05524136390279412 +145126,725.6300000042337,-0.05524131998870456 +145127,725.6350000042338,-0.055241276072752456 +145128,725.6400000042339,-0.05524123215493775 +145129,725.645000004234,-0.0552411882352604 +145130,725.6500000042341,-0.055241144313720354 +145131,725.6550000042342,-0.05524110039031757 +145132,725.6600000042343,-0.05524105646505199 +145133,725.6650000042345,-0.055241012537923566 +145134,725.6700000042346,-0.05524096860893227 +145135,725.6750000042347,-0.05524092467807802 +145136,725.6800000042348,-0.055240880745360786 +145137,725.6850000042349,-0.05524083681078052 +145138,725.690000004235,-0.055240792874337176 +145139,725.6950000042351,-0.0552407489360307 +145140,725.7000000042352,-0.055240704995861055 +145141,725.7050000042353,-0.05524066105382818 +145142,725.7100000042354,-0.055240617109932035 +145143,725.7150000042355,-0.05524057316417256 +145144,725.7200000042357,-0.05524052921654972 +145145,725.7250000042358,-0.05524048526706345 +145146,725.7300000042359,-0.05524044131571371 +145147,725.735000004236,-0.055240397362500464 +145148,725.7400000042361,-0.05524035340742364 +145149,725.7450000042362,-0.05524030945048321 +145150,725.7500000042363,-0.05524026549167911 +145151,725.7550000042364,-0.0552402215310113 +145152,725.7600000042365,-0.05524017756847974 +145153,725.7650000042366,-0.05524013360408436 +145154,725.7700000042367,-0.05524008963782514 +145155,725.7750000042369,-0.05524004566970202 +145156,725.780000004237,-0.055240001699714936 +145157,725.7850000042371,-0.055239957727863866 +145158,725.7900000042372,-0.055239913754148745 +145159,725.7950000042373,-0.05523986977856953 +145160,725.8000000042374,-0.05523982580112617 +145161,725.8050000042375,-0.05523978182181863 +145162,725.8100000042376,-0.05523973784064683 +145163,725.8150000042377,-0.055239693857610746 +145164,725.8200000042378,-0.05523964987271033 +145165,725.825000004238,-0.055239605885945536 +145166,725.8300000042381,-0.05523956189731631 +145167,725.8350000042382,-0.0552395179068226 +145168,725.8400000042383,-0.055239473914464356 +145169,725.8450000042384,-0.05523942992024155 +145170,725.8500000042385,-0.05523938592415411 +145171,725.8550000042386,-0.055239341926202 +145172,725.8600000042387,-0.05523929792638518 +145173,725.8650000042388,-0.055239253924703594 +145174,725.8700000042389,-0.05523920992115718 +145175,725.875000004239,-0.055239165915745916 +145176,725.8800000042392,-0.05523912190846974 +145177,725.8850000042393,-0.05523907789932861 +145178,725.8900000042394,-0.05523903388832247 +145179,725.8950000042395,-0.05523898987545127 +145180,725.9000000042396,-0.05523894586071496 +145181,725.9050000042397,-0.055238901844113515 +145182,725.9100000042398,-0.05523885782564687 +145183,725.9150000042399,-0.05523881380531499 +145184,725.92000000424,-0.05523876978311781 +145185,725.9250000042401,-0.055238725759055286 +145186,725.9300000042402,-0.05523868173312738 +145187,725.9350000042404,-0.05523863770533404 +145188,725.9400000042405,-0.05523859367567522 +145189,725.9450000042406,-0.05523854964415087 +145190,725.9500000042407,-0.05523850561076094 +145191,725.9550000042408,-0.05523846157550538 +145192,725.9600000042409,-0.055238417538384155 +145193,725.965000004241,-0.0552383734993972 +145194,725.9700000042411,-0.05523832945854448 +145195,725.9750000042412,-0.055238285415825955 +145196,725.9800000042413,-0.05523824137124156 +145197,725.9850000042414,-0.055238197324791245 +145198,725.9900000042416,-0.05523815327647497 +145199,725.9950000042417,-0.05523810922629271 +145200,726.0000000042418,-0.055238065174244386 +145201,726.0050000042419,-0.05523802112032996 +145202,726.010000004242,-0.0552379770645494 +145203,726.0150000042421,-0.05523793300690264 +145204,726.0200000042422,-0.05523788894738964 +145205,726.0250000042423,-0.055237844886010336 +145206,726.0300000042424,-0.0552378008227647 +145207,726.0350000042425,-0.055237756757652676 +145208,726.0400000042426,-0.05523771269067423 +145209,726.0450000042428,-0.0552376686218293 +145210,726.0500000042429,-0.055237624551117845 +145211,726.055000004243,-0.05523758047853983 +145212,726.0600000042431,-0.055237536404095185 +145213,726.0650000042432,-0.05523749232778387 +145214,726.0700000042433,-0.05523744824960585 +145215,726.0750000042434,-0.055237404169561063 +145216,726.0800000042435,-0.05523736008764946 +145217,726.0850000042436,-0.055237316003871016 +145218,726.0900000042437,-0.05523727191822566 +145219,726.0950000042438,-0.05523722783071335 +145220,726.100000004244,-0.05523718374133405 +145221,726.1050000042441,-0.0552371396500877 +145222,726.1100000042442,-0.05523709555697427 +145223,726.1150000042443,-0.05523705146199369 +145224,726.1200000042444,-0.05523700736514593 +145225,726.1250000042445,-0.05523696326643093 +145226,726.1300000042446,-0.055236919165848664 +145227,726.1350000042447,-0.05523687506339907 +145228,726.1400000042448,-0.0552368309590821 +145229,726.1450000042449,-0.05523678685289771 +145230,726.150000004245,-0.05523674274484586 +145231,726.1550000042452,-0.05523669863492649 +145232,726.1600000042453,-0.05523665452313955 +145233,726.1650000042454,-0.055236610409485014 +145234,726.1700000042455,-0.05523656629396283 +145235,726.1750000042456,-0.05523652217657293 +145236,726.1800000042457,-0.0552364780573153 +145237,726.1850000042458,-0.055236433936189856 +145238,726.1900000042459,-0.05523638981319658 +145239,726.195000004246,-0.05523634568833542 +145240,726.2000000042461,-0.05523630156160631 +145241,726.2050000042462,-0.05523625743300923 +145242,726.2100000042464,-0.055236213302544114 +145243,726.2150000042465,-0.05523616917021093 +145244,726.2200000042466,-0.05523612503600962 +145245,726.2250000042467,-0.05523608089994015 +145246,726.2300000042468,-0.055236036762002456 +145247,726.2350000042469,-0.05523599262219651 +145248,726.240000004247,-0.05523594848052224 +145249,726.2450000042471,-0.05523590433697961 +145250,726.2500000042472,-0.05523586019156859 +145251,726.2550000042473,-0.05523581604428912 +145252,726.2600000042474,-0.05523577189514117 +145253,726.2650000042476,-0.05523572774412468 +145254,726.2700000042477,-0.05523568359123958 +145255,726.2750000042478,-0.05523563943648586 +145256,726.2800000042479,-0.05523559527986345 +145257,726.285000004248,-0.05523555112137231 +145258,726.2900000042481,-0.055235506961012405 +145259,726.2950000042482,-0.055235462798783684 +145260,726.3000000042483,-0.0552354186346861 +145261,726.3050000042484,-0.0552353744687196 +145262,726.3100000042485,-0.05523533030088413 +145263,726.3150000042486,-0.055235286131179666 +145264,726.3200000042488,-0.05523524195960614 +145265,726.3250000042489,-0.05523519778616352 +145266,726.330000004249,-0.05523515361085177 +145267,726.3350000042491,-0.05523510943367082 +145268,726.3400000042492,-0.05523506525462062 +145269,726.3450000042493,-0.05523502107370115 +145270,726.3500000042494,-0.05523497689091235 +145271,726.3550000042495,-0.055234932706254174 +145272,726.3600000042496,-0.05523488851972657 +145273,726.3650000042497,-0.0552348443313295 +145274,726.3700000042498,-0.05523480014106292 +145275,726.37500000425,-0.055234755948926774 +145276,726.3800000042501,-0.05523471175492102 +145277,726.3850000042502,-0.05523466755904562 +145278,726.3900000042503,-0.05523462336130052 +145279,726.3950000042504,-0.05523457916168567 +145280,726.4000000042505,-0.05523453496020103 +145281,726.4050000042506,-0.055234490756846555 +145282,726.4100000042507,-0.0552344465516222 +145283,726.4150000042508,-0.05523440234452791 +145284,726.4200000042509,-0.05523435813556364 +145285,726.425000004251,-0.05523431392472935 +145286,726.4300000042512,-0.055234269712025 +145287,726.4350000042513,-0.05523422549745052 +145288,726.4400000042514,-0.055234181281005906 +145289,726.4450000042515,-0.05523413706269108 +145290,726.4500000042516,-0.05523409284250599 +145291,726.4550000042517,-0.05523404862045061 +145292,726.4600000042518,-0.055234004396524886 +145293,726.4650000042519,-0.05523396017072876 +145294,726.470000004252,-0.05523391594306221 +145295,726.4750000042521,-0.055233871713525194 +145296,726.4800000042522,-0.05523382748211764 +145297,726.4850000042524,-0.0552337832488395 +145298,726.4900000042525,-0.055233739013690754 +145299,726.4950000042526,-0.055233694776671345 +145300,726.5000000042527,-0.05523365053778123 +145301,726.5050000042528,-0.05523360629702036 +145302,726.5100000042529,-0.05523356205438869 +145303,726.515000004253,-0.05523351780988617 +145304,726.5200000042531,-0.05523347356351275 +145305,726.5250000042532,-0.055233429315268395 +145306,726.5300000042533,-0.05523338506515306 +145307,726.5350000042534,-0.05523334081316669 +145308,726.5400000042536,-0.05523329655930925 +145309,726.5450000042537,-0.055233252303580685 +145310,726.5500000042538,-0.05523320804598096 +145311,726.5550000042539,-0.05523316378651002 +145312,726.560000004254,-0.05523311952516782 +145313,726.5650000042541,-0.055233075261954326 +145314,726.5700000042542,-0.05523303099686947 +145315,726.5750000042543,-0.055232986729913225 +145316,726.5800000042544,-0.055232942461085545 +145317,726.5850000042545,-0.05523289819038637 +145318,726.5900000042546,-0.05523285391781566 +145319,726.5950000042548,-0.05523280964337339 +145320,726.6000000042549,-0.05523276536705949 +145321,726.605000004255,-0.055232721088873914 +145322,726.6100000042551,-0.05523267680881663 +145323,726.6150000042552,-0.0552326325268876 +145324,726.6200000042553,-0.05523258824308675 +145325,726.6250000042554,-0.05523254395741407 +145326,726.6300000042555,-0.055232499669869484 +145327,726.6350000042556,-0.05523245538045296 +145328,726.6400000042557,-0.055232411089164456 +145329,726.6450000042558,-0.05523236679600392 +145330,726.650000004256,-0.05523232250097129 +145331,726.6550000042561,-0.05523227820406656 +145332,726.6600000042562,-0.05523223390528966 +145333,726.6650000042563,-0.055232189604640554 +145334,726.6700000042564,-0.05523214530211918 +145335,726.6750000042565,-0.05523210099772551 +145336,726.6800000042566,-0.05523205669145949 +145337,726.6850000042567,-0.05523201238332108 +145338,726.6900000042568,-0.055231968073310225 +145339,726.6950000042569,-0.0552319237614269 +145340,726.700000004257,-0.05523187944767104 +145341,726.7050000042572,-0.055231835132042606 +145342,726.7100000042573,-0.055231790814541555 +145343,726.7150000042574,-0.05523174649516784 +145344,726.7200000042575,-0.05523170217392142 +145345,726.7250000042576,-0.05523165785080225 +145346,726.7300000042577,-0.055231613525810276 +145347,726.7350000042578,-0.055231569198945465 +145348,726.7400000042579,-0.055231524870207764 +145349,726.745000004258,-0.05523148053959713 +145350,726.7500000042581,-0.055231436207113516 +145351,726.7550000042582,-0.05523139187275687 +145352,726.7600000042584,-0.05523134753652717 +145353,726.7650000042585,-0.05523130319842434 +145354,726.7700000042586,-0.05523125885844836 +145355,726.7750000042587,-0.05523121451659918 +145356,726.7800000042588,-0.055231170172876744 +145357,726.7850000042589,-0.05523112582728102 +145358,726.790000004259,-0.05523108147981196 +145359,726.7950000042591,-0.05523103713046952 +145360,726.8000000042592,-0.05523099277925364 +145361,726.8050000042593,-0.05523094842616431 +145362,726.8100000042595,-0.05523090407120145 +145363,726.8150000042596,-0.055230859714365026 +145364,726.8200000042597,-0.055230815355655 +145365,726.8250000042598,-0.05523077099507131 +145366,726.8300000042599,-0.05523072663261394 +145367,726.83500000426,-0.05523068226828282 +145368,726.8400000042601,-0.05523063790207792 +145369,726.8450000042602,-0.05523059353399919 +145370,726.8500000042603,-0.05523054916404658 +145371,726.8550000042604,-0.055230504792220046 +145372,726.8600000042605,-0.055230460418519554 +145373,726.8650000042607,-0.055230416042945055 +145374,726.8700000042608,-0.05523037166549649 +145375,726.8750000042609,-0.055230327286173844 +145376,726.880000004261,-0.05523028290497704 +145377,726.8850000042611,-0.05523023852190606 +145378,726.8900000042612,-0.05523019413696085 +145379,726.8950000042613,-0.05523014975014135 +145380,726.9000000042614,-0.05523010536144754 +145381,726.9050000042615,-0.05523006097087937 +145382,726.9100000042616,-0.05523001657843678 +145383,726.9150000042617,-0.055229972184119736 +145384,726.9200000042619,-0.05522992778792819 +145385,726.925000004262,-0.05522988338986211 +145386,726.9300000042621,-0.05522983898992143 +145387,726.9350000042622,-0.05522979458810613 +145388,726.9400000042623,-0.05522975018441615 +145389,726.9450000042624,-0.05522970577885144 +145390,726.9500000042625,-0.05522966137141198 +145391,726.9550000042626,-0.05522961696209771 +145392,726.9600000042627,-0.05522957255090857 +145393,726.9650000042628,-0.05522952813784454 +145394,726.9700000042629,-0.05522948372290557 +145395,726.975000004263,-0.05522943930609161 +145396,726.9800000042632,-0.05522939488740262 +145397,726.9850000042633,-0.05522935046683856 +145398,726.9900000042634,-0.055229306044399365 +145399,726.9950000042635,-0.05522926162008501 +145400,727.0000000042636,-0.05522921719389545 +145401,727.0050000042637,-0.05522917276583064 +145402,727.0100000042638,-0.055229128335890526 +145403,727.0150000042639,-0.05522908390407507 +145404,727.020000004264,-0.05522903947038424 +145405,727.0250000042641,-0.05522899503481797 +145406,727.0300000042643,-0.055228950597376224 +145407,727.0350000042644,-0.05522890615805898 +145408,727.0400000042645,-0.05522886171686616 +145409,727.0450000042646,-0.055228817273797734 +145410,727.0500000042647,-0.05522877282885365 +145411,727.0550000042648,-0.05522872838203388 +145412,727.0600000042649,-0.05522868393333837 +145413,727.065000004265,-0.05522863948276708 +145414,727.0700000042651,-0.05522859503031997 +145415,727.0750000042652,-0.05522855057599698 +145416,727.0800000042653,-0.05522850611979807 +145417,727.0850000042655,-0.05522846166172322 +145418,727.0900000042656,-0.05522841720177236 +145419,727.0950000042657,-0.05522837273994546 +145420,727.1000000042658,-0.05522832827624247 +145421,727.1050000042659,-0.05522828381066333 +145422,727.110000004266,-0.055228239343208016 +145423,727.1150000042661,-0.05522819487387649 +145424,727.1200000042662,-0.05522815040266869 +145425,727.1250000042663,-0.05522810592958459 +145426,727.1300000042664,-0.055228061454624125 +145427,727.1350000042665,-0.055228016977787266 +145428,727.1400000042667,-0.05522797249907397 +145429,727.1450000042668,-0.055227928018484196 +145430,727.1500000042669,-0.05522788353601789 +145431,727.155000004267,-0.055227839051675005 +145432,727.1600000042671,-0.05522779456545551 +145433,727.1650000042672,-0.05522775007735935 +145434,727.1700000042673,-0.05522770558738648 +145435,727.1750000042674,-0.055227661095536874 +145436,727.1800000042675,-0.05522761660181047 +145437,727.1850000042676,-0.05522757210620723 +145438,727.1900000042677,-0.055227527608727116 +145439,727.1950000042679,-0.05522748310937008 +145440,727.200000004268,-0.05522743860813609 +145441,727.2050000042681,-0.05522739410502507 +145442,727.2100000042682,-0.055227349600037 +145443,727.2150000042683,-0.055227305093171836 +145444,727.2200000042684,-0.05522726058442953 +145445,727.2250000042685,-0.055227216073810044 +145446,727.2300000042686,-0.05522717156131333 +145447,727.2350000042687,-0.05522712704693934 +145448,727.2400000042688,-0.05522708253068805 +145449,727.245000004269,-0.05522703801255939 +145450,727.250000004269,-0.05522699349255333 +145451,727.2550000042692,-0.05522694897066984 +145452,727.2600000042693,-0.05522690444690885 +145453,727.2650000042694,-0.055226859921270334 +145454,727.2700000042695,-0.055226815393754236 +145455,727.2750000042696,-0.05522677086436052 +145456,727.2800000042697,-0.05522672633308915 +145457,727.2850000042698,-0.055226681799940065 +145458,727.2900000042699,-0.05522663726491324 +145459,727.29500000427,-0.05522659272800861 +145460,727.3000000042701,-0.05522654818922615 +145461,727.3050000042703,-0.05522650364856581 +145462,727.3100000042704,-0.055226459106027546 +145463,727.3150000042705,-0.05522641456161132 +145464,727.3200000042706,-0.05522637001531709 +145465,727.3250000042707,-0.0552263254671448 +145466,727.3300000042708,-0.05522628091709443 +145467,727.3350000042709,-0.0552262363651659 +145468,727.340000004271,-0.0552261918113592 +145469,727.3450000042711,-0.05522614725567428 +145470,727.3500000042712,-0.055226102698111096 +145471,727.3550000042713,-0.055226058138669584 +145472,727.3600000042715,-0.055226013577349735 +145473,727.3650000042716,-0.05522596901415148 +145474,727.3700000042717,-0.05522592444907478 +145475,727.3750000042718,-0.0552258798821196 +145476,727.3800000042719,-0.055225835313285884 +145477,727.385000004272,-0.05522579074257361 +145478,727.3900000042721,-0.055225746169982715 +145479,727.3950000042722,-0.05522570159551316 +145480,727.4000000042723,-0.05522565701916492 +145481,727.4050000042724,-0.055225612440937925 +145482,727.4100000042725,-0.055225567860832145 +145483,727.4150000042727,-0.055225523278847534 +145484,727.4200000042728,-0.055225478694984065 +145485,727.4250000042729,-0.055225434109241675 +145486,727.430000004273,-0.05522538952162033 +145487,727.4350000042731,-0.05522534493211998 +145488,727.4400000042732,-0.055225300340740587 +145489,727.4450000042733,-0.05522525574748211 +145490,727.4500000042734,-0.0552252111523445 +145491,727.4550000042735,-0.05522516655532772 +145492,727.4600000042736,-0.05522512195643172 +145493,727.4650000042737,-0.05522507735565647 +145494,727.4700000042739,-0.05522503275300191 +145495,727.475000004274,-0.05522498814846802 +145496,727.4800000042741,-0.05522494354205473 +145497,727.4850000042742,-0.05522489893376202 +145498,727.4900000042743,-0.05522485432358984 +145499,727.4950000042744,-0.05522480971153814 +145500,727.5000000042745,-0.055224765097606876 +145501,727.5050000042746,-0.05522472048179601 +145502,727.5100000042747,-0.05522467586410551 +145503,727.5150000042748,-0.05522463124453532 +145504,727.520000004275,-0.0552245866230854 +145505,727.5250000042751,-0.05522454199975572 +145506,727.5300000042752,-0.05522449737454622 +145507,727.5350000042753,-0.055224452747456854 +145508,727.5400000042754,-0.05522440811848759 +145509,727.5450000042755,-0.05522436348763839 +145510,727.5500000042756,-0.0552243188549092 +145511,727.5550000042757,-0.05522427422029999 +145512,727.5600000042758,-0.055224229583810715 +145513,727.5650000042759,-0.05522418494544131 +145514,727.570000004276,-0.05522414030519175 +145515,727.5750000042761,-0.055224095663062 +145516,727.5800000042763,-0.05522405101905201 +145517,727.5850000042764,-0.055224006373161744 +145518,727.5900000042765,-0.05522396172539115 +145519,727.5950000042766,-0.05522391707574019 +145520,727.6000000042767,-0.05522387242420881 +145521,727.6050000042768,-0.05522382777079697 +145522,727.6100000042769,-0.055223783115504646 +145523,727.615000004277,-0.055223738458331784 +145524,727.6200000042771,-0.055223693799278335 +145525,727.6250000042772,-0.05522364913834427 +145526,727.6300000042773,-0.05522360447552954 +145527,727.6350000042775,-0.05522355981083411 +145528,727.6400000042776,-0.05522351514425792 +145529,727.6450000042777,-0.05522347047580094 +145530,727.6500000042778,-0.055223425805463126 +145531,727.6550000042779,-0.05522338113324443 +145532,727.660000004278,-0.05522333645914482 +145533,727.6650000042781,-0.05522329178316424 +145534,727.6700000042782,-0.055223247105302666 +145535,727.6750000042783,-0.055223202425560045 +145536,727.6800000042784,-0.055223157743936345 +145537,727.6850000042785,-0.055223113060431504 +145538,727.6900000042787,-0.05522306837504549 +145539,727.6950000042788,-0.055223023687778254 +145540,727.7000000042789,-0.05522297899862977 +145541,727.705000004279,-0.05522293430759999 +145542,727.7100000042791,-0.05522288961468885 +145543,727.7150000042792,-0.05522284491989635 +145544,727.7200000042793,-0.05522280022322241 +145545,727.7250000042794,-0.055222755524666996 +145546,727.7300000042795,-0.05522271082423008 +145547,727.7350000042796,-0.0552226661219116 +145548,727.7400000042798,-0.05522262141771154 +145549,727.7450000042799,-0.05522257671162984 +145550,727.75000000428,-0.05522253200366646 +145551,727.7550000042801,-0.055222487293821364 +145552,727.7600000042802,-0.0552224425820945 +145553,727.7650000042803,-0.05522239786848583 +145554,727.7700000042804,-0.05522235315299531 +145555,727.7750000042805,-0.05522230843562291 +145556,727.7800000042806,-0.055222263716368576 +145557,727.7850000042807,-0.05522221899523227 +145558,727.7900000042808,-0.05522217427221394 +145559,727.795000004281,-0.05522212954731356 +145560,727.8000000042811,-0.05522208482053108 +145561,727.8050000042812,-0.05522204009186646 +145562,727.8100000042813,-0.05522199536131966 +145563,727.8150000042814,-0.055221950628890626 +145564,727.8200000042815,-0.05522190589457932 +145565,727.8250000042816,-0.055221861158385725 +145566,727.8300000042817,-0.055221816420309766 +145567,727.8350000042818,-0.05522177168035141 +145568,727.8400000042819,-0.05522172693851063 +145569,727.845000004282,-0.05522168219478736 +145570,727.8500000042822,-0.055221637449181585 +145571,727.8550000042823,-0.05522159270169325 +145572,727.8600000042824,-0.055221547952322314 +145573,727.8650000042825,-0.05522150320106873 +145574,727.8700000042826,-0.05522145844793246 +145575,727.8750000042827,-0.055221413692913474 +145576,727.8800000042828,-0.05522136893601171 +145577,727.8850000042829,-0.055221324177227145 +145578,727.890000004283,-0.05522127941655972 +145579,727.8950000042831,-0.05522123465400941 +145580,727.9000000042832,-0.05522118988957615 +145581,727.9050000042834,-0.05522114512325993 +145582,727.9100000042835,-0.055221100355060684 +145583,727.9150000042836,-0.055221055584978376 +145584,727.9200000042837,-0.05522101081301297 +145585,727.9250000042838,-0.05522096603916441 +145586,727.9300000042839,-0.05522092126343267 +145587,727.935000004284,-0.055220876485817715 +145588,727.9400000042841,-0.05522083170631947 +145589,727.9450000042842,-0.055220786924937926 +145590,727.9500000042843,-0.05522074214167303 +145591,727.9550000042844,-0.05522069735652474 +145592,727.9600000042846,-0.055220652569493024 +145593,727.9650000042847,-0.055220607780577836 +145594,727.9700000042848,-0.05522056298977913 +145595,727.9750000042849,-0.05522051819709685 +145596,727.980000004285,-0.05522047340253099 +145597,727.9850000042851,-0.05522042860608147 +145598,727.9900000042852,-0.055220383807748276 +145599,727.9950000042853,-0.05522033900753135 +145600,728.0000000042854,-0.05522029420543066 +145601,728.0050000042855,-0.05522024940144617 +145602,728.0100000042856,-0.055220204595577825 +145603,728.0150000042858,-0.055220159787825594 +145604,728.0200000042859,-0.05522011497818943 +145605,728.025000004286,-0.05522007016666929 +145606,728.0300000042861,-0.055220025353265145 +145607,728.0350000042862,-0.055219980537976936 +145608,728.0400000042863,-0.05521993572080463 +145609,728.0450000042864,-0.05521989090174819 +145610,728.0500000042865,-0.05521984608080757 +145611,728.0550000042866,-0.055219801257982724 +145612,728.0600000042867,-0.05521975643327362 +145613,728.0650000042868,-0.05521971160668021 +145614,728.070000004287,-0.055219666778202454 +145615,728.0750000042871,-0.055219621947840324 +145616,728.0800000042872,-0.05521957711559377 +145617,728.0850000042873,-0.05521953228146274 +145618,728.0900000042874,-0.055219487445447184 +145619,728.0950000042875,-0.055219442607547096 +145620,728.1000000042876,-0.05521939776776242 +145621,728.1050000042877,-0.05521935292609311 +145622,728.1100000042878,-0.055219308082539116 +145623,728.1150000042879,-0.055219263237100406 +145624,728.120000004288,-0.055219218389776954 +145625,728.1250000042882,-0.055219173540568704 +145626,728.1300000042883,-0.055219128689475615 +145627,728.1350000042884,-0.05521908383649763 +145628,728.1400000042885,-0.05521903898163474 +145629,728.1450000042886,-0.05521899412488689 +145630,728.1500000042887,-0.05521894926625403 +145631,728.1550000042888,-0.055218904405736124 +145632,728.1600000042889,-0.05521885954333314 +145633,728.165000004289,-0.05521881467904503 +145634,728.1700000042891,-0.05521876981287176 +145635,728.1750000042892,-0.05521872494481327 +145636,728.1800000042894,-0.05521868007486954 +145637,728.1850000042895,-0.055218635203040524 +145638,728.1900000042896,-0.055218590329326175 +145639,728.1950000042897,-0.05521854545372647 +145640,728.2000000042898,-0.05521850057624133 +145641,728.2050000042899,-0.05521845569687075 +145642,728.21000000429,-0.055218410815614676 +145643,728.2150000042901,-0.05521836593247306 +145644,728.2200000042902,-0.05521832104744588 +145645,728.2250000042903,-0.055218276160533084 +145646,728.2300000042904,-0.05521823127173463 +145647,728.2350000042906,-0.05521818638105047 +145648,728.2400000042907,-0.05521814148848059 +145649,728.2450000042908,-0.055218096594024914 +145650,728.2500000042909,-0.05521805169768342 +145651,728.255000004291,-0.055218006799456064 +145652,728.2600000042911,-0.05521796189934281 +145653,728.2650000042912,-0.05521791699734361 +145654,728.2700000042913,-0.05521787209345842 +145655,728.2750000042914,-0.055217827187687224 +145656,728.2800000042915,-0.05521778228002995 +145657,728.2850000042916,-0.055217737370486575 +145658,728.2900000042918,-0.05521769245905706 +145659,728.2950000042919,-0.055217647545741357 +145660,728.300000004292,-0.05521760263053943 +145661,728.3050000042921,-0.05521755771345123 +145662,728.3100000042922,-0.05521751279447672 +145663,728.3150000042923,-0.05521746787361586 +145664,728.3200000042924,-0.05521742295086862 +145665,728.3250000042925,-0.055217378026234956 +145666,728.3300000042926,-0.055217333099714806 +145667,728.3350000042927,-0.05521728817130816 +145668,728.3400000042928,-0.05521724324101496 +145669,728.345000004293,-0.05521719830883517 +145670,728.3500000042931,-0.05521715337476874 +145671,728.3550000042932,-0.055217108438815644 +145672,728.3600000042933,-0.05521706350097583 +145673,728.3650000042934,-0.05521701856124926 +145674,728.3700000042935,-0.055216973619635894 +145675,728.3750000042936,-0.055216928676135694 +145676,728.3800000042937,-0.05521688373074862 +145677,728.3850000042938,-0.05521683878347463 +145678,728.3900000042939,-0.055216793834313695 +145679,728.395000004294,-0.055216748883265755 +145680,728.4000000042942,-0.055216703930330784 +145681,728.4050000042943,-0.055216658975508724 +145682,728.4100000042944,-0.05521661401879955 +145683,728.4150000042945,-0.05521656906020322 +145684,728.4200000042946,-0.055216524099719694 +145685,728.4250000042947,-0.05521647913734893 +145686,728.4300000042948,-0.05521643417309089 +145687,728.4350000042949,-0.05521638920694552 +145688,728.440000004295,-0.0552163442389128 +145689,728.4450000042951,-0.05521629926899267 +145690,728.4500000042952,-0.055216254297185116 +145691,728.4550000042954,-0.05521620932349008 +145692,728.4600000042955,-0.05521616434790752 +145693,728.4650000042956,-0.0552161193704374 +145694,728.4700000042957,-0.05521607439107967 +145695,728.4750000042958,-0.055216029409834305 +145696,728.4800000042959,-0.05521598442670127 +145697,728.485000004296,-0.0552159394416805 +145698,728.4900000042961,-0.055215894454771985 +145699,728.4950000042962,-0.05521584946597565 +145700,728.5000000042963,-0.05521580447529148 +145701,728.5050000042964,-0.05521575948271944 +145702,728.5100000042966,-0.05521571448825947 +145703,728.5150000042967,-0.05521566949191153 +145704,728.5200000042968,-0.05521562449367559 +145705,728.5250000042969,-0.05521557949355162 +145706,728.530000004297,-0.055215534491539556 +145707,728.5350000042971,-0.05521548948763937 +145708,728.5400000042972,-0.05521544448185104 +145709,728.5450000042973,-0.05521539947417449 +145710,728.5500000042974,-0.055215354464609706 +145711,728.5550000042975,-0.055215309453156634 +145712,728.5600000042976,-0.05521526443981525 +145713,728.5650000042978,-0.05521521942458549 +145714,728.5700000042979,-0.05521517440746733 +145715,728.575000004298,-0.05521512938846074 +145716,728.5800000042981,-0.055215084367565656 +145717,728.5850000042982,-0.05521503934478206 +145718,728.5900000042983,-0.05521499432010989 +145719,728.5950000042984,-0.05521494929354913 +145720,728.6000000042985,-0.05521490426509972 +145721,728.6050000042986,-0.05521485923476163 +145722,728.6100000042987,-0.05521481420253482 +145723,728.6150000042988,-0.055214769168419255 +145724,728.620000004299,-0.055214724132414884 +145725,728.6250000042991,-0.05521467909452167 +145726,728.6300000042992,-0.05521463405473958 +145727,728.6350000042993,-0.05521458901306856 +145728,728.6400000042994,-0.055214543969508596 +145729,728.6450000042995,-0.05521449892405963 +145730,728.6500000042996,-0.05521445387672162 +145731,728.6550000042997,-0.055214408827494524 +145732,728.6600000042998,-0.05521436377637832 +145733,728.6650000042999,-0.05521431872337296 +145734,728.6700000043,-0.055214273668478385 +145735,728.6750000043002,-0.05521422861169458 +145736,728.6800000043003,-0.055214183553021504 +145737,728.6850000043004,-0.0552141384924591 +145738,728.6900000043005,-0.05521409343000734 +145739,728.6950000043006,-0.055214048365666187 +145740,728.7000000043007,-0.05521400329943559 +145741,728.7050000043008,-0.055213958231315516 +145742,728.7100000043009,-0.05521391316130594 +145743,728.715000004301,-0.0552138680894068 +145744,728.7200000043011,-0.05521382301561808 +145745,728.7250000043013,-0.0552137779399397 +145746,728.7300000043014,-0.055213732862371655 +145747,728.7350000043015,-0.05521368778291391 +145748,728.7400000043016,-0.0552136427015664 +145749,728.7450000043017,-0.055213597618329106 +145750,728.7500000043018,-0.055213552533201975 +145751,728.7550000043019,-0.05521350744618498 +145752,728.760000004302,-0.05521346235727806 +145753,728.7650000043021,-0.055213417266481206 +145754,728.7700000043022,-0.055213372173794344 +145755,728.7750000043023,-0.05521332707921745 +145756,728.7800000043025,-0.0552132819827505 +145757,728.7850000043026,-0.05521323688439344 +145758,728.7900000043027,-0.055213191784146236 +145759,728.7950000043028,-0.05521314668200883 +145760,728.8000000043029,-0.055213101577981205 +145761,728.805000004303,-0.055213056472063315 +145762,728.8100000043031,-0.055213011364255125 +145763,728.8150000043032,-0.05521296625455658 +145764,728.8200000043033,-0.05521292114296766 +145765,728.8250000043034,-0.055212876029488316 +145766,728.8300000043035,-0.0552128309141185 +145767,728.8350000043037,-0.055212785796858184 +145768,728.8400000043038,-0.05521274067770733 +145769,728.8450000043039,-0.05521269555666589 +145770,728.850000004304,-0.05521265043373384 +145771,728.8550000043041,-0.055212605308911124 +145772,728.8600000043042,-0.05521256018219771 +145773,728.8650000043043,-0.05521251505359355 +145774,728.8700000043044,-0.055212469923098625 +145775,728.8750000043045,-0.05521242479071289 +145776,728.8800000043046,-0.055212379656436286 +145777,728.8850000043047,-0.055212334520268795 +145778,728.8900000043049,-0.05521228938221037 +145779,728.895000004305,-0.05521224424226097 +145780,728.9000000043051,-0.05521219910042055 +145781,728.9050000043052,-0.055212153956689096 +145782,728.9100000043053,-0.05521210881106654 +145783,728.9150000043054,-0.05521206366355286 +145784,728.9200000043055,-0.055212018514148004 +145785,728.9250000043056,-0.055211973362851934 +145786,728.9300000043057,-0.05521192820966463 +145787,728.9350000043058,-0.05521188305458604 +145788,728.940000004306,-0.05521183789761612 +145789,728.945000004306,-0.05521179273875484 +145790,728.9500000043062,-0.05521174757800216 +145791,728.9550000043063,-0.055211702415358034 +145792,728.9600000043064,-0.05521165725082243 +145793,728.9650000043065,-0.055211612084395296 +145794,728.9700000043066,-0.05521156691607662 +145795,728.9750000043067,-0.055211521745866333 +145796,728.9800000043068,-0.05521147657376441 +145797,728.9850000043069,-0.05521143139977082 +145798,728.990000004307,-0.055211386223885515 +145799,728.9950000043071,-0.05521134104610845 +145800,729.0000000043073,-0.05521129586643959 +145801,729.0050000043074,-0.05521125068487889 +145802,729.0100000043075,-0.05521120550142634 +145803,729.0150000043076,-0.05521116031608187 +145804,729.0200000043077,-0.05521111512884547 +145805,729.0250000043078,-0.05521106993971706 +145806,729.0300000043079,-0.05521102474869663 +145807,729.035000004308,-0.055210979555784134 +145808,729.0400000043081,-0.055210934360979534 +145809,729.0450000043082,-0.05521088916428279 +145810,729.0500000043083,-0.05521084396569387 +145811,729.0550000043085,-0.05521079876521273 +145812,729.0600000043086,-0.05521075356283933 +145813,729.0650000043087,-0.055210708358573626 +145814,729.0700000043088,-0.055210663152415594 +145815,729.0750000043089,-0.05521061794436519 +145816,729.080000004309,-0.055210572734422356 +145817,729.0850000043091,-0.05521052752258709 +145818,729.0900000043092,-0.05521048230885931 +145819,729.0950000043093,-0.05521043709323902 +145820,729.1000000043094,-0.05521039187572616 +145821,729.1050000043095,-0.05521034665632068 +145822,729.1100000043097,-0.055210301435022556 +145823,729.1150000043098,-0.05521025621183177 +145824,729.1200000043099,-0.05521021098674824 +145825,729.12500000431,-0.05521016575977195 +145826,729.1300000043101,-0.05521012053090287 +145827,729.1350000043102,-0.055210075300140944 +145828,729.1400000043103,-0.05521003006748613 +145829,729.1450000043104,-0.0552099848329384 +145830,729.1500000043105,-0.05520993959649772 +145831,729.1550000043106,-0.05520989435816405 +145832,729.1600000043107,-0.05520984911793735 +145833,729.1650000043109,-0.05520980387581759 +145834,729.170000004311,-0.0552097586318047 +145835,729.1750000043111,-0.05520971338589867 +145836,729.1800000043112,-0.055209668138099445 +145837,729.1850000043113,-0.055209622888407 +145838,729.1900000043114,-0.05520957763682129 +145839,729.1950000043115,-0.055209532383342294 +145840,729.2000000043116,-0.05520948712796995 +145841,729.2050000043117,-0.05520944187070423 +145842,729.2100000043118,-0.055209396611545086 +145843,729.215000004312,-0.055209351350492486 +145844,729.220000004312,-0.05520930608754639 +145845,729.2250000043122,-0.05520926082270677 +145846,729.2300000043123,-0.05520921555597357 +145847,729.2350000043124,-0.055209170287346766 +145848,729.2400000043125,-0.05520912501682632 +145849,729.2450000043126,-0.05520907974441218 +145850,729.2500000043127,-0.055209034470104314 +145851,729.2550000043128,-0.0552089891939027 +145852,729.2600000043129,-0.05520894391580727 +145853,729.265000004313,-0.055208898635818 +145854,729.2700000043131,-0.055208853353934856 +145855,729.2750000043133,-0.0552088080701578 +145856,729.2800000043134,-0.055208762784486796 +145857,729.2850000043135,-0.05520871749692179 +145858,729.2900000043136,-0.055208672207462756 +145859,729.2950000043137,-0.05520862691610965 +145860,729.3000000043138,-0.05520858162286244 +145861,729.3050000043139,-0.055208536327721096 +145862,729.310000004314,-0.05520849103068555 +145863,729.3150000043141,-0.05520844573175579 +145864,729.3200000043142,-0.055208400430931774 +145865,729.3250000043143,-0.055208355128213454 +145866,729.3300000043145,-0.0552083098236008 +145867,729.3350000043146,-0.05520826451709377 +145868,729.3400000043147,-0.05520821920869233 +145869,729.3450000043148,-0.05520817389839644 +145870,729.3500000043149,-0.05520812858620606 +145871,729.355000004315,-0.05520808327212116 +145872,729.3600000043151,-0.05520803795614168 +145873,729.3650000043152,-0.05520799263826761 +145874,729.3700000043153,-0.055207947318498894 +145875,729.3750000043154,-0.05520790199683551 +145876,729.3800000043155,-0.05520785667327739 +145877,729.3850000043157,-0.05520781134782452 +145878,729.3900000043158,-0.055207766020476855 +145879,729.3950000043159,-0.055207720691234356 +145880,729.400000004316,-0.055207675360097 +145881,729.4050000043161,-0.055207630027064726 +145882,729.4100000043162,-0.05520758469213752 +145883,729.4150000043163,-0.05520753935531532 +145884,729.4200000043164,-0.05520749401659811 +145885,729.4250000043165,-0.05520744867598583 +145886,729.4300000043166,-0.055207403333478455 +145887,729.4350000043167,-0.055207357989075945 +145888,729.4400000043169,-0.05520731264277826 +145889,729.445000004317,-0.05520726729458537 +145890,729.4500000043171,-0.055207221944497224 +145891,729.4550000043172,-0.05520717659251379 +145892,729.4600000043173,-0.05520713123863503 +145893,729.4650000043174,-0.05520708588286091 +145894,729.4700000043175,-0.05520704052519139 +145895,729.4750000043176,-0.055206995165626424 +145896,729.4800000043177,-0.05520694980416599 +145897,729.4850000043178,-0.055206904440810035 +145898,729.490000004318,-0.05520685907555854 +145899,729.4950000043181,-0.05520681370841145 +145900,729.5000000043182,-0.055206768339368724 +145901,729.5050000043183,-0.05520672296843034 +145902,729.5100000043184,-0.05520667759559626 +145903,729.5150000043185,-0.05520663222086644 +145904,729.5200000043186,-0.05520658684424083 +145905,729.5250000043187,-0.05520654146571941 +145906,729.5300000043188,-0.055206496085302134 +145907,729.5350000043189,-0.05520645070298896 +145908,729.540000004319,-0.05520640531877986 +145909,729.5450000043191,-0.0552063599326748 +145910,729.5500000043193,-0.05520631454467373 +145911,729.5550000043194,-0.055206269154776624 +145912,729.5600000043195,-0.055206223762983425 +145913,729.5650000043196,-0.055206178369294125 +145914,729.5700000043197,-0.05520613297370866 +145915,729.5750000043198,-0.055206087576227005 +145916,729.5800000043199,-0.05520604217684911 +145917,729.58500000432,-0.055205996775574945 +145918,729.5900000043201,-0.055205951372404485 +145919,729.5950000043202,-0.055205905967337675 +145920,729.6000000043203,-0.05520586056037449 +145921,729.6050000043205,-0.05520581515151488 +145922,729.6100000043206,-0.055205769740758824 +145923,729.6150000043207,-0.05520572432810627 +145924,729.6200000043208,-0.05520567891355718 +145925,729.6250000043209,-0.05520563349711152 +145926,729.630000004321,-0.055205588078769255 +145927,729.6350000043211,-0.05520554265853035 +145928,729.6400000043212,-0.055205497236394764 +145929,729.6450000043213,-0.05520545181236246 +145930,729.6500000043214,-0.0552054063864334 +145931,729.6550000043216,-0.05520536095860753 +145932,729.6600000043217,-0.05520531552888484 +145933,729.6650000043218,-0.05520527009726529 +145934,729.6700000043219,-0.055205224663748824 +145935,729.675000004322,-0.05520517922833541 +145936,729.6800000043221,-0.05520513379102502 +145937,729.6850000043222,-0.05520508835181761 +145938,729.6900000043223,-0.05520504291071315 +145939,729.6950000043224,-0.05520499746771159 +145940,729.7000000043225,-0.055204952022812906 +145941,729.7050000043226,-0.05520490657601705 +145942,729.7100000043228,-0.05520486112732399 +145943,729.7150000043229,-0.05520481567673369 +145944,729.720000004323,-0.05520477022424611 +145945,729.7250000043231,-0.0552047247698612 +145946,729.7300000043232,-0.055204679313578954 +145947,729.7350000043233,-0.05520463385539931 +145948,729.7400000043234,-0.05520458839532223 +145949,729.7450000043235,-0.055204542933347686 +145950,729.7500000043236,-0.055204497469475644 +145951,729.7550000043237,-0.05520445200370605 +145952,729.7600000043238,-0.05520440653603889 +145953,729.765000004324,-0.055204361066474104 +145954,729.7700000043241,-0.05520431559501168 +145955,729.7750000043242,-0.05520427012165155 +145956,729.7800000043243,-0.0552042246463937 +145957,729.7850000043244,-0.05520417916923809 +145958,729.7900000043245,-0.055204133690184676 +145959,729.7950000043246,-0.05520408820923342 +145960,729.8000000043247,-0.05520404272638429 +145961,729.8050000043248,-0.05520399724163724 +145962,729.8100000043249,-0.05520395175499225 +145963,729.815000004325,-0.05520390626644927 +145964,729.8200000043252,-0.05520386077600826 +145965,729.8250000043253,-0.05520381528366919 +145966,729.8300000043254,-0.05520376978943202 +145967,729.8350000043255,-0.055203724293296716 +145968,729.8400000043256,-0.05520367879526324 +145969,729.8450000043257,-0.05520363329533156 +145970,729.8500000043258,-0.055203587793501624 +145971,729.8550000043259,-0.05520354228977341 +145972,729.860000004326,-0.05520349678414688 +145973,729.8650000043261,-0.05520345127662199 +145974,729.8700000043262,-0.055203405767198704 +145975,729.8750000043264,-0.055203360255876986 +145976,729.8800000043265,-0.0552033147426568 +145977,729.8850000043266,-0.0552032692275381 +145978,729.8900000043267,-0.05520322371052086 +145979,729.8950000043268,-0.05520317819160505 +145980,729.9000000043269,-0.05520313267079061 +145981,729.905000004327,-0.05520308714807751 +145982,729.9100000043271,-0.05520304162346574 +145983,729.9150000043272,-0.05520299609695523 +145984,729.9200000043273,-0.05520295056854596 +145985,729.9250000043274,-0.05520290503823789 +145986,729.9300000043276,-0.055202859506030974 +145987,729.9350000043277,-0.05520281397192518 +145988,729.9400000043278,-0.05520276843592048 +145989,729.9450000043279,-0.05520272289801683 +145990,729.950000004328,-0.05520267735821421 +145991,729.9550000043281,-0.055202631816512554 +145992,729.9600000043282,-0.05520258627291183 +145993,729.9650000043283,-0.055202540727412014 +145994,729.9700000043284,-0.05520249518001308 +145995,729.9750000043285,-0.05520244963071495 +145996,729.9800000043286,-0.05520240407951764 +145997,729.9850000043288,-0.055202358526421066 +145998,729.9900000043289,-0.055202312971425214 +145999,729.995000004329,-0.055202267414530055 +146000,730.0000000043291,-0.05520222185573555 +146001,730.0050000043292,-0.05520217629504164 +146002,730.0100000043293,-0.0552021307324483 +146003,730.0150000043294,-0.0552020851679555 +146004,730.0200000043295,-0.0552020396015632 +146005,730.0250000043296,-0.05520199403327136 +146006,730.0300000043297,-0.05520194846307994 +146007,730.0350000043298,-0.05520190289098892 +146008,730.04000000433,-0.05520185731699826 +146009,730.0450000043301,-0.05520181174110791 +146010,730.0500000043302,-0.05520176616331783 +146011,730.0550000043303,-0.055201720583628 +146012,730.0600000043304,-0.055201675002038375 +146013,730.0650000043305,-0.05520162941854892 +146014,730.0700000043306,-0.05520158383315959 +146015,730.0750000043307,-0.05520153824587037 +146016,730.0800000043308,-0.0552014926566812 +146017,730.0850000043309,-0.05520144706559205 +146018,730.090000004331,-0.0552014014726029 +146019,730.0950000043312,-0.05520135587771368 +146020,730.1000000043313,-0.05520131028092439 +146021,730.1050000043314,-0.05520126468223496 +146022,730.1100000043315,-0.055201219081645395 +146023,730.1150000043316,-0.05520117347915562 +146024,730.1200000043317,-0.0552011278747656 +146025,730.1250000043318,-0.05520108226847533 +146026,730.1300000043319,-0.055201036660284745 +146027,730.135000004332,-0.05520099105019382 +146028,730.1400000043321,-0.05520094543820251 +146029,730.1450000043322,-0.0552008998243108 +146030,730.1500000043324,-0.05520085420851862 +146031,730.1550000043325,-0.05520080859082596 +146032,730.1600000043326,-0.055200762971232775 +146033,730.1650000043327,-0.05520071734973904 +146034,730.1700000043328,-0.05520067172634469 +146035,730.1750000043329,-0.05520062610104972 +146036,730.180000004333,-0.05520058047385407 +146037,730.1850000043331,-0.055200534844757725 +146038,730.1900000043332,-0.05520048921376063 +146039,730.1950000043333,-0.055200443580862756 +146040,730.2000000043334,-0.05520039794606406 +146041,730.2050000043336,-0.05520035230936452 +146042,730.2100000043337,-0.055200306670764095 +146043,730.2150000043338,-0.05520026103026274 +146044,730.2200000043339,-0.05520021538786043 +146045,730.225000004334,-0.05520016974355711 +146046,730.2300000043341,-0.055200124097352754 +146047,730.2350000043342,-0.05520007844924735 +146048,730.2400000043343,-0.055200032799240815 +146049,730.2450000043344,-0.055199987147333145 +146050,730.2500000043345,-0.05519994149352431 +146051,730.2550000043346,-0.05519989583781424 +146052,730.2600000043348,-0.05519985018020293 +146053,730.2650000043349,-0.055199804520690336 +146054,730.270000004335,-0.055199758859276415 +146055,730.2750000043351,-0.05519971319596113 +146056,730.2800000043352,-0.05519966753074445 +146057,730.2850000043353,-0.055199621863626334 +146058,730.2900000043354,-0.05519957619460675 +146059,730.2950000043355,-0.05519953052368567 +146060,730.3000000043356,-0.05519948485086305 +146061,730.3050000043357,-0.05519943917613884 +146062,730.3100000043358,-0.05519939349951302 +146063,730.315000004336,-0.05519934782098555 +146064,730.3200000043361,-0.0551993021405564 +146065,730.3250000043362,-0.055199256458225536 +146066,730.3300000043363,-0.0551992107739929 +146067,730.3350000043364,-0.05519916508785848 +146068,730.3400000043365,-0.05519911939982222 +146069,730.3450000043366,-0.055199073709884104 +146070,730.3500000043367,-0.05519902801804409 +146071,730.3550000043368,-0.055198982324302134 +146072,730.3600000043369,-0.055198936628658206 +146073,730.365000004337,-0.055198890931112264 +146074,730.3700000043372,-0.05519884523166428 +146075,730.3750000043373,-0.0551987995303142 +146076,730.3800000043374,-0.05519875382706202 +146077,730.3850000043375,-0.05519870812190767 +146078,730.3900000043376,-0.05519866241485114 +146079,730.3950000043377,-0.05519861670589239 +146080,730.4000000043378,-0.05519857099503138 +146081,730.4050000043379,-0.055198525282268054 +146082,730.410000004338,-0.055198479567602404 +146083,730.4150000043381,-0.05519843385103438 +146084,730.4200000043382,-0.05519838813256395 +146085,730.4250000043384,-0.055198342412191084 +146086,730.4300000043385,-0.055198296689915737 +146087,730.4350000043386,-0.05519825096573787 +146088,730.4400000043387,-0.055198205239657454 +146089,730.4450000043388,-0.05519815951167446 +146090,730.4500000043389,-0.05519811378178885 +146091,730.455000004339,-0.055198068050000576 +146092,730.4600000043391,-0.0551980223163096 +146093,730.4650000043392,-0.055197976580715916 +146094,730.4700000043393,-0.05519793084321945 +146095,730.4750000043394,-0.0551978851038202 +146096,730.4800000043396,-0.0551978393625181 +146097,730.4850000043397,-0.05519779361931313 +146098,730.4900000043398,-0.05519774787420526 +146099,730.4950000043399,-0.05519770212719445 +146100,730.50000000434,-0.05519765637828064 +146101,730.5050000043401,-0.05519761062746383 +146102,730.5100000043402,-0.05519756487474396 +146103,730.5150000043403,-0.05519751912012102 +146104,730.5200000043404,-0.055197473363594936 +146105,730.5250000043405,-0.0551974276051657 +146106,730.5300000043406,-0.055197381844833276 +146107,730.5350000043408,-0.055197336082597616 +146108,730.5400000043409,-0.0551972903184587 +146109,730.545000004341,-0.05519724455241648 +146110,730.5500000043411,-0.055197198784470915 +146111,730.5550000043412,-0.05519715301462199 +146112,730.5600000043413,-0.05519710724286965 +146113,730.5650000043414,-0.05519706146921387 +146114,730.5700000043415,-0.05519701569365461 +146115,730.5750000043416,-0.055196969916191836 +146116,730.5800000043417,-0.055196924136825504 +146117,730.5850000043419,-0.05519687835555558 +146118,730.590000004342,-0.05519683257238205 +146119,730.5950000043421,-0.05519678678730486 +146120,730.6000000043422,-0.05519674100032397 +146121,730.6050000043423,-0.05519669521143935 +146122,730.6100000043424,-0.05519664942065097 +146123,730.6150000043425,-0.05519660362795879 +146124,730.6200000043426,-0.055196557833362775 +146125,730.6250000043427,-0.055196512036862884 +146126,730.6300000043428,-0.0551964662384591 +146127,730.6350000043429,-0.055196420438151365 +146128,730.640000004343,-0.05519637463593965 +146129,730.6450000043432,-0.05519632883182392 +146130,730.6500000043433,-0.05519628302580415 +146131,730.6550000043434,-0.0551962372178803 +146132,730.6600000043435,-0.05519619140805231 +146133,730.6650000043436,-0.05519614559632018 +146134,730.6700000043437,-0.05519609978268386 +146135,730.6750000043438,-0.05519605396714331 +146136,730.6800000043439,-0.0551960081496985 +146137,730.685000004344,-0.05519596233034939 +146138,730.6900000043441,-0.05519591650909595 +146139,730.6950000043443,-0.05519587068593815 +146140,730.7000000043444,-0.05519582486087593 +146141,730.7050000043445,-0.05519577903390929 +146142,730.7100000043446,-0.05519573320503817 +146143,730.7150000043447,-0.05519568737426254 +146144,730.7200000043448,-0.055195641541582366 +146145,730.7250000043449,-0.055195595706997606 +146146,730.730000004345,-0.05519554987050823 +146147,730.7350000043451,-0.05519550403211421 +146148,730.7400000043452,-0.055195458191815504 +146149,730.7450000043453,-0.055195412349612075 +146150,730.7500000043455,-0.055195366505503884 +146151,730.7550000043456,-0.055195320659490905 +146152,730.7600000043457,-0.0551952748115731 +146153,730.7650000043458,-0.055195228961750435 +146154,730.7700000043459,-0.05519518311002287 +146155,730.775000004346,-0.055195137256390366 +146156,730.7800000043461,-0.0551950914008529 +146157,730.7850000043462,-0.05519504554341043 +146158,730.7900000043463,-0.05519499968406292 +146159,730.7950000043464,-0.05519495382281033 +146160,730.8000000043465,-0.05519490795965264 +146161,730.8050000043467,-0.0551948620945898 +146162,730.8100000043468,-0.05519481622762177 +146163,730.8150000043469,-0.05519477035874854 +146164,730.820000004347,-0.05519472448797005 +146165,730.8250000043471,-0.05519467861528628 +146166,730.8300000043472,-0.05519463274069719 +146167,730.8350000043473,-0.055194586864202734 +146168,730.8400000043474,-0.05519454098580289 +146169,730.8450000043475,-0.05519449510549762 +146170,730.8500000043476,-0.055194449223286896 +146171,730.8550000043477,-0.05519440333917068 +146172,730.8600000043479,-0.05519435745314893 +146173,730.865000004348,-0.055194311565221595 +146174,730.8700000043481,-0.05519426567538867 +146175,730.8750000043482,-0.0551942197836501 +146176,730.8800000043483,-0.055194173890005874 +146177,730.8850000043484,-0.05519412799445593 +146178,730.8900000043485,-0.05519408209700025 +146179,730.8950000043486,-0.05519403619763878 +146180,730.9000000043487,-0.05519399029637151 +146181,730.9050000043488,-0.05519394439319839 +146182,730.910000004349,-0.05519389848811939 +146183,730.915000004349,-0.05519385258113447 +146184,730.9200000043492,-0.0551938066722436 +146185,730.9250000043493,-0.05519376076144674 +146186,730.9300000043494,-0.05519371484874385 +146187,730.9350000043495,-0.05519366893413491 +146188,730.9400000043496,-0.055193623017619875 +146189,730.9450000043497,-0.055193577099198705 +146190,730.9500000043498,-0.05519353117887138 +146191,730.9550000043499,-0.05519348525663786 +146192,730.96000000435,-0.0551934393324981 +146193,730.9650000043501,-0.055193393406452074 +146194,730.9700000043503,-0.055193347478499744 +146195,730.9750000043504,-0.05519330154864109 +146196,730.9800000043505,-0.05519325561687606 +146197,730.9850000043506,-0.05519320968320462 +146198,730.9900000043507,-0.05519316374762673 +146199,730.9950000043508,-0.05519311781014237 +146200,731.0000000043509,-0.055193071870751495 +146201,731.005000004351,-0.05519302592945408 +146202,731.0100000043511,-0.05519297998625008 +146203,731.0150000043512,-0.055192934041139466 +146204,731.0200000043513,-0.0551928880941222 +146205,731.0250000043515,-0.05519284214519824 +146206,731.0300000043516,-0.05519279619436756 +146207,731.0350000043517,-0.055192750241630124 +146208,731.0400000043518,-0.0551927042869859 +146209,731.0450000043519,-0.05519265833043485 +146210,731.050000004352,-0.05519261237197695 +146211,731.0550000043521,-0.05519256641161215 +146212,731.0600000043522,-0.05519252044934042 +146213,731.0650000043523,-0.05519247448516173 +146214,731.0700000043524,-0.055192428519076034 +146215,731.0750000043525,-0.0551923825510833 +146216,731.0800000043527,-0.0551923365811835 +146217,731.0850000043528,-0.0551922906093766 +146218,731.0900000043529,-0.055192244635662566 +146219,731.095000004353,-0.055192198660041346 +146220,731.1000000043531,-0.055192152682512916 +146221,731.1050000043532,-0.05519210670307725 +146222,731.1100000043533,-0.055192060721734305 +146223,731.1150000043534,-0.05519201473848405 +146224,731.1200000043535,-0.05519196875332645 +146225,731.1250000043536,-0.05519192276626147 +146226,731.1300000043537,-0.05519187677728907 +146227,731.1350000043539,-0.05519183078640921 +146228,731.140000004354,-0.05519178479362188 +146229,731.1450000043541,-0.05519173879892702 +146230,731.1500000043542,-0.05519169280232461 +146231,731.1550000043543,-0.05519164680381461 +146232,731.1600000043544,-0.05519160080339698 +146233,731.1650000043545,-0.055191554801071706 +146234,731.1700000043546,-0.055191508796838734 +146235,731.1750000043547,-0.05519146279069804 +146236,731.1800000043548,-0.055191416782649584 +146237,731.185000004355,-0.05519137077269332 +146238,731.190000004355,-0.05519132476082923 +146239,731.1950000043552,-0.05519127874705728 +146240,731.2000000043553,-0.055191232731377424 +146241,731.2050000043554,-0.055191186713789635 +146242,731.2100000043555,-0.05519114069429388 +146243,731.2150000043556,-0.055191094672890115 +146244,731.2200000043557,-0.05519104864957831 +146245,731.2250000043558,-0.055191002624358436 +146246,731.2300000043559,-0.05519095659723045 +146247,731.235000004356,-0.05519091056819433 +146248,731.2400000043561,-0.05519086453725002 +146249,731.2450000043563,-0.05519081850439751 +146250,731.2500000043564,-0.05519077246963676 +146251,731.2550000043565,-0.05519072643296772 +146252,731.2600000043566,-0.05519068039439037 +146253,731.2650000043567,-0.05519063435390467 +146254,731.2700000043568,-0.05519058831151058 +146255,731.2750000043569,-0.05519054226720808 +146256,731.280000004357,-0.05519049622099712 +146257,731.2850000043571,-0.05519045017287768 +146258,731.2900000043572,-0.055190404122849715 +146259,731.2950000043573,-0.055190358070913194 +146260,731.3000000043575,-0.05519031201706808 +146261,731.3050000043576,-0.05519026596131436 +146262,731.3100000043577,-0.055190219903651964 +146263,731.3150000043578,-0.05519017384408088 +146264,731.3200000043579,-0.055190127782601066 +146265,731.325000004358,-0.055190081719212504 +146266,731.3300000043581,-0.055190035653915136 +146267,731.3350000043582,-0.05518998958670893 +146268,731.3400000043583,-0.055189943517593876 +146269,731.3450000043584,-0.055189897446569915 +146270,731.3500000043585,-0.05518985137363703 +146271,731.3550000043587,-0.055189805298795164 +146272,731.3600000043588,-0.055189759222044305 +146273,731.3650000043589,-0.055189713143384396 +146274,731.370000004359,-0.05518966706281543 +146275,731.3750000043591,-0.055189620980337355 +146276,731.3800000043592,-0.055189574895950146 +146277,731.3850000043593,-0.055189528809653755 +146278,731.3900000043594,-0.055189482721448156 +146279,731.3950000043595,-0.05518943663133332 +146280,731.4000000043596,-0.05518939053930921 +146281,731.4050000043597,-0.05518934444537579 +146282,731.4100000043599,-0.05518929834953303 +146283,731.41500000436,-0.05518925225178089 +146284,731.4200000043601,-0.05518920615211933 +146285,731.4250000043602,-0.05518916005054832 +146286,731.4300000043603,-0.05518911394706784 +146287,731.4350000043604,-0.05518906784167784 +146288,731.4400000043605,-0.055189021734378285 +146289,731.4450000043606,-0.05518897562516917 +146290,731.4500000043607,-0.05518892951405042 +146291,731.4550000043608,-0.055188883401022015 +146292,731.460000004361,-0.055188837286083925 +146293,731.4650000043611,-0.055188791169236126 +146294,731.4700000043612,-0.05518874505047856 +146295,731.4750000043613,-0.05518869892981121 +146296,731.4800000043614,-0.055188652807234034 +146297,731.4850000043615,-0.055188606682747006 +146298,731.4900000043616,-0.055188560556350096 +146299,731.4950000043617,-0.05518851442804326 +146300,731.5000000043618,-0.05518846829782646 +146301,731.5050000043619,-0.05518842216569966 +146302,731.510000004362,-0.05518837603166284 +146303,731.5150000043622,-0.05518832989571597 +146304,731.5200000043623,-0.055188283757858995 +146305,731.5250000043624,-0.05518823761809189 +146306,731.5300000043625,-0.05518819147641462 +146307,731.5350000043626,-0.05518814533282715 +146308,731.5400000043627,-0.055188099187329455 +146309,731.5450000043628,-0.0551880530399215 +146310,731.5500000043629,-0.05518800689060325 +146311,731.555000004363,-0.05518796073937466 +146312,731.5600000043631,-0.05518791458623571 +146313,731.5650000043632,-0.055187868431186345 +146314,731.5700000043634,-0.05518782227422655 +146315,731.5750000043635,-0.05518777611535629 +146316,731.5800000043636,-0.05518772995457552 +146317,731.5850000043637,-0.05518768379188421 +146318,731.5900000043638,-0.05518763762728234 +146319,731.5950000043639,-0.05518759146076987 +146320,731.600000004364,-0.055187545292346755 +146321,731.6050000043641,-0.05518749912201297 +146322,731.6100000043642,-0.05518745294976847 +146323,731.6150000043643,-0.05518740677561324 +146324,731.6200000043644,-0.055187360599547236 +146325,731.6250000043646,-0.05518731442157042 +146326,731.6300000043647,-0.055187268241682776 +146327,731.6350000043648,-0.05518722205988425 +146328,731.6400000043649,-0.055187175876174804 +146329,731.645000004365,-0.05518712969055443 +146330,731.6500000043651,-0.05518708350302308 +146331,731.6550000043652,-0.055187037313580704 +146332,731.6600000043653,-0.05518699112222728 +146333,731.6650000043654,-0.05518694492896279 +146334,731.6700000043655,-0.05518689873378719 +146335,731.6750000043656,-0.05518685253670044 +146336,731.6800000043658,-0.05518680633770251 +146337,731.6850000043659,-0.05518676013679337 +146338,731.690000004366,-0.05518671393397298 +146339,731.6950000043661,-0.05518666772924131 +146340,731.7000000043662,-0.05518662152259832 +146341,731.7050000043663,-0.05518657531404398 +146342,731.7100000043664,-0.055186529103578255 +146343,731.7150000043665,-0.05518648289120112 +146344,731.7200000043666,-0.05518643667691254 +146345,731.7250000043667,-0.05518639046071248 +146346,731.7300000043668,-0.05518634424260088 +146347,731.735000004367,-0.05518629802257775 +146348,731.7400000043671,-0.05518625180064302 +146349,731.7450000043672,-0.05518620557679668 +146350,731.7500000043673,-0.0551861593510387 +146351,731.7550000043674,-0.055186113123369025 +146352,731.7600000043675,-0.055186066893787626 +146353,731.7650000043676,-0.055186020662294485 +146354,731.7700000043677,-0.055185974428889555 +146355,731.7750000043678,-0.05518592819357279 +146356,731.7800000043679,-0.05518588195634418 +146357,731.785000004368,-0.055185835717203674 +146358,731.7900000043682,-0.055185789476151256 +146359,731.7950000043683,-0.05518574323318688 +146360,731.8000000043684,-0.05518569698831052 +146361,731.8050000043685,-0.05518565074152214 +146362,731.8100000043686,-0.0551856044928217 +146363,731.8150000043687,-0.05518555824220917 +146364,731.8200000043688,-0.055185511989684514 +146365,731.8250000043689,-0.055185465735247706 +146366,731.830000004369,-0.05518541947889871 +146367,731.8350000043691,-0.05518537322063749 +146368,731.8400000043692,-0.055185326960464014 +146369,731.8450000043694,-0.05518528069837824 +146370,731.8500000043695,-0.055185234434380136 +146371,731.8550000043696,-0.05518518816846968 +146372,731.8600000043697,-0.05518514190064684 +146373,731.8650000043698,-0.055185095630911576 +146374,731.8700000043699,-0.05518504935926384 +146375,731.87500000437,-0.05518500308570363 +146376,731.8800000043701,-0.05518495681023089 +146377,731.8850000043702,-0.05518491053284558 +146378,731.8900000043703,-0.05518486425354769 +146379,731.8950000043704,-0.05518481797233717 +146380,731.9000000043706,-0.05518477168921399 +146381,731.9050000043707,-0.055184725404178125 +146382,731.9100000043708,-0.055184679117229525 +146383,731.9150000043709,-0.05518463282836817 +146384,731.920000004371,-0.05518458653759402 +146385,731.9250000043711,-0.05518454024490704 +146386,731.9300000043712,-0.0551844939503072 +146387,731.9350000043713,-0.05518444765379448 +146388,731.9400000043714,-0.05518440135536882 +146389,731.9450000043715,-0.055184355055030214 +146390,731.9500000043716,-0.055184308752778605 +146391,731.9550000043718,-0.05518426244861396 +146392,731.9600000043719,-0.055184216142536276 +146393,731.965000004372,-0.055184169834545486 +146394,731.9700000043721,-0.05518412352464157 +146395,731.9750000043722,-0.05518407721282449 +146396,731.9800000043723,-0.055184030899094225 +146397,731.9850000043724,-0.055183984583450724 +146398,731.9900000043725,-0.055183938265893975 +146399,731.9950000043726,-0.05518389194642393 +146400,732.0000000043727,-0.05518384562504055 +146401,732.0050000043728,-0.0551837993017438 +146402,732.010000004373,-0.05518375297653367 +146403,732.0150000043731,-0.055183706649410115 +146404,732.0200000043732,-0.05518366032037309 +146405,732.0250000043733,-0.055183613989422585 +146406,732.0300000043734,-0.05518356765655855 +146407,732.0350000043735,-0.05518352132178096 +146408,732.0400000043736,-0.05518347498508978 +146409,732.0450000043737,-0.055183428646484955 +146410,732.0500000043738,-0.05518338230596648 +146411,732.0550000043739,-0.05518333596353431 +146412,732.060000004374,-0.05518328961918841 +146413,732.0650000043742,-0.05518324327292876 +146414,732.0700000043743,-0.055183196924755325 +146415,732.0750000043744,-0.05518315057466805 +146416,732.0800000043745,-0.055183104222666916 +146417,732.0850000043746,-0.05518305786875189 +146418,732.0900000043747,-0.055183011512922944 +146419,732.0950000043748,-0.05518296515518004 +146420,732.1000000043749,-0.05518291879552314 +146421,732.105000004375,-0.055182872433952215 +146422,732.1100000043751,-0.05518282607046723 +146423,732.1150000043752,-0.05518277970506816 +146424,732.1200000043754,-0.055182733337754954 +146425,732.1250000043755,-0.05518268696852761 +146426,732.1300000043756,-0.055182640597386055 +146427,732.1350000043757,-0.05518259422433029 +146428,732.1400000043758,-0.05518254784936026 +146429,732.1450000043759,-0.05518250147247595 +146430,732.150000004376,-0.05518245509367731 +146431,732.1550000043761,-0.05518240871296431 +146432,732.1600000043762,-0.055182362330336916 +146433,732.1650000043763,-0.05518231594579511 +146434,732.1700000043764,-0.05518226955933885 +146435,732.1750000043766,-0.0551822231709681 +146436,732.1800000043767,-0.05518217678068282 +146437,732.1850000043768,-0.055182130388483006 +146438,732.1900000043769,-0.05518208399436858 +146439,732.195000004377,-0.05518203759833955 +146440,732.2000000043771,-0.05518199120039586 +146441,732.2050000043772,-0.05518194480053748 +146442,732.2100000043773,-0.05518189839876439 +146443,732.2150000043774,-0.055181851995076546 +146444,732.2200000043775,-0.055181805589473915 +146445,732.2250000043776,-0.055181759181956454 +146446,732.2300000043778,-0.05518171277252415 +146447,732.2350000043779,-0.05518166636117697 +146448,732.240000004378,-0.05518161994791485 +146449,732.2450000043781,-0.0551815735327378 +146450,732.2500000043782,-0.055181527115645765 +146451,732.2550000043783,-0.0551814806966387 +146452,732.2600000043784,-0.0551814342757166 +146453,732.2650000043785,-0.05518138785287941 +146454,732.2700000043786,-0.0551813414281271 +146455,732.2750000043787,-0.05518129500145964 +146456,732.2800000043788,-0.05518124857287701 +146457,732.285000004379,-0.05518120214237916 +146458,732.2900000043791,-0.05518115570996607 +146459,732.2950000043792,-0.055181109275637685 +146460,732.3000000043793,-0.05518106283939399 +146461,732.3050000043794,-0.055181016401234954 +146462,732.3100000043795,-0.05518096996116054 +146463,732.3150000043796,-0.05518092351917072 +146464,732.3200000043797,-0.05518087707526544 +146465,732.3250000043798,-0.055180830629444684 +146466,732.3300000043799,-0.05518078418170842 +146467,732.33500000438,-0.05518073773205662 +146468,732.3400000043802,-0.055180691280489226 +146469,732.3450000043803,-0.055180644827006235 +146470,732.3500000043804,-0.0551805983716076 +146471,732.3550000043805,-0.05518055191429329 +146472,732.3600000043806,-0.05518050545506328 +146473,732.3650000043807,-0.055180458993917526 +146474,732.3700000043808,-0.055180412530856 +146475,732.3750000043809,-0.05518036606587867 +146476,732.380000004381,-0.055180319598985506 +146477,732.3850000043811,-0.05518027313017646 +146478,732.3900000043812,-0.055180226659451506 +146479,732.3950000043814,-0.05518018018681062 +146480,732.4000000043815,-0.05518013371225376 +146481,732.4050000043816,-0.055180087235780904 +146482,732.4100000043817,-0.05518004075739201 +146483,732.4150000043818,-0.05517999427708705 +146484,732.4200000043819,-0.055179947794866 +146485,732.425000004382,-0.05517990131072881 +146486,732.4300000043821,-0.055179854824675446 +146487,732.4350000043822,-0.05517980833670589 +146488,732.4400000043823,-0.0551797618468201 +146489,732.4450000043825,-0.05517971535501805 +146490,732.4500000043826,-0.05517966886129969 +146491,732.4550000043827,-0.05517962236566501 +146492,732.4600000043828,-0.05517957586811397 +146493,732.4650000043829,-0.05517952936864653 +146494,732.470000004383,-0.055179482867262666 +146495,732.4750000043831,-0.05517943636396234 +146496,732.4800000043832,-0.05517938985874552 +146497,732.4850000043833,-0.055179343351612176 +146498,732.4900000043834,-0.055179296842562266 +146499,732.4950000043835,-0.05517925033159577 +146500,732.5000000043837,-0.05517920381871265 +146501,732.5050000043838,-0.055179157303912874 +146502,732.5100000043839,-0.05517911078719641 +146503,732.515000004384,-0.05517906426856323 +146504,732.5200000043841,-0.05517901774801328 +146505,732.5250000043842,-0.05517897122554655 +146506,732.5300000043843,-0.055178924701163 +146507,732.5350000043844,-0.055178878174862604 +146508,732.5400000043845,-0.055178831646645325 +146509,732.5450000043846,-0.05517878511651112 +146510,732.5500000043847,-0.055178738584459965 +146511,732.5550000043849,-0.055178692050491834 +146512,732.560000004385,-0.05517864551460669 +146513,732.5650000043851,-0.055178598976804494 +146514,732.5700000043852,-0.055178552437085214 +146515,732.5750000043853,-0.05517850589544882 +146516,732.5800000043854,-0.05517845935189528 +146517,732.5850000043855,-0.055178412806424576 +146518,732.5900000043856,-0.05517836625903665 +146519,732.5950000043857,-0.055178319709731485 +146520,732.6000000043858,-0.055178273158509046 +146521,732.6050000043859,-0.05517822660536929 +146522,732.610000004386,-0.055178180050312206 +146523,732.6150000043862,-0.05517813349333774 +146524,732.6200000043863,-0.055178086934445876 +146525,732.6250000043864,-0.055178040373636564 +146526,732.6300000043865,-0.055177993810909785 +146527,732.6350000043866,-0.055177947246265506 +146528,732.6400000043867,-0.0551779006797037 +146529,732.6450000043868,-0.05517785411122432 +146530,732.6500000043869,-0.055177807540827344 +146531,732.655000004387,-0.05517776096851273 +146532,732.6600000043871,-0.05517771439428046 +146533,732.6650000043873,-0.05517766781813049 +146534,732.6700000043874,-0.05517762124006278 +146535,732.6750000043875,-0.05517757466007731 +146536,732.6800000043876,-0.05517752807817405 +146537,732.6850000043877,-0.05517748149435296 +146538,732.6900000043878,-0.05517743490861402 +146539,732.6950000043879,-0.05517738832095718 +146540,732.700000004388,-0.05517734173138241 +146541,732.7050000043881,-0.05517729513988969 +146542,732.7100000043882,-0.05517724854647898 +146543,732.7150000043883,-0.05517720195115025 +146544,732.7200000043885,-0.055177155353903475 +146545,732.7250000043886,-0.0551771087547386 +146546,732.7300000043887,-0.055177062153655615 +146547,732.7350000043888,-0.055177015550654476 +146548,732.7400000043889,-0.05517696894573516 +146549,732.745000004389,-0.055176922338897615 +146550,732.7500000043891,-0.05517687573014183 +146551,732.7550000043892,-0.05517682911946777 +146552,732.7600000043893,-0.05517678250687538 +146553,732.7650000043894,-0.05517673589236466 +146554,732.7700000043895,-0.05517668927593556 +146555,732.7750000043897,-0.05517664265758805 +146556,732.7800000043898,-0.0551765960373221 +146557,732.7850000043899,-0.05517654941513767 +146558,732.79000000439,-0.05517650279103474 +146559,732.7950000043901,-0.055176456165013266 +146560,732.8000000043902,-0.05517640953707323 +146561,732.8050000043903,-0.05517636290721458 +146562,732.8100000043904,-0.0551763162754373 +146563,732.8150000043905,-0.055176269641741355 +146564,732.8200000043906,-0.05517622300612672 +146565,732.8250000043907,-0.055176176368593344 +146566,732.8300000043909,-0.05517612972914121 +146567,732.835000004391,-0.055176083087770264 +146568,732.8400000043911,-0.055176036444480506 +146569,732.8450000043912,-0.05517598979927187 +146570,732.8500000043913,-0.05517594315214436 +146571,732.8550000043914,-0.05517589650309792 +146572,732.8600000043915,-0.055175849852132516 +146573,732.8650000043916,-0.05517580319924812 +146574,732.8700000043917,-0.05517575654444471 +146575,732.8750000043918,-0.05517570988772224 +146576,732.880000004392,-0.055175663229080685 +146577,732.885000004392,-0.05517561656852001 +146578,732.8900000043922,-0.055175569906040195 +146579,732.8950000043923,-0.05517552324164119 +146580,732.9000000043924,-0.055175476575322964 +146581,732.9050000043925,-0.0551754299070855 +146582,732.9100000043926,-0.055175383236928756 +146583,732.9150000043927,-0.0551753365648527 +146584,732.9200000043928,-0.0551752898908573 +146585,732.9250000043929,-0.05517524321494253 +146586,732.930000004393,-0.05517519653710835 +146587,732.9350000043931,-0.05517514985735473 +146588,732.9400000043933,-0.05517510317568163 +146589,732.9450000043934,-0.05517505649208903 +146590,732.9500000043935,-0.0551750098065769 +146591,732.9550000043936,-0.055174963119145194 +146592,732.9600000043937,-0.055174916429793885 +146593,732.9650000043938,-0.055174869738522946 +146594,732.9700000043939,-0.05517482304533235 +146595,732.975000004394,-0.05517477635022205 +146596,732.9800000043941,-0.05517472965319202 +146597,732.9850000043942,-0.05517468295424223 +146598,732.9900000043943,-0.055174636253372655 +146599,732.9950000043945,-0.05517458955058325 +146600,733.0000000043946,-0.055174542845874 +146601,733.0050000043947,-0.055174496139244855 +146602,733.0100000043948,-0.05517444943069579 +146603,733.0150000043949,-0.055174402720226765 +146604,733.020000004395,-0.05517435600783776 +146605,733.0250000043951,-0.05517430929352874 +146606,733.0300000043952,-0.055174262577299675 +146607,733.0350000043953,-0.05517421585915052 +146608,733.0400000043954,-0.055174169139081256 +146609,733.0450000043955,-0.05517412241709185 +146610,733.0500000043957,-0.05517407569318228 +146611,733.0550000043958,-0.05517402896735248 +146612,733.0600000043959,-0.05517398223960245 +146613,733.065000004396,-0.05517393550993215 +146614,733.0700000043961,-0.05517388877834155 +146615,733.0750000043962,-0.055173842044830605 +146616,733.0800000043963,-0.055173795309399296 +146617,733.0850000043964,-0.055173748572047585 +146618,733.0900000043965,-0.05517370183277544 +146619,733.0950000043966,-0.055173655091582834 +146620,733.1000000043967,-0.05517360834846973 +146621,733.1050000043969,-0.0551735616034361 +146622,733.110000004397,-0.0551735148564819 +146623,733.1150000043971,-0.05517346810760712 +146624,733.1200000043972,-0.05517342135681172 +146625,733.1250000043973,-0.05517337460409566 +146626,733.1300000043974,-0.0551733278494589 +146627,733.1350000043975,-0.055173281092901434 +146628,733.1400000043976,-0.05517323433442321 +146629,733.1450000043977,-0.055173187574024216 +146630,733.1500000043978,-0.0551731408117044 +146631,733.155000004398,-0.05517309404746373 +146632,733.1600000043981,-0.05517304728130219 +146633,733.1650000043982,-0.05517300051321974 +146634,733.1700000043983,-0.05517295374321634 +146635,733.1750000043984,-0.055172906971291964 +146636,733.1800000043985,-0.0551728601974466 +146637,733.1850000043986,-0.05517281342168019 +146638,733.1900000043987,-0.055172766643992704 +146639,733.1950000043988,-0.05517271986438412 +146640,733.2000000043989,-0.0551726730828544 +146641,733.205000004399,-0.05517262629940352 +146642,733.2100000043991,-0.05517257951403144 +146643,733.2150000043993,-0.05517253272673814 +146644,733.2200000043994,-0.05517248593752357 +146645,733.2250000043995,-0.05517243914638772 +146646,733.2300000043996,-0.05517239235333054 +146647,733.2350000043997,-0.055172345558351994 +146648,733.2400000043998,-0.05517229876145207 +146649,733.2450000043999,-0.055172251962630724 +146650,733.2500000044,-0.05517220516188793 +146651,733.2550000044001,-0.05517215835922366 +146652,733.2600000044002,-0.055172111554637866 +146653,733.2650000044003,-0.05517206474813052 +146654,733.2700000044005,-0.055172017939701605 +146655,733.2750000044006,-0.05517197112935108 +146656,733.2800000044007,-0.0551719243170789 +146657,733.2850000044008,-0.05517187750288507 +146658,733.2900000044009,-0.05517183068676953 +146659,733.295000004401,-0.05517178386873225 +146660,733.3000000044011,-0.0551717370487732 +146661,733.3050000044012,-0.055171690226892355 +146662,733.3100000044013,-0.05517164340308968 +146663,733.3150000044014,-0.05517159657736514 +146664,733.3200000044015,-0.0551715497497187 +146665,733.3250000044017,-0.055171502920150335 +146666,733.3300000044018,-0.05517145608866001 +146667,733.3350000044019,-0.055171409255247696 +146668,733.340000004402,-0.05517136241991336 +146669,733.3450000044021,-0.05517131558265698 +146670,733.3500000044022,-0.05517126874347851 +146671,733.3550000044023,-0.05517122190237792 +146672,733.3600000044024,-0.055171175059355176 +146673,733.3650000044025,-0.05517112821441026 +146674,733.3700000044026,-0.055171081367543125 +146675,733.3750000044028,-0.055171034518753756 +146676,733.3800000044029,-0.05517098766804212 +146677,733.385000004403,-0.05517094081540816 +146678,733.3900000044031,-0.05517089396085187 +146679,733.3950000044032,-0.055170847104373213 +146680,733.4000000044033,-0.055170800245972144 +146681,733.4050000044034,-0.055170753385648655 +146682,733.4100000044035,-0.0551707065234027 +146683,733.4150000044036,-0.05517065965923425 +146684,733.4200000044037,-0.05517061279314327 +146685,733.4250000044038,-0.05517056592512972 +146686,733.430000004404,-0.055170519055193594 +146687,733.4350000044041,-0.05517047218333484 +146688,733.4400000044042,-0.05517042530955344 +146689,733.4450000044043,-0.05517037843384935 +146690,733.4500000044044,-0.05517033155622255 +146691,733.4550000044045,-0.055170284676672995 +146692,733.4600000044046,-0.055170237795200666 +146693,733.4650000044047,-0.05517019091180552 +146694,733.4700000044048,-0.05517014402648754 +146695,733.4750000044049,-0.055170097139246664 +146696,733.480000004405,-0.0551700502500829 +146697,733.4850000044052,-0.05517000335899618 +146698,733.4900000044053,-0.05516995646598652 +146699,733.4950000044054,-0.05516990957105384 +146700,733.5000000044055,-0.05516986267419813 +146701,733.5050000044056,-0.055169815775419365 +146702,733.5100000044057,-0.05516976887471751 +146703,733.5150000044058,-0.055169721972092516 +146704,733.5200000044059,-0.055169675067544374 +146705,733.525000004406,-0.055169628161073035 +146706,733.5300000044061,-0.05516958125267847 +146707,733.5350000044062,-0.05516953434236067 +146708,733.5400000044064,-0.055169487430119575 +146709,733.5450000044065,-0.05516944051595516 +146710,733.5500000044066,-0.0551693935998674 +146711,733.5550000044067,-0.05516934668185627 +146712,733.5600000044068,-0.055169299761921725 +146713,733.5650000044069,-0.055169252840063736 +146714,733.570000004407,-0.05516920591628228 +146715,733.5750000044071,-0.05516915899057732 +146716,733.5800000044072,-0.055169112062948826 +146717,733.5850000044073,-0.05516906513339677 +146718,733.5900000044074,-0.05516901820192112 +146719,733.5950000044076,-0.055168971268521834 +146720,733.6000000044077,-0.055168924333198886 +146721,733.6050000044078,-0.055168877395952255 +146722,733.6100000044079,-0.05516883045678189 +146723,733.615000004408,-0.055168783515687776 +146724,733.6200000044081,-0.05516873657266987 +146725,733.6250000044082,-0.055168689627728154 +146726,733.6300000044083,-0.05516864268086259 +146727,733.6350000044084,-0.055168595732073146 +146728,733.6400000044085,-0.05516854878135977 +146729,733.6450000044086,-0.05516850182872247 +146730,733.6500000044088,-0.05516845487416119 +146731,733.6550000044089,-0.05516840791767591 +146732,733.660000004409,-0.055168360959266596 +146733,733.6650000044091,-0.055168313998933204 +146734,733.6700000044092,-0.05516826703667572 +146735,733.6750000044093,-0.0551682200724941 +146736,733.6800000044094,-0.05516817310638831 +146737,733.6850000044095,-0.05516812613835833 +146738,733.6900000044096,-0.05516807916840413 +146739,733.6950000044097,-0.05516803219652569 +146740,733.7000000044098,-0.05516798522272295 +146741,733.70500000441,-0.05516793824699589 +146742,733.7100000044101,-0.05516789126934448 +146743,733.7150000044102,-0.05516784428976868 +146744,733.7200000044103,-0.05516779730826848 +146745,733.7250000044104,-0.05516775032484383 +146746,733.7300000044105,-0.05516770333949471 +146747,733.7350000044106,-0.055167656352221074 +146748,733.7400000044107,-0.0551676093630229 +146749,733.7450000044108,-0.055167562371900174 +146750,733.7500000044109,-0.05516751537885284 +146751,733.755000004411,-0.055167468383880876 +146752,733.7600000044112,-0.055167421386984244 +146753,733.7650000044113,-0.05516737438816293 +146754,733.7700000044114,-0.05516732738741688 +146755,733.7750000044115,-0.05516728038474608 +146756,733.7800000044116,-0.05516723338015049 +146757,733.7850000044117,-0.05516718637363007 +146758,733.7900000044118,-0.05516713936518481 +146759,733.7950000044119,-0.05516709235481467 +146760,733.800000004412,-0.055167045342519615 +146761,733.8050000044121,-0.05516699832829961 +146762,733.8100000044122,-0.05516695131215464 +146763,733.8150000044124,-0.05516690429408466 +146764,733.8200000044125,-0.05516685727408965 +146765,733.8250000044126,-0.05516681025216957 +146766,733.8300000044127,-0.05516676322832439 +146767,733.8350000044128,-0.05516671620255407 +146768,733.8400000044129,-0.0551666691748586 +146769,733.845000004413,-0.05516662214523794 +146770,733.8500000044131,-0.05516657511369205 +146771,733.8550000044132,-0.0551665280802209 +146772,733.8600000044133,-0.05516648104482447 +146773,733.8650000044134,-0.055166434007502714 +146774,733.8700000044136,-0.055166386968255626 +146775,733.8750000044137,-0.05516633992708314 +146776,733.8800000044138,-0.055166292883985266 +146777,733.8850000044139,-0.055166245838961944 +146778,733.890000004414,-0.055166198792013135 +146779,733.8950000044141,-0.055166151743138825 +146780,733.9000000044142,-0.05516610469233899 +146781,733.9050000044143,-0.05516605763961358 +146782,733.9100000044144,-0.05516601058496258 +146783,733.9150000044145,-0.055165963528385945 +146784,733.9200000044146,-0.055165916469883655 +146785,733.9250000044148,-0.05516586940945567 +146786,733.9300000044149,-0.05516582234710197 +146787,733.935000004415,-0.05516577528282251 +146788,733.9400000044151,-0.05516572821661727 +146789,733.9450000044152,-0.05516568114848622 +146790,733.9500000044153,-0.05516563407842931 +146791,733.9550000044154,-0.05516558700644653 +146792,733.9600000044155,-0.05516553993253784 +146793,733.9650000044156,-0.05516549285670321 +146794,733.9700000044157,-0.05516544577894261 +146795,733.9750000044158,-0.05516539869925602 +146796,733.980000004416,-0.05516535161764338 +146797,733.9850000044161,-0.055165304534104696 +146798,733.9900000044162,-0.055165257448639905 +146799,733.9950000044163,-0.055165210361248995 +146800,734.0000000044164,-0.05516516327193192 +146801,734.0050000044165,-0.05516511618068866 +146802,734.0100000044166,-0.055165069087519183 +146803,734.0150000044167,-0.055165021992423464 +146804,734.0200000044168,-0.05516497489540146 +146805,734.0250000044169,-0.05516492779645314 +146806,734.030000004417,-0.055164880695578476 +146807,734.0350000044172,-0.05516483359277744 +146808,734.0400000044173,-0.05516478648805 +146809,734.0450000044174,-0.055164739381396134 +146810,734.0500000044175,-0.055164692272815785 +146811,734.0550000044176,-0.05516464516230894 +146812,734.0600000044177,-0.05516459804987558 +146813,734.0650000044178,-0.05516455093551565 +146814,734.0700000044179,-0.05516450381922914 +146815,734.075000004418,-0.05516445670101601 +146816,734.0800000044181,-0.05516440958087623 +146817,734.0850000044182,-0.05516436245880975 +146818,734.0900000044184,-0.05516431533481656 +146819,734.0950000044185,-0.05516426820889663 +146820,734.1000000044186,-0.05516422108104993 +146821,734.1050000044187,-0.05516417395127642 +146822,734.1100000044188,-0.05516412681957607 +146823,734.1150000044189,-0.05516407968594885 +146824,734.120000004419,-0.05516403255039474 +146825,734.1250000044191,-0.05516398541291369 +146826,734.1300000044192,-0.05516393827350568 +146827,734.1350000044193,-0.05516389113217068 +146828,734.1400000044194,-0.055163843988908653 +146829,734.1450000044196,-0.05516379684371957 +146830,734.1500000044197,-0.055163749696603405 +146831,734.1550000044198,-0.055163702547560124 +146832,734.1600000044199,-0.05516365539658969 +146833,734.16500000442,-0.05516360824369208 +146834,734.1700000044201,-0.05516356108886727 +146835,734.1750000044202,-0.05516351393211522 +146836,734.1800000044203,-0.0551634667734359 +146837,734.1850000044204,-0.05516341961282927 +146838,734.1900000044205,-0.05516337245029532 +146839,734.1950000044206,-0.055163325285833995 +146840,734.2000000044208,-0.05516327811944528 +146841,734.2050000044209,-0.055163230951129155 +146842,734.210000004421,-0.05516318378088556 +146843,734.2150000044211,-0.05516313660871448 +146844,734.2200000044212,-0.05516308943461588 +146845,734.2250000044213,-0.05516304225858974 +146846,734.2300000044214,-0.055162995080636025 +146847,734.2350000044215,-0.05516294790075469 +146848,734.2400000044216,-0.05516290071894572 +146849,734.2450000044217,-0.05516285353520908 +146850,734.2500000044218,-0.05516280634954474 +146851,734.255000004422,-0.055162759161952665 +146852,734.2600000044221,-0.05516271197243283 +146853,734.2650000044222,-0.0551626647809852 +146854,734.2700000044223,-0.05516261758760974 +146855,734.2750000044224,-0.05516257039230644 +146856,734.2800000044225,-0.05516252319507524 +146857,734.2850000044226,-0.05516247599591613 +146858,734.2900000044227,-0.055162428794829056 +146859,734.2950000044228,-0.05516238159181401 +146860,734.3000000044229,-0.05516233438687095 +146861,734.305000004423,-0.05516228717999985 +146862,734.3100000044232,-0.05516223997120069 +146863,734.3150000044233,-0.05516219276047342 +146864,734.3200000044234,-0.055162145547818016 +146865,734.3250000044235,-0.055162098333234454 +146866,734.3300000044236,-0.0551620511167227 +146867,734.3350000044237,-0.055162003898282706 +146868,734.3400000044238,-0.05516195667791446 +146869,734.3450000044239,-0.055161909455617934 +146870,734.350000004424,-0.05516186223139309 +146871,734.3550000044241,-0.0551618150052399 +146872,734.3600000044243,-0.05516176777715833 +146873,734.3650000044244,-0.05516172054714835 +146874,734.3700000044245,-0.05516167331520994 +146875,734.3750000044246,-0.05516162608134305 +146876,734.3800000044247,-0.055161578845547656 +146877,734.3850000044248,-0.055161531607823736 +146878,734.3900000044249,-0.05516148436817125 +146879,734.395000004425,-0.055161437126590177 +146880,734.4000000044251,-0.055161389883080475 +146881,734.4050000044252,-0.05516134263764212 +146882,734.4100000044253,-0.05516129539027509 +146883,734.4150000044255,-0.05516124814097933 +146884,734.4200000044256,-0.055161200889754826 +146885,734.4250000044257,-0.05516115363660154 +146886,734.4300000044258,-0.05516110638151945 +146887,734.4350000044259,-0.05516105912450851 +146888,734.440000004426,-0.05516101186556871 +146889,734.4450000044261,-0.05516096460470001 +146890,734.4500000044262,-0.05516091734190238 +146891,734.4550000044263,-0.05516087007717579 +146892,734.4600000044264,-0.055160822810520205 +146893,734.4650000044265,-0.055160775541935596 +146894,734.4700000044267,-0.05516072827142193 +146895,734.4750000044268,-0.05516068099897919 +146896,734.4800000044269,-0.05516063372460734 +146897,734.485000004427,-0.055160586448306334 +146898,734.4900000044271,-0.05516053917007615 +146899,734.4950000044272,-0.05516049188991677 +146900,734.5000000044273,-0.05516044460782815 +146901,734.5050000044274,-0.055160397323810256 +146902,734.5100000044275,-0.05516035003786307 +146903,734.5150000044276,-0.05516030274998656 +146904,734.5200000044277,-0.05516025546018068 +146905,734.5250000044279,-0.055160208168445406 +146906,734.530000004428,-0.05516016087478071 +146907,734.5350000044281,-0.05516011357918657 +146908,734.5400000044282,-0.05516006628166295 +146909,734.5450000044283,-0.05516001898220982 +146910,734.5500000044284,-0.05515997168082714 +146911,734.5550000044285,-0.0551599243775149 +146912,734.5600000044286,-0.05515987707227305 +146913,734.5650000044287,-0.055159829765101566 +146914,734.5700000044288,-0.055159782456000415 +146915,734.575000004429,-0.05515973514496956 +146916,734.580000004429,-0.05515968783200899 +146917,734.5850000044292,-0.05515964051711866 +146918,734.5900000044293,-0.05515959320029855 +146919,734.5950000044294,-0.05515954588154861 +146920,734.6000000044295,-0.055159498560868825 +146921,734.6050000044296,-0.05515945123825917 +146922,734.6100000044297,-0.05515940391371959 +146923,734.6150000044298,-0.055159356587250075 +146924,734.6200000044299,-0.05515930925885058 +146925,734.62500000443,-0.05515926192852111 +146926,734.6300000044301,-0.055159214596261594 +146927,734.6350000044303,-0.05515916726207202 +146928,734.6400000044304,-0.05515911992595234 +146929,734.6450000044305,-0.05515907258790254 +146930,734.6500000044306,-0.0551590252479226 +146931,734.6550000044307,-0.05515897790601247 +146932,734.6600000044308,-0.055158930562172116 +146933,734.6650000044309,-0.05515888321640152 +146934,734.670000004431,-0.05515883586870065 +146935,734.6750000044311,-0.055158788519069475 +146936,734.6800000044312,-0.05515874116750797 +146937,734.6850000044313,-0.05515869381401609 +146938,734.6900000044315,-0.05515864645859382 +146939,734.6950000044316,-0.05515859910124112 +146940,734.7000000044317,-0.05515855174195797 +146941,734.7050000044318,-0.05515850438074432 +146942,734.7100000044319,-0.055158457017600145 +146943,734.715000004432,-0.05515840965252542 +146944,734.7200000044321,-0.05515836228552013 +146945,734.7250000044322,-0.05515831491658422 +146946,734.7300000044323,-0.05515826754571766 +146947,734.7350000044324,-0.055158220172920436 +146948,734.7400000044325,-0.05515817279819251 +146949,734.7450000044327,-0.05515812542153385 +146950,734.7500000044328,-0.05515807804294444 +146951,734.7550000044329,-0.05515803066242422 +146952,734.760000004433,-0.055157983279973184 +146953,734.7650000044331,-0.055157935895591294 +146954,734.7700000044332,-0.055157888509278524 +146955,734.7750000044333,-0.055157841121034834 +146956,734.7800000044334,-0.055157793730860195 +146957,734.7850000044335,-0.05515774633875458 +146958,734.7900000044336,-0.05515769894471797 +146959,734.7950000044337,-0.05515765154875031 +146960,734.8000000044339,-0.05515760415085159 +146961,734.805000004434,-0.05515755675102176 +146962,734.8100000044341,-0.05515750934926081 +146963,734.8150000044342,-0.0551574619455687 +146964,734.8200000044343,-0.05515741453994541 +146965,734.8250000044344,-0.05515736713239089 +146966,734.8300000044345,-0.05515731972290513 +146967,734.8350000044346,-0.055157272311488086 +146968,734.8400000044347,-0.055157224898139734 +146969,734.8450000044348,-0.05515717748286004 +146970,734.850000004435,-0.05515713006564897 +146971,734.855000004435,-0.05515708264650651 +146972,734.8600000044352,-0.05515703522543261 +146973,734.8650000044353,-0.055156987802427254 +146974,734.8700000044354,-0.0551569403774904 +146975,734.8750000044355,-0.055156892950622025 +146976,734.8800000044356,-0.055156845521822095 +146977,734.8850000044357,-0.05515679809109058 +146978,734.8900000044358,-0.055156750658427456 +146979,734.8950000044359,-0.0551567032238327 +146980,734.900000004436,-0.055156655787306254 +146981,734.9050000044361,-0.05515660834884811 +146982,734.9100000044363,-0.05515656090845823 +146983,734.9150000044364,-0.05515651346613659 +146984,734.9200000044365,-0.05515646602188315 +146985,734.9250000044366,-0.055156418575697884 +146986,734.9300000044367,-0.055156371127580754 +146987,734.9350000044368,-0.055156323677531746 +146988,734.9400000044369,-0.055156276225550825 +146989,734.945000004437,-0.055156228771637957 +146990,734.9500000044371,-0.055156181315793106 +146991,734.9550000044372,-0.05515613385801625 +146992,734.9600000044373,-0.05515608639830735 +146993,734.9650000044375,-0.055156038936666395 +146994,734.9700000044376,-0.05515599147309332 +146995,734.9750000044377,-0.05515594400758814 +146996,734.9800000044378,-0.05515589654015078 +146997,734.9850000044379,-0.05515584907078124 +146998,734.990000004438,-0.05515580159947949 +146999,734.9950000044381,-0.05515575412624549 +147000,735.0000000044382,-0.05515570665107919 +147001,735.0050000044383,-0.05515565917398058 +147002,735.0100000044384,-0.05515561169494964 +147003,735.0150000044385,-0.055155564213986326 +147004,735.0200000044387,-0.05515551673109061 +147005,735.0250000044388,-0.055155469246262474 +147006,735.0300000044389,-0.05515542175950187 +147007,735.035000004439,-0.055155374270808764 +147008,735.0400000044391,-0.055155326780183145 +147009,735.0450000044392,-0.05515527928762498 +147010,735.0500000044393,-0.055155231793134224 +147011,735.0550000044394,-0.05515518429671086 +147012,735.0600000044395,-0.05515513679835485 +147013,735.0650000044396,-0.05515508929806616 +147014,735.0700000044397,-0.05515504179584477 +147015,735.0750000044399,-0.05515499429169064 +147016,735.08000000444,-0.05515494678560376 +147017,735.0850000044401,-0.05515489927758408 +147018,735.0900000044402,-0.055154851767631574 +147019,735.0950000044403,-0.05515480425574622 +147020,735.1000000044404,-0.05515475674192797 +147021,735.1050000044405,-0.05515470922617681 +147022,735.1100000044406,-0.055154661708492696 +147023,735.1150000044407,-0.055154614188875614 +147024,735.1200000044408,-0.05515456666732552 +147025,735.125000004441,-0.05515451914384241 +147026,735.1300000044411,-0.05515447161842622 +147027,735.1350000044412,-0.05515442409107693 +147028,735.1400000044413,-0.055154376561794526 +147029,735.1450000044414,-0.05515432903057895 +147030,735.1500000044415,-0.055154281497430194 +147031,735.1550000044416,-0.05515423396234822 +147032,735.1600000044417,-0.055154186425333 +147033,735.1650000044418,-0.055154138886384506 +147034,735.1700000044419,-0.055154091345502705 +147035,735.175000004442,-0.05515404380268757 +147036,735.1800000044421,-0.055153996257939056 +147037,735.1850000044423,-0.055153948711257145 +147038,735.1900000044424,-0.055153901162641815 +147039,735.1950000044425,-0.05515385361209302 +147040,735.2000000044426,-0.05515380605961073 +147041,735.2050000044427,-0.05515375850519493 +147042,735.2100000044428,-0.05515371094884559 +147043,735.2150000044429,-0.05515366339056266 +147044,735.220000004443,-0.05515361583034613 +147045,735.2250000044431,-0.05515356826819596 +147046,735.2300000044432,-0.05515352070411211 +147047,735.2350000044434,-0.05515347313809457 +147048,735.2400000044435,-0.0551534255701433 +147049,735.2450000044436,-0.055153378000258275 +147050,735.2500000044437,-0.055153330428439444 +147051,735.2550000044438,-0.055153282854686805 +147052,735.2600000044439,-0.05515323527900031 +147053,735.265000004444,-0.05515318770137993 +147054,735.2700000044441,-0.05515314012182566 +147055,735.2750000044442,-0.05515309254033744 +147056,735.2800000044443,-0.055153044956915254 +147057,735.2850000044444,-0.05515299737155906 +147058,735.2900000044446,-0.05515294978426883 +147059,735.2950000044447,-0.05515290219504455 +147060,735.3000000044448,-0.05515285460388617 +147061,735.3050000044449,-0.05515280701079367 +147062,735.310000004445,-0.05515275941576702 +147063,735.3150000044451,-0.0551527118188062 +147064,735.3200000044452,-0.05515266421991116 +147065,735.3250000044453,-0.055152616619081885 +147066,735.3300000044454,-0.05515256901631833 +147067,735.3350000044455,-0.05515252141162047 +147068,735.3400000044456,-0.05515247380498829 +147069,735.3450000044458,-0.055152426196421744 +147070,735.3500000044459,-0.0551523785859208 +147071,735.355000004446,-0.05515233097348545 +147072,735.3600000044461,-0.05515228335911564 +147073,735.3650000044462,-0.05515223574281134 +147074,735.3700000044463,-0.05515218812457253 +147075,735.3750000044464,-0.055152140504399184 +147076,735.3800000044465,-0.055152092882291275 +147077,735.3850000044466,-0.05515204525824875 +147078,735.3900000044467,-0.055151997632271604 +147079,735.3950000044468,-0.05515195000435979 +147080,735.400000004447,-0.055151902374513284 +147081,735.4050000044471,-0.05515185474273206 +147082,735.4100000044472,-0.05515180710901608 +147083,735.4150000044473,-0.05515175947336532 +147084,735.4200000044474,-0.055151711835779736 +147085,735.4250000044475,-0.05515166419625932 +147086,735.4300000044476,-0.05515161655480404 +147087,735.4350000044477,-0.055151568911413845 +147088,735.4400000044478,-0.05515152126608872 +147089,735.4450000044479,-0.055151473618828634 +147090,735.450000004448,-0.05515142596963355 +147091,735.4550000044482,-0.05515137831850345 +147092,735.4600000044483,-0.05515133066543829 +147093,735.4650000044484,-0.05515128301043806 +147094,735.4700000044485,-0.05515123535350271 +147095,735.4750000044486,-0.05515118769463223 +147096,735.4800000044487,-0.05515114003382657 +147097,735.4850000044488,-0.055151092371085696 +147098,735.4900000044489,-0.05515104470640961 +147099,735.495000004449,-0.055150997039798255 +147100,735.5000000044491,-0.055150949371251604 +147101,735.5050000044492,-0.055150901700769625 +147102,735.5100000044494,-0.0551508540283523 +147103,735.5150000044495,-0.0551508063539996 +147104,735.5200000044496,-0.05515075867771148 +147105,735.5250000044497,-0.055150710999487915 +147106,735.5300000044498,-0.055150663319328885 +147107,735.5350000044499,-0.055150615637234356 +147108,735.54000000445,-0.05515056795320429 +147109,735.5450000044501,-0.05515052026723866 +147110,735.5500000044502,-0.055150472579337445 +147111,735.5550000044503,-0.0551504248895006 +147112,735.5600000044504,-0.055150377197728105 +147113,735.5650000044506,-0.05515032950401992 +147114,735.5700000044507,-0.055150281808376035 +147115,735.5750000044508,-0.055150234110796406 +147116,735.5800000044509,-0.055150186411281 +147117,735.585000004451,-0.055150138709829793 +147118,735.5900000044511,-0.055150091006442754 +147119,735.5950000044512,-0.055150043301119854 +147120,735.6000000044513,-0.055149995593861065 +147121,735.6050000044514,-0.05514994788466636 +147122,735.6100000044515,-0.0551499001735357 +147123,735.6150000044516,-0.05514985246046905 +147124,735.6200000044518,-0.0551498047454664 +147125,735.6250000044519,-0.0551497570285277 +147126,735.630000004452,-0.05514970930965293 +147127,735.6350000044521,-0.05514966158884207 +147128,735.6400000044522,-0.05514961386609507 +147129,735.6450000044523,-0.055149566141411914 +147130,735.6500000044524,-0.05514951841479257 +147131,735.6550000044525,-0.055149470686237 +147132,735.6600000044526,-0.05514942295574518 +147133,735.6650000044527,-0.05514937522331708 +147134,735.6700000044528,-0.05514932748895267 +147135,735.675000004453,-0.05514927975265191 +147136,735.6800000044531,-0.05514923201441478 +147137,735.6850000044532,-0.05514918427424125 +147138,735.6900000044533,-0.05514913653213129 +147139,735.6950000044534,-0.05514908878808488 +147140,735.7000000044535,-0.055149041042101984 +147141,735.7050000044536,-0.05514899329418256 +147142,735.7100000044537,-0.055148945544326596 +147143,735.7150000044538,-0.05514889779253405 +147144,735.7200000044539,-0.05514885003880488 +147145,735.725000004454,-0.05514880228313908 +147146,735.7300000044542,-0.0551487545255366 +147147,735.7350000044543,-0.05514870676599743 +147148,735.7400000044544,-0.05514865900452153 +147149,735.7450000044545,-0.05514861124110888 +147150,735.7500000044546,-0.05514856347575944 +147151,735.7550000044547,-0.055148515708473185 +147152,735.7600000044548,-0.055148467939250066 +147153,735.7650000044549,-0.05514842016809009 +147154,735.770000004455,-0.05514837239499319 +147155,735.7750000044551,-0.05514832461995935 +147156,735.7800000044552,-0.05514827684298855 +147157,735.7850000044554,-0.055148229064080755 +147158,735.7900000044555,-0.05514818128323593 +147159,735.7950000044556,-0.05514813350045404 +147160,735.8000000044557,-0.05514808571573507 +147161,735.8050000044558,-0.055148037929078984 +147162,735.8100000044559,-0.05514799014048575 +147163,735.815000004456,-0.05514794234995533 +147164,735.8200000044561,-0.055147894557487705 +147165,735.8250000044562,-0.055147846763082854 +147166,735.8300000044563,-0.05514779896674074 +147167,735.8350000044564,-0.055147751168461316 +147168,735.8400000044566,-0.055147703368244566 +147169,735.8450000044567,-0.05514765556609046 +147170,735.8500000044568,-0.055147607761998986 +147171,735.8550000044569,-0.05514755995597008 +147172,735.860000004457,-0.055147512148003744 +147173,735.8650000044571,-0.05514746433809992 +147174,735.8700000044572,-0.0551474165262586 +147175,735.8750000044573,-0.05514736871247973 +147176,735.8800000044574,-0.0551473208967633 +147177,735.8850000044575,-0.055147273079109285 +147178,735.8900000044576,-0.055147225259517645 +147179,735.8950000044578,-0.055147177437988346 +147180,735.9000000044579,-0.05514712961452136 +147181,735.905000004458,-0.05514708178911667 +147182,735.9100000044581,-0.05514703396177423 +147183,735.9150000044582,-0.055146986132494025 +147184,735.9200000044583,-0.05514693830127601 +147185,735.9250000044584,-0.055146890468120165 +147186,735.9300000044585,-0.05514684263302645 +147187,735.9350000044586,-0.05514679479599485 +147188,735.9400000044587,-0.05514674695702533 +147189,735.9450000044588,-0.055146699116117845 +147190,735.950000004459,-0.05514665127327238 +147191,735.9550000044591,-0.05514660342848892 +147192,735.9600000044592,-0.055146555581767405 +147193,735.9650000044593,-0.05514650773310783 +147194,735.9700000044594,-0.05514645988251014 +147195,735.9750000044595,-0.05514641202997433 +147196,735.9800000044596,-0.055146364175500354 +147197,735.9850000044597,-0.05514631631908819 +147198,735.9900000044598,-0.0551462684607378 +147199,735.9950000044599,-0.05514622060044917 +147200,736.00000000446,-0.05514617273822225 +147201,736.0050000044602,-0.055146124874057026 +147202,736.0100000044603,-0.055146077007953466 +147203,736.0150000044604,-0.05514602913991153 +147204,736.0200000044605,-0.0551459812699312 +147205,736.0250000044606,-0.055145933398012444 +147206,736.0300000044607,-0.05514588552415523 +147207,736.0350000044608,-0.055145837648359536 +147208,736.0400000044609,-0.055145789770625314 +147209,736.045000004461,-0.05514574189095254 +147210,736.0500000044611,-0.05514569400934118 +147211,736.0550000044612,-0.05514564612579123 +147212,736.0600000044614,-0.05514559824030265 +147213,736.0650000044615,-0.05514555035287539 +147214,736.0700000044616,-0.05514550246350943 +147215,736.0750000044617,-0.05514545457220476 +147216,736.0800000044618,-0.055145406678961326 +147217,736.0850000044619,-0.0551453587837791 +147218,736.090000004462,-0.05514531088665807 +147219,736.0950000044621,-0.05514526298759819 +147220,736.1000000044622,-0.05514521508659943 +147221,736.1050000044623,-0.05514516718366177 +147222,736.1100000044624,-0.055145119278785175 +147223,736.1150000044626,-0.055145071371969626 +147224,736.1200000044627,-0.05514502346321507 +147225,736.1250000044628,-0.0551449755525215 +147226,736.1300000044629,-0.05514492763988888 +147227,736.135000004463,-0.05514487972531717 +147228,736.1400000044631,-0.05514483180880635 +147229,736.1450000044632,-0.05514478389035638 +147230,736.1500000044633,-0.055144735969967246 +147231,736.1550000044634,-0.05514468804763891 +147232,736.1600000044635,-0.05514464012337135 +147233,736.1650000044636,-0.05514459219716451 +147234,736.1700000044638,-0.055144544269018395 +147235,736.1750000044639,-0.05514449633893295 +147236,736.180000004464,-0.05514444840690817 +147237,736.1850000044641,-0.055144400472944 +147238,736.1900000044642,-0.05514435253704042 +147239,736.1950000044643,-0.0551443045991974 +147240,736.2000000044644,-0.05514425665941491 +147241,736.2050000044645,-0.05514420871769292 +147242,736.2100000044646,-0.055144160774031406 +147243,736.2150000044647,-0.05514411282843034 +147244,736.2200000044649,-0.05514406488088967 +147245,736.225000004465,-0.0551440169314094 +147246,736.2300000044651,-0.055143968979989466 +147247,736.2350000044652,-0.05514392102662987 +147248,736.2400000044653,-0.05514387307133056 +147249,736.2450000044654,-0.055143825114091514 +147250,736.2500000044655,-0.0551437771549127 +147251,736.2550000044656,-0.05514372919379409 +147252,736.2600000044657,-0.05514368123073565 +147253,736.2650000044658,-0.05514363326573737 +147254,736.2700000044659,-0.055143585298799196 +147255,736.275000004466,-0.05514353732992112 +147256,736.2800000044662,-0.055143489359103084 +147257,736.2850000044663,-0.05514344138634509 +147258,736.2900000044664,-0.05514339341164708 +147259,736.2950000044665,-0.05514334543500904 +147260,736.3000000044666,-0.05514329745643094 +147261,736.3050000044667,-0.05514324947591275 +147262,736.3100000044668,-0.05514320149345444 +147263,736.3150000044669,-0.05514315350905598 +147264,736.320000004467,-0.05514310552271733 +147265,736.3250000044671,-0.05514305753443847 +147266,736.3300000044673,-0.05514300954421937 +147267,736.3350000044674,-0.05514296155206 +147268,736.3400000044675,-0.055142913557960326 +147269,736.3450000044676,-0.05514286556192033 +147270,736.3500000044677,-0.055142817563939975 +147271,736.3550000044678,-0.05514276956401922 +147272,736.3600000044679,-0.05514272156215806 +147273,736.365000004468,-0.05514267355835645 +147274,736.3700000044681,-0.055142625552614365 +147275,736.3750000044682,-0.05514257754493176 +147276,736.3800000044683,-0.05514252953530861 +147277,736.3850000044685,-0.05514248152374491 +147278,736.3900000044686,-0.05514243351024061 +147279,736.3950000044687,-0.05514238549479568 +147280,736.4000000044688,-0.0551423374774101 +147281,736.4050000044689,-0.055142289458083825 +147282,736.410000004469,-0.05514224143681685 +147283,736.4150000044691,-0.055142193413609125 +147284,736.4200000044692,-0.05514214538846062 +147285,736.4250000044693,-0.055142097361371316 +147286,736.4300000044694,-0.055142049332341174 +147287,736.4350000044695,-0.055142001301370175 +147288,736.4400000044697,-0.055141953268458284 +147289,736.4450000044698,-0.05514190523360546 +147290,736.4500000044699,-0.05514185719681169 +147291,736.45500000447,-0.05514180915807694 +147292,736.4600000044701,-0.055141761117401177 +147293,736.4650000044702,-0.055141713074784375 +147294,736.4700000044703,-0.05514166503022651 +147295,736.4750000044704,-0.055141616983727534 +147296,736.4800000044705,-0.055141568935287426 +147297,736.4850000044706,-0.05514152088490616 +147298,736.4900000044707,-0.0551414728325837 +147299,736.4950000044709,-0.05514142477832003 +147300,736.500000004471,-0.05514137672211511 +147301,736.5050000044711,-0.055141328663968925 +147302,736.5100000044712,-0.05514128060388141 +147303,736.5150000044713,-0.055141232541852575 +147304,736.5200000044714,-0.05514118447788236 +147305,736.5250000044715,-0.05514113641197076 +147306,736.5300000044716,-0.05514108834411773 +147307,736.5350000044717,-0.05514104027432325 +147308,736.5400000044718,-0.05514099220258727 +147309,736.545000004472,-0.05514094412890978 +147310,736.550000004472,-0.05514089605329075 +147311,736.5550000044722,-0.05514084797573014 +147312,736.5600000044723,-0.055140799896227936 +147313,736.5650000044724,-0.055140751814784096 +147314,736.5700000044725,-0.05514070373139859 +147315,736.5750000044726,-0.055140655646071395 +147316,736.5800000044727,-0.05514060755880247 +147317,736.5850000044728,-0.05514055946959181 +147318,736.5900000044729,-0.05514051137843936 +147319,736.595000004473,-0.055140463285345095 +147320,736.6000000044731,-0.05514041519030899 +147321,736.6050000044733,-0.05514036709333101 +147322,736.6100000044734,-0.05514031899441113 +147323,736.6150000044735,-0.05514027089354933 +147324,736.6200000044736,-0.05514022279074557 +147325,736.6250000044737,-0.055140174685999827 +147326,736.6300000044738,-0.055140126579312054 +147327,736.6350000044739,-0.055140078470682245 +147328,736.640000004474,-0.05514003036011036 +147329,736.6450000044741,-0.055139982247596364 +147330,736.6500000044742,-0.05513993413314023 +147331,736.6550000044743,-0.055139886016741926 +147332,736.6600000044745,-0.05513983789840144 +147333,736.6650000044746,-0.055139789778118724 +147334,736.6700000044747,-0.05513974165589376 +147335,736.6750000044748,-0.05513969353172649 +147336,736.6800000044749,-0.055139645405616916 +147337,736.685000004475,-0.055139597277565004 +147338,736.6900000044751,-0.05513954914757072 +147339,736.6950000044752,-0.05513950101563403 +147340,736.7000000044753,-0.055139452881754904 +147341,736.7050000044754,-0.05513940474593332 +147342,736.7100000044755,-0.05513935660816925 +147343,736.7150000044757,-0.05513930846846266 +147344,736.7200000044758,-0.055139260326813516 +147345,736.7250000044759,-0.055139212183221785 +147346,736.730000004476,-0.055139164037687455 +147347,736.7350000044761,-0.05513911589021048 +147348,736.7400000044762,-0.05513906774079084 +147349,736.7450000044763,-0.0551390195894285 +147350,736.7500000044764,-0.05513897143612343 +147351,736.7550000044765,-0.0551389232808756 +147352,736.7600000044766,-0.055138875123685 +147353,736.7650000044767,-0.05513882696455157 +147354,736.7700000044769,-0.055138778803475307 +147355,736.775000004477,-0.055138730640456164 +147356,736.7800000044771,-0.05513868247549411 +147357,736.7850000044772,-0.05513863430858912 +147358,736.7900000044773,-0.055138586139741166 +147359,736.7950000044774,-0.05513853796895022 +147360,736.8000000044775,-0.05513848979621625 +147361,736.8050000044776,-0.05513844162153923 +147362,736.8100000044777,-0.05513839344491913 +147363,736.8150000044778,-0.055138345266355915 +147364,736.820000004478,-0.05513829708584956 +147365,736.825000004478,-0.05513824890340003 +147366,736.8300000044782,-0.0551382007190073 +147367,736.8350000044783,-0.05513815253267134 +147368,736.8400000044784,-0.05513810434439212 +147369,736.8450000044785,-0.05513805615416962 +147370,736.8500000044786,-0.0551380079620038 +147371,736.8550000044787,-0.05513795976789463 +147372,736.8600000044788,-0.055137911571842085 +147373,736.8650000044789,-0.055137863373846116 +147374,736.870000004479,-0.055137815173906715 +147375,736.8750000044791,-0.055137766972023855 +147376,736.8800000044793,-0.0551377187681975 +147377,736.8850000044794,-0.05513767056242762 +147378,736.8900000044795,-0.055137622354714186 +147379,736.8950000044796,-0.05513757414505716 +147380,736.9000000044797,-0.05513752593345652 +147381,736.9050000044798,-0.055137477719912245 +147382,736.9100000044799,-0.05513742950442429 +147383,736.91500000448,-0.05513738128699264 +147384,736.9200000044801,-0.05513733306761725 +147385,736.9250000044802,-0.0551372848462981 +147386,736.9300000044803,-0.055137236623035164 +147387,736.9350000044805,-0.05513718839782841 +147388,736.9400000044806,-0.0551371401706778 +147389,736.9450000044807,-0.05513709194158331 +147390,736.9500000044808,-0.055137043710544904 +147391,736.9550000044809,-0.05513699547756257 +147392,736.960000004481,-0.05513694724263626 +147393,736.9650000044811,-0.05513689900576595 +147394,736.9700000044812,-0.05513685076695163 +147395,736.9750000044813,-0.05513680252619324 +147396,736.9800000044814,-0.05513675428349076 +147397,736.9850000044815,-0.05513670603884417 +147398,736.9900000044817,-0.05513665779225343 +147399,736.9950000044818,-0.055136609543718525 +147400,737.0000000044819,-0.05513656129323941 +147401,737.005000004482,-0.05513651304081606 +147402,737.0100000044821,-0.055136464786448444 +147403,737.0150000044822,-0.05513641653013653 +147404,737.0200000044823,-0.0551363682718803 +147405,737.0250000044824,-0.055136320011679715 +147406,737.0300000044825,-0.05513627174953476 +147407,737.0350000044826,-0.05513622348544538 +147408,737.0400000044827,-0.05513617521941157 +147409,737.0450000044829,-0.05513612695143329 +147410,737.050000004483,-0.0551360786815105 +147411,737.0550000044831,-0.05513603040964318 +147412,737.0600000044832,-0.05513598213583131 +147413,737.0650000044833,-0.05513593386007486 +147414,737.0700000044834,-0.05513588558237378 +147415,737.0750000044835,-0.05513583730272805 +147416,737.0800000044836,-0.05513578902113764 +147417,737.0850000044837,-0.05513574073760253 +147418,737.0900000044838,-0.05513569245212269 +147419,737.095000004484,-0.05513564416469808 +147420,737.1000000044841,-0.05513559587532868 +147421,737.1050000044842,-0.05513554758401445 +147422,737.1100000044843,-0.05513549929075536 +147423,737.1150000044844,-0.055135450995551394 +147424,737.1200000044845,-0.055135402698402516 +147425,737.1250000044846,-0.055135354399308695 +147426,737.1300000044847,-0.05513530609826991 +147427,737.1350000044848,-0.05513525779528611 +147428,737.1400000044849,-0.05513520949035729 +147429,737.145000004485,-0.05513516118348339 +147430,737.1500000044852,-0.05513511287466442 +147431,737.1550000044853,-0.05513506456390031 +147432,737.1600000044854,-0.05513501625119108 +147433,737.1650000044855,-0.055134967936536654 +147434,737.1700000044856,-0.05513491961993702 +147435,737.1750000044857,-0.055134871301392156 +147436,737.1800000044858,-0.05513482298090202 +147437,737.1850000044859,-0.055134774658466584 +147438,737.190000004486,-0.05513472633408583 +147439,737.1950000044861,-0.055134678007759716 +147440,737.2000000044862,-0.05513462967948821 +147441,737.2050000044864,-0.0551345813492713 +147442,737.2100000044865,-0.05513453301710895 +147443,737.2150000044866,-0.05513448468300112 +147444,737.2200000044867,-0.05513443634694779 +147445,737.2250000044868,-0.05513438800894893 +147446,737.2300000044869,-0.0551343396690045 +147447,737.235000004487,-0.05513429132711448 +147448,737.2400000044871,-0.05513424298327884 +147449,737.2450000044872,-0.055134194637497545 +147450,737.2500000044873,-0.05513414628977057 +147451,737.2550000044874,-0.05513409794009789 +147452,737.2600000044876,-0.05513404958847947 +147453,737.2650000044877,-0.05513400123491529 +147454,737.2700000044878,-0.0551339528794053 +147455,737.2750000044879,-0.05513390452194949 +147456,737.280000004488,-0.05513385616254783 +147457,737.2850000044881,-0.05513380780120028 +147458,737.2900000044882,-0.055133759437906806 +147459,737.2950000044883,-0.055133711072667395 +147460,737.3000000044884,-0.05513366270548201 +147461,737.3050000044885,-0.05513361433635062 +147462,737.3100000044886,-0.05513356596527319 +147463,737.3150000044888,-0.05513351759224971 +147464,737.3200000044889,-0.05513346921728012 +147465,737.325000004489,-0.05513342084036441 +147466,737.3300000044891,-0.055133372461502544 +147467,737.3350000044892,-0.05513332408069451 +147468,737.3400000044893,-0.055133275697940264 +147469,737.3450000044894,-0.055133227313239774 +147470,737.3500000044895,-0.05513317892659302 +147471,737.3550000044896,-0.05513313053799996 +147472,737.3600000044897,-0.05513308214746057 +147473,737.3650000044898,-0.05513303375497482 +147474,737.37000000449,-0.05513298536054269 +147475,737.3750000044901,-0.055132936964164145 +147476,737.3800000044902,-0.05513288856583915 +147477,737.3850000044903,-0.05513284016556767 +147478,737.3900000044904,-0.05513279176334969 +147479,737.3950000044905,-0.05513274335918517 +147480,737.4000000044906,-0.055132694953074095 +147481,737.4050000044907,-0.05513264654501643 +147482,737.4100000044908,-0.05513259813501213 +147483,737.4150000044909,-0.055132549723061176 +147484,737.420000004491,-0.05513250130916354 +147485,737.4250000044912,-0.055132452893319195 +147486,737.4300000044913,-0.05513240447552812 +147487,737.4350000044914,-0.05513235605579027 +147488,737.4400000044915,-0.055132307634105614 +147489,737.4450000044916,-0.055132259210474134 +147490,737.4500000044917,-0.05513221078489579 +147491,737.4550000044918,-0.05513216235737055 +147492,737.4600000044919,-0.05513211392789839 +147493,737.465000004492,-0.05513206549647929 +147494,737.4700000044921,-0.055132017063113214 +147495,737.4750000044922,-0.05513196862780012 +147496,737.4800000044924,-0.05513192019054 +147497,737.4850000044925,-0.05513187175133281 +147498,737.4900000044926,-0.05513182331017853 +147499,737.4950000044927,-0.05513177486707713 +147500,737.5000000044928,-0.055131726422028564 +147501,737.5050000044929,-0.055131677975032815 +147502,737.510000004493,-0.055131629526089854 +147503,737.5150000044931,-0.05513158107519965 +147504,737.5200000044932,-0.05513153262236217 +147505,737.5250000044933,-0.0551314841675774 +147506,737.5300000044934,-0.0551314357108453 +147507,737.5350000044936,-0.05513138725216583 +147508,737.5400000044937,-0.05513133879153897 +147509,737.5450000044938,-0.05513129032896468 +147510,737.5500000044939,-0.05513124186444296 +147511,737.555000004494,-0.055131193397973746 +147512,737.5600000044941,-0.05513114492955704 +147513,737.5650000044942,-0.05513109645919279 +147514,737.5700000044943,-0.055131047986880975 +147515,737.5750000044944,-0.055130999512621556 +147516,737.5800000044945,-0.055130951036414515 +147517,737.5850000044946,-0.05513090255825982 +147518,737.5900000044948,-0.05513085407815744 +147519,737.5950000044949,-0.05513080559610735 +147520,737.600000004495,-0.055130757112109505 +147521,737.6050000044951,-0.05513070862616389 +147522,737.6100000044952,-0.05513066013827047 +147523,737.6150000044953,-0.05513061164842922 +147524,737.6200000044954,-0.05513056315664011 +147525,737.6250000044955,-0.05513051466290311 +147526,737.6300000044956,-0.05513046616721819 +147527,737.6350000044957,-0.05513041766958531 +147528,737.6400000044958,-0.05513036917000446 +147529,737.645000004496,-0.05513032066847559 +147530,737.6500000044961,-0.05513027216499869 +147531,737.6550000044962,-0.055130223659573714 +147532,737.6600000044963,-0.05513017515220065 +147533,737.6650000044964,-0.05513012664287946 +147534,737.6700000044965,-0.055130078131610104 +147535,737.6750000044966,-0.05513002961839257 +147536,737.6800000044967,-0.05512998110322681 +147537,737.6850000044968,-0.05512993258611282 +147538,737.6900000044969,-0.05512988406705054 +147539,737.695000004497,-0.05512983554603996 +147540,737.7000000044972,-0.05512978702308105 +147541,737.7050000044973,-0.05512973849817378 +147542,737.7100000044974,-0.05512968997131812 +147543,737.7150000044975,-0.05512964144251403 +147544,737.7200000044976,-0.05512959291176148 +147545,737.7250000044977,-0.05512954437906045 +147546,737.7300000044978,-0.05512949584441091 +147547,737.7350000044979,-0.05512944730781284 +147548,737.740000004498,-0.05512939876926619 +147549,737.7450000044981,-0.05512935022877095 +147550,737.7500000044982,-0.05512930168632707 +147551,737.7550000044984,-0.055129253141934544 +147552,737.7600000044985,-0.055129204595593326 +147553,737.7650000044986,-0.05512915604730338 +147554,737.7700000044987,-0.0551291074970647 +147555,737.7750000044988,-0.05512905894487725 +147556,737.7800000044989,-0.05512901039074099 +147557,737.785000004499,-0.05512896183465588 +147558,737.7900000044991,-0.055128913276621914 +147559,737.7950000044992,-0.05512886471663906 +147560,737.8000000044993,-0.05512881615470728 +147561,737.8050000044994,-0.05512876759082654 +147562,737.8100000044996,-0.05512871902499683 +147563,737.8150000044997,-0.055128670457218094 +147564,737.8200000044998,-0.05512862188749033 +147565,737.8250000044999,-0.05512857331581349 +147566,737.8300000045,-0.05512852474218754 +147567,737.8350000045001,-0.055128476166612476 +147568,737.8400000045002,-0.05512842758908825 +147569,737.8450000045003,-0.055128379009614835 +147570,737.8500000045004,-0.0551283304281922 +147571,737.8550000045005,-0.055128281844820305 +147572,737.8600000045006,-0.05512823325949914 +147573,737.8650000045008,-0.05512818467222867 +147574,737.8700000045009,-0.05512813608300887 +147575,737.875000004501,-0.05512808749183969 +147576,737.8800000045011,-0.05512803889872113 +147577,737.8850000045012,-0.05512799030365314 +147578,737.8900000045013,-0.05512794170663568 +147579,737.8950000045014,-0.05512789310766875 +147580,737.9000000045015,-0.05512784450675231 +147581,737.9050000045016,-0.05512779590388633 +147582,737.9100000045017,-0.055127747299070766 +147583,737.9150000045018,-0.055127698692305604 +147584,737.920000004502,-0.05512765008359081 +147585,737.9250000045021,-0.055127601472926356 +147586,737.9300000045022,-0.05512755286031221 +147587,737.9350000045023,-0.05512750424574834 +147588,737.9400000045024,-0.05512745562923473 +147589,737.9450000045025,-0.05512740701077134 +147590,737.9500000045026,-0.05512735839035814 +147591,737.9550000045027,-0.055127309767995104 +147592,737.9600000045028,-0.055127261143682195 +147593,737.9650000045029,-0.05512721251741938 +147594,737.970000004503,-0.055127163889206646 +147595,737.9750000045032,-0.055127115259043964 +147596,737.9800000045033,-0.05512706662693128 +147597,737.9850000045034,-0.055127017992868586 +147598,737.9900000045035,-0.055126969356855855 +147599,737.9950000045036,-0.055126920718893045 +147600,738.0000000045037,-0.05512687207898014 +147601,738.0050000045038,-0.0551268234371171 +147602,738.0100000045039,-0.0551267747933039 +147603,738.015000004504,-0.055126726147540495 +147604,738.0200000045041,-0.05512667749982687 +147605,738.0250000045042,-0.055126628850163 +147606,738.0300000045044,-0.05512658019854885 +147607,738.0350000045045,-0.05512653154498439 +147608,738.0400000045046,-0.055126482889469586 +147609,738.0450000045047,-0.05512643423200442 +147610,738.0500000045048,-0.055126385572588844 +147611,738.0550000045049,-0.05512633691122285 +147612,738.060000004505,-0.055126288247906406 +147613,738.0650000045051,-0.05512623958263946 +147614,738.0700000045052,-0.055126190915422 +147615,738.0750000045053,-0.05512614224625399 +147616,738.0800000045055,-0.05512609357513541 +147617,738.0850000045056,-0.055126044902066226 +147618,738.0900000045057,-0.0551259962270464 +147619,738.0950000045058,-0.055125947550075924 +147620,738.1000000045059,-0.055125898871154745 +147621,738.105000004506,-0.05512585019028285 +147622,738.1100000045061,-0.055125801507460194 +147623,738.1150000045062,-0.055125752822686766 +147624,738.1200000045063,-0.05512570413596251 +147625,738.1250000045064,-0.05512565544728742 +147626,738.1300000045065,-0.055125606756661456 +147627,738.1350000045067,-0.05512555806408459 +147628,738.1400000045068,-0.0551255093695568 +147629,738.1450000045069,-0.05512546067307804 +147630,738.150000004507,-0.055125411974648306 +147631,738.1550000045071,-0.05512536327426754 +147632,738.1600000045072,-0.055125314571935737 +147633,738.1650000045073,-0.055125265867652845 +147634,738.1700000045074,-0.05512521716141885 +147635,738.1750000045075,-0.05512516845323372 +147636,738.1800000045076,-0.05512511974309742 +147637,738.1850000045077,-0.05512507103100992 +147638,738.1900000045079,-0.055125022316971216 +147639,738.195000004508,-0.05512497360098124 +147640,738.2000000045081,-0.05512492488303998 +147641,738.2050000045082,-0.05512487616314741 +147642,738.2100000045083,-0.055124827441303495 +147643,738.2150000045084,-0.055124778717508205 +147644,738.2200000045085,-0.05512472999176151 +147645,738.2250000045086,-0.0551246812640634 +147646,738.2300000045087,-0.05512463253441382 +147647,738.2350000045088,-0.05512458380281275 +147648,738.2400000045089,-0.05512453506926016 +147649,738.245000004509,-0.05512448633375601 +147650,738.2500000045092,-0.055124437596300285 +147651,738.2550000045093,-0.05512438885689295 +147652,738.2600000045094,-0.055124340115533986 +147653,738.2650000045095,-0.05512429137222334 +147654,738.2700000045096,-0.05512424262696101 +147655,738.2750000045097,-0.055124193879746944 +147656,738.2800000045098,-0.055124145130581115 +147657,738.2850000045099,-0.05512409637946349 +147658,738.29000000451,-0.05512404762639408 +147659,738.2950000045101,-0.05512399887137281 +147660,738.3000000045103,-0.05512395011439966 +147661,738.3050000045104,-0.05512390135547462 +147662,738.3100000045105,-0.05512385259459762 +147663,738.3150000045106,-0.05512380383176867 +147664,738.3200000045107,-0.055123755066987724 +147665,738.3250000045108,-0.05512370630025475 +147666,738.3300000045109,-0.05512365753156973 +147667,738.335000004511,-0.05512360876093263 +147668,738.3400000045111,-0.05512355998834342 +147669,738.3450000045112,-0.05512351121380206 +147670,738.3500000045113,-0.055123462437308535 +147671,738.3550000045115,-0.0551234136588628 +147672,738.3600000045116,-0.055123364878464844 +147673,738.3650000045117,-0.05512331609611462 +147674,738.3700000045118,-0.055123267311812114 +147675,738.3750000045119,-0.055123218525557294 +147676,738.380000004512,-0.055123169737350125 +147677,738.3850000045121,-0.055123120947190574 +147678,738.3900000045122,-0.05512307215507862 +147679,738.3950000045123,-0.05512302336101422 +147680,738.4000000045124,-0.05512297456499737 +147681,738.4050000045125,-0.05512292576702801 +147682,738.4100000045127,-0.055122876967106126 +147683,738.4150000045128,-0.05512282816523168 +147684,738.4200000045129,-0.05512277936140465 +147685,738.425000004513,-0.05512273055562503 +147686,738.4300000045131,-0.05512268174789274 +147687,738.4350000045132,-0.05512263293820779 +147688,738.4400000045133,-0.05512258412657013 +147689,738.4450000045134,-0.055122535312979754 +147690,738.4500000045135,-0.0551224864974366 +147691,738.4550000045136,-0.05512243767994066 +147692,738.4600000045137,-0.055122388860491894 +147693,738.4650000045139,-0.05512234003909028 +147694,738.470000004514,-0.05512229121573579 +147695,738.4750000045141,-0.055122242390428386 +147696,738.4800000045142,-0.05512219356316804 +147697,738.4850000045143,-0.05512214473395473 +147698,738.4900000045144,-0.055122095902788416 +147699,738.4950000045145,-0.05512204706966908 +147700,738.5000000045146,-0.055121998234596674 +147701,738.5050000045147,-0.05512194939757119 +147702,738.5100000045148,-0.05512190055859258 +147703,738.515000004515,-0.05512185171766083 +147704,738.520000004515,-0.05512180287477591 +147705,738.5250000045152,-0.055121754029937776 +147706,738.5300000045153,-0.05512170518314641 +147707,738.5350000045154,-0.05512165633440176 +147708,738.5400000045155,-0.05512160748370383 +147709,738.5450000045156,-0.055121558631052565 +147710,738.5500000045157,-0.055121509776447954 +147711,738.5550000045158,-0.05512146091988995 +147712,738.5600000045159,-0.05512141206137855 +147713,738.565000004516,-0.05512136320091371 +147714,738.5700000045161,-0.05512131433849538 +147715,738.5750000045163,-0.05512126547412356 +147716,738.5800000045164,-0.0551212166077982 +147717,738.5850000045165,-0.05512116773951929 +147718,738.5900000045166,-0.05512111886928679 +147719,738.5950000045167,-0.05512106999710066 +147720,738.6000000045168,-0.055121021122960884 +147721,738.6050000045169,-0.055120972246867427 +147722,738.610000004517,-0.05512092336882026 +147723,738.6150000045171,-0.05512087448881935 +147724,738.6200000045172,-0.05512082560686469 +147725,738.6250000045173,-0.05512077672295621 +147726,738.6300000045175,-0.05512072783709391 +147727,738.6350000045176,-0.055120678949277746 +147728,738.6400000045177,-0.05512063005950771 +147729,738.6450000045178,-0.05512058116778374 +147730,738.6500000045179,-0.05512053227410583 +147731,738.655000004518,-0.05512048337847395 +147732,738.6600000045181,-0.05512043448088807 +147733,738.6650000045182,-0.055120385581348144 +147734,738.6700000045183,-0.05512033667985415 +147735,738.6750000045184,-0.05512028777640606 +147736,738.6800000045185,-0.05512023887100385 +147737,738.6850000045187,-0.055120189963647495 +147738,738.6900000045188,-0.05512014105433694 +147739,738.6950000045189,-0.05512009214307219 +147740,738.700000004519,-0.05512004322985318 +147741,738.7050000045191,-0.05511999431467991 +147742,738.7100000045192,-0.05511994539755234 +147743,738.7150000045193,-0.05511989647847044 +147744,738.7200000045194,-0.05511984755743417 +147745,738.7250000045195,-0.055119798634443516 +147746,738.7300000045196,-0.055119749709498435 +147747,738.7350000045197,-0.05511970078259891 +147748,738.7400000045199,-0.0551196518537449 +147749,738.74500000452,-0.055119602922936384 +147750,738.7500000045201,-0.05511955399017332 +147751,738.7550000045202,-0.05511950505545569 +147752,738.7600000045203,-0.05511945611878346 +147753,738.7650000045204,-0.055119407180156614 +147754,738.7700000045205,-0.05511935823957511 +147755,738.7750000045206,-0.05511930929703891 +147756,738.7800000045207,-0.055119260352548 +147757,738.7850000045208,-0.05511921140610234 +147758,738.790000004521,-0.055119162457701903 +147759,738.7950000045211,-0.055119113507346655 +147760,738.8000000045212,-0.055119064555036575 +147761,738.8050000045213,-0.055119015600771634 +147762,738.8100000045214,-0.05511896664455179 +147763,738.8150000045215,-0.05511891768637702 +147764,738.8200000045216,-0.0551188687262473 +147765,738.8250000045217,-0.055118819764162594 +147766,738.8300000045218,-0.055118770800122875 +147767,738.8350000045219,-0.05511872183412811 +147768,738.840000004522,-0.055118672866178275 +147769,738.8450000045221,-0.05511862389627333 +147770,738.8500000045223,-0.055118574924413265 +147771,738.8550000045224,-0.05511852595059804 +147772,738.8600000045225,-0.055118476974827614 +147773,738.8650000045226,-0.055118427997101975 +147774,738.8700000045227,-0.05511837901742108 +147775,738.8750000045228,-0.055118330035784896 +147776,738.8800000045229,-0.055118281052193414 +147777,738.885000004523,-0.05511823206664659 +147778,738.8900000045231,-0.05511818307914439 +147779,738.8950000045232,-0.05511813408968679 +147780,738.9000000045233,-0.05511808509827377 +147781,738.9050000045235,-0.05511803610490529 +147782,738.9100000045236,-0.05511798710958131 +147783,738.9150000045237,-0.05511793811230182 +147784,738.9200000045238,-0.05511788911306677 +147785,738.9250000045239,-0.05511784011187615 +147786,738.930000004524,-0.05511779110872992 +147787,738.9350000045241,-0.05511774210362806 +147788,738.9400000045242,-0.05511769309657053 +147789,738.9450000045243,-0.05511764408755731 +147790,738.9500000045244,-0.05511759507658836 +147791,738.9550000045245,-0.055117546063663654 +147792,738.9600000045247,-0.05511749704878315 +147793,738.9650000045248,-0.05511744803194684 +147794,738.9700000045249,-0.05511739901315468 +147795,738.975000004525,-0.055117349992406646 +147796,738.9800000045251,-0.055117300969702715 +147797,738.9850000045252,-0.05511725194504284 +147798,738.9900000045253,-0.055117202918427 +147799,738.9950000045254,-0.05511715388985518 +147800,739.0000000045255,-0.055117104859327325 +147801,739.0050000045256,-0.055117055826843425 +147802,739.0100000045258,-0.05511700679240343 +147803,739.0150000045259,-0.05511695775600733 +147804,739.020000004526,-0.05511690871765508 +147805,739.0250000045261,-0.05511685967734667 +147806,739.0300000045262,-0.055116810635082045 +147807,739.0350000045263,-0.0551167615908612 +147808,739.0400000045264,-0.055116712544684095 +147809,739.0450000045265,-0.055116663496550686 +147810,739.0500000045266,-0.05511661444646096 +147811,739.0550000045267,-0.055116565394414875 +147812,739.0600000045268,-0.05511651634041242 +147813,739.065000004527,-0.05511646728445355 +147814,739.0700000045271,-0.05511641822653825 +147815,739.0750000045272,-0.05511636916666648 +147816,739.0800000045273,-0.0551163201048382 +147817,739.0850000045274,-0.0551162710410534 +147818,739.0900000045275,-0.05511622197531203 +147819,739.0950000045276,-0.05511617290761407 +147820,739.1000000045277,-0.05511612383795951 +147821,739.1050000045278,-0.05511607476634829 +147822,739.1100000045279,-0.0551160256927804 +147823,739.115000004528,-0.0551159766172558 +147824,739.1200000045282,-0.05511592753977445 +147825,739.1250000045283,-0.05511587846033633 +147826,739.1300000045284,-0.05511582937894143 +147827,739.1350000045285,-0.05511578029558969 +147828,739.1400000045286,-0.0551157312102811 +147829,739.1450000045287,-0.05511568212301562 +147830,739.1500000045288,-0.055115633033793215 +147831,739.1550000045289,-0.055115583942613885 +147832,739.160000004529,-0.05511553484947757 +147833,739.1650000045291,-0.055115485754384255 +147834,739.1700000045292,-0.055115436657333906 +147835,739.1750000045294,-0.05511538755832648 +147836,739.1800000045295,-0.05511533845736196 +147837,739.1850000045296,-0.05511528935444032 +147838,739.1900000045297,-0.05511524024956153 +147839,739.1950000045298,-0.055115191142725534 +147840,739.2000000045299,-0.05511514203393234 +147841,739.20500000453,-0.0551150929231819 +147842,739.2100000045301,-0.05511504381047419 +147843,739.2150000045302,-0.055114994695809175 +147844,739.2200000045303,-0.05511494557918682 +147845,739.2250000045304,-0.05511489646060711 +147846,739.2300000045306,-0.05511484734007 +147847,739.2350000045307,-0.05511479821757547 +147848,739.2400000045308,-0.05511474909312349 +147849,739.2450000045309,-0.05511469996671403 +147850,739.250000004531,-0.055114650838347046 +147851,739.2550000045311,-0.055114601708022536 +147852,739.2600000045312,-0.055114552575740446 +147853,739.2650000045313,-0.05511450344150076 +147854,739.2700000045314,-0.05511445430530344 +147855,739.2750000045315,-0.055114405167148446 +147856,739.2800000045316,-0.05511435602703577 +147857,739.2850000045318,-0.055114306884965374 +147858,739.2900000045319,-0.05511425774093722 +147859,739.295000004532,-0.055114208594951294 +147860,739.3000000045321,-0.05511415944700755 +147861,739.3050000045322,-0.055114110297105966 +147862,739.3100000045323,-0.05511406114524651 +147863,739.3150000045324,-0.055114011991429165 +147864,739.3200000045325,-0.05511396283565388 +147865,739.3250000045326,-0.05511391367792064 +147866,739.3300000045327,-0.05511386451822941 +147867,739.3350000045328,-0.055113815356580165 +147868,739.340000004533,-0.05511376619297286 +147869,739.3450000045331,-0.05511371702740748 +147870,739.3500000045332,-0.05511366785988399 +147871,739.3550000045333,-0.05511361869040236 +147872,739.3600000045334,-0.05511356951896256 +147873,739.3650000045335,-0.05511352034556457 +147874,739.3700000045336,-0.055113471170208345 +147875,739.3750000045337,-0.05511342199289386 +147876,739.3800000045338,-0.0551133728136211 +147877,739.3850000045339,-0.05511332363239001 +147878,739.390000004534,-0.055113274449200576 +147879,739.3950000045342,-0.05511322526405276 +147880,739.4000000045343,-0.05511317607694653 +147881,739.4050000045344,-0.05511312688788188 +147882,739.4100000045345,-0.055113077696858755 +147883,739.4150000045346,-0.055113028503877136 +147884,739.4200000045347,-0.05511297930893697 +147885,739.4250000045348,-0.05511293011203826 +147886,739.4300000045349,-0.05511288091318096 +147887,739.435000004535,-0.05511283171236505 +147888,739.4400000045351,-0.05511278250959049 +147889,739.4450000045352,-0.05511273330485725 +147890,739.4500000045354,-0.055112684098165304 +147891,739.4550000045355,-0.05511263488951462 +147892,739.4600000045356,-0.05511258567890518 +147893,739.4650000045357,-0.05511253646633694 +147894,739.4700000045358,-0.055112487251809866 +147895,739.4750000045359,-0.05511243803532393 +147896,739.480000004536,-0.05511238881687912 +147897,739.4850000045361,-0.05511233959647539 +147898,739.4900000045362,-0.05511229037411272 +147899,739.4950000045363,-0.05511224114979106 +147900,739.5000000045364,-0.05511219192351041 +147901,739.5050000045366,-0.05511214269527072 +147902,739.5100000045367,-0.05511209346507197 +147903,739.5150000045368,-0.05511204423291412 +147904,739.5200000045369,-0.05511199499879713 +147905,739.525000004537,-0.05511194576272099 +147906,739.5300000045371,-0.05511189652468568 +147907,739.5350000045372,-0.05511184728469114 +147908,739.5400000045373,-0.05511179804273735 +147909,739.5450000045374,-0.055111748798824294 +147910,739.5500000045375,-0.055111699552951934 +147911,739.5550000045376,-0.05511165030512024 +147912,739.5600000045378,-0.055111601055329175 +147913,739.5650000045379,-0.05511155180357872 +147914,739.570000004538,-0.05511150254986883 +147915,739.5750000045381,-0.055111453294199496 +147916,739.5800000045382,-0.05511140403657068 +147917,739.5850000045383,-0.05511135477698234 +147918,739.5900000045384,-0.05511130551543445 +147919,739.5950000045385,-0.05511125625192699 +147920,739.6000000045386,-0.05511120698645994 +147921,739.6050000045387,-0.05511115771903323 +147922,739.6100000045388,-0.05511110844964687 +147923,739.615000004539,-0.05511105917830081 +147924,739.6200000045391,-0.05511100990499503 +147925,739.6250000045392,-0.05511096062972949 +147926,739.6300000045393,-0.05511091135250418 +147927,739.6350000045394,-0.05511086207331904 +147928,739.6400000045395,-0.05511081279217406 +147929,739.6450000045396,-0.055110763509069204 +147930,739.6500000045397,-0.05511071422400444 +147931,739.6550000045398,-0.05511066493697975 +147932,739.6600000045399,-0.05511061564799509 +147933,739.66500000454,-0.05511056635705043 +147934,739.6700000045402,-0.055110517064145756 +147935,739.6750000045403,-0.05511046776928102 +147936,739.6800000045404,-0.05511041847245621 +147937,739.6850000045405,-0.05511036917367127 +147938,739.6900000045406,-0.0551103198729262 +147939,739.6950000045407,-0.05511027057022095 +147940,739.7000000045408,-0.055110221265555495 +147941,739.7050000045409,-0.055110171958929796 +147942,739.710000004541,-0.05511012265034384 +147943,739.7150000045411,-0.055110073339797595 +147944,739.7200000045412,-0.05511002402729102 +147945,739.7250000045414,-0.055109974712824084 +147946,739.7300000045415,-0.05510992539639676 +147947,739.7350000045416,-0.05510987607800904 +147948,739.7400000045417,-0.05510982675766086 +147949,739.7450000045418,-0.055109777435352204 +147950,739.7500000045419,-0.05510972811108304 +147951,739.755000004542,-0.05510967878485336 +147952,739.7600000045421,-0.0551096294566631 +147953,739.7650000045422,-0.05510958012651226 +147954,739.7700000045423,-0.055109530794400785 +147955,739.7750000045424,-0.05510948146032865 +147956,739.7800000045426,-0.05510943212429584 +147957,739.7850000045427,-0.055109382786302306 +147958,739.7900000045428,-0.05510933344634803 +147959,739.7950000045429,-0.05510928410443298 +147960,739.800000004543,-0.05510923476055712 +147961,739.8050000045431,-0.055109185414720416 +147962,739.8100000045432,-0.05510913606692286 +147963,739.8150000045433,-0.055109086717164406 +147964,739.8200000045434,-0.05510903736544502 +147965,739.8250000045435,-0.055108988011764684 +147966,739.8300000045436,-0.05510893865612336 +147967,739.8350000045438,-0.05510888929852102 +147968,739.8400000045439,-0.055108839938957634 +147969,739.845000004544,-0.05510879057743317 +147970,739.8500000045441,-0.0551087412139476 +147971,739.8550000045442,-0.055108691848500896 +147972,739.8600000045443,-0.05510864248109303 +147973,739.8650000045444,-0.05510859311172396 +147974,739.8700000045445,-0.05510854374039367 +147975,739.8750000045446,-0.055108494367102114 +147976,739.8800000045447,-0.05510844499184927 +147977,739.8850000045448,-0.05510839561463512 +147978,739.890000004545,-0.055108346235459606 +147979,739.8950000045451,-0.05510829685432273 +147980,739.9000000045452,-0.05510824747122445 +147981,739.9050000045453,-0.05510819808616472 +147982,739.9100000045454,-0.05510814869914353 +147983,739.9150000045455,-0.05510809931016084 +147984,739.9200000045456,-0.05510804991921661 +147985,739.9250000045457,-0.05510800052631083 +147986,739.9300000045458,-0.05510795113144347 +147987,739.9350000045459,-0.05510790173461449 +147988,739.940000004546,-0.055107852335823854 +147989,739.9450000045462,-0.05510780293507153 +147990,739.9500000045463,-0.05510775353235751 +147991,739.9550000045464,-0.05510770412768174 +147992,739.9600000045465,-0.055107654721044216 +147993,739.9650000045466,-0.05510760531244489 +147994,739.9700000045467,-0.05510755590188373 +147995,739.9750000045468,-0.05510750648936072 +147996,739.9800000045469,-0.05510745707487581 +147997,739.985000004547,-0.05510740765842898 +147998,739.9900000045471,-0.05510735824002021 +147999,739.9950000045473,-0.055107308819649446 +148000,740.0000000045474,-0.055107259397316685 +148001,740.0050000045475,-0.05510720997302187 +148002,740.0100000045476,-0.05510716054676499 +148003,740.0150000045477,-0.055107111118546 +148004,740.0200000045478,-0.05510706168836489 +148005,740.0250000045479,-0.055107012256221624 +148006,740.030000004548,-0.05510696282211616 +148007,740.0350000045481,-0.05510691338604848 +148008,740.0400000045482,-0.055106863948018545 +148009,740.0450000045483,-0.05510681450802632 +148010,740.0500000045485,-0.05510676506607179 +148011,740.0550000045486,-0.05510671562215491 +148012,740.0600000045487,-0.055106666176275666 +148013,740.0650000045488,-0.05510661672843402 +148014,740.0700000045489,-0.05510656727862994 +148015,740.075000004549,-0.0551065178268634 +148016,740.0800000045491,-0.05510646837313435 +148017,740.0850000045492,-0.05510641891744278 +148018,740.0900000045493,-0.05510636945978867 +148019,740.0950000045494,-0.05510632000017196 +148020,740.1000000045495,-0.05510627053859264 +148021,740.1050000045497,-0.055106221075050685 +148022,740.1100000045498,-0.05510617160954604 +148023,740.1150000045499,-0.05510612214207869 +148024,740.12000000455,-0.05510607267264861 +148025,740.1250000045501,-0.055106023201255766 +148026,740.1300000045502,-0.055105973727900125 +148027,740.1350000045503,-0.05510592425258166 +148028,740.1400000045504,-0.05510587477530034 +148029,740.1450000045505,-0.05510582529605613 +148030,740.1500000045506,-0.055105775814848997 +148031,740.1550000045507,-0.05510572633167892 +148032,740.1600000045509,-0.055105676846545874 +148033,740.165000004551,-0.055105627359449814 +148034,740.1700000045511,-0.05510557787039072 +148035,740.1750000045512,-0.05510552837936855 +148036,740.1800000045513,-0.055105478886383286 +148037,740.1850000045514,-0.055105429391434896 +148038,740.1900000045515,-0.05510537989452334 +148039,740.1950000045516,-0.05510533039564859 +148040,740.2000000045517,-0.055105280894810635 +148041,740.2050000045518,-0.055105231392009416 +148042,740.210000004552,-0.055105181887244926 +148043,740.215000004552,-0.05510513238051712 +148044,740.2200000045522,-0.05510508287182597 +148045,740.2250000045523,-0.05510503336117145 +148046,740.2300000045524,-0.05510498384855353 +148047,740.2350000045525,-0.055104934333972184 +148048,740.2400000045526,-0.055104884817427376 +148049,740.2450000045527,-0.055104835298919075 +148050,740.2500000045528,-0.055104785778447254 +148051,740.2550000045529,-0.05510473625601188 +148052,740.260000004553,-0.055104686731612916 +148053,740.2650000045531,-0.05510463720525034 +148054,740.2700000045533,-0.055104587676924124 +148055,740.2750000045534,-0.05510453814663423 +148056,740.2800000045535,-0.05510448861438063 +148057,740.2850000045536,-0.05510443908016329 +148058,740.2900000045537,-0.055104389543982196 +148059,740.2950000045538,-0.055104340005837305 +148060,740.3000000045539,-0.05510429046572858 +148061,740.305000004554,-0.05510424092365601 +148062,740.3100000045541,-0.055104191379619534 +148063,740.3150000045542,-0.055104141833619155 +148064,740.3200000045543,-0.05510409228565482 +148065,740.3250000045545,-0.05510404273572651 +148066,740.3300000045546,-0.055103993183834195 +148067,740.3350000045547,-0.055103943629977836 +148068,740.3400000045548,-0.05510389407415741 +148069,740.3450000045549,-0.05510384451637289 +148070,740.350000004555,-0.05510379495662423 +148071,740.3550000045551,-0.05510374539491141 +148072,740.3600000045552,-0.0551036958312344 +148073,740.3650000045553,-0.05510364626559317 +148074,740.3700000045554,-0.0551035966979877 +148075,740.3750000045555,-0.05510354712841793 +148076,740.3800000045557,-0.05510349755688385 +148077,740.3850000045558,-0.055103447983385435 +148078,740.3900000045559,-0.05510339840792266 +148079,740.395000004556,-0.05510334883049547 +148080,740.4000000045561,-0.055103299251103834 +148081,740.4050000045562,-0.05510324966974774 +148082,740.4100000045563,-0.055103200086427155 +148083,740.4150000045564,-0.05510315050114204 +148084,740.4200000045565,-0.05510310091389238 +148085,740.4250000045566,-0.05510305132467812 +148086,740.4300000045567,-0.05510300173349925 +148087,740.4350000045569,-0.05510295214035574 +148088,740.440000004557,-0.055102902545247544 +148089,740.4450000045571,-0.055102852948174644 +148090,740.4500000045572,-0.05510280334913701 +148091,740.4550000045573,-0.05510275374813461 +148092,740.4600000045574,-0.055102704145167394 +148093,740.4650000045575,-0.055102654540235364 +148094,740.4700000045576,-0.05510260493333847 +148095,740.4750000045577,-0.055102555324476686 +148096,740.4800000045578,-0.055102505713649975 +148097,740.485000004558,-0.05510245610085832 +148098,740.490000004558,-0.05510240648610167 +148099,740.4950000045582,-0.05510235686938002 +148100,740.5000000045583,-0.055102307250693316 +148101,740.5050000045584,-0.05510225763004155 +148102,740.5100000045585,-0.05510220800742468 +148103,740.5150000045586,-0.05510215838284267 +148104,740.5200000045587,-0.05510210875629551 +148105,740.5250000045588,-0.05510205912778314 +148106,740.5300000045589,-0.055102009497305544 +148107,740.535000004559,-0.055101959864862694 +148108,740.5400000045591,-0.05510191023045455 +148109,740.5450000045593,-0.055101860594081106 +148110,740.5500000045594,-0.0551018109557423 +148111,740.5550000045595,-0.05510176131543811 +148112,740.5600000045596,-0.055101711673168526 +148113,740.5650000045597,-0.05510166202893349 +148114,740.5700000045598,-0.055101612382733 +148115,740.5750000045599,-0.055101562734567 +148116,740.58000000456,-0.05510151308443547 +148117,740.5850000045601,-0.05510146343233838 +148118,740.5900000045602,-0.0551014137782757 +148119,740.5950000045603,-0.05510136412224739 +148120,740.6000000045605,-0.05510131446425343 +148121,740.6050000045606,-0.055101264804293795 +148122,740.6100000045607,-0.05510121514236843 +148123,740.6150000045608,-0.05510116547847733 +148124,740.6200000045609,-0.05510111581262045 +148125,740.625000004561,-0.05510106614479777 +148126,740.6300000045611,-0.05510101647500925 +148127,740.6350000045612,-0.05510096680325487 +148128,740.6400000045613,-0.055100917129534584 +148129,740.6450000045614,-0.055100867453848366 +148130,740.6500000045615,-0.055100817776196194 +148131,740.6550000045617,-0.05510076809657804 +148132,740.6600000045618,-0.05510071841499385 +148133,740.6650000045619,-0.05510066873144362 +148134,740.670000004562,-0.05510061904592731 +148135,740.6750000045621,-0.05510056935844487 +148136,740.6800000045622,-0.055100519668996296 +148137,740.6850000045623,-0.055100469977581557 +148138,740.6900000045624,-0.05510042028420061 +148139,740.6950000045625,-0.05510037058885344 +148140,740.7000000045626,-0.055100320891539996 +148141,740.7050000045627,-0.055100271192260256 +148142,740.7100000045629,-0.055100221491014185 +148143,740.715000004563,-0.05510017178780176 +148144,740.7200000045631,-0.055100122082622945 +148145,740.7250000045632,-0.055100072375477725 +148146,740.7300000045633,-0.055100022666366044 +148147,740.7350000045634,-0.055099972955287894 +148148,740.7400000045635,-0.055099923242243234 +148149,740.7450000045636,-0.055099873527232036 +148150,740.7500000045637,-0.055099823810254266 +148151,740.7550000045638,-0.05509977409130988 +148152,740.760000004564,-0.055099724370398874 +148153,740.7650000045641,-0.0550996746475212 +148154,740.7700000045642,-0.055099624922676824 +148155,740.7750000045643,-0.055099575195865724 +148156,740.7800000045644,-0.05509952546708787 +148157,740.7850000045645,-0.05509947573634324 +148158,740.7900000045646,-0.05509942600363179 +148159,740.7950000045647,-0.05509937626895349 +148160,740.8000000045648,-0.05509932653230831 +148161,740.8050000045649,-0.055099276793696236 +148162,740.810000004565,-0.055099227053117206 +148163,740.8150000045651,-0.05509917731057121 +148164,740.8200000045653,-0.05509912756605822 +148165,740.8250000045654,-0.055099077819578186 +148166,740.8300000045655,-0.0550990280711311 +148167,740.8350000045656,-0.055098978320716925 +148168,740.8400000045657,-0.05509892856833563 +148169,740.8450000045658,-0.05509887881398717 +148170,740.8500000045659,-0.05509882905767152 +148171,740.855000004566,-0.05509877929938867 +148172,740.8600000045661,-0.05509872953913856 +148173,740.8650000045662,-0.05509867977692118 +148174,740.8700000045664,-0.05509863001273648 +148175,740.8750000045665,-0.05509858024658445 +148176,740.8800000045666,-0.05509853047846505 +148177,740.8850000045667,-0.05509848070837825 +148178,740.8900000045668,-0.05509843093632402 +148179,740.8950000045669,-0.05509838116230233 +148180,740.900000004567,-0.05509833138631315 +148181,740.9050000045671,-0.05509828160835645 +148182,740.9100000045672,-0.055098231828432175 +148183,740.9150000045673,-0.05509818204654033 +148184,740.9200000045674,-0.055098132262680864 +148185,740.9250000045676,-0.055098082476853764 +148186,740.9300000045677,-0.05509803268905897 +148187,740.9350000045678,-0.05509798289929647 +148188,740.9400000045679,-0.055097933107566235 +148189,740.945000004568,-0.05509788331386824 +148190,740.9500000045681,-0.05509783351820244 +148191,740.9550000045682,-0.0550977837205688 +148192,740.9600000045683,-0.0550977339209673 +148193,740.9650000045684,-0.05509768411939791 +148194,740.9700000045685,-0.0550976343158606 +148195,740.9750000045686,-0.05509758451035533 +148196,740.9800000045688,-0.05509753470288209 +148197,740.9850000045689,-0.05509748489344082 +148198,740.990000004569,-0.055097435082031514 +148199,740.9950000045691,-0.055097385268654125 +148200,741.0000000045692,-0.05509733545330862 +148201,741.0050000045693,-0.05509728563599498 +148202,741.0100000045694,-0.055097235816713164 +148203,741.0150000045695,-0.05509718599546315 +148204,741.0200000045696,-0.055097136172244904 +148205,741.0250000045697,-0.05509708634705839 +148206,741.0300000045698,-0.0550970365199036 +148207,741.03500000457,-0.05509698669078047 +148208,741.0400000045701,-0.05509693685968899 +148209,741.0450000045702,-0.055096887026629134 +148210,741.0500000045703,-0.05509683719160084 +148211,741.0550000045704,-0.055096787354604104 +148212,741.0600000045705,-0.05509673751563889 +148213,741.0650000045706,-0.055096687674705165 +148214,741.0700000045707,-0.05509663783180291 +148215,741.0750000045708,-0.05509658798693208 +148216,741.0800000045709,-0.055096538140092646 +148217,741.085000004571,-0.05509648829128457 +148218,741.0900000045712,-0.05509643844050784 +148219,741.0950000045713,-0.055096388587762404 +148220,741.1000000045714,-0.055096338733048256 +148221,741.1050000045715,-0.05509628887636535 +148222,741.1100000045716,-0.05509623901771364 +148223,741.1150000045717,-0.05509618915709312 +148224,741.1200000045718,-0.05509613929450376 +148225,741.1250000045719,-0.05509608942994551 +148226,741.130000004572,-0.055096039563418346 +148227,741.1350000045721,-0.05509598969492224 +148228,741.1400000045722,-0.055095939824457166 +148229,741.1450000045724,-0.055095889952023074 +148230,741.1500000045725,-0.05509584007761995 +148231,741.1550000045726,-0.05509579020124777 +148232,741.1600000045727,-0.055095740322906483 +148233,741.1650000045728,-0.05509569044259607 +148234,741.1700000045729,-0.055095640560316496 +148235,741.175000004573,-0.05509559067606773 +148236,741.1800000045731,-0.05509554078984975 +148237,741.1850000045732,-0.05509549090166252 +148238,741.1900000045733,-0.055095441011506 +148239,741.1950000045734,-0.055095391119380166 +148240,741.2000000045736,-0.055095341225284984 +148241,741.2050000045737,-0.05509529132922043 +148242,741.2100000045738,-0.055095241431186465 +148243,741.2150000045739,-0.055095191531183065 +148244,741.220000004574,-0.05509514162921019 +148245,741.2250000045741,-0.055095091725267824 +148246,741.2300000045742,-0.055095041819355914 +148247,741.2350000045743,-0.055094991911474454 +148248,741.2400000045744,-0.0550949420016234 +148249,741.2450000045745,-0.05509489208980271 +148250,741.2500000045746,-0.055094842176012376 +148251,741.2550000045748,-0.05509479226025235 +148252,741.2600000045749,-0.05509474234252261 +148253,741.265000004575,-0.05509469242282312 +148254,741.2700000045751,-0.05509464250115385 +148255,741.2750000045752,-0.05509459257751476 +148256,741.2800000045753,-0.05509454265190584 +148257,741.2850000045754,-0.05509449272432704 +148258,741.2900000045755,-0.05509444279477835 +148259,741.2950000045756,-0.05509439286325971 +148260,741.3000000045757,-0.055094342929771105 +148261,741.3050000045758,-0.055094292994312496 +148262,741.310000004576,-0.05509424305688387 +148263,741.3150000045761,-0.055094193117485174 +148264,741.3200000045762,-0.055094143176116404 +148265,741.3250000045763,-0.055094093232777495 +148266,741.3300000045764,-0.05509404328746844 +148267,741.3350000045765,-0.055093993340189204 +148268,741.3400000045766,-0.055093943390939745 +148269,741.3450000045767,-0.05509389343972005 +148270,741.3500000045768,-0.05509384348653008 +148271,741.3550000045769,-0.0550937935313698 +148272,741.360000004577,-0.05509374357423917 +148273,741.3650000045772,-0.05509369361513818 +148274,741.3700000045773,-0.055093643654066785 +148275,741.3750000045774,-0.05509359369102495 +148276,741.3800000045775,-0.055093543726012655 +148277,741.3850000045776,-0.05509349375902987 +148278,741.3900000045777,-0.05509344379007655 +148279,741.3950000045778,-0.05509339381915268 +148280,741.4000000045779,-0.055093343846258226 +148281,741.405000004578,-0.05509329387139315 +148282,741.4100000045781,-0.05509324389455741 +148283,741.4150000045782,-0.05509319391575099 +148284,741.4200000045784,-0.05509314393497385 +148285,741.4250000045785,-0.05509309395222599 +148286,741.4300000045786,-0.05509304396750734 +148287,741.4350000045787,-0.05509299398081788 +148288,741.4400000045788,-0.05509294399215759 +148289,741.4450000045789,-0.05509289400152642 +148290,741.450000004579,-0.05509284400892436 +148291,741.4550000045791,-0.05509279401435137 +148292,741.4600000045792,-0.05509274401780741 +148293,741.4650000045793,-0.055092694019292454 +148294,741.4700000045794,-0.055092644018806466 +148295,741.4750000045796,-0.05509259401634944 +148296,741.4800000045797,-0.05509254401192132 +148297,741.4850000045798,-0.055092494005522075 +148298,741.4900000045799,-0.05509244399715168 +148299,741.49500000458,-0.055092393986810095 +148300,741.5000000045801,-0.05509234397449731 +148301,741.5050000045802,-0.055092293960213284 +148302,741.5100000045803,-0.055092243943957966 +148303,741.5150000045804,-0.05509219392573135 +148304,741.5200000045805,-0.05509214390553341 +148305,741.5250000045806,-0.055092093883364085 +148306,741.5300000045808,-0.055092043859223366 +148307,741.5350000045809,-0.055091993833111204 +148308,741.540000004581,-0.055091943805027584 +148309,741.5450000045811,-0.05509189377497248 +148310,741.5500000045812,-0.055091843742945845 +148311,741.5550000045813,-0.05509179370894765 +148312,741.5600000045814,-0.05509174367297786 +148313,741.5650000045815,-0.05509169363503645 +148314,741.5700000045816,-0.055091643595123405 +148315,741.5750000045817,-0.05509159355323867 +148316,741.5800000045818,-0.055091543509382224 +148317,741.585000004582,-0.05509149346355402 +148318,741.5900000045821,-0.055091443415754046 +148319,741.5950000045822,-0.055091393365982254 +148320,741.6000000045823,-0.05509134331423864 +148321,741.6050000045824,-0.05509129326052316 +148322,741.6100000045825,-0.055091243204835764 +148323,741.6150000045826,-0.05509119314717644 +148324,741.6200000045827,-0.05509114308754515 +148325,741.6250000045828,-0.05509109302594186 +148326,741.6300000045829,-0.05509104296236655 +148327,741.635000004583,-0.05509099289681917 +148328,741.6400000045832,-0.05509094282929972 +148329,741.6450000045833,-0.05509089275980814 +148330,741.6500000045834,-0.05509084268834441 +148331,741.6550000045835,-0.0550907926149085 +148332,741.6600000045836,-0.05509074253950035 +148333,741.6650000045837,-0.05509069246211998 +148334,741.6700000045838,-0.05509064238276731 +148335,741.6750000045839,-0.055090592301442344 +148336,741.680000004584,-0.055090542218145036 +148337,741.6850000045841,-0.055090492132875354 +148338,741.6900000045842,-0.05509044204563327 +148339,741.6950000045844,-0.055090391956418745 +148340,741.7000000045845,-0.05509034186523175 +148341,741.7050000045846,-0.05509029177207227 +148342,741.7100000045847,-0.05509024167694025 +148343,741.7150000045848,-0.055090191579835676 +148344,741.7200000045849,-0.055090141480758505 +148345,741.725000004585,-0.05509009137970871 +148346,741.7300000045851,-0.055090041276686263 +148347,741.7350000045852,-0.055089991171691124 +148348,741.7400000045853,-0.055089941064723265 +148349,741.7450000045854,-0.055089890955782664 +148350,741.7500000045856,-0.05508984084486927 +148351,741.7550000045857,-0.05508979073198307 +148352,741.7600000045858,-0.055089740617124024 +148353,741.7650000045859,-0.05508969050029211 +148354,741.770000004586,-0.05508964038148729 +148355,741.7750000045861,-0.05508959026070952 +148356,741.7800000045862,-0.05508954013795878 +148357,741.7850000045863,-0.055089490013235036 +148358,741.7900000045864,-0.055089439886538256 +148359,741.7950000045865,-0.055089389757868416 +148360,741.8000000045866,-0.05508933962722549 +148361,741.8050000045868,-0.055089289494609416 +148362,741.8100000045869,-0.0550892393600202 +148363,741.815000004587,-0.0550891892234578 +148364,741.8200000045871,-0.055089139084922155 +148365,741.8250000045872,-0.055089088944413264 +148366,741.8300000045873,-0.0550890388019311 +148367,741.8350000045874,-0.055088988657475614 +148368,741.8400000045875,-0.055088938511046764 +148369,741.8450000045876,-0.05508888836264454 +148370,741.8500000045877,-0.05508883821226891 +148371,741.8550000045879,-0.05508878805991984 +148372,741.860000004588,-0.05508873790559728 +148373,741.8650000045881,-0.05508868774930123 +148374,741.8700000045882,-0.05508863759103163 +148375,741.8750000045883,-0.05508858743078847 +148376,741.8800000045884,-0.0550885372685717 +148377,741.8850000045885,-0.0550884871043813 +148378,741.8900000045886,-0.05508843693821723 +148379,741.8950000045887,-0.05508838677007947 +148380,741.9000000045888,-0.05508833659996797 +148381,741.9050000045889,-0.05508828642788272 +148382,741.910000004589,-0.05508823625382368 +148383,741.9150000045892,-0.05508818607779081 +148384,741.9200000045893,-0.05508813589978409 +148385,741.9250000045894,-0.05508808571980349 +148386,741.9300000045895,-0.05508803553784897 +148387,741.9350000045896,-0.05508798535392049 +148388,741.9400000045897,-0.055087935168018035 +148389,741.9450000045898,-0.05508788498014157 +148390,741.9500000045899,-0.05508783479029106 +148391,741.95500000459,-0.05508778459846647 +148392,741.9600000045901,-0.05508773440466777 +148393,741.9650000045903,-0.05508768420889494 +148394,741.9700000045904,-0.05508763401114794 +148395,741.9750000045905,-0.05508758381142673 +148396,741.9800000045906,-0.05508753360973128 +148397,741.9850000045907,-0.055087483406061566 +148398,741.9900000045908,-0.05508743320041756 +148399,741.9950000045909,-0.05508738299279922 +148400,742.000000004591,-0.05508733278320652 +148401,742.0050000045911,-0.055087282571639425 +148402,742.0100000045912,-0.055087232358097905 +148403,742.0150000045913,-0.05508718214258194 +148404,742.0200000045915,-0.05508713192509147 +148405,742.0250000045916,-0.05508708170562649 +148406,742.0300000045917,-0.055087031484186956 +148407,742.0350000045918,-0.055086981260772834 +148408,742.0400000045919,-0.0550869310353841 +148409,742.045000004592,-0.05508688080802071 +148410,742.0500000045921,-0.055086830578682654 +148411,742.0550000045922,-0.055086780347369885 +148412,742.0600000045923,-0.055086730114082376 +148413,742.0650000045924,-0.05508667987882008 +148414,742.0700000045925,-0.055086629641582986 +148415,742.0750000045927,-0.05508657940237106 +148416,742.0800000045928,-0.05508652916118426 +148417,742.0850000045929,-0.05508647891802255 +148418,742.090000004593,-0.05508642867288591 +148419,742.0950000045931,-0.05508637842577432 +148420,742.1000000045932,-0.05508632817668772 +148421,742.1050000045933,-0.05508627792562609 +148422,742.1100000045934,-0.0550862276725894 +148423,742.1150000045935,-0.05508617741757762 +148424,742.1200000045936,-0.055086127160590706 +148425,742.1250000045937,-0.055086076901628644 +148426,742.1300000045939,-0.0550860266406914 +148427,742.135000004594,-0.055085976377778935 +148428,742.1400000045941,-0.05508592611289122 +148429,742.1450000045942,-0.05508587584602822 +148430,742.1500000045943,-0.0550858255771899 +148431,742.1550000045944,-0.05508577530637622 +148432,742.1600000045945,-0.055085725033587184 +148433,742.1650000045946,-0.05508567475882272 +148434,742.1700000045947,-0.055085624482082825 +148435,742.1750000045948,-0.055085574203367446 +148436,742.180000004595,-0.05508552392267656 +148437,742.185000004595,-0.05508547364001014 +148438,742.1900000045952,-0.05508542335536815 +148439,742.1950000045953,-0.055085373068750554 +148440,742.2000000045954,-0.05508532278015733 +148441,742.2050000045955,-0.05508527248958844 +148442,742.2100000045956,-0.055085222197043836 +148443,742.2150000045957,-0.055085171902523516 +148444,742.2200000045958,-0.05508512160602743 +148445,742.2250000045959,-0.05508507130755555 +148446,742.230000004596,-0.05508502100710784 +148447,742.2350000045961,-0.05508497070468428 +148448,742.2400000045963,-0.05508492040028483 +148449,742.2450000045964,-0.05508487009390946 +148450,742.2500000045965,-0.055084819785558126 +148451,742.2550000045966,-0.05508476947523082 +148452,742.2600000045967,-0.05508471916292749 +148453,742.2650000045968,-0.055084668848648106 +148454,742.2700000045969,-0.05508461853239264 +148455,742.275000004597,-0.05508456821416107 +148456,742.2800000045971,-0.05508451789395335 +148457,742.2850000045972,-0.055084467571769435 +148458,742.2900000045973,-0.055084417247609326 +148459,742.2950000045975,-0.05508436692147296 +148460,742.3000000045976,-0.05508431659336034 +148461,742.3050000045977,-0.055084266263271404 +148462,742.3100000045978,-0.05508421593120613 +148463,742.3150000045979,-0.05508416559716449 +148464,742.320000004598,-0.05508411526114644 +148465,742.3250000045981,-0.05508406492315196 +148466,742.3300000045982,-0.05508401458318102 +148467,742.3350000045983,-0.055083964241233574 +148468,742.3400000045984,-0.0550839138973096 +148469,742.3450000045985,-0.05508386355140907 +148470,742.3500000045987,-0.05508381320353193 +148471,742.3550000045988,-0.055083762853678185 +148472,742.3600000045989,-0.05508371250184777 +148473,742.365000004599,-0.05508366214804066 +148474,742.3700000045991,-0.055083611792256834 +148475,742.3750000045992,-0.05508356143449625 +148476,742.3800000045993,-0.055083511074758874 +148477,742.3850000045994,-0.05508346071304469 +148478,742.3900000045995,-0.05508341034935364 +148479,742.3950000045996,-0.055083359983685715 +148480,742.4000000045997,-0.05508330961604087 +148481,742.4050000045999,-0.055083259246419075 +148482,742.4100000046,-0.0550832088748203 +148483,742.4150000046001,-0.055083158501244525 +148484,742.4200000046002,-0.05508310812569171 +148485,742.4250000046003,-0.05508305774816181 +148486,742.4300000046004,-0.05508300736865479 +148487,742.4350000046005,-0.055082956987170646 +148488,742.4400000046006,-0.05508290660370932 +148489,742.4450000046007,-0.05508285621827079 +148490,742.4500000046008,-0.05508280583085502 +148491,742.455000004601,-0.05508275544146198 +148492,742.460000004601,-0.05508270505009165 +148493,742.4650000046012,-0.05508265465674399 +148494,742.4700000046013,-0.05508260426141895 +148495,742.4750000046014,-0.05508255386411652 +148496,742.4800000046015,-0.055082503464836646 +148497,742.4850000046016,-0.055082453063579326 +148498,742.4900000046017,-0.0550824026603445 +148499,742.4950000046018,-0.05508235225513215 +148500,742.5000000046019,-0.05508230184794225 +148501,742.505000004602,-0.05508225143877475 +148502,742.5100000046021,-0.055082201027629625 +148503,742.5150000046023,-0.055082150614506845 +148504,742.5200000046024,-0.05508210019940637 +148505,742.5250000046025,-0.05508204978232818 +148506,742.5300000046026,-0.055081999363272245 +148507,742.5350000046027,-0.055081948942238515 +148508,742.5400000046028,-0.05508189851922697 +148509,742.5450000046029,-0.05508184809423757 +148510,742.550000004603,-0.055081797667270296 +148511,742.5550000046031,-0.05508174723832511 +148512,742.5600000046032,-0.05508169680740197 +148513,742.5650000046033,-0.05508164637450085 +148514,742.5700000046035,-0.055081595939621725 +148515,742.5750000046036,-0.055081545502764555 +148516,742.5800000046037,-0.055081495063929314 +148517,742.5850000046038,-0.055081444623115955 +148518,742.5900000046039,-0.05508139418032447 +148519,742.595000004604,-0.055081343735554796 +148520,742.6000000046041,-0.05508129328880692 +148521,742.6050000046042,-0.055081242840080806 +148522,742.6100000046043,-0.05508119238937643 +148523,742.6150000046044,-0.055081141936693744 +148524,742.6200000046045,-0.05508109148203272 +148525,742.6250000046047,-0.05508104102539333 +148526,742.6300000046048,-0.05508099056677554 +148527,742.6350000046049,-0.05508094010617933 +148528,742.640000004605,-0.05508088964360465 +148529,742.6450000046051,-0.05508083917905147 +148530,742.6500000046052,-0.055080788712519764 +148531,742.6550000046053,-0.0550807382440095 +148532,742.6600000046054,-0.05508068777352064 +148533,742.6650000046055,-0.05508063730105314 +148534,742.6700000046056,-0.05508058682660699 +148535,742.6750000046057,-0.05508053635018215 +148536,742.6800000046059,-0.05508048587177858 +148537,742.685000004606,-0.05508043539139627 +148538,742.6900000046061,-0.05508038490903516 +148539,742.6950000046062,-0.05508033442469524 +148540,742.7000000046063,-0.055080283938376454 +148541,742.7050000046064,-0.05508023345007878 +148542,742.7100000046065,-0.05508018295980219 +148543,742.7150000046066,-0.05508013246754665 +148544,742.7200000046067,-0.055080081973312135 +148545,742.7250000046068,-0.055080031477098605 +148546,742.730000004607,-0.055079980978906005 +148547,742.7350000046071,-0.05507993047873434 +148548,742.7400000046072,-0.055079879976583555 +148549,742.7450000046073,-0.05507982947245363 +148550,742.7500000046074,-0.05507977896634452 +148551,742.7550000046075,-0.05507972845825621 +148552,742.7600000046076,-0.05507967794818866 +148553,742.7650000046077,-0.05507962743614182 +148554,742.7700000046078,-0.05507957692211568 +148555,742.7750000046079,-0.05507952640611019 +148556,742.780000004608,-0.05507947588812533 +148557,742.7850000046082,-0.05507942536816107 +148558,742.7900000046083,-0.05507937484621736 +148559,742.7950000046084,-0.05507932432229418 +148560,742.8000000046085,-0.055079273796391506 +148561,742.8050000046086,-0.055079223268509295 +148562,742.8100000046087,-0.055079172738647514 +148563,742.8150000046088,-0.055079122206806136 +148564,742.8200000046089,-0.05507907167298511 +148565,742.825000004609,-0.05507902113718443 +148566,742.8300000046091,-0.055078970599404045 +148567,742.8350000046092,-0.05507892005964392 +148568,742.8400000046094,-0.05507886951790404 +148569,742.8450000046095,-0.05507881897418436 +148570,742.8500000046096,-0.05507876842848485 +148571,742.8550000046097,-0.05507871788080547 +148572,742.8600000046098,-0.055078667331146205 +148573,742.8650000046099,-0.05507861677950702 +148574,742.87000000461,-0.05507856622588785 +148575,742.8750000046101,-0.05507851567028871 +148576,742.8800000046102,-0.055078465112709536 +148577,742.8850000046103,-0.055078414553150296 +148578,742.8900000046104,-0.05507836399161097 +148579,742.8950000046106,-0.05507831342809152 +148580,742.9000000046107,-0.05507826286259192 +148581,742.9050000046108,-0.05507821229511211 +148582,742.9100000046109,-0.055078161725652094 +148583,742.915000004611,-0.05507811115421183 +148584,742.9200000046111,-0.05507806058079126 +148585,742.9250000046112,-0.055078010005390386 +148586,742.9300000046113,-0.05507795942800915 +148587,742.9350000046114,-0.05507790884864753 +148588,742.9400000046115,-0.05507785826730549 +148589,742.9450000046116,-0.055077807683982995 +148590,742.9500000046118,-0.05507775709868003 +148591,742.9550000046119,-0.055077706511396526 +148592,742.960000004612,-0.05507765592213249 +148593,742.9650000046121,-0.05507760533088788 +148594,742.9700000046122,-0.05507755473766264 +148595,742.9750000046123,-0.05507750414245675 +148596,742.9800000046124,-0.05507745354527019 +148597,742.9850000046125,-0.05507740294610291 +148598,742.9900000046126,-0.05507735234495489 +148599,742.9950000046127,-0.05507730174182609 +148600,743.0000000046128,-0.05507725113671647 +148601,743.005000004613,-0.055077200529626016 +148602,743.0100000046131,-0.05507714992055467 +148603,743.0150000046132,-0.05507709930950243 +148604,743.0200000046133,-0.05507704869646923 +148605,743.0250000046134,-0.055076998081455074 +148606,743.0300000046135,-0.055076947464459895 +148607,743.0350000046136,-0.055076896845483676 +148608,743.0400000046137,-0.055076846224526375 +148609,743.0450000046138,-0.05507679560158798 +148610,743.0500000046139,-0.05507674497666844 +148611,743.055000004614,-0.055076694349767724 +148612,743.0600000046142,-0.0550766437208858 +148613,743.0650000046143,-0.05507659309002264 +148614,743.0700000046144,-0.055076542457178204 +148615,743.0750000046145,-0.05507649182235247 +148616,743.0800000046146,-0.055076441185545395 +148617,743.0850000046147,-0.055076390546756955 +148618,743.0900000046148,-0.055076339905987114 +148619,743.0950000046149,-0.055076289263235836 +148620,743.100000004615,-0.05507623861850308 +148621,743.1050000046151,-0.05507618797178883 +148622,743.1100000046152,-0.055076137323093036 +148623,743.1150000046154,-0.05507608667241568 +148624,743.1200000046155,-0.055076036019756726 +148625,743.1250000046156,-0.05507598536511614 +148626,743.1300000046157,-0.055075934708493875 +148627,743.1350000046158,-0.055075884049889924 +148628,743.1400000046159,-0.055075833389304225 +148629,743.145000004616,-0.055075782726736765 +148630,743.1500000046161,-0.0550757320621875 +148631,743.1550000046162,-0.055075681395656405 +148632,743.1600000046163,-0.05507563072714345 +148633,743.1650000046164,-0.055075580056648595 +148634,743.1700000046166,-0.05507552938417182 +148635,743.1750000046167,-0.05507547870971307 +148636,743.1800000046168,-0.05507542803327232 +148637,743.1850000046169,-0.055075377354849554 +148638,743.190000004617,-0.05507532667444471 +148639,743.1950000046171,-0.05507527599205778 +148640,743.2000000046172,-0.05507522530768873 +148641,743.2050000046173,-0.0550751746213375 +148642,743.2100000046174,-0.05507512393300408 +148643,743.2150000046175,-0.055075073242688434 +148644,743.2200000046176,-0.05507502255039053 +148645,743.2250000046178,-0.05507497185611032 +148646,743.2300000046179,-0.055074921159847794 +148647,743.235000004618,-0.0550748704616029 +148648,743.2400000046181,-0.055074819761375605 +148649,743.2450000046182,-0.05507476905916589 +148650,743.2500000046183,-0.05507471835497371 +148651,743.2550000046184,-0.05507466764879905 +148652,743.2600000046185,-0.05507461694064186 +148653,743.2650000046186,-0.0550745662305021 +148654,743.2700000046187,-0.05507451551837975 +148655,743.2750000046188,-0.05507446480427478 +148656,743.280000004619,-0.055074414088187154 +148657,743.2850000046191,-0.05507436337011683 +148658,743.2900000046192,-0.055074312650063774 +148659,743.2950000046193,-0.055074261928027966 +148660,743.3000000046194,-0.05507421120400938 +148661,743.3050000046195,-0.05507416047800796 +148662,743.3100000046196,-0.055074109750023664 +148663,743.3150000046197,-0.0550740590200565 +148664,743.3200000046198,-0.0550740082881064 +148665,743.3250000046199,-0.055073957554173346 +148666,743.33000000462,-0.0550739068182573 +148667,743.3350000046202,-0.055073856080358224 +148668,743.3400000046203,-0.0550738053404761 +148669,743.3450000046204,-0.05507375459861088 +148670,743.3500000046205,-0.055073703854762526 +148671,743.3550000046206,-0.055073653108931024 +148672,743.3600000046207,-0.055073602361116344 +148673,743.3650000046208,-0.05507355161131844 +148674,743.3700000046209,-0.055073500859537265 +148675,743.375000004621,-0.05507345010577281 +148676,743.3800000046211,-0.05507339935002503 +148677,743.3850000046212,-0.05507334859229388 +148678,743.3900000046214,-0.05507329783257936 +148679,743.3950000046215,-0.05507324707088141 +148680,743.4000000046216,-0.05507319630719999 +148681,743.4050000046217,-0.0550731455415351 +148682,743.4100000046218,-0.05507309477388668 +148683,743.4150000046219,-0.055073044004254695 +148684,743.420000004622,-0.055072993232639124 +148685,743.4250000046221,-0.055072942459039924 +148686,743.4300000046222,-0.055072891683457074 +148687,743.4350000046223,-0.055072840905890534 +148688,743.4400000046224,-0.05507279012634027 +148689,743.4450000046226,-0.055072739344806255 +148690,743.4500000046227,-0.05507268856128845 +148691,743.4550000046228,-0.05507263777578682 +148692,743.4600000046229,-0.05507258698830132 +148693,743.465000004623,-0.05507253619883194 +148694,743.4700000046231,-0.055072485407378635 +148695,743.4750000046232,-0.05507243461394138 +148696,743.4800000046233,-0.055072383818520136 +148697,743.4850000046234,-0.05507233302111486 +148698,743.4900000046235,-0.055072282221725534 +148699,743.4950000046236,-0.055072231420352113 +148700,743.5000000046238,-0.05507218061699456 +148701,743.5050000046239,-0.05507212981165286 +148702,743.510000004624,-0.055072079004326965 +148703,743.5150000046241,-0.055072028195016845 +148704,743.5200000046242,-0.05507197738372247 +148705,743.5250000046243,-0.05507192657044381 +148706,743.5300000046244,-0.05507187575518081 +148707,743.5350000046245,-0.05507182493793346 +148708,743.5400000046246,-0.05507177411870171 +148709,743.5450000046247,-0.055071723297485546 +148710,743.5500000046248,-0.055071672474284926 +148711,743.555000004625,-0.05507162164909981 +148712,743.5600000046251,-0.05507157082193017 +148713,743.5650000046252,-0.055071519992775965 +148714,743.5700000046253,-0.05507146916163717 +148715,743.5750000046254,-0.05507141832851375 +148716,743.5800000046255,-0.05507136749340566 +148717,743.5850000046256,-0.05507131665631289 +148718,743.5900000046257,-0.055071265817235385 +148719,743.5950000046258,-0.05507121497617312 +148720,743.6000000046259,-0.055071164133126065 +148721,743.605000004626,-0.05507111328809417 +148722,743.6100000046262,-0.055071062441077415 +148723,743.6150000046263,-0.05507101159207578 +148724,743.6200000046264,-0.05507096074108921 +148725,743.6250000046265,-0.05507090988811767 +148726,743.6300000046266,-0.05507085903316114 +148727,743.6350000046267,-0.055070808176219586 +148728,743.6400000046268,-0.05507075731729296 +148729,743.6450000046269,-0.05507070645638125 +148730,743.650000004627,-0.055070655593484404 +148731,743.6550000046271,-0.05507060472860239 +148732,743.6600000046272,-0.05507055386173518 +148733,743.6650000046274,-0.05507050299288274 +148734,743.6700000046275,-0.055070452122045026 +148735,743.6750000046276,-0.05507040124922203 +148736,743.6800000046277,-0.05507035037441369 +148737,743.6850000046278,-0.05507029949761998 +148738,743.6900000046279,-0.05507024861884088 +148739,743.695000004628,-0.055070197738076344 +148740,743.7000000046281,-0.055070146855326345 +148741,743.7050000046282,-0.05507009597059084 +148742,743.7100000046283,-0.055070045083869805 +148743,743.7150000046285,-0.0550699941951632 +148744,743.7200000046286,-0.055069943304471 +148745,743.7250000046287,-0.055069892411793164 +148746,743.7300000046288,-0.055069841517129646 +148747,743.7350000046289,-0.05506979062048043 +148748,743.740000004629,-0.05506973972184548 +148749,743.7450000046291,-0.05506968882122476 +148750,743.7500000046292,-0.05506963791861824 +148751,743.7550000046293,-0.05506958701402589 +148752,743.7600000046294,-0.05506953610744765 +148753,743.7650000046295,-0.055069485198883515 +148754,743.7700000046297,-0.05506943428833343 +148755,743.7750000046298,-0.05506938337579737 +148756,743.7800000046299,-0.05506933246127531 +148757,743.78500000463,-0.05506928154476721 +148758,743.7900000046301,-0.055069230626273044 +148759,743.7950000046302,-0.05506917970579277 +148760,743.8000000046303,-0.055069128783326336 +148761,743.8050000046304,-0.05506907785887373 +148762,743.8100000046305,-0.05506902693243491 +148763,743.8150000046306,-0.055068976004009854 +148764,743.8200000046307,-0.05506892507359852 +148765,743.8250000046309,-0.05506887414120088 +148766,743.830000004631,-0.055068823206816886 +148767,743.8350000046311,-0.055068772270446514 +148768,743.8400000046312,-0.05506872133208974 +148769,743.8450000046313,-0.05506867039174651 +148770,743.8500000046314,-0.0550686194494168 +148771,743.8550000046315,-0.05506856850510057 +148772,743.8600000046316,-0.0550685175587978 +148773,743.8650000046317,-0.05506846661050844 +148774,743.8700000046318,-0.05506841566023246 +148775,743.8750000046319,-0.05506836470796984 +148776,743.880000004632,-0.05506831375372053 +148777,743.8850000046322,-0.05506826279748451 +148778,743.8900000046323,-0.05506821183926172 +148779,743.8950000046324,-0.05506816087905216 +148780,743.9000000046325,-0.055068109916855776 +148781,743.9050000046326,-0.055068058952672534 +148782,743.9100000046327,-0.055068007986502396 +148783,743.9150000046328,-0.05506795701834534 +148784,743.9200000046329,-0.05506790604820134 +148785,743.925000004633,-0.05506785507607033 +148786,743.9300000046331,-0.055067804101952306 +148787,743.9350000046333,-0.05506775312584722 +148788,743.9400000046334,-0.05506770214775504 +148789,743.9450000046335,-0.05506765116767575 +148790,743.9500000046336,-0.05506760018560929 +148791,743.9550000046337,-0.055067549201555634 +148792,743.9600000046338,-0.055067498215514744 +148793,743.9650000046339,-0.0550674472274866 +148794,743.970000004634,-0.05506739623747116 +148795,743.9750000046341,-0.05506734524546839 +148796,743.9800000046342,-0.055067294251478244 +148797,743.9850000046343,-0.0550672432555007 +148798,743.9900000046345,-0.05506719225753572 +148799,743.9950000046346,-0.05506714125758329 +148800,744.0000000046347,-0.05506709025564335 +148801,744.0050000046348,-0.05506703925171587 +148802,744.0100000046349,-0.05506698824580083 +148803,744.015000004635,-0.05506693723789818 +148804,744.0200000046351,-0.05506688622800789 +148805,744.0250000046352,-0.055066835216129935 +148806,744.0300000046353,-0.055066784202264275 +148807,744.0350000046354,-0.05506673318641087 +148808,744.0400000046355,-0.055066682168569685 +148809,744.0450000046357,-0.0550666311487407 +148810,744.0500000046358,-0.05506658012692387 +148811,744.0550000046359,-0.05506652910311917 +148812,744.060000004636,-0.05506647807732655 +148813,744.0650000046361,-0.05506642704954598 +148814,744.0700000046362,-0.05506637601977744 +148815,744.0750000046363,-0.05506632498802088 +148816,744.0800000046364,-0.05506627395427627 +148817,744.0850000046365,-0.055066222918543586 +148818,744.0900000046366,-0.05506617188082278 +148819,744.0950000046367,-0.05506612084111383 +148820,744.1000000046369,-0.05506606979941668 +148821,744.105000004637,-0.05506601875573132 +148822,744.1100000046371,-0.05506596771005771 +148823,744.1150000046372,-0.05506591666239581 +148824,744.1200000046373,-0.05506586561274558 +148825,744.1250000046374,-0.055065814561107006 +148826,744.1300000046375,-0.05506576350748003 +148827,744.1350000046376,-0.055065712451864625 +148828,744.1400000046377,-0.05506566139426077 +148829,744.1450000046378,-0.05506561033466842 +148830,744.150000004638,-0.055065559273087546 +148831,744.155000004638,-0.0550655082095181 +148832,744.1600000046382,-0.055065457143960064 +148833,744.1650000046383,-0.055065406076413394 +148834,744.1700000046384,-0.055065355006878064 +148835,744.1750000046385,-0.05506530393535404 +148836,744.1800000046386,-0.055065252861841274 +148837,744.1850000046387,-0.055065201786339744 +148838,744.1900000046388,-0.0550651507088494 +148839,744.1950000046389,-0.05506509962937022 +148840,744.200000004639,-0.05506504854790218 +148841,744.2050000046391,-0.05506499746444523 +148842,744.2100000046393,-0.055064946378999335 +148843,744.2150000046394,-0.05506489529156447 +148844,744.2200000046395,-0.05506484420214059 +148845,744.2250000046396,-0.05506479311072768 +148846,744.2300000046397,-0.05506474201732569 +148847,744.2350000046398,-0.05506469092193457 +148848,744.2400000046399,-0.05506463982455432 +148849,744.24500000464,-0.055064588725184875 +148850,744.2500000046401,-0.05506453762382623 +148851,744.2550000046402,-0.05506448652047833 +148852,744.2600000046403,-0.05506443541514113 +148853,744.2650000046405,-0.05506438430781462 +148854,744.2700000046406,-0.05506433319849876 +148855,744.2750000046407,-0.05506428208719351 +148856,744.2800000046408,-0.05506423097389883 +148857,744.2850000046409,-0.05506417985861471 +148858,744.290000004641,-0.05506412874134108 +148859,744.2950000046411,-0.055064077622077934 +148860,744.3000000046412,-0.055064026500825224 +148861,744.3050000046413,-0.055063975377582924 +148862,744.3100000046414,-0.05506392425235099 +148863,744.3150000046415,-0.05506387312512939 +148864,744.3200000046417,-0.05506382199591809 +148865,744.3250000046418,-0.05506377086471706 +148866,744.3300000046419,-0.05506371973152626 +148867,744.335000004642,-0.05506366859634566 +148868,744.3400000046421,-0.05506361745917522 +148869,744.3450000046422,-0.0550635663200149 +148870,744.3500000046423,-0.05506351517886468 +148871,744.3550000046424,-0.05506346403572452 +148872,744.3600000046425,-0.05506341289059438 +148873,744.3650000046426,-0.05506336174347423 +148874,744.3700000046427,-0.05506331059436404 +148875,744.3750000046429,-0.05506325944326376 +148876,744.380000004643,-0.05506320829017338 +148877,744.3850000046431,-0.05506315713509284 +148878,744.3900000046432,-0.05506310597802212 +148879,744.3950000046433,-0.05506305481896118 +148880,744.4000000046434,-0.05506300365790999 +148881,744.4050000046435,-0.05506295249486851 +148882,744.4100000046436,-0.055062901329836704 +148883,744.4150000046437,-0.05506285016281454 +148884,744.4200000046438,-0.055062798993801995 +148885,744.425000004644,-0.05506274782279901 +148886,744.4300000046441,-0.05506269664980557 +148887,744.4350000046442,-0.05506264547482164 +148888,744.4400000046443,-0.05506259429784717 +148889,744.4450000046444,-0.05506254311888213 +148890,744.4500000046445,-0.0550624919379265 +148891,744.4550000046446,-0.05506244075498023 +148892,744.4600000046447,-0.05506238957004328 +148893,744.4650000046448,-0.05506233838311563 +148894,744.4700000046449,-0.05506228719419724 +148895,744.475000004645,-0.05506223600328808 +148896,744.4800000046451,-0.055062184810388104 +148897,744.4850000046453,-0.05506213361549729 +148898,744.4900000046454,-0.05506208241861559 +148899,744.4950000046455,-0.05506203121974298 +148900,744.5000000046456,-0.05506198001887942 +148901,744.5050000046457,-0.05506192881602489 +148902,744.5100000046458,-0.055061877611179325 +148903,744.5150000046459,-0.05506182640434271 +148904,744.520000004646,-0.055061775195515014 +148905,744.5250000046461,-0.055061723984696186 +148906,744.5300000046462,-0.05506167277188621 +148907,744.5350000046463,-0.055061621557085036 +148908,744.5400000046465,-0.05506157034029263 +148909,744.5450000046466,-0.055061519121508966 +148910,744.5500000046467,-0.055061467900734004 +148911,744.5550000046468,-0.05506141667796771 +148912,744.5600000046469,-0.05506136545321006 +148913,744.565000004647,-0.055061314226460996 +148914,744.5700000046471,-0.05506126299772049 +148915,744.5750000046472,-0.05506121176698852 +148916,744.5800000046473,-0.05506116053426504 +148917,744.5850000046474,-0.05506110929955003 +148918,744.5900000046475,-0.05506105806284343 +148919,744.5950000046477,-0.05506100682414523 +148920,744.6000000046478,-0.05506095558345537 +148921,744.6050000046479,-0.055060904340773834 +148922,744.610000004648,-0.05506085309610057 +148923,744.6150000046481,-0.05506080184943556 +148924,744.6200000046482,-0.05506075060077877 +148925,744.6250000046483,-0.055060699350130166 +148926,744.6300000046484,-0.055060648097489694 +148927,744.6350000046485,-0.05506059684285732 +148928,744.6400000046486,-0.05506054558623304 +148929,744.6450000046488,-0.05506049432761678 +148930,744.6500000046489,-0.055060443067008524 +148931,744.655000004649,-0.05506039180440824 +148932,744.6600000046491,-0.055060340539815886 +148933,744.6650000046492,-0.055060289273231436 +148934,744.6700000046493,-0.055060238004654836 +148935,744.6750000046494,-0.055060186734086074 +148936,744.6800000046495,-0.055060135461525106 +148937,744.6850000046496,-0.05506008418697189 +148938,744.6900000046497,-0.0550600329104264 +148939,744.6950000046498,-0.05505998163188859 +148940,744.70000000465,-0.055059930351358435 +148941,744.7050000046501,-0.0550598790688359 +148942,744.7100000046502,-0.05505982778432095 +148943,744.7150000046503,-0.05505977649781353 +148944,744.7200000046504,-0.055059725209313626 +148945,744.7250000046505,-0.0550596739188212 +148946,744.7300000046506,-0.05505962262633622 +148947,744.7350000046507,-0.05505957133185865 +148948,744.7400000046508,-0.05505952003538844 +148949,744.7450000046509,-0.05505946873692557 +148950,744.750000004651,-0.05505941743647 +148951,744.7550000046512,-0.05505936613402169 +148952,744.7600000046513,-0.05505931482958062 +148953,744.7650000046514,-0.055059263523146725 +148954,744.7700000046515,-0.05505921221472001 +148955,744.7750000046516,-0.0550591609043004 +148956,744.7800000046517,-0.05505910959188789 +148957,744.7850000046518,-0.05505905827748242 +148958,744.7900000046519,-0.055059006961083984 +148959,744.795000004652,-0.055058955642692524 +148960,744.8000000046521,-0.05505890432230801 +148961,744.8050000046522,-0.05505885299993041 +148962,744.8100000046524,-0.05505880167555968 +148963,744.8150000046525,-0.055058750349195794 +148964,744.8200000046526,-0.055058699020838715 +148965,744.8250000046527,-0.05505864769048841 +148966,744.8300000046528,-0.05505859635814484 +148967,744.8350000046529,-0.05505854502380797 +148968,744.840000004653,-0.05505849368747776 +148969,744.8450000046531,-0.05505844234915419 +148970,744.8500000046532,-0.05505839100883721 +148971,744.8550000046533,-0.055058339666526776 +148972,744.8600000046534,-0.05505828832222288 +148973,744.8650000046536,-0.05505823697592547 +148974,744.8700000046537,-0.0550581856276345 +148975,744.8750000046538,-0.05505813427734995 +148976,744.8800000046539,-0.05505808292507179 +148977,744.885000004654,-0.05505803157079997 +148978,744.8900000046541,-0.05505798021453445 +148979,744.8950000046542,-0.05505792885627522 +148980,744.9000000046543,-0.05505787749602223 +148981,744.9050000046544,-0.05505782613377544 +148982,744.9100000046545,-0.055057774769534815 +148983,744.9150000046546,-0.055057723403300333 +148984,744.9200000046548,-0.05505767203507195 +148985,744.9250000046549,-0.05505762066484962 +148986,744.930000004655,-0.05505756929263332 +148987,744.9350000046551,-0.055057517918423005 +148988,744.9400000046552,-0.05505746654221865 +148989,744.9450000046553,-0.05505741516402021 +148990,744.9500000046554,-0.05505736378382767 +148991,744.9550000046555,-0.055057312401640975 +148992,744.9600000046556,-0.05505726101746008 +148993,744.9650000046557,-0.055057209631284965 +148994,744.9700000046558,-0.0550571582431156 +148995,744.975000004656,-0.05505710685295193 +148996,744.9800000046561,-0.055057055460793945 +148997,744.9850000046562,-0.055057004066641595 +148998,744.9900000046563,-0.05505695267049484 +148999,744.9950000046564,-0.055056901272353645 +149000,745.0000000046565,-0.05505684987221798 +149001,745.0050000046566,-0.05505679847008781 +149002,745.0100000046567,-0.055056747065963106 +149003,745.0150000046568,-0.05505669565984383 +149004,745.0200000046569,-0.05505664425172992 +149005,745.025000004657,-0.055056592841621364 +149006,745.0300000046572,-0.05505654142951814 +149007,745.0350000046573,-0.05505649001542018 +149008,745.0400000046574,-0.05505643859932746 +149009,745.0450000046575,-0.05505638718123996 +149010,745.0500000046576,-0.05505633576115763 +149011,745.0550000046577,-0.055056284339080434 +149012,745.0600000046578,-0.05505623291500834 +149013,745.0650000046579,-0.05505618148894131 +149014,745.070000004658,-0.05505613006087931 +149015,745.0750000046581,-0.0550560786308223 +149016,745.0800000046582,-0.05505602719877025 +149017,745.0850000046584,-0.05505597576472313 +149018,745.0900000046585,-0.05505592432868089 +149019,745.0950000046586,-0.0550558728906435 +149020,745.1000000046587,-0.05505582145061092 +149021,745.1050000046588,-0.055055770008583124 +149022,745.1100000046589,-0.05505571856456007 +149023,745.115000004659,-0.05505566711854172 +149024,745.1200000046591,-0.055055615670528045 +149025,745.1250000046592,-0.05505556422051901 +149026,745.1300000046593,-0.05505551276851456 +149027,745.1350000046594,-0.055055461314514685 +149028,745.1400000046596,-0.05505540985851934 +149029,745.1450000046597,-0.05505535840052849 +149030,745.1500000046598,-0.055055306940542094 +149031,745.1550000046599,-0.055055255478560126 +149032,745.16000000466,-0.05505520401458255 +149033,745.1650000046601,-0.0550551525486093 +149034,745.1700000046602,-0.05505510108064037 +149035,745.1750000046603,-0.05505504961067573 +149036,745.1800000046604,-0.05505499813871532 +149037,745.1850000046605,-0.055054946664759116 +149038,745.1900000046606,-0.05505489518880708 +149039,745.1950000046608,-0.055054843710859176 +149040,745.2000000046609,-0.05505479223091537 +149041,745.205000004661,-0.055054740748975636 +149042,745.2100000046611,-0.05505468926503991 +149043,745.2150000046612,-0.05505463777910819 +149044,745.2200000046613,-0.055054586291180416 +149045,745.2250000046614,-0.05505453480125656 +149046,745.2300000046615,-0.05505448330933659 +149047,745.2350000046616,-0.05505443181542046 +149048,745.2400000046617,-0.05505438031950814 +149049,745.2450000046618,-0.0550543288215996 +149050,745.250000004662,-0.0550542773216948 +149051,745.2550000046621,-0.0550542258197937 +149052,745.2600000046622,-0.055054174315896265 +149053,745.2650000046623,-0.05505412281000246 +149054,745.2700000046624,-0.055054071302112234 +149055,745.2750000046625,-0.05505401979222557 +149056,745.2800000046626,-0.055053968280342445 +149057,745.2850000046627,-0.05505391676646279 +149058,745.2900000046628,-0.0550538652505866 +149059,745.2950000046629,-0.055053813732713806 +149060,745.300000004663,-0.055053762212844394 +149061,745.3050000046632,-0.05505371069097832 +149062,745.3100000046633,-0.055053659167115555 +149063,745.3150000046634,-0.05505360764125607 +149064,745.3200000046635,-0.05505355611339981 +149065,745.3250000046636,-0.05505350458354674 +149066,745.3300000046637,-0.055053453051696837 +149067,745.3350000046638,-0.05505340151785005 +149068,745.3400000046639,-0.05505334998200635 +149069,745.345000004664,-0.055053298444165705 +149070,745.3500000046641,-0.05505324690432808 +149071,745.3550000046642,-0.05505319536249343 +149072,745.3600000046644,-0.05505314381866173 +149073,745.3650000046645,-0.05505309227283293 +149074,745.3700000046646,-0.05505304072500701 +149075,745.3750000046647,-0.05505298917518391 +149076,745.3800000046648,-0.05505293762336362 +149077,745.3850000046649,-0.05505288606954609 +149078,745.390000004665,-0.05505283451373129 +149079,745.3950000046651,-0.05505278295591917 +149080,745.4000000046652,-0.05505273139610971 +149081,745.4050000046653,-0.05505267983430286 +149082,745.4100000046654,-0.0550526282704986 +149083,745.4150000046656,-0.055052576704696876 +149084,745.4200000046657,-0.05505252513689766 +149085,745.4250000046658,-0.05505247356710092 +149086,745.4300000046659,-0.05505242199530662 +149087,745.435000004666,-0.05505237042151471 +149088,745.4400000046661,-0.055052318845725166 +149089,745.4450000046662,-0.05505226726793795 +149090,745.4500000046663,-0.05505221568815303 +149091,745.4550000046664,-0.05505216410637036 +149092,745.4600000046665,-0.055052112522589895 +149093,745.4650000046666,-0.055052060936811614 +149094,745.4700000046668,-0.05505200934903549 +149095,745.4750000046669,-0.05505195775926147 +149096,745.480000004667,-0.05505190616748952 +149097,745.4850000046671,-0.05505185457371961 +149098,745.4900000046672,-0.055051802977951696 +149099,745.4950000046673,-0.05505175138018573 +149100,745.5000000046674,-0.0550516997804217 +149101,745.5050000046675,-0.05505164817865956 +149102,745.5100000046676,-0.05505159657489928 +149103,745.5150000046677,-0.05505154496914081 +149104,745.5200000046678,-0.05505149336138412 +149105,745.525000004668,-0.05505144175162917 +149106,745.5300000046681,-0.055051390139875936 +149107,745.5350000046682,-0.05505133852612437 +149108,745.5400000046683,-0.05505128691037445 +149109,745.5450000046684,-0.0550512352926261 +149110,745.5500000046685,-0.05505118367287933 +149111,745.5550000046686,-0.05505113205113409 +149112,745.5600000046687,-0.055051080427390334 +149113,745.5650000046688,-0.05505102880164802 +149114,745.5700000046689,-0.05505097717390713 +149115,745.575000004669,-0.055050925544167614 +149116,745.5800000046692,-0.05505087391242944 +149117,745.5850000046693,-0.05505082227869257 +149118,745.5900000046694,-0.055050770642956964 +149119,745.5950000046695,-0.05505071900522259 +149120,745.6000000046696,-0.05505066736548942 +149121,745.6050000046697,-0.055050615723757405 +149122,745.6100000046698,-0.055050564080026516 +149123,745.6150000046699,-0.055050512434296706 +149124,745.62000000467,-0.05505046078656795 +149125,745.6250000046701,-0.0550504091368402 +149126,745.6300000046703,-0.05505035748511344 +149127,745.6350000046704,-0.055050305831387605 +149128,745.6400000046705,-0.05505025417566267 +149129,745.6450000046706,-0.055050202517938615 +149130,745.6500000046707,-0.05505015085821537 +149131,745.6550000046708,-0.05505009919649294 +149132,745.6600000046709,-0.05505004753277125 +149133,745.665000004671,-0.05504999586705027 +149134,745.6700000046711,-0.055049944199329987 +149135,745.6750000046712,-0.055049892529610345 +149136,745.6800000046713,-0.05504984085789131 +149137,745.6850000046715,-0.05504978918417285 +149138,745.6900000046716,-0.055049737508454925 +149139,745.6950000046717,-0.0550496858307375 +149140,745.7000000046718,-0.05504963415102054 +149141,745.7050000046719,-0.055049582469304 +149142,745.710000004672,-0.05504953078558785 +149143,745.7150000046721,-0.055049479099872047 +149144,745.7200000046722,-0.055049427412156564 +149145,745.7250000046723,-0.055049375722441354 +149146,745.7300000046724,-0.05504932403072638 +149147,745.7350000046725,-0.055049272337011616 +149148,745.7400000046727,-0.05504922064129701 +149149,745.7450000046728,-0.05504916894358255 +149150,745.7500000046729,-0.05504911724386817 +149151,745.755000004673,-0.055049065542153844 +149152,745.7600000046731,-0.055049013838439534 +149153,745.7650000046732,-0.05504896213272521 +149154,745.7700000046733,-0.05504891042501083 +149155,745.7750000046734,-0.05504885871529636 +149156,745.7800000046735,-0.05504880700358177 +149157,745.7850000046736,-0.055048755289867 +149158,745.7900000046737,-0.05504870357415204 +149159,745.7950000046739,-0.055048651856436835 +149160,745.800000004674,-0.05504860013672136 +149161,745.8050000046741,-0.055048548415005574 +149162,745.8100000046742,-0.05504849669128943 +149163,745.8150000046743,-0.0550484449655729 +149164,745.8200000046744,-0.05504839323785595 +149165,745.8250000046745,-0.05504834150813854 +149166,745.8300000046746,-0.055048289776420616 +149167,745.8350000046747,-0.05504823804270217 +149168,745.8400000046748,-0.05504818630698314 +149169,745.845000004675,-0.05504813456926351 +149170,745.850000004675,-0.05504808282954323 +149171,745.8550000046752,-0.05504803108782228 +149172,745.8600000046753,-0.0550479793441006 +149173,745.8650000046754,-0.05504792759837817 +149174,745.8700000046755,-0.05504787585065493 +149175,745.8750000046756,-0.05504782410093087 +149176,745.8800000046757,-0.05504777234920593 +149177,745.8850000046758,-0.05504772059548009 +149178,745.8900000046759,-0.0550476688397533 +149179,745.895000004676,-0.05504761708202554 +149180,745.9000000046761,-0.055047565322296765 +149181,745.9050000046763,-0.055047513560566926 +149182,745.9100000046764,-0.055047461796836006 +149183,745.9150000046765,-0.05504741003110395 +149184,745.9200000046766,-0.055047358263370726 +149185,745.9250000046767,-0.0550473064936363 +149186,745.9300000046768,-0.05504725472190065 +149187,745.9350000046769,-0.055047202948163704 +149188,745.940000004677,-0.055047151172425444 +149189,745.9450000046771,-0.05504709939468583 +149190,745.9500000046772,-0.05504704761494483 +149191,745.9550000046773,-0.055046995833202404 +149192,745.9600000046775,-0.05504694404945852 +149193,745.9650000046776,-0.055046892263713135 +149194,745.9700000046777,-0.05504684047596621 +149195,745.9750000046778,-0.055046788686217714 +149196,745.9800000046779,-0.0550467368944676 +149197,745.985000004678,-0.055046685100715836 +149198,745.9900000046781,-0.055046633304962386 +149199,745.9950000046782,-0.05504658150720721 +149200,746.0000000046783,-0.05504652970745026 +149201,746.0050000046784,-0.05504647790569152 +149202,746.0100000046785,-0.055046426101930945 +149203,746.0150000046787,-0.055046374296168495 +149204,746.0200000046788,-0.05504632248840413 +149205,746.0250000046789,-0.05504627067863783 +149206,746.030000004679,-0.05504621886686952 +149207,746.0350000046791,-0.05504616705309921 +149208,746.0400000046792,-0.05504611523732683 +149209,746.0450000046793,-0.05504606341955236 +149210,746.0500000046794,-0.05504601159977574 +149211,746.0550000046795,-0.05504595977799696 +149212,746.0600000046796,-0.05504590795421596 +149213,746.0650000046797,-0.05504585612843272 +149214,746.0700000046799,-0.05504580430064719 +149215,746.07500000468,-0.05504575247085934 +149216,746.0800000046801,-0.05504570063906913 +149217,746.0850000046802,-0.055045648805276515 +149218,746.0900000046803,-0.05504559696948147 +149219,746.0950000046804,-0.055045545131683936 +149220,746.1000000046805,-0.0550454932918839 +149221,746.1050000046806,-0.05504544145008133 +149222,746.1100000046807,-0.05504538960627616 +149223,746.1150000046808,-0.055045337760468376 +149224,746.120000004681,-0.05504528591265792 +149225,746.125000004681,-0.05504523406284477 +149226,746.1300000046812,-0.05504518221102889 +149227,746.1350000046813,-0.05504513035721024 +149228,746.1400000046814,-0.055045078501388775 +149229,746.1450000046815,-0.055045026643564456 +149230,746.1500000046816,-0.05504497478373726 +149231,746.1550000046817,-0.055044922921907144 +149232,746.1600000046818,-0.05504487105807407 +149233,746.1650000046819,-0.055044819192237984 +149234,746.170000004682,-0.05504476732439886 +149235,746.1750000046821,-0.055044715454556664 +149236,746.1800000046823,-0.055044663582711366 +149237,746.1850000046824,-0.05504461170886292 +149238,746.1900000046825,-0.05504455983301128 +149239,746.1950000046826,-0.05504450795515642 +149240,746.2000000046827,-0.05504445607529829 +149241,746.2050000046828,-0.05504440419343686 +149242,746.2100000046829,-0.055044352309572095 +149243,746.215000004683,-0.055044300423703944 +149244,746.2200000046831,-0.055044248535832396 +149245,746.2250000046832,-0.05504419664595739 +149246,746.2300000046833,-0.0550441447540789 +149247,746.2350000046835,-0.05504409286019688 +149248,746.2400000046836,-0.05504404096431131 +149249,746.2450000046837,-0.055043989066422126 +149250,746.2500000046838,-0.055043937166529305 +149251,746.2550000046839,-0.05504388526463281 +149252,746.260000004684,-0.05504383336073259 +149253,746.2650000046841,-0.05504378145482862 +149254,746.2700000046842,-0.05504372954692086 +149255,746.2750000046843,-0.05504367763700927 +149256,746.2800000046844,-0.0550436257250938 +149257,746.2850000046845,-0.05504357381117444 +149258,746.2900000046847,-0.055043521895251135 +149259,746.2950000046848,-0.05504346997732385 +149260,746.3000000046849,-0.05504341805739256 +149261,746.305000004685,-0.055043366135457204 +149262,746.3100000046851,-0.05504331421151776 +149263,746.3150000046852,-0.05504326228557417 +149264,746.3200000046853,-0.055043210357626424 +149265,746.3250000046854,-0.05504315842767446 +149266,746.3300000046855,-0.05504310649571825 +149267,746.3350000046856,-0.05504305456175776 +149268,746.3400000046857,-0.05504300262579295 +149269,746.3450000046859,-0.05504295068782379 +149270,746.350000004686,-0.05504289874785023 +149271,746.3550000046861,-0.05504284680587223 +149272,746.3600000046862,-0.05504279486188976 +149273,746.3650000046863,-0.055042742915902776 +149274,746.3700000046864,-0.05504269096791124 +149275,746.3750000046865,-0.055042639017915125 +149276,746.3800000046866,-0.055042587065914375 +149277,746.3850000046867,-0.055042535111908965 +149278,746.3900000046868,-0.05504248315589885 +149279,746.395000004687,-0.055042431197884004 +149280,746.4000000046871,-0.05504237923786438 +149281,746.4050000046872,-0.055042327275839936 +149282,746.4100000046873,-0.05504227531181064 +149283,746.4150000046874,-0.05504222334577645 +149284,746.4200000046875,-0.055042171377737335 +149285,746.4250000046876,-0.05504211940769325 +149286,746.4300000046877,-0.05504206743564416 +149287,746.4350000046878,-0.05504201546159003 +149288,746.4400000046879,-0.055041963485530816 +149289,746.445000004688,-0.055041911507466484 +149290,746.4500000046881,-0.05504185952739698 +149291,746.4550000046883,-0.055041807545322285 +149292,746.4600000046884,-0.05504175556124237 +149293,746.4650000046885,-0.055041703575157176 +149294,746.4700000046886,-0.05504165158706667 +149295,746.4750000046887,-0.05504159959697082 +149296,746.4800000046888,-0.05504154760486957 +149297,746.4850000046889,-0.055041495610762894 +149298,746.490000004689,-0.05504144361465076 +149299,746.4950000046891,-0.05504139161653312 +149300,746.5000000046892,-0.055041339616409946 +149301,746.5050000046894,-0.05504128761428119 +149302,746.5100000046895,-0.055041235610146816 +149303,746.5150000046896,-0.05504118360400679 +149304,746.5200000046897,-0.05504113159586106 +149305,746.5250000046898,-0.05504107958570961 +149306,746.5300000046899,-0.055041027573552385 +149307,746.53500000469,-0.05504097555938935 +149308,746.5400000046901,-0.055040923543220474 +149309,746.5450000046902,-0.055040871525045706 +149310,746.5500000046903,-0.055040819504865016 +149311,746.5550000046904,-0.05504076748267836 +149312,746.5600000046906,-0.055040715458485705 +149313,746.5650000046907,-0.05504066343228702 +149314,746.5700000046908,-0.05504061140408226 +149315,746.5750000046909,-0.055040559373871374 +149316,746.580000004691,-0.055040507341654346 +149317,746.5850000046911,-0.05504045530743112 +149318,746.5900000046912,-0.05504040327120165 +149319,746.5950000046913,-0.05504035123296593 +149320,746.6000000046914,-0.05504029919272389 +149321,746.6050000046915,-0.05504024715047551 +149322,746.6100000046916,-0.055040195106220755 +149323,746.6150000046918,-0.055040143059959565 +149324,746.6200000046919,-0.05504009101169192 +149325,746.625000004692,-0.055040038961417764 +149326,746.6300000046921,-0.055039986909137084 +149327,746.6350000046922,-0.05503993485484982 +149328,746.6400000046923,-0.055039882798555935 +149329,746.6450000046924,-0.05503983074025541 +149330,746.6500000046925,-0.055039778679948186 +149331,746.6550000046926,-0.05503972661763423 +149332,746.6600000046927,-0.0550396745533135 +149333,746.6650000046928,-0.055039622486985976 +149334,746.670000004693,-0.055039570418651595 +149335,746.6750000046931,-0.05503951834831033 +149336,746.6800000046932,-0.055039466275962144 +149337,746.6850000046933,-0.05503941420160699 +149338,746.6900000046934,-0.05503936212524484 +149339,746.6950000046935,-0.05503931004687564 +149340,746.7000000046936,-0.05503925796649938 +149341,746.7050000046937,-0.05503920588411599 +149342,746.7100000046938,-0.05503915379972544 +149343,746.7150000046939,-0.05503910171332771 +149344,746.720000004694,-0.05503904962492274 +149345,746.7250000046942,-0.055038997534510505 +149346,746.7300000046943,-0.05503894544209095 +149347,746.7350000046944,-0.055038893347664056 +149348,746.7400000046945,-0.05503884125122977 +149349,746.7450000046946,-0.05503878915278806 +149350,746.7500000046947,-0.055038737052338874 +149351,746.7550000046948,-0.0550386849498822 +149352,746.7600000046949,-0.05503863284541798 +149353,746.765000004695,-0.05503858073894618 +149354,746.7700000046951,-0.05503852863046676 +149355,746.7750000046952,-0.055038476519979666 +149356,746.7800000046954,-0.05503842440748488 +149357,746.7850000046955,-0.05503837229298236 +149358,746.7900000046956,-0.05503832017647207 +149359,746.7950000046957,-0.055038268057953955 +149360,746.8000000046958,-0.05503821593742799 +149361,746.8050000046959,-0.055038163814894146 +149362,746.810000004696,-0.055038111690352366 +149363,746.8150000046961,-0.05503805956380262 +149364,746.8200000046962,-0.05503800743524487 +149365,746.8250000046963,-0.05503795530467906 +149366,746.8300000046964,-0.05503790317210516 +149367,746.8350000046966,-0.05503785103752314 +149368,746.8400000046967,-0.05503779890093296 +149369,746.8450000046968,-0.05503774676233456 +149370,746.8500000046969,-0.05503769462172794 +149371,746.855000004697,-0.05503764247911303 +149372,746.8600000046971,-0.05503759033448981 +149373,746.8650000046972,-0.05503753818785822 +149374,746.8700000046973,-0.055037486039218236 +149375,746.8750000046974,-0.055037433888569826 +149376,746.8800000046975,-0.05503738173591293 +149377,746.8850000046976,-0.05503732958124752 +149378,746.8900000046978,-0.05503727742457356 +149379,746.8950000046979,-0.05503722526589101 +149380,746.900000004698,-0.05503717310519983 +149381,746.9050000046981,-0.05503712094249997 +149382,746.9100000046982,-0.0550370687777914 +149383,746.9150000046983,-0.055037016611074095 +149384,746.9200000046984,-0.05503696444234799 +149385,746.9250000046985,-0.055036912271613066 +149386,746.9300000046986,-0.05503686009886927 +149387,746.9350000046987,-0.05503680792411656 +149388,746.9400000046988,-0.05503675574735492 +149389,746.945000004699,-0.05503670356858429 +149390,746.9500000046991,-0.05503665138780464 +149391,746.9550000046992,-0.05503659920501593 +149392,746.9600000046993,-0.055036547020218124 +149393,746.9650000046994,-0.05503649483341117 +149394,746.9700000046995,-0.05503644264459504 +149395,746.9750000046996,-0.055036390453769686 +149396,746.9800000046997,-0.05503633826093508 +149397,746.9850000046998,-0.05503628606609118 +149398,746.9900000046999,-0.055036233869237935 +149399,746.9950000047,-0.055036181670375314 +149400,747.0000000047002,-0.05503612946950328 +149401,747.0050000047003,-0.055036077266621804 +149402,747.0100000047004,-0.055036025061730824 +149403,747.0150000047005,-0.05503597285483032 +149404,747.0200000047006,-0.05503592064592024 +149405,747.0250000047007,-0.05503586843500055 +149406,747.0300000047008,-0.05503581622207122 +149407,747.0350000047009,-0.055035764007132185 +149408,747.040000004701,-0.05503571179018343 +149409,747.0450000047011,-0.055035659571224915 +149410,747.0500000047012,-0.05503560735025659 +149411,747.0550000047014,-0.05503555512727842 +149412,747.0600000047015,-0.05503550290229035 +149413,747.0650000047016,-0.05503545067529237 +149414,747.0700000047017,-0.05503539844628442 +149415,747.0750000047018,-0.055035346215266456 +149416,747.0800000047019,-0.055035293982238456 +149417,747.085000004702,-0.05503524174720038 +149418,747.0900000047021,-0.05503518951015217 +149419,747.0950000047022,-0.055035137271093805 +149420,747.1000000047023,-0.055035085030025244 +149421,747.1050000047024,-0.05503503278694644 +149422,747.1100000047026,-0.05503498054185737 +149423,747.1150000047027,-0.055034928294757965 +149424,747.1200000047028,-0.055034876045648204 +149425,747.1250000047029,-0.05503482379452804 +149426,747.130000004703,-0.05503477154139745 +149427,747.1350000047031,-0.055034719286256376 +149428,747.1400000047032,-0.055034667029104783 +149429,747.1450000047033,-0.05503461476994264 +149430,747.1500000047034,-0.055034562508769896 +149431,747.1550000047035,-0.05503451024558652 +149432,747.1600000047036,-0.055034457980392464 +149433,747.1650000047038,-0.0550344057131877 +149434,747.1700000047039,-0.05503435344397218 +149435,747.175000004704,-0.055034301172745874 +149436,747.1800000047041,-0.055034248899508725 +149437,747.1850000047042,-0.0550341966242607 +149438,747.1900000047043,-0.055034144347001775 +149439,747.1950000047044,-0.05503409206773189 +149440,747.2000000047045,-0.05503403978645102 +149441,747.2050000047046,-0.05503398750315911 +149442,747.2100000047047,-0.05503393521785614 +149443,747.2150000047048,-0.05503388293054205 +149444,747.220000004705,-0.05503383064121681 +149445,747.2250000047051,-0.05503377834988038 +149446,747.2300000047052,-0.05503372605653273 +149447,747.2350000047053,-0.0550336737611738 +149448,747.2400000047054,-0.05503362146380357 +149449,747.2450000047055,-0.055033569164421994 +149450,747.2500000047056,-0.05503351686302902 +149451,747.2550000047057,-0.05503346455962462 +149452,747.2600000047058,-0.055033412254208755 +149453,747.2650000047059,-0.05503335994678137 +149454,747.270000004706,-0.055033307637342446 +149455,747.2750000047062,-0.05503325532589194 +149456,747.2800000047063,-0.05503320301242981 +149457,747.2850000047064,-0.055033150696956 +149458,747.2900000047065,-0.05503309837947049 +149459,747.2950000047066,-0.05503304605997323 +149460,747.3000000047067,-0.05503299373846419 +149461,747.3050000047068,-0.055032941414943325 +149462,747.3100000047069,-0.05503288908941059 +149463,747.315000004707,-0.055032836761865954 +149464,747.3200000047071,-0.05503278443230937 +149465,747.3250000047072,-0.055032732100740805 +149466,747.3300000047074,-0.055032679767160204 +149467,747.3350000047075,-0.055032627431567546 +149468,747.3400000047076,-0.055032575093962775 +149469,747.3450000047077,-0.055032522754345864 +149470,747.3500000047078,-0.055032470412716764 +149471,747.3550000047079,-0.055032418069075446 +149472,747.360000004708,-0.055032365723421864 +149473,747.3650000047081,-0.055032313375755974 +149474,747.3700000047082,-0.055032261026077736 +149475,747.3750000047083,-0.05503220867438711 +149476,747.3800000047084,-0.05503215632068407 +149477,747.3850000047086,-0.055032103964968555 +149478,747.3900000047087,-0.055032051607240534 +149479,747.3950000047088,-0.05503199924749997 +149480,747.4000000047089,-0.05503194688574682 +149481,747.405000004709,-0.05503189452198105 +149482,747.4100000047091,-0.05503184215620262 +149483,747.4150000047092,-0.05503178978841147 +149484,747.4200000047093,-0.05503173741860759 +149485,747.4250000047094,-0.055031685046790915 +149486,747.4300000047095,-0.055031632672961406 +149487,747.4350000047097,-0.05503158029711905 +149488,747.4400000047098,-0.05503152791926378 +149489,747.4450000047099,-0.05503147553939556 +149490,747.45000000471,-0.05503142315751435 +149491,747.4550000047101,-0.05503137077362013 +149492,747.4600000047102,-0.05503131838771283 +149493,747.4650000047103,-0.055031265999792425 +149494,747.4700000047104,-0.05503121360985888 +149495,747.4750000047105,-0.05503116121791214 +149496,747.4800000047106,-0.05503110882395218 +149497,747.4850000047107,-0.05503105642797895 +149498,747.4900000047109,-0.05503100402999242 +149499,747.495000004711,-0.05503095162999253 +149500,747.5000000047111,-0.05503089922797926 +149501,747.5050000047112,-0.05503084682395256 +149502,747.5100000047113,-0.05503079441791239 +149503,747.5150000047114,-0.05503074200985871 +149504,747.5200000047115,-0.05503068959979149 +149505,747.5250000047116,-0.05503063718771067 +149506,747.5300000047117,-0.05503058477361621 +149507,747.5350000047118,-0.05503053235750809 +149508,747.5400000047119,-0.05503047993938627 +149509,747.545000004712,-0.0550304275192507 +149510,747.5500000047122,-0.055030375097101326 +149511,747.5550000047123,-0.05503032267293813 +149512,747.5600000047124,-0.05503027024676105 +149513,747.5650000047125,-0.055030217818570065 +149514,747.5700000047126,-0.055030165388365124 +149515,747.5750000047127,-0.05503011295614618 +149516,747.5800000047128,-0.05503006052191321 +149517,747.5850000047129,-0.05503000808566617 +149518,747.590000004713,-0.05502995564740502 +149519,747.5950000047131,-0.05502990320712971 +149520,747.6000000047133,-0.0550298507648402 +149521,747.6050000047134,-0.055029798320536456 +149522,747.6100000047135,-0.05502974587421844 +149523,747.6150000047136,-0.055029693425886095 +149524,747.6200000047137,-0.05502964097553941 +149525,747.6250000047138,-0.05502958852317832 +149526,747.6300000047139,-0.05502953606880279 +149527,747.635000004714,-0.05502948361241278 +149528,747.6400000047141,-0.055029431154008254 +149529,747.6450000047142,-0.05502937869358917 +149530,747.6500000047143,-0.05502932623115548 +149531,747.6550000047145,-0.05502927376670715 +149532,747.6600000047146,-0.05502922130024413 +149533,747.6650000047147,-0.0550291688317664 +149534,747.6700000047148,-0.05502911636127391 +149535,747.6750000047149,-0.055029063888766605 +149536,747.680000004715,-0.055029011414244454 +149537,747.6850000047151,-0.055028958937707415 +149538,747.6900000047152,-0.055028906459155466 +149539,747.6950000047153,-0.055028853978588546 +149540,747.7000000047154,-0.055028801496006606 +149541,747.7050000047155,-0.05502874901140963 +149542,747.7100000047157,-0.05502869652479757 +149543,747.7150000047158,-0.05502864403617038 +149544,747.7200000047159,-0.05502859154552802 +149545,747.725000004716,-0.055028539052870445 +149546,747.7300000047161,-0.055028486558197615 +149547,747.7350000047162,-0.0550284340615095 +149548,747.7400000047163,-0.055028381562806046 +149549,747.7450000047164,-0.055028329062087225 +149550,747.7500000047165,-0.05502827655935299 +149551,747.7550000047166,-0.0550282240546033 +149552,747.7600000047167,-0.055028171547838116 +149553,747.7650000047169,-0.05502811903905739 +149554,747.770000004717,-0.05502806652826108 +149555,747.7750000047171,-0.05502801401544916 +149556,747.7800000047172,-0.05502796150062157 +149557,747.7850000047173,-0.05502790898377829 +149558,747.7900000047174,-0.05502785646491927 +149559,747.7950000047175,-0.05502780394404447 +149560,747.8000000047176,-0.05502775142115384 +149561,747.8050000047177,-0.05502769889624735 +149562,747.8100000047178,-0.05502764636932496 +149563,747.815000004718,-0.055027593840386614 +149564,747.820000004718,-0.0550275413094323 +149565,747.8250000047182,-0.055027488776461936 +149566,747.8300000047183,-0.05502743624147551 +149567,747.8350000047184,-0.055027383704472986 +149568,747.8400000047185,-0.0550273311654543 +149569,747.8450000047186,-0.055027278624419425 +149570,747.8500000047187,-0.05502722608136831 +149571,747.8550000047188,-0.05502717353630094 +149572,747.8600000047189,-0.05502712098921724 +149573,747.865000004719,-0.05502706844011719 +149574,747.8700000047191,-0.055027015889000754 +149575,747.8750000047193,-0.055026963335867866 +149576,747.8800000047194,-0.055026910780718495 +149577,747.8850000047195,-0.05502685822355261 +149578,747.8900000047196,-0.055026805664370175 +149579,747.8950000047197,-0.055026753103171136 +149580,747.9000000047198,-0.055026700539955446 +149581,747.9050000047199,-0.05502664797472308 +149582,747.91000000472,-0.055026595407473976 +149583,747.9150000047201,-0.05502654283820812 +149584,747.9200000047202,-0.05502649026692545 +149585,747.9250000047203,-0.05502643769362594 +149586,747.9300000047205,-0.05502638511830953 +149587,747.9350000047206,-0.0550263325409762 +149588,747.9400000047207,-0.05502627996162589 +149589,747.9450000047208,-0.055026227380258565 +149590,747.9500000047209,-0.055026174796874175 +149591,747.955000004721,-0.0550261222114727 +149592,747.9600000047211,-0.05502606962405409 +149593,747.9650000047212,-0.05502601703461829 +149594,747.9700000047213,-0.05502596444316528 +149595,747.9750000047214,-0.055025911849695006 +149596,747.9800000047215,-0.055025859254207436 +149597,747.9850000047217,-0.055025806656702515 +149598,747.9900000047218,-0.05502575405718021 +149599,747.9950000047219,-0.05502570145564049 +149600,748.000000004722,-0.055025648852083296 +149601,748.0050000047221,-0.05502559624650859 +149602,748.0100000047222,-0.05502554363891633 +149603,748.0150000047223,-0.055025491029306484 +149604,748.0200000047224,-0.055025438417679 +149605,748.0250000047225,-0.05502538580403385 +149606,748.0300000047226,-0.05502533318837098 +149607,748.0350000047227,-0.05502528057069036 +149608,748.0400000047229,-0.055025227950991934 +149609,748.045000004723,-0.05502517532927567 +149610,748.0500000047231,-0.055025122705541524 +149611,748.0550000047232,-0.05502507007978946 +149612,748.0600000047233,-0.055025017452019424 +149613,748.0650000047234,-0.05502496482223138 +149614,748.0700000047235,-0.055024912190425296 +149615,748.0750000047236,-0.05502485955660113 +149616,748.0800000047237,-0.05502480692075882 +149617,748.0850000047238,-0.055024754282898346 +149618,748.090000004724,-0.055024701643019654 +149619,748.095000004724,-0.055024649001122715 +149620,748.1000000047242,-0.055024596357207474 +149621,748.1050000047243,-0.055024543711273896 +149622,748.1100000047244,-0.05502449106332193 +149623,748.1150000047245,-0.05502443841335155 +149624,748.1200000047246,-0.05502438576136271 +149625,748.1250000047247,-0.05502433310735536 +149626,748.1300000047248,-0.05502428045132946 +149627,748.1350000047249,-0.05502422779328498 +149628,748.140000004725,-0.05502417513322187 +149629,748.1450000047251,-0.05502412247114009 +149630,748.1500000047253,-0.0550240698070396 +149631,748.1550000047254,-0.05502401714092035 +149632,748.1600000047255,-0.055023964472782315 +149633,748.1650000047256,-0.05502391180262543 +149634,748.1700000047257,-0.05502385913044968 +149635,748.1750000047258,-0.055023806456255 +149636,748.1800000047259,-0.05502375378004136 +149637,748.185000004726,-0.055023701101808715 +149638,748.1900000047261,-0.05502364842155701 +149639,748.1950000047262,-0.05502359573928624 +149640,748.2000000047263,-0.05502354305499633 +149641,748.2050000047265,-0.055023490368687235 +149642,748.2100000047266,-0.05502343768035894 +149643,748.2150000047267,-0.05502338499001138 +149644,748.2200000047268,-0.05502333229764453 +149645,748.2250000047269,-0.05502327960325835 +149646,748.230000004727,-0.05502322690685277 +149647,748.2350000047271,-0.055023174208427776 +149648,748.2400000047272,-0.05502312150798332 +149649,748.2450000047273,-0.05502306880551936 +149650,748.2500000047274,-0.055023016101035854 +149651,748.2550000047275,-0.055022963394532755 +149652,748.2600000047277,-0.05502291068601002 +149653,748.2650000047278,-0.05502285797546762 +149654,748.2700000047279,-0.0550228052629055 +149655,748.275000004728,-0.05502275254832361 +149656,748.2800000047281,-0.055022699831721936 +149657,748.2850000047282,-0.05502264711310042 +149658,748.2900000047283,-0.05502259439245901 +149659,748.2950000047284,-0.05502254166979769 +149660,748.3000000047285,-0.055022488945116396 +149661,748.3050000047286,-0.05502243621841508 +149662,748.3100000047287,-0.055022383489693724 +149663,748.3150000047289,-0.05502233075895226 +149664,748.320000004729,-0.055022278026190675 +149665,748.3250000047291,-0.05502222529140892 +149666,748.3300000047292,-0.055022172554606924 +149667,748.3350000047293,-0.05502211981578468 +149668,748.3400000047294,-0.05502206707494213 +149669,748.3450000047295,-0.055022014332079226 +149670,748.3500000047296,-0.05502196158719593 +149671,748.3550000047297,-0.05502190884029221 +149672,748.3600000047298,-0.055021856091368025 +149673,748.36500000473,-0.05502180334042332 +149674,748.3700000047301,-0.05502175058745806 +149675,748.3750000047302,-0.055021697832472204 +149676,748.3800000047303,-0.0550216450754657 +149677,748.3850000047304,-0.055021592316438515 +149678,748.3900000047305,-0.0550215395553906 +149679,748.3950000047306,-0.055021486792321925 +149680,748.4000000047307,-0.05502143402723243 +149681,748.4050000047308,-0.0550213812601221 +149682,748.4100000047309,-0.05502132849099087 +149683,748.415000004731,-0.0550212757198387 +149684,748.4200000047312,-0.055021222946665546 +149685,748.4250000047313,-0.055021170171471366 +149686,748.4300000047314,-0.055021117394256136 +149687,748.4350000047315,-0.0550210646150198 +149688,748.4400000047316,-0.055021011833762304 +149689,748.4450000047317,-0.055020959050483625 +149690,748.4500000047318,-0.05502090626518371 +149691,748.4550000047319,-0.055020853477862515 +149692,748.460000004732,-0.055020800688520013 +149693,748.4650000047321,-0.05502074789715614 +149694,748.4700000047322,-0.055020695103770875 +149695,748.4750000047324,-0.05502064230836416 +149696,748.4800000047325,-0.05502058951093596 +149697,748.4850000047326,-0.05502053671148623 +149698,748.4900000047327,-0.05502048391001493 +149699,748.4950000047328,-0.055020431106522015 +149700,748.5000000047329,-0.05502037830100744 +149701,748.505000004733,-0.05502032549347116 +149702,748.5100000047331,-0.05502027268391315 +149703,748.5150000047332,-0.05502021987233335 +149704,748.5200000047333,-0.055020167058731716 +149705,748.5250000047334,-0.05502011424310822 +149706,748.5300000047336,-0.05502006142546281 +149707,748.5350000047337,-0.05502000860579546 +149708,748.5400000047338,-0.05501995578410609 +149709,748.5450000047339,-0.05501990296039469 +149710,748.550000004734,-0.055019850134661215 +149711,748.5550000047341,-0.0550197973069056 +149712,748.5600000047342,-0.05501974447712783 +149713,748.5650000047343,-0.05501969164532784 +149714,748.5700000047344,-0.0550196388115056 +149715,748.5750000047345,-0.055019585975661076 +149716,748.5800000047346,-0.0550195331377942 +149717,748.5850000047348,-0.055019480297904946 +149718,748.5900000047349,-0.05501942745599328 +149719,748.595000004735,-0.05501937461205914 +149720,748.6000000047351,-0.0550193217661025 +149721,748.6050000047352,-0.05501926891812329 +149722,748.6100000047353,-0.0550192160681215 +149723,748.6150000047354,-0.055019163216097074 +149724,748.6200000047355,-0.055019110362049956 +149725,748.6250000047356,-0.05501905750598013 +149726,748.6300000047357,-0.05501900464788753 +149727,748.6350000047358,-0.05501895178777213 +149728,748.640000004736,-0.055018898925633865 +149729,748.6450000047361,-0.05501884606147272 +149730,748.6500000047362,-0.055018793195288636 +149731,748.6550000047363,-0.055018740327081574 +149732,748.6600000047364,-0.0550186874568515 +149733,748.6650000047365,-0.055018634584598346 +149734,748.6700000047366,-0.05501858171032208 +149735,748.6750000047367,-0.055018528834022674 +149736,748.6800000047368,-0.05501847595570007 +149737,748.6850000047369,-0.055018423075354234 +149738,748.690000004737,-0.05501837019298512 +149739,748.6950000047372,-0.05501831730859268 +149740,748.7000000047373,-0.05501826442217689 +149741,748.7050000047374,-0.05501821153373767 +149742,748.7100000047375,-0.055018158643275014 +149743,748.7150000047376,-0.055018105750788866 +149744,748.7200000047377,-0.05501805285627917 +149745,748.7250000047378,-0.05501799995974589 +149746,748.7300000047379,-0.05501794706118901 +149747,748.735000004738,-0.05501789416060845 +149748,748.7400000047381,-0.055017841258004185 +149749,748.7450000047382,-0.05501778835337616 +149750,748.7500000047384,-0.05501773544672434 +149751,748.7550000047385,-0.05501768253804869 +149752,748.7600000047386,-0.05501762962734915 +149753,748.7650000047387,-0.05501757671462569 +149754,748.7700000047388,-0.055017523799878267 +149755,748.7750000047389,-0.05501747088310682 +149756,748.780000004739,-0.05501741796431134 +149757,748.7850000047391,-0.05501736504349175 +149758,748.7900000047392,-0.05501731212064803 +149759,748.7950000047393,-0.05501725919578013 +149760,748.8000000047394,-0.055017206268888 +149761,748.8050000047396,-0.0550171533399716 +149762,748.8100000047397,-0.05501710040903089 +149763,748.8150000047398,-0.055017047476065825 +149764,748.8200000047399,-0.05501699454107636 +149765,748.82500000474,-0.05501694160406245 +149766,748.8300000047401,-0.05501688866502406 +149767,748.8350000047402,-0.05501683572396114 +149768,748.8400000047403,-0.055016782780873644 +149769,748.8450000047404,-0.05501672983576154 +149770,748.8500000047405,-0.05501667688862477 +149771,748.8550000047406,-0.0550166239394633 +149772,748.8600000047408,-0.0550165709882771 +149773,748.8650000047409,-0.0550165180350661 +149774,748.870000004741,-0.05501646507983027 +149775,748.8750000047411,-0.055016412122569566 +149776,748.8800000047412,-0.055016359163283936 +149777,748.8850000047413,-0.05501630620197335 +149778,748.8900000047414,-0.05501625323863776 +149779,748.8950000047415,-0.055016200273277124 +149780,748.9000000047416,-0.0550161473058914 +149781,748.9050000047417,-0.05501609433648054 +149782,748.9100000047418,-0.0550160413650445 +149783,748.915000004742,-0.05501598839158324 +149784,748.9200000047421,-0.05501593541609671 +149785,748.9250000047422,-0.055015882438584886 +149786,748.9300000047423,-0.0550158294590477 +149787,748.9350000047424,-0.05501577647748512 +149788,748.9400000047425,-0.0550157234938971 +149789,748.9450000047426,-0.05501567050828359 +149790,748.9500000047427,-0.05501561752064457 +149791,748.9550000047428,-0.05501556453097997 +149792,748.9600000047429,-0.05501551153928976 +149793,748.965000004743,-0.055015458545573895 +149794,748.9700000047432,-0.05501540554983232 +149795,748.9750000047433,-0.055015352552065015 +149796,748.9800000047434,-0.05501529955227191 +149797,748.9850000047435,-0.055015246550452986 +149798,748.9900000047436,-0.05501519354660817 +149799,748.9950000047437,-0.05501514054073745 +149800,749.0000000047438,-0.05501508753284077 +149801,749.0050000047439,-0.055015034522918074 +149802,749.010000004744,-0.055014981510969334 +149803,749.0150000047441,-0.0550149284969945 +149804,749.0200000047442,-0.05501487548099353 +149805,749.0250000047444,-0.05501482246296638 +149806,749.0300000047445,-0.05501476944291301 +149807,749.0350000047446,-0.055014716420833366 +149808,749.0400000047447,-0.05501466339672741 +149809,749.0450000047448,-0.05501461037059511 +149810,749.0500000047449,-0.055014557342436404 +149811,749.055000004745,-0.055014504312251265 +149812,749.0600000047451,-0.05501445128003962 +149813,749.0650000047452,-0.05501439824580146 +149814,749.0700000047453,-0.055014345209536714 +149815,749.0750000047454,-0.05501429217124536 +149816,749.0800000047456,-0.05501423913092734 +149817,749.0850000047457,-0.05501418608858262 +149818,749.0900000047458,-0.05501413304421115 +149819,749.0950000047459,-0.05501407999781289 +149820,749.100000004746,-0.055014026949387784 +149821,749.1050000047461,-0.0550139738989358 +149822,749.1100000047462,-0.0550139208464569 +149823,749.1150000047463,-0.05501386779195101 +149824,749.1200000047464,-0.05501381473541812 +149825,749.1250000047465,-0.05501376167685818 +149826,749.1300000047466,-0.05501370861627113 +149827,749.1350000047468,-0.055013655553656934 +149828,749.1400000047469,-0.05501360248901555 +149829,749.145000004747,-0.055013549422346944 +149830,749.1500000047471,-0.05501349635365105 +149831,749.1550000047472,-0.055013443282927836 +149832,749.1600000047473,-0.05501339021017727 +149833,749.1650000047474,-0.055013337135399284 +149834,749.1700000047475,-0.055013284058593855 +149835,749.1750000047476,-0.05501323097976092 +149836,749.1800000047477,-0.05501317789890045 +149837,749.1850000047478,-0.05501312481601239 +149838,749.190000004748,-0.0550130717310967 +149839,749.1950000047481,-0.05501301864415335 +149840,749.2000000047482,-0.05501296555518228 +149841,749.2050000047483,-0.055012912464183446 +149842,749.2100000047484,-0.0550128593711568 +149843,749.2150000047485,-0.0550128062761023 +149844,749.2200000047486,-0.055012753179019915 +149845,749.2250000047487,-0.05501270007990959 +149846,749.2300000047488,-0.055012646978771285 +149847,749.2350000047489,-0.05501259387560495 +149848,749.240000004749,-0.05501254077041055 +149849,749.2450000047492,-0.05501248766318804 +149850,749.2500000047493,-0.05501243455393737 +149851,749.2550000047494,-0.05501238144265848 +149852,749.2600000047495,-0.05501232832935135 +149853,749.2650000047496,-0.05501227521401593 +149854,749.2700000047497,-0.05501222209665218 +149855,749.2750000047498,-0.055012168977260044 +149856,749.2800000047499,-0.05501211585583948 +149857,749.28500000475,-0.05501206273239045 +149858,749.2900000047501,-0.055012009606912916 +149859,749.2950000047502,-0.05501195647940681 +149860,749.3000000047504,-0.0550119033498721 +149861,749.3050000047505,-0.055011850218308754 +149862,749.3100000047506,-0.05501179708471672 +149863,749.3150000047507,-0.05501174394909594 +149864,749.3200000047508,-0.055011690811446384 +149865,749.3250000047509,-0.05501163767176802 +149866,749.330000004751,-0.055011584530060775 +149867,749.3350000047511,-0.05501153138632462 +149868,749.3400000047512,-0.0550114782405595 +149869,749.3450000047513,-0.05501142509276538 +149870,749.3500000047515,-0.05501137194294222 +149871,749.3550000047516,-0.05501131879108996 +149872,749.3600000047517,-0.05501126563720857 +149873,749.3650000047518,-0.05501121248129799 +149874,749.3700000047519,-0.0550111593233582 +149875,749.375000004752,-0.05501110616338913 +149876,749.3800000047521,-0.05501105300139075 +149877,749.3850000047522,-0.05501099983736302 +149878,749.3900000047523,-0.05501094667130588 +149879,749.3950000047524,-0.0550108935032193 +149880,749.4000000047525,-0.05501084033310322 +149881,749.4050000047527,-0.05501078716095761 +149882,749.4100000047528,-0.05501073398678241 +149883,749.4150000047529,-0.055010680810577584 +149884,749.420000004753,-0.05501062763234309 +149885,749.4250000047531,-0.05501057445207889 +149886,749.4300000047532,-0.055010521269784916 +149887,749.4350000047533,-0.055010468085461145 +149888,749.4400000047534,-0.05501041489910752 +149889,749.4450000047535,-0.055010361710724 +149890,749.4500000047536,-0.055010308520310545 +149891,749.4550000047537,-0.055010255327867116 +149892,749.4600000047539,-0.05501020213339365 +149893,749.465000004754,-0.0550101489368901 +149894,749.4700000047541,-0.055010095738356454 +149895,749.4750000047542,-0.05501004253779263 +149896,749.4800000047543,-0.0550099893351986 +149897,749.4850000047544,-0.05500993613057432 +149898,749.4900000047545,-0.05500988292391975 +149899,749.4950000047546,-0.05500982971523483 +149900,749.5000000047547,-0.05500977650451952 +149901,749.5050000047548,-0.05500972329177378 +149902,749.5100000047549,-0.055009670076997565 +149903,749.515000004755,-0.05500961686019083 +149904,749.5200000047552,-0.05500956364135354 +149905,749.5250000047553,-0.05500951042048563 +149906,749.5300000047554,-0.055009457197587056 +149907,749.5350000047555,-0.05500940397265778 +149908,749.5400000047556,-0.05500935074569776 +149909,749.5450000047557,-0.055009297516706954 +149910,749.5500000047558,-0.055009244285685314 +149911,749.5550000047559,-0.055009191052632786 +149912,749.560000004756,-0.05500913781754935 +149913,749.5650000047561,-0.05500908458043493 +149914,749.5700000047563,-0.05500903134128949 +149915,749.5750000047564,-0.05500897810011299 +149916,749.5800000047565,-0.05500892485690538 +149917,749.5850000047566,-0.05500887161166662 +149918,749.5900000047567,-0.055008818364396674 +149919,749.5950000047568,-0.05500876511509549 +149920,749.6000000047569,-0.055008711863763014 +149921,749.605000004757,-0.0550086586103992 +149922,749.6100000047571,-0.05500860535500401 +149923,749.6150000047572,-0.05500855209757739 +149924,749.6200000047573,-0.05500849883811931 +149925,749.6250000047575,-0.055008445576629726 +149926,749.6300000047576,-0.05500839231310858 +149927,749.6350000047577,-0.055008339047555824 +149928,749.6400000047578,-0.05500828577997143 +149929,749.6450000047579,-0.055008232510355345 +149930,749.650000004758,-0.055008179238707516 +149931,749.6550000047581,-0.0550081259650279 +149932,749.6600000047582,-0.05500807268931646 +149933,749.6650000047583,-0.05500801941157315 +149934,749.6700000047584,-0.055007966131797904 +149935,749.6750000047585,-0.0550079128499907 +149936,749.6800000047587,-0.0550078595661515 +149937,749.6850000047588,-0.05500780628028022 +149938,749.6900000047589,-0.055007752992376854 +149939,749.695000004759,-0.05500769970244134 +149940,749.7000000047591,-0.05500764641047364 +149941,749.7050000047592,-0.0550075931164737 +149942,749.7100000047593,-0.05500753982044148 +149943,749.7150000047594,-0.05500748652237692 +149944,749.7200000047595,-0.05500743322228 +149945,749.7250000047596,-0.05500737992015066 +149946,749.7300000047597,-0.055007326615988845 +149947,749.7350000047599,-0.055007273309794526 +149948,749.74000000476,-0.05500722000156766 +149949,749.7450000047601,-0.05500716669130819 +149950,749.7500000047602,-0.055007113379016065 +149951,749.7550000047603,-0.05500706006469125 +149952,749.7600000047604,-0.0550070067483337 +149953,749.7650000047605,-0.05500695342994337 +149954,749.7700000047606,-0.0550069001095202 +149955,749.7750000047607,-0.055006846787064176 +149956,749.7800000047608,-0.05500679346257523 +149957,749.785000004761,-0.05500674013605331 +149958,749.790000004761,-0.05500668680749839 +149959,749.7950000047612,-0.05500663347691039 +149960,749.8000000047613,-0.055006580144289316 +149961,749.8050000047614,-0.055006526809635095 +149962,749.8100000047615,-0.05500647347294766 +149963,749.8150000047616,-0.055006420134227 +149964,749.8200000047617,-0.05500636679347305 +149965,749.8250000047618,-0.05500631345068578 +149966,749.8300000047619,-0.055006260105865123 +149967,749.835000004762,-0.05500620675901105 +149968,749.8400000047621,-0.05500615341012352 +149969,749.8450000047623,-0.05500610005920247 +149970,749.8500000047624,-0.05500604670624786 +149971,749.8550000047625,-0.05500599335125965 +149972,749.8600000047626,-0.05500593999423778 +149973,749.8650000047627,-0.05500588663518222 +149974,749.8700000047628,-0.055005833274092926 +149975,749.8750000047629,-0.05500577991096984 +149976,749.880000004763,-0.05500572654581291 +149977,749.8850000047631,-0.05500567317862211 +149978,749.8900000047632,-0.055005619809397374 +149979,749.8950000047633,-0.05500556643813867 +149980,749.9000000047635,-0.05500551306484596 +149981,749.9050000047636,-0.055005459689519184 +149982,749.9100000047637,-0.0550054063121583 +149983,749.9150000047638,-0.05500535293276326 +149984,749.9200000047639,-0.05500529955133402 +149985,749.925000004764,-0.05500524616787054 +149986,749.9300000047641,-0.05500519278237276 +149987,749.9350000047642,-0.05500513939484064 +149988,749.9400000047643,-0.05500508600527414 +149989,749.9450000047644,-0.05500503261367321 +149990,749.9500000047645,-0.055004979220037796 +149991,749.9550000047647,-0.055004925824367876 +149992,749.9600000047648,-0.05500487242666338 +149993,749.9650000047649,-0.055004819026924265 +149994,749.970000004765,-0.0550047656251505 +149995,749.9750000047651,-0.05500471222134202 +149996,749.9800000047652,-0.055004658815498784 +149997,749.9850000047653,-0.05500460540762076 +149998,749.9900000047654,-0.05500455199770788 +149999,749.9950000047655,-0.05500449858576012 +150000,750.0000000047656,-0.05500444517177742 +150001,750.0050000047657,-0.055004391755759725 +150002,750.0100000047659,-0.055004338337707015 +150003,750.015000004766,-0.05500428491761922 +150004,750.0200000047661,-0.0550042314954963 +150005,750.0250000047662,-0.05500417807133822 +150006,750.0300000047663,-0.055004124645144925 +150007,750.0350000047664,-0.055004071216916375 +150008,750.0400000047665,-0.05500401778665251 +150009,750.0450000047666,-0.0550039643543533 +150010,750.0500000047667,-0.05500391092001868 +150011,750.0550000047668,-0.05500385748364863 +150012,750.060000004767,-0.05500380404524309 +150013,750.0650000047671,-0.055003750604802 +150014,750.0700000047672,-0.055003697162325324 +150015,750.0750000047673,-0.05500364371781302 +150016,750.0800000047674,-0.05500359027126504 +150017,750.0850000047675,-0.05500353682268134 +150018,750.0900000047676,-0.055003483372061866 +150019,750.0950000047677,-0.055003429919406585 +150020,750.1000000047678,-0.05500337646471543 +150021,750.1050000047679,-0.055003323007988374 +150022,750.110000004768,-0.05500326954922535 +150023,750.1150000047681,-0.05500321608842634 +150024,750.1200000047683,-0.055003162625591275 +150025,750.1250000047684,-0.05500310916072012 +150026,750.1300000047685,-0.055003055693812815 +150027,750.1350000047686,-0.05500300222486932 +150028,750.1400000047687,-0.0550029487538896 +150029,750.1450000047688,-0.055002895280873605 +150030,750.1500000047689,-0.055002841805821275 +150031,750.155000004769,-0.05500278832873258 +150032,750.1600000047691,-0.05500273484960745 +150033,750.1650000047692,-0.05500268136844586 +150034,750.1700000047693,-0.05500262788524776 +150035,750.1750000047695,-0.055002574400013104 +150036,750.1800000047696,-0.05500252091274183 +150037,750.1850000047697,-0.05500246742343391 +150038,750.1900000047698,-0.05500241393208928 +150039,750.1950000047699,-0.05500236043870791 +150040,750.20000000477,-0.05500230694328975 +150041,750.2050000047701,-0.05500225344583475 +150042,750.2100000047702,-0.055002199946342874 +150043,750.2150000047703,-0.05500214644481405 +150044,750.2200000047704,-0.055002092941248235 +150045,750.2250000047705,-0.055002039435645404 +150046,750.2300000047707,-0.055001985928005495 +150047,750.2350000047708,-0.05500193241832848 +150048,750.2400000047709,-0.055001878906614295 +150049,750.245000004771,-0.055001825392862885 +150050,750.2500000047711,-0.055001771877074224 +150051,750.2550000047712,-0.05500171835924825 +150052,750.2600000047713,-0.055001664839384914 +150053,750.2650000047714,-0.05500161131748419 +150054,750.2700000047715,-0.05500155779354601 +150055,750.2750000047716,-0.05500150426757034 +150056,750.2800000047718,-0.05500145073955713 +150057,750.2850000047719,-0.055001397209506336 +150058,750.290000004772,-0.05500134367741791 +150059,750.2950000047721,-0.05500129014329178 +150060,750.3000000047722,-0.05500123660712794 +150061,750.3050000047723,-0.05500118306892631 +150062,750.3100000047724,-0.05500112952868686 +150063,750.3150000047725,-0.05500107598640955 +150064,750.3200000047726,-0.05500102244209431 +150065,750.3250000047727,-0.05500096889574111 +150066,750.3300000047728,-0.0550009153473499 +150067,750.335000004773,-0.05500086179692063 +150068,750.3400000047731,-0.05500080824445327 +150069,750.3450000047732,-0.055000754689947744 +150070,750.3500000047733,-0.05500070113340402 +150071,750.3550000047734,-0.05500064757482206 +150072,750.3600000047735,-0.0550005940142018 +150073,750.3650000047736,-0.05500054045154319 +150074,750.3700000047737,-0.0550004868868462 +150075,750.3750000047738,-0.05500043332011077 +150076,750.3800000047739,-0.05500037975133687 +150077,750.385000004774,-0.055000326180524424 +150078,750.3900000047742,-0.05500027260767341 +150079,750.3950000047743,-0.05500021903278378 +150080,750.4000000047744,-0.05500016545585547 +150081,750.4050000047745,-0.05500011187688844 +150082,750.4100000047746,-0.055000058295882656 +150083,750.4150000047747,-0.05500000471283805 +150084,750.4200000047748,-0.05499995112775458 +150085,750.4250000047749,-0.05499989754063222 +150086,750.430000004775,-0.054999843951470895 +150087,750.4350000047751,-0.05499979036027057 +150088,750.4400000047752,-0.054999736767031196 +150089,750.4450000047754,-0.05499968317175274 +150090,750.4500000047755,-0.05499962957443513 +150091,750.4550000047756,-0.05499957597507833 +150092,750.4600000047757,-0.054999522373682296 +150093,750.4650000047758,-0.05499946877024698 +150094,750.4700000047759,-0.05499941516477232 +150095,750.475000004776,-0.054999361557258285 +150096,750.4800000047761,-0.05499930794770482 +150097,750.4850000047762,-0.05499925433611189 +150098,750.4900000047763,-0.05499920072247943 +150099,750.4950000047764,-0.0549991471068074 +150100,750.5000000047766,-0.054999093489095756 +150101,750.5050000047767,-0.05499903986934444 +150102,750.5100000047768,-0.05499898624755342 +150103,750.5150000047769,-0.054998932623722636 +150104,750.520000004777,-0.054998878997852045 +150105,750.5250000047771,-0.0549988253699416 +150106,750.5300000047772,-0.054998771739991244 +150107,750.5350000047773,-0.054998718108000944 +150108,750.5400000047774,-0.05499866447397065 +150109,750.5450000047775,-0.0549986108379003 +150110,750.5500000047776,-0.054998557199789876 +150111,750.5550000047778,-0.054998503559639304 +150112,750.5600000047779,-0.05499844991744854 +150113,750.565000004778,-0.05499839627321754 +150114,750.5700000047781,-0.05499834262694626 +150115,750.5750000047782,-0.05499828897863465 +150116,750.5800000047783,-0.054998235328282664 +150117,750.5850000047784,-0.05499818167589024 +150118,750.5900000047785,-0.05499812802145735 +150119,750.5950000047786,-0.05499807436498394 +150120,750.6000000047787,-0.05499802070646996 +150121,750.6050000047788,-0.054997967045915364 +150122,750.610000004779,-0.0549979133833201 +150123,750.6150000047791,-0.054997859718684115 +150124,750.6200000047792,-0.05499780605200738 +150125,750.6250000047793,-0.054997752383289834 +150126,750.6300000047794,-0.054997698712531434 +150127,750.6350000047795,-0.05499764503973212 +150128,750.6400000047796,-0.054997591364891865 +150129,750.6450000047797,-0.0549975376880106 +150130,750.6500000047798,-0.0549974840090883 +150131,750.6550000047799,-0.054997430328124895 +150132,750.66000000478,-0.054997376645120354 +150133,750.6650000047802,-0.05499732296007461 +150134,750.6700000047803,-0.05499726927298764 +150135,750.6750000047804,-0.05499721558385937 +150136,750.6800000047805,-0.05499716189268978 +150137,750.6850000047806,-0.05499710819947879 +150138,750.6900000047807,-0.054997054504226386 +150139,750.6950000047808,-0.05499700080693249 +150140,750.7000000047809,-0.05499694710759708 +150141,750.705000004781,-0.05499689340622008 +150142,750.7100000047811,-0.05499683970280147 +150143,750.7150000047812,-0.05499678599734118 +150144,750.7200000047814,-0.05499673228983917 +150145,750.7250000047815,-0.054996678580295395 +150146,750.7300000047816,-0.0549966248687098 +150147,750.7350000047817,-0.05499657115508235 +150148,750.7400000047818,-0.05499651743941299 +150149,750.7450000047819,-0.05499646372170166 +150150,750.750000004782,-0.05499641000194833 +150151,750.7550000047821,-0.05499635628015295 +150152,750.7600000047822,-0.054996302556315456 +150153,750.7650000047823,-0.05499624883043582 +150154,750.7700000047824,-0.05499619510251398 +150155,750.7750000047826,-0.054996141372549885 +150156,750.7800000047827,-0.05499608764054349 +150157,750.7850000047828,-0.05499603390649476 +150158,750.7900000047829,-0.05499598017040363 +150159,750.795000004783,-0.054995926432270054 +150160,750.8000000047831,-0.054995872692093994 +150161,750.8050000047832,-0.0549958189498754 +150162,750.8100000047833,-0.05499576520561422 +150163,750.8150000047834,-0.0549957114593104 +150164,750.8200000047835,-0.054995657710963895 +150165,750.8250000047836,-0.05499560396057466 +150166,750.8300000047838,-0.054995550208142646 +150167,750.8350000047839,-0.054995496453667796 +150168,750.840000004784,-0.054995442697150086 +150169,750.8450000047841,-0.05499538893858944 +150170,750.8500000047842,-0.05499533517798583 +150171,750.8550000047843,-0.05499528141533918 +150172,750.8600000047844,-0.05499522765064947 +150173,750.8650000047845,-0.054995173883916636 +150174,750.8700000047846,-0.054995120115140635 +150175,750.8750000047847,-0.054995066344321414 +150176,750.8800000047848,-0.054995012571458946 +150177,750.885000004785,-0.05499495879655315 +150178,750.8900000047851,-0.05499490501960399 +150179,750.8950000047852,-0.054994851240611424 +150180,750.9000000047853,-0.05499479745957541 +150181,750.9050000047854,-0.05499474367649587 +150182,750.9100000047855,-0.05499468989137279 +150183,750.9150000047856,-0.054994636104206095 +150184,750.9200000047857,-0.05499458231499575 +150185,750.9250000047858,-0.05499452852374171 +150186,750.9300000047859,-0.054994474730443915 +150187,750.935000004786,-0.05499442093510231 +150188,750.9400000047862,-0.05499436713771688 +150189,750.9450000047863,-0.05499431333828754 +150190,750.9500000047864,-0.054994259536814256 +150191,750.9550000047865,-0.05499420573329698 +150192,750.9600000047866,-0.05499415192773566 +150193,750.9650000047867,-0.054994098120130244 +150194,750.9700000047868,-0.0549940443104807 +150195,750.9750000047869,-0.054993990498786956 +150196,750.980000004787,-0.05499393668504898 +150197,750.9850000047871,-0.054993882869266715 +150198,750.9900000047872,-0.05499382905144012 +150199,750.9950000047874,-0.054993775231569134 +150200,751.0000000047875,-0.054993721409653716 +150201,751.0050000047876,-0.05499366758569383 +150202,751.0100000047877,-0.0549936137596894 +150203,751.0150000047878,-0.054993559931640394 +150204,751.0200000047879,-0.054993506101546755 +150205,751.025000004788,-0.05499345226940845 +150206,751.0300000047881,-0.05499339843522542 +150207,751.0350000047882,-0.054993344598997594 +150208,751.0400000047883,-0.05499329076072496 +150209,751.0450000047884,-0.05499323692040745 +150210,751.0500000047886,-0.05499318307804502 +150211,751.0550000047887,-0.05499312923363762 +150212,751.0600000047888,-0.0549930753871852 +150213,751.0650000047889,-0.054993021538687716 +150214,751.070000004789,-0.0549929676881451 +150215,751.0750000047891,-0.054992913835557315 +150216,751.0800000047892,-0.054992859980924326 +150217,751.0850000047893,-0.05499280612424606 +150218,751.0900000047894,-0.054992752265522485 +150219,751.0950000047895,-0.05499269840475356 +150220,751.1000000047896,-0.0549926445419392 +150221,751.1050000047898,-0.05499259067707939 +150222,751.1100000047899,-0.054992536810174075 +150223,751.11500000479,-0.054992482941223185 +150224,751.1200000047901,-0.054992429070226695 +150225,751.1250000047902,-0.05499237519718454 +150226,751.1300000047903,-0.054992321322096686 +150227,751.1350000047904,-0.05499226744496308 +150228,751.1400000047905,-0.05499221356578366 +150229,751.1450000047906,-0.05499215968455839 +150230,751.1500000047907,-0.05499210580128721 +150231,751.1550000047908,-0.054992051915970085 +150232,751.160000004791,-0.054991998028606943 +150233,751.1650000047911,-0.05499194413919776 +150234,751.1700000047912,-0.05499189024774246 +150235,751.1750000047913,-0.05499183635424102 +150236,751.1800000047914,-0.05499178245869338 +150237,751.1850000047915,-0.0549917285610995 +150238,751.1900000047916,-0.0549916746614593 +150239,751.1950000047917,-0.05499162075977276 +150240,751.2000000047918,-0.05499156685603983 +150241,751.2050000047919,-0.054991512950260446 +150242,751.210000004792,-0.054991459042434555 +150243,751.2150000047922,-0.05499140513256212 +150244,751.2200000047923,-0.054991351220643095 +150245,751.2250000047924,-0.05499129730667743 +150246,751.2300000047925,-0.054991243390665065 +150247,751.2350000047926,-0.05499118947260596 +150248,751.2400000047927,-0.054991135552500056 +150249,751.2450000047928,-0.05499108163034731 +150250,751.2500000047929,-0.05499102770614768 +150251,751.255000004793,-0.0549909737799011 +150252,751.2600000047931,-0.05499091985160751 +150253,751.2650000047933,-0.0549908659212669 +150254,751.2700000047934,-0.0549908119888792 +150255,751.2750000047935,-0.05499075805444436 +150256,751.2800000047936,-0.05499070411796232 +150257,751.2850000047937,-0.05499065017943305 +150258,751.2900000047938,-0.054990596238856486 +150259,751.2950000047939,-0.05499054229623258 +150260,751.300000004794,-0.054990488351561284 +150261,751.3050000047941,-0.054990434404842546 +150262,751.3100000047942,-0.05499038045607633 +150263,751.3150000047943,-0.05499032650526256 +150264,751.3200000047945,-0.05499027255240121 +150265,751.3250000047946,-0.054990218597492216 +150266,751.3300000047947,-0.05499016464053554 +150267,751.3350000047948,-0.054990110681531125 +150268,751.3400000047949,-0.05499005672047892 +150269,751.345000004795,-0.05499000275737889 +150270,751.3500000047951,-0.054989948792230965 +150271,751.3550000047952,-0.05498989482503511 +150272,751.3600000047953,-0.054989840855791255 +150273,751.3650000047954,-0.05498978688449938 +150274,751.3700000047955,-0.05498973291115941 +150275,751.3750000047957,-0.05498967893577131 +150276,751.3800000047958,-0.054989624958335016 +150277,751.3850000047959,-0.05498957097885048 +150278,751.390000004796,-0.05498951699731767 +150279,751.3950000047961,-0.054989463013736514 +150280,751.4000000047962,-0.05498940902810698 +150281,751.4050000047963,-0.054989355040429004 +150282,751.4100000047964,-0.05498930105070255 +150283,751.4150000047965,-0.05498924705892756 +150284,751.4200000047966,-0.054989193065103976 +150285,751.4250000047967,-0.05498913906923176 +150286,751.4300000047969,-0.05498908507131085 +150287,751.435000004797,-0.05498903107134122 +150288,751.4400000047971,-0.0549889770693228 +150289,751.4450000047972,-0.05498892306525553 +150290,751.4500000047973,-0.05498886905913939 +150291,751.4550000047974,-0.05498881505097431 +150292,751.4600000047975,-0.05498876104076024 +150293,751.4650000047976,-0.05498870702849713 +150294,751.4700000047977,-0.054988653014184936 +150295,751.4750000047978,-0.0549885989978236 +150296,751.480000004798,-0.05498854497941308 +150297,751.485000004798,-0.05498849095895332 +150298,751.4900000047982,-0.05498843693644428 +150299,751.4950000047983,-0.054988382911885895 +150300,751.5000000047984,-0.054988328885278125 +150301,751.5050000047985,-0.05498827485662092 +150302,751.5100000047986,-0.054988220825914216 +150303,751.5150000047987,-0.054988166793157975 +150304,751.5200000047988,-0.054988112758352144 +150305,751.5250000047989,-0.054988058721496674 +150306,751.530000004799,-0.05498800468259151 +150307,751.5350000047991,-0.05498795064163662 +150308,751.5400000047993,-0.05498789659863192 +150309,751.5450000047994,-0.054987842553577394 +150310,751.5500000047995,-0.05498778850647297 +150311,751.5550000047996,-0.054987734457318596 +150312,751.5600000047997,-0.05498768040611424 +150313,751.5650000047998,-0.054987626352859836 +150314,751.5700000047999,-0.05498757229755533 +150315,751.5750000048,-0.054987518240200685 +150316,751.5800000048001,-0.05498746418079586 +150317,751.5850000048002,-0.05498741011934077 +150318,751.5900000048003,-0.05498735605583539 +150319,751.5950000048005,-0.05498730199027966 +150320,751.6000000048006,-0.054987247922673545 +150321,751.6050000048007,-0.05498719385301698 +150322,751.6100000048008,-0.05498713978130991 +150323,751.6150000048009,-0.0549870857075523 +150324,751.620000004801,-0.05498703163174407 +150325,751.6250000048011,-0.054986977553885215 +150326,751.6300000048012,-0.05498692347397565 +150327,751.6350000048013,-0.05498686939201534 +150328,751.6400000048014,-0.054986815308004214 +150329,751.6450000048015,-0.054986761221942244 +150330,751.6500000048017,-0.054986707133829374 +150331,751.6550000048018,-0.05498665304366554 +150332,751.6600000048019,-0.0549865989514507 +150333,751.665000004802,-0.054986544857184814 +150334,751.6700000048021,-0.05498649076086781 +150335,751.6750000048022,-0.05498643666249966 +150336,751.6800000048023,-0.05498638256208029 +150337,751.6850000048024,-0.054986328459609685 +150338,751.6900000048025,-0.05498627435508776 +150339,751.6950000048026,-0.054986220248514475 +150340,751.7000000048027,-0.054986166139889776 +150341,751.7050000048029,-0.054986112029213614 +150342,751.710000004803,-0.054986057916485934 +150343,751.7150000048031,-0.054986003801706686 +150344,751.7200000048032,-0.054985949684875836 +150345,751.7250000048033,-0.05498589556599332 +150346,751.7300000048034,-0.05498584144505908 +150347,751.7350000048035,-0.05498578732207308 +150348,751.7400000048036,-0.05498573319703526 +150349,751.7450000048037,-0.054985679069945566 +150350,751.7500000048038,-0.054985624940803945 +150351,751.755000004804,-0.05498557080961037 +150352,751.760000004804,-0.054985516676364754 +150353,751.7650000048042,-0.05498546254106708 +150354,751.7700000048043,-0.054985408403717274 +150355,751.7750000048044,-0.05498535426431529 +150356,751.7800000048045,-0.054985300122861076 +150357,751.7850000048046,-0.054985245979354586 +150358,751.7900000048047,-0.05498519183379577 +150359,751.7950000048048,-0.05498513768618457 +150360,751.8000000048049,-0.05498508353652095 +150361,751.805000004805,-0.05498502938480483 +150362,751.8100000048051,-0.05498497523103619 +150363,751.8150000048053,-0.05498492107521496 +150364,751.8200000048054,-0.05498486691734109 +150365,751.8250000048055,-0.05498481275741455 +150366,751.8300000048056,-0.05498475859543525 +150367,751.8350000048057,-0.05498470443140317 +150368,751.8400000048058,-0.05498465026531825 +150369,751.8450000048059,-0.05498459609718044 +150370,751.850000004806,-0.05498454192698969 +150371,751.8550000048061,-0.054984487754745945 +150372,751.8600000048062,-0.05498443358044915 +150373,751.8650000048063,-0.05498437940409926 +150374,751.8700000048065,-0.05498432522569621 +150375,751.8750000048066,-0.054984271045239966 +150376,751.8800000048067,-0.054984216862730466 +150377,751.8850000048068,-0.054984162678167664 +150378,751.8900000048069,-0.05498410849155151 +150379,751.895000004807,-0.054984054302881946 +150380,751.9000000048071,-0.054984000112158926 +150381,751.9050000048072,-0.054983945919382396 +150382,751.9100000048073,-0.05498389172455231 +150383,751.9150000048074,-0.05498383752766861 +150384,751.9200000048075,-0.05498378332873125 +150385,751.9250000048077,-0.054983729127740175 +150386,751.9300000048078,-0.05498367492469534 +150387,751.9350000048079,-0.05498362071959667 +150388,751.940000004808,-0.05498356651244414 +150389,751.9450000048081,-0.05498351230323769 +150390,751.9500000048082,-0.05498345809197727 +150391,751.9550000048083,-0.054983403878662816 +150392,751.9600000048084,-0.054983349663294295 +150393,751.9650000048085,-0.05498329544587163 +150394,751.9700000048086,-0.054983241226394794 +150395,751.9750000048087,-0.05498318700486374 +150396,751.9800000048089,-0.054983132781278386 +150397,751.985000004809,-0.0549830785556387 +150398,751.9900000048091,-0.054983024327944635 +150399,751.9950000048092,-0.05498297009819614 +150400,752.0000000048093,-0.054982915866393145 +150401,752.0050000048094,-0.0549828616325356 +150402,752.0100000048095,-0.05498280739662347 +150403,752.0150000048096,-0.054982753158656694 +150404,752.0200000048097,-0.05498269891863522 +150405,752.0250000048098,-0.05498264467655901 +150406,752.03000000481,-0.05498259043242799 +150407,752.0350000048101,-0.05498253618624212 +150408,752.0400000048102,-0.05498248193800134 +150409,752.0450000048103,-0.05498242768770561 +150410,752.0500000048104,-0.05498237343535487 +150411,752.0550000048105,-0.05498231918094908 +150412,752.0600000048106,-0.05498226492448816 +150413,752.0650000048107,-0.054982210665972094 +150414,752.0700000048108,-0.0549821564054008 +150415,752.0750000048109,-0.05498210214277424 +150416,752.080000004811,-0.05498204787809236 +150417,752.0850000048111,-0.05498199361135511 +150418,752.0900000048113,-0.054981939342562444 +150419,752.0950000048114,-0.0549818850717143 +150420,752.1000000048115,-0.05498183079881064 +150421,752.1050000048116,-0.05498177652385138 +150422,752.1100000048117,-0.0549817222468365 +150423,752.1150000048118,-0.05498166796776593 +150424,752.1200000048119,-0.05498161368663962 +150425,752.125000004812,-0.054981559403457524 +150426,752.1300000048121,-0.05498150511821959 +150427,752.1350000048122,-0.05498145083092577 +150428,752.1400000048124,-0.05498139654157599 +150429,752.1450000048125,-0.05498134225017023 +150430,752.1500000048126,-0.05498128795670842 +150431,752.1550000048127,-0.0549812336611905 +150432,752.1600000048128,-0.054981179363616434 +150433,752.1650000048129,-0.054981125063986155 +150434,752.170000004813,-0.054981070762299626 +150435,752.1750000048131,-0.05498101645855678 +150436,752.1800000048132,-0.05498096215275757 +150437,752.1850000048133,-0.05498090784490195 +150438,752.1900000048134,-0.05498085353498986 +150439,752.1950000048136,-0.05498079922302125 +150440,752.2000000048137,-0.05498074490899607 +150441,752.2050000048138,-0.05498069059291427 +150442,752.2100000048139,-0.05498063627477579 +150443,752.215000004814,-0.05498058195458059 +150444,752.2200000048141,-0.0549805276323286 +150445,752.2250000048142,-0.054980473308019785 +150446,752.2300000048143,-0.05498041898165407 +150447,752.2350000048144,-0.05498036465323142 +150448,752.2400000048145,-0.05498031032275178 +150449,752.2450000048146,-0.0549802559902151 +150450,752.2500000048148,-0.054980201655621314 +150451,752.2550000048149,-0.054980147318970385 +150452,752.260000004815,-0.054980092980262255 +150453,752.2650000048151,-0.05498003863949687 +150454,752.2700000048152,-0.054979984296674174 +150455,752.2750000048153,-0.05497992995179413 +150456,752.2800000048154,-0.054979875604856676 +150457,752.2850000048155,-0.054979821255861754 +150458,752.2900000048156,-0.05497976690480931 +150459,752.2950000048157,-0.05497971255169931 +150460,752.3000000048158,-0.054979658196531674 +150461,752.305000004816,-0.05497960383930636 +150462,752.3100000048161,-0.054979549480023336 +150463,752.3150000048162,-0.054979495118682525 +150464,752.3200000048163,-0.054979440755283875 +150465,752.3250000048164,-0.05497938638982734 +150466,752.3300000048165,-0.05497933202231287 +150467,752.3350000048166,-0.05497927765274041 +150468,752.3400000048167,-0.054979223281109914 +150469,752.3450000048168,-0.054979168907421314 +150470,752.3500000048169,-0.054979114531674554 +150471,752.355000004817,-0.0549790601538696 +150472,752.3600000048172,-0.0549790057740064 +150473,752.3650000048173,-0.054978951392084884 +150474,752.3700000048174,-0.05497889700810501 +150475,752.3750000048175,-0.054978842622066725 +150476,752.3800000048176,-0.05497878823396997 +150477,752.3850000048177,-0.054978733843814694 +150478,752.3900000048178,-0.05497867945160084 +150479,752.3950000048179,-0.054978625057328374 +150480,752.400000004818,-0.05497857066099722 +150481,752.4050000048181,-0.054978516262607344 +150482,752.4100000048182,-0.054978461862158684 +150483,752.4150000048184,-0.05497840745965118 +150484,752.4200000048185,-0.054978353055084785 +150485,752.4250000048186,-0.05497829864845945 +150486,752.4300000048187,-0.05497824423977511 +150487,752.4350000048188,-0.05497818982903172 +150488,752.4400000048189,-0.054978135416229236 +150489,752.445000004819,-0.0549780810013676 +150490,752.4500000048191,-0.054978026584446754 +150491,752.4550000048192,-0.05497797216546664 +150492,752.4600000048193,-0.054977917744427215 +150493,752.4650000048194,-0.05497786332132842 +150494,752.4700000048196,-0.054977808896170204 +150495,752.4750000048197,-0.05497775446895251 +150496,752.4800000048198,-0.05497770003967529 +150497,752.4850000048199,-0.054977645608338475 +150498,752.49000000482,-0.05497759117494205 +150499,752.4950000048201,-0.05497753673948593 +150500,752.5000000048202,-0.054977482301970075 +150501,752.5050000048203,-0.05497742786239441 +150502,752.5100000048204,-0.05497737342075891 +150503,752.5150000048205,-0.054977318977063504 +150504,752.5200000048206,-0.05497726453130814 +150505,752.5250000048208,-0.05497721008349277 +150506,752.5300000048209,-0.054977155633617346 +150507,752.535000004821,-0.0549771011816818 +150508,752.5400000048211,-0.05497704672768609 +150509,752.5450000048212,-0.05497699227163015 +150510,752.5500000048213,-0.05497693781351394 +150511,752.5550000048214,-0.05497688335333741 +150512,752.5600000048215,-0.0549768288911005 +150513,752.5650000048216,-0.05497677442680315 +150514,752.5700000048217,-0.05497671996044531 +150515,752.5750000048218,-0.05497666549202693 +150516,752.580000004822,-0.05497661102154795 +150517,752.5850000048221,-0.054976556549008335 +150518,752.5900000048222,-0.054976502074408004 +150519,752.5950000048223,-0.054976447597746926 +150520,752.6000000048224,-0.05497639311902503 +150521,752.6050000048225,-0.054976338638242285 +150522,752.6100000048226,-0.05497628415539862 +150523,752.6150000048227,-0.05497622967049398 +150524,752.6200000048228,-0.05497617518352831 +150525,752.6250000048229,-0.05497612069450158 +150526,752.630000004823,-0.05497606620341369 +150527,752.6350000048232,-0.05497601171026463 +150528,752.6400000048233,-0.054975957215054334 +150529,752.6450000048234,-0.05497590271778274 +150530,752.6500000048235,-0.054975848218449815 +150531,752.6550000048236,-0.05497579371705548 +150532,752.6600000048237,-0.054975739213599696 +150533,752.6650000048238,-0.054975684708082395 +150534,752.6700000048239,-0.054975630200503535 +150535,752.675000004824,-0.05497557569086305 +150536,752.6800000048241,-0.05497552117916091 +150537,752.6850000048242,-0.05497546666539704 +150538,752.6900000048244,-0.0549754121495714 +150539,752.6950000048245,-0.05497535763168392 +150540,752.7000000048246,-0.05497530311173456 +150541,752.7050000048247,-0.05497524858972327 +150542,752.7100000048248,-0.05497519406564998 +150543,752.7150000048249,-0.05497513953951463 +150544,752.720000004825,-0.05497508501131719 +150545,752.7250000048251,-0.054975030481057605 +150546,752.7300000048252,-0.05497497594873581 +150547,752.7350000048253,-0.05497492141435174 +150548,752.7400000048254,-0.05497486687790536 +150549,752.7450000048256,-0.054974812339396606 +150550,752.7500000048257,-0.054974757798825435 +150551,752.7550000048258,-0.05497470325619179 +150552,752.7600000048259,-0.054974648711495606 +150553,752.765000004826,-0.05497459416473683 +150554,752.7700000048261,-0.05497453961591542 +150555,752.7750000048262,-0.05497448506503132 +150556,752.7800000048263,-0.054974430512084456 +150557,752.7850000048264,-0.0549743759570748 +150558,752.7900000048265,-0.05497432140000228 +150559,752.7950000048266,-0.05497426684086685 +150560,752.8000000048268,-0.05497421227966845 +150561,752.8050000048269,-0.054974157716407034 +150562,752.810000004827,-0.054974103151082546 +150563,752.8150000048271,-0.05497404858369492 +150564,752.8200000048272,-0.054973994014244125 +150565,752.8250000048273,-0.05497393944273009 +150566,752.8300000048274,-0.05497388486915276 +150567,752.8350000048275,-0.054973830293512084 +150568,752.8400000048276,-0.054973775715808006 +150569,752.8450000048277,-0.05497372113604048 +150570,752.8500000048278,-0.05497366655420945 +150571,752.855000004828,-0.05497361197031485 +150572,752.8600000048281,-0.05497355738435662 +150573,752.8650000048282,-0.05497350279633473 +150574,752.8700000048283,-0.054973448206249116 +150575,752.8750000048284,-0.05497339361409972 +150576,752.8800000048285,-0.054973339019886484 +150577,752.8850000048286,-0.05497328442360936 +150578,752.8900000048287,-0.05497322982526829 +150579,752.8950000048288,-0.054973175224863224 +150580,752.9000000048289,-0.05497312062239411 +150581,752.905000004829,-0.054973066017860873 +150582,752.9100000048292,-0.054973011411263484 +150583,752.9150000048293,-0.05497295680260187 +150584,752.9200000048294,-0.05497290219187599 +150585,752.9250000048295,-0.054972847579085785 +150586,752.9300000048296,-0.05497279296423119 +150587,752.9350000048297,-0.05497273834731216 +150588,752.9400000048298,-0.05497268372832865 +150589,752.9450000048299,-0.05497262910728058 +150590,752.95000000483,-0.054972574484167924 +150591,752.9550000048301,-0.05497251985899061 +150592,752.9600000048302,-0.05497246523174859 +150593,752.9650000048304,-0.0549724106024418 +150594,752.9700000048305,-0.05497235597107019 +150595,752.9750000048306,-0.054972301337633714 +150596,752.9800000048307,-0.0549722467021323 +150597,752.9850000048308,-0.054972192064565904 +150598,752.9900000048309,-0.054972137424934474 +150599,752.995000004831,-0.05497208278323795 +150600,753.0000000048311,-0.054972028139476284 +150601,753.0050000048312,-0.05497197349364941 +150602,753.0100000048313,-0.054971918845757285 +150603,753.0150000048314,-0.05497186419579985 +150604,753.0200000048316,-0.05497180954377704 +150605,753.0250000048317,-0.05497175488968881 +150606,753.0300000048318,-0.054971700233535106 +150607,753.0350000048319,-0.054971645575315864 +150608,753.040000004832,-0.05497159091503103 +150609,753.0450000048321,-0.054971536252680565 +150610,753.0500000048322,-0.0549714815882644 +150611,753.0550000048323,-0.05497142692178248 +150612,753.0600000048324,-0.054971372253234764 +150613,753.0650000048325,-0.054971317582621186 +150614,753.0700000048327,-0.054971262909941684 +150615,753.0750000048328,-0.05497120823519622 +150616,753.0800000048329,-0.054971153558384715 +150617,753.085000004833,-0.05497109887950712 +150618,753.0900000048331,-0.054971044198563405 +150619,753.0950000048332,-0.05497098951555349 +150620,753.1000000048333,-0.05497093483047732 +150621,753.1050000048334,-0.05497088014333485 +150622,753.1100000048335,-0.05497082545412603 +150623,753.1150000048336,-0.05497077076285079 +150624,753.1200000048337,-0.05497071606950908 +150625,753.1250000048339,-0.05497066137410086 +150626,753.130000004834,-0.05497060667662605 +150627,753.1350000048341,-0.0549705519770846 +150628,753.1400000048342,-0.05497049727547646 +150629,753.1450000048343,-0.05497044257180159 +150630,753.1500000048344,-0.05497038786605991 +150631,753.1550000048345,-0.05497033315825137 +150632,753.1600000048346,-0.054970278448375924 +150633,753.1650000048347,-0.05497022373643351 +150634,753.1700000048348,-0.054970169022424076 +150635,753.1750000048349,-0.05497011430634755 +150636,753.180000004835,-0.05497005958820391 +150637,753.1850000048352,-0.05497000486799307 +150638,753.1900000048353,-0.05496995014571499 +150639,753.1950000048354,-0.05496989542136962 +150640,753.2000000048355,-0.054969840694956876 +150641,753.2050000048356,-0.054969785966476725 +150642,753.2100000048357,-0.054969731235929103 +150643,753.2150000048358,-0.054969676503313976 +150644,753.2200000048359,-0.05496962176863127 +150645,753.225000004836,-0.05496956703188093 +150646,753.2300000048361,-0.05496951229306289 +150647,753.2350000048363,-0.05496945755217712 +150648,753.2400000048364,-0.05496940280922354 +150649,753.2450000048365,-0.05496934806420211 +150650,753.2500000048366,-0.054969293317112776 +150651,753.2550000048367,-0.05496923856795547 +150652,753.2600000048368,-0.05496918381673014 +150653,753.2650000048369,-0.05496912906343673 +150654,753.270000004837,-0.05496907430807518 +150655,753.2750000048371,-0.054969019550645454 +150656,753.2800000048372,-0.05496896479114748 +150657,753.2850000048373,-0.05496891002958121 +150658,753.2900000048375,-0.054968855265946574 +150659,753.2950000048376,-0.05496880050024353 +150660,753.3000000048377,-0.05496874573247202 +150661,753.3050000048378,-0.05496869096263198 +150662,753.3100000048379,-0.05496863619072336 +150663,753.315000004838,-0.054968581416746105 +150664,753.3200000048381,-0.05496852664070016 +150665,753.3250000048382,-0.05496847186258547 +150666,753.3300000048383,-0.05496841708240199 +150667,753.3350000048384,-0.05496836230014962 +150668,753.3400000048385,-0.05496830751582836 +150669,753.3450000048387,-0.05496825272943812 +150670,753.3500000048388,-0.054968197940978854 +150671,753.3550000048389,-0.0549681431504505 +150672,753.360000004839,-0.05496808835785301 +150673,753.3650000048391,-0.05496803356318631 +150674,753.3700000048392,-0.054967978766450376 +150675,753.3750000048393,-0.05496792396764512 +150676,753.3800000048394,-0.05496786916677052 +150677,753.3850000048395,-0.05496781436382648 +150678,753.3900000048396,-0.05496775955881297 +150679,753.3950000048397,-0.05496770475172993 +150680,753.4000000048399,-0.054967649942577294 +150681,753.40500000484,-0.054967595131355025 +150682,753.4100000048401,-0.05496754031806306 +150683,753.4150000048402,-0.05496748550270132 +150684,753.4200000048403,-0.054967430685269776 +150685,753.4250000048404,-0.05496737586576836 +150686,753.4300000048405,-0.05496732104419702 +150687,753.4350000048406,-0.0549672662205557 +150688,753.4400000048407,-0.05496721139484434 +150689,753.4450000048408,-0.054967156567062886 +150690,753.450000004841,-0.05496710173721128 +150691,753.455000004841,-0.05496704690528947 +150692,753.4600000048412,-0.0549669920712974 +150693,753.4650000048413,-0.05496693723523501 +150694,753.4700000048414,-0.05496688239710224 +150695,753.4750000048415,-0.05496682755689904 +150696,753.4800000048416,-0.05496677271462535 +150697,753.4850000048417,-0.054966717870281116 +150698,753.4900000048418,-0.054966663023866276 +150699,753.4950000048419,-0.054966608175380786 +150700,753.500000004842,-0.05496655332482458 +150701,753.5050000048421,-0.05496649847219759 +150702,753.5100000048423,-0.05496644361749978 +150703,753.5150000048424,-0.05496638876073108 +150704,753.5200000048425,-0.05496633390189145 +150705,753.5250000048426,-0.05496627904098081 +150706,753.5300000048427,-0.05496622417799912 +150707,753.5350000048428,-0.054966169312946324 +150708,753.5400000048429,-0.054966114445822355 +150709,753.545000004843,-0.054966059576627174 +150710,753.5500000048431,-0.054966004705360706 +150711,753.5550000048432,-0.0549659498320229 +150712,753.5600000048433,-0.0549658949566137 +150713,753.5650000048435,-0.05496584007913305 +150714,753.5700000048436,-0.0549657851995809 +150715,753.5750000048437,-0.054965730317957165 +150716,753.5800000048438,-0.054965675434261826 +150717,753.5850000048439,-0.0549656205484948 +150718,753.590000004844,-0.05496556566065604 +150719,753.5950000048441,-0.0549655107707455 +150720,753.6000000048442,-0.05496545587876309 +150721,753.6050000048443,-0.05496540098470879 +150722,753.6100000048444,-0.054965346088582535 +150723,753.6150000048445,-0.05496529119038425 +150724,753.6200000048447,-0.05496523629011389 +150725,753.6250000048448,-0.05496518138777141 +150726,753.6300000048449,-0.054965126483356726 +150727,753.635000004845,-0.054965071576869806 +150728,753.6400000048451,-0.054965016668310586 +150729,753.6450000048452,-0.054964961757678996 +150730,753.6500000048453,-0.054964906844974994 +150731,753.6550000048454,-0.05496485193019851 +150732,753.6600000048455,-0.0549647970133495 +150733,753.6650000048456,-0.05496474209442791 +150734,753.6700000048457,-0.05496468717343366 +150735,753.6750000048459,-0.05496463225036672 +150736,753.680000004846,-0.05496457732522701 +150737,753.6850000048461,-0.0549645223980145 +150738,753.6900000048462,-0.0549644674687291 +150739,753.6950000048463,-0.05496441253737078 +150740,753.7000000048464,-0.054964357603939466 +150741,753.7050000048465,-0.05496430266843511 +150742,753.7100000048466,-0.05496424773085765 +150743,753.7150000048467,-0.054964192791207026 +150744,753.7200000048468,-0.054964137849483195 +150745,753.725000004847,-0.054964082905686086 +150746,753.730000004847,-0.05496402795981564 +150747,753.7350000048472,-0.054963973011871815 +150748,753.7400000048473,-0.05496391806185454 +150749,753.7450000048474,-0.05496386310976376 +150750,753.7500000048475,-0.054963808155599425 +150751,753.7550000048476,-0.05496375319936146 +150752,753.7600000048477,-0.054963698241049845 +150753,753.7650000048478,-0.05496364328066447 +150754,753.7700000048479,-0.054963588318205324 +150755,753.775000004848,-0.05496353335367232 +150756,753.7800000048481,-0.05496347838706541 +150757,753.7850000048483,-0.05496342341838454 +150758,753.7900000048484,-0.05496336844762965 +150759,753.7950000048485,-0.054963313474800685 +150760,753.8000000048486,-0.05496325849989759 +150761,753.8050000048487,-0.05496320352292031 +150762,753.8100000048488,-0.05496314854386877 +150763,753.8150000048489,-0.054963093562742926 +150764,753.820000004849,-0.05496303857954271 +150765,753.8250000048491,-0.05496298359426808 +150766,753.8300000048492,-0.05496292860691897 +150767,753.8350000048493,-0.05496287361749532 +150768,753.8400000048495,-0.05496281862599708 +150769,753.8450000048496,-0.05496276363242419 +150770,753.8500000048497,-0.05496270863677658 +150771,753.8550000048498,-0.05496265363905421 +150772,753.8600000048499,-0.05496259863925701 +150773,753.86500000485,-0.054962543637384925 +150774,753.8700000048501,-0.0549624886334379 +150775,753.8750000048502,-0.054962433627415874 +150776,753.8800000048503,-0.0549623786193188 +150777,753.8850000048504,-0.05496232360914661 +150778,753.8900000048505,-0.05496226859689924 +150779,753.8950000048507,-0.054962213582576636 +150780,753.9000000048508,-0.05496215856617876 +150781,753.9050000048509,-0.054962103547705525 +150782,753.910000004851,-0.054962048527156894 +150783,753.9150000048511,-0.0549619935045328 +150784,753.9200000048512,-0.05496193847983318 +150785,753.9250000048513,-0.054961883453058 +150786,753.9300000048514,-0.054961828424207174 +150787,753.9350000048515,-0.05496177339328065 +150788,753.9400000048516,-0.05496171836027838 +150789,753.9450000048517,-0.054961663325200305 +150790,753.9500000048519,-0.05496160828804637 +150791,753.955000004852,-0.054961553248816485 +150792,753.9600000048521,-0.05496149820751063 +150793,753.9650000048522,-0.05496144316412874 +150794,753.9700000048523,-0.05496138811867074 +150795,753.9750000048524,-0.0549613330711366 +150796,753.9800000048525,-0.05496127802152623 +150797,753.9850000048526,-0.05496122296983958 +150798,753.9900000048527,-0.05496116791607662 +150799,753.9950000048528,-0.05496111286023726 +150800,754.000000004853,-0.05496105780232145 +150801,754.0050000048531,-0.05496100274232913 +150802,754.0100000048532,-0.05496094768026025 +150803,754.0150000048533,-0.05496089261611475 +150804,754.0200000048534,-0.054960837549892574 +150805,754.0250000048535,-0.054960782481593654 +150806,754.0300000048536,-0.054960727411217936 +150807,754.0350000048537,-0.054960672338765365 +150808,754.0400000048538,-0.05496061726423588 +150809,754.0450000048539,-0.05496056218762942 +150810,754.050000004854,-0.054960507108945934 +150811,754.0550000048542,-0.05496045202818536 +150812,754.0600000048543,-0.05496039694534763 +150813,754.0650000048544,-0.05496034186043269 +150814,754.0700000048545,-0.0549602867734405 +150815,754.0750000048546,-0.05496023168437098 +150816,754.0800000048547,-0.05496017659322408 +150817,754.0850000048548,-0.054960121499999744 +150818,754.0900000048549,-0.054960066404697916 +150819,754.095000004855,-0.05496001130731853 +150820,754.1000000048551,-0.054959956207861524 +150821,754.1050000048552,-0.05495990110632684 +150822,754.1100000048554,-0.05495984600271443 +150823,754.1150000048555,-0.05495979089702422 +150824,754.1200000048556,-0.05495973578925617 +150825,754.1250000048557,-0.05495968067941021 +150826,754.1300000048558,-0.054959625567486285 +150827,754.1350000048559,-0.05495957045348433 +150828,754.140000004856,-0.0549595153374043 +150829,754.1450000048561,-0.05495946021924613 +150830,754.1500000048562,-0.05495940509900974 +150831,754.1550000048563,-0.05495934997669511 +150832,754.1600000048564,-0.05495929485230215 +150833,754.1650000048566,-0.054959239725830826 +150834,754.1700000048567,-0.054959184597281066 +150835,754.1750000048568,-0.054959129466652795 +150836,754.1800000048569,-0.05495907433394598 +150837,754.185000004857,-0.054959019199160554 +150838,754.1900000048571,-0.05495896406229646 +150839,754.1950000048572,-0.05495890892335364 +150840,754.2000000048573,-0.054958853782332014 +150841,754.2050000048574,-0.054958798639231546 +150842,754.2100000048575,-0.05495874349405217 +150843,754.2150000048576,-0.054958688346793835 +150844,754.2200000048578,-0.05495863319745648 +150845,754.2250000048579,-0.054958578046040034 +150846,754.230000004858,-0.05495852289254445 +150847,754.2350000048581,-0.05495846773696967 +150848,754.2400000048582,-0.05495841257931562 +150849,754.2450000048583,-0.05495835741958226 +150850,754.2500000048584,-0.05495830225776952 +150851,754.2550000048585,-0.05495824709387733 +150852,754.2600000048586,-0.05495819192790566 +150853,754.2650000048587,-0.05495813675985443 +150854,754.2700000048588,-0.054958081589723574 +150855,754.275000004859,-0.05495802641751305 +150856,754.2800000048591,-0.054957971243222804 +150857,754.2850000048592,-0.05495791606685276 +150858,754.2900000048593,-0.05495786088840286 +150859,754.2950000048594,-0.054957805707873064 +150860,754.3000000048595,-0.0549577505252633 +150861,754.3050000048596,-0.054957695340573494 +150862,754.3100000048597,-0.0549576401538036 +150863,754.3150000048598,-0.05495758496495356 +150864,754.3200000048599,-0.054957529774023316 +150865,754.32500000486,-0.054957474581012807 +150866,754.3300000048602,-0.05495741938592197 +150867,754.3350000048603,-0.054957364188750746 +150868,754.3400000048604,-0.05495730898949908 +150869,754.3450000048605,-0.054957253788166925 +150870,754.3500000048606,-0.054957198584754195 +150871,754.3550000048607,-0.054957143379260845 +150872,754.3600000048608,-0.054957088171686805 +150873,754.3650000048609,-0.05495703296203203 +150874,754.370000004861,-0.05495697775029646 +150875,754.3750000048611,-0.054956922536480025 +150876,754.3800000048612,-0.05495686732058268 +150877,754.3850000048614,-0.05495681210260435 +150878,754.3900000048615,-0.054956756882544984 +150879,754.3950000048616,-0.05495670166040452 +150880,754.4000000048617,-0.05495664643618289 +150881,754.4050000048618,-0.054956591209880064 +150882,754.4100000048619,-0.05495653598149595 +150883,754.415000004862,-0.0549564807510305 +150884,754.4200000048621,-0.054956425518483655 +150885,754.4250000048622,-0.05495637028385535 +150886,754.4300000048623,-0.054956315047145536 +150887,754.4350000048624,-0.05495625980835415 +150888,754.4400000048626,-0.054956204567481126 +150889,754.4450000048627,-0.05495614932452641 +150890,754.4500000048628,-0.05495609407948993 +150891,754.4550000048629,-0.05495603883237165 +150892,754.460000004863,-0.05495598358317149 +150893,754.4650000048631,-0.0549559283318894 +150894,754.4700000048632,-0.054955873078525314 +150895,754.4750000048633,-0.05495581782307917 +150896,754.4800000048634,-0.05495576256555093 +150897,754.4850000048635,-0.05495570730594051 +150898,754.4900000048636,-0.054955652044247856 +150899,754.4950000048638,-0.05495559678047292 +150900,754.5000000048639,-0.05495554151461562 +150901,754.505000004864,-0.05495548624667591 +150902,754.5100000048641,-0.05495543097665373 +150903,754.5150000048642,-0.05495537570454902 +150904,754.5200000048643,-0.054955320430361713 +150905,754.5250000048644,-0.05495526515409175 +150906,754.5300000048645,-0.05495520987573909 +150907,754.5350000048646,-0.05495515459530365 +150908,754.5400000048647,-0.05495509931278538 +150909,754.5450000048648,-0.05495504402818422 +150910,754.550000004865,-0.0549549887415001 +150911,754.5550000048651,-0.054954933452732974 +150912,754.5600000048652,-0.05495487816188278 +150913,754.5650000048653,-0.05495482286894945 +150914,754.5700000048654,-0.05495476757393293 +150915,754.5750000048655,-0.05495471227683315 +150916,754.5800000048656,-0.05495465697765006 +150917,754.5850000048657,-0.05495460167638361 +150918,754.5900000048658,-0.05495454637303371 +150919,754.5950000048659,-0.054954491067600315 +150920,754.600000004866,-0.054954435760083374 +150921,754.6050000048662,-0.054954380450482815 +150922,754.6100000048663,-0.054954325138798596 +150923,754.6150000048664,-0.054954269825030634 +150924,754.6200000048665,-0.05495421450917888 +150925,754.6250000048666,-0.05495415919124327 +150926,754.6300000048667,-0.054954103871223736 +150927,754.6350000048668,-0.054954048549120234 +150928,754.6400000048669,-0.05495399322493269 +150929,754.645000004867,-0.05495393789866106 +150930,754.6500000048671,-0.05495388257030526 +150931,754.6550000048672,-0.05495382723986525 +150932,754.6600000048674,-0.054953771907340965 +150933,754.6650000048675,-0.05495371657273233 +150934,754.6700000048676,-0.05495366123603931 +150935,754.6750000048677,-0.05495360589726182 +150936,754.6800000048678,-0.05495355055639982 +150937,754.6850000048679,-0.05495349521345324 +150938,754.690000004868,-0.05495343986842201 +150939,754.6950000048681,-0.054953384521306076 +150940,754.7000000048682,-0.05495332917210539 +150941,754.7050000048683,-0.054953273820819874 +150942,754.7100000048684,-0.05495321846744947 +150943,754.7150000048686,-0.05495316311199413 +150944,754.7200000048687,-0.054953107754453785 +150945,754.7250000048688,-0.05495305239482836 +150946,754.7300000048689,-0.054952997033117824 +150947,754.735000004869,-0.0549529416693221 +150948,754.7400000048691,-0.05495288630344112 +150949,754.7450000048692,-0.05495283093547484 +150950,754.7500000048693,-0.05495277556542318 +150951,754.7550000048694,-0.0549527201932861 +150952,754.7600000048695,-0.05495266481906353 +150953,754.7650000048696,-0.0549526094427554 +150954,754.7700000048698,-0.05495255406436166 +150955,754.7750000048699,-0.05495249868388226 +150956,754.78000000487,-0.05495244330131711 +150957,754.7850000048701,-0.05495238791666616 +150958,754.7900000048702,-0.05495233252992935 +150959,754.7950000048703,-0.054952277141106634 +150960,754.8000000048704,-0.054952221750197934 +150961,754.8050000048705,-0.0549521663572032 +150962,754.8100000048706,-0.05495211096212236 +150963,754.8150000048707,-0.05495205556495536 +150964,754.8200000048708,-0.05495200016570213 +150965,754.825000004871,-0.054951944764362624 +150966,754.8300000048711,-0.05495188936093678 +150967,754.8350000048712,-0.05495183395542452 +150968,754.8400000048713,-0.0549517785478258 +150969,754.8450000048714,-0.054951723138140555 +150970,754.8500000048715,-0.05495166772636871 +150971,754.8550000048716,-0.05495161231251022 +150972,754.8600000048717,-0.05495155689656502 +150973,754.8650000048718,-0.054951501478533046 +150974,754.8700000048719,-0.05495144605841423 +150975,754.875000004872,-0.05495139063620853 +150976,754.8800000048722,-0.05495133521191588 +150977,754.8850000048723,-0.054951279785536204 +150978,754.8900000048724,-0.05495122435706945 +150979,754.8950000048725,-0.05495116892651555 +150980,754.9000000048726,-0.05495111349387446 +150981,754.9050000048727,-0.054951058059146095 +150982,754.9100000048728,-0.05495100262233041 +150983,754.9150000048729,-0.054950947183427336 +150984,754.920000004873,-0.05495089174243681 +150985,754.9250000048731,-0.054950836299358784 +150986,754.9300000048732,-0.054950780854193186 +150987,754.9350000048734,-0.05495072540693995 +150988,754.9400000048735,-0.054950669957599035 +150989,754.9450000048736,-0.05495061450617036 +150990,754.9500000048737,-0.054950559052653856 +150991,754.9550000048738,-0.05495050359704949 +150992,754.9600000048739,-0.05495044813935719 +150993,754.965000004874,-0.05495039267957688 +150994,754.9700000048741,-0.05495033721770851 +150995,754.9750000048742,-0.05495028175375202 +150996,754.9800000048743,-0.05495022628770734 +150997,754.9850000048745,-0.05495017081957441 +150998,754.9900000048746,-0.054950115349353186 +150999,754.9950000048747,-0.054950059877043586 +151000,755.0000000048748,-0.054950004402645546 +151001,755.0050000048749,-0.05494994892615901 +151002,755.010000004875,-0.054949893447583935 +151003,755.0150000048751,-0.054949837966920226 +151004,755.0200000048752,-0.05494978248416784 +151005,755.0250000048753,-0.054949726999326716 +151006,755.0300000048754,-0.05494967151239679 +151007,755.0350000048755,-0.054949616023378 +151008,755.0400000048757,-0.054949560532270285 +151009,755.0450000048758,-0.05494950503907359 +151010,755.0500000048759,-0.05494944954378784 +151011,755.055000004876,-0.054949394046412976 +151012,755.0600000048761,-0.05494933854694894 +151013,755.0650000048762,-0.05494928304539566 +151014,755.0700000048763,-0.05494922754175309 +151015,755.0750000048764,-0.054949172036021156 +151016,755.0800000048765,-0.054949116528199796 +151017,755.0850000048766,-0.05494906101828896 +151018,755.0900000048767,-0.054949005506288576 +151019,755.0950000048769,-0.05494894999219858 +151020,755.100000004877,-0.054948894476018924 +151021,755.1050000048771,-0.05494883895774953 +151022,755.1100000048772,-0.05494878343739035 +151023,755.1150000048773,-0.0549487279149413 +151024,755.1200000048774,-0.05494867239040234 +151025,755.1250000048775,-0.0549486168637734 +151026,755.1300000048776,-0.05494856133505442 +151027,755.1350000048777,-0.05494850580424533 +151028,755.1400000048778,-0.05494845027134607 +151029,755.1450000048779,-0.05494839473635659 +151030,755.150000004878,-0.054948339199276816 +151031,755.1550000048782,-0.0549482836601067 +151032,755.1600000048783,-0.054948228118846164 +151033,755.1650000048784,-0.054948172575495134 +151034,755.1700000048785,-0.05494811703005358 +151035,755.1750000048786,-0.05494806148252141 +151036,755.1800000048787,-0.054948005932898586 +151037,755.1850000048788,-0.05494795038118502 +151038,755.1900000048789,-0.05494789482738068 +151039,755.195000004879,-0.05494783927148548 +151040,755.2000000048791,-0.054947783713499364 +151041,755.2050000048793,-0.054947728153422276 +151042,755.2100000048794,-0.054947672591254146 +151043,755.2150000048795,-0.05494761702699492 +151044,755.2200000048796,-0.05494756146064452 +151045,755.2250000048797,-0.054947505892202896 +151046,755.2300000048798,-0.05494745032166999 +151047,755.2350000048799,-0.05494739474904573 +151048,755.24000000488,-0.054947339174330055 +151049,755.2450000048801,-0.0549472835975229 +151050,755.2500000048802,-0.0549472280186242 +151051,755.2550000048803,-0.05494717243763391 +151052,755.2600000048805,-0.054947116854551954 +151053,755.2650000048806,-0.054947061269378254 +151054,755.2700000048807,-0.054947005682112776 +151055,755.2750000048808,-0.054946950092755444 +151056,755.2800000048809,-0.054946894501306194 +151057,755.285000004881,-0.05494683890776496 +151058,755.2900000048811,-0.05494678331213169 +151059,755.2950000048812,-0.054946727714406306 +151060,755.3000000048813,-0.054946672114588764 +151061,755.3050000048814,-0.054946616512679 +151062,755.3100000048815,-0.05494656090867693 +151063,755.3150000048817,-0.05494650530258251 +151064,755.3200000048818,-0.05494644969439567 +151065,755.3250000048819,-0.05494639408411635 +151066,755.330000004882,-0.05494633847174448 +151067,755.3350000048821,-0.05494628285728001 +151068,755.3400000048822,-0.05494622724072288 +151069,755.3450000048823,-0.05494617162207301 +151070,755.3500000048824,-0.05494611600133034 +151071,755.3550000048825,-0.05494606037849481 +151072,755.3600000048826,-0.054946004753566355 +151073,755.3650000048827,-0.05494594912654492 +151074,755.3700000048829,-0.05494589349743043 +151075,755.375000004883,-0.05494583786622285 +151076,755.3800000048831,-0.05494578223292208 +151077,755.3850000048832,-0.05494572659752808 +151078,755.3900000048833,-0.05494567096004077 +151079,755.3950000048834,-0.054945615320460106 +151080,755.4000000048835,-0.05494555967878601 +151081,755.4050000048836,-0.05494550403501843 +151082,755.4100000048837,-0.05494544838915729 +151083,755.4150000048838,-0.05494539274120254 +151084,755.420000004884,-0.0549453370911541 +151085,755.425000004884,-0.05494528143901192 +151086,755.4300000048842,-0.054945225784775946 +151087,755.4350000048843,-0.054945170128446096 +151088,755.4400000048844,-0.054945114470022316 +151089,755.4450000048845,-0.054945058809504545 +151090,755.4500000048846,-0.054945003146892706 +151091,755.4550000048847,-0.05494494748218675 +151092,755.4600000048848,-0.0549448918153866 +151093,755.4650000048849,-0.05494483614649221 +151094,755.470000004885,-0.054944780475503496 +151095,755.4750000048851,-0.05494472480242041 +151096,755.4800000048853,-0.05494466912724289 +151097,755.4850000048854,-0.05494461344997086 +151098,755.4900000048855,-0.054944557770604266 +151099,755.4950000048856,-0.054944502089143046 +151100,755.5000000048857,-0.05494444640558713 +151101,755.5050000048858,-0.05494439071993645 +151102,755.5100000048859,-0.05494433503219095 +151103,755.515000004886,-0.05494427934235057 +151104,755.5200000048861,-0.05494422365041524 +151105,755.5250000048862,-0.054944167956384904 +151106,755.5300000048863,-0.05494411226025949 +151107,755.5350000048865,-0.05494405656203894 +151108,755.5400000048866,-0.054944000861723186 +151109,755.5450000048867,-0.05494394515931217 +151110,755.5500000048868,-0.054943889454805814 +151111,755.5550000048869,-0.05494383374820406 +151112,755.560000004887,-0.054943778039506855 +151113,755.5650000048871,-0.05494372232871413 +151114,755.5700000048872,-0.05494366661582582 +151115,755.5750000048873,-0.05494361090084186 +151116,755.5800000048874,-0.054943555183762184 +151117,755.5850000048875,-0.05494349946458674 +151118,755.5900000048877,-0.054943443743315445 +151119,755.5950000048878,-0.05494338801994825 +151120,755.6000000048879,-0.05494333229448507 +151121,755.605000004888,-0.054943276566925874 +151122,755.6100000048881,-0.05494322083727059 +151123,755.6150000048882,-0.054943165105519144 +151124,755.6200000048883,-0.05494310937167147 +151125,755.6250000048884,-0.05494305363572751 +151126,755.6300000048885,-0.054942997897687196 +151127,755.6350000048886,-0.05494294215755046 +151128,755.6400000048887,-0.05494288641531725 +151129,755.6450000048889,-0.05494283067098749 +151130,755.650000004889,-0.05494277492456112 +151131,755.6550000048891,-0.05494271917603808 +151132,755.6600000048892,-0.05494266342541831 +151133,755.6650000048893,-0.054942607672701725 +151134,755.6700000048894,-0.054942551917888285 +151135,755.6750000048895,-0.05494249616097791 +151136,755.6800000048896,-0.05494244040197054 +151137,755.6850000048897,-0.05494238464086613 +151138,755.6900000048898,-0.05494232887766458 +151139,755.69500000489,-0.05494227311236585 +151140,755.7000000048901,-0.05494221734496988 +151141,755.7050000048902,-0.05494216157547658 +151142,755.7100000048903,-0.05494210580388591 +151143,755.7150000048904,-0.054942050030197795 +151144,755.7200000048905,-0.054941994254412166 +151145,755.7250000048906,-0.05494193847652898 +151146,755.7300000048907,-0.054941882696548136 +151147,755.7350000048908,-0.0549418269144696 +151148,755.7400000048909,-0.054941771130293304 +151149,755.745000004891,-0.054941715344019176 +151150,755.7500000048911,-0.05494165955564715 +151151,755.7550000048913,-0.05494160376517716 +151152,755.7600000048914,-0.05494154797260916 +151153,755.7650000048915,-0.054941492177943065 +151154,755.7700000048916,-0.05494143638117882 +151155,755.7750000048917,-0.05494138058231636 +151156,755.7800000048918,-0.05494132478135562 +151157,755.7850000048919,-0.05494126897829652 +151158,755.790000004892,-0.05494121317313902 +151159,755.7950000048921,-0.054941157365883043 +151160,755.8000000048922,-0.054941101556528524 +151161,755.8050000048923,-0.0549410457450754 +151162,755.8100000048925,-0.054940989931523604 +151163,755.8150000048926,-0.05494093411587308 +151164,755.8200000048927,-0.05494087829812375 +151165,755.8250000048928,-0.054940822478275565 +151166,755.8300000048929,-0.05494076665632845 +151167,755.835000004893,-0.05494071083228234 +151168,755.8400000048931,-0.054940655006137165 +151169,755.8450000048932,-0.05494059917789288 +151170,755.8500000048933,-0.05494054334754939 +151171,755.8550000048934,-0.05494048751510667 +151172,755.8600000048935,-0.054940431680564616 +151173,755.8650000048937,-0.05494037584392318 +151174,755.8700000048938,-0.0549403200051823 +151175,755.8750000048939,-0.05494026416434191 +151176,755.880000004894,-0.054940208321401944 +151177,755.8850000048941,-0.05494015247636233 +151178,755.8900000048942,-0.05494009662922301 +151179,755.8950000048943,-0.05494004077998392 +151180,755.9000000048944,-0.05493998492864499 +151181,755.9050000048945,-0.05493992907520615 +151182,755.9100000048946,-0.05493987321966735 +151183,755.9150000048948,-0.05493981736202852 +151184,755.9200000048949,-0.0549397615022896 +151185,755.925000004895,-0.05493970564045051 +151186,755.9300000048951,-0.05493964977651119 +151187,755.9350000048952,-0.054939593910471575 +151188,755.9400000048953,-0.05493953804233161 +151189,755.9450000048954,-0.05493948217209121 +151190,755.9500000048955,-0.05493942629975032 +151191,755.9550000048956,-0.05493937042530888 +151192,755.9600000048957,-0.05493931454876682 +151193,755.9650000048958,-0.05493925867012408 +151194,755.970000004896,-0.05493920278938059 +151195,755.9750000048961,-0.05493914690653628 +151196,755.9800000048962,-0.0549390910215911 +151197,755.9850000048963,-0.05493903513454497 +151198,755.9900000048964,-0.05493897924539782 +151199,755.9950000048965,-0.05493892335414959 +151200,756.0000000048966,-0.05493886746080023 +151201,756.0050000048967,-0.05493881156534965 +151202,756.0100000048968,-0.05493875566779781 +151203,756.0150000048969,-0.05493869976814462 +151204,756.020000004897,-0.054938643866390025 +151205,756.0250000048972,-0.05493858796253396 +151206,756.0300000048973,-0.05493853205657637 +151207,756.0350000048974,-0.05493847614851717 +151208,756.0400000048975,-0.0549384202383563 +151209,756.0450000048976,-0.054938364326093704 +151210,756.0500000048977,-0.05493830841172931 +151211,756.0550000048978,-0.05493825249526306 +151212,756.0600000048979,-0.05493819657669488 +151213,756.065000004898,-0.0549381406560247 +151214,756.0700000048981,-0.05493808473325247 +151215,756.0750000048982,-0.05493802880837811 +151216,756.0800000048984,-0.05493797288140155 +151217,756.0850000048985,-0.05493791695232274 +151218,756.0900000048986,-0.0549378610211416 +151219,756.0950000048987,-0.05493780508785807 +151220,756.1000000048988,-0.05493774915247208 +151221,756.1050000048989,-0.05493769321498358 +151222,756.110000004899,-0.05493763727539249 +151223,756.1150000048991,-0.05493758133369875 +151224,756.1200000048992,-0.05493752538990229 +151225,756.1250000048993,-0.054937469444003045 +151226,756.1300000048994,-0.054937413496000946 +151227,756.1350000048996,-0.05493735754589594 +151228,756.1400000048997,-0.05493730159368795 +151229,756.1450000048998,-0.054937245639376915 +151230,756.1500000048999,-0.05493718968296275 +151231,756.1550000049,-0.05493713372444542 +151232,756.1600000049001,-0.05493707776382483 +151233,756.1650000049002,-0.05493702180110094 +151234,756.1700000049003,-0.05493696583627367 +151235,756.1750000049004,-0.05493690986934296 +151236,756.1800000049005,-0.05493685390030872 +151237,756.1850000049006,-0.05493679792917091 +151238,756.1900000049008,-0.054936741955929465 +151239,756.1950000049009,-0.0549366859805843 +151240,756.200000004901,-0.05493663000313537 +151241,756.2050000049011,-0.054936574023582596 +151242,756.2100000049012,-0.05493651804192591 +151243,756.2150000049013,-0.05493646205816525 +151244,756.2200000049014,-0.054936406072300555 +151245,756.2250000049015,-0.05493635008433175 +151246,756.2300000049016,-0.05493629409425877 +151247,756.2350000049017,-0.054936238102081564 +151248,756.2400000049018,-0.05493618210780004 +151249,756.245000004902,-0.054936126111414144 +151250,756.2500000049021,-0.05493607011292382 +151251,756.2550000049022,-0.05493601411232898 +151252,756.2600000049023,-0.05493595810962957 +151253,756.2650000049024,-0.05493590210482552 +151254,756.2700000049025,-0.05493584609791677 +151255,756.2750000049026,-0.05493579008890325 +151256,756.2800000049027,-0.05493573407778489 +151257,756.2850000049028,-0.05493567806456163 +151258,756.2900000049029,-0.054935622049233405 +151259,756.295000004903,-0.05493556603180014 +151260,756.3000000049032,-0.05493551001226176 +151261,756.3050000049033,-0.054935453990618215 +151262,756.3100000049034,-0.05493539796686943 +151263,756.3150000049035,-0.054935341941015355 +151264,756.3200000049036,-0.05493528591305591 +151265,756.3250000049037,-0.05493522988299102 +151266,756.3300000049038,-0.05493517385082063 +151267,756.3350000049039,-0.05493511781654468 +151268,756.340000004904,-0.054935061780163066 +151269,756.3450000049041,-0.054935005741675765 +151270,756.3500000049042,-0.05493494970108269 +151271,756.3550000049044,-0.05493489365838377 +151272,756.3600000049045,-0.054934837613578966 +151273,756.3650000049046,-0.05493478156666818 +151274,756.3700000049047,-0.05493472551765136 +151275,756.3750000049048,-0.05493466946652843 +151276,756.3800000049049,-0.05493461341329933 +151277,756.385000004905,-0.054934557357964 +151278,756.3900000049051,-0.05493450130052236 +151279,756.3950000049052,-0.05493444524097434 +151280,756.4000000049053,-0.05493438917931988 +151281,756.4050000049054,-0.05493433311555892 +151282,756.4100000049056,-0.05493427704969137 +151283,756.4150000049057,-0.054934220981717206 +151284,756.4200000049058,-0.054934164911636316 +151285,756.4250000049059,-0.05493410883944866 +151286,756.430000004906,-0.05493405276515415 +151287,756.4350000049061,-0.05493399668875274 +151288,756.4400000049062,-0.05493394061024436 +151289,756.4450000049063,-0.054933884529628926 +151290,756.4500000049064,-0.05493382844690639 +151291,756.4550000049065,-0.054933772362076666 +151292,756.4600000049066,-0.0549337162751397 +151293,756.4650000049068,-0.054933660186095426 +151294,756.4700000049069,-0.05493360409494378 +151295,756.475000004907,-0.05493354800168467 +151296,756.4800000049071,-0.054933491906318056 +151297,756.4850000049072,-0.054933435808843856 +151298,756.4900000049073,-0.054933379709262015 +151299,756.4950000049074,-0.05493332360757245 +151300,756.5000000049075,-0.0549332675037751 +151301,756.5050000049076,-0.05493321139786991 +151302,756.5100000049077,-0.0549331552898568 +151303,756.5150000049078,-0.054933099179735705 +151304,756.520000004908,-0.054933043067506564 +151305,756.5250000049081,-0.05493298695316929 +151306,756.5300000049082,-0.05493293083672383 +151307,756.5350000049083,-0.05493287471817011 +151308,756.5400000049084,-0.05493281859750807 +151309,756.5450000049085,-0.05493276247473764 +151310,756.5500000049086,-0.054932706349858765 +151311,756.5550000049087,-0.054932650222871346 +151312,756.5600000049088,-0.054932594093775336 +151313,756.5650000049089,-0.054932537962570666 +151314,756.570000004909,-0.05493248182925727 +151315,756.5750000049092,-0.05493242569383509 +151316,756.5800000049093,-0.054932369556304025 +151317,756.5850000049094,-0.05493231341666405 +151318,756.5900000049095,-0.05493225727491506 +151319,756.5950000049096,-0.054932201131057 +151320,756.6000000049097,-0.05493214498508981 +151321,756.6050000049098,-0.054932088837013414 +151322,756.6100000049099,-0.05493203268682775 +151323,756.61500000491,-0.05493197653453275 +151324,756.6200000049101,-0.05493192038012835 +151325,756.6250000049102,-0.05493186422361447 +151326,756.6300000049104,-0.054931808064991046 +151327,756.6350000049105,-0.05493175190425801 +151328,756.6400000049106,-0.0549316957414153 +151329,756.6450000049107,-0.05493163957646285 +151330,756.6500000049108,-0.054931583409400575 +151331,756.6550000049109,-0.05493152724022842 +151332,756.660000004911,-0.05493147106894631 +151333,756.6650000049111,-0.054931414895554184 +151334,756.6700000049112,-0.054931358720051976 +151335,756.6750000049113,-0.05493130254243961 +151336,756.6800000049114,-0.05493124636271703 +151337,756.6850000049116,-0.05493119018088416 +151338,756.6900000049117,-0.05493113399694093 +151339,756.6950000049118,-0.054931077810887276 +151340,756.7000000049119,-0.05493102162272313 +151341,756.705000004912,-0.0549309654324484 +151342,756.7100000049121,-0.05493090924006306 +151343,756.7150000049122,-0.054930853045567 +151344,756.7200000049123,-0.054930796848960184 +151345,756.7250000049124,-0.054930740650242525 +151346,756.7300000049125,-0.05493068444941397 +151347,756.7350000049126,-0.05493062824647444 +151348,756.7400000049128,-0.054930572041423875 +151349,756.7450000049129,-0.05493051583426219 +151350,756.750000004913,-0.05493045962498934 +151351,756.7550000049131,-0.054930403413605236 +151352,756.7600000049132,-0.05493034720010982 +151353,756.7650000049133,-0.05493029098450302 +151354,756.7700000049134,-0.05493023476678476 +151355,756.7750000049135,-0.05493017854695499 +151356,756.7800000049136,-0.05493012232501363 +151357,756.7850000049137,-0.054930066100960614 +151358,756.7900000049138,-0.05493000987479587 +151359,756.795000004914,-0.054929953646519335 +151360,756.8000000049141,-0.05492989741613094 +151361,756.8050000049142,-0.05492984118363062 +151362,756.8100000049143,-0.05492978494901828 +151363,756.8150000049144,-0.054929728712293895 +151364,756.8200000049145,-0.05492967247345736 +151365,756.8250000049146,-0.054929616232508624 +151366,756.8300000049147,-0.05492955998944761 +151367,756.8350000049148,-0.05492950374427426 +151368,756.8400000049149,-0.05492944749698849 +151369,756.845000004915,-0.054929391247590234 +151370,756.8500000049152,-0.05492933499607944 +151371,756.8550000049153,-0.05492927874245602 +151372,756.8600000049154,-0.05492922248671992 +151373,756.8650000049155,-0.05492916622887107 +151374,756.8700000049156,-0.05492910996890939 +151375,756.8750000049157,-0.05492905370683481 +151376,756.8800000049158,-0.05492899744264727 +151377,756.8850000049159,-0.054928941176346696 +151378,756.890000004916,-0.054928884907933025 +151379,756.8950000049161,-0.05492882863740618 +151380,756.9000000049163,-0.05492877236476611 +151381,756.9050000049164,-0.054928716090012715 +151382,756.9100000049165,-0.05492865981314596 +151383,756.9150000049166,-0.054928603534165746 +151384,756.9200000049167,-0.05492854725307203 +151385,756.9250000049168,-0.05492849096986473 +151386,756.9300000049169,-0.05492843468454376 +151387,756.935000004917,-0.05492837839710909 +151388,756.9400000049171,-0.05492832210756062 +151389,756.9450000049172,-0.05492826581589828 +151390,756.9500000049173,-0.05492820952212203 +151391,756.9550000049175,-0.05492815322623177 +151392,756.9600000049176,-0.05492809692822745 +151393,756.9650000049177,-0.054928040628108986 +151394,756.9700000049178,-0.054927984325876325 +151395,756.9750000049179,-0.05492792802152938 +151396,756.980000004918,-0.05492787171506809 +151397,756.9850000049181,-0.054927815406492386 +151398,756.9900000049182,-0.054927759095802206 +151399,756.9950000049183,-0.05492770278299746 +151400,757.0000000049184,-0.054927646468078094 +151401,757.0050000049185,-0.054927590151044044 +151402,757.0100000049187,-0.054927533831895234 +151403,757.0150000049188,-0.05492747751063159 +151404,757.0200000049189,-0.054927421187253044 +151405,757.025000004919,-0.05492736486175953 +151406,757.0300000049191,-0.05492730853415098 +151407,757.0350000049192,-0.05492725220442732 +151408,757.0400000049193,-0.054927195872588486 +151409,757.0450000049194,-0.054927139538634394 +151410,757.0500000049195,-0.05492708320256499 +151411,757.0550000049196,-0.054927026864380196 +151412,757.0600000049197,-0.05492697052407995 +151413,757.0650000049199,-0.05492691418166418 +151414,757.07000000492,-0.0549268578371328 +151415,757.0750000049201,-0.054926801490485774 +151416,757.0800000049202,-0.05492674514172301 +151417,757.0850000049203,-0.05492668879084444 +151418,757.0900000049204,-0.05492663243784999 +151419,757.0950000049205,-0.054926576082739605 +151420,757.1000000049206,-0.05492651972551319 +151421,757.1050000049207,-0.05492646336617069 +151422,757.1100000049208,-0.05492640700471205 +151423,757.115000004921,-0.05492635064113718 +151424,757.120000004921,-0.054926294275446014 +151425,757.1250000049212,-0.054926237907638495 +151426,757.1300000049213,-0.054926181537714544 +151427,757.1350000049214,-0.05492612516567408 +151428,757.1400000049215,-0.054926068791517055 +151429,757.1450000049216,-0.05492601241524338 +151430,757.1500000049217,-0.054925956036853 +151431,757.1550000049218,-0.05492589965634582 +151432,757.1600000049219,-0.0549258432737218 +151433,757.165000004922,-0.05492578688898085 +151434,757.1700000049221,-0.054925730502122905 +151435,757.1750000049223,-0.054925674113147895 +151436,757.1800000049224,-0.05492561772205575 +151437,757.1850000049225,-0.0549255613288464 +151438,757.1900000049226,-0.05492550493351979 +151439,757.1950000049227,-0.05492544853607584 +151440,757.2000000049228,-0.05492539213651446 +151441,757.2050000049229,-0.0549253357348356 +151442,757.210000004923,-0.05492527933103918 +151443,757.2150000049231,-0.05492522292512514 +151444,757.2200000049232,-0.0549251665170934 +151445,757.2250000049233,-0.054925110106943904 +151446,757.2300000049235,-0.05492505369467657 +151447,757.2350000049236,-0.05492499728029132 +151448,757.2400000049237,-0.05492494086378811 +151449,757.2450000049238,-0.05492488444516684 +151450,757.2500000049239,-0.054924828024427455 +151451,757.255000004924,-0.05492477160156989 +151452,757.2600000049241,-0.054924715176594065 +151453,757.2650000049242,-0.0549246587494999 +151454,757.2700000049243,-0.054924602320287334 +151455,757.2750000049244,-0.0549245458889563 +151456,757.2800000049245,-0.05492448945550673 +151457,757.2850000049247,-0.054924433019938546 +151458,757.2900000049248,-0.05492437658225168 +151459,757.2950000049249,-0.05492432014244608 +151460,757.300000004925,-0.05492426370052165 +151461,757.3050000049251,-0.05492420725647833 +151462,757.3100000049252,-0.054924150810316034 +151463,757.3150000049253,-0.05492409436203471 +151464,757.3200000049254,-0.05492403791163427 +151465,757.3250000049255,-0.054923981459114674 +151466,757.3300000049256,-0.05492392500447582 +151467,757.3350000049257,-0.05492386854771765 +151468,757.3400000049259,-0.054923812088840084 +151469,757.345000004926,-0.05492375562784307 +151470,757.3500000049261,-0.05492369916472652 +151471,757.3550000049262,-0.054923642699490356 +151472,757.3600000049263,-0.05492358623213454 +151473,757.3650000049264,-0.054923529762658976 +151474,757.3700000049265,-0.054923473291063604 +151475,757.3750000049266,-0.05492341681734834 +151476,757.3800000049267,-0.05492336034151312 +151477,757.3850000049268,-0.05492330386355788 +151478,757.390000004927,-0.05492324738348253 +151479,757.395000004927,-0.05492319090128703 +151480,757.4000000049272,-0.05492313441697128 +151481,757.4050000049273,-0.05492307793053521 +151482,757.4100000049274,-0.054923021441978775 +151483,757.4150000049275,-0.05492296495130188 +151484,757.4200000049276,-0.05492290845850447 +151485,757.4250000049277,-0.054922851963586455 +151486,757.4300000049278,-0.05492279546654778 +151487,757.4350000049279,-0.05492273896738837 +151488,757.440000004928,-0.054922682466108146 +151489,757.4450000049281,-0.05492262596270705 +151490,757.4500000049283,-0.054922569457184996 +151491,757.4550000049284,-0.05492251294954191 +151492,757.4600000049285,-0.05492245643977775 +151493,757.4650000049286,-0.05492239992789241 +151494,757.4700000049287,-0.05492234341388584 +151495,757.4750000049288,-0.05492228689775797 +151496,757.4800000049289,-0.05492223037950872 +151497,757.485000004929,-0.054922173859138015 +151498,757.4900000049291,-0.05492211733664579 +151499,757.4950000049292,-0.05492206081203196 +151500,757.5000000049293,-0.054922004285296484 +151501,757.5050000049295,-0.054921947756439264 +151502,757.5100000049296,-0.05492189122546024 +151503,757.5150000049297,-0.05492183469235934 +151504,757.5200000049298,-0.05492177815713649 +151505,757.5250000049299,-0.054921721619791614 +151506,757.53000000493,-0.054921665080324644 +151507,757.5350000049301,-0.05492160853873551 +151508,757.5400000049302,-0.05492155199502413 +151509,757.5450000049303,-0.05492149544919045 +151510,757.5500000049304,-0.05492143890123438 +151511,757.5550000049305,-0.05492138235115587 +151512,757.5600000049307,-0.05492132579895484 +151513,757.5650000049308,-0.054921269244631206 +151514,757.5700000049309,-0.05492121268818491 +151515,757.575000004931,-0.05492115612961588 +151516,757.5800000049311,-0.054921099568924034 +151517,757.5850000049312,-0.0549210430061093 +151518,757.5900000049313,-0.054920986441171625 +151519,757.5950000049314,-0.05492092987411091 +151520,757.6000000049315,-0.0549208733049271 +151521,757.6050000049316,-0.05492081673362013 +151522,757.6100000049317,-0.054920760160189916 +151523,757.6150000049319,-0.05492070358463639 +151524,757.620000004932,-0.05492064700695947 +151525,757.6250000049321,-0.0549205904271591 +151526,757.6300000049322,-0.0549205338452352 +151527,757.6350000049323,-0.0549204772611877 +151528,757.6400000049324,-0.05492042067501653 +151529,757.6450000049325,-0.05492036408672161 +151530,757.6500000049326,-0.05492030749630287 +151531,757.6550000049327,-0.05492025090376024 +151532,757.6600000049328,-0.054920194309093645 +151533,757.665000004933,-0.054920137712303016 +151534,757.6700000049331,-0.054920081113388294 +151535,757.6750000049332,-0.05492002451234939 +151536,757.6800000049333,-0.054919967909186226 +151537,757.6850000049334,-0.05491991130389874 +151538,757.6900000049335,-0.054919854696486865 +151539,757.6950000049336,-0.05491979808695052 +151540,757.7000000049337,-0.05491974147528964 +151541,757.7050000049338,-0.054919684861504156 +151542,757.7100000049339,-0.054919628245593974 +151543,757.715000004934,-0.05491957162755904 +151544,757.7200000049341,-0.05491951500739927 +151545,757.7250000049343,-0.05491945838511461 +151546,757.7300000049344,-0.05491940176070497 +151547,757.7350000049345,-0.05491934513417029 +151548,757.7400000049346,-0.05491928850551048 +151549,757.7450000049347,-0.054919231874725485 +151550,757.7500000049348,-0.05491917524181523 +151551,757.7550000049349,-0.054919118606779636 +151552,757.760000004935,-0.05491906196961864 +151553,757.7650000049351,-0.05491900533033216 +151554,757.7700000049352,-0.054918948688920124 +151555,757.7750000049354,-0.054918892045382466 +151556,757.7800000049355,-0.054918835399719104 +151557,757.7850000049356,-0.054918778751929964 +151558,757.7900000049357,-0.054918722102015 +151559,757.7950000049358,-0.0549186654499741 +151560,757.8000000049359,-0.05491860879580722 +151561,757.805000004936,-0.05491855213951428 +151562,757.8100000049361,-0.054918495481095196 +151563,757.8150000049362,-0.05491843882054991 +151564,757.8200000049363,-0.054918382157878344 +151565,757.8250000049364,-0.05491832549308042 +151566,757.8300000049366,-0.054918268826156066 +151567,757.8350000049367,-0.05491821215710522 +151568,757.8400000049368,-0.0549181554859278 +151569,757.8450000049369,-0.05491809881262374 +151570,757.850000004937,-0.05491804213719296 +151571,757.8550000049371,-0.05491798545963539 +151572,757.8600000049372,-0.054917928779950956 +151573,757.8650000049373,-0.054917872098139586 +151574,757.8700000049374,-0.0549178154142012 +151575,757.8750000049375,-0.054917758728135736 +151576,757.8800000049376,-0.054917702039943124 +151577,757.8850000049378,-0.05491764534962327 +151578,757.8900000049379,-0.05491758865717613 +151579,757.895000004938,-0.0549175319626016 +151580,757.9000000049381,-0.05491747526589963 +151581,757.9050000049382,-0.05491741856707013 +151582,757.9100000049383,-0.05491736186611304 +151583,757.9150000049384,-0.05491730516302828 +151584,757.9200000049385,-0.05491724845781577 +151585,757.9250000049386,-0.05491719175047546 +151586,757.9300000049387,-0.05491713504100726 +151587,757.9350000049388,-0.0549170783294111 +151588,757.940000004939,-0.05491702161568691 +151589,757.9450000049391,-0.054916964899834594 +151590,757.9500000049392,-0.054916908181854115 +151591,757.9550000049393,-0.05491685146174537 +151592,757.9600000049394,-0.05491679473950831 +151593,757.9650000049395,-0.054916738015142845 +151594,757.9700000049396,-0.054916681288648905 +151595,757.9750000049397,-0.054916624560026404 +151596,757.9800000049398,-0.054916567829275294 +151597,757.9850000049399,-0.05491651109639548 +151598,757.99000000494,-0.05491645436138691 +151599,757.9950000049402,-0.0549163976242495 +151600,758.0000000049403,-0.05491634088498317 +151601,758.0050000049404,-0.054916284143587846 +151602,758.0100000049405,-0.054916227400063466 +151603,758.0150000049406,-0.05491617065440994 +151604,758.0200000049407,-0.054916113906627206 +151605,758.0250000049408,-0.05491605715671519 +151606,758.0300000049409,-0.05491600040467381 +151607,758.035000004941,-0.054915943650503014 +151608,758.0400000049411,-0.0549158868942027 +151609,758.0450000049412,-0.05491583013577281 +151610,758.0500000049414,-0.05491577337521328 +151611,758.0550000049415,-0.05491571661252401 +151612,758.0600000049416,-0.054915659847704947 +151613,758.0650000049417,-0.054915603080756 +151614,758.0700000049418,-0.05491554631167712 +151615,758.0750000049419,-0.05491548954046822 +151616,758.080000004942,-0.05491543276712922 +151617,758.0850000049421,-0.05491537599166004 +151618,758.0900000049422,-0.054915319214060634 +151619,758.0950000049423,-0.0549152624343309 +151620,758.1000000049424,-0.054915205652470774 +151621,758.1050000049426,-0.05491514886848019 +151622,758.1100000049427,-0.054915092082359056 +151623,758.1150000049428,-0.054915035294107316 +151624,758.1200000049429,-0.054914978503724884 +151625,758.125000004943,-0.05491492171121169 +151626,758.1300000049431,-0.05491486491656767 +151627,758.1350000049432,-0.05491480811979273 +151628,758.1400000049433,-0.05491475132088681 +151629,758.1450000049434,-0.05491469451984983 +151630,758.1500000049435,-0.05491463771668171 +151631,758.1550000049436,-0.05491458091138239 +151632,758.1600000049438,-0.05491452410395179 +151633,758.1650000049439,-0.05491446729438984 +151634,758.170000004944,-0.054914410482696456 +151635,758.1750000049441,-0.05491435366887157 +151636,758.1800000049442,-0.0549142968529151 +151637,758.1850000049443,-0.05491424003482698 +151638,758.1900000049444,-0.05491418321460712 +151639,758.1950000049445,-0.05491412639225547 +151640,758.2000000049446,-0.05491406956777195 +151641,758.2050000049447,-0.05491401274115647 +151642,758.2100000049448,-0.05491395591240897 +151643,758.215000004945,-0.05491389908152937 +151644,758.2200000049451,-0.0549138422485176 +151645,758.2250000049452,-0.05491378541337358 +151646,758.2300000049453,-0.05491372857609723 +151647,758.2350000049454,-0.054913671736688485 +151648,758.2400000049455,-0.054913614895147275 +151649,758.2450000049456,-0.054913558051473514 +151650,758.2500000049457,-0.05491350120566713 +151651,758.2550000049458,-0.054913444357728054 +151652,758.2600000049459,-0.05491338750765621 +151653,758.265000004946,-0.054913330655451516 +151654,758.2700000049462,-0.0549132738011139 +151655,758.2750000049463,-0.054913216944643295 +151656,758.2800000049464,-0.05491316008603963 +151657,758.2850000049465,-0.05491310322530281 +151658,758.2900000049466,-0.054913046362432764 +151659,758.2950000049467,-0.05491298949742944 +151660,758.3000000049468,-0.05491293263029273 +151661,758.3050000049469,-0.05491287576102258 +151662,758.310000004947,-0.05491281888961891 +151663,758.3150000049471,-0.05491276201608165 +151664,758.3200000049472,-0.054912705140410724 +151665,758.3250000049474,-0.054912648262606056 +151666,758.3300000049475,-0.054912591382667575 +151667,758.3350000049476,-0.05491253450059519 +151668,758.3400000049477,-0.05491247761638883 +151669,758.3450000049478,-0.05491242073004843 +151670,758.3500000049479,-0.05491236384157391 +151671,758.355000004948,-0.0549123069509652 +151672,758.3600000049481,-0.05491225005822223 +151673,758.3650000049482,-0.05491219316334491 +151674,758.3700000049483,-0.054912136266333164 +151675,758.3750000049484,-0.054912079367186936 +151676,758.3800000049486,-0.05491202246590614 +151677,758.3850000049487,-0.05491196556249068 +151678,758.3900000049488,-0.05491190865694051 +151679,758.3950000049489,-0.05491185174925555 +151680,758.400000004949,-0.054911794839435715 +151681,758.4050000049491,-0.05491173792748093 +151682,758.4100000049492,-0.05491168101339112 +151683,758.4150000049493,-0.05491162409716621 +151684,758.4200000049494,-0.05491156717880614 +151685,758.4250000049495,-0.054911510258310814 +151686,758.4300000049496,-0.05491145333568016 +151687,758.4350000049498,-0.05491139641091412 +151688,758.4400000049499,-0.054911339484012604 +151689,758.44500000495,-0.05491128255497553 +151690,758.4500000049501,-0.05491122562380284 +151691,758.4550000049502,-0.05491116869049445 +151692,758.4600000049503,-0.054911111755050285 +151693,758.4650000049504,-0.05491105481747026 +151694,758.4700000049505,-0.05491099787775431 +151695,758.4750000049506,-0.05491094093590236 +151696,758.4800000049507,-0.054910883991914336 +151697,758.4850000049508,-0.054910827045790145 +151698,758.490000004951,-0.05491077009752974 +151699,758.4950000049511,-0.05491071314713301 +151700,758.5000000049512,-0.05491065619459991 +151701,758.5050000049513,-0.05491059923993035 +151702,758.5100000049514,-0.05491054228312426 +151703,758.5150000049515,-0.054910485324181565 +151704,758.5200000049516,-0.054910428363102184 +151705,758.5250000049517,-0.054910371399886033 +151706,758.5300000049518,-0.05491031443453305 +151707,758.5350000049519,-0.05491025746704315 +151708,758.540000004952,-0.054910200497416274 +151709,758.5450000049522,-0.05491014352565233 +151710,758.5500000049523,-0.05491008655175125 +151711,758.5550000049524,-0.05491002957571294 +151712,758.5600000049525,-0.05490997259753735 +151713,758.5650000049526,-0.054909915617224386 +151714,758.5700000049527,-0.05490985863477398 +151715,758.5750000049528,-0.05490980165018605 +151716,758.5800000049529,-0.05490974466346053 +151717,758.585000004953,-0.054909687674597335 +151718,758.5900000049531,-0.05490963068359639 +151719,758.5950000049532,-0.05490957369045762 +151720,758.6000000049534,-0.05490951669518095 +151721,758.6050000049535,-0.05490945969776631 +151722,758.6100000049536,-0.054909402698213615 +151723,758.6150000049537,-0.054909345696522775 +151724,758.6200000049538,-0.054909288692693736 +151725,758.6250000049539,-0.054909231686726415 +151726,758.630000004954,-0.05490917467862075 +151727,758.6350000049541,-0.05490911766837664 +151728,758.6400000049542,-0.05490906065599401 +151729,758.6450000049543,-0.054909003641472796 +151730,758.6500000049544,-0.05490894662481292 +151731,758.6550000049546,-0.0549088896060143 +151732,758.6600000049547,-0.05490883258507687 +151733,758.6650000049548,-0.05490877556200054 +151734,758.6700000049549,-0.05490871853678524 +151735,758.675000004955,-0.0549086615094309 +151736,758.6800000049551,-0.05490860447993744 +151737,758.6850000049552,-0.05490854744830478 +151738,758.6900000049553,-0.054908490414532836 +151739,758.6950000049554,-0.054908433378621536 +151740,758.7000000049555,-0.05490837634057081 +151741,758.7050000049557,-0.054908319300380586 +151742,758.7100000049558,-0.05490826225805077 +151743,758.7150000049559,-0.0549082052135813 +151744,758.720000004956,-0.0549081481669721 +151745,758.7250000049561,-0.05490809111822308 +151746,758.7300000049562,-0.054908034067334174 +151747,758.7350000049563,-0.054907977014305304 +151748,758.7400000049564,-0.05490791995913638 +151749,758.7450000049565,-0.054907862901827344 +151750,758.7500000049566,-0.05490780584237811 +151751,758.7550000049567,-0.05490774878078861 +151752,758.7600000049569,-0.054907691717058754 +151753,758.765000004957,-0.05490763465118846 +151754,758.7700000049571,-0.05490757758317767 +151755,758.7750000049572,-0.054907520513026296 +151756,758.7800000049573,-0.054907463440734265 +151757,758.7850000049574,-0.0549074063663015 +151758,758.7900000049575,-0.054907349289727916 +151759,758.7950000049576,-0.05490729221101346 +151760,758.8000000049577,-0.054907235130158015 +151761,758.8050000049578,-0.05490717804716154 +151762,758.8100000049579,-0.054907120962023936 +151763,758.815000004958,-0.05490706387474515 +151764,758.8200000049582,-0.054907006785325084 +151765,758.8250000049583,-0.054906949693763654 +151766,758.8300000049584,-0.0549068926000608 +151767,758.8350000049585,-0.05490683550421645 +151768,758.8400000049586,-0.054906778406230504 +151769,758.8450000049587,-0.0549067213061029 +151770,758.8500000049588,-0.054906664203833555 +151771,758.8550000049589,-0.054906607099422404 +151772,758.860000004959,-0.05490654999286935 +151773,758.8650000049591,-0.054906492884174325 +151774,758.8700000049593,-0.05490643577333725 +151775,758.8750000049594,-0.05490637866035806 +151776,758.8800000049595,-0.05490632154523667 +151777,758.8850000049596,-0.05490626442797299 +151778,758.8900000049597,-0.05490620730856695 +151779,758.8950000049598,-0.05490615018701847 +151780,758.9000000049599,-0.05490609306332749 +151781,758.90500000496,-0.054906035937493915 +151782,758.9100000049601,-0.05490597880951766 +151783,758.9150000049602,-0.05490592167939867 +151784,758.9200000049603,-0.05490586454713686 +151785,758.9250000049605,-0.05490580741273215 +151786,758.9300000049606,-0.054905750276184453 +151787,758.9350000049607,-0.0549056931374937 +151788,758.9400000049608,-0.054905635996659825 +151789,758.9450000049609,-0.054905578853682725 +151790,758.950000004961,-0.054905521708562346 +151791,758.9550000049611,-0.0549054645612986 +151792,758.9600000049612,-0.054905407411891406 +151793,758.9650000049613,-0.054905350260340685 +151794,758.9700000049614,-0.05490529310664637 +151795,758.9750000049615,-0.05490523595080837 +151796,758.9800000049617,-0.054905178792826616 +151797,758.9850000049618,-0.05490512163270104 +151798,758.9900000049619,-0.054905064470431544 +151799,758.995000004962,-0.05490500730601805 +151800,759.0000000049621,-0.0549049501394605 +151801,759.0050000049622,-0.0549048929707588 +151802,759.0100000049623,-0.05490483579991288 +151803,759.0150000049624,-0.05490477862692265 +151804,759.0200000049625,-0.054904721451788034 +151805,759.0250000049626,-0.05490466427450898 +151806,759.0300000049627,-0.05490460709508537 +151807,759.0350000049629,-0.05490454991351716 +151808,759.040000004963,-0.05490449272980425 +151809,759.0450000049631,-0.05490443554394656 +151810,759.0500000049632,-0.054904378355944035 +151811,759.0550000049633,-0.05490432116579658 +151812,759.0600000049634,-0.05490426397350412 +151813,759.0650000049635,-0.05490420677906657 +151814,759.0700000049636,-0.054904149582483866 +151815,759.0750000049637,-0.054904092383755924 +151816,759.0800000049638,-0.05490403518288265 +151817,759.085000004964,-0.054903977979863995 +151818,759.090000004964,-0.054903920774699855 +151819,759.0950000049642,-0.05490386356739016 +151820,759.1000000049643,-0.05490380635793484 +151821,759.1050000049644,-0.05490374914633381 +151822,759.1100000049645,-0.054903691932586984 +151823,759.1150000049646,-0.05490363471669429 +151824,759.1200000049647,-0.054903577498655654 +151825,759.1250000049648,-0.054903520278470994 +151826,759.1300000049649,-0.054903463056140224 +151827,759.135000004965,-0.05490340583166328 +151828,759.1400000049651,-0.054903348605040064 +151829,759.1450000049653,-0.054903291376270515 +151830,759.1500000049654,-0.05490323414535455 +151831,759.1550000049655,-0.05490317691229208 +151832,759.1600000049656,-0.05490311967708304 +151833,759.1650000049657,-0.054903062439727354 +151834,759.1700000049658,-0.054903005200224925 +151835,759.1750000049659,-0.0549029479585757 +151836,759.180000004966,-0.05490289071477957 +151837,759.1850000049661,-0.054902833468836475 +151838,759.1900000049662,-0.05490277622074633 +151839,759.1950000049663,-0.05490271897050906 +151840,759.2000000049665,-0.05490266171812458 +151841,759.2050000049666,-0.054902604463592825 +151842,759.2100000049667,-0.0549025472069137 +151843,759.2150000049668,-0.05490248994808712 +151844,759.2200000049669,-0.054902432687113034 +151845,759.225000004967,-0.054902375423991345 +151846,759.2300000049671,-0.054902318158721986 +151847,759.2350000049672,-0.054902260891304865 +151848,759.2400000049673,-0.0549022036217399 +151849,759.2450000049674,-0.05490214635002703 +151850,759.2500000049675,-0.05490208907616615 +151851,759.2550000049677,-0.0549020318001572 +151852,759.2600000049678,-0.0549019745220001 +151853,759.2650000049679,-0.05490191724169476 +151854,759.270000004968,-0.05490185995924111 +151855,759.2750000049681,-0.05490180267463907 +151856,759.2800000049682,-0.054901745387888556 +151857,759.2850000049683,-0.054901688098989494 +151858,759.2900000049684,-0.054901630807941804 +151859,759.2950000049685,-0.054901573514745394 +151860,759.3000000049686,-0.05490151621940021 +151861,759.3050000049687,-0.054901458921906156 +151862,759.3100000049689,-0.05490140162226315 +151863,759.315000004969,-0.05490134432047113 +151864,759.3200000049691,-0.05490128701652999 +151865,759.3250000049692,-0.05490122971043967 +151866,759.3300000049693,-0.05490117240220008 +151867,759.3350000049694,-0.05490111509181115 +151868,759.3400000049695,-0.05490105777927279 +151869,759.3450000049696,-0.054901000464584924 +151870,759.3500000049697,-0.05490094314774748 +151871,759.3550000049698,-0.05490088582876038 +151872,759.36000000497,-0.05490082850762353 +151873,759.36500000497,-0.05490077118433686 +151874,759.3700000049702,-0.05490071385890029 +151875,759.3750000049703,-0.05490065653131374 +151876,759.3800000049704,-0.05490059920157714 +151877,759.3850000049705,-0.054900541869690386 +151878,759.3900000049706,-0.05490048453565342 +151879,759.3950000049707,-0.054900427199466154 +151880,759.4000000049708,-0.0549003698611285 +151881,759.4050000049709,-0.054900312520640385 +151882,759.410000004971,-0.054900255178001726 +151883,759.4150000049711,-0.05490019783321246 +151884,759.4200000049713,-0.054900140486272495 +151885,759.4250000049714,-0.05490008313718174 +151886,759.4300000049715,-0.05490002578594013 +151887,759.4350000049716,-0.05489996843254758 +151888,759.4400000049717,-0.05489991107700401 +151889,759.4450000049718,-0.05489985371930933 +151890,759.4500000049719,-0.054899796359463494 +151891,759.455000004972,-0.054899738997466384 +151892,759.4600000049721,-0.05489968163331794 +151893,759.4650000049722,-0.05489962426701807 +151894,759.4700000049723,-0.054899566898566704 +151895,759.4750000049725,-0.05489950952796376 +151896,759.4800000049726,-0.05489945215520916 +151897,759.4850000049727,-0.05489939478030281 +151898,759.4900000049728,-0.054899337403244645 +151899,759.4950000049729,-0.05489928002403458 +151900,759.500000004973,-0.054899222642672545 +151901,759.5050000049731,-0.05489916525915844 +151902,759.5100000049732,-0.054899107873492184 +151903,759.5150000049733,-0.054899050485673714 +151904,759.5200000049734,-0.05489899309570294 +151905,759.5250000049735,-0.05489893570357978 +151906,759.5300000049737,-0.05489887830930417 +151907,759.5350000049738,-0.054898820912876005 +151908,759.5400000049739,-0.05489876351429523 +151909,759.545000004974,-0.05489870611356173 +151910,759.5500000049741,-0.05489864871067546 +151911,759.5550000049742,-0.05489859130563632 +151912,759.5600000049743,-0.05489853389844423 +151913,759.5650000049744,-0.05489847648909911 +151914,759.5700000049745,-0.054898419077600895 +151915,759.5750000049746,-0.054898361663949485 +151916,759.5800000049747,-0.05489830424814481 +151917,759.5850000049749,-0.05489824683018678 +151918,759.590000004975,-0.05489818941007532 +151919,759.5950000049751,-0.05489813198781036 +151920,759.6000000049752,-0.054898074563391804 +151921,759.6050000049753,-0.05489801713681958 +151922,759.6100000049754,-0.054897959708093594 +151923,759.6150000049755,-0.05489790227721378 +151924,759.6200000049756,-0.054897844844180047 +151925,759.6250000049757,-0.054897787408992316 +151926,759.6300000049758,-0.05489772997165052 +151927,759.635000004976,-0.05489767253215456 +151928,759.6400000049761,-0.05489761509050436 +151929,759.6450000049762,-0.05489755764669985 +151930,759.6500000049763,-0.05489750020074094 +151931,759.6550000049764,-0.05489744275262754 +151932,759.6600000049765,-0.05489738530235958 +151933,759.6650000049766,-0.054897327849936985 +151934,759.6700000049767,-0.05489727039535965 +151935,759.6750000049768,-0.05489721293862753 +151936,759.6800000049769,-0.05489715547974052 +151937,759.685000004977,-0.05489709801869853 +151938,759.6900000049772,-0.05489704055550149 +151939,759.6950000049773,-0.054896983090149336 +151940,759.7000000049774,-0.05489692562264196 +151941,759.7050000049775,-0.0548968681529793 +151942,759.7100000049776,-0.05489681068116126 +151943,759.7150000049777,-0.05489675320718777 +151944,759.7200000049778,-0.054896695731058744 +151945,759.7250000049779,-0.0548966382527741 +151946,759.730000004978,-0.05489658077233375 +151947,759.7350000049781,-0.05489652328973763 +151948,759.7400000049782,-0.05489646580498564 +151949,759.7450000049784,-0.05489640831807772 +151950,759.7500000049785,-0.05489635082901377 +151951,759.7550000049786,-0.05489629333779371 +151952,759.7600000049787,-0.05489623584441746 +151953,759.7650000049788,-0.054896178348884946 +151954,759.7700000049789,-0.054896120851196085 +151955,759.775000004979,-0.05489606335135079 +151956,759.7800000049791,-0.054896005849348985 +151957,759.7850000049792,-0.05489594834519058 +151958,759.7900000049793,-0.054895890838875507 +151959,759.7950000049794,-0.05489583333040366 +151960,759.8000000049796,-0.054895775819774985 +151961,759.8050000049797,-0.05489571830698938 +151962,759.8100000049798,-0.05489566079204678 +151963,759.8150000049799,-0.054895603274947094 +151964,759.82000000498,-0.05489554575569024 +151965,759.8250000049801,-0.05489548823427613 +151966,759.8300000049802,-0.054895430710704705 +151967,759.8350000049803,-0.05489537318497585 +151968,759.8400000049804,-0.054895315657089515 +151969,759.8450000049805,-0.05489525812704559 +151970,759.8500000049806,-0.054895200594844026 +151971,759.8550000049808,-0.054895143060484715 +151972,759.8600000049809,-0.05489508552396758 +151973,759.865000004981,-0.05489502798529255 +151974,759.8700000049811,-0.05489497044445952 +151975,759.8750000049812,-0.05489491290146843 +151976,759.8800000049813,-0.05489485535631918 +151977,759.8850000049814,-0.05489479780901171 +151978,759.8900000049815,-0.05489474025954592 +151979,759.8950000049816,-0.054894682707921735 +151980,759.9000000049817,-0.054894625154139065 +151981,759.9050000049818,-0.05489456759819784 +151982,759.910000004982,-0.054894510040097974 +151983,759.9150000049821,-0.05489445247983937 +151984,759.9200000049822,-0.05489439491742198 +151985,759.9250000049823,-0.0548943373528457 +151986,759.9300000049824,-0.05489427978611043 +151987,759.9350000049825,-0.05489422221721611 +151988,759.9400000049826,-0.05489416464616267 +151989,759.9450000049827,-0.05489410707294999 +151990,759.9500000049828,-0.05489404949757803 +151991,759.9550000049829,-0.054893991920046674 +151992,759.960000004983,-0.05489393434035585 +151993,759.9650000049832,-0.05489387675850549 +151994,759.9700000049833,-0.05489381917449549 +151995,759.9750000049834,-0.054893761588325776 +151996,759.9800000049835,-0.05489370399999626 +151997,759.9850000049836,-0.05489364640950687 +151998,759.9900000049837,-0.05489358881685753 +151999,759.9950000049838,-0.05489353122204814 +152000,760.0000000049839,-0.054893473625078626 +152001,760.005000004984,-0.054893416025948896 +152002,760.0100000049841,-0.054893358424658874 +152003,760.0150000049842,-0.05489330082120848 +152004,760.0200000049844,-0.05489324321559764 +152005,760.0250000049845,-0.05489318560782626 +152006,760.0300000049846,-0.05489312799789424 +152007,760.0350000049847,-0.054893070385801525 +152008,760.0400000049848,-0.05489301277154802 +152009,760.0450000049849,-0.054892955155133635 +152010,760.050000004985,-0.05489289753655831 +152011,760.0550000049851,-0.05489283991582194 +152012,760.0600000049852,-0.05489278229292445 +152013,760.0650000049853,-0.05489272466786577 +152014,760.0700000049854,-0.05489266704064579 +152015,760.0750000049856,-0.05489260941126445 +152016,760.0800000049857,-0.05489255177972166 +152017,760.0850000049858,-0.05489249414601733 +152018,760.0900000049859,-0.05489243651015138 +152019,760.095000004986,-0.05489237887212375 +152020,760.1000000049861,-0.05489232123193432 +152021,760.1050000049862,-0.054892263589583025 +152022,760.1100000049863,-0.05489220594506978 +152023,760.1150000049864,-0.05489214829839449 +152024,760.1200000049865,-0.05489209064955709 +152025,760.1250000049866,-0.0548920329985575 +152026,760.1300000049868,-0.054891975345395624 +152027,760.1350000049869,-0.05489191769007138 +152028,760.140000004987,-0.05489186003258469 +152029,760.1450000049871,-0.05489180237293546 +152030,760.1500000049872,-0.05489174471112361 +152031,760.1550000049873,-0.054891687047149064 +152032,760.1600000049874,-0.05489162938101174 +152033,760.1650000049875,-0.05489157171271154 +152034,760.1700000049876,-0.05489151404224839 +152035,760.1750000049877,-0.05489145636962222 +152036,760.1800000049878,-0.05489139869483293 +152037,760.185000004988,-0.054891341017880436 +152038,760.1900000049881,-0.05489128333876467 +152039,760.1950000049882,-0.05489122565748552 +152040,760.2000000049883,-0.05489116797404293 +152041,760.2050000049884,-0.054891110288436795 +152042,760.2100000049885,-0.05489105260066704 +152043,760.2150000049886,-0.0548909949107336 +152044,760.2200000049887,-0.05489093721863637 +152045,760.2250000049888,-0.05489087952437527 +152046,760.2300000049889,-0.05489082182795021 +152047,760.235000004989,-0.05489076412936112 +152048,760.2400000049892,-0.054890706428607904 +152049,760.2450000049893,-0.05489064872569049 +152050,760.2500000049894,-0.05489059102060878 +152051,760.2550000049895,-0.05489053331336271 +152052,760.2600000049896,-0.05489047560395217 +152053,760.2650000049897,-0.0548904178923771 +152054,760.2700000049898,-0.05489036017863741 +152055,760.2750000049899,-0.05489030246273301 +152056,760.28000000499,-0.05489024474466381 +152057,760.2850000049901,-0.054890187024429736 +152058,760.2900000049902,-0.0548901293020307 +152059,760.2950000049904,-0.05489007157746663 +152060,760.3000000049905,-0.05489001385073743 +152061,760.3050000049906,-0.05488995612184301 +152062,760.3100000049907,-0.0548898983907833 +152063,760.3150000049908,-0.05488984065755821 +152064,760.3200000049909,-0.05488978292216765 +152065,760.325000004991,-0.05488972518461155 +152066,760.3300000049911,-0.05488966744488982 +152067,760.3350000049912,-0.05488960970300238 +152068,760.3400000049913,-0.05488955195894913 +152069,760.3450000049914,-0.05488949421272998 +152070,760.3500000049916,-0.05488943646434488 +152071,760.3550000049917,-0.05488937871379372 +152072,760.3600000049918,-0.054889320961076425 +152073,760.3650000049919,-0.05488926320619291 +152074,760.370000004992,-0.05488920544914308 +152075,760.3750000049921,-0.05488914768992686 +152076,760.3800000049922,-0.05488908992854417 +152077,760.3850000049923,-0.05488903216499492 +152078,760.3900000049924,-0.054888974399279006 +152079,760.3950000049925,-0.05488891663139638 +152080,760.4000000049926,-0.05488885886134695 +152081,760.4050000049928,-0.054888801089130614 +152082,760.4100000049929,-0.05488874331474729 +152083,760.415000004993,-0.054888685538196896 +152084,760.4200000049931,-0.05488862775947935 +152085,760.4250000049932,-0.054888569978594565 +152086,760.4300000049933,-0.054888512195542465 +152087,760.4350000049934,-0.05488845441032295 +152088,760.4400000049935,-0.054888396622935945 +152089,760.4450000049936,-0.05488833883338137 +152090,760.4500000049937,-0.054888281041659125 +152091,760.4550000049938,-0.054888223247769145 +152092,760.460000004994,-0.05488816545171133 +152093,760.4650000049941,-0.054888107653485604 +152094,760.4700000049942,-0.05488804985309187 +152095,760.4750000049943,-0.05488799205053006 +152096,760.4800000049944,-0.05488793424580007 +152097,760.4850000049945,-0.05488787643890183 +152098,760.4900000049946,-0.05488781862983525 +152099,760.4950000049947,-0.054887760818600244 +152100,760.5000000049948,-0.05488770300519673 +152101,760.5050000049949,-0.05488764518962462 +152102,760.510000004995,-0.054887587371883824 +152103,760.5150000049952,-0.05488752955197427 +152104,760.5200000049953,-0.054887471729895866 +152105,760.5250000049954,-0.05488741390564852 +152106,760.5300000049955,-0.05488735607923215 +152107,760.5350000049956,-0.05488729825064668 +152108,760.5400000049957,-0.05488724041989203 +152109,760.5450000049958,-0.054887182586968085 +152110,760.5500000049959,-0.05488712475187478 +152111,760.555000004996,-0.05488706691461204 +152112,760.5600000049961,-0.05488700907517975 +152113,760.5650000049963,-0.05488695123357785 +152114,760.5700000049964,-0.05488689338980625 +152115,760.5750000049965,-0.054886835543864865 +152116,760.5800000049966,-0.0548867776957536 +152117,760.5850000049967,-0.05488671984547237 +152118,760.5900000049968,-0.054886661993021106 +152119,760.5950000049969,-0.05488660413839971 +152120,760.600000004997,-0.05488654628160809 +152121,760.6050000049971,-0.054886488422646165 +152122,760.6100000049972,-0.05488643056151386 +152123,760.6150000049973,-0.05488637269821109 +152124,760.6200000049975,-0.05488631483273775 +152125,760.6250000049976,-0.05488625696509378 +152126,760.6300000049977,-0.054886199095279066 +152127,760.6350000049978,-0.05488614122329355 +152128,760.6400000049979,-0.054886083349137124 +152129,760.645000004998,-0.054886025472809706 +152130,760.6500000049981,-0.054885967594311226 +152131,760.6550000049982,-0.05488590971364158 +152132,760.6600000049983,-0.05488585183080069 +152133,760.6650000049984,-0.05488579394578848 +152134,760.6700000049985,-0.05488573605860485 +152135,760.6750000049987,-0.05488567816924972 +152136,760.6800000049988,-0.05488562027772299 +152137,760.6850000049989,-0.054885562384024596 +152138,760.690000004999,-0.05488550448815444 +152139,760.6950000049991,-0.054885446590112436 +152140,760.7000000049992,-0.05488538868989851 +152141,760.7050000049993,-0.05488533078751256 +152142,760.7100000049994,-0.0548852728829545 +152143,760.7150000049995,-0.05488521497622425 +152144,760.7200000049996,-0.05488515706732173 +152145,760.7250000049997,-0.05488509915624684 +152146,760.7300000049999,-0.054885041242999505 +152147,760.735000005,-0.054884983327579635 +152148,760.7400000050001,-0.05488492540998715 +152149,760.7450000050002,-0.05488486749022195 +152150,760.7500000050003,-0.054884809568283954 +152151,760.7550000050004,-0.05488475164417309 +152152,760.7600000050005,-0.05488469371788927 +152153,760.7650000050006,-0.05488463578943238 +152154,760.7700000050007,-0.05488457785880236 +152155,760.7750000050008,-0.0548845199259991 +152156,760.7800000050009,-0.05488446199102254 +152157,760.785000005001,-0.05488440405387257 +152158,760.7900000050012,-0.054884346114549135 +152159,760.7950000050013,-0.05488428817305211 +152160,760.8000000050014,-0.054884230229381444 +152161,760.8050000050015,-0.05488417228353703 +152162,760.8100000050016,-0.05488411433551878 +152163,760.8150000050017,-0.05488405638532662 +152164,760.8200000050018,-0.054883998432960455 +152165,760.8250000050019,-0.054883940478420185 +152166,760.830000005002,-0.05488388252170574 +152167,760.8350000050021,-0.05488382456281704 +152168,760.8400000050023,-0.054883766601753994 +152169,760.8450000050024,-0.054883708638516514 +152170,760.8500000050025,-0.0548836506731045 +152171,760.8550000050026,-0.05488359270551787 +152172,760.8600000050027,-0.05488353473575656 +152173,760.8650000050028,-0.05488347676382045 +152174,760.8700000050029,-0.05488341878970948 +152175,760.875000005003,-0.05488336081342355 +152176,760.8800000050031,-0.054883302834962566 +152177,760.8850000050032,-0.05488324485432645 +152178,760.8900000050033,-0.054883186871515124 +152179,760.8950000050035,-0.054883128886528486 +152180,760.9000000050036,-0.05488307089936646 +152181,760.9050000050037,-0.05488301291002896 +152182,760.9100000050038,-0.05488295491851588 +152183,760.9150000050039,-0.05488289692482715 +152184,760.920000005004,-0.05488283892896269 +152185,760.9250000050041,-0.05488278093092238 +152186,760.9300000050042,-0.05488272293070617 +152187,760.9350000050043,-0.054882664928313944 +152188,760.9400000050044,-0.05488260692374563 +152189,760.9450000050045,-0.054882548917001145 +152190,760.9500000050047,-0.0548824909080804 +152191,760.9550000050048,-0.05488243289698329 +152192,760.9600000050049,-0.05488237488370974 +152193,760.965000005005,-0.05488231686825968 +152194,760.9700000050051,-0.054882258850633 +152195,760.9750000050052,-0.054882200830829606 +152196,760.9800000050053,-0.05488214280884944 +152197,760.9850000050054,-0.054882084784692385 +152198,760.9900000050055,-0.05488202675835836 +152199,760.9950000050056,-0.054881968729847304 +152200,761.0000000050057,-0.05488191069915909 +152201,761.0050000050059,-0.05488185266629367 +152202,761.010000005006,-0.054881794631250924 +152203,761.0150000050061,-0.05488173659403078 +152204,761.0200000050062,-0.054881678554633155 +152205,761.0250000050063,-0.05488162051305794 +152206,761.0300000050064,-0.05488156246930507 +152207,761.0350000050065,-0.05488150442337444 +152208,761.0400000050066,-0.05488144637526598 +152209,761.0450000050067,-0.05488138832497958 +152210,761.0500000050068,-0.054881330272515176 +152211,761.055000005007,-0.054881272217872666 +152212,761.060000005007,-0.05488121416105196 +152213,761.0650000050072,-0.054881156102052985 +152214,761.0700000050073,-0.054881098040875646 +152215,761.0750000050074,-0.05488103997751985 +152216,761.0800000050075,-0.0548809819119855 +152217,761.0850000050076,-0.05488092384427253 +152218,761.0900000050077,-0.05488086577438084 +152219,761.0950000050078,-0.05488080770231034 +152220,761.1000000050079,-0.05488074962806094 +152221,761.105000005008,-0.05488069155163257 +152222,761.1100000050081,-0.05488063347302513 +152223,761.1150000050083,-0.05488057539223853 +152224,761.1200000050084,-0.05488051730927268 +152225,761.1250000050085,-0.054880459224127494 +152226,761.1300000050086,-0.05488040113680289 +152227,761.1350000050087,-0.05488034304729877 +152228,761.1400000050088,-0.054880284955615054 +152229,761.1450000050089,-0.05488022686175165 +152230,761.150000005009,-0.054880168765708476 +152231,761.1550000050091,-0.054880110667485424 +152232,761.1600000050092,-0.05488005256708243 +152233,761.1650000050093,-0.05487999446449939 +152234,761.1700000050095,-0.054879936359736224 +152235,761.1750000050096,-0.054879878252792835 +152236,761.1800000050097,-0.05487982014366915 +152237,761.1850000050098,-0.05487976203236507 +152238,761.1900000050099,-0.054879703918880494 +152239,761.19500000501,-0.05487964580321535 +152240,761.2000000050101,-0.05487958768536956 +152241,761.2050000050102,-0.054879529565343005 +152242,761.2100000050103,-0.05487947144313563 +152243,761.2150000050104,-0.05487941331874733 +152244,761.2200000050105,-0.054879355192178 +152245,761.2250000050107,-0.054879297063427576 +152246,761.2300000050108,-0.05487923893249595 +152247,761.2350000050109,-0.05487918079938305 +152248,761.240000005011,-0.054879122664088786 +152249,761.2450000050111,-0.054879064526613064 +152250,761.2500000050112,-0.054879006386955795 +152251,761.2550000050113,-0.05487894824511689 +152252,761.2600000050114,-0.05487889010109626 +152253,761.2650000050115,-0.05487883195489381 +152254,761.2700000050116,-0.054878773806509476 +152255,761.2750000050117,-0.05487871565594314 +152256,761.2800000050119,-0.05487865750319472 +152257,761.285000005012,-0.05487859934826413 +152258,761.2900000050121,-0.054878541191151285 +152259,761.2950000050122,-0.05487848303185609 +152260,761.3000000050123,-0.054878424870378466 +152261,761.3050000050124,-0.054878366706718314 +152262,761.3100000050125,-0.05487830854087555 +152263,761.3150000050126,-0.054878250372850074 +152264,761.3200000050127,-0.05487819220264181 +152265,761.3250000050128,-0.05487813403025068 +152266,761.330000005013,-0.05487807585567657 +152267,761.3350000050131,-0.054878017678919394 +152268,761.3400000050132,-0.05487795949997907 +152269,761.3450000050133,-0.05487790131885551 +152270,761.3500000050134,-0.05487784313554862 +152271,761.3550000050135,-0.054877784950058316 +152272,761.3600000050136,-0.0548777267623845 +152273,761.3650000050137,-0.0548776685725271 +152274,761.3700000050138,-0.054877610380486004 +152275,761.3750000050139,-0.05487755218626114 +152276,761.380000005014,-0.054877493989852415 +152277,761.3850000050141,-0.05487743579125973 +152278,761.3900000050143,-0.05487737759048301 +152279,761.3950000050144,-0.054877319387522154 +152280,761.4000000050145,-0.05487726118237707 +152281,761.4050000050146,-0.05487720297504768 +152282,761.4100000050147,-0.05487714476553389 +152283,761.4150000050148,-0.054877086553835615 +152284,761.4200000050149,-0.05487702833995275 +152285,761.425000005015,-0.05487697012388522 +152286,761.4300000050151,-0.05487691190563292 +152287,761.4350000050152,-0.054876853685195785 +152288,761.4400000050153,-0.054876795462573714 +152289,761.4450000050155,-0.05487673723776661 +152290,761.4500000050156,-0.054876679010774386 +152291,761.4550000050157,-0.05487662078159694 +152292,761.4600000050158,-0.054876562550234216 +152293,761.4650000050159,-0.054876504316686094 +152294,761.470000005016,-0.05487644608095249 +152295,761.4750000050161,-0.05487638784303333 +152296,761.4800000050162,-0.05487632960292851 +152297,761.4850000050163,-0.054876271360637933 +152298,761.4900000050164,-0.054876213116161525 +152299,761.4950000050165,-0.05487615486949919 +152300,761.5000000050167,-0.05487609662065083 +152301,761.5050000050168,-0.05487603836961637 +152302,761.5100000050169,-0.05487598011639571 +152303,761.515000005017,-0.054875921860988754 +152304,761.5200000050171,-0.054875863603395435 +152305,761.5250000050172,-0.05487580534361563 +152306,761.5300000050173,-0.054875747081649266 +152307,761.5350000050174,-0.05487568881749626 +152308,761.5400000050175,-0.054875630551156504 +152309,761.5450000050176,-0.05487557228262993 +152310,761.5500000050178,-0.05487551401191644 +152311,761.5550000050179,-0.054875455739015935 +152312,761.560000005018,-0.054875397463928326 +152313,761.5650000050181,-0.05487533918665352 +152314,761.5700000050182,-0.05487528090719144 +152315,761.5750000050183,-0.054875222625541994 +152316,761.5800000050184,-0.05487516434170507 +152317,761.5850000050185,-0.054875106055680606 +152318,761.5900000050186,-0.05487504776746849 +152319,761.5950000050187,-0.05487498947706864 +152320,761.6000000050188,-0.054874931184480974 +152321,761.605000005019,-0.05487487288970539 +152322,761.6100000050191,-0.0548748145927418 +152323,761.6150000050192,-0.054874756293590114 +152324,761.6200000050193,-0.05487469799225023 +152325,761.6250000050194,-0.05487463968872208 +152326,761.6300000050195,-0.05487458138300556 +152327,761.6350000050196,-0.05487452307510059 +152328,761.6400000050197,-0.05487446476500705 +152329,761.6450000050198,-0.054874406452724886 +152330,761.6500000050199,-0.05487434813825398 +152331,761.65500000502,-0.054874289821594265 +152332,761.6600000050202,-0.05487423150274562 +152333,761.6650000050203,-0.05487417318170797 +152334,761.6700000050204,-0.05487411485848124 +152335,761.6750000050205,-0.05487405653306532 +152336,761.6800000050206,-0.054873998205460114 +152337,761.6850000050207,-0.054873939875665544 +152338,761.6900000050208,-0.05487388154368151 +152339,761.6950000050209,-0.054873823209507934 +152340,761.700000005021,-0.05487376487314471 +152341,761.7050000050211,-0.05487370653459175 +152342,761.7100000050212,-0.05487364819384897 +152343,761.7150000050214,-0.054873589850916275 +152344,761.7200000050215,-0.054873531505793584 +152345,761.7250000050216,-0.054873473158480776 +152346,761.7300000050217,-0.0548734148089778 +152347,761.7350000050218,-0.05487335645728453 +152348,761.7400000050219,-0.0548732981034009 +152349,761.745000005022,-0.05487323974732681 +152350,761.7500000050221,-0.05487318138906216 +152351,761.7550000050222,-0.054873123028606856 +152352,761.7600000050223,-0.05487306466596083 +152353,761.7650000050224,-0.05487300630112397 +152354,761.7700000050226,-0.05487294793409619 +152355,761.7750000050227,-0.054872889564877396 +152356,761.7800000050228,-0.0548728311934675 +152357,761.7850000050229,-0.05487277281986641 +152358,761.790000005023,-0.05487271444407404 +152359,761.7950000050231,-0.054872656066090285 +152360,761.8000000050232,-0.05487259768591507 +152361,761.8050000050233,-0.05487253930354828 +152362,761.8100000050234,-0.05487248091898985 +152363,761.8150000050235,-0.054872422532239666 +152364,761.8200000050236,-0.05487236414329766 +152365,761.8250000050238,-0.05487230575216371 +152366,761.8300000050239,-0.05487224735883776 +152367,761.835000005024,-0.05487218896331969 +152368,761.8400000050241,-0.05487213056560941 +152369,761.8450000050242,-0.05487207216570684 +152370,761.8500000050243,-0.05487201376361189 +152371,761.8550000050244,-0.05487195535932446 +152372,761.8600000050245,-0.05487189695284445 +152373,761.8650000050246,-0.0548718385441718 +152374,761.8700000050247,-0.054871780133306375 +152375,761.8750000050248,-0.0548717217202481 +152376,761.880000005025,-0.054871663304996904 +152377,761.8850000050251,-0.05487160488755267 +152378,761.8900000050252,-0.05487154646791531 +152379,761.8950000050253,-0.054871488046084736 +152380,761.9000000050254,-0.05487142962206086 +152381,761.9050000050255,-0.05487137119584358 +152382,761.9100000050256,-0.05487131276743281 +152383,761.9150000050257,-0.054871254336828455 +152384,761.9200000050258,-0.05487119590403043 +152385,761.9250000050259,-0.05487113746903864 +152386,761.930000005026,-0.05487107903185299 +152387,761.9350000050262,-0.05487102059247339 +152388,761.9400000050263,-0.054870962150899746 +152389,761.9450000050264,-0.05487090370713196 +152390,761.9500000050265,-0.05487084526116995 +152391,761.9550000050266,-0.05487078681301361 +152392,761.9600000050267,-0.05487072836266286 +152393,761.9650000050268,-0.054870669910117596 +152394,761.9700000050269,-0.05487061145537774 +152395,761.975000005027,-0.05487055299844319 +152396,761.9800000050271,-0.054870494539313856 +152397,761.9850000050272,-0.05487043607798964 +152398,761.9900000050274,-0.05487037761447046 +152399,761.9950000050275,-0.05487031914875621 +152400,762.0000000050276,-0.054870260680846814 +152401,762.0050000050277,-0.05487020221074217 +152402,762.0100000050278,-0.05487014373844218 +152403,762.0150000050279,-0.054870085263946766 +152404,762.020000005028,-0.054870026787255825 +152405,762.0250000050281,-0.054869968308369266 +152406,762.0300000050282,-0.05486990982728699 +152407,762.0350000050283,-0.05486985134400891 +152408,762.0400000050284,-0.05486979285853494 +152409,762.0450000050286,-0.054869734370864974 +152410,762.0500000050287,-0.054869675880998926 +152411,762.0550000050288,-0.054869617388936705 +152412,762.0600000050289,-0.054869558894678205 +152413,762.065000005029,-0.05486950039822335 +152414,762.0700000050291,-0.05486944189957204 +152415,762.0750000050292,-0.05486938339872418 +152416,762.0800000050293,-0.05486932489567968 +152417,762.0850000050294,-0.05486926639043845 +152418,762.0900000050295,-0.0548692078830004 +152419,762.0950000050296,-0.05486914937336542 +152420,762.1000000050298,-0.05486909086153342 +152421,762.1050000050299,-0.054869032347504315 +152422,762.11000000503,-0.05486897383127801 +152423,762.1150000050301,-0.05486891531285443 +152424,762.1200000050302,-0.054868856792233446 +152425,762.1250000050303,-0.05486879826941498 +152426,762.1300000050304,-0.05486873974439895 +152427,762.1350000050305,-0.05486868121718526 +152428,762.1400000050306,-0.054868622687773795 +152429,762.1450000050307,-0.054868564156164486 +152430,762.1500000050308,-0.05486850562235722 +152431,762.155000005031,-0.05486844708635192 +152432,762.1600000050311,-0.05486838854814849 +152433,762.1650000050312,-0.054868330007746824 +152434,762.1700000050313,-0.054868271465146834 +152435,762.1750000050314,-0.05486821292034844 +152436,762.1800000050315,-0.05486815437335153 +152437,762.1850000050316,-0.05486809582415601 +152438,762.1900000050317,-0.054868037272761815 +152439,762.1950000050318,-0.05486797871916882 +152440,762.2000000050319,-0.05486792016337694 +152441,762.205000005032,-0.054867861605386085 +152442,762.2100000050322,-0.05486780304519616 +152443,762.2150000050323,-0.05486774448280707 +152444,762.2200000050324,-0.05486768591821873 +152445,762.2250000050325,-0.054867627351431025 +152446,762.2300000050326,-0.054867568782443886 +152447,762.2350000050327,-0.0548675102112572 +152448,762.2400000050328,-0.05486745163787087 +152449,762.2450000050329,-0.054867393062284824 +152450,762.250000005033,-0.05486733448449896 +152451,762.2550000050331,-0.054867275904513166 +152452,762.2600000050332,-0.054867217322327376 +152453,762.2650000050334,-0.05486715873794148 +152454,762.2700000050335,-0.05486710015135539 +152455,762.2750000050336,-0.054867041562569004 +152456,762.2800000050337,-0.05486698297158223 +152457,762.2850000050338,-0.05486692437839497 +152458,762.2900000050339,-0.054866865783007146 +152459,762.295000005034,-0.05486680718541865 +152460,762.3000000050341,-0.0548667485856294 +152461,762.3050000050342,-0.05486668998363928 +152462,762.3100000050343,-0.05486663137944821 +152463,762.3150000050344,-0.054866572773056094 +152464,762.3200000050346,-0.05486651416446283 +152465,762.3250000050347,-0.054866455553668335 +152466,762.3300000050348,-0.05486639694067252 +152467,762.3350000050349,-0.05486633832547527 +152468,762.340000005035,-0.054866279708076504 +152469,762.3450000050351,-0.05486622108847612 +152470,762.3500000050352,-0.05486616246667404 +152471,762.3550000050353,-0.054866103842670155 +152472,762.3600000050354,-0.05486604521646437 +152473,762.3650000050355,-0.0548659865880566 +152474,762.3700000050356,-0.05486592795744674 +152475,762.3750000050358,-0.054865869324634706 +152476,762.3800000050359,-0.05486581068962039 +152477,762.385000005036,-0.05486575205240371 +152478,762.3900000050361,-0.054865693412984556 +152479,762.3950000050362,-0.05486563477136285 +152480,762.4000000050363,-0.05486557612753849 +152481,762.4050000050364,-0.05486551748151139 +152482,762.4100000050365,-0.054865458833281436 +152483,762.4150000050366,-0.05486540018284855 +152484,762.4200000050367,-0.05486534153021262 +152485,762.4250000050368,-0.05486528287537357 +152486,762.430000005037,-0.054865224218331295 +152487,762.4350000050371,-0.054865165559085695 +152488,762.4400000050372,-0.05486510689763669 +152489,762.4450000050373,-0.054865048233984186 +152490,762.4500000050374,-0.05486498956812807 +152491,762.4550000050375,-0.05486493090006825 +152492,762.4600000050376,-0.054864872229804636 +152493,762.4650000050377,-0.05486481355733713 +152494,762.4700000050378,-0.05486475488266565 +152495,762.4750000050379,-0.0548646962057901 +152496,762.480000005038,-0.05486463752671037 +152497,762.4850000050382,-0.054864578845426365 +152498,762.4900000050383,-0.05486452016193799 +152499,762.4950000050384,-0.05486446147624516 +152500,762.5000000050385,-0.054864402788347776 +152501,762.5050000050386,-0.05486434409824574 +152502,762.5100000050387,-0.05486428540593896 +152503,762.5150000050388,-0.054864226711427336 +152504,762.5200000050389,-0.05486416801471077 +152505,762.525000005039,-0.05486410931578918 +152506,762.5300000050391,-0.054864050614662464 +152507,762.5350000050393,-0.05486399191133052 +152508,762.5400000050394,-0.05486393320579325 +152509,762.5450000050395,-0.054863874498050566 +152510,762.5500000050396,-0.05486381578810237 +152511,762.5550000050397,-0.05486375707594859 +152512,762.5600000050398,-0.05486369836158909 +152513,762.5650000050399,-0.0548636396450238 +152514,762.57000000504,-0.05486358092625261 +152515,762.5750000050401,-0.05486352220527543 +152516,762.5800000050402,-0.05486346348209217 +152517,762.5850000050403,-0.05486340475670274 +152518,762.5900000050405,-0.05486334602910702 +152519,762.5950000050406,-0.05486328729930493 +152520,762.6000000050407,-0.05486322856729638 +152521,762.6050000050408,-0.05486316983308126 +152522,762.6100000050409,-0.05486311109665948 +152523,762.615000005041,-0.05486305235803094 +152524,762.6200000050411,-0.05486299361719556 +152525,762.6250000050412,-0.054862934874153224 +152526,762.6300000050413,-0.05486287612890385 +152527,762.6350000050414,-0.054862817381447326 +152528,762.6400000050415,-0.05486275863178358 +152529,762.6450000050417,-0.0548626998799125 +152530,762.6500000050418,-0.05486264112583399 +152531,762.6550000050419,-0.054862582369547955 +152532,762.660000005042,-0.05486252361105429 +152533,762.6650000050421,-0.054862464850352906 +152534,762.6700000050422,-0.054862406087443714 +152535,762.6750000050423,-0.054862347322326616 +152536,762.6800000050424,-0.05486228855500151 +152537,762.6850000050425,-0.054862229785468314 +152538,762.6900000050426,-0.05486217101372691 +152539,762.6950000050427,-0.0548621122397772 +152540,762.7000000050429,-0.05486205346361912 +152541,762.705000005043,-0.05486199468525254 +152542,762.7100000050431,-0.05486193590467738 +152543,762.7150000050432,-0.05486187712189354 +152544,762.7200000050433,-0.054861818336900924 +152545,762.7250000050434,-0.05486175954969943 +152546,762.7300000050435,-0.05486170076028897 +152547,762.7350000050436,-0.054861641968669446 +152548,762.7400000050437,-0.05486158317484076 +152549,762.7450000050438,-0.05486152437880281 +152550,762.750000005044,-0.054861465580555505 +152551,762.755000005044,-0.05486140678009875 +152552,762.7600000050442,-0.05486134797743243 +152553,762.7650000050443,-0.05486128917255647 +152554,762.7700000050444,-0.05486123036547076 +152555,762.7750000050445,-0.054861171556175224 +152556,762.7800000050446,-0.05486111274466974 +152557,762.7850000050447,-0.05486105393095423 +152558,762.7900000050448,-0.05486099511502859 +152559,762.7950000050449,-0.05486093629689272 +152560,762.800000005045,-0.05486087747654652 +152561,762.8050000050451,-0.054860818653989896 +152562,762.8100000050453,-0.05486075982922276 +152563,762.8150000050454,-0.054860701002244994 +152564,762.8200000050455,-0.05486064217305652 +152565,762.8250000050456,-0.054860583341657235 +152566,762.8300000050457,-0.054860524508047036 +152567,762.8350000050458,-0.05486046567222584 +152568,762.8400000050459,-0.05486040683419354 +152569,762.845000005046,-0.054860347993950044 +152570,762.8500000050461,-0.05486028915149525 +152571,762.8550000050462,-0.054860230306829065 +152572,762.8600000050463,-0.05486017145995139 +152573,762.8650000050465,-0.05486011261086212 +152574,762.8700000050466,-0.05486005375956117 +152575,762.8750000050467,-0.05485999490604844 +152576,762.8800000050468,-0.054859936050323826 +152577,762.8850000050469,-0.05485987719238723 +152578,762.890000005047,-0.05485981833223856 +152579,762.8950000050471,-0.054859759469877714 +152580,762.9000000050472,-0.05485970060530461 +152581,762.9050000050473,-0.05485964173851913 +152582,762.9100000050474,-0.054859582869521195 +152583,762.9150000050475,-0.05485952399831068 +152584,762.9200000050477,-0.054859465124887506 +152585,762.9250000050478,-0.05485940624925158 +152586,762.9300000050479,-0.05485934737140279 +152587,762.935000005048,-0.054859288491341064 +152588,762.9400000050481,-0.05485922960906628 +152589,762.9450000050482,-0.054859170724578334 +152590,762.9500000050483,-0.05485911183787715 +152591,762.9550000050484,-0.05485905294896263 +152592,762.9600000050485,-0.05485899405783465 +152593,762.9650000050486,-0.05485893516449313 +152594,762.9700000050487,-0.05485887626893798 +152595,762.9750000050489,-0.0548588173711691 +152596,762.980000005049,-0.054858758471186375 +152597,762.9850000050491,-0.05485869956898972 +152598,762.9900000050492,-0.054858640664579045 +152599,762.9950000050493,-0.05485858175795423 +152600,763.0000000050494,-0.05485852284911519 +152601,763.0050000050495,-0.05485846393806182 +152602,763.0100000050496,-0.05485840502479403 +152603,763.0150000050497,-0.054858346109311715 +152604,763.0200000050498,-0.05485828719161478 +152605,763.02500000505,-0.05485822827170314 +152606,763.03000000505,-0.054858169349576685 +152607,763.0350000050502,-0.054858110425235314 +152608,763.0400000050503,-0.05485805149867892 +152609,763.0450000050504,-0.05485799256990743 +152610,763.0500000050505,-0.05485793363892071 +152611,763.0550000050506,-0.0548578747057187 +152612,763.0600000050507,-0.054857815770301285 +152613,763.0650000050508,-0.05485775683266836 +152614,763.0700000050509,-0.05485769789281983 +152615,763.075000005051,-0.0548576389507556 +152616,763.0800000050511,-0.05485758000647557 +152617,763.0850000050513,-0.054857521059979646 +152618,763.0900000050514,-0.05485746211126772 +152619,763.0950000050515,-0.0548574031603397 +152620,763.1000000050516,-0.0548573442071955 +152621,763.1050000050517,-0.054857285251834996 +152622,763.1100000050518,-0.0548572262942581 +152623,763.1150000050519,-0.05485716733446472 +152624,763.120000005052,-0.05485710837245475 +152625,763.1250000050521,-0.054857049408228095 +152626,763.1300000050522,-0.054856990441784645 +152627,763.1350000050523,-0.05485693147312432 +152628,763.1400000050525,-0.054856872502247 +152629,763.1450000050526,-0.05485681352915261 +152630,763.1500000050527,-0.05485675455384103 +152631,763.1550000050528,-0.05485669557631216 +152632,763.1600000050529,-0.05485663659656592 +152633,763.165000005053,-0.054856577614602206 +152634,763.1700000050531,-0.05485651863042091 +152635,763.1750000050532,-0.05485645964402194 +152636,763.1800000050533,-0.054856400655405195 +152637,763.1850000050534,-0.05485634166457058 +152638,763.1900000050535,-0.05485628267151797 +152639,763.1950000050537,-0.05485622367624731 +152640,763.2000000050538,-0.054856164678758465 +152641,763.2050000050539,-0.05485610567905135 +152642,763.210000005054,-0.054856046677125875 +152643,763.2150000050541,-0.05485598767298193 +152644,763.2200000050542,-0.054855928666619404 +152645,763.2250000050543,-0.054855869658038216 +152646,763.2300000050544,-0.05485581064723826 +152647,763.2350000050545,-0.05485575163421943 +152648,763.2400000050546,-0.054855692618981634 +152649,763.2450000050547,-0.054855633601524775 +152650,763.2500000050549,-0.05485557458184875 +152651,763.255000005055,-0.054855515559953445 +152652,763.2600000050551,-0.05485545653583879 +152653,763.2650000050552,-0.05485539750950467 +152654,763.2700000050553,-0.05485533848095099 +152655,763.2750000050554,-0.05485527945017765 +152656,763.2800000050555,-0.05485522041718454 +152657,763.2850000050556,-0.05485516138197157 +152658,763.2900000050557,-0.05485510234453864 +152659,763.2950000050558,-0.054855043304885644 +152660,763.300000005056,-0.05485498426301248 +152661,763.3050000050561,-0.05485492521891906 +152662,763.3100000050562,-0.054854866172605286 +152663,763.3150000050563,-0.05485480712407103 +152664,763.3200000050564,-0.054854748073316216 +152665,763.3250000050565,-0.05485468902034074 +152666,763.3300000050566,-0.054854629965144515 +152667,763.3350000050567,-0.05485457090772742 +152668,763.3400000050568,-0.05485451184808937 +152669,763.3450000050569,-0.054854452786230266 +152670,763.350000005057,-0.054854393722149994 +152671,763.3550000050571,-0.05485433465584846 +152672,763.3600000050573,-0.05485427558732558 +152673,763.3650000050574,-0.05485421651658122 +152674,763.3700000050575,-0.054854157443615305 +152675,763.3750000050576,-0.05485409836842773 +152676,763.3800000050577,-0.05485403929101838 +152677,763.3850000050578,-0.05485398021138718 +152678,763.3900000050579,-0.054853921129534015 +152679,763.395000005058,-0.054853862045458786 +152680,763.4000000050581,-0.0548538029591614 +152681,763.4050000050582,-0.05485374387064175 +152682,763.4100000050584,-0.054853684779899735 +152683,763.4150000050585,-0.05485362568693526 +152684,763.4200000050586,-0.05485356659174822 +152685,763.4250000050587,-0.05485350749433852 +152686,763.4300000050588,-0.05485344839470604 +152687,763.4350000050589,-0.0548533892928507 +152688,763.440000005059,-0.05485333018877239 +152689,763.4450000050591,-0.05485327108247101 +152690,763.4500000050592,-0.05485321197394647 +152691,763.4550000050593,-0.05485315286319866 +152692,763.4600000050594,-0.05485309375022749 +152693,763.4650000050596,-0.05485303463503284 +152694,763.4700000050597,-0.05485297551761462 +152695,763.4750000050598,-0.05485291639797273 +152696,763.4800000050599,-0.05485285727610707 +152697,763.48500000506,-0.054852798152017546 +152698,763.4900000050601,-0.05485273902570404 +152699,763.4950000050602,-0.054852679897166454 +152700,763.5000000050603,-0.0548526207664047 +152701,763.5050000050604,-0.05485256163341867 +152702,763.5100000050605,-0.05485250249820827 +152703,763.5150000050606,-0.05485244336077338 +152704,763.5200000050608,-0.05485238422111391 +152705,763.5250000050609,-0.054852325079229776 +152706,763.530000005061,-0.05485226593512085 +152707,763.5350000050611,-0.05485220678878704 +152708,763.5400000050612,-0.054852147640228256 +152709,763.5450000050613,-0.05485208848944439 +152710,763.5500000050614,-0.05485202933643532 +152711,763.5550000050615,-0.054851970181200985 +152712,763.5600000050616,-0.054851911023741255 +152713,763.5650000050617,-0.05485185186405603 +152714,763.5700000050618,-0.05485179270214522 +152715,763.575000005062,-0.05485173353800872 +152716,763.5800000050621,-0.054851674371646425 +152717,763.5850000050622,-0.05485161520305823 +152718,763.5900000050623,-0.05485155603224405 +152719,763.5950000050624,-0.05485149685920376 +152720,763.6000000050625,-0.05485143768393728 +152721,763.6050000050626,-0.05485137850644449 +152722,763.6100000050627,-0.0548513193267253 +152723,763.6150000050628,-0.05485126014477962 +152724,763.6200000050629,-0.05485120096060733 +152725,763.625000005063,-0.05485114177420833 +152726,763.6300000050632,-0.054851082585582536 +152727,763.6350000050633,-0.054851023394729824 +152728,763.6400000050634,-0.0548509642016501 +152729,763.6450000050635,-0.05485090500634326 +152730,763.6500000050636,-0.054850845808809195 +152731,763.6550000050637,-0.05485078660904783 +152732,763.6600000050638,-0.05485072740705904 +152733,763.6650000050639,-0.05485066820284273 +152734,763.670000005064,-0.054850608996398806 +152735,763.6750000050641,-0.054850549787727146 +152736,763.6800000050642,-0.05485049057682767 +152737,763.6850000050644,-0.05485043136370027 +152738,763.6900000050645,-0.05485037214834483 +152739,763.6950000050646,-0.054850312930761265 +152740,763.7000000050647,-0.05485025371094946 +152741,763.7050000050648,-0.05485019448890933 +152742,763.7100000050649,-0.054850135264640755 +152743,763.715000005065,-0.05485007603814364 +152744,763.7200000050651,-0.05485001680941788 +152745,763.7250000050652,-0.05484995757846338 +152746,763.7300000050653,-0.05484989834528003 +152747,763.7350000050654,-0.05484983910986773 +152748,763.7400000050656,-0.0548497798722264 +152749,763.7450000050657,-0.0548497206323559 +152750,763.7500000050658,-0.05484966139025615 +152751,763.7550000050659,-0.05484960214592704 +152752,763.760000005066,-0.05484954289936848 +152753,763.7650000050661,-0.05484948365058034 +152754,763.7700000050662,-0.05484942439956254 +152755,763.7750000050663,-0.054849365146314964 +152756,763.7800000050664,-0.05484930589083753 +152757,763.7850000050665,-0.05484924663313012 +152758,763.7900000050666,-0.05484918737319264 +152759,763.7950000050668,-0.054849128111024985 +152760,763.8000000050669,-0.05484906884662705 +152761,763.805000005067,-0.05484900957999872 +152762,763.8100000050671,-0.05484895031113992 +152763,763.8150000050672,-0.05484889104005052 +152764,763.8200000050673,-0.05484883176673043 +152765,763.8250000050674,-0.054848772491179545 +152766,763.8300000050675,-0.05484871321339777 +152767,763.8350000050676,-0.054848653933385 +152768,763.8400000050677,-0.05484859465114113 +152769,763.8450000050678,-0.05484853536666604 +152770,763.850000005068,-0.05484847607995966 +152771,763.8550000050681,-0.05484841679102186 +152772,763.8600000050682,-0.054848357499852556 +152773,763.8650000050683,-0.05484829820645163 +152774,763.8700000050684,-0.054848238910818976 +152775,763.8750000050685,-0.05484817961295451 +152776,763.8800000050686,-0.054848120312858115 +152777,763.8850000050687,-0.05484806101052969 +152778,763.8900000050688,-0.05484800170596914 +152779,763.8950000050689,-0.05484794239917635 +152780,763.900000005069,-0.05484788309015121 +152781,763.9050000050692,-0.05484782377889364 +152782,763.9100000050693,-0.05484776446540353 +152783,763.9150000050694,-0.054847705149680764 +152784,763.9200000050695,-0.054847645831725245 +152785,763.9250000050696,-0.05484758651153688 +152786,763.9300000050697,-0.05484752718911556 +152787,763.9350000050698,-0.054847467864461166 +152788,763.9400000050699,-0.05484740853757362 +152789,763.94500000507,-0.0548473492084528 +152790,763.9500000050701,-0.0548472898770986 +152791,763.9550000050702,-0.05484723054351095 +152792,763.9600000050704,-0.0548471712076897 +152793,763.9650000050705,-0.05484711186963477 +152794,763.9700000050706,-0.054847052529346074 +152795,763.9750000050707,-0.05484699318682347 +152796,763.9800000050708,-0.054846933842066875 +152797,763.9850000050709,-0.05484687449507619 +152798,763.990000005071,-0.05484681514585131 +152799,763.9950000050711,-0.054846755794392126 +152800,764.0000000050712,-0.05484669644069853 +152801,764.0050000050713,-0.05484663708477041 +152802,764.0100000050714,-0.05484657772660768 +152803,764.0150000050716,-0.05484651836621023 +152804,764.0200000050717,-0.054846459003577964 +152805,764.0250000050718,-0.05484639963871076 +152806,764.0300000050719,-0.05484634027160854 +152807,764.035000005072,-0.05484628090227119 +152808,764.0400000050721,-0.054846221530698604 +152809,764.0450000050722,-0.05484616215689066 +152810,764.0500000050723,-0.054846102780847276 +152811,764.0550000050724,-0.054846043402568344 +152812,764.0600000050725,-0.05484598402205374 +152813,764.0650000050726,-0.05484592463930339 +152814,764.0700000050728,-0.05484586525431718 +152815,764.0750000050729,-0.054845805867095 +152816,764.080000005073,-0.054845746477636736 +152817,764.0850000050731,-0.054845687085942306 +152818,764.0900000050732,-0.05484562769201159 +152819,764.0950000050733,-0.0548455682958445 +152820,764.1000000050734,-0.05484550889744092 +152821,764.1050000050735,-0.05484544949680076 +152822,764.1100000050736,-0.05484539009392388 +152823,764.1150000050737,-0.05484533068881021 +152824,764.1200000050738,-0.054845271281459634 +152825,764.125000005074,-0.05484521187187204 +152826,764.1300000050741,-0.054845152460047335 +152827,764.1350000050742,-0.05484509304598541 +152828,764.1400000050743,-0.05484503362968616 +152829,764.1450000050744,-0.05484497421114948 +152830,764.1500000050745,-0.05484491479037526 +152831,764.1550000050746,-0.05484485536736341 +152832,764.1600000050747,-0.054844795942113805 +152833,764.1650000050748,-0.05484473651462636 +152834,764.1700000050749,-0.05484467708490097 +152835,764.175000005075,-0.054844617652937515 +152836,764.1800000050752,-0.0548445582187359 +152837,764.1850000050753,-0.05484449878229602 +152838,764.1900000050754,-0.05484443934361777 +152839,764.1950000050755,-0.05484437990270104 +152840,764.2000000050756,-0.054844320459545716 +152841,764.2050000050757,-0.05484426101415171 +152842,764.2100000050758,-0.05484420156651892 +152843,764.2150000050759,-0.05484414211664723 +152844,764.220000005076,-0.054844082664536546 +152845,764.2250000050761,-0.05484402321018675 +152846,764.2300000050762,-0.054843963753597735 +152847,764.2350000050764,-0.0548439042947694 +152848,764.2400000050765,-0.05484384483370165 +152849,764.2450000050766,-0.054843785370394374 +152850,764.2500000050767,-0.054843725904847464 +152851,764.2550000050768,-0.05484366643706082 +152852,764.2600000050769,-0.05484360696703433 +152853,764.265000005077,-0.05484354749476789 +152854,764.2700000050771,-0.054843488020261406 +152855,764.2750000050772,-0.05484342854351475 +152856,764.2800000050773,-0.05484336906452784 +152857,764.2850000050774,-0.054843309583300554 +152858,764.2900000050776,-0.05484325009983279 +152859,764.2950000050777,-0.05484319061412445 +152860,764.3000000050778,-0.05484313112617542 +152861,764.3050000050779,-0.0548430716359856 +152862,764.310000005078,-0.05484301214355487 +152863,764.3150000050781,-0.054842952648883156 +152864,764.3200000050782,-0.05484289315197033 +152865,764.3250000050783,-0.05484283365281628 +152866,764.3300000050784,-0.054842774151420914 +152867,764.3350000050785,-0.05484271464778412 +152868,764.3400000050787,-0.0548426551419058 +152869,764.3450000050788,-0.05484259563378584 +152870,764.3500000050789,-0.05484253612342414 +152871,764.355000005079,-0.05484247661082058 +152872,764.3600000050791,-0.05484241709597508 +152873,764.3650000050792,-0.054842357578887516 +152874,764.3700000050793,-0.05484229805955778 +152875,764.3750000050794,-0.05484223853798578 +152876,764.3800000050795,-0.05484217901417139 +152877,764.3850000050796,-0.05484211948811452 +152878,764.3900000050797,-0.05484205995981506 +152879,764.3950000050799,-0.054842000429272904 +152880,764.40000000508,-0.054841940896487945 +152881,764.4050000050801,-0.05484188136146007 +152882,764.4100000050802,-0.05484182182418918 +152883,764.4150000050803,-0.05484176228467519 +152884,764.4200000050804,-0.05484170274291795 +152885,764.4250000050805,-0.054841643198917385 +152886,764.4300000050806,-0.05484158365267338 +152887,764.4350000050807,-0.05484152410418582 +152888,764.4400000050808,-0.054841464553454615 +152889,764.4450000050809,-0.054841405000479654 +152890,764.450000005081,-0.05484134544526083 +152891,764.4550000050812,-0.054841285887798026 +152892,764.4600000050813,-0.05484122632809114 +152893,764.4650000050814,-0.05484116676614008 +152894,764.4700000050815,-0.054841107201944725 +152895,764.4750000050816,-0.054841047635504965 +152896,764.4800000050817,-0.0548409880668207 +152897,764.4850000050818,-0.05484092849589183 +152898,764.4900000050819,-0.05484086892271824 +152899,764.495000005082,-0.054840809347299825 +152900,764.5000000050821,-0.054840749769636474 +152901,764.5050000050823,-0.05484069018972809 +152902,764.5100000050824,-0.05484063060757457 +152903,764.5150000050825,-0.054840571023175785 +152904,764.5200000050826,-0.054840511436531646 +152905,764.5250000050827,-0.054840451847642045 +152906,764.5300000050828,-0.05484039225650687 +152907,764.5350000050829,-0.05484033266312602 +152908,764.540000005083,-0.05484027306749938 +152909,764.5450000050831,-0.05484021346962685 +152910,764.5500000050832,-0.054840153869508315 +152911,764.5550000050833,-0.05484009426714367 +152912,764.5600000050835,-0.054840034662532816 +152913,764.5650000050836,-0.05483997505567564 +152914,764.5700000050837,-0.05483991544657204 +152915,764.5750000050838,-0.0548398558352219 +152916,764.5800000050839,-0.05483979622162511 +152917,764.585000005084,-0.054839736605781585 +152918,764.5900000050841,-0.05483967698769119 +152919,764.5950000050842,-0.05483961736735384 +152920,764.6000000050843,-0.05483955774476941 +152921,764.6050000050844,-0.0548394981199378 +152922,764.6100000050845,-0.05483943849285892 +152923,764.6150000050847,-0.05483937886353263 +152924,764.6200000050848,-0.05483931923195884 +152925,764.6250000050849,-0.054839259598137444 +152926,764.630000005085,-0.05483919996206833 +152927,764.6350000050851,-0.05483914032375141 +152928,764.6400000050852,-0.05483908068318654 +152929,764.6450000050853,-0.05483902104037364 +152930,764.6500000050854,-0.054838961395312594 +152931,764.6550000050855,-0.054838901748003294 +152932,764.6600000050856,-0.054838842098445625 +152933,764.6650000050857,-0.054838782446639485 +152934,764.6700000050859,-0.054838722792584775 +152935,764.675000005086,-0.054838663136281385 +152936,764.6800000050861,-0.054838603477729196 +152937,764.6850000050862,-0.05483854381692811 +152938,764.6900000050863,-0.054838484153878014 +152939,764.6950000050864,-0.0548384244885788 +152940,764.7000000050865,-0.054838364821030355 +152941,764.7050000050866,-0.05483830515123259 +152942,764.7100000050867,-0.05483824547918537 +152943,764.7150000050868,-0.054838185804888626 +152944,764.720000005087,-0.05483812612834221 +152945,764.725000005087,-0.05483806644954604 +152946,764.7300000050872,-0.05483800676849998 +152947,764.7350000050873,-0.05483794708520395 +152948,764.7400000050874,-0.05483788739965783 +152949,764.7450000050875,-0.05483782771186152 +152950,764.7500000050876,-0.05483776802181491 +152951,764.7550000050877,-0.054837708329517884 +152952,764.7600000050878,-0.05483764863497032 +152953,764.7650000050879,-0.05483758893817215 +152954,764.770000005088,-0.05483752923912323 +152955,764.7750000050881,-0.054837469537823466 +152956,764.7800000050883,-0.05483740983427275 +152957,764.7850000050884,-0.05483735012847096 +152958,764.7900000050885,-0.054837290420418 +152959,764.7950000050886,-0.054837230710113774 +152960,764.8000000050887,-0.054837170997558145 +152961,764.8050000050888,-0.054837111282751025 +152962,764.8100000050889,-0.05483705156569231 +152963,764.815000005089,-0.05483699184638186 +152964,764.8200000050891,-0.0548369321248196 +152965,764.8250000050892,-0.05483687240100541 +152966,764.8300000050893,-0.05483681267493919 +152967,764.8350000050895,-0.054836752946620805 +152968,764.8400000050896,-0.05483669321605016 +152969,764.8450000050897,-0.05483663348322716 +152970,764.8500000050898,-0.05483657374815168 +152971,764.8550000050899,-0.05483651401082362 +152972,764.86000000509,-0.05483645427124286 +152973,764.8650000050901,-0.054836394529409305 +152974,764.8700000050902,-0.054836334785322835 +152975,764.8750000050903,-0.05483627503898335 +152976,764.8800000050904,-0.054836215290390726 +152977,764.8850000050905,-0.05483615553954488 +152978,764.8900000050907,-0.05483609578644567 +152979,764.8950000050908,-0.054836036031093015 +152980,764.9000000050909,-0.0548359762734868 +152981,764.905000005091,-0.054835916513626896 +152982,764.9100000050911,-0.05483585675151322 +152983,764.9150000050912,-0.05483579698714564 +152984,764.9200000050913,-0.05483573722052407 +152985,764.9250000050914,-0.05483567745164838 +152986,764.9300000050915,-0.054835617680518485 +152987,764.9350000050916,-0.05483555790713424 +152988,764.9400000050917,-0.05483549813149557 +152989,764.9450000050919,-0.054835438353602356 +152990,764.950000005092,-0.054835378573454475 +152991,764.9550000050921,-0.054835318791051836 +152992,764.9600000050922,-0.05483525900639431 +152993,764.9650000050923,-0.05483519921948181 +152994,764.9700000050924,-0.0548351394303142 +152995,764.9750000050925,-0.054835079638891386 +152996,764.9800000050926,-0.054835019845213266 +152997,764.9850000050927,-0.054834960049279714 +152998,764.9900000050928,-0.05483490025109063 +152999,764.995000005093,-0.0548348404506459 +153000,765.000000005093,-0.054834780647945426 +153001,765.0050000050932,-0.054834720842989085 +153002,765.0100000050933,-0.05483466103577678 +153003,765.0150000050934,-0.05483460122630838 +153004,765.0200000050935,-0.054834541414583785 +153005,765.0250000050936,-0.054834481600602884 +153006,765.0300000050937,-0.054834421784365574 +153007,765.0350000050938,-0.05483436196587175 +153008,765.0400000050939,-0.054834302145121284 +153009,765.045000005094,-0.054834242322114084 +153010,765.0500000050941,-0.05483418249685002 +153011,765.0550000050943,-0.05483412266932901 +153012,765.0600000050944,-0.05483406283955091 +153013,765.0650000050945,-0.05483400300751563 +153014,765.0700000050946,-0.054833943173223064 +153015,765.0750000050947,-0.0548338833366731 +153016,765.0800000050948,-0.05483382349786561 +153017,765.0850000050949,-0.054833763656800504 +153018,765.090000005095,-0.05483370381347767 +153019,765.0950000050951,-0.05483364396789699 +153020,765.1000000050952,-0.05483358412005835 +153021,765.1050000050953,-0.054833524269961645 +153022,765.1100000050955,-0.05483346441760677 +153023,765.1150000050956,-0.054833404562993605 +153024,765.1200000050957,-0.05483334470612205 +153025,765.1250000050958,-0.054833284846991986 +153026,765.1300000050959,-0.05483322498560331 +153027,765.135000005096,-0.0548331651219559 +153028,765.1400000050961,-0.05483310525604965 +153029,765.1450000050962,-0.05483304538788446 +153030,765.1500000050963,-0.0548329855174602 +153031,765.1550000050964,-0.05483292564477678 +153032,765.1600000050965,-0.05483286576983407 +153033,765.1650000050967,-0.05483280589263197 +153034,765.1700000050968,-0.05483274601317036 +153035,765.1750000050969,-0.05483268613144915 +153036,765.180000005097,-0.054832626247468215 +153037,765.1850000050971,-0.054832566361227436 +153038,765.1900000050972,-0.05483250647272672 +153039,765.1950000050973,-0.05483244658196594 +153040,765.2000000050974,-0.054832386688944995 +153041,765.2050000050975,-0.05483232679366377 +153042,765.2100000050976,-0.05483226689612217 +153043,765.2150000050977,-0.054832206996320056 +153044,765.2200000050979,-0.054832147094257336 +153045,765.225000005098,-0.05483208718993389 +153046,765.2300000050981,-0.054832027283349606 +153047,765.2350000050982,-0.054831967374504374 +153048,765.2400000050983,-0.0548319074633981 +153049,765.2450000050984,-0.05483184755003065 +153050,765.2500000050985,-0.05483178763440192 +153051,765.2550000050986,-0.054831727716511805 +153052,765.2600000050987,-0.054831667796360194 +153053,765.2650000050988,-0.05483160787394697 +153054,765.270000005099,-0.05483154794927201 +153055,765.2750000050991,-0.05483148802233522 +153056,765.2800000050992,-0.05483142809313648 +153057,765.2850000050993,-0.054831368161675685 +153058,765.2900000050994,-0.05483130822795272 +153059,765.2950000050995,-0.05483124829196747 +153060,765.3000000050996,-0.05483118835371983 +153061,765.3050000050997,-0.05483112841320968 +153062,765.3100000050998,-0.05483106847043692 +153063,765.3150000050999,-0.05483100852540143 +153064,765.3200000051,-0.054830948578103104 +153065,765.3250000051002,-0.05483088862854183 +153066,765.3300000051003,-0.054830828676717486 +153067,765.3350000051004,-0.05483076872262997 +153068,765.3400000051005,-0.05483070876627916 +153069,765.3450000051006,-0.05483064880766496 +153070,765.3500000051007,-0.05483058884678724 +153071,765.3550000051008,-0.054830528883645896 +153072,765.3600000051009,-0.054830468918240824 +153073,765.365000005101,-0.05483040895057191 +153074,765.3700000051011,-0.05483034898063903 +153075,765.3750000051012,-0.05483028900844208 +153076,765.3800000051014,-0.05483022903398096 +153077,765.3850000051015,-0.05483016905725553 +153078,765.3900000051016,-0.05483010907826571 +153079,765.3950000051017,-0.054830049097011356 +153080,765.4000000051018,-0.05482998911349238 +153081,765.4050000051019,-0.054829929127708656 +153082,765.410000005102,-0.05482986913966008 +153083,765.4150000051021,-0.054829809149346535 +153084,765.4200000051022,-0.0548297491567679 +153085,765.4250000051023,-0.05482968916192408 +153086,765.4300000051024,-0.054829629164814965 +153087,765.4350000051026,-0.05482956916544042 +153088,765.4400000051027,-0.054829509163800354 +153089,765.4450000051028,-0.054829449159894635 +153090,765.4500000051029,-0.05482938915372317 +153091,765.455000005103,-0.05482932914528584 +153092,765.4600000051031,-0.05482926913458253 +153093,765.4650000051032,-0.05482920912161312 +153094,765.4700000051033,-0.05482914910637752 +153095,765.4750000051034,-0.05482908908887559 +153096,765.4800000051035,-0.054829029069107235 +153097,765.4850000051036,-0.05482896904707234 +153098,765.4900000051038,-0.05482890902277077 +153099,765.4950000051039,-0.05482884899620244 +153100,765.500000005104,-0.05482878896736723 +153101,765.5050000051041,-0.054828728936265024 +153102,765.5100000051042,-0.054828668902895714 +153103,765.5150000051043,-0.054828608867259196 +153104,765.5200000051044,-0.054828548829355325 +153105,765.5250000051045,-0.054828488789184025 +153106,765.5300000051046,-0.05482842874674515 +153107,765.5350000051047,-0.0548283687020386 +153108,765.5400000051048,-0.05482830865506428 +153109,765.545000005105,-0.054828248605822055 +153110,765.5500000051051,-0.054828188554311826 +153111,765.5550000051052,-0.054828128500533466 +153112,765.5600000051053,-0.05482806844448688 +153113,765.5650000051054,-0.05482800838617193 +153114,765.5700000051055,-0.05482794832558852 +153115,765.5750000051056,-0.05482788826273654 +153116,765.5800000051057,-0.054827828197615856 +153117,765.5850000051058,-0.05482776813022638 +153118,765.5900000051059,-0.05482770806056797 +153119,765.595000005106,-0.05482764798864054 +153120,765.6000000051062,-0.054827587914443955 +153121,765.6050000051063,-0.054827527837978125 +153122,765.6100000051064,-0.05482746775924292 +153123,765.6150000051065,-0.05482740767823823 +153124,765.6200000051066,-0.05482734759496394 +153125,765.6250000051067,-0.05482728750941993 +153126,765.6300000051068,-0.05482722742160611 +153127,765.6350000051069,-0.05482716733152235 +153128,765.640000005107,-0.054827107239168525 +153129,765.6450000051071,-0.05482704714454454 +153130,765.6500000051072,-0.05482698704765028 +153131,765.6550000051074,-0.05482692694848562 +153132,765.6600000051075,-0.05482686684705045 +153133,765.6650000051076,-0.05482680674334466 +153134,765.6700000051077,-0.05482674663736813 +153135,765.6750000051078,-0.054826686529120754 +153136,765.6800000051079,-0.05482662641860242 +153137,765.685000005108,-0.05482656630581301 +153138,765.6900000051081,-0.0548265061907524 +153139,765.6950000051082,-0.054826446073420486 +153140,765.7000000051083,-0.054826385953817156 +153141,765.7050000051084,-0.05482632583194229 +153142,765.7100000051086,-0.05482626570779577 +153143,765.7150000051087,-0.0548262055813775 +153144,765.7200000051088,-0.054826145452687346 +153145,765.7250000051089,-0.05482608532172519 +153146,765.730000005109,-0.05482602518849093 +153147,765.7350000051091,-0.05482596505298446 +153148,765.7400000051092,-0.054825904915205656 +153149,765.7450000051093,-0.05482584477515441 +153150,765.7500000051094,-0.05482578463283059 +153151,765.7550000051095,-0.054825724488234105 +153152,765.7600000051096,-0.054825664341364815 +153153,765.7650000051098,-0.05482560419222263 +153154,765.7700000051099,-0.05482554404080742 +153155,765.77500000511,-0.05482548388711908 +153156,765.7800000051101,-0.05482542373115749 +153157,765.7850000051102,-0.05482536357292253 +153158,765.7900000051103,-0.05482530341241409 +153159,765.7950000051104,-0.054825243249632054 +153160,765.8000000051105,-0.054825183084576325 +153161,765.8050000051106,-0.05482512291724676 +153162,765.8100000051107,-0.05482506274764326 +153163,765.8150000051108,-0.05482500257576571 +153164,765.820000005111,-0.054824942401613994 +153165,765.8250000051111,-0.05482488222518799 +153166,765.8300000051112,-0.0548248220464876 +153167,765.8350000051113,-0.05482476186551268 +153168,765.8400000051114,-0.05482470168226315 +153169,765.8450000051115,-0.05482464149673888 +153170,765.8500000051116,-0.054824581308939746 +153171,765.8550000051117,-0.054824521118865634 +153172,765.8600000051118,-0.05482446092651644 +153173,765.8650000051119,-0.05482440073189204 +153174,765.870000005112,-0.054824340534992334 +153175,765.8750000051122,-0.054824280335817197 +153176,765.8800000051123,-0.0548242201343665 +153177,765.8850000051124,-0.05482415993064015 +153178,765.8900000051125,-0.05482409972463802 +153179,765.8950000051126,-0.05482403951635999 +153180,765.9000000051127,-0.05482397930580595 +153181,765.9050000051128,-0.054823919092975786 +153182,765.9100000051129,-0.054823858877869384 +153183,765.915000005113,-0.05482379866048663 +153184,765.9200000051131,-0.05482373844082741 +153185,765.9250000051132,-0.0548236782188916 +153186,765.9300000051134,-0.05482361799467909 +153187,765.9350000051135,-0.05482355776818976 +153188,765.9400000051136,-0.0548234975394235 +153189,765.9450000051137,-0.05482343730838019 +153190,765.9500000051138,-0.05482337707505971 +153191,765.9550000051139,-0.054823316839461955 +153192,765.960000005114,-0.05482325660158681 +153193,765.9650000051141,-0.054823196361434144 +153194,765.9700000051142,-0.05482313611900385 +153195,765.9750000051143,-0.05482307587429581 +153196,765.9800000051144,-0.054823015627309915 +153197,765.9850000051146,-0.054822955378046045 +153198,765.9900000051147,-0.054822895126504095 +153199,765.9950000051148,-0.054822834872683926 +153200,766.0000000051149,-0.05482277461658545 +153201,766.005000005115,-0.05482271435820853 +153202,766.0100000051151,-0.054822654097553054 +153203,766.0150000051152,-0.0548225938346189 +153204,766.0200000051153,-0.054822533569405967 +153205,766.0250000051154,-0.05482247330191413 +153206,766.0300000051155,-0.054822413032143275 +153207,766.0350000051156,-0.054822352760093285 +153208,766.0400000051158,-0.05482229248576404 +153209,766.0450000051159,-0.054822232209155435 +153210,766.050000005116,-0.05482217193026733 +153211,766.0550000051161,-0.05482211164909963 +153212,766.0600000051162,-0.054822051365652213 +153213,766.0650000051163,-0.05482199107992497 +153214,766.0700000051164,-0.054821930791917765 +153215,766.0750000051165,-0.0548218705016305 +153216,766.0800000051166,-0.05482181020906304 +153217,766.0850000051167,-0.054821749914215304 +153218,766.0900000051168,-0.054821689617087145 +153219,766.095000005117,-0.05482162931767844 +153220,766.1000000051171,-0.0548215690159891 +153221,766.1050000051172,-0.05482150871201898 +153222,766.1100000051173,-0.054821448405768 +153223,766.1150000051174,-0.05482138809723601 +153224,766.1200000051175,-0.0548213277864229 +153225,766.1250000051176,-0.054821267473328564 +153226,766.1300000051177,-0.05482120715795287 +153227,766.1350000051178,-0.05482114684029571 +153228,766.1400000051179,-0.05482108652035697 +153229,766.145000005118,-0.05482102619813654 +153230,766.1500000051182,-0.05482096587363428 +153231,766.1550000051183,-0.05482090554685009 +153232,766.1600000051184,-0.05482084521778384 +153233,766.1650000051185,-0.054820784886435436 +153234,766.1700000051186,-0.054820724552804734 +153235,766.1750000051187,-0.05482066421689164 +153236,766.1800000051188,-0.05482060387869602 +153237,766.1850000051189,-0.05482054353821776 +153238,766.190000005119,-0.05482048319545676 +153239,766.1950000051191,-0.05482042285041289 +153240,766.2000000051193,-0.054820362503086015 +153241,766.2050000051194,-0.05482030215347605 +153242,766.2100000051195,-0.054820241801582854 +153243,766.2150000051196,-0.054820181447406316 +153244,766.2200000051197,-0.05482012109094632 +153245,766.2250000051198,-0.05482006073220275 +153246,766.2300000051199,-0.05482000037117548 +153247,766.23500000512,-0.0548199400078644 +153248,766.2400000051201,-0.0548198796422694 +153249,766.2450000051202,-0.054819819274390356 +153250,766.2500000051203,-0.05481975890422715 +153251,766.2550000051205,-0.05481969853177965 +153252,766.2600000051206,-0.05481963815704776 +153253,766.2650000051207,-0.05481957778003135 +153254,766.2700000051208,-0.05481951740073032 +153255,766.2750000051209,-0.05481945701914452 +153256,766.280000005121,-0.05481939663527386 +153257,766.2850000051211,-0.05481933624911821 +153258,766.2900000051212,-0.05481927586067747 +153259,766.2950000051213,-0.05481921546995149 +153260,766.3000000051214,-0.05481915507694018 +153261,766.3050000051215,-0.05481909468164341 +153262,766.3100000051217,-0.05481903428406106 +153263,766.3150000051218,-0.05481897388419302 +153264,766.3200000051219,-0.05481891348203915 +153265,766.325000005122,-0.05481885307759936 +153266,766.3300000051221,-0.05481879267087352 +153267,766.3350000051222,-0.054818732261861514 +153268,766.3400000051223,-0.05481867185056322 +153269,766.3450000051224,-0.05481861143697853 +153270,766.3500000051225,-0.05481855102110731 +153271,766.3550000051226,-0.05481849060294945 +153272,766.3600000051227,-0.05481843018250484 +153273,766.3650000051229,-0.05481836975977335 +153274,766.370000005123,-0.05481830933475486 +153275,766.3750000051231,-0.05481824890744926 +153276,766.3800000051232,-0.054818188477856425 +153277,766.3850000051233,-0.05481812804597624 +153278,766.3900000051234,-0.05481806761180859 +153279,766.3950000051235,-0.054818007175353345 +153280,766.4000000051236,-0.0548179467366104 +153281,766.4050000051237,-0.054817886295579626 +153282,766.4100000051238,-0.05481782585226091 +153283,766.4150000051239,-0.05481776540665413 +153284,766.420000005124,-0.05481770495875918 +153285,766.4250000051242,-0.05481764450857592 +153286,766.4300000051243,-0.054817584056104256 +153287,766.4350000051244,-0.05481752360134404 +153288,766.4400000051245,-0.05481746314429516 +153289,766.4450000051246,-0.054817402684957516 +153290,766.4500000051247,-0.054817342223330984 +153291,766.4550000051248,-0.054817281759415436 +153292,766.4600000051249,-0.054817221293210754 +153293,766.465000005125,-0.054817160824716826 +153294,766.4700000051251,-0.054817100353933515 +153295,766.4750000051253,-0.05481703988086072 +153296,766.4800000051254,-0.05481697940549832 +153297,766.4850000051255,-0.05481691892784619 +153298,766.4900000051256,-0.05481685844790421 +153299,766.4950000051257,-0.054816797965672265 +153300,766.5000000051258,-0.05481673748115024 +153301,766.5050000051259,-0.05481667699433801 +153302,766.510000005126,-0.05481661650523546 +153303,766.5150000051261,-0.05481655601384247 +153304,766.5200000051262,-0.05481649552015892 +153305,766.5250000051263,-0.054816435024184686 +153306,766.5300000051265,-0.05481637452591964 +153307,766.5350000051266,-0.05481631402536368 +153308,766.5400000051267,-0.05481625352251669 +153309,766.5450000051268,-0.05481619301737854 +153310,766.5500000051269,-0.0548161325099491 +153311,766.555000005127,-0.05481607200022826 +153312,766.5600000051271,-0.05481601148821591 +153313,766.5650000051272,-0.054815950973911926 +153314,766.5700000051273,-0.05481589045731617 +153315,766.5750000051274,-0.054815829938428554 +153316,766.5800000051275,-0.05481576941724893 +153317,766.5850000051277,-0.05481570889377719 +153318,766.5900000051278,-0.05481564836801322 +153319,766.5950000051279,-0.05481558783995688 +153320,766.600000005128,-0.05481552730960807 +153321,766.6050000051281,-0.05481546677696667 +153322,766.6100000051282,-0.05481540624203255 +153323,766.6150000051283,-0.0548153457048056 +153324,766.6200000051284,-0.054815285165285686 +153325,766.6250000051285,-0.0548152246234727 +153326,766.6300000051286,-0.05481516407936651 +153327,766.6350000051287,-0.054815103532967015 +153328,766.6400000051289,-0.05481504298427407 +153329,766.645000005129,-0.054814982433287585 +153330,766.6500000051291,-0.0548149218800074 +153331,766.6550000051292,-0.05481486132443344 +153332,766.6600000051293,-0.05481480076656556 +153333,766.6650000051294,-0.05481474020640363 +153334,766.6700000051295,-0.054814679643947546 +153335,766.6750000051296,-0.054814619079197185 +153336,766.6800000051297,-0.05481455851215243 +153337,766.6850000051298,-0.05481449794281315 +153338,766.69000000513,-0.05481443737117923 +153339,766.69500000513,-0.05481437679725055 +153340,766.7000000051302,-0.05481431622102698 +153341,766.7050000051303,-0.05481425564250843 +153342,766.7100000051304,-0.05481419506169475 +153343,766.7150000051305,-0.05481413447858582 +153344,766.7200000051306,-0.05481407389318151 +153345,766.7250000051307,-0.05481401330548174 +153346,766.7300000051308,-0.05481395271548635 +153347,766.7350000051309,-0.05481389212319525 +153348,766.740000005131,-0.05481383152860829 +153349,766.7450000051311,-0.054813770931725375 +153350,766.7500000051313,-0.05481371033254637 +153351,766.7550000051314,-0.05481364973107114 +153352,766.7600000051315,-0.05481358912729958 +153353,766.7650000051316,-0.05481352852123158 +153354,766.7700000051317,-0.054813467912867 +153355,766.7750000051318,-0.054813407302205734 +153356,766.7800000051319,-0.05481334668924765 +153357,766.785000005132,-0.05481328607399263 +153358,766.7900000051321,-0.05481322545644055 +153359,766.7950000051322,-0.0548131648365913 +153360,766.8000000051323,-0.05481310421444475 +153361,766.8050000051325,-0.054813043590000776 +153362,766.8100000051326,-0.05481298296325926 +153363,766.8150000051327,-0.054812922334220075 +153364,766.8200000051328,-0.05481286170288311 +153365,766.8250000051329,-0.05481280106924824 +153366,766.830000005133,-0.05481274043331534 +153367,766.8350000051331,-0.05481267979508429 +153368,766.8400000051332,-0.05481261915455498 +153369,766.8450000051333,-0.054812558511727276 +153370,766.8500000051334,-0.05481249786660105 +153371,766.8550000051335,-0.05481243721917619 +153372,766.8600000051337,-0.054812376569452585 +153373,766.8650000051338,-0.0548123159174301 +153374,766.8700000051339,-0.054812255263108615 +153375,766.875000005134,-0.05481219460648801 +153376,766.8800000051341,-0.054812133947568155 +153377,766.8850000051342,-0.054812073286348933 +153378,766.8900000051343,-0.054812012622830225 +153379,766.8950000051344,-0.05481195195701191 +153380,766.9000000051345,-0.05481189128889386 +153381,766.9050000051346,-0.054811830618475964 +153382,766.9100000051347,-0.054811769945758086 +153383,766.9150000051349,-0.054811709270740125 +153384,766.920000005135,-0.054811648593421934 +153385,766.9250000051351,-0.05481158791380341 +153386,766.9300000051352,-0.05481152723188441 +153387,766.9350000051353,-0.05481146654766483 +153388,766.9400000051354,-0.05481140586114455 +153389,766.9450000051355,-0.054811345172323445 +153390,766.9500000051356,-0.054811284481201386 +153391,766.9550000051357,-0.054811223787778245 +153392,766.9600000051358,-0.054811163092053916 +153393,766.965000005136,-0.05481110239402827 +153394,766.9700000051361,-0.05481104169370117 +153395,766.9750000051362,-0.05481098099107251 +153396,766.9800000051363,-0.054810920286142165 +153397,766.9850000051364,-0.054810859578910014 +153398,766.9900000051365,-0.05481079886937593 +153399,766.9950000051366,-0.054810738157539805 +153400,767.0000000051367,-0.05481067744340149 +153401,767.0050000051368,-0.05481061672696089 +153402,767.0100000051369,-0.05481055600821786 +153403,767.015000005137,-0.05481049528717229 +153404,767.0200000051371,-0.05481043456382405 +153405,767.0250000051373,-0.05481037383817302 +153406,767.0300000051374,-0.05481031311021908 +153407,767.0350000051375,-0.05481025237996211 +153408,767.0400000051376,-0.05481019164740198 +153409,767.0450000051377,-0.05481013091253857 +153410,767.0500000051378,-0.05481007017537176 +153411,767.0550000051379,-0.05481000943590142 +153412,767.060000005138,-0.054809948694127426 +153413,767.0650000051381,-0.05480988795004967 +153414,767.0700000051382,-0.054809827203668025 +153415,767.0750000051383,-0.05480976645498235 +153416,767.0800000051385,-0.05480970570399254 +153417,767.0850000051386,-0.054809644950698455 +153418,767.0900000051387,-0.054809584195099986 +153419,767.0950000051388,-0.054809523437197014 +153420,767.1000000051389,-0.05480946267698941 +153421,767.105000005139,-0.05480940191447705 +153422,767.1100000051391,-0.0548093411496598 +153423,767.1150000051392,-0.05480928038253755 +153424,767.1200000051393,-0.05480921961311017 +153425,767.1250000051394,-0.05480915884137754 +153426,767.1300000051396,-0.05480909806733954 +153427,767.1350000051397,-0.05480903729099603 +153428,767.1400000051398,-0.05480897651234692 +153429,767.1450000051399,-0.05480891573139205 +153430,767.15000000514,-0.054808854948131314 +153431,767.1550000051401,-0.05480879416256458 +153432,767.1600000051402,-0.05480873337469174 +153433,767.1650000051403,-0.05480867258451266 +153434,767.1700000051404,-0.05480861179202722 +153435,767.1750000051405,-0.054808550997235285 +153436,767.1800000051406,-0.05480849020013675 +153437,767.1850000051408,-0.05480842940073147 +153438,767.1900000051409,-0.05480836859901933 +153439,767.195000005141,-0.05480830779500022 +153440,767.2000000051411,-0.054808246988674 +153441,767.2050000051412,-0.054808186180040554 +153442,767.2100000051413,-0.05480812536909974 +153443,767.2150000051414,-0.05480806455585146 +153444,767.2200000051415,-0.054808003740295576 +153445,767.2250000051416,-0.05480794292243196 +153446,767.2300000051417,-0.05480788210226051 +153447,767.2350000051418,-0.05480782127978108 +153448,767.240000005142,-0.054807760454993554 +153449,767.2450000051421,-0.054807699627897805 +153450,767.2500000051422,-0.0548076387984937 +153451,767.2550000051423,-0.054807577966781124 +153452,767.2600000051424,-0.054807517132759956 +153453,767.2650000051425,-0.05480745629643008 +153454,767.2700000051426,-0.05480739545779135 +153455,767.2750000051427,-0.05480733461684365 +153456,767.2800000051428,-0.05480727377358686 +153457,767.2850000051429,-0.05480721292802085 +153458,767.290000005143,-0.0548071520801455 +153459,767.2950000051432,-0.05480709122996068 +153460,767.3000000051433,-0.054807030377466266 +153461,767.3050000051434,-0.05480696952266215 +153462,767.3100000051435,-0.05480690866554818 +153463,767.3150000051436,-0.054806847806124256 +153464,767.3200000051437,-0.05480678694439023 +153465,767.3250000051438,-0.054806726080345994 +153466,767.3300000051439,-0.054806665213991426 +153467,767.335000005144,-0.05480660434532638 +153468,767.3400000051441,-0.054806543474350745 +153469,767.3450000051442,-0.0548064826010644 +153470,767.3500000051444,-0.054806421725467215 +153471,767.3550000051445,-0.05480636084755908 +153472,767.3600000051446,-0.05480629996733984 +153473,767.3650000051447,-0.054806239084809395 +153474,767.3700000051448,-0.0548061781999676 +153475,767.3750000051449,-0.05480611731281435 +153476,767.380000005145,-0.05480605642334951 +153477,767.3850000051451,-0.05480599553157295 +153478,767.3900000051452,-0.05480593463748456 +153479,767.3950000051453,-0.0548058737410842 +153480,767.4000000051454,-0.05480581284237175 +153481,767.4050000051456,-0.05480575194134708 +153482,767.4100000051457,-0.05480569103801007 +153483,767.4150000051458,-0.05480563013236059 +153484,767.4200000051459,-0.054805569224398526 +153485,767.425000005146,-0.054805508314123744 +153486,767.4300000051461,-0.05480544740153612 +153487,767.4350000051462,-0.054805386486635514 +153488,767.4400000051463,-0.054805325569421824 +153489,767.4450000051464,-0.05480526464989491 +153490,767.4500000051465,-0.05480520372805465 +153491,767.4550000051466,-0.05480514280390092 +153492,767.4600000051468,-0.0548050818774336 +153493,767.4650000051469,-0.054805020948652555 +153494,767.470000005147,-0.05480496001755766 +153495,767.4750000051471,-0.0548048990841488 +153496,767.4800000051472,-0.05480483814842583 +153497,767.4850000051473,-0.054804777210388636 +153498,767.4900000051474,-0.05480471627003709 +153499,767.4950000051475,-0.05480465532737108 +153500,767.5000000051476,-0.054804594382390465 +153501,767.5050000051477,-0.05480453343509511 +153502,767.5100000051478,-0.05480447248548491 +153503,767.515000005148,-0.054804411533559715 +153504,767.5200000051481,-0.05480435057931942 +153505,767.5250000051482,-0.05480428962276389 +153506,767.5300000051483,-0.054804228663893 +153507,767.5350000051484,-0.05480416770270662 +153508,767.5400000051485,-0.05480410673920464 +153509,767.5450000051486,-0.05480404577338692 +153510,767.5500000051487,-0.05480398480525332 +153511,767.5550000051488,-0.054803923834803744 +153512,767.5600000051489,-0.05480386286203805 +153513,767.565000005149,-0.0548038018869561 +153514,767.5700000051492,-0.05480374090955777 +153515,767.5750000051493,-0.054803679929842974 +153516,767.5800000051494,-0.05480361894781154 +153517,767.5850000051495,-0.05480355796346336 +153518,767.5900000051496,-0.0548034969767983 +153519,767.5950000051497,-0.05480343598781623 +153520,767.6000000051498,-0.05480337499651704 +153521,767.6050000051499,-0.054803314002900595 +153522,767.61000000515,-0.05480325300696676 +153523,767.6150000051501,-0.05480319200871542 +153524,767.6200000051502,-0.05480313100814644 +153525,767.6250000051504,-0.0548030700052597 +153526,767.6300000051505,-0.05480300900005506 +153527,767.6350000051506,-0.05480294799253241 +153528,767.6400000051507,-0.05480288698269162 +153529,767.6450000051508,-0.05480282597053256 +153530,767.6500000051509,-0.054802764956055086 +153531,767.655000005151,-0.05480270393925909 +153532,767.6600000051511,-0.05480264292014445 +153533,767.6650000051512,-0.054802581898711025 +153534,767.6700000051513,-0.05480252087495869 +153535,767.6750000051514,-0.054802459848887326 +153536,767.6800000051516,-0.05480239882049679 +153537,767.6850000051517,-0.05480233778978698 +153538,767.6900000051518,-0.05480227675675775 +153539,767.6950000051519,-0.05480221572140897 +153540,767.700000005152,-0.05480215468374053 +153541,767.7050000051521,-0.05480209364375229 +153542,767.7100000051522,-0.05480203260144411 +153543,767.7150000051523,-0.05480197155681589 +153544,767.7200000051524,-0.054801910509867484 +153545,767.7250000051525,-0.054801849460598774 +153546,767.7300000051526,-0.054801788409009636 +153547,767.7350000051528,-0.05480172735509993 +153548,767.7400000051529,-0.05480166629886953 +153549,767.745000005153,-0.054801605240318324 +153550,767.7500000051531,-0.05480154417944617 +153551,767.7550000051532,-0.05480148311625293 +153552,767.7600000051533,-0.0548014220507385 +153553,767.7650000051534,-0.054801360982902725 +153554,767.7700000051535,-0.054801299912745495 +153555,767.7750000051536,-0.05480123884026669 +153556,767.7800000051537,-0.05480117776546616 +153557,767.7850000051538,-0.054801116688343796 +153558,767.790000005154,-0.05480105560889946 +153559,767.7950000051541,-0.05480099452713303 +153560,767.8000000051542,-0.054800933443044375 +153561,767.8050000051543,-0.05480087235663336 +153562,767.8100000051544,-0.054800811267899874 +153563,767.8150000051545,-0.05480075017684378 +153564,767.8200000051546,-0.05480068908346495 +153565,767.8250000051547,-0.05480062798776325 +153566,767.8300000051548,-0.05480056688973856 +153567,767.8350000051549,-0.05480050578939074 +153568,767.840000005155,-0.05480044468671967 +153569,767.8450000051552,-0.05480038358172523 +153570,767.8500000051553,-0.05480032247440728 +153571,767.8550000051554,-0.05480026136476569 +153572,767.8600000051555,-0.054800200252800337 +153573,767.8650000051556,-0.0548001391385111 +153574,767.8700000051557,-0.05480007802189783 +153575,767.8750000051558,-0.05480001690296042 +153576,767.8800000051559,-0.05479995578169873 +153577,767.885000005156,-0.05479989465811262 +153578,767.8900000051561,-0.05479983353220199 +153579,767.8950000051562,-0.05479977240396668 +153580,767.9000000051564,-0.05479971127340659 +153581,767.9050000051565,-0.054799650140521565 +153582,767.9100000051566,-0.05479958900531149 +153583,767.9150000051567,-0.054799527867776233 +153584,767.9200000051568,-0.05479946672791567 +153585,767.9250000051569,-0.054799405585729676 +153586,767.930000005157,-0.05479934444121811 +153587,767.9350000051571,-0.05479928329438086 +153588,767.9400000051572,-0.05479922214521777 +153589,767.9450000051573,-0.05479916099372874 +153590,767.9500000051574,-0.05479909983991361 +153591,767.9550000051576,-0.05479903868377228 +153592,767.9600000051577,-0.05479897752530461 +153593,767.9650000051578,-0.05479891636451046 +153594,767.9700000051579,-0.05479885520138972 +153595,767.975000005158,-0.05479879403594224 +153596,767.9800000051581,-0.0547987328681679 +153597,767.9850000051582,-0.054798671698066584 +153598,767.9900000051583,-0.054798610525638156 +153599,767.9950000051584,-0.05479854935088247 +153600,768.0000000051585,-0.05479848817379941 +153601,768.0050000051586,-0.054798426994388846 +153602,768.0100000051588,-0.05479836581265066 +153603,768.0150000051589,-0.054798304628584704 +153604,768.020000005159,-0.05479824344219086 +153605,768.0250000051591,-0.05479818225346897 +153606,768.0300000051592,-0.05479812106241893 +153607,768.0350000051593,-0.05479805986904061 +153608,768.0400000051594,-0.05479799867333388 +153609,768.0450000051595,-0.05479793747529861 +153610,768.0500000051596,-0.05479787627493467 +153611,768.0550000051597,-0.05479781507224192 +153612,768.0600000051598,-0.05479775386722024 +153613,768.06500000516,-0.0547976926598695 +153614,768.0700000051601,-0.05479763145018957 +153615,768.0750000051602,-0.05479757023818031 +153616,768.0800000051603,-0.0547975090238416 +153617,768.0850000051604,-0.05479744780717331 +153618,768.0900000051605,-0.05479738658817532 +153619,768.0950000051606,-0.05479732536684748 +153620,768.1000000051607,-0.05479726414318965 +153621,768.1050000051608,-0.054797202917201734 +153622,768.1100000051609,-0.05479714168888357 +153623,768.115000005161,-0.05479708045823506 +153624,768.1200000051612,-0.05479701922525605 +153625,768.1250000051613,-0.054796957989946424 +153626,768.1300000051614,-0.05479689675230603 +153627,768.1350000051615,-0.05479683551233475 +153628,768.1400000051616,-0.05479677427003246 +153629,768.1450000051617,-0.05479671302539903 +153630,768.1500000051618,-0.054796651778434326 +153631,768.1550000051619,-0.054796590529138205 +153632,768.160000005162,-0.054796529277510546 +153633,768.1650000051621,-0.05479646802355123 +153634,768.1700000051623,-0.05479640676726011 +153635,768.1750000051624,-0.05479634550863706 +153636,768.1800000051625,-0.05479628424768195 +153637,768.1850000051626,-0.05479622298439465 +153638,768.1900000051627,-0.05479616171877503 +153639,768.1950000051628,-0.05479610045082295 +153640,768.2000000051629,-0.05479603918053829 +153641,768.205000005163,-0.054795977907920915 +153642,768.2100000051631,-0.05479591663297069 +153643,768.2150000051632,-0.0547958553556875 +153644,768.2200000051633,-0.05479579407607119 +153645,768.2250000051635,-0.05479573279412165 +153646,768.2300000051636,-0.054795671509838745 +153647,768.2350000051637,-0.054795610223222324 +153648,768.2400000051638,-0.05479554893427228 +153649,768.2450000051639,-0.05479548764298848 +153650,768.250000005164,-0.05479542634937077 +153651,768.2550000051641,-0.054795365053419046 +153652,768.2600000051642,-0.05479530375513316 +153653,768.2650000051643,-0.05479524245451299 +153654,768.2700000051644,-0.054795181151558396 +153655,768.2750000051645,-0.05479511984626926 +153656,768.2800000051647,-0.054795058538645434 +153657,768.2850000051648,-0.0547949972286868 +153658,768.2900000051649,-0.054794935916393214 +153659,768.295000005165,-0.05479487460176455 +153660,768.3000000051651,-0.05479481328480068 +153661,768.3050000051652,-0.05479475196550148 +153662,768.3100000051653,-0.054794690643866786 +153663,768.3150000051654,-0.0547946293198965 +153664,768.3200000051655,-0.054794567993590476 +153665,768.3250000051656,-0.05479450666494859 +153666,768.3300000051657,-0.0547944453339707 +153667,768.3350000051659,-0.05479438400065668 +153668,768.340000005166,-0.05479432266500639 +153669,768.3450000051661,-0.054794261327019714 +153670,768.3500000051662,-0.05479419998669651 +153671,768.3550000051663,-0.05479413864403665 +153672,768.3600000051664,-0.05479407729904 +153673,768.3650000051665,-0.05479401595170643 +153674,768.3700000051666,-0.054793954602035795 +153675,768.3750000051667,-0.05479389325002798 +153676,768.3800000051668,-0.05479383189568284 +153677,768.385000005167,-0.05479377053900027 +153678,768.390000005167,-0.054793709179980096 +153679,768.3950000051672,-0.05479364781862222 +153680,768.4000000051673,-0.054793586454926484 +153681,768.4050000051674,-0.054793525088892764 +153682,768.4100000051675,-0.054793463720520935 +153683,768.4150000051676,-0.054793402349810866 +153684,768.4200000051677,-0.05479334097676241 +153685,768.4250000051678,-0.05479327960137545 +153686,768.4300000051679,-0.054793218223649846 +153687,768.435000005168,-0.05479315684358547 +153688,768.4400000051681,-0.054793095461182176 +153689,768.4450000051683,-0.05479303407643985 +153690,768.4500000051684,-0.05479297268935835 +153691,768.4550000051685,-0.05479291129993755 +153692,768.4600000051686,-0.0547928499081773 +153693,768.4650000051687,-0.054792788514077484 +153694,768.4700000051688,-0.05479272711763797 +153695,768.4750000051689,-0.054792665718858616 +153696,768.480000005169,-0.05479260431773929 +153697,768.4850000051691,-0.05479254291427987 +153698,768.4900000051692,-0.05479248150848019 +153699,768.4950000051693,-0.054792420100340154 +153700,768.5000000051695,-0.05479235868985961 +153701,768.5050000051696,-0.054792297277038444 +153702,768.5100000051697,-0.05479223586187651 +153703,768.5150000051698,-0.054792174444373655 +153704,768.5200000051699,-0.054792113024529784 +153705,768.52500000517,-0.054792051602344745 +153706,768.5300000051701,-0.05479199017781839 +153707,768.5350000051702,-0.054791928750950604 +153708,768.5400000051703,-0.05479186732174125 +153709,768.5450000051704,-0.054791805890190205 +153710,768.5500000051705,-0.05479174445629732 +153711,768.5550000051707,-0.054791683020062466 +153712,768.5600000051708,-0.05479162158148552 +153713,768.5650000051709,-0.05479156014056633 +153714,768.570000005171,-0.05479149869730478 +153715,768.5750000051711,-0.054791437251700714 +153716,768.5800000051712,-0.054791375803754025 +153717,768.5850000051713,-0.05479131435346456 +153718,768.5900000051714,-0.05479125290083219 +153719,768.5950000051715,-0.054791191445856785 +153720,768.6000000051716,-0.05479112998853822 +153721,768.6050000051717,-0.05479106852887634 +153722,768.6100000051719,-0.05479100706687102 +153723,768.615000005172,-0.05479094560252213 +153724,768.6200000051721,-0.05479088413582955 +153725,768.6250000051722,-0.0547908226667931 +153726,768.6300000051723,-0.0547907611954127 +153727,768.6350000051724,-0.05479069972168819 +153728,768.6400000051725,-0.05479063824561944 +153729,768.6450000051726,-0.054790576767206306 +153730,768.6500000051727,-0.05479051528644867 +153731,768.6550000051728,-0.054790453803346385 +153732,768.660000005173,-0.05479039231789932 +153733,768.665000005173,-0.054790330830107335 +153734,768.6700000051732,-0.05479026933997031 +153735,768.6750000051733,-0.05479020784748811 +153736,768.6800000051734,-0.054790146352660586 +153737,768.6850000051735,-0.05479008485548761 +153738,768.6900000051736,-0.05479002335596905 +153739,768.6950000051737,-0.05478996185410478 +153740,768.7000000051738,-0.05478990034989465 +153741,768.7050000051739,-0.05478983884333853 +153742,768.710000005174,-0.054789777334436296 +153743,768.7150000051741,-0.054789715823187805 +153744,768.7200000051743,-0.05478965430959292 +153745,768.7250000051744,-0.05478959279365151 +153746,768.7300000051745,-0.05478953127536343 +153747,768.7350000051746,-0.05478946975472856 +153748,768.7400000051747,-0.054789408231746765 +153749,768.7450000051748,-0.05478934670641789 +153750,768.7500000051749,-0.05478928517874182 +153751,768.755000005175,-0.05478922364871842 +153752,768.7600000051751,-0.054789162116347545 +153753,768.7650000051752,-0.05478910058162906 +153754,768.7700000051753,-0.054789039044562844 +153755,768.7750000051755,-0.05478897750514875 +153756,768.7800000051756,-0.05478891596338664 +153757,768.7850000051757,-0.05478885441927639 +153758,768.7900000051758,-0.05478879287281787 +153759,768.7950000051759,-0.05478873132401093 +153760,768.800000005176,-0.05478866977285543 +153761,768.8050000051761,-0.05478860821935125 +153762,768.8100000051762,-0.054788546663498236 +153763,768.8150000051763,-0.054788485105296277 +153764,768.8200000051764,-0.05478842354474523 +153765,768.8250000051765,-0.054788361981844946 +153766,768.8300000051767,-0.054788300416595305 +153767,768.8350000051768,-0.05478823884899616 +153768,768.8400000051769,-0.05478817727904739 +153769,768.845000005177,-0.05478811570674884 +153770,768.8500000051771,-0.05478805413210039 +153771,768.8550000051772,-0.054787992555101896 +153772,768.8600000051773,-0.05478793097575323 +153773,768.8650000051774,-0.05478786939405426 +153774,768.8700000051775,-0.05478780781000482 +153775,768.8750000051776,-0.054787746223604814 +153776,768.8800000051777,-0.05478768463485409 +153777,768.8850000051779,-0.0547876230437525 +153778,768.890000005178,-0.054787561450299935 +153779,768.8950000051781,-0.054787499854496234 +153780,768.9000000051782,-0.05478743825634126 +153781,768.9050000051783,-0.05478737665583489 +153782,768.9100000051784,-0.054787315052976994 +153783,768.9150000051785,-0.054787253447767414 +153784,768.9200000051786,-0.054787191840206036 +153785,768.9250000051787,-0.054787130230292705 +153786,768.9300000051788,-0.054787068618027304 +153787,768.935000005179,-0.05478700700340969 +153788,768.9400000051791,-0.05478694538643971 +153789,768.9450000051792,-0.054786883767117246 +153790,768.9500000051793,-0.05478682214544216 +153791,768.9550000051794,-0.05478676052141431 +153792,768.9600000051795,-0.05478669889503357 +153793,768.9650000051796,-0.054786637266299794 +153794,768.9700000051797,-0.054786575635212845 +153795,768.9750000051798,-0.05478651400177259 +153796,768.9800000051799,-0.05478645236597889 +153797,768.98500000518,-0.054786390727831605 +153798,768.9900000051801,-0.0547863290873306 +153799,768.9950000051803,-0.054786267444475754 +153800,769.0000000051804,-0.05478620579926691 +153801,769.0050000051805,-0.054786144151703936 +153802,769.0100000051806,-0.05478608250178671 +153803,769.0150000051807,-0.05478602084951508 +153804,769.0200000051808,-0.05478595919488892 +153805,769.0250000051809,-0.05478589753790807 +153806,769.030000005181,-0.054785835878572414 +153807,769.0350000051811,-0.05478577421688181 +153808,769.0400000051812,-0.05478571255283612 +153809,769.0450000051814,-0.05478565088643521 +153810,769.0500000051815,-0.05478558921767893 +153811,769.0550000051816,-0.05478552754656717 +153812,769.0600000051817,-0.05478546587309977 +153813,769.0650000051818,-0.054785404197276594 +153814,769.0700000051819,-0.054785342519097516 +153815,769.075000005182,-0.054785280838562385 +153816,769.0800000051821,-0.05478521915567109 +153817,769.0850000051822,-0.05478515747042346 +153818,769.0900000051823,-0.05478509578281937 +153819,769.0950000051824,-0.054785034092858696 +153820,769.1000000051826,-0.054784972400541296 +153821,769.1050000051827,-0.054784910705867024 +153822,769.1100000051828,-0.054784849008835734 +153823,769.1150000051829,-0.05478478730944731 +153824,769.120000005183,-0.054784725607701604 +153825,769.1250000051831,-0.05478466390359847 +153826,769.1300000051832,-0.05478460219713779 +153827,769.1350000051833,-0.05478454048831939 +153828,769.1400000051834,-0.05478447877714318 +153829,769.1450000051835,-0.05478441706360899 +153830,769.1500000051836,-0.05478435534771668 +153831,769.1550000051838,-0.05478429362946614 +153832,769.1600000051839,-0.05478423190885721 +153833,769.165000005184,-0.05478417018588976 +153834,769.1700000051841,-0.05478410846056366 +153835,769.1750000051842,-0.054784046732878754 +153836,769.1800000051843,-0.05478398500283491 +153837,769.1850000051844,-0.05478392327043199 +153838,769.1900000051845,-0.05478386153566986 +153839,769.1950000051846,-0.054783799798548374 +153840,769.2000000051847,-0.0547837380590674 +153841,769.2050000051848,-0.05478367631722681 +153842,769.210000005185,-0.05478361457302644 +153843,769.2150000051851,-0.05478355282646618 +153844,769.2200000051852,-0.054783491077545876 +153845,769.2250000051853,-0.05478342932626539 +153846,769.2300000051854,-0.054783367572624586 +153847,769.2350000051855,-0.054783305816623315 +153848,769.2400000051856,-0.054783244058261446 +153849,769.2450000051857,-0.05478318229753886 +153850,769.2500000051858,-0.054783120534455394 +153851,769.2550000051859,-0.054783058769010906 +153852,769.260000005186,-0.05478299700120527 +153853,769.2650000051862,-0.05478293523103835 +153854,769.2700000051863,-0.05478287345851001 +153855,769.2750000051864,-0.0547828116836201 +153856,769.2800000051865,-0.05478274990636848 +153857,769.2850000051866,-0.05478268812675502 +153858,769.2900000051867,-0.054782626344779574 +153859,769.2950000051868,-0.05478256456044201 +153860,769.3000000051869,-0.0547825027737422 +153861,769.305000005187,-0.054782440984679964 +153862,769.3100000051871,-0.05478237919325521 +153863,769.3150000051872,-0.054782317399467775 +153864,769.3200000051874,-0.05478225560331751 +153865,769.3250000051875,-0.05478219380480429 +153866,769.3300000051876,-0.05478213200392799 +153867,769.3350000051877,-0.05478207020068844 +153868,769.3400000051878,-0.05478200839508553 +153869,769.3450000051879,-0.054781946587119094 +153870,769.350000005188,-0.05478188477678902 +153871,769.3550000051881,-0.054781822964095145 +153872,769.3600000051882,-0.054781761149037336 +153873,769.3650000051883,-0.054781699331615474 +153874,769.3700000051884,-0.054781637511829386 +153875,769.3750000051886,-0.05478157568967896 +153876,769.3800000051887,-0.05478151386516405 +153877,769.3850000051888,-0.0547814520382845 +153878,769.3900000051889,-0.05478139020904018 +153879,769.395000005189,-0.05478132837743095 +153880,769.4000000051891,-0.054781266543456685 +153881,769.4050000051892,-0.054781204707117226 +153882,769.4100000051893,-0.054781142868412444 +153883,769.4150000051894,-0.0547810810273422 +153884,769.4200000051895,-0.05478101918390634 +153885,769.4250000051896,-0.05478095733810473 +153886,769.4300000051898,-0.05478089548993724 +153887,769.4350000051899,-0.054780833639403725 +153888,769.44000000519,-0.05478077178650405 +153889,769.4450000051901,-0.05478070993123806 +153890,769.4500000051902,-0.05478064807360564 +153891,769.4550000051903,-0.05478058621360661 +153892,769.4600000051904,-0.05478052435124086 +153893,769.4650000051905,-0.054780462486508245 +153894,769.4700000051906,-0.05478040061940863 +153895,769.4750000051907,-0.05478033874994185 +153896,769.4800000051908,-0.054780276878107784 +153897,769.485000005191,-0.054780215003906306 +153898,769.4900000051911,-0.05478015312733726 +153899,769.4950000051912,-0.0547800912484005 +153900,769.5000000051913,-0.05478002936709588 +153901,769.5050000051914,-0.05477996748342328 +153902,769.5100000051915,-0.05477990559738255 +153903,769.5150000051916,-0.05477984370897355 +153904,769.5200000051917,-0.05477978181819613 +153905,769.5250000051918,-0.05477971992505016 +153906,769.5300000051919,-0.0547796580295355 +153907,769.535000005192,-0.054779596131652 +153908,769.5400000051922,-0.054779534231399536 +153909,769.5450000051923,-0.05477947232877796 +153910,769.5500000051924,-0.05477941042378713 +153911,769.5550000051925,-0.05477934851642689 +153912,769.5600000051926,-0.054779286606697127 +153913,769.5650000051927,-0.05477922469459767 +153914,769.5700000051928,-0.054779162780128406 +153915,769.5750000051929,-0.054779100863289173 +153916,769.580000005193,-0.054779038944079844 +153917,769.5850000051931,-0.05477897702250027 +153918,769.5900000051932,-0.05477891509855032 +153919,769.5950000051934,-0.05477885317222983 +153920,769.6000000051935,-0.054778791243538676 +153921,769.6050000051936,-0.05477872931247673 +153922,769.6100000051937,-0.05477866737904383 +153923,769.6150000051938,-0.05477860544323983 +153924,769.6200000051939,-0.05477854350506461 +153925,769.625000005194,-0.054778481564518006 +153926,769.6300000051941,-0.0547784196215999 +153927,769.6350000051942,-0.054778357676310126 +153928,769.6400000051943,-0.05477829572864856 +153929,769.6450000051944,-0.05477823377861505 +153930,769.6500000051946,-0.05477817182620946 +153931,769.6550000051947,-0.054778109871431654 +153932,769.6600000051948,-0.05477804791428147 +153933,769.6650000051949,-0.054777985954758794 +153934,769.670000005195,-0.054777923992863464 +153935,769.6750000051951,-0.05477786202859535 +153936,769.6800000051952,-0.05477780006195431 +153937,769.6850000051953,-0.05477773809294018 +153938,769.6900000051954,-0.05477767612155284 +153939,769.6950000051955,-0.05477761414779215 +153940,769.7000000051956,-0.05477755217165796 +153941,769.7050000051958,-0.05477749019315013 +153942,769.7100000051959,-0.05477742821226852 +153943,769.715000005196,-0.05477736622901298 +153944,769.7200000051961,-0.05477730424338338 +153945,769.7250000051962,-0.054777242255379575 +153946,769.7300000051963,-0.054777180265001404 +153947,769.7350000051964,-0.054777118272248744 +153948,769.7400000051965,-0.05477705627712145 +153949,769.7450000051966,-0.05477699427961937 +153950,769.7500000051967,-0.05477693227974238 +153951,769.7550000051968,-0.054776870277490335 +153952,769.760000005197,-0.05477680827286307 +153953,769.7650000051971,-0.05477674626586045 +153954,769.7700000051972,-0.054776684256482355 +153955,769.7750000051973,-0.05477662224472863 +153956,769.7800000051974,-0.05477656023059912 +153957,769.7850000051975,-0.054776498214093694 +153958,769.7900000051976,-0.0547764361952122 +153959,769.7950000051977,-0.054776374173954506 +153960,769.8000000051978,-0.054776312150320465 +153961,769.8050000051979,-0.05477625012430994 +153962,769.810000005198,-0.05477618809592278 +153963,769.8150000051982,-0.05477612606515885 +153964,769.8200000051983,-0.054776064032018 +153965,769.8250000051984,-0.05477600199650009 +153966,769.8300000051985,-0.05477593995860497 +153967,769.8350000051986,-0.0547758779183325 +153968,769.8400000051987,-0.05477581587568255 +153969,769.8450000051988,-0.054775753830654965 +153970,769.8500000051989,-0.0547756917832496 +153971,769.855000005199,-0.05477562973346632 +153972,769.8600000051991,-0.05477556768130498 +153973,769.8650000051992,-0.05477550562676544 +153974,769.8700000051994,-0.05477544356984754 +153975,769.8750000051995,-0.054775381510551155 +153976,769.8800000051996,-0.054775319448876134 +153977,769.8850000051997,-0.05477525738482233 +153978,769.8900000051998,-0.05477519531838959 +153979,769.8950000051999,-0.054775133249577806 +153980,769.9000000052,-0.054775071178386814 +153981,769.9050000052001,-0.05477500910481645 +153982,769.9100000052002,-0.054774947028866594 +153983,769.9150000052003,-0.0547748849505371 +153984,769.9200000052004,-0.05477482286982783 +153985,769.9250000052006,-0.054774760786738624 +153986,769.9300000052007,-0.054774698701269345 +153987,769.9350000052008,-0.05477463661341986 +153988,769.9400000052009,-0.05477457452319001 +153989,769.945000005201,-0.05477451243057967 +153990,769.9500000052011,-0.05477445033558867 +153991,769.9550000052012,-0.05477438823821687 +153992,769.9600000052013,-0.05477432613846415 +153993,769.9650000052014,-0.05477426403633035 +153994,769.9700000052015,-0.05477420193181533 +153995,769.9750000052017,-0.05477413982491893 +153996,769.9800000052018,-0.05477407771564103 +153997,769.9850000052019,-0.05477401560398147 +153998,769.990000005202,-0.054773953489940116 +153999,769.9950000052021,-0.054773891373516806 +154000,770.0000000052022,-0.054773829254711415 +154001,770.0050000052023,-0.05477376713352379 +154002,770.0100000052024,-0.05477370500995379 +154003,770.0150000052025,-0.054773642884001265 +154004,770.0200000052026,-0.054773580755666074 +154005,770.0250000052027,-0.05477351862494808 +154006,770.0300000052029,-0.05477345649184713 +154007,770.035000005203,-0.05477339435636309 +154008,770.0400000052031,-0.0547733322184958 +154009,770.0450000052032,-0.054773270078245104 +154010,770.0500000052033,-0.054773207935610885 +154011,770.0550000052034,-0.054773145790592996 +154012,770.0600000052035,-0.05477308364319127 +154013,770.0650000052036,-0.05477302149340558 +154014,770.0700000052037,-0.05477295934123579 +154015,770.0750000052038,-0.054772897186681734 +154016,770.0800000052039,-0.054772835029743276 +154017,770.085000005204,-0.05477277287042027 +154018,770.0900000052042,-0.054772710708712584 +154019,770.0950000052043,-0.05477264854462006 +154020,770.1000000052044,-0.054772586378142536 +154021,770.1050000052045,-0.054772524209279895 +154022,770.1100000052046,-0.054772462038031974 +154023,770.1150000052047,-0.054772399864398635 +154024,770.1200000052048,-0.05477233768837974 +154025,770.1250000052049,-0.054772275509975134 +154026,770.130000005205,-0.05477221332918468 +154027,770.1350000052051,-0.05477215114600823 +154028,770.1400000052053,-0.05477208896044563 +154029,770.1450000052054,-0.05477202677249675 +154030,770.1500000052055,-0.054771964582161416 +154031,770.1550000052056,-0.054771902389439506 +154032,770.1600000052057,-0.05477184019433088 +154033,770.1650000052058,-0.05477177799683537 +154034,770.1700000052059,-0.05477171579695285 +154035,770.175000005206,-0.05477165359468316 +154036,770.1800000052061,-0.05477159139002616 +154037,770.1850000052062,-0.05477152918298171 +154038,770.1900000052063,-0.05477146697354966 +154039,770.1950000052065,-0.05477140476172987 +154040,770.2000000052066,-0.05477134254752218 +154041,770.2050000052067,-0.05477128033092646 +154042,770.2100000052068,-0.05477121811194255 +154043,770.2150000052069,-0.054771155890570314 +154044,770.220000005207,-0.054771093666809594 +154045,770.2250000052071,-0.054771031440660256 +154046,770.2300000052072,-0.054770969212122156 +154047,770.2350000052073,-0.05477090698119514 +154048,770.2400000052074,-0.054770844747879056 +154049,770.2450000052075,-0.054770782512173766 +154050,770.2500000052077,-0.05477072027407912 +154051,770.2550000052078,-0.05477065803359499 +154052,770.2600000052079,-0.0547705957907212 +154053,770.265000005208,-0.05477053354545763 +154054,770.2700000052081,-0.05477047129780411 +154055,770.2750000052082,-0.05477040904776051 +154056,770.2800000052083,-0.05477034679532668 +154057,770.2850000052084,-0.05477028454050246 +154058,770.2900000052085,-0.05477022228328773 +154059,770.2950000052086,-0.054770160023682325 +154060,770.3000000052087,-0.05477009776168611 +154061,770.3050000052089,-0.05477003549729892 +154062,770.310000005209,-0.05476997323052062 +154063,770.3150000052091,-0.05476991096135107 +154064,770.3200000052092,-0.05476984868979011 +154065,770.3250000052093,-0.0547697864158376 +154066,770.3300000052094,-0.054769724139493395 +154067,770.3350000052095,-0.05476966186075734 +154068,770.3400000052096,-0.054769599579629284 +154069,770.3450000052097,-0.05476953729610911 +154070,770.3500000052098,-0.05476947501019663 +154071,770.35500000521,-0.05476941272189173 +154072,770.36000000521,-0.05476935043119424 +154073,770.3650000052102,-0.054769288138104034 +154074,770.3700000052103,-0.05476922584262094 +154075,770.3750000052104,-0.05476916354474483 +154076,770.3800000052105,-0.05476910124447555 +154077,770.3850000052106,-0.05476903894181295 +154078,770.3900000052107,-0.05476897663675689 +154079,770.3950000052108,-0.05476891432930722 +154080,770.4000000052109,-0.05476885201946379 +154081,770.405000005211,-0.05476878970722646 +154082,770.4100000052111,-0.05476872739259507 +154083,770.4150000052113,-0.054768665075569475 +154084,770.4200000052114,-0.05476860275614953 +154085,770.4250000052115,-0.05476854043433509 +154086,770.4300000052116,-0.054768478110126015 +154087,770.4350000052117,-0.05476841578352213 +154088,770.4400000052118,-0.05476835345452332 +154089,770.4450000052119,-0.05476829112312942 +154090,770.450000005212,-0.05476822878934027 +154091,770.4550000052121,-0.05476816645315574 +154092,770.4600000052122,-0.054768104114575694 +154093,770.4650000052123,-0.054768041773599965 +154094,770.4700000052125,-0.054767979430228396 +154095,770.4750000052126,-0.05476791708446086 +154096,770.4800000052127,-0.05476785473629721 +154097,770.4850000052128,-0.05476779238573728 +154098,770.4900000052129,-0.05476773003278093 +154099,770.495000005213,-0.05476766767742801 +154100,770.5000000052131,-0.05476760531967837 +154101,770.5050000052132,-0.054767542959531866 +154102,770.5100000052133,-0.05476748059698835 +154103,770.5150000052134,-0.05476741823204768 +154104,770.5200000052135,-0.0547673558647097 +154105,770.5250000052137,-0.05476729349497426 +154106,770.5300000052138,-0.05476723112284121 +154107,770.5350000052139,-0.05476716874831041 +154108,770.540000005214,-0.0547671063713817 +154109,770.5450000052141,-0.05476704399205494 +154110,770.5500000052142,-0.05476698161032998 +154111,770.5550000052143,-0.05476691922620667 +154112,770.5600000052144,-0.054766856839684866 +154113,770.5650000052145,-0.05476679445076441 +154114,770.5700000052146,-0.05476673205944516 +154115,770.5750000052147,-0.054766669665726964 +154116,770.5800000052149,-0.054766607269609684 +154117,770.585000005215,-0.05476654487109315 +154118,770.5900000052151,-0.05476648247017722 +154119,770.5950000052152,-0.05476642006686177 +154120,770.6000000052153,-0.05476635766114662 +154121,770.6050000052154,-0.05476629525303163 +154122,770.6100000052155,-0.05476623284251666 +154123,770.6150000052156,-0.054766170429601545 +154124,770.6200000052157,-0.05476610801428615 +154125,770.6250000052158,-0.054766045596570306 +154126,770.630000005216,-0.05476598317645389 +154127,770.635000005216,-0.05476592075393674 +154128,770.6400000052162,-0.054765858329018716 +154129,770.6450000052163,-0.05476579590169965 +154130,770.6500000052164,-0.054765733471979404 +154131,770.6550000052165,-0.05476567103985782 +154132,770.6600000052166,-0.05476560860533476 +154133,770.6650000052167,-0.05476554616841007 +154134,770.6700000052168,-0.0547654837290836 +154135,770.6750000052169,-0.0547654212873552 +154136,770.680000005217,-0.05476535884322472 +154137,770.6850000052171,-0.05476529639669201 +154138,770.6900000052173,-0.054765233947756925 +154139,770.6950000052174,-0.05476517149641932 +154140,770.7000000052175,-0.05476510904267902 +154141,770.7050000052176,-0.05476504658653589 +154142,770.7100000052177,-0.054764984127989795 +154143,770.7150000052178,-0.05476492166704057 +154144,770.7200000052179,-0.054764859203688065 +154145,770.725000005218,-0.05476479673793213 +154146,770.7300000052181,-0.054764734269772616 +154147,770.7350000052182,-0.054764671799209366 +154148,770.7400000052183,-0.054764609326242254 +154149,770.7450000052185,-0.0547645468508711 +154150,770.7500000052186,-0.05476448437309577 +154151,770.7550000052187,-0.0547644218929161 +154152,770.7600000052188,-0.05476435941033196 +154153,770.7650000052189,-0.05476429692534319 +154154,770.770000005219,-0.054764234437949644 +154155,770.7750000052191,-0.05476417194815116 +154156,770.7800000052192,-0.054764109455947604 +154157,770.7850000052193,-0.05476404696133881 +154158,770.7900000052194,-0.054763984464324636 +154159,770.7950000052195,-0.05476392196490493 +154160,770.8000000052197,-0.05476385946307953 +154161,770.8050000052198,-0.0547637969588483 +154162,770.8100000052199,-0.054763734452211096 +154163,770.81500000522,-0.05476367194316775 +154164,770.8200000052201,-0.05476360943171811 +154165,770.8250000052202,-0.05476354691786203 +154166,770.8300000052203,-0.05476348440159937 +154167,770.8350000052204,-0.05476342188292998 +154168,770.8400000052205,-0.05476335936185369 +154169,770.8450000052206,-0.054763296838370355 +154170,770.8500000052207,-0.05476323431247983 +154171,770.8550000052209,-0.05476317178418195 +154172,770.860000005221,-0.054763109253476584 +154173,770.8650000052211,-0.05476304672036358 +154174,770.8700000052212,-0.05476298418484277 +154175,770.8750000052213,-0.05476292164691401 +154176,770.8800000052214,-0.054762859106577154 +154177,770.8850000052215,-0.05476279656383205 +154178,770.8900000052216,-0.054762734018678545 +154179,770.8950000052217,-0.05476267147111649 +154180,770.9000000052218,-0.054762608921145726 +154181,770.905000005222,-0.05476254636876611 +154182,770.9100000052221,-0.05476248381397748 +154183,770.9150000052222,-0.05476242125677969 +154184,770.9200000052223,-0.05476235869717259 +154185,770.9250000052224,-0.05476229613515602 +154186,770.9300000052225,-0.054762233570729846 +154187,770.9350000052226,-0.0547621710038939 +154188,770.9400000052227,-0.05476210843464803 +154189,770.9450000052228,-0.0547620458629921 +154190,770.9500000052229,-0.05476198328892593 +154191,770.955000005223,-0.05476192071244941 +154192,770.9600000052232,-0.05476185813356236 +154193,770.9650000052233,-0.05476179555226462 +154194,770.9700000052234,-0.05476173296855605 +154195,770.9750000052235,-0.054761670382436504 +154196,770.9800000052236,-0.05476160779390583 +154197,770.9850000052237,-0.05476154520296386 +154198,770.9900000052238,-0.05476148260961045 +154199,770.9950000052239,-0.05476142001384545 +154200,771.000000005224,-0.05476135741566871 +154201,771.0050000052241,-0.05476129481508008 +154202,771.0100000052242,-0.054761232212079396 +154203,771.0150000052244,-0.054761169606666514 +154204,771.0200000052245,-0.054761106998841284 +154205,771.0250000052246,-0.054761044388603554 +154206,771.0300000052247,-0.054760981775953156 +154207,771.0350000052248,-0.05476091916088996 +154208,771.0400000052249,-0.05476085654341378 +154209,771.045000005225,-0.0547607939235245 +154210,771.0500000052251,-0.05476073130122195 +154211,771.0550000052252,-0.05476066867650599 +154212,771.0600000052253,-0.05476060604937644 +154213,771.0650000052254,-0.05476054341983317 +154214,771.0700000052256,-0.05476048078787602 +154215,771.0750000052257,-0.05476041815350483 +154216,771.0800000052258,-0.054760355516719456 +154217,771.0850000052259,-0.05476029287751976 +154218,771.090000005226,-0.054760230235905566 +154219,771.0950000052261,-0.05476016759187673 +154220,771.1000000052262,-0.05476010494543308 +154221,771.1050000052263,-0.054760042296574496 +154222,771.1100000052264,-0.054759979645300806 +154223,771.1150000052265,-0.05475991699161186 +154224,771.1200000052266,-0.0547598543355075 +154225,771.1250000052268,-0.05475979167698758 +154226,771.1300000052269,-0.05475972901605194 +154227,771.135000005227,-0.05475966635270044 +154228,771.1400000052271,-0.0547596036869329 +154229,771.1450000052272,-0.054759541018749205 +154230,771.1500000052273,-0.054759478348149176 +154231,771.1550000052274,-0.05475941567513266 +154232,771.1600000052275,-0.0547593529996995 +154233,771.1650000052276,-0.05475929032184956 +154234,771.1700000052277,-0.05475922764158267 +154235,771.1750000052278,-0.05475916495889868 +154236,771.180000005228,-0.05475910227379744 +154237,771.1850000052281,-0.05475903958627879 +154238,771.1900000052282,-0.05475897689634259 +154239,771.1950000052283,-0.054758914203988665 +154240,771.2000000052284,-0.05475885150921688 +154241,771.2050000052285,-0.05475878881202708 +154242,771.2100000052286,-0.054758726112419095 +154243,771.2150000052287,-0.05475866341039279 +154244,771.2200000052288,-0.054758600705947985 +154245,771.2250000052289,-0.054758537999084554 +154246,771.230000005229,-0.05475847528980232 +154247,771.2350000052292,-0.05475841257810114 +154248,771.2400000052293,-0.05475834986398087 +154249,771.2450000052294,-0.05475828714744134 +154250,771.2500000052295,-0.05475822442848241 +154251,771.2550000052296,-0.05475816170710391 +154252,771.2600000052297,-0.054758098983305685 +154253,771.2650000052298,-0.0547580362570876 +154254,771.2700000052299,-0.05475797352844949 +154255,771.27500000523,-0.054757910797391195 +154256,771.2800000052301,-0.05475784806391256 +154257,771.2850000052302,-0.05475778532801344 +154258,771.2900000052304,-0.05475772258969367 +154259,771.2950000052305,-0.05475765984895311 +154260,771.3000000052306,-0.05475759710579159 +154261,771.3050000052307,-0.05475753436020896 +154262,771.3100000052308,-0.054757471612205066 +154263,771.3150000052309,-0.05475740886177975 +154264,771.320000005231,-0.05475734610893287 +154265,771.3250000052311,-0.05475728335366425 +154266,771.3300000052312,-0.05475722059597375 +154267,771.3350000052313,-0.05475715783586121 +154268,771.3400000052314,-0.05475709507332648 +154269,771.3450000052316,-0.054757032308369404 +154270,771.3500000052317,-0.05475696954098982 +154271,771.3550000052318,-0.05475690677118757 +154272,771.3600000052319,-0.05475684399896251 +154273,771.365000005232,-0.05475678122431448 +154274,771.3700000052321,-0.05475671844724333 +154275,771.3750000052322,-0.054756655667748906 +154276,771.3800000052323,-0.054756592885831026 +154277,771.3850000052324,-0.05475653010148956 +154278,771.3900000052325,-0.05475646731472435 +154279,771.3950000052326,-0.05475640452553525 +154280,771.4000000052328,-0.05475634173392208 +154281,771.4050000052329,-0.05475627893988471 +154282,771.410000005233,-0.054756216143422964 +154283,771.4150000052331,-0.054756153344536686 +154284,771.4200000052332,-0.05475609054322573 +154285,771.4250000052333,-0.05475602773948994 +154286,771.4300000052334,-0.054755964933329154 +154287,771.4350000052335,-0.05475590212474322 +154288,771.4400000052336,-0.054755839313731985 +154289,771.4450000052337,-0.05475577650029528 +154290,771.4500000052338,-0.05475571368443298 +154291,771.455000005234,-0.05475565086614489 +154292,771.4600000052341,-0.05475558804543088 +154293,771.4650000052342,-0.05475552522229079 +154294,771.4700000052343,-0.05475546239672446 +154295,771.4750000052344,-0.05475539956873172 +154296,771.4800000052345,-0.05475533673831244 +154297,771.4850000052346,-0.05475527390546644 +154298,771.4900000052347,-0.054755211070193585 +154299,771.4950000052348,-0.054755148232493694 +154300,771.5000000052349,-0.05475508539236664 +154301,771.505000005235,-0.05475502254981224 +154302,771.5100000052352,-0.05475495970483036 +154303,771.5150000052353,-0.05475489685742082 +154304,771.5200000052354,-0.054754834007583485 +154305,771.5250000052355,-0.05475477115531818 +154306,771.5300000052356,-0.054754708300624774 +154307,771.5350000052357,-0.05475464544350308 +154308,771.5400000052358,-0.054754582583952965 +154309,771.5450000052359,-0.05475451972197426 +154310,771.550000005236,-0.05475445685756681 +154311,771.5550000052361,-0.05475439399073046 +154312,771.5600000052362,-0.05475433112146506 +154313,771.5650000052364,-0.054754268249770435 +154314,771.5700000052365,-0.05475420537564644 +154315,771.5750000052366,-0.05475414249909291 +154316,771.5800000052367,-0.0547540796201097 +154317,771.5850000052368,-0.054754016738696634 +154318,771.5900000052369,-0.05475395385485358 +154319,771.595000005237,-0.05475389096858037 +154320,771.6000000052371,-0.05475382807987684 +154321,771.6050000052372,-0.05475376518874284 +154322,771.6100000052373,-0.0547537022951782 +154323,771.6150000052374,-0.05475363939918279 +154324,771.6200000052376,-0.05475357650075643 +154325,771.6250000052377,-0.05475351359989897 +154326,771.6300000052378,-0.054753450696610244 +154327,771.6350000052379,-0.054753387790890104 +154328,771.640000005238,-0.05475332488273838 +154329,771.6450000052381,-0.05475326197215493 +154330,771.6500000052382,-0.05475319905913959 +154331,771.6550000052383,-0.054753136143692205 +154332,771.6600000052384,-0.05475307322581262 +154333,771.6650000052385,-0.054753010305500664 +154334,771.6700000052386,-0.05475294738275619 +154335,771.6750000052388,-0.054752884457579046 +154336,771.6800000052389,-0.054752821529969055 +154337,771.685000005239,-0.054752758599926066 +154338,771.6900000052391,-0.054752695667449926 +154339,771.6950000052392,-0.054752632732540475 +154340,771.7000000052393,-0.05475256979519756 +154341,771.7050000052394,-0.05475250685542102 +154342,771.7100000052395,-0.0547524439132107 +154343,771.7150000052396,-0.05475238096856643 +154344,771.7200000052397,-0.054752318021488056 +154345,771.7250000052398,-0.054752255071975425 +154346,771.73000000524,-0.05475219212002838 +154347,771.7350000052401,-0.05475212916564675 +154348,771.7400000052402,-0.054752066208830386 +154349,771.7450000052403,-0.054752003249579136 +154350,771.7500000052404,-0.05475194028789282 +154351,771.7550000052405,-0.05475187732377131 +154352,771.7600000052406,-0.05475181435721443 +154353,771.7650000052407,-0.05475175138822202 +154354,771.7700000052408,-0.05475168841679391 +154355,771.7750000052409,-0.05475162544292996 +154356,771.780000005241,-0.05475156246663002 +154357,771.7850000052412,-0.05475149948789391 +154358,771.7900000052413,-0.05475143650672148 +154359,771.7950000052414,-0.054751373523112566 +154360,771.8000000052415,-0.05475131053706701 +154361,771.8050000052416,-0.05475124754858466 +154362,771.8100000052417,-0.05475118455766535 +154363,771.8150000052418,-0.05475112156430893 +154364,771.8200000052419,-0.05475105856851523 +154365,771.825000005242,-0.05475099557028411 +154366,771.8300000052421,-0.05475093256961537 +154367,771.8350000052423,-0.054750869566508896 +154368,771.8400000052424,-0.05475080656096451 +154369,771.8450000052425,-0.05475074355298205 +154370,771.8500000052426,-0.05475068054256134 +154371,771.8550000052427,-0.054750617529702256 +154372,771.8600000052428,-0.054750554514404616 +154373,771.8650000052429,-0.05475049149666826 +154374,771.870000005243,-0.05475042847649304 +154375,771.8750000052431,-0.0547503654538788 +154376,771.8800000052432,-0.054750302428825365 +154377,771.8850000052433,-0.05475023940133258 +154378,771.8900000052435,-0.05475017637140029 +154379,771.8950000052436,-0.05475011333902833 +154380,771.9000000052437,-0.054750050304216556 +154381,771.9050000052438,-0.0547499872669648 +154382,771.9100000052439,-0.054749924227272886 +154383,771.915000005244,-0.054749861185140664 +154384,771.9200000052441,-0.054749798140567976 +154385,771.9250000052442,-0.054749735093554665 +154386,771.9300000052443,-0.05474967204410056 +154387,771.9350000052444,-0.05474960899220551 +154388,771.9400000052445,-0.054749545937869355 +154389,771.9450000052447,-0.05474948288109194 +154390,771.9500000052448,-0.05474941982187309 +154391,771.9550000052449,-0.05474935676021265 +154392,771.960000005245,-0.05474929369611047 +154393,771.9650000052451,-0.05474923062956639 +154394,771.9700000052452,-0.05474916756058022 +154395,771.9750000052453,-0.05474910448915184 +154396,771.9800000052454,-0.05474904141528106 +154397,771.9850000052455,-0.05474897833896773 +154398,771.9900000052456,-0.05474891526021169 +154399,771.9950000052457,-0.05474885217901277 +154400,772.0000000052459,-0.05474878909537083 +154401,772.005000005246,-0.05474872600928569 +154402,772.0100000052461,-0.054748662920757196 +154403,772.0150000052462,-0.054748599829785194 +154404,772.0200000052463,-0.054748536736369514 +154405,772.0250000052464,-0.05474847364051 +154406,772.0300000052465,-0.0547484105422065 +154407,772.0350000052466,-0.05474834744145884 +154408,772.0400000052467,-0.05474828433826686 +154409,772.0450000052468,-0.0547482212326304 +154410,772.0500000052469,-0.05474815812454929 +154411,772.055000005247,-0.05474809501402339 +154412,772.0600000052472,-0.05474803190105253 +154413,772.0650000052473,-0.05474796878563653 +154414,772.0700000052474,-0.05474790566777526 +154415,772.0750000052475,-0.05474784254746854 +154416,772.0800000052476,-0.0547477794247162 +154417,772.0850000052477,-0.05474771629951811 +154418,772.0900000052478,-0.05474765317187408 +154419,772.0950000052479,-0.05474759004178395 +154420,772.100000005248,-0.054747526909247585 +154421,772.1050000052481,-0.05474746377426479 +154422,772.1100000052483,-0.054747400636835426 +154423,772.1150000052484,-0.05474733749695932 +154424,772.1200000052485,-0.05474727435463632 +154425,772.1250000052486,-0.05474721120986625 +154426,772.1300000052487,-0.054747148062648965 +154427,772.1350000052488,-0.054747084912984294 +154428,772.1400000052489,-0.054747021760872074 +154429,772.145000005249,-0.05474695860631214 +154430,772.1500000052491,-0.054746895449304334 +154431,772.1550000052492,-0.0547468322898485 +154432,772.1600000052493,-0.054746769127944475 +154433,772.1650000052495,-0.054746705963592095 +154434,772.1700000052496,-0.05474664279679118 +154435,772.1750000052497,-0.05474657962754159 +154436,772.1800000052498,-0.054746516455843164 +154437,772.1850000052499,-0.05474645328169572 +154438,772.19000000525,-0.05474639010509912 +154439,772.1950000052501,-0.05474632692605319 +154440,772.2000000052502,-0.054746263744557766 +154441,772.2050000052503,-0.054746200560612676 +154442,772.2100000052504,-0.05474613737421778 +154443,772.2150000052505,-0.0547460741853729 +154444,772.2200000052507,-0.05474601099407788 +154445,772.2250000052508,-0.05474594780033256 +154446,772.2300000052509,-0.05474588460413676 +154447,772.235000005251,-0.054745821405490336 +154448,772.2400000052511,-0.05474575820439311 +154449,772.2450000052512,-0.054745695000844946 +154450,772.2500000052513,-0.05474563179484565 +154451,772.2550000052514,-0.05474556858639508 +154452,772.2600000052515,-0.05474550537549307 +154453,772.2650000052516,-0.05474544216213944 +154454,772.2700000052517,-0.05474537894633404 +154455,772.2750000052519,-0.05474531572807672 +154456,772.280000005252,-0.054745252507367295 +154457,772.2850000052521,-0.05474518928420561 +154458,772.2900000052522,-0.05474512605859151 +154459,772.2950000052523,-0.05474506283052482 +154460,772.3000000052524,-0.054744999600005374 +154461,772.3050000052525,-0.05474493636703302 +154462,772.3100000052526,-0.05474487313160759 +154463,772.3150000052527,-0.05474480989372893 +154464,772.3200000052528,-0.05474474665339686 +154465,772.325000005253,-0.054744683410611235 +154466,772.330000005253,-0.05474462016537187 +154467,772.3350000052532,-0.054744556917678606 +154468,772.3400000052533,-0.054744493667531306 +154469,772.3450000052534,-0.05474443041492977 +154470,772.3500000052535,-0.054744367159873845 +154471,772.3550000052536,-0.054744303902363387 +154472,772.3600000052537,-0.05474424064239821 +154473,772.3650000052538,-0.05474417737997817 +154474,772.3700000052539,-0.054744114115103076 +154475,772.375000005254,-0.054744050847772785 +154476,772.3800000052541,-0.05474398757798713 +154477,772.3850000052543,-0.054743924305745935 +154478,772.3900000052544,-0.05474386103104905 +154479,772.3950000052545,-0.05474379775389632 +154480,772.4000000052546,-0.05474373447428755 +154481,772.4050000052547,-0.05474367119222261 +154482,772.4100000052548,-0.0547436079077013 +154483,772.4150000052549,-0.054743544620723485 +154484,772.420000005255,-0.05474348133128899 +154485,772.4250000052551,-0.054743418039397654 +154486,772.4300000052552,-0.0547433547450493 +154487,772.4350000052553,-0.05474329144824378 +154488,772.4400000052555,-0.05474322814898092 +154489,772.4450000052556,-0.05474316484726056 +154490,772.4500000052557,-0.05474310154308253 +154491,772.4550000052558,-0.05474303823644668 +154492,772.4600000052559,-0.05474297492735283 +154493,772.465000005256,-0.054742911615800825 +154494,772.4700000052561,-0.05474284830179049 +154495,772.4750000052562,-0.05474278498532167 +154496,772.4800000052563,-0.05474272166639419 +154497,772.4850000052564,-0.05474265834500788 +154498,772.4900000052565,-0.054742595021162604 +154499,772.4950000052567,-0.054742531694858175 +154500,772.5000000052568,-0.05474246836609443 +154501,772.5050000052569,-0.0547424050348712 +154502,772.510000005257,-0.05474234170118832 +154503,772.5150000052571,-0.05474227836504565 +154504,772.5200000052572,-0.05474221502644299 +154505,772.5250000052573,-0.05474215168538021 +154506,772.5300000052574,-0.05474208834185711 +154507,772.5350000052575,-0.05474202499587355 +154508,772.5400000052576,-0.05474196164742935 +154509,772.5450000052577,-0.054741898296524344 +154510,772.5500000052579,-0.05474183494315837 +154511,772.555000005258,-0.054741771587331275 +154512,772.5600000052581,-0.054741708229042875 +154513,772.5650000052582,-0.054741644868293006 +154514,772.5700000052583,-0.05474158150508153 +154515,772.5750000052584,-0.054741518139408245 +154516,772.5800000052585,-0.054741454771273 +154517,772.5850000052586,-0.05474139140067564 +154518,772.5900000052587,-0.05474132802761598 +154519,772.5950000052588,-0.05474126465209386 +154520,772.600000005259,-0.054741201274109134 +154521,772.6050000052591,-0.054741137893661605 +154522,772.6100000052592,-0.05474107451075112 +154523,772.6150000052593,-0.05474101112537751 +154524,772.6200000052594,-0.054740947737540624 +154525,772.6250000052595,-0.05474088434724028 +154526,772.6300000052596,-0.05474082095447632 +154527,772.6350000052597,-0.05474075755924858 +154528,772.6400000052598,-0.05474069416155689 +154529,772.6450000052599,-0.05474063076140108 +154530,772.65000000526,-0.05474056735878098 +154531,772.6550000052601,-0.05474050395369643 +154532,772.6600000052603,-0.05474044054614727 +154533,772.6650000052604,-0.05474037713613332 +154534,772.6700000052605,-0.05474031372365443 +154535,772.6750000052606,-0.054740250308710416 +154536,772.6800000052607,-0.05474018689130112 +154537,772.6850000052608,-0.05474012347142637 +154538,772.6900000052609,-0.05474006004908601 +154539,772.695000005261,-0.05473999662427987 +154540,772.7000000052611,-0.054739933197007776 +154541,772.7050000052612,-0.05473986976726957 +154542,772.7100000052613,-0.05473980633506508 +154543,772.7150000052615,-0.05473974290039415 +154544,772.7200000052616,-0.05473967946325659 +154545,772.7250000052617,-0.054739616023652245 +154546,772.7300000052618,-0.054739552581580954 +154547,772.7350000052619,-0.05473948913704254 +154548,772.740000005262,-0.054739425690036855 +154549,772.7450000052621,-0.05473936224056371 +154550,772.7500000052622,-0.05473929878862295 +154551,772.7550000052623,-0.0547392353342144 +154552,772.7600000052624,-0.0547391718773379 +154553,772.7650000052626,-0.05473910841799327 +154554,772.7700000052627,-0.05473904495618035 +154555,772.7750000052628,-0.054738981491898986 +154556,772.7800000052629,-0.05473891802514899 +154557,772.785000005263,-0.0547388545559302 +154558,772.7900000052631,-0.05473879108424247 +154559,772.7950000052632,-0.054738727610085594 +154560,772.8000000052633,-0.05473866413345942 +154561,772.8050000052634,-0.05473860065436381 +154562,772.8100000052635,-0.05473853717279856 +154563,772.8150000052636,-0.05473847368876351 +154564,772.8200000052638,-0.054738410202258496 +154565,772.8250000052639,-0.05473834671328335 +154566,772.830000005264,-0.05473828322183791 +154567,772.8350000052641,-0.05473821972792199 +154568,772.8400000052642,-0.05473815623153544 +154569,772.8450000052643,-0.05473809273267809 +154570,772.8500000052644,-0.05473802923134976 +154571,772.8550000052645,-0.05473796572755029 +154572,772.8600000052646,-0.054737902221279514 +154573,772.8650000052647,-0.05473783871253727 +154574,772.8700000052648,-0.05473777520132338 +154575,772.875000005265,-0.05473771168763767 +154576,772.8800000052651,-0.054737648171479976 +154577,772.8850000052652,-0.054737584652850134 +154578,772.8900000052653,-0.05473752113174797 +154579,772.8950000052654,-0.05473745760817333 +154580,772.9000000052655,-0.05473739408212603 +154581,772.9050000052656,-0.054737330553605905 +154582,772.9100000052657,-0.054737267022612786 +154583,772.9150000052658,-0.05473720348914651 +154584,772.9200000052659,-0.05473713995320689 +154585,772.925000005266,-0.05473707641479379 +154586,772.9300000052662,-0.05473701287390702 +154587,772.9350000052663,-0.05473694933054641 +154588,772.9400000052664,-0.05473688578471179 +154589,772.9450000052665,-0.054736822236403 +154590,772.9500000052666,-0.05473675868561986 +154591,772.9550000052667,-0.05473669513236221 +154592,772.9600000052668,-0.05473663157662989 +154593,772.9650000052669,-0.054736568018422714 +154594,772.970000005267,-0.05473650445774051 +154595,772.9750000052671,-0.05473644089458313 +154596,772.9800000052672,-0.054736377328950384 +154597,772.9850000052674,-0.054736313760842106 +154598,772.9900000052675,-0.054736250190258136 +154599,772.9950000052676,-0.0547361866171983 +154600,773.0000000052677,-0.05473612304166243 +154601,773.0050000052678,-0.05473605946365035 +154602,773.0100000052679,-0.05473599588316191 +154603,773.015000005268,-0.05473593230019691 +154604,773.0200000052681,-0.0547358687147552 +154605,773.0250000052682,-0.05473580512683661 +154606,773.0300000052683,-0.05473574153644097 +154607,773.0350000052684,-0.05473567794356811 +154608,773.0400000052686,-0.05473561434821785 +154609,773.0450000052687,-0.054735550750390036 +154610,773.0500000052688,-0.05473548715008448 +154611,773.0550000052689,-0.05473542354730103 +154612,773.060000005269,-0.05473535994203949 +154613,773.0650000052691,-0.05473529633429972 +154614,773.0700000052692,-0.05473523272408154 +154615,773.0750000052693,-0.05473516911138478 +154616,773.0800000052694,-0.05473510549620926 +154617,773.0850000052695,-0.05473504187855481 +154618,773.0900000052696,-0.05473497825842128 +154619,773.0950000052698,-0.05473491463580848 +154620,773.1000000052699,-0.054734851010716255 +154621,773.10500000527,-0.054734787383144426 +154622,773.1100000052701,-0.05473472375309281 +154623,773.1150000052702,-0.05473466012056126 +154624,773.1200000052703,-0.05473459648554959 +154625,773.1250000052704,-0.05473453284805764 +154626,773.1300000052705,-0.05473446920808523 +154627,773.1350000052706,-0.05473440556563219 +154628,773.1400000052707,-0.05473434192069836 +154629,773.1450000052708,-0.05473427827328355 +154630,773.150000005271,-0.054734214623387616 +154631,773.1550000052711,-0.054734150971010365 +154632,773.1600000052712,-0.05473408731615163 +154633,773.1650000052713,-0.054734023658811255 +154634,773.1700000052714,-0.05473395999898905 +154635,773.1750000052715,-0.05473389633668485 +154636,773.1800000052716,-0.054733832671898484 +154637,773.1850000052717,-0.05473376900462978 +154638,773.1900000052718,-0.05473370533487856 +154639,773.1950000052719,-0.054733641662644675 +154640,773.200000005272,-0.05473357798792793 +154641,773.2050000052722,-0.05473351431072817 +154642,773.2100000052723,-0.05473345063104522 +154643,773.2150000052724,-0.0547333869488789 +154644,773.2200000052725,-0.054733323264229056 +154645,773.2250000052726,-0.05473325957709551 +154646,773.2300000052727,-0.054733195887478076 +154647,773.2350000052728,-0.0547331321953766 +154648,773.2400000052729,-0.05473306850079089 +154649,773.245000005273,-0.05473300480372081 +154650,773.2500000052731,-0.05473294110416615 +154651,773.2550000052732,-0.05473287740212675 +154652,773.2600000052734,-0.05473281369760244 +154653,773.2650000052735,-0.05473274999059306 +154654,773.2700000052736,-0.054732686281098425 +154655,773.2750000052737,-0.054732622569118365 +154656,773.2800000052738,-0.05473255885465271 +154657,773.2850000052739,-0.054732495137701294 +154658,773.290000005274,-0.05473243141826393 +154659,773.2950000052741,-0.05473236769634046 +154660,773.3000000052742,-0.054732303971930706 +154661,773.3050000052743,-0.054732240245034494 +154662,773.3100000052744,-0.05473217651565166 +154663,773.3150000052746,-0.05473211278378202 +154664,773.3200000052747,-0.0547320490494254 +154665,773.3250000052748,-0.054731985312581645 +154666,773.3300000052749,-0.054731921573250575 +154667,773.335000005275,-0.05473185783143201 +154668,773.3400000052751,-0.05473179408712578 +154669,773.3450000052752,-0.05473173034033172 +154670,773.3500000052753,-0.05473166659104966 +154671,773.3550000052754,-0.05473160283927941 +154672,773.3600000052755,-0.0547315390850208 +154673,773.3650000052756,-0.054731475328273674 +154674,773.3700000052758,-0.054731411569037845 +154675,773.3750000052759,-0.054731347807313147 +154676,773.380000005276,-0.0547312840430994 +154677,773.3850000052761,-0.05473122027639643 +154678,773.3900000052762,-0.05473115650720408 +154679,773.3950000052763,-0.054731092735522166 +154680,773.4000000052764,-0.05473102896135052 +154681,773.4050000052765,-0.05473096518468896 +154682,773.4100000052766,-0.05473090140553731 +154683,773.4150000052767,-0.05473083762389541 +154684,773.4200000052768,-0.05473077383976309 +154685,773.425000005277,-0.05473071005314016 +154686,773.4300000052771,-0.05473064626402646 +154687,773.4350000052772,-0.05473058247242182 +154688,773.4400000052773,-0.05473051867832603 +154689,773.4450000052774,-0.054730454881738964 +154690,773.4500000052775,-0.05473039108266043 +154691,773.4550000052776,-0.05473032728109026 +154692,773.4600000052777,-0.05473026347702826 +154693,773.4650000052778,-0.05473019967047427 +154694,773.4700000052779,-0.05473013586142811 +154695,773.475000005278,-0.05473007204988962 +154696,773.4800000052782,-0.05473000823585861 +154697,773.4850000052783,-0.05472994441933492 +154698,773.4900000052784,-0.054729880600318366 +154699,773.4950000052785,-0.05472981677880878 +154700,773.5000000052786,-0.054729752954806005 +154701,773.5050000052787,-0.05472968912830983 +154702,773.5100000052788,-0.05472962529932011 +154703,773.5150000052789,-0.05472956146783666 +154704,773.520000005279,-0.054729497633859314 +154705,773.5250000052791,-0.05472943379738787 +154706,773.5300000052792,-0.05472936995842218 +154707,773.5350000052794,-0.05472930611696208 +154708,773.5400000052795,-0.05472924227300737 +154709,773.5450000052796,-0.05472917842655788 +154710,773.5500000052797,-0.054729114577613446 +154711,773.5550000052798,-0.05472905072617388 +154712,773.5600000052799,-0.05472898687223902 +154713,773.56500000528,-0.05472892301580869 +154714,773.5700000052801,-0.054728859156882706 +154715,773.5750000052802,-0.0547287952954609 +154716,773.5800000052803,-0.054728731431543096 +154717,773.5850000052804,-0.05472866756512913 +154718,773.5900000052806,-0.05472860369621881 +154719,773.5950000052807,-0.054728539824811975 +154720,773.6000000052808,-0.05472847595090845 +154721,773.6050000052809,-0.05472841207450804 +154722,773.610000005281,-0.05472834819561059 +154723,773.6150000052811,-0.05472828431421591 +154724,773.6200000052812,-0.05472822043032385 +154725,773.6250000052813,-0.0547281565439342 +154726,773.6300000052814,-0.05472809265504682 +154727,773.6350000052815,-0.054728028763661514 +154728,773.6400000052816,-0.05472796486977811 +154729,773.6450000052818,-0.05472790097339643 +154730,773.6500000052819,-0.054727837074516304 +154731,773.655000005282,-0.05472777317313755 +154732,773.6600000052821,-0.05472770926926 +154733,773.6650000052822,-0.05472764536288348 +154734,773.6700000052823,-0.05472758145400781 +154735,773.6750000052824,-0.05472751754263281 +154736,773.6800000052825,-0.05472745362875831 +154737,773.6850000052826,-0.05472738971238414 +154738,773.6900000052827,-0.054727325793510105 +154739,773.6950000052828,-0.05472726187213604 +154740,773.700000005283,-0.05472719794826177 +154741,773.7050000052831,-0.05472713402188714 +154742,773.7100000052832,-0.054727070093011934 +154743,773.7150000052833,-0.054727006161636 +154744,773.7200000052834,-0.05472694222775915 +154745,773.7250000052835,-0.054726878291381224 +154746,773.7300000052836,-0.05472681435250205 +154747,773.7350000052837,-0.05472675041112143 +154748,773.7400000052838,-0.05472668646723919 +154749,773.7450000052839,-0.054726622520855174 +154750,773.750000005284,-0.054726558571969196 +154751,773.7550000052842,-0.054726494620581066 +154752,773.7600000052843,-0.05472643066669062 +154753,773.7650000052844,-0.05472636671029768 +154754,773.7700000052845,-0.05472630275140208 +154755,773.7750000052846,-0.05472623879000362 +154756,773.7800000052847,-0.05472617482610214 +154757,773.7850000052848,-0.05472611085969746 +154758,773.7900000052849,-0.054726046890789394 +154759,773.795000005285,-0.05472598291937779 +154760,773.8000000052851,-0.05472591894546244 +154761,773.8050000052853,-0.05472585496904318 +154762,773.8100000052854,-0.05472579099011985 +154763,773.8150000052855,-0.05472572700869225 +154764,773.8200000052856,-0.05472566302476021 +154765,773.8250000052857,-0.054725599038323566 +154766,773.8300000052858,-0.054725535049382115 +154767,773.8350000052859,-0.05472547105793571 +154768,773.840000005286,-0.05472540706398415 +154769,773.8450000052861,-0.054725343067527264 +154770,773.8500000052862,-0.05472527906856489 +154771,773.8550000052863,-0.05472521506709683 +154772,773.8600000052865,-0.05472515106312291 +154773,773.8650000052866,-0.05472508705664297 +154774,773.8700000052867,-0.05472502304765681 +154775,773.8750000052868,-0.05472495903616425 +154776,773.8800000052869,-0.05472489502216515 +154777,773.885000005287,-0.05472483100565929 +154778,773.8900000052871,-0.0547247669866465 +154779,773.8950000052872,-0.054724702965126625 +154780,773.9000000052873,-0.054724638941099475 +154781,773.9050000052874,-0.05472457491456487 +154782,773.9100000052875,-0.05472451088552263 +154783,773.9150000052877,-0.0547244468539726 +154784,773.9200000052878,-0.05472438281991457 +154785,773.9250000052879,-0.054724318783348366 +154786,773.930000005288,-0.05472425474427382 +154787,773.9350000052881,-0.054724190702690766 +154788,773.9400000052882,-0.05472412665859901 +154789,773.9450000052883,-0.054724062611998366 +154790,773.9500000052884,-0.05472399856288867 +154791,773.9550000052885,-0.05472393451126975 +154792,773.9600000052886,-0.0547238704571414 +154793,773.9650000052887,-0.05472380640050348 +154794,773.9700000052889,-0.054723742341355776 +154795,773.975000005289,-0.05472367827969814 +154796,773.9800000052891,-0.05472361421553036 +154797,773.9850000052892,-0.05472355014885229 +154798,773.9900000052893,-0.05472348607966373 +154799,773.9950000052894,-0.05472342200796452 +154800,774.0000000052895,-0.054723357933754456 +154801,774.0050000052896,-0.05472329385703338 +154802,774.0100000052897,-0.054723229777801106 +154803,774.0150000052898,-0.054723165696057466 +154804,774.02000000529,-0.054723101611802265 +154805,774.02500000529,-0.05472303752503532 +154806,774.0300000052902,-0.054722973435756474 +154807,774.0350000052903,-0.05472290934396553 +154808,774.0400000052904,-0.05472284524966232 +154809,774.0450000052905,-0.05472278115284665 +154810,774.0500000052906,-0.054722717053518354 +154811,774.0550000052907,-0.05472265295167725 +154812,774.0600000052908,-0.054722588847323166 +154813,774.0650000052909,-0.05472252474045591 +154814,774.070000005291,-0.05472246063107531 +154815,774.0750000052911,-0.05472239651918119 +154816,774.0800000052913,-0.05472233240477335 +154817,774.0850000052914,-0.054722268287851636 +154818,774.0900000052915,-0.05472220416841586 +154819,774.0950000052916,-0.05472214004646584 +154820,774.1000000052917,-0.054722075922001394 +154821,774.1050000052918,-0.054722011795022354 +154822,774.1100000052919,-0.054721947665528535 +154823,774.115000005292,-0.05472188353351975 +154824,774.1200000052921,-0.05472181939899581 +154825,774.1250000052922,-0.054721755261956544 +154826,774.1300000052923,-0.05472169112240179 +154827,774.1350000052925,-0.05472162698033137 +154828,774.1400000052926,-0.054721562835745065 +154829,774.1450000052927,-0.05472149868864273 +154830,774.1500000052928,-0.05472143453902417 +154831,774.1550000052929,-0.054721370386889207 +154832,774.160000005293,-0.054721306232237664 +154833,774.1650000052931,-0.05472124207506936 +154834,774.1700000052932,-0.054721177915384105 +154835,774.1750000052933,-0.05472111375318174 +154836,774.1800000052934,-0.054721049588462065 +154837,774.1850000052935,-0.05472098542122491 +154838,774.1900000052937,-0.05472092125147009 +154839,774.1950000052938,-0.05472085707919743 +154840,774.2000000052939,-0.054720792904406734 +154841,774.205000005294,-0.05472072872709785 +154842,774.2100000052941,-0.05472066454727057 +154843,774.2150000052942,-0.05472060036492474 +154844,774.2200000052943,-0.05472053618006014 +154845,774.2250000052944,-0.05472047199267662 +154846,774.2300000052945,-0.05472040780277399 +154847,774.2350000052946,-0.05472034361035207 +154848,774.2400000052947,-0.05472027941541069 +154849,774.2450000052949,-0.05472021521794965 +154850,774.250000005295,-0.054720151017968774 +154851,774.2550000052951,-0.05472008681546788 +154852,774.2600000052952,-0.054720022610446804 +154853,774.2650000052953,-0.05471995840290535 +154854,774.2700000052954,-0.05471989419284333 +154855,774.2750000052955,-0.05471982998026057 +154856,774.2800000052956,-0.05471976576515689 +154857,774.2850000052957,-0.05471970154753211 +154858,774.2900000052958,-0.05471963732738606 +154859,774.295000005296,-0.05471957310471853 +154860,774.300000005296,-0.05471950887952937 +154861,774.3050000052962,-0.054719444651818376 +154862,774.3100000052963,-0.05471938042158537 +154863,774.3150000052964,-0.05471931618883018 +154864,774.3200000052965,-0.054719251953552615 +154865,774.3250000052966,-0.0547191877157525 +154866,774.3300000052967,-0.05471912347542964 +154867,774.3350000052968,-0.05471905923258386 +154868,774.3400000052969,-0.05471899498721498 +154869,774.345000005297,-0.05471893073932283 +154870,774.3500000052971,-0.05471886648890721 +154871,774.3550000052973,-0.054718802235967944 +154872,774.3600000052974,-0.054718737980504854 +154873,774.3650000052975,-0.05471867372251775 +154874,774.3700000052976,-0.054718609462006455 +154875,774.3750000052977,-0.05471854519897079 +154876,774.3800000052978,-0.054718480933410564 +154877,774.3850000052979,-0.054718416665325606 +154878,774.390000005298,-0.05471835239471572 +154879,774.3950000052981,-0.05471828812158074 +154880,774.4000000052982,-0.054718223845920476 +154881,774.4050000052983,-0.05471815956773473 +154882,774.4100000052985,-0.054718095287023344 +154883,774.4150000052986,-0.054718031003786124 +154884,774.4200000052987,-0.05471796671802288 +154885,774.4250000052988,-0.05471790242973344 +154886,774.4300000052989,-0.05471783813891763 +154887,774.435000005299,-0.05471777384557524 +154888,774.4400000052991,-0.0547177095497061 +154889,774.4450000052992,-0.054717645251310044 +154890,774.4500000052993,-0.054717580950386875 +154891,774.4550000052994,-0.0547175166469364 +154892,774.4600000052995,-0.05471745234095845 +154893,774.4650000052997,-0.05471738803245283 +154894,774.4700000052998,-0.054717323721419374 +154895,774.4750000052999,-0.0547172594078579 +154896,774.4800000053,-0.05471719509176819 +154897,774.4850000053001,-0.0547171307731501 +154898,774.4900000053002,-0.054717066452003436 +154899,774.4950000053003,-0.05471700212832801 +154900,774.5000000053004,-0.054716937802123625 +154901,774.5050000053005,-0.05471687347339011 +154902,774.5100000053006,-0.05471680914212729 +154903,774.5150000053007,-0.05471674480833498 +154904,774.5200000053009,-0.05471668047201298 +154905,774.525000005301,-0.054716616133161124 +154906,774.5300000053011,-0.05471655179177923 +154907,774.5350000053012,-0.054716487447867085 +154908,774.5400000053013,-0.05471642310142453 +154909,774.5450000053014,-0.054716358752451386 +154910,774.5500000053015,-0.05471629440094745 +154911,774.5550000053016,-0.054716230046912555 +154912,774.5600000053017,-0.05471616569034651 +154913,774.5650000053018,-0.054716101331249135 +154914,774.570000005302,-0.054716036969620234 +154915,774.5750000053021,-0.05471597260545963 +154916,774.5800000053022,-0.054715908238767146 +154917,774.5850000053023,-0.054715843869542584 +154918,774.5900000053024,-0.05471577949778576 +154919,774.5950000053025,-0.05471571512349651 +154920,774.6000000053026,-0.05471565074667463 +154921,774.6050000053027,-0.05471558636731994 +154922,774.6100000053028,-0.05471552198543226 +154923,774.6150000053029,-0.05471545760101141 +154924,774.620000005303,-0.05471539321405719 +154925,774.6250000053031,-0.05471532882456943 +154926,774.6300000053033,-0.05471526443254793 +154927,774.6350000053034,-0.054715200037992504 +154928,774.6400000053035,-0.05471513564090299 +154929,774.6450000053036,-0.05471507124127919 +154930,774.6500000053037,-0.054715006839120915 +154931,774.6550000053038,-0.05471494243442798 +154932,774.6600000053039,-0.054714878027200216 +154933,774.665000005304,-0.054714813617437415 +154934,774.6700000053041,-0.05471474920513941 +154935,774.6750000053042,-0.05471468479030601 +154936,774.6800000053044,-0.05471462037293702 +154937,774.6850000053045,-0.054714555953032276 +154938,774.6900000053046,-0.054714491530591575 +154939,774.6950000053047,-0.054714427105614735 +154940,774.7000000053048,-0.054714362678101564 +154941,774.7050000053049,-0.05471429824805191 +154942,774.710000005305,-0.05471423381546555 +154943,774.7150000053051,-0.05471416938034231 +154944,774.7200000053052,-0.054714104942682015 +154945,774.7250000053053,-0.054714040502484455 +154946,774.7300000053054,-0.05471397605974946 +154947,774.7350000053056,-0.05471391161447684 +154948,774.7400000053057,-0.05471384716666643 +154949,774.7450000053058,-0.05471378271631801 +154950,774.7500000053059,-0.05471371826343142 +154951,774.755000005306,-0.054713653808006454 +154952,774.7600000053061,-0.05471358935004295 +154953,774.7650000053062,-0.05471352488954071 +154954,774.7700000053063,-0.054713460426499536 +154955,774.7750000053064,-0.05471339596091926 +154956,774.7800000053065,-0.05471333149279968 +154957,774.7850000053066,-0.054713267022140626 +154958,774.7900000053068,-0.05471320254894191 +154959,774.7950000053069,-0.05471313807320334 +154960,774.800000005307,-0.05471307359492472 +154961,774.8050000053071,-0.05471300911410589 +154962,774.8100000053072,-0.054712944630746635 +154963,774.8150000053073,-0.05471288014484678 +154964,774.8200000053074,-0.054712815656406136 +154965,774.8250000053075,-0.054712751165424525 +154966,774.8300000053076,-0.05471268667190175 +154967,774.8350000053077,-0.05471262217583764 +154968,774.8400000053078,-0.05471255767723199 +154969,774.845000005308,-0.05471249317608462 +154970,774.8500000053081,-0.05471242867239535 +154971,774.8550000053082,-0.05471236416616398 +154972,774.8600000053083,-0.054712299657390336 +154973,774.8650000053084,-0.05471223514607422 +154974,774.8700000053085,-0.05471217063221545 +154975,774.8750000053086,-0.05471210611581384 +154976,774.8800000053087,-0.0547120415968692 +154977,774.8850000053088,-0.05471197707538134 +154978,774.8900000053089,-0.054711912551350085 +154979,774.895000005309,-0.05471184802477524 +154980,774.9000000053092,-0.054711783495656606 +154981,774.9050000053093,-0.054711718963994016 +154982,774.9100000053094,-0.054711654429787274 +154983,774.9150000053095,-0.05471158989303619 +154984,774.9200000053096,-0.05471152535374057 +154985,774.9250000053097,-0.05471146081190024 +154986,774.9300000053098,-0.054711396267515 +154987,774.9350000053099,-0.054711331720584684 +154988,774.94000000531,-0.054711267171109086 +154989,774.9450000053101,-0.05471120261908802 +154990,774.9500000053102,-0.0547111380645213 +154991,774.9550000053104,-0.054711073507408725 +154992,774.9600000053105,-0.054711008947750134 +154993,774.9650000053106,-0.05471094438554532 +154994,774.9700000053107,-0.0547108798207941 +154995,774.9750000053108,-0.054710815253496296 +154996,774.9800000053109,-0.0547107506836517 +154997,774.985000005311,-0.054710686111260134 +154998,774.9900000053111,-0.05471062153632141 +154999,774.9950000053112,-0.054710556958835345 +155000,775.0000000053113,-0.054710492378801746 +155001,775.0050000053114,-0.054710427796220415 +155002,775.0100000053116,-0.05471036321109118 +155003,775.0150000053117,-0.05471029862341383 +155004,775.0200000053118,-0.05471023403318821 +155005,775.0250000053119,-0.054710169440414104 +155006,775.030000005312,-0.05471010484509134 +155007,775.0350000053121,-0.05471004024721971 +155008,775.0400000053122,-0.05470997564679904 +155009,775.0450000053123,-0.05470991104382914 +155010,775.0500000053124,-0.05470984643830981 +155011,775.0550000053125,-0.05470978183024089 +155012,775.0600000053126,-0.05470971721962215 +155013,775.0650000053128,-0.054709652606453434 +155014,775.0700000053129,-0.05470958799073453 +155015,775.075000005313,-0.05470952337246527 +155016,775.0800000053131,-0.05470945875164546 +155017,775.0850000053132,-0.05470939412827489 +155018,775.0900000053133,-0.0547093295023534 +155019,775.0950000053134,-0.05470926487388079 +155020,775.1000000053135,-0.05470920024285685 +155021,775.1050000053136,-0.054709135609281416 +155022,775.1100000053137,-0.0547090709731543 +155023,775.1150000053138,-0.05470900633447529 +155024,775.120000005314,-0.054708941693244216 +155025,775.1250000053141,-0.05470887704946088 +155026,775.1300000053142,-0.0547088124031251 +155027,775.1350000053143,-0.05470874775423668 +155028,775.1400000053144,-0.05470868310279543 +155029,775.1450000053145,-0.05470861844880116 +155030,775.1500000053146,-0.05470855379225368 +155031,775.1550000053147,-0.054708489133152814 +155032,775.1600000053148,-0.054708424471498346 +155033,775.1650000053149,-0.05470835980729011 +155034,775.170000005315,-0.0547082951405279 +155035,775.1750000053152,-0.05470823047121154 +155036,775.1800000053153,-0.05470816579934082 +155037,775.1850000053154,-0.05470810112491557 +155038,775.1900000053155,-0.0547080364479356 +155039,775.1950000053156,-0.0547079717684007 +155040,775.2000000053157,-0.05470790708631069 +155041,775.2050000053158,-0.054707842401665374 +155042,775.2100000053159,-0.05470777771446457 +155043,775.215000005316,-0.05470771302470809 +155044,775.2200000053161,-0.054707648332395734 +155045,775.2250000053162,-0.05470758363752732 +155046,775.2300000053164,-0.05470751894010266 +155047,775.2350000053165,-0.05470745424012155 +155048,775.2400000053166,-0.054707389537583806 +155049,775.2450000053167,-0.05470732483248925 +155050,775.2500000053168,-0.054707260124837676 +155051,775.2550000053169,-0.05470719541462889 +155052,775.260000005317,-0.0547071307018627 +155053,775.2650000053171,-0.054707065986538926 +155054,775.2700000053172,-0.054707001268657365 +155055,775.2750000053173,-0.054706936548217844 +155056,775.2800000053174,-0.05470687182522016 +155057,775.2850000053176,-0.054706807099664134 +155058,775.2900000053177,-0.05470674237154955 +155059,775.2950000053178,-0.054706677640876236 +155060,775.3000000053179,-0.054706612907644 +155061,775.305000005318,-0.054706548171852644 +155062,775.3100000053181,-0.05470648343350197 +155063,775.3150000053182,-0.054706418692591796 +155064,775.3200000053183,-0.05470635394912193 +155065,775.3250000053184,-0.05470628920309219 +155066,775.3300000053185,-0.054706224454502364 +155067,775.3350000053186,-0.05470615970335227 +155068,775.3400000053188,-0.05470609494964172 +155069,775.3450000053189,-0.054706030193370524 +155070,775.350000005319,-0.054705965434538484 +155071,775.3550000053191,-0.05470590067314541 +155072,775.3600000053192,-0.05470583590919111 +155073,775.3650000053193,-0.05470577114267539 +155074,775.3700000053194,-0.05470570637359806 +155075,775.3750000053195,-0.05470564160195893 +155076,775.3800000053196,-0.05470557682775781 +155077,775.3850000053197,-0.0547055120509945 +155078,775.3900000053198,-0.0547054472716688 +155079,775.39500000532,-0.05470538248978053 +155080,775.4000000053201,-0.054705317705329506 +155081,775.4050000053202,-0.054705252918315524 +155082,775.4100000053203,-0.05470518812873838 +155083,775.4150000053204,-0.05470512333659791 +155084,775.4200000053205,-0.054705058541893906 +155085,775.4250000053206,-0.05470499374462617 +155086,775.4300000053207,-0.05470492894479452 +155087,775.4350000053208,-0.05470486414239875 +155088,775.4400000053209,-0.054704799337438687 +155089,775.445000005321,-0.054704734529914124 +155090,775.4500000053212,-0.054704669719824864 +155091,775.4550000053213,-0.05470460490717073 +155092,775.4600000053214,-0.05470454009195152 +155093,775.4650000053215,-0.05470447527416704 +155094,775.4700000053216,-0.05470441045381709 +155095,775.4750000053217,-0.054704345630901485 +155096,775.4800000053218,-0.054704280805420044 +155097,775.4850000053219,-0.05470421597737256 +155098,775.490000005322,-0.054704151146758834 +155099,775.4950000053221,-0.05470408631357868 +155100,775.5000000053222,-0.05470402147783192 +155101,775.5050000053224,-0.054703956639518325 +155102,775.5100000053225,-0.05470389179863773 +155103,775.5150000053226,-0.054703826955189924 +155104,775.5200000053227,-0.054703762109174735 +155105,775.5250000053228,-0.05470369726059195 +155106,775.5300000053229,-0.054703632409441386 +155107,775.535000005323,-0.054703567555722844 +155108,775.5400000053231,-0.05470350269943613 +155109,775.5450000053232,-0.054703437840581064 +155110,775.5500000053233,-0.054703372979157436 +155111,775.5550000053234,-0.05470330811516506 +155112,775.5600000053236,-0.054703243248603727 +155113,775.5650000053237,-0.054703178379473257 +155114,775.5700000053238,-0.05470311350777345 +155115,775.5750000053239,-0.05470304863350413 +155116,775.580000005324,-0.05470298375666508 +155117,775.5850000053241,-0.05470291887725611 +155118,775.5900000053242,-0.05470285399527704 +155119,775.5950000053243,-0.05470278911072765 +155120,775.6000000053244,-0.05470272422360777 +155121,775.6050000053245,-0.0547026593339172 +155122,775.6100000053247,-0.05470259444165573 +155123,775.6150000053248,-0.05470252954682319 +155124,775.6200000053249,-0.05470246464941937 +155125,775.625000005325,-0.05470239974944407 +155126,775.6300000053251,-0.054702334846897106 +155127,775.6350000053252,-0.054702269941778285 +155128,775.6400000053253,-0.0547022050340874 +155129,775.6450000053254,-0.05470214012382427 +155130,775.6500000053255,-0.054702075210988695 +155131,775.6550000053256,-0.05470201029558048 +155132,775.6600000053257,-0.05470194537759943 +155133,775.6650000053259,-0.05470188045704535 +155134,775.670000005326,-0.054701815533918036 +155135,775.6750000053261,-0.05470175060821731 +155136,775.6800000053262,-0.05470168567994297 +155137,775.6850000053263,-0.05470162074909481 +155138,775.6900000053264,-0.054701555815672646 +155139,775.6950000053265,-0.05470149087967629 +155140,775.7000000053266,-0.054701425941105525 +155141,775.7050000053267,-0.054701360999960175 +155142,775.7100000053268,-0.05470129605624002 +155143,775.7150000053269,-0.0547012311099449 +155144,775.720000005327,-0.05470116616107458 +155145,775.7250000053272,-0.054701101209628906 +155146,775.7300000053273,-0.05470103625560765 +155147,775.7350000053274,-0.054700971299010616 +155148,775.7400000053275,-0.05470090633983763 +155149,775.7450000053276,-0.054700841378088484 +155150,775.7500000053277,-0.05470077641376298 +155151,775.7550000053278,-0.054700711446860936 +155152,775.7600000053279,-0.05470064647738214 +155153,775.765000005328,-0.0547005815053264 +155154,775.7700000053281,-0.05470051653069352 +155155,775.7750000053283,-0.054700451553483305 +155156,775.7800000053284,-0.05470038657369557 +155157,775.7850000053285,-0.0547003215913301 +155158,775.7900000053286,-0.0547002566063867 +155159,775.7950000053287,-0.05470019161886519 +155160,775.8000000053288,-0.05470012662876536 +155161,775.8050000053289,-0.05470006163608702 +155162,775.810000005329,-0.054699996640829966 +155163,775.8150000053291,-0.054699931642994006 +155164,775.8200000053292,-0.05469986664257894 +155165,775.8250000053293,-0.05469980163958458 +155166,775.8300000053295,-0.05469973663401072 +155167,775.8350000053296,-0.05469967162585718 +155168,775.8400000053297,-0.05469960661512374 +155169,775.8450000053298,-0.05469954160181021 +155170,775.8500000053299,-0.0546994765859164 +155171,775.85500000533,-0.05469941156744211 +155172,775.8600000053301,-0.05469934654638715 +155173,775.8650000053302,-0.05469928152275131 +155174,775.8700000053303,-0.05469921649653439 +155175,775.8750000053304,-0.0546991514677362 +155176,775.8800000053305,-0.054699086436356556 +155177,775.8850000053307,-0.05469902140239525 +155178,775.8900000053308,-0.05469895636585207 +155179,775.8950000053309,-0.05469889132672684 +155180,775.900000005331,-0.054698826285019354 +155181,775.9050000053311,-0.054698761240729414 +155182,775.9100000053312,-0.05469869619385682 +155183,775.9150000053313,-0.05469863114440138 +155184,775.9200000053314,-0.054698566092362885 +155185,775.9250000053315,-0.054698501037741154 +155186,775.9300000053316,-0.054698435980535975 +155187,775.9350000053317,-0.05469837092074717 +155188,775.9400000053319,-0.05469830585837451 +155189,775.945000005332,-0.05469824079341783 +155190,775.9500000053321,-0.05469817572587691 +155191,775.9550000053322,-0.05469811065575155 +155192,775.9600000053323,-0.05469804558304156 +155193,775.9650000053324,-0.05469798050774675 +155194,775.9700000053325,-0.05469791542986691 +155195,775.9750000053326,-0.05469785034940185 +155196,775.9800000053327,-0.05469778526635136 +155197,775.9850000053328,-0.054697720180715254 +155198,775.990000005333,-0.05469765509249334 +155199,775.995000005333,-0.0546975900016854 +155200,776.0000000053332,-0.054697524908291245 +155201,776.0050000053333,-0.05469745981231067 +155202,776.0100000053334,-0.05469739471374348 +155203,776.0150000053335,-0.05469732961258949 +155204,776.0200000053336,-0.05469726450884848 +155205,776.0250000053337,-0.054697199402520255 +155206,776.0300000053338,-0.05469713429360462 +155207,776.0350000053339,-0.05469706918210139 +155208,776.040000005334,-0.05469700406801035 +155209,776.0450000053341,-0.05469693895133129 +155210,776.0500000053343,-0.05469687383206404 +155211,776.0550000053344,-0.05469680871020839 +155212,776.0600000053345,-0.054696743585764124 +155213,776.0650000053346,-0.05469667845873107 +155214,776.0700000053347,-0.054696613329109016 +155215,776.0750000053348,-0.05469654819689775 +155216,776.0800000053349,-0.05469648306209709 +155217,776.085000005335,-0.05469641792470682 +155218,776.0900000053351,-0.05469635278472677 +155219,776.0950000053352,-0.05469628764215672 +155220,776.1000000053353,-0.05469622249699647 +155221,776.1050000053355,-0.05469615734924582 +155222,776.1100000053356,-0.05469609219890458 +155223,776.1150000053357,-0.05469602704597253 +155224,776.1200000053358,-0.054695961890449486 +155225,776.1250000053359,-0.05469589673233524 +155226,776.130000005336,-0.05469583157162961 +155227,776.1350000053361,-0.05469576640833239 +155228,776.1400000053362,-0.05469570124244336 +155229,776.1450000053363,-0.05469563607396235 +155230,776.1500000053364,-0.05469557090288913 +155231,776.1550000053365,-0.05469550572922351 +155232,776.1600000053367,-0.05469544055296531 +155233,776.1650000053368,-0.054695375374114306 +155234,776.1700000053369,-0.05469531019267031 +155235,776.175000005337,-0.05469524500863311 +155236,776.1800000053371,-0.05469517982200252 +155237,776.1850000053372,-0.05469511463277831 +155238,776.1900000053373,-0.05469504944096032 +155239,776.1950000053374,-0.05469498424654833 +155240,776.2000000053375,-0.054694919049542136 +155241,776.2050000053376,-0.05469485384994154 +155242,776.2100000053377,-0.05469478864774635 +155243,776.2150000053379,-0.05469472344295636 +155244,776.220000005338,-0.054694658235571354 +155245,776.2250000053381,-0.05469459302559115 +155246,776.2300000053382,-0.054694527813015544 +155247,776.2350000053383,-0.05469446259784432 +155248,776.2400000053384,-0.05469439738007731 +155249,776.2450000053385,-0.05469433215971428 +155250,776.2500000053386,-0.05469426693675505 +155251,776.2550000053387,-0.054694201711199396 +155252,776.2600000053388,-0.05469413648304715 +155253,776.265000005339,-0.054694071252298075 +155254,776.270000005339,-0.054694006018951996 +155255,776.2750000053392,-0.0546939407830087 +155256,776.2800000053393,-0.05469387554446799 +155257,776.2850000053394,-0.054693810303329655 +155258,776.2900000053395,-0.0546937450595935 +155259,776.2950000053396,-0.05469367981325932 +155260,776.3000000053397,-0.05469361456432692 +155261,776.3050000053398,-0.054693549312796096 +155262,776.3100000053399,-0.05469348405866664 +155263,776.31500000534,-0.054693418801938364 +155264,776.3200000053401,-0.05469335354261107 +155265,776.3250000053403,-0.05469328828068453 +155266,776.3300000053404,-0.05469322301615855 +155267,776.3350000053405,-0.05469315774903295 +155268,776.3400000053406,-0.05469309247930751 +155269,776.3450000053407,-0.05469302720698203 +155270,776.3500000053408,-0.05469296193205629 +155271,776.3550000053409,-0.054692896654530115 +155272,776.360000005341,-0.0546928313744033 +155273,776.3650000053411,-0.05469276609167562 +155274,776.3700000053412,-0.05469270080634691 +155275,776.3750000053413,-0.05469263551841694 +155276,776.3800000053415,-0.0546925702278855 +155277,776.3850000053416,-0.05469250493475241 +155278,776.3900000053417,-0.05469243963901745 +155279,776.3950000053418,-0.05469237434068043 +155280,776.4000000053419,-0.05469230903974115 +155281,776.405000005342,-0.05469224373619939 +155282,776.4100000053421,-0.05469217843005495 +155283,776.4150000053422,-0.054692113121307645 +155284,776.4200000053423,-0.05469204780995726 +155285,776.4250000053424,-0.05469198249600359 +155286,776.4300000053425,-0.054691917179446436 +155287,776.4350000053427,-0.0546918518602856 +155288,776.4400000053428,-0.05469178653852086 +155289,776.4450000053429,-0.05469172121415204 +155290,776.450000005343,-0.05469165588717891 +155291,776.4550000053431,-0.05469159055760129 +155292,776.4600000053432,-0.05469152522541896 +155293,776.4650000053433,-0.05469145989063172 +155294,776.4700000053434,-0.054691394553239375 +155295,776.4750000053435,-0.05469132921324172 +155296,776.4800000053436,-0.05469126387063854 +155297,776.4850000053437,-0.05469119852542964 +155298,776.4900000053439,-0.054691133177614815 +155299,776.495000005344,-0.054691067827193865 +155300,776.5000000053441,-0.05469100247416657 +155301,776.5050000053442,-0.05469093711853275 +155302,776.5100000053443,-0.054690871760292185 +155303,776.5150000053444,-0.054690806399444666 +155304,776.5200000053445,-0.054690741035990004 +155305,776.5250000053446,-0.05469067566992798 +155306,776.5300000053447,-0.054690610301258415 +155307,776.5350000053448,-0.054690544929981086 +155308,776.540000005345,-0.054690479556095795 +155309,776.5450000053451,-0.05469041417960233 +155310,776.5500000053452,-0.05469034880050049 +155311,776.5550000053453,-0.05469028341879008 +155312,776.5600000053454,-0.054690218034470876 +155313,776.5650000053455,-0.05469015264754269 +155314,776.5700000053456,-0.05469008725800531 +155315,776.5750000053457,-0.05469002186585853 +155316,776.5800000053458,-0.05468995647110215 +155317,776.5850000053459,-0.054689891073735966 +155318,776.590000005346,-0.054689825673759775 +155319,776.5950000053462,-0.05468976027117336 +155320,776.6000000053463,-0.054689694865976524 +155321,776.6050000053464,-0.05468962945816907 +155322,776.6100000053465,-0.05468956404775078 +155323,776.6150000053466,-0.05468949863472146 +155324,776.6200000053467,-0.054689433219080895 +155325,776.6250000053468,-0.05468936780082889 +155326,776.6300000053469,-0.05468930237996523 +155327,776.635000005347,-0.05468923695648971 +155328,776.6400000053471,-0.054689171530402134 +155329,776.6450000053472,-0.054689106101702294 +155330,776.6500000053474,-0.05468904067038999 +155331,776.6550000053475,-0.054688975236465 +155332,776.6600000053476,-0.05468890979992713 +155333,776.6650000053477,-0.05468884436077617 +155334,776.6700000053478,-0.05468877891901192 +155335,776.6750000053479,-0.05468871347463417 +155336,776.680000005348,-0.054688648027642714 +155337,776.6850000053481,-0.05468858257803734 +155338,776.6900000053482,-0.054688517125817855 +155339,776.6950000053483,-0.05468845167098404 +155340,776.7000000053484,-0.054688386213535695 +155341,776.7050000053486,-0.05468832075347262 +155342,776.7100000053487,-0.054688255290794616 +155343,776.7150000053488,-0.05468818982550146 +155344,776.7200000053489,-0.05468812435759294 +155345,776.725000005349,-0.05468805888706886 +155346,776.7300000053491,-0.05468799341392902 +155347,776.7350000053492,-0.0546879279381732 +155348,776.7400000053493,-0.05468786245980121 +155349,776.7450000053494,-0.05468779697881284 +155350,776.7500000053495,-0.05468773149520787 +155351,776.7550000053496,-0.05468766600898611 +155352,776.7600000053498,-0.054687600520147345 +155353,776.7650000053499,-0.05468753502869136 +155354,776.77000000535,-0.05468746953461796 +155355,776.7750000053501,-0.05468740403792694 +155356,776.7800000053502,-0.0546873385386181 +155357,776.7850000053503,-0.05468727303669121 +155358,776.7900000053504,-0.05468720753214608 +155359,776.7950000053505,-0.054687142024982496 +155360,776.8000000053506,-0.054687076515200245 +155361,776.8050000053507,-0.05468701100279914 +155362,776.8100000053508,-0.05468694548777896 +155363,776.815000005351,-0.05468687997013949 +155364,776.8200000053511,-0.05468681444988053 +155365,776.8250000053512,-0.054686748927001885 +155366,776.8300000053513,-0.05468668340150333 +155367,776.8350000053514,-0.05468661787338468 +155368,776.8400000053515,-0.054686552342645696 +155369,776.8450000053516,-0.05468648680928619 +155370,776.8500000053517,-0.05468642127330595 +155371,776.8550000053518,-0.054686355734704775 +155372,776.8600000053519,-0.05468629019348245 +155373,776.865000005352,-0.05468622464963877 +155374,776.8700000053522,-0.05468615910317354 +155375,776.8750000053523,-0.054686093554086525 +155376,776.8800000053524,-0.05468602800237754 +155377,776.8850000053525,-0.05468596244804637 +155378,776.8900000053526,-0.054685896891092795 +155379,776.8950000053527,-0.054685831331516624 +155380,776.9000000053528,-0.05468576576931764 +155381,776.9050000053529,-0.05468570020449563 +155382,776.910000005353,-0.0546856346370504 +155383,776.9150000053531,-0.05468556906698173 +155384,776.9200000053532,-0.054685503494289425 +155385,776.9250000053534,-0.05468543791897326 +155386,776.9300000053535,-0.054685372341033045 +155387,776.9350000053536,-0.05468530676046855 +155388,776.9400000053537,-0.05468524117727958 +155389,776.9450000053538,-0.05468517559146592 +155390,776.9500000053539,-0.054685110003027365 +155391,776.955000005354,-0.0546850444119637 +155392,776.9600000053541,-0.05468497881827473 +155393,776.9650000053542,-0.054684913221960244 +155394,776.9700000053543,-0.05468484762302002 +155395,776.9750000053544,-0.054684782021453854 +155396,776.9800000053546,-0.05468471641726155 +155397,776.9850000053547,-0.05468465081044289 +155398,776.9900000053548,-0.054684585200997664 +155399,776.9950000053549,-0.05468451958892565 +155400,777.000000005355,-0.05468445397422666 +155401,777.0050000053551,-0.054684388356900475 +155402,777.0100000053552,-0.054684322736946886 +155403,777.0150000053553,-0.05468425711436568 +155404,777.0200000053554,-0.05468419148915666 +155405,777.0250000053555,-0.0546841258613196 +155406,777.0300000053556,-0.0546840602308543 +155407,777.0350000053558,-0.05468399459776056 +155408,777.0400000053559,-0.05468392896203815 +155409,777.045000005356,-0.05468386332368688 +155410,777.0500000053561,-0.05468379768270653 +155411,777.0550000053562,-0.054683732039096884 +155412,777.0600000053563,-0.05468366639285773 +155413,777.0650000053564,-0.054683600743988876 +155414,777.0700000053565,-0.054683535092490104 +155415,777.0750000053566,-0.0546834694383612 +155416,777.0800000053567,-0.054683403781601955 +155417,777.0850000053568,-0.05468333812221216 +155418,777.090000005357,-0.05468327246019162 +155419,777.0950000053571,-0.054683206795540104 +155420,777.1000000053572,-0.0546831411282574 +155421,777.1050000053573,-0.05468307545834331 +155422,777.1100000053574,-0.054683009785797626 +155423,777.1150000053575,-0.054682944110620114 +155424,777.1200000053576,-0.05468287843281058 +155425,777.1250000053577,-0.05468281275236882 +155426,777.1300000053578,-0.05468274706929462 +155427,777.1350000053579,-0.05468268138358776 +155428,777.140000005358,-0.05468261569524805 +155429,777.1450000053582,-0.05468255000427524 +155430,777.1500000053583,-0.054682484310669154 +155431,777.1550000053584,-0.05468241861442958 +155432,777.1600000053585,-0.054682352915556294 +155433,777.1650000053586,-0.05468228721404909 +155434,777.1700000053587,-0.05468222150990775 +155435,777.1750000053588,-0.054682155803132064 +155436,777.1800000053589,-0.054682090093721825 +155437,777.185000005359,-0.054682024381676825 +155438,777.1900000053591,-0.05468195866699685 +155439,777.1950000053592,-0.0546818929496817 +155440,777.2000000053594,-0.05468182722973114 +155441,777.2050000053595,-0.05468176150714497 +155442,777.2100000053596,-0.05468169578192299 +155443,777.2150000053597,-0.05468163005406497 +155444,777.2200000053598,-0.0546815643235707 +155445,777.2250000053599,-0.05468149859043997 +155446,777.23000000536,-0.05468143285467258 +155447,777.2350000053601,-0.05468136711626832 +155448,777.2400000053602,-0.05468130137522697 +155449,777.2450000053603,-0.05468123563154831 +155450,777.2500000053604,-0.054681169885232125 +155451,777.2550000053606,-0.054681104136278226 +155452,777.2600000053607,-0.054681038384686374 +155453,777.2650000053608,-0.05468097263045638 +155454,777.2700000053609,-0.05468090687358803 +155455,777.275000005361,-0.05468084111408109 +155456,777.2800000053611,-0.05468077535193537 +155457,777.2850000053612,-0.05468070958715065 +155458,777.2900000053613,-0.05468064381972671 +155459,777.2950000053614,-0.05468057804966336 +155460,777.3000000053615,-0.05468051227696036 +155461,777.3050000053616,-0.05468044650161751 +155462,777.3100000053618,-0.0546803807236346 +155463,777.3150000053619,-0.05468031494301141 +155464,777.320000005362,-0.05468024915974773 +155465,777.3250000053621,-0.05468018337384335 +155466,777.3300000053622,-0.05468011758529807 +155467,777.3350000053623,-0.05468005179411165 +155468,777.3400000053624,-0.05467998600028389 +155469,777.3450000053625,-0.054679920203814576 +155470,777.3500000053626,-0.05467985440470349 +155471,777.3550000053627,-0.05467978860295044 +155472,777.3600000053628,-0.054679722798555194 +155473,777.365000005363,-0.054679656991517535 +155474,777.3700000053631,-0.05467959118183725 +155475,777.3750000053632,-0.054679525369514155 +155476,777.3800000053633,-0.054679459554548004 +155477,777.3850000053634,-0.05467939373693859 +155478,777.3900000053635,-0.054679327916685706 +155479,777.3950000053636,-0.054679262093789135 +155480,777.4000000053637,-0.05467919626824866 +155481,777.4050000053638,-0.054679130440064075 +155482,777.4100000053639,-0.054679064609235155 +155483,777.415000005364,-0.0546789987757617 +155484,777.4200000053642,-0.05467893293964349 +155485,777.4250000053643,-0.05467886710088031 +155486,777.4300000053644,-0.05467880125947196 +155487,777.4350000053645,-0.054678735415418206 +155488,777.4400000053646,-0.054678669568718835 +155489,777.4450000053647,-0.05467860371937364 +155490,777.4500000053648,-0.0546785378673824 +155491,777.4550000053649,-0.05467847201274492 +155492,777.460000005365,-0.05467840615546096 +155493,777.4650000053651,-0.05467834029553032 +155494,777.4700000053653,-0.05467827443295279 +155495,777.4750000053654,-0.05467820856772815 +155496,777.4800000053655,-0.05467814269985618 +155497,777.4850000053656,-0.054678076829336675 +155498,777.4900000053657,-0.0546780109561694 +155499,777.4950000053658,-0.054677945080354166 +155500,777.5000000053659,-0.054677879201890746 +155501,777.505000005366,-0.05467781332077892 +155502,777.5100000053661,-0.05467774743701848 +155503,777.5150000053662,-0.054677681550609224 +155504,777.5200000053663,-0.05467761566155092 +155505,777.5250000053665,-0.054677549769843355 +155506,777.5300000053666,-0.05467748387548632 +155507,777.5350000053667,-0.05467741797847958 +155508,777.5400000053668,-0.054677352078822954 +155509,777.5450000053669,-0.05467728617651619 +155510,777.550000005367,-0.05467722027155909 +155511,777.5550000053671,-0.05467715436395146 +155512,777.5600000053672,-0.05467708845369305 +155513,777.5650000053673,-0.05467702254078365 +155514,777.5700000053674,-0.054676956625223073 +155515,777.5750000053675,-0.05467689070701107 +155516,777.5800000053677,-0.05467682478614745 +155517,777.5850000053678,-0.054676758862631986 +155518,777.5900000053679,-0.05467669293646445 +155519,777.595000005368,-0.05467662700764464 +155520,777.6000000053681,-0.05467656107617235 +155521,777.6050000053682,-0.054676495142047345 +155522,777.6100000053683,-0.05467642920526942 +155523,777.6150000053684,-0.05467636326583835 +155524,777.6200000053685,-0.05467629732375393 +155525,777.6250000053686,-0.054676231379015935 +155526,777.6300000053687,-0.054676165431624145 +155527,777.6350000053689,-0.054676099481578366 +155528,777.640000005369,-0.05467603352887835 +155529,777.6450000053691,-0.05467596757352391 +155530,777.6500000053692,-0.054675901615514805 +155531,777.6550000053693,-0.054675835654850846 +155532,777.6600000053694,-0.05467576969153178 +155533,777.6650000053695,-0.054675703725557426 +155534,777.6700000053696,-0.05467563775692754 +155535,777.6750000053697,-0.05467557178564194 +155536,777.6800000053698,-0.054675505811700366 +155537,777.68500000537,-0.054675439835102625 +155538,777.69000000537,-0.05467537385584851 +155539,777.6950000053702,-0.05467530787393778 +155540,777.7000000053703,-0.05467524188937023 +155541,777.7050000053704,-0.05467517590214564 +155542,777.7100000053705,-0.05467510991226379 +155543,777.7150000053706,-0.05467504391972448 +155544,777.7200000053707,-0.05467497792452747 +155545,777.7250000053708,-0.05467491192667255 +155546,777.7300000053709,-0.054674845926159524 +155547,777.735000005371,-0.05467477992298814 +155548,777.7400000053711,-0.0546747139171582 +155549,777.7450000053713,-0.05467464790866949 +155550,777.7500000053714,-0.05467458189752178 +155551,777.7550000053715,-0.054674515883714865 +155552,777.7600000053716,-0.054674449867248516 +155553,777.7650000053717,-0.05467438384812252 +155554,777.7700000053718,-0.05467431782633665 +155555,777.7750000053719,-0.05467425180189071 +155556,777.780000005372,-0.054674185774784466 +155557,777.7850000053721,-0.054674119745017694 +155558,777.7900000053722,-0.054674053712590195 +155559,777.7950000053723,-0.05467398767750173 +155560,777.8000000053725,-0.0546739216397521 +155561,777.8050000053726,-0.05467385559934107 +155562,777.8100000053727,-0.054673789556268435 +155563,777.8150000053728,-0.05467372351053398 +155564,777.8200000053729,-0.054673657462137475 +155565,777.825000005373,-0.05467359141107869 +155566,777.8300000053731,-0.054673525357357436 +155567,777.8350000053732,-0.054673459300973476 +155568,777.8400000053733,-0.054673393241926604 +155569,777.8450000053734,-0.05467332718021659 +155570,777.8500000053735,-0.05467326111584322 +155571,777.8550000053737,-0.054673195048806265 +155572,777.8600000053738,-0.05467312897910551 +155573,777.8650000053739,-0.05467306290674075 +155574,777.870000005374,-0.054672996831711757 +155575,777.8750000053741,-0.054672930754018315 +155576,777.8800000053742,-0.054672864673660185 +155577,777.8850000053743,-0.05467279859063717 +155578,777.8900000053744,-0.054672732504949056 +155579,777.8950000053745,-0.05467266641659561 +155580,777.9000000053746,-0.054672600325576595 +155581,777.9050000053747,-0.054672534231891834 +155582,777.9100000053749,-0.05467246813554108 +155583,777.915000005375,-0.05467240203652412 +155584,777.9200000053751,-0.054672335934840735 +155585,777.9250000053752,-0.05467226983049069 +155586,777.9300000053753,-0.05467220372347378 +155587,777.9350000053754,-0.0546721376137898 +155588,777.9400000053755,-0.05467207150143851 +155589,777.9450000053756,-0.0546720053864197 +155590,777.9500000053757,-0.05467193926873314 +155591,777.9550000053758,-0.05467187314837861 +155592,777.960000005376,-0.05467180702535591 +155593,777.965000005376,-0.054671740899664784 +155594,777.9700000053762,-0.05467167477130505 +155595,777.9750000053763,-0.05467160864027646 +155596,777.9800000053764,-0.05467154250657882 +155597,777.9850000053765,-0.05467147637021188 +155598,777.9900000053766,-0.054671410231175444 +155599,777.9950000053767,-0.054671344089469276 +155600,778.0000000053768,-0.05467127794509317 +155601,778.0050000053769,-0.05467121179804688 +155602,778.010000005377,-0.05467114564833021 +155603,778.0150000053771,-0.05467107949594294 +155604,778.0200000053773,-0.054671013340884825 +155605,778.0250000053774,-0.054670947183155676 +155606,778.0300000053775,-0.054670881022755254 +155607,778.0350000053776,-0.05467081485968334 +155608,778.0400000053777,-0.0546707486939397 +155609,778.0450000053778,-0.05467068252552414 +155610,778.0500000053779,-0.05467061635443644 +155611,778.055000005378,-0.05467055018067635 +155612,778.0600000053781,-0.05467048400424366 +155613,778.0650000053782,-0.05467041782513816 +155614,778.0700000053783,-0.05467035164335961 +155615,778.0750000053785,-0.0546702854589078 +155616,778.0800000053786,-0.05467021927178251 +155617,778.0850000053787,-0.05467015308198353 +155618,778.0900000053788,-0.05467008688951062 +155619,778.0950000053789,-0.05467002069436356 +155620,778.100000005379,-0.054669954496542134 +155621,778.1050000053791,-0.05466988829604611 +155622,778.1100000053792,-0.05466982209287528 +155623,778.1150000053793,-0.05466975588702942 +155624,778.1200000053794,-0.054669689678508306 +155625,778.1250000053795,-0.05466962346731171 +155626,778.1300000053797,-0.05466955725343942 +155627,778.1350000053798,-0.05466949103689122 +155628,778.1400000053799,-0.054669424817666866 +155629,778.14500000538,-0.05466935859576614 +155630,778.1500000053801,-0.05466929237118883 +155631,778.1550000053802,-0.05466922614393473 +155632,778.1600000053803,-0.054669159914003576 +155633,778.1650000053804,-0.05466909368139517 +155634,778.1700000053805,-0.0546690274461093 +155635,778.1750000053806,-0.05466896120814572 +155636,778.1800000053807,-0.05466889496750422 +155637,778.1850000053809,-0.05466882872418458 +155638,778.190000005381,-0.05466876247818657 +155639,778.1950000053811,-0.054668696229509976 +155640,778.2000000053812,-0.054668629978154575 +155641,778.2050000053813,-0.05466856372412012 +155642,778.2100000053814,-0.05466849746740643 +155643,778.2150000053815,-0.05466843120801325 +155644,778.2200000053816,-0.05466836494594036 +155645,778.2250000053817,-0.05466829868118754 +155646,778.2300000053818,-0.05466823241375458 +155647,778.235000005382,-0.05466816614364124 +155648,778.2400000053821,-0.054668099870847316 +155649,778.2450000053822,-0.05466803359537256 +155650,778.2500000053823,-0.054667967317216765 +155651,778.2550000053824,-0.0546679010363797 +155652,778.2600000053825,-0.054667834752861154 +155653,778.2650000053826,-0.05466776846666089 +155654,778.2700000053827,-0.05466770217777869 +155655,778.2750000053828,-0.05466763588621433 +155656,778.2800000053829,-0.05466756959196758 +155657,778.285000005383,-0.05466750329503823 +155658,778.2900000053831,-0.05466743699542605 +155659,778.2950000053833,-0.05466737069313081 +155660,778.3000000053834,-0.05466730438815229 +155661,778.3050000053835,-0.05466723808049027 +155662,778.3100000053836,-0.054667171770144504 +155663,778.3150000053837,-0.054667105457114805 +155664,778.3200000053838,-0.05466703914140092 +155665,778.3250000053839,-0.05466697282300264 +155666,778.330000005384,-0.05466690650191974 +155667,778.3350000053841,-0.05466684017815199 +155668,778.3400000053842,-0.054666773851699164 +155669,778.3450000053843,-0.054666707522561045 +155670,778.3500000053845,-0.05466664119073739 +155671,778.3550000053846,-0.054666574856227994 +155672,778.3600000053847,-0.05466650851903263 +155673,778.3650000053848,-0.05466644217915108 +155674,778.3700000053849,-0.054666375836583105 +155675,778.375000005385,-0.05466630949132848 +155676,778.3800000053851,-0.05466624314338698 +155677,778.3850000053852,-0.05466617679275838 +155678,778.3900000053853,-0.054666110439442465 +155679,778.3950000053854,-0.054666044083439 +155680,778.4000000053856,-0.05466597772474778 +155681,778.4050000053857,-0.054665911363368555 +155682,778.4100000053858,-0.0546658449993011 +155683,778.4150000053859,-0.054665778632545216 +155684,778.420000005386,-0.054665712263100644 +155685,778.4250000053861,-0.05466564589096719 +155686,778.4300000053862,-0.054665579516144605 +155687,778.4350000053863,-0.05466551313863266 +155688,778.4400000053864,-0.05466544675843116 +155689,778.4450000053865,-0.054665380375539856 +155690,778.4500000053866,-0.05466531398995852 +155691,778.4550000053868,-0.05466524760168694 +155692,778.4600000053869,-0.05466518121072488 +155693,778.465000005387,-0.054665114817072126 +155694,778.4700000053871,-0.054665048420728425 +155695,778.4750000053872,-0.05466498202169358 +155696,778.4800000053873,-0.05466491561996735 +155697,778.4850000053874,-0.05466484921554951 +155698,778.4900000053875,-0.05466478280843985 +155699,778.4950000053876,-0.05466471639863814 +155700,778.5000000053877,-0.05466464998614413 +155701,778.5050000053878,-0.0546645835709576 +155702,778.510000005388,-0.05466451715307835 +155703,778.5150000053881,-0.05466445073250613 +155704,778.5200000053882,-0.05466438430924072 +155705,778.5250000053883,-0.05466431788328188 +155706,778.5300000053884,-0.05466425145462941 +155707,778.5350000053885,-0.05466418502328307 +155708,778.5400000053886,-0.05466411858924262 +155709,778.5450000053887,-0.05466405215250785 +155710,778.5500000053888,-0.05466398571307853 +155711,778.5550000053889,-0.05466391927095444 +155712,778.560000005389,-0.054663852826135326 +155713,778.5650000053892,-0.05466378637862099 +155714,778.5700000053893,-0.05466371992841118 +155715,778.5750000053894,-0.0546636534755057 +155716,778.5800000053895,-0.0546635870199043 +155717,778.5850000053896,-0.05466352056160676 +155718,778.5900000053897,-0.05466345410061285 +155719,778.5950000053898,-0.054663387636922356 +155720,778.6000000053899,-0.05466332117053503 +155721,778.60500000539,-0.054663254701450656 +155722,778.6100000053901,-0.05466318822966901 +155723,778.6150000053902,-0.05466312175518985 +155724,778.6200000053904,-0.05466305527801295 +155725,778.6250000053905,-0.054662988798138086 +155726,778.6300000053906,-0.05466292231556504 +155727,778.6350000053907,-0.05466285583029358 +155728,778.6400000053908,-0.054662789342323465 +155729,778.6450000053909,-0.05466272285165448 +155730,778.650000005391,-0.0546626563582864 +155731,778.6550000053911,-0.05466258986221898 +155732,778.6600000053912,-0.05466252336345201 +155733,778.6650000053913,-0.05466245686198525 +155734,778.6700000053914,-0.05466239035781848 +155735,778.6750000053916,-0.05466232385095147 +155736,778.6800000053917,-0.054662257341383975 +155737,778.6850000053918,-0.05466219082911579 +155738,778.6900000053919,-0.054662124314146666 +155739,778.695000005392,-0.05466205779647639 +155740,778.7000000053921,-0.05466199127610473 +155741,778.7050000053922,-0.05466192475303146 +155742,778.7100000053923,-0.054661858227256346 +155743,778.7150000053924,-0.05466179169877917 +155744,778.7200000053925,-0.054661725167599685 +155745,778.7250000053926,-0.054661658633717664 +155746,778.7300000053928,-0.054661592097132894 +155747,778.7350000053929,-0.05466152555784514 +155748,778.740000005393,-0.05466145901585416 +155749,778.7450000053931,-0.054661392471159746 +155750,778.7500000053932,-0.05466132592376164 +155751,778.7550000053933,-0.054661259373659635 +155752,778.7600000053934,-0.05466119282085349 +155753,778.7650000053935,-0.05466112626534299 +155754,778.7700000053936,-0.05466105970712789 +155755,778.7750000053937,-0.054660993146207974 +155756,778.7800000053938,-0.054660926582583 +155757,778.785000005394,-0.054660860016252755 +155758,778.7900000053941,-0.05466079344721699 +155759,778.7950000053942,-0.05466072687547548 +155760,778.8000000053943,-0.054660660301028 +155761,778.8050000053944,-0.05466059372387433 +155762,778.8100000053945,-0.05466052714401421 +155763,778.8150000053946,-0.05466046056144744 +155764,778.8200000053947,-0.05466039397617378 +155765,778.8250000053948,-0.054660327388193 +155766,778.8300000053949,-0.05466026079750486 +155767,778.835000005395,-0.05466019420410915 +155768,778.8400000053952,-0.054660127608005614 +155769,778.8450000053953,-0.05466006100919404 +155770,778.8500000053954,-0.05465999440767419 +155771,778.8550000053955,-0.05465992780344584 +155772,778.8600000053956,-0.05465986119650876 +155773,778.8650000053957,-0.0546597945868627 +155774,778.8700000053958,-0.054659727974507466 +155775,778.8750000053959,-0.05465966135944279 +155776,778.880000005396,-0.054659594741668455 +155777,778.8850000053961,-0.05465952812118424 +155778,778.8900000053962,-0.0546594614979899 +155779,778.8950000053964,-0.05465939487208522 +155780,778.9000000053965,-0.054659328243469946 +155781,778.9050000053966,-0.054659261612143864 +155782,778.9100000053967,-0.05465919497810674 +155783,778.9150000053968,-0.05465912834135834 +155784,778.9200000053969,-0.05465906170189844 +155785,778.925000005397,-0.054658995059726795 +155786,778.9300000053971,-0.054658928414843176 +155787,778.9350000053972,-0.05465886176724736 +155788,778.9400000053973,-0.05465879511693912 +155789,778.9450000053974,-0.05465872846391821 +155790,778.9500000053976,-0.054658661808184406 +155791,778.9550000053977,-0.054658595149737484 +155792,778.9600000053978,-0.05465852848857719 +155793,778.9650000053979,-0.05465846182470331 +155794,778.970000005398,-0.05465839515811561 +155795,778.9750000053981,-0.05465832848881385 +155796,778.9800000053982,-0.0546582618167978 +155797,778.9850000053983,-0.05465819514206725 +155798,778.9900000053984,-0.054658128464621925 +155799,778.9950000053985,-0.054658061784461635 +155800,779.0000000053986,-0.05465799510158612 +155801,779.0050000053988,-0.05465792841599517 +155802,779.0100000053989,-0.05465786172768854 +155803,779.015000005399,-0.05465779503666599 +155804,779.0200000053991,-0.054657728342927286 +155805,779.0250000053992,-0.054657661646472205 +155806,779.0300000053993,-0.05465759494730053 +155807,779.0350000053994,-0.054657528245412 +155808,779.0400000053995,-0.0546574615408064 +155809,779.0450000053996,-0.05465739483348348 +155810,779.0500000053997,-0.054657328123443025 +155811,779.0550000053998,-0.0546572614106848 +155812,779.0600000054,-0.054657194695208564 +155813,779.0650000054001,-0.05465712797701409 +155814,779.0700000054002,-0.05465706125610115 +155815,779.0750000054003,-0.0546569945324695 +155816,779.0800000054004,-0.0546569278061189 +155817,779.0850000054005,-0.05465686107704913 +155818,779.0900000054006,-0.054656794345259954 +155819,779.0950000054007,-0.054656727610751146 +155820,779.1000000054008,-0.05465666087352246 +155821,779.1050000054009,-0.05465659413357366 +155822,779.110000005401,-0.05465652739090453 +155823,779.1150000054012,-0.05465646064551481 +155824,779.1200000054013,-0.0546563938974043 +155825,779.1250000054014,-0.05465632714657274 +155826,779.1300000054015,-0.054656260393019906 +155827,779.1350000054016,-0.05465619363674556 +155828,779.1400000054017,-0.05465612687774947 +155829,779.1450000054018,-0.0546560601160314 +155830,779.1500000054019,-0.054655993351591124 +155831,779.155000005402,-0.0546559265844284 +155832,779.1600000054021,-0.054655859814543 +155833,779.1650000054022,-0.05465579304193467 +155834,779.1700000054024,-0.05465572626660321 +155835,779.1750000054025,-0.05465565948854835 +155836,779.1800000054026,-0.05465559270776989 +155837,779.1850000054027,-0.05465552592426757 +155838,779.1900000054028,-0.05465545913804115 +155839,779.1950000054029,-0.05465539234909042 +155840,779.200000005403,-0.05465532555741514 +155841,779.2050000054031,-0.05465525876301506 +155842,779.2100000054032,-0.05465519196588996 +155843,779.2150000054033,-0.0546551251660396 +155844,779.2200000054034,-0.05465505836346374 +155845,779.2250000054036,-0.054654991558162155 +155846,779.2300000054037,-0.0546549247501346 +155847,779.2350000054038,-0.05465485793938083 +155848,779.2400000054039,-0.054654791125900645 +155849,779.245000005404,-0.05465472430969378 +155850,779.2500000054041,-0.054654657490760004 +155851,779.2550000054042,-0.05465459066909909 +155852,779.2600000054043,-0.0546545238447108 +155853,779.2650000054044,-0.054654457017594894 +155854,779.2700000054045,-0.05465439018775113 +155855,779.2750000054046,-0.0546543233551793 +155856,779.2800000054048,-0.054654256519879145 +155857,779.2850000054049,-0.05465418968185043 +155858,779.290000005405,-0.05465412284109292 +155859,779.2950000054051,-0.05465405599760638 +155860,779.3000000054052,-0.054653989151390574 +155861,779.3050000054053,-0.054653922302445285 +155862,779.3100000054054,-0.054653855450770256 +155863,779.3150000054055,-0.054653788596365244 +155864,779.3200000054056,-0.05465372173923004 +155865,779.3250000054057,-0.05465365487936438 +155866,779.3300000054059,-0.054653588016768055 +155867,779.335000005406,-0.0546535211514408 +155868,779.3400000054061,-0.05465345428338239 +155869,779.3450000054062,-0.0546533874125926 +155870,779.3500000054063,-0.054653320539071175 +155871,779.3550000054064,-0.05465325366281789 +155872,779.3600000054065,-0.05465318678383251 +155873,779.3650000054066,-0.0546531199021148 +155874,779.3700000054067,-0.05465305301766451 +155875,779.3750000054068,-0.0546529861304814 +155876,779.3800000054069,-0.05465291924056524 +155877,779.385000005407,-0.05465285234791581 +155878,779.3900000054072,-0.054652785452532854 +155879,779.3950000054073,-0.05465271855441614 +155880,779.4000000054074,-0.05465265165356543 +155881,779.4050000054075,-0.05465258474998049 +155882,779.4100000054076,-0.05465251784366109 +155883,779.4150000054077,-0.05465245093460697 +155884,779.4200000054078,-0.05465238402281791 +155885,779.4250000054079,-0.05465231710829367 +155886,779.430000005408,-0.054652250191034014 +155887,779.4350000054081,-0.0546521832710387 +155888,779.4400000054083,-0.054652116348307474 +155889,779.4450000054084,-0.054652049422840125 +155890,779.4500000054085,-0.0546519824946364 +155891,779.4550000054086,-0.054651915563696064 +155892,779.4600000054087,-0.054651848630018894 +155893,779.4650000054088,-0.054651781693604636 +155894,779.4700000054089,-0.05465171475445305 +155895,779.475000005409,-0.05465164781256391 +155896,779.4800000054091,-0.05465158086793697 +155897,779.4850000054092,-0.054651513920572 +155898,779.4900000054093,-0.05465144697046875 +155899,779.4950000054095,-0.05465138001762699 +155900,779.5000000054096,-0.05465131306204647 +155901,779.5050000054097,-0.054651246103726965 +155902,779.5100000054098,-0.054651179142668226 +155903,779.5150000054099,-0.054651112178870025 +155904,779.52000000541,-0.054651045212332106 +155905,779.5250000054101,-0.05465097824305425 +155906,779.5300000054102,-0.054650911271036225 +155907,779.5350000054103,-0.054650844296277756 +155908,779.5400000054104,-0.05465077731877864 +155909,779.5450000054105,-0.05465071033853862 +155910,779.5500000054107,-0.05465064335555745 +155911,779.5550000054108,-0.05465057636983491 +155912,779.5600000054109,-0.054650509381370754 +155913,779.565000005411,-0.05465044239016474 +155914,779.5700000054111,-0.05465037539621663 +155915,779.5750000054112,-0.054650308399526185 +155916,779.5800000054113,-0.05465024140009317 +155917,779.5850000054114,-0.05465017439791733 +155918,779.5900000054115,-0.054650107392998436 +155919,779.5950000054116,-0.05465004038533625 +155920,779.6000000054117,-0.05464997337493054 +155921,779.6050000054119,-0.05464990636178105 +155922,779.610000005412,-0.054649839345887546 +155923,779.6150000054121,-0.054649772327249796 +155924,779.6200000054122,-0.054649705305867546 +155925,779.6250000054123,-0.05464963828174057 +155926,779.6300000054124,-0.054649571254868606 +155927,779.6350000054125,-0.05464950422525144 +155928,779.6400000054126,-0.05464943719288881 +155929,779.6450000054127,-0.0546493701577805 +155930,779.6500000054128,-0.054649303119926246 +155931,779.655000005413,-0.054649236079325834 +155932,779.660000005413,-0.054649169035979 +155933,779.6650000054132,-0.05464910198988551 +155934,779.6700000054133,-0.05464903494104513 +155935,779.6750000054134,-0.05464896788945761 +155936,779.6800000054135,-0.05464890083512272 +155937,779.6850000054136,-0.0546488337780402 +155938,779.6900000054137,-0.054648766718209826 +155939,779.6950000054138,-0.054648699655631364 +155940,779.7000000054139,-0.054648632590304544 +155941,779.705000005414,-0.05464856552222915 +155942,779.7100000054141,-0.05464849845140493 +155943,779.7150000054143,-0.05464843137783166 +155944,779.7200000054144,-0.05464836430150908 +155945,779.7250000054145,-0.054648297222436956 +155946,779.7300000054146,-0.05464823014061504 +155947,779.7350000054147,-0.05464816305604311 +155948,779.7400000054148,-0.054648095968720896 +155949,779.7450000054149,-0.054648028878648176 +155950,779.750000005415,-0.054647961785824706 +155951,779.7550000054151,-0.05464789469025024 +155952,779.7600000054152,-0.05464782759192454 +155953,779.7650000054153,-0.05464776049084736 +155954,779.7700000054155,-0.05464769338701846 +155955,779.7750000054156,-0.05464762628043761 +155956,779.7800000054157,-0.054647559171104546 +155957,779.7850000054158,-0.05464749205901903 +155958,779.7900000054159,-0.05464742494418083 +155959,779.795000005416,-0.0546473578265897 +155960,779.8000000054161,-0.054647290706245404 +155961,779.8050000054162,-0.05464722358314769 +155962,779.8100000054163,-0.05464715645729632 +155963,779.8150000054164,-0.054647089328691056 +155964,779.8200000054165,-0.054647022197331654 +155965,779.8250000054167,-0.05464695506321786 +155966,779.8300000054168,-0.054646887926349454 +155967,779.8350000054169,-0.05464682078672617 +155968,779.840000005417,-0.05464675364434777 +155969,779.8450000054171,-0.05464668649921402 +155970,779.8500000054172,-0.05464661935132468 +155971,779.8550000054173,-0.054646552200679495 +155972,779.8600000054174,-0.05464648504727822 +155973,779.8650000054175,-0.054646417891120624 +155974,779.8700000054176,-0.05464635073220646 +155975,779.8750000054177,-0.05464628357053549 +155976,779.8800000054179,-0.05464621640610746 +155977,779.885000005418,-0.05464614923892214 +155978,779.8900000054181,-0.05464608206897927 +155979,779.8950000054182,-0.054646014896278614 +155980,779.9000000054183,-0.05464594772081993 +155981,779.9050000054184,-0.054645880542602984 +155982,779.9100000054185,-0.05464581336162752 +155983,779.9150000054186,-0.054645746177893285 +155984,779.9200000054187,-0.05464567899140006 +155985,779.9250000054188,-0.05464561180214759 +155986,779.930000005419,-0.05464554461013562 +155987,779.935000005419,-0.054645477415363915 +155988,779.9400000054192,-0.05464541021783224 +155989,779.9450000054193,-0.05464534301754033 +155990,779.9500000054194,-0.05464527581448796 +155991,779.9550000054195,-0.05464520860867488 +155992,779.9600000054196,-0.05464514140010084 +155993,779.9650000054197,-0.05464507418876561 +155994,779.9700000054198,-0.05464500697466893 +155995,779.9750000054199,-0.05464493975781056 +155996,779.98000000542,-0.054644872538190274 +155997,779.9850000054201,-0.0546448053158078 +155998,779.9900000054203,-0.05464473809066291 +155999,779.9950000054204,-0.054644670862755346 +156000,780.0000000054205,-0.054644603632084884 +156001,780.0050000054206,-0.05464453639865126 +156002,780.0100000054207,-0.05464446916245423 +156003,780.0150000054208,-0.05464440192349356 +156004,780.0200000054209,-0.054644334681769 +156005,780.025000005421,-0.054644267437280306 +156006,780.0300000054211,-0.054644200190027234 +156007,780.0350000054212,-0.05464413294000953 +156008,780.0400000054213,-0.054644065687226955 +156009,780.0450000054215,-0.05464399843167927 +156010,780.0500000054216,-0.05464393117336621 +156011,780.0550000054217,-0.05464386391228756 +156012,780.0600000054218,-0.054643796648443044 +156013,780.0650000054219,-0.05464372938183243 +156014,780.070000005422,-0.05464366211245547 +156015,780.0750000054221,-0.054643594840311935 +156016,780.0800000054222,-0.054643527565401556 +156017,780.0850000054223,-0.0546434602877241 +156018,780.0900000054224,-0.054643393007279314 +156019,780.0950000054225,-0.05464332572406696 +156020,780.1000000054227,-0.05464325843808679 +156021,780.1050000054228,-0.05464319114933855 +156022,780.1100000054229,-0.054643123857822 +156023,780.115000005423,-0.0546430565635369 +156024,780.1200000054231,-0.054642989266483 +156025,780.1250000054232,-0.05464292196666004 +156026,780.1300000054233,-0.054642854664067785 +156027,780.1350000054234,-0.05464278735870599 +156028,780.1400000054235,-0.0546427200505744 +156029,780.1450000054236,-0.05464265273967278 +156030,780.1500000054237,-0.05464258542600088 +156031,780.1550000054239,-0.054642518109558454 +156032,780.160000005424,-0.05464245079034525 +156033,780.1650000054241,-0.05464238346836102 +156034,780.1700000054242,-0.05464231614360551 +156035,780.1750000054243,-0.054642248816078494 +156036,780.1800000054244,-0.05464218148577972 +156037,780.1850000054245,-0.05464211415270893 +156038,780.1900000054246,-0.05464204681686589 +156039,780.1950000054247,-0.054641979478250335 +156040,780.2000000054248,-0.054641912136862036 +156041,780.205000005425,-0.05464184479270074 +156042,780.2100000054251,-0.0546417774457662 +156043,780.2150000054252,-0.05464171009605815 +156044,780.2200000054253,-0.05464164274357637 +156045,780.2250000054254,-0.05464157538832059 +156046,780.2300000054255,-0.05464150803029058 +156047,780.2350000054256,-0.05464144066948609 +156048,780.2400000054257,-0.054641373305906855 +156049,780.2450000054258,-0.05464130593955265 +156050,780.2500000054259,-0.05464123857042321 +156051,780.255000005426,-0.054641171198518294 +156052,780.2600000054261,-0.054641103823837654 +156053,780.2650000054263,-0.05464103644638104 +156054,780.2700000054264,-0.0546409690661482 +156055,780.2750000054265,-0.054640901683138905 +156056,780.2800000054266,-0.054640834297352885 +156057,780.2850000054267,-0.0546407669087899 +156058,780.2900000054268,-0.0546406995174497 +156059,780.2950000054269,-0.05464063212333204 +156060,780.300000005427,-0.05464056472643666 +156061,780.3050000054271,-0.05464049732676334 +156062,780.3100000054272,-0.054640429924311805 +156063,780.3150000054274,-0.0546403625190818 +156064,780.3200000054275,-0.0546402951110731 +156065,780.3250000054276,-0.05464022770028544 +156066,780.3300000054277,-0.05464016028671857 +156067,780.3350000054278,-0.05464009287037226 +156068,780.3400000054279,-0.05464002545124623 +156069,780.345000005428,-0.05463995802934026 +156070,780.3500000054281,-0.0546398906046541 +156071,780.3550000054282,-0.054639823177187484 +156072,780.3600000054283,-0.054639755746940154 +156073,780.3650000054284,-0.05463968831391189 +156074,780.3700000054286,-0.054639620878102424 +156075,780.3750000054287,-0.054639553439511504 +156076,780.3800000054288,-0.05463948599813889 +156077,780.3850000054289,-0.054639418553984326 +156078,780.390000005429,-0.054639351107047575 +156079,780.3950000054291,-0.054639283657328376 +156080,780.4000000054292,-0.054639216204826487 +156081,780.4050000054293,-0.054639148749541636 +156082,780.4100000054294,-0.05463908129147359 +156083,780.4150000054295,-0.054639013830622106 +156084,780.4200000054296,-0.054638946366986914 +156085,780.4250000054298,-0.054638878900567775 +156086,780.4300000054299,-0.05463881143136445 +156087,780.43500000543,-0.05463874395937667 +156088,780.4400000054301,-0.054638676484604194 +156089,780.4450000054302,-0.05463860900704677 +156090,780.4500000054303,-0.054638541526704144 +156091,780.4550000054304,-0.054638474043576066 +156092,780.4600000054305,-0.05463840655766229 +156093,780.4650000054306,-0.054638339068962566 +156094,780.4700000054307,-0.054638271577476645 +156095,780.4750000054308,-0.05463820408320427 +156096,780.480000005431,-0.05463813658614519 +156097,780.4850000054311,-0.05463806908629915 +156098,780.4900000054312,-0.05463800158366591 +156099,780.4950000054313,-0.05463793407824521 +156100,780.5000000054314,-0.05463786657003681 +156101,780.5050000054315,-0.05463779905904045 +156102,780.5100000054316,-0.05463773154525588 +156103,780.5150000054317,-0.054637664028682836 +156104,780.5200000054318,-0.05463759650932109 +156105,780.5250000054319,-0.05463752898717037 +156106,780.530000005432,-0.05463746146223043 +156107,780.5350000054322,-0.05463739393450104 +156108,780.5400000054323,-0.05463732640398192 +156109,780.5450000054324,-0.05463725887067283 +156110,780.5500000054325,-0.054637191334573516 +156111,780.5550000054326,-0.05463712379568372 +156112,780.5600000054327,-0.0546370562540032 +156113,780.5650000054328,-0.05463698870953171 +156114,780.5700000054329,-0.054636921162268974 +156115,780.575000005433,-0.054636853612214764 +156116,780.5800000054331,-0.054636786059368815 +156117,780.5850000054332,-0.05463671850373088 +156118,780.5900000054334,-0.0546366509453007 +156119,780.5950000054335,-0.054636583384078036 +156120,780.6000000054336,-0.054636515820062626 +156121,780.6050000054337,-0.05463644825325421 +156122,780.6100000054338,-0.05463638068365256 +156123,780.6150000054339,-0.0546363131112574 +156124,780.620000005434,-0.054636245536068474 +156125,780.6250000054341,-0.05463617795808554 +156126,780.6300000054342,-0.05463611037730836 +156127,780.6350000054343,-0.05463604279373665 +156128,780.6400000054344,-0.05463597520737018 +156129,780.6450000054346,-0.05463590761820869 +156130,780.6500000054347,-0.05463584002625193 +156131,780.6550000054348,-0.054635772431499634 +156132,780.6600000054349,-0.054635704833951554 +156133,780.665000005435,-0.05463563723360744 +156134,780.6700000054351,-0.05463556963046705 +156135,780.6750000054352,-0.054635502024530117 +156136,780.6800000054353,-0.05463543441579638 +156137,780.6850000054354,-0.0546353668042656 +156138,780.6900000054355,-0.054635299189937515 +156139,780.6950000054356,-0.054635231572811874 +156140,780.7000000054358,-0.054635163952888435 +156141,780.7050000054359,-0.05463509633016693 +156142,780.710000005436,-0.0546350287046471 +156143,780.7150000054361,-0.05463496107632871 +156144,780.7200000054362,-0.05463489344521149 +156145,780.7250000054363,-0.05463482581129519 +156146,780.7300000054364,-0.054634758174579544 +156147,780.7350000054365,-0.054634690535064326 +156148,780.7400000054366,-0.054634622892749264 +156149,780.7450000054367,-0.054634555247634095 +156150,780.7500000054368,-0.05463448759971858 +156151,780.755000005437,-0.05463441994900246 +156152,780.7600000054371,-0.05463435229548549 +156153,780.7650000054372,-0.05463428463916739 +156154,780.7700000054373,-0.054634216980047924 +156155,780.7750000054374,-0.054634149318126844 +156156,780.7800000054375,-0.05463408165340388 +156157,780.7850000054376,-0.054634013985878783 +156158,780.7900000054377,-0.0546339463155513 +156159,780.7950000054378,-0.05463387864242117 +156160,780.8000000054379,-0.05463381096648813 +156161,780.805000005438,-0.05463374328775194 +156162,780.8100000054382,-0.05463367560621235 +156163,780.8150000054383,-0.05463360792186909 +156164,780.8200000054384,-0.05463354023472191 +156165,780.8250000054385,-0.054633472544770544 +156166,780.8300000054386,-0.05463340485201475 +156167,780.8350000054387,-0.05463333715645428 +156168,780.8400000054388,-0.05463326945808885 +156169,780.8450000054389,-0.05463320175691823 +156170,780.850000005439,-0.05463313405294216 +156171,780.8550000054391,-0.054633066346160365 +156172,780.8600000054392,-0.05463299863657261 +156173,780.8650000054394,-0.05463293092417864 +156174,780.8700000054395,-0.05463286320897818 +156175,780.8750000054396,-0.05463279549097099 +156176,780.8800000054397,-0.05463272777015682 +156177,780.8850000054398,-0.05463266004653539 +156178,780.8900000054399,-0.05463259232010647 +156179,780.89500000544,-0.05463252459086978 +156180,780.9000000054401,-0.05463245685882507 +156181,780.9050000054402,-0.05463238912397209 +156182,780.9100000054403,-0.05463232138631058 +156183,780.9150000054404,-0.05463225364584028 +156184,780.9200000054406,-0.05463218590256095 +156185,780.9250000054407,-0.054632118156472315 +156186,780.9300000054408,-0.05463205040757413 +156187,780.9350000054409,-0.05463198265586613 +156188,780.940000005441,-0.05463191490134804 +156189,780.9450000054411,-0.054631847144019634 +156190,780.9500000054412,-0.05463177938388064 +156191,780.9550000054413,-0.05463171162093081 +156192,780.9600000054414,-0.05463164385516989 +156193,780.9650000054415,-0.05463157608659759 +156194,780.9700000054416,-0.0546315083152137 +156195,780.9750000054418,-0.05463144054101792 +156196,780.9800000054419,-0.054631372764010026 +156197,780.985000005442,-0.05463130498418973 +156198,780.9900000054421,-0.054631237201556784 +156199,780.9950000054422,-0.05463116941611095 +156200,781.0000000054423,-0.054631101627851945 +156201,781.0050000054424,-0.05463103383677954 +156202,781.0100000054425,-0.05463096604289345 +156203,781.0150000054426,-0.054630898246193424 +156204,781.0200000054427,-0.05463083044667921 +156205,781.0250000054428,-0.05463076264435054 +156206,781.030000005443,-0.05463069483920717 +156207,781.0350000054431,-0.054630627031248824 +156208,781.0400000054432,-0.05463055922047525 +156209,781.0450000054433,-0.054630491406886195 +156210,781.0500000054434,-0.0546304235904814 +156211,781.0550000054435,-0.05463035577126061 +156212,781.0600000054436,-0.05463028794922356 +156213,781.0650000054437,-0.05463022012436999 +156214,781.0700000054438,-0.05463015229669964 +156215,781.0750000054439,-0.05463008446621225 +156216,781.080000005444,-0.054630016632907584 +156217,781.0850000054442,-0.05462994879678536 +156218,781.0900000054443,-0.054629880957845316 +156219,781.0950000054444,-0.05462981311608721 +156220,781.1000000054445,-0.05462974527151076 +156221,781.1050000054446,-0.05462967742411573 +156222,781.1100000054447,-0.054629609573901845 +156223,781.1150000054448,-0.05462954172086886 +156224,781.1200000054449,-0.054629473865016494 +156225,781.125000005445,-0.054629406006344514 +156226,781.1300000054451,-0.05462933814485264 +156227,781.1350000054452,-0.054629270280540626 +156228,781.1400000054454,-0.0546292024134082 +156229,781.1450000054455,-0.054629134543455096 +156230,781.1500000054456,-0.05462906667068107 +156231,781.1550000054457,-0.05462899879508586 +156232,781.1600000054458,-0.05462893091666922 +156233,781.1650000054459,-0.054628863035430866 +156234,781.170000005446,-0.05462879515137054 +156235,781.1750000054461,-0.054628727264487996 +156236,781.1800000054462,-0.05462865937478296 +156237,781.1850000054463,-0.05462859148225518 +156238,781.1900000054464,-0.05462852358690439 +156239,781.1950000054466,-0.05462845568873034 +156240,781.2000000054467,-0.05462838778773275 +156241,781.2050000054468,-0.054628319883911376 +156242,781.2100000054469,-0.05462825197726595 +156243,781.215000005447,-0.054628184067796216 +156244,781.2200000054471,-0.054628116155501914 +156245,781.2250000054472,-0.05462804824038278 +156246,781.2300000054473,-0.05462798032243855 +156247,781.2350000054474,-0.05462791240166896 +156248,781.2400000054475,-0.05462784447807377 +156249,781.2450000054477,-0.054627776551652706 +156250,781.2500000054478,-0.05462770862240549 +156251,781.2550000054479,-0.05462764069033189 +156252,781.260000005448,-0.05462757275543162 +156253,781.2650000054481,-0.05462750481770442 +156254,781.2700000054482,-0.05462743687715005 +156255,781.2750000054483,-0.054627368933768225 +156256,781.2800000054484,-0.0546273009875587 +156257,781.2850000054485,-0.05462723303852121 +156258,781.2900000054486,-0.054627165086655494 +156259,781.2950000054487,-0.054627097131961296 +156260,781.3000000054489,-0.05462702917443833 +156261,781.305000005449,-0.054626961214086354 +156262,781.3100000054491,-0.0546268932509051 +156263,781.3150000054492,-0.05462682528489431 +156264,781.3200000054493,-0.054626757316053716 +156265,781.3250000054494,-0.054626689344383056 +156266,781.3300000054495,-0.05462662136988208 +156267,781.3350000054496,-0.05462655339255051 +156268,781.3400000054497,-0.05462648541238808 +156269,781.3450000054498,-0.05462641742939455 +156270,781.3500000054499,-0.05462634944356964 +156271,781.35500000545,-0.054626281454913085 +156272,781.3600000054502,-0.05462621346342463 +156273,781.3650000054503,-0.05462614546910402 +156274,781.3700000054504,-0.05462607747195098 +156275,781.3750000054505,-0.05462600947196525 +156276,781.3800000054506,-0.054625941469146566 +156277,781.3850000054507,-0.05462587346349467 +156278,781.3900000054508,-0.0546258054550093 +156279,781.3950000054509,-0.05462573744369018 +156280,781.400000005451,-0.05462566942953707 +156281,781.4050000054511,-0.054625601412549685 +156282,781.4100000054513,-0.054625533392727764 +156283,781.4150000054514,-0.05462546537007104 +156284,781.4200000054515,-0.054625397344579274 +156285,781.4250000054516,-0.05462532931625218 +156286,781.4300000054517,-0.054625261285089495 +156287,781.4350000054518,-0.05462519325109096 +156288,781.4400000054519,-0.05462512521425632 +156289,781.445000005452,-0.054625057174585295 +156290,781.4500000054521,-0.05462498913207763 +156291,781.4550000054522,-0.05462492108673305 +156292,781.4600000054523,-0.05462485303855131 +156293,781.4650000054525,-0.05462478498753214 +156294,781.4700000054526,-0.05462471693367527 +156295,781.4750000054527,-0.054624648876980444 +156296,781.4800000054528,-0.05462458081744738 +156297,781.4850000054529,-0.05462451275507583 +156298,781.490000005453,-0.05462444468986553 +156299,781.4950000054531,-0.0546243766218162 +156300,781.5000000054532,-0.0546243085509276 +156301,781.5050000054533,-0.05462424047719944 +156302,781.5100000054534,-0.054624172400631464 +156303,781.5150000054535,-0.054624104321223416 +156304,781.5200000054537,-0.05462403623897502 +156305,781.5250000054538,-0.054623968153886024 +156306,781.5300000054539,-0.05462390006595615 +156307,781.535000005454,-0.05462383197518514 +156308,781.5400000054541,-0.054623763881572716 +156309,781.5450000054542,-0.05462369578511863 +156310,781.5500000054543,-0.0546236276858226 +156311,781.5550000054544,-0.05462355958368437 +156312,781.5600000054545,-0.054623491478703684 +156313,781.5650000054546,-0.05462342337088026 +156314,781.5700000054547,-0.05462335526021384 +156315,781.5750000054549,-0.054623287146704155 +156316,781.580000005455,-0.05462321903035095 +156317,781.5850000054551,-0.05462315091115396 +156318,781.5900000054552,-0.0546230827891129 +156319,781.5950000054553,-0.05462301466422751 +156320,781.6000000054554,-0.05462294653649754 +156321,781.6050000054555,-0.054622878405922705 +156322,781.6100000054556,-0.05462281027250275 +156323,781.6150000054557,-0.054622742136237405 +156324,781.6200000054558,-0.0546226739971264 +156325,781.625000005456,-0.05462260585516947 +156326,781.630000005456,-0.05462253771036636 +156327,781.6350000054562,-0.05462246956271679 +156328,781.6400000054563,-0.0546224014122205 +156329,781.6450000054564,-0.05462233325887722 +156330,781.6500000054565,-0.05462226510268668 +156331,781.6550000054566,-0.054622196943648615 +156332,781.6600000054567,-0.05462212878176277 +156333,781.6650000054568,-0.054622060617028866 +156334,781.6700000054569,-0.05462199244944664 +156335,781.675000005457,-0.05462192427901581 +156336,781.6800000054571,-0.054621856105736145 +156337,781.6850000054573,-0.054621787929607354 +156338,781.6900000054574,-0.054621719750629155 +156339,781.6950000054575,-0.05462165156880131 +156340,781.7000000054576,-0.05462158338412354 +156341,781.7050000054577,-0.05462151519659557 +156342,781.7100000054578,-0.05462144700621714 +156343,781.7150000054579,-0.05462137881298799 +156344,781.720000005458,-0.05462131061690782 +156345,781.7250000054581,-0.054621242417976404 +156346,781.7300000054582,-0.054621174216193454 +156347,781.7350000054583,-0.054621106011558694 +156348,781.7400000054585,-0.054621037804071876 +156349,781.7450000054586,-0.05462096959373273 +156350,781.7500000054587,-0.05462090138054096 +156351,781.7550000054588,-0.05462083316449632 +156352,781.7600000054589,-0.05462076494559854 +156353,781.765000005459,-0.05462069672384736 +156354,781.7700000054591,-0.0546206284992425 +156355,781.7750000054592,-0.05462056027178369 +156356,781.7800000054593,-0.05462049204147067 +156357,781.7850000054594,-0.05462042380830316 +156358,781.7900000054595,-0.0546203555722809 +156359,781.7950000054597,-0.05462028733340363 +156360,781.8000000054598,-0.054620219091671064 +156361,781.8050000054599,-0.05462015084708294 +156362,781.81000000546,-0.05462008259963899 +156363,781.8150000054601,-0.05462001434933895 +156364,781.8200000054602,-0.05461994609618253 +156365,781.8250000054603,-0.054619877840169494 +156366,781.8300000054604,-0.05461980958129955 +156367,781.8350000054605,-0.05461974131957243 +156368,781.8400000054606,-0.05461967305498787 +156369,781.8450000054607,-0.0546196047875456 +156370,781.8500000054609,-0.05461953651724534 +156371,781.855000005461,-0.05461946824408683 +156372,781.8600000054611,-0.054619399968069804 +156373,781.8650000054612,-0.05461933168919399 +156374,781.8700000054613,-0.054619263407459116 +156375,781.8750000054614,-0.05461919512286491 +156376,781.8800000054615,-0.05461912683541111 +156377,781.8850000054616,-0.05461905854509743 +156378,781.8900000054617,-0.05461899025192362 +156379,781.8950000054618,-0.05461892195588939 +156380,781.900000005462,-0.05461885365699449 +156381,781.905000005462,-0.05461878535523865 +156382,781.9100000054622,-0.054618717050621574 +156383,781.9150000054623,-0.05461864874314301 +156384,781.9200000054624,-0.05461858043280269 +156385,781.9250000054625,-0.054618512119600324 +156386,781.9300000054626,-0.05461844380353567 +156387,781.9350000054627,-0.054618375484608434 +156388,781.9400000054628,-0.054618307162818354 +156389,781.9450000054629,-0.05461823883816517 +156390,781.950000005463,-0.0546181705106486 +156391,781.9550000054631,-0.054618102180268364 +156392,781.9600000054633,-0.05461803384702421 +156393,781.9650000054634,-0.054617965510915856 +156394,781.9700000054635,-0.054617897171943014 +156395,781.9750000054636,-0.054617828830105436 +156396,781.9800000054637,-0.05461776048540286 +156397,781.9850000054638,-0.054617692137834996 +156398,781.9900000054639,-0.05461762378740157 +156399,781.995000005464,-0.054617555434102315 +156400,782.0000000054641,-0.054617487077936976 +156401,782.0050000054642,-0.054617418718905256 +156402,782.0100000054643,-0.0546173503570069 +156403,782.0150000054645,-0.05461728199224162 +156404,782.0200000054646,-0.054617213624609154 +156405,782.0250000054647,-0.05461714525410923 +156406,782.0300000054648,-0.05461707688074158 +156407,782.0350000054649,-0.05461700850450593 +156408,782.040000005465,-0.05461694012540201 +156409,782.0450000054651,-0.054616871743429544 +156410,782.0500000054652,-0.05461680335858824 +156411,782.0550000054653,-0.05461673497087786 +156412,782.0600000054654,-0.054616666580298116 +156413,782.0650000054655,-0.05461659818684873 +156414,782.0700000054657,-0.054616529790529444 +156415,782.0750000054658,-0.054616461391339965 +156416,782.0800000054659,-0.054616392989280046 +156417,782.085000005466,-0.05461632458434939 +156418,782.0900000054661,-0.05461625617654774 +156419,782.0950000054662,-0.05461618776587481 +156420,782.1000000054663,-0.05461611935233034 +156421,782.1050000054664,-0.05461605093591405 +156422,782.1100000054665,-0.054615982516625666 +156423,782.1150000054666,-0.05461591409446492 +156424,782.1200000054667,-0.05461584566943152 +156425,782.1250000054669,-0.05461577724152522 +156426,782.130000005467,-0.05461570881074573 +156427,782.1350000054671,-0.05461564037709279 +156428,782.1400000054672,-0.05461557194056611 +156429,782.1450000054673,-0.054615503501165424 +156430,782.1500000054674,-0.05461543505889046 +156431,782.1550000054675,-0.05461536661374093 +156432,782.1600000054676,-0.05461529816571658 +156433,782.1650000054677,-0.05461522971481714 +156434,782.1700000054678,-0.0546151612610423 +156435,782.175000005468,-0.054615092804391835 +156436,782.1800000054681,-0.05461502434486543 +156437,782.1850000054682,-0.05461495588246284 +156438,782.1900000054683,-0.05461488741718377 +156439,782.1950000054684,-0.05461481894902795 +156440,782.2000000054685,-0.05461475047799512 +156441,782.2050000054686,-0.05461468200408499 +156442,782.2100000054687,-0.05461461352729728 +156443,782.2150000054688,-0.054614545047631725 +156444,782.2200000054689,-0.054614476565088055 +156445,782.225000005469,-0.05461440807966599 +156446,782.2300000054692,-0.05461433959136525 +156447,782.2350000054693,-0.05461427110018556 +156448,782.2400000054694,-0.054614202606126656 +156449,782.2450000054695,-0.05461413410918826 +156450,782.2500000054696,-0.054614065609370085 +156451,782.2550000054697,-0.05461399710667188 +156452,782.2600000054698,-0.054613928601093334 +156453,782.2650000054699,-0.05461386009263421 +156454,782.27000000547,-0.05461379158129421 +156455,782.2750000054701,-0.05461372306707305 +156456,782.2800000054702,-0.054613654549970476 +156457,782.2850000054704,-0.05461358602998621 +156458,782.2900000054705,-0.054613517507119964 +156459,782.2950000054706,-0.05461344898137148 +156460,782.3000000054707,-0.05461338045274046 +156461,782.3050000054708,-0.05461331192122664 +156462,782.3100000054709,-0.05461324338682974 +156463,782.315000005471,-0.05461317484954948 +156464,782.3200000054711,-0.0546131063093856 +156465,782.3250000054712,-0.054613037766337816 +156466,782.3300000054713,-0.05461296922040583 +156467,782.3350000054714,-0.0546129006715894 +156468,782.3400000054716,-0.054612832119888224 +156469,782.3450000054717,-0.05461276356530205 +156470,782.3500000054718,-0.05461269500783058 +156471,782.3550000054719,-0.05461262644747355 +156472,782.360000005472,-0.05461255788423067 +156473,782.3650000054721,-0.05461248931810167 +156474,782.3700000054722,-0.05461242074908627 +156475,782.3750000054723,-0.05461235217718421 +156476,782.3800000054724,-0.054612283602395194 +156477,782.3850000054725,-0.05461221502471895 +156478,782.3900000054726,-0.0546121464441552 +156479,782.3950000054728,-0.05461207786070366 +156480,782.4000000054729,-0.05461200927436407 +156481,782.405000005473,-0.05461194068513615 +156482,782.4100000054731,-0.0546118720930196 +156483,782.4150000054732,-0.05461180349801417 +156484,782.4200000054733,-0.05461173490011957 +156485,782.4250000054734,-0.054611666299335525 +156486,782.4300000054735,-0.054611597695661755 +156487,782.4350000054736,-0.054611529089097985 +156488,782.4400000054737,-0.05461146047964392 +156489,782.4450000054738,-0.054611391867299304 +156490,782.450000005474,-0.05461132325206386 +156491,782.4550000054741,-0.054611254633937296 +156492,782.4600000054742,-0.05461118601291933 +156493,782.4650000054743,-0.05461111738900971 +156494,782.4700000054744,-0.05461104876220813 +156495,782.4750000054745,-0.054610980132514315 +156496,782.4800000054746,-0.05461091149992799 +156497,782.4850000054747,-0.0546108428644489 +156498,782.4900000054748,-0.05461077422607674 +156499,782.4950000054749,-0.054610705584811244 +156500,782.500000005475,-0.054610636940652116 +156501,782.5050000054752,-0.05461056829359909 +156502,782.5100000054753,-0.05461049964365188 +156503,782.5150000054754,-0.05461043099081021 +156504,782.5200000054755,-0.05461036233507382 +156505,782.5250000054756,-0.0546102936764424 +156506,782.5300000054757,-0.054610225014915685 +156507,782.5350000054758,-0.0546101563504934 +156508,782.5400000054759,-0.054610087683175254 +156509,782.545000005476,-0.054610019012960975 +156510,782.5500000054761,-0.054609950339850284 +156511,782.5550000054762,-0.05460988166384292 +156512,782.5600000054764,-0.054609812984938555 +156513,782.5650000054765,-0.05460974430313695 +156514,782.5700000054766,-0.05460967561843782 +156515,782.5750000054767,-0.05460960693084087 +156516,782.5800000054768,-0.054609538240345826 +156517,782.5850000054769,-0.054609469546952415 +156518,782.590000005477,-0.05460940085066035 +156519,782.5950000054771,-0.05460933215146936 +156520,782.6000000054772,-0.05460926344937916 +156521,782.6050000054773,-0.05460919474438946 +156522,782.6100000054774,-0.05460912603649999 +156523,782.6150000054776,-0.05460905732571047 +156524,782.6200000054777,-0.05460898861202061 +156525,782.6250000054778,-0.05460891989543013 +156526,782.6300000054779,-0.05460885117593877 +156527,782.635000005478,-0.05460878245354623 +156528,782.6400000054781,-0.054608713728252226 +156529,782.6450000054782,-0.05460864500005649 +156530,782.6500000054783,-0.05460857626895873 +156531,782.6550000054784,-0.05460850753495866 +156532,782.6600000054785,-0.05460843879805601 +156533,782.6650000054786,-0.05460837005825052 +156534,782.6700000054788,-0.05460830131554187 +156535,782.6750000054789,-0.0546082325699298 +156536,782.680000005479,-0.05460816382141403 +156537,782.6850000054791,-0.05460809506999426 +156538,782.6900000054792,-0.05460802631567023 +156539,782.6950000054793,-0.05460795755844164 +156540,782.7000000054794,-0.054607888798308225 +156541,782.7050000054795,-0.0546078200352697 +156542,782.7100000054796,-0.05460775126932576 +156543,782.7150000054797,-0.05460768250047616 +156544,782.7200000054798,-0.0546076137287206 +156545,782.72500000548,-0.054607544954058784 +156546,782.7300000054801,-0.05460747617649045 +156547,782.7350000054802,-0.05460740739601531 +156548,782.7400000054803,-0.054607338612633075 +156549,782.7450000054804,-0.05460726982634347 +156550,782.7500000054805,-0.05460720103714621 +156551,782.7550000054806,-0.05460713224504102 +156552,782.7600000054807,-0.05460706345002761 +156553,782.7650000054808,-0.0546069946521057 +156554,782.7700000054809,-0.05460692585127501 +156555,782.775000005481,-0.05460685704753524 +156556,782.7800000054812,-0.054606788240886134 +156557,782.7850000054813,-0.054606719431327395 +156558,782.7900000054814,-0.05460665061885872 +156559,782.7950000054815,-0.05460658180347985 +156560,782.8000000054816,-0.05460651298519052 +156561,782.8050000054817,-0.054606444163990416 +156562,782.8100000054818,-0.05460637533987926 +156563,782.8150000054819,-0.05460630651285678 +156564,782.820000005482,-0.05460623768292267 +156565,782.8250000054821,-0.05460616885007666 +156566,782.8300000054822,-0.054606100014318475 +156567,782.8350000054824,-0.054606031175647815 +156568,782.8400000054825,-0.054605962334064416 +156569,782.8450000054826,-0.05460589348956798 +156570,782.8500000054827,-0.05460582464215821 +156571,782.8550000054828,-0.054605755791834854 +156572,782.8600000054829,-0.0546056869385976 +156573,782.865000005483,-0.05460561808244618 +156574,782.8700000054831,-0.05460554922338031 +156575,782.8750000054832,-0.0546054803613997 +156576,782.8800000054833,-0.05460541149650406 +156577,782.8850000054834,-0.054605342628693126 +156578,782.8900000054836,-0.05460527375796659 +156579,782.8950000054837,-0.05460520488432418 +156580,782.9000000054838,-0.054605136007765606 +156581,782.9050000054839,-0.05460506712829059 +156582,782.910000005484,-0.054604998245898845 +156583,782.9150000054841,-0.054604929360590075 +156584,782.9200000054842,-0.054604860472364014 +156585,782.9250000054843,-0.054604791581220356 +156586,782.9300000054844,-0.054604722687158824 +156587,782.9350000054845,-0.05460465379017914 +156588,782.9400000054846,-0.05460458489028102 +156589,782.9450000054848,-0.05460451598746417 +156590,782.9500000054849,-0.05460444708172831 +156591,782.955000005485,-0.05460437817307315 +156592,782.9600000054851,-0.0546043092614984 +156593,782.9650000054852,-0.0546042403470038 +156594,782.9700000054853,-0.05460417142958903 +156595,782.9750000054854,-0.05460410250925382 +156596,782.9800000054855,-0.054604033585997885 +156597,782.9850000054856,-0.05460396465982093 +156598,782.9900000054857,-0.05460389573072268 +156599,782.9950000054858,-0.054603826798702855 +156600,783.000000005486,-0.05460375786376116 +156601,783.0050000054861,-0.0546036889258973 +156602,783.0100000054862,-0.05460361998511101 +156603,783.0150000054863,-0.054603551041401986 +156604,783.0200000054864,-0.054603482094769944 +156605,783.0250000054865,-0.05460341314521459 +156606,783.0300000054866,-0.05460334419273565 +156607,783.0350000054867,-0.05460327523733284 +156608,783.0400000054868,-0.05460320627900586 +156609,783.0450000054869,-0.05460313731775443 +156610,783.050000005487,-0.05460306835357827 +156611,783.0550000054872,-0.05460299938647708 +156612,783.0600000054873,-0.05460293041645059 +156613,783.0650000054874,-0.0546028614434985 +156614,783.0700000054875,-0.054602792467620516 +156615,783.0750000054876,-0.05460272348881637 +156616,783.0800000054877,-0.05460265450708576 +156617,783.0850000054878,-0.054602585522428415 +156618,783.0900000054879,-0.05460251653484403 +156619,783.095000005488,-0.05460244754433232 +156620,783.1000000054881,-0.05460237855089301 +156621,783.1050000054883,-0.05460230955452579 +156622,783.1100000054884,-0.05460224055523038 +156623,783.1150000054885,-0.054602171553006514 +156624,783.1200000054886,-0.05460210254785387 +156625,783.1250000054887,-0.05460203353977219 +156626,783.1300000054888,-0.05460196452876118 +156627,783.1350000054889,-0.05460189551482053 +156628,783.140000005489,-0.05460182649794997 +156629,783.1450000054891,-0.05460175747814921 +156630,783.1500000054892,-0.054601688455417956 +156631,783.1550000054893,-0.05460161942975593 +156632,783.1600000054895,-0.054601550401162824 +156633,783.1650000054896,-0.05460148136963838 +156634,783.1700000054897,-0.05460141233518229 +156635,783.1750000054898,-0.05460134329779426 +156636,783.1800000054899,-0.054601274257474006 +156637,783.18500000549,-0.05460120521422124 +156638,783.1900000054901,-0.054601136168035684 +156639,783.1950000054902,-0.05460106711891703 +156640,783.2000000054903,-0.054600998066865004 +156641,783.2050000054904,-0.0546009290118793 +156642,783.2100000054905,-0.05460085995395964 +156643,783.2150000054907,-0.05460079089310574 +156644,783.2200000054908,-0.05460072182931731 +156645,783.2250000054909,-0.05460065276259405 +156646,783.230000005491,-0.054600583692935675 +156647,783.2350000054911,-0.0546005146203419 +156648,783.2400000054912,-0.054600445544812415 +156649,783.2450000054913,-0.05460037646634696 +156650,783.2500000054914,-0.05460030738494523 +156651,783.2550000054915,-0.05460023830060693 +156652,783.2600000054916,-0.05460016921333178 +156653,783.2650000054917,-0.05460010012311949 +156654,783.2700000054919,-0.054600031029969756 +156655,783.275000005492,-0.0545999619338823 +156656,783.2800000054921,-0.054599892834856834 +156657,783.2850000054922,-0.05459982373289306 +156658,783.2900000054923,-0.054599754627990695 +156659,783.2950000054924,-0.05459968552014944 +156660,783.3000000054925,-0.05459961640936901 +156661,783.3050000054926,-0.0545995472956491 +156662,783.3100000054927,-0.05459947817898944 +156663,783.3150000054928,-0.05459940905938973 +156664,783.320000005493,-0.05459933993684968 +156665,783.325000005493,-0.054599270811369 +156666,783.3300000054932,-0.05459920168294739 +156667,783.3350000054933,-0.05459913255158458 +156668,783.3400000054934,-0.05459906341728025 +156669,783.3450000054935,-0.05459899428003412 +156670,783.3500000054936,-0.054598925139845905 +156671,783.3550000054937,-0.054598855996715316 +156672,783.3600000054938,-0.05459878685064206 +156673,783.3650000054939,-0.05459871770162583 +156674,783.370000005494,-0.054598648549666354 +156675,783.3750000054941,-0.05459857939476332 +156676,783.3800000054943,-0.054598510236916455 +156677,783.3850000054944,-0.05459844107612547 +156678,783.3900000054945,-0.05459837191239005 +156679,783.3950000054946,-0.05459830274570992 +156680,783.4000000054947,-0.05459823357608478 +156681,783.4050000054948,-0.054598164403514345 +156682,783.4100000054949,-0.054598095227998314 +156683,783.415000005495,-0.054598026049536404 +156684,783.4200000054951,-0.05459795686812832 +156685,783.4250000054952,-0.054597887683773765 +156686,783.4300000054953,-0.054597818496472446 +156687,783.4350000054955,-0.054597749306224075 +156688,783.4400000054956,-0.05459768011302836 +156689,783.4450000054957,-0.054597610916885 +156690,783.4500000054958,-0.05459754171779372 +156691,783.4550000054959,-0.054597472515754204 +156692,783.460000005496,-0.05459740331076617 +156693,783.4650000054961,-0.054597334102829326 +156694,783.4700000054962,-0.054597264891943366 +156695,783.4750000054963,-0.05459719567810802 +156696,783.4800000054964,-0.05459712646132299 +156697,783.4850000054965,-0.05459705724158796 +156698,783.4900000054967,-0.05459698801890265 +156699,783.4950000054968,-0.054596918793266766 +156700,783.5000000054969,-0.05459684956468003 +156701,783.505000005497,-0.05459678033314212 +156702,783.5100000054971,-0.054596711098652766 +156703,783.5150000054972,-0.05459664186121165 +156704,783.5200000054973,-0.054596572620818504 +156705,783.5250000054974,-0.054596503377473016 +156706,783.5300000054975,-0.054596434131174904 +156707,783.5350000054976,-0.05459636488192386 +156708,783.5400000054977,-0.054596295629719606 +156709,783.5450000054979,-0.05459622637456184 +156710,783.550000005498,-0.05459615711645026 +156711,783.5550000054981,-0.05459608785538457 +156712,783.5600000054982,-0.05459601859136448 +156713,783.5650000054983,-0.05459594932438971 +156714,783.5700000054984,-0.05459588005445996 +156715,783.5750000054985,-0.05459581078157491 +156716,783.5800000054986,-0.0545957415057343 +156717,783.5850000054987,-0.05459567222693781 +156718,783.5900000054988,-0.05459560294518515 +156719,783.595000005499,-0.05459553366047604 +156720,783.600000005499,-0.054595464372810154 +156721,783.6050000054992,-0.05459539508218723 +156722,783.6100000054993,-0.05459532578860696 +156723,783.6150000054994,-0.05459525649206904 +156724,783.6200000054995,-0.054595187192573176 +156725,783.6250000054996,-0.05459511789011909 +156726,783.6300000054997,-0.054595048584706464 +156727,783.6350000054998,-0.05459497927633501 +156728,783.6400000054999,-0.05459490996500445 +156729,783.6450000055,-0.05459484065071446 +156730,783.6500000055001,-0.05459477133346476 +156731,783.6550000055003,-0.05459470201325506 +156732,783.6600000055004,-0.05459463269008505 +156733,783.6650000055005,-0.054594563363954435 +156734,783.6700000055006,-0.05459449403486292 +156735,783.6750000055007,-0.0545944247028102 +156736,783.6800000055008,-0.054594355367796 +156737,783.6850000055009,-0.05459428602982001 +156738,783.690000005501,-0.054594216688881946 +156739,783.6950000055011,-0.054594147344981483 +156740,783.7000000055012,-0.05459407799811835 +156741,783.7050000055013,-0.054594008648292246 +156742,783.7100000055015,-0.054593939295502866 +156743,783.7150000055016,-0.054593869939749906 +156744,783.7200000055017,-0.054593800581033095 +156745,783.7250000055018,-0.05459373121935211 +156746,783.7300000055019,-0.05459366185470667 +156747,783.735000005502,-0.05459359248709647 +156748,783.7400000055021,-0.054593523116521214 +156749,783.7450000055022,-0.0545934537429806 +156750,783.7500000055023,-0.05459338436647434 +156751,783.7550000055024,-0.05459331498700213 +156752,783.7600000055025,-0.054593245604563675 +156753,783.7650000055027,-0.05459317621915868 +156754,783.7700000055028,-0.05459310683078684 +156755,783.7750000055029,-0.05459303743944786 +156756,783.780000005503,-0.054592968045141445 +156757,783.7850000055031,-0.0545928986478673 +156758,783.7900000055032,-0.05459282924762512 +156759,783.7950000055033,-0.054592759844414605 +156760,783.8000000055034,-0.054592690438235454 +156761,783.8050000055035,-0.05459262102908737 +156762,783.8100000055036,-0.05459255161697007 +156763,783.8150000055037,-0.054592482201883244 +156764,783.8200000055039,-0.05459241278382659 +156765,783.825000005504,-0.05459234336279981 +156766,783.8300000055041,-0.05459227393880261 +156767,783.8350000055042,-0.054592204511834684 +156768,783.8400000055043,-0.05459213508189573 +156769,783.8450000055044,-0.05459206564898547 +156770,783.8500000055045,-0.05459199621310359 +156771,783.8550000055046,-0.05459192677424979 +156772,783.8600000055047,-0.05459185733242377 +156773,783.8650000055048,-0.05459178788762525 +156774,783.870000005505,-0.05459171843985391 +156775,783.8750000055051,-0.05459164898910945 +156776,783.8800000055052,-0.05459157953539157 +156777,783.8850000055053,-0.05459151007869999 +156778,783.8900000055054,-0.05459144061903437 +156779,783.8950000055055,-0.05459137115639446 +156780,783.9000000055056,-0.05459130169077993 +156781,783.9050000055057,-0.054591232222190485 +156782,783.9100000055058,-0.05459116275062583 +156783,783.9150000055059,-0.05459109327608566 +156784,783.920000005506,-0.054591023798569664 +156785,783.9250000055061,-0.05459095431807757 +156786,783.9300000055063,-0.05459088483460904 +156787,783.9350000055064,-0.054590815348163804 +156788,783.9400000055065,-0.05459074585874156 +156789,783.9450000055066,-0.05459067636634198 +156790,783.9500000055067,-0.05459060687096479 +156791,783.9550000055068,-0.05459053737260969 +156792,783.9600000055069,-0.05459046787127636 +156793,783.965000005507,-0.05459039836696452 +156794,783.9700000055071,-0.05459032885967386 +156795,783.9750000055072,-0.05459025934940408 +156796,783.9800000055073,-0.054590189836154865 +156797,783.9850000055075,-0.05459012031992593 +156798,783.9900000055076,-0.054590050800716966 +156799,783.9950000055077,-0.054589981278527676 +156800,784.0000000055078,-0.054589911753357756 +156801,784.0050000055079,-0.05458984222520691 +156802,784.010000005508,-0.05458977269407483 +156803,784.0150000055081,-0.05458970315996122 +156804,784.0200000055082,-0.05458963362286578 +156805,784.0250000055083,-0.054589564082788186 +156806,784.0300000055084,-0.05458949453972817 +156807,784.0350000055086,-0.0545894249936854 +156808,784.0400000055087,-0.05458935544465959 +156809,784.0450000055088,-0.05458928589265044 +156810,784.0500000055089,-0.054589216337657634 +156811,784.055000005509,-0.054589146779680874 +156812,784.0600000055091,-0.05458907721871987 +156813,784.0650000055092,-0.054589007654774306 +156814,784.0700000055093,-0.05458893808784389 +156815,784.0750000055094,-0.0545888685179283 +156816,784.0800000055095,-0.054588798945027266 +156817,784.0850000055096,-0.05458872936914046 +156818,784.0900000055098,-0.05458865979026757 +156819,784.0950000055099,-0.05458859020840832 +156820,784.10000000551,-0.054588520623562405 +156821,784.1050000055101,-0.054588451035729506 +156822,784.1100000055102,-0.054588381444909316 +156823,784.1150000055103,-0.05458831185110155 +156824,784.1200000055104,-0.0545882422543059 +156825,784.1250000055105,-0.05458817265452206 +156826,784.1300000055106,-0.054588103051749715 +156827,784.1350000055107,-0.054588033445988574 +156828,784.1400000055108,-0.054587963837238324 +156829,784.145000005511,-0.05458789422549867 +156830,784.1500000055111,-0.05458782461076932 +156831,784.1550000055112,-0.05458775499304994 +156832,784.1600000055113,-0.054587685372340246 +156833,784.1650000055114,-0.054587615748639934 +156834,784.1700000055115,-0.054587546121948695 +156835,784.1750000055116,-0.054587476492266224 +156836,784.1800000055117,-0.05458740685959221 +156837,784.1850000055118,-0.054587337223926356 +156838,784.1900000055119,-0.05458726758526836 +156839,784.195000005512,-0.054587197943617924 +156840,784.2000000055122,-0.05458712829897473 +156841,784.2050000055123,-0.054587058651338484 +156842,784.2100000055124,-0.05458698900070887 +156843,784.2150000055125,-0.0545869193470856 +156844,784.2200000055126,-0.05458684969046834 +156845,784.2250000055127,-0.05458678003085682 +156846,784.2300000055128,-0.054586710368250704 +156847,784.2350000055129,-0.0545866407026497 +156848,784.240000005513,-0.05458657103405351 +156849,784.2450000055131,-0.05458650136246182 +156850,784.2500000055132,-0.054586431687874325 +156851,784.2550000055134,-0.054586362010290726 +156852,784.2600000055135,-0.05458629232971072 +156853,784.2650000055136,-0.054586222646133976 +156854,784.2700000055137,-0.05458615295956021 +156855,784.2750000055138,-0.05458608326998912 +156856,784.2800000055139,-0.05458601357742038 +156857,784.285000005514,-0.05458594388185369 +156858,784.2900000055141,-0.054585874183288766 +156859,784.2950000055142,-0.05458580448172528 +156860,784.3000000055143,-0.05458573477716293 +156861,784.3050000055144,-0.054585665069601406 +156862,784.3100000055146,-0.05458559535904041 +156863,784.3150000055147,-0.05458552564547964 +156864,784.3200000055148,-0.05458545592891878 +156865,784.3250000055149,-0.054585386209357524 +156866,784.330000005515,-0.054585316486795564 +156867,784.3350000055151,-0.054585246761232595 +156868,784.3400000055152,-0.05458517703266831 +156869,784.3450000055153,-0.0545851073011024 +156870,784.3500000055154,-0.054585037566534565 +156871,784.3550000055155,-0.05458496782896449 +156872,784.3600000055156,-0.054584898088391884 +156873,784.3650000055158,-0.05458482834481641 +156874,784.3700000055159,-0.05458475859823778 +156875,784.375000005516,-0.05458468884865569 +156876,784.3800000055161,-0.05458461909606982 +156877,784.3850000055162,-0.05458454934047987 +156878,784.3900000055163,-0.05458447958188553 +156879,784.3950000055164,-0.0545844098202865 +156880,784.4000000055165,-0.05458434005568246 +156881,784.4050000055166,-0.05458427028807312 +156882,784.4100000055167,-0.054584200517458145 +156883,784.4150000055168,-0.05458413074383725 +156884,784.420000005517,-0.05458406096721011 +156885,784.4250000055171,-0.05458399118757643 +156886,784.4300000055172,-0.05458392140493589 +156887,784.4350000055173,-0.0545838516192882 +156888,784.4400000055174,-0.05458378183063303 +156889,784.4450000055175,-0.05458371203897008 +156890,784.4500000055176,-0.05458364224429904 +156891,784.4550000055177,-0.05458357244661961 +156892,784.4600000055178,-0.054583502645931474 +156893,784.4650000055179,-0.05458343284223433 +156894,784.470000005518,-0.05458336303552787 +156895,784.4750000055182,-0.054583293225811756 +156896,784.4800000055183,-0.05458322341308572 +156897,784.4850000055184,-0.05458315359734942 +156898,784.4900000055185,-0.05458308377860257 +156899,784.4950000055186,-0.05458301395684485 +156900,784.5000000055187,-0.054582944132075956 +156901,784.5050000055188,-0.05458287430429556 +156902,784.5100000055189,-0.054582804473503374 +156903,784.515000005519,-0.054582734639699086 +156904,784.5200000055191,-0.054582664802882375 +156905,784.5250000055192,-0.05458259496305294 +156906,784.5300000055194,-0.054582525120210466 +156907,784.5350000055195,-0.054582455274354645 +156908,784.5400000055196,-0.05458238542548517 +156909,784.5450000055197,-0.054582315573601735 +156910,784.5500000055198,-0.054582245718704014 +156911,784.5550000055199,-0.054582175860791705 +156912,784.56000000552,-0.054582105999864496 +156913,784.5650000055201,-0.05458203613592208 +156914,784.5700000055202,-0.05458196626896415 +156915,784.5750000055203,-0.05458189639899038 +156916,784.5800000055204,-0.05458182652600047 +156917,784.5850000055206,-0.05458175664999411 +156918,784.5900000055207,-0.05458168677097099 +156919,784.5950000055208,-0.054581616888930796 +156920,784.6000000055209,-0.054581547003873215 +156921,784.605000005521,-0.05458147711579794 +156922,784.6100000055211,-0.05458140722470466 +156923,784.6150000055212,-0.05458133733059306 +156924,784.6200000055213,-0.05458126743346283 +156925,784.6250000055214,-0.054581197533313655 +156926,784.6300000055215,-0.054581127630145235 +156927,784.6350000055216,-0.054581057723957244 +156928,784.6400000055218,-0.05458098781474938 +156929,784.6450000055219,-0.05458091790252132 +156930,784.650000005522,-0.05458084798727278 +156931,784.6550000055221,-0.05458077806900342 +156932,784.6600000055222,-0.054580708147712924 +156933,784.6650000055223,-0.054580638223401 +156934,784.6700000055224,-0.054580568296067326 +156935,784.6750000055225,-0.05458049836571159 +156936,784.6800000055226,-0.054580428432333496 +156937,784.6850000055227,-0.0545803584959327 +156938,784.6900000055228,-0.054580288556508906 +156939,784.695000005523,-0.05458021861406181 +156940,784.7000000055231,-0.05458014866859108 +156941,784.7050000055232,-0.054580078720096424 +156942,784.7100000055233,-0.05458000876857751 +156943,784.7150000055234,-0.05457993881403405 +156944,784.7200000055235,-0.05457986885646571 +156945,784.7250000055236,-0.054579798895872174 +156946,784.7300000055237,-0.05457972893225314 +156947,784.7350000055238,-0.05457965896560829 +156948,784.7400000055239,-0.05457958899593732 +156949,784.745000005524,-0.054579519023239896 +156950,784.7500000055242,-0.05457944904751572 +156951,784.7550000055243,-0.054579379068764484 +156952,784.7600000055244,-0.05457930908698586 +156953,784.7650000055245,-0.054579239102179544 +156954,784.7700000055246,-0.054579169114345204 +156955,784.7750000055247,-0.05457909912348255 +156956,784.7800000055248,-0.05457902912959126 +156957,784.7850000055249,-0.054578959132671016 +156958,784.790000005525,-0.0545788891327215 +156959,784.7950000055251,-0.05457881912974241 +156960,784.8000000055252,-0.05457874912373343 +156961,784.8050000055254,-0.05457867911469424 +156962,784.8100000055255,-0.05457860910262453 +156963,784.8150000055256,-0.05457853908752396 +156964,784.8200000055257,-0.05457846906939225 +156965,784.8250000055258,-0.05457839904822907 +156966,784.8300000055259,-0.05457832902403412 +156967,784.835000005526,-0.054578258996807065 +156968,784.8400000055261,-0.054578188966547585 +156969,784.8450000055262,-0.054578118933255385 +156970,784.8500000055263,-0.054578048896930145 +156971,784.8550000055264,-0.05457797885757154 +156972,784.8600000055266,-0.05457790881517927 +156973,784.8650000055267,-0.054577838769753 +156974,784.8700000055268,-0.05457776872129243 +156975,784.8750000055269,-0.054577698669797246 +156976,784.880000005527,-0.05457762861526712 +156977,784.8850000055271,-0.05457755855770175 +156978,784.8900000055272,-0.054577488497100805 +156979,784.8950000055273,-0.054577418433463976 +156980,784.9000000055274,-0.054577348366790956 +156981,784.9050000055275,-0.05457727829708142 +156982,784.9100000055276,-0.05457720822433505 +156983,784.9150000055278,-0.05457713814855154 +156984,784.9200000055279,-0.05457706806973056 +156985,784.925000005528,-0.05457699798787179 +156986,784.9300000055281,-0.05457692790297493 +156987,784.9350000055282,-0.05457685781503966 +156988,784.9400000055283,-0.054576787724065656 +156989,784.9450000055284,-0.0545767176300526 +156990,784.9500000055285,-0.054576647533000185 +156991,784.9550000055286,-0.0545765774329081 +156992,784.9600000055287,-0.05457650732977601 +156993,784.9650000055289,-0.054576437223603606 +156994,784.970000005529,-0.05457636711439057 +156995,784.9750000055291,-0.05457629700213657 +156996,784.9800000055292,-0.054576226886841314 +156997,784.9850000055293,-0.054576156768504476 +156998,784.9900000055294,-0.05457608664712574 +156999,784.9950000055295,-0.05457601652270478 +157000,785.0000000055296,-0.05457594639524129 +157001,785.0050000055297,-0.054575876264734945 +157002,785.0100000055298,-0.054575806131185435 +157003,785.0150000055299,-0.05457573599459242 +157004,785.02000000553,-0.0545756658549556 +157005,785.0250000055302,-0.05457559571227466 +157006,785.0300000055303,-0.05457552556654927 +157007,785.0350000055304,-0.054575455417779126 +157008,785.0400000055305,-0.05457538526596389 +157009,785.0450000055306,-0.05457531511110325 +157010,785.0500000055307,-0.0545752449531969 +157011,785.0550000055308,-0.05457517479224451 +157012,785.0600000055309,-0.05457510462824577 +157013,785.065000005531,-0.054575034461200364 +157014,785.0700000055311,-0.05457496429110796 +157015,785.0750000055313,-0.054574894117968245 +157016,785.0800000055314,-0.05457482394178089 +157017,785.0850000055315,-0.0545747537625456 +157018,785.0900000055316,-0.05457468358026203 +157019,785.0950000055317,-0.05457461339492988 +157020,785.1000000055318,-0.05457454320654882 +157021,785.1050000055319,-0.054574473015118544 +157022,785.110000005532,-0.05457440282063871 +157023,785.1150000055321,-0.05457433262310902 +157024,785.1200000055322,-0.054574262422529135 +157025,785.1250000055323,-0.05457419221889875 +157026,785.1300000055325,-0.05457412201221753 +157027,785.1350000055326,-0.054574051802485174 +157028,785.1400000055327,-0.05457398158970135 +157029,785.1450000055328,-0.05457391137386574 +157030,785.1500000055329,-0.05457384115497803 +157031,785.155000005533,-0.05457377093303789 +157032,785.1600000055331,-0.054573700708045014 +157033,785.1650000055332,-0.05457363047999905 +157034,785.1700000055333,-0.05457356024889973 +157035,785.1750000055334,-0.054573490014746685 +157036,785.1800000055335,-0.054573419777539614 +157037,785.1850000055337,-0.054573349537278194 +157038,785.1900000055338,-0.0545732792939621 +157039,785.1950000055339,-0.05457320904759102 +157040,785.200000005534,-0.05457313879816464 +157041,785.2050000055341,-0.05457306854568262 +157042,785.2100000055342,-0.05457299829014464 +157043,785.2150000055343,-0.054572928031550394 +157044,785.2200000055344,-0.05457285776989954 +157045,785.2250000055345,-0.05457278750519178 +157046,785.2300000055346,-0.054572717237426786 +157047,785.2350000055347,-0.05457264696660422 +157048,785.2400000055349,-0.054572576692723786 +157049,785.245000005535,-0.05457250641578514 +157050,785.2500000055351,-0.054572436135787966 +157051,785.2550000055352,-0.05457236585273195 +157052,785.2600000055353,-0.05457229556661676 +157053,785.2650000055354,-0.05457222527744207 +157054,785.2700000055355,-0.05457215498520758 +157055,785.2750000055356,-0.05457208468991294 +157056,785.2800000055357,-0.054572014391557844 +157057,785.2850000055358,-0.05457194409014197 +157058,785.290000005536,-0.05457187378566499 +157059,785.295000005536,-0.05457180347812658 +157060,785.3000000055362,-0.054571733167526434 +157061,785.3050000055363,-0.054571662853864215 +157062,785.3100000055364,-0.05457159253713959 +157063,785.3150000055365,-0.054571522217352265 +157064,785.3200000055366,-0.05457145189450189 +157065,785.3250000055367,-0.05457138156858815 +157066,785.3300000055368,-0.054571311239610724 +157067,785.3350000055369,-0.05457124090756929 +157068,785.340000005537,-0.05457117057246353 +157069,785.3450000055371,-0.05457110023429311 +157070,785.3500000055373,-0.05457102989305771 +157071,785.3550000055374,-0.054570959548757 +157072,785.3600000055375,-0.05457088920139067 +157073,785.3650000055376,-0.05457081885095839 +157074,785.3700000055377,-0.05457074849745983 +157075,785.3750000055378,-0.054570678140894675 +157076,785.3800000055379,-0.05457060778126258 +157077,785.385000005538,-0.05457053741856325 +157078,785.3900000055381,-0.05457046705279635 +157079,785.3950000055382,-0.05457039668396155 +157080,785.4000000055383,-0.05457032631205853 +157081,785.4050000055385,-0.05457025593708697 +157082,785.4100000055386,-0.05457018555904654 +157083,785.4150000055387,-0.05457011517793691 +157084,785.4200000055388,-0.05457004479375777 +157085,785.4250000055389,-0.05456997440650879 +157086,785.430000005539,-0.05456990401618964 +157087,785.4350000055391,-0.05456983362279999 +157088,785.4400000055392,-0.05456976322633952 +157089,785.4450000055393,-0.05456969282680791 +157090,785.4500000055394,-0.054569622424204836 +157091,785.4550000055395,-0.05456955201852996 +157092,785.4600000055397,-0.05456948160978297 +157093,785.4650000055398,-0.05456941119796353 +157094,785.4700000055399,-0.054569340783071324 +157095,785.47500000554,-0.054569270365106025 +157096,785.4800000055401,-0.054569199944067295 +157097,785.4850000055402,-0.05456912951995483 +157098,785.4900000055403,-0.05456905909276829 +157099,785.4950000055404,-0.05456898866250734 +157100,785.5000000055405,-0.054568918229171676 +157101,785.5050000055406,-0.05456884779276095 +157102,785.5100000055407,-0.05456877735327485 +157103,785.5150000055409,-0.05456870691071305 +157104,785.520000005541,-0.05456863646507522 +157105,785.5250000055411,-0.05456856601636102 +157106,785.5300000055412,-0.05456849556457014 +157107,785.5350000055413,-0.054568425109702265 +157108,785.5400000055414,-0.05456835465175704 +157109,785.5450000055415,-0.054568284190734145 +157110,785.5500000055416,-0.05456821372663328 +157111,785.5550000055417,-0.054568143259454076 +157112,785.5600000055418,-0.05456807278919624 +157113,785.565000005542,-0.05456800231585943 +157114,785.570000005542,-0.05456793183944332 +157115,785.5750000055422,-0.05456786135994759 +157116,785.5800000055423,-0.054567790877371895 +157117,785.5850000055424,-0.054567720391715924 +157118,785.5900000055425,-0.05456764990297934 +157119,785.5950000055426,-0.05456757941116182 +157120,785.6000000055427,-0.05456750891626304 +157121,785.6050000055428,-0.05456743841828266 +157122,785.6100000055429,-0.05456736791722037 +157123,785.615000005543,-0.054567297413075824 +157124,785.6200000055431,-0.0545672269058487 +157125,785.6250000055433,-0.05456715639553868 +157126,785.6300000055434,-0.05456708588214541 +157127,785.6350000055435,-0.05456701536566858 +157128,785.6400000055436,-0.05456694484610788 +157129,785.6450000055437,-0.05456687432346294 +157130,785.6500000055438,-0.05456680379773346 +157131,785.6550000055439,-0.054566733268919095 +157132,785.660000005544,-0.05456666273701953 +157133,785.6650000055441,-0.05456659220203443 +157134,785.6700000055442,-0.054566521663963474 +157135,785.6750000055443,-0.05456645112280633 +157136,785.6800000055445,-0.05456638057856266 +157137,785.6850000055446,-0.054566310031232135 +157138,785.6900000055447,-0.05456623948081443 +157139,785.6950000055448,-0.05456616892730922 +157140,785.7000000055449,-0.05456609837071618 +157141,785.705000005545,-0.05456602781103496 +157142,785.7100000055451,-0.05456595724826523 +157143,785.7150000055452,-0.0545658866824067 +157144,785.7200000055453,-0.054565816113458995 +157145,785.7250000055454,-0.05456574554142181 +157146,785.7300000055455,-0.054565674966294796 +157147,785.7350000055457,-0.05456560438807764 +157148,785.7400000055458,-0.05456553380677002 +157149,785.7450000055459,-0.05456546322237158 +157150,785.750000005546,-0.054565392634882005 +157151,785.7550000055461,-0.05456532204430096 +157152,785.7600000055462,-0.05456525145062811 +157153,785.7650000055463,-0.05456518085386314 +157154,785.7700000055464,-0.054565110254005705 +157155,785.7750000055465,-0.05456503965105547 +157156,785.7800000055466,-0.054564969045012124 +157157,785.7850000055467,-0.05456489843587532 +157158,785.7900000055469,-0.05456482782364473 +157159,785.795000005547,-0.05456475720832003 +157160,785.8000000055471,-0.05456468658990087 +157161,785.8050000055472,-0.054564615968386944 +157162,785.8100000055473,-0.05456454534377791 +157163,785.8150000055474,-0.05456447471607344 +157164,785.8200000055475,-0.05456440408527318 +157165,785.8250000055476,-0.054564333451376824 +157166,785.8300000055477,-0.054564262814384035 +157167,785.8350000055478,-0.05456419217429448 +157168,785.840000005548,-0.05456412153110782 +157169,785.8450000055481,-0.05456405088482372 +157170,785.8500000055482,-0.05456398023544186 +157171,785.8550000055483,-0.0545639095829619 +157172,785.8600000055484,-0.054563838927383514 +157173,785.8650000055485,-0.05456376826870637 +157174,785.8700000055486,-0.05456369760693013 +157175,785.8750000055487,-0.05456362694205447 +157176,785.8800000055488,-0.05456355627407905 +157177,785.8850000055489,-0.05456348560300353 +157178,785.890000005549,-0.054563414928827596 +157179,785.8950000055492,-0.054563344251550905 +157180,785.9000000055493,-0.05456327357117311 +157181,785.9050000055494,-0.0545632028876939 +157182,785.9100000055495,-0.05456313220111294 +157183,785.9150000055496,-0.05456306151142988 +157184,785.9200000055497,-0.05456299081864441 +157185,785.9250000055498,-0.05456292012275618 +157186,785.9300000055499,-0.05456284942376486 +157187,785.93500000555,-0.05456277872167011 +157188,785.9400000055501,-0.05456270801647162 +157189,785.9450000055502,-0.05456263730816903 +157190,785.9500000055504,-0.054562566596762015 +157191,785.9550000055505,-0.054562495882250234 +157192,785.9600000055506,-0.05456242516463337 +157193,785.9650000055507,-0.054562354443911075 +157194,785.9700000055508,-0.05456228372008302 +157195,785.9750000055509,-0.05456221299314886 +157196,785.980000005551,-0.054562142263108286 +157197,785.9850000055511,-0.05456207152996095 +157198,785.9900000055512,-0.0545620007937065 +157199,785.9950000055513,-0.05456193005434463 +157200,786.0000000055514,-0.05456185931187498 +157201,786.0050000055516,-0.05456178856629724 +157202,786.0100000055517,-0.05456171781761106 +157203,786.0150000055518,-0.05456164706581611 +157204,786.0200000055519,-0.05456157631091205 +157205,786.025000005552,-0.054561505552898536 +157206,786.0300000055521,-0.054561434791775255 +157207,786.0350000055522,-0.05456136402754186 +157208,786.0400000055523,-0.05456129326019801 +157209,786.0450000055524,-0.054561222489743384 +157210,786.0500000055525,-0.05456115171617763 +157211,786.0550000055526,-0.05456108093950043 +157212,786.0600000055528,-0.05456101015971143 +157213,786.0650000055529,-0.054560939376810315 +157214,786.070000005553,-0.054560868590796716 +157215,786.0750000055531,-0.054560797801670335 +157216,786.0800000055532,-0.05456072700943081 +157217,786.0850000055533,-0.05456065621407781 +157218,786.0900000055534,-0.05456058541561102 +157219,786.0950000055535,-0.05456051461403007 +157220,786.1000000055536,-0.05456044380933464 +157221,786.1050000055537,-0.0545603730015244 +157222,786.1100000055538,-0.05456030219059901 +157223,786.115000005554,-0.05456023137655811 +157224,786.1200000055541,-0.0545601605594014 +157225,786.1250000055542,-0.054560089739128514 +157226,786.1300000055543,-0.05456001891573914 +157227,786.1350000055544,-0.05455994808923292 +157228,786.1400000055545,-0.05455987725960952 +157229,786.1450000055546,-0.054559806426868605 +157230,786.1500000055547,-0.05455973559100984 +157231,786.1550000055548,-0.05455966475203289 +157232,786.1600000055549,-0.05455959390993742 +157233,786.165000005555,-0.05455952306472308 +157234,786.1700000055552,-0.054559452216389547 +157235,786.1750000055553,-0.054559381364936474 +157236,786.1800000055554,-0.054559310510363515 +157237,786.1850000055555,-0.054559239652670344 +157238,786.1900000055556,-0.05455916879185662 +157239,786.1950000055557,-0.05455909792792201 +157240,786.2000000055558,-0.05455902706086617 +157241,786.2050000055559,-0.05455895619068876 +157242,786.210000005556,-0.054558885317389456 +157243,786.2150000055561,-0.05455881444096789 +157244,786.2200000055562,-0.054558743561423755 +157245,786.2250000055564,-0.05455867267875669 +157246,786.2300000055565,-0.05455860179296637 +157247,786.2350000055566,-0.054558530904052445 +157248,786.2400000055567,-0.054558460012014594 +157249,786.2450000055568,-0.05455838911685246 +157250,786.2500000055569,-0.0545583182185657 +157251,786.255000005557,-0.05455824731715399 +157252,786.2600000055571,-0.054558176412616975 +157253,786.2650000055572,-0.054558105504954345 +157254,786.2700000055573,-0.054558034594165736 +157255,786.2750000055574,-0.05455796368025081 +157256,786.2800000055576,-0.05455789276320923 +157257,786.2850000055577,-0.05455782184304066 +157258,786.2900000055578,-0.05455775091974475 +157259,786.2950000055579,-0.05455767999332117 +157260,786.300000005558,-0.05455760906376958 +157261,786.3050000055581,-0.05455753813108963 +157262,786.3100000055582,-0.05455746719528099 +157263,786.3150000055583,-0.05455739625634332 +157264,786.3200000055584,-0.05455732531427628 +157265,786.3250000055585,-0.05455725436907953 +157266,786.3300000055586,-0.05455718342075272 +157267,786.3350000055588,-0.05455711246929552 +157268,786.3400000055589,-0.054557041514707576 +157269,786.345000005559,-0.05455697055698856 +157270,786.3500000055591,-0.054556899596138124 +157271,786.3550000055592,-0.054556828632155926 +157272,786.3600000055593,-0.05455675766504163 +157273,786.3650000055594,-0.054556686694794895 +157274,786.3700000055595,-0.05455661572141537 +157275,786.3750000055596,-0.05455654474490272 +157276,786.3800000055597,-0.054556473765256616 +157277,786.3850000055598,-0.0545564027824767 +157278,786.39000000556,-0.054556331796562635 +157279,786.3950000055601,-0.054556260807514065 +157280,786.4000000055602,-0.05455618981533067 +157281,786.4050000055603,-0.0545561188200121 +157282,786.4100000055604,-0.054556047821558026 +157283,786.4150000055605,-0.05455597681996808 +157284,786.4200000055606,-0.054555905815241945 +157285,786.4250000055607,-0.05455583480737926 +157286,786.4300000055608,-0.05455576379637969 +157287,786.4350000055609,-0.0545556927822429 +157288,786.440000005561,-0.05455562176496854 +157289,786.4450000055612,-0.05455555074455626 +157290,786.4500000055613,-0.054555479721005724 +157291,786.4550000055614,-0.0545554086943166 +157292,786.4600000055615,-0.05455533766448852 +157293,786.4650000055616,-0.05455526663152117 +157294,786.4700000055617,-0.05455519559541418 +157295,786.4750000055618,-0.05455512455616723 +157296,786.4800000055619,-0.05455505351377997 +157297,786.485000005562,-0.05455498246825205 +157298,786.4900000055621,-0.05455491141958312 +157299,786.4950000055622,-0.054554840367772854 +157300,786.5000000055624,-0.05455476931282091 +157301,786.5050000055625,-0.05455469825472693 +157302,786.5100000055626,-0.05455462719349058 +157303,786.5150000055627,-0.05455455612911149 +157304,786.5200000055628,-0.054554485061589345 +157305,786.5250000055629,-0.054554413990923804 +157306,786.530000005563,-0.054554342917114515 +157307,786.5350000055631,-0.05455427184016112 +157308,786.5400000055632,-0.05455420076006328 +157309,786.5450000055633,-0.05455412967682067 +157310,786.5500000055634,-0.05455405859043292 +157311,786.5550000055636,-0.054553987500899695 +157312,786.5600000055637,-0.05455391640822066 +157313,786.5650000055638,-0.05455384531239545 +157314,786.5700000055639,-0.05455377421342375 +157315,786.575000005564,-0.054553703111305196 +157316,786.5800000055641,-0.05455363200603944 +157317,786.5850000055642,-0.05455356089762614 +157318,786.5900000055643,-0.05455348978606496 +157319,786.5950000055644,-0.05455341867135553 +157320,786.6000000055645,-0.054553347553497535 +157321,786.6050000055646,-0.054553276432490604 +157322,786.6100000055648,-0.054553205308334414 +157323,786.6150000055649,-0.05455313418102861 +157324,786.620000005565,-0.05455306305057284 +157325,786.6250000055651,-0.05455299191696676 +157326,786.6300000055652,-0.05455292078021003 +157327,786.6350000055653,-0.0545528496403023 +157328,786.6400000055654,-0.05455277849724323 +157329,786.6450000055655,-0.05455270735103245 +157330,786.6500000055656,-0.05455263620166964 +157331,786.6550000055657,-0.054552565049154456 +157332,786.6600000055658,-0.05455249389348653 +157333,786.665000005566,-0.054552422734665526 +157334,786.6700000055661,-0.05455235157269111 +157335,786.6750000055662,-0.05455228040756292 +157336,786.6800000055663,-0.054552209239280613 +157337,786.6850000055664,-0.05455213806784384 +157338,786.6900000055665,-0.05455206689325226 +157339,786.6950000055666,-0.054551995715505515 +157340,786.7000000055667,-0.05455192453460326 +157341,786.7050000055668,-0.05455185335054516 +157342,786.7100000055669,-0.054551782163330856 +157343,786.715000005567,-0.054551710972959994 +157344,786.7200000055672,-0.054551639779432254 +157345,786.7250000055673,-0.054551568582747255 +157346,786.7300000055674,-0.05455149738290467 +157347,786.7350000055675,-0.05455142617990414 +157348,786.7400000055676,-0.05455135497374534 +157349,786.7450000055677,-0.05455128376442788 +157350,786.7500000055678,-0.05455121255195145 +157351,786.7550000055679,-0.05455114133631568 +157352,786.760000005568,-0.054551070117520244 +157353,786.7650000055681,-0.05455099889556478 +157354,786.7700000055682,-0.05455092767044893 +157355,786.7750000055684,-0.05455085644217235 +157356,786.7800000055685,-0.054550785210734705 +157357,786.7850000055686,-0.054550713976135624 +157358,786.7900000055687,-0.054550642738374774 +157359,786.7950000055688,-0.054550571497451815 +157360,786.8000000055689,-0.05455050025336638 +157361,786.805000005569,-0.054550429006118124 +157362,786.8100000055691,-0.0545503577557067 +157363,786.8150000055692,-0.054550286502131756 +157364,786.8200000055693,-0.05455021524539295 +157365,786.8250000055694,-0.05455014398548993 +157366,786.8300000055696,-0.05455007272242233 +157367,786.8350000055697,-0.05455000145618982 +157368,786.8400000055698,-0.054549930186792044 +157369,786.8450000055699,-0.05454985891422865 +157370,786.85000000557,-0.0545497876384993 +157371,786.8550000055701,-0.05454971635960362 +157372,786.8600000055702,-0.05454964507754129 +157373,786.8650000055703,-0.054549573792311935 +157374,786.8700000055704,-0.05454950250391521 +157375,786.8750000055705,-0.05454943121235077 +157376,786.8800000055707,-0.054549359917618265 +157377,786.8850000055708,-0.054549288619717334 +157378,786.8900000055709,-0.05454921731864763 +157379,786.895000005571,-0.05454914601440882 +157380,786.9000000055711,-0.05454907470700053 +157381,786.9050000055712,-0.05454900339642242 +157382,786.9100000055713,-0.05454893208267414 +157383,786.9150000055714,-0.05454886076575534 +157384,786.9200000055715,-0.05454878944566565 +157385,786.9250000055716,-0.054548718122404735 +157386,786.9300000055717,-0.054548646795972246 +157387,786.9350000055719,-0.05454857546636782 +157388,786.940000005572,-0.05454850413359112 +157389,786.9450000055721,-0.054548432797641794 +157390,786.9500000055722,-0.05454836145851948 +157391,786.9550000055723,-0.05454829011622383 +157392,786.9600000055724,-0.05454821877075449 +157393,786.9650000055725,-0.0545481474221111 +157394,786.9700000055726,-0.05454807607029332 +157395,786.9750000055727,-0.054548004715300795 +157396,786.9800000055728,-0.05454793335713318 +157397,786.9850000055729,-0.0545478619957901 +157398,786.990000005573,-0.05454779063127123 +157399,786.9950000055732,-0.0545477192635762 +157400,787.0000000055733,-0.05454764789270466 +157401,787.0050000055734,-0.05454757651865626 +157402,787.0100000055735,-0.05454750514143065 +157403,787.0150000055736,-0.05454743376102746 +157404,787.0200000055737,-0.05454736237744636 +157405,787.0250000055738,-0.05454729099068699 +157406,787.0300000055739,-0.054547219600748986 +157407,787.035000005574,-0.054547148207632006 +157408,787.0400000055741,-0.054547076811335686 +157409,787.0450000055743,-0.05454700541185969 +157410,787.0500000055744,-0.05454693400920364 +157411,787.0550000055745,-0.054546862603367205 +157412,787.0600000055746,-0.05454679119435002 +157413,787.0650000055747,-0.054546719782151726 +157414,787.0700000055748,-0.05454664836677198 +157415,787.0750000055749,-0.05454657694821042 +157416,787.080000005575,-0.05454650552646669 +157417,787.0850000055751,-0.05454643410154044 +157418,787.0900000055752,-0.05454636267343133 +157419,787.0950000055753,-0.05454629124213899 +157420,787.1000000055755,-0.05454621980766307 +157421,787.1050000055756,-0.0545461483700032 +157422,787.1100000055757,-0.05454607692915904 +157423,787.1150000055758,-0.054546005485130236 +157424,787.1200000055759,-0.054545934037916424 +157425,787.125000005576,-0.054545862587517265 +157426,787.1300000055761,-0.05454579113393238 +157427,787.1350000055762,-0.05454571967716143 +157428,787.1400000055763,-0.05454564821720406 +157429,787.1450000055764,-0.05454557675405991 +157430,787.1500000055765,-0.054545505287728634 +157431,787.1550000055767,-0.05454543381820986 +157432,787.1600000055768,-0.05454536234550324 +157433,787.1650000055769,-0.05454529086960842 +157434,787.170000005577,-0.05454521939052505 +157435,787.1750000055771,-0.05454514790825276 +157436,787.1800000055772,-0.054545076422791196 +157437,787.1850000055773,-0.05454500493414001 +157438,787.1900000055774,-0.05454493344229884 +157439,787.1950000055775,-0.054544861947267334 +157440,787.2000000055776,-0.05454479044904514 +157441,787.2050000055777,-0.05454471894763188 +157442,787.2100000055779,-0.054544647443027214 +157443,787.215000005578,-0.0545445759352308 +157444,787.2200000055781,-0.054544504424242246 +157445,787.2250000055782,-0.05454443291006122 +157446,787.2300000055783,-0.05454436139268735 +157447,787.2350000055784,-0.0545442898721203 +157448,787.2400000055785,-0.054544218348359694 +157449,787.2450000055786,-0.05454414682140518 +157450,787.2500000055787,-0.054544075291256405 +157451,787.2550000055788,-0.054544003757913004 +157452,787.260000005579,-0.054543932221374616 +157453,787.265000005579,-0.05454386068164091 +157454,787.2700000055792,-0.05454378913871149 +157455,787.2750000055793,-0.05454371759258602 +157456,787.2800000055794,-0.05454364604326415 +157457,787.2850000055795,-0.0545435744907455 +157458,787.2900000055796,-0.05454350293502972 +157459,787.2950000055797,-0.05454343137611646 +157460,787.3000000055798,-0.054543359814005356 +157461,787.3050000055799,-0.054543288248696045 +157462,787.31000000558,-0.05454321668018818 +157463,787.3150000055801,-0.0545431451084814 +157464,787.3200000055803,-0.05454307353357533 +157465,787.3250000055804,-0.05454300195546962 +157466,787.3300000055805,-0.05454293037416392 +157467,787.3350000055806,-0.05454285878965786 +157468,787.3400000055807,-0.05454278720195109 +157469,787.3450000055808,-0.054542715611043235 +157470,787.3500000055809,-0.05454264401693396 +157471,787.355000005581,-0.0545425724196229 +157472,787.3600000055811,-0.05454250081910968 +157473,787.3650000055812,-0.05454242921539394 +157474,787.3700000055813,-0.05454235760847533 +157475,787.3750000055815,-0.05454228599835349 +157476,787.3800000055816,-0.054542214385028064 +157477,787.3850000055817,-0.054542142768498676 +157478,787.3900000055818,-0.05454207114876499 +157479,787.3950000055819,-0.054541999525826626 +157480,787.400000005582,-0.054541927899683235 +157481,787.4050000055821,-0.05454185627033445 +157482,787.4100000055822,-0.054541784637779915 +157483,787.4150000055823,-0.054541713002019265 +157484,787.4200000055824,-0.05454164136305215 +157485,787.4250000055825,-0.0545415697208782 +157486,787.4300000055827,-0.05454149807549705 +157487,787.4350000055828,-0.054541426426908346 +157488,787.4400000055829,-0.05454135477511173 +157489,787.445000005583,-0.05454128312010683 +157490,787.4500000055831,-0.05454121146189329 +157491,787.4550000055832,-0.05454113980047075 +157492,787.4600000055833,-0.054541068135838845 +157493,787.4650000055834,-0.05454099646799722 +157494,787.4700000055835,-0.05454092479694552 +157495,787.4750000055836,-0.05454085312268336 +157496,787.4800000055837,-0.0545407814452104 +157497,787.4850000055839,-0.05454070976452627 +157498,787.490000005584,-0.0545406380806306 +157499,787.4950000055841,-0.05454056639352304 +157500,787.5000000055842,-0.05454049470320323 +157501,787.5050000055843,-0.05454042300967079 +157502,787.5100000055844,-0.05454035131292538 +157503,787.5150000055845,-0.05454027961296663 +157504,787.5200000055846,-0.054540207909794164 +157505,787.5250000055847,-0.05454013620340763 +157506,787.5300000055848,-0.05454006449380667 +157507,787.535000005585,-0.05453999278099091 +157508,787.5400000055851,-0.05453992106496 +157509,787.5450000055852,-0.05453984934571356 +157510,787.5500000055853,-0.054539777623251254 +157511,787.5550000055854,-0.05453970589757269 +157512,787.5600000055855,-0.05453963416867753 +157513,787.5650000055856,-0.054539562436565374 +157514,787.5700000055857,-0.05453949070123589 +157515,787.5750000055858,-0.05453941896268871 +157516,787.5800000055859,-0.054539347220923476 +157517,787.585000005586,-0.05453927547593981 +157518,787.5900000055861,-0.054539203727737344 +157519,787.5950000055863,-0.054539131976315734 +157520,787.6000000055864,-0.05453906022167459 +157521,787.6050000055865,-0.05453898846381357 +157522,787.6100000055866,-0.054538916702732296 +157523,787.6150000055867,-0.05453884493843042 +157524,787.6200000055868,-0.054538773170907565 +157525,787.6250000055869,-0.05453870140016336 +157526,787.630000005587,-0.05453862962619746 +157527,787.6350000055871,-0.054538557849009496 +157528,787.6400000055872,-0.05453848606859909 +157529,787.6450000055873,-0.054538414284965885 +157530,787.6500000055875,-0.0545383424981095 +157531,787.6550000055876,-0.0545382707080296 +157532,787.6600000055877,-0.0545381989147258 +157533,787.6650000055878,-0.054538127118197735 +157534,787.6700000055879,-0.05453805531844505 +157535,787.675000005588,-0.054537983515467375 +157536,787.6800000055881,-0.054537911709264336 +157537,787.6850000055882,-0.05453783989983558 +157538,787.6900000055883,-0.05453776808718072 +157539,787.6950000055884,-0.054537696271299424 +157540,787.7000000055885,-0.0545376244521913 +157541,787.7050000055887,-0.05453755262985598 +157542,787.7100000055888,-0.054537480804293124 +157543,787.7150000055889,-0.05453740897550235 +157544,787.720000005589,-0.054537337143483286 +157545,787.7250000055891,-0.054537265308235564 +157546,787.7300000055892,-0.05453719346975882 +157547,787.7350000055893,-0.0545371216280527 +157548,787.7400000055894,-0.05453704978311683 +157549,787.7450000055895,-0.05453697793495084 +157550,787.7500000055896,-0.05453690608355436 +157551,787.7550000055897,-0.05453683422892702 +157552,787.7600000055899,-0.05453676237106846 +157553,787.76500000559,-0.05453669050997833 +157554,787.7700000055901,-0.05453661864565623 +157555,787.7750000055902,-0.054536546778101824 +157556,787.7800000055903,-0.05453647490731471 +157557,787.7850000055904,-0.05453640303329455 +157558,787.7900000055905,-0.05453633115604096 +157559,787.7950000055906,-0.05453625927555358 +157560,787.8000000055907,-0.05453618739183203 +157561,787.8050000055908,-0.054536115504875964 +157562,787.810000005591,-0.054536043614685004 +157563,787.8150000055911,-0.05453597172125878 +157564,787.8200000055912,-0.05453589982459691 +157565,787.8250000055913,-0.05453582792469905 +157566,787.8300000055914,-0.05453575602156481 +157567,787.8350000055915,-0.054535684115193835 +157568,787.8400000055916,-0.054535612205585754 +157569,787.8450000055917,-0.054535540292740194 +157570,787.8500000055918,-0.05453546837665679 +157571,787.8550000055919,-0.054535396457335183 +157572,787.860000005592,-0.054535324534774984 +157573,787.8650000055922,-0.05453525260897584 +157574,787.8700000055923,-0.05453518067993737 +157575,787.8750000055924,-0.05453510874765921 +157576,787.8800000055925,-0.05453503681214099 +157577,787.8850000055926,-0.05453496487338234 +157578,787.8900000055927,-0.05453489293138289 +157579,787.8950000055928,-0.05453482098614226 +157580,787.9000000055929,-0.054534749037660105 +157581,787.905000005593,-0.05453467708593604 +157582,787.9100000055931,-0.05453460513096969 +157583,787.9150000055932,-0.05453453317276069 +157584,787.9200000055934,-0.05453446121130867 +157585,787.9250000055935,-0.05453438924661326 +157586,787.9300000055936,-0.054534317278674097 +157587,787.9350000055937,-0.05453424530749079 +157588,787.9400000055938,-0.054534173333063 +157589,787.9450000055939,-0.05453410135539032 +157590,787.950000005594,-0.054534029374472395 +157591,787.9550000055941,-0.05453395739030887 +157592,787.9600000055942,-0.05453388540289936 +157593,787.9650000055943,-0.05453381341224349 +157594,787.9700000055944,-0.05453374141834089 +157595,787.9750000055946,-0.05453366942119119 +157596,787.9800000055947,-0.05453359742079403 +157597,787.9850000055948,-0.05453352541714901 +157598,787.9900000055949,-0.05453345341025579 +157599,787.995000005595,-0.05453338140011398 +157600,788.0000000055951,-0.05453330938672322 +157601,788.0050000055952,-0.05453323737008313 +157602,788.0100000055953,-0.05453316535019333 +157603,788.0150000055954,-0.054533093327053465 +157604,788.0200000055955,-0.054533021300663155 +157605,788.0250000055956,-0.05453294927102202 +157606,788.0300000055958,-0.054532877238129704 +157607,788.0350000055959,-0.05453280520198583 +157608,788.040000005596,-0.054532733162590004 +157609,788.0450000055961,-0.05453266111994188 +157610,788.0500000055962,-0.05453258907404107 +157611,788.0550000055963,-0.05453251702488721 +157612,788.0600000055964,-0.054532444972479936 +157613,788.0650000055965,-0.05453237291681886 +157614,788.0700000055966,-0.05453230085790361 +157615,788.0750000055967,-0.0545322287957338 +157616,788.0800000055968,-0.05453215673030908 +157617,788.085000005597,-0.05453208466162907 +157618,788.0900000055971,-0.054532012589693396 +157619,788.0950000055972,-0.05453194051450167 +157620,788.1000000055973,-0.054531868436053545 +157621,788.1050000055974,-0.05453179635434863 +157622,788.1100000055975,-0.054531724269386544 +157623,788.1150000055976,-0.054531652181166936 +157624,788.1200000055977,-0.05453158008968941 +157625,788.1250000055978,-0.0545315079949536 +157626,788.1300000055979,-0.05453143589695914 +157627,788.135000005598,-0.05453136379570565 +157628,788.1400000055982,-0.05453129169119274 +157629,788.1450000055983,-0.05453121958342004 +157630,788.1500000055984,-0.054531147472387194 +157631,788.1550000055985,-0.05453107535809382 +157632,788.1600000055986,-0.054531003240539534 +157633,788.1650000055987,-0.05453093111972397 +157634,788.1700000055988,-0.054530858995646754 +157635,788.1750000055989,-0.0545307868683075 +157636,788.180000005599,-0.054530714737705835 +157637,788.1850000055991,-0.054530642603841384 +157638,788.1900000055992,-0.054530570466713786 +157639,788.1950000055994,-0.054530498326322646 +157640,788.2000000055995,-0.054530426182667596 +157641,788.2050000055996,-0.05453035403574826 +157642,788.2100000055997,-0.05453028188556427 +157643,788.2150000055998,-0.05453020973211524 +157644,788.2200000055999,-0.05453013757540079 +157645,788.2250000056,-0.054530065415420555 +157646,788.2300000056001,-0.054529993252174155 +157647,788.2350000056002,-0.0545299210856612 +157648,788.2400000056003,-0.054529848915881335 +157649,788.2450000056004,-0.05452977674283417 +157650,788.2500000056006,-0.054529704566519344 +157651,788.2550000056007,-0.05452963238693646 +157652,788.2600000056008,-0.05452956020408514 +157653,788.2650000056009,-0.05452948801796504 +157654,788.270000005601,-0.05452941582857574 +157655,788.2750000056011,-0.05452934363591689 +157656,788.2800000056012,-0.054529271439988106 +157657,788.2850000056013,-0.054529199240789014 +157658,788.2900000056014,-0.05452912703831922 +157659,788.2950000056015,-0.054529054832578354 +157660,788.3000000056016,-0.05452898262356605 +157661,788.3050000056018,-0.054528910411281925 +157662,788.3100000056019,-0.0545288381957256 +157663,788.315000005602,-0.054528765976896695 +157664,788.3200000056021,-0.054528693754794834 +157665,788.3250000056022,-0.054528621529419626 +157666,788.3300000056023,-0.05452854930077071 +157667,788.3350000056024,-0.05452847706884769 +157668,788.3400000056025,-0.054528404833650214 +157669,788.3450000056026,-0.054528332595177885 +157670,788.3500000056027,-0.05452826035343033 +157671,788.3550000056028,-0.05452818810840716 +157672,788.360000005603,-0.054528115860108015 +157673,788.3650000056031,-0.0545280436085325 +157674,788.3700000056032,-0.054527971353680246 +157675,788.3750000056033,-0.054527899095550864 +157676,788.3800000056034,-0.05452782683414398 +157677,788.3850000056035,-0.05452775456945921 +157678,788.3900000056036,-0.05452768230149617 +157679,788.3950000056037,-0.0545276100302545 +157680,788.4000000056038,-0.0545275377557338 +157681,788.4050000056039,-0.054527465477933704 +157682,788.410000005604,-0.054527393196853825 +157683,788.4150000056042,-0.05452732091249379 +157684,788.4200000056043,-0.05452724862485322 +157685,788.4250000056044,-0.05452717633393172 +157686,788.4300000056045,-0.054527104039728914 +157687,788.4350000056046,-0.054527031742244436 +157688,788.4400000056047,-0.05452695944147789 +157689,788.4450000056048,-0.054526887137428905 +157690,788.4500000056049,-0.05452681483009708 +157691,788.455000005605,-0.05452674251948206 +157692,788.4600000056051,-0.05452667020558346 +157693,788.4650000056052,-0.054526597888400884 +157694,788.4700000056054,-0.05452652556793396 +157695,788.4750000056055,-0.05452645324418231 +157696,788.4800000056056,-0.054526380917145546 +157697,788.4850000056057,-0.054526308586823294 +157698,788.4900000056058,-0.05452623625321516 +157699,788.4950000056059,-0.054526163916320786 +157700,788.500000005606,-0.05452609157613977 +157701,788.5050000056061,-0.05452601923267173 +157702,788.5100000056062,-0.054525946885916284 +157703,788.5150000056063,-0.054525874535873056 +157704,788.5200000056064,-0.05452580218254167 +157705,788.5250000056066,-0.05452572982592173 +157706,788.5300000056067,-0.05452565746601286 +157707,788.5350000056068,-0.05452558510281469 +157708,788.5400000056069,-0.05452551273632682 +157709,788.545000005607,-0.05452544036654886 +157710,788.5500000056071,-0.054525367993480456 +157711,788.5550000056072,-0.0545252956171212 +157712,788.5600000056073,-0.05452522323747073 +157713,788.5650000056074,-0.05452515085452865 +157714,788.5700000056075,-0.05452507846829457 +157715,788.5750000056076,-0.05452500607876812 +157716,788.5800000056078,-0.05452493368594891 +157717,788.5850000056079,-0.05452486128983655 +157718,788.590000005608,-0.05452478889043067 +157719,788.5950000056081,-0.054524716487730884 +157720,788.6000000056082,-0.054524644081736795 +157721,788.6050000056083,-0.054524571672448036 +157722,788.6100000056084,-0.05452449925986422 +157723,788.6150000056085,-0.05452442684398496 +157724,788.6200000056086,-0.05452435442480986 +157725,788.6250000056087,-0.05452428200233855 +157726,788.6300000056088,-0.05452420957657064 +157727,788.635000005609,-0.05452413714750576 +157728,788.6400000056091,-0.0545240647151435 +157729,788.6450000056092,-0.05452399227948349 +157730,788.6500000056093,-0.054523919840525355 +157731,788.6550000056094,-0.05452384739826869 +157732,788.6600000056095,-0.054523774952713114 +157733,788.6650000056096,-0.05452370250385825 +157734,788.6700000056097,-0.05452363005170371 +157735,788.6750000056098,-0.054523557596249106 +157736,788.6800000056099,-0.05452348513749406 +157737,788.68500000561,-0.054523412675438185 +157738,788.6900000056102,-0.05452334021008109 +157739,788.6950000056103,-0.05452326774142239 +157740,788.7000000056104,-0.0545231952694617 +157741,788.7050000056105,-0.05452312279419863 +157742,788.7100000056106,-0.0545230503156328 +157743,788.7150000056107,-0.05452297783376382 +157744,788.7200000056108,-0.05452290534859131 +157745,788.7250000056109,-0.054522832860114875 +157746,788.730000005611,-0.05452276036833413 +157747,788.7350000056111,-0.0545226878732487 +157748,788.7400000056113,-0.05452261537485819 +157749,788.7450000056114,-0.05452254287316221 +157750,788.7500000056115,-0.054522470368160374 +157751,788.7550000056116,-0.05452239785985231 +157752,788.7600000056117,-0.0545223253482376 +157753,788.7650000056118,-0.05452225283331589 +157754,788.7700000056119,-0.05452218031508677 +157755,788.775000005612,-0.054522107793549865 +157756,788.7800000056121,-0.054522035268704784 +157757,788.7850000056122,-0.05452196274055115 +157758,788.7900000056123,-0.054521890209088555 +157759,788.7950000056125,-0.054521817674316624 +157760,788.8000000056126,-0.05452174513623496 +157761,788.8050000056127,-0.05452167259484318 +157762,788.8100000056128,-0.05452160005014091 +157763,788.8150000056129,-0.05452152750212773 +157764,788.820000005613,-0.05452145495080327 +157765,788.8250000056131,-0.054521382396167155 +157766,788.8300000056132,-0.054521309838218984 +157767,788.8350000056133,-0.05452123727695836 +157768,788.8400000056134,-0.054521164712384905 +157769,788.8450000056135,-0.054521092144498226 +157770,788.8500000056137,-0.054521019573297934 +157771,788.8550000056138,-0.05452094699878365 +157772,788.8600000056139,-0.05452087442095497 +157773,788.865000005614,-0.05452080183981151 +157774,788.8700000056141,-0.05452072925535289 +157775,788.8750000056142,-0.05452065666757871 +157776,788.8800000056143,-0.054520584076488576 +157777,788.8850000056144,-0.05452051148208212 +157778,788.8900000056145,-0.054520438884358924 +157779,788.8950000056146,-0.054520366283318626 +157780,788.9000000056147,-0.054520293678960816 +157781,788.9050000056149,-0.05452022107128511 +157782,788.910000005615,-0.054520148460291115 +157783,788.9150000056151,-0.05452007584597844 +157784,788.9200000056152,-0.054520003228346714 +157785,788.9250000056153,-0.054519930607395524 +157786,788.9300000056154,-0.05451985798312448 +157787,788.9350000056155,-0.054519785355533215 +157788,788.9400000056156,-0.05451971272462131 +157789,788.9450000056157,-0.05451964009038839 +157790,788.9500000056158,-0.05451956745283407 +157791,788.955000005616,-0.05451949481195794 +157792,788.960000005616,-0.05451942216775962 +157793,788.9650000056162,-0.05451934952023871 +157794,788.9700000056163,-0.05451927686939483 +157795,788.9750000056164,-0.054519204215227574 +157796,788.9800000056165,-0.05451913155773657 +157797,788.9850000056166,-0.05451905889692141 +157798,788.9900000056167,-0.054518986232781716 +157799,788.9950000056168,-0.05451891356531708 +157800,789.0000000056169,-0.05451884089452712 +157801,789.005000005617,-0.05451876822041145 +157802,789.0100000056171,-0.05451869554296967 +157803,789.0150000056173,-0.05451862286220138 +157804,789.0200000056174,-0.05451855017810621 +157805,789.0250000056175,-0.05451847749068375 +157806,789.0300000056176,-0.054518404799933605 +157807,789.0350000056177,-0.0545183321058554 +157808,789.0400000056178,-0.05451825940844871 +157809,789.0450000056179,-0.05451818670771318 +157810,789.050000005618,-0.054518114003648394 +157811,789.0550000056181,-0.054518041296253955 +157812,789.0600000056182,-0.054517968585529486 +157813,789.0650000056183,-0.0545178958714746 +157814,789.0700000056185,-0.054517823154088874 +157815,789.0750000056186,-0.05451775043337193 +157816,789.0800000056187,-0.05451767770932338 +157817,789.0850000056188,-0.05451760498194282 +157818,789.0900000056189,-0.054517532251229885 +157819,789.095000005619,-0.05451745951718414 +157820,789.1000000056191,-0.05451738677980521 +157821,789.1050000056192,-0.0545173140390927 +157822,789.1100000056193,-0.05451724129504622 +157823,789.1150000056194,-0.05451716854766536 +157824,789.1200000056195,-0.05451709579694975 +157825,789.1250000056197,-0.054517023042898974 +157826,789.1300000056198,-0.05451695028551265 +157827,789.1350000056199,-0.054516877524790376 +157828,789.14000000562,-0.05451680476073176 +157829,789.1450000056201,-0.054516731993336405 +157830,789.1500000056202,-0.05451665922260392 +157831,789.1550000056203,-0.05451658644853392 +157832,789.1600000056204,-0.05451651367112598 +157833,789.1650000056205,-0.05451644089037973 +157834,789.1700000056206,-0.05451636810629477 +157835,789.1750000056207,-0.05451629531887069 +157836,789.1800000056209,-0.05451622252810711 +157837,789.185000005621,-0.054516149734003636 +157838,789.1900000056211,-0.054516076936559854 +157839,789.1950000056212,-0.05451600413577539 +157840,789.2000000056213,-0.05451593133164982 +157841,789.2050000056214,-0.054515858524182774 +157842,789.2100000056215,-0.05451578571337384 +157843,789.2150000056216,-0.05451571289922265 +157844,789.2200000056217,-0.05451564008172878 +157845,789.2250000056218,-0.05451556726089183 +157846,789.230000005622,-0.05451549443671141 +157847,789.235000005622,-0.05451542160918713 +157848,789.2400000056222,-0.05451534877831858 +157849,789.2450000056223,-0.054515275944105386 +157850,789.2500000056224,-0.054515203106547123 +157851,789.2550000056225,-0.054515130265643405 +157852,789.2600000056226,-0.05451505742139385 +157853,789.2650000056227,-0.054514984573798046 +157854,789.2700000056228,-0.05451491172285559 +157855,789.2750000056229,-0.05451483886856609 +157856,789.280000005623,-0.05451476601092915 +157857,789.2850000056231,-0.05451469314994438 +157858,789.2900000056233,-0.05451462028561136 +157859,789.2950000056234,-0.05451454741792971 +157860,789.3000000056235,-0.054514474546899026 +157861,789.3050000056236,-0.0545144016725189 +157862,789.3100000056237,-0.05451432879478895 +157863,789.3150000056238,-0.05451425591370878 +157864,789.3200000056239,-0.05451418302927798 +157865,789.325000005624,-0.054514110141496146 +157866,789.3300000056241,-0.05451403725036289 +157867,789.3350000056242,-0.05451396435587782 +157868,789.3400000056243,-0.05451389145804052 +157869,789.3450000056245,-0.0545138185568506 +157870,789.3500000056246,-0.05451374565230765 +157871,789.3550000056247,-0.05451367274441128 +157872,789.3600000056248,-0.0545135998331611 +157873,789.3650000056249,-0.054513526918556696 +157874,789.370000005625,-0.054513454000597664 +157875,789.3750000056251,-0.05451338107928362 +157876,789.3800000056252,-0.05451330815461415 +157877,789.3850000056253,-0.054513235226588866 +157878,789.3900000056254,-0.054513162295207356 +157879,789.3950000056255,-0.054513089360469225 +157880,789.4000000056257,-0.05451301642237408 +157881,789.4050000056258,-0.05451294348092152 +157882,789.4100000056259,-0.05451287053611114 +157883,789.415000005626,-0.05451279758794253 +157884,789.4200000056261,-0.0545127246364153 +157885,789.4250000056262,-0.05451265168152905 +157886,789.4300000056263,-0.05451257872328337 +157887,789.4350000056264,-0.054512505761677855 +157888,789.4400000056265,-0.05451243279671213 +157889,789.4450000056266,-0.05451235982838577 +157890,789.4500000056267,-0.05451228685669838 +157891,789.4550000056269,-0.054512213881649556 +157892,789.460000005627,-0.0545121409032389 +157893,789.4650000056271,-0.05451206792146601 +157894,789.4700000056272,-0.05451199493633049 +157895,789.4750000056273,-0.054511921947831936 +157896,789.4800000056274,-0.05451184895596994 +157897,789.4850000056275,-0.05451177596074409 +157898,789.4900000056276,-0.054511702962154004 +157899,789.4950000056277,-0.05451162996019927 +157900,789.5000000056278,-0.054511556954879484 +157901,789.505000005628,-0.05451148394619425 +157902,789.5100000056281,-0.054511410934143155 +157903,789.5150000056282,-0.054511337918725804 +157904,789.5200000056283,-0.05451126489994179 +157905,789.5250000056284,-0.05451119187779072 +157906,789.5300000056285,-0.05451111885227218 +157907,789.5350000056286,-0.05451104582338577 +157908,789.5400000056287,-0.05451097279113108 +157909,789.5450000056288,-0.05451089975550772 +157910,789.5500000056289,-0.05451082671651528 +157911,789.555000005629,-0.05451075367415337 +157912,789.5600000056291,-0.05451068062842156 +157913,789.5650000056293,-0.054510607579319456 +157914,789.5700000056294,-0.054510534526846656 +157915,789.5750000056295,-0.05451046147100276 +157916,789.5800000056296,-0.05451038841178735 +157917,789.5850000056297,-0.05451031534920004 +157918,789.5900000056298,-0.05451024228324042 +157919,789.5950000056299,-0.05451016921390807 +157920,789.60000000563,-0.05451009614120261 +157921,789.6050000056301,-0.05451002306512362 +157922,789.6100000056302,-0.0545099499856707 +157923,789.6150000056303,-0.054509876902843445 +157924,789.6200000056305,-0.05450980381664145 +157925,789.6250000056306,-0.05450973072706431 +157926,789.6300000056307,-0.05450965763411162 +157927,789.6350000056308,-0.05450958453778297 +157928,789.6400000056309,-0.054509511438077966 +157929,789.645000005631,-0.05450943833499619 +157930,789.6500000056311,-0.054509365228537235 +157931,789.6550000056312,-0.0545092921187007 +157932,789.6600000056313,-0.054509219005486186 +157933,789.6650000056314,-0.05450914588889329 +157934,789.6700000056316,-0.054509072768921585 +157935,789.6750000056317,-0.05450899964557068 +157936,789.6800000056318,-0.05450892651884017 +157937,789.6850000056319,-0.054508853388729635 +157938,789.690000005632,-0.05450878025523868 +157939,789.6950000056321,-0.05450870711836689 +157940,789.7000000056322,-0.05450863397811386 +157941,789.7050000056323,-0.0545085608344792 +157942,789.7100000056324,-0.05450848768746248 +157943,789.7150000056325,-0.0545084145370633 +157944,789.7200000056326,-0.05450834138328126 +157945,789.7250000056328,-0.05450826822611596 +157946,789.7300000056329,-0.054508195065566964 +157947,789.735000005633,-0.0545081219016339 +157948,789.7400000056331,-0.05450804873431633 +157949,789.7450000056332,-0.05450797556361387 +157950,789.7500000056333,-0.054507902389526096 +157951,789.7550000056334,-0.0545078292120526 +157952,789.7600000056335,-0.05450775603119297 +157953,789.7650000056336,-0.054507682846946806 +157954,789.7700000056337,-0.05450760965931371 +157955,789.7750000056338,-0.05450753646829327 +157956,789.780000005634,-0.054507463273885066 +157957,789.7850000056341,-0.05450739007608869 +157958,789.7900000056342,-0.05450731687490374 +157959,789.7950000056343,-0.0545072436703298 +157960,789.8000000056344,-0.05450717046236647 +157961,789.8050000056345,-0.05450709725101333 +157962,789.8100000056346,-0.05450702403626998 +157963,789.8150000056347,-0.05450695081813602 +157964,789.8200000056348,-0.05450687759661102 +157965,789.8250000056349,-0.054506804371694584 +157966,789.830000005635,-0.05450673114338629 +157967,789.8350000056352,-0.054506657911685734 +157968,789.8400000056353,-0.05450658467659253 +157969,789.8450000056354,-0.05450651143810623 +157970,789.8500000056355,-0.05450643819622644 +157971,789.8550000056356,-0.054506364950952756 +157972,789.8600000056357,-0.054506291702284757 +157973,789.8650000056358,-0.054506218450222035 +157974,789.8700000056359,-0.05450614519476419 +157975,789.875000005636,-0.054506071935910796 +157976,789.8800000056361,-0.05450599867366145 +157977,789.8850000056362,-0.05450592540801576 +157978,789.8900000056364,-0.054505852138973285 +157979,789.8950000056365,-0.05450577886653362 +157980,789.9000000056366,-0.05450570559069637 +157981,789.9050000056367,-0.0545056323114611 +157982,789.9100000056368,-0.05450555902882742 +157983,789.9150000056369,-0.054505485742794915 +157984,789.920000005637,-0.05450541245336316 +157985,789.9250000056371,-0.05450533916053176 +157986,789.9300000056372,-0.0545052658643003 +157987,789.9350000056373,-0.05450519256466836 +157988,789.9400000056374,-0.05450511926163553 +157989,789.9450000056376,-0.0545050459552014 +157990,789.9500000056377,-0.05450497264536556 +157991,789.9550000056378,-0.05450489933212759 +157992,789.9600000056379,-0.05450482601548708 +157993,789.965000005638,-0.05450475269544363 +157994,789.9700000056381,-0.054504679371996816 +157995,789.9750000056382,-0.05450460604514622 +157996,789.9800000056383,-0.05450453271489144 +157997,789.9850000056384,-0.05450445938123205 +157998,789.9900000056385,-0.054504386044167664 +157999,789.9950000056386,-0.054504312703697835 +158000,790.0000000056388,-0.05450423935982218 +158001,790.0050000056389,-0.05450416601254027 +158002,790.010000005639,-0.05450409266185169 +158003,790.0150000056391,-0.05450401930775602 +158004,790.0200000056392,-0.054503945950252874 +158005,790.0250000056393,-0.0545038725893418 +158006,790.0300000056394,-0.05450379922502241 +158007,790.0350000056395,-0.05450372585729429 +158008,790.0400000056396,-0.05450365248615701 +158009,790.0450000056397,-0.05450357911161017 +158010,790.0500000056398,-0.05450350573365334 +158011,790.05500000564,-0.05450343235228613 +158012,790.0600000056401,-0.05450335896750811 +158013,790.0650000056402,-0.054503285579318855 +158014,790.0700000056403,-0.054503212187717975 +158015,790.0750000056404,-0.05450313879270505 +158016,790.0800000056405,-0.05450306539427965 +158017,790.0850000056406,-0.05450299199244135 +158018,790.0900000056407,-0.054502918587189766 +158019,790.0950000056408,-0.05450284517852447 +158020,790.1000000056409,-0.05450277176644504 +158021,790.105000005641,-0.05450269835095106 +158022,790.1100000056412,-0.054502624932042124 +158023,790.1150000056413,-0.05450255150971782 +158024,790.1200000056414,-0.05450247808397772 +158025,790.1250000056415,-0.0545024046548214 +158026,790.1300000056416,-0.05450233122224847 +158027,790.1350000056417,-0.0545022577862585 +158028,790.1400000056418,-0.05450218434685107 +158029,790.1450000056419,-0.054502110904025756 +158030,790.150000005642,-0.05450203745778217 +158031,790.1550000056421,-0.05450196400811986 +158032,790.1600000056422,-0.05450189055503843 +158033,790.1650000056424,-0.05450181709853746 +158034,790.1700000056425,-0.05450174363861653 +158035,790.1750000056426,-0.05450167017527524 +158036,790.1800000056427,-0.05450159670851315 +158037,790.1850000056428,-0.05450152323832985 +158038,790.1900000056429,-0.05450144976472492 +158039,790.195000005643,-0.05450137628769795 +158040,790.2000000056431,-0.05450130280724852 +158041,790.2050000056432,-0.054501229323376206 +158042,790.2100000056433,-0.0545011558360806 +158043,790.2150000056434,-0.05450108234536127 +158044,790.2200000056436,-0.05450100885121781 +158045,790.2250000056437,-0.0545009353536498 +158046,790.2300000056438,-0.05450086185265681 +158047,790.2350000056439,-0.05450078834823843 +158048,790.240000005644,-0.05450071484039425 +158049,790.2450000056441,-0.05450064132912384 +158050,790.2500000056442,-0.05450056781442679 +158051,790.2550000056443,-0.054500494296302666 +158052,790.2600000056444,-0.05450042077475106 +158053,790.2650000056445,-0.05450034724977157 +158054,790.2700000056446,-0.05450027372136374 +158055,790.2750000056448,-0.05450020018952718 +158056,790.2800000056449,-0.054500126654261453 +158057,790.285000005645,-0.05450005311556615 +158058,790.2900000056451,-0.05449997957344084 +158059,790.2950000056452,-0.05449990602788512 +158060,790.3000000056453,-0.05449983247889856 +158061,790.3050000056454,-0.05449975892648072 +158062,790.3100000056455,-0.05449968537063121 +158063,790.3150000056456,-0.05449961181134961 +158064,790.3200000056457,-0.05449953824863549 +158065,790.3250000056458,-0.054499464682488424 +158066,790.330000005646,-0.054499391112908004 +158067,790.3350000056461,-0.054499317539893795 +158068,790.3400000056462,-0.05449924396344538 +158069,790.3450000056463,-0.05449917038356235 +158070,790.3500000056464,-0.054499096800244264 +158071,790.3550000056465,-0.05449902321349072 +158072,790.3600000056466,-0.054498949623301284 +158073,790.3650000056467,-0.05449887602967554 +158074,790.3700000056468,-0.05449880243261306 +158075,790.3750000056469,-0.05449872883211343 +158076,790.380000005647,-0.054498655228176235 +158077,790.3850000056472,-0.05449858162080103 +158078,790.3900000056473,-0.05449850800998742 +158079,790.3950000056474,-0.054498434395734964 +158080,790.4000000056475,-0.05449836077804325 +158081,790.4050000056476,-0.05449828715691186 +158082,790.4100000056477,-0.054498213532340356 +158083,790.4150000056478,-0.05449813990432833 +158084,790.4200000056479,-0.05449806627287535 +158085,790.425000005648,-0.05449799263798099 +158086,790.4300000056481,-0.054497918999644825 +158087,790.4350000056482,-0.054497845357866455 +158088,790.4400000056484,-0.05449777171264543 +158089,790.4450000056485,-0.054497698063981345 +158090,790.4500000056486,-0.05449762441187377 +158091,790.4550000056487,-0.05449755075632228 +158092,790.4600000056488,-0.05449747709732647 +158093,790.4650000056489,-0.054497403434885884 +158094,790.470000005649,-0.05449732976900012 +158095,790.4750000056491,-0.054497256099668746 +158096,790.4800000056492,-0.05449718242689135 +158097,790.4850000056493,-0.05449710875066748 +158098,790.4900000056494,-0.05449703507099675 +158099,790.4950000056496,-0.0544969613878787 +158100,790.5000000056497,-0.05449688770131293 +158101,790.5050000056498,-0.05449681401129901 +158102,790.5100000056499,-0.054496740317836516 +158103,790.51500000565,-0.05449666662092501 +158104,790.5200000056501,-0.05449659292056409 +158105,790.5250000056502,-0.0544965192167533 +158106,790.5300000056503,-0.05449644550949223 +158107,790.5350000056504,-0.054496371798780474 +158108,790.5400000056505,-0.05449629808461758 +158109,790.5450000056506,-0.05449622436700314 +158110,790.5500000056508,-0.05449615064593671 +158111,790.5550000056509,-0.054496076921417884 +158112,790.560000005651,-0.05449600319344623 +158113,790.5650000056511,-0.05449592946202131 +158114,790.5700000056512,-0.05449585572714271 +158115,790.5750000056513,-0.05449578198881001 +158116,790.5800000056514,-0.05449570824702276 +158117,790.5850000056515,-0.054495634501780556 +158118,790.5900000056516,-0.05449556075308297 +158119,790.5950000056517,-0.05449548700092957 +158120,790.6000000056519,-0.054495413245319924 +158121,790.605000005652,-0.05449533948625361 +158122,790.6100000056521,-0.054495265723730216 +158123,790.6150000056522,-0.05449519195774929 +158124,790.6200000056523,-0.05449511818831042 +158125,790.6250000056524,-0.05449504441541316 +158126,790.6300000056525,-0.0544949706390571 +158127,790.6350000056526,-0.05449489685924182 +158128,790.6400000056527,-0.054494823075966876 +158129,790.6450000056528,-0.05449474928923185 +158130,790.6500000056529,-0.054494675499036305 +158131,790.655000005653,-0.05449460170537982 +158132,790.6600000056532,-0.054494527908261974 +158133,790.6650000056533,-0.05449445410768232 +158134,790.6700000056534,-0.05449438030364044 +158135,790.6750000056535,-0.05449430649613591 +158136,790.6800000056536,-0.05449423268516829 +158137,790.6850000056537,-0.05449415887073717 +158138,790.6900000056538,-0.054494085052842096 +158139,790.6950000056539,-0.05449401123148266 +158140,790.700000005654,-0.054493937406658435 +158141,790.7050000056541,-0.054493863578368974 +158142,790.7100000056543,-0.054493789746613855 +158143,790.7150000056544,-0.054493715911392654 +158144,790.7200000056545,-0.05449364207270495 +158145,790.7250000056546,-0.05449356823055028 +158146,790.7300000056547,-0.05449349438492824 +158147,790.7350000056548,-0.054493420535838395 +158148,790.7400000056549,-0.054493346683280326 +158149,790.745000005655,-0.05449327282725358 +158150,790.7500000056551,-0.05449319896775775 +158151,790.7550000056552,-0.0544931251047924 +158152,790.7600000056553,-0.054493051238357085 +158153,790.7650000056555,-0.05449297736845139 +158154,790.7700000056556,-0.054492903495074886 +158155,790.7750000056557,-0.05449282961822712 +158156,790.7800000056558,-0.05449275573790769 +158157,790.7850000056559,-0.05449268185411614 +158158,790.790000005656,-0.05449260796685206 +158159,790.7950000056561,-0.054492534076115005 +158160,790.8000000056562,-0.054492460181904546 +158161,790.8050000056563,-0.05449238628422026 +158162,790.8100000056564,-0.054492312383061715 +158163,790.8150000056565,-0.05449223847842846 +158164,790.8200000056567,-0.054492164570320085 +158165,790.8250000056568,-0.05449209065873615 +158166,790.8300000056569,-0.054492016743676215 +158167,790.835000005657,-0.054491942825139875 +158168,790.8400000056571,-0.054491868903126676 +158169,790.8450000056572,-0.054491794977636177 +158170,790.8500000056573,-0.05449172104866797 +158171,790.8550000056574,-0.0544916471162216 +158172,790.8600000056575,-0.054491573180296654 +158173,790.8650000056576,-0.054491499240892693 +158174,790.8700000056577,-0.05449142529800928 +158175,790.8750000056579,-0.05449135135164598 +158176,790.880000005658,-0.05449127740180235 +158177,790.8850000056581,-0.05449120344847798 +158178,790.8900000056582,-0.054491129491672424 +158179,790.8950000056583,-0.05449105553138526 +158180,790.9000000056584,-0.05449098156761603 +158181,790.9050000056585,-0.054490907600364326 +158182,790.9100000056586,-0.054490833629629705 +158183,790.9150000056587,-0.05449075965541174 +158184,790.9200000056588,-0.054490685677709975 +158185,790.925000005659,-0.054490611696524 +158186,790.930000005659,-0.05449053771185337 +158187,790.9350000056592,-0.054490463723697646 +158188,790.9400000056593,-0.0544903897320564 +158189,790.9450000056594,-0.05449031573692919 +158190,790.9500000056595,-0.05449024173831559 +158191,790.9550000056596,-0.05449016773621517 +158192,790.9600000056597,-0.05449009373062748 +158193,790.9650000056598,-0.0544900197215521 +158194,790.9700000056599,-0.05448994570898859 +158195,790.97500000566,-0.0544898716929365 +158196,790.9800000056601,-0.054489797673395415 +158197,790.9850000056603,-0.0544897236503649 +158198,790.9900000056604,-0.0544896496238445 +158199,790.9950000056605,-0.05448957559383379 +158200,791.0000000056606,-0.05448950156033233 +158201,791.0050000056607,-0.054489427523339684 +158202,791.0100000056608,-0.054489353482855434 +158203,791.0150000056609,-0.05448927943887912 +158204,791.020000005661,-0.05448920539141033 +158205,791.0250000056611,-0.054489131340448596 +158206,791.0300000056612,-0.0544890572859935 +158207,791.0350000056613,-0.0544889832280446 +158208,791.0400000056615,-0.05448890916660148 +158209,791.0450000056616,-0.05448883510166367 +158210,791.0500000056617,-0.05448876103323076 +158211,791.0550000056618,-0.054488686961302296 +158212,791.0600000056619,-0.05448861288587784 +158213,791.065000005662,-0.05448853880695697 +158214,791.0700000056621,-0.05448846472453924 +158215,791.0750000056622,-0.054488390638624214 +158216,791.0800000056623,-0.05448831654921145 +158217,791.0850000056624,-0.05448824245630051 +158218,791.0900000056625,-0.05448816835989097 +158219,791.0950000056627,-0.05448809425998236 +158220,791.1000000056628,-0.05448802015657428 +158221,791.1050000056629,-0.05448794604966627 +158222,791.110000005663,-0.05448787193925789 +158223,791.1150000056631,-0.05448779782534871 +158224,791.1200000056632,-0.054487723707938286 +158225,791.1250000056633,-0.054487649587026184 +158226,791.1300000056634,-0.05448757546261196 +158227,791.1350000056635,-0.05448750133469518 +158228,791.1400000056636,-0.0544874272032754 +158229,791.1450000056637,-0.05448735306835218 +158230,791.1500000056639,-0.05448727892992508 +158231,791.155000005664,-0.054487204787993675 +158232,791.1600000056641,-0.054487130642557516 +158233,791.1650000056642,-0.054487056493616154 +158234,791.1700000056643,-0.05448698234116915 +158235,791.1750000056644,-0.05448690818521608 +158236,791.1800000056645,-0.05448683402575649 +158237,791.1850000056646,-0.05448675986278995 +158238,791.1900000056647,-0.05448668569631602 +158239,791.1950000056648,-0.054486611526334244 +158240,791.200000005665,-0.05448653735284419 +158241,791.205000005665,-0.05448646317584543 +158242,791.2100000056652,-0.05448638899533751 +158243,791.2150000056653,-0.054486314811319984 +158244,791.2200000056654,-0.054486240623792426 +158245,791.2250000056655,-0.05448616643275439 +158246,791.2300000056656,-0.05448609223820543 +158247,791.2350000056657,-0.0544860180401451 +158248,791.2400000056658,-0.05448594383857296 +158249,791.2450000056659,-0.054485869633488594 +158250,791.250000005666,-0.05448579542489152 +158251,791.2550000056661,-0.054485721212781314 +158252,791.2600000056663,-0.05448564699715754 +158253,791.2650000056664,-0.05448557277801976 +158254,791.2700000056665,-0.054485498555367516 +158255,791.2750000056666,-0.05448542432920037 +158256,791.2800000056667,-0.05448535009951789 +158257,791.2850000056668,-0.05448527586631963 +158258,791.2900000056669,-0.05448520162960513 +158259,791.295000005667,-0.05448512738937397 +158260,791.3000000056671,-0.0544850531456257 +158261,791.3050000056672,-0.05448497889835987 +158262,791.3100000056673,-0.05448490464757605 +158263,791.3150000056675,-0.054484830393273766 +158264,791.3200000056676,-0.05448475613545262 +158265,791.3250000056677,-0.05448468187411213 +158266,791.3300000056678,-0.05448460760925187 +158267,791.3350000056679,-0.054484533340871395 +158268,791.340000005668,-0.054484459068970266 +158269,791.3450000056681,-0.05448438479354803 +158270,791.3500000056682,-0.05448431051460425 +158271,791.3550000056683,-0.054484236232138473 +158272,791.3600000056684,-0.054484161946150265 +158273,791.3650000056685,-0.054484087656639174 +158274,791.3700000056687,-0.05448401336360476 +158275,791.3750000056688,-0.05448393906704658 +158276,791.3800000056689,-0.05448386476696417 +158277,791.385000005669,-0.054483790463357114 +158278,791.3900000056691,-0.054483716156224944 +158279,791.3950000056692,-0.05448364184556722 +158280,791.4000000056693,-0.05448356753138352 +158281,791.4050000056694,-0.05448349321367336 +158282,791.4100000056695,-0.05448341889243632 +158283,791.4150000056696,-0.05448334456767195 +158284,791.4200000056697,-0.05448327023937981 +158285,791.4250000056699,-0.054483195907559435 +158286,791.43000000567,-0.05448312157221039 +158287,791.4350000056701,-0.05448304723333223 +158288,791.4400000056702,-0.05448297289092452 +158289,791.4450000056703,-0.05448289854498678 +158290,791.4500000056704,-0.05448282419551861 +158291,791.4550000056705,-0.05448274984251952 +158292,791.4600000056706,-0.05448267548598909 +158293,791.4650000056707,-0.054482601125926865 +158294,791.4700000056708,-0.0544825267623324 +158295,791.475000005671,-0.054482452395205244 +158296,791.4800000056711,-0.05448237802454494 +158297,791.4850000056712,-0.054482303650351074 +158298,791.4900000056713,-0.05448222927262316 +158299,791.4950000056714,-0.05448215489136078 +158300,791.5000000056715,-0.05448208050656347 +158301,791.5050000056716,-0.054482006118230786 +158302,791.5100000056717,-0.05448193172636228 +158303,791.5150000056718,-0.0544818573309575 +158304,791.5200000056719,-0.054481782932016005 +158305,791.525000005672,-0.05448170852953734 +158306,791.5300000056722,-0.054481634123521076 +158307,791.5350000056723,-0.054481559713966746 +158308,791.5400000056724,-0.0544814853008739 +158309,791.5450000056725,-0.0544814108842421 +158310,791.5500000056726,-0.05448133646407088 +158311,791.5550000056727,-0.054481262040359794 +158312,791.5600000056728,-0.05448118761310842 +158313,791.5650000056729,-0.05448111318231628 +158314,791.570000005673,-0.054481038747982935 +158315,791.5750000056731,-0.05448096431010794 +158316,791.5800000056732,-0.054480889868690825 +158317,791.5850000056734,-0.054480815423731156 +158318,791.5900000056735,-0.0544807409752285 +158319,791.5950000056736,-0.054480666523182376 +158320,791.6000000056737,-0.05448059206759236 +158321,791.6050000056738,-0.05448051760845797 +158322,791.6100000056739,-0.054480443145778795 +158323,791.615000005674,-0.05448036867955436 +158324,791.6200000056741,-0.05448029420978422 +158325,791.6250000056742,-0.05448021973646792 +158326,791.6300000056743,-0.05448014525960501 +158327,791.6350000056744,-0.05448007077919505 +158328,791.6400000056746,-0.05447999629523757 +158329,791.6450000056747,-0.05447992180773214 +158330,791.6500000056748,-0.05447984731667829 +158331,791.6550000056749,-0.05447977282207558 +158332,791.660000005675,-0.05447969832392354 +158333,791.6650000056751,-0.054479623822221754 +158334,791.6700000056752,-0.05447954931696975 +158335,791.6750000056753,-0.05447947480816707 +158336,791.6800000056754,-0.05447940029581327 +158337,791.6850000056755,-0.0544793257799079 +158338,791.6900000056756,-0.0544792512604505 +158339,791.6950000056758,-0.05447917673744061 +158340,791.7000000056759,-0.054479102210877796 +158341,791.705000005676,-0.054479027680761606 +158342,791.7100000056761,-0.05447895314709157 +158343,791.7150000056762,-0.054478878609867255 +158344,791.7200000056763,-0.054478804069088185 +158345,791.7250000056764,-0.05447872952475393 +158346,791.7300000056765,-0.05447865497686402 +158347,791.7350000056766,-0.05447858042541802 +158348,791.7400000056767,-0.05447850587041546 +158349,791.7450000056768,-0.05447843131185589 +158350,791.750000005677,-0.05447835674973885 +158351,791.7550000056771,-0.0544782821840639 +158352,791.7600000056772,-0.05447820761483058 +158353,791.7650000056773,-0.05447813304203844 +158354,791.7700000056774,-0.05447805846568701 +158355,791.7750000056775,-0.054477983885775856 +158356,791.7800000056776,-0.05447790930230451 +158357,791.7850000056777,-0.054477834715272525 +158358,791.7900000056778,-0.054477760124679434 +158359,791.7950000056779,-0.05447768553052481 +158360,791.800000005678,-0.054477610932808174 +158361,791.8050000056782,-0.05447753633152908 +158362,791.8100000056783,-0.05447746172668707 +158363,791.8150000056784,-0.054477387118281685 +158364,791.8200000056785,-0.05447731250631247 +158365,791.8250000056786,-0.05447723789077898 +158366,791.8300000056787,-0.054477163271680736 +158367,791.8350000056788,-0.054477088649017305 +158368,791.8400000056789,-0.05447701402278823 +158369,791.845000005679,-0.05447693939299305 +158370,791.8500000056791,-0.054476864759631295 +158371,791.8550000056792,-0.05447679012270254 +158372,791.8600000056794,-0.054476715482206305 +158373,791.8650000056795,-0.05447664083814213 +158374,791.8700000056796,-0.05447656619050957 +158375,791.8750000056797,-0.05447649153930817 +158376,791.8800000056798,-0.05447641688453747 +158377,791.8850000056799,-0.054476342226197 +158378,791.89000000568,-0.054476267564286335 +158379,791.8950000056801,-0.05447619289880498 +158380,791.9000000056802,-0.0544761182297525 +158381,791.9050000056803,-0.054476043557128435 +158382,791.9100000056804,-0.05447596888093233 +158383,791.9150000056806,-0.054475894201163715 +158384,791.9200000056807,-0.054475819517822134 +158385,791.9250000056808,-0.054475744830907134 +158386,791.9300000056809,-0.05447567014041826 +158387,791.935000005681,-0.05447559544635506 +158388,791.9400000056811,-0.05447552074871706 +158389,791.9450000056812,-0.05447544604750381 +158390,791.9500000056813,-0.05447537134271485 +158391,791.9550000056814,-0.05447529663434972 +158392,791.9600000056815,-0.05447522192240795 +158393,791.9650000056816,-0.054475147206889105 +158394,791.9700000056818,-0.054475072487792715 +158395,791.9750000056819,-0.05447499776511832 +158396,791.980000005682,-0.054474923038865454 +158397,791.9850000056821,-0.05447484830903367 +158398,791.9900000056822,-0.054474773575622505 +158399,791.9950000056823,-0.0544746988386315 +158400,792.0000000056824,-0.05447462409806019 +158401,792.0050000056825,-0.054474549353908115 +158402,792.0100000056826,-0.05447447460617483 +158403,792.0150000056827,-0.05447439985485984 +158404,792.0200000056828,-0.054474325099962716 +158405,792.025000005683,-0.05447425034148299 +158406,792.0300000056831,-0.05447417557942019 +158407,792.0350000056832,-0.05447410081377387 +158408,792.0400000056833,-0.05447402604454358 +158409,792.0450000056834,-0.05447395127172884 +158410,792.0500000056835,-0.05447387649532918 +158411,792.0550000056836,-0.054473801715344154 +158412,792.0600000056837,-0.0544737269317733 +158413,792.0650000056838,-0.05447365214461616 +158414,792.0700000056839,-0.05447357735387226 +158415,792.075000005684,-0.05447350255954115 +158416,792.0800000056842,-0.05447342776162236 +158417,792.0850000056843,-0.054473352960115434 +158418,792.0900000056844,-0.054473278155019914 +158419,792.0950000056845,-0.054473203346335326 +158420,792.1000000056846,-0.05447312853406121 +158421,792.1050000056847,-0.054473053718197106 +158422,792.1100000056848,-0.05447297889874256 +158423,792.1150000056849,-0.05447290407569709 +158424,792.120000005685,-0.05447282924906025 +158425,792.1250000056851,-0.05447275441883157 +158426,792.1300000056852,-0.0544726795850106 +158427,792.1350000056854,-0.054472604747596846 +158428,792.1400000056855,-0.054472529906589885 +158429,792.1450000056856,-0.05447245506198922 +158430,792.1500000056857,-0.054472380213794414 +158431,792.1550000056858,-0.05447230536200497 +158432,792.1600000056859,-0.054472230506620464 +158433,792.165000005686,-0.05447215564764041 +158434,792.1700000056861,-0.05447208078506434 +158435,792.1750000056862,-0.0544720059188918 +158436,792.1800000056863,-0.054471931049122305 +158437,792.1850000056864,-0.05447185617575542 +158438,792.1900000056866,-0.05447178129879066 +158439,792.1950000056867,-0.05447170641822757 +158440,792.2000000056868,-0.054471631534065694 +158441,792.2050000056869,-0.05447155664630455 +158442,792.210000005687,-0.054471481754943686 +158443,792.2150000056871,-0.05447140685998262 +158444,792.2200000056872,-0.0544713319614209 +158445,792.2250000056873,-0.054471257059258066 +158446,792.2300000056874,-0.05447118215349364 +158447,792.2350000056875,-0.05447110724412717 +158448,792.2400000056876,-0.05447103233115817 +158449,792.2450000056878,-0.054470957414586185 +158450,792.2500000056879,-0.05447088249441075 +158451,792.255000005688,-0.05447080757063139 +158452,792.2600000056881,-0.05447073264324766 +158453,792.2650000056882,-0.05447065771225907 +158454,792.2700000056883,-0.05447058277766517 +158455,792.2750000056884,-0.054470507839465485 +158456,792.2800000056885,-0.05447043289765955 +158457,792.2850000056886,-0.0544703579522469 +158458,792.2900000056887,-0.054470283003227066 +158459,792.2950000056888,-0.05447020805059958 +158460,792.300000005689,-0.05447013309436397 +158461,792.3050000056891,-0.05447005813451979 +158462,792.3100000056892,-0.05446998317106655 +158463,792.3150000056893,-0.05446990820400379 +158464,792.3200000056894,-0.05446983323333103 +158465,792.3250000056895,-0.054469758259047825 +158466,792.3300000056896,-0.054469683281153695 +158467,792.3350000056897,-0.05446960829964817 +158468,792.3400000056898,-0.05446953331453078 +158469,792.3450000056899,-0.05446945832580106 +158470,792.35000000569,-0.05446938333345854 +158471,792.3550000056902,-0.05446930833750277 +158472,792.3600000056903,-0.05446923333793325 +158473,792.3650000056904,-0.05446915833474952 +158474,792.3700000056905,-0.05446908332795114 +158475,792.3750000056906,-0.0544690083175376 +158476,792.3800000056907,-0.05446893330350845 +158477,792.3850000056908,-0.054468858285863224 +158478,792.3900000056909,-0.054468783264601445 +158479,792.395000005691,-0.05446870823972265 +158480,792.4000000056911,-0.054468633211226365 +158481,792.4050000056912,-0.05446855817911212 +158482,792.4100000056914,-0.054468483143379445 +158483,792.4150000056915,-0.05446840810402787 +158484,792.4200000056916,-0.054468333061056924 +158485,792.4250000056917,-0.05446825801446614 +158486,792.4300000056918,-0.05446818296425505 +158487,792.4350000056919,-0.05446810791042317 +158488,792.440000005692,-0.05446803285297004 +158489,792.4450000056921,-0.054467957791895186 +158490,792.4500000056922,-0.054467882727198144 +158491,792.4550000056923,-0.05446780765887843 +158492,792.4600000056925,-0.05446773258693558 +158493,792.4650000056926,-0.05446765751136913 +158494,792.4700000056927,-0.05446758243217859 +158495,792.4750000056928,-0.0544675073493635 +158496,792.4800000056929,-0.05446743226292338 +158497,792.485000005693,-0.05446735717285778 +158498,792.4900000056931,-0.0544672820791662 +158499,792.4950000056932,-0.05446720698184818 +158500,792.5000000056933,-0.054467131880903255 +158501,792.5050000056934,-0.05446705677633094 +158502,792.5100000056935,-0.05446698166813076 +158503,792.5150000056937,-0.05446690655630225 +158504,792.5200000056938,-0.054466831440844944 +158505,792.5250000056939,-0.05446675632175837 +158506,792.530000005694,-0.05446668119904204 +158507,792.5350000056941,-0.054466606072695496 +158508,792.5400000056942,-0.05446653094271825 +158509,792.5450000056943,-0.05446645580910983 +158510,792.5500000056944,-0.05446638067186977 +158511,792.5550000056945,-0.0544663055309976 +158512,792.5600000056946,-0.05446623038649284 +158513,792.5650000056947,-0.05446615523835502 +158514,792.5700000056949,-0.05446608008658366 +158515,792.575000005695,-0.05446600493117829 +158516,792.5800000056951,-0.054465929772138426 +158517,792.5850000056952,-0.054465854609463606 +158518,792.5900000056953,-0.05446577944315335 +158519,792.5950000056954,-0.05446570427320718 +158520,792.6000000056955,-0.054465629099624636 +158521,792.6050000056956,-0.05446555392240522 +158522,792.6100000056957,-0.05446547874154848 +158523,792.6150000056958,-0.05446540355705392 +158524,792.6200000056959,-0.05446532836892108 +158525,792.625000005696,-0.05446525317714948 +158526,792.6300000056962,-0.05446517798173864 +158527,792.6350000056963,-0.05446510278268808 +158528,792.6400000056964,-0.05446502757999734 +158529,792.6450000056965,-0.054464952373665936 +158530,792.6500000056966,-0.05446487716369339 +158531,792.6550000056967,-0.054464801950079224 +158532,792.6600000056968,-0.05446472673282297 +158533,792.6650000056969,-0.054464651511924145 +158534,792.670000005697,-0.05446457628738227 +158535,792.6750000056971,-0.054464501059196875 +158536,792.6800000056973,-0.05446442582736748 +158537,792.6850000056974,-0.054464350591893605 +158538,792.6900000056975,-0.05446427535277478 +158539,792.6950000056976,-0.054464200110010526 +158540,792.7000000056977,-0.05446412486360036 +158541,792.7050000056978,-0.054464049613543807 +158542,792.7100000056979,-0.05446397435984039 +158543,792.715000005698,-0.05446389910248964 +158544,792.7200000056981,-0.05446382384149105 +158545,792.7250000056982,-0.05446374857684417 +158546,792.7300000056983,-0.05446367330854851 +158547,792.7350000056985,-0.0544635980366036 +158548,792.7400000056986,-0.054463522761008965 +158549,792.7450000056987,-0.054463447481764106 +158550,792.7500000056988,-0.054463372198868557 +158551,792.7550000056989,-0.05446329691232184 +158552,792.760000005699,-0.05446322162212347 +158553,792.7650000056991,-0.05446314632827298 +158554,792.7700000056992,-0.05446307103076988 +158555,792.7750000056993,-0.054462995729613696 +158556,792.7800000056994,-0.054462920424803954 +158557,792.7850000056995,-0.05446284511634016 +158558,792.7900000056997,-0.05446276980422185 +158559,792.7950000056998,-0.05446269448844854 +158560,792.8000000056999,-0.05446261916901973 +158561,792.8050000057,-0.05446254384593496 +158562,792.8100000057001,-0.05446246851919375 +158563,792.8150000057002,-0.0544623931887956 +158564,792.8200000057003,-0.05446231785474005 +158565,792.8250000057004,-0.054462242517026624 +158566,792.8300000057005,-0.05446216717565483 +158567,792.8350000057006,-0.05446209183062418 +158568,792.8400000057007,-0.0544620164819342 +158569,792.8450000057009,-0.05446194112958442 +158570,792.850000005701,-0.054461865773574335 +158571,792.8550000057011,-0.05446179041390349 +158572,792.8600000057012,-0.05446171505057139 +158573,792.8650000057013,-0.05446163968357755 +158574,792.8700000057014,-0.054461564312921484 +158575,792.8750000057015,-0.054461488938602726 +158576,792.8800000057016,-0.054461413560620786 +158577,792.8850000057017,-0.05446133817897519 +158578,792.8900000057018,-0.05446126279366543 +158579,792.895000005702,-0.054461187404691046 +158580,792.900000005702,-0.05446111201205156 +158581,792.9050000057022,-0.054461036615746465 +158582,792.9100000057023,-0.0544609612157753 +158583,792.9150000057024,-0.05446088581213758 +158584,792.9200000057025,-0.05446081040483281 +158585,792.9250000057026,-0.05446073499386051 +158586,792.9300000057027,-0.05446065957922021 +158587,792.9350000057028,-0.05446058416091141 +158588,792.9400000057029,-0.05446050873893364 +158589,792.945000005703,-0.0544604333132864 +158590,792.9500000057031,-0.054460357883969225 +158591,792.9550000057033,-0.05446028245098161 +158592,792.9600000057034,-0.05446020701432309 +158593,792.9650000057035,-0.05446013157399317 +158594,792.9700000057036,-0.05446005612999137 +158595,792.9750000057037,-0.05445998068231721 +158596,792.9800000057038,-0.0544599052309702 +158597,792.9850000057039,-0.05445982977594984 +158598,792.990000005704,-0.05445975431725567 +158599,792.9950000057041,-0.0544596788548872 +158600,793.0000000057042,-0.05445960338884393 +158601,793.0050000057043,-0.054459527919125394 +158602,793.0100000057045,-0.05445945244573109 +158603,793.0150000057046,-0.05445937696866054 +158604,793.0200000057047,-0.05445930148791325 +158605,793.0250000057048,-0.05445922600348875 +158606,793.0300000057049,-0.054459150515386544 +158607,793.035000005705,-0.05445907502360615 +158608,793.0400000057051,-0.054458999528147076 +158609,793.0450000057052,-0.05445892402900884 +158610,793.0500000057053,-0.05445884852619095 +158611,793.0550000057054,-0.05445877301969293 +158612,793.0600000057055,-0.05445869750951428 +158613,793.0650000057057,-0.05445862199565452 +158614,793.0700000057058,-0.054458546478113164 +158615,793.0750000057059,-0.05445847095688973 +158616,793.080000005706,-0.05445839543198372 +158617,793.0850000057061,-0.05445831990339464 +158618,793.0900000057062,-0.054458244371122025 +158619,793.0950000057063,-0.05445816883516537 +158620,793.1000000057064,-0.054458093295524194 +158621,793.1050000057065,-0.054458017752198 +158622,793.1100000057066,-0.05445794220518633 +158623,793.1150000057067,-0.05445786665448866 +158624,793.1200000057069,-0.05445779110010451 +158625,793.125000005707,-0.054457715542033415 +158626,793.1300000057071,-0.05445763998027485 +158627,793.1350000057072,-0.05445756441482835 +158628,793.1400000057073,-0.05445748884569344 +158629,793.1450000057074,-0.05445741327286959 +158630,793.1500000057075,-0.054457337696356335 +158631,793.1550000057076,-0.05445726211615319 +158632,793.1600000057077,-0.05445718653225966 +158633,793.1650000057078,-0.05445711094467524 +158634,793.170000005708,-0.05445703535339946 +158635,793.1750000057081,-0.05445695975843184 +158636,793.1800000057082,-0.05445688415977186 +158637,793.1850000057083,-0.05445680855741905 +158638,793.1900000057084,-0.05445673295137291 +158639,793.1950000057085,-0.054456657341632964 +158640,793.2000000057086,-0.0544565817281987 +158641,793.2050000057087,-0.05445650611106964 +158642,793.2100000057088,-0.054456430490245296 +158643,793.2150000057089,-0.05445635486572518 +158644,793.220000005709,-0.05445627923750878 +158645,793.2250000057091,-0.05445620360559563 +158646,793.2300000057093,-0.05445612796998523 +158647,793.2350000057094,-0.05445605233067708 +158648,793.2400000057095,-0.0544559766876707 +158649,793.2450000057096,-0.0544559010409656 +158650,793.2500000057097,-0.05445582539056128 +158651,793.2550000057098,-0.05445574973645724 +158652,793.2600000057099,-0.054455674078653 +158653,793.26500000571,-0.05445559841714808 +158654,793.2700000057101,-0.05445552275194197 +158655,793.2750000057102,-0.054455447083034174 +158656,793.2800000057103,-0.054455371410424204 +158657,793.2850000057105,-0.05445529573411157 +158658,793.2900000057106,-0.05445522005409579 +158659,793.2950000057107,-0.054455144370376345 +158660,793.3000000057108,-0.05445506868295277 +158661,793.3050000057109,-0.054454992991824554 +158662,793.310000005711,-0.054454917296991215 +158663,793.3150000057111,-0.05445484159845225 +158664,793.3200000057112,-0.054454765896207166 +158665,793.3250000057113,-0.054454690190255464 +158666,793.3300000057114,-0.054454614480596665 +158667,793.3350000057115,-0.05445453876723026 +158668,793.3400000057117,-0.05445446305015577 +158669,793.3450000057118,-0.054454387329372696 +158670,793.3500000057119,-0.05445431160488053 +158671,793.355000005712,-0.054454235876678796 +158672,793.3600000057121,-0.05445416014476699 +158673,793.3650000057122,-0.054454084409144614 +158674,793.3700000057123,-0.05445400866981118 +158675,793.3750000057124,-0.05445393292676619 +158676,793.3800000057125,-0.054453857180009155 +158677,793.3850000057126,-0.05445378142953956 +158678,793.3900000057127,-0.05445370567535693 +158679,793.3950000057129,-0.054453629917460764 +158680,793.400000005713,-0.05445355415585057 +158681,793.4050000057131,-0.05445347839052585 +158682,793.4100000057132,-0.05445340262148609 +158683,793.4150000057133,-0.05445332684873081 +158684,793.4200000057134,-0.05445325107225952 +158685,793.4250000057135,-0.05445317529207172 +158686,793.4300000057136,-0.0544530995081669 +158687,793.4350000057137,-0.05445302372054458 +158688,793.4400000057138,-0.05445294792920426 +158689,793.445000005714,-0.05445287213414542 +158690,793.4500000057141,-0.05445279633536759 +158691,793.4550000057142,-0.05445272053287027 +158692,793.4600000057143,-0.05445264472665296 +158693,793.4650000057144,-0.054452568916715155 +158694,793.4700000057145,-0.05445249310305635 +158695,793.4750000057146,-0.054452417285676076 +158696,793.4800000057147,-0.054452341464573804 +158697,793.4850000057148,-0.05445226563974906 +158698,793.4900000057149,-0.05445218981120134 +158699,793.495000005715,-0.05445211397893013 +158700,793.5000000057152,-0.05445203814293494 +158701,793.5050000057153,-0.054451962303215286 +158702,793.5100000057154,-0.05445188645977065 +158703,793.5150000057155,-0.05445181061260054 +158704,793.5200000057156,-0.05445173476170446 +158705,793.5250000057157,-0.05445165890708191 +158706,793.5300000057158,-0.05445158304873239 +158707,793.5350000057159,-0.05445150718665541 +158708,793.540000005716,-0.054451431320850445 +158709,793.5450000057161,-0.05445135545131701 +158710,793.5500000057162,-0.05445127957805461 +158711,793.5550000057164,-0.05445120370106274 +158712,793.5600000057165,-0.0544511278203409 +158713,793.5650000057166,-0.0544510519358886 +158714,793.5700000057167,-0.054450976047705324 +158715,793.5750000057168,-0.05445090015579058 +158716,793.5800000057169,-0.05445082426014386 +158717,793.585000005717,-0.054450748360764675 +158718,793.5900000057171,-0.05445067245765252 +158719,793.5950000057172,-0.054450596550806876 +158720,793.6000000057173,-0.05445052064022727 +158721,793.6050000057174,-0.054450444725913184 +158722,793.6100000057176,-0.05445036880786412 +158723,793.6150000057177,-0.05445029288607958 +158724,793.6200000057178,-0.05445021696055906 +158725,793.6250000057179,-0.054450141031302066 +158726,793.630000005718,-0.05445006509830809 +158727,793.6350000057181,-0.05444998916157661 +158728,793.6400000057182,-0.054449913221107156 +158729,793.6450000057183,-0.054449837276899206 +158730,793.6500000057184,-0.054449761328952254 +158731,793.6550000057185,-0.05444968537726581 +158732,793.6600000057186,-0.05444960942183937 +158733,793.6650000057188,-0.05444953346267242 +158734,793.6700000057189,-0.05444945749976448 +158735,793.675000005719,-0.054449381533115015 +158736,793.6800000057191,-0.05444930556272355 +158737,793.6850000057192,-0.05444922958858956 +158738,793.6900000057193,-0.05444915361071256 +158739,793.6950000057194,-0.054449077629092034 +158740,793.7000000057195,-0.054449001643727485 +158741,793.7050000057196,-0.05444892565461841 +158742,793.7100000057197,-0.05444884966176429 +158743,793.7150000057198,-0.054448773665164624 +158744,793.72000000572,-0.054448697664818926 +158745,793.7250000057201,-0.05444862166072667 +158746,793.7300000057202,-0.05444854565288738 +158747,793.7350000057203,-0.05444846964130052 +158748,793.7400000057204,-0.054448393625965597 +158749,793.7450000057205,-0.0544483176068821 +158750,793.7500000057206,-0.05444824158404954 +158751,793.7550000057207,-0.054448165557467405 +158752,793.7600000057208,-0.05444808952713518 +158753,793.7650000057209,-0.05444801349305237 +158754,793.770000005721,-0.05444793745521847 +158755,793.7750000057212,-0.05444786141363295 +158756,793.7800000057213,-0.05444778536829533 +158757,793.7850000057214,-0.054447709319205104 +158758,793.7900000057215,-0.05444763326636175 +158759,793.7950000057216,-0.05444755720976477 +158760,793.8000000057217,-0.05444748114941366 +158761,793.8050000057218,-0.054447405085307925 +158762,793.8100000057219,-0.05444732901744703 +158763,793.815000005722,-0.054447252945830485 +158764,793.8200000057221,-0.05444717687045778 +158765,793.8250000057222,-0.05444710079132841 +158766,793.8300000057224,-0.05444702470844186 +158767,793.8350000057225,-0.054446948621797615 +158768,793.8400000057226,-0.054446872531395185 +158769,793.8450000057227,-0.05444679643723406 +158770,793.8500000057228,-0.05444672033931373 +158771,793.8550000057229,-0.05444664423763368 +158772,793.860000005723,-0.05444656813219341 +158773,793.8650000057231,-0.054446492022992406 +158774,793.8700000057232,-0.05444641591003017 +158775,793.8750000057233,-0.05444633979330618 +158776,793.8800000057234,-0.05444626367281994 +158777,793.8850000057236,-0.05444618754857093 +158778,793.8900000057237,-0.05444611142055865 +158779,793.8950000057238,-0.054446035288782585 +158780,793.9000000057239,-0.05444595915324221 +158781,793.905000005724,-0.05444588301393705 +158782,793.9100000057241,-0.054445806870866566 +158783,793.9150000057242,-0.05444573072403026 +158784,793.9200000057243,-0.05444565457342762 +158785,793.9250000057244,-0.05444557841905814 +158786,793.9300000057245,-0.054445502260921305 +158787,793.9350000057246,-0.0544454260990166 +158788,793.9400000057248,-0.054445349933343525 +158789,793.9450000057249,-0.05444527376390157 +158790,793.950000005725,-0.05444519759069021 +158791,793.9550000057251,-0.05444512141370895 +158792,793.9600000057252,-0.05444504523295727 +158793,793.9650000057253,-0.05444496904843466 +158794,793.9700000057254,-0.05444489286014061 +158795,793.9750000057255,-0.05444481666807462 +158796,793.9800000057256,-0.054444740472236165 +158797,793.9850000057257,-0.05444466427262474 +158798,793.9900000057258,-0.05444458806923982 +158799,793.995000005726,-0.05444451186208089 +158800,794.0000000057261,-0.05444443565114746 +158801,794.0050000057262,-0.054444359436439 +158802,794.0100000057263,-0.05444428321795502 +158803,794.0150000057264,-0.05444420699569499 +158804,794.0200000057265,-0.054444130769658386 +158805,794.0250000057266,-0.054444054539844716 +158806,794.0300000057267,-0.05444397830625346 +158807,794.0350000057268,-0.0544439020688841 +158808,794.0400000057269,-0.05444382582773614 +158809,794.045000005727,-0.05444374958280904 +158810,794.0500000057272,-0.0544436733341023 +158811,794.0550000057273,-0.05444359708161541 +158812,794.0600000057274,-0.05444352082534786 +158813,794.0650000057275,-0.054443444565299134 +158814,794.0700000057276,-0.054443368301468696 +158815,794.0750000057277,-0.054443292033856054 +158816,794.0800000057278,-0.054443215762460695 +158817,794.0850000057279,-0.0544431394872821 +158818,794.090000005728,-0.05444306320831974 +158819,794.0950000057281,-0.054442986925573124 +158820,794.1000000057282,-0.05444291063904171 +158821,794.1050000057284,-0.05444283434872502 +158822,794.1100000057285,-0.0544427580546225 +158823,794.1150000057286,-0.05444268175673366 +158824,794.1200000057287,-0.054442605455057975 +158825,794.1250000057288,-0.05444252914959493 +158826,794.1300000057289,-0.05444245284034402 +158827,794.135000005729,-0.0544423765273047 +158828,794.1400000057291,-0.05444230021047649 +158829,794.1450000057292,-0.05444222388985885 +158830,794.1500000057293,-0.054442147565451265 +158831,794.1550000057294,-0.05444207123725323 +158832,794.1600000057296,-0.054441994905264225 +158833,794.1650000057297,-0.054441918569483716 +158834,794.1700000057298,-0.05444184222991122 +158835,794.1750000057299,-0.054441765886546194 +158836,794.18000000573,-0.054441689539388126 +158837,794.1850000057301,-0.054441613188436495 +158838,794.1900000057302,-0.05444153683369079 +158839,794.1950000057303,-0.05444146047515049 +158840,794.2000000057304,-0.054441384112815086 +158841,794.2050000057305,-0.05444130774668405 +158842,794.2100000057306,-0.05444123137675686 +158843,794.2150000057308,-0.054441155003033016 +158844,794.2200000057309,-0.05444107862551199 +158845,794.225000005731,-0.05444100224419326 +158846,794.2300000057311,-0.05444092585907632 +158847,794.2350000057312,-0.05444084947016063 +158848,794.2400000057313,-0.05444077307744569 +158849,794.2450000057314,-0.05444069668093097 +158850,794.2500000057315,-0.05444062028061596 +158851,794.2550000057316,-0.05444054387650013 +158852,794.2600000057317,-0.05444046746858297 +158853,794.2650000057318,-0.05444039105686395 +158854,794.270000005732,-0.05444031464134255 +158855,794.2750000057321,-0.05444023822201827 +158856,794.2800000057322,-0.05444016179889057 +158857,794.2850000057323,-0.05444008537195894 +158858,794.2900000057324,-0.054440008941222855 +158859,794.2950000057325,-0.0544399325066818 +158860,794.3000000057326,-0.05443985606833525 +158861,794.3050000057327,-0.05443977962618268 +158862,794.3100000057328,-0.05443970318022358 +158863,794.3150000057329,-0.05443962673045742 +158864,794.320000005733,-0.05443955027688368 +158865,794.3250000057332,-0.054439473819501843 +158866,794.3300000057333,-0.05443939735831138 +158867,794.3350000057334,-0.05443932089331177 +158868,794.3400000057335,-0.05443924442450251 +158869,794.3450000057336,-0.05443916795188305 +158870,794.3500000057337,-0.0544390914754529 +158871,794.3550000057338,-0.05443901499521151 +158872,794.3600000057339,-0.05443893851115837 +158873,794.365000005734,-0.054438862023292955 +158874,794.3700000057341,-0.05443878553161474 +158875,794.3750000057343,-0.05443870903612322 +158876,794.3800000057344,-0.054438632536817834 +158877,794.3850000057345,-0.05443855603369809 +158878,794.3900000057346,-0.05443847952676346 +158879,794.3950000057347,-0.05443840301601342 +158880,794.4000000057348,-0.05443832650144745 +158881,794.4050000057349,-0.05443824998306502 +158882,794.410000005735,-0.0544381734608656 +158883,794.4150000057351,-0.054438096934848676 +158884,794.4200000057352,-0.05443802040501372 +158885,794.4250000057353,-0.05443794387136021 +158886,794.4300000057355,-0.05443786733388763 +158887,794.4350000057356,-0.05443779079259544 +158888,794.4400000057357,-0.054437714247483115 +158889,794.4450000057358,-0.05443763769855015 +158890,794.4500000057359,-0.05443756114579601 +158891,794.455000005736,-0.05443748458922016 +158892,794.4600000057361,-0.05443740802882209 +158893,794.4650000057362,-0.05443733146460127 +158894,794.4700000057363,-0.054437254896557166 +158895,794.4750000057364,-0.05443717832468926 +158896,794.4800000057365,-0.054437101748997026 +158897,794.4850000057367,-0.05443702516947994 +158898,794.4900000057368,-0.05443694858613748 +158899,794.4950000057369,-0.0544368719989691 +158900,794.500000005737,-0.05443679540797429 +158901,794.5050000057371,-0.054436718813152526 +158902,794.5100000057372,-0.05443664221450327 +158903,794.5150000057373,-0.054436565612026006 +158904,794.5200000057374,-0.05443648900572021 +158905,794.5250000057375,-0.05443641239558534 +158906,794.5300000057376,-0.05443633578162087 +158907,794.5350000057377,-0.054436259163826294 +158908,794.5400000057379,-0.05443618254220107 +158909,794.545000005738,-0.054436105916744665 +158910,794.5500000057381,-0.05443602928745655 +158911,794.5550000057382,-0.054435952654336206 +158912,794.5600000057383,-0.05443587601738311 +158913,794.5650000057384,-0.05443579937659672 +158914,794.5700000057385,-0.05443572273197653 +158915,794.5750000057386,-0.05443564608352199 +158916,794.5800000057387,-0.05443556943123257 +158917,794.5850000057388,-0.05443549277510775 +158918,794.590000005739,-0.05443541611514701 +158919,794.595000005739,-0.054435339451349804 +158920,794.6000000057392,-0.05443526278371562 +158921,794.6050000057393,-0.05443518611224391 +158922,794.6100000057394,-0.05443510943693416 +158923,794.6150000057395,-0.05443503275778582 +158924,794.6200000057396,-0.05443495607479838 +158925,794.6250000057397,-0.054434879387971306 +158926,794.6300000057398,-0.05443480269730408 +158927,794.6350000057399,-0.054434726002796155 +158928,794.64000000574,-0.05443464930444699 +158929,794.6450000057401,-0.054434572602256086 +158930,794.6500000057403,-0.05443449589622289 +158931,794.6550000057404,-0.05443441918634687 +158932,794.6600000057405,-0.05443434247262751 +158933,794.6650000057406,-0.054434265755064264 +158934,794.6700000057407,-0.054434189033656606 +158935,794.6750000057408,-0.05443411230840401 +158936,794.6800000057409,-0.05443403557930594 +158937,794.685000005741,-0.054433958846361874 +158938,794.6900000057411,-0.05443388210957127 +158939,794.6950000057412,-0.05443380536893361 +158940,794.7000000057413,-0.054433728624448334 +158941,794.7050000057415,-0.05443365187611494 +158942,794.7100000057416,-0.05443357512393287 +158943,794.7150000057417,-0.05443349836790161 +158944,794.7200000057418,-0.05443342160802061 +158945,794.7250000057419,-0.054433344844289355 +158946,794.730000005742,-0.05443326807670729 +158947,794.7350000057421,-0.05443319130527391 +158948,794.7400000057422,-0.054433114529988676 +158949,794.7450000057423,-0.054433037750851045 +158950,794.7500000057424,-0.05443296096786048 +158951,794.7550000057425,-0.05443288418101646 +158952,794.7600000057427,-0.054432807390318444 +158953,794.7650000057428,-0.054432730595765894 +158954,794.7700000057429,-0.05443265379735829 +158955,794.775000005743,-0.05443257699509508 +158956,794.7800000057431,-0.05443250018897574 +158957,794.7850000057432,-0.05443242337899973 +158958,794.7900000057433,-0.054432346565166524 +158959,794.7950000057434,-0.05443226974747559 +158960,794.8000000057435,-0.054432192925926375 +158961,794.8050000057436,-0.05443211610051836 +158962,794.8100000057437,-0.054432039271251 +158963,794.8150000057439,-0.05443196243812376 +158964,794.820000005744,-0.05443188560113612 +158965,794.8250000057441,-0.054431808760287526 +158966,794.8300000057442,-0.05443173191557746 +158967,794.8350000057443,-0.05443165506700537 +158968,794.8400000057444,-0.054431578214570724 +158969,794.8450000057445,-0.05443150135827298 +158970,794.8500000057446,-0.05443142449811163 +158971,794.8550000057447,-0.054431347634086094 +158972,794.8600000057448,-0.05443127076619587 +158973,794.865000005745,-0.0544311938944404 +158974,794.870000005745,-0.05443111701881917 +158975,794.8750000057452,-0.054431040139331616 +158976,794.8800000057453,-0.05443096325597722 +158977,794.8850000057454,-0.05443088636875544 +158978,794.8900000057455,-0.05443080947766574 +158979,794.8950000057456,-0.054430732582707565 +158980,794.9000000057457,-0.054430655683880405 +158981,794.9050000057458,-0.0544305787811837 +158982,794.9100000057459,-0.05443050187461693 +158983,794.915000005746,-0.05443042496417954 +158984,794.9200000057461,-0.054430348049871 +158985,794.9250000057463,-0.05443027113169077 +158986,794.9300000057464,-0.054430194209638315 +158987,794.9350000057465,-0.05443011728371309 +158988,794.9400000057466,-0.05443004035391455 +158989,794.9450000057467,-0.05442996342024217 +158990,794.9500000057468,-0.05442988648269541 +158991,794.9550000057469,-0.054429809541273716 +158992,794.960000005747,-0.05442973259597656 +158993,794.9650000057471,-0.054429655646803396 +158994,794.9700000057472,-0.0544295786937537 +158995,794.9750000057473,-0.05442950173682691 +158996,794.9800000057475,-0.0544294247760225 +158997,794.9850000057476,-0.05442934781133992 +158998,794.9900000057477,-0.05442927084277865 +158999,794.9950000057478,-0.05442919387033813 +159000,795.0000000057479,-0.054429116894017825 +159001,795.005000005748,-0.054429039913817194 +159002,795.0100000057481,-0.05442896292973569 +159003,795.0150000057482,-0.054428885941772774 +159004,795.0200000057483,-0.054428808949927916 +159005,795.0250000057484,-0.05442873195420056 +159006,795.0300000057485,-0.05442865495459017 +159007,795.0350000057487,-0.0544285779510962 +159008,795.0400000057488,-0.05442850094371812 +159009,795.0450000057489,-0.05442842393245537 +159010,795.050000005749,-0.05442834691730744 +159011,795.0550000057491,-0.054428269898273755 +159012,795.0600000057492,-0.05442819287535379 +159013,795.0650000057493,-0.05442811584854698 +159014,795.0700000057494,-0.05442803881785281 +159015,795.0750000057495,-0.054427961783270716 +159016,795.0800000057496,-0.05442788474480017 +159017,795.0850000057497,-0.05442780770244062 +159018,795.0900000057499,-0.05442773065619153 +159019,795.09500000575,-0.05442765360605235 +159020,795.1000000057501,-0.05442757655202253 +159021,795.1050000057502,-0.05442749949410154 +159022,795.1100000057503,-0.054427422432288826 +159023,795.1150000057504,-0.05442734536658385 +159024,795.1200000057505,-0.054427268296986075 +159025,795.1250000057506,-0.05442719122349493 +159026,795.1300000057507,-0.0544271141461099 +159027,795.1350000057508,-0.054427037064830416 +159028,795.140000005751,-0.05442695997965595 +159029,795.1450000057511,-0.05442688289058595 +159030,795.1500000057512,-0.05442680579761987 +159031,795.1550000057513,-0.05442672870075717 +159032,795.1600000057514,-0.0544266515999973 +159033,795.1650000057515,-0.054426574495339726 +159034,795.1700000057516,-0.05442649738678388 +159035,795.1750000057517,-0.054426420274329236 +159036,795.1800000057518,-0.05442634315797524 +159037,795.1850000057519,-0.05442626603772135 +159038,795.190000005752,-0.05442618891356701 +159039,795.1950000057521,-0.05442611178551167 +159040,795.2000000057523,-0.05442603465355479 +159041,795.2050000057524,-0.054425957517695835 +159042,795.2100000057525,-0.05442588037793425 +159043,795.2150000057526,-0.05442580323426948 +159044,795.2200000057527,-0.054425726086700994 +159045,795.2250000057528,-0.05442564893522823 +159046,795.2300000057529,-0.05442557177985064 +159047,795.235000005753,-0.05442549462056769 +159048,795.2400000057531,-0.05442541745737881 +159049,795.2450000057532,-0.054425340290283473 +159050,795.2500000057533,-0.05442526311928113 +159051,795.2550000057535,-0.05442518594437121 +159052,795.2600000057536,-0.05442510876555319 +159053,795.2650000057537,-0.05442503158282651 +159054,795.2700000057538,-0.05442495439619061 +159055,795.2750000057539,-0.05442487720564498 +159056,795.280000005754,-0.054424800011189024 +159057,795.2850000057541,-0.05442472281282223 +159058,795.2900000057542,-0.05442464561054402 +159059,795.2950000057543,-0.05442456840435386 +159060,795.3000000057544,-0.054424491194251204 +159061,795.3050000057546,-0.05442441398023549 +159062,795.3100000057547,-0.054424336762306166 +159063,795.3150000057548,-0.0544242595404627 +159064,795.3200000057549,-0.05442418231470453 +159065,795.325000005755,-0.05442410508503109 +159066,795.3300000057551,-0.05442402785144185 +159067,795.3350000057552,-0.054423950613936255 +159068,795.3400000057553,-0.054423873372513754 +159069,795.3450000057554,-0.0544237961271738 +159070,795.3500000057555,-0.05442371887791583 +159071,795.3550000057556,-0.054423641624739304 +159072,795.3600000057558,-0.054423564367643666 +159073,795.3650000057559,-0.05442348710662837 +159074,795.370000005756,-0.05442340984169286 +159075,795.3750000057561,-0.05442333257283659 +159076,795.3800000057562,-0.05442325530005898 +159077,795.3850000057563,-0.05442317802335951 +159078,795.3900000057564,-0.054423100742737616 +159079,795.3950000057565,-0.05442302345819275 +159080,795.4000000057566,-0.05442294616972434 +159081,795.4050000057567,-0.054422868877331866 +159082,795.4100000057568,-0.05442279158101475 +159083,795.415000005757,-0.05442271428077246 +159084,795.4200000057571,-0.05442263697660441 +159085,795.4250000057572,-0.054422559668510076 +159086,795.4300000057573,-0.05442248235648889 +159087,795.4350000057574,-0.0544224050405403 +159088,795.4400000057575,-0.05442232772066376 +159089,795.4450000057576,-0.054422250396858704 +159090,795.4500000057577,-0.054422173069124585 +159091,795.4550000057578,-0.05442209573746085 +159092,795.4600000057579,-0.05442201840186694 +159093,795.465000005758,-0.0544219410623423 +159094,795.4700000057582,-0.05442186371888639 +159095,795.4750000057583,-0.05442178637149863 +159096,795.4800000057584,-0.05442170902017848 +159097,795.4850000057585,-0.054421631664925384 +159098,795.4900000057586,-0.05442155430573878 +159099,795.4950000057587,-0.05442147694261811 +159100,795.5000000057588,-0.05442139957556284 +159101,795.5050000057589,-0.054421322204572395 +159102,795.510000005759,-0.05442124482964621 +159103,795.5150000057591,-0.05442116745078376 +159104,795.5200000057592,-0.054421090067984464 +159105,795.5250000057594,-0.05442101268124778 +159106,795.5300000057595,-0.054420935290573125 +159107,795.5350000057596,-0.05442085789595997 +159108,795.5400000057597,-0.05442078049740775 +159109,795.5450000057598,-0.05442070309491591 +159110,795.5500000057599,-0.05442062568848388 +159111,795.55500000576,-0.05442054827811113 +159112,795.5600000057601,-0.05442047086379707 +159113,795.5650000057602,-0.05442039344554115 +159114,795.5700000057603,-0.05442031602334284 +159115,795.5750000057604,-0.05442023859720155 +159116,795.5800000057606,-0.05442016116711673 +159117,795.5850000057607,-0.05442008373308782 +159118,795.5900000057608,-0.05442000629511428 +159119,795.5950000057609,-0.05441992885319553 +159120,795.600000005761,-0.05441985140733102 +159121,795.6050000057611,-0.05441977395752019 +159122,795.6100000057612,-0.05441969650376248 +159123,795.6150000057613,-0.054419619046057334 +159124,795.6200000057614,-0.05441954158440419 +159125,795.6250000057615,-0.05441946411880248 +159126,795.6300000057616,-0.05441938664925165 +159127,795.6350000057618,-0.054419309175751156 +159128,795.6400000057619,-0.05441923169830041 +159129,795.645000005762,-0.05441915421689888 +159130,795.6500000057621,-0.05441907673154599 +159131,795.6550000057622,-0.054418999242241174 +159132,795.6600000057623,-0.05441892174898388 +159133,795.6650000057624,-0.05441884425177355 +159134,795.6700000057625,-0.05441876675060962 +159135,795.6750000057626,-0.05441868924549152 +159136,795.6800000057627,-0.054418611736418696 +159137,795.6850000057628,-0.054418534223390595 +159138,795.690000005763,-0.054418456706406645 +159139,795.6950000057631,-0.05441837918546629 +159140,795.7000000057632,-0.05441830166056897 +159141,795.7050000057633,-0.05441822413171411 +159142,795.7100000057634,-0.05441814659890116 +159143,795.7150000057635,-0.05441806906212955 +159144,795.7200000057636,-0.05441799152139872 +159145,795.7250000057637,-0.05441791397670811 +159146,795.7300000057638,-0.054417836428057156 +159147,795.7350000057639,-0.0544177588754453 +159148,795.740000005764,-0.05441768131887197 +159149,795.7450000057642,-0.05441760375833661 +159150,795.7500000057643,-0.054417526193838654 +159151,795.7550000057644,-0.054417448625377535 +159152,795.7600000057645,-0.05441737105295269 +159153,795.7650000057646,-0.05441729347656356 +159154,795.7700000057647,-0.05441721589620957 +159155,795.7750000057648,-0.05441713831189017 +159156,795.7800000057649,-0.05441706072360479 +159157,795.785000005765,-0.05441698313135287 +159158,795.7900000057651,-0.054416905535133835 +159159,795.7950000057652,-0.05441682793494712 +159160,795.8000000057654,-0.05441675033079217 +159161,795.8050000057655,-0.054416672722668424 +159162,795.8100000057656,-0.054416595110575304 +159163,795.8150000057657,-0.05441651749451225 +159164,795.8200000057658,-0.05441643987447869 +159165,795.8250000057659,-0.054416362250474054 +159166,795.830000005766,-0.0544162846224978 +159167,795.8350000057661,-0.054416206990549346 +159168,795.8400000057662,-0.054416129354628126 +159169,795.8450000057663,-0.05441605171473357 +159170,795.8500000057664,-0.05441597407086512 +159171,795.8550000057666,-0.054415896423022206 +159172,795.8600000057667,-0.05441581877120426 +159173,795.8650000057668,-0.05441574111541071 +159174,795.8700000057669,-0.054415663455641014 +159175,795.875000005767,-0.05441558579189457 +159176,795.8800000057671,-0.05441550812417083 +159177,795.8850000057672,-0.05441543045246922 +159178,795.8900000057673,-0.05441535277678918 +159179,795.8950000057674,-0.054415275097130136 +159180,795.9000000057675,-0.05441519741349151 +159181,795.9050000057676,-0.054415119725872756 +159182,795.9100000057678,-0.054415042034273296 +159183,795.9150000057679,-0.054414964338692556 +159184,795.920000005768,-0.054414886639129974 +159185,795.9250000057681,-0.05441480893558497 +159186,795.9300000057682,-0.054414731228057 +159187,795.9350000057683,-0.05441465351654546 +159188,795.9400000057684,-0.05441457580104981 +159189,795.9450000057685,-0.054414498081569465 +159190,795.9500000057686,-0.05441442035810386 +159191,795.9550000057687,-0.05441434263065243 +159192,795.9600000057688,-0.0544142648992146 +159193,795.965000005769,-0.05441418716378979 +159194,795.9700000057691,-0.054414109424377445 +159195,795.9750000057692,-0.05441403168097699 +159196,795.9800000057693,-0.05441395393358785 +159197,795.9850000057694,-0.05441387618220946 +159198,795.9900000057695,-0.054413798426841256 +159199,795.9950000057696,-0.05441372066748265 +159200,796.0000000057697,-0.054413642904133086 +159201,796.0050000057698,-0.05441356513679198 +159202,796.0100000057699,-0.054413487365458764 +159203,796.01500000577,-0.054413409590132876 +159204,796.0200000057702,-0.05441333181081373 +159205,796.0250000057703,-0.05441325402750076 +159206,796.0300000057704,-0.054413176240193394 +159207,796.0350000057705,-0.05441309844889106 +159208,796.0400000057706,-0.05441302065359319 +159209,796.0450000057707,-0.05441294285429921 +159210,796.0500000057708,-0.05441286505100854 +159211,796.0550000057709,-0.05441278724372062 +159212,796.060000005771,-0.054412709432434855 +159213,796.0650000057711,-0.05441263161715068 +159214,796.0700000057712,-0.05441255379786753 +159215,796.0750000057714,-0.05441247597458484 +159216,796.0800000057715,-0.05441239814730201 +159217,796.0850000057716,-0.054412320316018496 +159218,796.0900000057717,-0.054412242480733695 +159219,796.0950000057718,-0.05441216464144705 +159220,796.1000000057719,-0.05441208679815799 +159221,796.105000005772,-0.054412008950865925 +159222,796.1100000057721,-0.0544119310995703 +159223,796.1150000057722,-0.05441185324427052 +159224,796.1200000057723,-0.05441177538496602 +159225,796.1250000057724,-0.05441169752165622 +159226,796.1300000057726,-0.054411619654340555 +159227,796.1350000057727,-0.05441154178301845 +159228,796.1400000057728,-0.05441146390768931 +159229,796.1450000057729,-0.05441138602835258 +159230,796.150000005773,-0.054411308145007685 +159231,796.1550000057731,-0.05441123025765403 +159232,796.1600000057732,-0.05441115236629105 +159233,796.1650000057733,-0.05441107447091817 +159234,796.1700000057734,-0.054410996571534795 +159235,796.1750000057735,-0.05441091866814037 +159236,796.1800000057736,-0.05441084076073432 +159237,796.1850000057738,-0.054410762849316056 +159238,796.1900000057739,-0.05441068493388501 +159239,796.195000005774,-0.0544106070144406 +159240,796.2000000057741,-0.05441052909098224 +159241,796.2050000057742,-0.054410451163509364 +159242,796.2100000057743,-0.054410373232021386 +159243,796.2150000057744,-0.05441029529651773 +159244,796.2200000057745,-0.05441021735699784 +159245,796.2250000057746,-0.054410139413461095 +159246,796.2300000057747,-0.05441006146590695 +159247,796.2350000057749,-0.05440998351433481 +159248,796.240000005775,-0.054409905558744115 +159249,796.2450000057751,-0.054409827599134264 +159250,796.2500000057752,-0.054409749635504684 +159251,796.2550000057753,-0.05440967166785481 +159252,796.2600000057754,-0.05440959369618405 +159253,796.2650000057755,-0.054409515720491824 +159254,796.2700000057756,-0.05440943774077755 +159255,796.2750000057757,-0.054409359757040664 +159256,796.2800000057758,-0.05440928176928057 +159257,796.2850000057759,-0.05440920377749669 +159258,796.290000005776,-0.054409125781688446 +159259,796.2950000057762,-0.05440904778185525 +159260,796.3000000057763,-0.05440896977799653 +159261,796.3050000057764,-0.05440889177011171 +159262,796.3100000057765,-0.0544088137582002 +159263,796.3150000057766,-0.05440873574226141 +159264,796.3200000057767,-0.05440865772229479 +159265,796.3250000057768,-0.054408579698299736 +159266,796.3300000057769,-0.05440850167027565 +159267,796.335000005777,-0.054408423638221994 +159268,796.3400000057771,-0.054408345602138156 +159269,796.3450000057773,-0.054408267562023556 +159270,796.3500000057774,-0.05440818951787762 +159271,796.3550000057775,-0.054408111469699746 +159272,796.3600000057776,-0.05440803341748938 +159273,796.3650000057777,-0.05440795536124591 +159274,796.3700000057778,-0.05440787730096878 +159275,796.3750000057779,-0.05440779923665738 +159276,796.380000005778,-0.054407721168311156 +159277,796.3850000057781,-0.0544076430959295 +159278,796.3900000057782,-0.05440756501951185 +159279,796.3950000057783,-0.05440748693905761 +159280,796.4000000057785,-0.054407408854566186 +159281,796.4050000057786,-0.05440733076603702 +159282,796.4100000057787,-0.0544072526734695 +159283,796.4150000057788,-0.05440717457686306 +159284,796.4200000057789,-0.05440709647621711 +159285,796.425000005779,-0.054407018371531064 +159286,796.4300000057791,-0.05440694026280434 +159287,796.4350000057792,-0.054406862150036345 +159288,796.4400000057793,-0.05440678403322652 +159289,796.4450000057794,-0.05440670591237424 +159290,796.4500000057795,-0.05440662778747894 +159291,796.4550000057797,-0.05440654965854005 +159292,796.4600000057798,-0.05440647152555696 +159293,796.4650000057799,-0.05440639338852908 +159294,796.47000000578,-0.05440631524745585 +159295,796.4750000057801,-0.05440623710233666 +159296,796.4800000057802,-0.054406158953170934 +159297,796.4850000057803,-0.05440608079995809 +159298,796.4900000057804,-0.05440600264269753 +159299,796.4950000057805,-0.05440592448138868 +159300,796.5000000057806,-0.054405846316030945 +159301,796.5050000057807,-0.05440576814662373 +159302,796.5100000057809,-0.054405689973166464 +159303,796.515000005781,-0.054405611795658546 +159304,796.5200000057811,-0.05440553361409938 +159305,796.5250000057812,-0.05440545542848841 +159306,796.5300000057813,-0.05440537723882503 +159307,796.5350000057814,-0.054405299045108636 +159308,796.5400000057815,-0.054405220847338655 +159309,796.5450000057816,-0.054405142645514507 +159310,796.5500000057817,-0.05440506443963558 +159311,796.5550000057818,-0.05440498622970131 +159312,796.560000005782,-0.0544049080157111 +159313,796.565000005782,-0.05440482979766437 +159314,796.5700000057822,-0.054404751575560496 +159315,796.5750000057823,-0.05440467334939892 +159316,796.5800000057824,-0.054404595119179035 +159317,796.5850000057825,-0.054404516884900264 +159318,796.5900000057826,-0.05440443864656201 +159319,796.5950000057827,-0.0544043604041637 +159320,796.6000000057828,-0.054404282157704716 +159321,796.6050000057829,-0.054404203907184485 +159322,796.610000005783,-0.05440412565260241 +159323,796.6150000057831,-0.0544040473939579 +159324,796.6200000057833,-0.05440396913125036 +159325,796.6250000057834,-0.05440389086447921 +159326,796.6300000057835,-0.05440381259364385 +159327,796.6350000057836,-0.0544037343187437 +159328,796.6400000057837,-0.054403656039778155 +159329,796.6450000057838,-0.05440357775674663 +159330,796.6500000057839,-0.05440349946964852 +159331,796.655000005784,-0.054403421178483256 +159332,796.6600000057841,-0.05440334288325023 +159333,796.6650000057842,-0.054403264583948854 +159334,796.6700000057843,-0.05440318628057854 +159335,796.6750000057845,-0.05440310797313869 +159336,796.6800000057846,-0.05440302966162871 +159337,796.6850000057847,-0.054402951346048 +159338,796.6900000057848,-0.05440287302639598 +159339,796.6950000057849,-0.05440279470267204 +159340,796.700000005785,-0.05440271637487561 +159341,796.7050000057851,-0.05440263804300608 +159342,796.7100000057852,-0.05440255970706285 +159343,796.7150000057853,-0.05440248136704534 +159344,796.7200000057854,-0.054402403022952954 +159345,796.7250000057855,-0.05440232467478509 +159346,796.7300000057857,-0.05440224632254116 +159347,796.7350000057858,-0.05440216796622056 +159348,796.7400000057859,-0.05440208960582271 +159349,796.745000005786,-0.054402011241347 +159350,796.7500000057861,-0.054401932872792845 +159351,796.7550000057862,-0.05440185450015964 +159352,796.7600000057863,-0.05440177612344681 +159353,796.7650000057864,-0.054401697742653736 +159354,796.7700000057865,-0.05440161935777984 +159355,796.7750000057866,-0.054401540968824505 +159356,796.7800000057867,-0.05440146257578715 +159357,796.7850000057869,-0.054401384178667175 +159358,796.790000005787,-0.05440130577746398 +159359,796.7950000057871,-0.05440122737217698 +159360,796.8000000057872,-0.05440114896280557 +159361,796.8050000057873,-0.054401070549349145 +159362,796.8100000057874,-0.054400992131807116 +159363,796.8150000057875,-0.05440091371017888 +159364,796.8200000057876,-0.05440083528446386 +159365,796.8250000057877,-0.054400756854661426 +159366,796.8300000057878,-0.054400678420771 +159367,796.835000005788,-0.05440059998279199 +159368,796.840000005788,-0.054400521540723785 +159369,796.8450000057882,-0.054400443094565785 +159370,796.8500000057883,-0.054400364644317405 +159371,796.8550000057884,-0.05440028618997803 +159372,796.8600000057885,-0.05440020773154707 +159373,796.8650000057886,-0.05440012926902392 +159374,796.8700000057887,-0.05440005080240799 +159375,796.8750000057888,-0.05439997233169868 +159376,796.8800000057889,-0.05439989385689538 +159377,796.885000005789,-0.0543998153779975 +159378,796.8900000057891,-0.054399736895004436 +159379,796.8950000057893,-0.054399658407915594 +159380,796.9000000057894,-0.05439957991673036 +159381,796.9050000057895,-0.05439950142144815 +159382,796.9100000057896,-0.054399422922068355 +159383,796.9150000057897,-0.05439934441859037 +159384,796.9200000057898,-0.0543992659110136 +159385,796.9250000057899,-0.05439918739933744 +159386,796.93000000579,-0.05439910888356128 +159387,796.9350000057901,-0.05439903036368455 +159388,796.9400000057902,-0.05439895183970661 +159389,796.9450000057903,-0.054398873311626884 +159390,796.9500000057905,-0.05439879477944477 +159391,796.9550000057906,-0.05439871624315966 +159392,796.9600000057907,-0.054398637702770945 +159393,796.9650000057908,-0.054398559158278036 +159394,796.9700000057909,-0.05439848060968032 +159395,796.975000005791,-0.05439840205697719 +159396,796.9800000057911,-0.054398323500168065 +159397,796.9850000057912,-0.054398244939252306 +159398,796.9900000057913,-0.05439816637422935 +159399,796.9950000057914,-0.054398087805098555 +159400,797.0000000057915,-0.05439800923185935 +159401,797.0050000057917,-0.054397930654511116 +159402,797.0100000057918,-0.05439785207305325 +159403,797.0150000057919,-0.05439777348748514 +159404,797.020000005792,-0.05439769489780621 +159405,797.0250000057921,-0.05439761630401583 +159406,797.0300000057922,-0.0543975377061134 +159407,797.0350000057923,-0.054397459104098315 +159408,797.0400000057924,-0.05439738049796998 +159409,797.0450000057925,-0.05439730188772777 +159410,797.0500000057926,-0.054397223273371084 +159411,797.0550000057927,-0.05439714465489934 +159412,797.0600000057929,-0.05439706603231191 +159413,797.065000005793,-0.0543969874056082 +159414,797.0700000057931,-0.0543969087747876 +159415,797.0750000057932,-0.0543968301398495 +159416,797.0800000057933,-0.0543967515007933 +159417,797.0850000057934,-0.054396672857618386 +159418,797.0900000057935,-0.05439659421032415 +159419,797.0950000057936,-0.054396515558909994 +159420,797.1000000057937,-0.05439643690337532 +159421,797.1050000057938,-0.05439635824371951 +159422,797.110000005794,-0.05439627957994195 +159423,797.1150000057941,-0.05439620091204204 +159424,797.1200000057942,-0.05439612224001917 +159425,797.1250000057943,-0.054396043563872724 +159426,797.1300000057944,-0.054395964883602106 +159427,797.1350000057945,-0.05439588619920672 +159428,797.1400000057946,-0.05439580751068593 +159429,797.1450000057947,-0.05439572881803915 +159430,797.1500000057948,-0.054395650121265744 +159431,797.1550000057949,-0.05439557142036513 +159432,797.160000005795,-0.05439549271533669 +159433,797.1650000057952,-0.054395414006179824 +159434,797.1700000057953,-0.05439533529289391 +159435,797.1750000057954,-0.05439525657547833 +159436,797.1800000057955,-0.0543951778539325 +159437,797.1850000057956,-0.05439509912825578 +159438,797.1900000057957,-0.05439502039844758 +159439,797.1950000057958,-0.0543949416645073 +159440,797.2000000057959,-0.05439486292643431 +159441,797.205000005796,-0.054394784184228016 +159442,797.2100000057961,-0.0543947054378878 +159443,797.2150000057962,-0.05439462668741304 +159444,797.2200000057964,-0.054394547932803135 +159445,797.2250000057965,-0.054394469174057464 +159446,797.2300000057966,-0.05439439041117542 +159447,797.2350000057967,-0.0543943116441564 +159448,797.2400000057968,-0.0543942328729998 +159449,797.2450000057969,-0.05439415409770498 +159450,797.250000005797,-0.05439407531827136 +159451,797.2550000057971,-0.054393996534698306 +159452,797.2600000057972,-0.05439391774698521 +159453,797.2650000057973,-0.054393838955131474 +159454,797.2700000057974,-0.05439376015913646 +159455,797.2750000057976,-0.05439368135899957 +159456,797.2800000057977,-0.05439360255472019 +159457,797.2850000057978,-0.0543935237462977 +159458,797.2900000057979,-0.0543934449337315 +159459,797.295000005798,-0.054393366117020975 +159460,797.3000000057981,-0.0543932872961655 +159461,797.3050000057982,-0.05439320847116446 +159462,797.3100000057983,-0.05439312964201724 +159463,797.3150000057984,-0.054393050808723246 +159464,797.3200000057985,-0.05439297197128185 +159465,797.3250000057986,-0.05439289312969244 +159466,797.3300000057988,-0.05439281428395439 +159467,797.3350000057989,-0.054392735434067106 +159468,797.340000005799,-0.05439265658002995 +159469,797.3450000057991,-0.05439257772184233 +159470,797.3500000057992,-0.05439249885950362 +159471,797.3550000057993,-0.05439241999301319 +159472,797.3600000057994,-0.05439234112237044 +159473,797.3650000057995,-0.05439226224757475 +159474,797.3700000057996,-0.05439218336862551 +159475,797.3750000057997,-0.0543921044855221 +159476,797.3800000057998,-0.0543920255982639 +159477,797.3850000058,-0.054391946706850304 +159478,797.3900000058001,-0.05439186781128069 +159479,797.3950000058002,-0.05439178891155443 +159480,797.4000000058003,-0.05439171000767092 +159481,797.4050000058004,-0.05439163109962954 +159482,797.4100000058005,-0.05439155218742967 +159483,797.4150000058006,-0.054391473271070696 +159484,797.4200000058007,-0.05439139435055199 +159485,797.4250000058008,-0.05439131542587295 +159486,797.4300000058009,-0.05439123649703294 +159487,797.435000005801,-0.054391157564031345 +159488,797.4400000058012,-0.05439107862686757 +159489,797.4450000058013,-0.054390999685540974 +159490,797.4500000058014,-0.054390920740050946 +159491,797.4550000058015,-0.05439084179039686 +159492,797.4600000058016,-0.05439076283657811 +159493,797.4650000058017,-0.05439068387859405 +159494,797.4700000058018,-0.05439060491644409 +159495,797.4750000058019,-0.0543905259501276 +159496,797.480000005802,-0.05439044697964396 +159497,797.4850000058021,-0.05439036800499254 +159498,797.4900000058022,-0.054390289026172725 +159499,797.4950000058024,-0.0543902100431839 +159500,797.5000000058025,-0.054390131056025456 +159501,797.5050000058026,-0.05439005206469675 +159502,797.5100000058027,-0.05438997306919717 +159503,797.5150000058028,-0.054389894069526094 +159504,797.5200000058029,-0.0543898150656829 +159505,797.525000005803,-0.05438973605766697 +159506,797.5300000058031,-0.05438965704547768 +159507,797.5350000058032,-0.054389578029114406 +159508,797.5400000058033,-0.054389499008576536 +159509,797.5450000058034,-0.05438941998386345 +159510,797.5500000058036,-0.054389340954974504 +159511,797.5550000058037,-0.054389261921909085 +159512,797.5600000058038,-0.054389182884666584 +159513,797.5650000058039,-0.05438910384324636 +159514,797.570000005804,-0.05438902479764781 +159515,797.5750000058041,-0.054388945747870295 +159516,797.5800000058042,-0.054388866693913185 +159517,797.5850000058043,-0.054388787635775884 +159518,797.5900000058044,-0.05438870857345775 +159519,797.5950000058045,-0.05438862950695816 +159520,797.6000000058046,-0.054388550436276474 +159521,797.6050000058048,-0.0543884713614121 +159522,797.6100000058049,-0.054388392282364396 +159523,797.615000005805,-0.05438831319913274 +159524,797.6200000058051,-0.0543882341117165 +159525,797.6250000058052,-0.05438815502011506 +159526,797.6300000058053,-0.054388075924327796 +159527,797.6350000058054,-0.05438799682435408 +159528,797.6400000058055,-0.05438791772019329 +159529,797.6450000058056,-0.054387838611844784 +159530,797.6500000058057,-0.054387759499307964 +159531,797.6550000058058,-0.054387680382582175 +159532,797.660000005806,-0.05438760126166682 +159533,797.6650000058061,-0.05438752213656125 +159534,797.6700000058062,-0.05438744300726485 +159535,797.6750000058063,-0.05438736387377699 +159536,797.6800000058064,-0.054387284736097045 +159537,797.6850000058065,-0.054387205594224386 +159538,797.6900000058066,-0.054387126448158386 +159539,797.6950000058067,-0.05438704729789841 +159540,797.7000000058068,-0.05438696814344384 +159541,797.7050000058069,-0.05438688898479405 +159542,797.710000005807,-0.05438680982194842 +159543,797.7150000058072,-0.054386730654906304 +159544,797.7200000058073,-0.05438665148366708 +159545,797.7250000058074,-0.054386572308230116 +159546,797.7300000058075,-0.054386493128594796 +159547,797.7350000058076,-0.05438641394476048 +159548,797.7400000058077,-0.054386334756726544 +159549,797.7450000058078,-0.05438625556449234 +159550,797.7500000058079,-0.05438617636805728 +159551,797.755000005808,-0.054386097167420704 +159552,797.7600000058081,-0.054386017962581974 +159553,797.7650000058082,-0.05438593875354049 +159554,797.7700000058084,-0.0543858595402956 +159555,797.7750000058085,-0.05438578032284669 +159556,797.7800000058086,-0.054385701101193104 +159557,797.7850000058087,-0.05438562187533424 +159558,797.7900000058088,-0.05438554264526945 +159559,797.7950000058089,-0.05438546341099811 +159560,797.800000005809,-0.0543853841725196 +159561,797.8050000058091,-0.05438530492983327 +159562,797.8100000058092,-0.0543852256829385 +159563,797.8150000058093,-0.05438514643183464 +159564,797.8200000058094,-0.05438506717652109 +159565,797.8250000058096,-0.05438498791699719 +159566,797.8300000058097,-0.05438490865326233 +159567,797.8350000058098,-0.05438482938531586 +159568,797.8400000058099,-0.05438475011315715 +159569,797.84500000581,-0.054384670836785574 +159570,797.8500000058101,-0.054384591556200505 +159571,797.8550000058102,-0.05438451227140129 +159572,797.8600000058103,-0.054384432982387314 +159573,797.8650000058104,-0.054384353689157935 +159574,797.8700000058105,-0.05438427439171253 +159575,797.8750000058106,-0.05438419509005044 +159576,797.8800000058108,-0.05438411578417106 +159577,797.8850000058109,-0.05438403647407374 +159578,797.890000005811,-0.054383957159757856 +159579,797.8950000058111,-0.05438387784122277 +159580,797.9000000058112,-0.05438379851846784 +159581,797.9050000058113,-0.054383719191492444 +159582,797.9100000058114,-0.05438363986029594 +159583,797.9150000058115,-0.054383560524877694 +159584,797.9200000058116,-0.05438348118523707 +159585,797.9250000058117,-0.05438340184137343 +159586,797.9300000058118,-0.054383322493286146 +159587,797.935000005812,-0.05438324314097457 +159588,797.9400000058121,-0.05438316378443808 +159589,797.9450000058122,-0.05438308442367602 +159590,797.9500000058123,-0.05438300505868779 +159591,797.9550000058124,-0.054382925689472714 +159592,797.9600000058125,-0.054382846316030166 +159593,797.9650000058126,-0.05438276693835953 +159594,797.9700000058127,-0.05438268755646014 +159595,797.9750000058128,-0.05438260817033138 +159596,797.9800000058129,-0.05438252877997261 +159597,797.985000005813,-0.05438244938538318 +159598,797.9900000058132,-0.05438236998656247 +159599,797.9950000058133,-0.05438229058350983 +159600,798.0000000058134,-0.05438221117622462 +159601,798.0050000058135,-0.0543821317647062 +159602,798.0100000058136,-0.05438205234895395 +159603,798.0150000058137,-0.054381972928967216 +159604,798.0200000058138,-0.054381893504745364 +159605,798.0250000058139,-0.054381814076287754 +159606,798.030000005814,-0.05438173464359375 +159607,798.0350000058141,-0.0543816552066627 +159608,798.0400000058142,-0.054381575765493975 +159609,798.0450000058144,-0.05438149632008694 +159610,798.0500000058145,-0.05438141687044094 +159611,798.0550000058146,-0.054381337416555355 +159612,798.0600000058147,-0.05438125795842953 +159613,798.0650000058148,-0.05438117849606283 +159614,798.0700000058149,-0.05438109902945462 +159615,798.075000005815,-0.054381019558604235 +159616,798.0800000058151,-0.05438094008351106 +159617,798.0850000058152,-0.05438086060417446 +159618,798.0900000058153,-0.05438078112059377 +159619,798.0950000058155,-0.05438070163276835 +159620,798.1000000058156,-0.05438062214069757 +159621,798.1050000058157,-0.05438054264438078 +159622,798.1100000058158,-0.05438046314381735 +159623,798.1150000058159,-0.05438038363900664 +159624,798.120000005816,-0.05438030412994799 +159625,798.1250000058161,-0.054380224616640764 +159626,798.1300000058162,-0.054380145099084315 +159627,798.1350000058163,-0.054380065577278015 +159628,798.1400000058164,-0.05437998605122121 +159629,798.1450000058165,-0.054379906520913256 +159630,798.1500000058167,-0.054379826986353505 +159631,798.1550000058168,-0.054379747447541336 +159632,798.1600000058169,-0.054379667904476084 +159633,798.165000005817,-0.0543795883571571 +159634,798.1700000058171,-0.054379508805583766 +159635,798.1750000058172,-0.05437942924975542 +159636,798.1800000058173,-0.05437934968967142 +159637,798.1850000058174,-0.05437927012533112 +159638,798.1900000058175,-0.054379190556733875 +159639,798.1950000058176,-0.05437911098387905 +159640,798.2000000058177,-0.054379031406765976 +159641,798.2050000058179,-0.054378951825394026 +159642,798.210000005818,-0.05437887223976256 +159643,798.2150000058181,-0.054378792649870916 +159644,798.2200000058182,-0.05437871305571847 +159645,798.2250000058183,-0.054378633457304544 +159646,798.2300000058184,-0.054378553854628524 +159647,798.2350000058185,-0.05437847424768974 +159648,798.2400000058186,-0.05437839463648756 +159649,798.2450000058187,-0.05437831502102132 +159650,798.2500000058188,-0.05437823540129039 +159651,798.2550000058189,-0.054378155777294115 +159652,798.260000005819,-0.05437807614903184 +159653,798.2650000058192,-0.054377996516502936 +159654,798.2700000058193,-0.05437791687970674 +159655,798.2750000058194,-0.054377837238642625 +159656,798.2800000058195,-0.05437775759330992 +159657,798.2850000058196,-0.05437767794370799 +159658,798.2900000058197,-0.05437759828983619 +159659,798.2950000058198,-0.05437751863169385 +159660,798.3000000058199,-0.05437743896928034 +159661,798.30500000582,-0.054377359302595 +159662,798.3100000058201,-0.05437727963163718 +159663,798.3150000058203,-0.05437719995640625 +159664,798.3200000058204,-0.05437712027690154 +159665,798.3250000058205,-0.0543770405931224 +159666,798.3300000058206,-0.0543769609050682 +159667,798.3350000058207,-0.05437688121273827 +159668,798.3400000058208,-0.054376801516131966 +159669,798.3450000058209,-0.05437672181524864 +159670,798.350000005821,-0.05437664211008764 +159671,798.3550000058211,-0.05437656240064832 +159672,798.3600000058212,-0.05437648268693003 +159673,798.3650000058213,-0.05437640296893211 +159674,798.3700000058215,-0.05437632324665391 +159675,798.3750000058216,-0.05437624352009478 +159676,798.3800000058217,-0.05437616378925406 +159677,798.3850000058218,-0.054376084054131114 +159678,798.3900000058219,-0.05437600431472528 +159679,798.395000005822,-0.05437592457103591 +159680,798.4000000058221,-0.054375844823062354 +159681,798.4050000058222,-0.05437576507080394 +159682,798.4100000058223,-0.05437568531426004 +159683,798.4150000058224,-0.05437560555342999 +159684,798.4200000058225,-0.054375525788313145 +159685,798.4250000058227,-0.054375446018908834 +159686,798.4300000058228,-0.05437536624521641 +159687,798.4350000058229,-0.05437528646723523 +159688,798.440000005823,-0.05437520668496462 +159689,798.4450000058231,-0.05437512689840395 +159690,798.4500000058232,-0.05437504710755256 +159691,798.4550000058233,-0.054374967312409796 +159692,798.4600000058234,-0.05437488751297498 +159693,798.4650000058235,-0.05437480770924748 +159694,798.4700000058236,-0.05437472790122663 +159695,798.4750000058237,-0.0543746480889118 +159696,798.4800000058239,-0.0543745682723023 +159697,798.485000005824,-0.054374488451397494 +159698,798.4900000058241,-0.054374408626196725 +159699,798.4950000058242,-0.05437432879669933 +159700,798.5000000058243,-0.05437424896290466 +159701,798.5050000058244,-0.054374169124812056 +159702,798.5100000058245,-0.05437408928242086 +159703,798.5150000058246,-0.05437400943573042 +159704,798.5200000058247,-0.05437392958474007 +159705,798.5250000058248,-0.05437384972944916 +159706,798.530000005825,-0.05437376986985703 +159707,798.535000005825,-0.05437369000596303 +159708,798.5400000058252,-0.054373610137766495 +159709,798.5450000058253,-0.05437353026526675 +159710,798.5500000058254,-0.05437345038846317 +159711,798.5550000058255,-0.05437337050735508 +159712,798.5600000058256,-0.05437329062194182 +159713,798.5650000058257,-0.054373210732222746 +159714,798.5700000058258,-0.054373130838197184 +159715,798.5750000058259,-0.054373050939864484 +159716,798.580000005826,-0.05437297103722398 +159717,798.5850000058261,-0.054372891130275006 +159718,798.5900000058263,-0.05437281121901692 +159719,798.5950000058264,-0.05437273130344906 +159720,798.6000000058265,-0.05437265138357076 +159721,798.6050000058266,-0.05437257145938135 +159722,798.6100000058267,-0.05437249153088018 +159723,798.6150000058268,-0.054372411598066606 +159724,798.6200000058269,-0.05437233166093994 +159725,798.625000005827,-0.05437225171949953 +159726,798.6300000058271,-0.054372171773744725 +159727,798.6350000058272,-0.05437209182367485 +159728,798.6400000058273,-0.054372011869289257 +159729,798.6450000058275,-0.05437193191058728 +159730,798.6500000058276,-0.054371851947568245 +159731,798.6550000058277,-0.05437177198023151 +159732,798.6600000058278,-0.0543716920085764 +159733,798.6650000058279,-0.05437161203260226 +159734,798.670000005828,-0.05437153205230843 +159735,798.6750000058281,-0.054371452067694226 +159736,798.6800000058282,-0.054371372078758994 +159737,798.6850000058283,-0.05437129208550209 +159738,798.6900000058284,-0.054371212087922845 +159739,798.6950000058285,-0.05437113208602058 +159740,798.7000000058287,-0.05437105207979464 +159741,798.7050000058288,-0.054370972069244364 +159742,798.7100000058289,-0.05437089205436908 +159743,798.715000005829,-0.054370812035168144 +159744,798.7200000058291,-0.05437073201164087 +159745,798.7250000058292,-0.0543706519837866 +159746,798.7300000058293,-0.054370571951604676 +159747,798.7350000058294,-0.054370491915094424 +159748,798.7400000058295,-0.05437041187425518 +159749,798.7450000058296,-0.05437033182908629 +159750,798.7500000058297,-0.05437025177958706 +159751,798.7550000058299,-0.054370171725756866 +159752,798.76000000583,-0.05437009166759501 +159753,798.7650000058301,-0.054370011605100826 +159754,798.7700000058302,-0.05436993153827368 +159755,798.7750000058303,-0.054369851467112866 +159756,798.7800000058304,-0.05436977139161775 +159757,798.7850000058305,-0.05436969131178765 +159758,798.7900000058306,-0.05436961122762189 +159759,798.7950000058307,-0.05436953113911982 +159760,798.8000000058308,-0.054369451046280756 +159761,798.805000005831,-0.05436937094910405 +159762,798.8100000058311,-0.05436929084758903 +159763,798.8150000058312,-0.05436921074173502 +159764,798.8200000058313,-0.054369130631541356 +159765,798.8250000058314,-0.05436905051700737 +159766,798.8300000058315,-0.05436897039813239 +159767,798.8350000058316,-0.054368890274915746 +159768,798.8400000058317,-0.05436881014735677 +159769,798.8450000058318,-0.0543687300154548 +159770,798.8500000058319,-0.054368649879209176 +159771,798.855000005832,-0.0543685697386192 +159772,798.8600000058321,-0.05436848959368422 +159773,798.8650000058323,-0.05436840944440357 +159774,798.8700000058324,-0.054368329290776576 +159775,798.8750000058325,-0.05436824913280256 +159776,798.8800000058326,-0.05436816897048087 +159777,798.8850000058327,-0.054368088803810805 +159778,798.8900000058328,-0.05436800863279173 +159779,798.8950000058329,-0.05436792845742295 +159780,798.900000005833,-0.0543678482777038 +159781,798.9050000058331,-0.05436776809363362 +159782,798.9100000058332,-0.05436768790521171 +159783,798.9150000058333,-0.054367607712437434 +159784,798.9200000058335,-0.0543675275153101 +159785,798.9250000058336,-0.05436744731382903 +159786,798.9300000058337,-0.05436736710799357 +159787,798.9350000058338,-0.05436728689780304 +159788,798.9400000058339,-0.05436720668325677 +159789,798.945000005834,-0.05436712646435407 +159790,798.9500000058341,-0.054367046241094286 +159791,798.9550000058342,-0.05436696601347674 +159792,798.9600000058343,-0.05436688578150076 +159793,798.9650000058344,-0.05436680554516566 +159794,798.9700000058345,-0.054366725304470793 +159795,798.9750000058347,-0.054366645059415464 +159796,798.9800000058348,-0.054366564809999005 +159797,798.9850000058349,-0.05436648455622074 +159798,798.990000005835,-0.05436640429808 +159799,798.9950000058351,-0.0543663240355761 +159800,799.0000000058352,-0.054366243768708376 +159801,799.0050000058353,-0.05436616349747614 +159802,799.0100000058354,-0.054366083221878726 +159803,799.0150000058355,-0.05436600294191547 +159804,799.0200000058356,-0.05436592265758567 +159805,799.0250000058358,-0.05436584236888868 +159806,799.0300000058359,-0.0543657620758238 +159807,799.035000005836,-0.05436568177839037 +159808,799.0400000058361,-0.0543656014765877 +159809,799.0450000058362,-0.05436552117041512 +159810,799.0500000058363,-0.05436544085987195 +159811,799.0550000058364,-0.054365360544957525 +159812,799.0600000058365,-0.05436528022567116 +159813,799.0650000058366,-0.05436519990201217 +159814,799.0700000058367,-0.05436511957397988 +159815,799.0750000058368,-0.054365039241573626 +159816,799.080000005837,-0.05436495890479272 +159817,799.0850000058371,-0.05436487856363648 +159818,799.0900000058372,-0.05436479821810423 +159819,799.0950000058373,-0.0543647178681953 +159820,799.1000000058374,-0.054364637513909006 +159821,799.1050000058375,-0.05436455715524466 +159822,799.1100000058376,-0.054364476792201584 +159823,799.1150000058377,-0.05436439642477912 +159824,799.1200000058378,-0.05436431605297658 +159825,799.1250000058379,-0.05436423567679327 +159826,799.130000005838,-0.05436415529622853 +159827,799.1350000058382,-0.054364074911281667 +159828,799.1400000058383,-0.054363994521951994 +159829,799.1450000058384,-0.05436391412823885 +159830,799.1500000058385,-0.05436383373014154 +159831,799.1550000058386,-0.05436375332765938 +159832,799.1600000058387,-0.054363672920791715 +159833,799.1650000058388,-0.05436359250953784 +159834,799.1700000058389,-0.05436351209389707 +159835,799.175000005839,-0.05436343167386875 +159836,799.1800000058391,-0.054363351249452165 +159837,799.1850000058392,-0.05436327082064666 +159838,799.1900000058394,-0.05436319038745154 +159839,799.1950000058395,-0.05436310994986613 +159840,799.2000000058396,-0.05436302950788975 +159841,799.2050000058397,-0.054362949061521705 +159842,799.2100000058398,-0.05436286861076131 +159843,799.2150000058399,-0.054362788155607904 +159844,799.22000000584,-0.05436270769606078 +159845,799.2250000058401,-0.054362627232119265 +159846,799.2300000058402,-0.054362546763782674 +159847,799.2350000058403,-0.05436246629105033 +159848,799.2400000058404,-0.054362385813921534 +159849,799.2450000058406,-0.054362305332395625 +159850,799.2500000058407,-0.05436222484647189 +159851,799.2550000058408,-0.05436214435614966 +159852,799.2600000058409,-0.05436206386142826 +159853,799.265000005841,-0.05436198336230697 +159854,799.2700000058411,-0.054361902858785144 +159855,799.2750000058412,-0.054361822350862087 +159856,799.2800000058413,-0.0543617418385371 +159857,799.2850000058414,-0.05436166132180951 +159858,799.2900000058415,-0.05436158080067863 +159859,799.2950000058416,-0.054361500275143755 +159860,799.3000000058418,-0.05436141974520423 +159861,799.3050000058419,-0.054361339210859345 +159862,799.310000005842,-0.05436125867210842 +159863,799.3150000058421,-0.05436117812895077 +159864,799.3200000058422,-0.05436109758138571 +159865,799.3250000058423,-0.05436101702941255 +159866,799.3300000058424,-0.054360936473030606 +159867,799.3350000058425,-0.05436085591223919 +159868,799.3400000058426,-0.05436077534703761 +159869,799.3450000058427,-0.05436069477742517 +159870,799.3500000058428,-0.054360614203401186 +159871,799.355000005843,-0.05436053362496497 +159872,799.3600000058431,-0.05436045304211585 +159873,799.3650000058432,-0.054360372454853124 +159874,799.3700000058433,-0.054360291863176105 +159875,799.3750000058434,-0.054360211267084096 +159876,799.3800000058435,-0.054360130666576426 +159877,799.3850000058436,-0.05436005006165239 +159878,799.3900000058437,-0.054359969452311294 +159879,799.3950000058438,-0.05435988883855245 +159880,799.4000000058439,-0.054359808220375186 +159881,799.405000005844,-0.0543597275977788 +159882,799.4100000058442,-0.0543596469707626 +159883,799.4150000058443,-0.0543595663393259 +159884,799.4200000058444,-0.054359485703468 +159885,799.4250000058445,-0.054359405063188204 +159886,799.4300000058446,-0.054359324418485844 +159887,799.4350000058447,-0.05435924376936021 +159888,799.4400000058448,-0.054359163115810606 +159889,799.4450000058449,-0.054359082457836355 +159890,799.450000005845,-0.054359001795436755 +159891,799.4550000058451,-0.05435892112861113 +159892,799.4600000058452,-0.05435884045735877 +159893,799.4650000058454,-0.054358759781678985 +159894,799.4700000058455,-0.054358679101571085 +159895,799.4750000058456,-0.05435859841703437 +159896,799.4800000058457,-0.05435851772806816 +159897,799.4850000058458,-0.05435843703467177 +159898,799.4900000058459,-0.054358356336844466 +159899,799.495000005846,-0.0543582756345856 +159900,799.5000000058461,-0.05435819492789445 +159901,799.5050000058462,-0.054358114216770316 +159902,799.5100000058463,-0.05435803350121253 +159903,799.5150000058464,-0.054357952781220374 +159904,799.5200000058466,-0.05435787205679317 +159905,799.5250000058467,-0.05435779132793021 +159906,799.5300000058468,-0.05435771059463082 +159907,799.5350000058469,-0.054357629856894275 +159908,799.540000005847,-0.054357549114719905 +159909,799.5450000058471,-0.054357468368106995 +159910,799.5500000058472,-0.05435738761705486 +159911,799.5550000058473,-0.054357306861562794 +159912,799.5600000058474,-0.05435722610163011 +159913,799.5650000058475,-0.0543571453372561 +159914,799.5700000058476,-0.05435706456844008 +159915,799.5750000058478,-0.05435698379518135 +159916,799.5800000058479,-0.05435690301747921 +159917,799.585000005848,-0.054356822235332974 +159918,799.5900000058481,-0.05435674144874192 +159919,799.5950000058482,-0.054356660657705363 +159920,799.6000000058483,-0.054356579862222615 +159921,799.6050000058484,-0.05435649906229297 +159922,799.6100000058485,-0.05435641825791572 +159923,799.6150000058486,-0.05435633744909018 +159924,799.6200000058487,-0.05435625663581564 +159925,799.6250000058488,-0.054356175818091414 +159926,799.630000005849,-0.054356094995916794 +159927,799.6350000058491,-0.05435601416929109 +159928,799.6400000058492,-0.05435593333821359 +159929,799.6450000058493,-0.05435585250268359 +159930,799.6500000058494,-0.054355771662700406 +159931,799.6550000058495,-0.05435569081826333 +159932,799.6600000058496,-0.05435560996937166 +159933,799.6650000058497,-0.054355529116024696 +159934,799.6700000058498,-0.05435544825822174 +159935,799.6750000058499,-0.054355367395962105 +159936,799.68000000585,-0.05435528652924507 +159937,799.6850000058502,-0.054355205658069936 +159938,799.6900000058503,-0.05435512478243601 +159939,799.6950000058504,-0.054355043902342574 +159940,799.7000000058505,-0.054354963017788936 +159941,799.7050000058506,-0.054354882128774394 +159942,799.7100000058507,-0.054354801235298254 +159943,799.7150000058508,-0.05435472033735981 +159944,799.7200000058509,-0.05435463943495834 +159945,799.725000005851,-0.054354558528093164 +159946,799.7300000058511,-0.054354477616763576 +159947,799.7350000058512,-0.054354396700968866 +159948,799.7400000058514,-0.05435431578070832 +159949,799.7450000058515,-0.054354234855981245 +159950,799.7500000058516,-0.05435415392678695 +159951,799.7550000058517,-0.054354072993124704 +159952,799.7600000058518,-0.054353992054993826 +159953,799.7650000058519,-0.054353911112393606 +159954,799.770000005852,-0.05435383016532333 +159955,799.7750000058521,-0.0543537492137823 +159956,799.7800000058522,-0.0543536682577698 +159957,799.7850000058523,-0.05435358729728514 +159958,799.7900000058524,-0.05435350633232763 +159959,799.7950000058526,-0.054353425362896515 +159960,799.8000000058527,-0.054353344388991136 +159961,799.8050000058528,-0.05435326341061075 +159962,799.8100000058529,-0.05435318242775468 +159963,799.815000005853,-0.05435310144042221 +159964,799.8200000058531,-0.05435302044861263 +159965,799.8250000058532,-0.05435293945232523 +159966,799.8300000058533,-0.054352858451559315 +159967,799.8350000058534,-0.054352777446314164 +159968,799.8400000058535,-0.05435269643658907 +159969,799.8450000058536,-0.05435261542238334 +159970,799.8500000058538,-0.05435253440369626 +159971,799.8550000058539,-0.05435245338052711 +159972,799.860000005854,-0.0543523723528752 +159973,799.8650000058541,-0.05435229132073979 +159974,799.8700000058542,-0.05435221028412022 +159975,799.8750000058543,-0.05435212924301574 +159976,799.8800000058544,-0.05435204819742566 +159977,799.8850000058545,-0.05435196714734926 +159978,799.8900000058546,-0.05435188609278584 +159979,799.8950000058547,-0.05435180503373468 +159980,799.9000000058548,-0.05435172397019508 +159981,799.905000005855,-0.05435164290216632 +159982,799.9100000058551,-0.0543515618296477 +159983,799.9150000058552,-0.054351480752638494 +159984,799.9200000058553,-0.054351399671138015 +159985,799.9250000058554,-0.05435131858514554 +159986,799.9300000058555,-0.05435123749466035 +159987,799.9350000058556,-0.054351156399681744 +159988,799.9400000058557,-0.054351075300209 +159989,799.9450000058558,-0.05435099419624143 +159990,799.9500000058559,-0.0543509130877783 +159991,799.955000005856,-0.05435083197481889 +159992,799.9600000058562,-0.05435075085736252 +159993,799.9650000058563,-0.05435066973540845 +159994,799.9700000058564,-0.054350588608955974 +159995,799.9750000058565,-0.05435050747800438 +159996,799.9800000058566,-0.05435042634255295 +159997,799.9850000058567,-0.05435034520260098 +159998,799.9900000058568,-0.054350264058147746 +159999,799.9950000058569,-0.054350182909192545 +160000,800.000000005857,-0.05435010175573466 +160001,800.0050000058571,-0.054350020597773364 +160002,800.0100000058573,-0.05434993943530796 +160003,800.0150000058574,-0.05434985826833773 +160004,800.0200000058575,-0.05434977709686196 +160005,800.0250000058576,-0.054349695920879924 +160006,800.0300000058577,-0.05434961474039092 +160007,800.0350000058578,-0.05434953355539423 +160008,800.0400000058579,-0.05434945236588914 +160009,800.045000005858,-0.054349371171874925 +160010,800.0500000058581,-0.05434928997335087 +160011,800.0550000058582,-0.05434920877031625 +160012,800.0600000058583,-0.054349127562770376 +160013,800.0650000058585,-0.05434904635071251 +160014,800.0700000058586,-0.05434896513414193 +160015,800.0750000058587,-0.05434888391305795 +160016,800.0800000058588,-0.05434880268745983 +160017,800.0850000058589,-0.054348721457346844 +160018,800.090000005859,-0.05434864022271829 +160019,800.0950000058591,-0.05434855898357344 +160020,800.1000000058592,-0.05434847773991159 +160021,800.1050000058593,-0.054348396491732 +160022,800.1100000058594,-0.05434831523903398 +160023,800.1150000058595,-0.05434823398181679 +160024,800.1200000058597,-0.05434815272007973 +160025,800.1250000058598,-0.05434807145382205 +160026,800.1300000058599,-0.05434799018304305 +160027,800.13500000586,-0.054347908907742014 +160028,800.1400000058601,-0.054347827627918205 +160029,800.1450000058602,-0.05434774634357093 +160030,800.1500000058603,-0.054347665054699464 +160031,800.1550000058604,-0.054347583761303074 +160032,800.1600000058605,-0.054347502463381034 +160033,800.1650000058606,-0.05434742116093263 +160034,800.1700000058607,-0.054347339853957136 +160035,800.1750000058609,-0.05434725854245386 +160036,800.180000005861,-0.05434717722642205 +160037,800.1850000058611,-0.05434709590586098 +160038,800.1900000058612,-0.05434701458076995 +160039,800.1950000058613,-0.05434693325114823 +160040,800.2000000058614,-0.05434685191699509 +160041,800.2050000058615,-0.05434677057830983 +160042,800.2100000058616,-0.05434668923509171 +160043,800.2150000058617,-0.05434660788734 +160044,800.2200000058618,-0.054346526535054 +160045,800.225000005862,-0.05434644517823297 +160046,800.230000005862,-0.05434636381687618 +160047,800.2350000058622,-0.05434628245098293 +160048,800.2400000058623,-0.05434620108055248 +160049,800.2450000058624,-0.0543461197055841 +160050,800.2500000058625,-0.05434603832607708 +160051,800.2550000058626,-0.05434595694203068 +160052,800.2600000058627,-0.05434587555344419 +160053,800.2650000058628,-0.05434579416031689 +160054,800.2700000058629,-0.05434571276264803 +160055,800.275000005863,-0.054345631360436915 +160056,800.2800000058631,-0.05434554995368279 +160057,800.2850000058633,-0.05434546854238495 +160058,800.2900000058634,-0.05434538712654266 +160059,800.2950000058635,-0.0543453057061552 +160060,800.3000000058636,-0.05434522428122185 +160061,800.3050000058637,-0.05434514285174187 +160062,800.3100000058638,-0.05434506141771454 +160063,800.3150000058639,-0.054344979979139126 +160064,800.320000005864,-0.05434489853601491 +160065,800.3250000058641,-0.05434481708834116 +160066,800.3300000058642,-0.05434473563611715 +160067,800.3350000058643,-0.054344654179342144 +160068,800.3400000058645,-0.054344572718015426 +160069,800.3450000058646,-0.054344491252136265 +160070,800.3500000058647,-0.054344409781703934 +160071,800.3550000058648,-0.05434432830671768 +160072,800.3600000058649,-0.05434424682717682 +160073,800.365000005865,-0.05434416534308059 +160074,800.3700000058651,-0.05434408385442828 +160075,800.3750000058652,-0.05434400236121914 +160076,800.3800000058653,-0.05434392086345245 +160077,800.3850000058654,-0.054343839361127494 +160078,800.3900000058655,-0.05434375785424352 +160079,800.3950000058657,-0.05434367634279981 +160080,800.4000000058658,-0.05434359482679564 +160081,800.4050000058659,-0.054343513306230266 +160082,800.410000005866,-0.054343431781102965 +160083,800.4150000058661,-0.054343350251413 +160084,800.4200000058662,-0.054343268717159644 +160085,800.4250000058663,-0.05434318717834216 +160086,800.4300000058664,-0.05434310563495983 +160087,800.4350000058665,-0.054343024087011915 +160088,800.4400000058666,-0.05434294253449767 +160089,800.4450000058667,-0.05434286097741638 +160090,800.4500000058669,-0.05434277941576731 +160091,800.455000005867,-0.054342697849549725 +160092,800.4600000058671,-0.05434261627876288 +160093,800.4650000058672,-0.05434253470340606 +160094,800.4700000058673,-0.054342453123478525 +160095,800.4750000058674,-0.054342371538979535 +160096,800.4800000058675,-0.05434228994990836 +160097,800.4850000058676,-0.05434220835626428 +160098,800.4900000058677,-0.05434212675804655 +160099,800.4950000058678,-0.054342045155254426 +160100,800.500000005868,-0.05434196354788717 +160101,800.505000005868,-0.054341881935944074 +160102,800.5100000058682,-0.05434180031942438 +160103,800.5150000058683,-0.05434171869832737 +160104,800.5200000058684,-0.05434163707265229 +160105,800.5250000058685,-0.054341555442398416 +160106,800.5300000058686,-0.05434147380756501 +160107,800.5350000058687,-0.05434139216815133 +160108,800.5400000058688,-0.05434131052415665 +160109,800.5450000058689,-0.05434122887558023 +160110,800.550000005869,-0.05434114722242133 +160111,800.5550000058691,-0.054341065564679214 +160112,800.5600000058693,-0.054340983902353146 +160113,800.5650000058694,-0.0543409022354424 +160114,800.5700000058695,-0.05434082056394623 +160115,800.5750000058696,-0.05434073888786388 +160116,800.5800000058697,-0.05434065720719464 +160117,800.5850000058698,-0.05434057552193775 +160118,800.5900000058699,-0.054340493832092496 +160119,800.59500000587,-0.054340412137658105 +160120,800.6000000058701,-0.05434033043863387 +160121,800.6050000058702,-0.05434024873501903 +160122,800.6100000058703,-0.054340167026812866 +160123,800.6150000058705,-0.054340085314014616 +160124,800.6200000058706,-0.05434000359662356 +160125,800.6250000058707,-0.05433992187463895 +160126,800.6300000058708,-0.05433984014806005 +160127,800.6350000058709,-0.05433975841688611 +160128,800.640000005871,-0.0543396766811164 +160129,800.6450000058711,-0.05433959494075018 +160130,800.6500000058712,-0.05433951319578669 +160131,800.6550000058713,-0.054339431446225224 +160132,800.6600000058714,-0.054339349692065 +160133,800.6650000058715,-0.05433926793330531 +160134,800.6700000058717,-0.054339186169945396 +160135,800.6750000058718,-0.054339104401984514 +160136,800.6800000058719,-0.05433902262942193 +160137,800.685000005872,-0.0543389408522569 +160138,800.6900000058721,-0.05433885907048867 +160139,800.6950000058722,-0.054338777284116506 +160140,800.7000000058723,-0.05433869549313967 +160141,800.7050000058724,-0.05433861369755742 +160142,800.7100000058725,-0.05433853189736901 +160143,800.7150000058726,-0.05433845009257368 +160144,800.7200000058727,-0.05433836828317071 +160145,800.7250000058729,-0.05433828646915934 +160146,800.730000005873,-0.054338204650538825 +160147,800.7350000058731,-0.05433812282730844 +160148,800.7400000058732,-0.05433804099946742 +160149,800.7450000058733,-0.05433795916701503 +160150,800.7500000058734,-0.05433787732995052 +160151,800.7550000058735,-0.054337795488273145 +160152,800.7600000058736,-0.054337713641982165 +160153,800.7650000058737,-0.05433763179107682 +160154,800.7700000058738,-0.05433754993555638 +160155,800.775000005874,-0.054337468075420094 +160156,800.7800000058741,-0.05433738621066721 +160157,800.7850000058742,-0.05433730434129699 +160158,800.7900000058743,-0.054337222467308675 +160159,800.7950000058744,-0.05433714058870153 +160160,800.8000000058745,-0.054337058705474804 +160161,800.8050000058746,-0.05433697681762776 +160162,800.8100000058747,-0.054336894925159626 +160163,800.8150000058748,-0.05433681302806967 +160164,800.8200000058749,-0.05433673112635714 +160165,800.825000005875,-0.05433664922002129 +160166,800.8300000058751,-0.05433656730906137 +160167,800.8350000058753,-0.05433648539347664 +160168,800.8400000058754,-0.054336403473266334 +160169,800.8450000058755,-0.05433632154842971 +160170,800.8500000058756,-0.05433623961896602 +160171,800.8550000058757,-0.05433615768487452 +160172,800.8600000058758,-0.05433607574615445 +160173,800.8650000058759,-0.054335993802805065 +160174,800.870000005876,-0.054335911854825614 +160175,800.8750000058761,-0.05433582990221535 +160176,800.8800000058762,-0.05433574794497352 +160177,800.8850000058763,-0.05433566598309938 +160178,800.8900000058765,-0.05433558401659215 +160179,800.8950000058766,-0.05433550204545111 +160180,800.9000000058767,-0.0543354200696755 +160181,800.9050000058768,-0.05433533808926455 +160182,800.9100000058769,-0.05433525610421755 +160183,800.915000005877,-0.054335174114533716 +160184,800.9200000058771,-0.05433509212021229 +160185,800.9250000058772,-0.05433501012125254 +160186,800.9300000058773,-0.054334928117653704 +160187,800.9350000058774,-0.054334846109415025 +160188,800.9400000058776,-0.05433476409653575 +160189,800.9450000058777,-0.05433468207901514 +160190,800.9500000058778,-0.05433460005685242 +160191,800.9550000058779,-0.05433451803004685 +160192,800.960000005878,-0.054334435998597684 +160193,800.9650000058781,-0.054334353962504155 +160194,800.9700000058782,-0.05433427192176551 +160195,800.9750000058783,-0.05433418987638098 +160196,800.9800000058784,-0.05433410782634982 +160197,800.9850000058785,-0.05433402577167129 +160198,800.9900000058786,-0.05433394371234462 +160199,800.9950000058788,-0.054333861648369064 +160200,801.0000000058789,-0.05433377957974386 +160201,801.005000005879,-0.05433369750646824 +160202,801.0100000058791,-0.05433361542854147 +160203,801.0150000058792,-0.054333533345962776 +160204,801.0200000058793,-0.054333451258731416 +160205,801.0250000058794,-0.05433336916684661 +160206,801.0300000058795,-0.05433328707030762 +160207,801.0350000058796,-0.054333204969113695 +160208,801.0400000058797,-0.054333122863264055 +160209,801.0450000058798,-0.05433304075275795 +160210,801.05000000588,-0.054332958637594644 +160211,801.0550000058801,-0.05433287651777336 +160212,801.0600000058802,-0.054332794393293325 +160213,801.0650000058803,-0.0543327122641538 +160214,801.0700000058804,-0.05433263013035402 +160215,801.0750000058805,-0.054332547991893236 +160216,801.0800000058806,-0.05433246584877068 +160217,801.0850000058807,-0.05433238370098559 +160218,801.0900000058808,-0.0543323015485372 +160219,801.0950000058809,-0.054332219391424776 +160220,801.100000005881,-0.05433213722964753 +160221,801.1050000058812,-0.05433205506320471 +160222,801.1100000058813,-0.05433197289209555 +160223,801.1150000058814,-0.05433189071631931 +160224,801.1200000058815,-0.054331808535875215 +160225,801.1250000058816,-0.05433172635076249 +160226,801.1300000058817,-0.0543316441609804 +160227,801.1350000058818,-0.05433156196652817 +160228,801.1400000058819,-0.054331479767405044 +160229,801.145000005882,-0.05433139756361025 +160230,801.1500000058821,-0.05433131535514303 +160231,801.1550000058822,-0.05433123314200262 +160232,801.1600000058824,-0.05433115092418825 +160233,801.1650000058825,-0.05433106870169918 +160234,801.1700000058826,-0.054330986474534625 +160235,801.1750000058827,-0.05433090424269384 +160236,801.1800000058828,-0.05433082200617604 +160237,801.1850000058829,-0.054330739764980464 +160238,801.190000005883,-0.054330657519106366 +160239,801.1950000058831,-0.05433057526855298 +160240,801.2000000058832,-0.05433049301331953 +160241,801.2050000058833,-0.05433041075340525 +160242,801.2100000058834,-0.05433032848880937 +160243,801.2150000058836,-0.054330246219531135 +160244,801.2200000058837,-0.05433016394556978 +160245,801.2250000058838,-0.054330081666924546 +160246,801.2300000058839,-0.05432999938359464 +160247,801.235000005884,-0.05432991709557932 +160248,801.2400000058841,-0.05432983480287781 +160249,801.2450000058842,-0.054329752505489354 +160250,801.2500000058843,-0.05432967020341317 +160251,801.2550000058844,-0.05432958789664852 +160252,801.2600000058845,-0.05432950558519461 +160253,801.2650000058846,-0.05432942326905068 +160254,801.2700000058848,-0.05432934094821596 +160255,801.2750000058849,-0.05432925862268968 +160256,801.280000005885,-0.054329176292471075 +160257,801.2850000058851,-0.05432909395755938 +160258,801.2900000058852,-0.05432901161795381 +160259,801.2950000058853,-0.05432892927365361 +160260,801.3000000058854,-0.054328846924658024 +160261,801.3050000058855,-0.054328764570966255 +160262,801.3100000058856,-0.05432868221257756 +160263,801.3150000058857,-0.054328599849491156 +160264,801.3200000058858,-0.05432851748170627 +160265,801.325000005886,-0.05432843510922214 +160266,801.3300000058861,-0.05432835273203799 +160267,801.3350000058862,-0.05432827035015305 +160268,801.3400000058863,-0.05432818796356655 +160269,801.3450000058864,-0.05432810557227772 +160270,801.3500000058865,-0.054328023176285795 +160271,801.3550000058866,-0.05432794077558999 +160272,801.3600000058867,-0.054327858370189545 +160273,801.3650000058868,-0.05432777596008369 +160274,801.3700000058869,-0.05432769354527163 +160275,801.375000005887,-0.054327611125752615 +160276,801.3800000058872,-0.054327528701525865 +160277,801.3850000058873,-0.054327446272590604 +160278,801.3900000058874,-0.05432736383894607 +160279,801.3950000058875,-0.05432728140059149 +160280,801.4000000058876,-0.05432719895752608 +160281,801.4050000058877,-0.05432711650974908 +160282,801.4100000058878,-0.05432703405725969 +160283,801.4150000058879,-0.054326951600057155 +160284,801.420000005888,-0.05432686913814071 +160285,801.4250000058881,-0.05432678667150955 +160286,801.4300000058882,-0.05432670420016294 +160287,801.4350000058884,-0.05432662172410006 +160288,801.4400000058885,-0.054326539243320184 +160289,801.4450000058886,-0.0543264567578225 +160290,801.4500000058887,-0.05432637426760624 +160291,801.4550000058888,-0.05432629177267064 +160292,801.4600000058889,-0.05432620927301491 +160293,801.465000005889,-0.05432612676863829 +160294,801.4700000058891,-0.054326044259539984 +160295,801.4750000058892,-0.05432596174571923 +160296,801.4800000058893,-0.05432587922717524 +160297,801.4850000058894,-0.05432579670390725 +160298,801.4900000058896,-0.054325714175914454 +160299,801.4950000058897,-0.05432563164319611 +160300,801.5000000058898,-0.05432554910575142 +160301,801.5050000058899,-0.05432546656357961 +160302,801.51000000589,-0.054325384016679905 +160303,801.5150000058901,-0.054325301465051525 +160304,801.5200000058902,-0.054325218908693684 +160305,801.5250000058903,-0.05432513634760562 +160306,801.5300000058904,-0.054325053781786536 +160307,801.5350000058905,-0.05432497121123567 +160308,801.5400000058906,-0.05432488863595222 +160309,801.5450000058908,-0.054324806055935426 +160310,801.5500000058909,-0.0543247234711845 +160311,801.555000005891,-0.05432464088169866 +160312,801.5600000058911,-0.054324558287477134 +160313,801.5650000058912,-0.05432447568851913 +160314,801.5700000058913,-0.05432439308482387 +160315,801.5750000058914,-0.05432431047639057 +160316,801.5800000058915,-0.05432422786321846 +160317,801.5850000058916,-0.05432414524530674 +160318,801.5900000058917,-0.05432406262265465 +160319,801.5950000058918,-0.054323979995261396 +160320,801.600000005892,-0.05432389736312619 +160321,801.6050000058921,-0.05432381472624826 +160322,801.6100000058922,-0.05432373208462681 +160323,801.6150000058923,-0.054323649438261075 +160324,801.6200000058924,-0.05432356678715026 +160325,801.6250000058925,-0.054323484131293585 +160326,801.6300000058926,-0.05432340147069027 +160327,801.6350000058927,-0.05432331880533953 +160328,801.6400000058928,-0.054323236135240566 +160329,801.6450000058929,-0.054323153460392605 +160330,801.650000005893,-0.05432307078079487 +160331,801.6550000058932,-0.05432298809644657 +160332,801.6600000058933,-0.05432290540734691 +160333,801.6650000058934,-0.05432282271349512 +160334,801.6700000058935,-0.0543227400148904 +160335,801.6750000058936,-0.054322657311531984 +160336,801.6800000058937,-0.05432257460341907 +160337,801.6850000058938,-0.05432249189055088 +160338,801.6900000058939,-0.05432240917292661 +160339,801.695000005894,-0.05432232645054549 +160340,801.7000000058941,-0.05432224372340673 +160341,801.7050000058942,-0.05432216099150955 +160342,801.7100000058944,-0.054322078254853155 +160343,801.7150000058945,-0.05432199551343675 +160344,801.7200000058946,-0.05432191276725956 +160345,801.7250000058947,-0.054321830016320787 +160346,801.7300000058948,-0.05432174726061966 +160347,801.7350000058949,-0.05432166450015537 +160348,801.740000005895,-0.05432158173492714 +160349,801.7450000058951,-0.05432149896493416 +160350,801.7500000058952,-0.054321416190175685 +160351,801.7550000058953,-0.05432133341065088 +160352,801.7600000058954,-0.05432125062635897 +160353,801.7650000058956,-0.054321167837299185 +160354,801.7700000058957,-0.05432108504347072 +160355,801.7750000058958,-0.054321002244872775 +160356,801.7800000058959,-0.05432091944150457 +160357,801.785000005896,-0.054320836633365316 +160358,801.7900000058961,-0.05432075382045422 +160359,801.7950000058962,-0.05432067100277048 +160360,801.8000000058963,-0.05432058818031332 +160361,801.8050000058964,-0.054320505353081944 +160362,801.8100000058965,-0.05432042252107556 +160363,801.8150000058966,-0.054320339684293374 +160364,801.8200000058968,-0.054320256842734595 +160365,801.8250000058969,-0.05432017399639842 +160366,801.830000005897,-0.054320091145284084 +160367,801.8350000058971,-0.05432000828939077 +160368,801.8400000058972,-0.054319925428717684 +160369,801.8450000058973,-0.05431984256326405 +160370,801.8500000058974,-0.05431975969302906 +160371,801.8550000058975,-0.05431967681801191 +160372,801.8600000058976,-0.05431959393821183 +160373,801.8650000058977,-0.054319511053628006 +160374,801.8700000058979,-0.054319428164259664 +160375,801.875000005898,-0.054319345270105984 +160376,801.8800000058981,-0.05431926237116619 +160377,801.8850000058982,-0.054319179467439485 +160378,801.8900000058983,-0.05431909655892507 +160379,801.8950000058984,-0.05431901364562215 +160380,801.9000000058985,-0.05431893072752992 +160381,801.9050000058986,-0.05431884780464759 +160382,801.9100000058987,-0.054318764876974374 +160383,801.9150000058988,-0.054318681944509464 +160384,801.9200000058989,-0.05431859900725206 +160385,801.925000005899,-0.05431851606520138 +160386,801.9300000058992,-0.05431843311835661 +160387,801.9350000058993,-0.054318350166716954 +160388,801.9400000058994,-0.05431826721028162 +160389,801.9450000058995,-0.05431818424904981 +160390,801.9500000058996,-0.054318101283020725 +160391,801.9550000058997,-0.05431801831219357 +160392,801.9600000058998,-0.05431793533656754 +160393,801.9650000058999,-0.054317852356141845 +160394,801.9700000059,-0.05431776937091567 +160395,801.9750000059001,-0.054317686380888235 +160396,801.9800000059003,-0.05431760338605872 +160397,801.9850000059004,-0.054317520386426336 +160398,801.9900000059005,-0.05431743738199029 +160399,801.9950000059006,-0.05431735437274976 +160400,802.0000000059007,-0.05431727135870396 +160401,802.0050000059008,-0.05431718833985209 +160402,802.0100000059009,-0.05431710531619335 +160403,802.015000005901,-0.05431702228772693 +160404,802.0200000059011,-0.05431693925445204 +160405,802.0250000059012,-0.05431685621636787 +160406,802.0300000059013,-0.05431677317347362 +160407,802.0350000059015,-0.05431669012576849 +160408,802.0400000059016,-0.05431660707325168 +160409,802.0450000059017,-0.05431652401592237 +160410,802.0500000059018,-0.05431644095377978 +160411,802.0550000059019,-0.05431635788682308 +160412,802.060000005902,-0.0543162748150515 +160413,802.0650000059021,-0.05431619173846421 +160414,802.0700000059022,-0.05431610865706043 +160415,802.0750000059023,-0.05431602557083933 +160416,802.0800000059024,-0.05431594247980013 +160417,802.0850000059025,-0.054315859383942 +160418,802.0900000059027,-0.05431577628326416 +160419,802.0950000059028,-0.05431569317776578 +160420,802.1000000059029,-0.05431561006744608 +160421,802.105000005903,-0.054315526952304224 +160422,802.1100000059031,-0.05431544383233944 +160423,802.1150000059032,-0.05431536070755089 +160424,802.1200000059033,-0.054315277577937804 +160425,802.1250000059034,-0.05431519444349935 +160426,802.1300000059035,-0.05431511130423472 +160427,802.1350000059036,-0.054315028160143115 +160428,802.1400000059037,-0.05431494501122373 +160429,802.1450000059039,-0.05431486185747575 +160430,802.150000005904,-0.05431477869889838 +160431,802.1550000059041,-0.0543146955354908 +160432,802.1600000059042,-0.05431461236725221 +160433,802.1650000059043,-0.05431452919418179 +160434,802.1700000059044,-0.05431444601627874 +160435,802.1750000059045,-0.05431436283354225 +160436,802.1800000059046,-0.05431427964597151 +160437,802.1850000059047,-0.054314196453565715 +160438,802.1900000059048,-0.05431411325632405 +160439,802.195000005905,-0.054314030054245704 +160440,802.200000005905,-0.054313946847329875 +160441,802.2050000059052,-0.054313863635575756 +160442,802.2100000059053,-0.054313780418982535 +160443,802.2150000059054,-0.05431369719754939 +160444,802.2200000059055,-0.054313613971275515 +160445,802.2250000059056,-0.05431353074016009 +160446,802.2300000059057,-0.05431344750420232 +160447,802.2350000059058,-0.05431336426340139 +160448,802.2400000059059,-0.05431328101775648 +160449,802.245000005906,-0.054313197767266785 +160450,802.2500000059061,-0.054313114511931486 +160451,802.2550000059063,-0.05431303125174978 +160452,802.2600000059064,-0.054312947986720844 +160453,802.2650000059065,-0.05431286471684388 +160454,802.2700000059066,-0.054312781442118055 +160455,802.2750000059067,-0.05431269816254256 +160456,802.2800000059068,-0.054312614878116595 +160457,802.2850000059069,-0.054312531588839336 +160458,802.290000005907,-0.054312448294709985 +160459,802.2950000059071,-0.054312364995727704 +160460,802.3000000059072,-0.05431228169189169 +160461,802.3050000059073,-0.05431219838320112 +160462,802.3100000059075,-0.05431211506965519 +160463,802.3150000059076,-0.05431203175125308 +160464,802.3200000059077,-0.05431194842799397 +160465,802.3250000059078,-0.05431186509987704 +160466,802.3300000059079,-0.05431178176690149 +160467,802.335000005908,-0.054311698429066496 +160468,802.3400000059081,-0.05431161508637124 +160469,802.3450000059082,-0.054311531738814894 +160470,802.3500000059083,-0.05431144838639666 +160471,802.3550000059084,-0.054311365029115724 +160472,802.3600000059085,-0.05431128166697126 +160473,802.3650000059087,-0.05431119829996243 +160474,802.3700000059088,-0.05431111492808845 +160475,802.3750000059089,-0.054311031551348476 +160476,802.380000005909,-0.054310948169741705 +160477,802.3850000059091,-0.05431086478326732 +160478,802.3900000059092,-0.054310781391924495 +160479,802.3950000059093,-0.054310697995712406 +160480,802.4000000059094,-0.05431061459463024 +160481,802.4050000059095,-0.05431053118867717 +160482,802.4100000059096,-0.05431044777785239 +160483,802.4150000059097,-0.05431036436215507 +160484,802.4200000059099,-0.054310280941584396 +160485,802.42500000591,-0.05431019751613954 +160486,802.4300000059101,-0.05431011408581968 +160487,802.4350000059102,-0.054310030650624 +160488,802.4400000059103,-0.054309947210551685 +160489,802.4450000059104,-0.05430986376560191 +160490,802.4500000059105,-0.05430978031577384 +160491,802.4550000059106,-0.05430969686106665 +160492,802.4600000059107,-0.05430961340147955 +160493,802.4650000059108,-0.05430952993701169 +160494,802.470000005911,-0.054309446467662253 +160495,802.475000005911,-0.05430936299343043 +160496,802.4800000059112,-0.05430927951431538 +160497,802.4850000059113,-0.054309196030316274 +160498,802.4900000059114,-0.054309112541432315 +160499,802.4950000059115,-0.054309029047662646 +160500,802.5000000059116,-0.05430894554900648 +160501,802.5050000059117,-0.05430886204546296 +160502,802.5100000059118,-0.054308778537031276 +160503,802.5150000059119,-0.0543086950237106 +160504,802.520000005912,-0.054308611505500114 +160505,802.5250000059121,-0.054308527982398984 +160506,802.5300000059123,-0.0543084444544064 +160507,802.5350000059124,-0.05430836092152151 +160508,802.5400000059125,-0.05430827738374352 +160509,802.5450000059126,-0.05430819384107157 +160510,802.5500000059127,-0.05430811029350485 +160511,802.5550000059128,-0.05430802674104254 +160512,802.5600000059129,-0.0543079431836838 +160513,802.565000005913,-0.05430785962142781 +160514,802.5700000059131,-0.05430777605427373 +160515,802.5750000059132,-0.05430769248222076 +160516,802.5800000059133,-0.05430760890526804 +160517,802.5850000059135,-0.05430752532341477 +160518,802.5900000059136,-0.0543074417366601 +160519,802.5950000059137,-0.05430735814500321 +160520,802.6000000059138,-0.05430727454844326 +160521,802.6050000059139,-0.054307190946979444 +160522,802.610000005914,-0.054307107340610915 +160523,802.6150000059141,-0.05430702372933685 +160524,802.6200000059142,-0.05430694011315641 +160525,802.6250000059143,-0.054306856492068775 +160526,802.6300000059144,-0.05430677286607312 +160527,802.6350000059145,-0.05430668923516859 +160528,802.6400000059147,-0.054306605599354386 +160529,802.6450000059148,-0.054306521958629644 +160530,802.6500000059149,-0.05430643831299357 +160531,802.655000005915,-0.05430635466244529 +160532,802.6600000059151,-0.05430627100698401 +160533,802.6650000059152,-0.054306187346608865 +160534,802.6700000059153,-0.054306103681319044 +160535,802.6750000059154,-0.05430602001111372 +160536,802.6800000059155,-0.054305936335992046 +160537,802.6850000059156,-0.05430585265595319 +160538,802.6900000059157,-0.05430576897099633 +160539,802.6950000059159,-0.054305685281120605 +160540,802.700000005916,-0.05430560158632521 +160541,802.7050000059161,-0.0543055178866093 +160542,802.7100000059162,-0.054305434181972034 +160543,802.7150000059163,-0.0543053504724126 +160544,802.7200000059164,-0.05430526675793014 +160545,802.7250000059165,-0.05430518303852384 +160546,802.7300000059166,-0.054305099314192834 +160547,802.7350000059167,-0.05430501558493631 +160548,802.7400000059168,-0.054304931850753434 +160549,802.745000005917,-0.05430484811164335 +160550,802.7500000059171,-0.05430476436760524 +160551,802.7550000059172,-0.054304680618638274 +160552,802.7600000059173,-0.0543045968647416 +160553,802.7650000059174,-0.054304513105914366 +160554,802.7700000059175,-0.05430442934215577 +160555,802.7750000059176,-0.05430434557346496 +160556,802.7800000059177,-0.05430426179984109 +160557,802.7850000059178,-0.054304178021283324 +160558,802.7900000059179,-0.05430409423779082 +160559,802.795000005918,-0.05430401044936276 +160560,802.8000000059182,-0.0543039266559983 +160561,802.8050000059183,-0.05430384285769658 +160562,802.8100000059184,-0.05430375905445678 +160563,802.8150000059185,-0.05430367524627805 +160564,802.8200000059186,-0.054303591433159555 +160565,802.8250000059187,-0.05430350761510046 +160566,802.8300000059188,-0.054303423792099924 +160567,802.8350000059189,-0.054303339964157094 +160568,802.840000005919,-0.05430325613127114 +160569,802.8450000059191,-0.05430317229344122 +160570,802.8500000059192,-0.0543030884506665 +160571,802.8550000059194,-0.05430300460294612 +160572,802.8600000059195,-0.05430292075027926 +160573,802.8650000059196,-0.05430283689266506 +160574,802.8700000059197,-0.05430275303010268 +160575,802.8750000059198,-0.054302669162591286 +160576,802.8800000059199,-0.05430258529013004 +160577,802.88500000592,-0.054302501412718085 +160578,802.8900000059201,-0.05430241753035459 +160579,802.8950000059202,-0.05430233364303871 +160580,802.9000000059203,-0.05430224975076959 +160581,802.9050000059204,-0.0543021658535464 +160582,802.9100000059206,-0.05430208195136829 +160583,802.9150000059207,-0.054301998044234426 +160584,802.9200000059208,-0.054301914132143934 +160585,802.9250000059209,-0.05430183021509599 +160586,802.930000005921,-0.05430174629308975 +160587,802.9350000059211,-0.05430166236612436 +160588,802.9400000059212,-0.054301578434198985 +160589,802.9450000059213,-0.05430149449731277 +160590,802.9500000059214,-0.054301410555464884 +160591,802.9550000059215,-0.054301326608654464 +160592,802.9600000059216,-0.054301242656880674 +160593,802.9650000059218,-0.05430115870014267 +160594,802.9700000059219,-0.054301074738439585 +160595,802.975000005922,-0.054300990771770585 +160596,802.9800000059221,-0.05430090680013483 +160597,802.9850000059222,-0.05430082282353145 +160598,802.9900000059223,-0.054300738841959614 +160599,802.9950000059224,-0.054300654855418476 +160600,803.0000000059225,-0.05430057086390718 +160601,803.0050000059226,-0.054300486867424884 +160602,803.0100000059227,-0.05430040286597072 +160603,803.0150000059228,-0.05430031885954388 +160604,803.020000005923,-0.054300234848143475 +160605,803.0250000059231,-0.05430015083176866 +160606,803.0300000059232,-0.0543000668104186 +160607,803.0350000059233,-0.05429998278409243 +160608,803.0400000059234,-0.054299898752789316 +160609,803.0450000059235,-0.054299814716508396 +160610,803.0500000059236,-0.054299730675248827 +160611,803.0550000059237,-0.05429964662900975 +160612,803.0600000059238,-0.05429956257779031 +160613,803.0650000059239,-0.054299478521589666 +160614,803.070000005924,-0.054299394460406956 +160615,803.0750000059242,-0.054299310394241344 +160616,803.0800000059243,-0.05429922632309196 +160617,803.0850000059244,-0.054299142246957956 +160618,803.0900000059245,-0.05429905816583847 +160619,803.0950000059246,-0.05429897407973267 +160620,803.1000000059247,-0.0542988899886397 +160621,803.1050000059248,-0.05429880589255869 +160622,803.1100000059249,-0.05429872179148879 +160623,803.115000005925,-0.054298637685429155 +160624,803.1200000059251,-0.05429855357437893 +160625,803.1250000059252,-0.05429846945833725 +160626,803.1300000059254,-0.05429838533730326 +160627,803.1350000059255,-0.054298301211276115 +160628,803.1400000059256,-0.05429821708025496 +160629,803.1450000059257,-0.05429813294423893 +160630,803.1500000059258,-0.054298048803227174 +160631,803.1550000059259,-0.054297964657218825 +160632,803.160000005926,-0.05429788050621305 +160633,803.1650000059261,-0.05429779635020897 +160634,803.1700000059262,-0.05429771218920574 +160635,803.1750000059263,-0.054297628023202496 +160636,803.1800000059264,-0.05429754385219839 +160637,803.1850000059266,-0.054297459676192546 +160638,803.1900000059267,-0.05429737549518413 +160639,803.1950000059268,-0.05429729130917227 +160640,803.2000000059269,-0.05429720711815611 +160641,803.205000005927,-0.05429712292213479 +160642,803.2100000059271,-0.05429703872110746 +160643,803.2150000059272,-0.05429695451507324 +160644,803.2200000059273,-0.05429687030403129 +160645,803.2250000059274,-0.054296786087980733 +160646,803.2300000059275,-0.054296701866920725 +160647,803.2350000059276,-0.0542966176408504 +160648,803.2400000059278,-0.0542965334097689 +160649,803.2450000059279,-0.054296449173675355 +160650,803.250000005928,-0.054296364932568925 +160651,803.2550000059281,-0.05429628068644873 +160652,803.2600000059282,-0.0542961964353139 +160653,803.2650000059283,-0.0542961121791636 +160654,803.2700000059284,-0.05429602791799695 +160655,803.2750000059285,-0.05429594365181309 +160656,803.2800000059286,-0.05429585938061116 +160657,803.2850000059287,-0.0542957751043903 +160658,803.2900000059288,-0.05429569082314964 +160659,803.295000005929,-0.054295606536888315 +160660,803.3000000059291,-0.05429552224560547 +160661,803.3050000059292,-0.05429543794930024 +160662,803.3100000059293,-0.05429535364797175 +160663,803.3150000059294,-0.05429526934161915 +160664,803.3200000059295,-0.05429518503024157 +160665,803.3250000059296,-0.054295100713838154 +160666,803.3300000059297,-0.05429501639240802 +160667,803.3350000059298,-0.054294932065950305 +160668,803.3400000059299,-0.054294847734464156 +160669,803.34500000593,-0.0542947633979487 +160670,803.3500000059302,-0.05429467905640307 +160671,803.3550000059303,-0.0542945947098264 +160672,803.3600000059304,-0.05429451035821782 +160673,803.3650000059305,-0.05429442600157648 +160674,803.3700000059306,-0.0542943416399015 +160675,803.3750000059307,-0.054294257273192016 +160676,803.3800000059308,-0.054294172901447155 +160677,803.3850000059309,-0.05429408852466605 +160678,803.390000005931,-0.054294004142847824 +160679,803.3950000059311,-0.054293919755991626 +160680,803.4000000059312,-0.05429383536409658 +160681,803.4050000059314,-0.05429375096716181 +160682,803.4100000059315,-0.05429366656518647 +160683,803.4150000059316,-0.05429358215816967 +160684,803.4200000059317,-0.054293497746110544 +160685,803.4250000059318,-0.054293413329008236 +160686,803.4300000059319,-0.054293328906861844 +160687,803.435000005932,-0.05429324447967052 +160688,803.4400000059321,-0.05429316004743339 +160689,803.4450000059322,-0.05429307561014959 +160690,803.4500000059323,-0.054292991167818244 +160691,803.4550000059324,-0.05429290672043848 +160692,803.4600000059326,-0.05429282226800942 +160693,803.4650000059327,-0.0542927378105302 +160694,803.4700000059328,-0.054292653347999945 +160695,803.4750000059329,-0.054292568880417794 +160696,803.480000005933,-0.05429248440778285 +160697,803.4850000059331,-0.054292399930094264 +160698,803.4900000059332,-0.05429231544735114 +160699,803.4950000059333,-0.05429223095955263 +160700,803.5000000059334,-0.05429214646669783 +160701,803.5050000059335,-0.05429206196878589 +160702,803.5100000059336,-0.05429197746581592 +160703,803.5150000059338,-0.05429189295778706 +160704,803.5200000059339,-0.054291808444698435 +160705,803.525000005934,-0.05429172392654916 +160706,803.5300000059341,-0.054291639403338365 +160707,803.5350000059342,-0.05429155487506517 +160708,803.5400000059343,-0.05429147034172871 +160709,803.5450000059344,-0.054291385803328096 +160710,803.5500000059345,-0.054291301259862465 +160711,803.5550000059346,-0.054291216711330935 +160712,803.5600000059347,-0.05429113215773262 +160713,803.5650000059348,-0.054291047599066646 +160714,803.570000005935,-0.054290963035332145 +160715,803.5750000059351,-0.054290878466528227 +160716,803.5800000059352,-0.054290793892654024 +160717,803.5850000059353,-0.05429070931370866 +160718,803.5900000059354,-0.05429062472969125 +160719,803.5950000059355,-0.05429054014060091 +160720,803.6000000059356,-0.05429045554643678 +160721,803.6050000059357,-0.054290370947197956 +160722,803.6100000059358,-0.05429028634288359 +160723,803.6150000059359,-0.054290201733492784 +160724,803.620000005936,-0.05429011711902464 +160725,803.6250000059362,-0.054290032499478315 +160726,803.6300000059363,-0.054289947874852904 +160727,803.6350000059364,-0.05428986324514753 +160728,803.6400000059365,-0.054289778610361314 +160729,803.6450000059366,-0.05428969397049337 +160730,803.6500000059367,-0.05428960932554283 +160731,803.6550000059368,-0.0542895246755088 +160732,803.6600000059369,-0.0542894400203904 +160733,803.665000005937,-0.054289355360186746 +160734,803.6700000059371,-0.054289270694896974 +160735,803.6750000059372,-0.05428918602452018 +160736,803.6800000059374,-0.054289101349055485 +160737,803.6850000059375,-0.054289016668502 +160738,803.6900000059376,-0.054288931982858855 +160739,803.6950000059377,-0.05428884729212517 +160740,803.7000000059378,-0.05428876259630005 +160741,803.7050000059379,-0.05428867789538261 +160742,803.710000005938,-0.054288593189371966 +160743,803.7150000059381,-0.05428850847826723 +160744,803.7200000059382,-0.05428842376206752 +160745,803.7250000059383,-0.05428833904077196 +160746,803.7300000059385,-0.054288254314379655 +160747,803.7350000059386,-0.05428816958288972 +160748,803.7400000059387,-0.05428808484630127 +160749,803.7450000059388,-0.05428800010461342 +160750,803.7500000059389,-0.05428791535782528 +160751,803.755000005939,-0.05428783060593597 +160752,803.7600000059391,-0.054287745848944594 +160753,803.7650000059392,-0.054287661086850264 +160754,803.7700000059393,-0.05428757631965211 +160755,803.7750000059394,-0.05428749154734922 +160756,803.7800000059395,-0.05428740676994072 +160757,803.7850000059397,-0.05428732198742572 +160758,803.7900000059398,-0.054287237199803315 +160759,803.7950000059399,-0.05428715240707264 +160760,803.80000000594,-0.05428706760923279 +160761,803.8050000059401,-0.05428698280628289 +160762,803.8100000059402,-0.05428689799822205 +160763,803.8150000059403,-0.054286813185049354 +160764,803.8200000059404,-0.05428672836676394 +160765,803.8250000059405,-0.054286643543364904 +160766,803.8300000059406,-0.05428655871485135 +160767,803.8350000059407,-0.05428647388122241 +160768,803.8400000059409,-0.05428638904247717 +160769,803.845000005941,-0.05428630419861474 +160770,803.8500000059411,-0.054286219349634235 +160771,803.8550000059412,-0.054286134495534766 +160772,803.8600000059413,-0.05428604963631544 +160773,803.8650000059414,-0.05428596477197536 +160774,803.8700000059415,-0.05428587990251363 +160775,803.8750000059416,-0.05428579502792935 +160776,803.8800000059417,-0.05428571014822166 +160777,803.8850000059418,-0.05428562526338962 +160778,803.8900000059419,-0.05428554037343237 +160779,803.895000005942,-0.05428545547834901 +160780,803.9000000059422,-0.05428537057813863 +160781,803.9050000059423,-0.054285285672800346 +160782,803.9100000059424,-0.054285200762333265 +160783,803.9150000059425,-0.05428511584673649 +160784,803.9200000059426,-0.05428503092600913 +160785,803.9250000059427,-0.05428494600015028 +160786,803.9300000059428,-0.05428486106915905 +160787,803.9350000059429,-0.05428477613303454 +160788,803.940000005943,-0.05428469119177585 +160789,803.9450000059431,-0.054284606245382096 +160790,803.9500000059433,-0.05428452129385237 +160791,803.9550000059434,-0.05428443633718577 +160792,803.9600000059435,-0.05428435137538141 +160793,803.9650000059436,-0.054284266408438385 +160794,803.9700000059437,-0.054284181436355806 +160795,803.9750000059438,-0.05428409645913277 +160796,803.9800000059439,-0.05428401147676837 +160797,803.985000005944,-0.05428392648926172 +160798,803.9900000059441,-0.05428384149661192 +160799,803.9950000059442,-0.05428375649881805 +160800,804.0000000059443,-0.05428367149587923 +160801,804.0050000059445,-0.05428358648779455 +160802,804.0100000059446,-0.05428350147456312 +160803,804.0150000059447,-0.05428341645618403 +160804,804.0200000059448,-0.05428333143265638 +160805,804.0250000059449,-0.05428324640397928 +160806,804.030000005945,-0.054283161370151815 +160807,804.0350000059451,-0.054283076331173095 +160808,804.0400000059452,-0.05428299128704219 +160809,804.0450000059453,-0.05428290623775824 +160810,804.0500000059454,-0.05428282118332031 +160811,804.0550000059455,-0.05428273612372752 +160812,804.0600000059457,-0.05428265105897894 +160813,804.0650000059458,-0.0542825659890737 +160814,804.0700000059459,-0.054282480914010875 +160815,804.075000005946,-0.05428239583378956 +160816,804.0800000059461,-0.05428231074840886 +160817,804.0850000059462,-0.05428222565786787 +160818,804.0900000059463,-0.05428214056216568 +160819,804.0950000059464,-0.05428205546130138 +160820,804.1000000059465,-0.05428197035527409 +160821,804.1050000059466,-0.054281885244082874 +160822,804.1100000059467,-0.05428180012772684 +160823,804.1150000059469,-0.05428171500620508 +160824,804.120000005947,-0.05428162987951669 +160825,804.1250000059471,-0.05428154474766076 +160826,804.1300000059472,-0.05428145961063639 +160827,804.1350000059473,-0.05428137446844267 +160828,804.1400000059474,-0.05428128932107869 +160829,804.1450000059475,-0.05428120416854354 +160830,804.1500000059476,-0.05428111901083632 +160831,804.1550000059477,-0.05428103384795613 +160832,804.1600000059478,-0.05428094867990204 +160833,804.165000005948,-0.054280863506673147 +160834,804.170000005948,-0.05428077832826854 +160835,804.1750000059482,-0.05428069314468732 +160836,804.1800000059483,-0.054280607955928574 +160837,804.1850000059484,-0.05428052276199139 +160838,804.1900000059485,-0.054280437562874866 +160839,804.1950000059486,-0.05428035235857809 +160840,804.2000000059487,-0.05428026714910014 +160841,804.2050000059488,-0.054280181934440126 +160842,804.2100000059489,-0.05428009671459711 +160843,804.215000005949,-0.0542800114895702 +160844,804.2200000059491,-0.05427992625935848 +160845,804.2250000059493,-0.05427984102396103 +160846,804.2300000059494,-0.054279755783376946 +160847,804.2350000059495,-0.054279670537605317 +160848,804.2400000059496,-0.054279585286645234 +160849,804.2450000059497,-0.05427950003049577 +160850,804.2500000059498,-0.05427941476915602 +160851,804.2550000059499,-0.054279329502625075 +160852,804.26000000595,-0.05427924423090201 +160853,804.2650000059501,-0.05427915895398591 +160854,804.2700000059502,-0.05427907367187588 +160855,804.2750000059503,-0.05427898838457099 +160856,804.2800000059505,-0.05427890309207034 +160857,804.2850000059506,-0.054278817794372984 +160858,804.2900000059507,-0.05427873249147804 +160859,804.2950000059508,-0.054278647183384564 +160860,804.3000000059509,-0.05427856187009167 +160861,804.305000005951,-0.05427847655159842 +160862,804.3100000059511,-0.0542783912279039 +160863,804.3150000059512,-0.054278305899007194 +160864,804.3200000059513,-0.05427822056490739 +160865,804.3250000059514,-0.05427813522560356 +160866,804.3300000059515,-0.05427804988109482 +160867,804.3350000059517,-0.05427796453138021 +160868,804.3400000059518,-0.05427787917645883 +160869,804.3450000059519,-0.054277793816329765 +160870,804.350000005952,-0.05427770845099209 +160871,804.3550000059521,-0.0542776230804449 +160872,804.3600000059522,-0.05427753770468725 +160873,804.3650000059523,-0.05427745232371824 +160874,804.3700000059524,-0.05427736693753694 +160875,804.3750000059525,-0.05427728154614245 +160876,804.3800000059526,-0.05427719614953382 +160877,804.3850000059527,-0.054277110747710154 +160878,804.3900000059529,-0.05427702534067052 +160879,804.395000005953,-0.054276939928413995 +160880,804.4000000059531,-0.05427685451093966 +160881,804.4050000059532,-0.0542767690882466 +160882,804.4100000059533,-0.05427668366033388 +160883,804.4150000059534,-0.05427659822720058 +160884,804.4200000059535,-0.05427651278884579 +160885,804.4250000059536,-0.05427642734526859 +160886,804.4300000059537,-0.05427634189646804 +160887,804.4350000059538,-0.05427625644244323 +160888,804.440000005954,-0.05427617098319323 +160889,804.4450000059541,-0.05427608551871711 +160890,804.4500000059542,-0.05427600004901396 +160891,804.4550000059543,-0.054275914574082845 +160892,804.4600000059544,-0.05427582909392284 +160893,804.4650000059545,-0.054275743608533024 +160894,804.4700000059546,-0.05427565811791247 +160895,804.4750000059547,-0.05427557262206025 +160896,804.4800000059548,-0.054275487120975456 +160897,804.4850000059549,-0.054275401614657146 +160898,804.490000005955,-0.05427531610310439 +160899,804.4950000059551,-0.05427523058631627 +160900,804.5000000059553,-0.054275145064291846 +160901,804.5050000059554,-0.05427505953703022 +160902,804.5100000059555,-0.054274974004530435 +160903,804.5150000059556,-0.054274888466791585 +160904,804.5200000059557,-0.05427480292381272 +160905,804.5250000059558,-0.05427471737559293 +160906,804.5300000059559,-0.05427463182213127 +160907,804.535000005956,-0.05427454626342683 +160908,804.5400000059561,-0.054274460699478666 +160909,804.5450000059562,-0.054274375130285865 +160910,804.5500000059563,-0.054274289555847476 +160911,804.5550000059565,-0.05427420397616258 +160912,804.5600000059566,-0.05427411839123026 +160913,804.5650000059567,-0.054274032801049574 +160914,804.5700000059568,-0.05427394720561958 +160915,804.5750000059569,-0.054273861604939355 +160916,804.580000005957,-0.054273775999007984 +160917,804.5850000059571,-0.0542736903878245 +160918,804.5900000059572,-0.05427360477138801 +160919,804.5950000059573,-0.054273519149697566 +160920,804.6000000059574,-0.054273433522752226 +160921,804.6050000059575,-0.05427334789055106 +160922,804.6100000059577,-0.05427326225309315 +160923,804.6150000059578,-0.054273176610377546 +160924,804.6200000059579,-0.054273090962403334 +160925,804.625000005958,-0.054273005309169564 +160926,804.6300000059581,-0.05427291965067531 +160927,804.6350000059582,-0.05427283398691962 +160928,804.6400000059583,-0.05427274831790159 +160929,804.6450000059584,-0.054272662643620254 +160930,804.6500000059585,-0.05427257696407469 +160931,804.6550000059586,-0.05427249127926397 +160932,804.6600000059588,-0.05427240558918716 +160933,804.6650000059589,-0.054272319893843304 +160934,804.670000005959,-0.05427223419323148 +160935,804.6750000059591,-0.05427214848735076 +160936,804.6800000059592,-0.05427206277620019 +160937,804.6850000059593,-0.054271977059778834 +160938,804.6900000059594,-0.05427189133808576 +160939,804.6950000059595,-0.05427180561112004 +160940,804.7000000059596,-0.054271719878880735 +160941,804.7050000059597,-0.05427163414136689 +160942,804.7100000059598,-0.05427154839857758 +160943,804.71500000596,-0.05427146265051185 +160944,804.7200000059601,-0.05427137689716878 +160945,804.7250000059602,-0.05427129113854743 +160946,804.7300000059603,-0.054271205374646844 +160947,804.7350000059604,-0.05427111960546609 +160948,804.7400000059605,-0.054271033831004234 +160949,804.7450000059606,-0.054270948051260336 +160950,804.7500000059607,-0.054270862266233434 +160951,804.7550000059608,-0.05427077647592262 +160952,804.7600000059609,-0.05427069068032692 +160953,804.765000005961,-0.05427060487944542 +160954,804.7700000059612,-0.05427051907327716 +160955,804.7750000059613,-0.05427043326182121 +160956,804.7800000059614,-0.054270347445076625 +160957,804.7850000059615,-0.05427026162304246 +160958,804.7900000059616,-0.054270175795717766 +160959,804.7950000059617,-0.05427008996310161 +160960,804.8000000059618,-0.05427000412519304 +160961,804.8050000059619,-0.054269918281991125 +160962,804.810000005962,-0.05426983243349491 +160963,804.8150000059621,-0.05426974657970345 +160964,804.8200000059622,-0.05426966072061581 +160965,804.8250000059624,-0.05426957485623103 +160966,804.8300000059625,-0.05426948898654818 +160967,804.8350000059626,-0.054269403111566306 +160968,804.8400000059627,-0.05426931723128446 +160969,804.8450000059628,-0.0542692313457017 +160970,804.8500000059629,-0.05426914545481708 +160971,804.855000005963,-0.05426905955862965 +160972,804.8600000059631,-0.054268973657138474 +160973,804.8650000059632,-0.05426888775034259 +160974,804.8700000059633,-0.05426880183824106 +160975,804.8750000059634,-0.05426871592083293 +160976,804.8800000059636,-0.05426862999811726 +160977,804.8850000059637,-0.0542685440700931 +160978,804.8900000059638,-0.05426845813675949 +160979,804.8950000059639,-0.0542683721981155 +160980,804.900000005964,-0.05426828625416018 +160981,804.9050000059641,-0.054268200304892544 +160982,804.9100000059642,-0.054268114350311696 +160983,804.9150000059643,-0.054268028390416646 +160984,804.9200000059644,-0.05426794242520646 +160985,804.9250000059645,-0.054267856454680186 +160986,804.9300000059646,-0.054267770478836866 +160987,804.9350000059648,-0.054267684497675564 +160988,804.9400000059649,-0.054267598511195315 +160989,804.945000005965,-0.05426751251939517 +160990,804.9500000059651,-0.054267426522274176 +160991,804.9550000059652,-0.0542673405198314 +160992,804.9600000059653,-0.05426725451206586 +160993,804.9650000059654,-0.054267168498976615 +160994,804.9700000059655,-0.05426708248056272 +160995,804.9750000059656,-0.05426699645682321 +160996,804.9800000059657,-0.054266910427757144 +160997,804.9850000059658,-0.05426682439336355 +160998,804.990000005966,-0.054266738353641486 +160999,804.9950000059661,-0.05426665230859 +161000,805.0000000059662,-0.05426656625820813 +161001,805.0050000059663,-0.05426648020249492 +161002,805.0100000059664,-0.054266394141449424 +161003,805.0150000059665,-0.054266308075070685 +161004,805.0200000059666,-0.05426622200335774 +161005,805.0250000059667,-0.05426613592630963 +161006,805.0300000059668,-0.054266049843925405 +161007,805.0350000059669,-0.0542659637562041 +161008,805.040000005967,-0.05426587766314478 +161009,805.0450000059672,-0.054265791564746466 +161010,805.0500000059673,-0.05426570546100821 +161011,805.0550000059674,-0.05426561935192905 +161012,805.0600000059675,-0.054265533237508025 +161013,805.0650000059676,-0.05426544711774418 +161014,805.0700000059677,-0.05426536099263655 +161015,805.0750000059678,-0.05426527486218419 +161016,805.0800000059679,-0.05426518872638613 +161017,805.085000005968,-0.054265102585241407 +161018,805.0900000059681,-0.05426501643874907 +161019,805.0950000059682,-0.05426493028690817 +161020,805.1000000059684,-0.054264844129717715 +161021,805.1050000059685,-0.05426475796717678 +161022,805.1100000059686,-0.054264671799284375 +161023,805.1150000059687,-0.05426458562603955 +161024,805.1200000059688,-0.05426449944744134 +161025,805.1250000059689,-0.05426441326348879 +161026,805.130000005969,-0.054264327074180926 +161027,805.1350000059691,-0.054264240879516805 +161028,805.1400000059692,-0.05426415467949545 +161029,805.1450000059693,-0.05426406847411589 +161030,805.1500000059694,-0.054263982263377177 +161031,805.1550000059696,-0.05426389604727834 +161032,805.1600000059697,-0.05426380982581842 +161033,805.1650000059698,-0.054263723598996436 +161034,805.1700000059699,-0.05426363736681145 +161035,805.17500000597,-0.05426355112926248 +161036,805.1800000059701,-0.054263464886348575 +161037,805.1850000059702,-0.054263378638068745 +161038,805.1900000059703,-0.05426329238442205 +161039,805.1950000059704,-0.054263206125407505 +161040,805.2000000059705,-0.05426311986102415 +161041,805.2050000059706,-0.05426303359127103 +161042,805.2100000059708,-0.05426294731614716 +161043,805.2150000059709,-0.05426286103565158 +161044,805.220000005971,-0.05426277474978333 +161045,805.2250000059711,-0.05426268845854144 +161046,805.2300000059712,-0.05426260216192492 +161047,805.2350000059713,-0.05426251585993282 +161048,805.2400000059714,-0.054262429552564176 +161049,805.2450000059715,-0.05426234323981801 +161050,805.2500000059716,-0.05426225692169336 +161051,805.2550000059717,-0.05426217059818926 +161052,805.2600000059718,-0.054262084269304726 +161053,805.265000005972,-0.054261997935038796 +161054,805.2700000059721,-0.054261911595390504 +161055,805.2750000059722,-0.05426182525035887 +161056,805.2800000059723,-0.05426173889994293 +161057,805.2850000059724,-0.05426165254414171 +161058,805.2900000059725,-0.05426156618295424 +161059,805.2950000059726,-0.05426147981637955 +161060,805.3000000059727,-0.054261393444416654 +161061,805.3050000059728,-0.05426130706706459 +161062,805.3100000059729,-0.054261220684322396 +161063,805.315000005973,-0.05426113429618908 +161064,805.3200000059732,-0.054261047902663694 +161065,805.3250000059733,-0.054260961503745236 +161066,805.3300000059734,-0.05426087509943274 +161067,805.3350000059735,-0.054260788689725246 +161068,805.3400000059736,-0.054260702274621764 +161069,805.3450000059737,-0.05426061585412133 +161070,805.3500000059738,-0.05426052942822295 +161071,805.3550000059739,-0.05426044299692568 +161072,805.360000005974,-0.05426035656022852 +161073,805.3650000059741,-0.05426027011813049 +161074,805.3700000059742,-0.05426018367063064 +161075,805.3750000059744,-0.054260097217727975 +161076,805.3800000059745,-0.05426001075942152 +161077,805.3850000059746,-0.054259924295710305 +161078,805.3900000059747,-0.05425983782659334 +161079,805.3950000059748,-0.05425975135206966 +161080,805.4000000059749,-0.05425966487213828 +161081,805.405000005975,-0.054259578386798214 +161082,805.4100000059751,-0.054259491896048506 +161083,805.4150000059752,-0.054259405399888154 +161084,805.4200000059753,-0.05425931889831619 +161085,805.4250000059754,-0.05425923239133165 +161086,805.4300000059756,-0.054259145878933525 +161087,805.4350000059757,-0.05425905936112085 +161088,805.4400000059758,-0.05425897283789265 +161089,805.4450000059759,-0.054258886309247925 +161090,805.450000005976,-0.054258799775185725 +161091,805.4550000059761,-0.05425871323570503 +161092,805.4600000059762,-0.05425862669080489 +161093,805.4650000059763,-0.0542585401404843 +161094,805.4700000059764,-0.0542584535847423 +161095,805.4750000059765,-0.05425836702357789 +161096,805.4800000059766,-0.05425828045699011 +161097,805.4850000059768,-0.054258193884977955 +161098,805.4900000059769,-0.054258107307540444 +161099,805.495000005977,-0.0542580207246766 +161100,805.5000000059771,-0.054257934136385445 +161101,805.5050000059772,-0.054257847542665986 +161102,805.5100000059773,-0.05425776094351724 +161103,805.5150000059774,-0.05425767433893822 +161104,805.5200000059775,-0.05425758772892795 +161105,805.5250000059776,-0.05425750111348542 +161106,805.5300000059777,-0.05425741449260967 +161107,805.5350000059778,-0.05425732786629971 +161108,805.540000005978,-0.05425724123455454 +161109,805.5450000059781,-0.0542571545973732 +161110,805.5500000059782,-0.05425706795475469 +161111,805.5550000059783,-0.05425698130669801 +161112,805.5600000059784,-0.05425689465320218 +161113,805.5650000059785,-0.05425680799426623 +161114,805.5700000059786,-0.054256721329889145 +161115,805.5750000059787,-0.05425663466006995 +161116,805.5800000059788,-0.054256547984807654 +161117,805.5850000059789,-0.054256461304101264 +161118,805.590000005979,-0.054256374617949805 +161119,805.5950000059792,-0.05425628792635227 +161120,805.6000000059793,-0.054256201229307695 +161121,805.6050000059794,-0.05425611452681507 +161122,805.6100000059795,-0.054256027818873405 +161123,805.6150000059796,-0.05425594110548171 +161124,805.6200000059797,-0.054255854386639005 +161125,805.6250000059798,-0.05425576766234429 +161126,805.6300000059799,-0.05425568093259656 +161127,805.63500000598,-0.05425559419739484 +161128,805.6400000059801,-0.05425550745673814 +161129,805.6450000059803,-0.05425542071062546 +161130,805.6500000059804,-0.0542553339590558 +161131,805.6550000059805,-0.054255247202028185 +161132,805.6600000059806,-0.054255160439541615 +161133,805.6650000059807,-0.0542550736715951 +161134,805.6700000059808,-0.05425498689818764 +161135,805.6750000059809,-0.05425490011931824 +161136,805.680000005981,-0.0542548133349859 +161137,805.6850000059811,-0.05425472654518964 +161138,805.6900000059812,-0.05425463974992846 +161139,805.6950000059813,-0.054254552949201354 +161140,805.7000000059815,-0.054254466143007336 +161141,805.7050000059816,-0.05425437933134541 +161142,805.7100000059817,-0.05425429251421457 +161143,805.7150000059818,-0.054254205691613835 +161144,805.7200000059819,-0.05425411886354221 +161145,805.725000005982,-0.05425403202999867 +161146,805.7300000059821,-0.054253945190982235 +161147,805.7350000059822,-0.05425385834649193 +161148,805.7400000059823,-0.05425377149652671 +161149,805.7450000059824,-0.05425368464108561 +161150,805.7500000059825,-0.054253597780167626 +161151,805.7550000059827,-0.05425351091377175 +161152,805.7600000059828,-0.054253424041896994 +161153,805.7650000059829,-0.054253337164542344 +161154,805.770000005983,-0.054253250281706814 +161155,805.7750000059831,-0.054253163393389404 +161156,805.7800000059832,-0.054253076499589103 +161157,805.7850000059833,-0.05425298960030492 +161158,805.7900000059834,-0.054252902695535836 +161159,805.7950000059835,-0.05425281578528087 +161160,805.8000000059836,-0.05425272886953903 +161161,805.8050000059837,-0.054252641948309276 +161162,805.8100000059839,-0.05425255502159064 +161163,805.815000005984,-0.054252468089382104 +161164,805.8200000059841,-0.05425238115168267 +161165,805.8250000059842,-0.05425229420849132 +161166,805.8300000059843,-0.05425220725980707 +161167,805.8350000059844,-0.054252120305628905 +161168,805.8400000059845,-0.054252033345955825 +161169,805.8450000059846,-0.054251946380786835 +161170,805.8500000059847,-0.054251859410120916 +161171,805.8550000059848,-0.05425177243395706 +161172,805.860000005985,-0.05425168545229427 +161173,805.865000005985,-0.054251598465131536 +161174,805.8700000059852,-0.05425151147246787 +161175,805.8750000059853,-0.05425142447430224 +161176,805.8800000059854,-0.05425133747063366 +161177,805.8850000059855,-0.05425125046146111 +161178,805.8900000059856,-0.054251163446783594 +161179,805.8950000059857,-0.0542510764266001 +161180,805.9000000059858,-0.054250989400909604 +161181,805.9050000059859,-0.05425090236971111 +161182,805.910000005986,-0.05425081533300362 +161183,805.9150000059861,-0.0542507282907861 +161184,805.9200000059863,-0.054250641243057576 +161185,805.9250000059864,-0.05425055418981701 +161186,805.9300000059865,-0.05425046713106341 +161187,805.9350000059866,-0.05425038006679574 +161188,805.9400000059867,-0.05425029299701302 +161189,805.9450000059868,-0.05425020592171423 +161190,805.9500000059869,-0.05425011884089835 +161191,805.955000005987,-0.05425003175456439 +161192,805.9600000059871,-0.05424994466271132 +161193,805.9650000059872,-0.054249857565338136 +161194,805.9700000059873,-0.05424977046244382 +161195,805.9750000059875,-0.05424968335402737 +161196,805.9800000059876,-0.05424959624008775 +161197,805.9850000059877,-0.05424950912062397 +161198,805.9900000059878,-0.05424942199563502 +161199,805.9950000059879,-0.05424933486511986 +161200,806.000000005988,-0.054249247729077514 +161201,806.0050000059881,-0.05424916058750692 +161202,806.0100000059882,-0.0542490734404071 +161203,806.0150000059883,-0.05424898628777703 +161204,806.0200000059884,-0.054248899129615696 +161205,806.0250000059885,-0.05424881196592207 +161206,806.0300000059887,-0.05424872479669516 +161207,806.0350000059888,-0.05424863762193394 +161208,806.0400000059889,-0.05424855044163738 +161209,806.045000005989,-0.05424846325580448 +161210,806.0500000059891,-0.05424837606443421 +161211,806.0550000059892,-0.054248288867525564 +161212,806.0600000059893,-0.05424820166507752 +161213,806.0650000059894,-0.05424811445708906 +161214,806.0700000059895,-0.05424802724355916 +161215,806.0750000059896,-0.054247940024486824 +161216,806.0800000059897,-0.054247852799871016 +161217,806.0850000059899,-0.05424776556971071 +161218,806.09000000599,-0.05424767833400489 +161219,806.0950000059901,-0.054247591092752546 +161220,806.1000000059902,-0.05424750384595265 +161221,806.1050000059903,-0.054247416593604186 +161222,806.1100000059904,-0.054247329335706126 +161223,806.1150000059905,-0.054247242072257465 +161224,806.1200000059906,-0.054247154803257175 +161225,806.1250000059907,-0.05424706752870422 +161226,806.1300000059908,-0.054246980248597594 +161227,806.135000005991,-0.05424689296293627 +161228,806.140000005991,-0.05424680567171923 +161229,806.1450000059912,-0.05424671837494545 +161230,806.1500000059913,-0.0542466310726139 +161231,806.1550000059914,-0.05424654376472356 +161232,806.1600000059915,-0.054246456451273406 +161233,806.1650000059916,-0.05424636913226242 +161234,806.1700000059917,-0.054246281807689554 +161235,806.1750000059918,-0.054246194477553814 +161236,806.1800000059919,-0.05424610714185417 +161237,806.185000005992,-0.05424601980058958 +161238,806.1900000059921,-0.05424593245375903 +161239,806.1950000059923,-0.054245845101361496 +161240,806.2000000059924,-0.05424575774339594 +161241,806.2050000059925,-0.054245670379861353 +161242,806.2100000059926,-0.054245583010756694 +161243,806.2150000059927,-0.05424549563608095 +161244,806.2200000059928,-0.05424540825583307 +161245,806.2250000059929,-0.054245320870012055 +161246,806.230000005993,-0.05424523347861685 +161247,806.2350000059931,-0.054245146081646455 +161248,806.2400000059932,-0.05424505867909982 +161249,806.2450000059933,-0.05424497127097591 +161250,806.2500000059935,-0.05424488385727372 +161251,806.2550000059936,-0.05424479643799221 +161252,806.2600000059937,-0.05424470901313033 +161253,806.2650000059938,-0.05424462158268707 +161254,806.2700000059939,-0.05424453414666141 +161255,806.275000005994,-0.054244446705052296 +161256,806.2800000059941,-0.05424435925785872 +161257,806.2850000059942,-0.05424427180507964 +161258,806.2900000059943,-0.054244184346714006 +161259,806.2950000059944,-0.0542440968827608 +161260,806.3000000059945,-0.054244009413219 +161261,806.3050000059947,-0.054243921938087566 +161262,806.3100000059948,-0.05424383445736547 +161263,806.3150000059949,-0.054243746971051665 +161264,806.320000005995,-0.054243659479145126 +161265,806.3250000059951,-0.054243571981644804 +161266,806.3300000059952,-0.05424348447854969 +161267,806.3350000059953,-0.054243396969858734 +161268,806.3400000059954,-0.05424330945557091 +161269,806.3450000059955,-0.05424322193568517 +161270,806.3500000059956,-0.05424313441020048 +161271,806.3550000059957,-0.054243046879115825 +161272,806.3600000059959,-0.05424295934243014 +161273,806.365000005996,-0.05424287180014241 +161274,806.3700000059961,-0.0542427842522516 +161275,806.3750000059962,-0.05424269669875665 +161276,806.3800000059963,-0.05424260913965654 +161277,806.3850000059964,-0.054242521574950235 +161278,806.3900000059965,-0.05424243400463668 +161279,806.3950000059966,-0.05424234642871485 +161280,806.4000000059967,-0.05424225884718371 +161281,806.4050000059968,-0.0542421712600422 +161282,806.410000005997,-0.05424208366728931 +161283,806.4150000059971,-0.054241996068923985 +161284,806.4200000059972,-0.05424190846494517 +161285,806.4250000059973,-0.05424182085535185 +161286,806.4300000059974,-0.05424173324014296 +161287,806.4350000059975,-0.0542416456193175 +161288,806.4400000059976,-0.05424155799287439 +161289,806.4450000059977,-0.0542414703608126 +161290,806.4500000059978,-0.05424138272313108 +161291,806.4550000059979,-0.054241295079828805 +161292,806.460000005998,-0.05424120743090472 +161293,806.4650000059981,-0.054241119776357795 +161294,806.4700000059983,-0.05424103211618697 +161295,806.4750000059984,-0.05424094445039121 +161296,806.4800000059985,-0.054240856778969476 +161297,806.4850000059986,-0.05424076910192072 +161298,806.4900000059987,-0.0542406814192439 +161299,806.4950000059988,-0.05424059373093796 +161300,806.5000000059989,-0.05424050603700187 +161301,806.505000005999,-0.05424041833743458 +161302,806.5100000059991,-0.05424033063223503 +161303,806.5150000059992,-0.0542402429214022 +161304,806.5200000059993,-0.054240155204935026 +161305,806.5250000059995,-0.05424006748283246 +161306,806.5300000059996,-0.054239979755093475 +161307,806.5350000059997,-0.054239892021717 +161308,806.5400000059998,-0.054239804282701996 +161309,806.5450000059999,-0.05423971653804742 +161310,806.550000006,-0.05423962878775221 +161311,806.5550000060001,-0.05423954103181534 +161312,806.5600000060002,-0.054239453270235743 +161313,806.5650000060003,-0.05423936550301238 +161314,806.5700000060004,-0.0542392777301442 +161315,806.5750000060006,-0.054239189951630136 +161316,806.5800000060007,-0.054239102167469154 +161317,806.5850000060008,-0.05423901437766021 +161318,806.5900000060009,-0.05423892658220224 +161319,806.595000006001,-0.0542388387810942 +161320,806.6000000060011,-0.05423875097433503 +161321,806.6050000060012,-0.054238663161923696 +161322,806.6100000060013,-0.054238575343859126 +161323,806.6150000060014,-0.05423848752014028 +161324,806.6200000060015,-0.054238399690766104 +161325,806.6250000060016,-0.054238311855735535 +161326,806.6300000060018,-0.05423822401504752 +161327,806.6350000060019,-0.05423813616870103 +161328,806.640000006002,-0.05423804831669499 +161329,806.6450000060021,-0.054237960459028345 +161330,806.6500000060022,-0.054237872595700044 +161331,806.6550000060023,-0.05423778472670904 +161332,806.6600000060024,-0.05423769685205427 +161333,806.6650000060025,-0.05423760897173467 +161334,806.6700000060026,-0.05423752108574921 +161335,806.6750000060027,-0.05423743319409681 +161336,806.6800000060028,-0.054237345296776415 +161337,806.685000006003,-0.05423725739378698 +161338,806.6900000060031,-0.05423716948512744 +161339,806.6950000060032,-0.054237081570796736 +161340,806.7000000060033,-0.05423699365079382 +161341,806.7050000060034,-0.05423690572511762 +161342,806.7100000060035,-0.054236817793767086 +161343,806.7150000060036,-0.05423672985674116 +161344,806.7200000060037,-0.054236641914038784 +161345,806.7250000060038,-0.0542365539656589 +161346,806.7300000060039,-0.05423646601160044 +161347,806.735000006004,-0.05423637805186235 +161348,806.7400000060042,-0.05423629008644356 +161349,806.7450000060043,-0.05423620211534302 +161350,806.7500000060044,-0.05423611413855967 +161351,806.7550000060045,-0.05423602615609245 +161352,806.7600000060046,-0.05423593816794029 +161353,806.7650000060047,-0.054235850174102124 +161354,806.7700000060048,-0.05423576217457691 +161355,806.7750000060049,-0.05423567416936356 +161356,806.780000006005,-0.05423558615846103 +161357,806.7850000060051,-0.054235498141868246 +161358,806.7900000060052,-0.05423541011958416 +161359,806.7950000060054,-0.05423532209160769 +161360,806.8000000060055,-0.05423523405793777 +161361,806.8050000060056,-0.05423514601857336 +161362,806.8100000060057,-0.05423505797351336 +161363,806.8150000060058,-0.05423496992275673 +161364,806.8200000060059,-0.054234881866302403 +161365,806.825000006006,-0.054234793804149306 +161366,806.8300000060061,-0.05423470573629638 +161367,806.8350000060062,-0.054234617662742554 +161368,806.8400000060063,-0.05423452958348675 +161369,806.8450000060064,-0.054234441498527915 +161370,806.8500000060066,-0.05423435340786498 +161371,806.8550000060067,-0.054234265311496874 +161372,806.8600000060068,-0.05423417720942253 +161373,806.8650000060069,-0.054234089101640875 +161374,806.870000006007,-0.05423400098815086 +161375,806.8750000060071,-0.05423391286895138 +161376,806.8800000060072,-0.0542338247440414 +161377,806.8850000060073,-0.05423373661341984 +161378,806.8900000060074,-0.05423364847708562 +161379,806.8950000060075,-0.05423356033503768 +161380,806.9000000060076,-0.05423347218727494 +161381,806.9050000060078,-0.05423338403379634 +161382,806.9100000060079,-0.0542332958746008 +161383,806.915000006008,-0.05423320770968725 +161384,806.9200000060081,-0.05423311953905462 +161385,806.9250000060082,-0.05423303136270182 +161386,806.9300000060083,-0.05423294318062782 +161387,806.9350000060084,-0.05423285499283151 +161388,806.9400000060085,-0.05423276679931182 +161389,806.9450000060086,-0.05423267860006769 +161390,806.9500000060087,-0.05423259039509804 +161391,806.9550000060088,-0.054232502184401794 +161392,806.960000006009,-0.05423241396797788 +161393,806.9650000060091,-0.054232325745825226 +161394,806.9700000060092,-0.054232237517942754 +161395,806.9750000060093,-0.05423214928432938 +161396,806.9800000060094,-0.054232061044984035 +161397,806.9850000060095,-0.05423197279990565 +161398,806.9900000060096,-0.05423188454909314 +161399,806.9950000060097,-0.054231796292545424 +161400,807.0000000060098,-0.05423170803026143 +161401,807.0050000060099,-0.05423161976224007 +161402,807.01000000601,-0.05423153148848029 +161403,807.0150000060102,-0.05423144320898099 +161404,807.0200000060103,-0.05423135492374111 +161405,807.0250000060104,-0.054231266632759546 +161406,807.0300000060105,-0.05423117833603523 +161407,807.0350000060106,-0.05423109003356709 +161408,807.0400000060107,-0.054231001725354035 +161409,807.0450000060108,-0.05423091341139499 +161410,807.0500000060109,-0.05423082509168889 +161411,807.055000006011,-0.054230736766234626 +161412,807.0600000060111,-0.05423064843503114 +161413,807.0650000060112,-0.05423056009807735 +161414,807.0700000060114,-0.05423047175537215 +161415,807.0750000060115,-0.05423038340691449 +161416,807.0800000060116,-0.054230295052703256 +161417,807.0850000060117,-0.054230206692737384 +161418,807.0900000060118,-0.054230118327015776 +161419,807.0950000060119,-0.054230029955537364 +161420,807.100000006012,-0.05422994157830105 +161421,807.1050000060121,-0.054229853195305766 +161422,807.1100000060122,-0.05422976480655042 +161423,807.1150000060123,-0.054229676412033925 +161424,807.1200000060124,-0.054229588011755196 +161425,807.1250000060126,-0.05422949960571316 +161426,807.1300000060127,-0.054229411193906715 +161427,807.1350000060128,-0.05422932277633477 +161428,807.1400000060129,-0.054229234352996245 +161429,807.145000006013,-0.05422914592389006 +161430,807.1500000060131,-0.05422905748901512 +161431,807.1550000060132,-0.054228969048370344 +161432,807.1600000060133,-0.054228880601954646 +161433,807.1650000060134,-0.05422879214976693 +161434,807.1700000060135,-0.054228703691806115 +161435,807.1750000060136,-0.054228615228071105 +161436,807.1800000060138,-0.05422852675856082 +161437,807.1850000060139,-0.05422843828327416 +161438,807.190000006014,-0.05422834980221004 +161439,807.1950000060141,-0.054228261315367364 +161440,807.2000000060142,-0.05422817282274505 +161441,807.2050000060143,-0.05422808432434201 +161442,807.2100000060144,-0.05422799582015714 +161443,807.2150000060145,-0.05422790731018935 +161444,807.2200000060146,-0.054227818794437554 +161445,807.2250000060147,-0.05422773027290066 +161446,807.2300000060148,-0.05422764174557757 +161447,807.235000006015,-0.0542275532124672 +161448,807.2400000060151,-0.05422746467356845 +161449,807.2450000060152,-0.05422737612888023 +161450,807.2500000060153,-0.05422728757840143 +161451,807.2550000060154,-0.05422719902213099 +161452,807.2600000060155,-0.05422711046006779 +161453,807.2650000060156,-0.05422702189221074 +161454,807.2700000060157,-0.054226933318558754 +161455,807.2750000060158,-0.05422684473911072 +161456,807.2800000060159,-0.05422675615386555 +161457,807.285000006016,-0.05422666756282214 +161458,807.2900000060162,-0.05422657896597941 +161459,807.2950000060163,-0.05422649036333625 +161460,807.3000000060164,-0.05422640175489157 +161461,807.3050000060165,-0.054226313140644265 +161462,807.3100000060166,-0.05422622452059325 +161463,807.3150000060167,-0.05422613589473741 +161464,807.3200000060168,-0.05422604726307566 +161465,807.3250000060169,-0.0542259586256069 +161466,807.330000006017,-0.05422586998233001 +161467,807.3350000060171,-0.05422578133324392 +161468,807.3400000060172,-0.0542256926783475 +161469,807.3450000060174,-0.054225604017639685 +161470,807.3500000060175,-0.054225515351119344 +161471,807.3550000060176,-0.05422542667878538 +161472,807.3600000060177,-0.05422533800063671 +161473,807.3650000060178,-0.05422524931667222 +161474,807.3700000060179,-0.05422516062689081 +161475,807.375000006018,-0.054225071931291384 +161476,807.3800000060181,-0.05422498322987282 +161477,807.3850000060182,-0.05422489452263403 +161478,807.3900000060183,-0.05422480580957392 +161479,807.3950000060184,-0.05422471709069137 +161480,807.4000000060186,-0.05422462836598528 +161481,807.4050000060187,-0.05422453963545455 +161482,807.4100000060188,-0.054224450899098074 +161483,807.4150000060189,-0.054224362156914736 +161484,807.420000006019,-0.05422427340890344 +161485,807.4250000060191,-0.05422418465506308 +161486,807.4300000060192,-0.05422409589539255 +161487,807.4350000060193,-0.05422400712989075 +161488,807.4400000060194,-0.05422391835855656 +161489,807.4450000060195,-0.05422382958138888 +161490,807.4500000060196,-0.0542237407983866 +161491,807.4550000060198,-0.054223652009548616 +161492,807.4600000060199,-0.05422356321487382 +161493,807.46500000602,-0.05422347441436111 +161494,807.4700000060201,-0.05422338560800935 +161495,807.4750000060202,-0.054223296795817465 +161496,807.4800000060203,-0.05422320797778433 +161497,807.4850000060204,-0.05422311915390883 +161498,807.4900000060205,-0.05422303032418987 +161499,807.4950000060206,-0.05422294148862632 +161500,807.5000000060207,-0.05422285264721708 +161501,807.5050000060209,-0.05422276379996104 +161502,807.510000006021,-0.0542226749468571 +161503,807.5150000060211,-0.05422258608790412 +161504,807.5200000060212,-0.054222497223101004 +161505,807.5250000060213,-0.054222408352446634 +161506,807.5300000060214,-0.05422231947593991 +161507,807.5350000060215,-0.05422223059357971 +161508,807.5400000060216,-0.05422214170536492 +161509,807.5450000060217,-0.05422205281129442 +161510,807.5500000060218,-0.05422196391136711 +161511,807.5550000060219,-0.054221875005581864 +161512,807.560000006022,-0.05422178609393757 +161513,807.5650000060222,-0.05422169717643311 +161514,807.5700000060223,-0.05422160825306738 +161515,807.5750000060224,-0.05422151932383925 +161516,807.5800000060225,-0.054221430388747605 +161517,807.5850000060226,-0.054221341447791345 +161518,807.5900000060227,-0.05422125250096934 +161519,807.5950000060228,-0.05422116354828047 +161520,807.6000000060229,-0.05422107458972363 +161521,807.605000006023,-0.05422098562529769 +161522,807.6100000060231,-0.05422089665500152 +161523,807.6150000060233,-0.05422080767883403 +161524,807.6200000060234,-0.054220718696794096 +161525,807.6250000060235,-0.05422062970888058 +161526,807.6300000060236,-0.05422054071509237 +161527,807.6350000060237,-0.05422045171542835 +161528,807.6400000060238,-0.0542203627098874 +161529,807.6450000060239,-0.054220273698468394 +161530,807.650000006024,-0.05422018468117021 +161531,807.6550000060241,-0.05422009565799173 +161532,807.6600000060242,-0.054220006628931845 +161533,807.6650000060243,-0.054219917593989406 +161534,807.6700000060245,-0.05421982855316331 +161535,807.6750000060246,-0.05421973950645243 +161536,807.6800000060247,-0.054219650453855635 +161537,807.6850000060248,-0.05421956139537181 +161538,807.6900000060249,-0.054219472330999836 +161539,807.695000006025,-0.05421938326073858 +161540,807.7000000060251,-0.05421929418458693 +161541,807.7050000060252,-0.054219205102543744 +161542,807.7100000060253,-0.054219116014607896 +161543,807.7150000060254,-0.05421902692077828 +161544,807.7200000060255,-0.05421893782105374 +161545,807.7250000060257,-0.054218848715433185 +161546,807.7300000060258,-0.05421875960391546 +161547,807.7350000060259,-0.05421867048649945 +161548,807.740000006026,-0.05421858136318403 +161549,807.7450000060261,-0.05421849223396808 +161550,807.7500000060262,-0.05421840309885045 +161551,807.7550000060263,-0.05421831395783002 +161552,807.7600000060264,-0.05421822481090567 +161553,807.7650000060265,-0.05421813565807627 +161554,807.7700000060266,-0.05421804649934067 +161555,807.7750000060267,-0.054217957334697774 +161556,807.7800000060269,-0.05421786816414643 +161557,807.785000006027,-0.054217778987685504 +161558,807.7900000060271,-0.054217689805313884 +161559,807.7950000060272,-0.05421760061703042 +161560,807.8000000060273,-0.05421751142283398 +161561,807.8050000060274,-0.054217422222723445 +161562,807.8100000060275,-0.05421733301669768 +161563,807.8150000060276,-0.05421724380475555 +161564,807.8200000060277,-0.05421715458689593 +161565,807.8250000060278,-0.05421706536311767 +161566,807.830000006028,-0.05421697613341965 +161567,807.835000006028,-0.05421688689780072 +161568,807.8400000060282,-0.05421679765625976 +161569,807.8450000060283,-0.054216708408795625 +161570,807.8500000060284,-0.0542166191554072 +161571,807.8550000060285,-0.05421652989609334 +161572,807.8600000060286,-0.0542164406308529 +161573,807.8650000060287,-0.05421635135968475 +161574,807.8700000060288,-0.054216262082587764 +161575,807.8750000060289,-0.05421617279956078 +161576,807.880000006029,-0.05421608351060269 +161577,807.8850000060291,-0.054215994215712326 +161578,807.8900000060293,-0.054215904914888584 +161579,807.8950000060294,-0.054215815608130304 +161580,807.9000000060295,-0.05421572629543634 +161581,807.9050000060296,-0.05421563697680557 +161582,807.9100000060297,-0.05421554765223685 +161583,807.9150000060298,-0.05421545832172905 +161584,807.9200000060299,-0.054215368985281 +161585,807.92500000603,-0.054215279642891606 +161586,807.9300000060301,-0.05421519029455969 +161587,807.9350000060302,-0.05421510094028412 +161588,807.9400000060303,-0.05421501158006376 +161589,807.9450000060305,-0.05421492221389747 +161590,807.9500000060306,-0.05421483284178409 +161591,807.9550000060307,-0.0542147434637225 +161592,807.9600000060308,-0.05421465407971155 +161593,807.9650000060309,-0.05421456468975009 +161594,807.970000006031,-0.05421447529383699 +161595,807.9750000060311,-0.05421438589197109 +161596,807.9800000060312,-0.05421429648415126 +161597,807.9850000060313,-0.05421420707037635 +161598,807.9900000060314,-0.05421411765064521 +161599,807.9950000060315,-0.0542140282249567 +161600,808.0000000060317,-0.054213938793309664 +161601,808.0050000060318,-0.054213849355702975 +161602,808.0100000060319,-0.05421375991213547 +161603,808.015000006032,-0.05421367046260602 +161604,808.0200000060321,-0.05421358100711346 +161605,808.0250000060322,-0.054213491545656654 +161606,808.0300000060323,-0.054213402078234454 +161607,808.0350000060324,-0.054213312604845715 +161608,808.0400000060325,-0.05421322312548928 +161609,808.0450000060326,-0.054213133640164 +161610,808.0500000060327,-0.05421304414886873 +161611,808.0550000060329,-0.05421295465160232 +161612,808.060000006033,-0.054212865148363605 +161613,808.0650000060331,-0.05421277563915146 +161614,808.0700000060332,-0.054212686123964716 +161615,808.0750000060333,-0.05421259660280224 +161616,808.0800000060334,-0.05421250707566286 +161617,808.0850000060335,-0.05421241754254544 +161618,808.0900000060336,-0.05421232800344882 +161619,808.0950000060337,-0.05421223845837186 +161620,808.1000000060338,-0.05421214890731339 +161621,808.105000006034,-0.05421205935027227 +161622,808.110000006034,-0.05421196978724734 +161623,808.1150000060342,-0.05421188021823744 +161624,808.1200000060343,-0.05421179064324143 +161625,808.1250000060344,-0.054211701062258144 +161626,808.1300000060345,-0.054211611475286435 +161627,808.1350000060346,-0.05421152188232514 +161628,808.1400000060347,-0.054211432283373114 +161629,808.1450000060348,-0.05421134267842919 +161630,808.1500000060349,-0.05421125306749222 +161631,808.155000006035,-0.054211163450561047 +161632,808.1600000060351,-0.05421107382763451 +161633,808.1650000060353,-0.05421098419871146 +161634,808.1700000060354,-0.05421089456379073 +161635,808.1750000060355,-0.05421080492287116 +161636,808.1800000060356,-0.0542107152759516 +161637,808.1850000060357,-0.054210625623030896 +161638,808.1900000060358,-0.05421053596410786 +161639,808.1950000060359,-0.05421044629918137 +161640,808.200000006036,-0.05421035662825024 +161641,808.2050000060361,-0.05421026695131331 +161642,808.2100000060362,-0.05421017726836945 +161643,808.2150000060363,-0.05421008757941746 +161644,808.2200000060365,-0.0542099978844562 +161645,808.2250000060366,-0.05420990818348451 +161646,808.2300000060367,-0.05420981847650123 +161647,808.2350000060368,-0.05420972876350517 +161648,808.2400000060369,-0.05420963904449519 +161649,808.245000006037,-0.05420954931947013 +161650,808.2500000060371,-0.054209459588428814 +161651,808.2550000060372,-0.0542093698513701 +161652,808.2600000060373,-0.054209280108292804 +161653,808.2650000060374,-0.05420919035919576 +161654,808.2700000060375,-0.05420910060407782 +161655,808.2750000060377,-0.054209010842937805 +161656,808.2800000060378,-0.05420892107577454 +161657,808.2850000060379,-0.054208831302586885 +161658,808.290000006038,-0.05420874152337366 +161659,808.2950000060381,-0.0542086517381337 +161660,808.3000000060382,-0.05420856194686583 +161661,808.3050000060383,-0.05420847214956889 +161662,808.3100000060384,-0.05420838234624171 +161663,808.3150000060385,-0.05420829253688312 +161664,808.3200000060386,-0.05420820272149196 +161665,808.3250000060387,-0.05420811290006705 +161666,808.3300000060389,-0.054208023072607234 +161667,808.335000006039,-0.05420793323911133 +161668,808.3400000060391,-0.05420784339957817 +161669,808.3450000060392,-0.05420775355400659 +161670,808.3500000060393,-0.05420766370239542 +161671,808.3550000060394,-0.05420757384474348 +161672,808.3600000060395,-0.05420748398104961 +161673,808.3650000060396,-0.054207394111312625 +161674,808.3700000060397,-0.05420730423553137 +161675,808.3750000060398,-0.05420721435370466 +161676,808.38000000604,-0.05420712446583131 +161677,808.3850000060401,-0.05420703457191017 +161678,808.3900000060402,-0.054206944671940066 +161679,808.3950000060403,-0.0542068547659198 +161680,808.4000000060404,-0.05420676485384821 +161681,808.4050000060405,-0.05420667493572414 +161682,808.4100000060406,-0.0542065850115464 +161683,808.4150000060407,-0.0542064950813138 +161684,808.4200000060408,-0.054206405145025185 +161685,808.4250000060409,-0.05420631520267938 +161686,808.430000006041,-0.05420622525427518 +161687,808.4350000060412,-0.05420613529981145 +161688,808.4400000060413,-0.05420604533928699 +161689,808.4450000060414,-0.054205955372700614 +161690,808.4500000060415,-0.05420586540005115 +161691,808.4550000060416,-0.054205775421337435 +161692,808.4600000060417,-0.05420568543655827 +161693,808.4650000060418,-0.05420559544571249 +161694,808.4700000060419,-0.0542055054487989 +161695,808.475000006042,-0.05420541544581634 +161696,808.4800000060421,-0.05420532543676362 +161697,808.4850000060422,-0.05420523542163956 +161698,808.4900000060424,-0.054205145400442974 +161699,808.4950000060425,-0.05420505537317268 +161700,808.5000000060426,-0.054204965339827514 +161701,808.5050000060427,-0.054204875300406276 +161702,808.5100000060428,-0.054204785254907795 +161703,808.5150000060429,-0.05420469520333087 +161704,808.520000006043,-0.05420460514567434 +161705,808.5250000060431,-0.05420451508193701 +161706,808.5300000060432,-0.054204425012117696 +161707,808.5350000060433,-0.054204334936215216 +161708,808.5400000060434,-0.054204244854228395 +161709,808.5450000060436,-0.054204154766156025 +161710,808.5500000060437,-0.054204064671996934 +161711,808.5550000060438,-0.05420397457174994 +161712,808.5600000060439,-0.054203884465413854 +161713,808.565000006044,-0.054203794352987486 +161714,808.5700000060441,-0.05420370423446966 +161715,808.5750000060442,-0.054203614109859174 +161716,808.5800000060443,-0.05420352397915485 +161717,808.5850000060444,-0.05420343384235549 +161718,808.5900000060445,-0.05420334369945992 +161719,808.5950000060446,-0.05420325355046694 +161720,808.6000000060448,-0.05420316339537537 +161721,808.6050000060449,-0.05420307323418402 +161722,808.610000006045,-0.05420298306689169 +161723,808.6150000060451,-0.054202892893497195 +161724,808.6200000060452,-0.05420280271399935 +161725,808.6250000060453,-0.05420271252839696 +161726,808.6300000060454,-0.054202622336688835 +161727,808.6350000060455,-0.05420253213887378 +161728,808.6400000060456,-0.0542024419349506 +161729,808.6450000060457,-0.0542023517249181 +161730,808.6500000060458,-0.05420226150877511 +161731,808.655000006046,-0.05420217128652041 +161732,808.6600000060461,-0.05420208105815283 +161733,808.6650000060462,-0.05420199082367115 +161734,808.6700000060463,-0.054201900583074204 +161735,808.6750000060464,-0.05420181033636078 +161736,808.6800000060465,-0.05420172008352968 +161737,808.6850000060466,-0.05420162982457971 +161738,808.6900000060467,-0.05420153955950968 +161739,808.6950000060468,-0.0542014492883184 +161740,808.7000000060469,-0.05420135901100467 +161741,808.705000006047,-0.05420126872756728 +161742,808.7100000060472,-0.05420117843800506 +161743,808.7150000060473,-0.05420108814231678 +161744,808.7200000060474,-0.05420099784050126 +161745,808.7250000060475,-0.054200907532557296 +161746,808.7300000060476,-0.054200817218483695 +161747,808.7350000060477,-0.05420072689827926 +161748,808.7400000060478,-0.05420063657194278 +161749,808.7450000060479,-0.05420054623947307 +161750,808.750000006048,-0.054200455900868916 +161751,808.7550000060481,-0.05420036555612913 +161752,808.7600000060482,-0.054200275205252495 +161753,808.7650000060484,-0.054200184848237826 +161754,808.7700000060485,-0.05420009448508391 +161755,808.7750000060486,-0.05420000411578954 +161756,808.7800000060487,-0.054199913740353524 +161757,808.7850000060488,-0.054199823358774664 +161758,808.7900000060489,-0.054199732971051746 +161759,808.795000006049,-0.05419964257718357 +161760,808.8000000060491,-0.054199552177168944 +161761,808.8050000060492,-0.05419946177100664 +161762,808.8100000060493,-0.05419937135869547 +161763,808.8150000060494,-0.05419928094023423 +161764,808.8200000060496,-0.054199190515621706 +161765,808.8250000060497,-0.0541991000848567 +161766,808.8300000060498,-0.05419900964793799 +161767,808.8350000060499,-0.05419891920486438 +161768,808.84000000605,-0.05419882875563466 +161769,808.8450000060501,-0.05419873830024764 +161770,808.8500000060502,-0.05419864783870209 +161771,808.8550000060503,-0.05419855737099681 +161772,808.8600000060504,-0.0541984668971306 +161773,808.8650000060505,-0.05419837641710224 +161774,808.8700000060506,-0.054198285930910514 +161775,808.8750000060508,-0.05419819543855424 +161776,808.8800000060509,-0.05419810494003218 +161777,808.885000006051,-0.05419801443534314 +161778,808.8900000060511,-0.05419792392448589 +161779,808.8950000060512,-0.05419783340745924 +161780,808.9000000060513,-0.05419774288426197 +161781,808.9050000060514,-0.05419765235489287 +161782,808.9100000060515,-0.054197561819350724 +161783,808.9150000060516,-0.05419747127763432 +161784,808.9200000060517,-0.05419738072974245 +161785,808.9250000060518,-0.0541972901756739 +161786,808.930000006052,-0.054197199615427454 +161787,808.9350000060521,-0.05419710904900189 +161788,808.9400000060522,-0.05419701847639601 +161789,808.9450000060523,-0.05419692789760859 +161790,808.9500000060524,-0.054196837312638406 +161791,808.9550000060525,-0.05419674672148426 +161792,808.9600000060526,-0.054196656124144926 +161793,808.9650000060527,-0.054196565520619175 +161794,808.9700000060528,-0.05419647491090581 +161795,808.9750000060529,-0.0541963842950036 +161796,808.980000006053,-0.05419629367291134 +161797,808.9850000060532,-0.05419620304462781 +161798,808.9900000060533,-0.054196112410151785 +161799,808.9950000060534,-0.054196021769482045 +161800,809.0000000060535,-0.054195931122617384 +161801,809.0050000060536,-0.054195840469556576 +161802,809.0100000060537,-0.0541957498102984 +161803,809.0150000060538,-0.05419565914484163 +161804,809.0200000060539,-0.054195568473185046 +161805,809.025000006054,-0.054195477795327435 +161806,809.0300000060541,-0.054195387111267576 +161807,809.0350000060542,-0.05419529642100424 +161808,809.0400000060544,-0.05419520572453621 +161809,809.0450000060545,-0.054195115021862264 +161810,809.0500000060546,-0.05419502431298118 +161811,809.0550000060547,-0.05419493359789172 +161812,809.0600000060548,-0.05419484287659267 +161813,809.0650000060549,-0.054194752149082814 +161814,809.070000006055,-0.054194661415360924 +161815,809.0750000060551,-0.05419457067542577 +161816,809.0800000060552,-0.05419447992927611 +161817,809.0850000060553,-0.05419438917691076 +161818,809.0900000060554,-0.05419429841832846 +161819,809.0950000060556,-0.054194207653528 +161820,809.1000000060557,-0.05419411688250814 +161821,809.1050000060558,-0.05419402610526767 +161822,809.1100000060559,-0.054193935321805345 +161823,809.115000006056,-0.05419384453211996 +161824,809.1200000060561,-0.05419375373621026 +161825,809.1250000060562,-0.05419366293407502 +161826,809.1300000060563,-0.05419357212571303 +161827,809.1350000060564,-0.05419348131112305 +161828,809.1400000060565,-0.054193390490303854 +161829,809.1450000060566,-0.05419329966325421 +161830,809.1500000060568,-0.054193208829972875 +161831,809.1550000060569,-0.05419311799045863 +161832,809.160000006057,-0.05419302714471024 +161833,809.1650000060571,-0.054192936292726486 +161834,809.1700000060572,-0.054192845434506115 +161835,809.1750000060573,-0.054192754570047894 +161836,809.1800000060574,-0.05419266369935062 +161837,809.1850000060575,-0.05419257282241303 +161838,809.1900000060576,-0.0541924819392339 +161839,809.1950000060577,-0.054192391049812 +161840,809.2000000060578,-0.0541923001541461 +161841,809.205000006058,-0.054192209252234946 +161842,809.2100000060581,-0.05419211834407731 +161843,809.2150000060582,-0.05419202742967197 +161844,809.2200000060583,-0.054191936509017664 +161845,809.2250000060584,-0.05419184558211317 +161846,809.2300000060585,-0.05419175464895727 +161847,809.2350000060586,-0.054191663709548706 +161848,809.2400000060587,-0.054191572763886246 +161849,809.2450000060588,-0.054191481811968645 +161850,809.2500000060589,-0.05419139085379466 +161851,809.255000006059,-0.05419129988936307 +161852,809.2600000060592,-0.054191208918672615 +161853,809.2650000060593,-0.054191117941722086 +161854,809.2700000060594,-0.054191026958510205 +161855,809.2750000060595,-0.054190935969035764 +161856,809.2800000060596,-0.0541908449732975 +161857,809.2850000060597,-0.054190753971294185 +161858,809.2900000060598,-0.05419066296302458 +161859,809.2950000060599,-0.054190571948487434 +161860,809.30000000606,-0.05419048092768151 +161861,809.3050000060601,-0.05419038990060557 +161862,809.3100000060602,-0.05419029886725835 +161863,809.3150000060604,-0.05419020782763863 +161864,809.3200000060605,-0.054190116781745165 +161865,809.3250000060606,-0.054190025729576694 +161866,809.3300000060607,-0.05418993467113198 +161867,809.3350000060608,-0.054189843606409785 +161868,809.3400000060609,-0.05418975253540884 +161869,809.345000006061,-0.05418966145812793 +161870,809.3500000060611,-0.05418957037456579 +161871,809.3550000060612,-0.05418947928472119 +161872,809.3600000060613,-0.05418938818859286 +161873,809.3650000060615,-0.05418929708617957 +161874,809.3700000060616,-0.05418920597748006 +161875,809.3750000060617,-0.0541891148624931 +161876,809.3800000060618,-0.054189023741217424 +161877,809.3850000060619,-0.054188932613651805 +161878,809.390000006062,-0.05418884147979496 +161879,809.3950000060621,-0.05418875033964567 +161880,809.4000000060622,-0.05418865919320267 +161881,809.4050000060623,-0.0541885680404647 +161882,809.4100000060624,-0.05418847688143053 +161883,809.4150000060625,-0.054188385716098894 +161884,809.4200000060627,-0.05418829454446855 +161885,809.4250000060628,-0.054188203366538235 +161886,809.4300000060629,-0.054188112182306715 +161887,809.435000006063,-0.054188020991772716 +161888,809.4400000060631,-0.054187929794935 +161889,809.4450000060632,-0.05418783859179231 +161890,809.4500000060633,-0.05418774738234339 +161891,809.4550000060634,-0.054187656166586974 +161892,809.4600000060635,-0.05418756494452182 +161893,809.4650000060636,-0.054187473716146684 +161894,809.4700000060637,-0.05418738248146029 +161895,809.4750000060639,-0.05418729124046139 +161896,809.480000006064,-0.05418719999314873 +161897,809.4850000060641,-0.05418710873952104 +161898,809.4900000060642,-0.05418701747957708 +161899,809.4950000060643,-0.05418692621331558 +161900,809.5000000060644,-0.054186834940735285 +161901,809.5050000060645,-0.05418674366183494 +161902,809.5100000060646,-0.054186652376613284 +161903,809.5150000060647,-0.05418656108506906 +161904,809.5200000060648,-0.05418646978720101 +161905,809.5250000060649,-0.05418637848300787 +161906,809.530000006065,-0.05418628717248838 +161907,809.5350000060652,-0.05418619585564127 +161908,809.5400000060653,-0.05418610453246531 +161909,809.5450000060654,-0.0541860132029592 +161910,809.5500000060655,-0.054185921867121706 +161911,809.5550000060656,-0.05418583052495156 +161912,809.5600000060657,-0.054185739176447485 +161913,809.5650000060658,-0.05418564782160823 +161914,809.5700000060659,-0.05418555646043252 +161915,809.575000006066,-0.054185465092919105 +161916,809.5800000060661,-0.054185373719066704 +161917,809.5850000060663,-0.054185282338874076 +161918,809.5900000060664,-0.05418519095233994 +161919,809.5950000060665,-0.054185099559463025 +161920,809.6000000060666,-0.054185008160242076 +161921,809.6050000060667,-0.05418491675467583 +161922,809.6100000060668,-0.054184825342763004 +161923,809.6150000060669,-0.054184733924502355 +161924,809.620000006067,-0.05418464249989259 +161925,809.6250000060671,-0.05418455106893247 +161926,809.6300000060672,-0.0541844596316207 +161927,809.6350000060673,-0.05418436818795601 +161928,809.6400000060675,-0.05418427673793715 +161929,809.6450000060676,-0.054184185281562845 +161930,809.6500000060677,-0.05418409381883181 +161931,809.6550000060678,-0.0541840023497428 +161932,809.6600000060679,-0.05418391087429453 +161933,809.665000006068,-0.05418381939248572 +161934,809.6700000060681,-0.05418372790431511 +161935,809.6750000060682,-0.05418363640978142 +161936,809.6800000060683,-0.05418354490888338 +161937,809.6850000060684,-0.05418345340161973 +161938,809.6900000060685,-0.054183361887989195 +161939,809.6950000060687,-0.05418327036799049 +161940,809.7000000060688,-0.05418317884162234 +161941,809.7050000060689,-0.05418308730888347 +161942,809.710000006069,-0.05418299576977262 +161943,809.7150000060691,-0.054182904224288495 +161944,809.7200000060692,-0.05418281267242983 +161945,809.7250000060693,-0.05418272111419536 +161946,809.7300000060694,-0.0541826295495838 +161947,809.7350000060695,-0.054182537978593855 +161948,809.7400000060696,-0.05418244640122427 +161949,809.7450000060697,-0.054182354817473764 +161950,809.7500000060699,-0.05418226322734106 +161951,809.75500000607,-0.05418217163082485 +161952,809.7600000060701,-0.05418208002792391 +161953,809.7650000060702,-0.0541819884186369 +161954,809.7700000060703,-0.0541818968029626 +161955,809.7750000060704,-0.05418180518089969 +161956,809.7800000060705,-0.05418171355244689 +161957,809.7850000060706,-0.05418162191760294 +161958,809.7900000060707,-0.054181530276366546 +161959,809.7950000060708,-0.05418143862873643 +161960,809.800000006071,-0.05418134697471132 +161961,809.805000006071,-0.05418125531428991 +161962,809.8100000060712,-0.05418116364747094 +161963,809.8150000060713,-0.05418107197425311 +161964,809.8200000060714,-0.054180980294635146 +161965,809.8250000060715,-0.05418088860861576 +161966,809.8300000060716,-0.05418079691619367 +161967,809.8350000060717,-0.05418070521736759 +161968,809.8400000060718,-0.05418061351213623 +161969,809.8450000060719,-0.054180521800498316 +161970,809.850000006072,-0.054180430082452546 +161971,809.8550000060721,-0.05418033835799764 +161972,809.8600000060723,-0.054180246627132306 +161973,809.8650000060724,-0.054180154889855274 +161974,809.8700000060725,-0.05418006314616524 +161975,809.8750000060726,-0.05417997139606092 +161976,809.8800000060727,-0.05417987963954103 +161977,809.8850000060728,-0.05417978787660427 +161978,809.8900000060729,-0.054179696107249355 +161979,809.895000006073,-0.054179604331475006 +161980,809.9000000060731,-0.05417951254927992 +161981,809.9050000060732,-0.05417942076066282 +161982,809.9100000060733,-0.05417932896562241 +161983,809.9150000060735,-0.05417923716415739 +161984,809.9200000060736,-0.05417914535626646 +161985,809.9250000060737,-0.05417905354194835 +161986,809.9300000060738,-0.05417896172120176 +161987,809.9350000060739,-0.0541788698940254 +161988,809.940000006074,-0.05417877806041797 +161989,809.9450000060741,-0.05417868622037817 +161990,809.9500000060742,-0.054178594373904716 +161991,809.9550000060743,-0.054178502520996305 +161992,809.9600000060744,-0.05417841066165165 +161993,809.9650000060745,-0.05417831879586946 +161994,809.9700000060747,-0.054178226923648425 +161995,809.9750000060748,-0.05417813504498726 +161996,809.9800000060749,-0.05417804315988467 +161997,809.985000006075,-0.054177951268339346 +161998,809.9900000060751,-0.054177859370349996 +161999,809.9950000060752,-0.05417776746591531 +162000,810.0000000060753,-0.05417767555503401 +162001,810.0050000060754,-0.0541775836377048 +162002,810.0100000060755,-0.05417749171392636 +162003,810.0150000060756,-0.0541773997836974 +162004,810.0200000060757,-0.054177307847016624 +162005,810.0250000060759,-0.05417721590388271 +162006,810.030000006076,-0.05417712395429439 +162007,810.0350000060761,-0.054177031998250344 +162008,810.0400000060762,-0.05417694003574927 +162009,810.0450000060763,-0.05417684806678987 +162010,810.0500000060764,-0.05417675609137085 +162011,810.0550000060765,-0.05417666410949089 +162012,810.0600000060766,-0.054176572121148694 +162013,810.0650000060767,-0.054176480126342956 +162014,810.0700000060768,-0.05417638812507237 +162015,810.075000006077,-0.05417629611733564 +162016,810.0800000060771,-0.05417620410313145 +162017,810.0850000060772,-0.05417611208245852 +162018,810.0900000060773,-0.05417602005531551 +162019,810.0950000060774,-0.054175928021701125 +162020,810.1000000060775,-0.05417583598161407 +162021,810.1050000060776,-0.05417574393505303 +162022,810.1100000060777,-0.054175651882016694 +162023,810.1150000060778,-0.05417555982250376 +162024,810.1200000060779,-0.05417546775651292 +162025,810.125000006078,-0.05417537568404286 +162026,810.1300000060781,-0.05417528360509228 +162027,810.1350000060783,-0.05417519151965985 +162028,810.1400000060784,-0.054175099427744275 +162029,810.1450000060785,-0.054175007329344244 +162030,810.1500000060786,-0.05417491522445845 +162031,810.1550000060787,-0.054174823113085566 +162032,810.1600000060788,-0.05417473099522431 +162033,810.1650000060789,-0.054174638870873336 +162034,810.170000006079,-0.05417454674003136 +162035,810.1750000060791,-0.054174454602697056 +162036,810.1800000060792,-0.0541743624588691 +162037,810.1850000060793,-0.054174270308546185 +162038,810.1900000060795,-0.05417417815172701 +162039,810.1950000060796,-0.05417408598841024 +162040,810.2000000060797,-0.054173993818594585 +162041,810.2050000060798,-0.054173901642278706 +162042,810.2100000060799,-0.0541738094594613 +162043,810.21500000608,-0.054173717270141045 +162044,810.2200000060801,-0.05417362507431662 +162045,810.2250000060802,-0.05417353287198672 +162046,810.2300000060803,-0.05417344066315002 +162047,810.2350000060804,-0.05417334844780521 +162048,810.2400000060805,-0.05417325622595097 +162049,810.2450000060807,-0.05417316399758596 +162050,810.2500000060808,-0.054173071762708885 +162051,810.2550000060809,-0.05417297952131843 +162052,810.260000006081,-0.05417288727341324 +162053,810.2650000060811,-0.05417279501899202 +162054,810.2700000060812,-0.05417270275805345 +162055,810.2750000060813,-0.0541726104905962 +162056,810.2800000060814,-0.054172518216618955 +162057,810.2850000060815,-0.05417242593612039 +162058,810.2900000060816,-0.05417233364909919 +162059,810.2950000060818,-0.05417224135555402 +162060,810.3000000060819,-0.05417214905548357 +162061,810.305000006082,-0.054172056748886505 +162062,810.3100000060821,-0.05417196443576151 +162063,810.3150000060822,-0.05417187211610725 +162064,810.3200000060823,-0.054171779789922395 +162065,810.3250000060824,-0.05417168745720564 +162066,810.3300000060825,-0.054171595117955634 +162067,810.3350000060826,-0.054171502772171067 +162068,810.3400000060827,-0.054171410419850616 +162069,810.3450000060828,-0.05417131806099294 +162070,810.350000006083,-0.054171225695596736 +162071,810.3550000060831,-0.05417113332366064 +162072,810.3600000060832,-0.05417104094518335 +162073,810.3650000060833,-0.05417094856016352 +162074,810.3700000060834,-0.05417085616859984 +162075,810.3750000060835,-0.054170763770490966 +162076,810.3800000060836,-0.054170671365835574 +162077,810.3850000060837,-0.05417057895463232 +162078,810.3900000060838,-0.05417048653687989 +162079,810.3950000060839,-0.054170394112576944 +162080,810.400000006084,-0.054170301681722155 +162081,810.4050000060842,-0.054170209244314184 +162082,810.4100000060843,-0.054170116800351706 +162083,810.4150000060844,-0.05417002434983338 +162084,810.4200000060845,-0.054169931892757886 +162085,810.4250000060846,-0.05416983942912387 +162086,810.4300000060847,-0.05416974695893001 +162087,810.4350000060848,-0.054169654482174964 +162088,810.4400000060849,-0.054169561998857405 +162089,810.445000006085,-0.05416946950897599 +162090,810.4500000060851,-0.0541693770125294 +162091,810.4550000060852,-0.054169284509516274 +162092,810.4600000060854,-0.05416919199993529 +162093,810.4650000060855,-0.05416909948378512 +162094,810.4700000060856,-0.0541690069610644 +162095,810.4750000060857,-0.05416891443177181 +162096,810.4800000060858,-0.05416882189590601 +162097,810.4850000060859,-0.05416872935346565 +162098,810.490000006086,-0.054168636804449395 +162099,810.4950000060861,-0.05416854424885591 +162100,810.5000000060862,-0.054168451686683855 +162101,810.5050000060863,-0.05416835911793187 +162102,810.5100000060864,-0.054168266542598646 +162103,810.5150000060866,-0.054168173960682825 +162104,810.5200000060867,-0.054168081372183055 +162105,810.5250000060868,-0.054167988777098004 +162106,810.5300000060869,-0.05416789617542633 +162107,810.535000006087,-0.0541678035671667 +162108,810.5400000060871,-0.054167710952317746 +162109,810.5450000060872,-0.054167618330878145 +162110,810.5500000060873,-0.05416752570284653 +162111,810.5550000060874,-0.05416743306822157 +162112,810.5600000060875,-0.05416734042700192 +162113,810.5650000060876,-0.054167247779186224 +162114,810.5700000060878,-0.05416715512477316 +162115,810.5750000060879,-0.05416706246376136 +162116,810.580000006088,-0.054166969796149475 +162117,810.5850000060881,-0.05416687712193617 +162118,810.5900000060882,-0.05416678444112009 +162119,810.5950000060883,-0.05416669175369988 +162120,810.6000000060884,-0.0541665990596742 +162121,810.6050000060885,-0.05416650635904171 +162122,810.6100000060886,-0.05416641365180104 +162123,810.6150000060887,-0.054166320937950846 +162124,810.6200000060888,-0.05416622821748977 +162125,810.625000006089,-0.054166135490416496 +162126,810.6300000060891,-0.05416604275672963 +162127,810.6350000060892,-0.05416595001642783 +162128,810.6400000060893,-0.05416585726950976 +162129,810.6450000060894,-0.05416576451597406 +162130,810.6500000060895,-0.05416567175581938 +162131,810.6550000060896,-0.05416557898904435 +162132,810.6600000060897,-0.05416548621564762 +162133,810.6650000060898,-0.05416539343562785 +162134,810.6700000060899,-0.05416530064898367 +162135,810.67500000609,-0.05416520785571375 +162136,810.6800000060902,-0.0541651150558167 +162137,810.6850000060903,-0.05416502224929117 +162138,810.6900000060904,-0.05416492943613582 +162139,810.6950000060905,-0.05416483661634929 +162140,810.7000000060906,-0.05416474378993021 +162141,810.7050000060907,-0.054164650956877225 +162142,810.7100000060908,-0.05416455811718899 +162143,810.7150000060909,-0.05416446527086413 +162144,810.720000006091,-0.05416437241790129 +162145,810.7250000060911,-0.05416427955829912 +162146,810.7300000060912,-0.054164186692056235 +162147,810.7350000060914,-0.0541640938191713 +162148,810.7400000060915,-0.05416400093964295 +162149,810.7450000060916,-0.05416390805346981 +162150,810.7500000060917,-0.05416381516065053 +162151,810.7550000060918,-0.05416372226118374 +162152,810.7600000060919,-0.054163629355068084 +162153,810.765000006092,-0.054163536442302186 +162154,810.7700000060921,-0.05416344352288469 +162155,810.7750000060922,-0.05416335059681424 +162156,810.7800000060923,-0.054163257664089456 +162157,810.7850000060924,-0.054163164724708994 +162158,810.7900000060926,-0.05416307177867147 +162159,810.7950000060927,-0.05416297882597552 +162160,810.8000000060928,-0.05416288586661978 +162161,810.8050000060929,-0.054162792900602885 +162162,810.810000006093,-0.05416269992792347 +162163,810.8150000060931,-0.05416260694858016 +162164,810.8200000060932,-0.054162513962571594 +162165,810.8250000060933,-0.0541624209698964 +162166,810.8300000060934,-0.05416232797055321 +162167,810.8350000060935,-0.054162234964540645 +162168,810.8400000060936,-0.054162141951857354 +162169,810.8450000060938,-0.05416204893250195 +162170,810.8500000060939,-0.05416195590647307 +162171,810.855000006094,-0.05416186287376934 +162172,810.8600000060941,-0.05416176983438939 +162173,810.8650000060942,-0.054161676788331864 +162174,810.8700000060943,-0.05416158373559536 +162175,810.8750000060944,-0.054161490676178516 +162176,810.8800000060945,-0.05416139761007996 +162177,810.8850000060946,-0.054161304537298324 +162178,810.8900000060947,-0.054161211457832224 +162179,810.8950000060948,-0.05416111837168029 +162180,810.900000006095,-0.05416102527884115 +162181,810.9050000060951,-0.05416093217931342 +162182,810.9100000060952,-0.05416083907309573 +162183,810.9150000060953,-0.054160745960186704 +162184,810.9200000060954,-0.05416065284058496 +162185,810.9250000060955,-0.054160559714289125 +162186,810.9300000060956,-0.05416046658129781 +162187,810.9350000060957,-0.05416037344160966 +162188,810.9400000060958,-0.05416028029522329 +162189,810.9450000060959,-0.05416018714213731 +162190,810.950000006096,-0.05416009398235033 +162191,810.9550000060962,-0.054160000815861 +162192,810.9600000060963,-0.054159907642667905 +162193,810.9650000060964,-0.05415981446276969 +162194,810.9700000060965,-0.05415972127616496 +162195,810.9750000060966,-0.05415962808285234 +162196,810.9800000060967,-0.05415953488283044 +162197,810.9850000060968,-0.0541594416760979 +162198,810.9900000060969,-0.054159348462653314 +162199,810.995000006097,-0.054159255242495305 +162200,811.0000000060971,-0.054159162015622486 +162201,811.0050000060972,-0.05415906878203347 +162202,811.0100000060974,-0.05415897554172689 +162203,811.0150000060975,-0.054158882294701345 +162204,811.0200000060976,-0.05415878904095545 +162205,811.0250000060977,-0.05415869578048782 +162206,811.0300000060978,-0.05415860251329707 +162207,811.0350000060979,-0.054158509239381813 +162208,811.040000006098,-0.054158415958740665 +162209,811.0450000060981,-0.05415832267137222 +162210,811.0500000060982,-0.05415822937727511 +162211,811.0550000060983,-0.054158136076447934 +162212,811.0600000060984,-0.0541580427688893 +162213,811.0650000060986,-0.05415794945459784 +162214,811.0700000060987,-0.05415785613357214 +162215,811.0750000060988,-0.05415776280581082 +162216,811.0800000060989,-0.05415766947131249 +162217,811.085000006099,-0.054157576130075755 +162218,811.0900000060991,-0.054157482782099226 +162219,811.0950000060992,-0.05415738942738149 +162220,811.1000000060993,-0.05415729606592117 +162221,811.1050000060994,-0.054157202697716886 +162222,811.1100000060995,-0.054157109322767225 +162223,811.1150000060996,-0.054157015941070814 +162224,811.1200000060998,-0.054156922552626226 +162225,811.1250000060999,-0.054156829157432085 +162226,811.1300000061,-0.054156735755487004 +162227,811.1350000061001,-0.05415664234678957 +162228,811.1400000061002,-0.054156548931338394 +162229,811.1450000061003,-0.054156455509132076 +162230,811.1500000061004,-0.05415636208016922 +162231,811.1550000061005,-0.05415626864444843 +162232,811.1600000061006,-0.05415617520196831 +162233,811.1650000061007,-0.054156081752727445 +162234,811.1700000061008,-0.05415598829672446 +162235,811.175000006101,-0.054155894833957934 +162236,811.1800000061011,-0.054155801364426465 +162237,811.1850000061012,-0.05415570788812867 +162238,811.1900000061013,-0.05415561440506315 +162239,811.1950000061014,-0.054155520915228496 +162240,811.2000000061015,-0.054155427418623295 +162241,811.2050000061016,-0.05415533391524615 +162242,811.2100000061017,-0.05415524040509567 +162243,811.2150000061018,-0.054155146888170434 +162244,811.2200000061019,-0.054155053364469054 +162245,811.225000006102,-0.05415495983399012 +162246,811.2300000061022,-0.054154866296732225 +162247,811.2350000061023,-0.05415477275269396 +162248,811.2400000061024,-0.05415467920187393 +162249,811.2450000061025,-0.054154585644270725 +162250,811.2500000061026,-0.05415449207988293 +162251,811.2550000061027,-0.05415439850870915 +162252,811.2600000061028,-0.05415430493074797 +162253,811.2650000061029,-0.05415421134599798 +162254,811.270000006103,-0.054154117754457776 +162255,811.2750000061031,-0.05415402415612594 +162256,811.2800000061033,-0.05415393055100108 +162257,811.2850000061034,-0.05415383693908179 +162258,811.2900000061035,-0.05415374332036663 +162259,811.2950000061036,-0.054153649694854214 +162260,811.3000000061037,-0.054153556062543115 +162261,811.3050000061038,-0.05415346242343195 +162262,811.3100000061039,-0.05415336877751928 +162263,811.315000006104,-0.0541532751248037 +162264,811.3200000061041,-0.05415318146528379 +162265,811.3250000061042,-0.05415308779895815 +162266,811.3300000061043,-0.05415299412582536 +162267,811.3350000061045,-0.054152900445884 +162268,811.3400000061046,-0.05415280675913266 +162269,811.3450000061047,-0.05415271306556993 +162270,811.3500000061048,-0.05415261936519438 +162271,811.3550000061049,-0.05415252565800461 +162272,811.360000006105,-0.05415243194399919 +162273,811.3650000061051,-0.054152338223176714 +162274,811.3700000061052,-0.054152244495535753 +162275,811.3750000061053,-0.05415215076107491 +162276,811.3800000061054,-0.054152057019792754 +162277,811.3850000061055,-0.05415196327168785 +162278,811.3900000061057,-0.054151869516758794 +162279,811.3950000061058,-0.05415177575500417 +162280,811.4000000061059,-0.05415168198642256 +162281,811.405000006106,-0.05415158821101254 +162282,811.4100000061061,-0.05415149442877268 +162283,811.4150000061062,-0.054151400639701565 +162284,811.4200000061063,-0.05415130684379777 +162285,811.4250000061064,-0.054151213041059874 +162286,811.4300000061065,-0.054151119231486446 +162287,811.4350000061066,-0.054151025415076076 +162288,811.4400000061067,-0.05415093159182733 +162289,811.4450000061069,-0.0541508377617388 +162290,811.450000006107,-0.054150743924809036 +162291,811.4550000061071,-0.05415065008103663 +162292,811.4600000061072,-0.05415055623042015 +162293,811.4650000061073,-0.054150462372958175 +162294,811.4700000061074,-0.05415036850864928 +162295,811.4750000061075,-0.05415027463749204 +162296,811.4800000061076,-0.054150180759484995 +162297,811.4850000061077,-0.05415008687462675 +162298,811.4900000061078,-0.054149992982915875 +162299,811.495000006108,-0.05414989908435094 +162300,811.500000006108,-0.05414980517893049 +162301,811.5050000061082,-0.054149711266653126 +162302,811.5100000061083,-0.05414961734751741 +162303,811.5150000061084,-0.054149523421521906 +162304,811.5200000061085,-0.05414942948866519 +162305,811.5250000061086,-0.05414933554894581 +162306,811.5300000061087,-0.05414924160236237 +162307,811.5350000061088,-0.0541491476489134 +162308,811.5400000061089,-0.054149053688597494 +162309,811.545000006109,-0.05414895972141319 +162310,811.5500000061091,-0.05414886574735908 +162311,811.5550000061093,-0.05414877176643373 +162312,811.5600000061094,-0.054148677778635676 +162313,811.5650000061095,-0.054148583783963505 +162314,811.5700000061096,-0.05414848978241578 +162315,811.5750000061097,-0.054148395773991054 +162316,811.5800000061098,-0.05414830175868791 +162317,811.5850000061099,-0.05414820773650489 +162318,811.59000000611,-0.054148113707440576 +162319,811.5950000061101,-0.05414801967149352 +162320,811.6000000061102,-0.05414792562866227 +162321,811.6050000061103,-0.0541478315789454 +162322,811.6100000061105,-0.05414773752234148 +162323,811.6150000061106,-0.054147643458849044 +162324,811.6200000061107,-0.05414754938846667 +162325,811.6250000061108,-0.054147455311192916 +162326,811.6300000061109,-0.054147361227026326 +162327,811.635000006111,-0.05414726713596548 +162328,811.6400000061111,-0.054147173038008915 +162329,811.6450000061112,-0.0541470789331552 +162330,811.6500000061113,-0.0541469848214029 +162331,811.6550000061114,-0.05414689070275054 +162332,811.6600000061115,-0.05414679657719671 +162333,811.6650000061117,-0.054146702444739944 +162334,811.6700000061118,-0.054146608305378804 +162335,811.6750000061119,-0.05414651415911185 +162336,811.680000006112,-0.05414642000593761 +162337,811.6850000061121,-0.05414632584585468 +162338,811.6900000061122,-0.05414623167886157 +162339,811.6950000061123,-0.05414613750495686 +162340,811.7000000061124,-0.05414604332413909 +162341,811.7050000061125,-0.054145949136406815 +162342,811.7100000061126,-0.05414585494175859 +162343,811.7150000061127,-0.05414576074019296 +162344,811.7200000061129,-0.05414566653170847 +162345,811.725000006113,-0.05414557231630369 +162346,811.7300000061131,-0.054145478093977135 +162347,811.7350000061132,-0.05414538386472738 +162348,811.7400000061133,-0.05414528962855297 +162349,811.7450000061134,-0.054145195385452455 +162350,811.7500000061135,-0.05414510113542437 +162351,811.7550000061136,-0.05414500687846726 +162352,811.7600000061137,-0.05414491261457968 +162353,811.7650000061138,-0.05414481834376018 +162354,811.770000006114,-0.0541447240660073 +162355,811.775000006114,-0.05414462978131958 +162356,811.7800000061142,-0.05414453548969557 +162357,811.7850000061143,-0.05414444119113381 +162358,811.7900000061144,-0.05414434688563284 +162359,811.7950000061145,-0.054144252573191214 +162360,811.8000000061146,-0.05414415825380746 +162361,811.8050000061147,-0.054144063927480134 +162362,811.8100000061148,-0.05414396959420777 +162363,811.8150000061149,-0.05414387525398893 +162364,811.820000006115,-0.05414378090682212 +162365,811.8250000061151,-0.05414368655270589 +162366,811.8300000061153,-0.05414359219163879 +162367,811.8350000061154,-0.05414349782361936 +162368,811.8400000061155,-0.05414340344864613 +162369,811.8450000061156,-0.05414330906671764 +162370,811.8500000061157,-0.05414321467783242 +162371,811.8550000061158,-0.054143120281989025 +162372,811.8600000061159,-0.054143025879185985 +162373,811.865000006116,-0.054142931469421826 +162374,811.8700000061161,-0.054142837052695084 +162375,811.8750000061162,-0.05414274262900432 +162376,811.8800000061163,-0.05414264819834804 +162377,811.8850000061165,-0.0541425537607248 +162378,811.8900000061166,-0.05414245931613312 +162379,811.8950000061167,-0.05414236486457152 +162380,811.9000000061168,-0.05414227040603855 +162381,811.9050000061169,-0.05414217594053276 +162382,811.910000006117,-0.05414208146805264 +162383,811.9150000061171,-0.054141986988596756 +162384,811.9200000061172,-0.05414189250216363 +162385,811.9250000061173,-0.05414179800875178 +162386,811.9300000061174,-0.054141703508359756 +162387,811.9350000061175,-0.054141609000986066 +162388,811.9400000061177,-0.05414151448662925 +162389,811.9450000061178,-0.05414141996528784 +162390,811.9500000061179,-0.05414132543696036 +162391,811.955000006118,-0.05414123090164535 +162392,811.9600000061181,-0.054141136359341306 +162393,811.9650000061182,-0.05414104181004679 +162394,811.9700000061183,-0.054140947253760306 +162395,811.9750000061184,-0.054140852690480384 +162396,811.9800000061185,-0.054140758120205565 +162397,811.9850000061186,-0.05414066354293435 +162398,811.9900000061187,-0.05414056895866527 +162399,811.9950000061189,-0.05414047436739685 +162400,812.000000006119,-0.05414037976912762 +162401,812.0050000061191,-0.05414028516385609 +162402,812.0100000061192,-0.0541401905515808 +162403,812.0150000061193,-0.05414009593230026 +162404,812.0200000061194,-0.05414000130601299 +162405,812.0250000061195,-0.054139906672717515 +162406,812.0300000061196,-0.05413981203241235 +162407,812.0350000061197,-0.05413971738509602 +162408,812.0400000061198,-0.05413962273076704 +162409,812.04500000612,-0.054139528069423945 +162410,812.0500000061201,-0.05413943340106524 +162411,812.0550000061202,-0.05413933872568944 +162412,812.0600000061203,-0.054139244043295065 +162413,812.0650000061204,-0.054139149353880645 +162414,812.0700000061205,-0.054139054657444674 +162415,812.0750000061206,-0.054138959953985676 +162416,812.0800000061207,-0.054138865243502185 +162417,812.0850000061208,-0.05413877052599268 +162418,812.0900000061209,-0.054138675801455705 +162419,812.095000006121,-0.054138581069889766 +162420,812.1000000061211,-0.05413848633129338 +162421,812.1050000061213,-0.054138391585665045 +162422,812.1100000061214,-0.054138296833003294 +162423,812.1150000061215,-0.05413820207330663 +162424,812.1200000061216,-0.05413810730657356 +162425,812.1250000061217,-0.05413801253280261 +162426,812.1300000061218,-0.05413791775199226 +162427,812.1350000061219,-0.054137822964141054 +162428,812.140000006122,-0.05413772816924748 +162429,812.1450000061221,-0.05413763336731006 +162430,812.1500000061222,-0.05413753855832731 +162431,812.1550000061223,-0.054137443742297724 +162432,812.1600000061225,-0.054137348919219806 +162433,812.1650000061226,-0.05413725408909207 +162434,812.1700000061227,-0.05413715925191302 +162435,812.1750000061228,-0.054137064407681165 +162436,812.1800000061229,-0.054136969556395 +162437,812.185000006123,-0.05413687469805305 +162438,812.1900000061231,-0.0541367798326538 +162439,812.1950000061232,-0.05413668496019578 +162440,812.2000000061233,-0.05413659008067746 +162441,812.2050000061234,-0.05413649519409738 +162442,812.2100000061236,-0.05413640030045402 +162443,812.2150000061237,-0.05413630539974588 +162444,812.2200000061238,-0.05413621049197147 +162445,812.2250000061239,-0.05413611557712929 +162446,812.230000006124,-0.05413602065521785 +162447,812.2350000061241,-0.05413592572623564 +162448,812.2400000061242,-0.05413583079018116 +162449,812.2450000061243,-0.05413573584705291 +162450,812.2500000061244,-0.0541356408968494 +162451,812.2550000061245,-0.054135545939569096 +162452,812.2600000061246,-0.05413545097521053 +162453,812.2650000061248,-0.054135356003772186 +162454,812.2700000061249,-0.05413526102525256 +162455,812.275000006125,-0.05413516603965016 +162456,812.2800000061251,-0.05413507104696346 +162457,812.2850000061252,-0.054134976047190975 +162458,812.2900000061253,-0.05413488104033119 +162459,812.2950000061254,-0.054134786026382616 +162460,812.3000000061255,-0.054134691005343724 +162461,812.3050000061256,-0.054134595977213026 +162462,812.3100000061257,-0.054134500941989 +162463,812.3150000061258,-0.05413440589967014 +162464,812.320000006126,-0.05413431085025495 +162465,812.3250000061261,-0.05413421579374192 +162466,812.3300000061262,-0.05413412073012953 +162467,812.3350000061263,-0.05413402565941627 +162468,812.3400000061264,-0.05413393058160064 +162469,812.3450000061265,-0.05413383549668113 +162470,812.3500000061266,-0.054133740404656225 +162471,812.3550000061267,-0.05413364530552441 +162472,812.3600000061268,-0.054133550199284175 +162473,812.3650000061269,-0.05413345508593401 +162474,812.370000006127,-0.054133359965472395 +162475,812.3750000061272,-0.05413326483789783 +162476,812.3800000061273,-0.05413316970320879 +162477,812.3850000061274,-0.054133074561403774 +162478,812.3900000061275,-0.05413297941248125 +162479,812.3950000061276,-0.05413288425643971 +162480,812.4000000061277,-0.054132789093277636 +162481,812.4050000061278,-0.054132693922993524 +162482,812.4100000061279,-0.05413259874558584 +162483,812.415000006128,-0.05413250356105307 +162484,812.4200000061281,-0.0541324083693937 +162485,812.4250000061282,-0.054132313170606225 +162486,812.4300000061284,-0.0541322179646891 +162487,812.4350000061285,-0.054132122751640824 +162488,812.4400000061286,-0.05413202753145987 +162489,812.4450000061287,-0.05413193230414471 +162490,812.4500000061288,-0.05413183706969384 +162491,812.4550000061289,-0.054131741828105734 +162492,812.460000006129,-0.054131646579378856 +162493,812.4650000061291,-0.054131551323511704 +162494,812.4700000061292,-0.05413145606050274 +162495,812.4750000061293,-0.054131360790350455 +162496,812.4800000061294,-0.054131265513053306 +162497,812.4850000061296,-0.054131170228609776 +162498,812.4900000061297,-0.05413107493701835 +162499,812.4950000061298,-0.054130979638277496 +162500,812.5000000061299,-0.05413088433238568 +162501,812.50500000613,-0.05413078901934138 +162502,812.5100000061301,-0.054130693699143084 +162503,812.5150000061302,-0.05413059837178925 +162504,812.5200000061303,-0.054130503037278344 +162505,812.5250000061304,-0.054130407695608854 +162506,812.5300000061305,-0.05413031234677925 +162507,812.5350000061306,-0.05413021699078799 +162508,812.5400000061308,-0.054130121627633546 +162509,812.5450000061309,-0.0541300262573144 +162510,812.550000006131,-0.05412993087982901 +162511,812.5550000061311,-0.05412983549517584 +162512,812.5600000061312,-0.05412974010335337 +162513,812.5650000061313,-0.05412964470436006 +162514,812.5700000061314,-0.05412954929819439 +162515,812.5750000061315,-0.054129453884854815 +162516,812.5800000061316,-0.054129358464339805 +162517,812.5850000061317,-0.054129263036647814 +162518,812.5900000061318,-0.05412916760177733 +162519,812.595000006132,-0.05412907215972679 +162520,812.6000000061321,-0.05412897671049467 +162521,812.6050000061322,-0.05412888125407945 +162522,812.6100000061323,-0.05412878579047957 +162523,812.6150000061324,-0.05412869031969351 +162524,812.6200000061325,-0.0541285948417197 +162525,812.6250000061326,-0.05412849935655665 +162526,812.6300000061327,-0.054128403864202784 +162527,812.6350000061328,-0.054128308364656576 +162528,812.6400000061329,-0.05412821285791648 +162529,812.645000006133,-0.054128117343980965 +162530,812.6500000061332,-0.05412802182284848 +162531,812.6550000061333,-0.054127926294517494 +162532,812.6600000061334,-0.05412783075898645 +162533,812.6650000061335,-0.054127735216253824 +162534,812.6700000061336,-0.05412763966631806 +162535,812.6750000061337,-0.05412754410917762 +162536,812.6800000061338,-0.05412744854483095 +162537,812.6850000061339,-0.05412735297327653 +162538,812.690000006134,-0.05412725739451278 +162539,812.6950000061341,-0.054127161808538174 +162540,812.7000000061342,-0.054127066215351176 +162541,812.7050000061344,-0.054126970614950226 +162542,812.7100000061345,-0.05412687500733376 +162543,812.7150000061346,-0.05412677939250027 +162544,812.7200000061347,-0.05412668377044818 +162545,812.7250000061348,-0.05412658814117594 +162546,812.7300000061349,-0.054126492504682024 +162547,812.735000006135,-0.05412639686096486 +162548,812.7400000061351,-0.054126301210022904 +162549,812.7450000061352,-0.054126205551854614 +162550,812.7500000061353,-0.054126109886458426 +162551,812.7550000061354,-0.05412601421383279 +162552,812.7600000061356,-0.054125918533976164 +162553,812.7650000061357,-0.054125822846886974 +162554,812.7700000061358,-0.054125727152563696 +162555,812.7750000061359,-0.05412563145100477 +162556,812.780000006136,-0.054125535742208616 +162557,812.7850000061361,-0.05412544002617369 +162558,812.7900000061362,-0.054125344302898455 +162559,812.7950000061363,-0.05412524857238134 +162560,812.8000000061364,-0.05412515283462079 +162561,812.8050000061365,-0.05412505708961526 +162562,812.8100000061366,-0.05412496133736318 +162563,812.8150000061368,-0.054124865577862995 +162564,812.8200000061369,-0.05412476981111314 +162565,812.825000006137,-0.054124674037112075 +162566,812.8300000061371,-0.05412457825585821 +162567,812.8350000061372,-0.05412448246735001 +162568,812.8400000061373,-0.05412438667158591 +162569,812.8450000061374,-0.054124290868564344 +162570,812.8500000061375,-0.05412419505828376 +162571,812.8550000061376,-0.05412409924074258 +162572,812.8600000061377,-0.05412400341593926 +162573,812.8650000061378,-0.05412390758387223 +162574,812.870000006138,-0.05412381174453991 +162575,812.8750000061381,-0.05412371589794076 +162576,812.8800000061382,-0.054123620044073194 +162577,812.8850000061383,-0.054123524182935666 +162578,812.8900000061384,-0.05412342831452661 +162579,812.8950000061385,-0.05412333243884444 +162580,812.9000000061386,-0.054123236555887605 +162581,812.9050000061387,-0.05412314066565453 +162582,812.9100000061388,-0.054123044768143655 +162583,812.9150000061389,-0.054122948863353414 +162584,812.920000006139,-0.054122852951282226 +162585,812.9250000061392,-0.05412275703192853 +162586,812.9300000061393,-0.05412266110529076 +162587,812.9350000061394,-0.05412256517136734 +162588,812.9400000061395,-0.0541224692301567 +162589,812.9450000061396,-0.05412237328165726 +162590,812.9500000061397,-0.05412227732586746 +162591,812.9550000061398,-0.05412218136278572 +162592,812.9600000061399,-0.054122085392410486 +162593,812.96500000614,-0.054121989414740154 +162594,812.9700000061401,-0.05412189342977318 +162595,812.9750000061402,-0.05412179743750798 +162596,812.9800000061404,-0.05412170143794296 +162597,812.9850000061405,-0.05412160543107656 +162598,812.9900000061406,-0.0541215094169072 +162599,812.9950000061407,-0.054121413395433325 +162600,813.0000000061408,-0.05412131736665333 +162601,813.0050000061409,-0.05412122133056565 +162602,813.010000006141,-0.0541211252871687 +162603,813.0150000061411,-0.0541210292364609 +162604,813.0200000061412,-0.05412093317844068 +162605,813.0250000061413,-0.05412083711310646 +162606,813.0300000061414,-0.05412074104045665 +162607,813.0350000061416,-0.05412064496048968 +162608,813.0400000061417,-0.05412054887320397 +162609,813.0450000061418,-0.05412045277859792 +162610,813.0500000061419,-0.05412035667666997 +162611,813.055000006142,-0.054120260567418525 +162612,813.0600000061421,-0.054120164450842 +162613,813.0650000061422,-0.054120068326938824 +162614,813.0700000061423,-0.05411997219570739 +162615,813.0750000061424,-0.05411987605714613 +162616,813.0800000061425,-0.05411977991125346 +162617,813.0850000061426,-0.05411968375802779 +162618,813.0900000061428,-0.05411958759746753 +162619,813.0950000061429,-0.0541194914295711 +162620,813.100000006143,-0.054119395254336906 +162621,813.1050000061431,-0.05411929907176337 +162622,813.1100000061432,-0.05411920288184888 +162623,813.1150000061433,-0.05411910668459187 +162624,813.1200000061434,-0.05411901047999075 +162625,813.1250000061435,-0.05411891426804391 +162626,813.1300000061436,-0.054118818048749774 +162627,813.1350000061437,-0.05411872182210675 +162628,813.1400000061439,-0.05411862558811325 +162629,813.145000006144,-0.054118529346767676 +162630,813.1500000061441,-0.054118433098068436 +162631,813.1550000061442,-0.054118336842013934 +162632,813.1600000061443,-0.05411824057860258 +162633,813.1650000061444,-0.05411814430783278 +162634,813.1700000061445,-0.054118048029702936 +162635,813.1750000061446,-0.054117951744211454 +162636,813.1800000061447,-0.054117855451356736 +162637,813.1850000061448,-0.05411775915113718 +162638,813.1900000061449,-0.054117662843551205 +162639,813.195000006145,-0.05411756652859719 +162640,813.2000000061452,-0.05411747020627357 +162641,813.2050000061453,-0.05411737387657872 +162642,813.2100000061454,-0.05411727753951105 +162643,813.2150000061455,-0.05411718119506897 +162644,813.2200000061456,-0.054117084843250854 +162645,813.2250000061457,-0.05411698848405511 +162646,813.2300000061458,-0.054116892117480164 +162647,813.2350000061459,-0.054116795743524376 +162648,813.240000006146,-0.05411669936218617 +162649,813.2450000061461,-0.05411660297346393 +162650,813.2500000061463,-0.05411650657735605 +162651,813.2550000061464,-0.05411641017386094 +162652,813.2600000061465,-0.054116313762976986 +162653,813.2650000061466,-0.054116217344702594 +162654,813.2700000061467,-0.054116120919036136 +162655,813.2750000061468,-0.05411602448597603 +162656,813.2800000061469,-0.05411592804552065 +162657,813.285000006147,-0.054115831597668404 +162658,813.2900000061471,-0.05411573514241768 +162659,813.2950000061472,-0.05411563867976686 +162660,813.3000000061473,-0.05411554220971435 +162661,813.3050000061475,-0.05411544573225852 +162662,813.3100000061476,-0.05411534924739779 +162663,813.3150000061477,-0.054115252755130516 +162664,813.3200000061478,-0.054115156255455106 +162665,813.3250000061479,-0.05411505974836994 +162666,813.330000006148,-0.05411496323387342 +162667,813.3350000061481,-0.054114866711963944 +162668,813.3400000061482,-0.05411477018263986 +162669,813.3450000061483,-0.054114673645899586 +162670,813.3500000061484,-0.05411457710174149 +162671,813.3550000061485,-0.054114480550163976 +162672,813.3600000061487,-0.054114383991165416 +162673,813.3650000061488,-0.054114287424744195 +162674,813.3700000061489,-0.0541141908508987 +162675,813.375000006149,-0.0541140942696273 +162676,813.3800000061491,-0.054113997680928394 +162677,813.3850000061492,-0.05411390108480036 +162678,813.3900000061493,-0.054113804481241576 +162679,813.3950000061494,-0.054113707870250424 +162680,813.4000000061495,-0.05411361125182529 +162681,813.4050000061496,-0.05411351462596456 +162682,813.4100000061497,-0.054113417992666585 +162683,813.4150000061499,-0.05411332135192977 +162684,813.42000000615,-0.054113224703752495 +162685,813.4250000061501,-0.05411312804813312 +162686,813.4300000061502,-0.05411303138507003 +162687,813.4350000061503,-0.054112934714561606 +162688,813.4400000061504,-0.05411283803660622 +162689,813.4450000061505,-0.05411274135120225 +162690,813.4500000061506,-0.05411264465834806 +162691,813.4550000061507,-0.054112547958042045 +162692,813.4600000061508,-0.054112451250282564 +162693,813.465000006151,-0.05411235453506799 +162694,813.470000006151,-0.05411225781239671 +162695,813.4750000061512,-0.05411216108226708 +162696,813.4800000061513,-0.05411206434467748 +162697,813.4850000061514,-0.05411196759962628 +162698,813.4900000061515,-0.05411187084711186 +162699,813.4950000061516,-0.05411177408713257 +162700,813.5000000061517,-0.054111677319686795 +162701,813.5050000061518,-0.05411158054477289 +162702,813.5100000061519,-0.054111483762389244 +162703,813.515000006152,-0.0541113869725342 +162704,813.5200000061521,-0.054111290175206155 +162705,813.5250000061523,-0.05411119337040346 +162706,813.5300000061524,-0.054111096558124475 +162707,813.5350000061525,-0.05411099973836757 +162708,813.5400000061526,-0.054110902911131124 +162709,813.5450000061527,-0.054110806076413484 +162710,813.5500000061528,-0.05411070923421302 +162711,813.5550000061529,-0.0541106123845281 +162712,813.560000006153,-0.05411051552735708 +162713,813.5650000061531,-0.054110418662698334 +162714,813.5700000061532,-0.05411032179055022 +162715,813.5750000061533,-0.05411022491091109 +162716,813.5800000061535,-0.05411012802377931 +162717,813.5850000061536,-0.05411003112915325 +162718,813.5900000061537,-0.054109934227031246 +162719,813.5950000061538,-0.054109837317411674 +162720,813.6000000061539,-0.05410974040029289 +162721,813.605000006154,-0.05410964347567327 +162722,813.6100000061541,-0.054109546543551136 +162723,813.6150000061542,-0.05410944960392487 +162724,813.6200000061543,-0.05410935265679282 +162725,813.6250000061544,-0.05410925570215335 +162726,813.6300000061545,-0.054109158740004805 +162727,813.6350000061547,-0.05410906177034555 +162728,813.6400000061548,-0.054108964793173925 +162729,813.6450000061549,-0.0541088678084883 +162730,813.650000006155,-0.054108770816287025 +162731,813.6550000061551,-0.05410867381656844 +162732,813.6600000061552,-0.05410857680933091 +162733,813.6650000061553,-0.05410847979457279 +162734,813.6700000061554,-0.054108382772292414 +162735,813.6750000061555,-0.05410828574248815 +162736,813.6800000061556,-0.05410818870515833 +162737,813.6850000061557,-0.05410809166030131 +162738,813.6900000061559,-0.05410799460791545 +162739,813.695000006156,-0.054107897547999086 +162740,813.7000000061561,-0.05410780048055058 +162741,813.7050000061562,-0.05410770340556826 +162742,813.7100000061563,-0.05410760632305048 +162743,813.7150000061564,-0.054107509232995586 +162744,813.7200000061565,-0.05410741213540193 +162745,813.7250000061566,-0.054107315030267854 +162746,813.7300000061567,-0.054107217917591696 +162747,813.7350000061568,-0.05410712079737181 +162748,813.740000006157,-0.054107023669606534 +162749,813.745000006157,-0.05410692653429422 +162750,813.7500000061572,-0.054106829391433194 +162751,813.7550000061573,-0.054106732241021804 +162752,813.7600000061574,-0.054106635083058394 +162753,813.7650000061575,-0.05410653791754129 +162754,813.7700000061576,-0.05410644074446885 +162755,813.7750000061577,-0.05410634356383942 +162756,813.7800000061578,-0.05410624637565131 +162757,813.7850000061579,-0.054106149179902883 +162758,813.790000006158,-0.05410605197659247 +162759,813.7950000061581,-0.054105954765718396 +162760,813.8000000061583,-0.054105857547279014 +162761,813.8050000061584,-0.05410576032127266 +162762,813.8100000061585,-0.05410566308769765 +162763,813.8150000061586,-0.054105565846552336 +162764,813.8200000061587,-0.054105468597835056 +162765,813.8250000061588,-0.054105371341544126 +162766,813.8300000061589,-0.05410527407767791 +162767,813.835000006159,-0.05410517680623471 +162768,813.8400000061591,-0.054105079527212864 +162769,813.8450000061592,-0.05410498224061071 +162770,813.8500000061593,-0.05410488494642658 +162771,813.8550000061595,-0.0541047876446588 +162772,813.8600000061596,-0.054104690335305704 +162773,813.8650000061597,-0.05410459301836562 +162774,813.8700000061598,-0.05410449569383688 +162775,813.8750000061599,-0.05410439836171781 +162776,813.88000000616,-0.05410430102200674 +162777,813.8850000061601,-0.05410420367470198 +162778,813.8900000061602,-0.05410410631980187 +162779,813.8950000061603,-0.054104008957304744 +162780,813.9000000061604,-0.05410391158720891 +162781,813.9050000061605,-0.054103814209512706 +162782,813.9100000061607,-0.05410371682421444 +162783,813.9150000061608,-0.05410361943131247 +162784,813.9200000061609,-0.05410352203080508 +162785,813.925000006161,-0.054103424622690625 +162786,813.9300000061611,-0.05410332720696741 +162787,813.9350000061612,-0.05410322978363375 +162788,813.9400000061613,-0.05410313235268798 +162789,813.9450000061614,-0.05410303491412841 +162790,813.9500000061615,-0.05410293746795337 +162791,813.9550000061616,-0.05410284001416116 +162792,813.9600000061617,-0.05410274255275012 +162793,813.9650000061619,-0.05410264508371856 +162794,813.970000006162,-0.054102547607064795 +162795,813.9750000061621,-0.054102450122787145 +162796,813.9800000061622,-0.05410235263088393 +162797,813.9850000061623,-0.05410225513135346 +162798,813.9900000061624,-0.05410215762419405 +162799,813.9950000061625,-0.05410206010940402 +162800,814.0000000061626,-0.05410196258698169 +162801,814.0050000061627,-0.05410186505692535 +162802,814.0100000061628,-0.05410176751923333 +162803,814.015000006163,-0.054101669973903956 +162804,814.0200000061631,-0.05410157242093551 +162805,814.0250000061632,-0.05410147486032632 +162806,814.0300000061633,-0.054101377292074704 +162807,814.0350000061634,-0.05410127971617895 +162808,814.0400000061635,-0.05410118213263739 +162809,814.0450000061636,-0.05410108454144832 +162810,814.0500000061637,-0.05410098694261005 +162811,814.0550000061638,-0.05410088933612089 +162812,814.0600000061639,-0.05410079172197914 +162813,814.065000006164,-0.05410069410018312 +162814,814.0700000061642,-0.054100596470731135 +162815,814.0750000061643,-0.054100498833621474 +162816,814.0800000061644,-0.05410040118885246 +162817,814.0850000061645,-0.05410030353642239 +162818,814.0900000061646,-0.05410020587632957 +162819,814.0950000061647,-0.05410010820857229 +162820,814.1000000061648,-0.054100010533148876 +162821,814.1050000061649,-0.05409991285005762 +162822,814.110000006165,-0.05409981515929683 +162823,814.1150000061651,-0.05409971746086478 +162824,814.1200000061652,-0.0540996197547598 +162825,814.1250000061654,-0.054099522040980175 +162826,814.1300000061655,-0.05409942431952422 +162827,814.1350000061656,-0.054099326590390205 +162828,814.1400000061657,-0.054099228853576466 +162829,814.1450000061658,-0.054099131109081273 +162830,814.1500000061659,-0.05409903335690292 +162831,814.155000006166,-0.05409893559703973 +162832,814.1600000061661,-0.05409883782948997 +162833,814.1650000061662,-0.05409874005425195 +162834,814.1700000061663,-0.054098642271323966 +162835,814.1750000061664,-0.05409854448070432 +162836,814.1800000061666,-0.054098446682391284 +162837,814.1850000061667,-0.05409834887638317 +162838,814.1900000061668,-0.05409825106267826 +162839,814.1950000061669,-0.05409815324127484 +162840,814.200000006167,-0.05409805541217122 +162841,814.2050000061671,-0.05409795757536567 +162842,814.2100000061672,-0.0540978597308565 +162843,814.2150000061673,-0.05409776187864198 +162844,814.2200000061674,-0.05409766401872041 +162845,814.2250000061675,-0.05409756615109008 +162846,814.2300000061676,-0.05409746827574928 +162847,814.2350000061678,-0.05409737039269629 +162848,814.2400000061679,-0.054097272501929396 +162849,814.245000006168,-0.05409717460344689 +162850,814.2500000061681,-0.054097076697247046 +162851,814.2550000061682,-0.05409697878332817 +162852,814.2600000061683,-0.05409688086168853 +162853,814.2650000061684,-0.05409678293232642 +162854,814.2700000061685,-0.05409668499524011 +162855,814.2750000061686,-0.054096587050427886 +162856,814.2800000061687,-0.05409648909788804 +162857,814.2850000061688,-0.05409639113761884 +162858,814.290000006169,-0.05409629316961858 +162859,814.2950000061691,-0.05409619519388552 +162860,814.3000000061692,-0.05409609721041797 +162861,814.3050000061693,-0.05409599921921418 +162862,814.3100000061694,-0.054095901220272455 +162863,814.3150000061695,-0.05409580321359105 +162864,814.3200000061696,-0.054095705199168266 +162865,814.3250000061697,-0.054095607177002354 +162866,814.3300000061698,-0.0540955091470916 +162867,814.3350000061699,-0.0540954111094343 +162868,814.34000000617,-0.05409531306402869 +162869,814.3450000061702,-0.05409521501087306 +162870,814.3500000061703,-0.0540951169499657 +162871,814.3550000061704,-0.05409501888130487 +162872,814.3600000061705,-0.05409492080488885 +162873,814.3650000061706,-0.0540948227207159 +162874,814.3700000061707,-0.054094724628784306 +162875,814.3750000061708,-0.054094626529092325 +162876,814.3800000061709,-0.05409452842163825 +162877,814.385000006171,-0.054094430306420326 +162878,814.3900000061711,-0.05409433218343682 +162879,814.3950000061712,-0.05409423405268602 +162880,814.4000000061714,-0.05409413591416619 +162881,814.4050000061715,-0.054094037767875594 +162882,814.4100000061716,-0.054093939613812494 +162883,814.4150000061717,-0.05409384145197517 +162884,814.4200000061718,-0.05409374328236187 +162885,814.4250000061719,-0.05409364510497086 +162886,814.430000006172,-0.054093546919800416 +162887,814.4350000061721,-0.054093448726848806 +162888,814.4400000061722,-0.05409335052611428 +162889,814.4450000061723,-0.054093252317595104 +162890,814.4500000061724,-0.054093154101289544 +162891,814.4550000061726,-0.05409305587719585 +162892,814.4600000061727,-0.0540929576453123 +162893,814.4650000061728,-0.05409285940563714 +162894,814.4700000061729,-0.05409276115816864 +162895,814.475000006173,-0.05409266290290506 +162896,814.4800000061731,-0.05409256463984465 +162897,814.4850000061732,-0.05409246636898568 +162898,814.4900000061733,-0.0540923680903264 +162899,814.4950000061734,-0.05409226980386506 +162900,814.5000000061735,-0.05409217150959994 +162901,814.5050000061736,-0.05409207320752927 +162902,814.5100000061738,-0.054091974897651315 +162903,814.5150000061739,-0.054091876579964324 +162904,814.520000006174,-0.05409177825446656 +162905,814.5250000061741,-0.05409167992115627 +162906,814.5300000061742,-0.05409158158003172 +162907,814.5350000061743,-0.054091483231091135 +162908,814.5400000061744,-0.05409138487433279 +162909,814.5450000061745,-0.05409128650975492 +162910,814.5500000061746,-0.054091188137355785 +162911,814.5550000061747,-0.05409108975713365 +162912,814.5600000061748,-0.05409099136908674 +162913,814.565000006175,-0.0540908929732133 +162914,814.5700000061751,-0.0540907945695116 +162915,814.5750000061752,-0.05409069615797988 +162916,814.5800000061753,-0.05409059773861638 +162917,814.5850000061754,-0.05409049931141935 +162918,814.5900000061755,-0.054090400876387036 +162919,814.5950000061756,-0.05409030243351768 +162920,814.6000000061757,-0.054090203982809525 +162921,814.6050000061758,-0.05409010552426082 +162922,814.6100000061759,-0.054090007057869816 +162923,814.615000006176,-0.05408990858363474 +162924,814.6200000061762,-0.05408981010155384 +162925,814.6250000061763,-0.054089711611625346 +162926,814.6300000061764,-0.05408961311384752 +162927,814.6350000061765,-0.05408951460821859 +162928,814.6400000061766,-0.0540894160947368 +162929,814.6450000061767,-0.054089317573400394 +162930,814.6500000061768,-0.0540892190442076 +162931,814.6550000061769,-0.05408912050715667 +162932,814.660000006177,-0.054089021962245826 +162933,814.6650000061771,-0.05408892340947331 +162934,814.6700000061772,-0.05408882484883735 +162935,814.6750000061774,-0.05408872628033619 +162936,814.6800000061775,-0.05408862770396807 +162937,814.6850000061776,-0.05408852911973122 +162938,814.6900000061777,-0.054088430527623875 +162939,814.6950000061778,-0.05408833192764426 +162940,814.7000000061779,-0.05408823331979062 +162941,814.705000006178,-0.05408813470406117 +162942,814.7100000061781,-0.05408803608045416 +162943,814.7150000061782,-0.05408793744896781 +162944,814.7200000061783,-0.054087838809600344 +162945,814.7250000061784,-0.054087740162350004 +162946,814.7300000061786,-0.05408764150721501 +162947,814.7350000061787,-0.05408754284419359 +162948,814.7400000061788,-0.05408744417328398 +162949,814.7450000061789,-0.054087345494484414 +162950,814.750000006179,-0.054087246807793095 +162951,814.7550000061791,-0.05408714811320826 +162952,814.7600000061792,-0.054087049410728144 +162953,814.7650000061793,-0.05408695070035095 +162954,814.7700000061794,-0.054086851982074934 +162955,814.7750000061795,-0.05408675325589829 +162956,814.7800000061796,-0.05408665452181926 +162957,814.7850000061798,-0.05408655577983605 +162958,814.7900000061799,-0.05408645702994689 +162959,814.79500000618,-0.05408635827215 +162960,814.8000000061801,-0.0540862595064436 +162961,814.8050000061802,-0.054086160732825905 +162962,814.8100000061803,-0.05408606195129514 +162963,814.8150000061804,-0.05408596316184952 +162964,814.8200000061805,-0.05408586436448728 +162965,814.8250000061806,-0.05408576555920662 +162966,814.8300000061807,-0.054085666746005755 +162967,814.8350000061808,-0.05408556792488291 +162968,814.840000006181,-0.05408546909583629 +162969,814.8450000061811,-0.05408537025886412 +162970,814.8500000061812,-0.05408527141396461 +162971,814.8550000061813,-0.05408517256113598 +162972,814.8600000061814,-0.05408507370037643 +162973,814.8650000061815,-0.05408497483168418 +162974,814.8700000061816,-0.054084875955057454 +162975,814.8750000061817,-0.05408477707049446 +162976,814.8800000061818,-0.05408467817799338 +162977,814.8850000061819,-0.054084579277552454 +162978,814.890000006182,-0.05408448036916988 +162979,814.8950000061822,-0.054084381452843874 +162980,814.9000000061823,-0.05408428252857263 +162981,814.9050000061824,-0.05408418359635436 +162982,814.9100000061825,-0.05408408465618729 +162983,814.9150000061826,-0.054083985708069604 +162984,814.9200000061827,-0.054083886751999516 +162985,814.9250000061828,-0.05408378778797523 +162986,814.9300000061829,-0.05408368881599495 +162987,814.935000006183,-0.05408358983605689 +162988,814.9400000061831,-0.05408349084815924 +162989,814.9450000061832,-0.05408339185230021 +162990,814.9500000061834,-0.054083292848477994 +162991,814.9550000061835,-0.05408319383669081 +162992,814.9600000061836,-0.054083094816936836 +162993,814.9650000061837,-0.05408299578921429 +162994,814.9700000061838,-0.05408289675352137 +162995,814.9750000061839,-0.054082797709856266 +162996,814.980000006184,-0.05408269865821718 +162997,814.9850000061841,-0.054082599598602316 +162998,814.9900000061842,-0.05408250053100986 +162999,814.9950000061843,-0.054082401455438016 +163000,815.0000000061845,-0.05408230237188498 +163001,815.0050000061846,-0.05408220328034895 +163002,815.0100000061847,-0.054082104180828115 +163003,815.0150000061848,-0.05408200507332067 +163004,815.0200000061849,-0.05408190595782482 +163005,815.025000006185,-0.05408180683433873 +163006,815.0300000061851,-0.05408170770286063 +163007,815.0350000061852,-0.05408160856338867 +163008,815.0400000061853,-0.054081509415921075 +163009,815.0450000061854,-0.05408141026045603 +163010,815.0500000061855,-0.0540813110969917 +163011,815.0550000061857,-0.054081211925526305 +163012,815.0600000061858,-0.054081112746058015 +163013,815.0650000061859,-0.05408101355858503 +163014,815.070000006186,-0.05408091436310552 +163015,815.0750000061861,-0.054080815159617684 +163016,815.0800000061862,-0.054080715948119716 +163017,815.0850000061863,-0.05408061672860978 +163018,815.0900000061864,-0.05408051750108608 +163019,815.0950000061865,-0.0540804182655468 +163020,815.1000000061866,-0.054080319021990106 +163021,815.1050000061867,-0.054080219770414203 +163022,815.1100000061869,-0.05408012051081725 +163023,815.115000006187,-0.054080021243197454 +163024,815.1200000061871,-0.05407992196755298 +163025,815.1250000061872,-0.054079822683882 +163026,815.1300000061873,-0.05407972339218271 +163027,815.1350000061874,-0.05407962409245329 +163028,815.1400000061875,-0.05407952478469191 +163029,815.1450000061876,-0.05407942546889676 +163030,815.1500000061877,-0.05407932614506599 +163031,815.1550000061878,-0.05407922681319781 +163032,815.1600000061879,-0.05407912747329037 +163033,815.165000006188,-0.05407902812534186 +163034,815.1700000061882,-0.05407892876935046 +163035,815.1750000061883,-0.054078829405314326 +163036,815.1800000061884,-0.05407873003323165 +163037,815.1850000061885,-0.05407863065310059 +163038,815.1900000061886,-0.05407853126491932 +163039,815.1950000061887,-0.05407843186868603 +163040,815.2000000061888,-0.05407833246439887 +163041,815.2050000061889,-0.05407823305205602 +163042,815.210000006189,-0.054078133631655645 +163043,815.2150000061891,-0.05407803420319593 +163044,815.2200000061893,-0.054077934766675016 +163045,815.2250000061894,-0.054077835322091095 +163046,815.2300000061895,-0.054077735869442325 +163047,815.2350000061896,-0.05407763640872688 +163048,815.2400000061897,-0.054077536939942904 +163049,815.2450000061898,-0.05407743746308859 +163050,815.2500000061899,-0.054077337978162075 +163051,815.25500000619,-0.054077238485161556 +163052,815.2600000061901,-0.054077138984085185 +163053,815.2650000061902,-0.0540770394749311 +163054,815.2700000061903,-0.05407693995769749 +163055,815.2750000061905,-0.05407684043238251 +163056,815.2800000061906,-0.05407674089898433 +163057,815.2850000061907,-0.05407664135750109 +163058,815.2900000061908,-0.054076541807930964 +163059,815.2950000061909,-0.05407644225027211 +163060,815.300000006191,-0.05407634268452269 +163061,815.3050000061911,-0.05407624311068085 +163062,815.3100000061912,-0.05407614352874475 +163063,815.3150000061913,-0.05407604393871254 +163064,815.3200000061914,-0.054075944340582396 +163065,815.3250000061915,-0.05407584473435247 +163066,815.3300000061917,-0.05407574512002091 +163067,815.3350000061918,-0.05407564549758587 +163068,815.3400000061919,-0.054075545867045494 +163069,815.345000006192,-0.05407544622839795 +163070,815.3500000061921,-0.054075346581641384 +163071,815.3550000061922,-0.05407524692677396 +163072,815.3600000061923,-0.05407514726379381 +163073,815.3650000061924,-0.05407504759269909 +163074,815.3700000061925,-0.054074947913487964 +163075,815.3750000061926,-0.05407484822615855 +163076,815.3800000061927,-0.05407474853070903 +163077,815.3850000061929,-0.05407464882713752 +163078,815.390000006193,-0.0540745491154422 +163079,815.3950000061931,-0.054074449395621185 +163080,815.4000000061932,-0.05407434966767265 +163081,815.4050000061933,-0.05407424993159472 +163082,815.4100000061934,-0.05407415018738556 +163083,815.4150000061935,-0.05407405043504329 +163084,815.4200000061936,-0.054073950674566065 +163085,815.4250000061937,-0.05407385090595203 +163086,815.4300000061938,-0.05407375112919931 +163087,815.435000006194,-0.05407365134430607 +163088,815.440000006194,-0.05407355155127044 +163089,815.4450000061942,-0.054073451750090554 +163090,815.4500000061943,-0.05407335194076457 +163091,815.4550000061944,-0.0540732521232906 +163092,815.4600000061945,-0.05407315229766681 +163093,815.4650000061946,-0.05407305246389132 +163094,815.4700000061947,-0.05407295262196226 +163095,815.4750000061948,-0.054072852771877795 +163096,815.4800000061949,-0.05407275291363602 +163097,815.485000006195,-0.05407265304723511 +163098,815.4900000061951,-0.054072553172673184 +163099,815.4950000061953,-0.05407245328994837 +163100,815.5000000061954,-0.05407235339905881 +163101,815.5050000061955,-0.05407225350000263 +163102,815.5100000061956,-0.05407215359277796 +163103,815.5150000061957,-0.05407205367738294 +163104,815.5200000061958,-0.05407195375381569 +163105,815.5250000061959,-0.05407185382207435 +163106,815.530000006196,-0.05407175388215704 +163107,815.5350000061961,-0.0540716539340619 +163108,815.5400000061962,-0.05407155397778705 +163109,815.5450000061963,-0.05407145401333061 +163110,815.5500000061965,-0.054071354040690724 +163111,815.5550000061966,-0.054071254059865494 +163112,815.5600000061967,-0.05407115407085307 +163113,815.5650000061968,-0.05407105407365157 +163114,815.5700000061969,-0.0540709540682591 +163115,815.575000006197,-0.0540708540546738 +163116,815.5800000061971,-0.054070754032893804 +163117,815.5850000061972,-0.05407065400291721 +163118,815.5900000061973,-0.05407055396474216 +163119,815.5950000061974,-0.05407045391836677 +163120,815.6000000061975,-0.05407035386378914 +163121,815.6050000061977,-0.05407025380100741 +163122,815.6100000061978,-0.0540701537300197 +163123,815.6150000061979,-0.05407005365082411 +163124,815.620000006198,-0.05406995356341878 +163125,815.6250000061981,-0.054069853467801805 +163126,815.6300000061982,-0.05406975336397132 +163127,815.6350000061983,-0.054069653251925434 +163128,815.6400000061984,-0.054069553131662264 +163129,815.6450000061985,-0.05406945300317992 +163130,815.6500000061986,-0.05406935286647651 +163131,815.6550000061987,-0.05406925272155016 +163132,815.6600000061989,-0.054069152568398976 +163133,815.665000006199,-0.054069052407021076 +163134,815.6700000061991,-0.054068952237414564 +163135,815.6750000061992,-0.05406885205957755 +163136,815.6800000061993,-0.054068751873508146 +163137,815.6850000061994,-0.054068651679204466 +163138,815.6900000061995,-0.054068551476664596 +163139,815.6950000061996,-0.05406845126588666 +163140,815.7000000061997,-0.05406835104686879 +163141,815.7050000061998,-0.05406825081960905 +163142,815.7100000062,-0.054068150584105565 +163143,815.7150000062001,-0.05406805034035645 +163144,815.7200000062002,-0.054067950088359795 +163145,815.7250000062003,-0.05406784982811371 +163146,815.7300000062004,-0.05406774955961629 +163147,815.7350000062005,-0.05406764928286564 +163148,815.7400000062006,-0.05406754899785987 +163149,815.7450000062007,-0.054067448704597086 +163150,815.7500000062008,-0.05406734840307537 +163151,815.7550000062009,-0.05406724809329283 +163152,815.760000006201,-0.05406714777524758 +163153,815.7650000062011,-0.054067047448937686 +163154,815.7700000062013,-0.05406694711436127 +163155,815.7750000062014,-0.05406684677151642 +163156,815.7800000062015,-0.05406674642040125 +163157,815.7850000062016,-0.05406664606101383 +163158,815.7900000062017,-0.054066545693352286 +163159,815.7950000062018,-0.054066445317414676 +163160,815.8000000062019,-0.05406634493319912 +163161,815.805000006202,-0.05406624454070371 +163162,815.8100000062021,-0.05406614413992654 +163163,815.8150000062022,-0.05406604373086569 +163164,815.8200000062023,-0.05406594331351926 +163165,815.8250000062025,-0.054065842887885324 +163166,815.8300000062026,-0.054065742453961986 +163167,815.8350000062027,-0.05406564201174734 +163168,815.8400000062028,-0.05406554156123947 +163169,815.8450000062029,-0.05406544110243647 +163170,815.850000006203,-0.05406534063533641 +163171,815.8550000062031,-0.054065240159937404 +163172,815.8600000062032,-0.05406513967623751 +163173,815.8650000062033,-0.054065039184234824 +163174,815.8700000062034,-0.054064938683927435 +163175,815.8750000062035,-0.05406483817531343 +163176,815.8800000062037,-0.054064737658390885 +163177,815.8850000062038,-0.05406463713315787 +163178,815.8900000062039,-0.054064536599612495 +163179,815.895000006204,-0.05406443605775283 +163180,815.9000000062041,-0.05406433550757696 +163181,815.9050000062042,-0.05406423494908295 +163182,815.9100000062043,-0.05406413438226889 +163183,815.9150000062044,-0.05406403380713286 +163184,815.9200000062045,-0.054063933223672936 +163185,815.9250000062046,-0.05406383263188718 +163186,815.9300000062048,-0.0540637320317737 +163187,815.9350000062049,-0.05406363142333055 +163188,815.940000006205,-0.05406353080655581 +163189,815.9450000062051,-0.05406343018144755 +163190,815.9500000062052,-0.05406332954800385 +163191,815.9550000062053,-0.05406322890622279 +163192,815.9600000062054,-0.05406312825610243 +163193,815.9650000062055,-0.05406302759764085 +163194,815.9700000062056,-0.05406292693083613 +163195,815.9750000062057,-0.05406282625568632 +163196,815.9800000062058,-0.05406272557218951 +163197,815.985000006206,-0.054062624880343746 +163198,815.9900000062061,-0.05406252418014712 +163199,815.9950000062062,-0.0540624234715977 +163200,816.0000000062063,-0.05406232275469354 +163201,816.0050000062064,-0.054062222029432706 +163202,816.0100000062065,-0.054062121295813274 +163203,816.0150000062066,-0.054062020553833294 +163204,816.0200000062067,-0.05406191980349085 +163205,816.0250000062068,-0.054061819044784 +163206,816.0300000062069,-0.054061718277710814 +163207,816.035000006207,-0.05406161750226933 +163208,816.0400000062072,-0.054061516718457624 +163209,816.0450000062073,-0.05406141592627377 +163210,816.0500000062074,-0.05406131512571581 +163211,816.0550000062075,-0.05406121431678181 +163212,816.0600000062076,-0.05406111349946984 +163213,816.0650000062077,-0.05406101267377794 +163214,816.0700000062078,-0.05406091183970418 +163215,816.0750000062079,-0.05406081099724662 +163216,816.080000006208,-0.05406071014640331 +163217,816.0850000062081,-0.054060609287172316 +163218,816.0900000062082,-0.054060508419551664 +163219,816.0950000062084,-0.05406040754353944 +163220,816.1000000062085,-0.05406030665913369 +163221,816.1050000062086,-0.05406020576633246 +163222,816.1100000062087,-0.05406010486513381 +163223,816.1150000062088,-0.05406000395553579 +163224,816.1200000062089,-0.05405990303753646 +163225,816.125000006209,-0.05405980211113385 +163226,816.1300000062091,-0.05405970117632603 +163227,816.1350000062092,-0.054059600233111044 +163228,816.1400000062093,-0.05405949928148692 +163229,816.1450000062094,-0.05405939832145174 +163230,816.1500000062096,-0.05405929735300353 +163231,816.1550000062097,-0.05405919637614034 +163232,816.1600000062098,-0.05405909539086021 +163233,816.1650000062099,-0.0540589943971612 +163234,816.17000000621,-0.05405889339504134 +163235,816.1750000062101,-0.05405879238449868 +163236,816.1800000062102,-0.054058691365531264 +163237,816.1850000062103,-0.05405859033813714 +163238,816.1900000062104,-0.05405848930231433 +163239,816.1950000062105,-0.054058388258060905 +163240,816.2000000062106,-0.05405828720537488 +163241,816.2050000062108,-0.05405818614425431 +163242,816.2100000062109,-0.05405808507469722 +163243,816.215000006211,-0.054057983996701656 +163244,816.2200000062111,-0.05405788291026565 +163245,816.2250000062112,-0.05405778181538724 +163246,816.2300000062113,-0.05405768071206448 +163247,816.2350000062114,-0.054057579600295384 +163248,816.2400000062115,-0.054057478480078004 +163249,816.2450000062116,-0.05405737735141037 +163250,816.2500000062117,-0.054057276214290496 +163251,816.2550000062118,-0.054057175068716434 +163252,816.260000006212,-0.05405707391468621 +163253,816.2650000062121,-0.05405697275219787 +163254,816.2700000062122,-0.05405687158124941 +163255,816.2750000062123,-0.05405677040183889 +163256,816.2800000062124,-0.05405666921396434 +163257,816.2850000062125,-0.05405656801762378 +163258,816.2900000062126,-0.05405646681281523 +163259,816.2950000062127,-0.054056365599536735 +163260,816.3000000062128,-0.05405626437778631 +163261,816.3050000062129,-0.054056163147561974 +163262,816.310000006213,-0.054056061908861766 +163263,816.3150000062132,-0.054055960661683715 +163264,816.3200000062133,-0.054055859406025836 +163265,816.3250000062134,-0.054055758141886144 +163266,816.3300000062135,-0.054055656869262676 +163267,816.3350000062136,-0.054055555588153455 +163268,816.3400000062137,-0.05405545429855649 +163269,816.3450000062138,-0.05405535300046979 +163270,816.3500000062139,-0.05405525169389141 +163271,816.355000006214,-0.05405515037881933 +163272,816.3600000062141,-0.05405504905525162 +163273,816.3650000062142,-0.054054947723186246 +163274,816.3700000062144,-0.05405484638262125 +163275,816.3750000062145,-0.05405474503355464 +163276,816.3800000062146,-0.054054643675984435 +163277,816.3850000062147,-0.05405454230990866 +163278,816.3900000062148,-0.054054440935325306 +163279,816.3950000062149,-0.054054339552232405 +163280,816.400000006215,-0.054054238160627974 +163281,816.4050000062151,-0.054054136760510005 +163282,816.4100000062152,-0.05405403535187652 +163283,816.4150000062153,-0.05405393393472554 +163284,816.4200000062154,-0.05405383250905506 +163285,816.4250000062156,-0.054053731074863096 +163286,816.4300000062157,-0.05405362963214766 +163287,816.4350000062158,-0.05405352818090675 +163288,816.4400000062159,-0.05405342672113838 +163289,816.445000006216,-0.05405332525284055 +163290,816.4500000062161,-0.05405322377601128 +163291,816.4550000062162,-0.05405312229064856 +163292,816.4600000062163,-0.0540530207967504 +163293,816.4650000062164,-0.05405291929431482 +163294,816.4700000062165,-0.054052817783339806 +163295,816.4750000062166,-0.05405271626382336 +163296,816.4800000062168,-0.054052614735763484 +163297,816.4850000062169,-0.054052513199158186 +163298,816.490000006217,-0.054052411654005456 +163299,816.4950000062171,-0.0540523101003033 +163300,816.5000000062172,-0.05405220853804971 +163301,816.5050000062173,-0.05405210696724269 +163302,816.5100000062174,-0.05405200538788024 +163303,816.5150000062175,-0.05405190379996036 +163304,816.5200000062176,-0.054051802203481034 +163305,816.5250000062177,-0.054051700598440264 +163306,816.5300000062178,-0.054051598984836045 +163307,816.535000006218,-0.05405149736266638 +163308,816.5400000062181,-0.05405139573192925 +163309,816.5450000062182,-0.05405129409262266 +163310,816.5500000062183,-0.05405119244474457 +163311,816.5550000062184,-0.05405109078829301 +163312,816.5600000062185,-0.054050989123265954 +163313,816.5650000062186,-0.05405088744966139 +163314,816.5700000062187,-0.05405078576747731 +163315,816.5750000062188,-0.05405068407671171 +163316,816.5800000062189,-0.05405058237736256 +163317,816.585000006219,-0.05405048066942786 +163318,816.5900000062192,-0.05405037895290559 +163319,816.5950000062193,-0.05405027722779374 +163320,816.6000000062194,-0.054050175494090295 +163321,816.6050000062195,-0.054050073751793236 +163322,816.6100000062196,-0.05404997200090054 +163323,816.6150000062197,-0.054049870241410204 +163324,816.6200000062198,-0.0540497684733202 +163325,816.6250000062199,-0.05404966669662852 +163326,816.63000000622,-0.054049564911333135 +163327,816.6350000062201,-0.05404946311743203 +163328,816.6400000062202,-0.054049361314923175 +163329,816.6450000062204,-0.05404925950380455 +163330,816.6500000062205,-0.054049157684074145 +163331,816.6550000062206,-0.05404905585572993 +163332,816.6600000062207,-0.05404895401876988 +163333,816.6650000062208,-0.05404885217319196 +163334,816.6700000062209,-0.054048750318994164 +163335,816.675000006221,-0.054048648456174464 +163336,816.6800000062211,-0.05404854658473083 +163337,816.6850000062212,-0.05404844470466124 +163338,816.6900000062213,-0.05404834281596365 +163339,816.6950000062214,-0.05404824091863604 +163340,816.7000000062216,-0.05404813901267639 +163341,816.7050000062217,-0.054048037098082646 +163342,816.7100000062218,-0.0540479351748528 +163343,816.7150000062219,-0.05404783324298481 +163344,816.720000006222,-0.05404773130247665 +163345,816.7250000062221,-0.054047629353326285 +163346,816.7300000062222,-0.05404752739553169 +163347,816.7350000062223,-0.05404742542909081 +163348,816.7400000062224,-0.05404732345400163 +163349,816.7450000062225,-0.0540472214702621 +163350,816.7500000062226,-0.0540471194778702 +163351,816.7550000062228,-0.05404701747682387 +163352,816.7600000062229,-0.054046915467121086 +163353,816.765000006223,-0.054046813448759806 +163354,816.7700000062231,-0.054046711421737996 +163355,816.7750000062232,-0.0540466093860536 +163356,816.7800000062233,-0.054046507341704596 +163357,816.7850000062234,-0.054046405288688946 +163358,816.7900000062235,-0.054046303227004586 +163359,816.7950000062236,-0.05404620115664949 +163360,816.8000000062237,-0.054046099077621604 +163361,816.8050000062238,-0.05404599698991889 +163362,816.810000006224,-0.0540458948935393 +163363,816.8150000062241,-0.0540457927884808 +163364,816.8200000062242,-0.054045690674741326 +163365,816.8250000062243,-0.054045588552318835 +163366,816.8300000062244,-0.05404548642121128 +163367,816.8350000062245,-0.05404538428141662 +163368,816.8400000062246,-0.0540452821329328 +163369,816.8450000062247,-0.05404517997575778 +163370,816.8500000062248,-0.05404507780988949 +163371,816.8550000062249,-0.054044975635325884 +163372,816.860000006225,-0.05404487345206492 +163373,816.8650000062252,-0.05404477126010454 +163374,816.8700000062253,-0.05404466905944268 +163375,816.8750000062254,-0.0540445668500773 +163376,816.8800000062255,-0.05404446463200634 +163377,816.8850000062256,-0.054044362405227746 +163378,816.8900000062257,-0.05404426016973945 +163379,816.8950000062258,-0.0540441579255394 +163380,816.9000000062259,-0.054044055672625546 +163381,816.905000006226,-0.054043953410995826 +163382,816.9100000062261,-0.05404385114064817 +163383,816.9150000062263,-0.05404374886158054 +163384,816.9200000062264,-0.054043646573790856 +163385,816.9250000062265,-0.05404354427727707 +163386,816.9300000062266,-0.0540434419720371 +163387,816.9350000062267,-0.0540433396580689 +163388,816.9400000062268,-0.054043237335370406 +163389,816.9450000062269,-0.05404313500393954 +163390,816.950000006227,-0.05404303266377424 +163391,816.9550000062271,-0.05404293031487245 +163392,816.9600000062272,-0.054042827957232094 +163393,816.9650000062273,-0.054042725590851104 +163394,816.9700000062275,-0.054042623215727434 +163395,816.9750000062276,-0.05404252083185898 +163396,816.9800000062277,-0.054042418439243706 +163397,816.9850000062278,-0.05404231603787952 +163398,816.9900000062279,-0.05404221362776435 +163399,816.995000006228,-0.05404211120889613 +163400,817.0000000062281,-0.054042008781272785 +163401,817.0050000062282,-0.054041906344892254 +163402,817.0100000062283,-0.05404180389975245 +163403,817.0150000062284,-0.054041701445851305 +163404,817.0200000062285,-0.05404159898318673 +163405,817.0250000062287,-0.054041496511756666 +163406,817.0300000062288,-0.054041394031559026 +163407,817.0350000062289,-0.05404129154259172 +163408,817.040000006229,-0.0540411890448527 +163409,817.0450000062291,-0.05404108653833987 +163410,817.0500000062292,-0.05404098402305114 +163411,817.0550000062293,-0.05404088149898445 +163412,817.0600000062294,-0.05404077896613771 +163413,817.0650000062295,-0.054040676424508834 +163414,817.0700000062296,-0.05404057387409574 +163415,817.0750000062297,-0.05404047131489635 +163416,817.0800000062299,-0.05404036874690857 +163417,817.08500000623,-0.05404026617013032 +163418,817.0900000062301,-0.05404016358455952 +163419,817.0950000062302,-0.05404006099019408 +163420,817.1000000062303,-0.054039958387031906 +163421,817.1050000062304,-0.05403985577507091 +163422,817.1100000062305,-0.05403975315430901 +163423,817.1150000062306,-0.05403965052474412 +163424,817.1200000062307,-0.05403954788637414 +163425,817.1250000062308,-0.05403944523919698 +163426,817.130000006231,-0.05403934258321055 +163427,817.135000006231,-0.05403923991841278 +163428,817.1400000062312,-0.05403913724480154 +163429,817.1450000062313,-0.05403903456237475 +163430,817.1500000062314,-0.05403893187113032 +163431,817.1550000062315,-0.05403882917106616 +163432,817.1600000062316,-0.05403872646218015 +163433,817.1650000062317,-0.054038623744470216 +163434,817.1700000062318,-0.05403852101793426 +163435,817.1750000062319,-0.054038418282570166 +163436,817.180000006232,-0.05403831553837584 +163437,817.1850000062321,-0.054038212785349204 +163438,817.1900000062323,-0.05403811002348813 +163439,817.1950000062324,-0.05403800725279054 +163440,817.2000000062325,-0.0540379044732543 +163441,817.2050000062326,-0.05403780168487734 +163442,817.2100000062327,-0.05403769888765754 +163443,817.2150000062328,-0.054037596081592795 +163444,817.2200000062329,-0.05403749326668101 +163445,817.225000006233,-0.05403739044292007 +163446,817.2300000062331,-0.05403728761030787 +163447,817.2350000062332,-0.05403718476884231 +163448,817.2400000062333,-0.05403708191852127 +163449,817.2450000062335,-0.05403697905934264 +163450,817.2500000062336,-0.05403687619130433 +163451,817.2550000062337,-0.054036773314404214 +163452,817.2600000062338,-0.05403667042864018 +163453,817.2650000062339,-0.05403656753401012 +163454,817.270000006234,-0.05403646463051191 +163455,817.2750000062341,-0.054036361718143466 +163456,817.2800000062342,-0.05403625879690266 +163457,817.2850000062343,-0.054036155866787366 +163458,817.2900000062344,-0.05403605292779548 +163459,817.2950000062345,-0.05403594997992488 +163460,817.3000000062347,-0.05403584702317345 +163461,817.3050000062348,-0.05403574405753906 +163462,817.3100000062349,-0.054035641083019614 +163463,817.315000006235,-0.05403553809961298 +163464,817.3200000062351,-0.054035435107317044 +163465,817.3250000062352,-0.05403533210612967 +163466,817.3300000062353,-0.05403522909604877 +163467,817.3350000062354,-0.05403512607707218 +163468,817.3400000062355,-0.05403502304919781 +163469,817.3450000062356,-0.054034920012423514 +163470,817.3500000062357,-0.05403481696674719 +163471,817.3550000062359,-0.05403471391216668 +163472,817.360000006236,-0.054034610848679894 +163473,817.3650000062361,-0.05403450777628467 +163474,817.3700000062362,-0.0540344046949789 +163475,817.3750000062363,-0.05403430160476047 +163476,817.3800000062364,-0.05403419850562723 +163477,817.3850000062365,-0.05403409539757705 +163478,817.3900000062366,-0.054033992280607804 +163479,817.3950000062367,-0.05403388915471737 +163480,817.4000000062368,-0.0540337860199036 +163481,817.405000006237,-0.05403368287616438 +163482,817.410000006237,-0.05403357972349755 +163483,817.4150000062372,-0.054033476561900995 +163484,817.4200000062373,-0.054033373391372576 +163485,817.4250000062374,-0.05403327021191015 +163486,817.4300000062375,-0.054033167023511595 +163487,817.4350000062376,-0.05403306382617475 +163488,817.4400000062377,-0.054032960619897506 +163489,817.4450000062378,-0.05403285740467771 +163490,817.4500000062379,-0.054032754180513225 +163491,817.455000006238,-0.054032650947401895 +163492,817.4600000062381,-0.054032547705341584 +163493,817.4650000062383,-0.05403244445433018 +163494,817.4700000062384,-0.0540323411943655 +163495,817.4750000062385,-0.05403223792544543 +163496,817.4800000062386,-0.0540321346475678 +163497,817.4850000062387,-0.05403203136073049 +163498,817.4900000062388,-0.05403192806493134 +163499,817.4950000062389,-0.054031824760168205 +163500,817.500000006239,-0.05403172144643894 +163501,817.5050000062391,-0.054031618123741396 +163502,817.5100000062392,-0.05403151479207342 +163503,817.5150000062393,-0.05403141145143287 +163504,817.5200000062395,-0.05403130810181759 +163505,817.5250000062396,-0.05403120474322543 +163506,817.5300000062397,-0.054031101375654235 +163507,817.5350000062398,-0.05403099799910186 +163508,817.5400000062399,-0.054030894613566145 +163509,817.54500000624,-0.054030791219044944 +163510,817.5500000062401,-0.054030687815536084 +163511,817.5550000062402,-0.05403058440303742 +163512,817.5600000062403,-0.0540304809815468 +163513,817.5650000062404,-0.054030377551062075 +163514,817.5700000062405,-0.05403027411158107 +163515,817.5750000062407,-0.05403017066310163 +163516,817.5800000062408,-0.05403006720562159 +163517,817.5850000062409,-0.054029963739138806 +163518,817.590000006241,-0.0540298602636511 +163519,817.5950000062411,-0.05402975677915633 +163520,817.6000000062412,-0.05402965328565232 +163521,817.6050000062413,-0.0540295497831369 +163522,817.6100000062414,-0.05402944627160791 +163523,817.6150000062415,-0.054029342751063185 +163524,817.6200000062416,-0.05402923922150056 +163525,817.6250000062417,-0.05402913568291788 +163526,817.6300000062419,-0.054029032135312974 +163527,817.635000006242,-0.05402892857868366 +163528,817.6400000062421,-0.05402882501302778 +163529,817.6450000062422,-0.05402872143834317 +163530,817.6500000062423,-0.05402861785462764 +163531,817.6550000062424,-0.054028514261879025 +163532,817.6600000062425,-0.054028410660095165 +163533,817.6650000062426,-0.05402830704927388 +163534,817.6700000062427,-0.054028203429412995 +163535,817.6750000062428,-0.05402809980051035 +163536,817.680000006243,-0.05402799616256374 +163537,817.6850000062431,-0.05402789251557101 +163538,817.6900000062432,-0.05402778885952999 +163539,817.6950000062433,-0.05402768519443849 +163540,817.7000000062434,-0.054027581520294334 +163541,817.7050000062435,-0.054027477837095335 +163542,817.7100000062436,-0.05402737414483933 +163543,817.7150000062437,-0.05402727044352413 +163544,817.7200000062438,-0.05402716673314755 +163545,817.7250000062439,-0.05402706301370742 +163546,817.730000006244,-0.05402695928520154 +163547,817.7350000062441,-0.05402685554762773 +163548,817.7400000062443,-0.05402675180098382 +163549,817.7450000062444,-0.054026648045267606 +163550,817.7500000062445,-0.05402654428047693 +163551,817.7550000062446,-0.054026440506609576 +163552,817.7600000062447,-0.05402633672366337 +163553,817.7650000062448,-0.054026232931636116 +163554,817.7700000062449,-0.05402612913052563 +163555,817.775000006245,-0.054026025320329726 +163556,817.7800000062451,-0.0540259215010462 +163557,817.7850000062452,-0.05402581767267287 +163558,817.7900000062454,-0.05402571383520756 +163559,817.7950000062455,-0.05402560998864804 +163560,817.8000000062456,-0.05402550613299215 +163561,817.8050000062457,-0.05402540226823768 +163562,817.8100000062458,-0.05402529839438245 +163563,817.8150000062459,-0.054025194511424235 +163564,817.820000006246,-0.05402509061936085 +163565,817.8250000062461,-0.05402498671819012 +163566,817.8300000062462,-0.05402488280790982 +163567,817.8350000062463,-0.05402477888851776 +163568,817.8400000062464,-0.05402467496001174 +163569,817.8450000062466,-0.054024571022389556 +163570,817.8500000062467,-0.054024467075649 +163571,817.8550000062468,-0.05402436311978788 +163572,817.8600000062469,-0.05402425915480399 +163573,817.865000006247,-0.05402415518069513 +163574,817.8700000062471,-0.05402405119745909 +163575,817.8750000062472,-0.05402394720509367 +163576,817.8800000062473,-0.054023843203596655 +163577,817.8850000062474,-0.05402373919296585 +163578,817.8900000062475,-0.054023635173199025 +163579,817.8950000062476,-0.054023531144294 +163580,817.9000000062478,-0.05402342710624854 +163581,817.9050000062479,-0.05402332305906045 +163582,817.910000006248,-0.05402321900272752 +163583,817.9150000062481,-0.05402311493724753 +163584,817.9200000062482,-0.054023010862618265 +163585,817.9250000062483,-0.05402290677883751 +163586,817.9300000062484,-0.05402280268590306 +163587,817.9350000062485,-0.0540226985838127 +163588,817.9400000062486,-0.05402259447256421 +163589,817.9450000062487,-0.054022490352155374 +163590,817.9500000062488,-0.05402238622258398 +163591,817.955000006249,-0.0540222820838478 +163592,817.9600000062491,-0.05402217793594461 +163593,817.9650000062492,-0.054022073778872214 +163594,817.9700000062493,-0.05402196961262837 +163595,817.9750000062494,-0.05402186543721087 +163596,817.9800000062495,-0.054021761252617484 +163597,817.9850000062496,-0.05402165705884599 +163598,817.9900000062497,-0.05402155285589416 +163599,817.9950000062498,-0.05402144864375977 +163600,818.0000000062499,-0.05402134442244061 +163601,818.00500000625,-0.054021240191934425 +163602,818.0100000062502,-0.05402113595223901 +163603,818.0150000062503,-0.05402103170335214 +163604,818.0200000062504,-0.054020927445271566 +163605,818.0250000062505,-0.054020823177995086 +163606,818.0300000062506,-0.05402071890152044 +163607,818.0350000062507,-0.05402061461584542 +163608,818.0400000062508,-0.05402051032096779 +163609,818.0450000062509,-0.054020406016885306 +163610,818.050000006251,-0.05402030170359574 +163611,818.0550000062511,-0.05402019738109685 +163612,818.0600000062512,-0.05402009304938642 +163613,818.0650000062514,-0.05401998870846221 +163614,818.0700000062515,-0.05401988435832197 +163615,818.0750000062516,-0.05401977999896347 +163616,818.0800000062517,-0.054019675630384484 +163617,818.0850000062518,-0.05401957125258275 +163618,818.0900000062519,-0.05401946686555604 +163619,818.095000006252,-0.05401936246930211 +163620,818.1000000062521,-0.05401925806381873 +163621,818.1050000062522,-0.054019153649103646 +163622,818.1100000062523,-0.05401904922515462 +163623,818.1150000062524,-0.05401894479196939 +163624,818.1200000062526,-0.054018840349545745 +163625,818.1250000062527,-0.05401873589788141 +163626,818.1300000062528,-0.05401863143697415 +163627,818.1350000062529,-0.05401852696682171 +163628,818.140000006253,-0.054018422487421856 +163629,818.1450000062531,-0.05401831799877233 +163630,818.1500000062532,-0.0540182135008709 +163631,818.1550000062533,-0.054018108993715286 +163632,818.1600000062534,-0.05401800447730327 +163633,818.1650000062535,-0.05401789995163256 +163634,818.1700000062536,-0.05401779541670094 +163635,818.1750000062538,-0.05401769087250614 +163636,818.1800000062539,-0.05401758631904591 +163637,818.185000006254,-0.05401748175631798 +163638,818.1900000062541,-0.05401737718432011 +163639,818.1950000062542,-0.054017272603050046 +163640,818.2000000062543,-0.05401716801250551 +163641,818.2050000062544,-0.054017063412684266 +163642,818.2100000062545,-0.05401695880358405 +163643,818.2150000062546,-0.05401685418520259 +163644,818.2200000062547,-0.05401674955753762 +163645,818.2250000062548,-0.0540166449205869 +163646,818.230000006255,-0.05401654027434816 +163647,818.2350000062551,-0.05401643561881913 +163648,818.2400000062552,-0.054016330953997556 +163649,818.2450000062553,-0.05401622627988117 +163650,818.2500000062554,-0.0540161215964677 +163651,818.2550000062555,-0.054016016903754877 +163652,818.2600000062556,-0.054015912201740436 +163653,818.2650000062557,-0.05401580749042212 +163654,818.2700000062558,-0.054015702769797655 +163655,818.2750000062559,-0.05401559803986477 +163656,818.280000006256,-0.054015493300621185 +163657,818.2850000062562,-0.054015388552064635 +163658,818.2900000062563,-0.054015283794192855 +163659,818.2950000062564,-0.054015179027003556 +163660,818.3000000062565,-0.05401507425049448 +163661,818.3050000062566,-0.05401496946466334 +163662,818.3100000062567,-0.054014864669507875 +163663,818.3150000062568,-0.054014759865025797 +163664,818.3200000062569,-0.05401465505121483 +163665,818.325000006257,-0.054014550228072694 +163666,818.3300000062571,-0.05401444539559711 +163667,818.3350000062572,-0.0540143405537858 +163668,818.3400000062574,-0.054014235702636484 +163669,818.3450000062575,-0.05401413084214689 +163670,818.3500000062576,-0.054014025972314715 +163671,818.3550000062577,-0.0540139210931377 +163672,818.3600000062578,-0.05401381620461355 +163673,818.3650000062579,-0.054013711306739966 +163674,818.370000006258,-0.054013606399514684 +163675,818.3750000062581,-0.05401350148293541 +163676,818.3800000062582,-0.054013396556999854 +163677,818.3850000062583,-0.054013291621705734 +163678,818.3900000062584,-0.054013186677050753 +163679,818.3950000062586,-0.05401308172303263 +163680,818.4000000062587,-0.05401297675964906 +163681,818.4050000062588,-0.05401287178689778 +163682,818.4100000062589,-0.054012766804776464 +163683,818.415000006259,-0.05401266181328283 +163684,818.4200000062591,-0.054012556812414604 +163685,818.4250000062592,-0.054012451802169466 +163686,818.4300000062593,-0.054012346782545136 +163687,818.4350000062594,-0.05401224175353932 +163688,818.4400000062595,-0.05401213671514969 +163689,818.4450000062596,-0.05401203166737399 +163690,818.4500000062598,-0.0540119266102099 +163691,818.4550000062599,-0.054011821543655116 +163692,818.46000000626,-0.054011716467707346 +163693,818.4650000062601,-0.054011611382364294 +163694,818.4700000062602,-0.05401150628762365 +163695,818.4750000062603,-0.054011401183483104 +163696,818.4800000062604,-0.05401129606994037 +163697,818.4850000062605,-0.05401119094699314 +163698,818.4900000062606,-0.05401108581463909 +163699,818.4950000062607,-0.05401098067287593 +163700,818.5000000062608,-0.05401087552170135 +163701,818.505000006261,-0.05401077036111305 +163702,818.5100000062611,-0.0540106651911087 +163703,818.5150000062612,-0.05401056001168601 +163704,818.5200000062613,-0.05401045482284266 +163705,818.5250000062614,-0.054010349624576334 +163706,818.5300000062615,-0.054010244416884734 +163707,818.5350000062616,-0.054010139199765536 +163708,818.5400000062617,-0.05401003397321642 +163709,818.5450000062618,-0.0540099287372351 +163710,818.5500000062619,-0.05400982349181924 +163711,818.555000006262,-0.05400971823696651 +163712,818.5600000062622,-0.05400961297267462 +163713,818.5650000062623,-0.054009507698941236 +163714,818.5700000062624,-0.054009402415764046 +163715,818.5750000062625,-0.054009297123140725 +163716,818.5800000062626,-0.054009191821068954 +163717,818.5850000062627,-0.05400908650954641 +163718,818.5900000062628,-0.054008981188570775 +163719,818.5950000062629,-0.05400887585813973 +163720,818.600000006263,-0.05400877051825094 +163721,818.6050000062631,-0.0540086651689021 +163722,818.6100000062632,-0.05400855981009086 +163723,818.6150000062634,-0.05400845444181491 +163724,818.6200000062635,-0.05400834906407191 +163725,818.6250000062636,-0.05400824367685954 +163726,818.6300000062637,-0.054008138280175456 +163727,818.6350000062638,-0.05400803287401736 +163728,818.6400000062639,-0.0540079274583829 +163729,818.645000006264,-0.054007822033269745 +163730,818.6500000062641,-0.05400771659867557 +163731,818.6550000062642,-0.05400761115459804 +163732,818.6600000062643,-0.05400750570103482 +163733,818.6650000062644,-0.05400740023798356 +163734,818.6700000062646,-0.05400729476544194 +163735,818.6750000062647,-0.05400718928340763 +163736,818.6800000062648,-0.054007083791878276 +163737,818.6850000062649,-0.05400697829085155 +163738,818.690000006265,-0.054006872780325114 +163739,818.6950000062651,-0.054006767260296615 +163740,818.7000000062652,-0.054006661730763725 +163741,818.7050000062653,-0.0540065561917241 +163742,818.7100000062654,-0.0540064506431754 +163743,818.7150000062655,-0.05400634508511527 +163744,818.7200000062656,-0.054006239517541375 +163745,818.7250000062658,-0.05400613394045137 +163746,818.7300000062659,-0.05400602835384291 +163747,818.735000006266,-0.05400592275771363 +163748,818.7400000062661,-0.054005817152061215 +163749,818.7450000062662,-0.0540057115368833 +163750,818.7500000062663,-0.05400560591217753 +163751,818.7550000062664,-0.054005500277941564 +163752,818.7600000062665,-0.054005394634173046 +163753,818.7650000062666,-0.05400528898086962 +163754,818.7700000062667,-0.05400518331802894 +163755,818.7750000062669,-0.05400507764564866 +163756,818.780000006267,-0.0540049719637264 +163757,818.7850000062671,-0.05400486627225983 +163758,818.7900000062672,-0.05400476057124659 +163759,818.7950000062673,-0.054004654860684315 +163760,818.8000000062674,-0.054004549140570644 +163761,818.8050000062675,-0.05400444341090322 +163762,818.8100000062676,-0.05400433767167969 +163763,818.8150000062677,-0.0540042319228977 +163764,818.8200000062678,-0.054004126164554876 +163765,818.8250000062679,-0.05400402039664885 +163766,818.830000006268,-0.05400391461917728 +163767,818.8350000062682,-0.0540038088321378 +163768,818.8400000062683,-0.05400370303552802 +163769,818.8450000062684,-0.05400359722934559 +163770,818.8500000062685,-0.05400349141358814 +163771,818.8550000062686,-0.05400338558825331 +163772,818.8600000062687,-0.05400327975333873 +163773,818.8650000062688,-0.05400317390884203 +163774,818.8700000062689,-0.05400306805476083 +163775,818.875000006269,-0.054002962191092775 +163776,818.8800000062691,-0.054002856317835496 +163777,818.8850000062693,-0.0540027504349866 +163778,818.8900000062694,-0.05400264454254372 +163779,818.8950000062695,-0.0540025386405045 +163780,818.9000000062696,-0.05400243272886654 +163781,818.9050000062697,-0.05400232680762748 +163782,818.9100000062698,-0.05400222087678493 +163783,818.9150000062699,-0.054002114936336526 +163784,818.92000000627,-0.05400200898627989 +163785,818.9250000062701,-0.054001903026612626 +163786,818.9300000062702,-0.05400179705733237 +163787,818.9350000062703,-0.054001691078436734 +163788,818.9400000062705,-0.05400158508992334 +163789,818.9450000062706,-0.05400147909178979 +163790,818.9500000062707,-0.054001373084033716 +163791,818.9550000062708,-0.05400126706665273 +163792,818.9600000062709,-0.054001161039644446 +163793,818.965000006271,-0.05400105500300648 +163794,818.9700000062711,-0.054000948956736454 +163795,818.9750000062712,-0.05400084290083196 +163796,818.9800000062713,-0.05400073683529061 +163797,818.9850000062714,-0.05400063076011003 +163798,818.9900000062715,-0.054000524675287806 +163799,818.9950000062717,-0.05400041858082157 +163800,819.0000000062718,-0.05400031247670892 +163801,819.0050000062719,-0.05400020636294745 +163802,819.010000006272,-0.05400010023953479 +163803,819.0150000062721,-0.05399999410646854 +163804,819.0200000062722,-0.053999887963746274 +163805,819.0250000062723,-0.05399978181136564 +163806,819.0300000062724,-0.0539996756493242 +163807,819.0350000062725,-0.05399956947761959 +163808,819.0400000062726,-0.05399946329624939 +163809,819.0450000062727,-0.053999357105211206 +163810,819.0500000062729,-0.05399925090450263 +163811,819.055000006273,-0.05399914469412126 +163812,819.0600000062731,-0.05399903847406469 +163813,819.0650000062732,-0.053998932244330534 +163814,819.0700000062733,-0.053998826004916366 +163815,819.0750000062734,-0.05399871975581981 +163816,819.0800000062735,-0.05399861349703842 +163817,819.0850000062736,-0.053998507228569824 +163818,819.0900000062737,-0.05399840095041159 +163819,819.0950000062738,-0.05399829466256132 +163820,819.100000006274,-0.0539981883650166 +163821,819.105000006274,-0.053998082057775024 +163822,819.1100000062742,-0.05399797574083417 +163823,819.1150000062743,-0.05399786941419163 +163824,819.1200000062744,-0.05399776307784499 +163825,819.1250000062745,-0.05399765673179185 +163826,819.1300000062746,-0.05399755037602978 +163827,819.1350000062747,-0.05399744401055637 +163828,819.1400000062748,-0.05399733763536918 +163829,819.1450000062749,-0.053997231250465814 +163830,819.150000006275,-0.053997124855843855 +163831,819.1550000062751,-0.05399701845150088 +163832,819.1600000062753,-0.05399691203743446 +163833,819.1650000062754,-0.05399680561364218 +163834,819.1700000062755,-0.05399669918012163 +163835,819.1750000062756,-0.05399659273687035 +163836,819.1800000062757,-0.05399648628388596 +163837,819.1850000062758,-0.053996379821166 +163838,819.1900000062759,-0.053996273348708074 +163839,819.195000006276,-0.05399616686650972 +163840,819.2000000062761,-0.05399606037456854 +163841,819.2050000062762,-0.0539959538728821 +163842,819.2100000062763,-0.05399584736144796 +163843,819.2150000062765,-0.05399574084026369 +163844,819.2200000062766,-0.05399563430932688 +163845,819.2250000062767,-0.05399552776863506 +163846,819.2300000062768,-0.053995421218185825 +163847,819.2350000062769,-0.05399531465797674 +163848,819.240000006277,-0.053995208088005356 +163849,819.2450000062771,-0.05399510150826924 +163850,819.2500000062772,-0.05399499491876597 +163851,819.2550000062773,-0.0539948883194931 +163852,819.2600000062774,-0.05399478171044819 +163853,819.2650000062775,-0.05399467509162881 +163854,819.2700000062777,-0.053994568463032494 +163855,819.2750000062778,-0.05399446182465682 +163856,819.2800000062779,-0.05399435517649936 +163857,819.285000006278,-0.05399424851855764 +163858,819.2900000062781,-0.053994141850829236 +163859,819.2950000062782,-0.05399403517331169 +163860,819.3000000062783,-0.05399392848600256 +163861,819.3050000062784,-0.05399382178889941 +163862,819.3100000062785,-0.05399371508199978 +163863,819.3150000062786,-0.053993608365301246 +163864,819.3200000062787,-0.053993501638801324 +163865,819.3250000062789,-0.053993394902497584 +163866,819.330000006279,-0.05399328815638758 +163867,819.3350000062791,-0.05399318140046884 +163868,819.3400000062792,-0.05399307463473893 +163869,819.3450000062793,-0.05399296785919539 +163870,819.3500000062794,-0.05399286107383575 +163871,819.3550000062795,-0.05399275427865757 +163872,819.3600000062796,-0.053992647473658395 +163873,819.3650000062797,-0.05399254065883576 +163874,819.3700000062798,-0.053992433834187226 +163875,819.37500000628,-0.0539923269997103 +163876,819.38000000628,-0.05399222015540255 +163877,819.3850000062802,-0.05399211330126151 +163878,819.3900000062803,-0.05399200643728472 +163879,819.3950000062804,-0.05399189956346969 +163880,819.4000000062805,-0.05399179267981399 +163881,819.4050000062806,-0.05399168578631513 +163882,819.4100000062807,-0.053991578882970674 +163883,819.4150000062808,-0.05399147196977813 +163884,819.4200000062809,-0.05399136504673504 +163885,819.425000006281,-0.05399125811383894 +163886,819.4300000062811,-0.053991151171087354 +163887,819.4350000062813,-0.053991044218477814 +163888,819.4400000062814,-0.05399093725600784 +163889,819.4450000062815,-0.05399083028367498 +163890,819.4500000062816,-0.05399072330147675 +163891,819.4550000062817,-0.05399061630941067 +163892,819.4600000062818,-0.05399050930747427 +163893,819.4650000062819,-0.053990402295665076 +163894,819.470000006282,-0.053990295273980624 +163895,819.4750000062821,-0.05399018824241841 +163896,819.4800000062822,-0.05399008120097598 +163897,819.4850000062823,-0.053989974149650836 +163898,819.4900000062825,-0.05398986708844051 +163899,819.4950000062826,-0.05398976001734252 +163900,819.5000000062827,-0.053989652936354375 +163901,819.5050000062828,-0.0539895458454736 +163902,819.5100000062829,-0.05398943874469772 +163903,819.515000006283,-0.05398933163402424 +163904,819.5200000062831,-0.053989224513450666 +163905,819.5250000062832,-0.05398911738297453 +163906,819.5300000062833,-0.053989010242593324 +163907,819.5350000062834,-0.053988903092304585 +163908,819.5400000062835,-0.0539887959321058 +163909,819.5450000062837,-0.053988688761994495 +163910,819.5500000062838,-0.05398858158196816 +163911,819.5550000062839,-0.05398847439202433 +163912,819.560000006284,-0.0539883671921605 +163913,819.5650000062841,-0.05398825998237416 +163914,819.5700000062842,-0.05398815276266283 +163915,819.5750000062843,-0.05398804553302402 +163916,819.5800000062844,-0.05398793829345523 +163917,819.5850000062845,-0.053987831043953945 +163918,819.5900000062846,-0.05398772378451768 +163919,819.5950000062847,-0.053987616515143944 +163920,819.6000000062849,-0.05398750923583023 +163921,819.605000006285,-0.05398740194657404 +163922,819.6100000062851,-0.05398729464737286 +163923,819.6150000062852,-0.053987187338224205 +163924,819.6200000062853,-0.05398708001912554 +163925,819.6250000062854,-0.053986972690074395 +163926,819.6300000062855,-0.053986865351068246 +163927,819.6350000062856,-0.0539867580021046 +163928,819.6400000062857,-0.05398665064318092 +163929,819.6450000062858,-0.05398654327429473 +163930,819.650000006286,-0.05398643589544351 +163931,819.6550000062861,-0.05398632850662473 +163932,819.6600000062862,-0.0539862211078359 +163933,819.6650000062863,-0.05398611369907451 +163934,819.6700000062864,-0.053986006280338034 +163935,819.6750000062865,-0.053985898851623956 +163936,819.6800000062866,-0.05398579141292977 +163937,819.6850000062867,-0.05398568396425297 +163938,819.6900000062868,-0.05398557650559103 +163939,819.6950000062869,-0.05398546903694141 +163940,819.700000006287,-0.05398536155830162 +163941,819.7050000062872,-0.05398525406966913 +163942,819.7100000062873,-0.05398514657104141 +163943,819.7150000062874,-0.05398503906241597 +163944,819.7200000062875,-0.053984931543790256 +163945,819.7250000062876,-0.05398482401516175 +163946,819.7300000062877,-0.05398471647652794 +163947,819.7350000062878,-0.053984608927886285 +163948,819.7400000062879,-0.053984501369234265 +163949,819.745000006288,-0.05398439380056935 +163950,819.7500000062881,-0.05398428622188902 +163951,819.7550000062882,-0.05398417863319075 +163952,819.7600000062884,-0.053984071034471996 +163953,819.7650000062885,-0.053983963425730225 +163954,819.7700000062886,-0.053983855806962924 +163955,819.7750000062887,-0.05398374817816755 +163956,819.7800000062888,-0.05398364053934155 +163957,819.7850000062889,-0.053983532890482425 +163958,819.790000006289,-0.05398342523158762 +163959,819.7950000062891,-0.05398331756265459 +163960,819.8000000062892,-0.05398320988368081 +163961,819.8050000062893,-0.05398310219466374 +163962,819.8100000062894,-0.05398299449560085 +163963,819.8150000062896,-0.053982886786489576 +163964,819.8200000062897,-0.05398277906732739 +163965,819.8250000062898,-0.05398267133811174 +163966,819.8300000062899,-0.0539825635988401 +163967,819.83500000629,-0.05398245584950992 +163968,819.8400000062901,-0.05398234809011865 +163969,819.8450000062902,-0.05398224032066375 +163970,819.8500000062903,-0.053982132541142674 +163971,819.8550000062904,-0.05398202475155287 +163972,819.8600000062905,-0.05398191695189179 +163973,819.8650000062906,-0.053981809142156875 +163974,819.8700000062908,-0.05398170132234559 +163975,819.8750000062909,-0.05398159349245536 +163976,819.880000006291,-0.05398148565248366 +163977,819.8850000062911,-0.05398137780242791 +163978,819.8900000062912,-0.053981269942285595 +163979,819.8950000062913,-0.05398116207205412 +163980,819.9000000062914,-0.05398105419173095 +163981,819.9050000062915,-0.05398094630131351 +163982,819.9100000062916,-0.05398083840079926 +163983,819.9150000062917,-0.05398073049018564 +163984,819.9200000062918,-0.053980622569470074 +163985,819.925000006292,-0.05398051463865001 +163986,819.9300000062921,-0.05398040669772289 +163987,819.9350000062922,-0.05398029874668613 +163988,819.9400000062923,-0.05398019078553719 +163989,819.9450000062924,-0.0539800828142735 +163990,819.9500000062925,-0.0539799748328925 +163991,819.9550000062926,-0.0539798668413916 +163992,819.9600000062927,-0.05397975883976825 +163993,819.9650000062928,-0.053979650828019886 +163994,819.9700000062929,-0.05397954280614393 +163995,819.975000006293,-0.0539794347741378 +163996,819.9800000062932,-0.05397932673199894 +163997,819.9850000062933,-0.053979218679724765 +163998,819.9900000062934,-0.05397911061731271 +163999,819.9950000062935,-0.05397900254476021 +164000,820.0000000062936,-0.05397889446206468 +164001,820.0050000062937,-0.05397878636922353 +164002,820.0100000062938,-0.0539786782662342 +164003,820.0150000062939,-0.05397857015309411 +164004,820.020000006294,-0.05397846202980068 +164005,820.0250000062941,-0.053978353896351326 +164006,820.0300000062942,-0.053978245752743466 +164007,820.0350000062944,-0.05397813759897451 +164008,820.0400000062945,-0.0539780294350419 +164009,820.0450000062946,-0.053977921260943036 +164010,820.0500000062947,-0.05397781307667533 +164011,820.0550000062948,-0.053977704882236195 +164012,820.0600000062949,-0.05397759667762306 +164013,820.065000006295,-0.05397748846283331 +164014,820.0700000062951,-0.053977380237864366 +164015,820.0750000062952,-0.05397727200271365 +164016,820.0800000062953,-0.053977163757378564 +164017,820.0850000062954,-0.05397705550185651 +164018,820.0900000062956,-0.05397694723614491 +164019,820.0950000062957,-0.05397683896024117 +164020,820.1000000062958,-0.05397673067414267 +164021,820.1050000062959,-0.05397662237784684 +164022,820.110000006296,-0.053976514071351074 +164023,820.1150000062961,-0.053976405754652776 +164024,820.1200000062962,-0.05397629742774934 +164025,820.1250000062963,-0.053976189090638185 +164026,820.1300000062964,-0.0539760807433167 +164027,820.1350000062965,-0.05397597238578227 +164028,820.1400000062966,-0.05397586401803231 +164029,820.1450000062968,-0.05397575564006421 +164030,820.1500000062969,-0.05397564725187536 +164031,820.155000006297,-0.053975538853463165 +164032,820.1600000062971,-0.05397543044482501 +164033,820.1650000062972,-0.05397532202595829 +164034,820.1700000062973,-0.053975213596860416 +164035,820.1750000062974,-0.05397510515752875 +164036,820.1800000062975,-0.05397499670796069 +164037,820.1850000062976,-0.053974888248153635 +164038,820.1900000062977,-0.05397477977810496 +164039,820.1950000062978,-0.05397467129781207 +164040,820.200000006298,-0.05397456280727232 +164041,820.2050000062981,-0.05397445430648313 +164042,820.2100000062982,-0.05397434579544185 +164043,820.2150000062983,-0.053974237274145895 +164044,820.2200000062984,-0.05397412874259263 +164045,820.2250000062985,-0.053974020200779425 +164046,820.2300000062986,-0.05397391164870368 +164047,820.2350000062987,-0.053973803086362765 +164048,820.2400000062988,-0.053973694513754056 +164049,820.2450000062989,-0.05397358593087494 +164050,820.250000006299,-0.053973477337722786 +164051,820.2550000062992,-0.053973368734294966 +164052,820.2600000062993,-0.05397326012058886 +164053,820.2650000062994,-0.05397315149660185 +164054,820.2700000062995,-0.05397304286233128 +164055,820.2750000062996,-0.05397293421777455 +164056,820.2800000062997,-0.05397282556292902 +164057,820.2850000062998,-0.05397271689779204 +164058,820.2900000062999,-0.053972608222361 +164059,820.2950000063,-0.05397249953663328 +164060,820.3000000063001,-0.05397239084060621 +164061,820.3050000063002,-0.05397228213427718 +164062,820.3100000063004,-0.05397217341764355 +164063,820.3150000063005,-0.05397206469070268 +164064,820.3200000063006,-0.05397195595345194 +164065,820.3250000063007,-0.05397184720588868 +164066,820.3300000063008,-0.05397173844801027 +164067,820.3350000063009,-0.05397162967981406 +164068,820.340000006301,-0.053971520901297414 +164069,820.3450000063011,-0.053971412112457685 +164070,820.3500000063012,-0.05397130331329224 +164071,820.3550000063013,-0.053971194503798434 +164072,820.3600000063014,-0.0539710856839736 +164073,820.3650000063016,-0.05397097685381512 +164074,820.3700000063017,-0.05397086801332033 +164075,820.3750000063018,-0.05397075916248657 +164076,820.3800000063019,-0.053970650301311214 +164077,820.385000006302,-0.053970541429791595 +164078,820.3900000063021,-0.05397043254792507 +164079,820.3950000063022,-0.053970323655708995 +164080,820.4000000063023,-0.0539702147531407 +164081,820.4050000063024,-0.05397010584021753 +164082,820.4100000063025,-0.05396999691693684 +164083,820.4150000063026,-0.05396988798329596 +164084,820.4200000063028,-0.053969779039292266 +164085,820.4250000063029,-0.05396967008492305 +164086,820.430000006303,-0.05396956112018569 +164087,820.4350000063031,-0.053969452145077514 +164088,820.4400000063032,-0.05396934315959585 +164089,820.4450000063033,-0.05396923416373805 +164090,820.4500000063034,-0.053969125157501456 +164091,820.4550000063035,-0.05396901614088338 +164092,820.4600000063036,-0.05396890711388117 +164093,820.4650000063037,-0.053968798076492165 +164094,820.4700000063038,-0.053968689028713684 +164095,820.475000006304,-0.05396857997054308 +164096,820.4800000063041,-0.05396847090197766 +164097,820.4850000063042,-0.05396836182301476 +164098,820.4900000063043,-0.05396825273365171 +164099,820.4950000063044,-0.05396814363388584 +164100,820.5000000063045,-0.05396803452371448 +164101,820.5050000063046,-0.053967925403134956 +164102,820.5100000063047,-0.05396781627214457 +164103,820.5150000063048,-0.05396770713074068 +164104,820.5200000063049,-0.05396759797892058 +164105,820.525000006305,-0.05396748881668161 +164106,820.5300000063052,-0.05396737964402108 +164107,820.5350000063053,-0.05396727046093631 +164108,820.5400000063054,-0.05396716126742462 +164109,820.5450000063055,-0.053967052063483324 +164110,820.5500000063056,-0.053966942849109745 +164111,820.5550000063057,-0.0539668336243012 +164112,820.5600000063058,-0.053966724389055004 +164113,820.5650000063059,-0.05396661514336846 +164114,820.570000006306,-0.053966505887238884 +164115,820.5750000063061,-0.05396639662066359 +164116,820.5800000063062,-0.05396628734363989 +164117,820.5850000063064,-0.05396617805616509 +164118,820.5900000063065,-0.05396606875823651 +164119,820.5950000063066,-0.05396595944985143 +164120,820.6000000063067,-0.05396585013100717 +164121,820.6050000063068,-0.053965740801701044 +164122,820.6100000063069,-0.053965631461930355 +164123,820.615000006307,-0.05396552211169239 +164124,820.6200000063071,-0.05396541275098447 +164125,820.6250000063072,-0.05396530337980389 +164126,820.6300000063073,-0.053965193998147955 +164127,820.6350000063075,-0.053965084606013944 +164128,820.6400000063076,-0.05396497520339918 +164129,820.6450000063077,-0.05396486579030095 +164130,820.6500000063078,-0.05396475636671654 +164131,820.6550000063079,-0.053964646932643266 +164132,820.660000006308,-0.053964537488078404 +164133,820.6650000063081,-0.05396442803301926 +164134,820.6700000063082,-0.05396431856746312 +164135,820.6750000063083,-0.053964209091407284 +164136,820.6800000063084,-0.053964099604849027 +164137,820.6850000063085,-0.05396399010778564 +164138,820.6900000063087,-0.05396388060021441 +164139,820.6950000063088,-0.05396377108213264 +164140,820.7000000063089,-0.05396366155353761 +164141,820.705000006309,-0.05396355201442658 +164142,820.7100000063091,-0.05396344246479687 +164143,820.7150000063092,-0.05396333290464574 +164144,820.7200000063093,-0.053963223333970474 +164145,820.7250000063094,-0.05396311375276837 +164146,820.7300000063095,-0.05396300416103669 +164147,820.7350000063096,-0.05396289455877272 +164148,820.7400000063097,-0.05396278494597374 +164149,820.7450000063099,-0.05396267532263701 +164150,820.75000000631,-0.053962565688759824 +164151,820.7550000063101,-0.05396245604433946 +164152,820.7600000063102,-0.05396234638937318 +164153,820.7650000063103,-0.053962236723858255 +164154,820.7700000063104,-0.05396212704779197 +164155,820.7750000063105,-0.05396201736117158 +164156,820.7800000063106,-0.053961907663994356 +164157,820.7850000063107,-0.05396179795625757 +164158,820.7900000063108,-0.0539616882379585 +164159,820.7950000063109,-0.053961578509094395 +164160,820.800000006311,-0.053961468769662534 +164161,820.8050000063112,-0.05396135901966016 +164162,820.8100000063113,-0.05396124925908457 +164163,820.8150000063114,-0.05396113948793301 +164164,820.8200000063115,-0.053961029706202736 +164165,820.8250000063116,-0.05396091991389102 +164166,820.8300000063117,-0.0539608101109951 +164167,820.8350000063118,-0.05396070029751225 +164168,820.8400000063119,-0.05396059047343972 +164169,820.845000006312,-0.05396048063877478 +164170,820.8500000063121,-0.053960370793514685 +164171,820.8550000063123,-0.05396026093765667 +164172,820.8600000063124,-0.053960151071198 +164173,820.8650000063125,-0.05396004119413593 +164174,820.8700000063126,-0.053959931306467694 +164175,820.8750000063127,-0.05395982140819056 +164176,820.8800000063128,-0.053959711499301774 +164177,820.8850000063129,-0.05395960157979857 +164178,820.890000006313,-0.05395949164967821 +164179,820.8950000063131,-0.053959381708937944 +164180,820.9000000063132,-0.053959271757575 +164181,820.9050000063133,-0.05395916179558662 +164182,820.9100000063135,-0.05395905182297007 +164183,820.9150000063136,-0.05395894183972257 +164184,820.9200000063137,-0.05395883184584136 +164185,820.9250000063138,-0.05395872184132369 +164186,820.9300000063139,-0.053958611826166805 +164187,820.935000006314,-0.05395850180036793 +164188,820.9400000063141,-0.0539583917639243 +164189,820.9450000063142,-0.05395828171683316 +164190,820.9500000063143,-0.05395817165909173 +164191,820.9550000063144,-0.05395806159069726 +164192,820.9600000063145,-0.05395795151164697 +164193,820.9650000063147,-0.05395784142193809 +164194,820.9700000063148,-0.05395773132156785 +164195,820.9750000063149,-0.05395762121053349 +164196,820.980000006315,-0.05395751108883223 +164197,820.9850000063151,-0.0539574009564613 +164198,820.9900000063152,-0.05395729081341793 +164199,820.9950000063153,-0.05395718065969933 +164200,821.0000000063154,-0.053957070495302746 +164201,821.0050000063155,-0.05395696032022538 +164202,821.0100000063156,-0.05395685013446446 +164203,821.0150000063157,-0.05395673993801721 +164204,821.0200000063159,-0.05395662973088085 +164205,821.025000006316,-0.05395651951305259 +164206,821.0300000063161,-0.053956409284529654 +164207,821.0350000063162,-0.05395629904530927 +164208,821.0400000063163,-0.053956188795388625 +164209,821.0450000063164,-0.05395607853476496 +164210,821.0500000063165,-0.05395596826343547 +164211,821.0550000063166,-0.053955857981397376 +164212,821.0600000063167,-0.05395574768864787 +164213,821.0650000063168,-0.053955637385184205 +164214,821.070000006317,-0.05395552707100356 +164215,821.075000006317,-0.053955416746103144 +164216,821.0800000063172,-0.053955306410480165 +164217,821.0850000063173,-0.05395519606413183 +164218,821.0900000063174,-0.053955085707055345 +164219,821.0950000063175,-0.05395497533924791 +164220,821.1000000063176,-0.05395486496070673 +164221,821.1050000063177,-0.05395475457142901 +164222,821.1100000063178,-0.05395464417141194 +164223,821.1150000063179,-0.05395453376065274 +164224,821.120000006318,-0.05395442333914859 +164225,821.1250000063181,-0.05395431290689671 +164226,821.1300000063183,-0.05395420246389426 +164227,821.1350000063184,-0.05395409201013847 +164228,821.1400000063185,-0.05395398154562651 +164229,821.1450000063186,-0.053953871070355576 +164230,821.1500000063187,-0.053953760584322864 +164231,821.1550000063188,-0.053953650087525576 +164232,821.1600000063189,-0.053953539579960894 +164233,821.165000006319,-0.053953429061626 +164234,821.1700000063191,-0.053953318532518085 +164235,821.1750000063192,-0.05395320799263433 +164236,821.1800000063193,-0.05395309744197194 +164237,821.1850000063195,-0.053952986880528075 +164238,821.1900000063196,-0.05395287630829994 +164239,821.1950000063197,-0.05395276572528469 +164240,821.2000000063198,-0.053952655131479545 +164241,821.2050000063199,-0.053952544526881654 +164242,821.21000000632,-0.05395243391148821 +164243,821.2150000063201,-0.05395232328529639 +164244,821.2200000063202,-0.05395221264830336 +164245,821.2250000063203,-0.053952102000506305 +164246,821.2300000063204,-0.0539519913419024 +164247,821.2350000063205,-0.05395188067248883 +164248,821.2400000063207,-0.05395176999226274 +164249,821.2450000063208,-0.053951659301221325 +164250,821.2500000063209,-0.05395154859936174 +164251,821.255000006321,-0.053951437886681164 +164252,821.2600000063211,-0.05395132716317677 +164253,821.2650000063212,-0.05395121642884571 +164254,821.2700000063213,-0.05395110568368517 +164255,821.2750000063214,-0.05395099492769229 +164256,821.2800000063215,-0.053950884160864264 +164257,821.2850000063216,-0.053950773383198224 +164258,821.2900000063217,-0.053950662594691355 +164259,821.2950000063219,-0.0539505517953408 +164260,821.300000006322,-0.05395044098514373 +164261,821.3050000063221,-0.05395033016409731 +164262,821.3100000063222,-0.053950219332198686 +164263,821.3150000063223,-0.053950108489445016 +164264,821.3200000063224,-0.053949997635833455 +164265,821.3250000063225,-0.053949886771361165 +164266,821.3300000063226,-0.05394977589602529 +164267,821.3350000063227,-0.053949665009822984 +164268,821.3400000063228,-0.0539495541127514 +164269,821.345000006323,-0.05394944320480769 +164270,821.3500000063231,-0.053949332285989006 +164271,821.3550000063232,-0.05394922135629249 +164272,821.3600000063233,-0.05394911041571528 +164273,821.3650000063234,-0.05394899946425454 +164274,821.3700000063235,-0.053948888501907405 +164275,821.3750000063236,-0.05394877752867102 +164276,821.3800000063237,-0.05394866654454252 +164277,821.3850000063238,-0.05394855554951906 +164278,821.3900000063239,-0.05394844454359776 +164279,821.395000006324,-0.05394833352677577 +164280,821.4000000063241,-0.053948222499050236 +164281,821.4050000063243,-0.053948111460418294 +164282,821.4100000063244,-0.05394800041087707 +164283,821.4150000063245,-0.05394788935042371 +164284,821.4200000063246,-0.05394777827905533 +164285,821.4250000063247,-0.05394766719676908 +164286,821.4300000063248,-0.053947556103562076 +164287,821.4350000063249,-0.05394744499943147 +164288,821.440000006325,-0.05394733388437436 +164289,821.4450000063251,-0.0539472227583879 +164290,821.4500000063252,-0.05394711162146921 +164291,821.4550000063253,-0.053947000473615406 +164292,821.4600000063255,-0.05394688931482362 +164293,821.4650000063256,-0.05394677814509099 +164294,821.4700000063257,-0.05394666696441462 +164295,821.4750000063258,-0.05394655577279164 +164296,821.4800000063259,-0.053946444570219174 +164297,821.485000006326,-0.053946333356694326 +164298,821.4900000063261,-0.053946222132214235 +164299,821.4950000063262,-0.05394611089677599 +164300,821.5000000063263,-0.05394599965037673 +164301,821.5050000063264,-0.05394588839301358 +164302,821.5100000063265,-0.05394577712468362 +164303,821.5150000063267,-0.05394566584538399 +164304,821.5200000063268,-0.05394555455511178 +164305,821.5250000063269,-0.05394544325386413 +164306,821.530000006327,-0.05394533194163812 +164307,821.5350000063271,-0.053945220618430864 +164308,821.5400000063272,-0.05394510928423948 +164309,821.5450000063273,-0.053944997939061066 +164310,821.5500000063274,-0.05394488658289274 +164311,821.5550000063275,-0.053944775215731586 +164312,821.5600000063276,-0.05394466383757471 +164313,821.5650000063278,-0.05394455244841923 +164314,821.5700000063279,-0.05394444104826224 +164315,821.575000006328,-0.05394432963710082 +164316,821.5800000063281,-0.053944218214932095 +164317,821.5850000063282,-0.05394410678175315 +164318,821.5900000063283,-0.05394399533756109 +164319,821.5950000063284,-0.053943883882352994 +164320,821.6000000063285,-0.05394377241612597 +164321,821.6050000063286,-0.053943660938877105 +164322,821.6100000063287,-0.053943549450603485 +164323,821.6150000063288,-0.053943437951302214 +164324,821.620000006329,-0.05394332644097037 +164325,821.6250000063291,-0.05394321491960504 +164326,821.6300000063292,-0.053943103387203324 +164327,821.6350000063293,-0.0539429918437623 +164328,821.6400000063294,-0.053942880289279044 +164329,821.6450000063295,-0.05394276872375066 +164330,821.6500000063296,-0.053942657147174215 +164331,821.6550000063297,-0.0539425455595468 +164332,821.6600000063298,-0.05394243396086549 +164333,821.6650000063299,-0.05394232235112736 +164334,821.67000000633,-0.053942210730329496 +164335,821.6750000063302,-0.053942099098468976 +164336,821.6800000063303,-0.05394198745554286 +164337,821.6850000063304,-0.05394187580154824 +164338,821.6900000063305,-0.053941764136482176 +164339,821.6950000063306,-0.05394165246034176 +164340,821.7000000063307,-0.05394154077312405 +164341,821.7050000063308,-0.05394142907482612 +164342,821.7100000063309,-0.053941317365445045 +164343,821.715000006331,-0.05394120564497788 +164344,821.7200000063311,-0.053941093913421695 +164345,821.7250000063312,-0.05394098217077357 +164346,821.7300000063314,-0.05394087041703055 +164347,821.7350000063315,-0.05394075865218972 +164348,821.7400000063316,-0.05394064687624811 +164349,821.7450000063317,-0.05394053508920281 +164350,821.7500000063318,-0.05394042329105088 +164351,821.7550000063319,-0.05394031148178936 +164352,821.760000006332,-0.05394019966141532 +164353,821.7650000063321,-0.05394008782992581 +164354,821.7700000063322,-0.05393997598731791 +164355,821.7750000063323,-0.053939864133588644 +164356,821.7800000063324,-0.053939752268735076 +164357,821.7850000063326,-0.05393964039275426 +164358,821.7900000063327,-0.05393952850564324 +164359,821.7950000063328,-0.05393941660739908 +164360,821.8000000063329,-0.05393930469801882 +164361,821.805000006333,-0.0539391927774995 +164362,821.8100000063331,-0.05393908084583819 +164363,821.8150000063332,-0.053938968903031924 +164364,821.8200000063333,-0.05393885694907773 +164365,821.8250000063334,-0.05393874498397267 +164366,821.8300000063335,-0.053938633007713774 +164367,821.8350000063336,-0.0539385210202981 +164368,821.8400000063338,-0.05393840902172268 +164369,821.8450000063339,-0.05393829701198455 +164370,821.850000006334,-0.05393818499108073 +164371,821.8550000063341,-0.05393807295900828 +164372,821.8600000063342,-0.053937960915764235 +164373,821.8650000063343,-0.05393784886134563 +164374,821.8700000063344,-0.05393773679574949 +164375,821.8750000063345,-0.05393762471897284 +164376,821.8800000063346,-0.05393751263101272 +164377,821.8850000063347,-0.05393740053186616 +164378,821.8900000063348,-0.053937288421530186 +164379,821.895000006335,-0.053937176300001825 +164380,821.9000000063351,-0.053937064167278094 +164381,821.9050000063352,-0.05393695202335603 +164382,821.9100000063353,-0.05393683986823265 +164383,821.9150000063354,-0.053936727701905 +164384,821.9200000063355,-0.05393661552437007 +164385,821.9250000063356,-0.05393650333562489 +164386,821.9300000063357,-0.053936391135666485 +164387,821.9350000063358,-0.053936278924491876 +164388,821.9400000063359,-0.05393616670209807 +164389,821.945000006336,-0.053936054468482084 +164390,821.9500000063362,-0.05393594222364094 +164391,821.9550000063363,-0.05393582996757164 +164392,821.9600000063364,-0.053935717700271196 +164393,821.9650000063365,-0.05393560542173664 +164394,821.9700000063366,-0.05393549313196496 +164395,821.9750000063367,-0.05393538083095318 +164396,821.9800000063368,-0.053935268518698294 +164397,821.9850000063369,-0.05393515619519731 +164398,821.990000006337,-0.053935043860447236 +164399,821.9950000063371,-0.05393493151444508 +164400,822.0000000063372,-0.05393481915718786 +164401,822.0050000063374,-0.05393470678867256 +164402,822.0100000063375,-0.053934594408896176 +164403,822.0150000063376,-0.0539344820178557 +164404,822.0200000063377,-0.05393436961554815 +164405,822.0250000063378,-0.05393425720197052 +164406,822.0300000063379,-0.053934144777119816 +164407,822.035000006338,-0.053934032340993 +164408,822.0400000063381,-0.05393391989358709 +164409,822.0450000063382,-0.05393380743489908 +164410,822.0500000063383,-0.05393369496492595 +164411,822.0550000063384,-0.05393358248366469 +164412,822.0600000063386,-0.05393346999111231 +164413,822.0650000063387,-0.05393335748726577 +164414,822.0700000063388,-0.05393324497212207 +164415,822.0750000063389,-0.0539331324456782 +164416,822.080000006339,-0.05393301990793114 +164417,822.0850000063391,-0.053932907358877874 +164418,822.0900000063392,-0.05393279479851538 +164419,822.0950000063393,-0.05393268222684064 +164420,822.1000000063394,-0.05393256964385064 +164421,822.1050000063395,-0.053932457049542366 +164422,822.1100000063396,-0.05393234444391277 +164423,822.1150000063398,-0.05393223182695884 +164424,822.1200000063399,-0.053932119198677554 +164425,822.12500000634,-0.053932006559065895 +164426,822.1300000063401,-0.05393189390812083 +164427,822.1350000063402,-0.05393178124583932 +164428,822.1400000063403,-0.053931668572218344 +164429,822.1450000063404,-0.05393155588725486 +164430,822.1500000063405,-0.053931443190945845 +164431,822.1550000063406,-0.05393133048328826 +164432,822.1600000063407,-0.053931217764279095 +164433,822.1650000063408,-0.05393110503391529 +164434,822.170000006341,-0.05393099229219381 +164435,822.1750000063411,-0.05393087953911163 +164436,822.1800000063412,-0.0539307667746657 +164437,822.1850000063413,-0.053930653998852975 +164438,822.1900000063414,-0.05393054121167043 +164439,822.1950000063415,-0.05393042841311501 +164440,822.2000000063416,-0.053930315603183676 +164441,822.2050000063417,-0.053930202781873375 +164442,822.2100000063418,-0.05393008994918108 +164443,822.2150000063419,-0.053929977105103735 +164444,822.220000006342,-0.05392986424963827 +164445,822.2250000063422,-0.05392975138278166 +164446,822.2300000063423,-0.05392963850453086 +164447,822.2350000063424,-0.05392952561488279 +164448,822.2400000063425,-0.053929412713834425 +164449,822.2450000063426,-0.05392929980138268 +164450,822.2500000063427,-0.05392918687752453 +164451,822.2550000063428,-0.053929073942256905 +164452,822.2600000063429,-0.053928960995576744 +164453,822.265000006343,-0.053928848037481006 +164454,822.2700000063431,-0.0539287350679666 +164455,822.2750000063432,-0.05392862208703049 +164456,822.2800000063434,-0.053928509094669605 +164457,822.2850000063435,-0.05392839609088088 +164458,822.2900000063436,-0.053928283075661256 +164459,822.2950000063437,-0.05392817004900765 +164460,822.3000000063438,-0.05392805701091702 +164461,822.3050000063439,-0.05392794396138626 +164462,822.310000006344,-0.053927830900412345 +164463,822.3150000063441,-0.05392771782799217 +164464,822.3200000063442,-0.05392760474412268 +164465,822.3250000063443,-0.0539274916488008 +164466,822.3300000063444,-0.05392737854202345 +164467,822.3350000063446,-0.05392726542378756 +164468,822.3400000063447,-0.05392715229409005 +164469,822.3450000063448,-0.05392703915292783 +164470,822.3500000063449,-0.05392692600029784 +164471,822.355000006345,-0.05392681283619699 +164472,822.3600000063451,-0.05392669966062219 +164473,822.3650000063452,-0.05392658647357038 +164474,822.3700000063453,-0.05392647327503846 +164475,822.3750000063454,-0.05392636006502335 +164476,822.3800000063455,-0.05392624684352195 +164477,822.3850000063456,-0.053926133610531196 +164478,822.3900000063458,-0.05392602036604798 +164479,822.3950000063459,-0.05392590711006922 +164480,822.400000006346,-0.053925793842591815 +164481,822.4050000063461,-0.05392568056361269 +164482,822.4100000063462,-0.053925567273128736 +164483,822.4150000063463,-0.053925453971136864 +164484,822.4200000063464,-0.05392534065763397 +164485,822.4250000063465,-0.05392522733261697 +164486,822.4300000063466,-0.05392511399608276 +164487,822.4350000063467,-0.05392500064802823 +164488,822.4400000063468,-0.053924887288450296 +164489,822.445000006347,-0.05392477391734585 +164490,822.4500000063471,-0.053924660534711774 +164491,822.4550000063472,-0.05392454714054499 +164492,822.4600000063473,-0.05392443373484237 +164493,822.4650000063474,-0.05392432031760082 +164494,822.4700000063475,-0.05392420688881721 +164495,822.4750000063476,-0.05392409344848846 +164496,822.4800000063477,-0.05392397999661145 +164497,822.4850000063478,-0.05392386653318306 +164498,822.4900000063479,-0.05392375305820018 +164499,822.495000006348,-0.053923639571659694 +164500,822.5000000063482,-0.05392352607355849 +164501,822.5050000063483,-0.05392341256389345 +164502,822.5100000063484,-0.05392329904266146 +164503,822.5150000063485,-0.053923185509859396 +164504,822.5200000063486,-0.053923071965484126 +164505,822.5250000063487,-0.053922958409532554 +164506,822.5300000063488,-0.05392284484200154 +164507,822.5350000063489,-0.05392273126288796 +164508,822.540000006349,-0.05392261767218871 +164509,822.5450000063491,-0.05392250406990063 +164510,822.5500000063493,-0.05392239045602061 +164511,822.5550000063494,-0.053922276830545526 +164512,822.5600000063495,-0.05392216319347225 +164513,822.5650000063496,-0.05392204954479763 +164514,822.5700000063497,-0.053921935884518546 +164515,822.5750000063498,-0.053921822212631865 +164516,822.5800000063499,-0.05392170852913445 +164517,822.58500000635,-0.053921594834023166 +164518,822.5900000063501,-0.05392148112729487 +164519,822.5950000063502,-0.05392136740894642 +164520,822.6000000063503,-0.05392125367897469 +164521,822.6050000063505,-0.05392113993737654 +164522,822.6100000063506,-0.05392102618414882 +164523,822.6150000063507,-0.05392091241928838 +164524,822.6200000063508,-0.053920798642792096 +164525,822.6250000063509,-0.0539206848546568 +164526,822.630000006351,-0.053920571054879345 +164527,822.6350000063511,-0.0539204572434566 +164528,822.6400000063512,-0.053920343420385396 +164529,822.6450000063513,-0.053920229585662595 +164530,822.6500000063514,-0.05392011573928504 +164531,822.6550000063515,-0.053920001881249575 +164532,822.6600000063517,-0.053919888011553056 +164533,822.6650000063518,-0.05391977413019231 +164534,822.6700000063519,-0.05391966023716419 +164535,822.675000006352,-0.05391954633246555 +164536,822.6800000063521,-0.053919432416093205 +164537,822.6850000063522,-0.053919318488044 +164538,822.6900000063523,-0.05391920454831478 +164539,822.6950000063524,-0.05391909059690239 +164540,822.7000000063525,-0.053918976633803656 +164541,822.7050000063526,-0.0539188626590154 +164542,822.7100000063527,-0.053918748672534475 +164543,822.7150000063529,-0.05391863467435771 +164544,822.720000006353,-0.05391852066448192 +164545,822.7250000063531,-0.05391840664290395 +164546,822.7300000063532,-0.053918292609620624 +164547,822.7350000063533,-0.053918178564628765 +164548,822.7400000063534,-0.0539180645079252 +164549,822.7450000063535,-0.05391795043950676 +164550,822.7500000063536,-0.05391783635937026 +164551,822.7550000063537,-0.05391772226751252 +164552,822.7600000063538,-0.053917608163930354 +164553,822.765000006354,-0.0539174940486206 +164554,822.770000006354,-0.053917379921580064 +164555,822.7750000063542,-0.053917265782805576 +164556,822.7800000063543,-0.05391715163229392 +164557,822.7850000063544,-0.05391703747004195 +164558,822.7900000063545,-0.05391692329604645 +164559,822.7950000063546,-0.05391680911030424 +164560,822.8000000063547,-0.05391669491281213 +164561,822.8050000063548,-0.05391658070356694 +164562,822.8100000063549,-0.05391646648256547 +164563,822.815000006355,-0.05391635224980452 +164564,822.8200000063551,-0.053916238005280906 +164565,822.8250000063553,-0.05391612374899143 +164566,822.8300000063554,-0.053916009480932885 +164567,822.8350000063555,-0.05391589520110208 +164568,822.8400000063556,-0.05391578090949581 +164569,822.8450000063557,-0.05391566660611089 +164570,822.8500000063558,-0.05391555229094411 +164571,822.8550000063559,-0.053915437963992265 +164572,822.860000006356,-0.05391532362525214 +164573,822.8650000063561,-0.05391520927472054 +164574,822.8700000063562,-0.053915094912394254 +164575,822.8750000063563,-0.05391498053827009 +164576,822.8800000063565,-0.053914866152344816 +164577,822.8850000063566,-0.05391475175461523 +164578,822.8900000063567,-0.05391463734507812 +164579,822.8950000063568,-0.05391452292373027 +164580,822.9000000063569,-0.05391440849056848 +164581,822.905000006357,-0.05391429404558951 +164582,822.9100000063571,-0.05391417958879016 +164583,822.9150000063572,-0.05391406512016721 +164584,822.9200000063573,-0.05391395063971743 +164585,822.9250000063574,-0.05391383614743761 +164586,822.9300000063575,-0.05391372164332451 +164587,822.9350000063577,-0.05391360712737493 +164588,822.9400000063578,-0.05391349259958564 +164589,822.9450000063579,-0.0539133780599534 +164590,822.950000006358,-0.053913263508475 +164591,822.9550000063581,-0.053913148945147184 +164592,822.9600000063582,-0.05391303436996675 +164593,822.9650000063583,-0.05391291978293046 +164594,822.9700000063584,-0.05391280518403508 +164595,822.9750000063585,-0.053912690573277376 +164596,822.9800000063586,-0.0539125759506541 +164597,822.9850000063587,-0.053912461316162036 +164598,822.9900000063589,-0.05391234666979794 +164599,822.995000006359,-0.05391223201155857 +164600,823.0000000063591,-0.05391211734144069 +164601,823.0050000063592,-0.05391200265944106 +164602,823.0100000063593,-0.05391188796555643 +164603,823.0150000063594,-0.05391177325978356 +164604,823.0200000063595,-0.0539116585421192 +164605,823.0250000063596,-0.053911543812560116 +164606,823.0300000063597,-0.053911429071103044 +164607,823.0350000063598,-0.053911314317744756 +164608,823.04000000636,-0.05391119955248198 +164609,823.04500000636,-0.053911084775311466 +164610,823.0500000063602,-0.053910969986229976 +164611,823.0550000063603,-0.05391085518523424 +164612,823.0600000063604,-0.05391074037232102 +164613,823.0650000063605,-0.053910625547487045 +164614,823.0700000063606,-0.053910510710729075 +164615,823.0750000063607,-0.05391039586204383 +164616,823.0800000063608,-0.05391028100142806 +164617,823.0850000063609,-0.0539101661288785 +164618,823.090000006361,-0.053910051244391896 +164619,823.0950000063611,-0.05390993634796496 +164620,823.1000000063613,-0.053909821439594455 +164621,823.1050000063614,-0.053909706519277095 +164622,823.1100000063615,-0.053909591587009614 +164623,823.1150000063616,-0.05390947664278875 +164624,823.1200000063617,-0.05390936168661122 +164625,823.1250000063618,-0.05390924671847377 +164626,823.1300000063619,-0.053909131738373105 +164627,823.135000006362,-0.053909016746305966 +164628,823.1400000063621,-0.05390890174226907 +164629,823.1450000063622,-0.053908786726259136 +164630,823.1500000063623,-0.053908671698272896 +164631,823.1550000063625,-0.053908556658307065 +164632,823.1600000063626,-0.05390844160635837 +164633,823.1650000063627,-0.05390832654242351 +164634,823.1700000063628,-0.05390821146649921 +164635,823.1750000063629,-0.05390809637858219 +164636,823.180000006363,-0.05390798127866916 +164637,823.1850000063631,-0.05390786616675682 +164638,823.1900000063632,-0.05390775104284191 +164639,823.1950000063633,-0.05390763590692112 +164640,823.2000000063634,-0.053907520758991155 +164641,823.2050000063635,-0.05390740559904873 +164642,823.2100000063637,-0.05390729042709055 +164643,823.2150000063638,-0.053907175243113316 +164644,823.2200000063639,-0.05390706004711373 +164645,823.225000006364,-0.05390694483908851 +164646,823.2300000063641,-0.05390682961903434 +164647,823.2350000063642,-0.053906714386947926 +164648,823.2400000063643,-0.05390659914282595 +164649,823.2450000063644,-0.05390648388666513 +164650,823.2500000063645,-0.05390636861846215 +164651,823.2550000063646,-0.053906253338213715 +164652,823.2600000063647,-0.053906138045916506 +164653,823.2650000063649,-0.053906022741567215 +164654,823.270000006365,-0.053905907425162526 +164655,823.2750000063651,-0.05390579209669914 +164656,823.2800000063652,-0.05390567675617375 +164657,823.2850000063653,-0.053905561403583026 +164658,823.2900000063654,-0.05390544603892366 +164659,823.2950000063655,-0.053905330662192344 +164660,823.3000000063656,-0.05390521527338575 +164661,823.3050000063657,-0.053905099872500556 +164662,823.3100000063658,-0.053904984459533456 +164663,823.315000006366,-0.053904869034481113 +164664,823.3200000063661,-0.053904753597340205 +164665,823.3250000063662,-0.05390463814810741 +164666,823.3300000063663,-0.053904522686779414 +164667,823.3350000063664,-0.053904407213352885 +164668,823.3400000063665,-0.05390429172782449 +164669,823.3450000063666,-0.053904176230190885 +164670,823.3500000063667,-0.05390406072044875 +164671,823.3550000063668,-0.05390394519859477 +164672,823.3600000063669,-0.05390382966462559 +164673,823.365000006367,-0.05390371411853789 +164674,823.3700000063671,-0.05390359856032832 +164675,823.3750000063673,-0.05390348298999355 +164676,823.3800000063674,-0.05390336740753024 +164677,823.3850000063675,-0.05390325181293505 +164678,823.3900000063676,-0.05390313620620465 +164679,823.3950000063677,-0.053903020587335676 +164680,823.4000000063678,-0.05390290495632479 +164681,823.4050000063679,-0.05390278931316866 +164682,823.410000006368,-0.053902673657863914 +164683,823.4150000063681,-0.05390255799040723 +164684,823.4200000063682,-0.05390244231079524 +164685,823.4250000063684,-0.05390232661902461 +164686,823.4300000063685,-0.05390221091509197 +164687,823.4350000063686,-0.05390209519899398 +164688,823.4400000063687,-0.05390197947072727 +164689,823.4450000063688,-0.0539018637302885 +164690,823.4500000063689,-0.0539017479776743 +164691,823.455000006369,-0.05390163221288133 +164692,823.4600000063691,-0.053901516435906204 +164693,823.4650000063692,-0.053901400646745576 +164694,823.4700000063693,-0.05390128484539608 +164695,823.4750000063694,-0.05390116903185435 +164696,823.4800000063696,-0.05390105320611703 +164697,823.4850000063697,-0.05390093736818074 +164698,823.4900000063698,-0.05390082151804211 +164699,823.4950000063699,-0.053900705655697795 +164700,823.50000000637,-0.05390058978114439 +164701,823.5050000063701,-0.05390047389437855 +164702,823.5100000063702,-0.053900357995396886 +164703,823.5150000063703,-0.05390024208419604 +164704,823.5200000063704,-0.05390012616077262 +164705,823.5250000063705,-0.05390001022512324 +164706,823.5300000063706,-0.053899894277244544 +164707,823.5350000063708,-0.05389977831713314 +164708,823.5400000063709,-0.05389966234478564 +164709,823.545000006371,-0.05389954636019867 +164710,823.5500000063711,-0.053899430363368854 +164711,823.5550000063712,-0.053899314354292786 +164712,823.5600000063713,-0.05389919833296709 +164713,823.5650000063714,-0.05389908229938838 +164714,823.5700000063715,-0.05389896625355327 +164715,823.5750000063716,-0.05389885019545835 +164716,823.5800000063717,-0.053898734125100246 +164717,823.5850000063718,-0.05389861804247556 +164718,823.590000006372,-0.05389850194758088 +164719,823.5950000063721,-0.053898385840412844 +164720,823.6000000063722,-0.05389826972096802 +164721,823.6050000063723,-0.05389815358924303 +164722,823.6100000063724,-0.05389803744523445 +164723,823.6150000063725,-0.0538979212889389 +164724,823.6200000063726,-0.053897805120352985 +164725,823.6250000063727,-0.05389768893947328 +164726,823.6300000063728,-0.05389757274629639 +164727,823.6350000063729,-0.05389745654081889 +164728,823.640000006373,-0.0538973403230374 +164729,823.6450000063732,-0.05389722409294849 +164730,823.6500000063733,-0.05389710785054875 +164731,823.6550000063734,-0.05389699159583476 +164732,823.6600000063735,-0.053896875328803134 +164733,823.6650000063736,-0.053896759049450425 +164734,823.6700000063737,-0.053896642757773235 +164735,823.6750000063738,-0.05389652645376815 +164736,823.6800000063739,-0.05389641013743173 +164737,823.685000006374,-0.05389629380876056 +164738,823.6900000063741,-0.05389617746775123 +164739,823.6950000063742,-0.05389606111440031 +164740,823.7000000063744,-0.05389594474870437 +164741,823.7050000063745,-0.05389582837065999 +164742,823.7100000063746,-0.05389571198026373 +164743,823.7150000063747,-0.05389559557751217 +164744,823.7200000063748,-0.05389547916240189 +164745,823.7250000063749,-0.05389536273492944 +164746,823.730000006375,-0.0538952462950914 +164747,823.7350000063751,-0.05389512984288432 +164748,823.7400000063752,-0.05389501337830478 +164749,823.7450000063753,-0.05389489690134934 +164750,823.7500000063754,-0.05389478041201456 +164751,823.7550000063756,-0.053894663910296986 +164752,823.7600000063757,-0.05389454739619319 +164753,823.7650000063758,-0.05389443086969972 +164754,823.7700000063759,-0.053894314330813146 +164755,823.775000006376,-0.05389419777953002 +164756,823.7800000063761,-0.053894081215846885 +164757,823.7850000063762,-0.05389396463976028 +164758,823.7900000063763,-0.05389384805126679 +164759,823.7950000063764,-0.053893731450362935 +164760,823.8000000063765,-0.05389361483704528 +164761,823.8050000063766,-0.05389349821131036 +164762,823.8100000063768,-0.05389338157315473 +164763,823.8150000063769,-0.05389326492257493 +164764,823.820000006377,-0.053893148259567494 +164765,823.8250000063771,-0.053893031584128975 +164766,823.8300000063772,-0.0538929148962559 +164767,823.8350000063773,-0.05389279819594481 +164768,823.8400000063774,-0.053892681483192234 +164769,823.8450000063775,-0.05389256475799472 +164770,823.8500000063776,-0.05389244802034881 +164771,823.8550000063777,-0.053892331270251025 +164772,823.8600000063778,-0.05389221450769787 +164773,823.865000006378,-0.05389209773268591 +164774,823.8700000063781,-0.05389198094521167 +164775,823.8750000063782,-0.05389186414527167 +164776,823.8800000063783,-0.05389174733286242 +164777,823.8850000063784,-0.053891630507980466 +164778,823.8900000063785,-0.05389151367062232 +164779,823.8950000063786,-0.0538913968207845 +164780,823.9000000063787,-0.05389127995846353 +164781,823.9050000063788,-0.05389116308365593 +164782,823.9100000063789,-0.05389104619635822 +164783,823.915000006379,-0.053890929296566914 +164784,823.9200000063792,-0.05389081238427852 +164785,823.9250000063793,-0.05389069545948955 +164786,823.9300000063794,-0.053890578522196524 +164787,823.9350000063795,-0.05389046157239594 +164788,823.9400000063796,-0.053890344610084316 +164789,823.9450000063797,-0.053890227635258144 +164790,823.9500000063798,-0.05389011064791394 +164791,823.9550000063799,-0.053889993648048216 +164792,823.96000000638,-0.053889876635657474 +164793,823.9650000063801,-0.05388975961073821 +164794,823.9700000063802,-0.05388964257328692 +164795,823.9750000063804,-0.05388952552330011 +164796,823.9800000063805,-0.05388940846077428 +164797,823.9850000063806,-0.05388929138570592 +164798,823.9900000063807,-0.05388917429809152 +164799,823.9950000063808,-0.053889057197927574 +164800,824.0000000063809,-0.05388894008521058 +164801,824.005000006381,-0.053888822959937015 +164802,824.0100000063811,-0.05388870582210339 +164803,824.0150000063812,-0.05388858867170618 +164804,824.0200000063813,-0.05388847150874186 +164805,824.0250000063814,-0.053888354333206934 +164806,824.0300000063816,-0.05388823714509788 +164807,824.0350000063817,-0.05388811994441116 +164808,824.0400000063818,-0.053888002731143275 +164809,824.0450000063819,-0.0538878855052907 +164810,824.050000006382,-0.05388776826684992 +164811,824.0550000063821,-0.0538876510158174 +164812,824.0600000063822,-0.05388753375218961 +164813,824.0650000063823,-0.05388741647596304 +164814,824.0700000063824,-0.05388729918713415 +164815,824.0750000063825,-0.05388718188569941 +164816,824.0800000063826,-0.05388706457165529 +164817,824.0850000063828,-0.053886947244998255 +164818,824.0900000063829,-0.053886829905724784 +164819,824.095000006383,-0.05388671255383133 +164820,824.1000000063831,-0.053886595189314365 +164821,824.1050000063832,-0.053886477812170326 +164822,824.1100000063833,-0.053886360422395696 +164823,824.1150000063834,-0.053886243019986936 +164824,824.1200000063835,-0.05388612560494051 +164825,824.1250000063836,-0.05388600817725285 +164826,824.1300000063837,-0.05388589073692042 +164827,824.1350000063838,-0.05388577328393967 +164828,824.140000006384,-0.05388565581830707 +164829,824.1450000063841,-0.05388553834001905 +164830,824.1500000063842,-0.05388542084907208 +164831,824.1550000063843,-0.05388530334546258 +164832,824.1600000063844,-0.05388518582918701 +164833,824.1650000063845,-0.05388506830024181 +164834,824.1700000063846,-0.053884950758623436 +164835,824.1750000063847,-0.05388483320432832 +164836,824.1800000063848,-0.0538847156373529 +164837,824.1850000063849,-0.053884598057693626 +164838,824.190000006385,-0.053884480465346926 +164839,824.1950000063852,-0.05388436286030924 +164840,824.2000000063853,-0.053884245242577 +164841,824.2050000063854,-0.05388412761214664 +164842,824.2100000063855,-0.0538840099690146 +164843,824.2150000063856,-0.0538838923131773 +164844,824.2200000063857,-0.05388377464463116 +164845,824.2250000063858,-0.053883656963372634 +164846,824.2300000063859,-0.053883539269398116 +164847,824.235000006386,-0.053883421562704044 +164848,824.2400000063861,-0.05388330384328686 +164849,824.2450000063862,-0.05388318611114296 +164850,824.2500000063864,-0.05388306836626877 +164851,824.2550000063865,-0.053882950608660725 +164852,824.2600000063866,-0.05388283283831523 +164853,824.2650000063867,-0.05388271505522869 +164854,824.2700000063868,-0.05388259725939753 +164855,824.2750000063869,-0.053882479450818165 +164856,824.280000006387,-0.05388236162948701 +164857,824.2850000063871,-0.05388224379540046 +164858,824.2900000063872,-0.05388212594855493 +164859,824.2950000063873,-0.05388200808894683 +164860,824.3000000063874,-0.053881890216572574 +164861,824.3050000063876,-0.05388177233142855 +164862,824.3100000063877,-0.05388165443351117 +164863,824.3150000063878,-0.053881536522816846 +164864,824.3200000063879,-0.05388141859934196 +164865,824.325000006388,-0.053881300663082915 +164866,824.3300000063881,-0.0538811827140361 +164867,824.3350000063882,-0.05388106475219793 +164868,824.3400000063883,-0.05388094677756479 +164869,824.3450000063884,-0.05388082879013307 +164870,824.3500000063885,-0.05388071078989916 +164871,824.3550000063887,-0.05388059277685944 +164872,824.3600000063888,-0.05388047475101033 +164873,824.3650000063889,-0.05388035671234819 +164874,824.370000006389,-0.05388023866086941 +164875,824.3750000063891,-0.05388012059657038 +164876,824.3800000063892,-0.053880002519447474 +164877,824.3850000063893,-0.05387988442949708 +164878,824.3900000063894,-0.05387976632671557 +164879,824.3950000063895,-0.05387964821109932 +164880,824.4000000063896,-0.05387953008264472 +164881,824.4050000063897,-0.05387941194134814 +164882,824.4100000063899,-0.053879293787205955 +164883,824.41500000639,-0.05387917562021453 +164884,824.4200000063901,-0.053879057440370234 +164885,824.4250000063902,-0.053878939247669434 +164886,824.4300000063903,-0.05387882104210851 +164887,824.4350000063904,-0.05387870282368382 +164888,824.4400000063905,-0.05387858459239173 +164889,824.4450000063906,-0.05387846634822861 +164890,824.4500000063907,-0.05387834809119082 +164891,824.4550000063908,-0.0538782298212747 +164892,824.4600000063909,-0.053878111538476645 +164893,824.465000006391,-0.053877993242792986 +164894,824.4700000063912,-0.053877874934220076 +164895,824.4750000063913,-0.053877756612754284 +164896,824.4800000063914,-0.053877638278391954 +164897,824.4850000063915,-0.05387751993112944 +164898,824.4900000063916,-0.0538774015709631 +164899,824.4950000063917,-0.05387728319788927 +164900,824.5000000063918,-0.053877164811904306 +164901,824.5050000063919,-0.05387704641300455 +164902,824.510000006392,-0.05387692800118635 +164903,824.5150000063921,-0.053876809576446034 +164904,824.5200000063923,-0.053876691138779964 +164905,824.5250000063924,-0.05387657268818445 +164906,824.5300000063925,-0.05387645422465586 +164907,824.5350000063926,-0.053876335748190514 +164908,824.5400000063927,-0.05387621725878475 +164909,824.5450000063928,-0.05387609875643491 +164910,824.5500000063929,-0.05387598024113733 +164911,824.555000006393,-0.05387586171288831 +164912,824.5600000063931,-0.053875743171684205 +164913,824.5650000063932,-0.053875624617521344 +164914,824.5700000063933,-0.053875506050396045 +164915,824.5750000063935,-0.05387538747030462 +164916,824.5800000063936,-0.053875268877243414 +164917,824.5850000063937,-0.05387515027120874 +164918,824.5900000063938,-0.05387503165219691 +164919,824.5950000063939,-0.053874913020204265 +164920,824.600000006394,-0.053874794375227096 +164921,824.6050000063941,-0.05387467571726174 +164922,824.6100000063942,-0.05387455704630449 +164923,824.6150000063943,-0.05387443836235169 +164924,824.6200000063944,-0.053874319665399614 +164925,824.6250000063945,-0.053874200955444596 +164926,824.6300000063947,-0.05387408223248293 +164927,824.6350000063948,-0.05387396349651094 +164928,824.6400000063949,-0.053873844747524914 +164929,824.645000006395,-0.05387372598552116 +164930,824.6500000063951,-0.05387360721049599 +164931,824.6550000063952,-0.053873488422445694 +164932,824.6600000063953,-0.05387336962136657 +164933,824.6650000063954,-0.053873250807254906 +164934,824.6700000063955,-0.05387313198010702 +164935,824.6750000063956,-0.0538730131399192 +164936,824.6800000063957,-0.05387289428668774 +164937,824.6850000063959,-0.05387277542040893 +164938,824.690000006396,-0.053872656541079054 +164939,824.6950000063961,-0.05387253764869441 +164940,824.7000000063962,-0.05387241874325127 +164941,824.7050000063963,-0.05387229982474594 +164942,824.7100000063964,-0.053872180893174686 +164943,824.7150000063965,-0.0538720619485338 +164944,824.7200000063966,-0.053871942990819564 +164945,824.7250000063967,-0.05387182402002824 +164946,824.7300000063968,-0.05387170503615613 +164947,824.735000006397,-0.053871586039199504 +164948,824.740000006397,-0.05387146702915463 +164949,824.7450000063972,-0.05387134800601778 +164950,824.7500000063973,-0.05387122896978524 +164951,824.7550000063974,-0.05387110992045326 +164952,824.7600000063975,-0.053870990858018136 +164953,824.7650000063976,-0.053870871782476105 +164954,824.7700000063977,-0.05387075269382345 +164955,824.7750000063978,-0.053870633592056426 +164956,824.7800000063979,-0.0538705144771713 +164957,824.785000006398,-0.053870395349164345 +164958,824.7900000063981,-0.053870276208031795 +164959,824.7950000063983,-0.05387015705376993 +164960,824.8000000063984,-0.053870037886375004 +164961,824.8050000063985,-0.05386991870584326 +164962,824.8100000063986,-0.053869799512170954 +164963,824.8150000063987,-0.05386968030535435 +164964,824.8200000063988,-0.05386956108538969 +164965,824.8250000063989,-0.05386944185227323 +164966,824.830000006399,-0.053869322606001205 +164967,824.8350000063991,-0.05386920334656986 +164968,824.8400000063992,-0.05386908407397546 +164969,824.8450000063993,-0.05386896478821423 +164970,824.8500000063995,-0.053868845489282405 +164971,824.8550000063996,-0.053868726177176245 +164972,824.8600000063997,-0.053868606851891966 +164973,824.8650000063998,-0.05386848751342582 +164974,824.8700000063999,-0.053868368161774045 +164975,824.8750000064,-0.05386824879693286 +164976,824.8800000064001,-0.05386812941889851 +164977,824.8850000064002,-0.05386801002766721 +164978,824.8900000064003,-0.053867890623235215 +164979,824.8950000064004,-0.05386777120559873 +164980,824.9000000064005,-0.05386765177475398 +164981,824.9050000064007,-0.0538675323306972 +164982,824.9100000064008,-0.053867412873424614 +164983,824.9150000064009,-0.053867293402932434 +164984,824.920000006401,-0.05386717391921688 +164985,824.9250000064011,-0.05386705442227418 +164986,824.9300000064012,-0.053866934912100546 +164987,824.9350000064013,-0.05386681538869219 +164988,824.9400000064014,-0.05386669585204533 +164989,824.9450000064015,-0.053866576302156174 +164990,824.9500000064016,-0.053866456739020935 +164991,824.9550000064017,-0.053866337162635815 +164992,824.9600000064019,-0.05386621757299703 +164993,824.965000006402,-0.053866097970100786 +164994,824.9700000064021,-0.05386597835394328 +164995,824.9750000064022,-0.05386585872452071 +164996,824.9800000064023,-0.053865739081829275 +164997,824.9850000064024,-0.053865619425865194 +164998,824.9900000064025,-0.053865499756624656 +164999,824.9950000064026,-0.05386538007410385 +165000,825.0000000064027,-0.05386526037829899 +165001,825.0050000064028,-0.053865140669206245 +165002,825.010000006403,-0.053865020946821815 +165003,825.015000006403,-0.0538649012111419 +165004,825.0200000064032,-0.05386478146216267 +165005,825.0250000064033,-0.05386466169988033 +165006,825.0300000064034,-0.05386454192429105 +165007,825.0350000064035,-0.05386442213539103 +165008,825.0400000064036,-0.05386430233317643 +165009,825.0450000064037,-0.053864182517643446 +165010,825.0500000064038,-0.05386406268878825 +165011,825.0550000064039,-0.05386394284660703 +165012,825.060000006404,-0.05386382299109596 +165013,825.0650000064041,-0.05386370312225121 +165014,825.0700000064043,-0.053863583240068964 +165015,825.0750000064044,-0.053863463344545365 +165016,825.0800000064045,-0.053863343435676614 +165017,825.0850000064046,-0.05386322351345886 +165018,825.0900000064047,-0.05386310357788828 +165019,825.0950000064048,-0.05386298362896103 +165020,825.1000000064049,-0.053862863666673276 +165021,825.105000006405,-0.05386274369102118 +165022,825.1100000064051,-0.05386262370200091 +165023,825.1150000064052,-0.05386250369960861 +165024,825.1200000064053,-0.05386238368384045 +165025,825.1250000064055,-0.05386226365469257 +165026,825.1300000064056,-0.053862143612161135 +165027,825.1350000064057,-0.05386202355624229 +165028,825.1400000064058,-0.053861903486932206 +165029,825.1450000064059,-0.053861783404227016 +165030,825.150000006406,-0.05386166330812286 +165031,825.1550000064061,-0.05386154319861589 +165032,825.1600000064062,-0.05386142307570226 +165033,825.1650000064063,-0.05386130293937811 +165034,825.1700000064064,-0.05386118278963957 +165035,825.1750000064065,-0.05386106262648279 +165036,825.1800000064067,-0.0538609424499039 +165037,825.1850000064068,-0.053860822259899056 +165038,825.1900000064069,-0.053860702056464364 +165039,825.195000006407,-0.05386058183959598 +165040,825.2000000064071,-0.053860461609290027 +165041,825.2050000064072,-0.05386034136554262 +165042,825.2100000064073,-0.05386022110834992 +165043,825.2150000064074,-0.05386010083770802 +165044,825.2200000064075,-0.053859980553613074 +165045,825.2250000064076,-0.05385986025606118 +165046,825.2300000064077,-0.053859739945048474 +165047,825.2350000064079,-0.053859619620571085 +165048,825.240000006408,-0.05385949928262511 +165049,825.2450000064081,-0.05385937893120668 +165050,825.2500000064082,-0.05385925856631191 +165051,825.2550000064083,-0.053859138187936924 +165052,825.2600000064084,-0.05385901779607781 +165053,825.2650000064085,-0.053858897390730694 +165054,825.2700000064086,-0.05385877697189169 +165055,825.2750000064087,-0.05385865653955689 +165056,825.2800000064088,-0.05385853609372241 +165057,825.285000006409,-0.05385841563438434 +165058,825.2900000064091,-0.05385829516153882 +165059,825.2950000064092,-0.05385817467518191 +165060,825.3000000064093,-0.053858054175309734 +165061,825.3050000064094,-0.053857933661918385 +165062,825.3100000064095,-0.05385781313500395 +165063,825.3150000064096,-0.05385769259456254 +165064,825.3200000064097,-0.05385757204059023 +165065,825.3250000064098,-0.053857451473083115 +165066,825.3300000064099,-0.0538573308920373 +165067,825.33500000641,-0.053857210297448846 +165068,825.3400000064102,-0.05385708968931387 +165069,825.3450000064103,-0.05385696906762844 +165070,825.3500000064104,-0.053856848432388645 +165071,825.3550000064105,-0.05385672778359056 +165072,825.3600000064106,-0.05385660712123027 +165073,825.3650000064107,-0.05385648644530386 +165074,825.3700000064108,-0.05385636575580739 +165075,825.3750000064109,-0.05385624505273695 +165076,825.380000006411,-0.053856124336088614 +165077,825.3850000064111,-0.053856003605858446 +165078,825.3900000064112,-0.05385588286204252 +165079,825.3950000064114,-0.0538557621046369 +165080,825.4000000064115,-0.05385564133363765 +165081,825.4050000064116,-0.053855520549040845 +165082,825.4100000064117,-0.05385539975084255 +165083,825.4150000064118,-0.053855278939038825 +165084,825.4200000064119,-0.053855158113625734 +165085,825.425000006412,-0.053855037274599324 +165086,825.4300000064121,-0.05385491642195567 +165087,825.4350000064122,-0.0538547955556908 +165088,825.4400000064123,-0.053854674675800795 +165089,825.4450000064124,-0.0538545537822817 +165090,825.4500000064126,-0.05385443287512956 +165091,825.4550000064127,-0.053854311954340435 +165092,825.4600000064128,-0.05385419101991036 +165093,825.4650000064129,-0.053854070071835396 +165094,825.470000006413,-0.05385394911011157 +165095,825.4750000064131,-0.05385382813473494 +165096,825.4800000064132,-0.053853707145701535 +165097,825.4850000064133,-0.05385358614300739 +165098,825.4900000064134,-0.053853465126648556 +165099,825.4950000064135,-0.05385334409662107 +165100,825.5000000064136,-0.053853223052920965 +165101,825.5050000064138,-0.053853101995544266 +165102,825.5100000064139,-0.053852980924487 +165103,825.515000006414,-0.05385285983974521 +165104,825.5200000064141,-0.05385273874131491 +165105,825.5250000064142,-0.05385261762919214 +165106,825.5300000064143,-0.05385249650337292 +165107,825.5350000064144,-0.05385237536385327 +165108,825.5400000064145,-0.05385225421062921 +165109,825.5450000064146,-0.05385213304369677 +165110,825.5500000064147,-0.053852011863051955 +165111,825.5550000064148,-0.05385189066869079 +165112,825.560000006415,-0.053851769460609294 +165113,825.5650000064151,-0.053851648238803465 +165114,825.5700000064152,-0.053851527003269326 +165115,825.5750000064153,-0.053851405754002886 +165116,825.5800000064154,-0.05385128449100014 +165117,825.5850000064155,-0.05385116321425711 +165118,825.5900000064156,-0.053851041923769785 +165119,825.5950000064157,-0.05385092061953418 +165120,825.6000000064158,-0.05385079930154629 +165121,825.6050000064159,-0.05385067796980212 +165122,825.610000006416,-0.05385055662429767 +165123,825.6150000064162,-0.05385043526502894 +165124,825.6200000064163,-0.0538503138919919 +165125,825.6250000064164,-0.053850192505182574 +165126,825.6300000064165,-0.053850071104596935 +165127,825.6350000064166,-0.05384994969023097 +165128,825.6400000064167,-0.05384982826208069 +165129,825.6450000064168,-0.05384970682014206 +165130,825.6500000064169,-0.05384958536441107 +165131,825.655000006417,-0.0538494638948837 +165132,825.6600000064171,-0.05384934241155594 +165133,825.6650000064172,-0.053849220914423755 +165134,825.6700000064174,-0.05384909940348314 +165135,825.6750000064175,-0.05384897787873005 +165136,825.6800000064176,-0.0538488563401605 +165137,825.6850000064177,-0.053848734787770414 +165138,825.6900000064178,-0.0538486132215558 +165139,825.6950000064179,-0.0538484916415126 +165140,825.700000006418,-0.053848370047636804 +165141,825.7050000064181,-0.053848248439924376 +165142,825.7100000064182,-0.05384812681837127 +165143,825.7150000064183,-0.05384800518297345 +165144,825.7200000064184,-0.05384788353372689 +165145,825.7250000064186,-0.05384776187062752 +165146,825.7300000064187,-0.053847640193671324 +165147,825.7350000064188,-0.053847518502854255 +165148,825.7400000064189,-0.05384739679817227 +165149,825.745000006419,-0.053847275079621316 +165150,825.7500000064191,-0.053847153347197335 +165151,825.7550000064192,-0.05384703160089629 +165152,825.7600000064193,-0.05384690984071412 +165153,825.7650000064194,-0.053846788066646764 +165154,825.7700000064195,-0.0538466662786902 +165155,825.7750000064196,-0.053846544476840334 +165156,825.7800000064198,-0.05384642266109313 +165157,825.7850000064199,-0.05384630083144451 +165158,825.79000000642,-0.053846178987890424 +165159,825.7950000064201,-0.053846057130426804 +165160,825.8000000064202,-0.05384593525904957 +165161,825.8050000064203,-0.05384581337375468 +165162,825.8100000064204,-0.05384569147453804 +165163,825.8150000064205,-0.053845569561395606 +165164,825.8200000064206,-0.05384544763432329 +165165,825.8250000064207,-0.05384532569331702 +165166,825.8300000064208,-0.05384520373837272 +165167,825.835000006421,-0.0538450817694863 +165168,825.8400000064211,-0.053844959786653705 +165169,825.8450000064212,-0.053844837789870835 +165170,825.8500000064213,-0.053844715779133606 +165171,825.8550000064214,-0.05384459375443795 +165172,825.8600000064215,-0.053844471715779774 +165173,825.8650000064216,-0.05384434966315499 +165174,825.8700000064217,-0.05384422759655949 +165175,825.8750000064218,-0.0538441055159892 +165176,825.8800000064219,-0.053843983421440034 +165177,825.885000006422,-0.05384386131290788 +165178,825.8900000064222,-0.05384373919038865 +165179,825.8950000064223,-0.053843617053878245 +165180,825.9000000064224,-0.05384349490337258 +165181,825.9050000064225,-0.053843372738867516 +165182,825.9100000064226,-0.053843250560358984 +165183,825.9150000064227,-0.053843128367842864 +165184,825.9200000064228,-0.05384300616131504 +165185,825.9250000064229,-0.05384288394077143 +165186,825.930000006423,-0.05384276170620791 +165187,825.9350000064231,-0.05384263945762036 +165188,825.9400000064232,-0.05384251719500468 +165189,825.9450000064234,-0.05384239491835673 +165190,825.9500000064235,-0.05384227262767243 +165191,825.9550000064236,-0.05384215032294763 +165192,825.9600000064237,-0.053842028004178234 +165193,825.9650000064238,-0.053841905671360095 +165194,825.9700000064239,-0.0538417833244891 +165195,825.975000006424,-0.053841660963561126 +165196,825.9800000064241,-0.053841538588572053 +165197,825.9850000064242,-0.05384141619951774 +165198,825.9900000064243,-0.05384129379639405 +165199,825.9950000064244,-0.05384117137919687 +165200,826.0000000064246,-0.05384104894792205 +165201,826.0050000064247,-0.05384092650256545 +165202,826.0100000064248,-0.05384080404312294 +165203,826.0150000064249,-0.05384068156959039 +165204,826.020000006425,-0.05384055908196365 +165205,826.0250000064251,-0.053840436580238564 +165206,826.0300000064252,-0.053840314064411005 +165207,826.0350000064253,-0.05384019153447682 +165208,826.0400000064254,-0.05384006899043186 +165209,826.0450000064255,-0.053839946432271975 +165210,826.0500000064256,-0.053839823859993016 +165211,826.0550000064258,-0.053839701273590834 +165212,826.0600000064259,-0.05383957867306126 +165213,826.065000006426,-0.05383945605840013 +165214,826.0700000064261,-0.053839333429603314 +165215,826.0750000064262,-0.05383921078666664 +165216,826.0800000064263,-0.05383908812958593 +165217,826.0850000064264,-0.053838965458357035 +165218,826.0900000064265,-0.0538388427729758 +165219,826.0950000064266,-0.053838720073438026 +165220,826.1000000064267,-0.053838597359739566 +165221,826.1050000064268,-0.05383847463187626 +165222,826.110000006427,-0.05383835188984389 +165223,826.1150000064271,-0.05383822913363834 +165224,826.1200000064272,-0.053838106363255395 +165225,826.1250000064273,-0.053837983578690886 +165226,826.1300000064274,-0.05383786077994063 +165227,826.1350000064275,-0.05383773796700045 +165228,826.1400000064276,-0.05383761513986616 +165229,826.1450000064277,-0.053837492298533574 +165230,826.1500000064278,-0.05383736944299851 +165231,826.1550000064279,-0.05383724657325678 +165232,826.160000006428,-0.05383712368930418 +165233,826.1650000064282,-0.053837000791136534 +165234,826.1700000064283,-0.05383687787874965 +165235,826.1750000064284,-0.05383675495213932 +165236,826.1800000064285,-0.05383663201130135 +165237,826.1850000064286,-0.05383650905623154 +165238,826.1900000064287,-0.05383638608692569 +165239,826.1950000064288,-0.05383626310337959 +165240,826.2000000064289,-0.05383614010558907 +165241,826.205000006429,-0.05383601709354988 +165242,826.2100000064291,-0.05383589406725784 +165243,826.2150000064292,-0.05383577102670873 +165244,826.2200000064294,-0.053835647971898326 +165245,826.2250000064295,-0.05383552490282243 +165246,826.2300000064296,-0.05383540181947682 +165247,826.2350000064297,-0.05383527872185728 +165248,826.2400000064298,-0.0538351556099596 +165249,826.2450000064299,-0.053835032483779556 +165250,826.25000000643,-0.05383490934331292 +165251,826.2550000064301,-0.05383478618855547 +165252,826.2600000064302,-0.05383466301950299 +165253,826.2650000064303,-0.053834539836151225 +165254,826.2700000064305,-0.05383441663849597 +165255,826.2750000064306,-0.05383429342653298 +165256,826.2800000064307,-0.05383417020025805 +165257,826.2850000064308,-0.053834046959666905 +165258,826.2900000064309,-0.053833923704755336 +165259,826.295000006431,-0.053833800435519094 +165260,826.3000000064311,-0.05383367715195395 +165261,826.3050000064312,-0.05383355385405565 +165262,826.3100000064313,-0.05383343054181995 +165263,826.3150000064314,-0.05383330721524261 +165264,826.3200000064315,-0.05383318387431939 +165265,826.3250000064317,-0.053833060519046017 +165266,826.3300000064318,-0.05383293714941826 +165267,826.3350000064319,-0.053832813765431864 +165268,826.340000006432,-0.053832690367082575 +165269,826.3450000064321,-0.05383256695436613 +165270,826.3500000064322,-0.05383244352727827 +165271,826.3550000064323,-0.05383232008581475 +165272,826.3600000064324,-0.05383219662997128 +165273,826.3650000064325,-0.05383207315974363 +165274,826.3700000064326,-0.05383194967512752 +165275,826.3750000064327,-0.05383182617611867 +165276,826.3800000064329,-0.05383170266271283 +165277,826.385000006433,-0.05383157913490572 +165278,826.3900000064331,-0.053831455592693075 +165279,826.3950000064332,-0.05383133203607061 +165280,826.4000000064333,-0.05383120846503405 +165281,826.4050000064334,-0.053831084879579126 +165282,826.4100000064335,-0.05383096127970156 +165283,826.4150000064336,-0.053830837665397056 +165284,826.4200000064337,-0.05383071403666135 +165285,826.4250000064338,-0.05383059039349014 +165286,826.4300000064339,-0.05383046673587914 +165287,826.435000006434,-0.053830343063824074 +165288,826.4400000064342,-0.05383021937732063 +165289,826.4450000064343,-0.053830095676364535 +165290,826.4500000064344,-0.05382997196095148 +165291,826.4550000064345,-0.05382984823107719 +165292,826.4600000064346,-0.05382972448673735 +165293,826.4650000064347,-0.05382960072792767 +165294,826.4700000064348,-0.05382947695464384 +165295,826.4750000064349,-0.05382935316688156 +165296,826.480000006435,-0.05382922936463652 +165297,826.4850000064351,-0.05382910554790442 +165298,826.4900000064353,-0.05382898171668094 +165299,826.4950000064354,-0.05382885787096178 +165300,826.5000000064355,-0.05382873401074264 +165301,826.5050000064356,-0.05382861013601918 +165302,826.5100000064357,-0.05382848624678709 +165303,826.5150000064358,-0.05382836234304207 +165304,826.5200000064359,-0.05382823842477978 +165305,826.525000006436,-0.05382811449199592 +165306,826.5300000064361,-0.05382799054468614 +165307,826.5350000064362,-0.05382786658284613 +165308,826.5400000064363,-0.05382774260647156 +165309,826.5450000064365,-0.0538276186155581 +165310,826.5500000064366,-0.05382749461010141 +165311,826.5550000064367,-0.05382737059009718 +165312,826.5600000064368,-0.05382724655554105 +165313,826.5650000064369,-0.05382712250642871 +165314,826.570000006437,-0.0538269984427558 +165315,826.5750000064371,-0.053826874364517975 +165316,826.5800000064372,-0.053826750271710924 +165317,826.5850000064373,-0.05382662616433028 +165318,826.5900000064374,-0.0538265020423717 +165319,826.5950000064375,-0.05382637790583084 +165320,826.6000000064377,-0.053826253754703346 +165321,826.6050000064378,-0.05382612958898488 +165322,826.6100000064379,-0.05382600540867108 +165323,826.615000006438,-0.05382588121375759 +165324,826.6200000064381,-0.05382575700424005 +165325,826.6250000064382,-0.053825632780114104 +165326,826.6300000064383,-0.0538255085413754 +165327,826.6350000064384,-0.053825384288019563 +165328,826.6400000064385,-0.05382526002004224 +165329,826.6450000064386,-0.05382513573743906 +165330,826.6500000064387,-0.053825011440205656 +165331,826.6550000064389,-0.05382488712833767 +165332,826.660000006439,-0.053824762801830704 +165333,826.6650000064391,-0.053824638460680405 +165334,826.6700000064392,-0.053824514104882384 +165335,826.6750000064393,-0.05382438973443227 +165336,826.6800000064394,-0.0538242653493257 +165337,826.6850000064395,-0.05382414094955827 +165338,826.6900000064396,-0.053824016535125606 +165339,826.6950000064397,-0.05382389210602332 +165340,826.7000000064398,-0.053823767662247037 +165341,826.70500000644,-0.05382364320379236 +165342,826.71000000644,-0.0538235187306549 +165343,826.7150000064402,-0.05382339424283026 +165344,826.7200000064403,-0.05382326974031406 +165345,826.7250000064404,-0.05382314522310189 +165346,826.7300000064405,-0.053823020691189355 +165347,826.7350000064406,-0.05382289614457206 +165348,826.7400000064407,-0.053822771583245596 +165349,826.7450000064408,-0.05382264700720558 +165350,826.7500000064409,-0.05382252241644758 +165351,826.755000006441,-0.053822397810967204 +165352,826.7600000064411,-0.053822273190760044 +165353,826.7650000064413,-0.05382214855582169 +165354,826.7700000064414,-0.05382202390614772 +165355,826.7750000064415,-0.053821899241733716 +165356,826.7800000064416,-0.05382177456257529 +165357,826.7850000064417,-0.05382164986866799 +165358,826.7900000064418,-0.05382152516000741 +165359,826.7950000064419,-0.05382140043658913 +165360,826.800000006442,-0.053821275698408715 +165361,826.8050000064421,-0.053821150945461756 +165362,826.8100000064422,-0.05382102617774381 +165363,826.8150000064423,-0.05382090139525045 +165364,826.8200000064425,-0.05382077659797726 +165365,826.8250000064426,-0.05382065178591979 +165366,826.8300000064427,-0.05382052695907362 +165367,826.8350000064428,-0.05382040211743429 +165368,826.8400000064429,-0.053820277260997376 +165369,826.845000006443,-0.05382015238975844 +165370,826.8500000064431,-0.05382002750371302 +165371,826.8550000064432,-0.053819902602856705 +165372,826.8600000064433,-0.05381977768718501 +165373,826.8650000064434,-0.053819652756693516 +165374,826.8700000064435,-0.053819527811377756 +165375,826.8750000064437,-0.05381940285123328 +165376,826.8800000064438,-0.05381927787625564 +165377,826.8850000064439,-0.05381915288644038 +165378,826.890000006444,-0.05381902788178303 +165379,826.8950000064441,-0.05381890286227913 +165380,826.9000000064442,-0.053818777827924234 +165381,826.9050000064443,-0.05381865277871387 +165382,826.9100000064444,-0.05381852771464358 +165383,826.9150000064445,-0.05381840263570888 +165384,826.9200000064446,-0.05381827754190532 +165385,826.9250000064447,-0.053818152433228406 +165386,826.9300000064449,-0.05381802730967368 +165387,826.935000006445,-0.05381790217123667 +165388,826.9400000064451,-0.05381777701791288 +165389,826.9450000064452,-0.05381765184969784 +165390,826.9500000064453,-0.053817526666587075 +165391,826.9550000064454,-0.053817401468576095 +165392,826.9600000064455,-0.05381727625566042 +165393,826.9650000064456,-0.05381715102783557 +165394,826.9700000064457,-0.05381702578509705 +165395,826.9750000064458,-0.053816900527440356 +165396,826.980000006446,-0.05381677525486102 +165397,826.9850000064461,-0.053816649967354524 +165398,826.9900000064462,-0.053816524664916376 +165399,826.9950000064463,-0.053816399347542086 +165400,827.0000000064464,-0.05381627401522715 +165401,827.0050000064465,-0.05381614866796707 +165402,827.0100000064466,-0.05381602330575734 +165403,827.0150000064467,-0.05381589792859346 +165404,827.0200000064468,-0.0538157725364709 +165405,827.0250000064469,-0.05381564712938517 +165406,827.030000006447,-0.053815521707331754 +165407,827.0350000064471,-0.05381539627030614 +165408,827.0400000064473,-0.053815270818303805 +165409,827.0450000064474,-0.053815145351320225 +165410,827.0500000064475,-0.05381501986935091 +165411,827.0550000064476,-0.05381489437239131 +165412,827.0600000064477,-0.0538147688604369 +165413,827.0650000064478,-0.053814643333483174 +165414,827.0700000064479,-0.05381451779152559 +165415,827.075000006448,-0.05381439223455962 +165416,827.0800000064481,-0.053814266662580754 +165417,827.0850000064482,-0.05381414107558443 +165418,827.0900000064483,-0.05381401547356613 +165419,827.0950000064485,-0.0538138898565213 +165420,827.1000000064486,-0.05381376422444542 +165421,827.1050000064487,-0.05381363857733395 +165422,827.1100000064488,-0.053813512915182334 +165423,827.1150000064489,-0.053813387237986024 +165424,827.120000006449,-0.053813261545740475 +165425,827.1250000064491,-0.05381313583844114 +165426,827.1300000064492,-0.05381301011608348 +165427,827.1350000064493,-0.05381288437866293 +165428,827.1400000064494,-0.05381275862617494 +165429,827.1450000064495,-0.05381263285861496 +165430,827.1500000064497,-0.05381250707597842 +165431,827.1550000064498,-0.05381238127826076 +165432,827.1600000064499,-0.05381225546545741 +165433,827.16500000645,-0.05381212963756383 +165434,827.1700000064501,-0.05381200379457543 +165435,827.1750000064502,-0.05381187793648766 +165436,827.1800000064503,-0.05381175206329594 +165437,827.1850000064504,-0.05381162617499569 +165438,827.1900000064505,-0.053811500271582345 +165439,827.1950000064506,-0.05381137435305133 +165440,827.2000000064508,-0.05381124841939807 +165441,827.2050000064509,-0.05381112247061798 +165442,827.210000006451,-0.05381099650670646 +165443,827.2150000064511,-0.05381087052765895 +165444,827.2200000064512,-0.05381074453347085 +165445,827.2250000064513,-0.053810618524137585 +165446,827.2300000064514,-0.05381049249965454 +165447,827.2350000064515,-0.05381036646001717 +165448,827.2400000064516,-0.053810240405220824 +165449,827.2450000064517,-0.05381011433526095 +165450,827.2500000064518,-0.05380998825013293 +165451,827.255000006452,-0.053809862149832174 +165452,827.2600000064521,-0.05380973603435406 +165453,827.2650000064522,-0.053809609903693996 +165454,827.2700000064523,-0.05380948375784737 +165455,827.2750000064524,-0.05380935759680959 +165456,827.2800000064525,-0.05380923142057604 +165457,827.2850000064526,-0.053809105229142104 +165458,827.2900000064527,-0.053808979022503166 +165459,827.2950000064528,-0.05380885280065462 +165460,827.3000000064529,-0.053808726563591834 +165461,827.305000006453,-0.05380860031131019 +165462,827.3100000064532,-0.05380847404380508 +165463,827.3150000064533,-0.05380834776107186 +165464,827.3200000064534,-0.053808221463105925 +165465,827.3250000064535,-0.053808095149902625 +165466,827.3300000064536,-0.05380796882145735 +165467,827.3350000064537,-0.05380784247776546 +165468,827.3400000064538,-0.053807716118822325 +165469,827.3450000064539,-0.0538075897446233 +165470,827.350000006454,-0.053807463355163745 +165471,827.3550000064541,-0.05380733695043904 +165472,827.3600000064542,-0.05380721053044452 +165473,827.3650000064544,-0.05380708409517555 +165474,827.3700000064545,-0.05380695764462751 +165475,827.3750000064546,-0.05380683117879571 +165476,827.3800000064547,-0.05380670469767551 +165477,827.3850000064548,-0.05380657820126227 +165478,827.3900000064549,-0.05380645168955134 +165479,827.395000006455,-0.05380632516253805 +165480,827.4000000064551,-0.053806198620217745 +165481,827.4050000064552,-0.05380607206258577 +165482,827.4100000064553,-0.05380594548963745 +165483,827.4150000064554,-0.053805818901368145 +165484,827.4200000064556,-0.05380569229777316 +165485,827.4250000064557,-0.05380556567884786 +165486,827.4300000064558,-0.053805439044587546 +165487,827.4350000064559,-0.05380531239498755 +165488,827.440000006456,-0.05380518573004322 +165489,827.4450000064561,-0.05380505904974986 +165490,827.4500000064562,-0.05380493235410279 +165491,827.4550000064563,-0.05380480564309734 +165492,827.4600000064564,-0.05380467891672882 +165493,827.4650000064565,-0.053804552174992554 +165494,827.4700000064566,-0.05380442541788385 +165495,827.4750000064568,-0.05380429864539802 +165496,827.4800000064569,-0.05380417185753038 +165497,827.485000006457,-0.05380404505427622 +165498,827.4900000064571,-0.05380391823563086 +165499,827.4950000064572,-0.05380379140158959 +165500,827.5000000064573,-0.05380366455214774 +165501,827.5050000064574,-0.053803537687300576 +165502,827.5100000064575,-0.05380341080704342 +165503,827.5150000064576,-0.053803283911371555 +165504,827.5200000064577,-0.053803157000280266 +165505,827.5250000064578,-0.05380303007376486 +165506,827.530000006458,-0.05380290313182063 +165507,827.5350000064581,-0.05380277617444285 +165508,827.5400000064582,-0.05380264920162682 +165509,827.5450000064583,-0.05380252221336781 +165510,827.5500000064584,-0.053802395209661104 +165511,827.5550000064585,-0.05380226819050196 +165512,827.5600000064586,-0.05380214115588569 +165513,827.5650000064587,-0.05380201410580756 +165514,827.5700000064588,-0.05380188704026283 +165515,827.5750000064589,-0.053801759959246784 +165516,827.580000006459,-0.053801632862754675 +165517,827.5850000064592,-0.05380150575078178 +165518,827.5900000064593,-0.053801378623323376 +165519,827.5950000064594,-0.05380125148037471 +165520,827.6000000064595,-0.05380112432193103 +165521,827.6050000064596,-0.05380099714798762 +165522,827.6100000064597,-0.05380086995853972 +165523,827.6150000064598,-0.0538007427535826 +165524,827.6200000064599,-0.053800615533111495 +165525,827.62500000646,-0.053800488297121675 +165526,827.6300000064601,-0.05380036104560837 +165527,827.6350000064602,-0.05380023377856682 +165528,827.6400000064604,-0.053800106495992296 +165529,827.6450000064605,-0.05379997919788002 +165530,827.6500000064606,-0.05379985188422524 +165531,827.6550000064607,-0.05379972455502317 +165532,827.6600000064608,-0.053799597210269084 +165533,827.6650000064609,-0.05379946984995819 +165534,827.670000006461,-0.05379934247408572 +165535,827.6750000064611,-0.05379921508264693 +165536,827.6800000064612,-0.053799087675637014 +165537,827.6850000064613,-0.053798960253051205 +165538,827.6900000064614,-0.05379883281488475 +165539,827.6950000064616,-0.05379870536113285 +165540,827.7000000064617,-0.05379857789179072 +165541,827.7050000064618,-0.053798450406853576 +165542,827.7100000064619,-0.05379832290631664 +165543,827.715000006462,-0.05379819539017514 +165544,827.7200000064621,-0.05379806785842426 +165545,827.7250000064622,-0.05379794031105922 +165546,827.7300000064623,-0.053797812748075234 +165547,827.7350000064624,-0.0537976851694675 +165548,827.7400000064625,-0.05379755757523121 +165549,827.7450000064626,-0.05379742996536159 +165550,827.7500000064628,-0.05379730233985382 +165551,827.7550000064629,-0.05379717469870309 +165552,827.760000006463,-0.053797047041904605 +165553,827.7650000064631,-0.05379691936945355 +165554,827.7700000064632,-0.05379679168134513 +165555,827.7750000064633,-0.05379666397757451 +165556,827.7800000064634,-0.0537965362581369 +165557,827.7850000064635,-0.05379640852302745 +165558,827.7900000064636,-0.05379628077224138 +165559,827.7950000064637,-0.053796153005773846 +165560,827.8000000064638,-0.053796025223620036 +165561,827.805000006464,-0.05379589742577511 +165562,827.8100000064641,-0.05379576961223426 +165563,827.8150000064642,-0.053795641782992634 +165564,827.8200000064643,-0.053795513938045415 +165565,827.8250000064644,-0.05379538607738778 +165566,827.8300000064645,-0.05379525820101488 +165567,827.8350000064646,-0.05379513030892187 +165568,827.8400000064647,-0.05379500240110393 +165569,827.8450000064648,-0.05379487447755621 +165570,827.8500000064649,-0.053794746538273853 +165571,827.855000006465,-0.053794618583252046 +165572,827.8600000064652,-0.0537944906124859 +165573,827.8650000064653,-0.05379436262597059 +165574,827.8700000064654,-0.05379423462370126 +165575,827.8750000064655,-0.053794106605673055 +165576,827.8800000064656,-0.05379397857188111 +165577,827.8850000064657,-0.05379385052232059 +165578,827.8900000064658,-0.053793722456986603 +165579,827.8950000064659,-0.05379359437587429 +165580,827.900000006466,-0.05379346627897881 +165581,827.9050000064661,-0.053793338166295286 +165582,827.9100000064662,-0.05379321003781884 +165583,827.9150000064664,-0.0537930818935446 +165584,827.9200000064665,-0.0537929537334677 +165585,827.9250000064666,-0.05379282555758326 +165586,827.9300000064667,-0.0537926973658864 +165587,827.9350000064668,-0.053792569158372244 +165588,827.9400000064669,-0.053792440935035914 +165589,827.945000006467,-0.053792312695872514 +165590,827.9500000064671,-0.05379218444087717 +165591,827.9550000064672,-0.053792056170044976 +165592,827.9600000064673,-0.05379192788337106 +165593,827.9650000064674,-0.05379179958085052 +165594,827.9700000064676,-0.05379167126247846 +165595,827.9750000064677,-0.05379154292824998 +165596,827.9800000064678,-0.05379141457816019 +165597,827.9850000064679,-0.053791286212204185 +165598,827.990000006468,-0.05379115783037706 +165599,827.9950000064681,-0.05379102943267391 +165600,828.0000000064682,-0.05379090101908983 +165601,828.0050000064683,-0.05379077258961991 +165602,828.0100000064684,-0.05379064414425922 +165603,828.0150000064685,-0.05379051568300287 +165604,828.0200000064686,-0.05379038720584593 +165605,828.0250000064688,-0.053790258712783486 +165606,828.0300000064689,-0.05379013020381062 +165607,828.035000006469,-0.05379000167892241 +165608,828.0400000064691,-0.05378987313811392 +165609,828.0450000064692,-0.05378974458138022 +165610,828.0500000064693,-0.053789616008716394 +165611,828.0550000064694,-0.053789487420117514 +165612,828.0600000064695,-0.05378935881557863 +165613,828.0650000064696,-0.0537892301950948 +165614,828.0700000064697,-0.053789101558661116 +165615,828.0750000064698,-0.05378897290627262 +165616,828.08000000647,-0.05378884423792437 +165617,828.0850000064701,-0.053788715553611414 +165618,828.0900000064702,-0.05378858685332881 +165619,828.0950000064703,-0.053788458137071615 +165620,828.1000000064704,-0.05378832940483487 +165621,828.1050000064705,-0.053788200656613626 +165622,828.1100000064706,-0.05378807189240293 +165623,828.1150000064707,-0.053787943112197825 +165624,828.1200000064708,-0.053787814315993346 +165625,828.1250000064709,-0.05378768550378453 +165626,828.130000006471,-0.05378755667556642 +165627,828.1350000064712,-0.05378742783133404 +165628,828.1400000064713,-0.05378729897108242 +165629,828.1450000064714,-0.0537871700948066 +165630,828.1500000064715,-0.0537870412025016 +165631,828.1550000064716,-0.05378691229416245 +165632,828.1600000064717,-0.05378678336978416 +165633,828.1650000064718,-0.053786654429361765 +165634,828.1700000064719,-0.05378652547289028 +165635,828.175000006472,-0.053786396500364715 +165636,828.1800000064721,-0.05378626751178008 +165637,828.1850000064723,-0.0537861385071314 +165638,828.1900000064724,-0.053786009486413676 +165639,828.1950000064725,-0.05378588044962193 +165640,828.2000000064726,-0.05378575139675114 +165641,828.2050000064727,-0.05378562232779634 +165642,828.2100000064728,-0.053785493242752495 +165643,828.2150000064729,-0.053785364141614625 +165644,828.220000006473,-0.05378523502437773 +165645,828.2250000064731,-0.05378510589103679 +165646,828.2300000064732,-0.053784976741586804 +165647,828.2350000064733,-0.05378484757602277 +165648,828.2400000064735,-0.05378471839433967 +165649,828.2450000064736,-0.053784589196532465 +165650,828.2500000064737,-0.05378445998259618 +165651,828.2550000064738,-0.05378433075252576 +165652,828.2600000064739,-0.05378420150631621 +165653,828.265000006474,-0.053784072243962484 +165654,828.2700000064741,-0.053783942965459575 +165655,828.2750000064742,-0.05378381367080245 +165656,828.2800000064743,-0.05378368435998605 +165657,828.2850000064744,-0.05378355503300539 +165658,828.2900000064745,-0.053783425689855405 +165659,828.2950000064747,-0.053783296330531076 +165660,828.3000000064748,-0.05378316695502734 +165661,828.3050000064749,-0.05378303756333918 +165662,828.310000006475,-0.05378290815546153 +165663,828.3150000064751,-0.053782778731389355 +165664,828.3200000064752,-0.05378264929111761 +165665,828.3250000064753,-0.05378251983464124 +165666,828.3300000064754,-0.053782390361955194 +165667,828.3350000064755,-0.05378226087305441 +165668,828.3400000064756,-0.05378213136793385 +165669,828.3450000064757,-0.05378200184658843 +165670,828.3500000064759,-0.05378187230901311 +165671,828.355000006476,-0.05378174275520282 +165672,828.3600000064761,-0.05378161318515248 +165673,828.3650000064762,-0.05378148359885704 +165674,828.3700000064763,-0.053781353996311426 +165675,828.3750000064764,-0.05378122437751055 +165676,828.3800000064765,-0.053781094742449354 +165677,828.3850000064766,-0.053780965091122755 +165678,828.3900000064767,-0.05378083542352567 +165679,828.3950000064768,-0.05378070573965303 +165680,828.400000006477,-0.05378057603949973 +165681,828.405000006477,-0.053780446323060706 +165682,828.4100000064772,-0.053780316590330855 +165683,828.4150000064773,-0.053780186841305096 +165684,828.4200000064774,-0.05378005707597832 +165685,828.4250000064775,-0.05377992729434544 +165686,828.4300000064776,-0.053779797496401376 +165687,828.4350000064777,-0.053779667682141 +165688,828.4400000064778,-0.053779537851559214 +165689,828.4450000064779,-0.05377940800465093 +165690,828.450000006478,-0.05377927814141104 +165691,828.4550000064781,-0.05377914826183442 +165692,828.4600000064783,-0.053779018365915976 +165693,828.4650000064784,-0.05377888845365058 +165694,828.4700000064785,-0.053778758525033124 +165695,828.4750000064786,-0.05377862858005848 +165696,828.4800000064787,-0.05377849861872154 +165697,828.4850000064788,-0.053778368641017184 +165698,828.4900000064789,-0.053778238646940285 +165699,828.495000006479,-0.053778108636485696 +165700,828.5000000064791,-0.053777978609648315 +165701,828.5050000064792,-0.05377784856642299 +165702,828.5100000064793,-0.05377771850680461 +165703,828.5150000064795,-0.05377758843078802 +165704,828.5200000064796,-0.05377745833836808 +165705,828.5250000064797,-0.053777328229539664 +165706,828.5300000064798,-0.05377719810429761 +165707,828.5350000064799,-0.053777067962636795 +165708,828.54000000648,-0.05377693780455205 +165709,828.5450000064801,-0.05377680763003823 +165710,828.5500000064802,-0.05377667743909021 +165711,828.5550000064803,-0.05377654723170281 +165712,828.5600000064804,-0.053776417007870864 +165713,828.5650000064805,-0.05377628676758923 +165714,828.5700000064807,-0.05377615651085275 +165715,828.5750000064808,-0.05377602623765624 +165716,828.5800000064809,-0.053775895947994555 +165717,828.585000006481,-0.053775765641862525 +165718,828.5900000064811,-0.05377563531925497 +165719,828.5950000064812,-0.053775504980166734 +165720,828.6000000064813,-0.053775374624592615 +165721,828.6050000064814,-0.05377524425252746 +165722,828.6100000064815,-0.05377511386396607 +165723,828.6150000064816,-0.05377498345890328 +165724,828.6200000064817,-0.05377485303733388 +165725,828.6250000064819,-0.053774722599252714 +165726,828.630000006482,-0.053774592144654576 +165727,828.6350000064821,-0.05377446167353429 +165728,828.6400000064822,-0.053774331185886655 +165729,828.6450000064823,-0.05377420068170646 +165730,828.6500000064824,-0.053774070160988514 +165731,828.6550000064825,-0.05377393962372763 +165732,828.6600000064826,-0.0537738090699186 +165733,828.6650000064827,-0.053773678499556214 +165734,828.6700000064828,-0.053773547912635264 +165735,828.675000006483,-0.05377341730915055 +165736,828.680000006483,-0.05377328668909684 +165737,828.6850000064832,-0.053773156052468934 +165738,828.6900000064833,-0.05377302539926161 +165739,828.6950000064834,-0.05377289472946965 +165740,828.7000000064835,-0.053772764043087846 +165741,828.7050000064836,-0.05377263334011096 +165742,828.7100000064837,-0.05377250262053377 +165743,828.7150000064838,-0.05377237188435104 +165744,828.7200000064839,-0.05377224113155756 +165745,828.725000006484,-0.05377211036214809 +165746,828.7300000064841,-0.053771979576117374 +165747,828.7350000064843,-0.053771848773460196 +165748,828.7400000064844,-0.053771717954171294 +165749,828.7450000064845,-0.05377158711824545 +165750,828.7500000064846,-0.0537714562656774 +165751,828.7550000064847,-0.05377132539646192 +165752,828.7600000064848,-0.05377119451059374 +165753,828.7650000064849,-0.053771063608067625 +165754,828.770000006485,-0.0537709326888783 +165755,828.7750000064851,-0.05377080175302052 +165756,828.7800000064852,-0.05377067080048903 +165757,828.7850000064853,-0.05377053983127856 +165758,828.7900000064855,-0.05377040884538386 +165759,828.7950000064856,-0.05377027784279965 +165760,828.8000000064857,-0.053770146823520666 +165761,828.8050000064858,-0.05377001578754164 +165762,828.8100000064859,-0.053769884734857304 +165763,828.815000006486,-0.053769753665462376 +165764,828.8200000064861,-0.05376962257935158 +165765,828.8250000064862,-0.05376949147651963 +165766,828.8300000064863,-0.05376936035696126 +165767,828.8350000064864,-0.053769229220671164 +165768,828.8400000064865,-0.053769098067644065 +165769,828.8450000064867,-0.05376896689787468 +165770,828.8500000064868,-0.05376883571135771 +165771,828.8550000064869,-0.053768704508087864 +165772,828.860000006487,-0.05376857328805984 +165773,828.8650000064871,-0.053768442051268336 +165774,828.8700000064872,-0.053768310797708066 +165775,828.8750000064873,-0.05376817952737372 +165776,828.8800000064874,-0.053768048240259984 +165777,828.8850000064875,-0.05376791693636156 +165778,828.8900000064876,-0.053767785615673136 +165779,828.8950000064877,-0.053767654278189386 +165780,828.9000000064879,-0.053767522923905006 +165781,828.905000006488,-0.05376739155281469 +165782,828.9100000064881,-0.0537672601649131 +165783,828.9150000064882,-0.05376712876019491 +165784,828.9200000064883,-0.0537669973386548 +165785,828.9250000064884,-0.05376686590028746 +165786,828.9300000064885,-0.05376673444508754 +165787,828.9350000064886,-0.0537666029730497 +165788,828.9400000064887,-0.05376647148416863 +165789,828.9450000064888,-0.05376633997843898 +165790,828.950000006489,-0.053766208455855405 +165791,828.9550000064891,-0.053766076916412574 +165792,828.9600000064892,-0.05376594536010515 +165793,828.9650000064893,-0.05376581378692777 +165794,828.9700000064894,-0.053765682196875095 +165795,828.9750000064895,-0.05376555058994176 +165796,828.9800000064896,-0.05376541896612243 +165797,828.9850000064897,-0.053765287325411734 +165798,828.9900000064898,-0.05376515566780432 +165799,828.9950000064899,-0.05376502399329483 +165800,829.00000000649,-0.05376489230187789 +165801,829.0050000064901,-0.05376476059354815 +165802,829.0100000064903,-0.053764628868300225 +165803,829.0150000064904,-0.05376449712612875 +165804,829.0200000064905,-0.05376436536702836 +165805,829.0250000064906,-0.05376423359099367 +165806,829.0300000064907,-0.05376410179801931 +165807,829.0350000064908,-0.0537639699880999 +165808,829.0400000064909,-0.05376383816123006 +165809,829.045000006491,-0.05376370631740439 +165810,829.0500000064911,-0.05376357445661751 +165811,829.0550000064912,-0.053763442578864014 +165812,829.0600000064914,-0.053763310684138546 +165813,829.0650000064915,-0.05376317877243568 +165814,829.0700000064916,-0.05376304684375004 +165815,829.0750000064917,-0.053762914898076206 +165816,829.0800000064918,-0.053762782935408794 +165817,829.0850000064919,-0.05376265095574239 +165818,829.090000006492,-0.05376251895907159 +165819,829.0950000064921,-0.053762386945390976 +165820,829.1000000064922,-0.05376225491469515 +165821,829.1050000064923,-0.053762122866978686 +165822,829.1100000064924,-0.05376199080223618 +165823,829.1150000064926,-0.0537618587204622 +165824,829.1200000064927,-0.05376172662165134 +165825,829.1250000064928,-0.053761594505798156 +165826,829.1300000064929,-0.053761462372897244 +165827,829.135000006493,-0.05376133022294316 +165828,829.1400000064931,-0.053761198055930465 +165829,829.1450000064932,-0.053761065871853746 +165830,829.1500000064933,-0.05376093367070754 +165831,829.1550000064934,-0.05376080145248645 +165832,829.1600000064935,-0.053760669217184996 +165833,829.1650000064936,-0.05376053696479775 +165834,829.1700000064938,-0.053760404695319265 +165835,829.1750000064939,-0.053760272408744085 +165836,829.180000006494,-0.053760140105066766 +165837,829.1850000064941,-0.05376000778428187 +165838,829.1900000064942,-0.053759875446383915 +165839,829.1950000064943,-0.053759743091367454 +165840,829.2000000064944,-0.053759610719227025 +165841,829.2050000064945,-0.053759478329957165 +165842,829.2100000064946,-0.0537593459235524 +165843,829.2150000064947,-0.05375921350000728 +165844,829.2200000064948,-0.053759081059316316 +165845,829.225000006495,-0.053758948601474045 +165846,829.2300000064951,-0.053758816126475 +165847,829.2350000064952,-0.053758683634313686 +165848,829.2400000064953,-0.053758551124984635 +165849,829.2450000064954,-0.05375841859848235 +165850,829.2500000064955,-0.05375828605480136 +165851,829.2550000064956,-0.05375815349393618 +165852,829.2600000064957,-0.053758020915881305 +165853,829.2650000064958,-0.05375788832063124 +165854,829.2700000064959,-0.0537577557081805 +165855,829.275000006496,-0.05375762307852358 +165856,829.2800000064962,-0.05375749043165499 +165857,829.2850000064963,-0.05375735776756922 +165858,829.2900000064964,-0.05375722508626076 +165859,829.2950000064965,-0.053757092387724116 +165860,829.3000000064966,-0.05375695967195376 +165861,829.3050000064967,-0.0537568269389442 +165862,829.3100000064968,-0.053756694188689905 +165863,829.3150000064969,-0.053756561421185366 +165864,829.320000006497,-0.05375642863642506 +165865,829.3250000064971,-0.053756295834403445 +165866,829.3300000064972,-0.05375616301511502 +165867,829.3350000064974,-0.05375603017855426 +165868,829.3400000064975,-0.05375589732471562 +165869,829.3450000064976,-0.05375576445359357 +165870,829.3500000064977,-0.053755631565182586 +165871,829.3550000064978,-0.05375549865947711 +165872,829.3600000064979,-0.05375536573647162 +165873,829.365000006498,-0.053755232796160554 +165874,829.3700000064981,-0.053755099838538385 +165875,829.3750000064982,-0.05375496686359956 +165876,829.3800000064983,-0.05375483387133854 +165877,829.3850000064984,-0.053754700861749743 +165878,829.3900000064986,-0.05375456783482764 +165879,829.3950000064987,-0.053754434790566664 +165880,829.4000000064988,-0.05375430172896125 +165881,829.4050000064989,-0.05375416865000584 +165882,829.410000006499,-0.053754035553694866 +165883,829.4150000064991,-0.05375390244002276 +165884,829.4200000064992,-0.05375376930898395 +165885,829.4250000064993,-0.05375363616057287 +165886,829.4300000064994,-0.053753502994783944 +165887,829.4350000064995,-0.05375336981161159 +165888,829.4400000064996,-0.05375323661105023 +165889,829.4450000064998,-0.05375310339309426 +165890,829.4500000064999,-0.05375297015773813 +165891,829.4550000065,-0.05375283690497624 +165892,829.4600000065001,-0.05375270363480297 +165893,829.4650000065002,-0.05375257034721277 +165894,829.4700000065003,-0.053752437042200014 +165895,829.4750000065004,-0.053752303719759115 +165896,829.4800000065005,-0.05375217037988448 +165897,829.4850000065006,-0.05375203702257049 +165898,829.4900000065007,-0.053751903647811544 +165899,829.4950000065008,-0.053751770255602044 +165900,829.500000006501,-0.05375163684593636 +165901,829.5050000065011,-0.053751503418808896 +165902,829.5100000065012,-0.053751369974214015 +165903,829.5150000065013,-0.053751236512146125 +165904,829.5200000065014,-0.05375110303259958 +165905,829.5250000065015,-0.05375096953556876 +165906,829.5300000065016,-0.05375083602104806 +165907,829.5350000065017,-0.053750702489031826 +165908,829.5400000065018,-0.05375056893951444 +165909,829.5450000065019,-0.05375043537249026 +165910,829.550000006502,-0.05375030178795366 +165911,829.5550000065022,-0.053750168185899 +165912,829.5600000065023,-0.05375003456632064 +165913,829.5650000065024,-0.05374990092921291 +165914,829.5700000065025,-0.05374976727457019 +165915,829.5750000065026,-0.053749633602386826 +165916,829.5800000065027,-0.05374949991265716 +165917,829.5850000065028,-0.053749366205375536 +165918,829.5900000065029,-0.053749232480536306 +165919,829.595000006503,-0.0537490987381338 +165920,829.6000000065031,-0.05374896497816235 +165921,829.6050000065032,-0.05374883120061631 +165922,829.6100000065034,-0.05374869740549001 +165923,829.6150000065035,-0.05374856359277776 +165924,829.6200000065036,-0.053748429762473904 +165925,829.6250000065037,-0.053748295914572766 +165926,829.6300000065038,-0.05374816204906867 +165927,829.6350000065039,-0.05374802816595592 +165928,829.640000006504,-0.053747894265228836 +165929,829.6450000065041,-0.05374776034688175 +165930,829.6500000065042,-0.053747626410908966 +165931,829.6550000065043,-0.053747492457304785 +165932,829.6600000065044,-0.05374735848606353 +165933,829.6650000065046,-0.05374722449717949 +165934,829.6700000065047,-0.05374709049064697 +165935,829.6750000065048,-0.053746956466460265 +165936,829.6800000065049,-0.05374682242461367 +165937,829.685000006505,-0.05374668836510149 +165938,829.6900000065051,-0.05374655428791802 +165939,829.6950000065052,-0.05374642019305753 +165940,829.7000000065053,-0.05374628608051431 +165941,829.7050000065054,-0.05374615195028265 +165942,829.7100000065055,-0.053746017802356834 +165943,829.7150000065056,-0.05374588363673112 +165944,829.7200000065058,-0.05374574945339981 +165945,829.7250000065059,-0.05374561525235715 +165946,829.730000006506,-0.05374548103359743 +165947,829.7350000065061,-0.05374534679711491 +165948,829.7400000065062,-0.05374521254290386 +165949,829.7450000065063,-0.05374507827095853 +165950,829.7500000065064,-0.0537449439812732 +165951,829.7550000065065,-0.0537448096738421 +165952,829.7600000065066,-0.0537446753486595 +165953,829.7650000065067,-0.053744541005719654 +165954,829.7700000065068,-0.05374440664501681 +165955,829.775000006507,-0.05374427226654521 +165956,829.7800000065071,-0.0537441378702991 +165957,829.7850000065072,-0.053744003456272726 +165958,829.7900000065073,-0.05374386902446031 +165959,829.7950000065074,-0.05374373457485611 +165960,829.8000000065075,-0.05374360010745434 +165961,829.8050000065076,-0.05374346562224925 +165962,829.8100000065077,-0.05374333111923505 +165963,829.8150000065078,-0.05374319659840597 +165964,829.8200000065079,-0.05374306205975624 +165965,829.825000006508,-0.05374292750328007 +165966,829.8300000065082,-0.05374279292897168 +165967,829.8350000065083,-0.05374265833682529 +165968,829.8400000065084,-0.053742523726835106 +165969,829.8450000065085,-0.05374238909899535 +165970,829.8500000065086,-0.053742254453300206 +165971,829.8550000065087,-0.0537421197897439 +165972,829.8600000065088,-0.05374198510832062 +165973,829.8650000065089,-0.05374185040902458 +165974,829.870000006509,-0.05374171569184996 +165975,829.8750000065091,-0.053741580956790956 +165976,829.8800000065092,-0.05374144620384176 +165977,829.8850000065094,-0.05374131143299657 +165978,829.8900000065095,-0.053741176644249565 +165979,829.8950000065096,-0.05374104183759492 +165980,829.9000000065097,-0.05374090701302683 +165981,829.9050000065098,-0.05374077217053946 +165982,829.9100000065099,-0.05374063731012699 +165983,829.91500000651,-0.053740502431783584 +165984,829.9200000065101,-0.053740367535503424 +165985,829.9250000065102,-0.05374023262128067 +165986,829.9300000065103,-0.05374009768910949 +165987,829.9350000065104,-0.05373996273898405 +165988,829.9400000065106,-0.0537398277708985 +165989,829.9450000065107,-0.053739692784847 +165990,829.9500000065108,-0.05373955778082369 +165991,829.9550000065109,-0.05373942275882274 +165992,829.960000006511,-0.053739287718838284 +165993,829.9650000065111,-0.05373915266086448 +165994,829.9700000065112,-0.053739017584895465 +165995,829.9750000065113,-0.05373888249092538 +165996,829.9800000065114,-0.05373874737894835 +165997,829.9850000065115,-0.05373861224895852 +165998,829.9900000065117,-0.05373847710095002 +165999,829.9950000065118,-0.053738341934916986 +166000,830.0000000065119,-0.053738206750853536 +166001,830.005000006512,-0.0537380715487538 +166002,830.0100000065121,-0.053737936328611895 +166003,830.0150000065122,-0.05373780109042194 +166004,830.0200000065123,-0.053737665834178064 +166005,830.0250000065124,-0.05373753055987436 +166006,830.0300000065125,-0.053737395267504935 +166007,830.0350000065126,-0.05373725995706392 +166008,830.0400000065127,-0.05373712462854539 +166009,830.0450000065129,-0.05373698928194347 +166010,830.050000006513,-0.05373685391725225 +166011,830.0550000065131,-0.053736718534465835 +166012,830.0600000065132,-0.05373658313357832 +166013,830.0650000065133,-0.05373644771458379 +166014,830.0700000065134,-0.05373631227747633 +166015,830.0750000065135,-0.05373617682225003 +166016,830.0800000065136,-0.053736041348898964 +166017,830.0850000065137,-0.05373590585741722 +166018,830.0900000065138,-0.053735770347798875 +166019,830.0950000065139,-0.053735634820038014 +166020,830.100000006514,-0.0537354992741287 +166021,830.1050000065142,-0.053735363710065 +166022,830.1100000065143,-0.053735228127840984 +166023,830.1150000065144,-0.053735092527450706 +166024,830.1200000065145,-0.053734956908888236 +166025,830.1250000065146,-0.05373482127214764 +166026,830.1300000065147,-0.053734685617222964 +166027,830.1350000065148,-0.05373454994410827 +166028,830.1400000065149,-0.05373441425279759 +166029,830.145000006515,-0.05373427854328499 +166030,830.1500000065151,-0.053734142815564497 +166031,830.1550000065153,-0.05373400706963017 +166032,830.1600000065154,-0.05373387130547604 +166033,830.1650000065155,-0.05373373552309615 +166034,830.1700000065156,-0.05373359972248452 +166035,830.1750000065157,-0.05373346390363518 +166036,830.1800000065158,-0.053733328066542185 +166037,830.1850000065159,-0.053733192211199536 +166038,830.190000006516,-0.05373305633760127 +166039,830.1950000065161,-0.0537329204457414 +166040,830.2000000065162,-0.05373278453561395 +166041,830.2050000065163,-0.05373264860721291 +166042,830.2100000065165,-0.053732512660532326 +166043,830.2150000065166,-0.05373237669556617 +166044,830.2200000065167,-0.053732240712308484 +166045,830.2250000065168,-0.05373210471075325 +166046,830.2300000065169,-0.05373196869089448 +166047,830.235000006517,-0.05373183265272616 +166048,830.2400000065171,-0.05373169659624229 +166049,830.2450000065172,-0.053731560521436864 +166050,830.2500000065173,-0.05373142442830387 +166051,830.2550000065174,-0.053731288316837295 +166052,830.2600000065175,-0.05373115218703112 +166053,830.2650000065177,-0.053731016038879316 +166054,830.2700000065178,-0.053730879872375896 +166055,830.2750000065179,-0.053730743687514806 +166056,830.280000006518,-0.05373060748429002 +166057,830.2850000065181,-0.05373047126269552 +166058,830.2900000065182,-0.053730335022725256 +166059,830.2950000065183,-0.05373019876437322 +166060,830.3000000065184,-0.053730062487633345 +166061,830.3050000065185,-0.053729926192499604 +166062,830.3100000065186,-0.05372978987896596 +166063,830.3150000065187,-0.05372965354702636 +166064,830.3200000065189,-0.05372951719667475 +166065,830.325000006519,-0.05372938082790508 +166066,830.3300000065191,-0.05372924444071128 +166067,830.3350000065192,-0.053729108035087306 +166068,830.3400000065193,-0.053728971611027104 +166069,830.3450000065194,-0.0537288351685246 +166070,830.3500000065195,-0.05372869870757373 +166071,830.3550000065196,-0.05372856222816843 +166072,830.3600000065197,-0.05372842573030262 +166073,830.3650000065198,-0.05372828921397023 +166074,830.37000000652,-0.05372815267916518 +166075,830.37500000652,-0.053728016125881385 +166076,830.3800000065202,-0.05372787955411276 +166077,830.3850000065203,-0.053727742963853235 +166078,830.3900000065204,-0.0537276063550967 +166079,830.3950000065205,-0.053727469727837075 +166080,830.4000000065206,-0.05372733308206827 +166081,830.4050000065207,-0.05372719641778417 +166082,830.4100000065208,-0.0537270597349787 +166083,830.4150000065209,-0.053726923033645735 +166084,830.420000006521,-0.053726786313779175 +166085,830.4250000065211,-0.05372664957537292 +166086,830.4300000065213,-0.05372651281842084 +166087,830.4350000065214,-0.05372637604291684 +166088,830.4400000065215,-0.0537262392488548 +166089,830.4450000065216,-0.053726102436228586 +166090,830.4500000065217,-0.05372596560503209 +166091,830.4550000065218,-0.05372582875525916 +166092,830.4600000065219,-0.05372569188690369 +166093,830.465000006522,-0.05372555499995954 +166094,830.4700000065221,-0.05372541809442059 +166095,830.4750000065222,-0.0537252811702807 +166096,830.4800000065223,-0.0537251442275337 +166097,830.4850000065225,-0.05372500726617349 +166098,830.4900000065226,-0.05372487028619389 +166099,830.4950000065227,-0.05372473328758876 +166100,830.5000000065228,-0.05372459627035197 +166101,830.5050000065229,-0.053724459234477336 +166102,830.510000006523,-0.05372432217995872 +166103,830.5150000065231,-0.053724185106789946 +166104,830.5200000065232,-0.053724048014964866 +166105,830.5250000065233,-0.05372391090447729 +166106,830.5300000065234,-0.05372377377532108 +166107,830.5350000065235,-0.05372363662749004 +166108,830.5400000065237,-0.05372349946097801 +166109,830.5450000065238,-0.0537233622757788 +166110,830.5500000065239,-0.053723225071886246 +166111,830.555000006524,-0.05372308784929416 +166112,830.5600000065241,-0.05372295060799635 +166113,830.5650000065242,-0.053722813347986634 +166114,830.5700000065243,-0.0537226760692588 +166115,830.5750000065244,-0.05372253877180667 +166116,830.5800000065245,-0.053722401455624055 +166117,830.5850000065246,-0.05372226412070474 +166118,830.5900000065247,-0.053722126767042515 +166119,830.5950000065249,-0.05372198939463118 +166120,830.600000006525,-0.05372185200346455 +166121,830.6050000065251,-0.05372171459353638 +166122,830.6100000065252,-0.05372157716484047 +166123,830.6150000065253,-0.0537214397173706 +166124,830.6200000065254,-0.053721302251120547 +166125,830.6250000065255,-0.05372116476608409 +166126,830.6300000065256,-0.05372102726225499 +166127,830.6350000065257,-0.05372088973962704 +166128,830.6400000065258,-0.05372075219819399 +166129,830.645000006526,-0.05372061463794961 +166130,830.650000006526,-0.05372047705888767 +166131,830.6550000065262,-0.053720339461001916 +166132,830.6600000065263,-0.05372020184428611 +166133,830.6650000065264,-0.053720064208734 +166134,830.6700000065265,-0.05371992655433934 +166135,830.6750000065266,-0.05371978888109587 +166136,830.6800000065267,-0.053719651188997346 +166137,830.6850000065268,-0.0537195134780375 +166138,830.6900000065269,-0.05371937574821007 +166139,830.695000006527,-0.053719237999508805 +166140,830.7000000065271,-0.05371910023192743 +166141,830.7050000065273,-0.05371896244545967 +166142,830.7100000065274,-0.05371882464009924 +166143,830.7150000065275,-0.05371868681583989 +166144,830.7200000065276,-0.05371854897267532 +166145,830.7250000065277,-0.053718411110599266 +166146,830.7300000065278,-0.053718273229605415 +166147,830.7350000065279,-0.0537181353296875 +166148,830.740000006528,-0.053717997410839234 +166149,830.7450000065281,-0.053717859473054304 +166150,830.7500000065282,-0.053717721516326436 +166151,830.7550000065283,-0.053717583540649316 +166152,830.7600000065285,-0.05371744554601664 +166153,830.7650000065286,-0.0537173075324221 +166154,830.7700000065287,-0.0537171694998594 +166155,830.7750000065288,-0.053717031448322204 +166156,830.7800000065289,-0.05371689337780423 +166157,830.785000006529,-0.053716755288299126 +166158,830.7900000065291,-0.05371661717980059 +166159,830.7950000065292,-0.053716479052302306 +166160,830.8000000065293,-0.05371634090579794 +166161,830.8050000065294,-0.05371620274028116 +166162,830.8100000065295,-0.05371606455574563 +166163,830.8150000065297,-0.05371592635218502 +166164,830.8200000065298,-0.053715788129592996 +166165,830.8250000065299,-0.053715649887963214 +166166,830.83000000653,-0.05371551162728932 +166167,830.8350000065301,-0.05371537334756498 +166168,830.8400000065302,-0.053715235048783824 +166169,830.8450000065303,-0.05371509673093952 +166170,830.8500000065304,-0.0537149583940257 +166171,830.8550000065305,-0.05371482003803601 +166172,830.8600000065306,-0.05371468166296409 +166173,830.8650000065307,-0.053714543268803566 +166174,830.8700000065309,-0.053714404855548084 +166175,830.875000006531,-0.05371426642319125 +166176,830.8800000065311,-0.0537141279717267 +166177,830.8850000065312,-0.053713989501148064 +166178,830.8900000065313,-0.05371385101144895 +166179,830.8950000065314,-0.053713712502622996 +166180,830.9000000065315,-0.05371357397466379 +166181,830.9050000065316,-0.05371343542756496 +166182,830.9100000065317,-0.053713296861320106 +166183,830.9150000065318,-0.05371315827592282 +166184,830.920000006532,-0.05371301967136674 +166185,830.9250000065321,-0.053712881047645426 +166186,830.9300000065322,-0.05371274240475249 +166187,830.9350000065323,-0.05371260374268154 +166188,830.9400000065324,-0.05371246506142614 +166189,830.9450000065325,-0.05371232636097989 +166190,830.9500000065326,-0.053712187641336374 +166191,830.9550000065327,-0.05371204890248916 +166192,830.9600000065328,-0.05371191014443184 +166193,830.9650000065329,-0.05371177136715798 +166194,830.970000006533,-0.05371163257066115 +166195,830.9750000065332,-0.05371149375493492 +166196,830.9800000065333,-0.053711354919972865 +166197,830.9850000065334,-0.05371121606576854 +166198,830.9900000065335,-0.0537110771923155 +166199,830.9950000065336,-0.05371093829960731 +166200,831.0000000065337,-0.05371079938763752 +166201,831.0050000065338,-0.05371066045639968 +166202,831.0100000065339,-0.05371052150588734 +166203,831.015000006534,-0.053710382536094045 +166204,831.0200000065341,-0.05371024354701332 +166205,831.0250000065342,-0.05371010453863872 +166206,831.0300000065344,-0.05370996551096377 +166207,831.0350000065345,-0.053709826463982015 +166208,831.0400000065346,-0.05370968739768698 +166209,831.0450000065347,-0.053709548312072176 +166210,831.0500000065348,-0.053709409207131145 +166211,831.0550000065349,-0.053709270082857405 +166212,831.060000006535,-0.05370913093924445 +166213,831.0650000065351,-0.05370899177628582 +166214,831.0700000065352,-0.05370885259397501 +166215,831.0750000065353,-0.05370871339230553 +166216,831.0800000065354,-0.05370857417127088 +166217,831.0850000065356,-0.053708434930864586 +166218,831.0900000065357,-0.053708295671080125 +166219,831.0950000065358,-0.05370815639191099 +166220,831.1000000065359,-0.05370801709335068 +166221,831.105000006536,-0.05370787777539269 +166222,831.1100000065361,-0.05370773843803049 +166223,831.1150000065362,-0.053707599081257586 +166224,831.1200000065363,-0.053707459705067434 +166225,831.1250000065364,-0.05370732030945352 +166226,831.1300000065365,-0.05370718089440932 +166227,831.1350000065366,-0.05370704145992831 +166228,831.1400000065368,-0.05370690200600394 +166229,831.1450000065369,-0.053706762532629695 +166230,831.150000006537,-0.05370662303979903 +166231,831.1550000065371,-0.053706483527505386 +166232,831.1600000065372,-0.05370634399574223 +166233,831.1650000065373,-0.05370620444450302 +166234,831.1700000065374,-0.05370606487378119 +166235,831.1750000065375,-0.05370592528357021 +166236,831.1800000065376,-0.053705785673863506 +166237,831.1850000065377,-0.05370564604465452 +166238,831.1900000065378,-0.05370550639593668 +166239,831.195000006538,-0.05370536672770344 +166240,831.2000000065381,-0.05370522703994821 +166241,831.2050000065382,-0.053705087332664436 +166242,831.2100000065383,-0.05370494760584552 +166243,831.2150000065384,-0.0537048078594849 +166244,831.2200000065385,-0.05370466809357599 +166245,831.2250000065386,-0.053704528308112204 +166246,831.2300000065387,-0.053704388503086946 +166247,831.2350000065388,-0.053704248678493625 +166248,831.2400000065389,-0.053704108834325665 +166249,831.245000006539,-0.05370396897057646 +166250,831.2500000065392,-0.053703829087239384 +166251,831.2550000065393,-0.053703689184307866 +166252,831.2600000065394,-0.05370354926177528 +166253,831.2650000065395,-0.05370340931963501 +166254,831.2700000065396,-0.05370326935788047 +166255,831.2750000065397,-0.05370312937650503 +166256,831.2800000065398,-0.05370298937550206 +166257,831.2850000065399,-0.05370284935486494 +166258,831.29000000654,-0.05370270931458705 +166259,831.2950000065401,-0.05370256925466177 +166260,831.3000000065402,-0.053702429175082445 +166261,831.3050000065404,-0.05370228907584246 +166262,831.3100000065405,-0.05370214895693516 +166263,831.3150000065406,-0.05370200881835392 +166264,831.3200000065407,-0.05370186866009208 +166265,831.3250000065408,-0.053701728482142996 +166266,831.3300000065409,-0.05370158828450002 +166267,831.335000006541,-0.053701448067156494 +166268,831.3400000065411,-0.053701307830105766 +166269,831.3450000065412,-0.05370116757334117 +166270,831.3500000065413,-0.05370102729685604 +166271,831.3550000065414,-0.05370088700064372 +166272,831.3600000065416,-0.05370074668469752 +166273,831.3650000065417,-0.053700606349010784 +166274,831.3700000065418,-0.05370046599357683 +166275,831.3750000065419,-0.05370032561838897 +166276,831.380000006542,-0.05370018522344054 +166277,831.3850000065421,-0.05370004480872484 +166278,831.3900000065422,-0.05369990437423519 +166279,831.3950000065423,-0.05369976391996488 +166280,831.4000000065424,-0.05369962344590724 +166281,831.4050000065425,-0.053699482952055545 +166282,831.4100000065426,-0.05369934243840311 +166283,831.4150000065428,-0.053699201904943226 +166284,831.4200000065429,-0.05369906135166917 +166285,831.425000006543,-0.05369892077857425 +166286,831.4300000065431,-0.053698780185651745 +166287,831.4350000065432,-0.05369863957289493 +166288,831.4400000065433,-0.05369849894029709 +166289,831.4450000065434,-0.053698358287851494 +166290,831.4500000065435,-0.05369821761555143 +166291,831.4550000065436,-0.053698076923390146 +166292,831.4600000065437,-0.053697936211360923 +166293,831.4650000065438,-0.05369779547945703 +166294,831.470000006544,-0.053697654727671705 +166295,831.4750000065441,-0.05369751395599822 +166296,831.4800000065442,-0.053697373164429824 +166297,831.4850000065443,-0.05369723235295976 +166298,831.4900000065444,-0.053697091521581274 +166299,831.4950000065445,-0.053696950670287624 +166300,831.5000000065446,-0.05369680979907203 +166301,831.5050000065447,-0.05369666890792774 +166302,831.5100000065448,-0.05369652799684801 +166303,831.5150000065449,-0.05369638706582603 +166304,831.520000006545,-0.053696246114855045 +166305,831.5250000065452,-0.05369610514392828 +166306,831.5300000065453,-0.053695964153038955 +166307,831.5350000065454,-0.05369582314218029 +166308,831.5400000065455,-0.05369568211134549 +166309,831.5450000065456,-0.05369554106052778 +166310,831.5500000065457,-0.05369539998972036 +166311,831.5550000065458,-0.05369525889891644 +166312,831.5600000065459,-0.0536951177881092 +166313,831.565000006546,-0.05369497665729186 +166314,831.5700000065461,-0.05369483550645761 +166315,831.5750000065462,-0.05369469433559964 +166316,831.5800000065464,-0.05369455314471114 +166317,831.5850000065465,-0.05369441193378529 +166318,831.5900000065466,-0.053694270702815274 +166319,831.5950000065467,-0.05369412945179427 +166320,831.6000000065468,-0.053693988180715455 +166321,831.6050000065469,-0.053693846889572 +166322,831.610000006547,-0.053693705578357086 +166323,831.6150000065471,-0.05369356424706385 +166324,831.6200000065472,-0.053693422895685475 +166325,831.6250000065473,-0.05369328152421511 +166326,831.6300000065474,-0.05369314013264592 +166327,831.6350000065476,-0.053692998720971066 +166328,831.6400000065477,-0.05369285728918367 +166329,831.6450000065478,-0.053692715837276896 +166330,831.6500000065479,-0.05369257436524387 +166331,831.655000006548,-0.05369243287307775 +166332,831.6600000065481,-0.053692291360771666 +166333,831.6650000065482,-0.05369214982831875 +166334,831.6700000065483,-0.053692008275712126 +166335,831.6750000065484,-0.053691866702944936 +166336,831.6800000065485,-0.05369172511001028 +166337,831.6850000065486,-0.05369158349690129 +166338,831.6900000065488,-0.05369144186361108 +166339,831.6950000065489,-0.053691300210132756 +166340,831.700000006549,-0.05369115853645944 +166341,831.7050000065491,-0.05369101684258423 +166342,831.7100000065492,-0.05369087512850024 +166343,831.7150000065493,-0.05369073339420055 +166344,831.7200000065494,-0.05369059163967828 +166345,831.7250000065495,-0.05369044986492649 +166346,831.7300000065496,-0.0536903080699383 +166347,831.7350000065497,-0.05369016625470678 +166348,831.7400000065498,-0.053690024419225026 +166349,831.74500000655,-0.053689882563486106 +166350,831.7500000065501,-0.05368974068748311 +166351,831.7550000065502,-0.053689598791209096 +166352,831.7600000065503,-0.05368945687465713 +166353,831.7650000065504,-0.05368931493782029 +166354,831.7700000065505,-0.05368917298069164 +166355,831.7750000065506,-0.053689031003264234 +166356,831.7800000065507,-0.05368888900553113 +166357,831.7850000065508,-0.053688746987485374 +166358,831.7900000065509,-0.05368860494912002 +166359,831.795000006551,-0.053688462890428126 +166360,831.8000000065512,-0.05368832081140272 +166361,831.8050000065513,-0.05368817871203684 +166362,831.8100000065514,-0.053688036592323546 +166363,831.8150000065515,-0.05368789445225585 +166364,831.8200000065516,-0.05368775229182678 +166365,831.8250000065517,-0.05368761011102937 +166366,831.8300000065518,-0.05368746790985664 +166367,831.8350000065519,-0.0536873256883016 +166368,831.840000006552,-0.053687183446357284 +166369,831.8450000065521,-0.053687041184016696 +166370,831.8500000065522,-0.053686898901272845 +166371,831.8550000065524,-0.05368675659811874 +166372,831.8600000065525,-0.053686614274547365 +166373,831.8650000065526,-0.053686471930551746 +166374,831.8700000065527,-0.05368632956612487 +166375,831.8750000065528,-0.053686187181259726 +166376,831.8800000065529,-0.0536860447759493 +166377,831.885000006553,-0.05368590235018658 +166378,831.8900000065531,-0.053685759903964556 +166379,831.8950000065532,-0.05368561743727619 +166380,831.9000000065533,-0.053685474950114484 +166381,831.9050000065535,-0.05368533244247239 +166382,831.9100000065536,-0.05368518991434289 +166383,831.9150000065537,-0.053685047365718934 +166384,831.9200000065538,-0.053684904796593484 +166385,831.9250000065539,-0.05368476220695952 +166386,831.930000006554,-0.053684619596809965 +166387,831.9350000065541,-0.0536844769661378 +166388,831.9400000065542,-0.05368433431493595 +166389,831.9450000065543,-0.05368419164319738 +166390,831.9500000065544,-0.053684048950915025 +166391,831.9550000065545,-0.05368390623808182 +166392,831.9600000065547,-0.0536837635046907 +166393,831.9650000065548,-0.05368362075073461 +166394,831.9700000065549,-0.05368347797620645 +166395,831.975000006555,-0.053683335181099155 +166396,831.9800000065551,-0.05368319236540566 +166397,831.9850000065552,-0.05368304952911888 +166398,831.9900000065553,-0.05368290667223171 +166399,831.9950000065554,-0.05368276379473707 +166400,832.0000000065555,-0.05368262089662788 +166401,832.0050000065556,-0.05368247797789704 +166402,832.0100000065557,-0.053682335038537435 +166403,832.0150000065559,-0.053682192078541975 +166404,832.020000006556,-0.05368204909790354 +166405,832.0250000065561,-0.05368190609661505 +166406,832.0300000065562,-0.05368176307466936 +166407,832.0350000065563,-0.053681620032059375 +166408,832.0400000065564,-0.05368147696877796 +166409,832.0450000065565,-0.05368133388481799 +166410,832.0500000065566,-0.05368119078017235 +166411,832.0550000065567,-0.053681047654833905 +166412,832.0600000065568,-0.05368090450879552 +166413,832.0650000065569,-0.05368076134205006 +166414,832.070000006557,-0.053680618154590375 +166415,832.0750000065572,-0.05368047494640933 +166416,832.0800000065573,-0.05368033171749979 +166417,832.0850000065574,-0.05368018846785458 +166418,832.0900000065575,-0.05368004519746655 +166419,832.0950000065576,-0.053679901906328556 +166420,832.1000000065577,-0.05367975859443341 +166421,832.1050000065578,-0.05367961526177398 +166422,832.1100000065579,-0.05367947190834306 +166423,832.115000006558,-0.05367932853413351 +166424,832.1200000065581,-0.05367918513913814 +166425,832.1250000065583,-0.05367904172334977 +166426,832.1300000065584,-0.05367889828676123 +166427,832.1350000065585,-0.05367875482936532 +166428,832.1400000065586,-0.053678611351154856 +166429,832.1450000065587,-0.05367846785212264 +166430,832.1500000065588,-0.05367832433226148 +166431,832.1550000065589,-0.05367818079156419 +166432,832.160000006559,-0.05367803723002353 +166433,832.1650000065591,-0.053677893647632334 +166434,832.1700000065592,-0.05367775004438336 +166435,832.1750000065593,-0.05367760642026941 +166436,832.1800000065595,-0.05367746277528328 +166437,832.1850000065596,-0.05367731910941771 +166438,832.1900000065597,-0.0536771754226655 +166439,832.1950000065598,-0.053677031715019426 +166440,832.2000000065599,-0.05367688798647225 +166441,832.20500000656,-0.05367674423701674 +166442,832.2100000065601,-0.05367660046664565 +166443,832.2150000065602,-0.053676456675351744 +166444,832.2200000065603,-0.053676312863127774 +166445,832.2250000065604,-0.05367616902996649 +166446,832.2300000065605,-0.05367602517586065 +166447,832.2350000065607,-0.053675881300802974 +166448,832.2400000065608,-0.05367573740478622 +166449,832.2450000065609,-0.053675593487803125 +166450,832.250000006561,-0.05367544954984642 +166451,832.2550000065611,-0.053675305590908835 +166452,832.2600000065612,-0.053675161610983096 +166453,832.2650000065613,-0.053675017610061916 +166454,832.2700000065614,-0.05367487358813803 +166455,832.2750000065615,-0.05367472954520414 +166456,832.2800000065616,-0.05367458548125298 +166457,832.2850000065617,-0.053674441396277216 +166458,832.2900000065619,-0.053674297290269596 +166459,832.295000006562,-0.0536741531632228 +166460,832.3000000065621,-0.05367400901512953 +166461,832.3050000065622,-0.05367386484598248 +166462,832.3100000065623,-0.05367372065577433 +166463,832.3150000065624,-0.053673576444497786 +166464,832.3200000065625,-0.053673432212145517 +166465,832.3250000065626,-0.05367328795871021 +166466,832.3300000065627,-0.05367314368418454 +166467,832.3350000065628,-0.05367299938856118 +166468,832.340000006563,-0.0536728550718328 +166469,832.345000006563,-0.05367271073399206 +166470,832.3500000065632,-0.053672566375031636 +166471,832.3550000065633,-0.053672421994944174 +166472,832.3600000065634,-0.053672277593722326 +166473,832.3650000065635,-0.05367213317135875 +166474,832.3700000065636,-0.0536719887278461 +166475,832.3750000065637,-0.05367184426317701 +166476,832.3800000065638,-0.053671699777344116 +166477,832.3850000065639,-0.053671555270340066 +166478,832.390000006564,-0.05367141074215749 +166479,832.3950000065641,-0.05367126619278902 +166480,832.4000000065643,-0.05367112162222728 +166481,832.4050000065644,-0.05367097703046488 +166482,832.4100000065645,-0.053670832417494464 +166483,832.4150000065646,-0.053670687783308635 +166484,832.4200000065647,-0.053670543127900004 +166485,832.4250000065648,-0.05367039845126117 +166486,832.4300000065649,-0.053670253753384745 +166487,832.435000006565,-0.053670109034263336 +166488,832.4400000065651,-0.053669964293889524 +166489,832.4450000065652,-0.053669819532255914 +166490,832.4500000065653,-0.0536696747493551 +166491,832.4550000065655,-0.053669529945179664 +166492,832.4600000065656,-0.0536693851197222 +166493,832.4650000065657,-0.05366924027297526 +166494,832.4700000065658,-0.05366909540493144 +166495,832.4750000065659,-0.053668950515583305 +166496,832.480000006566,-0.053668805604923424 +166497,832.4850000065661,-0.05366866067294436 +166498,832.4900000065662,-0.053668515719638675 +166499,832.4950000065663,-0.053668370744998924 +166500,832.5000000065664,-0.05366822574901767 +166501,832.5050000065665,-0.053668080731687454 +166502,832.5100000065667,-0.05366793569300083 +166503,832.5150000065668,-0.05366779063295033 +166504,832.5200000065669,-0.053667645551528496 +166505,832.525000006567,-0.05366750044872787 +166506,832.5300000065671,-0.05366735532454098 +166507,832.5350000065672,-0.053667210178960346 +166508,832.5400000065673,-0.05366706501197851 +166509,832.5450000065674,-0.053666919823587976 +166510,832.5500000065675,-0.05366677461378127 +166511,832.5550000065676,-0.053666629382550894 +166512,832.5600000065677,-0.05366648412988937 +166513,832.5650000065679,-0.053666338855789204 +166514,832.570000006568,-0.05366619356024289 +166515,832.5750000065681,-0.05366604824324293 +166516,832.5800000065682,-0.05366590290478182 +166517,832.5850000065683,-0.053665757544852054 +166518,832.5900000065684,-0.05366561216344611 +166519,832.5950000065685,-0.05366546676055649 +166520,832.6000000065686,-0.05366532133617565 +166521,832.6050000065687,-0.05366517589029608 +166522,832.6100000065688,-0.053665030422910265 +166523,832.615000006569,-0.05366488493401064 +166524,832.6200000065691,-0.05366473942358971 +166525,832.6250000065692,-0.05366459389163991 +166526,832.6300000065693,-0.0536644483381537 +166527,832.6350000065694,-0.05366430276312355 +166528,832.6400000065695,-0.05366415716654188 +166529,832.6450000065696,-0.053664011548401176 +166530,832.6500000065697,-0.053663865908693854 +166531,832.6550000065698,-0.05366372024741236 +166532,832.6600000065699,-0.053663574564549135 +166533,832.66500000657,-0.053663428860096604 +166534,832.6700000065701,-0.05366328313404719 +166535,832.6750000065703,-0.053663137386393334 +166536,832.6800000065704,-0.05366299161712745 +166537,832.6850000065705,-0.05366284582624195 +166538,832.6900000065706,-0.05366270001372925 +166539,832.6950000065707,-0.05366255417958176 +166540,832.7000000065708,-0.0536624083237919 +166541,832.7050000065709,-0.05366226244635205 +166542,832.710000006571,-0.05366211654725461 +166543,832.7150000065711,-0.05366197062649198 +166544,832.7200000065712,-0.05366182468405656 +166545,832.7250000065713,-0.05366167871994072 +166546,832.7300000065715,-0.05366153273413685 +166547,832.7350000065716,-0.053661386726637346 +166548,832.7400000065717,-0.05366124069743457 +166549,832.7450000065718,-0.05366109464652088 +166550,832.7500000065719,-0.05366094857388866 +166551,832.755000006572,-0.05366080247953028 +166552,832.7600000065721,-0.05366065636343808 +166553,832.7650000065722,-0.053660510225604426 +166554,832.7700000065723,-0.05366036406602168 +166555,832.7750000065724,-0.0536602178846822 +166556,832.7800000065725,-0.053660071681578304 +166557,832.7850000065727,-0.053659925456702354 +166558,832.7900000065728,-0.05365977921004668 +166559,832.7950000065729,-0.05365963294160362 +166560,832.800000006573,-0.053659486651365496 +166561,832.8050000065731,-0.053659340339324645 +166562,832.8100000065732,-0.05365919400547338 +166563,832.8150000065733,-0.05365904764980404 +166564,832.8200000065734,-0.05365890127230891 +166565,832.8250000065735,-0.05365875487298032 +166566,832.8300000065736,-0.05365860845181059 +166567,832.8350000065738,-0.053658462008792 +166568,832.8400000065739,-0.053658315543916875 +166569,832.845000006574,-0.05365816905717748 +166570,832.8500000065741,-0.05365802254856612 +166571,832.8550000065742,-0.053657876018075104 +166572,832.8600000065743,-0.05365772946569669 +166573,832.8650000065744,-0.053657582891423174 +166574,832.8700000065745,-0.05365743629524682 +166575,832.8750000065746,-0.05365728967715992 +166576,832.8800000065747,-0.05365714303715474 +166577,832.8850000065748,-0.05365699637522353 +166578,832.890000006575,-0.05365684969135856 +166579,832.8950000065751,-0.053656702985552085 +166580,832.9000000065752,-0.05365655625779637 +166581,832.9050000065753,-0.053656409508083654 +166582,832.9100000065754,-0.05365626273640619 +166583,832.9150000065755,-0.05365611594275623 +166584,832.9200000065756,-0.053655969127126 +166585,832.9250000065757,-0.05365582228950774 +166586,832.9300000065758,-0.053655675429893676 +166587,832.9350000065759,-0.05365552854827604 +166588,832.940000006576,-0.05365538164464705 +166589,832.9450000065762,-0.053655234718998926 +166590,832.9500000065763,-0.05365508777132389 +166591,832.9550000065764,-0.05365494080161415 +166592,832.9600000065765,-0.05365479380986191 +166593,832.9650000065766,-0.0536546467960594 +166594,832.9700000065767,-0.05365449976019877 +166595,832.9750000065768,-0.053654352702272264 +166596,832.9800000065769,-0.05365420562227206 +166597,832.985000006577,-0.05365405852019033 +166598,832.9900000065771,-0.053653911396019285 +166599,832.9950000065772,-0.053653764249751094 +166600,833.0000000065774,-0.05365361708137793 +166601,833.0050000065775,-0.053653469890891974 +166602,833.0100000065776,-0.053653322678285376 +166603,833.0150000065777,-0.053653175443550326 +166604,833.0200000065778,-0.05365302818667898 +166605,833.0250000065779,-0.053652880907663486 +166606,833.030000006578,-0.053652733606496 +166607,833.0350000065781,-0.05365258628316868 +166608,833.0400000065782,-0.053652438937673665 +166609,833.0450000065783,-0.053652291570003105 +166610,833.0500000065784,-0.053652144180149124 +166611,833.0550000065786,-0.05365199676810387 +166612,833.0600000065787,-0.053651849333859476 +166613,833.0650000065788,-0.053651701877408045 +166614,833.0700000065789,-0.053651554398741724 +166615,833.075000006579,-0.053651406897852624 +166616,833.0800000065791,-0.05365125937473285 +166617,833.0850000065792,-0.053651111829374515 +166618,833.0900000065793,-0.05365096426176975 +166619,833.0950000065794,-0.05365081667191062 +166620,833.1000000065795,-0.053650669059789255 +166621,833.1050000065796,-0.05365052142539773 +166622,833.1100000065798,-0.053650373768728145 +166623,833.1150000065799,-0.05365022608977259 +166624,833.12000000658,-0.05365007838852314 +166625,833.1250000065801,-0.053649930664971875 +166626,833.1300000065802,-0.05364978291911088 +166627,833.1350000065803,-0.05364963515093221 +166628,833.1400000065804,-0.053649487360427954 +166629,833.1450000065805,-0.05364933954759016 +166630,833.1500000065806,-0.0536491917124109 +166631,833.1550000065807,-0.05364904385488221 +166632,833.1600000065808,-0.053648895974996155 +166633,833.165000006581,-0.05364874807274478 +166634,833.1700000065811,-0.053648600148120125 +166635,833.1750000065812,-0.05364845220111424 +166636,833.1800000065813,-0.05364830423171915 +166637,833.1850000065814,-0.05364815623992689 +166638,833.1900000065815,-0.05364800822572949 +166639,833.1950000065816,-0.053647860189118976 +166640,833.2000000065817,-0.05364771213008736 +166641,833.2050000065818,-0.05364756404862667 +166642,833.2100000065819,-0.05364741594472889 +166643,833.215000006582,-0.05364726781838606 +166644,833.2200000065822,-0.053647119669590154 +166645,833.2250000065823,-0.0536469714983332 +166646,833.2300000065824,-0.05364682330460718 +166647,833.2350000065825,-0.053646675088404094 +166648,833.2400000065826,-0.05364652684971593 +166649,833.2450000065827,-0.053646378588534646 +166650,833.2500000065828,-0.05364623030485225 +166651,833.2550000065829,-0.05364608199866072 +166652,833.260000006583,-0.053645933669952 +166653,833.2650000065831,-0.05364578531871808 +166654,833.2700000065832,-0.05364563694495093 +166655,833.2750000065834,-0.05364548854864248 +166656,833.2800000065835,-0.05364534012978472 +166657,833.2850000065836,-0.053645191688369565 +166658,833.2900000065837,-0.053645043224389 +166659,833.2950000065838,-0.053644894737834944 +166660,833.3000000065839,-0.05364474622869935 +166661,833.305000006584,-0.05364459769697415 +166662,833.3100000065841,-0.05364444914265127 +166663,833.3150000065842,-0.053644300565722634 +166664,833.3200000065843,-0.05364415196618018 +166665,833.3250000065844,-0.05364400334401582 +166666,833.3300000065846,-0.05364385469922146 +166667,833.3350000065847,-0.05364370603178902 +166668,833.3400000065848,-0.05364355734171042 +166669,833.3450000065849,-0.05364340862897754 +166670,833.350000006585,-0.05364325989358228 +166671,833.3550000065851,-0.053643111135516564 +166672,833.3600000065852,-0.053642962354772256 +166673,833.3650000065853,-0.05364281355134125 +166674,833.3700000065854,-0.05364266472521543 +166675,833.3750000065855,-0.053642515876386666 +166676,833.3800000065856,-0.05364236700484685 +166677,833.3850000065858,-0.053642218110587836 +166678,833.3900000065859,-0.0536420691936015 +166679,833.395000006586,-0.053641920253879705 +166680,833.4000000065861,-0.0536417712914143 +166681,833.4050000065862,-0.05364162230619715 +166682,833.4100000065863,-0.05364147329822011 +166683,833.4150000065864,-0.053641324267475 +166684,833.4200000065865,-0.05364117521395369 +166685,833.4250000065866,-0.053641026137648 +166686,833.4300000065867,-0.05364087703854978 +166687,833.4350000065868,-0.053640727916650845 +166688,833.440000006587,-0.053640578771943025 +166689,833.4450000065871,-0.053640429604418144 +166690,833.4500000065872,-0.053640280414068015 +166691,833.4550000065873,-0.053640131200884456 +166692,833.4600000065874,-0.05363998196485927 +166693,833.4650000065875,-0.053639832705984276 +166694,833.4700000065876,-0.05363968342425126 +166695,833.4750000065877,-0.05363953411965203 +166696,833.4800000065878,-0.05363938479217836 +166697,833.4850000065879,-0.053639235441822065 +166698,833.490000006588,-0.05363908606857491 +166699,833.4950000065882,-0.05363893667242869 +166700,833.5000000065883,-0.053638787253375154 +166701,833.5050000065884,-0.0536386378114061 +166702,833.5100000065885,-0.05363848834651329 +166703,833.5150000065886,-0.053638338858688475 +166704,833.5200000065887,-0.05363818934792343 +166705,833.5250000065888,-0.053638039814209906 +166706,833.5300000065889,-0.05363789025753966 +166707,833.535000006589,-0.053637740677904416 +166708,833.5400000065891,-0.05363759107529595 +166709,833.5450000065892,-0.053637441449705975 +166710,833.5500000065894,-0.05363729180112624 +166711,833.5550000065895,-0.05363714212954847 +166712,833.5600000065896,-0.053636992434964385 +166713,833.5650000065897,-0.053636842717365726 +166714,833.5700000065898,-0.053636692976744185 +166715,833.5750000065899,-0.0536365432130915 +166716,833.58000000659,-0.053636393426399365 +166717,833.5850000065901,-0.0536362436166595 +166718,833.5900000065902,-0.05363609378386359 +166719,833.5950000065903,-0.05363594392800333 +166720,833.6000000065904,-0.05363579404907043 +166721,833.6050000065906,-0.05363564414705657 +166722,833.6100000065907,-0.05363549422195343 +166723,833.6150000065908,-0.053635344273752696 +166724,833.6200000065909,-0.05363519430244604 +166725,833.625000006591,-0.05363504430802515 +166726,833.6300000065911,-0.05363489429048167 +166727,833.6350000065912,-0.05363474424980727 +166728,833.6400000065913,-0.053634594185993624 +166729,833.6450000065914,-0.05363444409903237 +166730,833.6500000065915,-0.053634293988915165 +166731,833.6550000065916,-0.05363414385563364 +166732,833.6600000065918,-0.053633993699179455 +166733,833.6650000065919,-0.053633843519544255 +166734,833.670000006592,-0.053633693316719674 +166735,833.6750000065921,-0.053633543090697317 +166736,833.6800000065922,-0.053633392841468834 +166737,833.6850000065923,-0.053633242569025824 +166738,833.6900000065924,-0.053633092273359925 +166739,833.6950000065925,-0.05363294195446274 +166740,833.7000000065926,-0.05363279161232588 +166741,833.7050000065927,-0.053632641246940935 +166742,833.7100000065928,-0.053632490858299534 +166743,833.715000006593,-0.05363234044639324 +166744,833.7200000065931,-0.053632190011213665 +166745,833.7250000065932,-0.053632039552752406 +166746,833.7300000065933,-0.05363188907100101 +166747,833.7350000065934,-0.0536317385659511 +166748,833.7400000065935,-0.05363158803759421 +166749,833.7450000065936,-0.05363143748592194 +166750,833.7500000065937,-0.053631286910925835 +166751,833.7550000065938,-0.05363113631259748 +166752,833.7600000065939,-0.0536309856909284 +166753,833.765000006594,-0.05363083504591017 +166754,833.7700000065942,-0.053630684377534335 +166755,833.7750000065943,-0.053630533685792445 +166756,833.7800000065944,-0.05363038297067602 +166757,833.7850000065945,-0.053630232232176625 +166758,833.7900000065946,-0.05363008147028577 +166759,833.7950000065947,-0.05362993068499499 +166760,833.8000000065948,-0.0536297798762958 +166761,833.8050000065949,-0.05362962904417974 +166762,833.810000006595,-0.0536294781886383 +166763,833.8150000065951,-0.053629327309663 +166764,833.8200000065953,-0.05362917640724534 +166765,833.8250000065954,-0.05362902548137683 +166766,833.8300000065955,-0.05362887453204897 +166767,833.8350000065956,-0.053628723559253244 +166768,833.8400000065957,-0.05362857256298115 +166769,833.8450000065958,-0.05362842154322415 +166770,833.8500000065959,-0.05362827049997374 +166771,833.855000006596,-0.0536281194332214 +166772,833.8600000065961,-0.0536279683429586 +166773,833.8650000065962,-0.0536278172291768 +166774,833.8700000065963,-0.05362766609186747 +166775,833.8750000065965,-0.05362751493102205 +166776,833.8800000065966,-0.05362736374663202 +166777,833.8850000065967,-0.05362721253868881 +166778,833.8900000065968,-0.053627061307183865 +166779,833.8950000065969,-0.053626910052108644 +166780,833.900000006597,-0.05362675877345457 +166781,833.9050000065971,-0.053626607471213075 +166782,833.9100000065972,-0.05362645614537558 +166783,833.9150000065973,-0.05362630479593352 +166784,833.9200000065974,-0.05362615342287832 +166785,833.9250000065975,-0.05362600202620138 +166786,833.9300000065977,-0.053625850605894115 +166787,833.9350000065978,-0.05362569916194793 +166788,833.9400000065979,-0.05362554769435424 +166789,833.945000006598,-0.053625396203104414 +166790,833.9500000065981,-0.05362524468818987 +166791,833.9550000065982,-0.05362509314960198 +166792,833.9600000065983,-0.05362494158733213 +166793,833.9650000065984,-0.05362479000137171 +166794,833.9700000065985,-0.05362463839171208 +166795,833.9750000065986,-0.05362448675834463 +166796,833.9800000065987,-0.05362433510126071 +166797,833.9850000065989,-0.0536241834204517 +166798,833.990000006599,-0.053624031715908946 +166799,833.9950000065991,-0.053623879987623795 +166800,834.0000000065992,-0.05362372823558761 +166801,834.0050000065993,-0.053623576459791725 +166802,834.0100000065994,-0.05362342466022747 +166803,834.0150000065995,-0.053623272836886206 +166804,834.0200000065996,-0.05362312098975923 +166805,834.0250000065997,-0.053622969118837904 +166806,834.0300000065998,-0.053622817224113536 +166807,834.0350000066,-0.05362266530557743 +166808,834.0400000066,-0.05362251336322092 +166809,834.0450000066002,-0.05362236139703531 +166810,834.0500000066003,-0.053622209407011893 +166811,834.0550000066004,-0.053622057393141985 +166812,834.0600000066005,-0.053621905355416874 +166813,834.0650000066006,-0.05362175329382785 +166814,834.0700000066007,-0.053621601208366204 +166815,834.0750000066008,-0.05362144909902321 +166816,834.0800000066009,-0.053621296965790155 +166817,834.085000006601,-0.0536211448086583 +166818,834.0900000066011,-0.05362099262761892 +166819,834.0950000066013,-0.05362084042266328 +166820,834.1000000066014,-0.05362068819378264 +166821,834.1050000066015,-0.05362053594096825 +166822,834.1100000066016,-0.053620383664211374 +166823,834.1150000066017,-0.05362023136350325 +166824,834.1200000066018,-0.05362007903883513 +166825,834.1250000066019,-0.053619926690198244 +166826,834.130000006602,-0.05361977431758382 +166827,834.1350000066021,-0.05361962192098308 +166828,834.1400000066022,-0.05361946950038727 +166829,834.1450000066023,-0.05361931705578759 +166830,834.1500000066025,-0.053619164587175264 +166831,834.1550000066026,-0.05361901209454151 +166832,834.1600000066027,-0.0536188595778775 +166833,834.1650000066028,-0.05361870703717447 +166834,834.1700000066029,-0.05361855447242361 +166835,834.175000006603,-0.053618401883616114 +166836,834.1800000066031,-0.053618249270743164 +166837,834.1850000066032,-0.05361809663379594 +166838,834.1900000066033,-0.05361794397276563 +166839,834.1950000066034,-0.0536177912876434 +166840,834.2000000066035,-0.053617638578420425 +166841,834.2050000066037,-0.053617485845087874 +166842,834.2100000066038,-0.053617333087636894 +166843,834.2150000066039,-0.05361718030605866 +166844,834.220000006604,-0.053617027500344305 +166845,834.2250000066041,-0.05361687467048499 +166846,834.2300000066042,-0.053616721816471855 +166847,834.2350000066043,-0.05361656893829604 +166848,834.2400000066044,-0.053616416035948675 +166849,834.2450000066045,-0.053616263109420886 +166850,834.2500000066046,-0.053616110158703795 +166851,834.2550000066047,-0.053615957183788525 +166852,834.2600000066049,-0.0536158041846662 +166853,834.265000006605,-0.05361565116132792 +166854,834.2700000066051,-0.05361549811376479 +166855,834.2750000066052,-0.05361534504196792 +166856,834.2800000066053,-0.053615191945928405 +166857,834.2850000066054,-0.053615038825637326 +166858,834.2900000066055,-0.05361488568108579 +166859,834.2950000066056,-0.05361473251226488 +166860,834.3000000066057,-0.053614579319165655 +166861,834.3050000066058,-0.0536144261017792 +166862,834.310000006606,-0.05361427286009659 +166863,834.315000006606,-0.053614119594108875 +166864,834.3200000066062,-0.05361396630380712 +166865,834.3250000066063,-0.05361381298918239 +166866,834.3300000066064,-0.05361365965022573 +166867,834.3350000066065,-0.05361350628692819 +166868,834.3400000066066,-0.0536133528992808 +166869,834.3450000066067,-0.05361319948727462 +166870,834.3500000066068,-0.05361304605090065 +166871,834.3550000066069,-0.05361289259014995 +166872,834.360000006607,-0.05361273910501353 +166873,834.3650000066071,-0.05361258559548242 +166874,834.3700000066073,-0.05361243206154761 +166875,834.3750000066074,-0.05361227850320012 +166876,834.3800000066075,-0.05361212492043096 +166877,834.3850000066076,-0.05361197131323112 +166878,834.3900000066077,-0.053611817681591616 +166879,834.3950000066078,-0.053611664025503415 +166880,834.4000000066079,-0.05361151034495752 +166881,834.405000006608,-0.0536113566399449 +166882,834.4100000066081,-0.05361120291045654 +166883,834.4150000066082,-0.05361104915648342 +166884,834.4200000066083,-0.05361089537801649 +166885,834.4250000066085,-0.05361074157504673 +166886,834.4300000066086,-0.05361058774756508 +166887,834.4350000066087,-0.05361043389556251 +166888,834.4400000066088,-0.05361028001902996 +166889,834.4450000066089,-0.05361012611795837 +166890,834.450000006609,-0.05360997219233869 +166891,834.4550000066091,-0.05360981824216185 +166892,834.4600000066092,-0.05360966426741878 +166893,834.4650000066093,-0.05360951026810041 +166894,834.4700000066094,-0.05360935624419766 +166895,834.4750000066095,-0.05360920219570144 +166896,834.4800000066097,-0.05360904812260267 +166897,834.4850000066098,-0.05360889402489225 +166898,834.4900000066099,-0.053608739902561084 +166899,834.49500000661,-0.053608585755600076 +166900,834.5000000066101,-0.0536084315840001 +166901,834.5050000066102,-0.05360827738775207 +166902,834.5100000066103,-0.053608123166846856 +166903,834.5150000066104,-0.05360796892127532 +166904,834.5200000066105,-0.05360781465102835 +166905,834.5250000066106,-0.053607660356096834 +166906,834.5300000066107,-0.05360750603647161 +166907,834.5350000066109,-0.05360735169214354 +166908,834.540000006611,-0.05360719732310349 +166909,834.5450000066111,-0.05360704292934231 +166910,834.5500000066112,-0.05360688851085084 +166911,834.5550000066113,-0.05360673406761991 +166912,834.5600000066114,-0.05360657959964039 +166913,834.5650000066115,-0.053606425106903076 +166914,834.5700000066116,-0.053606270589398805 +166915,834.5750000066117,-0.05360611604711841 +166916,834.5800000066118,-0.053605961480052686 +166917,834.585000006612,-0.05360580688819246 +166918,834.5900000066121,-0.05360565227152854 +166919,834.5950000066122,-0.05360549763005173 +166920,834.6000000066123,-0.05360534296375282 +166921,834.6050000066124,-0.053605188272622596 +166922,834.6100000066125,-0.053605033556651874 +166923,834.6150000066126,-0.05360487881583141 +166924,834.6200000066127,-0.053604724050152 +166925,834.6250000066128,-0.053604569259604405 +166926,834.6300000066129,-0.0536044144441794 +166927,834.635000006613,-0.05360425960386775 +166928,834.6400000066131,-0.053604104738660216 +166929,834.6450000066133,-0.05360394984854754 +166930,834.6500000066134,-0.05360379493352049 +166931,834.6550000066135,-0.053603639993569804 +166932,834.6600000066136,-0.05360348502868621 +166933,834.6650000066137,-0.05360333003886046 +166934,834.6700000066138,-0.05360317502408329 +166935,834.6750000066139,-0.05360301998434541 +166936,834.680000006614,-0.05360286491963754 +166937,834.6850000066141,-0.05360270982995041 +166938,834.6900000066142,-0.053602554715274725 +166939,834.6950000066144,-0.05360239957560119 +166940,834.7000000066145,-0.05360224441092049 +166941,834.7050000066146,-0.05360208922122335 +166942,834.7100000066147,-0.05360193400650046 +166943,834.7150000066148,-0.053601778766742485 +166944,834.7200000066149,-0.05360162350194013 +166945,834.725000006615,-0.05360146821208406 +166946,834.7300000066151,-0.053601312897164945 +166947,834.7350000066152,-0.053601157557173464 +166948,834.7400000066153,-0.05360100219210028 +166949,834.7450000066154,-0.053600846801936046 +166950,834.7500000066156,-0.0536006913866714 +166951,834.7550000066157,-0.05360053594629702 +166952,834.7600000066158,-0.053600380480803525 +166953,834.7650000066159,-0.05360022499018156 +166954,834.770000006616,-0.05360006947442176 +166955,834.7750000066161,-0.05359991393351476 +166956,834.7800000066162,-0.05359975836745117 +166957,834.7850000066163,-0.05359960277622163 +166958,834.7900000066164,-0.05359944715981674 +166959,834.7950000066165,-0.05359929151822711 +166960,834.8000000066166,-0.05359913585144334 +166961,834.8050000066168,-0.053598980159456036 +166962,834.8100000066169,-0.05359882444225579 +166963,834.815000006617,-0.0535986686998332 +166964,834.8200000066171,-0.053598512932178835 +166965,834.8250000066172,-0.05359835713928329 +166966,834.8300000066173,-0.05359820132113714 +166967,834.8350000066174,-0.05359804547773095 +166968,834.8400000066175,-0.053597889609055274 +166969,834.8450000066176,-0.053597733715100675 +166970,834.8500000066177,-0.05359757779585772 +166971,834.8550000066178,-0.053597421851316954 +166972,834.860000006618,-0.05359726588146893 +166973,834.8650000066181,-0.053597109886304166 +166974,834.8700000066182,-0.05359695386581322 +166975,834.8750000066183,-0.05359679781998661 +166976,834.8800000066184,-0.053596641748814865 +166977,834.8850000066185,-0.05359648565228851 +166978,834.8900000066186,-0.05359632953039805 +166979,834.8950000066187,-0.053596173383134 +166980,834.9000000066188,-0.05359601721048688 +166981,834.9050000066189,-0.05359586101244718 +166982,834.910000006619,-0.05359570478900538 +166983,834.9150000066192,-0.053595548540152 +166984,834.9200000066193,-0.05359539226587749 +166985,834.9250000066194,-0.05359523596617237 +166986,834.9300000066195,-0.05359507964102708 +166987,834.9350000066196,-0.05359492329043212 +166988,834.9400000066197,-0.05359476691437794 +166989,834.9450000066198,-0.053594610512855 +166990,834.9500000066199,-0.053594454085853754 +166991,834.95500000662,-0.053594297633364665 +166992,834.9600000066201,-0.05359414115537817 +166993,834.9650000066202,-0.05359398465188471 +166994,834.9700000066204,-0.05359382812287473 +166995,834.9750000066205,-0.05359367156833865 +166996,834.9800000066206,-0.05359351498826691 +166997,834.9850000066207,-0.05359335838264991 +166998,834.9900000066208,-0.05359320175147808 +166999,834.9950000066209,-0.053593045094741824 +167000,835.000000006621,-0.05359288841243155 +167001,835.0050000066211,-0.053592731704537655 +167002,835.0100000066212,-0.05359257497105054 +167003,835.0150000066213,-0.05359241821196059 +167004,835.0200000066214,-0.05359226142725821 +167005,835.0250000066216,-0.053592104616933756 +167006,835.0300000066217,-0.05359194778097761 +167007,835.0350000066218,-0.05359179091938015 +167008,835.0400000066219,-0.05359163403213172 +167009,835.045000006622,-0.05359147711922271 +167010,835.0500000066221,-0.05359132018064345 +167011,835.0550000066222,-0.053591163216384304 +167012,835.0600000066223,-0.05359100622643561 +167013,835.0650000066224,-0.053590849210787724 +167014,835.0700000066225,-0.053590692169430965 +167015,835.0750000066226,-0.05359053510235566 +167016,835.0800000066228,-0.05359037800955214 +167017,835.0850000066229,-0.05359022089101073 +167018,835.090000006623,-0.05359006374672174 +167019,835.0950000066231,-0.05358990657667548 +167020,835.1000000066232,-0.05358974938086223 +167021,835.1050000066233,-0.05358959215927233 +167022,835.1100000066234,-0.05358943491189605 +167023,835.1150000066235,-0.05358927763872369 +167024,835.1200000066236,-0.05358912033974552 +167025,835.1250000066237,-0.05358896301495183 +167026,835.1300000066238,-0.053588805664332884 +167027,835.135000006624,-0.05358864828787895 +167028,835.1400000066241,-0.05358849088558031 +167029,835.1450000066242,-0.05358833345742721 +167030,835.1500000066243,-0.0535881760034099 +167031,835.1550000066244,-0.053588018523518646 +167032,835.1600000066245,-0.05358786101774366 +167033,835.1650000066246,-0.0535877034860752 +167034,835.1700000066247,-0.053587545928503504 +167035,835.1750000066248,-0.053587388345018784 +167036,835.1800000066249,-0.05358723073561126 +167037,835.185000006625,-0.05358707310027116 +167038,835.1900000066252,-0.0535869154389887 +167039,835.1950000066253,-0.05358675775175408 +167040,835.2000000066254,-0.053586600038557496 +167041,835.2050000066255,-0.05358644229938915 +167042,835.2100000066256,-0.05358628453423923 +167043,835.2150000066257,-0.05358612674309792 +167044,835.2200000066258,-0.053585968925955414 +167045,835.2250000066259,-0.05358581108280188 +167046,835.230000006626,-0.05358565321362748 +167047,835.2350000066261,-0.05358549531842239 +167048,835.2400000066262,-0.053585337397176774 +167049,835.2450000066264,-0.05358517944988077 +167050,835.2500000066265,-0.053585021476524546 +167051,835.2550000066266,-0.05358486347709824 +167052,835.2600000066267,-0.05358470545159199 +167053,835.2650000066268,-0.053584547399995915 +167054,835.2700000066269,-0.05358438932230017 +167055,835.275000006627,-0.053584231218494864 +167056,835.2800000066271,-0.053584073088570106 +167057,835.2850000066272,-0.05358391493251604 +167058,835.2900000066273,-0.05358375675032275 +167059,835.2950000066274,-0.05358359854198034 +167060,835.3000000066276,-0.05358344030747891 +167061,835.3050000066277,-0.05358328204680855 +167062,835.3100000066278,-0.05358312375995935 +167063,835.3150000066279,-0.05358296544692139 +167064,835.320000006628,-0.05358280710768476 +167065,835.3250000066281,-0.053582648742239516 +167066,835.3300000066282,-0.053582490350575725 +167067,835.3350000066283,-0.05358233193268345 +167068,835.3400000066284,-0.053582173488552744 +167069,835.3450000066285,-0.05358201501817367 +167070,835.3500000066286,-0.053581856521536256 +167071,835.3550000066288,-0.053581697998630544 +167072,835.3600000066289,-0.05358153944944658 +167073,835.365000006629,-0.053581380873974384 +167074,835.3700000066291,-0.05358122227220397 +167075,835.3750000066292,-0.05358106364412538 +167076,835.3800000066293,-0.05358090498972861 +167077,835.3850000066294,-0.053580746309003675 +167078,835.3900000066295,-0.05358058760194058 +167079,835.3950000066296,-0.05358042886852931 +167080,835.4000000066297,-0.05358027010875986 +167081,835.4050000066298,-0.053580111322622234 +167082,835.41000000663,-0.053579952510106395 +167083,835.4150000066301,-0.05357979367120232 +167084,835.4200000066302,-0.05357963480589999 +167085,835.4250000066303,-0.05357947591418936 +167086,835.4300000066304,-0.0535793169960604 +167087,835.4350000066305,-0.05357915805150306 +167088,835.4400000066306,-0.05357899908050728 +167089,835.4450000066307,-0.05357884008306302 +167090,835.4500000066308,-0.05357868105916021 +167091,835.4550000066309,-0.053578522008788765 +167092,835.460000006631,-0.05357836293193864 +167093,835.4650000066312,-0.053578203828599756 +167094,835.4700000066313,-0.053578044698762026 +167095,835.4750000066314,-0.05357788554241536 +167096,835.4800000066315,-0.05357772635954966 +167097,835.4850000066316,-0.05357756715015483 +167098,835.4900000066317,-0.05357740791422077 +167099,835.4950000066318,-0.053577248651737366 +167100,835.5000000066319,-0.05357708936269451 +167101,835.505000006632,-0.053576930047082076 +167102,835.5100000066321,-0.05357677070488993 +167103,835.5150000066322,-0.05357661133610794 +167104,835.5200000066324,-0.053576451940726 +167105,835.5250000066325,-0.053576292518733935 +167106,835.5300000066326,-0.053576133070121615 +167107,835.5350000066327,-0.053575973594878874 +167108,835.5400000066328,-0.053575814092995555 +167109,835.5450000066329,-0.05357565456446152 +167110,835.550000006633,-0.05357549500926656 +167111,835.5550000066331,-0.05357533542740053 +167112,835.5600000066332,-0.05357517581885324 +167113,835.5650000066333,-0.05357501618361451 +167114,835.5700000066334,-0.05357485652167414 +167115,835.5750000066336,-0.053574696833021934 +167116,835.5800000066337,-0.053574537117647696 +167117,835.5850000066338,-0.053574377375541216 +167118,835.5900000066339,-0.0535742176066923 +167119,835.595000006634,-0.05357405781109071 +167120,835.6000000066341,-0.053573897988726214 +167121,835.6050000066342,-0.0535737381395886 +167122,835.6100000066343,-0.053573578263667626 +167123,835.6150000066344,-0.05357341836095306 +167124,835.6200000066345,-0.05357325843143465 +167125,835.6250000066347,-0.05357309847510216 +167126,835.6300000066348,-0.05357293849194531 +167127,835.6350000066349,-0.053572778481953846 +167128,835.640000006635,-0.0535726184451175 +167129,835.6450000066351,-0.053572458381426005 +167130,835.6500000066352,-0.05357229829086908 +167131,835.6550000066353,-0.05357213817343646 +167132,835.6600000066354,-0.05357197802911782 +167133,835.6650000066355,-0.05357181785790289 +167134,835.6700000066356,-0.05357165765978135 +167135,835.6750000066357,-0.053571497434742925 +167136,835.6800000066359,-0.05357133718277727 +167137,835.685000006636,-0.05357117690387409 +167138,835.6900000066361,-0.05357101659802307 +167139,835.6950000066362,-0.05357085626521385 +167140,835.7000000066363,-0.05357069590543612 +167141,835.7050000066364,-0.05357053551867955 +167142,835.7100000066365,-0.05357037510493377 +167143,835.7150000066366,-0.05357021466418846 +167144,835.7200000066367,-0.05357005419643324 +167145,835.7250000066368,-0.053569893701657746 +167146,835.7300000066369,-0.05356973317985163 +167147,835.735000006637,-0.05356957263100451 +167148,835.7400000066372,-0.053569412055106014 +167149,835.7450000066373,-0.05356925145214575 +167150,835.7500000066374,-0.05356909082211334 +167151,835.7550000066375,-0.05356893016499838 +167152,835.7600000066376,-0.053568769480790465 +167153,835.7650000066377,-0.05356860876947921 +167154,835.7700000066378,-0.05356844803105419 +167155,835.7750000066379,-0.05356828726550499 +167156,835.780000006638,-0.05356812647282119 +167157,835.7850000066381,-0.05356796565299236 +167158,835.7900000066383,-0.053567804806008056 +167159,835.7950000066384,-0.05356764393185786 +167160,835.8000000066385,-0.053567483030531306 +167161,835.8050000066386,-0.05356732210201797 +167162,835.8100000066387,-0.05356716114630737 +167163,835.8150000066388,-0.053567000163389056 +167164,835.8200000066389,-0.05356683915325256 +167165,835.825000006639,-0.05356667811588742 +167166,835.8300000066391,-0.05356651705128313 +167167,835.8350000066392,-0.053566355959429234 +167168,835.8400000066393,-0.05356619484031522 +167169,835.8450000066395,-0.053566033693930606 +167170,835.8500000066396,-0.05356587252026489 +167171,835.8550000066397,-0.05356571131930757 +167172,835.8600000066398,-0.053565550091048124 +167173,835.8650000066399,-0.05356538883547604 +167174,835.87000000664,-0.053565227552580794 +167175,835.8750000066401,-0.05356506624235185 +167176,835.8800000066402,-0.05356490490477867 +167177,835.8850000066403,-0.053564743539850725 +167178,835.8900000066404,-0.05356458214755747 +167179,835.8950000066405,-0.05356442072788835 +167180,835.9000000066407,-0.053564259280832804 +167181,835.9050000066408,-0.05356409780638026 +167182,835.9100000066409,-0.05356393630452017 +167183,835.915000006641,-0.05356377477524194 +167184,835.9200000066411,-0.053563613218535 +167185,835.9250000066412,-0.053563451634388755 +167186,835.9300000066413,-0.05356329002279263 +167187,835.9350000066414,-0.05356312838373602 +167188,835.9400000066415,-0.05356296671720831 +167189,835.9450000066416,-0.053562805023198906 +167190,835.9500000066417,-0.053562643301697195 +167191,835.9550000066419,-0.05356248155269255 +167192,835.960000006642,-0.05356231977617434 +167193,835.9650000066421,-0.05356215797213193 +167194,835.9700000066422,-0.0535619961405547 +167195,835.9750000066423,-0.053561834281431984 +167196,835.9800000066424,-0.053561672394753145 +167197,835.9850000066425,-0.053561510480507536 +167198,835.9900000066426,-0.05356134853868449 +167199,835.9950000066427,-0.053561186569273334 +167200,836.0000000066428,-0.05356102457226341 +167201,836.005000006643,-0.05356086254764402 +167202,836.010000006643,-0.053560700495404505 +167203,836.0150000066432,-0.053560538415534154 +167204,836.0200000066433,-0.05356037630802229 +167205,836.0250000066434,-0.05356021417285818 +167206,836.0300000066435,-0.05356005201003116 +167207,836.0350000066436,-0.053559889819530485 +167208,836.0400000066437,-0.05355972760134545 +167209,836.0450000066438,-0.05355956535546533 +167210,836.0500000066439,-0.0535594030818794 +167211,836.055000006644,-0.05355924078057692 +167212,836.0600000066441,-0.053559078451547136 +167213,836.0650000066443,-0.05355891609477932 +167214,836.0700000066444,-0.05355875371026271 +167215,836.0750000066445,-0.05355859129798654 +167216,836.0800000066446,-0.05355842885794006 +167217,836.0850000066447,-0.05355826639011248 +167218,836.0900000066448,-0.053558103894493045 +167219,836.0950000066449,-0.05355794137107097 +167220,836.100000006645,-0.05355777881983545 +167221,836.1050000066451,-0.0535576162407757 +167222,836.1100000066452,-0.053557453633880925 +167223,836.1150000066453,-0.05355729099914032 +167224,836.1200000066455,-0.05355712833654306 +167225,836.1250000066456,-0.05355696564607834 +167226,836.1300000066457,-0.053556802927735334 +167227,836.1350000066458,-0.05355664018150321 +167228,836.1400000066459,-0.053556477407371135 +167229,836.145000006646,-0.05355631460532827 +167230,836.1500000066461,-0.05355615177536376 +167231,836.1550000066462,-0.05355598891746676 +167232,836.1600000066463,-0.05355582603162641 +167233,836.1650000066464,-0.053555663117831845 +167234,836.1700000066465,-0.05355550017607219 +167235,836.1750000066467,-0.053555337206336574 +167236,836.1800000066468,-0.05355517420861412 +167237,836.1850000066469,-0.053555011182893936 +167238,836.190000006647,-0.053554848129165125 +167239,836.1950000066471,-0.053554685047416783 +167240,836.2000000066472,-0.05355452193763802 +167241,836.2050000066473,-0.0535543587998179 +167242,836.2100000066474,-0.05355419563394553 +167243,836.2150000066475,-0.05355403244000996 +167244,836.2200000066476,-0.05355386921800029 +167245,836.2250000066477,-0.05355370596790556 +167246,836.2300000066479,-0.05355354268971484 +167247,836.235000006648,-0.0535533793834172 +167248,836.2400000066481,-0.05355321604900165 +167249,836.2450000066482,-0.05355305268645725 +167250,836.2500000066483,-0.05355288929577303 +167251,836.2550000066484,-0.053552725876938025 +167252,836.2600000066485,-0.05355256242994126 +167253,836.2650000066486,-0.05355239895477175 +167254,836.2700000066487,-0.05355223545141848 +167255,836.2750000066488,-0.053552071919870485 +167256,836.280000006649,-0.05355190836011676 +167257,836.285000006649,-0.0535517447721463 +167258,836.2900000066492,-0.053551581155948075 +167259,836.2950000066493,-0.05355141751151108 +167260,836.3000000066494,-0.05355125383882428 +167261,836.3050000066495,-0.05355109013787666 +167262,836.3100000066496,-0.05355092640865716 +167263,836.3150000066497,-0.05355076265115476 +167264,836.3200000066498,-0.053550598865358394 +167265,836.3250000066499,-0.05355043505125701 +167266,836.33000000665,-0.05355027120883956 +167267,836.3350000066501,-0.05355010733809496 +167268,836.3400000066503,-0.05354994343901214 +167269,836.3450000066504,-0.05354977951158003 +167270,836.3500000066505,-0.05354961555578754 +167271,836.3550000066506,-0.05354945157162358 +167272,836.3600000066507,-0.05354928755907704 +167273,836.3650000066508,-0.05354912351813682 +167274,836.3700000066509,-0.05354895944879184 +167275,836.375000006651,-0.05354879535103094 +167276,836.3800000066511,-0.053548631224843005 +167277,836.3850000066512,-0.053548467070216946 +167278,836.3900000066513,-0.05354830288714159 +167279,836.3950000066515,-0.053548138675605816 +167280,836.4000000066516,-0.053547974435598465 +167281,836.4050000066517,-0.0535478101671084 +167282,836.4100000066518,-0.05354764587012444 +167283,836.4150000066519,-0.05354748154463545 +167284,836.420000006652,-0.05354731719063024 +167285,836.4250000066521,-0.05354715280809764 +167286,836.4300000066522,-0.05354698839702646 +167287,836.4350000066523,-0.05354682395740551 +167288,836.4400000066524,-0.0535466594892236 +167289,836.4450000066525,-0.05354649499246954 +167290,836.4500000066527,-0.05354633046713211 +167291,836.4550000066528,-0.0535461659132001 +167292,836.4600000066529,-0.05354600133066229 +167293,836.465000006653,-0.05354583671950745 +167294,836.4700000066531,-0.053545672079724355 +167295,836.4750000066532,-0.05354550741130177 +167296,836.4800000066533,-0.05354534271422844 +167297,836.4850000066534,-0.05354517798849313 +167298,836.4900000066535,-0.05354501323408455 +167299,836.4950000066536,-0.053544848450991465 +167300,836.5000000066537,-0.0535446836392026 +167301,836.5050000066539,-0.05354451879870669 +167302,836.510000006654,-0.053544353929492444 +167303,836.5150000066541,-0.05354418903154858 +167304,836.5200000066542,-0.053544024104863794 +167305,836.5250000066543,-0.053543859149426797 +167306,836.5300000066544,-0.05354369416522627 +167307,836.5350000066545,-0.05354352915225091 +167308,836.5400000066546,-0.053543364110489405 +167309,836.5450000066547,-0.05354319903993043 +167310,836.5500000066548,-0.05354303394056264 +167311,836.555000006655,-0.05354286881237471 +167312,836.5600000066551,-0.05354270365535528 +167313,836.5650000066552,-0.05354253846949303 +167314,836.5700000066553,-0.05354237325477658 +167315,836.5750000066554,-0.053542208011194574 +167316,836.5800000066555,-0.05354204273873565 +167317,836.5850000066556,-0.053541877437388426 +167318,836.5900000066557,-0.05354171210714152 +167319,836.5950000066558,-0.053541546747983546 +167320,836.6000000066559,-0.05354138135990311 +167321,836.605000006656,-0.053541215942888826 +167322,836.6100000066562,-0.053541050496929275 +167323,836.6150000066563,-0.05354088502201305 +167324,836.6200000066564,-0.05354071951812873 +167325,836.6250000066565,-0.05354055398526488 +167326,836.6300000066566,-0.05354038842341009 +167327,836.6350000066567,-0.053540222832552914 +167328,836.6400000066568,-0.0535400572126819 +167329,836.6450000066569,-0.053539891563785615 +167330,836.650000006657,-0.05353972588585259 +167331,836.6550000066571,-0.05353956017887137 +167332,836.6600000066572,-0.053539394442830485 +167333,836.6650000066574,-0.05353922867771846 +167334,836.6700000066575,-0.0535390628835238 +167335,836.6750000066576,-0.053538897060235034 +167336,836.6800000066577,-0.053538731207840654 +167337,836.6850000066578,-0.053538565326329175 +167338,836.6900000066579,-0.05353839941568909 +167339,836.695000006658,-0.05353823347590887 +167340,836.7000000066581,-0.053538067506977004 +167341,836.7050000066582,-0.05353790150888198 +167342,836.7100000066583,-0.05353773548161223 +167343,836.7150000066584,-0.05353756942515625 +167344,836.7200000066586,-0.05353740333950249 +167345,836.7250000066587,-0.053537237224639385 +167346,836.7300000066588,-0.053537071080555394 +167347,836.7350000066589,-0.05353690490723893 +167348,836.740000006659,-0.053536738704678455 +167349,836.7450000066591,-0.053536572472862365 +167350,836.7500000066592,-0.05353640621177908 +167351,836.7550000066593,-0.053536239921417025 +167352,836.7600000066594,-0.0535360736017646 +167353,836.7650000066595,-0.05353590725281019 +167354,836.7700000066596,-0.0535357408745422 +167355,836.7750000066598,-0.053535574466949 +167356,836.7800000066599,-0.05353540803001899 +167357,836.78500000666,-0.05353524156374053 +167358,836.7900000066601,-0.05353507506810198 +167359,836.7950000066602,-0.0535349085430917 +167360,836.8000000066603,-0.05353474198869806 +167361,836.8050000066604,-0.05353457540490938 +167362,836.8100000066605,-0.05353440879171401 +167363,836.8150000066606,-0.0535342421491003 +167364,836.8200000066607,-0.05353407547705655 +167365,836.8250000066608,-0.05353390877557109 +167366,836.830000006661,-0.05353374204463225 +167367,836.8350000066611,-0.05353357528422832 +167368,836.8400000066612,-0.05353340849434761 +167369,836.8450000066613,-0.053533241674978416 +167370,836.8500000066614,-0.053533074826109014 +167371,836.8550000066615,-0.05353290794772769 +167372,836.8600000066616,-0.05353274103982272 +167373,836.8650000066617,-0.05353257410238239 +167374,836.8700000066618,-0.053532407135394935 +167375,836.8750000066619,-0.05353224013884862 +167376,836.880000006662,-0.0535320731127317 +167377,836.8850000066622,-0.053531906057032404 +167378,836.8900000066623,-0.053531738971738976 +167379,836.8950000066624,-0.05353157185683965 +167380,836.9000000066625,-0.05353140471232264 +167381,836.9050000066626,-0.05353123753817617 +167382,836.9100000066627,-0.05353107033438846 +167383,836.9150000066628,-0.0535309031009477 +167384,836.9200000066629,-0.053530735837842076 +167385,836.925000006663,-0.053530568545059797 +167386,836.9300000066631,-0.053530401222589036 +167387,836.9350000066632,-0.05353023387041798 +167388,836.9400000066634,-0.05353006648853479 +167389,836.9450000066635,-0.05352989907692762 +167390,836.9500000066636,-0.05352973163558465 +167391,836.9550000066637,-0.05352956416449402 +167392,836.9600000066638,-0.05352939666364388 +167393,836.9650000066639,-0.053529229133022355 +167394,836.970000006664,-0.053529061572617595 +167395,836.9750000066641,-0.053528893982417704 +167396,836.9800000066642,-0.05352872636241081 +167397,836.9850000066643,-0.05352855871258502 +167398,836.9900000066644,-0.05352839103292845 +167399,836.9950000066646,-0.053528223323429186 +167400,837.0000000066647,-0.053528055584075335 +167401,837.0050000066648,-0.053527887814854964 +167402,837.0100000066649,-0.05352772001575616 +167403,837.015000006665,-0.05352755218676698 +167404,837.0200000066651,-0.05352738432787551 +167405,837.0250000066652,-0.05352721643906979 +167406,837.0300000066653,-0.053527048520337885 +167407,837.0350000066654,-0.05352688057166783 +167408,837.0400000066655,-0.05352671259304768 +167409,837.0450000066656,-0.053526544584465444 +167410,837.0500000066658,-0.05352637654590916 +167411,837.0550000066659,-0.05352620847736684 +167412,837.060000006666,-0.053526040378826495 +167413,837.0650000066661,-0.053525872250276135 +167414,837.0700000066662,-0.05352570409170376 +167415,837.0750000066663,-0.05352553590309737 +167416,837.0800000066664,-0.053525367684444915 +167417,837.0850000066665,-0.05352519943573441 +167418,837.0900000066666,-0.053525031156953805 +167419,837.0950000066667,-0.053524862848091076 +167420,837.1000000066668,-0.05352469450913418 +167421,837.105000006667,-0.05352452614007106 +167422,837.1100000066671,-0.05352435774088967 +167423,837.1150000066672,-0.053524189311577944 +167424,837.1200000066673,-0.053524020852123814 +167425,837.1250000066674,-0.05352385236251519 +167426,837.1300000066675,-0.05352368384274 +167427,837.1350000066676,-0.05352351529278616 +167428,837.1400000066677,-0.05352334671264157 +167429,837.1450000066678,-0.05352317810229413 +167430,837.1500000066679,-0.05352300946173172 +167431,837.155000006668,-0.053522840790942244 +167432,837.1600000066682,-0.053522672089913556 +167433,837.1650000066683,-0.053522503358633546 +167434,837.1700000066684,-0.05352233459709007 +167435,837.1750000066685,-0.05352216580527097 +167436,837.1800000066686,-0.053521996983164115 +167437,837.1850000066687,-0.05352182813075734 +167438,837.1900000066688,-0.05352165924803849 +167439,837.1950000066689,-0.05352149033499538 +167440,837.200000006669,-0.05352132139161583 +167441,837.2050000066691,-0.053521152417887664 +167442,837.2100000066692,-0.05352098341379869 +167443,837.2150000066694,-0.053520814379336715 +167444,837.2200000066695,-0.05352064531448953 +167445,837.2250000066696,-0.053520476219244925 +167446,837.2300000066697,-0.05352030709359069 +167447,837.2350000066698,-0.053520137937514575 +167448,837.2400000066699,-0.05351996875100437 +167449,837.24500000667,-0.05351979953404782 +167450,837.2500000066701,-0.05351963028663269 +167451,837.2550000066702,-0.05351946100874673 +167452,837.2600000066703,-0.05351929170037768 +167453,837.2650000066704,-0.05351912236151325 +167454,837.2700000066706,-0.0535189529921412 +167455,837.2750000066707,-0.05351878359224922 +167456,837.2800000066708,-0.05351861416182506 +167457,837.2850000066709,-0.05351844470085639 +167458,837.290000006671,-0.053518275209330925 +167459,837.2950000066711,-0.05351810568723636 +167460,837.3000000066712,-0.05351793613456036 +167461,837.3050000066713,-0.05351776655129062 +167462,837.3100000066714,-0.053517596937414806 +167463,837.3150000066715,-0.053517427292920604 +167464,837.3200000066716,-0.05351725761779564 +167465,837.3250000066718,-0.053517087912027576 +167466,837.3300000066719,-0.05351691817560406 +167467,837.335000006672,-0.053516748408512727 +167468,837.3400000066721,-0.05351657861074121 +167469,837.3450000066722,-0.05351640878227711 +167470,837.3500000066723,-0.05351623892310808 +167471,837.3550000066724,-0.053516069033221696 +167472,837.3600000066725,-0.05351589911260558 +167473,837.3650000066726,-0.053515729161247326 +167474,837.3700000066727,-0.0535155591791345 +167475,837.3750000066728,-0.053515389166254694 +167476,837.380000006673,-0.0535152191225955 +167477,837.3850000066731,-0.05351504904814446 +167478,837.3900000066732,-0.05351487894288916 +167479,837.3950000066733,-0.053514708806817114 +167480,837.4000000066734,-0.0535145386399159 +167481,837.4050000066735,-0.053514368442173055 +167482,837.4100000066736,-0.05351419821357609 +167483,837.4150000066737,-0.05351402795411255 +167484,837.4200000066738,-0.053513857663769954 +167485,837.4250000066739,-0.0535136873425358 +167486,837.430000006674,-0.05351351699039761 +167487,837.4350000066742,-0.05351334660734284 +167488,837.4400000066743,-0.05351317619335902 +167489,837.4450000066744,-0.053513005748433616 +167490,837.4500000066745,-0.05351283527255411 +167491,837.4550000066746,-0.05351266476570797 +167492,837.4600000066747,-0.05351249422788266 +167493,837.4650000066748,-0.053512323659065615 +167494,837.4700000066749,-0.0535121530592443 +167495,837.475000006675,-0.053511982428406143 +167496,837.4800000066751,-0.0535118117665386 +167497,837.4850000066753,-0.05351164107362908 +167498,837.4900000066754,-0.05351147034966499 +167499,837.4950000066755,-0.05351129959463377 +167500,837.5000000066756,-0.0535111288085228 +167501,837.5050000066757,-0.05351095799131949 +167502,837.5100000066758,-0.05351078714301123 +167503,837.5150000066759,-0.053510616263585394 +167504,837.520000006676,-0.053510445353029366 +167505,837.5250000066761,-0.053510274411330515 +167506,837.5300000066762,-0.05351010343847621 +167507,837.5350000066763,-0.05350993243445379 +167508,837.5400000066765,-0.05350976139925061 +167509,837.5450000066766,-0.053509590332854004 +167510,837.5500000066767,-0.053509419235251314 +167511,837.5550000066768,-0.05350924810642987 +167512,837.5600000066769,-0.053509076946376966 +167513,837.565000006677,-0.05350890575507994 +167514,837.5700000066771,-0.053508734532526095 +167515,837.5750000066772,-0.05350856327870271 +167516,837.5800000066773,-0.05350839199359709 +167517,837.5850000066774,-0.0535082206771965 +167518,837.5900000066775,-0.053508049329488244 +167519,837.5950000066777,-0.053507877950459574 +167520,837.6000000066778,-0.053507706540097746 +167521,837.6050000066779,-0.05350753509839002 +167522,837.610000006678,-0.05350736362532365 +167523,837.6150000066781,-0.05350719212088586 +167524,837.6200000066782,-0.0535070205850639 +167525,837.6250000066783,-0.053506849017844985 +167526,837.6300000066784,-0.05350667741921633 +167527,837.6350000066785,-0.053506505789165146 +167528,837.6400000066786,-0.05350633412767864 +167529,837.6450000066787,-0.053506162434744015 +167530,837.6500000066789,-0.05350599071034844 +167531,837.655000006679,-0.053505818954479124 +167532,837.6600000066791,-0.053505647167123215 +167533,837.6650000066792,-0.0535054753482679 +167534,837.6700000066793,-0.053505303497900315 +167535,837.6750000066794,-0.05350513161600763 +167536,837.6800000066795,-0.05350495970257698 +167537,837.6850000066796,-0.053504787757595526 +167538,837.6900000066797,-0.053504615781050376 +167539,837.6950000066798,-0.05350444377292866 +167540,837.7000000066799,-0.05350427173321748 +167541,837.70500000668,-0.05350409966190397 +167542,837.7100000066802,-0.053503927558975206 +167543,837.7150000066803,-0.0535037554244183 +167544,837.7200000066804,-0.053503583258220334 +167545,837.7250000066805,-0.05350341106036838 +167546,837.7300000066806,-0.053503238830849516 +167547,837.7350000066807,-0.0535030665696508 +167548,837.7400000066808,-0.05350289427675929 +167549,837.7450000066809,-0.05350272195216205 +167550,837.750000006681,-0.053502549595846105 +167551,837.7550000066811,-0.053502377207798504 +167552,837.7600000066813,-0.053502204788006255 +167553,837.7650000066814,-0.053502032336456395 +167554,837.7700000066815,-0.05350185985313593 +167555,837.7750000066816,-0.05350168733803186 +167556,837.7800000066817,-0.0535015147911312 +167557,837.7850000066818,-0.05350134221242092 +167558,837.7900000066819,-0.05350116960188803 +167559,837.795000006682,-0.05350099695951947 +167560,837.8000000066821,-0.05350082428530223 +167561,837.8050000066822,-0.05350065157922328 +167562,837.8100000066823,-0.053500478841269544 +167563,837.8150000066825,-0.053500306071427986 +167564,837.8200000066826,-0.05350013326968555 +167565,837.8250000066827,-0.053499960436029156 +167566,837.8300000066828,-0.05349978757044573 +167567,837.8350000066829,-0.05349961467292219 +167568,837.840000006683,-0.053499441743445446 +167569,837.8450000066831,-0.05349926878200239 +167570,837.8500000066832,-0.05349909578857992 +167571,837.8550000066833,-0.05349892276316493 +167572,837.8600000066834,-0.05349874970574429 +167573,837.8650000066835,-0.053498576616304874 +167574,837.8700000066837,-0.053498403494833556 +167575,837.8750000066838,-0.05349823034131717 +167576,837.8800000066839,-0.05349805715574257 +167577,837.885000006684,-0.05349788393809661 +167578,837.8900000066841,-0.05349771068836611 +167579,837.8950000066842,-0.05349753740653792 +167580,837.9000000066843,-0.05349736409259883 +167581,837.9050000066844,-0.05349719074653567 +167582,837.9100000066845,-0.053497017368335224 +167583,837.9150000066846,-0.0534968439579843 +167584,837.9200000066847,-0.05349667051546969 +167585,837.9250000066849,-0.05349649704077817 +167586,837.930000006685,-0.0534963235338965 +167587,837.9350000066851,-0.05349614999481146 +167588,837.9400000066852,-0.05349597642350982 +167589,837.9450000066853,-0.05349580281997831 +167590,837.9500000066854,-0.05349562918420368 +167591,837.9550000066855,-0.05349545551617266 +167592,837.9600000066856,-0.05349528181587198 +167593,837.9650000066857,-0.05349510808328836 +167594,837.9700000066858,-0.05349493431840851 +167595,837.975000006686,-0.053494760521219153 +167596,837.980000006686,-0.05349458669170696 +167597,837.9850000066862,-0.05349441282985863 +167598,837.9900000066863,-0.05349423893566086 +167599,837.9950000066864,-0.05349406500910031 +167600,838.0000000066865,-0.05349389105016364 +167601,838.0050000066866,-0.05349371705883752 +167602,838.0100000066867,-0.0534935430351086 +167603,838.0150000066868,-0.05349336897896352 +167604,838.0200000066869,-0.05349319489038891 +167605,838.025000006687,-0.053493020769371416 +167606,838.0300000066871,-0.053492846615897635 +167607,838.0350000066873,-0.053492672429954195 +167608,838.0400000066874,-0.053492498211527705 +167609,838.0450000066875,-0.05349232396060475 +167610,838.0500000066876,-0.053492149677171925 +167611,838.0550000066877,-0.05349197536121581 +167612,838.0600000066878,-0.05349180101272299 +167613,838.0650000066879,-0.05349162663168002 +167614,838.070000006688,-0.053491452218073464 +167615,838.0750000066881,-0.05349127777188987 +167616,838.0800000066882,-0.05349110329311579 +167617,838.0850000066883,-0.05349092878173774 +167618,838.0900000066885,-0.05349075423774225 +167619,838.0950000066886,-0.05349057966111586 +167620,838.1000000066887,-0.053490405051845075 +167621,838.1050000066888,-0.05349023040991639 +167622,838.1100000066889,-0.053490055735316316 +167623,838.115000006689,-0.05348988102803134 +167624,838.1200000066891,-0.05348970628804793 +167625,838.1250000066892,-0.053489531515352566 +167626,838.1300000066893,-0.05348935670993171 +167627,838.1350000066894,-0.05348918187177183 +167628,838.1400000066895,-0.05348900700085937 +167629,838.1450000066897,-0.05348883209718078 +167630,838.1500000066898,-0.053488657160722486 +167631,838.1550000066899,-0.05348848219147091 +167632,838.16000000669,-0.053488307189412485 +167633,838.1650000066901,-0.0534881321545336 +167634,838.1700000066902,-0.053487957086820685 +167635,838.1750000066903,-0.05348778198626012 +167636,838.1800000066904,-0.053487606852838286 +167637,838.1850000066905,-0.05348743168654157 +167638,838.1900000066906,-0.05348725648735635 +167639,838.1950000066907,-0.05348708125526898 +167640,838.2000000066909,-0.053486905990265815 +167641,838.205000006691,-0.053486730692333215 +167642,838.2100000066911,-0.05348655536145751 +167643,838.2150000066912,-0.05348637999762504 +167644,838.2200000066913,-0.053486204600822124 +167645,838.2250000066914,-0.05348602917103507 +167646,838.2300000066915,-0.05348585370825021 +167647,838.2350000066916,-0.053485678212453806 +167648,838.2400000066917,-0.05348550268363219 +167649,838.2450000066918,-0.053485327121771634 +167650,838.250000006692,-0.053485151526858406 +167651,838.2550000066921,-0.053484975898878774 +167652,838.2600000066922,-0.05348480023781902 +167653,838.2650000066923,-0.05348462454366538 +167654,838.2700000066924,-0.0534844488164041 +167655,838.2750000066925,-0.05348427305602141 +167656,838.2800000066926,-0.053484097262503555 +167657,838.2850000066927,-0.05348392143583675 +167658,838.2900000066928,-0.05348374557600719 +167659,838.2950000066929,-0.05348356968300112 +167660,838.300000006693,-0.053483393756804706 +167661,838.3050000066931,-0.053483217797404135 +167662,838.3100000066933,-0.053483041804785615 +167663,838.3150000066934,-0.053482865778935296 +167664,838.3200000066935,-0.05348268971983934 +167665,838.3250000066936,-0.05348251362748393 +167666,838.3300000066937,-0.05348233750185519 +167667,838.3350000066938,-0.05348216134293927 +167668,838.3400000066939,-0.0534819851507223 +167669,838.345000006694,-0.05348180892519041 +167670,838.3500000066941,-0.053481632666329715 +167671,838.3550000066942,-0.053481456374126324 +167672,838.3600000066943,-0.05348128004856634 +167673,838.3650000066945,-0.053481103689635844 +167674,838.3700000066946,-0.053480927297320936 +167675,838.3750000066947,-0.05348075087160768 +167676,838.3800000066948,-0.053480574412482156 +167677,838.3850000066949,-0.05348039791993041 +167678,838.390000006695,-0.05348022139393851 +167679,838.3950000066951,-0.05348004483449249 +167680,838.4000000066952,-0.05347986824157839 +167681,838.4050000066953,-0.053479691615182234 +167682,838.4100000066954,-0.05347951495529004 +167683,838.4150000066955,-0.05347933826188783 +167684,838.4200000066957,-0.05347916153496159 +167685,838.4250000066958,-0.053478984774497335 +167686,838.4300000066959,-0.05347880798048104 +167687,838.435000006696,-0.053478631152898685 +167688,838.4400000066961,-0.053478454291736255 +167689,838.4450000066962,-0.05347827739697969 +167690,838.4500000066963,-0.05347810046861497 +167691,838.4550000066964,-0.05347792350662802 +167692,838.4600000066965,-0.05347774651100478 +167693,838.4650000066966,-0.05347756948173119 +167694,838.4700000066968,-0.05347739241879317 +167695,838.4750000066969,-0.053477215322176634 +167696,838.480000006697,-0.05347703819186748 +167697,838.4850000066971,-0.0534768610278516 +167698,838.4900000066972,-0.0534766838301149 +167699,838.4950000066973,-0.05347650659864324 +167700,838.5000000066974,-0.053476329333422515 +167701,838.5050000066975,-0.05347615203443857 +167702,838.5100000066976,-0.053475974701677274 +167703,838.5150000066977,-0.05347579733512448 +167704,838.5200000066978,-0.05347561993476602 +167705,838.525000006698,-0.05347544250058772 +167706,838.5300000066981,-0.05347526503257541 +167707,838.5350000066982,-0.053475087530714886 +167708,838.5400000066983,-0.05347490999499198 +167709,838.5450000066984,-0.053474732425392475 +167710,838.5500000066985,-0.05347455482190218 +167711,838.5550000066986,-0.05347437718450685 +167712,838.5600000066987,-0.05347419951319227 +167713,838.5650000066988,-0.053474021807944215 +167714,838.5700000066989,-0.05347384406874842 +167715,838.575000006699,-0.053473666295590645 +167716,838.5800000066992,-0.05347348848845664 +167717,838.5850000066993,-0.053473310647332115 +167718,838.5900000066994,-0.0534731327722028 +167719,838.5950000066995,-0.05347295486305443 +167720,838.6000000066996,-0.053472776919872685 +167721,838.6050000066997,-0.05347259894264327 +167722,838.6100000066998,-0.05347242093135189 +167723,838.6150000066999,-0.05347224288598422 +167724,838.6200000067,-0.05347206480652591 +167725,838.6250000067001,-0.05347188669296264 +167726,838.6300000067002,-0.053471708545280085 +167727,838.6350000067004,-0.05347153036346387 +167728,838.6400000067005,-0.053471352147499644 +167729,838.6450000067006,-0.053471173897373034 +167730,838.6500000067007,-0.053470995613069665 +167731,838.6550000067008,-0.053470817294575146 +167732,838.6600000067009,-0.05347063894187508 +167733,838.665000006701,-0.053470460554955086 +167734,838.6700000067011,-0.05347028213380072 +167735,838.6750000067012,-0.05347010367839759 +167736,838.6800000067013,-0.053469925188731254 +167737,838.6850000067014,-0.05346974666478728 +167738,838.6900000067016,-0.05346956810655122 +167739,838.6950000067017,-0.053469389514008626 +167740,838.7000000067018,-0.05346921088714503 +167741,838.7050000067019,-0.05346903222594597 +167742,838.710000006702,-0.05346885353039696 +167743,838.7150000067021,-0.053468674800483514 +167744,838.7200000067022,-0.05346849603619113 +167745,838.7250000067023,-0.0534683172375053 +167746,838.7300000067024,-0.05346813840441154 +167747,838.7350000067025,-0.053467959536895295 +167748,838.7400000067026,-0.05346778063494204 +167749,838.7450000067028,-0.053467601698537266 +167750,838.7500000067029,-0.05346742272766641 +167751,838.755000006703,-0.05346724372231489 +167752,838.7600000067031,-0.05346706468246818 +167753,838.7650000067032,-0.053466885608111685 +167754,838.7700000067033,-0.053466706499230826 +167755,838.7750000067034,-0.05346652735581101 +167756,838.7800000067035,-0.053466348177837644 +167757,838.7850000067036,-0.05346616896529612 +167758,838.7900000067037,-0.053465989718171826 +167759,838.7950000067038,-0.05346581043645014 +167760,838.800000006704,-0.053465631120116416 +167761,838.8050000067041,-0.05346545176915602 +167762,838.8100000067042,-0.05346527238355431 +167763,838.8150000067043,-0.053465092963296615 +167764,838.8200000067044,-0.053464913508368274 +167765,838.8250000067045,-0.0534647340187546 +167766,838.8300000067046,-0.053464554494440916 +167767,838.8350000067047,-0.053464374935412534 +167768,838.8400000067048,-0.053464195341654745 +167769,838.8450000067049,-0.05346401571315283 +167770,838.850000006705,-0.0534638360498921 +167771,838.8550000067052,-0.05346365635185779 +167772,838.8600000067053,-0.053463476619035194 +167773,838.8650000067054,-0.05346329685140954 +167774,838.8700000067055,-0.053463117048966086 +167775,838.8750000067056,-0.05346293721169006 +167776,838.8800000067057,-0.05346275733956671 +167777,838.8850000067058,-0.053462577432581246 +167778,838.8900000067059,-0.05346239749071887 +167779,838.895000006706,-0.0534622175139648 +167780,838.9000000067061,-0.05346203750230423 +167781,838.9050000067062,-0.05346185745572232 +167782,838.9100000067064,-0.05346167737420427 +167783,838.9150000067065,-0.05346149725773523 +167784,838.9200000067066,-0.05346131710630037 +167785,838.9250000067067,-0.053461136919884834 +167786,838.9300000067068,-0.05346095669847378 +167787,838.9350000067069,-0.05346077644205232 +167788,838.940000006707,-0.05346059615060558 +167789,838.9450000067071,-0.05346041582411869 +167790,838.9500000067072,-0.05346023546257672 +167791,838.9550000067073,-0.053460055065964796 +167792,838.9600000067074,-0.053459874634268004 +167793,838.9650000067076,-0.053459694167471414 +167794,838.9700000067077,-0.05345951366556011 +167795,838.9750000067078,-0.05345933312851914 +167796,838.9800000067079,-0.05345915255633355 +167797,838.985000006708,-0.05345897194898841 +167798,838.9900000067081,-0.05345879130646874 +167799,838.9950000067082,-0.05345861062875956 +167800,839.0000000067083,-0.0534584299158459 +167801,839.0050000067084,-0.05345824916771275 +167802,839.0100000067085,-0.05345806838434513 +167803,839.0150000067086,-0.053457887565728016 +167804,839.0200000067088,-0.0534577067118464 +167805,839.0250000067089,-0.05345752582268526 +167806,839.030000006709,-0.053457344898229536 +167807,839.0350000067091,-0.053457163938464204 +167808,839.0400000067092,-0.0534569829433742 +167809,839.0450000067093,-0.053456801912944454 +167810,839.0500000067094,-0.053456620847159915 +167811,839.0550000067095,-0.05345643974600549 +167812,839.0600000067096,-0.05345625860946609 +167813,839.0650000067097,-0.05345607743752662 +167814,839.0700000067098,-0.05345589623017196 +167815,839.07500000671,-0.053455714987387 +167816,839.0800000067101,-0.053455533709156615 +167817,839.0850000067102,-0.053455352395465665 +167818,839.0900000067103,-0.05345517104629903 +167819,839.0950000067104,-0.053454989661641535 +167820,839.1000000067105,-0.05345480824147802 +167821,839.1050000067106,-0.053454626785793324 +167822,839.1100000067107,-0.05345444529457225 +167823,839.1150000067108,-0.05345426376779963 +167824,839.1200000067109,-0.05345408220546025 +167825,839.125000006711,-0.053453900607538914 +167826,839.1300000067112,-0.05345371897402039 +167827,839.1350000067113,-0.05345353730488946 +167828,839.1400000067114,-0.053453355600130904 +167829,839.1450000067115,-0.053453173859729475 +167830,839.1500000067116,-0.053452992083669916 +167831,839.1550000067117,-0.053452810271936955 +167832,839.1600000067118,-0.05345262842451534 +167833,839.1650000067119,-0.053452446541389774 +167834,839.170000006712,-0.05345226462254499 +167835,839.1750000067121,-0.053452082667965674 +167836,839.1800000067122,-0.05345190067763652 +167837,839.1850000067124,-0.05345171865154221 +167838,839.1900000067125,-0.05345153658966743 +167839,839.1950000067126,-0.053451354491996825 +167840,839.2000000067127,-0.05345117235851507 +167841,839.2050000067128,-0.05345099018920681 +167842,839.2100000067129,-0.05345080798405668 +167843,839.215000006713,-0.05345062574304932 +167844,839.2200000067131,-0.05345044346616933 +167845,839.2250000067132,-0.053450261153401346 +167846,839.2300000067133,-0.05345007880472994 +167847,839.2350000067134,-0.053449896420139725 +167848,839.2400000067136,-0.05344971399961528 +167849,839.2450000067137,-0.05344953154314118 +167850,839.2500000067138,-0.053449349050701984 +167851,839.2550000067139,-0.05344916652228226 +167852,839.260000006714,-0.053448983957866535 +167853,839.2650000067141,-0.05344880135743935 +167854,839.2700000067142,-0.053448618720985254 +167855,839.2750000067143,-0.05344843604848874 +167856,839.2800000067144,-0.05344825333993434 +167857,839.2850000067145,-0.053448070595306534 +167858,839.2900000067146,-0.05344788781458982 +167859,839.2950000067148,-0.053447704997768686 +167860,839.3000000067149,-0.05344752214482759 +167861,839.305000006715,-0.05344733925575101 +167862,839.3100000067151,-0.05344715633052338 +167863,839.3150000067152,-0.05344697336912918 +167864,839.3200000067153,-0.053446790371552824 +167865,839.3250000067154,-0.05344660733777873 +167866,839.3300000067155,-0.053446424267791316 +167867,839.3350000067156,-0.05344624116157499 +167868,839.3400000067157,-0.05344605801911416 +167869,839.3450000067158,-0.053445874840393204 +167870,839.350000006716,-0.05344569162539651 +167871,839.3550000067161,-0.05344550837410843 +167872,839.3600000067162,-0.05344532508651334 +167873,839.3650000067163,-0.053445141762595585 +167874,839.3700000067164,-0.05344495840233951 +167875,839.3750000067165,-0.05344477500572946 +167876,839.3800000067166,-0.05344459157274973 +167877,839.3850000067167,-0.05344440810338465 +167878,839.3900000067168,-0.053444224597618516 +167879,839.3950000067169,-0.05344404105543563 +167880,839.400000006717,-0.05344385747682028 +167881,839.4050000067172,-0.05344367386175674 +167882,839.4100000067173,-0.05344349021022926 +167883,839.4150000067174,-0.0534433065222221 +167884,839.4200000067175,-0.053443122797719525 +167885,839.4250000067176,-0.053442939036705765 +167886,839.4300000067177,-0.053442755239165037 +167887,839.4350000067178,-0.05344257140508158 +167888,839.4400000067179,-0.05344238753443959 +167889,839.445000006718,-0.05344220362722327 +167890,839.4500000067181,-0.0534420196834168 +167891,839.4550000067183,-0.05344183570300437 +167892,839.4600000067184,-0.053441651685970155 +167893,839.4650000067185,-0.05344146763229831 +167894,839.4700000067186,-0.05344128354197299 +167895,839.4750000067187,-0.05344109941497834 +167896,839.4800000067188,-0.053440915251298494 +167897,839.4850000067189,-0.05344073105091757 +167898,839.490000006719,-0.05344054681381967 +167899,839.4950000067191,-0.05344036253998891 +167900,839.5000000067192,-0.0534401782294094 +167901,839.5050000067193,-0.05343999388206521 +167902,839.5100000067195,-0.053439809497940416 +167903,839.5150000067196,-0.05343962507701909 +167904,839.5200000067197,-0.05343944061928528 +167905,839.5250000067198,-0.053439256124723035 +167906,839.5300000067199,-0.0534390715933164 +167907,839.53500000672,-0.0534388870250494 +167908,839.5400000067201,-0.05343870241990604 +167909,839.5450000067202,-0.05343851777787035 +167910,839.5500000067203,-0.05343833309892631 +167911,839.5550000067204,-0.05343814838305791 +167912,839.5600000067205,-0.05343796363024914 +167913,839.5650000067207,-0.05343777884048397 +167914,839.5700000067208,-0.05343759401374635 +167915,839.5750000067209,-0.05343740915002023 +167916,839.580000006721,-0.05343722424928956 +167917,839.5850000067211,-0.05343703931153826 +167918,839.5900000067212,-0.05343685433675026 +167919,839.5950000067213,-0.05343666932490947 +167920,839.6000000067214,-0.053436484275999806 +167921,839.6050000067215,-0.05343629919000513 +167922,839.6100000067216,-0.05343611406690934 +167923,839.6150000067217,-0.05343592890669631 +167924,839.6200000067219,-0.05343574370934989 +167925,839.625000006722,-0.05343555847485395 +167926,839.6300000067221,-0.053435373203192325 +167927,839.6350000067222,-0.05343518789434886 +167928,839.6400000067223,-0.05343500254830735 +167929,839.6450000067224,-0.05343481716505164 +167930,839.6500000067225,-0.053434631744565524 +167931,839.6550000067226,-0.05343444628683278 +167932,839.6600000067227,-0.05343426079183722 +167933,839.6650000067228,-0.05343407525956259 +167934,839.670000006723,-0.053433889689992686 +167935,839.675000006723,-0.05343370408311124 +167936,839.6800000067232,-0.053433518438902 +167937,839.6850000067233,-0.0534333327573487 +167938,839.6900000067234,-0.05343314703843507 +167939,839.6950000067235,-0.05343296128214483 +167940,839.7000000067236,-0.053432775488461676 +167941,839.7050000067237,-0.05343258965736931 +167942,839.7100000067238,-0.05343240378885142 +167943,839.7150000067239,-0.05343221788289168 +167944,839.720000006724,-0.05343203193947375 +167945,839.7250000067241,-0.05343184595858129 +167946,839.7300000067243,-0.05343165994019795 +167947,839.7350000067244,-0.053431473884307364 +167948,839.7400000067245,-0.05343128779089315 +167949,839.7450000067246,-0.05343110165993893 +167950,839.7500000067247,-0.053430915491428324 +167951,839.7550000067248,-0.05343072928534491 +167952,839.7600000067249,-0.05343054304167228 +167953,839.765000006725,-0.053430356760394024 +167954,839.7700000067251,-0.05343017044149369 +167955,839.7750000067252,-0.05342998408495484 +167956,839.7800000067253,-0.05342979769076102 +167957,839.7850000067255,-0.053429611258895775 +167958,839.7900000067256,-0.05342942478934262 +167959,839.7950000067257,-0.05342923828208507 +167960,839.8000000067258,-0.05342905173710663 +167961,839.8050000067259,-0.05342886515439082 +167962,839.810000006726,-0.0534286785339211 +167963,839.8150000067261,-0.05342849187568096 +167964,839.8200000067262,-0.05342830517965388 +167965,839.8250000067263,-0.05342811844582329 +167966,839.8300000067264,-0.05342793167417264 +167967,839.8350000067265,-0.053427744864685364 +167968,839.8400000067267,-0.05342755801734491 +167969,839.8450000067268,-0.053427371132134666 +167970,839.8500000067269,-0.05342718420903806 +167971,839.855000006727,-0.053426997248038476 +167972,839.8600000067271,-0.0534268102491193 +167973,839.8650000067272,-0.05342662321226391 +167974,839.8700000067273,-0.053426436137455666 +167975,839.8750000067274,-0.05342624902467793 +167976,839.8800000067275,-0.05342606187391405 +167977,839.8850000067276,-0.05342587468514735 +167978,839.8900000067277,-0.05342568745836117 +167979,839.8950000067279,-0.05342550019353881 +167980,839.900000006728,-0.05342531289066358 +167981,839.9050000067281,-0.053425125549718774 +167982,839.9100000067282,-0.05342493817068767 +167983,839.9150000067283,-0.05342475075355354 +167984,839.9200000067284,-0.053424563298299664 +167985,839.9250000067285,-0.053424375804909274 +167986,839.9300000067286,-0.05342418827336563 +167987,839.9350000067287,-0.053424000703651955 +167988,839.9400000067288,-0.053423813095751484 +167989,839.945000006729,-0.05342362544964742 +167990,839.950000006729,-0.05342343776532296 +167991,839.9550000067292,-0.0534232500427613 +167992,839.9600000067293,-0.05342306228194562 +167993,839.9650000067294,-0.05342287448285909 +167994,839.9700000067295,-0.05342268664548487 +167995,839.9750000067296,-0.05342249876980613 +167996,839.9800000067297,-0.053422310855805975 +167997,839.9850000067298,-0.05342212290346757 +167998,839.9900000067299,-0.053421934912774006 +167999,839.99500000673,-0.05342174688370841 +168000,840.0000000067301,-0.05342155881625388 +168001,840.0050000067303,-0.053421370710393504 +168002,840.0100000067304,-0.05342118256611035 +168003,840.0150000067305,-0.053420994383387495 +168004,840.0200000067306,-0.053420806162208 +168005,840.0250000067307,-0.053420617902554896 +168006,840.0300000067308,-0.05342042960441123 +168007,840.0350000067309,-0.05342024126776002 +168008,840.040000006731,-0.053420052892584294 +168009,840.0450000067311,-0.053419864478867055 +168010,840.0500000067312,-0.05341967602659129 +168011,840.0550000067313,-0.05341948753573999 +168012,840.0600000067315,-0.05341929900629611 +168013,840.0650000067316,-0.05341911043824264 +168014,840.0700000067317,-0.05341892183156253 +168015,840.0750000067318,-0.053418733186238715 +168016,840.0800000067319,-0.053418544502254126 +168017,840.085000006732,-0.05341835577959168 +168018,840.0900000067321,-0.0534181670182343 +168019,840.0950000067322,-0.05341797821816488 +168020,840.1000000067323,-0.05341778937936631 +168021,840.1050000067324,-0.05341760050182148 +168022,840.1100000067325,-0.053417411585513254 +168023,840.1150000067327,-0.05341722263042448 +168024,840.1200000067328,-0.05341703363653801 +168025,840.1250000067329,-0.05341684460383668 +168026,840.130000006733,-0.05341665553230333 +168027,840.1350000067331,-0.05341646642192076 +168028,840.1400000067332,-0.05341627727267179 +168029,840.1450000067333,-0.05341608808453921 +168030,840.1500000067334,-0.0534158988575058 +168031,840.1550000067335,-0.05341570959155433 +168032,840.1600000067336,-0.05341552028666757 +168033,840.1650000067337,-0.05341533094282828 +168034,840.1700000067339,-0.0534151415600192 +168035,840.175000006734,-0.053414952138223046 +168036,840.1800000067341,-0.05341476267742256 +168037,840.1850000067342,-0.053414573177600434 +168038,840.1900000067343,-0.053414383638739384 +168039,840.1950000067344,-0.05341419406082208 +168040,840.2000000067345,-0.053414004443831216 +168041,840.2050000067346,-0.053413814787749446 +168042,840.2100000067347,-0.053413625092559446 +168043,840.2150000067348,-0.053413435358243846 +168044,840.220000006735,-0.05341324558478529 +168045,840.2250000067351,-0.05341305577216639 +168046,840.2300000067352,-0.05341286592036977 +168047,840.2350000067353,-0.053412676029378034 +168048,840.2400000067354,-0.05341248609917376 +168049,840.2450000067355,-0.053412296129739543 +168050,840.2500000067356,-0.05341210612105796 +168051,840.2550000067357,-0.053411916073111555 +168052,840.2600000067358,-0.053411725985882896 +168053,840.2650000067359,-0.053411535859354514 +168054,840.270000006736,-0.05341134569350894 +168055,840.2750000067361,-0.05341115548832868 +168056,840.2800000067363,-0.05341096524379623 +168057,840.2850000067364,-0.05341077495989412 +168058,840.2900000067365,-0.053410584636604794 +168059,840.2950000067366,-0.05341039427391077 +168060,840.3000000067367,-0.05341020387179448 +168061,840.3050000067368,-0.05341001343023838 +168062,840.3100000067369,-0.05340982294922492 +168063,840.315000006737,-0.05340963242873652 +168064,840.3200000067371,-0.05340944186875561 +168065,840.3250000067372,-0.05340925126926459 +168066,840.3300000067374,-0.053409060630245864 +168067,840.3350000067375,-0.05340886995168181 +168068,840.3400000067376,-0.05340867923355481 +168069,840.3450000067377,-0.05340848847584722 +168070,840.3500000067378,-0.05340829767854142 +168071,840.3550000067379,-0.053408106841619715 +168072,840.360000006738,-0.05340791596506446 +168073,840.3650000067381,-0.05340772504885798 +168074,840.3700000067382,-0.053407534092982586 +168075,840.3750000067383,-0.05340734309742057 +168076,840.3800000067384,-0.0534071520621542 +168077,840.3850000067386,-0.053406960987165776 +168078,840.3900000067387,-0.053406769872437566 +168079,840.3950000067388,-0.05340657871795182 +168080,840.4000000067389,-0.053406387523690785 +168081,840.405000006739,-0.053406196289636686 +168082,840.4100000067391,-0.05340600501577174 +168083,840.4150000067392,-0.05340581370207818 +168084,840.4200000067393,-0.05340562234853819 +168085,840.4250000067394,-0.05340543095513397 +168086,840.4300000067395,-0.053405239521847676 +168087,840.4350000067396,-0.0534050480486615 +168088,840.4400000067398,-0.053404856535557585 +168089,840.4450000067399,-0.05340466498251807 +168090,840.45000000674,-0.053404473389525094 +168091,840.4550000067401,-0.05340428175656079 +168092,840.4600000067402,-0.05340409008360726 +168093,840.4650000067403,-0.0534038983706466 +168094,840.4700000067404,-0.053403706617660904 +168095,840.4750000067405,-0.053403514824632244 +168096,840.4800000067406,-0.0534033229915427 +168097,840.4850000067407,-0.0534031311183743 +168098,840.4900000067408,-0.05340293920510912 +168099,840.495000006741,-0.05340274725172918 +168100,840.5000000067411,-0.053402555258216494 +168101,840.5050000067412,-0.053402363224553086 +168102,840.5100000067413,-0.05340217115072095 +168103,840.5150000067414,-0.053401979036702074 +168104,840.5200000067415,-0.05340178688247844 +168105,840.5250000067416,-0.053401594688031996 +168106,840.5300000067417,-0.053401402453344717 +168107,840.5350000067418,-0.05340121017839853 +168108,840.5400000067419,-0.05340101786317539 +168109,840.545000006742,-0.05340082550765719 +168110,840.5500000067422,-0.05340063311182586 +168111,840.5550000067423,-0.053400440675663276 +168112,840.5600000067424,-0.05340024819915135 +168113,840.5650000067425,-0.05340005568227194 +168114,840.5700000067426,-0.05339986312500692 +168115,840.5750000067427,-0.053399670527338135 +168116,840.5800000067428,-0.05339947788924744 +168117,840.5850000067429,-0.05339928521071664 +168118,840.590000006743,-0.053399092491727584 +168119,840.5950000067431,-0.05339889973226207 +168120,840.6000000067432,-0.05339870693230188 +168121,840.6050000067434,-0.053398514091828816 +168122,840.6100000067435,-0.053398321210824634 +168123,840.6150000067436,-0.05339812828927112 +168124,840.6200000067437,-0.053397935327149995 +168125,840.6250000067438,-0.05339774232444302 +168126,840.6300000067439,-0.053397549281131905 +168127,840.635000006744,-0.053397356197198376 +168128,840.6400000067441,-0.053397163072624154 +168129,840.6450000067442,-0.053396969907390915 +168130,840.6500000067443,-0.05339677670148033 +168131,840.6550000067444,-0.053396583454874094 +168132,840.6600000067446,-0.053396390167553834 +168133,840.6650000067447,-0.05339619683950123 +168134,840.6700000067448,-0.05339600347069791 +168135,840.6750000067449,-0.053395810061125475 +168136,840.680000006745,-0.053395616610765556 +168137,840.6850000067451,-0.05339542311959977 +168138,840.6900000067452,-0.05339522958760968 +168139,840.6950000067453,-0.05339503601477688 +168140,840.7000000067454,-0.05339484240108293 +168141,840.7050000067455,-0.05339464874650938 +168142,840.7100000067456,-0.05339445505103778 +168143,840.7150000067458,-0.05339426131464967 +168144,840.7200000067459,-0.05339406753732655 +168145,840.725000006746,-0.05339387371904995 +168146,840.7300000067461,-0.053393679859801355 +168147,840.7350000067462,-0.053393485959562254 +168148,840.7400000067463,-0.053393292018314116 +168149,840.7450000067464,-0.05339309803603841 +168150,840.7500000067465,-0.05339290401271658 +168151,840.7550000067466,-0.05339270994833008 +168152,840.7600000067467,-0.05339251584286032 +168153,840.7650000067468,-0.05339232169628872 +168154,840.770000006747,-0.053392127508596676 +168155,840.7750000067471,-0.053391933279765595 +168156,840.7800000067472,-0.05339173900977686 +168157,840.7850000067473,-0.05339154469861181 +168158,840.7900000067474,-0.05339135034625183 +168159,840.7950000067475,-0.053391155952678265 +168160,840.8000000067476,-0.053390961517872426 +168161,840.8050000067477,-0.05339076704181567 +168162,840.8100000067478,-0.053390572524489276 +168163,840.8150000067479,-0.05339037796587455 +168164,840.820000006748,-0.0533901833659528 +168165,840.8250000067482,-0.05338998872470526 +168166,840.8300000067483,-0.05338979404211323 +168167,840.8350000067484,-0.05338959931815793 +168168,840.8400000067485,-0.05338940455282064 +168169,840.8450000067486,-0.05338920974608254 +168170,840.8500000067487,-0.05338901489792488 +168171,840.8550000067488,-0.05338882000832885 +168172,840.8600000067489,-0.05338862507727563 +168173,840.865000006749,-0.053388430104746434 +168174,840.8700000067491,-0.05338823509072241 +168175,840.8750000067492,-0.0533880400351847 +168176,840.8800000067494,-0.05338784493811447 +168177,840.8850000067495,-0.053387649799492835 +168178,840.8900000067496,-0.053387454619300924 +168179,840.8950000067497,-0.05338725939751986 +168180,840.9000000067498,-0.05338706413413071 +168181,840.9050000067499,-0.05338686882911458 +168182,840.91000000675,-0.05338667348245254 +168183,840.9150000067501,-0.05338647809412564 +168184,840.9200000067502,-0.053386282664114944 +168185,840.9250000067503,-0.053386087192401475 +168186,840.9300000067504,-0.05338589167896628 +168187,840.9350000067506,-0.05338569612379034 +168188,840.9400000067507,-0.05338550052685467 +168189,840.9450000067508,-0.05338530488814027 +168190,840.9500000067509,-0.05338510920762809 +168191,840.955000006751,-0.053384913485299126 +168192,840.9600000067511,-0.05338471772113431 +168193,840.9650000067512,-0.05338452191511459 +168194,840.9700000067513,-0.053384326067220884 +168195,840.9750000067514,-0.05338413017743412 +168196,840.9800000067515,-0.053383934245735204 +168197,840.9850000067516,-0.05338373827210502 +168198,840.9900000067518,-0.053383542256524454 +168199,840.9950000067519,-0.05338334619897437 +168200,841.000000006752,-0.053383150099435624 +168201,841.0050000067521,-0.05338295395788906 +168202,841.0100000067522,-0.05338275777431551 +168203,841.0150000067523,-0.05338256154869579 +168204,841.0200000067524,-0.05338236528101072 +168205,841.0250000067525,-0.05338216897124109 +168206,841.0300000067526,-0.053381972619367675 +168207,841.0350000067527,-0.05338177622537124 +168208,841.0400000067528,-0.05338157978923256 +168209,841.045000006753,-0.05338138331093238 +168210,841.0500000067531,-0.053381186790451424 +168211,841.0550000067532,-0.05338099022777041 +168212,841.0600000067533,-0.05338079362287006 +168213,841.0650000067534,-0.05338059697573107 +168214,841.0700000067535,-0.05338040028633411 +168215,841.0750000067536,-0.053380203554659875 +168216,841.0800000067537,-0.053380006780689 +168217,841.0850000067538,-0.053379809964402156 +168218,841.0900000067539,-0.05337961310577997 +168219,841.095000006754,-0.05337941620480306 +168220,841.1000000067542,-0.05337921926145205 +168221,841.1050000067543,-0.05337902227570753 +168222,841.1100000067544,-0.05337882524755008 +168223,841.1150000067545,-0.05337862817696029 +168224,841.1200000067546,-0.053378431063918715 +168225,841.1250000067547,-0.05337823390840589 +168226,841.1300000067548,-0.05337803671040237 +168227,841.1350000067549,-0.05337783946988867 +168228,841.140000006755,-0.053377642186845306 +168229,841.1450000067551,-0.05337744486125279 +168230,841.1500000067552,-0.05337724749309159 +168231,841.1550000067554,-0.053377050082342184 +168232,841.1600000067555,-0.05337685262898503 +168233,841.1650000067556,-0.0533766551330006 +168234,841.1700000067557,-0.05337645759436931 +168235,841.1750000067558,-0.0533762600130716 +168236,841.1800000067559,-0.05337606238908788 +168237,841.185000006756,-0.05337586472239853 +168238,841.1900000067561,-0.05337566701298397 +168239,841.1950000067562,-0.053375469260824544 +168240,841.2000000067563,-0.05337527146590064 +168241,841.2050000067564,-0.05337507362819258 +168242,841.2100000067566,-0.05337487574768073 +168243,841.2150000067567,-0.0533746778243454 +168244,841.2200000067568,-0.053374479858166894 +168245,841.2250000067569,-0.05337428184912552 +168246,841.230000006757,-0.05337408379720158 +168247,841.2350000067571,-0.053373885702375334 +168248,841.2400000067572,-0.053373687564627036 +168249,841.2450000067573,-0.05337348938393694 +168250,841.2500000067574,-0.05337329116028531 +168251,841.2550000067575,-0.05337309289365233 +168252,841.2600000067577,-0.05337289458401823 +168253,841.2650000067578,-0.05337269623136321 +168254,841.2700000067579,-0.05337249783566745 +168255,841.275000006758,-0.05337229939691112 +168256,841.2800000067581,-0.05337210091507438 +168257,841.2850000067582,-0.05337190239013739 +168258,841.2900000067583,-0.05337170382208029 +168259,841.2950000067584,-0.053371505210883186 +168260,841.3000000067585,-0.053371306556526193 +168261,841.3050000067586,-0.05337110785898941 +168262,841.3100000067587,-0.05337090911825291 +168263,841.3150000067589,-0.05337071033429677 +168264,841.320000006759,-0.05337051150710106 +168265,841.3250000067591,-0.05337031263664582 +168266,841.3300000067592,-0.053370113722911075 +168267,841.3350000067593,-0.053369914765876846 +168268,841.3400000067594,-0.05336971576552316 +168269,841.3450000067595,-0.05336951672182998 +168270,841.3500000067596,-0.05336931763477732 +168271,841.3550000067597,-0.05336911850434513 +168272,841.3600000067598,-0.05336891933051337 +168273,841.3650000067599,-0.05336872011326197 +168274,841.37000000676,-0.053368520852570885 +168275,841.3750000067602,-0.053368321548420014 +168276,841.3800000067603,-0.05336812220078926 +168277,841.3850000067604,-0.053367922809658526 +168278,841.3900000067605,-0.053367723375007683 +168279,841.3950000067606,-0.05336752389681661 +168280,841.4000000067607,-0.05336732437506514 +168281,841.4050000067608,-0.05336712480973313 +168282,841.4100000067609,-0.0533669252008004 +168283,841.415000006761,-0.05336672554824675 +168284,841.4200000067611,-0.05336652585205201 +168285,841.4250000067613,-0.05336632611219594 +168286,841.4300000067614,-0.05336612632865832 +168287,841.4350000067615,-0.05336592650141894 +168288,841.4400000067616,-0.053365726630457515 +168289,841.4450000067617,-0.053365526715753786 +168290,841.4500000067618,-0.053365326757287494 +168291,841.4550000067619,-0.053365126755038336 +168292,841.460000006762,-0.05336492670898601 +168293,841.4650000067621,-0.05336472661911019 +168294,841.4700000067622,-0.05336452648539056 +168295,841.4750000067623,-0.05336432630780676 +168296,841.4800000067625,-0.05336412608633846 +168297,841.4850000067626,-0.05336392582096527 +168298,841.4900000067627,-0.053363725511666814 +168299,841.4950000067628,-0.05336352515842271 +168300,841.5000000067629,-0.05336332476121253 +168301,841.505000006763,-0.05336312432001586 +168302,841.5100000067631,-0.053362923834812254 +168303,841.5150000067632,-0.05336272330558128 +168304,841.5200000067633,-0.05336252273230248 +168305,841.5250000067634,-0.05336232211495536 +168306,841.5300000067635,-0.05336212145351945 +168307,841.5350000067637,-0.05336192074797424 +168308,841.5400000067638,-0.05336171999829921 +168309,841.5450000067639,-0.05336151920447384 +168310,841.550000006764,-0.05336131836647759 +168311,841.5550000067641,-0.053361117484289906 +168312,841.5600000067642,-0.05336091655789022 +168313,841.5650000067643,-0.05336071558725796 +168314,841.5700000067644,-0.05336051457237252 +168315,841.5750000067645,-0.0533603135132133 +168316,841.5800000067646,-0.053360112409759665 +168317,841.5850000067647,-0.053359911261991 +168318,841.5900000067649,-0.05335971006988665 +168319,841.595000006765,-0.05335950883342595 +168320,841.6000000067651,-0.053359307552588234 +168321,841.6050000067652,-0.053359106227352814 +168322,841.6100000067653,-0.05335890485769897 +168323,841.6150000067654,-0.05335870344360602 +168324,841.6200000067655,-0.05335850198505321 +168325,841.6250000067656,-0.05335830048201982 +168326,841.6300000067657,-0.05335809893448507 +168327,841.6350000067658,-0.05335789734242822 +168328,841.640000006766,-0.05335769570582846 +168329,841.645000006766,-0.05335749402466502 +168330,841.6500000067662,-0.05335729229891707 +168331,841.6550000067663,-0.0533570905285638 +168332,841.6600000067664,-0.053356888713584384 +168333,841.6650000067665,-0.05335668685395795 +168334,841.6700000067666,-0.053356484949663656 +168335,841.6750000067667,-0.05335628300068062 +168336,841.6800000067668,-0.05335608100698795 +168337,841.6850000067669,-0.05335587896856474 +168338,841.690000006767,-0.05335567688539007 +168339,841.6950000067671,-0.05335547475744302 +168340,841.7000000067673,-0.05335527258470265 +168341,841.7050000067674,-0.05335507036714799 +168342,841.7100000067675,-0.05335486810475807 +168343,841.7150000067676,-0.05335466579751191 +168344,841.7200000067677,-0.05335446344538852 +168345,841.7250000067678,-0.053354261048366866 +168346,841.7300000067679,-0.05335405860642594 +168347,841.735000006768,-0.05335385611954469 +168348,841.7400000067681,-0.05335365358770207 +168349,841.7450000067682,-0.05335345101087701 +168350,841.7500000067683,-0.05335324838904843 +168351,841.7550000067685,-0.053353045722195236 +168352,841.7600000067686,-0.05335284301029632 +168353,841.7650000067687,-0.053352640253330565 +168354,841.7700000067688,-0.05335243745127683 +168355,841.7750000067689,-0.05335223460411396 +168356,841.780000006769,-0.0533520317118208 +168357,841.7850000067691,-0.05335182877437617 +168358,841.7900000067692,-0.053351625791758894 +168359,841.7950000067693,-0.05335142276394774 +168360,841.8000000067694,-0.05335121969092151 +168361,841.8050000067695,-0.05335101657265896 +168362,841.8100000067697,-0.05335081340913885 +168363,841.8150000067698,-0.05335061020033993 +168364,841.8200000067699,-0.05335040694624091 +168365,841.82500000677,-0.053350203646820506 +168366,841.8300000067701,-0.05335000030205741 +168367,841.8350000067702,-0.053349796911930314 +168368,841.8400000067703,-0.05334959347641789 +168369,841.8450000067704,-0.0533493899954988 +168370,841.8500000067705,-0.053349186469151676 +168371,841.8550000067706,-0.053348982897355145 +168372,841.8600000067707,-0.05334877928008783 +168373,841.8650000067709,-0.05334857561732832 +168374,841.870000006771,-0.05334837190905522 +168375,841.8750000067711,-0.05334816815524708 +168376,841.8800000067712,-0.05334796435588248 +168377,841.8850000067713,-0.053347760510939965 +168378,841.8900000067714,-0.053347556620398036 +168379,841.8950000067715,-0.053347352684235246 +168380,841.9000000067716,-0.053347148702430076 +168381,841.9050000067717,-0.053346944674961025 +168382,841.9100000067718,-0.05334674060180656 +168383,841.915000006772,-0.05334653648294514 +168384,841.920000006772,-0.053346332318355213 +168385,841.9250000067722,-0.05334612810801521 +168386,841.9300000067723,-0.05334592385190355 +168387,841.9350000067724,-0.05334571954999864 +168388,841.9400000067725,-0.05334551520227886 +168389,841.9450000067726,-0.0533453108087226 +168390,841.9500000067727,-0.05334510636930821 +168391,841.9550000067728,-0.053344901884014036 +168392,841.9600000067729,-0.05334469735281842 +168393,841.965000006773,-0.053344492775699665 +168394,841.9700000067731,-0.053344288152636095 +168395,841.9750000067733,-0.053344083483606 +168396,841.9800000067734,-0.05334387876858763 +168397,841.9850000067735,-0.05334367400755927 +168398,841.9900000067736,-0.053343469200499156 +168399,841.9950000067737,-0.05334326434738553 +168400,842.0000000067738,-0.053343059448196596 +168401,842.0050000067739,-0.05334285450291058 +168402,842.010000006774,-0.053342649511505656 +168403,842.0150000067741,-0.05334244447396 +168404,842.0200000067742,-0.05334223939025179 +168405,842.0250000067743,-0.053342034260359154 +168406,842.0300000067745,-0.053341829084260224 +168407,842.0350000067746,-0.053341623861933134 +168408,842.0400000067747,-0.05334141859335597 +168409,842.0450000067748,-0.05334121327850683 +168410,842.0500000067749,-0.0533410079173638 +168411,842.055000006775,-0.05334080250990492 +168412,842.0600000067751,-0.053340597056108253 +168413,842.0650000067752,-0.05334039155595183 +168414,842.0700000067753,-0.05334018600941364 +168415,842.0750000067754,-0.05333998041647172 +168416,842.0800000067755,-0.05333977477710404 +168417,842.0850000067757,-0.053339569091288584 +168418,842.0900000067758,-0.0533393633590033 +168419,842.0950000067759,-0.05333915758022614 +168420,842.100000006776,-0.05333895175493504 +168421,842.1050000067761,-0.053338745883107906 +168422,842.1100000067762,-0.053338539964722646 +168423,842.1150000067763,-0.053338333999757126 +168424,842.1200000067764,-0.053338127988189245 +168425,842.1250000067765,-0.05333792192999684 +168426,842.1300000067766,-0.05333771582515776 +168427,842.1350000067767,-0.053337509673649836 +168428,842.1400000067769,-0.05333730347545088 +168429,842.145000006777,-0.053337097230538706 +168430,842.1500000067771,-0.053336890938891074 +168431,842.1550000067772,-0.053336684600485754 +168432,842.1600000067773,-0.05333647821530052 +168433,842.1650000067774,-0.05333627178331309 +168434,842.1700000067775,-0.053336065304501204 +168435,842.1750000067776,-0.05333585877884257 +168436,842.1800000067777,-0.05333565220631488 +168437,842.1850000067778,-0.05333544558689582 +168438,842.190000006778,-0.05333523892056304 +168439,842.1950000067781,-0.05333503220729421 +168440,842.2000000067782,-0.05333482544706696 +168441,842.2050000067783,-0.053334618639858916 +168442,842.2100000067784,-0.05333441178564768 +168443,842.2150000067785,-0.05333420488441084 +168444,842.2200000067786,-0.05333399793612598 +168445,842.2250000067787,-0.05333379094077067 +168446,842.2300000067788,-0.053333583898322434 +168447,842.2350000067789,-0.05333337680875881 +168448,842.240000006779,-0.05333316967205734 +168449,842.2450000067792,-0.05333296248819551 +168450,842.2500000067793,-0.05333275525715081 +168451,842.2550000067794,-0.053332547978900705 +168452,842.2600000067795,-0.053332340653422676 +168453,842.2650000067796,-0.05333213328069414 +168454,842.2700000067797,-0.05333192586069254 +168455,842.2750000067798,-0.05333171839339528 +168456,842.2800000067799,-0.05333151087877977 +168457,842.28500000678,-0.053331303316823384 +168458,842.2900000067801,-0.053331095707503495 +168459,842.2950000067802,-0.053330888050797456 +168460,842.3000000067804,-0.0533306803466826 +168461,842.3050000067805,-0.05333047259513624 +168462,842.3100000067806,-0.05333026479613571 +168463,842.3150000067807,-0.05333005694965828 +168464,842.3200000067808,-0.05332984905568125 +168465,842.3250000067809,-0.05332964111418187 +168466,842.330000006781,-0.05332943312513739 +168467,842.3350000067811,-0.05332922508852502 +168468,842.3400000067812,-0.053329017004322014 +168469,842.3450000067813,-0.053328808872505545 +168470,842.3500000067814,-0.05332860069305282 +168471,842.3550000067816,-0.05332839246594101 +168472,842.3600000067817,-0.05332818419114726 +168473,842.3650000067818,-0.05332797586864871 +168474,842.3700000067819,-0.05332776749842249 +168475,842.375000006782,-0.05332755908044572 +168476,842.3800000067821,-0.05332735061469549 +168477,842.3850000067822,-0.05332714210114888 +168478,842.3900000067823,-0.053326933539782954 +168479,842.3950000067824,-0.053326724930574755 +168480,842.4000000067825,-0.05332651627350133 +168481,842.4050000067826,-0.05332630756853969 +168482,842.4100000067828,-0.05332609881566684 +168483,842.4150000067829,-0.05332589001485977 +168484,842.420000006783,-0.05332568116609545 +168485,842.4250000067831,-0.05332547226935084 +168486,842.4300000067832,-0.05332526332460289 +168487,842.4350000067833,-0.05332505433182851 +168488,842.4400000067834,-0.05332484529100464 +168489,842.4450000067835,-0.05332463620210814 +168490,842.4500000067836,-0.05332442706511591 +168491,842.4550000067837,-0.053324217880004826 +168492,842.4600000067838,-0.05332400864675172 +168493,842.465000006784,-0.05332379936533343 +168494,842.4700000067841,-0.05332359003572678 +168495,842.4750000067842,-0.05332338065790857 +168496,842.4800000067843,-0.053323171231855586 +168497,842.4850000067844,-0.053322961757544605 +168498,842.4900000067845,-0.05332275223495238 +168499,842.4950000067846,-0.053322542664055644 +168500,842.5000000067847,-0.05332233304483114 +168501,842.5050000067848,-0.053322123377255566 +168502,842.5100000067849,-0.053321913661305634 +168503,842.515000006785,-0.053321703896958 +168504,842.5200000067852,-0.05332149408418934 +168505,842.5250000067853,-0.05332128422297629 +168506,842.5300000067854,-0.0533210743132955 +168507,842.5350000067855,-0.053320864355123565 +168508,842.5400000067856,-0.0533206543484371 +168509,842.5450000067857,-0.05332044429321269 +168510,842.5500000067858,-0.0533202341894269 +168511,842.5550000067859,-0.05332002403705629 +168512,842.560000006786,-0.05331981383607739 +168513,842.5650000067861,-0.05331960358646673 +168514,842.5700000067862,-0.0533193932882008 +168515,842.5750000067864,-0.0533191829412561 +168516,842.5800000067865,-0.05331897254560911 +168517,842.5850000067866,-0.0533187621012363 +168518,842.5900000067867,-0.05331855160811409 +168519,842.5950000067868,-0.053318341066218924 +168520,842.6000000067869,-0.0533181304755272 +168521,842.605000006787,-0.053317919836015325 +168522,842.6100000067871,-0.05331770914765966 +168523,842.6150000067872,-0.053317498410436585 +168524,842.6200000067873,-0.053317287624322446 +168525,842.6250000067874,-0.05331707678929358 +168526,842.6300000067876,-0.0533168659053263 +168527,842.6350000067877,-0.05331665497239689 +168528,842.6400000067878,-0.05331644399048166 +168529,842.6450000067879,-0.05331623295955687 +168530,842.650000006788,-0.05331602187959877 +168531,842.6550000067881,-0.05331581075058358 +168532,842.6600000067882,-0.05331559957248754 +168533,842.6650000067883,-0.05331538834528687 +168534,842.6700000067884,-0.05331517706895773 +168535,842.6750000067885,-0.05331496574347629 +168536,842.6800000067886,-0.053314754368818724 +168537,842.6850000067888,-0.05331454294496118 +168538,842.6900000067889,-0.05331433147187976 +168539,842.695000006789,-0.05331411994955058 +168540,842.7000000067891,-0.05331390837794971 +168541,842.7050000067892,-0.05331369675705328 +168542,842.7100000067893,-0.0533134850868373 +168543,842.7150000067894,-0.05331327336727785 +168544,842.7200000067895,-0.05331306159835091 +168545,842.7250000067896,-0.053312849780032534 +168546,842.7300000067897,-0.05331263791229871 +168547,842.7350000067898,-0.05331242599512541 +168548,842.74000000679,-0.05331221402848858 +168549,842.7450000067901,-0.05331200201236419 +168550,842.7500000067902,-0.05331178994672817 +168551,842.7550000067903,-0.05331157783155642 +168552,842.7600000067904,-0.053311365666824845 +168553,842.7650000067905,-0.05331115345250933 +168554,842.7700000067906,-0.05331094118858573 +168555,842.7750000067907,-0.0533107288750299 +168556,842.7800000067908,-0.05331051651181767 +168557,842.7850000067909,-0.053310304098924864 +168558,842.790000006791,-0.05331009163632727 +168559,842.7950000067912,-0.053309879124000675 +168560,842.8000000067913,-0.05330966656192085 +168561,842.8050000067914,-0.05330945395006354 +168562,842.8100000067915,-0.053309241288404495 +168563,842.8150000067916,-0.0533090285769194 +168564,842.8200000067917,-0.053308815815583985 +168565,842.8250000067918,-0.05330860300437392 +168566,842.8300000067919,-0.05330839014326489 +168567,842.835000006792,-0.05330817723223252 +168568,842.8400000067921,-0.05330796427125247 +168569,842.8450000067922,-0.05330775126030035 +168570,842.8500000067924,-0.05330753819935175 +168571,842.8550000067925,-0.05330732508838228 +168572,842.8600000067926,-0.0533071119273675 +168573,842.8650000067927,-0.05330689871628295 +168574,842.8700000067928,-0.053306685455104176 +168575,842.8750000067929,-0.05330647214380669 +168576,842.880000006793,-0.053306258782366 +168577,842.8850000067931,-0.0533060453707576 +168578,842.8900000067932,-0.05330583190895695 +168579,842.8950000067933,-0.053305618396939494 +168580,842.9000000067934,-0.053305404834680686 +168581,842.9050000067936,-0.05330519122215594 +168582,842.9100000067937,-0.05330497755934066 +168583,842.9150000067938,-0.053304763846210225 +168584,842.9200000067939,-0.05330455008274001 +168585,842.925000006794,-0.053304336268905364 +168586,842.9300000067941,-0.053304122404681624 +168587,842.9350000067942,-0.05330390849004409 +168588,842.9400000067943,-0.05330369452496811 +168589,842.9450000067944,-0.05330348050942892 +168590,842.9500000067945,-0.053303266443401824 +168591,842.9550000067946,-0.05330305232686206 +168592,842.9600000067948,-0.05330283815978486 +168593,842.9650000067949,-0.053302623942145445 +168594,842.970000006795,-0.05330240967391902 +168595,842.9750000067951,-0.05330219535508075 +168596,842.9800000067952,-0.05330198098560584 +168597,842.9850000067953,-0.05330176656546941 +168598,842.9900000067954,-0.0533015520946466 +168599,842.9950000067955,-0.05330133757311252 +168600,843.0000000067956,-0.05330112300084228 +168601,843.0050000067957,-0.05330090837781097 +168602,843.0100000067958,-0.053300693703993644 +168603,843.015000006796,-0.05330047897936535 +168604,843.0200000067961,-0.053300264203901125 +168605,843.0250000067962,-0.05330004937757597 +168606,843.0300000067963,-0.05329983450036489 +168607,843.0350000067964,-0.05329961957224288 +168608,843.0400000067965,-0.05329940459318488 +168609,843.0450000067966,-0.05329918956316584 +168610,843.0500000067967,-0.053298974482160706 +168611,843.0550000067968,-0.05329875935014438 +168612,843.0600000067969,-0.05329854416709176 +168613,843.065000006797,-0.05329832893297773 +168614,843.0700000067972,-0.05329811364777712 +168615,843.0750000067973,-0.053297898311464795 +168616,843.0800000067974,-0.05329768292401558 +168617,843.0850000067975,-0.05329746748540429 +168618,843.0900000067976,-0.053297251995605706 +168619,843.0950000067977,-0.053297036454594604 +168620,843.1000000067978,-0.05329682086234574 +168621,843.1050000067979,-0.053296605218833865 +168622,843.110000006798,-0.053296389524033684 +168623,843.1150000067981,-0.05329617377791992 +168624,843.1200000067983,-0.053295957980467254 +168625,843.1250000067984,-0.053295742131650344 +168626,843.1300000067985,-0.05329552623144386 +168627,843.1350000067986,-0.053295310279822435 +168628,843.1400000067987,-0.05329509427676068 +168629,843.1450000067988,-0.053294878222233194 +168630,843.1500000067989,-0.053294662116214565 +168631,843.155000006799,-0.05329444595867936 +168632,843.1600000067991,-0.05329422974960214 +168633,843.1650000067992,-0.05329401348895742 +168634,843.1700000067993,-0.053293797176719705 +168635,843.1750000067995,-0.05329358081286351 +168636,843.1800000067996,-0.053293364397363305 +168637,843.1850000067997,-0.05329314793019355 +168638,843.1900000067998,-0.05329293141132871 +168639,843.1950000067999,-0.05329271484074319 +168640,843.2000000068,-0.053292498218411394 +168641,843.2050000068001,-0.05329228154430773 +168642,843.2100000068002,-0.053292064818406544 +168643,843.2150000068003,-0.05329184804068221 +168644,843.2200000068004,-0.05329163121110908 +168645,843.2250000068005,-0.05329141432966145 +168646,843.2300000068007,-0.05329119739631363 +168647,843.2350000068008,-0.05329098041103991 +168648,843.2400000068009,-0.05329076337381456 +168649,843.245000006801,-0.05329054628461182 +168650,843.2500000068011,-0.05329032914340593 +168651,843.2550000068012,-0.053290111950171096 +168652,843.2600000068013,-0.05328989470488152 +168653,843.2650000068014,-0.05328967740751138 +168654,843.2700000068015,-0.05328946005803484 +168655,843.2750000068016,-0.053289242656426025 +168656,843.2800000068017,-0.05328902520265909 +168657,843.2850000068019,-0.05328880769670812 +168658,843.290000006802,-0.053288590138547205 +168659,843.2950000068021,-0.053288372528150434 +168660,843.3000000068022,-0.05328815486549185 +168661,843.3050000068023,-0.05328793715054547 +168662,843.3100000068024,-0.05328771938328535 +168663,843.3150000068025,-0.05328750156368547 +168664,843.3200000068026,-0.05328728369171981 +168665,843.3250000068027,-0.053287065767362335 +168666,843.3300000068028,-0.05328684779058699 +168667,843.3350000068029,-0.05328662976136771 +168668,843.340000006803,-0.053286411679678396 +168669,843.3450000068032,-0.05328619354549295 +168670,843.3500000068033,-0.05328597535878524 +168671,843.3550000068034,-0.053285757119529126 +168672,843.3600000068035,-0.05328553882769843 +168673,843.3650000068036,-0.053285320483267 +168674,843.3700000068037,-0.053285102086208624 +168675,843.3750000068038,-0.05328488363649707 +168676,843.3800000068039,-0.053284665134106124 +168677,843.385000006804,-0.05328444657900953 +168678,843.3900000068041,-0.053284227971181014 +168679,843.3950000068043,-0.05328400931059429 +168680,843.4000000068044,-0.053283790597223046 +168681,843.4050000068045,-0.05328357183104096 +168682,843.4100000068046,-0.05328335301202168 +168683,843.4150000068047,-0.053283134140138855 +168684,843.4200000068048,-0.05328291521536611 +168685,843.4250000068049,-0.053282696237677014 +168686,843.430000006805,-0.05328247720704519 +168687,843.4350000068051,-0.053282258123444184 +168688,843.4400000068052,-0.05328203898684754 +168689,843.4450000068053,-0.05328181979722879 +168690,843.4500000068055,-0.05328160055456145 +168691,843.4550000068056,-0.05328138125881901 +168692,843.4600000068057,-0.05328116190997494 +168693,843.4650000068058,-0.05328094250800269 +168694,843.4700000068059,-0.0532807230528757 +168695,843.475000006806,-0.0532805035445674 +168696,843.4800000068061,-0.053280283983051166 +168697,843.4850000068062,-0.053280064368300385 +168698,843.4900000068063,-0.05327984470028844 +168699,843.4950000068064,-0.05327962497898865 +168700,843.5000000068065,-0.05327940520437436 +168701,843.5050000068067,-0.053279185376418854 +168702,843.5100000068068,-0.053278965495095434 +168703,843.5150000068069,-0.05327874556037737 +168704,843.520000006807,-0.05327852557223791 +168705,843.5250000068071,-0.053278305530650286 +168706,843.5300000068072,-0.053278085435587715 +168707,843.5350000068073,-0.05327786528702339 +168708,843.5400000068074,-0.053277645084930485 +168709,843.5450000068075,-0.05327742482928217 +168710,843.5500000068076,-0.05327720452005157 +168711,843.5550000068077,-0.05327698415721181 +168712,843.5600000068079,-0.053276763740736005 +168713,843.565000006808,-0.053276543270597214 +168714,843.5700000068081,-0.053276322746768516 +168715,843.5750000068082,-0.053276102169222954 +168716,843.5800000068083,-0.05327588153793354 +168717,843.5850000068084,-0.053275660852873316 +168718,843.5900000068085,-0.05327544011401524 +168719,843.5950000068086,-0.053275219321332286 +168720,843.6000000068087,-0.053274998474797414 +168721,843.6050000068088,-0.053274777574383564 +168722,843.610000006809,-0.05327455662006363 +168723,843.615000006809,-0.05327433561181053 +168724,843.6200000068092,-0.053274114549597115 +168725,843.6250000068093,-0.05327389343339625 +168726,843.6300000068094,-0.053273672263180784 +168727,843.6350000068095,-0.053273451038923524 +168728,843.6400000068096,-0.05327322976059728 +168729,843.6450000068097,-0.053273008428174805 +168730,843.6500000068098,-0.05327278704162889 +168731,843.6550000068099,-0.05327256560093227 +168732,843.66000000681,-0.053272344106057676 +168733,843.6650000068101,-0.053272122556977795 +168734,843.6700000068103,-0.053271900953665324 +168735,843.6750000068104,-0.05327167929609293 +168736,843.6800000068105,-0.053271457584233246 +168737,843.6850000068106,-0.053271235818058926 +168738,843.6900000068107,-0.053271013997542555 +168739,843.6950000068108,-0.05327079212265673 +168740,843.7000000068109,-0.05327057019337403 +168741,843.705000006811,-0.053270348209666994 +168742,843.7100000068111,-0.05327012617150817 +168743,843.7150000068112,-0.053269904078870056 +168744,843.7200000068113,-0.05326968193172515 +168745,843.7250000068115,-0.053269459730045925 +168746,843.7300000068116,-0.05326923747380484 +168747,843.7350000068117,-0.05326901516297433 +168748,843.7400000068118,-0.053268792797526804 +168749,843.7450000068119,-0.053268570377434654 +168750,843.750000006812,-0.053268347902670286 +168751,843.7550000068121,-0.053268125373206035 +168752,843.7600000068122,-0.05326790278901424 +168753,843.7650000068123,-0.053267680150067234 +168754,843.7700000068124,-0.0532674574563373 +168755,843.7750000068125,-0.053267234707796735 +168756,843.7800000068127,-0.05326701190441779 +168757,843.7850000068128,-0.053266789046172706 +168758,843.7900000068129,-0.05326656613303371 +168759,843.795000006813,-0.053266343164972994 +168760,843.8000000068131,-0.05326612014196275 +168761,843.8050000068132,-0.05326589706397513 +168762,843.8100000068133,-0.053265673930982305 +168763,843.8150000068134,-0.05326545074295636 +168764,843.8200000068135,-0.05326522749986944 +168765,843.8250000068136,-0.053265004201693604 +168766,843.8300000068137,-0.05326478084840092 +168767,843.8350000068139,-0.05326455743996344 +168768,843.840000006814,-0.05326433397635319 +168769,843.8450000068141,-0.053264110457542174 +168770,843.8500000068142,-0.05326388688350238 +168771,843.8550000068143,-0.05326366325420577 +168772,843.8600000068144,-0.05326343956962428 +168773,843.8650000068145,-0.05326321582972986 +168774,843.8700000068146,-0.0532629920344944 +168775,843.8750000068147,-0.05326276818388981 +168776,843.8800000068148,-0.053262544277887944 +168777,843.885000006815,-0.053262320316460644 +168778,843.8900000068151,-0.05326209629957974 +168779,843.8950000068152,-0.05326187222721704 +168780,843.9000000068153,-0.05326164809934434 +168781,843.9050000068154,-0.05326142391593341 +168782,843.9100000068155,-0.053261199676955986 +168783,843.9150000068156,-0.05326097538238381 +168784,843.9200000068157,-0.053260751032188566 +168785,843.9250000068158,-0.053260526626341974 +168786,843.9300000068159,-0.053260302164815684 +168787,843.935000006816,-0.05326007764758135 +168788,843.9400000068161,-0.053259853074610605 +168789,843.9450000068163,-0.05325962844587504 +168790,843.9500000068164,-0.05325940376134625 +168791,843.9550000068165,-0.05325917902099582 +168792,843.9600000068166,-0.05325895422479528 +168793,843.9650000068167,-0.05325872937271616 +168794,843.9700000068168,-0.05325850446472997 +168795,843.9750000068169,-0.0532582795008082 +168796,843.980000006817,-0.053258054480922315 +168797,843.9850000068171,-0.05325782940504377 +168798,843.9900000068172,-0.05325760427314397 +168799,843.9950000068173,-0.053257379085194345 +168800,844.0000000068175,-0.05325715384116627 +168801,844.0050000068176,-0.05325692854103112 +168802,844.0100000068177,-0.05325670318476023 +168803,844.0150000068178,-0.05325647777232493 +168804,844.0200000068179,-0.05325625230369653 +168805,844.025000006818,-0.053256026778846305 +168806,844.0300000068181,-0.05325580119774553 +168807,844.0350000068182,-0.05325557556036543 +168808,844.0400000068183,-0.05325534986667725 +168809,844.0450000068184,-0.05325512411665218 +168810,844.0500000068185,-0.05325489831026141 +168811,844.0550000068187,-0.0532546724474761 +168812,844.0600000068188,-0.05325444652826738 +168813,844.0650000068189,-0.05325422055260638 +168814,844.070000006819,-0.05325399452046422 +168815,844.0750000068191,-0.05325376843181195 +168816,844.0800000068192,-0.05325354228662066 +168817,844.0850000068193,-0.053253316084861356 +168818,844.0900000068194,-0.053253089826505076 +168819,844.0950000068195,-0.05325286351152282 +168820,844.1000000068196,-0.05325263713988555 +168821,844.1050000068198,-0.05325241071156424 +168822,844.1100000068199,-0.053252184226529824 +168823,844.11500000682,-0.053251957684753194 +168824,844.1200000068201,-0.05325173108620527 +168825,844.1250000068202,-0.05325150443085691 +168826,844.1300000068203,-0.05325127771867898 +168827,844.1350000068204,-0.0532510509496423 +168828,844.1400000068205,-0.053250824123717705 +168829,844.1450000068206,-0.05325059724087596 +168830,844.1500000068207,-0.05325037030108784 +168831,844.1550000068208,-0.0532501433043241 +168832,844.160000006821,-0.05324991625055546 +168833,844.1650000068211,-0.053249689139752636 +168834,844.1700000068212,-0.053249461971886305 +168835,844.1750000068213,-0.053249234746927145 +168836,844.1800000068214,-0.05324900746484579 +168837,844.1850000068215,-0.05324878012561287 +168838,844.1900000068216,-0.05324855272919898 +168839,844.1950000068217,-0.0532483252755747 +168840,844.2000000068218,-0.05324809776471061 +168841,844.2050000068219,-0.05324787019657722 +168842,844.210000006822,-0.05324764257114508 +168843,844.2150000068222,-0.05324741488838466 +168844,844.2200000068223,-0.05324718714826645 +168845,844.2250000068224,-0.0532469593507609 +168846,844.2300000068225,-0.053246731495838445 +168847,844.2350000068226,-0.0532465035834695 +168848,844.2400000068227,-0.053246275613624466 +168849,844.2450000068228,-0.053246047586273694 +168850,844.2500000068229,-0.05324581950138754 +168851,844.255000006823,-0.05324559135893634 +168852,844.2600000068231,-0.053245363158890384 +168853,844.2650000068232,-0.05324513490121999 +168854,844.2700000068234,-0.05324490658589538 +168855,844.2750000068235,-0.05324467821288682 +168856,844.2800000068236,-0.05324444978216454 +168857,844.2850000068237,-0.05324422129369871 +168858,844.2900000068238,-0.05324399274745954 +168859,844.2950000068239,-0.05324376414341718 +168860,844.300000006824,-0.05324353548154177 +168861,844.3050000068241,-0.05324330676180341 +168862,844.3100000068242,-0.0532430779841722 +168863,844.3150000068243,-0.05324284914861821 +168864,844.3200000068244,-0.05324262025511149 +168865,844.3250000068246,-0.05324239130362207 +168866,844.3300000068247,-0.05324216229411997 +168867,844.3350000068248,-0.053241933226575146 +168868,844.3400000068249,-0.053241704100957576 +168869,844.345000006825,-0.053241474917237214 +168870,844.3500000068251,-0.05324124567538398 +168871,844.3550000068252,-0.05324101637536777 +168872,844.3600000068253,-0.05324078701715844 +168873,844.3650000068254,-0.05324055760072588 +168874,844.3700000068255,-0.0532403281260399 +168875,844.3750000068256,-0.05324009859307033 +168876,844.3800000068258,-0.05323986900178694 +168877,844.3850000068259,-0.05323963935215953 +168878,844.390000006826,-0.05323940964415782 +168879,844.3950000068261,-0.05323917987775154 +168880,844.4000000068262,-0.0532389500529104 +168881,844.4050000068263,-0.05323872016960408 +168882,844.4100000068264,-0.05323849022780225 +168883,844.4150000068265,-0.05323826022747453 +168884,844.4200000068266,-0.05323803016859054 +168885,844.4250000068267,-0.053237800051119895 +168886,844.4300000068268,-0.053237569875032136 +168887,844.435000006827,-0.05323733964029684 +168888,844.4400000068271,-0.05323710934688353 +168889,844.4450000068272,-0.0532368789947617 +168890,844.4500000068273,-0.05323664858390085 +168891,844.4550000068274,-0.05323641811427042 +168892,844.4600000068275,-0.05323618758583989 +168893,844.4650000068276,-0.053235956998578644 +168894,844.4700000068277,-0.05323572635245608 +168895,844.4750000068278,-0.053235495647441594 +168896,844.4800000068279,-0.05323526488350453 +168897,844.485000006828,-0.053235034060614216 +168898,844.4900000068282,-0.05323480317873995 +168899,844.4950000068283,-0.053234572237851024 +168900,844.5000000068284,-0.05323434123791671 +168901,844.5050000068285,-0.05323411017890624 +168902,844.5100000068286,-0.05323387906078884 +168903,844.5150000068287,-0.05323364788353369 +168904,844.5200000068288,-0.05323341664710999 +168905,844.5250000068289,-0.053233185351486884 +168906,844.530000006829,-0.0532329539966335 +168907,844.5350000068291,-0.05323272258251893 +168908,844.5400000068292,-0.05323249110911229 +168909,844.5450000068294,-0.05323225957638262 +168910,844.5500000068295,-0.053232027984298956 +168911,844.5550000068296,-0.05323179633283033 +168912,844.5600000068297,-0.05323156462194574 +168913,844.5650000068298,-0.05323133285161414 +168914,844.5700000068299,-0.053231101021804506 +168915,844.57500000683,-0.05323086913248575 +168916,844.5800000068301,-0.053230637183626785 +168917,844.5850000068302,-0.053230405175196484 +168918,844.5900000068303,-0.05323017310716371 +168919,844.5950000068304,-0.0532299409794973 +168920,844.6000000068306,-0.05322970879216608 +168921,844.6050000068307,-0.05322947654513882 +168922,844.6100000068308,-0.053229244238384314 +168923,844.6150000068309,-0.0532290118718713 +168924,844.620000006831,-0.053228779445568496 +168925,844.6250000068311,-0.053228546959444616 +168926,844.6300000068312,-0.05322831441346833 +168927,844.6350000068313,-0.05322808180760829 +168928,844.6400000068314,-0.05322784914183315 +168929,844.6450000068315,-0.053227616416111505 +168930,844.6500000068316,-0.053227383630411934 +168931,844.6550000068318,-0.053227150784703026 +168932,844.6600000068319,-0.053226917878953305 +168933,844.665000006832,-0.053226684913131296 +168934,844.6700000068321,-0.053226451887205484 +168935,844.6750000068322,-0.05322621880114437 +168936,844.6800000068323,-0.053225985654916375 +168937,844.6850000068324,-0.05322575244848994 +168938,844.6900000068325,-0.05322551918183348 +168939,844.6950000068326,-0.053225285854915344 +168940,844.7000000068327,-0.05322505246770392 +168941,844.7050000068328,-0.053224819020167534 +168942,844.710000006833,-0.05322458551227449 +168943,844.7150000068331,-0.05322435194399309 +168944,844.7200000068332,-0.05322411831529158 +168945,844.7250000068333,-0.05322388462613822 +168946,844.7300000068334,-0.05322365087650122 +168947,844.7350000068335,-0.053223417066348803 +168948,844.7400000068336,-0.053223183195649115 +168949,844.7450000068337,-0.0532229492643703 +168950,844.7500000068338,-0.0532227152724805 +168951,844.7550000068339,-0.053222481219947826 +168952,844.760000006834,-0.05322224710674034 +168953,844.7650000068342,-0.05322201293282611 +168954,844.7700000068343,-0.053221778698173156 +168955,844.7750000068344,-0.0532215444027495 +168956,844.7800000068345,-0.05322131004652313 +168957,844.7850000068346,-0.053221075629461996 +168958,844.7900000068347,-0.05322084115153405 +168959,844.7950000068348,-0.0532206066127072 +168960,844.8000000068349,-0.053220372012949345 +168961,844.805000006835,-0.05322013735222835 +168962,844.8100000068351,-0.053219902630512066 +168963,844.8150000068352,-0.05321966784776832 +168964,844.8200000068354,-0.053219433003964894 +168965,844.8250000068355,-0.053219198099069574 +168966,844.8300000068356,-0.053218963133050114 +168967,844.8350000068357,-0.05321872810587423 +168968,844.8400000068358,-0.053218493017509645 +168969,844.8450000068359,-0.05321825786792401 +168970,844.850000006836,-0.053218022657085 +168971,844.8550000068361,-0.05321778738496026 +168972,844.8600000068362,-0.05321755205151739 +168973,844.8650000068363,-0.05321731665672397 +168974,844.8700000068364,-0.05321708120054756 +168975,844.8750000068366,-0.05321684568295569 +168976,844.8800000068367,-0.0532166101039159 +168977,844.8850000068368,-0.05321637446339565 +168978,844.8900000068369,-0.05321613876136243 +168979,844.895000006837,-0.05321590299778367 +168980,844.9000000068371,-0.05321566717262681 +168981,844.9050000068372,-0.05321543128585921 +168982,844.9100000068373,-0.053215195337448264 +168983,844.9150000068374,-0.05321495932736132 +168984,844.9200000068375,-0.053214723255565685 +168985,844.9250000068376,-0.05321448712202867 +168986,844.9300000068378,-0.053214250926717555 +168987,844.9350000068379,-0.05321401466959957 +168988,844.940000006838,-0.05321377835064195 +168989,844.9450000068381,-0.0532135419698119 +168990,844.9500000068382,-0.0532133055270766 +168991,844.9550000068383,-0.053213069022403206 +168992,844.9600000068384,-0.05321283245575884 +168993,844.9650000068385,-0.05321259582711062 +168994,844.9700000068386,-0.05321235913642561 +168995,844.9750000068387,-0.05321212238367086 +168996,844.9800000068388,-0.05321188556881343 +168997,844.985000006839,-0.05321164869182032 +168998,844.9900000068391,-0.05321141175265849 +168999,844.9950000068392,-0.053211174751294936 +169000,845.0000000068393,-0.05321093768769657 +169001,845.0050000068394,-0.05321070056183031 +169002,845.0100000068395,-0.053210463373663044 +169003,845.0150000068396,-0.05321022612316163 +169004,845.0200000068397,-0.053209988810292916 +169005,845.0250000068398,-0.05320975143502369 +169006,845.0300000068399,-0.05320951399732077 +169007,845.03500000684,-0.0532092764971509 +169008,845.0400000068402,-0.05320903893448082 +169009,845.0450000068403,-0.05320880130927725 +169010,845.0500000068404,-0.05320856362150688 +169011,845.0550000068405,-0.05320832587113638 +169012,845.0600000068406,-0.05320808805813239 +169013,845.0650000068407,-0.053207850182461526 +169014,845.0700000068408,-0.053207612244090374 +169015,845.0750000068409,-0.053207374242985495 +169016,845.080000006841,-0.05320713617911345 +169017,845.0850000068411,-0.053206898052440735 +169018,845.0900000068413,-0.05320665986293386 +169019,845.0950000068414,-0.05320642161055929 +169020,845.1000000068415,-0.053206183295283455 +169021,845.1050000068416,-0.053205944917072784 +169022,845.1100000068417,-0.05320570647589368 +169023,845.1150000068418,-0.05320546797171248 +169024,845.1200000068419,-0.053205229404495555 +169025,845.125000006842,-0.05320499077420921 +169026,845.1300000068421,-0.05320475208081975 +169027,845.1350000068422,-0.053204513324293434 +169028,845.1400000068423,-0.0532042745045965 +169029,845.1450000068425,-0.05320403562169517 +169030,845.1500000068426,-0.05320379667555565 +169031,845.1550000068427,-0.0532035576661441 +169032,845.1600000068428,-0.05320331859342665 +169033,845.1650000068429,-0.05320307945736943 +169034,845.170000006843,-0.05320284025793853 +169035,845.1750000068431,-0.053202600995100026 +169036,845.1800000068432,-0.05320236166881995 +169037,845.1850000068433,-0.05320212227906431 +169038,845.1900000068434,-0.053201882825799116 +169039,845.1950000068435,-0.053201643308990326 +169040,845.2000000068437,-0.05320140372860388 +169041,845.2050000068438,-0.05320116408460569 +169042,845.2100000068439,-0.05320092437696167 +169043,845.215000006844,-0.05320068460563765 +169044,845.2200000068441,-0.05320044477059949 +169045,845.2250000068442,-0.053200204871813 +169046,845.2300000068443,-0.05319996490924396 +169047,845.2350000068444,-0.05319972488285815 +169048,845.2400000068445,-0.05319948479262129 +169049,845.2450000068446,-0.05319924463849911 +169050,845.2500000068447,-0.053199004420457274 +169051,845.2550000068449,-0.05319876413846146 +169052,845.260000006845,-0.05319852379247729 +169053,845.2650000068451,-0.053198283382470395 +169054,845.2700000068452,-0.05319804290840634 +169055,845.2750000068453,-0.05319780237025069 +169056,845.2800000068454,-0.05319756176796898 +169057,845.2850000068455,-0.05319732110152671 +169058,845.2900000068456,-0.05319708037088937 +169059,845.2950000068457,-0.0531968395760224 +169060,845.3000000068458,-0.053196598716891245 +169061,845.305000006846,-0.0531963577934613 +169062,845.310000006846,-0.05319611680569794 +169063,845.3150000068462,-0.053195875753566525 +169064,845.3200000068463,-0.053195634637032384 +169065,845.3250000068464,-0.0531953934560608 +169066,845.3300000068465,-0.053195152210617054 +169067,845.3350000068466,-0.0531949109006664 +169068,845.3400000068467,-0.05319466952617407 +169069,845.3450000068468,-0.05319442808710524 +169070,845.3500000068469,-0.053194186583425083 +169071,845.355000006847,-0.05319394501509875 +169072,845.3600000068471,-0.05319370338209136 +169073,845.3650000068473,-0.053193461684368004 +169074,845.3700000068474,-0.05319321992189374 +169075,845.3750000068475,-0.053192978094633615 +169076,845.3800000068476,-0.05319273620255264 +169077,845.3850000068477,-0.05319249424561579 +169078,845.3900000068478,-0.053192252223788046 +169079,845.3950000068479,-0.05319201013703433 +169080,845.400000006848,-0.05319176798531954 +169081,845.4050000068481,-0.05319152576860858 +169082,845.4100000068482,-0.053191283486866296 +169083,845.4150000068483,-0.05319104114005752 +169084,845.4200000068485,-0.05319079872814705 +169085,845.4250000068486,-0.053190556251099655 +169086,845.4300000068487,-0.053190313708880096 +169087,845.4350000068488,-0.0531900711014531 +169088,845.4400000068489,-0.053189828428783344 +169089,845.445000006849,-0.05318958569083552 +169090,845.4500000068491,-0.05318934288757426 +169091,845.4550000068492,-0.05318910001896417 +169092,845.4600000068493,-0.05318885708496986 +169093,845.4650000068494,-0.053188614085555884 +169094,845.4700000068495,-0.05318837102068679 +169095,845.4750000068497,-0.053188127890327085 +169096,845.4800000068498,-0.05318788469444124 +169097,845.4850000068499,-0.05318764143299372 +169098,845.49000000685,-0.05318739810594895 +169099,845.4950000068501,-0.05318715471327134 +169100,845.5000000068502,-0.053186911254925265 +169101,845.5050000068503,-0.053186667730875076 +169102,845.5100000068504,-0.0531864241410851 +169103,845.5150000068505,-0.05318618048551962 +169104,845.5200000068506,-0.05318593676414291 +169105,845.5250000068507,-0.05318569297691921 +169106,845.5300000068509,-0.05318544912381275 +169107,845.535000006851,-0.05318520520478771 +169108,845.5400000068511,-0.053184961219808244 +169109,845.5450000068512,-0.05318471716883849 +169110,845.5500000068513,-0.05318447305184255 +169111,845.5550000068514,-0.0531842288687845 +169112,845.5600000068515,-0.05318398461962842 +169113,845.5650000068516,-0.05318374030433832 +169114,845.5700000068517,-0.05318349592287818 +169115,845.5750000068518,-0.05318325147521199 +169116,845.580000006852,-0.053183006961303694 +169117,845.585000006852,-0.0531827623811172 +169118,845.5900000068522,-0.053182517734616415 +169119,845.5950000068523,-0.05318227302176517 +169120,845.6000000068524,-0.053182028242527324 +169121,845.6050000068525,-0.05318178339686668 +169122,845.6100000068526,-0.05318153848474702 +169123,845.6150000068527,-0.05318129350613209 +169124,845.6200000068528,-0.053181048460985626 +169125,845.6250000068529,-0.053180803349271305 +169126,845.630000006853,-0.05318055817095281 +169127,845.6350000068531,-0.05318031292599379 +169128,845.6400000068533,-0.053180067614357854 +169129,845.6450000068534,-0.05317982223600859 +169130,845.6500000068535,-0.05317957679090955 +169131,845.6550000068536,-0.05317933127902427 +169132,845.6600000068537,-0.053179085700316264 +169133,845.6650000068538,-0.053178840054749 +169134,845.6700000068539,-0.05317859434228593 +169135,845.675000006854,-0.05317834856289048 +169136,845.6800000068541,-0.05317810271652603 +169137,845.6850000068542,-0.05317785680315595 +169138,845.6900000068543,-0.05317761082274359 +169139,845.6950000068545,-0.05317736477525224 +169140,845.7000000068546,-0.05317711866064521 +169141,845.7050000068547,-0.05317687247888573 +169142,845.7100000068548,-0.05317662622993703 +169143,845.7150000068549,-0.05317637991376232 +169144,845.720000006855,-0.053176133530324764 +169145,845.7250000068551,-0.0531758870795875 +169146,845.7300000068552,-0.053175640561513644 +169147,845.7350000068553,-0.05317539397606629 +169148,845.7400000068554,-0.053175147323208494 +169149,845.7450000068555,-0.05317490060290328 +169150,845.7500000068557,-0.05317465381511366 +169151,845.7550000068558,-0.0531744069598026 +169152,845.7600000068559,-0.053174160036933045 +169153,845.765000006856,-0.053173913046467916 +169154,845.7700000068561,-0.0531736659883701 +169155,845.7750000068562,-0.05317341886260246 +169156,845.7800000068563,-0.05317317166912783 +169157,845.7850000068564,-0.05317292440790901 +169158,845.7900000068565,-0.05317267707890878 +169159,845.7950000068566,-0.05317242968208987 +169160,845.8000000068567,-0.05317218221741503 +169161,845.8050000068569,-0.05317193468484692 +169162,845.810000006857,-0.053171687084348225 +169163,845.8150000068571,-0.053171439415881566 +169164,845.8200000068572,-0.05317119167940956 +169165,845.8250000068573,-0.05317094387489477 +169166,845.8300000068574,-0.05317069600229975 +169167,845.8350000068575,-0.05317044806158701 +169168,845.8400000068576,-0.05317020005271905 +169169,845.8450000068577,-0.05316995197565834 +169170,845.8500000068578,-0.0531697038303673 +169171,845.855000006858,-0.05316945561680834 +169172,845.8600000068581,-0.05316920733494383 +169173,845.8650000068582,-0.053168958984736135 +169174,845.8700000068583,-0.05316871056614755 +169175,845.8750000068584,-0.05316846207914038 +169176,845.8800000068585,-0.053168213523676885 +169177,845.8850000068586,-0.05316796489971928 +169178,845.8900000068587,-0.05316771620722977 +169179,845.8950000068588,-0.05316746744617055 +169180,845.9000000068589,-0.053167218616503746 +169181,845.905000006859,-0.05316696971819148 +169182,845.9100000068591,-0.05316672075119584 +169183,845.9150000068593,-0.05316647171547888 +169184,845.9200000068594,-0.053166222611002636 +169185,845.9250000068595,-0.05316597343772911 +169186,845.9300000068596,-0.05316572419562025 +169187,845.9350000068597,-0.053165474884638006 +169188,845.9400000068598,-0.0531652255047443 +169189,845.9450000068599,-0.05316497605590101 +169190,845.95000000686,-0.05316472653806999 +169191,845.9550000068601,-0.05316447695121306 +169192,845.9600000068602,-0.05316422729529202 +169193,845.9650000068604,-0.05316397757026863 +169194,845.9700000068605,-0.053163727776104626 +169195,845.9750000068606,-0.05316347791276171 +169196,845.9800000068607,-0.05316322798020157 +169197,845.9850000068608,-0.05316297797838585 +169198,845.9900000068609,-0.053162727907276164 +169199,845.995000006861,-0.0531624777668341 +169200,846.0000000068611,-0.05316222755702123 +169201,846.0050000068612,-0.05316197727779907 +169202,846.0100000068613,-0.05316172692912912 +169203,846.0150000068614,-0.05316147651097286 +169204,846.0200000068616,-0.05316122602329172 +169205,846.0250000068617,-0.053160975466047124 +169206,846.0300000068618,-0.05316072483920043 +169207,846.0350000068619,-0.053160474142713 +169208,846.040000006862,-0.05316022337654617 +169209,846.0450000068621,-0.05315997254066122 +169210,846.0500000068622,-0.0531597216350194 +169211,846.0550000068623,-0.05315947065958196 +169212,846.0600000068624,-0.05315921961431009 +169213,846.0650000068625,-0.053158968499164974 +169214,846.0700000068626,-0.053158717314107734 +169215,846.0750000068628,-0.05315846605909951 +169216,846.0800000068629,-0.053158214734101365 +169217,846.085000006863,-0.053157963339074354 +169218,846.0900000068631,-0.05315771187397951 +169219,846.0950000068632,-0.053157460338777794 +169220,846.1000000068633,-0.053157208733430196 +169221,846.1050000068634,-0.05315695705789764 +169222,846.1100000068635,-0.05315670531214103 +169223,846.1150000068636,-0.053156453496121234 +169224,846.1200000068637,-0.053156201609799086 +169225,846.1250000068638,-0.05315594965313541 +169226,846.130000006864,-0.05315569762609097 +169227,846.1350000068641,-0.053155445528626534 +169228,846.1400000068642,-0.0531551933607028 +169229,846.1450000068643,-0.053154941122280475 +169230,846.1500000068644,-0.05315468881332021 +169231,846.1550000068645,-0.053154436433782634 +169232,846.1600000068646,-0.053154183983628346 +169233,846.1650000068647,-0.05315393146281791 +169234,846.1700000068648,-0.05315367887131187 +169235,846.1750000068649,-0.053153426209070716 +169236,846.180000006865,-0.05315317347605493 +169237,846.1850000068652,-0.05315292067222497 +169238,846.1900000068653,-0.05315266779754123 +169239,846.1950000068654,-0.0531524148519641 +169240,846.2000000068655,-0.05315216183545394 +169241,846.2050000068656,-0.053151908747971065 +169242,846.2100000068657,-0.053151655589475766 +169243,846.2150000068658,-0.053151402359928296 +169244,846.2200000068659,-0.0531511490592889 +169245,846.225000006866,-0.05315089568751776 +169246,846.2300000068661,-0.05315064224457505 +169247,846.2350000068662,-0.05315038873042092 +169248,846.2400000068664,-0.05315013514501544 +169249,846.2450000068665,-0.053149881488318715 +169250,846.2500000068666,-0.05314962776029077 +169251,846.2550000068667,-0.05314937396089164 +169252,846.2600000068668,-0.053149120090081284 +169253,846.2650000068669,-0.05314886614781966 +169254,846.270000006867,-0.05314861213406668 +169255,846.2750000068671,-0.05314835804878224 +169256,846.2800000068672,-0.0531481038919262 +169257,846.2850000068673,-0.05314784966345836 +169258,846.2900000068674,-0.05314759536333854 +169259,846.2950000068676,-0.053147340991526494 +169260,846.3000000068677,-0.05314708654798194 +169261,846.3050000068678,-0.053146832032664605 +169262,846.3100000068679,-0.05314657744553414 +169263,846.315000006868,-0.053146322786550175 +169264,846.3200000068681,-0.05314606805567232 +169265,846.3250000068682,-0.05314581325286015 +169266,846.3300000068683,-0.05314555837807321 +169267,846.3350000068684,-0.053145303431271 +169268,846.3400000068685,-0.05314504841241302 +169269,846.3450000068686,-0.053144793321458696 +169270,846.3500000068688,-0.053144538158367456 +169271,846.3550000068689,-0.053144282923098675 +169272,846.360000006869,-0.053144027615611704 +169273,846.3650000068691,-0.05314377223586587 +169274,846.3700000068692,-0.05314351678382046 +169275,846.3750000068693,-0.05314326125943473 +169276,846.3800000068694,-0.05314300566266789 +169277,846.3850000068695,-0.053142749993479156 +169278,846.3900000068696,-0.05314249425182769 +169279,846.3950000068697,-0.05314223843767259 +169280,846.4000000068698,-0.05314198255097299 +169281,846.40500000687,-0.053141726591687914 +169282,846.4100000068701,-0.05314147055977642 +169283,846.4150000068702,-0.05314121445519752 +169284,846.4200000068703,-0.05314095827791016 +169285,846.4250000068704,-0.05314070202787329 +169286,846.4300000068705,-0.05314044570504581 +169287,846.4350000068706,-0.05314018930938658 +169288,846.4400000068707,-0.053139932840854456 +169289,846.4450000068708,-0.05313967629940824 +169290,846.4500000068709,-0.053139419685006704 +169291,846.455000006871,-0.05313916299760858 +169292,846.4600000068712,-0.053138906237172594 +169293,846.4650000068713,-0.05313864940365742 +169294,846.4700000068714,-0.053138392497021715 +169295,846.4750000068715,-0.05313813551722407 +169296,846.4800000068716,-0.053137878464223076 +169297,846.4850000068717,-0.05313762133797728 +169298,846.4900000068718,-0.05313736413844519 +169299,846.4950000068719,-0.05313710686558531 +169300,846.500000006872,-0.053136849519356065 +169301,846.5050000068721,-0.053136592099715885 +169302,846.5100000068722,-0.053136334606623155 +169303,846.5150000068724,-0.053136077040036214 +169304,846.5200000068725,-0.05313581939991339 +169305,846.5250000068726,-0.053135561686212966 +169306,846.5300000068727,-0.05313530389889321 +169307,846.5350000068728,-0.05313504603791233 +169308,846.5400000068729,-0.05313478810322852 +169309,846.545000006873,-0.05313453009479992 +169310,846.5500000068731,-0.053134272012584645 +169311,846.5550000068732,-0.05313401385654082 +169312,846.5600000068733,-0.05313375562662647 +169313,846.5650000068734,-0.05313349732279963 +169314,846.5700000068736,-0.05313323894501828 +169315,846.5750000068737,-0.05313298049324038 +169316,846.5800000068738,-0.053132721967423864 +169317,846.5850000068739,-0.0531324633675266 +169318,846.590000006874,-0.053132204693506456 +169319,846.5950000068741,-0.05313194594532125 +169320,846.6000000068742,-0.05313168712292878 +169321,846.6050000068743,-0.0531314282262868 +169322,846.6100000068744,-0.05313116925535304 +169323,846.6150000068745,-0.05313091021008519 +169324,846.6200000068746,-0.05313065109044089 +169325,846.6250000068748,-0.05313039189637778 +169326,846.6300000068749,-0.053130132627853426 +169327,846.635000006875,-0.053129873284825394 +169328,846.6400000068751,-0.05312961386725121 +169329,846.6450000068752,-0.05312935437508837 +169330,846.6500000068753,-0.053129094808294315 +169331,846.6550000068754,-0.053128835166826476 +169332,846.6600000068755,-0.05312857545064223 +169333,846.6650000068756,-0.053128315659698944 +169334,846.6700000068757,-0.053128055793953924 +169335,846.6750000068758,-0.05312779585336446 +169336,846.680000006876,-0.05312753583788782 +169337,846.6850000068761,-0.0531272757474812 +169338,846.6900000068762,-0.05312701558210179 +169339,846.6950000068763,-0.053126755341706744 +169340,846.7000000068764,-0.05312649502625318 +169341,846.7050000068765,-0.05312623463569818 +169342,846.7100000068766,-0.053125974169998785 +169343,846.7150000068767,-0.05312571362911202 +169344,846.7200000068768,-0.05312545301299485 +169345,846.7250000068769,-0.05312519232160423 +169346,846.730000006877,-0.05312493155489707 +169347,846.7350000068772,-0.05312467071283025 +169348,846.7400000068773,-0.05312440979536062 +169349,846.7450000068774,-0.05312414880244498 +169350,846.7500000068775,-0.053123887734040094 +169351,846.7550000068776,-0.05312362659010272 +169352,846.7600000068777,-0.05312336537058956 +169353,846.7650000068778,-0.05312310407545726 +169354,846.7700000068779,-0.05312284270466249 +169355,846.775000006878,-0.05312258125816185 +169356,846.7800000068781,-0.053122319735911874 +169357,846.7850000068782,-0.05312205813786913 +169358,846.7900000068784,-0.05312179646399011 +169359,846.7950000068785,-0.05312153471423126 +169360,846.8000000068786,-0.05312127288854903 +169361,846.8050000068787,-0.05312101098689981 +169362,846.8100000068788,-0.053120749009239944 +169363,846.8150000068789,-0.053120486955525764 +169364,846.820000006879,-0.05312022482571357 +169365,846.8250000068791,-0.053119962619759604 +169366,846.8300000068792,-0.053119700337620104 +169367,846.8350000068793,-0.053119437979251234 +169368,846.8400000068794,-0.05311917554460915 +169369,846.8450000068796,-0.053118913033649975 +169370,846.8500000068797,-0.05311865044632978 +169371,846.8550000068798,-0.053118387782604616 +169372,846.8600000068799,-0.05311812504243049 +169373,846.86500000688,-0.053117862225763375 +169374,846.8700000068801,-0.05311759933255921 +169375,846.8750000068802,-0.053117336362773916 +169376,846.8800000068803,-0.05311707331636333 +169377,846.8850000068804,-0.05311681019328331 +169378,846.8900000068805,-0.05311654699348965 +169379,846.8950000068807,-0.05311628371693811 +169380,846.9000000068808,-0.053116020363584426 +169381,846.9050000068809,-0.05311575693338428 +169382,846.910000006881,-0.05311549342629331 +169383,846.9150000068811,-0.05311522984226717 +169384,846.9200000068812,-0.053114966181261436 +169385,846.9250000068813,-0.05311470244323165 +169386,846.9300000068814,-0.05311443862813333 +169387,846.9350000068815,-0.05311417473592195 +169388,846.9400000068816,-0.05311391076655296 +169389,846.9450000068817,-0.053113646719981776 +169390,846.9500000068819,-0.053113382596163744 +169391,846.955000006882,-0.05311311839505423 +169392,846.9600000068821,-0.0531128541166085 +169393,846.9650000068822,-0.05311258976078185 +169394,846.9700000068823,-0.05311232532752948 +169395,846.9750000068824,-0.053112060816806604 +169396,846.9800000068825,-0.05311179622856837 +169397,846.9850000068826,-0.05311153156276988 +169398,846.9900000068827,-0.05311126681936625 +169399,846.9950000068828,-0.05311100199831251 +169400,847.0000000068829,-0.05311073709956367 +169401,847.005000006883,-0.0531104721230747 +169402,847.0100000068832,-0.05311020706880055 +169403,847.0150000068833,-0.05310994193669612 +169404,847.0200000068834,-0.05310967672671627 +169405,847.0250000068835,-0.053109411438815854 +169406,847.0300000068836,-0.05310914607294964 +169407,847.0350000068837,-0.0531088806290724 +169408,847.0400000068838,-0.053108615107138844 +169409,847.0450000068839,-0.05310834950710366 +169410,847.050000006884,-0.053108083828921494 +169411,847.0550000068841,-0.05310781807254696 +169412,847.0600000068843,-0.05310755223793464 +169413,847.0650000068844,-0.053107286325039055 +169414,847.0700000068845,-0.05310702033381472 +169415,847.0750000068846,-0.05310675426421609 +169416,847.0800000068847,-0.053106488116197614 +169417,847.0850000068848,-0.05310622188971365 +169418,847.0900000068849,-0.053105955584718575 +169419,847.095000006885,-0.0531056892011667 +169420,847.1000000068851,-0.053105422739012316 +169421,847.1050000068852,-0.053105156198209644 +169422,847.1100000068853,-0.05310488957871291 +169423,847.1150000068855,-0.053104622880476286 +169424,847.1200000068856,-0.05310435610345388 +169425,847.1250000068857,-0.053104089247599816 +169426,847.1300000068858,-0.053103822312868136 +169427,847.1350000068859,-0.05310355529921286 +169428,847.140000006886,-0.053103288206587974 +169429,847.1450000068861,-0.053103021034947434 +169430,847.1500000068862,-0.05310275378424514 +169431,847.1550000068863,-0.053102486454434966 +169432,847.1600000068864,-0.05310221904547075 +169433,847.1650000068865,-0.05310195155730629 +169434,847.1700000068867,-0.05310168398989535 +169435,847.1750000068868,-0.05310141634319163 +169436,847.1800000068869,-0.05310114861714884 +169437,847.185000006887,-0.05310088081172062 +169438,847.1900000068871,-0.053100612926860566 +169439,847.1950000068872,-0.05310034496252226 +169440,847.2000000068873,-0.05310007691865924 +169441,847.2050000068874,-0.053099808795225 +169442,847.2100000068875,-0.053099540592173 +169443,847.2150000068876,-0.05309927230945665 +169444,847.2200000068877,-0.05309900394702936 +169445,847.2250000068879,-0.053098735504844445 +169446,847.230000006888,-0.05309846698285523 +169447,847.2350000068881,-0.05309819838101498 +169448,847.2400000068882,-0.05309792969927693 +169449,847.2450000068883,-0.05309766093759427 +169450,847.2500000068884,-0.05309739209592014 +169451,847.2550000068885,-0.05309712317420768 +169452,847.2600000068886,-0.05309685417240996 +169453,847.2650000068887,-0.053096585090480035 +169454,847.2700000068888,-0.053096315928370885 +169455,847.275000006889,-0.05309604668603549 +169456,847.280000006889,-0.05309577736342678 +169457,847.2850000068892,-0.05309550796049761 +169458,847.2900000068893,-0.053095238477200865 +169459,847.2950000068894,-0.05309496891348934 +169460,847.3000000068895,-0.053094699269315815 +169461,847.3050000068896,-0.05309442954463302 +169462,847.3100000068897,-0.053094159739393645 +169463,847.3150000068898,-0.05309388985355037 +169464,847.3200000068899,-0.053093619887055785 +169465,847.32500000689,-0.05309334983986247 +169466,847.3300000068901,-0.05309307971192298 +169467,847.3350000068903,-0.05309280950318983 +169468,847.3400000068904,-0.05309253921361545 +169469,847.3450000068905,-0.053092268843152296 +169470,847.3500000068906,-0.05309199839175273 +169471,847.3550000068907,-0.0530917278593691 +169472,847.3600000068908,-0.05309145724595374 +169473,847.3650000068909,-0.05309118655145888 +169474,847.370000006891,-0.05309091577583678 +169475,847.3750000068911,-0.05309064491903962 +169476,847.3800000068912,-0.053090373981019554 +169477,847.3850000068913,-0.05309010296172869 +169478,847.3900000068915,-0.0530898318611191 +169479,847.3950000068916,-0.05308956067914282 +169480,847.4000000068917,-0.05308928941575185 +169481,847.4050000068918,-0.053089018070898136 +169482,847.4100000068919,-0.0530887466445336 +169483,847.415000006892,-0.053088475136610115 +169484,847.4200000068921,-0.053088203547079514 +169485,847.4250000068922,-0.053087931875893606 +169486,847.4300000068923,-0.05308766012300414 +169487,847.4350000068924,-0.05308738828836285 +169488,847.4400000068925,-0.053087116371921386 +169489,847.4450000068927,-0.05308684437363141 +169490,847.4500000068928,-0.05308657229344452 +169491,847.4550000068929,-0.053086300131312256 +169492,847.460000006893,-0.053086027887186166 +169493,847.4650000068931,-0.05308575556101771 +169494,847.4700000068932,-0.05308548315275833 +169495,847.4750000068933,-0.053085210662359446 +169496,847.4800000068934,-0.053084938089772396 +169497,847.4850000068935,-0.053084665434948504 +169498,847.4900000068936,-0.053084392697839065 +169499,847.4950000068937,-0.0530841198783953 +169500,847.5000000068939,-0.05308384697656843 +169501,847.505000006894,-0.0530835739923096 +169502,847.5100000068941,-0.05308330092556993 +169503,847.5150000068942,-0.0530830277763005 +169504,847.5200000068943,-0.05308275454445234 +169505,847.5250000068944,-0.05308248122997648 +169506,847.5300000068945,-0.05308220783282386 +169507,847.5350000068946,-0.053081934352945385 +169508,847.5400000068947,-0.05308166079029195 +169509,847.5450000068948,-0.05308138714481438 +169510,847.550000006895,-0.053081113416463495 +169511,847.555000006895,-0.05308083960519002 +169512,847.5600000068952,-0.053080565710944695 +169513,847.5650000068953,-0.05308029173367818 +169514,847.5700000068954,-0.05308001767334112 +169515,847.5750000068955,-0.0530797435298841 +169516,847.5800000068956,-0.053079469303257666 +169517,847.5850000068957,-0.05307919499341234 +169518,847.5900000068958,-0.053078920600298604 +169519,847.5950000068959,-0.05307864612386686 +169520,847.600000006896,-0.05307837156406753 +169521,847.6050000068961,-0.05307809692085093 +169522,847.6100000068963,-0.05307782219416738 +169523,847.6150000068964,-0.05307754738396716 +169524,847.6200000068965,-0.05307727249020047 +169525,847.6250000068966,-0.05307699751281751 +169526,847.6300000068967,-0.05307672245176842 +169527,847.6350000068968,-0.0530764473070033 +169528,847.6400000068969,-0.053076172078472185 +169529,847.645000006897,-0.053075896766125126 +169530,847.6500000068971,-0.053075621369912084 +169531,847.6550000068972,-0.05307534588978301 +169532,847.6600000068973,-0.05307507032568778 +169533,847.6650000068975,-0.053074794677576254 +169534,847.6700000068976,-0.05307451894539824 +169535,847.6750000068977,-0.053074243129103506 +169536,847.6800000068978,-0.05307396722864179 +169537,847.6850000068979,-0.05307369124396277 +169538,847.690000006898,-0.053073415175016084 +169539,847.6950000068981,-0.053073139021751335 +169540,847.7000000068982,-0.05307286278411809 +169541,847.7050000068983,-0.05307258646206587 +169542,847.7100000068984,-0.05307231005554415 +169543,847.7150000068985,-0.05307203356450235 +169544,847.7200000068987,-0.05307175698888988 +169545,847.7250000068988,-0.05307148032865608 +169546,847.7300000068989,-0.05307120358375026 +169547,847.735000006899,-0.053070926754121686 +169548,847.7400000068991,-0.05307064983971958 +169549,847.7450000068992,-0.05307037284049314 +169550,847.7500000068993,-0.05307009575639148 +169551,847.7550000068994,-0.05306981858736371 +169552,847.7600000068995,-0.05306954133335889 +169553,847.7650000068996,-0.05306926399432602 +169554,847.7700000068997,-0.05306898657021408 +169555,847.7750000068999,-0.05306870906097198 +169556,847.7800000069,-0.05306843146654863 +169557,847.7850000069001,-0.05306815378689285 +169558,847.7900000069002,-0.05306787602195345 +169559,847.7950000069003,-0.05306759817167918 +169560,847.8000000069004,-0.05306732023601876 +169561,847.8050000069005,-0.05306704221492086 +169562,847.8100000069006,-0.0530667641083341 +169563,847.8150000069007,-0.05306648591620707 +169564,847.8200000069008,-0.05306620763848832 +169565,847.825000006901,-0.053065929275126336 +169566,847.8300000069011,-0.05306565082606959 +169567,847.8350000069012,-0.05306537229126648 +169568,847.8400000069013,-0.05306509367066539 +169569,847.8450000069014,-0.053064814964214634 +169570,847.8500000069015,-0.0530645361718625 +169571,847.8550000069016,-0.05306425729355724 +169572,847.8600000069017,-0.05306397832924702 +169573,847.8650000069018,-0.05306369927888002 +169574,847.8700000069019,-0.05306342014240435 +169575,847.875000006902,-0.053063140919768076 +169576,847.8800000069022,-0.053062861610919214 +169577,847.8850000069023,-0.053062582215805745 +169578,847.8900000069024,-0.05306230273437561 +169579,847.8950000069025,-0.0530620231665767 +169580,847.9000000069026,-0.05306174351235684 +169581,847.9050000069027,-0.05306146377166387 +169582,847.9100000069028,-0.053061183944445534 +169583,847.9150000069029,-0.053060904030649565 +169584,847.920000006903,-0.05306062403022362 +169585,847.9250000069031,-0.053060343943115346 +169586,847.9300000069032,-0.0530600637692723 +169587,847.9350000069034,-0.05305978350864206 +169588,847.9400000069035,-0.05305950316117209 +169589,847.9450000069036,-0.053059222726809865 +169590,847.9500000069037,-0.053058942205502786 +169591,847.9550000069038,-0.05305866159719823 +169592,847.9600000069039,-0.053058380901843505 +169593,847.965000006904,-0.0530581001193859 +169594,847.9700000069041,-0.05305781924977264 +169595,847.9750000069042,-0.053057538292950894 +169596,847.9800000069043,-0.05305725724886784 +169597,847.9850000069044,-0.05305697611747055 +169598,847.9900000069046,-0.05305669489870611 +169599,847.9950000069047,-0.05305641359252151 +169600,848.0000000069048,-0.05305613219886371 +169601,848.0050000069049,-0.05305585071767963 +169602,848.010000006905,-0.05305556914891616 +169603,848.0150000069051,-0.05305528749252012 +169604,848.0200000069052,-0.05305500574843831 +169605,848.0250000069053,-0.05305472391661745 +169606,848.0300000069054,-0.05305444199700425 +169607,848.0350000069055,-0.05305415998954536 +169608,848.0400000069056,-0.05305387789418738 +169609,848.0450000069058,-0.053053595710876894 +169610,848.0500000069059,-0.0530533134395604 +169611,848.055000006906,-0.05305303108018437 +169612,848.0600000069061,-0.053052748632695226 +169613,848.0650000069062,-0.053052466097039355 +169614,848.0700000069063,-0.0530521834731631 +169615,848.0750000069064,-0.05305190076101273 +169616,848.0800000069065,-0.053051617960534515 +169617,848.0850000069066,-0.05305133507167464 +169618,848.0900000069067,-0.05305105209437928 +169619,848.0950000069068,-0.0530507690285945 +169620,848.100000006907,-0.053050485874266404 +169621,848.1050000069071,-0.053050202631340984 +169622,848.1100000069072,-0.053049919299764214 +169623,848.1150000069073,-0.05304963587948203 +169624,848.1200000069074,-0.053049352370440304 +169625,848.1250000069075,-0.053049068772584876 +169626,848.1300000069076,-0.05304878508586154 +169627,848.1350000069077,-0.053048501310216024 +169628,848.1400000069078,-0.053048217445594036 +169629,848.1450000069079,-0.05304793349194121 +169630,848.150000006908,-0.05304764944920316 +169631,848.1550000069082,-0.05304736531732544 +169632,848.1600000069083,-0.053047081096253564 +169633,848.1650000069084,-0.053046796785933 +169634,848.1700000069085,-0.05304651238630916 +169635,848.1750000069086,-0.05304622789732743 +169636,848.1800000069087,-0.053045943318933114 +169637,848.1850000069088,-0.053045658651071505 +169638,848.1900000069089,-0.05304537389368784 +169639,848.195000006909,-0.0530450890467273 +169640,848.2000000069091,-0.053044804110135034 +169641,848.2050000069092,-0.05304451908385613 +169642,848.2100000069094,-0.05304423396783563 +169643,848.2150000069095,-0.05304394876201853 +169644,848.2200000069096,-0.0530436634663498 +169645,848.2250000069097,-0.053043378080774334 +169646,848.2300000069098,-0.05304309260523699 +169647,848.2350000069099,-0.05304280703968259 +169648,848.24000000691,-0.053042521384055887 +169649,848.2450000069101,-0.053042235638301606 +169650,848.2500000069102,-0.053041949802364416 +169651,848.2550000069103,-0.05304166387618895 +169652,848.2600000069104,-0.053041377859719775 +169653,848.2650000069106,-0.05304109175290143 +169654,848.2700000069107,-0.053040805555678375 +169655,848.2750000069108,-0.053040519267995065 +169656,848.2800000069109,-0.05304023288979589 +169657,848.285000006911,-0.05303994642102518 +169658,848.2900000069111,-0.05303965986162723 +169659,848.2950000069112,-0.05303937321154628 +169660,848.3000000069113,-0.05303908647072653 +169661,848.3050000069114,-0.05303879963911213 +169662,848.3100000069115,-0.05303851271664719 +169663,848.3150000069116,-0.05303822570327576 +169664,848.3200000069118,-0.05303793859894183 +169665,848.3250000069119,-0.05303765140358938 +169666,848.330000006912,-0.05303736411716231 +169667,848.3350000069121,-0.05303707673960449 +169668,848.3400000069122,-0.05303678927085972 +169669,848.3450000069123,-0.05303650171087178 +169670,848.3500000069124,-0.05303621405958437 +169671,848.3550000069125,-0.05303592631694117 +169672,848.3600000069126,-0.05303563848288582 +169673,848.3650000069127,-0.05303535055736187 +169674,848.3700000069128,-0.05303506254031285 +169675,848.375000006913,-0.05303477443168224 +169676,848.3800000069131,-0.05303448623141347 +169677,848.3850000069132,-0.05303419793944991 +169678,848.3900000069133,-0.05303390955573489 +169679,848.3950000069134,-0.0530336210802117 +169680,848.4000000069135,-0.05303333251282358 +169681,848.4050000069136,-0.053033043853513706 +169682,848.4100000069137,-0.05303275510222521 +169683,848.4150000069138,-0.05303246625890118 +169684,848.4200000069139,-0.05303217732348466 +169685,848.425000006914,-0.053031888295918636 +169686,848.4300000069142,-0.05303159917614605 +169687,848.4350000069143,-0.053031309964109784 +169688,848.4400000069144,-0.05303102065975269 +169689,848.4450000069145,-0.05303073126301756 +169690,848.4500000069146,-0.05303044177384713 +169691,848.4550000069147,-0.053030152192184106 +169692,848.4600000069148,-0.05302986251797113 +169693,848.4650000069149,-0.053029572751150784 +169694,848.470000006915,-0.053029282891665634 +169695,848.4750000069151,-0.05302899293945816 +169696,848.4800000069152,-0.05302870289447083 +169697,848.4850000069154,-0.05302841275664602 +169698,848.4900000069155,-0.05302812252592608 +169699,848.4950000069156,-0.05302783220225332 +169700,848.5000000069157,-0.05302754178556998 +169701,848.5050000069158,-0.05302725127581826 +169702,848.5100000069159,-0.053026960672940306 +169703,848.515000006916,-0.05302666997687822 +169704,848.5200000069161,-0.05302637918757405 +169705,848.5250000069162,-0.05302608830496979 +169706,848.5300000069163,-0.053025797329007404 +169707,848.5350000069164,-0.05302550625962877 +169708,848.5400000069166,-0.053025215096775755 +169709,848.5450000069167,-0.053024923840390134 +169710,848.5500000069168,-0.05302463249041367 +169711,848.5550000069169,-0.053024341046788055 +169712,848.560000006917,-0.05302404950945494 +169713,848.5650000069171,-0.05302375787835593 +169714,848.5700000069172,-0.053023466153432536 +169715,848.5750000069173,-0.05302317433462629 +169716,848.5800000069174,-0.05302288242187862 +169717,848.5850000069175,-0.053022590415130924 +169718,848.5900000069176,-0.05302229831432455 +169719,848.5950000069178,-0.05302200611940077 +169720,848.6000000069179,-0.05302171383030084 +169721,848.605000006918,-0.05302142144696596 +169722,848.6100000069181,-0.05302112896933726 +169723,848.6150000069182,-0.05302083639735581 +169724,848.6200000069183,-0.053020543730962676 +169725,848.6250000069184,-0.05302025097009882 +169726,848.6300000069185,-0.053019958114705175 +169727,848.6350000069186,-0.05301966516472265 +169728,848.6400000069187,-0.053019372120092056 +169729,848.6450000069188,-0.05301907898075419 +169730,848.650000006919,-0.05301878574664977 +169731,848.6550000069191,-0.05301849241771947 +169732,848.6600000069192,-0.05301819899390393 +169733,848.6650000069193,-0.05301790547514369 +169734,848.6700000069194,-0.05301761186137932 +169735,848.6750000069195,-0.05301731815255127 +169736,848.6800000069196,-0.05301702434859995 +169737,848.6850000069197,-0.05301673044946573 +169738,848.6900000069198,-0.053016436455088925 +169739,848.6950000069199,-0.05301614236540981 +169740,848.70000000692,-0.05301584818036859 +169741,848.7050000069202,-0.05301555389990543 +169742,848.7100000069203,-0.053015259523960426 +169743,848.7150000069204,-0.05301496505247363 +169744,848.7200000069205,-0.05301467048538505 +169745,848.7250000069206,-0.05301437582263465 +169746,848.7300000069207,-0.05301408106416231 +169747,848.7350000069208,-0.053013786209907876 +169748,848.7400000069209,-0.05301349125981115 +169749,848.745000006921,-0.05301319621381187 +169750,848.7500000069211,-0.053012901071849715 +169751,848.7550000069213,-0.05301260583386433 +169752,848.7600000069214,-0.05301231049979529 +169753,848.7650000069215,-0.053012015069582134 +169754,848.7700000069216,-0.05301171954316433 +169755,848.7750000069217,-0.053011423920481304 +169756,848.7800000069218,-0.053011128201472434 +169757,848.7850000069219,-0.053010832386077025 +169758,848.790000006922,-0.05301053647423434 +169759,848.7950000069221,-0.05301024046588362 +169760,848.8000000069222,-0.053009944360963984 +169761,848.8050000069223,-0.05300964815941456 +169762,848.8100000069225,-0.05300935186117438 +169763,848.8150000069226,-0.05300905546618246 +169764,848.8200000069227,-0.05300875897437774 +169765,848.8250000069228,-0.05300846238569912 +169766,848.8300000069229,-0.05300816570008543 +169767,848.835000006923,-0.05300786891747545 +169768,848.8400000069231,-0.053007572037807905 +169769,848.8450000069232,-0.053007275061021486 +169770,848.8500000069233,-0.05300697798705481 +169771,848.8550000069234,-0.05300668081584645 +169772,848.8600000069235,-0.053006383547334925 +169773,848.8650000069237,-0.05300608618145867 +169774,848.8700000069238,-0.05300578871815611 +169775,848.8750000069239,-0.0530054911573656 +169776,848.880000006924,-0.05300519349902544 +169777,848.8850000069241,-0.05300489574307386 +169778,848.8900000069242,-0.05300459788944906 +169779,848.8950000069243,-0.053004299938089174 +169780,848.9000000069244,-0.0530040018889323 +169781,848.9050000069245,-0.05300370374191644 +169782,848.9100000069246,-0.053003405496979586 +169783,848.9150000069247,-0.053003107154059634 +169784,848.9200000069249,-0.05300280871309447 +169785,848.925000006925,-0.05300251017402188 +169786,848.9300000069251,-0.05300221153677963 +169787,848.9350000069252,-0.05300191280130541 +169788,848.9400000069253,-0.05300161396753687 +169789,848.9450000069254,-0.05300131503541161 +169790,848.9500000069255,-0.05300101600486714 +169791,848.9550000069256,-0.05300071687584095 +169792,848.9600000069257,-0.05300041764827047 +169793,848.9650000069258,-0.05300011832209306 +169794,848.9700000069259,-0.05299981889724603 +169795,848.975000006926,-0.05299951937366665 +169796,848.9800000069262,-0.052999219751292105 +169797,848.9850000069263,-0.05299892003005955 +169798,848.9900000069264,-0.05299862020990608 +169799,848.9950000069265,-0.05299832029076873 +169800,849.0000000069266,-0.05299802027258448 +169801,849.0050000069267,-0.05299772015529025 +169802,849.0100000069268,-0.05299741993882292 +169803,849.0150000069269,-0.052997119623119274 +169804,849.020000006927,-0.052996819208116094 +169805,849.0250000069271,-0.052996518693750064 +169806,849.0300000069273,-0.052996218079957844 +169807,849.0350000069274,-0.05299591736667601 +169808,849.0400000069275,-0.05299561655384111 +169809,849.0450000069276,-0.052995315641389595 +169810,849.0500000069277,-0.052995014629257896 +169811,849.0550000069278,-0.05299471351738238 +169812,849.0600000069279,-0.05299441230569936 +169813,849.065000006928,-0.052994110994145076 +169814,849.0700000069281,-0.05299380958265572 +169815,849.0750000069282,-0.05299350807116743 +169816,849.0800000069283,-0.05299320645961629 +169817,849.0850000069285,-0.05299290474793833 +169818,849.0900000069286,-0.052992602936069506 +169819,849.0950000069287,-0.05299230102394573 +169820,849.1000000069288,-0.05299199901150286 +169821,849.1050000069289,-0.05299169689867668 +169822,849.110000006929,-0.052991394685402954 +169823,849.1150000069291,-0.052991092371617345 +169824,849.1200000069292,-0.05299078995725547 +169825,849.1250000069293,-0.05299048744225292 +169826,849.1300000069294,-0.052990184826545175 +169827,849.1350000069295,-0.052989882110067714 +169828,849.1400000069297,-0.05298957929275592 +169829,849.1450000069298,-0.052989276374545126 +169830,849.1500000069299,-0.05298897335537062 +169831,849.15500000693,-0.052988670235167616 +169832,849.1600000069301,-0.0529883670138713 +169833,849.1650000069302,-0.05298806369141676 +169834,849.1700000069303,-0.05298776026773905 +169835,849.1750000069304,-0.05298745674277315 +169836,849.1800000069305,-0.05298715311645401 +169837,849.1850000069306,-0.05298684938871649 +169838,849.1900000069307,-0.052986545559495425 +169839,849.1950000069309,-0.052986241628725554 +169840,849.200000006931,-0.052985937596341584 +169841,849.2050000069311,-0.05298563346227816 +169842,849.2100000069312,-0.052985329226469875 +169843,849.2150000069313,-0.05298502488885123 +169844,849.2200000069314,-0.05298472044935672 +169845,849.2250000069315,-0.052984415907920725 +169846,849.2300000069316,-0.05298411126447761 +169847,849.2350000069317,-0.05298380651896166 +169848,849.2400000069318,-0.05298350167130711 +169849,849.245000006932,-0.05298319672144814 +169850,849.250000006932,-0.05298289166931885 +169851,849.2550000069322,-0.0529825865148533 +169852,849.2600000069323,-0.05298228125798548 +169853,849.2650000069324,-0.052981975898649336 +169854,849.2700000069325,-0.05298167043677876 +169855,849.2750000069326,-0.05298136487230754 +169856,849.2800000069327,-0.05298105920516945 +169857,849.2850000069328,-0.052980753435298185 +169858,849.2900000069329,-0.05298044756262739 +169859,849.295000006933,-0.05298014158709064 +169860,849.3000000069331,-0.05297983550862147 +169861,849.3050000069333,-0.052979529327153316 +169862,849.3100000069334,-0.05297922304261961 +169863,849.3150000069335,-0.05297891665495367 +169864,849.3200000069336,-0.05297861016408878 +169865,849.3250000069337,-0.052978303569958175 +169866,849.3300000069338,-0.052977996872495 +169867,849.3350000069339,-0.05297769007163237 +169868,849.340000006934,-0.052977383167303334 +169869,849.3450000069341,-0.052977076159440854 +169870,849.3500000069342,-0.05297676904797786 +169871,849.3550000069343,-0.05297646183284721 +169872,849.3600000069345,-0.0529761545139817 +169873,849.3650000069346,-0.05297584709131408 +169874,849.3700000069347,-0.052975539564777026 +169875,849.3750000069348,-0.05297523193430314 +169876,849.3800000069349,-0.052974924199824996 +169877,849.385000006935,-0.052974616361275095 +169878,849.3900000069351,-0.052974308418585865 +169879,849.3950000069352,-0.052974000371689686 +169880,849.4000000069353,-0.05297369222051887 +169881,849.4050000069354,-0.052973383965005665 +169882,849.4100000069355,-0.05297307560508227 +169883,849.4150000069357,-0.052972767140680804 +169884,849.4200000069358,-0.05297245857173334 +169885,849.4250000069359,-0.052972149898171894 +169886,849.430000006936,-0.05297184111992841 +169887,849.4350000069361,-0.05297153223693478 +169888,849.4400000069362,-0.05297122324912282 +169889,849.4450000069363,-0.05297091415642427 +169890,849.4500000069364,-0.052970604958770866 +169891,849.4550000069365,-0.05297029565609422 +169892,849.4600000069366,-0.05296998624832594 +169893,849.4650000069367,-0.052969676735397514 +169894,849.4700000069369,-0.052969367117240394 +169895,849.475000006937,-0.052969057393785976 +169896,849.4800000069371,-0.0529687475649656 +169897,849.4850000069372,-0.05296843763071051 +169898,849.4900000069373,-0.05296812759095192 +169899,849.4950000069374,-0.05296781744562098 +169900,849.5000000069375,-0.05296750719464876 +169901,849.5050000069376,-0.05296719683796629 +169902,849.5100000069377,-0.0529668863755045 +169903,849.5150000069378,-0.05296657580719429 +169904,849.520000006938,-0.0529662651329665 +169905,849.5250000069381,-0.05296595435275188 +169906,849.5300000069382,-0.05296564346648114 +169907,849.5350000069383,-0.05296533247408492 +169908,849.5400000069384,-0.05296502137549379 +169909,849.5450000069385,-0.052964710170638286 +169910,849.5500000069386,-0.052964398859448834 +169911,849.5550000069387,-0.05296408744185584 +169912,849.5600000069388,-0.052963775917789606 +169913,849.5650000069389,-0.05296346428718041 +169914,849.570000006939,-0.05296315254995845 +169915,849.5750000069391,-0.05296284070605385 +169916,849.5800000069393,-0.05296252875539669 +169917,849.5850000069394,-0.052962216697916974 +169918,849.5900000069395,-0.05296190453354463 +169919,849.5950000069396,-0.05296159226220955 +169920,849.6000000069397,-0.05296127988384154 +169921,849.6050000069398,-0.052960967398370376 +169922,849.6100000069399,-0.05296065480572571 +169923,849.61500000694,-0.05296034210583719 +169924,849.6200000069401,-0.05296002929863435 +169925,849.6250000069402,-0.052959716384046715 +169926,849.6300000069403,-0.0529594033620037 +169927,849.6350000069405,-0.05295909023243466 +169928,849.6400000069406,-0.05295877699526892 +169929,849.6450000069407,-0.05295846365043569 +169930,849.6500000069408,-0.05295815019786416 +169931,849.6550000069409,-0.05295783663748343 +169932,849.660000006941,-0.052957522969222535 +169933,849.6650000069411,-0.052957209193010474 +169934,849.6700000069412,-0.05295689530877614 +169935,849.6750000069413,-0.05295658131644838 +169936,849.6800000069414,-0.05295626721595599 +169937,849.6850000069416,-0.05295595300722768 +169938,849.6900000069417,-0.05295563869019209 +169939,849.6950000069418,-0.052955324264777816 +169940,849.7000000069419,-0.052955009730913376 +169941,849.705000006942,-0.05295469508852723 +169942,849.7100000069421,-0.05295438033754778 +169943,849.7150000069422,-0.05295406547790333 +169944,849.7200000069423,-0.05295375050952214 +169945,849.7250000069424,-0.05295343543233241 +169946,849.7300000069425,-0.05295312024626226 +169947,849.7350000069426,-0.05295280495123976 +169948,849.7400000069428,-0.0529524895471929 +169949,849.7450000069429,-0.05295217403404961 +169950,849.750000006943,-0.052951858411737746 +169951,849.7550000069431,-0.052951542680185114 +169952,849.7600000069432,-0.05295122683931943 +169953,849.7650000069433,-0.05295091088906837 +169954,849.7700000069434,-0.052950594829359515 +169955,849.7750000069435,-0.05295027866012042 +169956,849.7800000069436,-0.052949962381278526 +169957,849.7850000069437,-0.05294964599276125 +169958,849.7900000069438,-0.0529493294944959 +169959,849.795000006944,-0.05294901288640976 +169960,849.8000000069441,-0.052948696168430016 +169961,849.8050000069442,-0.0529483793404838 +169962,849.8100000069443,-0.05294806240249817 +169963,849.8150000069444,-0.05294774535440011 +169964,849.8200000069445,-0.052947428196116565 +169965,849.8250000069446,-0.052947110927574384 +169966,849.8300000069447,-0.05294679354870037 +169967,849.8350000069448,-0.052946476059421245 +169968,849.8400000069449,-0.05294615845966367 +169969,849.845000006945,-0.05294584074935422 +169970,849.8500000069452,-0.05294552292841942 +169971,849.8550000069453,-0.05294520499678573 +169972,849.8600000069454,-0.052944886954379544 +169973,849.8650000069455,-0.05294456880112716 +169974,849.8700000069456,-0.052944250536954854 +169975,849.8750000069457,-0.05294393216178878 +169976,849.8800000069458,-0.05294361367555507 +169977,849.8850000069459,-0.052943295078179776 +169978,849.890000006946,-0.05294297636958885 +169979,849.8950000069461,-0.052942657549708214 +169980,849.9000000069462,-0.05294233861846371 +169981,849.9050000069464,-0.0529420195757811 +169982,849.9100000069465,-0.05294170042158611 +169983,849.9150000069466,-0.05294138115580434 +169984,849.9200000069467,-0.05294106177836137 +169985,849.9250000069468,-0.05294074228918271 +169986,849.9300000069469,-0.05294042268819377 +169987,849.935000006947,-0.05294010297531989 +169988,849.9400000069471,-0.05293978315048639 +169989,849.9450000069472,-0.05293946321361848 +169990,849.9500000069473,-0.052939143164641295 +169991,849.9550000069474,-0.05293882300347993 +169992,849.9600000069476,-0.052938502730059386 +169993,849.9650000069477,-0.052938182344304606 +169994,849.9700000069478,-0.05293786184614048 +169995,849.9750000069479,-0.05293754123549178 +169996,849.980000006948,-0.05293722051228325 +169997,849.9850000069481,-0.05293689967643955 +169998,849.9900000069482,-0.05293657872788528 +169999,849.9950000069483,-0.052936257666544945 +170000,850.0000000069484,-0.052935936492343 +170001,850.0050000069485,-0.052935615205203845 +170002,850.0100000069486,-0.05293529380505177 +170003,850.0150000069488,-0.05293497229181101 +170004,850.0200000069489,-0.052934650665405744 +170005,850.025000006949,-0.05293432892576007 +170006,850.0300000069491,-0.05293400707279801 +170007,850.0350000069492,-0.05293368510644352 +170008,850.0400000069493,-0.0529333630266205 +170009,850.0450000069494,-0.052933040833252745 +170010,850.0500000069495,-0.052932718526264015 +170011,850.0550000069496,-0.052932396105577983 +170012,850.0600000069497,-0.05293207357111824 +170013,850.0650000069498,-0.05293175092280832 +170014,850.07000000695,-0.05293142816057167 +170015,850.0750000069501,-0.052931105284331696 +170016,850.0800000069502,-0.052930782294011706 +170017,850.0850000069503,-0.05293045918953494 +170018,850.0900000069504,-0.052930135970824584 +170019,850.0950000069505,-0.052929812637803705 +170020,850.1000000069506,-0.052929489190395376 +170021,850.1050000069507,-0.05292916562852251 +170022,850.1100000069508,-0.052928841952108015 +170023,850.1150000069509,-0.05292851816107471 +170024,850.120000006951,-0.05292819425534532 +170025,850.1250000069512,-0.052927870234842515 +170026,850.1300000069513,-0.052927546099488895 +170027,850.1350000069514,-0.05292722184920697 +170028,850.1400000069515,-0.052926897483919204 +170029,850.1450000069516,-0.05292657300354796 +170030,850.1500000069517,-0.052926248408015554 +170031,850.1550000069518,-0.052925923697244213 +170032,850.1600000069519,-0.052925598871156096 +170033,850.165000006952,-0.052925273929673285 +170034,850.1700000069521,-0.05292494887271779 +170035,850.1750000069522,-0.05292462370021156 +170036,850.1800000069524,-0.05292429841207644 +170037,850.1850000069525,-0.052923973008234246 +170038,850.1900000069526,-0.05292364748860668 +170039,850.1950000069527,-0.052923321853115386 +170040,850.2000000069528,-0.05292299610168195 +170041,850.2050000069529,-0.05292267023422785 +170042,850.210000006953,-0.052922344250674526 +170043,850.2150000069531,-0.05292201815094333 +170044,850.2200000069532,-0.05292169193495552 +170045,850.2250000069533,-0.05292136560263231 +170046,850.2300000069534,-0.052921039153894824 +170047,850.2350000069536,-0.05292071258866412 +170048,850.2400000069537,-0.052920385906861156 +170049,850.2450000069538,-0.05292005910840686 +170050,850.2500000069539,-0.05291973219322205 +170051,850.255000006954,-0.05291940516122747 +170052,850.2600000069541,-0.052919078012343836 +170053,850.2650000069542,-0.05291875074649171 +170054,850.2700000069543,-0.05291842336359164 +170055,850.2750000069544,-0.052918095863564094 +170056,850.2800000069545,-0.05291776824632943 +170057,850.2850000069546,-0.05291744051180797 +170058,850.2900000069548,-0.05291711265991994 +170059,850.2950000069549,-0.052916784690585486 +170060,850.300000006955,-0.05291645660372468 +170061,850.3050000069551,-0.05291612839925754 +170062,850.3100000069552,-0.052915800077103996 +170063,850.3150000069553,-0.05291547163718389 +170064,850.3200000069554,-0.05291514307941699 +170065,850.3250000069555,-0.05291481440372302 +170066,850.3300000069556,-0.05291448561002157 +170067,850.3350000069557,-0.05291415669823222 +170068,850.3400000069558,-0.052913827668274425 +170069,850.345000006956,-0.052913498520067576 +170070,850.3500000069561,-0.052913169253531 +170071,850.3550000069562,-0.05291283986858393 +170072,850.3600000069563,-0.05291251036514555 +170073,850.3650000069564,-0.052912180743134925 +170074,850.3700000069565,-0.05291185100247108 +170075,850.3750000069566,-0.05291152114307296 +170076,850.3800000069567,-0.05291119116485941 +170077,850.3850000069568,-0.0529108610677492 +170078,850.3900000069569,-0.05291053085166105 +170079,850.395000006957,-0.052910200516513586 +170080,850.4000000069572,-0.052909870062225355 +170081,850.4050000069573,-0.05290953948871482 +170082,850.4100000069574,-0.052909208795900387 +170083,850.4150000069575,-0.052908877983700364 +170084,850.4200000069576,-0.05290854705203299 +170085,850.4250000069577,-0.052908216000816424 +170086,850.4300000069578,-0.05290788482996876 +170087,850.4350000069579,-0.052907553539408 +170088,850.440000006958,-0.05290722212905207 +170089,850.4450000069581,-0.05290689059881882 +170090,850.4500000069582,-0.05290655894862602 +170091,850.4550000069584,-0.05290622717839135 +170092,850.4600000069585,-0.05290589528803244 +170093,850.4650000069586,-0.05290556327746681 +170094,850.4700000069587,-0.05290523114661193 +170095,850.4750000069588,-0.052904898895385175 +170096,850.4800000069589,-0.05290456652370384 +170097,850.485000006959,-0.052904234031485135 +170098,850.4900000069591,-0.05290390141864622 +170099,850.4950000069592,-0.05290356868510413 +170100,850.5000000069593,-0.052903235830775885 +170101,850.5050000069594,-0.05290290285557836 +170102,850.5100000069596,-0.05290256975942839 +170103,850.5150000069597,-0.05290223654224271 +170104,850.5200000069598,-0.05290190320393798 +170105,850.5250000069599,-0.052901569744430804 +170106,850.53000000696,-0.05290123616363766 +170107,850.5350000069601,-0.052900902461475 +170108,850.5400000069602,-0.052900568637859156 +170109,850.5450000069603,-0.05290023469270639 +170110,850.5500000069604,-0.05289990062593289 +170111,850.5550000069605,-0.052899566437454755 +170112,850.5600000069606,-0.052899232127188014 +170113,850.5650000069608,-0.0528988976950486 +170114,850.5700000069609,-0.05289856314095239 +170115,850.575000006961,-0.05289822846481515 +170116,850.5800000069611,-0.05289789366655259 +170117,850.5850000069612,-0.052897558746080334 +170118,850.5900000069613,-0.052897223703313914 +170119,850.5950000069614,-0.05289688853816878 +170120,850.6000000069615,-0.052896553250560314 +170121,850.6050000069616,-0.052896217840403825 +170122,850.6100000069617,-0.0528958823076145 +170123,850.6150000069618,-0.05289554665210749 +170124,850.620000006962,-0.05289521087379784 +170125,850.6250000069621,-0.05289487497260052 +170126,850.6300000069622,-0.05289453894843041 +170127,850.6350000069623,-0.05289420280120233 +170128,850.6400000069624,-0.05289386653083098 +170129,850.6450000069625,-0.05289353013723101 +170130,850.6500000069626,-0.05289319362031699 +170131,850.6550000069627,-0.052892856980003386 +170132,850.6600000069628,-0.0528925202162046 +170133,850.6650000069629,-0.052892183328834934 +170134,850.670000006963,-0.05289184631780861 +170135,850.6750000069632,-0.05289150918303979 +170136,850.6800000069633,-0.052891171924442516 +170137,850.6850000069634,-0.05289083454193079 +170138,850.6900000069635,-0.05289049703541849 +170139,850.6950000069636,-0.05289015940481944 +170140,850.7000000069637,-0.05288982165004738 +170141,850.7050000069638,-0.05288948377101593 +170142,850.7100000069639,-0.05288914576763868 +170143,850.715000006964,-0.052888807639829095 +170144,850.7200000069641,-0.05288846938750057 +170145,850.7250000069643,-0.052888131010566414 +170146,850.7300000069644,-0.052887792508939865 +170147,850.7350000069645,-0.052887453882534075 +170148,850.7400000069646,-0.0528871151312621 +170149,850.7450000069647,-0.05288677625503689 +170150,850.7500000069648,-0.052886437253771366 +170151,850.7550000069649,-0.05288609812737832 +170152,850.760000006965,-0.052885758875770496 +170153,850.7650000069651,-0.052885419498860504 +170154,850.7700000069652,-0.05288507999656092 +170155,850.7750000069653,-0.0528847403687842 +170156,850.7800000069655,-0.05288440061544273 +170157,850.7850000069656,-0.0528840607364488 +170158,850.7900000069657,-0.05288372073171465 +170159,850.7950000069658,-0.052883380601152385 +170160,850.8000000069659,-0.052883040344674045 +170161,850.805000006966,-0.05288269996219161 +170162,850.8100000069661,-0.05288235945361693 +170163,850.8150000069662,-0.052882018818861794 +170164,850.8200000069663,-0.052881678057837916 +170165,850.8250000069664,-0.052881337170456906 +170166,850.8300000069665,-0.05288099615663029 +170167,850.8350000069667,-0.0528806550162695 +170168,850.8400000069668,-0.0528803137492859 +170169,850.8450000069669,-0.05287997235559077 +170170,850.850000006967,-0.05287963083509529 +170171,850.8550000069671,-0.052879289187710544 +170172,850.8600000069672,-0.052878947413347546 +170173,850.8650000069673,-0.05287860551191723 +170174,850.8700000069674,-0.05287826348333041 +170175,850.8750000069675,-0.05287792132749786 +170176,850.8800000069676,-0.052877579044330235 +170177,850.8850000069677,-0.05287723663373811 +170178,850.8900000069679,-0.05287689409563197 +170179,850.895000006968,-0.0528765514299222 +170180,850.9000000069681,-0.05287620863651914 +170181,850.9050000069682,-0.05287586571533301 +170182,850.9100000069683,-0.05287552266627394 +170183,850.9150000069684,-0.05287517948925198 +170184,850.9200000069685,-0.052874836184177085 +170185,850.9250000069686,-0.05287449275095915 +170186,850.9300000069687,-0.052874149189507946 +170187,850.9350000069688,-0.05287380549973317 +170188,850.940000006969,-0.05287346168154443 +170189,850.945000006969,-0.05287311773485125 +170190,850.9500000069692,-0.05287277365956307 +170191,850.9550000069693,-0.05287242945558921 +170192,850.9600000069694,-0.05287208512283894 +170193,850.9650000069695,-0.052871740661221425 +170194,850.9700000069696,-0.05287139607064573 +170195,850.9750000069697,-0.052871051351020854 +170196,850.9800000069698,-0.052870706502255685 +170197,850.9850000069699,-0.05287036152425906 +170198,850.99000000697,-0.05287001641693965 +170199,850.9950000069701,-0.052869671180206114 +170200,851.0000000069703,-0.05286932581396698 +170201,851.0050000069704,-0.05286898031813071 +170202,851.0100000069705,-0.05286863469260565 +170203,851.0150000069706,-0.05286828893730008 +170204,851.0200000069707,-0.052867943052122175 +170205,851.0250000069708,-0.05286759703698002 +170206,851.0300000069709,-0.05286725089178161 +170207,851.035000006971,-0.05286690461643487 +170208,851.0400000069711,-0.052866558210847604 +170209,851.0450000069712,-0.05286621167492754 +170210,851.0500000069713,-0.05286586500858232 +170211,851.0550000069715,-0.052865518211719476 +170212,851.0600000069716,-0.05286517128424646 +170213,851.0650000069717,-0.05286482422607064 +170214,851.0700000069718,-0.052864477037099296 +170215,851.0750000069719,-0.0528641297172396 +170216,851.080000006972,-0.052863782266398616 +170217,851.0850000069721,-0.05286343468448338 +170218,851.0900000069722,-0.052863086971400776 +170219,851.0950000069723,-0.052862739127057606 +170220,851.1000000069724,-0.05286239115136061 +170221,851.1050000069725,-0.052862043044216406 +170222,851.1100000069727,-0.052861694805531545 +170223,851.1150000069728,-0.05286134643521244 +170224,851.1200000069729,-0.05286099793316547 +170225,851.125000006973,-0.05286064929929687 +170226,851.1300000069731,-0.052860300533512816 +170227,851.1350000069732,-0.05285995163571938 +170228,851.1400000069733,-0.052859602605822543 +170229,851.1450000069734,-0.052859253443728195 +170230,851.1500000069735,-0.05285890414934213 +170231,851.1550000069736,-0.052858554722570034 +170232,851.1600000069737,-0.052858205163317525 +170233,851.1650000069739,-0.0528578554714901 +170234,851.170000006974,-0.05285750564699319 +170235,851.1750000069741,-0.05285715568973213 +170236,851.1800000069742,-0.05285680559961213 +170237,851.1850000069743,-0.05285645537653835 +170238,851.1900000069744,-0.05285610502041583 +170239,851.1950000069745,-0.052855754531149504 +170240,851.2000000069746,-0.052855403908644225 +170241,851.2050000069747,-0.05285505315280476 +170242,851.2100000069748,-0.05285470226353577 +170243,851.215000006975,-0.05285435124074184 +170244,851.220000006975,-0.052854000084327425 +170245,851.2250000069752,-0.05285364879419691 +170246,851.2300000069753,-0.0528532973702546 +170247,851.2350000069754,-0.052852945812404656 +170248,851.2400000069755,-0.05285259412055119 +170249,851.2450000069756,-0.0528522422945982 +170250,851.2500000069757,-0.05285189033444959 +170251,851.2550000069758,-0.05285153824000916 +170252,851.2600000069759,-0.052851186011180634 +170253,851.265000006976,-0.05285083364786762 +170254,851.2700000069761,-0.052850481149973635 +170255,851.2750000069763,-0.0528501285174021 +170256,851.2800000069764,-0.05284977575005635 +170257,851.2850000069765,-0.052849422847839604 +170258,851.2900000069766,-0.052849069810655014 +170259,851.2950000069767,-0.0528487166384056 +170260,851.3000000069768,-0.05284836333099432 +170261,851.3050000069769,-0.052848009888324 +170262,851.310000006977,-0.0528476563102974 +170263,851.3150000069771,-0.05284730259681714 +170264,851.3200000069772,-0.0528469487477858 +170265,851.3250000069773,-0.052846594763105825 +170266,851.3300000069775,-0.05284624064267959 +170267,851.3350000069776,-0.05284588638640934 +170268,851.3400000069777,-0.05284553199419722 +170269,851.3450000069778,-0.052845177465945296 +170270,851.3500000069779,-0.05284482280155555 +170271,851.355000006978,-0.05284446800092985 +170272,851.3600000069781,-0.052844113063969946 +170273,851.3650000069782,-0.052843757990577514 +170274,851.3700000069783,-0.05284340278065413 +170275,851.3750000069784,-0.052843047434101266 +170276,851.3800000069785,-0.052842691950820295 +170277,851.3850000069787,-0.05284233633071249 +170278,851.3900000069788,-0.052841980573679025 +170279,851.3950000069789,-0.05284162467962098 +170280,851.400000006979,-0.05284126864843933 +170281,851.4050000069791,-0.05284091248003493 +170282,851.4100000069792,-0.05284055617430859 +170283,851.4150000069793,-0.05284019973116098 +170284,851.4200000069794,-0.05283984315049267 +170285,851.4250000069795,-0.05283948643220414 +170286,851.4300000069796,-0.05283912957619578 +170287,851.4350000069797,-0.05283877258236784 +170288,851.4400000069799,-0.05283841545062052 +170289,851.44500000698,-0.05283805818085388 +170290,851.4500000069801,-0.052837700772967906 +170291,851.4550000069802,-0.052837343226862475 +170292,851.4600000069803,-0.05283698554243735 +170293,851.4650000069804,-0.052836627719592216 +170294,851.4700000069805,-0.05283626975822664 +170295,851.4750000069806,-0.05283591165824008 +170296,851.4800000069807,-0.05283555341953192 +170297,851.4850000069808,-0.05283519504200143 +170298,851.490000006981,-0.05283483652554776 +170299,851.4950000069811,-0.05283447787006999 +170300,851.5000000069812,-0.052834119075467076 +170301,851.5050000069813,-0.05283376014163787 +170302,851.5100000069814,-0.052833401068481126 +170303,851.5150000069815,-0.052833041855895505 +170304,851.5200000069816,-0.052832682503779566 +170305,851.5250000069817,-0.05283232301203175 +170306,851.5300000069818,-0.052831963380550406 +170307,851.5350000069819,-0.05283160360923378 +170308,851.540000006982,-0.052831243697980014 +170309,851.5450000069821,-0.05283088364668714 +170310,851.5500000069823,-0.0528305234552531 +170311,851.5550000069824,-0.05283016312357573 +170312,851.5600000069825,-0.05282980265155274 +170313,851.5650000069826,-0.05282944203908177 +170314,851.5700000069827,-0.052829081286060314 +170315,851.5750000069828,-0.05282872039238582 +170316,851.5800000069829,-0.05282835935795558 +170317,851.585000006983,-0.052827998182666806 +170318,851.5900000069831,-0.052827636866416595 +170319,851.5950000069832,-0.05282727540910196 +170320,851.6000000069834,-0.052826913810619776 +170321,851.6050000069835,-0.05282655207086684 +170322,851.6100000069836,-0.05282619018973984 +170323,851.6150000069837,-0.052825828167135346 +170324,851.6200000069838,-0.052825466002949836 +170325,851.6250000069839,-0.052825103697079684 +170326,851.630000006984,-0.05282474124942115 +170327,851.6350000069841,-0.05282437865987039 +170328,851.6400000069842,-0.05282401592832345 +170329,851.6450000069843,-0.05282365305467629 +170330,851.6500000069844,-0.05282329003882472 +170331,851.6550000069846,-0.05282292688066451 +170332,851.6600000069847,-0.052822563580091256 +170333,851.6650000069848,-0.052822200137000494 +170334,851.6700000069849,-0.05282183655128763 +170335,851.675000006985,-0.05282147282284798 +170336,851.6800000069851,-0.052821108951576747 +170337,851.6850000069852,-0.05282074493736901 +170338,851.6900000069853,-0.05282038078011976 +170339,851.6950000069854,-0.052820016479723876 +170340,851.7000000069855,-0.05281965203607612 +170341,851.7050000069856,-0.05281928744907117 +170342,851.7100000069858,-0.05281892271860358 +170343,851.7150000069859,-0.05281855784456779 +170344,851.720000006986,-0.05281819282685815 +170345,851.7250000069861,-0.05281782766536888 +170346,851.7300000069862,-0.05281746235999411 +170347,851.7350000069863,-0.05281709691062785 +170348,851.7400000069864,-0.052816731317164016 +170349,851.7450000069865,-0.05281636557949639 +170350,851.7500000069866,-0.05281599969751868 +170351,851.7550000069867,-0.05281563367112445 +170352,851.7600000069868,-0.05281526750020717 +170353,851.765000006987,-0.052814901184660215 +170354,851.7700000069871,-0.052814534724376826 +170355,851.7750000069872,-0.05281416811925015 +170356,851.7800000069873,-0.05281380136917322 +170357,851.7850000069874,-0.05281343447403896 +170358,851.7900000069875,-0.05281306743374016 +170359,851.7950000069876,-0.05281270024816955 +170360,851.8000000069877,-0.052812332917219706 +170361,851.8050000069878,-0.05281196544078313 +170362,851.8100000069879,-0.052811597818752165 +170363,851.815000006988,-0.05281123005101908 +170364,851.8200000069882,-0.05281086213747604 +170365,851.8250000069883,-0.052810494078015066 +170366,851.8300000069884,-0.05281012587252809 +170367,851.8350000069885,-0.05280975752090693 +170368,851.8400000069886,-0.052809389023043295 +170369,851.8450000069887,-0.052809020378828765 +170370,851.8500000069888,-0.05280865158815483 +170371,851.8550000069889,-0.052808282650912856 +170372,851.860000006989,-0.0528079135669941 +170373,851.8650000069891,-0.052807544336289695 +170374,851.8700000069892,-0.05280717495869068 +170375,851.8750000069894,-0.05280680543408799 +170376,851.8800000069895,-0.052806435762372414 +170377,851.8850000069896,-0.05280606594343466 +170378,851.8900000069897,-0.0528056959771653 +170379,851.8950000069898,-0.0528053258634548 +170380,851.9000000069899,-0.052804955602193504 +170381,851.90500000699,-0.05280458519327168 +170382,851.9100000069901,-0.05280421463657943 +170383,851.9150000069902,-0.05280384393200679 +170384,851.9200000069903,-0.052803473079443636 +170385,851.9250000069904,-0.05280310207877977 +170386,851.9300000069906,-0.05280273092990487 +170387,851.9350000069907,-0.05280235963270849 +170388,851.9400000069908,-0.052801988187080054 +170389,851.9450000069909,-0.05280161659290891 +170390,851.950000006991,-0.05280124485008428 +170391,851.9550000069911,-0.05280087295849522 +170392,851.9600000069912,-0.05280050091803075 +170393,851.9650000069913,-0.05280012872857974 +170394,851.9700000069914,-0.05279975639003092 +170395,851.9750000069915,-0.052799383902272935 +170396,851.9800000069916,-0.052799011265194325 +170397,851.9850000069918,-0.05279863847868347 +170398,851.9900000069919,-0.05279826554262867 +170399,851.995000006992,-0.05279789245691811 +170400,852.0000000069921,-0.052797519221439826 +170401,852.0050000069922,-0.05279714583608177 +170402,852.0100000069923,-0.052796772300731765 +170403,852.0150000069924,-0.05279639861527751 +170404,852.0200000069925,-0.05279602477960661 +170405,852.0250000069926,-0.05279565079360653 +170406,852.0300000069927,-0.05279527665716462 +170407,852.0350000069928,-0.05279490237016813 +170408,852.040000006993,-0.05279452793250418 +170409,852.0450000069931,-0.05279415334405976 +170410,852.0500000069932,-0.052793778604721765 +170411,852.0550000069933,-0.05279340371437696 +170412,852.0600000069934,-0.052793028672912 +170413,852.0650000069935,-0.052792653480213406 +170414,852.0700000069936,-0.052792278136167596 +170415,852.0750000069937,-0.05279190264066085 +170416,852.0800000069938,-0.052791526993579356 +170417,852.0850000069939,-0.05279115119480916 +170418,852.090000006994,-0.05279077524423622 +170419,852.0950000069942,-0.052790399141746325 +170420,852.1000000069943,-0.05279002288722518 +170421,852.1050000069944,-0.05278964648055837 +170422,852.1100000069945,-0.05278926992163136 +170423,852.1150000069946,-0.052788893210329466 +170424,852.1200000069947,-0.05278851634653792 +170425,852.1250000069948,-0.05278813933014182 +170426,852.1300000069949,-0.05278776216102614 +170427,852.135000006995,-0.052787384839075725 +170428,852.1400000069951,-0.052787007364175326 +170429,852.1450000069952,-0.052786629736209546 +170430,852.1500000069954,-0.052786251955062896 +170431,852.1550000069955,-0.05278587402061973 +170432,852.1600000069956,-0.052785495932764305 +170433,852.1650000069957,-0.05278511769138075 +170434,852.1700000069958,-0.052784739296353064 +170435,852.1750000069959,-0.052784360747565144 +170436,852.180000006996,-0.05278398204490076 +170437,852.1850000069961,-0.05278360318824353 +170438,852.1900000069962,-0.052783224177476995 +170439,852.1950000069963,-0.05278284501248454 +170440,852.2000000069964,-0.05278246569314945 +170441,852.2050000069966,-0.05278208621935485 +170442,852.2100000069967,-0.05278170659098379 +170443,852.2150000069968,-0.05278132680791916 +170444,852.2200000069969,-0.05278094687004375 +170445,852.225000006997,-0.05278056677724021 +170446,852.2300000069971,-0.05278018652939107 +170447,852.2350000069972,-0.05277980612637876 +170448,852.2400000069973,-0.05277942556808554 +170449,852.2450000069974,-0.05277904485439359 +170450,852.2500000069975,-0.05277866398518494 +170451,852.2550000069976,-0.05277828296034149 +170452,852.2600000069978,-0.052777901779745034 +170453,852.2650000069979,-0.05277752044327724 +170454,852.270000006998,-0.052777138950819646 +170455,852.2750000069981,-0.05277675730225366 +170456,852.2800000069982,-0.052776375497460566 +170457,852.2850000069983,-0.05277599353632152 +170458,852.2900000069984,-0.052775611418717575 +170459,852.2950000069985,-0.05277522914452962 +170460,852.3000000069986,-0.05277484671363844 +170461,852.3050000069987,-0.052774464125924694 +170462,852.3100000069988,-0.05277408138126893 +170463,852.315000006999,-0.05277369847955153 +170464,852.3200000069991,-0.05277331542065278 +170465,852.3250000069992,-0.05277293220445282 +170466,852.3300000069993,-0.05277254883083167 +170467,852.3350000069994,-0.052772165299669244 +170468,852.3400000069995,-0.052771781610845295 +170469,852.3450000069996,-0.05277139776423947 +170470,852.3500000069997,-0.052771013759731276 +170471,852.3550000069998,-0.0527706295972001 +170472,852.3600000069999,-0.05277024527652519 +170473,852.365000007,-0.05276986079758568 +170474,852.3700000070002,-0.052769476160260564 +170475,852.3750000070003,-0.05276909136442872 +170476,852.3800000070004,-0.052768706409968884 +170477,852.3850000070005,-0.052768321296759665 +170478,852.3900000070006,-0.052767936024679545 +170479,852.3950000070007,-0.05276755059360688 +170480,852.4000000070008,-0.05276716500341991 +170481,852.4050000070009,-0.05276677925399669 +170482,852.410000007001,-0.05276639334521522 +170483,852.4150000070011,-0.05276600727695332 +170484,852.4200000070012,-0.0527656210490887 +170485,852.4250000070014,-0.05276523466149891 +170486,852.4300000070015,-0.05276484811406141 +170487,852.4350000070016,-0.05276446140665351 +170488,852.4400000070017,-0.05276407453915239 +170489,852.4450000070018,-0.05276368751143509 +170490,852.4500000070019,-0.052763300323378545 +170491,852.455000007002,-0.052762912974859535 +170492,852.4600000070021,-0.05276252546575471 +170493,852.4650000070022,-0.05276213779594059 +170494,852.4700000070023,-0.052761749965293564 +170495,852.4750000070024,-0.052761361973689885 +170496,852.4800000070026,-0.05276097382100569 +170497,852.4850000070027,-0.05276058550711697 +170498,852.4900000070028,-0.052760197031899596 +170499,852.4950000070029,-0.05275980839522927 +170500,852.500000007003,-0.052759419596981605 +170501,852.5050000070031,-0.052759030637032044 +170502,852.5100000070032,-0.052758641515255916 +170503,852.5150000070033,-0.05275825223152842 +170504,852.5200000070034,-0.05275786278572461 +170505,852.5250000070035,-0.05275747317771942 +170506,852.5300000070037,-0.05275708340738764 +170507,852.5350000070038,-0.052756693474603905 +170508,852.5400000070039,-0.05275630337924277 +170509,852.545000007004,-0.05275591312117858 +170510,852.5500000070041,-0.05275552270028561 +170511,852.5550000070042,-0.05275513211643798 +170512,852.5600000070043,-0.05275474136950966 +170513,852.5650000070044,-0.052754350459374495 +170514,852.5700000070045,-0.0527539593859062 +170515,852.5750000070046,-0.05275356814897833 +170516,852.5800000070047,-0.052753176748464345 +170517,852.5850000070049,-0.052752785184237524 +170518,852.590000007005,-0.05275239345617105 +170519,852.5950000070051,-0.052752001564137944 +170520,852.6000000070052,-0.05275160950801109 +170521,852.6050000070053,-0.05275121728766324 +170522,852.6100000070054,-0.052750824902967015 +170523,852.6150000070055,-0.05275043235379488 +170524,852.6200000070056,-0.05275003964001918 +170525,852.6250000070057,-0.05274964676151214 +170526,852.6300000070058,-0.052749253718145796 +170527,852.6350000070059,-0.052748860509792085 +170528,852.640000007006,-0.05274846713632279 +170529,852.6450000070062,-0.052748073597609565 +170530,852.6500000070063,-0.05274767989352391 +170531,852.6550000070064,-0.0527472860239372 +170532,852.6600000070065,-0.052746891988720665 +170533,852.6650000070066,-0.0527464977877454 +170534,852.6700000070067,-0.05274610342088235 +170535,852.6750000070068,-0.05274570888800234 +170536,852.6800000070069,-0.05274531418897604 +170537,852.685000007007,-0.05274491932367397 +170538,852.6900000070071,-0.05274452429196653 +170539,852.6950000070073,-0.052744129093723974 +170540,852.7000000070074,-0.0527437337288164 +170541,852.7050000070075,-0.052743338197113784 +170542,852.7100000070076,-0.05274294249848596 +170543,852.7150000070077,-0.0527425466328026 +170544,852.7200000070078,-0.05274215059993327 +170545,852.7250000070079,-0.05274175439974735 +170546,852.730000007008,-0.05274135803211412 +170547,852.7350000070081,-0.05274096149690269 +170548,852.7400000070082,-0.05274056479398203 +170549,852.7450000070083,-0.05274016792322098 +170550,852.7500000070085,-0.05273977088448824 +170551,852.7550000070086,-0.052739373677652336 +170552,852.7600000070087,-0.05273897630258169 +170553,852.7650000070088,-0.05273857875914456 +170554,852.7700000070089,-0.05273818104720907 +170555,852.775000007009,-0.05273778316664318 +170556,852.7800000070091,-0.05273738511731473 +170557,852.7850000070092,-0.05273698689909139 +170558,852.7900000070093,-0.052736588511840723 +170559,852.7950000070094,-0.052736189955430106 +170560,852.8000000070095,-0.05273579122972682 +170561,852.8050000070097,-0.05273539233459793 +170562,852.8100000070098,-0.052734993269910435 +170563,852.8150000070099,-0.05273459403553113 +170564,852.82000000701,-0.05273419463132669 +170565,852.8250000070101,-0.052733795057163635 +170566,852.8300000070102,-0.05273339531290836 +170567,852.8350000070103,-0.05273299539842708 +170568,852.8400000070104,-0.052732595313585894 +170569,852.8450000070105,-0.052732195058250726 +170570,852.8500000070106,-0.05273179463228739 +170571,852.8550000070107,-0.052731394035561506 +170572,852.8600000070109,-0.052730993267938585 +170573,852.865000007011,-0.052730592329283996 +170574,852.8700000070111,-0.05273019121946291 +170575,852.8750000070112,-0.05272978993834039 +170576,852.8800000070113,-0.052729388485781355 +170577,852.8850000070114,-0.052728986861650555 +170578,852.8900000070115,-0.05272858506581259 +170579,852.8950000070116,-0.05272818309813195 +170580,852.9000000070117,-0.05272778095847292 +170581,852.9050000070118,-0.05272737864669968 +170582,852.910000007012,-0.05272697616267622 +170583,852.915000007012,-0.05272657350626644 +170584,852.9200000070122,-0.05272617067733401 +170585,852.9250000070123,-0.05272576767574253 +170586,852.9300000070124,-0.05272536450135542 +170587,852.9350000070125,-0.05272496115403591 +170588,852.9400000070126,-0.05272455763364714 +170589,852.9450000070127,-0.052724153940052046 +170590,852.9500000070128,-0.052723750073113466 +170591,852.9550000070129,-0.05272334603269404 +170592,852.960000007013,-0.052722941818656284 +170593,852.9650000070131,-0.05272253743086256 +170594,852.9700000070133,-0.05272213286917507 +170595,852.9750000070134,-0.05272172813345585 +170596,852.9800000070135,-0.052721323223566825 +170597,852.9850000070136,-0.05272091813936973 +170598,852.9900000070137,-0.05272051288072616 +170599,852.9950000070138,-0.05272010744749757 +170600,853.0000000070139,-0.052719701839545226 +170601,853.005000007014,-0.05271929605673027 +170602,853.0100000070141,-0.052718890098913694 +170603,853.0150000070142,-0.05271848396595631 +170604,853.0200000070143,-0.05271807765771881 +170605,853.0250000070145,-0.052717671174061696 +170606,853.0300000070146,-0.05271726451484534 +170607,853.0350000070147,-0.052716857679929945 +170608,853.0400000070148,-0.052716450669175574 +170609,853.0450000070149,-0.05271604348244213 +170610,853.050000007015,-0.05271563611958935 +170611,853.0550000070151,-0.05271522858047682 +170612,853.0600000070152,-0.05271482086496397 +170613,853.0650000070153,-0.05271441297291008 +170614,853.0700000070154,-0.05271400490417429 +170615,853.0750000070155,-0.05271359665861553 +170616,853.0800000070157,-0.05271318823609263 +170617,853.0850000070158,-0.05271277963646424 +170618,853.0900000070159,-0.05271237085958883 +170619,853.095000007016,-0.052711961905324754 +170620,853.1000000070161,-0.052711552773530186 +170621,853.1050000070162,-0.052711143464063144 +170622,853.1100000070163,-0.0527107339767815 +170623,853.1150000070164,-0.05271032431154293 +170624,853.1200000070165,-0.05270991446820501 +170625,853.1250000070166,-0.052709504446625116 +170626,853.1300000070167,-0.05270909424666047 +170627,853.1350000070169,-0.05270868386816814 +170628,853.140000007017,-0.052708273311005034 +170629,853.1450000070171,-0.05270786257502789 +170630,853.1500000070172,-0.052707451660093316 +170631,853.1550000070173,-0.05270704056605772 +170632,853.1600000070174,-0.05270662929277738 +170633,853.1650000070175,-0.052706217840108406 +170634,853.1700000070176,-0.05270580620790675 +170635,853.1750000070177,-0.052705394396028185 +170636,853.1800000070178,-0.05270498240432833 +170637,853.185000007018,-0.05270457023266267 +170638,853.190000007018,-0.0527041578808865 +170639,853.1950000070182,-0.05270374534885494 +170640,853.2000000070183,-0.052703332636422975 +170641,853.2050000070184,-0.052702919743445424 +170642,853.2100000070185,-0.052702506669776925 +170643,853.2150000070186,-0.052702093415271975 +170644,853.2200000070187,-0.052701679979784914 +170645,853.2250000070188,-0.05270126636316988 +170646,853.2300000070189,-0.052700852565280884 +170647,853.235000007019,-0.05270043858597175 +170648,853.2400000070191,-0.05270002442509616 +170649,853.2450000070193,-0.052699610082507606 +170650,853.2500000070194,-0.05269919555805944 +170651,853.2550000070195,-0.052698780851604836 +170652,853.2600000070196,-0.052698365962996804 +170653,853.2650000070197,-0.05269795089208819 +170654,853.2700000070198,-0.05269753563873167 +170655,853.2750000070199,-0.052697120202779744 +170656,853.28000000702,-0.052696704584084784 +170657,853.2850000070201,-0.05269628878249897 +170658,853.2900000070202,-0.0526958727978743 +170659,853.2950000070203,-0.05269545663006265 +170660,853.3000000070205,-0.05269504027891569 +170661,853.3050000070206,-0.052694623744284914 +170662,853.3100000070207,-0.052694207026021685 +170663,853.3150000070208,-0.05269379012397718 +170664,853.3200000070209,-0.05269337303800242 +170665,853.325000007021,-0.05269295576794823 +170666,853.3300000070211,-0.0526925383136653 +170667,853.3350000070212,-0.05269212067500412 +170668,853.3400000070213,-0.052691702851815035 +170669,853.3450000070214,-0.05269128484394823 +170670,853.3500000070215,-0.05269086665125367 +170671,853.3550000070217,-0.052690448273581214 +170672,853.3600000070218,-0.052690029710780496 +170673,853.3650000070219,-0.052689610962701014 +170674,853.370000007022,-0.05268919202919209 +170675,853.3750000070221,-0.05268877291010287 +170676,853.3800000070222,-0.05268835360528233 +170677,853.3850000070223,-0.05268793411457926 +170678,853.3900000070224,-0.05268751443784231 +170679,853.3950000070225,-0.05268709457491994 +170680,853.4000000070226,-0.052686674525660435 +170681,853.4050000070227,-0.052686254289911916 +170682,853.4100000070229,-0.05268583386752233 +170683,853.415000007023,-0.052685413258339454 +170684,853.4200000070231,-0.052684992462210874 +170685,853.4250000070232,-0.052684571478984026 +170686,853.4300000070233,-0.052684150308506164 +170687,853.4350000070234,-0.052683728950624356 +170688,853.4400000070235,-0.052683307405185516 +170689,853.4450000070236,-0.05268288567203638 +170690,853.4500000070237,-0.05268246375102349 +170691,853.4550000070238,-0.052682041641993235 +170692,853.460000007024,-0.052681619344791826 +170693,853.4650000070241,-0.0526811968592653 +170694,853.4700000070242,-0.052680774185259495 +170695,853.4750000070243,-0.05268035132262011 +170696,853.4800000070244,-0.05267992827119264 +170697,853.4850000070245,-0.052679505030822416 +170698,853.4900000070246,-0.05267908160135458 +170699,853.4950000070247,-0.052678657982634124 +170700,853.5000000070248,-0.05267823417450583 +170701,853.5050000070249,-0.05267781017681433 +170702,853.510000007025,-0.05267738598940407 +170703,853.5150000070252,-0.0526769616121193 +170704,853.5200000070253,-0.05267653704480412 +170705,853.5250000070254,-0.05267611228730243 +170706,853.5300000070255,-0.05267568733945797 +170707,853.5350000070256,-0.05267526220111428 +170708,853.5400000070257,-0.05267483687211474 +170709,853.5450000070258,-0.052674411352302546 +170710,853.5500000070259,-0.052673985641520704 +170711,853.555000007026,-0.05267355973961205 +170712,853.5600000070261,-0.052673133646419235 +170713,853.5650000070262,-0.05267270736178473 +170714,853.5700000070264,-0.052672280885550836 +170715,853.5750000070265,-0.052671854217559655 +170716,853.5800000070266,-0.052671427357653115 +170717,853.5850000070267,-0.052671000305672976 +170718,853.5900000070268,-0.052670573061460786 +170719,853.5950000070269,-0.05267014562485794 +170720,853.600000007027,-0.05266971799570564 +170721,853.6050000070271,-0.05266929017384492 +170722,853.6100000070272,-0.052668862159116585 +170723,853.6150000070273,-0.05266843395136131 +170724,853.6200000070274,-0.052668005550419554 +170725,853.6250000070276,-0.05266757695613161 +170726,853.6300000070277,-0.05266714816833759 +170727,853.6350000070278,-0.05266671918687739 +170728,853.6400000070279,-0.05266629001159076 +170729,853.645000007028,-0.05266586064231724 +170730,853.6500000070281,-0.052665431078896194 +170731,853.6550000070282,-0.0526650013211668 +170732,853.6600000070283,-0.05266457136896806 +170733,853.6650000070284,-0.05266414122213877 +170734,853.6700000070285,-0.05266371088051756 +170735,853.6750000070286,-0.05266328034394286 +170736,853.6800000070288,-0.05266284961225291 +170737,853.6850000070289,-0.05266241868528579 +170738,853.690000007029,-0.05266198756287935 +170739,853.6950000070291,-0.05266155624487128 +170740,853.7000000070292,-0.052661124731099095 +170741,853.7050000070293,-0.05266069302140009 +170742,853.7100000070294,-0.052660261115611395 +170743,853.7150000070295,-0.052659829013569935 +170744,853.7200000070296,-0.05265939671511245 +170745,853.7250000070297,-0.0526589642200755 +170746,853.7300000070298,-0.05265853152829547 +170747,853.73500000703,-0.05265809863960851 +170748,853.7400000070301,-0.05265766555385061 +170749,853.7450000070302,-0.052657232270857564 +170750,853.7500000070303,-0.05265679879046499 +170751,853.7550000070304,-0.052656365112508284 +170752,853.7600000070305,-0.05265593123682268 +170753,853.7650000070306,-0.0526554971632432 +170754,853.7700000070307,-0.05265506289160469 +170755,853.7750000070308,-0.05265462842174179 +170756,853.7800000070309,-0.05265419375348897 +170757,853.785000007031,-0.05265375888668047 +170758,853.7900000070312,-0.052653323821150365 +170759,853.7950000070313,-0.05265288855673254 +170760,853.8000000070314,-0.052652453093260665 +170761,853.8050000070315,-0.052652017430568236 +170762,853.8100000070316,-0.05265158156848855 +170763,853.8150000070317,-0.05265114550685471 +170764,853.8200000070318,-0.0526507092454996 +170765,853.8250000070319,-0.052650272784255964 +170766,853.830000007032,-0.05264983612295629 +170767,853.8350000070321,-0.0526493992614329 +170768,853.8400000070322,-0.05264896219951794 +170769,853.8450000070324,-0.052648524937043306 +170770,853.8500000070325,-0.05264808747384075 +170771,853.8550000070326,-0.05264764980974179 +170772,853.8600000070327,-0.052647211944577776 +170773,853.8650000070328,-0.05264677387817984 +170774,853.8700000070329,-0.052646335610378944 +170775,853.875000007033,-0.05264589714100581 +170776,853.8800000070331,-0.052645458469890986 +170777,853.8850000070332,-0.05264501959686483 +170778,853.8900000070333,-0.05264458052175749 +170779,853.8950000070334,-0.05264414124439891 +170780,853.9000000070336,-0.05264370176461884 +170781,853.9050000070337,-0.05264326208224684 +170782,853.9100000070338,-0.052642822197112256 +170783,853.9150000070339,-0.05264238210904422 +170784,853.920000007034,-0.05264194181787171 +170785,853.9250000070341,-0.052641501323423455 +170786,853.9300000070342,-0.052641060625528015 +170787,853.9350000070343,-0.05264061972401373 +170788,853.9400000070344,-0.05264017861870875 +170789,853.9450000070345,-0.052639737309441006 +170790,853.9500000070346,-0.052639295796038245 +170791,853.9550000070348,-0.052638854078327996 +170792,853.9600000070349,-0.052638412156137605 +170793,853.965000007035,-0.0526379700292942 +170794,853.9700000070351,-0.05263752769762469 +170795,853.9750000070352,-0.05263708516095582 +170796,853.9800000070353,-0.05263664241911411 +170797,853.9850000070354,-0.05263619947192586 +170798,853.9900000070355,-0.05263575631921718 +170799,853.9950000070356,-0.05263531296081398 +170800,854.0000000070357,-0.05263486939654196 +170801,854.0050000070358,-0.052634425626226604 +170802,854.010000007036,-0.0526339816496932 +170803,854.0150000070361,-0.05263353746676683 +170804,854.0200000070362,-0.05263309307727236 +170805,854.0250000070363,-0.052632648481034466 +170806,854.0300000070364,-0.0526322036778776 +170807,854.0350000070365,-0.05263175866762602 +170808,854.0400000070366,-0.052631313450103745 +170809,854.0450000070367,-0.05263086802513465 +170810,854.0500000070368,-0.052630422392542314 +170811,854.0550000070369,-0.052629976552150196 +170812,854.060000007037,-0.05262953050378148 +170813,854.0650000070372,-0.05262908424725916 +170814,854.0700000070373,-0.052628637782406035 +170815,854.0750000070374,-0.05262819110904468 +170816,854.0800000070375,-0.05262774422699745 +170817,854.0850000070376,-0.05262729713608653 +170818,854.0900000070377,-0.05262684983613383 +170819,854.0950000070378,-0.0526264023269611 +170820,854.1000000070379,-0.05262595460838986 +170821,854.105000007038,-0.052625506680241414 +170822,854.1100000070381,-0.05262505854233687 +170823,854.1150000070382,-0.05262461019449711 +170824,854.1200000070384,-0.05262416163654278 +170825,854.1250000070385,-0.05262371286829436 +170826,854.1300000070386,-0.052623263889572086 +170827,854.1350000070387,-0.05262281470019599 +170828,854.1400000070388,-0.052622365299985874 +170829,854.1450000070389,-0.05262191568876135 +170830,854.150000007039,-0.052621465866341796 +170831,854.1550000070391,-0.05262101583254639 +170832,854.1600000070392,-0.05262056558719408 +170833,854.1650000070393,-0.052620115130103604 +170834,854.1700000070394,-0.052619664461093466 +170835,854.1750000070396,-0.05261921357998199 +170836,854.1800000070397,-0.05261876248658724 +170837,854.1850000070398,-0.05261831118072712 +170838,854.1900000070399,-0.05261785966221925 +170839,854.19500000704,-0.05261740793088106 +170840,854.2000000070401,-0.05261695598652979 +170841,854.2050000070402,-0.05261650382898242 +170842,854.2100000070403,-0.05261605145805572 +170843,854.2150000070404,-0.05261559887356626 +170844,854.2200000070405,-0.05261514607533036 +170845,854.2250000070406,-0.05261469306316415 +170846,854.2300000070408,-0.05261423983688353 +170847,854.2350000070409,-0.052613786396304166 +170848,854.240000007041,-0.05261333274124151 +170849,854.2450000070411,-0.0526128788715108 +170850,854.2500000070412,-0.05261242478692705 +170851,854.2550000070413,-0.052611970487305044 +170852,854.2600000070414,-0.05261151597245935 +170853,854.2650000070415,-0.0526110612422043 +170854,854.2700000070416,-0.05261060629635402 +170855,854.2750000070417,-0.052610151134722415 +170856,854.2800000070418,-0.05260969575712315 +170857,854.285000007042,-0.05260924016336967 +170858,854.2900000070421,-0.052608784353275186 +170859,854.2950000070422,-0.052608328326652715 +170860,854.3000000070423,-0.05260787208331503 +170861,854.3050000070424,-0.05260741562307467 +170862,854.3100000070425,-0.05260695894574396 +170863,854.3150000070426,-0.052606502051134985 +170864,854.3200000070427,-0.05260604493905963 +170865,854.3250000070428,-0.05260558760932952 +170866,854.3300000070429,-0.05260513006175607 +170867,854.335000007043,-0.05260467229615047 +170868,854.3400000070432,-0.05260421431232368 +170869,854.3450000070433,-0.05260375611008642 +170870,854.3500000070434,-0.05260329768924921 +170871,854.3550000070435,-0.05260283904962229 +170872,854.3600000070436,-0.052602380191015714 +170873,854.3650000070437,-0.0526019211132393 +170874,854.3700000070438,-0.05260146181610263 +170875,854.3750000070439,-0.05260100229941504 +170876,854.380000007044,-0.05260054256298565 +170877,854.3850000070441,-0.05260008260662336 +170878,854.3900000070443,-0.05259962243013682 +170879,854.3950000070444,-0.05259916203333445 +170880,854.4000000070445,-0.052598701416024456 +170881,854.4050000070446,-0.052598240578014765 +170882,854.4100000070447,-0.05259777951911313 +170883,854.4150000070448,-0.052597318239127035 +170884,854.4200000070449,-0.05259685673786375 +170885,854.425000007045,-0.05259639501513027 +170886,854.4300000070451,-0.05259593307073341 +170887,854.4350000070452,-0.05259547090447971 +170888,854.4400000070453,-0.05259500851617548 +170889,854.4450000070455,-0.05259454590562683 +170890,854.4500000070456,-0.05259408307263958 +170891,854.4550000070457,-0.05259362001701935 +170892,854.4600000070458,-0.05259315673857151 +170893,854.4650000070459,-0.0525926932371012 +170894,854.470000007046,-0.052592229512413324 +170895,854.4750000070461,-0.05259176556431254 +170896,854.4800000070462,-0.052591301392603255 +170897,854.4850000070463,-0.05259083699708967 +170898,854.4900000070464,-0.0525903723775757 +170899,854.4950000070465,-0.05258990753386509 +170900,854.5000000070467,-0.05258944246576127 +170901,854.5050000070468,-0.05258897717306748 +170902,854.5100000070469,-0.0525885116555867 +170903,854.515000007047,-0.05258804591312169 +170904,854.5200000070471,-0.05258757994547493 +170905,854.5250000070472,-0.05258711375244869 +170906,854.5300000070473,-0.05258664733384498 +170907,854.5350000070474,-0.05258618068946558 +170908,854.5400000070475,-0.052585713819112014 +170909,854.5450000070476,-0.052585246722585584 +170910,854.5500000070477,-0.05258477939968731 +170911,854.5550000070479,-0.052584311850218016 +170912,854.560000007048,-0.05258384407397826 +170913,854.5650000070481,-0.05258337607076834 +170914,854.5700000070482,-0.052582907840388333 +170915,854.5750000070483,-0.05258243938263804 +170916,854.5800000070484,-0.052581970697317064 +170917,854.5850000070485,-0.052581501784224716 +170918,854.5900000070486,-0.052581032643160074 +170919,854.5950000070487,-0.052580563273921986 +170920,854.6000000070488,-0.05258009367630904 +170921,854.605000007049,-0.052579623850119564 +170922,854.610000007049,-0.05257915379515164 +170923,854.6150000070492,-0.052578683511203136 +170924,854.6200000070493,-0.052578212998071625 +170925,854.6250000070494,-0.052577742255554456 +170926,854.6300000070495,-0.052577271283448725 +170927,854.6350000070496,-0.05257680008155127 +170928,854.6400000070497,-0.05257632864965868 +170929,854.6450000070498,-0.05257585698756731 +170930,854.6500000070499,-0.05257538509507323 +170931,854.65500000705,-0.052574912971972296 +170932,854.6600000070501,-0.05257444061806008 +170933,854.6650000070503,-0.05257396803313192 +170934,854.6700000070504,-0.052573495216982895 +170935,854.6750000070505,-0.05257302216940784 +170936,854.6800000070506,-0.052572548890201305 +170937,854.6850000070507,-0.052572075379157625 +170938,854.6900000070508,-0.05257160163607085 +170939,854.6950000070509,-0.0525711276607348 +170940,854.700000007051,-0.05257065345294303 +170941,854.7050000070511,-0.05257017901248884 +170942,854.7100000070512,-0.05256970433916524 +170943,854.7150000070513,-0.05256922943276504 +170944,854.7200000070515,-0.052568754293080756 +170945,854.7250000070516,-0.052568278919904655 +170946,854.7300000070517,-0.052567803313028766 +170947,854.7350000070518,-0.05256732747224482 +170948,854.7400000070519,-0.05256685139734431 +170949,854.745000007052,-0.052566375088118476 +170950,854.7500000070521,-0.052565898544358294 +170951,854.7550000070522,-0.05256542176585447 +170952,854.7600000070523,-0.052564944752397466 +170953,854.7650000070524,-0.05256446750377747 +170954,854.7700000070525,-0.052563990019784415 +170955,854.7750000070527,-0.052563512300207976 +170956,854.7800000070528,-0.05256303434483755 +170957,854.7850000070529,-0.05256255615346228 +170958,854.790000007053,-0.05256207772587106 +170959,854.7950000070531,-0.0525615990618525 +170960,854.8000000070532,-0.05256112016119496 +170961,854.8050000070533,-0.05256064102368653 +170962,854.8100000070534,-0.05256016164911502 +170963,854.8150000070535,-0.052559682037268005 +170964,854.8200000070536,-0.05255920218793279 +170965,854.8250000070537,-0.05255872210089638 +170966,854.8300000070539,-0.052558241775945536 +170967,854.835000007054,-0.05255776121286677 +170968,854.8400000070541,-0.0525572804114463 +170969,854.8450000070542,-0.052556799371470106 +170970,854.8500000070543,-0.052556318092723854 +170971,854.8550000070544,-0.05255583657499298 +170972,854.8600000070545,-0.05255535481806264 +170973,854.8650000070546,-0.052554872821717724 +170974,854.8700000070547,-0.052554390585742836 +170975,854.8750000070548,-0.05255390810992232 +170976,854.880000007055,-0.05255342539404026 +170977,854.885000007055,-0.052552942437880446 +170978,854.8900000070552,-0.05255245924122642 +170979,854.8950000070553,-0.052551975803861437 +170980,854.9000000070554,-0.05255149212556849 +170981,854.9050000070555,-0.05255100820613029 +170982,854.9100000070556,-0.05255052404532927 +170983,854.9150000070557,-0.05255003964294761 +170984,854.9200000070558,-0.05254955499876719 +170985,854.9250000070559,-0.05254907011256964 +170986,854.930000007056,-0.05254858498413628 +170987,854.9350000070561,-0.052548099613248196 +170988,854.9400000070563,-0.05254761399968618 +170989,854.9450000070564,-0.05254712814323074 +170990,854.9500000070565,-0.052546642043662106 +170991,854.9550000070566,-0.05254615570076024 +170992,854.9600000070567,-0.05254566911430483 +170993,854.9650000070568,-0.05254518228407528 +170994,854.9700000070569,-0.052544695209850716 +170995,854.975000007057,-0.05254420789140998 +170996,854.9800000070571,-0.05254372032853165 +170997,854.9850000070572,-0.052543232520994 +170998,854.9900000070573,-0.05254274446857502 +170999,854.9950000070575,-0.05254225617105247 +171000,855.0000000070576,-0.05254176762820377 +171001,855.0050000070577,-0.05254127883980608 +171002,855.0100000070578,-0.05254078980563628 +171003,855.0150000070579,-0.05254030052547097 +171004,855.020000007058,-0.05253981099908646 +171005,855.0250000070581,-0.05253932122625876 +171006,855.0300000070582,-0.05253883120676365 +171007,855.0350000070583,-0.05253834094037656 +171008,855.0400000070584,-0.05253785042687268 +171009,855.0450000070585,-0.052537359666026885 +171010,855.0500000070587,-0.0525368686576138 +171011,855.0550000070588,-0.05253637740140772 +171012,855.0600000070589,-0.05253588589718268 +171013,855.065000007059,-0.052535394144712415 +171014,855.0700000070591,-0.05253490214377038 +171015,855.0750000070592,-0.052534409894129754 +171016,855.0800000070593,-0.052533917395563394 +171017,855.0850000070594,-0.052533424647843885 +171018,855.0900000070595,-0.05253293165074353 +171019,855.0950000070596,-0.052532438404034355 +171020,855.1000000070597,-0.05253194490748804 +171021,855.1050000070599,-0.05253145116087602 +171022,855.11000000706,-0.05253095716396943 +171023,855.1150000070601,-0.05253046291653911 +171024,855.1200000070602,-0.05252996841835561 +171025,855.1250000070603,-0.052529473669189176 +171026,855.1300000070604,-0.05252897866880977 +171027,855.1350000070605,-0.05252848341698706 +171028,855.1400000070606,-0.052527987913490407 +171029,855.1450000070607,-0.052527492158088905 +171030,855.1500000070608,-0.052526996150551314 +171031,855.155000007061,-0.052526499890646124 +171032,855.1600000070611,-0.05252600337814153 +171033,855.1650000070612,-0.0525255066128054 +171034,855.1700000070613,-0.05252500959440535 +171035,855.1750000070614,-0.05252451232270866 +171036,855.1800000070615,-0.05252401479748234 +171037,855.1850000070616,-0.05252351701849307 +171038,855.1900000070617,-0.05252301898550725 +171039,855.1950000070618,-0.05252252069829098 +171040,855.2000000070619,-0.05252202215661005 +171041,855.205000007062,-0.05252152336022995 +171042,855.2100000070621,-0.052521024308915885 +171043,855.2150000070623,-0.05252052500243275 +171044,855.2200000070624,-0.05252002544054511 +171045,855.2250000070625,-0.052519525623017274 +171046,855.2300000070626,-0.052519025549613206 +171047,855.2350000070627,-0.05251852522009659 +171048,855.2400000070628,-0.05251802463423081 +171049,855.2450000070629,-0.05251752379177893 +171050,855.250000007063,-0.05251702269250369 +171051,855.2550000070631,-0.052516521336167556 +171052,855.2600000070632,-0.05251601972253269 +171053,855.2650000070633,-0.052515517851360924 +171054,855.2700000070635,-0.052515015722413794 +171055,855.2750000070636,-0.05251451333545253 +171056,855.2800000070637,-0.052514010690238054 +171057,855.2850000070638,-0.05251350778653095 +171058,855.2900000070639,-0.05251300462409154 +171059,855.295000007064,-0.0525125012026798 +171060,855.3000000070641,-0.05251199752205541 +171061,855.3050000070642,-0.05251149358197773 +171062,855.3100000070643,-0.052510989382205824 +171063,855.3150000070644,-0.052510484922498435 +171064,855.3200000070646,-0.05250998020261399 +171065,855.3250000070647,-0.0525094752223106 +171066,855.3300000070648,-0.052508969981346056 +171067,855.3350000070649,-0.052508464479477865 +171068,855.340000007065,-0.052507958716463195 +171069,855.3450000070651,-0.05250745269205889 +171070,855.3500000070652,-0.052506946406021514 +171071,855.3550000070653,-0.052506439858107275 +171072,855.3600000070654,-0.05250593304807208 +171073,855.3650000070655,-0.05250542597567153 +171074,855.3700000070656,-0.052504918640660876 +171075,855.3750000070658,-0.0525044110427951 +171076,855.3800000070659,-0.05250390318182881 +171077,855.385000007066,-0.05250339505751633 +171078,855.3900000070661,-0.052502886669611656 +171079,855.3950000070662,-0.05250237801786845 +171080,855.4000000070663,-0.05250186910204008 +171081,855.4050000070664,-0.052501359921879556 +171082,855.4100000070665,-0.05250085047713959 +171083,855.4150000070666,-0.05250034076757258 +171084,855.4200000070667,-0.05249983079293058 +171085,855.4250000070668,-0.05249932055296533 +171086,855.430000007067,-0.052498810047428235 +171087,855.4350000070671,-0.05249829927607039 +171088,855.4400000070672,-0.05249778823864254 +171089,855.4450000070673,-0.05249727693489514 +171090,855.4500000070674,-0.05249676536457828 +171091,855.4550000070675,-0.05249625352744175 +171092,855.4600000070676,-0.052495741423235 +171093,855.4650000070677,-0.05249522905170716 +171094,855.4700000070678,-0.05249471641260702 +171095,855.4750000070679,-0.05249420350568305 +171096,855.480000007068,-0.05249369033068338 +171097,855.4850000070682,-0.052493176887355816 +171098,855.4900000070683,-0.05249266317544783 +171099,855.4950000070684,-0.05249214919470657 +171100,855.5000000070685,-0.05249163494487884 +171101,855.5050000070686,-0.052491120425711114 +171102,855.5100000070687,-0.05249060563694955 +171103,855.5150000070688,-0.05249009057833995 +171104,855.5200000070689,-0.05248957524962778 +171105,855.525000007069,-0.05248905965055819 +171106,855.5300000070691,-0.052488543780875974 +171107,855.5350000070692,-0.0524880276403256 +171108,855.5400000070694,-0.0524875112286512 +171109,855.5450000070695,-0.05248699454559658 +171110,855.5500000070696,-0.05248647759090517 +171111,855.5550000070697,-0.05248596036432011 +171112,855.5600000070698,-0.05248544286558416 +171113,855.5650000070699,-0.05248492509443978 +171114,855.57000000707,-0.05248440705062903 +171115,855.5750000070701,-0.052483888733893695 +171116,855.5800000070702,-0.05248337014397518 +171117,855.5850000070703,-0.052482851280614556 +171118,855.5900000070704,-0.05248233214355256 +171119,855.5950000070706,-0.05248181273252956 +171120,855.6000000070707,-0.05248129304728562 +171121,855.6050000070708,-0.052480773087560426 +171122,855.6100000070709,-0.05248025285309332 +171123,855.615000007071,-0.052479732343623325 +171124,855.6200000070711,-0.052479211558889106 +171125,855.6250000070712,-0.052478690498628966 +171126,855.6300000070713,-0.05247816916258087 +171127,855.6350000070714,-0.05247764755048245 +171128,855.6400000070715,-0.05247712566207096 +171129,855.6450000070716,-0.05247660349708333 +171130,855.6500000070718,-0.05247608105525615 +171131,855.6550000070719,-0.052475558336325605 +171132,855.660000007072,-0.05247503534002759 +171133,855.6650000070721,-0.0524745120660976 +171134,855.6700000070722,-0.05247398851427083 +171135,855.6750000070723,-0.05247346468428208 +171136,855.6800000070724,-0.05247294057586581 +171137,855.6850000070725,-0.052472416188756116 +171138,855.6900000070726,-0.05247189152268676 +171139,855.6950000070727,-0.05247136657739114 +171140,855.7000000070728,-0.05247084135260229 +171141,855.705000007073,-0.052470315848052895 +171142,855.7100000070731,-0.05246979006347529 +171143,855.7150000070732,-0.05246926399860142 +171144,855.7200000070733,-0.05246873765316292 +171145,855.7250000070734,-0.05246821102689104 +171146,855.7300000070735,-0.05246768411951666 +171147,855.7350000070736,-0.05246715693077033 +171148,855.7400000070737,-0.05246662946038221 +171149,855.7450000070738,-0.052466101708082094 +171150,855.7500000070739,-0.052465573673599455 +171151,855.755000007074,-0.05246504535666337 +171152,855.7600000070742,-0.05246451675700256 +171153,855.7650000070743,-0.05246398787434538 +171154,855.7700000070744,-0.05246345870841982 +171155,855.7750000070745,-0.052462929258953524 +171156,855.7800000070746,-0.05246239952567375 +171157,855.7850000070747,-0.05246186950830739 +171158,855.7900000070748,-0.05246133920658096 +171159,855.7950000070749,-0.05246080862022065 +171160,855.800000007075,-0.052460277748952226 +171161,855.8050000070751,-0.05245974659250113 +171162,855.8100000070752,-0.05245921515059242 +171163,855.8150000070754,-0.05245868342295076 +171164,855.8200000070755,-0.05245815140930047 +171165,855.8250000070756,-0.0524576191093655 +171166,855.8300000070757,-0.05245708652286942 +171167,855.8350000070758,-0.05245655364953542 +171168,855.8400000070759,-0.052456020489086326 +171169,855.845000007076,-0.05245548704124459 +171170,855.8500000070761,-0.05245495330573229 +171171,855.8550000070762,-0.052454419282271104 +171172,855.8600000070763,-0.05245388497058238 +171173,855.8650000070764,-0.05245335037038704 +171174,855.8700000070766,-0.05245281548140568 +171175,855.8750000070767,-0.05245228030335848 +171176,855.8800000070768,-0.05245174483596524 +171177,855.8850000070769,-0.05245120907894541 +171178,855.890000007077,-0.05245067303201803 +171179,855.8950000070771,-0.052450136694901776 +171180,855.9000000070772,-0.05244960006731493 +171181,855.9050000070773,-0.05244906314897541 +171182,855.9100000070774,-0.05244852593960074 +171183,855.9150000070775,-0.05244798843890807 +171184,855.9200000070776,-0.05244745064661416 +171185,855.9250000070778,-0.05244691256243536 +171186,855.9300000070779,-0.052446374186087684 +171187,855.935000007078,-0.05244583551728671 +171188,855.9400000070781,-0.05244529655574767 +171189,855.9450000070782,-0.052444757301185405 +171190,855.9500000070783,-0.052444217753314336 +171191,855.9550000070784,-0.052443677911848514 +171192,855.9600000070785,-0.0524431377765016 +171193,855.9650000070786,-0.05244259734698687 +171194,855.9700000070787,-0.05244205662301721 +171195,855.9750000070788,-0.0524415156043051 +171196,855.980000007079,-0.05244097429056264 +171197,855.9850000070791,-0.052440432681501524 +171198,855.9900000070792,-0.052439890776833066 +171199,855.9950000070793,-0.052439348576268204 +171200,856.0000000070794,-0.05243880607951743 +171201,856.0050000070795,-0.05243826328629089 +171202,856.0100000070796,-0.05243772019629832 +171203,856.0150000070797,-0.052437176809249024 +171204,856.0200000070798,-0.05243663312485195 +171205,856.0250000070799,-0.05243608914281563 +171206,856.03000000708,-0.05243554486284822 +171207,856.0350000070802,-0.05243500028465743 +171208,856.0400000070803,-0.05243445540795061 +171209,856.0450000070804,-0.05243391023243468 +171210,856.0500000070805,-0.05243336475781621 +171211,856.0550000070806,-0.05243281898380128 +171212,856.0600000070807,-0.05243227291009566 +171213,856.0650000070808,-0.052431726536404655 +171214,856.0700000070809,-0.05243117986243317 +171215,856.075000007081,-0.052430632887885735 +171216,856.0800000070811,-0.05243008561246646 +171217,856.0850000070812,-0.05242953803587902 +171218,856.0900000070814,-0.05242899015782672 +171219,856.0950000070815,-0.05242844197801245 +171220,856.1000000070816,-0.05242789349613867 +171221,856.1050000070817,-0.05242734471190745 +171222,856.1100000070818,-0.05242679562502045 +171223,856.1150000070819,-0.05242624623517889 +171224,856.120000007082,-0.05242569654208363 +171225,856.1250000070821,-0.05242514654543506 +171226,856.1300000070822,-0.05242459624493319 +171227,856.1350000070823,-0.05242404564027761 +171228,856.1400000070824,-0.052423494731167496 +171229,856.1450000070826,-0.052422943517301604 +171230,856.1500000070827,-0.052422391998378275 +171231,856.1550000070828,-0.05242184017409544 +171232,856.1600000070829,-0.05242128804415059 +171233,856.165000007083,-0.05242073560824082 +171234,856.1700000070831,-0.0524201828660628 +171235,856.1750000070832,-0.05241962981731278 +171236,856.1800000070833,-0.05241907646168657 +171237,856.1850000070834,-0.0524185227988796 +171238,856.1900000070835,-0.052417968828586826 +171239,856.1950000070836,-0.052417414550502826 +171240,856.2000000070838,-0.05241685996432173 +171241,856.2050000070839,-0.05241630506973725 +171242,856.210000007084,-0.05241574986644265 +171243,856.2150000070841,-0.05241519435413082 +171244,856.2200000070842,-0.052414638532494166 +171245,856.2250000070843,-0.05241408240122471 +171246,856.2300000070844,-0.052413525960014015 +171247,856.2350000070845,-0.05241296920855322 +171248,856.2400000070846,-0.05241241214653306 +171249,856.2450000070847,-0.05241185477364381 +171250,856.2500000070849,-0.052411297089575315 +171251,856.255000007085,-0.05241073909401701 +171252,856.2600000070851,-0.052410180786657865 +171253,856.2650000070852,-0.05240962216718644 +171254,856.2700000070853,-0.05240906323529086 +171255,856.2750000070854,-0.052408503990658786 +171256,856.2800000070855,-0.052407944432977485 +171257,856.2850000070856,-0.05240738456193376 +171258,856.2900000070857,-0.052406824377213966 +171259,856.2950000070858,-0.05240626387850406 +171260,856.3000000070859,-0.052405703065489535 +171261,856.305000007086,-0.05240514193785542 +171262,856.3100000070862,-0.05240458049528634 +171263,856.3150000070863,-0.05240401873746646 +171264,856.3200000070864,-0.0524034566640795 +171265,856.3250000070865,-0.05240289427480876 +171266,856.3300000070866,-0.05240233156933707 +171267,856.3350000070867,-0.05240176854734682 +171268,856.3400000070868,-0.05240120520851996 +171269,856.3450000070869,-0.05240064155253799 +171270,856.350000007087,-0.052400077579081966 +171271,856.3550000070871,-0.05239951328783249 +171272,856.3600000070873,-0.052398948678469726 +171273,856.3650000070874,-0.052398383750673364 +171274,856.3700000070875,-0.05239781850412265 +171275,856.3750000070876,-0.052397252938496425 +171276,856.3800000070877,-0.052396687053473 +171277,856.3850000070878,-0.052396120848730306 +171278,856.3900000070879,-0.05239555432394576 +171279,856.395000007088,-0.05239498747879637 +171280,856.4000000070881,-0.05239442031295864 +171281,856.4050000070882,-0.052393852826108686 +171282,856.4100000070883,-0.0523932850179221 +171283,856.4150000070885,-0.05239271688807405 +171284,856.4200000070886,-0.052392148436239225 +171285,856.4250000070887,-0.05239157966209189 +171286,856.4300000070888,-0.052391010565305804 +171287,856.4350000070889,-0.052390441145554294 +171288,856.440000007089,-0.05238987140251021 +171289,856.4450000070891,-0.05238930133584596 +171290,856.4500000070892,-0.05238873094523346 +171291,856.4550000070893,-0.052388160230344184 +171292,856.4600000070894,-0.052387589190849126 +171293,856.4650000070895,-0.052387017826418816 +171294,856.4700000070897,-0.05238644613672332 +171295,856.4750000070898,-0.05238587412143224 +171296,856.4800000070899,-0.052385301780214694 +171297,856.48500000709,-0.05238472911273932 +171298,856.4900000070901,-0.05238415611867434 +171299,856.4950000070902,-0.052383582797687456 +171300,856.5000000070903,-0.05238300914944588 +171301,856.5050000070904,-0.05238243517361642 +171302,856.5100000070905,-0.052381860869865335 +171303,856.5150000070906,-0.052381286237858475 +171304,856.5200000070907,-0.052380711277261155 +171305,856.5250000070909,-0.05238013598773826 +171306,856.530000007091,-0.05237956036895416 +171307,856.5350000070911,-0.05237898442057277 +171308,856.5400000070912,-0.0523784081422575 +171309,856.5450000070913,-0.05237783153367133 +171310,856.5500000070914,-0.052377254594476695 +171311,856.5550000070915,-0.052376677324335603 +171312,856.5600000070916,-0.05237609972290955 +171313,856.5650000070917,-0.05237552178985952 +171314,856.5700000070918,-0.052374943524846077 +171315,856.575000007092,-0.05237436492752926 +171316,856.580000007092,-0.05237378599756862 +171317,856.5850000070922,-0.05237320673462324 +171318,856.5900000070923,-0.05237262713835169 +171319,856.5950000070924,-0.05237204720841207 +171320,856.6000000070925,-0.05237146694446197 +171321,856.6050000070926,-0.05237088634615852 +171322,856.6100000070927,-0.05237030541315832 +171323,856.6150000070928,-0.0523697241451175 +171324,856.6200000070929,-0.052369142541691706 +171325,856.625000007093,-0.052368560602536036 +171326,856.6300000070931,-0.052367978327305165 +171327,856.6350000070933,-0.052367395715653235 +171328,856.6400000070934,-0.052366812767233865 +171329,856.6450000070935,-0.05236622948170023 +171330,856.6500000070936,-0.052365645858704964 +171331,856.6550000070937,-0.05236506189790022 +171332,856.6600000070938,-0.05236447759893764 +171333,856.6650000070939,-0.052363892961468365 +171334,856.670000007094,-0.05236330798514303 +171335,856.6750000070941,-0.05236272266961177 +171336,856.6800000070942,-0.052362137014524225 +171337,856.6850000070943,-0.052361551019529516 +171338,856.6900000070945,-0.05236096468427626 +171339,856.6950000070946,-0.052360378008412554 +171340,856.7000000070947,-0.05235979099158601 +171341,856.7050000070948,-0.052359203633443714 +171342,856.7100000070949,-0.05235861593363225 +171343,856.715000007095,-0.05235802789179768 +171344,856.7200000070951,-0.052357439507585556 +171345,856.7250000070952,-0.05235685078064093 +171346,856.7300000070953,-0.05235626171060831 +171347,856.7350000070954,-0.05235567229713172 +171348,856.7400000070955,-0.05235508253985465 +171349,856.7450000070957,-0.05235449243842007 +171350,856.7500000070958,-0.05235390199247044 +171351,856.7550000070959,-0.0523533112016477 +171352,856.760000007096,-0.05235272006559326 +171353,856.7650000070961,-0.05235212858394802 +171354,856.7700000070962,-0.052351536756352346 +171355,856.7750000070963,-0.0523509445824461 +171356,856.7800000070964,-0.0523503520618686 +171357,856.7850000070965,-0.05234975919425867 +171358,856.7900000070966,-0.052349165979254535 +171359,856.7950000070967,-0.05234857241649398 +171360,856.8000000070969,-0.05234797850561421 +171361,856.805000007097,-0.052347384246251905 +171362,856.8100000070971,-0.052346789638043234 +171363,856.8150000070972,-0.05234619468062381 +171364,856.8200000070973,-0.052345599373628746 +171365,856.8250000070974,-0.05234500371669259 +171366,856.8300000070975,-0.052344407709449356 +171367,856.8350000070976,-0.05234381135153255 +171368,856.8400000070977,-0.05234321464257514 +171369,856.8450000070978,-0.05234261758220952 +171370,856.850000007098,-0.05234202017006756 +171371,856.855000007098,-0.05234142240578062 +171372,856.8600000070982,-0.052340824288979494 +171373,856.8650000070983,-0.05234022581929442 +171374,856.8700000070984,-0.05233962699635514 +171375,856.8750000070985,-0.0523390278197908 +171376,856.8800000070986,-0.05233842828923004 +171377,856.8850000070987,-0.052337828404300936 +171378,856.8900000070988,-0.05233722816463103 +171379,856.8950000070989,-0.0523366275698473 +171380,856.900000007099,-0.052336026619576176 +171381,856.9050000070991,-0.052335425313443554 +171382,856.9100000070993,-0.05233482365107476 +171383,856.9150000070994,-0.052334221632094585 +171384,856.9200000070995,-0.05233361925612726 +171385,856.9250000070996,-0.05233301652279647 +171386,856.9300000070997,-0.05233241343172533 +171387,856.9350000070998,-0.0523318099825364 +171388,856.9400000070999,-0.0523312061748517 +171389,856.9450000071,-0.05233060200829269 +171390,856.9500000071001,-0.05232999748248024 +171391,856.9550000071002,-0.05232939259703469 +171392,856.9600000071003,-0.0523287873515758 +171393,856.9650000071005,-0.05232818174572279 +171394,856.9700000071006,-0.052327575779094304 +171395,856.9750000071007,-0.052326969451308415 +171396,856.9800000071008,-0.05232636276198264 +171397,856.9850000071009,-0.05232575571073392 +171398,856.990000007101,-0.05232514829717863 +171399,856.9950000071011,-0.052324540520932605 +171400,857.0000000071012,-0.05232393238161106 +171401,857.0050000071013,-0.05232332387882866 +171402,857.0100000071014,-0.052322715012199525 +171403,857.0150000071015,-0.052322105781337155 +171404,857.0200000071017,-0.052321496185854514 +171405,857.0250000071018,-0.05232088622536397 +171406,857.0300000071019,-0.0523202758994773 +171407,857.035000007102,-0.05231966520780574 +171408,857.0400000071021,-0.05231905414995992 +171409,857.0450000071022,-0.05231844272554992 +171410,857.0500000071023,-0.0523178309341852 +171411,857.0550000071024,-0.052317218775474655 +171412,857.0600000071025,-0.052316606249026607 +171413,857.0650000071026,-0.05231599335444878 +171414,857.0700000071027,-0.05231538009134832 +171415,857.0750000071029,-0.05231476645933178 +171416,857.080000007103,-0.05231415245800513 +171417,857.0850000071031,-0.05231353808697374 +171418,857.0900000071032,-0.05231292334584241 +171419,857.0950000071033,-0.05231230823421532 +171420,857.1000000071034,-0.0523116927516961 +171421,857.1050000071035,-0.05231107689788775 +171422,857.1100000071036,-0.05231046067239268 +171423,857.1150000071037,-0.05230984407481272 +171424,857.1200000071038,-0.052309227104749084 +171425,857.125000007104,-0.05230860976180242 +171426,857.1300000071041,-0.05230799204557273 +171427,857.1350000071042,-0.052307373955659445 +171428,857.1400000071043,-0.052306755491661396 +171429,857.1450000071044,-0.052306136653176794 +171430,857.1500000071045,-0.052305517439803266 +171431,857.1550000071046,-0.05230489785113782 +171432,857.1600000071047,-0.05230427788677688 +171433,857.1650000071048,-0.05230365754631622 +171434,857.1700000071049,-0.05230303682935103 +171435,857.175000007105,-0.05230241573547591 +171436,857.1800000071051,-0.05230179426428481 +171437,857.1850000071053,-0.0523011724153711 +171438,857.1900000071054,-0.05230055018832751 +171439,857.1950000071055,-0.05229992758274618 +171440,857.2000000071056,-0.05229930459821861 +171441,857.2050000071057,-0.05229868123433572 +171442,857.2100000071058,-0.052298057490687756 +171443,857.2150000071059,-0.0522974333668644 +171444,857.220000007106,-0.05229680886245467 +171445,857.2250000071061,-0.052296183977046995 +171446,857.2300000071062,-0.05229555871022916 +171447,857.2350000071064,-0.05229493306158834 +171448,857.2400000071065,-0.05229430703071107 +171449,857.2450000071066,-0.05229368061718326 +171450,857.2500000071067,-0.052293053820590206 +171451,857.2550000071068,-0.052292426640516566 +171452,857.2600000071069,-0.05229179907654639 +171453,857.265000007107,-0.05229117112826303 +171454,857.2700000071071,-0.05229054279524928 +171455,857.2750000071072,-0.05228991407708726 +171456,857.2800000071073,-0.05228928497335846 +171457,857.2850000071074,-0.05228865548364375 +171458,857.2900000071076,-0.05228802560752334 +171459,857.2950000071077,-0.05228739534457681 +171460,857.3000000071078,-0.0522867646943831 +171461,857.3050000071079,-0.0522861336565205 +171462,857.310000007108,-0.052285502230566695 +171463,857.3150000071081,-0.05228487041609866 +171464,857.3200000071082,-0.05228423821269277 +171465,857.3250000071083,-0.052283605619924754 +171466,857.3300000071084,-0.05228297263736968 +171467,857.3350000071085,-0.05228233926460196 +171468,857.3400000071086,-0.052281705501195375 +171469,857.3450000071088,-0.05228107134672304 +171470,857.3500000071089,-0.05228043680075742 +171471,857.355000007109,-0.05227980186287032 +171472,857.3600000071091,-0.0522791665326329 +171473,857.3650000071092,-0.05227853080961566 +171474,857.3700000071093,-0.05227789469338845 +171475,857.3750000071094,-0.052277258183520435 +171476,857.3800000071095,-0.05227662127958014 +171477,857.3850000071096,-0.05227598398113543 +171478,857.3900000071097,-0.05227534628775348 +171479,857.3950000071098,-0.052274708199000826 +171480,857.40000000711,-0.052274069714443344 +171481,857.4050000071101,-0.05227343083364622 +171482,857.4100000071102,-0.052272791556173974 +171483,857.4150000071103,-0.05227215188159048 +171484,857.4200000071104,-0.0522715118094589 +171485,857.4250000071105,-0.05227087133934175 +171486,857.4300000071106,-0.052270230470800885 +171487,857.4350000071107,-0.05226958920339744 +171488,857.4400000071108,-0.05226894753669192 +171489,857.4450000071109,-0.05226830547024413 +171490,857.450000007111,-0.05226766300361319 +171491,857.4550000071112,-0.05226702013635756 +171492,857.4600000071113,-0.05226637686803498 +171493,857.4650000071114,-0.05226573319820254 +171494,857.4700000071115,-0.05226508912641664 +171495,857.4750000071116,-0.052264444652233 +171496,857.4800000071117,-0.05226379977520662 +171497,857.4850000071118,-0.052263154494891835 +171498,857.4900000071119,-0.05226250881084231 +171499,857.495000007112,-0.052261862722610956 +171500,857.5000000071121,-0.052261216229750065 +171501,857.5050000071122,-0.05226056933181117 +171502,857.5100000071124,-0.05225992202834516 +171503,857.5150000071125,-0.052259274318902184 +171504,857.5200000071126,-0.052258626203031726 +171505,857.5250000071127,-0.05225797768028255 +171506,857.5300000071128,-0.05225732875020272 +171507,857.5350000071129,-0.05225667941233961 +171508,857.540000007113,-0.05225602966623987 +171509,857.5450000071131,-0.05225537951144945 +171510,857.5500000071132,-0.0522547289475136 +171511,857.5550000071133,-0.05225407797397686 +171512,857.5600000071134,-0.05225342659038306 +171513,857.5650000071136,-0.052252774796275304 +171514,857.5700000071137,-0.052252122591196014 +171515,857.5750000071138,-0.05225146997468687 +171516,857.5800000071139,-0.05225081694628884 +171517,857.585000007114,-0.05225016350554218 +171518,857.5900000071141,-0.05224950965198643 +171519,857.5950000071142,-0.0522488553851604 +171520,857.6000000071143,-0.052248200704602184 +171521,857.6050000071144,-0.05224754560984917 +171522,857.6100000071145,-0.05224689010043798 +171523,857.6150000071146,-0.05224623417590455 +171524,857.6200000071148,-0.05224557783578406 +171525,857.6250000071149,-0.05224492107961099 +171526,857.630000007115,-0.052244263906919074 +171527,857.6350000071151,-0.0522436063172413 +171528,857.6400000071152,-0.05224294831010994 +171529,857.6450000071153,-0.052242289885056525 +171530,857.6500000071154,-0.05224163104161184 +171531,857.6550000071155,-0.052240971779305964 +171532,857.6600000071156,-0.05224031209766821 +171533,857.6650000071157,-0.05223965199622714 +171534,857.6700000071158,-0.05223899147451062 +171535,857.675000007116,-0.05223833053204571 +171536,857.6800000071161,-0.052237669168358765 +171537,857.6850000071162,-0.052237007382975396 +171538,857.6900000071163,-0.052236345175420425 +171539,857.6950000071164,-0.05223568254521799 +171540,857.7000000071165,-0.05223501949189141 +171541,857.7050000071166,-0.05223435601496328 +171542,857.7100000071167,-0.052233692113955454 +171543,857.7150000071168,-0.05223302778838902 +171544,857.7200000071169,-0.0522323630377843 +171545,857.725000007117,-0.05223169786166085 +171546,857.7300000071172,-0.052231032259537485 +171547,857.7350000071173,-0.052230366230932246 +171548,857.7400000071174,-0.05222969977536242 +171549,857.7450000071175,-0.052229032892344505 +171550,857.7500000071176,-0.05222836558139426 +171551,857.7550000071177,-0.05222769784202666 +171552,857.7600000071178,-0.05222702967375592 +171553,857.7650000071179,-0.052226361076095476 +171554,857.770000007118,-0.052225692048557974 +171555,857.7750000071181,-0.05222502259065531 +171556,857.7800000071182,-0.05222435270189861 +171557,857.7850000071184,-0.052223682381798184 +171558,857.7900000071185,-0.052223011629863605 +171559,857.7950000071186,-0.052222340445603636 +171560,857.8000000071187,-0.05222166882852626 +171561,857.8050000071188,-0.052220996778138684 +171562,857.8100000071189,-0.05222032429394733 +171563,857.815000007119,-0.05221965137545783 +171564,857.8200000071191,-0.05221897802217501 +171565,857.8250000071192,-0.052218304233602936 +171566,857.8300000071193,-0.052217630009244856 +171567,857.8350000071194,-0.05221695534860324 +171568,857.8400000071196,-0.05221628025117973 +171569,857.8450000071197,-0.05221560471647521 +171570,857.8500000071198,-0.05221492874398976 +171571,857.8550000071199,-0.05221425233322263 +171572,857.86000000712,-0.05221357548367229 +171573,857.8650000071201,-0.0522128981948364 +171574,857.8700000071202,-0.052212220466211816 +171575,857.8750000071203,-0.052211542297294584 +171576,857.8800000071204,-0.05221086368757995 +171577,857.8850000071205,-0.05221018463656233 +171578,857.8900000071206,-0.052209505143735346 +171579,857.8950000071208,-0.052208825208591776 +171580,857.9000000071209,-0.05220814483062362 +171581,857.905000007121,-0.05220746400932205 +171582,857.9100000071211,-0.05220678274417742 +171583,857.9150000071212,-0.05220610103467922 +171584,857.9200000071213,-0.05220541888031619 +171585,857.9250000071214,-0.052204736280576175 +171586,857.9300000071215,-0.05220405323494624 +171587,857.9350000071216,-0.05220336974291261 +171588,857.9400000071217,-0.052202685803960674 +171589,857.9450000071218,-0.05220200141757501 +171590,857.950000007122,-0.05220131658323932 +171591,857.9550000071221,-0.0522006313004365 +171592,857.9600000071222,-0.05219994556864862 +171593,857.9650000071223,-0.05219925938735689 +171594,857.9700000071224,-0.0521985727560417 +171595,857.9750000071225,-0.05219788567418257 +171596,857.9800000071226,-0.0521971981412582 +171597,857.9850000071227,-0.05219651015674643 +171598,857.9900000071228,-0.052195821720124255 +171599,857.9950000071229,-0.05219513283086785 +171600,858.000000007123,-0.052194443488452494 +171601,858.0050000071232,-0.05219375369235263 +171602,858.0100000071233,-0.052193063442041845 +171603,858.0150000071234,-0.0521923727369929 +171604,858.0200000071235,-0.052191681576677654 +171605,858.0250000071236,-0.052190989960567126 +171606,858.0300000071237,-0.05219029788813147 +171607,858.0350000071238,-0.052189605358839986 +171608,858.0400000071239,-0.0521889123721611 +171609,858.045000007124,-0.05218821892756236 +171610,858.0500000071241,-0.05218752502451048 +171611,858.0550000071242,-0.052186830662471255 +171612,858.0600000071244,-0.05218613584090964 +171613,858.0650000071245,-0.05218544055928972 +171614,858.0700000071246,-0.05218474481707468 +171615,858.0750000071247,-0.05218404861372683 +171616,858.0800000071248,-0.05218335194870764 +171617,858.0850000071249,-0.052182654821477645 +171618,858.090000007125,-0.05218195723149651 +171619,858.0950000071251,-0.05218125917822305 +171620,858.1000000071252,-0.05218056066111512 +171621,858.1050000071253,-0.05217986167962977 +171622,858.1100000071254,-0.05217916223322311 +171623,858.1150000071256,-0.05217846232135035 +171624,858.1200000071257,-0.05217776194346584 +171625,858.1250000071258,-0.05217706109902301 +171626,858.1300000071259,-0.05217635978747438 +171627,858.135000007126,-0.0521756580082716 +171628,858.1400000071261,-0.05217495576086539 +171629,858.1450000071262,-0.05217425304470558 +171630,858.1500000071263,-0.05217354985924111 +171631,858.1550000071264,-0.05217284620391996 +171632,858.1600000071265,-0.05217214207818925 +171633,858.1650000071267,-0.052171437481495164 +171634,858.1700000071268,-0.052170732413282975 +171635,858.1750000071269,-0.052170026872997044 +171636,858.180000007127,-0.0521693208600808 +171637,858.1850000071271,-0.05216861437397678 +171638,858.1900000071272,-0.05216790741412657 +171639,858.1950000071273,-0.05216719997997086 +171640,858.2000000071274,-0.05216649207094937 +171641,858.2050000071275,-0.05216578368650095 +171642,858.2100000071276,-0.05216507482606346 +171643,858.2150000071277,-0.052164365489073876 +171644,858.2200000071279,-0.05216365567496821 +171645,858.225000007128,-0.052162945383181565 +171646,858.2300000071281,-0.052162234613148076 +171647,858.2350000071282,-0.05216152336430095 +171648,858.2400000071283,-0.05216081163607247 +171649,858.2450000071284,-0.052160099427893944 +171650,858.2500000071285,-0.05215938673919574 +171651,858.2550000071286,-0.0521586735694073 +171652,858.2600000071287,-0.0521579599179571 +171653,858.2650000071288,-0.05215724578427268 +171654,858.2700000071289,-0.05215653116778059 +171655,858.275000007129,-0.052155816067906445 +171656,858.2800000071292,-0.05215510048407491 +171657,858.2850000071293,-0.05215438441570969 +171658,858.2900000071294,-0.052153667862233494 +171659,858.2950000071295,-0.052152950823068096 +171660,858.3000000071296,-0.05215223329763431 +171661,858.3050000071297,-0.05215151528535198 +171662,858.3100000071298,-0.05215079678563994 +171663,858.3150000071299,-0.0521500777979161 +171664,858.32000000713,-0.052149358321597346 +171665,858.3250000071301,-0.05214863835609964 +171666,858.3300000071303,-0.05214791790083794 +171667,858.3350000071304,-0.05214719695522621 +171668,858.3400000071305,-0.05214647551867743 +171669,858.3450000071306,-0.05214575359060363 +171670,858.3500000071307,-0.05214503117041582 +171671,858.3550000071308,-0.05214430825752403 +171672,858.3600000071309,-0.0521435848513373 +171673,858.365000007131,-0.05214286095126364 +171674,858.3700000071311,-0.05214213655671013 +171675,858.3750000071312,-0.052141411667082804 +171676,858.3800000071313,-0.05214068628178672 +171677,858.3850000071315,-0.052139960400225886 +171678,858.3900000071316,-0.05213923402180338 +171679,858.3950000071317,-0.0521385071459212 +171680,858.4000000071318,-0.052137779771980364 +171681,858.4050000071319,-0.05213705189938091 +171682,858.410000007132,-0.052136323527521795 +171683,858.4150000071321,-0.05213559465580103 +171684,858.4200000071322,-0.05213486528361556 +171685,858.4250000071323,-0.05213413541036131 +171686,858.4300000071324,-0.05213340503543321 +171687,858.4350000071325,-0.05213267415822516 +171688,858.4400000071327,-0.05213194277813 +171689,858.4450000071328,-0.052131210894539565 +171690,858.4500000071329,-0.05213047850684467 +171691,858.455000007133,-0.05212974561443507 +171692,858.4600000071331,-0.052129012216699494 +171693,858.4650000071332,-0.05212827831302565 +171694,858.4700000071333,-0.05212754390280017 +171695,858.4750000071334,-0.05212680898540866 +171696,858.4800000071335,-0.0521260735602357 +171697,858.4850000071336,-0.052125337626664776 +171698,858.4900000071337,-0.05212460118407837 +171699,858.4950000071339,-0.05212386423185788 +171700,858.500000007134,-0.052123126769383674 +171701,858.5050000071341,-0.05212238879603504 +171702,858.5100000071342,-0.052121650311190225 +171703,858.5150000071343,-0.052120911314226394 +171704,858.5200000071344,-0.05212017180451966 +171705,858.5250000071345,-0.052119431781445076 +171706,858.5300000071346,-0.052118691244376604 +171707,858.5350000071347,-0.052117950192687175 +171708,858.5400000071348,-0.052117208625748604 +171709,858.545000007135,-0.05211646654293165 +171710,858.550000007135,-0.05211572394360599 +171711,858.5550000071352,-0.0521149808271402 +171712,858.5600000071353,-0.05211423719290183 +171713,858.5650000071354,-0.05211349304025727 +171714,858.5700000071355,-0.05211274836857189 +171715,858.5750000071356,-0.05211200317720992 +171716,858.5800000071357,-0.05211125746553451 +171717,858.5850000071358,-0.052110511232907726 +171718,858.5900000071359,-0.052109764478690535 +171719,858.595000007136,-0.05210901720224281 +171720,858.6000000071361,-0.0521082694029233 +171721,858.6050000071363,-0.05210752108008964 +171722,858.6100000071364,-0.0521067722330984 +171723,858.6150000071365,-0.05210602286130501 +171724,858.6200000071366,-0.05210527296406379 +171725,858.6250000071367,-0.052104522540727956 +171726,858.6300000071368,-0.0521037715906496 +171727,858.6350000071369,-0.05210302011317968 +171728,858.640000007137,-0.052102268107668055 +171729,858.6450000071371,-0.052101515573463444 +171730,858.6500000071372,-0.052100762509913454 +171731,858.6550000071373,-0.05210000891636454 +171732,858.6600000071375,-0.05209925479216204 +171733,858.6650000071376,-0.05209850013665015 +171734,858.6700000071377,-0.05209774494917193 +171735,858.6750000071378,-0.052096989229069295 +171736,858.6800000071379,-0.05209623297568303 +171737,858.685000007138,-0.05209547618835275 +171738,858.6900000071381,-0.05209471886641697 +171739,858.6950000071382,-0.052093961009213006 +171740,858.7000000071383,-0.052093202616077035 +171741,858.7050000071384,-0.05209244368634408 +171742,858.7100000071385,-0.05209168421934801 +171743,858.7150000071387,-0.05209092421442153 +171744,858.7200000071388,-0.05209016367089619 +171745,858.7250000071389,-0.052089402588102345 +171746,858.730000007139,-0.05208864096536922 +171747,858.7350000071391,-0.052087878802024846 +171748,858.7400000071392,-0.05208711609739608 +171749,858.7450000071393,-0.052086352850808613 +171750,858.7500000071394,-0.05208558906158693 +171751,858.7550000071395,-0.052084824729054374 +171752,858.7600000071396,-0.052084059852533074 +171753,858.7650000071397,-0.05208329443134399 +171754,858.7700000071399,-0.052082528464806856 +171755,858.77500000714,-0.05208176195224027 +171756,858.7800000071401,-0.052080994892961585 +171757,858.7850000071402,-0.05208022728628697 +171758,858.7900000071403,-0.05207945913153141 +171759,858.7950000071404,-0.052078690428008674 +171760,858.8000000071405,-0.05207792117503131 +171761,858.8050000071406,-0.05207715137191068 +171762,858.8100000071407,-0.05207638101795692 +171763,858.8150000071408,-0.05207561011247897 +171764,858.820000007141,-0.05207483865478452 +171765,858.825000007141,-0.052074066644180066 +171766,858.8300000071412,-0.05207329407997086 +171767,858.8350000071413,-0.05207252096146097 +171768,858.8400000071414,-0.05207174728795318 +171769,858.8450000071415,-0.052070973058749075 +171770,858.8500000071416,-0.052070198273149 +171771,858.8550000071417,-0.05206942293045208 +171772,858.8600000071418,-0.05206864702995615 +171773,858.8650000071419,-0.052067870570957867 +171774,858.870000007142,-0.05206709355275258 +171775,858.8750000071421,-0.05206631597463444 +171776,858.8800000071423,-0.052065537835896306 +171777,858.8850000071424,-0.052064759135829836 +171778,858.8900000071425,-0.05206397987372536 +171779,858.8950000071426,-0.05206320004887202 +171780,858.9000000071427,-0.052062419660557635 +171781,858.9050000071428,-0.0520616387080688 +171782,858.9100000071429,-0.05206085719069081 +171783,858.915000007143,-0.05206007510770772 +171784,858.9200000071431,-0.05205929245840228 +171785,858.9250000071432,-0.05205850924205599 +171786,858.9300000071433,-0.052057725457949046 +171787,858.9350000071435,-0.05205694110536038 +171788,858.9400000071436,-0.052056156183567626 +171789,858.9450000071437,-0.05205537069184712 +171790,858.9500000071438,-0.052054584629473925 +171791,858.9550000071439,-0.05205379799572181 +171792,858.960000007144,-0.05205301078986322 +171793,858.9650000071441,-0.05205222301116932 +171794,858.9700000071442,-0.05205143465890997 +171795,858.9750000071443,-0.05205064573235372 +171796,858.9800000071444,-0.052049856230767785 +171797,858.9850000071445,-0.05204906615341812 +171798,858.9900000071447,-0.05204827549956933 +171799,858.9950000071448,-0.052047484268484684 +171800,859.0000000071449,-0.052046692459426155 +171801,859.005000007145,-0.05204590007165439 +171802,859.0100000071451,-0.052045107104428695 +171803,859.0150000071452,-0.052044313557007046 +171804,859.0200000071453,-0.052043519428646094 +171805,859.0250000071454,-0.05204272471860115 +171806,859.0300000071455,-0.05204192942612618 +171807,859.0350000071456,-0.05204113355047379 +171808,859.0400000071457,-0.05204033709089526 +171809,859.0450000071459,-0.05203954004664053 +171810,859.050000007146,-0.05203874241695815 +171811,859.0550000071461,-0.05203794420109533 +171812,859.0600000071462,-0.05203714539829792 +171813,859.0650000071463,-0.05203634600781044 +171814,859.0700000071464,-0.05203554602887599 +171815,859.0750000071465,-0.05203474546073632 +171816,859.0800000071466,-0.05203394430263183 +171817,859.0850000071467,-0.052033142553801495 +171818,859.0900000071468,-0.05203234021348297 +171819,859.095000007147,-0.05203153728091248 +171820,859.1000000071471,-0.052030733755324875 +171821,859.1050000071472,-0.05202992963595365 +171822,859.1100000071473,-0.052029124922030864 +171823,859.1150000071474,-0.052028319612787186 +171824,859.1200000071475,-0.05202751370745192 +171825,859.1250000071476,-0.05202670720525293 +171826,859.1300000071477,-0.052025900105416696 +171827,859.1350000071478,-0.05202509240716827 +171828,859.1400000071479,-0.052024284109731325 +171829,859.145000007148,-0.05202347521232809 +171830,859.1500000071482,-0.052022665714179385 +171831,859.1550000071483,-0.052021855614504606 +171832,859.1600000071484,-0.05202104491252172 +171833,859.1650000071485,-0.052020233607447265 +171834,859.1700000071486,-0.05201942169849636 +171835,859.1750000071487,-0.052018609184882665 +171836,859.1800000071488,-0.05201779606581843 +171837,859.1850000071489,-0.052016982340514446 +171838,859.190000007149,-0.05201616800818006 +171839,859.1950000071491,-0.052015353068023164 +171840,859.2000000071492,-0.05201453751925021 +171841,859.2050000071494,-0.05201372136106619 +171842,859.2100000071495,-0.052012904592674616 +171843,859.2150000071496,-0.05201208721327757 +171844,859.2200000071497,-0.05201126922207564 +171845,859.2250000071498,-0.05201045061826797 +171846,859.2300000071499,-0.052009631401052206 +171847,859.23500000715,-0.05200881156962453 +171848,859.2400000071501,-0.05200799112317964 +171849,859.2450000071502,-0.052007170060910754 +171850,859.2500000071503,-0.05200634838200959 +171851,859.2550000071504,-0.05200552608566639 +171852,859.2600000071506,-0.052004703171069894 +171853,859.2650000071507,-0.05200387963740734 +171854,859.2700000071508,-0.05200305548386446 +171855,859.2750000071509,-0.05200223070962551 +171856,859.280000007151,-0.05200140531387319 +171857,859.2850000071511,-0.05200057929578874 +171858,859.2900000071512,-0.05199975265455184 +171859,859.2950000071513,-0.05199892538934067 +171860,859.3000000071514,-0.051998097499331875 +171861,859.3050000071515,-0.05199726898370059 +171862,859.3100000071516,-0.05199643984162042 +171863,859.3150000071518,-0.0519956100722634 +171864,859.3200000071519,-0.051994779674800075 +171865,859.325000007152,-0.051993948648399395 +171866,859.3300000071521,-0.051993116992228805 +171867,859.3350000071522,-0.051992284705454195 +171868,859.3400000071523,-0.0519914517872399 +171869,859.3450000071524,-0.051990618236748685 +171870,859.3500000071525,-0.05198978405314178 +171871,859.3550000071526,-0.0519889492355788 +171872,859.3600000071527,-0.05198811378321784 +171873,859.3650000071528,-0.05198727769521541 +171874,859.370000007153,-0.05198644097072645 +171875,859.3750000071531,-0.0519856036089043 +171876,859.3800000071532,-0.05198476560890073 +171877,859.3850000071533,-0.05198392696986594 +171878,859.3900000071534,-0.0519830876909485 +171879,859.3950000071535,-0.05198224777129539 +171880,859.4000000071536,-0.05198140721005204 +171881,859.4050000071537,-0.05198056600636222 +171882,859.4100000071538,-0.051979724159368135 +171883,859.4150000071539,-0.05197888166821034 +171884,859.420000007154,-0.051978038532027794 +171885,859.4250000071542,-0.051977194749957864 +171886,859.4300000071543,-0.051976350321136254 +171887,859.4350000071544,-0.05197550524469706 +171888,859.4400000071545,-0.05197465951977276 +171889,859.4450000071546,-0.05197381314549415 +171890,859.4500000071547,-0.05197296612099045 +171891,859.4550000071548,-0.0519721184453892 +171892,859.4600000071549,-0.05197127011781629 +171893,859.465000007155,-0.051970421137395986 +171894,859.4700000071551,-0.05196957150325088 +171895,859.4750000071552,-0.05196872121450191 +171896,859.4800000071554,-0.05196787027026835 +171897,859.4850000071555,-0.051967018669667825 +171898,859.4900000071556,-0.05196616641181625 +171899,859.4950000071557,-0.0519653134958279 +171900,859.5000000071558,-0.05196445992081537 +171901,859.5050000071559,-0.05196360568588956 +171902,859.510000007156,-0.051962750790159676 +171903,859.5150000071561,-0.05196189523273324 +171904,859.5200000071562,-0.051961039012716086 +171905,859.5250000071563,-0.05196018212921234 +171906,859.5300000071564,-0.05195932458132444 +171907,859.5350000071566,-0.051958466368153086 +171908,859.5400000071567,-0.05195760748879728 +171909,859.5450000071568,-0.051956747942354324 +171910,859.5500000071569,-0.051955887727919786 +171911,859.555000007157,-0.051955026844587505 +171912,859.5600000071571,-0.05195416529144958 +171913,859.5650000071572,-0.05195330306759642 +171914,859.5700000071573,-0.05195244017211666 +171915,859.5750000071574,-0.05195157660409717 +171916,859.5800000071575,-0.05195071236262312 +171917,859.5850000071576,-0.05194984744677793 +171918,859.5900000071578,-0.05194898185564323 +171919,859.5950000071579,-0.05194811558829892 +171920,859.600000007158,-0.051947248643823114 +171921,859.6050000071581,-0.05194638102129218 +171922,859.6100000071582,-0.05194551271978069 +171923,859.6150000071583,-0.05194464373836147 +171924,859.6200000071584,-0.051943774076105516 +171925,859.6250000071585,-0.05194290373208209 +171926,859.6300000071586,-0.051942032705358646 +171927,859.6350000071587,-0.05194116099500082 +171928,859.6400000071588,-0.05194028860007248 +171929,859.645000007159,-0.05193941551963568 +171930,859.6500000071591,-0.05193854175275065 +171931,859.6550000071592,-0.051937667298475834 +171932,859.6600000071593,-0.051936792155867835 +171933,859.6650000071594,-0.05193591632398146 +171934,859.6700000071595,-0.05193503980186966 +171935,859.6750000071596,-0.05193416258858359 +171936,859.6800000071597,-0.05193328468317253 +171937,859.6850000071598,-0.05193240608468395 +171938,859.6900000071599,-0.05193152679216345 +171939,859.69500000716,-0.05193064680465481 +171940,859.7000000071602,-0.051929766121199934 +171941,859.7050000071603,-0.05192888474083887 +171942,859.7100000071604,-0.051928002662609815 +171943,859.7150000071605,-0.05192711988554908 +171944,859.7200000071606,-0.05192623640869112 +171945,859.7250000071607,-0.05192535223106852 +171946,859.7300000071608,-0.05192446735171194 +171947,859.7350000071609,-0.0519235817696502 +171948,859.740000007161,-0.0519226954839102 +171949,859.7450000071611,-0.05192180849351696 +171950,859.7500000071612,-0.051920920797493594 +171951,859.7550000071614,-0.05192003239486131 +171952,859.7600000071615,-0.05191914328463939 +171953,859.7650000071616,-0.05191825346584523 +171954,859.7700000071617,-0.05191736293749428 +171955,859.7750000071618,-0.051916471698600065 +171956,859.7800000071619,-0.0519155797481742 +171957,859.785000007162,-0.05191468708522635 +171958,859.7900000071621,-0.051913793708764235 +171959,859.7950000071622,-0.05191289961779364 +171960,859.8000000071623,-0.05191200481131841 +171961,859.8050000071624,-0.05191110928834041 +171962,859.8100000071626,-0.051910213047859574 +171963,859.8150000071627,-0.051909316088873836 +171964,859.8200000071628,-0.05190841841037919 +171965,859.8250000071629,-0.05190752001136964 +171966,859.830000007163,-0.05190662089083722 +171967,859.8350000071631,-0.05190572104777196 +171968,859.8400000071632,-0.05190482048116192 +171969,859.8450000071633,-0.05190391918999316 +171970,859.8500000071634,-0.05190301717324972 +171971,859.8550000071635,-0.05190211442991368 +171972,859.8600000071636,-0.05190121095896507 +171973,859.8650000071638,-0.05190030675938189 +171974,859.8700000071639,-0.05189940183014018 +171975,859.875000007164,-0.0518984961702139 +171976,859.8800000071641,-0.05189758977857501 +171977,859.8850000071642,-0.051896682654193414 +171978,859.8900000071643,-0.05189577479603698 +171979,859.8950000071644,-0.05189486620307153 +171980,859.9000000071645,-0.051893956874260835 +171981,859.9050000071646,-0.05189304680856661 +171982,859.9100000071647,-0.0518921360049485 +171983,859.9150000071648,-0.05189122446236409 +171984,859.920000007165,-0.0518903121797689 +171985,859.9250000071651,-0.051889399156116345 +171986,859.9300000071652,-0.05188848539035776 +171987,859.9350000071653,-0.05188757088144241 +171988,859.9400000071654,-0.05188665562831747 +171989,859.9450000071655,-0.051885739629928 +171990,859.9500000071656,-0.05188482288521694 +171991,859.9550000071657,-0.05188390539312513 +171992,859.9600000071658,-0.05188298715259131 +171993,859.9650000071659,-0.051882068162552086 +171994,859.970000007166,-0.05188114842194193 +171995,859.9750000071662,-0.05188022792969318 +171996,859.9800000071663,-0.05187930668473605 +171997,859.9850000071664,-0.0518783846859986 +171998,859.9900000071665,-0.051877461932406735 +171999,859.9950000071666,-0.051876538422884214 +172000,860.0000000071667,-0.05187561415635264 +172001,860.0050000071668,-0.05187468913173143 +172002,860.0100000071669,-0.05187376334793784 +172003,860.015000007167,-0.051872836803886956 +172004,860.0200000071671,-0.051871909498491665 +172005,860.0250000071673,-0.05187098143066267 +172006,860.0300000071674,-0.05187005259930849 +172007,860.0350000071675,-0.05186912300333543 +172008,860.0400000071676,-0.0518681926416476 +172009,860.0450000071677,-0.051867261513146856 +172010,860.0500000071678,-0.05186632961673291 +172011,860.0550000071679,-0.05186539695130318 +172012,860.060000007168,-0.051864463515752905 +172013,860.0650000071681,-0.05186352930897506 +172014,860.0700000071682,-0.05186259432986039 +172015,860.0750000071683,-0.05186165857729736 +172016,860.0800000071685,-0.051860722050172246 +172017,860.0850000071686,-0.051859784747369006 +172018,860.0900000071687,-0.051858846667769375 +172019,860.0950000071688,-0.05185790781025277 +172020,860.1000000071689,-0.05185696817369639 +172021,860.105000007169,-0.0518560277569751 +172022,860.1100000071691,-0.05185508655896149 +172023,860.1150000071692,-0.05185414457852588 +172024,860.1200000071693,-0.05185320181453625 +172025,860.1250000071694,-0.0518522582658583 +172026,860.1300000071695,-0.051851313931355406 +172027,860.1350000071697,-0.05185036880988862 +172028,860.1400000071698,-0.05184942290031668 +172029,860.1450000071699,-0.051848476201495984 +172030,860.15000000717,-0.051847528712280606 +172031,860.1550000071701,-0.05184658043152226 +172032,860.1600000071702,-0.05184563135807029 +172033,860.1650000071703,-0.05184468149077173 +172034,860.1700000071704,-0.05184373082847124 +172035,860.1750000071705,-0.051842779370011076 +172036,860.1800000071706,-0.05184182711423115 +172037,860.1850000071707,-0.05184087405996898 +172038,860.1900000071709,-0.0518399202060597 +172039,860.195000007171,-0.05183896555133606 +172040,860.2000000071711,-0.051838010094628385 +172041,860.2050000071712,-0.051837053834764606 +172042,860.2100000071713,-0.05183609677057024 +172043,860.2150000071714,-0.05183513890086839 +172044,860.2200000071715,-0.05183418022447973 +172045,860.2250000071716,-0.05183322074022247 +172046,860.2300000071717,-0.05183226044691243 +172047,860.2350000071718,-0.05183129934336296 +172048,860.240000007172,-0.05183033742838495 +172049,860.245000007172,-0.05182937470078684 +172050,860.2500000071722,-0.05182841115937461 +172051,860.2550000071723,-0.05182744680295175 +172052,860.2600000071724,-0.0518264816303193 +172053,860.2650000071725,-0.05182551564027575 +172054,860.2700000071726,-0.0518245488316172 +172055,860.2750000071727,-0.05182358120313714 +172056,860.2800000071728,-0.05182261275362663 +172057,860.2850000071729,-0.051821643481874194 +172058,860.290000007173,-0.05182067338666583 +172059,860.2950000071731,-0.05181970246678503 +172060,860.3000000071733,-0.05181873072101273 +172061,860.3050000071734,-0.05181775814812733 +172062,860.3100000071735,-0.05181678474690469 +172063,860.3150000071736,-0.05181581051611812 +172064,860.3200000071737,-0.051814835454538355 +172065,860.3250000071738,-0.05181385956093358 +172066,860.3300000071739,-0.05181288283406939 +172067,860.335000007174,-0.051811905272708784 +172068,860.3400000071741,-0.05181092687561223 +172069,860.3450000071742,-0.05180994764153753 +172070,860.3500000071743,-0.05180896756923994 +172071,860.3550000071745,-0.05180798665747207 +172072,860.3600000071746,-0.051807004904983946 +172073,860.3650000071747,-0.05180602231052292 +172074,860.3700000071748,-0.05180503887283375 +172075,860.3750000071749,-0.05180405459065855 +172076,860.380000007175,-0.0518030694627368 +172077,860.3850000071751,-0.05180208348780531 +172078,860.3900000071752,-0.05180109666459822 +172079,860.3950000071753,-0.051800108991847026 +172080,860.4000000071754,-0.051799120468280536 +172081,860.4050000071755,-0.05179813109262487 +172082,860.4100000071757,-0.051797140863603486 +172083,860.4150000071758,-0.05179614977993714 +172084,860.4200000071759,-0.05179515784034385 +172085,860.425000007176,-0.05179416504353894 +172086,860.4300000071761,-0.05179317138823504 +172087,860.4350000071762,-0.051792176873142026 +172088,860.4400000071763,-0.05179118149696704 +172089,860.4450000071764,-0.051790185258414514 +172090,860.4500000071765,-0.051789188156186085 +172091,860.4550000071766,-0.05178819018898066 +172092,860.4600000071767,-0.0517871913554944 +172093,860.4650000071769,-0.05178619165442065 +172094,860.470000007177,-0.051785191084450004 +172095,860.4750000071771,-0.05178418964427027 +172096,860.4800000071772,-0.05178318733256644 +172097,860.4850000071773,-0.051782184148020736 +172098,860.4900000071774,-0.051781180089312547 +172099,860.4950000071775,-0.051780175155118444 +172100,860.5000000071776,-0.051779169344112176 +172101,860.5050000071777,-0.051778162654964675 +172102,860.5100000071778,-0.051777155086344014 +172103,860.515000007178,-0.0517761466369154 +172104,860.520000007178,-0.051775137305341216 +172105,860.5250000071782,-0.05177412709028099 +172106,860.5300000071783,-0.05177311599039132 +172107,860.5350000071784,-0.05177210400432597 +172108,860.5400000071785,-0.05177109113073578 +172109,860.5450000071786,-0.051770077368268747 +172110,860.5500000071787,-0.0517690627155699 +172111,860.5550000071788,-0.05176804717128141 +172112,860.5600000071789,-0.05176703073404249 +172113,860.565000007179,-0.05176601340248944 +172114,860.5700000071791,-0.051764995175255596 +172115,860.5750000071793,-0.05176397605097138 +172116,860.5800000071794,-0.05176295602826426 +172117,860.5850000071795,-0.05176193510575871 +172118,860.5900000071796,-0.05176091328207628 +172119,860.5950000071797,-0.051759890555835485 +172120,860.6000000071798,-0.05175886692565189 +172121,860.6050000071799,-0.05175784239013805 +172122,860.61000000718,-0.05175681694790353 +172123,860.6150000071801,-0.05175579059755488 +172124,860.6200000071802,-0.05175476333769561 +172125,860.6250000071803,-0.051753735166926204 +172126,860.6300000071805,-0.05175270608384412 +172127,860.6350000071806,-0.051751676087043764 +172128,860.6400000071807,-0.05175064517511649 +172129,860.6450000071808,-0.05174961334665059 +172130,860.6500000071809,-0.05174858060023126 +172131,860.655000007181,-0.05174754693444066 +172132,860.6600000071811,-0.05174651234785782 +172133,860.6650000071812,-0.05174547683905867 +172134,860.6700000071813,-0.05174444040661605 +172135,860.6750000071814,-0.05174340304909968 +172136,860.6800000071815,-0.051742364765076175 +172137,860.6850000071817,-0.051741325553108966 +172138,860.6900000071818,-0.05174028541175838 +172139,860.6950000071819,-0.05173924433958159 +172140,860.700000007182,-0.051738202335132585 +172141,860.7050000071821,-0.05173715939696221 +172142,860.7100000071822,-0.05173611552361813 +172143,860.7150000071823,-0.051735070713644776 +172144,860.7200000071824,-0.05173402496558344 +172145,860.7250000071825,-0.05173297827797219 +172146,860.7300000071826,-0.05173193064934587 +172147,860.7350000071827,-0.0517308820782361 +172148,860.7400000071829,-0.05172983256317124 +172149,860.745000007183,-0.05172878210267649 +172150,860.7500000071831,-0.051727730695273706 +172151,860.7550000071832,-0.05172667833948154 +172152,860.7600000071833,-0.05172562503381534 +172153,860.7650000071834,-0.05172457077678719 +172154,860.7700000071835,-0.051723515566905874 +172155,860.7750000071836,-0.051722459402676904 +172156,860.7800000071837,-0.05172140228260244 +172157,860.7850000071838,-0.051720344205181366 +172158,860.790000007184,-0.051719285168909196 +172159,860.7950000071841,-0.05171822517227814 +172160,860.8000000071842,-0.051717164213777055 +172161,860.8050000071843,-0.051716102291891435 +172162,860.8100000071844,-0.05171503940510341 +172163,860.8150000071845,-0.051713975551891736 +172164,860.8200000071846,-0.05171291073073177 +172165,860.8250000071847,-0.05171184494009549 +172166,860.8300000071848,-0.05171077817845146 +172167,860.8350000071849,-0.05170971044426483 +172168,860.840000007185,-0.05170864173599733 +172169,860.8450000071851,-0.051707572052107256 +172170,860.8500000071853,-0.051706501391049445 +172171,860.8550000071854,-0.051705429751275275 +172172,860.8600000071855,-0.0517043571312327 +172173,860.8650000071856,-0.05170328352936615 +172174,860.8700000071857,-0.05170220894411659 +172175,860.8750000071858,-0.05170113337392151 +172176,860.8800000071859,-0.051700056817214846 +172177,860.885000007186,-0.051698979272427066 +172178,860.8900000071861,-0.051697900737985095 +172179,860.8950000071862,-0.051696821212312304 +172180,860.9000000071863,-0.051695740693828526 +172181,860.9050000071865,-0.05169465918095007 +172182,860.9100000071866,-0.05169357667208963 +172183,860.9150000071867,-0.05169249316565636 +172184,860.9200000071868,-0.05169140866005579 +172185,860.9250000071869,-0.05169032315368986 +172186,860.930000007187,-0.051689236644956935 +172187,860.9350000071871,-0.051688149132251726 +172188,860.9400000071872,-0.051687060613965316 +172189,860.9450000071873,-0.05168597108848516 +172190,860.9500000071874,-0.05168488055419506 +172191,860.9550000071876,-0.05168378900947514 +172192,860.9600000071877,-0.05168269645270186 +172193,860.9650000071878,-0.051681602882248004 +172194,860.9700000071879,-0.05168050829648263 +172195,860.975000007188,-0.051679412693771125 +172196,860.9800000071881,-0.05167831607247516 +172197,860.9850000071882,-0.05167721843095264 +172198,860.9900000071883,-0.05167611976755777 +172199,860.9950000071884,-0.051675020080640975 +172200,861.0000000071885,-0.05167391936854894 +172201,861.0050000071886,-0.05167281762962458 +172202,861.0100000071888,-0.051671714862207 +172203,861.0150000071889,-0.05167061106463153 +172204,861.020000007189,-0.05166950623522971 +172205,861.0250000071891,-0.05166840037232922 +172206,861.0300000071892,-0.05166729347425394 +172207,861.0350000071893,-0.05166618553932391 +172208,861.0400000071894,-0.051665076565855304 +172209,861.0450000071895,-0.05166396655216045 +172210,861.0500000071896,-0.05166285549654779 +172211,861.0550000071897,-0.05166174339732189 +172212,861.0600000071898,-0.051660630252783404 +172213,861.06500000719,-0.05165951606122909 +172214,861.0700000071901,-0.05165840082095177 +172215,861.0750000071902,-0.05165728453024035 +172216,861.0800000071903,-0.05165616718737978 +172217,861.0850000071904,-0.051655048790651054 +172218,861.0900000071905,-0.0516539293383312 +172219,861.0950000071906,-0.05165280882869327 +172220,861.1000000071907,-0.05165168726000633 +172221,861.1050000071908,-0.05165056463053541 +172222,861.1100000071909,-0.051649440938541576 +172223,861.115000007191,-0.05164831618228182 +172224,861.1200000071912,-0.05164719036000911 +172225,861.1250000071913,-0.051646063469972345 +172226,861.1300000071914,-0.051644935510416407 +172227,861.1350000071915,-0.05164380647958204 +172228,861.1400000071916,-0.051642676375705944 +172229,861.1450000071917,-0.0516415451970207 +172230,861.1500000071918,-0.05164041294175479 +172231,861.1550000071919,-0.05163927960813254 +172232,861.160000007192,-0.051638145194374145 +172233,861.1650000071921,-0.05163700969869567 +172234,861.1700000071922,-0.051635873119309 +172235,861.1750000071924,-0.05163473545442183 +172236,861.1800000071925,-0.05163359670223771 +172237,861.1850000071926,-0.05163245686095594 +172238,861.1900000071927,-0.051631315928771626 +172239,861.1950000071928,-0.05163017390387564 +172240,861.2000000071929,-0.051629030784454626 +172241,861.205000007193,-0.05162788656869095 +172242,861.2100000071931,-0.05162674125476275 +172243,861.2150000071932,-0.05162559484084385 +172244,861.2200000071933,-0.05162444732510379 +172245,861.2250000071934,-0.051623298705707796 +172246,861.2300000071936,-0.0516221489808168 +172247,861.2350000071937,-0.05162099814858741 +172248,861.2400000071938,-0.05161984620717182 +172249,861.2450000071939,-0.05161869315471795 +172250,861.250000007194,-0.05161753898936929 +172251,861.2550000071941,-0.05161638370926498 +172252,861.2600000071942,-0.05161522731253973 +172253,861.2650000071943,-0.05161406979732385 +172254,861.2700000071944,-0.05161291116174324 +172255,861.2750000071945,-0.05161175140391935 +172256,861.2800000071946,-0.051610590521969146 +172257,861.2850000071948,-0.05160942851400519 +172258,861.2900000071949,-0.0516082653781355 +172259,861.295000007195,-0.05160710111246364 +172260,861.3000000071951,-0.05160593571508865 +172261,861.3050000071952,-0.05160476918410505 +172262,861.3100000071953,-0.05160360151760283 +172263,861.3150000071954,-0.051602432713667414 +172264,861.3200000071955,-0.05160126277037968 +172265,861.3250000071956,-0.0516000916858159 +172266,861.3300000071957,-0.05159891945804777 +172267,861.3350000071958,-0.05159774608514241 +172268,861.340000007196,-0.05159657156516225 +172269,861.3450000071961,-0.051595395896165144 +172270,861.3500000071962,-0.05159421907620427 +172271,861.3550000071963,-0.05159304110332814 +172272,861.3600000071964,-0.051591861975580584 +172273,861.3650000071965,-0.051590681691000756 +172274,861.3700000071966,-0.05158950024762308 +172275,861.3750000071967,-0.05158831764347728 +172276,861.3800000071968,-0.05158713387658832 +172277,861.3850000071969,-0.05158594894497642 +172278,861.390000007197,-0.05158476284665704 +172279,861.3950000071972,-0.051583575579640835 +172280,861.4000000071973,-0.051582387141933694 +172281,861.4050000071974,-0.05158119753153666 +172282,861.4100000071975,-0.05158000674644597 +172283,861.4150000071976,-0.051578814784653024 +172284,861.4200000071977,-0.05157762164414432 +172285,861.4250000071978,-0.05157642732290154 +172286,861.4300000071979,-0.051575231818901446 +172287,861.435000007198,-0.0515740351301159 +172288,861.4400000071981,-0.05157283725451184 +172289,861.4450000071982,-0.05157163819005129 +172290,861.4500000071984,-0.051570437934691286 +172291,861.4550000071985,-0.05156923648638393 +172292,861.4600000071986,-0.05156803384307634 +172293,861.4650000071987,-0.051566830002710604 +172294,861.4700000071988,-0.051565624963223824 +172295,861.4750000071989,-0.051564418722548085 +172296,861.480000007199,-0.051563211278610396 +172297,861.4850000071991,-0.051562002629332714 +172298,861.4900000071992,-0.05156079277263191 +172299,861.4950000071993,-0.051559581706419805 +172300,861.5000000071994,-0.051558369428603056 +172301,861.5050000071996,-0.05155715593708321 +172302,861.5100000071997,-0.05155594122975669 +172303,861.5150000071998,-0.051554725304514736 +172304,861.5200000071999,-0.05155350815924342 +172305,861.5250000072,-0.05155228979182364 +172306,861.5300000072001,-0.051551070200131055 +172307,861.5350000072002,-0.05154984938203611 +172308,861.5400000072003,-0.05154862733540404 +172309,861.5450000072004,-0.051547404058094756 +172310,861.5500000072005,-0.051546179547962964 +172311,861.5550000072006,-0.05154495380285802 +172312,861.5600000072008,-0.051543726820624004 +172313,861.5650000072009,-0.05154249859909966 +172314,861.570000007201,-0.051541269136118374 +172315,861.5750000072011,-0.0515400384295082 +172316,861.5800000072012,-0.051538806477091796 +172317,861.5850000072013,-0.051537573276686434 +172318,861.5900000072014,-0.05153633882610394 +172319,861.5950000072015,-0.05153510312315078 +172320,861.6000000072016,-0.051533866165627884 +172321,861.6050000072017,-0.05153262795133078 +172322,861.6100000072018,-0.05153138847804951 +172323,861.615000007202,-0.051530147743568566 +172324,861.6200000072021,-0.05152890574566698 +172325,861.6250000072022,-0.0515276624821182 +172326,861.6300000072023,-0.05152641795069016 +172327,861.6350000072024,-0.05152517214914519 +172328,861.6400000072025,-0.05152392507524004 +172329,861.6450000072026,-0.05152267672672588 +172330,861.6500000072027,-0.05152142710134818 +172331,861.6550000072028,-0.051520176196846845 +172332,861.6600000072029,-0.05151892401095607 +172333,861.665000007203,-0.05151767054140439 +172334,861.6700000072032,-0.05151641578591461 +172335,861.6750000072033,-0.051515159742203824 +172336,861.6800000072034,-0.051513902407983425 +172337,861.6850000072035,-0.05151264378095901 +172338,861.6900000072036,-0.05151138385883042 +172339,861.6950000072037,-0.05151012263929167 +172340,861.7000000072038,-0.051508860120031 +172341,861.7050000072039,-0.05150759629873081 +172342,861.710000007204,-0.051506331173067625 +172343,861.7150000072041,-0.05150506474071211 +172344,861.7200000072042,-0.05150379699932907 +172345,861.7250000072044,-0.051502527946577344 +172346,861.7300000072045,-0.05150125758010988 +172347,861.7350000072046,-0.05149998589757368 +172348,861.7400000072047,-0.05149871289660975 +172349,861.7450000072048,-0.05149743857485312 +172350,861.7500000072049,-0.05149616292993284 +172351,861.755000007205,-0.051494885959471874 +172352,861.7600000072051,-0.051493607661087196 +172353,861.7650000072052,-0.05149232803238968 +172354,861.7700000072053,-0.051491047070984126 +172355,861.7750000072054,-0.05148976477446921 +172356,861.7800000072056,-0.051488481140437484 +172357,861.7850000072057,-0.051487196166475374 +172358,861.7900000072058,-0.05148590985016311 +172359,861.7950000072059,-0.05148462218907474 +172360,861.800000007206,-0.05148333318077811 +172361,861.8050000072061,-0.05148204282283481 +172362,861.8100000072062,-0.05148075111280023 +172363,861.8150000072063,-0.05147945804822344 +172364,861.8200000072064,-0.05147816362664722 +172365,861.8250000072065,-0.051476867845608044 +172366,861.8300000072066,-0.051475570702636066 +172367,861.8350000072068,-0.05147427219525506 +172368,861.8400000072069,-0.05147297232098242 +172369,861.845000007207,-0.051471671077329174 +172370,861.8500000072071,-0.05147036846179989 +172371,861.8550000072072,-0.05146906447189272 +172372,861.8600000072073,-0.051467759105099334 +172373,861.8650000072074,-0.051466452358904916 +172374,861.8700000072075,-0.05146514423078817 +172375,861.8750000072076,-0.051463834718221226 +172376,861.8800000072077,-0.0514625238186697 +172377,861.8850000072079,-0.051461211529592606 +172378,861.890000007208,-0.05145989784844238 +172379,861.8950000072081,-0.05145858277266483 +172380,861.9000000072082,-0.05145726629969913 +172381,861.9050000072083,-0.05145594842697779 +172382,861.9100000072084,-0.051454629151926626 +172383,861.9150000072085,-0.05145330847196476 +172384,861.9200000072086,-0.051451986384504565 +172385,861.9250000072087,-0.05145066288695168 +172386,861.9300000072088,-0.05144933797670494 +172387,861.9350000072089,-0.05144801165115641 +172388,861.940000007209,-0.05144668390769131 +172389,861.9450000072092,-0.05144535474368801 +172390,861.9500000072093,-0.05144402415651804 +172391,861.9550000072094,-0.051442692143546 +172392,861.9600000072095,-0.05144135870212959 +172393,861.9650000072096,-0.051440023829619576 +172394,861.9700000072097,-0.05143868752335976 +172395,861.9750000072098,-0.05143734978068693 +172396,861.9800000072099,-0.051436010598930895 +172397,861.98500000721,-0.0514346699754144 +172398,861.9900000072101,-0.05143332790745315 +172399,861.9950000072103,-0.05143198439235576 +172400,862.0000000072104,-0.05143063942742373 +172401,862.0050000072105,-0.05142929300995142 +172402,862.0100000072106,-0.05142794513722606 +172403,862.0150000072107,-0.05142659580652768 +172404,862.0200000072108,-0.05142524501512908 +172405,862.0250000072109,-0.051423892760295874 +172406,862.030000007211,-0.05142253903928639 +172407,862.0350000072111,-0.05142118384935168 +172408,862.0400000072112,-0.05141982718773548 +172409,862.0450000072113,-0.05141846905167421 +172410,862.0500000072115,-0.051417109438396905 +172411,862.0550000072116,-0.05141574834512525 +172412,862.0600000072117,-0.051414385769073506 +172413,862.0650000072118,-0.05141302170744848 +172414,862.0700000072119,-0.051411656157449546 +172415,862.075000007212,-0.051410289116268576 +172416,862.0800000072121,-0.05140892058108993 +172417,862.0850000072122,-0.05140755054909044 +172418,862.0900000072123,-0.05140617901743937 +172419,862.0950000072124,-0.05140480598329838 +172420,862.1000000072125,-0.05140343144382151 +172421,862.1050000072127,-0.05140205539615515 +172422,862.1100000072128,-0.051400677837438055 +172423,862.1150000072129,-0.05139929876480126 +172424,862.120000007213,-0.05139791817536806 +172425,862.1250000072131,-0.051396536066254016 +172426,862.1300000072132,-0.051395152434566896 +172427,862.1350000072133,-0.05139376727740667 +172428,862.1400000072134,-0.05139238059186546 +172429,862.1450000072135,-0.051390992375027554 +172430,862.1500000072136,-0.05138960262396933 +172431,862.1550000072137,-0.05138821133575922 +172432,862.1600000072139,-0.05138681850745778 +172433,862.165000007214,-0.05138542413611752 +172434,862.1700000072141,-0.051384028218783004 +172435,862.1750000072142,-0.05138263075249073 +172436,862.1800000072143,-0.05138123173426915 +172437,862.1850000072144,-0.051379831161138624 +172438,862.1900000072145,-0.05137842903011141 +172439,862.1950000072146,-0.0513770253381916 +172440,862.2000000072147,-0.051375620082375124 +172441,862.2050000072148,-0.051374213259649706 +172442,862.210000007215,-0.05137280486699486 +172443,862.215000007215,-0.05137139490138179 +172444,862.2200000072152,-0.051369983359773455 +172445,862.2250000072153,-0.051368570239124466 +172446,862.2300000072154,-0.051367155536381104 +172447,862.2350000072155,-0.051365739248481264 +172448,862.2400000072156,-0.05136432137235441 +172449,862.2450000072157,-0.0513629019049216 +172450,862.2500000072158,-0.05136148084309541 +172451,862.2550000072159,-0.0513600581837799 +172452,862.260000007216,-0.05135863392387061 +172453,862.2650000072161,-0.051357208060254525 +172454,862.2700000072163,-0.051355780589810024 +172455,862.2750000072164,-0.051354351509406884 +172456,862.2800000072165,-0.0513529208159062 +172457,862.2850000072166,-0.05135148850616039 +172458,862.2900000072167,-0.051350054577013186 +172459,862.2950000072168,-0.05134861902529951 +172460,862.3000000072169,-0.05134718184784556 +172461,862.305000007217,-0.05134574304146871 +172462,862.3100000072171,-0.05134430260297747 +172463,862.3150000072172,-0.051342860529171475 +172464,862.3200000072173,-0.05134141681684149 +172465,862.3250000072175,-0.0513399714627693 +172466,862.3300000072176,-0.05133852446372774 +172467,862.3350000072177,-0.05133707581648062 +172468,862.3400000072178,-0.051335625517782715 +172469,862.3450000072179,-0.051334173564379755 +172470,862.350000007218,-0.05133271995300835 +172471,862.3550000072181,-0.05133126468039596 +172472,862.3600000072182,-0.05132980774326089 +172473,862.3650000072183,-0.05132834913831223 +172474,862.3700000072184,-0.05132688886224986 +172475,862.3750000072185,-0.05132542691176434 +172476,862.3800000072187,-0.05132396328353697 +172477,862.3850000072188,-0.051322497974239684 +172478,862.3900000072189,-0.05132103098053506 +172479,862.395000007219,-0.051319562299076256 +172480,862.4000000072191,-0.05131809192650699 +172481,862.4050000072192,-0.05131661985946151 +172482,862.4100000072193,-0.05131514609456453 +172483,862.4150000072194,-0.05131367062843124 +172484,862.4200000072195,-0.051312193457667236 +172485,862.4250000072196,-0.0513107145788685 +172486,862.4300000072197,-0.05130923398862136 +172487,862.4350000072199,-0.05130775168350246 +172488,862.44000000722,-0.0513062676600787 +172489,862.4450000072201,-0.051304781914907255 +172490,862.4500000072202,-0.051303294444535456 +172491,862.4550000072203,-0.051301805245500834 +172492,862.4600000072204,-0.05130031431433103 +172493,862.4650000072205,-0.051298821647543805 +172494,862.4700000072206,-0.05129732724164694 +172495,862.4750000072207,-0.05129583109313826 +172496,862.4800000072208,-0.051294333198505584 +172497,862.485000007221,-0.05129283355422663 +172498,862.490000007221,-0.05129133215676907 +172499,862.4950000072212,-0.05128982900259044 +172500,862.5000000072213,-0.05128832408813807 +172501,862.5050000072214,-0.051286817409849125 +172502,862.5100000072215,-0.05128530896415049 +172503,862.5150000072216,-0.0512837987474588 +172504,862.5200000072217,-0.05128228675618036 +172505,862.5250000072218,-0.05128077298671108 +172506,862.5300000072219,-0.051279257435436536 +172507,862.535000007222,-0.051277740098731796 +172508,862.5400000072221,-0.051276220972961514 +172509,862.5450000072223,-0.05127470005447977 +172510,862.5500000072224,-0.05127317733963011 +172511,862.5550000072225,-0.0512716528247455 +172512,862.5600000072226,-0.05127012650614825 +172513,862.5650000072227,-0.05126859838014998 +172514,862.5700000072228,-0.05126706844305164 +172515,862.5750000072229,-0.051265536691143365 +172516,862.580000007223,-0.05126400312070453 +172517,862.5850000072231,-0.051262467728003656 +172518,862.5900000072232,-0.05126093050929838 +172519,862.5950000072233,-0.051259391460835406 +172520,862.6000000072235,-0.051257850578850496 +172521,862.6050000072236,-0.05125630785956841 +172522,862.6100000072237,-0.05125476329920284 +172523,862.6150000072238,-0.05125321689395638 +172524,862.6200000072239,-0.05125166864002053 +172525,862.625000007224,-0.05125011853357556 +172526,862.6300000072241,-0.05124856657079059 +172527,862.6350000072242,-0.05124701274782341 +172528,862.6400000072243,-0.05124545706082056 +172529,862.6450000072244,-0.051243899505917186 +172530,862.6500000072245,-0.05124234007923708 +172531,862.6550000072247,-0.0512407787768926 +172532,862.6600000072248,-0.0512392155949846 +172533,862.6650000072249,-0.05123765052960242 +172534,862.670000007225,-0.05123608357682383 +172535,862.6750000072251,-0.051234514732715 +172536,862.6800000072252,-0.051232943993330435 +172537,862.6850000072253,-0.05123137135471295 +172538,862.6900000072254,-0.051229796812893566 +172539,862.6950000072255,-0.05122822036389158 +172540,862.7000000072256,-0.05122664200371441 +172541,862.7050000072257,-0.05122506172835758 +172542,862.7100000072259,-0.051223479533804704 +172543,862.715000007226,-0.051221895416027424 +172544,862.7200000072261,-0.05122030937098533 +172545,862.7250000072262,-0.051218721394625986 +172546,862.7300000072263,-0.051217131482884794 +172547,862.7350000072264,-0.05121553963168501 +172548,862.7400000072265,-0.05121394583693767 +172549,862.7450000072266,-0.051212350094541566 +172550,862.7500000072267,-0.05121075240038317 +172551,862.7550000072268,-0.0512091527503366 +172552,862.760000007227,-0.051207551140263576 +172553,862.7650000072271,-0.05120594756601335 +172554,862.7700000072272,-0.05120434202342269 +172555,862.7750000072273,-0.05120273450831577 +172556,862.7800000072274,-0.05120112501650422 +172557,862.7850000072275,-0.05119951354378699 +172558,862.7900000072276,-0.05119790008595034 +172559,862.7950000072277,-0.05119628463876776 +172560,862.8000000072278,-0.05119466719799996 +172561,862.8050000072279,-0.0511930477593948 +172562,862.810000007228,-0.05119142631868722 +172563,862.8150000072282,-0.051189802871599216 +172564,862.8200000072283,-0.05118817741383977 +172565,862.8250000072284,-0.05118654994110482 +172566,862.8300000072285,-0.0511849204490772 +172567,862.8350000072286,-0.051183288933426566 +172568,862.8400000072287,-0.05118165538980938 +172569,862.8450000072288,-0.05118001981386883 +172570,862.8500000072289,-0.051178382201234766 +172571,862.855000007229,-0.05117674254752372 +172572,862.8600000072291,-0.051175100848338734 +172573,862.8650000072292,-0.05117345709926941 +172574,862.8700000072294,-0.05117181129589183 +172575,862.8750000072295,-0.051170163433768436 +172576,862.8800000072296,-0.05116851350844809 +172577,862.8850000072297,-0.05116686151546593 +172578,862.8900000072298,-0.05116520745034333 +172579,862.8950000072299,-0.051163551308587886 +172580,862.90000000723,-0.05116189308569329 +172581,862.9050000072301,-0.05116023277713939 +172582,862.9100000072302,-0.05115857037839197 +172583,862.9150000072303,-0.051156905884902855 +172584,862.9200000072304,-0.05115523929210976 +172585,862.9250000072306,-0.05115357059543624 +172586,862.9300000072307,-0.051151899790291666 +172587,862.9350000072308,-0.051150226872071144 +172588,862.9400000072309,-0.05114855183615548 +172589,862.945000007231,-0.05114687467791109 +172590,862.9500000072311,-0.05114519539268994 +172591,862.9550000072312,-0.05114351397582955 +172592,862.9600000072313,-0.05114183042265284 +172593,862.9650000072314,-0.05114014472846817 +172594,862.9700000072315,-0.05113845688856918 +172595,862.9750000072316,-0.05113676689823481 +172596,862.9800000072318,-0.05113507475272922 +172597,862.9850000072319,-0.05113338044730169 +172598,862.990000007232,-0.051131683977186614 +172599,862.9950000072321,-0.0511299853376034 +172600,863.0000000072322,-0.05112828452375642 +172601,863.0050000072323,-0.05112658153083497 +172602,863.0100000072324,-0.051124876354013166 +172603,863.0150000072325,-0.05112316898844994 +172604,863.0200000072326,-0.051121459429288876 +172605,863.0250000072327,-0.05111974767165829 +172606,863.0300000072328,-0.05111803371067103 +172607,863.035000007233,-0.05111631754142451 +172608,863.0400000072331,-0.05111459915900058 +172609,863.0450000072332,-0.05111287855846551 +172610,863.0500000072333,-0.0511111557348699 +172611,863.0550000072334,-0.05110943068324861 +172612,863.0600000072335,-0.0511077033986207 +172613,863.0650000072336,-0.051105973875989405 +172614,863.0700000072337,-0.05110424211034199 +172615,863.0750000072338,-0.05110250809664974 +172616,863.0800000072339,-0.051100771829867914 +172617,863.085000007234,-0.05109903330493557 +172618,863.0900000072342,-0.05109729251677565 +172619,863.0950000072343,-0.05109554946029479 +172620,863.1000000072344,-0.05109380413038332 +172621,863.1050000072345,-0.051092056521915126 +172622,863.1100000072346,-0.05109030662974769 +172623,863.1150000072347,-0.051088554448721894 +172624,863.1200000072348,-0.05108679997366207 +172625,863.1250000072349,-0.05108504319937583 +172626,863.130000007235,-0.051083284120654084 +172627,863.1350000072351,-0.05108152273227089 +172628,863.1400000072352,-0.051079759028983415 +172629,863.1450000072354,-0.05107799300553191 +172630,863.1500000072355,-0.05107622465663954 +172631,863.1550000072356,-0.051074453977012414 +172632,863.1600000072357,-0.051072680961339434 +172633,863.1650000072358,-0.05107090560429228 +172634,863.1700000072359,-0.05106912790052529 +172635,863.175000007236,-0.051067347844675426 +172636,863.1800000072361,-0.05106556543136216 +172637,863.1850000072362,-0.05106378065518743 +172638,863.1900000072363,-0.05106199351073558 +172639,863.1950000072364,-0.05106020399257322 +172640,863.2000000072366,-0.05105841209524922 +172641,863.2050000072367,-0.05105661781329461 +172642,863.2100000072368,-0.051054821141222465 +172643,863.2150000072369,-0.0510530220735279 +172644,863.220000007237,-0.05105122060468794 +172645,863.2250000072371,-0.051049416729161454 +172646,863.2300000072372,-0.051047610441389085 +172647,863.2350000072373,-0.05104580173579318 +172648,863.2400000072374,-0.05104399060677768 +172649,863.2450000072375,-0.05104217704872808 +172650,863.2500000072376,-0.05104036105601129 +172651,863.2550000072378,-0.05103854262297564 +172652,863.2600000072379,-0.051036721743950735 +172653,863.265000007238,-0.051034898413247376 +172654,863.2700000072381,-0.05103307262515753 +172655,863.2750000072382,-0.051031244373954184 +172656,863.2800000072383,-0.0510294136538913 +172657,863.2850000072384,-0.05102758045920372 +172658,863.2900000072385,-0.051025744784107104 +172659,863.2950000072386,-0.05102390662279783 +172660,863.3000000072387,-0.051022065969452884 +172661,863.3050000072388,-0.051020222818229814 +172662,863.310000007239,-0.05101837716326663 +172663,863.3150000072391,-0.051016528998681754 +172664,863.3200000072392,-0.05101467831857384 +172665,863.3250000072393,-0.05101282511702181 +172666,863.3300000072394,-0.05101096938808463 +172667,863.3350000072395,-0.0510091111258014 +172668,863.3400000072396,-0.05100725032419108 +172669,863.3450000072397,-0.051005386977252515 +172670,863.3500000072398,-0.051003521078964324 +172671,863.3550000072399,-0.0510016526232848 +172672,863.36000000724,-0.05099978160415182 +172673,863.3650000072402,-0.050997908015482776 +172674,863.3700000072403,-0.05099603185117447 +172675,863.3750000072404,-0.05099415310510297 +172676,863.3800000072405,-0.05099227177112364 +172677,863.3850000072406,-0.05099038784307094 +172678,863.3900000072407,-0.05098850131475835 +172679,863.3950000072408,-0.05098661217997835 +172680,863.4000000072409,-0.05098472043250225 +172681,863.405000007241,-0.050982826066080095 +172682,863.4100000072411,-0.05098092907444063 +172683,863.4150000072412,-0.05097902945129114 +172684,863.4200000072414,-0.05097712719031742 +172685,863.4250000072415,-0.050975222285183606 +172686,863.4300000072416,-0.050973314729532135 +172687,863.4350000072417,-0.05097140451698363 +172688,863.4400000072418,-0.050969491641136774 +172689,863.4450000072419,-0.05096757609556826 +172690,863.450000007242,-0.050965657873832684 +172691,863.4550000072421,-0.05096373696946239 +172692,863.4600000072422,-0.050961813375967425 +172693,863.4650000072423,-0.05095988708683544 +172694,863.4700000072424,-0.05095795809553155 +172695,863.4750000072426,-0.05095602639549829 +172696,863.4800000072427,-0.050954091980155415 +172697,863.4850000072428,-0.050952154842899916 +172698,863.4900000072429,-0.05095021497710585 +172699,863.495000007243,-0.05094827237612421 +172700,863.5000000072431,-0.05094632703328288 +172701,863.5050000072432,-0.050944378941886526 +172702,863.5100000072433,-0.050942428095216444 +172703,863.5150000072434,-0.05094047448653046 +172704,863.5200000072435,-0.0509385181090629 +172705,863.5250000072436,-0.05093655895602437 +172706,863.5300000072438,-0.05093459702060173 +172707,863.5350000072439,-0.050932632295957944 +172708,863.540000007244,-0.05093066477523199 +172709,863.5450000072441,-0.05092869445153875 +172710,863.5500000072442,-0.05092672131796887 +172711,863.5550000072443,-0.05092474536758868 +172712,863.5600000072444,-0.050922766593440104 +172713,863.5650000072445,-0.05092078498854046 +172714,863.5700000072446,-0.050918800545882464 +172715,863.5750000072447,-0.05091681325843401 +172716,863.5800000072448,-0.05091482311913811 +172717,863.585000007245,-0.05091283012091277 +172718,863.5900000072451,-0.050910834256650904 +172719,863.5950000072452,-0.05090883551922012 +172720,863.6000000072453,-0.050906833901462736 +172721,863.6050000072454,-0.05090482939619557 +172722,863.6100000072455,-0.050902821996209824 +172723,863.6150000072456,-0.05090081169427101 +172724,863.6200000072457,-0.050898798483118825 +172725,863.6250000072458,-0.05089678235546697 +172726,863.6300000072459,-0.05089476330400311 +172727,863.635000007246,-0.050892741321388685 +172728,863.6400000072462,-0.05089071640025883 +172729,863.6450000072463,-0.05088868853322221 +172730,863.6500000072464,-0.050886657712860967 +172731,863.6550000072465,-0.050884623931730516 +172732,863.6600000072466,-0.050882587182359475 +172733,863.6650000072467,-0.05088054745724951 +172734,863.6700000072468,-0.05087850474887519 +172735,863.6750000072469,-0.050876459049683916 +172736,863.680000007247,-0.05087441035209575 +172737,863.6850000072471,-0.05087235864850329 +172738,863.6900000072472,-0.05087030393127155 +172739,863.6950000072474,-0.05086824619273783 +172740,863.7000000072475,-0.050866185425211555 +172741,863.7050000072476,-0.0508641216209742 +172742,863.7100000072477,-0.0508620547722791 +172743,863.7150000072478,-0.05085998487135134 +172744,863.7200000072479,-0.050857911910387646 +172745,863.725000007248,-0.05085583588155616 +172746,863.7300000072481,-0.05085375677699643 +172747,863.7350000072482,-0.050851674588819194 +172748,863.7400000072483,-0.05084958930910622 +172749,863.7450000072484,-0.05084750092991024 +172750,863.7500000072486,-0.05084540944325477 +172751,863.7550000072487,-0.05084331484113395 +172752,863.7600000072488,-0.050841217115512434 +172753,863.7650000072489,-0.050839116258325275 +172754,863.770000007249,-0.050837012261477695 +172755,863.7750000072491,-0.050834905116845006 +172756,863.7800000072492,-0.05083279481627247 +172757,863.7850000072493,-0.050830681351575126 +172758,863.7900000072494,-0.05082856471453764 +172759,863.7950000072495,-0.050826444896914166 +172760,863.8000000072497,-0.05082432189042822 +172761,863.8050000072498,-0.05082219568677252 +172762,863.8100000072499,-0.05082006627760877 +172763,863.81500000725,-0.05081793365456764 +172764,863.8200000072501,-0.0508157978092485 +172765,863.8250000072502,-0.0508136587332193 +172766,863.8300000072503,-0.05081151641801644 +172767,863.8350000072504,-0.05080937085514461 +172768,863.8400000072505,-0.050807222036076585 +172769,863.8450000072506,-0.05080506995225315 +172770,863.8500000072507,-0.05080291459508287 +172771,863.8550000072509,-0.050800755955941954 +172772,863.860000007251,-0.05079859402617413 +172773,863.8650000072511,-0.050796428797090426 +172774,863.8700000072512,-0.05079426025996907 +172775,863.8750000072513,-0.05079208840605526 +172776,863.8800000072514,-0.05078991322656107 +172777,863.8850000072515,-0.050787734712665226 +172778,863.8900000072516,-0.05078555285551298 +172779,863.8950000072517,-0.05078336764621591 +172780,863.9000000072518,-0.0507811790758518 +172781,863.9050000072519,-0.050778987135464436 +172782,863.910000007252,-0.05077679181606343 +172783,863.9150000072522,-0.05077459310862405 +172784,863.9200000072523,-0.05077239100408711 +172785,863.9250000072524,-0.05077018549335871 +172786,863.9300000072525,-0.0507679765673101 +172787,863.9350000072526,-0.050765764216777524 +172788,863.9400000072527,-0.05076354843256202 +172789,863.9450000072528,-0.05076132920542924 +172790,863.9500000072529,-0.050759106526109266 +172791,863.955000007253,-0.050756880385296486 +172792,863.9600000072531,-0.05075465077364932 +172793,863.9650000072533,-0.05075241768179014 +172794,863.9700000072534,-0.050750181100305 +172795,863.9750000072535,-0.05074794101974351 +172796,863.9800000072536,-0.05074569743061862 +172797,863.9850000072537,-0.05074345032340645 +172798,863.9900000072538,-0.050741199688546075 +172799,863.9950000072539,-0.0507389455164394 +172800,864.000000007254,-0.050736687797450886 +172801,864.0050000072541,-0.05073442652190741 +172802,864.0100000072542,-0.05073216168009809 +172803,864.0150000072543,-0.050729893262274034 +172804,864.0200000072545,-0.05072762125864819 +172805,864.0250000072546,-0.050725345659395134 +172806,864.0300000072547,-0.05072306645465086 +172807,864.0350000072548,-0.05072078363451263 +172808,864.0400000072549,-0.050718497189038717 +172809,864.045000007255,-0.05071620710824823 +172810,864.0500000072551,-0.05071391338212091 +172811,864.0550000072552,-0.05071161600059692 +172812,864.0600000072553,-0.05070931495357667 +172813,864.0650000072554,-0.05070701023092056 +172814,864.0700000072555,-0.050704701822448815 +172815,864.0750000072557,-0.05070238971794123 +172816,864.0800000072558,-0.05070007390713704 +172817,864.0850000072559,-0.050697754379734616 +172818,864.090000007256,-0.050695431125391335 +172819,864.0950000072561,-0.050693104133723285 +172820,864.1000000072562,-0.0506907733943051 +172821,864.1050000072563,-0.05068843889666974 +172822,864.1100000072564,-0.05068610063030826 +172823,864.1150000072565,-0.05068375858466959 +172824,864.1200000072566,-0.05068141274916035 +172825,864.1250000072567,-0.05067906311314454 +172826,864.1300000072569,-0.050676709665943405 +172827,864.135000007257,-0.05067435239683519 +172828,864.1400000072571,-0.05067199129505487 +172829,864.1450000072572,-0.050669626349793946 +172830,864.1500000072573,-0.05066725755020025 +172831,864.1550000072574,-0.050664884885377647 +172832,864.1600000072575,-0.050662508344385855 +172833,864.1650000072576,-0.05066012791624019 +172834,864.1700000072577,-0.050657743589911305 +172835,864.1750000072578,-0.05065535535432503 +172836,864.180000007258,-0.05065296319836203 +172837,864.185000007258,-0.050650567110857636 +172838,864.1900000072582,-0.05064816708060158 +172839,864.1950000072583,-0.05064576309633776 +172840,864.2000000072584,-0.050643355146763956 +172841,864.2050000072585,-0.05064094322053163 +172842,864.2100000072586,-0.05063852730624566 +172843,864.2150000072587,-0.050636107392464096 +172844,864.2200000072588,-0.05063368346769788 +172845,864.2250000072589,-0.050631255520410604 +172846,864.230000007259,-0.050628823539018285 +172847,864.2350000072591,-0.05062638751188908 +172848,864.2400000072593,-0.050623947427343 +172849,864.2450000072594,-0.05062150327365171 +172850,864.2500000072595,-0.050619055039038234 +172851,864.2550000072596,-0.05061660271167665 +172852,864.2600000072597,-0.05061414627969191 +172853,864.2650000072598,-0.05061168573115951 +172854,864.2700000072599,-0.05060922105410522 +172855,864.27500000726,-0.05060675223650485 +172856,864.2800000072601,-0.05060427926628394 +172857,864.2850000072602,-0.0506018021313175 +172858,864.2900000072603,-0.05059932081942972 +172859,864.2950000072605,-0.05059683531839373 +172860,864.3000000072606,-0.05059434561593126 +172861,864.3050000072607,-0.050591851699712406 +172862,864.3100000072608,-0.0505893535573553 +172863,864.3150000072609,-0.05058685117642587 +172864,864.320000007261,-0.05058434454443751 +172865,864.3250000072611,-0.050581833648850834 +172866,864.3300000072612,-0.05057931847707333 +172867,864.3350000072613,-0.050576799016459104 +172868,864.3400000072614,-0.05057427525430856 +172869,864.3450000072615,-0.050571747177868116 +172870,864.3500000072617,-0.05056921477432991 +172871,864.3550000072618,-0.05056667803083144 +172872,864.3600000072619,-0.05056413693445535 +172873,864.365000007262,-0.050561591472229044 +172874,864.3700000072621,-0.050559041631124416 +172875,864.3750000072622,-0.05055648739805754 +172876,864.3800000072623,-0.050553928759888324 +172877,864.3850000072624,-0.05055136570342022 +172878,864.3900000072625,-0.0505487982153999 +172879,864.3950000072626,-0.05054622628251694 +172880,864.4000000072627,-0.050543649891403475 +172881,864.4050000072629,-0.050541069028633916 +172882,864.410000007263,-0.050538483680724555 +172883,864.4150000072631,-0.050535893834133316 +172884,864.4200000072632,-0.050533299475259356 +172885,864.4250000072633,-0.050530700590442776 +172886,864.4300000072634,-0.05052809716596424 +172887,864.4350000072635,-0.05052548918804469 +172888,864.4400000072636,-0.05052287664284495 +172889,864.4450000072637,-0.05052025951646542 +172890,864.4500000072638,-0.05051763779494572 +172891,864.455000007264,-0.050515011464264306 +172892,864.4600000072641,-0.05051238051033818 +172893,864.4650000072642,-0.0505097449190225 +172894,864.4700000072643,-0.05050710467611022 +172895,864.4750000072644,-0.05050445976733174 +172896,864.4800000072645,-0.050501810178354534 +172897,864.4850000072646,-0.0504991558947828 +172898,864.4900000072647,-0.05049649690215711 +172899,864.4950000072648,-0.050493833185953976 +172900,864.5000000072649,-0.05049116473158554 +172901,864.505000007265,-0.050488491524399194 +172902,864.5100000072651,-0.05048581354967715 +172903,864.5150000072653,-0.05048313079263612 +172904,864.5200000072654,-0.05048044323842689 +172905,864.5250000072655,-0.05047775087213397 +172906,864.5300000072656,-0.05047505367877517 +172907,864.5350000072657,-0.05047235164330124 +172908,864.5400000072658,-0.050469644750595434 +172909,864.5450000072659,-0.05046693298547318 +172910,864.550000007266,-0.050464216332681604 +172911,864.5550000072661,-0.05046149477689916 +172912,864.5600000072662,-0.05045876830273524 +172913,864.5650000072663,-0.05045603689472975 +172914,864.5700000072665,-0.05045330053735269 +172915,864.5750000072666,-0.050450559215003736 +172916,864.5800000072667,-0.05044781291201184 +172917,864.5850000072668,-0.0504450616126348 +172918,864.5900000072669,-0.05044230530105884 +172919,864.595000007267,-0.050439543961398145 +172920,864.6000000072671,-0.0504367775776945 +172921,864.6050000072672,-0.0504340061339168 +172922,864.6100000072673,-0.05043122961396061 +172923,864.6150000072674,-0.05042844800164778 +172924,864.6200000072675,-0.050425661280725946 +172925,864.6250000072677,-0.05042286943486809 +172926,864.6300000072678,-0.050420072447672125 +172927,864.6350000072679,-0.05041727030266038 +172928,864.640000007268,-0.05041446298327922 +172929,864.6450000072681,-0.050411650472898514 +172930,864.6500000072682,-0.050408832754811214 +172931,864.6550000072683,-0.050406009812232866 +172932,864.6600000072684,-0.05040318162830114 +172933,864.6650000072685,-0.050400348186075375 +172934,864.6700000072686,-0.05039750946853607 +172935,864.6750000072687,-0.05039466545858441 +172936,864.6800000072689,-0.050391816139041826 +172937,864.685000007269,-0.05038896149264942 +172938,864.6900000072691,-0.050386101502067536 +172939,864.6950000072692,-0.05038323614987525 +172940,864.7000000072693,-0.050380365418569856 +172941,864.7050000072694,-0.05037748929056636 +172942,864.7100000072695,-0.050374607748197006 +172943,864.7150000072696,-0.05037172077371071 +172944,864.7200000072697,-0.05036882834927256 +172945,864.7250000072698,-0.05036593045696334 +172946,864.73000000727,-0.05036302707877895 +172947,864.7350000072701,-0.0503601181966299 +172948,864.7400000072702,-0.05035720379234076 +172949,864.7450000072703,-0.05035428384764966 +172950,864.7500000072704,-0.050351358344207696 +172951,864.7550000072705,-0.05034842726357846 +172952,864.7600000072706,-0.05034549058723741 +172953,864.7650000072707,-0.05034254829657135 +172954,864.7700000072708,-0.0503396003728779 +172955,864.7750000072709,-0.05033664679736488 +172956,864.780000007271,-0.05033368755114977 +172957,864.7850000072712,-0.05033072261525914 +172958,864.7900000072713,-0.050327751970628075 +172959,864.7950000072714,-0.05032477559809958 +172960,864.8000000072715,-0.050321793478424026 +172961,864.8050000072716,-0.050318805592258514 +172962,864.8100000072717,-0.05031581192016633 +172963,864.8150000072718,-0.05031281244261629 +172964,864.8200000072719,-0.0503098071399822 +172965,864.825000007272,-0.05030679599254218 +172966,864.8300000072721,-0.0503037789804781 +172967,864.8350000072722,-0.05030075608387497 +172968,864.8400000072724,-0.05029772728272026 +172969,864.8450000072725,-0.0502946925569033 +172970,864.8500000072726,-0.050291651886214664 +172971,864.8550000072727,-0.05028860525034553 +172972,864.8600000072728,-0.05028555262888699 +172973,864.8650000072729,-0.05028249400132947 +172974,864.870000007273,-0.05027942934706199 +172975,864.8750000072731,-0.05027635864537162 +172976,864.8800000072732,-0.050273281875442694 +172977,864.8850000072733,-0.050270199016356217 +172978,864.8900000072734,-0.05026711004708916 +172979,864.8950000072736,-0.050264014946513814 +172980,864.9000000072737,-0.05026091369339702 +172981,864.9050000072738,-0.05025780626639956 +172982,864.9100000072739,-0.05025469264407545 +172983,864.915000007274,-0.05025157280487118 +172984,864.9200000072741,-0.05024844672712506 +172985,864.9250000072742,-0.05024531438906648 +172986,864.9300000072743,-0.050242175768815185 +172987,864.9350000072744,-0.05023903084438058 +172988,864.9400000072745,-0.050235879593660944 +172989,864.9450000072746,-0.05023272199444272 +172990,864.9500000072748,-0.05022955802439978 +172991,864.9550000072749,-0.05022638766109267 +172992,864.960000007275,-0.05022321088196783 +172993,864.9650000072751,-0.05022002766435685 +172994,864.9700000072752,-0.05021683798547567 +172995,864.9750000072753,-0.05021364182242384 +172996,864.9800000072754,-0.05021043915218374 +172997,864.9850000072755,-0.05020722995161974 +172998,864.9900000072756,-0.050204014197477435 +172999,864.9950000072757,-0.050200791866382856 +173000,865.0000000072758,-0.05019756293484166 +173001,865.005000007276,-0.050194327379238235 +173002,865.0100000072761,-0.05019108517583499 +173003,865.0150000072762,-0.05018783630077145 +173004,865.0200000072763,-0.05018458073006346 +173005,865.0250000072764,-0.05018131843960228 +173006,865.0300000072765,-0.05017804940515379 +173007,865.0350000072766,-0.05017477360235762 +173008,865.0400000072767,-0.05017149100672626 +173009,865.0450000072768,-0.050168201593644185 +173010,865.0500000072769,-0.050164905338367025 +173011,865.055000007277,-0.05016160221602058 +173012,865.0600000072772,-0.05015829220160005 +173013,865.0650000072773,-0.05015497526996899 +173014,865.0700000072774,-0.0501516513958585 +173015,865.0750000072775,-0.050148320553866255 +173016,865.0800000072776,-0.05014498271845561 +173017,865.0850000072777,-0.050141637863954626 +173018,865.0900000072778,-0.050138285964555156 +173019,865.0950000072779,-0.05013492699431186 +173020,865.100000007278,-0.050131560927141265 +173021,865.1050000072781,-0.0501281877368208 +173022,865.1100000072782,-0.05012480739698782 +173023,865.1150000072784,-0.050121419881138565 +173024,865.1200000072785,-0.05011802516262725 +173025,865.1250000072786,-0.050114623214665005 +173026,865.1300000072787,-0.05011121401031885 +173027,865.1350000072788,-0.050107797522510725 +173028,865.1400000072789,-0.050104373724016396 +173029,865.145000007279,-0.05010094258746449 +173030,865.1500000072791,-0.05009750408533537 +173031,865.1550000072792,-0.05009405818996012 +173032,865.1600000072793,-0.05009060487351947 +173033,865.1650000072794,-0.05008714410804269 +173034,865.1700000072796,-0.050083675865406546 +173035,865.1750000072797,-0.050080200117334175 +173036,865.1800000072798,-0.05007671683539397 +173037,865.1850000072799,-0.050073225990998484 +173038,865.19000000728,-0.050069727555403294 +173039,865.1950000072801,-0.05006622149970586 +173040,865.2000000072802,-0.050062707794844404 +173041,865.2050000072803,-0.05005918641159667 +173042,865.2100000072804,-0.05005565732057887 +173043,865.2150000072805,-0.05005212049224443 +173044,865.2200000072806,-0.05004857589688278 +173045,865.2250000072808,-0.050045023504618244 +173046,865.2300000072809,-0.05004146328540874 +173047,865.235000007281,-0.05003789520904459 +173048,865.2400000072811,-0.050034319245147285 +173049,865.2450000072812,-0.050030735363168266 +173050,865.2500000072813,-0.05002714353238758 +173051,865.2550000072814,-0.050023543721912735 +173052,865.2600000072815,-0.0500199359006773 +173053,865.2650000072816,-0.0500163200374397 +173054,865.2700000072817,-0.050012696100781864 +173055,865.2750000072818,-0.05000906405910794 +173056,865.280000007282,-0.05000542388064293 +173057,865.2850000072821,-0.05000177553343136 +173058,865.2900000072822,-0.04999811898533594 +173059,865.2950000072823,-0.04999445420403619 +173060,865.3000000072824,-0.049990781157027056 +173061,865.3050000072825,-0.049987099811617544 +173062,865.3100000072826,-0.04998341013492925 +173063,865.3150000072827,-0.049979712093895005 +173064,865.3200000072828,-0.04997600565525743 +173065,865.3250000072829,-0.04997229078556746 +173066,865.330000007283,-0.04996856745118292 +173067,865.3350000072832,-0.04996483561826703 +173068,865.3400000072833,-0.0499610952527869 +173069,865.3450000072834,-0.04995734632051209 +173070,865.3500000072835,-0.04995358878701303 +173071,865.3550000072836,-0.04994982261765953 +173072,865.3600000072837,-0.0499460477776192 +173073,865.3650000072838,-0.049942264231855917 +173074,865.3700000072839,-0.049938471945128245 +173075,865.375000007284,-0.049934670881987823 +173076,865.3800000072841,-0.0499308610067778 +173077,865.3850000072842,-0.049927042283631165 +173078,865.3900000072844,-0.04992321467646916 +173079,865.3950000072845,-0.04991937814899957 +173080,865.4000000072846,-0.0499155326647151 +173081,865.4050000072847,-0.04991167818689168 +173082,865.4100000072848,-0.04990781467858674 +173083,865.4150000072849,-0.04990394210263751 +173084,865.420000007285,-0.04990006042165929 +173085,865.4250000072851,-0.049896169598043674 +173086,865.4300000072852,-0.049892269593956796 +173087,865.4350000072853,-0.04988836037133756 +173088,865.4400000072854,-0.04988444189189577 +173089,865.4450000072856,-0.049880514117110385 +173090,865.4500000072857,-0.049876577008227625 +173091,865.4550000072858,-0.04987263052625914 +173092,865.4600000072859,-0.04986867463198011 +173093,865.465000007286,-0.049864709285927344 +173094,865.4700000072861,-0.04986073444839739 +173095,865.4750000072862,-0.049856750079444595 +173096,865.4800000072863,-0.049852756138879115 +173097,865.4850000072864,-0.04984875258626497 +173098,865.4900000072865,-0.04984473938091806 +173099,865.4950000072866,-0.04984071648190411 +173100,865.5000000072868,-0.04983668384803665 +173101,865.5050000072869,-0.049832641437875 +173102,865.510000007287,-0.04982858920972213 +173103,865.5150000072871,-0.04982452712162258 +173104,865.5200000072872,-0.04982045513136037 +173105,865.5250000072873,-0.04981637319645683 +173106,865.5300000072874,-0.04981228127416842 +173107,865.5350000072875,-0.04980817932148458 +173108,865.5400000072876,-0.04980406729512552 +173109,865.5450000072877,-0.049799945151539945 +173110,865.5500000072878,-0.04979581284690285 +173111,865.555000007288,-0.0497916703371132 +173112,865.5600000072881,-0.04978751757779167 +173113,865.5650000072882,-0.04978335452427827 +173114,865.5700000072883,-0.049779181131630025 +173115,865.5750000072884,-0.04977499735461862 +173116,865.5800000072885,-0.04977080314772795 +173117,865.5850000072886,-0.04976659846515171 +173118,865.5900000072887,-0.04976238326079098 +173119,865.5950000072888,-0.04975815748825169 +173120,865.6000000072889,-0.04975392110084217 +173121,865.605000007289,-0.049749674051570575 +173122,865.6100000072892,-0.049745416293142365 +173123,865.6150000072893,-0.0497411477779577 +173124,865.6200000072894,-0.04973686845810883 +173125,865.6250000072895,-0.04973257828537746 +173126,865.6300000072896,-0.04972827721123207 +173127,865.6350000072897,-0.04972396518682524 +173128,865.6400000072898,-0.0497196421629909 +173129,865.6450000072899,-0.0497153080902416 +173130,865.65000000729,-0.049710962918765686 +173131,865.6550000072901,-0.04970660659842454 +173132,865.6600000072903,-0.04970223907874966 +173133,865.6650000072904,-0.049697860308939884 +173134,865.6700000072905,-0.04969347023785835 +173135,865.6750000072906,-0.04968906881402967 +173136,865.6800000072907,-0.04968465598563692 +173137,865.6850000072908,-0.04968023170051861 +173138,865.6900000072909,-0.04967579590616564 +173139,865.695000007291,-0.049671348549718296 +173140,865.7000000072911,-0.04966688957796308 +173141,865.7050000072912,-0.04966241893732956 +173142,865.7100000072913,-0.04965793657388727 +173143,865.7150000072915,-0.0496534424333424 +173144,865.7200000072916,-0.049648936461034625 +173145,865.7250000072917,-0.04964441860193379 +173146,865.7300000072918,-0.04963988880063658 +173147,865.7350000072919,-0.049635347001363184 +173148,865.740000007292,-0.049630793147953885 +173149,865.7450000072921,-0.04962622718386563 +173150,865.7500000072922,-0.04962164905216857 +173151,865.7550000072923,-0.04961705869554251 +173152,865.7600000072924,-0.049612456056273395 +173153,865.7650000072925,-0.049607841076249694 +173154,865.7700000072927,-0.04960321369695877 +173155,865.7750000072928,-0.049598573859483214 +173156,865.7800000072929,-0.0495939215044971 +173157,865.785000007293,-0.04958925657226228 +173158,865.7900000072931,-0.049584579002624495 +173159,865.7950000072932,-0.04957988873500959 +173160,865.8000000072933,-0.0495751857084196 +173161,865.8050000072934,-0.04957046986142883 +173162,865.8100000072935,-0.04956574113217981 +173163,865.8150000072936,-0.04956099945837935 +173164,865.8200000072937,-0.04955624477729439 +173165,865.8250000072939,-0.04955147702574791 +173166,865.830000007294,-0.049546696140114733 +173167,865.8350000072941,-0.049541902056317325 +173168,865.8400000072942,-0.04953709470982151 +173169,865.8450000072943,-0.04953227403563212 +173170,865.8500000072944,-0.04952743996828865 +173171,865.8550000072945,-0.049522592441860816 +173172,865.8600000072946,-0.049517731389944086 +173173,865.8650000072947,-0.04951285674565511 +173174,865.8700000072948,-0.04950796844162717 +173175,865.875000007295,-0.04950306641000551 +173176,865.880000007295,-0.04949815058244264 +173177,865.8850000072952,-0.04949322089009357 +173178,865.8900000072953,-0.049488277263611026 +173179,865.8950000072954,-0.04948331963314052 +173180,865.9000000072955,-0.049478347928315465 +173181,865.9050000072956,-0.049473362078252155 +173182,865.9100000072957,-0.0494683620115447 +173183,865.9150000072958,-0.04946334765625995 +173184,865.9200000072959,-0.04945831893993227 +173185,865.925000007296,-0.049453275789558306 +173186,865.9300000072961,-0.04944821813159169 +173187,865.9350000072963,-0.04944314589193765 +173188,865.9400000072964,-0.04943805899594757 +173189,865.9450000072965,-0.049432957368413466 +173190,865.9500000072966,-0.04942784093356243 +173191,865.9550000072967,-0.04942270961505097 +173192,865.9600000072968,-0.049417563335959286 +173193,865.9650000072969,-0.04941240201878548 +173194,865.970000007297,-0.04940722558543967 +173195,865.9750000072971,-0.04940203395723809 +173196,865.9800000072972,-0.04939682705489703 +173197,865.9850000072973,-0.04939160479852677 +173198,865.9900000072975,-0.0493863671076254 +173199,865.9950000072976,-0.04938111390107258 +173200,866.0000000072977,-0.049375845097123186 +173201,866.0050000072978,-0.04937056061340091 +173202,866.0100000072979,-0.049365260366891775 +173203,866.015000007298,-0.049359944273937556 +173204,866.0200000072981,-0.0493546122502291 +173205,866.0250000072982,-0.049349264210799576 +173206,866.0300000072983,-0.04934390007001765 +173207,866.0350000072984,-0.04933851974158053 +173208,866.0400000072985,-0.04933312313850698 +173209,866.0450000072987,-0.0493277101731302 +173210,866.0500000072988,-0.04932228075709058 +173211,866.0550000072989,-0.04931683480132845 +173212,866.060000007299,-0.04931137221607666 +173213,866.0650000072991,-0.04930589291085308 +173214,866.0700000072992,-0.04930039679445297 +173215,866.0750000072993,-0.04929488377494137 +173216,866.0800000072994,-0.04928935375964521 +173217,866.0850000072995,-0.04928380665514544 +173218,866.0900000072996,-0.049278242367269 +173219,866.0950000072997,-0.04927266080108073 +173220,866.1000000072999,-0.0492670618608751 +173221,866.1050000073,-0.049261445450167876 +173222,866.1100000073001,-0.04925581147168766 +173223,866.1150000073002,-0.049250159827367315 +173224,866.1200000073003,-0.049244490418335285 +173225,866.1250000073004,-0.04923880314490676 +173226,866.1300000073005,-0.04923309790657475 +173227,866.1350000073006,-0.04922737460200104 +173228,866.1400000073007,-0.04922163312900697 +173229,866.1450000073008,-0.049215873384564186 +173230,866.150000007301,-0.0492100952647851 +173231,866.155000007301,-0.0492042986649134 +173232,866.1600000073012,-0.049198483479314326 +173233,866.1650000073013,-0.04919264960146477 +173234,866.1700000073014,-0.049186796923943364 +173235,866.1750000073015,-0.04918092533842027 +173236,866.1800000073016,-0.049175034735647 +173237,866.1850000073017,-0.04916912500544593 +173238,866.1900000073018,-0.049163196036699726 +173239,866.1950000073019,-0.049157247717340674 +173240,866.200000007302,-0.049151279934339785 +173241,866.2050000073021,-0.04914529257369573 +173242,866.2100000073023,-0.0491392855204237 +173243,866.2150000073024,-0.04913325865854402 +173244,866.2200000073025,-0.04912721187107062 +173245,866.2250000073026,-0.04912114503999939 +173246,866.2300000073027,-0.04911505804629627 +173247,866.2350000073028,-0.049108950769885244 +173248,866.2400000073029,-0.04910282308963611 +173249,866.245000007303,-0.049096674883352086 +173250,866.2500000073031,-0.04909050602775728 +173251,866.2550000073032,-0.049084316398483846 +173252,866.2600000073033,-0.04907810587005907 +173253,866.2650000073035,-0.04907187431589223 +173254,866.2700000073036,-0.04906562160826121 +173255,866.2750000073037,-0.049059347618298985 +173256,866.2800000073038,-0.04905305221597984 +173257,866.2850000073039,-0.04904673527010541 +173258,866.290000007304,-0.0490403966482905 +173259,866.2950000073041,-0.04903403621694869 +173260,866.3000000073042,-0.049027653841277746 +173261,866.3050000073043,-0.049021249385244714 +173262,866.3100000073044,-0.049014822711570906 +173263,866.3150000073045,-0.04900837368171657 +173264,866.3200000073047,-0.04900190215586535 +173265,866.3250000073048,-0.04899540799290848 +173266,866.3300000073049,-0.04898889105042881 +173267,866.335000007305,-0.048982351184684435 +173268,866.3400000073051,-0.04897578825059222 +173269,866.3450000073052,-0.048969202101710955 +173270,866.3500000073053,-0.04896259259022431 +173271,866.3550000073054,-0.04895595956692348 +173272,866.3600000073055,-0.04894930288118956 +173273,866.3650000073056,-0.04894262238097564 +173274,866.3700000073057,-0.048935917912788604 +173275,866.3750000073059,-0.04892918932167069 +173276,866.380000007306,-0.04892243645118063 +173277,866.3850000073061,-0.04891565914337461 +173278,866.3900000073062,-0.04890885723878687 +173279,866.3950000073063,-0.04890203057640993 +173280,866.4000000073064,-0.048895178993674605 +173281,866.4050000073065,-0.048888302326429565 +173282,866.4100000073066,-0.04888140040892069 +173283,866.4150000073067,-0.048874473073769936 +173284,866.4200000073068,-0.04886752015195398 +173285,866.425000007307,-0.04886054147278244 +173286,866.4300000073071,-0.04885353686387569 +173287,866.4350000073072,-0.048846506151142416 +173288,866.4400000073073,-0.04883944915875668 +173289,866.4450000073074,-0.04883236570913467 +173290,866.4500000073075,-0.048825255622910985 +173291,866.4550000073076,-0.04881811871891459 +173292,866.4600000073077,-0.04881095481414429 +173293,866.4650000073078,-0.048803763723743815 +173294,866.4700000073079,-0.04879654526097649 +173295,866.475000007308,-0.04878929923719939 +173296,866.4800000073081,-0.048782025461837165 +173297,866.4850000073083,-0.048774723742355273 +173298,866.4900000073084,-0.04876739388423284 +173299,866.4950000073085,-0.048760035690935 +173300,866.5000000073086,-0.04875264896388474 +173301,866.5050000073087,-0.04874523350243427 +173302,866.5100000073088,-0.04873778910383586 +173303,866.5150000073089,-0.04873031556321215 +173304,866.520000007309,-0.048722812673525934 +173305,866.5250000073091,-0.048715280225549405 +173306,866.5300000073092,-0.048707718007832856 +173307,866.5350000073093,-0.04870012580667273 +173308,866.5400000073095,-0.048692503406079196 +173309,866.5450000073096,-0.04868485058774306 +173310,866.5500000073097,-0.04867716713100204 +173311,866.5550000073098,-0.048669452812806546 +173312,866.5600000073099,-0.04866170740768464 +173313,866.56500000731,-0.04865393068770648 +173314,866.5700000073101,-0.04864612242244805 +173315,866.5750000073102,-0.04863828237895419 +173316,866.5800000073103,-0.04863041032170098 +173317,866.5850000073104,-0.048622506012557305 +173318,866.5900000073106,-0.0486145692107458 +173319,866.5950000073107,-0.04860659967280301 +173320,866.6000000073108,-0.04859859715253873 +173321,866.6050000073109,-0.048590561400994624 +173322,866.610000007311,-0.048582492166402 +173323,866.6150000073111,-0.0485743891941388 +173324,866.6200000073112,-0.04856625222668569 +173325,866.6250000073113,-0.04855808100358134 +173326,866.6300000073114,-0.0485498752613768 +173327,866.6350000073115,-0.048541634733588954 +173328,866.6400000073116,-0.048533359150653044 +173329,866.6450000073118,-0.048525048239874295 +173330,866.6500000073119,-0.048516701725378496 +173331,866.655000007312,-0.048508319328061614 +173332,866.6600000073121,-0.04849990076553838 +173333,866.6650000073122,-0.048491445752089836 +173334,866.6700000073123,-0.048482953998609794 +173335,866.6750000073124,-0.04847442521255017 +173336,866.6800000073125,-0.048465859097865244 +173337,866.6850000073126,-0.04845725535495466 +173338,866.6900000073127,-0.04844861368060539 +173339,866.6950000073128,-0.0484399337679323 +173340,866.700000007313,-0.04843121530631757 +173341,866.7050000073131,-0.04842245798134884 +173342,866.7100000073132,-0.04841366147475593 +173343,866.7150000073133,-0.04840482546434636 +173344,866.7200000073134,-0.048395949623939304 +173345,866.7250000073135,-0.04838703362329827 +173346,866.7300000073136,-0.04837807712806223 +173347,866.7350000073137,-0.04836907979967525 +173348,866.7400000073138,-0.0483600412953146 +173349,866.7450000073139,-0.048350961267817245 +173350,866.750000007314,-0.04834183936560477 +173351,866.7550000073142,-0.04833267523260649 +173352,866.7600000073143,-0.04832346850818101 +173353,866.7650000073144,-0.04831421882703587 +173354,866.7700000073145,-0.048304925819145444 +173355,866.7750000073146,-0.04829558910966697 +173356,866.7800000073147,-0.04828620831885458 +173357,866.7850000073148,-0.04827678306197144 +173358,866.7900000073149,-0.048267312949199795 +173359,866.795000007315,-0.048257797585548934 +173360,866.8000000073151,-0.048248236570761015 +173361,866.8050000073152,-0.04823862949921463 +173362,866.8100000073154,-0.04822897595982613 +173363,866.8150000073155,-0.04821927553594854 +173364,866.8200000073156,-0.04820952780526813 +173365,866.8250000073157,-0.04819973233969842 +173366,866.8300000073158,-0.04818988870527162 +173367,866.8350000073159,-0.04817999646202751 +173368,866.840000007316,-0.048170055163899446 +173369,866.8450000073161,-0.0481600643585977 +173370,866.8500000073162,-0.048150023587489786 +173371,866.8550000073163,-0.048139932385477854 +173372,866.8600000073164,-0.048129790280873025 +173373,866.8650000073166,-0.04811959679526648 +173374,866.8700000073167,-0.0481093514433973 +173375,866.8750000073168,-0.04809905373301698 +173376,866.8800000073169,-0.048088703164750335 +173377,866.885000007317,-0.04807829923195289 +173378,866.8900000073171,-0.04806784142056453 +173379,866.8950000073172,-0.04805732920895928 +173380,866.9000000073173,-0.048046762067791154 +173381,866.9050000073174,-0.048036139459835876 +173382,866.9100000073175,-0.04802546083982834 +173383,866.9150000073176,-0.04801472565429575 +173384,866.9200000073178,-0.04800393334138622 +173385,866.9250000073179,-0.047993083330692576 +173386,866.930000007318,-0.04798217504307152 +173387,866.9350000073181,-0.047971207890457584 +173388,866.9400000073182,-0.04796018127567202 +173389,866.9450000073183,-0.04794909459222626 +173390,866.9500000073184,-0.047937947224119884 +173391,866.9550000073185,-0.04792673854563272 +173392,866.9600000073186,-0.04791546792111112 +173393,866.9650000073187,-0.047904134704747935 +173394,866.9700000073188,-0.04789273824035614 +173395,866.975000007319,-0.047881277861135864 +173396,866.9800000073191,-0.04786975288943444 +173397,866.9850000073192,-0.04785816263649938 +173398,866.9900000073193,-0.04784650640222391 +173399,866.9950000073194,-0.04783478347488487 +173400,867.0000000073195,-0.04782299313087253 +173401,867.0050000073196,-0.047811134634412174 +173402,867.0100000073197,-0.047799207237277104 +173403,867.0150000073198,-0.047787210178492606 +173404,867.0200000073199,-0.047775142684030686 +173405,867.02500000732,-0.047763003966495056 +173406,867.0300000073202,-0.047750793224796126 +173407,867.0350000073203,-0.047738509643815485 +173408,867.0400000073204,-0.04772615239405944 +173409,867.0450000073205,-0.04771372063130129 +173410,867.0500000073206,-0.04770121349621171 +173411,867.0550000073207,-0.04768863011397678 +173412,867.0600000073208,-0.04767596959390328 +173413,867.0650000073209,-0.04766323102901045 +173414,867.070000007321,-0.04765041349560789 +173415,867.0750000073211,-0.04763751605285881 +173416,867.0800000073212,-0.04762453774232805 +173417,867.0850000073214,-0.047611477587514175 +173418,867.0900000073215,-0.047598334593365065 +173419,867.0950000073216,-0.04758510774577597 +173420,867.1000000073217,-0.04757179601106948 +173421,867.1050000073218,-0.04755839833545647 +173422,867.1100000073219,-0.047544913644477105 +173423,867.115000007322,-0.04753134084242109 +173424,867.1200000073221,-0.04751767881172594 +173425,867.1250000073222,-0.04750392641235248 +173426,867.1300000073223,-0.047490082481136266 +173427,867.1350000073224,-0.04747614583111382 +173428,867.1400000073226,-0.04746211525082243 +173429,867.1450000073227,-0.04744798950357212 +173430,867.1500000073228,-0.04743376732668845 +173431,867.1550000073229,-0.047419447430724584 +173432,867.160000007323,-0.04740502849864105 +173433,867.1650000073231,-0.04739050918495145 +173434,867.1700000073232,-0.047375888114832385 +173435,867.1750000073233,-0.04736116388319553 +173436,867.1800000073234,-0.0473463350537199 +173437,867.1850000073235,-0.04733140015784205 +173438,867.1900000073236,-0.047316357693701856 +173439,867.1950000073238,-0.04730120612504137 +173440,867.2000000073239,-0.04728594388005399 +173441,867.205000007324,-0.047270569350181146 +173442,867.2100000073241,-0.0472550808888533 +173443,867.2150000073242,-0.047239476810171994 +173444,867.2200000073243,-0.047223755387529355 +173445,867.2250000073244,-0.04720791485216118 +173446,867.2300000073245,-0.047191953391629494 +173447,867.2350000073246,-0.04717586914823015 +173448,867.2400000073247,-0.0471596602173205 +173449,867.2450000073248,-0.04714332464556221 +173450,867.250000007325,-0.04712686042907336 +173451,867.2550000073251,-0.047110265511483874 +173452,867.2600000073252,-0.0470935377818877 +173453,867.2650000073253,-0.04707667507268455 +173454,867.2700000073254,-0.04705967515730355 +173455,867.2750000073255,-0.047042535747800235 +173456,867.2800000073256,-0.04702525449231791 +173457,867.2850000073257,-0.0470078289724032 +173458,867.2900000073258,-0.04699025670016503 +173459,867.2950000073259,-0.04697253511526502 +173460,867.300000007326,-0.0469546615817264 +173461,867.3050000073262,-0.046936633384546914 +173462,867.3100000073263,-0.04691844772610034 +173463,867.3150000073264,-0.04690010172230908 +173464,867.3200000073265,-0.046881592398569046 +173465,867.3250000073266,-0.04686291668540582 +173466,867.3300000073267,-0.04684407141383894 +173467,867.3350000073268,-0.04682505331042874 +173468,867.3400000073269,-0.04680585899197732 +173469,867.345000007327,-0.04678648495985215 +173470,867.3500000073271,-0.0467669275938972 +173471,867.3550000073272,-0.046747183145892345 +173472,867.3600000073274,-0.04672724773251751 +173473,867.3650000073275,-0.046707117327772385 +173474,867.3700000073276,-0.04668678775479678 +173475,867.3750000073277,-0.04666625467702981 +173476,867.3800000073278,-0.04664551358863814 +173477,867.3850000073279,-0.04662455980413447 +173478,867.390000007328,-0.04660338844709694 +173479,867.3950000073281,-0.046581994437888 +173480,867.4000000073282,-0.046560372480257184 +173481,867.4050000073283,-0.04653851704669574 +173482,867.4100000073284,-0.0465164223623919 +173483,867.4150000073286,-0.04649408238761318 +173484,867.4200000073287,-0.046471490798315335 +173485,867.4250000073288,-0.04644864096474694 +173486,867.4300000073289,-0.04642552592778107 +173487,867.435000007329,-0.04640213837266239 +173488,867.4400000073291,-0.04637847059980566 +173489,867.4450000073292,-0.046354514492219626 +173490,867.4500000073293,-0.04633026147905609 +173491,867.4550000073294,-0.04630570249469524 +173492,867.4600000073295,-0.04628082793267115 +173493,867.4650000073296,-0.04625562759361353 +173494,867.4700000073298,-0.04623009062622711 +173495,867.4750000073299,-0.04620420546014525 +173496,867.48000000733,-0.04617795972927166 +173497,867.4850000073301,-0.04615134018395942 +173498,867.4900000073302,-0.04612433259006135 +173499,867.4950000073303,-0.04609692161251532 +173500,867.5000000073304,-0.04606909068069715 +173501,867.5050000073305,-0.0460408218322803 +173502,867.5100000073306,-0.04601209553178932 +173503,867.5150000073307,-0.04598289045943402 +173504,867.5200000073309,-0.0459531832651901 +173505,867.525000007331,-0.04592294828249419 +173506,867.5300000073311,-0.045892157195424256 +173507,867.5350000073312,-0.045860778652952267 +173508,867.5400000073313,-0.04582877782394477 +173509,867.5450000073314,-0.045796115887250306 +173510,867.5500000073315,-0.04576274945268171 +173511,867.5550000073316,-0.04572862991120758 +173512,867.5600000073317,-0.04569370271639717 +173513,867.5650000073318,-0.04565790660422474 +173514,867.5700000073319,-0.045621172764738115 +173515,867.575000007332,-0.04558342398669308 +173516,867.5800000073322,-0.04554457380453341 +173517,867.5850000073323,-0.04550452568455286 +173518,867.5900000073324,-0.04546317229049082 +173519,867.5950000073325,-0.045420394863568275 +173520,867.6000000073326,-0.0453760627348421 +173521,867.6050000073327,-0.04533003296179571 +173522,867.6100000073328,-0.04528215005897651 +173523,867.6150000073329,-0.04523224579386943 +173524,867.620000007333,-0.04518013906132421 +173525,867.6250000073331,-0.04512563593711177 +173526,867.6300000073333,-0.045068530130233694 +173527,867.6350000073334,-0.04500860417447779 +173528,867.6400000073335,-0.0449456317758013 +173529,867.6450000073336,-0.04487938169875409 +173530,867.6500000073337,-0.044809623364525826 +173531,867.6550000073338,-0.04473613392371245 +173532,867.6600000073339,-0.04465870604410137 +173533,867.665000007334,-0.04457715521368757 +173534,867.6700000073341,-0.04449132521091193 +173535,867.6750000073342,-0.04440109062746426 +173536,867.6800000073343,-0.044306355867425075 +173537,867.6850000073345,-0.044207050711230225 +173538,867.6900000073346,-0.04410312313126224 +173539,867.6950000073347,-0.043994530427693766 +173540,867.7000000073348,-0.04388122984928628 +173541,867.7050000073349,-0.04376316970561564 +173542,867.710000007335,-0.04364028167240898 +173543,867.7150000073351,-0.043512474664855263 +173544,867.7200000073352,-0.04337963039415067 +173545,867.7250000073353,-0.04324160056657054 +173546,867.7300000073354,-0.04309820562629472 +173547,867.7350000073355,-0.04294923495471054 +173548,867.7400000073357,-0.042794448484324135 +173549,867.7450000073358,-0.0426335797302479 +173550,867.7500000073359,-0.0424663402580853 +173551,867.755000007336,-0.042292425576365325 +173552,867.7600000073361,-0.0421115223628386 +173553,867.7650000073362,-0.041923316822590415 +173554,867.7700000073363,-0.04172750385833937 +173555,867.7750000073364,-0.041523796632585985 +173556,867.7800000073365,-0.04131193602532508 +173557,867.7850000073366,-0.041091699432142775 +173558,867.7900000073367,-0.04086290829434576 +173559,867.7950000073369,-0.04062543370392279 +173560,867.800000007337,-0.04037919939434892 +173561,867.8050000073371,-0.04012418143490779 +173562,867.8100000073372,-0.039860404015926935 +173563,867.8150000073373,-0.03958793087385413 +173564,867.8200000073374,-0.03930685219046898 +173565,867.8250000073375,-0.03901726722615603 +173566,867.8300000073376,-0.03871926347767461 +173567,867.8350000073377,-0.038412893676260114 +173568,867.8400000073378,-0.038098152304288375 +173569,867.845000007338,-0.03777495337559456 +173570,867.850000007338,-0.037443110959913324 +173571,867.8550000073382,-0.03710232341549488 +173572,867.8600000073383,-0.03675216167988554 +173573,867.8650000073384,-0.03639206141564612 +173574,867.8700000073385,-0.036021318418266994 +173575,867.8750000073386,-0.035639086488614774 +173576,867.8800000073387,-0.03524437690403035 +173577,867.8850000073388,-0.03483605861884508 +173578,867.8900000073389,-0.034412858346303137 +173579,867.895000007339,-0.03397335974431713 +173580,867.9000000073391,-0.03351600111951866 +173581,867.9050000073393,-0.03303907143547344 +173582,867.9100000073394,-0.03254070494052515 +173583,867.9150000073395,-0.03201887529238089 +173584,867.9200000073396,-0.031471390438326065 +173585,867.9250000073397,-0.030895889474995473 +173586,867.9300000073398,-0.03028984211052186 +173587,867.9350000073399,-0.02965055027090991 +173588,867.94000000734,-0.028975150245902512 +173589,867.9450000073401,-0.02826061320967135 +173590,867.9500000073402,-0.027503742571722285 +173591,867.9550000073403,-0.026701168605813338 +173592,867.9600000073405,-0.02584934380866787 +173593,867.9650000073406,-0.024944545675657716 +173594,867.9700000073407,-0.023982896182137878 +173595,867.9750000073408,-0.022960408666852027 +173596,867.9800000073409,-0.021873073051951034 +173597,867.985000007341,-0.020716989968310187 +173598,867.9900000073411,-0.01948856399607616 +173599,867.9950000073412,-0.018184765704444758 +173600,868.0000000073413,-0.01680346980659198 +173601,868.0050000073414,-0.015343869430166357 +173602,868.0100000073415,-0.013806951023937992 +173603,868.0150000073417,-0.01219598977490965 +173604,868.0200000073418,-0.010516995144241715 +173605,868.0250000073419,-0.008779009315980791 +173606,868.030000007342,-0.00699415105288939 +173607,868.0350000073421,-0.005177316413293543 +173608,868.0400000073422,-0.0033455021777658517 +173609,868.0450000073423,-0.0015168008720744374 +173610,868.0500000073424,0.00029079491867182485 +173611,868.0550000073425,0.002060580297780536 +173612,868.0600000073426,0.0037781147906143426 +173613,868.0650000073427,0.005431842650956755 +173614,868.0700000073429,0.007013307663535825 +173615,868.075000007343,0.008517009091143895 +173616,868.0800000073431,0.009940007733907059 +173617,868.0850000073432,0.011281408441949968 +173618,868.0900000073433,0.012541826808013638 +173619,868.0950000073434,0.013722911621734194 +173620,868.1000000073435,0.014826957771380234 +173621,868.1050000073436,0.01585661623674788 +173622,868.1100000073437,0.016814691146521562 +173623,868.1150000073438,0.017704006758988824 +173624,868.120000007344,0.01852732635085727 +173625,868.125000007344,0.019287307318666444 +173626,868.1300000073442,0.019986480208457225 +173627,868.1350000073443,0.020627242729533497 +173628,868.1400000073444,0.02121186258508225 +173629,868.1450000073445,0.02174248505750307 +173630,868.1500000073446,0.022221142787457033 +173631,868.1550000073447,0.022649766207887986 +173632,868.1600000073448,0.023030193763079097 +173633,868.1650000073449,0.023364181463286744 +173634,868.170000007345,0.023653411578305472 +173635,868.1750000073451,0.023899500417158707 +173636,868.1800000073453,0.024104005216961877 +173637,868.1850000073454,0.024268430199383993 +173638,868.1900000073455,0.024394231865766593 +173639,868.1950000073456,0.02448282360276747 +173640,868.2000000073457,0.024535579665764237 +173641,868.2050000073458,0.024553838600693993 +173642,868.2100000073459,0.024538906158307464 +173643,868.215000007346,0.024492057748782263 +173644,868.2200000073461,0.024414540479552393 +173645,868.2250000073462,0.02430757481509341 +173646,868.2300000073463,0.024172355894166535 +173647,868.2350000073465,0.024010054537539974 +173648,868.2400000073466,0.023821817977336873 +173649,868.2450000073467,0.023608770337773578 +173650,868.2500000073468,0.023372012896031746 +173651,868.2550000073469,0.023112624151239824 +173652,868.260000007347,0.02283165972892677 +173653,868.2650000073471,0.02253015214776081 +173654,868.2700000073472,0.022209110474820784 +173655,868.2750000073473,0.021869519894995273 +173656,868.2800000073474,0.021512341219306966 +173657,868.2850000073475,0.021138510355972487 +173658,868.2900000073477,0.020748937766792496 +173659,868.2950000073478,0.020344507930010303 +173660,868.3000000073479,0.01992607882906751 +173661,868.305000007348,0.019494481484738518 +173662,868.3100000073481,0.01905051954596202 +173663,868.3150000073482,0.018594968952347284 +173664,868.3200000073483,0.018128577678866768 +173665,868.3250000073484,0.017652065570710987 +173666,868.3300000073485,0.017166124273745392 +173667,868.3350000073486,0.01667141726353746 +173668,868.3400000073487,0.016168579973579584 +173669,868.3450000073489,0.01565822002117943 +173670,868.350000007349,0.015140917527571322 +173671,868.3550000073491,0.014617225527157433 +173672,868.3600000073492,0.01408767045943495 +173673,868.3650000073493,0.013552752736119077 +173674,868.3700000073494,0.013012947375220064 +173675,868.3750000073495,0.012468704693365059 +173676,868.3800000073496,0.011920451047446093 +173677,868.3850000073497,0.011368589616691448 +173678,868.3900000073498,0.010813501216469606 +173679,868.39500000735,0.010255545135500782 +173680,868.4000000073501,0.009695059988643296 +173681,868.4050000073502,0.009132364578003177 +173682,868.4100000073503,0.008567758755756414 +173683,868.4150000073504,0.008001524282752375 +173684,868.4200000073505,0.007433925677655582 +173685,868.4250000073506,0.006865211052070874 +173686,868.4300000073507,0.0062956129277624145 +173687,868.4350000073508,0.005725349032715375 +173688,868.4400000073509,0.005154623073386666 +173689,868.445000007351,0.004583625481047823 +173690,868.4500000073512,0.004012534130631089 +173691,868.4550000073513,0.0034415150309515534 +173692,868.4600000073514,0.0028707229855887703 +173693,868.4650000073515,0.0023003022240780436 +173694,868.4700000073516,0.0017303870033814307 +173695,868.4750000073517,0.001161102179884825 +173696,868.4800000073518,0.0005925637524071164 +173697,868.4850000073519,2.4879376907861685e-05 +173698,868.490000007352,-0.000541851146250103 +173699,868.4950000073521,-0.0011075354114872197 +173700,868.5000000073522,-0.0016720879725325784 +173701,868.5050000073524,-0.0022354299310867382 +173702,868.5100000073525,-0.002797488548348735 +173703,868.5150000073526,-0.0033581968780792373 +173704,868.5200000073527,-0.003917493419832489 +173705,868.5250000073528,-0.004475321790962436 +173706,868.5300000073529,-0.005031630415992492 +173707,868.535000007353,-0.005586372231934636 +173708,868.5400000073531,-0.006139504408144731 +173709,868.5450000073532,-0.0066909880793159715 +173710,868.5500000073533,-0.007240788090231167 +173711,868.5550000073534,-0.007788872750923748 +173712,868.5600000073536,-0.008335213600932725 +173713,868.5650000073537,-0.008879785181380679 +173714,868.5700000073538,-0.009422564813653705 +173715,868.5750000073539,-0.009963532383519741 +173716,868.580000007354,-0.01050267012958563 +173717,868.5850000073541,-0.011039962435064499 +173718,868.5900000073542,-0.011575395621900584 +173719,868.5950000073543,-0.012108957746384725 +173720,868.6000000073544,-0.01264063839548134 +173721,868.6050000073545,-0.013170428483187242 +173722,868.6100000073546,-0.013698320046347724 +173723,868.6150000073548,-0.014224306039468317 +173724,868.6200000073549,-0.014748380128185143 +173725,868.625000007355,-0.015270536481190554 +173726,868.6300000073551,-0.015790769560555057 +173727,868.6350000073552,-0.01630907391054437 +173728,868.6400000073553,-0.016825443945197385 +173729,868.6450000073554,-0.017339873735112876 +173730,868.6500000073555,-0.01785235679407875 +173731,868.6550000073556,-0.018362885866379138 +173732,868.6600000073557,-0.018871452715813922 +173733,868.6650000073558,-0.019378047917671056 +173734,868.670000007356,-0.019882660655091755 +173735,868.6750000073561,-0.02038527852146244 +173736,868.6800000073562,-0.020885887330643692 +173737,868.6850000073563,-0.021384470937006662 +173738,868.6900000073564,-0.02188101106737789 +173739,868.6950000073565,-0.022375487167092308 +173740,868.7000000073566,-0.022867876262414995 +173741,868.7050000073567,-0.023358152841605653 +173742,868.7100000073568,-0.02384628875686842 +173743,868.7150000073569,-0.024332253149339948 +173744,868.720000007357,-0.024816012399127188 +173745,868.7250000073572,-0.02529753010220773 +173746,868.7300000073573,-0.025776767075746734 +173747,868.7350000073574,-0.02625368139307848 +173748,868.7400000073575,-0.026728228449236825 +173749,868.7450000073576,-0.027200361057516772 +173750,868.7500000073577,-0.027670029577107017 +173751,868.7550000073578,-0.028137182071364203 +173752,868.7600000073579,-0.028601764495812632 +173753,868.765000007358,-0.02906372091446077 +173754,868.7700000073581,-0.029522993742538816 +173755,868.7750000073582,-0.029979524013294095 +173756,868.7800000073584,-0.030433251666044464 +173757,868.7850000073585,-0.030884115852297014 +173758,868.7900000073586,-0.031332055256401474 +173759,868.7950000073587,-0.03177700842693379 +173760,868.8000000073588,-0.03221891411480487 +173761,868.8050000073589,-0.032657711613967626 +173762,868.810000007359,-0.0330933411005563 +173763,868.8150000073591,-0.03352574396633678 +173764,868.8200000073592,-0.033954863142474895 +173765,868.8250000073593,-0.03438064340983594 +173766,868.8300000073594,-0.034803031692309055 +173767,868.8350000073596,-0.035221977329994596 +173768,868.8400000073597,-0.03563743232949184 +173769,868.8450000073598,-0.036049351588967014 +173770,868.8500000073599,-0.03645769309615498 +173771,868.85500000736,-0.03686241809793884 +173772,868.8600000073601,-0.037263491240648254 +173773,868.8650000073602,-0.03766088068070512 +173774,868.8700000073603,-0.03805455816571557 +173775,868.8750000073604,-0.03844449908654652 +173776,868.8800000073605,-0.03883068250132771 +173777,868.8850000073606,-0.03921309113267641 +173778,868.8900000073608,-0.03959171133974861 +173779,868.8950000073609,-0.03996653306697331 +173780,868.900000007361,-0.04033754977152416 +173781,868.9050000073611,-0.040704758331725786 +173782,868.9100000073612,-0.04106815893868139 +173783,868.9150000073613,-0.04142775497344878 +173784,868.9200000073614,-0.04178355287208542 +173785,868.9250000073615,-0.04213556198083668 +173786,868.9300000073616,-0.042483794403659125 +173787,868.9350000073617,-0.04282826484415927 +173788,868.9400000073618,-0.0431689904438926 +173789,868.945000007362,-0.04350599061881504 +173790,868.9500000073621,-0.0438392868955131 +173791,868.9550000073622,-0.044168902748666 +173792,868.9600000073623,-0.04449486344101777 +173793,868.9650000073624,-0.04481719586696225 +173794,868.9700000073625,-0.04513592840067432 +173795,868.9750000073626,-0.04545109074955754 +173796,868.9800000073627,-0.04576271381362542 +173797,868.9850000073628,-0.046070829551291034 +173798,868.9900000073629,-0.046375470851909725 +173799,868.995000007363,-0.04667667141530231 +173800,869.0000000073632,-0.046974465638381986 +173801,869.0050000073633,-0.047268888508916716 +173802,869.0100000073634,-0.047559975506380345 +173803,869.0150000073635,-0.047847762509779 +173804,869.0200000073636,-0.04813228571228365 +173805,869.0250000073637,-0.04841358154245539 +173806,869.0300000073638,-0.04869168659181377 +173807,869.0350000073639,-0.048966637548472365 +173808,869.040000007364,-0.049238471136546044 +173809,869.0450000073641,-0.049507224061021975 +173810,869.0500000073642,-0.04977293295777939 +173811,869.0550000073644,-0.05003563434844152 +173812,869.0600000073645,-0.05029536459974467 +173813,869.0650000073646,-0.050552159887115436 +173814,869.0700000073647,-0.050806056162155035 +173815,869.0750000073648,-0.05105708912373997 +173816,869.0800000073649,-0.051305294192460625 +173817,869.085000007365,-0.05155070648813185 +173818,869.0900000073651,-0.0517933608101243 +173819,869.0950000073652,-0.05203329162027883 +173820,869.1000000073653,-0.05227053302818156 +173821,869.1050000073654,-0.05250511877859103 +173822,869.1100000073656,-0.052737082240823484 +173823,869.1150000073657,-0.05296645639991623 +173824,869.1200000073658,-0.053193273849402076 +173825,869.1250000073659,-0.05341756678554108 +173826,869.130000007366,-0.053639367002867505 +173827,869.1350000073661,-0.05385870589092191 +173828,869.1400000073662,-0.0540756144320489 +173829,869.1450000073663,-0.05429012320015083 +173830,869.1500000073664,-0.05450226236029808 +173831,869.1550000073665,-0.05471206166910412 +173832,869.1600000073666,-0.054919550475782786 +173833,869.1650000073668,-0.05512475772381194 +173834,869.1700000073669,-0.055327711953134864 +173835,869.175000007367,-0.05552844130283697 +173836,869.1800000073671,-0.055726973514241294 +173837,869.1850000073672,-0.05592333593437145 +173838,869.1900000073673,-0.05611755551973546 +173839,869.1950000073674,-0.05630965884038855 +173840,869.2000000073675,-0.056499672084236736 +173841,869.2050000073676,-0.05668762106154677 +173842,869.2100000073677,-0.05687353120963138 +173843,869.2150000073678,-0.05705742759768181 +173844,869.220000007368,-0.0572393349317219 +173845,869.2250000073681,-0.05741927755966136 +173846,869.2300000073682,-0.05759727947642712 +173847,869.2350000073683,-0.057773364329154434 +173848,869.2400000073684,-0.05794755542242078 +173849,869.2450000073685,-0.05811987572350771 +173850,869.2500000073686,-0.058290347867676805 +173851,869.2550000073687,-0.05845899416344784 +173852,869.2600000073688,-0.05862583659786806 +173853,869.2650000073689,-0.05879089684176283 +173854,869.270000007369,-0.058954196254959006 +173855,869.2750000073692,-0.059115755891473075 +173856,869.2800000073693,-0.05927559650465737 +173857,869.2850000073694,-0.059433738552298 +173858,869.2900000073695,-0.05959020220165914 +173859,869.2950000073696,-0.05974500733446897 +173860,869.3000000073697,-0.059898173551843015 +173861,869.3050000073698,-0.060049720179141244 +173862,869.3100000073699,-0.06019966627075581 +173863,869.31500000737,-0.06034803061482677 +173864,869.3200000073701,-0.06049483173788346 +173865,869.3250000073702,-0.06064008790940965 +173866,869.3300000073704,-0.06078381714633093 +173867,869.3350000073705,-0.060926037217423186 +173868,869.3400000073706,-0.061066765647640964 +173869,869.3450000073707,-0.06120601972236538 +173870,869.3500000073708,-0.06134381649157088 +173871,869.3550000073709,-0.061480172773910685 +173872,869.360000007371,-0.06161510516072107 +173873,869.3650000073711,-0.06174863001994433 +173874,869.3700000073712,-0.061880763499971 +173875,869.3750000073713,-0.06201152153340176 +173876,869.3800000073715,-0.06214091984072958 +173877,869.3850000073716,-0.06226897393394275 +173878,869.3900000073717,-0.06239569912004991 +173879,869.3950000073718,-0.06252111050452776 +173880,869.4000000073719,-0.06264522299469258 +173881,869.405000007372,-0.06276805130299666 +173882,869.4100000073721,-0.06288960995025088 +173883,869.4150000073722,-0.0630099132687745 +173884,869.4200000073723,-0.06312897540547371 +173885,869.4250000073724,-0.06324681032485004 +173886,869.4300000073725,-0.06336343181194014 +173887,869.4350000073727,-0.06347885347518835 +173888,869.4400000073728,-0.06359308874925347 +173889,869.4450000073729,-0.06370615089775114 +173890,869.450000007373,-0.06381805301593342 +173891,869.4550000073731,-0.06392880803330699 +173892,869.4600000073732,-0.06403842871619153 +173893,869.4650000073733,-0.06414692767021976 +173894,869.4700000073734,-0.06425431734278053 +173895,869.4750000073735,-0.06436061002540677 +173896,869.4800000073736,-0.0644658178561095 +173897,869.4850000073737,-0.06456995282165946 +173898,869.4900000073739,-0.06467302675981802 +173899,869.495000007374,-0.06477505136151857 +173900,869.5000000073741,-0.06487603817300001 +173901,869.5050000073742,-0.06497599859789377 +173902,869.5100000073743,-0.06507494389926552 +173903,869.5150000073744,-0.06517288520161349 +173904,869.5200000073745,-0.065269833492824 +173905,869.5250000073746,-0.06536579962608635 +173906,869.5300000073747,-0.06546079432176763 +173907,869.5350000073748,-0.06555482816924922 +173908,869.5400000073749,-0.06564791162872613 +173909,869.545000007375,-0.0657400550329702 +173910,869.5500000073752,-0.06583126858905852 +173911,869.5550000073753,-0.06592156238006816 +173912,869.5600000073754,-0.06601094636673832 +173913,869.5650000073755,-0.06609943038910114 +173914,869.5700000073756,-0.06618702416808182 +173915,869.5750000073757,-0.06627373730706952 +173916,869.5800000073758,-0.0663595792934598 +173917,869.5850000073759,-0.06644455950016948 +173918,869.590000007376,-0.06652868718712503 +173919,869.5950000073761,-0.06661197150272523 +173920,869.6000000073763,-0.06669442148527896 +173921,869.6050000073764,-0.06677604606441898 +173922,869.6100000073765,-0.06685685406249255 +173923,869.6150000073766,-0.06693685419592936 +173924,869.6200000073767,-0.06701605507658792 +173925,869.6250000073768,-0.0670944652130807 +173926,869.6300000073769,-0.06717209301207891 +173927,869.635000007377,-0.0672489467795975 +173928,869.6400000073771,-0.06732503472226098 +173929,869.6450000073772,-0.06740036494855053 +173930,869.6500000073773,-0.06747494547003317 +173931,869.6550000073775,-0.06754878420257333 +173932,869.6600000073776,-0.06762188896752734 +173933,869.6650000073777,-0.06769426749292143 +173934,869.6700000073778,-0.06776592741461351 +173935,869.6750000073779,-0.06783687627743934 +173936,869.680000007378,-0.06790712153634332 +173937,869.6850000073781,-0.06797667055749437 +173938,869.6900000073782,-0.06804553061938746 +173939,869.6950000073783,-0.0681137089139306 +173940,869.7000000073784,-0.06818121254751826 +173941,869.7050000073785,-0.06824804854209103 +173942,869.7100000073787,-0.06831422383618216 +173943,869.7150000073788,-0.06837974528595092 +173944,869.7200000073789,-0.06844461966620344 +173945,869.725000007379,-0.06850885367140089 +173946,869.7300000073791,-0.0685724539166555 +173947,869.7350000073792,-0.06863542693871458 +173948,869.7400000073793,-0.06869777919693258 +173949,869.7450000073794,-0.06875951707423174 +173950,869.7500000073795,-0.0688206468780511 +173951,869.7550000073796,-0.06888117484128449 +173952,869.7600000073797,-0.0689411071232072 +173953,869.7650000073799,-0.06900044981039187 +173954,869.77000000738,-0.06905920891761369 +173955,869.7750000073801,-0.06911739038874479 +173956,869.7800000073802,-0.06917500009763825 +173957,869.7850000073803,-0.06923204384900183 +173958,869.7900000073804,-0.06928852737926136 +173959,869.7950000073805,-0.06934445635741407 +173960,869.8000000073806,-0.06939983638587204 +173961,869.8050000073807,-0.06945467300129553 +173962,869.8100000073808,-0.06950897167541686 +173963,869.815000007381,-0.0695627378158544 +173964,869.820000007381,-0.06961597676691703 +173965,869.8250000073812,-0.0696686938103993 +173966,869.8300000073813,-0.06972089416636695 +173967,869.8350000073814,-0.0697725829939334 +173968,869.8400000073815,-0.0698237653920269 +173969,869.8450000073816,-0.06987444640014862 +173970,869.8500000073817,-0.06992463099912169 +173971,869.8550000073818,-0.0699743241118314 +173972,869.8600000073819,-0.07002353060395637 +173973,869.865000007382,-0.07007225528469119 +173974,869.8700000073821,-0.07012050290746 +173975,869.8750000073823,-0.07016827817062188 +173976,869.8800000073824,-0.07021558571816736 +173977,869.8850000073825,-0.07026243014040663 +173978,869.8900000073826,-0.07030881597464929 +173979,869.8950000073827,-0.07035474770587581 +173980,869.9000000073828,-0.07040022976740076 +173981,869.9050000073829,-0.07044526654152783 +173982,869.910000007383,-0.07048986236019684 +173983,869.9150000073831,-0.07053402150562259 +173984,869.9200000073832,-0.07057774821092593 +173985,869.9250000073833,-0.07062104666075678 +173986,869.9300000073835,-0.07066392099190953 +173987,869.9350000073836,-0.07070637529393059 +173988,869.9400000073837,-0.0707484136097183 +173989,869.9450000073838,-0.07079003993611531 +173990,869.9500000073839,-0.0708312582244934 +173991,869.955000007384,-0.0708720723813309 +173992,869.9600000073841,-0.07091248626878278 +173993,869.9650000073842,-0.0709525037052433 +173994,869.9700000073843,-0.07099212846590161 +173995,869.9750000073844,-0.07103136428329024 +173996,869.9800000073845,-0.07107021484782626 +173997,869.9850000073847,-0.07110868380834577 +173998,869.9900000073848,-0.07114677477263122 +173999,869.9950000073849,-0.07118449130793202 +174000,870.000000007385,-0.07122183694147835 +174001,870.0050000073851,-0.07125881516098817 +174002,870.0100000073852,-0.07129542941516774 +174003,870.0150000073853,-0.07133168311420558 +174004,870.0200000073854,-0.07136757963025973 +174005,870.0250000073855,-0.07140312229793891 +174006,870.0300000073856,-0.07143831441477713 +174007,870.0350000073857,-0.07147315924170208 +174008,870.0400000073859,-0.07150766000349737 +174009,870.045000007386,-0.0715418198892586 +174010,870.0500000073861,-0.07157564205284346 +174011,870.0550000073862,-0.07160912961331568 +174012,870.0600000073863,-0.0716422856553833 +174013,870.0650000073864,-0.07167511322983092 +174014,870.0700000073865,-0.07170761535394628 +174015,870.0750000073866,-0.07173979501194114 +174016,870.0800000073867,-0.07177165515536649 +174017,870.0850000073868,-0.07180319870352224 +174018,870.090000007387,-0.0718344285438614 +174019,870.0950000073871,-0.07186534753238892 +174020,870.1000000073872,-0.07189595849405503 +174021,870.1050000073873,-0.07192626422314344 +174022,870.1100000073874,-0.07195626748365429 +174023,870.1150000073875,-0.0719859710096819 +174024,870.1200000073876,-0.07201537750578754 +174025,870.1250000073877,-0.07204448964736705 +174026,870.1300000073878,-0.07207331008101361 +174027,870.1350000073879,-0.07210184142487568 +174028,870.140000007388,-0.0721300862690099 +174029,870.1450000073881,-0.07215804717572952 +174030,870.1500000073883,-0.07218572667994792 +174031,870.1550000073884,-0.07221312728951759 +174032,870.1600000073885,-0.07224025148556454 +174033,870.1650000073886,-0.0722671017228182 +174034,870.1700000073887,-0.07229368042993682 +174035,870.1750000073888,-0.07231999000982857 +174036,870.1800000073889,-0.07234603283996832 +174037,870.185000007389,-0.07237181127271002 +174038,870.1900000073891,-0.07239732763559503 +174039,870.1950000073892,-0.07242258423165622 +174040,870.2000000073893,-0.07244758333971794 +174041,870.2050000073895,-0.07247232721469207 +174042,870.2100000073896,-0.07249681808787 +174043,870.2150000073897,-0.07252105816721068 +174044,870.2200000073898,-0.07254504963762483 +174045,870.2250000073899,-0.07256879466125539 +174046,870.23000000739,-0.07259229537775402 +174047,870.2350000073901,-0.07261555390455417 +174048,870.2400000073902,-0.07263857233714015 +174049,870.2450000073903,-0.07266135274931293 +174050,870.2500000073904,-0.07268389719345214 +174051,870.2550000073905,-0.07270620770077466 +174052,870.2600000073907,-0.07272828628158977 +174053,870.2650000073908,-0.0727501349255508 +174054,870.2700000073909,-0.07277175560190353 +174055,870.275000007391,-0.07279315025973125 +174056,870.2800000073911,-0.07281432082819642 +174057,870.2850000073912,-0.0728352692167793 +174058,870.2900000073913,-0.07285599731551332 +174059,870.2950000073914,-0.07287650699521729 +174060,870.3000000073915,-0.07289680010772455 +174061,870.3050000073916,-0.0729168784861091 +174062,870.3100000073917,-0.07293674394490873 +174063,870.3150000073919,-0.07295639828034513 +174064,870.320000007392,-0.07297584327054116 +174065,870.3250000073921,-0.07299508067573522 +174066,870.3300000073922,-0.07301411223849277 +174067,870.3350000073923,-0.07303293968391508 +174068,870.3400000073924,-0.07305156471984522 +174069,870.3450000073925,-0.07306998903707135 +174070,870.3500000073926,-0.07308821430952732 +174071,870.3550000073927,-0.0731062421944906 +174072,870.3600000073928,-0.0731240743327777 +174073,870.365000007393,-0.07314171234893695 +174074,870.3700000073931,-0.07315915785143874 +174075,870.3750000073932,-0.07317641243286337 +174076,870.3800000073933,-0.07319347767008633 +174077,870.3850000073934,-0.07321035512446128 +174078,870.3900000073935,-0.07322704634200046 +174079,870.3950000073936,-0.073243552853553 +174080,870.4000000073937,-0.07325987617498064 +174081,870.4050000073938,-0.07327601780733142 +174082,870.4100000073939,-0.0732919792370109 +174083,870.415000007394,-0.07330776193595129 +174084,870.4200000073942,-0.07332336736177836 +174085,870.4250000073943,-0.07333879695797613 +174086,870.4300000073944,-0.07335405215404958 +174087,870.4350000073945,-0.07336913436568505 +174088,870.4400000073946,-0.07338404499490878 +174089,870.4450000073947,-0.07339878543024321 +174090,870.4500000073948,-0.07341335704686146 +174091,870.4550000073949,-0.07342776120673968 +174092,870.460000007395,-0.07344199925880752 +174093,870.4650000073951,-0.07345607253909668 +174094,870.4700000073952,-0.07346998237088743 +174095,870.4750000073954,-0.07348373006485348 +174096,870.4800000073955,-0.07349731691920476 +174097,870.4850000073956,-0.0735107442198286 +174098,870.4900000073957,-0.0735240132404289 +174099,870.4950000073958,-0.07353712524266372 +174100,870.5000000073959,-0.07355008147628095 +174101,870.505000007396,-0.07356288317925243 +174102,870.5100000073961,-0.0735755315779062 +174103,870.5150000073962,-0.07358802788705716 +174104,870.5200000073963,-0.07360037331013616 +174105,870.5250000073964,-0.07361256903931726 +174106,870.5300000073966,-0.07362461625564355 +174107,870.5350000073967,-0.07363651612915129 +174108,870.5400000073968,-0.07364826981899257 +174109,870.5450000073969,-0.07365987847355637 +174110,870.550000007397,-0.07367134323058809 +174111,870.5550000073971,-0.07368266521730758 +174112,870.5600000073972,-0.07369384555052581 +174113,870.5650000073973,-0.07370488533675984 +174114,870.5700000073974,-0.07371578567234664 +174115,870.5750000073975,-0.07372654764355523 +174116,870.5800000073976,-0.07373717232669756 +174117,870.5850000073978,-0.07374766078823805 +174118,870.5900000073979,-0.07375801408490164 +174119,870.595000007398,-0.07376823326378054 +174120,870.6000000073981,-0.07377831936243977 +174121,870.6050000073982,-0.07378827340902115 +174122,870.6100000073983,-0.07379809642234629 +174123,870.6150000073984,-0.07380778941201808 +174124,870.6200000073985,-0.07381735337852104 +174125,870.6250000073986,-0.07382678931332037 +174126,870.6300000073987,-0.07383609819895989 +174127,870.6350000073988,-0.07384528100915858 +174128,870.640000007399,-0.07385433870890612 +174129,870.6450000073991,-0.07386327225455722 +174130,870.6500000073992,-0.0738720825939247 +174131,870.6550000073993,-0.0738807706663715 +174132,870.6600000073994,-0.07388933740290152 +174133,870.6650000073995,-0.07389778372624949 +174134,870.6700000073996,-0.07390611055096952 +174135,870.6750000073997,-0.07391431878352275 +174136,870.6800000073998,-0.07392240932236384 +174137,870.6850000073999,-0.07393038305802645 +174138,870.6900000074,-0.07393824087320769 +174139,870.6950000074002,-0.07394598364285145 +174140,870.7000000074003,-0.07395361223423086 +174141,870.7050000074004,-0.07396112750702968 +174142,870.7100000074005,-0.0739685303134227 +174143,870.7150000074006,-0.07397582149815511 +174144,870.7200000074007,-0.07398300189862113 +174145,870.7250000074008,-0.07399007234494137 +174146,870.7300000074009,-0.0739970336600396 +174147,870.735000007401,-0.0740038866597183 +174148,870.7400000074011,-0.07401063215273347 +174149,870.7450000074012,-0.07401727094086856 +174150,870.7500000074014,-0.07402380381900737 +174151,870.7550000074015,-0.07403023157520625 +174152,870.7600000074016,-0.07403655499076525 +174153,870.7650000074017,-0.07404277484029866 +174154,870.7700000074018,-0.0740488918918044 +174155,870.7750000074019,-0.07405490690673296 +174156,870.780000007402,-0.0740608206400551 +174157,870.7850000074021,-0.07406663384032916 +174158,870.7900000074022,-0.07407234724976722 +174159,870.7950000074023,-0.0740779616043007 +174160,870.8000000074024,-0.07408347763364508 +174161,870.8050000074026,-0.07408889606136392 +174162,870.8100000074027,-0.07409421760493203 +174163,870.8150000074028,-0.07409944297579803 +174164,870.8200000074029,-0.074104572879446 +174165,870.825000007403,-0.07410960801545657 +174166,870.8300000074031,-0.07411454907756722 +174167,870.8350000074032,-0.07411939675373179 +174168,870.8400000074033,-0.07412415172617946 +174169,870.8450000074034,-0.07412881467147292 +174170,870.8500000074035,-0.07413338626056587 +174171,870.8550000074036,-0.07413786715885991 +174172,870.8600000074038,-0.07414225802626065 +174173,870.8650000074039,-0.07414655951723331 +174174,870.870000007404,-0.07415077228085758 +174175,870.8750000074041,-0.07415489696088184 +174176,870.8800000074042,-0.07415893419577678 +174177,870.8850000074043,-0.07416288461878838 +174178,870.8900000074044,-0.07416674885799031 +174179,870.8950000074045,-0.07417052753633566 +174180,870.9000000074046,-0.07417422127170811 +174181,870.9050000074047,-0.07417783067697252 +174182,870.9100000074048,-0.07418135636002493 +174183,870.915000007405,-0.07418479892384194 +174184,870.9200000074051,-0.07418815896652954 +174185,870.9250000074052,-0.07419143708137148 +174186,870.9300000074053,-0.0741946338568769 +174187,870.9350000074054,-0.07419774987682752 +174188,870.9400000074055,-0.07420078572032435 +174189,870.9450000074056,-0.07420374196183371 +174190,870.9500000074057,-0.07420661917123285 +174191,870.9550000074058,-0.07420941791385498 +174192,870.9600000074059,-0.07421213875053381 +174193,870.965000007406,-0.07421478223764762 +174194,870.9700000074062,-0.07421734892716272 +174195,870.9750000074063,-0.07421983936667656 +174196,870.9800000074064,-0.0742222540994602 +174197,870.9850000074065,-0.07422459366450045 +174198,870.9900000074066,-0.07422685859654136 +174199,870.9950000074067,-0.07422904942612545 +174200,871.0000000074068,-0.07423116667963423 +174201,871.0050000074069,-0.07423321087932849 +174202,871.010000007407,-0.07423518254338801 +174203,871.0150000074071,-0.07423708218595079 +174204,871.0200000074072,-0.074238910317152 +174205,871.0250000074074,-0.0742406674431623 +174206,871.0300000074075,-0.07424235406622581 +174207,871.0350000074076,-0.07424397068469776 +174208,871.0400000074077,-0.07424551779308149 +174209,871.0450000074078,-0.07424699588206528 +174210,871.0500000074079,-0.07424840543855857 +174211,871.055000007408,-0.07424974694572788 +174212,871.0600000074081,-0.07425102088303234 +174213,871.0650000074082,-0.07425222772625875 +174214,871.0700000074083,-0.0742533679475563 +174215,871.0750000074084,-0.0742544420154709 +174216,871.0800000074086,-0.07425545039497912 +174217,871.0850000074087,-0.07425639354752177 +174218,871.0900000074088,-0.07425727193103705 +174219,871.0950000074089,-0.07425808599999345 +174220,871.100000007409,-0.07425883620542216 +174221,871.1050000074091,-0.07425952299494917 +174222,871.1100000074092,-0.07426014681282705 +174223,871.1150000074093,-0.07426070809996639 +174224,871.1200000074094,-0.07426120729396675 +174225,871.1250000074095,-0.07426164482914746 +174226,871.1300000074096,-0.07426202113657798 +174227,871.1350000074098,-0.07426233664410795 +174228,871.1400000074099,-0.07426259177639685 +174229,871.14500000741,-0.0742627869549435 +174230,871.1500000074101,-0.07426292259811502 +174231,871.1550000074102,-0.07426299912117568 +174232,871.1600000074103,-0.07426301693631525 +174233,871.1650000074104,-0.0742629764526772 +174234,871.1700000074105,-0.07426287807638647 +174235,871.1750000074106,-0.07426272221057707 +174236,871.1800000074107,-0.07426250925541922 +174237,871.1850000074108,-0.0742622396081463 +174238,871.190000007411,-0.07426191366308156 +174239,871.1950000074111,-0.07426153181166435 +174240,871.2000000074112,-0.0742610944424763 +174241,871.2050000074113,-0.07426060194126703 +174242,871.2100000074114,-0.07426005469097968 +174243,871.2150000074115,-0.07425945307177619 +174244,871.2200000074116,-0.07425879746106213 +174245,871.2250000074117,-0.07425808823351158 +174246,871.2300000074118,-0.07425732576109144 +174247,871.2350000074119,-0.07425651041308558 +174248,871.240000007412,-0.07425564255611884 +174249,871.2450000074122,-0.07425472255418063 +174250,871.2500000074123,-0.07425375076864835 +174251,871.2550000074124,-0.07425272755831051 +174252,871.2600000074125,-0.07425165327938972 +174253,871.2650000074126,-0.07425052828556525 +174254,871.2700000074127,-0.07424935292799556 +174255,871.2750000074128,-0.0742481275553404 +174256,871.2800000074129,-0.07424685251378278 +174257,871.285000007413,-0.07424552814705078 +174258,871.2900000074131,-0.07424415479643892 +174259,871.2950000074133,-0.07424273280082949 +174260,871.3000000074134,-0.07424126249671356 +174261,871.3050000074135,-0.07423974421821188 +174262,871.3100000074136,-0.07423817829709534 +174263,871.3150000074137,-0.0742365650628055 +174264,871.3200000074138,-0.07423490484247468 +174265,871.3250000074139,-0.07423319796094595 +174266,871.330000007414,-0.07423144474079285 +174267,871.3350000074141,-0.074229645502339 +174268,871.3400000074142,-0.07422780056367739 +174269,871.3450000074143,-0.07422591024068954 +174270,871.3500000074145,-0.07422397484706447 +174271,871.3550000074146,-0.07422199469431738 +174272,871.3600000074147,-0.07421997009180827 +174273,871.3650000074148,-0.07421790134676028 +174274,871.3700000074149,-0.07421578876427784 +174275,871.375000007415,-0.07421363264736469 +174276,871.3800000074151,-0.07421143329694167 +174277,871.3850000074152,-0.07420919101186434 +174278,871.3900000074153,-0.07420690608894033 +174279,871.3950000074154,-0.07420457882294673 +174280,871.4000000074155,-0.0742022095066471 +174281,871.4050000074157,-0.0741997984308084 +174282,871.4100000074158,-0.07419734588421764 +174283,871.4150000074159,-0.07419485215369856 +174284,871.420000007416,-0.07419231752412796 +174285,871.4250000074161,-0.0741897422784519 +174286,871.4300000074162,-0.07418712669770183 +174287,871.4350000074163,-0.07418447106101042 +174288,871.4400000074164,-0.07418177564562732 +174289,871.4450000074165,-0.07417904072693478 +174290,871.4500000074166,-0.07417626657846298 +174291,871.4550000074167,-0.07417345347190535 +174292,871.4600000074169,-0.07417060167713371 +174293,871.465000007417,-0.07416771146221318 +174294,871.4700000074171,-0.07416478309341695 +174295,871.4750000074172,-0.07416181683524106 +174296,871.4800000074173,-0.07415881295041875 +174297,871.4850000074174,-0.074155771699935 +174298,871.4900000074175,-0.0741526933430406 +174299,871.4950000074176,-0.07414957813726633 +174300,871.5000000074177,-0.07414642633843688 +174301,871.5050000074178,-0.07414323820068461 +174302,871.510000007418,-0.07414001397646325 +174303,871.515000007418,-0.07413675391656142 +174304,871.5200000074182,-0.07413345827011604 +174305,871.5250000074183,-0.07413012728462556 +174306,871.5300000074184,-0.07412676120596312 +174307,871.5350000074185,-0.07412336027838956 +174308,871.5400000074186,-0.07411992474456622 +174309,871.5450000074187,-0.07411645484556781 +174310,871.5500000074188,-0.07411295082089489 +174311,871.5550000074189,-0.07410941290848651 +174312,871.560000007419,-0.07410584134473246 +174313,871.5650000074191,-0.0741022363644856 +174314,871.5700000074193,-0.07409859820107396 +174315,871.5750000074194,-0.07409492708631282 +174316,871.5800000074195,-0.07409122325051648 +174317,871.5850000074196,-0.07408748692251017 +174318,871.5900000074197,-0.07408371832964165 +174319,871.5950000074198,-0.0740799176977928 +174320,871.6000000074199,-0.07407608525139105 +174321,871.60500000742,-0.07407222121342068 +174322,871.6100000074201,-0.0740683258054341 +174323,871.6150000074202,-0.07406439924756296 +174324,871.6200000074203,-0.07406044175852909 +174325,871.6250000074205,-0.0740564535556555 +174326,871.6300000074206,-0.0740524348548771 +174327,871.6350000074207,-0.07404838587075142 +174328,871.6400000074208,-0.07404430681646923 +174329,871.6450000074209,-0.074040197903865 +174330,871.650000007421,-0.07403605934342727 +174331,871.6550000074211,-0.074031891344309 +174332,871.6600000074212,-0.07402769411433775 +174333,871.6650000074213,-0.07402346786002573 +174334,871.6700000074214,-0.07401921278657983 +174335,871.6750000074215,-0.07401492909791156 +174336,871.6800000074217,-0.07401061699664682 +174337,871.6850000074218,-0.07400627668413563 +174338,871.6900000074219,-0.07400190836046178 +174339,871.695000007422,-0.0739975122244523 +174340,871.7000000074221,-0.07399308847368706 +174341,871.7050000074222,-0.07398863730450791 +174342,871.7100000074223,-0.0739841589120282 +174343,871.7150000074224,-0.07397965349014173 +174344,871.7200000074225,-0.07397512123153205 +174345,871.7250000074226,-0.07397056232768134 +174346,871.7300000074227,-0.0739659769688794 +174347,871.7350000074229,-0.07396136534423246 +174348,871.740000007423,-0.07395672764167203 +174349,871.7450000074231,-0.07395206404796349 +174350,871.7500000074232,-0.07394737474871474 +174351,871.7550000074233,-0.07394265992838472 +174352,871.7600000074234,-0.0739379197702919 +174353,871.7650000074235,-0.07393315445662253 +174354,871.7700000074236,-0.07392836416843908 +174355,871.7750000074237,-0.07392354908568834 +174356,871.7800000074238,-0.07391870938720965 +174357,871.785000007424,-0.07391384525074288 +174358,871.790000007424,-0.0739089568529365 +174359,871.7950000074242,-0.07390404436935546 +174360,871.8000000074243,-0.07389910797448905 +174361,871.8050000074244,-0.07389414784175868 +174362,871.8100000074245,-0.07388916414352556 +174363,871.8150000074246,-0.07388415705109838 +174364,871.8200000074247,-0.07387912673474085 +174365,871.8250000074248,-0.0738740733636792 +174366,871.8300000074249,-0.07386899710610963 +174367,871.835000007425,-0.07386389812920566 +174368,871.8400000074251,-0.07385877659912539 +174369,871.8450000074253,-0.07385363268101885 +174370,871.8500000074254,-0.07384846653903505 +174371,871.8550000074255,-0.07384327833632916 +174372,871.8600000074256,-0.07383806823506946 +174373,871.8650000074257,-0.07383283639644443 +174374,871.8700000074258,-0.07382758298066963 +174375,871.8750000074259,-0.0738223081469945 +174376,871.880000007426,-0.07381701205370923 +174377,871.8850000074261,-0.07381169485815144 +174378,871.8900000074262,-0.07380635671671289 +174379,871.8950000074263,-0.07380099778484607 +174380,871.9000000074265,-0.0737956182170708 +174381,871.9050000074266,-0.07379021816698067 +174382,871.9100000074267,-0.07378479778724951 +174383,871.9150000074268,-0.07377935722963784 +174384,871.9200000074269,-0.07377389664499909 +174385,871.925000007427,-0.07376841618328593 +174386,871.9300000074271,-0.07376291599355654 +174387,871.9350000074272,-0.07375739622398067 +174388,871.9400000074273,-0.07375185702184583 +174389,871.9450000074274,-0.07374629853356338 +174390,871.9500000074275,-0.07374072090467441 +174391,871.9550000074277,-0.07373512427985587 +174392,871.9600000074278,-0.07372950880292631 +174393,871.9650000074279,-0.07372387461685183 +174394,871.970000007428,-0.07371822186375188 +174395,871.9750000074281,-0.07371255068490498 +174396,871.9800000074282,-0.07370686122075445 +174397,871.9850000074283,-0.07370115361091405 +174398,871.9900000074284,-0.07369542799417358 +174399,871.9950000074285,-0.0736896845085045 +174400,872.0000000074286,-0.07368392329106536 +174401,872.0050000074287,-0.07367814447820735 +174402,872.0100000074289,-0.07367234820547959 +174403,872.015000007429,-0.07366653460763467 +174404,872.0200000074291,-0.07366070381863388 +174405,872.0250000074292,-0.0736548559716525 +174406,872.0300000074293,-0.07364899119908505 +174407,872.0350000074294,-0.0736431096325505 +174408,872.0400000074295,-0.07363721140289739 +174409,872.0450000074296,-0.07363129664020898 +174410,872.0500000074297,-0.0736253654738083 +174411,872.0550000074298,-0.07361941803226313 +174412,872.06000000743,-0.07361345444339103 +174413,872.0650000074301,-0.07360747483426429 +174414,872.0700000074302,-0.0736014793312148 +174415,872.0750000074303,-0.07359546805983894 +174416,872.0800000074304,-0.07358944114500232 +174417,872.0850000074305,-0.0735833987108447 +174418,872.0900000074306,-0.07357734088078456 +174419,872.0950000074307,-0.07357126777752397 +174420,872.1000000074308,-0.07356517952305312 +174421,872.1050000074309,-0.073559076238655 +174422,872.110000007431,-0.07355295804490998 +174423,872.1150000074311,-0.07354682506170039 +174424,872.1200000074313,-0.07354067740821497 +174425,872.1250000074314,-0.0735345152029534 +174426,872.1300000074315,-0.0735283385637307 +174427,872.1350000074316,-0.07352214760768165 +174428,872.1400000074317,-0.07351594245126516 +174429,872.1450000074318,-0.07350972321026862 +174430,872.1500000074319,-0.07350348999981214 +174431,872.155000007432,-0.0734972429343529 +174432,872.1600000074321,-0.07349098212768926 +174433,872.1650000074322,-0.07348470769296506 +174434,872.1700000074323,-0.07347841974267376 +174435,872.1750000074325,-0.07347211838866251 +174436,872.1800000074326,-0.07346580374213633 +174437,872.1850000074327,-0.07345947591366209 +174438,872.1900000074328,-0.0734531350131726 +174439,872.1950000074329,-0.0734467811499706 +174440,872.200000007433,-0.07344041443273265 +174441,872.2050000074331,-0.07343403496951323 +174442,872.2100000074332,-0.07342764286774843 +174443,872.2150000074333,-0.07342123823426003 +174444,872.2200000074334,-0.07341482117525919 +174445,872.2250000074336,-0.07340839179635036 +174446,872.2300000074337,-0.07340195020253501 +174447,872.2350000074338,-0.07339549649821538 +174448,872.2400000074339,-0.07338903078719826 +174449,872.245000007434,-0.07338255317269861 +174450,872.2500000074341,-0.0733760637573433 +174451,872.2550000074342,-0.07336956264317471 +174452,872.2600000074343,-0.07336304993165431 +174453,872.2650000074344,-0.0733565257236663 +174454,872.2700000074345,-0.07334999011952113 +174455,872.2750000074346,-0.0733434432189591 +174456,872.2800000074348,-0.07333688512115369 +174457,872.2850000074349,-0.07333031592471521 +174458,872.290000007435,-0.07332373572769417 +174459,872.2950000074351,-0.07331714462758471 +174460,872.3000000074352,-0.07331054272132798 +174461,872.3050000074353,-0.07330393010531552 +174462,872.3100000074354,-0.07329730687539261 +174463,872.3150000074355,-0.07329067312686159 +174464,872.3200000074356,-0.07328402895448516 +174465,872.3250000074357,-0.07327737445248957 +174466,872.3300000074358,-0.07327070971456799 +174467,872.335000007436,-0.07326403483388363 +174468,872.3400000074361,-0.07325734990307298 +174469,872.3450000074362,-0.07325065501424897 +174470,872.3500000074363,-0.07324395025900413 +174471,872.3550000074364,-0.07323723572841363 +174472,872.3600000074365,-0.07323051151303855 +174473,872.3650000074366,-0.07322377770292877 +174474,872.3700000074367,-0.07321703438762615 +174475,872.3750000074368,-0.07321028165616754 +174476,872.3800000074369,-0.07320351959708772 +174477,872.385000007437,-0.07319674829842247 +174478,872.3900000074372,-0.07318996784771152 +174479,872.3950000074373,-0.0731831783320014 +174480,872.4000000074374,-0.07317637983784853 +174481,872.4050000074375,-0.07316957245132195 +174482,872.4100000074376,-0.07316275625800633 +174483,872.4150000074377,-0.07315593134300473 +174484,872.4200000074378,-0.0731490977909415 +174485,872.4250000074379,-0.07314225568596508 +174486,872.430000007438,-0.0731354051117508 +174487,872.4350000074381,-0.0731285461515036 +174488,872.4400000074382,-0.07312167888796088 +174489,872.4450000074384,-0.07311480340339517 +174490,872.4500000074385,-0.07310791977961686 +174491,872.4550000074386,-0.0731010280979769 +174492,872.4600000074387,-0.0730941284393695 +174493,872.4650000074388,-0.07308722088423472 +174494,872.4700000074389,-0.07308030551256121 +174495,872.475000007439,-0.07307338240388872 +174496,872.4800000074391,-0.07306645163731076 +174497,872.4850000074392,-0.07305951329147722 +174498,872.4900000074393,-0.07305256744459684 +174499,872.4950000074394,-0.07304561417443986 +174500,872.5000000074396,-0.07303865355834044 +174501,872.5050000074397,-0.07303168567319927 +174502,872.5100000074398,-0.073024710595486 +174503,872.5150000074399,-0.07301772840124171 +174504,872.52000000744,-0.07301073916608143 +174505,872.5250000074401,-0.07300374296519656 +174506,872.5300000074402,-0.07299673987335718 +174507,872.5350000074403,-0.07298972996491467 +174508,872.5400000074404,-0.07298271331380388 +174509,872.5450000074405,-0.07297568999354566 +174510,872.5500000074406,-0.07296866007724916 +174511,872.5550000074408,-0.07296162363761416 +174512,872.5600000074409,-0.0729545807469334 +174513,872.565000007441,-0.0729475314770949 +174514,872.5700000074411,-0.07294047589958425 +174515,872.5750000074412,-0.07293341408548686 +174516,872.5800000074413,-0.07292634610549029 +174517,872.5850000074414,-0.07291927202988638 +174518,872.5900000074415,-0.0729121919285736 +174519,872.5950000074416,-0.07290510587105918 +174520,872.6000000074417,-0.07289801392646138 +174521,872.6050000074418,-0.0728909161635116 +174522,872.610000007442,-0.07288381265055657 +174523,872.6150000074421,-0.0728767034555606 +174524,872.6200000074422,-0.07286958864610756 +174525,872.6250000074423,-0.07286246828940311 +174526,872.6300000074424,-0.07285534245227682 +174527,872.6350000074425,-0.07284821120118418 +174528,872.6400000074426,-0.07284107460220877 +174529,872.6450000074427,-0.07283393272106434 +174530,872.6500000074428,-0.07282678562309673 +174531,872.6550000074429,-0.07281963337328606 +174532,872.660000007443,-0.07281247603624874 +174533,872.6650000074432,-0.07280531367623938 +174534,872.6700000074433,-0.0727981463571529 +174535,872.6750000074434,-0.07279097414252647 +174536,872.6800000074435,-0.07278379709554147 +174537,872.6850000074436,-0.07277661527902553 +174538,872.6900000074437,-0.07276942875545434 +174539,872.6950000074438,-0.07276223758695373 +174540,872.7000000074439,-0.07275504183530153 +174541,872.705000007444,-0.07274784156192947 +174542,872.7100000074441,-0.07274063682792506 +174543,872.7150000074442,-0.07273342769403357 +174544,872.7200000074444,-0.0727262142206598 +174545,872.7250000074445,-0.07271899646786997 +174546,872.7300000074446,-0.07271177449539361 +174547,872.7350000074447,-0.07270454836262537 +174548,872.7400000074448,-0.07269731812862679 +174549,872.7450000074449,-0.07269008385212823 +174550,872.750000007445,-0.07268284559153057 +174551,872.7550000074451,-0.07267560340490704 +174552,872.7600000074452,-0.07266835735000501 +174553,872.7650000074453,-0.07266110748424773 +174554,872.7700000074454,-0.07265385386473609 +174555,872.7750000074456,-0.07264659654825041 +174556,872.7800000074457,-0.0726393355912521 +174557,872.7850000074458,-0.07263207104988544 +174558,872.7900000074459,-0.07262480297997924 +174559,872.795000007446,-0.0726175314370486 +174560,872.8000000074461,-0.07261025647629656 +174561,872.8050000074462,-0.0726029781526158 +174562,872.8100000074463,-0.07259569652059025 +174563,872.8150000074464,-0.07258841163449686 +174564,872.8200000074465,-0.07258112354830716 +174565,872.8250000074466,-0.07257383231568891 +174566,872.8300000074468,-0.07256653799000772 +174567,872.8350000074469,-0.07255924062432871 +174568,872.840000007447,-0.07255194027141808 +174569,872.8450000074471,-0.0725446369837447 +174570,872.8500000074472,-0.07253733081348178 +174571,872.8550000074473,-0.07253002181250826 +174572,872.8600000074474,-0.07252271003241059 +174573,872.8650000074475,-0.07251539552448416 +174574,872.8700000074476,-0.07250807833973488 +174575,872.8750000074477,-0.07250075852888073 +174576,872.8800000074478,-0.07249343614235323 +174577,872.885000007448,-0.07248611123029908 +174578,872.8900000074481,-0.07247878384258152 +174579,872.8950000074482,-0.07247145402878195 +174580,872.9000000074483,-0.07246412183820135 +174581,872.9050000074484,-0.0724567873198618 +174582,872.9100000074485,-0.07244945052250795 +174583,872.9150000074486,-0.07244211149460843 +174584,872.9200000074487,-0.0724347702843574 +174585,872.9250000074488,-0.07242742693967592 +174586,872.9300000074489,-0.07242008150821343 +174587,872.935000007449,-0.07241273403734913 +174588,872.9400000074492,-0.07240538457419343 +174589,872.9450000074493,-0.07239803316558942 +174590,872.9500000074494,-0.07239067985811412 +174591,872.9550000074495,-0.07238332469808008 +174592,872.9600000074496,-0.07237596773153655 +174593,872.9650000074497,-0.07236860900427104 +174594,872.9700000074498,-0.07236124856181056 +174595,872.9750000074499,-0.07235388644942307 +174596,872.98000000745,-0.07234652271211879 +174597,872.9850000074501,-0.07233915739465153 +174598,872.9900000074502,-0.0723317905415201 +174599,872.9950000074504,-0.0723244221969695 +174600,873.0000000074505,-0.07231705240499241 +174601,873.0050000074506,-0.0723096812093304 +174602,873.0100000074507,-0.07230230865347524 +174603,873.0150000074508,-0.07229493478067023 +174604,873.0200000074509,-0.07228755963391148 +174605,873.025000007451,-0.0722801832559492 +174606,873.0300000074511,-0.07227280568928891 +174607,873.0350000074512,-0.07226542697619284 +174608,873.0400000074513,-0.07225804715868106 +174609,873.0450000074514,-0.07225066627853277 +174610,873.0500000074516,-0.07224328437728762 +174611,873.0550000074517,-0.07223590149624685 +174612,873.0600000074518,-0.07222851767647456 +174613,873.0650000074519,-0.07222113295879895 +174614,873.070000007452,-0.07221374738381349 +174615,873.0750000074521,-0.07220636099187819 +174616,873.0800000074522,-0.07219897382312075 +174617,873.0850000074523,-0.07219158591743781 +174618,873.0900000074524,-0.07218419731449607 +174619,873.0950000074525,-0.07217680805373354 +174620,873.1000000074526,-0.07216941817436066 +174621,873.1050000074528,-0.07216202771536151 +174622,873.1100000074529,-0.07215463671549494 +174623,873.115000007453,-0.07214724521329574 +174624,873.1200000074531,-0.07213985324707581 +174625,873.1250000074532,-0.07213246085492524 +174626,873.1300000074533,-0.07212506807471354 +174627,873.1350000074534,-0.07211767494409067 +174628,873.1400000074535,-0.07211028150048822 +174629,873.1450000074536,-0.0721028877811205 +174630,873.1500000074537,-0.07209549382298569 +174631,873.1550000074539,-0.07208809966286689 +174632,873.160000007454,-0.07208070533733325 +174633,873.1650000074541,-0.07207331088274109 +174634,873.1700000074542,-0.07206591633523488 +174635,873.1750000074543,-0.07205852173074842 +174636,873.1800000074544,-0.07205112710500591 +174637,873.1850000074545,-0.07204373249352299 +174638,873.1900000074546,-0.0720363379316077 +174639,873.1950000074547,-0.07202894345436177 +174640,873.2000000074548,-0.07202154909668143 +174641,873.2050000074549,-0.07201415489325859 +174642,873.210000007455,-0.07200676087858186 +174643,873.2150000074552,-0.07199936708693754 +174644,873.2200000074553,-0.07199197355241067 +174645,873.2250000074554,-0.07198458030888606 +174646,873.2300000074555,-0.0719771873900493 +174647,873.2350000074556,-0.07196979482938774 +174648,873.2400000074557,-0.07196240266019152 +174649,873.2450000074558,-0.07195501091555458 +174650,873.2500000074559,-0.07194761962837562 +174651,873.255000007456,-0.07194022883135912 +174652,873.2600000074561,-0.07193283855701627 +174653,873.2650000074563,-0.07192544883766601 +174654,873.2700000074564,-0.07191805970543597 +174655,873.2750000074565,-0.07191067119226341 +174656,873.2800000074566,-0.07190328332989623 +174657,873.2850000074567,-0.07189589614989388 +174658,873.2900000074568,-0.07188850968362832 +174659,873.2950000074569,-0.07188112396228503 +174660,873.300000007457,-0.07187373901686382 +174661,873.3050000074571,-0.0718663548781799 +174662,873.3100000074572,-0.07185897157686466 +174663,873.3150000074573,-0.07185158914336678 +174664,873.3200000074575,-0.071844207607953 +174665,873.3250000074576,-0.07183682700070905 +174666,873.3300000074577,-0.07182944735154065 +174667,873.3350000074578,-0.07182206869017432 +174668,873.3400000074579,-0.07181469104615833 +174669,873.345000007458,-0.07180731444886357 +174670,873.3500000074581,-0.07179993892748443 +174671,873.3550000074582,-0.07179256451103976 +174672,873.3600000074583,-0.07178519122837364 +174673,873.3650000074584,-0.07177781910815631 +174674,873.3700000074585,-0.07177044817888506 +174675,873.3750000074587,-0.07176307846888509 +174676,873.3800000074588,-0.07175571000631031 +174677,873.3850000074589,-0.07174834281914429 +174678,873.390000007459,-0.07174097693520104 +174679,873.3950000074591,-0.07173361238212587 +174680,873.4000000074592,-0.0717262491873963 +174681,873.4050000074593,-0.0717188873783228 +174682,873.4100000074594,-0.07171152698204966 +174683,873.4150000074595,-0.07170416802555588 +174684,873.4200000074596,-0.07169681053565588 +174685,873.4250000074597,-0.07168945453900047 +174686,873.4300000074599,-0.07168210006207751 +174687,873.43500000746,-0.07167474713121283 +174688,873.4400000074601,-0.07166739577257097 +174689,873.4450000074602,-0.07166004601215607 +174690,873.4500000074603,-0.07165269787581259 +174691,873.4550000074604,-0.07164535138922612 +174692,873.4600000074605,-0.07163800657792421 +174693,873.4650000074606,-0.07163066346727713 +174694,873.4700000074607,-0.07162332208249864 +174695,873.4750000074608,-0.07161598244864678 +174696,873.480000007461,-0.07160864459062467 +174697,873.485000007461,-0.07160130853318127 +174698,873.4900000074612,-0.07159397430091208 +174699,873.4950000074613,-0.07158664191826003 +174700,873.5000000074614,-0.07157931140951612 +174701,873.5050000074615,-0.07157198279882027 +174702,873.5100000074616,-0.07156465611016197 +174703,873.5150000074617,-0.07155733136738111 +174704,873.5200000074618,-0.07155000859416871 +174705,873.5250000074619,-0.07154268781406765 +174706,873.530000007462,-0.07153536905047336 +174707,873.5350000074621,-0.07152805232663464 +174708,873.5400000074623,-0.07152073766565431 +174709,873.5450000074624,-0.07151342509048998 +174710,873.5500000074625,-0.07150611462395474 +174711,873.5550000074626,-0.07149880628871794 +174712,873.5600000074627,-0.0714915001073058 +174713,873.5650000074628,-0.07148419610210222 +174714,873.5700000074629,-0.07147689429534942 +174715,873.575000007463,-0.07146959470914868 +174716,873.5800000074631,-0.07146229736546102 +174717,873.5850000074632,-0.07145500228610789 +174718,873.5900000074633,-0.07144770949277189 +174719,873.5950000074635,-0.07144041900699744 +174720,873.6000000074636,-0.07143313085019143 +174721,873.6050000074637,-0.07142584504362398 +174722,873.6100000074638,-0.07141856160842906 +174723,873.6150000074639,-0.07141128056560517 +174724,873.620000007464,-0.07140400193601602 +174725,873.6250000074641,-0.0713967257403912 +174726,873.6300000074642,-0.07138945199932686 +174727,873.6350000074643,-0.07138218073328634 +174728,873.6400000074644,-0.0713749119626008 +174729,873.6450000074645,-0.07136764570746999 +174730,873.6500000074647,-0.07136038198796275 +174731,873.6550000074648,-0.07135312082401779 +174732,873.6600000074649,-0.07134586223544424 +174733,873.665000007465,-0.07133860624192236 +174734,873.6700000074651,-0.07133135286300409 +174735,873.6750000074652,-0.0713241021181138 +174736,873.6800000074653,-0.07131685402654885 +174737,873.6850000074654,-0.07130960860748019 +174738,873.6900000074655,-0.07130236587995308 +174739,873.6950000074656,-0.07129512586288762 +174740,873.7000000074657,-0.07128788857507942 +174741,873.7050000074659,-0.07128065403520022 +174742,873.710000007466,-0.07127342226179843 +174743,873.7150000074661,-0.07126619327329986 +174744,873.7200000074662,-0.07125896708800823 +174745,873.7250000074663,-0.07125174372410581 +174746,873.7300000074664,-0.07124452319965402 +174747,873.7350000074665,-0.071237305532594 +174748,873.7400000074666,-0.07123009074074726 +174749,873.7450000074667,-0.07122287884181625 +174750,873.7500000074668,-0.07121566985338489 +174751,873.755000007467,-0.07120846379291923 +174752,873.760000007467,-0.07120126067776805 +174753,873.7650000074672,-0.07119406052516332 +174754,873.7700000074673,-0.07118686335222092 +174755,873.7750000074674,-0.07117966917594112 +174756,873.7800000074675,-0.07117247801320922 +174757,873.7850000074676,-0.07116528988079601 +174758,873.7900000074677,-0.07115810479535847 +174759,873.7950000074678,-0.07115092277344025 +174760,873.8000000074679,-0.07114374383147222 +174761,873.805000007468,-0.07113656798577313 +174762,873.8100000074681,-0.07112939525255002 +174763,873.8150000074683,-0.07112222564789891 +174764,873.8200000074684,-0.07111505918780524 +174765,873.8250000074685,-0.07110789588814445 +174766,873.8300000074686,-0.0711007357646826 +174767,873.8350000074687,-0.07109357883307678 +174768,873.8400000074688,-0.07108642510887576 +174769,873.8450000074689,-0.07107927460752048 +174770,873.850000007469,-0.07107212734434455 +174771,873.8550000074691,-0.07106498333457487 +174772,873.8600000074692,-0.07105784259333206 +174773,873.8650000074693,-0.07105070513563105 +174774,873.8700000074695,-0.0710435709763816 +174775,873.8750000074696,-0.0710364401303888 +174776,873.8800000074697,-0.07102931261235358 +174777,873.8850000074698,-0.07102218843687325 +174778,873.8900000074699,-0.071015067618442 +174779,873.89500000747,-0.0710079501714514 +174780,873.9000000074701,-0.07100083611019097 +174781,873.9050000074702,-0.07099372544884858 +174782,873.9100000074703,-0.07098661820151105 +174783,873.9150000074704,-0.07097951438216461 +174784,873.9200000074705,-0.07097241400469537 +174785,873.9250000074707,-0.07096531708288989 +174786,873.9300000074708,-0.07095822363043558 +174787,873.9350000074709,-0.0709511336609213 +174788,873.940000007471,-0.07094404718783774 +174789,873.9450000074711,-0.07093696422457799 +174790,873.9500000074712,-0.07092988478443797 +174791,873.9550000074713,-0.07092280888061697 +174792,873.9600000074714,-0.07091573652621805 +174793,873.9650000074715,-0.07090866773424856 +174794,873.9700000074716,-0.07090160251762065 +174795,873.9750000074717,-0.0708945408891517 +174796,873.9800000074719,-0.07088748286156478 +174797,873.985000007472,-0.07088042844748915 +174798,873.9900000074721,-0.07087337765946071 +174799,873.9950000074722,-0.07086633050992248 +174800,874.0000000074723,-0.07085928701122501 +174801,874.0050000074724,-0.0708522471756269 +174802,874.0100000074725,-0.07084521101529526 +174803,874.0150000074726,-0.07083817854230608 +174804,874.0200000074727,-0.07083114976864481 +174805,874.0250000074728,-0.07082412470620669 +174806,874.030000007473,-0.07081710336679728 +174807,874.0350000074731,-0.07081008576213287 +174808,874.0400000074732,-0.0708030719038409 +174809,874.0450000074733,-0.07079606180346049 +174810,874.0500000074734,-0.07078905547244278 +174811,874.0550000074735,-0.07078205292215144 +174812,874.0600000074736,-0.07077505416386304 +174813,874.0650000074737,-0.07076805920876755 +174814,874.0700000074738,-0.07076106806796875 +174815,874.0750000074739,-0.07075408075248461 +174816,874.080000007474,-0.07074709727324781 +174817,874.0850000074742,-0.07074011764110606 +174818,874.0900000074743,-0.07073314186682265 +174819,874.0950000074744,-0.07072616996107672 +174820,874.1000000074745,-0.07071920193446381 +174821,874.1050000074746,-0.0707122377974962 +174822,874.1100000074747,-0.07070527756060338 +174823,874.1150000074748,-0.0706983212341324 +174824,874.1200000074749,-0.07069136882834838 +174825,874.125000007475,-0.07068442035343477 +174826,874.1300000074751,-0.07067747581949389 +174827,874.1350000074752,-0.07067053523654732 +174828,874.1400000074754,-0.07066359861453618 +174829,874.1450000074755,-0.07065666596332176 +174830,874.1500000074756,-0.07064973729268567 +174831,874.1550000074757,-0.07064281261233041 +174832,874.1600000074758,-0.07063589193187969 +174833,874.1650000074759,-0.07062897526087884 +174834,874.170000007476,-0.07062206260879526 +174835,874.1750000074761,-0.07061515398501868 +174836,874.1800000074762,-0.07060824939886169 +174837,874.1850000074763,-0.07060134885956001 +174838,874.1900000074764,-0.070594452376273 +174839,874.1950000074766,-0.07058755995808388 +174840,874.2000000074767,-0.07058067161400029 +174841,874.2050000074768,-0.07057378735295454 +174842,874.2100000074769,-0.07056690718380404 +174843,874.215000007477,-0.07056003111533166 +174844,874.2200000074771,-0.07055315915624613 +174845,874.2250000074772,-0.07054629131518239 +174846,874.2300000074773,-0.07053942760070196 +174847,874.2350000074774,-0.07053256802129332 +174848,874.2400000074775,-0.07052571258537227 +174849,874.2450000074776,-0.07051886130128229 +174850,874.2500000074778,-0.07051201417729494 +174851,874.2550000074779,-0.07050517122161018 +174852,874.260000007478,-0.07049833244235675 +174853,874.2650000074781,-0.0704914978475925 +174854,874.2700000074782,-0.07048466744530481 +174855,874.2750000074783,-0.07047784124341089 +174856,874.2800000074784,-0.07047101924975815 +174857,874.2850000074785,-0.07046420147212458 +174858,874.2900000074786,-0.07045738791821901 +174859,874.2950000074787,-0.0704505785956816 +174860,874.3000000074788,-0.07044377351208408 +174861,874.305000007479,-0.07043697267493013 +174862,874.3100000074791,-0.07043017609165568 +174863,874.3150000074792,-0.07042338376962938 +174864,874.3200000074793,-0.07041659571615279 +174865,874.3250000074794,-0.07040981193846078 +174866,874.3300000074795,-0.07040303244372192 +174867,874.3350000074796,-0.07039625723903875 +174868,874.3400000074797,-0.07038948633144809 +174869,874.3450000074798,-0.0703827197279215 +174870,874.3500000074799,-0.07037595743536544 +174871,874.35500000748,-0.07036919946062174 +174872,874.3600000074802,-0.07036244581046788 +174873,874.3650000074803,-0.07035569649161728 +174874,874.3700000074804,-0.07034895151071968 +174875,874.3750000074805,-0.07034221087436146 +174876,874.3800000074806,-0.0703354745890659 +174877,874.3850000074807,-0.07032874266129358 +174878,874.3900000074808,-0.07032201509744267 +174879,874.3950000074809,-0.0703152919038492 +174880,874.400000007481,-0.07030857308678748 +174881,874.4050000074811,-0.07030185865247031 +174882,874.4100000074812,-0.07029514860704934 +174883,874.4150000074814,-0.07028844295661543 +174884,874.4200000074815,-0.07028174170719885 +174885,874.4250000074816,-0.07027504486476968 +174886,874.4300000074817,-0.0702683524352381 +174887,874.4350000074818,-0.07026166442445465 +174888,874.4400000074819,-0.0702549808382106 +174889,874.445000007482,-0.07024830168223821 +174890,874.4500000074821,-0.07024162696221105 +174891,874.4550000074822,-0.07023495668374427 +174892,874.4600000074823,-0.07022829085239497 +174893,874.4650000074824,-0.07022162947366244 +174894,874.4700000074826,-0.07021497255298843 +174895,874.4750000074827,-0.07020832009575755 +174896,874.4800000074828,-0.07020167210729743 +174897,874.4850000074829,-0.07019502859287914 +174898,874.490000007483,-0.07018838955771739 +174899,874.4950000074831,-0.07018175500697087 +174900,874.5000000074832,-0.07017512494574249 +174901,874.5050000074833,-0.07016849937907972 +174902,874.5100000074834,-0.07016187831197486 +174903,874.5150000074835,-0.07015526174936532 +174904,874.5200000074836,-0.07014864969613387 +174905,874.5250000074838,-0.07014204215710897 +174906,874.5300000074839,-0.07013543913706503 +174907,874.535000007484,-0.07012884064072274 +174908,874.5400000074841,-0.0701222466727492 +174909,874.5450000074842,-0.0701156572377584 +174910,874.5500000074843,-0.07010907234031132 +174911,874.5550000074844,-0.07010249198491632 +174912,874.5600000074845,-0.07009591617602934 +174913,874.5650000074846,-0.07008934491805421 +174914,874.5700000074847,-0.07008277821534292 +174915,874.5750000074848,-0.07007621607219591 +174916,874.580000007485,-0.07006965849286222 +174917,874.5850000074851,-0.07006310548153992 +174918,874.5900000074852,-0.07005655704237629 +174919,874.5950000074853,-0.07005001317946806 +174920,874.6000000074854,-0.07004347389686173 +174921,874.6050000074855,-0.0700369391985538 +174922,874.6100000074856,-0.0700304090884911 +174923,874.6150000074857,-0.07002388357057088 +174924,874.6200000074858,-0.07001736264864125 +174925,874.6250000074859,-0.07001084632650136 +174926,874.630000007486,-0.07000433460790163 +174927,874.6350000074862,-0.06999782749654405 +174928,874.6400000074863,-0.06999132499608243 +174929,874.6450000074864,-0.0699848271101226 +174930,874.6500000074865,-0.06997833384222277 +174931,874.6550000074866,-0.06997184519589364 +174932,874.6600000074867,-0.06996536117459874 +174933,874.6650000074868,-0.0699588817817547 +174934,874.6700000074869,-0.06995240702073138 +174935,874.675000007487,-0.06994593689485226 +174936,874.6800000074871,-0.06993947140739457 +174937,874.6850000074872,-0.06993301056158957 +174938,874.6900000074874,-0.06992655436062283 +174939,874.6950000074875,-0.06992010280763443 +174940,874.7000000074876,-0.06991365590571919 +174941,874.7050000074877,-0.06990721365792693 +174942,874.7100000074878,-0.06990077606726273 +174943,874.7150000074879,-0.06989434313668715 +174944,874.720000007488,-0.06988791486911639 +174945,874.7250000074881,-0.06988149126742266 +174946,874.7300000074882,-0.06987507233443431 +174947,874.7350000074883,-0.0698686580729361 +174948,874.7400000074884,-0.06986224848566944 +174949,874.7450000074886,-0.0698558435753326 +174950,874.7500000074887,-0.06984944334458094 +174951,874.7550000074888,-0.06984304779602717 +174952,874.7600000074889,-0.0698366569322415 +174953,874.765000007489,-0.06983027075575196 +174954,874.7700000074891,-0.06982388926904458 +174955,874.7750000074892,-0.06981751247456358 +174956,874.7800000074893,-0.0698111403747117 +174957,874.7850000074894,-0.06980477297185025 +174958,874.7900000074895,-0.06979841026829953 +174959,874.7950000074896,-0.06979205226633887 +174960,874.8000000074898,-0.06978569896820698 +174961,874.8050000074899,-0.06977935037610208 +174962,874.81000000749,-0.06977300649218221 +174963,874.8150000074901,-0.06976666731856532 +174964,874.8200000074902,-0.06976033285732958 +174965,874.8250000074903,-0.06975400311051358 +174966,874.8300000074904,-0.06974767808011652 +174967,874.8350000074905,-0.06974135776809842 +174968,874.8400000074906,-0.06973504217638038 +174969,874.8450000074907,-0.06972873130684469 +174970,874.8500000074908,-0.06972242516133517 +174971,874.855000007491,-0.06971612374165725 +174972,874.8600000074911,-0.06970982704957829 +174973,874.8650000074912,-0.06970353508682764 +174974,874.8700000074913,-0.06969724785509705 +174975,874.8750000074914,-0.06969096535604068 +174976,874.8800000074915,-0.06968468759127543 +174977,874.8850000074916,-0.06967841456238105 +174978,874.8900000074917,-0.06967214627090043 +174979,874.8950000074918,-0.06966588271833972 +174980,874.9000000074919,-0.06965962390616859 +174981,874.905000007492,-0.06965336983582042 +174982,874.9100000074922,-0.06964712050869243 +174983,874.9150000074923,-0.06964087592614597 +174984,874.9200000074924,-0.06963463608950667 +174985,874.9250000074925,-0.06962840100006464 +174986,874.9300000074926,-0.06962217065907463 +174987,874.9350000074927,-0.06961594506775631 +174988,874.9400000074928,-0.06960972422729438 +174989,874.9450000074929,-0.06960350813883878 +174990,874.950000007493,-0.0695972968035049 +174991,874.9550000074931,-0.06959109022237378 +174992,874.9600000074932,-0.06958488839649224 +174993,874.9650000074934,-0.06957869132687312 +174994,874.9700000074935,-0.0695724990144955 +174995,874.9750000074936,-0.06956631146030474 +174996,874.9800000074937,-0.06956012866521287 +174997,874.9850000074938,-0.0695539506300986 +174998,874.9900000074939,-0.0695477773558076 +174999,874.995000007494,-0.06954160884315264 +175000,875.0000000074941,-0.06953544509291379 +175001,875.0050000074942,-0.06952928610583863 +175002,875.0100000074943,-0.06952313188264234 +175003,875.0150000074945,-0.06951698242400796 +175004,875.0200000074946,-0.06951083773058658 +175005,875.0250000074947,-0.06950469780299745 +175006,875.0300000074948,-0.06949856264182819 +175007,875.0350000074949,-0.06949243224763495 +175008,875.040000007495,-0.06948630662094264 +175009,875.0450000074951,-0.06948018576224506 +175010,875.0500000074952,-0.06947406967200505 +175011,875.0550000074953,-0.0694679583506547 +175012,875.0600000074954,-0.06946185179859553 +175013,875.0650000074955,-0.06945575001619865 +175014,875.0700000074957,-0.0694496530038049 +175015,875.0750000074958,-0.06944356076172506 +175016,875.0800000074959,-0.06943747329024 +175017,875.085000007496,-0.06943139058960084 +175018,875.0900000074961,-0.06942531266002916 +175019,875.0950000074962,-0.06941923950171713 +175020,875.1000000074963,-0.06941317111482766 +175021,875.1050000074964,-0.0694071074994946 +175022,875.1100000074965,-0.06940104865582286 +175023,875.1150000074966,-0.06939499458388868 +175024,875.1200000074967,-0.06938894528373964 +175025,875.1250000074969,-0.06938290075539491 +175026,875.130000007497,-0.06937686099884546 +175027,875.1350000074971,-0.0693708260140541 +175028,875.1400000074972,-0.06936479580095573 +175029,875.1450000074973,-0.06935877035945742 +175030,875.1500000074974,-0.0693527496894387 +175031,875.1550000074975,-0.06934673379075158 +175032,875.1600000074976,-0.06934072266322078 +175033,875.1650000074977,-0.06933471630664383 +175034,875.1700000074978,-0.06932871472079133 +175035,875.1750000074979,-0.06932271790540698 +175036,875.180000007498,-0.06931672586020783 +175037,875.1850000074982,-0.06931073858488436 +175038,875.1900000074983,-0.06930475607910072 +175039,875.1950000074984,-0.06929877834249476 +175040,875.2000000074985,-0.0692928053746783 +175041,875.2050000074986,-0.06928683717523723 +175042,875.2100000074987,-0.06928087374373164 +175043,875.2150000074988,-0.06927491507969599 +175044,875.2200000074989,-0.06926896118263925 +175045,875.225000007499,-0.06926301205204513 +175046,875.2300000074991,-0.06925706768737203 +175047,875.2350000074993,-0.0692511280880534 +175048,875.2400000074994,-0.06924519325349777 +175049,875.2450000074995,-0.06923926318308891 +175050,875.2500000074996,-0.06923333787618598 +175051,875.2550000074997,-0.06922741733212366 +175052,875.2600000074998,-0.0692215015502124 +175053,875.2650000074999,-0.06921559052973836 +175054,875.2700000075,-0.0692096842699637 +175055,875.2750000075001,-0.06920378277012673 +175056,875.2800000075002,-0.06919788602944196 +175057,875.2850000075003,-0.06919199404710029 +175058,875.2900000075005,-0.06918610682226913 +175059,875.2950000075006,-0.06918022435409257 +175060,875.3000000075007,-0.06917434664169152 +175061,875.3050000075008,-0.06916847368416378 +175062,875.3100000075009,-0.06916260548058425 +175063,875.315000007501,-0.06915674203000505 +175064,875.3200000075011,-0.06915088333145562 +175065,875.3250000075012,-0.06914502938394289 +175066,875.3300000075013,-0.06913918018645139 +175067,875.3350000075014,-0.0691333357379434 +175068,875.3400000075015,-0.06912749603735908 +175069,875.3450000075017,-0.0691216610836166 +175070,875.3500000075018,-0.06911583087561228 +175071,875.3550000075019,-0.0691100054122207 +175072,875.360000007502,-0.06910418469229483 +175073,875.3650000075021,-0.06909836871466622 +175074,875.3700000075022,-0.06909255747814502 +175075,875.3750000075023,-0.06908675098152021 +175076,875.3800000075024,-0.06908094922355966 +175077,875.3850000075025,-0.0690751522030103 +175078,875.3900000075026,-0.06906935991859824 +175079,875.3950000075027,-0.06906357236902887 +175080,875.4000000075029,-0.06905778955298698 +175081,875.405000007503,-0.06905201146913699 +175082,875.4100000075031,-0.06904623811612288 +175083,875.4150000075032,-0.0690404694925685 +175084,875.4200000075033,-0.06903470559707758 +175085,875.4250000075034,-0.06902894642823393 +175086,875.4300000075035,-0.06902319198460147 +175087,875.4350000075036,-0.06901744226472445 +175088,875.4400000075037,-0.0690116972671275 +175089,875.4450000075038,-0.0690059569903158 +175090,875.450000007504,-0.06900022143277512 +175091,875.455000007504,-0.06899449059297204 +175092,875.4600000075042,-0.06898876446935402 +175093,875.4650000075043,-0.0689830430603495 +175094,875.4700000075044,-0.06897732636436804 +175095,875.4750000075045,-0.06897161437980044 +175096,875.4800000075046,-0.06896590710501886 +175097,875.4850000075047,-0.0689602045383769 +175098,875.4900000075048,-0.06895450667820976 +175099,875.4950000075049,-0.06894881352283436 +175100,875.500000007505,-0.06894312507054937 +175101,875.5050000075051,-0.06893744131963545 +175102,875.5100000075053,-0.06893176226835522 +175103,875.5150000075054,-0.06892608791495353 +175104,875.5200000075055,-0.06892041825765743 +175105,875.5250000075056,-0.06891475329467639 +175106,875.5300000075057,-0.06890909302420234 +175107,875.5350000075058,-0.06890343744440978 +175108,875.5400000075059,-0.06889778655345599 +175109,875.545000007506,-0.06889214034948098 +175110,875.5500000075061,-0.06888649883060771 +175111,875.5550000075062,-0.06888086199494221 +175112,875.5600000075063,-0.06887522984057359 +175113,875.5650000075065,-0.06886960236557427 +175114,875.5700000075066,-0.06886397956799996 +175115,875.5750000075067,-0.06885836144588987 +175116,875.5800000075068,-0.06885274799726676 +175117,875.5850000075069,-0.06884713922013706 +175118,875.590000007507,-0.06884153511249098 +175119,875.5950000075071,-0.06883593567230263 +175120,875.6000000075072,-0.06883034089753005 +175121,875.6050000075073,-0.06882475078611543 +175122,875.6100000075074,-0.06881916533598512 +175123,875.6150000075075,-0.06881358454504977 +175124,875.6200000075077,-0.0688080084112044 +175125,875.6250000075078,-0.06880243693232856 +175126,875.6300000075079,-0.06879687010628639 +175127,875.635000007508,-0.06879130793092672 +175128,875.6400000075081,-0.06878575040408318 +175129,875.6450000075082,-0.06878019752357428 +175130,875.6500000075083,-0.06877464928720357 +175131,875.6550000075084,-0.06876910569275965 +175132,875.6600000075085,-0.06876356673801634 +175133,875.6650000075086,-0.06875803242073274 +175134,875.6700000075087,-0.06875250273865334 +175135,875.6750000075089,-0.06874697768950812 +175136,875.680000007509,-0.06874145727101263 +175137,875.6850000075091,-0.06873594148086812 +175138,875.6900000075092,-0.06873043031676158 +175139,875.6950000075093,-0.06872492377636588 +175140,875.7000000075094,-0.06871942185733988 +175141,875.7050000075095,-0.06871392455732844 +175142,875.7100000075096,-0.06870843187396262 +175143,875.7150000075097,-0.0687029438048597 +175144,875.7200000075098,-0.0686974603476233 +175145,875.72500000751,-0.06869198149984346 +175146,875.7300000075101,-0.06868650725909674 +175147,875.7350000075102,-0.06868103762294633 +175148,875.7400000075103,-0.06867557258894211 +175149,875.7450000075104,-0.06867011215462072 +175150,875.7500000075105,-0.06866465631750576 +175151,875.7550000075106,-0.06865920507510773 +175152,875.7600000075107,-0.06865375842492419 +175153,875.7650000075108,-0.06864831636443991 +175154,875.7700000075109,-0.06864287889112686 +175155,875.775000007511,-0.06863744600244433 +175156,875.7800000075111,-0.06863201769583901 +175157,875.7850000075113,-0.06862659396874515 +175158,875.7900000075114,-0.06862117481858455 +175159,875.7950000075115,-0.06861576024276667 +175160,875.8000000075116,-0.06861035023868875 +175161,875.8050000075117,-0.06860494480373587 +175162,875.8100000075118,-0.06859954393528105 +175163,875.8150000075119,-0.0685941476306853 +175164,875.820000007512,-0.06858875588729776 +175165,875.8250000075121,-0.06858336870245574 +175166,875.8300000075122,-0.06857798607348481 +175167,875.8350000075123,-0.06857260799769889 +175168,875.8400000075125,-0.06856723447240032 +175169,875.8450000075126,-0.06856186549487998 +175170,875.8500000075127,-0.06855650106241735 +175171,875.8550000075128,-0.06855114117228056 +175172,875.8600000075129,-0.06854578582172655 +175173,875.865000007513,-0.068540435008001 +175174,875.8700000075131,-0.0685350887283386 +175175,875.8750000075132,-0.06852974697996304 +175176,875.8800000075133,-0.06852440976008702 +175177,875.8850000075134,-0.06851907706591244 +175178,875.8900000075135,-0.06851374889463045 +175179,875.8950000075137,-0.0685084252434215 +175180,875.9000000075138,-0.06850310610945542 +175181,875.9050000075139,-0.06849779148989156 +175182,875.910000007514,-0.06849248138187873 +175183,875.9150000075141,-0.06848717578255546 +175184,875.9200000075142,-0.06848187468904991 +175185,875.9250000075143,-0.06847657809848008 +175186,875.9300000075144,-0.06847128600795375 +175187,875.9350000075145,-0.06846599841456869 +175188,875.9400000075146,-0.06846071531541265 +175189,875.9450000075147,-0.06845543670756345 +175190,875.9500000075149,-0.06845016258808909 +175191,875.955000007515,-0.06844489295404776 +175192,875.9600000075151,-0.06843962780248798 +175193,875.9650000075152,-0.06843436713044863 +175194,875.9700000075153,-0.06842911093495904 +175195,875.9750000075154,-0.06842385921303906 +175196,875.9800000075155,-0.06841861196169914 +175197,875.9850000075156,-0.06841336917794037 +175198,875.9900000075157,-0.06840813085875458 +175199,875.9950000075158,-0.0684028970011244 +175200,876.000000007516,-0.06839766760202337 +175201,876.0050000075161,-0.06839244265841596 +175202,876.0100000075162,-0.06838722216725762 +175203,876.0150000075163,-0.06838200612549494 +175204,876.0200000075164,-0.06837679453006563 +175205,876.0250000075165,-0.06837158737789865 +175206,876.0300000075166,-0.06836638466591423 +175207,876.0350000075167,-0.06836118639102398 +175208,876.0400000075168,-0.06835599255013092 +175209,876.0450000075169,-0.06835080314012959 +175210,876.050000007517,-0.06834561815790607 +175211,876.0550000075172,-0.06834043760033812 +175212,876.0600000075173,-0.06833526146429514 +175213,876.0650000075174,-0.06833008974663833 +175214,876.0700000075175,-0.06832492244422073 +175215,876.0750000075176,-0.06831975955388721 +175216,876.0800000075177,-0.0683146010724747 +175217,876.0850000075178,-0.06830944699681207 +175218,876.0900000075179,-0.06830429732372037 +175219,876.095000007518,-0.06829915205001272 +175220,876.1000000075181,-0.06829401117249452 +175221,876.1050000075182,-0.06828887468796344 +175222,876.1100000075184,-0.06828374259320946 +175223,876.1150000075185,-0.06827861488501506 +175224,876.1200000075186,-0.0682734915601551 +175225,876.1250000075187,-0.06826837261539702 +175226,876.1300000075188,-0.06826325804750087 +175227,876.1350000075189,-0.06825814785321935 +175228,876.140000007519,-0.06825304202929786 +175229,876.1450000075191,-0.06824794057247463 +175230,876.1500000075192,-0.0682428434794807 +175231,876.1550000075193,-0.06823775074704003 +175232,876.1600000075194,-0.06823266237186953 +175233,876.1650000075196,-0.06822757835067919 +175234,876.1700000075197,-0.06822249868017202 +175235,876.1750000075198,-0.06821742335704421 +175236,876.1800000075199,-0.06821235237798516 +175237,876.18500000752,-0.0682072857396775 +175238,876.1900000075201,-0.06820222343879725 +175239,876.1950000075202,-0.06819716547201374 +175240,876.2000000075203,-0.06819211183598976 +175241,876.2050000075204,-0.06818706252738164 +175242,876.2100000075205,-0.06818201754283922 +175243,876.2150000075206,-0.06817697687900597 +175244,876.2200000075208,-0.06817194053251902 +175245,876.2250000075209,-0.06816690850000923 +175246,876.230000007521,-0.06816188077810124 +175247,876.2350000075211,-0.06815685736341356 +175248,876.2400000075212,-0.06815183825255856 +175249,876.2450000075213,-0.06814682344214255 +175250,876.2500000075214,-0.06814181292876588 +175251,876.2550000075215,-0.06813680670902292 +175252,876.2600000075216,-0.0681318047795022 +175253,876.2650000075217,-0.0681268071367864 +175254,876.2700000075218,-0.06812181377745241 +175255,876.275000007522,-0.06811682469807143 +175256,876.2800000075221,-0.06811183989520894 +175257,876.2850000075222,-0.06810685936542486 +175258,876.2900000075223,-0.06810188310527353 +175259,876.2950000075224,-0.06809691111130375 +175260,876.3000000075225,-0.06809194338005892 +175261,876.3050000075226,-0.06808697990807698 +175262,876.3100000075227,-0.06808202069189055 +175263,876.3150000075228,-0.06807706572802694 +175264,876.3200000075229,-0.06807211501300821 +175265,876.325000007523,-0.06806716854335122 +175266,876.3300000075232,-0.0680622263155677 +175267,876.3350000075233,-0.06805728832616426 +175268,876.3400000075234,-0.06805235457164248 +175269,876.3450000075235,-0.06804742504849895 +175270,876.3500000075236,-0.0680424997532253 +175271,876.3550000075237,-0.06803757868230825 +175272,876.3600000075238,-0.06803266183222972 +175273,876.3650000075239,-0.0680277491994668 +175274,876.370000007524,-0.06802284078049184 +175275,876.3750000075241,-0.06801793657177248 +175276,876.3800000075242,-0.06801303656977174 +175277,876.3850000075244,-0.06800814077094801 +175278,876.3900000075245,-0.06800324917175511 +175279,876.3950000075246,-0.06799836176864242 +175280,876.4000000075247,-0.06799347855805479 +175281,876.4050000075248,-0.06798859953643269 +175282,876.4100000075249,-0.06798372470021222 +175283,876.415000007525,-0.06797885404582517 +175284,876.4200000075251,-0.06797398756969907 +175285,876.4250000075252,-0.06796912526825716 +175286,876.4300000075253,-0.06796426713791859 +175287,876.4350000075254,-0.06795941317509832 +175288,876.4400000075256,-0.06795456337620724 +175289,876.4450000075257,-0.06794971773765221 +175290,876.4500000075258,-0.06794487625583605 +175291,876.4550000075259,-0.06794003892715768 +175292,876.460000007526,-0.06793520574801207 +175293,876.4650000075261,-0.06793037671479035 +175294,876.4700000075262,-0.06792555182387985 +175295,876.4750000075263,-0.06792073107166409 +175296,876.4800000075264,-0.06791591445452287 +175297,876.4850000075265,-0.06791110196883231 +175298,876.4900000075266,-0.06790629361096488 +175299,876.4950000075268,-0.06790148937728946 +175300,876.5000000075269,-0.06789668926417135 +175301,876.505000007527,-0.06789189326797233 +175302,876.5100000075271,-0.06788710138505077 +175303,876.5150000075272,-0.06788231361176153 +175304,876.5200000075273,-0.06787752994445613 +175305,876.5250000075274,-0.06787275037948273 +175306,876.5300000075275,-0.06786797491318616 +175307,876.5350000075276,-0.06786320354190804 +175308,876.5400000075277,-0.06785843626198673 +175309,876.5450000075278,-0.06785367306975741 +175310,876.550000007528,-0.06784891396155211 +175311,876.5550000075281,-0.0678441589336998 +175312,876.5600000075282,-0.06783940798252636 +175313,876.5650000075283,-0.06783466110435463 +175314,876.5700000075284,-0.06782991829550451 +175315,876.5750000075285,-0.06782517955229295 +175316,876.5800000075286,-0.06782044487103397 +175317,876.5850000075287,-0.06781571424803877 +175318,876.5900000075288,-0.0678109876796157 +175319,876.5950000075289,-0.06780626516207032 +175320,876.600000007529,-0.06780154669170547 +175321,876.6050000075292,-0.06779683226482128 +175322,876.6100000075293,-0.06779212187771519 +175323,876.6150000075294,-0.06778741552668202 +175324,876.6200000075295,-0.067782713208014 +175325,876.6250000075296,-0.06777801491800081 +175326,876.6300000075297,-0.0677733206529296 +175327,876.6350000075298,-0.06776863040908505 +175328,876.6400000075299,-0.0677639441827494 +175329,876.64500000753,-0.06775926197020246 +175330,876.6500000075301,-0.0677545837677217 +175331,876.6550000075302,-0.06774990957158224 +175332,876.6600000075304,-0.06774523937805689 +175333,876.6650000075305,-0.06774057318341625 +175334,876.6700000075306,-0.06773591098392863 +175335,876.6750000075307,-0.06773125277586022 +175336,876.6800000075308,-0.06772659855547497 +175337,876.6850000075309,-0.06772194831903477 +175338,876.690000007531,-0.06771730206279947 +175339,876.6950000075311,-0.06771265978302675 +175340,876.7000000075312,-0.0677080214759724 +175341,876.7050000075313,-0.06770338713789012 +175342,876.7100000075314,-0.06769875676503176 +175343,876.7150000075316,-0.06769413035364721 +175344,876.7200000075317,-0.06768950789998451 +175345,876.7250000075318,-0.06768488940028983 +175346,876.7300000075319,-0.06768027485080753 +175347,876.735000007532,-0.06767566424778025 +175348,876.7400000075321,-0.06767105758744882 +175349,876.7450000075322,-0.0676664548660524 +175350,876.7500000075323,-0.06766185607982844 +175351,876.7550000075324,-0.06765726122501281 +175352,876.7600000075325,-0.06765267029783971 +175353,876.7650000075326,-0.06764808329454178 +175354,876.7700000075328,-0.06764350021135011 +175355,876.7750000075329,-0.06763892104449433 +175356,876.780000007533,-0.06763434579020249 +175357,876.7850000075331,-0.06762977444470127 +175358,876.7900000075332,-0.0676252070042159 +175359,876.7950000075333,-0.06762064346497021 +175360,876.8000000075334,-0.06761608382318673 +175361,876.8050000075335,-0.0676115280750866 +175362,876.8100000075336,-0.06760697621688971 +175363,876.8150000075337,-0.06760242824481466 +175364,876.8200000075338,-0.06759788415507885 +175365,876.825000007534,-0.06759334394389845 +175366,876.8300000075341,-0.06758880760748846 +175367,876.8350000075342,-0.06758427514206276 +175368,876.8400000075343,-0.06757974654383411 +175369,876.8450000075344,-0.06757522180901415 +175370,876.8500000075345,-0.06757070093381354 +175371,876.8550000075346,-0.06756618391444186 +175372,876.8600000075347,-0.0675616707471077 +175373,876.8650000075348,-0.06755716142801874 +175374,876.8700000075349,-0.06755265595338164 +175375,876.875000007535,-0.06754815431940224 +175376,876.8800000075352,-0.06754365652228544 +175377,876.8850000075353,-0.06753916255823532 +175378,876.8900000075354,-0.06753467242345512 +175379,876.8950000075355,-0.0675301861141473 +175380,876.9000000075356,-0.06752570362651356 +175381,876.9050000075357,-0.06752122495675485 +175382,876.9100000075358,-0.06751675010107143 +175383,876.9150000075359,-0.06751227905566284 +175384,876.920000007536,-0.06750781181672802 +175385,876.9250000075361,-0.06750334838046525 +175386,876.9300000075363,-0.0674988887430722 +175387,876.9350000075364,-0.06749443290074597 +175388,876.9400000075365,-0.06748998084968313 +175389,876.9450000075366,-0.06748553258607976 +175390,876.9500000075367,-0.06748108810613136 +175391,876.9550000075368,-0.06747664740603307 +175392,876.9600000075369,-0.06747221048197949 +175393,876.965000007537,-0.06746777733016486 +175394,876.9700000075371,-0.06746334794678303 +175395,876.9750000075372,-0.06745892232802748 +175396,876.9800000075373,-0.06745450047009134 +175397,876.9850000075375,-0.06745008236916747 +175398,876.9900000075376,-0.06744566802144837 +175399,876.9950000075377,-0.06744125742312636 +175400,877.0000000075378,-0.06743685057039346 +175401,877.0050000075379,-0.06743244745944152 +175402,877.010000007538,-0.0674280480864622 +175403,877.0150000075381,-0.06742365244764698 +175404,877.0200000075382,-0.06741926053918719 +175405,877.0250000075383,-0.0674148723572741 +175406,877.0300000075384,-0.06741048789809884 +175407,877.0350000075385,-0.0674061071578525 +175408,877.0400000075387,-0.06740173013272614 +175409,877.0450000075388,-0.06739735681891078 +175410,877.0500000075389,-0.06739298721259745 +175411,877.055000007539,-0.0673886213099772 +175412,877.0600000075391,-0.06738425910724119 +175413,877.0650000075392,-0.06737990060058059 +175414,877.0700000075393,-0.0673755457861867 +175415,877.0750000075394,-0.06737119466025093 +175416,877.0800000075395,-0.0673668472189649 +175417,877.0850000075396,-0.0673625034585203 +175418,877.0900000075397,-0.06735816337510905 +175419,877.0950000075399,-0.06735382696492334 +175420,877.10000000754,-0.06734949422415552 +175421,877.1050000075401,-0.06734516514899823 +175422,877.1100000075402,-0.0673408397356444 +175423,877.1150000075403,-0.06733651798028725 +175424,877.1200000075404,-0.06733219987912033 +175425,877.1250000075405,-0.06732788542833752 +175426,877.1300000075406,-0.06732357462413312 +175427,877.1350000075407,-0.06731926746270174 +175428,877.1400000075408,-0.06731496394023848 +175429,877.145000007541,-0.06731066405293881 +175430,877.150000007541,-0.06730636779699868 +175431,877.1550000075412,-0.06730207516861454 +175432,877.1600000075413,-0.0672977861639833 +175433,877.1650000075414,-0.06729350077930236 +175434,877.1700000075415,-0.06728921901076974 +175435,877.1750000075416,-0.06728494085458396 +175436,877.1800000075417,-0.06728066630694413 +175437,877.1850000075418,-0.06727639536404993 +175438,877.1900000075419,-0.06727212802210171 +175439,877.195000007542,-0.06726786427730043 +175440,877.2000000075421,-0.06726360412584771 +175441,877.2050000075423,-0.06725934756394583 +175442,877.2100000075424,-0.0672550945877978 +175443,877.2150000075425,-0.06725084519360733 +175444,877.2200000075426,-0.06724659937757888 +175445,877.2250000075427,-0.06724235713591763 +175446,877.2300000075428,-0.06723811846482959 +175447,877.2350000075429,-0.06723388336052151 +175448,877.240000007543,-0.06722965181920099 +175449,877.2450000075431,-0.06722542383707644 +175450,877.2500000075432,-0.06722119941035715 +175451,877.2550000075433,-0.06721697853525324 +175452,877.2600000075435,-0.06721276120797574 +175453,877.2650000075436,-0.06720854742473661 +175454,877.2700000075437,-0.06720433718174869 +175455,877.2750000075438,-0.06720013047522577 +175456,877.2800000075439,-0.06719592730138266 +175457,877.285000007544,-0.06719172765643505 +175458,877.2900000075441,-0.06718753153659972 +175459,877.2950000075442,-0.0671833389380944 +175460,877.3000000075443,-0.0671791498571379 +175461,877.3050000075444,-0.06717496428995004 +175462,877.3100000075445,-0.06717078223275173 +175463,877.3150000075447,-0.06716660368176497 +175464,877.3200000075448,-0.06716242863321284 +175465,877.3250000075449,-0.06715825708331957 +175466,877.330000007545,-0.06715408902831049 +175467,877.3350000075451,-0.06714992446441212 +175468,877.3400000075452,-0.06714576338785212 +175469,877.3450000075453,-0.06714160579485938 +175470,877.3500000075454,-0.06713745168166392 +175471,877.3550000075455,-0.06713330104449705 +175472,877.3600000075456,-0.06712915387959127 +175473,877.3650000075457,-0.06712501018318039 +175474,877.3700000075459,-0.0671208699514994 +175475,877.375000007546,-0.06711673318078466 +175476,877.3800000075461,-0.06711259986727382 +175477,877.3850000075462,-0.06710847000720578 +175478,877.3900000075463,-0.06710434359682085 +175479,877.3950000075464,-0.06710022063236065 +175480,877.4000000075465,-0.06709610111006817 +175481,877.4050000075466,-0.06709198502618777 +175482,877.4100000075467,-0.06708787237696526 +175483,877.4150000075468,-0.06708376315864777 +175484,877.420000007547,-0.06707965736748393 +175485,877.425000007547,-0.0670755549997238 +175486,877.4300000075472,-0.06707145605161885 +175487,877.4350000075473,-0.06706736051942208 +175488,877.4400000075474,-0.06706326839938795 +175489,877.4450000075475,-0.0670591796877724 +175490,877.4500000075476,-0.06705509438083293 +175491,877.4550000075477,-0.06705101247482853 +175492,877.4600000075478,-0.06704693396601975 +175493,877.4650000075479,-0.06704285885066873 +175494,877.470000007548,-0.0670387871250391 +175495,877.4750000075481,-0.0670347187853962 +175496,877.4800000075483,-0.06703065382800685 +175497,877.4850000075484,-0.06702659224913957 +175498,877.4900000075485,-0.06702253404506446 +175499,877.4950000075486,-0.0670184792120533 +175500,877.5000000075487,-0.0670144277463795 +175501,877.5050000075488,-0.06701037964431815 +175502,877.5100000075489,-0.06700633490214604 +175503,877.515000007549,-0.06700229351614163 +175504,877.5200000075491,-0.06699825548258512 +175505,877.5250000075492,-0.06699422079775842 +175506,877.5300000075493,-0.06699018945794517 +175507,877.5350000075495,-0.06698616145943079 +175508,877.5400000075496,-0.06698213679850244 +175509,877.5450000075497,-0.06697811547144905 +175510,877.5500000075498,-0.06697409747456136 +175511,877.5550000075499,-0.06697008280413193 +175512,877.56000000755,-0.06696607145645508 +175513,877.5650000075501,-0.06696206342782704 +175514,877.5700000075502,-0.06695805871454578 +175515,877.5750000075503,-0.06695405731291122 +175516,877.5800000075504,-0.06695005921922509 +175517,877.5850000075505,-0.06694606442979101 +175518,877.5900000075507,-0.0669420729409145 +175519,877.5950000075508,-0.06693808474890298 +175520,877.6000000075509,-0.06693409985006578 +175521,877.605000007551,-0.06693011824071415 +175522,877.6100000075511,-0.06692613991716131 +175523,877.6150000075512,-0.06692216487572239 +175524,877.6200000075513,-0.06691819311271452 +175525,877.6250000075514,-0.06691422462445679 +175526,877.6300000075515,-0.06691025940727023 +175527,877.6350000075516,-0.06690629745747796 +175528,877.6400000075517,-0.06690233877140504 +175529,877.6450000075519,-0.06689838334537858 +175530,877.650000007552,-0.06689443117572769 +175531,877.6550000075521,-0.06689048225878357 +175532,877.6600000075522,-0.06688653659087943 +175533,877.6650000075523,-0.06688259416835059 +175534,877.6700000075524,-0.0668786549875344 +175535,877.6750000075525,-0.06687471904477031 +175536,877.6800000075526,-0.06687078633639991 +175537,877.6850000075527,-0.06686685685876682 +175538,877.6900000075528,-0.06686293060821685 +175539,877.695000007553,-0.06685900758109793 +175540,877.7000000075531,-0.06685508777376008 +175541,877.7050000075532,-0.06685117118255551 +175542,877.7100000075533,-0.06684725780383861 +175543,877.7150000075534,-0.06684334763396592 +175544,877.7200000075535,-0.06683944066929615 +175545,877.7250000075536,-0.06683553690619021 +175546,877.7300000075537,-0.0668316363410112 +175547,877.7350000075538,-0.06682773897012449 +175548,877.7400000075539,-0.0668238447898976 +175549,877.745000007554,-0.06681995379670032 +175550,877.7500000075541,-0.06681606598690468 +175551,877.7550000075543,-0.06681218135688496 +175552,877.7600000075544,-0.0668082999030177 +175553,877.7650000075545,-0.0668044216216817 +175554,877.7700000075546,-0.06680054650925807 +175555,877.7750000075547,-0.06679667456213018 +175556,877.7800000075548,-0.06679280577668371 +175557,877.7850000075549,-0.06678894014930666 +175558,877.790000007555,-0.06678507767638932 +175559,877.7950000075551,-0.06678121835432435 +175560,877.8000000075552,-0.06677736217950672 +175561,877.8050000075553,-0.06677350914833374 +175562,877.8100000075555,-0.06676965925720511 +175563,877.8150000075556,-0.06676581250252284 +175564,877.8200000075557,-0.06676196888069136 +175565,877.8250000075558,-0.06675812838811745 +175566,877.8300000075559,-0.0667542910212103 +175567,877.835000007556,-0.06675045677638151 +175568,877.8400000075561,-0.06674662565004505 +175569,877.8450000075562,-0.06674279763861733 +175570,877.8500000075563,-0.06673897273851719 +175571,877.8550000075564,-0.06673515094616589 +175572,877.8600000075566,-0.06673133225798714 +175573,877.8650000075567,-0.0667275166704071 +175574,877.8700000075568,-0.06672370417985438 +175575,877.8750000075569,-0.06671989478276007 +175576,877.880000007557,-0.06671608847555771 +175577,877.8850000075571,-0.06671228525468337 +175578,877.8900000075572,-0.06670848511657555 +175579,877.8950000075573,-0.06670468805767528 +175580,877.9000000075574,-0.06670089407442611 +175581,877.9050000075575,-0.0666971031632741 +175582,877.9100000075576,-0.0666933153206678 +175583,877.9150000075578,-0.06668953054305832 +175584,877.9200000075579,-0.06668574882689929 +175585,877.925000007558,-0.0666819701686469 +175586,877.9300000075581,-0.06667819456475989 +175587,877.9350000075582,-0.06667442201169957 +175588,877.9400000075583,-0.06667065250592977 +175589,877.9450000075584,-0.06666688604391695 +175590,877.9500000075585,-0.06666312262213013 +175591,877.9550000075586,-0.06665936223704093 +175592,877.9600000075587,-0.06665560488512352 +175593,877.9650000075588,-0.06665185056285476 +175594,877.970000007559,-0.06664809926671404 +175595,877.9750000075591,-0.06664435099318343 +175596,877.9800000075592,-0.06664060573874755 +175597,877.9850000075593,-0.06663686349989374 +175598,877.9900000075594,-0.0666331242731119 +175599,877.9950000075595,-0.06662938805489461 +175600,878.0000000075596,-0.06662565484173714 +175601,878.0050000075597,-0.06662192463013734 +175602,878.0100000075598,-0.06661819741659579 +175603,878.0150000075599,-0.06661447319761571 +175604,878.02000000756,-0.06661075196970301 +175605,878.0250000075602,-0.06660703372936627 +175606,878.0300000075603,-0.06660331847311678 +175607,878.0350000075604,-0.06659960619746852 +175608,878.0400000075605,-0.06659589689893818 +175609,878.0450000075606,-0.06659219057404515 +175610,878.0500000075607,-0.06658848721931153 +175611,878.0550000075608,-0.06658478683126218 +175612,878.0600000075609,-0.06658108940642464 +175613,878.065000007561,-0.06657739494132922 +175614,878.0700000075611,-0.06657370343250896 +175615,878.0750000075612,-0.06657001487649962 +175616,878.0800000075614,-0.06656632926983976 +175617,878.0850000075615,-0.06656264660907067 +175618,878.0900000075616,-0.06655896689073641 +175619,878.0950000075617,-0.06655529011138381 +175620,878.1000000075618,-0.06655161626756248 +175621,878.1050000075619,-0.06654794535582481 +175622,878.110000007562,-0.06654427737272596 +175623,878.1150000075621,-0.0665406123148239 +175624,878.1200000075622,-0.0665369501786794 +175625,878.1250000075623,-0.06653329096085604 +175626,878.1300000075624,-0.06652963465792018 +175627,878.1350000075626,-0.06652598126644102 +175628,878.1400000075627,-0.06652233078299057 +175629,878.1450000075628,-0.06651868320414366 +175630,878.1500000075629,-0.06651503852647796 +175631,878.155000007563,-0.06651139674657396 +175632,878.1600000075631,-0.06650775786101501 +175633,878.1650000075632,-0.0665041218663873 +175634,878.1700000075633,-0.06650048875927986 +175635,878.1750000075634,-0.06649685853628459 +175636,878.1800000075635,-0.06649323119399624 +175637,878.1850000075636,-0.06648960672901243 +175638,878.1900000075638,-0.06648598513793362 +175639,878.1950000075639,-0.06648236641736321 +175640,878.200000007564,-0.06647875056390742 +175641,878.2050000075641,-0.06647513757417539 +175642,878.2100000075642,-0.06647152744477913 +175643,878.2150000075643,-0.06646792017233354 +175644,878.2200000075644,-0.06646431575345643 +175645,878.2250000075645,-0.06646071418476852 +175646,878.2300000075646,-0.06645711546289342 +175647,878.2350000075647,-0.06645351958445765 +175648,878.2400000075648,-0.06644992654609067 +175649,878.245000007565,-0.06644633634442483 +175650,878.2500000075651,-0.06644274897609544 +175651,878.2550000075652,-0.06643916443774069 +175652,878.2600000075653,-0.06643558272600174 +175653,878.2650000075654,-0.0664320038375227 +175654,878.2700000075655,-0.06642842776895055 +175655,878.2750000075656,-0.06642485451693533 +175656,878.2800000075657,-0.06642128407812993 +175657,878.2850000075658,-0.06641771644919023 +175658,878.2900000075659,-0.06641415162677507 +175659,878.295000007566,-0.06641058960754624 +175660,878.3000000075662,-0.06640703038816852 +175661,878.3050000075663,-0.06640347396530963 +175662,878.3100000075664,-0.0663999203356403 +175663,878.3150000075665,-0.06639636949583416 +175664,878.3200000075666,-0.06639282144256793 +175665,878.3250000075667,-0.06638927617252123 +175666,878.3300000075668,-0.06638573368237671 +175667,878.3350000075669,-0.06638219396881997 +175668,878.340000007567,-0.06637865702853966 +175669,878.3450000075671,-0.0663751228582274 +175670,878.3500000075672,-0.06637159145457781 +175671,878.3550000075674,-0.06636806281428852 +175672,878.3600000075675,-0.06636453693406016 +175673,878.3650000075676,-0.0663610138105964 +175674,878.3700000075677,-0.06635749344060389 +175675,878.3750000075678,-0.06635397582079232 +175676,878.3800000075679,-0.0663504609478744 +175677,878.385000007568,-0.06634694881856587 +175678,878.3900000075681,-0.06634343942958548 +175679,878.3950000075682,-0.06633993277765506 +175680,878.4000000075683,-0.06633642885949939 +175681,878.4050000075684,-0.06633292767184638 +175682,878.4100000075686,-0.06632942921142693 +175683,878.4150000075687,-0.066325933474975 +175684,878.4200000075688,-0.06632244045922757 +175685,878.4250000075689,-0.0663189501609247 +175686,878.430000007569,-0.06631546257680952 +175687,878.4350000075691,-0.06631197770362818 +175688,878.4400000075692,-0.06630849553812988 +175689,878.4450000075693,-0.06630501607706693 +175690,878.4500000075694,-0.06630153931719465 +175691,878.4550000075695,-0.06629806525527149 +175692,878.4600000075696,-0.0662945938880589 +175693,878.4650000075698,-0.06629112521232146 +175694,878.4700000075699,-0.0662876592248268 +175695,878.47500000757,-0.0662841959223456 +175696,878.4800000075701,-0.06628073530165168 +175697,878.4850000075702,-0.06627727735952192 +175698,878.4900000075703,-0.06627382209273626 +175699,878.4950000075704,-0.06627036949807774 +175700,878.5000000075705,-0.06626691957233251 +175701,878.5050000075706,-0.06626347231228981 +175702,878.5100000075707,-0.06626002771474195 +175703,878.5150000075708,-0.06625658577648434 +175704,878.520000007571,-0.06625314649431553 +175705,878.5250000075711,-0.06624970986503712 +175706,878.5300000075712,-0.06624627588545384 +175707,878.5350000075713,-0.06624284455237354 +175708,878.5400000075714,-0.06623941586260716 +175709,878.5450000075715,-0.06623598981296874 +175710,878.5500000075716,-0.06623256640027544 +175711,878.5550000075717,-0.06622914562134757 +175712,878.5600000075718,-0.0662257274730085 +175713,878.5650000075719,-0.06622231195208476 +175714,878.570000007572,-0.066218899055406 +175715,878.5750000075722,-0.06621548877980496 +175716,878.5800000075723,-0.06621208112211753 +175717,878.5850000075724,-0.06620867607918272 +175718,878.5900000075725,-0.06620527364784268 +175719,878.5950000075726,-0.06620187382494266 +175720,878.6000000075727,-0.06619847660733111 +175721,878.6050000075728,-0.06619508199185951 +175722,878.6100000075729,-0.06619168997538258 +175723,878.615000007573,-0.0661883005547581 +175724,878.6200000075731,-0.06618491372684704 +175725,878.6250000075732,-0.06618152948851348 +175726,878.6300000075734,-0.06617814783662465 +175727,878.6350000075735,-0.06617476876805094 +175728,878.6400000075736,-0.06617139227966586 +175729,878.6450000075737,-0.06616801836834608 +175730,878.6500000075738,-0.06616464703097143 +175731,878.6550000075739,-0.06616127826442486 +175732,878.660000007574,-0.06615791206559252 +175733,878.6650000075741,-0.06615454843136363 +175734,878.6700000075742,-0.06615118735863068 +175735,878.6750000075743,-0.06614782884428921 +175736,878.6800000075744,-0.06614447288523798 +175737,878.6850000075746,-0.06614111947837888 +175738,878.6900000075747,-0.06613776862061696 +175739,878.6950000075748,-0.06613442030886045 +175740,878.7000000075749,-0.06613107454002075 +175741,878.705000007575,-0.06612773131101236 +175742,878.7100000075751,-0.06612439061875304 +175743,878.7150000075752,-0.06612105246016364 +175744,878.7200000075753,-0.0661177168321682 +175745,878.7250000075754,-0.06611438373169394 +175746,878.7300000075755,-0.06611105315567123 +175747,878.7350000075756,-0.06610772510103362 +175748,878.7400000075758,-0.06610439956471785 +175749,878.7450000075759,-0.06610107654366379 +175750,878.750000007576,-0.06609775603481452 +175751,878.7550000075761,-0.06609443803511628 +175752,878.7600000075762,-0.06609112254151846 +175753,878.7650000075763,-0.0660878095509737 +175754,878.7700000075764,-0.06608449906043773 +175755,878.7750000075765,-0.06608119106686951 +175756,878.7800000075766,-0.06607788556723117 +175757,878.7850000075767,-0.06607458255848798 +175758,878.7900000075769,-0.06607128203760848 +175759,878.795000007577,-0.0660679840015643 +175760,878.8000000075771,-0.06606468844733028 +175761,878.8050000075772,-0.06606139537188448 +175762,878.8100000075773,-0.06605810477220808 +175763,878.8150000075774,-0.0660548166452855 +175764,878.8200000075775,-0.0660515309881043 +175765,878.8250000075776,-0.06604824779765527 +175766,878.8300000075777,-0.06604496707093233 +175767,878.8350000075778,-0.06604168880493265 +175768,878.8400000075779,-0.06603841299665653 +175769,878.845000007578,-0.06603513964310748 +175770,878.8500000075782,-0.0660318687412922 +175771,878.8550000075783,-0.06602860028822059 +175772,878.8600000075784,-0.0660253342809057 +175773,878.8650000075785,-0.06602207071636383 +175774,878.8700000075786,-0.0660188095916144 +175775,878.8750000075787,-0.06601555090368007 +175776,878.8800000075788,-0.06601229464958666 +175777,878.8850000075789,-0.06600904082636322 +175778,878.890000007579,-0.06600578943104193 +175779,878.8950000075791,-0.06600254046065823 +175780,878.9000000075793,-0.06599929391225068 +175781,878.9050000075794,-0.0659960497828611 +175782,878.9100000075795,-0.06599280806953445 +175783,878.9150000075796,-0.06598956876931891 +175784,878.9200000075797,-0.06598633187926585 +175785,878.9250000075798,-0.06598309739642982 +175786,878.9300000075799,-0.06597986531786859 +175787,878.93500000758,-0.06597663564064307 +175788,878.9400000075801,-0.06597340836181742 +175789,878.9450000075802,-0.06597018347845897 +175790,878.9500000075803,-0.06596696098763823 +175791,878.9550000075805,-0.06596374088642892 +175792,878.9600000075806,-0.06596052317190795 +175793,878.9650000075807,-0.06595730784115543 +175794,878.9700000075808,-0.06595409489125463 +175795,878.9750000075809,-0.06595088431929205 +175796,878.980000007581,-0.0659476761223574 +175797,878.9850000075811,-0.06594447029754351 +175798,878.9900000075812,-0.06594126684194646 +175799,878.9950000075813,-0.0659380657526655 +175800,879.0000000075814,-0.06593486702680312 +175801,879.0050000075815,-0.06593167066146494 +175802,879.0100000075817,-0.06592847665375978 +175803,879.0150000075818,-0.06592528500079971 +175804,879.0200000075819,-0.06592209569969991 +175805,879.025000007582,-0.06591890874757882 +175806,879.0300000075821,-0.06591572414155804 +175807,879.0350000075822,-0.06591254187876235 +175808,879.0400000075823,-0.06590936195631975 +175809,879.0450000075824,-0.06590618437136142 +175810,879.0500000075825,-0.06590300912102173 +175811,879.0550000075826,-0.06589983620243822 +175812,879.0600000075827,-0.06589666561275166 +175813,879.0650000075829,-0.06589349734910598 +175814,879.070000007583,-0.06589033140864828 +175815,879.0750000075831,-0.06588716778852892 +175816,879.0800000075832,-0.06588400648590137 +175817,879.0850000075833,-0.06588084749792232 +175818,879.0900000075834,-0.06587769082175166 +175819,879.0950000075835,-0.06587453645455246 +175820,879.1000000075836,-0.06587138439349095 +175821,879.1050000075837,-0.06586823463573659 +175822,879.1100000075838,-0.06586508717846198 +175823,879.115000007584,-0.06586194201884293 +175824,879.120000007584,-0.06585879915405844 +175825,879.1250000075842,-0.06585565858129068 +175826,879.1300000075843,-0.06585252029772501 +175827,879.1350000075844,-0.06584938430054996 +175828,879.1400000075845,-0.06584625058695726 +175829,879.1450000075846,-0.0658431191541418 +175830,879.1500000075847,-0.06583998999930168 +175831,879.1550000075848,-0.06583686311963816 +175832,879.1600000075849,-0.06583373851235566 +175833,879.165000007585,-0.06583061617466184 +175834,879.1700000075851,-0.06582749610376745 +175835,879.1750000075853,-0.06582437829688649 +175836,879.1800000075854,-0.06582126275123612 +175837,879.1850000075855,-0.06581814946403665 +175838,879.1900000075856,-0.06581503843251159 +175839,879.1950000075857,-0.0658119296538876 +175840,879.2000000075858,-0.06580882312539456 +175841,879.2050000075859,-0.06580571884426546 +175842,879.210000007586,-0.0658026168077365 +175843,879.2150000075861,-0.06579951701304704 +175844,879.2200000075862,-0.06579641945743961 +175845,879.2250000075863,-0.06579332413815993 +175846,879.2300000075865,-0.06579023105245685 +175847,879.2350000075866,-0.0657871401975824 +175848,879.2400000075867,-0.0657840515707918 +175849,879.2450000075868,-0.06578096516934341 +175850,879.2500000075869,-0.06577788099049875 +175851,879.255000007587,-0.06577479903152252 +175852,879.2600000075871,-0.06577171928968258 +175853,879.2650000075872,-0.06576864176224996 +175854,879.2700000075873,-0.06576556644649881 +175855,879.2750000075874,-0.06576249333970648 +175856,879.2800000075875,-0.06575942243915348 +175857,879.2850000075877,-0.06575635374212342 +175858,879.2900000075878,-0.06575328724590315 +175859,879.2950000075879,-0.06575022294778261 +175860,879.300000007588,-0.06574716084505494 +175861,879.3050000075881,-0.06574410093501638 +175862,879.3100000075882,-0.06574104321496636 +175863,879.3150000075883,-0.06573798768220747 +175864,879.3200000075884,-0.0657349343340454 +175865,879.3250000075885,-0.06573188316778904 +175866,879.3300000075886,-0.0657288341807504 +175867,879.3350000075887,-0.06572578737024463 +175868,879.3400000075889,-0.06572274273359005 +175869,879.345000007589,-0.06571970026810811 +175870,879.3500000075891,-0.0657166599711234 +175871,879.3550000075892,-0.06571362183996365 +175872,879.3600000075893,-0.06571058587195974 +175873,879.3650000075894,-0.06570755206444565 +175874,879.3700000075895,-0.06570452041475856 +175875,879.3750000075896,-0.06570149092023875 +175876,879.3800000075897,-0.0656984635782296 +175877,879.3850000075898,-0.06569543838607772 +175878,879.39000000759,-0.06569241534113276 +175879,879.39500000759,-0.06568939444074753 +175880,879.4000000075902,-0.06568637568227799 +175881,879.4050000075903,-0.06568335906308319 +175882,879.4100000075904,-0.06568034458052534 +175883,879.4150000075905,-0.06567733223196977 +175884,879.4200000075906,-0.0656743220147849 +175885,879.4250000075907,-0.06567131392634232 +175886,879.4300000075908,-0.06566830796401671 +175887,879.4350000075909,-0.06566530412518587 +175888,879.440000007591,-0.06566230240723074 +175889,879.4450000075911,-0.06565930280753537 +175890,879.4500000075913,-0.0656563053234869 +175891,879.4550000075914,-0.0656533099524756 +175892,879.4600000075915,-0.06565031669189487 +175893,879.4650000075916,-0.0656473255391412 +175894,879.4700000075917,-0.06564433649161416 +175895,879.4750000075918,-0.06564134954671652 +175896,879.4800000075919,-0.06563836470185407 +175897,879.485000007592,-0.0656353819544357 +175898,879.4900000075921,-0.06563240130187348 +175899,879.4950000075922,-0.0656294227415825 +175900,879.5000000075923,-0.06562644627098102 +175901,879.5050000075925,-0.06562347188749036 +175902,879.5100000075926,-0.06562049958853491 +175903,879.5150000075927,-0.06561752937154221 +175904,879.5200000075928,-0.06561456123394285 +175905,879.5250000075929,-0.06561159517317056 +175906,879.530000007593,-0.06560863118666212 +175907,879.5350000075931,-0.06560566927185738 +175908,879.5400000075932,-0.06560270942619935 +175909,879.5450000075933,-0.06559975164713407 +175910,879.5500000075934,-0.06559679593211067 +175911,879.5550000075935,-0.06559384227858137 +175912,879.5600000075937,-0.06559089068400145 +175913,879.5650000075938,-0.0655879411458293 +175914,879.5700000075939,-0.06558499366152638 +175915,879.575000007594,-0.06558204822855723 +175916,879.5800000075941,-0.06557910484438942 +175917,879.5850000075942,-0.06557616350649365 +175918,879.5900000075943,-0.06557322421234363 +175919,879.5950000075944,-0.0655702869594162 +175920,879.6000000075945,-0.06556735174519125 +175921,879.6050000075946,-0.06556441856715167 +175922,879.6100000075947,-0.06556148742278353 +175923,879.6150000075949,-0.06555855830957584 +175924,879.620000007595,-0.06555563122502077 +175925,879.6250000075951,-0.06555270616661346 +175926,879.6300000075952,-0.06554978313185218 +175927,879.6350000075953,-0.06554686211823821 +175928,879.6400000075954,-0.0655439431232759 +175929,879.6450000075955,-0.06554102614447264 +175930,879.6500000075956,-0.06553811117933887 +175931,879.6550000075957,-0.06553519822538809 +175932,879.6600000075958,-0.06553228728013681 +175933,879.665000007596,-0.06552937834110463 +175934,879.6700000075961,-0.06552647140581416 +175935,879.6750000075962,-0.06552356647179106 +175936,879.6800000075963,-0.06552066353656401 +175937,879.6850000075964,-0.06551776259766473 +175938,879.6900000075965,-0.06551486365262801 +175939,879.6950000075966,-0.06551196669899162 +175940,879.7000000075967,-0.06550907173429639 +175941,879.7050000075968,-0.06550617875608616 +175942,879.7100000075969,-0.0655032877619078 +175943,879.715000007597,-0.06550039874931121 +175944,879.7200000075972,-0.06549751171584933 +175945,879.7250000075973,-0.06549462665907808 +175946,879.7300000075974,-0.06549174357655642 +175947,879.7350000075975,-0.06548886246584631 +175948,879.7400000075976,-0.06548598332451275 +175949,879.7450000075977,-0.06548310615012372 +175950,879.7500000075978,-0.06548023094025024 +175951,879.7550000075979,-0.06547735769246632 +175952,879.760000007598,-0.06547448640434897 +175953,879.7650000075981,-0.06547161707347822 +175954,879.7700000075982,-0.06546874969743709 +175955,879.7750000075984,-0.06546588427381161 +175956,879.7800000075985,-0.06546302080019079 +175957,879.7850000075986,-0.06546015927416664 +175958,879.7900000075987,-0.06545729969333419 +175959,879.7950000075988,-0.06545444205529143 +175960,879.8000000075989,-0.06545158635763933 +175961,879.805000007599,-0.0654487325979819 +175962,879.8100000075991,-0.06544588077392605 +175963,879.8150000075992,-0.06544303088308176 +175964,879.8200000075993,-0.06544018292306196 +175965,879.8250000075994,-0.06543733689148251 +175966,879.8300000075996,-0.06543449278596233 +175967,879.8350000075997,-0.06543165060412326 +175968,879.8400000075998,-0.06542881034359013 +175969,879.8450000075999,-0.06542597200199071 +175970,879.8500000076,-0.0654231355769558 +175971,879.8550000076001,-0.0654203010661191 +175972,879.8600000076002,-0.06541746846711731 +175973,879.8650000076003,-0.06541463777759007 +175974,879.8700000076004,-0.06541180899518001 +175975,879.8750000076005,-0.06540898211753268 +175976,879.8800000076006,-0.06540615714229664 +175977,879.8850000076008,-0.06540333406712333 +175978,879.8900000076009,-0.06540051288966718 +175979,879.895000007601,-0.0653976936075856 +175980,879.9000000076011,-0.06539487621853887 +175981,879.9050000076012,-0.06539206072019027 +175982,879.9100000076013,-0.06538924711020602 +175983,879.9150000076014,-0.06538643538625524 +175984,879.9200000076015,-0.06538362554601004 +175985,879.9250000076016,-0.06538081758714542 +175986,879.9300000076017,-0.06537801150733932 +175987,879.9350000076018,-0.06537520730427265 +175988,879.940000007602,-0.0653724049756292 +175989,879.9450000076021,-0.06536960451909571 +175990,879.9500000076022,-0.06536680593236183 +175991,879.9550000076023,-0.06536400921312016 +175992,879.9600000076024,-0.06536121435906618 +175993,879.9650000076025,-0.06535842136789832 +175994,879.9700000076026,-0.0653556302373179 +175995,879.9750000076027,-0.06535284096502916 +175996,879.9800000076028,-0.06535005354873925 +175997,879.9850000076029,-0.06534726798615825 +175998,879.990000007603,-0.06534448427499912 +175999,879.9950000076032,-0.06534170241297771 +176000,880.0000000076033,-0.0653389223978128 +176001,880.0050000076034,-0.06533614422722607 +176002,880.0100000076035,-0.06533336789894208 +176003,880.0150000076036,-0.06533059341068827 +176004,880.0200000076037,-0.065327820760195 +176005,880.0250000076038,-0.0653250499451955 +176006,880.0300000076039,-0.06532228096342592 +176007,880.035000007604,-0.06531951381262523 +176008,880.0400000076041,-0.06531674849053536 +176009,880.0450000076042,-0.06531398499490106 +176010,880.0500000076044,-0.06531122332346996 +176011,880.0550000076045,-0.06530846347399262 +176012,880.0600000076046,-0.06530570544422241 +176013,880.0650000076047,-0.06530294923191562 +176014,880.0700000076048,-0.06530019483483136 +176015,880.0750000076049,-0.06529744225073164 +176016,880.080000007605,-0.0652946914773813 +176017,880.0850000076051,-0.0652919425125481 +176018,880.0900000076052,-0.0652891953540026 +176019,880.0950000076053,-0.06528644999951823 +176020,880.1000000076054,-0.06528370644687129 +176021,880.1050000076056,-0.06528096469384091 +176022,880.1100000076057,-0.0652782247382091 +176023,880.1150000076058,-0.0652754865777607 +176024,880.1200000076059,-0.06527275021028335 +176025,880.125000007606,-0.0652700156335676 +176026,880.1300000076061,-0.0652672828454068 +176027,880.1350000076062,-0.06526455184359715 +176028,880.1400000076063,-0.06526182262593769 +176029,880.1450000076064,-0.06525909519023025 +176030,880.1500000076065,-0.06525636953427957 +176031,880.1550000076066,-0.06525364565589314 +176032,880.1600000076068,-0.06525092355288128 +176033,880.1650000076069,-0.0652482032230572 +176034,880.170000007607,-0.06524548466423685 +176035,880.1750000076071,-0.06524276787423905 +176036,880.1800000076072,-0.0652400528508854 +176037,880.1850000076073,-0.06523733959200032 +176038,880.1900000076074,-0.06523462809541106 +176039,880.1950000076075,-0.06523191835894765 +176040,880.2000000076076,-0.06522921038044296 +176041,880.2050000076077,-0.06522650415773262 +176042,880.2100000076078,-0.06522379968865509 +176043,880.215000007608,-0.0652210969710516 +176044,880.2200000076081,-0.06521839600276622 +176045,880.2250000076082,-0.06521569678164575 +176046,880.2300000076083,-0.06521299930553982 +176047,880.2350000076084,-0.06521030357230086 +176048,880.2400000076085,-0.06520760957978404 +176049,880.2450000076086,-0.06520491732584734 +176050,880.2500000076087,-0.06520222680835151 +176051,880.2550000076088,-0.0651995380251601 +176052,880.2600000076089,-0.0651968509741394 +176053,880.265000007609,-0.0651941656531585 +176054,880.2700000076092,-0.06519148206008923 +176055,880.2750000076093,-0.06518880019280623 +176056,880.2800000076094,-0.06518612004918685 +176057,880.2850000076095,-0.06518344162711126 +176058,880.2900000076096,-0.06518076492446236 +176059,880.2950000076097,-0.06517808993912577 +176060,880.3000000076098,-0.06517541666898993 +176061,880.3050000076099,-0.065172745111946 +176062,880.31000000761,-0.06517007526588789 +176063,880.3150000076101,-0.06516740712871226 +176064,880.3200000076102,-0.06516474069831851 +176065,880.3250000076104,-0.06516207597260877 +176066,880.3300000076105,-0.06515941294948796 +176067,880.3350000076106,-0.06515675162686367 +176068,880.3400000076107,-0.06515409200264625 +176069,880.3450000076108,-0.06515143407474881 +176070,880.3500000076109,-0.06514877784108712 +176071,880.355000007611,-0.06514612329957978 +176072,880.3600000076111,-0.065143470448148 +176073,880.3650000076112,-0.06514081928471578 +176074,880.3700000076113,-0.06513816980720982 +176075,880.3750000076114,-0.06513552201355954 +176076,880.3800000076116,-0.06513287590169706 +176077,880.3850000076117,-0.06513023146955725 +176078,880.3900000076118,-0.06512758871507762 +176079,880.3950000076119,-0.06512494763619846 +176080,880.400000007612,-0.06512230823086271 +176081,880.4050000076121,-0.06511967049701602 +176082,880.4100000076122,-0.06511703443260676 +176083,880.4150000076123,-0.06511440003558597 +176084,880.4200000076124,-0.06511176730390741 +176085,880.4250000076125,-0.0651091362355275 +176086,880.4300000076126,-0.06510650682840535 +176087,880.4350000076128,-0.06510387908050279 +176088,880.4400000076129,-0.06510125298978428 +176089,880.445000007613,-0.065098628554217 +176090,880.4500000076131,-0.06509600577177078 +176091,880.4550000076132,-0.06509338464041815 +176092,880.4600000076133,-0.06509076515813429 +176093,880.4650000076134,-0.06508814732289706 +176094,880.4700000076135,-0.06508553113268699 +176095,880.4750000076136,-0.06508291658548726 +176096,880.4800000076137,-0.06508030367928372 +176097,880.4850000076138,-0.06507769241206486 +176098,880.490000007614,-0.06507508278182188 +176099,880.4950000076141,-0.06507247478654857 +176100,880.5000000076142,-0.0650698684242414 +176101,880.5050000076143,-0.06506726369289947 +176102,880.5100000076144,-0.06506466059052457 +176103,880.5150000076145,-0.06506205911512108 +176104,880.5200000076146,-0.06505945926469606 +176105,880.5250000076147,-0.06505686103725918 +176106,880.5300000076148,-0.06505426443082273 +176107,880.5350000076149,-0.0650516694434017 +176108,880.540000007615,-0.06504907607301363 +176109,880.5450000076152,-0.06504648431767876 +176110,880.5500000076153,-0.06504389417541988 +176111,880.5550000076154,-0.06504130564426247 +176112,880.5600000076155,-0.06503871872223456 +176113,880.5650000076156,-0.06503613340736687 +176114,880.5700000076157,-0.06503354969769269 +176115,880.5750000076158,-0.06503096759124792 +176116,880.5800000076159,-0.06502838708607106 +176117,880.585000007616,-0.06502580818020327 +176118,880.5900000076161,-0.06502323087168824 +176119,880.5950000076162,-0.06502065515857233 +176120,880.6000000076164,-0.06501808103890443 +176121,880.6050000076165,-0.06501550851073606 +176122,880.6100000076166,-0.06501293757212137 +176123,880.6150000076167,-0.06501036822111704 +176124,880.6200000076168,-0.06500780045578233 +176125,880.6250000076169,-0.06500523427417915 +176126,880.630000007617,-0.06500266967437193 +176127,880.6350000076171,-0.06500010665442771 +176128,880.6400000076172,-0.0649975452124161 +176129,880.6450000076173,-0.06499498534640928 +176130,880.6500000076175,-0.06499242705448201 +176131,880.6550000076176,-0.0649898703347116 +176132,880.6600000076177,-0.06498731518517793 +176133,880.6650000076178,-0.06498476160396348 +176134,880.6700000076179,-0.06498220958915324 +176135,880.675000007618,-0.06497965913883479 +176136,880.6800000076181,-0.06497711025109826 +176137,880.6850000076182,-0.0649745629240363 +176138,880.6900000076183,-0.06497201715574417 +176139,880.6950000076184,-0.06496947294431962 +176140,880.7000000076185,-0.06496693028786296 +176141,880.7050000076187,-0.06496438918447707 +176142,880.7100000076188,-0.06496184963226735 +176143,880.7150000076189,-0.06495931162934171 +176144,880.720000007619,-0.06495677517381064 +176145,880.7250000076191,-0.06495424026378713 +176146,880.7300000076192,-0.0649517068973867 +176147,880.7350000076193,-0.06494917507272742 +176148,880.7400000076194,-0.06494664478792984 +176149,880.7450000076195,-0.06494411604111709 +176150,880.7500000076196,-0.06494158883041476 +176151,880.7550000076197,-0.06493906315395098 +176152,880.7600000076199,-0.06493653900985641 +176153,880.76500000762,-0.06493401639626417 +176154,880.7700000076201,-0.06493149531130993 +176155,880.7750000076202,-0.06492897575313185 +176156,880.7800000076203,-0.0649264577198706 +176157,880.7850000076204,-0.06492394120966934 +176158,880.7900000076205,-0.0649214262206737 +176159,880.7950000076206,-0.06491891275103188 +176160,880.8000000076207,-0.06491640079889449 +176161,880.8050000076208,-0.06491389036241466 +176162,880.8100000076209,-0.064911381439748 +176163,880.815000007621,-0.06490887402905263 +176164,880.8200000076212,-0.06490636812848909 +176165,880.8250000076213,-0.06490386373622048 +176166,880.8300000076214,-0.06490136085041229 +176167,880.8350000076215,-0.06489885946923254 +176168,880.8400000076216,-0.06489635959085172 +176169,880.8450000076217,-0.06489386121344272 +176170,880.8500000076218,-0.06489136433518097 +176171,880.8550000076219,-0.06488886895424432 +176172,880.860000007622,-0.0648863750688131 +176173,880.8650000076221,-0.0648838826770701 +176174,880.8700000076223,-0.06488139177720051 +176175,880.8750000076224,-0.06487890236739204 +176176,880.8800000076225,-0.06487641444583479 +176177,880.8850000076226,-0.06487392801072138 +176178,880.8900000076227,-0.06487144306024678 +176179,880.8950000076228,-0.06486895959260847 +176180,880.9000000076229,-0.06486647760600632 +176181,880.905000007623,-0.06486399709864266 +176182,880.9100000076231,-0.06486151806872226 +176183,880.9150000076232,-0.0648590405144523 +176184,880.9200000076233,-0.0648565644340424 +176185,880.9250000076235,-0.06485408982570458 +176186,880.9300000076236,-0.0648516166876533 +176187,880.9350000076237,-0.06484914501810543 +176188,880.9400000076238,-0.06484667481528027 +176189,880.9450000076239,-0.06484420607739952 +176190,880.950000007624,-0.06484173880268729 +176191,880.9550000076241,-0.0648392729893701 +176192,880.9600000076242,-0.0648368086356769 +176193,880.9650000076243,-0.06483434573983897 +176194,880.9700000076244,-0.06483188430009007 +176195,880.9750000076245,-0.06482942431466632 +176196,880.9800000076247,-0.0648269657818062 +176197,880.9850000076248,-0.06482450869975068 +176198,880.9900000076249,-0.064822053066743 +176199,880.995000007625,-0.0648195988810289 +176200,881.0000000076251,-0.0648171461408564 +176201,881.0050000076252,-0.06481469484447595 +176202,881.0100000076253,-0.06481224499014039 +176203,881.0150000076254,-0.06480979657610492 +176204,881.0200000076255,-0.06480734960062709 +176205,881.0250000076256,-0.06480490406196687 +176206,881.0300000076257,-0.06480245995838656 +176207,881.0350000076259,-0.06480001728815081 +176208,881.040000007626,-0.06479757604952668 +176209,881.0450000076261,-0.06479513624078356 +176210,881.0500000076262,-0.0647926978601932 +176211,881.0550000076263,-0.0647902609060297 +176212,881.0600000076264,-0.06478782537656952 +176213,881.0650000076265,-0.06478539127009145 +176214,881.0700000076266,-0.06478295858487666 +176215,881.0750000076267,-0.06478052731920865 +176216,881.0800000076268,-0.06477809747137321 +176217,881.085000007627,-0.06477566903965853 +176218,881.090000007627,-0.06477324202235514 +176219,881.0950000076272,-0.06477081641775584 +176220,881.1000000076273,-0.06476839222415581 +176221,881.1050000076274,-0.06476596943985256 +176222,881.1100000076275,-0.06476354806314591 +176223,881.1150000076276,-0.06476112809233797 +176224,881.1200000076277,-0.06475870952573322 +176225,881.1250000076278,-0.06475629236163843 +176226,881.1300000076279,-0.06475387659836268 +176227,881.135000007628,-0.06475146223421739 +176228,881.1400000076281,-0.06474904926751625 +176229,881.1450000076283,-0.06474663769657528 +176230,881.1500000076284,-0.0647442275197128 +176231,881.1550000076285,-0.06474181873524941 +176232,881.1600000076286,-0.06473941134150804 +176233,881.1650000076287,-0.0647370053368139 +176234,881.1700000076288,-0.06473460071949448 +176235,881.1750000076289,-0.06473219748787958 +176236,881.180000007629,-0.06472979564030126 +176237,881.1850000076291,-0.0647273951750939 +176238,881.1900000076292,-0.06472499609059415 +176239,881.1950000076293,-0.06472259838514091 +176240,881.2000000076295,-0.0647202020570754 +176241,881.2050000076296,-0.06471780710474107 +176242,881.2100000076297,-0.06471541352648369 +176243,881.2150000076298,-0.06471302132065125 +176244,881.2200000076299,-0.06471063048559404 +176245,881.22500000763,-0.06470824101966459 +176246,881.2300000076301,-0.0647058529212177 +176247,881.2350000076302,-0.06470346618861042 +176248,881.2400000076303,-0.06470108082020208 +176249,881.2450000076304,-0.06469869681435425 +176250,881.2500000076305,-0.06469631416943074 +176251,881.2550000076307,-0.06469393288379759 +176252,881.2600000076308,-0.06469155295582313 +176253,881.2650000076309,-0.0646891743838779 +176254,881.270000007631,-0.0646867971663347 +176255,881.2750000076311,-0.06468442130156854 +176256,881.2800000076312,-0.06468204678795668 +176257,881.2850000076313,-0.06467967362387861 +176258,881.2900000076314,-0.06467730180771605 +176259,881.2950000076315,-0.06467493133785295 +176260,881.3000000076316,-0.06467256221267545 +176261,881.3050000076317,-0.06467019443057195 +176262,881.3100000076319,-0.06466782798993308 +176263,881.315000007632,-0.06466546288915163 +176264,881.3200000076321,-0.06466309912662264 +176265,881.3250000076322,-0.06466073670074336 +176266,881.3300000076323,-0.06465837560991324 +176267,881.3350000076324,-0.06465601585253393 +176268,881.3400000076325,-0.06465365742700929 +176269,881.3450000076326,-0.06465130033174539 +176270,881.3500000076327,-0.06464894456515045 +176271,881.3550000076328,-0.06464659012563496 +176272,881.360000007633,-0.06464423701161154 +176273,881.3650000076331,-0.06464188522149501 +176274,881.3700000076332,-0.0646395347537024 +176275,881.3750000076333,-0.06463718560665291 +176276,881.3800000076334,-0.0646348377787679 +176277,881.3850000076335,-0.06463249126847095 +176278,881.3900000076336,-0.06463014607418781 +176279,881.3950000076337,-0.06462780219434634 +176280,881.4000000076338,-0.06462545962737666 +176281,881.4050000076339,-0.06462311837171099 +176282,881.410000007634,-0.06462077842578376 +176283,881.4150000076341,-0.06461843978803154 +176284,881.4200000076343,-0.06461610245689306 +176285,881.4250000076344,-0.06461376643080922 +176286,881.4300000076345,-0.06461143170822306 +176287,881.4350000076346,-0.0646090982875798 +176288,881.4400000076347,-0.06460676616732677 +176289,881.4450000076348,-0.06460443534591348 +176290,881.4500000076349,-0.06460210582179156 +176291,881.455000007635,-0.0645997775934148 +176292,881.4600000076351,-0.06459745065923914 +176293,881.4650000076352,-0.06459512501772259 +176294,881.4700000076353,-0.06459280066732541 +176295,881.4750000076355,-0.06459047760650988 +176296,881.4800000076356,-0.06458815583374046 +176297,881.4850000076357,-0.06458583534748374 +176298,881.4900000076358,-0.06458351614620843 +176299,881.4950000076359,-0.06458119822838534 +176300,881.500000007636,-0.06457888159248744 +176301,881.5050000076361,-0.06457656623698976 +176302,881.5100000076362,-0.0645742521603695 +176303,881.5150000076363,-0.06457193936110593 +176304,881.5200000076364,-0.06456962783768046 +176305,881.5250000076365,-0.06456731758857658 +176306,881.5300000076367,-0.06456500861227987 +176307,881.5350000076368,-0.06456270090727806 +176308,881.5400000076369,-0.06456039447206094 +176309,881.545000007637,-0.0645580893051204 +176310,881.5500000076371,-0.06455578540495045 +176311,881.5550000076372,-0.06455348277004716 +176312,881.5600000076373,-0.06455118139890868 +176313,881.5650000076374,-0.06454888129003529 +176314,881.5700000076375,-0.06454658244192929 +176315,881.5750000076376,-0.06454428485309512 +176316,881.5800000076378,-0.06454198852203927 +176317,881.5850000076379,-0.06453969344727029 +176318,881.590000007638,-0.06453739962729883 +176319,881.5950000076381,-0.06453510706063759 +176320,881.6000000076382,-0.06453281574580136 +176321,881.6050000076383,-0.06453052568130697 +176322,881.6100000076384,-0.06452823686567333 +176323,881.6150000076385,-0.06452594929742138 +176324,881.6200000076386,-0.06452366297507416 +176325,881.6250000076387,-0.06452137789715673 +176326,881.6300000076388,-0.06451909406219622 +176327,881.635000007639,-0.0645168114687218 +176328,881.6400000076391,-0.06451453011526469 +176329,881.6450000076392,-0.06451225000035817 +176330,881.6500000076393,-0.06450997112253752 +176331,881.6550000076394,-0.0645076934803401 +176332,881.6600000076395,-0.06450541707230531 +176333,881.6650000076396,-0.06450314189697452 +176334,881.6700000076397,-0.06450086795289123 +176335,881.6750000076398,-0.06449859523860087 +176336,881.6800000076399,-0.06449632375265096 +176337,881.68500000764,-0.06449405349359104 +176338,881.6900000076402,-0.06449178445997264 +176339,881.6950000076403,-0.06448951665034933 +176340,881.7000000076404,-0.06448725006327669 +176341,881.7050000076405,-0.06448498469731233 +176342,881.7100000076406,-0.06448272055101585 +176343,881.7150000076407,-0.06448045762294885 +176344,881.7200000076408,-0.06447819591167497 +176345,881.7250000076409,-0.06447593541575984 +176346,881.730000007641,-0.06447367613377107 +176347,881.7350000076411,-0.0644714180642783 +176348,881.7400000076412,-0.06446916120585314 +176349,881.7450000076414,-0.06446690555706923 +176350,881.7500000076415,-0.06446465111650214 +176351,881.7550000076416,-0.06446239788272949 +176352,881.7600000076417,-0.06446014585433087 +176353,881.7650000076418,-0.06445789502988782 +176354,881.7700000076419,-0.06445564540798387 +176355,881.775000007642,-0.0644533969872046 +176356,881.7800000076421,-0.06445114976613746 +176357,881.7850000076422,-0.06444890374337196 +176358,881.7900000076423,-0.06444665891749952 +176359,881.7950000076424,-0.06444441528711357 +176360,881.8000000076426,-0.06444217285080948 +176361,881.8050000076427,-0.0644399316071846 +176362,881.8100000076428,-0.06443769155483822 +176363,881.8150000076429,-0.06443545269237162 +176364,881.820000007643,-0.06443321501838803 +176365,881.8250000076431,-0.06443097853149259 +176366,881.8300000076432,-0.06442874323029243 +176367,881.8350000076433,-0.06442650911339665 +176368,881.8400000076434,-0.06442427617941623 +176369,881.8450000076435,-0.06442204442696418 +176370,881.8500000076436,-0.06441981385465537 +176371,881.8550000076438,-0.06441758446110664 +176372,881.8600000076439,-0.06441535624493679 +176373,881.865000007644,-0.06441312920476652 +176374,881.8700000076441,-0.06441090333921848 +176375,881.8750000076442,-0.06440867864691724 +176376,881.8800000076443,-0.0644064551264893 +176377,881.8850000076444,-0.0644042327765631 +176378,881.8900000076445,-0.06440201159576896 +176379,881.8950000076446,-0.06439979158273915 +176380,881.9000000076447,-0.06439757273610784 +176381,881.9050000076448,-0.06439535505451117 +176382,881.910000007645,-0.06439313853658712 +176383,881.9150000076451,-0.0643909231809756 +176384,881.9200000076452,-0.06438870898631842 +176385,881.9250000076453,-0.06438649595125934 +176386,881.9300000076454,-0.06438428407444396 +176387,881.9350000076455,-0.06438207335451984 +176388,881.9400000076456,-0.0643798637901364 +176389,881.9450000076457,-0.06437765537994494 +176390,881.9500000076458,-0.06437544812259868 +176391,881.9550000076459,-0.06437324201675274 +176392,881.960000007646,-0.06437103706106409 +176393,881.9650000076462,-0.06436883325419161 +176394,881.9700000076463,-0.06436663059479607 +176395,881.9750000076464,-0.06436442908154008 +176396,881.9800000076465,-0.0643622287130882 +176397,881.9850000076466,-0.06436002948810676 +176398,881.9900000076467,-0.06435783140526408 +176399,881.9950000076468,-0.06435563446323025 +176400,882.0000000076469,-0.06435343866067732 +176401,882.005000007647,-0.06435124399627912 +176402,882.0100000076471,-0.06434905046871137 +176403,882.0150000076472,-0.0643468580766517 +176404,882.0200000076474,-0.06434466681877954 +176405,882.0250000076475,-0.0643424766937762 +176406,882.0300000076476,-0.06434028770032482 +176407,882.0350000076477,-0.06433809983711043 +176408,882.0400000076478,-0.06433591310281989 +176409,882.0450000076479,-0.06433372749614188 +176410,882.050000007648,-0.064331543015767 +176411,882.0550000076481,-0.06432935966038758 +176412,882.0600000076482,-0.0643271774286979 +176413,882.0650000076483,-0.06432499631939399 +176414,882.0700000076484,-0.06432281633117377 +176415,882.0750000076486,-0.06432063746273696 +176416,882.0800000076487,-0.06431845971278513 +176417,882.0850000076488,-0.06431628308002167 +176418,882.0900000076489,-0.06431410756315181 +176419,882.095000007649,-0.06431193316088256 +176420,882.1000000076491,-0.06430975987192278 +176421,882.1050000076492,-0.06430758769498315 +176422,882.1100000076493,-0.06430541662877617 +176423,882.1150000076494,-0.06430324667201615 +176424,882.1200000076495,-0.06430107782341916 +176425,882.1250000076496,-0.06429891008170317 +176426,882.1300000076498,-0.06429674344558788 +176427,882.1350000076499,-0.06429457791379484 +176428,882.14000000765,-0.06429241348504737 +176429,882.1450000076501,-0.06429025015807059 +176430,882.1500000076502,-0.06428808793159146 +176431,882.1550000076503,-0.06428592680433869 +176432,882.1600000076504,-0.06428376677504277 +176433,882.1650000076505,-0.06428160784243601 +176434,882.1700000076506,-0.06427945000525252 +176435,882.1750000076507,-0.06427729326222818 +176436,882.1800000076508,-0.06427513761210062 +176437,882.185000007651,-0.06427298305360929 +176438,882.1900000076511,-0.06427082958549542 +176439,882.1950000076512,-0.06426867720650198 +176440,882.2000000076513,-0.06426652591537374 +176441,882.2050000076514,-0.06426437571085722 +176442,882.2100000076515,-0.06426222659170074 +176443,882.2150000076516,-0.06426007855665436 +176444,882.2200000076517,-0.06425793160446992 +176445,882.2250000076518,-0.064255785733901 +176446,882.2300000076519,-0.06425364094370298 +176447,882.235000007652,-0.06425149723263295 +176448,882.2400000076522,-0.06424935459944976 +176449,882.2450000076523,-0.06424721304291406 +176450,882.2500000076524,-0.06424507256178817 +176451,882.2550000076525,-0.06424293315483626 +176452,882.2600000076526,-0.06424079482082413 +176453,882.2650000076527,-0.06423865755851943 +176454,882.2700000076528,-0.06423652136669149 +176455,882.2750000076529,-0.06423438624411137 +176456,882.280000007653,-0.06423225218955192 +176457,882.2850000076531,-0.06423011920178766 +176458,882.2900000076532,-0.06422798727959489 +176459,882.2950000076534,-0.0642258564217516 +176460,882.3000000076535,-0.06422372662703756 +176461,882.3050000076536,-0.06422159789423418 +176462,882.3100000076537,-0.0642194702221247 +176463,882.3150000076538,-0.064217343609494 +176464,882.3200000076539,-0.06421521805512868 +176465,882.325000007654,-0.06421309355781714 +176466,882.3300000076541,-0.06421097011634935 +176467,882.3350000076542,-0.06420884772951714 +176468,882.3400000076543,-0.06420672639611395 +176469,882.3450000076544,-0.06420460611493496 +176470,882.3500000076546,-0.06420248688477705 +176471,882.3550000076547,-0.06420036870443879 +176472,882.3600000076548,-0.06419825157272048 +176473,882.3650000076549,-0.0641961354884241 +176474,882.370000007655,-0.06419402045035331 +176475,882.3750000076551,-0.06419190645731349 +176476,882.3800000076552,-0.06418979350811167 +176477,882.3850000076553,-0.06418768160155663 +176478,882.3900000076554,-0.06418557073645881 +176479,882.3950000076555,-0.06418346091163028 +176480,882.4000000076556,-0.06418135212588486 +176481,882.4050000076558,-0.06417924437803803 +176482,882.4100000076559,-0.06417713766690693 +176483,882.415000007656,-0.0641750319913104 +176484,882.4200000076561,-0.06417292735006895 +176485,882.4250000076562,-0.06417082374200471 +176486,882.4300000076563,-0.06416872116594156 +176487,882.4350000076564,-0.064166619620705 +176488,882.4400000076565,-0.06416451910512216 +176489,882.4450000076566,-0.06416241961802192 +176490,882.4500000076567,-0.06416032115823475 +176491,882.4550000076568,-0.06415822372459279 +176492,882.460000007657,-0.06415612731592982 +176493,882.4650000076571,-0.06415403193108132 +176494,882.4700000076572,-0.06415193756888439 +176495,882.4750000076573,-0.06414984422817778 +176496,882.4800000076574,-0.06414775190780189 +176497,882.4850000076575,-0.06414566060659875 +176498,882.4900000076576,-0.06414357032341204 +176499,882.4950000076577,-0.06414148105708711 +176500,882.5000000076578,-0.06413939280647087 +176501,882.5050000076579,-0.06413730557041195 +176502,882.510000007658,-0.06413521934776055 +176503,882.5150000076582,-0.06413313413736856 +176504,882.5200000076583,-0.06413104993808943 +176505,882.5250000076584,-0.0641289667487783 +176506,882.5300000076585,-0.06412688456829187 +176507,882.5350000076586,-0.06412480339548852 +176508,882.5400000076587,-0.06412272322922823 +176509,882.5450000076588,-0.06412064406837259 +176510,882.5500000076589,-0.06411856591178479 +176511,882.555000007659,-0.06411648875832965 +176512,882.5600000076591,-0.06411441260687363 +176513,882.5650000076593,-0.06411233745628475 +176514,882.5700000076594,-0.06411026330543265 +176515,882.5750000076595,-0.06410819015318861 +176516,882.5800000076596,-0.06410611799842544 +176517,882.5850000076597,-0.06410404684001764 +176518,882.5900000076598,-0.06410197667684121 +176519,882.5950000076599,-0.06409990750777383 +176520,882.60000000766,-0.06409783933169474 +176521,882.6050000076601,-0.06409577214748477 +176522,882.6100000076602,-0.06409370595402632 +176523,882.6150000076603,-0.06409164075020342 +176524,882.6200000076605,-0.06408957653490165 +176525,882.6250000076606,-0.06408751330700817 +176526,882.6300000076607,-0.06408545106541176 +176527,882.6350000076608,-0.06408338980900276 +176528,882.6400000076609,-0.06408132953667306 +176529,882.645000007661,-0.06407927024731613 +176530,882.6500000076611,-0.06407721193982707 +176531,882.6550000076612,-0.06407515461310247 +176532,882.6600000076613,-0.06407309826604053 +176533,882.6650000076614,-0.06407104289754102 +176534,882.6700000076615,-0.06406898850650525 +176535,882.6750000076617,-0.06406693509183611 +176536,882.6800000076618,-0.06406488265243805 +176537,882.6850000076619,-0.06406283118721706 +176538,882.690000007662,-0.0640607806950807 +176539,882.6950000076621,-0.06405873117493807 +176540,882.7000000076622,-0.06405668262569986 +176541,882.7050000076623,-0.06405463504627822 +176542,882.7100000076624,-0.06405258843558696 +176543,882.7150000076625,-0.06405054279254135 +176544,882.7200000076626,-0.06404849811605824 +176545,882.7250000076627,-0.064046454405056 +176546,882.7300000076629,-0.06404441165845458 +176547,882.735000007663,-0.06404236987517539 +176548,882.7400000076631,-0.06404032905414145 +176549,882.7450000076632,-0.06403828919427727 +176550,882.7500000076633,-0.0640362502945089 +176551,882.7550000076634,-0.06403421235376394 +176552,882.7600000076635,-0.06403217537097146 +176553,882.7650000076636,-0.06403013934506212 +176554,882.7700000076637,-0.06402810427496805 +176555,882.7750000076638,-0.06402607015962292 +176556,882.780000007664,-0.06402403699796191 +176557,882.785000007664,-0.06402200478892175 +176558,882.7900000076642,-0.06401997353144062 +176559,882.7950000076643,-0.06401794322445827 +176560,882.8000000076644,-0.06401591386691591 +176561,882.8050000076645,-0.0640138854577563 +176562,882.8100000076646,-0.0640118579959237 +176563,882.8150000076647,-0.06400983148036382 +176564,882.8200000076648,-0.06400780591002392 +176565,882.8250000076649,-0.06400578128385277 +176566,882.830000007665,-0.0640037576008006 +176567,882.8350000076651,-0.06400173485981914 +176568,882.8400000076653,-0.06399971305986163 +176569,882.8450000076654,-0.06399769219988281 +176570,882.8500000076655,-0.06399567227883887 +176571,882.8550000076656,-0.06399365329568751 +176572,882.8600000076657,-0.06399163524938792 +176573,882.8650000076658,-0.06398961813890074 +176574,882.8700000076659,-0.06398760196318815 +176575,882.875000007666,-0.06398558672121374 +176576,882.8800000076661,-0.06398357241194264 +176577,882.8850000076662,-0.06398155903434138 +176578,882.8900000076663,-0.06397954658737806 +176579,882.8950000076665,-0.06397753507002214 +176580,882.9000000076666,-0.06397552448124465 +176581,882.9050000076667,-0.06397351482001801 +176582,882.9100000076668,-0.06397150608531614 +176583,882.9150000076669,-0.06396949827611441 +176584,882.920000007667,-0.06396749139138967 +176585,882.9250000076671,-0.06396548543012019 +176586,882.9300000076672,-0.06396348039128576 +176587,882.9350000076673,-0.06396147627386754 +176588,882.9400000076674,-0.06395947307684821 +176589,882.9450000076675,-0.06395747079921187 +176590,882.9500000076677,-0.06395546943994405 +176591,882.9550000076678,-0.0639534689980318 +176592,882.9600000076679,-0.06395146947246351 +176593,882.965000007668,-0.0639494708622291 +176594,882.9700000076681,-0.0639474731663199 +176595,882.9750000076682,-0.06394547638372865 +176596,882.9800000076683,-0.06394348051344956 +176597,882.9850000076684,-0.06394148555447826 +176598,882.9900000076685,-0.06393949150581182 +176599,882.9950000076686,-0.06393749836644874 +176600,883.0000000076687,-0.06393550613538893 +176601,883.0050000076689,-0.06393351481163374 +176602,883.010000007669,-0.06393152439418597 +176603,883.0150000076691,-0.06392953488204979 +176604,883.0200000076692,-0.06392754627423083 +176605,883.0250000076693,-0.06392555856973613 +176606,883.0300000076694,-0.06392357176757411 +176607,883.0350000076695,-0.06392158586675467 +176608,883.0400000076696,-0.06391960086628908 +176609,883.0450000076697,-0.06391761676519 +176610,883.0500000076698,-0.06391563356247157 +176611,883.05500000767,-0.06391365125714928 +176612,883.06000000767,-0.06391166984824001 +176613,883.0650000076702,-0.06390968933476211 +176614,883.0700000076703,-0.06390770971573527 +176615,883.0750000076704,-0.0639057309901806 +176616,883.0800000076705,-0.06390375315712062 +176617,883.0850000076706,-0.06390177621557921 +176618,883.0900000076707,-0.06389980016458169 +176619,883.0950000076708,-0.06389782500315472 +176620,883.1000000076709,-0.06389585073032639 +176621,883.105000007671,-0.06389387734512615 +176622,883.1100000076711,-0.06389190484658488 +176623,883.1150000076713,-0.06388993323373476 +176624,883.1200000076714,-0.06388796250560945 +176625,883.1250000076715,-0.06388599266124391 +176626,883.1300000076716,-0.06388402369967451 +176627,883.1350000076717,-0.06388205561993901 +176628,883.1400000076718,-0.06388008842107651 +176629,883.1450000076719,-0.06387812210212751 +176630,883.150000007672,-0.06387615666213387 +176631,883.1550000076721,-0.06387419210013881 +176632,883.1600000076722,-0.06387222841518694 +176633,883.1650000076723,-0.0638702656063242 +176634,883.1700000076725,-0.06386830367259791 +176635,883.1750000076726,-0.06386634261305675 +176636,883.1800000076727,-0.06386438242675077 +176637,883.1850000076728,-0.06386242311273135 +176638,883.1900000076729,-0.06386046467005124 +176639,883.195000007673,-0.06385850709776456 +176640,883.2000000076731,-0.06385655039492674 +176641,883.2050000076732,-0.06385459456059461 +176642,883.2100000076733,-0.06385263959382628 +176643,883.2150000076734,-0.06385068549368128 +176644,883.2200000076735,-0.06384873225922044 +176645,883.2250000076737,-0.06384677988950592 +176646,883.2300000076738,-0.06384482838360127 +176647,883.2350000076739,-0.06384287774057132 +176648,883.240000007674,-0.06384092795948226 +176649,883.2450000076741,-0.06383897903940162 +176650,883.2500000076742,-0.06383703097939827 +176651,883.2550000076743,-0.06383508377854241 +176652,883.2600000076744,-0.06383313743590553 +176653,883.2650000076745,-0.06383119195056049 +176654,883.2700000076746,-0.06382924732158143 +176655,883.2750000076747,-0.06382730354804388 +176656,883.2800000076749,-0.06382536062902462 +176657,883.285000007675,-0.0638234185636018 +176658,883.2900000076751,-0.06382147735085485 +176659,883.2950000076752,-0.06381953698986456 +176660,883.3000000076753,-0.06381759747971298 +176661,883.3050000076754,-0.06381565881948352 +176662,883.3100000076755,-0.06381372100826085 +176663,883.3150000076756,-0.06381178404513102 +176664,883.3200000076757,-0.0638098479291813 +176665,883.3250000076758,-0.06380791265950034 +176666,883.330000007676,-0.06380597823517803 +176667,883.3350000076761,-0.06380404465530562 +176668,883.3400000076762,-0.06380211191897561 +176669,883.3450000076763,-0.06380018002528182 +176670,883.3500000076764,-0.06379824897331936 +176671,883.3550000076765,-0.06379631876218464 +176672,883.3600000076766,-0.06379438939097536 +176673,883.3650000076767,-0.06379246085879049 +176674,883.3700000076768,-0.06379053316473032 +176675,883.3750000076769,-0.0637886063078964 +176676,883.380000007677,-0.06378668028739158 +176677,883.3850000076771,-0.06378475510232 +176678,883.3900000076773,-0.06378283075178703 +176679,883.3950000076774,-0.0637809072348994 +176680,883.4000000076775,-0.06377898455076506 +176681,883.4050000076776,-0.06377706269849324 +176682,883.4100000076777,-0.06377514167719446 +176683,883.4150000076778,-0.06377322148598048 +176684,883.4200000076779,-0.06377130212396441 +176685,883.425000007678,-0.06376938359026052 +176686,883.4300000076781,-0.06376746588398444 +176687,883.4350000076782,-0.06376554900425298 +176688,883.4400000076783,-0.06376363295018429 +176689,883.4450000076785,-0.06376171772089774 +176690,883.4500000076786,-0.06375980331551397 +176691,883.4550000076787,-0.06375788973315485 +176692,883.4600000076788,-0.06375597697294356 +176693,883.4650000076789,-0.06375406503400448 +176694,883.470000007679,-0.0637521539154633 +176695,883.4750000076791,-0.06375024361644689 +176696,883.4800000076792,-0.06374833413608343 +176697,883.4850000076793,-0.06374642547350232 +176698,883.4900000076794,-0.06374451762783419 +176699,883.4950000076796,-0.06374261059821093 +176700,883.5000000076797,-0.0637407043837657 +176701,883.5050000076798,-0.06373879898363284 +176702,883.5100000076799,-0.06373689439694798 +176703,883.51500000768,-0.06373499062284796 +176704,883.5200000076801,-0.06373308766047085 +176705,883.5250000076802,-0.063731185508956 +176706,883.5300000076803,-0.06372928416744392 +176707,883.5350000076804,-0.06372738363507639 +176708,883.5400000076805,-0.06372548391099642 +176709,883.5450000076806,-0.06372358499434823 +176710,883.5500000076808,-0.06372168688427728 +176711,883.5550000076809,-0.06371978957993024 +176712,883.560000007681,-0.063717893080455 +176713,883.5650000076811,-0.06371599738500068 +176714,883.5700000076812,-0.0637141024927176 +176715,883.5750000076813,-0.06371220840275732 +176716,883.5800000076814,-0.0637103151142726 +176717,883.5850000076815,-0.06370842262641739 +176718,883.5900000076816,-0.06370653093834688 +176719,883.5950000076817,-0.06370464004921748 +176720,883.6000000076818,-0.0637027499581868 +176721,883.605000007682,-0.0637008606644136 +176722,883.6100000076821,-0.06369897216705793 +176723,883.6150000076822,-0.06369708446528097 +176724,883.6200000076823,-0.06369519755824513 +176725,883.6250000076824,-0.06369331144511402 +176726,883.6300000076825,-0.06369142612505245 +176727,883.6350000076826,-0.0636895415972264 +176728,883.6400000076827,-0.06368765786080308 +176729,883.6450000076828,-0.06368577491495087 +176730,883.6500000076829,-0.06368389275883934 +176731,883.655000007683,-0.06368201139163926 +176732,883.6600000076832,-0.06368013081252258 +176733,883.6650000076833,-0.06367825102066241 +176734,883.6700000076834,-0.06367637201523307 +176735,883.6750000076835,-0.06367449379541007 +176736,883.6800000076836,-0.0636726163603701 +176737,883.6850000076837,-0.06367073970929099 +176738,883.6900000076838,-0.06366886384135179 +176739,883.6950000076839,-0.06366698875573268 +176740,883.700000007684,-0.06366511445161506 +176741,883.7050000076841,-0.06366324092818147 +176742,883.7100000076842,-0.06366136818461564 +176743,883.7150000076844,-0.06365949622010246 +176744,883.7200000076845,-0.06365762503382796 +176745,883.7250000076846,-0.06365575462497941 +176746,883.7300000076847,-0.06365388499274514 +176747,883.7350000076848,-0.06365201613631473 +176748,883.7400000076849,-0.06365014805487887 +176749,883.745000007685,-0.06364828074762942 +176750,883.7500000076851,-0.06364641421375938 +176751,883.7550000076852,-0.06364454845246295 +176752,883.7600000076853,-0.06364268346293547 +176753,883.7650000076854,-0.06364081924437337 +176754,883.7700000076856,-0.06363895579597433 +176755,883.7750000076857,-0.06363709311693708 +176756,883.7800000076858,-0.06363523120646157 +176757,883.7850000076859,-0.06363337006374886 +176758,883.790000007686,-0.06363150968800116 +176759,883.7950000076861,-0.06362965007842182 +176760,883.8000000076862,-0.06362779123421534 +176761,883.8050000076863,-0.06362593315458734 +176762,883.8100000076864,-0.0636240758387446 +176763,883.8150000076865,-0.06362221928589501 +176764,883.8200000076866,-0.06362036349524762 +176765,883.8250000076868,-0.06361850846601258 +176766,883.8300000076869,-0.06361665419740122 +176767,883.835000007687,-0.06361480068862593 +176768,883.8400000076871,-0.0636129479389003 +176769,883.8450000076872,-0.06361109594743898 +176770,883.8500000076873,-0.0636092447134578 +176771,883.8550000076874,-0.06360739423617366 +176772,883.8600000076875,-0.06360554451480462 +176773,883.8650000076876,-0.06360369554856984 +176774,883.8700000076877,-0.06360184733668964 +176775,883.8750000076878,-0.06359999987838537 +176776,883.880000007688,-0.06359815317287955 +176777,883.8850000076881,-0.06359630721939583 +176778,883.8900000076882,-0.06359446201715893 +176779,883.8950000076883,-0.06359261756539471 +176780,883.9000000076884,-0.0635907738633301 +176781,883.9050000076885,-0.06358893091019319 +176782,883.9100000076886,-0.06358708870521312 +176783,883.9150000076887,-0.06358524724762019 +176784,883.9200000076888,-0.06358340653664574 +176785,883.9250000076889,-0.06358156657152227 +176786,883.930000007689,-0.0635797273514833 +176787,883.9350000076892,-0.06357788887576354 +176788,883.9400000076893,-0.06357605114359875 +176789,883.9450000076894,-0.06357421415422576 +176790,883.9500000076895,-0.06357237790688253 +176791,883.9550000076896,-0.06357054240080809 +176792,883.9600000076897,-0.06356870763524258 +176793,883.9650000076898,-0.06356687360942719 +176794,883.9700000076899,-0.06356504032260425 +176795,883.97500000769,-0.06356320777401711 +176796,883.9800000076901,-0.06356137596291028 +176797,883.9850000076902,-0.06355954488852926 +176798,883.9900000076904,-0.06355771455012071 +176799,883.9950000076905,-0.06355588494693233 +176800,884.0000000076906,-0.06355405607821288 +176801,884.0050000076907,-0.06355222794321225 +176802,884.0100000076908,-0.06355040054118133 +176803,884.0150000076909,-0.06354857387137215 +176804,884.020000007691,-0.0635467479330378 +176805,884.0250000076911,-0.06354492272543237 +176806,884.0300000076912,-0.06354309824781111 +176807,884.0350000076913,-0.06354127449943028 +176808,884.0400000076914,-0.06353945147954725 +176809,884.0450000076916,-0.06353762918742036 +176810,884.0500000076917,-0.0635358076223091 +176811,884.0550000076918,-0.06353398678347402 +176812,884.0600000076919,-0.06353216667017667 +176813,884.065000007692,-0.06353034728167968 +176814,884.0700000076921,-0.06352852861724677 +176815,884.0750000076922,-0.06352671067614266 +176816,884.0800000076923,-0.06352489345763315 +176817,884.0850000076924,-0.06352307696098511 +176818,884.0900000076925,-0.06352126118546643 +176819,884.0950000076926,-0.06351944613034605 +176820,884.1000000076928,-0.06351763179489395 +176821,884.1050000076929,-0.06351581817838117 +176822,884.110000007693,-0.06351400528007979 +176823,884.1150000076931,-0.06351219309926293 +176824,884.1200000076932,-0.06351038163520475 +176825,884.1250000076933,-0.06350857088718045 +176826,884.1300000076934,-0.06350676085446627 +176827,884.1350000076935,-0.06350495153633946 +176828,884.1400000076936,-0.06350314293207834 +176829,884.1450000076937,-0.06350133504096225 +176830,884.1500000076938,-0.06349952786227153 +176831,884.155000007694,-0.06349772139528762 +176832,884.1600000076941,-0.06349591563929292 +176833,884.1650000076942,-0.06349411059357088 +176834,884.1700000076943,-0.06349230625740598 +176835,884.1750000076944,-0.06349050263008374 +176836,884.1800000076945,-0.06348869971089066 +176837,884.1850000076946,-0.06348689749911428 +176838,884.1900000076947,-0.06348509599404316 +176839,884.1950000076948,-0.06348329519496691 +176840,884.2000000076949,-0.06348149510117611 +176841,884.205000007695,-0.06347969571196235 +176842,884.2100000076952,-0.06347789702661828 +176843,884.2150000076953,-0.06347609904443753 +176844,884.2200000076954,-0.06347430176471476 +176845,884.2250000076955,-0.06347250518674559 +176846,884.2300000076956,-0.06347070930982672 +176847,884.2350000076957,-0.06346891413325578 +176848,884.2400000076958,-0.06346711965633148 +176849,884.2450000076959,-0.06346532587835348 +176850,884.250000007696,-0.06346353279862244 +176851,884.2550000076961,-0.06346174041644008 +176852,884.2600000076962,-0.06345994873110905 +176853,884.2650000076964,-0.06345815774193304 +176854,884.2700000076965,-0.0634563674482167 +176855,884.2750000076966,-0.0634545778492657 +176856,884.2800000076967,-0.0634527889443867 +176857,884.2850000076968,-0.06345100073288736 +176858,884.2900000076969,-0.0634492132140763 +176859,884.295000007697,-0.06344742638726315 +176860,884.3000000076971,-0.06344564025175853 +176861,884.3050000076972,-0.06344385480687406 +176862,884.3100000076973,-0.0634420700519223 +176863,884.3150000076974,-0.06344028598621683 +176864,884.3200000076976,-0.06343850260907218 +176865,884.3250000076977,-0.06343671991980389 +176866,884.3300000076978,-0.06343493791772849 +176867,884.3350000076979,-0.06343315660216345 +176868,884.340000007698,-0.06343137597242722 +176869,884.3450000076981,-0.06342959602783925 +176870,884.3500000076982,-0.06342781676771994 +176871,884.3550000076983,-0.06342603819139069 +176872,884.3600000076984,-0.06342426029817382 +176873,884.3650000076985,-0.06342248308739266 +176874,884.3700000076986,-0.06342070655837152 +176875,884.3750000076988,-0.06341893071043564 +176876,884.3800000076989,-0.0634171555429112 +176877,884.385000007699,-0.06341538105512544 +176878,884.3900000076991,-0.06341360724640646 +176879,884.3950000076992,-0.06341183411608338 +176880,884.4000000076993,-0.06341006166348626 +176881,884.4050000076994,-0.06340828988794613 +176882,884.4100000076995,-0.06340651878879494 +176883,884.4150000076996,-0.06340474836536564 +176884,884.4200000076997,-0.06340297861699211 +176885,884.4250000076999,-0.06340120954300918 +176886,884.4300000077,-0.06339944114275264 +176887,884.4350000077001,-0.06339767341555923 +176888,884.4400000077002,-0.06339590636076661 +176889,884.4450000077003,-0.06339413997771345 +176890,884.4500000077004,-0.0633923742657393 +176891,884.4550000077005,-0.0633906092241847 +176892,884.4600000077006,-0.06338884485239109 +176893,884.4650000077007,-0.06338708114970087 +176894,884.4700000077008,-0.06338531811545739 +176895,884.4750000077009,-0.06338355574900494 +176896,884.480000007701,-0.06338179404968872 +176897,884.4850000077012,-0.0633800330168549 +176898,884.4900000077013,-0.06337827264985056 +176899,884.4950000077014,-0.06337651294802371 +176900,884.5000000077015,-0.06337475391072334 +176901,884.5050000077016,-0.06337299553729926 +176902,884.5100000077017,-0.06337123782710236 +176903,884.5150000077018,-0.06336948077948432 +176904,884.5200000077019,-0.06336772439379783 +176905,884.525000007702,-0.06336596866939648 +176906,884.5300000077021,-0.06336421360563478 +176907,884.5350000077023,-0.06336245920186814 +176908,884.5400000077024,-0.06336070545745295 +176909,884.5450000077025,-0.06335895237174646 +176910,884.5500000077026,-0.06335719994410689 +176911,884.5550000077027,-0.06335544817389334 +176912,884.5600000077028,-0.06335369706046581 +176913,884.5650000077029,-0.06335194660318526 +176914,884.570000007703,-0.06335019680141353 +176915,884.5750000077031,-0.06334844765451339 +176916,884.5800000077032,-0.06334669916184853 +176917,884.5850000077033,-0.06334495132278349 +176918,884.5900000077035,-0.06334320413668379 +176919,884.5950000077036,-0.06334145760291583 +176920,884.6000000077037,-0.06333971172084688 +176921,884.6050000077038,-0.06333796648984516 +176922,884.6100000077039,-0.06333622190927977 +176923,884.615000007704,-0.06333447797852072 +176924,884.6200000077041,-0.06333273469693892 +176925,884.6250000077042,-0.06333099206390617 +176926,884.6300000077043,-0.06332925007879518 +176927,884.6350000077044,-0.06332750874097953 +176928,884.6400000077045,-0.06332576804983371 +176929,884.6450000077047,-0.06332402800473311 +176930,884.6500000077048,-0.063322288605054 +176931,884.6550000077049,-0.06332054985017355 +176932,884.660000007705,-0.06331881173946981 +176933,884.6650000077051,-0.06331707427232172 +176934,884.6700000077052,-0.06331533744810912 +176935,884.6750000077053,-0.06331360126621272 +176936,884.6800000077054,-0.06331186572601409 +176937,884.6850000077055,-0.06331013082689574 +176938,884.6900000077056,-0.06330839656824104 +176939,884.6950000077057,-0.0633066629494342 +176940,884.7000000077059,-0.06330492996986035 +176941,884.705000007706,-0.0633031976289055 +176942,884.7100000077061,-0.06330146592595652 +176943,884.7150000077062,-0.06329973486040115 +176944,884.7200000077063,-0.063298004431628 +176945,884.7250000077064,-0.0632962746390266 +176946,884.7300000077065,-0.06329454548198728 +176947,884.7350000077066,-0.06329281695990127 +176948,884.7400000077067,-0.06329108907216072 +176949,884.7450000077068,-0.06328936181815856 +176950,884.750000007707,-0.06328763519728864 +176951,884.755000007707,-0.06328590920894565 +176952,884.7600000077072,-0.06328418385252517 +176953,884.7650000077073,-0.06328245912742363 +176954,884.7700000077074,-0.06328073503303829 +176955,884.7750000077075,-0.06327901156876732 +176956,884.7800000077076,-0.06327728873400972 +176957,884.7850000077077,-0.06327556652816535 +176958,884.7900000077078,-0.06327384495063493 +176959,884.7950000077079,-0.06327212400082002 +176960,884.800000007708,-0.06327040367812309 +176961,884.8050000077081,-0.06326868398194738 +176962,884.8100000077083,-0.06326696491169702 +176963,884.8150000077084,-0.063265246466777 +176964,884.8200000077085,-0.06326352864659314 +176965,884.8250000077086,-0.06326181145055214 +176966,884.8300000077087,-0.06326009487806147 +176967,884.8350000077088,-0.06325837892852952 +176968,884.8400000077089,-0.06325666360136552 +176969,884.845000007709,-0.06325494889597949 +176970,884.8500000077091,-0.06325323481178236 +176971,884.8550000077092,-0.0632515213481858 +176972,884.8600000077093,-0.06324980850460245 +176973,884.8650000077095,-0.06324809628044566 +176974,884.8700000077096,-0.06324638467512969 +176975,884.8750000077097,-0.06324467368806963 +176976,884.8800000077098,-0.06324296331868137 +176977,884.8850000077099,-0.06324125356638169 +176978,884.89000000771,-0.06323954443058813 +176979,884.8950000077101,-0.0632378359107191 +176980,884.9000000077102,-0.06323612800619385 +176981,884.9050000077103,-0.06323442071643243 +176982,884.9100000077104,-0.06323271404085573 +176983,884.9150000077105,-0.06323100797888545 +176984,884.9200000077107,-0.06322930252994413 +176985,884.9250000077108,-0.06322759769345515 +176986,884.9300000077109,-0.06322589346884268 +176987,884.935000007711,-0.06322418985553169 +176988,884.9400000077111,-0.06322248685294804 +176989,884.9450000077112,-0.06322078446051835 +176990,884.9500000077113,-0.06321908267767007 +176991,884.9550000077114,-0.06321738150383148 +176992,884.9600000077115,-0.06321568093843165 +176993,884.9650000077116,-0.06321398098090047 +176994,884.9700000077117,-0.06321228163066868 +176995,884.9750000077119,-0.06321058288716777 +176996,884.980000007712,-0.0632088847498301 +176997,884.9850000077121,-0.06320718721808877 +176998,884.9900000077122,-0.06320549029137773 +176999,884.9950000077123,-0.06320379396913174 +177000,885.0000000077124,-0.06320209825078635 +177001,885.0050000077125,-0.06320040313577792 +177002,885.0100000077126,-0.06319870862354361 +177003,885.0150000077127,-0.06319701471352139 +177004,885.0200000077128,-0.06319532140515 +177005,885.025000007713,-0.063193628697869 +177006,885.030000007713,-0.06319193659111878 +177007,885.0350000077132,-0.06319024508434046 +177008,885.0400000077133,-0.063188554176976 +177009,885.0450000077134,-0.06318686386846815 +177010,885.0500000077135,-0.06318517415826044 +177011,885.0550000077136,-0.0631834850457972 +177012,885.0600000077137,-0.06318179653052354 +177013,885.0650000077138,-0.06318010861188539 +177014,885.0700000077139,-0.06317842128932942 +177015,885.075000007714,-0.06317673456230315 +177016,885.0800000077141,-0.06317504843025479 +177017,885.0850000077143,-0.06317336289263345 +177018,885.0900000077144,-0.06317167794888895 +177019,885.0950000077145,-0.0631699935984719 +177020,885.1000000077146,-0.06316830984083373 +177021,885.1050000077147,-0.06316662667542658 +177022,885.1100000077148,-0.06316494410170345 +177023,885.1150000077149,-0.06316326211911806 +177024,885.120000007715,-0.06316158072712492 +177025,885.1250000077151,-0.06315989992517934 +177026,885.1300000077152,-0.06315821971273738 +177027,885.1350000077153,-0.06315654008925588 +177028,885.1400000077155,-0.06315486105419243 +177029,885.1450000077156,-0.06315318260700545 +177030,885.1500000077157,-0.06315150474715407 +177031,885.1550000077158,-0.06314982747409821 +177032,885.1600000077159,-0.06314815078729856 +177033,885.165000007716,-0.06314647468621658 +177034,885.1700000077161,-0.06314479917031449 +177035,885.1750000077162,-0.06314312423905527 +177036,885.1800000077163,-0.06314144989190268 +177037,885.1850000077164,-0.06313977612832124 +177038,885.1900000077165,-0.06313810294777618 +177039,885.1950000077167,-0.06313643034973355 +177040,885.2000000077168,-0.06313475833366017 +177041,885.2050000077169,-0.06313308689902357 +177042,885.210000007717,-0.06313141604529203 +177043,885.2150000077171,-0.06312974577193464 +177044,885.2200000077172,-0.06312807607842119 +177045,885.2250000077173,-0.06312640696422225 +177046,885.2300000077174,-0.06312473842880917 +177047,885.2350000077175,-0.06312307047165397 +177048,885.2400000077176,-0.06312140309222951 +177049,885.2450000077177,-0.06311973629000935 +177050,885.2500000077179,-0.06311807006446778 +177051,885.255000007718,-0.06311640441507987 +177052,885.2600000077181,-0.06311473934132145 +177053,885.2650000077182,-0.06311307484266904 +177054,885.2700000077183,-0.06311141091859995 +177055,885.2750000077184,-0.06310974756859222 +177056,885.2800000077185,-0.06310808479212462 +177057,885.2850000077186,-0.0631064225886767 +177058,885.2900000077187,-0.06310476095772866 +177059,885.2950000077188,-0.06310309989876153 +177060,885.300000007719,-0.06310143941125702 +177061,885.3050000077191,-0.06309977949469761 +177062,885.3100000077192,-0.06309812014856651 +177063,885.3150000077193,-0.06309646137234763 +177064,885.3200000077194,-0.06309480316552565 +177065,885.3250000077195,-0.06309314552758596 +177066,885.3300000077196,-0.0630914884580147 +177067,885.3350000077197,-0.0630898319562987 +177068,885.3400000077198,-0.06308817602192558 +177069,885.3450000077199,-0.06308652065438362 +177070,885.35000000772,-0.06308486585316188 +177071,885.3550000077202,-0.0630832116177501 +177072,885.3600000077203,-0.06308155794763877 +177073,885.3650000077204,-0.06307990484231911 +177074,885.3700000077205,-0.06307825230128304 +177075,885.3750000077206,-0.06307660032402322 +177076,885.3800000077207,-0.063074948910033 +177077,885.3850000077208,-0.06307329805880647 +177078,885.3900000077209,-0.06307164776983845 +177079,885.395000007721,-0.06306999804262445 +177080,885.4000000077211,-0.06306834887666071 +177081,885.4050000077212,-0.06306670027144418 +177082,885.4100000077214,-0.0630650522264725 +177083,885.4150000077215,-0.06306340474124408 +177084,885.4200000077216,-0.063061757815258 +177085,885.4250000077217,-0.06306011144801403 +177086,885.4300000077218,-0.0630584656390127 +177087,885.4350000077219,-0.06305682038775522 +177088,885.440000007722,-0.06305517569374348 +177089,885.4450000077221,-0.06305353155648014 +177090,885.4500000077222,-0.06305188797546851 +177091,885.4550000077223,-0.06305024495021265 +177092,885.4600000077224,-0.06304860248021725 +177093,885.4650000077226,-0.06304696056498779 +177094,885.4700000077227,-0.06304531920403036 +177095,885.4750000077228,-0.06304367839685185 +177096,885.4800000077229,-0.06304203814295975 +177097,885.485000007723,-0.06304039844186232 +177098,885.4900000077231,-0.06303875929306849 +177099,885.4950000077232,-0.06303712069608786 +177100,885.5000000077233,-0.06303548265043077 +177101,885.5050000077234,-0.06303384515560823 +177102,885.5100000077235,-0.06303220821113192 +177103,885.5150000077236,-0.06303057181651427 +177104,885.5200000077238,-0.06302893597126834 +177105,885.5250000077239,-0.06302730067490792 +177106,885.530000007724,-0.06302566592694746 +177107,885.5350000077241,-0.06302403172690212 +177108,885.5400000077242,-0.06302239807428771 +177109,885.5450000077243,-0.06302076496862079 +177110,885.5500000077244,-0.06301913240941853 +177111,885.5550000077245,-0.06301750039619884 +177112,885.5600000077246,-0.0630158689284803 +177113,885.5650000077247,-0.06301423800578212 +177114,885.5700000077248,-0.06301260762762427 +177115,885.575000007725,-0.06301097779352732 +177116,885.5800000077251,-0.0630093485030126 +177117,885.5850000077252,-0.06300771975560204 +177118,885.5900000077253,-0.0630060915508183 +177119,885.5950000077254,-0.06300446388818469 +177120,885.6000000077255,-0.0630028367672252 +177121,885.6050000077256,-0.0630012101874645 +177122,885.6100000077257,-0.06299958414842793 +177123,885.6150000077258,-0.06299795864964147 +177124,885.6200000077259,-0.06299633369063182 +177125,885.625000007726,-0.0629947092709263 +177126,885.6300000077262,-0.06299308539005295 +177127,885.6350000077263,-0.06299146204754044 +177128,885.6400000077264,-0.0629898392429181 +177129,885.6450000077265,-0.06298821697571594 +177130,885.6500000077266,-0.06298659524546467 +177131,885.6550000077267,-0.0629849740516956 +177132,885.6600000077268,-0.06298335339394073 +177133,885.6650000077269,-0.06298173327173272 +177134,885.670000007727,-0.0629801136846049 +177135,885.6750000077271,-0.06297849463209125 +177136,885.6800000077272,-0.0629768761137264 +177137,885.6850000077274,-0.06297525812904566 +177138,885.6900000077275,-0.06297364067758497 +177139,885.6950000077276,-0.06297202375888093 +177140,885.7000000077277,-0.06297040737247082 +177141,885.7050000077278,-0.06296879151789254 +177142,885.7100000077279,-0.06296717619468466 +177143,885.715000007728,-0.0629655614023864 +177144,885.7200000077281,-0.06296394714053763 +177145,885.7250000077282,-0.06296233340867886 +177146,885.7300000077283,-0.06296072020635127 +177147,885.7350000077284,-0.06295910753309666 +177148,885.7400000077286,-0.06295749538845749 +177149,885.7450000077287,-0.06295588377197689 +177150,885.7500000077288,-0.06295427268319859 +177151,885.7550000077289,-0.06295266212166697 +177152,885.760000007729,-0.06295105208692711 +177153,885.7650000077291,-0.06294944257852464 +177154,885.7700000077292,-0.0629478335960059 +177155,885.7750000077293,-0.06294622513891787 +177156,885.7800000077294,-0.06294461720680812 +177157,885.7850000077295,-0.0629430097992249 +177158,885.7900000077296,-0.06294140291571708 +177159,885.7950000077298,-0.06293979655583416 +177160,885.8000000077299,-0.06293819071912629 +177161,885.80500000773,-0.06293658540514427 +177162,885.8100000077301,-0.06293498061343948 +177163,885.8150000077302,-0.06293337634356398 +177164,885.8200000077303,-0.06293177259507045 +177165,885.8250000077304,-0.06293016936751217 +177166,885.8300000077305,-0.0629285666604431 +177167,885.8350000077306,-0.06292696447341779 +177168,885.8400000077307,-0.06292536280599145 +177169,885.8450000077308,-0.06292376165771989 +177170,885.850000007731,-0.06292216102815952 +177171,885.8550000077311,-0.06292056091686746 +177172,885.8600000077312,-0.06291896132340136 +177173,885.8650000077313,-0.06291736224731956 +177174,885.8700000077314,-0.06291576368818098 +177175,885.8750000077315,-0.06291416564554521 +177176,885.8800000077316,-0.0629125681189724 +177177,885.8850000077317,-0.06291097110802336 +177178,885.8900000077318,-0.0629093746122595 +177179,885.8950000077319,-0.06290777863124285 +177180,885.900000007732,-0.06290618316453606 +177181,885.9050000077322,-0.0629045882117024 +177182,885.9100000077323,-0.06290299377230575 +177183,885.9150000077324,-0.0629013998459106 +177184,885.9200000077325,-0.06289980643208207 +177185,885.9250000077326,-0.06289821353038584 +177186,885.9300000077327,-0.0628966211403883 +177187,885.9350000077328,-0.06289502926165634 +177188,885.9400000077329,-0.06289343789375751 +177189,885.945000007733,-0.06289184703626 +177190,885.9500000077331,-0.06289025668873253 +177191,885.9550000077332,-0.06288866685074451 +177192,885.9600000077334,-0.06288707752186591 +177193,885.9650000077335,-0.0628854887016673 +177194,885.9700000077336,-0.06288390038971987 +177195,885.9750000077337,-0.0628823125855954 +177196,885.9800000077338,-0.06288072528886629 +177197,885.9850000077339,-0.06287913849910551 +177198,885.990000007734,-0.06287755221588667 +177199,885.9950000077341,-0.06287596643878395 +177200,886.0000000077342,-0.06287438116737215 +177201,886.0050000077343,-0.06287279640122666 +177202,886.0100000077344,-0.06287121213992343 +177203,886.0150000077346,-0.06286962838303906 +177204,886.0200000077347,-0.06286804513015072 +177205,886.0250000077348,-0.06286646238083618 +177206,886.0300000077349,-0.0628648801346738 +177207,886.035000007735,-0.06286329839124252 +177208,886.0400000077351,-0.06286171715012191 +177209,886.0450000077352,-0.06286013641089207 +177210,886.0500000077353,-0.06285855617313375 +177211,886.0550000077354,-0.06285697643642825 +177212,886.0600000077355,-0.06285539720035747 +177213,886.0650000077356,-0.0628538184645039 +177214,886.0700000077358,-0.06285224022845061 +177215,886.0750000077359,-0.06285066249178126 +177216,886.080000007736,-0.06284908525408006 +177217,886.0850000077361,-0.06284750851493189 +177218,886.0900000077362,-0.06284593227392211 +177219,886.0950000077363,-0.06284435653063675 +177220,886.1000000077364,-0.06284278128466235 +177221,886.1050000077365,-0.06284120653558607 +177222,886.1100000077366,-0.06283963228299563 +177223,886.1150000077367,-0.06283805852647936 +177224,886.1200000077368,-0.06283648526562613 +177225,886.125000007737,-0.0628349125000254 +177226,886.1300000077371,-0.0628333402292672 +177227,886.1350000077372,-0.06283176845294217 +177228,886.1400000077373,-0.06283019717064146 +177229,886.1450000077374,-0.06282862638195685 +177230,886.1500000077375,-0.06282705608648066 +177231,886.1550000077376,-0.0628254862838058 +177232,886.1600000077377,-0.06282391697352573 +177233,886.1650000077378,-0.06282234815523449 +177234,886.1700000077379,-0.06282077982852671 +177235,886.175000007738,-0.06281921199299757 +177236,886.1800000077382,-0.0628176446482428 +177237,886.1850000077383,-0.0628160777938587 +177238,886.1900000077384,-0.06281451142944218 +177239,886.1950000077385,-0.06281294555459066 +177240,886.2000000077386,-0.06281138016890214 +177241,886.2050000077387,-0.06280981527197521 +177242,886.2100000077388,-0.062808250863409 +177243,886.2150000077389,-0.06280668694280317 +177244,886.220000007739,-0.062805123509758 +177245,886.2250000077391,-0.0628035605638743 +177246,886.2300000077392,-0.06280199810475343 +177247,886.2350000077394,-0.06280043613199732 +177248,886.2400000077395,-0.06279887464520846 +177249,886.2450000077396,-0.06279731364398988 +177250,886.2500000077397,-0.06279575312794519 +177251,886.2550000077398,-0.06279419309667854 +177252,886.2600000077399,-0.06279263354979463 +177253,886.26500000774,-0.0627910744868987 +177254,886.2700000077401,-0.0627895159075966 +177255,886.2750000077402,-0.06278795781149465 +177256,886.2800000077403,-0.06278640019819978 +177257,886.2850000077405,-0.06278484306731946 +177258,886.2900000077406,-0.06278328641846168 +177259,886.2950000077407,-0.06278173025123499 +177260,886.3000000077408,-0.06278017456524852 +177261,886.3050000077409,-0.0627786193601119 +177262,886.310000007741,-0.06277706463543535 +177263,886.3150000077411,-0.0627755103908296 +177264,886.3200000077412,-0.06277395662590592 +177265,886.3250000077413,-0.06277240334027614 +177266,886.3300000077414,-0.06277085053355265 +177267,886.3350000077415,-0.06276929820534834 +177268,886.3400000077417,-0.06276774635527667 +177269,886.3450000077418,-0.06276619498295163 +177270,886.3500000077419,-0.06276464408798776 +177271,886.355000007742,-0.06276309367000012 +177272,886.3600000077421,-0.0627615437286043 +177273,886.3650000077422,-0.06275999426341647 +177274,886.3700000077423,-0.0627584452740533 +177275,886.3750000077424,-0.06275689676013199 +177276,886.3800000077425,-0.06275534872127031 +177277,886.3850000077426,-0.06275380115708654 +177278,886.3900000077427,-0.06275225406719945 +177279,886.3950000077429,-0.06275070745122842 +177280,886.400000007743,-0.06274916130879334 +177281,886.4050000077431,-0.06274761563951457 +177282,886.4100000077432,-0.06274607044301311 +177283,886.4150000077433,-0.06274452571891037 +177284,886.4200000077434,-0.06274298146682836 +177285,886.4250000077435,-0.06274143768638961 +177286,886.4300000077436,-0.06273989437721714 +177287,886.4350000077437,-0.06273835153893453 +177288,886.4400000077438,-0.0627368091711659 +177289,886.4450000077439,-0.06273526727353584 +177290,886.450000007744,-0.0627337258456695 +177291,886.4550000077442,-0.06273218488719255 +177292,886.4600000077443,-0.06273064439773117 +177293,886.4650000077444,-0.06272910437691206 +177294,886.4700000077445,-0.06272756482436247 +177295,886.4750000077446,-0.06272602573971012 +177296,886.4800000077447,-0.06272448712258327 +177297,886.4850000077448,-0.06272294897261073 +177298,886.4900000077449,-0.06272141128942178 +177299,886.495000007745,-0.06271987407264625 +177300,886.5000000077451,-0.06271833732191445 +177301,886.5050000077453,-0.06271680103685724 +177302,886.5100000077454,-0.06271526521710596 +177303,886.5150000077455,-0.06271372986229251 +177304,886.5200000077456,-0.06271219497204925 +177305,886.5250000077457,-0.06271066054600909 +177306,886.5300000077458,-0.06270912658380541 +177307,886.5350000077459,-0.06270759308507216 +177308,886.540000007746,-0.06270606004944375 +177309,886.5450000077461,-0.0627045274765551 +177310,886.5500000077462,-0.06270299536604167 +177311,886.5550000077463,-0.06270146371753939 +177312,886.5600000077465,-0.06269993253068472 +177313,886.5650000077466,-0.06269840180511463 +177314,886.5700000077467,-0.06269687154046658 +177315,886.5750000077468,-0.06269534173637853 +177316,886.5800000077469,-0.06269381239248895 +177317,886.585000007747,-0.06269228350843684 +177318,886.5900000077471,-0.06269075508386163 +177319,886.5950000077472,-0.06268922711840333 +177320,886.6000000077473,-0.06268769961170238 +177321,886.6050000077474,-0.0626861725633998 +177322,886.6100000077475,-0.06268464597313703 +177323,886.6150000077477,-0.06268311984055605 +177324,886.6200000077478,-0.06268159416529934 +177325,886.6250000077479,-0.06268006894700985 +177326,886.630000007748,-0.06267854418533103 +177327,886.6350000077481,-0.06267701987990687 +177328,886.6400000077482,-0.06267549603038179 +177329,886.6450000077483,-0.06267397263640075 +177330,886.6500000077484,-0.06267244969760917 +177331,886.6550000077485,-0.06267092721365299 +177332,886.6600000077486,-0.06266940518417861 +177333,886.6650000077487,-0.06266788360883296 +177334,886.6700000077489,-0.06266636248726344 +177335,886.675000007749,-0.06266484181911793 +177336,886.6800000077491,-0.06266332160404478 +177337,886.6850000077492,-0.0626618018416929 +177338,886.6900000077493,-0.0626602825317116 +177339,886.6950000077494,-0.06265876367375074 +177340,886.7000000077495,-0.06265724526746062 +177341,886.7050000077496,-0.06265572731249207 +177342,886.7100000077497,-0.06265420980849634 +177343,886.7150000077498,-0.06265269275512526 +177344,886.72000000775,-0.06265117615203104 +177345,886.72500000775,-0.06264965999886644 +177346,886.7300000077502,-0.06264814429528467 +177347,886.7350000077503,-0.06264662904093943 +177348,886.7400000077504,-0.0626451142354849 +177349,886.7450000077505,-0.06264359987857573 +177350,886.7500000077506,-0.06264208596986706 +177351,886.7550000077507,-0.06264057250901447 +177352,886.7600000077508,-0.06263905949567411 +177353,886.7650000077509,-0.06263754692950249 +177354,886.770000007751,-0.06263603481015667 +177355,886.7750000077511,-0.06263452313729417 +177356,886.7800000077513,-0.06263301191057297 +177357,886.7850000077514,-0.06263150112965153 +177358,886.7900000077515,-0.06262999079418878 +177359,886.7950000077516,-0.06262848090384414 +177360,886.8000000077517,-0.06262697145827748 +177361,886.8050000077518,-0.06262546245714913 +177362,886.8100000077519,-0.06262395390011992 +177363,886.815000007752,-0.06262244578685114 +177364,886.8200000077521,-0.06262093811700452 +177365,886.8250000077522,-0.06261943089024229 +177366,886.8300000077523,-0.06261792410622716 +177367,886.8350000077525,-0.06261641776462225 +177368,886.8400000077526,-0.06261491186509119 +177369,886.8450000077527,-0.06261340640729805 +177370,886.8500000077528,-0.06261190139090742 +177371,886.8550000077529,-0.06261039681558427 +177372,886.860000007753,-0.06260889268099408 +177373,886.8650000077531,-0.06260738898680278 +177374,886.8700000077532,-0.06260588573267677 +177375,886.8750000077533,-0.06260438291828291 +177376,886.8800000077534,-0.06260288054328851 +177377,886.8850000077535,-0.06260137860736134 +177378,886.8900000077537,-0.06259987711016966 +177379,886.8950000077538,-0.06259837605138213 +177380,886.9000000077539,-0.06259687543066791 +177381,886.905000007754,-0.0625953752476966 +177382,886.9100000077541,-0.06259387550213827 +177383,886.9150000077542,-0.06259237619366341 +177384,886.9200000077543,-0.06259087732194302 +177385,886.9250000077544,-0.06258937888664849 +177386,886.9300000077545,-0.06258788088745172 +177387,886.9350000077546,-0.06258638332402502 +177388,886.9400000077547,-0.06258488619604119 +177389,886.9450000077549,-0.06258338950317344 +177390,886.950000007755,-0.06258189324509546 +177391,886.9550000077551,-0.06258039742148139 +177392,886.9600000077552,-0.06257890203200578 +177393,886.9650000077553,-0.06257740707634368 +177394,886.9700000077554,-0.06257591255417055 +177395,886.9750000077555,-0.06257441846516235 +177396,886.9800000077556,-0.06257292480899539 +177397,886.9850000077557,-0.0625714315853465 +177398,886.9900000077558,-0.06256993879389296 +177399,886.995000007756,-0.06256844643431245 +177400,887.0000000077561,-0.0625669545062831 +177401,887.0050000077562,-0.06256546300948355 +177402,887.0100000077563,-0.0625639719435928 +177403,887.0150000077564,-0.06256248130829029 +177404,887.0200000077565,-0.06256099110325597 +177405,887.0250000077566,-0.06255950132817019 +177406,887.0300000077567,-0.06255801198271374 +177407,887.0350000077568,-0.06255652306656784 +177408,887.0400000077569,-0.06255503457941415 +177409,887.045000007757,-0.06255354652093481 +177410,887.0500000077571,-0.06255205889081235 +177411,887.0550000077573,-0.06255057168872974 +177412,887.0600000077574,-0.06254908491437039 +177413,887.0650000077575,-0.06254759856741815 +177414,887.0700000077576,-0.06254611264755733 +177415,887.0750000077577,-0.0625446271544726 +177416,887.0800000077578,-0.06254314208784917 +177417,887.0850000077579,-0.06254165744737257 +177418,887.090000007758,-0.06254017323272885 +177419,887.0950000077581,-0.06253868944360443 +177420,887.1000000077582,-0.0625372060796862 +177421,887.1050000077583,-0.06253572314066146 +177422,887.1100000077585,-0.06253424062621796 +177423,887.1150000077586,-0.06253275853604383 +177424,887.1200000077587,-0.06253127686982769 +177425,887.1250000077588,-0.06252979562725855 +177426,887.1300000077589,-0.06252831480802584 +177427,887.135000007759,-0.06252683441181946 +177428,887.1400000077591,-0.06252535443832966 +177429,887.1450000077592,-0.06252387488724719 +177430,887.1500000077593,-0.06252239575826318 +177431,887.1550000077594,-0.06252091705106921 +177432,887.1600000077595,-0.06251943876535727 +177433,887.1650000077597,-0.06251796090081978 +177434,887.1700000077598,-0.06251648345714954 +177435,887.1750000077599,-0.06251500643403982 +177436,887.18000000776,-0.0625135298311843 +177437,887.1850000077601,-0.06251205364827706 +177438,887.1900000077602,-0.06251057788501263 +177439,887.1950000077603,-0.06250910254108591 +177440,887.2000000077604,-0.06250762761619227 +177441,887.2050000077605,-0.06250615311002747 +177442,887.2100000077606,-0.06250467902228769 +177443,887.2150000077608,-0.06250320535266952 +177444,887.2200000077609,-0.06250173210086998 +177445,887.225000007761,-0.0625002592665865 +177446,887.2300000077611,-0.06249878684951692 +177447,887.2350000077612,-0.06249731484935947 +177448,887.2400000077613,-0.06249584326581284 +177449,887.2450000077614,-0.06249437209857609 +177450,887.2500000077615,-0.06249290134734872 +177451,887.2550000077616,-0.06249143101183063 +177452,887.2600000077617,-0.06248996109172211 +177453,887.2650000077618,-0.0624884915867239 +177454,887.270000007762,-0.062487022496537106 +177455,887.2750000077621,-0.062485553820863286 +177456,887.2800000077622,-0.06248408555940438 +177457,887.2850000077623,-0.06248261771186273 +177458,887.2900000077624,-0.0624811502779411 +177459,887.2950000077625,-0.06247968325734264 +177460,887.3000000077626,-0.06247821664977094 +177461,887.3050000077627,-0.06247675045492996 +177462,887.3100000077628,-0.06247528467252407 +177463,887.3150000077629,-0.06247381930225805 +177464,887.320000007763,-0.0624723543438371 +177465,887.3250000077632,-0.06247088979696677 +177466,887.3300000077633,-0.062469425661353085 +177467,887.3350000077634,-0.06246796193670241 +177468,887.3400000077635,-0.06246649862272153 +177469,887.3450000077636,-0.062465035719117636 +177470,887.3500000077637,-0.062463573225598326 +177471,887.3550000077638,-0.062462111141871564 +177472,887.3600000077639,-0.06246064946764574 +177473,887.365000007764,-0.062459188202629634 +177474,887.3700000077641,-0.062457727346532425 +177475,887.3750000077642,-0.062456266899063695 +177476,887.3800000077644,-0.0624548068599334 +177477,887.3850000077645,-0.062453347228851895 +177478,887.3900000077646,-0.062451888005529956 +177479,887.3950000077647,-0.06245042918967872 +177480,887.4000000077648,-0.062448970781009736 +177481,887.4050000077649,-0.062447512779234944 +177482,887.410000007765,-0.06244605518406665 +177483,887.4150000077651,-0.06244459799521761 +177484,887.4200000077652,-0.0624431412124009 +177485,887.4250000077653,-0.06244168483533005 +177486,887.4300000077654,-0.062440228863718944 +177487,887.4350000077656,-0.06243877329728184 +177488,887.4400000077657,-0.06243731813573344 +177489,887.4450000077658,-0.062435863378788765 +177490,887.4500000077659,-0.06243440902616328 +177491,887.455000007766,-0.0624329550775728 +177492,887.4600000077661,-0.06243150153273355 +177493,887.4650000077662,-0.06243004839136214 +177494,887.4700000077663,-0.06242859565317554 +177495,887.4750000077664,-0.06242714331789111 +177496,887.4800000077665,-0.06242569138522663 +177497,887.4850000077666,-0.062424239854900226 +177498,887.4900000077668,-0.062422788726630415 +177499,887.4950000077669,-0.06242133800013612 +177500,887.500000007767,-0.06241988767513659 +177501,887.5050000077671,-0.06241843775135152 +177502,887.5100000077672,-0.062416988228500926 +177503,887.5150000077673,-0.06241553910630526 +177504,887.5200000077674,-0.06241409038448531 +177505,887.5250000077675,-0.06241264206276226 +177506,887.5300000077676,-0.062411194140857676 +177507,887.5350000077677,-0.06240974661849349 +177508,887.5400000077678,-0.062408299495392 +177509,887.545000007768,-0.062406852771275924 +177510,887.5500000077681,-0.06240540644586831 +177511,887.5550000077682,-0.062403960518892604 +177512,887.5600000077683,-0.062402514990072634 +177513,887.5650000077684,-0.06240106985913258 +177514,887.5700000077685,-0.062399625125797005 +177515,887.5750000077686,-0.06239818078979084 +177516,887.5800000077687,-0.06239673685083942 +177517,887.5850000077688,-0.06239529330866839 +177518,887.5900000077689,-0.06239385016300382 +177519,887.595000007769,-0.06239240741357213 +177520,887.6000000077692,-0.06239096506010012 +177521,887.6050000077693,-0.062389523102314944 +177522,887.6100000077694,-0.06238808153994413 +177523,887.6150000077695,-0.062386640372715574 +177524,887.6200000077696,-0.062385199600357565 +177525,887.6250000077697,-0.06238375922259873 +177526,887.6300000077698,-0.06238231923916806 +177527,887.6350000077699,-0.06238087964979492 +177528,887.64000000777,-0.06237944045420906 +177529,887.6450000077701,-0.06237800165214057 +177530,887.6500000077702,-0.06237656324331991 +177531,887.6550000077704,-0.06237512522747791 +177532,887.6600000077705,-0.062373687604345765 +177533,887.6650000077706,-0.06237225037365502 +177534,887.6700000077707,-0.0623708135351376 +177535,887.6750000077708,-0.06236937708852578 +177536,887.6800000077709,-0.0623679410335522 +177537,887.685000007771,-0.06236650536994985 +177538,887.6900000077711,-0.06236507009745209 +177539,887.6950000077712,-0.062363635215792655 +177540,887.7000000077713,-0.062362200724705615 +177541,887.7050000077714,-0.0623607666239254 +177542,887.7100000077716,-0.06235933291318682 +177543,887.7150000077717,-0.06235789959222501 +177544,887.7200000077718,-0.062356466660775496 +177545,887.7250000077719,-0.06235503411857414 +177546,887.730000007772,-0.06235360196535716 +177547,887.7350000077721,-0.062352170200861125 +177548,887.7400000077722,-0.062350738824822984 +177549,887.7450000077723,-0.06234930783698002 +177550,887.7500000077724,-0.06234787723706985 +177551,887.7550000077725,-0.0623464470248305 +177552,887.7600000077726,-0.062345017200000304 +177553,887.7650000077728,-0.06234358776231795 +177554,887.7700000077729,-0.0623421587115225 +177555,887.775000007773,-0.06234073004735335 +177556,887.7800000077731,-0.06233930176955025 +177557,887.7850000077732,-0.062337873877853285 +177558,887.7900000077733,-0.062336446372002925 +177559,887.7950000077734,-0.06233501925173997 +177560,887.8000000077735,-0.06233359251680557 +177561,887.8050000077736,-0.062332166166941205 +177562,887.8100000077737,-0.06233074020188873 +177563,887.8150000077738,-0.06232931462139034 +177564,887.820000007774,-0.06232788942518856 +177565,887.8250000077741,-0.062326464613026274 +177566,887.8300000077742,-0.06232504018464671 +177567,887.8350000077743,-0.06232361613979343 +177568,887.8400000077744,-0.06232219247821037 +177569,887.8450000077745,-0.06232076919964177 +177570,887.8500000077746,-0.06231934630383225 +177571,887.8550000077747,-0.06231792379052675 +177572,887.8600000077748,-0.06231650165947055 +177573,887.8650000077749,-0.062315079910409285 +177574,887.870000007775,-0.062313658543088936 +177575,887.8750000077752,-0.0623122375572558 +177576,887.8800000077753,-0.06231081695265654 +177577,887.8850000077754,-0.06230939672903813 +177578,887.8900000077755,-0.06230797688614791 +177579,887.8950000077756,-0.062306557423733554 +177580,887.9000000077757,-0.06230513834154306 +177581,887.9050000077758,-0.06230371963932478 +177582,887.9100000077759,-0.062302301316827395 +177583,887.915000007776,-0.06230088337379992 +177584,887.9200000077761,-0.062299465809991704 +177585,887.9250000077762,-0.06229804862515243 +177586,887.9300000077764,-0.06229663181903213 +177587,887.9350000077765,-0.062295215391381165 +177588,887.9400000077766,-0.06229379934195022 +177589,887.9450000077767,-0.06229238367049034 +177590,887.9500000077768,-0.06229096837675286 +177591,887.9550000077769,-0.062289553460489484 +177592,887.960000007777,-0.062288138921452234 +177593,887.9650000077771,-0.06228672475939345 +177594,887.9700000077772,-0.06228531097406584 +177595,887.9750000077773,-0.06228389756522242 +177596,887.9800000077774,-0.062282484532616526 +177597,887.9850000077776,-0.062281071876001834 +177598,887.9900000077777,-0.06227965959513235 +177599,887.9950000077778,-0.062278247689762395 +177600,888.0000000077779,-0.06227683615964665 +177601,888.005000007778,-0.0622754250045401 +177602,888.0100000077781,-0.062274014224198045 +177603,888.0150000077782,-0.06227260381837614 +177604,888.0200000077783,-0.06227119378683035 +177605,888.0250000077784,-0.062269784129316975 +177606,888.0300000077785,-0.06226837484559262 +177607,888.0350000077786,-0.06226696593541423 +177608,888.0400000077788,-0.06226555739853909 +177609,888.0450000077789,-0.06226414923472477 +177610,888.050000007779,-0.06226274144372918 +177611,888.0550000077791,-0.062261334025310575 +177612,888.0600000077792,-0.062259926979227505 +177613,888.0650000077793,-0.062258520305238846 +177614,888.0700000077794,-0.06225711400310381 +177615,888.0750000077795,-0.0622557080725819 +177616,888.0800000077796,-0.06225430251343296 +177617,888.0850000077797,-0.06225289732541717 +177618,888.0900000077798,-0.062251492508295 +177619,888.09500000778,-0.06225008806182724 +177620,888.1000000077801,-0.06224868398577503 +177621,888.1050000077802,-0.062247280279899786 +177622,888.1100000077803,-0.06224587694396325 +177623,888.1150000077804,-0.062244473977727525 +177624,888.1200000077805,-0.06224307138095496 +177625,888.1250000077806,-0.062241669153408286 +177626,888.1300000077807,-0.062240267294850486 +177627,888.1350000077808,-0.06223886580504491 +177628,888.1400000077809,-0.062237464683755205 +177629,888.145000007781,-0.06223606393074533 +177630,888.1500000077812,-0.06223466354577957 +177631,888.1550000077813,-0.06223326352862249 +177632,888.1600000077814,-0.062231863879039 +177633,888.1650000077815,-0.062230464596794294 +177634,888.1700000077816,-0.06222906568165391 +177635,888.1750000077817,-0.06222766713338368 +177636,888.1800000077818,-0.06222626895174973 +177637,888.1850000077819,-0.062224871136518534 +177638,888.190000007782,-0.06222347368745685 +177639,888.1950000077821,-0.06222207660433173 +177640,888.2000000077823,-0.06222067988691059 +177641,888.2050000077824,-0.062219283534961096 +177642,888.2100000077825,-0.06221788754825124 +177643,888.2150000077826,-0.062216491926549336 +177644,888.2200000077827,-0.06221509666962401 +177645,888.2250000077828,-0.062213701777244154 +177646,888.2300000077829,-0.062212307249179005 +177647,888.235000007783,-0.062210913085198084 +177648,888.2400000077831,-0.06220951928507124 +177649,888.2450000077832,-0.062208125848568586 +177650,888.2500000077833,-0.06220673277546058 +177651,888.2550000077835,-0.06220534006551797 +177652,888.2600000077836,-0.0622039477185118 +177653,888.2650000077837,-0.06220255573421342 +177654,888.2700000077838,-0.06220116411239449 +177655,888.2750000077839,-0.06219977285282697 +177656,888.280000007784,-0.0621983819552831 +177657,888.2850000077841,-0.062196991419535455 +177658,888.2900000077842,-0.062195601245356884 +177659,888.2950000077843,-0.062194211432520546 +177660,888.3000000077844,-0.062192821980799895 +177661,888.3050000077845,-0.062191432889968694 +177662,888.3100000077847,-0.062190044159801006 +177663,888.3150000077848,-0.06218865579007117 +177664,888.3200000077849,-0.06218726778055384 +177665,888.325000007785,-0.06218588013102397 +177666,888.3300000077851,-0.0621844928412568 +177667,888.3350000077852,-0.06218310591102788 +177668,888.3400000077853,-0.06218171934011304 +177669,888.3450000077854,-0.06218033312828841 +177670,888.3500000077855,-0.06217894727533043 +177671,888.3550000077856,-0.062177561781015814 +177672,888.3600000077857,-0.062176176645121574 +177673,888.3650000077859,-0.06217479186742503 +177674,888.370000007786,-0.062173407447703784 +177675,888.3750000077861,-0.06217202338573573 +177676,888.3800000077862,-0.06217063968129905 +177677,888.3850000077863,-0.062169256334172245 +177678,888.3900000077864,-0.06216787334413407 +177679,888.3950000077865,-0.062166490710963584 +177680,888.4000000077866,-0.06216510843444016 +177681,888.4050000077867,-0.06216372651434341 +177682,888.4100000077868,-0.06216234495045329 +177683,888.415000007787,-0.06216096374255003 +177684,888.420000007787,-0.062159582890414115 +177685,888.4250000077872,-0.06215820239382637 +177686,888.4300000077873,-0.06215682225256788 +177687,888.4350000077874,-0.06215544246642 +177688,888.4400000077875,-0.0621540630351644 +177689,888.4450000077876,-0.06215268395858304 +177690,888.4500000077877,-0.06215130523645814 +177691,888.4550000077878,-0.062149926868572236 +177692,888.4600000077879,-0.06214854885470813 +177693,888.465000007788,-0.06214717119464891 +177694,888.4700000077881,-0.06214579388817795 +177695,888.4750000077883,-0.06214441693507891 +177696,888.4800000077884,-0.062143040335135735 +177697,888.4850000077885,-0.062141664088132646 +177698,888.4900000077886,-0.062140288193854164 +177699,888.4950000077887,-0.06213891265208507 +177700,888.5000000077888,-0.06213753746261044 +177701,888.5050000077889,-0.06213616262521562 +177702,888.510000007789,-0.06213478813968625 +177703,888.5150000077891,-0.06213341400580826 +177704,888.5200000077892,-0.06213204022336784 +177705,888.5250000077893,-0.062130666792151464 +177706,888.5300000077895,-0.06212929371194588 +177707,888.5350000077896,-0.06212792098253813 +177708,888.5400000077897,-0.06212654860371552 +177709,888.5450000077898,-0.06212517657526566 +177710,888.5500000077899,-0.062123804896976394 +177711,888.55500000779,-0.062122433568635886 +177712,888.5600000077901,-0.06212106259003254 +177713,888.5650000077902,-0.06211969196095507 +177714,888.5700000077903,-0.062118321681192454 +177715,888.5750000077904,-0.062116951750533944 +177716,888.5800000077905,-0.06211558216876905 +177717,888.5850000077907,-0.06211421293568758 +177718,888.5900000077908,-0.062112844051079606 +177719,888.5950000077909,-0.06211147551473549 +177720,888.600000007791,-0.06211010732644584 +177721,888.6050000077911,-0.062108739486001555 +177722,888.6100000077912,-0.062107371993193806 +177723,888.6150000077913,-0.062106004847814034 +177724,888.6200000077914,-0.062104638049653944 +177725,888.6250000077915,-0.06210327159850553 +177726,888.6300000077916,-0.06210190549416103 +177727,888.6350000077917,-0.06210053973641298 +177728,888.6400000077919,-0.06209917432505418 +177729,888.645000007792,-0.06209780925987769 +177730,888.6500000077921,-0.062096444540676844 +177731,888.6550000077922,-0.06209508016724524 +177732,888.6600000077923,-0.06209371613937675 +177733,888.6650000077924,-0.06209235245686553 +177734,888.6700000077925,-0.06209098911950597 +177735,888.6750000077926,-0.06208962612709274 +177736,888.6800000077927,-0.062088263479420806 +177737,888.6850000077928,-0.062086901176285354 +177738,888.690000007793,-0.06208553921748187 +177739,888.695000007793,-0.062084177602806094 +177740,888.7000000077932,-0.06208281633205402 +177741,888.7050000077933,-0.06208145540502194 +177742,888.7100000077934,-0.062080094821506365 +177743,888.7150000077935,-0.062078734581304106 +177744,888.7200000077936,-0.06207737468421223 +177745,888.7250000077937,-0.062076015130028056 +177746,888.7300000077938,-0.062074655918549174 +177747,888.7350000077939,-0.06207329704957343 +177748,888.740000007794,-0.062071938522898946 +177749,888.7450000077941,-0.062070580338324105 +177750,888.7500000077943,-0.06206922249564752 +177751,888.7550000077944,-0.06206786499466811 +177752,888.7600000077945,-0.062066507835185025 +177753,888.7650000077946,-0.06206515101699767 +177754,888.7700000077947,-0.06206379453990576 +177755,888.7750000077948,-0.062062438403709196 +177756,888.7800000077949,-0.06206108260820818 +177757,888.785000007795,-0.06205972715320319 +177758,888.7900000077951,-0.062058372038494895 +177759,888.7950000077952,-0.06205701726388431 +177760,888.8000000077953,-0.06205566282917263 +177761,888.8050000077955,-0.062054308734161366 +177762,888.8100000077956,-0.06205295497865226 +177763,888.8150000077957,-0.062051601562447274 +177764,888.8200000077958,-0.06205024848534871 +177765,888.8250000077959,-0.062048895747159036 +177766,888.830000007796,-0.06204754334768104 +177767,888.8350000077961,-0.06204619128671775 +177768,888.8400000077962,-0.062044839564072404 +177769,888.8450000077963,-0.06204348817954855 +177770,888.8500000077964,-0.06204213713294996 +177771,888.8550000077965,-0.06204078642408068 +177772,888.8600000077967,-0.06203943605274499 +177773,888.8650000077968,-0.06203808601874743 +177774,888.8700000077969,-0.062036736321892806 +177775,888.875000007797,-0.062035386961986135 +177776,888.8800000077971,-0.06203403793883271 +177777,888.8850000077972,-0.0620326892522381 +177778,888.8900000077973,-0.062031340902008084 +177779,888.8950000077974,-0.06202999288794869 +177780,888.9000000077975,-0.06202864520986624 +177781,888.9050000077976,-0.06202729786756727 +177782,888.9100000077977,-0.062025950860858575 +177783,888.9150000077979,-0.062024604189547194 +177784,888.920000007798,-0.0620232578534404 +177785,888.9250000077981,-0.062021911852345755 +177786,888.9300000077982,-0.06202056618607104 +177787,888.9350000077983,-0.062019220854424274 +177788,888.9400000077984,-0.06201787585721374 +177789,888.9450000077985,-0.062016531194247965 +177790,888.9500000077986,-0.06201518686533572 +177791,888.9550000077987,-0.06201384287028603 +177792,888.9600000077988,-0.06201249920890814 +177793,888.965000007799,-0.06201115588101156 +177794,888.9700000077991,-0.06200981288640606 +177795,888.9750000077992,-0.0620084702249016 +177796,888.9800000077993,-0.062007127896308446 +177797,888.9850000077994,-0.06200578590043708 +177798,888.9900000077995,-0.0620044442370982 +177799,888.9950000077996,-0.062003102906102794 +177800,889.0000000077997,-0.06200176190726208 +177801,889.0050000077998,-0.062000421240387495 +177802,889.0100000077999,-0.06199908090529074 +177803,889.0150000078,-0.06199774090178375 +177804,889.0200000078001,-0.061996401229678685 +177805,889.0250000078003,-0.06199506188878796 +177806,889.0300000078004,-0.06199372287892425 +177807,889.0350000078005,-0.06199238419990043 +177808,889.0400000078006,-0.06199104585152965 +177809,889.0450000078007,-0.06198970783362528 +177810,889.0500000078008,-0.061988370146000935 +177811,889.0550000078009,-0.06198703278847046 +177812,889.060000007801,-0.061985695760847934 +177813,889.0650000078011,-0.06198435906294769 +177814,889.0700000078012,-0.06198302269458429 +177815,889.0750000078013,-0.06198168665557255 +177816,889.0800000078015,-0.06198035094572748 +177817,889.0850000078016,-0.06197901556486437 +177818,889.0900000078017,-0.061977680512798713 +177819,889.0950000078018,-0.06197634578934627 +177820,889.1000000078019,-0.06197501139432301 +177821,889.105000007802,-0.061973677327545135 +177822,889.1100000078021,-0.06197234358882909 +177823,889.1150000078022,-0.06197101017799157 +177824,889.1200000078023,-0.06196967709484949 +177825,889.1250000078024,-0.06196834433921998 +177826,889.1300000078026,-0.061967011910920446 +177827,889.1350000078027,-0.06196567980976849 +177828,889.1400000078028,-0.06196434803558195 +177829,889.1450000078029,-0.061963016588178904 +177830,889.150000007803,-0.06196168546737767 +177831,889.1550000078031,-0.06196035467299677 +177832,889.1600000078032,-0.061959024204855 +177833,889.1650000078033,-0.06195769406277134 +177834,889.1700000078034,-0.06195636424656502 +177835,889.1750000078035,-0.06195503475605551 +177836,889.1800000078036,-0.06195370559106249 +177837,889.1850000078038,-0.06195237675140588 +177838,889.1900000078039,-0.06195104823690584 +177839,889.195000007804,-0.06194972004738273 +177840,889.2000000078041,-0.06194839218265716 +177841,889.2050000078042,-0.061947064642549975 +177842,889.2100000078043,-0.06194573742688222 +177843,889.2150000078044,-0.06194441053547517 +177844,889.2200000078045,-0.06194308396815035 +177845,889.2250000078046,-0.0619417577247295 +177846,889.2300000078047,-0.06194043180503458 +177847,889.2350000078048,-0.06193910620888778 +177848,889.240000007805,-0.06193778093611151 +177849,889.2450000078051,-0.061936455986528416 +177850,889.2500000078052,-0.061935131359961364 +177851,889.2550000078053,-0.06193380705623342 +177852,889.2600000078054,-0.061932483075167924 +177853,889.2650000078055,-0.0619311594165884 +177854,889.2700000078056,-0.06192983608031861 +177855,889.2750000078057,-0.061928513066182536 +177856,889.2800000078058,-0.06192719037400438 +177857,889.2850000078059,-0.061925868003608574 +177858,889.290000007806,-0.06192454595481975 +177859,889.2950000078062,-0.0619232242274628 +177860,889.3000000078063,-0.061921902821362805 +177861,889.3050000078064,-0.06192058173634507 +177862,889.3100000078065,-0.061919260972235136 +177863,889.3150000078066,-0.06191794052885875 +177864,889.3200000078067,-0.061916620406041886 +177865,889.3250000078068,-0.061915300603610744 +177866,889.3300000078069,-0.06191398112139173 +177867,889.335000007807,-0.06191266195921146 +177868,889.3400000078071,-0.061911343116896805 +177869,889.3450000078072,-0.06191002459427482 +177870,889.3500000078074,-0.061908706391172776 +177871,889.3550000078075,-0.06190738850741819 +177872,889.3600000078076,-0.06190607094283878 +177873,889.3650000078077,-0.06190475369726248 +177874,889.3700000078078,-0.061903436770517434 +177875,889.3750000078079,-0.06190212016243202 +177876,889.380000007808,-0.061900803872834816 +177877,889.3850000078081,-0.061899487901554626 +177878,889.3900000078082,-0.061898172248420466 +177879,889.3950000078083,-0.06189685691326156 +177880,889.4000000078084,-0.06189554189590736 +177881,889.4050000078086,-0.0618942271961875 +177882,889.4100000078087,-0.06189291281393189 +177883,889.4150000078088,-0.06189159874897058 +177884,889.4200000078089,-0.06189028500113389 +177885,889.425000007809,-0.06188897157025234 +177886,889.4300000078091,-0.06188765845615663 +177887,889.4350000078092,-0.06188634565867771 +177888,889.4400000078093,-0.06188503317764674 +177889,889.4450000078094,-0.061883721012895056 +177890,889.4500000078095,-0.06188240916425424 +177891,889.4550000078096,-0.061881097631556074 +177892,889.4600000078098,-0.06187978641463255 +177893,889.4650000078099,-0.06187847551331588 +177894,889.47000000781,-0.06187716492743847 +177895,889.4750000078101,-0.06187585465683294 +177896,889.4800000078102,-0.06187454470133214 +177897,889.4850000078103,-0.06187323506076909 +177898,889.4900000078104,-0.06187192573497705 +177899,889.4950000078105,-0.06187061672378948 +177900,889.5000000078106,-0.06186930802704005 +177901,889.5050000078107,-0.06186799964456263 +177902,889.5100000078108,-0.061866691576191304 +177903,889.515000007811,-0.061865383821760364 +177904,889.5200000078111,-0.0618640763811043 +177905,889.5250000078112,-0.06186276925405781 +177906,889.5300000078113,-0.061861462440455824 +177907,889.5350000078114,-0.061860155940133436 +177908,889.5400000078115,-0.06185884975292598 +177909,889.5450000078116,-0.06185754387866898 +177910,889.5500000078117,-0.061856238317198164 +177911,889.5550000078118,-0.061854933068349466 +177912,889.5600000078119,-0.06185362813195903 +177913,889.565000007812,-0.06185232350786319 +177914,889.5700000078122,-0.061851019195898506 +177915,889.5750000078123,-0.061849715195901725 +177916,889.5800000078124,-0.0618484115077098 +177917,889.5850000078125,-0.061847108131159886 +177918,889.5900000078126,-0.06184580506608934 +177919,889.5950000078127,-0.061844502312335736 +177920,889.6000000078128,-0.06184319986973684 +177921,889.6050000078129,-0.0618418977381306 +177922,889.610000007813,-0.06184059591735519 +177923,889.6150000078131,-0.061839294407248974 +177924,889.6200000078132,-0.06183799320765053 +177925,889.6250000078134,-0.06183669231839862 +177926,889.6300000078135,-0.06183539173933221 +177927,889.6350000078136,-0.061834091470290474 +177928,889.6400000078137,-0.06183279151111279 +177929,889.6450000078138,-0.061831491861638714 +177930,889.6500000078139,-0.061830192521708 +177931,889.655000007814,-0.06182889349116063 +177932,889.6600000078141,-0.06182759476983676 +177933,889.6650000078142,-0.061826296357576756 +177934,889.6700000078143,-0.06182499825422116 +177935,889.6750000078144,-0.06182370045961075 +177936,889.6800000078146,-0.06182240297358647 +177937,889.6850000078147,-0.061821105795989456 +177938,889.6900000078148,-0.06181980892666107 +177939,889.6950000078149,-0.06181851236544284 +177940,889.700000007815,-0.061817216112176526 +177941,889.7050000078151,-0.06181592016670405 +177942,889.7100000078152,-0.061814624528867525 +177943,889.7150000078153,-0.061813329198509306 +177944,889.7200000078154,-0.061812034175471896 +177945,889.7250000078155,-0.061810739459597995 +177946,889.7300000078156,-0.061809445050730535 +177947,889.7350000078158,-0.06180815094871258 +177948,889.7400000078159,-0.061806857153387455 +177949,889.745000007816,-0.06180556366459864 +177950,889.7500000078161,-0.06180427048218981 +177951,889.7550000078162,-0.061802977606004846 +177952,889.7600000078163,-0.061801685035887816 +177953,889.7650000078164,-0.06180039277168296 +177954,889.7700000078165,-0.061799100813234746 +177955,889.7750000078166,-0.0617978091603878 +177956,889.7800000078167,-0.06179651781298695 +177957,889.7850000078168,-0.06179522677087724 +177958,889.790000007817,-0.06179393603390386 +177959,889.7950000078171,-0.06179264560191223 +177960,889.8000000078172,-0.061791355474747935 +177961,889.8050000078173,-0.06179006565225675 +177962,889.8100000078174,-0.06178877613428465 +177963,889.8150000078175,-0.06178748692067781 +177964,889.8200000078176,-0.061786198011282566 +177965,889.8250000078177,-0.06178490940594547 +177966,889.8300000078178,-0.06178362110451325 +177967,889.8350000078179,-0.061782333106832794 +177968,889.840000007818,-0.06178104541275124 +177969,889.8450000078182,-0.061779758022115855 +177970,889.8500000078183,-0.061778470934774135 +177971,889.8550000078184,-0.06177718415057372 +177972,889.8600000078185,-0.06177589766936248 +177973,889.8650000078186,-0.06177461149098844 +177974,889.8700000078187,-0.06177332561529983 +177975,889.8750000078188,-0.06177204004214505 +177976,889.8800000078189,-0.061770754771372706 +177977,889.885000007819,-0.06176946980283158 +177978,889.8900000078191,-0.06176818513637062 +177979,889.8950000078192,-0.061766900771838995 +177980,889.9000000078194,-0.06176561670908602 +177981,889.9050000078195,-0.06176433294796121 +177982,889.9100000078196,-0.06176304948831428 +177983,889.9150000078197,-0.06176176632999511 +177984,889.9200000078198,-0.06176048347285377 +177985,889.9250000078199,-0.061759200916740496 +177986,889.93000000782,-0.06175791866150574 +177987,889.9350000078201,-0.061756636707000115 +177988,889.9400000078202,-0.0617553550530744 +177989,889.9450000078203,-0.061754073699579595 +177990,889.9500000078204,-0.06175279264636684 +177991,889.9550000078206,-0.0617515118932875 +177992,889.9600000078207,-0.06175023144019309 +177993,889.9650000078208,-0.06174895128693531 +177994,889.9700000078209,-0.06174767143336604 +177995,889.975000007821,-0.06174639187933735 +177996,889.9800000078211,-0.06174511262470149 +177997,889.9850000078212,-0.061743833669310876 +177998,889.9900000078213,-0.061742555013018105 +177999,889.9950000078214,-0.061741276655675977 +178000,890.0000000078215,-0.06173999859713745 +178001,890.0050000078216,-0.061738720837255644 +178002,890.0100000078218,-0.0617374433758839 +178003,890.0150000078219,-0.061736166212875705 +178004,890.020000007822,-0.06173488934808472 +178005,890.0250000078221,-0.06173361278136481 +178006,890.0300000078222,-0.06173233651257001 +178007,890.0350000078223,-0.061731060541554514 +178008,890.0400000078224,-0.0617297848681727 +178009,890.0450000078225,-0.06172850949227915 +178010,890.0500000078226,-0.06172723441372857 +178011,890.0550000078227,-0.06172595963237588 +178012,890.0600000078229,-0.061724685148076164 +178013,890.065000007823,-0.06172341096068469 +178014,890.0700000078231,-0.06172213707005687 +178015,890.0750000078232,-0.061720863476048354 +178016,890.0800000078233,-0.061719590178514895 +178017,890.0850000078234,-0.06171831717731247 +178018,890.0900000078235,-0.06171704447229721 +178019,890.0950000078236,-0.0617157720633254 +178020,890.1000000078237,-0.061714499950253555 +178021,890.1050000078238,-0.061713228132938315 +178022,890.1100000078239,-0.061711956611236504 +178023,890.115000007824,-0.06171068538500512 +178024,890.1200000078242,-0.06170941445410134 +178025,890.1250000078243,-0.061708143818382494 +178026,890.1300000078244,-0.06170687347770611 +178027,890.1350000078245,-0.061705603431929885 +178028,890.1400000078246,-0.06170433368091166 +178029,890.1450000078247,-0.061703064224509475 +178030,890.1500000078248,-0.06170179506258153 +178031,890.1550000078249,-0.061700526194986186 +178032,890.160000007825,-0.061699257621581995 +178033,890.1650000078251,-0.06169798934222766 +178034,890.1700000078253,-0.061696721356782065 +178035,890.1750000078254,-0.06169545366510427 +178036,890.1800000078255,-0.06169418626705348 +178037,890.1850000078256,-0.061692919162489104 +178038,890.1900000078257,-0.06169165235127069 +178039,890.1950000078258,-0.06169038583325796 +178040,890.2000000078259,-0.06168911960831082 +178041,890.205000007826,-0.061687853676289324 +178042,890.2100000078261,-0.061686588037053694 +178043,890.2150000078262,-0.061685322690464346 +178044,890.2200000078263,-0.06168405763638184 +178045,890.2250000078265,-0.0616827928746669 +178046,890.2300000078266,-0.06168152840518043 +178047,890.2350000078267,-0.0616802642277835 +178048,890.2400000078268,-0.06167900034233734 +178049,890.2450000078269,-0.06167773674870334 +178050,890.250000007827,-0.061676473446743076 +178051,890.2550000078271,-0.06167521043631827 +178052,890.2600000078272,-0.0616739477172908 +178053,890.2650000078273,-0.06167268528952275 +178054,890.2700000078274,-0.06167142315287633 +178055,890.2750000078275,-0.06167016130721395 +178056,890.2800000078277,-0.061668899752398136 +178057,890.2850000078278,-0.06166763848829162 +178058,890.2900000078279,-0.06166637751475726 +178059,890.295000007828,-0.06166511683165812 +178060,890.3000000078281,-0.06166385643885741 +178061,890.3050000078282,-0.061662596336218484 +178062,890.3100000078283,-0.061661336523604886 +178063,890.3150000078284,-0.06166007700088031 +178064,890.3200000078285,-0.061658817767908616 +178065,890.3250000078286,-0.061657558824553815 +178066,890.3300000078287,-0.0616563001706801 +178067,890.3350000078289,-0.061655041806151785 +178068,890.340000007829,-0.06165378373083341 +178069,890.3450000078291,-0.06165252594458963 +178070,890.3500000078292,-0.061651268447285246 +178071,890.3550000078293,-0.06165001123878527 +178072,890.3600000078294,-0.06164875431895484 +178073,890.3650000078295,-0.06164749768765927 +178074,890.3700000078296,-0.061646241344764006 +178075,890.3750000078297,-0.0616449852901347 +178076,890.3800000078298,-0.06164372952363712 +178077,890.38500000783,-0.06164247404513722 +178078,890.39000000783,-0.06164121885450109 +178079,890.3950000078302,-0.06163996395159501 +178080,890.4000000078303,-0.061638709336285374 +178081,890.4050000078304,-0.06163745500843878 +178082,890.4100000078305,-0.06163620096792195 +178083,890.4150000078306,-0.0616349472146018 +178084,890.4200000078307,-0.061633693748345354 +178085,890.4250000078308,-0.061632440569019835 +178086,890.4300000078309,-0.061631187676492616 +178087,890.435000007831,-0.061629935070631206 +178088,890.4400000078311,-0.06162868275130329 +178089,890.4450000078313,-0.06162743071837669 +178090,890.4500000078314,-0.061626178971719396 +178091,890.4550000078315,-0.06162492751119957 +178092,890.4600000078316,-0.06162367633668551 +178093,890.4650000078317,-0.061622425448045665 +178094,890.4700000078318,-0.061621174845148646 +178095,890.4750000078319,-0.06161992452786322 +178096,890.480000007832,-0.06161867449605832 +178097,890.4850000078321,-0.061617424749603 +178098,890.4900000078322,-0.061616175288366506 +178099,890.4950000078323,-0.061614926112218214 +178100,890.5000000078325,-0.061613677221027674 +178101,890.5050000078326,-0.06161242861466455 +178102,890.5100000078327,-0.06161118029299871 +178103,890.5150000078328,-0.061609932255900134 +178104,890.5200000078329,-0.06160868450323899 +178105,890.525000007833,-0.06160743703488557 +178106,890.5300000078331,-0.061606189850710306 +178107,890.5350000078332,-0.06160494295058384 +178108,890.5400000078333,-0.061603696334376894 +178109,890.5450000078334,-0.06160245000196041 +178110,890.5500000078335,-0.06160120395320542 +178111,890.5550000078337,-0.061599958187983146 +178112,890.5600000078338,-0.06159871270616496 +178113,890.5650000078339,-0.06159746750762237 +178114,890.570000007834,-0.06159622259222702 +178115,890.5750000078341,-0.06159497795985076 +178116,890.5800000078342,-0.061593733610365506 +178117,890.5850000078343,-0.06159248954364341 +178118,890.5900000078344,-0.06159124575955671 +178119,890.5950000078345,-0.06159000225797783 +178120,890.6000000078346,-0.061588759038779334 +178121,890.6050000078347,-0.06158751610183391 +178122,890.6100000078349,-0.06158627344701445 +178123,890.615000007835,-0.061585031074193934 +178124,890.6200000078351,-0.06158378898324553 +178125,890.6250000078352,-0.06158254717404252 +178126,890.6300000078353,-0.061581305646458376 +178127,890.6350000078354,-0.06158006440036668 +178128,890.6400000078355,-0.06157882343564119 +178129,890.6450000078356,-0.06157758275215578 +178130,890.6500000078357,-0.06157634234978451 +178131,890.6550000078358,-0.06157510222840155 +178132,890.660000007836,-0.061573862387881234 +178133,890.665000007836,-0.06157262282809805 +178134,890.6700000078362,-0.061571383548926606 +178135,890.6750000078363,-0.061570144550241665 +178136,890.6800000078364,-0.06156890583191816 +178137,890.6850000078365,-0.06156766739383115 +178138,890.6900000078366,-0.06156642923585582 +178139,890.6950000078367,-0.06156519135786753 +178140,890.7000000078368,-0.06156395375974178 +178141,890.7050000078369,-0.0615627164413542 +178142,890.710000007837,-0.061561479402580575 +178143,890.7150000078371,-0.061560242643296834 +178144,890.7200000078373,-0.06155900616337904 +178145,890.7250000078374,-0.06155776996270341 +178146,890.7300000078375,-0.06155653404114629 +178147,890.7350000078376,-0.0615552983985842 +178148,890.7400000078377,-0.061554063034893775 +178149,890.7450000078378,-0.061552827949951795 +178150,890.7500000078379,-0.06155159314363519 +178151,890.755000007838,-0.061550358615821026 +178152,890.7600000078381,-0.06154912436638652 +178153,890.7650000078382,-0.061547890395209026 +178154,890.7700000078383,-0.06154665670216602 +178155,890.7750000078385,-0.061545423287135165 +178156,890.7800000078386,-0.061544190149994224 +178157,890.7850000078387,-0.06154295729062112 +178158,890.7900000078388,-0.061541724708893894 +178159,890.7950000078389,-0.06154049240469077 +178160,890.800000007839,-0.06153926037789007 +178161,890.8050000078391,-0.0615380286283703 +178162,890.8100000078392,-0.06153679715601004 +178163,890.8150000078393,-0.06153556596068808 +178164,890.8200000078394,-0.061534335042283304 +178165,890.8250000078395,-0.06153310440067475 +178166,890.8300000078397,-0.0615318740357416 +178167,890.8350000078398,-0.06153064394736316 +178168,890.8400000078399,-0.06152941413541889 +178169,890.84500000784,-0.06152818459978838 +178170,890.8500000078401,-0.06152695534035135 +178171,890.8550000078402,-0.06152572635698769 +178172,890.8600000078403,-0.061524497649577396 +178173,890.8650000078404,-0.06152326921800061 +178174,890.8700000078405,-0.06152204106213761 +178175,890.8750000078406,-0.061520813181868805 +178176,890.8800000078407,-0.061519585577074765 +178177,890.8850000078409,-0.06151835824763617 +178178,890.890000007841,-0.06151713119343387 +178179,890.8950000078411,-0.06151590441434881 +178180,890.9000000078412,-0.06151467791026208 +178181,890.9050000078413,-0.06151345168105493 +178182,890.9100000078414,-0.061512225726608735 +178183,890.9150000078415,-0.061511000046804994 +178184,890.9200000078416,-0.06150977464152536 +178185,890.9250000078417,-0.06150854951065158 +178186,890.9300000078418,-0.06150732465406559 +178187,890.935000007842,-0.06150610007164943 +178188,890.9400000078421,-0.06150487576328528 +178189,890.9450000078422,-0.061503651728855475 +178190,890.9500000078423,-0.06150242796824244 +178191,890.9550000078424,-0.06150120448132877 +178192,890.9600000078425,-0.061499981267997175 +178193,890.9650000078426,-0.06149875832813051 +178194,890.9700000078427,-0.06149753566161175 +178195,890.9750000078428,-0.06149631326832402 +178196,890.9800000078429,-0.06149509114815055 +178197,890.985000007843,-0.06149386930097474 +178198,890.9900000078432,-0.06149264772668009 +178199,890.9950000078433,-0.061491426425150264 +178200,891.0000000078434,-0.06149020539626904 +178201,891.0050000078435,-0.06148898463992031 +178202,891.0100000078436,-0.06148776415598812 +178203,891.0150000078437,-0.06148654394435664 +178204,891.0200000078438,-0.061485324004910184 +178205,891.0250000078439,-0.06148410433753319 +178206,891.030000007844,-0.061482884942110204 +178207,891.0350000078441,-0.06148166581852594 +178208,891.0400000078442,-0.061480446966665214 +178209,891.0450000078444,-0.06147922838641299 +178210,891.0500000078445,-0.06147801007765435 +178211,891.0550000078446,-0.06147679204027452 +178212,891.0600000078447,-0.06147557427415883 +178213,891.0650000078448,-0.06147435677919276 +178214,891.0700000078449,-0.06147313955526192 +178215,891.075000007845,-0.06147192260225205 +178216,891.0800000078451,-0.061470705920049 +178217,891.0850000078452,-0.061469489508538776 +178218,891.0900000078453,-0.06146827336760747 +178219,891.0950000078454,-0.061467057497141354 +178220,891.1000000078456,-0.06146584189702679 +178221,891.1050000078457,-0.06146462656715029 +178222,891.1100000078458,-0.061463411507398494 +178223,891.1150000078459,-0.061462196717658145 +178224,891.120000007846,-0.061460982197816136 +178225,891.1250000078461,-0.061459767947759474 +178226,891.1300000078462,-0.06145855396737531 +178227,891.1350000078463,-0.06145734025655091 +178228,891.1400000078464,-0.06145612681517365 +178229,891.1450000078465,-0.06145491364313106 +178230,891.1500000078466,-0.06145370074031079 +178231,891.1550000078468,-0.06145248810660061 +178232,891.1600000078469,-0.06145127574188841 +178233,891.165000007847,-0.06145006364606222 +178234,891.1700000078471,-0.06144885181901019 +178235,891.1750000078472,-0.06144764026062059 +178236,891.1800000078473,-0.06144642897078181 +178237,891.1850000078474,-0.06144521794938238 +178238,891.1900000078475,-0.06144400719631096 +178239,891.1950000078476,-0.06144279671145631 +178240,891.2000000078477,-0.06144158649470732 +178241,891.2050000078478,-0.06144037654595302 +178242,891.210000007848,-0.061439166865082544 +178243,891.2150000078481,-0.06143795745198517 +178244,891.2200000078482,-0.061436748306550285 +178245,891.2250000078483,-0.06143553942866741 +178246,891.2300000078484,-0.06143433081822618 +178247,891.2350000078485,-0.061433122475116335 +178248,891.2400000078486,-0.061431914399227794 +178249,891.2450000078487,-0.061430706590450544 +178250,891.2500000078488,-0.0614294990486747 +178251,891.2550000078489,-0.061428291773790535 +178252,891.260000007849,-0.06142708476568841 +178253,891.2650000078492,-0.061425878024258806 +178254,891.2700000078493,-0.06142467154939237 +178255,891.2750000078494,-0.06142346534097982 +178256,891.2800000078495,-0.06142225939891201 +178257,891.2850000078496,-0.061421053723079926 +178258,891.2900000078497,-0.06141984831337467 +178259,891.2950000078498,-0.06141864316968746 +178260,891.3000000078499,-0.06141743829190963 +178261,891.30500000785,-0.06141623367993266 +178262,891.3100000078501,-0.061415029333648126 +178263,891.3150000078502,-0.06141382525294772 +178264,891.3200000078504,-0.06141262143772326 +178265,891.3250000078505,-0.06141141788786671 +178266,891.3300000078506,-0.061410214603270105 +178267,891.3350000078507,-0.06140901158382565 +178268,891.3400000078508,-0.06140780882942562 +178269,891.3450000078509,-0.06140660633996245 +178270,891.350000007851,-0.06140540411532867 +178271,891.3550000078511,-0.06140420215541693 +178272,891.3600000078512,-0.06140300046012 +178273,891.3650000078513,-0.06140179902933079 +178274,891.3700000078514,-0.061400597862942295 +178275,891.3750000078516,-0.06139939696084764 +178276,891.3800000078517,-0.06139819632294008 +178277,891.3850000078518,-0.06139699594911298 +178278,891.3900000078519,-0.061395795839259804 +178279,891.395000007852,-0.061394595993274154 +178280,891.4000000078521,-0.06139339641104975 +178281,891.4050000078522,-0.061392197092480415 +178282,891.4100000078523,-0.06139099803746011 +178283,891.4150000078524,-0.06138979924588287 +178284,891.4200000078525,-0.061388600717642905 +178285,891.4250000078526,-0.06138740245263449 +178286,891.4300000078528,-0.06138620445075205 +178287,891.4350000078529,-0.0613850067118901 +178288,891.440000007853,-0.06138380923594329 +178289,891.4450000078531,-0.06138261202280637 +178290,891.4500000078532,-0.061381415072374226 +178291,891.4550000078533,-0.061380218384541836 +178292,891.4600000078534,-0.0613790219592043 +178293,891.4650000078535,-0.06137782579625683 +178294,891.4700000078536,-0.061376629895594774 +178295,891.4750000078537,-0.06137543425711359 +178296,891.4800000078538,-0.0613742388807088 +178297,891.485000007854,-0.061373043766276114 +178298,891.4900000078541,-0.061371848913711294 +178299,891.4950000078542,-0.061370654322910244 +178300,891.5000000078543,-0.061369459993768985 +178301,891.5050000078544,-0.061368265926183656 +178302,891.5100000078545,-0.06136707212005048 +178303,891.5150000078546,-0.06136587857526583 +178304,891.5200000078547,-0.061364685291726145 +178305,891.5250000078548,-0.06136349226932804 +178306,891.5300000078549,-0.06136229950796818 +178307,891.535000007855,-0.06136110700754338 +178308,891.5400000078552,-0.06135991476795056 +178309,891.5450000078553,-0.06135872278908673 +178310,891.5500000078554,-0.06135753107084905 +178311,891.5550000078555,-0.061356339613134754 +178312,891.5600000078556,-0.061355148415841214 +178313,891.5650000078557,-0.06135395747886591 +178314,891.5700000078558,-0.06135276680210642 +178315,891.5750000078559,-0.06135157638546043 +178316,891.580000007856,-0.06135038622882576 +178317,891.5850000078561,-0.06134919633210032 +178318,891.5900000078562,-0.06134800669518214 +178319,891.5950000078564,-0.06134681731796936 +178320,891.6000000078565,-0.061345628200360214 +178321,891.6050000078566,-0.06134443934225307 +178322,891.6100000078567,-0.06134325074354641 +178323,891.6150000078568,-0.06134206240413879 +178324,891.6200000078569,-0.0613408743239289 +178325,891.625000007857,-0.061339686502815544 +178326,891.6300000078571,-0.06133849894069761 +178327,891.6350000078572,-0.061337311637474114 +178328,891.6400000078573,-0.0613361245930442 +178329,891.6450000078574,-0.06133493780730709 +178330,891.6500000078576,-0.061333751280162094 +178331,891.6550000078577,-0.061332565011508695 +178332,891.6600000078578,-0.06133137900124642 +178333,891.6650000078579,-0.06133019324927496 +178334,891.670000007858,-0.06132900775549406 +178335,891.6750000078581,-0.06132782251980362 +178336,891.6800000078582,-0.061326637542103615 +178337,891.6850000078583,-0.061325452822294124 +178338,891.6900000078584,-0.06132426836027537 +178339,891.6950000078585,-0.06132308415594766 +178340,891.7000000078586,-0.06132190020921138 +178341,891.7050000078588,-0.06132071651996708 +178342,891.7100000078589,-0.06131953308811538 +178343,891.715000007859,-0.061318349913557 +178344,891.7200000078591,-0.061317166996192794 +178345,891.7250000078592,-0.0613159843359237 +178346,891.7300000078593,-0.06131480193265077 +178347,891.7350000078594,-0.061313619786275156 +178348,891.7400000078595,-0.06131243789669813 +178349,891.7450000078596,-0.06131125626382105 +178350,891.7500000078597,-0.0613100748875454 +178351,891.7550000078598,-0.061308893767772744 +178352,891.76000000786,-0.06130771290440477 +178353,891.7650000078601,-0.06130653229734325 +178354,891.7700000078602,-0.06130535194649011 +178355,891.7750000078603,-0.061304171851747316 +178356,891.7800000078604,-0.06130299201301698 +178357,891.7850000078605,-0.061301812430201295 +178358,891.7900000078606,-0.061300633103202586 +178359,891.7950000078607,-0.061299454031923266 +178360,891.8000000078608,-0.061298275216265824 +178361,891.8050000078609,-0.06129709665613289 +178362,891.810000007861,-0.061295918351427205 +178363,891.8150000078612,-0.06129474030205158 +178364,891.8200000078613,-0.06129356250790895 +178365,891.8250000078614,-0.061292384968902325 +178366,891.8300000078615,-0.06129120768493486 +178367,891.8350000078616,-0.06129003065590977 +178368,891.8400000078617,-0.06128885388173042 +178369,891.8450000078618,-0.06128767736230023 +178370,891.8500000078619,-0.06128650109752276 +178371,891.855000007862,-0.06128532508730163 +178372,891.8600000078621,-0.061284149331540604 +178373,891.8650000078622,-0.061282973830143535 +178374,891.8700000078624,-0.06128179858301435 +178375,891.8750000078625,-0.06128062359005712 +178376,891.8800000078626,-0.061279448851175984 +178377,891.8850000078627,-0.0612782743662752 +178378,891.8900000078628,-0.06127710013525912 +178379,891.8950000078629,-0.06127592615803219 +178380,891.900000007863,-0.06127475243449898 +178381,891.9050000078631,-0.061273578964564125 +178382,891.9100000078632,-0.061272405748132384 +178383,891.9150000078633,-0.061271232785108626 +178384,891.9200000078635,-0.06127006007539779 +178385,891.9250000078636,-0.061268887618904956 +178386,891.9300000078637,-0.06126771541553525 +178387,891.9350000078638,-0.06126654346519393 +178388,891.9400000078639,-0.06126537176778636 +178389,891.945000007864,-0.06126420032321799 +178390,891.9500000078641,-0.061263029131394364 +178391,891.9550000078642,-0.06126185819222113 +178392,891.9600000078643,-0.06126068750560404 +178393,891.9650000078644,-0.06125951707144894 +178394,891.9700000078645,-0.06125834688966178 +178395,891.9750000078647,-0.0612571769601486 +178396,891.9800000078648,-0.06125600728281555 +178397,891.9850000078649,-0.06125483785756885 +178398,891.990000007865,-0.061253668684314845 +178399,891.9950000078651,-0.06125249976295999 +178400,892.0000000078652,-0.061251331093410785 +178401,892.0050000078653,-0.06125016267557388 +178402,892.0100000078654,-0.061248994509355996 +178403,892.0150000078655,-0.06124782659466396 +178404,892.0200000078656,-0.0612466589314047 +178405,892.0250000078657,-0.06124549151948522 +178406,892.0300000078659,-0.061244324358812635 +178407,892.035000007866,-0.061243157449294164 +178408,892.0400000078661,-0.06124199079083711 +178409,892.0450000078662,-0.06124082438334888 +178410,892.0500000078663,-0.061239658226736965 +178411,892.0550000078664,-0.061238492320908965 +178412,892.0600000078665,-0.06123732666577257 +178413,892.0650000078666,-0.06123616126123558 +178414,892.0700000078667,-0.06123499610720586 +178415,892.0750000078668,-0.061233831203591396 +178416,892.0800000078669,-0.061232666550300255 +178417,892.085000007867,-0.06123150214724061 +178418,892.0900000078672,-0.061230337994320705 +178419,892.0950000078673,-0.06122917409144893 +178420,892.1000000078674,-0.0612280104385337 +178421,892.1050000078675,-0.0612268470354836 +178422,892.1100000078676,-0.06122568388220725 +178423,892.1150000078677,-0.06122452097861338 +178424,892.1200000078678,-0.06122335832461083 +178425,892.1250000078679,-0.0612221959201085 +178426,892.130000007868,-0.061221033765015434 +178427,892.1350000078681,-0.06121987185924074 +178428,892.1400000078683,-0.061218710202693614 +178429,892.1450000078684,-0.06121754879528335 +178430,892.1500000078685,-0.06121638763691934 +178431,892.1550000078686,-0.06121522672751107 +178432,892.1600000078687,-0.0612140660669681 +178433,892.1650000078688,-0.06121290565520012 +178434,892.1700000078689,-0.06121174549211688 +178435,892.175000007869,-0.061210585577628235 +178436,892.1800000078691,-0.06120942591164415 +178437,892.1850000078692,-0.06120826649407464 +178438,892.1900000078693,-0.06120710732482983 +178439,892.1950000078695,-0.06120594840381996 +178440,892.2000000078696,-0.06120478973095534 +178441,892.2050000078697,-0.06120363130614638 +178442,892.2100000078698,-0.06120247312930357 +178443,892.2150000078699,-0.06120131520033749 +178444,892.22000000787,-0.06120015751915884 +178445,892.2250000078701,-0.06119900008567838 +178446,892.2300000078702,-0.061197842899806974 +178447,892.2350000078703,-0.061196685961455576 +178448,892.2400000078704,-0.06119552927053522 +178449,892.2450000078705,-0.06119437282695705 +178450,892.2500000078707,-0.06119321663063228 +178451,892.2550000078708,-0.061192060681472246 +178452,892.2600000078709,-0.061190904979388325 +178453,892.265000007871,-0.06118974952429203 +178454,892.2700000078711,-0.061188594316094934 +178455,892.2750000078712,-0.06118743935470873 +178456,892.2800000078713,-0.06118628464004518 +178457,892.2850000078714,-0.061185130172016114 +178458,892.2900000078715,-0.061183975950533494 +178459,892.2950000078716,-0.061182821975509345 +178460,892.3000000078717,-0.061181668246855794 +178461,892.3050000078719,-0.06118051476448504 +178462,892.310000007872,-0.0611793615283094 +178463,892.3150000078721,-0.061178208538241255 +178464,892.3200000078722,-0.061177055794193066 +178465,892.3250000078723,-0.06117590329607741 +178466,892.3300000078724,-0.06117475104380694 +178467,892.3350000078725,-0.061173599037294385 +178468,892.3400000078726,-0.061172447276452574 +178469,892.3450000078727,-0.06117129576119444 +178470,892.3500000078728,-0.061170144491432994 +178471,892.355000007873,-0.061168993467081295 +178472,892.360000007873,-0.061167842688052546 +178473,892.3650000078732,-0.06116669215426001 +178474,892.3700000078733,-0.06116554186561703 +178475,892.3750000078734,-0.06116439182203706 +178476,892.3800000078735,-0.06116324202343363 +178477,892.3850000078736,-0.06116209246972035 +178478,892.3900000078737,-0.061160943160810916 +178479,892.3950000078738,-0.061159794096619126 +178480,892.4000000078739,-0.06115864527705884 +178481,892.405000007874,-0.06115749670204403 +178482,892.4100000078741,-0.06115634837148875 +178483,892.4150000078743,-0.06115520028530712 +178484,892.4200000078744,-0.06115405244341335 +178485,892.4250000078745,-0.061152904845721764 +178486,892.4300000078746,-0.06115175749214674 +178487,892.4350000078747,-0.06115061038260276 +178488,892.4400000078748,-0.06114946351700438 +178489,892.4450000078749,-0.06114831689526625 +178490,892.450000007875,-0.0611471705173031 +178491,892.4550000078751,-0.06114602438302974 +178492,892.4600000078752,-0.061144878492361075 +178493,892.4650000078753,-0.0611437328452121 +178494,892.4700000078755,-0.061142587441497885 +178495,892.4750000078756,-0.061141442281133565 +178496,892.4800000078757,-0.061140297364034396 +178497,892.4850000078758,-0.061139152690115696 +178498,892.4900000078759,-0.06113800825929287 +178499,892.495000007876,-0.061136864071481424 +178500,892.5000000078761,-0.061135720126596925 +178501,892.5050000078762,-0.06113457642455504 +178502,892.5100000078763,-0.061133432965271496 +178503,892.5150000078764,-0.06113228974866213 +178504,892.5200000078765,-0.06113114677464285 +178505,892.5250000078767,-0.061130004043129633 +178506,892.5300000078768,-0.06112886155403858 +178507,892.5350000078769,-0.06112771930728585 +178508,892.540000007877,-0.06112657730278765 +178509,892.5450000078771,-0.06112543554046035 +178510,892.5500000078772,-0.06112429402022032 +178511,892.5550000078773,-0.06112315274198407 +178512,892.5600000078774,-0.061122011705668174 +178513,892.5650000078775,-0.06112087091118927 +178514,892.5700000078776,-0.06111973035846411 +178515,892.5750000078777,-0.0611185900474095 +178516,892.5800000078779,-0.06111744997794234 +178517,892.585000007878,-0.061116310149979626 +178518,892.5900000078781,-0.06111517056343841 +178519,892.5950000078782,-0.06111403121823585 +178520,892.6000000078783,-0.06111289211428917 +178521,892.6050000078784,-0.06111175325151565 +178522,892.6100000078785,-0.061110614629832714 +178523,892.6150000078786,-0.06110947624915781 +178524,892.6200000078787,-0.061108338109408494 +178525,892.6250000078788,-0.0611072002105024 +178526,892.630000007879,-0.06110606255235723 +178527,892.6350000078791,-0.06110492513489079 +178528,892.6400000078792,-0.06110378795802095 +178529,892.6450000078793,-0.06110265102166565 +178530,892.6500000078794,-0.06110151432574294 +178531,892.6550000078795,-0.06110037787017093 +178532,892.6600000078796,-0.06109924165486781 +178533,892.6650000078797,-0.06109810567975185 +178534,892.6700000078798,-0.061096969944741404 +178535,892.6750000078799,-0.0610958344497549 +178536,892.68000000788,-0.06109469919471087 +178537,892.6850000078801,-0.06109356417952789 +178538,892.6900000078803,-0.06109242940412462 +178539,892.6950000078804,-0.061091294868419826 +178540,892.7000000078805,-0.061090160572332325 +178541,892.7050000078806,-0.061089026515781034 +178542,892.7100000078807,-0.06108789269868493 +178543,892.7150000078808,-0.06108675912096307 +178544,892.7200000078809,-0.061085625782534604 +178545,892.725000007881,-0.061084492683318774 +178546,892.7300000078811,-0.06108335982323486 +178547,892.7350000078812,-0.06108222720220224 +178548,892.7400000078813,-0.06108109482014037 +178549,892.7450000078815,-0.061079962676968774 +178550,892.7500000078816,-0.061078830772607076 +178551,892.7550000078817,-0.06107769910697496 +178552,892.7600000078818,-0.06107656767999219 +178553,892.7650000078819,-0.06107543649157863 +178554,892.770000007882,-0.06107430554165417 +178555,892.7750000078821,-0.06107317483013883 +178556,892.7800000078822,-0.061072044356952675 +178557,892.7850000078823,-0.06107091412201587 +178558,892.7900000078824,-0.06106978412524862 +178559,892.7950000078825,-0.06106865436657125 +178560,892.8000000078827,-0.06106752484590414 +178561,892.8050000078828,-0.06106639556316776 +178562,892.8100000078829,-0.061065266518282625 +178563,892.815000007883,-0.06106413771116935 +178564,892.8200000078831,-0.061063009141748635 +178565,892.8250000078832,-0.06106188080994123 +178566,892.8300000078833,-0.06106075271566797 +178567,892.8350000078834,-0.061059624858849804 +178568,892.8400000078835,-0.061058497239407684 +178569,892.8450000078836,-0.0610573698572627 +178570,892.8500000078838,-0.061056242712335985 +178571,892.8550000078839,-0.06105511580454876 +178572,892.860000007884,-0.06105398913382233 +178573,892.8650000078841,-0.06105286270007804 +178574,892.8700000078842,-0.061051736503237336 +178575,892.8750000078843,-0.06105061054322175 +178576,892.8800000078844,-0.06104948481995287 +178577,892.8850000078845,-0.061048359333352356 +178578,892.8900000078846,-0.061047234083341964 +178579,892.8950000078847,-0.0610461090698435 +178580,892.9000000078848,-0.06104498429277885 +178581,892.905000007885,-0.061043859752069995 +178582,892.9100000078851,-0.06104273544763896 +178583,892.9150000078852,-0.06104161137940787 +178584,892.9200000078853,-0.06104048754729891 +178585,892.9250000078854,-0.061039363951234334 +178586,892.9300000078855,-0.06103824059113649 +178587,892.9350000078856,-0.061037117466927755 +178588,892.9400000078857,-0.061035994578530636 +178589,892.9450000078858,-0.06103487192586769 +178590,892.9500000078859,-0.061033749508861534 +178591,892.955000007886,-0.061032627327434884 +178592,892.9600000078862,-0.061031505381510504 +178593,892.9650000078863,-0.06103038367101124 +178594,892.9700000078864,-0.061029262195860016 +178595,892.9750000078865,-0.061028140955979825 +178596,892.9800000078866,-0.061027019951293726 +178597,892.9850000078867,-0.06102589918172485 +178598,892.9900000078868,-0.06102477864719643 +178599,892.9950000078869,-0.06102365834763174 +178600,893.000000007887,-0.061022538282954134 +178601,893.0050000078871,-0.06102141845308704 +178602,893.0100000078872,-0.061020298857953945 +178603,893.0150000078874,-0.06101917949747843 +178604,893.0200000078875,-0.061018060371584144 +178605,893.0250000078876,-0.06101694148019478 +178606,893.0300000078877,-0.06101582282323413 +178607,893.0350000078878,-0.06101470440062608 +178608,893.0400000078879,-0.06101358621229452 +178609,893.045000007888,-0.061012468258163456 +178610,893.0500000078881,-0.061011350538156976 +178611,893.0550000078882,-0.061010233052199214 +178612,893.0600000078883,-0.06100911580021438 +178613,893.0650000078884,-0.061007998782126746 +178614,893.0700000078886,-0.061006881997860675 +178615,893.0750000078887,-0.06100576544734059 +178616,893.0800000078888,-0.06100464913049099 +178617,893.0850000078889,-0.06100353304723645 +178618,893.090000007889,-0.061002417197501574 +178619,893.0950000078891,-0.061001301581211094 +178620,893.1000000078892,-0.061000186198289785 +178621,893.1050000078893,-0.06099907104866247 +178622,893.1100000078894,-0.06099795613225409 +178623,893.1150000078895,-0.06099684144898961 +178624,893.1200000078896,-0.060995726998794096 +178625,893.1250000078898,-0.06099461278159266 +178626,893.1300000078899,-0.06099349879731051 +178627,893.13500000789,-0.06099238504587289 +178628,893.1400000078901,-0.06099127152720516 +178629,893.1450000078902,-0.060990158241232696 +178630,893.1500000078903,-0.06098904518788096 +178631,893.1550000078904,-0.06098793236707552 +178632,893.1600000078905,-0.060986819778741964 +178633,893.1650000078906,-0.06098570742280597 +178634,893.1700000078907,-0.060984595299193305 +178635,893.1750000078908,-0.060983483407829754 +178636,893.180000007891,-0.0609823717486412 +178637,893.1850000078911,-0.060981260321553606 +178638,893.1900000078912,-0.06098014912649297 +178639,893.1950000078913,-0.060979038163385416 +178640,893.2000000078914,-0.06097792743215706 +178641,893.2050000078915,-0.060976816932734136 +178642,893.2100000078916,-0.060975706665042935 +178643,893.2150000078917,-0.06097459662900982 +178644,893.2200000078918,-0.060973486824561204 +178645,893.2250000078919,-0.0609723772516236 +178646,893.230000007892,-0.06097126791012354 +178647,893.2350000078922,-0.06097015879998768 +178648,893.2400000078923,-0.06096904992114267 +178649,893.2450000078924,-0.06096794127351531 +178650,893.2500000078925,-0.060966832857032416 +178651,893.2550000078926,-0.06096572467162089 +178652,893.2600000078927,-0.060964616717207674 +178653,893.2650000078928,-0.060963508993719814 +178654,893.2700000078929,-0.0609624015010844 +178655,893.275000007893,-0.060961294239228594 +178656,893.2800000078931,-0.060960187208079615 +178657,893.2850000078932,-0.06095908040756477 +178658,893.2900000078934,-0.06095797383761142 +178659,893.2950000078935,-0.06095686749814698 +178660,893.3000000078936,-0.06095576138909894 +178661,893.3050000078937,-0.06095465551039486 +178662,893.3100000078938,-0.06095354986196237 +178663,893.3150000078939,-0.060952444443729166 +178664,893.320000007894,-0.06095133925562298 +178665,893.3250000078941,-0.060950234297571654 +178666,893.3300000078942,-0.06094912956950306 +178667,893.3350000078943,-0.060948025071345155 +178668,893.3400000078944,-0.060946920803025946 +178669,893.3450000078946,-0.06094581676447353 +178670,893.3500000078947,-0.06094471295561604 +178671,893.3550000078948,-0.0609436093763817 +178672,893.3600000078949,-0.06094250602669877 +178673,893.365000007895,-0.0609414029064956 +178674,893.3700000078951,-0.06094030001570059 +178675,893.3750000078952,-0.06093919735424221 +178676,893.3800000078953,-0.060938094922049005 +178677,893.3850000078954,-0.06093699271904956 +178678,893.3900000078955,-0.06093589074517253 +178679,893.3950000078956,-0.060934789000346656 +178680,893.4000000078958,-0.06093368748450074 +178681,893.4050000078959,-0.06093258619756361 +178682,893.410000007896,-0.060931485139464205 +178683,893.4150000078961,-0.06093038431013149 +178684,893.4200000078962,-0.060929283709494526 +178685,893.4250000078963,-0.06092818333748241 +178686,893.4300000078964,-0.060927083194024324 +178687,893.4350000078965,-0.06092598327904949 +178688,893.4400000078966,-0.06092488359248722 +178689,893.4450000078967,-0.060923784134266884 +178690,893.4500000078968,-0.06092268490431789 +178691,893.455000007897,-0.060921585902569735 +178692,893.4600000078971,-0.06092048712895196 +178693,893.4650000078972,-0.0609193885833942 +178694,893.4700000078973,-0.060918290265826104 +178695,893.4750000078974,-0.060917192176177436 +178696,893.4800000078975,-0.060916094314377986 +178697,893.4850000078976,-0.060914996680357616 +178698,893.4900000078977,-0.06091389927404626 +178699,893.4950000078978,-0.060912802095373905 +178700,893.5000000078979,-0.0609117051442706 +178701,893.505000007898,-0.060910608420666465 +178702,893.5100000078982,-0.06090951192449167 +178703,893.5150000078983,-0.06090841565567645 +178704,893.5200000078984,-0.06090731961415109 +178705,893.5250000078985,-0.06090622379984598 +178706,893.5300000078986,-0.06090512821269153 +178707,893.5350000078987,-0.0609040328526182 +178708,893.5400000078988,-0.060902937719556564 +178709,893.5450000078989,-0.06090184281343721 +178710,893.550000007899,-0.06090074813419082 +178711,893.5550000078991,-0.06089965368174812 +178712,893.5600000078992,-0.06089855945603989 +178713,893.5650000078994,-0.06089746545699699 +178714,893.5700000078995,-0.06089637168455032 +178715,893.5750000078996,-0.06089527813863086 +178716,893.5800000078997,-0.06089418481916964 +178717,893.5850000078998,-0.060893091726097755 +178718,893.5900000078999,-0.06089199885934636 +178719,893.5950000079,-0.060890906218846665 +178720,893.6000000079001,-0.06088981380452995 +178721,893.6050000079002,-0.060888721616327544 +178722,893.6100000079003,-0.06088762965417084 +178723,893.6150000079004,-0.06088653791799129 +178724,893.6200000079006,-0.06088544640772042 +178725,893.6250000079007,-0.06088435512328981 +178726,893.6300000079008,-0.06088326406463108 +178727,893.6350000079009,-0.06088217323167592 +178728,893.640000007901,-0.0608810826243561 +178729,893.6450000079011,-0.060879992242603424 +178730,893.6500000079012,-0.06087890208634975 +178731,893.6550000079013,-0.06087781215552704 +178732,893.6600000079014,-0.06087672245006726 +178733,893.6650000079015,-0.06087563296990247 +178734,893.6700000079016,-0.060874543714964785 +178735,893.6750000079018,-0.06087345468518636 +178736,893.6800000079019,-0.06087236588049943 +178737,893.685000007902,-0.06087127730083628 +178738,893.6900000079021,-0.060870188946129264 +178739,893.6950000079022,-0.06086910081631078 +178740,893.7000000079023,-0.060868012911313274 +178741,893.7050000079024,-0.06086692523106929 +178742,893.7100000079025,-0.06086583777551138 +178743,893.7150000079026,-0.0608647505445722 +178744,893.7200000079027,-0.060863663538184454 +178745,893.7250000079028,-0.06086257675628087 +178746,893.730000007903,-0.060861490198794284 +178747,893.7350000079031,-0.060860403865657546 +178748,893.7400000079032,-0.060859317756803595 +178749,893.7450000079033,-0.06085823187216541 +178750,893.7500000079034,-0.060857146211676025 +178751,893.7550000079035,-0.06085606077526856 +178752,893.7600000079036,-0.06085497556287615 +178753,893.7650000079037,-0.06085389057443203 +178754,893.7700000079038,-0.060852805809869466 +178755,893.7750000079039,-0.060851721269121785 +178756,893.780000007904,-0.060850636952122374 +178757,893.7850000079042,-0.060849552858804674 +178758,893.7900000079043,-0.06084846898910219 +178759,893.7950000079044,-0.060847385342948486 +178760,893.8000000079045,-0.06084630192027716 +178761,893.8050000079046,-0.060845218721021894 +178762,893.8100000079047,-0.06084413574511642 +178763,893.8150000079048,-0.06084305299249452 +178764,893.8200000079049,-0.06084197046309002 +178765,893.825000007905,-0.06084088815683684 +178766,893.8300000079051,-0.06083980607366893 +178767,893.8350000079053,-0.06083872421352028 +178768,893.8400000079054,-0.06083764257632497 +178769,893.8450000079055,-0.06083656116201712 +178770,893.8500000079056,-0.06083547997053091 +178771,893.8550000079057,-0.06083439900180058 +178772,893.8600000079058,-0.06083331825576042 +178773,893.8650000079059,-0.060832237732344766 +178774,893.870000007906,-0.06083115743148802 +178775,893.8750000079061,-0.06083007735312465 +178776,893.8800000079062,-0.060828997497189154 +178777,893.8850000079063,-0.06082791786361611 +178778,893.8900000079065,-0.060826838452340125 +178779,893.8950000079066,-0.060825759263295906 +178780,893.9000000079067,-0.06082468029641817 +178781,893.9050000079068,-0.06082360155164169 +178782,893.9100000079069,-0.06082252302890133 +178783,893.915000007907,-0.060821444728131994 +178784,893.9200000079071,-0.060820366649268626 +178785,893.9250000079072,-0.060819288792246226 +178786,893.9300000079073,-0.06081821115699987 +178787,893.9350000079074,-0.06081713374346467 +178788,893.9400000079075,-0.060816056551575785 +178789,893.9450000079077,-0.06081497958126846 +178790,893.9500000079078,-0.060813902832477965 +178791,893.9550000079079,-0.06081282630513965 +178792,893.960000007908,-0.06081174999918889 +178793,893.9650000079081,-0.06081067391456114 +178794,893.9700000079082,-0.06080959805119187 +178795,893.9750000079083,-0.060808522409016665 +178796,893.9800000079084,-0.06080744698797111 +178797,893.9850000079085,-0.06080637178799087 +178798,893.9900000079086,-0.060805296809011665 +178799,893.9950000079087,-0.06080422205096925 +178800,894.0000000079089,-0.06080314751379945 +178801,894.005000007909,-0.06080207319743813 +178802,894.0100000079091,-0.06080099910182123 +178803,894.0150000079092,-0.060799925226884724 +178804,894.0200000079093,-0.06079885157256464 +178805,894.0250000079094,-0.060797778138797075 +178806,894.0300000079095,-0.060796704925518155 +178807,894.0350000079096,-0.06079563193266408 +178808,894.0400000079097,-0.060794559160171104 +178809,894.0450000079098,-0.06079348660797551 +178810,894.05000000791,-0.06079241427601366 +178811,894.05500000791,-0.06079134216422195 +178812,894.0600000079102,-0.060790270272536834 +178813,894.0650000079103,-0.060789198600894837 +178814,894.0700000079104,-0.06078812714923251 +178815,894.0750000079105,-0.060787055917486454 +178816,894.0800000079106,-0.06078598490559335 +178817,894.0850000079107,-0.06078491411348992 +178818,894.0900000079108,-0.06078384354111293 +178819,894.0950000079109,-0.060782773188399204 +178820,894.100000007911,-0.0607817030552856 +178821,894.1050000079111,-0.060780633141709076 +178822,894.1100000079113,-0.06077956344760658 +178823,894.1150000079114,-0.06077849397291516 +178824,894.1200000079115,-0.060777424717571894 +178825,894.1250000079116,-0.060776355681513905 +178826,894.1300000079117,-0.06077528686467838 +178827,894.1350000079118,-0.06077421826700257 +178828,894.1400000079119,-0.06077314988842375 +178829,894.145000007912,-0.06077208172887926 +178830,894.1500000079121,-0.06077101378830649 +178831,894.1550000079122,-0.06076994606664289 +178832,894.1600000079123,-0.060768878563825936 +178833,894.1650000079125,-0.06076781127979318 +178834,894.1700000079126,-0.060766744214482214 +178835,894.1750000079127,-0.06076567736783071 +178836,894.1800000079128,-0.06076461073977632 +178837,894.1850000079129,-0.060763544330256825 +178838,894.190000007913,-0.06076247813920999 +178839,894.1950000079131,-0.06076141216657369 +178840,894.2000000079132,-0.060760346412285816 +178841,894.2050000079133,-0.06075928087628431 +178842,894.2100000079134,-0.060758215558507175 +178843,894.2150000079135,-0.06075715045889247 +178844,894.2200000079137,-0.060756085577378285 +178845,894.2250000079138,-0.06075502091390277 +178846,894.2300000079139,-0.060753956468404126 +178847,894.235000007914,-0.0607528922408206 +178848,894.2400000079141,-0.0607518282310905 +178849,894.2450000079142,-0.060750764439152165 +178850,894.2500000079143,-0.06074970086494399 +178851,894.2550000079144,-0.06074863750840443 +178852,894.2600000079145,-0.06074757436947199 +178853,894.2650000079146,-0.06074651144808522 +178854,894.2700000079147,-0.060745448744182695 +178855,894.2750000079149,-0.060744386257703085 +178856,894.280000007915,-0.06074332398858508 +178857,894.2850000079151,-0.060742261936767405 +178858,894.2900000079152,-0.060741200102188884 +178859,894.2950000079153,-0.06074013848478835 +178860,894.3000000079154,-0.06073907708450469 +178861,894.3050000079155,-0.06073801590127684 +178862,894.3100000079156,-0.060736954935043816 +178863,894.3150000079157,-0.06073589418574463 +178864,894.3200000079158,-0.060734833653318374 +178865,894.325000007916,-0.060733773337704196 +178866,894.330000007916,-0.060732713238841274 +178867,894.3350000079162,-0.060731653356668844 +178868,894.3400000079163,-0.06073059369112619 +178869,894.3450000079164,-0.060729534242152626 +178870,894.3500000079165,-0.060728475009687546 +178871,894.3550000079166,-0.060727415993670375 +178872,894.3600000079167,-0.06072635719404059 +178873,894.3650000079168,-0.060725298610737714 +178874,894.3700000079169,-0.0607242402437013 +178875,894.375000007917,-0.060723182092871 +178876,894.3800000079171,-0.06072212415818646 +178877,894.3850000079173,-0.06072106643958739 +178878,894.3900000079174,-0.06072000893701356 +178879,894.3950000079175,-0.06071895165040478 +178880,894.4000000079176,-0.060717894579700914 +178881,894.4050000079177,-0.060716837724841856 +178882,894.4100000079178,-0.06071578108576756 +178883,894.4150000079179,-0.060714724662418035 +178884,894.420000007918,-0.060713668454733326 +178885,894.4250000079181,-0.06071261246265351 +178886,894.4300000079182,-0.06071155668611876 +178887,894.4350000079183,-0.06071050112506923 +178888,894.4400000079185,-0.060709445779445176 +178889,894.4450000079186,-0.060708390649186886 +178890,894.4500000079187,-0.060707335734234674 +178891,894.4550000079188,-0.06070628103452893 +178892,894.4600000079189,-0.060705226550010066 +178893,894.465000007919,-0.060704172280618564 +178894,894.4700000079191,-0.060703118226294935 +178895,894.4750000079192,-0.06070206438697973 +178896,894.4800000079193,-0.060701010762613576 +178897,894.4850000079194,-0.06069995735313712 +178898,894.4900000079195,-0.06069890415849108 +178899,894.4950000079197,-0.060697851178616175 +178900,894.5000000079198,-0.060696798413453226 +178901,894.5050000079199,-0.06069574586294306 +178902,894.51000000792,-0.060694693527026576 +178903,894.5150000079201,-0.0606936414056447 +178904,894.5200000079202,-0.0606925894987384 +178905,894.5250000079203,-0.06069153780624872 +178906,894.5300000079204,-0.06069048632811672 +178907,894.5350000079205,-0.06068943506428353 +178908,894.5400000079206,-0.0606883840146903 +178909,894.5450000079207,-0.06068733317927823 +178910,894.5500000079209,-0.060686282557988594 +178911,894.555000007921,-0.06068523215076267 +178912,894.5600000079211,-0.06068418195754181 +178913,894.5650000079212,-0.06068313197826741 +178914,894.5700000079213,-0.0606820822128809 +178915,894.5750000079214,-0.060681032661323756 +178916,894.5800000079215,-0.060679983323537516 +178917,894.5850000079216,-0.06067893419946374 +178918,894.5900000079217,-0.060677885289044046 +178919,894.5950000079218,-0.06067683659222008 +178920,894.600000007922,-0.06067578810893357 +178921,894.6050000079221,-0.06067473983912626 +178922,894.6100000079222,-0.06067369178273994 +178923,894.6150000079223,-0.060672643939716435 +178924,894.6200000079224,-0.060671596309997654 +178925,894.6250000079225,-0.06067054889352551 +178926,894.6300000079226,-0.060669501690241975 +178927,894.6350000079227,-0.060668454700089074 +178928,894.6400000079228,-0.06066740792300887 +178929,894.6450000079229,-0.06066636135894346 +178930,894.650000007923,-0.06066531500783501 +178931,894.6550000079231,-0.060664268869625705 +178932,894.6600000079233,-0.060663222944257786 +178933,894.6650000079234,-0.060662177231673525 +178934,894.6700000079235,-0.06066113173181526 +178935,894.6750000079236,-0.06066008644462535 +178936,894.6800000079237,-0.06065904137004623 +178937,894.6850000079238,-0.06065799650802033 +178938,894.6900000079239,-0.060656951858490175 +178939,894.695000007924,-0.0606559074213983 +178940,894.7000000079241,-0.06065486319668729 +178941,894.7050000079242,-0.06065381918429978 +178942,894.7100000079244,-0.06065277538417846 +178943,894.7150000079245,-0.06065173179626603 +178944,894.7200000079246,-0.060650688420505264 +178945,894.7250000079247,-0.06064964525683897 +178946,894.7300000079248,-0.06064860230520998 +178947,894.7350000079249,-0.0606475595655612 +178948,894.740000007925,-0.060646517037835565 +178949,894.7450000079251,-0.06064547472197606 +178950,894.7500000079252,-0.06064443261792569 +178951,894.7550000079253,-0.06064339072562753 +178952,894.7600000079254,-0.06064234904502468 +178953,894.7650000079256,-0.06064130757606029 +178954,894.7700000079257,-0.06064026631867756 +178955,894.7750000079258,-0.060639225272819716 +178956,894.7800000079259,-0.06063818443843005 +178957,894.785000007926,-0.06063714381545186 +178958,894.7900000079261,-0.06063610340382853 +178959,894.7950000079262,-0.06063506320350345 +178960,894.8000000079263,-0.06063402321442008 +178961,894.8050000079264,-0.060632983436521896 +178962,894.8100000079265,-0.06063194386975245 +178963,894.8150000079266,-0.06063090451405529 +178964,894.8200000079268,-0.06062986536937404 +178965,894.8250000079269,-0.06062882643565237 +178966,894.830000007927,-0.06062778771283398 +178967,894.8350000079271,-0.060626749200862605 +178968,894.8400000079272,-0.06062571089968202 +178969,894.8450000079273,-0.060624672809236065 +178970,894.8500000079274,-0.060623634929468595 +178971,894.8550000079275,-0.060622597260323534 +178972,894.8600000079276,-0.06062155980174481 +178973,894.8650000079277,-0.06062052255367644 +178974,894.8700000079278,-0.060619485516062444 +178975,894.875000007928,-0.060618448688846895 +178976,894.8800000079281,-0.060617412071973915 +178977,894.8850000079282,-0.06061637566538767 +178978,894.8900000079283,-0.06061533946903234 +178979,894.8950000079284,-0.06061430348285217 +178980,894.9000000079285,-0.060613267706791436 +178981,894.9050000079286,-0.060612232140794475 +178982,894.9100000079287,-0.06061119678480564 +178983,894.9150000079288,-0.060610161638769346 +178984,894.9200000079289,-0.06060912670263002 +178985,894.925000007929,-0.060608091976332164 +178986,894.9300000079292,-0.0606070574598203 +178987,894.9350000079293,-0.06060602315303899 +178988,894.9400000079294,-0.06060498905593285 +178989,894.9450000079295,-0.06060395516844652 +178990,894.9500000079296,-0.060602921490524694 +178991,894.9550000079297,-0.060601888022112096 +178992,894.9600000079298,-0.060600854763153494 +178993,894.9650000079299,-0.06059982171359372 +178994,894.97000000793,-0.060598788873377586 +178995,894.9750000079301,-0.06059775624245002 +178996,894.9800000079302,-0.06059672382075593 +178997,894.9850000079304,-0.060595691608240305 +178998,894.9900000079305,-0.06059465960484813 +178999,894.9950000079306,-0.060593627810524485 +179000,895.0000000079307,-0.060592596225214436 +179001,895.0050000079308,-0.06059156484886313 +179002,895.0100000079309,-0.06059053368141574 +179003,895.015000007931,-0.060589502722817455 +179004,895.0200000079311,-0.06058847197301354 +179005,895.0250000079312,-0.06058744143194929 +179006,895.0300000079313,-0.06058641109957002 +179007,895.0350000079314,-0.0605853809758211 +179008,895.0400000079316,-0.06058435106064795 +179009,895.0450000079317,-0.060583321353996016 +179010,895.0500000079318,-0.060582291855810766 +179011,895.0550000079319,-0.060581262566037755 +179012,895.060000007932,-0.06058023348462253 +179013,895.0650000079321,-0.060579204611510694 +179014,895.0700000079322,-0.060578175946647904 +179015,895.0750000079323,-0.06057714748997984 +179016,895.0800000079324,-0.0605761192414522 +179017,895.0850000079325,-0.06057509120101078 +179018,895.0900000079326,-0.06057406336860136 +179019,895.0950000079328,-0.060573035744169786 +179020,895.1000000079329,-0.060572008327661936 +179021,895.105000007933,-0.06057098111902372 +179022,895.1100000079331,-0.06056995411820108 +179023,895.1150000079332,-0.06056892732514004 +179024,895.1200000079333,-0.06056790073978661 +179025,895.1250000079334,-0.06056687436208687 +179026,895.1300000079335,-0.06056584819198692 +179027,895.1350000079336,-0.06056482222943292 +179028,895.1400000079337,-0.060563796474371046 +179029,895.1450000079338,-0.060562770926747535 +179030,895.150000007934,-0.060561745586508633 +179031,895.1550000079341,-0.060560720453600655 +179032,895.1600000079342,-0.06055969552796992 +179033,895.1650000079343,-0.06055867080956283 +179034,895.1700000079344,-0.06055764629832577 +179035,895.1750000079345,-0.0605566219942052 +179036,895.1800000079346,-0.06055559789714764 +179037,895.1850000079347,-0.06055457400709959 +179038,895.1900000079348,-0.06055355032400762 +179039,895.1950000079349,-0.060552526847818346 +179040,895.200000007935,-0.06055150357847839 +179041,895.2050000079352,-0.06055048051593444 +179042,895.2100000079353,-0.06054945766013321 +179043,895.2150000079354,-0.060548435011021466 +179044,895.2200000079355,-0.060547412568546 +179045,895.2250000079356,-0.06054639033265363 +179046,895.2300000079357,-0.06054536830329123 +179047,895.2350000079358,-0.06054434648040569 +179048,895.2400000079359,-0.06054332486394397 +179049,895.245000007936,-0.06054230345385304 +179050,895.2500000079361,-0.0605412822500799 +179051,895.2550000079362,-0.06054026125257163 +179052,895.2600000079364,-0.0605392404612753 +179053,895.2650000079365,-0.06053821987613805 +179054,895.2700000079366,-0.06053719949710703 +179055,895.2750000079367,-0.06053617932412945 +179056,895.2800000079368,-0.060535159357152556 +179057,895.2850000079369,-0.060534139596123596 +179058,895.290000007937,-0.0605331200409899 +179059,895.2950000079371,-0.060532100691698815 +179060,895.3000000079372,-0.06053108154819772 +179061,895.3050000079373,-0.06053006261043403 +179062,895.3100000079374,-0.06052904387835521 +179063,895.3150000079376,-0.06052802535190875 +179064,895.3200000079377,-0.06052700703104219 +179065,895.3250000079378,-0.060525988915703086 +179066,895.3300000079379,-0.060524971005839034 +179067,895.335000007938,-0.06052395330139768 +179068,895.3400000079381,-0.0605229358023267 +179069,895.3450000079382,-0.06052191850857381 +179070,895.3500000079383,-0.060520901420086745 +179071,895.3550000079384,-0.0605198845368133 +179072,895.3600000079385,-0.060518867858701274 +179073,895.3650000079386,-0.06051785138569853 +179074,895.3700000079388,-0.06051683511775299 +179075,895.3750000079389,-0.060515819054812556 +179076,895.380000007939,-0.06051480319682519 +179077,895.3850000079391,-0.06051378754373887 +179078,895.3900000079392,-0.06051277209550166 +179079,895.3950000079393,-0.06051175685206162 +179080,895.4000000079394,-0.06051074181336687 +179081,895.4050000079395,-0.060509726979365526 +179082,895.4100000079396,-0.06050871235000578 +179083,895.4150000079397,-0.06050769792523583 +179084,895.4200000079398,-0.060506683705003936 +179085,895.42500000794,-0.060505669689258385 +179086,895.4300000079401,-0.06050465587794747 +179087,895.4350000079402,-0.06050364227101957 +179088,895.4400000079403,-0.06050262886842306 +179089,895.4450000079404,-0.06050161567010636 +179090,895.4500000079405,-0.06050060267601794 +179091,895.4550000079406,-0.06049958988610628 +179092,895.4600000079407,-0.06049857730031991 +179093,895.4650000079408,-0.060497564918607395 +179094,895.4700000079409,-0.060496552740917336 +179095,895.475000007941,-0.06049554076719838 +179096,895.4800000079412,-0.060494528997399176 +179097,895.4850000079413,-0.06049351743146842 +179098,895.4900000079414,-0.060492506069354864 +179099,895.4950000079415,-0.06049149491100727 +179100,895.5000000079416,-0.06049048395637445 +179101,895.5050000079417,-0.060489473205405236 +179102,895.5100000079418,-0.060488462658048504 +179103,895.5150000079419,-0.060487452314253176 +179104,895.520000007942,-0.06048644217396819 +179105,895.5250000079421,-0.06048543223714252 +179106,895.5300000079422,-0.06048442250372518 +179107,895.5350000079424,-0.060483412973665225 +179108,895.5400000079425,-0.06048240364691172 +179109,895.5450000079426,-0.060481394523413785 +179110,895.5500000079427,-0.060480385603120565 +179111,895.5550000079428,-0.060479376885981255 +179112,895.5600000079429,-0.06047836837194507 +179113,895.565000007943,-0.060477360060961244 +179114,895.5700000079431,-0.06047635195297909 +179115,895.5750000079432,-0.0604753440479479 +179116,895.5800000079433,-0.06047433634581705 +179117,895.5850000079434,-0.06047332884653591 +179118,895.5900000079436,-0.060472321550053894 +179119,895.5950000079437,-0.06047131445632047 +179120,895.6000000079438,-0.060470307565285125 +179121,895.6050000079439,-0.060469300876897364 +179122,895.610000007944,-0.06046829439110676 +179123,895.6150000079441,-0.060467288107862886 +179124,895.6200000079442,-0.06046628202711537 +179125,895.6250000079443,-0.060465276148813855 +179126,895.6300000079444,-0.060464270472908054 +179127,895.6350000079445,-0.06046326499934767 +179128,895.6400000079446,-0.06046225972808246 +179129,895.6450000079448,-0.06046125465906221 +179130,895.6500000079449,-0.06046024979223672 +179131,895.655000007945,-0.06045924512755588 +179132,895.6600000079451,-0.060458240664969555 +179133,895.6650000079452,-0.06045723640442766 +179134,895.6700000079453,-0.06045623234588017 +179135,895.6750000079454,-0.06045522848927705 +179136,895.6800000079455,-0.060454224834568325 +179137,895.6850000079456,-0.06045322138170404 +179138,895.6900000079457,-0.0604522181306343 +179139,895.6950000079459,-0.06045121508130919 +179140,895.700000007946,-0.06045021223367887 +179141,895.7050000079461,-0.06044920958769353 +179142,895.7100000079462,-0.06044820714330338 +179143,895.7150000079463,-0.060447204900458656 +179144,895.7200000079464,-0.06044620285910965 +179145,895.7250000079465,-0.06044520101920667 +179146,895.7300000079466,-0.06044419938070006 +179147,895.7350000079467,-0.06044319794354019 +179148,895.7400000079468,-0.06044219670767747 +179149,895.7450000079469,-0.06044119567306234 +179150,895.750000007947,-0.060440194839645286 +179151,895.7550000079472,-0.060439194207376805 +179152,895.7600000079473,-0.060438193776207426 +179153,895.7650000079474,-0.06043719354608773 +179154,895.7700000079475,-0.0604361935169683 +179155,895.7750000079476,-0.060435193688799786 +179156,895.7800000079477,-0.06043419406153284 +179157,895.7850000079478,-0.060433194635118155 +179158,895.7900000079479,-0.06043219540950648 +179159,895.795000007948,-0.06043119638464856 +179160,895.8000000079481,-0.060430197560495204 +179161,895.8050000079483,-0.06042919893699721 +179162,895.8100000079484,-0.060428200514105454 +179163,895.8150000079485,-0.060427202291770815 +179164,895.8200000079486,-0.06042620426994421 +179165,895.8250000079487,-0.06042520644857659 +179166,895.8300000079488,-0.06042420882761894 +179167,895.8350000079489,-0.06042321140702227 +179168,895.840000007949,-0.06042221418673762 +179169,895.8450000079491,-0.06042121716671608 +179170,895.8500000079492,-0.060420220346908735 +179171,895.8550000079493,-0.06041922372726674 +179172,895.8600000079495,-0.06041822730774125 +179173,895.8650000079496,-0.06041723108828347 +179174,895.8700000079497,-0.060416235068844644 +179175,895.8750000079498,-0.06041523924937603 +179176,895.8800000079499,-0.060414243629828904 +179177,895.88500000795,-0.060413248210154605 +179178,895.8900000079501,-0.0604122529903045 +179179,895.8950000079502,-0.060411257970229955 +179180,895.9000000079503,-0.0604102631498824 +179181,895.9050000079504,-0.060409268529213266 +179182,895.9100000079505,-0.060408274108174044 +179183,895.9150000079507,-0.06040727988671624 +179184,895.9200000079508,-0.0604062858647914 +179185,895.9250000079509,-0.060405292042351094 +179186,895.930000007951,-0.06040429841934691 +179187,895.9350000079511,-0.060403304995730496 +179188,895.9400000079512,-0.0604023117714535 +179189,895.9450000079513,-0.060401318746467626 +179190,895.9500000079514,-0.060400325920724585 +179191,895.9550000079515,-0.06039933329417615 +179192,895.9600000079516,-0.06039834086677408 +179193,895.9650000079517,-0.060397348638470204 +179194,895.9700000079519,-0.06039635660921637 +179195,895.975000007952,-0.06039536477896445 +179196,895.9800000079521,-0.060394373147666346 +179197,895.9850000079522,-0.06039338171527399 +179198,895.9900000079523,-0.06039239048173934 +179199,895.9950000079524,-0.06039139944701441 +179200,896.0000000079525,-0.060390408611051216 +179201,896.0050000079526,-0.0603894179738018 +179202,896.0100000079527,-0.060388427535218274 +179203,896.0150000079528,-0.06038743729525273 +179204,896.020000007953,-0.06038644725385731 +179205,896.025000007953,-0.0603854574109842 +179206,896.0300000079532,-0.060384467766585605 +179207,896.0350000079533,-0.06038347832061375 +179208,896.0400000079534,-0.06038248907302089 +179209,896.0450000079535,-0.060381500023759346 +179210,896.0500000079536,-0.06038051117278141 +179211,896.0550000079537,-0.06037952252003946 +179212,896.0600000079538,-0.06037853406548585 +179213,896.0650000079539,-0.060377545809073015 +179214,896.070000007954,-0.06037655775075338 +179215,896.0750000079541,-0.06037556989047943 +179216,896.0800000079543,-0.06037458222820365 +179217,896.0850000079544,-0.060373594763878574 +179218,896.0900000079545,-0.060372607497456744 +179219,896.0950000079546,-0.060371620428890764 +179220,896.1000000079547,-0.06037063355813325 +179221,896.1050000079548,-0.06036964688513683 +179222,896.1100000079549,-0.060368660409854204 +179223,896.115000007955,-0.06036767413223805 +179224,896.1200000079551,-0.0603666880522411 +179225,896.1250000079552,-0.060365702169816134 +179226,896.1300000079553,-0.06036471648491593 +179227,896.1350000079555,-0.06036373099749331 +179228,896.1400000079556,-0.06036274570750111 +179229,896.1450000079557,-0.06036176061489222 +179230,896.1500000079558,-0.06036077571961954 +179231,896.1550000079559,-0.060359791021636 +179232,896.160000007956,-0.060358806520894565 +179233,896.1650000079561,-0.060357822217348214 +179234,896.1700000079562,-0.06035683811094998 +179235,896.1750000079563,-0.06035585420165292 +179236,896.1800000079564,-0.060354870489410094 +179237,896.1850000079565,-0.060353886974174605 +179238,896.1900000079567,-0.0603529036558996 +179239,896.1950000079568,-0.06035192053453822 +179240,896.2000000079569,-0.06035093761004369 +179241,896.205000007957,-0.06034995488236919 +179242,896.2100000079571,-0.060348972351467994 +179243,896.2150000079572,-0.06034799001729336 +179244,896.2200000079573,-0.06034700787979858 +179245,896.2250000079574,-0.060346025938937016 +179246,896.2300000079575,-0.06034504419466201 +179247,896.2350000079576,-0.060344062646926946 +179248,896.2400000079577,-0.06034308129568524 +179249,896.2450000079579,-0.06034210014089034 +179250,896.250000007958,-0.06034111918249572 +179251,896.2550000079581,-0.06034013842045488 +179252,896.2600000079582,-0.06033915785472134 +179253,896.2650000079583,-0.060338177485248654 +179254,896.2700000079584,-0.06033719731199041 +179255,896.2750000079585,-0.060336217334900216 +179256,896.2800000079586,-0.060335237553931706 +179257,896.2850000079587,-0.060334257969038546 +179258,896.2900000079588,-0.06033327858017444 +179259,896.295000007959,-0.06033229938729309 +179260,896.300000007959,-0.060331320390348255 +179261,896.3050000079592,-0.060330341589293714 +179262,896.3100000079593,-0.060329362984083264 +179263,896.3150000079594,-0.06032838457467074 +179264,896.3200000079595,-0.06032740636100999 +179265,896.3250000079596,-0.06032642834305491 +179266,896.3300000079597,-0.06032545052075942 +179267,896.3350000079598,-0.06032447289407745 +179268,896.3400000079599,-0.06032349546296297 +179269,896.34500000796,-0.06032251822736997 +179270,896.3500000079601,-0.06032154118725248 +179271,896.3550000079603,-0.06032056434256454 +179272,896.3600000079604,-0.06031958769326022 +179273,896.3650000079605,-0.060318611239293635 +179274,896.3700000079606,-0.06031763498061892 +179275,896.3750000079607,-0.06031665891719023 +179276,896.3800000079608,-0.06031568304896173 +179277,896.3850000079609,-0.06031470737588765 +179278,896.390000007961,-0.060313731897922225 +179279,896.3950000079611,-0.06031275661501971 +179280,896.4000000079612,-0.0603117815271344 +179281,896.4050000079613,-0.06031080663422063 +179282,896.4100000079615,-0.060309831936232725 +179283,896.4150000079616,-0.06030885743312506 +179284,896.4200000079617,-0.060307883124852024 +179285,896.4250000079618,-0.060306909011368065 +179286,896.4300000079619,-0.06030593509262762 +179287,896.435000007962,-0.06030496136858518 +179288,896.4400000079621,-0.06030398783919523 +179289,896.4450000079622,-0.06030301450441232 +179290,896.4500000079623,-0.060302041364190984 +179291,896.4550000079624,-0.06030106841848583 +179292,896.4600000079625,-0.060300095667251453 +179293,896.4650000079627,-0.0602991231104425 +179294,896.4700000079628,-0.06029815074801361 +179295,896.4750000079629,-0.0602971785799195 +179296,896.480000007963,-0.06029620660611488 +179297,896.4850000079631,-0.06029523482655448 +179298,896.4900000079632,-0.060294263241193066 +179299,896.4950000079633,-0.060293291849985435 +179300,896.5000000079634,-0.060292320652886415 +179301,896.5050000079635,-0.06029134964985086 +179302,896.5100000079636,-0.06029037884083361 +179303,896.5150000079637,-0.060289408225789584 +179304,896.5200000079639,-0.06028843780467371 +179305,896.525000007964,-0.060287467577440926 +179306,896.5300000079641,-0.0602864975440462 +179307,896.5350000079642,-0.06028552770444455 +179308,896.5400000079643,-0.06028455805859099 +179309,896.5450000079644,-0.06028358860644059 +179310,896.5500000079645,-0.060282619347948416 +179311,896.5550000079646,-0.06028165028306955 +179312,896.5600000079647,-0.060280681411759164 +179313,896.5650000079648,-0.06027971273397239 +179314,896.570000007965,-0.0602787442496644 +179315,896.5750000079651,-0.060277775958790414 +179316,896.5800000079652,-0.060276807861305674 +179317,896.5850000079653,-0.06027583995716542 +179318,896.5900000079654,-0.06027487224632493 +179319,896.5950000079655,-0.06027390472873952 +179320,896.6000000079656,-0.06027293740436453 +179321,896.6050000079657,-0.060271970273155305 +179322,896.6100000079658,-0.060271003335067234 +179323,896.6150000079659,-0.06027003659005574 +179324,896.620000007966,-0.06026907003807624 +179325,896.6250000079662,-0.060268103679084195 +179326,896.6300000079663,-0.0602671375130351 +179327,896.6350000079664,-0.06026617153988444 +179328,896.6400000079665,-0.06026520575958778 +179329,896.6450000079666,-0.06026424017210066 +179330,896.6500000079667,-0.06026327477737867 +179331,896.6550000079668,-0.06026230957537743 +179332,896.6600000079669,-0.06026134456605256 +179333,896.665000007967,-0.06026037974935973 +179334,896.6700000079671,-0.06025941512525462 +179335,896.6750000079672,-0.060258450693692935 +179336,896.6800000079674,-0.06025748645463042 +179337,896.6850000079675,-0.06025652240802283 +179338,896.6900000079676,-0.06025555855382595 +179339,896.6950000079677,-0.06025459489199558 +179340,896.7000000079678,-0.06025363142248756 +179341,896.7050000079679,-0.06025266814525773 +179342,896.710000007968,-0.060251705060262 +179343,896.7150000079681,-0.06025074216745625 +179344,896.7200000079682,-0.06024977946679644 +179345,896.7250000079683,-0.060248816958238506 +179346,896.7300000079684,-0.06024785464173843 +179347,896.7350000079686,-0.060246892517252223 +179348,896.7400000079687,-0.0602459305847359 +179349,896.7450000079688,-0.060244968844145534 +179350,896.7500000079689,-0.060244007295437184 +179351,896.755000007969,-0.06024304593856697 +179352,896.7600000079691,-0.060242084773491 +179353,896.7650000079692,-0.06024112380016544 +179354,896.7700000079693,-0.060240163018546455 +179355,896.7750000079694,-0.060239202428590245 +179356,896.7800000079695,-0.060238242030253034 +179357,896.7850000079696,-0.06023728182349108 +179358,896.7900000079698,-0.06023632180826063 +179359,896.7950000079699,-0.060235361984517996 +179360,896.80000000797,-0.06023440235221949 +179361,896.8050000079701,-0.06023344291132146 +179362,896.8100000079702,-0.06023248366178028 +179363,896.8150000079703,-0.060231524603552335 +179364,896.8200000079704,-0.06023056573659403 +179365,896.8250000079705,-0.06022960706086181 +179366,896.8300000079706,-0.06022864857631214 +179367,896.8350000079707,-0.06022769028290151 +179368,896.8400000079708,-0.06022673218058641 +179369,896.845000007971,-0.0602257742693234 +179370,896.8500000079711,-0.06022481654906902 +179371,896.8550000079712,-0.060223859019779856 +179372,896.8600000079713,-0.06022290168141251 +179373,896.8650000079714,-0.060221944533923606 +179374,896.8700000079715,-0.06022098757726981 +179375,896.8750000079716,-0.06022003081140778 +179376,896.8800000079717,-0.06021907423629423 +179377,896.8850000079718,-0.06021811785188588 +179378,896.8900000079719,-0.060217161658139465 +179379,896.895000007972,-0.06021620565501175 +179380,896.9000000079722,-0.06021524984245953 +179381,896.9050000079723,-0.060214294220439626 +179382,896.9100000079724,-0.06021333878890889 +179383,896.9150000079725,-0.06021238354782416 +179384,896.9200000079726,-0.06021142849714234 +179385,896.9250000079727,-0.060210473636820326 +179386,896.9300000079728,-0.060209518966815055 +179387,896.9350000079729,-0.06020856448708346 +179388,896.940000007973,-0.060207610197582556 +179389,896.9450000079731,-0.06020665609826932 +179390,896.9500000079732,-0.06020570218910078 +179391,896.9550000079734,-0.06020474847003398 +179392,896.9600000079735,-0.060203794941026005 +179393,896.9650000079736,-0.06020284160203393 +179394,896.9700000079737,-0.06020188845301488 +179395,896.9750000079738,-0.06020093549392598 +179396,896.9800000079739,-0.06019998272472441 +179397,896.985000007974,-0.060199030145367344 +179398,896.9900000079741,-0.06019807775581199 +179399,896.9950000079742,-0.06019712555601558 +179400,897.0000000079743,-0.060196173545935365 +179401,897.0050000079744,-0.06019522172552861 +179402,897.0100000079746,-0.060194270094752624 +179403,897.0150000079747,-0.06019331865356473 +179404,897.0200000079748,-0.06019236740192227 +179405,897.0250000079749,-0.060191416339782595 +179406,897.030000007975,-0.06019046546710311 +179407,897.0350000079751,-0.06018951478384122 +179408,897.0400000079752,-0.060188564289954345 +179409,897.0450000079753,-0.060187613985399964 +179410,897.0500000079754,-0.060186663870135534 +179411,897.0550000079755,-0.06018571394411856 +179412,897.0600000079756,-0.06018476420730657 +179413,897.0650000079758,-0.060183814659657116 +179414,897.0700000079759,-0.06018286530112775 +179415,897.075000007976,-0.06018191613167606 +179416,897.0800000079761,-0.06018096715125968 +179417,897.0850000079762,-0.060180018359836225 +179418,897.0900000079763,-0.060179069757363354 +179419,897.0950000079764,-0.06017812134379874 +179420,897.1000000079765,-0.06017717311910009 +179421,897.1050000079766,-0.06017622508322512 +179422,897.1100000079767,-0.06017527723613159 +179423,897.1150000079768,-0.060174329577777255 +179424,897.120000007977,-0.06017338210811991 +179425,897.1250000079771,-0.060172434827117344 +179426,897.1300000079772,-0.06017148773472741 +179427,897.1350000079773,-0.060170540830907955 +179428,897.1400000079774,-0.06016959411561686 +179429,897.1450000079775,-0.060168647588812026 +179430,897.1500000079776,-0.06016770125045136 +179431,897.1550000079777,-0.06016675510049281 +179432,897.1600000079778,-0.060165809138894334 +179433,897.1650000079779,-0.06016486336561393 +179434,897.170000007978,-0.060163917780609595 +179435,897.1750000079782,-0.06016297238383936 +179436,897.1800000079783,-0.06016202717526127 +179437,897.1850000079784,-0.060161082154833394 +179438,897.1900000079785,-0.06016013732251384 +179439,897.1950000079786,-0.06015919267826071 +179440,897.2000000079787,-0.06015824822203215 +179441,897.2050000079788,-0.060157303953786295 +179442,897.2100000079789,-0.06015635987348135 +179443,897.215000007979,-0.06015541598107551 +179444,897.2200000079791,-0.06015447227652699 +179445,897.2250000079792,-0.060153528759794045 +179446,897.2300000079794,-0.06015258543083492 +179447,897.2350000079795,-0.06015164228960792 +179448,897.2400000079796,-0.06015069933607134 +179449,897.2450000079797,-0.06014975657018353 +179450,897.2500000079798,-0.06014881399190281 +179451,897.2550000079799,-0.06014787160118758 +179452,897.26000000798,-0.06014692939799621 +179453,897.2650000079801,-0.0601459873822871 +179454,897.2700000079802,-0.06014504555401872 +179455,897.2750000079803,-0.06014410391314951 +179456,897.2800000079804,-0.06014316245963794 +179457,897.2850000079806,-0.06014222119344251 +179458,897.2900000079807,-0.06014128011452175 +179459,897.2950000079808,-0.06014033922283419 +179460,897.3000000079809,-0.0601393985183384 +179461,897.305000007981,-0.06013845800099294 +179462,897.3100000079811,-0.06013751767075644 +179463,897.3150000079812,-0.060136577527587505 +179464,897.3200000079813,-0.06013563757144479 +179465,897.3250000079814,-0.06013469780228695 +179466,897.3300000079815,-0.06013375822007268 +179467,897.3350000079816,-0.060132818824760674 +179468,897.3400000079818,-0.060131879616309676 +179469,897.3450000079819,-0.060130940594678425 +179470,897.350000007982,-0.06013000175982568 +179471,897.3550000079821,-0.06012906311171024 +179472,897.3600000079822,-0.060128124650290916 +179473,897.3650000079823,-0.06012718637552653 +179474,897.3700000079824,-0.06012624828737594 +179475,897.3750000079825,-0.060125310385798034 +179476,897.3800000079826,-0.06012437267075167 +179477,897.3850000079827,-0.06012343514219577 +179478,897.3900000079828,-0.06012249780008929 +179479,897.395000007983,-0.06012156064439117 +179480,897.4000000079831,-0.060120623675060374 +179481,897.4050000079832,-0.060119686892055914 +179482,897.4100000079833,-0.06011875029533678 +179483,897.4150000079834,-0.06011781388486203 +179484,897.4200000079835,-0.060116877660590706 +179485,897.4250000079836,-0.060115941622481885 +179486,897.4300000079837,-0.060115005770494674 +179487,897.4350000079838,-0.060114070104588184 +179488,897.4400000079839,-0.06011313462472154 +179489,897.445000007984,-0.0601121993308539 +179490,897.4500000079842,-0.06011126422294446 +179491,897.4550000079843,-0.060110329300952385 +179492,897.4600000079844,-0.06010939456483692 +179493,897.4650000079845,-0.06010846001455728 +179494,897.4700000079846,-0.06010752565007275 +179495,897.4750000079847,-0.06010659147134257 +179496,897.4800000079848,-0.060105657478326066 +179497,897.4850000079849,-0.06010472367098254 +179498,897.490000007985,-0.06010379004927133 +179499,897.4950000079851,-0.06010285661315179 +179500,897.5000000079852,-0.060101923362583305 +179501,897.5050000079854,-0.060100990297525275 +179502,897.5100000079855,-0.06010005741793709 +179503,897.5150000079856,-0.06009912472377822 +179504,897.5200000079857,-0.06009819221500808 +179505,897.5250000079858,-0.06009725989158618 +179506,897.5300000079859,-0.060096327753472 +179507,897.535000007986,-0.060095395800625055 +179508,897.5400000079861,-0.060094464033004884 +179509,897.5450000079862,-0.06009353245057104 +179510,897.5500000079863,-0.06009260105328309 +179511,897.5550000079865,-0.06009166984110064 +179512,897.5600000079866,-0.06009073881398328 +179513,897.5650000079867,-0.06008980797189067 +179514,897.5700000079868,-0.060088877314782435 +179515,897.5750000079869,-0.06008794684261827 +179516,897.580000007987,-0.060087016555357836 +179517,897.5850000079871,-0.060086086452960874 +179518,897.5900000079872,-0.06008515653538709 +179519,897.5950000079873,-0.06008422680259625 +179520,897.6000000079874,-0.06008329725454811 +179521,897.6050000079875,-0.06008236789120247 +179522,897.6100000079877,-0.060081438712519114 +179523,897.6150000079878,-0.06008050971845789 +179524,897.6200000079879,-0.06007958090897863 +179525,897.625000007988,-0.06007865228404121 +179526,897.6300000079881,-0.06007772384360551 +179527,897.6350000079882,-0.060076795587631425 +179528,897.6400000079883,-0.06007586751607887 +179529,897.6450000079884,-0.060074939628907816 +179530,897.6500000079885,-0.06007401192607819 +179531,897.6550000079886,-0.060073084407549986 +179532,897.6600000079887,-0.06007215707328321 +179533,897.6650000079889,-0.060071229923237865 +179534,897.670000007989,-0.060070302957374 +179535,897.6750000079891,-0.060069376175651654 +179536,897.6800000079892,-0.06006844957803091 +179537,897.6850000079893,-0.060067523164471864 +179538,897.6900000079894,-0.06006659693493462 +179539,897.6950000079895,-0.06006567088937932 +179540,897.7000000079896,-0.06006474502776611 +179541,897.7050000079897,-0.060063819350055156 +179542,897.7100000079898,-0.060062893856206646 +179543,897.7150000079899,-0.06006196854618078 +179544,897.72000000799,-0.06006104341993779 +179545,897.7250000079902,-0.06006011847743791 +179546,897.7300000079903,-0.060059193718641414 +179547,897.7350000079904,-0.06005826914350857 +179548,897.7400000079905,-0.0600573447519997 +179549,897.7450000079906,-0.0600564205440751 +179550,897.7500000079907,-0.06005549651969511 +179551,897.7550000079908,-0.0600545726788201 +179552,897.7600000079909,-0.06005364902141042 +179553,897.765000007991,-0.060052725547426494 +179554,897.7700000079911,-0.06005180225682871 +179555,897.7750000079913,-0.0600508791495775 +179556,897.7800000079914,-0.06004995622563331 +179557,897.7850000079915,-0.06004903348495661 +179558,897.7900000079916,-0.06004811092750789 +179559,897.7950000079917,-0.06004718855324765 +179560,897.8000000079918,-0.060046266362136405 +179561,897.8050000079919,-0.0600453443541347 +179562,897.810000007992,-0.06004442252920309 +179563,897.8150000079921,-0.06004350088730216 +179564,897.8200000079922,-0.06004257942839249 +179565,897.8250000079923,-0.060041658152434695 +179566,897.8300000079925,-0.060040737059389414 +179567,897.8350000079926,-0.0600398161492173 +179568,897.8400000079927,-0.06003889542187902 +179569,897.8450000079928,-0.06003797487733525 +179570,897.8500000079929,-0.06003705451554669 +179571,897.855000007993,-0.060036134336474076 +179572,897.8600000079931,-0.06003521434007814 +179573,897.8650000079932,-0.06003429452631964 +179574,897.8700000079933,-0.06003337489515936 +179575,897.8750000079934,-0.060032455446558074 +179576,897.8800000079935,-0.06003153618047662 +179577,897.8850000079937,-0.060030617096875814 +179578,897.8900000079938,-0.060029698195716505 +179579,897.8950000079939,-0.06002877947695956 +179580,897.900000007994,-0.06002786094056586 +179581,897.9050000079941,-0.0600269425864963 +179582,897.9100000079942,-0.06002602441471181 +179583,897.9150000079943,-0.06002510642517332 +179584,897.9200000079944,-0.06002418861784179 +179585,897.9250000079945,-0.06002327099267819 +179586,897.9300000079946,-0.060022353549643526 +179587,897.9350000079947,-0.060021436288698785 +179588,897.9400000079949,-0.06002051920980499 +179589,897.945000007995,-0.0600196023129232 +179590,897.9500000079951,-0.06001868559801447 +179591,897.9550000079952,-0.06001776906503989 +179592,897.9600000079953,-0.06001685271396053 +179593,897.9650000079954,-0.06001593654473753 +179594,897.9700000079955,-0.06001502055733201 +179595,897.9750000079956,-0.06001410475170512 +179596,897.9800000079957,-0.060013189127818035 +179597,897.9850000079958,-0.06001227368563194 +179598,897.990000007996,-0.06001135842510801 +179599,897.995000007996,-0.0600104433462075 +179600,898.0000000079962,-0.06000952844889162 +179601,898.0050000079963,-0.060008613733121635 +179602,898.0100000079964,-0.060007699198858816 +179603,898.0150000079965,-0.06000678484606445 +179604,898.0200000079966,-0.06000587067469985 +179605,898.0250000079967,-0.06000495668472632 +179606,898.0300000079968,-0.06000404287610523 +179607,898.0350000079969,-0.06000312924879792 +179608,898.040000007997,-0.06000221580276576 +179609,898.0450000079971,-0.06000130253797015 +179610,898.0500000079973,-0.0600003894543725 +179611,898.0550000079974,-0.05999947655193424 +179612,898.0600000079975,-0.0599985638306168 +179613,898.0650000079976,-0.05999765129038167 +179614,898.0700000079977,-0.05999673893119029 +179615,898.0750000079978,-0.05999582675300418 +179616,898.0800000079979,-0.05999491475578485 +179617,898.085000007998,-0.05999400293949383 +179618,898.0900000079981,-0.05999309130409266 +179619,898.0950000079982,-0.05999217984954291 +179620,898.1000000079983,-0.05999126857580616 +179621,898.1050000079985,-0.05999035748284401 +179622,898.1100000079986,-0.059989446570618055 +179623,898.1150000079987,-0.05998853583908995 +179624,898.1200000079988,-0.05998762528822134 +179625,898.1250000079989,-0.05998671491797389 +179626,898.130000007999,-0.059985804728309264 +179627,898.1350000079991,-0.05998489471918917 +179628,898.1400000079992,-0.05998398489057535 +179629,898.1450000079993,-0.0599830752424295 +179630,898.1500000079994,-0.05998216577471338 +179631,898.1550000079995,-0.059981256487388765 +179632,898.1600000079997,-0.05998034738041743 +179633,898.1650000079998,-0.05997943845376118 +179634,898.1700000079999,-0.05997852970738182 +179635,898.175000008,-0.0599776211412412 +179636,898.1800000080001,-0.05997671275530116 +179637,898.1850000080002,-0.05997580454952357 +179638,898.1900000080003,-0.059974896523870315 +179639,898.1950000080004,-0.05997398867830329 +179640,898.2000000080005,-0.0599730810127844 +179641,898.2050000080006,-0.0599721735272756 +179642,898.2100000080007,-0.05997126622173882 +179643,898.2150000080009,-0.059970359096136024 +179644,898.220000008001,-0.0599694521504292 +179645,898.2250000080011,-0.059968545384580366 +179646,898.2300000080012,-0.059967638798551506 +179647,898.2350000080013,-0.05996673239230466 +179648,898.2400000080014,-0.059965826165801886 +179649,898.2450000080015,-0.05996492011900524 +179650,898.2500000080016,-0.05996401425187682 +179651,898.2550000080017,-0.059963108564378705 +179652,898.2600000080018,-0.059962203056473005 +179653,898.265000008002,-0.05996129772812185 +179654,898.2700000080021,-0.05996039257928739 +179655,898.2750000080022,-0.059959487609931784 +179656,898.2800000080023,-0.05995858282001723 +179657,898.2850000080024,-0.0599576782095059 +179658,898.2900000080025,-0.059956773778360006 +179659,898.2950000080026,-0.05995586952654178 +179660,898.3000000080027,-0.059954965454013465 +179661,898.3050000080028,-0.059954061560737314 +179662,898.3100000080029,-0.05995315784667561 +179663,898.315000008003,-0.05995225431179064 +179664,898.3200000080031,-0.05995135095604472 +179665,898.3250000080033,-0.059950447779400166 +179666,898.3300000080034,-0.05994954478181931 +179667,898.3350000080035,-0.05994864196326452 +179668,898.3400000080036,-0.05994773932369816 +179669,898.3450000080037,-0.05994683686308262 +179670,898.3500000080038,-0.059945934581380304 +179671,898.3550000080039,-0.05994503247855363 +179672,898.360000008004,-0.059944130554565024 +179673,898.3650000080041,-0.05994322880937695 +179674,898.3700000080042,-0.059942327242951864 +179675,898.3750000080043,-0.059941425855252264 +179676,898.3800000080045,-0.05994052464624063 +179677,898.3850000080046,-0.0599396236158795 +179678,898.3900000080047,-0.05993872276413138 +179679,898.3950000080048,-0.05993782209095883 +179680,898.4000000080049,-0.05993692159632441 +179681,898.405000008005,-0.05993602128019069 +179682,898.4100000080051,-0.059935121142520274 +179683,898.4150000080052,-0.059934221183275765 +179684,898.4200000080053,-0.05993332140241978 +179685,898.4250000080054,-0.05993242179991496 +179686,898.4300000080055,-0.05993152237572399 +179687,898.4350000080057,-0.059930623129809506 +179688,898.4400000080058,-0.0599297240621342 +179689,898.4450000080059,-0.05992882517266079 +179690,898.450000008006,-0.05992792646135199 +179691,898.4550000080061,-0.05992702792817052 +179692,898.4600000080062,-0.05992612957307914 +179693,898.4650000080063,-0.05992523139604062 +179694,898.4700000080064,-0.05992433339701772 +179695,898.4750000080065,-0.05992343557597326 +179696,898.4800000080066,-0.05992253793287004 +179697,898.4850000080068,-0.059921640467670886 +179698,898.4900000080069,-0.05992074318033863 +179699,898.495000008007,-0.05991984607083615 +179700,898.5000000080071,-0.0599189491391263 +179701,898.5050000080072,-0.05991805238517198 +179702,898.5100000080073,-0.05991715580893609 +179703,898.5150000080074,-0.05991625941038154 +179704,898.5200000080075,-0.05991536318947128 +179705,898.5250000080076,-0.05991446714616825 +179706,898.5300000080077,-0.05991357128043541 +179707,898.5350000080078,-0.059912675592235745 +179708,898.540000008008,-0.059911780081532244 +179709,898.5450000080081,-0.05991088474828793 +179710,898.5500000080082,-0.05990998959246582 +179711,898.5550000080083,-0.05990909461402895 +179712,898.5600000080084,-0.05990819981294037 +179713,898.5650000080085,-0.05990730518916317 +179714,898.5700000080086,-0.059906410742660426 +179715,898.5750000080087,-0.05990551647339524 +179716,898.5800000080088,-0.05990462238133073 +179717,898.5850000080089,-0.05990372846643001 +179718,898.590000008009,-0.05990283472865625 +179719,898.5950000080092,-0.059901941167972594 +179720,898.6000000080093,-0.05990104778434223 +179721,898.6050000080094,-0.05990015457772833 +179722,898.6100000080095,-0.05989926154809412 +179723,898.6150000080096,-0.05989836869540281 +179724,898.6200000080097,-0.05989747601961763 +179725,898.6250000080098,-0.05989658352070184 +179726,898.6300000080099,-0.059895691198618706 +179727,898.63500000801,-0.05989479905333151 +179728,898.6400000080101,-0.05989390708480354 +179729,898.6450000080102,-0.05989301529299811 +179730,898.6500000080104,-0.05989212367787854 +179731,898.6550000080105,-0.05989123223940818 +179732,898.6600000080106,-0.05989034097755038 +179733,898.6650000080107,-0.0598894498922685 +179734,898.6700000080108,-0.05988855898352593 +179735,898.6750000080109,-0.05988766825128606 +179736,898.680000008011,-0.059886777695512323 +179737,898.6850000080111,-0.059885887316168125 +179738,898.6900000080112,-0.059884997113216924 +179739,898.6950000080113,-0.05988410708662217 +179740,898.7000000080114,-0.05988321723634733 +179741,898.7050000080116,-0.05988232756235591 +179742,898.7100000080117,-0.05988143806461139 +179743,898.7150000080118,-0.059880548743077286 +179744,898.7200000080119,-0.059879659597717134 +179745,898.725000008012,-0.0598787706284945 +179746,898.7300000080121,-0.059877881835372904 +179747,898.7350000080122,-0.059876993218315945 +179748,898.7400000080123,-0.0598761047772872 +179749,898.7450000080124,-0.05987521651225028 +179750,898.7500000080125,-0.05987432842316879 +179751,898.7550000080126,-0.05987344051000638 +179752,898.7600000080128,-0.05987255277272666 +179753,898.7650000080129,-0.059871665211293335 +179754,898.770000008013,-0.059870777825670046 +179755,898.7750000080131,-0.05986989061582051 +179756,898.7800000080132,-0.0598690035817084 +179757,898.7850000080133,-0.05986811672329745 +179758,898.7900000080134,-0.05986723004055139 +179759,898.7950000080135,-0.05986634353343398 +179760,898.8000000080136,-0.05986545720190895 +179761,898.8050000080137,-0.05986457104594011 +179762,898.8100000080138,-0.05986368506549122 +179763,898.815000008014,-0.0598627992605261 +179764,898.8200000080141,-0.05986191363100856 +179765,898.8250000080142,-0.05986102817690243 +179766,898.8300000080143,-0.05986014289817155 +179767,898.8350000080144,-0.0598592577947798 +179768,898.8400000080145,-0.05985837286669103 +179769,898.8450000080146,-0.05985748811386914 +179770,898.8500000080147,-0.05985660353627803 +179771,898.8550000080148,-0.05985571913388162 +179772,898.8600000080149,-0.059854834906643846 +179773,898.865000008015,-0.05985395085452865 +179774,898.8700000080152,-0.05985306697749998 +179775,898.8750000080153,-0.05985218327552181 +179776,898.8800000080154,-0.059851299748558136 +179777,898.8850000080155,-0.05985041639657294 +179778,898.8900000080156,-0.05984953321953026 +179779,898.8950000080157,-0.05984865021739411 +179780,898.9000000080158,-0.05984776739012854 +179781,898.9050000080159,-0.059846884737697593 +179782,898.910000008016,-0.05984600226006535 +179783,898.9150000080161,-0.059845119957195894 +179784,898.9200000080162,-0.059844237829053314 +179785,898.9250000080164,-0.05984335587560173 +179786,898.9300000080165,-0.059842474096805265 +179787,898.9350000080166,-0.05984159249262807 +179788,898.9400000080167,-0.05984071106303428 +179789,898.9450000080168,-0.05983982980798807 +179790,898.9500000080169,-0.059838948727453614 +179791,898.955000008017,-0.05983806782139511 +179792,898.9600000080171,-0.059837187089776776 +179793,898.9650000080172,-0.05983630653256282 +179794,898.9700000080173,-0.05983542614971748 +179795,898.9750000080174,-0.059834545941205006 +179796,898.9800000080176,-0.059833665906989665 +179797,898.9850000080177,-0.05983278604703574 +179798,898.9900000080178,-0.0598319063613075 +179799,898.9950000080179,-0.05983102684976927 +179800,899.000000008018,-0.05983014751238537 +179801,899.0050000080181,-0.0598292683491201 +179802,899.0100000080182,-0.05982838935993783 +179803,899.0150000080183,-0.059827510544802905 +179804,899.0200000080184,-0.05982663190367971 +179805,899.0250000080185,-0.059825753436532625 +179806,899.0300000080186,-0.05982487514332604 +179807,899.0350000080188,-0.05982399702402438 +179808,899.0400000080189,-0.05982311907859206 +179809,899.045000008019,-0.05982224130699352 +179810,899.0500000080191,-0.05982136370919322 +179811,899.0550000080192,-0.05982048628515563 +179812,899.0600000080193,-0.0598196090348452 +179813,899.0650000080194,-0.05981873195822645 +179814,899.0700000080195,-0.05981785505526388 +179815,899.0750000080196,-0.05981697832592201 +179816,899.0800000080197,-0.05981610177016536 +179817,899.0850000080198,-0.05981522538795849 +179818,899.09000000802,-0.05981434917926596 +179819,899.0950000080201,-0.05981347314405234 +179820,899.1000000080202,-0.059812597282282214 +179821,899.1050000080203,-0.05981172159392018 +179822,899.1100000080204,-0.05981084607893085 +179823,899.1150000080205,-0.05980997073727886 +179824,899.1200000080206,-0.05980909556892884 +179825,899.1250000080207,-0.05980822057384543 +179826,899.1300000080208,-0.05980734575199333 +179827,899.1350000080209,-0.05980647110333717 +179828,899.140000008021,-0.059805596627841684 +179829,899.1450000080212,-0.05980472232547154 +179830,899.1500000080213,-0.05980384819619149 +179831,899.1550000080214,-0.059802974239966264 +179832,899.1600000080215,-0.05980210045676057 +179833,899.1650000080216,-0.05980122684653919 +179834,899.1700000080217,-0.059800353409266906 +179835,899.1750000080218,-0.059799480144908476 +179836,899.1800000080219,-0.05979860705342871 +179837,899.185000008022,-0.059797734134792425 +179838,899.1900000080221,-0.059796861388964416 +179839,899.1950000080222,-0.05979598881590954 +179840,899.2000000080224,-0.059795116415592646 +179841,899.2050000080225,-0.05979424418797858 +179842,899.2100000080226,-0.05979337213303222 +179843,899.2150000080227,-0.059792500250718465 +179844,899.2200000080228,-0.059791628541002215 +179845,899.2250000080229,-0.05979075700384837 +179846,899.230000008023,-0.059789885639221864 +179847,899.2350000080231,-0.059789014447087625 +179848,899.2400000080232,-0.059788143427410616 +179849,899.2450000080233,-0.0597872725801558 +179850,899.2500000080234,-0.059786401905288146 +179851,899.2550000080236,-0.05978553140277265 +179852,899.2600000080237,-0.05978466107257431 +179853,899.2650000080238,-0.059783790914658144 +179854,899.2700000080239,-0.05978292092898919 +179855,899.275000008024,-0.05978205111553247 +179856,899.2800000080241,-0.05978118147425305 +179857,899.2850000080242,-0.059780312005115986 +179858,899.2900000080243,-0.059779442708086376 +179859,899.2950000080244,-0.0597785735831293 +179860,899.3000000080245,-0.05977770463020986 +179861,899.3050000080246,-0.059776835849293164 +179862,899.3100000080248,-0.059775967240344376 +179863,899.3150000080249,-0.059775098803328604 +179864,899.320000008025,-0.059774230538211015 +179865,899.3250000080251,-0.059773362444956776 +179866,899.3300000080252,-0.05977249452353107 +179867,899.3350000080253,-0.05977162677389907 +179868,899.3400000080254,-0.05977075919602601 +179869,899.3450000080255,-0.05976989178987709 +179870,899.3500000080256,-0.05976902455541756 +179871,899.3550000080257,-0.059768157492612634 +179872,899.3600000080258,-0.05976729060142759 +179873,899.365000008026,-0.05976642388182768 +179874,899.3700000080261,-0.05976555733377819 +179875,899.3750000080262,-0.059764690957244425 +179876,899.3800000080263,-0.05976382475219167 +179877,899.3850000080264,-0.05976295871858525 +179878,899.3900000080265,-0.05976209285639051 +179879,899.3950000080266,-0.059761227165572764 +179880,899.4000000080267,-0.05976036164609738 +179881,899.4050000080268,-0.05975949629792973 +179882,899.4100000080269,-0.059758631121035195 +179883,899.415000008027,-0.059757766115379155 +179884,899.4200000080272,-0.059756901280927026 +179885,899.4250000080273,-0.05975603661764421 +179886,899.4300000080274,-0.05975517212549616 +179887,899.4350000080275,-0.05975430780444829 +179888,899.4400000080276,-0.05975344365446607 +179889,899.4450000080277,-0.05975257967551495 +179890,899.4500000080278,-0.05975171586756042 +179891,899.4550000080279,-0.059750852230567975 +179892,899.460000008028,-0.059749988764503104 +179893,899.4650000080281,-0.05974912546933132 +179894,899.4700000080283,-0.05974826234501816 +179895,899.4750000080284,-0.059747399391529156 +179896,899.4800000080285,-0.05974653660882987 +179897,899.4850000080286,-0.05974567399688586 +179898,899.4900000080287,-0.05974481155566268 +179899,899.4950000080288,-0.05974394928512595 +179900,899.5000000080289,-0.05974308718524125 +179901,899.505000008029,-0.05974222525597419 +179902,899.5100000080291,-0.05974136349729041 +179903,899.5150000080292,-0.05974050190915553 +179904,899.5200000080293,-0.059739640491535184 +179905,899.5250000080295,-0.059738779244395065 +179906,899.5300000080296,-0.059737918167700826 +179907,899.5350000080297,-0.05973705726141815 +179908,899.5400000080298,-0.05973619652551273 +179909,899.5450000080299,-0.05973533595995028 +179910,899.55000000803,-0.05973447556469653 +179911,899.5550000080301,-0.05973361533971719 +179912,899.5600000080302,-0.05973275528497801 +179913,899.5650000080303,-0.05973189540044476 +179914,899.5700000080304,-0.05973103568608319 +179915,899.5750000080305,-0.059730176141859076 +179916,899.5800000080307,-0.059729316767738225 +179917,899.5850000080308,-0.059728457563686436 +179918,899.5900000080309,-0.05972759852966951 +179919,899.595000008031,-0.05972673966565328 +179920,899.6000000080311,-0.059725880971603605 +179921,899.6050000080312,-0.059725022447486315 +179922,899.6100000080313,-0.059724164093267265 +179923,899.6150000080314,-0.05972330590891234 +179924,899.6200000080315,-0.05972244789438743 +179925,899.6250000080316,-0.05972159004965842 +179926,899.6300000080317,-0.05972073237469123 +179927,899.6350000080319,-0.059719874869451774 +179928,899.640000008032,-0.05971901753390599 +179929,899.6450000080321,-0.05971816036801981 +179930,899.6500000080322,-0.0597173033717592 +179931,899.6550000080323,-0.059716446545090125 +179932,899.6600000080324,-0.059715589887978565 +179933,899.6650000080325,-0.05971473340039052 +179934,899.6700000080326,-0.05971387708229197 +179935,899.6750000080327,-0.05971302093364895 +179936,899.6800000080328,-0.05971216495442748 +179937,899.685000008033,-0.059711309144593584 +179938,899.690000008033,-0.05971045350411333 +179939,899.6950000080332,-0.05970959803295277 +179940,899.7000000080333,-0.05970874273107798 +179941,899.7050000080334,-0.05970788759845503 +179942,899.7100000080335,-0.05970703263505003 +179943,899.7150000080336,-0.059706177840829086 +179944,899.7200000080337,-0.0597053232157583 +179945,899.7250000080338,-0.05970446875980382 +179946,899.7300000080339,-0.05970361447293178 +179947,899.735000008034,-0.059702760355108325 +179948,899.7400000080341,-0.059701906406299646 +179949,899.7450000080343,-0.05970105262647189 +179950,899.7500000080344,-0.05970019901559125 +179951,899.7550000080345,-0.059699345573623934 +179952,899.7600000080346,-0.05969849230053614 +179953,899.7650000080347,-0.05969763919629411 +179954,899.7700000080348,-0.05969678626086405 +179955,899.7750000080349,-0.05969593349421221 +179956,899.780000008035,-0.05969508089630486 +179957,899.7850000080351,-0.05969422846710825 +179958,899.7900000080352,-0.05969337620658867 +179959,899.7950000080353,-0.0596925241147124 +179960,899.8000000080355,-0.05969167219144575 +179961,899.8050000080356,-0.05969082043675502 +179962,899.8100000080357,-0.05968996885060653 +179963,899.8150000080358,-0.05968911743296664 +179964,899.8200000080359,-0.05968826618380167 +179965,899.825000008036,-0.059687415103078 +179966,899.8300000080361,-0.05968656419076197 +179967,899.8350000080362,-0.05968571344681998 +179968,899.8400000080363,-0.059684862871218415 +179969,899.8450000080364,-0.05968401246392368 +179970,899.8500000080365,-0.05968316222490218 +179971,899.8550000080367,-0.05968231215412034 +179972,899.8600000080368,-0.0596814622515446 +179973,899.8650000080369,-0.059680612517141414 +179974,899.870000008037,-0.05967976295087722 +179975,899.8750000080371,-0.059678913552718496 +179976,899.8800000080372,-0.05967806432263173 +179977,899.8850000080373,-0.05967721526058341 +179978,899.8900000080374,-0.05967636636654002 +179979,899.8950000080375,-0.0596755176404681 +179980,899.9000000080376,-0.05967466908233417 +179981,899.9050000080377,-0.059673820692104744 +179982,899.9100000080379,-0.05967297246974637 +179983,899.915000008038,-0.059672124415225625 +179984,899.9200000080381,-0.05967127652850907 +179985,899.9250000080382,-0.059670428809563275 +179986,899.9300000080383,-0.05966958125835484 +179987,899.9350000080384,-0.05966873387485036 +179988,899.9400000080385,-0.05966788665901646 +179989,899.9450000080386,-0.05966703961081974 +179990,899.9500000080387,-0.05966619273022686 +179991,899.9550000080388,-0.05966534601720444 +179992,899.960000008039,-0.05966449947171915 +179993,899.965000008039,-0.05966365309373767 +179994,899.9700000080392,-0.05966280688322665 +179995,899.9750000080393,-0.05966196084015279 +179996,899.9800000080394,-0.05966111496448279 +179997,899.9850000080395,-0.05966026925618337 +179998,899.9900000080396,-0.05965942371522124 +179999,899.9950000080397,-0.05965857834156313 +180000,900.0000000080398,-0.05965773313517578 +180001,900.0050000080399,-0.059656888096025956 +180002,900.01000000804,-0.059656043224080406 +180003,900.0150000080401,-0.05965519851930593 +180004,900.0200000080403,-0.05965435398166929 +180005,900.0250000080404,-0.059653509611137294 +180006,900.0300000080405,-0.059652665407676754 +180007,900.0350000080406,-0.05965182137125447 +180008,900.0400000080407,-0.05965097750183729 +180009,900.0450000080408,-0.05965013379939204 +180010,900.0500000080409,-0.059649290263885574 +180011,900.055000008041,-0.059648446895284764 +180012,900.0600000080411,-0.05964760369355646 +180013,900.0650000080412,-0.05964676065866756 +180014,900.0700000080413,-0.05964591779058496 +180015,900.0750000080415,-0.05964507508927555 +180016,900.0800000080416,-0.059644232554706265 +180017,900.0850000080417,-0.059643390186844 +180018,900.0900000080418,-0.059642547985655714 +180019,900.0950000080419,-0.05964170595110835 +180020,900.100000008042,-0.05964086408316886 +180021,900.1050000080421,-0.059640022381804214 +180022,900.1100000080422,-0.05963918084698139 +180023,900.1150000080423,-0.05963833947866736 +180024,900.1200000080424,-0.05963749827682915 +180025,900.1250000080425,-0.05963665724143375 +180026,900.1300000080427,-0.05963581637244819 +180027,900.1350000080428,-0.05963497566983951 +180028,900.1400000080429,-0.05963413513357472 +180029,900.145000008043,-0.0596332947636209 +180030,900.1500000080431,-0.05963245455994509 +180031,900.1550000080432,-0.059631614522514385 +180032,900.1600000080433,-0.059630774651295855 +180033,900.1650000080434,-0.059629934946256596 +180034,900.1700000080435,-0.059629095407363705 +180035,900.1750000080436,-0.05962825603458431 +180036,900.1800000080437,-0.05962741682788553 +180037,900.1850000080439,-0.0596265777872345 +180038,900.190000008044,-0.05962573891259835 +180039,900.1950000080441,-0.059624900203944266 +180040,900.2000000080442,-0.05962406166123938 +180041,900.2050000080443,-0.0596232232844509 +180042,900.2100000080444,-0.059622385073546 +180043,900.2150000080445,-0.059621547028491866 +180044,900.2200000080446,-0.05962070914925572 +180045,900.2250000080447,-0.05961987143580477 +180046,900.2300000080448,-0.05961903388810624 +180047,900.235000008045,-0.05961819650612739 +180048,900.2400000080451,-0.05961735928983546 +180049,900.2450000080452,-0.05961652223919771 +180050,900.2500000080453,-0.059615685354181394 +180051,900.2550000080454,-0.059614848634753796 +180052,900.2600000080455,-0.05961401208088222 +180053,900.2650000080456,-0.05961317569253396 +180054,900.2700000080457,-0.05961233946967631 +180055,900.2750000080458,-0.05961150341227662 +180056,900.2800000080459,-0.05961066752030219 +180057,900.285000008046,-0.059609831793720376 +180058,900.2900000080461,-0.059608996232498525 +180059,900.2950000080463,-0.059608160836604 +180060,900.3000000080464,-0.05960732560600418 +180061,900.3050000080465,-0.05960649054066644 +180062,900.3100000080466,-0.05960565564055817 +180063,900.3150000080467,-0.05960482090564676 +180064,900.3200000080468,-0.05960398633589963 +180065,900.3250000080469,-0.059603151931284216 +180066,900.330000008047,-0.059602317691767936 +180067,900.3350000080471,-0.05960148361731824 +180068,900.3400000080472,-0.05960064970790256 +180069,900.3450000080474,-0.05959981596348838 +180070,900.3500000080475,-0.05959898238404317 +180071,900.3550000080476,-0.05959814896953441 +180072,900.3600000080477,-0.059597315719929586 +180073,900.3650000080478,-0.0595964826351962 +180074,900.3700000080479,-0.05959564971530176 +180075,900.375000008048,-0.05959481696021379 +180076,900.3800000080481,-0.05959398436989983 +180077,900.3850000080482,-0.05959315194432742 +180078,900.3900000080483,-0.059592319683464116 +180079,900.3950000080484,-0.05959148758727747 +180080,900.4000000080486,-0.05959065565573506 +180081,900.4050000080487,-0.059589823888804475 +180082,900.4100000080488,-0.05958899228645329 +180083,900.4150000080489,-0.05958816084864911 +180084,900.420000008049,-0.05958732957535956 +180085,900.4250000080491,-0.05958649846655224 +180086,900.4300000080492,-0.05958566752219481 +180087,900.4350000080493,-0.05958483674225489 +180088,900.4400000080494,-0.05958400612670013 +180089,900.4450000080495,-0.0595831756754982 +180090,900.4500000080496,-0.05958234538861676 +180091,900.4550000080498,-0.0595815152660235 +180092,900.4600000080499,-0.059580685307686114 +180093,900.46500000805,-0.0595798555135723 +180094,900.4700000080501,-0.059579025883649765 +180095,900.4750000080502,-0.05957819641788622 +180096,900.4800000080503,-0.059577367116249405 +180097,900.4850000080504,-0.059576537978707066 +180098,900.4900000080505,-0.05957570900522694 +180099,900.4950000080506,-0.05957488019577679 +180100,900.5000000080507,-0.05957405155032437 +180101,900.5050000080508,-0.05957322306883748 +180102,900.510000008051,-0.0595723947512839 +180103,900.5150000080511,-0.059571566597631416 +180104,900.5200000080512,-0.05957073860784786 +180105,900.5250000080513,-0.059569910781901034 +180106,900.5300000080514,-0.05956908311975876 +180107,900.5350000080515,-0.059568255621388885 +180108,900.5400000080516,-0.059567428286759254 +180109,900.5450000080517,-0.05956660111583771 +180110,900.5500000080518,-0.05956577410859214 +180111,900.5550000080519,-0.0595649472649904 +180112,900.560000008052,-0.059564120585000366 +180113,900.5650000080522,-0.059563294068589956 +180114,900.5700000080523,-0.05956246771572707 +180115,900.5750000080524,-0.059561641526379605 +180116,900.5800000080525,-0.05956081550051551 +180117,900.5850000080526,-0.059559989638102696 +180118,900.5900000080527,-0.059559163939109115 +180119,900.5950000080528,-0.059558338403502706 +180120,900.6000000080529,-0.05955751303125143 +180121,900.605000008053,-0.05955668782232328 +180122,900.6100000080531,-0.05955586277668623 +180123,900.6150000080532,-0.05955503789430826 +180124,900.6200000080534,-0.059554213175157356 +180125,900.6250000080535,-0.05955338861920156 +180126,900.6300000080536,-0.059552564226408866 +180127,900.6350000080537,-0.0595517399967473 +180128,900.6400000080538,-0.05955091593018492 +180129,900.6450000080539,-0.059550092026689753 +180130,900.650000008054,-0.05954926828622986 +180131,900.6550000080541,-0.05954844470877332 +180132,900.6600000080542,-0.05954762129428819 +180133,900.6650000080543,-0.05954679804274255 +180134,900.6700000080544,-0.05954597495410451 +180135,900.6750000080546,-0.05954515202834217 +180136,900.6800000080547,-0.05954432926542364 +180137,900.6850000080548,-0.05954350666531704 +180138,900.6900000080549,-0.05954268422799051 +180139,900.695000008055,-0.05954186195341217 +180140,900.7000000080551,-0.05954103984155019 +180141,900.7050000080552,-0.059540217892372724 +180142,900.7100000080553,-0.05953939610584793 +180143,900.7150000080554,-0.059538574481943995 +180144,900.7200000080555,-0.059537753020629115 +180145,900.7250000080556,-0.05953693172187147 +180146,900.7300000080558,-0.059536110585639276 +180147,900.7350000080559,-0.05953528961190075 +180148,900.740000008056,-0.0595344688006241 +180149,900.7450000080561,-0.05953364815177757 +180150,900.7500000080562,-0.059532827665329406 +180151,900.7550000080563,-0.05953200734124786 +180152,900.7600000080564,-0.05953118717950119 +180153,900.7650000080565,-0.05953036718005767 +180154,900.7700000080566,-0.05952954734288558 +180155,900.7750000080567,-0.05952872766795321 +180156,900.7800000080568,-0.05952790815522884 +180157,900.785000008057,-0.0595270888046808 +180158,900.7900000080571,-0.059526269616277404 +180159,900.7950000080572,-0.05952545058998696 +180160,900.8000000080573,-0.05952463172577782 +180161,900.8050000080574,-0.05952381302361833 +180162,900.8100000080575,-0.05952299448347684 +180163,900.8150000080576,-0.05952217610532169 +180164,900.8200000080577,-0.05952135788912128 +180165,900.8250000080578,-0.05952053983484399 +180166,900.8300000080579,-0.05951972194245819 +180167,900.835000008058,-0.059518904211932296 +180168,900.8400000080582,-0.05951808664323471 +180169,900.8450000080583,-0.059517269236333846 +180170,900.8500000080584,-0.05951645199119813 +180171,900.8550000080585,-0.059515634907796 +180172,900.8600000080586,-0.05951481798609589 +180173,900.8650000080587,-0.059514001226066274 +180174,900.8700000080588,-0.0595131846276756 +180175,900.8750000080589,-0.05951236819089235 +180176,900.880000008059,-0.05951155191568499 +180177,900.8850000080591,-0.05951073580202201 +180178,900.8900000080592,-0.059509919849871924 +180179,900.8950000080594,-0.059509104059203226 +180180,900.9000000080595,-0.059508288429984436 +180181,900.9050000080596,-0.05950747296218408 +180182,900.9100000080597,-0.0595066576557707 +180183,900.9150000080598,-0.05950584251071282 +180184,900.9200000080599,-0.059505027526979004 +180185,900.92500000806,-0.059504212704537825 +180186,900.9300000080601,-0.05950339804335782 +180187,900.9350000080602,-0.059502583543407594 +180188,900.9400000080603,-0.05950176920465573 +180189,900.9450000080604,-0.05950095502707083 +180190,900.9500000080606,-0.05950014101062149 +180191,900.9550000080607,-0.05949932715527632 +180192,900.9600000080608,-0.05949851346100395 +180193,900.9650000080609,-0.059497699927773026 +180194,900.970000008061,-0.05949688655555218 +180195,900.9750000080611,-0.05949607334431005 +180196,900.9800000080612,-0.0594952602940153 +180197,900.9850000080613,-0.0594944474046366 +180198,900.9900000080614,-0.05949363467614263 +180199,900.9950000080615,-0.05949282210850208 +180200,901.0000000080616,-0.05949200970168364 +180201,901.0050000080618,-0.05949119745565601 +180202,901.0100000080619,-0.0594903853703879 +180203,901.015000008062,-0.05948957344584802 +180204,901.0200000080621,-0.059488761682005134 +180205,901.0250000080622,-0.05948795007882795 +180206,901.0300000080623,-0.05948713863628523 +180207,901.0350000080624,-0.059486327354345704 +180208,901.0400000080625,-0.059485516232978174 +180209,901.0450000080626,-0.05948470527215139 +180210,901.0500000080627,-0.05948389447183414 +180211,901.0550000080628,-0.0594830838319952 +180212,901.060000008063,-0.0594822733526034 +180213,901.0650000080631,-0.05948146303362752 +180214,901.0700000080632,-0.059480652875036386 +180215,901.0750000080633,-0.059479842876798826 +180216,901.0800000080634,-0.059479033038883675 +180217,901.0850000080635,-0.05947822336125977 +180218,901.0900000080636,-0.05947741384389596 +180219,901.0950000080637,-0.05947660448676112 +180220,901.1000000080638,-0.05947579528982411 +180221,901.1050000080639,-0.0594749862530538 +180222,901.110000008064,-0.05947417737641909 +180223,901.1150000080642,-0.059473368659888864 +180224,901.1200000080643,-0.059472560103432034 +180225,901.1250000080644,-0.0594717517070175 +180226,901.1300000080645,-0.05947094347061419 +180227,901.1350000080646,-0.059470135394191034 +180228,901.1400000080647,-0.05946932747771696 +180229,901.1450000080648,-0.059468519721160934 +180230,901.1500000080649,-0.05946771212449188 +180231,901.155000008065,-0.05946690468767879 +180232,901.1600000080651,-0.05946609741069064 +180233,901.1650000080652,-0.059465290293496384 +180234,901.1700000080654,-0.059464483336065015 +180235,901.1750000080655,-0.05946367653836555 +180236,901.1800000080656,-0.05946286990036697 +180237,901.1850000080657,-0.059462063422038317 +180238,901.1900000080658,-0.05946125710334859 +180239,901.1950000080659,-0.05946045094426682 +180240,901.200000008066,-0.05945964494476208 +180241,901.2050000080661,-0.059458839104803374 +180242,901.2100000080662,-0.0594580334243598 +180243,901.2150000080663,-0.0594572279034004 +180244,901.2200000080664,-0.05945642254189424 +180245,901.2250000080666,-0.05945561733981042 +180246,901.2300000080667,-0.05945481229711801 +180247,901.2350000080668,-0.059454007413786134 +180248,901.2400000080669,-0.05945320268978388 +180249,901.245000008067,-0.05945239812508038 +180250,901.2500000080671,-0.05945159371964475 +180251,901.2550000080672,-0.05945078947344612 +180252,901.2600000080673,-0.05944998538645365 +180253,901.2650000080674,-0.05944918145863646 +180254,901.2700000080675,-0.05944837768996372 +180255,901.2750000080677,-0.05944757408040461 +180256,901.2800000080678,-0.05944677062992828 +180257,901.2850000080679,-0.059445967338503936 +180258,901.290000008068,-0.059445164206100756 +180259,901.2950000080681,-0.05944436123268794 +180260,901.3000000080682,-0.059443558418234704 +180261,901.3050000080683,-0.05944275576271026 +180262,901.3100000080684,-0.05944195326608383 +180263,901.3150000080685,-0.059441150928324644 +180264,901.3200000080686,-0.05944034874940195 +180265,901.3250000080687,-0.059439546729285 +180266,901.3300000080689,-0.059438744867943046 +180267,901.335000008069,-0.05943794316534535 +180268,901.3400000080691,-0.059437141621461194 +180269,901.3450000080692,-0.059436340236259856 +180270,901.3500000080693,-0.059435539009710624 +180271,901.3550000080694,-0.05943473794178281 +180272,901.3600000080695,-0.05943393703244571 +180273,901.3650000080696,-0.05943313628166865 +180274,901.3700000080697,-0.05943233568942094 +180275,901.3750000080698,-0.05943153525567192 +180276,901.3800000080699,-0.05943073498039093 +180277,901.38500000807,-0.05942993486354732 +180278,901.3900000080702,-0.05942913490511043 +180279,901.3950000080703,-0.059428335105049655 +180280,901.4000000080704,-0.05942753546333434 +180281,901.4050000080705,-0.05942673597993388 +180282,901.4100000080706,-0.059425936654817664 +180283,901.4150000080707,-0.05942513748795508 +180284,901.4200000080708,-0.05942433847931555 +180285,901.4250000080709,-0.05942353962886848 +180286,901.430000008071,-0.059422740936583285 +180287,901.4350000080711,-0.059421942402429394 +180288,901.4400000080713,-0.05942114402637626 +180289,901.4450000080714,-0.05942034580839331 +180290,901.4500000080715,-0.05941954774845001 +180291,901.4550000080716,-0.059418749846515836 +180292,901.4600000080717,-0.059417952102560234 +180293,901.4650000080718,-0.0594171545165527 +180294,901.4700000080719,-0.059416357088462705 +180295,901.475000008072,-0.05941555981825975 +180296,901.4800000080721,-0.05941476270591335 +180297,901.4850000080722,-0.059413965751392996 +180298,901.4900000080723,-0.05941316895466821 +180299,901.4950000080725,-0.05941237231570853 +180300,901.5000000080726,-0.05941157583448349 +180301,901.5050000080727,-0.05941077951096263 +180302,901.5100000080728,-0.05940998334511549 +180303,901.5150000080729,-0.05940918733691165 +180304,901.520000008073,-0.059408391486320655 +180305,901.5250000080731,-0.05940759579331208 +180306,901.5300000080732,-0.05940680025785554 +180307,901.5350000080733,-0.059406004879920586 +180308,901.5400000080734,-0.059405209659476856 +180309,901.5450000080735,-0.059404414596493926 +180310,901.5500000080737,-0.05940361969094141 +180311,901.5550000080738,-0.05940282494278896 +180312,901.5600000080739,-0.05940203035200618 +180313,901.565000008074,-0.05940123591856272 +180314,901.5700000080741,-0.05940044164242822 +180315,901.5750000080742,-0.059399647523572345 +180316,901.5800000080743,-0.05939885356196474 +180317,901.5850000080744,-0.059398059757575096 +180318,901.5900000080745,-0.05939726611037308 +180319,901.5950000080746,-0.059396472620328385 +180320,901.6000000080747,-0.059395679287410685 +180321,901.6050000080749,-0.0593948861115897 +180322,901.610000008075,-0.05939409309283514 +180323,901.6150000080751,-0.05939330023111671 +180324,901.6200000080752,-0.05939250752640415 +180325,901.6250000080753,-0.05939171497866718 +180326,901.6300000080754,-0.059390922587875566 +180327,901.6350000080755,-0.05939013035399903 +180328,901.6400000080756,-0.05938933827700734 +180329,901.6450000080757,-0.05938854635687026 +180330,901.6500000080758,-0.05938775459355756 +180331,901.655000008076,-0.05938696298703903 +180332,901.660000008076,-0.05938617153728444 +180333,901.6650000080762,-0.059385380244263604 +180334,901.6700000080763,-0.05938458910794631 +180335,901.6750000080764,-0.05938379812830239 +180336,901.6800000080765,-0.05938300730530165 +180337,901.6850000080766,-0.0593822166389139 +180338,901.6900000080767,-0.059381426129109 +180339,901.6950000080768,-0.05938063577585679 +180340,901.7000000080769,-0.05937984557912712 +180341,901.705000008077,-0.05937905553888984 +180342,901.7100000080771,-0.05937826565511483 +180343,901.7150000080773,-0.05937747592777194 +180344,901.7200000080774,-0.05937668635683108 +180345,901.7250000080775,-0.059375896942262106 +180346,901.7300000080776,-0.05937510768403493 +180347,901.7350000080777,-0.05937431858211947 +180348,901.7400000080778,-0.05937352963648563 +180349,901.7450000080779,-0.05937274084710332 +180350,901.750000008078,-0.05937195221394248 +180351,901.7550000080781,-0.059371163736973036 +180352,901.7600000080782,-0.05937037541616493 +180353,901.7650000080783,-0.05936958725148813 +180354,901.7700000080785,-0.05936879924291257 +180355,901.7750000080786,-0.05936801139040823 +180356,901.7800000080787,-0.05936722369394508 +180357,901.7850000080788,-0.0593664361534931 +180358,901.7900000080789,-0.05936564876902229 +180359,901.795000008079,-0.059364861540502634 +180360,901.8000000080791,-0.059364074467904135 +180361,901.8050000080792,-0.059363287551196804 +180362,901.8100000080793,-0.059362500790350665 +180363,901.8150000080794,-0.05936171418533574 +180364,901.8200000080795,-0.05936092773612208 +180365,901.8250000080797,-0.059360141442679704 +180366,901.8300000080798,-0.05935935530497868 +180367,901.8350000080799,-0.05935856932298906 +180368,901.84000000808,-0.059357783496680895 +180369,901.8450000080801,-0.05935699782602427 +180370,901.8500000080802,-0.05935621231098927 +180371,901.8550000080803,-0.05935542695154597 +180372,901.8600000080804,-0.05935464174766447 +180373,901.8650000080805,-0.05935385669931487 +180374,901.8700000080806,-0.059353071806467296 +180375,901.8750000080807,-0.05935228706909185 +180376,901.8800000080809,-0.059351502487158654 +180377,901.885000008081,-0.059350718060637846 +180378,901.8900000080811,-0.059349933789499563 +180379,901.8950000080812,-0.059349149673713956 +180380,901.9000000080813,-0.05934836571325119 +180381,901.9050000080814,-0.0593475819080814 +180382,901.9100000080815,-0.05934679825817477 +180383,901.9150000080816,-0.05934601476350149 +180384,901.9200000080817,-0.05934523142403174 +180385,901.9250000080818,-0.0593444482397357 +180386,901.930000008082,-0.05934366521058358 +180387,901.935000008082,-0.05934288233654559 +180388,901.9400000080822,-0.05934209961759193 +180389,901.9450000080823,-0.05934131705369283 +180390,901.9500000080824,-0.05934053464481853 +180391,901.9550000080825,-0.059339752390939256 +180392,901.9600000080826,-0.059338970292025256 +180393,901.9650000080827,-0.05933818834804677 +180394,901.9700000080828,-0.05933740655897407 +180395,901.9750000080829,-0.05933662492477741 +180396,901.980000008083,-0.05933584344542709 +180397,901.9850000080831,-0.05933506212089337 +180398,901.9900000080833,-0.05933428095114654 +180399,901.9950000080834,-0.0593334999361569 +180400,902.0000000080835,-0.05933271907589476 +180401,902.0050000080836,-0.05933193837033042 +180402,902.0100000080837,-0.0593311578194342 +180403,902.0150000080838,-0.05933037742317643 +180404,902.0200000080839,-0.05932959718152745 +180405,902.025000008084,-0.05932881709445758 +180406,902.0300000080841,-0.05932803716193718 +180407,902.0350000080842,-0.0593272573839366 +180408,902.0400000080843,-0.059326477760426204 +180409,902.0450000080845,-0.05932569829137637 +180410,902.0500000080846,-0.05932491897675746 +180411,902.0550000080847,-0.05932413981653987 +180412,902.0600000080848,-0.05932336081069398 +180413,902.0650000080849,-0.05932258195919022 +180414,902.070000008085,-0.05932180326199895 +180415,902.0750000080851,-0.05932102471909062 +180416,902.0800000080852,-0.05932024633043562 +180417,902.0850000080853,-0.0593194680960044 +180418,902.0900000080854,-0.05931869001576739 +180419,902.0950000080855,-0.05931791208969503 +180420,902.1000000080857,-0.05931713431775778 +180421,902.1050000080858,-0.059316356699926076 +180422,902.1100000080859,-0.059315579236170396 +180423,902.115000008086,-0.059314801926461214 +180424,902.1200000080861,-0.059314024770769 +180425,902.1250000080862,-0.059313247769064235 +180426,902.1300000080863,-0.05931247092131743 +180427,902.1350000080864,-0.05931169422749906 +180428,902.1400000080865,-0.059310917687579665 +180429,902.1450000080866,-0.05931014130152973 +180430,902.1500000080867,-0.05930936506931978 +180431,902.1550000080869,-0.05930858899092037 +180432,902.160000008087,-0.05930781306630202 +180433,902.1650000080871,-0.059307037295435266 +180434,902.1700000080872,-0.05930626167829065 +180435,902.1750000080873,-0.059305486214838755 +180436,902.1800000080874,-0.05930471090505013 +180437,902.1850000080875,-0.05930393574889536 +180438,902.1900000080876,-0.059303160746345 +180439,902.1950000080877,-0.059302385897369664 +180440,902.2000000080878,-0.05930161120193992 +180441,902.205000008088,-0.059300836660026376 +180442,902.2100000080881,-0.059300062271599646 +180443,902.2150000080882,-0.05929928803663034 +180444,902.2200000080883,-0.059298513955089095 +180445,902.2250000080884,-0.059297740026946516 +180446,902.2300000080885,-0.05929696625217325 +180447,902.2350000080886,-0.05929619263073994 +180448,902.2400000080887,-0.059295419162617234 +180449,902.2450000080888,-0.0592946458477758 +180450,902.2500000080889,-0.05929387268618628 +180451,902.255000008089,-0.05929309967781936 +180452,902.2600000080892,-0.05929232682264571 +180453,902.2650000080893,-0.059291554120636025 +180454,902.2700000080894,-0.059290781571760987 +180455,902.2750000080895,-0.059290009175991316 +180456,902.2800000080896,-0.059289236933297705 +180457,902.2850000080897,-0.05928846484365086 +180458,902.2900000080898,-0.05928769290702151 +180459,902.2950000080899,-0.05928692112338038 +180460,902.30000000809,-0.059286149492698205 +180461,902.3050000080901,-0.059285378014945725 +180462,902.3100000080902,-0.059284606690093694 +180463,902.3150000080904,-0.059283835518112865 +180464,902.3200000080905,-0.059283064498974 +180465,902.3250000080906,-0.059282293632647864 +180466,902.3300000080907,-0.059281522919105246 +180467,902.3350000080908,-0.05928075235831692 +180468,902.3400000080909,-0.05927998195025367 +180469,902.345000008091,-0.059279211694886313 +180470,902.3500000080911,-0.05927844159218564 +180471,902.3550000080912,-0.05927767164212247 +180472,902.3600000080913,-0.05927690184466761 +180473,902.3650000080914,-0.05927613219979189 +180474,902.3700000080916,-0.059275362707466146 +180475,902.3750000080917,-0.059274593367661214 +180476,902.3800000080918,-0.05927382418034795 +180477,902.3850000080919,-0.05927305514549718 +180478,902.390000008092,-0.059272286263079794 +180479,902.3950000080921,-0.05927151753306664 +180480,902.4000000080922,-0.0592707489554286 +180481,902.4050000080923,-0.05926998053013655 +180482,902.4100000080924,-0.059269212257161384 +180483,902.4150000080925,-0.059268444136474 +180484,902.4200000080926,-0.059267676168045284 +180485,902.4250000080928,-0.059266908351846156 +180486,902.4300000080929,-0.059266140687847524 +180487,902.435000008093,-0.05926537317602032 +180488,902.4400000080931,-0.05926460581633546 +180489,902.4450000080932,-0.05926383860876389 +180490,902.4500000080933,-0.05926307155327655 +180491,902.4550000080934,-0.05926230464984438 +180492,902.4600000080935,-0.05926153789843835 +180493,902.4650000080936,-0.059260771299029416 +180494,902.4700000080937,-0.05926000485158855 +180495,902.4750000080938,-0.05925923855608673 +180496,902.480000008094,-0.05925847241249494 +180497,902.4850000080941,-0.059257706420784165 +180498,902.4900000080942,-0.059256940580925406 +180499,902.4950000080943,-0.05925617489288966 +180500,902.5000000080944,-0.05925540935664796 +180501,902.5050000080945,-0.0592546439721713 +180502,902.5100000080946,-0.05925387873943071 +180503,902.5150000080947,-0.05925311365839723 +180504,902.5200000080948,-0.059252348729041886 +180505,902.5250000080949,-0.05925158395133572 +180506,902.530000008095,-0.059250819325249796 +180507,902.5350000080952,-0.059250054850755164 +180508,902.5400000080953,-0.05924929052782289 +180509,902.5450000080954,-0.05924852635642407 +180510,902.5500000080955,-0.059247762336529744 +180511,902.5550000080956,-0.05924699846811102 +180512,902.5600000080957,-0.05924623475113897 +180513,902.5650000080958,-0.05924547118558472 +180514,902.5700000080959,-0.05924470777141936 +180515,902.575000008096,-0.059243944508614005 +180516,902.5800000080961,-0.05924318139713978 +180517,902.5850000080962,-0.0592424184369678 +180518,902.5900000080964,-0.0592416556280692 +180519,902.5950000080965,-0.05924089297041512 +180520,902.6000000080966,-0.0592401304639767 +180521,902.6050000080967,-0.059239368108725106 +180522,902.6100000080968,-0.05923860590463149 +180523,902.6150000080969,-0.05923784385166701 +180524,902.620000008097,-0.059237081949802844 +180525,902.6250000080971,-0.05923632019901018 +180526,902.6300000080972,-0.05923555859926019 +180527,902.6350000080973,-0.05923479715052408 +180528,902.6400000080974,-0.05923403585277304 +180529,902.6450000080976,-0.05923327470597828 +180530,902.6500000080977,-0.059232513710111005 +180531,902.6550000080978,-0.05923175286514244 +180532,902.6600000080979,-0.05923099217104381 +180533,902.665000008098,-0.05923023162778635 +180534,902.6700000080981,-0.05922947123534131 +180535,902.6750000080982,-0.05922871099367991 +180536,902.6800000080983,-0.05922795090277341 +180537,902.6850000080984,-0.05922719096259309 +180538,902.6900000080985,-0.05922643117311019 +180539,902.6950000080986,-0.05922567153429598 +180540,902.7000000080988,-0.05922491204612176 +180541,902.7050000080989,-0.059224152708558804 +180542,902.710000008099,-0.059223393521578405 +180543,902.7150000080991,-0.05922263448515186 +180544,902.7200000080992,-0.05922187559925048 +180545,902.7250000080993,-0.05922111686384557 +180546,902.7300000080994,-0.05922035827890845 +180547,902.7350000080995,-0.059219599844410456 +180548,902.7400000080996,-0.0592188415603229 +180549,902.7450000080997,-0.05921808342661713 +180550,902.7500000080998,-0.05921732544326449 +180551,902.7550000081,-0.059216567610236324 +180552,902.7600000081001,-0.059215809927504 +180553,902.7650000081002,-0.05921505239503887 +180554,902.7700000081003,-0.059214295012812314 +180555,902.7750000081004,-0.0592135377807957 +180556,902.7800000081005,-0.05921278069896043 +180557,902.7850000081006,-0.05921202376727788 +180558,902.7900000081007,-0.05921126698571945 +180559,902.7950000081008,-0.05921051035425654 +180560,902.8000000081009,-0.05920975387286056 +180561,902.805000008101,-0.059208997541502925 +180562,902.8100000081012,-0.059208241360155074 +180563,902.8150000081013,-0.05920748532878841 +180564,902.8200000081014,-0.05920672944737439 +180565,902.8250000081015,-0.059205973715884444 +180566,902.8300000081016,-0.05920521813429002 +180567,902.8350000081017,-0.059204462702562584 +180568,902.8400000081018,-0.05920370742067358 +180569,902.8450000081019,-0.059202952288594506 +180570,902.850000008102,-0.05920219730629681 +180571,902.8550000081021,-0.05920144247375198 +180572,902.8600000081022,-0.05920068779093151 +180573,902.8650000081024,-0.059199933257806876 +180574,902.8700000081025,-0.0591991788743496 +180575,902.8750000081026,-0.059198424640531176 +180576,902.8800000081027,-0.05919767055632312 +180577,902.8850000081028,-0.059196916621696946 +180578,902.8900000081029,-0.05919616283662418 +180579,902.895000008103,-0.059195409201076375 +180580,902.9000000081031,-0.05919465571502505 +180581,902.9050000081032,-0.05919390237844175 +180582,902.9100000081033,-0.05919314919129803 +180583,902.9150000081034,-0.05919239615356545 +180584,902.9200000081036,-0.059191643265215574 +180585,902.9250000081037,-0.05919089052621997 +180586,902.9300000081038,-0.05919013793655023 +180587,902.9350000081039,-0.05918938549617792 +180588,902.940000008104,-0.05918863320507462 +180589,902.9450000081041,-0.05918788106321196 +180590,902.9500000081042,-0.05918712907056151 +180591,902.9550000081043,-0.0591863772270949 +180592,902.9600000081044,-0.05918562553278373 +180593,902.9650000081045,-0.05918487398759965 +180594,902.9700000081046,-0.05918412259151425 +180595,902.9750000081048,-0.05918337134449919 +180596,902.9800000081049,-0.0591826202465261 +180597,902.985000008105,-0.059181869297566636 +180598,902.9900000081051,-0.05918111849759244 +180599,902.9950000081052,-0.05918036784657518 +180600,903.0000000081053,-0.05917961734448652 +180601,903.0050000081054,-0.059178866991298124 +180602,903.0100000081055,-0.05917811678698169 +180603,903.0150000081056,-0.05917736673150888 +180604,903.0200000081057,-0.05917661682485141 +180605,903.0250000081058,-0.059175867066980956 +180606,903.030000008106,-0.059175117457869235 +180607,903.0350000081061,-0.05917436799748795 +180608,903.0400000081062,-0.05917361868580882 +180609,903.0450000081063,-0.05917286952280357 +180610,903.0500000081064,-0.05917212050844393 +180611,903.0550000081065,-0.05917137164270163 +180612,903.0600000081066,-0.059170622925548415 +180613,903.0650000081067,-0.05916987435695603 +180614,903.0700000081068,-0.05916912593689624 +180615,903.0750000081069,-0.059168377665340784 +180616,903.080000008107,-0.05916762954226145 +180617,903.0850000081072,-0.05916688156763 +180618,903.0900000081073,-0.05916613374141822 +180619,903.0950000081074,-0.05916538606359789 +180620,903.1000000081075,-0.05916463853414081 +180621,903.1050000081076,-0.059163891153018754 +180622,903.1100000081077,-0.059163143920203554 +180623,903.1150000081078,-0.059162396835667 +180624,903.1200000081079,-0.05916164989938092 +180625,903.125000008108,-0.05916090311131713 +180626,903.1300000081081,-0.05916015647144746 +180627,903.1350000081082,-0.059159409979743754 +180628,903.1400000081084,-0.05915866363617785 +180629,903.1450000081085,-0.05915791744072159 +180630,903.1500000081086,-0.05915717139334683 +180631,903.1550000081087,-0.05915642549402543 +180632,903.1600000081088,-0.05915567974272926 +180633,903.1650000081089,-0.05915493413943018 +180634,903.170000008109,-0.05915418868410009 +180635,903.1750000081091,-0.05915344337671086 +180636,903.1800000081092,-0.05915269821723437 +180637,903.1850000081093,-0.059151953205642545 +180638,903.1900000081095,-0.05915120834190726 +180639,903.1950000081096,-0.059150463626000446 +180640,903.2000000081097,-0.059149719057894005 +180641,903.2050000081098,-0.05914897463755986 +180642,903.2100000081099,-0.059148230364969946 +180643,903.21500000811,-0.0591474862400962 +180644,903.2200000081101,-0.05914674226291055 +180645,903.2250000081102,-0.059145998433384944 +180646,903.2300000081103,-0.05914525475149135 +180647,903.2350000081104,-0.05914451121720171 +180648,903.2400000081105,-0.05914376783048799 +180649,903.2450000081107,-0.05914302459132216 +180650,903.2500000081108,-0.0591422814996762 +180651,903.2550000081109,-0.059141538555522094 +180652,903.260000008111,-0.05914079575883183 +180653,903.2650000081111,-0.059140053109577394 +180654,903.2700000081112,-0.05913931060773081 +180655,903.2750000081113,-0.05913856825326406 +180656,903.2800000081114,-0.05913782604614917 +180657,903.2850000081115,-0.05913708398635816 +180658,903.2900000081116,-0.05913634207386305 +180659,903.2950000081117,-0.05913560030863588 +180660,903.3000000081119,-0.05913485869064867 +180661,903.305000008112,-0.05913411721987349 +180662,903.3100000081121,-0.05913337589628238 +180663,903.3150000081122,-0.05913263471984737 +180664,903.3200000081123,-0.05913189369054057 +180665,903.3250000081124,-0.059131152808333996 +180666,903.3300000081125,-0.05913041207319975 +180667,903.3350000081126,-0.059129671485109926 +180668,903.3400000081127,-0.059128931044036576 +180669,903.3450000081128,-0.05912819074995181 +180670,903.3500000081129,-0.05912745060282774 +180671,903.355000008113,-0.059126710602636454 +180672,903.3600000081132,-0.05912597074935006 +180673,903.3650000081133,-0.05912523104294067 +180674,903.3700000081134,-0.05912449148338043 +180675,903.3750000081135,-0.05912375207064143 +180676,903.3800000081136,-0.05912301280469583 +180677,903.3850000081137,-0.05912227368551578 +180678,903.3900000081138,-0.0591215347130734 +180679,903.3950000081139,-0.059120795887340864 +180680,903.400000008114,-0.05912005720829032 +180681,903.4050000081141,-0.059119318675893935 +180682,903.4100000081143,-0.05911858029012387 +180683,903.4150000081144,-0.05911784205095232 +180684,903.4200000081145,-0.05911710395835145 +180685,903.4250000081146,-0.059116366012293455 +180686,903.4300000081147,-0.059115628212750536 +180687,903.4350000081148,-0.059114890559694884 +180688,903.4400000081149,-0.05911415305309871 +180689,903.445000008115,-0.05911341569293421 +180690,903.4500000081151,-0.059112678479173626 +180691,903.4550000081152,-0.05911194141178916 +180692,903.4600000081153,-0.05911120449075306 +180693,903.4650000081155,-0.059110467716037535 +180694,903.4700000081156,-0.059109731087614865 +180695,903.4750000081157,-0.05910899460545727 +180696,903.4800000081158,-0.05910825826953701 +180697,903.4850000081159,-0.05910752207982634 +180698,903.490000008116,-0.059106786036297536 +180699,903.4950000081161,-0.059106050138922867 +180700,903.5000000081162,-0.059105314387674614 +180701,903.5050000081163,-0.05910457878252504 +180702,903.5100000081164,-0.05910384332344645 +180703,903.5150000081165,-0.05910310801041115 +180704,903.5200000081167,-0.05910237284339142 +180705,903.5250000081168,-0.05910163782235958 +180706,903.5300000081169,-0.05910090294728794 +180707,903.535000008117,-0.0591001682181488 +180708,903.5400000081171,-0.0590994336349145 +180709,903.5450000081172,-0.059098699197557385 +180710,903.5500000081173,-0.059097964906049766 +180711,903.5550000081174,-0.059097230760364 +180712,903.5600000081175,-0.05909649676047243 +180713,903.5650000081176,-0.05909576290634742 +180714,903.5700000081177,-0.059095029197961314 +180715,903.5750000081179,-0.059094295635286474 +180716,903.580000008118,-0.059093562218295294 +180717,903.5850000081181,-0.05909282894696013 +180718,903.5900000081182,-0.05909209582125337 +180719,903.5950000081183,-0.0590913628411474 +180720,903.6000000081184,-0.05909063000661463 +180721,903.6050000081185,-0.05908989731762746 +180722,903.6100000081186,-0.05908916477415828 +180723,903.6150000081187,-0.059088432376179514 +180724,903.6200000081188,-0.059087700123663565 +180725,903.625000008119,-0.05908696801658287 +180726,903.630000008119,-0.059086236054909876 +180727,903.6350000081192,-0.05908550423861699 +180728,903.6400000081193,-0.05908477256767667 +180729,903.6450000081194,-0.059084041042061344 +180730,903.6500000081195,-0.05908330966174349 +180731,903.6550000081196,-0.05908257842669554 +180732,903.6600000081197,-0.05908184733688997 +180733,903.6650000081198,-0.05908111639229925 +180734,903.6700000081199,-0.059080385592895864 +180735,903.67500000812,-0.0590796549386523 +180736,903.6800000081201,-0.05907892442954103 +180737,903.6850000081203,-0.059078194065534564 +180738,903.6900000081204,-0.05907746384660537 +180739,903.6950000081205,-0.05907673377272597 +180740,903.7000000081206,-0.05907600384386889 +180741,903.7050000081207,-0.059075274060006636 +180742,903.7100000081208,-0.05907454442111173 +180743,903.7150000081209,-0.059073814927156694 +180744,903.720000008121,-0.05907308557811406 +180745,903.7250000081211,-0.059072356373956386 +180746,903.7300000081212,-0.0590716273146562 +180747,903.7350000081213,-0.059070898400186055 +180748,903.7400000081215,-0.059070169630518525 +180749,903.7450000081216,-0.059069441005626146 +180750,903.7500000081217,-0.0590687125254815 +180751,903.7550000081218,-0.059067984190057175 +180752,903.7600000081219,-0.059067255999325725 +180753,903.765000008122,-0.05906652795325975 +180754,903.7700000081221,-0.059065800051831846 +180755,903.7750000081222,-0.05906507229501459 +180756,903.7800000081223,-0.0590643446827806 +180757,903.7850000081224,-0.05906361721510248 +180758,903.7900000081225,-0.05906288989195285 +180759,903.7950000081227,-0.059062162713304334 +180760,903.8000000081228,-0.05906143567912955 +180761,903.8050000081229,-0.05906070878940112 +180762,903.810000008123,-0.059059982044091686 +180763,903.8150000081231,-0.0590592554431739 +180764,903.8200000081232,-0.0590585289866204 +180765,903.8250000081233,-0.059057802674403845 +180766,903.8300000081234,-0.0590570765064969 +180767,903.8350000081235,-0.05905635048287222 +180768,903.8400000081236,-0.05905562460350248 +180769,903.8450000081237,-0.05905489886836036 +180770,903.8500000081239,-0.05905417327741853 +180771,903.855000008124,-0.05905344783064969 +180772,903.8600000081241,-0.059052722528026534 +180773,903.8650000081242,-0.059051997369521755 +180774,903.8700000081243,-0.05905127235510807 +180775,903.8750000081244,-0.05905054748475819 +180776,903.8800000081245,-0.05904982275844481 +180777,903.8850000081246,-0.05904909817614066 +180778,903.8900000081247,-0.05904837373781848 +180779,903.8950000081248,-0.05904764944345099 +180780,903.900000008125,-0.05904692529301094 +180781,903.9050000081251,-0.059046201286471076 +180782,903.9100000081252,-0.05904547742380413 +180783,903.9150000081253,-0.05904475370498287 +180784,903.9200000081254,-0.05904403012998006 +180785,903.9250000081255,-0.059043306698768463 +180786,903.9300000081256,-0.05904258341132085 +180787,903.9350000081257,-0.05904186026760999 +180788,903.9400000081258,-0.05904113726760869 +180789,903.9450000081259,-0.05904041441128972 +180790,903.950000008126,-0.05903969169862589 +180791,903.9550000081261,-0.05903896912958999 +180792,903.9600000081263,-0.059038246704154834 +180793,903.9650000081264,-0.059037524422293215 +180794,903.9700000081265,-0.05903680228397798 +180795,903.9750000081266,-0.059036080289181926 +180796,903.9800000081267,-0.05903535843787789 +180797,903.9850000081268,-0.05903463673003871 +180798,903.9900000081269,-0.059033915165637225 +180799,903.995000008127,-0.05903319374464629 +180800,904.0000000081271,-0.05903247246703873 +180801,904.0050000081272,-0.05903175133278742 +180802,904.0100000081273,-0.05903103034186522 +180803,904.0150000081275,-0.05903030949424499 +180804,904.0200000081276,-0.059029588789899605 +180805,904.0250000081277,-0.059028868228801955 +180806,904.0300000081278,-0.05902814781092492 +180807,904.0350000081279,-0.05902742753624139 +180808,904.040000008128,-0.05902670740472425 +180809,904.0450000081281,-0.05902598741634641 +180810,904.0500000081282,-0.05902526757108078 +180811,904.0550000081283,-0.05902454786890026 +180812,904.0600000081284,-0.05902382830977777 +180813,904.0650000081285,-0.05902310889368624 +180814,904.0700000081287,-0.0590223896205986 +180815,904.0750000081288,-0.05902167049048778 +180816,904.0800000081289,-0.059020951503326716 +180817,904.085000008129,-0.05902023265908835 +180818,904.0900000081291,-0.05901951395774564 +180819,904.0950000081292,-0.05901879539927154 +180820,904.1000000081293,-0.05901807698363902 +180821,904.1050000081294,-0.05901735871082103 +180822,904.1100000081295,-0.05901664058079055 +180823,904.1150000081296,-0.05901592259352057 +180824,904.1200000081298,-0.059015204748984064 +180825,904.1250000081299,-0.05901448704715402 +180826,904.13000000813,-0.05901376948800344 +180827,904.1350000081301,-0.0590130520715053 +180828,904.1400000081302,-0.05901233479763263 +180829,904.1450000081303,-0.059011617666358436 +180830,904.1500000081304,-0.05901090067765573 +180831,904.1550000081305,-0.05901018383149753 +180832,904.1600000081306,-0.05900946712785688 +180833,904.1650000081307,-0.0590087505667068 +180834,904.1700000081308,-0.05900803414802033 +180835,904.175000008131,-0.059007317871770514 +180836,904.1800000081311,-0.05900660173793041 +180837,904.1850000081312,-0.05900588574647306 +180838,904.1900000081313,-0.059005169897371534 +180839,904.1950000081314,-0.059004454190598896 +180840,904.2000000081315,-0.05900373862612821 +180841,904.2050000081316,-0.05900302320393256 +180842,904.2100000081317,-0.05900230792398502 +180843,904.2150000081318,-0.05900159278625868 +180844,904.2200000081319,-0.05900087779072665 +180845,904.225000008132,-0.05900016293736201 +180846,904.2300000081322,-0.05899944822613786 +180847,904.2350000081323,-0.05899873365702732 +180848,904.2400000081324,-0.058998019230003494 +180849,904.2450000081325,-0.05899730494503952 +180850,904.2500000081326,-0.0589965908021085 +180851,904.2550000081327,-0.05899587680118359 +180852,904.2600000081328,-0.058995162942237896 +180853,904.2650000081329,-0.0589944492252446 +180854,904.270000008133,-0.05899373565017681 +180855,904.2750000081331,-0.058993022217007696 +180856,904.2800000081332,-0.05899230892571042 +180857,904.2850000081334,-0.058991595776258135 +180858,904.2900000081335,-0.05899088276862402 +180859,904.2950000081336,-0.05899016990278125 +180860,904.3000000081337,-0.05898945717870299 +180861,904.3050000081338,-0.05898874459636244 +180862,904.3100000081339,-0.05898803215573277 +180863,904.315000008134,-0.05898731985678719 +180864,904.3200000081341,-0.05898660769949891 +180865,904.3250000081342,-0.058985895683841126 +180866,904.3300000081343,-0.058985183809787047 +180867,904.3350000081344,-0.05898447207730989 +180868,904.3400000081346,-0.05898376048638288 +180869,904.3450000081347,-0.05898304903697924 +180870,904.3500000081348,-0.058982337729072215 +180871,904.3550000081349,-0.05898162656263503 +180872,904.360000008135,-0.05898091553764094 +180873,904.3650000081351,-0.05898020465406319 +180874,904.3700000081352,-0.05897949391187504 +180875,904.3750000081353,-0.05897878331104974 +180876,904.3800000081354,-0.05897807285156056 +180877,904.3850000081355,-0.05897736253338077 +180878,904.3900000081356,-0.05897665235648364 +180879,904.3950000081358,-0.05897594232084247 +180880,904.4000000081359,-0.058975232426430525 +180881,904.405000008136,-0.058974522673221105 +180882,904.4100000081361,-0.05897381306118751 +180883,904.4150000081362,-0.05897310359030304 +180884,904.4200000081363,-0.05897239426054101 +180885,904.4250000081364,-0.05897168507187472 +180886,904.4300000081365,-0.05897097602427749 +180887,904.4350000081366,-0.05897026711772266 +180888,904.4400000081367,-0.058969558352183545 +180889,904.4450000081368,-0.058968849727633485 +180890,904.450000008137,-0.05896814124404581 +180891,904.4550000081371,-0.058967432901393876 +180892,904.4600000081372,-0.05896672469965104 +180893,904.4650000081373,-0.058966016638790635 +180894,904.4700000081374,-0.05896530871878603 +180895,904.4750000081375,-0.058964600939610604 +180896,904.4800000081376,-0.05896389330123772 +180897,904.4850000081377,-0.05896318580364076 +180898,904.4900000081378,-0.0589624784467931 +180899,904.4950000081379,-0.05896177123066812 +180900,904.500000008138,-0.05896106415523923 +180901,904.5050000081382,-0.05896035722047982 +180902,904.5100000081383,-0.0589596504263633 +180903,904.5150000081384,-0.05895894377286305 +180904,904.5200000081385,-0.058958237259952515 +180905,904.5250000081386,-0.0589575308876051 +180906,904.5300000081387,-0.058956824655794236 +180907,904.5350000081388,-0.05895611856449335 +180908,904.5400000081389,-0.05895541261367588 +180909,904.545000008139,-0.05895470680331525 +180910,904.5500000081391,-0.05895400113338492 +180911,904.5550000081392,-0.05895329560385834 +180912,904.5600000081394,-0.058952590214708965 +180913,904.5650000081395,-0.05895188496591025 +180914,904.5700000081396,-0.05895117985743568 +180915,904.5750000081397,-0.058950474889258704 +180916,904.5800000081398,-0.058949770061352796 +180917,904.5850000081399,-0.058949065373691455 +180918,904.59000000814,-0.058948360826248165 +180919,904.5950000081401,-0.0589476564189964 +180920,904.6000000081402,-0.05894695215190968 +180921,904.6050000081403,-0.058946248024961505 +180922,904.6100000081404,-0.05894554403812538 +180923,904.6150000081406,-0.05894484019137481 +180924,904.6200000081407,-0.05894413648468333 +180925,904.6250000081408,-0.058943432918024445 +180926,904.6300000081409,-0.05894272949137169 +180927,904.635000008141,-0.05894202620469862 +180928,904.6400000081411,-0.05894132305797875 +180929,904.6450000081412,-0.05894062005118563 +180930,904.6500000081413,-0.05893991718429281 +180931,904.6550000081414,-0.058939214457273834 +180932,904.6600000081415,-0.058938511870102274 +180933,904.6650000081416,-0.0589378094227517 +180934,904.6700000081418,-0.058937107115195675 +180935,904.6750000081419,-0.05893640494740778 +180936,904.680000008142,-0.05893570291936159 +180937,904.6850000081421,-0.05893500103103069 +180938,904.6900000081422,-0.05893429928238868 +180939,904.6950000081423,-0.05893359767340915 +180940,904.7000000081424,-0.058932896204065714 +180941,904.7050000081425,-0.058932194874331954 +180942,904.7100000081426,-0.058931493684181505 +180943,904.7150000081427,-0.05893079263358797 +180944,904.7200000081428,-0.05893009172252497 +180945,904.725000008143,-0.05892939095096614 +180946,904.7300000081431,-0.058928690318885105 +180947,904.7350000081432,-0.058927989826255515 +180948,904.7400000081433,-0.058927289473050995 +180949,904.7450000081434,-0.0589265892592452 +180950,904.7500000081435,-0.05892588918481179 +180951,904.7550000081436,-0.058925189249724425 +180952,904.7600000081437,-0.058924489453956765 +180953,904.7650000081438,-0.05892378979748247 +180954,904.7700000081439,-0.05892309028027522 +180955,904.775000008144,-0.05892239090230869 +180956,904.7800000081442,-0.058921691663556576 +180957,904.7850000081443,-0.05892099256399256 +180958,904.7900000081444,-0.05892029360359032 +180959,904.7950000081445,-0.05891959478232359 +180960,904.8000000081446,-0.05891889610016604 +180961,904.8050000081447,-0.058918197557091406 +180962,904.8100000081448,-0.05891749915307338 +180963,904.8150000081449,-0.05891680088808569 +180964,904.820000008145,-0.058916102762102074 +180965,904.8250000081451,-0.058915404775096235 +180966,904.8300000081452,-0.058914706927041934 +180967,904.8350000081454,-0.058914009217912906 +180968,904.8400000081455,-0.05891331164768289 +180969,904.8450000081456,-0.05891261421632564 +180970,904.8500000081457,-0.0589119169238149 +180971,904.8550000081458,-0.05891121977012445 +180972,904.8600000081459,-0.05891052275522803 +180973,904.865000008146,-0.05890982587909943 +180974,904.8700000081461,-0.05890912914171243 +180975,904.8750000081462,-0.0589084325430408 +180976,904.8800000081463,-0.05890773608305834 +180977,904.8850000081464,-0.05890703976173882 +180978,904.8900000081466,-0.058906343579056046 +180979,904.8950000081467,-0.05890564753498381 +180980,904.9000000081468,-0.05890495162949594 +180981,904.9050000081469,-0.05890425586256623 +180982,904.910000008147,-0.05890356023416851 +180983,904.9150000081471,-0.058902864744276584 +180984,904.9200000081472,-0.058902169392864294 +180985,904.9250000081473,-0.05890147417990547 +180986,904.9300000081474,-0.05890077910537393 +180987,904.9350000081475,-0.05890008416924353 +180988,904.9400000081476,-0.058899389371488114 +180989,904.9450000081478,-0.058898694712081534 +180990,904.9500000081479,-0.05889800019099767 +180991,904.955000008148,-0.05889730580821035 +180992,904.9600000081481,-0.058896611563693455 +180993,904.9650000081482,-0.05889591745742085 +180994,904.9700000081483,-0.05889522348936643 +180995,904.9750000081484,-0.058894529659504063 +180996,904.9800000081485,-0.05889383596780763 +180997,904.9850000081486,-0.058893142414251046 +180998,904.9900000081487,-0.05889244899880818 +180999,904.9950000081488,-0.05889175572145296 +181000,905.000000008149,-0.058891062582159266 +181001,905.0050000081491,-0.05889036958090104 +181002,905.0100000081492,-0.05888967671765218 +181003,905.0150000081493,-0.058888983992386616 +181004,905.0200000081494,-0.058888291405078265 +181005,905.0250000081495,-0.058887598955701066 +181006,905.0300000081496,-0.05888690664422896 +181007,905.0350000081497,-0.05888621447063588 +181008,905.0400000081498,-0.05888552243489579 +181009,905.0450000081499,-0.05888483053698264 +181010,905.05000000815,-0.05888413877687036 +181011,905.0550000081502,-0.05888344715453295 +181012,905.0600000081503,-0.058882755669944345 +181013,905.0650000081504,-0.05888206432307854 +181014,905.0700000081505,-0.058881373113909494 +181015,905.0750000081506,-0.058880682042411196 +181016,905.0800000081507,-0.05887999110855765 +181017,905.0850000081508,-0.05887930031232283 +181018,905.0900000081509,-0.05887860965368074 +181019,905.095000008151,-0.058877919132605386 +181020,905.1000000081511,-0.05887722874907077 +181021,905.1050000081513,-0.0588765385030509 +181022,905.1100000081514,-0.05887584839451979 +181023,905.1150000081515,-0.05887515842345148 +181024,905.1200000081516,-0.058874468589819984 +181025,905.1250000081517,-0.058873778893599335 +181026,905.1300000081518,-0.05887308933476358 +181027,905.1350000081519,-0.058872399913286744 +181028,905.140000008152,-0.058871710629142884 +181029,905.1450000081521,-0.05887102148230605 +181030,905.1500000081522,-0.05887033247275031 +181031,905.1550000081523,-0.05886964360044971 +181032,905.1600000081525,-0.05886895486537831 +181033,905.1650000081526,-0.05886826626751021 +181034,905.1700000081527,-0.05886757780681947 +181035,905.1750000081528,-0.05886688948328018 +181036,905.1800000081529,-0.058866201296866406 +181037,905.185000008153,-0.05886551324755226 +181038,905.1900000081531,-0.05886482533531182 +181039,905.1950000081532,-0.058864137560119205 +181040,905.2000000081533,-0.058863449921948516 +181041,905.2050000081534,-0.058862762420773866 +181042,905.2100000081535,-0.05886207505656937 +181043,905.2150000081537,-0.05886138782930915 +181044,905.2200000081538,-0.05886070073896734 +181045,905.2250000081539,-0.05886001378551805 +181046,905.230000008154,-0.058859326968935435 +181047,905.2350000081541,-0.05885864028919363 +181048,905.2400000081542,-0.058857953746266775 +181049,905.2450000081543,-0.05885726734012903 +181050,905.2500000081544,-0.058856581070754546 +181051,905.2550000081545,-0.05885589493811747 +181052,905.2600000081546,-0.058855208942192 +181053,905.2650000081547,-0.05885452308295227 +181054,905.2700000081549,-0.05885383736037248 +181055,905.275000008155,-0.05885315177442681 +181056,905.2800000081551,-0.05885246632508943 +181057,905.2850000081552,-0.05885178101233453 +181058,905.2900000081553,-0.058851095836136326 +181059,905.2950000081554,-0.058850410796468994 +181060,905.3000000081555,-0.058849725893306754 +181061,905.3050000081556,-0.05884904112662382 +181062,905.3100000081557,-0.05884835649639439 +181063,905.3150000081558,-0.05884767200259269 +181064,905.320000008156,-0.058846987645192944 +181065,905.325000008156,-0.058846303424169376 +181066,905.3300000081562,-0.05884561933949624 +181067,905.3350000081563,-0.05884493539114775 +181068,905.3400000081564,-0.05884425157909816 +181069,905.3450000081565,-0.058843567903321715 +181070,905.3500000081566,-0.05884288436379268 +181071,905.3550000081567,-0.0588422009604853 +181072,905.3600000081568,-0.05884151769337385 +181073,905.3650000081569,-0.05884083456243259 +181074,905.370000008157,-0.0588401515676358 +181075,905.3750000081571,-0.05883946870895775 +181076,905.3800000081573,-0.05883878598637273 +181077,905.3850000081574,-0.05883810339985501 +181078,905.3900000081575,-0.05883742094937891 +181079,905.3950000081576,-0.05883673863491871 +181080,905.4000000081577,-0.0588360564564487 +181081,905.4050000081578,-0.058835374413943216 +181082,905.4100000081579,-0.05883469250737656 +181083,905.415000008158,-0.05883401073672304 +181084,905.4200000081581,-0.058833329101956995 +181085,905.4250000081582,-0.05883264760305272 +181086,905.4300000081583,-0.058831966239984566 +181087,905.4350000081585,-0.058831285012726865 +181088,905.4400000081586,-0.05883060392125397 +181089,905.4450000081587,-0.05882992296554021 +181090,905.4500000081588,-0.05882924214555995 +181091,905.4550000081589,-0.05882856146128754 +181092,905.460000008159,-0.058827880912697326 +181093,905.4650000081591,-0.05882720049976369 +181094,905.4700000081592,-0.058826520222461 +181095,905.4750000081593,-0.05882584008076363 +181096,905.4800000081594,-0.05882516007464595 +181097,905.4850000081595,-0.05882448020408235 +181098,905.4900000081597,-0.05882380046904721 +181099,905.4950000081598,-0.05882312086951495 +181100,905.5000000081599,-0.05882244140545995 +181101,905.50500000816,-0.05882176207685662 +181102,905.5100000081601,-0.058821082883679356 +181103,905.5150000081602,-0.058820403825902576 +181104,905.5200000081603,-0.0588197249035007 +181105,905.5250000081604,-0.05881904611644816 +181106,905.5300000081605,-0.05881836746471937 +181107,905.5350000081606,-0.058817688948288774 +181108,905.5400000081607,-0.05881701056713081 +181109,905.5450000081609,-0.058816332321219904 +181110,905.550000008161,-0.05881565421053051 +181111,905.5550000081611,-0.05881497623503709 +181112,905.5600000081612,-0.05881429839471409 +181113,905.5650000081613,-0.05881362068953597 +181114,905.5700000081614,-0.0588129431194772 +181115,905.5750000081615,-0.05881226568451224 +181116,905.5800000081616,-0.05881158838461559 +181117,905.5850000081617,-0.05881091121976171 +181118,905.5900000081618,-0.058810234189925086 +181119,905.595000008162,-0.05880955729508021 +181120,905.600000008162,-0.058808880535201585 +181121,905.6050000081622,-0.0588082039102637 +181122,905.6100000081623,-0.05880752742024106 +181123,905.6150000081624,-0.058806851065108176 +181124,905.6200000081625,-0.05880617484483956 +181125,905.6250000081626,-0.05880549875940975 +181126,905.6300000081627,-0.05880482280879323 +181127,905.6350000081628,-0.05880414699296456 +181128,905.6400000081629,-0.05880347131189827 +181129,905.645000008163,-0.05880279576556888 +181130,905.6500000081631,-0.058802120353950944 +181131,905.6550000081633,-0.058801445077018996 +181132,905.6600000081634,-0.05880076993474761 +181133,905.6650000081635,-0.058800094927111315 +181134,905.6700000081636,-0.05879942005408471 +181135,905.6750000081637,-0.058798745315642324 +181136,905.6800000081638,-0.05879807071175874 +181137,905.6850000081639,-0.05879739624240854 +181138,905.690000008164,-0.058796721907566296 +181139,905.6950000081641,-0.058796047707206596 +181140,905.7000000081642,-0.05879537364130404 +181141,905.7050000081643,-0.05879469970983321 +181142,905.7100000081645,-0.0587940259127687 +181143,905.7150000081646,-0.05879335225008513 +181144,905.7200000081647,-0.0587926787217571 +181145,905.7250000081648,-0.05879200532775922 +181146,905.7300000081649,-0.058791332068066096 +181147,905.735000008165,-0.05879065894265239 +181148,905.7400000081651,-0.058789985951492686 +181149,905.7450000081652,-0.05878931309456164 +181150,905.7500000081653,-0.05878864037183388 +181151,905.7550000081654,-0.05878796778328406 +181152,905.7600000081655,-0.05878729532888682 +181153,905.7650000081657,-0.058786623008616805 +181154,905.7700000081658,-0.05878595082244867 +181155,905.7750000081659,-0.05878527877035708 +181156,905.780000008166,-0.0587846068523167 +181157,905.7850000081661,-0.0587839350683022 +181158,905.7900000081662,-0.05878326341828826 +181159,905.7950000081663,-0.05878259190224955 +181160,905.8000000081664,-0.058781920520160756 +181161,905.8050000081665,-0.05878124927199656 +181162,905.8100000081666,-0.05878057815773167 +181163,905.8150000081667,-0.05877990717734077 +181164,905.8200000081669,-0.05877923633079858 +181165,905.825000008167,-0.058778565618079794 +181166,905.8300000081671,-0.058777895039159124 +181167,905.8350000081672,-0.05877722459401129 +181168,905.8400000081673,-0.05877655428261102 +181169,905.8450000081674,-0.05877588410493303 +181170,905.8500000081675,-0.05877521406095204 +181171,905.8550000081676,-0.05877454415064281 +181172,905.8600000081677,-0.058773874373980066 +181173,905.8650000081678,-0.05877320473093856 +181174,905.870000008168,-0.05877253522149303 +181175,905.8750000081681,-0.058771865845618235 +181176,905.8800000081682,-0.058771196603288944 +181177,905.8850000081683,-0.05877052749447991 +181178,905.8900000081684,-0.058769858519165906 +181179,905.8950000081685,-0.058769189677321705 +181180,905.9000000081686,-0.05876852096892209 +181181,905.9050000081687,-0.058767852393941826 +181182,905.9100000081688,-0.05876718395235571 +181183,905.9150000081689,-0.05876651564413854 +181184,905.920000008169,-0.058765847469265095 +181185,905.9250000081691,-0.058765179427710194 +181186,905.9300000081693,-0.058764511519448635 +181187,905.9350000081694,-0.058763843744455216 +181188,905.9400000081695,-0.05876317610270476 +181189,905.9450000081696,-0.058762508594172105 +181190,905.9500000081697,-0.058761841218832045 +181191,905.9550000081698,-0.058761173976659434 +181192,905.9600000081699,-0.05876050686762909 +181193,905.96500000817,-0.058759839891715855 +181194,905.9700000081701,-0.05875917304889457 +181195,905.9750000081702,-0.058758506339140086 +181196,905.9800000081704,-0.05875783976242725 +181197,905.9850000081705,-0.05875717331873092 +181198,905.9900000081706,-0.05875650700802596 +181199,905.9950000081707,-0.058755840830287245 +181200,906.0000000081708,-0.05875517478548962 +181201,906.0050000081709,-0.058754508873607975 +181202,906.010000008171,-0.058753843094617196 +181203,906.0150000081711,-0.05875317744849216 +181204,906.0200000081712,-0.05875251193520775 +181205,906.0250000081713,-0.058751846554738876 +181206,906.0300000081714,-0.05875118130706042 +181207,906.0350000081716,-0.05875051619214729 +181208,906.0400000081717,-0.0587498512099744 +181209,906.0450000081718,-0.058749186360516646 +181210,906.0500000081719,-0.05874852164374896 +181211,906.055000008172,-0.058747857059646254 +181212,906.0600000081721,-0.05874719260818345 +181213,906.0650000081722,-0.0587465282893355 +181214,906.0700000081723,-0.05874586410307731 +181215,906.0750000081724,-0.05874520004938384 +181216,906.0800000081725,-0.058744536128230024 +181217,906.0850000081726,-0.05874387233959082 +181218,906.0900000081728,-0.058743208683441184 +181219,906.0950000081729,-0.05874254515975606 +181220,906.100000008173,-0.05874188176851041 +181221,906.1050000081731,-0.05874121850967921 +181222,906.1100000081732,-0.058740555383237435 +181223,906.1150000081733,-0.05873989238916006 +181224,906.1200000081734,-0.058739229527422054 +181225,906.1250000081735,-0.058738566797998416 +181226,906.1300000081736,-0.058737904200864124 +181227,906.1350000081737,-0.05873724173599418 +181228,906.1400000081738,-0.058736579403363576 +181229,906.145000008174,-0.05873591720294734 +181230,906.1500000081741,-0.05873525513472045 +181231,906.1550000081742,-0.05873459319865793 +181232,906.1600000081743,-0.05873393139473481 +181233,906.1650000081744,-0.0587332697229261 +181234,906.1700000081745,-0.05873260818320682 +181235,906.1750000081746,-0.05873194677555202 +181236,906.1800000081747,-0.05873128549993672 +181237,906.1850000081748,-0.05873062435633597 +181238,906.1900000081749,-0.05872996334472481 +181239,906.195000008175,-0.05872930246507829 +181240,906.2000000081752,-0.05872864171737146 +181241,906.2050000081753,-0.05872798110157939 +181242,906.2100000081754,-0.05872732061767714 +181243,906.2150000081755,-0.05872666026563977 +181244,906.2200000081756,-0.05872600004544235 +181245,906.2250000081757,-0.058725339957059974 +181246,906.2300000081758,-0.058724680000467704 +181247,906.2350000081759,-0.058724020175640636 +181248,906.240000008176,-0.05872336048255386 +181249,906.2450000081761,-0.058722700921182466 +181250,906.2500000081762,-0.05872204149150157 +181251,906.2550000081764,-0.058721382193486264 +181252,906.2600000081765,-0.05872072302711166 +181253,906.2650000081766,-0.05872006399235286 +181254,906.2700000081767,-0.05871940508918499 +181255,906.2750000081768,-0.05871874631758317 +181256,906.2800000081769,-0.05871808767752253 +181257,906.285000008177,-0.058717429168978215 +181258,906.2900000081771,-0.058716770791925346 +181259,906.2950000081772,-0.05871611254633905 +181260,906.3000000081773,-0.058715454432194496 +181261,906.3050000081774,-0.05871479644946682 +181262,906.3100000081776,-0.05871413859813119 +181263,906.3150000081777,-0.05871348087816274 +181264,906.3200000081778,-0.058712823289536656 +181265,906.3250000081779,-0.058712165832228096 +181266,906.330000008178,-0.05871150850621224 +181267,906.3350000081781,-0.05871085131146425 +181268,906.3400000081782,-0.05871019424795932 +181269,906.3450000081783,-0.05870953731567263 +181270,906.3500000081784,-0.05870888051457938 +181271,906.3550000081785,-0.05870822384465475 +181272,906.3600000081786,-0.05870756730587395 +181273,906.3650000081788,-0.05870691089821217 +181274,906.3700000081789,-0.05870625462164463 +181275,906.375000008179,-0.05870559847614655 +181276,906.3800000081791,-0.05870494246169314 +181277,906.3850000081792,-0.058704286578259615 +181278,906.3900000081793,-0.05870363082582121 +181279,906.3950000081794,-0.05870297520435315 +181280,906.4000000081795,-0.05870231971383068 +181281,906.4050000081796,-0.05870166435422902 +181282,906.4100000081797,-0.05870100912552343 +181283,906.4150000081798,-0.05870035402768916 +181284,906.42000000818,-0.05869969906070145 +181285,906.4250000081801,-0.05869904422453557 +181286,906.4300000081802,-0.05869838951916678 +181287,906.4350000081803,-0.05869773494457035 +181288,906.4400000081804,-0.05869708050072154 +181289,906.4450000081805,-0.058696426187595636 +181290,906.4500000081806,-0.058695772005167915 +181291,906.4550000081807,-0.05869511795341366 +181292,906.4600000081808,-0.058694464032308165 +181293,906.4650000081809,-0.05869381024182671 +181294,906.470000008181,-0.05869315658194461 +181295,906.4750000081812,-0.058692503052637165 +181296,906.4800000081813,-0.05869184965387967 +181297,906.4850000081814,-0.05869119638564746 +181298,906.4900000081815,-0.058690543247915825 +181299,906.4950000081816,-0.058689890240660104 +181300,906.5000000081817,-0.05868923736385561 +181301,906.5050000081818,-0.058688584617477675 +181302,906.5100000081819,-0.05868793200150164 +181303,906.515000008182,-0.05868727951590283 +181304,906.5200000081821,-0.0586866271606566 +181305,906.5250000081822,-0.0586859749357383 +181306,906.5300000081824,-0.05868532284112328 +181307,906.5350000081825,-0.05868467087678688 +181308,906.5400000081826,-0.058684019042704476 +181309,906.5450000081827,-0.05868336733885144 +181310,906.5500000081828,-0.058682715765203126 +181311,906.5550000081829,-0.058682064321734916 +181312,906.560000008183,-0.05868141300842218 +181313,906.5650000081831,-0.05868076182524031 +181314,906.5700000081832,-0.058680110772164694 +181315,906.5750000081833,-0.058679459849170716 +181316,906.5800000081834,-0.05867880905623377 +181317,906.5850000081836,-0.05867815839332929 +181318,906.5900000081837,-0.058677507860432625 +181319,906.5950000081838,-0.05867685745751924 +181320,906.6000000081839,-0.058676207184564504 +181321,906.605000008184,-0.05867555704154387 +181322,906.6100000081841,-0.05867490702843274 +181323,906.6150000081842,-0.058674257145206556 +181324,906.6200000081843,-0.058673607391840736 +181325,906.6250000081844,-0.05867295776831071 +181326,906.6300000081845,-0.058672308274591946 +181327,906.6350000081846,-0.05867165891065986 +181328,906.6400000081848,-0.058671009676489916 +181329,906.6450000081849,-0.05867036057205758 +181330,906.650000008185,-0.058669711597338296 +181331,906.6550000081851,-0.05866906275230752 +181332,906.6600000081852,-0.05866841403694073 +181333,906.6650000081853,-0.0586677654512134 +181334,906.6700000081854,-0.058667116995101 +181335,906.6750000081855,-0.05866646866857902 +181336,906.6800000081856,-0.05866582047162292 +181337,906.6850000081857,-0.058665172404208224 +181338,906.6900000081858,-0.058664524466310396 +181339,906.695000008186,-0.05866387665790496 +181340,906.7000000081861,-0.05866322897896741 +181341,906.7050000081862,-0.05866258142947323 +181342,906.7100000081863,-0.05866193400939797 +181343,906.7150000081864,-0.05866128671871712 +181344,906.7200000081865,-0.0586606395574062 +181345,906.7250000081866,-0.05865999252544074 +181346,906.7300000081867,-0.05865934562279628 +181347,906.7350000081868,-0.05865869884944834 +181348,906.7400000081869,-0.05865805220537247 +181349,906.745000008187,-0.058657405690544194 +181350,906.7500000081872,-0.05865675930493908 +181351,906.7550000081873,-0.05865611304853266 +181352,906.7600000081874,-0.058655466921300504 +181353,906.7650000081875,-0.05865482092321816 +181354,906.7700000081876,-0.05865417505426119 +181355,906.7750000081877,-0.05865352931440518 +181356,906.7800000081878,-0.05865288370362569 +181357,906.7850000081879,-0.0586522382218983 +181358,906.790000008188,-0.0586515928691986 +181359,906.7950000081881,-0.05865094764550216 +181360,906.8000000081882,-0.058650302550784586 +181361,906.8050000081884,-0.05864965758502148 +181362,906.8100000081885,-0.058649012748188414 +181363,906.8150000081886,-0.05864836804026101 +181364,906.8200000081887,-0.05864772346121487 +181365,906.8250000081888,-0.05864707901102561 +181366,906.8300000081889,-0.058646434689668854 +181367,906.835000008189,-0.0586457904971202 +181368,906.8400000081891,-0.05864514643335529 +181369,906.8450000081892,-0.058644502498349765 +181370,906.8500000081893,-0.05864385869207925 +181371,906.8550000081894,-0.05864321501451937 +181372,906.8600000081896,-0.05864257146564579 +181373,906.8650000081897,-0.058641928045434145 +181374,906.8700000081898,-0.05864128475386008 +181375,906.8750000081899,-0.05864064159089927 +181376,906.88000000819,-0.05863999855652736 +181377,906.8850000081901,-0.058639355650720024 +181378,906.8900000081902,-0.05863871287345292 +181379,906.8950000081903,-0.05863807022470174 +181380,906.9000000081904,-0.05863742770444215 +181381,906.9050000081905,-0.05863678531264982 +181382,906.9100000081907,-0.05863614304930046 +181383,906.9150000081908,-0.05863550091436976 +181384,906.9200000081909,-0.058634858907833404 +181385,906.925000008191,-0.0586342170296671 +181386,906.9300000081911,-0.05863357527984654 +181387,906.9350000081912,-0.058632933658347444 +181388,906.9400000081913,-0.05863229216514552 +181389,906.9450000081914,-0.05863165080021649 +181390,906.9500000081915,-0.05863100956353607 +181391,906.9550000081916,-0.05863036845507999 +181392,906.9600000081917,-0.05862972747482398 +181393,906.9650000081919,-0.05862908662274377 +181394,906.970000008192,-0.0586284458988151 +181395,906.9750000081921,-0.05862780530301373 +181396,906.9800000081922,-0.05862716483531538 +181397,906.9850000081923,-0.05862652449569583 +181398,906.9900000081924,-0.05862588428413082 +181399,906.9950000081925,-0.0586252442005961 +181400,907.0000000081926,-0.05862460424506746 +181401,907.0050000081927,-0.05862396441752066 +181402,907.0100000081928,-0.058623324717931455 +181403,907.0150000081929,-0.058622685146275645 +181404,907.020000008193,-0.05862204570252901 +181405,907.0250000081932,-0.05862140638666733 +181406,907.0300000081933,-0.0586207671986664 +181407,907.0350000081934,-0.05862012813850201 +181408,907.0400000081935,-0.05861948920614998 +181409,907.0450000081936,-0.05861885040158609 +181410,907.0500000081937,-0.05861821172478615 +181411,907.0550000081938,-0.05861757317572598 +181412,907.0600000081939,-0.05861693475438141 +181413,907.065000008194,-0.05861629646072824 +181414,907.0700000081941,-0.05861565829474229 +181415,907.0750000081943,-0.058615020256399405 +181416,907.0800000081944,-0.058614382345675425 +181417,907.0850000081945,-0.05861374456254617 +181418,907.0900000081946,-0.05861310690698751 +181419,907.0950000081947,-0.05861246937897526 +181420,907.1000000081948,-0.0586118319784853 +181421,907.1050000081949,-0.05861119470549346 +181422,907.110000008195,-0.05861055755997562 +181423,907.1150000081951,-0.05860992054190764 +181424,907.1200000081952,-0.05860928365126539 +181425,907.1250000081953,-0.058608646888024724 +181426,907.1300000081955,-0.05860801025216154 +181427,907.1350000081956,-0.05860737374365171 +181428,907.1400000081957,-0.05860673736247112 +181429,907.1450000081958,-0.05860610110859567 +181430,907.1500000081959,-0.058605464982001254 +181431,907.155000008196,-0.05860482898266376 +181432,907.1600000081961,-0.058604193110559095 +181433,907.1650000081962,-0.05860355736566317 +181434,907.1700000081963,-0.05860292174795188 +181435,907.1750000081964,-0.05860228625740116 +181436,907.1800000081965,-0.05860165089398693 +181437,907.1850000081967,-0.058601015657685114 +181438,907.1900000081968,-0.05860038054847164 +181439,907.1950000081969,-0.05859974556632243 +181440,907.200000008197,-0.05859911071121343 +181441,907.2050000081971,-0.05859847598312058 +181442,907.2100000081972,-0.05859784138201982 +181443,907.2150000081973,-0.05859720690788711 +181444,907.2200000081974,-0.058596572560698404 +181445,907.2250000081975,-0.05859593834042966 +181446,907.2300000081976,-0.058595304247056834 +181447,907.2350000081977,-0.058594670280555906 +181448,907.2400000081979,-0.05859403644090283 +181449,907.245000008198,-0.0585934027280736 +181450,907.2500000081981,-0.05859276914204419 +181451,907.2550000081982,-0.058592135682790585 +181452,907.2600000081983,-0.05859150235028877 +181453,907.2650000081984,-0.05859086914451473 +181454,907.2700000081985,-0.05859023606544447 +181455,907.2750000081986,-0.058589603113054 +181456,907.2800000081987,-0.05858897028731931 +181457,907.2850000081988,-0.05858833758821643 +181458,907.290000008199,-0.05858770501572137 +181459,907.295000008199,-0.058587072569810134 +181460,907.3000000081992,-0.058586440250458754 +181461,907.3050000081993,-0.05858580805764325 +181462,907.3100000081994,-0.05858517599133965 +181463,907.3150000081995,-0.05858454405152402 +181464,907.3200000081996,-0.05858391223817237 +181465,907.3250000081997,-0.05858328055126076 +181466,907.3300000081998,-0.05858264899076522 +181467,907.3350000081999,-0.058582017556661814 +181468,907.3400000082,-0.058581386248926594 +181469,907.3450000082001,-0.058580755067535635 +181470,907.3500000082003,-0.05858012401246499 +181471,907.3550000082004,-0.05857949308369074 +181472,907.3600000082005,-0.058578862281188936 +181473,907.3650000082006,-0.05857823160493568 +181474,907.3700000082007,-0.05857760105490705 +181475,907.3750000082008,-0.05857697063107912 +181476,907.3800000082009,-0.05857634033342799 +181477,907.385000008201,-0.05857571016192975 +181478,907.3900000082011,-0.0585750801165605 +181479,907.3950000082012,-0.05857445019729636 +181480,907.4000000082013,-0.05857382040411342 +181481,907.4050000082015,-0.0585731907369878 +181482,907.4100000082016,-0.0585725611958956 +181483,907.4150000082017,-0.058571931780812964 +181484,907.4200000082018,-0.058571302491716 +181485,907.4250000082019,-0.05857067332858084 +181486,907.430000008202,-0.05857004429138363 +181487,907.4350000082021,-0.05856941538010048 +181488,907.4400000082022,-0.05856878659470756 +181489,907.4450000082023,-0.058568157935181005 +181490,907.4500000082024,-0.05856752940149697 +181491,907.4550000082025,-0.058566900993631606 +181492,907.4600000082027,-0.05856627271156107 +181493,907.4650000082028,-0.05856564455526152 +181494,907.4700000082029,-0.05856501652470912 +181495,907.475000008203,-0.058564388619880066 +181496,907.4800000082031,-0.0585637608407505 +181497,907.4850000082032,-0.05856313318729663 +181498,907.4900000082033,-0.05856250565949463 +181499,907.4950000082034,-0.05856187825732069 +181500,907.5000000082035,-0.05856125098075098 +181501,907.5050000082036,-0.05856062382976174 +181502,907.5100000082037,-0.058559996804329134 +181503,907.5150000082039,-0.05855936990442938 +181504,907.520000008204,-0.05855874313003868 +181505,907.5250000082041,-0.05855811648113327 +181506,907.5300000082042,-0.05855748995768934 +181507,907.5350000082043,-0.05855686355968313 +181508,907.5400000082044,-0.058556237287090855 +181509,907.5450000082045,-0.058555611139888754 +181510,907.5500000082046,-0.05855498511805306 +181511,907.5550000082047,-0.05855435922155999 +181512,907.5600000082048,-0.05855373345038582 +181513,907.565000008205,-0.05855310780450678 +181514,907.570000008205,-0.05855248228389912 +181515,907.5750000082052,-0.05855185688853911 +181516,907.5800000082053,-0.058551231618403 +181517,907.5850000082054,-0.05855060647346704 +181518,907.5900000082055,-0.05854998145370752 +181519,907.5950000082056,-0.0585493565591007 +181520,907.6000000082057,-0.05854873178962287 +181521,907.6050000082058,-0.058548107145250286 +181522,907.6100000082059,-0.05854748262595925 +181523,907.615000008206,-0.05854685823172605 +181524,907.6200000082061,-0.058546233962526985 +181525,907.6250000082063,-0.05854560981833833 +181526,907.6300000082064,-0.05854498579913641 +181527,907.6350000082065,-0.05854436190489753 +181528,907.6400000082066,-0.058543738135597975 +181529,907.6450000082067,-0.058543114491214084 +181530,907.6500000082068,-0.05854249097172218 +181531,907.6550000082069,-0.05854186757709856 +181532,907.660000008207,-0.05854124430731956 +181533,907.6650000082071,-0.05854062116236152 +181534,907.6700000082072,-0.058539998142200775 +181535,907.6750000082073,-0.05853937524681365 +181536,907.6800000082075,-0.0585387524761765 +181537,907.6850000082076,-0.05853812983026568 +181538,907.6900000082077,-0.05853750730905752 +181539,907.6950000082078,-0.0585368849125284 +181540,907.7000000082079,-0.05853626264065466 +181541,907.705000008208,-0.05853564049341266 +181542,907.7100000082081,-0.05853501847077878 +181543,907.7150000082082,-0.05853439657272941 +181544,907.7200000082083,-0.058533774799240906 +181545,907.7250000082084,-0.05853315315028965 +181546,907.7300000082085,-0.05853253162585203 +181547,907.7350000082087,-0.05853191022590443 +181548,907.7400000082088,-0.05853128895042325 +181549,907.7450000082089,-0.058530667799384886 +181550,907.750000008209,-0.05853004677276574 +181551,907.7550000082091,-0.058529425870542225 +181552,907.7600000082092,-0.05852880509269073 +181553,907.7650000082093,-0.0585281844391877 +181554,907.7700000082094,-0.05852756391000952 +181555,907.7750000082095,-0.058526943505132635 +181556,907.7800000082096,-0.05852632322453347 +181557,907.7850000082097,-0.05852570306818845 +181558,907.7900000082099,-0.05852508303607401 +181559,907.79500000821,-0.05852446312816659 +181560,907.8000000082101,-0.058523843344442626 +181561,907.8050000082102,-0.05852322368487859 +181562,907.8100000082103,-0.0585226041494509 +181563,907.8150000082104,-0.058521984738136044 +181564,907.8200000082105,-0.058521365450910454 +181565,907.8250000082106,-0.058520746287750613 +181566,907.8300000082107,-0.05852012724863299 +181567,907.8350000082108,-0.05851950833353405 +181568,907.840000008211,-0.05851888954243026 +181569,907.8450000082111,-0.058518270875298116 +181570,907.8500000082112,-0.058517652332114097 +181571,907.8550000082113,-0.058517033912854684 +181572,907.8600000082114,-0.058516415617496396 +181573,907.8650000082115,-0.0585157974460157 +181574,907.8700000082116,-0.05851517939838911 +181575,907.8750000082117,-0.058514561474593135 +181576,907.8800000082118,-0.05851394367460428 +181577,907.8850000082119,-0.058513325998399056 +181578,907.890000008212,-0.05851270844595399 +181579,907.8950000082122,-0.058512091017245596 +181580,907.9000000082123,-0.058511473712250406 +181581,907.9050000082124,-0.05851085653094495 +181582,907.9100000082125,-0.05851023947330576 +181583,907.9150000082126,-0.05850962253930938 +181584,907.9200000082127,-0.05850900572893234 +181585,907.9250000082128,-0.05850838904215119 +181586,907.9300000082129,-0.05850777247894249 +181587,907.935000008213,-0.058507156039282776 +181588,907.9400000082131,-0.058506539723148634 +181589,907.9450000082132,-0.05850592353051661 +181590,907.9500000082134,-0.05850530746136327 +181591,907.9550000082135,-0.0585046915156652 +181592,907.9600000082136,-0.05850407569339897 +181593,907.9650000082137,-0.05850345999454116 +181594,907.9700000082138,-0.05850284441906834 +181595,907.9750000082139,-0.05850222896695711 +181596,907.980000008214,-0.058501613638184055 +181597,907.9850000082141,-0.058500998432725784 +181598,907.9900000082142,-0.05850038335055889 +181599,907.9950000082143,-0.05849976839165998 +181600,908.0000000082144,-0.05849915355600567 +181601,908.0050000082146,-0.05849853884357255 +181602,908.0100000082147,-0.05849792425433725 +181603,908.0150000082148,-0.0584973097882764 +181604,908.0200000082149,-0.0584966954453666 +181605,908.025000008215,-0.05849608122558451 +181606,908.0300000082151,-0.05849546712890674 +181607,908.0350000082152,-0.05849485315530994 +181608,908.0400000082153,-0.05849423930477075 +181609,908.0450000082154,-0.058493625577265805 +181610,908.0500000082155,-0.05849301197277177 +181611,908.0550000082156,-0.05849239849126528 +181612,908.0600000082158,-0.05849178513272301 +181613,908.0650000082159,-0.05849117189712162 +181614,908.070000008216,-0.05849055878443777 +181615,908.0750000082161,-0.05848994579464813 +181616,908.0800000082162,-0.058489332927729364 +181617,908.0850000082163,-0.05848872018365817 +181618,908.0900000082164,-0.05848810756241123 +181619,908.0950000082165,-0.05848749506396523 +181620,908.1000000082166,-0.05848688268829685 +181621,908.1050000082167,-0.05848627043538278 +181622,908.1100000082168,-0.058485658305199736 +181623,908.115000008217,-0.05848504629772441 +181624,908.1200000082171,-0.05848443441293351 +181625,908.1250000082172,-0.05848382265080375 +181626,908.1300000082173,-0.05848321101131184 +181627,908.1350000082174,-0.05848259949443451 +181628,908.1400000082175,-0.05848198810014847 +181629,908.1450000082176,-0.05848137682843046 +181630,908.1500000082177,-0.0584807656792572 +181631,908.1550000082178,-0.058480154652605434 +181632,908.1600000082179,-0.058479543748451907 +181633,908.165000008218,-0.058478932966773346 +181634,908.1700000082182,-0.05847832230754651 +181635,908.1750000082183,-0.05847771177074815 +181636,908.1800000082184,-0.05847710135635501 +181637,908.1850000082185,-0.05847649106434386 +181638,908.1900000082186,-0.058475880894691475 +181639,908.1950000082187,-0.058475270847374604 +181640,908.2000000082188,-0.05847466092237004 +181641,908.2050000082189,-0.058474051119654535 +181642,908.210000008219,-0.05847344143920489 +181643,908.2150000082191,-0.058472831880997875 +181644,908.2200000082192,-0.05847222244501029 +181645,908.2250000082194,-0.058471613131218916 +181646,908.2300000082195,-0.058471003939600565 +181647,908.2350000082196,-0.058470394870132024 +181648,908.2400000082197,-0.05846978592279011 +181649,908.2450000082198,-0.058469177097551624 +181650,908.2500000082199,-0.05846856839439337 +181651,908.25500000822,-0.058467959813292184 +181652,908.2600000082201,-0.05846735135422487 +181653,908.2650000082202,-0.05846674301716827 +181654,908.2700000082203,-0.058466134802099196 +181655,908.2750000082204,-0.05846552670899449 +181656,908.2800000082206,-0.05846491873783099 +181657,908.2850000082207,-0.05846431088858553 +181658,908.2900000082208,-0.058463703161234976 +181659,908.2950000082209,-0.058463095555756156 +181660,908.300000008221,-0.05846248807212594 +181661,908.3050000082211,-0.05846188071032117 +181662,908.3100000082212,-0.058461273470318716 +181663,908.3150000082213,-0.058460666352095444 +181664,908.3200000082214,-0.058460059355628216 +181665,908.3250000082215,-0.05845945248089392 +181666,908.3300000082216,-0.05845884572786942 +181667,908.3350000082218,-0.0584582390965316 +181668,908.3400000082219,-0.05845763258685734 +181669,908.345000008222,-0.05845702619882356 +181670,908.3500000082221,-0.05845641993240712 +181671,908.3550000082222,-0.05845581378758493 +181672,908.3600000082223,-0.05845520776433391 +181673,908.3650000082224,-0.05845460186263094 +181674,908.3700000082225,-0.05845399608245295 +181675,908.3750000082226,-0.05845339042377684 +181676,908.3800000082227,-0.058452784886579526 +181677,908.3850000082228,-0.05845217947083793 +181678,908.390000008223,-0.058451574176529006 +181679,908.3950000082231,-0.05845096900362965 +181680,908.4000000082232,-0.05845036395211682 +181681,908.4050000082233,-0.05844975902196744 +181682,908.4100000082234,-0.058449154213158466 +181683,908.4150000082235,-0.05844854952566684 +181684,908.4200000082236,-0.0584479449594695 +181685,908.4250000082237,-0.058447340514543415 +181686,908.4300000082238,-0.05844673619086554 +181687,908.4350000082239,-0.05844613198841283 +181688,908.440000008224,-0.05844552790716226 +181689,908.4450000082242,-0.058444923947090804 +181690,908.4500000082243,-0.05844432010817542 +181691,908.4550000082244,-0.058443716390393106 +181692,908.4600000082245,-0.058443112793720844 +181693,908.4650000082246,-0.058442509318135605 +181694,908.4700000082247,-0.058441905963614406 +181695,908.4750000082248,-0.05844130273013421 +181696,908.4800000082249,-0.05844069961767204 +181697,908.485000008225,-0.05844009662620489 +181698,908.4900000082251,-0.05843949375570976 +181699,908.4950000082252,-0.058438891006163673 +181700,908.5000000082254,-0.05843828837754365 +181701,908.5050000082255,-0.05843768586982668 +181702,908.5100000082256,-0.05843708348298982 +181703,908.5150000082257,-0.05843648121701008 +181704,908.5200000082258,-0.058435879071864504 +181705,908.5250000082259,-0.058435277047530106 +181706,908.530000008226,-0.05843467514398394 +181707,908.5350000082261,-0.05843407336120305 +181708,908.5400000082262,-0.05843347169916447 +181709,908.5450000082263,-0.058432870157845276 +181710,908.5500000082264,-0.0584322687372225 +181711,908.5550000082266,-0.0584316674372732 +181712,908.5600000082267,-0.058431066257974465 +181713,908.5650000082268,-0.058430465199303346 +181714,908.5700000082269,-0.058429864261236905 +181715,908.575000008227,-0.05842926344375222 +181716,908.5800000082271,-0.05842866274682639 +181717,908.5850000082272,-0.05842806217043648 +181718,908.5900000082273,-0.058427461714559585 +181719,908.5950000082274,-0.058426861379172794 +181720,908.6000000082275,-0.058426261164253195 +181721,908.6050000082276,-0.05842566106977789 +181722,908.6100000082278,-0.05842506109572399 +181723,908.6150000082279,-0.058424461242068605 +181724,908.620000008228,-0.05842386150878883 +181725,908.6250000082281,-0.0584232618958618 +181726,908.6300000082282,-0.05842266240326462 +181727,908.6350000082283,-0.05842206303097443 +181728,908.6400000082284,-0.058421463778968334 +181729,908.6450000082285,-0.058420864647223486 +181730,908.6500000082286,-0.058420265635717006 +181731,908.6550000082287,-0.05841966674442602 +181732,908.6600000082288,-0.058419067973327715 +181733,908.665000008229,-0.058418469322399205 +181734,908.6700000082291,-0.05841787079161764 +181735,908.6750000082292,-0.058417272380960186 +181736,908.6800000082293,-0.058416674090404005 +181737,908.6850000082294,-0.058416075919926244 +181738,908.6900000082295,-0.05841547786950409 +181739,908.6950000082296,-0.0584148799391147 +181740,908.7000000082297,-0.058414282128735256 +181741,908.7050000082298,-0.05841368443834294 +181742,908.7100000082299,-0.05841308686791493 +181743,908.71500000823,-0.058412489417428416 +181744,908.7200000082302,-0.05841189208686059 +181745,908.7250000082303,-0.05841129487618865 +181746,908.7300000082304,-0.058410697785389785 +181747,908.7350000082305,-0.05841010081444121 +181748,908.7400000082306,-0.058409503963320106 +181749,908.7450000082307,-0.05840890723200372 +181750,908.7500000082308,-0.058408310620469236 +181751,908.7550000082309,-0.058407714128693895 +181752,908.760000008231,-0.058407117756654914 +181753,908.7650000082311,-0.05840652150432952 +181754,908.7700000082312,-0.058405925371694936 +181755,908.7750000082314,-0.05840532935872841 +181756,908.7800000082315,-0.058404733465407165 +181757,908.7850000082316,-0.058404137691708456 +181758,908.7900000082317,-0.05840354203760953 +181759,908.7950000082318,-0.05840294650308764 +181760,908.8000000082319,-0.05840235108812003 +181761,908.805000008232,-0.05840175579268396 +181762,908.8100000082321,-0.0584011606167567 +181763,908.8150000082322,-0.05840056556031552 +181764,908.8200000082323,-0.05839997062333767 +181765,908.8250000082325,-0.05839937580580045 +181766,908.8300000082326,-0.05839878110768112 +181767,908.8350000082327,-0.05839818652895697 +181768,908.8400000082328,-0.0583975920696053 +181769,908.8450000082329,-0.05839699772960337 +181770,908.850000008233,-0.0583964035089285 +181771,908.8550000082331,-0.05839580940755798 +181772,908.8600000082332,-0.058395215425469105 +181773,908.8650000082333,-0.058394621562639186 +181774,908.8700000082334,-0.05839402781904555 +181775,908.8750000082335,-0.058393434194665486 +181776,908.8800000082337,-0.05839284068947633 +181777,908.8850000082338,-0.058392247303455394 +181778,908.8900000082339,-0.05839165403658001 +181779,908.895000008234,-0.0583910608888275 +181780,908.9000000082341,-0.05839046786017521 +181781,908.9050000082342,-0.058389874950600475 +181782,908.9100000082343,-0.05838928216008063 +181783,908.9150000082344,-0.05838868948859302 +181784,908.9200000082345,-0.058388096936115005 +181785,908.9250000082346,-0.05838750450262393 +181786,908.9300000082347,-0.058386912188097155 +181787,908.9350000082349,-0.058386319992512044 +181788,908.940000008235,-0.05838572791584596 +181789,908.9450000082351,-0.058385135958076276 +181790,908.9500000082352,-0.058384544119180364 +181791,908.9550000082353,-0.058383952399135595 +181792,908.9600000082354,-0.058383360797919365 +181793,908.9650000082355,-0.05838276931550905 +181794,908.9700000082356,-0.058382177951882046 +181795,908.9750000082357,-0.05838158670701573 +181796,908.9800000082358,-0.05838099558088752 +181797,908.9850000082359,-0.05838040457347479 +181798,908.990000008236,-0.058379813684754964 +181799,908.9950000082362,-0.05837922291470545 +181800,909.0000000082363,-0.05837863226330367 +181801,909.0050000082364,-0.05837804173052703 +181802,909.0100000082365,-0.05837745131635295 +181803,909.0150000082366,-0.058376861020758855 +181804,909.0200000082367,-0.05837627084372217 +181805,909.0250000082368,-0.058375680785220325 +181806,909.0300000082369,-0.05837509084523077 +181807,909.035000008237,-0.05837450102373094 +181808,909.0400000082371,-0.05837391132069829 +181809,909.0450000082373,-0.05837332173611024 +181810,909.0500000082374,-0.058372732269944265 +181811,909.0550000082375,-0.058372142922177815 +181812,909.0600000082376,-0.058371553692788354 +181813,909.0650000082377,-0.058370964581753344 +181814,909.0700000082378,-0.058370375589050255 +181815,909.0750000082379,-0.058369786714656556 +181816,909.080000008238,-0.05836919795854972 +181817,909.0850000082381,-0.05836860932070724 +181818,909.0900000082382,-0.058368020801106583 +181819,909.0950000082383,-0.05836743239972525 +181820,909.1000000082385,-0.05836684411654072 +181821,909.1050000082386,-0.05836625595153049 +181822,909.1100000082387,-0.05836566790467207 +181823,909.1150000082388,-0.05836507997594295 +181824,909.1200000082389,-0.05836449216532064 +181825,909.125000008239,-0.05836390447278267 +181826,909.1300000082391,-0.058363316898306525 +181827,909.1350000082392,-0.058362729441869744 +181828,909.1400000082393,-0.05836214210344986 +181829,909.1450000082394,-0.05836155488302437 +181830,909.1500000082395,-0.05836096778057083 +181831,909.1550000082397,-0.058360380796066764 +181832,909.1600000082398,-0.058359793929489714 +181833,909.1650000082399,-0.05835920718081721 +181834,909.17000000824,-0.058358620550026816 +181835,909.1750000082401,-0.05835803403709608 +181836,909.1800000082402,-0.05835744764200254 +181837,909.1850000082403,-0.05835686136472377 +181838,909.1900000082404,-0.058356275205237326 +181839,909.1950000082405,-0.05835568916352078 +181840,909.2000000082406,-0.058355103239551696 +181841,909.2050000082407,-0.05835451743330765 +181842,909.2100000082409,-0.05835393174476622 +181843,909.215000008241,-0.05835334617390498 +181844,909.2200000082411,-0.05835276072070153 +181845,909.2250000082412,-0.05835217538513344 +181846,909.2300000082413,-0.058351590167178315 +181847,909.2350000082414,-0.05835100506681375 +181848,909.2400000082415,-0.05835042008401736 +181849,909.2450000082416,-0.05834983521876673 +181850,909.2500000082417,-0.058349250471039484 +181851,909.2550000082418,-0.058348665840813226 +181852,909.260000008242,-0.05834808132806558 +181853,909.265000008242,-0.05834749693277415 +181854,909.2700000082422,-0.05834691265491658 +181855,909.2750000082423,-0.05834632849447049 +181856,909.2800000082424,-0.058345744451413495 +181857,909.2850000082425,-0.05834516052572326 +181858,909.2900000082426,-0.058344576717377424 +181859,909.2950000082427,-0.05834399302635362 +181860,909.3000000082428,-0.05834340945262949 +181861,909.3050000082429,-0.058342825996182686 +181862,909.310000008243,-0.05834224265699088 +181863,909.3150000082431,-0.058341659435031716 +181864,909.3200000082433,-0.05834107633028286 +181865,909.3250000082434,-0.05834049334272198 +181866,909.3300000082435,-0.05833991047232676 +181867,909.3350000082436,-0.05833932771907487 +181868,909.3400000082437,-0.05833874508294399 +181869,909.3450000082438,-0.058338162563911784 +181870,909.3500000082439,-0.058337580161955956 +181871,909.355000008244,-0.05833699787705419 +181872,909.3600000082441,-0.05833641570918418 +181873,909.3650000082442,-0.058335833658323635 +181874,909.3700000082443,-0.05833525172445025 +181875,909.3750000082445,-0.05833466990754173 +181876,909.3800000082446,-0.058334088207575775 +181877,909.3850000082447,-0.05833350662453013 +181878,909.3900000082448,-0.05833292515838248 +181879,909.3950000082449,-0.05833234380911057 +181880,909.400000008245,-0.05833176257669211 +181881,909.4050000082451,-0.05833118146110485 +181882,909.4100000082452,-0.058330600462326486 +181883,909.4150000082453,-0.05833001958033479 +181884,909.4200000082454,-0.05832943881510749 +181885,909.4250000082455,-0.05832885816662234 +181886,909.4300000082457,-0.058328277634857074 +181887,909.4350000082458,-0.058327697219789455 +181888,909.4400000082459,-0.058327116921397235 +181889,909.445000008246,-0.058326536739658166 +181890,909.4500000082461,-0.05832595667455003 +181891,909.4550000082462,-0.05832537672605059 +181892,909.4600000082463,-0.05832479689413762 +181893,909.4650000082464,-0.058324217178788884 +181894,909.4700000082465,-0.05832363757998218 +181895,909.4750000082466,-0.058323058097695266 +181896,909.4800000082467,-0.05832247873190596 +181897,909.4850000082469,-0.05832189948259203 +181898,909.490000008247,-0.05832132034973128 +181899,909.4950000082471,-0.058320741333301514 +181900,909.5000000082472,-0.05832016243328053 +181901,909.5050000082473,-0.05831958364964614 +181902,909.5100000082474,-0.058319004982376146 +181903,909.5150000082475,-0.05831842643144836 +181904,909.5200000082476,-0.058317847996840616 +181905,909.5250000082477,-0.05831726967853072 +181906,909.5300000082478,-0.05831669147649652 +181907,909.535000008248,-0.05831611339071582 +181908,909.5400000082481,-0.05831553542116646 +181909,909.5450000082482,-0.0583149575678263 +181910,909.5500000082483,-0.05831437983067316 +181911,909.5550000082484,-0.05831380220968489 +181912,909.5600000082485,-0.05831322470483934 +181913,909.5650000082486,-0.058312647316114366 +181914,909.5700000082487,-0.058312070043487825 +181915,909.5750000082488,-0.05831149288693757 +181916,909.5800000082489,-0.05831091584644148 +181917,909.585000008249,-0.05831033892197741 +181918,909.5900000082491,-0.058309762113523234 +181919,909.5950000082493,-0.05830918542105684 +181920,909.6000000082494,-0.05830860884455609 +181921,909.6050000082495,-0.05830803238399889 +181922,909.6100000082496,-0.05830745603936312 +181923,909.6150000082497,-0.058306879810626655 +181924,909.6200000082498,-0.0583063036977674 +181925,909.6250000082499,-0.05830572770076327 +181926,909.63000000825,-0.05830515181959216 +181927,909.6350000082501,-0.05830457605423198 +181928,909.6400000082502,-0.058304000404660626 +181929,909.6450000082503,-0.05830342487085602 +181930,909.6500000082505,-0.05830284945279608 +181931,909.6550000082506,-0.058302274150458744 +181932,909.6600000082507,-0.058301698963821924 +181933,909.6650000082508,-0.05830112389286354 +181934,909.6700000082509,-0.05830054893756156 +181935,909.675000008251,-0.058299974097893885 +181936,909.6800000082511,-0.05829939937383847 +181937,909.6850000082512,-0.05829882476537327 +181938,909.6900000082513,-0.058298250272476225 +181939,909.6950000082514,-0.058297675895125294 +181940,909.7000000082515,-0.058297101633298425 +181941,909.7050000082517,-0.05829652748697359 +181942,909.7100000082518,-0.05829595345612874 +181943,909.7150000082519,-0.05829537954074186 +181944,909.720000008252,-0.05829480574079092 +181945,909.7250000082521,-0.05829423205625389 +181946,909.7300000082522,-0.05829365848710875 +181947,909.7350000082523,-0.05829308503333347 +181948,909.7400000082524,-0.05829251169490607 +181949,909.7450000082525,-0.058291938471804514 +181950,909.7500000082526,-0.05829136536400681 +181951,909.7550000082528,-0.05829079237149095 +181952,909.7600000082529,-0.05829021949423496 +181953,909.765000008253,-0.05828964673221682 +181954,909.7700000082531,-0.058289074085414554 +181955,909.7750000082532,-0.058288501553806174 +181956,909.7800000082533,-0.05828792913736969 +181957,909.7850000082534,-0.05828735683608314 +181958,909.7900000082535,-0.05828678464992453 +181959,909.7950000082536,-0.05828621257887191 +181960,909.8000000082537,-0.058285640622903305 +181961,909.8050000082538,-0.058285068781996754 +181962,909.810000008254,-0.058284497056130306 +181963,909.8150000082541,-0.05828392544528199 +181964,909.8200000082542,-0.058283353949429864 +181965,909.8250000082543,-0.05828278256855198 +181966,909.8300000082544,-0.0582822113026264 +181967,909.8350000082545,-0.05828164015163117 +181968,909.8400000082546,-0.05828106911554436 +181969,909.8450000082547,-0.058280498194344034 +181970,909.8500000082548,-0.05827992738800829 +181971,909.8550000082549,-0.05827935669651518 +181972,909.860000008255,-0.058278786119842794 +181973,909.8650000082552,-0.0582782156579692 +181974,909.8700000082553,-0.058277645310872504 +181975,909.8750000082554,-0.058277075078530784 +181976,909.8800000082555,-0.05827650496092214 +181977,909.8850000082556,-0.05827593495802467 +181978,909.8900000082557,-0.058275365069816475 +181979,909.8950000082558,-0.058274795296275654 +181980,909.9000000082559,-0.05827422563738034 +181981,909.905000008256,-0.05827365609310863 +181982,909.9100000082561,-0.058273086663438646 +181983,909.9150000082562,-0.0582725173483485 +181984,909.9200000082564,-0.05827194814781633 +181985,909.9250000082565,-0.05827137906182027 +181986,909.9300000082566,-0.05827081009033843 +181987,909.9350000082567,-0.05827024123334897 +181988,909.9400000082568,-0.05826967249083002 +181989,909.9450000082569,-0.05826910386275972 +181990,909.950000008257,-0.05826853534911622 +181991,909.9550000082571,-0.05826796694987769 +181992,909.9600000082572,-0.05826739866502226 +181993,909.9650000082573,-0.0582668304945281 +181994,909.9700000082574,-0.05826626243837338 +181995,909.9750000082576,-0.058265694496536256 +181996,909.9800000082577,-0.05826512666899491 +181997,909.9850000082578,-0.05826455895572751 +181998,909.9900000082579,-0.05826399135671224 +181999,909.995000008258,-0.058263423871927275 +182000,910.0000000082581,-0.058262856501350796 +182001,910.0050000082582,-0.05826228924496101 +182002,910.0100000082583,-0.0582617221027361 +182003,910.0150000082584,-0.05826115507465427 +182004,910.0200000082585,-0.05826058816069372 +182005,910.0250000082586,-0.05826002136083264 +182006,910.0300000082588,-0.058259454675049255 +182007,910.0350000082589,-0.05825888810332178 +182008,910.040000008259,-0.05825832164562843 +182009,910.0450000082591,-0.05825775530194741 +182010,910.0500000082592,-0.058257189072256965 +182011,910.0550000082593,-0.05825662295653531 +182012,910.0600000082594,-0.05825605695476068 +182013,910.0650000082595,-0.058255491066911316 +182014,910.0700000082596,-0.058254925292965457 +182015,910.0750000082597,-0.05825435963290133 +182016,910.0800000082598,-0.0582537940866972 +182017,910.08500000826,-0.05825322865433131 +182018,910.0900000082601,-0.05825266333578192 +182019,910.0950000082602,-0.05825209813102728 +182020,910.1000000082603,-0.058251533040045655 +182021,910.1050000082604,-0.058250968062815316 +182022,910.1100000082605,-0.05825040319931452 +182023,910.1150000082606,-0.05824983844952155 +182024,910.1200000082607,-0.05824927381341467 +182025,910.1250000082608,-0.058248709290972187 +182026,910.1300000082609,-0.05824814488217237 +182027,910.135000008261,-0.05824758058699351 +182028,910.1400000082612,-0.0582470164054139 +182029,910.1450000082613,-0.05824645233741184 +182030,910.1500000082614,-0.05824588838296562 +182031,910.1550000082615,-0.05824532454205354 +182032,910.1600000082616,-0.05824476081465391 +182033,910.1650000082617,-0.058244197200745064 +182034,910.1700000082618,-0.058243633700305296 +182035,910.1750000082619,-0.058243070313312925 +182036,910.180000008262,-0.058242507039746275 +182037,910.1850000082621,-0.058241943879583674 +182038,910.1900000082622,-0.05824138083280346 +182039,910.1950000082624,-0.058240817899383956 +182040,910.2000000082625,-0.0582402550793035 +182041,910.2050000082626,-0.05823969237254043 +182042,910.2100000082627,-0.05823912977907311 +182043,910.2150000082628,-0.05823856729887987 +182044,910.2200000082629,-0.05823800493193908 +182045,910.225000008263,-0.05823744267822906 +182046,910.2300000082631,-0.058236880537728214 +182047,910.2350000082632,-0.05823631851041488 +182048,910.2400000082633,-0.05823575659626744 +182049,910.2450000082634,-0.05823519479526425 +182050,910.2500000082636,-0.0582346331073837 +182051,910.2550000082637,-0.05823407153260416 +182052,910.2600000082638,-0.05823351007090402 +182053,910.2650000082639,-0.05823294872226165 +182054,910.270000008264,-0.05823238748665547 +182055,910.2750000082641,-0.05823182636406385 +182056,910.2800000082642,-0.0582312653544652 +182057,910.2850000082643,-0.058230704457837915 +182058,910.2900000082644,-0.058230143674160406 +182059,910.2950000082645,-0.05822958300341108 +182060,910.3000000082646,-0.05822902244556835 +182061,910.3050000082648,-0.05822846200061062 +182062,910.3100000082649,-0.058227901668516324 +182063,910.315000008265,-0.05822734144926389 +182064,910.3200000082651,-0.05822678134283174 +182065,910.3250000082652,-0.05822622134919831 +182066,910.3300000082653,-0.05822566146834203 +182067,910.3350000082654,-0.05822510170024134 +182068,910.3400000082655,-0.058224542044874684 +182069,910.3450000082656,-0.05822398250222051 +182070,910.3500000082657,-0.058223423072257266 +182071,910.3550000082658,-0.0582228637549634 +182072,910.360000008266,-0.05822230455031738 +182073,910.3650000082661,-0.05822174545829766 +182074,910.3700000082662,-0.058221186478882726 +182075,910.3750000082663,-0.05822062761205103 +182076,910.3800000082664,-0.05822006885778105 +182077,910.3850000082665,-0.05821951021605125 +182078,910.3900000082666,-0.05821895168684012 +182079,910.3950000082667,-0.058218393270126144 +182080,910.4000000082668,-0.05821783496588782 +182081,910.4050000082669,-0.05821727677410363 +182082,910.410000008267,-0.05821671869475206 +182083,910.4150000082672,-0.058216160727811626 +182084,910.4200000082673,-0.05821560287326082 +182085,910.4250000082674,-0.058215045131078155 +182086,910.4300000082675,-0.05821448750124215 +182087,910.4350000082676,-0.05821392998373131 +182088,910.4400000082677,-0.058213372578524145 +182089,910.4450000082678,-0.05821281528559919 +182090,910.4500000082679,-0.05821225810493496 +182091,910.455000008268,-0.058211701036509994 +182092,910.4600000082681,-0.05821114408030282 +182093,910.4650000082682,-0.05821058723629197 +182094,910.4700000082684,-0.05821003050445599 +182095,910.4750000082685,-0.05820947388477342 +182096,910.4800000082686,-0.05820891737722282 +182097,910.4850000082687,-0.05820836098178273 +182098,910.4900000082688,-0.05820780469843172 +182099,910.4950000082689,-0.05820724852714832 +182100,910.500000008269,-0.05820669246791111 +182101,910.5050000082691,-0.05820613652069866 +182102,910.5100000082692,-0.058205580685489554 +182103,910.5150000082693,-0.058205024962262326 +182104,910.5200000082694,-0.058204469350995595 +182105,910.5250000082696,-0.05820391385166792 +182106,910.5300000082697,-0.05820335846425789 +182107,910.5350000082698,-0.0582028031887441 +182108,910.5400000082699,-0.05820224802510514 +182109,910.54500000827,-0.0582016929733196 +182110,910.5500000082701,-0.05820113803336608 +182111,910.5550000082702,-0.0582005832052232 +182112,910.5600000082703,-0.05820002848886955 +182113,910.5650000082704,-0.05819947388428375 +182114,910.5700000082705,-0.058198919391444406 +182115,910.5750000082706,-0.05819836501033015 +182116,910.5800000082708,-0.05819781074091959 +182117,910.5850000082709,-0.05819725658319138 +182118,910.590000008271,-0.05819670253712411 +182119,910.5950000082711,-0.05819614860269645 +182120,910.6000000082712,-0.05819559477988703 +182121,910.6050000082713,-0.05819504106867447 +182122,910.6100000082714,-0.058194487469037444 +182123,910.6150000082715,-0.05819393398095457 +182124,910.6200000082716,-0.05819338060440452 +182125,910.6250000082717,-0.05819282733936595 +182126,910.6300000082718,-0.05819227418581751 +182127,910.635000008272,-0.05819172114373788 +182128,910.6400000082721,-0.058191168213105715 +182129,910.6450000082722,-0.05819061539389968 +182130,910.6500000082723,-0.05819006268609846 +182131,910.6550000082724,-0.05818951008968073 +182132,910.6600000082725,-0.058188957604625176 +182133,910.6650000082726,-0.05818840523091048 +182134,910.6700000082727,-0.05818785296851533 +182135,910.6750000082728,-0.058187300817418436 +182136,910.6800000082729,-0.05818674877759847 +182137,910.685000008273,-0.05818619684903415 +182138,910.6900000082732,-0.05818564503170417 +182139,910.6950000082733,-0.058185093325587245 +182140,910.7000000082734,-0.05818454173066209 +182141,910.7050000082735,-0.058183990246907416 +182142,910.7100000082736,-0.058183438874301927 +182143,910.7150000082737,-0.05818288761282438 +182144,910.7200000082738,-0.058182336462453466 +182145,910.7250000082739,-0.05818178542316794 +182146,910.730000008274,-0.05818123449494653 +182147,910.7350000082741,-0.058180683677767964 +182148,910.7400000082743,-0.05818013297161099 +182149,910.7450000082744,-0.05817958237645436 +182150,910.7500000082745,-0.05817903189227683 +182151,910.7550000082746,-0.058178481519057114 +182152,910.7600000082747,-0.058177931256774 +182153,910.7650000082748,-0.05817738110540625 +182154,910.7700000082749,-0.05817683106493263 +182155,910.775000008275,-0.058176281135331895 +182156,910.7800000082751,-0.05817573131658282 +182157,910.7850000082752,-0.05817518160866416 +182158,910.7900000082753,-0.05817463201155473 +182159,910.7950000082755,-0.0581740825252333 +182160,910.8000000082756,-0.05817353314967865 +182161,910.8050000082757,-0.05817298388486957 +182162,910.8100000082758,-0.058172434730784844 +182163,910.8150000082759,-0.058171885687403294 +182164,910.820000008276,-0.058171336754703706 +182165,910.8250000082761,-0.05817078793266488 +182166,910.8300000082762,-0.058170239221265636 +182167,910.8350000082763,-0.05816969062048477 +182168,910.8400000082764,-0.05816914213030111 +182169,910.8450000082765,-0.05816859375069348 +182170,910.8500000082767,-0.05816804548164069 +182171,910.8550000082768,-0.05816749732312157 +182172,910.8600000082769,-0.05816694927511496 +182173,910.865000008277,-0.058166401337599684 +182174,910.8700000082771,-0.05816585351055459 +182175,910.8750000082772,-0.0581653057939585 +182176,910.8800000082773,-0.05816475818779027 +182177,910.8850000082774,-0.05816421069202876 +182178,910.8900000082775,-0.05816366330665281 +182179,910.8950000082776,-0.05816311603164128 +182180,910.9000000082777,-0.05816256886697303 +182181,910.9050000082779,-0.05816202181262692 +182182,910.910000008278,-0.05816147486858182 +182183,910.9150000082781,-0.05816092803481661 +182184,910.9200000082782,-0.05816038131131015 +182185,910.9250000082783,-0.05815983469804133 +182186,910.9300000082784,-0.05815928819498902 +182187,910.9350000082785,-0.05815874180213211 +182188,910.9400000082786,-0.05815819551944949 +182189,910.9450000082787,-0.05815764934692007 +182190,910.9500000082788,-0.05815710328452272 +182191,910.955000008279,-0.05815655733223636 +182192,910.960000008279,-0.05815601149003989 +182193,910.9650000082792,-0.058155465757912195 +182194,910.9700000082793,-0.05815492013583221 +182195,910.9750000082794,-0.058154374623778864 +182196,910.9800000082795,-0.05815382922173105 +182197,910.9850000082796,-0.0581532839296677 +182198,910.9900000082797,-0.058152738747567725 +182199,910.9950000082798,-0.05815219367541007 +182200,911.0000000082799,-0.05815164871317369 +182201,911.00500000828,-0.05815110386083748 +182202,911.0100000082801,-0.058150559118380414 +182203,911.0150000082803,-0.05815001448578143 +182204,911.0200000082804,-0.05814946996301946 +182205,911.0250000082805,-0.058148925550073456 +182206,911.0300000082806,-0.0581483812469224 +182207,911.0350000082807,-0.05814783705354523 +182208,911.0400000082808,-0.05814729296992091 +182209,911.0450000082809,-0.058146748996028425 +182210,911.050000008281,-0.05814620513184673 +182211,911.0550000082811,-0.0581456613773548 +182212,911.0600000082812,-0.0581451177325316 +182213,911.0650000082813,-0.058144574197356136 +182214,911.0700000082815,-0.05814403077180738 +182215,911.0750000082816,-0.05814348745586433 +182216,911.0800000082817,-0.05814294424950597 +182217,911.0850000082818,-0.058142401152711305 +182218,911.0900000082819,-0.05814185816545931 +182219,911.095000008282,-0.05814131528772901 +182220,911.1000000082821,-0.05814077251949941 +182221,911.1050000082822,-0.058140229860749515 +182222,911.1100000082823,-0.05813968731145835 +182223,911.1150000082824,-0.05813914487160493 +182224,911.1200000082825,-0.05813860254116827 +182225,911.1250000082827,-0.058138060320127395 +182226,911.1300000082828,-0.058137518208461345 +182227,911.1350000082829,-0.058136976206149146 +182228,911.140000008283,-0.05813643431316983 +182229,911.1450000082831,-0.05813589252950244 +182230,911.1500000082832,-0.05813535085512602 +182231,911.1550000082833,-0.05813480929001962 +182232,911.1600000082834,-0.05813426783416229 +182233,911.1650000082835,-0.05813372648753308 +182234,911.1700000082836,-0.058133185250111054 +182235,911.1750000082837,-0.05813264412187528 +182236,911.1800000082839,-0.058132103102804804 +182237,911.185000008284,-0.05813156219287872 +182238,911.1900000082841,-0.05813102139207609 +182239,911.1950000082842,-0.058130480700375985 +182240,911.2000000082843,-0.05812994011775749 +182241,911.2050000082844,-0.05812939964419969 +182242,911.2100000082845,-0.05812885927968168 +182243,911.2150000082846,-0.05812831902418253 +182244,911.2200000082847,-0.05812777887768136 +182245,911.2250000082848,-0.05812723884015726 +182246,911.230000008285,-0.05812669891158933 +182247,911.235000008285,-0.05812615909195667 +182248,911.2400000082852,-0.0581256193812384 +182249,911.2450000082853,-0.05812507977941361 +182250,911.2500000082854,-0.058124540286461454 +182251,911.2550000082855,-0.058124000902361035 +182252,911.2600000082856,-0.05812346162709148 +182253,911.2650000082857,-0.0581229224606319 +182254,911.2700000082858,-0.058122383402961435 +182255,911.2750000082859,-0.05812184445405923 +182256,911.280000008286,-0.058121305613904425 +182257,911.2850000082861,-0.058120766882476145 +182258,911.2900000082863,-0.05812022825975356 +182259,911.2950000082864,-0.058119689745715804 +182260,911.3000000082865,-0.05811915134034203 +182261,911.3050000082866,-0.058118613043611406 +182262,911.3100000082867,-0.058118074855503084 +182263,911.3150000082868,-0.058117536775996216 +182264,911.3200000082869,-0.058116998805069986 +182265,911.325000008287,-0.05811646094270357 +182266,911.3300000082871,-0.05811592318887614 +182267,911.3350000082872,-0.05811538554356686 +182268,911.3400000082873,-0.05811484800675493 +182269,911.3450000082875,-0.05811431057841954 +182270,911.3500000082876,-0.05811377325853985 +182271,911.3550000082877,-0.05811323604709509 +182272,911.3600000082878,-0.058112698944064435 +182273,911.3650000082879,-0.05811216194942709 +182274,911.370000008288,-0.05811162506316227 +182275,911.3750000082881,-0.05811108828524917 +182276,911.3800000082882,-0.05811055161566701 +182277,911.3850000082883,-0.058110015054394996 +182278,911.3900000082884,-0.05810947860141235 +182279,911.3950000082885,-0.0581089422566983 +182280,911.4000000082887,-0.05810840602023207 +182281,911.4050000082888,-0.058107869891992875 +182282,911.4100000082889,-0.05810733387195998 +182283,911.415000008289,-0.0581067979601126 +182284,911.4200000082891,-0.05810626215642998 +182285,911.4250000082892,-0.05810572646089136 +182286,911.4300000082893,-0.058105190873475994 +182287,911.4350000082894,-0.05810465539416313 +182288,911.4400000082895,-0.058104120022932026 +182289,911.4450000082896,-0.05810358475976195 +182290,911.4500000082897,-0.05810304960463215 +182291,911.4550000082899,-0.058102514557521884 +182292,911.46000000829,-0.05810197961841045 +182293,911.4650000082901,-0.05810144478727711 +182294,911.4700000082902,-0.05810091006410113 +182295,911.4750000082903,-0.0581003754488618 +182296,911.4800000082904,-0.0580998409415384 +182297,911.4850000082905,-0.05809930654211023 +182298,911.4900000082906,-0.05809877225055657 +182299,911.4950000082907,-0.05809823806685671 +182300,911.5000000082908,-0.05809770399098996 +182301,911.505000008291,-0.058097170022935615 +182302,911.5100000082911,-0.05809663616267299 +182303,911.5150000082912,-0.058096102410181386 +182304,911.5200000082913,-0.05809556876544012 +182305,911.5250000082914,-0.058095035228428515 +182306,911.5300000082915,-0.05809450179912588 +182307,911.5350000082916,-0.058093968477511554 +182308,911.5400000082917,-0.05809343526356484 +182309,911.5450000082918,-0.058092902157265106 +182310,911.5500000082919,-0.05809236915859165 +182311,911.555000008292,-0.05809183626752383 +182312,911.5600000082921,-0.05809130348404099 +182313,911.5650000082923,-0.05809077080812247 +182314,911.5700000082924,-0.05809023823974762 +182315,911.5750000082925,-0.058089705778895794 +182316,911.5800000082926,-0.05808917342554635 +182317,911.5850000082927,-0.05808864117967865 +182318,911.5900000082928,-0.05808810904127205 +182319,911.5950000082929,-0.058087577010305924 +182320,911.600000008293,-0.05808704508675963 +182321,911.6050000082931,-0.05808651327061256 +182322,911.6100000082932,-0.058085981561844094 +182323,911.6150000082934,-0.058085449960433605 +182324,911.6200000082935,-0.05808491846636048 +182325,911.6250000082936,-0.0580843870796041 +182326,911.6300000082937,-0.05808385580014388 +182327,911.6350000082938,-0.058083324627959204 +182328,911.6400000082939,-0.05808279356302947 +182329,911.645000008294,-0.058082262605334084 +182330,911.6500000082941,-0.05808173175485244 +182331,911.6550000082942,-0.05808120101156398 +182332,911.6600000082943,-0.0580806703754481 +182333,911.6650000082944,-0.058080139846484205 +182334,911.6700000082946,-0.058079609424651735 +182335,911.6750000082947,-0.058079079109930105 +182336,911.6800000082948,-0.058078548902298764 +182337,911.6850000082949,-0.058078018801737116 +182338,911.690000008295,-0.058077488808224616 +182339,911.6950000082951,-0.058076958921740696 +182340,911.7000000082952,-0.05807642914226482 +182341,911.7050000082953,-0.058075899469776406 +182342,911.7100000082954,-0.058075369904254916 +182343,911.7150000082955,-0.058074840445679815 +182344,911.7200000082956,-0.05807431109403054 +182345,911.7250000082958,-0.05807378184928656 +182346,911.7300000082959,-0.05807325271142736 +182347,911.735000008296,-0.05807272368043238 +182348,911.7400000082961,-0.05807219475628111 +182349,911.7450000082962,-0.05807166593895302 +182350,911.7500000082963,-0.05807113722842759 +182351,911.7550000082964,-0.0580706086246843 +182352,911.7600000082965,-0.05807008012770262 +182353,911.7650000082966,-0.05806955173746208 +182354,911.7700000082967,-0.05806902345394215 +182355,911.7750000082968,-0.05806849527712232 +182356,911.780000008297,-0.05806796720698212 +182357,911.7850000082971,-0.05806743924350103 +182358,911.7900000082972,-0.058066911386658565 +182359,911.7950000082973,-0.058066383636434224 +182360,911.8000000082974,-0.058065855992807544 +182361,911.8050000082975,-0.058065328455758035 +182362,911.8100000082976,-0.05806480102526521 +182363,911.8150000082977,-0.05806427370130861 +182364,911.8200000082978,-0.058063746483867765 +182365,911.8250000082979,-0.05806321937292219 +182366,911.830000008298,-0.058062692368451435 +182367,911.8350000082982,-0.05806216547043505 +182368,911.8400000082983,-0.05806163867885256 +182369,911.8450000082984,-0.05806111199368352 +182370,911.8500000082985,-0.058060585414907495 +182371,911.8550000082986,-0.05806005894250403 +182372,911.8600000082987,-0.05805953257645267 +182373,911.8650000082988,-0.05805900631673299 +182374,911.8700000082989,-0.058058480163324565 +182375,911.875000008299,-0.05805795411620694 +182376,911.8800000082991,-0.05805742817535972 +182377,911.8850000082992,-0.05805690234076245 +182378,911.8900000082994,-0.05805637661239472 +182379,911.8950000082995,-0.05805585099023611 +182380,911.9000000082996,-0.05805532547426623 +182381,911.9050000082997,-0.058054800064464646 +182382,911.9100000082998,-0.05805427476081096 +182383,911.9150000082999,-0.05805374956328477 +182384,911.9200000083,-0.05805322447186568 +182385,911.9250000083001,-0.058052699486533285 +182386,911.9300000083002,-0.05805217460726722 +182387,911.9350000083003,-0.05805164983404707 +182388,911.9400000083004,-0.05805112516685246 +182389,911.9450000083006,-0.05805060060566301 +182390,911.9500000083007,-0.05805007615045834 +182391,911.9550000083008,-0.058049551801218076 +182392,911.9600000083009,-0.05804902755792185 +182393,911.965000008301,-0.0580485034205493 +182394,911.9700000083011,-0.05804797938908006 +182395,911.9750000083012,-0.05804745546349376 +182396,911.9800000083013,-0.05804693164377007 +182397,911.9850000083014,-0.05804640792988862 +182398,911.9900000083015,-0.05804588432182906 +182399,911.9950000083016,-0.05804536081957106 +182400,912.0000000083018,-0.05804483742309426 +182401,912.0050000083019,-0.05804431413237835 +182402,912.010000008302,-0.05804379094740295 +182403,912.0150000083021,-0.05804326786814778 +182404,912.0200000083022,-0.05804274489459248 +182405,912.0250000083023,-0.05804222202671673 +182406,912.0300000083024,-0.05804169926450022 +182407,912.0350000083025,-0.058041176607922636 +182408,912.0400000083026,-0.05804065405696366 +182409,912.0450000083027,-0.05804013161160297 +182410,912.0500000083028,-0.05803960927182028 +182411,912.055000008303,-0.058039087037595284 +182412,912.0600000083031,-0.05803856490890767 +182413,912.0650000083032,-0.058038042885737155 +182414,912.0700000083033,-0.05803752096806345 +182415,912.0750000083034,-0.058036999155866256 +182416,912.0800000083035,-0.0580364774491253 +182417,912.0850000083036,-0.05803595584782031 +182418,912.0900000083037,-0.05803543435193099 +182419,912.0950000083038,-0.05803491296143708 +182420,912.1000000083039,-0.05803439167631828 +182421,912.105000008304,-0.05803387049655436 +182422,912.1100000083042,-0.05803334942212504 +182423,912.1150000083043,-0.05803282845301007 +182424,912.1200000083044,-0.05803230758918919 +182425,912.1250000083045,-0.05803178683064215 +182426,912.1300000083046,-0.058031266177348696 +182427,912.1350000083047,-0.05803074562928859 +182428,912.1400000083048,-0.05803022518644158 +182429,912.1450000083049,-0.05802970484878743 +182430,912.150000008305,-0.058029184616305914 +182431,912.1550000083051,-0.058028664488976804 +182432,912.1600000083052,-0.05802814446677987 +182433,912.1650000083054,-0.058027624549694866 +182434,912.1700000083055,-0.05802710473770159 +182435,912.1750000083056,-0.05802658503077984 +182436,912.1800000083057,-0.05802606542890939 +182437,912.1850000083058,-0.05802554593207003 +182438,912.1900000083059,-0.05802502654024155 +182439,912.195000008306,-0.05802450725340376 +182440,912.2000000083061,-0.058023988071536435 +182441,912.2050000083062,-0.05802346899461941 +182442,912.2100000083063,-0.058022950022632476 +182443,912.2150000083064,-0.05802243115555546 +182444,912.2200000083066,-0.05802191239336815 +182445,912.2250000083067,-0.0580213937360504 +182446,912.2300000083068,-0.05802087518358201 +182447,912.2350000083069,-0.0580203567359428 +182448,912.240000008307,-0.05801983839311262 +182449,912.2450000083071,-0.0580193201550713 +182450,912.2500000083072,-0.05801880202179866 +182451,912.2550000083073,-0.05801828399327455 +182452,912.2600000083074,-0.058017766069478824 +182453,912.2650000083075,-0.05801724825039132 +182454,912.2700000083076,-0.058016730535991885 +182455,912.2750000083078,-0.05801621292626038 +182456,912.2800000083079,-0.05801569542117666 +182457,912.285000008308,-0.058015178020720586 +182458,912.2900000083081,-0.05801466072487203 +182459,912.2950000083082,-0.05801414353361085 +182460,912.3000000083083,-0.05801362644691693 +182461,912.3050000083084,-0.05801310946477014 +182462,912.3100000083085,-0.05801259258715035 +182463,912.3150000083086,-0.05801207581403746 +182464,912.3200000083087,-0.05801155914541134 +182465,912.3250000083088,-0.058011042581251886 +182466,912.330000008309,-0.058010526121539 +182467,912.3350000083091,-0.058010009766252583 +182468,912.3400000083092,-0.05800949351537251 +182469,912.3450000083093,-0.0580089773688787 +182470,912.3500000083094,-0.058008461326751075 +182471,912.3550000083095,-0.05800794538896952 +182472,912.3600000083096,-0.05800742955551397 +182473,912.3650000083097,-0.058006913826364324 +182474,912.3700000083098,-0.05800639820150052 +182475,912.3750000083099,-0.058005882680902475 +182476,912.38000000831,-0.05800536726455012 +182477,912.3850000083102,-0.05800485195242339 +182478,912.3900000083103,-0.05800433674450223 +182479,912.3950000083104,-0.05800382164076656 +182480,912.4000000083105,-0.05800330664119633 +182481,912.4050000083106,-0.05800279174577149 +182482,912.4100000083107,-0.05800227695447199 +182483,912.4150000083108,-0.05800176226727778 +182484,912.4200000083109,-0.05800124768416883 +182485,912.425000008311,-0.05800073320512509 +182486,912.4300000083111,-0.058000218830126515 +182487,912.4350000083112,-0.05799970455915308 +182488,912.4400000083114,-0.057999190392184756 +182489,912.4450000083115,-0.05799867632920153 +182490,912.4500000083116,-0.05799816237018337 +182491,912.4550000083117,-0.057997648515110245 +182492,912.4600000083118,-0.05799713476396215 +182493,912.4650000083119,-0.057996621116719084 +182494,912.470000008312,-0.05799610757336103 +182495,912.4750000083121,-0.057995594133868 +182496,912.4800000083122,-0.057995080798219974 +182497,912.4850000083123,-0.057994567566396954 +182498,912.4900000083124,-0.057994054438378954 +182499,912.4950000083126,-0.057993541414146 +182500,912.5000000083127,-0.05799302849367807 +182501,912.5050000083128,-0.05799251567695521 +182502,912.5100000083129,-0.057992002963957436 +182503,912.515000008313,-0.05799149035466476 +182504,912.5200000083131,-0.05799097784905722 +182505,912.5250000083132,-0.05799046544711484 +182506,912.5300000083133,-0.05798995314881766 +182507,912.5350000083134,-0.057989440954145724 +182508,912.5400000083135,-0.057988928863079055 +182509,912.5450000083137,-0.057988416875597706 +182510,912.5500000083138,-0.057987904991681744 +182511,912.5550000083139,-0.0579873932113112 +182512,912.560000008314,-0.057986881534466135 +182513,912.5650000083141,-0.05798636996112661 +182514,912.5700000083142,-0.0579858584912727 +182515,912.5750000083143,-0.05798534712488444 +182516,912.5800000083144,-0.05798483586194193 +182517,912.5850000083145,-0.05798432470242524 +182518,912.5900000083146,-0.057983813646314435 +182519,912.5950000083147,-0.057983302693589596 +182520,912.6000000083149,-0.0579827918442308 +182521,912.605000008315,-0.057982281098218166 +182522,912.6100000083151,-0.05798177045553176 +182523,912.6150000083152,-0.057981259916151676 +182524,912.6200000083153,-0.05798074948005801 +182525,912.6250000083154,-0.057980239147230876 +182526,912.6300000083155,-0.05797972891765038 +182527,912.6350000083156,-0.05797921879129662 +182528,912.6400000083157,-0.0579787087681497 +182529,912.6450000083158,-0.05797819884818976 +182530,912.6500000083159,-0.057977689031396905 +182531,912.655000008316,-0.057977179317751266 +182532,912.6600000083162,-0.05797666970723296 +182533,912.6650000083163,-0.0579761601998221 +182534,912.6700000083164,-0.05797565079549885 +182535,912.6750000083165,-0.057975141494243335 +182536,912.6800000083166,-0.057974632296035694 +182537,912.6850000083167,-0.05797412320085607 +182538,912.6900000083168,-0.057973614208684625 +182539,912.6950000083169,-0.057973105319501485 +182540,912.700000008317,-0.05797259653328682 +182541,912.7050000083171,-0.057972087850020775 +182542,912.7100000083173,-0.05797157926968352 +182543,912.7150000083174,-0.05797107079225522 +182544,912.7200000083175,-0.05797056241771604 +182545,912.7250000083176,-0.057970054146046154 +182546,912.7300000083177,-0.057969545977225735 +182547,912.7350000083178,-0.057969037911234964 +182548,912.7400000083179,-0.05796852994805403 +182549,912.745000008318,-0.0579680220876631 +182550,912.7500000083181,-0.05796751433004238 +182551,912.7550000083182,-0.05796700667517206 +182552,912.7600000083183,-0.057966499123032325 +182553,912.7650000083185,-0.05796599167360338 +182554,912.7700000083186,-0.057965484326865435 +182555,912.7750000083187,-0.0579649770827987 +182556,912.7800000083188,-0.05796446994138337 +182557,912.7850000083189,-0.057963962902599676 +182558,912.790000008319,-0.05796345596642782 +182559,912.7950000083191,-0.057962949132848024 +182560,912.8000000083192,-0.05796244240184052 +182561,912.8050000083193,-0.057961935773385535 +182562,912.8100000083194,-0.05796142924746329 +182563,912.8150000083195,-0.057960922824054024 +182564,912.8200000083197,-0.057960416503137976 +182565,912.8250000083198,-0.057959910284695396 +182566,912.8300000083199,-0.05795940416870651 +182567,912.83500000832,-0.05795889815515159 +182568,912.8400000083201,-0.057958392244010865 +182569,912.8450000083202,-0.057957886435264616 +182570,912.8500000083203,-0.05795738072889309 +182571,912.8550000083204,-0.05795687512487653 +182572,912.8600000083205,-0.05795636962319523 +182573,912.8650000083206,-0.05795586422382945 +182574,912.8700000083207,-0.05795535892675946 +182575,912.8750000083209,-0.057954853731965544 +182576,912.880000008321,-0.05795434863942798 +182577,912.8850000083211,-0.05795384364912704 +182578,912.8900000083212,-0.05795333876104301 +182579,912.8950000083213,-0.057952833975156194 +182580,912.9000000083214,-0.05795232929144689 +182581,912.9050000083215,-0.05795182470989538 +182582,912.9100000083216,-0.05795132023048197 +182583,912.9150000083217,-0.05795081585318697 +182584,912.9200000083218,-0.057950311577990674 +182585,912.925000008322,-0.05794980740487341 +182586,912.930000008322,-0.0579493033338155 +182587,912.9350000083222,-0.05794879936479722 +182588,912.9400000083223,-0.05794829549779894 +182589,912.9450000083224,-0.057947791732800964 +182590,912.9500000083225,-0.05794728806978362 +182591,912.9550000083226,-0.05794678450872725 +182592,912.9600000083227,-0.05794628104961217 +182593,912.9650000083228,-0.05794577769241873 +182594,912.9700000083229,-0.057945274437127284 +182595,912.975000008323,-0.057944771283718166 +182596,912.9800000083231,-0.057944268232171726 +182597,912.9850000083233,-0.05794376528246832 +182598,912.9900000083234,-0.057943262434588305 +182599,912.9950000083235,-0.05794275968851204 +182600,913.0000000083236,-0.05794225704421989 +182601,913.0050000083237,-0.0579417545016922 +182602,913.0100000083238,-0.05794125206090938 +182603,913.0150000083239,-0.05794074972185177 +182604,913.020000008324,-0.05794024748449978 +182605,913.0250000083241,-0.057939745348833754 +182606,913.0300000083242,-0.057939243314834105 +182607,913.0350000083243,-0.0579387413824812 +182608,913.0400000083245,-0.05793823955175544 +182609,913.0450000083246,-0.05793773782263723 +182610,913.0500000083247,-0.05793723619510696 +182611,913.0550000083248,-0.05793673466914503 +182612,913.0600000083249,-0.05793623324473184 +182613,913.065000008325,-0.057935731921847804 +182614,913.0700000083251,-0.05793523070047334 +182615,913.0750000083252,-0.057934729580588866 +182616,913.0800000083253,-0.05793422856217478 +182617,913.0850000083254,-0.05793372764521152 +182618,913.0900000083255,-0.05793322682967951 +182619,913.0950000083257,-0.05793272611555918 +182620,913.1000000083258,-0.05793222550283096 +182621,913.1050000083259,-0.057931724991475295 +182622,913.110000008326,-0.05793122458147262 +182623,913.1150000083261,-0.05793072427280337 +182624,913.1200000083262,-0.057930224065448004 +182625,913.1250000083263,-0.05792972395938696 +182626,913.1300000083264,-0.0579292239546007 +182627,913.1350000083265,-0.05792872405106968 +182628,913.1400000083266,-0.057928224248774356 +182629,913.1450000083267,-0.05792772454769521 +182630,913.1500000083269,-0.05792722494781269 +182631,913.155000008327,-0.05792672544910727 +182632,913.1600000083271,-0.05792622605155943 +182633,913.1650000083272,-0.05792572675514964 +182634,913.1700000083273,-0.057925227559858385 +182635,913.1750000083274,-0.05792472846566617 +182636,913.1800000083275,-0.05792422947255345 +182637,913.1850000083276,-0.05792373058050073 +182638,913.1900000083277,-0.057923231789488515 +182639,913.1950000083278,-0.057922733099497296 +182640,913.200000008328,-0.05792223451050756 +182641,913.205000008328,-0.057921736022499844 +182642,913.2100000083282,-0.057921237635454634 +182643,913.2150000083283,-0.05792073934935245 +182644,913.2200000083284,-0.057920241164173804 +182645,913.2250000083285,-0.05791974307989922 +182646,913.2300000083286,-0.05791924509650922 +182647,913.2350000083287,-0.057918747213984316 +182648,913.2400000083288,-0.057918249432305065 +182649,913.2450000083289,-0.05791775175145199 +182650,913.250000008329,-0.05791725417140562 +182651,913.2550000083291,-0.05791675669214649 +182652,913.2600000083293,-0.05791625931365516 +182653,913.2650000083294,-0.057915762035912165 +182654,913.2700000083295,-0.05791526485889807 +182655,913.2750000083296,-0.05791476778259342 +182656,913.2800000083297,-0.057914270806978765 +182657,913.2850000083298,-0.05791377393203467 +182658,913.2900000083299,-0.05791327715774172 +182659,913.29500000833,-0.05791278048408046 +182660,913.3000000083301,-0.057912283911031454 +182661,913.3050000083302,-0.057911787438575286 +182662,913.3100000083303,-0.057911291066692544 +182663,913.3150000083305,-0.0579107947953638 +182664,913.3200000083306,-0.05791029862456965 +182665,913.3250000083307,-0.057909802554290665 +182666,913.3300000083308,-0.05790930658450745 +182667,913.3350000083309,-0.05790881071520059 +182668,913.340000008331,-0.05790831494635069 +182669,913.3450000083311,-0.05790781927793836 +182670,913.3500000083312,-0.0579073237099442 +182671,913.3550000083313,-0.05790682824234881 +182672,913.3600000083314,-0.057906332875132804 +182673,913.3650000083315,-0.05790583760827681 +182674,913.3700000083317,-0.05790534244176143 +182675,913.3750000083318,-0.0579048473755673 +182676,913.3800000083319,-0.05790435240967504 +182677,913.385000008332,-0.05790385754406529 +182678,913.3900000083321,-0.05790336277871867 +182679,913.3950000083322,-0.05790286811361584 +182680,913.4000000083323,-0.05790237354873742 +182681,913.4050000083324,-0.05790187908406404 +182682,913.4100000083325,-0.05790138471957637 +182683,913.4150000083326,-0.05790089045525505 +182684,913.4200000083327,-0.05790039629108074 +182685,913.4250000083329,-0.05789990222703409 +182686,913.430000008333,-0.05789940826309577 +182687,913.4350000083331,-0.05789891439924644 +182688,913.4400000083332,-0.05789842063546676 +182689,913.4450000083333,-0.05789792697173742 +182690,913.4500000083334,-0.05789743340803908 +182691,913.4550000083335,-0.05789693994435241 +182692,913.4600000083336,-0.05789644658065811 +182693,913.4650000083337,-0.05789595331693686 +182694,913.4700000083338,-0.05789546015316933 +182695,913.475000008334,-0.05789496708933624 +182696,913.4800000083341,-0.05789447412541826 +182697,913.4850000083342,-0.057893981261396096 +182698,913.4900000083343,-0.05789348849725046 +182699,913.4950000083344,-0.05789299583296204 +182700,913.5000000083345,-0.057892503268511565 +182701,913.5050000083346,-0.05789201080387973 +182702,913.5100000083347,-0.05789151843904726 +182703,913.5150000083348,-0.05789102617399487 +182704,913.5200000083349,-0.05789053400870329 +182705,913.525000008335,-0.05789004194315324 +182706,913.5300000083352,-0.05788954997732545 +182707,913.5350000083353,-0.05788905811120064 +182708,913.5400000083354,-0.05788856634475957 +182709,913.5450000083355,-0.05788807467798296 +182710,913.5500000083356,-0.05788758311085155 +182711,913.5550000083357,-0.057887091643346114 +182712,913.5600000083358,-0.05788660027544738 +182713,913.5650000083359,-0.0578861090071361 +182714,913.570000008336,-0.057885617838393036 +182715,913.5750000083361,-0.05788512676919895 +182716,913.5800000083362,-0.057884635799534595 +182717,913.5850000083364,-0.05788414492938075 +182718,913.5900000083365,-0.05788365415871819 +182719,913.5950000083366,-0.05788316348752767 +182720,913.6000000083367,-0.05788267291578998 +182721,913.6050000083368,-0.057882182443485905 +182722,913.6100000083369,-0.057881692070596215 +182723,913.615000008337,-0.05788120179710171 +182724,913.6200000083371,-0.05788071162298317 +182725,913.6250000083372,-0.0578802215482214 +182726,913.6300000083373,-0.05787973157279718 +182727,913.6350000083374,-0.05787924169669134 +182728,913.6400000083376,-0.05787875191988467 +182729,913.6450000083377,-0.05787826224235797 +182730,913.6500000083378,-0.05787777266409205 +182731,913.6550000083379,-0.05787728318506774 +182732,913.660000008338,-0.05787679380526585 +182733,913.6650000083381,-0.057876304524667195 +182734,913.6700000083382,-0.0578758153432526 +182735,913.6750000083383,-0.05787532626100291 +182736,913.6800000083384,-0.05787483727789895 +182737,913.6850000083385,-0.05787434839392154 +182738,913.6900000083386,-0.05787385960905154 +182739,913.6950000083388,-0.057873370923269774 +182740,913.7000000083389,-0.0578728823365571 +182741,913.705000008339,-0.057872393848894366 +182742,913.7100000083391,-0.05787190546026241 +182743,913.7150000083392,-0.057871417170642106 +182744,913.7200000083393,-0.057870928980014315 +182745,913.7250000083394,-0.05787044088835988 +182746,913.7300000083395,-0.05786995289565968 +182747,913.7350000083396,-0.057869465001894584 +182748,913.7400000083397,-0.05786897720704546 +182749,913.7450000083398,-0.05786848951109319 +182750,913.75000000834,-0.05786800191401865 +182751,913.7550000083401,-0.05786751441580272 +182752,913.7600000083402,-0.05786702701642628 +182753,913.7650000083403,-0.05786653971587023 +182754,913.7700000083404,-0.05786605251411547 +182755,913.7750000083405,-0.057865565411142884 +182756,913.7800000083406,-0.057865078406933376 +182757,913.7850000083407,-0.05786459150146786 +182758,913.7900000083408,-0.05786410469472722 +182759,913.7950000083409,-0.05786361798669238 +182760,913.800000008341,-0.057863131377344244 +182761,913.8050000083412,-0.05786264486666376 +182762,913.8100000083413,-0.05786215845463181 +182763,913.8150000083414,-0.05786167214122934 +182764,913.8200000083415,-0.05786118592643726 +182765,913.8250000083416,-0.05786069981023651 +182766,913.8300000083417,-0.057860213792608035 +182767,913.8350000083418,-0.05785972787353277 +182768,913.8400000083419,-0.05785924205299164 +182769,913.845000008342,-0.05785875633096559 +182770,913.8500000083421,-0.05785827070743558 +182771,913.8550000083422,-0.057857785182382555 +182772,913.8600000083424,-0.05785729975578747 +182773,913.8650000083425,-0.05785681442763128 +182774,913.8700000083426,-0.057856329197894955 +182775,913.8750000083427,-0.05785584406655944 +182776,913.8800000083428,-0.057855359033605724 +182777,913.8850000083429,-0.05785487409901477 +182778,913.890000008343,-0.05785438926276754 +182779,913.8950000083431,-0.05785390452484503 +182780,913.9000000083432,-0.057853419885228234 +182781,913.9050000083433,-0.05785293534389811 +182782,913.9100000083434,-0.05785245090083565 +182783,913.9150000083436,-0.05785196655602185 +182784,913.9200000083437,-0.057851482309437714 +182785,913.9250000083438,-0.057850998161064225 +182786,913.9300000083439,-0.0578505141108824 +182787,913.935000008344,-0.05785003015887324 +182788,913.9400000083441,-0.05784954630501774 +182789,913.9450000083442,-0.05784906254929692 +182790,913.9500000083443,-0.0578485788916918 +182791,913.9550000083444,-0.057848095332183394 +182792,913.9600000083445,-0.05784761187075273 +182793,913.9650000083446,-0.05784712850738083 +182794,913.9700000083448,-0.05784664524204872 +182795,913.9750000083449,-0.05784616207473744 +182796,913.980000008345,-0.05784567900542801 +182797,913.9850000083451,-0.057845196034101494 +182798,913.9900000083452,-0.05784471316073891 +182799,913.9950000083453,-0.05784423038532131 +182800,914.0000000083454,-0.05784374770782975 +182801,914.0050000083455,-0.05784326512824528 +182802,914.0100000083456,-0.057842782646548956 +182803,914.0150000083457,-0.05784230026272184 +182804,914.0200000083458,-0.05784181797674498 +182805,914.025000008346,-0.05784133578859945 +182806,914.0300000083461,-0.05784085369826633 +182807,914.0350000083462,-0.05784037170572668 +182808,914.0400000083463,-0.057839889810961595 +182809,914.0450000083464,-0.05783940801395214 +182810,914.0500000083465,-0.0578389263146794 +182811,914.0550000083466,-0.05783844471312446 +182812,914.0600000083467,-0.05783796320926841 +182813,914.0650000083468,-0.057837481803092346 +182814,914.0700000083469,-0.05783700049457735 +182815,914.075000008347,-0.05783651928370455 +182816,914.0800000083472,-0.05783603817045501 +182817,914.0850000083473,-0.057835557154809876 +182818,914.0900000083474,-0.057835076236750244 +182819,914.0950000083475,-0.05783459541625722 +182820,914.1000000083476,-0.05783411469331192 +182821,914.1050000083477,-0.057833634067895476 +182822,914.1100000083478,-0.057833153539989 +182823,914.1150000083479,-0.057832673109573636 +182824,914.120000008348,-0.057832192776630494 +182825,914.1250000083481,-0.057831712541140716 +182826,914.1300000083482,-0.057831232403085436 +182827,914.1350000083484,-0.05783075236244581 +182828,914.1400000083485,-0.05783027241920296 +182829,914.1450000083486,-0.05782979257333804 +182830,914.1500000083487,-0.0578293128248322 +182831,914.1550000083488,-0.0578288331736666 +182832,914.1600000083489,-0.057828353619822394 +182833,914.165000008349,-0.05782787416328074 +182834,914.1700000083491,-0.057827394804022804 +182835,914.1750000083492,-0.057826915542029754 +182836,914.1800000083493,-0.05782643637728276 +182837,914.1850000083494,-0.057825957309763 +182838,914.1900000083496,-0.05782547833945163 +182839,914.1950000083497,-0.05782499946632987 +182840,914.2000000083498,-0.057824520690378876 +182841,914.2050000083499,-0.05782404201157983 +182842,914.21000000835,-0.057823563429913946 +182843,914.2150000083501,-0.057823084945362396 +182844,914.2200000083502,-0.0578226065579064 +182845,914.2250000083503,-0.05782212826752713 +182846,914.2300000083504,-0.057821650074205824 +182847,914.2350000083505,-0.05782117197792367 +182848,914.2400000083506,-0.05782069397866188 +182849,914.2450000083508,-0.05782021607640166 +182850,914.2500000083509,-0.05781973827112425 +182851,914.255000008351,-0.05781926056281086 +182852,914.2600000083511,-0.0578187829514427 +182853,914.2650000083512,-0.05781830543700102 +182854,914.2700000083513,-0.057817828019467034 +182855,914.2750000083514,-0.05781735069882198 +182856,914.2800000083515,-0.05781687347504712 +182857,914.2850000083516,-0.05781639634812366 +182858,914.2900000083517,-0.05781591931803287 +182859,914.2950000083518,-0.057815442384755986 +182860,914.300000008352,-0.05781496554827426 +182861,914.3050000083521,-0.05781448880856894 +182862,914.3100000083522,-0.05781401216562129 +182863,914.3150000083523,-0.057813535619412576 +182864,914.3200000083524,-0.05781305916992406 +182865,914.3250000083525,-0.05781258281713701 +182866,914.3300000083526,-0.05781210656103271 +182867,914.3350000083527,-0.05781163040159241 +182868,914.3400000083528,-0.057811154338797396 +182869,914.3450000083529,-0.05781067837262896 +182870,914.350000008353,-0.05781020250306837 +182871,914.3550000083532,-0.057809726730096926 +182872,914.3600000083533,-0.057809251053695915 +182873,914.3650000083534,-0.057808775473846635 +182874,914.3700000083535,-0.05780829999053039 +182875,914.3750000083536,-0.05780782460372848 +182876,914.3800000083537,-0.05780734931342219 +182877,914.3850000083538,-0.057806874119592865 +182878,914.3900000083539,-0.05780639902222178 +182879,914.395000008354,-0.05780592402129027 +182880,914.4000000083541,-0.05780544911677964 +182881,914.4050000083542,-0.05780497430867122 +182882,914.4100000083544,-0.05780449959694634 +182883,914.4150000083545,-0.05780402498158632 +182884,914.4200000083546,-0.0578035504625725 +182885,914.4250000083547,-0.05780307603988621 +182886,914.4300000083548,-0.05780260171350878 +182887,914.4350000083549,-0.05780212748342156 +182888,914.440000008355,-0.05780165334960589 +182889,914.4450000083551,-0.05780117931204312 +182890,914.4500000083552,-0.05780070537071461 +182891,914.4550000083553,-0.057800231525601715 +182892,914.4600000083555,-0.05779975777668578 +182893,914.4650000083556,-0.057799284123948184 +182894,914.4700000083557,-0.05779881056737027 +182895,914.4750000083558,-0.05779833710693342 +182896,914.4800000083559,-0.057797863742619 +182897,914.485000008356,-0.057797390474408405 +182898,914.4900000083561,-0.057796917302282994 +182899,914.4950000083562,-0.05779644422622415 +182900,914.5000000083563,-0.05779597124621326 +182901,914.5050000083564,-0.05779549836223171 +182902,914.5100000083565,-0.05779502557426089 +182903,914.5150000083567,-0.057794552882282205 +182904,914.5200000083568,-0.057794080286277055 +182905,914.5250000083569,-0.05779360778622683 +182906,914.530000008357,-0.05779313538211294 +182907,914.5350000083571,-0.057792663073916783 +182908,914.5400000083572,-0.05779219086161979 +182909,914.5450000083573,-0.05779171874520337 +182910,914.5500000083574,-0.05779124672464893 +182911,914.5550000083575,-0.05779077479993791 +182912,914.5600000083576,-0.05779030297105172 +182913,914.5650000083577,-0.05778983123797178 +182914,914.5700000083579,-0.057789359600679546 +182915,914.575000008358,-0.05778888805915645 +182916,914.5800000083581,-0.057788416613383915 +182917,914.5850000083582,-0.05778794526334339 +182918,914.5900000083583,-0.05778747400901632 +182919,914.5950000083584,-0.057787002850384156 +182920,914.6000000083585,-0.05778653178742835 +182921,914.6050000083586,-0.057786060820130346 +182922,914.6100000083587,-0.05778558994847161 +182923,914.6150000083588,-0.05778511917243361 +182924,914.6200000083589,-0.0577846484919978 +182925,914.625000008359,-0.05778417790714566 +182926,914.6300000083592,-0.057783707417858654 +182927,914.6350000083593,-0.05778323702411825 +182928,914.6400000083594,-0.057782766725905946 +182929,914.6450000083595,-0.0577822965232032 +182930,914.6500000083596,-0.05778182641599152 +182931,914.6550000083597,-0.05778135640425238 +182932,914.6600000083598,-0.05778088648796728 +182933,914.6650000083599,-0.05778041666711771 +182934,914.67000000836,-0.05777994694168515 +182935,914.6750000083601,-0.05777947731165114 +182936,914.6800000083603,-0.05777900777699715 +182937,914.6850000083604,-0.0577785383377047 +182938,914.6900000083605,-0.057778068993755316 +182939,914.6950000083606,-0.05777759974513049 +182940,914.7000000083607,-0.057777130591811755 +182941,914.7050000083608,-0.057776661533780624 +182942,914.7100000083609,-0.05777619257101864 +182943,914.715000008361,-0.05777572370350731 +182944,914.7200000083611,-0.057775254931228176 +182945,914.7250000083612,-0.05777478625416276 +182946,914.7300000083613,-0.05777431767229261 +182947,914.7350000083615,-0.057773849185599274 +182948,914.7400000083616,-0.05777338079406428 +182949,914.7450000083617,-0.0577729124976692 +182950,914.7500000083618,-0.05777244429639557 +182951,914.7550000083619,-0.057771976190224936 +182952,914.760000008362,-0.05777150817913886 +182953,914.7650000083621,-0.05777104026311892 +182954,914.7700000083622,-0.05777057244214666 +182955,914.7750000083623,-0.05777010471620365 +182956,914.7800000083624,-0.05776963708527147 +182957,914.7850000083625,-0.05776916954933169 +182958,914.7900000083627,-0.057768702108365905 +182959,914.7950000083628,-0.05776823476235566 +182960,914.8000000083629,-0.05776776751128257 +182961,914.805000008363,-0.05776730035512821 +182962,914.8100000083631,-0.057766833293874185 +182963,914.8150000083632,-0.057766366327502074 +182964,914.8200000083633,-0.057765899455993475 +182965,914.8250000083634,-0.057765432679329994 +182966,914.8300000083635,-0.057764965997493235 +182967,914.8350000083636,-0.0577644994104648 +182968,914.8400000083637,-0.05776403291822631 +182969,914.8450000083639,-0.05776356652075937 +182970,914.850000008364,-0.05776310021804559 +182971,914.8550000083641,-0.05776263401006662 +182972,914.8600000083642,-0.05776216789680406 +182973,914.8650000083643,-0.057761701878239535 +182974,914.8700000083644,-0.05776123595435469 +182975,914.8750000083645,-0.057760770125131145 +182976,914.8800000083646,-0.05776030439055055 +182977,914.8850000083647,-0.05775983875059454 +182978,914.8900000083648,-0.057759373205244754 +182979,914.895000008365,-0.05775890775448285 +182980,914.900000008365,-0.05775844239829047 +182981,914.9050000083652,-0.05775797713664928 +182982,914.9100000083653,-0.05775751196954092 +182983,914.9150000083654,-0.057757046896947044 +182984,914.9200000083655,-0.05775658191884935 +182985,914.9250000083656,-0.05775611703522948 +182986,914.9300000083657,-0.05775565224606911 +182987,914.9350000083658,-0.05775518755134991 +182988,914.9400000083659,-0.05775472295105355 +182989,914.945000008366,-0.05775425844516172 +182990,914.9500000083661,-0.05775379403365611 +182991,914.9550000083663,-0.05775332971651839 +182992,914.9600000083664,-0.05775286549373027 +182993,914.9650000083665,-0.05775240136527343 +182994,914.9700000083666,-0.05775193733112957 +182995,914.9750000083667,-0.05775147339128039 +182996,914.9800000083668,-0.05775100954570759 +182997,914.9850000083669,-0.05775054579439288 +182998,914.990000008367,-0.057750082137317964 +182999,914.9950000083671,-0.05774961857446456 +183000,915.0000000083672,-0.05774915510581438 +183001,915.0050000083673,-0.05774869173134915 +183002,915.0100000083675,-0.05774822845105059 +183003,915.0150000083676,-0.05774776526490044 +183004,915.0200000083677,-0.0577473021728804 +183005,915.0250000083678,-0.057746839174972225 +183006,915.0300000083679,-0.05774637627115765 +183007,915.035000008368,-0.0577459134614184 +183008,915.0400000083681,-0.05774545074573622 +183009,915.0450000083682,-0.05774498812409287 +183010,915.0500000083683,-0.0577445255964701 +183011,915.0550000083684,-0.05774406316284964 +183012,915.0600000083685,-0.057743600823213274 +183013,915.0650000083687,-0.057743138577542735 +183014,915.0700000083688,-0.05774267642581981 +183015,915.0750000083689,-0.05774221436802624 +183016,915.080000008369,-0.05774175240414381 +183017,915.0850000083691,-0.05774129053415429 +183018,915.0900000083692,-0.05774082875803946 +183019,915.0950000083693,-0.057740367075781084 +183020,915.1000000083694,-0.05773990548736096 +183021,915.1050000083695,-0.057739443992760854 +183022,915.1100000083696,-0.057738982591962584 +183023,915.1150000083697,-0.05773852128494792 +183024,915.1200000083699,-0.057738060071698655 +183025,915.12500000837,-0.057737598952196593 +183026,915.1300000083701,-0.05773713792642354 +183027,915.1350000083702,-0.0577366769943613 +183028,915.1400000083703,-0.057736216155991685 +183029,915.1450000083704,-0.0577357554112965 +183030,915.1500000083705,-0.057735294760257544 +183031,915.1550000083706,-0.05773483420285666 +183032,915.1600000083707,-0.05773437373907567 +183033,915.1650000083708,-0.057733913368896383 +183034,915.170000008371,-0.057733453092300636 +183035,915.1750000083711,-0.05773299290927025 +183036,915.1800000083712,-0.05773253281978708 +183037,915.1850000083713,-0.05773207282383295 +183038,915.1900000083714,-0.057731612921389695 +183039,915.1950000083715,-0.057731153112439176 +183040,915.2000000083716,-0.05773069339696322 +183041,915.2050000083717,-0.0577302337749437 +183042,915.2100000083718,-0.057729774246362456 +183043,915.2150000083719,-0.05772931481120135 +183044,915.220000008372,-0.05772885546944224 +183045,915.2250000083721,-0.057728396221066985 +183046,915.2300000083723,-0.057727937066057465 +183047,915.2350000083724,-0.05772747800439554 +183048,915.2400000083725,-0.05772701903606309 +183049,915.2450000083726,-0.05772656016104199 +183050,915.2500000083727,-0.05772610137931412 +183051,915.2550000083728,-0.05772564269086136 +183052,915.2600000083729,-0.05772518409566561 +183053,915.265000008373,-0.05772472559370874 +183054,915.2700000083731,-0.057724267184972665 +183055,915.2750000083732,-0.05772380886943925 +183056,915.2800000083733,-0.05772335064709043 +183057,915.2850000083735,-0.057722892517908096 +183058,915.2900000083736,-0.05772243448187415 +183059,915.2950000083737,-0.057721976538970494 +183060,915.3000000083738,-0.057721518689179054 +183061,915.3050000083739,-0.057721060932481735 +183062,915.310000008374,-0.05772060326886047 +183063,915.3150000083741,-0.05772014569829718 +183064,915.3200000083742,-0.05771968822077378 +183065,915.3250000083743,-0.05771923083627221 +183066,915.3300000083744,-0.05771877354477439 +183067,915.3350000083745,-0.057718316346262274 +183068,915.3400000083747,-0.05771785924071779 +183069,915.3450000083748,-0.05771740222812288 +183070,915.3500000083749,-0.057716945308459486 +183071,915.355000008375,-0.057716488481709564 +183072,915.3600000083751,-0.05771603174785507 +183073,915.3650000083752,-0.05771557510687795 +183074,915.3700000083753,-0.057715118558760166 +183075,915.3750000083754,-0.05771466210348368 +183076,915.3800000083755,-0.05771420574103046 +183077,915.3850000083756,-0.057713749471382456 +183078,915.3900000083758,-0.05771329329452166 +183079,915.3950000083759,-0.05771283721043005 +183080,915.400000008376,-0.057712381219089594 +183081,915.4050000083761,-0.05771192532048227 +183082,915.4100000083762,-0.057711469514590066 +183083,915.4150000083763,-0.05771101380139497 +183084,915.4200000083764,-0.05771055818087898 +183085,915.4250000083765,-0.05771010265302408 +183086,915.4300000083766,-0.05770964721781228 +183087,915.4350000083767,-0.05770919187522556 +183088,915.4400000083768,-0.057708736625245935 +183089,915.445000008377,-0.057708281467855414 +183090,915.4500000083771,-0.057707826403036025 +183091,915.4550000083772,-0.057707371430769754 +183092,915.4600000083773,-0.057706916551038635 +183093,915.4650000083774,-0.05770646176382468 +183094,915.4700000083775,-0.057706007069109916 +183095,915.4750000083776,-0.05770555246687637 +183096,915.4800000083777,-0.057705097957106065 +183097,915.4850000083778,-0.057704643539781046 +183098,915.4900000083779,-0.05770418921488334 +183099,915.495000008378,-0.05770373498239499 +183100,915.5000000083782,-0.057703280842298046 +183101,915.5050000083783,-0.05770282679457454 +183102,915.5100000083784,-0.05770237283920652 +183103,915.5150000083785,-0.05770191897617606 +183104,915.5200000083786,-0.0577014652054652 +183105,915.5250000083787,-0.05770101152705601 +183106,915.5300000083788,-0.05770055794093054 +183107,915.5350000083789,-0.057700104447070855 +183108,915.540000008379,-0.05769965104545905 +183109,915.5450000083791,-0.057699197736077165 +183110,915.5500000083792,-0.05769874451890729 +183111,915.5550000083794,-0.05769829139393151 +183112,915.5600000083795,-0.0576978383611319 +183113,915.5650000083796,-0.057697385420490535 +183114,915.5700000083797,-0.057696932571989525 +183115,915.5750000083798,-0.05769647981561094 +183116,915.5800000083799,-0.05769602715133689 +183117,915.58500000838,-0.057695574579149464 +183118,915.5900000083801,-0.05769512209903077 +183119,915.5950000083802,-0.0576946697109629 +183120,915.6000000083803,-0.05769421741492798 +183121,915.6050000083804,-0.05769376521090811 +183122,915.6100000083806,-0.05769331309888541 +183123,915.6150000083807,-0.057692861078842 +183124,915.6200000083808,-0.05769240915075999 +183125,915.6250000083809,-0.057691957314621505 +183126,915.630000008381,-0.05769150557040868 +183127,915.6350000083811,-0.05769105391810365 +183128,915.6400000083812,-0.05769060235768853 +183129,915.6450000083813,-0.057690150889145475 +183130,915.6500000083814,-0.057689699512456616 +183131,915.6550000083815,-0.0576892482276041 +183132,915.6600000083816,-0.05768879703457006 +183133,915.6650000083818,-0.05768834593333667 +183134,915.6700000083819,-0.05768789492388606 +183135,915.675000008382,-0.05768744400620041 +183136,915.6800000083821,-0.05768699318026187 +183137,915.6850000083822,-0.057686542446052584 +183138,915.6900000083823,-0.057686091803554745 +183139,915.6950000083824,-0.05768564125275052 +183140,915.7000000083825,-0.057685190793622054 +183141,915.7050000083826,-0.05768474042615155 +183142,915.7100000083827,-0.05768429015032118 +183143,915.7150000083828,-0.057683839966113114 +183144,915.720000008383,-0.05768338987350956 +183145,915.7250000083831,-0.057682939872492685 +183146,915.7300000083832,-0.0576824899630447 +183147,915.7350000083833,-0.057682040145147793 +183148,915.7400000083834,-0.05768159041878416 +183149,915.7450000083835,-0.05768114078393599 +183150,915.7500000083836,-0.0576806912405855 +183151,915.7550000083837,-0.05768024178871491 +183152,915.7600000083838,-0.05767979242830641 +183153,915.7650000083839,-0.05767934315934224 +183154,915.770000008384,-0.05767889398180459 +183155,915.7750000083842,-0.057678444895675696 +183156,915.7800000083843,-0.05767799590093777 +183157,915.7850000083844,-0.05767754699757306 +183158,915.7900000083845,-0.05767709818556378 +183159,915.7950000083846,-0.05767664946489216 +183160,915.8000000083847,-0.057676200835540446 +183161,915.8050000083848,-0.057675752297490876 +183162,915.8100000083849,-0.057675303850725695 +183163,915.815000008385,-0.05767485549522715 +183164,915.8200000083851,-0.05767440723097748 +183165,915.8250000083852,-0.057673959057958954 +183166,915.8300000083854,-0.05767351097615382 +183167,915.8350000083855,-0.05767306298554435 +183168,915.8400000083856,-0.05767261508611279 +183169,915.8450000083857,-0.0576721672778414 +183170,915.8500000083858,-0.05767171956071246 +183171,915.8550000083859,-0.057671271934708244 +183172,915.860000008386,-0.05767082439981104 +183173,915.8650000083861,-0.05767037695600311 +183174,915.8700000083862,-0.05766992960326674 +183175,915.8750000083863,-0.0576694823415842 +183176,915.8800000083864,-0.057669035170937806 +183177,915.8850000083866,-0.05766858809130983 +183178,915.8900000083867,-0.05766814110268257 +183179,915.8950000083868,-0.05766769420503833 +183180,915.9000000083869,-0.057667247398359406 +183181,915.905000008387,-0.05766680068262811 +183182,915.9100000083871,-0.05766635405782674 +183183,915.9150000083872,-0.057665907523937604 +183184,915.9200000083873,-0.05766546108094303 +183185,915.9250000083874,-0.05766501472882533 +183186,915.9300000083875,-0.05766456846756681 +183187,915.9350000083876,-0.05766412229714982 +183188,915.9400000083878,-0.05766367621755666 +183189,915.9450000083879,-0.05766323022876968 +183190,915.950000008388,-0.057662784330771204 +183191,915.9550000083881,-0.05766233852354357 +183192,915.9600000083882,-0.057661892807069126 +183193,915.9650000083883,-0.05766144718133019 +183194,915.9700000083884,-0.057661001646309135 +183195,915.9750000083885,-0.0576605562019883 +183196,915.9800000083886,-0.05766011084835003 +183197,915.9850000083887,-0.057659665585376704 +183198,915.9900000083888,-0.057659220413050646 +183199,915.995000008389,-0.05765877533135425 +183200,916.0000000083891,-0.05765833034026987 +183201,916.0050000083892,-0.057657885439779864 +183202,916.0100000083893,-0.057657440629866615 +183203,916.0150000083894,-0.057656995910512494 +183204,916.0200000083895,-0.05765655128169988 +183205,916.0250000083896,-0.05765610674341116 +183206,916.0300000083897,-0.057655662295628705 +183207,916.0350000083898,-0.05765521793833492 +183208,916.0400000083899,-0.05765477367151218 +183209,916.04500000839,-0.057654329495142875 +183210,916.0500000083902,-0.057653885409209425 +183211,916.0550000083903,-0.05765344141369421 +183212,916.0600000083904,-0.05765299750857965 +183213,916.0650000083905,-0.057652553693848134 +183214,916.0700000083906,-0.057652109969482085 +183215,916.0750000083907,-0.05765166633546392 +183216,916.0800000083908,-0.057651222791776036 +183217,916.0850000083909,-0.05765077933840087 +183218,916.090000008391,-0.05765033597532084 +183219,916.0950000083911,-0.05764989270251837 +183220,916.1000000083912,-0.05764944951997589 +183221,916.1050000083914,-0.05764900642767583 +183222,916.1100000083915,-0.05764856342560063 +183223,916.1150000083916,-0.057648120513732734 +183224,916.1200000083917,-0.057647677692054575 +183225,916.1250000083918,-0.05764723496054859 +183226,916.1300000083919,-0.05764679231919725 +183227,916.135000008392,-0.05764634976798298 +183228,916.1400000083921,-0.05764590730688826 +183229,916.1450000083922,-0.057645464935895535 +183230,916.1500000083923,-0.057645022654987256 +183231,916.1550000083924,-0.0576445804641459 +183232,916.1600000083926,-0.05764413836335395 +183233,916.1650000083927,-0.05764369635259384 +183234,916.1700000083928,-0.05764325443184806 +183235,916.1750000083929,-0.05764281260109911 +183236,916.180000008393,-0.05764237086032944 +183237,916.1850000083931,-0.057641929209521534 +183238,916.1900000083932,-0.0576414876486579 +183239,916.1950000083933,-0.05764104617772101 +183240,916.2000000083934,-0.05764060479669337 +183241,916.2050000083935,-0.05764016350555745 +183242,916.2100000083936,-0.057639722304295773 +183243,916.2150000083938,-0.057639281192890836 +183244,916.2200000083939,-0.057638840171325145 +183245,916.225000008394,-0.05763839923958121 +183246,916.2300000083941,-0.05763795839764154 +183247,916.2350000083942,-0.05763751764548866 +183248,916.2400000083943,-0.05763707698310508 +183249,916.2450000083944,-0.0576366364104733 +183250,916.2500000083945,-0.057636195927575885 +183251,916.2550000083946,-0.05763575553439533 +183252,916.2600000083947,-0.05763531523091419 +183253,916.2650000083948,-0.05763487501711498 +183254,916.270000008395,-0.05763443489298025 +183255,916.2750000083951,-0.05763399485849253 +183256,916.2800000083952,-0.05763355491363437 +183257,916.2850000083953,-0.05763311505838833 +183258,916.2900000083954,-0.05763267529273693 +183259,916.2950000083955,-0.05763223561666275 +183260,916.3000000083956,-0.05763179603014834 +183261,916.3050000083957,-0.05763135653317625 +183262,916.3100000083958,-0.05763091712572904 +183263,916.3150000083959,-0.05763047780778929 +183264,916.320000008396,-0.05763003857933957 +183265,916.3250000083962,-0.057629599440362445 +183266,916.3300000083963,-0.057629160390840484 +183267,916.3350000083964,-0.05762872143075627 +183268,916.3400000083965,-0.057628282560092385 +183269,916.3450000083966,-0.05762784377883142 +183270,916.3500000083967,-0.05762740508695596 +183271,916.3550000083968,-0.05762696648444859 +183272,916.3600000083969,-0.057626527971291905 +183273,916.365000008397,-0.05762608954746853 +183274,916.3700000083971,-0.05762565121296102 +183275,916.3750000083973,-0.057625212967752006 +183276,916.3800000083974,-0.0576247748118241 +183277,916.3850000083975,-0.0576243367451599 +183278,916.3900000083976,-0.05762389876774202 +183279,916.3950000083977,-0.05762346087955308 +183280,916.4000000083978,-0.057623023080575694 +183281,916.4050000083979,-0.05762258537079249 +183282,916.410000008398,-0.057622147750186106 +183283,916.4150000083981,-0.05762171021873914 +183284,916.4200000083982,-0.05762127277643425 +183285,916.4250000083983,-0.057620835423254066 +183286,916.4300000083985,-0.05762039815918122 +183287,916.4350000083986,-0.05761996098419837 +183288,916.4400000083987,-0.05761952389828815 +183289,916.4450000083988,-0.057619086901433206 +183290,916.4500000083989,-0.05761864999361619 +183291,916.455000008399,-0.05761821317481976 +183292,916.4600000083991,-0.05761777644502657 +183293,916.4650000083992,-0.05761733980421927 +183294,916.4700000083993,-0.05761690325238055 +183295,916.4750000083994,-0.05761646678949306 +183296,916.4800000083995,-0.05761603041553947 +183297,916.4850000083997,-0.05761559413050246 +183298,916.4900000083998,-0.057615157934364704 +183299,916.4950000083999,-0.05761472182710888 +183300,916.5000000084,-0.05761428580871767 +183301,916.5050000084001,-0.05761384987917377 +183302,916.5100000084002,-0.057613414038459855 +183303,916.5150000084003,-0.05761297828655862 +183304,916.5200000084004,-0.05761254262345277 +183305,916.5250000084005,-0.057612107049125005 +183306,916.5300000084006,-0.05761167156355801 +183307,916.5350000084007,-0.057611236166734504 +183308,916.5400000084009,-0.05761080085863718 +183309,916.545000008401,-0.05761036563924877 +183310,916.5500000084011,-0.05760993050855197 +183311,916.5550000084012,-0.05760949546652951 +183312,916.5600000084013,-0.05760906051316411 +183313,916.5650000084014,-0.057608625648438494 +183314,916.5700000084015,-0.057608190872335374 +183315,916.5750000084016,-0.05760775618483749 +183316,916.5800000084017,-0.05760732158592758 +183317,916.5850000084018,-0.05760688707558838 +183318,916.590000008402,-0.05760645265380262 +183319,916.595000008402,-0.05760601832055305 +183320,916.6000000084022,-0.05760558407582242 +183321,916.6050000084023,-0.05760514991959347 +183322,916.6100000084024,-0.05760471585184897 +183323,916.6150000084025,-0.05760428187257165 +183324,916.6200000084026,-0.05760384798174428 +183325,916.6250000084027,-0.05760341417934962 +183326,916.6300000084028,-0.05760298046537042 +183327,916.6350000084029,-0.057602546839789485 +183328,916.640000008403,-0.05760211330258956 +183329,916.6450000084031,-0.057601679853753425 +183330,916.6500000084033,-0.05760124649326386 +183331,916.6550000084034,-0.057600813221103636 +183332,916.6600000084035,-0.05760038003725553 +183333,916.6650000084036,-0.057599946941702354 +183334,916.6700000084037,-0.05759951393442688 +183335,916.6750000084038,-0.05759908101541191 +183336,916.6800000084039,-0.05759864818464024 +183337,916.685000008404,-0.057598215442094654 +183338,916.6900000084041,-0.05759778278775796 +183339,916.6950000084042,-0.05759735022161298 +183340,916.7000000084043,-0.057596917743642506 +183341,916.7050000084045,-0.05759648535382935 +183342,916.7100000084046,-0.057596053052156336 +183343,916.7150000084047,-0.05759562083860628 +183344,916.7200000084048,-0.05759518871316201 +183345,916.7250000084049,-0.057594756675806325 +183346,916.730000008405,-0.057594324726522074 +183347,916.7350000084051,-0.05759389286529209 +183348,916.7400000084052,-0.05759346109209919 +183349,916.7450000084053,-0.05759302940692622 +183350,916.7500000084054,-0.05759259780975603 +183351,916.7550000084055,-0.05759216630057145 +183352,916.7600000084057,-0.05759173487935533 +183353,916.7650000084058,-0.057591303546090516 +183354,916.7700000084059,-0.057590872300759856 +183355,916.775000008406,-0.057590441143346216 +183356,916.7800000084061,-0.057590010073832444 +183357,916.7850000084062,-0.05758957909220142 +183358,916.7900000084063,-0.057589148198435997 +183359,916.7950000084064,-0.05758871739251903 +183360,916.8000000084065,-0.05758828667443342 +183361,916.8050000084066,-0.05758785604416203 +183362,916.8100000084067,-0.05758742550168772 +183363,916.8150000084069,-0.05758699504699338 +183364,916.820000008407,-0.057586564680061916 +183365,916.8250000084071,-0.05758613440087618 +183366,916.8300000084072,-0.05758570420941908 +183367,916.8350000084073,-0.0575852741056735 +183368,916.8400000084074,-0.05758484408962237 +183369,916.8450000084075,-0.05758441416124855 +183370,916.8500000084076,-0.05758398432053495 +183371,916.8550000084077,-0.05758355456746449 +183372,916.8600000084078,-0.05758312490202006 +183373,916.865000008408,-0.057582695324184585 +183374,916.870000008408,-0.05758226583394098 +183375,916.8750000084082,-0.05758183643127217 +183376,916.8800000084083,-0.05758140711616105 +183377,916.8850000084084,-0.05758097788859057 +183378,916.8900000084085,-0.05758054874854364 +183379,916.8950000084086,-0.0575801196960032 +183380,916.9000000084087,-0.057579690730952184 +183381,916.9050000084088,-0.057579261853373524 +183382,916.9100000084089,-0.05757883306325016 +183383,916.915000008409,-0.05757840436056505 +183384,916.9200000084091,-0.057577975745301116 +183385,916.9250000084093,-0.05757754721744132 +183386,916.9300000084094,-0.05757711877696862 +183387,916.9350000084095,-0.057576690423865956 +183388,916.9400000084096,-0.05757626215811631 +183389,916.9450000084097,-0.057575833979702624 +183390,916.9500000084098,-0.057575405888607864 +183391,916.9550000084099,-0.057574977884815 +183392,916.96000000841,-0.057574549968307014 +183393,916.9650000084101,-0.05757412213906686 +183394,916.9700000084102,-0.05757369439707753 +183395,916.9750000084103,-0.05757326674232201 +183396,916.9800000084105,-0.05757283917478326 +183397,916.9850000084106,-0.057572411694444284 +183398,916.9900000084107,-0.05757198430128807 +183399,916.9950000084108,-0.05757155699529761 +183400,917.0000000084109,-0.057571129776455905 +183401,917.005000008411,-0.05757070264474594 +183402,917.0100000084111,-0.057570275600150725 +183403,917.0150000084112,-0.05756984864265327 +183404,917.0200000084113,-0.05756942177223658 +183405,917.0250000084114,-0.05756899498888366 +183406,917.0300000084115,-0.05756856829257754 +183407,917.0350000084117,-0.057568141683301224 +183408,917.0400000084118,-0.05756771516103772 +183409,917.0450000084119,-0.057567288725770084 +183410,917.050000008412,-0.05756686237748133 +183411,917.0550000084121,-0.05756643611615448 +183412,917.0600000084122,-0.057566009941772564 +183413,917.0650000084123,-0.05756558385431863 +183414,917.0700000084124,-0.057565157853775716 +183415,917.0750000084125,-0.057564731940126866 +183416,917.0800000084126,-0.05756430611335512 +183417,917.0850000084127,-0.057563880373443524 +183418,917.0900000084129,-0.057563454720375135 +183419,917.095000008413,-0.05756302915413301 +183420,917.1000000084131,-0.0575626036747002 +183421,917.1050000084132,-0.05756217828205978 +183422,917.1100000084133,-0.0575617529761948 +183423,917.1150000084134,-0.057561327757088325 +183424,917.1200000084135,-0.057560902624723444 +183425,917.1250000084136,-0.05756047757908321 +183426,917.1300000084137,-0.057560052620150716 +183427,917.1350000084138,-0.057559627747909035 +183428,917.140000008414,-0.057559202962341245 +183429,917.1450000084141,-0.05755877826343043 +183430,917.1500000084142,-0.05755835365115968 +183431,917.1550000084143,-0.0575579291255121 +183432,917.1600000084144,-0.05755750468647078 +183433,917.1650000084145,-0.05755708033401881 +183434,917.1700000084146,-0.05755665606813929 +183435,917.1750000084147,-0.05755623188881533 +183436,917.1800000084148,-0.057555807796030055 +183437,917.1850000084149,-0.05755538378976655 +183438,917.190000008415,-0.057554959870007937 +183439,917.1950000084151,-0.05755453603673733 +183440,917.2000000084153,-0.05755411228993785 +183441,917.2050000084154,-0.05755368862959263 +183442,917.2100000084155,-0.057553265055684776 +183443,917.2150000084156,-0.05755284156819744 +183444,917.2200000084157,-0.05755241816711373 +183445,917.2250000084158,-0.0575519948524168 +183446,917.2300000084159,-0.05755157162408979 +183447,917.235000008416,-0.05755114848211584 +183448,917.2400000084161,-0.057550725426478065 +183449,917.2450000084162,-0.05755030245715965 +183450,917.2500000084164,-0.05754987957414373 +183451,917.2550000084165,-0.057549456777413466 +183452,917.2600000084166,-0.057549034066952005 +183453,917.2650000084167,-0.057548611442742516 +183454,917.2700000084168,-0.057548188904768156 +183455,917.2750000084169,-0.057547766453012086 +183456,917.280000008417,-0.05754734408745749 +183457,917.2850000084171,-0.057546921808087535 +183458,917.2900000084172,-0.057546499614885394 +183459,917.2950000084173,-0.05754607750783424 +183460,917.3000000084174,-0.05754565548691726 +183461,917.3050000084176,-0.05754523355211764 +183462,917.3100000084177,-0.05754481170341856 +183463,917.3150000084178,-0.05754438994080323 +183464,917.3200000084179,-0.05754396826425481 +183465,917.325000008418,-0.05754354667375654 +183466,917.3300000084181,-0.05754312516929159 +183467,917.3350000084182,-0.05754270375084316 +183468,917.3400000084183,-0.05754228241839448 +183469,917.3450000084184,-0.05754186117192875 +183470,917.3500000084185,-0.057541440011429176 +183471,917.3550000084186,-0.05754101893687897 +183472,917.3600000084188,-0.057540597948261364 +183473,917.3650000084189,-0.057540177045559575 +183474,917.370000008419,-0.057539756228756817 +183475,917.3750000084191,-0.05753933549783632 +183476,917.3800000084192,-0.05753891485278132 +183477,917.3850000084193,-0.057538494293575056 +183478,917.3900000084194,-0.057538073820200764 +183479,917.3950000084195,-0.05753765343264168 +183480,917.4000000084196,-0.057537233130881035 +183481,917.4050000084197,-0.0575368129149021 +183482,917.4100000084198,-0.057536392784688105 +183483,917.41500000842,-0.057535972740222305 +183484,917.4200000084201,-0.05753555278148797 +183485,917.4250000084202,-0.057535132908468345 +183486,917.4300000084203,-0.057534713121146684 +183487,917.4350000084204,-0.05753429341950627 +183488,917.4400000084205,-0.05753387380353036 +183489,917.4450000084206,-0.05753345427320222 +183490,917.4500000084207,-0.057533034828505136 +183491,917.4550000084208,-0.057532615469422385 +183492,917.4600000084209,-0.05753219619593723 +183493,917.465000008421,-0.057531777008032976 +183494,917.4700000084212,-0.05753135790569289 +183495,917.4750000084213,-0.05753093888890027 +183496,917.4800000084214,-0.05753051995763841 +183497,917.4850000084215,-0.0575301011118906 +183498,917.4900000084216,-0.057529682351640146 +183499,917.4950000084217,-0.05752926367687034 +183500,917.5000000084218,-0.05752884508756449 +183501,917.5050000084219,-0.05752842658370591 +183502,917.510000008422,-0.057528008165277894 +183503,917.5150000084221,-0.057527589832263776 +183504,917.5200000084222,-0.057527171584646854 +183505,917.5250000084224,-0.057526753422410454 +183506,917.5300000084225,-0.0575263353455379 +183507,917.5350000084226,-0.05752591735401254 +183508,917.5400000084227,-0.057525499447817666 +183509,917.5450000084228,-0.057525081626936626 +183510,917.5500000084229,-0.05752466389135276 +183511,917.555000008423,-0.0575242462410494 +183512,917.5600000084231,-0.057523828676009886 +183513,917.5650000084232,-0.05752341119621755 +183514,917.5700000084233,-0.05752299380165577 +183515,917.5750000084234,-0.05752257649230788 +183516,917.5800000084236,-0.05752215926815723 +183517,917.5850000084237,-0.057521742129187176 +183518,917.5900000084238,-0.057521325075381075 +183519,917.5950000084239,-0.057520908106722286 +183520,917.600000008424,-0.0575204912231942 +183521,917.6050000084241,-0.05752007442478017 +183522,917.6100000084242,-0.05751965771146355 +183523,917.6150000084243,-0.05751924108322774 +183524,917.6200000084244,-0.057518824540056114 +183525,917.6250000084245,-0.05751840808193205 +183526,917.6300000084246,-0.057517991708838936 +183527,917.6350000084248,-0.057517575420760136 +183528,917.6400000084249,-0.05751715921767907 +183529,917.645000008425,-0.057516743099579104 +183530,917.6500000084251,-0.057516327066443655 +183531,917.6550000084252,-0.057515911118256116 +183532,917.6600000084253,-0.057515495254999875 +183533,917.6650000084254,-0.057515079476658355 +183534,917.6700000084255,-0.05751466378321497 +183535,917.6750000084256,-0.05751424817465312 +183536,917.6800000084257,-0.05751383265095622 +183537,917.6850000084258,-0.05751341721210768 +183538,917.690000008426,-0.05751300185809093 +183539,917.6950000084261,-0.05751258658888939 +183540,917.7000000084262,-0.057512171404486494 +183541,917.7050000084263,-0.05751175630486566 +183542,917.7100000084264,-0.05751134129001032 +183543,917.7150000084265,-0.05751092635990392 +183544,917.7200000084266,-0.0575105115145299 +183545,917.7250000084267,-0.05751009675387168 +183546,917.7300000084268,-0.05750968207791273 +183547,917.7350000084269,-0.05750926748663649 +183548,917.740000008427,-0.057508852980026406 +183549,917.7450000084272,-0.057508438558065936 +183550,917.7500000084273,-0.057508024220738536 +183551,917.7550000084274,-0.057507609968027666 +183552,917.7600000084275,-0.05750719579991679 +183553,917.7650000084276,-0.05750678171638937 +183554,917.7700000084277,-0.057506367717428876 +183555,917.7750000084278,-0.05750595380301878 +183556,917.7800000084279,-0.05750553997314256 +183557,917.785000008428,-0.05750512622778369 +183558,917.7900000084281,-0.057504712566925666 +183559,917.7950000084282,-0.05750429899055195 +183560,917.8000000084284,-0.057503885498646046 +183561,917.8050000084285,-0.05750347209119143 +183562,917.8100000084286,-0.0575030587681716 +183563,917.8150000084287,-0.05750264552957006 +183564,917.8200000084288,-0.05750223237537031 +183565,917.8250000084289,-0.05750181930555584 +183566,917.830000008429,-0.05750140632011018 +183567,917.8350000084291,-0.05750099341901681 +183568,917.8400000084292,-0.05750058060225925 +183569,917.8450000084293,-0.05750016786982101 +183570,917.8500000084294,-0.057499755221685635 +183571,917.8550000084296,-0.05749934265783662 +183572,917.8600000084297,-0.057498930178257496 +183573,917.8650000084298,-0.05749851778293179 +183574,917.8700000084299,-0.05749810547184302 +183575,917.87500000843,-0.05749769324497473 +183576,917.8800000084301,-0.057497281102310456 +183577,917.8850000084302,-0.05749686904383373 +183578,917.8900000084303,-0.057496457069528106 +183579,917.8950000084304,-0.05749604517937712 +183580,917.9000000084305,-0.05749563337336433 +183581,917.9050000084306,-0.05749522165147328 +183582,917.9100000084308,-0.0574948100136875 +183583,917.9150000084309,-0.057494398459990576 +183584,917.920000008431,-0.05749398699036607 +183585,917.9250000084311,-0.05749357560479753 +183586,917.9300000084312,-0.05749316430326853 +183587,917.9350000084313,-0.05749275308576265 +183588,917.9400000084314,-0.05749234195226343 +183589,917.9450000084315,-0.05749193090275448 +183590,917.9500000084316,-0.057491519937219356 +183591,917.9550000084317,-0.05749110905564164 +183592,917.9600000084318,-0.05749069825800493 +183593,917.965000008432,-0.0574902875442928 +183594,917.9700000084321,-0.05748987691448885 +183595,917.9750000084322,-0.05748946636857666 +183596,917.9800000084323,-0.057489055906539833 +183597,917.9850000084324,-0.05748864552836197 +183598,917.9900000084325,-0.05748823523402668 +183599,917.9950000084326,-0.05748782502351756 +183600,918.0000000084327,-0.057487414896818224 +183601,918.0050000084328,-0.05748700485391227 +183602,918.0100000084329,-0.057486594894783326 +183603,918.015000008433,-0.057486185019415006 +183604,918.0200000084332,-0.05748577522779093 +183605,918.0250000084333,-0.057485365519894714 +183606,918.0300000084334,-0.05748495589570999 +183607,918.0350000084335,-0.05748454635522039 +183608,918.0400000084336,-0.057484136898409546 +183609,918.0450000084337,-0.05748372752526109 +183610,918.0500000084338,-0.05748331823575866 +183611,918.0550000084339,-0.057482909029885905 +183612,918.060000008434,-0.057482499907626466 +183613,918.0650000084341,-0.057482090868963984 +183614,918.0700000084342,-0.0574816819138821 +183615,918.0750000084344,-0.05748127304236449 +183616,918.0800000084345,-0.0574808642543948 +183617,918.0850000084346,-0.057480455549956705 +183618,918.0900000084347,-0.057480046929033836 +183619,918.0950000084348,-0.05747963839160988 +183620,918.1000000084349,-0.057479229937668505 +183621,918.105000008435,-0.05747882156719338 +183622,918.1100000084351,-0.05747841328016817 +183623,918.1150000084352,-0.05747800507657656 +183624,918.1200000084353,-0.057477596956402255 +183625,918.1250000084354,-0.0574771889196289 +183626,918.1300000084356,-0.0574767809662402 +183627,918.1350000084357,-0.057476373096219835 +183628,918.1400000084358,-0.0574759653095515 +183629,918.1450000084359,-0.0574755576062189 +183630,918.150000008436,-0.057475149986205724 +183631,918.1550000084361,-0.05747474244949568 +183632,918.1600000084362,-0.05747433499607247 +183633,918.1650000084363,-0.0574739276259198 +183634,918.1700000084364,-0.05747352033902138 +183635,918.1750000084365,-0.05747311313536094 +183636,918.1800000084367,-0.057472706014922166 +183637,918.1850000084368,-0.057472298977688796 +183638,918.1900000084369,-0.057471892023644555 +183639,918.195000008437,-0.05747148515277317 +183640,918.2000000084371,-0.057471078365058346 +183641,918.2050000084372,-0.05747067166048385 +183642,918.2100000084373,-0.05747026503903338 +183643,918.2150000084374,-0.05746985850069071 +183644,918.2200000084375,-0.05746945204543955 +183645,918.2250000084376,-0.05746904567326366 +183646,918.2300000084377,-0.057468639384146786 +183647,918.2350000084379,-0.05746823317807267 +183648,918.240000008438,-0.05746782705502505 +183649,918.2450000084381,-0.057467421014987724 +183650,918.2500000084382,-0.05746701505794441 +183651,918.2550000084383,-0.057466609183878886 +183652,918.2600000084384,-0.05746620339277493 +183653,918.2650000084385,-0.05746579768461629 +183654,918.2700000084386,-0.05746539205938674 +183655,918.2750000084387,-0.05746498651707006 +183656,918.2800000084388,-0.057464581057650024 +183657,918.2850000084389,-0.057464175681110403 +183658,918.290000008439,-0.05746377038743499 +183659,918.2950000084392,-0.05746336517660757 +183660,918.3000000084393,-0.05746296004861192 +183661,918.3050000084394,-0.05746255500343183 +183662,918.3100000084395,-0.05746215004105112 +183663,918.3150000084396,-0.05746174516145357 +183664,918.3200000084397,-0.05746134036462297 +183665,918.3250000084398,-0.05746093565054314 +183666,918.3300000084399,-0.057460531019197875 +183667,918.33500000844,-0.057460126470571 +183668,918.3400000084401,-0.05745972200464631 +183669,918.3450000084403,-0.057459317621407636 +183670,918.3500000084404,-0.05745891332083878 +183671,918.3550000084405,-0.05745850910292357 +183672,918.3600000084406,-0.05745810496764584 +183673,918.3650000084407,-0.057457700914989404 +183674,918.3700000084408,-0.0574572969449381 +183675,918.3750000084409,-0.05745689305747574 +183676,918.380000008441,-0.057456489252586194 +183677,918.3850000084411,-0.057456085530253276 +183678,918.3900000084412,-0.05745568189046084 +183679,918.3950000084413,-0.05745527833319272 +183680,918.4000000084415,-0.057454874858432786 +183681,918.4050000084416,-0.05745447146616488 +183682,918.4100000084417,-0.05745406815637284 +183683,918.4150000084418,-0.05745366492904054 +183684,918.4200000084419,-0.05745326178415183 +183685,918.425000008442,-0.05745285872169059 +183686,918.4300000084421,-0.057452455741640665 +183687,918.4350000084422,-0.057452052843985926 +183688,918.4400000084423,-0.05745165002871025 +183689,918.4450000084424,-0.057451247295797515 +183690,918.4500000084425,-0.0574508446452316 +183691,918.4550000084427,-0.057450442076996386 +183692,918.4600000084428,-0.05745003959107575 +183693,918.4650000084429,-0.05744963718745358 +183694,918.470000008443,-0.05744923486611377 +183695,918.4750000084431,-0.0574488326270402 +183696,918.4800000084432,-0.05744843047021679 +183697,918.4850000084433,-0.05744802839562742 +183698,918.4900000084434,-0.057447626403256 +183699,918.4950000084435,-0.057447224493086424 +183700,918.5000000084436,-0.05744682266510262 +183701,918.5050000084437,-0.05744642091928847 +183702,918.5100000084439,-0.0574460192556279 +183703,918.515000008444,-0.05744561767410484 +183704,918.5200000084441,-0.05744521617470319 +183705,918.5250000084442,-0.05744481475740689 +183706,918.5300000084443,-0.057444413422199844 +183707,918.5350000084444,-0.057444012169066 +183708,918.5400000084445,-0.05744361099798928 +183709,918.5450000084446,-0.05744320990895362 +183710,918.5500000084447,-0.057442808901942956 +183711,918.5550000084448,-0.05744240797694123 +183712,918.560000008445,-0.05744200713393238 +183713,918.565000008445,-0.05744160637290037 +183714,918.5700000084452,-0.057441205693829135 +183715,918.5750000084453,-0.05744080509670262 +183716,918.5800000084454,-0.057440404581504796 +183717,918.5850000084455,-0.0574400041482196 +183718,918.5900000084456,-0.05743960379683101 +183719,918.5950000084457,-0.05743920352732299 +183720,918.6000000084458,-0.057438803339679496 +183721,918.6050000084459,-0.057438403233884515 +183722,918.610000008446,-0.057438003209922005 +183723,918.6150000084461,-0.057437603267775944 +183724,918.6200000084463,-0.057437203407430304 +183725,918.6250000084464,-0.05743680362886909 +183726,918.6300000084465,-0.05743640393207626 +183727,918.6350000084466,-0.05743600431703583 +183728,918.6400000084467,-0.05743560478373175 +183729,918.6450000084468,-0.05743520533214805 +183730,918.6500000084469,-0.057434805962268715 +183731,918.655000008447,-0.05743440667407774 +183732,918.6600000084471,-0.057434007467559126 +183733,918.6650000084472,-0.05743360834269689 +183734,918.6700000084473,-0.05743320929947503 +183735,918.6750000084475,-0.05743281033787755 +183736,918.6800000084476,-0.057432411457888494 +183737,918.6850000084477,-0.05743201265949185 +183738,918.6900000084478,-0.05743161394267165 +183739,918.6950000084479,-0.0574312153074119 +183740,918.700000008448,-0.05743081675369666 +183741,918.7050000084481,-0.05743041828150993 +183742,918.7100000084482,-0.05743001989083575 +183743,918.7150000084483,-0.057429621581658166 +183744,918.7200000084484,-0.05742922335396121 +183745,918.7250000084485,-0.057428825207728906 +183746,918.7300000084487,-0.05742842714294531 +183747,918.7350000084488,-0.057428029159594475 +183748,918.7400000084489,-0.05742763125766044 +183749,918.745000008449,-0.05742723343712726 +183750,918.7500000084491,-0.05742683569797899 +183751,918.7550000084492,-0.0574264380401997 +183752,918.7600000084493,-0.057426040463773434 +183753,918.7650000084494,-0.05742564296868427 +183754,918.7700000084495,-0.05742524555491627 +183755,918.7750000084496,-0.05742484822245351 +183756,918.7800000084497,-0.05742445097128005 +183757,918.7850000084499,-0.05742405380137997 +183758,918.79000000845,-0.05742365671273736 +183759,918.7950000084501,-0.05742325970533628 +183760,918.8000000084502,-0.05742286277916084 +183761,918.8050000084503,-0.057422465934195116 +183762,918.8100000084504,-0.0574220691704232 +183763,918.8150000084505,-0.05742167248782919 +183764,918.8200000084506,-0.05742127588639717 +183765,918.8250000084507,-0.057420879366111253 +183766,918.8300000084508,-0.05742048292695553 +183767,918.835000008451,-0.05742008656891412 +183768,918.840000008451,-0.05741969029197111 +183769,918.8450000084512,-0.057419294096110636 +183770,918.8500000084513,-0.0574188979813168 +183771,918.8550000084514,-0.05741850194757373 +183772,918.8600000084515,-0.05741810599486553 +183773,918.8650000084516,-0.05741771012317632 +183774,918.8700000084517,-0.05741731433249025 +183775,918.8750000084518,-0.05741691862279143 +183776,918.8800000084519,-0.057416522994063995 +183777,918.885000008452,-0.057416127446292084 +183778,918.8900000084521,-0.05741573197945984 +183779,918.8950000084523,-0.057415336593551386 +183780,918.9000000084524,-0.05741494128855088 +183781,918.9050000084525,-0.05741454606444246 +183782,918.9100000084526,-0.05741415092121029 +183783,918.9150000084527,-0.05741375585883851 +183784,918.9200000084528,-0.057413360877311276 +183785,918.9250000084529,-0.05741296597661275 +183786,918.930000008453,-0.0574125711567271 +183787,918.9350000084531,-0.05741217641763846 +183788,918.9400000084532,-0.05741178175933104 +183789,918.9450000084533,-0.05741138718178898 +183790,918.9500000084535,-0.057410992684996456 +183791,918.9550000084536,-0.057410598268937664 +183792,918.9600000084537,-0.05741020393359676 +183793,918.9650000084538,-0.057409809678957945 +183794,918.9700000084539,-0.05740941550500538 +183795,918.975000008454,-0.05740902141172327 +183796,918.9800000084541,-0.05740862739909581 +183797,918.9850000084542,-0.05740823346710717 +183798,918.9900000084543,-0.057407839615741564 +183799,918.9950000084544,-0.05740744584498319 +183800,919.0000000084545,-0.05740705215481624 +183801,919.0050000084547,-0.05740665854522494 +183802,919.0100000084548,-0.05740626501619349 +183803,919.0150000084549,-0.05740587156770609 +183804,919.020000008455,-0.05740547819974695 +183805,919.0250000084551,-0.057405084912300314 +183806,919.0300000084552,-0.057404691705350376 +183807,919.0350000084553,-0.057404298578881366 +183808,919.0400000084554,-0.05740390553287752 +183809,919.0450000084555,-0.057403512567323046 +183810,919.0500000084556,-0.057403119682202186 +183811,919.0550000084557,-0.05740272687749919 +183812,919.0600000084559,-0.057402334153198266 +183813,919.065000008456,-0.057401941509283676 +183814,919.0700000084561,-0.05740154894573965 +183815,919.0750000084562,-0.057401156462550444 +183816,919.0800000084563,-0.05740076405970031 +183817,919.0850000084564,-0.05740037173717349 +183818,919.0900000084565,-0.05739997949495424 +183819,919.0950000084566,-0.057399587333026816 +183820,919.1000000084567,-0.05739919525137549 +183821,919.1050000084568,-0.05739880324998451 +183822,919.110000008457,-0.057398411328838154 +183823,919.1150000084571,-0.05739801948792068 +183824,919.1200000084572,-0.05739762772721638 +183825,919.1250000084573,-0.05739723604670951 +183826,919.1300000084574,-0.05739684444638435 +183827,919.1350000084575,-0.057396452926225194 +183828,919.1400000084576,-0.057396061486216315 +183829,919.1450000084577,-0.057395670126341995 +183830,919.1500000084578,-0.05739527884658654 +183831,919.1550000084579,-0.05739488764693423 +183832,919.160000008458,-0.05739449652736936 +183833,919.1650000084582,-0.05739410548787623 +183834,919.1700000084583,-0.05739371452843915 +183835,919.1750000084584,-0.05739332364904241 +183836,919.1800000084585,-0.05739293284967035 +183837,919.1850000084586,-0.057392542130307235 +183838,919.1900000084587,-0.05739215149093741 +183839,919.1950000084588,-0.05739176093154517 +183840,919.2000000084589,-0.05739137045211484 +183841,919.205000008459,-0.057390980052630755 +183842,919.2100000084591,-0.05739058973307722 +183843,919.2150000084592,-0.05739019949343857 +183844,919.2200000084594,-0.05738980933369915 +183845,919.2250000084595,-0.05738941925384327 +183846,919.2300000084596,-0.057389029253855285 +183847,919.2350000084597,-0.05738863933371952 +183848,919.2400000084598,-0.057388249493420335 +183849,919.2450000084599,-0.05738785973294205 +183850,919.25000000846,-0.057387470052269025 +183851,919.2550000084601,-0.057387080451385616 +183852,919.2600000084602,-0.05738669093027616 +183853,919.2650000084603,-0.057386301488925026 +183854,919.2700000084604,-0.057385912127316585 +183855,919.2750000084606,-0.05738552284543519 +183856,919.2800000084607,-0.057385133643265196 +183857,919.2850000084608,-0.057384744520790974 +183858,919.2900000084609,-0.057384355477996904 +183859,919.295000008461,-0.05738396651486735 +183860,919.3000000084611,-0.0573835776313867 +183861,919.3050000084612,-0.05738318882753933 +183862,919.3100000084613,-0.05738280010330962 +183863,919.3150000084614,-0.05738241145868196 +183864,919.3200000084615,-0.05738202289364072 +183865,919.3250000084616,-0.05738163440817032 +183866,919.3300000084618,-0.057381246002255124 +183867,919.3350000084619,-0.057380857675879554 +183868,919.340000008462,-0.057380469429028 +183869,919.3450000084621,-0.05738008126168487 +183870,919.3500000084622,-0.05737969317383455 +183871,919.3550000084623,-0.057379305165461476 +183872,919.3600000084624,-0.05737891723655004 +183873,919.3650000084625,-0.05737852938708467 +183874,919.3700000084626,-0.05737814161704978 +183875,919.3750000084627,-0.05737775392642978 +183876,919.3800000084628,-0.0573773663152091 +183877,919.385000008463,-0.05737697878337217 +183878,919.3900000084631,-0.05737659133090341 +183879,919.3950000084632,-0.05737620395778725 +183880,919.4000000084633,-0.05737581666400814 +183881,919.4050000084634,-0.057375429449550513 +183882,919.4100000084635,-0.0573750423143988 +183883,919.4150000084636,-0.057374655258537445 +183884,919.4200000084637,-0.057374268281950906 +183885,919.4250000084638,-0.05737388138462363 +183886,919.4300000084639,-0.05737349456654006 +183887,919.435000008464,-0.05737310782768465 +183888,919.4400000084642,-0.05737272116804187 +183889,919.4450000084643,-0.057372334587596156 +183890,919.4500000084644,-0.057371948086331996 +183891,919.4550000084645,-0.05737156166423385 +183892,919.4600000084646,-0.05737117532128619 +183893,919.4650000084647,-0.057370789057473476 +183894,919.4700000084648,-0.05737040287278019 +183895,919.4750000084649,-0.05737001676719082 +183896,919.480000008465,-0.05736963074068983 +183897,919.4850000084651,-0.05736924479326171 +183898,919.4900000084652,-0.05736885892489096 +183899,919.4950000084654,-0.057368473135562044 +183900,919.5000000084655,-0.05736808742525948 +183901,919.5050000084656,-0.05736770179396774 +183902,919.5100000084657,-0.05736731624167133 +183903,919.5150000084658,-0.057366930768354765 +183904,919.5200000084659,-0.05736654537400253 +183905,919.525000008466,-0.05736616005859914 +183906,919.5300000084661,-0.057365774822129095 +183907,919.5350000084662,-0.057365389664576924 +183908,919.5400000084663,-0.057365004585927123 +183909,919.5450000084664,-0.05736461958616423 +183910,919.5500000084666,-0.05736423466527275 +183911,919.5550000084667,-0.057363849823237216 +183912,919.5600000084668,-0.05736346506004215 +183913,919.5650000084669,-0.05736308037567209 +183914,919.570000008467,-0.05736269577011154 +183915,919.5750000084671,-0.05736231124334508 +183916,919.5800000084672,-0.057361926795357225 +183917,919.5850000084673,-0.057361542426132506 +183918,919.5900000084674,-0.05736115813565549 +183919,919.5950000084675,-0.0573607739239107 +183920,919.6000000084676,-0.057360389790882704 +183921,919.6050000084678,-0.05736000573655605 +183922,919.6100000084679,-0.05735962176091529 +183923,919.615000008468,-0.057359237863944985 +183924,919.6200000084681,-0.05735885404562969 +183925,919.6250000084682,-0.05735847030595397 +183926,919.6300000084683,-0.0573580866449024 +183927,919.6350000084684,-0.05735770306245955 +183928,919.6400000084685,-0.05735731955860999 +183929,919.6450000084686,-0.05735693613333828 +183930,919.6500000084687,-0.057356552786629024 +183931,919.6550000084688,-0.05735616951846679 +183932,919.660000008469,-0.05735578632883616 +183933,919.6650000084691,-0.05735540321772173 +183934,919.6700000084692,-0.057355020185108074 +183935,919.6750000084693,-0.057354637230979805 +183936,919.6800000084694,-0.0573542543553215 +183937,919.6850000084695,-0.057353871558117775 +183938,919.6900000084696,-0.05735348883935322 +183939,919.6950000084697,-0.05735310619901243 +183940,919.7000000084698,-0.057352723637080036 +183941,919.7050000084699,-0.057352341153540626 +183942,919.71000000847,-0.05735195874837882 +183943,919.7150000084702,-0.05735157642157924 +183944,919.7200000084703,-0.0573511941731265 +183945,919.7250000084704,-0.057350812003005215 +183946,919.7300000084705,-0.05735042991120003 +183947,919.7350000084706,-0.05735004789769553 +183948,919.7400000084707,-0.0573496659624764 +183949,919.7450000084708,-0.05734928410552722 +183950,919.7500000084709,-0.05734890232683266 +183951,919.755000008471,-0.05734852062637735 +183952,919.7600000084711,-0.05734813900414592 +183953,919.7650000084712,-0.057347757460123036 +183954,919.7700000084714,-0.057347375994293334 +183955,919.7750000084715,-0.057346994606641444 +183956,919.7800000084716,-0.05734661329715205 +183957,919.7850000084717,-0.057346232065809785 +183958,919.7900000084718,-0.05734585091259932 +183959,919.7950000084719,-0.05734546983750532 +183960,919.800000008472,-0.05734508884051243 +183961,919.8050000084721,-0.057344707921605335 +183962,919.8100000084722,-0.05734432708076869 +183963,919.8150000084723,-0.05734394631798719 +183964,919.8200000084724,-0.05734356563324549 +183965,919.8250000084726,-0.05734318502652828 +183966,919.8300000084727,-0.05734280449782023 +183967,919.8350000084728,-0.05734242404710602 +183968,919.8400000084729,-0.05734204367437036 +183969,919.845000008473,-0.05734166337959792 +183970,919.8500000084731,-0.057341283162773406 +183971,919.8550000084732,-0.05734090302388151 +183972,919.8600000084733,-0.05734052296290692 +183973,919.8650000084734,-0.05734014297983434 +183974,919.8700000084735,-0.05733976307464849 +183975,919.8750000084736,-0.05733938324733406 +183976,919.8800000084738,-0.057339003497875754 +183977,919.8850000084739,-0.0573386238262583 +183978,919.890000008474,-0.05733824423246641 +183979,919.8950000084741,-0.05733786471648479 +183980,919.9000000084742,-0.05733748527829818 +183981,919.9050000084743,-0.05733710591789128 +183982,919.9100000084744,-0.05733672663524884 +183983,919.9150000084745,-0.05733634743035557 +183984,919.9200000084746,-0.057335968303196226 +183985,919.9250000084747,-0.05733558925375553 +183986,919.9300000084748,-0.05733521028201821 +183987,919.935000008475,-0.05733483138796902 +183988,919.9400000084751,-0.057334452571592705 +183989,919.9450000084752,-0.057334073832874 +183990,919.9500000084753,-0.057333695171797656 +183991,919.9550000084754,-0.05733331658834844 +183992,919.9600000084755,-0.057332938082511095 +183993,919.9650000084756,-0.057332559654270386 +183994,919.9700000084757,-0.05733218130361107 +183995,919.9750000084758,-0.05733180303051789 +183996,919.9800000084759,-0.057331424834975636 +183997,919.985000008476,-0.057331046716969085 +183998,919.9900000084762,-0.05733066867648299 +183999,919.9950000084763,-0.057330290713502124 +184000,920.0000000084764,-0.057329912828011274 +184001,920.0050000084765,-0.057329535019995236 +184002,920.0100000084766,-0.05732915728943877 +184003,920.0150000084767,-0.05732877963632666 +184004,920.0200000084768,-0.05732840206064371 +184005,920.0250000084769,-0.05732802456237471 +184006,920.030000008477,-0.05732764714150444 +184007,920.0350000084771,-0.057327269798017715 +184008,920.0400000084773,-0.05732689253189932 +184009,920.0450000084774,-0.057326515343134064 +184010,920.0500000084775,-0.057326138231706764 +184011,920.0550000084776,-0.05732576119760222 +184012,920.0600000084777,-0.05732538424080524 +184013,920.0650000084778,-0.05732500736130064 +184014,920.0700000084779,-0.05732463055907323 +184015,920.075000008478,-0.05732425383410785 +184016,920.0800000084781,-0.05732387718638931 +184017,920.0850000084782,-0.05732350061590243 +184018,920.0900000084783,-0.05732312412263205 +184019,920.0950000084785,-0.05732274770656301 +184020,920.1000000084786,-0.05732237136768012 +184021,920.1050000084787,-0.05732199510596823 +184022,920.1100000084788,-0.05732161892141218 +184023,920.1150000084789,-0.0573212428139968 +184024,920.120000008479,-0.057320866783706965 +184025,920.1250000084791,-0.05732049083052749 +184026,920.1300000084792,-0.057320114954443245 +184027,920.1350000084793,-0.05731973915543908 +184028,920.1400000084794,-0.057319363433499845 +184029,920.1450000084795,-0.057318987788610415 +184030,920.1500000084797,-0.05731861222075564 +184031,920.1550000084798,-0.05731823672992039 +184032,920.1600000084799,-0.05731786131608952 +184033,920.16500000848,-0.05731748597924792 +184034,920.1700000084801,-0.057317110719380455 +184035,920.1750000084802,-0.057316735536472 +184036,920.1800000084803,-0.05731636043050743 +184037,920.1850000084804,-0.057315985401471654 +184038,920.1900000084805,-0.05731561044934952 +184039,920.1950000084806,-0.05731523557412593 +184040,920.2000000084807,-0.05731486077578579 +184041,920.2050000084809,-0.057314486054313975 +184042,920.210000008481,-0.05731411140969539 +184043,920.2150000084811,-0.05731373684191492 +184044,920.2200000084812,-0.05731336235095748 +184045,920.2250000084813,-0.057312987936807974 +184046,920.2300000084814,-0.05731261359945131 +184047,920.2350000084815,-0.05731223933887239 +184048,920.2400000084816,-0.057311865155056124 +184049,920.2450000084817,-0.057311491047987446 +184050,920.2500000084818,-0.05731111701765126 +184051,920.2550000084819,-0.05731074306403249 +184052,920.260000008482,-0.057310369187116066 +184053,920.2650000084822,-0.057309995386886914 +184054,920.2700000084823,-0.05730962166332995 +184055,920.2750000084824,-0.05730924801643012 +184056,920.2800000084825,-0.05730887444617235 +184057,920.2850000084826,-0.057308500952541606 +184058,920.2900000084827,-0.0573081275355228 +184059,920.2950000084828,-0.05730775419510088 +184060,920.3000000084829,-0.057307380931260796 +184061,920.305000008483,-0.0573070077439875 +184062,920.3100000084831,-0.05730663463326594 +184063,920.3150000084833,-0.05730626159908108 +184064,920.3200000084834,-0.05730588864141787 +184065,920.3250000084835,-0.05730551576026126 +184066,920.3300000084836,-0.05730514295559624 +184067,920.3350000084837,-0.05730477022740776 +184068,920.3400000084838,-0.05730439757568078 +184069,920.3450000084839,-0.057304025000400285 +184070,920.350000008484,-0.057303652501551255 +184071,920.3550000084841,-0.057303280079118654 +184072,920.3600000084842,-0.057302907733087466 +184073,920.3650000084843,-0.05730253546344268 +184074,920.3700000084845,-0.05730216327016927 +184075,920.3750000084846,-0.05730179115325224 +184076,920.3800000084847,-0.05730141911267657 +184077,920.3850000084848,-0.05730104714842726 +184078,920.3900000084849,-0.0573006752604893 +184079,920.395000008485,-0.0573003034488477 +184080,920.4000000084851,-0.057299931713487455 +184081,920.4050000084852,-0.057299560054393565 +184082,920.4100000084853,-0.05729918847155106 +184083,920.4150000084854,-0.05729881696494493 +184084,920.4200000084855,-0.057298445534560205 +184085,920.4250000084857,-0.05729807418038189 +184086,920.4300000084858,-0.057297702902395005 +184087,920.4350000084859,-0.05729733170058456 +184088,920.440000008486,-0.057296960574935614 +184089,920.4450000084861,-0.057296589525433164 +184090,920.4500000084862,-0.05729621855206226 +184091,920.4550000084863,-0.05729584765480791 +184092,920.4600000084864,-0.057295476833655185 +184093,920.4650000084865,-0.05729510608858909 +184094,920.4700000084866,-0.05729473541959469 +184095,920.4750000084867,-0.05729436482665702 +184096,920.4800000084869,-0.057293994309761134 +184097,920.485000008487,-0.05729362386889207 +184098,920.4900000084871,-0.05729325350403489 +184099,920.4950000084872,-0.05729288321517466 +184100,920.5000000084873,-0.0572925130022964 +184101,920.5050000084874,-0.05729214286538522 +184102,920.5100000084875,-0.05729177280442615 +184103,920.5150000084876,-0.05729140281940427 +184104,920.5200000084877,-0.05729103291030465 +184105,920.5250000084878,-0.05729066307711236 +184106,920.530000008488,-0.05729029331981247 +184107,920.535000008488,-0.05728992363839006 +184108,920.5400000084882,-0.057289554032830224 +184109,920.5450000084883,-0.057289184503118026 +184110,920.5500000084884,-0.057288815049238564 +184111,920.5550000084885,-0.057288445671176934 +184112,920.5600000084886,-0.0572880763689182 +184113,920.5650000084887,-0.05728770714244748 +184114,920.5700000084888,-0.05728733799174986 +184115,920.5750000084889,-0.057286968916810455 +184116,920.580000008489,-0.05728659991761435 +184117,920.5850000084891,-0.05728623099414666 +184118,920.5900000084893,-0.0572858621463925 +184119,920.5950000084894,-0.05728549337433698 +184120,920.6000000084895,-0.057285124677965205 +184121,920.6050000084896,-0.057284756057262284 +184122,920.6100000084897,-0.05728438751221336 +184123,920.6150000084898,-0.05728401904280354 +184124,920.6200000084899,-0.05728365064901794 +184125,920.62500000849,-0.05728328233084171 +184126,920.6300000084901,-0.05728291408825997 +184127,920.6350000084902,-0.05728254592125785 +184128,920.6400000084903,-0.05728217782982049 +184129,920.6450000084905,-0.05728180981393302 +184130,920.6500000084906,-0.057281441873580606 +184131,920.6550000084907,-0.057281074008748364 +184132,920.6600000084908,-0.05728070621942146 +184133,920.6650000084909,-0.05728033850558504 +184134,920.670000008491,-0.05727997086722425 +184135,920.6750000084911,-0.05727960330432426 +184136,920.6800000084912,-0.057279235816870215 +184137,920.6850000084913,-0.05727886840484728 +184138,920.6900000084914,-0.0572785010682406 +184139,920.6950000084915,-0.05727813380703538 +184140,920.7000000084917,-0.05727776662121676 +184141,920.7050000084918,-0.057277399510769926 +184142,920.7100000084919,-0.05727703247568005 +184143,920.715000008492,-0.05727666551593231 +184144,920.7200000084921,-0.05727629863151188 +184145,920.7250000084922,-0.057275931822403946 +184146,920.7300000084923,-0.05727556508859371 +184147,920.7350000084924,-0.05727519843006634 +184148,920.7400000084925,-0.05727483184680703 +184149,920.7450000084926,-0.057274465338800984 +184150,920.7500000084927,-0.05727409890603339 +184151,920.7550000084929,-0.05727373254848945 +184152,920.760000008493,-0.05727336626615437 +184153,920.7650000084931,-0.057273000059013354 +184154,920.7700000084932,-0.05727263392705162 +184155,920.7750000084933,-0.057272267870254356 +184156,920.7800000084934,-0.05727190188860679 +184157,920.7850000084935,-0.057271535982094134 +184158,920.7900000084936,-0.05727117015070162 +184159,920.7950000084937,-0.057270804394414454 +184160,920.8000000084938,-0.057270438713217874 +184161,920.805000008494,-0.05727007310709709 +184162,920.8100000084941,-0.057269707576037346 +184163,920.8150000084942,-0.05726934212002387 +184164,920.8200000084943,-0.05726897673904189 +184165,920.8250000084944,-0.057268611433076655 +184166,920.8300000084945,-0.057268246202113404 +184167,920.8350000084946,-0.05726788104613738 +184168,920.8400000084947,-0.057267515965133825 +184169,920.8450000084948,-0.057267150959088 +184170,920.8500000084949,-0.05726678602798515 +184171,920.855000008495,-0.057266421171810536 +184172,920.8600000084951,-0.05726605639054941 +184173,920.8650000084953,-0.057265691684187034 +184174,920.8700000084954,-0.05726532705270867 +184175,920.8750000084955,-0.05726496249609959 +184176,920.8800000084956,-0.05726459801434504 +184177,920.8850000084957,-0.05726423360743031 +184178,920.8900000084958,-0.05726386927534068 +184179,920.8950000084959,-0.05726350501806143 +184180,920.900000008496,-0.0572631408355778 +184181,920.9050000084961,-0.05726277672787512 +184182,920.9100000084962,-0.05726241269493865 +184183,920.9150000084963,-0.05726204873675368 +184184,920.9200000084965,-0.05726168485330551 +184185,920.9250000084966,-0.057261321044579434 +184186,920.9300000084967,-0.057260957310560745 +184187,920.9350000084968,-0.05726059365123473 +184188,920.9400000084969,-0.057260230066586704 +184189,920.945000008497,-0.057259866556601965 +184190,920.9500000084971,-0.05725950312126583 +184191,920.9550000084972,-0.057259139760563585 +184192,920.9600000084973,-0.05725877647448057 +184193,920.9650000084974,-0.057258413263002086 +184194,920.9700000084975,-0.057258050126113444 +184195,920.9750000084977,-0.057257687063799995 +184196,920.9800000084978,-0.05725732407604703 +184197,920.9850000084979,-0.05725696116283989 +184198,920.990000008498,-0.0572565983241639 +184199,920.9950000084981,-0.0572562355600044 +184200,921.0000000084982,-0.057255872870346725 +184201,921.0050000084983,-0.05725551025517619 +184202,921.0100000084984,-0.057255147714478156 +184203,921.0150000084985,-0.05725478524823797 +184204,921.0200000084986,-0.05725442285644095 +184205,921.0250000084988,-0.05725406053907247 +184206,921.0300000084989,-0.05725369829611788 +184207,921.035000008499,-0.05725333612756252 +184208,921.0400000084991,-0.05725297403339175 +184209,921.0450000084992,-0.057252612013590935 +184210,921.0500000084993,-0.05725225006814543 +184211,921.0550000084994,-0.0572518881970406 +184212,921.0600000084995,-0.05725152640026183 +184213,921.0650000084996,-0.05725116467779447 +184214,921.0700000084997,-0.057250803029623897 +184215,921.0750000084998,-0.05725044145573548 +184216,921.0800000085,-0.05725007995611462 +184217,921.0850000085001,-0.05724971853074668 +184218,921.0900000085002,-0.05724935717961704 +184219,921.0950000085003,-0.05724899590271109 +184220,921.1000000085004,-0.05724863470001422 +184221,921.1050000085005,-0.05724827357151183 +184222,921.1100000085006,-0.057247912517189324 +184223,921.1150000085007,-0.057247551537032065 +184224,921.1200000085008,-0.05724719063102549 +184225,921.1250000085009,-0.057246829799154984 +184226,921.130000008501,-0.05724646904140595 +184227,921.1350000085012,-0.05724610835776379 +184228,921.1400000085013,-0.05724574774821393 +184229,921.1450000085014,-0.05724538721274178 +184230,921.1500000085015,-0.057245026751332743 +184231,921.1550000085016,-0.05724466636397226 +184232,921.1600000085017,-0.05724430605064573 +184233,921.1650000085018,-0.057243945811338605 +184234,921.1700000085019,-0.057243585646036294 +184235,921.175000008502,-0.057243225554724234 +184236,921.1800000085021,-0.057242865537387846 +184237,921.1850000085022,-0.057242505594012574 +184238,921.1900000085024,-0.057242145724583866 +184239,921.1950000085025,-0.057241785929087144 +184240,921.2000000085026,-0.057241426207507856 +184241,921.2050000085027,-0.057241066559831466 +184242,921.2100000085028,-0.05724070698604341 +184243,921.2150000085029,-0.05724034748612914 +184244,921.220000008503,-0.0572399880600741 +184245,921.2250000085031,-0.05723962870786376 +184246,921.2300000085032,-0.05723926942948358 +184247,921.2350000085033,-0.057238910224919025 +184248,921.2400000085034,-0.05723855109415556 +184249,921.2450000085036,-0.057238192037178635 +184250,921.2500000085037,-0.057237833053973744 +184251,921.2550000085038,-0.057237474144526346 +184252,921.2600000085039,-0.05723711530882193 +184253,921.265000008504,-0.05723675654684596 +184254,921.2700000085041,-0.05723639785858393 +184255,921.2750000085042,-0.05723603924402131 +184256,921.2800000085043,-0.0572356807031436 +184257,921.2850000085044,-0.057235322235936296 +184258,921.2900000085045,-0.05723496384238487 +184259,921.2950000085046,-0.057234605522474835 +184260,921.3000000085048,-0.05723424727619168 +184261,921.3050000085049,-0.05723388910352091 +184262,921.310000008505,-0.05723353100444803 +184263,921.3150000085051,-0.05723317297895854 +184264,921.3200000085052,-0.05723281502703795 +184265,921.3250000085053,-0.05723245714867177 +184266,921.3300000085054,-0.05723209934384552 +184267,921.3350000085055,-0.05723174161254471 +184268,921.3400000085056,-0.05723138395475486 +184269,921.3450000085057,-0.057231026370461506 +184270,921.3500000085058,-0.05723066885965017 +184271,921.355000008506,-0.057230311422306356 +184272,921.3600000085061,-0.05722995405841562 +184273,921.3650000085062,-0.05722959676796347 +184274,921.3700000085063,-0.05722923955093548 +184275,921.3750000085064,-0.05722888240731716 +184276,921.3800000085065,-0.057228525337094056 +184277,921.3850000085066,-0.05722816834025171 +184278,921.3900000085067,-0.05722781141677568 +184279,921.3950000085068,-0.0572274545666515 +184280,921.4000000085069,-0.05722709778986473 +184281,921.405000008507,-0.05722674108640092 +184282,921.4100000085072,-0.057226384456245644 +184283,921.4150000085073,-0.05722602789938445 +184284,921.4200000085074,-0.05722567141580289 +184285,921.4250000085075,-0.057225315005486554 +184286,921.4300000085076,-0.057224958668420985 +184287,921.4350000085077,-0.05722460240459176 +184288,921.4400000085078,-0.057224246213984475 +184289,921.4450000085079,-0.057223890096584684 +184290,921.450000008508,-0.05722353405237797 +184291,921.4550000085081,-0.05722317808134991 +184292,921.4600000085082,-0.057222822183486115 +184293,921.4650000085084,-0.05722246635877214 +184294,921.4700000085085,-0.05722211060719359 +184295,921.4750000085086,-0.057221754928736046 +184296,921.4800000085087,-0.057221399323385116 +184297,921.4850000085088,-0.05722104379112639 +184298,921.4900000085089,-0.057220688331945484 +184299,921.495000008509,-0.05722033294582799 +184300,921.5000000085091,-0.05721997763275951 +184301,921.5050000085092,-0.057219622392725655 +184302,921.5100000085093,-0.05721926722571203 +184303,921.5150000085094,-0.057218912131704276 +184304,921.5200000085096,-0.05721855711068797 +184305,921.5250000085097,-0.057218202162648765 +184306,921.5300000085098,-0.05721784728757227 +184307,921.5350000085099,-0.05721749248544411 +184308,921.54000000851,-0.05721713775624991 +184309,921.5450000085101,-0.057216783099975306 +184310,921.5500000085102,-0.05721642851660592 +184311,921.5550000085103,-0.0572160740061274 +184312,921.5600000085104,-0.05721571956852537 +184313,921.5650000085105,-0.0572153652037855 +184314,921.5700000085106,-0.057215010911893405 +184315,921.5750000085108,-0.05721465669283474 +184316,921.5800000085109,-0.05721430254659515 +184317,921.585000008511,-0.05721394847316029 +184318,921.5900000085111,-0.05721359447251581 +184319,921.5950000085112,-0.05721324054464738 +184320,921.6000000085113,-0.05721288668954065 +184321,921.6050000085114,-0.057212532907181285 +184322,921.6100000085115,-0.057212179197554947 +184323,921.6150000085116,-0.057211825560647314 +184324,921.6200000085117,-0.057211471996444045 +184325,921.6250000085118,-0.05721111850493081 +184326,921.630000008512,-0.05721076508609329 +184327,921.6350000085121,-0.05721041173991718 +184328,921.6400000085122,-0.05721005846638814 +184329,921.6450000085123,-0.05720970526549185 +184330,921.6500000085124,-0.057209352137214016 +184331,921.6550000085125,-0.05720899908154031 +184332,921.6600000085126,-0.05720864609845644 +184333,921.6650000085127,-0.05720829318794809 +184334,921.6700000085128,-0.05720794035000096 +184335,921.6750000085129,-0.05720758758460075 +184336,921.680000008513,-0.05720723489173317 +184337,921.6850000085132,-0.0572068822713839 +184338,921.6900000085133,-0.05720652972353868 +184339,921.6950000085134,-0.05720617724818319 +184340,921.7000000085135,-0.05720582484530317 +184341,921.7050000085136,-0.05720547251488432 +184342,921.7100000085137,-0.057205120256912365 +184343,921.7150000085138,-0.05720476807137304 +184344,921.7200000085139,-0.05720441595825204 +184345,921.725000008514,-0.05720406391753511 +184346,921.7300000085141,-0.057203711949207973 +184347,921.7350000085142,-0.05720336005325636 +184348,921.7400000085144,-0.057203008229666015 +184349,921.7450000085145,-0.05720265647842267 +184350,921.7500000085146,-0.05720230479951206 +184351,921.7550000085147,-0.05720195319291993 +184352,921.7600000085148,-0.05720160165863203 +184353,921.7650000085149,-0.05720125019663411 +184354,921.770000008515,-0.05720089880691191 +184355,921.7750000085151,-0.057200547489451185 +184356,921.7800000085152,-0.0572001962442377 +184357,921.7850000085153,-0.0571998450712572 +184358,921.7900000085154,-0.057199493970495466 +184359,921.7950000085156,-0.05719914294193825 +184360,921.8000000085157,-0.05719879198557132 +184361,921.8050000085158,-0.05719844110138044 +184362,921.8100000085159,-0.05719809028935138 +184363,921.815000008516,-0.05719773954946993 +184364,921.8200000085161,-0.057197388881721864 +184365,921.8250000085162,-0.05719703828609295 +184366,921.8300000085163,-0.05719668776256897 +184367,921.8350000085164,-0.05719633731113572 +184368,921.8400000085165,-0.05719598693177899 +184369,921.8450000085166,-0.05719563662448456 +184370,921.8500000085168,-0.05719528638923824 +184371,921.8550000085169,-0.057194936226025804 +184372,921.860000008517,-0.05719458613483306 +184373,921.8650000085171,-0.05719423611564581 +184374,921.8700000085172,-0.057193886168449865 +184375,921.8750000085173,-0.05719353629323102 +184376,921.8800000085174,-0.05719318648997509 +184377,921.8850000085175,-0.05719283675866788 +184378,921.8900000085176,-0.057192487099295225 +184379,921.8950000085177,-0.05719213751184292 +184380,921.9000000085178,-0.05719178799629678 +184381,921.905000008518,-0.05719143855264265 +184382,921.9100000085181,-0.05719108918086634 +184383,921.9150000085182,-0.05719073988095369 +184384,921.9200000085183,-0.05719039065289051 +184385,921.9250000085184,-0.05719004149666266 +184386,921.9300000085185,-0.057189692412255966 +184387,921.9350000085186,-0.057189343399656256 +184388,921.9400000085187,-0.05718899445884938 +184389,921.9450000085188,-0.05718864558982118 +184390,921.9500000085189,-0.0571882967925575 +184391,921.955000008519,-0.05718794806704419 +184392,921.9600000085192,-0.05718759941326709 +184393,921.9650000085193,-0.05718725083121209 +184394,921.9700000085194,-0.057186902320865006 +184395,921.9750000085195,-0.057186553882211714 +184396,921.9800000085196,-0.057186205515238085 +184397,921.9850000085197,-0.05718585721992997 +184398,921.9900000085198,-0.05718550899627324 +184399,921.9950000085199,-0.05718516084425378 +184400,922.00000000852,-0.05718481276385744 +184401,922.0050000085201,-0.05718446475507011 +184402,922.0100000085203,-0.05718411681787767 +184403,922.0150000085204,-0.05718376895226599 +184404,922.0200000085205,-0.05718342115822097 +184405,922.0250000085206,-0.057183073435728475 +184406,922.0300000085207,-0.05718272578477441 +184407,922.0350000085208,-0.05718237820534465 +184408,922.0400000085209,-0.05718203069742509 +184409,922.045000008521,-0.057181683261001655 +184410,922.0500000085211,-0.05718133589606022 +184411,922.0550000085212,-0.057180988602586684 +184412,922.0600000085213,-0.05718064138056696 +184413,922.0650000085215,-0.05718029422998696 +184414,922.0700000085216,-0.05717994715083258 +184415,922.0750000085217,-0.057179600143089745 +184416,922.0800000085218,-0.057179253206744364 +184417,922.0850000085219,-0.057178906341782354 +184418,922.090000008522,-0.05717855954818964 +184419,922.0950000085221,-0.057178212825952146 +184420,922.1000000085222,-0.05717786617505578 +184421,922.1050000085223,-0.0571775195954865 +184422,922.1100000085224,-0.057177173087230214 +184423,922.1150000085225,-0.05717682665027287 +184424,922.1200000085227,-0.0571764802846004 +184425,922.1250000085228,-0.05717613399019874 +184426,922.1300000085229,-0.05717578776705382 +184427,922.135000008523,-0.0571754416151516 +184428,922.1400000085231,-0.05717509553447802 +184429,922.1450000085232,-0.05717474952501904 +184430,922.1500000085233,-0.05717440358676059 +184431,922.1550000085234,-0.05717405771968865 +184432,922.1600000085235,-0.05717371192378916 +184433,922.1650000085236,-0.057173366199048094 +184434,922.1700000085237,-0.0571730205454514 +184435,922.1750000085239,-0.057172674962985046 +184436,922.180000008524,-0.05717232945163501 +184437,922.1850000085241,-0.057171984011387254 +184438,922.1900000085242,-0.05717163864222775 +184439,922.1950000085243,-0.05717129334414247 +184440,922.2000000085244,-0.057170948117117405 +184441,922.2050000085245,-0.05717060296113853 +184442,922.2100000085246,-0.05717025787619183 +184443,922.2150000085247,-0.05716991286226328 +184444,922.2200000085248,-0.05716956791933887 +184445,922.225000008525,-0.05716922304740461 +184446,922.230000008525,-0.05716887824644648 +184447,922.2350000085252,-0.05716853351645048 +184448,922.2400000085253,-0.057168188857402616 +184449,922.2450000085254,-0.05716784426928888 +184450,922.2500000085255,-0.057167499752095285 +184451,922.2550000085256,-0.05716715530580783 +184452,922.2600000085257,-0.05716681093041252 +184453,922.2650000085258,-0.05716646662589538 +184454,922.2700000085259,-0.05716612239224241 +184455,922.275000008526,-0.057165778229439655 +184456,922.2800000085261,-0.0571654341374731 +184457,922.2850000085263,-0.05716509011632879 +184458,922.2900000085264,-0.05716474616599274 +184459,922.2950000085265,-0.057164402286451 +184460,922.3000000085266,-0.057164058477689565 +184461,922.3050000085267,-0.0571637147396945 +184462,922.3100000085268,-0.05716337107245183 +184463,922.3150000085269,-0.057163027475947585 +184464,922.320000008527,-0.05716268395016782 +184465,922.3250000085271,-0.05716234049509858 +184466,922.3300000085272,-0.05716199711072589 +184467,922.3350000085273,-0.057161653797035826 +184468,922.3400000085275,-0.057161310554014425 +184469,922.3450000085276,-0.05716096738164774 +184470,922.3500000085277,-0.05716062427992182 +184471,922.3550000085278,-0.05716028124882274 +184472,922.3600000085279,-0.05715993828833656 +184473,922.365000008528,-0.057159595398449344 +184474,922.3700000085281,-0.057159252579147155 +184475,922.3750000085282,-0.05715890983041606 +184476,922.3800000085283,-0.05715856715224216 +184477,922.3850000085284,-0.05715822454461149 +184478,922.3900000085285,-0.05715788200751014 +184479,922.3950000085287,-0.05715753954092421 +184480,922.4000000085288,-0.05715719714483976 +184481,922.4050000085289,-0.05715685481924288 +184482,922.410000008529,-0.05715651256411967 +184483,922.4150000085291,-0.0571561703794562 +184484,922.4200000085292,-0.05715582826523859 +184485,922.4250000085293,-0.05715548622145292 +184486,922.4300000085294,-0.05715514424808529 +184487,922.4350000085295,-0.05715480234512181 +184488,922.4400000085296,-0.05715446051254857 +184489,922.4450000085297,-0.05715411875035167 +184490,922.4500000085299,-0.057153777058517236 +184491,922.45500000853,-0.05715343543703138 +184492,922.4600000085301,-0.05715309388588021 +184493,922.4650000085302,-0.05715275240504984 +184494,922.4700000085303,-0.05715241099452639 +184495,922.4750000085304,-0.057152069654296 +184496,922.4800000085305,-0.05715172838434478 +184497,922.4850000085306,-0.05715138718465885 +184498,922.4900000085307,-0.05715104605522434 +184499,922.4950000085308,-0.0571507049960274 +184500,922.500000008531,-0.05715036400705415 +184501,922.505000008531,-0.05715002308829074 +184502,922.5100000085312,-0.057149682239723304 +184503,922.5150000085313,-0.05714934146133798 +184504,922.5200000085314,-0.05714900075312092 +184505,922.5250000085315,-0.057148660115058265 +184506,922.5300000085316,-0.05714831954713617 +184507,922.5350000085317,-0.05714797904934079 +184508,922.5400000085318,-0.057147638621658274 +184509,922.5450000085319,-0.057147298264074796 +184510,922.550000008532,-0.057146957976576505 +184511,922.5550000085321,-0.057146617759149566 +184512,922.5600000085323,-0.057146277611780136 +184513,922.5650000085324,-0.05714593753445439 +184514,922.5700000085325,-0.05714559752715852 +184515,922.5750000085326,-0.05714525758987867 +184516,922.5800000085327,-0.05714491772260104 +184517,922.5850000085328,-0.057144577925311794 +184518,922.5900000085329,-0.05714423819799711 +184519,922.595000008533,-0.057143898540643195 +184520,922.6000000085331,-0.05714355895323621 +184521,922.6050000085332,-0.057143219435762366 +184522,922.6100000085333,-0.05714287998820782 +184523,922.6150000085335,-0.05714254061055881 +184524,922.6200000085336,-0.05714220130280151 +184525,922.6250000085337,-0.057141862064922125 +184526,922.6300000085338,-0.05714152289690686 +184527,922.6350000085339,-0.057141183798741925 +184528,922.640000008534,-0.05714084477041351 +184529,922.6450000085341,-0.05714050581190785 +184530,922.6500000085342,-0.057140166923211125 +184531,922.6550000085343,-0.05713982810430957 +184532,922.6600000085344,-0.057139489355189414 +184533,922.6650000085345,-0.05713915067583686 +184534,922.6700000085347,-0.05713881206623813 +184535,922.6750000085348,-0.057138473526379456 +184536,922.6800000085349,-0.05713813505624708 +184537,922.685000008535,-0.05713779665582722 +184538,922.6900000085351,-0.0571374583251061 +184539,922.6950000085352,-0.057137120064069964 +184540,922.7000000085353,-0.05713678187270506 +184541,922.7050000085354,-0.05713644375099761 +184542,922.7100000085355,-0.057136105698933876 +184543,922.7150000085356,-0.0571357677165001 +184544,922.7200000085357,-0.05713542980368251 +184545,922.7250000085359,-0.05713509196046739 +184546,922.730000008536,-0.05713475418684098 +184547,922.7350000085361,-0.05713441648278953 +184548,922.7400000085362,-0.05713407884829931 +184549,922.7450000085363,-0.05713374128335658 +184550,922.7500000085364,-0.0571334037879476 +184551,922.7550000085365,-0.05713306636205864 +184552,922.7600000085366,-0.057132729005675974 +184553,922.7650000085367,-0.057132391718785855 +184554,922.7700000085368,-0.05713205450137458 +184555,922.775000008537,-0.05713171735342843 +184556,922.7800000085371,-0.05713138027493366 +184557,922.7850000085372,-0.05713104326587657 +184558,922.7900000085373,-0.057130706326243445 +184559,922.7950000085374,-0.05713036945602056 +184560,922.8000000085375,-0.057130032655194216 +184561,922.8050000085376,-0.0571296959237507 +184562,922.8100000085377,-0.05712935926167632 +184563,922.8150000085378,-0.05712902266895735 +184564,922.8200000085379,-0.05712868614558011 +184565,922.825000008538,-0.05712834969153089 +184566,922.8300000085381,-0.05712801330679601 +184567,922.8350000085383,-0.057127676991361766 +184568,922.8400000085384,-0.057127340745214486 +184569,922.8450000085385,-0.05712700456834047 +184570,922.8500000085386,-0.057126668460726025 +184571,922.8550000085387,-0.05712633242235749 +184572,922.8600000085388,-0.05712599645322118 +184573,922.8650000085389,-0.057125660553303405 +184574,922.870000008539,-0.057125324722590506 +184575,922.8750000085391,-0.05712498896106881 +184576,922.8800000085392,-0.05712465326872463 +184577,922.8850000085394,-0.05712431764554433 +184578,922.8900000085395,-0.057123982091514224 +184579,922.8950000085396,-0.05712364660662066 +184580,922.9000000085397,-0.057123311190849964 +184581,922.9050000085398,-0.0571229758441885 +184582,922.9100000085399,-0.05712264056662262 +184583,922.91500000854,-0.05712230535813866 +184584,922.9200000085401,-0.057121970218722964 +184585,922.9250000085402,-0.0571216351483619 +184586,922.9300000085403,-0.05712130014704182 +184587,922.9350000085404,-0.057120965214749075 +184588,922.9400000085406,-0.05712063035147004 +184589,922.9450000085407,-0.057120295557191086 +184590,922.9500000085408,-0.05711996083189857 +184591,922.9550000085409,-0.05711962617557884 +184592,922.960000008541,-0.0571192915882183 +184593,922.9650000085411,-0.057118957069803314 +184594,922.9700000085412,-0.05711862262032027 +184595,922.9750000085413,-0.05711828823975553 +184596,922.9800000085414,-0.05711795392809549 +184597,922.9850000085415,-0.05711761968532652 +184598,922.9900000085416,-0.057117285511435016 +184599,922.9950000085418,-0.057116951406407365 +184600,923.0000000085419,-0.05711661737022997 +184601,923.005000008542,-0.057116283402889226 +184602,923.0100000085421,-0.057115949504371516 +184603,923.0150000085422,-0.05711561567466325 +184604,923.0200000085423,-0.057115281913750836 +184605,923.0250000085424,-0.057114948221620665 +184606,923.0300000085425,-0.05711461459825915 +184607,923.0350000085426,-0.05711428104365271 +184608,923.0400000085427,-0.05711394755778775 +184609,923.0450000085428,-0.0571136141406507 +184610,923.050000008543,-0.05711328079222795 +184611,923.0550000085431,-0.05711294751250596 +184612,923.0600000085432,-0.05711261430147111 +184613,923.0650000085433,-0.05711228115910986 +184614,923.0700000085434,-0.05711194808540861 +184615,923.0750000085435,-0.05711161508035382 +184616,923.0800000085436,-0.0571112821439319 +184617,923.0850000085437,-0.05711094927612931 +184618,923.0900000085438,-0.05711061647693245 +184619,923.0950000085439,-0.057110283746327796 +184620,923.100000008544,-0.05710995108430179 +184621,923.1050000085442,-0.05710961849084086 +184622,923.1100000085443,-0.05710928596593146 +184623,923.1150000085444,-0.05710895350956005 +184624,923.1200000085445,-0.05710862112171309 +184625,923.1250000085446,-0.057108288802377005 +184626,923.1300000085447,-0.05710795655153828 +184627,923.1350000085448,-0.057107624369183374 +184628,923.1400000085449,-0.057107292255298744 +184629,923.145000008545,-0.05710696020987086 +184630,923.1500000085451,-0.057106628232886196 +184631,923.1550000085452,-0.057106296324331215 +184632,923.1600000085454,-0.0571059644841924 +184633,923.1650000085455,-0.057105632712456215 +184634,923.1700000085456,-0.057105301009109155 +184635,923.1750000085457,-0.057104969374137685 +184636,923.1800000085458,-0.057104637807528294 +184637,923.1850000085459,-0.05710430630926749 +184638,923.190000008546,-0.05710397487934173 +184639,923.1950000085461,-0.057103643517737536 +184640,923.2000000085462,-0.057103312224441385 +184641,923.2050000085463,-0.057102980999439765 +184642,923.2100000085464,-0.05710264984271919 +184643,923.2150000085466,-0.05710231875426616 +184644,923.2200000085467,-0.05710198773406718 +184645,923.2250000085468,-0.057101656782108746 +184646,923.2300000085469,-0.05710132589837738 +184647,923.235000008547,-0.057100995082859596 +184648,923.2400000085471,-0.05710066433554191 +184649,923.2450000085472,-0.057100333656410825 +184650,923.2500000085473,-0.05710000304545288 +184651,923.2550000085474,-0.05709967250265459 +184652,923.2600000085475,-0.057099342028002466 +184653,923.2650000085476,-0.057099011621483044 +184654,923.2700000085478,-0.057098681283082854 +184655,923.2750000085479,-0.05709835101278844 +184656,923.280000008548,-0.05709802081058632 +184657,923.2850000085481,-0.057097690676463045 +184658,923.2900000085482,-0.05709736061040515 +184659,923.2950000085483,-0.057097030612399166 +184660,923.3000000085484,-0.057096700682431646 +184661,923.3050000085485,-0.05709637082048914 +184662,923.3100000085486,-0.057096041026558214 +184663,923.3150000085487,-0.0570957113006254 +184664,923.3200000085488,-0.05709538164267725 +184665,923.325000008549,-0.05709505205270034 +184666,923.3300000085491,-0.05709472253068121 +184667,923.3350000085492,-0.05709439307660644 +184668,923.3400000085493,-0.057094063690462576 +184669,923.3450000085494,-0.0570937343722362 +184670,923.3500000085495,-0.057093405121913875 +184671,923.3550000085496,-0.057093075939482194 +184672,923.3600000085497,-0.0570927468249277 +184673,923.3650000085498,-0.057092417778236995 +184674,923.3700000085499,-0.05709208879939665 +184675,923.37500000855,-0.057091759888393254 +184676,923.3800000085502,-0.05709143104521339 +184677,923.3850000085503,-0.05709110226984363 +184678,923.3900000085504,-0.0570907735622706 +184679,923.3950000085505,-0.05709044492248086 +184680,923.4000000085506,-0.05709011635046102 +184681,923.4050000085507,-0.05708978784619767 +184682,923.4100000085508,-0.05708945940967742 +184683,923.4150000085509,-0.05708913104088687 +184684,923.420000008551,-0.05708880273981262 +184685,923.4250000085511,-0.057088474506441285 +184686,923.4300000085512,-0.05708814634075948 +184687,923.4350000085514,-0.057087818242753816 +184688,923.4400000085515,-0.057087490212410885 +184689,923.4450000085516,-0.05708716224971734 +184690,923.4500000085517,-0.05708683435465977 +184691,923.4550000085518,-0.05708650652722483 +184692,923.4600000085519,-0.05708617876739912 +184693,923.465000008552,-0.057085851075169274 +184694,923.4700000085521,-0.05708552345052193 +184695,923.4750000085522,-0.05708519589344373 +184696,923.4800000085523,-0.057084868403921275 +184697,923.4850000085524,-0.05708454098194123 +184698,923.4900000085526,-0.05708421362749023 +184699,923.4950000085527,-0.057083886340554925 +184700,923.5000000085528,-0.05708355912112195 +184701,923.5050000085529,-0.05708323196917796 +184702,923.510000008553,-0.05708290488470961 +184703,923.5150000085531,-0.057082577867703536 +184704,923.5200000085532,-0.057082250918146414 +184705,923.5250000085533,-0.05708192403602489 +184706,923.5300000085534,-0.05708159722132562 +184707,923.5350000085535,-0.05708127047403528 +184708,923.5400000085536,-0.05708094379414054 +184709,923.5450000085538,-0.05708061718162806 +184710,923.5500000085539,-0.057080290636484496 +184711,923.555000008554,-0.05707996415869654 +184712,923.5600000085541,-0.05707963774825086 +184713,923.5650000085542,-0.05707931140513415 +184714,923.5700000085543,-0.057078985129333064 +184715,923.5750000085544,-0.0570786589208343 +184716,923.5800000085545,-0.05707833277962455 +184717,923.5850000085546,-0.057078006705690486 +184718,923.5900000085547,-0.057077680699018814 +184719,923.5950000085548,-0.05707735475959622 +184720,923.600000008555,-0.0570770288874094 +184721,923.6050000085551,-0.057076703082445064 +184722,923.6100000085552,-0.057076377344689906 +184723,923.6150000085553,-0.057076051674130615 +184724,923.6200000085554,-0.0570757260707539 +184725,923.6250000085555,-0.05707540053454649 +184726,923.6300000085556,-0.05707507506549507 +184727,923.6350000085557,-0.057074749663586374 +184728,923.6400000085558,-0.05707442432880711 +184729,923.6450000085559,-0.057074099061143996 +184730,923.650000008556,-0.05707377386058376 +184731,923.6550000085562,-0.057073448727113105 +184732,923.6600000085563,-0.05707312366071878 +184733,923.6650000085564,-0.057072798661387494 +184734,923.6700000085565,-0.057072473729105996 +184735,923.6750000085566,-0.05707214886386101 +184736,923.6800000085567,-0.057071824065639265 +184737,923.6850000085568,-0.057071499334427504 +184738,923.6900000085569,-0.05707117467021247 +184739,923.695000008557,-0.057070850072980905 +184740,923.7000000085571,-0.057070525542719554 +184741,923.7050000085572,-0.05707020107941517 +184742,923.7100000085574,-0.0570698766830545 +184743,923.7150000085575,-0.057069552353624306 +184744,923.7200000085576,-0.057069228091111326 +184745,923.7250000085577,-0.05706890389550233 +184746,923.7300000085578,-0.05706857976678407 +184747,923.7350000085579,-0.05706825570494331 +184748,923.740000008558,-0.05706793170996683 +184749,923.7450000085581,-0.05706760778184139 +184750,923.7500000085582,-0.05706728392055375 +184751,923.7550000085583,-0.05706696012609069 +184752,923.7600000085584,-0.05706663639843899 +184753,923.7650000085586,-0.057066312737585424 +184754,923.7700000085587,-0.05706598914351677 +184755,923.7750000085588,-0.057065665616219834 +184756,923.7800000085589,-0.05706534215568137 +184757,923.785000008559,-0.05706501876188817 +184758,923.7900000085591,-0.05706469543482705 +184759,923.7950000085592,-0.057064372174484776 +184760,923.8000000085593,-0.05706404898084816 +184761,923.8050000085594,-0.05706372585390398 +184762,923.8100000085595,-0.05706340279363904 +184763,923.8150000085597,-0.057063079800040176 +184764,923.8200000085598,-0.05706275687309416 +184765,923.8250000085599,-0.05706243401278781 +184766,923.83000000856,-0.05706211121910793 +184767,923.8350000085601,-0.05706178849204135 +184768,923.8400000085602,-0.05706146583157486 +184769,923.8450000085603,-0.05706114323769529 +184770,923.8500000085604,-0.05706082071038947 +184771,923.8550000085605,-0.0570604982496442 +184772,923.8600000085606,-0.05706017585544633 +184773,923.8650000085607,-0.05705985352778268 +184774,923.8700000085609,-0.05705953126664007 +184775,923.875000008561,-0.05705920907200533 +184776,923.8800000085611,-0.057058886943865315 +184777,923.8850000085612,-0.057058564882206855 +184778,923.8900000085613,-0.057058242887016775 +184779,923.8950000085614,-0.057057920958281924 +184780,923.9000000085615,-0.05705759909598916 +184781,923.9050000085616,-0.057057277300125324 +184782,923.9100000085617,-0.05705695557067726 +184783,923.9150000085618,-0.05705663390763182 +184784,923.9200000085619,-0.05705631231097587 +184785,923.925000008562,-0.05705599078069625 +184786,923.9300000085622,-0.05705566931677984 +184787,923.9350000085623,-0.05705534791921349 +184788,923.9400000085624,-0.05705502658798406 +184789,923.9450000085625,-0.05705470532307842 +184790,923.9500000085626,-0.05705438412448345 +184791,923.9550000085627,-0.057054062992186017 +184792,923.9600000085628,-0.05705374192617299 +184793,923.9650000085629,-0.05705342092643126 +184794,923.970000008563,-0.05705309999294768 +184795,923.9750000085631,-0.05705277912570915 +184796,923.9800000085633,-0.05705245832470256 +184797,923.9850000085634,-0.05705213758991478 +184798,923.9900000085635,-0.05705181692133272 +184799,923.9950000085636,-0.057051496318943254 +184800,924.0000000085637,-0.057051175782733284 +184801,924.0050000085638,-0.057050855312689705 +184802,924.0100000085639,-0.057050534908799425 +184803,924.015000008564,-0.05705021457104933 +184804,924.0200000085641,-0.05704989429942633 +184805,924.0250000085642,-0.05704957409391733 +184806,924.0300000085643,-0.057049253954509244 +184807,924.0350000085645,-0.05704893388118897 +184808,924.0400000085646,-0.057048613873943436 +184809,924.0450000085647,-0.057048293932759564 +184810,924.0500000085648,-0.05704797405762426 +184811,924.0550000085649,-0.057047654248524454 +184812,924.060000008565,-0.05704733450544706 +184813,924.0650000085651,-0.057047014828379004 +184814,924.0700000085652,-0.05704669521730723 +184815,924.0750000085653,-0.05704637567221866 +184816,924.0800000085654,-0.057046056193100214 +184817,924.0850000085655,-0.05704573677993885 +184818,924.0900000085657,-0.05704541743272149 +184819,924.0950000085658,-0.05704509815143508 +184820,924.1000000085659,-0.057044778936066576 +184821,924.105000008566,-0.057044459786602913 +184822,924.1100000085661,-0.057044140703031036 +184823,924.1150000085662,-0.05704382168533789 +184824,924.1200000085663,-0.057043502733510436 +184825,924.1250000085664,-0.05704318384753564 +184826,924.1300000085665,-0.057042865027400455 +184827,924.1350000085666,-0.05704254627309183 +184828,924.1400000085667,-0.05704222758459673 +184829,924.1450000085669,-0.05704190896190214 +184830,924.150000008567,-0.057041590404995006 +184831,924.1550000085671,-0.0570412719138623 +184832,924.1600000085672,-0.05704095348849102 +184833,924.1650000085673,-0.0570406351288681 +184834,924.1700000085674,-0.05704031683498056 +184835,924.1750000085675,-0.05703999860681535 +184836,924.1800000085676,-0.05703968044435946 +184837,924.1850000085677,-0.057039362347599876 +184838,924.1900000085678,-0.05703904431652359 +184839,924.195000008568,-0.05703872635111759 +184840,924.200000008568,-0.057038408451368865 +184841,924.2050000085682,-0.05703809061726442 +184842,924.2100000085683,-0.05703777284879124 +184843,924.2150000085684,-0.05703745514593632 +184844,924.2200000085685,-0.057037137508686685 +184845,924.2250000085686,-0.057036819937029325 +184846,924.2300000085687,-0.05703650243095123 +184847,924.2350000085688,-0.057036184990439436 +184848,924.2400000085689,-0.057035867615480955 +184849,924.245000008569,-0.05703555030606278 +184850,924.2500000085691,-0.05703523306217194 +184851,924.2550000085693,-0.057034915883795466 +184852,924.2600000085694,-0.057034598770920354 +184853,924.2650000085695,-0.057034281723533656 +184854,924.2700000085696,-0.057033964741622374 +184855,924.2750000085697,-0.05703364782517355 +184856,924.2800000085698,-0.05703333097417421 +184857,924.2850000085699,-0.05703301418861139 +184858,924.29000000857,-0.05703269746847212 +184859,924.2950000085701,-0.05703238081374346 +184860,924.3000000085702,-0.057032064224412427 +184861,924.3050000085703,-0.057031747700466075 +184862,924.3100000085705,-0.05703143124189145 +184863,924.3150000085706,-0.0570311148486756 +184864,924.3200000085707,-0.05703079852080558 +184865,924.3250000085708,-0.057030482258268435 +184866,924.3300000085709,-0.057030166061051234 +184867,924.335000008571,-0.05702984992914102 +184868,924.3400000085711,-0.05702953386252486 +184869,924.3450000085712,-0.05702921786118981 +184870,924.3500000085713,-0.057028901925122936 +184871,924.3550000085714,-0.05702858605431132 +184872,924.3600000085715,-0.05702827024874203 +184873,924.3650000085717,-0.05702795450840213 +184874,924.3700000085718,-0.0570276388332787 +184875,924.3750000085719,-0.05702732322335881 +184876,924.380000008572,-0.057027007678629546 +184877,924.3850000085721,-0.05702669219907799 +184878,924.3900000085722,-0.057026376784691225 +184879,924.3950000085723,-0.05702606143545634 +184880,924.4000000085724,-0.05702574615136044 +184881,924.4050000085725,-0.05702543093239059 +184882,924.4100000085726,-0.057025115778533905 +184883,924.4150000085727,-0.057024800689777465 +184884,924.4200000085729,-0.05702448566610838 +184885,924.425000008573,-0.05702417070751375 +184886,924.4300000085731,-0.05702385581398067 +184887,924.4350000085732,-0.05702354098549627 +184888,924.4400000085733,-0.05702322622204764 +184889,924.4450000085734,-0.0570229115236219 +184890,924.4500000085735,-0.05702259689020616 +184891,924.4550000085736,-0.05702228232178754 +184892,924.4600000085737,-0.05702196781835316 +184893,924.4650000085738,-0.05702165337989014 +184894,924.470000008574,-0.05702133900638559 +184895,924.475000008574,-0.05702102469782665 +184896,924.4800000085742,-0.05702071045420044 +184897,924.4850000085743,-0.05702039627549411 +184898,924.4900000085744,-0.057020082161694775 +184899,924.4950000085745,-0.05701976811278958 +184900,924.5000000085746,-0.05701945412876565 +184901,924.5050000085747,-0.05701914020961013 +184902,924.5100000085748,-0.057018826355310186 +184903,924.5150000085749,-0.057018512565852934 +184904,924.520000008575,-0.057018198841225526 +184905,924.5250000085751,-0.05701788518141512 +184906,924.5300000085753,-0.057017571586408876 +184907,924.5350000085754,-0.05701725805619394 +184908,924.5400000085755,-0.05701694459075748 +184909,924.5450000085756,-0.05701663119008663 +184910,924.5500000085757,-0.05701631785416858 +184911,924.5550000085758,-0.05701600458299048 +184912,924.5600000085759,-0.057015691376539494 +184913,924.565000008576,-0.057015378234802815 +184914,924.5700000085761,-0.05701506515776758 +184915,924.5750000085762,-0.05701475214542099 +184916,924.5800000085763,-0.057014439197750205 +184917,924.5850000085765,-0.057014126314742425 +184918,924.5900000085766,-0.05701381349638481 +184919,924.5950000085767,-0.057013500742664563 +184920,924.6000000085768,-0.05701318805356886 +184921,924.6050000085769,-0.057012875429084876 +184922,924.610000008577,-0.057012562869199826 +184923,924.6150000085771,-0.0570122503739009 +184924,924.6200000085772,-0.057011937943175287 +184925,924.6250000085773,-0.05701162557701018 +184926,924.6300000085774,-0.05701131327539279 +184927,924.6350000085775,-0.057011001038310326 +184928,924.6400000085777,-0.05701068886574997 +184929,924.6450000085778,-0.057010376757698954 +184930,924.6500000085779,-0.05701006471414448 +184931,924.655000008578,-0.05700975273507375 +184932,924.6600000085781,-0.057009440820473996 +184933,924.6650000085782,-0.057009128970332425 +184934,924.6700000085783,-0.057008817184636275 +184935,924.6750000085784,-0.057008505463372744 +184936,924.6800000085785,-0.057008193806529064 +184937,924.6850000085786,-0.057007882214092476 +184938,924.6900000085787,-0.05700757068605019 +184939,924.6950000085789,-0.05700725922238945 +184940,924.700000008579,-0.057006947823097495 +184941,924.7050000085791,-0.057006636488161545 +184942,924.7100000085792,-0.057006325217568855 +184943,924.7150000085793,-0.057006014011306665 +184944,924.7200000085794,-0.05700570286936221 +184945,924.7250000085795,-0.057005391791722745 +184946,924.7300000085796,-0.057005080778375516 +184947,924.7350000085797,-0.05700476982930778 +184948,924.7400000085798,-0.057004458944506765 +184949,924.74500000858,-0.057004148123959764 +184950,924.7500000085801,-0.05700383736765401 +184951,924.7550000085802,-0.05700352667557678 +184952,924.7600000085803,-0.05700321604771533 +184953,924.7650000085804,-0.05700290548405691 +184954,924.7700000085805,-0.05700259498458881 +184955,924.7750000085806,-0.057002284549298295 +184956,924.7800000085807,-0.05700197417817265 +184957,924.7850000085808,-0.05700166387119913 +184958,924.7900000085809,-0.05700135362836501 +184959,924.795000008581,-0.05700104344965759 +184960,924.8000000085812,-0.05700073333506413 +184961,924.8050000085813,-0.05700042328457192 +184962,924.8100000085814,-0.05700011329816827 +184963,924.8150000085815,-0.05699980337584046 +184964,924.8200000085816,-0.05699949351757576 +184965,924.8250000085817,-0.056999183723361484 +184966,924.8300000085818,-0.05699887399318493 +184967,924.8350000085819,-0.056998564327033395 +184968,924.840000008582,-0.05699825472489417 +184969,924.8450000085821,-0.056997945186754564 +184970,924.8500000085822,-0.05699763571260189 +184971,924.8550000085824,-0.05699732630242345 +184972,924.8600000085825,-0.05699701695620655 +184973,924.8650000085826,-0.05699670767393852 +184974,924.8700000085827,-0.05699639845560665 +184975,924.8750000085828,-0.05699608930119828 +184976,924.8800000085829,-0.05699578021070073 +184977,924.885000008583,-0.05699547118410132 +184978,924.8900000085831,-0.056995162221387376 +184979,924.8950000085832,-0.056994853322546224 +184980,924.9000000085833,-0.05699454448756518 +184981,924.9050000085834,-0.05699423571643159 +184982,924.9100000085836,-0.05699392700913279 +184983,924.9150000085837,-0.05699361836565612 +184984,924.9200000085838,-0.05699330978598891 +184985,924.9250000085839,-0.05699300127011851 +184986,924.930000008584,-0.05699269281803227 +184987,924.9350000085841,-0.05699238442971752 +184988,924.9400000085842,-0.05699207610516163 +184989,924.9450000085843,-0.05699176784435193 +184990,924.9500000085844,-0.05699145964727579 +184991,924.9550000085845,-0.056991151513920556 +184992,924.9600000085846,-0.056990843444273596 +184993,924.9650000085848,-0.056990535438322255 +184994,924.9700000085849,-0.056990227496053904 +184995,924.975000008585,-0.05698991961745593 +184996,924.9800000085851,-0.05698961180251567 +184997,924.9850000085852,-0.056989304051220505 +184998,924.9900000085853,-0.0569889963635578 +184999,924.9950000085854,-0.05698868873951496 +185000,925.0000000085855,-0.056988381179079325 +185001,925.0050000085856,-0.05698807368223831 +185002,925.0100000085857,-0.05698776624897927 +185003,925.0150000085858,-0.056987458879289604 +185004,925.020000008586,-0.056987151573156695 +185005,925.0250000085861,-0.056986844330567936 +185006,925.0300000085862,-0.056986537151510704 +185007,925.0350000085863,-0.05698623003597241 +185008,925.0400000085864,-0.05698592298394046 +185009,925.0450000085865,-0.05698561599540223 +185010,925.0500000085866,-0.05698530907034512 +185011,925.0550000085867,-0.056985002208756554 +185012,925.0600000085868,-0.05698469541062393 +185013,925.0650000085869,-0.05698438867593464 +185014,925.070000008587,-0.05698408200467611 +185015,925.0750000085872,-0.05698377539683575 +185016,925.0800000085873,-0.05698346885240099 +185017,925.0850000085874,-0.05698316237135923 +185018,925.0900000085875,-0.0569828559536979 +185019,925.0950000085876,-0.05698254959940441 +185020,925.1000000085877,-0.0569822433084662 +185021,925.1050000085878,-0.056981937080870695 +185022,925.1100000085879,-0.05698163091660531 +185023,925.115000008588,-0.0569813248156575 +185024,925.1200000085881,-0.05698101877801469 +185025,925.1250000085882,-0.056980712803664305 +185026,925.1300000085884,-0.056980406892593795 +185027,925.1350000085885,-0.0569801010447906 +185028,925.1400000085886,-0.056979795260242154 +185029,925.1450000085887,-0.056979489538935925 +185030,925.1500000085888,-0.05697918388085934 +185031,925.1550000085889,-0.05697887828599987 +185032,925.160000008589,-0.05697857275434495 +185033,925.1650000085891,-0.05697826728588205 +185034,925.1700000085892,-0.05697796188059863 +185035,925.1750000085893,-0.05697765653848212 +185036,925.1800000085894,-0.05697735125952002 +185037,925.1850000085896,-0.056977046043699776 +185038,925.1900000085897,-0.05697674089100886 +185039,925.1950000085898,-0.05697643580143475 +185040,925.2000000085899,-0.056976130774964905 +185041,925.20500000859,-0.05697582581158679 +185042,925.2100000085901,-0.0569755209112879 +185043,925.2150000085902,-0.05697521607405572 +185044,925.2200000085903,-0.056974911299877716 +185045,925.2250000085904,-0.05697460658874138 +185046,925.2300000085905,-0.056974301940634194 +185047,925.2350000085906,-0.05697399735554365 +185048,925.2400000085908,-0.05697369283345723 +185049,925.2450000085909,-0.056973388374362444 +185050,925.250000008591,-0.056973083978246776 +185051,925.2550000085911,-0.05697277964509773 +185052,925.2600000085912,-0.0569724753749028 +185053,925.2650000085913,-0.056972171167649494 +185054,925.2700000085914,-0.056971867023325316 +185055,925.2750000085915,-0.05697156294191777 +185056,925.2800000085916,-0.05697125892341437 +185057,925.2850000085917,-0.05697095496780263 +185058,925.2900000085918,-0.05697065107507005 +185059,925.295000008592,-0.05697034724520417 +185060,925.3000000085921,-0.0569700434781925 +185061,925.3050000085922,-0.056969739774022546 +185062,925.3100000085923,-0.05696943613268185 +185063,925.3150000085924,-0.05696913255415794 +185064,925.3200000085925,-0.05696882903843833 +185065,925.3250000085926,-0.05696852558551056 +185066,925.3300000085927,-0.05696822219536216 +185067,925.3350000085928,-0.05696791886798067 +185068,925.3400000085929,-0.05696761560335362 +185069,925.345000008593,-0.056967312401468566 +185070,925.3500000085932,-0.05696700926231303 +185071,925.3550000085933,-0.05696670618587457 +185072,925.3600000085934,-0.05696640317214073 +185073,925.3650000085935,-0.05696610022109907 +185074,925.3700000085936,-0.05696579733273713 +185075,925.3750000085937,-0.05696549450704245 +185076,925.3800000085938,-0.05696519174400261 +185077,925.3850000085939,-0.05696488904360517 +185078,925.390000008594,-0.05696458640583768 +185079,925.3950000085941,-0.056964283830687704 +185080,925.4000000085942,-0.056963981318142815 +185081,925.4050000085944,-0.05696367886819057 +185082,925.4100000085945,-0.056963376480818555 +185083,925.4150000085946,-0.05696307415601433 +185084,925.4200000085947,-0.05696277189376548 +185085,925.4250000085948,-0.05696246969405958 +185086,925.4300000085949,-0.0569621675568842 +185087,925.435000008595,-0.05696186548222694 +185088,925.4400000085951,-0.056961563470075374 +185089,925.4450000085952,-0.056961261520417084 +185090,925.4500000085953,-0.05696095963323967 +185091,925.4550000085954,-0.05696065780853071 +185092,925.4600000085956,-0.056960356046277826 +185093,925.4650000085957,-0.05696005434646858 +185094,925.4700000085958,-0.056959752709090594 +185095,925.4750000085959,-0.05695945113413146 +185096,925.480000008596,-0.056959149621578775 +185097,925.4850000085961,-0.05695884817142016 +185098,925.4900000085962,-0.05695854678364322 +185099,925.4950000085963,-0.05695824545823555 +185100,925.5000000085964,-0.05695794419518478 +185101,925.5050000085965,-0.05695764299447852 +185102,925.5100000085966,-0.05695734185610439 +185103,925.5150000085968,-0.05695704078005001 +185104,925.5200000085969,-0.05695673976630299 +185105,925.525000008597,-0.056956438814850956 +185106,925.5300000085971,-0.05695613792568155 +185107,925.5350000085972,-0.05695583709878238 +185108,925.5400000085973,-0.056955536334141105 +185109,925.5450000085974,-0.05695523563174532 +185110,925.5500000085975,-0.056954934991582704 +185111,925.5550000085976,-0.056954634413640876 +185112,925.5600000085977,-0.05695433389790746 +185113,925.5650000085978,-0.056954033444370125 +185114,925.570000008598,-0.05695373305301651 +185115,925.5750000085981,-0.05695343272383424 +185116,925.5800000085982,-0.056953132456810995 +185117,925.5850000085983,-0.05695283225193441 +185118,925.5900000085984,-0.05695253210919215 +185119,925.5950000085985,-0.05695223202857186 +185120,925.6000000085986,-0.0569519320100612 +185121,925.6050000085987,-0.056951632053647845 +185122,925.6100000085988,-0.05695133215931945 +185123,925.6150000085989,-0.05695103232706369 +185124,925.620000008599,-0.05695073255686822 +185125,925.6250000085992,-0.05695043284872071 +185126,925.6300000085993,-0.05695013320260884 +185127,925.6350000085994,-0.05694983361852029 +185128,925.6400000085995,-0.05694953409644273 +185129,925.6450000085996,-0.056949234636363845 +185130,925.6500000085997,-0.056948935238271305 +185131,925.6550000085998,-0.0569486359021528 +185132,925.6600000085999,-0.05694833662799603 +185133,925.6650000086,-0.056948037415788674 +185134,925.6700000086001,-0.056947738265518424 +185135,925.6750000086003,-0.05694743917717298 +185136,925.6800000086004,-0.056947140150740025 +185137,925.6850000086005,-0.05694684118620727 +185138,925.6900000086006,-0.05694654228356241 +185139,925.6950000086007,-0.05694624344279315 +185140,925.7000000086008,-0.056945944663887194 +185141,925.7050000086009,-0.05694564594683225 +185142,925.710000008601,-0.05694534729161603 +185143,925.7150000086011,-0.056945048698226246 +185144,925.7200000086012,-0.056944750166650605 +185145,925.7250000086013,-0.05694445169687684 +185146,925.7300000086015,-0.05694415328889265 +185147,925.7350000086016,-0.05694385494268578 +185148,925.7400000086017,-0.05694355665824394 +185149,925.7450000086018,-0.05694325843555485 +185150,925.7500000086019,-0.05694296027460625 +185151,925.755000008602,-0.056942662175385864 +185152,925.7600000086021,-0.05694236413788143 +185153,925.7650000086022,-0.05694206616208068 +185154,925.7700000086023,-0.056941768247971355 +185155,925.7750000086024,-0.05694147039554119 +185156,925.7800000086025,-0.056941172604777934 +185157,925.7850000086027,-0.056940874875669324 +185158,925.7900000086028,-0.056940577208203114 +185159,925.7950000086029,-0.05694027960236704 +185160,925.800000008603,-0.056939982058148875 +185161,925.8050000086031,-0.056939684575536366 +185162,925.8100000086032,-0.05693938715451726 +185163,925.8150000086033,-0.05693908979507933 +185164,925.8200000086034,-0.05693879249721032 +185165,925.8250000086035,-0.056938495260897996 +185166,925.8300000086036,-0.05693819808613013 +185167,925.8350000086037,-0.05693790097289449 +185168,925.8400000086039,-0.05693760392117884 +185169,925.845000008604,-0.056937306930970946 +185170,925.8500000086041,-0.056937010002258606 +185171,925.8550000086042,-0.05693671313502958 +185172,925.8600000086043,-0.056936416329271655 +185173,925.8650000086044,-0.056936119584972605 +185174,925.8700000086045,-0.05693582290212021 +185175,925.8750000086046,-0.05693552628070227 +185176,925.8800000086047,-0.05693522972070656 +185177,925.8850000086048,-0.05693493322212088 +185178,925.8900000086049,-0.05693463678493302 +185179,925.895000008605,-0.05693434040913077 +185180,925.9000000086052,-0.05693404409470193 +185181,925.9050000086053,-0.056933747841634304 +185182,925.9100000086054,-0.0569334516499157 +185183,925.9150000086055,-0.0569331555195339 +185184,925.9200000086056,-0.05693285945047673 +185185,925.9250000086057,-0.05693256344273199 +185186,925.9300000086058,-0.05693226749628751 +185187,925.9350000086059,-0.056931971611131074 +185188,925.940000008606,-0.05693167578725053 +185189,925.9450000086061,-0.05693138002463367 +185190,925.9500000086063,-0.05693108432326832 +185191,925.9550000086064,-0.05693078868314231 +185192,925.9600000086065,-0.05693049310424345 +185193,925.9650000086066,-0.05693019758655959 +185194,925.9700000086067,-0.05692990213007855 +185195,925.9750000086068,-0.056929606734788155 +185196,925.9800000086069,-0.056929311400676245 +185197,925.985000008607,-0.05692901612773065 +185198,925.9900000086071,-0.05692872091593921 +185199,925.9950000086072,-0.056928425765289774 +185200,926.0000000086073,-0.056928130675770176 +185201,926.0050000086075,-0.05692783564736827 +185202,926.0100000086076,-0.0569275406800719 +185203,926.0150000086077,-0.05692724577386892 +185204,926.0200000086078,-0.05692695092874717 +185205,926.0250000086079,-0.05692665614469452 +185206,926.030000008608,-0.056926361421698816 +185207,926.0350000086081,-0.05692606675974793 +185208,926.0400000086082,-0.056925772158829706 +185209,926.0450000086083,-0.05692547761893202 +185210,926.0500000086084,-0.05692518314004273 +185211,926.0550000086085,-0.056924888722149715 +185212,926.0600000086087,-0.05692459436524085 +185213,926.0650000086088,-0.056924300069304 +185214,926.0700000086089,-0.05692400583432702 +185215,926.075000008609,-0.05692371166029781 +185216,926.0800000086091,-0.05692341754720425 +185217,926.0850000086092,-0.05692312349503422 +185218,926.0900000086093,-0.056922829503775606 +185219,926.0950000086094,-0.05692253557341628 +185220,926.1000000086095,-0.05692224170394415 +185221,926.1050000086096,-0.0569219478953471 +185222,926.1100000086097,-0.05692165414761303 +185223,926.1150000086099,-0.05692136046072982 +185224,926.12000000861,-0.05692106683468536 +185225,926.1250000086101,-0.056920773269467574 +185226,926.1300000086102,-0.056920479765064355 +185227,926.1350000086103,-0.05692018632146362 +185228,926.1400000086104,-0.056919892938653266 +185229,926.1450000086105,-0.056919599616621186 +185230,926.1500000086106,-0.05691930635535532 +185231,926.1550000086107,-0.05691901315484356 +185232,926.1600000086108,-0.05691872001507383 +185233,926.165000008611,-0.05691842693603405 +185234,926.170000008611,-0.05691813391771216 +185235,926.1750000086112,-0.05691784096009604 +185236,926.1800000086113,-0.05691754806317366 +185237,926.1850000086114,-0.05691725522693291 +185238,926.1900000086115,-0.05691696245136174 +185239,926.1950000086116,-0.05691666973644807 +185240,926.2000000086117,-0.05691637708217985 +185241,926.2050000086118,-0.05691608448854501 +185242,926.2100000086119,-0.05691579195553149 +185243,926.215000008612,-0.05691549948312722 +185244,926.2200000086121,-0.056915207071320154 +185245,926.2250000086123,-0.05691491472009824 +185246,926.2300000086124,-0.056914622429449425 +185247,926.2350000086125,-0.056914330199361644 +185248,926.2400000086126,-0.056914038029822867 +185249,926.2450000086127,-0.056913745920821046 +185250,926.2500000086128,-0.05691345387234412 +185251,926.2550000086129,-0.05691316188438007 +185252,926.260000008613,-0.05691286995691686 +185253,926.2650000086131,-0.05691257808994244 +185254,926.2700000086132,-0.05691228628344479 +185255,926.2750000086133,-0.05691199453741186 +185256,926.2800000086135,-0.05691170285183162 +185257,926.2850000086136,-0.056911411226692056 +185258,926.2900000086137,-0.05691111966198113 +185259,926.2950000086138,-0.05691082815768684 +185260,926.3000000086139,-0.056910536713797144 +185261,926.305000008614,-0.05691024533030004 +185262,926.3100000086141,-0.0569099540071835 +185263,926.3150000086142,-0.05690966274443552 +185264,926.3200000086143,-0.056909371542044083 +185265,926.3250000086144,-0.05690908039999718 +185266,926.3300000086145,-0.056908789318282804 +185267,926.3350000086147,-0.05690849829688895 +185268,926.3400000086148,-0.05690820733580362 +185269,926.3450000086149,-0.05690791643501481 +185270,926.350000008615,-0.05690762559451052 +185271,926.3550000086151,-0.05690733481427876 +185272,926.3600000086152,-0.056907044094307524 +185273,926.3650000086153,-0.056906753434584845 +185274,926.3700000086154,-0.05690646283509871 +185275,926.3750000086155,-0.05690617229583715 +185276,926.3800000086156,-0.05690588181678817 +185277,926.3850000086157,-0.05690559139793979 +185278,926.3900000086159,-0.056905301039280036 +185279,926.395000008616,-0.05690501074079691 +185280,926.4000000086161,-0.056904720502478454 +185281,926.4050000086162,-0.0569044303243127 +185282,926.4100000086163,-0.056904140206287666 +185283,926.4150000086164,-0.05690385014839139 +185284,926.4200000086165,-0.0569035601506119 +185285,926.4250000086166,-0.05690327021293723 +185286,926.4300000086167,-0.05690298033535542 +185287,926.4350000086168,-0.05690269051785452 +185288,926.440000008617,-0.056902400760422564 +185289,926.4450000086171,-0.0569021110630476 +185290,926.4500000086172,-0.056901821425717675 +185291,926.4550000086173,-0.05690153184842083 +185292,926.4600000086174,-0.05690124233114513 +185293,926.4650000086175,-0.05690095287387863 +185294,926.4700000086176,-0.05690066347660937 +185295,926.4750000086177,-0.05690037413932541 +185296,926.4800000086178,-0.056900084862014824 +185297,926.4850000086179,-0.05689979564466566 +185298,926.490000008618,-0.056899506487265994 +185299,926.4950000086181,-0.05689921738980389 +185300,926.5000000086183,-0.05689892835226742 +185301,926.5050000086184,-0.05689863937464466 +185302,926.5100000086185,-0.056898350456923666 +185303,926.5150000086186,-0.05689806159909253 +185304,926.5200000086187,-0.05689777280113933 +185305,926.5250000086188,-0.05689748406305213 +185306,926.5300000086189,-0.05689719538481904 +185307,926.535000008619,-0.05689690676642813 +185308,926.5400000086191,-0.05689661820786749 +185309,926.5450000086192,-0.0568963297091252 +185310,926.5500000086193,-0.05689604127018936 +185311,926.5550000086195,-0.05689575289104806 +185312,926.5600000086196,-0.056895464571689404 +185313,926.5650000086197,-0.05689517631210148 +185314,926.5700000086198,-0.05689488811227241 +185315,926.5750000086199,-0.05689459997219028 +185316,926.58000000862,-0.056894311891843186 +185317,926.5850000086201,-0.056894023871219265 +185318,926.5900000086202,-0.05689373591030659 +185319,926.5950000086203,-0.05689344800909331 +185320,926.6000000086204,-0.0568931601675675 +185321,926.6050000086206,-0.05689287238571731 +185322,926.6100000086207,-0.05689258466353086 +185323,926.6150000086208,-0.05689229700099624 +185324,926.6200000086209,-0.056892009398101594 +185325,926.625000008621,-0.05689172185483504 +185326,926.6300000086211,-0.05689143437118472 +185327,926.6350000086212,-0.05689114694713875 +185328,926.6400000086213,-0.05689085958268527 +185329,926.6450000086214,-0.05689057227781241 +185330,926.6500000086215,-0.0568902850325083 +185331,926.6550000086216,-0.05688999784676109 +185332,926.6600000086218,-0.05688971072055891 +185333,926.6650000086219,-0.05688942365388992 +185334,926.670000008622,-0.05688913664674224 +185335,926.6750000086221,-0.056888849699104044 +185336,926.6800000086222,-0.05688856281096347 +185337,926.6850000086223,-0.056888275982308674 +185338,926.6900000086224,-0.0568879892131278 +185339,926.6950000086225,-0.05688770250340902 +185340,926.7000000086226,-0.05688741585314047 +185341,926.7050000086227,-0.05688712926231033 +185342,926.7100000086228,-0.056886842730906766 +185343,926.715000008623,-0.056886556258917934 +185344,926.7200000086231,-0.056886269846332 +185345,926.7250000086232,-0.056885983493137136 +185346,926.7300000086233,-0.05688569719932152 +185347,926.7350000086234,-0.05688541096487332 +185348,926.7400000086235,-0.05688512478978072 +185349,926.7450000086236,-0.056884838674031886 +185350,926.7500000086237,-0.05688455261761501 +185351,926.7550000086238,-0.05688426662051828 +185352,926.7600000086239,-0.05688398068272986 +185353,926.765000008624,-0.056883694804237946 +185354,926.7700000086242,-0.05688340898503074 +185355,926.7750000086243,-0.05688312322509643 +185356,926.7800000086244,-0.05688283752442321 +185357,926.7850000086245,-0.05688255188299927 +185358,926.7900000086246,-0.05688226630081282 +185359,926.7950000086247,-0.05688198077785204 +185360,926.8000000086248,-0.05688169531410515 +185361,926.8050000086249,-0.056881409909560345 +185362,926.810000008625,-0.05688112456420585 +185363,926.8150000086251,-0.056880839278029866 +185364,926.8200000086252,-0.0568805540510206 +185365,926.8250000086254,-0.05688026888316627 +185366,926.8300000086255,-0.056879983774455085 +185367,926.8350000086256,-0.056879698724875284 +185368,926.8400000086257,-0.05687941373441507 +185369,926.8450000086258,-0.05687912880306267 +185370,926.8500000086259,-0.05687884393080631 +185371,926.855000008626,-0.05687855911763421 +185372,926.8600000086261,-0.05687827436353462 +185373,926.8650000086262,-0.05687798966849574 +185374,926.8700000086263,-0.056877705032505846 +185375,926.8750000086264,-0.056877420455553135 +185376,926.8800000086266,-0.05687713593762587 +185377,926.8850000086267,-0.056876851478712284 +185378,926.8900000086268,-0.05687656707880062 +185379,926.8950000086269,-0.056876282737879126 +185380,926.900000008627,-0.05687599845593604 +185381,926.9050000086271,-0.056875714232959625 +185382,926.9100000086272,-0.05687543006893812 +185383,926.9150000086273,-0.05687514596385978 +185384,926.9200000086274,-0.05687486191771288 +185385,926.9250000086275,-0.056874577930485656 +185386,926.9300000086276,-0.056874294002166384 +185387,926.9350000086278,-0.05687401013274331 +185388,926.9400000086279,-0.05687372632220471 +185389,926.945000008628,-0.05687344257053884 +185390,926.9500000086281,-0.056873158877734004 +185391,926.9550000086282,-0.05687287524377844 +185392,926.9600000086283,-0.05687259166866042 +185393,926.9650000086284,-0.05687230815236823 +185394,926.9700000086285,-0.05687202469489016 +185395,926.9750000086286,-0.05687174129621448 +185396,926.9800000086287,-0.05687145795632947 +185397,926.9850000086288,-0.056871174675223415 +185398,926.990000008629,-0.056870891452884605 +185399,926.9950000086291,-0.05687060828930133 +185400,927.0000000086292,-0.056870325184461876 +185401,927.0050000086293,-0.05687004213835455 +185402,927.0100000086294,-0.056869759150967626 +185403,927.0150000086295,-0.056869476222289425 +185404,927.0200000086296,-0.05686919335230823 +185405,927.0250000086297,-0.056868910541012355 +185406,927.0300000086298,-0.0568686277883901 +185407,927.0350000086299,-0.05686834509442977 +185408,927.04000000863,-0.05686806245911967 +185409,927.0450000086302,-0.05686777988244812 +185410,927.0500000086303,-0.05686749736440342 +185411,927.0550000086304,-0.05686721490497391 +185412,927.0600000086305,-0.056866932504147885 +185413,927.0650000086306,-0.05686665016191367 +185414,927.0700000086307,-0.0568663678782596 +185415,927.0750000086308,-0.056866085653173984 +185416,927.0800000086309,-0.05686580348664515 +185417,927.085000008631,-0.05686552137866143 +185418,927.0900000086311,-0.05686523932921116 +185419,927.0950000086312,-0.05686495733828268 +185420,927.1000000086314,-0.056864675405864304 +185421,927.1050000086315,-0.05686439353194438 +185422,927.1100000086316,-0.056864111716511234 +185423,927.1150000086317,-0.05686382995955323 +185424,927.1200000086318,-0.05686354826105871 +185425,927.1250000086319,-0.05686326662101601 +185426,927.130000008632,-0.05686298503941349 +185427,927.1350000086321,-0.056862703516239475 +185428,927.1400000086322,-0.05686242205148234 +185429,927.1450000086323,-0.05686214064513044 +185430,927.1500000086324,-0.056861859297172135 +185431,927.1550000086326,-0.05686157800759577 +185432,927.1600000086327,-0.05686129677638971 +185433,927.1650000086328,-0.05686101560354233 +185434,927.1700000086329,-0.05686073448904198 +185435,927.175000008633,-0.05686045343287704 +185436,927.1800000086331,-0.05686017243503586 +185437,927.1850000086332,-0.05685989149550685 +185438,927.1900000086333,-0.056859610614278355 +185439,927.1950000086334,-0.05685932979133875 +185440,927.2000000086335,-0.056859049026676434 +185441,927.2050000086336,-0.05685876832027978 +185442,927.2100000086338,-0.05685848767213717 +185443,927.2150000086339,-0.05685820708223699 +185444,927.220000008634,-0.05685792655056763 +185445,927.2250000086341,-0.05685764607711746 +185446,927.2300000086342,-0.05685736566187491 +185447,927.2350000086343,-0.056857085304828345 +185448,927.2400000086344,-0.05685680500596617 +185449,927.2450000086345,-0.05685652476527678 +185450,927.2500000086346,-0.05685624458274857 +185451,927.2550000086347,-0.05685596445836997 +185452,927.2600000086348,-0.056855684392129346 +185453,927.265000008635,-0.056855404384015144 +185454,927.2700000086351,-0.056855124434015754 +185455,927.2750000086352,-0.05685484454211958 +185456,927.2800000086353,-0.056854564708315056 +185457,927.2850000086354,-0.05685428493259057 +185458,927.2900000086355,-0.056854005214934576 +185459,927.2950000086356,-0.05685372555533546 +185460,927.3000000086357,-0.05685344595378166 +185461,927.3050000086358,-0.056853166410261606 +185462,927.3100000086359,-0.05685288692476372 +185463,927.315000008636,-0.05685260749727644 +185464,927.3200000086362,-0.05685232812778818 +185465,927.3250000086363,-0.05685204881628738 +185466,927.3300000086364,-0.05685176956276247 +185467,927.3350000086365,-0.056851490367201905 +185468,927.3400000086366,-0.05685121122959411 +185469,927.3450000086367,-0.05685093214992753 +185470,927.3500000086368,-0.05685065312819062 +185471,927.3550000086369,-0.0568503741643718 +185472,927.360000008637,-0.05685009525845955 +185473,927.3650000086371,-0.0568498164104423 +185474,927.3700000086372,-0.05684953762030851 +185475,927.3750000086374,-0.056849258888046636 +185476,927.3800000086375,-0.05684898021364514 +185477,927.3850000086376,-0.05684870159709246 +185478,927.3900000086377,-0.05684842303837708 +185479,927.3950000086378,-0.05684814453748746 +185480,927.4000000086379,-0.05684786609441206 +185481,927.405000008638,-0.05684758770913935 +185482,927.4100000086381,-0.056847309381657794 +185483,927.4150000086382,-0.056847031111955874 +185484,927.4200000086383,-0.05684675290002206 +185485,927.4250000086384,-0.05684647474584483 +185486,927.4300000086386,-0.056846196649412664 +185487,927.4350000086387,-0.05684591861071404 +185488,927.4400000086388,-0.056845640629737446 +185489,927.4450000086389,-0.056845362706471364 +185490,927.450000008639,-0.05684508484090428 +185491,927.4550000086391,-0.05684480703302468 +185492,927.4600000086392,-0.05684452928282107 +185493,927.4650000086393,-0.056844251590281926 +185494,927.4700000086394,-0.05684397395539577 +185495,927.4750000086395,-0.056843696378151065 +185496,927.4800000086396,-0.05684341885853634 +185497,927.4850000086398,-0.05684314139654008 +185498,927.4900000086399,-0.0568428639921508 +185499,927.49500000864,-0.056842586645357004 +185500,927.5000000086401,-0.056842309356147196 +185501,927.5050000086402,-0.0568420321245099 +185502,927.5100000086403,-0.05684175495043363 +185503,927.5150000086404,-0.05684147783390688 +185504,927.5200000086405,-0.05684120077491818 +185505,927.5250000086406,-0.05684092377345606 +185506,927.5300000086407,-0.056840646829509026 +185507,927.5350000086408,-0.05684036994306561 +185508,927.540000008641,-0.05684009311411434 +185509,927.5450000086411,-0.05683981634264375 +185510,927.5500000086412,-0.05683953962864234 +185511,927.5550000086413,-0.05683926297209868 +185512,927.5600000086414,-0.05683898637300129 +185513,927.5650000086415,-0.05683870983133871 +185514,927.5700000086416,-0.05683843334709947 +185515,927.5750000086417,-0.056838156920272116 +185516,927.5800000086418,-0.0568378805508452 +185517,927.5850000086419,-0.05683760423880726 +185518,927.590000008642,-0.05683732798414684 +185519,927.5950000086422,-0.0568370517868525 +185520,927.6000000086423,-0.056836775646912786 +185521,927.6050000086424,-0.056836499564316245 +185522,927.6100000086425,-0.05683622353905145 +185523,927.6150000086426,-0.056835947571106944 +185524,927.6200000086427,-0.05683567166047129 +185525,927.6250000086428,-0.05683539580713307 +185526,927.6300000086429,-0.05683512001108082 +185527,927.635000008643,-0.05683484427230312 +185528,927.6400000086431,-0.05683456859078854 +185529,927.6450000086433,-0.05683429296652565 +185530,927.6500000086434,-0.05683401739950304 +185531,927.6550000086435,-0.05683374188970926 +185532,927.6600000086436,-0.0568334664371329 +185533,927.6650000086437,-0.05683319104176255 +185534,927.6700000086438,-0.05683291570358676 +185535,927.6750000086439,-0.05683264042259415 +185536,927.680000008644,-0.05683236519877329 +185537,927.6850000086441,-0.05683209003211277 +185538,927.6900000086442,-0.056831814922601184 +185539,927.6950000086443,-0.05683153987022712 +185540,927.7000000086445,-0.05683126487497917 +185541,927.7050000086446,-0.05683098993684594 +185542,927.7100000086447,-0.056830715055816015 +185543,927.7150000086448,-0.05683044023187801 +185544,927.7200000086449,-0.05683016546502053 +185545,927.725000008645,-0.05682989075523217 +185546,927.7300000086451,-0.05682961610250155 +185547,927.7350000086452,-0.05682934150681726 +185548,927.7400000086453,-0.056829066968167925 +185549,927.7450000086454,-0.05682879248654216 +185550,927.7500000086455,-0.056828518061928575 +185551,927.7550000086457,-0.0568282436943158 +185552,927.7600000086458,-0.056827969383692466 +185553,927.7650000086459,-0.056827695130047165 +185554,927.770000008646,-0.05682742093336853 +185555,927.7750000086461,-0.0568271467936452 +185556,927.7800000086462,-0.056826872710865804 +185557,927.7850000086463,-0.05682659868501895 +185558,927.7900000086464,-0.0568263247160933 +185559,927.7950000086465,-0.05682605080407747 +185560,927.8000000086466,-0.05682577694896011 +185561,927.8050000086467,-0.05682550315072986 +185562,927.8100000086469,-0.05682522940937536 +185563,927.815000008647,-0.056824955724885245 +185564,927.8200000086471,-0.05682468209724817 +185565,927.8250000086472,-0.056824408526452784 +185566,927.8300000086473,-0.05682413501248773 +185567,927.8350000086474,-0.056823861555341665 +185568,927.8400000086475,-0.056823588155003234 +185569,927.8450000086476,-0.05682331481146112 +185570,927.8500000086477,-0.05682304152470395 +185571,927.8550000086478,-0.056822768294720404 +185572,927.860000008648,-0.056822495121499145 +185573,927.865000008648,-0.05682222200502884 +185574,927.8700000086482,-0.056821948945298136 +185575,927.8750000086483,-0.056821675942295716 +185576,927.8800000086484,-0.05682140299601025 +185577,927.8850000086485,-0.05682113010643042 +185578,927.8900000086486,-0.056820857273544904 +185579,927.8950000086487,-0.05682058449734237 +185580,927.9000000086488,-0.0568203117778115 +185581,927.9050000086489,-0.05682003911494097 +185582,927.910000008649,-0.056819766508719484 +185583,927.9150000086491,-0.056819493959135714 +185584,927.9200000086493,-0.05681922146617835 +185585,927.9250000086494,-0.05681894902983608 +185586,927.9300000086495,-0.056818676650097585 +185587,927.9350000086496,-0.056818404326951594 +185588,927.9400000086497,-0.05681813206038677 +185589,927.9450000086498,-0.05681785985039184 +185590,927.9500000086499,-0.05681758769695549 +185591,927.95500000865,-0.05681731560006642 +185592,927.9600000086501,-0.05681704355971334 +185593,927.9650000086502,-0.056816771575884974 +185594,927.9700000086503,-0.05681649964857 +185595,927.9750000086505,-0.05681622777775716 +185596,927.9800000086506,-0.05681595596343516 +185597,927.9850000086507,-0.0568156842055927 +185598,927.9900000086508,-0.05681541250421852 +185599,927.9950000086509,-0.05681514085930131 +185600,928.000000008651,-0.05681486927082982 +185601,928.0050000086511,-0.05681459773879277 +185602,928.0100000086512,-0.05681432626317889 +185603,928.0150000086513,-0.05681405484397689 +185604,928.0200000086514,-0.05681378348117552 +185605,928.0250000086515,-0.056813512174763506 +185606,928.0300000086517,-0.056813240924729586 +185607,928.0350000086518,-0.05681296973106248 +185608,928.0400000086519,-0.05681269859375095 +185609,928.045000008652,-0.05681242751278373 +185610,928.0500000086521,-0.05681215648814957 +185611,928.0550000086522,-0.05681188551983721 +185612,928.0600000086523,-0.05681161460783538 +185613,928.0650000086524,-0.056811343752132856 +185614,928.0700000086525,-0.056811072952718394 +185615,928.0750000086526,-0.056810802209580714 +185616,928.0800000086527,-0.0568105315227086 +185617,928.0850000086529,-0.05681026089209081 +185618,928.090000008653,-0.0568099903177161 +185619,928.0950000086531,-0.05680971979957323 +185620,928.1000000086532,-0.05680944933765096 +185621,928.1050000086533,-0.05680917893193806 +185622,928.1100000086534,-0.0568089085824233 +185623,928.1150000086535,-0.05680863828909546 +185624,928.1200000086536,-0.056808368051943295 +185625,928.1250000086537,-0.056808097870955594 +185626,928.1300000086538,-0.056807827746121135 +185627,928.135000008654,-0.05680755767742869 +185628,928.140000008654,-0.05680728766486705 +185629,928.1450000086542,-0.05680701770842498 +185630,928.1500000086543,-0.05680674780809127 +185631,928.1550000086544,-0.05680647796385473 +185632,928.1600000086545,-0.05680620817570413 +185633,928.1650000086546,-0.056805938443628266 +185634,928.1700000086547,-0.05680566876761594 +185635,928.1750000086548,-0.056805399147655936 +185636,928.1800000086549,-0.056805129583737055 +185637,928.185000008655,-0.05680486007584811 +185638,928.1900000086551,-0.056804590623977885 +185639,928.1950000086553,-0.0568043212281152 +185640,928.2000000086554,-0.05680405188824885 +185641,928.2050000086555,-0.05680378260436766 +185642,928.2100000086556,-0.05680351337646042 +185643,928.2150000086557,-0.05680324420451595 +185644,928.2200000086558,-0.05680297508852307 +185645,928.2250000086559,-0.056802706028470595 +185646,928.230000008656,-0.05680243702434734 +185647,928.2350000086561,-0.05680216807614214 +185648,928.2400000086562,-0.056801899183843804 +185649,928.2450000086563,-0.056801630347441165 +185650,928.2500000086565,-0.05680136156692304 +185651,928.2550000086566,-0.056801092842278265 +185652,928.2600000086567,-0.05680082417349568 +185653,928.2650000086568,-0.05680055556056412 +185654,928.2700000086569,-0.05680028700347241 +185655,928.275000008657,-0.056800018502209386 +185656,928.2800000086571,-0.0567997500567639 +185657,928.2850000086572,-0.056799481667124785 +185658,928.2900000086573,-0.05679921333328089 +185659,928.2950000086574,-0.05679894505522105 +185660,928.3000000086575,-0.05679867683293414 +185661,928.3050000086577,-0.05679840866640898 +185662,928.3100000086578,-0.05679814055563443 +185663,928.3150000086579,-0.05679787250059937 +185664,928.320000008658,-0.05679760450129263 +185665,928.3250000086581,-0.056797336557703075 +185666,928.3300000086582,-0.05679706866981958 +185667,928.3350000086583,-0.05679680083763099 +185668,928.3400000086584,-0.05679653306112617 +185669,928.3450000086585,-0.056796265340294 +185670,928.3500000086586,-0.05679599767512335 +185671,928.3550000086587,-0.05679573006560307 +185672,928.3600000086589,-0.05679546251172205 +185673,928.365000008659,-0.05679519501346917 +185674,928.3700000086591,-0.05679492757083331 +185675,928.3750000086592,-0.05679466018380333 +185676,928.3800000086593,-0.056794392852368134 +185677,928.3850000086594,-0.05679412557651659 +185678,928.3900000086595,-0.05679385835623759 +185679,928.3950000086596,-0.056793591191520026 +185680,928.4000000086597,-0.056793324082352784 +185681,928.4050000086598,-0.056793057028724746 +185682,928.41000000866,-0.05679279003062483 +185683,928.4150000086601,-0.05679252308804192 +185684,928.4200000086602,-0.056792256200964904 +185685,928.4250000086603,-0.05679198936938269 +185686,928.4300000086604,-0.056791722593284195 +185687,928.4350000086605,-0.056791455872658304 +185688,928.4400000086606,-0.05679118920749393 +185689,928.4450000086607,-0.056790922597779986 +185690,928.4500000086608,-0.05679065604350538 +185691,928.4550000086609,-0.05679038954465902 +185692,928.460000008661,-0.05679012310122984 +185693,928.4650000086611,-0.05678985671320673 +185694,928.4700000086613,-0.05678959038057863 +185695,928.4750000086614,-0.05678932410333447 +185696,928.4800000086615,-0.056789057881463136 +185697,928.4850000086616,-0.05678879171495359 +185698,928.4900000086617,-0.05678852560379474 +185699,928.4950000086618,-0.05678825954797553 +185700,928.5000000086619,-0.05678799354748487 +185701,928.505000008662,-0.05678772760231172 +185702,928.5100000086621,-0.056787461712444996 +185703,928.5150000086622,-0.05678719587787364 +185704,928.5200000086624,-0.0567869300985866 +185705,928.5250000086625,-0.05678666437457281 +185706,928.5300000086626,-0.056786398705821216 +185707,928.5350000086627,-0.05678613309232077 +185708,928.5400000086628,-0.056785867534060404 +185709,928.5450000086629,-0.05678560203102909 +185710,928.550000008663,-0.056785336583215766 +185711,928.5550000086631,-0.05678507119060939 +185712,928.5600000086632,-0.05678480585319892 +185713,928.5650000086633,-0.056784540570973305 +185714,928.5700000086634,-0.056784275343921525 +185715,928.5750000086636,-0.05678401017203252 +185716,928.5800000086637,-0.056783745055295286 +185717,928.5850000086638,-0.05678347999369876 +185718,928.5900000086639,-0.056783214987231934 +185719,928.595000008664,-0.05678295003588376 +185720,928.6000000086641,-0.05678268513964322 +185721,928.6050000086642,-0.05678242029849929 +185722,928.6100000086643,-0.05678215551244094 +185723,928.6150000086644,-0.05678189078145715 +185724,928.6200000086645,-0.056781626105536914 +185725,928.6250000086646,-0.0567813614846692 +185726,928.6300000086648,-0.056781096918843005 +185727,928.6350000086649,-0.0567808324080473 +185728,928.640000008665,-0.0567805679522711 +185729,928.6450000086651,-0.05678030355150338 +185730,928.6500000086652,-0.056780039205733136 +185731,928.6550000086653,-0.05677977491494936 +185732,928.6600000086654,-0.056779510679141054 +185733,928.6650000086655,-0.05677924649829723 +185734,928.6700000086656,-0.056778982372406875 +185735,928.6750000086657,-0.056778718301458996 +185736,928.6800000086658,-0.05677845428544259 +185737,928.685000008666,-0.05677819032434668 +185738,928.6900000086661,-0.05677792641816028 +185739,928.6950000086662,-0.05677766256687238 +185740,928.7000000086663,-0.056777398770472005 +185741,928.7050000086664,-0.056777135028948184 +185742,928.7100000086665,-0.056776871342289925 +185743,928.7150000086666,-0.056776607710486246 +185744,928.7200000086667,-0.05677634413352617 +185745,928.7250000086668,-0.05677608061139873 +185746,928.7300000086669,-0.05677581714409294 +185747,928.735000008667,-0.05677555373159784 +185748,928.7400000086672,-0.05677529037390245 +185749,928.7450000086673,-0.056775027070995805 +185750,928.7500000086674,-0.05677476382286695 +185751,928.7550000086675,-0.0567745006295049 +185752,928.7600000086676,-0.05677423749089873 +185753,928.7650000086677,-0.05677397440703744 +185754,928.7700000086678,-0.056773711377910104 +185755,928.7750000086679,-0.056773448403505754 +185756,928.780000008668,-0.05677318548381344 +185757,928.7850000086681,-0.056772922618822205 +185758,928.7900000086682,-0.056772659808521114 +185759,928.7950000086684,-0.05677239705289921 +185760,928.8000000086685,-0.05677213435194555 +185761,928.8050000086686,-0.05677187170564919 +185762,928.8100000086687,-0.05677160911399919 +185763,928.8150000086688,-0.05677134657698461 +185764,928.8200000086689,-0.056771084094594526 +185765,928.825000008669,-0.056770821666817996 +185766,928.8300000086691,-0.056770559293644086 +185767,928.8350000086692,-0.056770296975061856 +185768,928.8400000086693,-0.05677003471106039 +185769,928.8450000086694,-0.05676977250162875 +185770,928.8500000086696,-0.05676951034675602 +185771,928.8550000086697,-0.05676924824643129 +185772,928.8600000086698,-0.05676898620064363 +185773,928.8650000086699,-0.0567687242093821 +185774,928.87000000867,-0.056768462272635815 +185775,928.8750000086701,-0.05676820039039386 +185776,928.8800000086702,-0.0567679385626453 +185777,928.8850000086703,-0.05676767678937924 +185778,928.8900000086704,-0.056767415070584776 +185779,928.8950000086705,-0.056767153406250985 +185780,928.9000000086706,-0.05676689179636698 +185781,928.9050000086708,-0.05676663024092186 +185782,928.9100000086709,-0.056766368739904705 +185783,928.915000008671,-0.05676610729330464 +185784,928.9200000086711,-0.056765845901110765 +185785,928.9250000086712,-0.056765584563312176 +185786,928.9300000086713,-0.056765323279897986 +185787,928.9350000086714,-0.05676506205085731 +185788,928.9400000086715,-0.05676480087617925 +185789,928.9450000086716,-0.05676453975585294 +185790,928.9500000086717,-0.05676427868986747 +185791,928.9550000086718,-0.05676401767821197 +185792,928.960000008672,-0.05676375672087558 +185793,928.9650000086721,-0.0567634958178474 +185794,928.9700000086722,-0.056763234969116554 +185795,928.9750000086723,-0.05676297417467218 +185796,928.9800000086724,-0.05676271343450341 +185797,928.9850000086725,-0.05676245274859936 +185798,928.9900000086726,-0.05676219211694917 +185799,928.9950000086727,-0.056761931539541975 +185800,929.0000000086728,-0.05676167101636692 +185801,929.0050000086729,-0.05676141054741312 +185802,929.010000008673,-0.05676115013266974 +185803,929.0150000086732,-0.05676088977212592 +185804,929.0200000086733,-0.05676062946577079 +185805,929.0250000086734,-0.05676036921359351 +185806,929.0300000086735,-0.056760109015583225 +185807,929.0350000086736,-0.05675984887172909 +185808,929.0400000086737,-0.05675958878202026 +185809,929.0450000086738,-0.056759328746445875 +185810,929.0500000086739,-0.056759068764995105 +185811,929.055000008674,-0.05675880883765712 +185812,929.0600000086741,-0.056758548964421056 +185813,929.0650000086742,-0.05675828914527608 +185814,929.0700000086744,-0.056758029380211385 +185815,929.0750000086745,-0.056757769669216106 +185816,929.0800000086746,-0.056757510012279425 +185817,929.0850000086747,-0.056757250409390524 +185818,929.0900000086748,-0.05675699086053855 +185819,929.0950000086749,-0.05675673136571271 +185820,929.100000008675,-0.05675647192490216 +185821,929.1050000086751,-0.05675621253809608 +185822,929.1100000086752,-0.05675595320528366 +185823,929.1150000086753,-0.05675569392645409 +185824,929.1200000086754,-0.05675543470159653 +185825,929.1250000086756,-0.05675517553070019 +185826,929.1300000086757,-0.05675491641375425 +185827,929.1350000086758,-0.05675465735074791 +185828,929.1400000086759,-0.056754398341670356 +185829,929.145000008676,-0.05675413938651079 +185830,929.1500000086761,-0.056753880485258396 +185831,929.1550000086762,-0.05675362163790239 +185832,929.1600000086763,-0.056753362844431963 +185833,929.1650000086764,-0.056753104104836326 +185834,929.1700000086765,-0.05675284541910468 +185835,929.1750000086766,-0.056752586787226236 +185836,929.1800000086768,-0.0567523282091902 +185837,929.1850000086769,-0.056752069684985786 +185838,929.190000008677,-0.0567518112146022 +185839,929.1950000086771,-0.05675155279802867 +185840,929.2000000086772,-0.05675129443525441 +185841,929.2050000086773,-0.056751036126268646 +185842,929.2100000086774,-0.056750777871060594 +185843,929.2150000086775,-0.05675051966961946 +185844,929.2200000086776,-0.056750261521934506 +185845,929.2250000086777,-0.056750003427994924 +185846,929.2300000086778,-0.05674974538778997 +185847,929.235000008678,-0.05674948740130887 +185848,929.2400000086781,-0.05674922946854085 +185849,929.2450000086782,-0.05674897158947515 +185850,929.2500000086783,-0.056748713764101 +185851,929.2550000086784,-0.05674845599240766 +185852,929.2600000086785,-0.05674819827438435 +185853,929.2650000086786,-0.05674794061002032 +185854,929.2700000086787,-0.05674768299930483 +185855,929.2750000086788,-0.05674742544222711 +185856,929.2800000086789,-0.05674716793877643 +185857,929.285000008679,-0.05674691048894202 +185858,929.2900000086792,-0.056746653092713144 +185859,929.2950000086793,-0.05674639575007906 +185860,929.3000000086794,-0.056746138461029036 +185861,929.3050000086795,-0.05674588122555231 +185862,929.3100000086796,-0.05674562404363816 +185863,929.3150000086797,-0.05674536691527584 +185864,929.3200000086798,-0.05674510984045462 +185865,929.3250000086799,-0.05674485281916377 +185866,929.33000000868,-0.05674459585139256 +185867,929.3350000086801,-0.056744338937130254 +185868,929.3400000086802,-0.056744082076366144 +185869,929.3450000086804,-0.056743825269089485 +185870,929.3500000086805,-0.05674356851528957 +185871,929.3550000086806,-0.05674331181495568 +185872,929.3600000086807,-0.05674305516807708 +185873,929.3650000086808,-0.05674279857464306 +185874,929.3700000086809,-0.05674254203464293 +185875,929.375000008681,-0.056742285548065936 +185876,929.3800000086811,-0.0567420291149014 +185877,929.3850000086812,-0.05674177273513861 +185878,929.3900000086813,-0.05674151640876686 +185879,929.3950000086814,-0.056741260135775434 +185880,929.4000000086816,-0.056741003916153644 +185881,929.4050000086817,-0.05674074774989079 +185882,929.4100000086818,-0.05674049163697616 +185883,929.4150000086819,-0.056740235577399066 +185884,929.420000008682,-0.05673997957114881 +185885,929.4250000086821,-0.056739723618214714 +185886,929.4300000086822,-0.056739467718586074 +185887,929.4350000086823,-0.05673921187225221 +185888,929.4400000086824,-0.056738956079202436 +185889,929.4450000086825,-0.05673870033942606 +185890,929.4500000086827,-0.05673844465291241 +185891,929.4550000086828,-0.05673818901965079 +185892,929.4600000086829,-0.05673793343963054 +185893,929.465000008683,-0.056737677912840984 +185894,929.4700000086831,-0.05673742243927143 +185895,929.4750000086832,-0.056737167018911225 +185896,929.4800000086833,-0.05673691165174968 +185897,929.4850000086834,-0.05673665633777616 +185898,929.4900000086835,-0.05673640107697996 +185899,929.4950000086836,-0.05673614586935044 +185900,929.5000000086837,-0.05673589071487693 +185901,929.5050000086839,-0.05673563561354877 +185902,929.510000008684,-0.0567353805653553 +185903,929.5150000086841,-0.05673512557028587 +185904,929.5200000086842,-0.05673487062832983 +185905,929.5250000086843,-0.056734615739476524 +185906,929.5300000086844,-0.0567343609037153 +185907,929.5350000086845,-0.056734106121035494 +185908,929.5400000086846,-0.05673385139142648 +185909,929.5450000086847,-0.05673359671487762 +185910,929.5500000086848,-0.05673334209137825 +185911,929.5550000086849,-0.05673308752091775 +185912,929.560000008685,-0.056732833003485465 +185913,929.5650000086852,-0.05673257853907077 +185914,929.5700000086853,-0.056732324127663034 +185915,929.5750000086854,-0.05673206976925161 +185916,929.5800000086855,-0.056731815463825885 +185917,929.5850000086856,-0.05673156121137521 +185918,929.5900000086857,-0.05673130701188897 +185919,929.5950000086858,-0.05673105286535655 +185920,929.6000000086859,-0.056730798771767316 +185921,929.605000008686,-0.05673054473111066 +185922,929.6100000086861,-0.05673029074337595 +185923,929.6150000086863,-0.05673003680855257 +185924,929.6200000086864,-0.05672978292662991 +185925,929.6250000086865,-0.05672952909759737 +185926,929.6300000086866,-0.056729275321444304 +185927,929.6350000086867,-0.056729021598160144 +185928,929.6400000086868,-0.05672876792773427 +185929,929.6450000086869,-0.05672851431015606 +185930,929.650000008687,-0.05672826074541493 +185931,929.6550000086871,-0.05672800723350028 +185932,929.6600000086872,-0.05672775377440151 +185933,929.6650000086873,-0.05672750036810801 +185934,929.6700000086875,-0.056727247014609204 +185935,929.6750000086876,-0.05672699371389449 +185936,929.6800000086877,-0.056726740465953274 +185937,929.6850000086878,-0.05672648727077497 +185938,929.6900000086879,-0.056726234128349005 +185939,929.695000008688,-0.05672598103866479 +185940,929.7000000086881,-0.05672572800171172 +185941,929.7050000086882,-0.05672547501747923 +185942,929.7100000086883,-0.05672522208595675 +185943,929.7150000086884,-0.056724969207133685 +185944,929.7200000086885,-0.05672471638099947 +185945,929.7250000086887,-0.056724463607543525 +185946,929.7300000086888,-0.056724210886755305 +185947,929.7350000086889,-0.05672395821862421 +185948,929.740000008689,-0.056723705603139676 +185949,929.7450000086891,-0.05672345304029116 +185950,929.7500000086892,-0.05672320053006809 +185951,929.7550000086893,-0.05672294807245989 +185952,929.7600000086894,-0.056722695667456025 +185953,929.7650000086895,-0.056722443315045924 +185954,929.7700000086896,-0.056722191015219026 +185955,929.7750000086897,-0.05672193876796479 +185956,929.7800000086899,-0.05672168657327265 +185957,929.78500000869,-0.05672143443113207 +185958,929.7900000086901,-0.0567211823415325 +185959,929.7950000086902,-0.056720930304463395 +185960,929.8000000086903,-0.05672067831991422 +185961,929.8050000086904,-0.05672042638787441 +185962,929.8100000086905,-0.05672017450833346 +185963,929.8150000086906,-0.05671992268128081 +185964,929.8200000086907,-0.05671967090670592 +185965,929.8250000086908,-0.05671941918459827 +185966,929.830000008691,-0.056719167514947315 +185967,929.835000008691,-0.056718915897742535 +185968,929.8400000086912,-0.05671866433297341 +185969,929.8450000086913,-0.0567184128206294 +185970,929.8500000086914,-0.05671816136069998 +185971,929.8550000086915,-0.05671790995317464 +185972,929.8600000086916,-0.05671765859804286 +185973,929.8650000086917,-0.05671740729529413 +185974,929.8700000086918,-0.0567171560449179 +185975,929.8750000086919,-0.05671690484690369 +185976,929.880000008692,-0.056716653701240974 +185977,929.8850000086921,-0.05671640260791925 +185978,929.8900000086923,-0.056716151566928004 +185979,929.8950000086924,-0.05671590057825674 +185980,929.9000000086925,-0.056715649641894926 +185981,929.9050000086926,-0.05671539875783209 +185982,929.9100000086927,-0.056715147926057724 +185983,929.9150000086928,-0.056714897146561326 +185984,929.9200000086929,-0.056714646419332396 +185985,929.925000008693,-0.05671439574436045 +185986,929.9300000086931,-0.05671414512163499 +185987,929.9350000086932,-0.05671389455114552 +185988,929.9400000086933,-0.05671364403288156 +185989,929.9450000086935,-0.05671339356683262 +185990,929.9500000086936,-0.05671314315298823 +185991,929.9550000086937,-0.05671289279133788 +185992,929.9600000086938,-0.0567126424818711 +185993,929.9650000086939,-0.056712392224577426 +185994,929.970000008694,-0.056712142019446375 +185995,929.9750000086941,-0.056711891866467454 +185996,929.9800000086942,-0.05671164176563022 +185997,929.9850000086943,-0.05671139171692419 +185998,929.9900000086944,-0.05671114172033887 +185999,929.9950000086945,-0.05671089177586383 +186000,930.0000000086947,-0.056710641883488594 +186001,930.0050000086948,-0.05671039204320269 +186002,930.0100000086949,-0.05671014225499566 +186003,930.015000008695,-0.056709892518857045 +186004,930.0200000086951,-0.056709642834776405 +186005,930.0250000086952,-0.056709393202743257 +186006,930.0300000086953,-0.05670914362274716 +186007,930.0350000086954,-0.056708894094777675 +186008,930.0400000086955,-0.05670864461882434 +186009,930.0450000086956,-0.0567083951948767 +186010,930.0500000086957,-0.05670814582292432 +186011,930.0550000086959,-0.056707896502956774 +186012,930.060000008696,-0.05670764723496359 +186013,930.0650000086961,-0.05670739801893434 +186014,930.0700000086962,-0.056707148854858586 +186015,930.0750000086963,-0.05670689974272589 +186016,930.0800000086964,-0.05670665068252583 +186017,930.0850000086965,-0.05670640167424797 +186018,930.0900000086966,-0.05670615271788188 +186019,930.0950000086967,-0.05670590381341713 +186020,930.1000000086968,-0.056705654960843274 +186021,930.105000008697,-0.05670540616014992 +186022,930.110000008697,-0.056705157411326625 +186023,930.1150000086972,-0.05670490871436299 +186024,930.1200000086973,-0.056704660069248576 +186025,930.1250000086974,-0.05670441147597298 +186026,930.1300000086975,-0.05670416293452577 +186027,930.1350000086976,-0.05670391444489656 +186028,930.1400000086977,-0.05670366600707492 +186029,930.1450000086978,-0.05670341762105043 +186030,930.1500000086979,-0.056703169286812724 +186031,930.155000008698,-0.05670292100435137 +186032,930.1600000086981,-0.05670267277365596 +186033,930.1650000086983,-0.056702424594716104 +186034,930.1700000086984,-0.05670217646752141 +186035,930.1750000086985,-0.05670192839206148 +186036,930.1800000086986,-0.056701680368325895 +186037,930.1850000086987,-0.056701432396304284 +186038,930.1900000086988,-0.05670118447598625 +186039,930.1950000086989,-0.05670093660736141 +186040,930.200000008699,-0.05670068879041938 +186041,930.2050000086991,-0.05670044102514976 +186042,930.2100000086992,-0.05670019331154216 +186043,930.2150000086993,-0.05669994564958623 +186044,930.2200000086995,-0.056699698039271565 +186045,930.2250000086996,-0.0566994504805878 +186046,930.2300000086997,-0.05669920297352455 +186047,930.2350000086998,-0.05669895551807144 +186048,930.2400000086999,-0.05669870811421812 +186049,930.2450000087,-0.05669846076195419 +186050,930.2500000087001,-0.05669821346126932 +186051,930.2550000087002,-0.0566979662121531 +186052,930.2600000087003,-0.05669771901459521 +186053,930.2650000087004,-0.05669747186858525 +186054,930.2700000087005,-0.05669722477411288 +186055,930.2750000087007,-0.05669697773116773 +186056,930.2800000087008,-0.056696730739739465 +186057,930.2850000087009,-0.05669648379981771 +186058,930.290000008701,-0.05669623691139212 +186059,930.2950000087011,-0.05669599007445234 +186060,930.3000000087012,-0.05669574328898803 +186061,930.3050000087013,-0.05669549655498884 +186062,930.3100000087014,-0.056695249872444425 +186063,930.3150000087015,-0.05669500324134444 +186064,930.3200000087016,-0.05669475666167854 +186065,930.3250000087017,-0.0566945101334364 +186066,930.3300000087019,-0.05669426365660767 +186067,930.335000008702,-0.05669401723118203 +186068,930.3400000087021,-0.056693770857149134 +186069,930.3450000087022,-0.05669352453449865 +186070,930.3500000087023,-0.056693278263220265 +186071,930.3550000087024,-0.056693032043303636 +186072,930.3600000087025,-0.05669278587473844 +186073,930.3650000087026,-0.05669253975751436 +186074,930.3700000087027,-0.056692293691621064 +186075,930.3750000087028,-0.05669204767704824 +186076,930.380000008703,-0.056691801713785565 +186077,930.3850000087031,-0.05669155580182273 +186078,930.3900000087032,-0.05669130994114942 +186079,930.3950000087033,-0.056691064131755314 +186080,930.4000000087034,-0.05669081837363011 +186081,930.4050000087035,-0.0566905726667635 +186082,930.4100000087036,-0.05669032701114519 +186083,930.4150000087037,-0.05669008140676485 +186084,930.4200000087038,-0.056689835853612196 +186085,930.4250000087039,-0.056689590351676915 +186086,930.430000008704,-0.056689344900948714 +186087,930.4350000087042,-0.0566890995014173 +186088,930.4400000087043,-0.056688854153072385 +186089,930.4450000087044,-0.056688608855903655 +186090,930.4500000087045,-0.05668836360990084 +186091,930.4550000087046,-0.05668811841505364 +186092,930.4600000087047,-0.05668787327135176 +186093,930.4650000087048,-0.056687628178784935 +186094,930.4700000087049,-0.05668738313734288 +186095,930.475000008705,-0.05668713814701531 +186096,930.4800000087051,-0.056686893207791925 +186097,930.4850000087052,-0.05668664831966247 +186098,930.4900000087054,-0.05668640348261667 +186099,930.4950000087055,-0.05668615869664424 +186100,930.5000000087056,-0.056685913961734925 +186101,930.5050000087057,-0.05668566927787844 +186102,930.5100000087058,-0.056685424645064514 +186103,930.5150000087059,-0.0566851800632829 +186104,930.520000008706,-0.056684935532523316 +186105,930.5250000087061,-0.05668469105277551 +186106,930.5300000087062,-0.05668444662402921 +186107,930.5350000087063,-0.05668420224627417 +186108,930.5400000087064,-0.05668395791950013 +186109,930.5450000087066,-0.056683713643696836 +186110,930.5500000087067,-0.056683469418854035 +186111,930.5550000087068,-0.05668322524496148 +186112,930.5600000087069,-0.05668298112200891 +186113,930.565000008707,-0.05668273704998609 +186114,930.5700000087071,-0.05668249302888278 +186115,930.5750000087072,-0.05668224905868871 +186116,930.5800000087073,-0.05668200513939367 +186117,930.5850000087074,-0.05668176127098741 +186118,930.5900000087075,-0.056681517453459694 +186119,930.5950000087076,-0.05668127368680027 +186120,930.6000000087078,-0.05668102997099892 +186121,930.6050000087079,-0.05668078630604542 +186122,930.610000008708,-0.056680542691929535 +186123,930.6150000087081,-0.056680299128641025 +186124,930.6200000087082,-0.05668005561616967 +186125,930.6250000087083,-0.056679812154505245 +186126,930.6300000087084,-0.05667956874363753 +186127,930.6350000087085,-0.05667932538355632 +186128,930.6400000087086,-0.05667908207425137 +186129,930.6450000087087,-0.056678838815712486 +186130,930.6500000087088,-0.05667859560792944 +186131,930.655000008709,-0.05667835245089202 +186132,930.6600000087091,-0.05667810934459003 +186133,930.6650000087092,-0.05667786628901324 +186134,930.6700000087093,-0.056677623284151456 +186135,930.6750000087094,-0.05667738032999446 +186136,930.6800000087095,-0.05667713742653207 +186137,930.6850000087096,-0.05667689457375407 +186138,930.6900000087097,-0.05667665177165027 +186139,930.6950000087098,-0.05667640902021047 +186140,930.7000000087099,-0.056676166319424466 +186141,930.70500000871,-0.05667592366928207 +186142,930.7100000087102,-0.056675681069773096 +186143,930.7150000087103,-0.05667543852088734 +186144,930.7200000087104,-0.05667519602261463 +186145,930.7250000087105,-0.05667495357494478 +186146,930.7300000087106,-0.05667471117786759 +186147,930.7350000087107,-0.05667446883137289 +186148,930.7400000087108,-0.056674226535450505 +186149,930.7450000087109,-0.05667398429009023 +186150,930.750000008711,-0.05667374209528193 +186151,930.7550000087111,-0.05667349995101539 +186152,930.7600000087112,-0.05667325785728046 +186153,930.7650000087114,-0.05667301581406696 +186154,930.7700000087115,-0.05667277382136473 +186155,930.7750000087116,-0.0566725318791636 +186156,930.7800000087117,-0.0566722899874534 +186157,930.7850000087118,-0.05667204814622396 +186158,930.7900000087119,-0.056671806355465135 +186159,930.795000008712,-0.05667156461516676 +186160,930.8000000087121,-0.05667132292531868 +186161,930.8050000087122,-0.05667108128591073 +186162,930.8100000087123,-0.05667083969693276 +186163,930.8150000087124,-0.056670598158374615 +186164,930.8200000087126,-0.05667035667022616 +186165,930.8250000087127,-0.05667011523247723 +186166,930.8300000087128,-0.056669873845117694 +186167,930.8350000087129,-0.0566696325081374 +186168,930.840000008713,-0.0566693912215262 +186169,930.8450000087131,-0.05666914998527395 +186170,930.8500000087132,-0.05666890879937051 +186171,930.8550000087133,-0.056668667663805766 +186172,930.8600000087134,-0.05666842657856957 +186173,930.8650000087135,-0.056668185543651786 +186174,930.8700000087136,-0.05666794455904228 +186175,930.8750000087138,-0.056667703624730933 +186176,930.8800000087139,-0.05666746274070762 +186177,930.885000008714,-0.0566672219069622 +186178,930.8900000087141,-0.05666698112348456 +186179,930.8950000087142,-0.05666674039026458 +186180,930.9000000087143,-0.05666649970729214 +186181,930.9050000087144,-0.05666625907455711 +186182,930.9100000087145,-0.05666601849204938 +186183,930.9150000087146,-0.05666577795975883 +186184,930.9200000087147,-0.05666553747767536 +186185,930.9250000087148,-0.05666529704578885 +186186,930.930000008715,-0.05666505666408919 +186187,930.9350000087151,-0.056664816332566294 +186188,930.9400000087152,-0.05666457605121004 +186189,930.9450000087153,-0.05666433582001033 +186190,930.9500000087154,-0.05666409563895705 +186191,930.9550000087155,-0.056663855508040116 +186192,930.9600000087156,-0.056663615427249424 +186193,930.9650000087157,-0.05666337539657489 +186194,930.9700000087158,-0.05666313541600641 +186195,930.9750000087159,-0.056662895485533896 +186196,930.980000008716,-0.05666265560514725 +186197,930.9850000087162,-0.05666241577483639 +186198,930.9900000087163,-0.056662175994591224 +186199,930.9950000087164,-0.05666193626440168 +186200,931.0000000087165,-0.056661696584257654 +186201,931.0050000087166,-0.05666145695414909 +186202,931.0100000087167,-0.0566612173740659 +186203,931.0150000087168,-0.05666097784399801 +186204,931.0200000087169,-0.056660738363935335 +186205,931.025000008717,-0.05666049893386781 +186206,931.0300000087171,-0.05666025955378538 +186207,931.0350000087172,-0.05666002022367795 +186208,931.0400000087174,-0.05665978094353545 +186209,931.0450000087175,-0.05665954171334783 +186210,931.0500000087176,-0.056659302533105034 +186211,931.0550000087177,-0.05665906340279699 +186212,931.0600000087178,-0.05665882432241364 +186213,931.0650000087179,-0.05665858529194492 +186214,931.070000008718,-0.05665834631138077 +186215,931.0750000087181,-0.05665810738071114 +186216,931.0800000087182,-0.056657868499926 +186217,931.0850000087183,-0.05665762966901527 +186218,931.0900000087184,-0.0566573908879689 +186219,931.0950000087186,-0.05665715215677686 +186220,931.1000000087187,-0.05665691347542911 +186221,931.1050000087188,-0.056656674843915594 +186222,931.1100000087189,-0.05665643626222628 +186223,931.115000008719,-0.05665619773035111 +186224,931.1200000087191,-0.05665595924828007 +186225,931.1250000087192,-0.05665572081600311 +186226,931.1300000087193,-0.0566554824335102 +186227,931.1350000087194,-0.056655244100791306 +186228,931.1400000087195,-0.0566550058178364 +186229,931.1450000087196,-0.05665476758463545 +186230,931.1500000087198,-0.05665452940117844 +186231,931.1550000087199,-0.05665429126745534 +186232,931.16000000872,-0.056654053183456114 +186233,931.1650000087201,-0.05665381514917077 +186234,931.1700000087202,-0.05665357716458927 +186235,931.1750000087203,-0.05665333922970159 +186236,931.1800000087204,-0.056653101344497726 +186237,931.1850000087205,-0.05665286350896767 +186238,931.1900000087206,-0.05665262572310141 +186239,931.1950000087207,-0.05665238798688892 +186240,931.2000000087208,-0.05665215030032022 +186241,931.205000008721,-0.056651912663385276 +186242,931.2100000087211,-0.0566516750760741 +186243,931.2150000087212,-0.05665143753837668 +186244,931.2200000087213,-0.05665120005028304 +186245,931.2250000087214,-0.056650962611783144 +186246,931.2300000087215,-0.05665072522286702 +186247,931.2350000087216,-0.056650487883524676 +186248,931.2400000087217,-0.05665025059374611 +186249,931.2450000087218,-0.05665001335352133 +186250,931.2500000087219,-0.05664977616284036 +186251,931.255000008722,-0.05664953902169319 +186252,931.2600000087222,-0.05664930193006984 +186253,931.2650000087223,-0.05664906488796035 +186254,931.2700000087224,-0.05664882789535471 +186255,931.2750000087225,-0.05664859095224296 +186256,931.2800000087226,-0.05664835405861511 +186257,931.2850000087227,-0.0566481172144612 +186258,931.2900000087228,-0.05664788041977123 +186259,931.2950000087229,-0.056647643674535245 +186260,931.300000008723,-0.05664740697874328 +186261,931.3050000087231,-0.056647170332385345 +186262,931.3100000087233,-0.05664693373545149 +186263,931.3150000087234,-0.056646697187931735 +186264,931.3200000087235,-0.05664646068981614 +186265,931.3250000087236,-0.05664622424109473 +186266,931.3300000087237,-0.05664598784175755 +186267,931.3350000087238,-0.05664575149179463 +186268,931.3400000087239,-0.056645515191196025 +186269,931.345000008724,-0.0566452789399518 +186270,931.3500000087241,-0.05664504273805197 +186271,931.3550000087242,-0.056644806585486596 +186272,931.3600000087243,-0.05664457048224573 +186273,931.3650000087245,-0.056644334428319426 +186274,931.3700000087246,-0.05664409842369774 +186275,931.3750000087247,-0.05664386246837074 +186276,931.3800000087248,-0.056643626562328464 +186277,931.3850000087249,-0.05664339070556099 +186278,931.390000008725,-0.05664315489805837 +186279,931.3950000087251,-0.05664291913981068 +186280,931.4000000087252,-0.056642683430807965 +186281,931.4050000087253,-0.056642447771040313 +186282,931.4100000087254,-0.05664221216049779 +186283,931.4150000087255,-0.05664197659917048 +186284,931.4200000087257,-0.05664174108704843 +186285,931.4250000087258,-0.056641505624121735 +186286,931.4300000087259,-0.05664127021038047 +186287,931.435000008726,-0.0566410348458147 +186288,931.4400000087261,-0.05664079953041453 +186289,931.4450000087262,-0.056640564264170024 +186290,931.4500000087263,-0.05664032904707128 +186291,931.4550000087264,-0.056640093879108365 +186292,931.4600000087265,-0.05663985876027138 +186293,931.4650000087266,-0.05663962369055042 +186294,931.4700000087267,-0.05663938866993557 +186295,931.4750000087269,-0.05663915369841693 +186296,931.480000008727,-0.05663891877598459 +186297,931.4850000087271,-0.056638683902628655 +186298,931.4900000087272,-0.056638449078339224 +186299,931.4950000087273,-0.05663821430310639 +186300,931.5000000087274,-0.05663797957692027 +186301,931.5050000087275,-0.05663774489977095 +186302,931.5100000087276,-0.05663751027164855 +186303,931.5150000087277,-0.05663727569254317 +186304,931.5200000087278,-0.05663704116244493 +186305,931.525000008728,-0.056636806681343944 +186306,931.530000008728,-0.05663657224923031 +186307,931.5350000087282,-0.05663633786609417 +186308,931.5400000087283,-0.056636103531925615 +186309,931.5450000087284,-0.05663586924671478 +186310,931.5500000087285,-0.05663563501045178 +186311,931.5550000087286,-0.05663540082312674 +186312,931.5600000087287,-0.056635166684729794 +186313,931.5650000087288,-0.05663493259525108 +186314,931.5700000087289,-0.05663469855468068 +186315,931.575000008729,-0.05663446456300878 +186316,931.5800000087291,-0.05663423062022547 +186317,931.5850000087293,-0.056633996726320905 +186318,931.5900000087294,-0.05663376288128522 +186319,931.5950000087295,-0.05663352908510855 +186320,931.6000000087296,-0.05663329533778104 +186321,931.6050000087297,-0.05663306163929282 +186322,931.6100000087298,-0.05663282798963404 +186323,931.6150000087299,-0.056632594388794845 +186324,931.62000000873,-0.056632360836765386 +186325,931.6250000087301,-0.05663212733353581 +186326,931.6300000087302,-0.05663189387909627 +186327,931.6350000087303,-0.05663166047343691 +186328,931.6400000087305,-0.0566314271165479 +186329,931.6450000087306,-0.05663119380841938 +186330,931.6500000087307,-0.05663096054904152 +186331,931.6550000087308,-0.05663072733840447 +186332,931.6600000087309,-0.0566304941764984 +186333,931.665000008731,-0.056630261063313474 +186334,931.6700000087311,-0.05663002799883985 +186335,931.6750000087312,-0.0566297949830677 +186336,931.6800000087313,-0.05662956201598719 +186337,931.6850000087314,-0.0566293290975885 +186338,931.6900000087315,-0.056629096227861796 +186339,931.6950000087317,-0.05662886340679725 +186340,931.7000000087318,-0.05662863063438505 +186341,931.7050000087319,-0.056628397910615365 +186342,931.710000008732,-0.05662816523547837 +186343,931.7150000087321,-0.056627932608964246 +186344,931.7200000087322,-0.05662770003106318 +186345,931.7250000087323,-0.05662746750176538 +186346,931.7300000087324,-0.05662723502106101 +186347,931.7350000087325,-0.05662700258894026 +186348,931.7400000087326,-0.05662677020539333 +186349,931.7450000087327,-0.0566265378704104 +186350,931.7500000087329,-0.05662630558398168 +186351,931.755000008733,-0.05662607334609736 +186352,931.7600000087331,-0.056625841156747625 +186353,931.7650000087332,-0.056625609015922694 +186354,931.7700000087333,-0.05662537692361276 +186355,931.7750000087334,-0.056625144879808034 +186356,931.7800000087335,-0.05662491288449872 +186357,931.7850000087336,-0.05662468093767501 +186358,931.7900000087337,-0.05662444903932713 +186359,931.7950000087338,-0.05662421718944529 +186360,931.800000008734,-0.056623985388019694 +186361,931.805000008734,-0.05662375363504056 +186362,931.8100000087342,-0.0566235219304981 +186363,931.8150000087343,-0.056623290274382544 +186364,931.8200000087344,-0.0566230586666841 +186365,931.8250000087345,-0.05662282710739301 +186366,931.8300000087346,-0.05662259559649948 +186367,931.8350000087347,-0.05662236413399373 +186368,931.8400000087348,-0.056622132719866006 +186369,931.8450000087349,-0.05662190135410651 +186370,931.850000008735,-0.05662167003670551 +186371,931.8550000087351,-0.056621438767653215 +186372,931.8600000087353,-0.05662120754693986 +186373,931.8650000087354,-0.05662097637455568 +186374,931.8700000087355,-0.05662074525049093 +186375,931.8750000087356,-0.056620514174735834 +186376,931.8800000087357,-0.05662028314728063 +186377,931.8850000087358,-0.05662005216811558 +186378,931.8900000087359,-0.05661982123723091 +186379,931.895000008736,-0.056619590354616875 +186380,931.9000000087361,-0.05661935952026373 +186381,931.9050000087362,-0.05661912873416172 +186382,931.9100000087363,-0.0566188979963011 +186383,931.9150000087365,-0.05661866730667212 +186384,931.9200000087366,-0.05661843666526505 +186385,931.9250000087367,-0.05661820607207014 +186386,931.9300000087368,-0.05661797552707763 +186387,931.9350000087369,-0.05661774503027782 +186388,931.940000008737,-0.05661751458166094 +186389,931.9450000087371,-0.056617284181217274 +186390,931.9500000087372,-0.05661705382893707 +186391,931.9550000087373,-0.05661682352481063 +186392,931.9600000087374,-0.05661659326882818 +186393,931.9650000087375,-0.056616363060980036 +186394,931.9700000087377,-0.05661613290125645 +186395,931.9750000087378,-0.05661590278964769 +186396,931.9800000087379,-0.05661567272614405 +186397,931.985000008738,-0.056615442710735805 +186398,931.9900000087381,-0.05661521274341324 +186399,931.9950000087382,-0.05661498282416663 +186400,932.0000000087383,-0.056614752952986264 +186401,932.0050000087384,-0.05661452312986243 +186402,932.0100000087385,-0.05661429335478543 +186403,932.0150000087386,-0.056614063627745535 +186404,932.0200000087387,-0.056613833948733046 +186405,932.0250000087389,-0.05661360431773825 +186406,932.030000008739,-0.05661337473475145 +186407,932.0350000087391,-0.056613145199762925 +186408,932.0400000087392,-0.056612915712763 +186409,932.0450000087393,-0.056612686273741976 +186410,932.0500000087394,-0.05661245688269014 +186411,932.0550000087395,-0.0566122275395978 +186412,932.0600000087396,-0.056611998244455265 +186413,932.0650000087397,-0.056611768997252856 +186414,932.0700000087398,-0.05661153979798086 +186415,932.07500000874,-0.05661131064662961 +186416,932.0800000087401,-0.056611081543189404 +186417,932.0850000087402,-0.05661085248765056 +186418,932.0900000087403,-0.05661062348000341 +186419,932.0950000087404,-0.056610394520238264 +186420,932.1000000087405,-0.05661016560834544 +186421,932.1050000087406,-0.05660993674431526 +186422,932.1100000087407,-0.056609707928138055 +186423,932.1150000087408,-0.05660947915980414 +186424,932.1200000087409,-0.056609250439303864 +186425,932.125000008741,-0.056609021766627535 +186426,932.1300000087411,-0.05660879314176551 +186427,932.1350000087413,-0.05660856456470809 +186428,932.1400000087414,-0.056608336035445635 +186429,932.1450000087415,-0.056608107553968466 +186430,932.1500000087416,-0.05660787912026693 +186431,932.1550000087417,-0.056607650734331376 +186432,932.1600000087418,-0.05660742239615213 +186433,932.1650000087419,-0.05660719410571956 +186434,932.170000008742,-0.05660696586302399 +186435,932.1750000087421,-0.056606737668055775 +186436,932.1800000087422,-0.05660650952080526 +186437,932.1850000087423,-0.05660628142126281 +186438,932.1900000087425,-0.05660605336941876 +186439,932.1950000087426,-0.05660582536526347 +186440,932.2000000087427,-0.0566055974087873 +186441,932.2050000087428,-0.056605369499980615 +186442,932.2100000087429,-0.056605141638833775 +186443,932.215000008743,-0.056604913825337125 +186444,932.2200000087431,-0.05660468605948104 +186445,932.2250000087432,-0.056604458341255895 +186446,932.2300000087433,-0.056604230670652046 +186447,932.2350000087434,-0.05660400304765986 +186448,932.2400000087436,-0.05660377547226972 +186449,932.2450000087437,-0.056603547944471984 +186450,932.2500000087438,-0.05660332046425704 +186451,932.2550000087439,-0.05660309303161526 +186452,932.260000008744,-0.05660286564653703 +186453,932.2650000087441,-0.05660263830901272 +186454,932.2700000087442,-0.056602411019032704 +186455,932.2750000087443,-0.056602183776587385 +186456,932.2800000087444,-0.056601956581667126 +186457,932.2850000087445,-0.05660172943426234 +186458,932.2900000087446,-0.05660150233436339 +186459,932.2950000087448,-0.056601275281960683 +186460,932.3000000087449,-0.05660104827704461 +186461,932.305000008745,-0.05660082131960556 +186462,932.3100000087451,-0.05660059440963393 +186463,932.3150000087452,-0.05660036754712013 +186464,932.3200000087453,-0.05660014073205454 +186465,932.3250000087454,-0.056599913964427574 +186466,932.3300000087455,-0.05659968724422963 +186467,932.3350000087456,-0.05659946057145112 +186468,932.3400000087457,-0.05659923394608243 +186469,932.3450000087458,-0.056599007368114004 +186470,932.350000008746,-0.056598780837536215 +186471,932.3550000087461,-0.0565985543543395 +186472,932.3600000087462,-0.05659832791851426 +186473,932.3650000087463,-0.05659810153005091 +186474,932.3700000087464,-0.05659787518893988 +186475,932.3750000087465,-0.056597648895171576 +186476,932.3800000087466,-0.05659742264873643 +186477,932.3850000087467,-0.05659719644962485 +186478,932.3900000087468,-0.05659697029782727 +186479,932.3950000087469,-0.05659674419333412 +186480,932.400000008747,-0.05659651813613583 +186481,932.4050000087472,-0.05659629212622282 +186482,932.4100000087473,-0.05659606616358552 +186483,932.4150000087474,-0.056595840248214374 +186484,932.4200000087475,-0.0565956143800998 +186485,932.4250000087476,-0.05659538855923225 +186486,932.4300000087477,-0.05659516278560216 +186487,932.4350000087478,-0.05659493705919996 +186488,932.4400000087479,-0.05659471138001611 +186489,932.445000008748,-0.05659448574804104 +186490,932.4500000087481,-0.05659426016326521 +186491,932.4550000087482,-0.056594034625679045 +186492,932.4600000087484,-0.05659380913527301 +186493,932.4650000087485,-0.05659358369203754 +186494,932.4700000087486,-0.05659335829596312 +186495,932.4750000087487,-0.05659313294704017 +186496,932.4800000087488,-0.05659290764525918 +186497,932.4850000087489,-0.05659268239061056 +186498,932.490000008749,-0.05659245718308482 +186499,932.4950000087491,-0.05659223202267239 +186500,932.5000000087492,-0.056592006909363744 +186501,932.5050000087493,-0.05659178184314935 +186502,932.5100000087494,-0.05659155682401968 +186503,932.5150000087496,-0.05659133185196518 +186504,932.5200000087497,-0.05659110692697634 +186505,932.5250000087498,-0.05659088204904363 +186506,932.5300000087499,-0.056590657218157515 +186507,932.53500000875,-0.05659043243430848 +186508,932.5400000087501,-0.05659020769748699 +186509,932.5450000087502,-0.05658998300768353 +186510,932.5500000087503,-0.05658975836488858 +186511,932.5550000087504,-0.05658953376909264 +186512,932.5600000087505,-0.05658930922028617 +186513,932.5650000087506,-0.05658908471845967 +186514,932.5700000087508,-0.05658886026360362 +186515,932.5750000087509,-0.056588635855708516 +186516,932.580000008751,-0.05658841149476486 +186517,932.5850000087511,-0.05658818718076312 +186518,932.5900000087512,-0.0565879629136938 +186519,932.5950000087513,-0.056587738693547406 +186520,932.6000000087514,-0.05658751452031443 +186521,932.6050000087515,-0.05658729039398537 +186522,932.6100000087516,-0.05658706631455074 +186523,932.6150000087517,-0.05658684228200103 +186524,932.6200000087518,-0.056586618296326746 +186525,932.625000008752,-0.0565863943575184 +186526,932.6300000087521,-0.056586170465566514 +186527,932.6350000087522,-0.05658594662046157 +186528,932.6400000087523,-0.0565857228221941 +186529,932.6450000087524,-0.05658549907075462 +186530,932.6500000087525,-0.05658527536613364 +186531,932.6550000087526,-0.05658505170832167 +186532,932.6600000087527,-0.05658482809730924 +186533,932.6650000087528,-0.05658460453308688 +186534,932.6700000087529,-0.05658438101564509 +186535,932.675000008753,-0.056584157544974416 +186536,932.6800000087532,-0.05658393412106537 +186537,932.6850000087533,-0.056583710743908486 +186538,932.6900000087534,-0.05658348741349428 +186539,932.6950000087535,-0.056583264129813314 +186540,932.7000000087536,-0.0565830408928561 +186541,932.7050000087537,-0.05658281770261318 +186542,932.7100000087538,-0.05658259455907509 +186543,932.7150000087539,-0.05658237146223236 +186544,932.720000008754,-0.05658214841207554 +186545,932.7250000087541,-0.056581925408595184 +186546,932.7300000087542,-0.05658170245178181 +186547,932.7350000087544,-0.056581479541625984 +186548,932.7400000087545,-0.05658125667811824 +186549,932.7450000087546,-0.05658103386124914 +186550,932.7500000087547,-0.05658081109100922 +186551,932.7550000087548,-0.05658058836738906 +186552,932.7600000087549,-0.056580365690379185 +186553,932.765000008755,-0.05658014305997015 +186554,932.7700000087551,-0.05657992047615254 +186555,932.7750000087552,-0.056579697938916894 +186556,932.7800000087553,-0.05657947544825378 +186557,932.7850000087554,-0.05657925300415376 +186558,932.7900000087556,-0.05657903060660739 +186559,932.7950000087557,-0.056578808255605254 +186560,932.8000000087558,-0.05657858595113791 +186561,932.8050000087559,-0.05657836369319594 +186562,932.810000008756,-0.05657814148176991 +186563,932.8150000087561,-0.056577919316850384 +186564,932.8200000087562,-0.056577697198427944 +186565,932.8250000087563,-0.05657747512649317 +186566,932.8300000087564,-0.05657725310103663 +186567,932.8350000087565,-0.056577031122048926 +186568,932.8400000087566,-0.05657680918952062 +186569,932.8450000087568,-0.0565765873034423 +186570,932.8500000087569,-0.056576365463804554 +186571,932.855000008757,-0.056576143670597975 +186572,932.8600000087571,-0.056575921923813145 +186573,932.8650000087572,-0.05657570022344066 +186574,932.8700000087573,-0.056575478569471115 +186575,932.8750000087574,-0.056575256961895096 +186576,932.8800000087575,-0.0565750354007032 +186577,932.8850000087576,-0.05657481388588603 +186578,932.8900000087577,-0.05657459241743419 +186579,932.8950000087578,-0.05657437099533827 +186580,932.900000008758,-0.056574149619588884 +186581,932.9050000087581,-0.05657392829017663 +186582,932.9100000087582,-0.05657370700709211 +186583,932.9150000087583,-0.05657348577032596 +186584,932.9200000087584,-0.05657326457986876 +186585,932.9250000087585,-0.05657304343571113 +186586,932.9300000087586,-0.05657282233784369 +186587,932.9350000087587,-0.05657260128625705 +186588,932.9400000087588,-0.05657238028094183 +186589,932.9450000087589,-0.05657215932188864 +186590,932.950000008759,-0.056571938409088106 +186591,932.9550000087592,-0.05657171754253085 +186592,932.9600000087593,-0.0565714967222075 +186593,932.9650000087594,-0.05657127594810868 +186594,932.9700000087595,-0.05657105522022502 +186595,932.9750000087596,-0.056570834538547145 +186596,932.9800000087597,-0.05657061390306569 +186597,932.9850000087598,-0.05657039331377129 +186598,932.9900000087599,-0.05657017277065457 +186599,932.99500000876,-0.05656995227370617 +186600,933.0000000087601,-0.056569731822916726 +186601,933.0050000087602,-0.056569511418276874 +186602,933.0100000087604,-0.056569291059777274 +186603,933.0150000087605,-0.056569070747408544 +186604,933.0200000087606,-0.05656885048116135 +186605,933.0250000087607,-0.05656863026102633 +186606,933.0300000087608,-0.05656841008699412 +186607,933.0350000087609,-0.05656818995905539 +186608,933.040000008761,-0.05656796987720078 +186609,933.0450000087611,-0.05656774984142095 +186610,933.0500000087612,-0.05656752985170655 +186611,933.0550000087613,-0.056567309908048244 +186612,933.0600000087614,-0.05656709001043669 +186613,933.0650000087616,-0.05656687015886253 +186614,933.0700000087617,-0.05656665035331645 +186615,933.0750000087618,-0.056566430593789095 +186616,933.0800000087619,-0.056566210880271146 +186617,933.085000008762,-0.05656599121275326 +186618,933.0900000087621,-0.05656577159122611 +186619,933.0950000087622,-0.05656555201568037 +186620,933.1000000087623,-0.0565653324861067 +186621,933.1050000087624,-0.05656511300249578 +186622,933.1100000087625,-0.056564893564838285 +186623,933.1150000087626,-0.05656467417312491 +186624,933.1200000087628,-0.056564454827346324 +186625,933.1250000087629,-0.0565642355274932 +186626,933.130000008763,-0.05656401627355622 +186627,933.1350000087631,-0.05656379706552608 +186628,933.1400000087632,-0.056563577903393454 +186629,933.1450000087633,-0.05656335878714903 +186630,933.1500000087634,-0.0565631397167835 +186631,933.1550000087635,-0.05656292069228756 +186632,933.1600000087636,-0.05656270171365191 +186633,933.1650000087637,-0.05656248278086723 +186634,933.1700000087639,-0.056562263893924214 +186635,933.175000008764,-0.05656204505281357 +186636,933.1800000087641,-0.05656182625752601 +186637,933.1850000087642,-0.056561607508052204 +186638,933.1900000087643,-0.05656138880438289 +186639,933.1950000087644,-0.056561170146508744 +186640,933.2000000087645,-0.056560951534420485 +186641,933.2050000087646,-0.056560732968108825 +186642,933.2100000087647,-0.05656051444756447 +186643,933.2150000087648,-0.05656029597277814 +186644,933.2200000087649,-0.05656007754374053 +186645,933.225000008765,-0.05655985916044237 +186646,933.2300000087652,-0.056559640822874374 +186647,933.2350000087653,-0.056559422531027255 +186648,933.2400000087654,-0.05655920428489174 +186649,933.2450000087655,-0.05655898608445854 +186650,933.2500000087656,-0.0565587679297184 +186651,933.2550000087657,-0.05655854982066204 +186652,933.2600000087658,-0.05655833175728017 +186653,933.2650000087659,-0.05655811373956354 +186654,933.270000008766,-0.05655789576750286 +186655,933.2750000087661,-0.05655767784108887 +186656,933.2800000087663,-0.05655745996031231 +186657,933.2850000087664,-0.05655724212516393 +186658,933.2900000087665,-0.05655702433563444 +186659,933.2950000087666,-0.05655680659171459 +186660,933.3000000087667,-0.05655658889339512 +186661,933.3050000087668,-0.056556371240666765 +186662,933.3100000087669,-0.05655615363352028 +186663,933.315000008767,-0.05655593607194642 +186664,933.3200000087671,-0.05655571855593591 +186665,933.3250000087672,-0.05655550108547952 +186666,933.3300000087673,-0.056555283660567994 +186667,933.3350000087675,-0.056555066281192085 +186668,933.3400000087676,-0.056554848947342536 +186669,933.3450000087677,-0.05655463165901011 +186670,933.3500000087678,-0.05655441441618558 +186671,933.3550000087679,-0.05655419721885969 +186672,933.360000008768,-0.05655398006702319 +186673,933.3650000087681,-0.05655376296066687 +186674,933.3700000087682,-0.05655354589978148 +186675,933.3750000087683,-0.056553328884357795 +186676,933.3800000087684,-0.05655311191438658 +186677,933.3850000087685,-0.05655289498985859 +186678,933.3900000087687,-0.05655267811076462 +186679,933.3950000087688,-0.056552461277095435 +186680,933.4000000087689,-0.056552244488841795 +186681,933.405000008769,-0.05655202774599449 +186682,933.4100000087691,-0.05655181104854431 +186683,933.4150000087692,-0.05655159439648202 +186684,933.4200000087693,-0.05655137778979839 +186685,933.4250000087694,-0.056551161228484234 +186686,933.4300000087695,-0.05655094471253031 +186687,933.4350000087696,-0.05655072824192743 +186688,933.4400000087697,-0.05655051181666636 +186689,933.4450000087699,-0.056550295436737896 +186690,933.45000000877,-0.05655007910213284 +186691,933.4550000087701,-0.05654986281284198 +186692,933.4600000087702,-0.0565496465688561 +186693,933.4650000087703,-0.05654943037016602 +186694,933.4700000087704,-0.056549214216762525 +186695,933.4750000087705,-0.056548998108636415 +186696,933.4800000087706,-0.0565487820457785 +186697,933.4850000087707,-0.056548566028179564 +186698,933.4900000087708,-0.05654835005583043 +186699,933.495000008771,-0.0565481341287219 +186700,933.500000008771,-0.05654791824684479 +186701,933.5050000087712,-0.0565477024101899 +186702,933.5100000087713,-0.056547486618748054 +186703,933.5150000087714,-0.056547270872510054 +186704,933.5200000087715,-0.05654705517146672 +186705,933.5250000087716,-0.056546839515608883 +186706,933.5300000087717,-0.056546623904927346 +186707,933.5350000087718,-0.05654640833941292 +186708,933.5400000087719,-0.05654619281905646 +186709,933.545000008772,-0.056545977343848766 +186710,933.5500000087721,-0.05654576191378067 +186711,933.5550000087723,-0.05654554652884299 +186712,933.5600000087724,-0.05654533118902657 +186713,933.5650000087725,-0.05654511589432224 +186714,933.5700000087726,-0.056544900644720814 +186715,933.5750000087727,-0.05654468544021315 +186716,933.5800000087728,-0.056544470280790064 +186717,933.5850000087729,-0.05654425516644241 +186718,933.590000008773,-0.05654404009716102 +186719,933.5950000087731,-0.056543825072936725 +186720,933.6000000087732,-0.056543610093760396 +186721,933.6050000087733,-0.056543395159622846 +186722,933.6100000087735,-0.05654318027051494 +186723,933.6150000087736,-0.05654296542642753 +186724,933.6200000087737,-0.05654275062735145 +186725,933.6250000087738,-0.05654253587327756 +186726,933.6300000087739,-0.05654232116419671 +186727,933.635000008774,-0.05654210650009975 +186728,933.6400000087741,-0.056541891880977545 +186729,933.6450000087742,-0.05654167730682094 +186730,933.6500000087743,-0.05654146277762082 +186731,933.6550000087744,-0.05654124829336803 +186732,933.6600000087745,-0.05654103385405342 +186733,933.6650000087747,-0.056540819459667886 +186734,933.6700000087748,-0.056540605110202265 +186735,933.6750000087749,-0.056540390805647434 +186736,933.680000008775,-0.056540176545994275 +186737,933.6850000087751,-0.05653996233123364 +186738,933.6900000087752,-0.056539748161356415 +186739,933.6950000087753,-0.05653953403635347 +186740,933.7000000087754,-0.05653931995621568 +186741,933.7050000087755,-0.05653910592093392 +186742,933.7100000087756,-0.056538891930499095 +186743,933.7150000087757,-0.05653867798490205 +186744,933.7200000087759,-0.0565384640841337 +186745,933.725000008776,-0.05653825022818489 +186746,933.7300000087761,-0.05653803641704656 +186747,933.7350000087762,-0.05653782265070954 +186748,933.7400000087763,-0.05653760892916476 +186749,933.7450000087764,-0.0565373952524031 +186750,933.7500000087765,-0.05653718162041547 +186751,933.7550000087766,-0.05653696803319274 +186752,933.7600000087767,-0.056536754490725816 +186753,933.7650000087768,-0.05653654099300559 +186754,933.770000008777,-0.05653632754002297 +186755,933.775000008777,-0.05653611413176886 +186756,933.7800000087772,-0.05653590076823414 +186757,933.7850000087773,-0.056535687449409754 +186758,933.7900000087774,-0.05653547417528658 +186759,933.7950000087775,-0.056535260945855544 +186760,933.8000000087776,-0.056535047761107536 +186761,933.8050000087777,-0.05653483462103348 +186762,933.8100000087778,-0.05653462152562429 +186763,933.8150000087779,-0.05653440847487087 +186764,933.820000008778,-0.056534195468764155 +186765,933.8250000087781,-0.05653398250729505 +186766,933.8300000087783,-0.05653376959045447 +186767,933.8350000087784,-0.056533556718233346 +186768,933.8400000087785,-0.0565333438906226 +186769,933.8450000087786,-0.05653313110761316 +186770,933.8500000087787,-0.05653291836919595 +186771,933.8550000087788,-0.056532705675361894 +186772,933.8600000087789,-0.056532493026101936 +186773,933.865000008779,-0.05653228042140698 +186774,933.8700000087791,-0.05653206786126799 +186775,933.8750000087792,-0.05653185534567588 +186776,933.8800000087793,-0.0565316428746216 +186777,933.8850000087795,-0.056531430448096075 +186778,933.8900000087796,-0.05653121806609026 +186779,933.8950000087797,-0.05653100572859509 +186780,933.9000000087798,-0.05653079343560151 +186781,933.9050000087799,-0.05653058118710046 +186782,933.91000000878,-0.05653036898308288 +186783,933.9150000087801,-0.05653015682353974 +186784,933.9200000087802,-0.05652994470846197 +186785,933.9250000087803,-0.05652973263784054 +186786,933.9300000087804,-0.056529520611666384 +186787,933.9350000087805,-0.05652930862993047 +186788,933.9400000087807,-0.05652909669262374 +186789,933.9450000087808,-0.056528884799737174 +186790,933.9500000087809,-0.05652867295126171 +186791,933.955000008781,-0.056528461147188326 +186792,933.9600000087811,-0.05652824938750799 +186793,933.9650000087812,-0.05652803767221164 +186794,933.9700000087813,-0.05652782600129026 +186795,933.9750000087814,-0.05652761437473482 +186796,933.9800000087815,-0.05652740279253629 +186797,933.9850000087816,-0.056527191254685645 +186798,933.9900000087817,-0.05652697976117385 +186799,933.9950000087819,-0.056526768311991875 +186800,934.000000008782,-0.05652655690713071 +186801,934.0050000087821,-0.05652634554658133 +186802,934.0100000087822,-0.05652613423033471 +186803,934.0150000087823,-0.056525922958381825 +186804,934.0200000087824,-0.05652571173071367 +186805,934.0250000087825,-0.05652550054732123 +186806,934.0300000087826,-0.05652528940819549 +186807,934.0350000087827,-0.056525078313327426 +186808,934.0400000087828,-0.05652486726270804 +186809,934.045000008783,-0.056524656256328326 +186810,934.0500000087831,-0.05652444529417927 +186811,934.0550000087832,-0.05652423437625187 +186812,934.0600000087833,-0.05652402350253712 +186813,934.0650000087834,-0.056523812673026017 +186814,934.0700000087835,-0.05652360188770957 +186815,934.0750000087836,-0.056523391146578776 +186816,934.0800000087837,-0.056523180449624635 +186817,934.0850000087838,-0.05652296979683816 +186818,934.0900000087839,-0.05652275918821033 +186819,934.095000008784,-0.05652254862373219 +186820,934.1000000087841,-0.05652233810339473 +186821,934.1050000087843,-0.056522127627188966 +186822,934.1100000087844,-0.0565219171951059 +186823,934.1150000087845,-0.05652170680713657 +186824,934.1200000087846,-0.056521496463271974 +186825,934.1250000087847,-0.05652128616350314 +186826,934.1300000087848,-0.05652107590782107 +186827,934.1350000087849,-0.0565208656962168 +186828,934.140000008785,-0.05652065552868136 +186829,934.1450000087851,-0.05652044540520577 +186830,934.1500000087852,-0.05652023532578103 +186831,934.1550000087854,-0.05652002529039819 +186832,934.1600000087855,-0.056519815299048294 +186833,934.1650000087856,-0.056519605351722346 +186834,934.1700000087857,-0.056519395448411405 +186835,934.1750000087858,-0.05651918558910647 +186836,934.1800000087859,-0.0565189757737986 +186837,934.185000008786,-0.05651876600247884 +186838,934.1900000087861,-0.05651855627513822 +186839,934.1950000087862,-0.056518346591767785 +186840,934.2000000087863,-0.056518136952358564 +186841,934.2050000087864,-0.05651792735690161 +186842,934.2100000087866,-0.056517717805387974 +186843,934.2150000087867,-0.0565175082978087 +186844,934.2200000087868,-0.05651729883415484 +186845,934.2250000087869,-0.056517089414417444 +186846,934.230000008787,-0.05651688003858756 +186847,934.2350000087871,-0.056516670706656245 +186848,934.2400000087872,-0.05651646141861456 +186849,934.2450000087873,-0.056516252174453545 +186850,934.2500000087874,-0.056516042974164266 +186851,934.2550000087875,-0.0565158338177378 +186852,934.2600000087876,-0.0565156247051652 +186853,934.2650000087878,-0.05651541563643753 +186854,934.2700000087879,-0.05651520661154583 +186855,934.275000008788,-0.05651499763048122 +186856,934.2800000087881,-0.05651478869323474 +186857,934.2850000087882,-0.056514579799797446 +186858,934.2900000087883,-0.05651437095016043 +186859,934.2950000087884,-0.056514162144314754 +186860,934.3000000087885,-0.0565139533822515 +186861,934.3050000087886,-0.05651374466396176 +186862,934.3100000087887,-0.05651353598943659 +186863,934.3150000087888,-0.056513327358667084 +186864,934.320000008789,-0.05651311877164432 +186865,934.3250000087891,-0.05651291022835937 +186866,934.3300000087892,-0.056512701728803336 +186867,934.3350000087893,-0.056512493272967305 +186868,934.3400000087894,-0.05651228486084236 +186869,934.3450000087895,-0.056512076492419586 +186870,934.3500000087896,-0.05651186816769007 +186871,934.3550000087897,-0.05651165988664492 +186872,934.3600000087898,-0.05651145164927523 +186873,934.3650000087899,-0.056511243455572104 +186874,934.37000000879,-0.05651103530552662 +186875,934.3750000087902,-0.05651082719912989 +186876,934.3800000087903,-0.05651061913637301 +186877,934.3850000087904,-0.05651041111724709 +186878,934.3900000087905,-0.05651020314174324 +186879,934.3950000087906,-0.05650999520985255 +186880,934.4000000087907,-0.05650978732156614 +186881,934.4050000087908,-0.056509579476875106 +186882,934.4100000087909,-0.05650937167577058 +186883,934.415000008791,-0.056509163918243656 +186884,934.4200000087911,-0.05650895620428547 +186885,934.4250000087912,-0.05650874853388711 +186886,934.4300000087914,-0.05650854090703973 +186887,934.4350000087915,-0.05650833332373442 +186888,934.4400000087916,-0.05650812578396232 +186889,934.4450000087917,-0.05650791828771453 +186890,934.4500000087918,-0.056507710834982204 +186891,934.4550000087919,-0.05650750342575646 +186892,934.460000008792,-0.0565072960600284 +186893,934.4650000087921,-0.056507088737789174 +186894,934.4700000087922,-0.05650688145902991 +186895,934.4750000087923,-0.056506674223741754 +186896,934.4800000087924,-0.05650646703191582 +186897,934.4850000087926,-0.056506259883543256 +186898,934.4900000087927,-0.0565060527786152 +186899,934.4950000087928,-0.056505845717122784 +186900,934.5000000087929,-0.05650563869905714 +186901,934.505000008793,-0.05650543172440944 +186902,934.5100000087931,-0.0565052247931708 +186903,934.5150000087932,-0.05650501790533238 +186904,934.5200000087933,-0.056504811060885334 +186905,934.5250000087934,-0.0565046042598208 +186906,934.5300000087935,-0.05650439750212992 +186907,934.5350000087936,-0.05650419078780385 +186908,934.5400000087938,-0.056503984116833765 +186909,934.5450000087939,-0.056503777489210795 +186910,934.550000008794,-0.05650357090492611 +186911,934.5550000087941,-0.05650336436397086 +186912,934.5600000087942,-0.05650315786633621 +186913,934.5650000087943,-0.056502951412013336 +186914,934.5700000087944,-0.05650274500099337 +186915,934.5750000087945,-0.056502538633267506 +186916,934.5800000087946,-0.0565023323088269 +186917,934.5850000087947,-0.05650212602766271 +186918,934.5900000087948,-0.05650191978976612 +186919,934.595000008795,-0.05650171359512831 +186920,934.6000000087951,-0.05650150744374044 +186921,934.6050000087952,-0.05650130133559368 +186922,934.6100000087953,-0.056501095270679216 +186923,934.6150000087954,-0.05650088924898822 +186924,934.6200000087955,-0.05650068327051187 +186925,934.6250000087956,-0.056500477335241356 +186926,934.6300000087957,-0.05650027144316786 +186927,934.6350000087958,-0.05650006559428256 +186928,934.6400000087959,-0.056499859788576655 +186929,934.645000008796,-0.056499654026041325 +186930,934.6500000087962,-0.05649944830666776 +186931,934.6550000087963,-0.056499242630447144 +186932,934.6600000087964,-0.05649903699737067 +186933,934.6650000087965,-0.056498831407429534 +186934,934.6700000087966,-0.05649862586061494 +186935,934.6750000087967,-0.05649842035691808 +186936,934.6800000087968,-0.056498214896330154 +186937,934.6850000087969,-0.05649800947884236 +186938,934.690000008797,-0.05649780410444592 +186939,934.6950000087971,-0.05649759877313201 +186940,934.7000000087972,-0.05649739348489185 +186941,934.7050000087974,-0.05649718823971664 +186942,934.7100000087975,-0.056496983037597585 +186943,934.7150000087976,-0.05649677787852592 +186944,934.7200000087977,-0.056496572762492835 +186945,934.7250000087978,-0.05649636768948955 +186946,934.7300000087979,-0.056496162659507264 +186947,934.735000008798,-0.05649595767253722 +186948,934.7400000087981,-0.056495752728570624 +186949,934.7450000087982,-0.0564955478275987 +186950,934.7500000087983,-0.056495342969612665 +186951,934.7550000087984,-0.056495138154603754 +186952,934.7600000087986,-0.05649493338256318 +186953,934.7650000087987,-0.05649472865348216 +186954,934.7700000087988,-0.05649452396735194 +186955,934.7750000087989,-0.05649431932416374 +186956,934.780000008799,-0.05649411472390879 +186957,934.7850000087991,-0.05649391016657835 +186958,934.7900000087992,-0.05649370565216361 +186959,934.7950000087993,-0.05649350118065584 +186960,934.8000000087994,-0.056493296752046264 +186961,934.8050000087995,-0.056493092366326124 +186962,934.8100000087996,-0.056492888023486655 +186963,934.8150000087998,-0.05649268372351912 +186964,934.8200000087999,-0.05649247946641475 +186965,934.8250000088,-0.05649227525216479 +186966,934.8300000088001,-0.056492071080760486 +186967,934.8350000088002,-0.056491866952193076 +186968,934.8400000088003,-0.05649166286645384 +186969,934.8450000088004,-0.056491458823534006 +186970,934.8500000088005,-0.056491254823424826 +186971,934.8550000088006,-0.05649105086611756 +186972,934.8600000088007,-0.056490846951603474 +186973,934.8650000088008,-0.05649064307987382 +186974,934.870000008801,-0.056490439250919865 +186975,934.8750000088011,-0.05649023546473286 +186976,934.8800000088012,-0.05649003172130408 +186977,934.8850000088013,-0.056489828020624785 +186978,934.8900000088014,-0.056489624362686244 +186979,934.8950000088015,-0.05648942074747973 +186980,934.9000000088016,-0.0564892171749965 +186981,934.9050000088017,-0.05648901364522783 +186982,934.9100000088018,-0.05648881015816498 +186983,934.9150000088019,-0.056488606713799246 +186984,934.920000008802,-0.056488403312121904 +186985,934.9250000088022,-0.05648819995312422 +186986,934.9300000088023,-0.056487996636797475 +186987,934.9350000088024,-0.056487793363132956 +186988,934.9400000088025,-0.056487590132121936 +186989,934.9450000088026,-0.05648738694375571 +186990,934.9500000088027,-0.05648718379802556 +186991,934.9550000088028,-0.056486980694922764 +186992,934.9600000088029,-0.05648677763443863 +186993,934.965000008803,-0.05648657461656444 +186994,934.9700000088031,-0.056486371641291486 +186995,934.9750000088032,-0.05648616870861106 +186996,934.9800000088034,-0.05648596581851446 +186997,934.9850000088035,-0.05648576297099298 +186998,934.9900000088036,-0.05648556016603792 +186999,934.9950000088037,-0.056485357403640565 +187000,935.0000000088038,-0.05648515468379225 +187001,935.0050000088039,-0.05648495200648425 +187002,935.010000008804,-0.05648474937170788 +187003,935.0150000088041,-0.05648454677945445 +187004,935.0200000088042,-0.056484344229715266 +187005,935.0250000088043,-0.056484141722481625 +187006,935.0300000088044,-0.05648393925774485 +187007,935.0350000088046,-0.05648373683549626 +187008,935.0400000088047,-0.056483534455727166 +187009,935.0450000088048,-0.056483332118428875 +187010,935.0500000088049,-0.05648312982359271 +187011,935.055000008805,-0.056482927571209984 +187012,935.0600000088051,-0.05648272536127203 +187013,935.0650000088052,-0.056482523193770166 +187014,935.0700000088053,-0.05648232106869571 +187015,935.0750000088054,-0.05648211898604001 +187016,935.0800000088055,-0.056481916945794367 +187017,935.0850000088057,-0.056481714947950123 +187018,935.0900000088058,-0.056481512992498595 +187019,935.0950000088059,-0.05648131107943112 +187020,935.100000008806,-0.05648110920873904 +187021,935.1050000088061,-0.0564809073804137 +187022,935.1100000088062,-0.05648070559444641 +187023,935.1150000088063,-0.05648050385082851 +187024,935.1200000088064,-0.05648030214955137 +187025,935.1250000088065,-0.056480100490606304 +187026,935.1300000088066,-0.05647989887398467 +187027,935.1350000088067,-0.0564796972996778 +187028,935.1400000088069,-0.05647949576767704 +187029,935.145000008807,-0.056479294277973754 +187030,935.1500000088071,-0.05647909283055927 +187031,935.1550000088072,-0.05647889142542496 +187032,935.1600000088073,-0.05647869006256217 +187033,935.1650000088074,-0.05647848874196224 +187034,935.1700000088075,-0.05647828746361654 +187035,935.1750000088076,-0.056478086227516426 +187036,935.1800000088077,-0.056477885033653266 +187037,935.1850000088078,-0.0564776838820184 +187038,935.1900000088079,-0.0564774827726032 +187039,935.195000008808,-0.05647728170539902 +187040,935.2000000088082,-0.05647708068039725 +187041,935.2050000088083,-0.056476879697589244 +187042,935.2100000088084,-0.05647667875696635 +187043,935.2150000088085,-0.056476477858519974 +187044,935.2200000088086,-0.05647627700224146 +187045,935.2250000088087,-0.05647607618812219 +187046,935.2300000088088,-0.056475875416153544 +187047,935.2350000088089,-0.05647567468632688 +187048,935.240000008809,-0.056475473998633605 +187049,935.2450000088091,-0.05647527335306508 +187050,935.2500000088093,-0.05647507274961268 +187051,935.2550000088094,-0.0564748721882678 +187052,935.2600000088095,-0.056474671669021814 +187053,935.2650000088096,-0.05647447119186612 +187054,935.2700000088097,-0.056474270756792094 +187055,935.2750000088098,-0.056474070363791144 +187056,935.2800000088099,-0.056473870012854636 +187057,935.28500000881,-0.05647366970397397 +187058,935.2900000088101,-0.05647346943714055 +187059,935.2950000088102,-0.05647326921234576 +187060,935.3000000088103,-0.056473069029581 +187061,935.3050000088105,-0.056472868888837666 +187062,935.3100000088106,-0.056472668790107164 +187063,935.3150000088107,-0.056472468733380896 +187064,935.3200000088108,-0.056472268718650256 +187065,935.3250000088109,-0.056472068745906656 +187066,935.330000008811,-0.05647186881514149 +187067,935.3350000088111,-0.05647166892634618 +187068,935.3400000088112,-0.056471469079512136 +187069,935.3450000088113,-0.05647126927463076 +187070,935.3500000088114,-0.05647106951169347 +187071,935.3550000088115,-0.05647086979069168 +187072,935.3600000088117,-0.056470670111616814 +187073,935.3650000088118,-0.05647047047446027 +187074,935.3700000088119,-0.056470270879213476 +187075,935.375000008812,-0.05647007132586785 +187076,935.3800000088121,-0.05646987181441482 +187077,935.3850000088122,-0.0564696723448458 +187078,935.3900000088123,-0.05646947291715223 +187079,935.3950000088124,-0.056469273531325526 +187080,935.4000000088125,-0.05646907418735711 +187081,935.4050000088126,-0.05646887488523842 +187082,935.4100000088127,-0.0564686756249609 +187083,935.4150000088129,-0.05646847640651595 +187084,935.420000008813,-0.05646827722989504 +187085,935.4250000088131,-0.05646807809508958 +187086,935.4300000088132,-0.05646787900209103 +187087,935.4350000088133,-0.056467679950890796 +187088,935.4400000088134,-0.056467480941480346 +187089,935.4450000088135,-0.05646728197385112 +187090,935.4500000088136,-0.05646708304799455 +187091,935.4550000088137,-0.056466884163902095 +187092,935.4600000088138,-0.056466685321565194 +187093,935.465000008814,-0.056466486520975294 +187094,935.470000008814,-0.056466287762123854 +187095,935.4750000088142,-0.05646608904500232 +187096,935.4800000088143,-0.05646589036960215 +187097,935.4850000088144,-0.05646569173591479 +187098,935.4900000088145,-0.0564654931439317 +187099,935.4950000088146,-0.056465294593644334 +187100,935.5000000088147,-0.05646509608504415 +187101,935.5050000088148,-0.056464897618122636 +187102,935.5100000088149,-0.056464699192871226 +187103,935.515000008815,-0.05646450080928139 +187104,935.5200000088151,-0.056464302467344595 +187105,935.5250000088153,-0.0564641041670523 +187106,935.5300000088154,-0.056463905908395985 +187107,935.5350000088155,-0.05646370769136712 +187108,935.5400000088156,-0.056463509515957175 +187109,935.5450000088157,-0.05646331138215761 +187110,935.5500000088158,-0.05646311328995993 +187111,935.5550000088159,-0.05646291523935559 +187112,935.560000008816,-0.056462717230336086 +187113,935.5650000088161,-0.05646251926289287 +187114,935.5700000088162,-0.056462321337017445 +187115,935.5750000088163,-0.056462123452701275 +187116,935.5800000088165,-0.05646192560993586 +187117,935.5850000088166,-0.05646172780871268 +187118,935.5900000088167,-0.056461530049023226 +187119,935.5950000088168,-0.05646133233085898 +187120,935.6000000088169,-0.05646113465421145 +187121,935.605000008817,-0.05646093701907211 +187122,935.6100000088171,-0.05646073942543245 +187123,935.6150000088172,-0.05646054187328399 +187124,935.6200000088173,-0.0564603443626182 +187125,935.6250000088174,-0.0564601468934266 +187126,935.6300000088175,-0.056459949465700675 +187127,935.6350000088177,-0.056459752079431935 +187128,935.6400000088178,-0.05645955473461189 +187129,935.6450000088179,-0.056459357431232024 +187130,935.650000008818,-0.05645916016928385 +187131,935.6550000088181,-0.056458962948758885 +187132,935.6600000088182,-0.056458765769648624 +187133,935.6650000088183,-0.05645856863194459 +187134,935.6700000088184,-0.05645837153563829 +187135,935.6750000088185,-0.056458174480721254 +187136,935.6800000088186,-0.05645797746718498 +187137,935.6850000088187,-0.05645778049502097 +187138,935.6900000088189,-0.05645758356422077 +187139,935.695000008819,-0.05645738667477589 +187140,935.7000000088191,-0.05645718982667786 +187141,935.7050000088192,-0.05645699301991819 +187142,935.7100000088193,-0.05645679625448841 +187143,935.7150000088194,-0.05645659953038005 +187144,935.7200000088195,-0.05645640284758463 +187145,935.7250000088196,-0.056456206206093686 +187146,935.7300000088197,-0.05645600960589874 +187147,935.7350000088198,-0.05645581304699134 +187148,935.74000000882,-0.056455616529363 +187149,935.74500000882,-0.05645542005300527 +187150,935.7500000088202,-0.056455223617909694 +187151,935.7550000088203,-0.05645502722406779 +187152,935.7600000088204,-0.056454830871471115 +187153,935.7650000088205,-0.056454634560111204 +187154,935.7700000088206,-0.05645443828997959 +187155,935.7750000088207,-0.05645424206106785 +187156,935.7800000088208,-0.05645404587336749 +187157,935.7850000088209,-0.05645384972687009 +187158,935.790000008821,-0.05645365362156717 +187159,935.7950000088211,-0.05645345755745031 +187160,935.8000000088213,-0.056453261534511044 +187161,935.8050000088214,-0.056453065552740926 +187162,935.8100000088215,-0.05645286961213152 +187163,935.8150000088216,-0.05645267371267439 +187164,935.8200000088217,-0.056452477854361076 +187165,935.8250000088218,-0.05645228203718315 +187166,935.8300000088219,-0.056452086261132184 +187167,935.835000008822,-0.05645189052619972 +187168,935.8400000088221,-0.05645169483237733 +187169,935.8450000088222,-0.056451499179656583 +187170,935.8500000088223,-0.056451303568029035 +187171,935.8550000088225,-0.056451107997486275 +187172,935.8600000088226,-0.056450912468019865 +187173,935.8650000088227,-0.056450716979621375 +187174,935.8700000088228,-0.05645052153228238 +187175,935.8750000088229,-0.05645032612599447 +187176,935.880000008823,-0.056450130760749194 +187177,935.8850000088231,-0.05644993543653816 +187178,935.8900000088232,-0.05644974015335292 +187179,935.8950000088233,-0.05644954491118509 +187180,935.9000000088234,-0.056449349710026214 +187181,935.9050000088235,-0.0564491545498679 +187182,935.9100000088237,-0.05644895943070174 +187183,935.9150000088238,-0.056448764352519304 +187184,935.9200000088239,-0.0564485693153122 +187185,935.925000008824,-0.056448374319072 +187186,935.9300000088241,-0.05644817936379032 +187187,935.9350000088242,-0.056447984449458734 +187188,935.9400000088243,-0.056447789576068844 +187189,935.9450000088244,-0.056447594743612245 +187190,935.9500000088245,-0.056447399952080535 +187191,935.9550000088246,-0.05644720520146531 +187192,935.9600000088247,-0.05644701049175818 +187193,935.9650000088249,-0.056446815822950754 +187194,935.970000008825,-0.05644662119503462 +187195,935.9750000088251,-0.05644642660800141 +187196,935.9800000088252,-0.05644623206184271 +187197,935.9850000088253,-0.05644603755655012 +187198,935.9900000088254,-0.05644584309211528 +187199,935.9950000088255,-0.05644564866852979 +187200,936.0000000088256,-0.05644545428578526 +187201,936.0050000088257,-0.05644525994387331 +187202,936.0100000088258,-0.05644506564278555 +187203,936.015000008826,-0.05644487138251361 +187204,936.0200000088261,-0.056444677163049094 +187205,936.0250000088262,-0.05644448298438364 +187206,936.0300000088263,-0.05644428884650886 +187207,936.0350000088264,-0.05644409474941638 +187208,936.0400000088265,-0.056443900693097834 +187209,936.0450000088266,-0.05644370667754484 +187210,936.0500000088267,-0.056443512702749034 +187211,936.0550000088268,-0.056443318768702046 +187212,936.0600000088269,-0.056443124875395496 +187213,936.065000008827,-0.056442931022821045 +187214,936.0700000088272,-0.05644273721097031 +187215,936.0750000088273,-0.05644254343983492 +187216,936.0800000088274,-0.05644234970940653 +187217,936.0850000088275,-0.056442156019676774 +187218,936.0900000088276,-0.0564419623706373 +187219,936.0950000088277,-0.056441768762279736 +187220,936.1000000088278,-0.05644157519459574 +187221,936.1050000088279,-0.05644138166757695 +187222,936.110000008828,-0.05644118818121501 +187223,936.1150000088281,-0.05644099473550158 +187224,936.1200000088282,-0.0564408013304283 +187225,936.1250000088284,-0.05644060796598683 +187226,936.1300000088285,-0.05644041464216882 +187227,936.1350000088286,-0.05644022135896593 +187228,936.1400000088287,-0.05644002811636982 +187229,936.1450000088288,-0.05643983491437213 +187230,936.1500000088289,-0.05643964175296454 +187231,936.155000008829,-0.05643944863213869 +187232,936.1600000088291,-0.056439255551886267 +187233,936.1650000088292,-0.05643906251219892 +187234,936.1700000088293,-0.05643886951306831 +187235,936.1750000088294,-0.056438676554486124 +187236,936.1800000088296,-0.05643848363644402 +187237,936.1850000088297,-0.05643829075893366 +187238,936.1900000088298,-0.056438097921946734 +187239,936.1950000088299,-0.0564379051254749 +187240,936.20000000883,-0.05643771236950984 +187241,936.2050000088301,-0.05643751965404323 +187242,936.2100000088302,-0.05643732697906674 +187243,936.2150000088303,-0.05643713434457206 +187244,936.2200000088304,-0.05643694175055086 +187245,936.2250000088305,-0.056436749196994825 +187246,936.2300000088306,-0.05643655668389565 +187247,936.2350000088308,-0.05643636421124501 +187248,936.2400000088309,-0.056436171779034594 +187249,936.245000008831,-0.0564359793872561 +187250,936.2500000088311,-0.0564357870359012 +187251,936.2550000088312,-0.0564355947249616 +187252,936.2600000088313,-0.056435402454429 +187253,936.2650000088314,-0.056435210224295075 +187254,936.2700000088315,-0.05643501803455153 +187255,936.2750000088316,-0.05643482588519007 +187256,936.2800000088317,-0.05643463377620238 +187257,936.2850000088318,-0.05643444170758016 +187258,936.290000008832,-0.05643424967931513 +187259,936.2950000088321,-0.056434057691398976 +187260,936.3000000088322,-0.05643386574382342 +187261,936.3050000088323,-0.05643367383658014 +187262,936.3100000088324,-0.05643348196966087 +187263,936.3150000088325,-0.05643329014305732 +187264,936.3200000088326,-0.05643309835676119 +187265,936.3250000088327,-0.056432906610764194 +187266,936.3300000088328,-0.05643271490505805 +187267,936.3350000088329,-0.05643252323963448 +187268,936.340000008833,-0.05643233161448518 +187269,936.3450000088332,-0.056432140029601896 +187270,936.3500000088333,-0.05643194848497633 +187271,936.3550000088334,-0.05643175698060021 +187272,936.3600000088335,-0.056431565516465255 +187273,936.3650000088336,-0.05643137409256319 +187274,936.3700000088337,-0.056431182708885745 +187275,936.3750000088338,-0.05643099136542465 +187276,936.3800000088339,-0.056430800062171625 +187277,936.385000008834,-0.05643060879911842 +187278,936.3900000088341,-0.05643041757625675 +187279,936.3950000088342,-0.05643022639357835 +187280,936.4000000088344,-0.05643003525107497 +187281,936.4050000088345,-0.05642984414873833 +187282,936.4100000088346,-0.056429653086560165 +187283,936.4150000088347,-0.05642946206453223 +187284,936.4200000088348,-0.05642927108264627 +187285,936.4250000088349,-0.056429080140894004 +187286,936.430000008835,-0.05642888923926719 +187287,936.4350000088351,-0.05642869837775759 +187288,936.4400000088352,-0.05642850755635692 +187289,936.4450000088353,-0.05642831677505694 +187290,936.4500000088354,-0.05642812603384941 +187291,936.4550000088356,-0.05642793533272608 +187292,936.4600000088357,-0.056427744671678694 +187293,936.4650000088358,-0.05642755405069902 +187294,936.4700000088359,-0.0564273634697788 +187295,936.475000008836,-0.0564271729289098 +187296,936.4800000088361,-0.05642698242808379 +187297,936.4850000088362,-0.056426791967292514 +187298,936.4900000088363,-0.05642660154652773 +187299,936.4950000088364,-0.05642641116578123 +187300,936.5000000088365,-0.056426220825044754 +187301,936.5050000088366,-0.05642603052431008 +187302,936.5100000088368,-0.05642584026356897 +187303,936.5150000088369,-0.05642565004281319 +187304,936.520000008837,-0.05642545986203452 +187305,936.5250000088371,-0.056425269721224726 +187306,936.5300000088372,-0.05642507962037559 +187307,936.5350000088373,-0.056424889559478886 +187308,936.5400000088374,-0.0564246995385264 +187309,936.5450000088375,-0.0564245095575099 +187310,936.5500000088376,-0.05642431961642116 +187311,936.5550000088377,-0.056424129715251965 +187312,936.5600000088378,-0.05642393985399412 +187313,936.565000008838,-0.05642375003263938 +187314,936.5700000088381,-0.05642356025117954 +187315,936.5750000088382,-0.056423370509606385 +187316,936.5800000088383,-0.05642318080791172 +187317,936.5850000088384,-0.05642299114608733 +187318,936.5900000088385,-0.056422801524124995 +187319,936.5950000088386,-0.05642261194201652 +187320,936.6000000088387,-0.0564224223997537 +187321,936.6050000088388,-0.05642223289732833 +187322,936.6100000088389,-0.05642204343473222 +187323,936.615000008839,-0.05642185401195715 +187324,936.6200000088392,-0.056421664628994936 +187325,936.6250000088393,-0.05642147528583736 +187326,936.6300000088394,-0.05642128598247625 +187327,936.6350000088395,-0.0564210967189034 +187328,936.6400000088396,-0.05642090749511061 +187329,936.6450000088397,-0.05642071831108972 +187330,936.6500000088398,-0.056420529166832496 +187331,936.6550000088399,-0.05642034006233078 +187332,936.66000000884,-0.05642015099757637 +187333,936.6650000088401,-0.0564199619725611 +187334,936.6700000088402,-0.056419772987276774 +187335,936.6750000088404,-0.056419584041715196 +187336,936.6800000088405,-0.05641939513586822 +187337,936.6850000088406,-0.05641920626972763 +187338,936.6900000088407,-0.05641901744328526 +187339,936.6950000088408,-0.056418828656532936 +187340,936.7000000088409,-0.0564186399094625 +187341,936.705000008841,-0.056418451202065754 +187342,936.7100000088411,-0.05641826253433453 +187343,936.7150000088412,-0.05641807390626068 +187344,936.7200000088413,-0.056417885317835995 +187345,936.7250000088414,-0.05641769676905234 +187346,936.7300000088416,-0.05641750825990154 +187347,936.7350000088417,-0.05641731979037543 +187348,936.7400000088418,-0.05641713136046585 +187349,936.7450000088419,-0.05641694297016463 +187350,936.750000008842,-0.05641675461946362 +187351,936.7550000088421,-0.05641656630835465 +187352,936.7600000088422,-0.05641637803682957 +187353,936.7650000088423,-0.05641618980488022 +187354,936.7700000088424,-0.05641600161249845 +187355,936.7750000088425,-0.056415813459676105 +187356,936.7800000088426,-0.05641562534640504 +187357,936.7850000088428,-0.056415437272677095 +187358,936.7900000088429,-0.056415249238484136 +187359,936.795000008843,-0.056415061243818 +187360,936.8000000088431,-0.056414873288670564 +187361,936.8050000088432,-0.056414685373033666 +187362,936.8100000088433,-0.05641449749689916 +187363,936.8150000088434,-0.05641430966025893 +187364,936.8200000088435,-0.0564141218631048 +187365,936.8250000088436,-0.05641393410542865 +187366,936.8300000088437,-0.05641374638722236 +187367,936.8350000088438,-0.05641355870847778 +187368,936.840000008844,-0.056413371069186764 +187369,936.8450000088441,-0.05641318346934121 +187370,936.8500000088442,-0.05641299590893296 +187371,936.8550000088443,-0.0564128083879539 +187372,936.8600000088444,-0.0564126209063959 +187373,936.8650000088445,-0.05641243346425082 +187374,936.8700000088446,-0.05641224606151056 +187375,936.8750000088447,-0.05641205869816699 +187376,936.8800000088448,-0.05641187137421197 +187377,936.8850000088449,-0.056411684089637405 +187378,936.890000008845,-0.056411496844435166 +187379,936.8950000088452,-0.05641130963859712 +187380,936.9000000088453,-0.05641112247211517 +187381,936.9050000088454,-0.0564109353449812 +187382,936.9100000088455,-0.056410748257187095 +187383,936.9150000088456,-0.056410561208724744 +187384,936.9200000088457,-0.056410374199586034 +187385,936.9250000088458,-0.056410187229762855 +187386,936.9300000088459,-0.056410000299247115 +187387,936.935000008846,-0.0564098134080307 +187388,936.9400000088461,-0.05640962655610549 +187389,936.9450000088463,-0.05640943974346341 +187390,936.9500000088464,-0.05640925297009635 +187391,936.9550000088465,-0.056409066235996196 +187392,936.9600000088466,-0.05640887954115486 +187393,936.9650000088467,-0.05640869288556425 +187394,936.9700000088468,-0.056408506269216264 +187395,936.9750000088469,-0.05640831969210281 +187396,936.980000008847,-0.056408133154215806 +187397,936.9850000088471,-0.05640794665554715 +187398,936.9900000088472,-0.05640776019608876 +187399,936.9950000088473,-0.05640757377583253 +187400,937.0000000088475,-0.0564073873947704 +187401,937.0050000088476,-0.05640720105289427 +187402,937.0100000088477,-0.056407014750196056 +187403,937.0150000088478,-0.05640682848666768 +187404,937.0200000088479,-0.05640664226230106 +187405,937.025000008848,-0.05640645607708812 +187406,937.0300000088481,-0.05640626993102079 +187407,937.0350000088482,-0.05640608382409097 +187408,937.0400000088483,-0.0564058977562906 +187409,937.0450000088484,-0.05640571172761162 +187410,937.0500000088485,-0.05640552573804594 +187411,937.0550000088487,-0.05640533978758549 +187412,937.0600000088488,-0.05640515387622222 +187413,937.0650000088489,-0.05640496800394804 +187414,937.070000008849,-0.0564047821707549 +187415,937.0750000088491,-0.05640459637663473 +187416,937.0800000088492,-0.05640441062157946 +187417,937.0850000088493,-0.05640422490558103 +187418,937.0900000088494,-0.056404039228631395 +187419,937.0950000088495,-0.056403853590722475 +187420,937.1000000088496,-0.056403667991846235 +187421,937.1050000088497,-0.05640348243199462 +187422,937.1100000088499,-0.056403296911159556 +187423,937.11500000885,-0.05640311142933301 +187424,937.1200000088501,-0.05640292598650692 +187425,937.1250000088502,-0.056402740582673236 +187426,937.1300000088503,-0.056402555217823905 +187427,937.1350000088504,-0.05640236989195088 +187428,937.1400000088505,-0.056402184605046146 +187429,937.1450000088506,-0.056401999357101634 +187430,937.1500000088507,-0.0564018141481093 +187431,937.1550000088508,-0.0564016289780611 +187432,937.160000008851,-0.05640144384694899 +187433,937.165000008851,-0.056401258754764955 +187434,937.1700000088512,-0.05640107370150095 +187435,937.1750000088513,-0.05640088868714894 +187436,937.1800000088514,-0.05640070371170089 +187437,937.1850000088515,-0.056400518775148754 +187438,937.1900000088516,-0.056400333877484526 +187439,937.1950000088517,-0.05640014901870016 +187440,937.2000000088518,-0.05639996419878763 +187441,937.2050000088519,-0.05639977941773892 +187442,937.210000008852,-0.056399594675545985 +187443,937.2150000088521,-0.05639940997220083 +187444,937.2200000088523,-0.0563992253076954 +187445,937.2250000088524,-0.05639904068202171 +187446,937.2300000088525,-0.05639885609517171 +187447,937.2350000088526,-0.056398671547137395 +187448,937.2400000088527,-0.056398487037910755 +187449,937.2450000088528,-0.056398302567483766 +187450,937.2500000088529,-0.05639811813584842 +187451,937.255000008853,-0.05639793374299672 +187452,937.2600000088531,-0.056397749388920615 +187453,937.2650000088532,-0.05639756507361214 +187454,937.2700000088533,-0.056397380797063267 +187455,937.2750000088535,-0.05639719655926598 +187456,937.2800000088536,-0.05639701236021229 +187457,937.2850000088537,-0.05639682819989419 +187458,937.2900000088538,-0.05639664407830368 +187459,937.2950000088539,-0.05639645999543277 +187460,937.300000008854,-0.05639627595127344 +187461,937.3050000088541,-0.056396091945817704 +187462,937.3100000088542,-0.05639590797905757 +187463,937.3150000088543,-0.05639572405098504 +187464,937.3200000088544,-0.05639554016159211 +187465,937.3250000088545,-0.056395356310870795 +187466,937.3300000088547,-0.05639517249881311 +187467,937.3350000088548,-0.05639498872541107 +187468,937.3400000088549,-0.05639480499065668 +187469,937.345000008855,-0.056394621294541966 +187470,937.3500000088551,-0.05639443763705893 +187471,937.3550000088552,-0.05639425401819959 +187472,937.3600000088553,-0.056394070437955975 +187473,937.3650000088554,-0.0563938868963201 +187474,937.3700000088555,-0.056393703393283985 +187475,937.3750000088556,-0.056393519928839654 +187476,937.3800000088557,-0.056393336502979126 +187477,937.3850000088559,-0.05639315311569445 +187478,937.390000008856,-0.056392969766977614 +187479,937.3950000088561,-0.056392786456820686 +187480,937.4000000088562,-0.056392603185215676 +187481,937.4050000088563,-0.05639241995215461 +187482,937.4100000088564,-0.056392236757629534 +187483,937.4150000088565,-0.056392053601632484 +187484,937.4200000088566,-0.05639187048415549 +187485,937.4250000088567,-0.0563916874051906 +187486,937.4300000088568,-0.056391504364729825 +187487,937.435000008857,-0.05639132136276524 +187488,937.440000008857,-0.056391138399288866 +187489,937.4450000088572,-0.05639095547429274 +187490,937.4500000088573,-0.05639077258776892 +187491,937.4550000088574,-0.05639058973970946 +187492,937.4600000088575,-0.0563904069301064 +187493,937.4650000088576,-0.056390224158951785 +187494,937.4700000088577,-0.05639004142623766 +187495,937.4750000088578,-0.05638985873195608 +187496,937.4800000088579,-0.05638967607609912 +187497,937.485000008858,-0.056389493458658804 +187498,937.4900000088581,-0.0563893108796272 +187499,937.4950000088583,-0.05638912833899639 +187500,937.5000000088584,-0.056388945836758395 +187501,937.5050000088585,-0.05638876337290529 +187502,937.5100000088586,-0.056388580947429136 +187503,937.5150000088587,-0.056388398560322 +187504,937.5200000088588,-0.05638821621157595 +187505,937.5250000088589,-0.05638803390118305 +187506,937.530000008859,-0.05638785162913537 +187507,937.5350000088591,-0.056387669395424965 +187508,937.5400000088592,-0.05638748720004392 +187509,937.5450000088593,-0.05638730504298431 +187510,937.5500000088595,-0.0563871229242382 +187511,937.5550000088596,-0.05638694084379766 +187512,937.5600000088597,-0.05638675880165478 +187513,937.5650000088598,-0.056386576797801624 +187514,937.5700000088599,-0.056386394832230284 +187515,937.57500000886,-0.05638621290493282 +187516,937.5800000088601,-0.05638603101590134 +187517,937.5850000088602,-0.056385849165127906 +187518,937.5900000088603,-0.056385667352604626 +187519,937.5950000088604,-0.05638548557832357 +187520,937.6000000088605,-0.05638530384227683 +187521,937.6050000088607,-0.05638512214445649 +187522,937.6100000088608,-0.05638494048485465 +187523,937.6150000088609,-0.056384758863463405 +187524,937.620000008861,-0.05638457728027484 +187525,937.6250000088611,-0.05638439573528105 +187526,937.6300000088612,-0.05638421422847414 +187527,937.6350000088613,-0.056384032759846194 +187528,937.6400000088614,-0.05638385132938932 +187529,937.6450000088615,-0.05638366993709562 +187530,937.6500000088616,-0.056383488582957185 +187531,937.6550000088617,-0.05638330726696613 +187532,937.6600000088619,-0.05638312598911456 +187533,937.665000008862,-0.056382944749394585 +187534,937.6700000088621,-0.05638276354779831 +187535,937.6750000088622,-0.05638258238431783 +187536,937.6800000088623,-0.05638240125894527 +187537,937.6850000088624,-0.05638222017167273 +187538,937.6900000088625,-0.056382039122492345 +187539,937.6950000088626,-0.05638185811139621 +187540,937.7000000088627,-0.05638167713837646 +187541,937.7050000088628,-0.0563814962034252 +187542,937.710000008863,-0.05638131530653455 +187543,937.7150000088631,-0.05638113444769662 +187544,937.7200000088632,-0.05638095362690356 +187545,937.7250000088633,-0.05638077284414748 +187546,937.7300000088634,-0.0563805920994205 +187547,937.7350000088635,-0.05638041139271475 +187548,937.7400000088636,-0.05638023072402235 +187549,937.7450000088637,-0.05638005009333546 +187550,937.7500000088638,-0.05637986950064617 +187551,937.7550000088639,-0.056379688945946624 +187552,937.760000008864,-0.05637950842922898 +187553,937.7650000088641,-0.05637932795048535 +187554,937.7700000088643,-0.056379147509707864 +187555,937.7750000088644,-0.05637896710688868 +187556,937.7800000088645,-0.056378786742019925 +187557,937.7850000088646,-0.05637860641509374 +187558,937.7900000088647,-0.056378426126102284 +187559,937.7950000088648,-0.05637824587503768 +187560,937.8000000088649,-0.05637806566189208 +187561,937.805000008865,-0.05637788548665763 +187562,937.8100000088651,-0.05637770534932648 +187563,937.8150000088652,-0.05637752524989078 +187564,937.8200000088653,-0.05637734518834268 +187565,937.8250000088655,-0.05637716516467432 +187566,937.8300000088656,-0.056376985178877875 +187567,937.8350000088657,-0.05637680523094548 +187568,937.8400000088658,-0.05637662532086931 +187569,937.8450000088659,-0.0563764454486415 +187570,937.850000008866,-0.05637626561425424 +187571,937.8550000088661,-0.056376085817699664 +187572,937.8600000088662,-0.05637590605896995 +187573,937.8650000088663,-0.05637572633805725 +187574,937.8700000088664,-0.05637554665495372 +187575,937.8750000088666,-0.05637536700965155 +187576,937.8800000088667,-0.0563751874021429 +187577,937.8850000088668,-0.05637500783241994 +187578,937.8900000088669,-0.056374828300474834 +187579,937.895000008867,-0.05637464880629976 +187580,937.9000000088671,-0.05637446934988688 +187581,937.9050000088672,-0.05637428993122837 +187582,937.9100000088673,-0.05637411055031643 +187583,937.9150000088674,-0.056373931207143214 +187584,937.9200000088675,-0.056373751901700915 +187585,937.9250000088676,-0.05637357263398171 +187586,937.9300000088678,-0.056373393403977776 +187587,937.9350000088679,-0.05637321421168129 +187588,937.940000008868,-0.05637303505708445 +187589,937.9450000088681,-0.056372855940179434 +187590,937.9500000088682,-0.05637267686095844 +187591,937.9550000088683,-0.05637249781941364 +187592,937.9600000088684,-0.05637231881553724 +187593,937.9650000088685,-0.05637213984932143 +187594,937.9700000088686,-0.0563719609207584 +187595,937.9750000088687,-0.056371782029840334 +187596,937.9800000088688,-0.05637160317655943 +187597,937.985000008869,-0.05637142436090791 +187598,937.9900000088691,-0.05637124558287795 +187599,937.9950000088692,-0.056371066842461744 +187600,938.0000000088693,-0.056370888139651514 +187601,938.0050000088694,-0.05637070947443945 +187602,938.0100000088695,-0.05637053084681777 +187603,938.0150000088696,-0.05637035225677867 +187604,938.0200000088697,-0.056370173704314366 +187605,938.0250000088698,-0.05636999518941706 +187606,938.0300000088699,-0.05636981671207895 +187607,938.03500000887,-0.05636963827229225 +187608,938.0400000088702,-0.056369459870049196 +187609,938.0450000088703,-0.05636928150534199 +187610,938.0500000088704,-0.05636910317816285 +187611,938.0550000088705,-0.05636892488850397 +187612,938.0600000088706,-0.0563687466363576 +187613,938.0650000088707,-0.05636856842171595 +187614,938.0700000088708,-0.05636839024457123 +187615,938.0750000088709,-0.056368212104915674 +187616,938.080000008871,-0.05636803400274151 +187617,938.0850000088711,-0.056367855938040945 +187618,938.0900000088712,-0.056367677910806234 +187619,938.0950000088714,-0.056367499921029594 +187620,938.1000000088715,-0.05636732196870324 +187621,938.1050000088716,-0.056367144053819415 +187622,938.1100000088717,-0.05636696617637035 +187623,938.1150000088718,-0.05636678833634828 +187624,938.1200000088719,-0.05636661053374545 +187625,938.125000008872,-0.056366432768554076 +187626,938.1300000088721,-0.05636625504076641 +187627,938.1350000088722,-0.05636607735037468 +187628,938.1400000088723,-0.05636589969737115 +187629,938.1450000088724,-0.056365722081748046 +187630,938.1500000088726,-0.056365544503497615 +187631,938.1550000088727,-0.0563653669626121 +187632,938.1600000088728,-0.05636518945908375 +187633,938.1650000088729,-0.056365011992904814 +187634,938.170000008873,-0.05636483456406754 +187635,938.1750000088731,-0.05636465717256416 +187636,938.1800000088732,-0.05636447981838697 +187637,938.1850000088733,-0.056364302501528185 +187638,938.1900000088734,-0.056364125221980074 +187639,938.1950000088735,-0.0563639479797349 +187640,938.2000000088736,-0.05636377077478491 +187641,938.2050000088738,-0.05636359360712237 +187642,938.2100000088739,-0.05636341647673953 +187643,938.215000008874,-0.056363239383628666 +187644,938.2200000088741,-0.056363062327782036 +187645,938.2250000088742,-0.056362885309191896 +187646,938.2300000088743,-0.05636270832785053 +187647,938.2350000088744,-0.0563625313837502 +187648,938.2400000088745,-0.05636235447688317 +187649,938.2450000088746,-0.05636217760724171 +187650,938.2500000088747,-0.05636200077481809 +187651,938.2550000088748,-0.05636182397960458 +187652,938.260000008875,-0.056361647221593474 +187653,938.2650000088751,-0.056361470500777035 +187654,938.2700000088752,-0.056361293817147544 +187655,938.2750000088753,-0.05636111717069727 +187656,938.2800000088754,-0.0563609405614185 +187657,938.2850000088755,-0.05636076398930352 +187658,938.2900000088756,-0.056360587454344614 +187659,938.2950000088757,-0.05636041095653405 +187660,938.3000000088758,-0.05636023449586414 +187661,938.3050000088759,-0.056360058072327135 +187662,938.310000008876,-0.05635988168591535 +187663,938.3150000088762,-0.056359705336621074 +187664,938.3200000088763,-0.0563595290244366 +187665,938.3250000088764,-0.05635935274935422 +187666,938.3300000088765,-0.05635917651136622 +187667,938.3350000088766,-0.056359000310464896 +187668,938.3400000088767,-0.05635882414664255 +187669,938.3450000088768,-0.056358648019891475 +187670,938.3500000088769,-0.05635847193020398 +187671,938.355000008877,-0.056358295877572344 +187672,938.3600000088771,-0.056358119861988895 +187673,938.3650000088772,-0.05635794388344593 +187674,938.3700000088774,-0.05635776794193575 +187675,938.3750000088775,-0.05635759203745066 +187676,938.3800000088776,-0.05635741616998297 +187677,938.3850000088777,-0.056357240339524994 +187678,938.3900000088778,-0.05635706454606904 +187679,938.3950000088779,-0.05635688878960743 +187680,938.400000008878,-0.056356713070132444 +187681,938.4050000088781,-0.056356537387636435 +187682,938.4100000088782,-0.056356361742111706 +187683,938.4150000088783,-0.05635618613355057 +187684,938.4200000088784,-0.05635601056194534 +187685,938.4250000088786,-0.05635583502728835 +187686,938.4300000088787,-0.05635565952957192 +187687,938.4350000088788,-0.05635548406878839 +187688,938.4400000088789,-0.05635530864493005 +187689,938.445000008879,-0.05635513325798925 +187690,938.4500000088791,-0.05635495790795831 +187691,938.4550000088792,-0.05635478259482956 +187692,938.4600000088793,-0.05635460731859533 +187693,938.4650000088794,-0.056354432079247944 +187694,938.4700000088795,-0.056354256876779744 +187695,938.4750000088796,-0.05635408171118306 +187696,938.4800000088798,-0.05635390658245022 +187697,938.4850000088799,-0.05635373149057358 +187698,938.49000000888,-0.056353556435545474 +187699,938.4950000088801,-0.05635338141735824 +187700,938.5000000088802,-0.056353206436004215 +187701,938.5050000088803,-0.05635303149147575 +187702,938.5100000088804,-0.056352856583765175 +187703,938.5150000088805,-0.05635268171286485 +187704,938.5200000088806,-0.05635250687876712 +187705,938.5250000088807,-0.05635233208146431 +187706,938.5300000088808,-0.05635215732094881 +187707,938.535000008881,-0.05635198259721294 +187708,938.5400000088811,-0.056351807910249054 +187709,938.5450000088812,-0.056351633260049515 +187710,938.5500000088813,-0.05635145864660667 +187711,938.5550000088814,-0.056351284069912896 +187712,938.5600000088815,-0.05635110952996052 +187713,938.5650000088816,-0.05635093502674194 +187714,938.5700000088817,-0.056350760560249485 +187715,938.5750000088818,-0.05635058613047552 +187716,938.5800000088819,-0.05635041173741243 +187717,938.585000008882,-0.05635023738105257 +187718,938.5900000088822,-0.05635006306138828 +187719,938.5950000088823,-0.05634988877841197 +187720,938.6000000088824,-0.05634971453211597 +187721,938.6050000088825,-0.056349540322492675 +187722,938.6100000088826,-0.056349366149534445 +187723,938.6150000088827,-0.056349192013233664 +187724,938.6200000088828,-0.056349017913582704 +187725,938.6250000088829,-0.056348843850573926 +187726,938.630000008883,-0.05634866982419973 +187727,938.6350000088831,-0.05634849583445248 +187728,938.6400000088832,-0.056348321881324555 +187729,938.6450000088834,-0.05634814796480835 +187730,938.6500000088835,-0.056347974084896224 +187731,938.6550000088836,-0.056347800241580585 +187732,938.6600000088837,-0.05634762643485381 +187733,938.6650000088838,-0.05634745266470829 +187734,938.6700000088839,-0.05634727893113639 +187735,938.675000008884,-0.05634710523413052 +187736,938.6800000088841,-0.05634693157368308 +187737,938.6850000088842,-0.056346757949786434 +187738,938.6900000088843,-0.056346584362433005 +187739,938.6950000088844,-0.05634641081161517 +187740,938.7000000088846,-0.05634623729732533 +187741,938.7050000088847,-0.0563460638195559 +187742,938.7100000088848,-0.05634589037829925 +187743,938.7150000088849,-0.05634571697354778 +187744,938.720000008885,-0.05634554360529391 +187745,938.7250000088851,-0.05634537027353005 +187746,938.7300000088852,-0.05634519697824859 +187747,938.7350000088853,-0.056345023719441945 +187748,938.7400000088854,-0.0563448504971025 +187749,938.7450000088855,-0.05634467731122268 +187750,938.7500000088856,-0.0563445041617949 +187751,938.7550000088858,-0.05634433104881157 +187752,938.7600000088859,-0.056344157972265094 +187753,938.765000008886,-0.05634398493214791 +187754,938.7700000088861,-0.0563438119284524 +187755,938.7750000088862,-0.056343638961171 +187756,938.7800000088863,-0.056343466030296115 +187757,938.7850000088864,-0.05634329313582018 +187758,938.7900000088865,-0.05634312027773561 +187759,938.7950000088866,-0.05634294745603484 +187760,938.8000000088867,-0.05634277467071027 +187761,938.8050000088869,-0.05634260192175434 +187762,938.810000008887,-0.05634242920915948 +187763,938.8150000088871,-0.0563422565329181 +187764,938.8200000088872,-0.05634208389302265 +187765,938.8250000088873,-0.05634191128946554 +187766,938.8300000088874,-0.05634173872223923 +187767,938.8350000088875,-0.05634156619133613 +187768,938.8400000088876,-0.05634139369674867 +187769,938.8450000088877,-0.056341221238469304 +187770,938.8500000088878,-0.056341048816490456 +187771,938.8550000088879,-0.056340876430804585 +187772,938.860000008888,-0.05634070408140411 +187773,938.8650000088882,-0.05634053176828148 +187774,938.8700000088883,-0.05634035949142914 +187775,938.8750000088884,-0.05634018725083954 +187776,938.8800000088885,-0.056340015046505106 +187777,938.8850000088886,-0.0563398428784183 +187778,938.8900000088887,-0.05633967074657157 +187779,938.8950000088888,-0.056339498650957366 +187780,938.9000000088889,-0.05633932659156814 +187781,938.905000008889,-0.05633915456839634 +187782,938.9100000088891,-0.05633898258143441 +187783,938.9150000088893,-0.056338810630674814 +187784,938.9200000088894,-0.056338638716110015 +187785,938.9250000088895,-0.05633846683773247 +187786,938.9300000088896,-0.056338294995534624 +187787,938.9350000088897,-0.05633812318950896 +187788,938.9400000088898,-0.056337951419647925 +187789,938.9450000088899,-0.05633777968594399 +187790,938.95000000889,-0.05633760798838961 +187791,938.9550000088901,-0.056337436326977255 +187792,938.9600000088902,-0.0563372647016994 +187793,938.9650000088903,-0.0563370931125485 +187794,938.9700000088905,-0.05633692155951704 +187795,938.9750000088906,-0.05633675004259747 +187796,938.9800000088907,-0.05633657856178229 +187797,938.9850000088908,-0.05633640711706396 +187798,938.9900000088909,-0.05633623570843494 +187799,938.995000008891,-0.056336064335887726 +187800,939.0000000088911,-0.0563358929994148 +187801,939.0050000088912,-0.056335721699008634 +187802,939.0100000088913,-0.056335550434661714 +187803,939.0150000088914,-0.05633537920636651 +187804,939.0200000088915,-0.056335208014115526 +187805,939.0250000088917,-0.05633503685790121 +187806,939.0300000088918,-0.0563348657377161 +187807,939.0350000088919,-0.05633469465355265 +187808,939.040000008892,-0.05633452360540335 +187809,939.0450000088921,-0.05633435259326069 +187810,939.0500000088922,-0.05633418161711718 +187811,939.0550000088923,-0.05633401067696531 +187812,939.0600000088924,-0.056333839772797545 +187813,939.0650000088925,-0.056333668904606414 +187814,939.0700000088926,-0.0563334980723844 +187815,939.0750000088927,-0.056333327276123994 +187816,939.0800000088929,-0.056333156515817724 +187817,939.085000008893,-0.05633298579145806 +187818,939.0900000088931,-0.05633281510303752 +187819,939.0950000088932,-0.0563326444505486 +187820,939.1000000088933,-0.056332473833983814 +187821,939.1050000088934,-0.056332303253335665 +187822,939.1100000088935,-0.05633213270859666 +187823,939.1150000088936,-0.056331962199759306 +187824,939.1200000088937,-0.05633179172681612 +187825,939.1250000088938,-0.05633162128975961 +187826,939.130000008894,-0.056331450888582296 +187827,939.135000008894,-0.056331280523276676 +187828,939.1400000088942,-0.056331110193835285 +187829,939.1450000088943,-0.05633093990025063 +187830,939.1500000088944,-0.056330769642515224 +187831,939.1550000088945,-0.056330599420621595 +187832,939.1600000088946,-0.056330429234562274 +187833,939.1650000088947,-0.056330259084329766 +187834,939.1700000088948,-0.05633008896991662 +187835,939.1750000088949,-0.056329918891315334 +187836,939.180000008895,-0.05632974884851845 +187837,939.1850000088951,-0.056329578841518485 +187838,939.1900000088953,-0.05632940887030799 +187839,939.1950000088954,-0.05632923893487947 +187840,939.2000000088955,-0.05632906903522547 +187841,939.2050000088956,-0.056328899171338535 +187842,939.2100000088957,-0.05632872934321118 +187843,939.2150000088958,-0.05632855955083595 +187844,939.2200000088959,-0.05632838979420538 +187845,939.225000008896,-0.056328220073312014 +187846,939.2300000088961,-0.056328050388148386 +187847,939.2350000088962,-0.05632788073870704 +187848,939.2400000088963,-0.056327711124980515 +187849,939.2450000088965,-0.05632754154696136 +187850,939.2500000088966,-0.056327372004642114 +187851,939.2550000088967,-0.05632720249801534 +187852,939.2600000088968,-0.05632703302707357 +187853,939.2650000088969,-0.05632686359180937 +187854,939.270000008897,-0.056326694192215275 +187855,939.2750000088971,-0.05632652482828384 +187856,939.2800000088972,-0.05632635550000762 +187857,939.2850000088973,-0.056326186207379184 +187858,939.2900000088974,-0.056326016950391064 +187859,939.2950000088975,-0.056325847729035844 +187860,939.3000000088977,-0.05632567854330607 +187861,939.3050000088978,-0.0563255093931943 +187862,939.3100000088979,-0.05632534027869309 +187863,939.315000008898,-0.05632517119979502 +187864,939.3200000088981,-0.056325002156492644 +187865,939.3250000088982,-0.05632483314877852 +187866,939.3300000088983,-0.056324664176645244 +187867,939.3350000088984,-0.05632449524008536 +187868,939.3400000088985,-0.05632432633909143 +187869,939.3450000088986,-0.056324157473656045 +187870,939.3500000088987,-0.05632398864377177 +187871,939.3550000088989,-0.056323819849431175 +187872,939.360000008899,-0.05632365109062684 +187873,939.3650000088991,-0.056323482367351345 +187874,939.3700000088992,-0.05632331367959727 +187875,939.3750000088993,-0.05632314502735717 +187876,939.3800000088994,-0.05632297641062366 +187877,939.3850000088995,-0.05632280782938929 +187878,939.3900000088996,-0.05632263928364667 +187879,939.3950000088997,-0.05632247077338836 +187880,939.4000000088998,-0.056322302298606956 +187881,939.4050000089,-0.05632213385929505 +187882,939.4100000089,-0.05632196545544524 +187883,939.4150000089002,-0.05632179708705009 +187884,939.4200000089003,-0.05632162875410221 +187885,939.4250000089004,-0.05632146045659418 +187886,939.4300000089005,-0.056321292194518605 +187887,939.4350000089006,-0.05632112396786808 +187888,939.4400000089007,-0.056320955776635186 +187889,939.4450000089008,-0.05632078762081254 +187890,939.4500000089009,-0.056320619500392737 +187891,939.455000008901,-0.056320451415368365 +187892,939.4600000089011,-0.056320283365732055 +187893,939.4650000089013,-0.05632011535147637 +187894,939.4700000089014,-0.056319947372593944 +187895,939.4750000089015,-0.05631977942907737 +187896,939.4800000089016,-0.05631961152091925 +187897,939.4850000089017,-0.056319443648112213 +187898,939.4900000089018,-0.05631927581064885 +187899,939.4950000089019,-0.05631910800852178 +187900,939.500000008902,-0.05631894024172361 +187901,939.5050000089021,-0.05631877251024696 +187902,939.5100000089022,-0.056318604814084454 +187903,939.5150000089023,-0.056318437153228686 +187904,939.5200000089025,-0.056318269527672285 +187905,939.5250000089026,-0.056318101937407876 +187906,939.5300000089027,-0.05631793438242806 +187907,939.5350000089028,-0.056317766862725493 +187908,939.5400000089029,-0.05631759937829277 +187909,939.545000008903,-0.05631743192912252 +187910,939.5500000089031,-0.05631726451520737 +187911,939.5550000089032,-0.05631709713653994 +187912,939.5600000089033,-0.056316929793112876 +187913,939.5650000089034,-0.0563167624849188 +187914,939.5700000089035,-0.05631659521195033 +187915,939.5750000089037,-0.05631642797420011 +187916,939.5800000089038,-0.056316260771660784 +187917,939.5850000089039,-0.05631609360432498 +187918,939.590000008904,-0.05631592647218533 +187919,939.5950000089041,-0.05631575937523447 +187920,939.6000000089042,-0.056315592313465036 +187921,939.6050000089043,-0.05631542528686967 +187922,939.6100000089044,-0.05631525829544101 +187923,939.6150000089045,-0.056315091339171716 +187924,939.6200000089046,-0.05631492441805442 +187925,939.6250000089047,-0.056314757532081774 +187926,939.6300000089049,-0.05631459068124642 +187927,939.635000008905,-0.056314423865541 +187928,939.6400000089051,-0.05631425708495817 +187929,939.6450000089052,-0.05631409033949059 +187930,939.6500000089053,-0.0563139236291309 +187931,939.6550000089054,-0.05631375695387176 +187932,939.6600000089055,-0.056313590313705815 +187933,939.6650000089056,-0.056313423708625736 +187934,939.6700000089057,-0.056313257138624166 +187935,939.6750000089058,-0.05631309060369378 +187936,939.680000008906,-0.05631292410382722 +187937,939.6850000089061,-0.05631275763901715 +187938,939.6900000089062,-0.05631259120925624 +187939,939.6950000089063,-0.05631242481453715 +187940,939.7000000089064,-0.056312258454852555 +187941,939.7050000089065,-0.05631209213019511 +187942,939.7100000089066,-0.05631192584055749 +187943,939.7150000089067,-0.05631175958593237 +187944,939.7200000089068,-0.0563115933663124 +187945,939.7250000089069,-0.056311427181690264 +187946,939.730000008907,-0.05631126103205864 +187947,939.7350000089072,-0.0563110949174102 +187948,939.7400000089073,-0.05631092883773762 +187949,939.7450000089074,-0.05631076279303358 +187950,939.7500000089075,-0.056310596783290735 +187951,939.7550000089076,-0.056310430808501795 +187952,939.7600000089077,-0.056310264868659435 +187953,939.7650000089078,-0.05631009896375632 +187954,939.7700000089079,-0.056309933093785146 +187955,939.775000008908,-0.056309767258738604 +187956,939.7800000089081,-0.05630960145860938 +187957,939.7850000089082,-0.05630943569339014 +187958,939.7900000089084,-0.0563092699630736 +187959,939.7950000089085,-0.05630910426765245 +187960,939.8000000089086,-0.05630893860711936 +187961,939.8050000089087,-0.05630877298146703 +187962,939.8100000089088,-0.056308607390688166 +187963,939.8150000089089,-0.05630844183477545 +187964,939.820000008909,-0.056308276313721595 +187965,939.8250000089091,-0.05630811082751929 +187966,939.8300000089092,-0.05630794537616123 +187967,939.8350000089093,-0.05630777995964011 +187968,939.8400000089094,-0.05630761457794865 +187969,939.8450000089096,-0.05630744923107955 +187970,939.8500000089097,-0.056307283919025494 +187971,939.8550000089098,-0.056307118641779216 +187972,939.8600000089099,-0.05630695339933341 +187973,939.86500000891,-0.05630678819168078 +187974,939.8700000089101,-0.056306623018814055 +187975,939.8750000089102,-0.056306457880725934 +187976,939.8800000089103,-0.05630629277740911 +187977,939.8850000089104,-0.05630612770885634 +187978,939.8900000089105,-0.0563059626750603 +187979,939.8950000089106,-0.05630579767601373 +187980,939.9000000089108,-0.05630563271170934 +187981,939.9050000089109,-0.056305467782139844 +187982,939.910000008911,-0.05630530288729797 +187983,939.9150000089111,-0.05630513802717644 +187984,939.9200000089112,-0.05630497320176798 +187985,939.9250000089113,-0.0563048084110653 +187986,939.9300000089114,-0.05630464365506113 +187987,939.9350000089115,-0.056304478933748216 +187988,939.9400000089116,-0.056304314247119264 +187989,939.9450000089117,-0.05630414959516702 +187990,939.9500000089118,-0.0563039849778842 +187991,939.955000008912,-0.05630382039526354 +187992,939.9600000089121,-0.05630365584729779 +187993,939.9650000089122,-0.05630349133397967 +187994,939.9700000089123,-0.056303326855301906 +187995,939.9750000089124,-0.05630316241125725 +187996,939.9800000089125,-0.05630299800183843 +187997,939.9850000089126,-0.05630283362703821 +187998,939.9900000089127,-0.05630266928684931 +187999,939.9950000089128,-0.056302504981264476 +188000,940.0000000089129,-0.056302340710276455 +188001,940.005000008913,-0.056302176473877995 +188002,940.0100000089132,-0.05630201227206183 +188003,940.0150000089133,-0.05630184810482072 +188004,940.0200000089134,-0.056301683972147416 +188005,940.0250000089135,-0.05630151987403465 +188006,940.0300000089136,-0.056301355810475205 +188007,940.0350000089137,-0.05630119178146181 +188008,940.0400000089138,-0.05630102778698722 +188009,940.0450000089139,-0.0563008638270442 +188010,940.050000008914,-0.056300699901625506 +188011,940.0550000089141,-0.05630053601072389 +188012,940.0600000089142,-0.05630037215433211 +188013,940.0650000089144,-0.05630020833244294 +188014,940.0700000089145,-0.05630004454504913 +188015,940.0750000089146,-0.05629988079214346 +188016,940.0800000089147,-0.05629971707371867 +188017,940.0850000089148,-0.05629955338976754 +188018,940.0900000089149,-0.05629938974028283 +188019,940.095000008915,-0.05629922612525733 +188020,940.1000000089151,-0.056299062544683795 +188021,940.1050000089152,-0.05629889899855499 +188022,940.1100000089153,-0.05629873548686369 +188023,940.1150000089154,-0.05629857200960268 +188024,940.1200000089156,-0.05629840856676472 +188025,940.1250000089157,-0.0562982451583426 +188026,940.1300000089158,-0.05629808178432909 +188027,940.1350000089159,-0.056297918444716974 +188028,940.140000008916,-0.05629775513949902 +188029,940.1450000089161,-0.05629759186866802 +188030,940.1500000089162,-0.05629742863221677 +188031,940.1550000089163,-0.05629726543013803 +188032,940.1600000089164,-0.05629710226242459 +188033,940.1650000089165,-0.056296939129069246 +188034,940.1700000089166,-0.05629677603006479 +188035,940.1750000089168,-0.056296612965403996 +188036,940.1800000089169,-0.056296449935079665 +188037,940.185000008917,-0.05629628693908458 +188038,940.1900000089171,-0.05629612397741156 +188039,940.1950000089172,-0.05629596105005336 +188040,940.2000000089173,-0.05629579815700281 +188041,940.2050000089174,-0.05629563529825269 +188042,940.2100000089175,-0.0562954724737958 +188043,940.2150000089176,-0.056295309683624936 +188044,940.2200000089177,-0.056295146927732916 +188045,940.2250000089178,-0.05629498420611253 +188046,940.230000008918,-0.05629482151875658 +188047,940.2350000089181,-0.05629465886565788 +188048,940.2400000089182,-0.05629449624680923 +188049,940.2450000089183,-0.056294333662203426 +188050,940.2500000089184,-0.0562941711118333 +188051,940.2550000089185,-0.056294008595691634 +188052,940.2600000089186,-0.056293846113771265 +188053,940.2650000089187,-0.056293683666065006 +188054,940.2700000089188,-0.056293521252565655 +188055,940.2750000089189,-0.05629335887326603 +188056,940.280000008919,-0.05629319652815896 +188057,940.2850000089192,-0.05629303421723725 +188058,940.2900000089193,-0.056292871940493726 +188059,940.2950000089194,-0.056292709697921196 +188060,940.3000000089195,-0.056292547489512505 +188061,940.3050000089196,-0.05629238531526045 +188062,940.3100000089197,-0.05629222317515788 +188063,940.3150000089198,-0.05629206106919759 +188064,940.3200000089199,-0.05629189899737243 +188065,940.32500000892,-0.05629173695967522 +188066,940.3300000089201,-0.0562915749560988 +188067,940.3350000089202,-0.056291412986635994 +188068,940.3400000089204,-0.056291251051279634 +188069,940.3450000089205,-0.056291089150022545 +188070,940.3500000089206,-0.05629092728285757 +188071,940.3550000089207,-0.05629076544977754 +188072,940.3600000089208,-0.056290603650775296 +188073,940.3650000089209,-0.05629044188584368 +188074,940.370000008921,-0.056290280154975524 +188075,940.3750000089211,-0.056290118458163674 +188076,940.3800000089212,-0.05628995679540097 +188077,940.3850000089213,-0.05628979516668025 +188078,940.3900000089214,-0.056289633571994374 +188079,940.3950000089216,-0.056289472011336175 +188080,940.4000000089217,-0.056289310484698506 +188081,940.4050000089218,-0.05628914899207422 +188082,940.4100000089219,-0.05628898753345615 +188083,940.415000008922,-0.05628882610883717 +188084,940.4200000089221,-0.05628866471821012 +188085,940.4250000089222,-0.05628850336156785 +188086,940.4300000089223,-0.056288342038903226 +188087,940.4350000089224,-0.056288180750209096 +188088,940.4400000089225,-0.05628801949547831 +188089,940.4450000089226,-0.056287858274703735 +188090,940.4500000089228,-0.056287697087878244 +188091,940.4550000089229,-0.05628753593499468 +188092,940.460000008923,-0.05628737481604591 +188093,940.4650000089231,-0.056287213731024806 +188094,940.4700000089232,-0.05628705267992423 +188095,940.4750000089233,-0.05628689166273705 +188096,940.4800000089234,-0.05628673067945613 +188097,940.4850000089235,-0.056286569730074336 +188098,940.4900000089236,-0.056286408814584535 +188099,940.4950000089237,-0.05628624793297961 +188100,940.5000000089238,-0.056286087085252436 +188101,940.505000008924,-0.056285926271395864 +188102,940.5100000089241,-0.0562857654914028 +188103,940.5150000089242,-0.0562856047452661 +188104,940.5200000089243,-0.05628544403297866 +188105,940.5250000089244,-0.05628528335453335 +188106,940.5300000089245,-0.056285122709923044 +188107,940.5350000089246,-0.05628496209914063 +188108,940.5400000089247,-0.05628480152217898 +188109,940.5450000089248,-0.056284640979031 +188110,940.5500000089249,-0.056284480469689556 +188111,940.555000008925,-0.056284319994147555 +188112,940.5600000089252,-0.05628415955239787 +188113,940.5650000089253,-0.05628399914443338 +188114,940.5700000089254,-0.056283838770247 +188115,940.5750000089255,-0.05628367842983161 +188116,940.5800000089256,-0.05628351812318012 +188117,940.5850000089257,-0.0562833578502854 +188118,940.5900000089258,-0.056283197611140354 +188119,940.5950000089259,-0.056283037405737875 +188120,940.600000008926,-0.05628287723407087 +188121,940.6050000089261,-0.05628271709613223 +188122,940.6100000089262,-0.056282556991914874 +188123,940.6150000089264,-0.05628239692141169 +188124,940.6200000089265,-0.05628223688461559 +188125,940.6250000089266,-0.05628207688151946 +188126,940.6300000089267,-0.05628191691211623 +188127,940.6350000089268,-0.0562817569763988 +188128,940.6400000089269,-0.05628159707436006 +188129,940.645000008927,-0.05628143720599295 +188130,940.6500000089271,-0.05628127737129036 +188131,940.6550000089272,-0.056281117570245204 +188132,940.6600000089273,-0.0562809578028504 +188133,940.6650000089274,-0.056280798069098865 +188134,940.6700000089276,-0.05628063836898352 +188135,940.6750000089277,-0.056280478702497264 +188136,940.6800000089278,-0.05628031906963304 +188137,940.6850000089279,-0.05628015947038375 +188138,940.690000008928,-0.05627999990474233 +188139,940.6950000089281,-0.05627984037270169 +188140,940.7000000089282,-0.05627968087425475 +188141,940.7050000089283,-0.05627952140939445 +188142,940.7100000089284,-0.0562793619781137 +188143,940.7150000089285,-0.05627920258040544 +188144,940.7200000089287,-0.05627904321626259 +188145,940.7250000089288,-0.0562788838856781 +188146,940.7300000089289,-0.05627872458864488 +188147,940.735000008929,-0.05627856532515587 +188148,940.7400000089291,-0.056278406095203994 +188149,940.7450000089292,-0.0562782468987822 +188150,940.7500000089293,-0.056278087735883435 +188151,940.7550000089294,-0.05627792860650061 +188152,940.7600000089295,-0.056277769510626685 +188153,940.7650000089296,-0.05627761044825459 +188154,940.7700000089297,-0.056277451419377275 +188155,940.7750000089299,-0.056277292423987664 +188156,940.78000000893,-0.05627713346207871 +188157,940.7850000089301,-0.05627697453364337 +188158,940.7900000089302,-0.05627681563867458 +188159,940.7950000089303,-0.0562766567771653 +188160,940.8000000089304,-0.05627649794910846 +188161,940.8050000089305,-0.05627633915449703 +188162,940.8100000089306,-0.056276180393323945 +188163,940.8150000089307,-0.05627602166558217 +188164,940.8200000089308,-0.05627586297126465 +188165,940.8250000089309,-0.056275704310364334 +188166,940.830000008931,-0.0562755456828742 +188167,940.8350000089312,-0.05627538708878718 +188168,940.8400000089313,-0.056275228528096265 +188169,940.8450000089314,-0.0562750700007944 +188170,940.8500000089315,-0.056274911506874546 +188171,940.8550000089316,-0.056274753046329666 +188172,940.8600000089317,-0.056274594619152726 +188173,940.8650000089318,-0.05627443622533667 +188174,940.8700000089319,-0.05627427786487451 +188175,940.875000008932,-0.056274119537759175 +188176,940.8800000089321,-0.05627396124398365 +188177,940.8850000089323,-0.056273802983540906 +188178,940.8900000089324,-0.05627364475642391 +188179,940.8950000089325,-0.056273486562625624 +188180,940.9000000089326,-0.05627332840213904 +188181,940.9050000089327,-0.05627317027495714 +188182,940.9100000089328,-0.05627301218107289 +188183,940.9150000089329,-0.056272854120479256 +188184,940.920000008933,-0.05627269609316923 +188185,940.9250000089331,-0.0562725380991358 +188186,940.9300000089332,-0.05627238013837193 +188187,940.9350000089333,-0.05627222221087061 +188188,940.9400000089335,-0.056272064316624834 +188189,940.9450000089336,-0.05627190645562759 +188190,940.9500000089337,-0.05627174862787185 +188191,940.9550000089338,-0.0562715908333506 +188192,940.9600000089339,-0.056271433072056835 +188193,940.965000008934,-0.056271275343983546 +188194,940.9700000089341,-0.056271117649123736 +188195,940.9750000089342,-0.05627095998747039 +188196,940.9800000089343,-0.0562708023590165 +188197,940.9850000089344,-0.05627064476375506 +188198,940.9900000089345,-0.05627048720167906 +188199,940.9950000089347,-0.05627032967278152 +188200,941.0000000089348,-0.05627017217705541 +188201,941.0050000089349,-0.05627001471449377 +188202,941.010000008935,-0.05626985728508957 +188203,941.0150000089351,-0.05626969988883583 +188204,941.0200000089352,-0.056269542525725545 +188205,941.0250000089353,-0.05626938519575171 +188206,941.0300000089354,-0.05626922789890736 +188207,941.0350000089355,-0.056269070635185485 +188208,941.0400000089356,-0.056268913404579096 +188209,941.0450000089357,-0.056268756207081196 +188210,941.0500000089359,-0.056268599042684816 +188211,941.055000008936,-0.05626844191138295 +188212,941.0600000089361,-0.05626828481316864 +188213,941.0650000089362,-0.05626812774803487 +188214,941.0700000089363,-0.05626797071597467 +188215,941.0750000089364,-0.056267813716981065 +188216,941.0800000089365,-0.05626765675104707 +188217,941.0850000089366,-0.05626749981816571 +188218,941.0900000089367,-0.056267342918329986 +188219,941.0950000089368,-0.05626718605153295 +188220,941.100000008937,-0.0562670292177676 +188221,941.105000008937,-0.05626687241702698 +188222,941.1100000089372,-0.056266715649304105 +188223,941.1150000089373,-0.056266558914592014 +188224,941.1200000089374,-0.05626640221288372 +188225,941.1250000089375,-0.05626624554417226 +188226,941.1300000089376,-0.05626608890845068 +188227,941.1350000089377,-0.056265932305712016 +188228,941.1400000089378,-0.05626577573594928 +188229,941.1450000089379,-0.05626561919915551 +188230,941.150000008938,-0.056265462695323766 +188231,941.1550000089381,-0.05626530622444706 +188232,941.1600000089383,-0.05626514978651845 +188233,941.1650000089384,-0.05626499338153096 +188234,941.1700000089385,-0.056264837009477646 +188235,941.1750000089386,-0.056264680670351556 +188236,941.1800000089387,-0.05626452436414572 +188237,941.1850000089388,-0.05626436809085317 +188238,941.1900000089389,-0.056264211850466976 +188239,941.195000008939,-0.0562640556429802 +188240,941.2000000089391,-0.05626389946838586 +188241,941.2050000089392,-0.05626374332667702 +188242,941.2100000089393,-0.056263587217846724 +188243,941.2150000089395,-0.05626343114188804 +188244,941.2200000089396,-0.056263275098793995 +188245,941.2250000089397,-0.056263119088557675 +188246,941.2300000089398,-0.056262963111172126 +188247,941.2350000089399,-0.05626280716663041 +188248,941.24000000894,-0.05626265125492557 +188249,941.2450000089401,-0.05626249537605068 +188250,941.2500000089402,-0.056262339529998796 +188251,941.2550000089403,-0.05626218371676299 +188252,941.2600000089404,-0.05626202793633633 +188253,941.2650000089405,-0.05626187218871186 +188254,941.2700000089407,-0.05626171647388267 +188255,941.2750000089408,-0.056261560791841816 +188256,941.2800000089409,-0.05626140514258236 +188257,941.285000008941,-0.05626124952609739 +188258,941.2900000089411,-0.05626109394237996 +188259,941.2950000089412,-0.05626093839142314 +188260,941.3000000089413,-0.056260782873220026 +188261,941.3050000089414,-0.056260627387763676 +188262,941.3100000089415,-0.05626047193504718 +188263,941.3150000089416,-0.05626031651506361 +188264,941.3200000089417,-0.05626016112780603 +188265,941.3250000089419,-0.056260005773267535 +188266,941.330000008942,-0.05625985045144121 +188267,941.3350000089421,-0.05625969516232014 +188268,941.3400000089422,-0.056259539905897396 +188269,941.3450000089423,-0.056259384682166076 +188270,941.3500000089424,-0.05625922949111924 +188271,941.3550000089425,-0.05625907433275002 +188272,941.3600000089426,-0.056258919207051464 +188273,941.3650000089427,-0.05625876411401669 +188274,941.3700000089428,-0.05625860905363877 +188275,941.375000008943,-0.05625845402591081 +188276,941.3800000089431,-0.056258299030825895 +188277,941.3850000089432,-0.05625814406837712 +188278,941.3900000089433,-0.05625798913855759 +188279,941.3950000089434,-0.056257834241360404 +188280,941.4000000089435,-0.05625767937677864 +188281,941.4050000089436,-0.05625752454480542 +188282,941.4100000089437,-0.056257369745433834 +188283,941.4150000089438,-0.05625721497865699 +188284,941.4200000089439,-0.05625706024446799 +188285,941.425000008944,-0.05625690554285994 +188286,941.4300000089441,-0.05625675087382595 +188287,941.4350000089443,-0.05625659623735912 +188288,941.4400000089444,-0.05625644163345255 +188289,941.4450000089445,-0.056256287062099376 +188290,941.4500000089446,-0.056256132523292694 +188291,941.4550000089447,-0.056255978017025615 +188292,941.4600000089448,-0.05625582354329124 +188293,941.4650000089449,-0.056255669102082705 +188294,941.470000008945,-0.05625551469339313 +188295,941.4750000089451,-0.056255360317215605 +188296,941.4800000089452,-0.05625520597354327 +188297,941.4850000089453,-0.05625505166236924 +188298,941.4900000089455,-0.05625489738368664 +188299,941.4950000089456,-0.05625474313748859 +188300,941.5000000089457,-0.05625458892376821 +188301,941.5050000089458,-0.05625443474251863 +188302,941.5100000089459,-0.056254280593732955 +188303,941.515000008946,-0.05625412647740434 +188304,941.5200000089461,-0.0562539723935259 +188305,941.5250000089462,-0.05625381834209077 +188306,941.5300000089463,-0.05625366432309207 +188307,941.5350000089464,-0.056253510336522934 +188308,941.5400000089465,-0.05625335638237651 +188309,941.5450000089467,-0.056253202460645926 +188310,941.5500000089468,-0.056253048571324314 +188311,941.5550000089469,-0.056252894714404804 +188312,941.560000008947,-0.05625274088988054 +188313,941.5650000089471,-0.05625258709774468 +188314,941.5700000089472,-0.05625243333799034 +188315,941.5750000089473,-0.056252279610610675 +188316,941.5800000089474,-0.05625212591559881 +188317,941.5850000089475,-0.05625197225294791 +188318,941.5900000089476,-0.05625181862265111 +188319,941.5950000089477,-0.056251665024701566 +188320,941.6000000089479,-0.056251511459092414 +188321,941.605000008948,-0.05625135792581681 +188322,941.6100000089481,-0.0562512044248679 +188323,941.6150000089482,-0.05625105095623883 +188324,941.6200000089483,-0.05625089751992277 +188325,941.6250000089484,-0.05625074411591287 +188326,941.6300000089485,-0.05625059074420227 +188327,941.6350000089486,-0.05625043740478414 +188328,941.6400000089487,-0.05625028409765163 +188329,941.6450000089488,-0.056250130822797915 +188330,941.650000008949,-0.05624997758021614 +188331,941.6550000089491,-0.05624982436989947 +188332,941.6600000089492,-0.05624967119184106 +188333,941.6650000089493,-0.056249518046034085 +188334,941.6700000089494,-0.05624936493247171 +188335,941.6750000089495,-0.0562492118511471 +188336,941.6800000089496,-0.056249058802053414 +188337,941.6850000089497,-0.05624890578518382 +188338,941.6900000089498,-0.05624875280053151 +188339,941.6950000089499,-0.05624859984808963 +188340,941.70000000895,-0.056248446927851366 +188341,941.7050000089502,-0.05624829403980988 +188342,941.7100000089503,-0.05624814118395837 +188343,941.7150000089504,-0.056247988360289984 +188344,941.7200000089505,-0.056247835568797915 +188345,941.7250000089506,-0.056247682809475334 +188346,941.7300000089507,-0.056247530082315436 +188347,941.7350000089508,-0.05624737738731139 +188348,941.7400000089509,-0.056247224724456375 +188349,941.745000008951,-0.05624707209374357 +188350,941.7500000089511,-0.05624691949516617 +188351,941.7550000089512,-0.056246766928717364 +188352,941.7600000089514,-0.05624661439439033 +188353,941.7650000089515,-0.05624646189217826 +188354,941.7700000089516,-0.05624630942207435 +188355,941.7750000089517,-0.056246156984071774 +188356,941.7800000089518,-0.056246004578163734 +188357,941.7850000089519,-0.05624585220434342 +188358,941.790000008952,-0.05624569986260404 +188359,941.7950000089521,-0.05624554755293878 +188360,941.8000000089522,-0.05624539527534083 +188361,941.8050000089523,-0.05624524302980339 +188362,941.8100000089524,-0.05624509081631966 +188363,941.8150000089526,-0.05624493863488284 +188364,941.8200000089527,-0.05624478648548615 +188365,941.8250000089528,-0.05624463436812276 +188366,941.8300000089529,-0.0562444822827859 +188367,941.835000008953,-0.05624433022946876 +188368,941.8400000089531,-0.05624417820816454 +188369,941.8450000089532,-0.05624402621886647 +188370,941.8500000089533,-0.05624387426156774 +188371,941.8550000089534,-0.05624372233626157 +188372,941.8600000089535,-0.056243570442941176 +188373,941.8650000089536,-0.05624341858159977 +188374,941.8700000089538,-0.056243266752230556 +188375,941.8750000089539,-0.05624311495482675 +188376,941.880000008954,-0.05624296318938157 +188377,941.8850000089541,-0.056242811455888234 +188378,941.8900000089542,-0.05624265975433995 +188379,941.8950000089543,-0.05624250808472996 +188380,941.9000000089544,-0.056242356447051466 +188381,941.9050000089545,-0.056242204841297695 +188382,941.9100000089546,-0.05624205326746187 +188383,941.9150000089547,-0.05624190172553722 +188384,941.9200000089548,-0.05624175021551697 +188385,941.925000008955,-0.05624159873739436 +188386,941.9300000089551,-0.05624144729116259 +188387,941.9350000089552,-0.0562412958768149 +188388,941.9400000089553,-0.056241144494344524 +188389,941.9450000089554,-0.05624099314374471 +188390,941.9500000089555,-0.05624084182500866 +188391,941.9550000089556,-0.05624069053812961 +188392,941.9600000089557,-0.05624053928310082 +188393,941.9650000089558,-0.056240388059915505 +188394,941.9700000089559,-0.056240236868566926 +188395,941.975000008956,-0.0562400857090483 +188396,941.9800000089562,-0.05623993458135289 +188397,941.9850000089563,-0.056239783485473906 +188398,941.9900000089564,-0.05623963242140461 +188399,941.9950000089565,-0.05623948138913825 +188400,942.0000000089566,-0.05623933038866805 +188401,942.0050000089567,-0.05623917941998728 +188402,942.0100000089568,-0.05623902848308917 +188403,942.0150000089569,-0.056238877577966986 +188404,942.020000008957,-0.05623872670461397 +188405,942.0250000089571,-0.05623857586302336 +188406,942.0300000089572,-0.05623842505318842 +188407,942.0350000089574,-0.05623827427510241 +188408,942.0400000089575,-0.05623812352875858 +188409,942.0450000089576,-0.05623797281415018 +188410,942.0500000089577,-0.05623782213127048 +188411,942.0550000089578,-0.05623767148011271 +188412,942.0600000089579,-0.05623752086067016 +188413,942.065000008958,-0.05623737027293608 +188414,942.0700000089581,-0.05623721971690372 +188415,942.0750000089582,-0.056237069192566366 +188416,942.0800000089583,-0.05623691869991727 +188417,942.0850000089584,-0.05623676823894969 +188418,942.0900000089586,-0.05623661780965691 +188419,942.0950000089587,-0.056236467412032184 +188420,942.1000000089588,-0.056236317046068775 +188421,942.1050000089589,-0.05623616671175998 +188422,942.110000008959,-0.05623601640909904 +188423,942.1150000089591,-0.056235866138079245 +188424,942.1200000089592,-0.05623571589869387 +188425,942.1250000089593,-0.056235565690936185 +188426,942.1300000089594,-0.05623541551479946 +188427,942.1350000089595,-0.056235265370276975 +188428,942.1400000089596,-0.05623511525736203 +188429,942.1450000089598,-0.05623496517604788 +188430,942.1500000089599,-0.05623481512632782 +188431,942.15500000896,-0.056234665108195116 +188432,942.1600000089601,-0.05623451512164307 +188433,942.1650000089602,-0.05623436516666496 +188434,942.1700000089603,-0.05623421524325406 +188435,942.1750000089604,-0.05623406535140367 +188436,942.1800000089605,-0.05623391549110707 +188437,942.1850000089606,-0.056233765662357556 +188438,942.1900000089607,-0.056233615865148426 +188439,942.1950000089608,-0.056233466099472953 +188440,942.200000008961,-0.05623331636532444 +188441,942.2050000089611,-0.05623316666269619 +188442,942.2100000089612,-0.056233016991581494 +188443,942.2150000089613,-0.05623286735197364 +188444,942.2200000089614,-0.05623271774386592 +188445,942.2250000089615,-0.05623256816725166 +188446,942.2300000089616,-0.05623241862212413 +188447,942.2350000089617,-0.056232269108476646 +188448,942.2400000089618,-0.05623211962630251 +188449,942.2450000089619,-0.056231970175595024 +188450,942.250000008962,-0.05623182075634751 +188451,942.2550000089622,-0.05623167136855324 +188452,942.2600000089623,-0.05623152201220555 +188453,942.2650000089624,-0.05623137268729772 +188454,942.2700000089625,-0.05623122339382309 +188455,942.2750000089626,-0.056231074131774965 +188456,942.2800000089627,-0.05623092490114664 +188457,942.2850000089628,-0.05623077570193143 +188458,942.2900000089629,-0.056230626534122675 +188459,942.295000008963,-0.05623047739771367 +188460,942.3000000089631,-0.05623032829269774 +188461,942.3050000089632,-0.05623017921906819 +188462,942.3100000089634,-0.05623003017681836 +188463,942.3150000089635,-0.05622988116594155 +188464,942.3200000089636,-0.0562297321864311 +188465,942.3250000089637,-0.05622958323828031 +188466,942.3300000089638,-0.05622943432148253 +188467,942.3350000089639,-0.05622928543603106 +188468,942.340000008964,-0.05622913658191925 +188469,942.3450000089641,-0.05622898775914041 +188470,942.3500000089642,-0.05622883896768788 +188471,942.3550000089643,-0.05622869020755499 +188472,942.3600000089644,-0.056228541478735065 +188473,942.3650000089646,-0.05622839278122143 +188474,942.3700000089647,-0.05622824411500743 +188475,942.3750000089648,-0.05622809548008639 +188476,942.3800000089649,-0.05622794687645167 +188477,942.385000008965,-0.056227798304096584 +188478,942.3900000089651,-0.05622764976301447 +188479,942.3950000089652,-0.05622750125319868 +188480,942.4000000089653,-0.05622735277464254 +188481,942.4050000089654,-0.05622720432733941 +188482,942.4100000089655,-0.056227055911282624 +188483,942.4150000089656,-0.05622690752646551 +188484,942.4200000089658,-0.056226759172881446 +188485,942.4250000089659,-0.05622661085052376 +188486,942.430000008966,-0.05622646255938579 +188487,942.4350000089661,-0.056226314299460914 +188488,942.4400000089662,-0.05622616607074244 +188489,942.4450000089663,-0.05622601787322375 +188490,942.4500000089664,-0.0562258697068982 +188491,942.4550000089665,-0.056225721571759125 +188492,942.4600000089666,-0.05622557346779989 +188493,942.4650000089667,-0.056225425395013844 +188494,942.4700000089668,-0.056225277353394346 +188495,942.475000008967,-0.05622512934293476 +188496,942.4800000089671,-0.05622498136362846 +188497,942.4850000089672,-0.05622483341546878 +188498,942.4900000089673,-0.05622468549844909 +188499,942.4950000089674,-0.056224537612562756 +188500,942.5000000089675,-0.05622438975780314 +188501,942.5050000089676,-0.056224241934163616 +188502,942.5100000089677,-0.05622409414163754 +188503,942.5150000089678,-0.056223946380218284 +188504,942.5200000089679,-0.05622379864989921 +188505,942.525000008968,-0.0562236509506737 +188506,942.5300000089682,-0.05622350328253512 +188507,942.5350000089683,-0.05622335564547684 +188508,942.5400000089684,-0.05622320803949223 +188509,942.5450000089685,-0.05622306046457469 +188510,942.5500000089686,-0.056222912920717565 +188511,942.5550000089687,-0.05622276540791424 +188512,942.5600000089688,-0.05622261792615811 +188513,942.5650000089689,-0.056222470475442536 +188514,942.570000008969,-0.056222323055760914 +188515,942.5750000089691,-0.05622217566710661 +188516,942.5800000089693,-0.05622202830947302 +188517,942.5850000089694,-0.05622188098285352 +188518,942.5900000089695,-0.056221733687241496 +188519,942.5950000089696,-0.05622158642263034 +188520,942.6000000089697,-0.05622143918901344 +188521,942.6050000089698,-0.056221291986384175 +188522,942.6100000089699,-0.05622114481473594 +188523,942.61500000897,-0.056220997674062134 +188524,942.6200000089701,-0.05622085056435614 +188525,942.6250000089702,-0.05622070348561137 +188526,942.6300000089703,-0.05622055643782119 +188527,942.6350000089705,-0.056220409420979015 +188528,942.6400000089706,-0.056220262435078244 +188529,942.6450000089707,-0.05622011548011227 +188530,942.6500000089708,-0.056219968556074494 +188531,942.6550000089709,-0.05621982166295831 +188532,942.660000008971,-0.05621967480075713 +188533,942.6650000089711,-0.056219527969464354 +188534,942.6700000089712,-0.05621938116907337 +188535,942.6750000089713,-0.056219234399577614 +188536,942.6800000089714,-0.056219087660970474 +188537,942.6850000089715,-0.05621894095324537 +188538,942.6900000089717,-0.05621879427639569 +188539,942.6950000089718,-0.05621864763041485 +188540,942.7000000089719,-0.05621850101529628 +188541,942.705000008972,-0.056218354431033374 +188542,942.7100000089721,-0.056218207877619567 +188543,942.7150000089722,-0.05621806135504825 +188544,942.7200000089723,-0.056217914863312846 +188545,942.7250000089724,-0.056217768402406776 +188546,942.7300000089725,-0.05621762197232346 +188547,942.7350000089726,-0.05621747557305631 +188548,942.7400000089727,-0.056217329204598744 +188549,942.7450000089729,-0.05621718286694419 +188550,942.750000008973,-0.05621703656008607 +188551,942.7550000089731,-0.05621689028401782 +188552,942.7600000089732,-0.056216744038732856 +188553,942.7650000089733,-0.056216597824224605 +188554,942.7700000089734,-0.0562164516404865 +188555,942.7750000089735,-0.05621630548751195 +188556,942.7800000089736,-0.0562161593652944 +188557,942.7850000089737,-0.05621601327382729 +188558,942.7900000089738,-0.05621586721310404 +188559,942.795000008974,-0.05621572118311808 +188560,942.800000008974,-0.05621557518386285 +188561,942.8050000089742,-0.0562154292153318 +188562,942.8100000089743,-0.05621528327751834 +188563,942.8150000089744,-0.05621513737041592 +188564,942.8200000089745,-0.05621499149401798 +188565,942.8250000089746,-0.056214845648317975 +188566,942.8300000089747,-0.056214699833309324 +188567,942.8350000089748,-0.05621455404898549 +188568,942.8400000089749,-0.056214408295339906 +188569,942.845000008975,-0.05621426257236601 +188570,942.8500000089751,-0.056214116880057265 +188571,942.8550000089753,-0.05621397121840711 +188572,942.8600000089754,-0.05621382558740899 +188573,942.8650000089755,-0.05621367998705637 +188574,942.8700000089756,-0.05621353441734267 +188575,942.8750000089757,-0.05621338887826137 +188576,942.8800000089758,-0.056213243369805925 +188577,942.8850000089759,-0.056213097891969765 +188578,942.890000008976,-0.05621295244474638 +188579,942.8950000089761,-0.05621280702812919 +188580,942.9000000089762,-0.05621266164211169 +188581,942.9050000089763,-0.0562125162866873 +188582,942.9100000089765,-0.056212370961849514 +188583,942.9150000089766,-0.056212225667591785 +188584,942.9200000089767,-0.056212080403907565 +188585,942.9250000089768,-0.05621193517079033 +188586,942.9300000089769,-0.05621178996823353 +188587,942.935000008977,-0.05621164479623064 +188588,942.9400000089771,-0.05621149965477514 +188589,942.9450000089772,-0.05621135454386048 +188590,942.9500000089773,-0.056211209463480134 +188591,942.9550000089774,-0.05621106441362757 +188592,942.9600000089775,-0.05621091939429627 +188593,942.9650000089777,-0.056210774405479697 +188594,942.9700000089778,-0.05621062944717133 +188595,942.9750000089779,-0.05621048451936464 +188596,942.980000008978,-0.05621033962205313 +188597,942.9850000089781,-0.05621019475523025 +188598,942.9900000089782,-0.05621004991888948 +188599,942.9950000089783,-0.05620990511302431 +188600,943.0000000089784,-0.056209760337628215 +188601,943.0050000089785,-0.056209615592694676 +188602,943.0100000089786,-0.05620947087821718 +188603,943.0150000089787,-0.0562093261941892 +188604,943.0200000089789,-0.05620918154060425 +188605,943.025000008979,-0.05620903691745579 +188606,943.0300000089791,-0.056208892324737324 +188607,943.0350000089792,-0.05620874776244233 +188608,943.0400000089793,-0.05620860323056431 +188609,943.0450000089794,-0.05620845872909675 +188610,943.0500000089795,-0.056208314258033146 +188611,943.0550000089796,-0.05620816981736698 +188612,943.0600000089797,-0.05620802540709177 +188613,943.0650000089798,-0.056207881027201 +188614,943.07000000898,-0.056207736677688164 +188615,943.07500000898,-0.05620759235854676 +188616,943.0800000089802,-0.056207448069770294 +188617,943.0850000089803,-0.05620730381135226 +188618,943.0900000089804,-0.05620715958328617 +188619,943.0950000089805,-0.056207015385565516 +188620,943.1000000089806,-0.05620687121818381 +188621,943.1050000089807,-0.05620672708113456 +188622,943.1100000089808,-0.056206582974411265 +188623,943.1150000089809,-0.05620643889800744 +188624,943.120000008981,-0.05620629485191658 +188625,943.1250000089811,-0.05620615083613221 +188626,943.1300000089813,-0.05620600685064784 +188627,943.1350000089814,-0.056205862895456975 +188628,943.1400000089815,-0.05620571897055314 +188629,943.1450000089816,-0.05620557507592983 +188630,943.1500000089817,-0.05620543121158057 +188631,943.1550000089818,-0.05620528737749889 +188632,943.1600000089819,-0.0562051435736783 +188633,943.165000008982,-0.05620499980011232 +188634,943.1700000089821,-0.05620485605679447 +188635,943.1750000089822,-0.05620471234371827 +188636,943.1800000089823,-0.056204568660877245 +188637,943.1850000089825,-0.056204425008264905 +188638,943.1900000089826,-0.05620428138587479 +188639,943.1950000089827,-0.05620413779370044 +188640,943.2000000089828,-0.05620399423173535 +188641,943.2050000089829,-0.05620385069997307 +188642,943.210000008983,-0.05620370719840713 +188643,943.2150000089831,-0.05620356372703105 +188644,943.2200000089832,-0.05620342028583838 +188645,943.2250000089833,-0.05620327687482262 +188646,943.2300000089834,-0.056203133493977334 +188647,943.2350000089835,-0.05620299014329605 +188648,943.2400000089837,-0.0562028468227723 +188649,943.2450000089838,-0.05620270353239964 +188650,943.2500000089839,-0.05620256027217158 +188651,943.255000008984,-0.056202417042081676 +188652,943.2600000089841,-0.05620227384212348 +188653,943.2650000089842,-0.05620213067229051 +188654,943.2700000089843,-0.056201987532576325 +188655,943.2750000089844,-0.05620184442297446 +188656,943.2800000089845,-0.056201701343478475 +188657,943.2850000089846,-0.05620155829408191 +188658,943.2900000089847,-0.056201415274778316 +188659,943.2950000089849,-0.05620127228556123 +188660,943.300000008985,-0.05620112932642421 +188661,943.3050000089851,-0.05620098639736081 +188662,943.3100000089852,-0.05620084349836458 +188663,943.3150000089853,-0.05620070062942908 +188664,943.3200000089854,-0.05620055779054786 +188665,943.3250000089855,-0.05620041498171448 +188666,943.3300000089856,-0.05620027220292248 +188667,943.3350000089857,-0.056200129454165436 +188668,943.3400000089858,-0.05619998673543691 +188669,943.345000008986,-0.056199844046730466 +188670,943.3500000089861,-0.05619970138803965 +188671,943.3550000089862,-0.05619955875935801 +188672,943.3600000089863,-0.05619941616067915 +188673,943.3650000089864,-0.05619927359199662 +188674,943.3700000089865,-0.05619913105330397 +188675,943.3750000089866,-0.0561989885445948 +188676,943.3800000089867,-0.05619884606586265 +188677,943.3850000089868,-0.0561987036171011 +188678,943.3900000089869,-0.05619856119830372 +188679,943.395000008987,-0.056198418809464086 +188680,943.4000000089871,-0.05619827645057576 +188681,943.4050000089873,-0.05619813412163234 +188682,943.4100000089874,-0.05619799182262737 +188683,943.4150000089875,-0.056197849553554446 +188684,943.4200000089876,-0.05619770731440714 +188685,943.4250000089877,-0.05619756510517904 +188686,943.4300000089878,-0.05619742292586372 +188687,943.4350000089879,-0.056197280776454764 +188688,943.440000008988,-0.05619713865694574 +188689,943.4450000089881,-0.056196996567330244 +188690,943.4500000089882,-0.05619685450760187 +188691,943.4550000089883,-0.05619671247775419 +188692,943.4600000089885,-0.05619657047778078 +188693,943.4650000089886,-0.05619642850767525 +188694,943.4700000089887,-0.05619628656743119 +188695,943.4750000089888,-0.05619614465704217 +188696,943.4800000089889,-0.0561960027765018 +188697,943.485000008989,-0.05619586092580367 +188698,943.4900000089891,-0.05619571910494136 +188699,943.4950000089892,-0.056195577313908486 +188700,943.5000000089893,-0.056195435552698625 +188701,943.5050000089894,-0.056195293821305385 +188702,943.5100000089896,-0.05619515211972237 +188703,943.5150000089897,-0.056195010447943165 +188704,943.5200000089898,-0.056194868805961376 +188705,943.5250000089899,-0.056194727193770604 +188706,943.53000000899,-0.05619458561136446 +188707,943.5350000089901,-0.05619444405873654 +188708,943.5400000089902,-0.05619430253588044 +188709,943.5450000089903,-0.056194161042789785 +188710,943.5500000089904,-0.056194019579458174 +188711,943.5550000089905,-0.056193878145879214 +188712,943.5600000089906,-0.05619373674204651 +188713,943.5650000089908,-0.056193595367953694 +188714,943.5700000089909,-0.05619345402359436 +188715,943.575000008991,-0.05619331270896211 +188716,943.5800000089911,-0.05619317142405059 +188717,943.5850000089912,-0.05619303016885339 +188718,943.5900000089913,-0.056192888943364126 +188719,943.5950000089914,-0.05619274774757643 +188720,943.6000000089915,-0.05619260658148393 +188721,943.6050000089916,-0.05619246544508022 +188722,943.6100000089917,-0.05619232433835893 +188723,943.6150000089918,-0.056192183261313686 +188724,943.620000008992,-0.05619204221393811 +188725,943.6250000089921,-0.05619190119622583 +188726,943.6300000089922,-0.05619176020817047 +188727,943.6350000089923,-0.05619161924976564 +188728,943.6400000089924,-0.05619147832100498 +188729,943.6450000089925,-0.05619133742188213 +188730,943.6500000089926,-0.05619119655239071 +188731,943.6550000089927,-0.05619105571252435 +188732,943.6600000089928,-0.05619091490227669 +188733,943.6650000089929,-0.056190774121641356 +188734,943.670000008993,-0.056190633370611975 +188735,943.6750000089932,-0.0561904926491822 +188736,943.6800000089933,-0.05619035195734567 +188737,943.6850000089934,-0.05619021129509601 +188738,943.6900000089935,-0.05619007066242685 +188739,943.6950000089936,-0.056189930059331844 +188740,943.7000000089937,-0.056189789485804637 +188741,943.7050000089938,-0.05618964894183887 +188742,943.7100000089939,-0.05618950842742818 +188743,943.715000008994,-0.05618936794256621 +188744,943.7200000089941,-0.05618922748724661 +188745,943.7250000089942,-0.05618908706146303 +188746,943.7300000089944,-0.05618894666520912 +188747,943.7350000089945,-0.05618880629847853 +188748,943.7400000089946,-0.05618866596126489 +188749,943.7450000089947,-0.05618852565356187 +188750,943.7500000089948,-0.05618838537536313 +188751,943.7550000089949,-0.05618824512666231 +188752,943.760000008995,-0.05618810490745307 +188753,943.7650000089951,-0.056187964717729064 +188754,943.7700000089952,-0.05618782455748394 +188755,943.7750000089953,-0.05618768442671137 +188756,943.7800000089954,-0.056187544325405014 +188757,943.7850000089956,-0.056187404253558525 +188758,943.7900000089957,-0.05618726421116557 +188759,943.7950000089958,-0.05618712419821981 +188760,943.8000000089959,-0.0561869842147149 +188761,943.805000008996,-0.056186844260644506 +188762,943.8100000089961,-0.056186704336002306 +188763,943.8150000089962,-0.05618656444078197 +188764,943.8200000089963,-0.056186424574977155 +188765,943.8250000089964,-0.05618628473858153 +188766,943.8300000089965,-0.056186144931588786 +188767,943.8350000089966,-0.056186005153992566 +188768,943.8400000089968,-0.05618586540578656 +188769,943.8450000089969,-0.056185725686964436 +188770,943.850000008997,-0.05618558599751987 +188771,943.8550000089971,-0.056185446337446536 +188772,943.8600000089972,-0.05618530670673812 +188773,943.8650000089973,-0.05618516710538829 +188774,943.8700000089974,-0.05618502753339074 +188775,943.8750000089975,-0.05618488799073913 +188776,943.8800000089976,-0.05618474847742715 +188777,943.8850000089977,-0.056184608993448494 +188778,943.8900000089978,-0.056184469538796834 +188779,943.895000008998,-0.056184330113465866 +188780,943.9000000089981,-0.056184190717449255 +188781,943.9050000089982,-0.05618405135074072 +188782,943.9100000089983,-0.05618391201333393 +188783,943.9150000089984,-0.05618377270522257 +188784,943.9200000089985,-0.056183633426400335 +188785,943.9250000089986,-0.056183494176860936 +188786,943.9300000089987,-0.05618335495659804 +188787,943.9350000089988,-0.05618321576560536 +188788,943.9400000089989,-0.05618307660387657 +188789,943.945000008999,-0.05618293747140538 +188790,943.9500000089992,-0.05618279836818549 +188791,943.9550000089993,-0.056182659294210596 +188792,943.9600000089994,-0.05618252024947439 +188793,943.9650000089995,-0.05618238123397059 +188794,943.9700000089996,-0.05618224224769289 +188795,943.9750000089997,-0.056182103290634985 +188796,943.9800000089998,-0.05618196436279058 +188797,943.9850000089999,-0.056181825464153394 +188798,943.990000009,-0.056181686594717124 +188799,943.9950000090001,-0.056181547754475473 +188800,944.0000000090002,-0.056181408943422155 +188801,944.0050000090004,-0.05618127016155088 +188802,944.0100000090005,-0.05618113140885537 +188803,944.0150000090006,-0.05618099268532931 +188804,944.0200000090007,-0.056180853990966444 +188805,944.0250000090008,-0.05618071532576046 +188806,944.0300000090009,-0.056180576689705095 +188807,944.035000009001,-0.05618043808279404 +188808,944.0400000090011,-0.05618029950502104 +188809,944.0450000090012,-0.056180160956379795 +188810,944.0500000090013,-0.056180022436864034 +188811,944.0550000090014,-0.056179883946467474 +188812,944.0600000090016,-0.056179745485183834 +188813,944.0650000090017,-0.056179607053006834 +188814,944.0700000090018,-0.05617946864993022 +188815,944.0750000090019,-0.056179330275947695 +188816,944.080000009002,-0.056179191931053 +188817,944.0850000090021,-0.05617905361523985 +188818,944.0900000090022,-0.056178915328501985 +188819,944.0950000090023,-0.05617877707083314 +188820,944.1000000090024,-0.05617863884222702 +188821,944.1050000090025,-0.056178500642677376 +188822,944.1100000090026,-0.05617836247217794 +188823,944.1150000090028,-0.05617822433072244 +188824,944.1200000090029,-0.056178086218304626 +188825,944.125000009003,-0.056177948134918214 +188826,944.1300000090031,-0.05617781008055695 +188827,944.1350000090032,-0.05617767205521459 +188828,944.1400000090033,-0.05617753405888485 +188829,944.1450000090034,-0.05617739609156148 +188830,944.1500000090035,-0.056177258153238215 +188831,944.1550000090036,-0.05617712024390881 +188832,944.1600000090037,-0.056176982363566996 +188833,944.1650000090038,-0.05617684451220653 +188834,944.170000009004,-0.05617670668982116 +188835,944.1750000090041,-0.05617656889640462 +188836,944.1800000090042,-0.056176431131950665 +188837,944.1850000090043,-0.056176293396453046 +188838,944.1900000090044,-0.05617615568990553 +188839,944.1950000090045,-0.05617601801230184 +188840,944.2000000090046,-0.056175880363635744 +188841,944.2050000090047,-0.056175742743901 +188842,944.2100000090048,-0.056175605153091356 +188843,944.2150000090049,-0.056175467591200574 +188844,944.220000009005,-0.0561753300582224 +188845,944.2250000090052,-0.05617519255415061 +188846,944.2300000090053,-0.05617505507897896 +188847,944.2350000090054,-0.056174917632701195 +188848,944.2400000090055,-0.05617478021531109 +188849,944.2450000090056,-0.0561746428268024 +188850,944.2500000090057,-0.0561745054671689 +188851,944.2550000090058,-0.056174368136404355 +188852,944.2600000090059,-0.05617423083450253 +188853,944.265000009006,-0.056174093561457174 +188854,944.2700000090061,-0.05617395631726207 +188855,944.2750000090062,-0.05617381910191099 +188856,944.2800000090064,-0.05617368191539771 +188857,944.2850000090065,-0.056173544757715986 +188858,944.2900000090066,-0.056173407628859605 +188859,944.2950000090067,-0.056173270528822344 +188860,944.3000000090068,-0.056173133457597973 +188861,944.3050000090069,-0.056172996415180254 +188862,944.310000009007,-0.056172859401562976 +188863,944.3150000090071,-0.056172722416739915 +188864,944.3200000090072,-0.05617258546070487 +188865,944.3250000090073,-0.0561724485334516 +188866,944.3300000090074,-0.056172311634973895 +188867,944.3350000090076,-0.05617217476526552 +188868,944.3400000090077,-0.056172037924320295 +188869,944.3450000090078,-0.05617190111213197 +188870,944.3500000090079,-0.05617176432869434 +188871,944.355000009008,-0.05617162757400121 +188872,944.3600000090081,-0.056171490848046346 +188873,944.3650000090082,-0.05617135415082356 +188874,944.3700000090083,-0.056171217482326626 +188875,944.3750000090084,-0.05617108084254935 +188876,944.3800000090085,-0.05617094423148549 +188877,944.3850000090086,-0.05617080764912888 +188878,944.3900000090088,-0.056170671095473294 +188879,944.3950000090089,-0.05617053457051255 +188880,944.400000009009,-0.05617039807424041 +188881,944.4050000090091,-0.0561702616066507 +188882,944.4100000090092,-0.056170125167737214 +188883,944.4150000090093,-0.05616998875749374 +188884,944.4200000090094,-0.056169852375914105 +188885,944.4250000090095,-0.05616971602299209 +188886,944.4300000090096,-0.05616957969872151 +188887,944.4350000090097,-0.05616944340309615 +188888,944.4400000090099,-0.05616930713610984 +188889,944.44500000901,-0.056169170897756374 +188890,944.4500000090101,-0.05616903468802957 +188891,944.4550000090102,-0.05616889850692323 +188892,944.4600000090103,-0.05616876235443117 +188893,944.4650000090104,-0.05616862623054719 +188894,944.4700000090105,-0.05616849013526512 +188895,944.4750000090106,-0.05616835406857875 +188896,944.4800000090107,-0.05616821803048191 +188897,944.4850000090108,-0.05616808202096843 +188898,944.4900000090109,-0.056167946040032106 +188899,944.495000009011,-0.056167810087666754 +188900,944.5000000090112,-0.05616767416386621 +188901,944.5050000090113,-0.056167538268624286 +188902,944.5100000090114,-0.056167402401934796 +188903,944.5150000090115,-0.05616726656379157 +188904,944.5200000090116,-0.05616713075418844 +188905,944.5250000090117,-0.0561669949731192 +188906,944.5300000090118,-0.05616685922057771 +188907,944.5350000090119,-0.05616672349655778 +188908,944.540000009012,-0.05616658780105324 +188909,944.5450000090121,-0.05616645213405792 +188910,944.5500000090123,-0.05616631649556565 +188911,944.5550000090124,-0.05616618088557027 +188912,944.5600000090125,-0.056166045304065604 +188913,944.5650000090126,-0.05616590975104549 +188914,944.5700000090127,-0.056165774226503755 +188915,944.5750000090128,-0.05616563873043424 +188916,944.5800000090129,-0.05616550326283077 +188917,944.585000009013,-0.056165367823687196 +188918,944.5900000090131,-0.056165232412997354 +188919,944.5950000090132,-0.056165097030755076 +188920,944.6000000090133,-0.05616496167695422 +188921,944.6050000090135,-0.05616482635158861 +188922,944.6100000090136,-0.05616469105465211 +188923,944.6150000090137,-0.05616455578613855 +188924,944.6200000090138,-0.05616442054604177 +188925,944.6250000090139,-0.05616428533435563 +188926,944.630000009014,-0.05616415015107397 +188927,944.6350000090141,-0.05616401499619063 +188928,944.6400000090142,-0.05616387986969947 +188929,944.6450000090143,-0.05616374477159435 +188930,944.6500000090144,-0.05616360970186911 +188931,944.6550000090145,-0.0561634746605176 +188932,944.6600000090147,-0.05616333964753368 +188933,944.6650000090148,-0.0561632046629112 +188934,944.6700000090149,-0.056163069706644024 +188935,944.675000009015,-0.05616293477872601 +188936,944.6800000090151,-0.05616279987915102 +188937,944.6850000090152,-0.05616266500791291 +188938,944.6900000090153,-0.05616253016500552 +188939,944.6950000090154,-0.05616239535042274 +188940,944.7000000090155,-0.05616226056415842 +188941,944.7050000090156,-0.05616212580620642 +188942,944.7100000090157,-0.05616199107656061 +188943,944.7150000090159,-0.05616185637521487 +188944,944.720000009016,-0.056161721702163034 +188945,944.7250000090161,-0.05616158705739901 +188946,944.7300000090162,-0.05616145244091664 +188947,944.7350000090163,-0.05616131785270979 +188948,944.7400000090164,-0.05616118329277235 +188949,944.7450000090165,-0.05616104876109819 +188950,944.7500000090166,-0.056160914257681174 +188951,944.7550000090167,-0.05616077978251518 +188952,944.7600000090168,-0.05616064533559408 +188953,944.765000009017,-0.05616051091691178 +188954,944.770000009017,-0.056160376526462115 +188955,944.7750000090172,-0.056160242164238997 +188956,944.7800000090173,-0.05616010783023628 +188957,944.7850000090174,-0.05615997352444786 +188958,944.7900000090175,-0.05615983924686762 +188959,944.7950000090176,-0.05615970499748944 +188960,944.8000000090177,-0.056159570776307205 +188961,944.8050000090178,-0.0561594365833148 +188962,944.8100000090179,-0.05615930241850612 +188963,944.815000009018,-0.05615916828187504 +188964,944.8200000090181,-0.05615903417341545 +188965,944.8250000090183,-0.056158900093121245 +188966,944.8300000090184,-0.056158766040986324 +188967,944.8350000090185,-0.056158632017004564 +188968,944.8400000090186,-0.056158498021169866 +188969,944.8450000090187,-0.05615836405347612 +188970,944.8500000090188,-0.056158230113917226 +188971,944.8550000090189,-0.05615809620248707 +188972,944.860000009019,-0.05615796231917958 +188973,944.8650000090191,-0.05615782846398861 +188974,944.8700000090192,-0.05615769463690809 +188975,944.8750000090193,-0.056157560837931914 +188976,944.8800000090195,-0.056157427067053976 +188977,944.8850000090196,-0.056157293324268186 +188978,944.8900000090197,-0.056157159609568456 +188979,944.8950000090198,-0.056157025922948675 +188980,944.9000000090199,-0.05615689226440276 +188981,944.90500000902,-0.05615675863392461 +188982,944.9100000090201,-0.056156625031508145 +188983,944.9150000090202,-0.05615649145714725 +188984,944.9200000090203,-0.05615635791083587 +188985,944.9250000090204,-0.05615622439256789 +188986,944.9300000090205,-0.05615609090233724 +188987,944.9350000090207,-0.056155957440137814 +188988,944.9400000090208,-0.05615582400596354 +188989,944.9450000090209,-0.056155690599808336 +188990,944.950000009021,-0.05615555722166612 +188991,944.9550000090211,-0.05615542387153079 +188992,944.9600000090212,-0.05615529054939628 +188993,944.9650000090213,-0.05615515725525653 +188994,944.9700000090214,-0.056155023989105414 +188995,944.9750000090215,-0.0561548907509369 +188996,944.9800000090216,-0.056154757540744886 +188997,944.9850000090217,-0.056154624358523295 +188998,944.9900000090219,-0.05615449120426607 +188999,944.995000009022,-0.05615435807796712 +189000,945.0000000090221,-0.05615422497962038 +189001,945.0050000090222,-0.056154091909219786 +189002,945.0100000090223,-0.05615395886675926 +189003,945.0150000090224,-0.056153825852232726 +189004,945.0200000090225,-0.05615369286563413 +189005,945.0250000090226,-0.0561535599069574 +189006,945.0300000090227,-0.056153426976196456 +189007,945.0350000090228,-0.05615329407334525 +189008,945.040000009023,-0.05615316119839773 +189009,945.045000009023,-0.0561530283513478 +189010,945.0500000090232,-0.05615289553218942 +189011,945.0550000090233,-0.05615276274091653 +189012,945.0600000090234,-0.056152629977523065 +189013,945.0650000090235,-0.05615249724200297 +189014,945.0700000090236,-0.05615236453435017 +189015,945.0750000090237,-0.056152231854558636 +189016,945.0800000090238,-0.0561520992026223 +189017,945.0850000090239,-0.0561519665785351 +189018,945.090000009024,-0.056151833982291 +189019,945.0950000090241,-0.056151701413883925 +189020,945.1000000090243,-0.056151568873307856 +189021,945.1050000090244,-0.056151436360556715 +189022,945.1100000090245,-0.05615130387562447 +189023,945.1150000090246,-0.05615117141850506 +189024,945.1200000090247,-0.056151038989192444 +189025,945.1250000090248,-0.056150906587680585 +189026,945.1300000090249,-0.05615077421396342 +189027,945.135000009025,-0.05615064186803492 +189028,945.1400000090251,-0.05615050954988904 +189029,945.1450000090252,-0.05615037725951973 +189030,945.1500000090253,-0.056150244996920964 +189031,945.1550000090255,-0.056150112762086694 +189032,945.1600000090256,-0.05614998055501089 +189033,945.1650000090257,-0.0561498483756875 +189034,945.1700000090258,-0.05614971622411051 +189035,945.1750000090259,-0.05614958410027387 +189036,945.180000009026,-0.056149452004171554 +189037,945.1850000090261,-0.056149319935797505 +189038,945.1900000090262,-0.05614918789514572 +189039,945.1950000090263,-0.05614905588221015 +189040,945.2000000090264,-0.05614892389698478 +189041,945.2050000090265,-0.05614879193946358 +189042,945.2100000090267,-0.05614866000964051 +189043,945.2150000090268,-0.05614852810750957 +189044,945.2200000090269,-0.0561483962330647 +189045,945.225000009027,-0.0561482643862999 +189046,945.2300000090271,-0.05614813256720913 +189047,945.2350000090272,-0.05614800077578639 +189048,945.2400000090273,-0.05614786901202564 +189049,945.2450000090274,-0.05614773727592086 +189050,945.2500000090275,-0.05614760556746603 +189051,945.2550000090276,-0.05614747388665515 +189052,945.2600000090277,-0.056147342233482195 +189053,945.2650000090279,-0.05614721060794114 +189054,945.270000009028,-0.056147079010025976 +189055,945.2750000090281,-0.0561469474397307 +189056,945.2800000090282,-0.05614681589704928 +189057,945.2850000090283,-0.05614668438197572 +189058,945.2900000090284,-0.056146552894504 +189059,945.2950000090285,-0.05614642143462811 +189060,945.3000000090286,-0.056146290002342045 +189061,945.3050000090287,-0.0561461585976398 +189062,945.3100000090288,-0.056146027220515364 +189063,945.315000009029,-0.05614589587096275 +189064,945.3200000090291,-0.056145764548975935 +189065,945.3250000090292,-0.05614563325454891 +189066,945.3300000090293,-0.056145501987675685 +189067,945.3350000090294,-0.056145370748350264 +189068,945.3400000090295,-0.05614523953656664 +189069,945.3450000090296,-0.05614510835231882 +189070,945.3500000090297,-0.05614497719560079 +189071,945.3550000090298,-0.05614484606640657 +189072,945.3600000090299,-0.05614471496473017 +189073,945.36500000903,-0.05614458389056557 +189074,945.3700000090302,-0.0561444528439068 +189075,945.3750000090303,-0.056144321824747864 +189076,945.3800000090304,-0.05614419083308276 +189077,945.3850000090305,-0.0561440598689055 +189078,945.3900000090306,-0.0561439289322101 +189079,945.3950000090307,-0.05614379802299058 +189080,945.4000000090308,-0.056143667141240944 +189081,945.4050000090309,-0.0561435362869552 +189082,945.410000009031,-0.05614340546012737 +189083,945.4150000090311,-0.05614327466075146 +189084,945.4200000090312,-0.0561431438888215 +189085,945.4250000090314,-0.056143013144331504 +189086,945.4300000090315,-0.0561428824272755 +189087,945.4350000090316,-0.05614275173764749 +189088,945.4400000090317,-0.0561426210754415 +189089,945.4450000090318,-0.05614249044065156 +189090,945.4500000090319,-0.056142359833271684 +189091,945.455000009032,-0.05614222925329591 +189092,945.4600000090321,-0.05614209870071826 +189093,945.4650000090322,-0.05614196817553277 +189094,945.4700000090323,-0.05614183767773344 +189095,945.4750000090324,-0.05614170720731431 +189096,945.4800000090326,-0.05614157676426942 +189097,945.4850000090327,-0.0561414463485928 +189098,945.4900000090328,-0.056141315960278465 +189099,945.4950000090329,-0.056141185599320464 +189100,945.500000009033,-0.056141055265712836 +189101,945.5050000090331,-0.056140924959449605 +189102,945.5100000090332,-0.056140794680524804 +189103,945.5150000090333,-0.05614066442893248 +189104,945.5200000090334,-0.056140534204666664 +189105,945.5250000090335,-0.056140404007721405 +189106,945.5300000090336,-0.05614027383809072 +189107,945.5350000090338,-0.056140143695768675 +189108,945.5400000090339,-0.0561400135807493 +189109,945.545000009034,-0.05613988349302665 +189110,945.5500000090341,-0.05613975343259476 +189111,945.5550000090342,-0.056139623399447676 +189112,945.5600000090343,-0.056139493393579445 +189113,945.5650000090344,-0.05613936341498412 +189114,945.5700000090345,-0.05613923346365574 +189115,945.5750000090346,-0.05613910353958836 +189116,945.5800000090347,-0.056138973642776036 +189117,945.5850000090348,-0.056138843773212814 +189118,945.590000009035,-0.05613871393089275 +189119,945.5950000090351,-0.05613858411580991 +189120,945.6000000090352,-0.05613845432795833 +189121,945.6050000090353,-0.05613832456733207 +189122,945.6100000090354,-0.05613819483392518 +189123,945.6150000090355,-0.056138065127731736 +189124,945.6200000090356,-0.0561379354487458 +189125,945.6250000090357,-0.056137805796961406 +189126,945.6300000090358,-0.056137676172372634 +189127,945.6350000090359,-0.056137546574973544 +189128,945.640000009036,-0.056137417004758196 +189129,945.6450000090362,-0.05613728746172066 +189130,945.6500000090363,-0.056137157945855 +189131,945.6550000090364,-0.056137028457155284 +189132,945.6600000090365,-0.05613689899561557 +189133,945.6650000090366,-0.05613676956122994 +189134,945.6700000090367,-0.05613664015399246 +189135,945.6750000090368,-0.05613651077389719 +189136,945.6800000090369,-0.05613638142093821 +189137,945.685000009037,-0.0561362520951096 +189138,945.6900000090371,-0.05613612279640542 +189139,945.6950000090372,-0.05613599352481975 +189140,945.7000000090374,-0.056135864280346684 +189141,945.7050000090375,-0.05613573506298027 +189142,945.7100000090376,-0.05613560587271461 +189143,945.7150000090377,-0.05613547670954377 +189144,945.7200000090378,-0.05613534757346183 +189145,945.7250000090379,-0.05613521846446288 +189146,945.730000009038,-0.056135089382541 +189147,945.7350000090381,-0.05613496032769027 +189148,945.7400000090382,-0.056134831299904764 +189149,945.7450000090383,-0.056134702299178586 +189150,945.7500000090384,-0.05613457332550581 +189151,945.7550000090386,-0.05613444437888053 +189152,945.7600000090387,-0.05613431545929683 +189153,945.7650000090388,-0.05613418656674881 +189154,945.7700000090389,-0.05613405770123055 +189155,945.775000009039,-0.05613392886273614 +189156,945.7800000090391,-0.05613380005125968 +189157,945.7850000090392,-0.056133671266795276 +189158,945.7900000090393,-0.05613354250933699 +189159,945.7950000090394,-0.05613341377887895 +189160,945.8000000090395,-0.056133285075415235 +189161,945.8050000090396,-0.05613315639893995 +189162,945.8100000090398,-0.05613302774944718 +189163,945.8150000090399,-0.05613289912693105 +189164,945.82000000904,-0.05613277053138565 +189165,945.8250000090401,-0.05613264196280507 +189166,945.8300000090402,-0.056132513421183416 +189167,945.8350000090403,-0.056132384906514815 +189168,945.8400000090404,-0.05613225641879336 +189169,945.8450000090405,-0.056132127958013145 +189170,945.8500000090406,-0.056131999524168294 +189171,945.8550000090407,-0.0561318711172529 +189172,945.8600000090408,-0.05613174273726108 +189173,945.865000009041,-0.05613161438418695 +189174,945.8700000090411,-0.05613148605802462 +189175,945.8750000090412,-0.05613135775876819 +189176,945.8800000090413,-0.056131229486411784 +189177,945.8850000090414,-0.05613110124094952 +189178,945.8900000090415,-0.05613097302237551 +189179,945.8950000090416,-0.05613084483068387 +189180,945.9000000090417,-0.05613071666586872 +189181,945.9050000090418,-0.05613058852792418 +189182,945.9100000090419,-0.05613046041684436 +189183,945.915000009042,-0.056130332332623385 +189184,945.9200000090422,-0.056130204275255384 +189185,945.9250000090423,-0.05613007624473447 +189186,945.9300000090424,-0.05612994824105478 +189187,945.9350000090425,-0.05612982026421042 +189188,945.9400000090426,-0.05612969231419554 +189189,945.9450000090427,-0.05612956439100425 +189190,945.9500000090428,-0.05612943649463068 +189191,945.9550000090429,-0.05612930862506897 +189192,945.960000009043,-0.05612918078231324 +189193,945.9650000090431,-0.05612905296635762 +189194,945.9700000090432,-0.056128925177196254 +189195,945.9750000090434,-0.05612879741482325 +189196,945.9800000090435,-0.05612866967923277 +189197,945.9850000090436,-0.05612854197041894 +189198,945.9900000090437,-0.056128414288375894 +189199,945.9950000090438,-0.056128286633097775 +189200,946.0000000090439,-0.05612815900457872 +189201,946.005000009044,-0.05612803140281287 +189202,946.0100000090441,-0.056127903827794354 +189203,946.0150000090442,-0.05612777627951732 +189204,946.0200000090443,-0.05612764875797592 +189205,946.0250000090444,-0.05612752126316428 +189206,946.0300000090446,-0.05612739379507656 +189207,946.0350000090447,-0.0561272663537069 +189208,946.0400000090448,-0.05612713893904945 +189209,946.0450000090449,-0.05612701155109835 +189210,946.050000009045,-0.05612688418984776 +189211,946.0550000090451,-0.056126756855291816 +189212,946.0600000090452,-0.056126629547424686 +189213,946.0650000090453,-0.05612650226624051 +189214,946.0700000090454,-0.05612637501173343 +189215,946.0750000090455,-0.056126247783897625 +189216,946.0800000090456,-0.05612612058272724 +189217,946.0850000090458,-0.05612599340821643 +189218,946.0900000090459,-0.05612586626035935 +189219,946.095000009046,-0.05612573913915016 +189220,946.1000000090461,-0.05612561204458301 +189221,946.1050000090462,-0.056125484976652075 +189222,946.1100000090463,-0.05612535793535152 +189223,946.1150000090464,-0.05612523092067549 +189224,946.1200000090465,-0.05612510393261816 +189225,946.1250000090466,-0.0561249769711737 +189226,946.1300000090467,-0.05612485003633626 +189227,946.1350000090468,-0.056124723128100004 +189228,946.140000009047,-0.05612459624645911 +189229,946.1450000090471,-0.05612446939140774 +189230,946.1500000090472,-0.056124342562940084 +189231,946.1550000090473,-0.0561242157610503 +189232,946.1600000090474,-0.05612408898573254 +189233,946.1650000090475,-0.056123962236981004 +189234,946.1700000090476,-0.05612383551478985 +189235,946.1750000090477,-0.056123708819153253 +189236,946.1800000090478,-0.05612358215006539 +189237,946.1850000090479,-0.056123455507520445 +189238,946.190000009048,-0.0561233288915126 +189239,946.1950000090482,-0.05612320230203602 +189240,946.2000000090483,-0.056123075739084885 +189241,946.2050000090484,-0.05612294920265337 +189242,946.2100000090485,-0.056122822692735684 +189243,946.2150000090486,-0.056122696209325994 +189244,946.2200000090487,-0.056122569752418486 +189245,946.2250000090488,-0.05612244332200733 +189246,946.2300000090489,-0.05612231691808672 +189247,946.235000009049,-0.05612219054065087 +189248,946.2400000090491,-0.05612206418969393 +189249,946.2450000090492,-0.0561219378652101 +189250,946.2500000090494,-0.05612181156719358 +189251,946.2550000090495,-0.05612168529563856 +189252,946.2600000090496,-0.05612155905053922 +189253,946.2650000090497,-0.056121432831889764 +189254,946.2700000090498,-0.05612130663968438 +189255,946.2750000090499,-0.056121180473917266 +189256,946.28000000905,-0.05612105433458262 +189257,946.2850000090501,-0.056120928221674644 +189258,946.2900000090502,-0.05612080213518752 +189259,946.2950000090503,-0.05612067607511546 +189260,946.3000000090504,-0.05612055004145266 +189261,946.3050000090506,-0.056120424034193324 +189262,946.3100000090507,-0.05612029805333165 +189263,946.3150000090508,-0.056120172098861845 +189264,946.3200000090509,-0.056120046170778114 +189265,946.325000009051,-0.056119920269074655 +189266,946.3300000090511,-0.056119794393745696 +189267,946.3350000090512,-0.056119668544785416 +189268,946.3400000090513,-0.05611954272218803 +189269,946.3450000090514,-0.05611941692594776 +189270,946.3500000090515,-0.05611929115605882 +189271,946.3550000090517,-0.0561191654125154 +189272,946.3600000090518,-0.05611903969531173 +189273,946.3650000090519,-0.05611891400444202 +189274,946.370000009052,-0.05611878833990048 +189275,946.3750000090521,-0.05611866270168133 +189276,946.3800000090522,-0.056118537089778785 +189277,946.3850000090523,-0.05611841150418707 +189278,946.3900000090524,-0.05611828594490038 +189279,946.3950000090525,-0.056118160411912955 +189280,946.4000000090526,-0.05611803490521902 +189281,946.4050000090527,-0.05611790942481278 +189282,946.4100000090529,-0.05611778397068848 +189283,946.415000009053,-0.056117658542840315 +189284,946.4200000090531,-0.05611753314126254 +189285,946.4250000090532,-0.05611740776594937 +189286,946.4300000090533,-0.05611728241689501 +189287,946.4350000090534,-0.05611715709409371 +189288,946.4400000090535,-0.0561170317975397 +189289,946.4450000090536,-0.0561169065272272 +189290,946.4500000090537,-0.056116781283150445 +189291,946.4550000090538,-0.05611665606530367 +189292,946.4600000090539,-0.056116530873681104 +189293,946.465000009054,-0.05611640570827699 +189294,946.4700000090542,-0.05611628056908555 +189295,946.4750000090543,-0.05611615545610101 +189296,946.4800000090544,-0.05611603036931764 +189297,946.4850000090545,-0.056115905308729654 +189298,946.4900000090546,-0.0561157802743313 +189299,946.4950000090547,-0.056115655266116816 +189300,946.5000000090548,-0.05611553028408045 +189301,946.5050000090549,-0.056115405328216426 +189302,946.510000009055,-0.056115280398519006 +189303,946.5150000090551,-0.056115155494982416 +189304,946.5200000090553,-0.056115030617600925 +189305,946.5250000090554,-0.05611490576636875 +189306,946.5300000090555,-0.05611478094128016 +189307,946.5350000090556,-0.0561146561423294 +189308,946.5400000090557,-0.056114531369510716 +189309,946.5450000090558,-0.05611440662281835 +189310,946.5500000090559,-0.05611428190224658 +189311,946.555000009056,-0.05611415720778962 +189312,946.5600000090561,-0.05611403253944175 +189313,946.5650000090562,-0.056113907897197224 +189314,946.5700000090563,-0.05611378328105029 +189315,946.5750000090565,-0.056113658690995195 +189316,946.5800000090566,-0.056113534127026216 +189317,946.5850000090567,-0.05611340958913759 +189318,946.5900000090568,-0.0561132850773236 +189319,946.5950000090569,-0.05611316059157849 +189320,946.600000009057,-0.05611303613189652 +189321,946.6050000090571,-0.056112911698271976 +189322,946.6100000090572,-0.05611278729069909 +189323,946.6150000090573,-0.05611266290917215 +189324,946.6200000090574,-0.0561125385536854 +189325,946.6250000090575,-0.056112414224233124 +189326,946.6300000090577,-0.05611228992080959 +189327,946.6350000090578,-0.05611216564340906 +189328,946.6400000090579,-0.05611204139202579 +189329,946.645000009058,-0.05611191716665407 +189330,946.6500000090581,-0.05611179296728817 +189331,946.6550000090582,-0.05611166879392235 +189332,946.6600000090583,-0.056111544646550895 +189333,946.6650000090584,-0.056111420525168085 +189334,946.6700000090585,-0.05611129642976818 +189335,946.6750000090586,-0.05611117236034546 +189336,946.6800000090587,-0.056111048316894216 +189337,946.6850000090589,-0.05611092429940871 +189338,946.690000009059,-0.05611080030788323 +189339,946.6950000090591,-0.056110676342312045 +189340,946.7000000090592,-0.05611055240268945 +189341,946.7050000090593,-0.05611042848900973 +189342,946.7100000090594,-0.05611030460126716 +189343,946.7150000090595,-0.05611018073945603 +189344,946.7200000090596,-0.056110056903570626 +189345,946.7250000090597,-0.05610993309360522 +189346,946.7300000090598,-0.05610980930955412 +189347,946.73500000906,-0.0561096855514116 +189348,946.74000000906,-0.05610956181917196 +189349,946.7450000090602,-0.05610943811282948 +189350,946.7500000090603,-0.05610931443237847 +189351,946.7550000090604,-0.05610919077781321 +189352,946.7600000090605,-0.05610906714912799 +189353,946.7650000090606,-0.05610894354631711 +189354,946.7700000090607,-0.05610881996937486 +189355,946.7750000090608,-0.05610869641829555 +189356,946.7800000090609,-0.05610857289307347 +189357,946.785000009061,-0.056108449393702915 +189358,946.7900000090611,-0.05610832592017819 +189359,946.7950000090613,-0.05610820247249359 +189360,946.8000000090614,-0.05610807905064341 +189361,946.8050000090615,-0.056107955654621976 +189362,946.8100000090616,-0.05610783228442358 +189363,946.8150000090617,-0.056107708940042515 +189364,946.8200000090618,-0.05610758562147311 +189365,946.8250000090619,-0.05610746232870965 +189366,946.830000009062,-0.05610733906174645 +189367,946.8350000090621,-0.05610721582057782 +189368,946.8400000090622,-0.056107092605198076 +189369,946.8450000090623,-0.056106969415601525 +189370,946.8500000090625,-0.05610684625178247 +189371,946.8550000090626,-0.05610672311373524 +189372,946.8600000090627,-0.05610660000145414 +189373,946.8650000090628,-0.05610647691493348 +189374,946.8700000090629,-0.05610635385416758 +189375,946.875000009063,-0.056106230819150754 +189376,946.8800000090631,-0.05610610780987733 +189377,946.8850000090632,-0.05610598482634161 +189378,946.8900000090633,-0.05610586186853793 +189379,946.8950000090634,-0.0561057389364606 +189380,946.9000000090635,-0.056105616030103944 +189381,946.9050000090637,-0.05610549314946229 +189382,946.9100000090638,-0.056105370294529965 +189383,946.9150000090639,-0.05610524746530129 +189384,946.920000009064,-0.05610512466177059 +189385,946.9250000090641,-0.05610500188393219 +189386,946.9300000090642,-0.05610487913178041 +189387,946.9350000090643,-0.05610475640530959 +189388,946.9400000090644,-0.05610463370451406 +189389,946.9450000090645,-0.056104511029388134 +189390,946.9500000090646,-0.056104388379926165 +189391,946.9550000090647,-0.05610426575612249 +189392,946.9600000090649,-0.05610414315797142 +189393,946.965000009065,-0.05610402058546731 +189394,946.9700000090651,-0.05610389803860449 +189395,946.9750000090652,-0.056103775517377275 +189396,946.9800000090653,-0.05610365302178003 +189397,946.9850000090654,-0.0561035305518071 +189398,946.9900000090655,-0.0561034081074528 +189399,946.9950000090656,-0.056103285688711466 +189400,947.0000000090657,-0.05610316329557748 +189401,947.0050000090658,-0.05610304092804515 +189402,947.010000009066,-0.05610291858610883 +189403,947.0150000090661,-0.05610279626976286 +189404,947.0200000090662,-0.056102673979001594 +189405,947.0250000090663,-0.056102551713819365 +189406,947.0300000090664,-0.05610242947421054 +189407,947.0350000090665,-0.05610230726016945 +189408,947.0400000090666,-0.05610218507169046 +189409,947.0450000090667,-0.05610206290876791 +189410,947.0500000090668,-0.05610194077139616 +189411,947.0550000090669,-0.05610181865956956 +189412,947.060000009067,-0.05610169657328247 +189413,947.0650000090671,-0.05610157451252923 +189414,947.0700000090673,-0.05610145247730419 +189415,947.0750000090674,-0.056101330467601726 +189416,947.0800000090675,-0.0561012084834162 +189417,947.0850000090676,-0.05610108652474196 +189418,947.0900000090677,-0.05610096459157336 +189419,947.0950000090678,-0.05610084268390477 +189420,947.1000000090679,-0.05610072080173055 +189421,947.105000009068,-0.05610059894504505 +189422,947.1100000090681,-0.05610047711384266 +189423,947.1150000090682,-0.05610035530811773 +189424,947.1200000090683,-0.05610023352786462 +189425,947.1250000090685,-0.0561001117730777 +189426,947.1300000090686,-0.056099990043751345 +189427,947.1350000090687,-0.05609986833987992 +189428,947.1400000090688,-0.05609974666145779 +189429,947.1450000090689,-0.05609962500847932 +189430,947.150000009069,-0.0560995033809389 +189431,947.1550000090691,-0.05609938177883089 +189432,947.1600000090692,-0.05609926020214966 +189433,947.1650000090693,-0.0560991386508896 +189434,947.1700000090694,-0.05609901712504508 +189435,947.1750000090695,-0.05609889562461048 +189436,947.1800000090697,-0.056098774149580165 +189437,947.1850000090698,-0.056098652699948515 +189438,947.1900000090699,-0.05609853127570992 +189439,947.19500000907,-0.056098409876858754 +189440,947.2000000090701,-0.056098288503389396 +189441,947.2050000090702,-0.05609816715529624 +189442,947.2100000090703,-0.05609804583257366 +189443,947.2150000090704,-0.05609792453521604 +189444,947.2200000090705,-0.05609780326321777 +189445,947.2250000090706,-0.05609768201657323 +189446,947.2300000090707,-0.05609756079527682 +189447,947.2350000090709,-0.056097439599322924 +189448,947.240000009071,-0.05609731842870593 +189449,947.2450000090711,-0.05609719728342023 +189450,947.2500000090712,-0.0560970761634602 +189451,947.2550000090713,-0.05609695506882025 +189452,947.2600000090714,-0.05609683399949476 +189453,947.2650000090715,-0.05609671295547814 +189454,947.2700000090716,-0.056096591936764785 +189455,947.2750000090717,-0.056096470943349075 +189456,947.2800000090718,-0.056096349975225425 +189457,947.285000009072,-0.05609622903238822 +189458,947.2900000090721,-0.056096108114831865 +189459,947.2950000090722,-0.05609598722255076 +189460,947.3000000090723,-0.056095866355539314 +189461,947.3050000090724,-0.05609574551379193 +189462,947.3100000090725,-0.056095624697303 +189463,947.3150000090726,-0.05609550390606693 +189464,947.3200000090727,-0.056095383140078114 +189465,947.3250000090728,-0.05609526239933098 +189466,947.3300000090729,-0.05609514168381992 +189467,947.335000009073,-0.05609502099353935 +189468,947.3400000090732,-0.05609490032848369 +189469,947.3450000090733,-0.05609477968864734 +189470,947.3500000090734,-0.05609465907402471 +189471,947.3550000090735,-0.0560945384846102 +189472,947.3600000090736,-0.056094417920398244 +189473,947.3650000090737,-0.056094297381383246 +189474,947.3700000090738,-0.05609417686755961 +189475,947.3750000090739,-0.05609405637892178 +189476,947.380000009074,-0.05609393591546416 +189477,947.3850000090741,-0.056093815477181154 +189478,947.3900000090742,-0.05609369506406721 +189479,947.3950000090744,-0.05609357467611672 +189480,947.4000000090745,-0.05609345431332412 +189481,947.4050000090746,-0.05609333397568382 +189482,947.4100000090747,-0.056093213663190256 +189483,947.4150000090748,-0.05609309337583786 +189484,947.4200000090749,-0.05609297311362103 +189485,947.425000009075,-0.05609285287653421 +189486,947.4300000090751,-0.05609273266457183 +189487,947.4350000090752,-0.05609261247772831 +189488,947.4400000090753,-0.056092492315998076 +189489,947.4450000090754,-0.05609237217937556 +189490,947.4500000090756,-0.0560922520678552 +189491,947.4550000090757,-0.056092131981431426 +189492,947.4600000090758,-0.056092011920098654 +189493,947.4650000090759,-0.056091891883851344 +189494,947.470000009076,-0.056091771872683924 +189495,947.4750000090761,-0.05609165188659083 +189496,947.4800000090762,-0.056091531925566485 +189497,947.4850000090763,-0.056091411989605336 +189498,947.4900000090764,-0.05609129207870182 +189499,947.4950000090765,-0.05609117219285037 +189500,947.5000000090766,-0.056091052332045435 +189501,947.5050000090768,-0.05609093249628147 +189502,947.5100000090769,-0.05609081268555289 +189503,947.515000009077,-0.05609069289985416 +189504,947.5200000090771,-0.05609057313917973 +189505,947.5250000090772,-0.056090453403524025 +189506,947.5300000090773,-0.05609033369288149 +189507,947.5350000090774,-0.056090214007246585 +189508,947.5400000090775,-0.056090094346613766 +189509,947.5450000090776,-0.05608997471097747 +189510,947.5500000090777,-0.056089855100332146 +189511,947.5550000090778,-0.056089735514672244 +189512,947.560000009078,-0.05608961595399222 +189513,947.5650000090781,-0.05608949641828655 +189514,947.5700000090782,-0.05608937690754965 +189515,947.5750000090783,-0.056089257421776 +189516,947.5800000090784,-0.056089137960960045 +189517,947.5850000090785,-0.05608901852509625 +189518,947.5900000090786,-0.056088899114179074 +189519,947.5950000090787,-0.05608877972820297 +189520,947.6000000090788,-0.05608866036716239 +189521,947.6050000090789,-0.05608854103105182 +189522,947.610000009079,-0.056088421719865694 +189523,947.6150000090792,-0.056088302433598504 +189524,947.6200000090793,-0.056088183172244684 +189525,947.6250000090794,-0.05608806393579873 +189526,947.6300000090795,-0.05608794472425508 +189527,947.6350000090796,-0.05608782553760823 +189528,947.6400000090797,-0.05608770637585262 +189529,947.6450000090798,-0.05608758723898274 +189530,947.6500000090799,-0.05608746812699305 +189531,947.65500000908,-0.056087349039878005 +189532,947.6600000090801,-0.05608722997763211 +189533,947.6650000090802,-0.05608711094024982 +189534,947.6700000090804,-0.05608699192772561 +189535,947.6750000090805,-0.056086872940053954 +189536,947.6800000090806,-0.056086753977229335 +189537,947.6850000090807,-0.056086635039246234 +189538,947.6900000090808,-0.05608651612609911 +189539,947.6950000090809,-0.05608639723778245 +189540,947.700000009081,-0.05608627837429074 +189541,947.7050000090811,-0.05608615953561846 +189542,947.7100000090812,-0.056086040721760086 +189543,947.7150000090813,-0.056085921932710094 +189544,947.7200000090814,-0.05608580316846299 +189545,947.7250000090816,-0.056085684429013245 +189546,947.7300000090817,-0.05608556571435533 +189547,947.7350000090818,-0.05608544702448376 +189548,947.7400000090819,-0.056085328359393005 +189549,947.745000009082,-0.05608520971907756 +189550,947.7500000090821,-0.056085091103531895 +189551,947.7550000090822,-0.056084972512750526 +189552,947.7600000090823,-0.056084853946727936 +189553,947.7650000090824,-0.056084735405458615 +189554,947.7700000090825,-0.05608461688893707 +189555,947.7750000090826,-0.056084498397157775 +189556,947.7800000090828,-0.05608437993011523 +189557,947.7850000090829,-0.056084261487803946 +189558,947.790000009083,-0.056084143070218404 +189559,947.7950000090831,-0.056084024677353114 +189560,947.8000000090832,-0.05608390630920256 +189561,947.8050000090833,-0.05608378796576126 +189562,947.8100000090834,-0.056083669647023715 +189563,947.8150000090835,-0.0560835513529844 +189564,947.8200000090836,-0.05608343308363784 +189565,947.8250000090837,-0.056083314838978555 +189566,947.8300000090838,-0.05608319661900102 +189567,947.835000009084,-0.05608307842369975 +189568,947.8400000090841,-0.05608296025306925 +189569,947.8450000090842,-0.05608284210710403 +189570,947.8500000090843,-0.05608272398579861 +189571,947.8550000090844,-0.056082605889147485 +189572,947.8600000090845,-0.05608248781714518 +189573,947.8650000090846,-0.0560823697697862 +189574,947.8700000090847,-0.05608225174706505 +189575,947.8750000090848,-0.05608213374897625 +189576,947.8800000090849,-0.05608201577551431 +189577,947.885000009085,-0.056081897826673756 +189578,947.8900000090852,-0.0560817799024491 +189579,947.8950000090853,-0.05608166200283486 +189580,947.9000000090854,-0.05608154412782555 +189581,947.9050000090855,-0.056081426277415705 +189582,947.9100000090856,-0.05608130845159982 +189583,947.9150000090857,-0.05608119065037243 +189584,947.9200000090858,-0.056081072873728065 +189585,947.9250000090859,-0.05608095512166123 +189586,947.930000009086,-0.056080837394166465 +189587,947.9350000090861,-0.05608071969123829 +189588,947.9400000090862,-0.056080602012871225 +189589,947.9450000090864,-0.05608048435905981 +189590,947.9500000090865,-0.05608036672979857 +189591,947.9550000090866,-0.056080249125082034 +189592,947.9600000090867,-0.05608013154490472 +189593,947.9650000090868,-0.05608001398926118 +189594,947.9700000090869,-0.05607989645814593 +189595,947.975000009087,-0.05607977895155349 +189596,947.9800000090871,-0.056079661469478424 +189597,947.9850000090872,-0.05607954401191526 +189598,947.9900000090873,-0.05607942657885853 +189599,947.9950000090874,-0.056079309170302766 +189600,948.0000000090876,-0.0560791917862425 +189601,948.0050000090877,-0.056079074426672294 +189602,948.0100000090878,-0.056078957091586674 +189603,948.0150000090879,-0.056078839780980175 +189604,948.020000009088,-0.05607872249484734 +189605,948.0250000090881,-0.05607860523318273 +189606,948.0300000090882,-0.056078487995980864 +189607,948.0350000090883,-0.0560783707832363 +189608,948.0400000090884,-0.056078253594943575 +189609,948.0450000090885,-0.05607813643109725 +189610,948.0500000090886,-0.05607801929169186 +189611,948.0550000090888,-0.05607790217672196 +189612,948.0600000090889,-0.05607778508618211 +189613,948.065000009089,-0.05607766802006683 +189614,948.0700000090891,-0.05607755097837068 +189615,948.0750000090892,-0.05607743396108823 +189616,948.0800000090893,-0.05607731696821404 +189617,948.0850000090894,-0.05607719999974263 +189618,948.0900000090895,-0.05607708305566858 +189619,948.0950000090896,-0.05607696613598644 +189620,948.1000000090897,-0.056076849240690764 +189621,948.1050000090898,-0.05607673236977611 +189622,948.11000000909,-0.05607661552323704 +189623,948.1150000090901,-0.05607649870106812 +189624,948.1200000090902,-0.05607638190326391 +189625,948.1250000090903,-0.05607626512981895 +189626,948.1300000090904,-0.05607614838072783 +189627,948.1350000090905,-0.056076031655985105 +189628,948.1400000090906,-0.05607591495558533 +189629,948.1450000090907,-0.05607579827952309 +189630,948.1500000090908,-0.05607568162779293 +189631,948.1550000090909,-0.05607556500038943 +189632,948.160000009091,-0.05607544839730716 +189633,948.1650000090912,-0.05607533181854068 +189634,948.1700000090913,-0.056075215264084564 +189635,948.1750000090914,-0.05607509873393339 +189636,948.1800000090915,-0.05607498222808172 +189637,948.1850000090916,-0.056074865746524157 +189638,948.1900000090917,-0.05607474928925524 +189639,948.1950000090918,-0.05607463285626955 +189640,948.2000000090919,-0.056074516447561666 +189641,948.205000009092,-0.05607440006312618 +189642,948.2100000090921,-0.05607428370295766 +189643,948.2150000090923,-0.056074167367050676 +189644,948.2200000090924,-0.05607405105539982 +189645,948.2250000090925,-0.05607393476799968 +189646,948.2300000090926,-0.05607381850484481 +189647,948.2350000090927,-0.05607370226592981 +189648,948.2400000090928,-0.05607358605124926 +189649,948.2450000090929,-0.05607346986079776 +189650,948.250000009093,-0.05607335369456989 +189651,948.2550000090931,-0.05607323755256023 +189652,948.2600000090932,-0.05607312143476337 +189653,948.2650000090933,-0.05607300534117388 +189654,948.2700000090935,-0.05607288927178638 +189655,948.2750000090936,-0.05607277322659544 +189656,948.2800000090937,-0.05607265720559568 +189657,948.2850000090938,-0.05607254120878166 +189658,948.2900000090939,-0.05607242523614798 +189659,948.295000009094,-0.05607230928768924 +189660,948.3000000090941,-0.05607219336340003 +189661,948.3050000090942,-0.056072077463274965 +189662,948.3100000090943,-0.05607196158730862 +189663,948.3150000090944,-0.056071845735495604 +189664,948.3200000090945,-0.05607172990783052 +189665,948.3250000090947,-0.05607161410430796 +189666,948.3300000090948,-0.05607149832492252 +189667,948.3350000090949,-0.0560713825696688 +189668,948.340000009095,-0.05607126683854142 +189669,948.3450000090951,-0.05607115113153498 +189670,948.3500000090952,-0.05607103544864407 +189671,948.3550000090953,-0.05607091978986331 +189672,948.3600000090954,-0.0560708041551873 +189673,948.3650000090955,-0.05607068854461066 +189674,948.3700000090956,-0.056070572958127986 +189675,948.3750000090957,-0.05607045739573388 +189676,948.3800000090959,-0.056070341857422976 +189677,948.385000009096,-0.05607022634318987 +189678,948.3900000090961,-0.05607011085302918 +189679,948.3950000090962,-0.056069995386935516 +189680,948.4000000090963,-0.05606987994490349 +189681,948.4050000090964,-0.05606976452692773 +189682,948.4100000090965,-0.056069649133002844 +189683,948.4150000090966,-0.05606953376312343 +189684,948.4200000090967,-0.05606941841728414 +189685,948.4250000090968,-0.05606930309547957 +189686,948.430000009097,-0.056069187797704347 +189687,948.435000009097,-0.0560690725239531 +189688,948.4400000090972,-0.05606895727422044 +189689,948.4450000090973,-0.05606884204850098 +189690,948.4500000090974,-0.056068726846789374 +189691,948.4550000090975,-0.056068611669080226 +189692,948.4600000090976,-0.05606849651536815 +189693,948.4650000090977,-0.0560683813856478 +189694,948.4700000090978,-0.056068266279913785 +189695,948.4750000090979,-0.05606815119816075 +189696,948.480000009098,-0.0560680361403833 +189697,948.4850000090981,-0.05606792110657608 +189698,948.4900000090983,-0.05606780609673374 +189699,948.4950000090984,-0.05606769111085087 +189700,948.5000000090985,-0.056067576148922146 +189701,948.5050000090986,-0.05606746121094217 +189702,948.5100000090987,-0.0560673462969056 +189703,948.5150000090988,-0.056067231406807055 +189704,948.5200000090989,-0.056067116540641185 +189705,948.525000009099,-0.05606700169840262 +189706,948.5300000090991,-0.056066886880086 +189707,948.5350000090992,-0.05606677208568597 +189708,948.5400000090993,-0.056066657315197166 +189709,948.5450000090995,-0.05606654256861422 +189710,948.5500000090996,-0.0560664278459318 +189711,948.5550000090997,-0.056066313147144525 +189712,948.5600000090998,-0.056066198472247065 +189713,948.5650000090999,-0.05606608382123405 +189714,948.5700000091,-0.05606596919410012 +189715,948.5750000091001,-0.05606585459083994 +189716,948.5800000091002,-0.05606574001144813 +189717,948.5850000091003,-0.05606562545591936 +189718,948.5900000091004,-0.05606551092424829 +189719,948.5950000091005,-0.056065396416429554 +189720,948.6000000091007,-0.05606528193245781 +189721,948.6050000091008,-0.056065167472327704 +189722,948.6100000091009,-0.0560650530360339 +189723,948.615000009101,-0.05606493862357105 +189724,948.6200000091011,-0.05606482423493381 +189725,948.6250000091012,-0.05606470987011683 +189726,948.6300000091013,-0.05606459552911477 +189727,948.6350000091014,-0.0560644812119223 +189728,948.6400000091015,-0.056064366918534066 +189729,948.6450000091016,-0.05606425264894473 +189730,948.6500000091017,-0.05606413840314897 +189731,948.6550000091019,-0.05606402418114143 +189732,948.660000009102,-0.056063909982916785 +189733,948.6650000091021,-0.056063795808469694 +189734,948.6700000091022,-0.056063681657794816 +189735,948.6750000091023,-0.05606356753088683 +189736,948.6800000091024,-0.0560634534277404 +189737,948.6850000091025,-0.0560633393483502 +189738,948.6900000091026,-0.056063225292710885 +189739,948.6950000091027,-0.056063111260817124 +189740,948.7000000091028,-0.05606299725266361 +189741,948.705000009103,-0.05606288326824499 +189742,948.710000009103,-0.05606276930755594 +189743,948.7150000091032,-0.056062655370591144 +189744,948.7200000091033,-0.05606254145734528 +189745,948.7250000091034,-0.056062427567813 +189746,948.7300000091035,-0.05606231370198901 +189747,948.7350000091036,-0.056062199859867975 +189748,948.7400000091037,-0.056062086041444574 +189749,948.7450000091038,-0.056061972246713485 +189750,948.7500000091039,-0.056061858475669385 +189751,948.755000009104,-0.05606174472830696 +189752,948.7600000091041,-0.05606163100462091 +189753,948.7650000091043,-0.05606151730460589 +189754,948.7700000091044,-0.05606140362825659 +189755,948.7750000091045,-0.0560612899755677 +189756,948.7800000091046,-0.05606117634653392 +189757,948.7850000091047,-0.0560610627411499 +189758,948.7900000091048,-0.05606094915941036 +189759,948.7950000091049,-0.05606083560130998 +189760,948.800000009105,-0.05606072206684344 +189761,948.8050000091051,-0.05606060855600545 +189762,948.8100000091052,-0.05606049506879069 +189763,948.8150000091053,-0.05606038160519384 +189764,948.8200000091055,-0.05606026816520962 +189765,948.8250000091056,-0.056060154748832705 +189766,948.8300000091057,-0.0560600413560578 +189767,948.8350000091058,-0.05605992798687959 +189768,948.8400000091059,-0.05605981464129279 +189769,948.845000009106,-0.05605970131929209 +189770,948.8500000091061,-0.056059588020872186 +189771,948.8550000091062,-0.05605947474602777 +189772,948.8600000091063,-0.05605936149475356 +189773,948.8650000091064,-0.05605924826704424 +189774,948.8700000091065,-0.056059135062894526 +189775,948.8750000091067,-0.05605902188229912 +189776,948.8800000091068,-0.05605890872525274 +189777,948.8850000091069,-0.05605879559175005 +189778,948.890000009107,-0.05605868248178581 +189779,948.8950000091071,-0.05605856939535468 +189780,948.9000000091072,-0.0560584563324514 +189781,948.9050000091073,-0.05605834329307066 +189782,948.9100000091074,-0.05605823027720719 +189783,948.9150000091075,-0.056058117284855685 +189784,948.9200000091076,-0.056058004316010865 +189785,948.9250000091077,-0.05605789137066743 +189786,948.9300000091079,-0.056057778448820116 +189787,948.935000009108,-0.056057665550463626 +189788,948.9400000091081,-0.056057552675592676 +189789,948.9450000091082,-0.05605743982420198 +189790,948.9500000091083,-0.056057326996286266 +189791,948.9550000091084,-0.05605721419184023 +189792,948.9600000091085,-0.05605710141085862 +189793,948.9650000091086,-0.05605698865333614 +189794,948.9700000091087,-0.056056875919267515 +189795,948.9750000091088,-0.05605676320864747 +189796,948.980000009109,-0.05605665052147071 +189797,948.9850000091091,-0.056056537857732 +189798,948.9900000091092,-0.05605642521742603 +189799,948.9950000091093,-0.05605631260054753 +189800,949.0000000091094,-0.05605620000709124 +189801,949.0050000091095,-0.05605608743705187 +189802,949.0100000091096,-0.056055974890424166 +189803,949.0150000091097,-0.05605586236720285 +189804,949.0200000091098,-0.05605574986738266 +189805,949.0250000091099,-0.05605563739095833 +189806,949.03000000911,-0.056055524937924574 +189807,949.0350000091101,-0.056055412508276135 +189808,949.0400000091103,-0.05605530010200775 +189809,949.0450000091104,-0.05605518771911414 +189810,949.0500000091105,-0.056055075359590076 +189811,949.0550000091106,-0.056054963023430264 +189812,949.0600000091107,-0.056054850710629454 +189813,949.0650000091108,-0.05605473842118238 +189814,949.0700000091109,-0.05605462615508378 +189815,949.075000009111,-0.05605451391232841 +189816,949.0800000091111,-0.056054401692911 +189817,949.0850000091112,-0.0560542894968263 +189818,949.0900000091113,-0.056054177324069046 +189819,949.0950000091115,-0.056054065174633974 +189820,949.1000000091116,-0.056053953048515855 +189821,949.1050000091117,-0.056053840945709414 +189822,949.1100000091118,-0.0560537288662094 +189823,949.1150000091119,-0.056053616810010566 +189824,949.120000009112,-0.05605350477710768 +189825,949.1250000091121,-0.05605339276749546 +189826,949.1300000091122,-0.05605328078116867 +189827,949.1350000091123,-0.056053168818122064 +189828,949.1400000091124,-0.05605305687835039 +189829,949.1450000091126,-0.056052944961848414 +189830,949.1500000091127,-0.056052833068610884 +189831,949.1550000091128,-0.056052721198632555 +189832,949.1600000091129,-0.056052609351908186 +189833,949.165000009113,-0.05605249752843253 +189834,949.1700000091131,-0.05605238572820035 +189835,949.1750000091132,-0.056052273951206405 +189836,949.1800000091133,-0.056052162197445445 +189837,949.1850000091134,-0.05605205046691224 +189838,949.1900000091135,-0.05605193875960156 +189839,949.1950000091136,-0.05605182707550816 +189840,949.2000000091138,-0.0560517154146268 +189841,949.2050000091139,-0.05605160377695225 +189842,949.210000009114,-0.05605149216247928 +189843,949.2150000091141,-0.056051380571202646 +189844,949.2200000091142,-0.05605126900311711 +189845,949.2250000091143,-0.056051157458217475 +189846,949.2300000091144,-0.056051045936498484 +189847,949.2350000091145,-0.05605093443795491 +189848,949.2400000091146,-0.05605082296258152 +189849,949.2450000091147,-0.056050711510373094 +189850,949.2500000091148,-0.056050600081324405 +189851,949.255000009115,-0.056050488675430235 +189852,949.2600000091151,-0.05605037729268534 +189853,949.2650000091152,-0.05605026593308451 +189854,949.2700000091153,-0.056050154596622506 +189855,949.2750000091154,-0.05605004328329413 +189856,949.2800000091155,-0.05604993199309415 +189857,949.2850000091156,-0.05604982072601733 +189858,949.2900000091157,-0.05604970948205847 +189859,949.2950000091158,-0.056049598261212356 +189860,949.3000000091159,-0.05604948706347375 +189861,949.305000009116,-0.05604937588883745 +189862,949.3100000091162,-0.05604926473729823 +189863,949.3150000091163,-0.05604915360885089 +189864,949.3200000091164,-0.056049042503490215 +189865,949.3250000091165,-0.05604893142121098 +189866,949.3300000091166,-0.05604882036200797 +189867,949.3350000091167,-0.05604870932587599 +189868,949.3400000091168,-0.05604859831280983 +189869,949.3450000091169,-0.056048487322804263 +189870,949.350000009117,-0.05604837635585409 +189871,949.3550000091171,-0.05604826541195411 +189872,949.3600000091172,-0.0560481544910991 +189873,949.3650000091174,-0.056048043593283865 +189874,949.3700000091175,-0.0560479327185032 +189875,949.3750000091176,-0.05604782186675192 +189876,949.3800000091177,-0.056047711038024785 +189877,949.3850000091178,-0.05604760023231663 +189878,949.3900000091179,-0.05604748944962222 +189879,949.395000009118,-0.05604737868993638 +189880,949.4000000091181,-0.0560472679532539 +189881,949.4050000091182,-0.05604715723956957 +189882,949.4100000091183,-0.05604704654887823 +189883,949.4150000091184,-0.056046935881174646 +189884,949.4200000091186,-0.05604682523645364 +189885,949.4250000091187,-0.056046714614710016 +189886,949.4300000091188,-0.05604660401593857 +189887,949.4350000091189,-0.056046493440134126 +189888,949.440000009119,-0.05604638288729149 +189889,949.4450000091191,-0.05604627235740545 +189890,949.4500000091192,-0.05604616185047082 +189891,949.4550000091193,-0.05604605136648245 +189892,949.4600000091194,-0.056045940905435104 +189893,949.4650000091195,-0.056045830467323615 +189894,949.4700000091196,-0.0560457200521428 +189895,949.4750000091198,-0.05604560965988746 +189896,949.4800000091199,-0.05604549929055243 +189897,949.48500000912,-0.05604538894413251 +189898,949.4900000091201,-0.05604527862062253 +189899,949.4950000091202,-0.0560451683200173 +189900,949.5000000091203,-0.05604505804231164 +189901,949.5050000091204,-0.05604494778750036 +189902,949.5100000091205,-0.0560448375555783 +189903,949.5150000091206,-0.05604472734654027 +189904,949.5200000091207,-0.056044617160381095 +189905,949.5250000091208,-0.05604450699709561 +189906,949.530000009121,-0.056044396856678634 +189907,949.5350000091211,-0.056044286739124975 +189908,949.5400000091212,-0.05604417664442947 +189909,949.5450000091213,-0.05604406657258696 +189910,949.5500000091214,-0.05604395652359226 +189911,949.5550000091215,-0.0560438464974402 +189912,949.5600000091216,-0.05604373649412561 +189913,949.5650000091217,-0.05604362651364332 +189914,949.5700000091218,-0.05604351655598817 +189915,949.5750000091219,-0.05604340662115497 +189916,949.580000009122,-0.05604329670913859 +189917,949.5850000091222,-0.05604318681993384 +189918,949.5900000091223,-0.05604307695353556 +189919,949.5950000091224,-0.056042967109938585 +189920,949.6000000091225,-0.05604285728913776 +189921,949.6050000091226,-0.05604274749112791 +189922,949.6100000091227,-0.0560426377159039 +189923,949.6150000091228,-0.05604252796346053 +189924,949.6200000091229,-0.056042418233792676 +189925,949.625000009123,-0.05604230852689517 +189926,949.6300000091231,-0.05604219884276285 +189927,949.6350000091232,-0.05604208918139055 +189928,949.6400000091234,-0.05604197954277314 +189929,949.6450000091235,-0.05604186992690545 +189930,949.6500000091236,-0.056041760333782324 +189931,949.6550000091237,-0.05604165076339861 +189932,949.6600000091238,-0.05604154121574916 +189933,949.6650000091239,-0.056041431690828834 +189934,949.670000009124,-0.05604132218863246 +189935,949.6750000091241,-0.05604121270915491 +189936,949.6800000091242,-0.05604110325239103 +189937,949.6850000091243,-0.05604099381833567 +189938,949.6900000091244,-0.05604088440698367 +189939,949.6950000091246,-0.056040775018329894 +189940,949.7000000091247,-0.05604066565236922 +189941,949.7050000091248,-0.056040556309096476 +189942,949.7100000091249,-0.056040446988506534 +189943,949.715000009125,-0.056040337690594244 +189944,949.7200000091251,-0.056040228415354464 +189945,949.7250000091252,-0.056040119162782065 +189946,949.7300000091253,-0.0560400099328719 +189947,949.7350000091254,-0.056039900725618826 +189948,949.7400000091255,-0.05603979154101771 +189949,949.7450000091256,-0.05603968237906342 +189950,949.7500000091258,-0.056039573239750826 +189951,949.7550000091259,-0.05603946412307477 +189952,949.760000009126,-0.05603935502903013 +189953,949.7650000091261,-0.0560392459576118 +189954,949.7700000091262,-0.05603913690881461 +189955,949.7750000091263,-0.05603902788263345 +189956,949.7800000091264,-0.056038918879063176 +189957,949.7850000091265,-0.05603880989809868 +189958,949.7900000091266,-0.05603870093973481 +189959,949.7950000091267,-0.05603859200396646 +189960,949.8000000091268,-0.05603848309078849 +189961,949.805000009127,-0.05603837420019578 +189962,949.8100000091271,-0.0560382653321832 +189963,949.8150000091272,-0.056038156486745636 +189964,949.8200000091273,-0.056038047663877946 +189965,949.8250000091274,-0.05603793886357504 +189966,949.8300000091275,-0.056037830085831755 +189967,949.8350000091276,-0.05603772133064301 +189968,949.8400000091277,-0.05603761259800366 +189969,949.8450000091278,-0.0560375038879086 +189970,949.8500000091279,-0.05603739520035272 +189971,949.855000009128,-0.056037286535330896 +189972,949.8600000091282,-0.056037177892838005 +189973,949.8650000091283,-0.05603706927286894 +189974,949.8700000091284,-0.05603696067541857 +189975,949.8750000091285,-0.056036852100481795 +189976,949.8800000091286,-0.05603674354805351 +189977,949.8850000091287,-0.05603663501812859 +189978,949.8900000091288,-0.05603652651070195 +189979,949.8950000091289,-0.056036418025768454 +189980,949.900000009129,-0.05603630956332302 +189981,949.9050000091291,-0.05603620112336052 +189982,949.9100000091292,-0.05603609270587583 +189983,949.9150000091294,-0.05603598431086388 +189984,949.9200000091295,-0.05603587593831955 +189985,949.9250000091296,-0.056035767588237737 +189986,949.9300000091297,-0.056035659260613345 +189987,949.9350000091298,-0.056035550955441264 +189988,949.9400000091299,-0.0560354426727164 +189989,949.94500000913,-0.05603533441243364 +189990,949.9500000091301,-0.05603522617458789 +189991,949.9550000091302,-0.05603511795917406 +189992,949.9600000091303,-0.05603500976618705 +189993,949.9650000091304,-0.05603490159562175 +189994,949.9700000091306,-0.056034793447473065 +189995,949.9750000091307,-0.05603468532173592 +189996,949.9800000091308,-0.056034577218405206 +189997,949.9850000091309,-0.05603446913747584 +189998,949.990000009131,-0.05603436107894271 +189999,949.9950000091311,-0.05603425304280074 +190000,950.0000000091312,-0.05603414502904485 +190001,950.0050000091313,-0.05603403703766993 +190002,950.0100000091314,-0.0560339290686709 +190003,950.0150000091315,-0.056033821122042686 +190004,950.0200000091316,-0.05603371319778017 +190005,950.0250000091318,-0.05603360529587829 +190006,950.0300000091319,-0.05603349741633196 +190007,950.035000009132,-0.05603338955913608 +190008,950.0400000091321,-0.05603328172428559 +190009,950.0450000091322,-0.05603317391177538 +190010,950.0500000091323,-0.05603306612160039 +190011,950.0550000091324,-0.05603295835375553 +190012,950.0600000091325,-0.056032850608235735 +190013,950.0650000091326,-0.0560327428850359 +190014,950.0700000091327,-0.056032635184150976 +190015,950.0750000091329,-0.05603252750557587 +190016,950.080000009133,-0.0560324198493055 +190017,950.0850000091331,-0.0560323122153348 +190018,950.0900000091332,-0.0560322046036587 +190019,950.0950000091333,-0.05603209701427213 +190020,950.1000000091334,-0.05603198944716999 +190021,950.1050000091335,-0.05603188190234724 +190022,950.1100000091336,-0.05603177437979879 +190023,950.1150000091337,-0.056031666879519576 +190024,950.1200000091338,-0.05603155940150454 +190025,950.1250000091339,-0.0560314519457486 +190026,950.130000009134,-0.05603134451224669 +190027,950.1350000091342,-0.05603123710099375 +190028,950.1400000091343,-0.05603112971198472 +190029,950.1450000091344,-0.05603102234521451 +190030,950.1500000091345,-0.056030915000678076 +190031,950.1550000091346,-0.05603080767837037 +190032,950.1600000091347,-0.0560307003782863 +190033,950.1650000091348,-0.056030593100420814 +190034,950.1700000091349,-0.056030485844768864 +190035,950.175000009135,-0.05603037861132539 +190036,950.1800000091351,-0.056030271400085326 +190037,950.1850000091353,-0.056030164211043613 +190038,950.1900000091354,-0.05603005704419519 +190039,950.1950000091355,-0.05602994989953501 +190040,950.2000000091356,-0.056029842777058025 +190041,950.2050000091357,-0.056029735676759174 +190042,950.2100000091358,-0.05602962859863341 +190043,950.2150000091359,-0.05602952154267567 +190044,950.220000009136,-0.0560294145088809 +190045,950.2250000091361,-0.05602930749724408 +190046,950.2300000091362,-0.05602920050776013 +190047,950.2350000091363,-0.056029093540424 +190048,950.2400000091365,-0.056028986595230666 +190049,950.2450000091366,-0.056028879672175055 +190050,950.2500000091367,-0.056028772771252136 +190051,950.2550000091368,-0.05602866589245687 +190052,950.2600000091369,-0.056028559035784214 +190053,950.265000009137,-0.0560284522012291 +190054,950.2700000091371,-0.0560283453887865 +190055,950.2750000091372,-0.056028238598451394 +190056,950.2800000091373,-0.056028131830218715 +190057,950.2850000091374,-0.05602802508408344 +190058,950.2900000091375,-0.056027918360040514 +190059,950.2950000091377,-0.05602781165808492 +190060,950.3000000091378,-0.05602770497821159 +190061,950.3050000091379,-0.056027598320415525 +190062,950.310000009138,-0.056027491684691656 +190063,950.3150000091381,-0.05602738507103497 +190064,950.3200000091382,-0.056027278479440425 +190065,950.3250000091383,-0.05602717190990301 +190066,950.3300000091384,-0.05602706536241766 +190067,950.3350000091385,-0.05602695883697936 +190068,950.3400000091386,-0.05602685233358308 +190069,950.3450000091387,-0.0560267458522238 +190070,950.3500000091389,-0.05602663939289648 +190071,950.355000009139,-0.0560265329555961 +190072,950.3600000091391,-0.05602642654031763 +190073,950.3650000091392,-0.05602632014705604 +190074,950.3700000091393,-0.05602621377580631 +190075,950.3750000091394,-0.05602610742656343 +190076,950.3800000091395,-0.05602600109932236 +190077,950.3850000091396,-0.056025894794078074 +190078,950.3900000091397,-0.05602578851082556 +190079,950.3950000091398,-0.05602568224955981 +190080,950.40000000914,-0.05602557601027579 +190081,950.40500000914,-0.056025469792968484 +190082,950.4100000091402,-0.056025363597632875 +190083,950.4150000091403,-0.056025257424263945 +190084,950.4200000091404,-0.05602515127285668 +190085,950.4250000091405,-0.05602504514340606 +190086,950.4300000091406,-0.0560249390359071 +190087,950.4350000091407,-0.05602483295035475 +190088,950.4400000091408,-0.05602472688674402 +190089,950.4450000091409,-0.05602462084506989 +190090,950.450000009141,-0.056024514825327346 +190091,950.4550000091411,-0.056024408827511384 +190092,950.4600000091413,-0.056024302851617 +190093,950.4650000091414,-0.05602419689763917 +190094,950.4700000091415,-0.05602409096557291 +190095,950.4750000091416,-0.05602398505541321 +190096,950.4800000091417,-0.056023879167155045 +190097,950.4850000091418,-0.05602377330079344 +190098,950.4900000091419,-0.05602366745632337 +190099,950.495000009142,-0.05602356163373983 +190100,950.5000000091421,-0.05602345583303783 +190101,950.5050000091422,-0.05602335005421237 +190102,950.5100000091423,-0.05602324429725845 +190103,950.5150000091425,-0.05602313856217106 +190104,950.5200000091426,-0.05602303284894522 +190105,950.5250000091427,-0.056022927157575925 +190106,950.5300000091428,-0.05602282148805817 +190107,950.5350000091429,-0.05602271584038697 +190108,950.540000009143,-0.05602261021455733 +190109,950.5450000091431,-0.05602250461056425 +190110,950.5500000091432,-0.056022399028402746 +190111,950.5550000091433,-0.05602229346806783 +190112,950.5600000091434,-0.05602218792955449 +190113,950.5650000091435,-0.056022082412857756 +190114,950.5700000091437,-0.056021976917972637 +190115,950.5750000091438,-0.05602187144489413 +190116,950.5800000091439,-0.056021765993617266 +190117,950.585000009144,-0.05602166056413705 +190118,950.5900000091441,-0.0560215551564485 +190119,950.5950000091442,-0.05602144977054663 +190120,950.6000000091443,-0.05602134440642645 +190121,950.6050000091444,-0.056021239064082975 +190122,950.6100000091445,-0.056021133743511246 +190123,950.6150000091446,-0.056021028444706245 +190124,950.6200000091447,-0.05602092316766303 +190125,950.6250000091449,-0.0560208179123766 +190126,950.630000009145,-0.056020712678841976 +190127,950.6350000091451,-0.056020607467054194 +190128,950.6400000091452,-0.05602050227700826 +190129,950.6450000091453,-0.056020397108699216 +190130,950.6500000091454,-0.05602029196212206 +190131,950.6550000091455,-0.056020186837271835 +190132,950.6600000091456,-0.05602008173414357 +190133,950.6650000091457,-0.0560199766527323 +190134,950.6700000091458,-0.056019871593033045 +190135,950.675000009146,-0.05601976655504083 +190136,950.680000009146,-0.05601966153875068 +190137,950.6850000091462,-0.056019556544157655 +190138,950.6900000091463,-0.056019451571256755 +190139,950.6950000091464,-0.05601934662004302 +190140,950.7000000091465,-0.05601924169051149 +190141,950.7050000091466,-0.0560191367826572 +190142,950.7100000091467,-0.05601903189647518 +190143,950.7150000091468,-0.05601892703196047 +190144,950.7200000091469,-0.05601882218910811 +190145,950.725000009147,-0.056018717367913126 +190146,950.7300000091471,-0.056018612568370575 +190147,950.7350000091473,-0.056018507790475486 +190148,950.7400000091474,-0.056018403034222904 +190149,950.7450000091475,-0.05601829829960787 +190150,950.7500000091476,-0.056018193586625416 +190151,950.7550000091477,-0.05601808889527061 +190152,950.7600000091478,-0.05601798422553847 +190153,950.7650000091479,-0.05601787957742405 +190154,950.770000009148,-0.0560177749509224 +190155,950.7750000091481,-0.056017670346028565 +190156,950.7800000091482,-0.05601756576273761 +190157,950.7850000091483,-0.05601746120104454 +190158,950.7900000091485,-0.05601735666094444 +190159,950.7950000091486,-0.056017252142432354 +190160,950.8000000091487,-0.05601714764550333 +190161,950.8050000091488,-0.05601704317015242 +190162,950.8100000091489,-0.056016938716374684 +190163,950.815000009149,-0.05601683428416516 +190164,950.8200000091491,-0.05601672987351891 +190165,950.8250000091492,-0.056016625484431 +190166,950.8300000091493,-0.05601652111689647 +190167,950.8350000091494,-0.0560164167709104 +190168,950.8400000091495,-0.05601631244646782 +190169,950.8450000091497,-0.056016208143563805 +190170,950.8500000091498,-0.056016103862193405 +190171,950.8550000091499,-0.0560159996023517 +190172,950.86000000915,-0.05601589536403374 +190173,950.8650000091501,-0.05601579114723458 +190174,950.8700000091502,-0.05601568695194929 +190175,950.8750000091503,-0.056015582778172944 +190176,950.8800000091504,-0.0560154786259006 +190177,950.8850000091505,-0.05601537449512732 +190178,950.8900000091506,-0.05601527038584817 +190179,950.8950000091507,-0.05601516629805822 +190180,950.9000000091509,-0.05601506223175254 +190181,950.905000009151,-0.05601495818692621 +190182,950.9100000091511,-0.05601485416357429 +190183,950.9150000091512,-0.056014750161691836 +190184,950.9200000091513,-0.05601464618127395 +190185,950.9250000091514,-0.05601454222231569 +190186,950.9300000091515,-0.05601443828481212 +190187,950.9350000091516,-0.05601433436875833 +190188,950.9400000091517,-0.056014230474149385 +190189,950.9450000091518,-0.056014126600980374 +190190,950.950000009152,-0.056014022749246384 +190191,950.9550000091521,-0.05601391891894245 +190192,950.9600000091522,-0.05601381511006369 +190193,950.9650000091523,-0.05601371132260518 +190194,950.9700000091524,-0.05601360755656198 +190195,950.9750000091525,-0.05601350381192918 +190196,950.9800000091526,-0.056013400088701884 +190197,950.9850000091527,-0.056013296386875154 +190198,950.9900000091528,-0.05601319270644407 +190199,950.9950000091529,-0.05601308904740374 +190200,951.000000009153,-0.056012985409749236 +190201,951.0050000091532,-0.05601288179347565 +190202,951.0100000091533,-0.05601277819857805 +190203,951.0150000091534,-0.056012674625051544 +190204,951.0200000091535,-0.05601257107289122 +190205,951.0250000091536,-0.056012467542092166 +190206,951.0300000091537,-0.056012364032649475 +190207,951.0350000091538,-0.05601226054455823 +190208,951.0400000091539,-0.056012157077813526 +190209,951.045000009154,-0.05601205363241047 +190210,951.0500000091541,-0.056011950208344145 +190211,951.0550000091542,-0.05601184680560965 +190212,951.0600000091544,-0.05601174342420208 +190213,951.0650000091545,-0.05601164006411653 +190214,951.0700000091546,-0.05601153672534811 +190215,951.0750000091547,-0.056011433407891914 +190216,951.0800000091548,-0.056011330111743036 +190217,951.0850000091549,-0.056011226836896584 +190218,951.090000009155,-0.056011123583347644 +190219,951.0950000091551,-0.05601102035109133 +190220,951.1000000091552,-0.05601091714012276 +190221,951.1050000091553,-0.05601081395043701 +190222,951.1100000091554,-0.05601071078202921 +190223,951.1150000091556,-0.05601060763489444 +190224,951.1200000091557,-0.05601050450902783 +190225,951.1250000091558,-0.056010401404424474 +190226,951.1300000091559,-0.05601029832107949 +190227,951.135000009156,-0.056010195258987976 +190228,951.1400000091561,-0.05601009221814505 +190229,951.1450000091562,-0.05600998919854583 +190230,951.1500000091563,-0.056009886200185405 +190231,951.1550000091564,-0.05600978322305892 +190232,951.1600000091565,-0.05600968026716146 +190233,951.1650000091566,-0.05600957733248815 +190234,951.1700000091568,-0.05600947441903411 +190235,951.1750000091569,-0.05600937152679446 +190236,951.180000009157,-0.056009268655764305 +190237,951.1850000091571,-0.05600916580593877 +190238,951.1900000091572,-0.056009062977312965 +190239,951.1950000091573,-0.056008960169882015 +190240,951.2000000091574,-0.056008857383641045 +190241,951.2050000091575,-0.05600875461858517 +190242,951.2100000091576,-0.05600865187470953 +190243,951.2150000091577,-0.05600854915200922 +190244,951.2200000091578,-0.056008446450479386 +190245,951.225000009158,-0.05600834377011515 +190246,951.2300000091581,-0.05600824111091163 +190247,951.2350000091582,-0.05600813847286395 +190248,951.2400000091583,-0.05600803585596725 +190249,951.2450000091584,-0.05600793326021665 +190250,951.2500000091585,-0.056007830685607274 +190251,951.2550000091586,-0.05600772813213426 +190252,951.2600000091587,-0.05600762559979275 +190253,951.2650000091588,-0.05600752308857786 +190254,951.2700000091589,-0.056007420598484715 +190255,951.275000009159,-0.05600731812950847 +190256,951.2800000091592,-0.05600721568164424 +190257,951.2850000091593,-0.05600711325488717 +190258,951.2900000091594,-0.0560070108492324 +190259,951.2950000091595,-0.05600690846467506 +190260,951.3000000091596,-0.0560068061012103 +190261,951.3050000091597,-0.056006703758833244 +190262,951.3100000091598,-0.056006601437539036 +190263,951.3150000091599,-0.05600649913732281 +190264,951.32000000916,-0.056006396858179715 +190265,951.3250000091601,-0.056006294600104894 +190266,951.3300000091602,-0.05600619236309349 +190267,951.3350000091604,-0.05600609014714064 +190268,951.3400000091605,-0.0560059879522415 +190269,951.3450000091606,-0.056005885778391204 +190270,951.3500000091607,-0.0560057836255849 +190271,951.3550000091608,-0.05600568149381773 +190272,951.3600000091609,-0.05600557938308486 +190273,951.365000009161,-0.056005477293381435 +190274,951.3700000091611,-0.05600537522470259 +190275,951.3750000091612,-0.05600527317704349 +190276,951.3800000091613,-0.056005171150399276 +190277,951.3850000091614,-0.056005069144765114 +190278,951.3900000091616,-0.05600496716013615 +190279,951.3950000091617,-0.05600486519650754 +190280,951.4000000091618,-0.05600476325387443 +190281,951.4050000091619,-0.056004661332231975 +190282,951.410000009162,-0.05600455943157535 +190283,951.4150000091621,-0.05600445755189969 +190284,951.4200000091622,-0.05600435569320017 +190285,951.4250000091623,-0.05600425385547195 +190286,951.4300000091624,-0.056004152038710175 +190287,951.4350000091625,-0.05600405024291001 +190288,951.4400000091626,-0.056003948468066625 +190289,951.4450000091628,-0.05600384671417518 +190290,951.4500000091629,-0.05600374498123084 +190291,951.455000009163,-0.05600364326922876 +190292,951.4600000091631,-0.05600354157816412 +190293,951.4650000091632,-0.05600343990803208 +190294,951.4700000091633,-0.0560033382588278 +190295,951.4750000091634,-0.05600323663054645 +190296,951.4800000091635,-0.05600313502318321 +190297,951.4850000091636,-0.056003033436733234 +190298,951.4900000091637,-0.05600293187119171 +190299,951.4950000091638,-0.05600283032655378 +190300,951.500000009164,-0.05600272880281464 +190301,951.5050000091641,-0.056002627299969465 +190302,951.5100000091642,-0.05600252581801341 +190303,951.5150000091643,-0.05600242435694166 +190304,951.5200000091644,-0.05600232291674939 +190305,951.5250000091645,-0.056002221497431795 +190306,951.5300000091646,-0.056002120098984025 +190307,951.5350000091647,-0.05600201872140126 +190308,951.5400000091648,-0.05600191736467869 +190309,951.5450000091649,-0.05600181602881149 +190310,951.550000009165,-0.056001714713794844 +190311,951.5550000091652,-0.056001613419623925 +190312,951.5600000091653,-0.05600151214629392 +190313,951.5650000091654,-0.056001410893800015 +190314,951.5700000091655,-0.056001309662137386 +190315,951.5750000091656,-0.05600120845130122 +190316,951.5800000091657,-0.05600110726128672 +190317,951.5850000091658,-0.05600100609208906 +190318,951.5900000091659,-0.05600090494370342 +190319,951.595000009166,-0.05600080381612499 +190320,951.6000000091661,-0.05600070270934896 +190321,951.6050000091662,-0.056000601623370526 +190322,951.6100000091664,-0.05600050055818488 +190323,951.6150000091665,-0.056000399513787213 +190324,951.6200000091666,-0.05600029849017271 +190325,951.6250000091667,-0.05600019748733657 +190326,951.6300000091668,-0.056000096505273975 +190327,951.6350000091669,-0.055999995543980136 +190328,951.640000009167,-0.05599989460345024 +190329,951.6450000091671,-0.05599979368367949 +190330,951.6500000091672,-0.05599969278466307 +190331,951.6550000091673,-0.05599959190639619 +190332,951.6600000091674,-0.05599949104887405 +190333,951.6650000091676,-0.055999390212091854 +190334,951.6700000091677,-0.05599928939604479 +190335,951.6750000091678,-0.05599918860072808 +190336,951.6800000091679,-0.055999087826136905 +190337,951.685000009168,-0.05599898707226648 +190338,951.6900000091681,-0.05599888633911199 +190339,951.6950000091682,-0.055998785626668664 +190340,951.7000000091683,-0.0559986849349317 +190341,951.7050000091684,-0.055998584263896305 +190342,951.7100000091685,-0.055998483613557686 +190343,951.7150000091686,-0.05599838298391104 +190344,951.7200000091688,-0.0559982823749516 +190345,951.7250000091689,-0.05599818178667457 +190346,951.730000009169,-0.055998081219075145 +190347,951.7350000091691,-0.05599798067214856 +190348,951.7400000091692,-0.05599788014589001 +190349,951.7450000091693,-0.05599777964029471 +190350,951.7500000091694,-0.055997679155357874 +190351,951.7550000091695,-0.055997578691074724 +190352,951.7600000091696,-0.05599747824744047 +190353,951.7650000091697,-0.05599737782445034 +190354,951.7700000091698,-0.05599727742209955 +190355,951.77500000917,-0.05599717704038331 +190356,951.7800000091701,-0.05599707667929684 +190357,951.7850000091702,-0.055996976338835366 +190358,951.7900000091703,-0.0559968760189941 +190359,951.7950000091704,-0.055996775719768264 +190360,951.8000000091705,-0.0559966754411531 +190361,951.8050000091706,-0.05599657518314382 +190362,951.8100000091707,-0.05599647494573564 +190363,951.8150000091708,-0.0559963747289238 +190364,951.8200000091709,-0.05599627453270351 +190365,951.825000009171,-0.05599617435707001 +190366,951.8300000091712,-0.05599607420201852 +190367,951.8350000091713,-0.055995974067544266 +190368,951.8400000091714,-0.0559958739536425 +190369,951.8450000091715,-0.055995773860308434 +190370,951.8500000091716,-0.0559956737875373 +190371,951.8550000091717,-0.05599557373532433 +190372,951.8600000091718,-0.055995473703664755 +190373,951.8650000091719,-0.05599537369255383 +190374,951.870000009172,-0.055995273701986766 +190375,951.8750000091721,-0.0559951737319588 +190376,951.8800000091722,-0.05599507378246517 +190377,951.8850000091724,-0.05599497385350112 +190378,951.8900000091725,-0.055994873945061883 +190379,951.8950000091726,-0.055994774057142704 +190380,951.9000000091727,-0.055994674189738816 +190381,951.9050000091728,-0.055994574342845466 +190382,951.9100000091729,-0.0559944745164579 +190383,951.915000009173,-0.05599437471057134 +190384,951.9200000091731,-0.055994274925181046 +190385,951.9250000091732,-0.05599417516028225 +190386,951.9300000091733,-0.05599407541587022 +190387,951.9350000091735,-0.055993975691940166 +190388,951.9400000091736,-0.05599387598848736 +190389,951.9450000091737,-0.05599377630550704 +190390,951.9500000091738,-0.05599367664299446 +190391,951.9550000091739,-0.05599357700094487 +190392,951.960000009174,-0.05599347737935351 +190393,951.9650000091741,-0.05599337777821565 +190394,951.9700000091742,-0.05599327819752652 +190395,951.9750000091743,-0.05599317863728139 +190396,951.9800000091744,-0.05599307909747549 +190397,951.9850000091745,-0.055992979578104084 +190398,951.9900000091747,-0.05599288007916245 +190399,951.9950000091748,-0.05599278060064582 +190400,952.0000000091749,-0.05599268114254945 +190401,952.005000009175,-0.0559925817048686 +190402,952.0100000091751,-0.05599248228759854 +190403,952.0150000091752,-0.05599238289073451 +190404,952.0200000091753,-0.055992283514271775 +190405,952.0250000091754,-0.0559921841582056 +190406,952.0300000091755,-0.055992084822531256 +190407,952.0350000091756,-0.055991985507244 +190408,952.0400000091757,-0.05599188621233908 +190409,952.0450000091759,-0.05599178693781178 +190410,952.050000009176,-0.055991687683657344 +190411,952.0550000091761,-0.05599158844987106 +190412,952.0600000091762,-0.05599148923644818 +190413,952.0650000091763,-0.05599139004338397 +190414,952.0700000091764,-0.05599129087067371 +190415,952.0750000091765,-0.05599119171831266 +190416,952.0800000091766,-0.05599109258629611 +190417,952.0850000091767,-0.055990993474619305 +190418,952.0900000091768,-0.05599089438327752 +190419,952.0950000091769,-0.05599079531226603 +190420,952.100000009177,-0.05599069626158011 +190421,952.1050000091772,-0.05599059723121505 +190422,952.1100000091773,-0.055990498221166106 +190423,952.1150000091774,-0.05599039923142855 +190424,952.1200000091775,-0.05599030026199767 +190425,952.1250000091776,-0.05599020131286875 +190426,952.1300000091777,-0.055990102384037045 +190427,952.1350000091778,-0.05599000347549786 +190428,952.1400000091779,-0.05598990458724646 +190429,952.145000009178,-0.05598980571927813 +190430,952.1500000091781,-0.05598970687158814 +190431,952.1550000091783,-0.05598960804417179 +190432,952.1600000091784,-0.05598950923702435 +190433,952.1650000091785,-0.05598941045014111 +190434,952.1700000091786,-0.05598931168351736 +190435,952.1750000091787,-0.05598921293714837 +190436,952.1800000091788,-0.05598911421102944 +190437,952.1850000091789,-0.055989015505155865 +190438,952.190000009179,-0.055988916819522914 +190439,952.1950000091791,-0.05598881815412588 +190440,952.2000000091792,-0.05598871950896006 +190441,952.2050000091793,-0.05598862088402075 +190442,952.2100000091795,-0.055988522279303225 +190443,952.2150000091796,-0.055988423694802794 +190444,952.2200000091797,-0.055988325130514736 +190445,952.2250000091798,-0.055988226586434355 +190446,952.2300000091799,-0.05598812806255694 +190447,952.23500000918,-0.0559880295588778 +190448,952.2400000091801,-0.05598793107539221 +190449,952.2450000091802,-0.05598783261209549 +190450,952.2500000091803,-0.055987734168982915 +190451,952.2550000091804,-0.05598763574604979 +190452,952.2600000091805,-0.055987537343291434 +190453,952.2650000091807,-0.05598743896070313 +190454,952.2700000091808,-0.055987340598280186 +190455,952.2750000091809,-0.05598724225601791 +190456,952.280000009181,-0.05598714393391158 +190457,952.2850000091811,-0.055987045631956535 +190458,952.2900000091812,-0.05598694735014806 +190459,952.2950000091813,-0.05598684908848145 +190460,952.3000000091814,-0.05598675084695204 +190461,952.3050000091815,-0.05598665262555511 +190462,952.3100000091816,-0.05598655442428598 +190463,952.3150000091817,-0.05598645624313997 +190464,952.3200000091819,-0.05598635808211238 +190465,952.325000009182,-0.05598625994119851 +190466,952.3300000091821,-0.05598616182039369 +190467,952.3350000091822,-0.055986063719693224 +190468,952.3400000091823,-0.05598596563909243 +190469,952.3450000091824,-0.05598586757858661 +190470,952.3500000091825,-0.05598576953817108 +190471,952.3550000091826,-0.05598567151784119 +190472,952.3600000091827,-0.0559855735175922 +190473,952.3650000091828,-0.05598547553741946 +190474,952.370000009183,-0.05598537757731829 +190475,952.375000009183,-0.05598527963728401 +190476,952.3800000091832,-0.055985181717311934 +190477,952.3850000091833,-0.05598508381739737 +190478,952.3900000091834,-0.055984985937535654 +190479,952.3950000091835,-0.0559848880777221 +190480,952.4000000091836,-0.05598479023795204 +190481,952.4050000091837,-0.0559846924182208 +190482,952.4100000091838,-0.0559845946185237 +190483,952.4150000091839,-0.05598449683885606 +190484,952.420000009184,-0.0559843990792132 +190485,952.4250000091841,-0.055984301339590474 +190486,952.4300000091843,-0.05598420361998319 +190487,952.4350000091844,-0.05598410592038668 +190488,952.4400000091845,-0.05598400824079629 +190489,952.4450000091846,-0.05598391058120731 +190490,952.4500000091847,-0.05598381294161511 +190491,952.4550000091848,-0.055983715322015015 +190492,952.4600000091849,-0.055983617722402346 +190493,952.465000009185,-0.055983520142772435 +190494,952.4700000091851,-0.055983422583120626 +190495,952.4750000091852,-0.055983325043442264 +190496,952.4800000091853,-0.055983227523732665 +190497,952.4850000091855,-0.055983130023987186 +190498,952.4900000091856,-0.05598303254420115 +190499,952.4950000091857,-0.0559829350843699 +190500,952.5000000091858,-0.05598283764448878 +190501,952.5050000091859,-0.05598274022455313 +190502,952.510000009186,-0.05598264282455828 +190503,952.5150000091861,-0.05598254544449959 +190504,952.5200000091862,-0.055982448084372395 +190505,952.5250000091863,-0.05598235074417202 +190506,952.5300000091864,-0.05598225342389384 +190507,952.5350000091865,-0.055982156123533175 +190508,952.5400000091867,-0.05598205884308539 +190509,952.5450000091868,-0.05598196158254582 +190510,952.5500000091869,-0.055981864341909826 +190511,952.555000009187,-0.055981767121172754 +190512,952.5600000091871,-0.055981669920329935 +190513,952.5650000091872,-0.05598157273937675 +190514,952.5700000091873,-0.05598147557830852 +190515,952.5750000091874,-0.05598137843712061 +190516,952.5800000091875,-0.05598128131580837 +190517,952.5850000091876,-0.05598118421436716 +190518,952.5900000091877,-0.055981087132792325 +190519,952.5950000091879,-0.055980990071079234 +190520,952.600000009188,-0.05598089302922324 +190521,952.6050000091881,-0.05598079600721968 +190522,952.6100000091882,-0.055980699005063944 +190523,952.6150000091883,-0.055980602022751354 +190524,952.6200000091884,-0.0559805050602773 +190525,952.6250000091885,-0.055980408117637125 +190526,952.6300000091886,-0.0559803111948262 +190527,952.6350000091887,-0.055980214291839886 +190528,952.6400000091888,-0.055980117408673535 +190529,952.645000009189,-0.05598002054532252 +190530,952.6500000091891,-0.055979923701782196 +190531,952.6550000091892,-0.05597982687804794 +190532,952.6600000091893,-0.05597973007411513 +190533,952.6650000091894,-0.055979633289979104 +190534,952.6700000091895,-0.05597953652563524 +190535,952.6750000091896,-0.05597943978107891 +190536,952.6800000091897,-0.05597934305630548 +190537,952.6850000091898,-0.055979246351310324 +190538,952.6900000091899,-0.055979149666088815 +190539,952.69500000919,-0.05597905300063631 +190540,952.7000000091901,-0.0559789563549482 +190541,952.7050000091903,-0.05597885972901984 +190542,952.7100000091904,-0.05597876312284663 +190543,952.7150000091905,-0.055978666536423916 +190544,952.7200000091906,-0.05597856996974709 +190545,952.7250000091907,-0.05597847342281152 +190546,952.7300000091908,-0.05597837689561259 +190547,952.7350000091909,-0.05597828038814568 +190548,952.740000009191,-0.05597818390040617 +190549,952.7450000091911,-0.05597808743238943 +190550,952.7500000091912,-0.05597799098409084 +190551,952.7550000091913,-0.05597789455550579 +190552,952.7600000091915,-0.055977798146629655 +190553,952.7650000091916,-0.05597770175745784 +190554,952.7700000091917,-0.055977605387985706 +190555,952.7750000091918,-0.05597750903820864 +190556,952.7800000091919,-0.05597741270812203 +190557,952.785000009192,-0.05597731639772127 +190558,952.7900000091921,-0.05597722010700174 +190559,952.7950000091922,-0.055977123835958834 +190560,952.8000000091923,-0.05597702758458793 +190561,952.8050000091924,-0.055976931352884424 +190562,952.8100000091925,-0.05597683514084371 +190563,952.8150000091927,-0.05597673894846116 +190564,952.8200000091928,-0.05597664277573219 +190565,952.8250000091929,-0.05597654662265218 +190566,952.830000009193,-0.05597645048921653 +190567,952.8350000091931,-0.055976354375420645 +190568,952.8400000091932,-0.055976258281259905 +190569,952.8450000091933,-0.0559761622067297 +190570,952.8500000091934,-0.05597606615182544 +190571,952.8550000091935,-0.05597597011654251 +190572,952.8600000091936,-0.055975874100876344 +190573,952.8650000091937,-0.0559757781048223 +190574,952.8700000091939,-0.055975682128375795 +190575,952.875000009194,-0.05597558617153223 +190576,952.8800000091941,-0.055975490234286995 +190577,952.8850000091942,-0.055975394316635514 +190578,952.8900000091943,-0.055975298418573176 +190579,952.8950000091944,-0.05597520254009538 +190580,952.9000000091945,-0.055975106681197546 +190581,952.9050000091946,-0.055975010841875075 +190582,952.9100000091947,-0.05597491502212339 +190583,952.9150000091948,-0.055974819221937866 +190584,952.920000009195,-0.05597472344131393 +190585,952.9250000091951,-0.05597462768024698 +190586,952.9300000091952,-0.05597453193873244 +190587,952.9350000091953,-0.05597443621676571 +190588,952.9400000091954,-0.05597434051434222 +190589,952.9450000091955,-0.055974244831457354 +190590,952.9500000091956,-0.05597414916810655 +190591,952.9550000091957,-0.05597405352428521 +190592,952.9600000091958,-0.05597395789998875 +190593,952.9650000091959,-0.05597386229521258 +190594,952.970000009196,-0.05597376670995213 +190595,952.9750000091962,-0.05597367114420281 +190596,952.9800000091963,-0.05597357559796003 +190597,952.9850000091964,-0.05597348007121923 +190598,952.9900000091965,-0.05597338456397581 +190599,952.9950000091966,-0.0559732890762252 +190600,953.0000000091967,-0.05597319360796283 +190601,953.0050000091968,-0.0559730981591841 +190602,953.0100000091969,-0.05597300272988446 +190603,953.015000009197,-0.05597290732005931 +190604,953.0200000091971,-0.05597281192970408 +190605,953.0250000091972,-0.0559727165588142 +190606,953.0300000091974,-0.05597262120738509 +190607,953.0350000091975,-0.05597252587541219 +190608,953.0400000091976,-0.05597243056289091 +190609,953.0450000091977,-0.055972335269816695 +190610,953.0500000091978,-0.05597223999618497 +190611,953.0550000091979,-0.05597214474199116 +190612,953.060000009198,-0.05597204950723069 +190613,953.0650000091981,-0.05597195429189901 +190614,953.0700000091982,-0.05597185909599155 +190615,953.0750000091983,-0.05597176391950373 +190616,953.0800000091984,-0.055971668762430996 +190617,953.0850000091986,-0.05597157362476877 +190618,953.0900000091987,-0.0559714785065125 +190619,953.0950000091988,-0.055971383407657616 +190620,953.1000000091989,-0.055971288328199566 +190621,953.105000009199,-0.055971193268133775 +190622,953.1100000091991,-0.0559710982274557 +190623,953.1150000091992,-0.05597100320616076 +190624,953.1200000091993,-0.05597090820424441 +190625,953.1250000091994,-0.05597081322170209 +190626,953.1300000091995,-0.055970718258529235 +190627,953.1350000091996,-0.055970623314721295 +190628,953.1400000091998,-0.055970528390273715 +190629,953.1450000091999,-0.05597043348518193 +190630,953.1500000092,-0.055970338599441394 +190631,953.1550000092001,-0.055970243733047556 +190632,953.1600000092002,-0.05597014888599586 +190633,953.1650000092003,-0.05597005405828173 +190634,953.1700000092004,-0.055969959249900655 +190635,953.1750000092005,-0.055969864460848076 +190636,953.1800000092006,-0.05596976969111943 +190637,953.1850000092007,-0.055969674940710167 +190638,953.1900000092008,-0.055969580209615746 +190639,953.195000009201,-0.055969485497831616 +190640,953.2000000092011,-0.05596939080535323 +190641,953.2050000092012,-0.05596929613217606 +190642,953.2100000092013,-0.05596920147829553 +190643,953.2150000092014,-0.05596910684370712 +190644,953.2200000092015,-0.055969012228406285 +190645,953.2250000092016,-0.05596891763238848 +190646,953.2300000092017,-0.05596882305564917 +190647,953.2350000092018,-0.055968728498183795 +190648,953.2400000092019,-0.05596863395998783 +190649,953.245000009202,-0.05596853944105674 +190650,953.2500000092022,-0.05596844494138597 +190651,953.2550000092023,-0.055968350460971 +190652,953.2600000092024,-0.05596825599980727 +190653,953.2650000092025,-0.05596816155789027 +190654,953.2700000092026,-0.05596806713521545 +190655,953.2750000092027,-0.055967972731778275 +190656,953.2800000092028,-0.05596787834757423 +190657,953.2850000092029,-0.05596778398259876 +190658,953.290000009203,-0.05596768963684734 +190659,953.2950000092031,-0.05596759531031545 +190660,953.3000000092032,-0.05596750100299855 +190661,953.3050000092034,-0.05596740671489211 +190662,953.3100000092035,-0.055967312445991596 +190663,953.3150000092036,-0.055967218196292495 +190664,953.3200000092037,-0.05596712396579027 +190665,953.3250000092038,-0.05596702975448038 +190666,953.3300000092039,-0.05596693556235833 +190667,953.335000009204,-0.05596684138941958 +190668,953.3400000092041,-0.055966747235659614 +190669,953.3450000092042,-0.05596665310107389 +190670,953.3500000092043,-0.0559665589856579 +190671,953.3550000092044,-0.055966464889407125 +190672,953.3600000092046,-0.05596637081231704 +190673,953.3650000092047,-0.055966276754383135 +190674,953.3700000092048,-0.055966182715600866 +190675,953.3750000092049,-0.05596608869596574 +190676,953.380000009205,-0.055965994695473226 +190677,953.3850000092051,-0.05596590071411882 +190678,953.3900000092052,-0.05596580675189799 +190679,953.3950000092053,-0.05596571280880623 +190680,953.4000000092054,-0.05596561888483903 +190681,953.4050000092055,-0.05596552497999187 +190682,953.4100000092056,-0.05596543109426024 +190683,953.4150000092058,-0.055965337227639626 +190684,953.4200000092059,-0.05596524338012551 +190685,953.425000009206,-0.055965149551713396 +190686,953.4300000092061,-0.05596505574239876 +190687,953.4350000092062,-0.05596496195217711 +190688,953.4400000092063,-0.055964868181043924 +190689,953.4450000092064,-0.0559647744289947 +190690,953.4500000092065,-0.05596468069602494 +190691,953.4550000092066,-0.05596458698213013 +190692,953.4600000092067,-0.05596449328730576 +190693,953.4650000092068,-0.05596439961154734 +190694,953.470000009207,-0.05596430595485035 +190695,953.4750000092071,-0.0559642123172103 +190696,953.4800000092072,-0.05596411869862269 +190697,953.4850000092073,-0.05596402509908302 +190698,953.4900000092074,-0.05596393151858678 +190699,953.4950000092075,-0.05596383795712947 +190700,953.5000000092076,-0.05596374441470661 +190701,953.5050000092077,-0.05596365089131369 +190702,953.5100000092078,-0.05596355738694621 +190703,953.5150000092079,-0.05596346390159968 +190704,953.520000009208,-0.05596337043526961 +190705,953.5250000092082,-0.05596327698795149 +190706,953.5300000092083,-0.05596318355964084 +190707,953.5350000092084,-0.05596309015033316 +190708,953.5400000092085,-0.05596299676002397 +190709,953.5450000092086,-0.05596290338870877 +190710,953.5500000092087,-0.055962810036383065 +190711,953.5550000092088,-0.05596271670304236 +190712,953.5600000092089,-0.055962623388682194 +190713,953.565000009209,-0.05596253009329806 +190714,953.5700000092091,-0.05596243681688546 +190715,953.5750000092092,-0.05596234355943993 +190716,953.5800000092094,-0.05596225032095697 +190717,953.5850000092095,-0.0559621571014321 +190718,953.5900000092096,-0.055962063900860844 +190719,953.5950000092097,-0.05596197071923871 +190720,953.6000000092098,-0.05596187755656121 +190721,953.6050000092099,-0.05596178441282387 +190722,953.61000000921,-0.055961691288022225 +190723,953.6150000092101,-0.05596159818215176 +190724,953.6200000092102,-0.055961505095208024 +190725,953.6250000092103,-0.055961412027186526 +190726,953.6300000092104,-0.055961318978082805 +190727,953.6350000092106,-0.05596122594789236 +190728,953.6400000092107,-0.05596113293661072 +190729,953.6450000092108,-0.05596103994423344 +190730,953.6500000092109,-0.055960946970756 +190731,953.655000009211,-0.055960854016173955 +190732,953.6600000092111,-0.055960761080482826 +190733,953.6650000092112,-0.05596066816367814 +190734,953.6700000092113,-0.05596057526575542 +190735,953.6750000092114,-0.05596048238671021 +190736,953.6800000092115,-0.05596038952653803 +190737,953.6850000092116,-0.05596029668523441 +190738,953.6900000092118,-0.055960203862794884 +190739,953.6950000092119,-0.055960111059214994 +190740,953.700000009212,-0.05596001827449027 +190741,953.7050000092121,-0.055959925508616226 +190742,953.7100000092122,-0.05595983276158842 +190743,953.7150000092123,-0.055959740033402386 +190744,953.7200000092124,-0.055959647324053646 +190745,953.7250000092125,-0.055959554633537766 +190746,953.7300000092126,-0.055959461961850254 +190747,953.7350000092127,-0.055959369308986665 +190748,953.7400000092128,-0.05595927667494253 +190749,953.745000009213,-0.055959184059713396 +190750,953.7500000092131,-0.0559590914632948 +190751,953.7550000092132,-0.055958998885682294 +190752,953.7600000092133,-0.055958906326871415 +190753,953.7650000092134,-0.05595881378685771 +190754,953.7700000092135,-0.05595872126563671 +190755,953.7750000092136,-0.055958628763203976 +190756,953.7800000092137,-0.05595853627955505 +190757,953.7850000092138,-0.05595844381468547 +190758,953.7900000092139,-0.055958351368590786 +190759,953.795000009214,-0.05595825894126657 +190760,953.8000000092142,-0.05595816653270833 +190761,953.8050000092143,-0.05595807414291166 +190762,953.8100000092144,-0.055957981771872084 +190763,953.8150000092145,-0.05595788941958516 +190764,953.8200000092146,-0.055957797086046444 +190765,953.8250000092147,-0.05595770477125147 +190766,953.8300000092148,-0.05595761247519582 +190767,953.8350000092149,-0.05595752019787504 +190768,953.840000009215,-0.05595742793928469 +190769,953.8450000092151,-0.055957335699420296 +190770,953.8500000092153,-0.05595724347827745 +190771,953.8550000092154,-0.0559571512758517 +190772,953.8600000092155,-0.055957059092138606 +190773,953.8650000092156,-0.05595696692713372 +190774,953.8700000092157,-0.05595687478083261 +190775,953.8750000092158,-0.055956782653230834 +190776,953.8800000092159,-0.055956690544323964 +190777,953.885000009216,-0.05595659845410755 +190778,953.8900000092161,-0.05595650638257716 +190779,953.8950000092162,-0.055956414329728345 +190780,953.9000000092163,-0.05595632229555669 +190781,953.9050000092165,-0.05595623028005775 +190782,953.9100000092166,-0.055956138283227104 +190783,953.9150000092167,-0.05595604630506031 +190784,953.9200000092168,-0.05595595434555294 +190785,953.9250000092169,-0.05595586240470055 +190786,953.930000009217,-0.05595577048249872 +190787,953.9350000092171,-0.05595567857894302 +190788,953.9400000092172,-0.05595558669402902 +190789,953.9450000092173,-0.055955494827752306 +190790,953.9500000092174,-0.05595540298010843 +190791,953.9550000092175,-0.055955311151092986 +190792,953.9600000092177,-0.05595521934070154 +190793,953.9650000092178,-0.05595512754892965 +190794,953.9700000092179,-0.05595503577577291 +190795,953.975000009218,-0.05595494402122691 +190796,953.9800000092181,-0.0559548522852872 +190797,953.9850000092182,-0.05595476056794938 +190798,953.9900000092183,-0.055954668869209 +190799,953.9950000092184,-0.05595457718906167 +190800,954.0000000092185,-0.055954485527502956 +190801,954.0050000092186,-0.05595439388452844 +190802,954.0100000092187,-0.05595430226013372 +190803,954.0150000092189,-0.055954210654314364 +190804,954.020000009219,-0.05595411906706596 +190805,954.0250000092191,-0.055954027498384094 +190806,954.0300000092192,-0.05595393594826436 +190807,954.0350000092193,-0.05595384441670233 +190808,954.0400000092194,-0.05595375290369359 +190809,954.0450000092195,-0.05595366140923373 +190810,954.0500000092196,-0.05595356993331835 +190811,954.0550000092197,-0.05595347847594303 +190812,954.0600000092198,-0.05595338703710337 +190813,954.06500000922,-0.05595329561679495 +190814,954.07000000922,-0.05595320421501336 +190815,954.0750000092202,-0.0559531128317542 +190816,954.0800000092203,-0.05595302146701306 +190817,954.0850000092204,-0.05595293012078554 +190818,954.0900000092205,-0.05595283879306723 +190819,954.0950000092206,-0.05595274748385371 +190820,954.1000000092207,-0.05595265619314061 +190821,954.1050000092208,-0.05595256492092351 +190822,954.1100000092209,-0.055952473667197994 +190823,954.115000009221,-0.05595238243195968 +190824,954.1200000092211,-0.05595229121520417 +190825,954.1250000092213,-0.05595220001692705 +190826,954.1300000092214,-0.05595210883712393 +190827,954.1350000092215,-0.055952017675790416 +190828,954.1400000092216,-0.0559519265329221 +190829,954.1450000092217,-0.055951835408514596 +190830,954.1500000092218,-0.0559517443025635 +190831,954.1550000092219,-0.055951653215064415 +190832,954.160000009222,-0.05595156214601295 +190833,954.1650000092221,-0.055951471095404715 +190834,954.1700000092222,-0.05595138006323532 +190835,954.1750000092223,-0.05595128904950036 +190836,954.1800000092225,-0.05595119805419546 +190837,954.1850000092226,-0.05595110707731622 +190838,954.1900000092227,-0.05595101611885826 +190839,954.1950000092228,-0.05595092517881719 +190840,954.2000000092229,-0.0559508342571886 +190841,954.205000009223,-0.05595074335396814 +190842,954.2100000092231,-0.055950652469151395 +190843,954.2150000092232,-0.055950561602733984 +190844,954.2200000092233,-0.05595047075471153 +190845,954.2250000092234,-0.055950379925079646 +190846,954.2300000092235,-0.05595028911383395 +190847,954.2350000092237,-0.05595019832097005 +190848,954.2400000092238,-0.05595010754648358 +190849,954.2450000092239,-0.05595001679037014 +190850,954.250000009224,-0.05594992605262537 +190851,954.2550000092241,-0.05594983533324488 +190852,954.2600000092242,-0.055949744632224296 +190853,954.2650000092243,-0.05594965394955924 +190854,954.2700000092244,-0.05594956328524532 +190855,954.2750000092245,-0.055949472639278186 +190856,954.2800000092246,-0.05594938201165344 +190857,954.2850000092247,-0.05594929140236673 +190858,954.2900000092249,-0.05594920081141366 +190859,954.295000009225,-0.05594911023878987 +190860,954.3000000092251,-0.05594901968449098 +190861,954.3050000092252,-0.05594892914851262 +190862,954.3100000092253,-0.05594883863085042 +190863,954.3150000092254,-0.05594874813150001 +190864,954.3200000092255,-0.05594865765045702 +190865,954.3250000092256,-0.05594856718771709 +190866,954.3300000092257,-0.05594847674327585 +190867,954.3350000092258,-0.05594838631712892 +190868,954.340000009226,-0.05594829590927195 +190869,954.345000009226,-0.05594820551970057 +190870,954.3500000092262,-0.05594811514841041 +190871,954.3550000092263,-0.0559480247953971 +190872,954.3600000092264,-0.0559479344606563 +190873,954.3650000092265,-0.05594784414418362 +190874,954.3700000092266,-0.05594775384597472 +190875,954.3750000092267,-0.05594766356602523 +190876,954.3800000092268,-0.05594757330433079 +190877,954.3850000092269,-0.05594748306088705 +190878,954.390000009227,-0.05594739283568964 +190879,954.3950000092271,-0.05594730262873421 +190880,954.4000000092273,-0.0559472124400164 +190881,954.4050000092274,-0.055947122269531864 +190882,954.4100000092275,-0.055947032117276224 +190883,954.4150000092276,-0.05594694198324514 +190884,954.4200000092277,-0.05594685186743426 +190885,954.4250000092278,-0.05594676176983923 +190886,954.4300000092279,-0.05594667169045569 +190887,954.435000009228,-0.0559465816292793 +190888,954.4400000092281,-0.0559464915863057 +190889,954.4450000092282,-0.05594640156153054 +190890,954.4500000092283,-0.055946311554949474 +190891,954.4550000092285,-0.055946221566558166 +190892,954.4600000092286,-0.05594613159635225 +190893,954.4650000092287,-0.05594604164432738 +190894,954.4700000092288,-0.055945951710479225 +190895,954.4750000092289,-0.05594586179480344 +190896,954.480000009229,-0.05594577189729566 +190897,954.4850000092291,-0.055945682017951553 +190898,954.4900000092292,-0.05594559215676678 +190899,954.4950000092293,-0.055945502313736996 +190900,954.5000000092294,-0.05594541248885786 +190901,954.5050000092295,-0.05594532268212502 +190902,954.5100000092297,-0.055945232893534154 +190903,954.5150000092298,-0.05594514312308092 +190904,954.5200000092299,-0.05594505337076097 +190905,954.52500000923,-0.055944963636569985 +190906,954.5300000092301,-0.055944873920503596 +190907,954.5350000092302,-0.055944784222557505 +190908,954.5400000092303,-0.055944694542727345 +190909,954.5450000092304,-0.0559446048810088 +190910,954.5500000092305,-0.055944515237397525 +190911,954.5550000092306,-0.055944425611889205 +190912,954.5600000092307,-0.055944336004479484 +190913,954.5650000092309,-0.055944246415164045 +190914,954.570000009231,-0.05594415684393856 +190915,954.5750000092311,-0.0559440672907987 +190916,954.5800000092312,-0.05594397775574012 +190917,954.5850000092313,-0.0559438882387585 +190918,954.5900000092314,-0.055943798739849525 +190919,954.5950000092315,-0.05594370925900886 +190920,954.6000000092316,-0.05594361979623217 +190921,954.6050000092317,-0.055943530351515135 +190922,954.6100000092318,-0.055943440924853434 +190923,954.615000009232,-0.055943351516242745 +190924,954.6200000092321,-0.055943262125678746 +190925,954.6250000092322,-0.0559431727531571 +190926,954.6300000092323,-0.05594308339867351 +190927,954.6350000092324,-0.05594299406222363 +190928,954.6400000092325,-0.055942904743803167 +190929,954.6450000092326,-0.05594281544340778 +190930,954.6500000092327,-0.055942726161033164 +190931,954.6550000092328,-0.055942636896675 +190932,954.6600000092329,-0.05594254765032896 +190933,954.665000009233,-0.055942458421990734 +190934,954.6700000092331,-0.05594236921165602 +190935,954.6750000092333,-0.05594228001932048 +190936,954.6800000092334,-0.055942190844979804 +190937,954.6850000092335,-0.05594210168862971 +190938,954.6900000092336,-0.055942012550265846 +190939,954.6950000092337,-0.05594192342988392 +190940,954.7000000092338,-0.055941834327479616 +190941,954.7050000092339,-0.05594174524304863 +190942,954.710000009234,-0.05594165617658665 +190943,954.7150000092341,-0.05594156712808938 +190944,954.7200000092342,-0.05594147809755249 +190945,954.7250000092343,-0.05594138908497169 +190946,954.7300000092345,-0.05594130009034266 +190947,954.7350000092346,-0.05594121111366111 +190948,954.7400000092347,-0.05594112215492272 +190949,954.7450000092348,-0.05594103321412321 +190950,954.7500000092349,-0.055940944291258246 +190951,954.755000009235,-0.05594085538632355 +190952,954.7600000092351,-0.05594076649931482 +190953,954.7650000092352,-0.05594067763022774 +190954,954.7700000092353,-0.05594058877905802 +190955,954.7750000092354,-0.05594049994580135 +190956,954.7800000092356,-0.055940411130453456 +190957,954.7850000092357,-0.055940322333010016 +190958,954.7900000092358,-0.055940233553466744 +190959,954.7950000092359,-0.055940144791819336 +190960,954.800000009236,-0.05594005604806351 +190961,954.8050000092361,-0.05593996732219496 +190962,954.8100000092362,-0.055939878614209404 +190963,954.8150000092363,-0.05593978992410254 +190964,954.8200000092364,-0.055939701251870075 +190965,954.8250000092365,-0.05593961259750772 +190966,954.8300000092366,-0.05593952396101119 +190967,954.8350000092368,-0.055939435342376186 +190968,954.8400000092369,-0.05593934674159843 +190969,954.845000009237,-0.05593925815867363 +190970,954.8500000092371,-0.05593916959359749 +190971,954.8550000092372,-0.05593908104636572 +190972,954.8600000092373,-0.05593899251697404 +190973,954.8650000092374,-0.05593890400541817 +190974,954.8700000092375,-0.05593881551169382 +190975,954.8750000092376,-0.05593872703579672 +190976,954.8800000092377,-0.05593863857772257 +190977,954.8850000092378,-0.05593855013746709 +190978,954.890000009238,-0.055938461715026 +190979,954.8950000092381,-0.05593837331039502 +190980,954.9000000092382,-0.055938284923569885 +190981,954.9050000092383,-0.05593819655454628 +190982,954.9100000092384,-0.05593810820331996 +190983,954.9150000092385,-0.055938019869886633 +190984,954.9200000092386,-0.05593793155424203 +190985,954.9250000092387,-0.055937843256381854 +190986,954.9300000092388,-0.055937754976301865 +190987,954.9350000092389,-0.05593766671399776 +190988,954.940000009239,-0.05593757846946527 +190989,954.9450000092392,-0.05593749024270012 +190990,954.9500000092393,-0.05593740203369805 +190991,954.9550000092394,-0.05593731384245479 +190992,954.9600000092395,-0.05593722566896605 +190993,954.9650000092396,-0.05593713751322757 +190994,954.9700000092397,-0.055937049375235075 +190995,954.9750000092398,-0.05593696125498431 +190996,954.9800000092399,-0.05593687315247099 +190997,954.98500000924,-0.055936785067690876 +190998,954.9900000092401,-0.05593669700063967 +190999,954.9950000092402,-0.05593660895131312 +191000,955.0000000092404,-0.05593652091970697 +191001,955.0050000092405,-0.055936432905816943 +191002,955.0100000092406,-0.05593634490963878 +191003,955.0150000092407,-0.055936256931168216 +191004,955.0200000092408,-0.05593616897040098 +191005,955.0250000092409,-0.055936081027332836 +191006,955.030000009241,-0.055935993101959514 +191007,955.0350000092411,-0.05593590519427674 +191008,955.0400000092412,-0.05593581730428028 +191009,955.0450000092413,-0.055935729431965855 +191010,955.0500000092414,-0.055935641577329206 +191011,955.0550000092416,-0.05593555374036609 +191012,955.0600000092417,-0.05593546592107225 +191013,955.0650000092418,-0.05593537811944343 +191014,955.0700000092419,-0.055935290335475375 +191015,955.075000009242,-0.055935202569163824 +191016,955.0800000092421,-0.05593511482050454 +191017,955.0850000092422,-0.055935027089493244 +191018,955.0900000092423,-0.05593493937612571 +191019,955.0950000092424,-0.05593485168039768 +191020,955.1000000092425,-0.05593476400230492 +191021,955.1050000092426,-0.05593467634184316 +191022,955.1100000092428,-0.05593458869900816 +191023,955.1150000092429,-0.05593450107379566 +191024,955.120000009243,-0.055934413466201434 +191025,955.1250000092431,-0.05593432587622123 +191026,955.1300000092432,-0.05593423830385079 +191027,955.1350000092433,-0.05593415074908587 +191028,955.1400000092434,-0.05593406321192225 +191029,955.1450000092435,-0.05593397569235568 +191030,955.1500000092436,-0.05593388819038189 +191031,955.1550000092437,-0.05593380070599668 +191032,955.1600000092438,-0.05593371323919577 +191033,955.165000009244,-0.05593362578997494 +191034,955.1700000092441,-0.055933538358329954 +191035,955.1750000092442,-0.05593345094425658 +191036,955.1800000092443,-0.05593336354775056 +191037,955.1850000092444,-0.055933276168807666 +191038,955.1900000092445,-0.055933188807423664 +191039,955.1950000092446,-0.055933101463594315 +191040,955.2000000092447,-0.0559330141373154 +191041,955.2050000092448,-0.05593292682858267 +191042,955.2100000092449,-0.055932839537391886 +191043,955.215000009245,-0.05593275226373884 +191044,955.2200000092452,-0.055932665007619266 +191045,955.2250000092453,-0.055932577769028956 +191046,955.2300000092454,-0.05593249054796368 +191047,955.2350000092455,-0.055932403344419214 +191048,955.2400000092456,-0.05593231615839132 +191049,955.2450000092457,-0.05593222898987575 +191050,955.2500000092458,-0.05593214183886832 +191051,955.2550000092459,-0.055932054705364775 +191052,955.260000009246,-0.05593196758936089 +191053,955.2650000092461,-0.055931880490852466 +191054,955.2700000092462,-0.05593179340983525 +191055,955.2750000092464,-0.055931706346305024 +191056,955.2800000092465,-0.055931619300257564 +191057,955.2850000092466,-0.05593153227168867 +191058,955.2900000092467,-0.055931445260594105 +191059,955.2950000092468,-0.05593135826696964 +191060,955.3000000092469,-0.05593127129081107 +191061,955.305000009247,-0.05593118433211417 +191062,955.3100000092471,-0.05593109739087473 +191063,955.3150000092472,-0.05593101046708852 +191064,955.3200000092473,-0.05593092356075133 +191065,955.3250000092474,-0.05593083667185894 +191066,955.3300000092476,-0.055930749800407145 +191067,955.3350000092477,-0.05593066294639172 +191068,955.3400000092478,-0.05593057610980847 +191069,955.3450000092479,-0.055930489290653154 +191070,955.350000009248,-0.05593040248892159 +191071,955.3550000092481,-0.05593031570460954 +191072,955.3600000092482,-0.055930228937712816 +191073,955.3650000092483,-0.05593014218822719 +191074,955.3700000092484,-0.055930055456148466 +191075,955.3750000092485,-0.055929968741472436 +191076,955.3800000092486,-0.055929882044194884 +191077,955.3850000092488,-0.055929795364311606 +191078,955.3900000092489,-0.0559297087018184 +191079,955.395000009249,-0.05592962205671106 +191080,955.4000000092491,-0.05592953542898538 +191081,955.4050000092492,-0.055929448818637144 +191082,955.4100000092493,-0.05592936222566216 +191083,955.4150000092494,-0.05592927565005624 +191084,955.4200000092495,-0.055929189091815164 +191085,955.4250000092496,-0.05592910255093473 +191086,955.4300000092497,-0.05592901602741075 +191087,955.4350000092498,-0.055928929521239026 +191088,955.44000000925,-0.05592884303241536 +191089,955.4450000092501,-0.055928756560935544 +191090,955.4500000092502,-0.05592867010679538 +191091,955.4550000092503,-0.05592858366999067 +191092,955.4600000092504,-0.05592849725051724 +191093,955.4650000092505,-0.05592841084837087 +191094,955.4700000092506,-0.05592832446354738 +191095,955.4750000092507,-0.055928238096042575 +191096,955.4800000092508,-0.055928151745852264 +191097,955.4850000092509,-0.055928065412972246 +191098,955.490000009251,-0.055927979097398335 +191099,955.4950000092512,-0.05592789279912634 +191100,955.5000000092513,-0.05592780651815208 +191101,955.5050000092514,-0.055927720254471354 +191102,955.5100000092515,-0.05592763400807999 +191103,955.5150000092516,-0.05592754777897379 +191104,955.5200000092517,-0.05592746156714857 +191105,955.5250000092518,-0.05592737537260014 +191106,955.5300000092519,-0.055927289195324324 +191107,955.535000009252,-0.055927203035316925 +191108,955.5400000092521,-0.055927116892573764 +191109,955.5450000092522,-0.05592703076709066 +191110,955.5500000092524,-0.055926944658863435 +191111,955.5550000092525,-0.055926858567887906 +191112,955.5600000092526,-0.05592677249415989 +191113,955.5650000092527,-0.055926686437675205 +191114,955.5700000092528,-0.05592660039842967 +191115,955.5750000092529,-0.05592651437641912 +191116,955.580000009253,-0.05592642837163938 +191117,955.5850000092531,-0.05592634238408625 +191118,955.5900000092532,-0.055926256413755565 +191119,955.5950000092533,-0.05592617046064317 +191120,955.6000000092534,-0.05592608452474485 +191121,955.6050000092536,-0.055925998606056467 +191122,955.6100000092537,-0.05592591270457383 +191123,955.6150000092538,-0.05592582682029277 +191124,955.6200000092539,-0.05592574095320912 +191125,955.625000009254,-0.055925655103318705 +191126,955.6300000092541,-0.05592556927061736 +191127,955.6350000092542,-0.055925483455100906 +191128,955.6400000092543,-0.05592539765676517 +191129,955.6450000092544,-0.055925311875606 +191130,955.6500000092545,-0.05592522611161922 +191131,955.6550000092546,-0.05592514036480068 +191132,955.6600000092548,-0.055925054635146194 +191133,955.6650000092549,-0.05592496892265161 +191134,955.670000009255,-0.05592488322731276 +191135,955.6750000092551,-0.05592479754912547 +191136,955.6800000092552,-0.0559247118880856 +191137,955.6850000092553,-0.05592462624418896 +191138,955.6900000092554,-0.055924540617431406 +191139,955.6950000092555,-0.05592445500780877 +191140,955.7000000092556,-0.05592436941531691 +191141,955.7050000092557,-0.05592428383995164 +191142,955.7100000092559,-0.055924198281708824 +191143,955.715000009256,-0.05592411274058431 +191144,955.7200000092561,-0.05592402721657392 +191145,955.7250000092562,-0.0559239417096735 +191146,955.7300000092563,-0.0559238562198789 +191147,955.7350000092564,-0.05592377074718597 +191148,955.7400000092565,-0.05592368529159056 +191149,955.7450000092566,-0.05592359985308851 +191150,955.7500000092567,-0.055923514431675654 +191151,955.7550000092568,-0.055923429027347864 +191152,955.7600000092569,-0.05592334364010098 +191153,955.765000009257,-0.05592325826993086 +191154,955.7700000092572,-0.05592317291683334 +191155,955.7750000092573,-0.055923087580804276 +191156,955.7800000092574,-0.05592300226183953 +191157,955.7850000092575,-0.05592291695993494 +191158,955.7900000092576,-0.055922831675086375 +191159,955.7950000092577,-0.05592274640728967 +191160,955.8000000092578,-0.05592266115654069 +191161,955.8050000092579,-0.055922575922835296 +191162,955.810000009258,-0.055922490706169344 +191163,955.8150000092581,-0.05592240550653868 +191164,955.8200000092583,-0.05592232032393918 +191165,955.8250000092584,-0.05592223515836669 +191166,955.8300000092585,-0.055922150009817075 +191167,955.8350000092586,-0.055922064878286194 +191168,955.8400000092587,-0.05592197976376991 +191169,955.8450000092588,-0.05592189466626408 +191170,955.8500000092589,-0.05592180958576458 +191171,955.855000009259,-0.055921724522267256 +191172,955.8600000092591,-0.055921639475767976 +191173,955.8650000092592,-0.05592155444626261 +191174,955.8700000092593,-0.05592146943374702 +191175,955.8750000092595,-0.05592138443821708 +191176,955.8800000092596,-0.055921299459668644 +191177,955.8850000092597,-0.05592121449809759 +191178,955.8900000092598,-0.05592112955349977 +191179,955.8950000092599,-0.05592104462587108 +191180,955.90000000926,-0.05592095971520738 +191181,955.9050000092601,-0.055920874821504526 +191182,955.9100000092602,-0.055920789944758395 +191183,955.9150000092603,-0.05592070508496488 +191184,955.9200000092604,-0.05592062024211983 +191185,955.9250000092605,-0.05592053541621912 +191186,955.9300000092607,-0.05592045060725864 +191187,955.9350000092608,-0.05592036581523426 +191188,955.9400000092609,-0.05592028104014186 +191189,955.945000009261,-0.0559201962819773 +191190,955.9500000092611,-0.05592011154073646 +191191,955.9550000092612,-0.05592002681641523 +191192,955.9600000092613,-0.05591994210900948 +191193,955.9650000092614,-0.055919857418515094 +191194,955.9700000092615,-0.05591977274492795 +191195,955.9750000092616,-0.05591968808824393 +191196,955.9800000092617,-0.055919603448458914 +191197,955.9850000092619,-0.0559195188255688 +191198,955.990000009262,-0.05591943421956946 +191199,955.9950000092621,-0.05591934963045676 +191200,956.0000000092622,-0.055919265058226614 +191201,956.0050000092623,-0.05591918050287488 +191202,956.0100000092624,-0.055919095964397474 +191203,956.0150000092625,-0.055919011442790253 +191204,956.0200000092626,-0.055918926938049125 +191205,956.0250000092627,-0.055918842450169974 +191206,956.0300000092628,-0.05591875797914868 +191207,956.035000009263,-0.055918673524981144 +191208,956.040000009263,-0.05591858908766325 +191209,956.0450000092632,-0.0559185046671909 +191210,956.0500000092633,-0.05591842026355998 +191211,956.0550000092634,-0.05591833587676638 +191212,956.0600000092635,-0.05591825150680599 +191213,956.0650000092636,-0.0559181671536747 +191214,956.0700000092637,-0.05591808281736843 +191215,956.0750000092638,-0.05591799849788305 +191216,956.0800000092639,-0.05591791419521447 +191217,956.085000009264,-0.05591782990935858 +191218,956.0900000092641,-0.05591774564031128 +191219,956.0950000092643,-0.05591766138806847 +191220,956.1000000092644,-0.055917577152626054 +191221,956.1050000092645,-0.05591749293397993 +191222,956.1100000092646,-0.055917408732125994 +191223,956.1150000092647,-0.05591732454706015 +191224,956.1200000092648,-0.055917240378778287 +191225,956.1250000092649,-0.05591715622727634 +191226,956.130000009265,-0.05591707209255019 +191227,956.1350000092651,-0.055916987974595746 +191228,956.1400000092652,-0.0559169038734089 +191229,956.1450000092653,-0.05591681978898558 +191230,956.1500000092655,-0.055916735721321685 +191231,956.1550000092656,-0.05591665167041312 +191232,956.1600000092657,-0.05591656763625579 +191233,956.1650000092658,-0.05591648361884562 +191234,956.1700000092659,-0.05591639961817851 +191235,956.175000009266,-0.055916315634250355 +191236,956.1800000092661,-0.05591623166705708 +191237,956.1850000092662,-0.055916147716594596 +191238,956.1900000092663,-0.055916063782858814 +191239,956.1950000092664,-0.05591597986584566 +191240,956.2000000092665,-0.05591589596555103 +191241,956.2050000092667,-0.05591581208197084 +191242,956.2100000092668,-0.055915728215101025 +191243,956.2150000092669,-0.055915644364937477 +191244,956.220000009267,-0.05591556053147613 +191245,956.2250000092671,-0.0559154767147129 +191246,956.2300000092672,-0.05591539291464369 +191247,956.2350000092673,-0.05591530913126444 +191248,956.2400000092674,-0.05591522536457106 +191249,956.2450000092675,-0.05591514161455946 +191250,956.2500000092676,-0.05591505788122558 +191251,956.2550000092677,-0.05591497416456534 +191252,956.2600000092679,-0.055914890464574644 +191253,956.265000009268,-0.055914806781249424 +191254,956.2700000092681,-0.05591472311458561 +191255,956.2750000092682,-0.05591463946457914 +191256,956.2800000092683,-0.05591455583122591 +191257,956.2850000092684,-0.05591447221452188 +191258,956.2900000092685,-0.055914388614462955 +191259,956.2950000092686,-0.05591430503104506 +191260,956.3000000092687,-0.055914221464264134 +191261,956.3050000092688,-0.0559141379141161 +191262,956.310000009269,-0.0559140543805969 +191263,956.315000009269,-0.05591397086370244 +191264,956.3200000092692,-0.055913887363428685 +191265,956.3250000092693,-0.05591380387977154 +191266,956.3300000092694,-0.05591372041272695 +191267,956.3350000092695,-0.05591363696229084 +191268,956.3400000092696,-0.05591355352845916 +191269,956.3450000092697,-0.05591347011122784 +191270,956.3500000092698,-0.0559133867105928 +191271,956.3550000092699,-0.05591330332654999 +191272,956.36000000927,-0.05591321995909536 +191273,956.3650000092701,-0.05591313660822482 +191274,956.3700000092703,-0.055913053273934324 +191275,956.3750000092704,-0.05591296995621981 +191276,956.3800000092705,-0.05591288665507723 +191277,956.3850000092706,-0.0559128033705025 +191278,956.3900000092707,-0.05591272010249159 +191279,956.3950000092708,-0.05591263685104042 +191280,956.4000000092709,-0.05591255361614494 +191281,956.405000009271,-0.05591247039780109 +191282,956.4100000092711,-0.05591238719600483 +191283,956.4150000092712,-0.0559123040107521 +191284,956.4200000092713,-0.05591222084203883 +191285,956.4250000092715,-0.05591213768986099 +191286,956.4300000092716,-0.05591205455421451 +191287,956.4350000092717,-0.05591197143509534 +191288,956.4400000092718,-0.05591188833249943 +191289,956.4450000092719,-0.055911805246422745 +191290,956.450000009272,-0.05591172217686122 +191291,956.4550000092721,-0.0559116391238108 +191292,956.4600000092722,-0.05591155608726746 +191293,956.4650000092723,-0.05591147306722714 +191294,956.4700000092724,-0.05591139006368577 +191295,956.4750000092725,-0.05591130707663935 +191296,956.4800000092727,-0.0559112241060838 +191297,956.4850000092728,-0.05591114115201508 +191298,956.4900000092729,-0.05591105821442916 +191299,956.495000009273,-0.055910975293322 +191300,956.5000000092731,-0.055910892388689536 +191301,956.5050000092732,-0.055910809500527736 +191302,956.5100000092733,-0.05591072662883256 +191303,956.5150000092734,-0.055910643773599986 +191304,956.5200000092735,-0.05591056093482595 +191305,956.5250000092736,-0.05591047811250643 +191306,956.5300000092737,-0.05591039530663737 +191307,956.5350000092739,-0.05591031251721473 +191308,956.540000009274,-0.0559102297442345 +191309,956.5450000092741,-0.05591014698769263 +191310,956.5500000092742,-0.05591006424758509 +191311,956.5550000092743,-0.05590998152390782 +191312,956.5600000092744,-0.055909898816656825 +191313,956.5650000092745,-0.055909816125828043 +191314,956.5700000092746,-0.055909733451417455 +191315,956.5750000092747,-0.05590965079342102 +191316,956.5800000092748,-0.05590956815183472 +191317,956.585000009275,-0.05590948552665452 +191318,956.5900000092751,-0.05590940291787639 +191319,956.5950000092752,-0.05590932032549631 +191320,956.6000000092753,-0.05590923774951024 +191321,956.6050000092754,-0.05590915518991415 +191322,956.6100000092755,-0.05590907264670402 +191323,956.6150000092756,-0.05590899011987582 +191324,956.6200000092757,-0.05590890760942554 +191325,956.6250000092758,-0.05590882511534915 +191326,956.6300000092759,-0.0559087426376426 +191327,956.635000009276,-0.05590866017630191 +191328,956.6400000092762,-0.055908577731323024 +191329,956.6450000092763,-0.055908495302701935 +191330,956.6500000092764,-0.05590841289043463 +191331,956.6550000092765,-0.05590833049451707 +191332,956.6600000092766,-0.055908248114945255 +191333,956.6650000092767,-0.055908165751715144 +191334,956.6700000092768,-0.05590808340482275 +191335,956.6750000092769,-0.055908001074264024 +191336,956.680000009277,-0.05590791876003497 +191337,956.6850000092771,-0.05590783646213157 +191338,956.6900000092772,-0.0559077541805498 +191339,956.6950000092774,-0.055907671915285666 +191340,956.7000000092775,-0.05590758966633513 +191341,956.7050000092776,-0.05590750743369418 +191342,956.7100000092777,-0.05590742521735882 +191343,956.7150000092778,-0.055907343017325035 +191344,956.7200000092779,-0.05590726083358881 +191345,956.725000009278,-0.05590717866614614 +191346,956.7300000092781,-0.05590709651499302 +191347,956.7350000092782,-0.05590701438012542 +191348,956.7400000092783,-0.05590693226153935 +191349,956.7450000092784,-0.0559068501592308 +191350,956.7500000092786,-0.055906768073195764 +191351,956.7550000092787,-0.05590668600343024 +191352,956.7600000092788,-0.05590660394993022 +191353,956.7650000092789,-0.05590652191269169 +191354,956.770000009279,-0.055906439891710666 +191355,956.7750000092791,-0.05590635788698313 +191356,956.7800000092792,-0.05590627589850509 +191357,956.7850000092793,-0.05590619392627254 +191358,956.7900000092794,-0.055906111970281475 +191359,956.7950000092795,-0.0559060300305279 +191360,956.8000000092796,-0.055905948107007816 +191361,956.8050000092798,-0.05590586619971723 +191362,956.8100000092799,-0.05590578430865213 +191363,956.81500000928,-0.05590570243380853 +191364,956.8200000092801,-0.055905620575182426 +191365,956.8250000092802,-0.05590553873276983 +191366,956.8300000092803,-0.055905456906566744 +191367,956.8350000092804,-0.055905375096569176 +191368,956.8400000092805,-0.055905293302773135 +191369,956.8450000092806,-0.05590521152517462 +191370,956.8500000092807,-0.05590512976376965 +191371,956.8550000092808,-0.055905048018554226 +191372,956.860000009281,-0.05590496628952437 +191373,956.8650000092811,-0.05590488457667607 +191374,956.8700000092812,-0.05590480288000535 +191375,956.8750000092813,-0.05590472119950822 +191376,956.8800000092814,-0.05590463953518069 +191377,956.8850000092815,-0.055904557887018785 +191378,956.8900000092816,-0.05590447625501851 +191379,956.8950000092817,-0.055904394639175875 +191380,956.9000000092818,-0.05590431303948691 +191381,956.9050000092819,-0.05590423145594761 +191382,956.910000009282,-0.055904149888554 +191383,956.9150000092822,-0.05590406833730211 +191384,956.9200000092823,-0.055903986802187944 +191385,956.9250000092824,-0.055903905283207524 +191386,956.9300000092825,-0.055903823780356875 +191387,956.9350000092826,-0.05590374229363201 +191388,956.9400000092827,-0.055903660823028944 +191389,956.9450000092828,-0.05590357936854372 +191390,956.9500000092829,-0.05590349793017234 +191391,956.955000009283,-0.055903416507910836 +191392,956.9600000092831,-0.055903335101755235 +191393,956.9650000092832,-0.05590325371170155 +191394,956.9700000092834,-0.05590317233774582 +191395,956.9750000092835,-0.05590309097988406 +191396,956.9800000092836,-0.055903009638112296 +191397,956.9850000092837,-0.05590292831242657 +191398,956.9900000092838,-0.05590284700282289 +191399,956.9950000092839,-0.055902765709297315 +191400,957.000000009284,-0.055902684431845845 +191401,957.0050000092841,-0.05590260317046452 +191402,957.0100000092842,-0.05590252192514937 +191403,957.0150000092843,-0.05590244069589643 +191404,957.0200000092844,-0.055902359482701725 +191405,957.0250000092846,-0.055902278285561297 +191406,957.0300000092847,-0.05590219710447117 +191407,957.0350000092848,-0.05590211593942739 +191408,957.0400000092849,-0.055902034790425985 +191409,957.045000009285,-0.055901953657463 +191410,957.0500000092851,-0.055901872540534456 +191411,957.0550000092852,-0.05590179143963641 +191412,957.0600000092853,-0.05590171035476489 +191413,957.0650000092854,-0.05590162928591593 +191414,957.0700000092855,-0.05590154823308558 +191415,957.0750000092856,-0.055901467196269865 +191416,957.0800000092858,-0.055901386175464834 +191417,957.0850000092859,-0.055901305170666535 +191418,957.090000009286,-0.055901224181871004 +191419,957.0950000092861,-0.05590114320907428 +191420,957.1000000092862,-0.05590106225227241 +191421,957.1050000092863,-0.05590098131146145 +191422,957.1100000092864,-0.055900900386637434 +191423,957.1150000092865,-0.055900819477796404 +191424,957.1200000092866,-0.05590073858493442 +191425,957.1250000092867,-0.0559006577080475 +191426,957.1300000092868,-0.05590057684713173 +191427,957.135000009287,-0.055900496002183137 +191428,957.1400000092871,-0.05590041517319777 +191429,957.1450000092872,-0.05590033436017169 +191430,957.1500000092873,-0.05590025356310093 +191431,957.1550000092874,-0.05590017278198157 +191432,957.1600000092875,-0.055900092016809635 +191433,957.1650000092876,-0.05590001126758119 +191434,957.1700000092877,-0.0558999305342923 +191435,957.1750000092878,-0.055899849816939 +191436,957.1800000092879,-0.05589976911551735 +191437,957.185000009288,-0.0558996884300234 +191438,957.1900000092882,-0.05589960776045324 +191439,957.1950000092883,-0.055899527106802877 +191440,957.2000000092884,-0.05589944646906841 +191441,957.2050000092885,-0.05589936584724588 +191442,957.2100000092886,-0.055899285241331344 +191443,957.2150000092887,-0.05589920465132086 +191444,957.2200000092888,-0.0558991240772105 +191445,957.2250000092889,-0.05589904351899632 +191446,957.230000009289,-0.055898962976674384 +191447,957.2350000092891,-0.05589888245024075 +191448,957.2400000092892,-0.055898801939691496 +191449,957.2450000092894,-0.05589872144502268 +191450,957.2500000092895,-0.055898640966230345 +191451,957.2550000092896,-0.05589856050331058 +191452,957.2600000092897,-0.05589848005625945 +191453,957.2650000092898,-0.055898399625073016 +191454,957.2700000092899,-0.055898319209747346 +191455,957.27500000929,-0.0558982388102785 +191456,957.2800000092901,-0.05589815842666256 +191457,957.2850000092902,-0.05589807805889561 +191458,957.2900000092903,-0.0558979977069737 +191459,957.2950000092904,-0.0558979173708929 +191460,957.3000000092906,-0.05589783705064929 +191461,957.3050000092907,-0.05589775674623894 +191462,957.3100000092908,-0.055897676457657926 +191463,957.3150000092909,-0.055897596184902316 +191464,957.320000009291,-0.05589751592796819 +191465,957.3250000092911,-0.055897435686851626 +191466,957.3300000092912,-0.0558973554615487 +191467,957.3350000092913,-0.05589727525205548 +191468,957.3400000092914,-0.05589719505836806 +191469,957.3450000092915,-0.05589711488048249 +191470,957.3500000092916,-0.055897034718394877 +191471,957.3550000092918,-0.055896954572101296 +191472,957.3600000092919,-0.05589687444159782 +191473,957.365000009292,-0.05589679432688052 +191474,957.3700000092921,-0.05589671422794551 +191475,957.3750000092922,-0.05589663414478885 +191476,957.3800000092923,-0.055896554077406624 +191477,957.3850000092924,-0.055896474025794916 +191478,957.3900000092925,-0.05589639398994981 +191479,957.3950000092926,-0.055896313969867405 +191480,957.4000000092927,-0.05589623396554379 +191481,957.4050000092928,-0.05589615397697503 +191482,957.410000009293,-0.05589607400415723 +191483,957.4150000092931,-0.055895994047086464 +191484,957.4200000092932,-0.05589591410575882 +191485,957.4250000092933,-0.0558958341801704 +191486,957.4300000092934,-0.05589575427031728 +191487,957.4350000092935,-0.055895674376195574 +191488,957.4400000092936,-0.055895594497801356 +191489,957.4450000092937,-0.055895514635130726 +191490,957.4500000092938,-0.055895434788179786 +191491,957.4550000092939,-0.055895354956944615 +191492,957.460000009294,-0.055895275141421306 +191493,957.4650000092942,-0.05589519534160597 +191494,957.4700000092943,-0.05589511555749468 +191495,957.4750000092944,-0.05589503578908355 +191496,957.4800000092945,-0.05589495603636867 +191497,957.4850000092946,-0.05589487629934614 +191498,957.4900000092947,-0.055894796578012065 +191499,957.4950000092948,-0.05589471687236254 +191500,957.5000000092949,-0.05589463718239367 +191501,957.505000009295,-0.055894557508101544 +191502,957.5100000092951,-0.055894477849482274 +191503,957.5150000092952,-0.05589439820653195 +191504,957.5200000092954,-0.05589431857924669 +191505,957.5250000092955,-0.055894238967622585 +191506,957.5300000092956,-0.05589415937165575 +191507,957.5350000092957,-0.0558940797913423 +191508,957.5400000092958,-0.0558940002266783 +191509,957.5450000092959,-0.05589392067765991 +191510,957.550000009296,-0.0558938411442832 +191511,957.5550000092961,-0.05589376162654429 +191512,957.5600000092962,-0.05589368212443928 +191513,957.5650000092963,-0.05589360263796429 +191514,957.5700000092965,-0.05589352316711543 +191515,957.5750000092966,-0.055893443711888806 +191516,957.5800000092967,-0.05589336427228054 +191517,957.5850000092968,-0.05589328484828673 +191518,957.5900000092969,-0.0558932054399035 +191519,957.595000009297,-0.055893126047126956 +191520,957.6000000092971,-0.055893046669953206 +191521,957.6050000092972,-0.05589296730837839 +191522,957.6100000092973,-0.055892887962398594 +191523,957.6150000092974,-0.05589280863200995 +191524,957.6200000092975,-0.05589272931720857 +191525,957.6250000092977,-0.055892650017990576 +191526,957.6300000092978,-0.055892570734352096 +191527,957.6350000092979,-0.05589249146628922 +191528,957.640000009298,-0.055892412213798086 +191529,957.6450000092981,-0.05589233297687481 +191530,957.6500000092982,-0.05589225375551553 +191531,957.6550000092983,-0.05589217454971636 +191532,957.6600000092984,-0.05589209535947342 +191533,957.6650000092985,-0.05589201618478282 +191534,957.6700000092986,-0.0558919370256407 +191535,957.6750000092987,-0.055891857882043185 +191536,957.6800000092989,-0.05589177875398639 +191537,957.685000009299,-0.055891699641466445 +191538,957.6900000092991,-0.05589162054447948 +191539,957.6950000092992,-0.055891541463021624 +191540,957.7000000092993,-0.055891462397089 +191541,957.7050000092994,-0.055891383346677745 +191542,957.7100000092995,-0.05589130431178398 +191543,957.7150000092996,-0.05589122529240385 +191544,957.7200000092997,-0.055891146288533464 +191545,957.7250000092998,-0.055891067300168955 +191546,957.7300000092999,-0.055890988327306476 +191547,957.7350000093,-0.05589090936994215 +191548,957.7400000093002,-0.05589083042807211 +191549,957.7450000093003,-0.05589075150169248 +191550,957.7500000093004,-0.05589067259079941 +191551,957.7550000093005,-0.05589059369538903 +191552,957.7600000093006,-0.05589051481545748 +191553,957.7650000093007,-0.0558904359510009 +191554,957.7700000093008,-0.05589035710201542 +191555,957.7750000093009,-0.055890278268497184 +191556,957.780000009301,-0.055890199450442324 +191557,957.7850000093011,-0.055890120647846986 +191558,957.7900000093013,-0.05589004186070731 +191559,957.7950000093014,-0.055889963089019445 +191560,957.8000000093015,-0.055889884332779534 +191561,957.8050000093016,-0.055889805591983706 +191562,957.8100000093017,-0.055889726866628096 +191563,957.8150000093018,-0.055889648156708875 +191564,957.8200000093019,-0.05588956946222217 +191565,957.825000009302,-0.05588949078316414 +191566,957.8300000093021,-0.05588941211953092 +191567,957.8350000093022,-0.05588933347131865 +191568,957.8400000093023,-0.0558892548385235 +191569,957.8450000093025,-0.0558891762211416 +191570,957.8500000093026,-0.05588909761916911 +191571,957.8550000093027,-0.055889019032602176 +191572,957.8600000093028,-0.05588894046143695 +191573,957.8650000093029,-0.05588886190566957 +191574,957.870000009303,-0.05588878336529621 +191575,957.8750000093031,-0.05588870484031301 +191576,957.8800000093032,-0.055888626330716125 +191577,957.8850000093033,-0.055888547836501705 +191578,957.8900000093034,-0.055888469357665914 +191579,957.8950000093035,-0.05588839089420491 +191580,957.9000000093037,-0.05588831244611483 +191581,957.9050000093038,-0.05588823401339184 +191582,957.9100000093039,-0.05588815559603211 +191583,957.915000009304,-0.05588807719403178 +191584,957.9200000093041,-0.05588799880738702 +191585,957.9250000093042,-0.05588792043609398 +191586,957.9300000093043,-0.05588784208014883 +191587,957.9350000093044,-0.05588776373954772 +191588,957.9400000093045,-0.05588768541428682 +191589,957.9450000093046,-0.0558876071043623 +191590,957.9500000093047,-0.05588752880977032 +191591,957.9550000093049,-0.055887450530507025 +191592,957.960000009305,-0.05588737226656859 +191593,957.9650000093051,-0.05588729401795119 +191594,957.9700000093052,-0.05588721578465098 +191595,957.9750000093053,-0.05588713756666412 +191596,957.9800000093054,-0.055887059363986795 +191597,957.9850000093055,-0.05588698117661517 +191598,957.9900000093056,-0.0558869030045454 +191599,957.9950000093057,-0.055886824847773665 +191600,958.0000000093058,-0.05588674670629614 +191601,958.005000009306,-0.055886668580108975 +191602,958.010000009306,-0.05588659046920836 +191603,958.0150000093062,-0.05588651237359045 +191604,958.0200000093063,-0.05588643429325143 +191605,958.0250000093064,-0.05588635622818747 +191606,958.0300000093065,-0.05588627817839475 +191607,958.0350000093066,-0.05588620014386945 +191608,958.0400000093067,-0.05588612212460772 +191609,958.0450000093068,-0.055886044120605764 +191610,958.0500000093069,-0.055885966131859734 +191611,958.055000009307,-0.05588588815836583 +191612,958.0600000093071,-0.05588581020012022 +191613,958.0650000093073,-0.055885732257119076 +191614,958.0700000093074,-0.05588565432935859 +191615,958.0750000093075,-0.05588557641683494 +191616,958.0800000093076,-0.0558854985195443 +191617,958.0850000093077,-0.055885420637482856 +191618,958.0900000093078,-0.05588534277064679 +191619,958.0950000093079,-0.055885264919032285 +191620,958.100000009308,-0.055885187082635526 +191621,958.1050000093081,-0.0558851092614527 +191622,958.1100000093082,-0.055885031455479975 +191623,958.1150000093083,-0.05588495366471356 +191624,958.1200000093085,-0.05588487588914963 +191625,958.1250000093086,-0.05588479812878437 +191626,958.1300000093087,-0.055884720383613966 +191627,958.1350000093088,-0.05588464265363463 +191628,958.1400000093089,-0.055884564938842515 +191629,958.145000009309,-0.05588448723923384 +191630,958.1500000093091,-0.055884409554804775 +191631,958.1550000093092,-0.05588433188555153 +191632,958.1600000093093,-0.05588425423147028 +191633,958.1650000093094,-0.055884176592557226 +191634,958.1700000093095,-0.05588409896880856 +191635,958.1750000093097,-0.05588402136022049 +191636,958.1800000093098,-0.055883943766789186 +191637,958.1850000093099,-0.05588386618851085 +191638,958.19000000931,-0.05588378862538169 +191639,958.1950000093101,-0.05588371107739789 +191640,958.2000000093102,-0.055883633544555666 +191641,958.2050000093103,-0.055883556026851196 +191642,958.2100000093104,-0.05588347852428069 +191643,958.2150000093105,-0.05588340103684034 +191644,958.2200000093106,-0.05588332356452635 +191645,958.2250000093107,-0.055883246107334916 +191646,958.2300000093109,-0.055883168665262245 +191647,958.235000009311,-0.055883091238304546 +191648,958.2400000093111,-0.055883013826458015 +191649,958.2450000093112,-0.05588293642971884 +191650,958.2500000093113,-0.055882859048083246 +191651,958.2550000093114,-0.05588278168154744 +191652,958.2600000093115,-0.05588270433010761 +191653,958.2650000093116,-0.05588262699375999 +191654,958.2700000093117,-0.055882549672500746 +191655,958.2750000093118,-0.05588247236632611 +191656,958.280000009312,-0.055882395075232294 +191657,958.2850000093121,-0.055882317799215514 +191658,958.2900000093122,-0.05588224053827196 +191659,958.2950000093123,-0.05588216329239785 +191660,958.3000000093124,-0.05588208606158939 +191661,958.3050000093125,-0.0558820088458428 +191662,958.3100000093126,-0.055881931645154294 +191663,958.3150000093127,-0.05588185445952008 +191664,958.3200000093128,-0.055881777288936375 +191665,958.3250000093129,-0.055881700133399395 +191666,958.330000009313,-0.05588162299290535 +191667,958.3350000093131,-0.055881545867450456 +191668,958.3400000093133,-0.055881468757030935 +191669,958.3450000093134,-0.05588139166164299 +191670,958.3500000093135,-0.055881314581282863 +191671,958.3550000093136,-0.055881237515946765 +191672,958.3600000093137,-0.0558811604656309 +191673,958.3650000093138,-0.055881083430331505 +191674,958.3700000093139,-0.055881006410044794 +191675,958.375000009314,-0.05588092940476699 +191676,958.3800000093141,-0.0558808524144943 +191677,958.3850000093142,-0.05588077543922297 +191678,958.3900000093143,-0.05588069847894921 +191679,958.3950000093145,-0.05588062153366926 +191680,958.4000000093146,-0.05588054460337932 +191681,958.4050000093147,-0.05588046768807563 +191682,958.4100000093148,-0.05588039078775441 +191683,958.4150000093149,-0.0558803139024119 +191684,958.420000009315,-0.055880237032044325 +191685,958.4250000093151,-0.05588016017664789 +191686,958.4300000093152,-0.05588008333621885 +191687,958.4350000093153,-0.05588000651075342 +191688,958.4400000093154,-0.05587992970024784 +191689,958.4450000093155,-0.05587985290469834 +191690,958.4500000093157,-0.055879776124101145 +191691,958.4550000093158,-0.05587969935845249 +191692,958.4600000093159,-0.055879622607748605 +191693,958.465000009316,-0.05587954587198573 +191694,958.4700000093161,-0.05587946915116009 +191695,958.4750000093162,-0.05587939244526794 +191696,958.4800000093163,-0.05587931575430551 +191697,958.4850000093164,-0.05587923907826903 +191698,958.4900000093165,-0.05587916241715472 +191699,958.4950000093166,-0.05587908577095884 +191700,958.5000000093168,-0.055879009139677624 +191701,958.5050000093169,-0.05587893252330731 +191702,958.510000009317,-0.055878855921844134 +191703,958.5150000093171,-0.05587877933528435 +191704,958.5200000093172,-0.05587870276362418 +191705,958.5250000093173,-0.05587862620685988 +191706,958.5300000093174,-0.05587854966498769 +191707,958.5350000093175,-0.05587847313800384 +191708,958.5400000093176,-0.05587839662590459 +191709,958.5450000093177,-0.05587832012868617 +191710,958.5500000093178,-0.05587824364634484 +191711,958.555000009318,-0.05587816717887685 +191712,958.5600000093181,-0.05587809072627843 +191713,958.5650000093182,-0.055878014288545844 +191714,958.5700000093183,-0.05587793786567532 +191715,958.5750000093184,-0.05587786145766312 +191716,958.5800000093185,-0.05587778506450549 +191717,958.5850000093186,-0.05587770868619867 +191718,958.5900000093187,-0.055877632322738936 +191719,958.5950000093188,-0.055877555974122514 +191720,958.6000000093189,-0.05587747964034567 +191721,958.605000009319,-0.05587740332140466 +191722,958.6100000093192,-0.055877327017295725 +191723,958.6150000093193,-0.05587725072801513 +191724,958.6200000093194,-0.05587717445355912 +191725,958.6250000093195,-0.05587709819392396 +191726,958.6300000093196,-0.0558770219491059 +191727,958.6350000093197,-0.055876945719101186 +191728,958.6400000093198,-0.05587686950390609 +191729,958.6450000093199,-0.05587679330351688 +191730,958.65000000932,-0.05587671711792979 +191731,958.6550000093201,-0.055876640947141086 +191732,958.6600000093202,-0.05587656479114705 +191733,958.6650000093204,-0.05587648864994393 +191734,958.6700000093205,-0.055876412523527964 +191735,958.6750000093206,-0.05587633641189544 +191736,958.6800000093207,-0.055876260315042614 +191737,958.6850000093208,-0.05587618423296575 +191738,958.6900000093209,-0.055876108165661124 +191739,958.695000009321,-0.05587603211312498 +191740,958.7000000093211,-0.0558759560753536 +191741,958.7050000093212,-0.05587588005234325 +191742,958.7100000093213,-0.05587580404409019 +191743,958.7150000093214,-0.055875728050590684 +191744,958.7200000093216,-0.055875652071841 +191745,958.7250000093217,-0.055875576107837416 +191746,958.7300000093218,-0.0558755001585762 +191747,958.7350000093219,-0.055875424224053616 +191748,958.740000009322,-0.055875348304265944 +191749,958.7450000093221,-0.05587527239920944 +191750,958.7500000093222,-0.05587519650888039 +191751,958.7550000093223,-0.05587512063327506 +191752,958.7600000093224,-0.05587504477238973 +191753,958.7650000093225,-0.055874968926220674 +191754,958.7700000093226,-0.055874893094764164 +191755,958.7750000093228,-0.05587481727801648 +191756,958.7800000093229,-0.05587474147597389 +191757,958.785000009323,-0.055874665688632676 +191758,958.7900000093231,-0.05587458991598912 +191759,958.7950000093232,-0.05587451415803949 +191760,958.8000000093233,-0.05587443841478008 +191761,958.8050000093234,-0.05587436268620715 +191762,958.8100000093235,-0.05587428697231699 +191763,958.8150000093236,-0.0558742112731059 +191764,958.8200000093237,-0.05587413558857014 +191765,958.8250000093238,-0.055874059918706 +191766,958.830000009324,-0.05587398426350974 +191767,958.8350000093241,-0.05587390862297768 +191768,958.8400000093242,-0.05587383299710608 +191769,958.8450000093243,-0.05587375738589124 +191770,958.8500000093244,-0.05587368178932944 +191771,958.8550000093245,-0.05587360620741696 +191772,958.8600000093246,-0.0558735306401501 +191773,958.8650000093247,-0.05587345508752513 +191774,958.8700000093248,-0.05587337954953836 +191775,958.8750000093249,-0.055873304026186066 +191776,958.880000009325,-0.05587322851746453 +191777,958.8850000093252,-0.05587315302337005 +191778,958.8900000093253,-0.05587307754389893 +191779,958.8950000093254,-0.055873002079047454 +191780,958.9000000093255,-0.05587292662881191 +191781,958.9050000093256,-0.0558728511931886 +191782,958.9100000093257,-0.0558727757721738 +191783,958.9150000093258,-0.05587270036576382 +191784,958.9200000093259,-0.055872624973954954 +191785,958.925000009326,-0.055872549596743495 +191786,958.9300000093261,-0.055872474234125745 +191787,958.9350000093262,-0.055872398886098 +191788,958.9400000093264,-0.05587232355265654 +191789,958.9450000093265,-0.055872248233797675 +191790,958.9500000093266,-0.05587217292951772 +191791,958.9550000093267,-0.05587209763981295 +191792,958.9600000093268,-0.05587202236467968 +191793,958.9650000093269,-0.055871947104114215 +191794,958.970000009327,-0.055871871858112855 +191795,958.9750000093271,-0.055871796626671896 +191796,958.9800000093272,-0.05587172140978764 +191797,958.9850000093273,-0.055871646207456396 +191798,958.9900000093274,-0.055871571019674465 +191799,958.9950000093276,-0.05587149584643815 +191800,959.0000000093277,-0.05587142068774376 +191801,959.0050000093278,-0.05587134554358762 +191802,959.0100000093279,-0.055871270413966015 +191803,959.015000009328,-0.05587119529887525 +191804,959.0200000093281,-0.05587112019831165 +191805,959.0250000093282,-0.055871045112271506 +191806,959.0300000093283,-0.055870970040751144 +191807,959.0350000093284,-0.05587089498374688 +191808,959.0400000093285,-0.05587081994125501 +191809,959.0450000093286,-0.05587074491327183 +191810,959.0500000093288,-0.055870669899793696 +191811,959.0550000093289,-0.055870594900816896 +191812,959.060000009329,-0.05587051991633774 +191813,959.0650000093291,-0.05587044494635255 +191814,959.0700000093292,-0.05587036999085764 +191815,959.0750000093293,-0.05587029504984933 +191816,959.0800000093294,-0.05587022012332393 +191817,959.0850000093295,-0.05587014521127776 +191818,959.0900000093296,-0.055870070313707144 +191819,959.0950000093297,-0.0558699954306084 +191820,959.1000000093298,-0.055869920561977836 +191821,959.10500000933,-0.055869845707811776 +191822,959.1100000093301,-0.055869770868106544 +191823,959.1150000093302,-0.05586969604285845 +191824,959.1200000093303,-0.055869621232063835 +191825,959.1250000093304,-0.055869546435719016 +191826,959.1300000093305,-0.055869471653820314 +191827,959.1350000093306,-0.055869396886364046 +191828,959.1400000093307,-0.05586932213334654 +191829,959.1450000093308,-0.05586924739476415 +191830,959.1500000093309,-0.05586917267061316 +191831,959.155000009331,-0.0558690979608899 +191832,959.1600000093312,-0.05586902326559073 +191833,959.1650000093313,-0.05586894858471195 +191834,959.1700000093314,-0.055868873918249906 +191835,959.1750000093315,-0.05586879926620091 +191836,959.1800000093316,-0.05586872462856131 +191837,959.1850000093317,-0.055868650005327425 +191838,959.1900000093318,-0.05586857539649559 +191839,959.1950000093319,-0.055868500802062133 +191840,959.200000009332,-0.05586842622202339 +191841,959.2050000093321,-0.055868351656375694 +191842,959.2100000093322,-0.05586827710511538 +191843,959.2150000093324,-0.05586820256823879 +191844,959.2200000093325,-0.05586812804574224 +191845,959.2250000093326,-0.05586805353762207 +191846,959.2300000093327,-0.055867979043874645 +191847,959.2350000093328,-0.05586790456449626 +191848,959.2400000093329,-0.05586783009948328 +191849,959.245000009333,-0.05586775564883205 +191850,959.2500000093331,-0.055867681212538885 +191851,959.2550000093332,-0.055867606790600134 +191852,959.2600000093333,-0.05586753238301215 +191853,959.2650000093334,-0.05586745798977127 +191854,959.2700000093336,-0.055867383610873816 +191855,959.2750000093337,-0.05586730924631615 +191856,959.2800000093338,-0.05586723489609462 +191857,959.2850000093339,-0.05586716056020555 +191858,959.290000009334,-0.0558670862386453 +191859,959.2950000093341,-0.05586701193141022 +191860,959.3000000093342,-0.055866937638496636 +191861,959.3050000093343,-0.05586686335990092 +191862,959.3100000093344,-0.055866789095619394 +191863,959.3150000093345,-0.05586671484564842 +191864,959.3200000093346,-0.05586664060998434 +191865,959.3250000093348,-0.055866566388623515 +191866,959.3300000093349,-0.05586649218156228 +191867,959.335000009335,-0.055866417988797 +191868,959.3400000093351,-0.055866343810324015 +191869,959.3450000093352,-0.05586626964613967 +191870,959.3500000093353,-0.05586619549624034 +191871,959.3550000093354,-0.055866121360622356 +191872,959.3600000093355,-0.055866047239282096 +191873,959.3650000093356,-0.0558659731322159 +191874,959.3700000093357,-0.05586589903942013 +191875,959.3750000093358,-0.05586582496089113 +191876,959.380000009336,-0.05586575089662527 +191877,959.3850000093361,-0.055865676846618896 +191878,959.3900000093362,-0.055865602810868366 +191879,959.3950000093363,-0.055865528789370046 +191880,959.4000000093364,-0.055865454782120294 +191881,959.4050000093365,-0.05586538078911547 +191882,959.4100000093366,-0.05586530681035193 +191883,959.4150000093367,-0.05586523284582603 +191884,959.4200000093368,-0.05586515889553415 +191885,959.4250000093369,-0.05586508495947264 +191886,959.430000009337,-0.05586501103763787 +191887,959.4350000093372,-0.055864937130026195 +191888,959.4400000093373,-0.055864863236633984 +191889,959.4450000093374,-0.055864789357457596 +191890,959.4500000093375,-0.055864715492493416 +191891,959.4550000093376,-0.055864641641737794 +191892,959.4600000093377,-0.055864567805187094 +191893,959.4650000093378,-0.0558644939828377 +191894,959.4700000093379,-0.055864420174685965 +191895,959.475000009338,-0.055864346380728264 +191896,959.4800000093381,-0.055864272600960975 +191897,959.4850000093383,-0.05586419883538045 +191898,959.4900000093384,-0.05586412508398307 +191899,959.4950000093385,-0.05586405134676521 +191900,959.5000000093386,-0.05586397762372324 +191901,959.5050000093387,-0.05586390391485354 +191902,959.5100000093388,-0.05586383022015247 +191903,959.5150000093389,-0.05586375653961642 +191904,959.520000009339,-0.05586368287324174 +191905,959.5250000093391,-0.055863609221024846 +191906,959.5300000093392,-0.05586353558296207 +191907,959.5350000093393,-0.055863461959049815 +191908,959.5400000093395,-0.05586338834928446 +191909,959.5450000093396,-0.05586331475366238 +191910,959.5500000093397,-0.05586324117217994 +191911,959.5550000093398,-0.055863167604833536 +191912,959.5600000093399,-0.055863094051619544 +191913,959.56500000934,-0.055863020512534334 +191914,959.5700000093401,-0.055862946987574304 +191915,959.5750000093402,-0.05586287347673583 +191916,959.5800000093403,-0.055862799980015296 +191917,959.5850000093404,-0.05586272649740909 +191918,959.5900000093405,-0.055862653028913585 +191919,959.5950000093407,-0.05586257957452517 +191920,959.6000000093408,-0.055862506134240236 +191921,959.6050000093409,-0.05586243270805517 +191922,959.610000009341,-0.055862359295966356 +191923,959.6150000093411,-0.05586228589797018 +191924,959.6200000093412,-0.05586221251406303 +191925,959.6250000093413,-0.0558621391442413 +191926,959.6300000093414,-0.05586206578850137 +191927,959.6350000093415,-0.05586199244683964 +191928,959.6400000093416,-0.05586191911925249 +191929,959.6450000093417,-0.055861845805736325 +191930,959.6500000093419,-0.05586177250628752 +191931,959.655000009342,-0.055861699220902485 +191932,959.6600000093421,-0.0558616259495776 +191933,959.6650000093422,-0.055861552692309274 +191934,959.6700000093423,-0.05586147944909389 +191935,959.6750000093424,-0.055861406219927856 +191936,959.6800000093425,-0.05586133300480755 +191937,959.6850000093426,-0.055861259803729385 +191938,959.6900000093427,-0.05586118661668975 +191939,959.6950000093428,-0.055861113443685044 +191940,959.700000009343,-0.055861040284711665 +191941,959.705000009343,-0.055860967139766016 +191942,959.7100000093432,-0.055860894008844496 +191943,959.7150000093433,-0.055860820891943504 +191944,959.7200000093434,-0.055860747789059445 +191945,959.7250000093435,-0.05586067470018871 +191946,959.7300000093436,-0.055860601625327716 +191947,959.7350000093437,-0.05586052856447286 +191948,959.7400000093438,-0.05586045551762054 +191949,959.7450000093439,-0.05586038248476717 +191950,959.750000009344,-0.055860309465909155 +191951,959.7550000093441,-0.055860236461042906 +191952,959.7600000093443,-0.05586016347016481 +191953,959.7650000093444,-0.055860090493271286 +191954,959.7700000093445,-0.05586001753035875 +191955,959.7750000093446,-0.05585994458142359 +191956,959.7800000093447,-0.055859871646462236 +191957,959.7850000093448,-0.055859798725471095 +191958,959.7900000093449,-0.055859725818446566 +191959,959.795000009345,-0.05585965292538506 +191960,959.8000000093451,-0.05585958004628302 +191961,959.8050000093452,-0.05585950718113681 +191962,959.8100000093453,-0.05585943432994287 +191963,959.8150000093455,-0.055859361492697615 +191964,959.8200000093456,-0.05585928866939746 +191965,959.8250000093457,-0.055859215860038815 +191966,959.8300000093458,-0.055859143064618096 +191967,959.8350000093459,-0.055859070283131716 +191968,959.840000009346,-0.05585899751557611 +191969,959.8450000093461,-0.055858924761947676 +191970,959.8500000093462,-0.05585885202224283 +191971,959.8550000093463,-0.05585877929645801 +191972,959.8600000093464,-0.05585870658458963 +191973,959.8650000093465,-0.0558586338866341 +191974,959.8700000093467,-0.055858561202587836 +191975,959.8750000093468,-0.055858488532447285 +191976,959.8800000093469,-0.055858415876208836 +191977,959.885000009347,-0.055858343233868936 +191978,959.8900000093471,-0.05585827060542401 +191979,959.8950000093472,-0.05585819799087048 +191980,959.9000000093473,-0.055858125390204766 +191981,959.9050000093474,-0.05585805280342328 +191982,959.9100000093475,-0.05585798023052247 +191983,959.9150000093476,-0.05585790767149875 +191984,959.9200000093477,-0.055857835126348565 +191985,959.9250000093479,-0.055857762595068326 +191986,959.930000009348,-0.055857690077654454 +191987,959.9350000093481,-0.0558576175741034 +191988,959.9400000093482,-0.05585754508441158 +191989,959.9450000093483,-0.05585747260857544 +191990,959.9500000093484,-0.055857400146591386 +191991,959.9550000093485,-0.055857327698455875 +191992,959.9600000093486,-0.05585725526416533 +191993,959.9650000093487,-0.05585718284371619 +191994,959.9700000093488,-0.05585711043710488 +191995,959.975000009349,-0.05585703804432784 +191996,959.980000009349,-0.055856965665381494 +191997,959.9850000093492,-0.0558568933002623 +191998,959.9900000093493,-0.055856820948966684 +191999,959.9950000093494,-0.05585674861149107 +192000,960.0000000093495,-0.05585667628783192 +192001,960.0050000093496,-0.055856603977985655 +192002,960.0100000093497,-0.05585653168194873 +192003,960.0150000093498,-0.055856459399717555 +192004,960.0200000093499,-0.0558563871312886 +192005,960.02500000935,-0.05585631487665829 +192006,960.0300000093501,-0.05585624263582308 +192007,960.0350000093503,-0.05585617040877941 +192008,960.0400000093504,-0.055856098195523715 +192009,960.0450000093505,-0.05585602599605244 +192010,960.0500000093506,-0.05585595381036203 +192011,960.0550000093507,-0.055855881638448936 +192012,960.0600000093508,-0.05585580948030959 +192013,960.0650000093509,-0.05585573733594046 +192014,960.070000009351,-0.055855665205337975 +192015,960.0750000093511,-0.05585559308849858 +192016,960.0800000093512,-0.05585552098541875 +192017,960.0850000093513,-0.055855448896094916 +192018,960.0900000093515,-0.055855376820523515 +192019,960.0950000093516,-0.05585530475870103 +192020,960.1000000093517,-0.05585523271062387 +192021,960.1050000093518,-0.055855160676288505 +192022,960.1100000093519,-0.05585508865569141 +192023,960.115000009352,-0.05585501664882901 +192024,960.1200000093521,-0.055854944655697764 +192025,960.1250000093522,-0.05585487267629414 +192026,960.1300000093523,-0.05585480071061457 +192027,960.1350000093524,-0.05585472875865553 +192028,960.1400000093525,-0.055854656820413455 +192029,960.1450000093527,-0.05585458489588483 +192030,960.1500000093528,-0.05585451298506608 +192031,960.1550000093529,-0.05585444108795369 +192032,960.160000009353,-0.05585436920454411 +192033,960.1650000093531,-0.055854297334833804 +192034,960.1700000093532,-0.05585422547881922 +192035,960.1750000093533,-0.05585415363649682 +192036,960.1800000093534,-0.05585408180786307 +192037,960.1850000093535,-0.05585400999291443 +192038,960.1900000093536,-0.05585393819164738 +192039,960.1950000093537,-0.05585386640405835 +192040,960.2000000093539,-0.055853794630143824 +192041,960.205000009354,-0.05585372286990027 +192042,960.2100000093541,-0.05585365112332414 +192043,960.2150000093542,-0.05585357939041191 +192044,960.2200000093543,-0.05585350767116005 +192045,960.2250000093544,-0.05585343596556502 +192046,960.2300000093545,-0.05585336427362327 +192047,960.2350000093546,-0.0558532925953313 +192048,960.2400000093547,-0.055853220930685565 +192049,960.2450000093548,-0.05585314927968254 +192050,960.250000009355,-0.0558530776423187 +192051,960.2550000093551,-0.055853006018590494 +192052,960.2600000093552,-0.055852934408494405 +192053,960.2650000093553,-0.055852862812026914 +192054,960.2700000093554,-0.055852791229184476 +192055,960.2750000093555,-0.055852719659963586 +192056,960.2800000093556,-0.0558526481043607 +192057,960.2850000093557,-0.055852576562372296 +192058,960.2900000093558,-0.05585250503399486 +192059,960.2950000093559,-0.055852433519224864 +192060,960.300000009356,-0.05585236201805877 +192061,960.3050000093561,-0.05585229053049308 +192062,960.3100000093563,-0.05585221905652425 +192063,960.3150000093564,-0.05585214759614877 +192064,960.3200000093565,-0.05585207614936311 +192065,960.3250000093566,-0.05585200471616378 +192066,960.3300000093567,-0.05585193329654722 +192067,960.3350000093568,-0.05585186189050994 +192068,960.3400000093569,-0.055851790498048406 +192069,960.345000009357,-0.0558517191191591 +192070,960.3500000093571,-0.055851647753838524 +192071,960.3550000093572,-0.05585157640208314 +192072,960.3600000093573,-0.05585150506388945 +192073,960.3650000093575,-0.05585143373925392 +192074,960.3700000093576,-0.05585136242817305 +192075,960.3750000093577,-0.05585129113064332 +192076,960.3800000093578,-0.05585121984666123 +192077,960.3850000093579,-0.05585114857622325 +192078,960.390000009358,-0.055851077319325884 +192079,960.3950000093581,-0.055851006075965604 +192080,960.4000000093582,-0.055850934846138914 +192081,960.4050000093583,-0.0558508636298423 +192082,960.4100000093584,-0.05585079242707225 +192083,960.4150000093586,-0.05585072123782526 +192084,960.4200000093587,-0.055850650062097815 +192085,960.4250000093588,-0.05585057889988641 +192086,960.4300000093589,-0.05585050775118755 +192087,960.435000009359,-0.05585043661599771 +192088,960.4400000093591,-0.055850365494313395 +192089,960.4450000093592,-0.0558502943861311 +192090,960.4500000093593,-0.05585022329144732 +192091,960.4550000093594,-0.05585015221025856 +192092,960.4600000093595,-0.055850081142561306 +192093,960.4650000093596,-0.05585001008835207 +192094,960.4700000093598,-0.055849939047627334 +192095,960.4750000093599,-0.055849868020383595 +192096,960.48000000936,-0.055849797006617366 +192097,960.4850000093601,-0.055849726006325144 +192098,960.4900000093602,-0.05584965501950343 +192099,960.4950000093603,-0.05584958404614874 +192100,960.5000000093604,-0.055849513086257546 +192101,960.5050000093605,-0.055849442139826365 +192102,960.5100000093606,-0.05584937120685172 +192103,960.5150000093607,-0.05584930028733008 +192104,960.5200000093608,-0.05584922938125797 +192105,960.525000009361,-0.0558491584886319 +192106,960.5300000093611,-0.055849087609448365 +192107,960.5350000093612,-0.05584901674370387 +192108,960.5400000093613,-0.055848945891394934 +192109,960.5450000093614,-0.055848875052518065 +192110,960.5500000093615,-0.05584880422706978 +192111,960.5550000093616,-0.05584873341504657 +192112,960.5600000093617,-0.055848662616444944 +192113,960.5650000093618,-0.05584859183126142 +192114,960.5700000093619,-0.05584852105949251 +192115,960.575000009362,-0.055848450301134736 +192116,960.5800000093622,-0.05584837955618458 +192117,960.5850000093623,-0.05584830882463858 +192118,960.5900000093624,-0.05584823810649325 +192119,960.5950000093625,-0.0558481674017451 +192120,960.6000000093626,-0.05584809671039065 +192121,960.6050000093627,-0.055848026032426404 +192122,960.6100000093628,-0.05584795536784888 +192123,960.6150000093629,-0.055847884716654604 +192124,960.620000009363,-0.05584781407884009 +192125,960.6250000093631,-0.05584774345440187 +192126,960.6300000093632,-0.05584767284333644 +192127,960.6350000093634,-0.05584760224564033 +192128,960.6400000093635,-0.05584753166131006 +192129,960.6450000093636,-0.05584746109034215 +192130,960.6500000093637,-0.05584739053273312 +192131,960.6550000093638,-0.0558473199884795 +192132,960.6600000093639,-0.055847249457577804 +192133,960.665000009364,-0.05584717894002456 +192134,960.6700000093641,-0.0558471084358163 +192135,960.6750000093642,-0.055847037944949524 +192136,960.6800000093643,-0.05584696746742079 +192137,960.6850000093644,-0.055846897003226585 +192138,960.6900000093646,-0.05584682655236347 +192139,960.6950000093647,-0.05584675611482796 +192140,960.7000000093648,-0.055846685690616585 +192141,960.7050000093649,-0.05584661527972587 +192142,960.710000009365,-0.05584654488215234 +192143,960.7150000093651,-0.05584647449789255 +192144,960.7200000093652,-0.055846404126943 +192145,960.7250000093653,-0.05584633376930023 +192146,960.7300000093654,-0.05584626342496078 +192147,960.7350000093655,-0.05584619309392117 +192148,960.7400000093656,-0.05584612277617795 +192149,960.7450000093658,-0.05584605247172765 +192150,960.7500000093659,-0.05584598218056678 +192151,960.755000009366,-0.0558459119026919 +192152,960.7600000093661,-0.05584584163809953 +192153,960.7650000093662,-0.055845771386786223 +192154,960.7700000093663,-0.05584570114874852 +192155,960.7750000093664,-0.05584563092398294 +192156,960.7800000093665,-0.055845560712486024 +192157,960.7850000093666,-0.05584549051425431 +192158,960.7900000093667,-0.055845420329284336 +192159,960.7950000093668,-0.05584535015757265 +192160,960.800000009367,-0.0558452799991158 +192161,960.8050000093671,-0.05584520985391032 +192162,960.8100000093672,-0.05584513972195275 +192163,960.8150000093673,-0.05584506960323962 +192164,960.8200000093674,-0.05584499949776749 +192165,960.8250000093675,-0.055844929405532893 +192166,960.8300000093676,-0.05584485932653239 +192167,960.8350000093677,-0.055844789260762515 +192168,960.8400000093678,-0.05584471920821982 +192169,960.8450000093679,-0.055844649168900834 +192170,960.850000009368,-0.05584457914280212 +192171,960.8550000093682,-0.05584450912992023 +192172,960.8600000093683,-0.0558444391302517 +192173,960.8650000093684,-0.055844369143793086 +192174,960.8700000093685,-0.055844299170540936 +192175,960.8750000093686,-0.05584422921049179 +192176,960.8800000093687,-0.05584415926364221 +192177,960.8850000093688,-0.05584408932998875 +192178,960.8900000093689,-0.05584401940952795 +192179,960.895000009369,-0.055843949502256365 +192180,960.9000000093691,-0.055843879608170555 +192181,960.9050000093692,-0.055843809727267074 +192182,960.9100000093694,-0.05584373985954248 +192183,960.9150000093695,-0.05584367000499333 +192184,960.9200000093696,-0.05584360016361616 +192185,960.9250000093697,-0.05584353033540754 +192186,960.9300000093698,-0.055843460520364034 +192187,960.9350000093699,-0.05584339071848218 +192188,960.94000000937,-0.055843320929758564 +192189,960.9450000093701,-0.05584325115418972 +192190,960.9500000093702,-0.05584318139177222 +192191,960.9550000093703,-0.05584311164250262 +192192,960.9600000093704,-0.05584304190637748 +192193,960.9650000093706,-0.055842972183393375 +192194,960.9700000093707,-0.05584290247354685 +192195,960.9750000093708,-0.055842832776834474 +192196,960.9800000093709,-0.0558427630932528 +192197,960.985000009371,-0.05584269342279842 +192198,960.9900000093711,-0.05584262376546788 +192199,960.9950000093712,-0.055842554121257736 +192200,961.0000000093713,-0.055842484490164566 +192201,961.0050000093714,-0.055842414872184935 +192202,961.0100000093715,-0.05584234526731541 +192203,961.0150000093716,-0.05584227567555257 +192204,961.0200000093718,-0.055842206096892964 +192205,961.0250000093719,-0.055842136531333186 +192206,961.030000009372,-0.055842066978869766 +192207,961.0350000093721,-0.05584199743949931 +192208,961.0400000093722,-0.05584192791321837 +192209,961.0450000093723,-0.05584185840002354 +192210,961.0500000093724,-0.055841788899911364 +192211,961.0550000093725,-0.05584171941287843 +192212,961.0600000093726,-0.05584164993892132 +192213,961.0650000093727,-0.05584158047803659 +192214,961.0700000093728,-0.05584151103022083 +192215,961.075000009373,-0.0558414415954706 +192216,961.0800000093731,-0.05584137217378249 +192217,961.0850000093732,-0.05584130276515306 +192218,961.0900000093733,-0.055841233369578906 +192219,961.0950000093734,-0.05584116398705659 +192220,961.1000000093735,-0.0558410946175827 +192221,961.1050000093736,-0.055841025261153816 +192222,961.1100000093737,-0.05584095591776652 +192223,961.1150000093738,-0.055840886587417385 +192224,961.1200000093739,-0.055840817270103 +192225,961.125000009374,-0.05584074796581995 +192226,961.1300000093742,-0.055840678674564784 +192227,961.1350000093743,-0.05584060939633413 +192228,961.1400000093744,-0.05584054013112454 +192229,961.1450000093745,-0.055840470878932624 +192230,961.1500000093746,-0.05584040163975495 +192231,961.1550000093747,-0.0558403324135881 +192232,961.1600000093748,-0.05584026320042867 +192233,961.1650000093749,-0.05584019400027324 +192234,961.170000009375,-0.05584012481311841 +192235,961.1750000093751,-0.05584005563896075 +192236,961.1800000093752,-0.05583998647779686 +192237,961.1850000093754,-0.05583991732962332 +192238,961.1900000093755,-0.05583984819443673 +192239,961.1950000093756,-0.05583977907223367 +192240,961.2000000093757,-0.05583970996301075 +192241,961.2050000093758,-0.05583964086676454 +192242,961.2100000093759,-0.05583957178349165 +192243,961.215000009376,-0.05583950271318867 +192244,961.2200000093761,-0.05583943365585218 +192245,961.2250000093762,-0.05583936461147877 +192246,961.2300000093763,-0.055839295580065056 +192247,961.2350000093764,-0.055839226561607634 +192248,961.2400000093766,-0.05583915755610309 +192249,961.2450000093767,-0.055839088563548016 +192250,961.2500000093768,-0.05583901958393902 +192251,961.2550000093769,-0.055838950617272703 +192252,961.260000009377,-0.05583888166354565 +192253,961.2650000093771,-0.05583881272275447 +192254,961.2700000093772,-0.05583874379489575 +192255,961.2750000093773,-0.055838674879966105 +192256,961.2800000093774,-0.055838605977962134 +192257,961.2850000093775,-0.05583853708888043 +192258,961.2900000093776,-0.0558384682127176 +192259,961.2950000093778,-0.055838399349470255 +192260,961.3000000093779,-0.05583833049913498 +192261,961.305000009378,-0.055838261661708403 +192262,961.3100000093781,-0.055838192837187106 +192263,961.3150000093782,-0.05583812402556771 +192264,961.3200000093783,-0.055838055226846824 +192265,961.3250000093784,-0.055837986441021045 +192266,961.3300000093785,-0.055837917668086975 +192267,961.3350000093786,-0.05583784890804124 +192268,961.3400000093787,-0.05583778016088043 +192269,961.3450000093789,-0.05583771142660116 +192270,961.350000009379,-0.05583764270520006 +192271,961.3550000093791,-0.05583757399667371 +192272,961.3600000093792,-0.05583750530101874 +192273,961.3650000093793,-0.05583743661823175 +192274,961.3700000093794,-0.05583736794830937 +192275,961.3750000093795,-0.055837299291248185 +192276,961.3800000093796,-0.055837230647044836 +192277,961.3850000093797,-0.055837162015695926 +192278,961.3900000093798,-0.055837093397198063 +192279,961.3950000093799,-0.055837024791547875 +192280,961.40000000938,-0.055836956198741974 +192281,961.4050000093802,-0.05583688761877697 +192282,961.4100000093803,-0.055836819051649486 +192283,961.4150000093804,-0.055836750497356154 +192284,961.4200000093805,-0.05583668195589357 +192285,961.4250000093806,-0.05583661342725836 +192286,961.4300000093807,-0.055836544911447135 +192287,961.4350000093808,-0.055836476408456535 +192288,961.4400000093809,-0.05583640791828317 +192289,961.445000009381,-0.055836339440923664 +192290,961.4500000093811,-0.05583627097637465 +192291,961.4550000093813,-0.05583620252463274 +192292,961.4600000093814,-0.05583613408569455 +192293,961.4650000093815,-0.05583606565955671 +192294,961.4700000093816,-0.05583599724621585 +192295,961.4750000093817,-0.05583592884566859 +192296,961.4800000093818,-0.055835860457911564 +192297,961.4850000093819,-0.0558357920829414 +192298,961.490000009382,-0.0558357237207547 +192299,961.4950000093821,-0.055835655371348124 +192300,961.5000000093822,-0.05583558703471829 +192301,961.5050000093823,-0.05583551871086181 +192302,961.5100000093825,-0.055835450399775326 +192303,961.5150000093826,-0.05583538210145548 +192304,961.5200000093827,-0.05583531381589889 +192305,961.5250000093828,-0.055835245543102194 +192306,961.5300000093829,-0.05583517728306201 +192307,961.535000009383,-0.055835109035774995 +192308,961.5400000093831,-0.055835040801237766 +192309,961.5450000093832,-0.05583497257944696 +192310,961.5500000093833,-0.055834904370399216 +192311,961.5550000093834,-0.055834836174091164 +192312,961.5600000093835,-0.05583476799051944 +192313,961.5650000093837,-0.05583469981968068 +192314,961.5700000093838,-0.05583463166157152 +192315,961.5750000093839,-0.05583456351618861 +192316,961.580000009384,-0.055834495383528575 +192317,961.5850000093841,-0.05583442726358807 +192318,961.5900000093842,-0.05583435915636372 +192319,961.5950000093843,-0.05583429106185217 +192320,961.6000000093844,-0.05583422298005006 +192321,961.6050000093845,-0.055834154910954024 +192322,961.6100000093846,-0.055834086854560726 +192323,961.6150000093847,-0.05583401881086678 +192324,961.6200000093849,-0.05583395077986886 +192325,961.625000009385,-0.055833882761563584 +192326,961.6300000093851,-0.05583381475594761 +192327,961.6350000093852,-0.05583374676301759 +192328,961.6400000093853,-0.05583367878277015 +192329,961.6450000093854,-0.05583361081520195 +192330,961.6500000093855,-0.055833542860309636 +192331,961.6550000093856,-0.05583347491808985 +192332,961.6600000093857,-0.05583340698853924 +192333,961.6650000093858,-0.05583333907165446 +192334,961.670000009386,-0.055833271167432176 +192335,961.675000009386,-0.05583320327586901 +192336,961.6800000093862,-0.05583313539696162 +192337,961.6850000093863,-0.05583306753070667 +192338,961.6900000093864,-0.0558329996771008 +192339,961.6950000093865,-0.05583293183614066 +192340,961.7000000093866,-0.05583286400782292 +192341,961.7050000093867,-0.055832796192144214 +192342,961.7100000093868,-0.05583272838910121 +192343,961.7150000093869,-0.055832660598690555 +192344,961.720000009387,-0.05583259282090892 +192345,961.7250000093871,-0.05583252505575294 +192346,961.7300000093873,-0.055832457303219285 +192347,961.7350000093874,-0.055832389563304614 +192348,961.7400000093875,-0.055832321836005575 +192349,961.7450000093876,-0.05583225412131884 +192350,961.7500000093877,-0.05583218641924106 +192351,961.7550000093878,-0.0558321187297689 +192352,961.7600000093879,-0.055832051052899005 +192353,961.765000009388,-0.05583198338862806 +192354,961.7700000093881,-0.05583191573695271 +192355,961.7750000093882,-0.055831848097869625 +192356,961.7800000093883,-0.05583178047137547 +192357,961.7850000093885,-0.055831712857466916 +192358,961.7900000093886,-0.05583164525614061 +192359,961.7950000093887,-0.05583157766739322 +192360,961.8000000093888,-0.05583151009122142 +192361,961.8050000093889,-0.05583144252762188 +192362,961.810000009389,-0.05583137497659125 +192363,961.8150000093891,-0.055831307438126206 +192364,961.8200000093892,-0.05583123991222341 +192365,961.8250000093893,-0.055831172398879546 +192366,961.8300000093894,-0.05583110489809127 +192367,961.8350000093895,-0.055831037409855254 +192368,961.8400000093897,-0.05583096993416818 +192369,961.8450000093898,-0.055830902471026705 +192370,961.8500000093899,-0.055830835020427516 +192371,961.85500000939,-0.055830767582367276 +192372,961.8600000093901,-0.055830700156842654 +192373,961.8650000093902,-0.05583063274385032 +192374,961.8700000093903,-0.05583056534338695 +192375,961.8750000093904,-0.05583049795544923 +192376,961.8800000093905,-0.055830430580033834 +192377,961.8850000093906,-0.055830363217137434 +192378,961.8900000093907,-0.0558302958667567 +192379,961.8950000093909,-0.055830228528888325 +192380,961.900000009391,-0.055830161203528975 +192381,961.9050000093911,-0.05583009389067533 +192382,961.9100000093912,-0.05583002659032408 +192383,961.9150000093913,-0.05582995930247189 +192384,961.9200000093914,-0.05582989202711545 +192385,961.9250000093915,-0.05582982476425144 +192386,961.9300000093916,-0.05582975751387653 +192387,961.9350000093917,-0.05582969027598742 +192388,961.9400000093918,-0.05582962305058078 +192389,961.945000009392,-0.055829555837653304 +192390,961.950000009392,-0.05582948863720166 +192391,961.9550000093922,-0.05582942144922255 +192392,961.9600000093923,-0.055829354273712654 +192393,961.9650000093924,-0.055829287110668646 +192394,961.9700000093925,-0.05582921996008723 +192395,961.9750000093926,-0.05582915282196508 +192396,961.9800000093927,-0.055829085696298894 +192397,961.9850000093928,-0.055829018583085345 +192398,961.9900000093929,-0.05582895148232113 +192399,961.995000009393,-0.05582888439400296 +192400,962.0000000093931,-0.05582881731812749 +192401,962.0050000093933,-0.05582875025469143 +192402,962.0100000093934,-0.05582868320369147 +192403,962.0150000093935,-0.0558286161651243 +192404,962.0200000093936,-0.05582854913898662 +192405,962.0250000093937,-0.0558284821252751 +192406,962.0300000093938,-0.05582841512398646 +192407,962.0350000093939,-0.05582834813511738 +192408,962.040000009394,-0.05582828115866457 +192409,962.0450000093941,-0.055828214194624706 +192410,962.0500000093942,-0.05582814724299451 +192411,962.0550000093943,-0.05582808030377065 +192412,962.0600000093945,-0.05582801337694984 +192413,962.0650000093946,-0.055827946462528776 +192414,962.0700000093947,-0.05582787956050415 +192415,962.0750000093948,-0.05582781267087266 +192416,962.0800000093949,-0.05582774579363103 +192417,962.085000009395,-0.05582767892877592 +192418,962.0900000093951,-0.05582761207630408 +192419,962.0950000093952,-0.055827545236212174 +192420,962.1000000093953,-0.05582747840849692 +192421,962.1050000093954,-0.05582741159315502 +192422,962.1100000093955,-0.05582734479018318 +192423,962.1150000093957,-0.05582727799957809 +192424,962.1200000093958,-0.05582721122133647 +192425,962.1250000093959,-0.055827144455455016 +192426,962.130000009396,-0.05582707770193043 +192427,962.1350000093961,-0.05582701096075944 +192428,962.1400000093962,-0.05582694423193874 +192429,962.1450000093963,-0.05582687751546504 +192430,962.1500000093964,-0.05582681081133505 +192431,962.1550000093965,-0.05582674411954547 +192432,962.1600000093966,-0.05582667744009301 +192433,962.1650000093967,-0.05582661077297439 +192434,962.1700000093969,-0.05582654411818632 +192435,962.175000009397,-0.055826477475725514 +192436,962.1800000093971,-0.05582641084558867 +192437,962.1850000093972,-0.05582634422777251 +192438,962.1900000093973,-0.055826277622273754 +192439,962.1950000093974,-0.05582621102908909 +192440,962.2000000093975,-0.05582614444821528 +192441,962.2050000093976,-0.055826077879648994 +192442,962.2100000093977,-0.055826011323386965 +192443,962.2150000093978,-0.05582594477942591 +192444,962.220000009398,-0.05582587824776255 +192445,962.2250000093981,-0.05582581172839359 +192446,962.2300000093982,-0.05582574522131576 +192447,962.2350000093983,-0.05582567872652577 +192448,962.2400000093984,-0.05582561224402035 +192449,962.2450000093985,-0.05582554577379621 +192450,962.2500000093986,-0.05582547931585007 +192451,962.2550000093987,-0.05582541287017867 +192452,962.2600000093988,-0.055825346436778715 +192453,962.2650000093989,-0.055825280015646926 +192454,962.270000009399,-0.05582521360678004 +192455,962.2750000093992,-0.055825147210174765 +192456,962.2800000093993,-0.05582508082582783 +192457,962.2850000093994,-0.055825014453735965 +192458,962.2900000093995,-0.05582494809389588 +192459,962.2950000093996,-0.05582488174630433 +192460,962.3000000093997,-0.055824815410958024 +192461,962.3050000093998,-0.05582474908785369 +192462,962.3100000093999,-0.05582468277698806 +192463,962.3150000094,-0.055824616478357854 +192464,962.3200000094001,-0.05582455019195982 +192465,962.3250000094002,-0.05582448391779066 +192466,962.3300000094004,-0.055824417655847114 +192467,962.3350000094005,-0.055824351406125926 +192468,962.3400000094006,-0.05582428516862382 +192469,962.3450000094007,-0.05582421894333753 +192470,962.3500000094008,-0.055824152730263775 +192471,962.3550000094009,-0.05582408652939931 +192472,962.360000009401,-0.05582402034074086 +192473,962.3650000094011,-0.05582395416428516 +192474,962.3700000094012,-0.05582388800002893 +192475,962.3750000094013,-0.055823821847968934 +192476,962.3800000094014,-0.055823755708101885 +192477,962.3850000094016,-0.055823689580424544 +192478,962.3900000094017,-0.05582362346493362 +192479,962.3950000094018,-0.05582355736162588 +192480,962.4000000094019,-0.05582349127049804 +192481,962.405000009402,-0.05582342519154685 +192482,962.4100000094021,-0.055823359124769045 +192483,962.4150000094022,-0.05582329307016137 +192484,962.4200000094023,-0.055823227027720565 +192485,962.4250000094024,-0.05582316099744337 +192486,962.4300000094025,-0.055823094979326526 +192487,962.4350000094026,-0.05582302897336677 +192488,962.4400000094028,-0.055822962979560874 +192489,962.4450000094029,-0.05582289699790555 +192490,962.450000009403,-0.05582283102839756 +192491,962.4550000094031,-0.05582276507103365 +192492,962.4600000094032,-0.05582269912581056 +192493,962.4650000094033,-0.055822633192725034 +192494,962.4700000094034,-0.055822567271773836 +192495,962.4750000094035,-0.05582250136295369 +192496,962.4800000094036,-0.05582243546626135 +192497,962.4850000094037,-0.05582236958169358 +192498,962.4900000094038,-0.05582230370924712 +192499,962.495000009404,-0.05582223784891873 +192500,962.5000000094041,-0.055822172000705154 +192501,962.5050000094042,-0.055822106164603126 +192502,962.5100000094043,-0.05582204034060942 +192503,962.5150000094044,-0.055821974528720786 +192504,962.5200000094045,-0.05582190872893398 +192505,962.5250000094046,-0.05582184294124574 +192506,962.5300000094047,-0.055821777165652835 +192507,962.5350000094048,-0.05582171140215202 +192508,962.5400000094049,-0.05582164565074004 +192509,962.545000009405,-0.05582157991141366 +192510,962.5500000094052,-0.05582151418416965 +192511,962.5550000094053,-0.055821448469004734 +192512,962.5600000094054,-0.0558213827659157 +192513,962.5650000094055,-0.05582131707489928 +192514,962.5700000094056,-0.05582125139595226 +192515,962.5750000094057,-0.05582118572907139 +192516,962.5800000094058,-0.05582112007425343 +192517,962.5850000094059,-0.05582105443149514 +192518,962.590000009406,-0.05582098880079329 +192519,962.5950000094061,-0.05582092318214463 +192520,962.6000000094062,-0.05582085757554592 +192521,962.6050000094064,-0.05582079198099393 +192522,962.6100000094065,-0.05582072639848543 +192523,962.6150000094066,-0.055820660828017184 +192524,962.6200000094067,-0.05582059526958595 +192525,962.6250000094068,-0.0558205297231885 +192526,962.6300000094069,-0.055820464188821604 +192527,962.635000009407,-0.05582039866648202 +192528,962.6400000094071,-0.05582033315616653 +192529,962.6450000094072,-0.05582026765787188 +192530,962.6500000094073,-0.055820202171594856 +192531,962.6550000094074,-0.05582013669733222 +192532,962.6600000094076,-0.055820071235080745 +192533,962.6650000094077,-0.05582000578483721 +192534,962.6700000094078,-0.05581994034659836 +192535,962.6750000094079,-0.05581987492036099 +192536,962.680000009408,-0.05581980950612187 +192537,962.6850000094081,-0.055819744103877765 +192538,962.6900000094082,-0.05581967871362547 +192539,962.6950000094083,-0.05581961333536172 +192540,962.7000000094084,-0.05581954796908333 +192541,962.7050000094085,-0.055819482614787065 +192542,962.7100000094086,-0.055819417272469696 +192543,962.7150000094088,-0.055819351942128 +192544,962.7200000094089,-0.05581928662375874 +192545,962.725000009409,-0.055819221317358725 +192546,962.7300000094091,-0.055819156022924706 +192547,962.7350000094092,-0.05581909074045348 +192548,962.7400000094093,-0.05581902546994181 +192549,962.7450000094094,-0.055818960211386486 +192550,962.7500000094095,-0.055818894964784295 +192551,962.7550000094096,-0.05581882973013201 +192552,962.7600000094097,-0.055818764507426406 +192553,962.7650000094098,-0.05581869929666429 +192554,962.77000000941,-0.055818634097842434 +192555,962.7750000094101,-0.05581856891095761 +192556,962.7800000094102,-0.05581850373600661 +192557,962.7850000094103,-0.055818438572986226 +192558,962.7900000094104,-0.055818373421893226 +192559,962.7950000094105,-0.05581830828272442 +192560,962.8000000094106,-0.05581824315547658 +192561,962.8050000094107,-0.05581817804014651 +192562,962.8100000094108,-0.055818112936730974 +192563,962.8150000094109,-0.05581804784522677 +192564,962.820000009411,-0.05581798276563069 +192565,962.8250000094112,-0.05581791769793952 +192566,962.8300000094113,-0.055817852642150056 +192567,962.8350000094114,-0.05581778759825909 +192568,962.8400000094115,-0.05581772256626341 +192569,962.8450000094116,-0.05581765754615981 +192570,962.8500000094117,-0.05581759253794509 +192571,962.8550000094118,-0.05581752754161603 +192572,962.8600000094119,-0.055817462557169434 +192573,962.865000009412,-0.055817397584602094 +192574,962.8700000094121,-0.05581733262391079 +192575,962.8750000094122,-0.05581726767509234 +192576,962.8800000094124,-0.055817202738143536 +192577,962.8850000094125,-0.05581713781306117 +192578,962.8900000094126,-0.05581707289984203 +192579,962.8950000094127,-0.05581700799848294 +192580,962.9000000094128,-0.055816943108980666 +192581,962.9050000094129,-0.055816878231332044 +192582,962.910000009413,-0.055816813365533846 +192583,962.9150000094131,-0.055816748511582887 +192584,962.9200000094132,-0.05581668366947597 +192585,962.9250000094133,-0.05581661883920988 +192586,962.9300000094134,-0.05581655402078144 +192587,962.9350000094136,-0.05581648921418744 +192588,962.9400000094137,-0.05581642441942468 +192589,962.9450000094138,-0.05581635963648998 +192590,962.9500000094139,-0.05581629486538013 +192591,962.955000009414,-0.055816230106091935 +192592,962.9600000094141,-0.055816165358622216 +192593,962.9650000094142,-0.05581610062296777 +192594,962.9700000094143,-0.05581603589912541 +192595,962.9750000094144,-0.05581597118709193 +192596,962.9800000094145,-0.05581590648686415 +192597,962.9850000094146,-0.05581584179843888 +192598,962.9900000094148,-0.05581577712181293 +192599,962.9950000094149,-0.05581571245698311 +192600,963.000000009415,-0.05581564780394622 +192601,963.0050000094151,-0.05581558316269907 +192602,963.0100000094152,-0.05581551853323849 +192603,963.0150000094153,-0.05581545391556128 +192604,963.0200000094154,-0.05581538930966425 +192605,963.0250000094155,-0.055815324715544234 +192606,963.0300000094156,-0.05581526013319803 +192607,963.0350000094157,-0.055815195562622454 +192608,963.0400000094158,-0.055815131003814314 +192609,963.045000009416,-0.05581506645677044 +192610,963.0500000094161,-0.05581500192148765 +192611,963.0550000094162,-0.055814937397962755 +192612,963.0600000094163,-0.05581487288619256 +192613,963.0650000094164,-0.05581480838617391 +192614,963.0700000094165,-0.05581474389790361 +192615,963.0750000094166,-0.05581467942137847 +192616,963.0800000094167,-0.055814614956595336 +192617,963.0850000094168,-0.055814550503551004 +192618,963.0900000094169,-0.05581448606224231 +192619,963.095000009417,-0.05581442163266607 +192620,963.1000000094172,-0.055814357214819095 +192621,963.1050000094173,-0.05581429280869823 +192622,963.1100000094174,-0.05581422841430029 +192623,963.1150000094175,-0.0558141640316221 +192624,963.1200000094176,-0.05581409966066049 +192625,963.1250000094177,-0.055814035301412275 +192626,963.1300000094178,-0.05581397095387429 +192627,963.1350000094179,-0.05581390661804335 +192628,963.140000009418,-0.055813842293916296 +192629,963.1450000094181,-0.05581377798148995 +192630,963.1500000094182,-0.05581371368076114 +192631,963.1550000094184,-0.0558136493917267 +192632,963.1600000094185,-0.055813585114383446 +192633,963.1650000094186,-0.05581352084872822 +192634,963.1700000094187,-0.05581345659475785 +192635,963.1750000094188,-0.05581339235246918 +192636,963.1800000094189,-0.05581332812185902 +192637,963.185000009419,-0.05581326390292421 +192638,963.1900000094191,-0.0558131996956616 +192639,963.1950000094192,-0.055813135500068 +192640,963.2000000094193,-0.05581307131614025 +192641,963.2050000094195,-0.0558130071438752 +192642,963.2100000094196,-0.055812942983269664 +192643,963.2150000094197,-0.055812878834320505 +192644,963.2200000094198,-0.05581281469702454 +192645,963.2250000094199,-0.0558127505713786 +192646,963.23000000942,-0.055812686457379544 +192647,963.2350000094201,-0.055812622355024204 +192648,963.2400000094202,-0.05581255826430942 +192649,963.2450000094203,-0.05581249418523203 +192650,963.2500000094204,-0.055812430117788865 +192651,963.2550000094205,-0.05581236606197677 +192652,963.2600000094207,-0.0558123020177926 +192653,963.2650000094208,-0.05581223798523318 +192654,963.2700000094209,-0.05581217396429537 +192655,963.275000009421,-0.05581210995497599 +192656,963.2800000094211,-0.055812045957271905 +192657,963.2850000094212,-0.055811981971179946 +192658,963.2900000094213,-0.055811917996696964 +192659,963.2950000094214,-0.0558118540338198 +192660,963.3000000094215,-0.05581179008254532 +192661,963.3050000094216,-0.05581172614287034 +192662,963.3100000094217,-0.055811662214791724 +192663,963.3150000094219,-0.05581159829830632 +192664,963.320000009422,-0.05581153439341098 +192665,963.3250000094221,-0.055811470500102545 +192666,963.3300000094222,-0.05581140661837788 +192667,963.3350000094223,-0.055811342748233815 +192668,963.3400000094224,-0.05581127888966721 +192669,963.3450000094225,-0.055811215042674917 +192670,963.3500000094226,-0.05581115120725379 +192671,963.3550000094227,-0.055811087383400675 +192672,963.3600000094228,-0.05581102357111243 +192673,963.3650000094229,-0.05581095977038591 +192674,963.370000009423,-0.05581089598121797 +192675,963.3750000094232,-0.05581083220360546 +192676,963.3800000094233,-0.05581076843754523 +192677,963.3850000094234,-0.05581070468303416 +192678,963.3900000094235,-0.055810640940069094 +192679,963.3950000094236,-0.05581057720864688 +192680,963.4000000094237,-0.05581051348876439 +192681,963.4050000094238,-0.055810449780418464 +192682,963.4100000094239,-0.05581038608360598 +192683,963.415000009424,-0.05581032239832379 +192684,963.4200000094241,-0.055810258724568754 +192685,963.4250000094243,-0.05581019506233774 +192686,963.4300000094244,-0.05581013141162761 +192687,963.4350000094245,-0.055810067772435204 +192688,963.4400000094246,-0.05581000414475742 +192689,963.4450000094247,-0.05580994052859108 +192690,963.4500000094248,-0.05580987692393309 +192691,963.4550000094249,-0.055809813330780285 +192692,963.460000009425,-0.055809749749129535 +192693,963.4650000094251,-0.05580968617897771 +192694,963.4700000094252,-0.05580962262032169 +192695,963.4750000094253,-0.05580955907315833 +192696,963.4800000094255,-0.05580949553748448 +192697,963.4850000094256,-0.05580943201329703 +192698,963.4900000094257,-0.05580936850059284 +192699,963.4950000094258,-0.05580930499936878 +192700,963.5000000094259,-0.05580924150962173 +192701,963.505000009426,-0.055809178031348536 +192702,963.5100000094261,-0.05580911456454609 +192703,963.5150000094262,-0.05580905110921127 +192704,963.5200000094263,-0.055808987665340926 +192705,963.5250000094264,-0.05580892423293195 +192706,963.5300000094265,-0.05580886081198119 +192707,963.5350000094267,-0.05580879740248555 +192708,963.5400000094268,-0.05580873400444189 +192709,963.5450000094269,-0.055808670617847084 +192710,963.550000009427,-0.055808607242698004 +192711,963.5550000094271,-0.05580854387899153 +192712,963.5600000094272,-0.05580848052672455 +192713,963.5650000094273,-0.05580841718589393 +192714,963.5700000094274,-0.05580835385649654 +192715,963.5750000094275,-0.05580829053852928 +192716,963.5800000094276,-0.055808227231989006 +192717,963.5850000094277,-0.055808163936872615 +192718,963.5900000094279,-0.05580810065317698 +192719,963.595000009428,-0.055808037380898984 +192720,963.6000000094281,-0.0558079741200355 +192721,963.6050000094282,-0.05580791087058341 +192722,963.6100000094283,-0.05580784763253962 +192723,963.6150000094284,-0.05580778440590099 +192724,963.6200000094285,-0.05580772119066441 +192725,963.6250000094286,-0.05580765798682677 +192726,963.6300000094287,-0.055807594794384956 +192727,963.6350000094288,-0.05580753161333584 +192728,963.640000009429,-0.05580746844367632 +192729,963.645000009429,-0.05580740528540326 +192730,963.6500000094292,-0.05580734213851358 +192731,963.6550000094293,-0.055807279003004154 +192732,963.6600000094294,-0.05580721587887187 +192733,963.6650000094295,-0.055807152766113616 +192734,963.6700000094296,-0.05580708966472628 +192735,963.6750000094297,-0.05580702657470676 +192736,963.6800000094298,-0.05580696349605194 +192737,963.6850000094299,-0.05580690042875871 +192738,963.69000000943,-0.055806837372823964 +192739,963.6950000094301,-0.0558067743282446 +192740,963.7000000094303,-0.055806711295017505 +192741,963.7050000094304,-0.055806648273139574 +192742,963.7100000094305,-0.0558065852626077 +192743,963.7150000094306,-0.05580652226341877 +192744,963.7200000094307,-0.055806459275569695 +192745,963.7250000094308,-0.05580639629905737 +192746,963.7300000094309,-0.05580633333387868 +192747,963.735000009431,-0.05580627038003054 +192748,963.7400000094311,-0.05580620743750983 +192749,963.7450000094312,-0.055806144506313445 +192750,963.7500000094313,-0.055806081586438294 +192751,963.7550000094315,-0.055806018677881285 +192752,963.7600000094316,-0.05580595578063931 +192753,963.7650000094317,-0.05580589289470926 +192754,963.7700000094318,-0.05580583002008806 +192755,963.7750000094319,-0.05580576715677257 +192756,963.780000009432,-0.05580570430475974 +192757,963.7850000094321,-0.05580564146404644 +192758,963.7900000094322,-0.0558055786346296 +192759,963.7950000094323,-0.055805515816506106 +192760,963.8000000094324,-0.05580545300967286 +192761,963.8050000094325,-0.055805390214126775 +192762,963.8100000094327,-0.05580532742986475 +192763,963.8150000094328,-0.055805264656883694 +192764,963.8200000094329,-0.05580520189518052 +192765,963.825000009433,-0.05580513914475213 +192766,963.8300000094331,-0.05580507640559544 +192767,963.8350000094332,-0.05580501367770736 +192768,963.8400000094333,-0.05580495096108479 +192769,963.8450000094334,-0.05580488825572463 +192770,963.8500000094335,-0.05580482556162382 +192771,963.8550000094336,-0.055804762878779245 +192772,963.8600000094337,-0.05580470020718782 +192773,963.8650000094339,-0.05580463754684648 +192774,963.870000009434,-0.05580457489775212 +192775,963.8750000094341,-0.05580451225990164 +192776,963.8800000094342,-0.05580444963329198 +192777,963.8850000094343,-0.05580438701792004 +192778,963.8900000094344,-0.05580432441378274 +192779,963.8950000094345,-0.05580426182087699 +192780,963.9000000094346,-0.05580419923919971 +192781,963.9050000094347,-0.05580413666874782 +192782,963.9100000094348,-0.05580407410951823 +192783,963.915000009435,-0.05580401156150786 +192784,963.9200000094351,-0.05580394902471363 +192785,963.9250000094352,-0.055803886499132475 +192786,963.9300000094353,-0.055803823984761296 +192787,963.9350000094354,-0.055803761481597006 +192788,963.9400000094355,-0.055803698989636545 +192789,963.9450000094356,-0.05580363650887682 +192790,963.9500000094357,-0.05580357403931477 +192791,963.9550000094358,-0.055803511580947304 +192792,963.9600000094359,-0.05580344913377134 +192793,963.965000009436,-0.05580338669778382 +192794,963.9700000094361,-0.05580332427298166 +192795,963.9750000094363,-0.05580326185936178 +192796,963.9800000094364,-0.05580319945692111 +192797,963.9850000094365,-0.05580313706565657 +192798,963.9900000094366,-0.05580307468556509 +192799,963.9950000094367,-0.05580301231664362 +192800,964.0000000094368,-0.05580294995888905 +192801,964.0050000094369,-0.05580288761229832 +192802,964.010000009437,-0.055802825276868376 +192803,964.0150000094371,-0.05580276295259614 +192804,964.0200000094372,-0.05580270063947853 +192805,964.0250000094373,-0.05580263833751249 +192806,964.0300000094375,-0.05580257604669495 +192807,964.0350000094376,-0.05580251376702283 +192808,964.0400000094377,-0.05580245149849307 +192809,964.0450000094378,-0.055802389241102604 +192810,964.0500000094379,-0.05580232699484837 +192811,964.055000009438,-0.05580226475972729 +192812,964.0600000094381,-0.05580220253573631 +192813,964.0650000094382,-0.055802140322872375 +192814,964.0700000094383,-0.0558020781211324 +192815,964.0750000094384,-0.05580201593051332 +192816,964.0800000094385,-0.055801953751012094 +192817,964.0850000094387,-0.05580189158262564 +192818,964.0900000094388,-0.055801829425350905 +192819,964.0950000094389,-0.05580176727918483 +192820,964.100000009439,-0.055801705144124344 +192821,964.1050000094391,-0.055801643020166394 +192822,964.1100000094392,-0.05580158090730793 +192823,964.1150000094393,-0.05580151880554587 +192824,964.1200000094394,-0.055801456714877164 +192825,964.1250000094395,-0.05580139463529876 +192826,964.1300000094396,-0.0558013325668076 +192827,964.1350000094398,-0.05580127050940064 +192828,964.1400000094399,-0.0558012084630748 +192829,964.14500000944,-0.055801146427827034 +192830,964.1500000094401,-0.0558010844036543 +192831,964.1550000094402,-0.055801022390553526 +192832,964.1600000094403,-0.05580096038852166 +192833,964.1650000094404,-0.05580089839755566 +192834,964.1700000094405,-0.05580083641765246 +192835,964.1750000094406,-0.05580077444880902 +192836,964.1800000094407,-0.05580071249102228 +192837,964.1850000094408,-0.0558006505442892 +192838,964.190000009441,-0.05580058860860672 +192839,964.1950000094411,-0.055800526683971785 +192840,964.2000000094412,-0.05580046477038136 +192841,964.2050000094413,-0.055800402867832374 +192842,964.2100000094414,-0.055800340976321805 +192843,964.2150000094415,-0.05580027909584659 +192844,964.2200000094416,-0.05580021722640369 +192845,964.2250000094417,-0.05580015536799006 +192846,964.2300000094418,-0.055800093520602646 +192847,964.2350000094419,-0.05580003168423841 +192848,964.240000009442,-0.0557999698588943 +192849,964.2450000094422,-0.055799908044567276 +192850,964.2500000094423,-0.05579984624125429 +192851,964.2550000094424,-0.05579978444895231 +192852,964.2600000094425,-0.055799722667658286 +192853,964.2650000094426,-0.05579966089736918 +192854,964.2700000094427,-0.05579959913808195 +192855,964.2750000094428,-0.05579953738979354 +192856,964.2800000094429,-0.05579947565250094 +192857,964.285000009443,-0.0557994139262011 +192858,964.2900000094431,-0.05579935221089096 +192859,964.2950000094432,-0.055799290506567505 +192860,964.3000000094434,-0.055799228813227686 +192861,964.3050000094435,-0.05579916713086847 +192862,964.3100000094436,-0.055799105459486825 +192863,964.3150000094437,-0.05579904379907971 +192864,964.3200000094438,-0.05579898214964409 +192865,964.3250000094439,-0.05579892051117693 +192866,964.330000009444,-0.055798858883675195 +192867,964.3350000094441,-0.05579879726713585 +192868,964.3400000094442,-0.05579873566155587 +192869,964.3450000094443,-0.05579867406693221 +192870,964.3500000094444,-0.05579861248326185 +192871,964.3550000094446,-0.05579855091054175 +192872,964.3600000094447,-0.05579848934876888 +192873,964.3650000094448,-0.05579842779794022 +192874,964.3700000094449,-0.05579836625805273 +192875,964.375000009445,-0.05579830472910338 +192876,964.3800000094451,-0.055798243211089144 +192877,964.3850000094452,-0.055798181704006994 +192878,964.3900000094453,-0.0557981202078539 +192879,964.3950000094454,-0.05579805872262684 +192880,964.4000000094455,-0.055797997248322774 +192881,964.4050000094456,-0.055797935784938704 +192882,964.4100000094458,-0.05579787433247158 +192883,964.4150000094459,-0.0557978128909184 +192884,964.420000009446,-0.0557977514602761 +192885,964.4250000094461,-0.05579769004054171 +192886,964.4300000094462,-0.05579762863171217 +192887,964.4350000094463,-0.05579756723378446 +192888,964.4400000094464,-0.05579750584675557 +192889,964.4450000094465,-0.05579744447062248 +192890,964.4500000094466,-0.05579738310538217 +192891,964.4550000094467,-0.0557973217510316 +192892,964.4600000094468,-0.05579726040756778 +192893,964.465000009447,-0.05579719907498766 +192894,964.4700000094471,-0.05579713775328824 +192895,964.4750000094472,-0.05579707644246651 +192896,964.4800000094473,-0.055797015142519425 +192897,964.4850000094474,-0.055796953853444 +192898,964.4900000094475,-0.0557968925752372 +192899,964.4950000094476,-0.05579683130789601 +192900,964.5000000094477,-0.05579677005141743 +192901,964.5050000094478,-0.05579670880579842 +192902,964.5100000094479,-0.055796647571035994 +192903,964.515000009448,-0.05579658634712712 +192904,964.5200000094482,-0.05579652513406879 +192905,964.5250000094483,-0.055796463931857984 +192906,964.5300000094484,-0.05579640274049172 +192907,964.5350000094485,-0.05579634155996695 +192908,964.5400000094486,-0.055796280390280686 +192909,964.5450000094487,-0.05579621923142992 +192910,964.5500000094488,-0.05579615808341163 +192911,964.5550000094489,-0.055796096946222805 +192912,964.560000009449,-0.05579603581986045 +192913,964.5650000094491,-0.05579597470432155 +192914,964.5700000094492,-0.05579591359960311 +192915,964.5750000094494,-0.055795852505702105 +192916,964.5800000094495,-0.05579579142261554 +192917,964.5850000094496,-0.055795730350340404 +192918,964.5900000094497,-0.055795669288873695 +192919,964.5950000094498,-0.05579560823821241 +192920,964.6000000094499,-0.05579554719835355 +192921,964.60500000945,-0.05579548616929411 +192922,964.6100000094501,-0.055795425151031086 +192923,964.6150000094502,-0.055795364143561475 +192924,964.6200000094503,-0.05579530314688226 +192925,964.6250000094504,-0.05579524216099047 +192926,964.6300000094506,-0.05579518118588308 +192927,964.6350000094507,-0.05579512022155712 +192928,964.6400000094508,-0.05579505926800955 +192929,964.6450000094509,-0.055794998325237405 +192930,964.650000009451,-0.055794937393237674 +192931,964.6550000094511,-0.055794876472007364 +192932,964.6600000094512,-0.055794815561543476 +192933,964.6650000094513,-0.055794754661843 +192934,964.6700000094514,-0.05579469377290296 +192935,964.6750000094515,-0.05579463289472035 +192936,964.6800000094516,-0.05579457202729219 +192937,964.6850000094518,-0.055794511170615464 +192938,964.6900000094519,-0.0557944503246872 +192939,964.695000009452,-0.055794389489504395 +192940,964.7000000094521,-0.05579432866506406 +192941,964.7050000094522,-0.05579426785136319 +192942,964.7100000094523,-0.05579420704839882 +192943,964.7150000094524,-0.05579414625616794 +192944,964.7200000094525,-0.055794085474667555 +192945,964.7250000094526,-0.05579402470389469 +192946,964.7300000094527,-0.05579396394384635 +192947,964.7350000094528,-0.055793903194519545 +192948,964.740000009453,-0.05579384245591129 +192949,964.7450000094531,-0.055793781728018604 +192950,964.7500000094532,-0.05579372101083848 +192951,964.7550000094533,-0.05579366030436796 +192952,964.7600000094534,-0.05579359960860404 +192953,964.7650000094535,-0.05579353892354374 +192954,964.7700000094536,-0.05579347824918408 +192955,964.7750000094537,-0.055793417585522066 +192956,964.7800000094538,-0.055793356932554716 +192957,964.7850000094539,-0.055793296290279064 +192958,964.790000009454,-0.0557932356586921 +192959,964.7950000094542,-0.05579317503779086 +192960,964.8000000094543,-0.055793114427572364 +192961,964.8050000094544,-0.05579305382803364 +192962,964.8100000094545,-0.05579299323917168 +192963,964.8150000094546,-0.05579293266098353 +192964,964.8200000094547,-0.0557928720934662 +192965,964.8250000094548,-0.055792811536616714 +192966,964.8300000094549,-0.0557927509904321 +192967,964.835000009455,-0.055792690454909366 +192968,964.8400000094551,-0.05579262993004555 +192969,964.8450000094552,-0.05579256941583768 +192970,964.8500000094554,-0.055792508912282754 +192971,964.8550000094555,-0.05579244841937782 +192972,964.8600000094556,-0.0557923879371199 +192973,964.8650000094557,-0.05579232746550602 +192974,964.8700000094558,-0.055792267004533214 +192975,964.8750000094559,-0.055792206554198503 +192976,964.880000009456,-0.055792146114498904 +192977,964.8850000094561,-0.05579208568543146 +192978,964.8900000094562,-0.055792025266993193 +192979,964.8950000094563,-0.055791964859181135 +192980,964.9000000094564,-0.055791904461992316 +192981,964.9050000094566,-0.05579184407542377 +192982,964.9100000094567,-0.05579178369947252 +192983,964.9150000094568,-0.05579172333413561 +192984,964.9200000094569,-0.055791662979410066 +192985,964.925000009457,-0.05579160263529292 +192986,964.9300000094571,-0.055791542301781204 +192987,964.9350000094572,-0.05579148197887196 +192988,964.9400000094573,-0.055791421666562216 +192989,964.9450000094574,-0.05579136136484901 +192990,964.9500000094575,-0.05579130107372937 +192991,964.9550000094576,-0.055791240793200345 +192992,964.9600000094578,-0.05579118052325896 +192993,964.9650000094579,-0.05579112026390226 +192994,964.970000009458,-0.055791060015127285 +192995,964.9750000094581,-0.055790999776931076 +192996,964.9800000094582,-0.055790939549310664 +192997,964.9850000094583,-0.05579087933226309 +192998,964.9900000094584,-0.055790819125785394 +192999,964.9950000094585,-0.05579075892987462 +193000,965.0000000094586,-0.0557906987445278 +193001,965.0050000094587,-0.055790638569742 +193002,965.0100000094588,-0.05579057840551424 +193003,965.015000009459,-0.05579051825184158 +193004,965.0200000094591,-0.05579045810872104 +193005,965.0250000094592,-0.05579039797614968 +193006,965.0300000094593,-0.055790337854124544 +193007,965.0350000094594,-0.05579027774264269 +193008,965.0400000094595,-0.05579021764170113 +193009,965.0450000094596,-0.055790157551296946 +193010,965.0500000094597,-0.05579009747142716 +193011,965.0550000094598,-0.05579003740208883 +193012,965.0600000094599,-0.05578997734327901 +193013,965.06500000946,-0.05578991729499474 +193014,965.0700000094602,-0.055789857257233066 +193015,965.0750000094603,-0.055789797229991056 +193016,965.0800000094604,-0.05578973721326574 +193017,965.0850000094605,-0.05578967720705418 +193018,965.0900000094606,-0.055789617211353434 +193019,965.0950000094607,-0.05578955722616054 +193020,965.1000000094608,-0.05578949725147255 +193021,965.1050000094609,-0.05578943728728653 +193022,965.110000009461,-0.05578937733359952 +193023,965.1150000094611,-0.055789317390408585 +193024,965.1200000094613,-0.055789257457710774 +193025,965.1250000094614,-0.05578919753550315 +193026,965.1300000094615,-0.05578913762378275 +193027,965.1350000094616,-0.055789077722546654 +193028,965.1400000094617,-0.055789017831791896 +193029,965.1450000094618,-0.055788957951515554 +193030,965.1500000094619,-0.05578889808171468 +193031,965.155000009462,-0.05578883822238633 +193032,965.1600000094621,-0.05578877837352757 +193033,965.1650000094622,-0.055788718535135444 +193034,965.1700000094623,-0.055788658707207034 +193035,965.1750000094625,-0.05578859888973939 +193036,965.1800000094626,-0.05578853908272957 +193037,965.1850000094627,-0.055788479286174635 +193038,965.1900000094628,-0.055788419500071657 +193039,965.1950000094629,-0.05578835972441769 +193040,965.200000009463,-0.05578829995920981 +193041,965.2050000094631,-0.055788240204445075 +193042,965.2100000094632,-0.055788180460120546 +193043,965.2150000094633,-0.05578812072623329 +193044,965.2200000094634,-0.05578806100278038 +193045,965.2250000094635,-0.05578800128975888 +193046,965.2300000094637,-0.055787941587165844 +193047,965.2350000094638,-0.055787881894998365 +193048,965.2400000094639,-0.05578782221325349 +193049,965.245000009464,-0.05578776254192829 +193050,965.2500000094641,-0.05578770288101984 +193051,965.2550000094642,-0.05578764323052521 +193052,965.2600000094643,-0.05578758359044146 +193053,965.2650000094644,-0.05578752396076568 +193054,965.2700000094645,-0.055787464341494925 +193055,965.2750000094646,-0.055787404732626285 +193056,965.2800000094647,-0.05578734513415681 +193057,965.2850000094649,-0.055787285546083594 +193058,965.290000009465,-0.05578722596840371 +193059,965.2950000094651,-0.05578716640111421 +193060,965.3000000094652,-0.055787106844212175 +193061,965.3050000094653,-0.0557870472976947 +193062,965.3100000094654,-0.05578698776155885 +193063,965.3150000094655,-0.0557869282358017 +193064,965.3200000094656,-0.05578686872042032 +193065,965.3250000094657,-0.05578680921541179 +193066,965.3300000094658,-0.0557867497207732 +193067,965.335000009466,-0.05578669023650163 +193068,965.340000009466,-0.055786630762594144 +193069,965.3450000094662,-0.055786571299047835 +193070,965.3500000094663,-0.05578651184585978 +193071,965.3550000094664,-0.055786452403027056 +193072,965.3600000094665,-0.055786392970546744 +193073,965.3650000094666,-0.05578633354841594 +193074,965.3700000094667,-0.0557862741366317 +193075,965.3750000094668,-0.05578621473519114 +193076,965.3800000094669,-0.055786155344091315 +193077,965.385000009467,-0.055786095963329334 +193078,965.3900000094671,-0.055786036592902266 +193079,965.3950000094673,-0.0557859772328072 +193080,965.4000000094674,-0.05578591788304121 +193081,965.4050000094675,-0.055785858543601394 +193082,965.4100000094676,-0.055785799214484844 +193083,965.4150000094677,-0.055785739895688635 +193084,965.4200000094678,-0.05578568058720988 +193085,965.4250000094679,-0.05578562128904565 +193086,965.430000009468,-0.05578556200119303 +193087,965.4350000094681,-0.05578550272364912 +193088,965.4400000094682,-0.055785443456411 +193089,965.4450000094683,-0.05578538419947577 +193090,965.4500000094685,-0.05578532495284051 +193091,965.4550000094686,-0.05578526571650232 +193092,965.4600000094687,-0.05578520649045831 +193093,965.4650000094688,-0.055785147274705536 +193094,965.4700000094689,-0.05578508806924113 +193095,965.475000009469,-0.05578502887406215 +193096,965.4800000094691,-0.05578496968916572 +193097,965.4850000094692,-0.055784910514548924 +193098,965.4900000094693,-0.05578485135020885 +193099,965.4950000094694,-0.05578479219614262 +193100,965.5000000094695,-0.05578473305234731 +193101,965.5050000094697,-0.055784673918820006 +193102,965.5100000094698,-0.05578461479555783 +193103,965.5150000094699,-0.055784555682557864 +193104,965.52000000947,-0.05578449657981723 +193105,965.5250000094701,-0.055784437487333007 +193106,965.5300000094702,-0.0557843784051023 +193107,965.5350000094703,-0.055784319333122216 +193108,965.5400000094704,-0.05578426027138984 +193109,965.5450000094705,-0.0557842012199023 +193110,965.5500000094706,-0.05578414217865668 +193111,965.5550000094707,-0.05578408314765008 +193112,965.5600000094709,-0.05578402412687962 +193113,965.565000009471,-0.055783965116342385 +193114,965.5700000094711,-0.05578390611603551 +193115,965.5750000094712,-0.055783847125956076 +193116,965.5800000094713,-0.05578378814610119 +193117,965.5850000094714,-0.055783729176467955 +193118,965.5900000094715,-0.0557836702170535 +193119,965.5950000094716,-0.05578361126785491 +193120,965.6000000094717,-0.05578355232886929 +193121,965.6050000094718,-0.055783493400093774 +193122,965.610000009472,-0.05578343448152545 +193123,965.615000009472,-0.05578337557316144 +193124,965.6200000094722,-0.05578331667499885 +193125,965.6250000094723,-0.05578325778703477 +193126,965.6300000094724,-0.05578319890926635 +193127,965.6350000094725,-0.055783140041690674 +193128,965.6400000094726,-0.05578308118430486 +193129,965.6450000094727,-0.05578302233710603 +193130,965.6500000094728,-0.0557829635000913 +193131,965.6550000094729,-0.05578290467325776 +193132,965.660000009473,-0.05578284585660255 +193133,965.6650000094731,-0.05578278705012277 +193134,965.6700000094733,-0.055782728253815535 +193135,965.6750000094734,-0.05578266946767798 +193136,965.6800000094735,-0.05578261069170721 +193137,965.6850000094736,-0.055782551925900335 +193138,965.6900000094737,-0.05578249317025449 +193139,965.6950000094738,-0.05578243442476676 +193140,965.7000000094739,-0.0557823756894343 +193141,965.705000009474,-0.055782316964254224 +193142,965.7100000094741,-0.05578225824922364 +193143,965.7150000094742,-0.055782199544339675 +193144,965.7200000094743,-0.05578214084959945 +193145,965.7250000094745,-0.05578208216500008 +193146,965.7300000094746,-0.05578202349053869 +193147,965.7350000094747,-0.055781964826212414 +193148,965.7400000094748,-0.05578190617201837 +193149,965.7450000094749,-0.055781847527953676 +193150,965.750000009475,-0.055781788894015465 +193151,965.7550000094751,-0.055781730270200856 +193152,965.7600000094752,-0.05578167165650697 +193153,965.7650000094753,-0.05578161305293095 +193154,965.7700000094754,-0.055781554459469904 +193155,965.7750000094755,-0.055781495876120975 +193156,965.7800000094757,-0.05578143730288127 +193157,965.7850000094758,-0.055781378739747936 +193158,965.7900000094759,-0.055781320186718095 +193159,965.795000009476,-0.05578126164378888 +193160,965.8000000094761,-0.055781203110957425 +193161,965.8050000094762,-0.055781144588220845 +193162,965.8100000094763,-0.05578108607557627 +193163,965.8150000094764,-0.05578102757302085 +193164,965.8200000094765,-0.05578096908055172 +193165,965.8250000094766,-0.05578091059816599 +193166,965.8300000094767,-0.05578085212586081 +193167,965.8350000094769,-0.0557807936636333 +193168,965.840000009477,-0.055780735211480616 +193169,965.8450000094771,-0.05578067676939988 +193170,965.8500000094772,-0.05578061833738822 +193171,965.8550000094773,-0.05578055991544278 +193172,965.8600000094774,-0.0557805015035607 +193173,965.8650000094775,-0.05578044310173911 +193174,965.8700000094776,-0.05578038470997515 +193175,965.8750000094777,-0.055780326328265975 +193176,965.8800000094778,-0.055780267956608696 +193177,965.885000009478,-0.055780209595000456 +193178,965.8900000094781,-0.055780151243438415 +193179,965.8950000094782,-0.05578009290191969 +193180,965.9000000094783,-0.05578003457044144 +193181,965.9050000094784,-0.055779976249000815 +193182,965.9100000094785,-0.05577991793759492 +193183,965.9150000094786,-0.05577985963622092 +193184,965.9200000094787,-0.055779801344875965 +193185,965.9250000094788,-0.055779743063557194 +193186,965.9300000094789,-0.055779684792261745 +193187,965.935000009479,-0.055779626530986774 +193188,965.9400000094791,-0.05577956827972942 +193189,965.9450000094793,-0.05577951003848682 +193190,965.9500000094794,-0.055779451807256124 +193191,965.9550000094795,-0.05577939358603449 +193192,965.9600000094796,-0.05577933537481906 +193193,965.9650000094797,-0.05577927717360697 +193194,965.9700000094798,-0.05577921898239538 +193195,965.9750000094799,-0.055779160801181435 +193196,965.98000000948,-0.055779102629962295 +193197,965.9850000094801,-0.05577904446873509 +193198,965.9900000094802,-0.055778986317497004 +193199,965.9950000094803,-0.05577892817624515 +193200,966.0000000094805,-0.0557788700449767 +193201,966.0050000094806,-0.05577881192368881 +193202,966.0100000094807,-0.05577875381237862 +193203,966.0150000094808,-0.0557786957110433 +193204,966.0200000094809,-0.05577863761967999 +193205,966.025000009481,-0.05577857953828584 +193206,966.0300000094811,-0.05577852146685802 +193207,966.0350000094812,-0.055778463405393684 +193208,966.0400000094813,-0.05577840535388998 +193209,966.0450000094814,-0.055778347312344066 +193210,966.0500000094816,-0.0557782892807531 +193211,966.0550000094817,-0.055778231259114235 +193212,966.0600000094818,-0.05577817324742465 +193213,966.0650000094819,-0.05577811524568148 +193214,966.070000009482,-0.0557780572538819 +193215,966.0750000094821,-0.05577799927202305 +193216,966.0800000094822,-0.055777941300102114 +193217,966.0850000094823,-0.055777883338116244 +193218,966.0900000094824,-0.0557778253860626 +193219,966.0950000094825,-0.05577776744393834 +193220,966.1000000094826,-0.05577770951174064 +193221,966.1050000094828,-0.05577765158946666 +193222,966.1100000094829,-0.055777593677113546 +193223,966.115000009483,-0.055777535774678484 +193224,966.1200000094831,-0.05577747788215862 +193225,966.1250000094832,-0.055777419999551145 +193226,966.1300000094833,-0.05577736212685319 +193227,966.1350000094834,-0.05577730426406195 +193228,966.1400000094835,-0.05577724641117459 +193229,966.1450000094836,-0.055777188568188266 +193230,966.1500000094837,-0.05577713073510015 +193231,966.1550000094838,-0.0557770729119074 +193232,966.160000009484,-0.0557770150986072 +193233,966.1650000094841,-0.05577695729519671 +193234,966.1700000094842,-0.05577689950167312 +193235,966.1750000094843,-0.055776841718033585 +193236,966.1800000094844,-0.055776783944275266 +193237,966.1850000094845,-0.05577672618039536 +193238,966.1900000094846,-0.055776668426391014 +193239,966.1950000094847,-0.05577661068225942 +193240,966.2000000094848,-0.05577655294799774 +193241,966.2050000094849,-0.055776495223603166 +193242,966.210000009485,-0.05577643750907285 +193243,966.2150000094852,-0.055776379804403975 +193244,966.2200000094853,-0.05577632210959372 +193245,966.2250000094854,-0.05577626442463927 +193246,966.2300000094855,-0.05577620674953778 +193247,966.2350000094856,-0.05577614908428643 +193248,966.2400000094857,-0.05577609142888241 +193249,966.2450000094858,-0.0557760337833229 +193250,966.2500000094859,-0.05577597614760508 +193251,966.255000009486,-0.055775918521726114 +193252,966.2600000094861,-0.05577586090568319 +193253,966.2650000094862,-0.05577580329947349 +193254,966.2700000094864,-0.0557757457030942 +193255,966.2750000094865,-0.0557756881165425 +193256,966.2800000094866,-0.05577563053981555 +193257,966.2850000094867,-0.05577557297291057 +193258,966.2900000094868,-0.05577551541582471 +193259,966.2950000094869,-0.05577545786855518 +193260,966.300000009487,-0.05577540033109915 +193261,966.3050000094871,-0.055775342803453795 +193262,966.3100000094872,-0.05577528528561632 +193263,966.3150000094873,-0.05577522777758391 +193264,966.3200000094874,-0.055775170279353734 +193265,966.3250000094876,-0.05577511279092299 +193266,966.3300000094877,-0.05577505531228887 +193267,966.3350000094878,-0.05577499784344856 +193268,966.3400000094879,-0.055774940384399244 +193269,966.345000009488,-0.05577488293513811 +193270,966.3500000094881,-0.055774825495662345 +193271,966.3550000094882,-0.05577476806596914 +193272,966.3600000094883,-0.05577471064605569 +193273,966.3650000094884,-0.0557746532359192 +193274,966.3700000094885,-0.055774595835556856 +193275,966.3750000094886,-0.05577453844496583 +193276,966.3800000094888,-0.05577448106414333 +193277,966.3850000094889,-0.05577442369308655 +193278,966.390000009489,-0.055774366331792675 +193279,966.3950000094891,-0.05577430898025891 +193280,966.4000000094892,-0.055774251638482444 +193281,966.4050000094893,-0.055774194306460474 +193282,966.4100000094894,-0.0557741369841902 +193283,966.4150000094895,-0.0557740796716688 +193284,966.4200000094896,-0.0557740223688935 +193285,966.4250000094897,-0.055773965075861485 +193286,966.4300000094898,-0.055773907792569945 +193287,966.43500000949,-0.055773850519016094 +193288,966.4400000094901,-0.05577379325519712 +193289,966.4450000094902,-0.05577373600111022 +193290,966.4500000094903,-0.05577367875675262 +193291,966.4550000094904,-0.05577362152212149 +193292,966.4600000094905,-0.055773564297214036 +193293,966.4650000094906,-0.05577350708202748 +193294,966.4700000094907,-0.055773449876559 +193295,966.4750000094908,-0.05577339268080581 +193296,966.4800000094909,-0.055773335494765125 +193297,966.485000009491,-0.05577327831843412 +193298,966.4900000094912,-0.055773221151810035 +193299,966.4950000094913,-0.05577316399489005 +193300,966.5000000094914,-0.05577310684767139 +193301,966.5050000094915,-0.05577304971015124 +193302,966.5100000094916,-0.055772992582326826 +193303,966.5150000094917,-0.055772935464195345 +193304,966.5200000094918,-0.055772878355754 +193305,966.5250000094919,-0.05577282125700002 +193306,966.530000009492,-0.05577276416793059 +193307,966.5350000094921,-0.05577270708854293 +193308,966.5400000094922,-0.055772650018834254 +193309,966.5450000094924,-0.05577259295880177 +193310,966.5500000094925,-0.05577253590844268 +193311,966.5550000094926,-0.0557724788677542 +193312,966.5600000094927,-0.05577242183673356 +193313,966.5650000094928,-0.055772364815377944 +193314,966.5700000094929,-0.055772307803684584 +193315,966.575000009493,-0.055772250801650686 +193316,966.5800000094931,-0.05577219380927347 +193317,966.5850000094932,-0.055772136826550155 +193318,966.5900000094933,-0.05577207985347795 +193319,966.5950000094934,-0.05577202289005406 +193320,966.6000000094936,-0.05577196593627572 +193321,966.6050000094937,-0.05577190899214014 +193322,966.6100000094938,-0.05577185205764454 +193323,966.6150000094939,-0.05577179513278613 +193324,966.620000009494,-0.05577173821756213 +193325,966.6250000094941,-0.05577168131196977 +193326,966.6300000094942,-0.05577162441600626 +193327,966.6350000094943,-0.05577156752966882 +193328,966.6400000094944,-0.05577151065295466 +193329,966.6450000094945,-0.05577145378586103 +193330,966.6500000094946,-0.055771396928385134 +193331,966.6550000094948,-0.0557713400805242 +193332,966.6600000094949,-0.05577128324227545 +193333,966.665000009495,-0.055771226413636084 +193334,966.6700000094951,-0.05577116959460337 +193335,966.6750000094952,-0.05577111278517449 +193336,966.6800000094953,-0.05577105598534671 +193337,966.6850000094954,-0.055770999195117216 +193338,966.6900000094955,-0.05577094241448326 +193339,966.6950000094956,-0.055770885643442056 +193340,966.7000000094957,-0.055770828881990836 +193341,966.7050000094958,-0.05577077213012683 +193342,966.710000009496,-0.05577071538784726 +193343,966.7150000094961,-0.055770658655149366 +193344,966.7200000094962,-0.05577060193203036 +193345,966.7250000094963,-0.05577054521848748 +193346,966.7300000094964,-0.05577048851451796 +193347,966.7350000094965,-0.055770431820119044 +193348,966.7400000094966,-0.05577037513528794 +193349,966.7450000094967,-0.05577031846002189 +193350,966.7500000094968,-0.05577026179431812 +193351,966.7550000094969,-0.055770205138173864 +193352,966.760000009497,-0.055770148491586354 +193353,966.7650000094972,-0.05577009185455283 +193354,966.7700000094973,-0.05577003522707054 +193355,966.7750000094974,-0.05576997860913669 +193356,966.7800000094975,-0.05576992200074854 +193357,966.7850000094976,-0.055769865401903304 +193358,966.7900000094977,-0.05576980881259824 +193359,966.7950000094978,-0.05576975223283059 +193360,966.8000000094979,-0.055769695662597554 +193361,966.805000009498,-0.055769639101896404 +193362,966.8100000094981,-0.05576958255072437 +193363,966.8150000094982,-0.05576952600907869 +193364,966.8200000094984,-0.0557694694769566 +193365,966.8250000094985,-0.05576941295435535 +193366,966.8300000094986,-0.055769356441272164 +193367,966.8350000094987,-0.055769299937704304 +193368,966.8400000094988,-0.055769243443649 +193369,966.8450000094989,-0.05576918695910351 +193370,966.850000009499,-0.05576913048406506 +193371,966.8550000094991,-0.0557690740185309 +193372,966.8600000094992,-0.05576901756249827 +193373,966.8650000094993,-0.05576896111596442 +193374,966.8700000094994,-0.05576890467892659 +193375,966.8750000094996,-0.05576884825138203 +193376,966.8800000094997,-0.05576879183332798 +193377,966.8850000094998,-0.05576873542476169 +193378,966.8900000094999,-0.05576867902568041 +193379,966.8950000095,-0.05576862263608139 +193380,966.9000000095001,-0.055768566255961875 +193381,966.9050000095002,-0.055768509885319104 +193382,966.9100000095003,-0.055768453524150344 +193383,966.9150000095004,-0.055768397172452834 +193384,966.9200000095005,-0.055768340830223834 +193385,966.9250000095006,-0.05576828449746059 +193386,966.9300000095008,-0.05576822817416034 +193387,966.9350000095009,-0.05576817186032037 +193388,966.940000009501,-0.0557681155559379 +193389,966.9450000095011,-0.05576805926101018 +193390,966.9500000095012,-0.05576800297553449 +193391,966.9550000095013,-0.055767946699508075 +193392,966.9600000095014,-0.05576789043292819 +193393,966.9650000095015,-0.05576783417579208 +193394,966.9700000095016,-0.055767777928097007 +193395,966.9750000095017,-0.05576772168984023 +193396,966.9800000095019,-0.055767665461018995 +193397,966.985000009502,-0.055767609241630565 +193398,966.9900000095021,-0.05576755303167221 +193399,966.9950000095022,-0.055767496831141176 +193400,967.0000000095023,-0.05576744064003472 +193401,967.0050000095024,-0.055767384458350125 +193402,967.0100000095025,-0.05576732828608462 +193403,967.0150000095026,-0.055767272123235484 +193404,967.0200000095027,-0.05576721596979998 +193405,967.0250000095028,-0.055767159825775355 +193406,967.0300000095029,-0.055767103691158865 +193407,967.035000009503,-0.055767047565947796 +193408,967.0400000095032,-0.0557669914501394 +193409,967.0450000095033,-0.05576693534373095 +193410,967.0500000095034,-0.0557668792467197 +193411,967.0550000095035,-0.05576682315910291 +193412,967.0600000095036,-0.055766767080877855 +193413,967.0650000095037,-0.055766711012041795 +193414,967.0700000095038,-0.055766654952592004 +193415,967.0750000095039,-0.05576659890252574 +193416,967.080000009504,-0.05576654286184028 +193417,967.0850000095041,-0.05576648683053287 +193418,967.0900000095043,-0.0557664308086008 +193419,967.0950000095044,-0.05576637479604134 +193420,967.1000000095045,-0.05576631879285175 +193421,967.1050000095046,-0.055766262799029305 +193422,967.1100000095047,-0.05576620681457128 +193423,967.1150000095048,-0.055766150839474934 +193424,967.1200000095049,-0.05576609487373754 +193425,967.125000009505,-0.05576603891735638 +193426,967.1300000095051,-0.055765982970328726 +193427,967.1350000095052,-0.05576592703265183 +193428,967.1400000095053,-0.05576587110432298 +193429,967.1450000095055,-0.05576581518533946 +193430,967.1500000095056,-0.055765759275698545 +193431,967.1550000095057,-0.05576570337539749 +193432,967.1600000095058,-0.055765647484433585 +193433,967.1650000095059,-0.05576559160280411 +193434,967.170000009506,-0.05576553573050633 +193435,967.1750000095061,-0.055765479867537535 +193436,967.1800000095062,-0.05576542401389499 +193437,967.1850000095063,-0.05576536816957598 +193438,967.1900000095064,-0.055765312334577787 +193439,967.1950000095065,-0.05576525650889768 +193440,967.2000000095067,-0.055765200692532955 +193441,967.2050000095068,-0.05576514488548088 +193442,967.2100000095069,-0.055765089087738744 +193443,967.215000009507,-0.05576503329930382 +193444,967.2200000095071,-0.055764977520173405 +193445,967.2250000095072,-0.055764921750344754 +193446,967.2300000095073,-0.05576486598981518 +193447,967.2350000095074,-0.055764810238581944 +193448,967.2400000095075,-0.05576475449664234 +193449,967.2450000095076,-0.05576469876399365 +193450,967.2500000095077,-0.05576464304063317 +193451,967.2550000095079,-0.05576458732655819 +193452,967.260000009508,-0.05576453162176597 +193453,967.2650000095081,-0.05576447592625381 +193454,967.2700000095082,-0.05576442024001899 +193455,967.2750000095083,-0.05576436456305882 +193456,967.2800000095084,-0.05576430889537056 +193457,967.2850000095085,-0.05576425323695152 +193458,967.2900000095086,-0.05576419758779898 +193459,967.2950000095087,-0.05576414194791023 +193460,967.3000000095088,-0.05576408631728258 +193461,967.305000009509,-0.05576403069591329 +193462,967.310000009509,-0.05576397508379967 +193463,967.3150000095092,-0.055763919480939 +193464,967.3200000095093,-0.05576386388732858 +193465,967.3250000095094,-0.05576380830296571 +193466,967.3300000095095,-0.05576375272784769 +193467,967.3350000095096,-0.05576369716197179 +193468,967.3400000095097,-0.05576364160533531 +193469,967.3450000095098,-0.055763586057935556 +193470,967.3500000095099,-0.055763530519769816 +193471,967.35500000951,-0.05576347499083539 +193472,967.3600000095101,-0.05576341947112958 +193473,967.3650000095103,-0.055763363960649674 +193474,967.3700000095104,-0.05576330845939296 +193475,967.3750000095105,-0.05576325296735676 +193476,967.3800000095106,-0.05576319748453837 +193477,967.3850000095107,-0.055763142010935074 +193478,967.3900000095108,-0.055763086546544174 +193479,967.3950000095109,-0.05576303109136298 +193480,967.400000009511,-0.055762975645388776 +193481,967.4050000095111,-0.05576292020861888 +193482,967.4100000095112,-0.055762864781050595 +193483,967.4150000095113,-0.05576280936268123 +193484,967.4200000095115,-0.055762753953508055 +193485,967.4250000095116,-0.055762698553528396 +193486,967.4300000095117,-0.055762643162739566 +193487,967.4350000095118,-0.055762587781138864 +193488,967.4400000095119,-0.05576253240872357 +193489,967.445000009512,-0.055762477045491025 +193490,967.4500000095121,-0.05576242169143852 +193491,967.4550000095122,-0.055762366346563355 +193492,967.4600000095123,-0.05576231101086285 +193493,967.4650000095124,-0.05576225568433431 +193494,967.4700000095125,-0.05576220036697504 +193495,967.4750000095127,-0.05576214505878234 +193496,967.4800000095128,-0.055762089759753525 +193497,967.4850000095129,-0.0557620344698859 +193498,967.490000009513,-0.0557619791891768 +193499,967.4950000095131,-0.055761923917623524 +193500,967.5000000095132,-0.05576186865522337 +193501,967.5050000095133,-0.055761813401973656 +193502,967.5100000095134,-0.055761758157871696 +193503,967.5150000095135,-0.05576170292291481 +193504,967.5200000095136,-0.055761647697100306 +193505,967.5250000095137,-0.05576159248042549 +193506,967.5300000095139,-0.05576153727288768 +193507,967.535000009514,-0.05576148207448419 +193508,967.5400000095141,-0.055761426885212344 +193509,967.5450000095142,-0.055761371705069465 +193510,967.5500000095143,-0.055761316534052856 +193511,967.5550000095144,-0.05576126137215982 +193512,967.5600000095145,-0.0557612062193877 +193513,967.5650000095146,-0.05576115107573381 +193514,967.5700000095147,-0.05576109594119545 +193515,967.5750000095148,-0.05576104081576996 +193516,967.580000009515,-0.05576098569945465 +193517,967.585000009515,-0.05576093059224685 +193518,967.5900000095152,-0.05576087549414387 +193519,967.5950000095153,-0.05576082040514304 +193520,967.6000000095154,-0.055760765325241664 +193521,967.6050000095155,-0.05576071025443709 +193522,967.6100000095156,-0.05576065519272662 +193523,967.6150000095157,-0.055760600140107586 +193524,967.6200000095158,-0.0557605450965773 +193525,967.6250000095159,-0.0557604900621331 +193526,967.630000009516,-0.05576043503677231 +193527,967.6350000095161,-0.05576038002049225 +193528,967.6400000095163,-0.05576032501329026 +193529,967.6450000095164,-0.05576027001516364 +193530,967.6500000095165,-0.055760215026109734 +193531,967.6550000095166,-0.05576016004612588 +193532,967.6600000095167,-0.055760105075209385 +193533,967.6650000095168,-0.05576005011335758 +193534,967.6700000095169,-0.0557599951605678 +193535,967.675000009517,-0.05575994021683738 +193536,967.6800000095171,-0.055759885282163635 +193537,967.6850000095172,-0.055759830356543916 +193538,967.6900000095173,-0.05575977543997554 +193539,967.6950000095175,-0.05575972053245585 +193540,967.7000000095176,-0.05575966563398215 +193541,967.7050000095177,-0.05575961074455181 +193542,967.7100000095178,-0.055759555864162126 +193543,967.7150000095179,-0.05575950099281046 +193544,967.720000009518,-0.05575944613049414 +193545,967.7250000095181,-0.055759391277210496 +193546,967.7300000095182,-0.05575933643295686 +193547,967.7350000095183,-0.05575928159773058 +193548,967.7400000095184,-0.055759226771528975 +193549,967.7450000095185,-0.0557591719543494 +193550,967.7500000095187,-0.05575911714618917 +193551,967.7550000095188,-0.05575906234704564 +193552,967.7600000095189,-0.055759007556916144 +193553,967.765000009519,-0.055758952775798024 +193554,967.7700000095191,-0.05575889800368861 +193555,967.7750000095192,-0.05575884324058526 +193556,967.7800000095193,-0.0557587884864853 +193557,967.7850000095194,-0.05575873374138608 +193558,967.7900000095195,-0.05575867900528493 +193559,967.7950000095196,-0.0557586242781792 +193560,967.8000000095197,-0.05575856956006622 +193561,967.8050000095199,-0.055758514850943346 +193562,967.81000000952,-0.055758460150807924 +193563,967.8150000095201,-0.05575840545965728 +193564,967.8200000095202,-0.05575835077748879 +193565,967.8250000095203,-0.05575829610429976 +193566,967.8300000095204,-0.055758241440087564 +193567,967.8350000095205,-0.05575818678484953 +193568,967.8400000095206,-0.05575813213858302 +193569,967.8450000095207,-0.05575807750128537 +193570,967.8500000095208,-0.05575802287295393 +193571,967.855000009521,-0.05575796825358606 +193572,967.8600000095211,-0.05575791364317909 +193573,967.8650000095212,-0.05575785904173038 +193574,967.8700000095213,-0.05575780444923729 +193575,967.8750000095214,-0.055757749865697134 +193576,967.8800000095215,-0.0557576952911073 +193577,967.8850000095216,-0.05575764072546512 +193578,967.8900000095217,-0.055757586168767956 +193579,967.8950000095218,-0.05575753162101314 +193580,967.9000000095219,-0.055757477082198054 +193581,967.905000009522,-0.055757422552320024 +193582,967.9100000095222,-0.05575736803137643 +193583,967.9150000095223,-0.0557573135193646 +193584,967.9200000095224,-0.05575725901628191 +193585,967.9250000095225,-0.05575720452212571 +193586,967.9300000095226,-0.055757150036893334 +193587,967.9350000095227,-0.05575709556058217 +193588,967.9400000095228,-0.055757041093189574 +193589,967.9450000095229,-0.055756986634712874 +193590,967.950000009523,-0.05575693218514945 +193591,967.9550000095231,-0.05575687774449666 +193592,967.9600000095232,-0.05575682331275186 +193593,967.9650000095234,-0.055756768889912406 +193594,967.9700000095235,-0.055756714475975654 +193595,967.9750000095236,-0.055756660070938976 +193596,967.9800000095237,-0.05575660567479972 +193597,967.9850000095238,-0.05575655128755526 +193598,967.9900000095239,-0.05575649690920294 +193599,967.995000009524,-0.05575644253974014 +193600,968.0000000095241,-0.05575638817916422 +193601,968.0050000095242,-0.05575633382747253 +193602,968.0100000095243,-0.055756279484662455 +193603,968.0150000095244,-0.05575622515073136 +193604,968.0200000095246,-0.055756170825676576 +193605,968.0250000095247,-0.0557561165094955 +193606,968.0300000095248,-0.05575606220218549 +193607,968.0350000095249,-0.05575600790374392 +193608,968.040000009525,-0.05575595361416815 +193609,968.0450000095251,-0.055755899333455546 +193610,968.0500000095252,-0.05575584506160347 +193611,968.0550000095253,-0.055755790798609296 +193612,968.0600000095254,-0.05575573654447039 +193613,968.0650000095255,-0.055755682299184144 +193614,968.0700000095256,-0.055755628062747906 +193615,968.0750000095258,-0.05575557383515904 +193616,968.0800000095259,-0.05575551961641494 +193617,968.085000009526,-0.055755465406512966 +193618,968.0900000095261,-0.05575541120545049 +193619,968.0950000095262,-0.055755357013224885 +193620,968.1000000095263,-0.055755302829833514 +193621,968.1050000095264,-0.05575524865527376 +193622,968.1100000095265,-0.055755194489543004 +193623,968.1150000095266,-0.05575514033263862 +193624,968.1200000095267,-0.05575508618455797 +193625,968.1250000095268,-0.055755032045298435 +193626,968.130000009527,-0.05575497791485741 +193627,968.1350000095271,-0.055754923793232256 +193628,968.1400000095272,-0.055754869680420344 +193629,968.1450000095273,-0.05575481557641905 +193630,968.1500000095274,-0.055754761481225774 +193631,968.1550000095275,-0.055754707394837864 +193632,968.1600000095276,-0.05575465331725273 +193633,968.1650000095277,-0.05575459924846774 +193634,968.1700000095278,-0.05575454518848027 +193635,968.1750000095279,-0.055754491137287705 +193636,968.180000009528,-0.05575443709488742 +193637,968.1850000095282,-0.0557543830612768 +193638,968.1900000095283,-0.05575432903645323 +193639,968.1950000095284,-0.055754275020414086 +193640,968.2000000095285,-0.05575422101315677 +193641,968.2050000095286,-0.05575416701467865 +193642,968.2100000095287,-0.055754113024977105 +193643,968.2150000095288,-0.05575405904404953 +193644,968.2200000095289,-0.05575400507189332 +193645,968.225000009529,-0.055753951108505846 +193646,968.2300000095291,-0.0557538971538845 +193647,968.2350000095292,-0.055753843208026656 +193648,968.2400000095294,-0.055753789270929714 +193649,968.2450000095295,-0.05575373534259107 +193650,968.2500000095296,-0.05575368142300811 +193651,968.2550000095297,-0.0557536275121782 +193652,968.2600000095298,-0.05575357361009876 +193653,968.2650000095299,-0.05575351971676716 +193654,968.27000000953,-0.05575346583218079 +193655,968.2750000095301,-0.05575341195633706 +193656,968.2800000095302,-0.055753358089233346 +193657,968.2850000095303,-0.05575330423086703 +193658,968.2900000095304,-0.05575325038123553 +193659,968.2950000095306,-0.05575319654033622 +193660,968.3000000095307,-0.05575314270816651 +193661,968.3050000095308,-0.05575308888472378 +193662,968.3100000095309,-0.055753035070005424 +193663,968.315000009531,-0.05575298126400884 +193664,968.3200000095311,-0.05575292746673144 +193665,968.3250000095312,-0.05575287367817059 +193666,968.3300000095313,-0.05575281989832371 +193667,968.3350000095314,-0.05575276612718818 +193668,968.3400000095315,-0.055752712364761425 +193669,968.3450000095316,-0.05575265861104082 +193670,968.3500000095318,-0.05575260486602376 +193671,968.3550000095319,-0.05575255112970766 +193672,968.360000009532,-0.0557524974020899 +193673,968.3650000095321,-0.05575244368316791 +193674,968.3700000095322,-0.05575238997293907 +193675,968.3750000095323,-0.05575233627140078 +193676,968.3800000095324,-0.05575228257855045 +193677,968.3850000095325,-0.05575222889438548 +193678,968.3900000095326,-0.05575217521890328 +193679,968.3950000095327,-0.05575212155210123 +193680,968.4000000095328,-0.05575206789397674 +193681,968.405000009533,-0.055752014244527234 +193682,968.4100000095331,-0.05575196060375011 +193683,968.4150000095332,-0.055751906971642756 +193684,968.4200000095333,-0.0557518533482026 +193685,968.4250000095334,-0.05575179973342704 +193686,968.4300000095335,-0.05575174612731347 +193687,968.4350000095336,-0.055751692529859315 +193688,968.4400000095337,-0.055751638941061984 +193689,968.4450000095338,-0.05575158536091887 +193690,968.4500000095339,-0.05575153178942739 +193691,968.455000009534,-0.05575147822658495 +193692,968.4600000095342,-0.055751424672388965 +193693,968.4650000095343,-0.05575137112683685 +193694,968.4700000095344,-0.055751317589926006 +193695,968.4750000095345,-0.055751264061653844 +193696,968.4800000095346,-0.05575121054201777 +193697,968.4850000095347,-0.055751157031015214 +193698,968.4900000095348,-0.055751103528643584 +193699,968.4950000095349,-0.05575105003490029 +193700,968.500000009535,-0.055750996549782744 +193701,968.5050000095351,-0.05575094307328836 +193702,968.5100000095352,-0.05575088960541454 +193703,968.5150000095354,-0.055750836146158736 +193704,968.5200000095355,-0.05575078269551833 +193705,968.5250000095356,-0.05575072925349075 +193706,968.5300000095357,-0.05575067582007341 +193707,968.5350000095358,-0.05575062239526373 +193708,968.5400000095359,-0.05575056897905914 +193709,968.545000009536,-0.05575051557145703 +193710,968.5500000095361,-0.05575046217245485 +193711,968.5550000095362,-0.05575040878204999 +193712,968.5600000095363,-0.055750355400239884 +193713,968.5650000095364,-0.05575030202702196 +193714,968.5700000095366,-0.055750248662393635 +193715,968.5750000095367,-0.05575019530635233 +193716,968.5800000095368,-0.05575014195889546 +193717,968.5850000095369,-0.05575008862002045 +193718,968.590000009537,-0.05575003528972472 +193719,968.5950000095371,-0.0557499819680057 +193720,968.6000000095372,-0.05574992865486081 +193721,968.6050000095373,-0.055749875350287484 +193722,968.6100000095374,-0.05574982205428313 +193723,968.6150000095375,-0.0557497687668452 +193724,968.6200000095376,-0.055749715487971085 +193725,968.6250000095378,-0.055749662217658244 +193726,968.6300000095379,-0.055749608955904084 +193727,968.635000009538,-0.05574955570270603 +193728,968.6400000095381,-0.05574950245806151 +193729,968.6450000095382,-0.05574944922196798 +193730,968.6500000095383,-0.05574939599442284 +193731,968.6550000095384,-0.05574934277542353 +193732,968.6600000095385,-0.05574928956496747 +193733,968.6650000095386,-0.05574923636305211 +193734,968.6700000095387,-0.05574918316967485 +193735,968.6750000095388,-0.05574912998483315 +193736,968.680000009539,-0.055749076808524436 +193737,968.6850000095391,-0.05574902364074613 +193738,968.6900000095392,-0.05574897048149568 +193739,968.6950000095393,-0.05574891733077051 +193740,968.7000000095394,-0.05574886418856805 +193741,968.7050000095395,-0.05574881105488575 +193742,968.7100000095396,-0.055748757929721025 +193743,968.7150000095397,-0.05574870481307133 +193744,968.7200000095398,-0.055748651704934093 +193745,968.7250000095399,-0.05574859860530674 +193746,968.73000000954,-0.05574854551418672 +193747,968.7350000095402,-0.05574849243157146 +193748,968.7400000095403,-0.05574843935745843 +193749,968.7450000095404,-0.055748386291845024 +193750,968.7500000095405,-0.055748333234728706 +193751,968.7550000095406,-0.05574828018610691 +193752,968.7600000095407,-0.05574822714597708 +193753,968.7650000095408,-0.05574817411433665 +193754,968.7700000095409,-0.055748121091183066 +193755,968.775000009541,-0.05574806807651376 +193756,968.7800000095411,-0.055748015070326194 +193757,968.7850000095412,-0.055747962072617785 +193758,968.7900000095414,-0.05574790908338599 +193759,968.7950000095415,-0.055747856102628265 +193760,968.8000000095416,-0.055747803130342034 +193761,968.8050000095417,-0.05574775016652475 +193762,968.8100000095418,-0.05574769721117386 +193763,968.8150000095419,-0.05574764426428679 +193764,968.820000009542,-0.05574759132586101 +193765,968.8250000095421,-0.055747538395893956 +193766,968.8300000095422,-0.05574748547438309 +193767,968.8350000095423,-0.055747432561325826 +193768,968.8400000095425,-0.055747379656719644 +193769,968.8450000095426,-0.055747326760561974 +193770,968.8500000095427,-0.05574727387285027 +193771,968.8550000095428,-0.055747220993581995 +193772,968.8600000095429,-0.05574716812275458 +193773,968.865000009543,-0.05574711526036548 +193774,968.8700000095431,-0.055747062406412154 +193775,968.8750000095432,-0.055747009560892055 +193776,968.8800000095433,-0.05574695672380263 +193777,968.8850000095434,-0.055746903895141316 +193778,968.8900000095435,-0.055746851074905596 +193779,968.8950000095437,-0.0557467982630929 +193780,968.9000000095438,-0.055746745459700695 +193781,968.9050000095439,-0.05574669266472641 +193782,968.910000009544,-0.05574663987816753 +193783,968.9150000095441,-0.0557465871000215 +193784,968.9200000095442,-0.055746534330285785 +193785,968.9250000095443,-0.05574648156895782 +193786,968.9300000095444,-0.05574642881603508 +193787,968.9350000095445,-0.055746376071515016 +193788,968.9400000095446,-0.055746323335395094 +193789,968.9450000095447,-0.05574627060767276 +193790,968.9500000095449,-0.05574621788834549 +193791,968.955000009545,-0.05574616517741072 +193792,968.9600000095451,-0.055746112474865925 +193793,968.9650000095452,-0.05574605978070857 +193794,968.9700000095453,-0.055746007094936094 +193795,968.9750000095454,-0.05574595441754598 +193796,968.9800000095455,-0.055745901748535685 +193797,968.9850000095456,-0.05574584908790267 +193798,968.9900000095457,-0.055745796435644396 +193799,968.9950000095458,-0.05574574379175833 +193800,969.0000000095459,-0.055745691156241936 +193801,969.005000009546,-0.05574563852909267 +193802,969.0100000095462,-0.05574558591030801 +193803,969.0150000095463,-0.05574553329988541 +193804,969.0200000095464,-0.05574548069782235 +193805,969.0250000095465,-0.05574542810411627 +193806,969.0300000095466,-0.05574537551876468 +193807,969.0350000095467,-0.055745322941765 +193808,969.0400000095468,-0.05574527037311472 +193809,969.0450000095469,-0.05574521781281132 +193810,969.050000009547,-0.05574516526085225 +193811,969.0550000095471,-0.05574511271723499 +193812,969.0600000095473,-0.055745060181957004 +193813,969.0650000095474,-0.05574500765501577 +193814,969.0700000095475,-0.05574495513640875 +193815,969.0750000095476,-0.05574490262613342 +193816,969.0800000095477,-0.055744850124187256 +193817,969.0850000095478,-0.05574479763056772 +193818,969.0900000095479,-0.05574474514527229 +193819,969.095000009548,-0.05574469266829844 +193820,969.1000000095481,-0.05574464019964364 +193821,969.1050000095482,-0.05574458773930537 +193822,969.1100000095483,-0.05574453528728111 +193823,969.1150000095485,-0.055744482843568324 +193824,969.1200000095486,-0.05574443040816449 +193825,969.1250000095487,-0.05574437798106709 +193826,969.1300000095488,-0.055744325562273586 +193827,969.1350000095489,-0.05574427315178147 +193828,969.140000009549,-0.05574422074958822 +193829,969.1450000095491,-0.05574416835569131 +193830,969.1500000095492,-0.05574411597008823 +193831,969.1550000095493,-0.05574406359277644 +193832,969.1600000095494,-0.055744011223753435 +193833,969.1650000095495,-0.05574395886301669 +193834,969.1700000095497,-0.05574390651056368 +193835,969.1750000095498,-0.05574385416639188 +193836,969.1800000095499,-0.0557438018304988 +193837,969.18500000955,-0.0557437495028819 +193838,969.1900000095501,-0.05574369718353867 +193839,969.1950000095502,-0.055743644872466594 +193840,969.2000000095503,-0.05574359256966315 +193841,969.2050000095504,-0.055743540275125826 +193842,969.2100000095505,-0.05574348798885211 +193843,969.2150000095506,-0.05574343571083948 +193844,969.2200000095507,-0.055743383441085426 +193845,969.2250000095509,-0.05574333117958744 +193846,969.230000009551,-0.05574327892634301 +193847,969.2350000095511,-0.055743226681349616 +193848,969.2400000095512,-0.055743174444604734 +193849,969.2450000095513,-0.05574312221610586 +193850,969.2500000095514,-0.05574306999585049 +193851,969.2550000095515,-0.05574301778383611 +193852,969.2600000095516,-0.055742965580060214 +193853,969.2650000095517,-0.055742913384520296 +193854,969.2700000095518,-0.055742861197213826 +193855,969.275000009552,-0.05574280901813832 +193856,969.280000009552,-0.05574275684729125 +193857,969.2850000095522,-0.055742704684670116 +193858,969.2900000095523,-0.05574265253027241 +193859,969.2950000095524,-0.05574260038409563 +193860,969.3000000095525,-0.05574254824613726 +193861,969.3050000095526,-0.055742496116394806 +193862,969.3100000095527,-0.055742443994865755 +193863,969.3150000095528,-0.05574239188154761 +193864,969.3200000095529,-0.055742339776437846 +193865,969.325000009553,-0.05574228767953397 +193866,969.3300000095531,-0.05574223559083349 +193867,969.3350000095533,-0.05574218351033389 +193868,969.3400000095534,-0.05574213143803267 +193869,969.3450000095535,-0.05574207937392734 +193870,969.3500000095536,-0.05574202731801539 +193871,969.3550000095537,-0.05574197527029432 +193872,969.3600000095538,-0.05574192323076163 +193873,969.3650000095539,-0.055741871199414816 +193874,969.370000009554,-0.055741819176251386 +193875,969.3750000095541,-0.05574176716126883 +193876,969.3800000095542,-0.05574171515446465 +193877,969.3850000095543,-0.05574166315583635 +193878,969.3900000095545,-0.05574161116538144 +193879,969.3950000095546,-0.05574155918309742 +193880,969.4000000095547,-0.0557415072089818 +193881,969.4050000095548,-0.05574145524303208 +193882,969.4100000095549,-0.05574140328524575 +193883,969.415000009555,-0.05574135133562034 +193884,969.4200000095551,-0.05574129939415333 +193885,969.4250000095552,-0.05574124746084223 +193886,969.4300000095553,-0.055741195535684566 +193887,969.4350000095554,-0.055741143618677824 +193888,969.4400000095555,-0.05574109170981953 +193889,969.4450000095557,-0.055741039809107176 +193890,969.4500000095558,-0.05574098791653829 +193891,969.4550000095559,-0.055740936032110354 +193892,969.460000009556,-0.055740884155820895 +193893,969.4650000095561,-0.055740832287667415 +193894,969.4700000095562,-0.055740780427647435 +193895,969.4750000095563,-0.05574072857575845 +193896,969.4800000095564,-0.05574067673199799 +193897,969.4850000095565,-0.055740624896363555 +193898,969.4900000095566,-0.05574057306885267 +193899,969.4950000095567,-0.055740521249462834 +193900,969.5000000095569,-0.05574046943819155 +193901,969.505000009557,-0.05574041763503635 +193902,969.5100000095571,-0.055740365839994754 +193903,969.5150000095572,-0.05574031405306427 +193904,969.5200000095573,-0.0557402622742424 +193905,969.5250000095574,-0.05574021050352667 +193906,969.5300000095575,-0.0557401587409146 +193907,969.5350000095576,-0.055740106986403706 +193908,969.5400000095577,-0.05574005523999151 +193909,969.5450000095578,-0.0557400035016755 +193910,969.550000009558,-0.05573995177145324 +193911,969.5550000095581,-0.055739900049322215 +193912,969.5600000095582,-0.05573984833527996 +193913,969.5650000095583,-0.05573979662932399 +193914,969.5700000095584,-0.055739744931451826 +193915,969.5750000095585,-0.055739693241660976 +193916,969.5800000095586,-0.05573964155994898 +193917,969.5850000095587,-0.055739589886313355 +193918,969.5900000095588,-0.05573953822075162 +193919,969.5950000095589,-0.05573948656326128 +193920,969.600000009559,-0.05573943491383989 +193921,969.6050000095591,-0.05573938327248496 +193922,969.6100000095593,-0.055739331639194006 +193923,969.6150000095594,-0.055739280013964575 +193924,969.6200000095595,-0.055739228396794176 +193925,969.6250000095596,-0.05573917678768034 +193926,969.6300000095597,-0.05573912518662059 +193927,969.6350000095598,-0.05573907359361243 +193928,969.6400000095599,-0.055739022008653424 +193929,969.64500000956,-0.05573897043174108 +193930,969.6500000095601,-0.05573891886287294 +193931,969.6550000095602,-0.05573886730204652 +193932,969.6600000095603,-0.055738815749259346 +193933,969.6650000095605,-0.055738764204508955 +193934,969.6700000095606,-0.055738712667792886 +193935,969.6750000095607,-0.05573866113910864 +193936,969.6800000095608,-0.05573860961845378 +193937,969.6850000095609,-0.05573855810582582 +193938,969.690000009561,-0.0557385066012223 +193939,969.6950000095611,-0.055738455104640754 +193940,969.7000000095612,-0.0557384036160787 +193941,969.7050000095613,-0.05573835213553367 +193942,969.7100000095614,-0.05573830066300323 +193943,969.7150000095615,-0.05573824919848488 +193944,969.7200000095617,-0.055738197741976164 +193945,969.7250000095618,-0.05573814629347463 +193946,969.7300000095619,-0.05573809485297781 +193947,969.735000009562,-0.055738043420483226 +193948,969.7400000095621,-0.055737991995988424 +193949,969.7450000095622,-0.055737940579490955 +193950,969.7500000095623,-0.05573788917098834 +193951,969.7550000095624,-0.05573783777047811 +193952,969.7600000095625,-0.05573778637795782 +193953,969.7650000095626,-0.055737734993425006 +193954,969.7700000095628,-0.055737683616877205 +193955,969.7750000095629,-0.05573763224831196 +193956,969.780000009563,-0.0557375808877268 +193957,969.7850000095631,-0.05573752953511928 +193958,969.7900000095632,-0.05573747819048694 +193959,969.7950000095633,-0.055737426853827314 +193960,969.8000000095634,-0.05573737552513795 +193961,969.8050000095635,-0.0557373242044164 +193962,969.8100000095636,-0.05573727289166019 +193963,969.8150000095637,-0.055737221586866864 +193964,969.8200000095638,-0.055737170290033985 +193965,969.825000009564,-0.05573711900115909 +193966,969.8300000095641,-0.05573706772023972 +193967,969.8350000095642,-0.055737016447273434 +193968,969.8400000095643,-0.055736965182257764 +193969,969.8450000095644,-0.05573691392519025 +193970,969.8500000095645,-0.055736862676068456 +193971,969.8550000095646,-0.055736811434889934 +193972,969.8600000095647,-0.05573676020165222 +193973,969.8650000095648,-0.05573670897635286 +193974,969.8700000095649,-0.05573665775898941 +193975,969.875000009565,-0.05573660654955943 +193976,969.8800000095652,-0.05573655534806045 +193977,969.8850000095653,-0.05573650415449004 +193978,969.8900000095654,-0.055736452968845725 +193979,969.8950000095655,-0.055736401791125094 +193980,969.9000000095656,-0.05573635062132567 +193981,969.9050000095657,-0.055736299459445006 +193982,969.9100000095658,-0.05573624830548067 +193983,969.9150000095659,-0.05573619715943022 +193984,969.920000009566,-0.05573614602129119 +193985,969.9250000095661,-0.055736094891061155 +193986,969.9300000095662,-0.05573604376873766 +193987,969.9350000095664,-0.05573599265431825 +193988,969.9400000095665,-0.05573594154780051 +193989,969.9450000095666,-0.055735890449181966 +193990,969.9500000095667,-0.0557358393584602 +193991,969.9550000095668,-0.05573578827563275 +193992,969.9600000095669,-0.055735737200697175 +193993,969.965000009567,-0.05573568613365104 +193994,969.9700000095671,-0.05573563507449191 +193995,969.9750000095672,-0.05573558402321734 +193996,969.9800000095673,-0.0557355329798249 +193997,969.9850000095674,-0.055735481944312125 +193998,969.9900000095676,-0.055735430916676605 +193999,969.9950000095677,-0.05573537989691589 +194000,970.0000000095678,-0.05573532888502753 +194001,970.0050000095679,-0.0557352778810091 +194002,970.010000009568,-0.05573522688485815 +194003,970.0150000095681,-0.05573517589657226 +194004,970.0200000095682,-0.055735124916148994 +194005,970.0250000095683,-0.05573507394358591 +194006,970.0300000095684,-0.05573502297888057 +194007,970.0350000095685,-0.05573497202203053 +194008,970.0400000095686,-0.05573492107303338 +194009,970.0450000095688,-0.05573487013188667 +194010,970.0500000095689,-0.05573481919858797 +194011,970.055000009569,-0.05573476827313486 +194012,970.0600000095691,-0.0557347173555249 +194013,970.0650000095692,-0.055734666445755636 +194014,970.0700000095693,-0.055734615543824674 +194015,970.0750000095694,-0.05573456464972956 +194016,970.0800000095695,-0.05573451376346787 +194017,970.0850000095696,-0.055734462885037174 +194018,970.0900000095697,-0.05573441201443504 +194019,970.0950000095698,-0.05573436115165903 +194020,970.10000000957,-0.05573431029670674 +194021,970.1050000095701,-0.05573425944957572 +194022,970.1100000095702,-0.05573420861026355 +194023,970.1150000095703,-0.055734157778767814 +194024,970.1200000095704,-0.055734106955086064 +194025,970.1250000095705,-0.05573405613921589 +194026,970.1300000095706,-0.05573400533115488 +194027,970.1350000095707,-0.055733954530900576 +194028,970.1400000095708,-0.055733903738450566 +194029,970.1450000095709,-0.055733852953802426 +194030,970.150000009571,-0.05573380217695375 +194031,970.1550000095712,-0.05573375140790209 +194032,970.1600000095713,-0.05573370064664503 +194033,970.1650000095714,-0.05573364989318016 +194034,970.1700000095715,-0.055733599147505045 +194035,970.1750000095716,-0.05573354840961727 +194036,970.1800000095717,-0.05573349767951442 +194037,970.1850000095718,-0.055733446957194066 +194038,970.1900000095719,-0.055733396242653784 +194039,970.195000009572,-0.05573334553589116 +194040,970.2000000095721,-0.055733294836903785 +194041,970.2050000095722,-0.055733244145689226 +194042,970.2100000095724,-0.05573319346224507 +194043,970.2150000095725,-0.05573314278656891 +194044,970.2200000095726,-0.055733092118658324 +194045,970.2250000095727,-0.055733041458510886 +194046,970.2300000095728,-0.05573299080612418 +194047,970.2350000095729,-0.055732940161495804 +194048,970.240000009573,-0.05573288952462333 +194049,970.2450000095731,-0.05573283889550436 +194050,970.2500000095732,-0.05573278827413647 +194051,970.2550000095733,-0.05573273766051723 +194052,970.2600000095734,-0.05573268705464426 +194053,970.2650000095736,-0.055732636456515126 +194054,970.2700000095737,-0.05573258586612742 +194055,970.2750000095738,-0.05573253528347874 +194056,970.2800000095739,-0.05573248470856666 +194057,970.285000009574,-0.055732434141388766 +194058,970.2900000095741,-0.05573238358194267 +194059,970.2950000095742,-0.05573233303022595 +194060,970.3000000095743,-0.05573228248623619 +194061,970.3050000095744,-0.055732231949970984 +194062,970.3100000095745,-0.055732181421427926 +194063,970.3150000095746,-0.055732130900604616 +194064,970.3200000095748,-0.05573208038749864 +194065,970.3250000095749,-0.0557320298821076 +194066,970.330000009575,-0.05573197938442908 +194067,970.3350000095751,-0.05573192889446068 +194068,970.3400000095752,-0.05573187841219999 +194069,970.3450000095753,-0.0557318279376446 +194070,970.3500000095754,-0.05573177747079211 +194071,970.3550000095755,-0.05573172701164012 +194072,970.3600000095756,-0.05573167656018623 +194073,970.3650000095757,-0.05573162611642803 +194074,970.3700000095758,-0.055731575680363125 +194075,970.375000009576,-0.0557315252519891 +194076,970.3800000095761,-0.05573147483130356 +194077,970.3850000095762,-0.0557314244183041 +194078,970.3900000095763,-0.055731374012988326 +194079,970.3950000095764,-0.055731323615353844 +194080,970.4000000095765,-0.05573127322539824 +194081,970.4050000095766,-0.05573122284311913 +194082,970.4100000095767,-0.055731172468514105 +194083,970.4150000095768,-0.055731122101580766 +194084,970.4200000095769,-0.055731071742316715 +194085,970.425000009577,-0.05573102139071956 +194086,970.4300000095772,-0.055730971046786905 +194087,970.4350000095773,-0.05573092071051634 +194088,970.4400000095774,-0.05573087038190549 +194089,970.4450000095775,-0.055730820060951945 +194090,970.4500000095776,-0.055730769747653314 +194091,970.4550000095777,-0.055730719442007214 +194092,970.4600000095778,-0.05573066914401123 +194093,970.4650000095779,-0.05573061885366299 +194094,970.470000009578,-0.055730568570960086 +194095,970.4750000095781,-0.055730518295900124 +194096,970.4800000095782,-0.05573046802848073 +194097,970.4850000095784,-0.0557304177686995 +194098,970.4900000095785,-0.05573036751655404 +194099,970.4950000095786,-0.05573031727204196 +194100,970.5000000095787,-0.05573026703516088 +194101,970.5050000095788,-0.0557302168059084 +194102,970.5100000095789,-0.055730166584282134 +194103,970.515000009579,-0.05573011637027969 +194104,970.5200000095791,-0.05573006616389869 +194105,970.5250000095792,-0.05573001596513673 +194106,970.5300000095793,-0.05572996577399144 +194107,970.5350000095794,-0.05572991559046042 +194108,970.5400000095796,-0.055729865414541294 +194109,970.5450000095797,-0.05572981524623168 +194110,970.5500000095798,-0.05572976508552918 +194111,970.5550000095799,-0.05572971493243142 +194112,970.56000000958,-0.055729664786936 +194113,970.5650000095801,-0.055729614649040554 +194114,970.5700000095802,-0.05572956451874269 +194115,970.5750000095803,-0.055729514396040035 +194116,970.5800000095804,-0.055729464280930174 +194117,970.5850000095805,-0.05572941417341076 +194118,970.5900000095806,-0.05572936407347941 +194119,970.5950000095808,-0.05572931398113372 +194120,970.6000000095809,-0.055729263896371325 +194121,970.605000009581,-0.05572921381918984 +194122,970.6100000095811,-0.05572916374958689 +194123,970.6150000095812,-0.05572911368756009 +194124,970.6200000095813,-0.05572906363310706 +194125,970.6250000095814,-0.05572901358622544 +194126,970.6300000095815,-0.05572896354691283 +194127,970.6350000095816,-0.055728913515166865 +194128,970.6400000095817,-0.055728863490985166 +194129,970.6450000095818,-0.055728813474365355 +194130,970.650000009582,-0.05572876346530505 +194131,970.6550000095821,-0.0557287134638019 +194132,970.6600000095822,-0.0557286634698535 +194133,970.6650000095823,-0.05572861348345749 +194134,970.6700000095824,-0.0557285635046115 +194135,970.6750000095825,-0.05572851353331315 +194136,970.6800000095826,-0.055728463569560065 +194137,970.6850000095827,-0.055728413613349875 +194138,970.6900000095828,-0.0557283636646802 +194139,970.6950000095829,-0.055728313723548695 +194140,970.700000009583,-0.055728263789952964 +194141,970.7050000095832,-0.055728213863890645 +194142,970.7100000095833,-0.05572816394535937 +194143,970.7150000095834,-0.05572811403435676 +194144,970.7200000095835,-0.05572806413088045 +194145,970.7250000095836,-0.05572801423492808 +194146,970.7300000095837,-0.05572796434649727 +194147,970.7350000095838,-0.05572791446558566 +194148,970.7400000095839,-0.05572786459219087 +194149,970.745000009584,-0.05572781472631054 +194150,970.7500000095841,-0.055727764867942314 +194151,970.7550000095843,-0.055727715017083825 +194152,970.7600000095844,-0.05572766517373269 +194153,970.7650000095845,-0.05572761533788656 +194154,970.7700000095846,-0.05572756550954307 +194155,970.7750000095847,-0.05572751568869985 +194156,970.7800000095848,-0.05572746587535454 +194157,970.7850000095849,-0.05572741606950477 +194158,970.790000009585,-0.05572736627114819 +194159,970.7950000095851,-0.055727316480282424 +194160,970.8000000095852,-0.05572726669690512 +194161,970.8050000095853,-0.05572721692101391 +194162,970.8100000095855,-0.05572716715260644 +194163,970.8150000095856,-0.055727117391680354 +194164,970.8200000095857,-0.055727067638233284 +194165,970.8250000095858,-0.055727017892262865 +194166,970.8300000095859,-0.05572696815376675 +194167,970.835000009586,-0.05572691842274257 +194168,970.8400000095861,-0.05572686869918798 +194169,970.8450000095862,-0.0557268189831006 +194170,970.8500000095863,-0.0557267692744781 +194171,970.8550000095864,-0.05572671957331811 +194172,970.8600000095865,-0.055726669879618274 +194173,970.8650000095867,-0.055726620193376236 +194174,970.8700000095868,-0.05572657051458965 +194175,970.8750000095869,-0.055726520843256154 +194176,970.880000009587,-0.055726471179373405 +194177,970.8850000095871,-0.05572642152293904 +194178,970.8900000095872,-0.0557263718739507 +194179,970.8950000095873,-0.055726322232406034 +194180,970.9000000095874,-0.0557262725983027 +194181,970.9050000095875,-0.05572622297163834 +194182,970.9100000095876,-0.0557261733524106 +194183,970.9150000095877,-0.055726123740617126 +194184,970.9200000095879,-0.05572607413625558 +194185,970.925000009588,-0.055726024539323606 +194186,970.9300000095881,-0.055725974949818846 +194187,970.9350000095882,-0.05572592536773897 +194188,970.9400000095883,-0.055725875793081615 +194189,970.9450000095884,-0.05572582622584443 +194190,970.9500000095885,-0.05572577666602509 +194191,970.9550000095886,-0.05572572711362122 +194192,970.9600000095887,-0.05572567756863049 +194193,970.9650000095888,-0.05572562803105055 +194194,970.970000009589,-0.05572557850087905 +194195,970.975000009589,-0.05572552897811366 +194196,970.9800000095892,-0.05572547946275202 +194197,970.9850000095893,-0.055725429954791794 +194198,970.9900000095894,-0.05572538045423063 +194199,970.9950000095895,-0.055725330961066195 +194200,971.0000000095896,-0.05572528147529613 +194201,971.0050000095897,-0.05572523199691811 +194202,971.0100000095898,-0.055725182525929784 +194203,971.0150000095899,-0.05572513306232881 +194204,971.02000000959,-0.05572508360611285 +194205,971.0250000095901,-0.055725034157279564 +194206,971.0300000095903,-0.055724984715826625 +194207,971.0350000095904,-0.055724935281751674 +194208,971.0400000095905,-0.055724885855052364 +194209,971.0450000095906,-0.05572483643572638 +194210,971.0500000095907,-0.05572478702377137 +194211,971.0550000095908,-0.055724737619185005 +194212,971.0600000095909,-0.05572468822196494 +194213,971.065000009591,-0.05572463883210884 +194214,971.0700000095911,-0.05572458944961437 +194215,971.0750000095912,-0.0557245400744792 +194216,971.0800000095913,-0.05572449070670098 +194217,971.0850000095915,-0.05572444134627739 +194218,971.0900000095916,-0.0557243919932061 +194219,971.0950000095917,-0.05572434264748476 +194220,971.1000000095918,-0.05572429330911105 +194221,971.1050000095919,-0.055724243978082615 +194222,971.110000009592,-0.05572419465439714 +194223,971.1150000095921,-0.0557241453380523 +194224,971.1200000095922,-0.05572409602904574 +194225,971.1250000095923,-0.05572404672737515 +194226,971.1300000095924,-0.05572399743303819 +194227,971.1350000095925,-0.05572394814603254 +194228,971.1400000095927,-0.055723898866355856 +194229,971.1450000095928,-0.055723849594005816 +194230,971.1500000095929,-0.05572380032898009 +194231,971.155000009593,-0.055723751071276355 +194232,971.1600000095931,-0.05572370182089227 +194233,971.1650000095932,-0.05572365257782552 +194234,971.1700000095933,-0.055723603342073776 +194235,971.1750000095934,-0.05572355411363469 +194236,971.1800000095935,-0.05572350489250597 +194237,971.1850000095936,-0.05572345567868527 +194238,971.1900000095937,-0.05572340647217027 +194239,971.1950000095939,-0.05572335727295865 +194240,971.200000009594,-0.05572330808104809 +194241,971.2050000095941,-0.05572325889643625 +194242,971.2100000095942,-0.05572320971912082 +194243,971.2150000095943,-0.05572316054909946 +194244,971.2200000095944,-0.055723111386369865 +194245,971.2250000095945,-0.05572306223092972 +194246,971.2300000095946,-0.055723013082776676 +194247,971.2350000095947,-0.055722963941908434 +194248,971.2400000095948,-0.05572291480832267 +194249,971.245000009595,-0.05572286568201706 +194250,971.250000009595,-0.055722816562989295 +194251,971.2550000095952,-0.05572276745123703 +194252,971.2600000095953,-0.055722718346757974 +194253,971.2650000095954,-0.0557226692495498 +194254,971.2700000095955,-0.05572262015961019 +194255,971.2750000095956,-0.05572257107693683 +194256,971.2800000095957,-0.05572252200152739 +194257,971.2850000095958,-0.05572247293337958 +194258,971.2900000095959,-0.05572242387249105 +194259,971.295000009596,-0.055722374818859506 +194260,971.3000000095961,-0.055722325772482637 +194261,971.3050000095963,-0.05572227673335812 +194262,971.3100000095964,-0.055722227701483634 +194263,971.3150000095965,-0.05572217867685687 +194264,971.3200000095966,-0.05572212965947553 +194265,971.3250000095967,-0.055722080649337286 +194266,971.3300000095968,-0.05572203164643983 +194267,971.3350000095969,-0.05572198265078086 +194268,971.340000009597,-0.05572193366235806 +194269,971.3450000095971,-0.0557218846811691 +194270,971.3500000095972,-0.055721835707211696 +194271,971.3550000095973,-0.055721786740483524 +194272,971.3600000095975,-0.05572173778098228 +194273,971.3650000095976,-0.05572168882870565 +194274,971.3700000095977,-0.055721639883651336 +194275,971.3750000095978,-0.055721590945817016 +194276,971.3800000095979,-0.05572154201520039 +194277,971.385000009598,-0.05572149309179915 +194278,971.3900000095981,-0.055721444175610986 +194279,971.3950000095982,-0.05572139526663361 +194280,971.4000000095983,-0.055721346364864685 +194281,971.4050000095984,-0.05572129747030193 +194282,971.4100000095985,-0.05572124858294305 +194283,971.4150000095987,-0.05572119970278571 +194284,971.4200000095988,-0.05572115082982762 +194285,971.4250000095989,-0.055721101964066495 +194286,971.430000009599,-0.055721053105500004 +194287,971.4350000095991,-0.05572100425412586 +194288,971.4400000095992,-0.05572095540994175 +194289,971.4450000095993,-0.05572090657294538 +194290,971.4500000095994,-0.05572085774313446 +194291,971.4550000095995,-0.055720808920506674 +194292,971.4600000095996,-0.055720760105059726 +194293,971.4650000095997,-0.05572071129679132 +194294,971.4700000095999,-0.05572066249569916 +194295,971.4750000096,-0.055720613701780934 +194296,971.4800000096001,-0.05572056491503436 +194297,971.4850000096002,-0.055720516135457115 +194298,971.4900000096003,-0.055720467363046935 +194299,971.4950000096004,-0.055720418597801497 +194300,971.5000000096005,-0.055720369839718516 +194301,971.5050000096006,-0.0557203210887957 +194302,971.5100000096007,-0.05572027234503075 +194303,971.5150000096008,-0.05572022360842137 +194304,971.520000009601,-0.05572017487896525 +194305,971.5250000096011,-0.05572012615666013 +194306,971.5300000096012,-0.055720077441503695 +194307,971.5350000096013,-0.05572002873349365 +194308,971.5400000096014,-0.0557199800326277 +194309,971.5450000096015,-0.05571993133890358 +194310,971.5500000096016,-0.055719882652318975 +194311,971.5550000096017,-0.055719833972871585 +194312,971.5600000096018,-0.05571978530055914 +194313,971.5650000096019,-0.05571973663537934 +194314,971.570000009602,-0.0557196879773299 +194315,971.5750000096021,-0.05571963932640853 +194316,971.5800000096023,-0.05571959068261293 +194317,971.5850000096024,-0.05571954204594083 +194318,971.5900000096025,-0.055719493416389924 +194319,971.5950000096026,-0.055719444793957934 +194320,971.6000000096027,-0.05571939617864257 +194321,971.6050000096028,-0.055719347570441544 +194322,971.6100000096029,-0.05571929896935258 +194323,971.615000009603,-0.055719250375373376 +194324,971.6200000096031,-0.05571920178850166 +194325,971.6250000096032,-0.055719153208735155 +194326,971.6300000096034,-0.05571910463607155 +194327,971.6350000096035,-0.055719056070508574 +194328,971.6400000096036,-0.05571900751204394 +194329,971.6450000096037,-0.05571895896067538 +194330,971.6500000096038,-0.055718910416400605 +194331,971.6550000096039,-0.05571886187921733 +194332,971.660000009604,-0.055718813349123264 +194333,971.6650000096041,-0.055718764826116145 +194334,971.6700000096042,-0.055718716310193685 +194335,971.6750000096043,-0.05571866780135361 +194336,971.6800000096044,-0.05571861929959361 +194337,971.6850000096046,-0.05571857080491144 +194338,971.6900000096047,-0.05571852231730481 +194339,971.6950000096048,-0.05571847383677144 +194340,971.7000000096049,-0.05571842536330905 +194341,971.705000009605,-0.055718376896915375 +194342,971.7100000096051,-0.05571832843758813 +194343,971.7150000096052,-0.055718279985325025 +194344,971.7200000096053,-0.055718231540123814 +194345,971.7250000096054,-0.05571818310198219 +194346,971.7300000096055,-0.055718134670897895 +194347,971.7350000096056,-0.05571808624686865 +194348,971.7400000096058,-0.05571803782989218 +194349,971.7450000096059,-0.05571798941996622 +194350,971.750000009606,-0.055717941017088476 +194351,971.7550000096061,-0.05571789262125671 +194352,971.7600000096062,-0.05571784423246862 +194353,971.7650000096063,-0.055717795850721945 +194354,971.7700000096064,-0.05571774747601441 +194355,971.7750000096065,-0.05571769910834374 +194356,971.7800000096066,-0.05571765074770767 +194357,971.7850000096067,-0.055717602394103935 +194358,971.7900000096068,-0.05571755404753026 +194359,971.795000009607,-0.05571750570798437 +194360,971.8000000096071,-0.05571745737546401 +194361,971.8050000096072,-0.05571740904996691 +194362,971.8100000096073,-0.055717360731490785 +194363,971.8150000096074,-0.05571731242003338 +194364,971.8200000096075,-0.05571726411559243 +194365,971.8250000096076,-0.05571721581816567 +194366,971.8300000096077,-0.055717167527750834 +194367,971.8350000096078,-0.05571711924434564 +194368,971.8400000096079,-0.055717070967947833 +194369,971.845000009608,-0.055717022698555156 +194370,971.8500000096082,-0.05571697443616534 +194371,971.8550000096083,-0.05571692618077613 +194372,971.8600000096084,-0.05571687793238524 +194373,971.8650000096085,-0.05571682969099044 +194374,971.8700000096086,-0.05571678145658943 +194375,971.8750000096087,-0.05571673322917998 +194376,971.8800000096088,-0.055716685008759814 +194377,971.8850000096089,-0.055716636795326666 +194378,971.890000009609,-0.0557165885888783 +194379,971.8950000096091,-0.05571654038941243 +194380,971.9000000096092,-0.05571649219692681 +194381,971.9050000096094,-0.055716444011419175 +194382,971.9100000096095,-0.05571639583288726 +194383,971.9150000096096,-0.05571634766132881 +194384,971.9200000096097,-0.05571629949674158 +194385,971.9250000096098,-0.05571625133912331 +194386,971.9300000096099,-0.05571620318847172 +194387,971.93500000961,-0.05571615504478459 +194388,971.9400000096101,-0.05571610690805963 +194389,971.9450000096102,-0.05571605877829461 +194390,971.9500000096103,-0.05571601065548725 +194391,971.9550000096104,-0.05571596253963533 +194392,971.9600000096106,-0.05571591443073656 +194393,971.9650000096107,-0.05571586632878871 +194394,971.9700000096108,-0.05571581823378952 +194395,971.9750000096109,-0.055715770145736726 +194396,971.980000009611,-0.0557157220646281 +194397,971.9850000096111,-0.05571567399046137 +194398,971.9900000096112,-0.0557156259232343 +194399,971.9950000096113,-0.05571557786294463 +194400,972.0000000096114,-0.055715529809590096 +194401,972.0050000096115,-0.05571548176316847 +194402,972.0100000096116,-0.055715433723677495 +194403,972.0150000096118,-0.05571538569111492 +194404,972.0200000096119,-0.0557153376654785 +194405,972.025000009612,-0.05571528964676598 +194406,972.0300000096121,-0.055715241634975134 +194407,972.0350000096122,-0.05571519363010369 +194408,972.0400000096123,-0.0557151456321494 +194409,972.0450000096124,-0.05571509764111004 +194410,972.0500000096125,-0.05571504965698334 +194411,972.0550000096126,-0.05571500167976707 +194412,972.0600000096127,-0.05571495370945898 +194413,972.0650000096128,-0.05571490574605683 +194414,972.070000009613,-0.05571485778955837 +194415,972.0750000096131,-0.05571480983996135 +194416,972.0800000096132,-0.05571476189726354 +194417,972.0850000096133,-0.05571471396146269 +194418,972.0900000096134,-0.055714666032556565 +194419,972.0950000096135,-0.055714618110542916 +194420,972.1000000096136,-0.0557145701954195 +194421,972.1050000096137,-0.055714522287184085 +194422,972.1100000096138,-0.05571447438583442 +194423,972.1150000096139,-0.05571442649136827 +194424,972.120000009614,-0.0557143786037834 +194425,972.1250000096142,-0.05571433072307757 +194426,972.1300000096143,-0.055714282849248536 +194427,972.1350000096144,-0.05571423498229406 +194428,972.1400000096145,-0.05571418712221191 +194429,972.1450000096146,-0.055714139268999846 +194430,972.1500000096147,-0.055714091422655626 +194431,972.1550000096148,-0.05571404358317703 +194432,972.1600000096149,-0.05571399575056181 +194433,972.165000009615,-0.05571394792480773 +194434,972.1700000096151,-0.055713900105912546 +194435,972.1750000096152,-0.055713852293874044 +194436,972.1800000096154,-0.055713804488689976 +194437,972.1850000096155,-0.055713756690358114 +194438,972.1900000096156,-0.055713708898876224 +194439,972.1950000096157,-0.05571366111424206 +194440,972.2000000096158,-0.05571361333645341 +194441,972.2050000096159,-0.055713565565508036 +194442,972.210000009616,-0.0557135178014037 +194443,972.2150000096161,-0.05571347004413818 +194444,972.2200000096162,-0.05571342229370923 +194445,972.2250000096163,-0.05571337455011464 +194446,972.2300000096164,-0.05571332681335217 +194447,972.2350000096166,-0.055713279083419595 +194448,972.2400000096167,-0.05571323136031468 +194449,972.2450000096168,-0.0557131836440352 +194450,972.2500000096169,-0.05571313593457893 +194451,972.255000009617,-0.055713088231943646 +194452,972.2600000096171,-0.05571304053612711 +194453,972.2650000096172,-0.0557129928471271 +194454,972.2700000096173,-0.05571294516494139 +194455,972.2750000096174,-0.05571289748956775 +194456,972.2800000096175,-0.055712849821003975 +194457,972.2850000096176,-0.055712802159247815 +194458,972.2900000096178,-0.055712754504297066 +194459,972.2950000096179,-0.0557127068561495 +194460,972.300000009618,-0.05571265921480287 +194461,972.3050000096181,-0.055712611580254985 +194462,972.3100000096182,-0.05571256395250362 +194463,972.3150000096183,-0.05571251633154652 +194464,972.3200000096184,-0.055712468717381496 +194465,972.3250000096185,-0.05571242111000632 +194466,972.3300000096186,-0.05571237350941877 +194467,972.3350000096187,-0.05571232591561662 +194468,972.3400000096188,-0.05571227832859767 +194469,972.345000009619,-0.055712230748359674 +194470,972.3500000096191,-0.05571218317490042 +194471,972.3550000096192,-0.055712135608217694 +194472,972.3600000096193,-0.05571208804830929 +194473,972.3650000096194,-0.05571204049517297 +194474,972.3700000096195,-0.05571199294880654 +194475,972.3750000096196,-0.05571194540920776 +194476,972.3800000096197,-0.05571189787637442 +194477,972.3850000096198,-0.05571185035030432 +194478,972.3900000096199,-0.05571180283099523 +194479,972.39500000962,-0.05571175531844493 +194480,972.4000000096202,-0.05571170781265123 +194481,972.4050000096203,-0.05571166031361189 +194482,972.4100000096204,-0.05571161282132471 +194483,972.4150000096205,-0.05571156533578747 +194484,972.4200000096206,-0.055711517856997975 +194485,972.4250000096207,-0.055711470384954 +194486,972.4300000096208,-0.05571142291965333 +194487,972.4350000096209,-0.055711375461093754 +194488,972.440000009621,-0.05571132800927306 +194489,972.4450000096211,-0.05571128056418905 +194490,972.4500000096212,-0.05571123312583951 +194491,972.4550000096214,-0.055711185694222225 +194492,972.4600000096215,-0.055711138269335 +194493,972.4650000096216,-0.0557110908511756 +194494,972.4700000096217,-0.05571104343974184 +194495,972.4750000096218,-0.0557109960350315 +194496,972.4800000096219,-0.05571094863704238 +194497,972.485000009622,-0.05571090124577228 +194498,972.4900000096221,-0.05571085386121898 +194499,972.4950000096222,-0.05571080648338028 +194500,972.5000000096223,-0.05571075911225397 +194501,972.5050000096224,-0.05571071174783785 +194502,972.5100000096226,-0.05571066439012972 +194503,972.5150000096227,-0.05571061703912737 +194504,972.5200000096228,-0.05571056969482859 +194505,972.5250000096229,-0.0557105223572312 +194506,972.530000009623,-0.05571047502633297 +194507,972.5350000096231,-0.055710427702131714 +194508,972.5400000096232,-0.055710380384625224 +194509,972.5450000096233,-0.0557103330738113 +194510,972.5500000096234,-0.05571028576968774 +194511,972.5550000096235,-0.05571023847225236 +194512,972.5600000096236,-0.05571019118150294 +194513,972.5650000096238,-0.05571014389743728 +194514,972.5700000096239,-0.0557100966200532 +194515,972.575000009624,-0.055710049349348464 +194516,972.5800000096241,-0.055710002085320925 +194517,972.5850000096242,-0.055709954827968346 +194518,972.5900000096243,-0.055709907577288546 +194519,972.5950000096244,-0.05570986033327933 +194520,972.6000000096245,-0.05570981309593849 +194521,972.6050000096246,-0.055709765865263834 +194522,972.6100000096247,-0.055709718641253174 +194523,972.6150000096249,-0.05570967142390431 +194524,972.620000009625,-0.05570962421321505 +194525,972.6250000096251,-0.055709577009183206 +194526,972.6300000096252,-0.055709529811806574 +194527,972.6350000096253,-0.055709482621082954 +194528,972.6400000096254,-0.05570943543701017 +194529,972.6450000096255,-0.055709388259586025 +194530,972.6500000096256,-0.05570934108880832 +194531,972.6550000096257,-0.05570929392467487 +194532,972.6600000096258,-0.05570924676718349 +194533,972.6650000096259,-0.05570919961633197 +194534,972.670000009626,-0.055709152472118134 +194535,972.6750000096262,-0.05570910533453979 +194536,972.6800000096263,-0.05570905820359475 +194537,972.6850000096264,-0.05570901107928083 +194538,972.6900000096265,-0.05570896396159583 +194539,972.6950000096266,-0.05570891685053756 +194540,972.7000000096267,-0.05570886974610386 +194541,972.7050000096268,-0.055708822648292515 +194542,972.7100000096269,-0.055708775557101346 +194543,972.715000009627,-0.05570872847252817 +194544,972.7200000096271,-0.05570868139457079 +194545,972.7250000096273,-0.05570863432322705 +194546,972.7300000096274,-0.05570858725849473 +194547,972.7350000096275,-0.05570854020037167 +194548,972.7400000096276,-0.05570849314885568 +194549,972.7450000096277,-0.05570844610394457 +194550,972.7500000096278,-0.05570839906563616 +194551,972.7550000096279,-0.055708352033928266 +194552,972.760000009628,-0.055708305008818716 +194553,972.7650000096281,-0.055708257990305314 +194554,972.7700000096282,-0.055708210978385894 +194555,972.7750000096283,-0.055708163973058264 +194556,972.7800000096285,-0.05570811697432025 +194557,972.7850000096286,-0.055708069982169664 +194558,972.7900000096287,-0.05570802299660433 +194559,972.7950000096288,-0.05570797601762208 +194560,972.8000000096289,-0.05570792904522071 +194561,972.805000009629,-0.055707882079398065 +194562,972.8100000096291,-0.055707835120151955 +194563,972.8150000096292,-0.05570778816748022 +194564,972.8200000096293,-0.055707741221380676 +194565,972.8250000096294,-0.055707694281851135 +194566,972.8300000096295,-0.05570764734888942 +194567,972.8350000096297,-0.055707600422493384 +194568,972.8400000096298,-0.05570755350266083 +194569,972.8450000096299,-0.05570750658938958 +194570,972.85000000963,-0.05570745968267747 +194571,972.8550000096301,-0.055707412782522316 +194572,972.8600000096302,-0.05570736588892196 +194573,972.8650000096303,-0.055707319001874214 +194574,972.8700000096304,-0.05570727212137692 +194575,972.8750000096305,-0.05570722524742789 +194576,972.8800000096306,-0.05570717838002496 +194577,972.8850000096307,-0.05570713151916595 +194578,972.8900000096309,-0.05570708466484872 +194579,972.895000009631,-0.05570703781707107 +194580,972.9000000096311,-0.05570699097583085 +194581,972.9050000096312,-0.055706944141125876 +194582,972.9100000096313,-0.05570689731295399 +194583,972.9150000096314,-0.055706850491313006 +194584,972.9200000096315,-0.05570680367620077 +194585,972.9250000096316,-0.055706756867615115 +194586,972.9300000096317,-0.05570671006555387 +194587,972.9350000096318,-0.055706663270014875 +194588,972.940000009632,-0.05570661648099595 +194589,972.945000009632,-0.05570656969849495 +194590,972.9500000096322,-0.055706522922509695 +194591,972.9550000096323,-0.05570647615303801 +194592,972.9600000096324,-0.05570642939007776 +194593,972.9650000096325,-0.05570638263362676 +194594,972.9700000096326,-0.05570633588368286 +194595,972.9750000096327,-0.05570628914024387 +194596,972.9800000096328,-0.055706242403307654 +194597,972.9850000096329,-0.05570619567287204 +194598,972.990000009633,-0.055706148948934865 +194599,972.9950000096331,-0.055706102231493984 +194600,973.0000000096333,-0.05570605552054723 +194601,973.0050000096334,-0.055706008816092424 +194602,973.0100000096335,-0.055705962118127415 +194603,973.0150000096336,-0.05570591542665005 +194604,973.0200000096337,-0.055705868741658164 +194605,973.0250000096338,-0.05570582206314961 +194606,973.0300000096339,-0.05570577539112222 +194607,973.035000009634,-0.05570572872557383 +194608,973.0400000096341,-0.05570568206650229 +194609,973.0450000096342,-0.055705635413905455 +194610,973.0500000096343,-0.05570558876778115 +194611,973.0550000096345,-0.05570554212812722 +194612,973.0600000096346,-0.05570549549494152 +194613,973.0650000096347,-0.055705448868221895 +194614,973.0700000096348,-0.055705402247966176 +194615,973.0750000096349,-0.05570535563417222 +194616,973.080000009635,-0.05570530902683788 +194617,973.0850000096351,-0.055705262425960994 +194618,973.0900000096352,-0.05570521583153941 +194619,973.0950000096353,-0.05570516924357098 +194620,973.1000000096354,-0.05570512266205354 +194621,973.1050000096355,-0.055705076086984946 +194622,973.1100000096357,-0.05570502951836305 +194623,973.1150000096358,-0.0557049829561857 +194624,973.1200000096359,-0.05570493640045075 +194625,973.125000009636,-0.05570488985115604 +194626,973.1300000096361,-0.05570484330829942 +194627,973.1350000096362,-0.05570479677187875 +194628,973.1400000096363,-0.05570475024189187 +194629,973.1450000096364,-0.05570470371833665 +194630,973.1500000096365,-0.05570465720121092 +194631,973.1550000096366,-0.05570461069051255 +194632,973.1600000096367,-0.0557045641862394 +194633,973.1650000096369,-0.055704517688389306 +194634,973.170000009637,-0.05570447119696013 +194635,973.1750000096371,-0.05570442471194973 +194636,973.1800000096372,-0.05570437823335595 +194637,973.1850000096373,-0.05570433176117666 +194638,973.1900000096374,-0.0557042852954097 +194639,973.1950000096375,-0.05570423883605294 +194640,973.2000000096376,-0.055704192383104215 +194641,973.2050000096377,-0.0557041459365614 +194642,973.2100000096378,-0.05570409949642236 +194643,973.215000009638,-0.05570405306268495 +194644,973.220000009638,-0.05570400663534702 +194645,973.2250000096382,-0.05570396021440642 +194646,973.2300000096383,-0.055703913799861025 +194647,973.2350000096384,-0.0557038673917087 +194648,973.2400000096385,-0.05570382098994729 +194649,973.2450000096386,-0.05570377459457467 +194650,973.2500000096387,-0.05570372820558869 +194651,973.2550000096388,-0.05570368182298721 +194652,973.2600000096389,-0.05570363544676809 +194653,973.265000009639,-0.055703589076929204 +194654,973.2700000096391,-0.055703542713468425 +194655,973.2750000096393,-0.055703496356383594 +194656,973.2800000096394,-0.05570345000567258 +194657,973.2850000096395,-0.05570340366133326 +194658,973.2900000096396,-0.05570335732336348 +194659,973.2950000096397,-0.05570331099176112 +194660,973.3000000096398,-0.05570326466652403 +194661,973.3050000096399,-0.055703218347650095 +194662,973.31000000964,-0.05570317203513717 +194663,973.3150000096401,-0.05570312572898312 +194664,973.3200000096402,-0.05570307942918582 +194665,973.3250000096403,-0.05570303313574313 +194666,973.3300000096405,-0.05570298684865293 +194667,973.3350000096406,-0.05570294056791308 +194668,973.3400000096407,-0.05570289429352144 +194669,973.3450000096408,-0.05570284802547589 +194670,973.3500000096409,-0.055702801763774304 +194671,973.355000009641,-0.05570275550841455 +194672,973.3600000096411,-0.055702709259394495 +194673,973.3650000096412,-0.05570266301671201 +194674,973.3700000096413,-0.05570261678036498 +194675,973.3750000096414,-0.05570257055035126 +194676,973.3800000096415,-0.05570252432666872 +194677,973.3850000096417,-0.05570247810931525 +194678,973.3900000096418,-0.055702431898288725 +194679,973.3950000096419,-0.055702385693586993 +194680,973.400000009642,-0.055702339495207955 +194681,973.4050000096421,-0.055702293303149464 +194682,973.4100000096422,-0.05570224711740941 +194683,973.4150000096423,-0.05570220093798567 +194684,973.4200000096424,-0.05570215476487611 +194685,973.4250000096425,-0.05570210859807863 +194686,973.4300000096426,-0.05570206243759107 +194687,973.4350000096427,-0.05570201628341133 +194688,973.4400000096429,-0.05570197013553728 +194689,973.445000009643,-0.055701923993966805 +194690,973.4500000096431,-0.05570187785869778 +194691,973.4550000096432,-0.055701831729728084 +194692,973.4600000096433,-0.0557017856070556 +194693,973.4650000096434,-0.055701739490678207 +194694,973.4700000096435,-0.05570169338059378 +194695,973.4750000096436,-0.0557016472768002 +194696,973.4800000096437,-0.05570160117929537 +194697,973.4850000096438,-0.05570155508807714 +194698,973.490000009644,-0.05570150900314341 +194699,973.4950000096441,-0.055701462924492066 +194700,973.5000000096442,-0.055701416852120975 +194701,973.5050000096443,-0.05570137078602802 +194702,973.5100000096444,-0.0557013247262111 +194703,973.5150000096445,-0.055701278672668095 +194704,973.5200000096446,-0.05570123262539688 +194705,973.5250000096447,-0.05570118658439536 +194706,973.5300000096448,-0.0557011405496614 +194707,973.5350000096449,-0.0557010945211929 +194708,973.540000009645,-0.05570104849898775 +194709,973.5450000096452,-0.05570100248304383 +194710,973.5500000096453,-0.055700956473359015 +194711,973.5550000096454,-0.055700910469931204 +194712,973.5600000096455,-0.05570086447275829 +194713,973.5650000096456,-0.05570081848183816 +194714,973.5700000096457,-0.055700772497168684 +194715,973.5750000096458,-0.05570072651874779 +194716,973.5800000096459,-0.055700680546573324 +194717,973.585000009646,-0.05570063458064321 +194718,973.5900000096461,-0.05570058862095533 +194719,973.5950000096462,-0.05570054266750756 +194720,973.6000000096464,-0.055700496720297824 +194721,973.6050000096465,-0.05570045077932397 +194722,973.6100000096466,-0.05570040484458393 +194723,973.6150000096467,-0.055700358916075575 +194724,973.6200000096468,-0.055700312993796804 +194725,973.6250000096469,-0.05570026707774551 +194726,973.630000009647,-0.055700221167919596 +194727,973.6350000096471,-0.055700175264316955 +194728,973.6400000096472,-0.05570012936693547 +194729,973.6450000096473,-0.05570008347577304 +194730,973.6500000096474,-0.055700037590827575 +194731,973.6550000096476,-0.05569999171209696 +194732,973.6600000096477,-0.05569994583957909 +194733,973.6650000096478,-0.055699899973271856 +194734,973.6700000096479,-0.05569985411317317 +194735,973.675000009648,-0.05569980825928093 +194736,973.6800000096481,-0.05569976241159303 +194737,973.6850000096482,-0.055699716570107374 +194738,973.6900000096483,-0.05569967073482185 +194739,973.6950000096484,-0.055699624905734366 +194740,973.7000000096485,-0.055699579082842836 +194741,973.7050000096486,-0.05569953326614512 +194742,973.7100000096488,-0.05569948745563916 +194743,973.7150000096489,-0.055699441651322845 +194744,973.720000009649,-0.05569939585319408 +194745,973.7250000096491,-0.055699350061250756 +194746,973.7300000096492,-0.055699304275490774 +194747,973.7350000096493,-0.05569925849591206 +194748,973.7400000096494,-0.0556992127225125 +194749,973.7450000096495,-0.055699166955289994 +194750,973.7500000096496,-0.05569912119424247 +194751,973.7550000096497,-0.05569907543936781 +194752,973.7600000096498,-0.05569902969066392 +194753,973.76500000965,-0.05569898394812873 +194754,973.7700000096501,-0.05569893821176013 +194755,973.7750000096502,-0.05569889248155602 +194756,973.7800000096503,-0.055698846757514305 +194757,973.7850000096504,-0.055698801039632914 +194758,973.7900000096505,-0.05569875532790974 +194759,973.7950000096506,-0.05569870962234269 +194760,973.8000000096507,-0.055698663922929686 +194761,973.8050000096508,-0.05569861822966863 +194762,973.8100000096509,-0.05569857254255742 +194763,973.815000009651,-0.055698526861593975 +194764,973.8200000096512,-0.05569848118677622 +194765,973.8250000096513,-0.055698435518102045 +194766,973.8300000096514,-0.05569838985556937 +194767,973.8350000096515,-0.055698344199176124 +194768,973.8400000096516,-0.055698298548920194 +194769,973.8450000096517,-0.0556982529047995 +194770,973.8500000096518,-0.05569820726681196 +194771,973.8550000096519,-0.05569816163495549 +194772,973.860000009652,-0.05569811600922799 +194773,973.8650000096521,-0.05569807038962739 +194774,973.8700000096522,-0.0556980247761516 +194775,973.8750000096524,-0.055697979168798525 +194776,973.8800000096525,-0.055697933567566096 +194777,973.8850000096526,-0.055697887972452224 +194778,973.8900000096527,-0.05569784238345483 +194779,973.8950000096528,-0.055697796800571825 +194780,973.9000000096529,-0.05569775122380112 +194781,973.905000009653,-0.055697705653140646 +194782,973.9100000096531,-0.05569766008858832 +194783,973.9150000096532,-0.05569761453014206 +194784,973.9200000096533,-0.05569756897779979 +194785,973.9250000096534,-0.05569752343155942 +194786,973.9300000096536,-0.05569747789141887 +194787,973.9350000096537,-0.05569743235737606 +194788,973.9400000096538,-0.05569738682942892 +194789,973.9450000096539,-0.05569734130757537 +194790,973.950000009654,-0.05569729579181332 +194791,973.9550000096541,-0.0556972502821407 +194792,973.9600000096542,-0.055697204778555436 +194793,973.9650000096543,-0.05569715928105545 +194794,973.9700000096544,-0.055697113789638666 +194795,973.9750000096545,-0.055697068304303 +194796,973.9800000096546,-0.05569702282504639 +194797,973.9850000096548,-0.05569697735186675 +194798,973.9900000096549,-0.05569693188476201 +194799,973.995000009655,-0.055696886423730094 +194800,974.0000000096551,-0.055696840968768924 +194801,974.0050000096552,-0.05569679551987645 +194802,974.0100000096553,-0.05569675007705057 +194803,974.0150000096554,-0.05569670464028921 +194804,974.0200000096555,-0.05569665920959033 +194805,974.0250000096556,-0.055696613784951825 +194806,974.0300000096557,-0.055696568366371636 +194807,974.0350000096558,-0.05569652295384771 +194808,974.040000009656,-0.05569647754737794 +194809,974.0450000096561,-0.055696432146960295 +194810,974.0500000096562,-0.055696386752592676 +194811,974.0550000096563,-0.055696341364273025 +194812,974.0600000096564,-0.05569629598199927 +194813,974.0650000096565,-0.055696250605769354 +194814,974.0700000096566,-0.05569620523558119 +194815,974.0750000096567,-0.05569615987143273 +194816,974.0800000096568,-0.055696114513321904 +194817,974.0850000096569,-0.05569606916124663 +194818,974.090000009657,-0.05569602381520485 +194819,974.0950000096572,-0.05569597847519451 +194820,974.1000000096573,-0.05569593314121353 +194821,974.1050000096574,-0.05569588781325986 +194822,974.1100000096575,-0.05569584249133142 +194823,974.1150000096576,-0.05569579717542615 +194824,974.1200000096577,-0.055695751865541994 +194825,974.1250000096578,-0.055695706561676876 +194826,974.1300000096579,-0.055695661263828744 +194827,974.135000009658,-0.05569561597199552 +194828,974.1400000096581,-0.05569557068617517 +194829,974.1450000096582,-0.05569552540636562 +194830,974.1500000096584,-0.0556954801325648 +194831,974.1550000096585,-0.055695434864770646 +194832,974.1600000096586,-0.05569538960298111 +194833,974.1650000096587,-0.055695344347194135 +194834,974.1700000096588,-0.055695299097407655 +194835,974.1750000096589,-0.05569525385361962 +194836,974.180000009659,-0.055695208615827954 +194837,974.1850000096591,-0.05569516338403061 +194838,974.1900000096592,-0.055695118158225525 +194839,974.1950000096593,-0.05569507293841066 +194840,974.2000000096594,-0.055695027724583936 +194841,974.2050000096596,-0.05569498251674331 +194842,974.2100000096597,-0.055694937314886714 +194843,974.2150000096598,-0.05569489211901211 +194844,974.2200000096599,-0.055694846929117435 +194845,974.22500000966,-0.055694801745200626 +194846,974.2300000096601,-0.05569475656725963 +194847,974.2350000096602,-0.055694711395292404 +194848,974.2400000096603,-0.055694666229296884 +194849,974.2450000096604,-0.05569462106927104 +194850,974.2500000096605,-0.055694575915212784 +194851,974.2550000096606,-0.05569453076712009 +194852,974.2600000096608,-0.05569448562499089 +194853,974.2650000096609,-0.055694440488823146 +194854,974.270000009661,-0.05569439535861481 +194855,974.2750000096611,-0.055694350234363824 +194856,974.2800000096612,-0.05569430511606814 +194857,974.2850000096613,-0.05569426000372569 +194858,974.2900000096614,-0.05569421489733445 +194859,974.2950000096615,-0.055694169796892366 +194860,974.3000000096616,-0.05569412470239739 +194861,974.3050000096617,-0.055694079613847466 +194862,974.3100000096618,-0.05569403453124055 +194863,974.315000009662,-0.05569398945457459 +194864,974.3200000096621,-0.05569394438384755 +194865,974.3250000096622,-0.05569389931905738 +194866,974.3300000096623,-0.05569385426020205 +194867,974.3350000096624,-0.05569380920727949 +194868,974.3400000096625,-0.05569376416028766 +194869,974.3450000096626,-0.05569371911922453 +194870,974.3500000096627,-0.055693674084088034 +194871,974.3550000096628,-0.05569362905487614 +194872,974.3600000096629,-0.05569358403158681 +194873,974.365000009663,-0.05569353901421799 +194874,974.3700000096632,-0.05569349400276765 +194875,974.3750000096633,-0.05569344899723375 +194876,974.3800000096634,-0.05569340399761423 +194877,974.3850000096635,-0.05569335900390706 +194878,974.3900000096636,-0.05569331401611021 +194879,974.3950000096637,-0.055693269034221615 +194880,974.4000000096638,-0.05569322405823925 +194881,974.4050000096639,-0.05569317908816109 +194882,974.410000009664,-0.05569313412398508 +194883,974.4150000096641,-0.05569308916570917 +194884,974.4200000096642,-0.055693044213331336 +194885,974.4250000096644,-0.05569299926684954 +194886,974.4300000096645,-0.05569295432626174 +194887,974.4350000096646,-0.055692909391565903 +194888,974.4400000096647,-0.05569286446276 +194889,974.4450000096648,-0.055692819539841995 +194890,974.4500000096649,-0.05569277462280984 +194891,974.455000009665,-0.055692729711661504 +194892,974.4600000096651,-0.05569268480639495 +194893,974.4650000096652,-0.055692639907008144 +194894,974.4700000096653,-0.05569259501349906 +194895,974.4750000096655,-0.055692550125865666 +194896,974.4800000096656,-0.05569250524410592 +194897,974.4850000096657,-0.05569246036821778 +194898,974.4900000096658,-0.05569241549819924 +194899,974.4950000096659,-0.05569237063404825 +194900,974.500000009666,-0.05569232577576278 +194901,974.5050000096661,-0.0556922809233408 +194902,974.5100000096662,-0.05569223607678029 +194903,974.5150000096663,-0.055692191236079214 +194904,974.5200000096664,-0.055692146401235536 +194905,974.5250000096665,-0.05569210157224722 +194906,974.5300000096667,-0.05569205674911227 +194907,974.5350000096668,-0.055692011931828635 +194908,974.5400000096669,-0.05569196712039428 +194909,974.545000009667,-0.055691922314807185 +194910,974.5500000096671,-0.05569187751506533 +194911,974.5550000096672,-0.05569183272116668 +194912,974.5600000096673,-0.0556917879331092 +194913,974.5650000096674,-0.055691743150890885 +194914,974.5700000096675,-0.0556916983745097 +194915,974.5750000096676,-0.055691653603963616 +194916,974.5800000096677,-0.05569160883925061 +194917,974.5850000096679,-0.05569156408036866 +194918,974.590000009668,-0.055691519327315746 +194919,974.5950000096681,-0.05569147458008985 +194920,974.6000000096682,-0.05569142983868892 +194921,974.6050000096683,-0.05569138510311096 +194922,974.6100000096684,-0.05569134037335394 +194923,974.6150000096685,-0.05569129564941585 +194924,974.6200000096686,-0.05569125093129465 +194925,974.6250000096687,-0.05569120621898833 +194926,974.6300000096688,-0.055691161512494876 +194927,974.6350000096689,-0.05569111681181225 +194928,974.640000009669,-0.055691072116938446 +194929,974.6450000096692,-0.05569102742787144 +194930,974.6500000096693,-0.0556909827446092 +194931,974.6550000096694,-0.05569093806714973 +194932,974.6600000096695,-0.05569089339549102 +194933,974.6650000096696,-0.05569084872963103 +194934,974.6700000096697,-0.05569080406956775 +194935,974.6750000096698,-0.055690759415299156 +194936,974.6800000096699,-0.055690714766823246 +194937,974.68500000967,-0.055690670124137996 +194938,974.6900000096701,-0.055690625487241394 +194939,974.6950000096703,-0.05569058085613142 +194940,974.7000000096704,-0.05569053623080606 +194941,974.7050000096705,-0.05569049161126331 +194942,974.7100000096706,-0.05569044699750114 +194943,974.7150000096707,-0.05569040238951754 +194944,974.7200000096708,-0.05569035778731052 +194945,974.7250000096709,-0.05569031319087805 +194946,974.730000009671,-0.055690268600218105 +194947,974.7350000096711,-0.05569022401532869 +194948,974.7400000096712,-0.0556901794362078 +194949,974.7450000096713,-0.055690134862853416 +194950,974.7500000096715,-0.05569009029526352 +194951,974.7550000096716,-0.05569004573343611 +194952,974.7600000096717,-0.05569000117736917 +194953,974.7650000096718,-0.05568995662706071 +194954,974.7700000096719,-0.0556899120825087 +194955,974.775000009672,-0.05568986754371115 +194956,974.7800000096721,-0.05568982301066603 +194957,974.7850000096722,-0.05568977848337136 +194958,974.7900000096723,-0.0556897339618251 +194959,974.7950000096724,-0.05568968944602527 +194960,974.8000000096725,-0.055689644935969854 +194961,974.8050000096727,-0.05568960043165684 +194962,974.8100000096728,-0.05568955593308424 +194963,974.8150000096729,-0.05568951144025003 +194964,974.820000009673,-0.055689466953152224 +194965,974.8250000096731,-0.055689422471788805 +194966,974.8300000096732,-0.05568937799615777 +194967,974.8350000096733,-0.05568933352625713 +194968,974.8400000096734,-0.05568928906208487 +194969,974.8450000096735,-0.055689244603638985 +194970,974.8500000096736,-0.055689200150917474 +194971,974.8550000096737,-0.055689155703918344 +194972,974.8600000096739,-0.05568911126263958 +194973,974.865000009674,-0.055689066827079206 +194974,974.8700000096741,-0.055689022397235194 +194975,974.8750000096742,-0.055688977973105555 +194976,974.8800000096743,-0.05568893355468829 +194977,974.8850000096744,-0.055688889141981404 +194978,974.8900000096745,-0.055688844734982895 +194979,974.8950000096746,-0.055688800333690766 +194980,974.9000000096747,-0.05568875593810302 +194981,974.9050000096748,-0.055688711548217654 +194982,974.910000009675,-0.05568866716403268 +194983,974.915000009675,-0.05568862278554609 +194984,974.9200000096752,-0.05568857841275589 +194985,974.9250000096753,-0.05568853404566009 +194986,974.9300000096754,-0.055688489684256694 +194987,974.9350000096755,-0.05568844532854371 +194988,974.9400000096756,-0.05568840097851914 +194989,974.9450000096757,-0.055688356634180994 +194990,974.9500000096758,-0.055688312295527266 +194991,974.9550000096759,-0.055688267962555986 +194992,974.960000009676,-0.055688223635265134 +194993,974.9650000096761,-0.055688179313652726 +194994,974.9700000096763,-0.05568813499771678 +194995,974.9750000096764,-0.05568809068745529 +194996,974.9800000096765,-0.05568804638286628 +194997,974.9850000096766,-0.05568800208394775 +194998,974.9900000096767,-0.055687957790697726 +194999,974.9950000096768,-0.05568791350311419 +195000,975.0000000096769,-0.055687869221195174 +195001,975.005000009677,-0.05568782494493869 +195002,975.0100000096771,-0.05568778067434272 +195003,975.0150000096772,-0.0556877364094053 +195004,975.0200000096773,-0.05568769215012445 +195005,975.0250000096775,-0.05568764789649818 +195006,975.0300000096776,-0.055687603648524486 +195007,975.0350000096777,-0.05568755940620139 +195008,975.0400000096778,-0.055687515169526906 +195009,975.0450000096779,-0.055687470938499045 +195010,975.050000009678,-0.05568742671311584 +195011,975.0550000096781,-0.055687382493375286 +195012,975.0600000096782,-0.0556873382792754 +195013,975.0650000096783,-0.05568729407081421 +195014,975.0700000096784,-0.05568724986798971 +195015,975.0750000096785,-0.05568720567079994 +195016,975.0800000096787,-0.055687161479242915 +195017,975.0850000096788,-0.05568711729331665 +195018,975.0900000096789,-0.05568707311301914 +195019,975.095000009679,-0.05568702893834843 +195020,975.1000000096791,-0.05568698476930254 +195021,975.1050000096792,-0.05568694060587947 +195022,975.1100000096793,-0.05568689644807726 +195023,975.1150000096794,-0.055686852295893915 +195024,975.1200000096795,-0.055686808149327464 +195025,975.1250000096796,-0.05568676400837592 +195026,975.1300000096797,-0.055686719873037305 +195027,975.1350000096799,-0.05568667574330965 +195028,975.14000000968,-0.05568663161919098 +195029,975.1450000096801,-0.05568658750067931 +195030,975.1500000096802,-0.05568654338777266 +195031,975.1550000096803,-0.05568649928046905 +195032,975.1600000096804,-0.055686455178766525 +195033,975.1650000096805,-0.05568641108266308 +195034,975.1700000096806,-0.05568636699215677 +195035,975.1750000096807,-0.05568632290724558 +195036,975.1800000096808,-0.05568627882792758 +195037,975.185000009681,-0.05568623475420077 +195038,975.1900000096811,-0.055686190686063175 +195039,975.1950000096812,-0.05568614662351283 +195040,975.2000000096813,-0.05568610256654776 +195041,975.2050000096814,-0.055686058515166 +195042,975.2100000096815,-0.05568601446936556 +195043,975.2150000096816,-0.05568597042914449 +195044,975.2200000096817,-0.05568592639450081 +195045,975.2250000096818,-0.05568588236543255 +195046,975.2300000096819,-0.05568583834193772 +195047,975.235000009682,-0.05568579432401438 +195048,975.2400000096821,-0.055685750311660544 +195049,975.2450000096823,-0.055685706304874245 +195050,975.2500000096824,-0.055685662303653516 +195051,975.2550000096825,-0.05568561830799639 +195052,975.2600000096826,-0.0556855743179009 +195053,975.2650000096827,-0.05568553033336508 +195054,975.2700000096828,-0.05568548635438696 +195055,975.2750000096829,-0.05568544238096456 +195056,975.280000009683,-0.05568539841309592 +195057,975.2850000096831,-0.0556853544507791 +195058,975.2900000096832,-0.055685310494012104 +195059,975.2950000096833,-0.055685266542792974 +195060,975.3000000096835,-0.05568522259711975 +195061,975.3050000096836,-0.05568517865699048 +195062,975.3100000096837,-0.055685134722403176 +195063,975.3150000096838,-0.05568509079335589 +195064,975.3200000096839,-0.05568504686984665 +195065,975.325000009684,-0.0556850029518735 +195066,975.3300000096841,-0.055684959039434476 +195067,975.3350000096842,-0.05568491513252761 +195068,975.3400000096843,-0.05568487123115095 +195069,975.3450000096844,-0.05568482733530253 +195070,975.3500000096845,-0.0556847834449804 +195071,975.3550000096847,-0.05568473956018258 +195072,975.3600000096848,-0.05568469568090713 +195073,975.3650000096849,-0.05568465180715208 +195074,975.370000009685,-0.05568460793891548 +195075,975.3750000096851,-0.05568456407619536 +195076,975.3800000096852,-0.055684520218989765 +195077,975.3850000096853,-0.055684476367296724 +195078,975.3900000096854,-0.055684432521114303 +195079,975.3950000096855,-0.05568438868044055 +195080,975.4000000096856,-0.05568434484527349 +195081,975.4050000096858,-0.05568430101561117 +195082,975.4100000096859,-0.05568425719145164 +195083,975.415000009686,-0.05568421337279294 +195084,975.4200000096861,-0.05568416955963312 +195085,975.4250000096862,-0.055684125751970216 +195086,975.4300000096863,-0.055684081949802275 +195087,975.4350000096864,-0.05568403815312736 +195088,975.4400000096865,-0.055683994361943503 +195089,975.4450000096866,-0.05568395057624876 +195090,975.4500000096867,-0.055683906796041176 +195091,975.4550000096868,-0.05568386302131879 +195092,975.460000009687,-0.05568381925207966 +195093,975.4650000096871,-0.05568377548832183 +195094,975.4700000096872,-0.05568373173004335 +195095,975.4750000096873,-0.055683687977242276 +195096,975.4800000096874,-0.05568364422991665 +195097,975.4850000096875,-0.055683600488064526 +195098,975.4900000096876,-0.05568355675168397 +195099,975.4950000096877,-0.055683513020773005 +195100,975.5000000096878,-0.055683469295329704 +195101,975.5050000096879,-0.05568342557535211 +195102,975.510000009688,-0.055683381860838266 +195103,975.5150000096882,-0.05568333815178625 +195104,975.5200000096883,-0.055683294448194094 +195105,975.5250000096884,-0.05568325075005986 +195106,975.5300000096885,-0.0556832070573816 +195107,975.5350000096886,-0.05568316337015738 +195108,975.5400000096887,-0.055683119688385234 +195109,975.5450000096888,-0.05568307601206322 +195110,975.5500000096889,-0.05568303234118942 +195111,975.555000009689,-0.055682988675761866 +195112,975.5600000096891,-0.05568294501577863 +195113,975.5650000096892,-0.055682901361237755 +195114,975.5700000096894,-0.05568285771213731 +195115,975.5750000096895,-0.05568281406847534 +195116,975.5800000096896,-0.055682770430249905 +195117,975.5850000096897,-0.05568272679745907 +195118,975.5900000096898,-0.0556826831701009 +195119,975.5950000096899,-0.05568263954817346 +195120,975.60000000969,-0.05568259593167479 +195121,975.6050000096901,-0.05568255232060295 +195122,975.6100000096902,-0.05568250871495602 +195123,975.6150000096903,-0.055682465114732044 +195124,975.6200000096904,-0.05568242151992908 +195125,975.6250000096906,-0.0556823779305452 +195126,975.6300000096907,-0.055682334346578474 +195127,975.6350000096908,-0.055682290768026964 +195128,975.6400000096909,-0.05568224719488872 +195129,975.645000009691,-0.055682203627161815 +195130,975.6500000096911,-0.0556821600648443 +195131,975.6550000096912,-0.055682116507934254 +195132,975.6600000096913,-0.05568207295642973 +195133,975.6650000096914,-0.055682029410328814 +195134,975.6700000096915,-0.055681985869629545 +195135,975.6750000096916,-0.055681942334330006 +195136,975.6800000096918,-0.05568189880442826 +195137,975.6850000096919,-0.05568185527992237 +195138,975.690000009692,-0.05568181176081042 +195139,975.6950000096921,-0.05568176824709046 +195140,975.7000000096922,-0.05568172473876057 +195141,975.7050000096923,-0.0556816812358188 +195142,975.7100000096924,-0.055681637738263234 +195143,975.7150000096925,-0.05568159424609193 +195144,975.7200000096926,-0.055681550759302964 +195145,975.7250000096927,-0.055681507277894414 +195146,975.7300000096928,-0.05568146380186434 +195147,975.735000009693,-0.05568142033121082 +195148,975.7400000096931,-0.05568137686593191 +195149,975.7450000096932,-0.0556813334060257 +195150,975.7500000096933,-0.055681289951490257 +195151,975.7550000096934,-0.05568124650232366 +195152,975.7600000096935,-0.05568120305852396 +195153,975.7650000096936,-0.055681159620089245 +195154,975.7700000096937,-0.05568111618701759 +195155,975.7750000096938,-0.055681072759307074 +195156,975.7800000096939,-0.05568102933695576 +195157,975.785000009694,-0.05568098591996173 +195158,975.7900000096942,-0.055680942508323054 +195159,975.7950000096943,-0.055680899102037815 +195160,975.8000000096944,-0.05568085570110408 +195161,975.8050000096945,-0.05568081230551994 +195162,975.8100000096946,-0.05568076891528345 +195163,975.8150000096947,-0.05568072553039272 +195164,975.8200000096948,-0.055680682150845796 +195165,975.8250000096949,-0.05568063877664078 +195166,975.830000009695,-0.05568059540777573 +195167,975.8350000096951,-0.05568055204424873 +195168,975.8400000096952,-0.05568050868605787 +195169,975.8450000096954,-0.055680465333201215 +195170,975.8500000096955,-0.05568042198567686 +195171,975.8550000096956,-0.05568037864348288 +195172,975.8600000096957,-0.05568033530661737 +195173,975.8650000096958,-0.05568029197507838 +195174,975.8700000096959,-0.05568024864886401 +195175,975.875000009696,-0.05568020532797235 +195176,975.8800000096961,-0.05568016201240147 +195177,975.8850000096962,-0.05568011870214946 +195178,975.8900000096963,-0.055680075397214396 +195179,975.8950000096964,-0.05568003209759437 +195180,975.9000000096966,-0.05567998880328744 +195181,975.9050000096967,-0.05567994551429173 +195182,975.9100000096968,-0.05567990223060531 +195183,975.9150000096969,-0.055679858952226255 +195184,975.920000009697,-0.05567981567915267 +195185,975.9250000096971,-0.05567977241138263 +195186,975.9300000096972,-0.05567972914891422 +195187,975.9350000096973,-0.05567968589174554 +195188,975.9400000096974,-0.05567964263987466 +195189,975.9450000096975,-0.05567959939329967 +195190,975.9500000096976,-0.05567955615201867 +195191,975.9550000096978,-0.05567951291602974 +195192,975.9600000096979,-0.055679469685330975 +195193,975.965000009698,-0.05567942645992045 +195194,975.9700000096981,-0.05567938323979628 +195195,975.9750000096982,-0.05567934002495653 +195196,975.9800000096983,-0.055679296815399314 +195197,975.9850000096984,-0.055679253611122706 +195198,975.9900000096985,-0.055679210412124806 +195199,975.9950000096986,-0.055679167218403706 +195200,976.0000000096987,-0.05567912402995749 +195201,976.0050000096988,-0.05567908084678426 +195202,976.010000009699,-0.0556790376688821 +195203,976.0150000096991,-0.05567899449624912 +195204,976.0200000096992,-0.05567895132888339 +195205,976.0250000096993,-0.05567890816678302 +195206,976.0300000096994,-0.055678865009946094 +195207,976.0350000096995,-0.055678821858370725 +195208,976.0400000096996,-0.055678778712054997 +195209,976.0450000096997,-0.05567873557099701 +195210,976.0500000096998,-0.05567869243519485 +195211,976.0550000096999,-0.055678649304646624 +195212,976.0600000097,-0.05567860617935044 +195213,976.0650000097002,-0.05567856305930437 +195214,976.0700000097003,-0.05567851994450652 +195215,976.0750000097004,-0.055678476834955005 +195216,976.0800000097005,-0.05567843373064791 +195217,976.0850000097006,-0.05567839063158334 +195218,976.0900000097007,-0.05567834753775938 +195219,976.0950000097008,-0.05567830444917415 +195220,976.1000000097009,-0.05567826136582574 +195221,976.105000009701,-0.055678218287712244 +195222,976.1100000097011,-0.05567817521483177 +195223,976.1150000097012,-0.055678132147182424 +195224,976.1200000097014,-0.05567808908476231 +195225,976.1250000097015,-0.055678046027569525 +195226,976.1300000097016,-0.05567800297560217 +195227,976.1350000097017,-0.055677959928858343 +195228,976.1400000097018,-0.05567791688733617 +195229,976.1450000097019,-0.055677873851033725 +195230,976.150000009702,-0.05567783081994914 +195231,976.1550000097021,-0.0556777877940805 +195232,976.1600000097022,-0.055677744773425915 +195233,976.1650000097023,-0.0556777017579835 +195234,976.1700000097024,-0.05567765874775135 +195235,976.1750000097026,-0.05567761574272758 +195236,976.1800000097027,-0.05567757274291029 +195237,976.1850000097028,-0.05567752974829759 +195238,976.1900000097029,-0.05567748675888758 +195239,976.195000009703,-0.055677443774678384 +195240,976.2000000097031,-0.055677400795668096 +195241,976.2050000097032,-0.05567735782185483 +195242,976.2100000097033,-0.055677314853236695 +195243,976.2150000097034,-0.05567727188981181 +195244,976.2200000097035,-0.05567722893157827 +195245,976.2250000097036,-0.05567718597853418 +195246,976.2300000097038,-0.05567714303067769 +195247,976.2350000097039,-0.055677100088006866 +195248,976.240000009704,-0.05567705715051984 +195249,976.2450000097041,-0.05567701421821472 +195250,976.2500000097042,-0.055676971291089616 +195251,976.2550000097043,-0.05567692836914265 +195252,976.2600000097044,-0.05567688545237192 +195253,976.2650000097045,-0.055676842540775554 +195254,976.2700000097046,-0.05567679963435167 +195255,976.2750000097047,-0.055676756733098375 +195256,976.2800000097048,-0.05567671383701378 +195257,976.285000009705,-0.055676670946096 +195258,976.2900000097051,-0.055676628060343146 +195259,976.2950000097052,-0.055676585179753345 +195260,976.3000000097053,-0.055676542304324714 +195261,976.3050000097054,-0.05567649943405536 +195262,976.3100000097055,-0.05567645656894341 +195263,976.3150000097056,-0.055676413708986974 +195264,976.3200000097057,-0.05567637085418417 +195265,976.3250000097058,-0.055676328004533135 +195266,976.3300000097059,-0.055676285160031966 +195267,976.335000009706,-0.0556762423206788 +195268,976.3400000097062,-0.055676199486471734 +195269,976.3450000097063,-0.055676156657408896 +195270,976.3500000097064,-0.055676113833488416 +195271,976.3550000097065,-0.0556760710147084 +195272,976.3600000097066,-0.055676028201066985 +195273,976.3650000097067,-0.055675985392562286 +195274,976.3700000097068,-0.055675942589192416 +195275,976.3750000097069,-0.05567589979095551 +195276,976.380000009707,-0.055675856997849694 +195277,976.3850000097071,-0.05567581420987308 +195278,976.3900000097073,-0.05567577142702379 +195279,976.3950000097074,-0.055675728649299955 +195280,976.4000000097075,-0.0556756858766997 +195281,976.4050000097076,-0.05567564310922116 +195282,976.4100000097077,-0.05567560034686244 +195283,976.4150000097078,-0.05567555758962168 +195284,976.4200000097079,-0.05567551483749699 +195285,976.425000009708,-0.05567547209048651 +195286,976.4300000097081,-0.05567542934858835 +195287,976.4350000097082,-0.05567538661180066 +195288,976.4400000097083,-0.05567534388012156 +195289,976.4450000097085,-0.05567530115354917 +195290,976.4500000097086,-0.05567525843208162 +195291,976.4550000097087,-0.05567521571571705 +195292,976.4600000097088,-0.05567517300445357 +195293,976.4650000097089,-0.055675130298289334 +195294,976.470000009709,-0.05567508759722246 +195295,976.4750000097091,-0.055675044901251074 +195296,976.4800000097092,-0.05567500221037331 +195297,976.4850000097093,-0.05567495952458729 +195298,976.4900000097094,-0.05567491684389117 +195299,976.4950000097095,-0.05567487416828305 +195300,976.5000000097097,-0.05567483149776109 +195301,976.5050000097098,-0.055674788832323414 +195302,976.5100000097099,-0.05567474617196815 +195303,976.51500000971,-0.05567470351669343 +195304,976.5200000097101,-0.05567466086649739 +195305,976.5250000097102,-0.05567461822137817 +195306,976.5300000097103,-0.0556745755813339 +195307,976.5350000097104,-0.055674532946362716 +195308,976.5400000097105,-0.05567449031646275 +195309,976.5450000097106,-0.055674447691632156 +195310,976.5500000097107,-0.05567440507186905 +195311,976.5550000097109,-0.05567436245717157 +195312,976.560000009711,-0.05567431984753786 +195313,976.5650000097111,-0.05567427724296606 +195314,976.5700000097112,-0.0556742346434543 +195315,976.5750000097113,-0.055674192049000724 +195316,976.5800000097114,-0.05567414945960346 +195317,976.5850000097115,-0.055674106875260664 +195318,976.5900000097116,-0.05567406429597045 +195319,976.5950000097117,-0.055674021721731 +195320,976.6000000097118,-0.05567397915254041 +195321,976.605000009712,-0.055673936588396845 +195322,976.610000009712,-0.05567389402929844 +195323,976.6150000097122,-0.05567385147524334 +195324,976.6200000097123,-0.05567380892622968 +195325,976.6250000097124,-0.05567376638225561 +195326,976.6300000097125,-0.05567372384331927 +195327,976.6350000097126,-0.055673681309418785 +195328,976.6400000097127,-0.05567363878055232 +195329,976.6450000097128,-0.055673596256718014 +195330,976.6500000097129,-0.05567355373791402 +195331,976.655000009713,-0.05567351122413847 +195332,976.6600000097131,-0.05567346871538951 +195333,976.6650000097133,-0.05567342621166529 +195334,976.6700000097134,-0.05567338371296395 +195335,976.6750000097135,-0.05567334121928364 +195336,976.6800000097136,-0.05567329873062251 +195337,976.6850000097137,-0.0556732562469787 +195338,976.6900000097138,-0.055673213768350355 +195339,976.6950000097139,-0.055673171294735625 +195340,976.700000009714,-0.05567312882613267 +195341,976.7050000097141,-0.055673086362539634 +195342,976.7100000097142,-0.055673043903954667 +195343,976.7150000097143,-0.05567300145037591 +195344,976.7200000097145,-0.055672959001801504 +195345,976.7250000097146,-0.05567291655822962 +195346,976.7300000097147,-0.05567287411965839 +195347,976.7350000097148,-0.05567283168608597 +195348,976.7400000097149,-0.055672789257510534 +195349,976.745000009715,-0.055672746833930205 +195350,976.7500000097151,-0.05567270441534315 +195351,976.7550000097152,-0.05567266200174751 +195352,976.7600000097153,-0.05567261959314145 +195353,976.7650000097154,-0.05567257718952311 +195354,976.7700000097155,-0.05567253479089067 +195355,976.7750000097157,-0.05567249239724225 +195356,976.7800000097158,-0.05567245000857602 +195357,976.7850000097159,-0.05567240762489014 +195358,976.790000009716,-0.05567236524618276 +195359,976.7950000097161,-0.055672322872452044 +195360,976.8000000097162,-0.05567228050369613 +195361,976.8050000097163,-0.05567223813991318 +195362,976.8100000097164,-0.05567219578110135 +195363,976.8150000097165,-0.05567215342725881 +195364,976.8200000097166,-0.055672111078383706 +195365,976.8250000097167,-0.05567206873447421 +195366,976.8300000097169,-0.055672026395528464 +195367,976.835000009717,-0.05567198406154464 +195368,976.8400000097171,-0.05567194173252088 +195369,976.8450000097172,-0.05567189940845535 +195370,976.8500000097173,-0.05567185708934622 +195371,976.8550000097174,-0.05567181477519163 +195372,976.8600000097175,-0.055671772465989776 +195373,976.8650000097176,-0.05567173016173878 +195374,976.8700000097177,-0.05567168786243683 +195375,976.8750000097178,-0.05567164556808207 +195376,976.880000009718,-0.055671603278672675 +195377,976.885000009718,-0.055671560994206816 +195378,976.8900000097182,-0.055671518714682636 +195379,976.8950000097183,-0.0556714764400983 +195380,976.9000000097184,-0.05567143417045199 +195381,976.9050000097185,-0.05567139190574184 +195382,976.9100000097186,-0.055671349645966046 +195383,976.9150000097187,-0.055671307391122755 +195384,976.9200000097188,-0.055671265141210145 +195385,976.9250000097189,-0.05567122289622637 +195386,976.930000009719,-0.0556711806561696 +195387,976.9350000097191,-0.055671138421038 +195388,976.9400000097193,-0.05567109619082973 +195389,976.9450000097194,-0.05567105396554297 +195390,976.9500000097195,-0.05567101174517589 +195391,976.9550000097196,-0.05567096952972665 +195392,976.9600000097197,-0.055670927319193424 +195393,976.9650000097198,-0.055670885113574375 +195394,976.9700000097199,-0.05567084291286767 +195395,976.97500000972,-0.055670800717071485 +195396,976.9800000097201,-0.055670758526183986 +195397,976.9850000097202,-0.055670716340203354 +195398,976.9900000097203,-0.055670674159127756 +195399,976.9950000097205,-0.055670631982955354 +195400,977.0000000097206,-0.05567058981168432 +195401,977.0050000097207,-0.05567054764531284 +195402,977.0100000097208,-0.05567050548383907 +195403,977.0150000097209,-0.05567046332726119 +195404,977.020000009721,-0.05567042117557738 +195405,977.0250000097211,-0.055670379028785806 +195406,977.0300000097212,-0.05567033688688464 +195407,977.0350000097213,-0.055670294749872055 +195408,977.0400000097214,-0.055670252617746246 +195409,977.0450000097215,-0.055670210490505356 +195410,977.0500000097217,-0.05567016836814759 +195411,977.0550000097218,-0.0556701262506711 +195412,977.0600000097219,-0.055670084138074075 +195413,977.065000009722,-0.055670042030354694 +195414,977.0700000097221,-0.05566999992751113 +195415,977.0750000097222,-0.05566995782954156 +195416,977.0800000097223,-0.05566991573644417 +195417,977.0850000097224,-0.05566987364821712 +195418,977.0900000097225,-0.0556698315648586 +195419,977.0950000097226,-0.055669789486366784 +195420,977.1000000097227,-0.05566974741273987 +195421,977.1050000097229,-0.05566970534397601 +195422,977.110000009723,-0.05566966328007341 +195423,977.1150000097231,-0.055669621221030224 +195424,977.1200000097232,-0.05566957916684466 +195425,977.1250000097233,-0.05566953711751488 +195426,977.1300000097234,-0.055669495073039074 +195427,977.1350000097235,-0.055669453033415424 +195428,977.1400000097236,-0.05566941099864211 +195429,977.1450000097237,-0.055669368968717325 +195430,977.1500000097238,-0.055669326943639234 +195431,977.155000009724,-0.05566928492340604 +195432,977.1600000097241,-0.05566924290801592 +195433,977.1650000097242,-0.055669200897467054 +195434,977.1700000097243,-0.05566915889175762 +195435,977.1750000097244,-0.05566911689088582 +195436,977.1800000097245,-0.05566907489484983 +195437,977.1850000097246,-0.05566903290364783 +195438,977.1900000097247,-0.055668990917278026 +195439,977.1950000097248,-0.05566894893573859 +195440,977.2000000097249,-0.05566890695902771 +195441,977.205000009725,-0.05566886498714358 +195442,977.2100000097251,-0.05566882302008439 +195443,977.2150000097253,-0.055668781057848324 +195444,977.2200000097254,-0.05566873910043356 +195445,977.2250000097255,-0.055668697147838286 +195446,977.2300000097256,-0.055668655200060715 +195447,977.2350000097257,-0.05566861325709903 +195448,977.2400000097258,-0.05566857131895141 +195449,977.2450000097259,-0.055668529385616054 +195450,977.250000009726,-0.055668487457091145 +195451,977.2550000097261,-0.05566844553337488 +195452,977.2600000097262,-0.05566840361446545 +195453,977.2650000097264,-0.055668361700361046 +195454,977.2700000097265,-0.05566831979105987 +195455,977.2750000097266,-0.055668277886560105 +195456,977.2800000097267,-0.055668235986859944 +195457,977.2850000097268,-0.05566819409195759 +195458,977.2900000097269,-0.05566815220185123 +195459,977.295000009727,-0.05566811031653906 +195460,977.3000000097271,-0.05566806843601927 +195461,977.3050000097272,-0.05566802656029006 +195462,977.3100000097273,-0.05566798468934962 +195463,977.3150000097274,-0.055667942823196155 +195464,977.3200000097276,-0.05566790096182787 +195465,977.3250000097277,-0.05566785910524294 +195466,977.3300000097278,-0.05566781725343958 +195467,977.3350000097279,-0.05566777540641597 +195468,977.340000009728,-0.05566773356417032 +195469,977.3450000097281,-0.05566769172670082 +195470,977.3500000097282,-0.055667649894005695 +195471,977.3550000097283,-0.055667608066083105 +195472,977.3600000097284,-0.05566756624293129 +195473,977.3650000097285,-0.05566752442454842 +195474,977.3700000097286,-0.0556674826109327 +195475,977.3750000097288,-0.055667440802082344 +195476,977.3800000097289,-0.05566739899799553 +195477,977.385000009729,-0.05566735719867049 +195478,977.3900000097291,-0.0556673154041054 +195479,977.3950000097292,-0.05566727361429847 +195480,977.4000000097293,-0.05566723182924791 +195481,977.4050000097294,-0.055667190048951924 +195482,977.4100000097295,-0.0556671482734087 +195483,977.4150000097296,-0.05566710650261645 +195484,977.4200000097297,-0.05566706473657338 +195485,977.4250000097298,-0.0556670229752777 +195486,977.43000000973,-0.05566698121872762 +195487,977.4350000097301,-0.05566693946692132 +195488,977.4400000097302,-0.05566689771985702 +195489,977.4450000097303,-0.05566685597753293 +195490,977.4500000097304,-0.05566681423994726 +195491,977.4550000097305,-0.0556667725070982 +195492,977.4600000097306,-0.05566673077898398 +195493,977.4650000097307,-0.05566668905560278 +195494,977.4700000097308,-0.05566664733695282 +195495,977.4750000097309,-0.05566660562303233 +195496,977.480000009731,-0.055666563913839485 +195497,977.4850000097312,-0.055666522209372515 +195498,977.4900000097313,-0.05566648050962962 +195499,977.4950000097314,-0.055666438814609025 +195500,977.5000000097315,-0.05566639712430892 +195501,977.5050000097316,-0.05566635543872752 +195502,977.5100000097317,-0.05566631375786305 +195503,977.5150000097318,-0.055666272081713715 +195504,977.5200000097319,-0.05566623041027772 +195505,977.525000009732,-0.05566618874355328 +195506,977.5300000097321,-0.055666147081538615 +195507,977.5350000097322,-0.05566610542423193 +195508,977.5400000097324,-0.05566606377163144 +195509,977.5450000097325,-0.05566602212373537 +195510,977.5500000097326,-0.05566598048054192 +195511,977.5550000097327,-0.0556659388420493 +195512,977.5600000097328,-0.055665897208255745 +195513,977.5650000097329,-0.05566585557915946 +195514,977.570000009733,-0.05566581395475865 +195515,977.5750000097331,-0.055665772335051544 +195516,977.5800000097332,-0.05566573072003637 +195517,977.5850000097333,-0.05566568910971131 +195518,977.5900000097334,-0.055665647504074614 +195519,977.5950000097336,-0.055665605903124485 +195520,977.6000000097337,-0.05566556430685916 +195521,977.6050000097338,-0.055665522715276826 +195522,977.6100000097339,-0.055665481128375716 +195523,977.615000009734,-0.05566543954615405 +195524,977.6200000097341,-0.05566539796861005 +195525,977.6250000097342,-0.05566535639574194 +195526,977.6300000097343,-0.05566531482754793 +195527,977.6350000097344,-0.05566527326402624 +195528,977.6400000097345,-0.0556652317051751 +195529,977.6450000097346,-0.05566519015099273 +195530,977.6500000097348,-0.055665148601477345 +195531,977.6550000097349,-0.05566510705662717 +195532,977.660000009735,-0.055665065516440425 +195533,977.6650000097351,-0.055665023980915336 +195534,977.6700000097352,-0.05566498245005013 +195535,977.6750000097353,-0.05566494092384303 +195536,977.6800000097354,-0.055664899402292266 +195537,977.6850000097355,-0.055664857885396046 +195538,977.6900000097356,-0.05566481637315262 +195539,977.6950000097357,-0.05566477486556019 +195540,977.7000000097358,-0.055664733362616986 +195541,977.705000009736,-0.05566469186432124 +195542,977.7100000097361,-0.055664650370671184 +195543,977.7150000097362,-0.05566460888166503 +195544,977.7200000097363,-0.05566456739730102 +195545,977.7250000097364,-0.055664525917577354 +195546,977.7300000097365,-0.05566448444249228 +195547,977.7350000097366,-0.055664442972044044 +195548,977.7400000097367,-0.055664401506230844 +195549,977.7450000097368,-0.05566436004505093 +195550,977.7500000097369,-0.055664318588502515 +195551,977.755000009737,-0.05566427713658383 +195552,977.7600000097372,-0.05566423568929312 +195553,977.7650000097373,-0.055664194246628614 +195554,977.7700000097374,-0.055664152808588524 +195555,977.7750000097375,-0.055664111375171105 +195556,977.7800000097376,-0.055664069946374586 +195557,977.7850000097377,-0.055664028522197186 +195558,977.7900000097378,-0.05566398710263714 +195559,977.7950000097379,-0.05566394568769267 +195560,977.800000009738,-0.05566390427736205 +195561,977.8050000097381,-0.055663862871643474 +195562,977.8100000097382,-0.055663821470535196 +195563,977.8150000097384,-0.05566378007403545 +195564,977.8200000097385,-0.05566373868214245 +195565,977.8250000097386,-0.055663697294854445 +195566,977.8300000097387,-0.05566365591216967 +195567,977.8350000097388,-0.055663614534086366 +195568,977.8400000097389,-0.05566357316060277 +195569,977.845000009739,-0.055663531791717104 +195570,977.8500000097391,-0.05566349042742762 +195571,977.8550000097392,-0.05566344906773256 +195572,977.8600000097393,-0.05566340771263015 +195573,977.8650000097394,-0.055663366362118626 +195574,977.8700000097396,-0.055663325016196225 +195575,977.8750000097397,-0.05566328367486121 +195576,977.8800000097398,-0.05566324233811179 +195577,977.8850000097399,-0.05566320100594622 +195578,977.89000000974,-0.055663159678362745 +195579,977.8950000097401,-0.0556631183553596 +195580,977.9000000097402,-0.05566307703693502 +195581,977.9050000097403,-0.05566303572308725 +195582,977.9100000097404,-0.05566299441381453 +195583,977.9150000097405,-0.05566295310911511 +195584,977.9200000097406,-0.05566291180898722 +195585,977.9250000097408,-0.055662870513429115 +195586,977.9300000097409,-0.05566282922243903 +195587,977.935000009741,-0.05566278793601522 +195588,977.9400000097411,-0.05566274665415591 +195589,977.9450000097412,-0.05566270537685936 +195590,977.9500000097413,-0.05566266410412382 +195591,977.9550000097414,-0.055662622835947514 +195592,977.9600000097415,-0.05566258157232871 +195593,977.9650000097416,-0.055662540313265625 +195594,977.9700000097417,-0.055662499058756525 +195595,977.9750000097418,-0.05566245780879966 +195596,977.980000009742,-0.05566241656339327 +195597,977.9850000097421,-0.055662375322535596 +195598,977.9900000097422,-0.0556623340862249 +195599,977.9950000097423,-0.05566229285445942 +195600,978.0000000097424,-0.05566225162723741 +195601,978.0050000097425,-0.055662210404557114 +195602,978.0100000097426,-0.05566216918641679 +195603,978.0150000097427,-0.055662127972814675 +195604,978.0200000097428,-0.05566208676374903 +195605,978.0250000097429,-0.0556620455592181 +195606,978.030000009743,-0.055662004359220134 +195607,978.0350000097432,-0.05566196316375339 +195608,978.0400000097433,-0.055661921972816115 +195609,978.0450000097434,-0.055661880786406555 +195610,978.0500000097435,-0.055661839604522985 +195611,978.0550000097436,-0.055661798427163636 +195612,978.0600000097437,-0.05566175725432676 +195613,978.0650000097438,-0.055661716086010615 +195614,978.0700000097439,-0.05566167492221347 +195615,978.075000009744,-0.05566163376293355 +195616,978.0800000097441,-0.05566159260816913 +195617,978.0850000097442,-0.055661551457918464 +195618,978.0900000097444,-0.0556615103121798 +195619,978.0950000097445,-0.05566146917095139 +195620,978.1000000097446,-0.055661428034231505 +195621,978.1050000097447,-0.05566138690201839 +195622,978.1100000097448,-0.055661345774310304 +195623,978.1150000097449,-0.05566130465110551 +195624,978.120000009745,-0.055661263532402264 +195625,978.1250000097451,-0.055661222418198805 +195626,978.1300000097452,-0.055661181308493415 +195627,978.1350000097453,-0.055661140203284346 +195628,978.1400000097454,-0.05566109910256987 +195629,978.1450000097456,-0.05566105800634821 +195630,978.1500000097457,-0.05566101691461766 +195631,978.1550000097458,-0.05566097582737646 +195632,978.1600000097459,-0.05566093474462289 +195633,978.165000009746,-0.055660893666355196 +195634,978.1700000097461,-0.05566085259257164 +195635,978.1750000097462,-0.055660811523270494 +195636,978.1800000097463,-0.05566077045845002 +195637,978.1850000097464,-0.05566072939810846 +195638,978.1900000097465,-0.05566068834224409 +195639,978.1950000097466,-0.05566064729085517 +195640,978.2000000097468,-0.05566060624393997 +195641,978.2050000097469,-0.05566056520149675 +195642,978.210000009747,-0.05566052416352379 +195643,978.2150000097471,-0.05566048313001933 +195644,978.2200000097472,-0.055660442100981644 +195645,978.2250000097473,-0.055660401076409 +195646,978.2300000097474,-0.055660360056299665 +195647,978.2350000097475,-0.0556603190406519 +195648,978.2400000097476,-0.055660278029463967 +195649,978.2450000097477,-0.05566023702273415 +195650,978.2500000097479,-0.055660196020460705 +195651,978.255000009748,-0.055660155022641905 +195652,978.2600000097481,-0.055660114029276 +195653,978.2650000097482,-0.05566007304036128 +195654,978.2700000097483,-0.055660032055896015 +195655,978.2750000097484,-0.055659991075878455 +195656,978.2800000097485,-0.05565995010030689 +195657,978.2850000097486,-0.05565990912917957 +195658,978.2900000097487,-0.055659868162494776 +195659,978.2950000097488,-0.055659827200250776 +195660,978.3000000097489,-0.05565978624244585 +195661,978.305000009749,-0.05565974528907826 +195662,978.3100000097492,-0.05565970434014628 +195663,978.3150000097493,-0.05565966339564818 +195664,978.3200000097494,-0.05565962245558224 +195665,978.3250000097495,-0.05565958151994673 +195666,978.3300000097496,-0.05565954058873992 +195667,978.3350000097497,-0.055659499661960085 +195668,978.3400000097498,-0.0556594587396055 +195669,978.3450000097499,-0.05565941782167444 +195670,978.35000000975,-0.05565937690816517 +195671,978.3550000097501,-0.05565933599907599 +195672,978.3600000097503,-0.055659295094405155 +195673,978.3650000097504,-0.05565925419415095 +195674,978.3700000097505,-0.055659213298311645 +195675,978.3750000097506,-0.055659172406885504 +195676,978.3800000097507,-0.05565913151987083 +195677,978.3850000097508,-0.05565909063726588 +195678,978.3900000097509,-0.05565904975906895 +195679,978.395000009751,-0.05565900888527831 +195680,978.4000000097511,-0.05565896801589223 +195681,978.4050000097512,-0.055658927150909 +195682,978.4100000097513,-0.05565888629032689 +195683,978.4150000097515,-0.0556588454341442 +195684,978.4200000097516,-0.05565880458235918 +195685,978.4250000097517,-0.05565876373497014 +195686,978.4300000097518,-0.055658722891975335 +195687,978.4350000097519,-0.05565868205337306 +195688,978.440000009752,-0.05565864121916159 +195689,978.4450000097521,-0.05565860038933923 +195690,978.4500000097522,-0.05565855956390423 +195691,978.4550000097523,-0.05565851874285489 +195692,978.4600000097524,-0.05565847792618949 +195693,978.4650000097525,-0.05565843711390632 +195694,978.4700000097527,-0.05565839630600364 +195695,978.4750000097528,-0.05565835550247975 +195696,978.4800000097529,-0.05565831470333295 +195697,978.485000009753,-0.0556582739085615 +195698,978.4900000097531,-0.055658233118163696 +195699,978.4950000097532,-0.05565819233213782 +195700,978.5000000097533,-0.05565815155048216 +195701,978.5050000097534,-0.055658110773195005 +195702,978.5100000097535,-0.05565807000027465 +195703,978.5150000097536,-0.05565802923171937 +195704,978.5200000097537,-0.055657988467527446 +195705,978.5250000097539,-0.05565794770769718 +195706,978.530000009754,-0.05565790695222685 +195707,978.5350000097541,-0.05565786620111476 +195708,978.5400000097542,-0.05565782545435918 +195709,978.5450000097543,-0.05565778471195842 +195710,978.5500000097544,-0.05565774397391074 +195711,978.5550000097545,-0.05565770324021446 +195712,978.5600000097546,-0.05565766251086785 +195713,978.5650000097547,-0.055657621785869214 +195714,978.5700000097548,-0.05565758106521683 +195715,978.575000009755,-0.05565754034890901 +195716,978.580000009755,-0.055657499636944024 +195717,978.5850000097552,-0.05565745892932017 +195718,978.5900000097553,-0.05565741822603576 +195719,978.5950000097554,-0.05565737752708907 +195720,978.6000000097555,-0.055657336832478393 +195721,978.6050000097556,-0.055657296142202016 +195722,978.6100000097557,-0.05565725545625824 +195723,978.6150000097558,-0.05565721477464537 +195724,978.6200000097559,-0.05565717409736169 +195725,978.625000009756,-0.0556571334244055 +195726,978.6300000097561,-0.0556570927557751 +195727,978.6350000097563,-0.05565705209146877 +195728,978.6400000097564,-0.05565701143148482 +195729,978.6450000097565,-0.05565697077582154 +195730,978.6500000097566,-0.05565693012447723 +195731,978.6550000097567,-0.05565688947745019 +195732,978.6600000097568,-0.055656848834738724 +195733,978.6650000097569,-0.05565680819634112 +195734,978.670000009757,-0.05565676756225567 +195735,978.6750000097571,-0.05565672693248068 +195736,978.6800000097572,-0.05565668630701445 +195737,978.6850000097573,-0.05565664568585528 +195738,978.6900000097575,-0.055656605069001476 +195739,978.6950000097576,-0.05565656445645132 +195740,978.7000000097577,-0.05565652384820314 +195741,978.7050000097578,-0.05565648324425521 +195742,978.7100000097579,-0.05565644264460586 +195743,978.715000009758,-0.05565640204925337 +195744,978.7200000097581,-0.05565636145819606 +195745,978.7250000097582,-0.05565632087143221 +195746,978.7300000097583,-0.05565628028896015 +195747,978.7350000097584,-0.055656239710778155 +195748,978.7400000097585,-0.05565619913688454 +195749,978.7450000097587,-0.05565615856727762 +195750,978.7500000097588,-0.055656118001955676 +195751,978.7550000097589,-0.05565607744091703 +195752,978.760000009759,-0.05565603688415999 +195753,978.7650000097591,-0.05565599633168286 +195754,978.7700000097592,-0.05565595578348393 +195755,978.7750000097593,-0.05565591523956154 +195756,978.7800000097594,-0.05565587469991397 +195757,978.7850000097595,-0.05565583416453953 +195758,978.7900000097596,-0.055655793633436534 +195759,978.7950000097597,-0.05565575310660327 +195760,978.8000000097599,-0.05565571258403807 +195761,978.80500000976,-0.05565567206573924 +195762,978.8100000097601,-0.05565563155170509 +195763,978.8150000097602,-0.055655591041933905 +195764,978.8200000097603,-0.055655550536424014 +195765,978.8250000097604,-0.05565551003517374 +195766,978.8300000097605,-0.05565546953818137 +195767,978.8350000097606,-0.055655429045445216 +195768,978.8400000097607,-0.055655388556963614 +195769,978.8450000097608,-0.05565534807273485 +195770,978.850000009761,-0.055655307592757254 +195771,978.855000009761,-0.05565526711702913 +195772,978.8600000097612,-0.05565522664554878 +195773,978.8650000097613,-0.05565518617831454 +195774,978.8700000097614,-0.055655145715324705 +195775,978.8750000097615,-0.0556551052565776 +195776,978.8800000097616,-0.055655064802071524 +195777,978.8850000097617,-0.0556550243518048 +195778,978.8900000097618,-0.05565498390577574 +195779,978.8950000097619,-0.05565494346398266 +195780,978.900000009762,-0.055654903026423896 +195781,978.9050000097621,-0.05565486259309773 +195782,978.9100000097623,-0.05565482216400251 +195783,978.9150000097624,-0.05565478173913652 +195784,978.9200000097625,-0.05565474131849811 +195785,978.9250000097626,-0.05565470090208558 +195786,978.9300000097627,-0.05565466048989724 +195787,978.9350000097628,-0.05565462008193143 +195788,978.9400000097629,-0.055654579678186454 +195789,978.945000009763,-0.055654539278660625 +195790,978.9500000097631,-0.05565449888335228 +195791,978.9550000097632,-0.05565445849225972 +195792,978.9600000097633,-0.055654418105381284 +195793,978.9650000097635,-0.05565437772271527 +195794,978.9700000097636,-0.055654337344260014 +195795,978.9750000097637,-0.05565429697001383 +195796,978.9800000097638,-0.055654256599975055 +195797,978.9850000097639,-0.055654216234142 +195798,978.990000009764,-0.05565417587251298 +195799,978.9950000097641,-0.05565413551508633 +195800,979.0000000097642,-0.05565409516186035 +195801,979.0050000097643,-0.05565405481283339 +195802,979.0100000097644,-0.05565401446800378 +195803,979.0150000097645,-0.055653974127369825 +195804,979.0200000097647,-0.055653933790929845 +195805,979.0250000097648,-0.055653893458682165 +195806,979.0300000097649,-0.055653853130625125 +195807,979.035000009765,-0.05565381280675705 +195808,979.0400000097651,-0.05565377248707625 +195809,979.0450000097652,-0.05565373217158107 +195810,979.0500000097653,-0.05565369186026982 +195811,979.0550000097654,-0.05565365155314084 +195812,979.0600000097655,-0.05565361125019244 +195813,979.0650000097656,-0.05565357095142297 +195814,979.0700000097657,-0.05565353065683073 +195815,979.0750000097659,-0.055653490366414066 +195816,979.080000009766,-0.055653450080171314 +195817,979.0850000097661,-0.055653409798100795 +195818,979.0900000097662,-0.05565336952020084 +195819,979.0950000097663,-0.05565332924646978 +195820,979.1000000097664,-0.05565328897690594 +195821,979.1050000097665,-0.05565324871150766 +195822,979.1100000097666,-0.05565320845027326 +195823,979.1150000097667,-0.05565316819320107 +195824,979.1200000097668,-0.055653127940289426 +195825,979.125000009767,-0.05565308769153666 +195826,979.1300000097671,-0.055653047446941106 +195827,979.1350000097672,-0.055653007206501105 +195828,979.1400000097673,-0.055652966970214976 +195829,979.1450000097674,-0.05565292673808107 +195830,979.1500000097675,-0.05565288651009769 +195831,979.1550000097676,-0.0556528462862632 +195832,979.1600000097677,-0.055652806066575924 +195833,979.1650000097678,-0.05565276585103419 +195834,979.1700000097679,-0.055652725639636344 +195835,979.175000009768,-0.05565268543238072 +195836,979.1800000097682,-0.05565264522926566 +195837,979.1850000097683,-0.05565260503028948 +195838,979.1900000097684,-0.05565256483545054 +195839,979.1950000097685,-0.05565252464474716 +195840,979.2000000097686,-0.055652484458177685 +195841,979.2050000097687,-0.055652444275740454 +195842,979.2100000097688,-0.05565240409743381 +195843,979.2150000097689,-0.055652363923256065 +195844,979.220000009769,-0.05565232375320558 +195845,979.2250000097691,-0.05565228358728069 +195846,979.2300000097692,-0.05565224342547975 +195847,979.2350000097694,-0.055652203267801084 +195848,979.2400000097695,-0.055652163114243036 +195849,979.2450000097696,-0.05565212296480395 +195850,979.2500000097697,-0.05565208281948216 +195851,979.2550000097698,-0.055652042678276004 +195852,979.2600000097699,-0.05565200254118383 +195853,979.26500000977,-0.055651962408203984 +195854,979.2700000097701,-0.05565192227933481 +195855,979.2750000097702,-0.05565188215457465 +195856,979.2800000097703,-0.05565184203392184 +195857,979.2850000097704,-0.055651801917374726 +195858,979.2900000097706,-0.05565176180493166 +195859,979.2950000097707,-0.05565172169659097 +195860,979.3000000097708,-0.05565168159235101 +195861,979.3050000097709,-0.055651641492210135 +195862,979.310000009771,-0.055651601396166685 +195863,979.3150000097711,-0.055651561304219 +195864,979.3200000097712,-0.05565152121636543 +195865,979.3250000097713,-0.055651481132604305 +195866,979.3300000097714,-0.05565144105293399 +195867,979.3350000097715,-0.055651400977352834 +195868,979.3400000097716,-0.0556513609058592 +195869,979.3450000097718,-0.055651320838451396 +195870,979.3500000097719,-0.0556512807751278 +195871,979.355000009772,-0.05565124071588674 +195872,979.3600000097721,-0.05565120066072659 +195873,979.3650000097722,-0.05565116060964567 +195874,979.3700000097723,-0.05565112056264236 +195875,979.3750000097724,-0.055651080519715 +195876,979.3800000097725,-0.055651040480861926 +195877,979.3850000097726,-0.0556510004460815 +195878,979.3900000097727,-0.05565096041537207 +195879,979.3950000097728,-0.05565092038873199 +195880,979.400000009773,-0.05565088036615963 +195881,979.4050000097731,-0.055650840347653316 +195882,979.4100000097732,-0.05565080033321141 +195883,979.4150000097733,-0.055650760322832254 +195884,979.4200000097734,-0.055650720316514225 +195885,979.4250000097735,-0.055650680314255664 +195886,979.4300000097736,-0.05565064031605493 +195887,979.4350000097737,-0.055650600321910375 +195888,979.4400000097738,-0.055650560331820344 +195889,979.4450000097739,-0.05565052034578321 +195890,979.450000009774,-0.0556504803637973 +195891,979.4550000097742,-0.055650440385861005 +195892,979.4600000097743,-0.05565040041197265 +195893,979.4650000097744,-0.05565036044213062 +195894,979.4700000097745,-0.05565032047633327 +195895,979.4750000097746,-0.055650280514578924 +195896,979.4800000097747,-0.05565024055686597 +195897,979.4850000097748,-0.055650200603192757 +195898,979.4900000097749,-0.05565016065355765 +195899,979.495000009775,-0.05565012070795901 +195900,979.5000000097751,-0.05565008076639518 +195901,979.5050000097752,-0.05565004082886454 +195902,979.5100000097754,-0.055650000895365426 +195903,979.5150000097755,-0.055649960965896215 +195904,979.5200000097756,-0.05564992104045527 +195905,979.5250000097757,-0.05564988111904094 +195906,979.5300000097758,-0.0556498412016516 +195907,979.5350000097759,-0.0556498012882856 +195908,979.540000009776,-0.05564976137894131 +195909,979.5450000097761,-0.055649721473617075 +195910,979.5500000097762,-0.05564968157231128 +195911,979.5550000097763,-0.05564964167502228 +195912,979.5600000097764,-0.055649601781748444 +195913,979.5650000097766,-0.055649561892488125 +195914,979.5700000097767,-0.055649522007239695 +195915,979.5750000097768,-0.055649482126001515 +195916,979.5800000097769,-0.05564944224877195 +195917,979.585000009777,-0.05564940237554937 +195918,979.5900000097771,-0.05564936250633214 +195919,979.5950000097772,-0.05564932264111862 +195920,979.6000000097773,-0.05564928277990718 +195921,979.6050000097774,-0.05564924292269619 +195922,979.6100000097775,-0.055649203069484 +195923,979.6150000097776,-0.055649163220269006 +195924,979.6200000097778,-0.055649123375049556 +195925,979.6250000097779,-0.05564908353382403 +195926,979.630000009778,-0.05564904369659078 +195927,979.6350000097781,-0.0556490038633482 +195928,979.6400000097782,-0.05564896403409463 +195929,979.6450000097783,-0.055648924208828464 +195930,979.6500000097784,-0.05564888438754805 +195931,979.6550000097785,-0.055648844570251786 +195932,979.6600000097786,-0.05564880475693802 +195933,979.6650000097787,-0.05564876494760513 +195934,979.6700000097788,-0.05564872514225149 +195935,979.675000009779,-0.05564868534087548 +195936,979.6800000097791,-0.055648645543475456 +195937,979.6850000097792,-0.05564860575004978 +195938,979.6900000097793,-0.055648565960596856 +195939,979.6950000097794,-0.05564852617511504 +195940,979.7000000097795,-0.05564848639360271 +195941,979.7050000097796,-0.055648446616058236 +195942,979.7100000097797,-0.05564840684248 +195943,979.7150000097798,-0.05564836707286636 +195944,979.7200000097799,-0.05564832730721571 +195945,979.72500000978,-0.05564828754552641 +195946,979.7300000097802,-0.05564824778779686 +195947,979.7350000097803,-0.05564820803402542 +195948,979.7400000097804,-0.05564816828421046 +195949,979.7450000097805,-0.05564812853835036 +195950,979.7500000097806,-0.05564808879644351 +195951,979.7550000097807,-0.05564804905848827 +195952,979.7600000097808,-0.05564800932448303 +195953,979.7650000097809,-0.05564796959442616 +195954,979.770000009781,-0.05564792986831604 +195955,979.7750000097811,-0.055647890146151055 +195956,979.7800000097812,-0.055647850427929586 +195957,979.7850000097814,-0.055647810713650006 +195958,979.7900000097815,-0.0556477710033107 +195959,979.7950000097816,-0.05564773129691004 +195960,979.8000000097817,-0.055647691594446415 +195961,979.8050000097818,-0.0556476518959182 +195962,979.8100000097819,-0.05564761220132378 +195963,979.815000009782,-0.05564757251066153 +195964,979.8200000097821,-0.055647532823929854 +195965,979.8250000097822,-0.0556474931411271 +195966,979.8300000097823,-0.055647453462251674 +195967,979.8350000097824,-0.05564741378730196 +195968,979.8400000097826,-0.05564737411627634 +195969,979.8450000097827,-0.055647334449173184 +195970,979.8500000097828,-0.0556472947859909 +195971,979.8550000097829,-0.05564725512672786 +195972,979.860000009783,-0.05564721547138244 +195973,979.8650000097831,-0.055647175819953036 +195974,979.8700000097832,-0.05564713617243804 +195975,979.8750000097833,-0.05564709652883583 +195976,979.8800000097834,-0.05564705688914479 +195977,979.8850000097835,-0.055647017253363316 +195978,979.8900000097836,-0.055646977621489783 +195979,979.8950000097838,-0.055646937993522584 +195980,979.9000000097839,-0.0556468983694601 +195981,979.905000009784,-0.05564685874930073 +195982,979.9100000097841,-0.05564681913304287 +195983,979.9150000097842,-0.05564677952068489 +195984,979.9200000097843,-0.055646739912225185 +195985,979.9250000097844,-0.055646700307662146 +195986,979.9300000097845,-0.05564666070699417 +195987,979.9350000097846,-0.05564662111021964 +195988,979.9400000097847,-0.055646581517336945 +195989,979.9450000097848,-0.05564654192834448 +195990,979.950000009785,-0.05564650234324063 +195991,979.9550000097851,-0.055646462762023806 +195992,979.9600000097852,-0.05564642318469238 +195993,979.9650000097853,-0.05564638361124476 +195994,979.9700000097854,-0.05564634404167931 +195995,979.9750000097855,-0.05564630447599446 +195996,979.9800000097856,-0.05564626491418858 +195997,979.9850000097857,-0.05564622535626008 +195998,979.9900000097858,-0.05564618580220733 +195999,979.9950000097859,-0.055646146252028746 +196000,980.000000009786,-0.05564610670572272 +196001,980.0050000097862,-0.05564606716328764 +196002,980.0100000097863,-0.055646027624721914 +196003,980.0150000097864,-0.05564598809002392 +196004,980.0200000097865,-0.05564594855919207 +196005,980.0250000097866,-0.05564590903222475 +196006,980.0300000097867,-0.05564586950912037 +196007,980.0350000097868,-0.05564582998987731 +196008,980.0400000097869,-0.05564579047449399 +196009,980.045000009787,-0.05564575096296879 +196010,980.0500000097871,-0.05564571145530012 +196011,980.0550000097872,-0.05564567195148636 +196012,980.0600000097874,-0.05564563245152593 +196013,980.0650000097875,-0.05564559295541722 +196014,980.0700000097876,-0.05564555346315862 +196015,980.0750000097877,-0.05564551397474855 +196016,980.0800000097878,-0.055645474490185406 +196017,980.0850000097879,-0.05564543500946759 +196018,980.090000009788,-0.0556453955325935 +196019,980.0950000097881,-0.055645356059561536 +196020,980.1000000097882,-0.0556453165903701 +196021,980.1050000097883,-0.0556452771250176 +196022,980.1100000097885,-0.05564523766350243 +196023,980.1150000097886,-0.055645198205823 +196024,980.1200000097887,-0.0556451587519777 +196025,980.1250000097888,-0.05564511930196495 +196026,980.1300000097889,-0.05564507985578315 +196027,980.135000009789,-0.055645040413430706 +196028,980.1400000097891,-0.05564500097490601 +196029,980.1450000097892,-0.05564496154020749 +196030,980.1500000097893,-0.055644922109333535 +196031,980.1550000097894,-0.055644882682282557 +196032,980.1600000097895,-0.055644843259052966 +196033,980.1650000097897,-0.055644803839643146 +196034,980.1700000097898,-0.05564476442405153 +196035,980.1750000097899,-0.055644725012276526 +196036,980.18000000979,-0.05564468560431652 +196037,980.1850000097901,-0.05564464620016995 +196038,980.1900000097902,-0.05564460679983519 +196039,980.1950000097903,-0.05564456740331066 +196040,980.2000000097904,-0.05564452801059479 +196041,980.2050000097905,-0.055644488621685965 +196042,980.2100000097906,-0.055644449236582606 +196043,980.2150000097907,-0.055644409855283114 +196044,980.2200000097909,-0.055644370477785914 +196045,980.225000009791,-0.0556443311040894 +196046,980.2300000097911,-0.05564429173419201 +196047,980.2350000097912,-0.055644252368092124 +196048,980.2400000097913,-0.05564421300578817 +196049,980.2450000097914,-0.05564417364727856 +196050,980.2500000097915,-0.055644134292561716 +196051,980.2550000097916,-0.055644094941636045 +196052,980.2600000097917,-0.05564405559449995 +196053,980.2650000097918,-0.05564401625115184 +196054,980.2700000097919,-0.05564397691159015 +196055,980.275000009792,-0.05564393757581327 +196056,980.2800000097922,-0.055643898243819635 +196057,980.2850000097923,-0.05564385891560765 +196058,980.2900000097924,-0.055643819591175744 +196059,980.2950000097925,-0.05564378027052232 +196060,980.3000000097926,-0.05564374095364579 +196061,980.3050000097927,-0.05564370164054459 +196062,980.3100000097928,-0.05564366233121711 +196063,980.3150000097929,-0.055643623025661795 +196064,980.320000009793,-0.055643583723877045 +196065,980.3250000097931,-0.05564354442586128 +196066,980.3300000097933,-0.055643505131612925 +196067,980.3350000097934,-0.05564346584113039 +196068,980.3400000097935,-0.0556434265544121 +196069,980.3450000097936,-0.05564338727145648 +196070,980.3500000097937,-0.055643347992261935 +196071,980.3550000097938,-0.05564330871682689 +196072,980.3600000097939,-0.05564326944514977 +196073,980.365000009794,-0.055643230177229004 +196074,980.3700000097941,-0.055643190913062995 +196075,980.3750000097942,-0.055643151652650165 +196076,980.3800000097943,-0.05564311239598894 +196077,980.3850000097945,-0.055643073143077745 +196078,980.3900000097946,-0.055643033893915006 +196079,980.3950000097947,-0.055642994648499144 +196080,980.4000000097948,-0.05564295540682858 +196081,980.4050000097949,-0.055642916168901733 +196082,980.410000009795,-0.05564287693471704 +196083,980.4150000097951,-0.05564283770427291 +196084,980.4200000097952,-0.055642798477567784 +196085,980.4250000097953,-0.05564275925460006 +196086,980.4300000097954,-0.0556427200353682 +196087,980.4350000097955,-0.05564268081987061 +196088,980.4400000097957,-0.055642641608105704 +196089,980.4450000097958,-0.055642602400071926 +196090,980.4500000097959,-0.05564256319576769 +196091,980.455000009796,-0.05564252399519144 +196092,980.4600000097961,-0.055642484798341586 +196093,980.4650000097962,-0.05564244560521656 +196094,980.4700000097963,-0.055642406415814805 +196095,980.4750000097964,-0.05564236723013472 +196096,980.4800000097965,-0.05564232804817476 +196097,980.4850000097966,-0.05564228886993335 +196098,980.4900000097967,-0.05564224969540892 +196099,980.4950000097969,-0.05564221052459989 +196100,980.500000009797,-0.0556421713575047 +196101,980.5050000097971,-0.05564213219412176 +196102,980.5100000097972,-0.055642093034449516 +196103,980.5150000097973,-0.05564205387848641 +196104,980.5200000097974,-0.05564201472623086 +196105,980.5250000097975,-0.055641975577681295 +196106,980.5300000097976,-0.05564193643283616 +196107,980.5350000097977,-0.05564189729169388 +196108,980.5400000097978,-0.05564185815425289 +196109,980.545000009798,-0.05564181902051162 +196110,980.550000009798,-0.055641779890468514 +196111,980.5550000097982,-0.05564174076412199 +196112,980.5600000097983,-0.05564170164147049 +196113,980.5650000097984,-0.05564166252251245 +196114,980.5700000097985,-0.0556416234072463 +196115,980.5750000097986,-0.05564158429567048 +196116,980.5800000097987,-0.055641545187783435 +196117,980.5850000097988,-0.05564150608358359 +196118,980.5900000097989,-0.055641466983069376 +196119,980.595000009799,-0.05564142788623924 +196120,980.6000000097991,-0.05564138879309162 +196121,980.6050000097993,-0.05564134970362494 +196122,980.6100000097994,-0.05564131061783765 +196123,980.6150000097995,-0.05564127153572818 +196124,980.6200000097996,-0.05564123245729498 +196125,980.6250000097997,-0.05564119338253647 +196126,980.6300000097998,-0.05564115431145112 +196127,980.6350000097999,-0.05564111524403734 +196128,980.6400000098,-0.05564107618029358 +196129,980.6450000098001,-0.055641037120218284 +196130,980.6500000098002,-0.05564099806380989 +196131,980.6550000098003,-0.05564095901106684 +196132,980.6600000098005,-0.05564091996198758 +196133,980.6650000098006,-0.05564088091657054 +196134,980.6700000098007,-0.055640841874814155 +196135,980.6750000098008,-0.055640802836716886 +196136,980.6800000098009,-0.05564076380227718 +196137,980.685000009801,-0.05564072477149347 +196138,980.6900000098011,-0.05564068574436419 +196139,980.6950000098012,-0.0556406467208878 +196140,980.7000000098013,-0.05564060770106274 +196141,980.7050000098014,-0.05564056868488744 +196142,980.7100000098015,-0.05564052967236036 +196143,980.7150000098017,-0.05564049066347994 +196144,980.7200000098018,-0.05564045165824463 +196145,980.7250000098019,-0.05564041265665287 +196146,980.730000009802,-0.05564037365870311 +196147,980.7350000098021,-0.05564033466439379 +196148,980.7400000098022,-0.05564029567372336 +196149,980.7450000098023,-0.055640256686690266 +196150,980.7500000098024,-0.055640217703292964 +196151,980.7550000098025,-0.0556401787235299 +196152,980.7600000098026,-0.055640139747399515 +196153,980.7650000098027,-0.05564010077490026 +196154,980.7700000098029,-0.05564006180603059 +196155,980.775000009803,-0.05564002284078894 +196156,980.7800000098031,-0.055639983879173786 +196157,980.7850000098032,-0.05563994492118354 +196158,980.7900000098033,-0.055639905966816686 +196159,980.7950000098034,-0.05563986701607166 +196160,980.8000000098035,-0.05563982806894691 +196161,980.8050000098036,-0.0556397891254409 +196162,980.8100000098037,-0.055639750185552075 +196163,980.8150000098038,-0.05563971124927888 +196164,980.820000009804,-0.055639672316619766 +196165,980.8250000098041,-0.0556396333875732 +196166,980.8300000098042,-0.05563959446213763 +196167,980.8350000098043,-0.055639555540311504 +196168,980.8400000098044,-0.05563951662209329 +196169,980.8450000098045,-0.05563947770748142 +196170,980.8500000098046,-0.055639438796474365 +196171,980.8550000098047,-0.05563939988907057 +196172,980.8600000098048,-0.0556393609852685 +196173,980.8650000098049,-0.0556393220850666 +196174,980.870000009805,-0.055639283188463326 +196175,980.8750000098051,-0.05563924429545715 +196176,980.8800000098053,-0.0556392054060465 +196177,980.8850000098054,-0.05563916652022986 +196178,980.8900000098055,-0.05563912763800568 +196179,980.8950000098056,-0.055639088759372415 +196180,980.9000000098057,-0.055639049884328516 +196181,980.9050000098058,-0.05563901101287246 +196182,980.9100000098059,-0.055638972145002685 +196183,980.915000009806,-0.05563893328071765 +196184,980.9200000098061,-0.05563889442001583 +196185,980.9250000098062,-0.05563885556289569 +196186,980.9300000098063,-0.055638816709355665 +196187,980.9350000098065,-0.05563877785939422 +196188,980.9400000098066,-0.05563873901300984 +196189,980.9450000098067,-0.055638700170200964 +196190,980.9500000098068,-0.05563866133096606 +196191,980.9550000098069,-0.05563862249530358 +196192,980.960000009807,-0.055638583663212005 +196193,980.9650000098071,-0.05563854483468978 +196194,980.9700000098072,-0.05563850600973538 +196195,980.9750000098073,-0.055638467188347265 +196196,980.9800000098074,-0.055638428370523886 +196197,980.9850000098075,-0.05563838955626372 +196198,980.9900000098077,-0.055638350745565224 +196199,980.9950000098078,-0.05563831193842687 +196200,981.0000000098079,-0.055638273134847115 +196201,981.005000009808,-0.055638234334824434 +196202,981.0100000098081,-0.055638195538357284 +196203,981.0150000098082,-0.055638156745444124 +196204,981.0200000098083,-0.055638117956083435 +196205,981.0250000098084,-0.05563807917027367 +196206,981.0300000098085,-0.05563804038801331 +196207,981.0350000098086,-0.05563800160930082 +196208,981.0400000098088,-0.055637962834134656 +196209,981.0450000098089,-0.05563792406251329 +196210,981.050000009809,-0.05563788529443521 +196211,981.0550000098091,-0.05563784652989885 +196212,981.0600000098092,-0.0556378077689027 +196213,981.0650000098093,-0.05563776901144523 +196214,981.0700000098094,-0.05563773025752491 +196215,981.0750000098095,-0.055637691507140194 +196216,981.0800000098096,-0.05563765276028957 +196217,981.0850000098097,-0.055637614016971496 +196218,981.0900000098098,-0.05563757527718446 +196219,981.09500000981,-0.0556375365409269 +196220,981.1000000098101,-0.05563749780819732 +196221,981.1050000098102,-0.055637459078994186 +196222,981.1100000098103,-0.05563742035331596 +196223,981.1150000098104,-0.05563738163116114 +196224,981.1200000098105,-0.05563734291252816 +196225,981.1250000098106,-0.05563730419741552 +196226,981.1300000098107,-0.05563726548582169 +196227,981.1350000098108,-0.05563722677774513 +196228,981.1400000098109,-0.05563718807318432 +196229,981.145000009811,-0.05563714937213774 +196230,981.1500000098112,-0.055637110674603876 +196231,981.1550000098113,-0.05563707198058118 +196232,981.1600000098114,-0.055637033290068146 +196233,981.1650000098115,-0.05563699460306325 +196234,981.1700000098116,-0.055636955919564954 +196235,981.1750000098117,-0.055636917239571745 +196236,981.1800000098118,-0.055636878563082096 +196237,981.1850000098119,-0.05563683989009449 +196238,981.190000009812,-0.0556368012206074 +196239,981.1950000098121,-0.055636762554619294 +196240,981.2000000098122,-0.055636723892128676 +196241,981.2050000098124,-0.055636685233134 +196242,981.2100000098125,-0.05563664657763377 +196243,981.2150000098126,-0.055636607925626434 +196244,981.2200000098127,-0.0556365692771105 +196245,981.2250000098128,-0.05563653063208443 +196246,981.2300000098129,-0.05563649199054672 +196247,981.235000009813,-0.055636453352495834 +196248,981.2400000098131,-0.055636414717930266 +196249,981.2450000098132,-0.05563637608684849 +196250,981.2500000098133,-0.05563633745924898 +196251,981.2550000098134,-0.055636298835130236 +196252,981.2600000098136,-0.05563626021449073 +196253,981.2650000098137,-0.05563622159732896 +196254,981.2700000098138,-0.05563618298364338 +196255,981.2750000098139,-0.0556361443734325 +196256,981.280000009814,-0.055636105766694796 +196257,981.2850000098141,-0.05563606716342875 +196258,981.2900000098142,-0.05563602856363285 +196259,981.2950000098143,-0.05563598996730558 +196260,981.3000000098144,-0.055635951374445415 +196261,981.3050000098145,-0.055635912785050846 +196262,981.3100000098146,-0.05563587419912037 +196263,981.3150000098148,-0.05563583561665246 +196264,981.3200000098149,-0.0556357970376456 +196265,981.325000009815,-0.0556357584620983 +196266,981.3300000098151,-0.05563571989000902 +196267,981.3350000098152,-0.05563568132137625 +196268,981.3400000098153,-0.055635642756198506 +196269,981.3450000098154,-0.055635604194474254 +196270,981.3500000098155,-0.05563556563620199 +196271,981.3550000098156,-0.05563552708138019 +196272,981.3600000098157,-0.05563548853000737 +196273,981.3650000098158,-0.05563544998208198 +196274,981.370000009816,-0.05563541143760254 +196275,981.3750000098161,-0.05563537289656753 +196276,981.3800000098162,-0.055635334358975455 +196277,981.3850000098163,-0.05563529582482479 +196278,981.3900000098164,-0.055635257294114025 +196279,981.3950000098165,-0.05563521876684166 +196280,981.4000000098166,-0.05563518024300619 +196281,981.4050000098167,-0.05563514172260609 +196282,981.4100000098168,-0.05563510320563988 +196283,981.4150000098169,-0.05563506469210603 +196284,981.420000009817,-0.055635026182003035 +196285,981.4250000098172,-0.0556349876753294 +196286,981.4300000098173,-0.05563494917208361 +196287,981.4350000098174,-0.05563491067226417 +196288,981.4400000098175,-0.055634872175869564 +196289,981.4450000098176,-0.05563483368289829 +196290,981.4500000098177,-0.05563479519334884 +196291,981.4550000098178,-0.05563475670721971 +196292,981.4600000098179,-0.0556347182245094 +196293,981.465000009818,-0.055634679745216416 +196294,981.4700000098181,-0.055634641269339244 +196295,981.4750000098182,-0.05563460279687638 +196296,981.4800000098184,-0.055634564327826326 +196297,981.4850000098185,-0.055634525862187575 +196298,981.4900000098186,-0.05563448739995863 +196299,981.4950000098187,-0.055634448941137976 +196300,981.5000000098188,-0.05563441048572413 +196301,981.5050000098189,-0.05563437203371558 +196302,981.510000009819,-0.05563433358511082 +196303,981.5150000098191,-0.05563429513990838 +196304,981.5200000098192,-0.055634256698106725 +196305,981.5250000098193,-0.05563421825970437 +196306,981.5300000098194,-0.055634179824699814 +196307,981.5350000098196,-0.05563414139309157 +196308,981.5400000098197,-0.05563410296487813 +196309,981.5450000098198,-0.05563406454005798 +196310,981.5500000098199,-0.05563402611862965 +196311,981.55500000982,-0.05563398770059162 +196312,981.5600000098201,-0.05563394928594241 +196313,981.5650000098202,-0.05563391087468051 +196314,981.5700000098203,-0.055633872466804436 +196315,981.5750000098204,-0.055633834062312676 +196316,981.5800000098205,-0.05563379566120374 +196317,981.5850000098206,-0.05563375726347614 +196318,981.5900000098208,-0.05563371886912837 +196319,981.5950000098209,-0.055633680478158955 +196320,981.600000009821,-0.05563364209056637 +196321,981.6050000098211,-0.05563360370634915 +196322,981.6100000098212,-0.055633565325505785 +196323,981.6150000098213,-0.055633526948034785 +196324,981.6200000098214,-0.05563348857393466 +196325,981.6250000098215,-0.055633450203203906 +196326,981.6300000098216,-0.05563341183584104 +196327,981.6350000098217,-0.05563337347184458 +196328,981.6400000098218,-0.05563333511121302 +196329,981.645000009822,-0.055633296753944864 +196330,981.6500000098221,-0.05563325840003863 +196331,981.6550000098222,-0.055633220049492824 +196332,981.6600000098223,-0.05563318170230596 +196333,981.6650000098224,-0.05563314335847654 +196334,981.6700000098225,-0.055633105018003094 +196335,981.6750000098226,-0.055633066680884115 +196336,981.6800000098227,-0.05563302834711811 +196337,981.6850000098228,-0.055632990016703604 +196338,981.6900000098229,-0.05563295168963909 +196339,981.695000009823,-0.05563291336592309 +196340,981.7000000098232,-0.055632875045554114 +196341,981.7050000098233,-0.05563283672853069 +196342,981.7100000098234,-0.055632798414851324 +196343,981.7150000098235,-0.05563276010451452 +196344,981.7200000098236,-0.05563272179751878 +196345,981.7250000098237,-0.05563268349386265 +196346,981.7300000098238,-0.05563264519354462 +196347,981.7350000098239,-0.05563260689656322 +196348,981.740000009824,-0.055632568602916946 +196349,981.7450000098241,-0.05563253031260433 +196350,981.7500000098242,-0.05563249202562389 +196351,981.7550000098244,-0.05563245374197413 +196352,981.7600000098245,-0.05563241546165357 +196353,981.7650000098246,-0.05563237718466073 +196354,981.7700000098247,-0.05563233891099411 +196355,981.7750000098248,-0.05563230064065225 +196356,981.7800000098249,-0.055632262373633654 +196357,981.785000009825,-0.055632224109936845 +196358,981.7900000098251,-0.055632185849560346 +196359,981.7950000098252,-0.055632147592502665 +196360,981.8000000098253,-0.05563210933876234 +196361,981.8050000098254,-0.05563207108833787 +196362,981.8100000098256,-0.05563203284122777 +196363,981.8150000098257,-0.05563199459743058 +196364,981.8200000098258,-0.05563195635694481 +196365,981.8250000098259,-0.05563191811976898 +196366,981.830000009826,-0.055631879885901625 +196367,981.8350000098261,-0.05563184165534125 +196368,981.8400000098262,-0.05563180342808637 +196369,981.8450000098263,-0.05563176520413552 +196370,981.8500000098264,-0.05563172698348723 +196371,981.8550000098265,-0.055631688766140004 +196372,981.8600000098266,-0.05563165055209237 +196373,981.8650000098268,-0.05563161234134286 +196374,981.8700000098269,-0.055631574133889986 +196375,981.875000009827,-0.05563153592973228 +196376,981.8800000098271,-0.055631497728868266 +196377,981.8850000098272,-0.05563145953129647 +196378,981.8900000098273,-0.05563142133701541 +196379,981.8950000098274,-0.05563138314602362 +196380,981.9000000098275,-0.05563134495831962 +196381,981.9050000098276,-0.05563130677390193 +196382,981.9100000098277,-0.05563126859276909 +196383,981.9150000098278,-0.055631230414919616 +196384,981.920000009828,-0.05563119224035204 +196385,981.9250000098281,-0.05563115406906488 +196386,981.9300000098282,-0.055631115901056676 +196387,981.9350000098283,-0.05563107773632595 +196388,981.9400000098284,-0.05563103957487124 +196389,981.9450000098285,-0.05563100141669106 +196390,981.9500000098286,-0.05563096326178395 +196391,981.9550000098287,-0.05563092511014842 +196392,981.9600000098288,-0.05563088696178303 +196393,981.9650000098289,-0.0556308488166863 +196394,981.970000009829,-0.055630810674856736 +196395,981.9750000098292,-0.05563077253629288 +196396,981.9800000098293,-0.055630734400993274 +196397,981.9850000098294,-0.055630696268956455 +196398,981.9900000098295,-0.05563065814018094 +196399,981.9950000098296,-0.05563062001466527 +196400,982.0000000098297,-0.05563058189240796 +196401,982.0050000098298,-0.055630543773407565 +196402,982.0100000098299,-0.05563050565766261 +196403,982.01500000983,-0.055630467545171626 +196404,982.0200000098301,-0.05563042943593314 +196405,982.0250000098303,-0.0556303913299457 +196406,982.0300000098304,-0.05563035322720782 +196407,982.0350000098305,-0.05563031512771805 +196408,982.0400000098306,-0.05563027703147492 +196409,982.0450000098307,-0.05563023893847698 +196410,982.0500000098308,-0.055630200848722736 +196411,982.0550000098309,-0.05563016276221076 +196412,982.060000009831,-0.05563012467893955 +196413,982.0650000098311,-0.05563008659890767 +196414,982.0700000098312,-0.05563004852211365 +196415,982.0750000098313,-0.05563001044855603 +196416,982.0800000098315,-0.05562997237823335 +196417,982.0850000098316,-0.05562993431114413 +196418,982.0900000098317,-0.05562989624728691 +196419,982.0950000098318,-0.05562985818666025 +196420,982.1000000098319,-0.055629820129262667 +196421,982.105000009832,-0.05562978207509272 +196422,982.1100000098321,-0.055629744024148935 +196423,982.1150000098322,-0.05562970597642985 +196424,982.1200000098323,-0.05562966793193401 +196425,982.1250000098324,-0.055629629890659955 +196426,982.1300000098325,-0.05562959185260623 +196427,982.1350000098327,-0.05562955381777137 +196428,982.1400000098328,-0.05562951578615392 +196429,982.1450000098329,-0.05562947775775243 +196430,982.150000009833,-0.055629439732565414 +196431,982.1550000098331,-0.055629401710591456 +196432,982.1600000098332,-0.055629363691829074 +196433,982.1650000098333,-0.055629325676276806 +196434,982.1700000098334,-0.0556292876639332 +196435,982.1750000098335,-0.05562924965479681 +196436,982.1800000098336,-0.055629211648866174 +196437,982.1850000098337,-0.05562917364613983 +196438,982.1900000098339,-0.05562913564661633 +196439,982.195000009834,-0.05562909765029423 +196440,982.2000000098341,-0.055629059657172054 +196441,982.2050000098342,-0.055629021667248355 +196442,982.2100000098343,-0.055628983680521674 +196443,982.2150000098344,-0.05562894569699057 +196444,982.2200000098345,-0.05562890771665359 +196445,982.2250000098346,-0.05562886973950927 +196446,982.2300000098347,-0.05562883176555616 +196447,982.2350000098348,-0.05562879379479281 +196448,982.240000009835,-0.055628755827217775 +196449,982.245000009835,-0.055628717862829594 +196450,982.2500000098352,-0.05562867990162681 +196451,982.2550000098353,-0.05562864194360799 +196452,982.2600000098354,-0.055628603988771674 +196453,982.2650000098355,-0.05562856603711642 +196454,982.2700000098356,-0.055628528088640765 +196455,982.2750000098357,-0.05562849014334326 +196456,982.2800000098358,-0.05562845220122246 +196457,982.2850000098359,-0.05562841426227692 +196458,982.290000009836,-0.05562837632650519 +196459,982.2950000098361,-0.055628338393905824 +196460,982.3000000098363,-0.055628300464477365 +196461,982.3050000098364,-0.055628262538218363 +196462,982.3100000098365,-0.055628224615127383 +196463,982.3150000098366,-0.055628186695202975 +196464,982.3200000098367,-0.05562814877844367 +196465,982.3250000098368,-0.055628110864848056 +196466,982.3300000098369,-0.05562807295441468 +196467,982.335000009837,-0.05562803504714208 +196468,982.3400000098371,-0.05562799714302882 +196469,982.3450000098372,-0.05562795924207346 +196470,982.3500000098373,-0.05562792134427454 +196471,982.3550000098375,-0.055627883449630634 +196472,982.3600000098376,-0.05562784555814028 +196473,982.3650000098377,-0.055627807669802055 +196474,982.3700000098378,-0.0556277697846145 +196475,982.3750000098379,-0.05562773190257617 +196476,982.380000009838,-0.055627694023685635 +196477,982.3850000098381,-0.055627656147941455 +196478,982.3900000098382,-0.055627618275342176 +196479,982.3950000098383,-0.05562758040588635 +196480,982.4000000098384,-0.05562754253957255 +196481,982.4050000098385,-0.05562750467639933 +196482,982.4100000098387,-0.05562746681636525 +196483,982.4150000098388,-0.05562742895946886 +196484,982.4200000098389,-0.05562739110570874 +196485,982.425000009839,-0.05562735325508344 +196486,982.4300000098391,-0.05562731540759151 +196487,982.4350000098392,-0.055627277563231534 +196488,982.4400000098393,-0.05562723972200204 +196489,982.4450000098394,-0.055627201883901634 +196490,982.4500000098395,-0.05562716404892885 +196491,982.4550000098396,-0.055627126217082254 +196492,982.4600000098397,-0.05562708838836039 +196493,982.4650000098399,-0.055627050562761855 +196494,982.47000000984,-0.055627012740285184 +196495,982.4750000098401,-0.05562697492092896 +196496,982.4800000098402,-0.055626937104691736 +196497,982.4850000098403,-0.055626899291572086 +196498,982.4900000098404,-0.05562686148156857 +196499,982.4950000098405,-0.05562682367467974 +196500,982.5000000098406,-0.05562678587090417 +196501,982.5050000098407,-0.05562674807024044 +196502,982.5100000098408,-0.05562671027268709 +196503,982.515000009841,-0.05562667247824271 +196504,982.520000009841,-0.05562663468690586 +196505,982.5250000098412,-0.05562659689867509 +196506,982.5300000098413,-0.05562655911354898 +196507,982.5350000098414,-0.05562652133152611 +196508,982.5400000098415,-0.05562648355260502 +196509,982.5450000098416,-0.05562644577678431 +196510,982.5500000098417,-0.05562640800406251 +196511,982.5550000098418,-0.05562637023443823 +196512,982.5600000098419,-0.05562633246791 +196513,982.565000009842,-0.05562629470447642 +196514,982.5700000098421,-0.055626256944136046 +196515,982.5750000098423,-0.055626219186887454 +196516,982.5800000098424,-0.05562618143272921 +196517,982.5850000098425,-0.055626143681659884 +196518,982.5900000098426,-0.05562610593367805 +196519,982.5950000098427,-0.05562606818878227 +196520,982.6000000098428,-0.05562603044697113 +196521,982.6050000098429,-0.05562599270824319 +196522,982.610000009843,-0.05562595497259703 +196523,982.6150000098431,-0.055625917240031214 +196524,982.6200000098432,-0.055625879510544325 +196525,982.6250000098433,-0.05562584178413493 +196526,982.6300000098435,-0.055625804060801615 +196527,982.6350000098436,-0.05562576634054294 +196528,982.6400000098437,-0.055625728623357476 +196529,982.6450000098438,-0.055625690909243804 +196530,982.6500000098439,-0.055625653198200495 +196531,982.655000009844,-0.05562561549022614 +196532,982.6600000098441,-0.0556255777853193 +196533,982.6650000098442,-0.05562554008347856 +196534,982.6700000098443,-0.055625502384702485 +196535,982.6750000098444,-0.055625464688989656 +196536,982.6800000098445,-0.05562542699633865 +196537,982.6850000098447,-0.05562538930674805 +196538,982.6900000098448,-0.05562535162021642 +196539,982.6950000098449,-0.05562531393674236 +196540,982.700000009845,-0.05562527625632443 +196541,982.7050000098451,-0.055625238578961206 +196542,982.7100000098452,-0.05562520090465126 +196543,982.7150000098453,-0.05562516323339321 +196544,982.7200000098454,-0.0556251255651856 +196545,982.7250000098455,-0.05562508790002703 +196546,982.7300000098456,-0.05562505023791606 +196547,982.7350000098457,-0.05562501257885129 +196548,982.7400000098459,-0.05562497492283127 +196549,982.745000009846,-0.05562493726985462 +196550,982.7500000098461,-0.05562489961991989 +196551,982.7550000098462,-0.055624861973025685 +196552,982.7600000098463,-0.05562482432917058 +196553,982.7650000098464,-0.055624786688353155 +196554,982.7700000098465,-0.05562474905057199 +196555,982.7750000098466,-0.05562471141582567 +196556,982.7800000098467,-0.05562467378411279 +196557,982.7850000098468,-0.0556246361554319 +196558,982.790000009847,-0.055624598529781626 +196559,982.7950000098471,-0.05562456090716052 +196560,982.8000000098472,-0.055624523287567174 +196561,982.8050000098473,-0.05562448567100019 +196562,982.8100000098474,-0.05562444805745814 +196563,982.8150000098475,-0.05562441044693961 +196564,982.8200000098476,-0.05562437283944319 +196565,982.8250000098477,-0.055624335234967445 +196566,982.8300000098478,-0.05562429763351099 +196567,982.8350000098479,-0.05562426003507241 +196568,982.840000009848,-0.05562422243965028 +196569,982.8450000098481,-0.0556241848472432 +196570,982.8500000098483,-0.05562414725784974 +196571,982.8550000098484,-0.055624109671468504 +196572,982.8600000098485,-0.05562407208809806 +196573,982.8650000098486,-0.05562403450773702 +196574,982.8700000098487,-0.055623996930383966 +196575,982.8750000098488,-0.05562395935603749 +196576,982.8800000098489,-0.05562392178469617 +196577,982.885000009849,-0.05562388421635859 +196578,982.8900000098491,-0.05562384665102337 +196579,982.8950000098492,-0.05562380908868909 +196580,982.9000000098494,-0.05562377152935431 +196581,982.9050000098495,-0.05562373397301767 +196582,982.9100000098496,-0.05562369641967773 +196583,982.9150000098497,-0.055623658869333084 +196584,982.9200000098498,-0.05562362132198234 +196585,982.9250000098499,-0.05562358377762408 +196586,982.93000000985,-0.0556235462362569 +196587,982.9350000098501,-0.05562350869787939 +196588,982.9400000098502,-0.05562347116249015 +196589,982.9450000098503,-0.05562343363008776 +196590,982.9500000098504,-0.05562339610067083 +196591,982.9550000098506,-0.05562335857423794 +196592,982.9600000098507,-0.0556233210507877 +196593,982.9650000098508,-0.05562328353031869 +196594,982.9700000098509,-0.05562324601282953 +196595,982.975000009851,-0.05562320849831879 +196596,982.9800000098511,-0.05562317098678507 +196597,982.9850000098512,-0.05562313347822698 +196598,982.9900000098513,-0.055623095972643116 +196599,982.9950000098514,-0.055623058470032065 +196600,983.0000000098515,-0.05562302097039242 +196601,983.0050000098516,-0.0556229834737228 +196602,983.0100000098518,-0.055622945980021786 +196603,983.0150000098519,-0.055622908489287984 +196604,983.020000009852,-0.05562287100151998 +196605,983.0250000098521,-0.05562283351671638 +196606,983.0300000098522,-0.05562279603487579 +196607,983.0350000098523,-0.05562275855599681 +196608,983.0400000098524,-0.05562272108007804 +196609,983.0450000098525,-0.05562268360711806 +196610,983.0500000098526,-0.0556226461371155 +196611,983.0550000098527,-0.05562260867006894 +196612,983.0600000098528,-0.055622571205976995 +196613,983.065000009853,-0.05562253374483825 +196614,983.0700000098531,-0.05562249628665133 +196615,983.0750000098532,-0.05562245883141482 +196616,983.0800000098533,-0.05562242137912733 +196617,983.0850000098534,-0.05562238392978746 +196618,983.0900000098535,-0.055622346483393814 +196619,983.0950000098536,-0.055622309039944993 +196620,983.1000000098537,-0.0556222715994396 +196621,983.1050000098538,-0.05562223416187625 +196622,983.1100000098539,-0.05562219672725354 +196623,983.115000009854,-0.05562215929557007 +196624,983.1200000098542,-0.055622121866824456 +196625,983.1250000098543,-0.05562208444101529 +196626,983.1300000098544,-0.05562204701814119 +196627,983.1350000098545,-0.055622009598200746 +196628,983.1400000098546,-0.05562197218119259 +196629,983.1450000098547,-0.05562193476711531 +196630,983.1500000098548,-0.05562189735596752 +196631,983.1550000098549,-0.05562185994774782 +196632,983.160000009855,-0.055621822542454825 +196633,983.1650000098551,-0.05562178514008714 +196634,983.1700000098552,-0.05562174774064337 +196635,983.1750000098554,-0.05562171034412214 +196636,983.1800000098555,-0.05562167295052204 +196637,983.1850000098556,-0.055621635559841696 +196638,983.1900000098557,-0.0556215981720797 +196639,983.1950000098558,-0.055621560787234674 +196640,983.2000000098559,-0.05562152340530521 +196641,983.205000009856,-0.05562148602628995 +196642,983.2100000098561,-0.05562144865018748 +196643,983.2150000098562,-0.055621411276996414 +196644,983.2200000098563,-0.05562137390671538 +196645,983.2250000098564,-0.055621336539342967 +196646,983.2300000098566,-0.055621299174877806 +196647,983.2350000098567,-0.0556212618133185 +196648,983.2400000098568,-0.055621224454663665 +196649,983.2450000098569,-0.0556211870989119 +196650,983.250000009857,-0.055621149746061846 +196651,983.2550000098571,-0.055621112396112095 +196652,983.2600000098572,-0.055621075049061275 +196653,983.2650000098573,-0.05562103770490799 +196654,983.2700000098574,-0.05562100036365086 +196655,983.2750000098575,-0.0556209630252885 +196656,983.2800000098576,-0.05562092568981953 +196657,983.2850000098578,-0.05562088835724255 +196658,983.2900000098579,-0.055620851027556185 +196659,983.295000009858,-0.05562081370075906 +196660,983.3000000098581,-0.05562077637684978 +196661,983.3050000098582,-0.055620739055826963 +196662,983.3100000098583,-0.05562070173768923 +196663,983.3150000098584,-0.0556206644224352 +196664,983.3200000098585,-0.055620627110063485 +196665,983.3250000098586,-0.0556205898005727 +196666,983.3300000098587,-0.055620552493961486 +196667,983.3350000098588,-0.05562051519022843 +196668,983.340000009859,-0.05562047788937218 +196669,983.3450000098591,-0.055620440591391346 +196670,983.3500000098592,-0.05562040329628454 +196671,983.3550000098593,-0.05562036600405038 +196672,983.3600000098594,-0.05562032871468751 +196673,983.3650000098595,-0.055620291428194524 +196674,983.3700000098596,-0.055620254144570044 +196675,983.3750000098597,-0.0556202168638127 +196676,983.3800000098598,-0.05562017958592112 +196677,983.3850000098599,-0.055620142310893926 +196678,983.39000000986,-0.05562010503872973 +196679,983.3950000098602,-0.05562006776942717 +196680,983.4000000098603,-0.05562003050298485 +196681,983.4050000098604,-0.055619993239401394 +196682,983.4100000098605,-0.05561995597867544 +196683,983.4150000098606,-0.0556199187208056 +196684,983.4200000098607,-0.0556198814657905 +196685,983.4250000098608,-0.05561984421362877 +196686,983.4300000098609,-0.05561980696431903 +196687,983.435000009861,-0.05561976971785991 +196688,983.4400000098611,-0.05561973247425005 +196689,983.4450000098612,-0.05561969523348803 +196690,983.4500000098614,-0.05561965799557252 +196691,983.4550000098615,-0.05561962076050213 +196692,983.4600000098616,-0.055619583528275486 +196693,983.4650000098617,-0.05561954629889122 +196694,983.4700000098618,-0.055619509072347965 +196695,983.4750000098619,-0.05561947184864434 +196696,983.480000009862,-0.05561943462777897 +196697,983.4850000098621,-0.05561939740975049 +196698,983.4900000098622,-0.055619360194557516 +196699,983.4950000098623,-0.055619322982198696 +196700,983.5000000098624,-0.05561928577267264 +196701,983.5050000098626,-0.055619248565978 +196702,983.5100000098627,-0.05561921136211339 +196703,983.5150000098628,-0.055619174161077437 +196704,983.5200000098629,-0.05561913696286878 +196705,983.525000009863,-0.05561909976748605 +196706,983.5300000098631,-0.05561906257492788 +196707,983.5350000098632,-0.0556190253851929 +196708,983.5400000098633,-0.05561898819827974 +196709,983.5450000098634,-0.05561895101418702 +196710,983.5500000098635,-0.0556189138329134 +196711,983.5550000098636,-0.05561887665445748 +196712,983.5600000098638,-0.05561883947881792 +196713,983.5650000098639,-0.055618802305993344 +196714,983.570000009864,-0.055618765135982386 +196715,983.5750000098641,-0.05561872796878368 +196716,983.5800000098642,-0.055618690804395854 +196717,983.5850000098643,-0.05561865364281755 +196718,983.5900000098644,-0.05561861648404741 +196719,983.5950000098645,-0.055618579328084054 +196720,983.6000000098646,-0.05561854217492612 +196721,983.6050000098647,-0.05561850502457226 +196722,983.6100000098648,-0.05561846787702109 +196723,983.615000009865,-0.055618430732271254 +196724,983.6200000098651,-0.05561839359032139 +196725,983.6250000098652,-0.05561835645117013 +196726,983.6300000098653,-0.055618319314816124 +196727,983.6350000098654,-0.055618282181258 +196728,983.6400000098655,-0.0556182450504944 +196729,983.6450000098656,-0.05561820792252395 +196730,983.6500000098657,-0.055618170797345316 +196731,983.6550000098658,-0.05561813367495711 +196732,983.6600000098659,-0.05561809655535798 +196733,983.665000009866,-0.055618059438546565 +196734,983.6700000098662,-0.05561802232452152 +196735,983.6750000098663,-0.05561798521328147 +196736,983.6800000098664,-0.05561794810482506 +196737,983.6850000098665,-0.05561791099915092 +196738,983.6900000098666,-0.055617873896257705 +196739,983.6950000098667,-0.05561783679614405 +196740,983.7000000098668,-0.0556177996988086 +196741,983.7050000098669,-0.05561776260424999 +196742,983.710000009867,-0.055617725512466874 +196743,983.7150000098671,-0.05561768842345789 +196744,983.7200000098672,-0.055617651337221685 +196745,983.7250000098674,-0.0556176142537569 +196746,983.7300000098675,-0.05561757717306218 +196747,983.7350000098676,-0.05561754009513615 +196748,983.7400000098677,-0.05561750301997748 +196749,983.7450000098678,-0.05561746594758481 +196750,983.7500000098679,-0.05561742887795677 +196751,983.755000009868,-0.05561739181109202 +196752,983.7600000098681,-0.05561735474698921 +196753,983.7650000098682,-0.05561731768564697 +196754,983.7700000098683,-0.05561728062706395 +196755,983.7750000098684,-0.0556172435712388 +196756,983.7800000098686,-0.05561720651817016 +196757,983.7850000098687,-0.0556171694678567 +196758,983.7900000098688,-0.05561713242029704 +196759,983.7950000098689,-0.05561709537548984 +196760,983.800000009869,-0.05561705833343375 +196761,983.8050000098691,-0.05561702129412741 +196762,983.8100000098692,-0.055616984257569474 +196763,983.8150000098693,-0.05561694722375859 +196764,983.8200000098694,-0.05561691019269341 +196765,983.8250000098695,-0.055616873164372596 +196766,983.8300000098697,-0.05561683613879477 +196767,983.8350000098698,-0.0556167991159586 +196768,983.8400000098699,-0.05561676209586274 +196769,983.84500000987,-0.055616725078505826 +196770,983.8500000098701,-0.05561668806388651 +196771,983.8550000098702,-0.05561665105200346 +196772,983.8600000098703,-0.05561661404285532 +196773,983.8650000098704,-0.05561657703644075 +196774,983.8700000098705,-0.05561654003275838 +196775,983.8750000098706,-0.05561650303180689 +196776,983.8800000098707,-0.0556164660335849 +196777,983.8850000098709,-0.05561642903809109 +196778,983.890000009871,-0.055616392045324106 +196779,983.8950000098711,-0.05561635505528261 +196780,983.9000000098712,-0.05561631806796524 +196781,983.9050000098713,-0.05561628108337067 +196782,983.9100000098714,-0.05561624410149753 +196783,983.9150000098715,-0.0556162071223445 +196784,983.9200000098716,-0.055616170145910235 +196785,983.9250000098717,-0.055616133172193376 +196786,983.9300000098718,-0.05561609620119258 +196787,983.9350000098719,-0.05561605923290651 +196788,983.940000009872,-0.05561602226733382 +196789,983.9450000098722,-0.05561598530447317 +196790,983.9500000098723,-0.055615948344323214 +196791,983.9550000098724,-0.05561591138688261 +196792,983.9600000098725,-0.05561587443215003 +196793,983.9650000098726,-0.0556158374801241 +196794,983.9700000098727,-0.05561580053080351 +196795,983.9750000098728,-0.055615763584186906 +196796,983.9800000098729,-0.05561572664027296 +196797,983.985000009873,-0.0556156896990603 +196798,983.9900000098731,-0.055615652760547606 +196799,983.9950000098733,-0.05561561582473355 +196800,984.0000000098734,-0.05561557889161678 +196801,984.0050000098735,-0.05561554196119596 +196802,984.0100000098736,-0.05561550503346974 +196803,984.0150000098737,-0.0556154681084368 +196804,984.0200000098738,-0.05561543118609579 +196805,984.0250000098739,-0.05561539426644538 +196806,984.030000009874,-0.05561535734948422 +196807,984.0350000098741,-0.055615320435210974 +196808,984.0400000098742,-0.055615283523624326 +196809,984.0450000098743,-0.05561524661472292 +196810,984.0500000098745,-0.05561520970850542 +196811,984.0550000098746,-0.0556151728049705 +196812,984.0600000098747,-0.05561513590411681 +196813,984.0650000098748,-0.055615099005943025 +196814,984.0700000098749,-0.05561506211044781 +196815,984.075000009875,-0.05561502521762982 +196816,984.0800000098751,-0.055614988327487735 +196817,984.0850000098752,-0.055614951440020224 +196818,984.0900000098753,-0.055614914555225936 +196819,984.0950000098754,-0.05561487767310355 +196820,984.1000000098755,-0.055614840793651726 +196821,984.1050000098757,-0.05561480391686912 +196822,984.1100000098758,-0.05561476704275442 +196823,984.1150000098759,-0.05561473017130629 +196824,984.120000009876,-0.055614693302523395 +196825,984.1250000098761,-0.05561465643640439 +196826,984.1300000098762,-0.05561461957294796 +196827,984.1350000098763,-0.05561458271215277 +196828,984.1400000098764,-0.0556145458540175 +196829,984.1450000098765,-0.0556145089985408 +196830,984.1500000098766,-0.05561447214572135 +196831,984.1550000098767,-0.05561443529555781 +196832,984.1600000098769,-0.05561439844804888 +196833,984.165000009877,-0.05561436160319319 +196834,984.1700000098771,-0.05561432476098943 +196835,984.1750000098772,-0.05561428792143629 +196836,984.1800000098773,-0.05561425108453241 +196837,984.1850000098774,-0.055614214250276475 +196838,984.1900000098775,-0.05561417741866717 +196839,984.1950000098776,-0.05561414058970314 +196840,984.2000000098777,-0.055614103763383084 +196841,984.2050000098778,-0.055614066939705664 +196842,984.210000009878,-0.05561403011866955 +196843,984.215000009878,-0.055613993300273425 +196844,984.2200000098782,-0.055613956484515954 +196845,984.2250000098783,-0.05561391967139582 +196846,984.2300000098784,-0.055613882860911686 +196847,984.2350000098785,-0.05561384605306225 +196848,984.2400000098786,-0.05561380924784617 +196849,984.2450000098787,-0.055613772445262104 +196850,984.2500000098788,-0.05561373564530875 +196851,984.2550000098789,-0.0556136988479848 +196852,984.260000009879,-0.055613662053288895 +196853,984.2650000098791,-0.05561362526121974 +196854,984.2700000098793,-0.055613588471776 +196855,984.2750000098794,-0.05561355168495635 +196856,984.2800000098795,-0.05561351490075947 +196857,984.2850000098796,-0.05561347811918405 +196858,984.2900000098797,-0.05561344134022876 +196859,984.2950000098798,-0.05561340456389228 +196860,984.3000000098799,-0.05561336779017327 +196861,984.30500000988,-0.05561333101907044 +196862,984.3100000098801,-0.05561329425058246 +196863,984.3150000098802,-0.05561325748470799 +196864,984.3200000098803,-0.05561322072144573 +196865,984.3250000098805,-0.05561318396079436 +196866,984.3300000098806,-0.05561314720275256 +196867,984.3350000098807,-0.055613110447319 +196868,984.3400000098808,-0.05561307369449237 +196869,984.3450000098809,-0.05561303694427136 +196870,984.350000009881,-0.05561300019665464 +196871,984.3550000098811,-0.05561296345164089 +196872,984.3600000098812,-0.055612926709228815 +196873,984.3650000098813,-0.05561288996941709 +196874,984.3700000098814,-0.05561285323220437 +196875,984.3750000098815,-0.05561281649758937 +196876,984.3800000098817,-0.055612779765570754 +196877,984.3850000098818,-0.05561274303614722 +196878,984.3900000098819,-0.055612706309317445 +196879,984.395000009882,-0.05561266958508013 +196880,984.4000000098821,-0.05561263286343393 +196881,984.4050000098822,-0.055612596144377566 +196882,984.4100000098823,-0.055612559427909686 +196883,984.4150000098824,-0.055612522714029014 +196884,984.4200000098825,-0.055612486002734204 +196885,984.4250000098826,-0.05561244929402396 +196886,984.4300000098827,-0.05561241258789697 +196887,984.4350000098829,-0.055612375884351924 +196888,984.440000009883,-0.05561233918338749 +196889,984.4450000098831,-0.055612302485002374 +196890,984.4500000098832,-0.055612265789195266 +196891,984.4550000098833,-0.05561222909596484 +196892,984.4600000098834,-0.055612192405309784 +196893,984.4650000098835,-0.0556121557172288 +196894,984.4700000098836,-0.055612119031720586 +196895,984.4750000098837,-0.0556120823487838 +196896,984.4800000098838,-0.05561204566841717 +196897,984.485000009884,-0.05561200899061936 +196898,984.490000009884,-0.05561197231538907 +196899,984.4950000098842,-0.055611935642724986 +196900,984.5000000098843,-0.05561189897262581 +196901,984.5050000098844,-0.055611862305090215 +196902,984.5100000098845,-0.05561182564011691 +196903,984.5150000098846,-0.05561178897770458 +196904,984.5200000098847,-0.05561175231785191 +196905,984.5250000098848,-0.05561171566055761 +196906,984.5300000098849,-0.05561167900582036 +196907,984.535000009885,-0.05561164235363886 +196908,984.5400000098851,-0.055611605704011795 +196909,984.5450000098853,-0.05561156905693787 +196910,984.5500000098854,-0.05561153241241577 +196911,984.5550000098855,-0.05561149577044421 +196912,984.5600000098856,-0.05561145913102186 +196913,984.5650000098857,-0.05561142249414743 +196914,984.5700000098858,-0.05561138585981961 +196915,984.5750000098859,-0.05561134922803709 +196916,984.580000009886,-0.055611312598798576 +196917,984.5850000098861,-0.05561127597210276 +196918,984.5900000098862,-0.055611239347948344 +196919,984.5950000098863,-0.05561120272633401 +196920,984.6000000098865,-0.05561116610725848 +196921,984.6050000098866,-0.05561112949072043 +196922,984.6100000098867,-0.055611092876718574 +196923,984.6150000098868,-0.05561105626525159 +196924,984.6200000098869,-0.05561101965631819 +196925,984.625000009887,-0.05561098304991708 +196926,984.6300000098871,-0.05561094644604695 +196927,984.6350000098872,-0.0556109098447065 +196928,984.6400000098873,-0.05561087324589443 +196929,984.6450000098874,-0.05561083664960944 +196930,984.6500000098875,-0.055610800055850236 +196931,984.6550000098877,-0.055610763464615506 +196932,984.6600000098878,-0.05561072687590395 +196933,984.6650000098879,-0.055610690289714285 +196934,984.670000009888,-0.05561065370604521 +196935,984.6750000098881,-0.05561061712489543 +196936,984.6800000098882,-0.055610580546263624 +196937,984.6850000098883,-0.055610543970148515 +196938,984.6900000098884,-0.0556105073965488 +196939,984.6950000098885,-0.055610470825463186 +196940,984.7000000098886,-0.05561043425689037 +196941,984.7050000098887,-0.05561039769082906 +196942,984.7100000098889,-0.055610361127277956 +196943,984.715000009889,-0.055610324566235776 +196944,984.7200000098891,-0.0556102880077012 +196945,984.7250000098892,-0.055610251451672955 +196946,984.7300000098893,-0.05561021489814973 +196947,984.7350000098894,-0.05561017834713026 +196948,984.7400000098895,-0.05561014179861321 +196949,984.7450000098896,-0.055610105252597325 +196950,984.7500000098897,-0.05561006870908128 +196951,984.7550000098898,-0.055610032168063796 +196952,984.76000000989,-0.05560999562954358 +196953,984.7650000098901,-0.05560995909351934 +196954,984.7700000098902,-0.05560992255998977 +196955,984.7750000098903,-0.0556098860289536 +196956,984.7800000098904,-0.05560984950040952 +196957,984.7850000098905,-0.055609812974356264 +196958,984.7900000098906,-0.05560977645079251 +196959,984.7950000098907,-0.05560973992971698 +196960,984.8000000098908,-0.05560970341112838 +196961,984.8050000098909,-0.05560966689502543 +196962,984.810000009891,-0.05560963038140683 +196963,984.8150000098912,-0.0556095938702713 +196964,984.8200000098913,-0.05560955736161753 +196965,984.8250000098914,-0.05560952085544426 +196966,984.8300000098915,-0.055609484351750185 +196967,984.8350000098916,-0.05560944785053401 +196968,984.8400000098917,-0.055609411351794466 +196969,984.8450000098918,-0.05560937485553025 +196970,984.8500000098919,-0.05560933836174007 +196971,984.855000009892,-0.05560930187042266 +196972,984.8600000098921,-0.05560926538157672 +196973,984.8650000098922,-0.05560922889520096 +196974,984.8700000098924,-0.055609192411294105 +196975,984.8750000098925,-0.05560915592985485 +196976,984.8800000098926,-0.055609119450881934 +196977,984.8850000098927,-0.05560908297437405 +196978,984.8900000098928,-0.055609046500329926 +196979,984.8950000098929,-0.055609010028748275 +196980,984.900000009893,-0.055608973559627815 +196981,984.9050000098931,-0.055608937092967256 +196982,984.9100000098932,-0.05560890062876531 +196983,984.9150000098933,-0.0556088641670207 +196984,984.9200000098934,-0.055608827707732136 +196985,984.9250000098936,-0.05560879125089835 +196986,984.9300000098937,-0.05560875479651804 +196987,984.9350000098938,-0.05560871834458995 +196988,984.9400000098939,-0.05560868189511277 +196989,984.945000009894,-0.05560864544808523 +196990,984.9500000098941,-0.055608609003506046 +196991,984.9550000098942,-0.05560857256137395 +196992,984.9600000098943,-0.05560853612168764 +196993,984.9650000098944,-0.055608499684445846 +196994,984.9700000098945,-0.055608463249647286 +196995,984.9750000098946,-0.05560842681729068 +196996,984.9800000098948,-0.05560839038737476 +196997,984.9850000098949,-0.05560835395989822 +196998,984.990000009895,-0.05560831753485981 +196999,984.9950000098951,-0.055608281112258226 +197000,985.0000000098952,-0.05560824469209222 +197001,985.0050000098953,-0.05560820827436048 +197002,985.0100000098954,-0.05560817185906176 +197003,985.0150000098955,-0.05560813544619475 +197004,985.0200000098956,-0.0556080990357582 +197005,985.0250000098957,-0.05560806262775081 +197006,985.0300000098958,-0.05560802622217132 +197007,985.035000009896,-0.05560798981901845 +197008,985.0400000098961,-0.05560795341829092 +197009,985.0450000098962,-0.055607917019987456 +197010,985.0500000098963,-0.055607880624106786 +197011,985.0550000098964,-0.05560784423064763 +197012,985.0600000098965,-0.05560780783960871 +197013,985.0650000098966,-0.05560777145098877 +197014,985.0700000098967,-0.055607735064786515 +197015,985.0750000098968,-0.05560769868100067 +197016,985.0800000098969,-0.05560766229962998 +197017,985.085000009897,-0.05560762592067316 +197018,985.0900000098972,-0.05560758954412894 +197019,985.0950000098973,-0.05560755316999604 +197020,985.1000000098974,-0.05560751679827319 +197021,985.1050000098975,-0.05560748042895914 +197022,985.1100000098976,-0.05560744406205258 +197023,985.1150000098977,-0.055607407697552264 +197024,985.1200000098978,-0.05560737133545691 +197025,985.1250000098979,-0.05560733497576524 +197026,985.130000009898,-0.05560729861847601 +197027,985.1350000098981,-0.05560726226358793 +197028,985.1400000098982,-0.055607225911099734 +197029,985.1450000098984,-0.05560718956101015 +197030,985.1500000098985,-0.055607153213317904 +197031,985.1550000098986,-0.055607116868021736 +197032,985.1600000098987,-0.05560708052512037 +197033,985.1650000098988,-0.055607044184612535 +197034,985.1700000098989,-0.05560700784649697 +197035,985.175000009899,-0.05560697151077241 +197036,985.1800000098991,-0.055606935177437596 +197037,985.1850000098992,-0.05560689884649123 +197038,985.1900000098993,-0.05560686251793207 +197039,985.1950000098994,-0.05560682619175884 +197040,985.2000000098996,-0.055606789867970276 +197041,985.2050000098997,-0.055606753546565114 +197042,985.2100000098998,-0.055606717227542075 +197043,985.2150000098999,-0.05560668091089991 +197044,985.2200000099,-0.05560664459663734 +197045,985.2250000099001,-0.05560660828475311 +197046,985.2300000099002,-0.05560657197524594 +197047,985.2350000099003,-0.05560653566811459 +197048,985.2400000099004,-0.055606499363357785 +197049,985.2450000099005,-0.05560646306097425 +197050,985.2500000099006,-0.05560642676096274 +197051,985.2550000099008,-0.05560639046332198 +197052,985.2600000099009,-0.0556063541680507 +197053,985.265000009901,-0.05560631787514765 +197054,985.2700000099011,-0.05560628158461157 +197055,985.2750000099012,-0.05560624529644119 +197056,985.2800000099013,-0.05560620901063524 +197057,985.2850000099014,-0.055606172727192475 +197058,985.2900000099015,-0.05560613644611162 +197059,985.2950000099016,-0.05560610016739143 +197060,985.3000000099017,-0.05560606389103063 +197061,985.3050000099018,-0.05560602761702798 +197062,985.310000009902,-0.055605991345382196 +197063,985.3150000099021,-0.055605955076092034 +197064,985.3200000099022,-0.055605918809156225 +197065,985.3250000099023,-0.05560588254457351 +197066,985.3300000099024,-0.05560584628234263 +197067,985.3350000099025,-0.05560581002246232 +197068,985.3400000099026,-0.055605773764931345 +197069,985.3450000099027,-0.055605737509748426 +197070,985.3500000099028,-0.05560570125691231 +197071,985.3550000099029,-0.05560566500642176 +197072,985.360000009903,-0.05560562875827549 +197073,985.3650000099032,-0.055605592512472254 +197074,985.3700000099033,-0.05560555626901081 +197075,985.3750000099034,-0.05560552002788987 +197076,985.3800000099035,-0.05560548378910819 +197077,985.3850000099036,-0.05560544755266453 +197078,985.3900000099037,-0.05560541131855763 +197079,985.3950000099038,-0.05560537508678622 +197080,985.4000000099039,-0.05560533885734907 +197081,985.405000009904,-0.05560530263024489 +197082,985.4100000099041,-0.05560526640547246 +197083,985.4150000099042,-0.05560523018303051 +197084,985.4200000099044,-0.0556051939629178 +197085,985.4250000099045,-0.055605157745133055 +197086,985.4300000099046,-0.05560512152967503 +197087,985.4350000099047,-0.055605085316542485 +197088,985.4400000099048,-0.055605049105734154 +197089,985.4450000099049,-0.055605012897248784 +197090,985.450000009905,-0.05560497669108513 +197091,985.4550000099051,-0.05560494048724193 +197092,985.4600000099052,-0.05560490428571795 +197093,985.4650000099053,-0.055604868086511945 +197094,985.4700000099054,-0.05560483188962263 +197095,985.4750000099056,-0.05560479569504878 +197096,985.4800000099057,-0.055604759502789154 +197097,985.4850000099058,-0.05560472331284248 +197098,985.4900000099059,-0.05560468712520752 +197099,985.495000009906,-0.05560465093988302 +197100,985.5000000099061,-0.05560461475686772 +197101,985.5050000099062,-0.05560457857616039 +197102,985.5100000099063,-0.05560454239775979 +197103,985.5150000099064,-0.055604506221664636 +197104,985.5200000099065,-0.05560447004787372 +197105,985.5250000099066,-0.05560443387638577 +197106,985.5300000099068,-0.05560439770719954 +197107,985.5350000099069,-0.05560436154031379 +197108,985.540000009907,-0.055604325375727286 +197109,985.5450000099071,-0.05560428921343876 +197110,985.5500000099072,-0.05560425305344698 +197111,985.5550000099073,-0.055604216895750694 +197112,985.5600000099074,-0.055604180740348653 +197113,985.5650000099075,-0.05560414458723962 +197114,985.5700000099076,-0.055604108436422335 +197115,985.5750000099077,-0.05560407228789558 +197116,985.5800000099078,-0.055604036141658084 +197117,985.585000009908,-0.055603999997708625 +197118,985.5900000099081,-0.05560396385604595 +197119,985.5950000099082,-0.05560392771666882 +197120,985.6000000099083,-0.05560389157957599 +197121,985.6050000099084,-0.05560385544476621 +197122,985.6100000099085,-0.05560381931223825 +197123,985.6150000099086,-0.05560378318199085 +197124,985.6200000099087,-0.055603747054022774 +197125,985.6250000099088,-0.0556037109283328 +197126,985.6300000099089,-0.055603674804919664 +197127,985.635000009909,-0.05560363868378214 +197128,985.6400000099092,-0.055603602564918975 +197129,985.6450000099093,-0.05560356644832894 +197130,985.6500000099094,-0.05560353033401078 +197131,985.6550000099095,-0.05560349422196328 +197132,985.6600000099096,-0.055603458112185165 +197133,985.6650000099097,-0.055603422004675225 +197134,985.6700000099098,-0.055603385899432214 +197135,985.6750000099099,-0.05560334979645489 +197136,985.68000000991,-0.055603313695742035 +197137,985.6850000099101,-0.055603277597292375 +197138,985.6900000099102,-0.05560324150110469 +197139,985.6950000099104,-0.05560320540717775 +197140,985.7000000099105,-0.05560316931551031 +197141,985.7050000099106,-0.05560313322610114 +197142,985.7100000099107,-0.05560309713894898 +197143,985.7150000099108,-0.05560306105405262 +197144,985.7200000099109,-0.05560302497141082 +197145,985.725000009911,-0.05560298889102234 +197146,985.7300000099111,-0.05560295281288593 +197147,985.7350000099112,-0.05560291673700037 +197148,985.7400000099113,-0.05560288066336443 +197149,985.7450000099115,-0.055602844591976876 +197150,985.7500000099116,-0.05560280852283646 +197151,985.7550000099117,-0.05560277245594196 +197152,985.7600000099118,-0.055602736391292144 +197153,985.7650000099119,-0.055602700328885764 +197154,985.770000009912,-0.0556026642687216 +197155,985.7750000099121,-0.055602628210798415 +197156,985.7800000099122,-0.055602592155114976 +197157,985.7850000099123,-0.055602556101670045 +197158,985.7900000099124,-0.0556025200504624 +197159,985.7950000099125,-0.05560248400149081 +197160,985.8000000099127,-0.05560244795475404 +197161,985.8050000099128,-0.05560241191025085 +197162,985.8100000099129,-0.05560237586798003 +197163,985.815000009913,-0.05560233982794033 +197164,985.8200000099131,-0.05560230379013052 +197165,985.8250000099132,-0.05560226775454939 +197166,985.8300000099133,-0.055602231721195695 +197167,985.8350000099134,-0.05560219569006822 +197168,985.8400000099135,-0.05560215966116572 +197169,985.8450000099136,-0.05560212363448696 +197170,985.8500000099137,-0.05560208761003072 +197171,985.8550000099139,-0.055602051587795784 +197172,985.860000009914,-0.055602015567780924 +197173,985.8650000099141,-0.055601979549984894 +197174,985.8700000099142,-0.05560194353440647 +197175,985.8750000099143,-0.05560190752104444 +197176,985.8800000099144,-0.055601871509897566 +197177,985.8850000099145,-0.055601835500964626 +197178,985.8900000099146,-0.0556017994942444 +197179,985.8950000099147,-0.05560176348973566 +197180,985.9000000099148,-0.05560172748743718 +197181,985.9050000099149,-0.055601691487347706 +197182,985.910000009915,-0.05560165548946606 +197183,985.9150000099152,-0.05560161949379098 +197184,985.9200000099153,-0.05560158350032125 +197185,985.9250000099154,-0.05560154750905567 +197186,985.9300000099155,-0.055601511519992985 +197187,985.9350000099156,-0.05560147553313199 +197188,985.9400000099157,-0.055601439548471465 +197189,985.9450000099158,-0.05560140356601018 +197190,985.9500000099159,-0.0556013675857469 +197191,985.955000009916,-0.055601331607680424 +197192,985.9600000099161,-0.05560129563180952 +197193,985.9650000099163,-0.055601259658132965 +197194,985.9700000099164,-0.055601223686649534 +197195,985.9750000099165,-0.05560118771735802 +197196,985.9800000099166,-0.05560115175025719 +197197,985.9850000099167,-0.05560111578534583 +197198,985.9900000099168,-0.05560107982262271 +197199,985.9950000099169,-0.05560104386208663 +197200,986.000000009917,-0.055601007903736344 +197201,986.0050000099171,-0.05560097194757066 +197202,986.0100000099172,-0.05560093599358834 +197203,986.0150000099173,-0.055600900041788165 +197204,986.0200000099175,-0.05560086409216892 +197205,986.0250000099176,-0.05560082814472939 +197206,986.0300000099177,-0.05560079219946836 +197207,986.0350000099178,-0.0556007562563846 +197208,986.0400000099179,-0.05560072031547691 +197209,986.045000009918,-0.05560068437674406 +197210,986.0500000099181,-0.05560064844018483 +197211,986.0550000099182,-0.055600612505798015 +197212,986.0600000099183,-0.05560057657358239 +197213,986.0650000099184,-0.05560054064353675 +197214,986.0700000099185,-0.05560050471565987 +197215,986.0750000099187,-0.05560046878995054 +197216,986.0800000099188,-0.05560043286640755 +197217,986.0850000099189,-0.05560039694502966 +197218,986.090000009919,-0.05560036102581569 +197219,986.0950000099191,-0.05560032510876439 +197220,986.1000000099192,-0.05560028919387457 +197221,986.1050000099193,-0.05560025328114502 +197222,986.1100000099194,-0.055600217370574516 +197223,986.1150000099195,-0.05560018146216184 +197224,986.1200000099196,-0.0556001455559058 +197225,986.1250000099197,-0.05560010965180515 +197226,986.1300000099199,-0.05560007374985871 +197227,986.13500000992,-0.05560003785006525 +197228,986.1400000099201,-0.05560000195242357 +197229,986.1450000099202,-0.055599966056932446 +197230,986.1500000099203,-0.055599930163590675 +197231,986.1550000099204,-0.05559989427239704 +197232,986.1600000099205,-0.05559985838335034 +197233,986.1650000099206,-0.05559982249644936 +197234,986.1700000099207,-0.055599786611692896 +197235,986.1750000099208,-0.05559975072907973 +197236,986.180000009921,-0.05559971484860866 +197237,986.185000009921,-0.05559967897027846 +197238,986.1900000099212,-0.055599643094087936 +197239,986.1950000099213,-0.055599607220035895 +197240,986.2000000099214,-0.0555995713481211 +197241,986.2050000099215,-0.055599535478342364 +197242,986.2100000099216,-0.05559949961069846 +197243,986.2150000099217,-0.05559946374518819 +197244,986.2200000099218,-0.05559942788181035 +197245,986.2250000099219,-0.05559939202056373 +197246,986.230000009922,-0.05559935616144712 +197247,986.2350000099221,-0.055599320304459326 +197248,986.2400000099223,-0.05559928444959913 +197249,986.2450000099224,-0.055599248596865325 +197250,986.2500000099225,-0.05559921274625671 +197251,986.2550000099226,-0.0555991768977721 +197252,986.2600000099227,-0.055599141051410256 +197253,986.2650000099228,-0.05559910520717 +197254,986.2700000099229,-0.055599069365050116 +197255,986.275000009923,-0.05559903352504939 +197256,986.2800000099231,-0.05559899768716665 +197257,986.2850000099232,-0.05559896185140066 +197258,986.2900000099233,-0.05559892601775023 +197259,986.2950000099235,-0.05559889018621417 +197260,986.3000000099236,-0.05559885435679125 +197261,986.3050000099237,-0.05559881852948029 +197262,986.3100000099238,-0.05559878270428007 +197263,986.3150000099239,-0.0555987468811894 +197264,986.320000009924,-0.055598711060207084 +197265,986.3250000099241,-0.055598675241331906 +197266,986.3300000099242,-0.055598639424562675 +197267,986.3350000099243,-0.055598603609898205 +197268,986.3400000099244,-0.05559856779733727 +197269,986.3450000099245,-0.05559853198687868 +197270,986.3500000099247,-0.055598496178521244 +197271,986.3550000099248,-0.05559846037226374 +197272,986.3600000099249,-0.055598424568105 +197273,986.365000009925,-0.05559838876604381 +197274,986.3700000099251,-0.055598352966078964 +197275,986.3750000099252,-0.05559831716820927 +197276,986.3800000099253,-0.05559828137243352 +197277,986.3850000099254,-0.05559824557875054 +197278,986.3900000099255,-0.055598209787159125 +197279,986.3950000099256,-0.05559817399765807 +197280,986.4000000099257,-0.05559813821024618 +197281,986.4050000099259,-0.05559810242492226 +197282,986.410000009926,-0.05559806664168511 +197283,986.4150000099261,-0.05559803086053354 +197284,986.4200000099262,-0.05559799508146635 +197285,986.4250000099263,-0.055597959304482344 +197286,986.4300000099264,-0.055597923529580345 +197287,986.4350000099265,-0.05559788775675913 +197288,986.4400000099266,-0.055597851986017535 +197289,986.4450000099267,-0.05559781621735434 +197290,986.4500000099268,-0.05559778045076835 +197291,986.455000009927,-0.055597744686258395 +197292,986.4600000099271,-0.055597708923823264 +197293,986.4650000099272,-0.055597673163461765 +197294,986.4700000099273,-0.055597637405172706 +197295,986.4750000099274,-0.05559760164895489 +197296,986.4800000099275,-0.05559756589480715 +197297,986.4850000099276,-0.05559753014272826 +197298,986.4900000099277,-0.05559749439271705 +197299,986.4950000099278,-0.05559745864477232 +197300,986.5000000099279,-0.05559742289889289 +197301,986.505000009928,-0.05559738715507756 +197302,986.5100000099281,-0.05559735141332513 +197303,986.5150000099283,-0.05559731567363443 +197304,986.5200000099284,-0.05559727993600426 +197305,986.5250000099285,-0.055597244200433424 +197306,986.5300000099286,-0.05559720846692075 +197307,986.5350000099287,-0.05559717273546502 +197308,986.5400000099288,-0.055597137006065084 +197309,986.5450000099289,-0.055597101278719724 +197310,986.550000009929,-0.055597065553427756 +197311,986.5550000099291,-0.05559702983018801 +197312,986.5600000099292,-0.055596994108999286 +197313,986.5650000099293,-0.05559695838986039 +197314,986.5700000099295,-0.05559692267277015 +197315,986.5750000099296,-0.05559688695772737 +197316,986.5800000099297,-0.055596851244730856 +197317,986.5850000099298,-0.05559681553377944 +197318,986.5900000099299,-0.05559677982487192 +197319,986.59500000993,-0.05559674411800711 +197320,986.6000000099301,-0.055596708413183836 +197321,986.6050000099302,-0.05559667271040091 +197322,986.6100000099303,-0.05559663700965715 +197323,986.6150000099304,-0.05559660131095136 +197324,986.6200000099305,-0.055596565614282355 +197325,986.6250000099307,-0.05559652991964896 +197326,986.6300000099308,-0.055596494227049986 +197327,986.6350000099309,-0.05559645853648426 +197328,986.640000009931,-0.055596422847950605 +197329,986.6450000099311,-0.055596387161447824 +197330,986.6500000099312,-0.05559635147697473 +197331,986.6550000099313,-0.05559631579453014 +197332,986.6600000099314,-0.05559628011411289 +197333,986.6650000099315,-0.055596244435721774 +197334,986.6700000099316,-0.055596208759355635 +197335,986.6750000099318,-0.05559617308501328 +197336,986.6800000099319,-0.05559613741269352 +197337,986.685000009932,-0.055596101742395196 +197338,986.6900000099321,-0.05559606607411711 +197339,986.6950000099322,-0.05559603040785808 +197340,986.7000000099323,-0.05559599474361694 +197341,986.7050000099324,-0.05559595908139251 +197342,986.7100000099325,-0.0555959234211836 +197343,986.7150000099326,-0.05559588776298904 +197344,986.7200000099327,-0.05559585210680764 +197345,986.7250000099328,-0.05559581645263823 +197346,986.730000009933,-0.05559578080047963 +197347,986.7350000099331,-0.055595745150330673 +197348,986.7400000099332,-0.055595709502190165 +197349,986.7450000099333,-0.05559567385605693 +197350,986.7500000099334,-0.05559563821192981 +197351,986.7550000099335,-0.05559560256980761 +197352,986.7600000099336,-0.05559556692968916 +197353,986.7650000099337,-0.05559553129157328 +197354,986.7700000099338,-0.05559549565545879 +197355,986.7750000099339,-0.05559546002134454 +197356,986.780000009934,-0.05559542438922932 +197357,986.7850000099342,-0.055595388759111984 +197358,986.7900000099343,-0.05559535313099134 +197359,986.7950000099344,-0.05559531750486622 +197360,986.8000000099345,-0.055595281880735446 +197361,986.8050000099346,-0.05559524625859784 +197362,986.8100000099347,-0.05559521063845224 +197363,986.8150000099348,-0.055595175020297476 +197364,986.8200000099349,-0.055595139404132354 +197365,986.825000009935,-0.05559510378995572 +197366,986.8300000099351,-0.055595068177766396 +197367,986.8350000099352,-0.05559503256756321 +197368,986.8400000099354,-0.055594996959345 +197369,986.8450000099355,-0.05559496135311058 +197370,986.8500000099356,-0.05559492574885877 +197371,986.8550000099357,-0.05559489014658843 +197372,986.8600000099358,-0.05559485454629837 +197373,986.8650000099359,-0.05559481894798741 +197374,986.870000009936,-0.05559478335165439 +197375,986.8750000099361,-0.05559474775729814 +197376,986.8800000099362,-0.055594712164917494 +197377,986.8850000099363,-0.05559467657451128 +197378,986.8900000099364,-0.05559464098607833 +197379,986.8950000099366,-0.055594605399617476 +197380,986.9000000099367,-0.05559456981512756 +197381,986.9050000099368,-0.055594534232607386 +197382,986.9100000099369,-0.055594498652055804 +197383,986.915000009937,-0.05559446307347164 +197384,986.9200000099371,-0.05559442749685374 +197385,986.9250000099372,-0.05559439192220093 +197386,986.9300000099373,-0.05559435634951204 +197387,986.9350000099374,-0.0555943207787859 +197388,986.9400000099375,-0.055594285210021355 +197389,986.9450000099376,-0.05559424964321723 +197390,986.9500000099378,-0.055594214078372346 +197391,986.9550000099379,-0.055594178515485565 +197392,986.960000009938,-0.05559414295455571 +197393,986.9650000099381,-0.05559410739558162 +197394,986.9700000099382,-0.05559407183856212 +197395,986.9750000099383,-0.05559403628349605 +197396,986.9800000099384,-0.055594000730382266 +197397,986.9850000099385,-0.055593965179219565 +197398,986.9900000099386,-0.05559392963000681 +197399,986.9950000099387,-0.05559389408274284 +197400,987.0000000099388,-0.05559385853742649 +197401,987.005000009939,-0.05559382299405658 +197402,987.0100000099391,-0.05559378745263197 +197403,987.0150000099392,-0.055593751913151496 +197404,987.0200000099393,-0.05559371637561398 +197405,987.0250000099394,-0.05559368084001827 +197406,987.0300000099395,-0.0555936453063632 +197407,987.0350000099396,-0.05559360977464762 +197408,987.0400000099397,-0.05559357424487035 +197409,987.0450000099398,-0.05559353871703026 +197410,987.0500000099399,-0.05559350319112616 +197411,987.05500000994,-0.0555934676671569 +197412,987.0600000099402,-0.05559343214512133 +197413,987.0650000099403,-0.055593396625018277 +197414,987.0700000099404,-0.05559336110684659 +197415,987.0750000099405,-0.055593325590605105 +197416,987.0800000099406,-0.05559329007629266 +197417,987.0850000099407,-0.055593254563908116 +197418,987.0900000099408,-0.0555932190534503 +197419,987.0950000099409,-0.05559318354491805 +197420,987.100000009941,-0.05559314803831022 +197421,987.1050000099411,-0.05559311253362566 +197422,987.1100000099412,-0.055593077030863185 +197423,987.1150000099414,-0.05559304153002167 +197424,987.1200000099415,-0.055593006031099935 +197425,987.1250000099416,-0.055592970534096835 +197426,987.1300000099417,-0.05559293503901123 +197427,987.1350000099418,-0.055592899545841935 +197428,987.1400000099419,-0.055592864054587805 +197429,987.145000009942,-0.055592828565247686 +197430,987.1500000099421,-0.05559279307782043 +197431,987.1550000099422,-0.05559275759230488 +197432,987.1600000099423,-0.05559272210869987 +197433,987.1650000099424,-0.05559268662700427 +197434,987.1700000099426,-0.05559265114721691 +197435,987.1750000099427,-0.05559261566933664 +197436,987.1800000099428,-0.055592580193362294 +197437,987.1850000099429,-0.05559254471929275 +197438,987.190000009943,-0.05559250924712683 +197439,987.1950000099431,-0.05559247377686339 +197440,987.2000000099432,-0.055592438308501274 +197441,987.2050000099433,-0.05559240284203933 +197442,987.2100000099434,-0.05559236737747642 +197443,987.2150000099435,-0.05559233191481138 +197444,987.2200000099436,-0.055592296454043066 +197445,987.2250000099438,-0.05559226099517034 +197446,987.2300000099439,-0.05559222553819203 +197447,987.235000009944,-0.055592190083106986 +197448,987.2400000099441,-0.05559215462991406 +197449,987.2450000099442,-0.05559211917861212 +197450,987.2500000099443,-0.05559208372920001 +197451,987.2550000099444,-0.05559204828167657 +197452,987.2600000099445,-0.055592012836040657 +197453,987.2650000099446,-0.05559197739229113 +197454,987.2700000099447,-0.05559194195042683 +197455,987.2750000099448,-0.05559190651044662 +197456,987.280000009945,-0.05559187107234935 +197457,987.2850000099451,-0.05559183563613387 +197458,987.2900000099452,-0.05559180020179902 +197459,987.2950000099453,-0.05559176476934367 +197460,987.3000000099454,-0.05559172933876667 +197461,987.3050000099455,-0.05559169391006688 +197462,987.3100000099456,-0.05559165848324315 +197463,987.3150000099457,-0.055591623058294334 +197464,987.3200000099458,-0.055591587635219285 +197465,987.3250000099459,-0.05559155221401686 +197466,987.330000009946,-0.055591516794685915 +197467,987.3350000099462,-0.055591481377225305 +197468,987.3400000099463,-0.05559144596163388 +197469,987.3450000099464,-0.055591410547910516 +197470,987.3500000099465,-0.05559137513605404 +197471,987.3550000099466,-0.05559133972606334 +197472,987.3600000099467,-0.05559130431793725 +197473,987.3650000099468,-0.05559126891167463 +197474,987.3700000099469,-0.05559123350727435 +197475,987.375000009947,-0.05559119810473526 +197476,987.3800000099471,-0.055591162704056216 +197477,987.3850000099472,-0.055591127305236084 +197478,987.3900000099474,-0.055591091908273715 +197479,987.3950000099475,-0.05559105651316796 +197480,987.4000000099476,-0.0555910211199177 +197481,987.4050000099477,-0.05559098572852177 +197482,987.4100000099478,-0.05559095033897906 +197483,987.4150000099479,-0.0555909149512884 +197484,987.420000009948,-0.05559087956544868 +197485,987.4250000099481,-0.05559084418145874 +197486,987.4300000099482,-0.05559080879931743 +197487,987.4350000099483,-0.05559077341902364 +197488,987.4400000099484,-0.05559073804057622 +197489,987.4450000099486,-0.05559070266397401 +197490,987.4500000099487,-0.05559066728921592 +197491,987.4550000099488,-0.055590631916300766 +197492,987.4600000099489,-0.05559059654522743 +197493,987.465000009949,-0.05559056117599478 +197494,987.4700000099491,-0.05559052580860167 +197495,987.4750000099492,-0.05559049044304696 +197496,987.4800000099493,-0.05559045507932952 +197497,987.4850000099494,-0.055590419717448214 +197498,987.4900000099495,-0.055590384357401906 +197499,987.4950000099496,-0.05559034899918946 +197500,987.5000000099498,-0.055590313642809745 +197501,987.5050000099499,-0.055590278288261616 +197502,987.51000000995,-0.05559024293554395 +197503,987.5150000099501,-0.05559020758465562 +197504,987.5200000099502,-0.05559017223559546 +197505,987.5250000099503,-0.055590136888362354 +197506,987.5300000099504,-0.05559010154295517 +197507,987.5350000099505,-0.05559006619937277 +197508,987.5400000099506,-0.05559003085761404 +197509,987.5450000099507,-0.05558999551767782 +197510,987.5500000099508,-0.055589960179563 +197511,987.555000009951,-0.05558992484326842 +197512,987.5600000099511,-0.055589889508792976 +197513,987.5650000099512,-0.05558985417613553 +197514,987.5700000099513,-0.055589818845294944 +197515,987.5750000099514,-0.05558978351627009 +197516,987.5800000099515,-0.05558974818905983 +197517,987.5850000099516,-0.055589712863663036 +197518,987.5900000099517,-0.05558967754007858 +197519,987.5950000099518,-0.05558964221830535 +197520,987.6000000099519,-0.055589606898342185 +197521,987.605000009952,-0.05558957158018798 +197522,987.6100000099522,-0.055589536263841596 +197523,987.6150000099523,-0.055589500949301894 +197524,987.6200000099524,-0.055589465636567754 +197525,987.6250000099525,-0.055589430325638046 +197526,987.6300000099526,-0.05558939501651166 +197527,987.6350000099527,-0.05558935970918745 +197528,987.6400000099528,-0.05558932440366428 +197529,987.6450000099529,-0.05558928909994104 +197530,987.650000009953,-0.0555892537980166 +197531,987.6550000099531,-0.055589218497889815 +197532,987.6600000099533,-0.055589183199559584 +197533,987.6650000099534,-0.055589147903024765 +197534,987.6700000099535,-0.05558911260828424 +197535,987.6750000099536,-0.05558907731533688 +197536,987.6800000099537,-0.055589042024181565 +197537,987.6850000099538,-0.05558900673481716 +197538,987.6900000099539,-0.05558897144724254 +197539,987.695000009954,-0.05558893616145659 +197540,987.7000000099541,-0.055588900877458186 +197541,987.7050000099542,-0.055588865595246194 +197542,987.7100000099543,-0.05558883031481949 +197543,987.7150000099545,-0.05558879503617696 +197544,987.7200000099546,-0.055588759759317485 +197545,987.7250000099547,-0.05558872448423992 +197546,987.7300000099548,-0.05558868921094316 +197547,987.7350000099549,-0.05558865393942608 +197548,987.740000009955,-0.05558861866968756 +197549,987.7450000099551,-0.05558858340172647 +197550,987.7500000099552,-0.055588548135541684 +197551,987.7550000099553,-0.0555885128711321 +197552,987.7600000099554,-0.05558847760849658 +197553,987.7650000099555,-0.055588442347634014 +197554,987.7700000099557,-0.055588407088543276 +197555,987.7750000099558,-0.055588371831223254 +197556,987.7800000099559,-0.05558833657567282 +197557,987.785000009956,-0.05558830132189084 +197558,987.7900000099561,-0.05558826606987621 +197559,987.7950000099562,-0.055588230819627826 +197560,987.8000000099563,-0.05558819557114454 +197561,987.8050000099564,-0.05558816032442525 +197562,987.8100000099565,-0.055588125079468836 +197563,987.8150000099566,-0.05558808983627418 +197564,987.8200000099567,-0.05558805459484016 +197565,987.8250000099569,-0.055588019355165656 +197566,987.830000009957,-0.055587984117249564 +197567,987.8350000099571,-0.055587948881090754 +197568,987.8400000099572,-0.05558791364668812 +197569,987.8450000099573,-0.05558787841404053 +197570,987.8500000099574,-0.05558784318314689 +197571,987.8550000099575,-0.055587807954006065 +197572,987.8600000099576,-0.05558777272661695 +197573,987.8650000099577,-0.055587737500978424 +197574,987.8700000099578,-0.05558770227708936 +197575,987.875000009958,-0.05558766705494867 +197576,987.880000009958,-0.055587631834555215 +197577,987.8850000099582,-0.0555875966159079 +197578,987.8900000099583,-0.05558756139900559 +197579,987.8950000099584,-0.055587526183847207 +197580,987.9000000099585,-0.05558749097043159 +197581,987.9050000099586,-0.055587455758757655 +197582,987.9100000099587,-0.05558742054882428 +197583,987.9150000099588,-0.05558738534063036 +197584,987.9200000099589,-0.05558735013417478 +197585,987.925000009959,-0.05558731492945644 +197586,987.9300000099591,-0.05558727972647421 +197587,987.9350000099593,-0.05558724452522698 +197588,987.9400000099594,-0.05558720932571363 +197589,987.9450000099595,-0.05558717412793307 +197590,987.9500000099596,-0.05558713893188418 +197591,987.9550000099597,-0.055587103737565854 +197592,987.9600000099598,-0.05558706854497698 +197593,987.9650000099599,-0.05558703335411643 +197594,987.97000000996,-0.055586998164983116 +197595,987.9750000099601,-0.05558696297757593 +197596,987.9800000099602,-0.055586927791893746 +197597,987.9850000099603,-0.05558689260793546 +197598,987.9900000099605,-0.055586857425699965 +197599,987.9950000099606,-0.05558682224518616 +197600,988.0000000099607,-0.05558678706639293 +197601,988.0050000099608,-0.05558675188931918 +197602,988.0100000099609,-0.055586716713963785 +197603,988.015000009961,-0.055586681540325644 +197604,988.0200000099611,-0.05558664636840365 +197605,988.0250000099612,-0.055586611198196696 +197606,988.0300000099613,-0.05558657602970367 +197607,988.0350000099614,-0.05558654086292347 +197608,988.0400000099615,-0.05558650569785499 +197609,988.0450000099617,-0.055586470534497126 +197610,988.0500000099618,-0.05558643537284878 +197611,988.0550000099619,-0.055586400212908844 +197612,988.060000009962,-0.05558636505467619 +197613,988.0650000099621,-0.055586329898149746 +197614,988.0700000099622,-0.05558629474332838 +197615,988.0750000099623,-0.05558625959021102 +197616,988.0800000099624,-0.05558622443879654 +197617,988.0850000099625,-0.055586189289083834 +197618,988.0900000099626,-0.055586154141071806 +197619,988.0950000099627,-0.05558611899475935 +197620,988.1000000099629,-0.05558608385014536 +197621,988.105000009963,-0.05558604870722874 +197622,988.1100000099631,-0.05558601356600839 +197623,988.1150000099632,-0.0555859784264832 +197624,988.1200000099633,-0.05558594328865207 +197625,988.1250000099634,-0.05558590815251391 +197626,988.1300000099635,-0.055585873018067604 +197627,988.1350000099636,-0.05558583788531206 +197628,988.1400000099637,-0.055585802754246176 +197629,988.1450000099638,-0.05558576762486885 +197630,988.150000009964,-0.055585732497178984 +197631,988.155000009964,-0.05558569737117547 +197632,988.1600000099642,-0.05558566224685721 +197633,988.1650000099643,-0.05558562712422312 +197634,988.1700000099644,-0.05558559200327209 +197635,988.1750000099645,-0.05558555688400301 +197636,988.1800000099646,-0.0555855217664148 +197637,988.1850000099647,-0.055585486650506354 +197638,988.1900000099648,-0.05558545153627658 +197639,988.1950000099649,-0.05558541642372437 +197640,988.200000009965,-0.05558538131284864 +197641,988.2050000099651,-0.055585346203648286 +197642,988.2100000099653,-0.0555853110961222 +197643,988.2150000099654,-0.055585275990269294 +197644,988.2200000099655,-0.05558524088608849 +197645,988.2250000099656,-0.05558520578357866 +197646,988.2300000099657,-0.05558517068273872 +197647,988.2350000099658,-0.05558513558356759 +197648,988.2400000099659,-0.055585100486064166 +197649,988.245000009966,-0.055585065390227346 +197650,988.2500000099661,-0.055585030296056034 +197651,988.2550000099662,-0.05558499520354914 +197652,988.2600000099663,-0.05558496011270558 +197653,988.2650000099665,-0.05558492502352424 +197654,988.2700000099666,-0.05558488993600404 +197655,988.2750000099667,-0.05558485485014387 +197656,988.2800000099668,-0.05558481976594266 +197657,988.2850000099669,-0.05558478468339931 +197658,988.290000009967,-0.055584749602512716 +197659,988.2950000099671,-0.05558471452328181 +197660,988.3000000099672,-0.055584679445705464 +197661,988.3050000099673,-0.05558464436978261 +197662,988.3100000099674,-0.055584609295512157 +197663,988.3150000099675,-0.055584574222893014 +197664,988.3200000099677,-0.05558453915192408 +197665,988.3250000099678,-0.05558450408260427 +197666,988.3300000099679,-0.0555844690149325 +197667,988.335000009968,-0.05558443394890766 +197668,988.3400000099681,-0.05558439888452868 +197669,988.3450000099682,-0.05558436382179447 +197670,988.3500000099683,-0.055584328760703926 +197671,988.3550000099684,-0.05558429370125598 +197672,988.3600000099685,-0.05558425864344952 +197673,988.3650000099686,-0.05558422358728346 +197674,988.3700000099687,-0.05558418853275673 +197675,988.3750000099689,-0.05558415347986822 +197676,988.380000009969,-0.05558411842861686 +197677,988.3850000099691,-0.05558408337900156 +197678,988.3900000099692,-0.05558404833102122 +197679,988.3950000099693,-0.05558401328467477 +197680,988.4000000099694,-0.05558397823996111 +197681,988.4050000099695,-0.05558394319687916 +197682,988.4100000099696,-0.05558390815542784 +197683,988.4150000099697,-0.05558387311560604 +197684,988.4200000099698,-0.0555838380774127 +197685,988.42500000997,-0.055583803040846716 +197686,988.4300000099701,-0.05558376800590702 +197687,988.4350000099702,-0.05558373297259252 +197688,988.4400000099703,-0.05558369794090213 +197689,988.4450000099704,-0.05558366291083476 +197690,988.4500000099705,-0.05558362788238934 +197691,988.4550000099706,-0.05558359285556477 +197692,988.4600000099707,-0.05558355783035998 +197693,988.4650000099708,-0.05558352280677387 +197694,988.4700000099709,-0.055583487784805374 +197695,988.475000009971,-0.0555834527644534 +197696,988.4800000099711,-0.05558341774571687 +197697,988.4850000099713,-0.0555833827285947 +197698,988.4900000099714,-0.05558334771308582 +197699,988.4950000099715,-0.055583312699189126 +197700,988.5000000099716,-0.05558327768690354 +197701,988.5050000099717,-0.055583242676227995 +197702,988.5100000099718,-0.055583207667161405 +197703,988.5150000099719,-0.05558317265970268 +197704,988.520000009972,-0.055583137653850756 +197705,988.5250000099721,-0.05558310264960454 +197706,988.5300000099722,-0.05558306764696296 +197707,988.5350000099724,-0.05558303264592493 +197708,988.5400000099725,-0.05558299764648938 +197709,988.5450000099726,-0.05558296264865521 +197710,988.5500000099727,-0.055582927652421364 +197711,988.5550000099728,-0.055582892657786744 +197712,988.5600000099729,-0.055582857664750296 +197713,988.565000009973,-0.05558282267331092 +197714,988.5700000099731,-0.05558278768346755 +197715,988.5750000099732,-0.055582752695219104 +197716,988.5800000099733,-0.0555827177085645 +197717,988.5850000099734,-0.055582682723502676 +197718,988.5900000099736,-0.05558264774003253 +197719,988.5950000099737,-0.05558261275815301 +197720,988.6000000099738,-0.055582577777863025 +197721,988.6050000099739,-0.0555825427991615 +197722,988.610000009974,-0.05558250782204738 +197723,988.6150000099741,-0.055582472846519564 +197724,988.6200000099742,-0.05558243787257699 +197725,988.6250000099743,-0.05558240290021858 +197726,988.6300000099744,-0.055582367929443266 +197727,988.6350000099745,-0.05558233296024996 +197728,988.6400000099746,-0.05558229799263759 +197729,988.6450000099748,-0.05558226302660509 +197730,988.6500000099749,-0.055582228062151386 +197731,988.655000009975,-0.0555821930992754 +197732,988.6600000099751,-0.05558215813797607 +197733,988.6650000099752,-0.055582123178252306 +197734,988.6700000099753,-0.05558208822010305 +197735,988.6750000099754,-0.05558205326352721 +197736,988.6800000099755,-0.055582018308523745 +197737,988.6850000099756,-0.055581983355091555 +197738,988.6900000099757,-0.055581948403229574 +197739,988.6950000099758,-0.05558191345293675 +197740,988.700000009976,-0.055581878504211986 +197741,988.7050000099761,-0.05558184355705423 +197742,988.7100000099762,-0.055581808611462405 +197743,988.7150000099763,-0.05558177366743544 +197744,988.7200000099764,-0.05558173872497227 +197745,988.7250000099765,-0.055581703784071824 +197746,988.7300000099766,-0.05558166884473302 +197747,988.7350000099767,-0.05558163390695481 +197748,988.7400000099768,-0.05558159897073611 +197749,988.7450000099769,-0.05558156403607585 +197750,988.750000009977,-0.05558152910297297 +197751,988.7550000099772,-0.0555814941714264 +197752,988.7600000099773,-0.05558145924143507 +197753,988.7650000099774,-0.05558142431299791 +197754,988.7700000099775,-0.05558138938611387 +197755,988.7750000099776,-0.05558135446078187 +197756,988.7800000099777,-0.05558131953700082 +197757,988.7850000099778,-0.05558128461476969 +197758,988.7900000099779,-0.05558124969408739 +197759,988.795000009978,-0.05558121477495287 +197760,988.8000000099781,-0.05558117985736506 +197761,988.8050000099782,-0.055581144941322894 +197762,988.8100000099784,-0.0555811100268253 +197763,988.8150000099785,-0.055581075113871226 +197764,988.8200000099786,-0.05558104020245959 +197765,988.8250000099787,-0.05558100529258935 +197766,988.8300000099788,-0.05558097038425943 +197767,988.8350000099789,-0.05558093547746876 +197768,988.840000009979,-0.055580900572216284 +197769,988.8450000099791,-0.055580865668500935 +197770,988.8500000099792,-0.05558083076632166 +197771,988.8550000099793,-0.05558079586567737 +197772,988.8600000099794,-0.05558076096656703 +197773,988.8650000099796,-0.05558072606898956 +197774,988.8700000099797,-0.05558069117294392 +197775,988.8750000099798,-0.05558065627842902 +197776,988.8800000099799,-0.05558062138544382 +197777,988.88500000998,-0.055580586493987255 +197778,988.8900000099801,-0.05558055160405826 +197779,988.8950000099802,-0.05558051671565576 +197780,988.9000000099803,-0.05558048182877872 +197781,988.9050000099804,-0.05558044694342606 +197782,988.9100000099805,-0.055580412059596726 +197783,988.9150000099806,-0.05558037717728966 +197784,988.9200000099808,-0.05558034229650382 +197785,988.9250000099809,-0.05558030741723812 +197786,988.930000009981,-0.05558027253949151 +197787,988.9350000099811,-0.05558023766326292 +197788,988.9400000099812,-0.05558020278855132 +197789,988.9450000099813,-0.05558016791535563 +197790,988.9500000099814,-0.05558013304367481 +197791,988.9550000099815,-0.05558009817350778 +197792,988.9600000099816,-0.055580063304853496 +197793,988.9650000099817,-0.05558002843771089 +197794,988.9700000099818,-0.05557999357207892 +197795,988.975000009982,-0.055579958707956525 +197796,988.9800000099821,-0.05557992384534263 +197797,988.9850000099822,-0.05557988898423621 +197798,988.9900000099823,-0.05557985412463619 +197799,988.9950000099824,-0.05557981926654152 +197800,989.0000000099825,-0.05557978440995115 +197801,989.0050000099826,-0.05557974955486401 +197802,989.0100000099827,-0.05557971470127906 +197803,989.0150000099828,-0.05557967984919523 +197804,989.0200000099829,-0.05557964499861147 +197805,989.025000009983,-0.05557961014952675 +197806,989.0300000099832,-0.055579575301939986 +197807,989.0350000099833,-0.055579540455850125 +197808,989.0400000099834,-0.05557950561125612 +197809,989.0450000099835,-0.05557947076815694 +197810,989.0500000099836,-0.05557943592655151 +197811,989.0550000099837,-0.05557940108643878 +197812,989.0600000099838,-0.0555793662478177 +197813,989.0650000099839,-0.055579331410687216 +197814,989.070000009984,-0.05557929657504629 +197815,989.0750000099841,-0.055579261740893844 +197816,989.0800000099842,-0.05557922690822885 +197817,989.0850000099844,-0.05557919207705024 +197818,989.0900000099845,-0.05557915724735697 +197819,989.0950000099846,-0.055579122419147996 +197820,989.1000000099847,-0.055579087592422256 +197821,989.1050000099848,-0.05557905276717871 +197822,989.1100000099849,-0.055579017943416305 +197823,989.115000009985,-0.055578983121134004 +197824,989.1200000099851,-0.055578948300330736 +197825,989.1250000099852,-0.05557891348100547 +197826,989.1300000099853,-0.055578878663157145 +197827,989.1350000099854,-0.05557884384678471 +197828,989.1400000099856,-0.05557880903188713 +197829,989.1450000099857,-0.055578774218463356 +197830,989.1500000099858,-0.055578739406512326 +197831,989.1550000099859,-0.05557870459603301 +197832,989.160000009986,-0.05557866978702435 +197833,989.1650000099861,-0.055578634979485314 +197834,989.1700000099862,-0.055578600173414844 +197835,989.1750000099863,-0.05557856536881188 +197836,989.1800000099864,-0.055578530565675396 +197837,989.1850000099865,-0.055578495764004344 +197838,989.1900000099866,-0.05557846096379767 +197839,989.1950000099868,-0.05557842616505434 +197840,989.2000000099869,-0.055578391367773296 +197841,989.205000009987,-0.055578356571953494 +197842,989.2100000099871,-0.0555783217775939 +197843,989.2150000099872,-0.05557828698469346 +197844,989.2200000099873,-0.055578252193251146 +197845,989.2250000099874,-0.0555782174032659 +197846,989.2300000099875,-0.055578182614736675 +197847,989.2350000099876,-0.05557814782766245 +197848,989.2400000099877,-0.05557811304204216 +197849,989.2450000099878,-0.055578078257874766 +197850,989.250000009988,-0.05557804347515923 +197851,989.2550000099881,-0.055578008693894516 +197852,989.2600000099882,-0.055577973914079565 +197853,989.2650000099883,-0.05557793913571335 +197854,989.2700000099884,-0.055577904358794825 +197855,989.2750000099885,-0.055577869583322954 +197856,989.2800000099886,-0.05557783480929668 +197857,989.2850000099887,-0.055577800036714975 +197858,989.2900000099888,-0.055577765265576805 +197859,989.2950000099889,-0.05557773049588111 +197860,989.300000009989,-0.05557769572762688 +197861,989.3050000099892,-0.055577660960813034 +197862,989.3100000099893,-0.05557762619543857 +197863,989.3150000099894,-0.05557759143150243 +197864,989.3200000099895,-0.05557755666900357 +197865,989.3250000099896,-0.05557752190794098 +197866,989.3300000099897,-0.05557748714831359 +197867,989.3350000099898,-0.05557745239012039 +197868,989.3400000099899,-0.05557741763336031 +197869,989.34500000999,-0.05557738287803234 +197870,989.3500000099901,-0.05557734812413543 +197871,989.3550000099902,-0.05557731337166854 +197872,989.3600000099904,-0.05557727862063064 +197873,989.3650000099905,-0.055577243871020685 +197874,989.3700000099906,-0.05557720912283766 +197875,989.3750000099907,-0.05557717437608051 +197876,989.3800000099908,-0.05557713963074821 +197877,989.3850000099909,-0.05557710488683971 +197878,989.390000009991,-0.055577070144353986 +197879,989.3950000099911,-0.055577035403289995 +197880,989.4000000099912,-0.055577000663646715 +197881,989.4050000099913,-0.0555769659254231 +197882,989.4100000099914,-0.05557693118861812 +197883,989.4150000099916,-0.055576896453230745 +197884,989.4200000099917,-0.05557686171925994 +197885,989.4250000099918,-0.05557682698670466 +197886,989.4300000099919,-0.05557679225556389 +197887,989.435000009992,-0.05557675752583657 +197888,989.4400000099921,-0.055576722797521697 +197889,989.4450000099922,-0.05557668807061822 +197890,989.4500000099923,-0.05557665334512511 +197891,989.4550000099924,-0.05557661862104135 +197892,989.4600000099925,-0.055576583898365894 +197893,989.4650000099927,-0.05557654917709772 +197894,989.4700000099928,-0.05557651445723578 +197895,989.4750000099929,-0.05557647973877904 +197896,989.480000009993,-0.0555764450217265 +197897,989.4850000099931,-0.05557641030607711 +197898,989.4900000099932,-0.055576375591829846 +197899,989.4950000099933,-0.05557634087898367 +197900,989.5000000099934,-0.05557630616753755 +197901,989.5050000099935,-0.055576271457490466 +197902,989.5100000099936,-0.055576236748841386 +197903,989.5150000099937,-0.055576202041589286 +197904,989.5200000099939,-0.05557616733573313 +197905,989.525000009994,-0.05557613263127189 +197906,989.5300000099941,-0.05557609792820453 +197907,989.5350000099942,-0.05557606322653004 +197908,989.5400000099943,-0.055576028526247385 +197909,989.5450000099944,-0.055575993827355535 +197910,989.5500000099945,-0.055575959129853476 +197911,989.5550000099946,-0.055575924433740154 +197912,989.5600000099947,-0.055575889739014575 +197913,989.5650000099948,-0.05557585504567568 +197914,989.5700000099949,-0.055575820353722466 +197915,989.575000009995,-0.055575785663153895 +197916,989.5800000099952,-0.055575750973968954 +197917,989.5850000099953,-0.05557571628616661 +197918,989.5900000099954,-0.05557568159974584 +197919,989.5950000099955,-0.055575646914705616 +197920,989.6000000099956,-0.055575612231044916 +197921,989.6050000099957,-0.05557557754876271 +197922,989.6100000099958,-0.05557554286785798 +197923,989.6150000099959,-0.055575508188329695 +197924,989.620000009996,-0.05557547351017684 +197925,989.6250000099961,-0.0555754388333984 +197926,989.6300000099963,-0.055575404157993336 +197927,989.6350000099964,-0.05557536948396063 +197928,989.6400000099965,-0.05557533481129926 +197929,989.6450000099966,-0.055575300140008194 +197930,989.6500000099967,-0.05557526547008642 +197931,989.6550000099968,-0.05557523080153293 +197932,989.6600000099969,-0.05557519613434667 +197933,989.665000009997,-0.055575161468526646 +197934,989.6700000099971,-0.05557512680407183 +197935,989.6750000099972,-0.0555750921409812 +197936,989.6800000099973,-0.05557505747925373 +197937,989.6850000099975,-0.0555750228188884 +197938,989.6900000099976,-0.0555749881598842 +197939,989.6950000099977,-0.05557495350224011 +197940,989.7000000099978,-0.0555749188459551 +197941,989.7050000099979,-0.05557488419102815 +197942,989.710000009998,-0.05557484953745825 +197943,989.7150000099981,-0.05557481488524438 +197944,989.7200000099982,-0.055574780234385515 +197945,989.7250000099983,-0.055574745584880646 +197946,989.7300000099984,-0.05557471093672875 +197947,989.7350000099985,-0.05557467628992881 +197948,989.7400000099987,-0.0555746416444798 +197949,989.7450000099988,-0.05557460700038071 +197950,989.7500000099989,-0.05557457235763053 +197951,989.755000009999,-0.05557453771622824 +197952,989.7600000099991,-0.0555745030761728 +197953,989.7650000099992,-0.05557446843746324 +197954,989.7700000099993,-0.05557443380009851 +197955,989.7750000099994,-0.05557439916407759 +197956,989.7800000099995,-0.05557436452939949 +197957,989.7850000099996,-0.05557432989606318 +197958,989.7900000099997,-0.055574295264067645 +197959,989.7950000099999,-0.05557426063341187 +197960,989.80000001,-0.05557422600409484 +197961,989.8050000100001,-0.05557419137611555 +197962,989.8100000100002,-0.055574156749472976 +197963,989.8150000100003,-0.05557412212416611 +197964,989.8200000100004,-0.05557408750019394 +197965,989.8250000100005,-0.055574052877555444 +197966,989.8300000100006,-0.055574018256249615 +197967,989.8350000100007,-0.05557398363627544 +197968,989.8400000100008,-0.05557394901763191 +197969,989.845000010001,-0.055573914400318 +197970,989.850000010001,-0.055573879784332716 +197971,989.8550000100012,-0.05557384516967504 +197972,989.8600000100013,-0.055573810556343944 +197973,989.8650000100014,-0.05557377594433844 +197974,989.8700000100015,-0.05557374133365749 +197975,989.8750000100016,-0.05557370672430013 +197976,989.8800000100017,-0.0555736721162653 +197977,989.8850000100018,-0.055573637509552014 +197978,989.8900000100019,-0.05557360290415926 +197979,989.895000010002,-0.05557356830008602 +197980,989.9000000100021,-0.0555735336973313 +197981,989.9050000100023,-0.05557349909589408 +197982,989.9100000100024,-0.05557346449577335 +197983,989.9150000100025,-0.05557342989696811 +197984,989.9200000100026,-0.05557339529947734 +197985,989.9250000100027,-0.05557336070330004 +197986,989.9300000100028,-0.0555733261084352 +197987,989.9350000100029,-0.055573291514881815 +197988,989.940000010003,-0.055573256922638876 +197989,989.9450000100031,-0.05557322233170537 +197990,989.9500000100032,-0.055573187742080296 +197991,989.9550000100033,-0.05557315315376265 +197992,989.9600000100035,-0.05557311856675142 +197993,989.9650000100036,-0.0555730839810456 +197994,989.9700000100037,-0.05557304939664418 +197995,989.9750000100038,-0.055573014813546165 +197996,989.9800000100039,-0.055572980231750536 +197997,989.985000010004,-0.055572945651256304 +197998,989.9900000100041,-0.055572911072062456 +197999,989.9950000100042,-0.055572876494167985 +198000,990.0000000100043,-0.05557284191757189 +198001,990.0050000100044,-0.05557280734227317 +198002,990.0100000100045,-0.05557277276827081 +198003,990.0150000100047,-0.05557273819556382 +198004,990.0200000100048,-0.055572703624151176 +198005,990.0250000100049,-0.055572669054031895 +198006,990.030000010005,-0.05557263448520496 +198007,990.0350000100051,-0.05557259991766938 +198008,990.0400000100052,-0.055572565351424144 +198009,990.0450000100053,-0.05557253078646827 +198010,990.0500000100054,-0.05557249622280072 +198011,990.0550000100055,-0.05557246166042053 +198012,990.0600000100056,-0.05557242709932667 +198013,990.0650000100057,-0.055572392539518164 +198014,990.0700000100059,-0.05557235798099398 +198015,990.075000010006,-0.05557232342375315 +198016,990.0800000100061,-0.05557228886779464 +198017,990.0850000100062,-0.055572254313117485 +198018,990.0900000100063,-0.055572219759720654 +198019,990.0950000100064,-0.055572185207603174 +198020,990.1000000100065,-0.055572150656764026 +198021,990.1050000100066,-0.05557211610720221 +198022,990.1100000100067,-0.055572081558916735 +198023,990.1150000100068,-0.05557204701190661 +198024,990.120000010007,-0.05557201246617082 +198025,990.125000010007,-0.055571977921708385 +198026,990.1300000100072,-0.055571943378518285 +198027,990.1350000100073,-0.055571908836599536 +198028,990.1400000100074,-0.05557187429595113 +198029,990.1450000100075,-0.05557183975657209 +198030,990.1500000100076,-0.05557180521846141 +198031,990.1550000100077,-0.055571770681618095 +198032,990.1600000100078,-0.055571736146041134 +198033,990.1650000100079,-0.055571701611729536 +198034,990.170000010008,-0.05557166707868232 +198035,990.1750000100081,-0.05557163254689849 +198036,990.1800000100083,-0.055571598016377025 +198037,990.1850000100084,-0.05557156348711695 +198038,990.1900000100085,-0.05557152895911726 +198039,990.1950000100086,-0.05557149443237697 +198040,990.2000000100087,-0.05557145990689509 +198041,990.2050000100088,-0.05557142538267061 +198042,990.2100000100089,-0.05557139085970255 +198043,990.215000010009,-0.055571356337989895 +198044,990.2200000100091,-0.05557132181753167 +198045,990.2250000100092,-0.05557128729832688 +198046,990.2300000100093,-0.05557125278037454 +198047,990.2350000100095,-0.05557121826367363 +198048,990.2400000100096,-0.05557118374822318 +198049,990.2450000100097,-0.05557114923402219 +198050,990.2500000100098,-0.05557111472106968 +198051,990.2550000100099,-0.05557108020936464 +198052,990.26000001001,-0.05557104569890609 +198053,990.2650000100101,-0.05557101118969304 +198054,990.2700000100102,-0.05557097668172449 +198055,990.2750000100103,-0.055570942174999444 +198056,990.2800000100104,-0.05557090766951693 +198057,990.2850000100105,-0.055570873165275946 +198058,990.2900000100107,-0.05557083866227551 +198059,990.2950000100108,-0.05557080416051461 +198060,990.3000000100109,-0.055570769659992296 +198061,990.305000010011,-0.05557073516070754 +198062,990.3100000100111,-0.05557070066265938 +198063,990.3150000100112,-0.055570666165846806 +198064,990.3200000100113,-0.05557063167026884 +198065,990.3250000100114,-0.05557059717592449 +198066,990.3300000100115,-0.055570562682812776 +198067,990.3350000100116,-0.05557052819093271 +198068,990.3400000100117,-0.055570493700283295 +198069,990.3450000100119,-0.055570459210863545 +198070,990.350000010012,-0.055570424722672485 +198071,990.3550000100121,-0.055570390235709116 +198072,990.3600000100122,-0.055570355749972454 +198073,990.3650000100123,-0.05557032126546152 +198074,990.3700000100124,-0.055570286782175314 +198075,990.3750000100125,-0.05557025230011287 +198076,990.3800000100126,-0.05557021781927318 +198077,990.3850000100127,-0.05557018333965527 +198078,990.3900000100128,-0.05557014886125816 +198079,990.395000010013,-0.055570114384080854 +198080,990.4000000100131,-0.05557007990812237 +198081,990.4050000100132,-0.055570045433381725 +198082,990.4100000100133,-0.05557001095985794 +198083,990.4150000100134,-0.05556997648755002 +198084,990.4200000100135,-0.05556994201645699 +198085,990.4250000100136,-0.05556990754657787 +198086,990.4300000100137,-0.05556987307791167 +198087,990.4350000100138,-0.055569838610457396 +198088,990.4400000100139,-0.05556980414421409 +198089,990.445000010014,-0.05556976967918075 +198090,990.4500000100142,-0.0555697352153564 +198091,990.4550000100143,-0.05556970075274008 +198092,990.4600000100144,-0.055569666291330776 +198093,990.4650000100145,-0.05556963183112751 +198094,990.4700000100146,-0.05556959737212931 +198095,990.4750000100147,-0.055569562914335194 +198096,990.4800000100148,-0.05556952845774418 +198097,990.4850000100149,-0.0555694940023553 +198098,990.490000010015,-0.05556945954816756 +198099,990.4950000100151,-0.05556942509517998 +198100,990.5000000100152,-0.055569390643391586 +198101,990.5050000100154,-0.05556935619280139 +198102,990.5100000100155,-0.05556932174340842 +198103,990.5150000100156,-0.05556928729521171 +198104,990.5200000100157,-0.05556925284821026 +198105,990.5250000100158,-0.055569218402403094 +198106,990.5300000100159,-0.05556918395778924 +198107,990.535000010016,-0.05556914951436771 +198108,990.5400000100161,-0.055569115072137534 +198109,990.5450000100162,-0.05556908063109775 +198110,990.5500000100163,-0.055569046191247355 +198111,990.5550000100164,-0.055569011752585384 +198112,990.5600000100166,-0.05556897731511086 +198113,990.5650000100167,-0.055568942878822795 +198114,990.5700000100168,-0.055568908443720234 +198115,990.5750000100169,-0.05556887400980219 +198116,990.580000010017,-0.05556883957706768 +198117,990.5850000100171,-0.05556880514551574 +198118,990.5900000100172,-0.05556877071514539 +198119,990.5950000100173,-0.055568736285955656 +198120,990.6000000100174,-0.05556870185794556 +198121,990.6050000100175,-0.055568667431114126 +198122,990.6100000100176,-0.05556863300546039 +198123,990.6150000100178,-0.05556859858098336 +198124,990.6200000100179,-0.05556856415768209 +198125,990.625000010018,-0.05556852973555559 +198126,990.6300000100181,-0.055568495314602874 +198127,990.6350000100182,-0.05556846089482298 +198128,990.6400000100183,-0.05556842647621494 +198129,990.6450000100184,-0.055568392058777775 +198130,990.6500000100185,-0.05556835764251052 +198131,990.6550000100186,-0.055568323227412196 +198132,990.6600000100187,-0.05556828881348183 +198133,990.6650000100188,-0.05556825440071846 +198134,990.670000010019,-0.055568219989121106 +198135,990.6750000100191,-0.0555681855786888 +198136,990.6800000100192,-0.05556815116942058 +198137,990.6850000100193,-0.055568116761315456 +198138,990.6900000100194,-0.05556808235437247 +198139,990.6950000100195,-0.055568047948590646 +198140,990.7000000100196,-0.055568013543969015 +198141,990.7050000100197,-0.05556797914050661 +198142,990.7100000100198,-0.05556794473820246 +198143,990.7150000100199,-0.0555679103370556 +198144,990.72000001002,-0.05556787593706505 +198145,990.7250000100202,-0.055567841538229856 +198146,990.7300000100203,-0.055567807140549035 +198147,990.7350000100204,-0.055567772744021623 +198148,990.7400000100205,-0.05556773834864667 +198149,990.7450000100206,-0.05556770395442318 +198150,990.7500000100207,-0.0555676695613502 +198151,990.7550000100208,-0.05556763516942677 +198152,990.7600000100209,-0.05556760077865191 +198153,990.765000010021,-0.05556756638902465 +198154,990.7700000100211,-0.05556753200054403 +198155,990.7750000100212,-0.0555674976132091 +198156,990.7800000100214,-0.05556746322701888 +198157,990.7850000100215,-0.05556742884197239 +198158,990.7900000100216,-0.05556739445806868 +198159,990.7950000100217,-0.055567360075306785 +198160,990.8000000100218,-0.055567325693685735 +198161,990.8050000100219,-0.055567291313204564 +198162,990.810000010022,-0.05556725693386231 +198163,990.8150000100221,-0.055567222555658005 +198164,990.8200000100222,-0.0555671881785907 +198165,990.8250000100223,-0.055567153802659405 +198166,990.8300000100224,-0.05556711942786318 +198167,990.8350000100226,-0.05556708505420105 +198168,990.8400000100227,-0.05556705068167206 +198169,990.8450000100228,-0.05556701631027524 +198170,990.8500000100229,-0.05556698194000963 +198171,990.855000010023,-0.05556694757087426 +198172,990.8600000100231,-0.05556691320286818 +198173,990.8650000100232,-0.05556687883599042 +198174,990.8700000100233,-0.05556684447024003 +198175,990.8750000100234,-0.05556681010561603 +198176,990.8800000100235,-0.05556677574211747 +198177,990.8850000100236,-0.05556674137974339 +198178,990.8900000100238,-0.055566707018492825 +198179,990.8950000100239,-0.05556667265836481 +198180,990.900000010024,-0.05556663829935839 +198181,990.9050000100241,-0.05556660394147261 +198182,990.9100000100242,-0.0555665695847065 +198183,990.9150000100243,-0.05556653522905911 +198184,990.9200000100244,-0.05556650087452948 +198185,990.9250000100245,-0.05556646652111664 +198186,990.9300000100246,-0.055566432168819645 +198187,990.9350000100247,-0.055566397817637524 +198188,990.9400000100248,-0.05556636346756933 +198189,990.945000010025,-0.055566329118614095 +198190,990.9500000100251,-0.055566294770770866 +198191,990.9550000100252,-0.05556626042403869 +198192,990.9600000100253,-0.0555662260784166 +198193,990.9650000100254,-0.055566191733903654 +198194,990.9700000100255,-0.055566157390498874 +198195,990.9750000100256,-0.05556612304820132 +198196,990.9800000100257,-0.055566088707010027 +198197,990.9850000100258,-0.055566054366924036 +198198,990.9900000100259,-0.0555660200279424 +198199,990.995000010026,-0.05556598569006417 +198200,991.0000000100262,-0.05556595135328837 +198201,991.0050000100263,-0.055565917017614055 +198202,991.0100000100264,-0.055565882683040274 +198203,991.0150000100265,-0.05556584834956607 +198204,991.0200000100266,-0.055565814017190476 +198205,991.0250000100267,-0.05556577968591256 +198206,991.0300000100268,-0.055565745355731354 +198207,991.0350000100269,-0.055565711026645905 +198208,991.040000010027,-0.05556567669865525 +198209,991.0450000100271,-0.055565642371758456 +198210,991.0500000100272,-0.05556560804595456 +198211,991.0550000100274,-0.055565573721242614 +198212,991.0600000100275,-0.05556553939762166 +198213,991.0650000100276,-0.055565505075090754 +198214,991.0700000100277,-0.05556547075364894 +198215,991.0750000100278,-0.055565436433295264 +198216,991.0800000100279,-0.05556540211402877 +198217,991.085000010028,-0.0555653677958485 +198218,991.0900000100281,-0.05556533347875352 +198219,991.0950000100282,-0.05556529916274287 +198220,991.1000000100283,-0.05556526484781561 +198221,991.1050000100284,-0.05556523053397078 +198222,991.1100000100286,-0.05556519622120743 +198223,991.1150000100287,-0.0555651619095246 +198224,991.1200000100288,-0.05556512759892136 +198225,991.1250000100289,-0.05556509328939676 +198226,991.130000010029,-0.05556505898094983 +198227,991.1350000100291,-0.05556502467357964 +198228,991.1400000100292,-0.05556499036728523 +198229,991.1450000100293,-0.055564956062065664 +198230,991.1500000100294,-0.05556492175791998 +198231,991.1550000100295,-0.05556488745484724 +198232,991.1600000100296,-0.0555648531528465 +198233,991.1650000100298,-0.055564818851916796 +198234,991.1700000100299,-0.05556478455205719 +198235,991.17500001003,-0.05556475025326674 +198236,991.1800000100301,-0.055564715955544484 +198237,991.1850000100302,-0.05556468165888948 +198238,991.1900000100303,-0.055564647363300794 +198239,991.1950000100304,-0.055564613068777476 +198240,991.2000000100305,-0.055564578775318584 +198241,991.2050000100306,-0.05556454448292315 +198242,991.2100000100307,-0.05556451019159025 +198243,991.2150000100308,-0.05556447590131893 +198244,991.220000010031,-0.05556444161210825 +198245,991.2250000100311,-0.05556440732395727 +198246,991.2300000100312,-0.05556437303686504 +198247,991.2350000100313,-0.055564338750830604 +198248,991.2400000100314,-0.05556430446585303 +198249,991.2450000100315,-0.055564270181931365 +198250,991.2500000100316,-0.05556423589906467 +198251,991.2550000100317,-0.055564201617252014 +198252,991.2600000100318,-0.05556416733649245 +198253,991.2650000100319,-0.05556413305678502 +198254,991.270000010032,-0.0555640987781288 +198255,991.2750000100322,-0.055564064500522835 +198256,991.2800000100323,-0.055564030223966186 +198257,991.2850000100324,-0.055563995948457914 +198258,991.2900000100325,-0.05556396167399707 +198259,991.2950000100326,-0.055563927400582726 +198260,991.3000000100327,-0.055563893128213936 +198261,991.3050000100328,-0.055563858856889754 +198262,991.3100000100329,-0.05556382458660923 +198263,991.315000010033,-0.05556379031737144 +198264,991.3200000100331,-0.05556375604917544 +198265,991.3250000100332,-0.055563721782020285 +198266,991.3300000100334,-0.05556368751590505 +198267,991.3350000100335,-0.05556365325082878 +198268,991.3400000100336,-0.05556361898679053 +198269,991.3450000100337,-0.055563584723789375 +198270,991.3500000100338,-0.05556355046182438 +198271,991.3550000100339,-0.0555635162008946 +198272,991.360000010034,-0.055563481940999096 +198273,991.3650000100341,-0.055563447682136925 +198274,991.3700000100342,-0.05556341342430716 +198275,991.3750000100343,-0.05556337916750886 +198276,991.3800000100345,-0.05556334491174107 +198277,991.3850000100346,-0.05556331065700287 +198278,991.3900000100347,-0.05556327640329333 +198279,991.3950000100348,-0.0555632421506115 +198280,991.4000000100349,-0.05556320789895645 +198281,991.405000010035,-0.05556317364832725 +198282,991.4100000100351,-0.055563139398722955 +198283,991.4150000100352,-0.055563105150142636 +198284,991.4200000100353,-0.05556307090258534 +198285,991.4250000100354,-0.05556303665605015 +198286,991.4300000100355,-0.05556300241053611 +198287,991.4350000100357,-0.05556296816604232 +198288,991.4400000100358,-0.05556293392256782 +198289,991.4450000100359,-0.05556289968011169 +198290,991.450000010036,-0.055562865438672976 +198291,991.4550000100361,-0.05556283119825075 +198292,991.4600000100362,-0.05556279695884409 +198293,991.4650000100363,-0.05556276272045206 +198294,991.4700000100364,-0.055562728483073726 +198295,991.4750000100365,-0.05556269424670815 +198296,991.4800000100366,-0.055562660011354396 +198297,991.4850000100367,-0.05556262577701155 +198298,991.4900000100369,-0.055562591543678666 +198299,991.495000010037,-0.05556255731135481 +198300,991.5000000100371,-0.05556252308003906 +198301,991.5050000100372,-0.055562488849730474 +198302,991.5100000100373,-0.05556245462042813 +198303,991.5150000100374,-0.055562420392131086 +198304,991.5200000100375,-0.05556238616483842 +198305,991.5250000100376,-0.0555623519385492 +198306,991.5300000100377,-0.05556231771326249 +198307,991.5350000100378,-0.05556228348897737 +198308,991.5400000100379,-0.05556224926569291 +198309,991.545000010038,-0.05556221504340817 +198310,991.5500000100382,-0.055562180822122234 +198311,991.5550000100383,-0.05556214660183416 +198312,991.5600000100384,-0.05556211238254302 +198313,991.5650000100385,-0.055562078164247894 +198314,991.5700000100386,-0.05556204394694785 +198315,991.5750000100387,-0.05556200973064196 +198316,991.5800000100388,-0.05556197551532929 +198317,991.5850000100389,-0.05556194130100893 +198318,991.590000010039,-0.05556190708767994 +198319,991.5950000100391,-0.055561872875341395 +198320,991.6000000100393,-0.05556183866399236 +198321,991.6050000100394,-0.05556180445363192 +198322,991.6100000100395,-0.05556177024425914 +198323,991.6150000100396,-0.0555617360358731 +198324,991.6200000100397,-0.055561701828472865 +198325,991.6250000100398,-0.05556166762205751 +198326,991.6300000100399,-0.05556163341662612 +198327,991.63500001004,-0.05556159921217777 +198328,991.6400000100401,-0.055561565008711525 +198329,991.6450000100402,-0.05556153080622647 +198330,991.6500000100403,-0.05556149660472167 +198331,991.6550000100405,-0.05556146240419621 +198332,991.6600000100406,-0.05556142820464916 +198333,991.6650000100407,-0.055561394006079595 +198334,991.6700000100408,-0.0555613598084866 +198335,991.6750000100409,-0.05556132561186924 +198336,991.680000010041,-0.055561291416226594 +198337,991.6850000100411,-0.05556125722155774 +198338,991.6900000100412,-0.05556122302786176 +198339,991.6950000100413,-0.05556118883513773 +198340,991.7000000100414,-0.05556115464338473 +198341,991.7050000100415,-0.05556112045260183 +198342,991.7100000100417,-0.05556108626278811 +198343,991.7150000100418,-0.055561052073942664 +198344,991.7200000100419,-0.055561017886064545 +198345,991.725000010042,-0.055560983699152855 +198346,991.7300000100421,-0.05556094951320667 +198347,991.7350000100422,-0.055560915328225054 +198348,991.7400000100423,-0.05556088114420709 +198349,991.7450000100424,-0.05556084696115187 +198350,991.7500000100425,-0.055560812779058465 +198351,991.7550000100426,-0.055560778597925964 +198352,991.7600000100427,-0.055560744417753424 +198353,991.7650000100429,-0.05556071023853996 +198354,991.770000010043,-0.05556067606028462 +198355,991.7750000100431,-0.055560641882986504 +198356,991.7800000100432,-0.05556060770664469 +198357,991.7850000100433,-0.055560573531258255 +198358,991.7900000100434,-0.0555605393568263 +198359,991.7950000100435,-0.05556050518334789 +198360,991.8000000100436,-0.0555604710108221 +198361,991.8050000100437,-0.05556043683924803 +198362,991.8100000100438,-0.05556040266862476 +198363,991.815000010044,-0.055560368498951365 +198364,991.820000010044,-0.05556033433022694 +198365,991.8250000100442,-0.055560300162450546 +198366,991.8300000100443,-0.05556026599562129 +198367,991.8350000100444,-0.05556023182973826 +198368,991.8400000100445,-0.05556019766480051 +198369,991.8450000100446,-0.05556016350080715 +198370,991.8500000100447,-0.05556012933775726 +198371,991.8550000100448,-0.05556009517564992 +198372,991.8600000100449,-0.05556006101448422 +198373,991.865000010045,-0.05556002685425924 +198374,991.8700000100451,-0.05555999269497406 +198375,991.8750000100453,-0.055559958536627777 +198376,991.8800000100454,-0.055559924379219486 +198377,991.8850000100455,-0.05555989022274825 +198378,991.8900000100456,-0.05555985606721318 +198379,991.8950000100457,-0.055559821912613334 +198380,991.9000000100458,-0.05555978775894782 +198381,991.9050000100459,-0.05555975360621572 +198382,991.910000010046,-0.05555971945441612 +198383,991.9150000100461,-0.05555968530354812 +198384,991.9200000100462,-0.0555596511536108 +198385,991.9250000100463,-0.05555961700460324 +198386,991.9300000100465,-0.05555958285652453 +198387,991.9350000100466,-0.055559548709373775 +198388,991.9400000100467,-0.055559514563150045 +198389,991.9450000100468,-0.05555948041785244 +198390,991.9500000100469,-0.05555944627348005 +198391,991.955000010047,-0.055559412130031946 +198392,991.9600000100471,-0.055559377987507236 +198393,991.9650000100472,-0.055559343845905 +198394,991.9700000100473,-0.05555930970522435 +198395,991.9750000100474,-0.05555927556546435 +198396,991.9800000100475,-0.0555592414266241 +198397,991.9850000100477,-0.05555920728870269 +198398,991.9900000100478,-0.055559173151699226 +198399,991.9950000100479,-0.05555913901561279 +198400,992.000000010048,-0.05555910488044246 +198401,992.0050000100481,-0.05555907074618734 +198402,992.0100000100482,-0.05555903661284653 +198403,992.0150000100483,-0.05555900248041911 +198404,992.0200000100484,-0.05555896834890418 +198405,992.0250000100485,-0.05555893421830082 +198406,992.0300000100486,-0.05555890008860813 +198407,992.0350000100487,-0.05555886595982521 +198408,992.0400000100489,-0.05555883183195116 +198409,992.045000010049,-0.05555879770498504 +198410,992.0500000100491,-0.05555876357892598 +198411,992.0550000100492,-0.055558729453773055 +198412,992.0600000100493,-0.055558695329525364 +198413,992.0650000100494,-0.05555866120618201 +198414,992.0700000100495,-0.05555862708374208 +198415,992.0750000100496,-0.055558592962204674 +198416,992.0800000100497,-0.05555855884156887 +198417,992.0850000100498,-0.05555852472183378 +198418,992.09000001005,-0.05555849060299851 +198419,992.0950000100501,-0.05555845648506212 +198420,992.1000000100502,-0.05555842236802374 +198421,992.1050000100503,-0.055558388251882466 +198422,992.1100000100504,-0.05555835413663738 +198423,992.1150000100505,-0.055558320022287576 +198424,992.1200000100506,-0.05555828590883216 +198425,992.1250000100507,-0.05555825179627024 +198426,992.1300000100508,-0.05555821768460089 +198427,992.1350000100509,-0.05555818357382323 +198428,992.140000010051,-0.05555814946393635 +198429,992.1450000100511,-0.05555811535493933 +198430,992.1500000100513,-0.055558081246831294 +198431,992.1550000100514,-0.055558047139611336 +198432,992.1600000100515,-0.05555801303327854 +198433,992.1650000100516,-0.05555797892783203 +198434,992.1700000100517,-0.05555794482327087 +198435,992.1750000100518,-0.05555791071959419 +198436,992.1800000100519,-0.05555787661680108 +198437,992.185000010052,-0.055557842514890654 +198438,992.1900000100521,-0.055557808413861993 +198439,992.1950000100522,-0.055557774313714205 +198440,992.2000000100523,-0.055557740214446386 +198441,992.2050000100525,-0.05555770611605765 +198442,992.2100000100526,-0.05555767201854708 +198443,992.2150000100527,-0.055557637921913795 +198444,992.2200000100528,-0.0555576038261569 +198445,992.2250000100529,-0.055557569731275465 +198446,992.230000010053,-0.05555753563726862 +198447,992.2350000100531,-0.05555750154413546 +198448,992.2400000100532,-0.0555574674518751 +198449,992.2450000100533,-0.05555743336048663 +198450,992.2500000100534,-0.05555739926996914 +198451,992.2550000100535,-0.055557365180321755 +198452,992.2600000100537,-0.05555733109154357 +198453,992.2650000100538,-0.055557297003633696 +198454,992.2700000100539,-0.05555726291659123 +198455,992.275000010054,-0.055557228830415285 +198456,992.2800000100541,-0.055557194745104954 +198457,992.2850000100542,-0.05555716066065935 +198458,992.2900000100543,-0.05555712657707757 +198459,992.2950000100544,-0.05555709249435873 +198460,992.3000000100545,-0.05555705841250192 +198461,992.3050000100546,-0.055557024331506256 +198462,992.3100000100548,-0.05555699025137085 +198463,992.3150000100549,-0.0555569561720948 +198464,992.320000010055,-0.05555692209367721 +198465,992.3250000100551,-0.055556888016117204 +198466,992.3300000100552,-0.055556853939413856 +198467,992.3350000100553,-0.05555681986356629 +198468,992.3400000100554,-0.05555678578857362 +198469,992.3450000100555,-0.05555675171443495 +198470,992.3500000100556,-0.05555671764114939 +198471,992.3550000100557,-0.05555668356871604 +198472,992.3600000100558,-0.05555664949713402 +198473,992.365000010056,-0.05555661542640243 +198474,992.3700000100561,-0.05555658135652038 +198475,992.3750000100562,-0.055556547287486976 +198476,992.3800000100563,-0.055556513219301336 +198477,992.3850000100564,-0.055556479151962566 +198478,992.3900000100565,-0.05555644508546976 +198479,992.3950000100566,-0.055556411019822054 +198480,992.4000000100567,-0.055556376955018534 +198481,992.4050000100568,-0.05555634289105832 +198482,992.4100000100569,-0.05555630882794053 +198483,992.415000010057,-0.05555627476566427 +198484,992.4200000100572,-0.05555624070422864 +198485,992.4250000100573,-0.05555620664363276 +198486,992.4300000100574,-0.055556172583875754 +198487,992.4350000100575,-0.05555613852495671 +198488,992.4400000100576,-0.055556104466874756 +198489,992.4450000100577,-0.055556070409629 +198490,992.4500000100578,-0.05555603635321856 +198491,992.4550000100579,-0.055556002297642536 +198492,992.460000010058,-0.05555596824290005 +198493,992.4650000100581,-0.05555593418899021 +198494,992.4700000100582,-0.05555590013591213 +198495,992.4750000100584,-0.055555866083664925 +198496,992.4800000100585,-0.05555583203224771 +198497,992.4850000100586,-0.0555557979816596 +198498,992.4900000100587,-0.05555576393189969 +198499,992.4950000100588,-0.05555572988296713 +198500,992.5000000100589,-0.055555695834861 +198501,992.505000010059,-0.05555566178758044 +198502,992.5100000100591,-0.05555562774112454 +198503,992.5150000100592,-0.05555559369549245 +198504,992.5200000100593,-0.055555559650683255 +198505,992.5250000100594,-0.055555525606696084 +198506,992.5300000100596,-0.05555549156353004 +198507,992.5350000100597,-0.055555457521184265 +198508,992.5400000100598,-0.05555542347965786 +198509,992.5450000100599,-0.05555538943894993 +198510,992.55000001006,-0.055555355399059606 +198511,992.5550000100601,-0.05555532135998601 +198512,992.5600000100602,-0.05555528732172824 +198513,992.5650000100603,-0.05555525328428544 +198514,992.5700000100604,-0.05555521924765671 +198515,992.5750000100605,-0.05555518521184116 +198516,992.5800000100606,-0.05555515117683792 +198517,992.5850000100608,-0.055555117142646125 +198518,992.5900000100609,-0.05555508310926487 +198519,992.595000010061,-0.05555504907669328 +198520,992.6000000100611,-0.055555015044930475 +198521,992.6050000100612,-0.05555498101397557 +198522,992.6100000100613,-0.05555494698382768 +198523,992.6150000100614,-0.05555491295448595 +198524,992.6200000100615,-0.055554878925949465 +198525,992.6250000100616,-0.05555484489821737 +198526,992.6300000100617,-0.05555481087128878 +198527,992.6350000100618,-0.05555477684516281 +198528,992.640000010062,-0.05555474281983858 +198529,992.6450000100621,-0.055554708795315225 +198530,992.6500000100622,-0.05555467477159185 +198531,992.6550000100623,-0.055554640748667596 +198532,992.6600000100624,-0.05555460672654156 +198533,992.6650000100625,-0.05555457270521289 +198534,992.6700000100626,-0.055554538684680695 +198535,992.6750000100627,-0.05555450466494409 +198536,992.6800000100628,-0.05555447064600222 +198537,992.6850000100629,-0.05555443662785418 +198538,992.690000010063,-0.05555440261049911 +198539,992.6950000100632,-0.055554368593936136 +198540,992.7000000100633,-0.055554334578164374 +198541,992.7050000100634,-0.05555430056318295 +198542,992.7100000100635,-0.05555426654899098 +198543,992.7150000100636,-0.055554232535587604 +198544,992.7200000100637,-0.05555419852297193 +198545,992.7250000100638,-0.0555541645111431 +198546,992.7300000100639,-0.05555413050010023 +198547,992.735000010064,-0.055554096489842435 +198548,992.7400000100641,-0.05555406248036886 +198549,992.7450000100642,-0.055554028471678604 +198550,992.7500000100644,-0.05555399446377082 +198551,992.7550000100645,-0.05555396045664463 +198552,992.7600000100646,-0.05555392645029915 +198553,992.7650000100647,-0.05555389244473351 +198554,992.7700000100648,-0.05555385843994684 +198555,992.7750000100649,-0.05555382443593825 +198556,992.780000010065,-0.055553790432706904 +198557,992.7850000100651,-0.05555375643025189 +198558,992.7900000100652,-0.05555372242857237 +198559,992.7950000100653,-0.055553688427667454 +198560,992.8000000100654,-0.05555365442753626 +198561,992.8050000100656,-0.055553620428177936 +198562,992.8100000100657,-0.055553586429591593 +198563,992.8150000100658,-0.05555355243177637 +198564,992.8200000100659,-0.0555535184347314 +198565,992.825000010066,-0.055553484438455814 +198566,992.8300000100661,-0.05555345044294872 +198567,992.8350000100662,-0.05555341644820926 +198568,992.8400000100663,-0.05555338245423657 +198569,992.8450000100664,-0.055553348461029786 +198570,992.8500000100665,-0.055553314468588015 +198571,992.8550000100666,-0.055553280476910404 +198572,992.8600000100668,-0.055553246485996084 +198573,992.8650000100669,-0.05555321249584418 +198574,992.870000010067,-0.05555317850645383 +198575,992.8750000100671,-0.055553144517824164 +198576,992.8800000100672,-0.05555311052995431 +198577,992.8850000100673,-0.0555530765428434 +198578,992.8900000100674,-0.055553042556490566 +198579,992.8950000100675,-0.05555300857089493 +198580,992.9000000100676,-0.05555297458605564 +198581,992.9050000100677,-0.05555294060197183 +198582,992.9100000100678,-0.05555290661864262 +198583,992.915000010068,-0.05555287263606717 +198584,992.9200000100681,-0.05555283865424458 +198585,992.9250000100682,-0.05555280467317399 +198586,992.9300000100683,-0.05555277069285455 +198587,992.9350000100684,-0.05555273671328539 +198588,992.9400000100685,-0.055552702734465643 +198589,992.9450000100686,-0.05555266875639444 +198590,992.9500000100687,-0.055552634779070915 +198591,992.9550000100688,-0.0555526008024942 +198592,992.9600000100689,-0.05555256682666344 +198593,992.965000010069,-0.05555253285157777 +198594,992.9700000100692,-0.05555249887723632 +198595,992.9750000100693,-0.05555246490363822 +198596,992.9800000100694,-0.055552430930782624 +198597,992.9850000100695,-0.055552396958668655 +198598,992.9900000100696,-0.05555236298729544 +198599,992.9950000100697,-0.05555232901666213 +198600,993.0000000100698,-0.05555229504676787 +198601,993.0050000100699,-0.05555226107761178 +198602,993.01000001007,-0.055552227109193 +198603,993.0150000100701,-0.055552193141510685 +198604,993.0200000100702,-0.05555215917456396 +198605,993.0250000100704,-0.055552125208351955 +198606,993.0300000100705,-0.055552091242873816 +198607,993.0350000100706,-0.05555205727812869 +198608,993.0400000100707,-0.055552023314115705 +198609,993.0450000100708,-0.05555198935083401 +198610,993.0500000100709,-0.055551955388282726 +198611,993.055000010071,-0.05555192142646101 +198612,993.0600000100711,-0.055551887465367995 +198613,993.0650000100712,-0.05555185350500282 +198614,993.0700000100713,-0.05555181954536464 +198615,993.0750000100714,-0.055551785586452566 +198616,993.0800000100716,-0.05555175162826576 +198617,993.0850000100717,-0.05555171767080336 +198618,993.0900000100718,-0.0555516837140645 +198619,993.0950000100719,-0.05555164975804833 +198620,993.100000010072,-0.05555161580275399 +198621,993.1050000100721,-0.055551581848180605 +198622,993.1100000100722,-0.05555154789432734 +198623,993.1150000100723,-0.05555151394119332 +198624,993.1200000100724,-0.0555514799887777 +198625,993.1250000100725,-0.055551446037079615 +198626,993.1300000100726,-0.05555141208609821 +198627,993.1350000100728,-0.055551378135832635 +198628,993.1400000100729,-0.05555134418628203 +198629,993.145000010073,-0.05555131023744552 +198630,993.1500000100731,-0.05555127628932228 +198631,993.1550000100732,-0.05555124234191144 +198632,993.1600000100733,-0.05555120839521213 +198633,993.1650000100734,-0.05555117444922351 +198634,993.1700000100735,-0.055551140503944725 +198635,993.1750000100736,-0.05555110655937492 +198636,993.1800000100737,-0.055551072615513224 +198637,993.1850000100738,-0.055551038672358784 +198638,993.190000010074,-0.05555100472991077 +198639,993.1950000100741,-0.05555097078816831 +198640,993.2000000100742,-0.05555093684713056 +198641,993.2050000100743,-0.05555090290679665 +198642,993.2100000100744,-0.05555086896716574 +198643,993.2150000100745,-0.055550835028236975 +198644,993.2200000100746,-0.05555080109000949 +198645,993.2250000100747,-0.05555076715248244 +198646,993.2300000100748,-0.05555073321565497 +198647,993.2350000100749,-0.055550699279526244 +198648,993.240000010075,-0.055550665344095376 +198649,993.2450000100752,-0.05555063140936154 +198650,993.2500000100753,-0.055550597475323885 +198651,993.2550000100754,-0.05555056354198155 +198652,993.2600000100755,-0.05555052960933368 +198653,993.2650000100756,-0.05555049567737943 +198654,993.2700000100757,-0.05555046174611796 +198655,993.2750000100758,-0.055550427815548406 +198656,993.2800000100759,-0.05555039388566991 +198657,993.285000010076,-0.05555035995648163 +198658,993.2900000100761,-0.055550326027982724 +198659,993.2950000100763,-0.05555029210017233 +198660,993.3000000100764,-0.0555502581730496 +198661,993.3050000100765,-0.0555502242466137 +198662,993.3100000100766,-0.05555019032086375 +198663,993.3150000100767,-0.055550156395798925 +198664,993.3200000100768,-0.05555012247141836 +198665,993.3250000100769,-0.055550088547721234 +198666,993.330000010077,-0.05555005462470668 +198667,993.3350000100771,-0.055550020702373845 +198668,993.3400000100772,-0.05554998678072188 +198669,993.3450000100773,-0.05554995285974995 +198670,993.3500000100775,-0.0555499189394572 +198671,993.3550000100776,-0.055549885019842794 +198672,993.3600000100777,-0.05554985110090587 +198673,993.3650000100778,-0.05554981718264559 +198674,993.3700000100779,-0.055549783265061096 +198675,993.375000010078,-0.05554974934815155 +198676,993.3800000100781,-0.0555497154319161 +198677,993.3850000100782,-0.055549681516353915 +198678,993.3900000100783,-0.05554964760146413 +198679,993.3950000100784,-0.05554961368724591 +198680,993.4000000100785,-0.05554957977369841 +198681,993.4050000100787,-0.05554954586082079 +198682,993.4100000100788,-0.05554951194861219 +198683,993.4150000100789,-0.05554947803707178 +198684,993.420000010079,-0.05554944412619871 +198685,993.4250000100791,-0.05554941021599213 +198686,993.4300000100792,-0.055549376306451195 +198687,993.4350000100793,-0.05554934239757508 +198688,993.4400000100794,-0.05554930848936292 +198689,993.4450000100795,-0.05554927458181388 +198690,993.4500000100796,-0.05554924067492712 +198691,993.4550000100797,-0.05554920676870179 +198692,993.4600000100799,-0.05554917286313706 +198693,993.46500001008,-0.05554913895823208 +198694,993.4700000100801,-0.055549105053986 +198695,993.4750000100802,-0.05554907115039798 +198696,993.4800000100803,-0.05554903724746718 +198697,993.4850000100804,-0.05554900334519278 +198698,993.4900000100805,-0.055548969443573896 +198699,993.4950000100806,-0.05554893554260973 +198700,993.5000000100807,-0.05554890164229941 +198701,993.5050000100808,-0.055548867742642116 +198702,993.510000010081,-0.055548833843636986 +198703,993.515000010081,-0.055548799945283195 +198704,993.5200000100812,-0.055548766047579905 +198705,993.5250000100813,-0.05554873215052626 +198706,993.5300000100814,-0.05554869825412145 +198707,993.5350000100815,-0.055548664358364606 +198708,993.5400000100816,-0.055548630463254894 +198709,993.5450000100817,-0.055548596568791485 +198710,993.5500000100818,-0.05554856267497354 +198711,993.5550000100819,-0.055548528781800215 +198712,993.560000010082,-0.055548494889270675 +198713,993.5650000100821,-0.05554846099738407 +198714,993.5700000100823,-0.055548427106139574 +198715,993.5750000100824,-0.055548393215536354 +198716,993.5800000100825,-0.05554835932557356 +198717,993.5850000100826,-0.055548325436250365 +198718,993.5900000100827,-0.05554829154756592 +198719,993.5950000100828,-0.05554825765951941 +198720,993.6000000100829,-0.05554822377210997 +198721,993.605000010083,-0.05554818988533677 +198722,993.6100000100831,-0.055548155999198996 +198723,993.6150000100832,-0.0555481221136958 +198724,993.6200000100833,-0.05554808822882633 +198725,993.6250000100835,-0.05554805434458977 +198726,993.6300000100836,-0.05554802046098529 +198727,993.6350000100837,-0.05554798657801203 +198728,993.6400000100838,-0.055547952695669166 +198729,993.6450000100839,-0.05554791881395588 +198730,993.650000010084,-0.055547884932871314 +198731,993.6550000100841,-0.055547851052414644 +198732,993.6600000100842,-0.05554781717258503 +198733,993.6650000100843,-0.05554778329338164 +198734,993.6700000100844,-0.05554774941480365 +198735,993.6750000100845,-0.05554771553685022 +198736,993.6800000100847,-0.05554768165952052 +198737,993.6850000100848,-0.055547647782813715 +198738,993.6900000100849,-0.05554761390672897 +198739,993.695000010085,-0.055547580031265455 +198740,993.7000000100851,-0.055547546156422344 +198741,993.7050000100852,-0.055547512282198785 +198742,993.7100000100853,-0.05554747840859396 +198743,993.7150000100854,-0.055547444535607046 +198744,993.7200000100855,-0.055547410663237186 +198745,993.7250000100856,-0.055547376791483576 +198746,993.7300000100857,-0.055547342920345376 +198747,993.7350000100859,-0.05554730904982175 +198748,993.740000010086,-0.05554727517991186 +198749,993.7450000100861,-0.055547241310614906 +198750,993.7500000100862,-0.05554720744193003 +198751,993.7550000100863,-0.0555471735738564 +198752,993.7600000100864,-0.055547139706393196 +198753,993.7650000100865,-0.0555471058395396 +198754,993.7700000100866,-0.05554707197329476 +198755,993.7750000100867,-0.05554703810765787 +198756,993.7800000100868,-0.055547004242628095 +198757,993.785000010087,-0.055546970378204594 +198758,993.790000010087,-0.055546936514386545 +198759,993.7950000100872,-0.05554690265117312 +198760,993.8000000100873,-0.055546868788563485 +198761,993.8050000100874,-0.05554683492655683 +198762,993.8100000100875,-0.05554680106515231 +198763,993.8150000100876,-0.05554676720434911 +198764,993.8200000100877,-0.05554673334414639 +198765,993.8250000100878,-0.05554669948454333 +198766,993.8300000100879,-0.05554666562553911 +198767,993.835000010088,-0.055546631767132884 +198768,993.8400000100881,-0.055546597909323835 +198769,993.8450000100883,-0.055546564052111155 +198770,993.8500000100884,-0.055546530195494 +198771,993.8550000100885,-0.05554649633947155 +198772,993.8600000100886,-0.05554646248404298 +198773,993.8650000100887,-0.05554642862920746 +198774,993.8700000100888,-0.055546394774964154 +198775,993.8750000100889,-0.05554636092131226 +198776,993.880000010089,-0.055546327068250946 +198777,993.8850000100891,-0.055546293215779384 +198778,993.8900000100892,-0.055546259363896754 +198779,993.8950000100893,-0.05554622551260222 +198780,993.9000000100895,-0.05554619166189498 +198781,993.9050000100896,-0.055546157811774195 +198782,993.9100000100897,-0.055546123962239055 +198783,993.9150000100898,-0.05554609011328871 +198784,993.9200000100899,-0.05554605626492237 +198785,993.92500001009,-0.055546022417139185 +198786,993.9300000100901,-0.055545988569938344 +198787,993.9350000100902,-0.05554595472331903 +198788,993.9400000100903,-0.05554592087728041 +198789,993.9450000100904,-0.05554588703182168 +198790,993.9500000100905,-0.055545853186941996 +198791,993.9550000100907,-0.05554581934264056 +198792,993.9600000100908,-0.05554578549891653 +198793,993.9650000100909,-0.055545751655769096 +198794,993.970000010091,-0.05554571781319744 +198795,993.9750000100911,-0.05554568397120073 +198796,993.9800000100912,-0.055545650129778155 +198797,993.9850000100913,-0.0555456162889289 +198798,993.9900000100914,-0.055545582448652125 +198799,993.9950000100915,-0.05554554860894703 +198800,994.0000000100916,-0.05554551476981279 +198801,994.0050000100917,-0.05554548093124858 +198802,994.0100000100919,-0.05554544709325359 +198803,994.015000010092,-0.055545413255826986 +198804,994.0200000100921,-0.05554537941896797 +198805,994.0250000100922,-0.05554534558267571 +198806,994.0300000100923,-0.0555453117469494 +198807,994.0350000100924,-0.055545277911788205 +198808,994.0400000100925,-0.055545244077191316 +198809,994.0450000100926,-0.055545210243157915 +198810,994.0500000100927,-0.05554517640968719 +198811,994.0550000100928,-0.05554514257677832 +198812,994.060000010093,-0.05554510874443048 +198813,994.0650000100931,-0.055545074912642864 +198814,994.0700000100932,-0.055545041081414656 +198815,994.0750000100933,-0.05554500725074503 +198816,994.0800000100934,-0.055544973420633185 +198817,994.0850000100935,-0.05554493959107829 +198818,994.0900000100936,-0.05554490576207954 +198819,994.0950000100937,-0.055544871933636115 +198820,994.1000000100938,-0.0555448381057472 +198821,994.1050000100939,-0.05554480427841199 +198822,994.110000010094,-0.055544770451629644 +198823,994.1150000100941,-0.05554473662539937 +198824,994.1200000100943,-0.05554470279972034 +198825,994.1250000100944,-0.05554466897459176 +198826,994.1300000100945,-0.055544635150012796 +198827,994.1350000100946,-0.05554460132598264 +198828,994.1400000100947,-0.05554456750250049 +198829,994.1450000100948,-0.05554453367956552 +198830,994.1500000100949,-0.05554449985717692 +198831,994.155000010095,-0.05554446603533388 +198832,994.1600000100951,-0.0555444322140356 +198833,994.1650000100952,-0.05554439839328123 +198834,994.1700000100954,-0.055544364573069986 +198835,994.1750000100955,-0.05554433075340106 +198836,994.1800000100956,-0.05554429693427362 +198837,994.1850000100957,-0.05554426311568687 +198838,994.1900000100958,-0.05554422929764 +198839,994.1950000100959,-0.05554419548013219 +198840,994.200000010096,-0.05554416166316263 +198841,994.2050000100961,-0.055544127846730504 +198842,994.2100000100962,-0.05554409403083501 +198843,994.2150000100963,-0.05554406021547536 +198844,994.2200000100964,-0.05554402640065071 +198845,994.2250000100966,-0.05554399258636026 +198846,994.2300000100967,-0.05554395877260321 +198847,994.2350000100968,-0.05554392495937873 +198848,994.2400000100969,-0.05554389114668602 +198849,994.245000010097,-0.05554385733452428 +198850,994.2500000100971,-0.055543823522892694 +198851,994.2550000100972,-0.055543789711790456 +198852,994.2600000100973,-0.055543755901216754 +198853,994.2650000100974,-0.055543722091170776 +198854,994.2700000100975,-0.055543688281651724 +198855,994.2750000100976,-0.055543654472658785 +198856,994.2800000100978,-0.055543620664191155 +198857,994.2850000100979,-0.05554358685624803 +198858,994.290000010098,-0.05554355304882859 +198859,994.2950000100981,-0.05554351924193203 +198860,994.3000000100982,-0.05554348543555756 +198861,994.3050000100983,-0.055543451629704366 +198862,994.3100000100984,-0.05554341782437163 +198863,994.3150000100985,-0.05554338401955856 +198864,994.3200000100986,-0.05554335021526434 +198865,994.3250000100987,-0.05554331641148818 +198866,994.3300000100988,-0.05554328260822925 +198867,994.335000010099,-0.05554324880548676 +198868,994.3400000100991,-0.055543215003259906 +198869,994.3450000100992,-0.05554318120154788 +198870,994.3500000100993,-0.05554314740034988 +198871,994.3550000100994,-0.05554311359966511 +198872,994.3600000100995,-0.055543079799492745 +198873,994.3650000100996,-0.05554304599983199 +198874,994.3700000100997,-0.05554301220068204 +198875,994.3750000100998,-0.055542978402042094 +198876,994.3800000100999,-0.055542944603911355 +198877,994.3850000101,-0.055542910806289016 +198878,994.3900000101002,-0.05554287700917426 +198879,994.3950000101003,-0.05554284321256631 +198880,994.4000000101004,-0.055542809416464355 +198881,994.4050000101005,-0.055542775620867575 +198882,994.4100000101006,-0.055542741825775184 +198883,994.4150000101007,-0.05554270803118638 +198884,994.4200000101008,-0.05554267423710036 +198885,994.4250000101009,-0.05554264044351632 +198886,994.430000010101,-0.05554260665043346 +198887,994.4350000101011,-0.05554257285785097 +198888,994.4400000101012,-0.055542539065768066 +198889,994.4450000101014,-0.05554250527418394 +198890,994.4500000101015,-0.05554247148309779 +198891,994.4550000101016,-0.055542437692508814 +198892,994.4600000101017,-0.055542403902416215 +198893,994.4650000101018,-0.0555423701128192 +198894,994.4700000101019,-0.055542336323716954 +198895,994.475000010102,-0.05554230253510869 +198896,994.4800000101021,-0.05554226874699361 +198897,994.4850000101022,-0.05554223495937092 +198898,994.4900000101023,-0.0555422011722398 +198899,994.4950000101024,-0.05554216738559946 +198900,994.5000000101026,-0.0555421335994491 +198901,994.5050000101027,-0.055542099813787944 +198902,994.5100000101028,-0.05554206602861517 +198903,994.5150000101029,-0.055542032243929985 +198904,994.520000010103,-0.05554199845973159 +198905,994.5250000101031,-0.05554196467601919 +198906,994.5300000101032,-0.055541930892791996 +198907,994.5350000101033,-0.055541897110049206 +198908,994.5400000101034,-0.05554186332779003 +198909,994.5450000101035,-0.05554182954601366 +198910,994.5500000101036,-0.055541795764719314 +198911,994.5550000101038,-0.055541761983906174 +198912,994.5600000101039,-0.055541728203573455 +198913,994.565000010104,-0.055541694423720374 +198914,994.5700000101041,-0.05554166064434611 +198915,994.5750000101042,-0.05554162686544989 +198916,994.5800000101043,-0.055541593087030904 +198917,994.5850000101044,-0.05554155930908837 +198918,994.5900000101045,-0.05554152553162149 +198919,994.5950000101046,-0.055541491754629475 +198920,994.6000000101047,-0.055541457978111525 +198921,994.6050000101048,-0.055541424202066834 +198922,994.610000010105,-0.055541390426494634 +198923,994.6150000101051,-0.05554135665139411 +198924,994.6200000101052,-0.05554132287676447 +198925,994.6250000101053,-0.05554128910260494 +198926,994.6300000101054,-0.055541255328914706 +198927,994.6350000101055,-0.05554122155569297 +198928,994.6400000101056,-0.05554118778293896 +198929,994.6450000101057,-0.055541154010651884 +198930,994.6500000101058,-0.05554112023883094 +198931,994.6550000101059,-0.05554108646747534 +198932,994.660000010106,-0.05554105269658429 +198933,994.6650000101062,-0.055541018926156996 +198934,994.6700000101063,-0.05554098515619268 +198935,994.6750000101064,-0.05554095138669054 +198936,994.6800000101065,-0.05554091761764978 +198937,994.6850000101066,-0.05554088384906963 +198938,994.6900000101067,-0.055540850080949285 +198939,994.6950000101068,-0.05554081631328795 +198940,994.7000000101069,-0.05554078254608484 +198941,994.705000010107,-0.05554074877933917 +198942,994.7100000101071,-0.05554071501305015 +198943,994.7150000101072,-0.055540681247216984 +198944,994.7200000101074,-0.05554064748183889 +198945,994.7250000101075,-0.05554061371691508 +198946,994.7300000101076,-0.05554057995244475 +198947,994.7350000101077,-0.05554054618842712 +198948,994.7400000101078,-0.0555405124248614 +198949,994.7450000101079,-0.05554047866174682 +198950,994.750000010108,-0.055540444899082574 +198951,994.7550000101081,-0.05554041113686789 +198952,994.7600000101082,-0.05554037737510196 +198953,994.7650000101083,-0.055540343613784 +198954,994.7700000101084,-0.05554030985291324 +198955,994.7750000101086,-0.055540276092488884 +198956,994.7800000101087,-0.055540242332510134 +198957,994.7850000101088,-0.055540208572976216 +198958,994.7900000101089,-0.05554017481388634 +198959,994.795000010109,-0.05554014105523973 +198960,994.8000000101091,-0.05554010729703559 +198961,994.8050000101092,-0.05554007353927314 +198962,994.8100000101093,-0.05554003978195158 +198963,994.8150000101094,-0.05554000602507014 +198964,994.8200000101095,-0.055539972268628036 +198965,994.8250000101096,-0.055539938512624475 +198966,994.8300000101098,-0.05553990475705868 +198967,994.8350000101099,-0.05553987100192986 +198968,994.84000001011,-0.05553983724723722 +198969,994.8450000101101,-0.05553980349298 +198970,994.8500000101102,-0.05553976973915741 +198971,994.8550000101103,-0.05553973598576865 +198972,994.8600000101104,-0.055539702232812946 +198973,994.8650000101105,-0.055539668480289524 +198974,994.8700000101106,-0.0555396347281976 +198975,994.8750000101107,-0.05553960097653638 +198976,994.8800000101108,-0.05553956722530509 +198977,994.885000010111,-0.055539533474502946 +198978,994.8900000101111,-0.05553949972412916 +198979,994.8950000101112,-0.05553946597418296 +198980,994.9000000101113,-0.05553943222466356 +198981,994.9050000101114,-0.05553939847557017 +198982,994.9100000101115,-0.055539364726902025 +198983,994.9150000101116,-0.055539330978658326 +198984,994.9200000101117,-0.055539297230838315 +198985,994.9250000101118,-0.05553926348344119 +198986,994.9300000101119,-0.05553922973646618 +198987,994.935000010112,-0.05553919598991251 +198988,994.9400000101122,-0.05553916224377939 +198989,994.9450000101123,-0.05553912849806605 +198990,994.9500000101124,-0.0555390947527717 +198991,994.9550000101125,-0.05553906100789557 +198992,994.9600000101126,-0.05553902726343687 +198993,994.9650000101127,-0.05553899351939482 +198994,994.9700000101128,-0.05553895977576866 +198995,994.9750000101129,-0.0555389260325576 +198996,994.980000010113,-0.055538892289760854 +198997,994.9850000101131,-0.05553885854737766 +198998,994.9900000101132,-0.05553882480540722 +198999,994.9950000101134,-0.055538791063848764 +199000,995.0000000101135,-0.055538757322701526 +199001,995.0050000101136,-0.05553872358196472 +199002,995.0100000101137,-0.05553868984163757 +199003,995.0150000101138,-0.0555386561017193 +199004,995.0200000101139,-0.05553862236220913 +199005,995.025000010114,-0.05553858862310628 +199006,995.0300000101141,-0.055538554884409994 +199007,995.0350000101142,-0.055538521146119464 +199008,995.0400000101143,-0.05553848740823394 +199009,995.0450000101144,-0.05553845367075263 +199010,995.0500000101146,-0.055538419933674775 +199011,995.0550000101147,-0.055538386196999585 +199012,995.0600000101148,-0.05553835246072629 +199013,995.0650000101149,-0.055538318724854124 +199014,995.070000010115,-0.055538284989382306 +199015,995.0750000101151,-0.055538251254310056 +199016,995.0800000101152,-0.055538217519636605 +199017,995.0850000101153,-0.05553818378536117 +199018,995.0900000101154,-0.055538150051482986 +199019,995.0950000101155,-0.05553811631800129 +199020,995.1000000101157,-0.055538082584915285 +199021,995.1050000101158,-0.05553804885222421 +199022,995.1100000101159,-0.05553801511992729 +199023,995.115000010116,-0.05553798138802375 +199024,995.1200000101161,-0.05553794765651283 +199025,995.1250000101162,-0.05553791392539374 +199026,995.1300000101163,-0.05553788019466572 +199027,995.1350000101164,-0.05553784646432799 +199028,995.1400000101165,-0.055537812734379785 +199029,995.1450000101166,-0.05553777900482034 +199030,995.1500000101167,-0.05553774527564886 +199031,995.1550000101169,-0.0555377115468646 +199032,995.160000010117,-0.055537677818466774 +199033,995.1650000101171,-0.055537644090454606 +199034,995.1700000101172,-0.05553761036282734 +199035,995.1750000101173,-0.0555375766355842 +199036,995.1800000101174,-0.05553754290872442 +199037,995.1850000101175,-0.05553750918224722 +199038,995.1900000101176,-0.05553747545615184 +199039,995.1950000101177,-0.055537441730437495 +199040,995.2000000101178,-0.05553740800510343 +199041,995.2050000101179,-0.05553737428014887 +199042,995.210000010118,-0.05553734055557306 +199043,995.2150000101182,-0.055537306831375206 +199044,995.2200000101183,-0.055537273107554554 +199045,995.2250000101184,-0.055537239384110336 +199046,995.2300000101185,-0.05553720566104178 +199047,995.2350000101186,-0.055537171938348125 +199048,995.2400000101187,-0.0555371382160286 +199049,995.2450000101188,-0.05553710449408243 +199050,995.2500000101189,-0.055537070772508856 +199051,995.255000010119,-0.05553703705130711 +199052,995.2600000101191,-0.055537003330476425 +199053,995.2650000101193,-0.05553696961001603 +199054,995.2700000101194,-0.05553693588992518 +199055,995.2750000101195,-0.05553690217020308 +199056,995.2800000101196,-0.05553686845084897 +199057,995.2850000101197,-0.055536834731862085 +199058,995.2900000101198,-0.055536801013241675 +199059,995.2950000101199,-0.055536767294986945 +199060,995.30000001012,-0.05553673357709715 +199061,995.3050000101201,-0.05553669985957153 +199062,995.3100000101202,-0.055536666142409305 +199063,995.3150000101203,-0.055536632425609724 +199064,995.3200000101205,-0.05553659870917201 +199065,995.3250000101206,-0.055536564993095415 +199066,995.3300000101207,-0.055536531277379154 +199067,995.3350000101208,-0.055536497562022474 +199068,995.3400000101209,-0.05553646384702462 +199069,995.345000010121,-0.05553643013238481 +199070,995.3500000101211,-0.0555363964181023 +199071,995.3550000101212,-0.05553636270417631 +199072,995.3600000101213,-0.05553632899060609 +199073,995.3650000101214,-0.05553629527739087 +199074,995.3700000101215,-0.055536261564529885 +199075,995.3750000101217,-0.05553622785202238 +199076,995.3800000101218,-0.055536194139867594 +199077,995.3850000101219,-0.05553616042806475 +199078,995.390000010122,-0.0555361267166131 +199079,995.3950000101221,-0.05553609300551188 +199080,995.4000000101222,-0.05553605929476032 +199081,995.4050000101223,-0.055536025584357676 +199082,995.4100000101224,-0.05553599187430318 +199083,995.4150000101225,-0.05553595816459607 +199084,995.4200000101226,-0.055535924455235586 +199085,995.4250000101227,-0.05553589074622097 +199086,995.4300000101229,-0.055535857037551456 +199087,995.435000010123,-0.055535823329226276 +199088,995.4400000101231,-0.05553578962124469 +199089,995.4450000101232,-0.055535755913605926 +199090,995.4500000101233,-0.05553572220630923 +199091,995.4550000101234,-0.05553568849935386 +199092,995.4600000101235,-0.05553565479273901 +199093,995.4650000101236,-0.05553562108646396 +199094,995.4700000101237,-0.05553558738052795 +199095,995.4750000101238,-0.0555355536749302 +199096,995.480000010124,-0.05553551996966998 +199097,995.485000010124,-0.05553548626474651 +199098,995.4900000101242,-0.05553545256015904 +199099,995.4950000101243,-0.05553541885590683 +199100,995.5000000101244,-0.05553538515198909 +199101,995.5050000101245,-0.05553535144840508 +199102,995.5100000101246,-0.05553531774515405 +199103,995.5150000101247,-0.05553528404223522 +199104,995.5200000101248,-0.05553525033964786 +199105,995.5250000101249,-0.0555352166373912 +199106,995.530000010125,-0.05553518293546449 +199107,995.5350000101251,-0.05553514923386696 +199108,995.5400000101253,-0.05553511553259787 +199109,995.5450000101254,-0.05553508183165646 +199110,995.5500000101255,-0.05553504813104198 +199111,995.5550000101256,-0.05553501443075366 +199112,995.5600000101257,-0.055534980730790766 +199113,995.5650000101258,-0.055534947031152526 +199114,995.5700000101259,-0.05553491333183819 +199115,995.575000010126,-0.05553487963284699 +199116,995.5800000101261,-0.055534845934178206 +199117,995.5850000101262,-0.05553481223583106 +199118,995.5900000101263,-0.0555347785378048 +199119,995.5950000101265,-0.05553474484009868 +199120,995.6000000101266,-0.05553471114271194 +199121,995.6050000101267,-0.05553467744564384 +199122,995.6100000101268,-0.055534643748893615 +199123,995.6150000101269,-0.055534610052460506 +199124,995.620000010127,-0.055534576356343776 +199125,995.6250000101271,-0.05553454266054267 +199126,995.6300000101272,-0.05553450896505642 +199127,995.6350000101273,-0.05553447526988428 +199128,995.6400000101274,-0.055534441575025524 +199129,995.6450000101275,-0.05553440788047938 +199130,995.6500000101277,-0.055534374186245086 +199131,995.6550000101278,-0.05553434049232192 +199132,995.6600000101279,-0.0555343067987091 +199133,995.665000010128,-0.05553427310540589 +199134,995.6700000101281,-0.05553423941241154 +199135,995.6750000101282,-0.055534205719725296 +199136,995.6800000101283,-0.055534172027346417 +199137,995.6850000101284,-0.05553413833527414 +199138,995.6900000101285,-0.05553410464350772 +199139,995.6950000101286,-0.05553407095204642 +199140,995.7000000101287,-0.05553403726088948 +199141,995.7050000101289,-0.05553400357003615 +199142,995.710000010129,-0.05553396987948568 +199143,995.7150000101291,-0.055533936189237326 +199144,995.7200000101292,-0.055533902499290334 +199145,995.7250000101293,-0.05553386880964396 +199146,995.7300000101294,-0.05553383512029747 +199147,995.7350000101295,-0.055533801431250085 +199148,995.7400000101296,-0.05553376774250107 +199149,995.7450000101297,-0.05553373405404969 +199150,995.7500000101298,-0.05553370036589519 +199151,995.75500001013,-0.055533666678036823 +199152,995.76000001013,-0.05553363299047385 +199153,995.7650000101302,-0.055533599303205505 +199154,995.7700000101303,-0.05553356561623106 +199155,995.7750000101304,-0.055533531929549754 +199156,995.7800000101305,-0.05553349824316085 +199157,995.7850000101306,-0.055533464557063594 +199158,995.7900000101307,-0.055533430871257256 +199159,995.7950000101308,-0.05553339718574108 +199160,995.8000000101309,-0.05553336350051431 +199161,995.805000010131,-0.055533329815576224 +199162,995.8100000101311,-0.055533296130926064 +199163,995.8150000101313,-0.055533262446563085 +199164,995.8200000101314,-0.05553322876248654 +199165,995.8250000101315,-0.055533195078695696 +199166,995.8300000101316,-0.05553316139518981 +199167,995.8350000101317,-0.055533127711968125 +199168,995.8400000101318,-0.055533094029029895 +199169,995.8450000101319,-0.0555330603463744 +199170,995.850000010132,-0.055533026664000874 +199171,995.8550000101321,-0.05553299298190858 +199172,995.8600000101322,-0.05553295930009678 +199173,995.8650000101323,-0.05553292561856472 +199174,995.8700000101325,-0.055532891937311674 +199175,995.8750000101326,-0.055532858256336894 +199176,995.8800000101327,-0.05553282457563962 +199177,995.8850000101328,-0.05553279089521914 +199178,995.8900000101329,-0.05553275721507468 +199179,995.895000010133,-0.05553272353520553 +199180,995.9000000101331,-0.05553268985561094 +199181,995.9050000101332,-0.05553265617629016 +199182,995.9100000101333,-0.055532622497242445 +199183,995.9150000101334,-0.055532588818467066 +199184,995.9200000101335,-0.05553255513996328 +199185,995.9250000101337,-0.05553252146173034 +199186,995.9300000101338,-0.05553248778376751 +199187,995.9350000101339,-0.055532454106074054 +199188,995.940000010134,-0.05553242042864923 +199189,995.9450000101341,-0.055532386751492295 +199190,995.9500000101342,-0.05553235307460251 +199191,995.9550000101343,-0.05553231939797915 +199192,995.9600000101344,-0.055532285721621465 +199193,995.9650000101345,-0.05553225204552871 +199194,995.9700000101346,-0.05553221836970015 +199195,995.9750000101347,-0.05553218469413505 +199196,995.9800000101349,-0.05553215101883268 +199197,995.985000010135,-0.05553211734379228 +199198,995.9900000101351,-0.05553208366901313 +199199,995.9950000101352,-0.05553204999449449 +199200,996.0000000101353,-0.05553201632023561 +199201,996.0050000101354,-0.055531982646235774 +199202,996.0100000101355,-0.055531948972494236 +199203,996.0150000101356,-0.055531915299010255 +199204,996.0200000101357,-0.05553188162578309 +199205,996.0250000101358,-0.05553184795281202 +199206,996.030000010136,-0.0555318142800963 +199207,996.0350000101361,-0.05553178060763519 +199208,996.0400000101362,-0.055531746935427964 +199209,996.0450000101363,-0.05553171326347388 +199210,996.0500000101364,-0.05553167959177219 +199211,996.0550000101365,-0.05553164592032218 +199212,996.0600000101366,-0.05553161224912311 +199213,996.0650000101367,-0.05553157857817425 +199214,996.0700000101368,-0.055531544907474854 +199215,996.0750000101369,-0.05553151123702419 +199216,996.080000010137,-0.05553147756682152 +199217,996.0850000101372,-0.05553144389686612 +199218,996.0900000101373,-0.055531410227157255 +199219,996.0950000101374,-0.05553137655769419 +199220,996.1000000101375,-0.05553134288847619 +199221,996.1050000101376,-0.05553130921950252 +199222,996.1100000101377,-0.05553127555077245 +199223,996.1150000101378,-0.05553124188228525 +199224,996.1200000101379,-0.055531208214040166 +199225,996.125000010138,-0.055531174546036496 +199226,996.1300000101381,-0.05553114087827349 +199227,996.1350000101382,-0.05553110721075042 +199228,996.1400000101384,-0.055531073543466564 +199229,996.1450000101385,-0.055531039876421176 +199230,996.1500000101386,-0.05553100620961352 +199231,996.1550000101387,-0.05553097254304288 +199232,996.1600000101388,-0.05553093887670852 +199233,996.1650000101389,-0.0555309052106097 +199234,996.170000010139,-0.05553087154474571 +199235,996.1750000101391,-0.055530837879115794 +199236,996.1800000101392,-0.05553080421371924 +199237,996.1850000101393,-0.05553077054855531 +199238,996.1900000101394,-0.055530736883623276 +199239,996.1950000101396,-0.055530703218922416 +199240,996.2000000101397,-0.05553066955445199 +199241,996.2050000101398,-0.055530635890211275 +199242,996.2100000101399,-0.05553060222619954 +199243,996.21500001014,-0.055530568562416054 +199244,996.2200000101401,-0.05553053489886008 +199245,996.2250000101402,-0.055530501235530924 +199246,996.2300000101403,-0.055530467572427814 +199247,996.2350000101404,-0.055530433909550043 +199248,996.2400000101405,-0.05553040024689689 +199249,996.2450000101406,-0.05553036658446762 +199250,996.2500000101408,-0.0555303329222615 +199251,996.2550000101409,-0.055530299260277804 +199252,996.260000010141,-0.055530265598515795 +199253,996.2650000101411,-0.055530231936974775 +199254,996.2700000101412,-0.05553019827565399 +199255,996.2750000101413,-0.05553016461455272 +199256,996.2800000101414,-0.05553013095367024 +199257,996.2850000101415,-0.05553009729300584 +199258,996.2900000101416,-0.05553006363255877 +199259,996.2950000101417,-0.05553002997232831 +199260,996.3000000101418,-0.05552999631231374 +199261,996.305000010142,-0.05552996265251434 +199262,996.3100000101421,-0.055529928992929384 +199263,996.3150000101422,-0.05552989533355813 +199264,996.3200000101423,-0.05552986167439987 +199265,996.3250000101424,-0.05552982801545388 +199266,996.3300000101425,-0.055529794356719425 +199267,996.3350000101426,-0.055529760698195776 +199268,996.3400000101427,-0.05552972703988222 +199269,996.3450000101428,-0.05552969338177803 +199270,996.3500000101429,-0.05552965972388249 +199271,996.355000010143,-0.05552962606619487 +199272,996.3600000101432,-0.05552959240871444 +199273,996.3650000101433,-0.05552955875144048 +199274,996.3700000101434,-0.05552952509437228 +199275,996.3750000101435,-0.05552949143750909 +199276,996.3800000101436,-0.05552945778085022 +199277,996.3850000101437,-0.05552942412439494 +199278,996.3900000101438,-0.05552939046814251 +199279,996.3950000101439,-0.05552935681209222 +199280,996.400000010144,-0.05552932315624335 +199281,996.4050000101441,-0.055529289500595186 +199282,996.4100000101442,-0.05552925584514698 +199283,996.4150000101444,-0.05552922218989804 +199284,996.4200000101445,-0.05552918853484762 +199285,996.4250000101446,-0.05552915487999502 +199286,996.4300000101447,-0.05552912122533951 +199287,996.4350000101448,-0.05552908757088037 +199288,996.4400000101449,-0.055529053916616875 +199289,996.445000010145,-0.055529020262548315 +199290,996.4500000101451,-0.05552898660867396 +199291,996.4550000101452,-0.055528952954993105 +199292,996.4600000101453,-0.05552891930150501 +199293,996.4650000101454,-0.05552888564820899 +199294,996.4700000101456,-0.05552885199510429 +199295,996.4750000101457,-0.05552881834219021 +199296,996.4800000101458,-0.055528784689466024 +199297,996.4850000101459,-0.055528751036931015 +199298,996.490000010146,-0.05552871738458445 +199299,996.4950000101461,-0.05552868373242565 +199300,996.5000000101462,-0.05552865008045386 +199301,996.5050000101463,-0.055528616428668374 +199302,996.5100000101464,-0.05552858277706848 +199303,996.5150000101465,-0.055528549125653456 +199304,996.5200000101466,-0.05552851547442259 +199305,996.5250000101468,-0.05552848182337516 +199306,996.5300000101469,-0.05552844817251045 +199307,996.535000010147,-0.055528414521827746 +199308,996.5400000101471,-0.05552838087132632 +199309,996.5450000101472,-0.05552834722100548 +199310,996.5500000101473,-0.05552831357086448 +199311,996.5550000101474,-0.05552827992090263 +199312,996.5600000101475,-0.0555282462711192 +199313,996.5650000101476,-0.05552821262151347 +199314,996.5700000101477,-0.055528178972084744 +199315,996.5750000101478,-0.055528145322832304 +199316,996.580000010148,-0.05552811167375542 +199317,996.5850000101481,-0.055528078024853385 +199318,996.5900000101482,-0.05552804437612548 +199319,996.5950000101483,-0.055528010727571 +199320,996.6000000101484,-0.05552797707918923 +199321,996.6050000101485,-0.05552794343097945 +199322,996.6100000101486,-0.05552790978294094 +199323,996.6150000101487,-0.055527876135073005 +199324,996.6200000101488,-0.05552784248737491 +199325,996.6250000101489,-0.05552780883984596 +199326,996.630000010149,-0.05552777519248544 +199327,996.6350000101492,-0.05552774154529263 +199328,996.6400000101493,-0.055527707898266825 +199329,996.6450000101494,-0.05552767425140732 +199330,996.6500000101495,-0.05552764060471339 +199331,996.6550000101496,-0.05552760695818431 +199332,996.6600000101497,-0.05552757331181939 +199333,996.6650000101498,-0.05552753966561792 +199334,996.6700000101499,-0.055527506019579176 +199335,996.67500001015,-0.05552747237370245 +199336,996.6800000101501,-0.05552743872798704 +199337,996.6850000101502,-0.05552740508243221 +199338,996.6900000101504,-0.05552737143703727 +199339,996.6950000101505,-0.055527337791801516 +199340,996.7000000101506,-0.05552730414672422 +199341,996.7050000101507,-0.05552727050180469 +199342,996.7100000101508,-0.055527236857042216 +199343,996.7150000101509,-0.055527203212436066 +199344,996.720000010151,-0.05552716956798554 +199345,996.7250000101511,-0.05552713592368994 +199346,996.7300000101512,-0.055527102279548546 +199347,996.7350000101513,-0.05552706863556065 +199348,996.7400000101514,-0.05552703499172556 +199349,996.7450000101516,-0.05552700134804253 +199350,996.7500000101517,-0.0555269677045109 +199351,996.7550000101518,-0.05552693406112992 +199352,996.7600000101519,-0.0555269004178989 +199353,996.765000010152,-0.055526866774817135 +199354,996.7700000101521,-0.05552683313188392 +199355,996.7750000101522,-0.055526799489098534 +199356,996.7800000101523,-0.05552676584646028 +199357,996.7850000101524,-0.05552673220396845 +199358,996.7900000101525,-0.05552669856162234 +199359,996.7950000101526,-0.05552666491942124 +199360,996.8000000101528,-0.05552663127736443 +199361,996.8050000101529,-0.05552659763545122 +199362,996.810000010153,-0.05552656399368091 +199363,996.8150000101531,-0.05552653035205279 +199364,996.8200000101532,-0.055526496710566135 +199365,996.8250000101533,-0.05552646306922026 +199366,996.8300000101534,-0.05552642942801445 +199367,996.8350000101535,-0.05552639578694801 +199368,996.8400000101536,-0.05552636214602023 +199369,996.8450000101537,-0.05552632850523041 +199370,996.8500000101538,-0.05552629486457784 +199371,996.855000010154,-0.0555262612240618 +199372,996.8600000101541,-0.05552622758368161 +199373,996.8650000101542,-0.05552619394343655 +199374,996.8700000101543,-0.05552616030332594 +199375,996.8750000101544,-0.055526126663349044 +199376,996.8800000101545,-0.05552609302350518 +199377,996.8850000101546,-0.05552605938379364 +199378,996.8900000101547,-0.055526025744213725 +199379,996.8950000101548,-0.05552599210476473 +199380,996.9000000101549,-0.05552595846544594 +199381,996.905000010155,-0.05552592482625667 +199382,996.9100000101552,-0.05552589118719621 +199383,996.9150000101553,-0.055525857548263856 +199384,996.9200000101554,-0.05552582390945892 +199385,996.9250000101555,-0.05552579027078069 +199386,996.9300000101556,-0.05552575663222845 +199387,996.9350000101557,-0.05552572299380153 +199388,996.9400000101558,-0.055525689355499196 +199389,996.9450000101559,-0.05552565571732077 +199390,996.950000010156,-0.05552562207926555 +199391,996.9550000101561,-0.05552558844133282 +199392,996.9600000101563,-0.055525554803521886 +199393,996.9650000101564,-0.055525521165832065 +199394,996.9700000101565,-0.05552548752826263 +199395,996.9750000101566,-0.0555254538908129 +199396,996.9800000101567,-0.05552542025348217 +199397,996.9850000101568,-0.05552538661626975 +199398,996.9900000101569,-0.055525352979174915 +199399,996.995000010157,-0.055525319342196996 +199400,997.0000000101571,-0.05552528570533528 +199401,997.0050000101572,-0.05552525206858907 +199402,997.0100000101573,-0.05552521843195767 +199403,997.0150000101575,-0.05552518479544037 +199404,997.0200000101576,-0.05552515115903649 +199405,997.0250000101577,-0.055525117522745304 +199406,997.0300000101578,-0.05552508388656615 +199407,997.0350000101579,-0.05552505025049831 +199408,997.040000010158,-0.05552501661454109 +199409,997.0450000101581,-0.0555249829786938 +199410,997.0500000101582,-0.05552494934295574 +199411,997.0550000101583,-0.055524915707326206 +199412,997.0600000101584,-0.0555248820718045 +199413,997.0650000101585,-0.05552484843638993 +199414,997.0700000101587,-0.055524814801081804 +199415,997.0750000101588,-0.05552478116587942 +199416,997.0800000101589,-0.05552474753078209 +199417,997.085000010159,-0.05552471389578912 +199418,997.0900000101591,-0.0555246802608998 +199419,997.0950000101592,-0.055524646626113436 +199420,997.1000000101593,-0.05552461299142935 +199421,997.1050000101594,-0.05552457935684684 +199422,997.1100000101595,-0.055524545722365204 +199423,997.1150000101596,-0.05552451208798375 +199424,997.1200000101597,-0.055524478453701794 +199425,997.1250000101599,-0.05552444481951862 +199426,997.13000001016,-0.05552441118543355 +199427,997.1350000101601,-0.055524377551445896 +199428,997.1400000101602,-0.05552434391755496 +199429,997.1450000101603,-0.055524310283760044 +199430,997.1500000101604,-0.05552427665006046 +199431,997.1550000101605,-0.055524243016455505 +199432,997.1600000101606,-0.055524209382944494 +199433,997.1650000101607,-0.05552417574952672 +199434,997.1700000101608,-0.05552414211620152 +199435,997.1750000101609,-0.055524108482968175 +199436,997.180000010161,-0.05552407484982601 +199437,997.1850000101612,-0.055524041216774324 +199438,997.1900000101613,-0.05552400758381242 +199439,997.1950000101614,-0.05552397395093962 +199440,997.2000000101615,-0.055523940318155225 +199441,997.2050000101616,-0.055523906685458556 +199442,997.2100000101617,-0.055523873052848914 +199443,997.2150000101618,-0.0555238394203256 +199444,997.2200000101619,-0.055523805787887924 +199445,997.225000010162,-0.055523772155535216 +199446,997.2300000101621,-0.05552373852326676 +199447,997.2350000101623,-0.055523704891081875 +199448,997.2400000101624,-0.05552367125897989 +199449,997.2450000101625,-0.05552363762696008 +199450,997.2500000101626,-0.055523603995021785 +199451,997.2550000101627,-0.05552357036316431 +199452,997.2600000101628,-0.055523536731386956 +199453,997.2650000101629,-0.05552350309968904 +199454,997.270000010163,-0.05552346946806988 +199455,997.2750000101631,-0.05552343583652878 +199456,997.2800000101632,-0.05552340220506504 +199457,997.2850000101633,-0.055523368573677984 +199458,997.2900000101635,-0.05552333494236693 +199459,997.2950000101636,-0.055523301311131194 +199460,997.3000000101637,-0.05552326767997006 +199461,997.3050000101638,-0.05552323404888287 +199462,997.3100000101639,-0.055523200417868936 +199463,997.315000010164,-0.05552316678692755 +199464,997.3200000101641,-0.05552313315605804 +199465,997.3250000101642,-0.05552309952525971 +199466,997.3300000101643,-0.05552306589453188 +199467,997.3350000101644,-0.055523032263873874 +199468,997.3400000101645,-0.055522998633285 +199469,997.3450000101647,-0.05552296500276457 +199470,997.3500000101648,-0.05552293137231189 +199471,997.3550000101649,-0.05552289774192627 +199472,997.360000010165,-0.05552286411160705 +199473,997.3650000101651,-0.05552283048135352 +199474,997.3700000101652,-0.05552279685116501 +199475,997.3750000101653,-0.055522763221040834 +199476,997.3800000101654,-0.05552272959098029 +199477,997.3850000101655,-0.055522695960982714 +199478,997.3900000101656,-0.05552266233104741 +199479,997.3950000101657,-0.055522628701173714 +199480,997.4000000101659,-0.055522595071360925 +199481,997.405000010166,-0.05552256144160836 +199482,997.4100000101661,-0.05552252781191534 +199483,997.4150000101662,-0.05552249418228118 +199484,997.4200000101663,-0.05552246055270518 +199485,997.4250000101664,-0.05552242692318669 +199486,997.4300000101665,-0.055522393293725006 +199487,997.4350000101666,-0.055522359664319454 +199488,997.4400000101667,-0.05552232603496934 +199489,997.4450000101668,-0.055522292405673995 +199490,997.450000010167,-0.055522258776432735 +199491,997.455000010167,-0.05552222514724487 +199492,997.4600000101672,-0.05552219151810972 +199493,997.4650000101673,-0.05552215788902662 +199494,997.4700000101674,-0.05552212425999487 +199495,997.4750000101675,-0.0555220906310138 +199496,997.4800000101676,-0.05552205700208272 +199497,997.4850000101677,-0.05552202337320095 +199498,997.4900000101678,-0.05552198974436782 +199499,997.4950000101679,-0.055521956115582624 +199500,997.500000010168,-0.05552192248684472 +199501,997.5050000101681,-0.0555218888581534 +199502,997.5100000101683,-0.05552185522950799 +199503,997.5150000101684,-0.05552182160090783 +199504,997.5200000101685,-0.055521787972352216 +199505,997.5250000101686,-0.05552175434384047 +199506,997.5300000101687,-0.055521720715371925 +199507,997.5350000101688,-0.0555216870869459 +199508,997.5400000101689,-0.055521653458561714 +199509,997.545000010169,-0.05552161983021869 +199510,997.5500000101691,-0.055521586201916134 +199511,997.5550000101692,-0.0555215525736534 +199512,997.5600000101693,-0.055521518945429775 +199513,997.5650000101695,-0.055521485317244615 +199514,997.5700000101696,-0.05552145168909721 +199515,997.5750000101697,-0.055521418060986906 +199516,997.5800000101698,-0.05552138443291301 +199517,997.5850000101699,-0.05552135080487486 +199518,997.59000001017,-0.05552131717687176 +199519,997.5950000101701,-0.05552128354890306 +199520,997.6000000101702,-0.05552124992096806 +199521,997.6050000101703,-0.055521216293066104 +199522,997.6100000101704,-0.055521182665196504 +199523,997.6150000101705,-0.05552114903735859 +199524,997.6200000101707,-0.05552111540955167 +199525,997.6250000101708,-0.05552108178177508 +199526,997.6300000101709,-0.055521048154028155 +199527,997.635000010171,-0.0555210145263102 +199528,997.6400000101711,-0.05552098089862055 +199529,997.6450000101712,-0.055520947270958534 +199530,997.6500000101713,-0.05552091364332347 +199531,997.6550000101714,-0.05552088001571468 +199532,997.6600000101715,-0.055520846388131505 +199533,997.6650000101716,-0.05552081276057327 +199534,997.6700000101717,-0.05552077913303929 +199535,997.6750000101719,-0.05552074550552888 +199536,997.680000010172,-0.0555207118780414 +199537,997.6850000101721,-0.055520678250576154 +199538,997.6900000101722,-0.05552064462313247 +199539,997.6950000101723,-0.05552061099570967 +199540,997.7000000101724,-0.0555205773683071 +199541,997.7050000101725,-0.055520543740924085 +199542,997.7100000101726,-0.055520510113559934 +199543,997.7150000101727,-0.05552047648621399 +199544,997.7200000101728,-0.05552044285888558 +199545,997.725000010173,-0.055520409231574024 +199546,997.7300000101731,-0.05552037560427866 +199547,997.7350000101732,-0.055520341976998795 +199548,997.7400000101733,-0.05552030834973378 +199549,997.7450000101734,-0.055520274722482936 +199550,997.7500000101735,-0.05552024109524561 +199551,997.7550000101736,-0.05552020746802112 +199552,997.7600000101737,-0.05552017384080877 +199553,997.7650000101738,-0.05552014021360792 +199554,997.7700000101739,-0.055520106586417886 +199555,997.775000010174,-0.055520072959238005 +199556,997.7800000101741,-0.05552003933206761 +199557,997.7850000101743,-0.05552000570490603 +199558,997.7900000101744,-0.05551997207775258 +199559,997.7950000101745,-0.055519938450606605 +199560,997.8000000101746,-0.05551990482346743 +199561,997.8050000101747,-0.05551987119633439 +199562,997.8100000101748,-0.05551983756920683 +199563,997.8150000101749,-0.055519803942084056 +199564,997.820000010175,-0.05551977031496541 +199565,997.8250000101751,-0.05551973668785023 +199566,997.8300000101752,-0.05551970306073784 +199567,997.8350000101753,-0.05551966943362757 +199568,997.8400000101755,-0.055519635806518766 +199569,997.8450000101756,-0.05551960217941074 +199570,997.8500000101757,-0.05551956855230285 +199571,997.8550000101758,-0.05551953492519441 +199572,997.8600000101759,-0.05551950129808475 +199573,997.865000010176,-0.05551946767097322 +199574,997.8700000101761,-0.05551943404385914 +199575,997.8750000101762,-0.055519400416741846 +199576,997.8800000101763,-0.05551936678962069 +199577,997.8850000101764,-0.05551933316249499 +199578,997.8900000101765,-0.055519299535364074 +199579,997.8950000101767,-0.05551926590822728 +199580,997.9000000101768,-0.055519232281083956 +199581,997.9050000101769,-0.055519198653933434 +199582,997.910000010177,-0.05551916502677503 +199583,997.9150000101771,-0.05551913139960809 +199584,997.9200000101772,-0.05551909777243195 +199585,997.9250000101773,-0.05551906414524595 +199586,997.9300000101774,-0.05551903051804942 +199587,997.9350000101775,-0.05551899689084169 +199588,997.9400000101776,-0.055518963263622115 +199589,997.9450000101778,-0.05551892963639001 +199590,997.9500000101779,-0.055518896009144725 +199591,997.955000010178,-0.05551886238188558 +199592,997.9600000101781,-0.055518828754611935 +199593,997.9650000101782,-0.05551879512732312 +199594,997.9700000101783,-0.05551876150001846 +199595,997.9750000101784,-0.0555187278726973 +199596,997.9800000101785,-0.05551869424535898 +199597,997.9850000101786,-0.05551866061800283 +199598,997.9900000101787,-0.05551862699062819 +199599,997.9950000101788,-0.05551859336323442 +199600,998.000000010179,-0.05551855973582083 +199601,998.0050000101791,-0.05551852610838677 +199602,998.0100000101792,-0.05551849248093157 +199603,998.0150000101793,-0.05551845885345458 +199604,998.0200000101794,-0.055518425225955126 +199605,998.0250000101795,-0.05551839159843256 +199606,998.0300000101796,-0.055518357970886216 +199607,998.0350000101797,-0.055518324343315426 +199608,998.0400000101798,-0.055518290715719544 +199609,998.0450000101799,-0.05551825708809791 +199610,998.05000001018,-0.05551822346044985 +199611,998.0550000101802,-0.05551818983277471 +199612,998.0600000101803,-0.055518156205071834 +199613,998.0650000101804,-0.05551812257734057 +199614,998.0700000101805,-0.055518088949580234 +199615,998.0750000101806,-0.05551805532179019 +199616,998.0800000101807,-0.05551802169396977 +199617,998.0850000101808,-0.05551798806611832 +199618,998.0900000101809,-0.055517954438235165 +199619,998.095000010181,-0.055517920810319664 +199620,998.1000000101811,-0.055517887182371155 +199621,998.1050000101812,-0.05551785355438898 +199622,998.1100000101814,-0.05551781992637248 +199623,998.1150000101815,-0.055517786298321 +199624,998.1200000101816,-0.05551775267023388 +199625,998.1250000101817,-0.05551771904211046 +199626,998.1300000101818,-0.055517685413950094 +199627,998.1350000101819,-0.05551765178575211 +199628,998.140000010182,-0.05551761815751586 +199629,998.1450000101821,-0.05551758452924068 +199630,998.1500000101822,-0.05551755090092593 +199631,998.1550000101823,-0.055517517272570927 +199632,998.1600000101824,-0.055517483644175046 +199633,998.1650000101826,-0.05551745001573761 +199634,998.1700000101827,-0.05551741638725797 +199635,998.1750000101828,-0.05551738275873547 +199636,998.1800000101829,-0.05551734913016945 +199637,998.185000010183,-0.05551731550155926 +199638,998.1900000101831,-0.05551728187290424 +199639,998.1950000101832,-0.055517248244203746 +199640,998.2000000101833,-0.05551721461545711 +199641,998.2050000101834,-0.05551718098666369 +199642,998.2100000101835,-0.05551714735782282 +199643,998.2150000101836,-0.055517113728933865 +199644,998.2200000101838,-0.055517080099996154 +199645,998.2250000101839,-0.055517046471009024 +199646,998.230000010184,-0.05551701284197185 +199647,998.2350000101841,-0.055516979212883955 +199648,998.2400000101842,-0.0555169455837447 +199649,998.2450000101843,-0.055516911954553425 +199650,998.2500000101844,-0.05551687832530948 +199651,998.2550000101845,-0.0555168446960122 +199652,998.2600000101846,-0.055516811066660954 +199653,998.2650000101847,-0.055516777437255076 +199654,998.2700000101848,-0.055516743807793915 +199655,998.275000010185,-0.05551671017827683 +199656,998.2800000101851,-0.055516676548703146 +199657,998.2850000101852,-0.05551664291907224 +199658,998.2900000101853,-0.05551660928938344 +199659,998.2950000101854,-0.0555165756596361 +199660,998.3000000101855,-0.05551654202982958 +199661,998.3050000101856,-0.055516508399963214 +199662,998.3100000101857,-0.05551647477003636 +199663,998.3150000101858,-0.05551644114004836 +199664,998.3200000101859,-0.055516407509998575 +199665,998.325000010186,-0.055516373879886345 +199666,998.3300000101862,-0.05551634024971102 +199667,998.3350000101863,-0.05551630661947195 +199668,998.3400000101864,-0.05551627298916849 +199669,998.3450000101865,-0.05551623935879999 +199670,998.3500000101866,-0.055516205728365804 +199671,998.3550000101867,-0.05551617209786528 +199672,998.3600000101868,-0.05551613846729776 +199673,998.3650000101869,-0.055516104836662604 +199674,998.370000010187,-0.05551607120595917 +199675,998.3750000101871,-0.055516037575186784 +199676,998.3800000101872,-0.05551600394434483 +199677,998.3850000101874,-0.055515970313432646 +199678,998.3900000101875,-0.05551593668244959 +199679,998.3950000101876,-0.055515903051395 +199680,998.4000000101877,-0.055515869420268246 +199681,998.4050000101878,-0.055515835789068664 +199682,998.4100000101879,-0.05551580215779562 +199683,998.415000010188,-0.055515768526448454 +199684,998.4200000101881,-0.05551573489502654 +199685,998.4250000101882,-0.05551570126352921 +199686,998.4300000101883,-0.055515667631955826 +199687,998.4350000101884,-0.055515634000305736 +199688,998.4400000101886,-0.055515600368578305 +199689,998.4450000101887,-0.05551556673677288 +199690,998.4500000101888,-0.05551553310488883 +199691,998.4550000101889,-0.0555154994729255 +199692,998.460000010189,-0.05551546584088223 +199693,998.4650000101891,-0.05551543220875838 +199694,998.4700000101892,-0.055515398576553326 +199695,998.4750000101893,-0.0555153649442664 +199696,998.4800000101894,-0.05551533131189696 +199697,998.4850000101895,-0.055515297679444374 +199698,998.4900000101896,-0.055515264046907986 +199699,998.4950000101898,-0.05551523041428717 +199700,998.5000000101899,-0.05551519678158127 +199701,998.50500001019,-0.05551516314878964 +199702,998.5100000101901,-0.05551512951591164 +199703,998.5150000101902,-0.05551509588294661 +199704,998.5200000101903,-0.05551506224989393 +199705,998.5250000101904,-0.05551502861675294 +199706,998.5300000101905,-0.055514994983523025 +199707,998.5350000101906,-0.05551496135020351 +199708,998.5400000101907,-0.05551492771679376 +199709,998.5450000101908,-0.05551489408329316 +199710,998.550000010191,-0.05551486044970103 +199711,998.5550000101911,-0.05551482681601675 +199712,998.5600000101912,-0.055514793182239675 +199713,998.5650000101913,-0.05551475954836916 +199714,998.5700000101914,-0.05551472591440455 +199715,998.5750000101915,-0.05551469228034523 +199716,998.5800000101916,-0.05551465864619054 +199717,998.5850000101917,-0.05551462501193986 +199718,998.5900000101918,-0.05551459137759252 +199719,998.5950000101919,-0.0555145577431479 +199720,998.600000010192,-0.055514524108605356 +199721,998.6050000101922,-0.05551449047396424 +199722,998.6100000101923,-0.05551445683922392 +199723,998.6150000101924,-0.05551442320438376 +199724,998.6200000101925,-0.055514389569443115 +199725,998.6250000101926,-0.055514355934401335 +199726,998.6300000101927,-0.0555143222992578 +199727,998.6350000101928,-0.05551428866401186 +199728,998.6400000101929,-0.055514255028662876 +199729,998.645000010193,-0.05551422139321021 +199730,998.6500000101931,-0.05551418775765322 +199731,998.6550000101932,-0.05551415412199128 +199732,998.6600000101934,-0.05551412048622375 +199733,998.6650000101935,-0.05551408685034997 +199734,998.6700000101936,-0.05551405321436933 +199735,998.6750000101937,-0.055514019578281164 +199736,998.6800000101938,-0.055513985942084856 +199737,998.6850000101939,-0.05551395230577977 +199738,998.690000010194,-0.05551391866936525 +199739,998.6950000101941,-0.055513885032840694 +199740,998.7000000101942,-0.055513851396205426 +199741,998.7050000101943,-0.05551381775945883 +199742,998.7100000101944,-0.05551378412260026 +199743,998.7150000101946,-0.05551375048562909 +199744,998.7200000101947,-0.05551371684854468 +199745,998.7250000101948,-0.05551368321134638 +199746,998.7300000101949,-0.05551364957403357 +199747,998.735000010195,-0.05551361593660561 +199748,998.7400000101951,-0.055513582299061864 +199749,998.7450000101952,-0.0555135486614017 +199750,998.7500000101953,-0.05551351502362449 +199751,998.7550000101954,-0.05551348138572959 +199752,998.7600000101955,-0.055513447747716355 +199753,998.7650000101956,-0.055513414109584165 +199754,998.7700000101958,-0.055513380471332384 +199755,998.7750000101959,-0.055513346832960365 +199756,998.780000010196,-0.0555133131944675 +199757,998.7850000101961,-0.05551327955585313 +199758,998.7900000101962,-0.055513245917116635 +199759,998.7950000101963,-0.055513212278257375 +199760,998.8000000101964,-0.05551317863927471 +199761,998.8050000101965,-0.055513145000168025 +199762,998.8100000101966,-0.05551311136093668 +199763,998.8150000101967,-0.05551307772158003 +199764,998.8200000101968,-0.05551304408209745 +199765,998.825000010197,-0.055513010442488325 +199766,998.8300000101971,-0.055512976802751995 +199767,998.8350000101972,-0.05551294316288784 +199768,998.8400000101973,-0.055512909522895226 +199769,998.8450000101974,-0.05551287588277353 +199770,998.8500000101975,-0.05551284224252211 +199771,998.8550000101976,-0.05551280860214034 +199772,998.8600000101977,-0.055512774961627584 +199773,998.8650000101978,-0.055512741320983224 +199774,998.8700000101979,-0.05551270768020662 +199775,998.875000010198,-0.055512674039297126 +199776,998.8800000101982,-0.05551264039825413 +199777,998.8850000101983,-0.05551260675707701 +199778,998.8900000101984,-0.05551257311576511 +199779,998.8950000101985,-0.05551253947431782 +199780,998.9000000101986,-0.05551250583273449 +199781,998.9050000101987,-0.05551247219101451 +199782,998.9100000101988,-0.05551243854915725 +199783,998.9150000101989,-0.05551240490716208 +199784,998.920000010199,-0.05551237126502835 +199785,998.9250000101991,-0.05551233762275545 +199786,998.9300000101993,-0.05551230398034275 +199787,998.9350000101994,-0.05551227033778962 +199788,998.9400000101995,-0.055512236695095425 +199789,998.9450000101996,-0.055512203052259554 +199790,998.9500000101997,-0.05551216940928136 +199791,998.9550000101998,-0.055512135766160216 +199792,998.9600000101999,-0.0555121021228955 +199793,998.9650000102,-0.05551206847948659 +199794,998.9700000102001,-0.05551203483593285 +199795,998.9750000102002,-0.05551200119223367 +199796,998.9800000102003,-0.0555119675483884 +199797,998.9850000102005,-0.05551193390439642 +199798,998.9900000102006,-0.05551190026025711 +199799,998.9950000102007,-0.05551186661596984 +199800,999.0000000102008,-0.055511832971533975 +199801,999.0050000102009,-0.055511799326948906 +199802,999.010000010201,-0.05551176568221399 +199803,999.0150000102011,-0.055511732037328614 +199804,999.0200000102012,-0.05551169839229215 +199805,999.0250000102013,-0.055511664747103964 +199806,999.0300000102014,-0.05551163110176343 +199807,999.0350000102015,-0.05551159745626993 +199808,999.0400000102017,-0.05551156381062283 +199809,999.0450000102018,-0.05551153016482152 +199810,999.0500000102019,-0.055511496518865375 +199811,999.055000010202,-0.055511462872753756 +199812,999.0600000102021,-0.055511429226486046 +199813,999.0650000102022,-0.055511395580061615 +199814,999.0700000102023,-0.055511361933479865 +199815,999.0750000102024,-0.05551132828674014 +199816,999.0800000102025,-0.055511294639841835 +199817,999.0850000102026,-0.05551126099278432 +199818,999.0900000102027,-0.05551122734556697 +199819,999.0950000102029,-0.05551119369818916 +199820,999.100000010203,-0.05551116005065028 +199821,999.1050000102031,-0.05551112640294969 +199822,999.1100000102032,-0.05551109275508678 +199823,999.1150000102033,-0.05551105910706092 +199824,999.1200000102034,-0.05551102545887149 +199825,999.1250000102035,-0.055510991810517864 +199826,999.1300000102036,-0.05551095816199944 +199827,999.1350000102037,-0.055510924513315574 +199828,999.1400000102038,-0.05551089086446565 +199829,999.145000010204,-0.05551085721544905 +199830,999.150000010204,-0.05551082356626515 +199831,999.1550000102042,-0.05551078991691333 +199832,999.1600000102043,-0.05551075626739296 +199833,999.1650000102044,-0.055510722617703435 +199834,999.1700000102045,-0.055510688967844134 +199835,999.1750000102046,-0.05551065531781443 +199836,999.1800000102047,-0.055510621667613703 +199837,999.1850000102048,-0.05551058801724133 +199838,999.1900000102049,-0.0555105543666967 +199839,999.195000010205,-0.055510520715979186 +199840,999.2000000102051,-0.055510487065088175 +199841,999.2050000102053,-0.05551045341402303 +199842,999.2100000102054,-0.05551041976278316 +199843,999.2150000102055,-0.055510386111367924 +199844,999.2200000102056,-0.055510352459776716 +199845,999.2250000102057,-0.055510318808008906 +199846,999.2300000102058,-0.05551028515606389 +199847,999.2350000102059,-0.05551025150394104 +199848,999.240000010206,-0.055510217851639725 +199849,999.2450000102061,-0.05551018419915934 +199850,999.2500000102062,-0.05551015054649928 +199851,999.2550000102063,-0.0555101168936589 +199852,999.2600000102065,-0.055510083240637616 +199853,999.2650000102066,-0.05551004958743478 +199854,999.2700000102067,-0.05551001593404979 +199855,999.2750000102068,-0.05550998228048203 +199856,999.2800000102069,-0.05550994862673089 +199857,999.285000010207,-0.05550991497279574 +199858,999.2900000102071,-0.055509881318675965 +199859,999.2950000102072,-0.055509847664370955 +199860,999.3000000102073,-0.055509814009880074 +199861,999.3050000102074,-0.05550978035520274 +199862,999.3100000102075,-0.055509746700338314 +199863,999.3150000102077,-0.05550971304528618 +199864,999.3200000102078,-0.05550967939004573 +199865,999.3250000102079,-0.05550964573461636 +199866,999.330000010208,-0.05550961207899742 +199867,999.3350000102081,-0.05550957842318833 +199868,999.3400000102082,-0.05550954476718846 +199869,999.3450000102083,-0.055509511110997195 +199870,999.3500000102084,-0.05550947745461393 +199871,999.3550000102085,-0.05550944379803805 +199872,999.3600000102086,-0.05550941014126893 +199873,999.3650000102087,-0.05550937648430596 +199874,999.3700000102089,-0.05550934282714853 +199875,999.375000010209,-0.055509309169796024 +199876,999.3800000102091,-0.055509275512247824 +199877,999.3850000102092,-0.05550924185450333 +199878,999.3900000102093,-0.05550920819656192 +199879,999.3950000102094,-0.05550917453842298 +199880,999.4000000102095,-0.05550914088008591 +199881,999.4050000102096,-0.055509107221550086 +199882,999.4100000102097,-0.05550907356281488 +199883,999.4150000102098,-0.055509039903879696 +199884,999.42000001021,-0.05550900624474393 +199885,999.42500001021,-0.05550897258540697 +199886,999.4300000102102,-0.055508938925868195 +199887,999.4350000102103,-0.055508905266126986 +199888,999.4400000102104,-0.05550887160618275 +199889,999.4450000102105,-0.055508837946034874 +199890,999.4500000102106,-0.05550880428568273 +199891,999.4550000102107,-0.05550877062512572 +199892,999.4600000102108,-0.05550873696436324 +199893,999.4650000102109,-0.055508703303394656 +199894,999.470000010211,-0.05550866964221938 +199895,999.4750000102111,-0.05550863598083679 +199896,999.4800000102113,-0.05550860231924628 +199897,999.4850000102114,-0.055508568657447244 +199898,999.4900000102115,-0.05550853499543906 +199899,999.4950000102116,-0.05550850133322115 +199900,999.5000000102117,-0.05550846767079287 +199901,999.5050000102118,-0.05550843400815363 +199902,999.5100000102119,-0.05550840034530281 +199903,999.515000010212,-0.055508366682239796 +199904,999.5200000102121,-0.055508333018964 +199905,999.5250000102122,-0.055508299355474806 +199906,999.5300000102123,-0.0555082656917716 +199907,999.5350000102125,-0.05550823202785378 +199908,999.5400000102126,-0.05550819836372072 +199909,999.5450000102127,-0.05550816469937185 +199910,999.5500000102128,-0.05550813103480653 +199911,999.5550000102129,-0.05550809737002415 +199912,999.560000010213,-0.05550806370502411 +199913,999.5650000102131,-0.05550803003980583 +199914,999.5700000102132,-0.05550799637436867 +199915,999.5750000102133,-0.05550796270871204 +199916,999.5800000102134,-0.05550792904283533 +199917,999.5850000102135,-0.05550789537673792 +199918,999.5900000102137,-0.05550786171041922 +199919,999.5950000102138,-0.05550782804387862 +199920,999.6000000102139,-0.05550779437711552 +199921,999.605000010214,-0.05550776071012929 +199922,999.6100000102141,-0.055507727042919355 +199923,999.6150000102142,-0.05550769337548509 +199924,999.6200000102143,-0.055507659707825896 +199925,999.6250000102144,-0.05550762603994117 +199926,999.6300000102145,-0.05550759237183031 +199927,999.6350000102146,-0.05550755870349271 +199928,999.6400000102147,-0.05550752503492775 +199929,999.6450000102149,-0.055507491366134844 +199930,999.650000010215,-0.055507457697113384 +199931,999.6550000102151,-0.05550742402786277 +199932,999.6600000102152,-0.05550739035838238 +199933,999.6650000102153,-0.055507356688671634 +199934,999.6700000102154,-0.055507323018729904 +199935,999.6750000102155,-0.055507289348556615 +199936,999.6800000102156,-0.05550725567815114 +199937,999.6850000102157,-0.05550722200751288 +199938,999.6900000102158,-0.05550718833664125 +199939,999.695000010216,-0.05550715466553562 +199940,999.7000000102161,-0.05550712099419541 +199941,999.7050000102162,-0.05550708732262 +199942,999.7100000102163,-0.0555070536508088 +199943,999.7150000102164,-0.05550701997876121 +199944,999.7200000102165,-0.05550698630647662 +199945,999.7250000102166,-0.05550695263395444 +199946,999.7300000102167,-0.055506918961194064 +199947,999.7350000102168,-0.05550688528819487 +199948,999.7400000102169,-0.055506851614956276 +199949,999.745000010217,-0.05550681794147768 +199950,999.7500000102171,-0.05550678426775848 +199951,999.7550000102173,-0.055506750593798074 +199952,999.7600000102174,-0.055506716919595876 +199953,999.7650000102175,-0.05550668324515127 +199954,999.7700000102176,-0.055506649570463654 +199955,999.7750000102177,-0.05550661589553242 +199956,999.7800000102178,-0.05550658222035699 +199957,999.7850000102179,-0.05550654854493675 +199958,999.790000010218,-0.05550651486927111 +199959,999.7950000102181,-0.05550648119335948 +199960,999.8000000102182,-0.05550644751720123 +199961,999.8050000102184,-0.05550641384079577 +199962,999.8100000102185,-0.05550638016414253 +199963,999.8150000102186,-0.05550634648724088 +199964,999.8200000102187,-0.05550631281009024 +199965,999.8250000102188,-0.055506279132689997 +199966,999.8300000102189,-0.055506245455039564 +199967,999.835000010219,-0.05550621177713833 +199968,999.8400000102191,-0.05550617809898572 +199969,999.8450000102192,-0.05550614442058111 +199970,999.8500000102193,-0.05550611074192392 +199971,999.8550000102194,-0.055506077063013554 +199972,999.8600000102196,-0.05550604338384939 +199973,999.8650000102197,-0.055506009704430856 +199974,999.8700000102198,-0.05550597602475735 +199975,999.8750000102199,-0.05550594234482827 +199976,999.88000001022,-0.055505908664643035 +199977,999.8850000102201,-0.05550587498420103 +199978,999.8900000102202,-0.05550584130350167 +199979,999.8950000102203,-0.055505807622544354 +199980,999.9000000102204,-0.05550577394132849 +199981,999.9050000102205,-0.05550574025985347 +199982,999.9100000102206,-0.05550570657811871 +199983,999.9150000102208,-0.05550567289612361 +199984,999.9200000102209,-0.055505639213867586 +199985,999.925000010221,-0.055505605531350026 +199986,999.9300000102211,-0.055505571848570356 +199987,999.9350000102212,-0.055505538165527966 +199988,999.9400000102213,-0.055505504482222266 +199989,999.9450000102214,-0.05550547079865265 +199990,999.9500000102215,-0.05550543711481855 +199991,999.9550000102216,-0.05550540343071936 +199992,999.9600000102217,-0.05550536974635448 +199993,999.9650000102218,-0.055505336061723316 +199994,999.970000010222,-0.05550530237682527 +199995,999.9750000102221,-0.05550526869165977 +199996,999.9800000102222,-0.0555052350062262 +199997,999.9850000102223,-0.05550520132052398 +199998,999.9900000102224,-0.05550516763455251 +199999,999.9950000102225,-0.0555051339483112 +200000,1000.0000000102226,-0.05550510026179946 +200001,1000.0050000102227,-0.055505066575016686 +200002,1000.0100000102228,-0.055505032887962304 +200003,1000.0150000102229,-0.05550499920063571 +200004,1000.020000010223,-0.055504965513036325 +200005,1000.0250000102232,-0.05550493182516354 +200006,1000.0300000102233,-0.055504898137016784 +200007,1000.0350000102234,-0.05550486444859544 +200008,1000.0400000102235,-0.05550483075989894 +200009,1000.0450000102236,-0.05550479707092668 +200010,1000.0500000102237,-0.05550476338167808 +200011,1000.0550000102238,-0.05550472969215254 +200012,1000.0600000102239,-0.05550469600234946 +200013,1000.065000010224,-0.05550466231226827 +200014,1000.0700000102241,-0.055504628621908365 +200015,1000.0750000102242,-0.05550459493126917 +200016,1000.0800000102244,-0.05550456124035009 +200017,1000.0850000102245,-0.05550452754915052 +200018,1000.0900000102246,-0.05550449385766989 +200019,1000.0950000102247,-0.055504460165907606 +200020,1000.1000000102248,-0.05550442647386306 +200021,1000.1050000102249,-0.055504392781535704 +200022,1000.110000010225,-0.0555043590889249 +200023,1000.1150000102251,-0.0555043253960301 +200024,1000.1200000102252,-0.05550429170285069 +200025,1000.1250000102253,-0.05550425800938609 +200026,1000.1300000102254,-0.055504224315635724 +200027,1000.1350000102256,-0.05550419062159898 +200028,1000.1400000102257,-0.05550415692727529 +200029,1000.1450000102258,-0.05550412323266406 +200030,1000.1500000102259,-0.0555040895377647 +200031,1000.155000010226,-0.05550405584257662 +200032,1000.1600000102261,-0.055504022147099236 +200033,1000.1650000102262,-0.05550398845133196 +200034,1000.1700000102263,-0.05550395475527421 +200035,1000.1750000102264,-0.055503921058925404 +200036,1000.1800000102265,-0.055503887362284926 +200037,1000.1850000102266,-0.055503853665352224 +200038,1000.1900000102268,-0.05550381996812671 +200039,1000.1950000102269,-0.05550378627060778 +200040,1000.200000010227,-0.05550375257279485 +200041,1000.2050000102271,-0.05550371887468735 +200042,1000.2100000102272,-0.05550368517628468 +200043,1000.2150000102273,-0.05550365147758625 +200044,1000.2200000102274,-0.05550361777859149 +200045,1000.2250000102275,-0.05550358407929981 +200046,1000.2300000102276,-0.055503550379710616 +200047,1000.2350000102277,-0.05550351667982334 +200048,1000.2400000102278,-0.055503482979637385 +200049,1000.245000010228,-0.05550344927915216 +200050,1000.2500000102281,-0.05550341557836711 +200051,1000.2550000102282,-0.05550338187728163 +200052,1000.2600000102283,-0.055503348175895126 +200053,1000.2650000102284,-0.05550331447420703 +200054,1000.2700000102285,-0.05550328077221676 +200055,1000.2750000102286,-0.05550324706992372 +200056,1000.2800000102287,-0.05550321336732734 +200057,1000.2850000102288,-0.05550317966442703 +200058,1000.2900000102289,-0.0555031459612222 +200059,1000.295000010229,-0.055503112257712275 +200060,1000.3000000102292,-0.05550307855389667 +200061,1000.3050000102293,-0.05550304484977481 +200062,1000.3100000102294,-0.05550301114534611 +200063,1000.3150000102295,-0.05550297744060998 +200064,1000.3200000102296,-0.05550294373556585 +200065,1000.3250000102297,-0.05550291003021313 +200066,1000.3300000102298,-0.05550287632455124 +200067,1000.3350000102299,-0.05550284261857961 +200068,1000.34000001023,-0.05550280891229764 +200069,1000.3450000102301,-0.05550277520570475 +200070,1000.3500000102302,-0.05550274149880038 +200071,1000.3550000102304,-0.055502707791583915 +200072,1000.3600000102305,-0.05550267408405481 +200073,1000.3650000102306,-0.055502640376212456 +200074,1000.3700000102307,-0.05550260666805629 +200075,1000.3750000102308,-0.05550257295958574 +200076,1000.3800000102309,-0.0555025392508002 +200077,1000.385000010231,-0.05550250554169911 +200078,1000.3900000102311,-0.05550247183228189 +200079,1000.3950000102312,-0.055502438122547945 +200080,1000.4000000102313,-0.0555024044124967 +200081,1000.4050000102314,-0.055502370702127594 +200082,1000.4100000102316,-0.055502336991440034 +200083,1000.4150000102317,-0.055502303280433436 +200084,1000.4200000102318,-0.05550226956910723 +200085,1000.4250000102319,-0.055502235857460835 +200086,1000.430000010232,-0.05550220214549367 +200087,1000.4350000102321,-0.05550216843320517 +200088,1000.4400000102322,-0.05550213472059474 +200089,1000.4450000102323,-0.05550210100766181 +200090,1000.4500000102324,-0.055502067294405794 +200091,1000.4550000102325,-0.05550203358082612 +200092,1000.4600000102326,-0.05550199986692222 +200093,1000.4650000102328,-0.05550196615269351 +200094,1000.4700000102329,-0.055501932438139424 +200095,1000.475000010233,-0.05550189872325936 +200096,1000.4800000102331,-0.055501865008052764 +200097,1000.4850000102332,-0.055501831292519045 +200098,1000.4900000102333,-0.05550179757665762 +200099,1000.4950000102334,-0.055501763860467936 +200100,1000.5000000102335,-0.0555017301439494 +200101,1000.5050000102336,-0.055501696427101455 +200102,1000.5100000102337,-0.055501662709923495 +200103,1000.5150000102338,-0.05550162899241497 +200104,1000.520000010234,-0.05550159527457528 +200105,1000.5250000102341,-0.05550156155640387 +200106,1000.5300000102342,-0.05550152783790017 +200107,1000.5350000102343,-0.0555014941190636 +200108,1000.5400000102344,-0.05550146039989356 +200109,1000.5450000102345,-0.055501426680389515 +200110,1000.5500000102346,-0.05550139296055086 +200111,1000.5550000102347,-0.055501359240377045 +200112,1000.5600000102348,-0.05550132551986748 +200113,1000.5650000102349,-0.055501291799021586 +200114,1000.570000010235,-0.0555012580778388 +200115,1000.5750000102352,-0.055501224356318546 +200116,1000.5800000102353,-0.05550119063446025 +200117,1000.5850000102354,-0.055501156912263344 +200118,1000.5900000102355,-0.05550112318972724 +200119,1000.5950000102356,-0.05550108946685139 +200120,1000.6000000102357,-0.055501055743635196 +200121,1000.6050000102358,-0.055501022020078096 +200122,1000.6100000102359,-0.05550098829617951 +200123,1000.615000010236,-0.05550095457193889 +200124,1000.6200000102361,-0.05550092084735563 +200125,1000.6250000102362,-0.05550088712242918 +200126,1000.6300000102364,-0.05550085339715896 +200127,1000.6350000102365,-0.05550081967154441 +200128,1000.6400000102366,-0.05550078594558494 +200129,1000.6450000102367,-0.05550075221927999 +200130,1000.6500000102368,-0.05550071849262899 +200131,1000.6550000102369,-0.055500684765631365 +200132,1000.660000010237,-0.05550065103828654 +200133,1000.6650000102371,-0.055500617310593955 +200134,1000.6700000102372,-0.05550058358255303 +200135,1000.6750000102373,-0.055500549854163195 +200136,1000.6800000102374,-0.055500516125423886 +200137,1000.6850000102376,-0.05550048239633453 +200138,1000.6900000102377,-0.055500448666894554 +200139,1000.6950000102378,-0.0555004149371034 +200140,1000.7000000102379,-0.055500381206960485 +200141,1000.705000010238,-0.05550034747646524 +200142,1000.7100000102381,-0.055500313745617105 +200143,1000.7150000102382,-0.05550028001441551 +200144,1000.7200000102383,-0.05550024628285988 +200145,1000.7250000102384,-0.05550021255094964 +200146,1000.7300000102385,-0.055500178818684236 +200147,1000.7350000102387,-0.05550014508606309 +200148,1000.7400000102388,-0.05550011135308563 +200149,1000.7450000102389,-0.055500077619751294 +200150,1000.750000010239,-0.05550004388605953 +200151,1000.7550000102391,-0.055500010152009754 +200152,1000.7600000102392,-0.05549997641760139 +200153,1000.7650000102393,-0.055499942682833876 +200154,1000.7700000102394,-0.05549990894770666 +200155,1000.7750000102395,-0.055499875212219156 +200156,1000.7800000102396,-0.055499841476370805 +200157,1000.7850000102397,-0.055499807740161035 +200158,1000.7900000102399,-0.05549977400358928 +200159,1000.79500001024,-0.05549974026665498 +200160,1000.8000000102401,-0.05549970652935757 +200161,1000.8050000102402,-0.05549967279169647 +200162,1000.8100000102403,-0.05549963905367113 +200163,1000.8150000102404,-0.055499605315280975 +200164,1000.8200000102405,-0.05549957157652544 +200165,1000.8250000102406,-0.05549953783740397 +200166,1000.8300000102407,-0.05549950409791597 +200167,1000.8350000102408,-0.055499470358060916 +200168,1000.8400000102409,-0.05549943661783822 +200169,1000.845000010241,-0.055499402877247306 +200170,1000.8500000102412,-0.05549936913628763 +200171,1000.8550000102413,-0.055499335394958625 +200172,1000.8600000102414,-0.05549930165325971 +200173,1000.8650000102415,-0.05549926791119033 +200174,1000.8700000102416,-0.05549923416874994 +200175,1000.8750000102417,-0.05549920042593794 +200176,1000.8800000102418,-0.055499166682753794 +200177,1000.8850000102419,-0.05549913293919693 +200178,1000.890000010242,-0.05549909919526678 +200179,1000.8950000102421,-0.05549906545096279 +200180,1000.9000000102423,-0.05549903170628438 +200181,1000.9050000102424,-0.05549899796123101 +200182,1000.9100000102425,-0.0554989642158021 +200183,1000.9150000102426,-0.055498930469997106 +200184,1000.9200000102427,-0.05549889672381544 +200185,1000.9250000102428,-0.05549886297725655 +200186,1000.9300000102429,-0.055498829230319874 +200187,1000.935000010243,-0.055498795483004855 +200188,1000.9400000102431,-0.055498761735310924 +200189,1000.9450000102432,-0.05549872798723753 +200190,1000.9500000102433,-0.0554986942387841 +200191,1000.9550000102435,-0.05549866048995007 +200192,1000.9600000102436,-0.05549862674073489 +200193,1000.9650000102437,-0.055498592991138 +200194,1000.9700000102438,-0.05549855924115883 +200195,1000.9750000102439,-0.05549852549079683 +200196,1000.980000010244,-0.05549849174005142 +200197,1000.9850000102441,-0.055498457988922056 +200198,1000.9900000102442,-0.055498424237408174 +200199,1000.9950000102443,-0.055498390485509204 +200200,1001.0000000102444,-0.0554983567332246 +200201,1001.0050000102445,-0.055498322980553794 +200202,1001.0100000102447,-0.05549828922749623 +200203,1001.0150000102448,-0.05549825547405135 +200204,1001.0200000102449,-0.05549822172021859 +200205,1001.025000010245,-0.055498187965997405 +200206,1001.0300000102451,-0.05549815421138722 +200207,1001.0350000102452,-0.05549812045638747 +200208,1001.0400000102453,-0.0554980867009976 +200209,1001.0450000102454,-0.05549805294521707 +200210,1001.0500000102455,-0.05549801918904531 +200211,1001.0550000102456,-0.05549798543248176 +200212,1001.0600000102457,-0.055497951675525854 +200213,1001.0650000102459,-0.055497917918177056 +200214,1001.070000010246,-0.05549788416043478 +200215,1001.0750000102461,-0.055497850402298494 +200216,1001.0800000102462,-0.055497816643767635 +200217,1001.0850000102463,-0.05549778288484164 +200218,1001.0900000102464,-0.05549774912551995 +200219,1001.0950000102465,-0.05549771536580201 +200220,1001.1000000102466,-0.055497681605687264 +200221,1001.1050000102467,-0.055497647845175156 +200222,1001.1100000102468,-0.05549761408426512 +200223,1001.115000010247,-0.05549758032295661 +200224,1001.120000010247,-0.05549754656124907 +200225,1001.1250000102472,-0.055497512799141946 +200226,1001.1300000102473,-0.05549747903663468 +200227,1001.1350000102474,-0.0554974452737267 +200228,1001.1400000102475,-0.05549741151041747 +200229,1001.1450000102476,-0.05549737774670643 +200230,1001.1500000102477,-0.05549734398259304 +200231,1001.1550000102478,-0.055497310218076704 +200232,1001.1600000102479,-0.0554972764531569 +200233,1001.165000010248,-0.055497242687833064 +200234,1001.1700000102481,-0.05549720892210465 +200235,1001.1750000102483,-0.05549717515597109 +200236,1001.1800000102484,-0.05549714138943185 +200237,1001.1850000102485,-0.05549710762248636 +200238,1001.1900000102486,-0.05549707385513405 +200239,1001.1950000102487,-0.05549704008737439 +200240,1001.2000000102488,-0.05549700631920682 +200241,1001.2050000102489,-0.05549697255063079 +200242,1001.210000010249,-0.05549693878164574 +200243,1001.2150000102491,-0.05549690501225112 +200244,1001.2200000102492,-0.05549687124244638 +200245,1001.2250000102493,-0.05549683747223096 +200246,1001.2300000102495,-0.05549680370160432 +200247,1001.2350000102496,-0.05549676993056589 +200248,1001.2400000102497,-0.05549673615911513 +200249,1001.2450000102498,-0.05549670238725149 +200250,1001.2500000102499,-0.0554966686149744 +200251,1001.25500001025,-0.05549663484228333 +200252,1001.2600000102501,-0.05549660106917772 +200253,1001.2650000102502,-0.055496567295657 +200254,1001.2700000102503,-0.05549653352172065 +200255,1001.2750000102504,-0.05549649974736809 +200256,1001.2800000102505,-0.05549646597259879 +200257,1001.2850000102507,-0.05549643219741219 +200258,1001.2900000102508,-0.055496398421807744 +200259,1001.2950000102509,-0.0554963646457849 +200260,1001.300000010251,-0.0554963308693431 +200261,1001.3050000102511,-0.0554962970924818 +200262,1001.3100000102512,-0.05549626331520044 +200263,1001.3150000102513,-0.05549622953749848 +200264,1001.3200000102514,-0.055496195759375366 +200265,1001.3250000102515,-0.055496161980830565 +200266,1001.3300000102516,-0.0554961282018635 +200267,1001.3350000102517,-0.05549609442247365 +200268,1001.3400000102519,-0.05549606064266044 +200269,1001.345000010252,-0.05549602686242334 +200270,1001.3500000102521,-0.055495993081761785 +200271,1001.3550000102522,-0.055495959300675225 +200272,1001.3600000102523,-0.055495925519163124 +200273,1001.3650000102524,-0.05549589173722494 +200274,1001.3700000102525,-0.0554958579548601 +200275,1001.3750000102526,-0.05549582417206808 +200276,1001.3800000102527,-0.055495790388848325 +200277,1001.3850000102528,-0.05549575660520027 +200278,1001.390000010253,-0.055495722821123396 +200279,1001.395000010253,-0.05549568903661714 +200280,1001.4000000102532,-0.055495655251680945 +200281,1001.4050000102533,-0.055495621466314274 +200282,1001.4100000102534,-0.05549558768051658 +200283,1001.4150000102535,-0.055495553894287314 +200284,1001.4200000102536,-0.055495520107625936 +200285,1001.4250000102537,-0.055495486320531896 +200286,1001.4300000102538,-0.05549545253300464 +200287,1001.4350000102539,-0.05549541874504362 +200288,1001.440000010254,-0.05549538495664831 +200289,1001.4450000102541,-0.05549535116781815 +200290,1001.4500000102543,-0.05549531737855259 +200291,1001.4550000102544,-0.05549528358885108 +200292,1001.4600000102545,-0.055495249798713106 +200293,1001.4650000102546,-0.05549521600813809 +200294,1001.4700000102547,-0.05549518221712549 +200295,1001.4750000102548,-0.055495148425674774 +200296,1001.4800000102549,-0.05549511463378539 +200297,1001.485000010255,-0.055495080841456795 +200298,1001.4900000102551,-0.05549504704868845 +200299,1001.4950000102552,-0.05549501325547981 +200300,1001.5000000102553,-0.05549497946183031 +200301,1001.5050000102555,-0.05549494566773943 +200302,1001.5100000102556,-0.05549491187320662 +200303,1001.5150000102557,-0.05549487807823132 +200304,1001.5200000102558,-0.055494844282813004 +200305,1001.5250000102559,-0.055494810486951124 +200306,1001.530000010256,-0.05549477669064514 +200307,1001.5350000102561,-0.0554947428938945 +200308,1001.5400000102562,-0.05549470909669867 +200309,1001.5450000102563,-0.055494675299057106 +200310,1001.5500000102564,-0.05549464150096927 +200311,1001.5550000102565,-0.05549460770243459 +200312,1001.5600000102567,-0.05549457390345256 +200313,1001.5650000102568,-0.05549454010402262 +200314,1001.5700000102569,-0.05549450630414422 +200315,1001.575000010257,-0.05549447250381685 +200316,1001.5800000102571,-0.05549443870303993 +200317,1001.5850000102572,-0.05549440490181294 +200318,1001.5900000102573,-0.05549437110013534 +200319,1001.5950000102574,-0.05549433729800658 +200320,1001.6000000102575,-0.055494303495426126 +200321,1001.6050000102576,-0.05549426969239342 +200322,1001.6100000102577,-0.055494235888907936 +200323,1001.6150000102579,-0.055494202084969135 +200324,1001.620000010258,-0.055494168280576475 +200325,1001.6250000102581,-0.055494134475729415 +200326,1001.6300000102582,-0.0554941006704274 +200327,1001.6350000102583,-0.05549406686466991 +200328,1001.6400000102584,-0.055494033058456384 +200329,1001.6450000102585,-0.05549399925178631 +200330,1001.6500000102586,-0.05549396544465913 +200331,1001.6550000102587,-0.0554939316370743 +200332,1001.6600000102588,-0.055493897829031295 +200333,1001.665000010259,-0.055493864020529575 +200334,1001.6700000102591,-0.0554938302115686 +200335,1001.6750000102592,-0.055493796402147806 +200336,1001.6800000102593,-0.05549376259226669 +200337,1001.6850000102594,-0.05549372878192469 +200338,1001.6900000102595,-0.05549369497112127 +200339,1001.6950000102596,-0.055493661159855906 +200340,1001.7000000102597,-0.05549362734812806 +200341,1001.7050000102598,-0.055493593535937184 +200342,1001.7100000102599,-0.05549355972328273 +200343,1001.71500001026,-0.05549352591016418 +200344,1001.7200000102602,-0.05549349209658098 +200345,1001.7250000102603,-0.055493458282532604 +200346,1001.7300000102604,-0.055493424468018505 +200347,1001.7350000102605,-0.05549339065303816 +200348,1001.7400000102606,-0.055493356837591025 +200349,1001.7450000102607,-0.05549332302167656 +200350,1001.7500000102608,-0.055493289205294234 +200351,1001.7550000102609,-0.055493255388443505 +200352,1001.760000010261,-0.05549322157112384 +200353,1001.7650000102611,-0.05549318775333471 +200354,1001.7700000102612,-0.05549315393507557 +200355,1001.7750000102614,-0.05549312011634588 +200356,1001.7800000102615,-0.05549308629714511 +200357,1001.7850000102616,-0.05549305247747273 +200358,1001.7900000102617,-0.0554930186573282 +200359,1001.7950000102618,-0.055492984836710973 +200360,1001.8000000102619,-0.05549295101562054 +200361,1001.805000010262,-0.055492917194056336 +200362,1001.8100000102621,-0.05549288337201785 +200363,1001.8150000102622,-0.05549284954950453 +200364,1001.8200000102623,-0.055492815726515855 +200365,1001.8250000102624,-0.055492781903051284 +200366,1001.8300000102626,-0.05549274807911029 +200367,1001.8350000102627,-0.055492714254692335 +200368,1001.8400000102628,-0.05549268042979688 +200369,1001.8450000102629,-0.055492646604423386 +200370,1001.850000010263,-0.05549261277857133 +200371,1001.8550000102631,-0.05549257895224018 +200372,1001.8600000102632,-0.0554925451254294 +200373,1001.8650000102633,-0.05549251129813847 +200374,1001.8700000102634,-0.055492477470366834 +200375,1001.8750000102635,-0.05549244364211397 +200376,1001.8800000102636,-0.05549240981337934 +200377,1001.8850000102638,-0.05549237598416242 +200378,1001.8900000102639,-0.05549234215446268 +200379,1001.895000010264,-0.055492308324279566 +200380,1001.9000000102641,-0.05549227449361257 +200381,1001.9050000102642,-0.05549224066246116 +200382,1001.9100000102643,-0.055492206830824786 +200383,1001.9150000102644,-0.055492172998702925 +200384,1001.9200000102645,-0.05549213916609504 +200385,1001.9250000102646,-0.05549210533300063 +200386,1001.9300000102647,-0.055492071499419114 +200387,1001.9350000102648,-0.05549203766535 +200388,1001.940000010265,-0.05549200383079274 +200389,1001.9450000102651,-0.055491969995746813 +200390,1001.9500000102652,-0.05549193616021168 +200391,1001.9550000102653,-0.05549190232418681 +200392,1001.9600000102654,-0.05549186848767168 +200393,1001.9650000102655,-0.05549183465066577 +200394,1001.9700000102656,-0.055491800813168526 +200395,1001.9750000102657,-0.055491766975179435 +200396,1001.9800000102658,-0.05549173313669796 +200397,1001.9850000102659,-0.05549169929772357 +200398,1001.990000010266,-0.05549166545825574 +200399,1001.9950000102662,-0.055491631618293936 +200400,1002.0000000102663,-0.05549159777783764 +200401,1002.0050000102664,-0.05549156393688631 +200402,1002.0100000102665,-0.05549153009543943 +200403,1002.0150000102666,-0.05549149625349647 +200404,1002.0200000102667,-0.05549146241105689 +200405,1002.0250000102668,-0.05549142856812017 +200406,1002.0300000102669,-0.055491394724685776 +200407,1002.035000010267,-0.055491360880753196 +200408,1002.0400000102671,-0.055491327036321876 +200409,1002.0450000102672,-0.05549129319139131 +200410,1002.0500000102674,-0.055491259345960955 +200411,1002.0550000102675,-0.0554912255000303 +200412,1002.0600000102676,-0.0554911916535988 +200413,1002.0650000102677,-0.055491157806665956 +200414,1002.0700000102678,-0.05549112395923122 +200415,1002.0750000102679,-0.05549109011129406 +200416,1002.080000010268,-0.05549105626285396 +200417,1002.0850000102681,-0.0554910224139104 +200418,1002.0900000102682,-0.05549098856446284 +200419,1002.0950000102683,-0.055490954714510765 +200420,1002.1000000102684,-0.05549092086405363 +200421,1002.1050000102686,-0.05549088701309094 +200422,1002.1100000102687,-0.05549085316162214 +200423,1002.1150000102688,-0.05549081930964673 +200424,1002.1200000102689,-0.055490785457164155 +200425,1002.125000010269,-0.05549075160417391 +200426,1002.1300000102691,-0.05549071775067546 +200427,1002.1350000102692,-0.05549068389666829 +200428,1002.1400000102693,-0.05549065004215187 +200429,1002.1450000102694,-0.05549061618712568 +200430,1002.1500000102695,-0.0554905823315892 +200431,1002.1550000102696,-0.055490548475541884 +200432,1002.1600000102698,-0.05549051461898323 +200433,1002.1650000102699,-0.05549048076191271 +200434,1002.17000001027,-0.05549044690432979 +200435,1002.1750000102701,-0.055490413046233956 +200436,1002.1800000102702,-0.05549037918762467 +200437,1002.1850000102703,-0.055490345328501424 +200438,1002.1900000102704,-0.0554903114688637 +200439,1002.1950000102705,-0.055490277608710954 +200440,1002.2000000102706,-0.05549024374804267 +200441,1002.2050000102707,-0.05549020988685834 +200442,1002.2100000102708,-0.05549017602515743 +200443,1002.215000010271,-0.055490142162939404 +200444,1002.2200000102711,-0.055490108300203775 +200445,1002.2250000102712,-0.05549007443695 +200446,1002.2300000102713,-0.05549004057317754 +200447,1002.2350000102714,-0.0554900067088859 +200448,1002.2400000102715,-0.055489972844074545 +200449,1002.2450000102716,-0.05548993897874296 +200450,1002.2500000102717,-0.05548990511289061 +200451,1002.2550000102718,-0.055489871246517 +200452,1002.2600000102719,-0.05548983737962158 +200453,1002.265000010272,-0.05548980351220385 +200454,1002.2700000102722,-0.055489769644263276 +200455,1002.2750000102723,-0.05548973577579935 +200456,1002.2800000102724,-0.05548970190681153 +200457,1002.2850000102725,-0.05548966803729932 +200458,1002.2900000102726,-0.05548963416726218 +200459,1002.2950000102727,-0.05548960029669961 +200460,1002.3000000102728,-0.05548956642561107 +200461,1002.3050000102729,-0.05548953255399606 +200462,1002.310000010273,-0.05548949868185403 +200463,1002.3150000102731,-0.0554894648091845 +200464,1002.3200000102732,-0.05548943093598692 +200465,1002.3250000102734,-0.05548939706226078 +200466,1002.3300000102735,-0.05548936318800557 +200467,1002.3350000102736,-0.055489329313220766 +200468,1002.3400000102737,-0.05548929543790584 +200469,1002.3450000102738,-0.05548926156206028 +200470,1002.3500000102739,-0.055489227685683574 +200471,1002.355000010274,-0.0554891938087752 +200472,1002.3600000102741,-0.05548915993133463 +200473,1002.3650000102742,-0.05548912605336135 +200474,1002.3700000102743,-0.05548909217485485 +200475,1002.3750000102744,-0.0554890582958146 +200476,1002.3800000102746,-0.0554890244162401 +200477,1002.3850000102747,-0.055488990536130815 +200478,1002.3900000102748,-0.055488956655486234 +200479,1002.3950000102749,-0.05548892277430585 +200480,1002.400000010275,-0.055488888892589135 +200481,1002.4050000102751,-0.05548885501033557 +200482,1002.4100000102752,-0.055488821127544656 +200483,1002.4150000102753,-0.05548878724421586 +200484,1002.4200000102754,-0.05548875336034867 +200485,1002.4250000102755,-0.05548871947594256 +200486,1002.4300000102756,-0.05548868559099704 +200487,1002.4350000102758,-0.05548865170551156 +200488,1002.4400000102759,-0.05548861781948563 +200489,1002.445000010276,-0.055488583932918716 +200490,1002.4500000102761,-0.05548855004581033 +200491,1002.4550000102762,-0.055488516158159924 +200492,1002.4600000102763,-0.05548848226996701 +200493,1002.4650000102764,-0.055488448381231056 +200494,1002.4700000102765,-0.05548841449195155 +200495,1002.4750000102766,-0.055488380602127976 +200496,1002.4800000102767,-0.05548834671175983 +200497,1002.4850000102768,-0.05548831282084659 +200498,1002.490000010277,-0.055488278929387735 +200499,1002.4950000102771,-0.05548824503738277 +200500,1002.5000000102772,-0.05548821114483116 +200501,1002.5050000102773,-0.0554881772517324 +200502,1002.5100000102774,-0.05548814335808598 +200503,1002.5150000102775,-0.05548810946389138 +200504,1002.5200000102776,-0.055488075569148095 +200505,1002.5250000102777,-0.055488041673855605 +200506,1002.5300000102778,-0.055488007778013396 +200507,1002.5350000102779,-0.05548797388162096 +200508,1002.540000010278,-0.055487939984677784 +200509,1002.5450000102782,-0.05548790608718335 +200510,1002.5500000102783,-0.05548787218913715 +200511,1002.5550000102784,-0.05548783829053866 +200512,1002.5600000102785,-0.05548780439138739 +200513,1002.5650000102786,-0.05548777049168281 +200514,1002.5700000102787,-0.05548773659142441 +200515,1002.5750000102788,-0.055487702690611686 +200516,1002.5800000102789,-0.055487668789244125 +200517,1002.585000010279,-0.05548763488732121 +200518,1002.5900000102791,-0.055487600984842435 +200519,1002.5950000102793,-0.055487567081807285 +200520,1002.6000000102794,-0.05548753317821525 +200521,1002.6050000102795,-0.055487499274065814 +200522,1002.6100000102796,-0.055487465369358474 +200523,1002.6150000102797,-0.055487431464092726 +200524,1002.6200000102798,-0.055487397558268044 +200525,1002.6250000102799,-0.05548736365188393 +200526,1002.63000001028,-0.055487329744939855 +200527,1002.6350000102801,-0.05548729583743534 +200528,1002.6400000102802,-0.055487261929369855 +200529,1002.6450000102803,-0.05548722802074289 +200530,1002.6500000102805,-0.055487194111553936 +200531,1002.6550000102806,-0.055487160201802485 +200532,1002.6600000102807,-0.055487126291488026 +200533,1002.6650000102808,-0.055487092380610066 +200534,1002.6700000102809,-0.05548705846916808 +200535,1002.675000010281,-0.05548702455716156 +200536,1002.6800000102811,-0.05548699064458999 +200537,1002.6850000102812,-0.05548695673145288 +200538,1002.6900000102813,-0.055486922817749716 +200539,1002.6950000102814,-0.05548688890347998 +200540,1002.7000000102815,-0.055486854988643176 +200541,1002.7050000102817,-0.05548682107323879 +200542,1002.7100000102818,-0.05548678715726631 +200543,1002.7150000102819,-0.05548675324072524 +200544,1002.720000010282,-0.05548671932361505 +200545,1002.7250000102821,-0.055486685405935265 +200546,1002.7300000102822,-0.05548665148768535 +200547,1002.7350000102823,-0.05548661756886482 +200548,1002.7400000102824,-0.05548658364947315 +200549,1002.7450000102825,-0.05548654972950983 +200550,1002.7500000102826,-0.055486515808974374 +200551,1002.7550000102827,-0.055486481887866264 +200552,1002.7600000102829,-0.055486447966185 +200553,1002.765000010283,-0.05548641404393007 +200554,1002.7700000102831,-0.055486380121100964 +200555,1002.7750000102832,-0.05548634619769719 +200556,1002.7800000102833,-0.055486312273718225 +200557,1002.7850000102834,-0.05548627834916357 +200558,1002.7900000102835,-0.05548624442403272 +200559,1002.7950000102836,-0.05548621049832518 +200560,1002.8000000102837,-0.05548617657204042 +200561,1002.8050000102838,-0.05548614264517796 +200562,1002.8100000102839,-0.0554861087177373 +200563,1002.815000010284,-0.055486074789717905 +200564,1002.8200000102842,-0.055486040861119294 +200565,1002.8250000102843,-0.05548600693194095 +200566,1002.8300000102844,-0.05548597300218238 +200567,1002.8350000102845,-0.055485939071843064 +200568,1002.8400000102846,-0.05548590514092251 +200569,1002.8450000102847,-0.05548587120942021 +200570,1002.8500000102848,-0.055485837277335665 +200571,1002.8550000102849,-0.05548580334466837 +200572,1002.860000010285,-0.05548576941141782 +200573,1002.8650000102851,-0.055485735477583516 +200574,1002.8700000102853,-0.05548570154316495 +200575,1002.8750000102854,-0.05548566760816162 +200576,1002.8800000102855,-0.05548563367257302 +200577,1002.8850000102856,-0.055485599736398654 +200578,1002.8900000102857,-0.05548556579963801 +200579,1002.8950000102858,-0.0554855318622906 +200580,1002.9000000102859,-0.05548549792435591 +200581,1002.905000010286,-0.05548546398583345 +200582,1002.9100000102861,-0.0554854300467227 +200583,1002.9150000102862,-0.05548539610702317 +200584,1002.9200000102863,-0.05548536216673435 +200585,1002.9250000102865,-0.05548532822585575 +200586,1002.9300000102866,-0.055485294284386866 +200587,1002.9350000102867,-0.055485260342327196 +200588,1002.9400000102868,-0.05548522639967622 +200589,1002.9450000102869,-0.05548519245643347 +200590,1002.950000010287,-0.05548515851259842 +200591,1002.9550000102871,-0.05548512456817058 +200592,1002.9600000102872,-0.05548509062314945 +200593,1002.9650000102873,-0.05548505667753453 +200594,1002.9700000102874,-0.055485022731325315 +200595,1002.9750000102875,-0.05548498878452131 +200596,1002.9800000102877,-0.05548495483712201 +200597,1002.9850000102878,-0.05548492088912691 +200598,1002.9900000102879,-0.055484886940535535 +200599,1002.995000010288,-0.055484852991347366 +200600,1003.0000000102881,-0.055484819041561904 +200601,1003.0050000102882,-0.05548478509117865 +200602,1003.0100000102883,-0.055484751140197124 +200603,1003.0150000102884,-0.0554847171886168 +200604,1003.0200000102885,-0.055484683236437196 +200605,1003.0250000102886,-0.05548464928365779 +200606,1003.0300000102887,-0.055484615330278104 +200607,1003.0350000102889,-0.055484581376297644 +200608,1003.040000010289,-0.0554845474217159 +200609,1003.0450000102891,-0.055484513466532395 +200610,1003.0500000102892,-0.055484479510746594 +200611,1003.0550000102893,-0.05548444555435803 +200612,1003.0600000102894,-0.05548441159736619 +200613,1003.0650000102895,-0.055484377639770585 +200614,1003.0700000102896,-0.05548434368157072 +200615,1003.0750000102897,-0.055484309722766086 +200616,1003.0800000102898,-0.0554842757633562 +200617,1003.08500001029,-0.05548424180334054 +200618,1003.09000001029,-0.05548420784271863 +200619,1003.0950000102902,-0.05548417388148998 +200620,1003.1000000102903,-0.055484139919654084 +200621,1003.1050000102904,-0.05548410595721045 +200622,1003.1100000102905,-0.05548407199415857 +200623,1003.1150000102906,-0.05548403803049796 +200624,1003.1200000102907,-0.05548400406622811 +200625,1003.1250000102908,-0.055483970101348534 +200626,1003.1300000102909,-0.055483936135858745 +200627,1003.135000010291,-0.05548390216975822 +200628,1003.1400000102911,-0.0554838682030465 +200629,1003.1450000102913,-0.05548383423572307 +200630,1003.1500000102914,-0.05548380026778743 +200631,1003.1550000102915,-0.05548376629923911 +200632,1003.1600000102916,-0.055483732330077584 +200633,1003.1650000102917,-0.05548369836030238 +200634,1003.1700000102918,-0.05548366438991299 +200635,1003.1750000102919,-0.055483630418908934 +200636,1003.180000010292,-0.0554835964472897 +200637,1003.1850000102921,-0.055483562475054794 +200638,1003.1900000102922,-0.05548352850220374 +200639,1003.1950000102923,-0.055483494528736035 +200640,1003.2000000102925,-0.05548346055465119 +200641,1003.2050000102926,-0.0554834265799487 +200642,1003.2100000102927,-0.05548339260462808 +200643,1003.2150000102928,-0.055483358628688834 +200644,1003.2200000102929,-0.055483324652130475 +200645,1003.225000010293,-0.055483290674952515 +200646,1003.2300000102931,-0.05548325669715445 +200647,1003.2350000102932,-0.05548322271873578 +200648,1003.2400000102933,-0.05548318873969602 +200649,1003.2450000102934,-0.05548315476003468 +200650,1003.2500000102935,-0.055483120779751274 +200651,1003.2550000102937,-0.05548308679884531 +200652,1003.2600000102938,-0.05548305281731628 +200653,1003.2650000102939,-0.055483018835163704 +200654,1003.270000010294,-0.05548298485238709 +200655,1003.2750000102941,-0.055482950868985956 +200656,1003.2800000102942,-0.05548291688495979 +200657,1003.2850000102943,-0.05548288290030812 +200658,1003.2900000102944,-0.055482848915030435 +200659,1003.2950000102945,-0.05548281492912625 +200660,1003.3000000102946,-0.05548278094259509 +200661,1003.3050000102947,-0.05548274695543646 +200662,1003.3100000102949,-0.055482712967649846 +200663,1003.315000010295,-0.05548267897923479 +200664,1003.3200000102951,-0.055482644990190795 +200665,1003.3250000102952,-0.05548261100051735 +200666,1003.3300000102953,-0.05548257701021399 +200667,1003.3350000102954,-0.055482543019280205 +200668,1003.3400000102955,-0.05548250902771551 +200669,1003.3450000102956,-0.05548247503551943 +200670,1003.3500000102957,-0.05548244104269146 +200671,1003.3550000102958,-0.05548240704923112 +200672,1003.360000010296,-0.05548237305513792 +200673,1003.3650000102961,-0.05548233906041136 +200674,1003.3700000102962,-0.05548230506505097 +200675,1003.3750000102963,-0.05548227106905624 +200676,1003.3800000102964,-0.0554822370724267 +200677,1003.3850000102965,-0.05548220307516185 +200678,1003.3900000102966,-0.05548216907726122 +200679,1003.3950000102967,-0.0554821350787243 +200680,1003.4000000102968,-0.055482101079550615 +200681,1003.4050000102969,-0.05548206707973968 +200682,1003.410000010297,-0.055482033079290984 +200683,1003.4150000102971,-0.05548199907820407 +200684,1003.4200000102973,-0.055481965076478436 +200685,1003.4250000102974,-0.05548193107411359 +200686,1003.4300000102975,-0.055481897071109045 +200687,1003.4350000102976,-0.05548186306746433 +200688,1003.4400000102977,-0.05548182906317895 +200689,1003.4450000102978,-0.05548179505825242 +200690,1003.4500000102979,-0.05548176105268425 +200691,1003.455000010298,-0.05548172704647395 +200692,1003.4600000102981,-0.055481693039621034 +200693,1003.4650000102982,-0.05548165903212503 +200694,1003.4700000102983,-0.05548162502398543 +200695,1003.4750000102985,-0.055481591015201774 +200696,1003.4800000102986,-0.055481557005773556 +200697,1003.4850000102987,-0.055481522995700305 +200698,1003.4900000102988,-0.05548148898498152 +200699,1003.4950000102989,-0.055481454973616735 +200700,1003.500000010299,-0.05548142096160545 +200701,1003.5050000102991,-0.05548138694894718 +200702,1003.5100000102992,-0.05548135293564144 +200703,1003.5150000102993,-0.05548131892168776 +200704,1003.5200000102994,-0.05548128490708564 +200705,1003.5250000102996,-0.05548125089183461 +200706,1003.5300000102997,-0.055481216875934165 +200707,1003.5350000102998,-0.05548118285938384 +200708,1003.5400000102999,-0.055481148842183144 +200709,1003.5450000103,-0.0554811148243316 +200710,1003.5500000103001,-0.05548108080582871 +200711,1003.5550000103002,-0.055481046786674 +200712,1003.5600000103003,-0.055481012766867 +200713,1003.5650000103004,-0.05548097874640721 +200714,1003.5700000103005,-0.055480944725294135 +200715,1003.5750000103006,-0.055480910703527314 +200716,1003.5800000103008,-0.05548087668110625 +200717,1003.5850000103009,-0.05548084265803047 +200718,1003.590000010301,-0.055480808634299494 +200719,1003.5950000103011,-0.05548077460991283 +200720,1003.6000000103012,-0.05548074058487001 +200721,1003.6050000103013,-0.05548070655917053 +200722,1003.6100000103014,-0.05548067253281393 +200723,1003.6150000103015,-0.055480638505799706 +200724,1003.6200000103016,-0.05548060447812739 +200725,1003.6250000103017,-0.055480570449796505 +200726,1003.6300000103018,-0.05548053642080656 +200727,1003.635000010302,-0.05548050239115709 +200728,1003.6400000103021,-0.0554804683608476 +200729,1003.6450000103022,-0.05548043432987761 +200730,1003.6500000103023,-0.055480400298246635 +200731,1003.6550000103024,-0.055480366265954206 +200732,1003.6600000103025,-0.05548033223299983 +200733,1003.6650000103026,-0.05548029819938303 +200734,1003.6700000103027,-0.055480264165103335 +200735,1003.6750000103028,-0.05548023013016027 +200736,1003.6800000103029,-0.05548019609455334 +200737,1003.685000010303,-0.055480162058282066 +200738,1003.6900000103032,-0.05548012802134596 +200739,1003.6950000103033,-0.055480093983744566 +200740,1003.7000000103034,-0.055480059945477396 +200741,1003.7050000103035,-0.05548002590654396 +200742,1003.7100000103036,-0.05547999186694378 +200743,1003.7150000103037,-0.055479957826676383 +200744,1003.7200000103038,-0.055479923785741306 +200745,1003.7250000103039,-0.05547988974413805 +200746,1003.730000010304,-0.05547985570186614 +200747,1003.7350000103041,-0.05547982165892511 +200748,1003.7400000103042,-0.05547978761531445 +200749,1003.7450000103044,-0.05547975357103371 +200750,1003.7500000103045,-0.055479719526082404 +200751,1003.7550000103046,-0.05547968548046006 +200752,1003.7600000103047,-0.0554796514341662 +200753,1003.7650000103048,-0.055479617387200336 +200754,1003.7700000103049,-0.055479583339562 +200755,1003.775000010305,-0.05547954929125071 +200756,1003.7800000103051,-0.05547951524226598 +200757,1003.7850000103052,-0.05547948119260735 +200758,1003.7900000103053,-0.05547944714227434 +200759,1003.7950000103054,-0.055479413091266465 +200760,1003.8000000103056,-0.05547937903958325 +200761,1003.8050000103057,-0.055479344987224226 +200762,1003.8100000103058,-0.05547931093418892 +200763,1003.8150000103059,-0.05547927688047683 +200764,1003.820000010306,-0.055479242826087516 +200765,1003.8250000103061,-0.055479208771020486 +200766,1003.8300000103062,-0.05547917471527525 +200767,1003.8350000103063,-0.05547914065885135 +200768,1003.8400000103064,-0.0554791066017483 +200769,1003.8450000103065,-0.05547907254396563 +200770,1003.8500000103066,-0.05547903848550287 +200771,1003.8550000103068,-0.055479004426359536 +200772,1003.8600000103069,-0.055478970366535166 +200773,1003.865000010307,-0.05547893630602927 +200774,1003.8700000103071,-0.05547890224484138 +200775,1003.8750000103072,-0.05547886818297103 +200776,1003.8800000103073,-0.05547883412041773 +200777,1003.8850000103074,-0.05547880005718102 +200778,1003.8900000103075,-0.05547876599326041 +200779,1003.8950000103076,-0.055478731928655434 +200780,1003.9000000103077,-0.05547869786336562 +200781,1003.9050000103078,-0.0554786637973905 +200782,1003.910000010308,-0.055478629730729596 +200783,1003.9150000103081,-0.055478595663382424 +200784,1003.9200000103082,-0.05547856159534852 +200785,1003.9250000103083,-0.055478527526627415 +200786,1003.9300000103084,-0.055478493457218635 +200787,1003.9350000103085,-0.055478459387121704 +200788,1003.9400000103086,-0.05547842531633614 +200789,1003.9450000103087,-0.05547839124486149 +200790,1003.9500000103088,-0.05547835717269726 +200791,1003.9550000103089,-0.055478323099843 +200792,1003.960000010309,-0.055478289026298214 +200793,1003.9650000103092,-0.05547825495206246 +200794,1003.9700000103093,-0.05547822087713524 +200795,1003.9750000103094,-0.05547818680151609 +200796,1003.9800000103095,-0.05547815272520454 +200797,1003.9850000103096,-0.055478118648200125 +200798,1003.9900000103097,-0.055478084570502365 +200799,1003.9950000103098,-0.055478050492110784 +200800,1004.0000000103099,-0.05547801641302492 +200801,1004.00500001031,-0.0554779823332443 +200802,1004.0100000103101,-0.05547794825276846 +200803,1004.0150000103102,-0.05547791417159692 +200804,1004.0200000103104,-0.05547788008972921 +200805,1004.0250000103105,-0.05547784600716487 +200806,1004.0300000103106,-0.05547781192390342 +200807,1004.0350000103107,-0.055477777839944384 +200808,1004.0400000103108,-0.05547774375528731 +200809,1004.0450000103109,-0.055477709669931714 +200810,1004.050000010311,-0.05547767558387713 +200811,1004.0550000103111,-0.05547764149712309 +200812,1004.0600000103112,-0.05547760740966912 +200813,1004.0650000103113,-0.055477573321514755 +200814,1004.0700000103114,-0.05547753923265954 +200815,1004.0750000103116,-0.05547750514310298 +200816,1004.0800000103117,-0.055477471052844625 +200817,1004.0850000103118,-0.055477436961883994 +200818,1004.0900000103119,-0.055477402870220634 +200819,1004.095000010312,-0.05547736877785405 +200820,1004.1000000103121,-0.0554773346847838 +200821,1004.1050000103122,-0.055477300591009394 +200822,1004.1100000103123,-0.05547726649653039 +200823,1004.1150000103124,-0.0554772324013463 +200824,1004.1200000103125,-0.055477198305456665 +200825,1004.1250000103126,-0.055477164208861014 +200826,1004.1300000103128,-0.05547713011155888 +200827,1004.1350000103129,-0.0554770960135498 +200828,1004.140000010313,-0.0554770619148333 +200829,1004.1450000103131,-0.05547702781540892 +200830,1004.1500000103132,-0.05547699371527618 +200831,1004.1550000103133,-0.055476959614434634 +200832,1004.1600000103134,-0.05547692551288381 +200833,1004.1650000103135,-0.05547689141062322 +200834,1004.1700000103136,-0.05547685730765242 +200835,1004.1750000103137,-0.05547682320397094 +200836,1004.1800000103138,-0.055476789099578316 +200837,1004.185000010314,-0.05547675499447406 +200838,1004.1900000103141,-0.05547672088865774 +200839,1004.1950000103142,-0.055476686782128866 +200840,1004.2000000103143,-0.05547665267488698 +200841,1004.2050000103144,-0.05547661856693162 +200842,1004.2100000103145,-0.055476584458262326 +200843,1004.2150000103146,-0.05547655034887862 +200844,1004.2200000103147,-0.055476516238780034 +200845,1004.2250000103148,-0.055476482127966124 +200846,1004.2300000103149,-0.055476448016436405 +200847,1004.235000010315,-0.055476413904190426 +200848,1004.2400000103152,-0.055476379791227715 +200849,1004.2450000103153,-0.0554763456775478 +200850,1004.2500000103154,-0.055476311563150235 +200851,1004.2550000103155,-0.05547627744803454 +200852,1004.2600000103156,-0.055476243332200255 +200853,1004.2650000103157,-0.055476209215646936 +200854,1004.2700000103158,-0.05547617509837409 +200855,1004.2750000103159,-0.055476140980381276 +200856,1004.280000010316,-0.05547610686166802 +200857,1004.2850000103161,-0.05547607274223385 +200858,1004.2900000103162,-0.055476038622078325 +200859,1004.2950000103164,-0.055476004501200965 +200860,1004.3000000103165,-0.05547597037960131 +200861,1004.3050000103166,-0.0554759362572789 +200862,1004.3100000103167,-0.05547590213423328 +200863,1004.3150000103168,-0.05547586801046397 +200864,1004.3200000103169,-0.05547583388597053 +200865,1004.325000010317,-0.05547579976075248 +200866,1004.3300000103171,-0.05547576563480936 +200867,1004.3350000103172,-0.055475731508140724 +200868,1004.3400000103173,-0.055475697380746085 +200869,1004.3450000103174,-0.055475663252625 +200870,1004.3500000103176,-0.055475629123777 +200871,1004.3550000103177,-0.05547559499420163 +200872,1004.3600000103178,-0.055475560863898425 +200873,1004.3650000103179,-0.055475526732866924 +200874,1004.370000010318,-0.055475492601106666 +200875,1004.3750000103181,-0.05547545846861719 +200876,1004.3800000103182,-0.05547542433539803 +200877,1004.3850000103183,-0.055475390201448746 +200878,1004.3900000103184,-0.05547535606676886 +200879,1004.3950000103185,-0.055475321931357915 +200880,1004.4000000103186,-0.05547528779521544 +200881,1004.4050000103188,-0.05547525365834099 +200882,1004.4100000103189,-0.0554752195207341 +200883,1004.415000010319,-0.055475185382394314 +200884,1004.4200000103191,-0.05547515124332118 +200885,1004.4250000103192,-0.05547511710351422 +200886,1004.4300000103193,-0.055475082962972995 +200887,1004.4350000103194,-0.055475048821697015 +200888,1004.4400000103195,-0.05547501467968586 +200889,1004.4450000103196,-0.05547498053693904 +200890,1004.4500000103197,-0.05547494639345611 +200891,1004.4550000103198,-0.05547491224923661 +200892,1004.46000001032,-0.05547487810428008 +200893,1004.4650000103201,-0.05547484395858607 +200894,1004.4700000103202,-0.05547480981215411 +200895,1004.4750000103203,-0.05547477566498375 +200896,1004.4800000103204,-0.05547474151707454 +200897,1004.4850000103205,-0.055474707368425996 +200898,1004.4900000103206,-0.055474673219037686 +200899,1004.4950000103207,-0.05547463906890913 +200900,1004.5000000103208,-0.05547460491803989 +200901,1004.5050000103209,-0.0554745707664295 +200902,1004.510000010321,-0.055474536614077495 +200903,1004.5150000103212,-0.05547450246098345 +200904,1004.5200000103213,-0.05547446830714686 +200905,1004.5250000103214,-0.055474434152567316 +200906,1004.5300000103215,-0.055474399997244336 +200907,1004.5350000103216,-0.05547436584117746 +200908,1004.5400000103217,-0.05547433168436625 +200909,1004.5450000103218,-0.05547429752681023 +200910,1004.5500000103219,-0.055474263368508955 +200911,1004.555000010322,-0.05547422920946197 +200912,1004.5600000103221,-0.05547419504966881 +200913,1004.5650000103223,-0.05547416088912902 +200914,1004.5700000103224,-0.05547412672784216 +200915,1004.5750000103225,-0.055474092565807764 +200916,1004.5800000103226,-0.055474058403025384 +200917,1004.5850000103227,-0.05547402423949455 +200918,1004.5900000103228,-0.05547399007521483 +200919,1004.5950000103229,-0.05547395591018575 +200920,1004.600000010323,-0.055473921744406865 +200921,1004.6050000103231,-0.05547388757787772 +200922,1004.6100000103232,-0.05547385341059786 +200923,1004.6150000103233,-0.05547381924256682 +200924,1004.6200000103235,-0.05547378507378416 +200925,1004.6250000103236,-0.055473750904249414 +200926,1004.6300000103237,-0.05547371673396213 +200927,1004.6350000103238,-0.055473682562921865 +200928,1004.6400000103239,-0.05547364839112815 +200929,1004.645000010324,-0.055473614218580554 +200930,1004.6500000103241,-0.055473580045278595 +200931,1004.6550000103242,-0.055473545871221844 +200932,1004.6600000103243,-0.05547351169640983 +200933,1004.6650000103244,-0.05547347752084211 +200934,1004.6700000103245,-0.05547344334451823 +200935,1004.6750000103247,-0.05547340916743775 +200936,1004.6800000103248,-0.055473374989600206 +200937,1004.6850000103249,-0.055473340811005134 +200938,1004.690000010325,-0.05547330663165209 +200939,1004.6950000103251,-0.055473272451540635 +200940,1004.7000000103252,-0.05547323827067031 +200941,1004.7050000103253,-0.05547320408904065 +200942,1004.7100000103254,-0.05547316990665122 +200943,1004.7150000103255,-0.05547313572350156 +200944,1004.7200000103256,-0.055473101539591216 +200945,1004.7250000103257,-0.05547306735491973 +200946,1004.7300000103259,-0.05547303316948669 +200947,1004.735000010326,-0.05547299898329159 +200948,1004.7400000103261,-0.05547296479633401 +200949,1004.7450000103262,-0.05547293060861351 +200950,1004.7500000103263,-0.05547289642012962 +200951,1004.7550000103264,-0.05547286223088189 +200952,1004.7600000103265,-0.05547282804086987 +200953,1004.7650000103266,-0.05547279385009313 +200954,1004.7700000103267,-0.05547275965855118 +200955,1004.7750000103268,-0.05547272546624362 +200956,1004.780000010327,-0.055472691273169956 +200957,1004.785000010327,-0.05547265707932977 +200958,1004.7900000103272,-0.055472622884722586 +200959,1004.7950000103273,-0.05547258868934797 +200960,1004.8000000103274,-0.05547255449320548 +200961,1004.8050000103275,-0.055472520296294646 +200962,1004.8100000103276,-0.055472486098615034 +200963,1004.8150000103277,-0.05547245190016619 +200964,1004.8200000103278,-0.05547241770094768 +200965,1004.8250000103279,-0.055472383500959024 +200966,1004.830000010328,-0.0554723493001998 +200967,1004.8350000103281,-0.05547231509866954 +200968,1004.8400000103283,-0.055472280896367805 +200969,1004.8450000103284,-0.055472246693294154 +200970,1004.8500000103285,-0.05547221248944814 +200971,1004.8550000103286,-0.055472178284829296 +200972,1004.8600000103287,-0.0554721440794372 +200973,1004.8650000103288,-0.05547210987327139 +200974,1004.8700000103289,-0.05547207566633142 +200975,1004.875000010329,-0.055472041458616846 +200976,1004.8800000103291,-0.05547200725012721 +200977,1004.8850000103292,-0.05547197304086207 +200978,1004.8900000103293,-0.05547193883082099 +200979,1004.8950000103295,-0.055471904620003516 +200980,1004.9000000103296,-0.05547187040840919 +200981,1004.9050000103297,-0.055471836196037586 +200982,1004.9100000103298,-0.05547180198288824 +200983,1004.9150000103299,-0.05547176776896072 +200984,1004.92000001033,-0.05547173355425457 +200985,1004.9250000103301,-0.05547169933876936 +200986,1004.9300000103302,-0.05547166512250462 +200987,1004.9350000103303,-0.055471630905459916 +200988,1004.9400000103304,-0.0554715966876348 +200989,1004.9450000103305,-0.055471562469028825 +200990,1004.9500000103307,-0.05547152824964155 +200991,1004.9550000103308,-0.05547149402947254 +200992,1004.9600000103309,-0.055471459808521334 +200993,1004.965000010331,-0.05547142558678749 +200994,1004.9700000103311,-0.055471391364270574 +200995,1004.9750000103312,-0.05547135714097013 +200996,1004.9800000103313,-0.05547132291688571 +200997,1004.9850000103314,-0.05547128869201689 +200998,1004.9900000103315,-0.05547125446636321 +200999,1004.9950000103316,-0.05547122023992422 +201000,1005.0000000103317,-0.05547118601269949 +201001,1005.0050000103319,-0.055471151784688574 +201002,1005.010000010332,-0.055471117555891014 +201003,1005.0150000103321,-0.05547108332630639 +201004,1005.0200000103322,-0.055471049095934234 +201005,1005.0250000103323,-0.05547101486477412 +201006,1005.0300000103324,-0.0554709806328256 +201007,1005.0350000103325,-0.05547094640008823 +201008,1005.0400000103326,-0.05547091216656156 +201009,1005.0450000103327,-0.05547087793224516 +201010,1005.0500000103328,-0.055470843697138575 +201011,1005.055000010333,-0.055470809461241374 +201012,1005.060000010333,-0.05547077522455311 +201013,1005.0650000103332,-0.055470740987073344 +201014,1005.0700000103333,-0.05547070674880162 +201015,1005.0750000103334,-0.055470672509737515 +201016,1005.0800000103335,-0.055470638269880565 +201017,1005.0850000103336,-0.05547060402923036 +201018,1005.0900000103337,-0.05547056978778643 +201019,1005.0950000103338,-0.055470535545548344 +201020,1005.1000000103339,-0.05547050130251567 +201021,1005.105000010334,-0.05547046705868796 +201022,1005.1100000103341,-0.05547043281406477 +201023,1005.1150000103343,-0.05547039856864565 +201024,1005.1200000103344,-0.055470364322430174 +201025,1005.1250000103345,-0.05547033007541789 +201026,1005.1300000103346,-0.05547029582760837 +201027,1005.1350000103347,-0.05547026157900116 +201028,1005.1400000103348,-0.055470227329595834 +201029,1005.1450000103349,-0.05547019307939193 +201030,1005.150000010335,-0.05547015882838903 +201031,1005.1550000103351,-0.055470124576586684 +201032,1005.1600000103352,-0.05547009032398445 +201033,1005.1650000103353,-0.055470056070581905 +201034,1005.1700000103355,-0.05547002181637859 +201035,1005.1750000103356,-0.055469987561374084 +201036,1005.1800000103357,-0.05546995330556793 +201037,1005.1850000103358,-0.0554699190489597 +201038,1005.1900000103359,-0.055469884791548935 +201039,1005.195000010336,-0.05546985053333522 +201040,1005.2000000103361,-0.05546981627431811 +201041,1005.2050000103362,-0.05546978201449717 +201042,1005.2100000103363,-0.05546974775387196 +201043,1005.2150000103364,-0.05546971349244203 +201044,1005.2200000103365,-0.05546967923020695 +201045,1005.2250000103367,-0.055469644967166276 +201046,1005.2300000103368,-0.05546961070331958 +201047,1005.2350000103369,-0.05546957643866642 +201048,1005.240000010337,-0.05546954217320636 +201049,1005.2450000103371,-0.055469507906938956 +201050,1005.2500000103372,-0.05546947363986378 +201051,1005.2550000103373,-0.055469439371980386 +201052,1005.2600000103374,-0.055469405103288356 +201053,1005.2650000103375,-0.055469370833787224 +201054,1005.2700000103376,-0.05546933656347657 +201055,1005.2750000103377,-0.055469302292355964 +201056,1005.2800000103379,-0.05546926802042495 +201057,1005.285000010338,-0.05546923374768311 +201058,1005.2900000103381,-0.05546919947412998 +201059,1005.2950000103382,-0.05546916519976516 +201060,1005.3000000103383,-0.05546913092458819 +201061,1005.3050000103384,-0.055469096648598636 +201062,1005.3100000103385,-0.05546906237179607 +201063,1005.3150000103386,-0.05546902809418006 +201064,1005.3200000103387,-0.055468993815750156 +201065,1005.3250000103388,-0.055468959536505935 +201066,1005.330000010339,-0.05546892525644695 +201067,1005.3350000103391,-0.055468890975572775 +201068,1005.3400000103392,-0.05546885669388297 +201069,1005.3450000103393,-0.05546882241137711 +201070,1005.3500000103394,-0.05546878812805474 +201071,1005.3550000103395,-0.055468753843915454 +201072,1005.3600000103396,-0.055468719558958796 +201073,1005.3650000103397,-0.05546868527318433 +201074,1005.3700000103398,-0.05546865098659164 +201075,1005.3750000103399,-0.055468616699180275 +201076,1005.38000001034,-0.05546858241094981 +201077,1005.3850000103401,-0.0554685481218998 +201078,1005.3900000103403,-0.05546851383202983 +201079,1005.3950000103404,-0.05546847954133945 +201080,1005.4000000103405,-0.055468445249828226 +201081,1005.4050000103406,-0.05546841095749574 +201082,1005.4100000103407,-0.05546837666434153 +201083,1005.4150000103408,-0.055468342370365194 +201084,1005.4200000103409,-0.05546830807556628 +201085,1005.425000010341,-0.05546827377994437 +201086,1005.4300000103411,-0.05546823948349902 +201087,1005.4350000103412,-0.05546820518622981 +201088,1005.4400000103414,-0.055468170888136284 +201089,1005.4450000103415,-0.05546813658921804 +201090,1005.4500000103416,-0.055468102289474616 +201091,1005.4550000103417,-0.055468067988905606 +201092,1005.4600000103418,-0.055468033687510555 +201093,1005.4650000103419,-0.05546799938528905 +201094,1005.470000010342,-0.05546796508224064 +201095,1005.4750000103421,-0.05546793077836492 +201096,1005.4800000103422,-0.055467896473661425 +201097,1005.4850000103423,-0.05546786216812976 +201098,1005.4900000103424,-0.055467827861769466 +201099,1005.4950000103426,-0.055467793554580126 +201100,1005.5000000103427,-0.055467759246561305 +201101,1005.5050000103428,-0.05546772493771256 +201102,1005.5100000103429,-0.05546769062803348 +201103,1005.515000010343,-0.05546765631752362 +201104,1005.5200000103431,-0.05546762200618257 +201105,1005.5250000103432,-0.05546758769400988 +201106,1005.5300000103433,-0.05546755338100512 +201107,1005.5350000103434,-0.05546751906716787 +201108,1005.5400000103435,-0.0554674847524977 +201109,1005.5450000103436,-0.05546745043699417 +201110,1005.5500000103438,-0.055467416120656865 +201111,1005.5550000103439,-0.05546738180348534 +201112,1005.560000010344,-0.05546734748547917 +201113,1005.5650000103441,-0.05546731316663792 +201114,1005.5700000103442,-0.05546727884696118 +201115,1005.5750000103443,-0.05546724452644851 +201116,1005.5800000103444,-0.055467210205099475 +201117,1005.5850000103445,-0.055467175882913666 +201118,1005.5900000103446,-0.05546714155989064 +201119,1005.5950000103447,-0.05546710723602996 +201120,1005.6000000103448,-0.05546707291133122 +201121,1005.605000010345,-0.05546703858579397 +201122,1005.6100000103451,-0.05546700425941779 +201123,1005.6150000103452,-0.055466969932202265 +201124,1005.6200000103453,-0.05546693560414694 +201125,1005.6250000103454,-0.055466901275251404 +201126,1005.6300000103455,-0.055466866945515225 +201127,1005.6350000103456,-0.05546683261493798 +201128,1005.6400000103457,-0.055466798283519254 +201129,1005.6450000103458,-0.0554667639512586 +201130,1005.6500000103459,-0.05546672961815558 +201131,1005.655000010346,-0.05546669528420979 +201132,1005.6600000103462,-0.0554666609494208 +201133,1005.6650000103463,-0.05546662661378818 +201134,1005.6700000103464,-0.05546659227731151 +201135,1005.6750000103465,-0.055466557939990356 +201136,1005.6800000103466,-0.055466523601824295 +201137,1005.6850000103467,-0.05546648926281288 +201138,1005.6900000103468,-0.055466454922955724 +201139,1005.6950000103469,-0.05546642058225237 +201140,1005.700000010347,-0.05546638624070241 +201141,1005.7050000103471,-0.055466351898305406 +201142,1005.7100000103472,-0.05546631755506094 +201143,1005.7150000103474,-0.05546628321096859 +201144,1005.7200000103475,-0.05546624886602791 +201145,1005.7250000103476,-0.0554662145202385 +201146,1005.7300000103477,-0.05546618017359992 +201147,1005.7350000103478,-0.05546614582611176 +201148,1005.7400000103479,-0.05546611147777358 +201149,1005.745000010348,-0.05546607712858496 +201150,1005.7500000103481,-0.05546604277854547 +201151,1005.7550000103482,-0.0554660084276547 +201152,1005.7600000103483,-0.055465974075912215 +201153,1005.7650000103484,-0.05546593972331759 +201154,1005.7700000103486,-0.055465905369870415 +201155,1005.7750000103487,-0.055465871015570246 +201156,1005.7800000103488,-0.05546583666041667 +201157,1005.7850000103489,-0.05546580230440927 +201158,1005.790000010349,-0.05546576794754761 +201159,1005.7950000103491,-0.05546573358983126 +201160,1005.8000000103492,-0.05546569923125982 +201161,1005.8050000103493,-0.05546566487183285 +201162,1005.8100000103494,-0.05546563051154992 +201163,1005.8150000103495,-0.055465596150410634 +201164,1005.8200000103496,-0.055465561788414545 +201165,1005.8250000103498,-0.05546552742556125 +201166,1005.8300000103499,-0.055465493061850314 +201167,1005.83500001035,-0.055465458697281304 +201168,1005.8400000103501,-0.05546542433185383 +201169,1005.8450000103502,-0.05546538996556744 +201170,1005.8500000103503,-0.05546535559842172 +201171,1005.8550000103504,-0.055465321230416254 +201172,1005.8600000103505,-0.05546528686155061 +201173,1005.8650000103506,-0.05546525249182437 +201174,1005.8700000103507,-0.05546521812123713 +201175,1005.8750000103508,-0.055465183749788455 +201176,1005.880000010351,-0.055465149377477915 +201177,1005.8850000103511,-0.05546511500430509 +201178,1005.8900000103512,-0.05546508063026957 +201179,1005.8950000103513,-0.05546504625537094 +201180,1005.9000000103514,-0.055465011879608755 +201181,1005.9050000103515,-0.05546497750298262 +201182,1005.9100000103516,-0.0554649431254921 +201183,1005.9150000103517,-0.055464908747136776 +201184,1005.9200000103518,-0.05546487436791622 +201185,1005.9250000103519,-0.055464839987830035 +201186,1005.930000010352,-0.05546480560687779 +201187,1005.9350000103522,-0.05546477122505905 +201188,1005.9400000103523,-0.05546473684237343 +201189,1005.9450000103524,-0.05546470245882047 +201190,1005.9500000103525,-0.055464668074399766 +201191,1005.9550000103526,-0.05546463368911091 +201192,1005.9600000103527,-0.05546459930295348 +201193,1005.9650000103528,-0.05546456491592704 +201194,1005.9700000103529,-0.05546453052803119 +201195,1005.975000010353,-0.05546449613926551 +201196,1005.9800000103531,-0.055464461749629566 +201197,1005.9850000103532,-0.05546442735912295 +201198,1005.9900000103534,-0.05546439296774524 +201199,1005.9950000103535,-0.055464358575496024 +201200,1006.0000000103536,-0.05546432418237488 +201201,1006.0050000103537,-0.055464289788381395 +201202,1006.0100000103538,-0.055464255393515134 +201203,1006.0150000103539,-0.0554642209977757 +201204,1006.020000010354,-0.05546418660116265 +201205,1006.0250000103541,-0.0554641522036756 +201206,1006.0300000103542,-0.05546411780531411 +201207,1006.0350000103543,-0.055464083406077766 +201208,1006.0400000103544,-0.055464049005966146 +201209,1006.0450000103546,-0.055464014604978844 +201210,1006.0500000103547,-0.055463980203115444 +201211,1006.0550000103548,-0.055463945800375516 +201212,1006.0600000103549,-0.05546391139675865 +201213,1006.065000010355,-0.05546387699226443 +201214,1006.0700000103551,-0.05546384258689246 +201215,1006.0750000103552,-0.05546380818064229 +201216,1006.0800000103553,-0.05546377377351351 +201217,1006.0850000103554,-0.05546373936550572 +201218,1006.0900000103555,-0.05546370495661849 +201219,1006.0950000103556,-0.055463670546851404 +201220,1006.1000000103558,-0.05546363613620406 +201221,1006.1050000103559,-0.05546360172467604 +201222,1006.110000010356,-0.05546356731226692 +201223,1006.1150000103561,-0.055463532898976285 +201224,1006.1200000103562,-0.055463498484803725 +201225,1006.1250000103563,-0.05546346406974882 +201226,1006.1300000103564,-0.05546342965381116 +201227,1006.1350000103565,-0.05546339523699032 +201228,1006.1400000103566,-0.0554633608192859 +201229,1006.1450000103567,-0.05546332640069747 +201230,1006.1500000103568,-0.05546329198122463 +201231,1006.155000010357,-0.055463257560866966 +201232,1006.1600000103571,-0.05546322313962405 +201233,1006.1650000103572,-0.05546318871749548 +201234,1006.1700000103573,-0.05546315429448084 +201235,1006.1750000103574,-0.05546311987057972 +201236,1006.1800000103575,-0.05546308544579169 +201237,1006.1850000103576,-0.05546305102011635 +201238,1006.1900000103577,-0.05546301659355328 +201239,1006.1950000103578,-0.055462982166102064 +201240,1006.2000000103579,-0.05546294773776231 +201241,1006.205000010358,-0.055462913308533576 +201242,1006.2100000103582,-0.055462878878415466 +201243,1006.2150000103583,-0.05546284444740757 +201244,1006.2200000103584,-0.05546281001550945 +201245,1006.2250000103585,-0.055462775582720725 +201246,1006.2300000103586,-0.05546274114904097 +201247,1006.2350000103587,-0.055462706714469776 +201248,1006.2400000103588,-0.055462672279006725 +201249,1006.2450000103589,-0.0554626378426514 +201250,1006.250000010359,-0.0554626034054034 +201251,1006.2550000103591,-0.055462568967262316 +201252,1006.2600000103592,-0.05546253452822772 +201253,1006.2650000103594,-0.05546250008829923 +201254,1006.2700000103595,-0.055462465647476394 +201255,1006.2750000103596,-0.05546243120575883 +201256,1006.2800000103597,-0.05546239676314612 +201257,1006.2850000103598,-0.05546236231963785 +201258,1006.2900000103599,-0.055462327875233614 +201259,1006.29500001036,-0.05546229342993299 +201260,1006.3000000103601,-0.055462258983735566 +201261,1006.3050000103602,-0.05546222453664096 +201262,1006.3100000103603,-0.05546219008864874 +201263,1006.3150000103604,-0.055462155639758495 +201264,1006.3200000103606,-0.05546212118996981 +201265,1006.3250000103607,-0.05546208673928229 +201266,1006.3300000103608,-0.05546205228769552 +201267,1006.3350000103609,-0.05546201783520907 +201268,1006.340000010361,-0.055461983381822566 +201269,1006.3450000103611,-0.05546194892753557 +201270,1006.3500000103612,-0.05546191447234769 +201271,1006.3550000103613,-0.05546188001625851 +201272,1006.3600000103614,-0.055461845559267614 +201273,1006.3650000103615,-0.05546181110137461 +201274,1006.3700000103617,-0.05546177664257907 +201275,1006.3750000103618,-0.05546174218288059 +201276,1006.3800000103619,-0.055461707722278764 +201277,1006.385000010362,-0.055461673260773184 +201278,1006.3900000103621,-0.05546163879836344 +201279,1006.3950000103622,-0.05546160433504913 +201280,1006.4000000103623,-0.055461569870829834 +201281,1006.4050000103624,-0.05546153540570516 +201282,1006.4100000103625,-0.055461500939674696 +201283,1006.4150000103626,-0.05546146647273801 +201284,1006.4200000103627,-0.05546143200489472 +201285,1006.4250000103629,-0.055461397536144416 +201286,1006.430000010363,-0.055461363066486684 +201287,1006.4350000103631,-0.055461328595921115 +201288,1006.4400000103632,-0.05546129412444731 +201289,1006.4450000103633,-0.05546125965206485 +201290,1006.4500000103634,-0.055461225178773346 +201291,1006.4550000103635,-0.05546119070457237 +201292,1006.4600000103636,-0.05546115622946154 +201293,1006.4650000103637,-0.05546112175344042 +201294,1006.4700000103638,-0.055461087276508635 +201295,1006.4750000103639,-0.05546105279866575 +201296,1006.480000010364,-0.055461018319911376 +201297,1006.4850000103642,-0.05546098384024511 +201298,1006.4900000103643,-0.05546094935966653 +201299,1006.4950000103644,-0.055460914878175234 +201300,1006.5000000103645,-0.055460880395770816 +201301,1006.5050000103646,-0.055460845912452886 +201302,1006.5100000103647,-0.05546081142822102 +201303,1006.5150000103648,-0.05546077694307482 +201304,1006.5200000103649,-0.05546074245701388 +201305,1006.525000010365,-0.055460707970037805 +201306,1006.5300000103651,-0.055460673482146165 +201307,1006.5350000103653,-0.05546063899333858 +201308,1006.5400000103654,-0.05546060450361463 +201309,1006.5450000103655,-0.05546057001297392 +201310,1006.5500000103656,-0.055460535521416034 +201311,1006.5550000103657,-0.05546050102894059 +201312,1006.5600000103658,-0.055460466535547155 +201313,1006.5650000103659,-0.05546043204123534 +201314,1006.570000010366,-0.05546039754600474 +201315,1006.5750000103661,-0.05546036304985495 +201316,1006.5800000103662,-0.05546032855278557 +201317,1006.5850000103663,-0.055460294054796196 +201318,1006.5900000103665,-0.05546025955588641 +201319,1006.5950000103666,-0.055460225056055835 +201320,1006.6000000103667,-0.05546019055530404 +201321,1006.6050000103668,-0.055460156053630645 +201322,1006.6100000103669,-0.05546012155103523 +201323,1006.615000010367,-0.05546008704751739 +201324,1006.6200000103671,-0.055460052543076746 +201325,1006.6250000103672,-0.055460018037712874 +201326,1006.6300000103673,-0.055459983531425366 +201327,1006.6350000103674,-0.05545994902421384 +201328,1006.6400000103675,-0.05545991451607789 +201329,1006.6450000103677,-0.055459880007017105 +201330,1006.6500000103678,-0.055459845497031084 +201331,1006.6550000103679,-0.05545981098611942 +201332,1006.660000010368,-0.05545977647428173 +201333,1006.6650000103681,-0.055459741961517595 +201334,1006.6700000103682,-0.05545970744782662 +201335,1006.6750000103683,-0.055459672933208394 +201336,1006.6800000103684,-0.055459638417662535 +201337,1006.6850000103685,-0.05545960390118863 +201338,1006.6900000103686,-0.055459569383786274 +201339,1006.6950000103687,-0.055459534865455073 +201340,1006.7000000103689,-0.055459500346194616 +201341,1006.705000010369,-0.05545946582600452 +201342,1006.7100000103691,-0.05545943130488438 +201343,1006.7150000103692,-0.05545939678283378 +201344,1006.7200000103693,-0.055459362259852325 +201345,1006.7250000103694,-0.055459327735939624 +201346,1006.7300000103695,-0.05545929321109527 +201347,1006.7350000103696,-0.055459258685318875 +201348,1006.7400000103697,-0.055459224158610015 +201349,1006.7450000103698,-0.05545918963096831 +201350,1006.75000001037,-0.055459155102393354 +201351,1006.75500001037,-0.05545912057288476 +201352,1006.7600000103702,-0.05545908604244211 +201353,1006.7650000103703,-0.05545905151106501 +201354,1006.7700000103704,-0.05545901697875307 +201355,1006.7750000103705,-0.055458982445505865 +201356,1006.7800000103706,-0.055458947911323025 +201357,1006.7850000103707,-0.055458913376204136 +201358,1006.7900000103708,-0.055458878840148815 +201359,1006.7950000103709,-0.05545884430315664 +201360,1006.800000010371,-0.055458809765227234 +201361,1006.8050000103711,-0.055458775226360175 +201362,1006.8100000103713,-0.05545874068655509 +201363,1006.8150000103714,-0.05545870614581156 +201364,1006.8200000103715,-0.055458671604129206 +201365,1006.8250000103716,-0.05545863706150762 +201366,1006.8300000103717,-0.055458602517946404 +201367,1006.8350000103718,-0.05545856797344516 +201368,1006.8400000103719,-0.05545853342800349 +201369,1006.845000010372,-0.055458498881621014 +201370,1006.8500000103721,-0.055458464334297304 +201371,1006.8550000103722,-0.055458429786031986 +201372,1006.8600000103723,-0.05545839523682466 +201373,1006.8650000103725,-0.05545836068667492 +201374,1006.8700000103726,-0.05545832613558237 +201375,1006.8750000103727,-0.05545829158354663 +201376,1006.8800000103728,-0.05545825703056728 +201377,1006.8850000103729,-0.05545822247664394 +201378,1006.890000010373,-0.0554581879217762 +201379,1006.8950000103731,-0.055458153365963686 +201380,1006.9000000103732,-0.055458118809205974 +201381,1006.9050000103733,-0.055458084251502685 +201382,1006.9100000103734,-0.05545804969285342 +201383,1006.9150000103735,-0.055458015133257786 +201384,1006.9200000103737,-0.055457980572715386 +201385,1006.9250000103738,-0.05545794601122581 +201386,1006.9300000103739,-0.05545791144878869 +201387,1006.935000010374,-0.05545787688540362 +201388,1006.9400000103741,-0.055457842321070205 +201389,1006.9450000103742,-0.05545780775578804 +201390,1006.9500000103743,-0.05545777318955673 +201391,1006.9550000103744,-0.0554577386223759 +201392,1006.9600000103745,-0.055457704054245126 +201393,1006.9650000103746,-0.05545766948516405 +201394,1006.9700000103747,-0.055457634915132246 +201395,1006.9750000103749,-0.05545760034414933 +201396,1006.980000010375,-0.05545756577221491 +201397,1006.9850000103751,-0.055457531199328586 +201398,1006.9900000103752,-0.05545749662548998 +201399,1006.9950000103753,-0.055457462050698694 +201400,1007.0000000103754,-0.055457427474954316 +201401,1007.0050000103755,-0.05545739289825647 +201402,1007.0100000103756,-0.055457358320604756 +201403,1007.0150000103757,-0.05545732374199878 +201404,1007.0200000103758,-0.05545728916243816 +201405,1007.025000010376,-0.05545725458192249 +201406,1007.030000010376,-0.05545722000045137 +201407,1007.0350000103762,-0.05545718541802443 +201408,1007.0400000103763,-0.055457150834641256 +201409,1007.0450000103764,-0.05545711625030147 +201410,1007.0500000103765,-0.05545708166500468 +201411,1007.0550000103766,-0.055457047078750495 +201412,1007.0600000103767,-0.055457012491538504 +201413,1007.0650000103768,-0.05545697790336833 +201414,1007.0700000103769,-0.055456943314239567 +201415,1007.075000010377,-0.05545690872415185 +201416,1007.0800000103771,-0.05545687413310476 +201417,1007.0850000103773,-0.055456839541097924 +201418,1007.0900000103774,-0.05545680494813094 +201419,1007.0950000103775,-0.05545677035420341 +201420,1007.1000000103776,-0.055456735759314965 +201421,1007.1050000103777,-0.0554567011634652 +201422,1007.1100000103778,-0.055456666566653726 +201423,1007.1150000103779,-0.05545663196888015 +201424,1007.120000010378,-0.055456597370144085 +201425,1007.1250000103781,-0.05545656277044513 +201426,1007.1300000103782,-0.055456528169782915 +201427,1007.1350000103783,-0.05545649356815703 +201428,1007.1400000103785,-0.0554564589655671 +201429,1007.1450000103786,-0.055456424362012716 +201430,1007.1500000103787,-0.0554563897574935 +201431,1007.1550000103788,-0.05545635515200907 +201432,1007.1600000103789,-0.055456320545559025 +201433,1007.165000010379,-0.05545628593814297 +201434,1007.1700000103791,-0.055456251329760536 +201435,1007.1750000103792,-0.05545621672041131 +201436,1007.1800000103793,-0.05545618211009492 +201437,1007.1850000103794,-0.05545614749881096 +201438,1007.1900000103795,-0.05545611288655906 +201439,1007.1950000103797,-0.055456078273338816 +201440,1007.2000000103798,-0.05545604365914984 +201441,1007.2050000103799,-0.055456009043991755 +201442,1007.21000001038,-0.055455974427864166 +201443,1007.2150000103801,-0.05545593981076668 +201444,1007.2200000103802,-0.055455905192698905 +201445,1007.2250000103803,-0.05545587057366048 +201446,1007.2300000103804,-0.05545583595365098 +201447,1007.2350000103805,-0.055455801332670036 +201448,1007.2400000103806,-0.05545576671071726 +201449,1007.2450000103807,-0.05545573208779226 +201450,1007.2500000103809,-0.05545569746389465 +201451,1007.255000010381,-0.05545566283902405 +201452,1007.2600000103811,-0.055455628213180064 +201453,1007.2650000103812,-0.055455593586362296 +201454,1007.2700000103813,-0.05545555895857038 +201455,1007.2750000103814,-0.05545552432980392 +201456,1007.2800000103815,-0.05545548970006253 +201457,1007.2850000103816,-0.055455455069345815 +201458,1007.2900000103817,-0.05545542043765339 +201459,1007.2950000103818,-0.05545538580498487 +201460,1007.300000010382,-0.05545535117133987 +201461,1007.3050000103821,-0.055455316536718 +201462,1007.3100000103822,-0.0554552819011189 +201463,1007.3150000103823,-0.05545524726454214 +201464,1007.3200000103824,-0.05545521262698736 +201465,1007.3250000103825,-0.05545517798845417 +201466,1007.3300000103826,-0.055455143348942186 +201467,1007.3350000103827,-0.05545510870845102 +201468,1007.3400000103828,-0.05545507406698029 +201469,1007.3450000103829,-0.055455039424529604 +201470,1007.350000010383,-0.055455004781098584 +201471,1007.3550000103832,-0.05545497013668683 +201472,1007.3600000103833,-0.05545493549129397 +201473,1007.3650000103834,-0.05545490084491961 +201474,1007.3700000103835,-0.05545486619756338 +201475,1007.3750000103836,-0.05545483154922488 +201476,1007.3800000103837,-0.05545479689990374 +201477,1007.3850000103838,-0.05545476224959957 +201478,1007.3900000103839,-0.05545472759831198 +201479,1007.395000010384,-0.05545469294604058 +201480,1007.4000000103841,-0.055454658292785 +201481,1007.4050000103842,-0.05545462363854486 +201482,1007.4100000103844,-0.055454588983319765 +201483,1007.4150000103845,-0.055454554327109336 +201484,1007.4200000103846,-0.05545451966991318 +201485,1007.4250000103847,-0.05545448501173093 +201486,1007.4300000103848,-0.055454450352562176 +201487,1007.4350000103849,-0.055454415692406556 +201488,1007.440000010385,-0.05545438103126368 +201489,1007.4450000103851,-0.05545434636913316 +201490,1007.4500000103852,-0.055454311706014635 +201491,1007.4550000103853,-0.0554542770419077 +201492,1007.4600000103854,-0.05545424237681198 +201493,1007.4650000103856,-0.055454207710727094 +201494,1007.4700000103857,-0.055454173043652646 +201495,1007.4750000103858,-0.055454138375588276 +201496,1007.4800000103859,-0.055454103706533586 +201497,1007.485000010386,-0.05545406903648821 +201498,1007.4900000103861,-0.05545403436545175 +201499,1007.4950000103862,-0.05545399969342383 +201500,1007.5000000103863,-0.055453965020404054 +201501,1007.5050000103864,-0.05545393034639206 +201502,1007.5100000103865,-0.055453895671387456 +201503,1007.5150000103866,-0.05545386099538986 +201504,1007.5200000103868,-0.055453826318398895 +201505,1007.5250000103869,-0.05545379164041418 +201506,1007.530000010387,-0.055453756961435334 +201507,1007.5350000103871,-0.05545372228146198 +201508,1007.5400000103872,-0.055453687600493726 +201509,1007.5450000103873,-0.055453652918530195 +201510,1007.5500000103874,-0.05545361823557102 +201511,1007.5550000103875,-0.05545358355161581 +201512,1007.5600000103876,-0.055453548866664176 +201513,1007.5650000103877,-0.05545351418071576 +201514,1007.5700000103878,-0.05545347949377015 +201515,1007.575000010388,-0.05545344480582699 +201516,1007.5800000103881,-0.05545341011688589 +201517,1007.5850000103882,-0.05545337542694648 +201518,1007.5900000103883,-0.055453340736008376 +201519,1007.5950000103884,-0.055453306044071185 +201520,1007.6000000103885,-0.05545327135113455 +201521,1007.6050000103886,-0.05545323665719808 +201522,1007.6100000103887,-0.05545320196226139 +201523,1007.6150000103888,-0.05545316726632411 +201524,1007.6200000103889,-0.05545313256938586 +201525,1007.625000010389,-0.05545309787144626 +201526,1007.6300000103892,-0.055453063172504924 +201527,1007.6350000103893,-0.055453028472561484 +201528,1007.6400000103894,-0.055452993771615555 +201529,1007.6450000103895,-0.05545295906966676 +201530,1007.6500000103896,-0.05545292436671473 +201531,1007.6550000103897,-0.055452889662759075 +201532,1007.6600000103898,-0.05545285495779942 +201533,1007.6650000103899,-0.05545282025183538 +201534,1007.67000001039,-0.05545278554486659 +201535,1007.6750000103901,-0.05545275083689266 +201536,1007.6800000103902,-0.055452716127913235 +201537,1007.6850000103904,-0.05545268141792792 +201538,1007.6900000103905,-0.05545264670693634 +201539,1007.6950000103906,-0.05545261199493811 +201540,1007.7000000103907,-0.05545257728193286 +201541,1007.7050000103908,-0.05545254256792022 +201542,1007.7100000103909,-0.0554525078528998 +201543,1007.715000010391,-0.05545247313687122 +201544,1007.7200000103911,-0.055452438419834126 +201545,1007.7250000103912,-0.05545240370178812 +201546,1007.7300000103913,-0.055452368982732834 +201547,1007.7350000103914,-0.05545233426266789 +201548,1007.7400000103916,-0.05545229954159292 +201549,1007.7450000103917,-0.05545226481950753 +201550,1007.7500000103918,-0.05545223009641137 +201551,1007.7550000103919,-0.05545219537230403 +201552,1007.760000010392,-0.05545216064718517 +201553,1007.7650000103921,-0.05545212592105439 +201554,1007.7700000103922,-0.05545209119391131 +201555,1007.7750000103923,-0.05545205646575559 +201556,1007.7800000103924,-0.055452021736586816 +201557,1007.7850000103925,-0.055451987006404635 +201558,1007.7900000103926,-0.05545195227520867 +201559,1007.7950000103928,-0.05545191754299853 +201560,1007.8000000103929,-0.05545188280977385 +201561,1007.805000010393,-0.05545184807553426 +201562,1007.8100000103931,-0.05545181334027939 +201563,1007.8150000103932,-0.05545177860400885 +201564,1007.8200000103933,-0.05545174386672227 +201565,1007.8250000103934,-0.055451709128419284 +201566,1007.8300000103935,-0.05545167438909951 +201567,1007.8350000103936,-0.05545163964876258 +201568,1007.8400000103937,-0.055451604907408115 +201569,1007.8450000103938,-0.055451570165035734 +201570,1007.850000010394,-0.055451535421645076 +201571,1007.8550000103941,-0.055451500677235775 +201572,1007.8600000103942,-0.055451465931807435 +201573,1007.8650000103943,-0.055451431185359695 +201574,1007.8700000103944,-0.05545139643789219 +201575,1007.8750000103945,-0.055451361689404524 +201576,1007.8800000103946,-0.05545132693989634 +201577,1007.8850000103947,-0.05545129218936725 +201578,1007.8900000103948,-0.055451257437816905 +201579,1007.8950000103949,-0.05545122268524493 +201580,1007.900000010395,-0.055451187931650936 +201581,1007.9050000103952,-0.05545115317703456 +201582,1007.9100000103953,-0.05545111842139542 +201583,1007.9150000103954,-0.05545108366473316 +201584,1007.9200000103955,-0.0554510489070474 +201585,1007.9250000103956,-0.055451014148337766 +201586,1007.9300000103957,-0.05545097938860388 +201587,1007.9350000103958,-0.05545094462784539 +201588,1007.9400000103959,-0.05545090986606191 +201589,1007.945000010396,-0.05545087510325307 +201590,1007.9500000103961,-0.055450840339418495 +201591,1007.9550000103962,-0.05545080557455782 +201592,1007.9600000103964,-0.05545077080867067 +201593,1007.9650000103965,-0.05545073604175667 +201594,1007.9700000103966,-0.05545070127381547 +201595,1007.9750000103967,-0.05545066650484668 +201596,1007.9800000103968,-0.05545063173484994 +201597,1007.9850000103969,-0.05545059696382485 +201598,1007.990000010397,-0.05545056219177107 +201599,1007.9950000103971,-0.05545052741868822 +201600,1008.0000000103972,-0.055450492644575945 +201601,1008.0050000103973,-0.055450457869433846 +201602,1008.0100000103974,-0.05545042309326158 +201603,1008.0150000103976,-0.055450388316058766 +201604,1008.0200000103977,-0.05545035353782502 +201605,1008.0250000103978,-0.055450318758560005 +201606,1008.0300000103979,-0.055450283978263314 +201607,1008.035000010398,-0.05545024919693461 +201608,1008.0400000103981,-0.05545021441457351 +201609,1008.0450000103982,-0.05545017963117964 +201610,1008.0500000103983,-0.05545014484675264 +201611,1008.0550000103984,-0.05545011006129212 +201612,1008.0600000103985,-0.05545007527479774 +201613,1008.0650000103986,-0.05545004048726912 +201614,1008.0700000103988,-0.05545000569870588 +201615,1008.0750000103989,-0.055449970909107665 +201616,1008.080000010399,-0.0554499361184741 +201617,1008.0850000103991,-0.05544990132680482 +201618,1008.0900000103992,-0.05544986653409946 +201619,1008.0950000103993,-0.055449831740357655 +201620,1008.1000000103994,-0.05544979694557903 +201621,1008.1050000103995,-0.0554497621497632 +201622,1008.1100000103996,-0.05544972735290983 +201623,1008.1150000103997,-0.05544969255501855 +201624,1008.1200000103998,-0.055449657756088955 +201625,1008.1250000104,-0.05544962295612071 +201626,1008.1300000104001,-0.05544958815511343 +201627,1008.1350000104002,-0.055449553353066776 +201628,1008.1400000104003,-0.055449518549980356 +201629,1008.1450000104004,-0.05544948374585381 +201630,1008.1500000104005,-0.05544944894068676 +201631,1008.1550000104006,-0.05544941413447886 +201632,1008.1600000104007,-0.055449379327229736 +201633,1008.1650000104008,-0.055449344518939014 +201634,1008.1700000104009,-0.05544930970960634 +201635,1008.175000010401,-0.05544927489923133 +201636,1008.1800000104012,-0.055449240087813635 +201637,1008.1850000104013,-0.05544920527535288 +201638,1008.1900000104014,-0.0554491704618487 +201639,1008.1950000104015,-0.055449135647300724 +201640,1008.2000000104016,-0.05544910083170859 +201641,1008.2050000104017,-0.05544906601507195 +201642,1008.2100000104018,-0.05544903119739041 +201643,1008.2150000104019,-0.05544899637866362 +201644,1008.220000010402,-0.055448961558891216 +201645,1008.2250000104021,-0.05544892673807283 +201646,1008.2300000104023,-0.055448891916208096 +201647,1008.2350000104024,-0.05544885709329665 +201648,1008.2400000104025,-0.05544882226933812 +201649,1008.2450000104026,-0.055448787444332154 +201650,1008.2500000104027,-0.05544875261827839 +201651,1008.2550000104028,-0.05544871779117645 +201652,1008.2600000104029,-0.05544868296302598 +201653,1008.265000010403,-0.0554486481338266 +201654,1008.2700000104031,-0.055448613303577955 +201655,1008.2750000104032,-0.05544857847227969 +201656,1008.2800000104033,-0.05544854363993143 +201657,1008.2850000104035,-0.05544850880653281 +201658,1008.2900000104036,-0.05544847397208348 +201659,1008.2950000104037,-0.05544843913658306 +201660,1008.3000000104038,-0.0554484043000312 +201661,1008.3050000104039,-0.055448369462427524 +201662,1008.310000010404,-0.055448334623771675 +201663,1008.3150000104041,-0.05544829978406329 +201664,1008.3200000104042,-0.05544826494330201 +201665,1008.3250000104043,-0.05544823010148747 +201666,1008.3300000104044,-0.05544819525861929 +201667,1008.3350000104045,-0.05544816041469714 +201668,1008.3400000104047,-0.05544812556972063 +201669,1008.3450000104048,-0.05544809072368942 +201670,1008.3500000104049,-0.05544805587660312 +201671,1008.355000010405,-0.055448021028461386 +201672,1008.3600000104051,-0.05544798617926385 +201673,1008.3650000104052,-0.055447951329010155 +201674,1008.3700000104053,-0.055447916477699935 +201675,1008.3750000104054,-0.05544788162533284 +201676,1008.3800000104055,-0.055447846771908504 +201677,1008.3850000104056,-0.05544781191742655 +201678,1008.3900000104057,-0.055447777061886624 +201679,1008.3950000104059,-0.055447742205288364 +201680,1008.400000010406,-0.05544770734763142 +201681,1008.4050000104061,-0.05544767248891542 +201682,1008.4100000104062,-0.055447637629140005 +201683,1008.4150000104063,-0.05544760276830482 +201684,1008.4200000104064,-0.05544756790640949 +201685,1008.4250000104065,-0.055447533043453665 +201686,1008.4300000104066,-0.05544749817943698 +201687,1008.4350000104067,-0.05544746331435908 +201688,1008.4400000104068,-0.055447428448219614 +201689,1008.4450000104069,-0.0554473935810182 +201690,1008.450000010407,-0.055447358712754496 +201691,1008.4550000104072,-0.055447323843428126 +201692,1008.4600000104073,-0.05544728897303874 +201693,1008.4650000104074,-0.05544725410158597 +201694,1008.4700000104075,-0.055447219229069464 +201695,1008.4750000104076,-0.05544718435548886 +201696,1008.4800000104077,-0.0554471494808438 +201697,1008.4850000104078,-0.055447114605133935 +201698,1008.4900000104079,-0.05544707972835889 +201699,1008.495000010408,-0.05544704485051831 +201700,1008.5000000104081,-0.05544700997161184 +201701,1008.5050000104083,-0.0554469750916391 +201702,1008.5100000104084,-0.05544694021059977 +201703,1008.5150000104085,-0.05544690532849346 +201704,1008.5200000104086,-0.05544687044531982 +201705,1008.5250000104087,-0.0554468355610785 +201706,1008.5300000104088,-0.05544680067576914 +201707,1008.5350000104089,-0.05544676578939137 +201708,1008.540000010409,-0.05544673090194483 +201709,1008.5450000104091,-0.05544669601342918 +201710,1008.5500000104092,-0.055446661123844054 +201711,1008.5550000104093,-0.05544662623318909 +201712,1008.5600000104095,-0.055446591341463944 +201713,1008.5650000104096,-0.055446556448668236 +201714,1008.5700000104097,-0.05544652155480162 +201715,1008.5750000104098,-0.055446486659863736 +201716,1008.5800000104099,-0.055446451763854245 +201717,1008.58500001041,-0.05544641686677276 +201718,1008.5900000104101,-0.05544638196861895 +201719,1008.5950000104102,-0.05544634706939244 +201720,1008.6000000104103,-0.05544631216909289 +201721,1008.6050000104104,-0.055446277267719925 +201722,1008.6100000104105,-0.05544624236527319 +201723,1008.6150000104107,-0.05544620746175235 +201724,1008.6200000104108,-0.05544617255715703 +201725,1008.6250000104109,-0.05544613765148688 +201726,1008.630000010411,-0.055446102744741536 +201727,1008.6350000104111,-0.055446067836920646 +201728,1008.6400000104112,-0.05544603292802386 +201729,1008.6450000104113,-0.055445998018050814 +201730,1008.6500000104114,-0.055445963107001166 +201731,1008.6550000104115,-0.05544592819487454 +201732,1008.6600000104116,-0.05544589328167059 +201733,1008.6650000104117,-0.05544585836738897 +201734,1008.6700000104119,-0.055445823452029315 +201735,1008.675000010412,-0.055445788535591276 +201736,1008.6800000104121,-0.055445753618074495 +201737,1008.6850000104122,-0.055445718699478605 +201738,1008.6900000104123,-0.05544568377980326 +201739,1008.6950000104124,-0.055445648859048124 +201740,1008.7000000104125,-0.05544561393721281 +201741,1008.7050000104126,-0.05544557901429698 +201742,1008.7100000104127,-0.05544554409030029 +201743,1008.7150000104128,-0.05544550916522236 +201744,1008.720000010413,-0.05544547423906286 +201745,1008.725000010413,-0.055445439311821436 +201746,1008.7300000104132,-0.055445404383497716 +201747,1008.7350000104133,-0.05544536945409135 +201748,1008.7400000104134,-0.055445334523602 +201749,1008.7450000104135,-0.055445299592029304 +201750,1008.7500000104136,-0.0554452646593729 +201751,1008.7550000104137,-0.05544522972563243 +201752,1008.7600000104138,-0.05544519479080756 +201753,1008.7650000104139,-0.055445159854897924 +201754,1008.770000010414,-0.055445124917903175 +201755,1008.7750000104141,-0.055445089979822955 +201756,1008.7800000104143,-0.05544505504065693 +201757,1008.7850000104144,-0.05544502010040472 +201758,1008.7900000104145,-0.05544498515906598 +201759,1008.7950000104146,-0.055444950216640365 +201760,1008.8000000104147,-0.055444915273127525 +201761,1008.8050000104148,-0.05544488032852709 +201762,1008.8100000104149,-0.05544484538283874 +201763,1008.815000010415,-0.055444810436062086 +201764,1008.8200000104151,-0.0554447754881968 +201765,1008.8250000104152,-0.05544474053924252 +201766,1008.8300000104153,-0.0554447055891989 +201767,1008.8350000104155,-0.05544467063806559 +201768,1008.8400000104156,-0.05544463568584223 +201769,1008.8450000104157,-0.05544460073252847 +201770,1008.8500000104158,-0.055444565778123976 +201771,1008.8550000104159,-0.05544453082262837 +201772,1008.860000010416,-0.05544449586604131 +201773,1008.8650000104161,-0.05544446090836246 +201774,1008.8700000104162,-0.055444425949591446 +201775,1008.8750000104163,-0.055444390989727935 +201776,1008.8800000104164,-0.05544435602877157 +201777,1008.8850000104165,-0.055444321066722 +201778,1008.8900000104167,-0.05544428610357888 +201779,1008.8950000104168,-0.055444251139341844 +201780,1008.9000000104169,-0.05544421617401057 +201781,1008.905000010417,-0.05544418120758468 +201782,1008.9100000104171,-0.05544414624006383 +201783,1008.9150000104172,-0.05544411127144768 +201784,1008.9200000104173,-0.055444076301735874 +201785,1008.9250000104174,-0.055444041330928076 +201786,1008.9300000104175,-0.05544400635902392 +201787,1008.9350000104176,-0.055443971386023055 +201788,1008.9400000104177,-0.05544393641192514 +201789,1008.9450000104179,-0.055443901436729816 +201790,1008.950000010418,-0.05544386646043675 +201791,1008.9550000104181,-0.05544383148304559 +201792,1008.9600000104182,-0.05544379650455596 +201793,1008.9650000104183,-0.05544376152496754 +201794,1008.9700000104184,-0.05544372654427998 +201795,1008.9750000104185,-0.05544369156249293 +201796,1008.9800000104186,-0.05544365657960603 +201797,1008.9850000104187,-0.055443621595618935 +201798,1008.9900000104188,-0.0554435866105313 +201799,1008.995000010419,-0.05544355162434277 +201800,1009.0000000104191,-0.05544351663705303 +201801,1009.0050000104192,-0.05544348164866169 +201802,1009.0100000104193,-0.055443446659168415 +201803,1009.0150000104194,-0.05544341166857286 +201804,1009.0200000104195,-0.05544337667687469 +201805,1009.0250000104196,-0.05544334168407355 +201806,1009.0300000104197,-0.055443306690169065 +201807,1009.0350000104198,-0.05544327169516093 +201808,1009.0400000104199,-0.05544323669904877 +201809,1009.04500001042,-0.05544320170183225 +201810,1009.0500000104201,-0.05544316670351103 +201811,1009.0550000104203,-0.055443131704084735 +201812,1009.0600000104204,-0.05544309670355304 +201813,1009.0650000104205,-0.0554430617019156 +201814,1009.0700000104206,-0.05544302669917205 +201815,1009.0750000104207,-0.05544299169532207 +201816,1009.0800000104208,-0.055442956690365294 +201817,1009.0850000104209,-0.055442921684301386 +201818,1009.090000010421,-0.055442886677129995 +201819,1009.0950000104211,-0.05544285166885078 +201820,1009.1000000104212,-0.05544281665946339 +201821,1009.1050000104213,-0.05544278164896748 +201822,1009.1100000104215,-0.055442746637362705 +201823,1009.1150000104216,-0.05544271162464873 +201824,1009.1200000104217,-0.05544267661082519 +201825,1009.1250000104218,-0.055442641595891747 +201826,1009.1300000104219,-0.055442606579848064 +201827,1009.135000010422,-0.05544257156269379 +201828,1009.1400000104221,-0.055442536544428565 +201829,1009.1450000104222,-0.05544250152505207 +201830,1009.1500000104223,-0.05544246650456394 +201831,1009.1550000104224,-0.05544243148296384 +201832,1009.1600000104226,-0.05544239646025143 +201833,1009.1650000104227,-0.05544236143642637 +201834,1009.1700000104228,-0.055442326411488295 +201835,1009.1750000104229,-0.055442291385436875 +201836,1009.180000010423,-0.05544225635827176 +201837,1009.1850000104231,-0.05544222132999261 +201838,1009.1900000104232,-0.05544218630059908 +201839,1009.1950000104233,-0.05544215127009082 +201840,1009.2000000104234,-0.055442116238467495 +201841,1009.2050000104235,-0.05544208120572876 +201842,1009.2100000104236,-0.05544204617187427 +201843,1009.2150000104238,-0.055442011136903675 +201844,1009.2200000104239,-0.05544197610081665 +201845,1009.225000010424,-0.05544194106361283 +201846,1009.2300000104241,-0.055441906025291886 +201847,1009.2350000104242,-0.05544187098585347 +201848,1009.2400000104243,-0.055441835945297245 +201849,1009.2450000104244,-0.05544180090362286 +201850,1009.2500000104245,-0.055441765860829974 +201851,1009.2550000104246,-0.05544173081691825 +201852,1009.2600000104247,-0.05544169577188734 +201853,1009.2650000104248,-0.05544166072573691 +201854,1009.270000010425,-0.05544162567846661 +201855,1009.2750000104251,-0.055441590630076094 +201856,1009.2800000104252,-0.05544155558056502 +201857,1009.2850000104253,-0.05544152052993306 +201858,1009.2900000104254,-0.055441485478179856 +201859,1009.2950000104255,-0.05544145042530508 +201860,1009.3000000104256,-0.05544141537130838 +201861,1009.3050000104257,-0.05544138031618943 +201862,1009.3100000104258,-0.055441345259947865 +201863,1009.3150000104259,-0.05544131020258337 +201864,1009.320000010426,-0.05544127514409559 +201865,1009.3250000104262,-0.05544124008448418 +201866,1009.3300000104263,-0.05544120502374881 +201867,1009.3350000104264,-0.05544116996188913 +201868,1009.3400000104265,-0.055441134898904794 +201869,1009.3450000104266,-0.05544109983479548 +201870,1009.3500000104267,-0.05544106476956082 +201871,1009.3550000104268,-0.055441029703200514 +201872,1009.3600000104269,-0.05544099463571419 +201873,1009.365000010427,-0.055440959567101517 +201874,1009.3700000104271,-0.05544092449736215 +201875,1009.3750000104272,-0.05544088942649574 +201876,1009.3800000104274,-0.05544085435450198 +201877,1009.3850000104275,-0.0554408192813805 +201878,1009.3900000104276,-0.05544078420713098 +201879,1009.3950000104277,-0.055440749131753064 +201880,1009.4000000104278,-0.05544071405524642 +201881,1009.4050000104279,-0.0554406789776107 +201882,1009.410000010428,-0.05544064389884558 +201883,1009.4150000104281,-0.05544060881895072 +201884,1009.4200000104282,-0.055440573737925776 +201885,1009.4250000104283,-0.0554405386557704 +201886,1009.4300000104284,-0.055440503572484263 +201887,1009.4350000104286,-0.055440468488067024 +201888,1009.4400000104287,-0.055440433402518356 +201889,1009.4450000104288,-0.0554403983158379 +201890,1009.4500000104289,-0.055440363228025334 +201891,1009.455000010429,-0.05544032813908031 +201892,1009.4600000104291,-0.05544029304900249 +201893,1009.4650000104292,-0.05544025795779155 +201894,1009.4700000104293,-0.05544022286544713 +201895,1009.4750000104294,-0.05544018777196891 +201896,1009.4800000104295,-0.05544015267735654 +201897,1009.4850000104296,-0.05544011758160969 +201898,1009.4900000104298,-0.05544008248472801 +201899,1009.4950000104299,-0.05544004738671119 +201900,1009.50000001043,-0.05544001228755886 +201901,1009.5050000104301,-0.0554399771872707 +201902,1009.5100000104302,-0.055439942085846385 +201903,1009.5150000104303,-0.055439906983285554 +201904,1009.5200000104304,-0.05543987187958788 +201905,1009.5250000104305,-0.05543983677475303 +201906,1009.5300000104306,-0.055439801668780674 +201907,1009.5350000104307,-0.055439766561670455 +201908,1009.5400000104308,-0.05543973145342204 +201909,1009.545000010431,-0.055439696344035116 +201910,1009.5500000104311,-0.05543966123350931 +201911,1009.5550000104312,-0.055439626121844325 +201912,1009.5600000104313,-0.0554395910090398 +201913,1009.5650000104314,-0.05543955589509541 +201914,1009.5700000104315,-0.05543952078001081 +201915,1009.5750000104316,-0.05543948566378566 +201916,1009.5800000104317,-0.05543945054641964 +201917,1009.5850000104318,-0.05543941542791241 +201918,1009.5900000104319,-0.055439380308263626 +201919,1009.595000010432,-0.05543934518747297 +201920,1009.6000000104322,-0.055439310065540086 +201921,1009.6050000104323,-0.05543927494246465 +201922,1009.6100000104324,-0.05543923981824632 +201923,1009.6150000104325,-0.055439204692884776 +201924,1009.6200000104326,-0.055439169566379676 +201925,1009.6250000104327,-0.05543913443873068 +201926,1009.6300000104328,-0.05543909930993745 +201927,1009.6350000104329,-0.055439064179999664 +201928,1009.640000010433,-0.05543902904891698 +201929,1009.6450000104331,-0.05543899391668907 +201930,1009.6500000104332,-0.055438958783315596 +201931,1009.6550000104334,-0.05543892364879622 +201932,1009.6600000104335,-0.055438888513130606 +201933,1009.6650000104336,-0.05543885337631844 +201934,1009.6700000104337,-0.05543881823835936 +201935,1009.6750000104338,-0.05543878309925306 +201936,1009.6800000104339,-0.05543874795899919 +201937,1009.685000010434,-0.05543871281759741 +201938,1009.6900000104341,-0.055438677675047406 +201939,1009.6950000104342,-0.05543864253134882 +201940,1009.7000000104343,-0.055438607386501346 +201941,1009.7050000104344,-0.05543857224050464 +201942,1009.7100000104346,-0.055438537093358366 +201943,1009.7150000104347,-0.05543850194506219 +201944,1009.7200000104348,-0.05543846679561578 +201945,1009.7250000104349,-0.05543843164501881 +201946,1009.730000010435,-0.055438396493270946 +201947,1009.7350000104351,-0.05543836134037184 +201948,1009.7400000104352,-0.05543832618632119 +201949,1009.7450000104353,-0.055438291031118636 +201950,1009.7500000104354,-0.05543825587476387 +201951,1009.7550000104355,-0.05543822071725653 +201952,1009.7600000104356,-0.0554381855585963 +201953,1009.7650000104358,-0.05543815039878285 +201954,1009.7700000104359,-0.05543811523781585 +201955,1009.775000010436,-0.05543808007569497 +201956,1009.7800000104361,-0.05543804491241987 +201957,1009.7850000104362,-0.05543800974799022 +201958,1009.7900000104363,-0.0554379745824057 +201959,1009.7950000104364,-0.055437939415665966 +201960,1009.8000000104365,-0.0554379042477707 +201961,1009.8050000104366,-0.05543786907871956 +201962,1009.8100000104367,-0.055437833908512216 +201963,1009.8150000104368,-0.055437798737148346 +201964,1009.820000010437,-0.0554377635646276 +201965,1009.8250000104371,-0.055437728390949674 +201966,1009.8300000104372,-0.05543769321611421 +201967,1009.8350000104373,-0.055437658040120893 +201968,1009.8400000104374,-0.05543762286296939 +201969,1009.8450000104375,-0.05543758768465938 +201970,1009.8500000104376,-0.05543755250519052 +201971,1009.8550000104377,-0.055437517324562494 +201972,1009.8600000104378,-0.055437482142774955 +201973,1009.8650000104379,-0.05543744695982759 +201974,1009.870000010438,-0.05543741177572005 +201975,1009.8750000104382,-0.05543737659045203 +201976,1009.8800000104383,-0.05543734140402319 +201977,1009.8850000104384,-0.05543730621643319 +201978,1009.8900000104385,-0.05543727102768171 +201979,1009.8950000104386,-0.05543723583776841 +201980,1009.9000000104387,-0.05543720064669299 +201981,1009.9050000104388,-0.0554371654544551 +201982,1009.9100000104389,-0.05543713026105441 +201983,1009.915000010439,-0.05543709506649058 +201984,1009.9200000104391,-0.05543705987076332 +201985,1009.9250000104392,-0.05543702467387227 +201986,1009.9300000104394,-0.055436989475817114 +201987,1009.9350000104395,-0.05543695427659752 +201988,1009.9400000104396,-0.05543691907621316 +201989,1009.9450000104397,-0.055436883874663695 +201990,1009.9500000104398,-0.05543684867194881 +201991,1009.9550000104399,-0.05543681346806818 +201992,1009.96000001044,-0.055436778263021465 +201993,1009.9650000104401,-0.05543674305680835 +201994,1009.9700000104402,-0.0554367078494285 +201995,1009.9750000104403,-0.0554366726408816 +201996,1009.9800000104404,-0.0554366374311673 +201997,1009.9850000104406,-0.055436602220285285 +201998,1009.9900000104407,-0.05543656700823523 +201999,1009.9950000104408,-0.05543653179501681 +202000,1010.0000000104409,-0.05543649658062969 +202001,1010.005000010441,-0.055436461365073554 +202002,1010.0100000104411,-0.05543642614834806 +202003,1010.0150000104412,-0.055436390930452904 +202004,1010.0200000104413,-0.05543635571138773 +202005,1010.0250000104414,-0.05543632049115225 +202006,1010.0300000104415,-0.055436285269746095 +202007,1010.0350000104416,-0.05543625004716897 +202008,1010.0400000104418,-0.05543621482342053 +202009,1010.0450000104419,-0.05543617959850046 +202010,1010.050000010442,-0.05543614437240844 +202011,1010.0550000104421,-0.055436109145144116 +202012,1010.0600000104422,-0.055436073916707185 +202013,1010.0650000104423,-0.05543603868709732 +202014,1010.0700000104424,-0.05543600345631421 +202015,1010.0750000104425,-0.055435968224357514 +202016,1010.0800000104426,-0.05543593299122689 +202017,1010.0850000104427,-0.05543589775692203 +202018,1010.0900000104428,-0.055435862521442614 +202019,1010.095000010443,-0.05543582728478832 +202020,1010.1000000104431,-0.05543579204695881 +202021,1010.1050000104432,-0.05543575680795377 +202022,1010.1100000104433,-0.05543572156777286 +202023,1010.1150000104434,-0.05543568632641576 +202024,1010.1200000104435,-0.055435651083882154 +202025,1010.1250000104436,-0.05543561584017171 +202026,1010.1300000104437,-0.05543558059528411 +202027,1010.1350000104438,-0.055435545349219024 +202028,1010.1400000104439,-0.055435510101976136 +202029,1010.145000010444,-0.05543547485355512 +202030,1010.1500000104442,-0.05543543960395566 +202031,1010.1550000104443,-0.055435404353177405 +202032,1010.1600000104444,-0.055435369101220065 +202033,1010.1650000104445,-0.05543533384808329 +202034,1010.1700000104446,-0.05543529859376677 +202035,1010.1750000104447,-0.055435263338270174 +202036,1010.1800000104448,-0.055435228081593194 +202037,1010.1850000104449,-0.05543519282373549 +202038,1010.190000010445,-0.05543515756469675 +202039,1010.1950000104451,-0.05543512230447665 +202040,1010.2000000104453,-0.05543508704307486 +202041,1010.2050000104454,-0.05543505178049105 +202042,1010.2100000104455,-0.055435016516724916 +202043,1010.2150000104456,-0.05543498125177612 +202044,1010.2200000104457,-0.055434945985644364 +202045,1010.2250000104458,-0.05543491071832931 +202046,1010.2300000104459,-0.055434875449830626 +202047,1010.235000010446,-0.055434840180148 +202048,1010.2400000104461,-0.05543480490928111 +202049,1010.2450000104462,-0.05543476963722964 +202050,1010.2500000104463,-0.055434734363993245 +202051,1010.2550000104465,-0.055434699089571625 +202052,1010.2600000104466,-0.05543466381396446 +202053,1010.2650000104467,-0.05543462853717142 +202054,1010.2700000104468,-0.055434593259192186 +202055,1010.2750000104469,-0.055434557980026444 +202056,1010.280000010447,-0.055434522699673854 +202057,1010.2850000104471,-0.055434487418134115 +202058,1010.2900000104472,-0.05543445213540689 +202059,1010.2950000104473,-0.05543441685149186 +202060,1010.3000000104474,-0.055434381566388725 +202061,1010.3050000104475,-0.05543434628009715 +202062,1010.3100000104477,-0.0554343109926168 +202063,1010.3150000104478,-0.05543427570394738 +202064,1010.3200000104479,-0.05543424041408855 +202065,1010.325000010448,-0.05543420512304 +202066,1010.3300000104481,-0.05543416983080141 +202067,1010.3350000104482,-0.05543413453737246 +202068,1010.3400000104483,-0.055434099242752825 +202069,1010.3450000104484,-0.05543406394694219 +202070,1010.3500000104485,-0.05543402864994023 +202071,1010.3550000104486,-0.05543399335174664 +202072,1010.3600000104487,-0.05543395805236108 +202073,1010.3650000104489,-0.05543392275178324 +202074,1010.370000010449,-0.055433887450012806 +202075,1010.3750000104491,-0.05543385214704945 +202076,1010.3800000104492,-0.05543381684289286 +202077,1010.3850000104493,-0.0554337815375427 +202078,1010.3900000104494,-0.055433746230998664 +202079,1010.3950000104495,-0.05543371092326044 +202080,1010.4000000104496,-0.0554336756143277 +202081,1010.4050000104497,-0.05543364030420013 +202082,1010.4100000104498,-0.05543360499287741 +202083,1010.41500001045,-0.055433569680359215 +202084,1010.42000001045,-0.055433534366645235 +202085,1010.4250000104502,-0.055433499051735155 +202086,1010.4300000104503,-0.05543346373562865 +202087,1010.4350000104504,-0.05543342841832541 +202088,1010.4400000104505,-0.0554333930998251 +202089,1010.4450000104506,-0.05543335778012741 +202090,1010.4500000104507,-0.055433322459232034 +202091,1010.4550000104508,-0.05543328713713864 +202092,1010.4600000104509,-0.05543325181384691 +202093,1010.465000010451,-0.05543321648935654 +202094,1010.4700000104511,-0.0554331811636672 +202095,1010.4750000104513,-0.05543314583677858 +202096,1010.4800000104514,-0.05543311050869036 +202097,1010.4850000104515,-0.05543307517940223 +202098,1010.4900000104516,-0.055433039848913866 +202099,1010.4950000104517,-0.055433004517224944 +202100,1010.5000000104518,-0.055432969184335164 +202101,1010.5050000104519,-0.0554329338502442 +202102,1010.510000010452,-0.055432898514951735 +202103,1010.5150000104521,-0.055432863178457456 +202104,1010.5200000104522,-0.055432827840761034 +202105,1010.5250000104523,-0.055432792501862185 +202106,1010.5300000104525,-0.05543275716176056 +202107,1010.5350000104526,-0.05543272182045585 +202108,1010.5400000104527,-0.05543268647794775 +202109,1010.5450000104528,-0.05543265113423594 +202110,1010.5500000104529,-0.0554326157893201 +202111,1010.555000010453,-0.05543258044319991 +202112,1010.5600000104531,-0.05543254509587507 +202113,1010.5650000104532,-0.05543250974734525 +202114,1010.5700000104533,-0.055432474397610135 +202115,1010.5750000104534,-0.05543243904666943 +202116,1010.5800000104535,-0.05543240369452279 +202117,1010.5850000104537,-0.05543236834116992 +202118,1010.5900000104538,-0.0554323329866105 +202119,1010.5950000104539,-0.05543229763084422 +202120,1010.600000010454,-0.05543226227387076 +202121,1010.6050000104541,-0.05543222691568981 +202122,1010.6100000104542,-0.05543219155630105 +202123,1010.6150000104543,-0.055432156195704164 +202124,1010.6200000104544,-0.055432120833898854 +202125,1010.6250000104545,-0.055432085470884775 +202126,1010.6300000104546,-0.055432050106661634 +202127,1010.6350000104547,-0.055432014741229114 +202128,1010.6400000104549,-0.0554319793745869 +202129,1010.645000010455,-0.055431944006734686 +202130,1010.6500000104551,-0.05543190863767214 +202131,1010.6550000104552,-0.05543187326739897 +202132,1010.6600000104553,-0.055431837895914854 +202133,1010.6650000104554,-0.05543180252321948 +202134,1010.6700000104555,-0.05543176714931252 +202135,1010.6750000104556,-0.05543173177419368 +202136,1010.6800000104557,-0.05543169639786264 +202137,1010.6850000104558,-0.05543166102031907 +202138,1010.690000010456,-0.055431625641562676 +202139,1010.695000010456,-0.055431590261593146 +202140,1010.7000000104562,-0.05543155488041016 +202141,1010.7050000104563,-0.055431519498013414 +202142,1010.7100000104564,-0.055431484114402595 +202143,1010.7150000104565,-0.055431448729577386 +202144,1010.7200000104566,-0.055431413343537475 +202145,1010.7250000104567,-0.05543137795628255 +202146,1010.7300000104568,-0.05543134256781229 +202147,1010.7350000104569,-0.0554313071781264 +202148,1010.740000010457,-0.05543127178722456 +202149,1010.7450000104571,-0.055431236395106456 +202150,1010.7500000104573,-0.055431201001771783 +202151,1010.7550000104574,-0.05543116560722022 +202152,1010.7600000104575,-0.05543113021145146 +202153,1010.7650000104576,-0.0554310948144652 +202154,1010.7700000104577,-0.05543105941626111 +202155,1010.7750000104578,-0.055431024016838894 +202156,1010.7800000104579,-0.05543098861619824 +202157,1010.785000010458,-0.05543095321433883 +202158,1010.7900000104581,-0.05543091781126036 +202159,1010.7950000104582,-0.05543088240696251 +202160,1010.8000000104583,-0.055430847001444974 +202161,1010.8050000104585,-0.05543081159470745 +202162,1010.8100000104586,-0.05543077618674961 +202163,1010.8150000104587,-0.05543074077757116 +202164,1010.8200000104588,-0.05543070536717178 +202165,1010.8250000104589,-0.05543066995555117 +202166,1010.830000010459,-0.055430634542709 +202167,1010.8350000104591,-0.055430599128644974 +202168,1010.8400000104592,-0.055430563713358784 +202169,1010.8450000104593,-0.055430528296850114 +202170,1010.8500000104594,-0.05543049287911866 +202171,1010.8550000104595,-0.05543045746016411 +202172,1010.8600000104597,-0.05543042203998615 +202173,1010.8650000104598,-0.05543038661858448 +202174,1010.8700000104599,-0.05543035119595878 +202175,1010.87500001046,-0.055430315772108746 +202176,1010.8800000104601,-0.055430280347034074 +202177,1010.8850000104602,-0.05543024492073444 +202178,1010.8900000104603,-0.055430209493209544 +202179,1010.8950000104604,-0.05543017406445908 +202180,1010.9000000104605,-0.05543013863448275 +202181,1010.9050000104606,-0.05543010320328023 +202182,1010.9100000104607,-0.05543006777085121 +202183,1010.9150000104609,-0.05543003233719539 +202184,1010.920000010461,-0.05542999690231244 +202185,1010.9250000104611,-0.05542996146620208 +202186,1010.9300000104612,-0.05542992602886399 +202187,1010.9350000104613,-0.05542989059029786 +202188,1010.9400000104614,-0.05542985515050339 +202189,1010.9450000104615,-0.05542981970948026 +202190,1010.9500000104616,-0.05542978426722817 +202191,1010.9550000104617,-0.05542974882374682 +202192,1010.9600000104618,-0.05542971337903589 +202193,1010.965000010462,-0.05542967793309508 +202194,1010.9700000104621,-0.05542964248592408 +202195,1010.9750000104622,-0.055429607037522574 +202196,1010.9800000104623,-0.05542957158789027 +202197,1010.9850000104624,-0.05542953613702684 +202198,1010.9900000104625,-0.055429500684932013 +202199,1010.9950000104626,-0.05542946523160543 +202200,1011.0000000104627,-0.05542942977704684 +202201,1011.0050000104628,-0.0554293943212559 +202202,1011.0100000104629,-0.055429358864232316 +202203,1011.015000010463,-0.05542932340597578 +202204,1011.0200000104631,-0.05542928794648599 +202205,1011.0250000104633,-0.055429252485762616 +202206,1011.0300000104634,-0.05542921702380538 +202207,1011.0350000104635,-0.05542918156061397 +202208,1011.0400000104636,-0.05542914609618808 +202209,1011.0450000104637,-0.05542911063052739 +202210,1011.0500000104638,-0.05542907516363161 +202211,1011.0550000104639,-0.05542903969550042 +202212,1011.060000010464,-0.05542900422613353 +202213,1011.0650000104641,-0.05542896875553062 +202214,1011.0700000104642,-0.055428933283691396 +202215,1011.0750000104644,-0.05542889781061555 +202216,1011.0800000104645,-0.05542886233630279 +202217,1011.0850000104646,-0.05542882686075278 +202218,1011.0900000104647,-0.05542879138396523 +202219,1011.0950000104648,-0.055428755905939854 +202220,1011.1000000104649,-0.05542872042667632 +202221,1011.105000010465,-0.05542868494617433 +202222,1011.1100000104651,-0.05542864946443358 +202223,1011.1150000104652,-0.05542861398145377 +202224,1011.1200000104653,-0.0554285784972346 +202225,1011.1250000104654,-0.055428543011775744 +202226,1011.1300000104656,-0.05542850752507693 +202227,1011.1350000104657,-0.05542847203713783 +202228,1011.1400000104658,-0.05542843654795814 +202229,1011.1450000104659,-0.055428401057537574 +202230,1011.150000010466,-0.05542836556587581 +202231,1011.1550000104661,-0.055428330072972556 +202232,1011.1600000104662,-0.0554282945788275 +202233,1011.1650000104663,-0.05542825908344035 +202234,1011.1700000104664,-0.055428223586810786 +202235,1011.1750000104665,-0.05542818808893851 +202236,1011.1800000104666,-0.055428152589823226 +202237,1011.1850000104668,-0.05542811708946462 +202238,1011.1900000104669,-0.05542808158786241 +202239,1011.195000010467,-0.055428046085016267 +202240,1011.2000000104671,-0.055428010580925904 +202241,1011.2050000104672,-0.05542797507559101 +202242,1011.2100000104673,-0.055427939569011285 +202243,1011.2150000104674,-0.055427904061186424 +202244,1011.2200000104675,-0.055427868552116136 +202245,1011.2250000104676,-0.055427833041800115 +202246,1011.2300000104677,-0.055427797530238056 +202247,1011.2350000104678,-0.055427762017429646 +202248,1011.240000010468,-0.05542772650337459 +202249,1011.2450000104681,-0.055427690988072584 +202250,1011.2500000104682,-0.05542765547152334 +202251,1011.2550000104683,-0.05542761995372655 +202252,1011.2600000104684,-0.055427584434681904 +202253,1011.2650000104685,-0.055427548914389106 +202254,1011.2700000104686,-0.055427513392847856 +202255,1011.2750000104687,-0.05542747787005784 +202256,1011.2800000104688,-0.05542744234601878 +202257,1011.2850000104689,-0.05542740682073036 +202258,1011.290000010469,-0.05542737129419227 +202259,1011.2950000104692,-0.055427335766404226 +202260,1011.3000000104693,-0.05542730023736591 +202261,1011.3050000104694,-0.05542726470707705 +202262,1011.3100000104695,-0.05542722917553731 +202263,1011.3150000104696,-0.055427193642746404 +202264,1011.3200000104697,-0.055427158108704036 +202265,1011.3250000104698,-0.055427122573409905 +202266,1011.3300000104699,-0.05542708703686371 +202267,1011.33500001047,-0.05542705149906514 +202268,1011.3400000104701,-0.05542701596001392 +202269,1011.3450000104702,-0.055426980419709726 +202270,1011.3500000104704,-0.05542694487815226 +202271,1011.3550000104705,-0.05542690933534124 +202272,1011.3600000104706,-0.05542687379127635 +202273,1011.3650000104707,-0.05542683824595729 +202274,1011.3700000104708,-0.055426802699383756 +202275,1011.3750000104709,-0.05542676715155547 +202276,1011.380000010471,-0.05542673160247212 +202277,1011.3850000104711,-0.055426696052133406 +202278,1011.3900000104712,-0.05542666050053903 +202279,1011.3950000104713,-0.05542662494768869 +202280,1011.4000000104714,-0.055426589393582096 +202281,1011.4050000104716,-0.055426553838218935 +202282,1011.4100000104717,-0.05542651828159892 +202283,1011.4150000104718,-0.05542648272372175 +202284,1011.4200000104719,-0.05542644716458712 +202285,1011.425000010472,-0.055426411604194724 +202286,1011.4300000104721,-0.055426376042544294 +202287,1011.4350000104722,-0.0554263404796355 +202288,1011.4400000104723,-0.055426304915468065 +202289,1011.4450000104724,-0.05542626935004168 +202290,1011.4500000104725,-0.05542623378335604 +202291,1011.4550000104726,-0.055426198215410866 +202292,1011.4600000104728,-0.05542616264620584 +202293,1011.4650000104729,-0.05542612707574068 +202294,1011.470000010473,-0.05542609150401509 +202295,1011.4750000104731,-0.055426055931028756 +202296,1011.4800000104732,-0.055426020356781396 +202297,1011.4850000104733,-0.055425984781272704 +202298,1011.4900000104734,-0.05542594920450239 +202299,1011.4950000104735,-0.05542591362647015 +202300,1011.5000000104736,-0.055425878047175685 +202301,1011.5050000104737,-0.055425842466618705 +202302,1011.5100000104738,-0.0554258068847989 +202303,1011.515000010474,-0.055425771301716 +202304,1011.5200000104741,-0.055425735717369674 +202305,1011.5250000104742,-0.05542570013175965 +202306,1011.5300000104743,-0.05542566454488562 +202307,1011.5350000104744,-0.05542562895674729 +202308,1011.5400000104745,-0.055425593367344365 +202309,1011.5450000104746,-0.05542555777667656 +202310,1011.5500000104747,-0.05542552218474356 +202311,1011.5550000104748,-0.055425486591545066 +202312,1011.5600000104749,-0.0554254509970808 +202313,1011.565000010475,-0.055425415401350465 +202314,1011.5700000104752,-0.055425379804353754 +202315,1011.5750000104753,-0.055425344206090375 +202316,1011.5800000104754,-0.05542530860656004 +202317,1011.5850000104755,-0.055425273005762436 +202318,1011.5900000104756,-0.05542523740369728 +202319,1011.5950000104757,-0.055425201800364275 +202320,1011.6000000104758,-0.05542516619576314 +202321,1011.6050000104759,-0.055425130589893554 +202322,1011.610000010476,-0.05542509498275524 +202323,1011.6150000104761,-0.0554250593743479 +202324,1011.6200000104762,-0.055425023764671226 +202325,1011.6250000104764,-0.055424988153724944 +202326,1011.6300000104765,-0.05542495254150875 +202327,1011.6350000104766,-0.055424916928022344 +202328,1011.6400000104767,-0.05542488131326543 +202329,1011.6450000104768,-0.055424845697237726 +202330,1011.6500000104769,-0.055424810079938935 +202331,1011.655000010477,-0.05542477446136876 +202332,1011.6600000104771,-0.05542473884152689 +202333,1011.6650000104772,-0.055424703220413055 +202334,1011.6700000104773,-0.055424667598026944 +202335,1011.6750000104774,-0.05542463197436828 +202336,1011.6800000104776,-0.05542459634943677 +202337,1011.6850000104777,-0.055424560723232104 +202338,1011.6900000104778,-0.05542452509575399 +202339,1011.6950000104779,-0.055424489467002146 +202340,1011.700000010478,-0.055424453836976285 +202341,1011.7050000104781,-0.05542441820567609 +202342,1011.7100000104782,-0.05542438257310128 +202343,1011.7150000104783,-0.055424346939251565 +202344,1011.7200000104784,-0.05542431130412665 +202345,1011.7250000104785,-0.05542427566772624 +202346,1011.7300000104786,-0.055424240030050045 +202347,1011.7350000104788,-0.05542420439109778 +202348,1011.7400000104789,-0.05542416875086913 +202349,1011.745000010479,-0.055424133109363824 +202350,1011.7500000104791,-0.05542409746658156 +202351,1011.7550000104792,-0.05542406182252203 +202352,1011.7600000104793,-0.05542402617718497 +202353,1011.7650000104794,-0.05542399053057008 +202354,1011.7700000104795,-0.05542395488267707 +202355,1011.7750000104796,-0.05542391923350563 +202356,1011.7800000104797,-0.055423883583055486 +202357,1011.7850000104798,-0.05542384793132635 +202358,1011.79000001048,-0.05542381227831791 +202359,1011.7950000104801,-0.0554237766240299 +202360,1011.8000000104802,-0.055423740968462 +202361,1011.8050000104803,-0.05542370531161395 +202362,1011.8100000104804,-0.05542366965348542 +202363,1011.8150000104805,-0.055423633994076155 +202364,1011.8200000104806,-0.05542359833338586 +202365,1011.8250000104807,-0.05542356267141422 +202366,1011.8300000104808,-0.05542352700816096 +202367,1011.8350000104809,-0.055423491343625786 +202368,1011.840000010481,-0.05542345567780841 +202369,1011.8450000104812,-0.05542342001070854 +202370,1011.8500000104813,-0.05542338434232589 +202371,1011.8550000104814,-0.055423348672660154 +202372,1011.8600000104815,-0.05542331300171105 +202373,1011.8650000104816,-0.0554232773294783 +202374,1011.8700000104817,-0.0554232416559616 +202375,1011.8750000104818,-0.05542320598116066 +202376,1011.8800000104819,-0.0554231703050752 +202377,1011.885000010482,-0.05542313462770493 +202378,1011.8900000104821,-0.055423098949049544 +202379,1011.8950000104822,-0.055423063269108765 +202380,1011.9000000104824,-0.055423027587882305 +202381,1011.9050000104825,-0.05542299190536987 +202382,1011.9100000104826,-0.055422956221571174 +202383,1011.9150000104827,-0.05542292053648592 +202384,1011.9200000104828,-0.05542288485011383 +202385,1011.9250000104829,-0.055422849162454615 +202386,1011.930000010483,-0.05542281347350797 +202387,1011.9350000104831,-0.05542277778327362 +202388,1011.9400000104832,-0.05542274209175126 +202389,1011.9450000104833,-0.05542270639894062 +202390,1011.9500000104834,-0.05542267070484141 +202391,1011.9550000104836,-0.05542263500945333 +202392,1011.9600000104837,-0.0554225993127761 +202393,1011.9650000104838,-0.055422563614809434 +202394,1011.9700000104839,-0.055422527915553035 +202395,1011.975000010484,-0.055422492215006613 +202396,1011.9800000104841,-0.05542245651316989 +202397,1011.9850000104842,-0.05542242081004258 +202398,1011.9900000104843,-0.05542238510562439 +202399,1011.9950000104844,-0.05542234939991502 +202400,1012.0000000104845,-0.055422313692914206 +202401,1012.0050000104847,-0.05542227798462163 +202402,1012.0100000104848,-0.05542224227503704 +202403,1012.0150000104849,-0.05542220656416012 +202404,1012.020000010485,-0.0554221708519906 +202405,1012.0250000104851,-0.05542213513852818 +202406,1012.0300000104852,-0.05542209942377258 +202407,1012.0350000104853,-0.05542206370772351 +202408,1012.0400000104854,-0.055422027990380686 +202409,1012.0450000104855,-0.05542199227174382 +202410,1012.0500000104856,-0.05542195655181263 +202411,1012.0550000104857,-0.05542192083058683 +202412,1012.0600000104859,-0.05542188510806612 +202413,1012.065000010486,-0.055421849384250224 +202414,1012.0700000104861,-0.05542181365913885 +202415,1012.0750000104862,-0.05542177793273172 +202416,1012.0800000104863,-0.05542174220502854 +202417,1012.0850000104864,-0.055421706476029016 +202418,1012.0900000104865,-0.055421670745732884 +202419,1012.0950000104866,-0.05542163501413984 +202420,1012.1000000104867,-0.055421599281249616 +202421,1012.1050000104868,-0.05542156354706191 +202422,1012.1100000104869,-0.05542152781157644 +202423,1012.115000010487,-0.055421492074792925 +202424,1012.1200000104872,-0.05542145633671108 +202425,1012.1250000104873,-0.055421420597330594 +202426,1012.1300000104874,-0.05542138485665122 +202427,1012.1350000104875,-0.055421349114672655 +202428,1012.1400000104876,-0.0554213133713946 +202429,1012.1450000104877,-0.055421277626816805 +202430,1012.1500000104878,-0.05542124188093895 +202431,1012.1550000104879,-0.05542120613376078 +202432,1012.160000010488,-0.055421170385281986 +202433,1012.1650000104881,-0.05542113463550229 +202434,1012.1700000104883,-0.05542109888442141 +202435,1012.1750000104884,-0.05542106313203907 +202436,1012.1800000104885,-0.05542102737835496 +202437,1012.1850000104886,-0.05542099162336884 +202438,1012.1900000104887,-0.05542095586708038 +202439,1012.1950000104888,-0.05542092010948932 +202440,1012.2000000104889,-0.05542088435059536 +202441,1012.205000010489,-0.05542084859039824 +202442,1012.2100000104891,-0.05542081282889765 +202443,1012.2150000104892,-0.05542077706609332 +202444,1012.2200000104893,-0.055420741301984974 +202445,1012.2250000104895,-0.055420705536572315 +202446,1012.2300000104896,-0.05542066976985507 +202447,1012.2350000104897,-0.055420634001832954 +202448,1012.2400000104898,-0.05542059823250567 +202449,1012.2450000104899,-0.05542056246187295 +202450,1012.25000001049,-0.0554205266899345 +202451,1012.2550000104901,-0.055420490916690046 +202452,1012.2600000104902,-0.055420455142139294 +202453,1012.2650000104903,-0.055420419366281976 +202454,1012.2700000104904,-0.05542038358911781 +202455,1012.2750000104905,-0.05542034781064649 +202456,1012.2800000104907,-0.05542031203086775 +202457,1012.2850000104908,-0.05542027624978131 +202458,1012.2900000104909,-0.05542024046738689 +202459,1012.295000010491,-0.05542020468368419 +202460,1012.3000000104911,-0.05542016889867294 +202461,1012.3050000104912,-0.05542013311235286 +202462,1012.3100000104913,-0.05542009732472367 +202463,1012.3150000104914,-0.05542006153578508 +202464,1012.3200000104915,-0.05542002574553682 +202465,1012.3250000104916,-0.055419989953978586 +202466,1012.3300000104917,-0.05541995416111011 +202467,1012.3350000104919,-0.055419918366931116 +202468,1012.340000010492,-0.05541988257144132 +202469,1012.3450000104921,-0.05541984677464044 +202470,1012.3500000104922,-0.055419810976528185 +202471,1012.3550000104923,-0.05541977517710429 +202472,1012.3600000104924,-0.05541973937636845 +202473,1012.3650000104925,-0.05541970357432041 +202474,1012.3700000104926,-0.05541966777095988 +202475,1012.3750000104927,-0.055419631966286576 +202476,1012.3800000104928,-0.05541959616030022 +202477,1012.385000010493,-0.055419560353000524 +202478,1012.390000010493,-0.055419524544387214 +202479,1012.3950000104932,-0.055419488734460016 +202480,1012.4000000104933,-0.05541945292321864 +202481,1012.4050000104934,-0.055419417110662804 +202482,1012.4100000104935,-0.05541938129679224 +202483,1012.4150000104936,-0.05541934548160666 +202484,1012.4200000104937,-0.055419309665105776 +202485,1012.4250000104938,-0.05541927384728932 +202486,1012.4300000104939,-0.055419238028157 +202487,1012.435000010494,-0.05541920220770855 +202488,1012.4400000104941,-0.055419166385943686 +202489,1012.4450000104943,-0.05541913056286212 +202490,1012.4500000104944,-0.055419094738463584 +202491,1012.4550000104945,-0.0554190589127478 +202492,1012.4600000104946,-0.05541902308571449 +202493,1012.4650000104947,-0.055418987257363356 +202494,1012.4700000104948,-0.055418951427694124 +202495,1012.4750000104949,-0.05541891559670653 +202496,1012.480000010495,-0.05541887976440029 +202497,1012.4850000104951,-0.055418843930775126 +202498,1012.4900000104952,-0.05541880809583075 +202499,1012.4950000104953,-0.055418772259566894 +202500,1012.5000000104955,-0.05541873642198327 +202501,1012.5050000104956,-0.0554187005830796 +202502,1012.5100000104957,-0.05541866474285561 +202503,1012.5150000104958,-0.05541862890131102 +202504,1012.5200000104959,-0.05541859305844557 +202505,1012.525000010496,-0.05541855721425896 +202506,1012.5300000104961,-0.0554185213687509 +202507,1012.5350000104962,-0.05541848552192114 +202508,1012.5400000104963,-0.05541844967376939 +202509,1012.5450000104964,-0.055418413824295375 +202510,1012.5500000104965,-0.05541837797349881 +202511,1012.5550000104967,-0.05541834212137942 +202512,1012.5600000104968,-0.055418306267936944 +202513,1012.5650000104969,-0.055418270413171086 +202514,1012.570000010497,-0.05541823455708158 +202515,1012.5750000104971,-0.055418198699668124 +202516,1012.5800000104972,-0.055418162840930464 +202517,1012.5850000104973,-0.05541812698086832 +202518,1012.5900000104974,-0.05541809111948142 +202519,1012.5950000104975,-0.05541805525676948 +202520,1012.6000000104976,-0.05541801939273222 +202521,1012.6050000104977,-0.055417983527369374 +202522,1012.6100000104979,-0.05541794766068065 +202523,1012.615000010498,-0.055417911792665794 +202524,1012.6200000104981,-0.055417875923324506 +202525,1012.6250000104982,-0.055417840052656514 +202526,1012.6300000104983,-0.05541780418066156 +202527,1012.6350000104984,-0.05541776830733936 +202528,1012.6400000104985,-0.05541773243268962 +202529,1012.6450000104986,-0.055417696556712075 +202530,1012.6500000104987,-0.055417660679406455 +202531,1012.6550000104988,-0.05541762480077249 +202532,1012.660000010499,-0.055417588920809877 +202533,1012.665000010499,-0.05541755303951837 +202534,1012.6700000104992,-0.055417517156897675 +202535,1012.6750000104993,-0.05541748127294753 +202536,1012.6800000104994,-0.05541744538766766 +202537,1012.6850000104995,-0.05541740950105778 +202538,1012.6900000104996,-0.055417373613117604 +202539,1012.6950000104997,-0.05541733772384688 +202540,1012.7000000104998,-0.055417301833245336 +202541,1012.7050000104999,-0.05541726594131267 +202542,1012.7100000105,-0.055417230048048625 +202543,1012.7150000105001,-0.05541719415345293 +202544,1012.7200000105003,-0.05541715825752529 +202545,1012.7250000105004,-0.055417122360265456 +202546,1012.7300000105005,-0.055417086461673135 +202547,1012.7350000105006,-0.055417050561748074 +202548,1012.7400000105007,-0.05541701466048997 +202549,1012.7450000105008,-0.05541697875789856 +202550,1012.7500000105009,-0.05541694285397358 +202551,1012.755000010501,-0.055416906948714754 +202552,1012.7600000105011,-0.0554168710421218 +202553,1012.7650000105012,-0.055416835134194445 +202554,1012.7700000105013,-0.05541679922493242 +202555,1012.7750000105015,-0.05541676331433544 +202556,1012.7800000105016,-0.055416727402403256 +202557,1012.7850000105017,-0.055416691489135576 +202558,1012.7900000105018,-0.05541665557453212 +202559,1012.7950000105019,-0.055416619658592625 +202560,1012.800000010502,-0.05541658374131681 +202561,1012.8050000105021,-0.05541654782270443 +202562,1012.8100000105022,-0.05541651190275519 +202563,1012.8150000105023,-0.05541647598146881 +202564,1012.8200000105024,-0.05541644005884503 +202565,1012.8250000105025,-0.055416404134883565 +202566,1012.8300000105027,-0.05541636820958415 +202567,1012.8350000105028,-0.05541633228294651 +202568,1012.8400000105029,-0.05541629635497038 +202569,1012.845000010503,-0.0554162604256555 +202570,1012.8500000105031,-0.05541622449500156 +202571,1012.8550000105032,-0.055416188563008305 +202572,1012.8600000105033,-0.05541615262967548 +202573,1012.8650000105034,-0.0554161166950028 +202574,1012.8700000105035,-0.05541608075898998 +202575,1012.8750000105036,-0.05541604482163676 +202576,1012.8800000105037,-0.055416008882942874 +202577,1012.8850000105039,-0.055415972942908044 +202578,1012.890000010504,-0.055415937001532 +202579,1012.8950000105041,-0.05541590105881447 +202580,1012.9000000105042,-0.05541586511475518 +202581,1012.9050000105043,-0.05541582916935387 +202582,1012.9100000105044,-0.05541579322261026 +202583,1012.9150000105045,-0.05541575727452407 +202584,1012.9200000105046,-0.055415721325095035 +202585,1012.9250000105047,-0.05541568537432289 +202586,1012.9300000105048,-0.05541564942220737 +202587,1012.935000010505,-0.055415613468748195 +202588,1012.9400000105051,-0.05541557751394508 +202589,1012.9450000105052,-0.05541554155779778 +202590,1012.9500000105053,-0.055415505600306 +202591,1012.9550000105054,-0.0554154696414695 +202592,1012.9600000105055,-0.05541543368128798 +202593,1012.9650000105056,-0.055415397719761186 +202594,1012.9700000105057,-0.05541536175688886 +202595,1012.9750000105058,-0.0554153257926707 +202596,1012.9800000105059,-0.05541528982710645 +202597,1012.985000010506,-0.05541525386019585 +202598,1012.9900000105062,-0.05541521789193861 +202599,1012.9950000105063,-0.05541518192233449 +202600,1013.0000000105064,-0.05541514595138318 +202601,1013.0050000105065,-0.05541510997908445 +202602,1013.0100000105066,-0.05541507400543801 +202603,1013.0150000105067,-0.0554150380304436 +202604,1013.0200000105068,-0.05541500205410094 +202605,1013.0250000105069,-0.05541496607640977 +202606,1013.030000010507,-0.05541493009736982 +202607,1013.0350000105071,-0.055414894116980806 +202608,1013.0400000105072,-0.05541485813524248 +202609,1013.0450000105074,-0.055414822152154555 +202610,1013.0500000105075,-0.055414786167716786 +202611,1013.0550000105076,-0.05541475018192888 +202612,1013.0600000105077,-0.055414714194790576 +202613,1013.0650000105078,-0.05541467820630162 +202614,1013.0700000105079,-0.05541464221646172 +202615,1013.075000010508,-0.05541460622527062 +202616,1013.0800000105081,-0.055414570232728055 +202617,1013.0850000105082,-0.05541453423883375 +202618,1013.0900000105083,-0.05541449824358745 +202619,1013.0950000105084,-0.055414462246988865 +202620,1013.1000000105086,-0.05541442624903773 +202621,1013.1050000105087,-0.0554143902497338 +202622,1013.1100000105088,-0.05541435424907678 +202623,1013.1150000105089,-0.05541431824706642 +202624,1013.120000010509,-0.05541428224370245 +202625,1013.1250000105091,-0.0554142462389846 +202626,1013.1300000105092,-0.05541421023291261 +202627,1013.1350000105093,-0.05541417422548621 +202628,1013.1400000105094,-0.055414138216705114 +202629,1013.1450000105095,-0.05541410220656907 +202630,1013.1500000105096,-0.05541406619507783 +202631,1013.1550000105098,-0.05541403018223109 +202632,1013.1600000105099,-0.05541399416802859 +202633,1013.16500001051,-0.05541395815247009 +202634,1013.1700000105101,-0.055413922135555314 +202635,1013.1750000105102,-0.055413886117283984 +202636,1013.1800000105103,-0.05541385009765583 +202637,1013.1850000105104,-0.05541381407667059 +202638,1013.1900000105105,-0.055413778054328004 +202639,1013.1950000105106,-0.055413742030627815 +202640,1013.2000000105107,-0.05541370600556974 +202641,1013.2050000105108,-0.055413669979153514 +202642,1013.210000010511,-0.05541363395137887 +202643,1013.2150000105111,-0.05541359792224556 +202644,1013.2200000105112,-0.0554135618917533 +202645,1013.2250000105113,-0.05541352585990184 +202646,1013.2300000105114,-0.05541348982669089 +202647,1013.2350000105115,-0.05541345379212021 +202648,1013.2400000105116,-0.05541341775618952 +202649,1013.2450000105117,-0.05541338171889855 +202650,1013.2500000105118,-0.05541334568024705 +202651,1013.2550000105119,-0.05541330964023474 +202652,1013.260000010512,-0.05541327359886137 +202653,1013.2650000105122,-0.05541323755612666 +202654,1013.2700000105123,-0.05541320151203036 +202655,1013.2750000105124,-0.0554131654665722 +202656,1013.2800000105125,-0.05541312941975191 +202657,1013.2850000105126,-0.05541309337156923 +202658,1013.2900000105127,-0.05541305732202389 +202659,1013.2950000105128,-0.05541302127111562 +202660,1013.3000000105129,-0.055412985218844184 +202661,1013.305000010513,-0.05541294916520929 +202662,1013.3100000105131,-0.05541291311021068 +202663,1013.3150000105132,-0.05541287705384809 +202664,1013.3200000105134,-0.05541284099612126 +202665,1013.3250000105135,-0.055412804937029936 +202666,1013.3300000105136,-0.05541276887657382 +202667,1013.3350000105137,-0.05541273281475269 +202668,1013.3400000105138,-0.055412696751566244 +202669,1013.3450000105139,-0.055412660687014254 +202670,1013.350000010514,-0.055412624621096425 +202671,1013.3550000105141,-0.055412588553812515 +202672,1013.3600000105142,-0.055412552485162254 +202673,1013.3650000105143,-0.05541251641514538 +202674,1013.3700000105144,-0.05541248034376163 +202675,1013.3750000105146,-0.05541244427101074 +202676,1013.3800000105147,-0.05541240819689244 +202677,1013.3850000105148,-0.05541237212140648 +202678,1013.3900000105149,-0.05541233604455259 +202679,1013.395000010515,-0.05541229996633051 +202680,1013.4000000105151,-0.05541226388673996 +202681,1013.4050000105152,-0.0554122278057807 +202682,1013.4100000105153,-0.055412191723452464 +202683,1013.4150000105154,-0.05541215563975499 +202684,1013.4200000105155,-0.05541211955468799 +202685,1013.4250000105156,-0.05541208346825124 +202686,1013.4300000105158,-0.05541204738044445 +202687,1013.4350000105159,-0.055412011291267375 +202688,1013.440000010516,-0.055411975200719756 +202689,1013.4450000105161,-0.05541193910880131 +202690,1013.4500000105162,-0.055411903015511785 +202691,1013.4550000105163,-0.05541186692085093 +202692,1013.4600000105164,-0.055411830824818466 +202693,1013.4650000105165,-0.05541179472741415 +202694,1013.4700000105166,-0.0554117586286377 +202695,1013.4750000105167,-0.05541172252848887 +202696,1013.4800000105168,-0.055411686426967394 +202697,1013.485000010517,-0.05541165032407301 +202698,1013.4900000105171,-0.055411614219805456 +202699,1013.4950000105172,-0.05541157811416447 +202700,1013.5000000105173,-0.05541154200714979 +202701,1013.5050000105174,-0.05541150589876116 +202702,1013.5100000105175,-0.055411469788998316 +202703,1013.5150000105176,-0.05541143367786101 +202704,1013.5200000105177,-0.05541139756534896 +202705,1013.5250000105178,-0.05541136145146193 +202706,1013.5300000105179,-0.05541132533619964 +202707,1013.535000010518,-0.05541128921956182 +202708,1013.5400000105182,-0.05541125310154824 +202709,1013.5450000105183,-0.055411216982158625 +202710,1013.5500000105184,-0.05541118086139271 +202711,1013.5550000105185,-0.05541114473925023 +202712,1013.5600000105186,-0.05541110861573095 +202713,1013.5650000105187,-0.05541107249083459 +202714,1013.5700000105188,-0.055411036364560885 +202715,1013.5750000105189,-0.055411000236909605 +202716,1013.580000010519,-0.05541096410788046 +202717,1013.5850000105191,-0.05541092797747319 +202718,1013.5900000105192,-0.05541089184568756 +202719,1013.5950000105194,-0.055410855712523285 +202720,1013.6000000105195,-0.055410819577980136 +202721,1013.6050000105196,-0.05541078344205782 +202722,1013.6100000105197,-0.0554107473047561 +202723,1013.6150000105198,-0.05541071116607472 +202724,1013.6200000105199,-0.055410675026013406 +202725,1013.62500001052,-0.055410638884571914 +202726,1013.6300000105201,-0.055410602741749956 +202727,1013.6350000105202,-0.055410566597547305 +202728,1013.6400000105203,-0.05541053045196368 +202729,1013.6450000105204,-0.05541049430499885 +202730,1013.6500000105206,-0.05541045815665254 +202731,1013.6550000105207,-0.055410422006924476 +202732,1013.6600000105208,-0.055410385855814426 +202733,1013.6650000105209,-0.05541034970332213 +202734,1013.670000010521,-0.05541031354944731 +202735,1013.6750000105211,-0.05541027739418972 +202736,1013.6800000105212,-0.055410241237549104 +202737,1013.6850000105213,-0.0554102050795252 +202738,1013.6900000105214,-0.055410168920117756 +202739,1013.6950000105215,-0.055410132759326505 +202740,1013.7000000105216,-0.055410096597151196 +202741,1013.7050000105218,-0.05541006043359157 +202742,1013.7100000105219,-0.05541002426864738 +202743,1013.715000010522,-0.055409988102318355 +202744,1013.7200000105221,-0.05540995193460424 +202745,1013.7250000105222,-0.05540991576550478 +202746,1013.7300000105223,-0.055409879595019716 +202747,1013.7350000105224,-0.05540984342314879 +202748,1013.7400000105225,-0.055409807249891745 +202749,1013.7450000105226,-0.05540977107524833 +202750,1013.7500000105227,-0.05540973489921828 +202751,1013.7550000105228,-0.05540969872180135 +202752,1013.760000010523,-0.055409662542997284 +202753,1013.7650000105231,-0.05540962636280581 +202754,1013.7700000105232,-0.055409590181226674 +202755,1013.7750000105233,-0.05540955399825964 +202756,1013.7800000105234,-0.05540951781390443 +202757,1013.7850000105235,-0.05540948162816079 +202758,1013.7900000105236,-0.05540944544102848 +202759,1013.7950000105237,-0.05540940925250723 +202760,1013.8000000105238,-0.05540937306259679 +202761,1013.8050000105239,-0.0554093368712969 +202762,1013.810000010524,-0.05540930067860731 +202763,1013.8150000105242,-0.05540926448452776 +202764,1013.8200000105243,-0.05540922828905798 +202765,1013.8250000105244,-0.055409192092197745 +202766,1013.8300000105245,-0.05540915589394677 +202767,1013.8350000105246,-0.055409119694304836 +202768,1013.8400000105247,-0.05540908349327165 +202769,1013.8450000105248,-0.05540904729084699 +202770,1013.8500000105249,-0.055409011087030564 +202771,1013.855000010525,-0.05540897488182215 +202772,1013.8600000105251,-0.05540893867522147 +202773,1013.8650000105253,-0.05540890246722827 +202774,1013.8700000105254,-0.05540886625784232 +202775,1013.8750000105255,-0.055408830047063345 +202776,1013.8800000105256,-0.0554087938348911 +202777,1013.8850000105257,-0.05540875762132532 +202778,1013.8900000105258,-0.05540872140636576 +202779,1013.8950000105259,-0.055408685190012165 +202780,1013.900000010526,-0.055408648972264274 +202781,1013.9050000105261,-0.055408612753121846 +202782,1013.9100000105262,-0.0554085765325846 +202783,1013.9150000105263,-0.055408540310652316 +202784,1013.9200000105265,-0.055408504087324714 +202785,1013.9250000105266,-0.055408467862601556 +202786,1013.9300000105267,-0.055408431636482576 +202787,1013.9350000105268,-0.05540839540896754 +202788,1013.9400000105269,-0.05540835918005617 +202789,1013.945000010527,-0.05540832294974823 +202790,1013.9500000105271,-0.05540828671804346 +202791,1013.9550000105272,-0.05540825048494161 +202792,1013.9600000105273,-0.055408214250442414 +202793,1013.9650000105274,-0.055408178014545645 +202794,1013.9700000105275,-0.05540814177725102 +202795,1013.9750000105277,-0.0554081055385583 +202796,1013.9800000105278,-0.05540806929846724 +202797,1013.9850000105279,-0.05540803305697757 +202798,1013.990000010528,-0.05540799681408906 +202799,1013.9950000105281,-0.05540796056980145 +202800,1014.0000000105282,-0.055407924324114476 +202801,1014.0050000105283,-0.05540788807702789 +202802,1014.0100000105284,-0.05540785182854144 +202803,1014.0150000105285,-0.05540781557865488 +202804,1014.0200000105286,-0.05540777932736795 +202805,1014.0250000105287,-0.055407743074680396 +202806,1014.0300000105289,-0.05540770682059197 +202807,1014.035000010529,-0.05540767056510242 +202808,1014.0400000105291,-0.0554076343082115 +202809,1014.0450000105292,-0.055407598049918946 +202810,1014.0500000105293,-0.05540756179022452 +202811,1014.0550000105294,-0.05540752552912797 +202812,1014.0600000105295,-0.05540748926662903 +202813,1014.0650000105296,-0.05540745300272745 +202814,1014.0700000105297,-0.05540741673742299 +202815,1014.0750000105298,-0.055407380470715396 +202816,1014.08000001053,-0.055407344202604424 +202817,1014.08500001053,-0.055407307933089796 +202818,1014.0900000105302,-0.0554072716621713 +202819,1014.0950000105303,-0.05540723538984865 +202820,1014.1000000105304,-0.055407199116121617 +202821,1014.1050000105305,-0.05540716284098994 +202822,1014.1100000105306,-0.05540712656445337 +202823,1014.1150000105307,-0.05540709028651165 +202824,1014.1200000105308,-0.05540705400716455 +202825,1014.1250000105309,-0.055407017726411795 +202826,1014.130000010531,-0.05540698144425315 +202827,1014.1350000105311,-0.055406945160688365 +202828,1014.1400000105313,-0.05540690887571718 +202829,1014.1450000105314,-0.055406872589339344 +202830,1014.1500000105315,-0.05540683630155462 +202831,1014.1550000105316,-0.055406800012362756 +202832,1014.1600000105317,-0.0554067637217635 +202833,1014.1650000105318,-0.05540672742975659 +202834,1014.1700000105319,-0.05540669113634179 +202835,1014.175000010532,-0.05540665484151885 +202836,1014.1800000105321,-0.055406618545287514 +202837,1014.1850000105322,-0.05540658224764754 +202838,1014.1900000105323,-0.055406545948598666 +202839,1014.1950000105325,-0.05540650964814066 +202840,1014.2000000105326,-0.05540647334627326 +202841,1014.2050000105327,-0.05540643704299622 +202842,1014.2100000105328,-0.05540640073830929 +202843,1014.2150000105329,-0.05540636443221222 +202844,1014.220000010533,-0.05540632812470476 +202845,1014.2250000105331,-0.05540629181578668 +202846,1014.2300000105332,-0.05540625550545769 +202847,1014.2350000105333,-0.05540621919371759 +202848,1014.2400000105334,-0.055406182880566104 +202849,1014.2450000105335,-0.05540614656600299 +202850,1014.2500000105337,-0.05540611025002799 +202851,1014.2550000105338,-0.05540607393264088 +202852,1014.2600000105339,-0.05540603761384139 +202853,1014.265000010534,-0.05540600129362928 +202854,1014.2700000105341,-0.055405964972004285 +202855,1014.2750000105342,-0.05540592864896618 +202856,1014.2800000105343,-0.05540589232451471 +202857,1014.2850000105344,-0.05540585599864963 +202858,1014.2900000105345,-0.05540581967137068 +202859,1014.2950000105346,-0.05540578334267762 +202860,1014.3000000105347,-0.05540574701257021 +202861,1014.3050000105349,-0.055405710681048194 +202862,1014.310000010535,-0.05540567434811132 +202863,1014.3150000105351,-0.05540563801375935 +202864,1014.3200000105352,-0.05540560167799202 +202865,1014.3250000105353,-0.05540556534080912 +202866,1014.3300000105354,-0.05540552900221037 +202867,1014.3350000105355,-0.05540549266219553 +202868,1014.3400000105356,-0.05540545632076436 +202869,1014.3450000105357,-0.055405419977916606 +202870,1014.3500000105358,-0.05540538363365202 +202871,1014.355000010536,-0.05540534728797037 +202872,1014.360000010536,-0.05540531094087139 +202873,1014.3650000105362,-0.05540527459235484 +202874,1014.3700000105363,-0.05540523824242048 +202875,1014.3750000105364,-0.05540520189106806 +202876,1014.3800000105365,-0.055405165538297343 +202877,1014.3850000105366,-0.055405129184108066 +202878,1014.3900000105367,-0.05540509282849999 +202879,1014.3950000105368,-0.05540505647147286 +202880,1014.4000000105369,-0.055405020113026456 +202881,1014.405000010537,-0.0554049837531605 +202882,1014.4100000105371,-0.05540494739187476 +202883,1014.4150000105373,-0.055404911029169 +202884,1014.4200000105374,-0.05540487466504297 +202885,1014.4250000105375,-0.05540483829949642 +202886,1014.4300000105376,-0.0554048019325291 +202887,1014.4350000105377,-0.055404765564140764 +202888,1014.4400000105378,-0.05540472919433118 +202889,1014.4450000105379,-0.05540469282310009 +202890,1014.450000010538,-0.055404656450447266 +202891,1014.4550000105381,-0.05540462007637244 +202892,1014.4600000105382,-0.05540458370087538 +202893,1014.4650000105383,-0.05540454732395584 +202894,1014.4700000105385,-0.055404510945613585 +202895,1014.4750000105386,-0.05540447456584835 +202896,1014.4800000105387,-0.0554044381846599 +202897,1014.4850000105388,-0.05540440180204799 +202898,1014.4900000105389,-0.05540436541801238 +202899,1014.495000010539,-0.055404329032552824 +202900,1014.5000000105391,-0.055404292645669075 +202901,1014.5050000105392,-0.05540425625736089 +202902,1014.5100000105393,-0.055404219867628016 +202903,1014.5150000105394,-0.05540418347647023 +202904,1014.5200000105395,-0.055404147083887266 +202905,1014.5250000105397,-0.05540411068987889 +202906,1014.5300000105398,-0.05540407429444487 +202907,1014.5350000105399,-0.05540403789758494 +202908,1014.54000001054,-0.055404001499298874 +202909,1014.5450000105401,-0.055403965099586415 +202910,1014.5500000105402,-0.05540392869844733 +202911,1014.5550000105403,-0.055403892295881364 +202912,1014.5600000105404,-0.05540385589188829 +202913,1014.5650000105405,-0.05540381948646784 +202914,1014.5700000105406,-0.0554037830796198 +202915,1014.5750000105407,-0.055403746671343915 +202916,1014.5800000105409,-0.055403710261639934 +202917,1014.585000010541,-0.055403673850507616 +202918,1014.5900000105411,-0.055403637437946726 +202919,1014.5950000105412,-0.05540360102395703 +202920,1014.6000000105413,-0.05540356460853825 +202921,1014.6050000105414,-0.05540352819169017 +202922,1014.6100000105415,-0.055403491773412555 +202923,1014.6150000105416,-0.05540345535370514 +202924,1014.6200000105417,-0.055403418932567707 +202925,1014.6250000105418,-0.05540338250999999 +202926,1014.630000010542,-0.05540334608600176 +202927,1014.6350000105421,-0.055403309660572775 +202928,1014.6400000105422,-0.055403273233712795 +202929,1014.6450000105423,-0.05540323680542157 +202930,1014.6500000105424,-0.05540320037569886 +202931,1014.6550000105425,-0.05540316394454442 +202932,1014.6600000105426,-0.05540312751195802 +202933,1014.6650000105427,-0.055403091077939406 +202934,1014.6700000105428,-0.05540305464248834 +202935,1014.6750000105429,-0.055403018205604594 +202936,1014.680000010543,-0.05540298176728791 +202937,1014.6850000105431,-0.05540294532753805 +202938,1014.6900000105433,-0.05540290888635478 +202939,1014.6950000105434,-0.05540287244373785 +202940,1014.7000000105435,-0.05540283599968702 +202941,1014.7050000105436,-0.05540279955420205 +202942,1014.7100000105437,-0.0554027631072827 +202943,1014.7150000105438,-0.05540272665892873 +202944,1014.7200000105439,-0.055402690209139904 +202945,1014.725000010544,-0.05540265375791597 +202946,1014.7300000105441,-0.055402617305256696 +202947,1014.7350000105442,-0.05540258085116184 +202948,1014.7400000105443,-0.05540254439563117 +202949,1014.7450000105445,-0.05540250793866443 +202950,1014.7500000105446,-0.05540247148026138 +202951,1014.7550000105447,-0.05540243502042179 +202952,1014.7600000105448,-0.05540239855914541 +202953,1014.7650000105449,-0.05540236209643202 +202954,1014.770000010545,-0.05540232563228135 +202955,1014.7750000105451,-0.05540228916669318 +202956,1014.7800000105452,-0.055402252699667275 +202957,1014.7850000105453,-0.05540221623120339 +202958,1014.7900000105454,-0.05540217976130127 +202959,1014.7950000105456,-0.055402143289960695 +202960,1014.8000000105457,-0.055402106817181405 +202961,1014.8050000105458,-0.05540207034296318 +202962,1014.8100000105459,-0.05540203386730578 +202963,1014.815000010546,-0.05540199739020895 +202964,1014.8200000105461,-0.05540196091167246 +202965,1014.8250000105462,-0.05540192443169607 +202966,1014.8300000105463,-0.05540188795027956 +202967,1014.8350000105464,-0.05540185146742266 +202968,1014.8400000105465,-0.05540181498312515 +202969,1014.8450000105466,-0.05540177849738679 +202970,1014.8500000105468,-0.05540174201020733 +202971,1014.8550000105469,-0.05540170552158653 +202972,1014.860000010547,-0.05540166903152418 +202973,1014.8650000105471,-0.05540163254002002 +202974,1014.8700000105472,-0.055401596047073794 +202975,1014.8750000105473,-0.0554015595526853 +202976,1014.8800000105474,-0.05540152305685427 +202977,1014.8850000105475,-0.05540148655958049 +202978,1014.8900000105476,-0.05540145006086371 +202979,1014.8950000105477,-0.05540141356070369 +202980,1014.9000000105478,-0.0554013770591002 +202981,1014.905000010548,-0.05540134055605299 +202982,1014.9100000105481,-0.05540130405156182 +202983,1014.9150000105482,-0.055401267545626486 +202984,1014.9200000105483,-0.05540123103824671 +202985,1014.9250000105484,-0.05540119452942227 +202986,1014.9300000105485,-0.05540115801915293 +202987,1014.9350000105486,-0.055401121507438464 +202988,1014.9400000105487,-0.05540108499427862 +202989,1014.9450000105488,-0.055401048479673164 +202990,1014.9500000105489,-0.055401011963621856 +202991,1014.955000010549,-0.05540097544612446 +202992,1014.9600000105492,-0.055400938927180746 +202993,1014.9650000105493,-0.055400902406790464 +202994,1014.9700000105494,-0.05540086588495339 +202995,1014.9750000105495,-0.05540082936166928 +202996,1014.9800000105496,-0.0554007928369379 +202997,1014.9850000105497,-0.05540075631075901 +202998,1014.9900000105498,-0.05540071978313237 +202999,1014.9950000105499,-0.05540068325405777 +203000,1015.00000001055,-0.05540064672353495 +203001,1015.0050000105501,-0.05540061019156367 +203002,1015.0100000105502,-0.055400573658143715 +203003,1015.0150000105504,-0.05540053712327482 +203004,1015.0200000105505,-0.055400500586956766 +203005,1015.0250000105506,-0.05540046404918932 +203006,1015.0300000105507,-0.05540042750997225 +203007,1015.0350000105508,-0.05540039096930531 +203008,1015.0400000105509,-0.05540035442718826 +203009,1015.045000010551,-0.055400317883620875 +203010,1015.0500000105511,-0.05540028133860291 +203011,1015.0550000105512,-0.05540024479213413 +203012,1015.0600000105513,-0.055400208244214315 +203013,1015.0650000105514,-0.05540017169484321 +203014,1015.0700000105516,-0.0554001351440206 +203015,1015.0750000105517,-0.05540009859174623 +203016,1015.0800000105518,-0.055400062038019886 +203017,1015.0850000105519,-0.055400025482841314 +203018,1015.090000010552,-0.055399988926210286 +203019,1015.0950000105521,-0.055399952368126566 +203020,1015.1000000105522,-0.055399915808589925 +203021,1015.1050000105523,-0.05539987924760013 +203022,1015.1100000105524,-0.05539984268515693 +203023,1015.1150000105525,-0.0553998061212601 +203024,1015.1200000105526,-0.0553997695559094 +203025,1015.1250000105528,-0.05539973298910461 +203026,1015.1300000105529,-0.05539969642084549 +203027,1015.135000010553,-0.0553996598511318 +203028,1015.1400000105531,-0.05539962327996331 +203029,1015.1450000105532,-0.05539958670733979 +203030,1015.1500000105533,-0.055399550133261005 +203031,1015.1550000105534,-0.05539951355772671 +203032,1015.1600000105535,-0.05539947698073668 +203033,1015.1650000105536,-0.05539944040229068 +203034,1015.1700000105537,-0.05539940382238848 +203035,1015.1750000105538,-0.05539936724102984 +203036,1015.180000010554,-0.05539933065821453 +203037,1015.1850000105541,-0.05539929407394232 +203038,1015.1900000105542,-0.05539925748821297 +203039,1015.1950000105543,-0.05539922090102625 +203040,1015.2000000105544,-0.05539918431238194 +203041,1015.2050000105545,-0.05539914772227978 +203042,1015.2100000105546,-0.05539911113071955 +203043,1015.2150000105547,-0.055399074537701015 +203044,1015.2200000105548,-0.05539903794322395 +203045,1015.2250000105549,-0.055399001347288104 +203046,1015.230000010555,-0.05539896474989327 +203047,1015.2350000105552,-0.0553989281510392 +203048,1015.2400000105553,-0.055398891550725665 +203049,1015.2450000105554,-0.055398854948952435 +203050,1015.2500000105555,-0.05539881834571926 +203051,1015.2550000105556,-0.05539878174102594 +203052,1015.2600000105557,-0.05539874513487222 +203053,1015.2650000105558,-0.05539870852725787 +203054,1015.2700000105559,-0.05539867191818266 +203055,1015.275000010556,-0.05539863530764636 +203056,1015.2800000105561,-0.05539859869564873 +203057,1015.2850000105562,-0.05539856208218956 +203058,1015.2900000105564,-0.05539852546726858 +203059,1015.2950000105565,-0.0553984888508856 +203060,1015.3000000105566,-0.05539845223304036 +203061,1015.3050000105567,-0.05539841561373264 +203062,1015.3100000105568,-0.05539837899296221 +203063,1015.3150000105569,-0.05539834237072884 +203064,1015.320000010557,-0.0553983057470323 +203065,1015.3250000105571,-0.05539826912187233 +203066,1015.3300000105572,-0.055398232495248736 +203067,1015.3350000105573,-0.055398195867161264 +203068,1015.3400000105574,-0.055398159237609705 +203069,1015.3450000105576,-0.055398122606593804 +203070,1015.3500000105577,-0.055398085974113345 +203071,1015.3550000105578,-0.055398049340168086 +203072,1015.3600000105579,-0.055398012704757804 +203073,1015.365000010558,-0.05539797606788227 +203074,1015.3700000105581,-0.05539793942954126 +203075,1015.3750000105582,-0.055397902789734534 +203076,1015.3800000105583,-0.05539786614846186 +203077,1015.3850000105584,-0.05539782950572301 +203078,1015.3900000105585,-0.05539779286151776 +203079,1015.3950000105586,-0.05539775621584586 +203080,1015.4000000105588,-0.05539771956870711 +203081,1015.4050000105589,-0.05539768292010125 +203082,1015.410000010559,-0.055397646270028064 +203083,1015.4150000105591,-0.055397609618487324 +203084,1015.4200000105592,-0.0553975729654788 +203085,1015.4250000105593,-0.055397536311002256 +203086,1015.4300000105594,-0.055397499655057476 +203087,1015.4350000105595,-0.05539746299764421 +203088,1015.4400000105596,-0.05539742633876225 +203089,1015.4450000105597,-0.055397389678411346 +203090,1015.4500000105598,-0.05539735301659128 +203091,1015.45500001056,-0.055397316353301834 +203092,1015.4600000105601,-0.055397279688542765 +203093,1015.4650000105602,-0.055397243022313844 +203094,1015.4700000105603,-0.05539720635461484 +203095,1015.4750000105604,-0.05539716968544554 +203096,1015.4800000105605,-0.05539713301480569 +203097,1015.4850000105606,-0.05539709634269508 +203098,1015.4900000105607,-0.05539705966911348 +203099,1015.4950000105608,-0.05539702299406065 +203100,1015.5000000105609,-0.055396986317536374 +203101,1015.505000010561,-0.05539694963954041 +203102,1015.5100000105612,-0.05539691296007254 +203103,1015.5150000105613,-0.05539687627913254 +203104,1015.5200000105614,-0.05539683959672017 +203105,1015.5250000105615,-0.05539680291283521 +203106,1015.5300000105616,-0.05539676622747743 +203107,1015.5350000105617,-0.05539672954064659 +203108,1015.5400000105618,-0.055396692852342486 +203109,1015.5450000105619,-0.05539665616256487 +203110,1015.550000010562,-0.05539661947131352 +203111,1015.5550000105621,-0.055396582778588215 +203112,1015.5600000105622,-0.055396546084388716 +203113,1015.5650000105624,-0.05539650938871481 +203114,1015.5700000105625,-0.05539647269156626 +203115,1015.5750000105626,-0.05539643599294284 +203116,1015.5800000105627,-0.055396399292844324 +203117,1015.5850000105628,-0.055396362591270475 +203118,1015.5900000105629,-0.05539632588822108 +203119,1015.595000010563,-0.055396289183695914 +203120,1015.6000000105631,-0.05539625247769473 +203121,1015.6050000105632,-0.055396215770217326 +203122,1015.6100000105633,-0.055396179061263456 +203123,1015.6150000105634,-0.05539614235083289 +203124,1015.6200000105636,-0.05539610563892542 +203125,1015.6250000105637,-0.0553960689255408 +203126,1015.6300000105638,-0.055396032210678826 +203127,1015.6350000105639,-0.05539599549433926 +203128,1015.640000010564,-0.05539595877652187 +203129,1015.6450000105641,-0.05539592205722643 +203130,1015.6500000105642,-0.055395885336452726 +203131,1015.6550000105643,-0.05539584861420052 +203132,1015.6600000105644,-0.05539581189046959 +203133,1015.6650000105645,-0.05539577516525971 +203134,1015.6700000105646,-0.05539573843857066 +203135,1015.6750000105648,-0.05539570171040221 +203136,1015.6800000105649,-0.05539566498075412 +203137,1015.685000010565,-0.05539562824962618 +203138,1015.6900000105651,-0.05539559151701818 +203139,1015.6950000105652,-0.055395554782929866 +203140,1015.7000000105653,-0.05539551804736102 +203141,1015.7050000105654,-0.055395481310311426 +203142,1015.7100000105655,-0.05539544457178085 +203143,1015.7150000105656,-0.05539540783176905 +203144,1015.7200000105657,-0.055395371090275834 +203145,1015.7250000105659,-0.05539533434730096 +203146,1015.730000010566,-0.05539529760284421 +203147,1015.7350000105661,-0.055395260856905354 +203148,1015.7400000105662,-0.055395224109484165 +203149,1015.7450000105663,-0.05539518736058041 +203150,1015.7500000105664,-0.05539515061019388 +203151,1015.7550000105665,-0.05539511385832435 +203152,1015.7600000105666,-0.055395077104971595 +203153,1015.7650000105667,-0.05539504035013538 +203154,1015.7700000105668,-0.055395003593815474 +203155,1015.7750000105669,-0.05539496683601168 +203156,1015.780000010567,-0.055394930076723754 +203157,1015.7850000105672,-0.05539489331595148 +203158,1015.7900000105673,-0.055394856553694624 +203159,1015.7950000105674,-0.055394819789952976 +203160,1015.8000000105675,-0.05539478302472629 +203161,1015.8050000105676,-0.05539474625801437 +203162,1015.8100000105677,-0.05539470948981698 +203163,1015.8150000105678,-0.05539467272013388 +203164,1015.8200000105679,-0.055394635948964877 +203165,1015.825000010568,-0.055394599176309726 +203166,1015.8300000105681,-0.0553945624021682 +203167,1015.8350000105683,-0.055394525626540105 +203168,1015.8400000105684,-0.05539448884942519 +203169,1015.8450000105685,-0.05539445207082323 +203170,1015.8500000105686,-0.05539441529073403 +203171,1015.8550000105687,-0.055394378509157335 +203172,1015.8600000105688,-0.055394341726092935 +203173,1015.8650000105689,-0.055394304941540615 +203174,1015.870000010569,-0.05539426815550013 +203175,1015.8750000105691,-0.055394231367971274 +203176,1015.8800000105692,-0.05539419457895383 +203177,1015.8850000105693,-0.05539415778844756 +203178,1015.8900000105695,-0.05539412099645226 +203179,1015.8950000105696,-0.055394084202967694 +203180,1015.9000000105697,-0.05539404740799363 +203181,1015.9050000105698,-0.05539401061152987 +203182,1015.9100000105699,-0.05539397381357617 +203183,1015.91500001057,-0.05539393701413232 +203184,1015.9200000105701,-0.055393900213198094 +203185,1015.9250000105702,-0.055393863410773264 +203186,1015.9300000105703,-0.05539382660685762 +203187,1015.9350000105704,-0.055393789801450925 +203188,1015.9400000105705,-0.05539375299455297 +203189,1015.9450000105707,-0.05539371618616353 +203190,1015.9500000105708,-0.05539367937628238 +203191,1015.9550000105709,-0.0553936425649093 +203192,1015.960000010571,-0.055393605752044085 +203193,1015.9650000105711,-0.05539356893768648 +203194,1015.9700000105712,-0.055393532121836286 +203195,1015.9750000105713,-0.055393495304493286 +203196,1015.9800000105714,-0.05539345848565725 +203197,1015.9850000105715,-0.05539342166532795 +203198,1015.9900000105716,-0.05539338484350517 +203199,1015.9950000105717,-0.0553933480201887 +203200,1016.0000000105719,-0.055393311195378304 +203201,1016.005000010572,-0.055393274369073764 +203202,1016.0100000105721,-0.055393237541274856 +203203,1016.0150000105722,-0.05539320071198138 +203204,1016.0200000105723,-0.05539316388119309 +203205,1016.0250000105724,-0.05539312704890978 +203206,1016.0300000105725,-0.055393090215131224 +203207,1016.0350000105726,-0.055393053379857206 +203208,1016.0400000105727,-0.0553930165430875 +203209,1016.0450000105728,-0.05539297970482188 +203210,1016.050000010573,-0.05539294286506015 +203211,1016.055000010573,-0.05539290602380207 +203212,1016.0600000105732,-0.05539286918104742 +203213,1016.0650000105733,-0.055392832336795976 +203214,1016.0700000105734,-0.05539279549104754 +203215,1016.0750000105735,-0.05539275864380187 +203216,1016.0800000105736,-0.05539272179505875 +203217,1016.0850000105737,-0.05539268494481797 +203218,1016.0900000105738,-0.055392648093079304 +203219,1016.0950000105739,-0.055392611239842536 +203220,1016.100000010574,-0.05539257438510744 +203221,1016.1050000105741,-0.055392537528873804 +203222,1016.1100000105743,-0.055392500671141404 +203223,1016.1150000105744,-0.05539246381191002 +203224,1016.1200000105745,-0.05539242695117943 +203225,1016.1250000105746,-0.05539239008894943 +203226,1016.1300000105747,-0.05539235322521978 +203227,1016.1350000105748,-0.05539231635999028 +203228,1016.1400000105749,-0.055392279493260706 +203229,1016.145000010575,-0.055392242625030834 +203230,1016.1500000105751,-0.05539220575530044 +203231,1016.1550000105752,-0.05539216888406932 +203232,1016.1600000105753,-0.05539213201133724 +203233,1016.1650000105755,-0.055392095137104 +203234,1016.1700000105756,-0.05539205826136936 +203235,1016.1750000105757,-0.05539202138413312 +203236,1016.1800000105758,-0.055391984505395044 +203237,1016.1850000105759,-0.055391947625154925 +203238,1016.190000010576,-0.055391910743412556 +203239,1016.1950000105761,-0.05539187386016771 +203240,1016.2000000105762,-0.05539183697542015 +203241,1016.2050000105763,-0.05539180008916968 +203242,1016.2100000105764,-0.05539176320141608 +203243,1016.2150000105765,-0.055391726312159134 +203244,1016.2200000105767,-0.05539168942139861 +203245,1016.2250000105768,-0.055391652529134305 +203246,1016.2300000105769,-0.055391615635365994 +203247,1016.235000010577,-0.05539157874009345 +203248,1016.2400000105771,-0.055391541843316475 +203249,1016.2450000105772,-0.05539150494503484 +203250,1016.2500000105773,-0.05539146804524833 +203251,1016.2550000105774,-0.05539143114395674 +203252,1016.2600000105775,-0.05539139424115983 +203253,1016.2650000105776,-0.0553913573368574 +203254,1016.2700000105777,-0.055391320431049225 +203255,1016.2750000105779,-0.05539128352373508 +203256,1016.280000010578,-0.05539124661491478 +203257,1016.2850000105781,-0.05539120970458808 +203258,1016.2900000105782,-0.05539117279275476 +203259,1016.2950000105783,-0.05539113587941462 +203260,1016.3000000105784,-0.05539109896456743 +203261,1016.3050000105785,-0.05539106204821299 +203262,1016.3100000105786,-0.05539102513035107 +203263,1016.3150000105787,-0.055390988210981464 +203264,1016.3200000105788,-0.05539095129010394 +203265,1016.325000010579,-0.0553909143677183 +203266,1016.330000010579,-0.05539087744382431 +203267,1016.3350000105792,-0.05539084051842177 +203268,1016.3400000105793,-0.05539080359151046 +203269,1016.3450000105794,-0.05539076666309016 +203270,1016.3500000105795,-0.05539072973316066 +203271,1016.3550000105796,-0.05539069280172173 +203272,1016.3600000105797,-0.05539065586877317 +203273,1016.3650000105798,-0.05539061893431476 +203274,1016.3700000105799,-0.05539058199834628 +203275,1016.37500001058,-0.055390545060867526 +203276,1016.3800000105801,-0.05539050812187827 +203277,1016.3850000105803,-0.055390471181378305 +203278,1016.3900000105804,-0.05539043423936741 +203279,1016.3950000105805,-0.05539039729584536 +203280,1016.4000000105806,-0.05539036035081196 +203281,1016.4050000105807,-0.05539032340426699 +203282,1016.4100000105808,-0.05539028645621023 +203283,1016.4150000105809,-0.05539024950664147 +203284,1016.420000010581,-0.05539021255556048 +203285,1016.4250000105811,-0.055390175602967065 +203286,1016.4300000105812,-0.055390138648861 +203287,1016.4350000105813,-0.05539010169324207 +203288,1016.4400000105815,-0.05539006473611008 +203289,1016.4450000105816,-0.055390027777464795 +203290,1016.4500000105817,-0.055389990817306 +203291,1016.4550000105818,-0.05538995385563349 +203292,1016.4600000105819,-0.05538991689244705 +203293,1016.465000010582,-0.05538987992774645 +203294,1016.4700000105821,-0.0553898429615315 +203295,1016.4750000105822,-0.05538980599380197 +203296,1016.4800000105823,-0.05538976902455765 +203297,1016.4850000105824,-0.055389732053798324 +203298,1016.4900000105825,-0.05538969508152378 +203299,1016.4950000105827,-0.05538965810773381 +203300,1016.5000000105828,-0.05538962113242819 +203301,1016.5050000105829,-0.055389584155606714 +203302,1016.510000010583,-0.05538954717726917 +203303,1016.5150000105831,-0.05538951019741534 +203304,1016.5200000105832,-0.055389473216045 +203305,1016.5250000105833,-0.055389436233157965 +203306,1016.5300000105834,-0.055389399248754 +203307,1016.5350000105835,-0.055389362262832906 +203308,1016.5400000105836,-0.05538932527539445 +203309,1016.5450000105837,-0.055389288286438444 +203310,1016.5500000105839,-0.055389251295964656 +203311,1016.555000010584,-0.05538921430397288 +203312,1016.5600000105841,-0.055389177310462896 +203313,1016.5650000105842,-0.0553891403154345 +203314,1016.5700000105843,-0.05538910331888748 +203315,1016.5750000105844,-0.05538906632082161 +203316,1016.5800000105845,-0.05538902932123669 +203317,1016.5850000105846,-0.0553889923201325 +203318,1016.5900000105847,-0.05538895531750885 +203319,1016.5950000105848,-0.055388918313365496 +203320,1016.600000010585,-0.055388881307702253 +203321,1016.6050000105851,-0.05538884430051889 +203322,1016.6100000105852,-0.0553888072918152 +203323,1016.6150000105853,-0.05538877028159096 +203324,1016.6200000105854,-0.05538873326984599 +203325,1016.6250000105855,-0.05538869625658005 +203326,1016.6300000105856,-0.05538865924179294 +203327,1016.6350000105857,-0.05538862222548444 +203328,1016.6400000105858,-0.05538858520765434 +203329,1016.6450000105859,-0.05538854818830244 +203330,1016.650000010586,-0.05538851116742852 +203331,1016.6550000105861,-0.05538847414503236 +203332,1016.6600000105863,-0.05538843712111377 +203333,1016.6650000105864,-0.05538840009567252 +203334,1016.6700000105865,-0.05538836306870842 +203335,1016.6750000105866,-0.05538832604022123 +203336,1016.6800000105867,-0.055388289010210756 +203337,1016.6850000105868,-0.05538825197867678 +203338,1016.6900000105869,-0.055388214945619095 +203339,1016.695000010587,-0.055388177911037506 +203340,1016.7000000105871,-0.05538814087493178 +203341,1016.7050000105872,-0.055388103837301715 +203342,1016.7100000105874,-0.0553880667981471 +203343,1016.7150000105875,-0.055388029757467705 +203344,1016.7200000105876,-0.05538799271526335 +203345,1016.7250000105877,-0.05538795567153382 +203346,1016.7300000105878,-0.05538791862627889 +203347,1016.7350000105879,-0.05538788157949836 +203348,1016.740000010588,-0.055387844531192006 +203349,1016.7450000105881,-0.05538780748135963 +203350,1016.7500000105882,-0.05538777043000103 +203351,1016.7550000105883,-0.05538773337711598 +203352,1016.7600000105884,-0.05538769632270427 +203353,1016.7650000105886,-0.05538765926676571 +203354,1016.7700000105887,-0.055387622209300075 +203355,1016.7750000105888,-0.05538758515030716 +203356,1016.7800000105889,-0.05538754808978675 +203357,1016.785000010589,-0.055387511027738624 +203358,1016.7900000105891,-0.0553874739641626 +203359,1016.7950000105892,-0.055387436899058444 +203360,1016.8000000105893,-0.05538739983242597 +203361,1016.8050000105894,-0.05538736276426495 +203362,1016.8100000105895,-0.05538732569457518 +203363,1016.8150000105896,-0.05538728862335647 +203364,1016.8200000105898,-0.055387251550608585 +203365,1016.8250000105899,-0.055387214476331326 +203366,1016.83000001059,-0.05538717740052448 +203367,1016.8350000105901,-0.05538714032318784 +203368,1016.8400000105902,-0.055387103244321195 +203369,1016.8450000105903,-0.055387066163924345 +203370,1016.8500000105904,-0.05538702908199707 +203371,1016.8550000105905,-0.05538699199853917 +203372,1016.8600000105906,-0.05538695491355044 +203373,1016.8650000105907,-0.05538691782703066 +203374,1016.8700000105908,-0.05538688073897963 +203375,1016.875000010591,-0.05538684364939714 +203376,1016.8800000105911,-0.05538680655828297 +203377,1016.8850000105912,-0.055386769465636934 +203378,1016.8900000105913,-0.05538673237145881 +203379,1016.8950000105914,-0.055386695275748396 +203380,1016.9000000105915,-0.05538665817850547 +203381,1016.9050000105916,-0.05538662107972985 +203382,1016.9100000105917,-0.055386583979421304 +203383,1016.9150000105918,-0.055386546877579636 +203384,1016.9200000105919,-0.055386509774204624 +203385,1016.925000010592,-0.05538647266929608 +203386,1016.9300000105922,-0.05538643556285379 +203387,1016.9350000105923,-0.05538639845487755 +203388,1016.9400000105924,-0.055386361345367154 +203389,1016.9450000105925,-0.055386324234322375 +203390,1016.9500000105926,-0.055386287121743025 +203391,1016.9550000105927,-0.05538625000762889 +203392,1016.9600000105928,-0.055386212891979765 +203393,1016.9650000105929,-0.055386175774795446 +203394,1016.970000010593,-0.055386138656075716 +203395,1016.9750000105931,-0.055386101535820374 +203396,1016.9800000105932,-0.05538606441402922 +203397,1016.9850000105934,-0.05538602729070205 +203398,1016.9900000105935,-0.05538599016583864 +203399,1016.9950000105936,-0.05538595303943879 +203400,1017.0000000105937,-0.0553859159115023 +203401,1017.0050000105938,-0.055385878782028955 +203402,1017.0100000105939,-0.05538584165101856 +203403,1017.015000010594,-0.055385804518470895 +203404,1017.0200000105941,-0.05538576738438576 +203405,1017.0250000105942,-0.055385730248762956 +203406,1017.0300000105943,-0.05538569311160227 +203407,1017.0350000105944,-0.05538565597290349 +203408,1017.0400000105946,-0.055385618832666426 +203409,1017.0450000105947,-0.05538558169089086 +203410,1017.0500000105948,-0.05538554454757659 +203411,1017.0550000105949,-0.05538550740272339 +203412,1017.060000010595,-0.05538547025633109 +203413,1017.0650000105951,-0.05538543310839947 +203414,1017.0700000105952,-0.055385395958928316 +203415,1017.0750000105953,-0.05538535880791743 +203416,1017.0800000105954,-0.055385321655366596 +203417,1017.0850000105955,-0.05538528450127564 +203418,1017.0900000105956,-0.05538524734564432 +203419,1017.0950000105958,-0.05538521018847244 +203420,1017.1000000105959,-0.055385173029759815 +203421,1017.105000010596,-0.05538513586950622 +203422,1017.1100000105961,-0.05538509870771145 +203423,1017.1150000105962,-0.05538506154437532 +203424,1017.1200000105963,-0.0553850243794976 +203425,1017.1250000105964,-0.055384987213078093 +203426,1017.1300000105965,-0.0553849500451166 +203427,1017.1350000105966,-0.05538491287561291 +203428,1017.1400000105967,-0.05538487570456684 +203429,1017.1450000105968,-0.05538483853197816 +203430,1017.150000010597,-0.05538480135784667 +203431,1017.1550000105971,-0.055384764182172176 +203432,1017.1600000105972,-0.05538472700495447 +203433,1017.1650000105973,-0.05538468982619334 +203434,1017.1700000105974,-0.05538465264588858 +203435,1017.1750000105975,-0.05538461546404 +203436,1017.1800000105976,-0.05538457828064739 +203437,1017.1850000105977,-0.055384541095710546 +203438,1017.1900000105978,-0.05538450390922927 +203439,1017.1950000105979,-0.05538446672120334 +203440,1017.200000010598,-0.05538442953163256 +203441,1017.2050000105982,-0.055384392340516744 +203442,1017.2100000105983,-0.05538435514785566 +203443,1017.2150000105984,-0.055384317953649134 +203444,1017.2200000105985,-0.055384280757896934 +203445,1017.2250000105986,-0.05538424356059888 +203446,1017.2300000105987,-0.05538420636175475 +203447,1017.2350000105988,-0.055384169161364356 +203448,1017.2400000105989,-0.05538413195942749 +203449,1017.245000010599,-0.05538409475594395 +203450,1017.2500000105991,-0.055384057550913524 +203451,1017.2550000105992,-0.055384020344336024 +203452,1017.2600000105994,-0.05538398313621124 +203453,1017.2650000105995,-0.055383945926538974 +203454,1017.2700000105996,-0.05538390871531901 +203455,1017.2750000105997,-0.05538387150255115 +203456,1017.2800000105998,-0.05538383428823519 +203457,1017.2850000105999,-0.05538379707237094 +203458,1017.2900000106,-0.055383759854958185 +203459,1017.2950000106001,-0.05538372263599674 +203460,1017.3000000106002,-0.05538368541548637 +203461,1017.3050000106003,-0.05538364819342689 +203462,1017.3100000106004,-0.05538361096981811 +203463,1017.3150000106006,-0.05538357374465981 +203464,1017.3200000106007,-0.05538353651795181 +203465,1017.3250000106008,-0.05538349928969389 +203466,1017.3300000106009,-0.05538346205988585 +203467,1017.335000010601,-0.05538342482852748 +203468,1017.3400000106011,-0.0553833875956186 +203469,1017.3450000106012,-0.055383350361159 +203470,1017.3500000106013,-0.05538331312514848 +203471,1017.3550000106014,-0.05538327588758682 +203472,1017.3600000106015,-0.05538323864847385 +203473,1017.3650000106016,-0.05538320140780934 +203474,1017.3700000106018,-0.0553831641655931 +203475,1017.3750000106019,-0.05538312692182494 +203476,1017.380000010602,-0.05538308967650464 +203477,1017.3850000106021,-0.055383052429632006 +203478,1017.3900000106022,-0.05538301518120683 +203479,1017.3950000106023,-0.05538297793122892 +203480,1017.4000000106024,-0.05538294067969808 +203481,1017.4050000106025,-0.05538290342661411 +203482,1017.4100000106026,-0.05538286617197679 +203483,1017.4150000106027,-0.05538282891578592 +203484,1017.4200000106028,-0.05538279165804133 +203485,1017.425000010603,-0.05538275439874279 +203486,1017.4300000106031,-0.055382717137890114 +203487,1017.4350000106032,-0.05538267987548309 +203488,1017.4400000106033,-0.05538264261152153 +203489,1017.4450000106034,-0.05538260534600523 +203490,1017.4500000106035,-0.055382568078933984 +203491,1017.4550000106036,-0.0553825308103076 +203492,1017.4600000106037,-0.055382493540125866 +203493,1017.4650000106038,-0.05538245626838859 +203494,1017.4700000106039,-0.05538241899509558 +203495,1017.475000010604,-0.05538238172024663 +203496,1017.4800000106042,-0.05538234444384153 +203497,1017.4850000106043,-0.05538230716588009 +203498,1017.4900000106044,-0.055382269886362114 +203499,1017.4950000106045,-0.055382232605287386 +203500,1017.5000000106046,-0.05538219532265572 +203501,1017.5050000106047,-0.05538215803846691 +203502,1017.5100000106048,-0.05538212075272077 +203503,1017.5150000106049,-0.055382083465417085 +203504,1017.520000010605,-0.05538204617655566 +203505,1017.5250000106051,-0.05538200888613631 +203506,1017.5300000106052,-0.055381971594158814 +203507,1017.5350000106054,-0.055381934300622986 +203508,1017.5400000106055,-0.05538189700552863 +203509,1017.5450000106056,-0.055381859708875526 +203510,1017.5500000106057,-0.05538182241066349 +203511,1017.5550000106058,-0.055381785110892326 +203512,1017.5600000106059,-0.05538174780956183 +203513,1017.565000010606,-0.05538171050667181 +203514,1017.5700000106061,-0.055381673202222065 +203515,1017.5750000106062,-0.05538163589621239 +203516,1017.5800000106063,-0.05538159858864259 +203517,1017.5850000106064,-0.05538156127951247 +203518,1017.5900000106066,-0.05538152396882182 +203519,1017.5950000106067,-0.05538148665657046 +203520,1017.6000000106068,-0.05538144934275819 +203521,1017.6050000106069,-0.0553814120273848 +203522,1017.610000010607,-0.05538137471045009 +203523,1017.6150000106071,-0.05538133739195388 +203524,1017.6200000106072,-0.05538130007189595 +203525,1017.6250000106073,-0.05538126275027612 +203526,1017.6300000106074,-0.05538122542709418 +203527,1017.6350000106075,-0.05538118810234994 +203528,1017.6400000106077,-0.0553811507760432 +203529,1017.6450000106078,-0.055381113448173765 +203530,1017.6500000106079,-0.055381076118741435 +203531,1017.655000010608,-0.05538103878774601 +203532,1017.6600000106081,-0.05538100145518729 +203533,1017.6650000106082,-0.05538096412106508 +203534,1017.6700000106083,-0.05538092678537919 +203535,1017.6750000106084,-0.05538088944812941 +203536,1017.6800000106085,-0.05538085210931556 +203537,1017.6850000106086,-0.05538081476893743 +203538,1017.6900000106087,-0.05538077742699483 +203539,1017.6950000106089,-0.055380740083487555 +203540,1017.700000010609,-0.05538070273841541 +203541,1017.7050000106091,-0.05538066539177821 +203542,1017.7100000106092,-0.05538062804357574 +203543,1017.7150000106093,-0.05538059069380782 +203544,1017.7200000106094,-0.05538055334247424 +203545,1017.7250000106095,-0.055380515989574816 +203546,1017.7300000106096,-0.05538047863510936 +203547,1017.7350000106097,-0.055380441279077645 +203548,1017.7400000106098,-0.0553804039214795 +203549,1017.7450000106099,-0.05538036656231472 +203550,1017.75000001061,-0.05538032920158311 +203551,1017.7550000106102,-0.055380291839284466 +203552,1017.7600000106103,-0.0553802544754186 +203553,1017.7650000106104,-0.05538021710998531 +203554,1017.7700000106105,-0.05538017974298441 +203555,1017.7750000106106,-0.0553801423744157 +203556,1017.7800000106107,-0.05538010500427897 +203557,1017.7850000106108,-0.055380067632574054 +203558,1017.7900000106109,-0.05538003025930074 +203559,1017.795000010611,-0.055379992884458815 +203560,1017.8000000106111,-0.05537995550804811 +203561,1017.8050000106113,-0.05537991813006842 +203562,1017.8100000106114,-0.05537988075051955 +203563,1017.8150000106115,-0.0553798433694013 +203564,1017.8200000106116,-0.05537980598671348 +203565,1017.8250000106117,-0.0553797686024559 +203566,1017.8300000106118,-0.055379731216628356 +203567,1017.8350000106119,-0.055379693829230664 +203568,1017.840000010612,-0.05537965644026261 +203569,1017.8450000106121,-0.055379619049724015 +203570,1017.8500000106122,-0.05537958165761468 +203571,1017.8550000106123,-0.055379544263934405 +203572,1017.8600000106125,-0.05537950686868301 +203573,1017.8650000106126,-0.05537946947186029 +203574,1017.8700000106127,-0.05537943207346605 +203575,1017.8750000106128,-0.05537939467350009 +203576,1017.8800000106129,-0.05537935727196222 +203577,1017.885000010613,-0.05537931986885225 +203578,1017.8900000106131,-0.05537928246416999 +203579,1017.8950000106132,-0.05537924505791524 +203580,1017.9000000106133,-0.05537920765008781 +203581,1017.9050000106134,-0.05537917024068749 +203582,1017.9100000106135,-0.055379132829714094 +203583,1017.9150000106137,-0.055379095417167436 +203584,1017.9200000106138,-0.05537905800304732 +203585,1017.9250000106139,-0.055379020587353556 +203586,1017.930000010614,-0.05537898317008593 +203587,1017.9350000106141,-0.055378945751244274 +203588,1017.9400000106142,-0.05537890833082838 +203589,1017.9450000106143,-0.05537887090883806 +203590,1017.9500000106144,-0.05537883348527311 +203591,1017.9550000106145,-0.055378796060133344 +203592,1017.9600000106146,-0.055378758633418575 +203593,1017.9650000106147,-0.05537872120512859 +203594,1017.9700000106149,-0.05537868377526321 +203595,1017.975000010615,-0.05537864634382225 +203596,1017.9800000106151,-0.05537860891080551 +203597,1017.9850000106152,-0.055378571476212786 +203598,1017.9900000106153,-0.055378534040043906 +203599,1017.9950000106154,-0.055378496602298655 +203600,1018.0000000106155,-0.05537845916297685 +203601,1018.0050000106156,-0.055378421722078304 +203602,1018.0100000106157,-0.055378384279602816 +203603,1018.0150000106158,-0.05537834683555019 +203604,1018.020000010616,-0.05537830938992025 +203605,1018.025000010616,-0.05537827194271279 +203606,1018.0300000106162,-0.05537823449392762 +203607,1018.0350000106163,-0.05537819704356456 +203608,1018.0400000106164,-0.055378159591623385 +203609,1018.0450000106165,-0.05537812213810393 +203610,1018.0500000106166,-0.05537808468300601 +203611,1018.0550000106167,-0.0553780472263294 +203612,1018.0600000106168,-0.05537800976807394 +203613,1018.0650000106169,-0.055377972308239425 +203614,1018.070000010617,-0.055377934846825655 +203615,1018.0750000106171,-0.05537789738383245 +203616,1018.0800000106173,-0.05537785991925962 +203617,1018.0850000106174,-0.055377822453106976 +203618,1018.0900000106175,-0.05537778498537431 +203619,1018.0950000106176,-0.055377747516061435 +203620,1018.1000000106177,-0.05537771004516817 +203621,1018.1050000106178,-0.055377672572694325 +203622,1018.1100000106179,-0.05537763509863969 +203623,1018.115000010618,-0.05537759762300408 +203624,1018.1200000106181,-0.05537756014578731 +203625,1018.1250000106182,-0.05537752266698919 +203626,1018.1300000106183,-0.05537748518660954 +203627,1018.1350000106185,-0.055377447704648135 +203628,1018.1400000106186,-0.05537741022110481 +203629,1018.1450000106187,-0.05537737273597938 +203630,1018.1500000106188,-0.05537733524927164 +203631,1018.1550000106189,-0.055377297760981395 +203632,1018.160000010619,-0.05537726027110845 +203633,1018.1650000106191,-0.055377222779652645 +203634,1018.1700000106192,-0.055377185286613756 +203635,1018.1750000106193,-0.055377147791991606 +203636,1018.1800000106194,-0.055377110295786014 +203637,1018.1850000106195,-0.05537707279799677 +203638,1018.1900000106197,-0.055377035298623714 +203639,1018.1950000106198,-0.05537699779766662 +203640,1018.2000000106199,-0.055376960295125316 +203641,1018.20500001062,-0.055376922790999615 +203642,1018.2100000106201,-0.05537688528528932 +203643,1018.2150000106202,-0.055376847777994245 +203644,1018.2200000106203,-0.05537681026911419 +203645,1018.2250000106204,-0.05537677275864898 +203646,1018.2300000106205,-0.05537673524659842 +203647,1018.2350000106206,-0.05537669773296231 +203648,1018.2400000106207,-0.05537666021774048 +203649,1018.2450000106209,-0.05537662270093273 +203650,1018.250000010621,-0.055376585182538865 +203651,1018.2550000106211,-0.055376547662558694 +203652,1018.2600000106212,-0.05537651014099204 +203653,1018.2650000106213,-0.0553764726178387 +203654,1018.2700000106214,-0.055376435093098496 +203655,1018.2750000106215,-0.055376397566771235 +203656,1018.2800000106216,-0.05537636003885673 +203657,1018.2850000106217,-0.05537632250935479 +203658,1018.2900000106218,-0.05537628497826523 +203659,1018.295000010622,-0.055376247445587855 +203660,1018.300000010622,-0.05537620991132248 +203661,1018.3050000106222,-0.055376172375468914 +203662,1018.3100000106223,-0.05537613483802696 +203663,1018.3150000106224,-0.055376097298996445 +203664,1018.3200000106225,-0.055376059758377165 +203665,1018.3250000106226,-0.05537602221616895 +203666,1018.3300000106227,-0.0553759846723716 +203667,1018.3350000106228,-0.055375947126984924 +203668,1018.3400000106229,-0.055375909580008736 +203669,1018.345000010623,-0.055375872031442855 +203670,1018.3500000106231,-0.055375834481287085 +203671,1018.3550000106233,-0.05537579692954124 +203672,1018.3600000106234,-0.055375759376205126 +203673,1018.3650000106235,-0.05537572182127856 +203674,1018.3700000106236,-0.05537568426476136 +203675,1018.3750000106237,-0.05537564670665334 +203676,1018.3800000106238,-0.0553756091469543 +203677,1018.3850000106239,-0.055375571585664064 +203678,1018.390000010624,-0.05537553402278243 +203679,1018.3950000106241,-0.05537549645830921 +203680,1018.4000000106242,-0.05537545889224424 +203681,1018.4050000106243,-0.05537542132458731 +203682,1018.4100000106245,-0.05537538375533824 +203683,1018.4150000106246,-0.05537534618449683 +203684,1018.4200000106247,-0.055375308612062926 +203685,1018.4250000106248,-0.05537527103803631 +203686,1018.4300000106249,-0.0553752334624168 +203687,1018.435000010625,-0.055375195885204224 +203688,1018.4400000106251,-0.05537515830639838 +203689,1018.4450000106252,-0.05537512072599908 +203690,1018.4500000106253,-0.05537508314400614 +203691,1018.4550000106254,-0.05537504556041938 +203692,1018.4600000106255,-0.0553750079752386 +203693,1018.4650000106257,-0.05537497038846364 +203694,1018.4700000106258,-0.055374932800094284 +203695,1018.4750000106259,-0.055374895210130365 +203696,1018.480000010626,-0.05537485761857168 +203697,1018.4850000106261,-0.05537482002541806 +203698,1018.4900000106262,-0.0553747824306693 +203699,1018.4950000106263,-0.05537474483432523 +203700,1018.5000000106264,-0.05537470723638565 +203701,1018.5050000106265,-0.05537466963685037 +203702,1018.5100000106266,-0.05537463203571923 +203703,1018.5150000106267,-0.05537459443299203 +203704,1018.5200000106269,-0.05537455682866858 +203705,1018.525000010627,-0.05537451922274869 +203706,1018.5300000106271,-0.05537448161523219 +203707,1018.5350000106272,-0.05537444400611888 +203708,1018.5400000106273,-0.055374406395408575 +203709,1018.5450000106274,-0.05537436878310109 +203710,1018.5500000106275,-0.05537433116919625 +203711,1018.5550000106276,-0.05537429355369386 +203712,1018.5600000106277,-0.055374255936593744 +203713,1018.5650000106278,-0.0553742183178957 +203714,1018.570000010628,-0.05537418069759954 +203715,1018.5750000106281,-0.05537414307570511 +203716,1018.5800000106282,-0.05537410545221219 +203717,1018.5850000106283,-0.055374067827120614 +203718,1018.5900000106284,-0.0553740302004302 +203719,1018.5950000106285,-0.05537399257214075 +203720,1018.6000000106286,-0.055373954942252085 +203721,1018.6050000106287,-0.05537391731076401 +203722,1018.6100000106288,-0.055373879677676374 +203723,1018.6150000106289,-0.05537384204298895 +203724,1018.620000010629,-0.05537380440670158 +203725,1018.6250000106292,-0.055373766768814066 +203726,1018.6300000106293,-0.055373729129326234 +203727,1018.6350000106294,-0.0553736914882379 +203728,1018.6400000106295,-0.05537365384554886 +203729,1018.6450000106296,-0.05537361620125894 +203730,1018.6500000106297,-0.055373578555367974 +203731,1018.6550000106298,-0.05537354090787575 +203732,1018.6600000106299,-0.0553735032587821 +203733,1018.66500001063,-0.055373465608086835 +203734,1018.6700000106301,-0.05537342795578977 +203735,1018.6750000106302,-0.05537339030189072 +203736,1018.6800000106304,-0.055373352646389505 +203737,1018.6850000106305,-0.055373314989285945 +203738,1018.6900000106306,-0.05537327733057984 +203739,1018.6950000106307,-0.05537323967027102 +203740,1018.7000000106308,-0.0553732020083593 +203741,1018.7050000106309,-0.055373164344844496 +203742,1018.710000010631,-0.05537312667972643 +203743,1018.7150000106311,-0.0553730890130049 +203744,1018.7200000106312,-0.055373051344679736 +203745,1018.7250000106313,-0.055373013674750754 +203746,1018.7300000106314,-0.05537297600321777 +203747,1018.7350000106316,-0.055372938330080605 +203748,1018.7400000106317,-0.05537290065533907 +203749,1018.7450000106318,-0.05537286297899297 +203750,1018.7500000106319,-0.05537282530104214 +203751,1018.755000010632,-0.0553727876214864 +203752,1018.7600000106321,-0.05537274994032555 +203753,1018.7650000106322,-0.055372712257559416 +203754,1018.7700000106323,-0.05537267457318782 +203755,1018.7750000106324,-0.05537263688721058 +203756,1018.7800000106325,-0.055372599199627504 +203757,1018.7850000106326,-0.0553725615104384 +203758,1018.7900000106328,-0.05537252381964311 +203759,1018.7950000106329,-0.05537248612724143 +203760,1018.800000010633,-0.055372448433233204 +203761,1018.8050000106331,-0.05537241073761823 +203762,1018.8100000106332,-0.055372373040396314 +203763,1018.8150000106333,-0.0553723353415673 +203764,1018.8200000106334,-0.05537229764113098 +203765,1018.8250000106335,-0.055372259939087204 +203766,1018.8300000106336,-0.055372222235435774 +203767,1018.8350000106337,-0.0553721845301765 +203768,1018.8400000106338,-0.05537214682330921 +203769,1018.845000010634,-0.05537210911483371 +203770,1018.8500000106341,-0.05537207140474983 +203771,1018.8550000106342,-0.05537203369305739 +203772,1018.8600000106343,-0.05537199597975619 +203773,1018.8650000106344,-0.055371958264846075 +203774,1018.8700000106345,-0.05537192054832684 +203775,1018.8750000106346,-0.05537188283019832 +203776,1018.8800000106347,-0.05537184511046032 +203777,1018.8850000106348,-0.05537180738911266 +203778,1018.8900000106349,-0.055371769666155174 +203779,1018.895000010635,-0.05537173194158767 +203780,1018.9000000106352,-0.055371694215409974 +203781,1018.9050000106353,-0.05537165648762189 +203782,1018.9100000106354,-0.05537161875822325 +203783,1018.9150000106355,-0.055371581027213866 +203784,1018.9200000106356,-0.05537154329459357 +203785,1018.9250000106357,-0.055371505560362154 +203786,1018.9300000106358,-0.05537146782451946 +203787,1018.9350000106359,-0.055371430087065306 +203788,1018.940000010636,-0.0553713923479995 +203789,1018.9450000106361,-0.05537135460732188 +203790,1018.9500000106362,-0.055371316865032244 +203791,1018.9550000106364,-0.055371279121130414 +203792,1018.9600000106365,-0.05537124137561622 +203793,1018.9650000106366,-0.05537120362848948 +203794,1018.9700000106367,-0.05537116587975002 +203795,1018.9750000106368,-0.05537112812939765 +203796,1018.9800000106369,-0.05537109037743218 +203797,1018.985000010637,-0.055371052623853445 +203798,1018.9900000106371,-0.055371014868661264 +203799,1018.9950000106372,-0.05537097711185546 +203800,1019.0000000106373,-0.05537093935343583 +203801,1019.0050000106374,-0.05537090159340222 +203802,1019.0100000106376,-0.05537086383175445 +203803,1019.0150000106377,-0.05537082606849232 +203804,1019.0200000106378,-0.05537078830361567 +203805,1019.0250000106379,-0.05537075053712431 +203806,1019.030000010638,-0.055370712769018074 +203807,1019.0350000106381,-0.05537067499929675 +203808,1019.0400000106382,-0.05537063722796021 +203809,1019.0450000106383,-0.05537059945500822 +203810,1019.0500000106384,-0.05537056168044063 +203811,1019.0550000106385,-0.05537052390425726 +203812,1019.0600000106386,-0.05537048612645792 +203813,1019.0650000106388,-0.05537044834704244 +203814,1019.0700000106389,-0.05537041056601065 +203815,1019.075000010639,-0.055370372783362355 +203816,1019.0800000106391,-0.05537033499909738 +203817,1019.0850000106392,-0.055370297213215555 +203818,1019.0900000106393,-0.05537025942571668 +203819,1019.0950000106394,-0.05537022163660059 +203820,1019.1000000106395,-0.055370183845867116 +203821,1019.1050000106396,-0.05537014605351607 +203822,1019.1100000106397,-0.05537010825954727 +203823,1019.1150000106398,-0.05537007046396053 +203824,1019.12000001064,-0.05537003266675569 +203825,1019.1250000106401,-0.055369994867932565 +203826,1019.1300000106402,-0.055369957067490976 +203827,1019.1350000106403,-0.055369919265430736 +203828,1019.1400000106404,-0.055369881461751674 +203829,1019.1450000106405,-0.05536984365645361 +203830,1019.1500000106406,-0.05536980584953638 +203831,1019.1550000106407,-0.05536976804099979 +203832,1019.1600000106408,-0.055369730230843656 +203833,1019.1650000106409,-0.05536969241906782 +203834,1019.170000010641,-0.0553696546056721 +203835,1019.1750000106412,-0.05536961679065631 +203836,1019.1800000106413,-0.05536957897402027 +203837,1019.1850000106414,-0.05536954115576381 +203838,1019.1900000106415,-0.05536950333588675 +203839,1019.1950000106416,-0.055369465514388906 +203840,1019.2000000106417,-0.055369427691270116 +203841,1019.2050000106418,-0.0553693898665302 +203842,1019.2100000106419,-0.05536935204016896 +203843,1019.215000010642,-0.055369314212186244 +203844,1019.2200000106421,-0.05536927638258186 +203845,1019.2250000106422,-0.055369238551355636 +203846,1019.2300000106424,-0.0553692007185074 +203847,1019.2350000106425,-0.05536916288403697 +203848,1019.2400000106426,-0.055369125047944154 +203849,1019.2450000106427,-0.0553690872102288 +203850,1019.2500000106428,-0.055369049370890724 +203851,1019.2550000106429,-0.055369011529929735 +203852,1019.260000010643,-0.055368973687345675 +203853,1019.2650000106431,-0.055368935843138345 +203854,1019.2700000106432,-0.0553688979973076 +203855,1019.2750000106433,-0.05536886014985323 +203856,1019.2800000106434,-0.055368822300775083 +203857,1019.2850000106436,-0.05536878445007297 +203858,1019.2900000106437,-0.055368746597746724 +203859,1019.2950000106438,-0.055368708743796166 +203860,1019.3000000106439,-0.0553686708882211 +203861,1019.305000010644,-0.05536863303102139 +203862,1019.3100000106441,-0.05536859517219683 +203863,1019.3150000106442,-0.05536855731174725 +203864,1019.3200000106443,-0.05536851944967248 +203865,1019.3250000106444,-0.05536848158597234 +203866,1019.3300000106445,-0.05536844372064664 +203867,1019.3350000106446,-0.05536840585369522 +203868,1019.3400000106448,-0.05536836798511791 +203869,1019.3450000106449,-0.05536833011491453 +203870,1019.350000010645,-0.0553682922430849 +203871,1019.3550000106451,-0.05536825436962883 +203872,1019.3600000106452,-0.05536821649454616 +203873,1019.3650000106453,-0.05536817861783672 +203874,1019.3700000106454,-0.05536814073950033 +203875,1019.3750000106455,-0.05536810285953682 +203876,1019.3800000106456,-0.055368064977946004 +203877,1019.3850000106457,-0.05536802709472771 +203878,1019.3900000106458,-0.05536798920988176 +203879,1019.395000010646,-0.05536795132340798 +203880,1019.4000000106461,-0.055367913435306206 +203881,1019.4050000106462,-0.055367875545576255 +203882,1019.4100000106463,-0.055367837654217954 +203883,1019.4150000106464,-0.05536779976123113 +203884,1019.4200000106465,-0.05536776186661559 +203885,1019.4250000106466,-0.05536772397037119 +203886,1019.4300000106467,-0.055367686072497736 +203887,1019.4350000106468,-0.05536764817299505 +203888,1019.4400000106469,-0.05536761027186296 +203889,1019.445000010647,-0.055367572369101295 +203890,1019.4500000106472,-0.05536753446470989 +203891,1019.4550000106473,-0.055367496558688556 +203892,1019.4600000106474,-0.05536745865103714 +203893,1019.4650000106475,-0.05536742074175544 +203894,1019.4700000106476,-0.0553673828308433 +203895,1019.4750000106477,-0.05536734491830053 +203896,1019.4800000106478,-0.055367307004126974 +203897,1019.4850000106479,-0.05536726908832244 +203898,1019.490000010648,-0.05536723117088679 +203899,1019.4950000106481,-0.0553671932518198 +203900,1019.5000000106483,-0.05536715533112134 +203901,1019.5050000106484,-0.05536711740879122 +203902,1019.5100000106485,-0.055367079484829246 +203903,1019.5150000106486,-0.055367041559235275 +203904,1019.5200000106487,-0.05536700363200912 +203905,1019.5250000106488,-0.0553669657031506 +203906,1019.5300000106489,-0.05536692777265955 +203907,1019.535000010649,-0.0553668898405358 +203908,1019.5400000106491,-0.055366851906779174 +203909,1019.5450000106492,-0.055366813971389504 +203910,1019.5500000106493,-0.05536677603436661 +203911,1019.5550000106495,-0.05536673809571032 +203912,1019.5600000106496,-0.055366700155420445 +203913,1019.5650000106497,-0.05536666221349684 +203914,1019.5700000106498,-0.05536662426993931 +203915,1019.5750000106499,-0.0553665863247477 +203916,1019.58000001065,-0.055366548377921834 +203917,1019.5850000106501,-0.05536651042946153 +203918,1019.5900000106502,-0.05536647247936662 +203919,1019.5950000106503,-0.055366434527636926 +203920,1019.6000000106504,-0.05536639657427229 +203921,1019.6050000106505,-0.05536635861927252 +203922,1019.6100000106507,-0.05536632066263745 +203923,1019.6150000106508,-0.05536628270436691 +203924,1019.6200000106509,-0.05536624474446073 +203925,1019.625000010651,-0.05536620678291874 +203926,1019.6300000106511,-0.05536616881974077 +203927,1019.6350000106512,-0.055366130854926636 +203928,1019.6400000106513,-0.05536609288847617 +203929,1019.6450000106514,-0.05536605492038922 +203930,1019.6500000106515,-0.055366016950665585 +203931,1019.6550000106516,-0.0553659789793051 +203932,1019.6600000106517,-0.055365941006307595 +203933,1019.6650000106519,-0.0553659030316729 +203934,1019.670000010652,-0.055365865055400844 +203935,1019.6750000106521,-0.05536582707749126 +203936,1019.6800000106522,-0.05536578909794398 +203937,1019.6850000106523,-0.055365751116758816 +203938,1019.6900000106524,-0.0553657131339356 +203939,1019.6950000106525,-0.05536567514947417 +203940,1019.7000000106526,-0.05536563716337436 +203941,1019.7050000106527,-0.05536559917563598 +203942,1019.7100000106528,-0.05536556118625888 +203943,1019.715000010653,-0.055365523195242856 +203944,1019.720000010653,-0.055365485202587765 +203945,1019.7250000106532,-0.055365447208293436 +203946,1019.7300000106533,-0.05536540921235968 +203947,1019.7350000106534,-0.05536537121478634 +203948,1019.7400000106535,-0.05536533321557323 +203949,1019.7450000106536,-0.05536529521472021 +203950,1019.7500000106537,-0.05536525721222708 +203951,1019.7550000106538,-0.05536521920809368 +203952,1019.7600000106539,-0.055365181202319834 +203953,1019.765000010654,-0.055365143194905375 +203954,1019.7700000106541,-0.055365105185850125 +203955,1019.7750000106543,-0.05536506717515394 +203956,1019.7800000106544,-0.055365029162816624 +203957,1019.7850000106545,-0.055364991148838014 +203958,1019.7900000106546,-0.05536495313321794 +203959,1019.7950000106547,-0.055364915115956224 +203960,1019.8000000106548,-0.05536487709705271 +203961,1019.8050000106549,-0.05536483907650722 +203962,1019.810000010655,-0.05536480105431959 +203963,1019.8150000106551,-0.05536476303048964 +203964,1019.8200000106552,-0.055364725005017205 +203965,1019.8250000106553,-0.055364686977902124 +203966,1019.8300000106555,-0.05536464894914421 +203967,1019.8350000106556,-0.05536461091874331 +203968,1019.8400000106557,-0.055364572886699236 +203969,1019.8450000106558,-0.055364534853011835 +203970,1019.8500000106559,-0.05536449681768093 +203971,1019.855000010656,-0.055364458780706345 +203972,1019.8600000106561,-0.055364420742087916 +203973,1019.8650000106562,-0.055364382701825476 +203974,1019.8700000106563,-0.05536434465991887 +203975,1019.8750000106564,-0.05536430661636791 +203976,1019.8800000106565,-0.05536426857117243 +203977,1019.8850000106567,-0.05536423052433226 +203978,1019.8900000106568,-0.055364192475847236 +203979,1019.8950000106569,-0.055364154425717176 +203980,1019.900000010657,-0.055364116373941924 +203981,1019.9050000106571,-0.055364078320521315 +203982,1019.9100000106572,-0.05536404026545516 +203983,1019.9150000106573,-0.05536400220874332 +203984,1019.9200000106574,-0.0553639641503856 +203985,1019.9250000106575,-0.05536392609038184 +203986,1019.9300000106576,-0.055363888028731864 +203987,1019.9350000106577,-0.05536384996543552 +203988,1019.9400000106579,-0.05536381190049264 +203989,1019.945000010658,-0.05536377383390303 +203990,1019.9500000106581,-0.055363735765666534 +203991,1019.9550000106582,-0.055363697695783004 +203992,1019.9600000106583,-0.05536365962425225 +203993,1019.9650000106584,-0.055363621551074105 +203994,1019.9700000106585,-0.05536358347624841 +203995,1019.9750000106586,-0.05536354539977499 +203996,1019.9800000106587,-0.05536350732165369 +203997,1019.9850000106588,-0.05536346924188432 +203998,1019.990000010659,-0.05536343116046672 +203999,1019.995000010659,-0.05536339307740073 +204000,1020.0000000106592,-0.05536335499268617 +204001,1020.0050000106593,-0.05536331690632288 +204002,1020.0100000106594,-0.055363278818310706 +204003,1020.0150000106595,-0.05536324072864946 +204004,1020.0200000106596,-0.055363202637338974 +204005,1020.0250000106597,-0.05536316454437909 +204006,1020.0300000106598,-0.05536312644976964 +204007,1020.0350000106599,-0.05536308835351045 +204008,1020.04000001066,-0.05536305025560136 +204009,1020.0450000106601,-0.0553630121560422 +204010,1020.0500000106603,-0.05536297405483281 +204011,1020.0550000106604,-0.055362935951973 +204012,1020.0600000106605,-0.055362897847462636 +204013,1020.0650000106606,-0.05536285974130152 +204014,1020.0700000106607,-0.055362821633489503 +204015,1020.0750000106608,-0.05536278352402641 +204016,1020.0800000106609,-0.05536274541291209 +204017,1020.085000010661,-0.055362707300146356 +204018,1020.0900000106611,-0.055362669185729046 +204019,1020.0950000106612,-0.055362631069659995 +204020,1020.1000000106613,-0.05536259295193905 +204021,1020.1050000106615,-0.05536255483256603 +204022,1020.1100000106616,-0.055362516711540764 +204023,1020.1150000106617,-0.0553624785888631 +204024,1020.1200000106618,-0.055362440464532855 +204025,1020.1250000106619,-0.055362402338549874 +204026,1020.130000010662,-0.055362364210913985 +204027,1020.1350000106621,-0.05536232608162503 +204028,1020.1400000106622,-0.05536228795068284 +204029,1020.1450000106623,-0.05536224981808725 +204030,1020.1500000106624,-0.055362211683838085 +204031,1020.1550000106625,-0.055362173547935184 +204032,1020.1600000106627,-0.055362135410378384 +204033,1020.1650000106628,-0.05536209727116752 +204034,1020.1700000106629,-0.05536205913030241 +204035,1020.175000010663,-0.055362020987782916 +204036,1020.1800000106631,-0.05536198284360886 +204037,1020.1850000106632,-0.05536194469778006 +204038,1020.1900000106633,-0.055361906550296366 +204039,1020.1950000106634,-0.05536186840115762 +204040,1020.2000000106635,-0.055361830250363654 +204041,1020.2050000106636,-0.05536179209791429 +204042,1020.2100000106637,-0.055361753943809364 +204043,1020.2150000106639,-0.055361715788048715 +204044,1020.220000010664,-0.05536167763063219 +204045,1020.2250000106641,-0.0553616394715596 +204046,1020.2300000106642,-0.055361601310830795 +204047,1020.2350000106643,-0.05536156314844561 +204048,1020.2400000106644,-0.05536152498440389 +204049,1020.2450000106645,-0.055361486818705445 +204050,1020.2500000106646,-0.05536144865135012 +204051,1020.2550000106647,-0.055361410482337746 +204052,1020.2600000106648,-0.055361372311668176 +204053,1020.265000010665,-0.05536133413934124 +204054,1020.2700000106651,-0.055361295965356765 +204055,1020.2750000106652,-0.055361257789714576 +204056,1020.2800000106653,-0.05536121961241452 +204057,1020.2850000106654,-0.05536118143345644 +204058,1020.2900000106655,-0.05536114325284017 +204059,1020.2950000106656,-0.05536110507056553 +204060,1020.3000000106657,-0.05536106688663237 +204061,1020.3050000106658,-0.055361028701040524 +204062,1020.3100000106659,-0.05536099051378983 +204063,1020.315000010666,-0.05536095232488012 +204064,1020.3200000106661,-0.05536091413431123 +204065,1020.3250000106663,-0.055360875942083 +204066,1020.3300000106664,-0.05536083774819525 +204067,1020.3350000106665,-0.05536079955264783 +204068,1020.3400000106666,-0.05536076135544059 +204069,1020.3450000106667,-0.055360723156573345 +204070,1020.3500000106668,-0.05536068495604593 +204071,1020.3550000106669,-0.05536064675385819 +204072,1020.360000010667,-0.05536060855000996 +204073,1020.3650000106671,-0.05536057034450107 +204074,1020.3700000106672,-0.05536053213733138 +204075,1020.3750000106673,-0.055360493928500704 +204076,1020.3800000106675,-0.05536045571800888 +204077,1020.3850000106676,-0.05536041750585575 +204078,1020.3900000106677,-0.05536037929204115 +204079,1020.3950000106678,-0.05536034107656491 +204080,1020.4000000106679,-0.055360302859426884 +204081,1020.405000010668,-0.055360264640626884 +204082,1020.4100000106681,-0.05536022642016476 +204083,1020.4150000106682,-0.05536018819804036 +204084,1020.4200000106683,-0.055360149974253516 +204085,1020.4250000106684,-0.05536011174880406 +204086,1020.4300000106686,-0.05536007352169182 +204087,1020.4350000106687,-0.05536003529291664 +204088,1020.4400000106688,-0.05535999706247836 +204089,1020.4450000106689,-0.055359958830376824 +204090,1020.450000010669,-0.05535992059661186 +204091,1020.4550000106691,-0.05535988236118331 +204092,1020.4600000106692,-0.055359844124091014 +204093,1020.4650000106693,-0.0553598058853348 +204094,1020.4700000106694,-0.0553597676449145 +204095,1020.4750000106695,-0.055359729402829974 +204096,1020.4800000106696,-0.055359691159081036 +204097,1020.4850000106698,-0.05535965291366755 +204098,1020.4900000106699,-0.05535961466658934 +204099,1020.49500001067,-0.055359576417846244 +204100,1020.5000000106701,-0.055359538167438105 +204101,1020.5050000106702,-0.05535949991536475 +204102,1020.5100000106703,-0.05535946166162603 +204103,1020.5150000106704,-0.05535942340622177 +204104,1020.5200000106705,-0.055359385149151806 +204105,1020.5250000106706,-0.055359346890415995 +204106,1020.5300000106707,-0.055359308630014155 +204107,1020.5350000106708,-0.05535927036794614 +204108,1020.540000010671,-0.055359232104211786 +204109,1020.5450000106711,-0.055359193838810924 +204110,1020.5500000106712,-0.0553591555717434 +204111,1020.5550000106713,-0.05535911730300906 +204112,1020.5600000106714,-0.05535907903260773 +204113,1020.5650000106715,-0.05535904076053925 +204114,1020.5700000106716,-0.05535900248680345 +204115,1020.5750000106717,-0.05535896421140018 +204116,1020.5800000106718,-0.05535892593432928 +204117,1020.5850000106719,-0.05535888765559059 +204118,1020.590000010672,-0.055358849375183955 +204119,1020.5950000106722,-0.055358811093109195 +204120,1020.6000000106723,-0.05535877280936616 +204121,1020.6050000106724,-0.055358734523954685 +204122,1020.6100000106725,-0.05535869623687461 +204123,1020.6150000106726,-0.055358657948125785 +204124,1020.6200000106727,-0.05535861965770803 +204125,1020.6250000106728,-0.055358581365621204 +204126,1020.6300000106729,-0.05535854307186514 +204127,1020.635000010673,-0.05535850477643967 +204128,1020.6400000106731,-0.05535846647934464 +204129,1020.6450000106732,-0.05535842818057989 +204130,1020.6500000106734,-0.05535838988014527 +204131,1020.6550000106735,-0.0553583515780406 +204132,1020.6600000106736,-0.05535831327426573 +204133,1020.6650000106737,-0.05535827496882048 +204134,1020.6700000106738,-0.055358236661704724 +204135,1020.6750000106739,-0.05535819835291828 +204136,1020.680000010674,-0.055358160042460997 +204137,1020.6850000106741,-0.055358121730332714 +204138,1020.6900000106742,-0.05535808341653326 +204139,1020.6950000106743,-0.055358045101062486 +204140,1020.7000000106744,-0.055358006783920236 +204141,1020.7050000106746,-0.05535796846510634 +204142,1020.7100000106747,-0.055357930144620655 +204143,1020.7150000106748,-0.05535789182246301 +204144,1020.7200000106749,-0.05535785349863324 +204145,1020.725000010675,-0.05535781517313119 +204146,1020.7300000106751,-0.05535777684595669 +204147,1020.7350000106752,-0.05535773851710961 +204148,1020.7400000106753,-0.05535770018658977 +204149,1020.7450000106754,-0.05535766185439701 +204150,1020.7500000106755,-0.055357623520531175 +204151,1020.7550000106756,-0.055357585184992106 +204152,1020.7600000106758,-0.055357546847779646 +204153,1020.7650000106759,-0.05535750850889363 +204154,1020.770000010676,-0.05535747016833391 +204155,1020.7750000106761,-0.05535743182610031 +204156,1020.7800000106762,-0.05535739348219268 +204157,1020.7850000106763,-0.055357355136610865 +204158,1020.7900000106764,-0.055357316789354696 +204159,1020.7950000106765,-0.055357278440424026 +204160,1020.8000000106766,-0.05535724008981869 +204161,1020.8050000106767,-0.05535720173753853 +204162,1020.8100000106768,-0.0553571633835834 +204163,1020.815000010677,-0.05535712502795312 +204164,1020.8200000106771,-0.05535708667064755 +204165,1020.8250000106772,-0.05535704831166652 +204166,1020.8300000106773,-0.055357009951009874 +204167,1020.8350000106774,-0.05535697158867745 +204168,1020.8400000106775,-0.05535693322466911 +204169,1020.8450000106776,-0.05535689485898466 +204170,1020.8500000106777,-0.055356856491623974 +204171,1020.8550000106778,-0.05535681812258687 +204172,1020.8600000106779,-0.05535677975187322 +204173,1020.865000010678,-0.05535674137948284 +204174,1020.8700000106782,-0.055356703005415585 +204175,1020.8750000106783,-0.05535666462967129 +204176,1020.8800000106784,-0.055356626252249796 +204177,1020.8850000106785,-0.05535658787315096 +204178,1020.8900000106786,-0.05535654949237461 +204179,1020.8950000106787,-0.055356511109920604 +204180,1020.9000000106788,-0.055356472725788766 +204181,1020.9050000106789,-0.05535643433997895 +204182,1020.910000010679,-0.055356395952490985 +204183,1020.9150000106791,-0.05535635756332472 +204184,1020.9200000106792,-0.05535631917248002 +204185,1020.9250000106794,-0.05535628077995669 +204186,1020.9300000106795,-0.0553562423857546 +204187,1020.9350000106796,-0.05535620398987358 +204188,1020.9400000106797,-0.055356165592313475 +204189,1020.9450000106798,-0.05535612719307413 +204190,1020.9500000106799,-0.05535608879215539 +204191,1020.95500001068,-0.0553560503895571 +204192,1020.9600000106801,-0.0553560119852791 +204193,1020.9650000106802,-0.05535597357932123 +204194,1020.9700000106803,-0.05535593517168334 +204195,1020.9750000106804,-0.05535589676236528 +204196,1020.9800000106806,-0.05535585835136688 +204197,1020.9850000106807,-0.055355819938687975 +204198,1020.9900000106808,-0.05535578152432842 +204199,1020.9950000106809,-0.055355743108288065 +204200,1021.000000010681,-0.055355704690566755 +204201,1021.0050000106811,-0.05535566627116431 +204202,1021.0100000106812,-0.055355627850080594 +204203,1021.0150000106813,-0.05535558942731545 +204204,1021.0200000106814,-0.05535555100286872 +204205,1021.0250000106815,-0.05535551257674024 +204206,1021.0300000106816,-0.055355474148929856 +204207,1021.0350000106818,-0.05535543571943743 +204208,1021.0400000106819,-0.05535539728826278 +204209,1021.045000010682,-0.05535535885540577 +204210,1021.0500000106821,-0.05535532042086624 +204211,1021.0550000106822,-0.055355281984644025 +204212,1021.0600000106823,-0.05535524354673898 +204213,1021.0650000106824,-0.05535520510715094 +204214,1021.0700000106825,-0.05535516666587975 +204215,1021.0750000106826,-0.05535512822292526 +204216,1021.0800000106827,-0.055355089778287306 +204217,1021.0850000106828,-0.05535505133196574 +204218,1021.090000010683,-0.055355012883960414 +204219,1021.0950000106831,-0.055354974434271155 +204220,1021.1000000106832,-0.05535493598289783 +204221,1021.1050000106833,-0.05535489752984026 +204222,1021.1100000106834,-0.0553548590750983 +204223,1021.1150000106835,-0.05535482061867181 +204224,1021.1200000106836,-0.055354782160560605 +204225,1021.1250000106837,-0.05535474370076455 +204226,1021.1300000106838,-0.05535470523928348 +204227,1021.1350000106839,-0.05535466677611726 +204228,1021.140000010684,-0.05535462831126572 +204229,1021.1450000106842,-0.05535458984472869 +204230,1021.1500000106843,-0.055354551376506037 +204231,1021.1550000106844,-0.055354512906597604 +204232,1021.1600000106845,-0.05535447443500324 +204233,1021.1650000106846,-0.05535443596172277 +204234,1021.1700000106847,-0.05535439748675606 +204235,1021.1750000106848,-0.05535435901010294 +204236,1021.1800000106849,-0.05535432053176328 +204237,1021.185000010685,-0.055354282051736904 +204238,1021.1900000106851,-0.05535424357002366 +204239,1021.1950000106852,-0.0553542050866234 +204240,1021.2000000106854,-0.05535416660153596 +204241,1021.2050000106855,-0.05535412811476121 +204242,1021.2100000106856,-0.05535408962629897 +204243,1021.2150000106857,-0.0553540511361491 +204244,1021.2200000106858,-0.055354012644311425 +204245,1021.2250000106859,-0.055353974150785815 +204246,1021.230000010686,-0.055353935655572103 +204247,1021.2350000106861,-0.05535389715867014 +204248,1021.2400000106862,-0.05535385866007978 +204249,1021.2450000106863,-0.055353820159800865 +204250,1021.2500000106864,-0.05535378165783322 +204251,1021.2550000106866,-0.05535374315417673 +204252,1021.2600000106867,-0.055353704648831215 +204253,1021.2650000106868,-0.05535366614179652 +204254,1021.2700000106869,-0.05535362763307251 +204255,1021.275000010687,-0.05535358912265902 +204256,1021.2800000106871,-0.055353550610555885 +204257,1021.2850000106872,-0.05535351209676297 +204258,1021.2900000106873,-0.055353473581280115 +204259,1021.2950000106874,-0.05535343506410718 +204260,1021.3000000106875,-0.05535339654524398 +204261,1021.3050000106876,-0.055353358024690394 +204262,1021.3100000106878,-0.055353319502446256 +204263,1021.3150000106879,-0.05535328097851141 +204264,1021.320000010688,-0.05535324245288571 +204265,1021.3250000106881,-0.05535320392556899 +204266,1021.3300000106882,-0.05535316539656113 +204267,1021.3350000106883,-0.05535312686586194 +204268,1021.3400000106884,-0.05535308833347128 +204269,1021.3450000106885,-0.055353049799389 +204270,1021.3500000106886,-0.05535301126361495 +204271,1021.3550000106887,-0.05535297272614896 +204272,1021.3600000106889,-0.05535293418699091 +204273,1021.365000010689,-0.055352895646140626 +204274,1021.3700000106891,-0.055352857103597955 +204275,1021.3750000106892,-0.05535281855936275 +204276,1021.3800000106893,-0.055352780013434855 +204277,1021.3850000106894,-0.05535274146581412 +204278,1021.3900000106895,-0.05535270291650039 +204279,1021.3950000106896,-0.05535266436549353 +204280,1021.4000000106897,-0.05535262581279336 +204281,1021.4050000106898,-0.055352587258399755 +204282,1021.4100000106899,-0.05535254870231255 +204283,1021.41500001069,-0.05535251014453158 +204284,1021.4200000106902,-0.05535247158505672 +204285,1021.4250000106903,-0.0553524330238878 +204286,1021.4300000106904,-0.055352394461024676 +204287,1021.4350000106905,-0.05535235589646719 +204288,1021.4400000106906,-0.05535231733021519 +204289,1021.4450000106907,-0.055352278762268524 +204290,1021.4500000106908,-0.05535224019262705 +204291,1021.4550000106909,-0.05535220162129062 +204292,1021.460000010691,-0.05535216304825907 +204293,1021.4650000106911,-0.05535212447353226 +204294,1021.4700000106913,-0.055352085897110014 +204295,1021.4750000106914,-0.05535204731899221 +204296,1021.4800000106915,-0.055352008739178685 +204297,1021.4850000106916,-0.05535197015766929 +204298,1021.4900000106917,-0.055351931574463865 +204299,1021.4950000106918,-0.05535189298956227 +204300,1021.5000000106919,-0.05535185440296435 +204301,1021.505000010692,-0.05535181581466995 +204302,1021.5100000106921,-0.055351777224678926 +204303,1021.5150000106922,-0.05535173863299113 +204304,1021.5200000106923,-0.0553517000396064 +204305,1021.5250000106925,-0.055351661444524594 +204306,1021.5300000106926,-0.055351622847745564 +204307,1021.5350000106927,-0.055351584249269156 +204308,1021.5400000106928,-0.0553515456490952 +204309,1021.5450000106929,-0.05535150704722358 +204310,1021.550000010693,-0.055351468443654114 +204311,1021.5550000106931,-0.05535142983838668 +204312,1021.5600000106932,-0.055351391231421104 +204313,1021.5650000106933,-0.05535135262275725 +204314,1021.5700000106934,-0.055351314012394966 +204315,1021.5750000106935,-0.055351275400334105 +204316,1021.5800000106937,-0.055351236786574505 +204317,1021.5850000106938,-0.05535119817111603 +204318,1021.5900000106939,-0.05535115955395851 +204319,1021.595000010694,-0.055351120935101805 +204320,1021.6000000106941,-0.05535108231454578 +204321,1021.6050000106942,-0.05535104369229026 +204322,1021.6100000106943,-0.05535100506833512 +204323,1021.6150000106944,-0.05535096644268019 +204324,1021.6200000106945,-0.055350927815325336 +204325,1021.6250000106946,-0.055350889186270395 +204326,1021.6300000106947,-0.055350850555515224 +204327,1021.6350000106949,-0.05535081192305967 +204328,1021.640000010695,-0.05535077328890358 +204329,1021.6450000106951,-0.05535073465304683 +204330,1021.6500000106952,-0.05535069601548925 +204331,1021.6550000106953,-0.05535065737623069 +204332,1021.6600000106954,-0.055350618735271 +204333,1021.6650000106955,-0.055350580092610034 +204334,1021.6700000106956,-0.055350541448247643 +204335,1021.6750000106957,-0.05535050280218367 +204336,1021.6800000106958,-0.05535046415441798 +204337,1021.685000010696,-0.05535042550495042 +204338,1021.690000010696,-0.05535038685378083 +204339,1021.6950000106962,-0.05535034820090908 +204340,1021.7000000106963,-0.05535030954633501 +204341,1021.7050000106964,-0.05535027089005847 +204342,1021.7100000106965,-0.055350232232079306 +204343,1021.7150000106966,-0.055350193572397385 +204344,1021.7200000106967,-0.055350154911012556 +204345,1021.7250000106968,-0.055350116247924665 +204346,1021.7300000106969,-0.05535007758313355 +204347,1021.735000010697,-0.055350038916639095 +204348,1021.7400000106971,-0.05535000024844112 +204349,1021.7450000106973,-0.05534996157853949 +204350,1021.7500000106974,-0.05534992290693407 +204351,1021.7550000106975,-0.05534988423362469 +204352,1021.7600000106976,-0.05534984555861121 +204353,1021.7650000106977,-0.05534980688189347 +204354,1021.7700000106978,-0.055349768203471345 +204355,1021.7750000106979,-0.055349729523344667 +204356,1021.780000010698,-0.0553496908415133 +204357,1021.7850000106981,-0.05534965215797709 +204358,1021.7900000106982,-0.0553496134727359 +204359,1021.7950000106983,-0.05534957478578957 +204360,1021.8000000106985,-0.055349536097137955 +204361,1021.8050000106986,-0.05534949740678091 +204362,1021.8100000106987,-0.055349458714718296 +204363,1021.8150000106988,-0.05534942002094995 +204364,1021.8200000106989,-0.05534938132547572 +204365,1021.825000010699,-0.055349342628295474 +204366,1021.8300000106991,-0.05534930392940906 +204367,1021.8350000106992,-0.05534926522881632 +204368,1021.8400000106993,-0.05534922652651713 +204369,1021.8450000106994,-0.055349187822511324 +204370,1021.8500000106995,-0.05534914911679876 +204371,1021.8550000106997,-0.05534911040937928 +204372,1021.8600000106998,-0.05534907170025275 +204373,1021.8650000106999,-0.05534903298941903 +204374,1021.8700000107,-0.055348994276877964 +204375,1021.8750000107001,-0.0553489555626294 +204376,1021.8800000107002,-0.055348916846673195 +204377,1021.8850000107003,-0.055348878129009196 +204378,1021.8900000107004,-0.055348839409637265 +204379,1021.8950000107005,-0.05534880068855726 +204380,1021.9000000107006,-0.05534876196576903 +204381,1021.9050000107007,-0.055348723241272414 +204382,1021.9100000107009,-0.055348684515067276 +204383,1021.915000010701,-0.055348645787153476 +204384,1021.9200000107011,-0.055348607057530856 +204385,1021.9250000107012,-0.055348568326199284 +204386,1021.9300000107013,-0.055348529593158606 +204387,1021.9350000107014,-0.05534849085840867 +204388,1021.9400000107015,-0.05534845212194934 +204389,1021.9450000107016,-0.05534841338378046 +204390,1021.9500000107017,-0.055348374643901875 +204391,1021.9550000107018,-0.055348335902313466 +204392,1021.960000010702,-0.05534829715901508 +204393,1021.965000010702,-0.055348258414006556 +204394,1021.9700000107022,-0.05534821966728775 +204395,1021.9750000107023,-0.05534818091885852 +204396,1021.9800000107024,-0.05534814216871872 +204397,1021.9850000107025,-0.055348103416868216 +204398,1021.9900000107026,-0.05534806466330684 +204399,1021.9950000107027,-0.055348025908034476 +204400,1022.0000000107028,-0.055347987151050944 +204401,1022.0050000107029,-0.055347948392356135 +204402,1022.010000010703,-0.055347909631949875 +204403,1022.0150000107031,-0.055347870869832026 +204404,1022.0200000107033,-0.05534783210600244 +204405,1022.0250000107034,-0.055347793340460985 +204406,1022.0300000107035,-0.055347754573207494 +204407,1022.0350000107036,-0.055347715804241845 +204408,1022.0400000107037,-0.05534767703356387 +204409,1022.0450000107038,-0.05534763826117344 +204410,1022.0500000107039,-0.05534759948707041 +204411,1022.055000010704,-0.05534756071125463 +204412,1022.0600000107041,-0.05534752193372595 +204413,1022.0650000107042,-0.05534748315448423 +204414,1022.0700000107043,-0.055347444373529314 +204415,1022.0750000107045,-0.055347405590861085 +204416,1022.0800000107046,-0.05534736680647937 +204417,1022.0850000107047,-0.05534732802038404 +204418,1022.0900000107048,-0.05534728923257495 +204419,1022.0950000107049,-0.05534725044305195 +204420,1022.100000010705,-0.05534721165181489 +204421,1022.1050000107051,-0.05534717285886363 +204422,1022.1100000107052,-0.055347134064198035 +204423,1022.1150000107053,-0.05534709526781795 +204424,1022.1200000107054,-0.055347056469723245 +204425,1022.1250000107055,-0.055347017669913755 +204426,1022.1300000107057,-0.055346978868389345 +204427,1022.1350000107058,-0.05534694006514987 +204428,1022.1400000107059,-0.05534690126019518 +204429,1022.145000010706,-0.05534686245352515 +204430,1022.1500000107061,-0.05534682364513961 +204431,1022.1550000107062,-0.05534678483503844 +204432,1022.1600000107063,-0.05534674602322147 +204433,1022.1650000107064,-0.05534670720968859 +204434,1022.1700000107065,-0.055346668394439635 +204435,1022.1750000107066,-0.05534662957747446 +204436,1022.1800000107067,-0.05534659075879291 +204437,1022.1850000107069,-0.05534655193839487 +204438,1022.190000010707,-0.05534651311628018 +204439,1022.1950000107071,-0.05534647429244869 +204440,1022.2000000107072,-0.055346435466900275 +204441,1022.2050000107073,-0.055346396639634775 +204442,1022.2100000107074,-0.05534635781065205 +204443,1022.2150000107075,-0.05534631897995196 +204444,1022.2200000107076,-0.05534628014753437 +204445,1022.2250000107077,-0.055346241313399124 +204446,1022.2300000107078,-0.055346202477546076 +204447,1022.235000010708,-0.05534616363997509 +204448,1022.2400000107081,-0.05534612480068603 +204449,1022.2450000107082,-0.055346085959678736 +204450,1022.2500000107083,-0.055346047116953075 +204451,1022.2550000107084,-0.05534600827250891 +204452,1022.2600000107085,-0.055345969426346085 +204453,1022.2650000107086,-0.055345930578464465 +204454,1022.2700000107087,-0.05534589172886391 +204455,1022.2750000107088,-0.05534585287754426 +204456,1022.2800000107089,-0.05534581402450539 +204457,1022.285000010709,-0.05534577516974715 +204458,1022.2900000107092,-0.05534573631326938 +204459,1022.2950000107093,-0.055345697455071986 +204460,1022.3000000107094,-0.05534565859515479 +204461,1022.3050000107095,-0.055345619733517655 +204462,1022.3100000107096,-0.05534558087016042 +204463,1022.3150000107097,-0.05534554200508298 +204464,1022.3200000107098,-0.05534550313828515 +204465,1022.3250000107099,-0.05534546426976684 +204466,1022.33000001071,-0.05534542539952786 +204467,1022.3350000107101,-0.05534538652756808 +204468,1022.3400000107102,-0.05534534765388737 +204469,1022.3450000107104,-0.05534530877848559 +204470,1022.3500000107105,-0.055345269901362584 +204471,1022.3550000107106,-0.05534523102251822 +204472,1022.3600000107107,-0.055345192141952354 +204473,1022.3650000107108,-0.05534515325966484 +204474,1022.3700000107109,-0.05534511437565554 +204475,1022.375000010711,-0.05534507548992431 +204476,1022.3800000107111,-0.05534503660247101 +204477,1022.3850000107112,-0.0553449977132955 +204478,1022.3900000107113,-0.05534495882239763 +204479,1022.3950000107114,-0.05534491992977726 +204480,1022.4000000107116,-0.05534488103543427 +204481,1022.4050000107117,-0.055344842139368494 +204482,1022.4100000107118,-0.055344803241579796 +204483,1022.4150000107119,-0.05534476434206803 +204484,1022.420000010712,-0.05534472544083306 +204485,1022.4250000107121,-0.05534468653787475 +204486,1022.4300000107122,-0.05534464763319295 +204487,1022.4350000107123,-0.05534460872678753 +204488,1022.4400000107124,-0.05534456981865833 +204489,1022.4450000107125,-0.05534453090880523 +204490,1022.4500000107126,-0.055344491997228074 +204491,1022.4550000107128,-0.055344453083926735 +204492,1022.4600000107129,-0.05534441416890107 +204493,1022.465000010713,-0.05534437525215091 +204494,1022.4700000107131,-0.05534433633367616 +204495,1022.4750000107132,-0.05534429741347664 +204496,1022.4800000107133,-0.05534425849155222 +204497,1022.4850000107134,-0.055344219567902773 +204498,1022.4900000107135,-0.05534418064252815 +204499,1022.4950000107136,-0.055344141715428195 +204500,1022.5000000107137,-0.05534410278660279 +204501,1022.5050000107138,-0.05534406385605179 +204502,1022.510000010714,-0.055344024923775055 +204503,1022.5150000107141,-0.055343985989772436 +204504,1022.5200000107142,-0.055343947054043795 +204505,1022.5250000107143,-0.05534390811658899 +204506,1022.5300000107144,-0.055343869177407884 +204507,1022.5350000107145,-0.05534383023650034 +204508,1022.5400000107146,-0.05534379129386622 +204509,1022.5450000107147,-0.055343752349505365 +204510,1022.5500000107148,-0.055343713403417656 +204511,1022.5550000107149,-0.05534367445560294 +204512,1022.560000010715,-0.05534363550606109 +204513,1022.5650000107152,-0.05534359655479196 +204514,1022.5700000107153,-0.055343557601795414 +204515,1022.5750000107154,-0.055343518647071294 +204516,1022.5800000107155,-0.05534347969061948 +204517,1022.5850000107156,-0.05534344073243982 +204518,1022.5900000107157,-0.05534340177253219 +204519,1022.5950000107158,-0.05534336281089644 +204520,1022.6000000107159,-0.05534332384753242 +204521,1022.605000010716,-0.05534328488244 +204522,1022.6100000107161,-0.05534324591561905 +204523,1022.6150000107162,-0.05534320694706942 +204524,1022.6200000107164,-0.05534316797679098 +204525,1022.6250000107165,-0.05534312900478358 +204526,1022.6300000107166,-0.055343090031047086 +204527,1022.6350000107167,-0.055343051055581356 +204528,1022.6400000107168,-0.05534301207838625 +204529,1022.6450000107169,-0.05534297309946163 +204530,1022.650000010717,-0.05534293411880736 +204531,1022.6550000107171,-0.05534289513642331 +204532,1022.6600000107172,-0.05534285615230933 +204533,1022.6650000107173,-0.05534281716646527 +204534,1022.6700000107174,-0.055342778178890994 +204535,1022.6750000107176,-0.05534273918958638 +204536,1022.6800000107177,-0.05534270019855129 +204537,1022.6850000107178,-0.055342661205785564 +204538,1022.6900000107179,-0.055342622211289084 +204539,1022.695000010718,-0.0553425832150617 +204540,1022.7000000107181,-0.055342544217103266 +204541,1022.7050000107182,-0.05534250521741368 +204542,1022.7100000107183,-0.05534246621599276 +204543,1022.7150000107184,-0.05534242721284039 +204544,1022.7200000107185,-0.05534238820795642 +204545,1022.7250000107186,-0.05534234920134073 +204546,1022.7300000107188,-0.055342310192993155 +204547,1022.7350000107189,-0.05534227118291358 +204548,1022.740000010719,-0.05534223217110186 +204549,1022.7450000107191,-0.05534219315755785 +204550,1022.7500000107192,-0.05534215414228142 +204551,1022.7550000107193,-0.05534211512527243 +204552,1022.7600000107194,-0.05534207610653074 +204553,1022.7650000107195,-0.05534203708605621 +204554,1022.7700000107196,-0.05534199806384871 +204555,1022.7750000107197,-0.055341959039908094 +204556,1022.7800000107198,-0.055341920014234235 +204557,1022.78500001072,-0.05534188098682698 +204558,1022.7900000107201,-0.055341841957686204 +204559,1022.7950000107202,-0.05534180292681177 +204560,1022.8000000107203,-0.055341763894203526 +204561,1022.8050000107204,-0.055341724859861344 +204562,1022.8100000107205,-0.0553416858237851 +204563,1022.8150000107206,-0.055341646785974634 +204564,1022.8200000107207,-0.055341607746429815 +204565,1022.8250000107208,-0.05534156870515051 +204566,1022.8300000107209,-0.05534152966213658 +204567,1022.835000010721,-0.05534149061738789 +204568,1022.8400000107212,-0.055341451570904296 +204569,1022.8450000107213,-0.05534141252268567 +204570,1022.8500000107214,-0.055341373472731874 +204571,1022.8550000107215,-0.05534133442104276 +204572,1022.8600000107216,-0.055341295367618205 +204573,1022.8650000107217,-0.05534125631245806 +204574,1022.8700000107218,-0.0553412172555622 +204575,1022.8750000107219,-0.055341178196930484 +204576,1022.880000010722,-0.05534113913656277 +204577,1022.8850000107221,-0.05534110007445892 +204578,1022.8900000107222,-0.0553410610106188 +204579,1022.8950000107224,-0.055341021945042285 +204580,1022.9000000107225,-0.05534098287772922 +204581,1022.9050000107226,-0.05534094380867949 +204582,1022.9100000107227,-0.05534090473789293 +204583,1022.9150000107228,-0.05534086566536942 +204584,1022.9200000107229,-0.055340826591108824 +204585,1022.925000010723,-0.055340787515111005 +204586,1022.9300000107231,-0.055340748437375825 +204587,1022.9350000107232,-0.05534070935790315 +204588,1022.9400000107233,-0.05534067027669285 +204589,1022.9450000107234,-0.05534063119374477 +204590,1022.9500000107236,-0.05534059210905879 +204591,1022.9550000107237,-0.05534055302263476 +204592,1022.9600000107238,-0.05534051393447257 +204593,1022.9650000107239,-0.05534047484457206 +204594,1022.970000010724,-0.055340435752933105 +204595,1022.9750000107241,-0.055340396659555556 +204596,1022.9800000107242,-0.05534035756443929 +204597,1022.9850000107243,-0.05534031846758417 +204598,1022.9900000107244,-0.05534027936899005 +204599,1022.9950000107245,-0.05534024026865682 +204600,1023.0000000107246,-0.05534020116658431 +204601,1023.0050000107248,-0.05534016206277241 +204602,1023.0100000107249,-0.055340122957220975 +204603,1023.015000010725,-0.05534008384992987 +204604,1023.0200000107251,-0.055340044740898965 +204605,1023.0250000107252,-0.05534000563012811 +204606,1023.0300000107253,-0.05533996651761717 +204607,1023.0350000107254,-0.05533992740336603 +204608,1023.0400000107255,-0.05533988828737455 +204609,1023.0450000107256,-0.055339849169642574 +204610,1023.0500000107257,-0.05533981005016999 +204611,1023.0550000107258,-0.05533977092895666 +204612,1023.060000010726,-0.055339731806002435 +204613,1023.0650000107261,-0.05533969268130719 +204614,1023.0700000107262,-0.05533965355487078 +204615,1023.0750000107263,-0.05533961442669309 +204616,1023.0800000107264,-0.055339575296773975 +204617,1023.0850000107265,-0.055339536165113286 +204618,1023.0900000107266,-0.05533949703171092 +204619,1023.0950000107267,-0.05533945789656671 +204620,1023.1000000107268,-0.05533941875968054 +204621,1023.1050000107269,-0.05533937962105227 +204622,1023.110000010727,-0.05533934048068177 +204623,1023.1150000107272,-0.0553393013385689 +204624,1023.1200000107273,-0.05533926219471353 +204625,1023.1250000107274,-0.05533922304911552 +204626,1023.1300000107275,-0.05533918390177473 +204627,1023.1350000107276,-0.05533914475269104 +204628,1023.1400000107277,-0.05533910560186431 +204629,1023.1450000107278,-0.05533906644929439 +204630,1023.1500000107279,-0.05533902729498118 +204631,1023.155000010728,-0.05533898813892452 +204632,1023.1600000107281,-0.05533894898112428 +204633,1023.1650000107282,-0.05533890982158033 +204634,1023.1700000107284,-0.05533887066029253 +204635,1023.1750000107285,-0.05533883149726076 +204636,1023.1800000107286,-0.05533879233248487 +204637,1023.1850000107287,-0.05533875316596473 +204638,1023.1900000107288,-0.05533871399770021 +204639,1023.1950000107289,-0.05533867482769118 +204640,1023.200000010729,-0.05533863565593751 +204641,1023.2050000107291,-0.055338596482439044 +204642,1023.2100000107292,-0.055338557307195675 +204643,1023.2150000107293,-0.05533851813020725 +204644,1023.2200000107294,-0.055338478951473646 +204645,1023.2250000107296,-0.05533843977099473 +204646,1023.2300000107297,-0.055338400588770355 +204647,1023.2350000107298,-0.05533836140480041 +204648,1023.2400000107299,-0.055338322219084746 +204649,1023.24500001073,-0.05533828303162322 +204650,1023.2500000107301,-0.05533824384241572 +204651,1023.2550000107302,-0.05533820465146211 +204652,1023.2600000107303,-0.05533816545876225 +204653,1023.2650000107304,-0.055338126264316 +204654,1023.2700000107305,-0.055338087068123244 +204655,1023.2750000107307,-0.05533804787018384 +204656,1023.2800000107308,-0.05533800867049766 +204657,1023.2850000107309,-0.05533796946906456 +204658,1023.290000010731,-0.05533793026588441 +204659,1023.2950000107311,-0.055337891060957094 +204660,1023.3000000107312,-0.05533785185428245 +204661,1023.3050000107313,-0.055337812645860365 +204662,1023.3100000107314,-0.055337773435690706 +204663,1023.3150000107315,-0.05533773422377334 +204664,1023.3200000107316,-0.055337695010108136 +204665,1023.3250000107317,-0.055337655794694955 +204666,1023.3300000107319,-0.055337616577533666 +204667,1023.335000010732,-0.05533757735862413 +204668,1023.3400000107321,-0.055337538137966234 +204669,1023.3450000107322,-0.055337498915559835 +204670,1023.3500000107323,-0.05533745969140479 +204671,1023.3550000107324,-0.05533742046550098 +204672,1023.3600000107325,-0.05533738123784828 +204673,1023.3650000107326,-0.055337342008446526 +204674,1023.3700000107327,-0.05533730277729562 +204675,1023.3750000107328,-0.055337263544395415 +204676,1023.3800000107329,-0.05533722430974578 +204677,1023.385000010733,-0.05533718507334659 +204678,1023.3900000107332,-0.05533714583519771 +204679,1023.3950000107333,-0.055337106595298995 +204680,1023.4000000107334,-0.05533706735365033 +204681,1023.4050000107335,-0.05533702811025157 +204682,1023.4100000107336,-0.0553369888651026 +204683,1023.4150000107337,-0.05533694961820328 +204684,1023.4200000107338,-0.05533691036955347 +204685,1023.4250000107339,-0.055336871119153044 +204686,1023.430000010734,-0.055336831867001876 +204687,1023.4350000107341,-0.05533679261309983 +204688,1023.4400000107343,-0.05533675335744678 +204689,1023.4450000107344,-0.05533671410004259 +204690,1023.4500000107345,-0.055336674840887126 +204691,1023.4550000107346,-0.05533663557998025 +204692,1023.4600000107347,-0.05533659631732185 +204693,1023.4650000107348,-0.05533655705291179 +204694,1023.4700000107349,-0.055336517786749924 +204695,1023.475000010735,-0.055336478518836135 +204696,1023.4800000107351,-0.05533643924917028 +204697,1023.4850000107352,-0.05533639997775225 +204698,1023.4900000107353,-0.055336360704581894 +204699,1023.4950000107355,-0.055336321429659094 +204700,1023.5000000107356,-0.055336282152983716 +204701,1023.5050000107357,-0.05533624287455561 +204702,1023.5100000107358,-0.05533620359437467 +204703,1023.5150000107359,-0.05533616431244075 +204704,1023.520000010736,-0.05533612502875373 +204705,1023.5250000107361,-0.05533608574331347 +204706,1023.5300000107362,-0.055336046456119864 +204707,1023.5350000107363,-0.05533600716717274 +204708,1023.5400000107364,-0.055335967876472 +204709,1023.5450000107365,-0.055335928584017494 +204710,1023.5500000107367,-0.055335889289809106 +204711,1023.5550000107368,-0.05533584999384669 +204712,1023.5600000107369,-0.05533581069613014 +204713,1023.565000010737,-0.055335771396659315 +204714,1023.5700000107371,-0.05533573209543407 +204715,1023.5750000107372,-0.055335692792454295 +204716,1023.5800000107373,-0.055335653487719856 +204717,1023.5850000107374,-0.05533561418123061 +204718,1023.5900000107375,-0.055335574872986446 +204719,1023.5950000107376,-0.055335535562987204 +204720,1023.6000000107377,-0.05533549625123278 +204721,1023.6050000107379,-0.05533545693772305 +204722,1023.610000010738,-0.05533541762245787 +204723,1023.6150000107381,-0.055335378305437104 +204724,1023.6200000107382,-0.05533533898666063 +204725,1023.6250000107383,-0.055335299666128324 +204726,1023.6300000107384,-0.05533526034384005 +204727,1023.6350000107385,-0.05533522101979568 +204728,1023.6400000107386,-0.05533518169399508 +204729,1023.6450000107387,-0.055335142366438134 +204730,1023.6500000107388,-0.055335103037124696 +204731,1023.655000010739,-0.05533506370605464 +204732,1023.660000010739,-0.055335024373227855 +204733,1023.6650000107392,-0.055334985038644195 +204734,1023.6700000107393,-0.05533494570230353 +204735,1023.6750000107394,-0.055334906364205724 +204736,1023.6800000107395,-0.055334867024350656 +204737,1023.6850000107396,-0.05533482768273821 +204738,1023.6900000107397,-0.055334788339368245 +204739,1023.6950000107398,-0.05533474899424063 +204740,1023.7000000107399,-0.05533470964735524 +204741,1023.70500001074,-0.05533467029871194 +204742,1023.7100000107401,-0.05533463094831062 +204743,1023.7150000107403,-0.05533459159615113 +204744,1023.7200000107404,-0.05533455224223335 +204745,1023.7250000107405,-0.055334512886557136 +204746,1023.7300000107406,-0.05533447352912238 +204747,1023.7350000107407,-0.05533443416992894 +204748,1023.7400000107408,-0.0553343948089767 +204749,1023.7450000107409,-0.05533435544626552 +204750,1023.750000010741,-0.05533431608179528 +204751,1023.7550000107411,-0.05533427671556585 +204752,1023.7600000107412,-0.0553342373475771 +204753,1023.7650000107413,-0.05533419797782891 +204754,1023.7700000107415,-0.05533415860632114 +204755,1023.7750000107416,-0.055334119233053654 +204756,1023.7800000107417,-0.055334079858026346 +204757,1023.7850000107418,-0.05533404048123907 +204758,1023.7900000107419,-0.05533400110269172 +204759,1023.795000010742,-0.05533396172238413 +204760,1023.8000000107421,-0.055333922340316206 +204761,1023.8050000107422,-0.05533388295648781 +204762,1023.8100000107423,-0.05533384357089881 +204763,1023.8150000107424,-0.05533380418354908 +204764,1023.8200000107425,-0.055333764794438495 +204765,1023.8250000107427,-0.055333725403566916 +204766,1023.8300000107428,-0.05533368601093423 +204767,1023.8350000107429,-0.055333646616540305 +204768,1023.840000010743,-0.05533360722038501 +204769,1023.8450000107431,-0.05533356782246821 +204770,1023.8500000107432,-0.055333528422789796 +204771,1023.8550000107433,-0.05533348902134964 +204772,1023.8600000107434,-0.055333449618147595 +204773,1023.8650000107435,-0.05533341021318354 +204774,1023.8700000107436,-0.05533337080645735 +204775,1023.8750000107437,-0.05533333139796891 +204776,1023.8800000107439,-0.055333291987718074 +204777,1023.885000010744,-0.05533325257570472 +204778,1023.8900000107441,-0.055333213161928727 +204779,1023.8950000107442,-0.05533317374638996 +204780,1023.9000000107443,-0.05533313432908831 +204781,1023.9050000107444,-0.05533309491002363 +204782,1023.9100000107445,-0.0553330554891958 +204783,1023.9150000107446,-0.055333016066604686 +204784,1023.9200000107447,-0.055332976642250176 +204785,1023.9250000107448,-0.055332937216132125 +204786,1023.930000010745,-0.05533289778825042 +204787,1023.9350000107451,-0.055332858358604936 +204788,1023.9400000107452,-0.055332818927195535 +204789,1023.9450000107453,-0.05533277949402209 +204790,1023.9500000107454,-0.055332740059084486 +204791,1023.9550000107455,-0.05533270062238259 +204792,1023.9600000107456,-0.055332661183916276 +204793,1023.9650000107457,-0.05533262174368541 +204794,1023.9700000107458,-0.05533258230168989 +204795,1023.9750000107459,-0.05533254285792955 +204796,1023.980000010746,-0.055332503412404296 +204797,1023.9850000107461,-0.05533246396511399 +204798,1023.9900000107463,-0.055332424516058513 +204799,1023.9950000107464,-0.05533238506523773 +204800,1024.0000000107464,-0.055332345612651525 +204801,1024.0050000107465,-0.05533230615829976 +204802,1024.0100000107466,-0.05533226670218231 +204803,1024.0150000107467,-0.05533222724429905 +204804,1024.0200000107468,-0.055332187784649864 +204805,1024.025000010747,-0.0553321483232346 +204806,1024.030000010747,-0.05533210886005317 +204807,1024.0350000107471,-0.055332069395105425 +204808,1024.0400000107472,-0.05533202992839124 +204809,1024.0450000107473,-0.05533199045991049 +204810,1024.0500000107475,-0.055331950989663044 +204811,1024.0550000107476,-0.05533191151764879 +204812,1024.0600000107477,-0.055331872043867594 +204813,1024.0650000107478,-0.05533183256831933 +204814,1024.070000010748,-0.055331793091003875 +204815,1024.075000010748,-0.0553317536119211 +204816,1024.080000010748,-0.055331714131070894 +204817,1024.0850000107482,-0.055331674648453115 +204818,1024.0900000107483,-0.05533163516406765 +204819,1024.0950000107484,-0.05533159567791437 +204820,1024.1000000107485,-0.055331556189993136 +204821,1024.1050000107487,-0.05533151670030384 +204822,1024.1100000107488,-0.05533147720884634 +204823,1024.1150000107489,-0.055331437715620525 +204824,1024.120000010749,-0.05533139822062626 +204825,1024.125000010749,-0.05533135872386342 +204826,1024.1300000107492,-0.055331319225331896 +204827,1024.1350000107493,-0.05533127972503155 +204828,1024.1400000107494,-0.055331240222962264 +204829,1024.1450000107495,-0.0553312007191239 +204830,1024.1500000107496,-0.055331161213516354 +204831,1024.1550000107497,-0.055331121706139484 +204832,1024.1600000107499,-0.05533108219699317 +204833,1024.16500001075,-0.05533104268607728 +204834,1024.17000001075,-0.05533100317339171 +204835,1024.1750000107502,-0.05533096365893631 +204836,1024.1800000107503,-0.05533092414271097 +204837,1024.1850000107504,-0.05533088462471557 +204838,1024.1900000107505,-0.055330845104949976 +204839,1024.1950000107506,-0.055330805583414064 +204840,1024.2000000107507,-0.05533076606010771 +204841,1024.2050000107508,-0.055330726535030794 +204842,1024.210000010751,-0.055330687008183194 +204843,1024.215000010751,-0.055330647479564773 +204844,1024.2200000107512,-0.055330607949175416 +204845,1024.2250000107513,-0.055330568417015 +204846,1024.2300000107514,-0.0553305288830834 +204847,1024.2350000107515,-0.055330489347380496 +204848,1024.2400000107516,-0.055330449809906146 +204849,1024.2450000107517,-0.05533041027066024 +204850,1024.2500000107518,-0.055330370729642656 +204851,1024.255000010752,-0.05533033118685326 +204852,1024.260000010752,-0.05533029164229194 +204853,1024.2650000107521,-0.05533025209595857 +204854,1024.2700000107523,-0.055330212547853024 +204855,1024.2750000107524,-0.05533017299797517 +204856,1024.2800000107525,-0.0553301334463249 +204857,1024.2850000107526,-0.05533009389290207 +204858,1024.2900000107527,-0.055330054337706575 +204859,1024.2950000107528,-0.05533001478073828 +204860,1024.300000010753,-0.05532997522199708 +204861,1024.305000010753,-0.055329935661482824 +204862,1024.3100000107531,-0.05532989609919541 +204863,1024.3150000107532,-0.0553298565351347 +204864,1024.3200000107533,-0.05532981696930058 +204865,1024.3250000107535,-0.055329777401692926 +204866,1024.3300000107536,-0.05532973783231161 +204867,1024.3350000107537,-0.05532969826115651 +204868,1024.3400000107538,-0.055329658688227513 +204869,1024.345000010754,-0.055329619113524485 +204870,1024.350000010754,-0.05532957953704731 +204871,1024.355000010754,-0.05532953995879585 +204872,1024.3600000107542,-0.05532950037876999 +204873,1024.3650000107543,-0.055329460796969626 +204874,1024.3700000107544,-0.05532942121339461 +204875,1024.3750000107545,-0.05532938162804483 +204876,1024.3800000107547,-0.05532934204092017 +204877,1024.3850000107548,-0.05532930245202049 +204878,1024.3900000107549,-0.05532926286134567 +204879,1024.395000010755,-0.055329223268895604 +204880,1024.400000010755,-0.055329183674670164 +204881,1024.4050000107552,-0.05532914407866922 +204882,1024.4100000107553,-0.05532910448089264 +204883,1024.4150000107554,-0.05532906488134032 +204884,1024.4200000107555,-0.055329025280012135 +204885,1024.4250000107556,-0.05532898567690795 +204886,1024.4300000107557,-0.05532894607202765 +204887,1024.4350000107559,-0.05532890646537112 +204888,1024.440000010756,-0.05532886685693823 +204889,1024.445000010756,-0.055328827246728864 +204890,1024.4500000107562,-0.055328787634742894 +204891,1024.4550000107563,-0.0553287480209802 +204892,1024.4600000107564,-0.05532870840544065 +204893,1024.4650000107565,-0.05532866878812413 +204894,1024.4700000107566,-0.05532862916903054 +204895,1024.4750000107567,-0.055328589548159716 +204896,1024.4800000107568,-0.055328549925511554 +204897,1024.485000010757,-0.055328510301085945 +204898,1024.490000010757,-0.05532847067488275 +204899,1024.4950000107572,-0.05532843104690187 +204900,1024.5000000107573,-0.05532839141714315 +204901,1024.5050000107574,-0.0553283517856065 +204902,1024.5100000107575,-0.05532831215229179 +204903,1024.5150000107576,-0.055328272517198886 +204904,1024.5200000107577,-0.05532823288032766 +204905,1024.5250000107578,-0.05532819324167802 +204906,1024.530000010758,-0.055328153601249826 +204907,1024.535000010758,-0.055328113959042954 +204908,1024.5400000107581,-0.0553280743150573 +204909,1024.5450000107583,-0.055328034669292724 +204910,1024.5500000107584,-0.05532799502174911 +204911,1024.5550000107585,-0.05532795537242633 +204912,1024.5600000107586,-0.055327915721324276 +204913,1024.5650000107587,-0.05532787606844282 +204914,1024.5700000107588,-0.05532783641378184 +204915,1024.575000010759,-0.05532779675734122 +204916,1024.580000010759,-0.055327757099120835 +204917,1024.5850000107591,-0.055327717439120565 +204918,1024.5900000107592,-0.0553276777773403 +204919,1024.5950000107593,-0.0553276381137799 +204920,1024.6000000107595,-0.05532759844843925 +204921,1024.6050000107596,-0.05532755878131823 +204922,1024.6100000107597,-0.05532751911241673 +204923,1024.6150000107598,-0.05532747944173461 +204924,1024.62000001076,-0.05532743976927176 +204925,1024.62500001076,-0.05532740009502807 +204926,1024.63000001076,-0.055327360419003414 +204927,1024.6350000107602,-0.05532732074119765 +204928,1024.6400000107603,-0.055327281061610695 +204929,1024.6450000107604,-0.055327241380242385 +204930,1024.6500000107606,-0.05532720169709263 +204931,1024.6550000107607,-0.05532716201216131 +204932,1024.6600000107608,-0.055327122325448286 +204933,1024.6650000107609,-0.05532708263695345 +204934,1024.670000010761,-0.055327042946676674 +204935,1024.675000010761,-0.055327003254617854 +204936,1024.6800000107612,-0.05532696356077685 +204937,1024.6850000107613,-0.055326923865153546 +204938,1024.6900000107614,-0.055326884167747836 +204939,1024.6950000107615,-0.05532684446855959 +204940,1024.7000000107616,-0.05532680476758869 +204941,1024.7050000107618,-0.055326765064835005 +204942,1024.7100000107619,-0.05532672536029842 +204943,1024.715000010762,-0.055326685653978844 +204944,1024.720000010762,-0.05532664594587612 +204945,1024.7250000107622,-0.055326606235990144 +204946,1024.7300000107623,-0.055326566524320796 +204947,1024.7350000107624,-0.05532652681086795 +204948,1024.7400000107625,-0.055326487095631496 +204949,1024.7450000107626,-0.05532644737861131 +204950,1024.7500000107627,-0.05532640765980726 +204951,1024.7550000107628,-0.05532636793921924 +204952,1024.760000010763,-0.05532632821684713 +204953,1024.765000010763,-0.05532628849269082 +204954,1024.7700000107632,-0.05532624876675017 +204955,1024.7750000107633,-0.055326209039025076 +204956,1024.7800000107634,-0.05532616930951541 +204957,1024.7850000107635,-0.055326129578221056 +204958,1024.7900000107636,-0.055326089845141896 +204959,1024.7950000107637,-0.05532605011027781 +204960,1024.8000000107638,-0.05532601037362868 +204961,1024.805000010764,-0.05532597063519438 +204962,1024.810000010764,-0.055325930894974805 +204963,1024.8150000107642,-0.05532589115296982 +204964,1024.8200000107643,-0.05532585140917931 +204965,1024.8250000107644,-0.05532581166360316 +204966,1024.8300000107645,-0.055325771916241266 +204967,1024.8350000107646,-0.055325732167093494 +204968,1024.8400000107647,-0.055325692416159714 +204969,1024.8450000107648,-0.05532565266343981 +204970,1024.850000010765,-0.05532561290893368 +204971,1024.855000010765,-0.0553255731526412 +204972,1024.8600000107651,-0.05532553339456225 +204973,1024.8650000107652,-0.0553254936346967 +204974,1024.8700000107654,-0.05532545387304445 +204975,1024.8750000107655,-0.05532541410960538 +204976,1024.8800000107656,-0.055325374344379355 +204977,1024.8850000107657,-0.05532533457736626 +204978,1024.8900000107658,-0.055325294808566 +204979,1024.895000010766,-0.05532525503797844 +204980,1024.900000010766,-0.055325215265603446 +204981,1024.9050000107661,-0.05532517549144092 +204982,1024.9100000107662,-0.055325135715490734 +204983,1024.9150000107663,-0.055325095937752776 +204984,1024.9200000107664,-0.05532505615822694 +204985,1024.9250000107666,-0.05532501637691308 +204986,1024.9300000107667,-0.0553249765938111 +204987,1024.9350000107668,-0.05532493680892088 +204988,1024.9400000107669,-0.055324897022242296 +204989,1024.945000010767,-0.05532485723377523 +204990,1024.950000010767,-0.05532481744351957 +204991,1024.9550000107672,-0.05532477765147518 +204992,1024.9600000107673,-0.05532473785764195 +204993,1024.9650000107674,-0.05532469806201978 +204994,1024.9700000107675,-0.05532465826460854 +204995,1024.9750000107676,-0.05532461846540812 +204996,1024.9800000107678,-0.05532457866441838 +204997,1024.9850000107679,-0.055324538861639225 +204998,1024.990000010768,-0.05532449905707053 +204999,1024.995000010768,-0.05532445925071218 +205000,1025.0000000107682,-0.055324419442564055 +205001,1025.0050000107683,-0.055324379632626035 +205002,1025.0100000107684,-0.055324339820898 +205003,1025.0150000107685,-0.05532430000737985 +205004,1025.0200000107686,-0.05532426019207145 +205005,1025.0250000107687,-0.055324220374972685 +205006,1025.0300000107688,-0.05532418055608345 +205007,1025.035000010769,-0.05532414073540362 +205008,1025.040000010769,-0.05532410091293308 +205009,1025.0450000107692,-0.055324061088671696 +205010,1025.0500000107693,-0.055324021262619386 +205011,1025.0550000107694,-0.055323981434776 +205012,1025.0600000107695,-0.055323941605141445 +205013,1025.0650000107696,-0.05532390177371558 +205014,1025.0700000107697,-0.055323861940498306 +205015,1025.0750000107698,-0.0553238221054895 +205016,1025.08000001077,-0.055323782268689045 +205017,1025.08500001077,-0.05532374243009683 +205018,1025.0900000107702,-0.055323702589712725 +205019,1025.0950000107703,-0.05532366274753663 +205020,1025.1000000107704,-0.055323622903568424 +205021,1025.1050000107705,-0.05532358305780798 +205022,1025.1100000107706,-0.0553235432102552 +205023,1025.1150000107707,-0.05532350336090996 +205024,1025.1200000107708,-0.055323463509772124 +205025,1025.125000010771,-0.0553234236568416 +205026,1025.130000010771,-0.05532338380211826 +205027,1025.1350000107711,-0.05532334394560199 +205028,1025.1400000107712,-0.055323304087292684 +205029,1025.1450000107714,-0.05532326422719021 +205030,1025.1500000107715,-0.055323224365294466 +205031,1025.1550000107716,-0.055323184501605324 +205032,1025.1600000107717,-0.05532314463612268 +205033,1025.1650000107718,-0.05532310476884641 +205034,1025.170000010772,-0.055323064899776384 +205035,1025.175000010772,-0.05532302502891251 +205036,1025.1800000107721,-0.05532298515625466 +205037,1025.1850000107722,-0.05532294528180273 +205038,1025.1900000107723,-0.0553229054055566 +205039,1025.1950000107724,-0.05532286552751614 +205040,1025.2000000107726,-0.05532282564768124 +205041,1025.2050000107727,-0.0553227857660518 +205042,1025.2100000107728,-0.055322745882627686 +205043,1025.2150000107729,-0.05532270599740879 +205044,1025.220000010773,-0.05532266611039499 +205045,1025.225000010773,-0.055322626221586194 +205046,1025.2300000107732,-0.05532258633098225 +205047,1025.2350000107733,-0.05532254643858306 +205048,1025.2400000107734,-0.05532250654438852 +205049,1025.2450000107735,-0.0553224666483985 +205050,1025.2500000107736,-0.05532242675061289 +205051,1025.2550000107738,-0.05532238685103158 +205052,1025.2600000107739,-0.05532234694965445 +205053,1025.265000010774,-0.05532230704648137 +205054,1025.270000010774,-0.055322267141512255 +205055,1025.2750000107742,-0.05532222723474696 +205056,1025.2800000107743,-0.055322187326185386 +205057,1025.2850000107744,-0.055322147415827416 +205058,1025.2900000107745,-0.05532210750367294 +205059,1025.2950000107746,-0.05532206758972184 +205060,1025.3000000107747,-0.05532202767397399 +205061,1025.3050000107748,-0.0553219877564293 +205062,1025.310000010775,-0.055321947837087625 +205063,1025.315000010775,-0.055321907915948855 +205064,1025.3200000107752,-0.055321867993012905 +205065,1025.3250000107753,-0.05532182806827963 +205066,1025.3300000107754,-0.05532178814174893 +205067,1025.3350000107755,-0.055321748213420674 +205068,1025.3400000107756,-0.05532170828329477 +205069,1025.3450000107757,-0.05532166835137109 +205070,1025.3500000107758,-0.055321628417649524 +205071,1025.355000010776,-0.05532158848212995 +205072,1025.360000010776,-0.05532154854481228 +205073,1025.3650000107762,-0.05532150860569635 +205074,1025.3700000107763,-0.05532146866478209 +205075,1025.3750000107764,-0.05532142872206937 +205076,1025.3800000107765,-0.05532138877755807 +205077,1025.3850000107766,-0.05532134883124809 +205078,1025.3900000107767,-0.05532130888313931 +205079,1025.3950000107768,-0.05532126893323161 +205080,1025.400000010777,-0.05532122898152488 +205081,1025.405000010777,-0.05532118902801901 +205082,1025.4100000107771,-0.055321149072713884 +205083,1025.4150000107772,-0.055321109115609376 +205084,1025.4200000107774,-0.05532106915670539 +205085,1025.4250000107775,-0.055321029196001806 +205086,1025.4300000107776,-0.05532098923349849 +205087,1025.4350000107777,-0.05532094926919537 +205088,1025.4400000107778,-0.055320909303092296 +205089,1025.445000010778,-0.05532086933518918 +205090,1025.450000010778,-0.05532082936548588 +205091,1025.4550000107781,-0.05532078939398231 +205092,1025.4600000107782,-0.05532074942067834 +205093,1025.4650000107783,-0.05532070944557386 +205094,1025.4700000107784,-0.05532066946866875 +205095,1025.4750000107786,-0.055320629489962914 +205096,1025.4800000107787,-0.05532058950945623 +205097,1025.4850000107788,-0.055320549527148585 +205098,1025.4900000107789,-0.05532050954303986 +205099,1025.495000010779,-0.05532046955712996 +205100,1025.500000010779,-0.05532042956941874 +205101,1025.5050000107792,-0.05532038957990611 +205102,1025.5100000107793,-0.05532034958859195 +205103,1025.5150000107794,-0.055320309595476146 +205104,1025.5200000107795,-0.05532026960055859 +205105,1025.5250000107796,-0.055320229603839165 +205106,1025.5300000107798,-0.05532018960531777 +205107,1025.5350000107799,-0.05532014960499427 +205108,1025.54000001078,-0.055320109602868574 +205109,1025.54500001078,-0.05532006959894055 +205110,1025.5500000107802,-0.0553200295932101 +205111,1025.5550000107803,-0.05531998958567709 +205112,1025.5600000107804,-0.05531994957634145 +205113,1025.5650000107805,-0.055319909565203024 +205114,1025.5700000107806,-0.05531986955226171 +205115,1025.5750000107807,-0.055319829537517407 +205116,1025.5800000107809,-0.05531978952096999 +205117,1025.585000010781,-0.05531974950261936 +205118,1025.590000010781,-0.0553197094824654 +205119,1025.5950000107812,-0.05531966946050798 +205120,1025.6000000107813,-0.05531962943674701 +205121,1025.6050000107814,-0.05531958941118236 +205122,1025.6100000107815,-0.055319549383813935 +205123,1025.6150000107816,-0.055319509354641624 +205124,1025.6200000107817,-0.055319469323665306 +205125,1025.6250000107818,-0.055319429290884854 +205126,1025.630000010782,-0.055319389256300186 +205127,1025.635000010782,-0.05531934921991116 +205128,1025.6400000107822,-0.05531930918171769 +205129,1025.6450000107823,-0.05531926914171965 +205130,1025.6500000107824,-0.055319229099916926 +205131,1025.6550000107825,-0.05531918905630941 +205132,1025.6600000107826,-0.055319149010897 +205133,1025.6650000107827,-0.05531910896367957 +205134,1025.6700000107828,-0.05531906891465701 +205135,1025.675000010783,-0.055319028863829216 +205136,1025.680000010783,-0.05531898881119607 +205137,1025.6850000107831,-0.05531894875675745 +205138,1025.6900000107833,-0.055318908700513265 +205139,1025.6950000107834,-0.05531886864246339 +205140,1025.7000000107835,-0.055318828582607726 +205141,1025.7050000107836,-0.05531878852094614 +205142,1025.7100000107837,-0.05531874845747855 +205143,1025.7150000107838,-0.055318708392204825 +205144,1025.720000010784,-0.055318668325124845 +205145,1025.725000010784,-0.055318628256238525 +205146,1025.7300000107841,-0.05531858818554573 +205147,1025.7350000107842,-0.055318548113046366 +205148,1025.7400000107843,-0.055318508038740305 +205149,1025.7450000107845,-0.05531846796262745 +205150,1025.7500000107846,-0.05531842788470768 +205151,1025.7550000107847,-0.05531838780498089 +205152,1025.7600000107848,-0.055318347723446966 +205153,1025.765000010785,-0.055318307640105785 +205154,1025.770000010785,-0.05531826755495726 +205155,1025.775000010785,-0.05531822746800127 +205156,1025.7800000107852,-0.0553181873792377 +205157,1025.7850000107853,-0.055318147288666436 +205158,1025.7900000107854,-0.05531810719628739 +205159,1025.7950000107855,-0.05531806710210042 +205160,1025.8000000107857,-0.05531802700610543 +205161,1025.8050000107858,-0.0553179869083023 +205162,1025.8100000107859,-0.05531794680869095 +205163,1025.815000010786,-0.055317906707271235 +205164,1025.820000010786,-0.055317866604043066 +205165,1025.8250000107862,-0.055317826499006316 +205166,1025.8300000107863,-0.05531778639216089 +205167,1025.8350000107864,-0.05531774628350665 +205168,1025.8400000107865,-0.05531770617304352 +205169,1025.8450000107866,-0.055317666060771375 +205170,1025.8500000107867,-0.055317625946690104 +205171,1025.8550000107869,-0.05531758583079959 +205172,1025.860000010787,-0.055317545713099735 +205173,1025.865000010787,-0.05531750559359041 +205174,1025.8700000107872,-0.05531746547227154 +205175,1025.8750000107873,-0.05531742534914298 +205176,1025.8800000107874,-0.05531738522420463 +205177,1025.8850000107875,-0.05531734509745638 +205178,1025.8900000107876,-0.055317304968898126 +205179,1025.8950000107877,-0.05531726483852975 +205180,1025.9000000107878,-0.055317224706351156 +205181,1025.905000010788,-0.055317184572362225 +205182,1025.910000010788,-0.05531714443656284 +205183,1025.9150000107882,-0.0553171042989529 +205184,1025.9200000107883,-0.055317064159532296 +205185,1025.9250000107884,-0.055317024018300916 +205186,1025.9300000107885,-0.05531698387525864 +205187,1025.9350000107886,-0.05531694373040537 +205188,1025.9400000107887,-0.055316903583740994 +205189,1025.9450000107888,-0.05531686343526541 +205190,1025.950000010789,-0.055316823284978486 +205191,1025.955000010789,-0.05531678313288013 +205192,1025.9600000107891,-0.05531674297897024 +205193,1025.9650000107893,-0.055316702823248694 +205194,1025.9700000107894,-0.05531666266571539 +205195,1025.9750000107895,-0.0553166225063702 +205196,1025.9800000107896,-0.055316582345213035 +205197,1025.9850000107897,-0.05531654218224378 +205198,1025.9900000107898,-0.05531650201746233 +205199,1025.99500001079,-0.05531646185086857 +205200,1026.00000001079,-0.055316421682462376 +205201,1026.0050000107901,-0.05531638151224367 +205202,1026.0100000107902,-0.05531634134021232 +205203,1026.0150000107903,-0.05531630116636822 +205204,1026.0200000107905,-0.05531626099071127 +205205,1026.0250000107906,-0.05531622081324136 +205206,1026.0300000107907,-0.05531618063395837 +205207,1026.0350000107908,-0.0553161404528622 +205208,1026.040000010791,-0.05531610026995274 +205209,1026.045000010791,-0.05531606008522988 +205210,1026.050000010791,-0.05531601989869351 +205211,1026.0550000107912,-0.05531597971034353 +205212,1026.0600000107913,-0.05531593952017981 +205213,1026.0650000107914,-0.055315899328202266 +205214,1026.0700000107915,-0.055315859134410776 +205215,1026.0750000107917,-0.055315818938805224 +205216,1026.0800000107918,-0.05531577874138552 +205217,1026.0850000107919,-0.055315738542151535 +205218,1026.090000010792,-0.055315698341103184 +205219,1026.095000010792,-0.05531565813824035 +205220,1026.1000000107922,-0.05531561793356292 +205221,1026.1050000107923,-0.05531557772707079 +205222,1026.1100000107924,-0.05531553751876385 +205223,1026.1150000107925,-0.05531549730864198 +205224,1026.1200000107926,-0.05531545709670509 +205225,1026.1250000107927,-0.05531541688295306 +205226,1026.1300000107929,-0.05531537666738579 +205227,1026.135000010793,-0.05531533645000317 +205228,1026.140000010793,-0.05531529623080509 +205229,1026.1450000107932,-0.05531525600979144 +205230,1026.1500000107933,-0.055315215786962114 +205231,1026.1550000107934,-0.055315175562317014 +205232,1026.1600000107935,-0.055315135335856 +205233,1026.1650000107936,-0.055315095107578996 +205234,1026.1700000107937,-0.05531505487748589 +205235,1026.1750000107938,-0.05531501464557657 +205236,1026.180000010794,-0.055314974411850924 +205237,1026.185000010794,-0.05531493417630884 +205238,1026.1900000107942,-0.05531489393895022 +205239,1026.1950000107943,-0.05531485369977496 +205240,1026.2000000107944,-0.05531481345878294 +205241,1026.2050000107945,-0.055314773215974056 +205242,1026.2100000107946,-0.05531473297134821 +205243,1026.2150000107947,-0.05531469272490529 +205244,1026.2200000107948,-0.05531465247664518 +205245,1026.225000010795,-0.05531461222656778 +205246,1026.230000010795,-0.055314571974672974 +205247,1026.2350000107951,-0.05531453172096067 +205248,1026.2400000107953,-0.055314491465430764 +205249,1026.2450000107954,-0.05531445120808313 +205250,1026.2500000107955,-0.05531441094891767 +205251,1026.2550000107956,-0.055314370687934274 +205252,1026.2600000107957,-0.05531433042513283 +205253,1026.2650000107958,-0.05531429016051324 +205254,1026.270000010796,-0.055314249894075386 +205255,1026.275000010796,-0.05531420962581918 +205256,1026.2800000107961,-0.0553141693557445 +205257,1026.2850000107962,-0.05531412908385124 +205258,1026.2900000107963,-0.0553140888101393 +205259,1026.2950000107965,-0.05531404853460856 +205260,1026.3000000107966,-0.055314008257258934 +205261,1026.3050000107967,-0.0553139679780903 +205262,1026.3100000107968,-0.055313927697102555 +205263,1026.315000010797,-0.0553138874142956 +205264,1026.320000010797,-0.0553138471296693 +205265,1026.325000010797,-0.055313806843223574 +205266,1026.3300000107972,-0.05531376655495832 +205267,1026.3350000107973,-0.05531372626487342 +205268,1026.3400000107974,-0.05531368597296877 +205269,1026.3450000107975,-0.05531364567924426 +205270,1026.3500000107977,-0.05531360538369978 +205271,1026.3550000107978,-0.05531356508633523 +205272,1026.3600000107979,-0.055313524787150514 +205273,1026.365000010798,-0.055313484486145516 +205274,1026.370000010798,-0.05531344418332012 +205275,1026.3750000107982,-0.05531340387867422 +205276,1026.3800000107983,-0.05531336357220774 +205277,1026.3850000107984,-0.055313323263920536 +205278,1026.3900000107985,-0.05531328295381252 +205279,1026.3950000107986,-0.05531324264188359 +205280,1026.4000000107987,-0.05531320232813363 +205281,1026.4050000107989,-0.05531316201256255 +205282,1026.410000010799,-0.05531312169517021 +205283,1026.415000010799,-0.055313081375956544 +205284,1026.4200000107992,-0.055313041054921415 +205285,1026.4250000107993,-0.055313000732064736 +205286,1026.4300000107994,-0.0553129604073864 +205287,1026.4350000107995,-0.055312920080886285 +205288,1026.4400000107996,-0.0553128797525643 +205289,1026.4450000107997,-0.05531283942242034 +205290,1026.4500000107998,-0.05531279909045429 +205291,1026.4550000108,-0.05531275875666606 +205292,1026.4600000108,-0.05531271842105552 +205293,1026.4650000108002,-0.055312678083622585 +205294,1026.4700000108003,-0.055312637744367156 +205295,1026.4750000108004,-0.0553125974032891 +205296,1026.4800000108005,-0.05531255706038833 +205297,1026.4850000108006,-0.05531251671566474 +205298,1026.4900000108007,-0.055312476369118214 +205299,1026.4950000108008,-0.055312436020748666 +205300,1026.500000010801,-0.05531239567055597 +205301,1026.505000010801,-0.05531235531854003 +205302,1026.5100000108011,-0.05531231496470075 +205303,1026.5150000108013,-0.055312274609038 +205304,1026.5200000108014,-0.055312234251551705 +205305,1026.5250000108015,-0.05531219389224174 +205306,1026.5300000108016,-0.055312153531107994 +205307,1026.5350000108017,-0.05531211316815039 +205308,1026.5400000108018,-0.05531207280336879 +205309,1026.545000010802,-0.05531203243676312 +205310,1026.550000010802,-0.05531199206833325 +205311,1026.5550000108021,-0.055311951698079086 +205312,1026.5600000108022,-0.05531191132600053 +205313,1026.5650000108024,-0.05531187095209746 +205314,1026.5700000108025,-0.055311830576369785 +205315,1026.5750000108026,-0.05531179019881739 +205316,1026.5800000108027,-0.05531174981944018 +205317,1026.5850000108028,-0.05531170943823806 +205318,1026.590000010803,-0.0553116690552109 +205319,1026.595000010803,-0.055311628670358604 +205320,1026.6000000108031,-0.055311588283681073 +205321,1026.6050000108032,-0.05531154789517821 +205322,1026.6100000108033,-0.0553115075048499 +205323,1026.6150000108034,-0.055311467112696036 +205324,1026.6200000108036,-0.05531142671871652 +205325,1026.6250000108037,-0.055311386322911237 +205326,1026.6300000108038,-0.055311345925280093 +205327,1026.6350000108039,-0.05531130552582299 +205328,1026.640000010804,-0.0553112651245398 +205329,1026.645000010804,-0.05531122472143045 +205330,1026.6500000108042,-0.055311184316494816 +205331,1026.6550000108043,-0.055311143909732796 +205332,1026.6600000108044,-0.055311103501144286 +205333,1026.6650000108045,-0.05531106309072918 +205334,1026.6700000108046,-0.05531102267848738 +205335,1026.6750000108048,-0.05531098226441879 +205336,1026.6800000108049,-0.05531094184852329 +205337,1026.685000010805,-0.05531090143080077 +205338,1026.690000010805,-0.05531086101125115 +205339,1026.6950000108052,-0.05531082058987431 +205340,1026.7000000108053,-0.05531078016667016 +205341,1026.7050000108054,-0.055310739741638575 +205342,1026.7100000108055,-0.05531069931477947 +205343,1026.7150000108056,-0.05531065888609274 +205344,1026.7200000108057,-0.05531061845557827 +205345,1026.7250000108058,-0.05531057802323596 +205346,1026.730000010806,-0.05531053758906572 +205347,1026.735000010806,-0.05531049715306742 +205348,1026.7400000108062,-0.05531045671524098 +205349,1026.7450000108063,-0.05531041627558628 +205350,1026.7500000108064,-0.055310375834103226 +205351,1026.7550000108065,-0.05531033539079172 +205352,1026.7600000108066,-0.05531029494565165 +205353,1026.7650000108067,-0.05531025449868291 +205354,1026.7700000108068,-0.055310214049885405 +205355,1026.775000010807,-0.05531017359925903 +205356,1026.780000010807,-0.05531013314680368 +205357,1026.7850000108072,-0.05531009269251925 +205358,1026.7900000108073,-0.05531005223640564 +205359,1026.7950000108074,-0.05531001177846275 +205360,1026.8000000108075,-0.055309971318690476 +205361,1026.8050000108076,-0.055309930857088706 +205362,1026.8100000108077,-0.05530989039365734 +205363,1026.8150000108078,-0.05530984992839629 +205364,1026.820000010808,-0.05530980946130543 +205365,1026.825000010808,-0.05530976899238468 +205366,1026.8300000108081,-0.05530972852163392 +205367,1026.8350000108082,-0.05530968804905305 +205368,1026.8400000108084,-0.05530964757464197 +205369,1026.8450000108085,-0.05530960709840059 +205370,1026.8500000108086,-0.05530956662032879 +205371,1026.8550000108087,-0.055309526140426474 +205372,1026.8600000108088,-0.055309485658693536 +205373,1026.865000010809,-0.05530944517512987 +205374,1026.870000010809,-0.05530940468973537 +205375,1026.8750000108091,-0.05530936420250995 +205376,1026.8800000108092,-0.05530932371345351 +205377,1026.8850000108093,-0.05530928322256594 +205378,1026.8900000108094,-0.05530924272984713 +205379,1026.8950000108096,-0.05530920223529698 +205380,1026.9000000108097,-0.0553091617389154 +205381,1026.9050000108098,-0.055309121240702266 +205382,1026.9100000108099,-0.05530908074065749 +205383,1026.91500001081,-0.055309040238780985 +205384,1026.92000001081,-0.05530899973507262 +205385,1026.9250000108102,-0.05530895922953231 +205386,1026.9300000108103,-0.055308918722159935 +205387,1026.9350000108104,-0.05530887821295541 +205388,1026.9400000108105,-0.055308837701918634 +205389,1026.9450000108106,-0.0553087971890495 +205390,1026.9500000108108,-0.055308756674347904 +205391,1026.9550000108109,-0.05530871615781375 +205392,1026.960000010811,-0.055308675639446934 +205393,1026.965000010811,-0.05530863511924734 +205394,1026.9700000108112,-0.05530859459721489 +205395,1026.9750000108113,-0.05530855407334947 +205396,1026.9800000108114,-0.05530851354765098 +205397,1026.9850000108115,-0.05530847302011931 +205398,1026.9900000108116,-0.05530843249075437 +205399,1026.9950000108117,-0.055308391959556065 +205400,1027.0000000108118,-0.05530835142652427 +205401,1027.005000010812,-0.05530831089165889 +205402,1027.010000010812,-0.055308270354959846 +205403,1027.0150000108122,-0.05530822981642702 +205404,1027.0200000108123,-0.05530818927606031 +205405,1027.0250000108124,-0.05530814873385961 +205406,1027.0300000108125,-0.055308108189824824 +205407,1027.0350000108126,-0.05530806764395585 +205408,1027.0400000108127,-0.055308027096252606 +205409,1027.0450000108128,-0.05530798654671496 +205410,1027.050000010813,-0.05530794599534282 +205411,1027.055000010813,-0.05530790544213609 +205412,1027.0600000108132,-0.05530786488709467 +205413,1027.0650000108133,-0.055307824330218455 +205414,1027.0700000108134,-0.05530778377150735 +205415,1027.0750000108135,-0.05530774321096125 +205416,1027.0800000108136,-0.05530770264858005 +205417,1027.0850000108137,-0.055307662084363655 +205418,1027.0900000108138,-0.055307621518311964 +205419,1027.095000010814,-0.055307580950424866 +205420,1027.100000010814,-0.05530754038070228 +205421,1027.1050000108141,-0.05530749980914409 +205422,1027.1100000108142,-0.0553074592357502 +205423,1027.1150000108144,-0.05530741866052051 +205424,1027.1200000108145,-0.05530737808345491 +205425,1027.1250000108146,-0.05530733750455331 +205426,1027.1300000108147,-0.0553072969238156 +205427,1027.1350000108148,-0.0553072563412417 +205428,1027.140000010815,-0.055307215756831486 +205429,1027.145000010815,-0.05530717517058487 +205430,1027.1500000108151,-0.05530713458250175 +205431,1027.1550000108152,-0.05530709399258201 +205432,1027.1600000108153,-0.05530705340082558 +205433,1027.1650000108154,-0.05530701280723234 +205434,1027.1700000108156,-0.05530697221180219 +205435,1027.1750000108157,-0.05530693161453503 +205436,1027.1800000108158,-0.055306891015430765 +205437,1027.1850000108159,-0.05530685041448929 +205438,1027.190000010816,-0.05530680981171051 +205439,1027.195000010816,-0.05530676920709432 +205440,1027.2000000108162,-0.05530672860064063 +205441,1027.2050000108163,-0.05530668799234933 +205442,1027.2100000108164,-0.05530664738222032 +205443,1027.2150000108165,-0.055306606770253494 +205444,1027.2200000108166,-0.055306566156448765 +205445,1027.2250000108168,-0.055306525540806034 +205446,1027.2300000108169,-0.055306484923325204 +205447,1027.235000010817,-0.05530644430400615 +205448,1027.240000010817,-0.055306403682848795 +205449,1027.2450000108172,-0.05530636305985304 +205450,1027.2500000108173,-0.05530632243501877 +205451,1027.2550000108174,-0.0553062818083459 +205452,1027.2600000108175,-0.05530624117983432 +205453,1027.2650000108176,-0.05530620054948393 +205454,1027.2700000108177,-0.05530615991729464 +205455,1027.2750000108178,-0.05530611928326634 +205456,1027.280000010818,-0.05530607864739895 +205457,1027.285000010818,-0.055306038009692346 +205458,1027.2900000108182,-0.055305997370146444 +205459,1027.2950000108183,-0.05530595672876113 +205460,1027.3000000108184,-0.055305916085536325 +205461,1027.3050000108185,-0.05530587544047192 +205462,1027.3100000108186,-0.055305834793567814 +205463,1027.3150000108187,-0.05530579414482391 +205464,1027.3200000108188,-0.05530575349424009 +205465,1027.325000010819,-0.05530571284181629 +205466,1027.330000010819,-0.05530567218755239 +205467,1027.3350000108192,-0.0553056315314483 +205468,1027.3400000108193,-0.0553055908735039 +205469,1027.3450000108194,-0.055305550213719114 +205470,1027.3500000108195,-0.05530550955209384 +205471,1027.3550000108196,-0.05530546888862797 +205472,1027.3600000108197,-0.055305428223321414 +205473,1027.3650000108198,-0.05530538755617407 +205474,1027.37000001082,-0.05530534688718584 +205475,1027.37500001082,-0.05530530621635661 +205476,1027.3800000108201,-0.055305265543686304 +205477,1027.3850000108202,-0.05530522486917481 +205478,1027.3900000108204,-0.05530518419282203 +205479,1027.3950000108205,-0.05530514351462786 +205480,1027.4000000108206,-0.055305102834592224 +205481,1027.4050000108207,-0.055305062152714995 +205482,1027.4100000108208,-0.0553050214689961 +205483,1027.415000010821,-0.055304980783435424 +205484,1027.420000010821,-0.05530494009603288 +205485,1027.4250000108211,-0.05530489940678835 +205486,1027.4300000108212,-0.05530485871570175 +205487,1027.4350000108213,-0.05530481802277299 +205488,1027.4400000108214,-0.055304777328001965 +205489,1027.4450000108216,-0.05530473663138857 +205490,1027.4500000108217,-0.055304695932932704 +205491,1027.4550000108218,-0.055304655232634274 +205492,1027.460000010822,-0.055304614530493186 +205493,1027.465000010822,-0.05530457382650934 +205494,1027.470000010822,-0.055304533120682633 +205495,1027.4750000108222,-0.05530449241301298 +205496,1027.4800000108223,-0.05530445170350026 +205497,1027.4850000108224,-0.0553044109921444 +205498,1027.4900000108225,-0.05530437027894529 +205499,1027.4950000108227,-0.055304329563902827 +205500,1027.5000000108228,-0.05530428884701692 +205501,1027.5050000108229,-0.05530424812828747 +205502,1027.510000010823,-0.05530420740771437 +205503,1027.515000010823,-0.05530416668529755 +205504,1027.5200000108232,-0.05530412596103688 +205505,1027.5250000108233,-0.05530408523493228 +205506,1027.5300000108234,-0.055304044506983646 +205507,1027.5350000108235,-0.05530400377719087 +205508,1027.5400000108236,-0.055303963045553885 +205509,1027.5450000108237,-0.055303922312072575 +205510,1027.5500000108239,-0.05530388157674683 +205511,1027.555000010824,-0.05530384083957657 +205512,1027.560000010824,-0.05530380010056169 +205513,1027.5650000108242,-0.0553037593597021 +205514,1027.5700000108243,-0.0553037186169977 +205515,1027.5750000108244,-0.055303677872448394 +205516,1027.5800000108245,-0.05530363712605407 +205517,1027.5850000108246,-0.055303596377814644 +205518,1027.5900000108247,-0.055303555627730004 +205519,1027.5950000108248,-0.055303514875800076 +205520,1027.600000010825,-0.05530347412202476 +205521,1027.605000010825,-0.05530343336640394 +205522,1027.6100000108252,-0.05530339260893753 +205523,1027.6150000108253,-0.05530335184962543 +205524,1027.6200000108254,-0.055303311088467554 +205525,1027.6250000108255,-0.05530327032546379 +205526,1027.6300000108256,-0.055303229560614044 +205527,1027.6350000108257,-0.055303188793918226 +205528,1027.6400000108258,-0.055303148025376246 +205529,1027.645000010826,-0.05530310725498799 +205530,1027.650000010826,-0.05530306648275337 +205531,1027.6550000108261,-0.05530302570867228 +205532,1027.6600000108263,-0.05530298493274464 +205533,1027.6650000108264,-0.055302944154970335 +205534,1027.6700000108265,-0.05530290337534927 +205535,1027.6750000108266,-0.055302862593881376 +205536,1027.6800000108267,-0.055302821810566526 +205537,1027.6850000108268,-0.055302781025404625 +205538,1027.690000010827,-0.0553027402383956 +205539,1027.695000010827,-0.05530269944953933 +205540,1027.7000000108271,-0.05530265865883573 +205541,1027.7050000108272,-0.055302617866284695 +205542,1027.7100000108273,-0.055302577071886135 +205543,1027.7150000108275,-0.055302536275639955 +205544,1027.7200000108276,-0.05530249547754606 +205545,1027.7250000108277,-0.05530245467760435 +205546,1027.7300000108278,-0.05530241387581472 +205547,1027.735000010828,-0.05530237307217709 +205548,1027.740000010828,-0.055302332266691366 +205549,1027.745000010828,-0.05530229145935744 +205550,1027.7500000108282,-0.05530225065017521 +205551,1027.7550000108283,-0.0553022098391446 +205552,1027.7600000108284,-0.05530216902626549 +205553,1027.7650000108285,-0.05530212821153779 +205554,1027.7700000108287,-0.05530208739496142 +205555,1027.7750000108288,-0.05530204657653627 +205556,1027.7800000108289,-0.05530200575626225 +205557,1027.785000010829,-0.05530196493413927 +205558,1027.790000010829,-0.055301924110167225 +205559,1027.7950000108292,-0.05530188328434602 +205560,1027.8000000108293,-0.05530184245667556 +205561,1027.8050000108294,-0.05530180162715574 +205562,1027.8100000108295,-0.05530176079578648 +205563,1027.8150000108296,-0.05530171996256768 +205564,1027.8200000108297,-0.055301679127499226 +205565,1027.8250000108299,-0.05530163829058105 +205566,1027.83000001083,-0.05530159745181305 +205567,1027.83500001083,-0.055301556611195124 +205568,1027.8400000108302,-0.055301515768727175 +205569,1027.8450000108303,-0.05530147492440911 +205570,1027.8500000108304,-0.055301434078240834 +205571,1027.8550000108305,-0.05530139323022225 +205572,1027.8600000108306,-0.05530135238035327 +205573,1027.8650000108307,-0.05530131152863379 +205574,1027.8700000108308,-0.05530127067506372 +205575,1027.875000010831,-0.05530122981964296 +205576,1027.880000010831,-0.05530118896237141 +205577,1027.8850000108312,-0.055301148103248994 +205578,1027.8900000108313,-0.05530110724227559 +205579,1027.8950000108314,-0.05530106637945113 +205580,1027.9000000108315,-0.055301025514775504 +205581,1027.9050000108316,-0.05530098464824862 +205582,1027.9100000108317,-0.05530094377987038 +205583,1027.9150000108318,-0.05530090290964068 +205584,1027.920000010832,-0.055300862037559455 +205585,1027.925000010832,-0.05530082116362658 +205586,1027.9300000108321,-0.05530078028784197 +205587,1027.9350000108323,-0.05530073941020554 +205588,1027.9400000108324,-0.05530069853071719 +205589,1027.9450000108325,-0.055300657649376805 +205590,1027.9500000108326,-0.05530061676618432 +205591,1027.9550000108327,-0.055300575881139624 +205592,1027.9600000108328,-0.055300534994242624 +205593,1027.965000010833,-0.05530049410549323 +205594,1027.970000010833,-0.05530045321489135 +205595,1027.9750000108331,-0.05530041232243687 +205596,1027.9800000108332,-0.05530037142812972 +205597,1027.9850000108333,-0.05530033053196979 +205598,1027.9900000108335,-0.055300289633956994 +205599,1027.9950000108336,-0.05530024873409123 +205600,1028.0000000108337,-0.05530020783237241 +205601,1028.0050000108338,-0.05530016692880044 +205602,1028.010000010834,-0.055300126023375216 +205603,1028.015000010834,-0.05530008511609665 +205604,1028.020000010834,-0.05530004420696466 +205605,1028.0250000108342,-0.055300003295979124 +205606,1028.0300000108343,-0.05529996238313997 +205607,1028.0350000108344,-0.055299921468447095 +205608,1028.0400000108345,-0.05529988055190042 +205609,1028.0450000108347,-0.05529983963349983 +205610,1028.0500000108348,-0.05529979871324524 +205611,1028.0550000108349,-0.05529975779113656 +205612,1028.060000010835,-0.055299716867173686 +205613,1028.065000010835,-0.05529967594135653 +205614,1028.0700000108352,-0.05529963501368499 +205615,1028.0750000108353,-0.055299594084158986 +205616,1028.0800000108354,-0.055299553152778416 +205617,1028.0850000108355,-0.05529951221954319 +205618,1028.0900000108356,-0.05529947128445321 +205619,1028.0950000108357,-0.05529943034750838 +205620,1028.1000000108359,-0.05529938940870862 +205621,1028.105000010836,-0.05529934846805382 +205622,1028.110000010836,-0.0552993075255439 +205623,1028.1150000108362,-0.05529926658117876 +205624,1028.1200000108363,-0.05529922563495831 +205625,1028.1250000108364,-0.05529918468688244 +205626,1028.1300000108365,-0.055299143736951065 +205627,1028.1350000108366,-0.05529910278516411 +205628,1028.1400000108367,-0.05529906183152146 +205629,1028.1450000108368,-0.05529902087602302 +205630,1028.150000010837,-0.05529897991866872 +205631,1028.155000010837,-0.05529893895945844 +205632,1028.1600000108372,-0.055298897998392105 +205633,1028.1650000108373,-0.05529885703546961 +205634,1028.1700000108374,-0.05529881607069088 +205635,1028.1750000108375,-0.05529877510405579 +205636,1028.1800000108376,-0.05529873413556428 +205637,1028.1850000108377,-0.05529869316521624 +205638,1028.1900000108378,-0.055298652193011576 +205639,1028.195000010838,-0.0552986112189502 +205640,1028.200000010838,-0.055298570243032016 +205641,1028.2050000108381,-0.055298529265256934 +205642,1028.2100000108383,-0.05529848828562486 +205643,1028.2150000108384,-0.055298447304135696 +205644,1028.2200000108385,-0.055298406320789355 +205645,1028.2250000108386,-0.05529836533558574 +205646,1028.2300000108387,-0.05529832434852476 +205647,1028.2350000108388,-0.055298283359606314 +205648,1028.240000010839,-0.05529824236883033 +205649,1028.245000010839,-0.055298201376196704 +205650,1028.2500000108391,-0.05529816038170533 +205651,1028.2550000108392,-0.05529811938535613 +205652,1028.2600000108393,-0.05529807838714902 +205653,1028.2650000108395,-0.055298037387083894 +205654,1028.2700000108396,-0.05529799638516066 +205655,1028.2750000108397,-0.05529795538137923 +205656,1028.2800000108398,-0.0552979143757395 +205657,1028.28500001084,-0.055297873368241386 +205658,1028.29000001084,-0.0552978323588848 +205659,1028.29500001084,-0.05529779134766965 +205660,1028.3000000108402,-0.05529775033459584 +205661,1028.3050000108403,-0.05529770931966327 +205662,1028.3100000108404,-0.055297668302871854 +205663,1028.3150000108405,-0.05529762728422151 +205664,1028.3200000108407,-0.05529758626371212 +205665,1028.3250000108408,-0.055297545241343615 +205666,1028.3300000108409,-0.0552975042171159 +205667,1028.335000010841,-0.055297463191028885 +205668,1028.340000010841,-0.05529742216308246 +205669,1028.3450000108412,-0.05529738113327655 +205670,1028.3500000108413,-0.05529734010161104 +205671,1028.3550000108414,-0.055297299068085864 +205672,1028.3600000108415,-0.05529725803270093 +205673,1028.3650000108416,-0.055297216995456124 +205674,1028.3700000108417,-0.055297175956351384 +205675,1028.3750000108419,-0.05529713491538659 +205676,1028.380000010842,-0.05529709387256166 +205677,1028.385000010842,-0.05529705282787652 +205678,1028.3900000108422,-0.055297011781331035 +205679,1028.3950000108423,-0.05529697073292516 +205680,1028.4000000108424,-0.055296929682658785 +205681,1028.4050000108425,-0.05529688863053181 +205682,1028.4100000108426,-0.055296847576544156 +205683,1028.4150000108427,-0.05529680652069571 +205684,1028.4200000108428,-0.05529676546298642 +205685,1028.425000010843,-0.05529672440341615 +205686,1028.430000010843,-0.055296683341984836 +205687,1028.4350000108432,-0.055296642278692375 +205688,1028.4400000108433,-0.05529660121353868 +205689,1028.4450000108434,-0.05529656014652366 +205690,1028.4500000108435,-0.05529651907764723 +205691,1028.4550000108436,-0.055296478006909296 +205692,1028.4600000108437,-0.05529643693430975 +205693,1028.4650000108438,-0.05529639585984852 +205694,1028.470000010844,-0.0552963547835255 +205695,1028.475000010844,-0.05529631370534061 +205696,1028.4800000108442,-0.055296272625293755 +205697,1028.4850000108443,-0.05529623154338485 +205698,1028.4900000108444,-0.0552961904596138 +205699,1028.4950000108445,-0.055296149373980516 +205700,1028.5000000108446,-0.055296108286484895 +205701,1028.5050000108447,-0.05529606719712686 +205702,1028.5100000108448,-0.05529602610590631 +205703,1028.515000010845,-0.05529598501282315 +205704,1028.520000010845,-0.05529594391787731 +205705,1028.5250000108451,-0.05529590282106868 +205706,1028.5300000108452,-0.05529586172239718 +205707,1028.5350000108454,-0.0552958206218627 +205708,1028.5400000108455,-0.05529577951946519 +205709,1028.5450000108456,-0.055295738415204514 +205710,1028.5500000108457,-0.05529569730908059 +205711,1028.5550000108458,-0.05529565620109335 +205712,1028.560000010846,-0.05529561509124269 +205713,1028.565000010846,-0.05529557397952853 +205714,1028.5700000108461,-0.055295532865950764 +205715,1028.5750000108462,-0.0552954917505093 +205716,1028.5800000108463,-0.05529545063320407 +205717,1028.5850000108464,-0.05529540951403496 +205718,1028.5900000108466,-0.05529536839300189 +205719,1028.5950000108467,-0.05529532727010476 +205720,1028.6000000108468,-0.0552952861453435 +205721,1028.6050000108469,-0.05529524501871799 +205722,1028.610000010847,-0.05529520389022817 +205723,1028.615000010847,-0.055295162759873936 +205724,1028.6200000108472,-0.055295121627655194 +205725,1028.6250000108473,-0.05529508049357186 +205726,1028.6300000108474,-0.05529503935762384 +205727,1028.6350000108475,-0.055294998219811035 +205728,1028.6400000108476,-0.05529495708013337 +205729,1028.6450000108478,-0.05529491593859076 +205730,1028.6500000108479,-0.05529487479518311 +205731,1028.655000010848,-0.055294833649910315 +205732,1028.660000010848,-0.0552947925027723 +205733,1028.6650000108482,-0.05529475135376896 +205734,1028.6700000108483,-0.05529471020290022 +205735,1028.6750000108484,-0.055294669050165994 +205736,1028.6800000108485,-0.05529462789556618 +205737,1028.6850000108486,-0.05529458673910068 +205738,1028.6900000108487,-0.055294545580769426 +205739,1028.6950000108488,-0.05529450442057231 +205740,1028.700000010849,-0.05529446325850926 +205741,1028.705000010849,-0.05529442209458017 +205742,1028.7100000108492,-0.05529438092878496 +205743,1028.7150000108493,-0.05529433976112354 +205744,1028.7200000108494,-0.055294298591595806 +205745,1028.7250000108495,-0.05529425742020169 +205746,1028.7300000108496,-0.05529421624694109 +205747,1028.7350000108497,-0.05529417507181391 +205748,1028.7400000108498,-0.05529413389482008 +205749,1028.74500001085,-0.055294092715959496 +205750,1028.75000001085,-0.05529405153523207 +205751,1028.7550000108502,-0.055294010352637715 +205752,1028.7600000108503,-0.055293969168176346 +205753,1028.7650000108504,-0.055293927981847873 +205754,1028.7700000108505,-0.05529388679365219 +205755,1028.7750000108506,-0.055293845603589235 +205756,1028.7800000108507,-0.055293804411658896 +205757,1028.7850000108508,-0.0552937632178611 +205758,1028.790000010851,-0.05529372202219574 +205759,1028.795000010851,-0.055293680824662746 +205760,1028.8000000108511,-0.05529363962526202 +205761,1028.8050000108512,-0.05529359842399347 +205762,1028.8100000108514,-0.05529355722085701 +205763,1028.8150000108515,-0.05529351601585255 +205764,1028.8200000108516,-0.05529347480898001 +205765,1028.8250000108517,-0.055293433600239285 +205766,1028.8300000108518,-0.0552933923896303 +205767,1028.835000010852,-0.055293351177152956 +205768,1028.840000010852,-0.05529330996280717 +205769,1028.8450000108521,-0.05529326874659286 +205770,1028.8500000108522,-0.05529322752850992 +205771,1028.8550000108523,-0.05529318630855826 +205772,1028.8600000108524,-0.05529314508673781 +205773,1028.8650000108526,-0.055293103863048476 +205774,1028.8700000108527,-0.05529306263749017 +205775,1028.8750000108528,-0.055293021410062794 +205776,1028.8800000108529,-0.05529298018076627 +205777,1028.885000010853,-0.055292938949600495 +205778,1028.890000010853,-0.05529289771656539 +205779,1028.8950000108532,-0.05529285648166088 +205780,1028.9000000108533,-0.055292815244886856 +205781,1028.9050000108534,-0.05529277400624324 +205782,1028.9100000108535,-0.05529273276572992 +205783,1028.9150000108536,-0.05529269152334685 +205784,1028.9200000108538,-0.055292650279093906 +205785,1028.9250000108539,-0.055292609032971014 +205786,1028.930000010854,-0.05529256778497809 +205787,1028.935000010854,-0.055292526535115044 +205788,1028.9400000108542,-0.05529248528338178 +205789,1028.9450000108543,-0.055292444029778225 +205790,1028.9500000108544,-0.055292402774304264 +205791,1028.9550000108545,-0.05529236151695983 +205792,1028.9600000108546,-0.05529232025774483 +205793,1028.9650000108547,-0.05529227899665918 +205794,1028.9700000108548,-0.055292237733702794 +205795,1028.975000010855,-0.05529219646887557 +205796,1028.980000010855,-0.055292155202177444 +205797,1028.9850000108552,-0.05529211393360829 +205798,1028.9900000108553,-0.05529207266316806 +205799,1028.9950000108554,-0.05529203139085664 +205800,1029.0000000108555,-0.05529199011667395 +205801,1029.0050000108556,-0.055291948840619894 +205802,1029.0100000108557,-0.055291907562694406 +205803,1029.0150000108558,-0.055291866282897374 +205804,1029.020000010856,-0.05529182500122873 +205805,1029.025000010856,-0.05529178371768838 +205806,1029.0300000108562,-0.05529174243227623 +205807,1029.0350000108563,-0.05529170114499219 +205808,1029.0400000108564,-0.05529165985583619 +205809,1029.0450000108565,-0.05529161856480813 +205810,1029.0500000108566,-0.05529157727190793 +205811,1029.0550000108567,-0.05529153597713548 +205812,1029.0600000108568,-0.05529149468049073 +205813,1029.065000010857,-0.05529145338197357 +205814,1029.070000010857,-0.055291412081583904 +205815,1029.0750000108571,-0.055291370779321655 +205816,1029.0800000108572,-0.055291329475186744 +205817,1029.0850000108574,-0.05529128816917907 +205818,1029.0900000108575,-0.05529124686129855 +205819,1029.0950000108576,-0.055291205551545104 +205820,1029.1000000108577,-0.055291164239918644 +205821,1029.1050000108578,-0.055291122926419065 +205822,1029.110000010858,-0.055291081611046296 +205823,1029.115000010858,-0.055291040293800255 +205824,1029.1200000108581,-0.05529099897468083 +205825,1029.1250000108582,-0.05529095765368797 +205826,1029.1300000108583,-0.05529091633082156 +205827,1029.1350000108584,-0.05529087500608152 +205828,1029.1400000108586,-0.055290833679467764 +205829,1029.1450000108587,-0.055290792350980215 +205830,1029.1500000108588,-0.05529075102061877 +205831,1029.1550000108589,-0.055290709688383344 +205832,1029.160000010859,-0.05529066835427386 +205833,1029.165000010859,-0.05529062701829024 +205834,1029.1700000108592,-0.05529058568043237 +205835,1029.1750000108593,-0.05529054434070018 +205836,1029.1800000108594,-0.05529050299909358 +205837,1029.1850000108595,-0.05529046165561247 +205838,1029.1900000108596,-0.05529042031025679 +205839,1029.1950000108598,-0.055290378963026444 +205840,1029.2000000108599,-0.05529033761392134 +205841,1029.20500001086,-0.0552902962629414 +205842,1029.21000001086,-0.05529025491008652 +205843,1029.2150000108602,-0.05529021355535663 +205844,1029.2200000108603,-0.05529017219875163 +205845,1029.2250000108604,-0.05529013084027146 +205846,1029.2300000108605,-0.055290089479916 +205847,1029.2350000108606,-0.05529004811768519 +205848,1029.2400000108607,-0.055290006753578924 +205849,1029.2450000108608,-0.055289965387597124 +205850,1029.250000010861,-0.0552899240197397 +205851,1029.255000010861,-0.055289882650006575 +205852,1029.2600000108612,-0.05528984127839766 +205853,1029.2650000108613,-0.05528979990491287 +205854,1029.2700000108614,-0.05528975852955212 +205855,1029.2750000108615,-0.05528971715231531 +205856,1029.2800000108616,-0.05528967577320236 +205857,1029.2850000108617,-0.055289634392213204 +205858,1029.2900000108618,-0.05528959300934773 +205859,1029.295000010862,-0.055289551624605866 +205860,1029.300000010862,-0.05528951023798752 +205861,1029.3050000108622,-0.055289468849492596 +205862,1029.3100000108623,-0.05528942745912103 +205863,1029.3150000108624,-0.055289386066872726 +205864,1029.3200000108625,-0.05528934467274759 +205865,1029.3250000108626,-0.055289303276745555 +205866,1029.3300000108627,-0.05528926187886653 +205867,1029.3350000108628,-0.05528922047911041 +205868,1029.340000010863,-0.05528917907747713 +205869,1029.345000010863,-0.05528913767396659 +205870,1029.3500000108631,-0.05528909626857872 +205871,1029.3550000108633,-0.05528905486131342 +205872,1029.3600000108634,-0.05528901345217061 +205873,1029.3650000108635,-0.05528897204115021 +205874,1029.3700000108636,-0.05528893062825212 +205875,1029.3750000108637,-0.055288889213476265 +205876,1029.3800000108638,-0.05528884779682257 +205877,1029.385000010864,-0.05528880637829093 +205878,1029.390000010864,-0.05528876495788127 +205879,1029.3950000108641,-0.055288723535593505 +205880,1029.4000000108642,-0.055288682111427546 +205881,1029.4050000108643,-0.05528864068538331 +205882,1029.4100000108645,-0.05528859925746072 +205883,1029.4150000108646,-0.05528855782765967 +205884,1029.4200000108647,-0.0552885163959801 +205885,1029.4250000108648,-0.0552884749624219 +205886,1029.430000010865,-0.055288433526985 +205887,1029.435000010865,-0.05528839208966932 +205888,1029.440000010865,-0.05528835065047476 +205889,1029.4450000108652,-0.05528830920940123 +205890,1029.4500000108653,-0.05528826776644867 +205891,1029.4550000108654,-0.05528822632161698 +205892,1029.4600000108655,-0.05528818487490607 +205893,1029.4650000108657,-0.055288143426315856 +205894,1029.4700000108658,-0.055288101975846264 +205895,1029.4750000108659,-0.05528806052349721 +205896,1029.480000010866,-0.0552880190692686 +205897,1029.485000010866,-0.05528797761316035 +205898,1029.4900000108662,-0.05528793615517238 +205899,1029.4950000108663,-0.0552878946953046 +205900,1029.5000000108664,-0.05528785323355693 +205901,1029.5050000108665,-0.05528781176992928 +205902,1029.5100000108666,-0.05528777030442157 +205903,1029.5150000108667,-0.055287728837033714 +205904,1029.5200000108669,-0.055287687367765626 +205905,1029.525000010867,-0.05528764589661722 +205906,1029.530000010867,-0.05528760442358842 +205907,1029.5350000108672,-0.05528756294867913 +205908,1029.5400000108673,-0.05528752147188926 +205909,1029.5450000108674,-0.05528747999321875 +205910,1029.5500000108675,-0.05528743851266751 +205911,1029.5550000108676,-0.05528739703023544 +205912,1029.5600000108677,-0.05528735554592247 +205913,1029.5650000108678,-0.055287314059728504 +205914,1029.570000010868,-0.05528727257165346 +205915,1029.575000010868,-0.05528723108169726 +205916,1029.5800000108682,-0.05528718958985981 +205917,1029.5850000108683,-0.05528714809614104 +205918,1029.5900000108684,-0.055287106600540856 +205919,1029.5950000108685,-0.055287065103059176 +205920,1029.6000000108686,-0.05528702360369592 +205921,1029.6050000108687,-0.05528698210245099 +205922,1029.6100000108688,-0.055286940599324326 +205923,1029.615000010869,-0.055286899094315826 +205924,1029.620000010869,-0.0552868575874254 +205925,1029.6250000108691,-0.055286816078652976 +205926,1029.6300000108693,-0.05528677456799848 +205927,1029.6350000108694,-0.05528673305546181 +205928,1029.6400000108695,-0.05528669154104288 +205929,1029.6450000108696,-0.05528665002474163 +205930,1029.6500000108697,-0.055286608506557956 +205931,1029.6550000108698,-0.05528656698649178 +205932,1029.66000001087,-0.055286525464543004 +205933,1029.66500001087,-0.05528648394071156 +205934,1029.6700000108701,-0.05528644241499737 +205935,1029.6750000108702,-0.05528640088740033 +205936,1029.6800000108703,-0.05528635935792039 +205937,1029.6850000108705,-0.055286317826557435 +205938,1029.6900000108706,-0.05528627629331139 +205939,1029.6950000108707,-0.05528623475818217 +205940,1029.7000000108708,-0.05528619322116971 +205941,1029.705000010871,-0.055286151682273896 +205942,1029.710000010871,-0.05528611014149466 +205943,1029.715000010871,-0.055286068598831936 +205944,1029.7200000108712,-0.05528602705428561 +205945,1029.7250000108713,-0.055285985507855614 +205946,1029.7300000108714,-0.05528594395954185 +205947,1029.7350000108715,-0.05528590240934426 +205948,1029.7400000108717,-0.055285860857262746 +205949,1029.7450000108718,-0.055285819303297234 +205950,1029.7500000108719,-0.055285777747447626 +205951,1029.755000010872,-0.055285736189713844 +205952,1029.760000010872,-0.055285694630095805 +205953,1029.7650000108722,-0.055285653068593434 +205954,1029.7700000108723,-0.05528561150520663 +205955,1029.7750000108724,-0.05528556993993533 +205956,1029.7800000108725,-0.05528552837277944 +205957,1029.7850000108726,-0.055285486803738876 +205958,1029.7900000108727,-0.055285445232813576 +205959,1029.7950000108729,-0.055285403660003424 +205960,1029.800000010873,-0.05528536208530836 +205961,1029.805000010873,-0.05528532050872831 +205962,1029.8100000108732,-0.055285278930263144 +205963,1029.8150000108733,-0.055285237349912836 +205964,1029.8200000108734,-0.055285195767677264 +205965,1029.8250000108735,-0.05528515418355636 +205966,1029.8300000108736,-0.05528511259755004 +205967,1029.8350000108737,-0.055285071009658224 +205968,1029.8400000108738,-0.05528502941988083 +205969,1029.845000010874,-0.055284987828217766 +205970,1029.850000010874,-0.055284946234668966 +205971,1029.8550000108742,-0.05528490463923433 +205972,1029.8600000108743,-0.05528486304191378 +205973,1029.8650000108744,-0.055284821442707244 +205974,1029.8700000108745,-0.055284779841614624 +205975,1029.8750000108746,-0.055284738238635854 +205976,1029.8800000108747,-0.055284696633770836 +205977,1029.8850000108748,-0.0552846550270195 +205978,1029.890000010875,-0.055284613418381756 +205979,1029.895000010875,-0.05528457180785752 +205980,1029.9000000108751,-0.05528453019544672 +205981,1029.9050000108753,-0.05528448858114926 +205982,1029.9100000108754,-0.055284446964965074 +205983,1029.9150000108755,-0.055284405346894064 +205984,1029.9200000108756,-0.05528436372693615 +205985,1029.9250000108757,-0.055284322105091266 +205986,1029.9300000108758,-0.05528428048135932 +205987,1029.935000010876,-0.055284238855740214 +205988,1029.940000010876,-0.0552841972282339 +205989,1029.9450000108761,-0.05528415559884026 +205990,1029.9500000108762,-0.05528411396755924 +205991,1029.9550000108763,-0.05528407233439073 +205992,1029.9600000108765,-0.055284030699334664 +205993,1029.9650000108766,-0.05528398906239097 +205994,1029.9700000108767,-0.055283947423559555 +205995,1029.9750000108768,-0.055283905782840335 +205996,1029.980000010877,-0.05528386414023324 +205997,1029.985000010877,-0.055283822495738176 +205998,1029.990000010877,-0.05528378084935507 +205999,1029.9950000108772,-0.055283739201083835 +206000,1030.0000000108773,-0.05528369755092439 +206001,1030.0050000108774,-0.05528365589887665 +206002,1030.0100000108775,-0.05528361424494054 +206003,1030.0150000108777,-0.05528357258911596 +206004,1030.0200000108778,-0.055283530931402855 +206005,1030.0250000108779,-0.05528348927180113 +206006,1030.030000010878,-0.055283447610310704 +206007,1030.035000010878,-0.0552834059469315 +206008,1030.0400000108782,-0.05528336428166342 +206009,1030.0450000108783,-0.05528332261450642 +206010,1030.0500000108784,-0.05528328094546038 +206011,1030.0550000108785,-0.055283239274525234 +206012,1030.0600000108786,-0.05528319760170089 +206013,1030.0650000108787,-0.05528315592698729 +206014,1030.0700000108789,-0.05528311425038433 +206015,1030.075000010879,-0.05528307257189195 +206016,1030.080000010879,-0.05528303089151005 +206017,1030.0850000108792,-0.055282989209238555 +206018,1030.0900000108793,-0.055282947525077376 +206019,1030.0950000108794,-0.05528290583902645 +206020,1030.1000000108795,-0.055282864151085694 +206021,1030.1050000108796,-0.05528282246125501 +206022,1030.1100000108797,-0.05528278076953433 +206023,1030.1150000108798,-0.055282739075923557 +206024,1030.12000001088,-0.05528269738042264 +206025,1030.12500001088,-0.055282655683031465 +206026,1030.1300000108802,-0.05528261398374997 +206027,1030.1350000108803,-0.05528257228257806 +206028,1030.1400000108804,-0.05528253057951567 +206029,1030.1450000108805,-0.05528248887456272 +206030,1030.1500000108806,-0.055282447167719115 +206031,1030.1550000108807,-0.05528240545898479 +206032,1030.1600000108808,-0.055282363748359646 +206033,1030.165000010881,-0.05528232203584361 +206034,1030.170000010881,-0.0552822803214366 +206035,1030.1750000108811,-0.05528223860513855 +206036,1030.1800000108813,-0.05528219688694937 +206037,1030.1850000108814,-0.05528215516686896 +206038,1030.1900000108815,-0.055282113444897266 +206039,1030.1950000108816,-0.0552820717210342 +206040,1030.2000000108817,-0.055282029995279675 +206041,1030.2050000108818,-0.05528198826763362 +206042,1030.210000010882,-0.055281946538095955 +206043,1030.215000010882,-0.05528190480666659 +206044,1030.2200000108821,-0.05528186307334545 +206045,1030.2250000108822,-0.05528182133813245 +206046,1030.2300000108823,-0.05528177960102751 +206047,1030.2350000108825,-0.055281737862030556 +206048,1030.2400000108826,-0.0552816961211415 +206049,1030.2450000108827,-0.05528165437836026 +206050,1030.2500000108828,-0.055281612633686764 +206051,1030.255000010883,-0.055281570887120934 +206052,1030.260000010883,-0.055281529138662695 +206053,1030.265000010883,-0.05528148738831195 +206054,1030.2700000108832,-0.05528144563606863 +206055,1030.2750000108833,-0.05528140388193263 +206056,1030.2800000108834,-0.05528136212590391 +206057,1030.2850000108836,-0.05528132036798236 +206058,1030.2900000108837,-0.05528127860816792 +206059,1030.2950000108838,-0.0552812368464605 +206060,1030.3000000108839,-0.05528119508286002 +206061,1030.305000010884,-0.055281153317366404 +206062,1030.310000010884,-0.055281111549979556 +206063,1030.3150000108842,-0.05528106978069941 +206064,1030.3200000108843,-0.0552810280095259 +206065,1030.3250000108844,-0.05528098623645892 +206066,1030.3300000108845,-0.055280944461498394 +206067,1030.3350000108846,-0.055280902684644265 +206068,1030.3400000108848,-0.055280860905896435 +206069,1030.3450000108849,-0.05528081912525482 +206070,1030.350000010885,-0.05528077734271935 +206071,1030.355000010885,-0.055280735558289947 +206072,1030.3600000108852,-0.055280693771966524 +206073,1030.3650000108853,-0.05528065198374901 +206074,1030.3700000108854,-0.055280610193637315 +206075,1030.3750000108855,-0.05528056840163137 +206076,1030.3800000108856,-0.05528052660773108 +206077,1030.3850000108857,-0.05528048481193638 +206078,1030.3900000108858,-0.055280443014247185 +206079,1030.395000010886,-0.05528040121466341 +206080,1030.400000010886,-0.055280359413184994 +206081,1030.4050000108862,-0.05528031760981185 +206082,1030.4100000108863,-0.05528027580454388 +206083,1030.4150000108864,-0.055280233997381016 +206084,1030.4200000108865,-0.055280192188323196 +206085,1030.4250000108866,-0.05528015037737032 +206086,1030.4300000108867,-0.055280108564522326 +206087,1030.4350000108868,-0.05528006674977911 +206088,1030.440000010887,-0.05528002493314061 +206089,1030.445000010887,-0.05527998311460675 +206090,1030.4500000108872,-0.05527994129417743 +206091,1030.4550000108873,-0.055279899471852606 +206092,1030.4600000108874,-0.05527985764763217 +206093,1030.4650000108875,-0.05527981582151605 +206094,1030.4700000108876,-0.055279773993504165 +206095,1030.4750000108877,-0.055279732163596454 +206096,1030.4800000108878,-0.05527969033179281 +206097,1030.485000010888,-0.055279648498093165 +206098,1030.490000010888,-0.05527960666249746 +206099,1030.4950000108881,-0.05527956482500558 +206100,1030.5000000108882,-0.055279522985617474 +206101,1030.5050000108884,-0.055279481144333065 +206102,1030.5100000108885,-0.055279439301152256 +206103,1030.5150000108886,-0.05527939745607496 +206104,1030.5200000108887,-0.05527935560910113 +206105,1030.5250000108888,-0.05527931376023067 +206106,1030.530000010889,-0.05527927190946349 +206107,1030.535000010889,-0.055279230056799536 +206108,1030.5400000108891,-0.05527918820223872 +206109,1030.5450000108892,-0.05527914634578096 +206110,1030.5500000108893,-0.05527910448742617 +206111,1030.5550000108894,-0.05527906262717428 +206112,1030.5600000108896,-0.05527902076502522 +206113,1030.5650000108897,-0.0552789789009789 +206114,1030.5700000108898,-0.055278937035035246 +206115,1030.5750000108899,-0.05527889516719418 +206116,1030.58000001089,-0.05527885329745561 +206117,1030.58500001089,-0.05527881142581949 +206118,1030.5900000108902,-0.055278769552285695 +206119,1030.5950000108903,-0.05527872767685419 +206120,1030.6000000108904,-0.05527868579952488 +206121,1030.6050000108905,-0.05527864392029768 +206122,1030.6100000108906,-0.05527860203917253 +206123,1030.6150000108908,-0.05527856015614933 +206124,1030.6200000108909,-0.05527851827122801 +206125,1030.625000010891,-0.05527847638440849 +206126,1030.630000010891,-0.055278434495690705 +206127,1030.6350000108912,-0.055278392605074556 +206128,1030.6400000108913,-0.05527835071255999 +206129,1030.6450000108914,-0.055278308818146896 +206130,1030.6500000108915,-0.055278266921835226 +206131,1030.6550000108916,-0.0552782250236249 +206132,1030.6600000108917,-0.05527818312351582 +206133,1030.6650000108918,-0.055278141221507926 +206134,1030.670000010892,-0.05527809931760113 +206135,1030.675000010892,-0.05527805741179536 +206136,1030.6800000108922,-0.05527801550409053 +206137,1030.6850000108923,-0.05527797359448657 +206138,1030.6900000108924,-0.055277931682983394 +206139,1030.6950000108925,-0.05527788976958094 +206140,1030.7000000108926,-0.05527784785427912 +206141,1030.7050000108927,-0.05527780593707786 +206142,1030.7100000108928,-0.05527776401797708 +206143,1030.715000010893,-0.05527772209697669 +206144,1030.720000010893,-0.05527768017407664 +206145,1030.7250000108932,-0.05527763824927682 +206146,1030.7300000108933,-0.055277596322577185 +206147,1030.7350000108934,-0.05527755439397763 +206148,1030.7400000108935,-0.05527751246347809 +206149,1030.7450000108936,-0.055277470531078496 +206150,1030.7500000108937,-0.05527742859677875 +206151,1030.7550000108938,-0.055277386660578784 +206152,1030.760000010894,-0.055277344722478534 +206153,1030.765000010894,-0.0552773027824779 +206154,1030.7700000108941,-0.05527726084057683 +206155,1030.7750000108942,-0.055277218896775226 +206156,1030.7800000108944,-0.055277176951073016 +206157,1030.7850000108945,-0.055277135003470125 +206158,1030.7900000108946,-0.05527709305396647 +206159,1030.7950000108947,-0.05527705110256199 +206160,1030.8000000108948,-0.05527700914925659 +206161,1030.805000010895,-0.05527696719405019 +206162,1030.810000010895,-0.05527692523694272 +206163,1030.8150000108951,-0.055276883277934105 +206164,1030.8200000108952,-0.05527684131702428 +206165,1030.8250000108953,-0.05527679935421315 +206166,1030.8300000108954,-0.05527675738950064 +206167,1030.8350000108956,-0.05527671542288668 +206168,1030.8400000108957,-0.05527667345437119 +206169,1030.8450000108958,-0.05527663148395409 +206170,1030.8500000108959,-0.05527658951163531 +206171,1030.855000010896,-0.055276547537414775 +206172,1030.860000010896,-0.0552765055612924 +206173,1030.8650000108962,-0.05527646358326811 +206174,1030.8700000108963,-0.055276421603341834 +206175,1030.8750000108964,-0.05527637962151349 +206176,1030.8800000108965,-0.05527633763778299 +206177,1030.8850000108966,-0.05527629565215027 +206178,1030.8900000108968,-0.055276253664615256 +206179,1030.8950000108969,-0.055276211675177864 +206180,1030.900000010897,-0.05527616968383802 +206181,1030.905000010897,-0.05527612769059566 +206182,1030.9100000108972,-0.05527608569545069 +206183,1030.9150000108973,-0.055276043698403034 +206184,1030.9200000108974,-0.05527600169945262 +206185,1030.9250000108975,-0.05527595969859938 +206186,1030.9300000108976,-0.05527591769584322 +206187,1030.9350000108977,-0.05527587569118407 +206188,1030.9400000108978,-0.05527583368462186 +206189,1030.945000010898,-0.05527579167615652 +206190,1030.950000010898,-0.05527574966578796 +206191,1030.9550000108982,-0.05527570765351611 +206192,1030.9600000108983,-0.05527566563934089 +206193,1030.9650000108984,-0.05527562362326222 +206194,1030.9700000108985,-0.055275581605280025 +206195,1030.9750000108986,-0.055275539585394246 +206196,1030.9800000108987,-0.05527549756360479 +206197,1030.9850000108988,-0.055275455539911575 +206198,1030.990000010899,-0.05527541351431454 +206199,1030.995000010899,-0.0552753714868136 +206200,1031.0000000108992,-0.05527532945740869 +206201,1031.0050000108993,-0.055275287426099724 +206202,1031.0100000108994,-0.05527524539288662 +206203,1031.0150000108995,-0.055275203357769316 +206204,1031.0200000108996,-0.05527516132074773 +206205,1031.0250000108997,-0.055275119281821786 +206206,1031.0300000108998,-0.055275077240991406 +206207,1031.0350000109,-0.055275035198256516 +206208,1031.0400000109,-0.05527499315361705 +206209,1031.0450000109001,-0.05527495110707291 +206210,1031.0500000109002,-0.05527490905862403 +206211,1031.0550000109004,-0.05527486700827035 +206212,1031.0600000109005,-0.05527482495601177 +206213,1031.0650000109006,-0.05527478290184823 +206214,1031.0700000109007,-0.05527474084577965 +206215,1031.0750000109008,-0.05527469878780595 +206216,1031.080000010901,-0.055274656727927064 +206217,1031.085000010901,-0.05527461466614291 +206218,1031.0900000109011,-0.05527457260245342 +206219,1031.0950000109012,-0.055274530536858504 +206220,1031.1000000109013,-0.05527448846935809 +206221,1031.1050000109014,-0.05527444639995211 +206222,1031.1100000109016,-0.05527440432864049 +206223,1031.1150000109017,-0.05527436225542314 +206224,1031.1200000109018,-0.05527432018030001 +206225,1031.1250000109019,-0.055274278103271006 +206226,1031.130000010902,-0.05527423602433605 +206227,1031.135000010902,-0.055274193943495066 +206228,1031.1400000109022,-0.055274151860747994 +206229,1031.1450000109023,-0.055274109776094746 +206230,1031.1500000109024,-0.055274067689535245 +206231,1031.1550000109025,-0.05527402560106943 +206232,1031.1600000109026,-0.055273983510697206 +206233,1031.1650000109028,-0.055273941418418515 +206234,1031.1700000109029,-0.05527389932423329 +206235,1031.175000010903,-0.055273857228141425 +206236,1031.180000010903,-0.055273815130142866 +206237,1031.1850000109032,-0.05527377303023754 +206238,1031.1900000109033,-0.05527373092842535 +206239,1031.1950000109034,-0.05527368882470624 +206240,1031.2000000109035,-0.05527364671908013 +206241,1031.2050000109036,-0.055273604611546956 +206242,1031.2100000109037,-0.05527356250210663 +206243,1031.2150000109039,-0.05527352039075908 +206244,1031.220000010904,-0.05527347827750423 +206245,1031.225000010904,-0.055273436162341996 +206246,1031.2300000109042,-0.055273394045272324 +206247,1031.2350000109043,-0.05527335192629512 +206248,1031.2400000109044,-0.05527330980541032 +206249,1031.2450000109045,-0.05527326768261786 +206250,1031.2500000109046,-0.055273225557917645 +206251,1031.2550000109047,-0.0552731834313096 +206252,1031.2600000109048,-0.05527314130279368 +206253,1031.265000010905,-0.05527309917236977 +206254,1031.270000010905,-0.055273057040037814 +206255,1031.2750000109052,-0.05527301490579774 +206256,1031.2800000109053,-0.05527297276964947 +206257,1031.2850000109054,-0.05527293063159293 +206258,1031.2900000109055,-0.055272888491628036 +206259,1031.2950000109056,-0.05527284634975473 +206260,1031.3000000109057,-0.055272804205972935 +206261,1031.3050000109058,-0.055272762060282574 +206262,1031.310000010906,-0.05527271991268357 +206263,1031.315000010906,-0.05527267776317585 +206264,1031.3200000109061,-0.055272635611759345 +206265,1031.3250000109063,-0.05527259345843396 +206266,1031.3300000109064,-0.055272551303199635 +206267,1031.3350000109065,-0.055272509146056296 +206268,1031.3400000109066,-0.05527246698700387 +206269,1031.3450000109067,-0.055272424826042284 +206270,1031.3500000109068,-0.05527238266317146 +206271,1031.355000010907,-0.05527234049839133 +206272,1031.360000010907,-0.05527229833170181 +206273,1031.3650000109071,-0.05527225616310283 +206274,1031.3700000109072,-0.05527221399259432 +206275,1031.3750000109073,-0.0552721718201762 +206276,1031.3800000109075,-0.0552721296458484 +206277,1031.3850000109076,-0.05527208746961084 +206278,1031.3900000109077,-0.055272045291463456 +206279,1031.3950000109078,-0.05527200311140616 +206280,1031.400000010908,-0.0552719609294389 +206281,1031.405000010908,-0.055271918745561595 +206282,1031.410000010908,-0.055271876559774155 +206283,1031.4150000109082,-0.055271834372076514 +206284,1031.4200000109083,-0.0552717921824686 +206285,1031.4250000109084,-0.055271749990950345 +206286,1031.4300000109085,-0.055271707797521656 +206287,1031.4350000109087,-0.05527166560218248 +206288,1031.4400000109088,-0.05527162340493274 +206289,1031.4450000109089,-0.05527158120577235 +206290,1031.450000010909,-0.055271539004701255 +206291,1031.455000010909,-0.05527149680171937 +206292,1031.4600000109092,-0.055271454596826614 +206293,1031.4650000109093,-0.055271412390022916 +206294,1031.4700000109094,-0.05527137018130821 +206295,1031.4750000109095,-0.05527132797068244 +206296,1031.4800000109096,-0.055271285758145494 +206297,1031.4850000109097,-0.05527124354369733 +206298,1031.4900000109099,-0.05527120132733785 +206299,1031.49500001091,-0.055271159109067 +206300,1031.50000001091,-0.05527111688888469 +206301,1031.5050000109102,-0.05527107466679087 +206302,1031.5100000109103,-0.05527103244278544 +206303,1031.5150000109104,-0.05527099021686834 +206304,1031.5200000109105,-0.0552709479890395 +206305,1031.5250000109106,-0.05527090575929884 +206306,1031.5300000109107,-0.055270863527646284 +206307,1031.5350000109108,-0.05527082129408177 +206308,1031.540000010911,-0.05527077905860522 +206309,1031.545000010911,-0.05527073682121655 +206310,1031.5500000109112,-0.05527069458191569 +206311,1031.5550000109113,-0.05527065234070258 +206312,1031.5600000109114,-0.055270610097577146 +206313,1031.5650000109115,-0.05527056785253932 +206314,1031.5700000109116,-0.055270525605589 +206315,1031.5750000109117,-0.05527048335672613 +206316,1031.5800000109118,-0.05527044110595064 +206317,1031.585000010912,-0.055270398853262466 +206318,1031.590000010912,-0.05527035659866151 +206319,1031.5950000109121,-0.055270314342147714 +206320,1031.6000000109123,-0.05527027208372101 +206321,1031.6050000109124,-0.05527022982338131 +206322,1031.6100000109125,-0.055270187561128566 +206323,1031.6150000109126,-0.05527014529696268 +206324,1031.6200000109127,-0.05527010303088359 +206325,1031.6250000109128,-0.05527006076289122 +206326,1031.630000010913,-0.055270018492985504 +206327,1031.635000010913,-0.05526997622116636 +206328,1031.6400000109131,-0.055269933947433715 +206329,1031.6450000109132,-0.05526989167178751 +206330,1031.6500000109133,-0.055269849394227646 +206331,1031.6550000109135,-0.05526980711475407 +206332,1031.6600000109136,-0.05526976483336672 +206333,1031.6650000109137,-0.05526972255006551 +206334,1031.6700000109138,-0.055269680264850365 +206335,1031.675000010914,-0.05526963797772122 +206336,1031.680000010914,-0.05526959568867798 +206337,1031.685000010914,-0.0552695533977206 +206338,1031.6900000109142,-0.055269511104849005 +206339,1031.6950000109143,-0.0552694688100631 +206340,1031.7000000109144,-0.05526942651336285 +206341,1031.7050000109145,-0.05526938421474815 +206342,1031.7100000109147,-0.05526934191421893 +206343,1031.7150000109148,-0.055269299611775125 +206344,1031.7200000109149,-0.055269257307416664 +206345,1031.725000010915,-0.05526921500114348 +206346,1031.730000010915,-0.0552691726929555 +206347,1031.7350000109152,-0.05526913038285264 +206348,1031.7400000109153,-0.055269088070834825 +206349,1031.7450000109154,-0.055269045756902 +206350,1031.7500000109155,-0.0552690034410541 +206351,1031.7550000109156,-0.05526896112329102 +206352,1031.7600000109157,-0.055268918803612704 +206353,1031.7650000109159,-0.0552688764820191 +206354,1031.770000010916,-0.055268834158510104 +206355,1031.775000010916,-0.05526879183308566 +206356,1031.7800000109162,-0.05526874950574569 +206357,1031.7850000109163,-0.05526870717649013 +206358,1031.7900000109164,-0.05526866484531889 +206359,1031.7950000109165,-0.05526862251223193 +206360,1031.8000000109166,-0.05526858017722915 +206361,1031.8050000109167,-0.0552685378403105 +206362,1031.8100000109168,-0.055268495501475896 +206363,1031.815000010917,-0.05526845316072526 +206364,1031.820000010917,-0.05526841081805853 +206365,1031.8250000109172,-0.05526836847347563 +206366,1031.8300000109173,-0.05526832612697649 +206367,1031.8350000109174,-0.05526828377856104 +206368,1031.8400000109175,-0.055268241428229205 +206369,1031.8450000109176,-0.055268199075980906 +206370,1031.8500000109177,-0.055268156721816085 +206371,1031.8550000109178,-0.055268114365734665 +206372,1031.860000010918,-0.05526807200773656 +206373,1031.865000010918,-0.05526802964782174 +206374,1031.8700000109181,-0.05526798728599009 +206375,1031.8750000109183,-0.05526794492224155 +206376,1031.8800000109184,-0.055267902556576064 +206377,1031.8850000109185,-0.05526786018899354 +206378,1031.8900000109186,-0.05526781781949393 +206379,1031.8950000109187,-0.05526777544807715 +206380,1031.9000000109188,-0.05526773307474312 +206381,1031.905000010919,-0.05526769069949178 +206382,1031.910000010919,-0.05526764832232304 +206383,1031.9150000109191,-0.05526760594323686 +206384,1031.9200000109192,-0.055267563562233134 +206385,1031.9250000109193,-0.05526752117931183 +206386,1031.9300000109195,-0.05526747879447284 +206387,1031.9350000109196,-0.05526743640771611 +206388,1031.9400000109197,-0.055267394019041564 +206389,1031.9450000109198,-0.05526735162844913 +206390,1031.95000001092,-0.055267309235938755 +206391,1031.95500001092,-0.05526726684151035 +206392,1031.96000001092,-0.05526722444516385 +206393,1031.9650000109202,-0.055267182046899184 +206394,1031.9700000109203,-0.05526713964671628 +206395,1031.9750000109204,-0.05526709724461506 +206396,1031.9800000109205,-0.05526705484059545 +206397,1031.9850000109207,-0.05526701243465739 +206398,1031.9900000109208,-0.05526697002680081 +206399,1031.9950000109209,-0.05526692761702563 +206400,1032.000000010921,-0.05526688520533179 +206401,1032.005000010921,-0.055266842791719215 +206402,1032.0100000109212,-0.05526680037618783 +206403,1032.0150000109213,-0.055266757958737575 +206404,1032.0200000109214,-0.05526671553936836 +206405,1032.0250000109215,-0.05526667311808014 +206406,1032.0300000109216,-0.055266630694872816 +206407,1032.0350000109217,-0.055266588269746335 +206408,1032.0400000109219,-0.055266545842700625 +206409,1032.045000010922,-0.05526650341373561 +206410,1032.050000010922,-0.05526646098285123 +206411,1032.0550000109222,-0.05526641855004741 +206412,1032.0600000109223,-0.05526637611532407 +206413,1032.0650000109224,-0.05526633367868114 +206414,1032.0700000109225,-0.05526629124011855 +206415,1032.0750000109226,-0.05526624879963624 +206416,1032.0800000109227,-0.05526620635723414 +206417,1032.0850000109228,-0.05526616391291216 +206418,1032.090000010923,-0.05526612146667026 +206419,1032.095000010923,-0.055266079018508336 +206420,1032.1000000109232,-0.055266036568426345 +206421,1032.1050000109233,-0.055265994116424196 +206422,1032.1100000109234,-0.05526595166250183 +206423,1032.1150000109235,-0.05526590920665919 +206424,1032.1200000109236,-0.05526586674889617 +206425,1032.1250000109237,-0.05526582428921273 +206426,1032.1300000109238,-0.055265781827608794 +206427,1032.135000010924,-0.055265739364084285 +206428,1032.140000010924,-0.05526569689863914 +206429,1032.1450000109242,-0.05526565443127328 +206430,1032.1500000109243,-0.055265611961986635 +206431,1032.1550000109244,-0.05526556949077915 +206432,1032.1600000109245,-0.05526552701765073 +206433,1032.1650000109246,-0.05526548454260133 +206434,1032.1700000109247,-0.05526544206563087 +206435,1032.1750000109248,-0.05526539958673927 +206436,1032.180000010925,-0.05526535710592647 +206437,1032.185000010925,-0.055265314623192396 +206438,1032.1900000109251,-0.055265272138536985 +206439,1032.1950000109252,-0.05526522965196017 +206440,1032.2000000109254,-0.055265187163461876 +206441,1032.2050000109255,-0.05526514467304202 +206442,1032.2100000109256,-0.05526510218070054 +206443,1032.2150000109257,-0.05526505968643737 +206444,1032.2200000109258,-0.05526501719025245 +206445,1032.225000010926,-0.0552649746921457 +206446,1032.230000010926,-0.05526493219211705 +206447,1032.2350000109261,-0.055264889690166415 +206448,1032.2400000109262,-0.05526484718629375 +206449,1032.2450000109263,-0.055264804680498984 +206450,1032.2500000109264,-0.05526476217278203 +206451,1032.2550000109266,-0.05526471966314283 +206452,1032.2600000109267,-0.05526467715158131 +206453,1032.2650000109268,-0.05526463463809741 +206454,1032.2700000109269,-0.055264592122691046 +206455,1032.275000010927,-0.05526454960536215 +206456,1032.280000010927,-0.05526450708611067 +206457,1032.2850000109272,-0.05526446456493652 +206458,1032.2900000109273,-0.055264422041839636 +206459,1032.2950000109274,-0.05526437951681994 +206460,1032.3000000109275,-0.05526433698987738 +206461,1032.3050000109276,-0.05526429446101187 +206462,1032.3100000109278,-0.05526425193022335 +206463,1032.3150000109279,-0.05526420939751175 +206464,1032.320000010928,-0.05526416686287699 +206465,1032.325000010928,-0.05526412432631902 +206466,1032.3300000109282,-0.05526408178783775 +206467,1032.3350000109283,-0.05526403924743313 +206468,1032.3400000109284,-0.055263996705105074 +206469,1032.3450000109285,-0.055263954160853515 +206470,1032.3500000109286,-0.05526391161467839 +206471,1032.3550000109287,-0.05526386906657963 +206472,1032.3600000109288,-0.055263826516557174 +206473,1032.365000010929,-0.05526378396461094 +206474,1032.370000010929,-0.05526374141074086 +206475,1032.3750000109292,-0.05526369885494687 +206476,1032.3800000109293,-0.055263656297228896 +206477,1032.3850000109294,-0.05526361373758687 +206478,1032.3900000109295,-0.05526357117602072 +206479,1032.3950000109296,-0.05526352861253038 +206480,1032.4000000109297,-0.05526348604711579 +206481,1032.4050000109298,-0.055263443479776866 +206482,1032.41000001093,-0.05526340091051356 +206483,1032.41500001093,-0.055263358339325774 +206484,1032.4200000109302,-0.05526331576621347 +206485,1032.4250000109303,-0.055263273191176555 +206486,1032.4300000109304,-0.05526323061421496 +206487,1032.4350000109305,-0.05526318803532864 +206488,1032.4400000109306,-0.055263145454517514 +206489,1032.4450000109307,-0.0552631028717815 +206490,1032.4500000109308,-0.05526306028712054 +206491,1032.455000010931,-0.05526301770053458 +206492,1032.460000010931,-0.05526297511202353 +206493,1032.4650000109311,-0.055262932521587316 +206494,1032.4700000109312,-0.05526288992922589 +206495,1032.4750000109314,-0.055262847334939184 +206496,1032.4800000109315,-0.05526280473872711 +206497,1032.4850000109316,-0.055262762140589616 +206498,1032.4900000109317,-0.05526271954052662 +206499,1032.4950000109318,-0.05526267693853806 +206500,1032.500000010932,-0.05526263433462388 +206501,1032.505000010932,-0.05526259172878399 +206502,1032.5100000109321,-0.05526254912101834 +206503,1032.5150000109322,-0.05526250651132685 +206504,1032.5200000109323,-0.055262463899709444 +206505,1032.5250000109324,-0.055262421286166076 +206506,1032.5300000109326,-0.055262378670696666 +206507,1032.5350000109327,-0.05526233605330114 +206508,1032.5400000109328,-0.05526229343397944 +206509,1032.5450000109329,-0.05526225081273148 +206510,1032.550000010933,-0.05526220818955722 +206511,1032.555000010933,-0.05526216556445657 +206512,1032.5600000109332,-0.05526212293742947 +206513,1032.5650000109333,-0.05526208030847585 +206514,1032.5700000109334,-0.055262037677595646 +206515,1032.5750000109335,-0.05526199504478878 +206516,1032.5800000109336,-0.05526195241005519 +206517,1032.5850000109338,-0.055261909773394804 +206518,1032.5900000109339,-0.055261867134807574 +206519,1032.595000010934,-0.055261824494293406 +206520,1032.600000010934,-0.05526178185185225 +206521,1032.6050000109342,-0.05526173920748403 +206522,1032.6100000109343,-0.05526169656118867 +206523,1032.6150000109344,-0.05526165391296611 +206524,1032.6200000109345,-0.05526161126281629 +206525,1032.6250000109346,-0.05526156861073912 +206526,1032.6300000109347,-0.05526152595673456 +206527,1032.6350000109348,-0.05526148330080253 +206528,1032.640000010935,-0.055261440642942944 +206529,1032.645000010935,-0.05526139798315576 +206530,1032.6500000109352,-0.05526135532144091 +206531,1032.6550000109353,-0.0552613126577983 +206532,1032.6600000109354,-0.055261269992227885 +206533,1032.6650000109355,-0.055261227324729593 +206534,1032.6700000109356,-0.05526118465530335 +206535,1032.6750000109357,-0.0552611419839491 +206536,1032.6800000109358,-0.05526109931066678 +206537,1032.685000010936,-0.0552610566354563 +206538,1032.690000010936,-0.055261013958317604 +206539,1032.6950000109362,-0.05526097127925063 +206540,1032.7000000109363,-0.05526092859825529 +206541,1032.7050000109364,-0.05526088591533154 +206542,1032.7100000109365,-0.05526084323047931 +206543,1032.7150000109366,-0.05526080054369852 +206544,1032.7200000109367,-0.05526075785498911 +206545,1032.7250000109368,-0.055260715164351014 +206546,1032.730000010937,-0.055260672471784164 +206547,1032.735000010937,-0.05526062977728849 +206548,1032.7400000109371,-0.05526058708086391 +206549,1032.7450000109372,-0.05526054438251039 +206550,1032.7500000109374,-0.05526050168222784 +206551,1032.7550000109375,-0.0552604589800162 +206552,1032.7600000109376,-0.0552604162758754 +206553,1032.7650000109377,-0.05526037356980537 +206554,1032.7700000109378,-0.05526033086180604 +206555,1032.775000010938,-0.05526028815187736 +206556,1032.780000010938,-0.05526024544001925 +206557,1032.7850000109381,-0.05526020272623164 +206558,1032.7900000109382,-0.05526016001051447 +206559,1032.7950000109383,-0.055260117292867665 +206560,1032.8000000109384,-0.055260074573291164 +206561,1032.8050000109386,-0.0552600318517849 +206562,1032.8100000109387,-0.055259989128348806 +206563,1032.8150000109388,-0.05525994640298282 +206564,1032.8200000109389,-0.05525990367568686 +206565,1032.825000010939,-0.05525986094646086 +206566,1032.830000010939,-0.055259818215304776 +206567,1032.8350000109392,-0.05525977548221852 +206568,1032.8400000109393,-0.05525973274720202 +206569,1032.8450000109394,-0.05525969001025524 +206570,1032.8500000109395,-0.05525964727137809 +206571,1032.8550000109396,-0.0552596045305705 +206572,1032.8600000109398,-0.05525956178783241 +206573,1032.8650000109399,-0.055259519043163764 +206574,1032.87000001094,-0.055259476296564476 +206575,1032.87500001094,-0.055259433548034496 +206576,1032.8800000109402,-0.05525939079757374 +206577,1032.8850000109403,-0.05525934804518215 +206578,1032.8900000109404,-0.05525930529085966 +206579,1032.8950000109405,-0.05525926253460621 +206580,1032.9000000109406,-0.05525921977642172 +206581,1032.9050000109407,-0.05525917701630613 +206582,1032.9100000109408,-0.05525913425425938 +206583,1032.915000010941,-0.055259091490281395 +206584,1032.920000010941,-0.05525904872437211 +206585,1032.9250000109412,-0.05525900595653145 +206586,1032.9300000109413,-0.05525896318675937 +206587,1032.9350000109414,-0.055258920415055784 +206588,1032.9400000109415,-0.055258877641420644 +206589,1032.9450000109416,-0.05525883486585386 +206590,1032.9500000109417,-0.05525879208835538 +206591,1032.9550000109418,-0.05525874930892513 +206592,1032.960000010942,-0.05525870652756305 +206593,1032.965000010942,-0.05525866374426907 +206594,1032.9700000109422,-0.055258620959043145 +206595,1032.9750000109423,-0.055258578171885175 +206596,1032.9800000109424,-0.05525853538279512 +206597,1032.9850000109425,-0.055258492591772894 +206598,1032.9900000109426,-0.055258449798818436 +206599,1032.9950000109427,-0.055258407003931684 +206600,1033.0000000109428,-0.05525836420711257 +206601,1033.005000010943,-0.05525832140836103 +206602,1033.010000010943,-0.055258278607677 +206603,1033.0150000109431,-0.05525823580506041 +206604,1033.0200000109432,-0.0552581930005112 +206605,1033.0250000109434,-0.0552581501940293 +206606,1033.0300000109435,-0.05525810738561464 +206607,1033.0350000109436,-0.055258064575267156 +206608,1033.0400000109437,-0.055258021762986775 +206609,1033.0450000109438,-0.05525797894877344 +206610,1033.050000010944,-0.0552579361326271 +206611,1033.055000010944,-0.05525789331454766 +206612,1033.0600000109441,-0.05525785049453506 +206613,1033.0650000109442,-0.055257807672589254 +206614,1033.0700000109443,-0.05525776484871015 +206615,1033.0750000109444,-0.055257722022897714 +206616,1033.0800000109446,-0.05525767919515185 +206617,1033.0850000109447,-0.055257636365472505 +206618,1033.0900000109448,-0.055257593533859624 +206619,1033.095000010945,-0.05525755070031312 +206620,1033.100000010945,-0.05525750786483293 +206621,1033.105000010945,-0.055257465027419 +206622,1033.1100000109452,-0.05525742218807126 +206623,1033.1150000109453,-0.05525737934678965 +206624,1033.1200000109454,-0.05525733650357408 +206625,1033.1250000109455,-0.055257293658424515 +206626,1033.1300000109457,-0.055257250811340884 +206627,1033.1350000109458,-0.055257207962323106 +206628,1033.1400000109459,-0.055257165111371125 +206629,1033.145000010946,-0.05525712225848487 +206630,1033.150000010946,-0.055257079403664276 +206631,1033.1550000109462,-0.05525703654690929 +206632,1033.1600000109463,-0.05525699368821984 +206633,1033.1650000109464,-0.05525695082759586 +206634,1033.1700000109465,-0.05525690796503727 +206635,1033.1750000109466,-0.055256865100544034 +206636,1033.1800000109467,-0.05525682223411606 +206637,1033.1850000109469,-0.05525677936575329 +206638,1033.190000010947,-0.05525673649545567 +206639,1033.195000010947,-0.05525669362322313 +206640,1033.2000000109472,-0.05525665074905559 +206641,1033.2050000109473,-0.055256607872953015 +206642,1033.2100000109474,-0.05525656499491531 +206643,1033.2150000109475,-0.05525652211494241 +206644,1033.2200000109476,-0.05525647923303427 +206645,1033.2250000109477,-0.05525643634919082 +206646,1033.2300000109478,-0.05525639346341198 +206647,1033.235000010948,-0.05525635057569771 +206648,1033.240000010948,-0.05525630768604792 +206649,1033.2450000109482,-0.05525626479446255 +206650,1033.2500000109483,-0.05525622190094156 +206651,1033.2550000109484,-0.05525617900548485 +206652,1033.2600000109485,-0.05525613610809238 +206653,1033.2650000109486,-0.055256093208764075 +206654,1033.2700000109487,-0.05525605030749986 +206655,1033.2750000109488,-0.05525600740429968 +206656,1033.280000010949,-0.05525596449916347 +206657,1033.285000010949,-0.055255921592091174 +206658,1033.2900000109491,-0.05525587868308272 +206659,1033.2950000109493,-0.05525583577213803 +206660,1033.3000000109494,-0.05525579285925706 +206661,1033.3050000109495,-0.05525574994443973 +206662,1033.3100000109496,-0.05525570702768599 +206663,1033.3150000109497,-0.05525566410899576 +206664,1033.3200000109498,-0.05525562118836898 +206665,1033.32500001095,-0.055255578265805586 +206666,1033.33000001095,-0.05525553534130552 +206667,1033.3350000109501,-0.05525549241486871 +206668,1033.3400000109502,-0.0552554494864951 +206669,1033.3450000109503,-0.05525540655618461 +206670,1033.3500000109505,-0.05525536362393719 +206671,1033.3550000109506,-0.055255320689752765 +206672,1033.3600000109507,-0.055255277753631274 +206673,1033.3650000109508,-0.055255234815572665 +206674,1033.370000010951,-0.055255191875576856 +206675,1033.375000010951,-0.055255148933643784 +206676,1033.380000010951,-0.05525510598977339 +206677,1033.3850000109512,-0.05525506304396561 +206678,1033.3900000109513,-0.05525502009622038 +206679,1033.3950000109514,-0.055254977146537626 +206680,1033.4000000109515,-0.055254934194917296 +206681,1033.4050000109517,-0.055254891241359315 +206682,1033.4100000109518,-0.055254848285863634 +206683,1033.4150000109519,-0.05525480532843017 +206684,1033.420000010952,-0.055254762369058866 +206685,1033.425000010952,-0.055254719407749675 +206686,1033.4300000109522,-0.05525467644450251 +206687,1033.4350000109523,-0.055254633479317306 +206688,1033.4400000109524,-0.055254590512194016 +206689,1033.4450000109525,-0.05525454754313256 +206690,1033.4500000109526,-0.055254504572132886 +206691,1033.4550000109527,-0.05525446159919493 +206692,1033.4600000109529,-0.05525441862431862 +206693,1033.465000010953,-0.05525437564750389 +206694,1033.470000010953,-0.05525433266875069 +206695,1033.4750000109532,-0.05525428968805895 +206696,1033.4800000109533,-0.055254246705428584 +206697,1033.4850000109534,-0.055254203720859554 +206698,1033.4900000109535,-0.055254160734351784 +206699,1033.4950000109536,-0.05525411774590522 +206700,1033.5000000109537,-0.0552540747555198 +206701,1033.5050000109538,-0.055254031763195446 +206702,1033.510000010954,-0.0552539887689321 +206703,1033.515000010954,-0.055253945772729705 +206704,1033.5200000109542,-0.055253902774588186 +206705,1033.5250000109543,-0.055253859774507474 +206706,1033.5300000109544,-0.05525381677248753 +206707,1033.5350000109545,-0.05525377376852826 +206708,1033.5400000109546,-0.055253730762629634 +206709,1033.5450000109547,-0.05525368775479156 +206710,1033.5500000109548,-0.055253644745013986 +206711,1033.555000010955,-0.055253601733296846 +206712,1033.560000010955,-0.055253558719640085 +206713,1033.5650000109551,-0.055253515704043625 +206714,1033.5700000109553,-0.05525347268650741 +206715,1033.5750000109554,-0.05525342966703137 +206716,1033.5800000109555,-0.05525338664561545 +206717,1033.5850000109556,-0.05525334362225958 +206718,1033.5900000109557,-0.0552533005969637 +206719,1033.5950000109558,-0.05525325756972774 +206720,1033.600000010956,-0.05525321454055164 +206721,1033.605000010956,-0.05525317150943535 +206722,1033.6100000109561,-0.05525312847637879 +206723,1033.6150000109562,-0.0552530854413819 +206724,1033.6200000109563,-0.055253042404444626 +206725,1033.6250000109565,-0.05525299936556689 +206726,1033.6300000109566,-0.05525295632474864 +206727,1033.6350000109567,-0.05525291328198981 +206728,1033.6400000109568,-0.05525287023729032 +206729,1033.645000010957,-0.05525282719065014 +206730,1033.650000010957,-0.055252784142069175 +206731,1033.655000010957,-0.05525274109154738 +206732,1033.6600000109572,-0.05525269803908469 +206733,1033.6650000109573,-0.05525265498468104 +206734,1033.6700000109574,-0.055252611928336366 +206735,1033.6750000109575,-0.055252568870050596 +206736,1033.6800000109577,-0.055252525809823684 +206737,1033.6850000109578,-0.05525248274765555 +206738,1033.6900000109579,-0.055252439683546144 +206739,1033.695000010958,-0.05525239661749539 +206740,1033.700000010958,-0.05525235354950324 +206741,1033.7050000109582,-0.05525231047956963 +206742,1033.7100000109583,-0.055252267407694476 +206743,1033.7150000109584,-0.055252224333877734 +206744,1033.7200000109585,-0.055252181258119336 +206745,1033.7250000109586,-0.05525213818041923 +206746,1033.7300000109587,-0.055252095100777325 +206747,1033.7350000109589,-0.05525205201919359 +206748,1033.740000010959,-0.05525200893566793 +206749,1033.745000010959,-0.05525196585020032 +206750,1033.7500000109592,-0.05525192276279067 +206751,1033.7550000109593,-0.05525187967343892 +206752,1033.7600000109594,-0.05525183658214502 +206753,1033.7650000109595,-0.055251793488908886 +206754,1033.7700000109596,-0.055251750393730474 +206755,1033.7750000109597,-0.05525170729660973 +206756,1033.7800000109598,-0.05525166419754656 +206757,1033.78500001096,-0.055251621096540915 +206758,1033.79000001096,-0.05525157799359273 +206759,1033.7950000109602,-0.05525153488870196 +206760,1033.8000000109603,-0.05525149178186852 +206761,1033.8050000109604,-0.05525144867309237 +206762,1033.8100000109605,-0.05525140556237342 +206763,1033.8150000109606,-0.055251362449711634 +206764,1033.8200000109607,-0.05525131933510693 +206765,1033.8250000109608,-0.055251276218559256 +206766,1033.830000010961,-0.05525123310006855 +206767,1033.835000010961,-0.055251189979634734 +206768,1033.8400000109611,-0.05525114685725775 +206769,1033.8450000109613,-0.055251103732937554 +206770,1033.8500000109614,-0.05525106060667408 +206771,1033.8550000109615,-0.05525101747846725 +206772,1033.8600000109616,-0.055250974348317 +206773,1033.8650000109617,-0.05525093121622328 +206774,1033.8700000109618,-0.05525088808218603 +206775,1033.875000010962,-0.05525084494620518 +206776,1033.880000010962,-0.055250801808280674 +206777,1033.8850000109621,-0.055250758668412434 +206778,1033.8900000109622,-0.055250715526600415 +206779,1033.8950000109623,-0.055250672382844555 +206780,1033.9000000109625,-0.05525062923714478 +206781,1033.9050000109626,-0.05525058608950103 +206782,1033.9100000109627,-0.055250542939913244 +206783,1033.9150000109628,-0.055250499788381376 +206784,1033.920000010963,-0.05525045663490535 +206785,1033.925000010963,-0.05525041347948509 +206786,1033.930000010963,-0.055250370322120546 +206787,1033.9350000109632,-0.05525032716281166 +206788,1033.9400000109633,-0.05525028400155837 +206789,1033.9450000109634,-0.05525024083836061 +206790,1033.9500000109635,-0.05525019767321832 +206791,1033.9550000109637,-0.05525015450613145 +206792,1033.9600000109638,-0.05525011133709992 +206793,1033.9650000109639,-0.05525006816612367 +206794,1033.970000010964,-0.05525002499320265 +206795,1033.975000010964,-0.05524998181833678 +206796,1033.9800000109642,-0.055249938641526004 +206797,1033.9850000109643,-0.05524989546277027 +206798,1033.9900000109644,-0.055249852282069516 +206799,1033.9950000109645,-0.05524980909942366 +206800,1034.0000000109646,-0.05524976591483265 +206801,1034.0050000109647,-0.05524972272829643 +206802,1034.0100000109649,-0.05524967953981495 +206803,1034.015000010965,-0.05524963634938813 +206804,1034.020000010965,-0.05524959315701591 +206805,1034.0250000109652,-0.05524954996269823 +206806,1034.0300000109653,-0.05524950676643504 +206807,1034.0350000109654,-0.05524946356822625 +206808,1034.0400000109655,-0.055249420368071823 +206809,1034.0450000109656,-0.0552493771659717 +206810,1034.0500000109657,-0.0552493339619258 +206811,1034.0550000109658,-0.05524929075593407 +206812,1034.060000010966,-0.05524924754799646 +206813,1034.065000010966,-0.05524920433811289 +206814,1034.0700000109662,-0.055249161126283315 +206815,1034.0750000109663,-0.05524911791250766 +206816,1034.0800000109664,-0.05524907469678587 +206817,1034.0850000109665,-0.055249031479117874 +206818,1034.0900000109666,-0.05524898825950363 +206819,1034.0950000109667,-0.05524894503794306 +206820,1034.1000000109668,-0.05524890181443611 +206821,1034.105000010967,-0.055248858588982715 +206822,1034.110000010967,-0.05524881536158281 +206823,1034.1150000109672,-0.055248772132236355 +206824,1034.1200000109673,-0.05524872890094326 +206825,1034.1250000109674,-0.05524868566770348 +206826,1034.1300000109675,-0.055248642432516946 +206827,1034.1350000109676,-0.05524859919538361 +206828,1034.1400000109677,-0.055248555956303395 +206829,1034.1450000109678,-0.055248512715276234 +206830,1034.150000010968,-0.055248469472302095 +206831,1034.155000010968,-0.05524842622738089 +206832,1034.1600000109681,-0.05524838298051257 +206833,1034.1650000109682,-0.05524833973169707 +206834,1034.1700000109684,-0.05524829648093433 +206835,1034.1750000109685,-0.055248253228224284 +206836,1034.1800000109686,-0.055248209973566886 +206837,1034.1850000109687,-0.05524816671696206 +206838,1034.1900000109688,-0.05524812345840975 +206839,1034.195000010969,-0.0552480801979099 +206840,1034.200000010969,-0.05524803693546244 +206841,1034.2050000109691,-0.05524799367106732 +206842,1034.2100000109692,-0.055247950404724466 +206843,1034.2150000109693,-0.05524790713643383 +206844,1034.2200000109694,-0.05524786386619533 +206845,1034.2250000109696,-0.05524782059400893 +206846,1034.2300000109697,-0.05524777731987456 +206847,1034.2350000109698,-0.05524773404379215 +206848,1034.2400000109699,-0.05524769076576165 +206849,1034.24500001097,-0.055247647485782994 +206850,1034.25000001097,-0.055247604203856125 +206851,1034.2550000109702,-0.05524756091998099 +206852,1034.2600000109703,-0.05524751763415751 +206853,1034.2650000109704,-0.05524747434638562 +206854,1034.2700000109705,-0.055247431056665276 +206855,1034.2750000109706,-0.05524738776499642 +206856,1034.2800000109708,-0.05524734447137898 +206857,1034.2850000109709,-0.05524730117581291 +206858,1034.290000010971,-0.05524725787829813 +206859,1034.295000010971,-0.05524721457883459 +206860,1034.3000000109712,-0.05524717127742223 +206861,1034.3050000109713,-0.05524712797406099 +206862,1034.3100000109714,-0.0552470846687508 +206863,1034.3150000109715,-0.05524704136149161 +206864,1034.3200000109716,-0.055246998052283364 +206865,1034.3250000109717,-0.055246954741125974 +206866,1034.3300000109718,-0.055246911428019414 +206867,1034.335000010972,-0.055246868112963615 +206868,1034.340000010972,-0.05524682479595849 +206869,1034.3450000109722,-0.05524678147700401 +206870,1034.3500000109723,-0.055246738156100095 +206871,1034.3550000109724,-0.05524669483324669 +206872,1034.3600000109725,-0.055246651508443746 +206873,1034.3650000109726,-0.055246608181691186 +206874,1034.3700000109727,-0.05524656485298897 +206875,1034.3750000109728,-0.05524652152233702 +206876,1034.380000010973,-0.055246478189735285 +206877,1034.385000010973,-0.05524643485518369 +206878,1034.3900000109732,-0.055246391518682186 +206879,1034.3950000109733,-0.05524634818023073 +206880,1034.4000000109734,-0.05524630483982922 +206881,1034.4050000109735,-0.05524626149747763 +206882,1034.4100000109736,-0.05524621815317589 +206883,1034.4150000109737,-0.05524617480692393 +206884,1034.4200000109738,-0.05524613145872171 +206885,1034.425000010974,-0.05524608810856915 +206886,1034.430000010974,-0.05524604475646622 +206887,1034.4350000109741,-0.05524600140241283 +206888,1034.4400000109742,-0.05524595804640893 +206889,1034.4450000109744,-0.055245914688454446 +206890,1034.4500000109745,-0.05524587132854934 +206891,1034.4550000109746,-0.05524582796669354 +206892,1034.4600000109747,-0.05524578460288699 +206893,1034.4650000109748,-0.05524574123712962 +206894,1034.470000010975,-0.05524569786942139 +206895,1034.475000010975,-0.05524565449976224 +206896,1034.4800000109751,-0.05524561112815209 +206897,1034.4850000109752,-0.05524556775459089 +206898,1034.4900000109753,-0.05524552437907858 +206899,1034.4950000109754,-0.05524548100161509 +206900,1034.5000000109756,-0.05524543762220038 +206901,1034.5050000109757,-0.05524539424083439 +206902,1034.5100000109758,-0.05524535085751704 +206903,1034.5150000109759,-0.055245307472248276 +206904,1034.520000010976,-0.05524526408502804 +206905,1034.525000010976,-0.05524522069585628 +206906,1034.5300000109762,-0.05524517730473293 +206907,1034.5350000109763,-0.055245133911657945 +206908,1034.5400000109764,-0.055245090516631234 +206909,1034.5450000109765,-0.055245047119652765 +206910,1034.5500000109766,-0.05524500372072247 +206911,1034.5550000109768,-0.055244960319840275 +206912,1034.5600000109769,-0.05524491691700615 +206913,1034.565000010977,-0.05524487351222001 +206914,1034.570000010977,-0.05524483010548181 +206915,1034.5750000109772,-0.05524478669679148 +206916,1034.5800000109773,-0.05524474328614898 +206917,1034.5850000109774,-0.05524469987355422 +206918,1034.5900000109775,-0.05524465645900716 +206919,1034.5950000109776,-0.05524461304250774 +206920,1034.6000000109777,-0.0552445696240559 +206921,1034.6050000109778,-0.05524452620365158 +206922,1034.610000010978,-0.05524448278129471 +206923,1034.615000010978,-0.05524443935698524 +206924,1034.6200000109782,-0.05524439593072312 +206925,1034.6250000109783,-0.05524435250250828 +206926,1034.6300000109784,-0.05524430907234066 +206927,1034.6350000109785,-0.05524426564022019 +206928,1034.6400000109786,-0.05524422220614683 +206929,1034.6450000109787,-0.055244178770120514 +206930,1034.6500000109788,-0.05524413533214118 +206931,1034.655000010979,-0.05524409189220879 +206932,1034.660000010979,-0.05524404845032325 +206933,1034.6650000109792,-0.05524400500648451 +206934,1034.6700000109793,-0.05524396156069253 +206935,1034.6750000109794,-0.05524391811294723 +206936,1034.6800000109795,-0.055243874663248566 +206937,1034.6850000109796,-0.05524383121159648 +206938,1034.6900000109797,-0.05524378775799089 +206939,1034.6950000109798,-0.055243744302431765 +206940,1034.70000001098,-0.05524370084491904 +206941,1034.70500001098,-0.05524365738545264 +206942,1034.7100000109801,-0.055243613924032514 +206943,1034.7150000109802,-0.05524357046065861 +206944,1034.7200000109804,-0.055243526995330854 +206945,1034.7250000109805,-0.0552434835280492 +206946,1034.7300000109806,-0.05524344005881359 +206947,1034.7350000109807,-0.055243396587623964 +206948,1034.7400000109808,-0.05524335311448026 +206949,1034.745000010981,-0.055243309639382406 +206950,1034.750000010981,-0.05524326616233036 +206951,1034.7550000109811,-0.055243222683324066 +206952,1034.7600000109812,-0.05524317920236345 +206953,1034.7650000109813,-0.055243135719448465 +206954,1034.7700000109814,-0.05524309223457905 +206955,1034.7750000109816,-0.05524304874775515 +206956,1034.7800000109817,-0.0552430052589767 +206957,1034.7850000109818,-0.055242961768243636 +206958,1034.7900000109819,-0.055242918275555906 +206959,1034.795000010982,-0.055242874780913456 +206960,1034.800000010982,-0.05524283128431622 +206961,1034.8050000109822,-0.05524278778576415 +206962,1034.8100000109823,-0.055242744285257175 +206963,1034.8150000109824,-0.055242700782795244 +206964,1034.8200000109825,-0.05524265727837829 +206965,1034.8250000109826,-0.05524261377200627 +206966,1034.8300000109828,-0.0552425702636791 +206967,1034.8350000109829,-0.05524252675339675 +206968,1034.840000010983,-0.055242483241159136 +206969,1034.845000010983,-0.055242439726966214 +206970,1034.8500000109832,-0.05524239621081793 +206971,1034.8550000109833,-0.05524235269271422 +206972,1034.8600000109834,-0.055242309172655026 +206973,1034.8650000109835,-0.055242265650640276 +206974,1034.8700000109836,-0.05524222212666993 +206975,1034.8750000109837,-0.05524217860074393 +206976,1034.8800000109838,-0.0552421350728622 +206977,1034.885000010984,-0.0552420915430247 +206978,1034.890000010984,-0.055242048011231365 +206979,1034.8950000109842,-0.05524200447748213 +206980,1034.9000000109843,-0.05524196094177694 +206981,1034.9050000109844,-0.05524191740411574 +206982,1034.9100000109845,-0.05524187386449848 +206983,1034.9150000109846,-0.05524183032292508 +206984,1034.9200000109847,-0.055241786779395514 +206985,1034.9250000109848,-0.055241743233909686 +206986,1034.930000010985,-0.05524169968646757 +206987,1034.935000010985,-0.055241656137069085 +206988,1034.9400000109852,-0.055241612585714195 +206989,1034.9450000109853,-0.05524156903240282 +206990,1034.9500000109854,-0.055241525477134915 +206991,1034.9550000109855,-0.055241481919910414 +206992,1034.9600000109856,-0.05524143836072926 +206993,1034.9650000109857,-0.055241394799591406 +206994,1034.9700000109858,-0.05524135123649678 +206995,1034.975000010986,-0.055241307671445326 +206996,1034.980000010986,-0.05524126410443699 +206997,1034.9850000109861,-0.05524122053547173 +206998,1034.9900000109863,-0.05524117696454946 +206999,1034.9950000109864,-0.05524113339167013 +207000,1035.0000000109865,-0.05524108981683369 +207001,1035.0050000109866,-0.05524104624004008 +207002,1035.0100000109867,-0.05524100266128924 +207003,1035.0150000109868,-0.055240959080581124 +207004,1035.020000010987,-0.055240915497915655 +207005,1035.025000010987,-0.05524087191329278 +207006,1035.0300000109871,-0.05524082832671245 +207007,1035.0350000109872,-0.055240784738174585 +207008,1035.0400000109873,-0.05524074114767915 +207009,1035.0450000109875,-0.05524069755522608 +207010,1035.0500000109876,-0.055240653960815324 +207011,1035.0550000109877,-0.05524061036444682 +207012,1035.0600000109878,-0.05524056676612051 +207013,1035.065000010988,-0.05524052316583634 +207014,1035.070000010988,-0.055240479563594236 +207015,1035.075000010988,-0.05524043595939415 +207016,1035.0800000109882,-0.05524039235323604 +207017,1035.0850000109883,-0.05524034874511982 +207018,1035.0900000109884,-0.05524030513504545 +207019,1035.0950000109885,-0.055240261523012875 +207020,1035.1000000109887,-0.05524021790902204 +207021,1035.1050000109888,-0.05524017429307287 +207022,1035.1100000109889,-0.05524013067516532 +207023,1035.115000010989,-0.05524008705529933 +207024,1035.120000010989,-0.05524004343347484 +207025,1035.1250000109892,-0.0552399998096918 +207026,1035.1300000109893,-0.05523995618395014 +207027,1035.1350000109894,-0.055239912556249805 +207028,1035.1400000109895,-0.055239868926590746 +207029,1035.1450000109896,-0.05523982529497291 +207030,1035.1500000109897,-0.055239781661396224 +207031,1035.1550000109899,-0.05523973802586065 +207032,1035.16000001099,-0.0552396943883661 +207033,1035.16500001099,-0.05523965074891255 +207034,1035.1700000109902,-0.055239607107499936 +207035,1035.1750000109903,-0.055239563464128186 +207036,1035.1800000109904,-0.055239519818797246 +207037,1035.1850000109905,-0.05523947617150707 +207038,1035.1900000109906,-0.05523943252225759 +207039,1035.1950000109907,-0.05523938887104875 +207040,1035.2000000109908,-0.0552393452178805 +207041,1035.205000010991,-0.05523930156275277 +207042,1035.210000010991,-0.05523925790566553 +207043,1035.2150000109912,-0.055239214246618686 +207044,1035.2200000109913,-0.0552391705856122 +207045,1035.2250000109914,-0.05523912692264602 +207046,1035.2300000109915,-0.05523908325772008 +207047,1035.2350000109916,-0.05523903959083432 +207048,1035.2400000109917,-0.05523899592198871 +207049,1035.2450000109918,-0.05523895225118315 +207050,1035.250000010992,-0.05523890857841761 +207051,1035.255000010992,-0.055238864903692037 +207052,1035.2600000109921,-0.05523882122700636 +207053,1035.2650000109923,-0.05523877754836052 +207054,1035.2700000109924,-0.05523873386775448 +207055,1035.2750000109925,-0.05523869018518816 +207056,1035.2800000109926,-0.055238646500661515 +207057,1035.2850000109927,-0.05523860281417448 +207058,1035.2900000109928,-0.055238559125727026 +207059,1035.295000010993,-0.05523851543531906 +207060,1035.300000010993,-0.05523847174295054 +207061,1035.3050000109931,-0.05523842804862142 +207062,1035.3100000109932,-0.055238384352331624 +207063,1035.3150000109933,-0.0552383406540811 +207064,1035.3200000109935,-0.055238296953869795 +207065,1035.3250000109936,-0.05523825325169766 +207066,1035.3300000109937,-0.05523820954756462 +207067,1035.3350000109938,-0.05523816584147065 +207068,1035.340000010994,-0.05523812213341566 +207069,1035.345000010994,-0.0552380784233996 +207070,1035.350000010994,-0.05523803471142243 +207071,1035.3550000109942,-0.055237990997484075 +207072,1035.3600000109943,-0.05523794728158448 +207073,1035.3650000109944,-0.05523790356372361 +207074,1035.3700000109945,-0.05523785984390138 +207075,1035.3750000109947,-0.05523781612211775 +207076,1035.3800000109948,-0.05523777239837266 +207077,1035.3850000109949,-0.055237728672666055 +207078,1035.390000010995,-0.05523768494499788 +207079,1035.395000010995,-0.055237641215368075 +207080,1035.4000000109952,-0.05523759748377658 +207081,1035.4050000109953,-0.055237553750223344 +207082,1035.4100000109954,-0.05523751001470831 +207083,1035.4150000109955,-0.05523746627723142 +207084,1035.4200000109956,-0.055237422537792624 +207085,1035.4250000109957,-0.05523737879639185 +207086,1035.4300000109959,-0.05523733505302906 +207087,1035.435000010996,-0.05523729130770418 +207088,1035.440000010996,-0.055237247560417174 +207089,1035.4450000109962,-0.05523720381116797 +207090,1035.4500000109963,-0.055237160059956526 +207091,1035.4550000109964,-0.05523711630678277 +207092,1035.4600000109965,-0.05523707255164665 +207093,1035.4650000109966,-0.05523702879454811 +207094,1035.4700000109967,-0.055236985035487095 +207095,1035.4750000109968,-0.05523694127446355 +207096,1035.480000010997,-0.05523689751147742 +207097,1035.485000010997,-0.055236853746528654 +207098,1035.4900000109972,-0.05523680997961718 +207099,1035.4950000109973,-0.05523676621074296 +207100,1035.5000000109974,-0.05523672243990592 +207101,1035.5050000109975,-0.05523667866710602 +207102,1035.5100000109976,-0.05523663489234319 +207103,1035.5150000109977,-0.055236591115617385 +207104,1035.5200000109978,-0.05523654733692855 +207105,1035.525000010998,-0.05523650355627662 +207106,1035.530000010998,-0.05523645977366154 +207107,1035.5350000109981,-0.05523641598908326 +207108,1035.5400000109983,-0.05523637220254172 +207109,1035.5450000109984,-0.05523632841403686 +207110,1035.5500000109985,-0.05523628462356864 +207111,1035.5550000109986,-0.055236240831136985 +207112,1035.5600000109987,-0.05523619703674186 +207113,1035.5650000109988,-0.05523615324038319 +207114,1035.570000010999,-0.05523610944206092 +207115,1035.575000010999,-0.055236065641775 +207116,1035.5800000109991,-0.055236021839525376 +207117,1035.5850000109992,-0.055235978035312 +207118,1035.5900000109993,-0.0552359342291348 +207119,1035.5950000109995,-0.05523589042099373 +207120,1035.6000000109996,-0.05523584661088873 +207121,1035.6050000109997,-0.05523580279881975 +207122,1035.6100000109998,-0.05523575898478673 +207123,1035.615000011,-0.0552357151687896 +207124,1035.620000011,-0.055235671350828325 +207125,1035.625000011,-0.055235627530902845 +207126,1035.6300000110002,-0.0552355837090131 +207127,1035.6350000110003,-0.05523553988515904 +207128,1035.6400000110004,-0.055235496059340604 +207129,1035.6450000110005,-0.05523545223155774 +207130,1035.6500000110007,-0.05523540840181039 +207131,1035.6550000110008,-0.0552353645700985 +207132,1035.6600000110009,-0.05523532073642201 +207133,1035.665000011001,-0.05523527690078087 +207134,1035.670000011001,-0.05523523306317503 +207135,1035.6750000110012,-0.055235189223604424 +207136,1035.6800000110013,-0.055235145382068994 +207137,1035.6850000110014,-0.0552351015385687 +207138,1035.6900000110015,-0.055235057693103475 +207139,1035.6950000110016,-0.05523501384567327 +207140,1035.7000000110017,-0.05523496999627801 +207141,1035.7050000110019,-0.055234926144917665 +207142,1035.710000011002,-0.05523488229159217 +207143,1035.715000011002,-0.055234838436301475 +207144,1035.7200000110022,-0.05523479457904552 +207145,1035.7250000110023,-0.055234750719824234 +207146,1035.7300000110024,-0.05523470685863758 +207147,1035.7350000110025,-0.05523466299548551 +207148,1035.7400000110026,-0.055234619130367944 +207149,1035.7450000110027,-0.05523457526328485 +207150,1035.7500000110028,-0.05523453139423616 +207151,1035.755000011003,-0.05523448752322182 +207152,1035.760000011003,-0.05523444365024177 +207153,1035.7650000110032,-0.05523439977529597 +207154,1035.7700000110033,-0.055234355898384366 +207155,1035.7750000110034,-0.05523431201950689 +207156,1035.7800000110035,-0.05523426813866348 +207157,1035.7850000110036,-0.0552342242558541 +207158,1035.7900000110037,-0.055234180371078696 +207159,1035.7950000110038,-0.055234136484337185 +207160,1035.800000011004,-0.05523409259562954 +207161,1035.805000011004,-0.0552340487049557 +207162,1035.8100000110041,-0.05523400481231561 +207163,1035.8150000110043,-0.0552339609177092 +207164,1035.8200000110044,-0.05523391702113642 +207165,1035.8250000110045,-0.055233873122597234 +207166,1035.8300000110046,-0.05523382922209157 +207167,1035.8350000110047,-0.05523378531961939 +207168,1035.8400000110048,-0.055233741415180615 +207169,1035.845000011005,-0.05523369750877521 +207170,1035.850000011005,-0.0552336536004031 +207171,1035.8550000110051,-0.05523360969006426 +207172,1035.8600000110052,-0.0552335657777586 +207173,1035.8650000110053,-0.05523352186348609 +207174,1035.8700000110055,-0.05523347794724667 +207175,1035.8750000110056,-0.05523343402904028 +207176,1035.8800000110057,-0.055233390108866874 +207177,1035.8850000110058,-0.05523334618672638 +207178,1035.890000011006,-0.055233302262618765 +207179,1035.895000011006,-0.05523325833654395 +207180,1035.9000000110061,-0.05523321440850191 +207181,1035.9050000110062,-0.05523317047849257 +207182,1035.9100000110063,-0.055233126546515875 +207183,1035.9150000110064,-0.05523308261257178 +207184,1035.9200000110066,-0.05523303867666023 +207185,1035.9250000110067,-0.05523299473878116 +207186,1035.9300000110068,-0.055232950798934526 +207187,1035.9350000110069,-0.05523290685712027 +207188,1035.940000011007,-0.055232862913338336 +207189,1035.945000011007,-0.05523281896758867 +207190,1035.9500000110072,-0.055232775019871214 +207191,1035.9550000110073,-0.05523273107018592 +207192,1035.9600000110074,-0.05523268711853273 +207193,1035.9650000110075,-0.05523264316491158 +207194,1035.9700000110076,-0.055232599209322435 +207195,1035.9750000110078,-0.055232555251765236 +207196,1035.9800000110079,-0.05523251129223992 +207197,1035.985000011008,-0.05523246733074643 +207198,1035.990000011008,-0.055232423367284726 +207199,1035.9950000110082,-0.05523237940185474 +207200,1036.0000000110083,-0.05523233543445643 +207201,1036.0050000110084,-0.05523229146508973 +207202,1036.0100000110085,-0.0552322474937546 +207203,1036.0150000110086,-0.05523220352045097 +207204,1036.0200000110087,-0.05523215954517879 +207205,1036.0250000110088,-0.055232115567938014 +207206,1036.030000011009,-0.055232071588728573 +207207,1036.035000011009,-0.05523202760755042 +207208,1036.0400000110092,-0.05523198362440351 +207209,1036.0450000110093,-0.055231939639287776 +207210,1036.0500000110094,-0.05523189565220316 +207211,1036.0550000110095,-0.05523185166314963 +207212,1036.0600000110096,-0.055231807672127105 +207213,1036.0650000110097,-0.055231763679135557 +207214,1036.0700000110098,-0.055231719684174924 +207215,1036.07500001101,-0.05523167568724513 +207216,1036.08000001101,-0.05523163168834614 +207217,1036.0850000110102,-0.055231587687477914 +207218,1036.0900000110103,-0.05523154368464037 +207219,1036.0950000110104,-0.055231499679833464 +207220,1036.1000000110105,-0.055231455673057143 +207221,1036.1050000110106,-0.05523141166431135 +207222,1036.1100000110107,-0.055231367653596056 +207223,1036.1150000110108,-0.05523132364091117 +207224,1036.120000011011,-0.05523127962625665 +207225,1036.125000011011,-0.05523123560963245 +207226,1036.1300000110111,-0.05523119159103851 +207227,1036.1350000110112,-0.055231147570474794 +207228,1036.1400000110114,-0.05523110354794122 +207229,1036.1450000110115,-0.05523105952343775 +207230,1036.1500000110116,-0.05523101549696432 +207231,1036.1550000110117,-0.05523097146852088 +207232,1036.1600000110118,-0.05523092743810739 +207233,1036.165000011012,-0.055230883405723775 +207234,1036.170000011012,-0.055230839371369994 +207235,1036.1750000110121,-0.055230795335046 +207236,1036.1800000110122,-0.05523075129675172 +207237,1036.1850000110123,-0.055230707256487106 +207238,1036.1900000110124,-0.05523066321425212 +207239,1036.1950000110126,-0.055230619170046694 +207240,1036.2000000110127,-0.05523057512387078 +207241,1036.2050000110128,-0.055230531075724315 +207242,1036.2100000110129,-0.05523048702560725 +207243,1036.215000011013,-0.05523044297351953 +207244,1036.220000011013,-0.05523039891946111 +207245,1036.2250000110132,-0.055230354863431926 +207246,1036.2300000110133,-0.05523031080543193 +207247,1036.2350000110134,-0.05523026674546107 +207248,1036.2400000110135,-0.055230222683519285 +207249,1036.2450000110136,-0.05523017861960654 +207250,1036.2500000110138,-0.05523013455372275 +207251,1036.2550000110139,-0.05523009048586789 +207252,1036.260000011014,-0.0552300464160419 +207253,1036.265000011014,-0.05523000234424471 +207254,1036.2700000110142,-0.05522995827047629 +207255,1036.2750000110143,-0.055229914194736565 +207256,1036.2800000110144,-0.0552298701170255 +207257,1036.2850000110145,-0.055229826037343034 +207258,1036.2900000110146,-0.05522978195568911 +207259,1036.2950000110147,-0.05522973787206368 +207260,1036.3000000110148,-0.05522969378646669 +207261,1036.305000011015,-0.05522964969889807 +207262,1036.310000011015,-0.055229605609357794 +207263,1036.3150000110152,-0.0552295615178458 +207264,1036.3200000110153,-0.05522951742436203 +207265,1036.3250000110154,-0.055229473328906424 +207266,1036.3300000110155,-0.055229429231478944 +207267,1036.3350000110156,-0.05522938513207953 +207268,1036.3400000110157,-0.05522934103070813 +207269,1036.3450000110158,-0.05522929692736469 +207270,1036.350000011016,-0.05522925282204915 +207271,1036.355000011016,-0.05522920871476145 +207272,1036.3600000110162,-0.05522916460550157 +207273,1036.3650000110163,-0.055229120494269424 +207274,1036.3700000110164,-0.05522907638106497 +207275,1036.3750000110165,-0.05522903226588816 +207276,1036.3800000110166,-0.05522898814873895 +207277,1036.3850000110167,-0.05522894402961727 +207278,1036.3900000110168,-0.05522889990852306 +207279,1036.395000011017,-0.05522885578545629 +207280,1036.400000011017,-0.055228811660416884 +207281,1036.4050000110171,-0.05522876753340479 +207282,1036.4100000110172,-0.055228723404419984 +207283,1036.4150000110174,-0.055228679273462394 +207284,1036.4200000110175,-0.05522863514053195 +207285,1036.4250000110176,-0.05522859100562863 +207286,1036.4300000110177,-0.05522854686875236 +207287,1036.4350000110178,-0.0552285027299031 +207288,1036.440000011018,-0.055228458589080785 +207289,1036.445000011018,-0.05522841444628537 +207290,1036.4500000110181,-0.0552283703015168 +207291,1036.4550000110182,-0.055228326154775034 +207292,1036.4600000110183,-0.05522828200606 +207293,1036.4650000110184,-0.05522823785537165 +207294,1036.4700000110186,-0.055228193702709934 +207295,1036.4750000110187,-0.0552281495480748 +207296,1036.4800000110188,-0.055228105391466185 +207297,1036.4850000110189,-0.05522806123288406 +207298,1036.490000011019,-0.05522801707232834 +207299,1036.495000011019,-0.05522797290979901 +207300,1036.5000000110192,-0.05522792874529599 +207301,1036.5050000110193,-0.05522788457881923 +207302,1036.5100000110194,-0.055227840410368684 +207303,1036.5150000110195,-0.055227796239944296 +207304,1036.5200000110196,-0.05522775206754602 +207305,1036.5250000110198,-0.0552277078931738 +207306,1036.5300000110199,-0.05522766371682758 +207307,1036.53500001102,-0.0552276195385073 +207308,1036.54000001102,-0.05522757535821292 +207309,1036.5450000110202,-0.05522753117594438 +207310,1036.5500000110203,-0.05522748699170164 +207311,1036.5550000110204,-0.05522744280548463 +207312,1036.5600000110205,-0.055227398617293304 +207313,1036.5650000110206,-0.055227354427127624 +207314,1036.5700000110207,-0.05522731023498752 +207315,1036.5750000110208,-0.055227266040872934 +207316,1036.580000011021,-0.055227221844783826 +207317,1036.585000011021,-0.05522717764672015 +207318,1036.5900000110212,-0.05522713344668185 +207319,1036.5950000110213,-0.05522708924466886 +207320,1036.6000000110214,-0.055227045040681134 +207321,1036.6050000110215,-0.055227000834718626 +207322,1036.6100000110216,-0.05522695662678127 +207323,1036.6150000110217,-0.05522691241686904 +207324,1036.6200000110218,-0.055226868204981856 +207325,1036.625000011022,-0.055226823991119674 +207326,1036.630000011022,-0.05522677977528245 +207327,1036.6350000110222,-0.055226735557470125 +207328,1036.6400000110223,-0.05522669133768264 +207329,1036.6450000110224,-0.05522664711591996 +207330,1036.6500000110225,-0.055226602892182015 +207331,1036.6550000110226,-0.055226558666468764 +207332,1036.6600000110227,-0.055226514438780155 +207333,1036.6650000110228,-0.055226470209116134 +207334,1036.670000011023,-0.05522642597747664 +207335,1036.675000011023,-0.05522638174386164 +207336,1036.6800000110231,-0.05522633750827106 +207337,1036.6850000110232,-0.05522629327070486 +207338,1036.6900000110234,-0.05522624903116298 +207339,1036.6950000110235,-0.05522620478964538 +207340,1036.7000000110236,-0.055226160546152 +207341,1036.7050000110237,-0.05522611630068279 +207342,1036.7100000110238,-0.0552260720532377 +207343,1036.715000011024,-0.05522602780381668 +207344,1036.720000011024,-0.055225983552419665 +207345,1036.7250000110241,-0.055225939299046616 +207346,1036.7300000110242,-0.05522589504369748 +207347,1036.7350000110243,-0.05522585078637219 +207348,1036.7400000110244,-0.055225806527070716 +207349,1036.7450000110246,-0.055225762265792996 +207350,1036.7500000110247,-0.05522571800253897 +207351,1036.7550000110248,-0.0552256737373086 +207352,1036.7600000110249,-0.055225629470101824 +207353,1036.765000011025,-0.05522558520091859 +207354,1036.770000011025,-0.05522554092975885 +207355,1036.7750000110252,-0.055225496656622554 +207356,1036.7800000110253,-0.05522545238150966 +207357,1036.7850000110254,-0.05522540810442009 +207358,1036.7900000110255,-0.05522536382535381 +207359,1036.7950000110256,-0.055225319544310765 +207360,1036.8000000110258,-0.0552252752612909 +207361,1036.8050000110259,-0.05522523097629417 +207362,1036.810000011026,-0.05522518668932053 +207363,1036.815000011026,-0.05522514240036991 +207364,1036.8200000110262,-0.05522509810944226 +207365,1036.8250000110263,-0.05522505381653754 +207366,1036.8300000110264,-0.055225009521655696 +207367,1036.8350000110265,-0.05522496522479666 +207368,1036.8400000110266,-0.0552249209259604 +207369,1036.8450000110267,-0.055224876625146864 +207370,1036.8500000110269,-0.055224832322355984 +207371,1036.855000011027,-0.05522478801758771 +207372,1036.860000011027,-0.055224743710842024 +207373,1036.8650000110272,-0.05522469940211883 +207374,1036.8700000110273,-0.0552246550914181 +207375,1036.8750000110274,-0.055224610778739774 +207376,1036.8800000110275,-0.05522456646408381 +207377,1036.8850000110276,-0.05522452214745015 +207378,1036.8900000110277,-0.05522447782883874 +207379,1036.8950000110278,-0.05522443350824955 +207380,1036.900000011028,-0.055224389185682496 +207381,1036.905000011028,-0.05522434486113754 +207382,1036.9100000110282,-0.05522430053461463 +207383,1036.9150000110283,-0.05522425620611372 +207384,1036.9200000110284,-0.055224211875634754 +207385,1036.9250000110285,-0.05522416754317769 +207386,1036.9300000110286,-0.055224123208742454 +207387,1036.9350000110287,-0.05522407887232902 +207388,1036.9400000110288,-0.055224034533937316 +207389,1036.945000011029,-0.0552239901935673 +207390,1036.950000011029,-0.05522394585121893 +207391,1036.9550000110291,-0.05522390150689213 +207392,1036.9600000110293,-0.05522385716058688 +207393,1036.9650000110294,-0.05522381281230311 +207394,1036.9700000110295,-0.055223768462040766 +207395,1036.9750000110296,-0.0552237241097998 +207396,1036.9800000110297,-0.05522367975558018 +207397,1036.9850000110298,-0.05522363539938182 +207398,1036.99000001103,-0.05522359104120469 +207399,1036.99500001103,-0.05522354668104873 +207400,1037.0000000110301,-0.0552235023189139 +207401,1037.0050000110302,-0.05522345795480015 +207402,1037.0100000110303,-0.055223413588707415 +207403,1037.0150000110305,-0.055223369220635664 +207404,1037.0200000110306,-0.055223324850584815 +207405,1037.0250000110307,-0.05522328047855484 +207406,1037.0300000110308,-0.055223236104545693 +207407,1037.035000011031,-0.055223191728557296 +207408,1037.040000011031,-0.05522314735058963 +207409,1037.045000011031,-0.05522310297064262 +207410,1037.0500000110312,-0.05522305858871621 +207411,1037.0550000110313,-0.055223014204810385 +207412,1037.0600000110314,-0.05522296981892505 +207413,1037.0650000110315,-0.055222925431060194 +207414,1037.0700000110317,-0.05522288104121575 +207415,1037.0750000110318,-0.055222836649391656 +207416,1037.0800000110319,-0.05522279225558786 +207417,1037.085000011032,-0.05522274785980433 +207418,1037.090000011032,-0.055222703462041 +207419,1037.0950000110322,-0.05522265906229782 +207420,1037.1000000110323,-0.05522261466057475 +207421,1037.1050000110324,-0.05522257025687174 +207422,1037.1100000110325,-0.05522252585118872 +207423,1037.1150000110326,-0.055222481443525664 +207424,1037.1200000110327,-0.0552224370338825 +207425,1037.1250000110329,-0.05522239262225919 +207426,1037.130000011033,-0.05522234820865569 +207427,1037.135000011033,-0.05522230379307193 +207428,1037.1400000110332,-0.055222259375507864 +207429,1037.1450000110333,-0.05522221495596344 +207430,1037.1500000110334,-0.05522217053443862 +207431,1037.1550000110335,-0.05522212611093335 +207432,1037.1600000110336,-0.055222081685447566 +207433,1037.1650000110337,-0.05522203725798123 +207434,1037.1700000110338,-0.05522199282853429 +207435,1037.175000011034,-0.055221948397106674 +207436,1037.180000011034,-0.05522190396369837 +207437,1037.1850000110342,-0.0552218595283093 +207438,1037.1900000110343,-0.055221815090939416 +207439,1037.1950000110344,-0.05522177065158867 +207440,1037.2000000110345,-0.05522172621025702 +207441,1037.2050000110346,-0.0552216817669444 +207442,1037.2100000110347,-0.05522163732165077 +207443,1037.2150000110348,-0.055221592874376085 +207444,1037.220000011035,-0.05522154842512029 +207445,1037.225000011035,-0.05522150397388333 +207446,1037.2300000110351,-0.05522145952066515 +207447,1037.2350000110353,-0.055221415065465705 +207448,1037.2400000110354,-0.055221370608284956 +207449,1037.2450000110355,-0.05522132614912285 +207450,1037.2500000110356,-0.055221281687979316 +207451,1037.2550000110357,-0.05522123722485431 +207452,1037.2600000110358,-0.055221192759747795 +207453,1037.265000011036,-0.05522114829265971 +207454,1037.270000011036,-0.05522110382359 +207455,1037.2750000110361,-0.05522105935253863 +207456,1037.2800000110362,-0.05522101487950555 +207457,1037.2850000110363,-0.055220970404490685 +207458,1037.2900000110365,-0.05522092592749401 +207459,1037.2950000110366,-0.055220881448515474 +207460,1037.3000000110367,-0.05522083696755502 +207461,1037.3050000110368,-0.05522079248461259 +207462,1037.310000011037,-0.055220747999688145 +207463,1037.315000011037,-0.055220703512781626 +207464,1037.320000011037,-0.05522065902389299 +207465,1037.3250000110372,-0.05522061453302219 +207466,1037.3300000110373,-0.05522057004016915 +207467,1037.3350000110374,-0.05522052554533385 +207468,1037.3400000110375,-0.05522048104851622 +207469,1037.3450000110377,-0.05522043654971623 +207470,1037.3500000110378,-0.055220392048933815 +207471,1037.3550000110379,-0.05522034754616894 +207472,1037.360000011038,-0.05522030304142153 +207473,1037.365000011038,-0.055220258534691556 +207474,1037.3700000110382,-0.05522021402597895 +207475,1037.3750000110383,-0.055220169515283676 +207476,1037.3800000110384,-0.05522012500260569 +207477,1037.3850000110385,-0.05522008048794491 +207478,1037.3900000110386,-0.05522003597130133 +207479,1037.3950000110387,-0.05521999145267488 +207480,1037.4000000110389,-0.0552199469320655 +207481,1037.405000011039,-0.05521990240947315 +207482,1037.410000011039,-0.05521985788489778 +207483,1037.4150000110392,-0.05521981335833934 +207484,1037.4200000110393,-0.055219768829797775 +207485,1037.4250000110394,-0.05521972429927303 +207486,1037.4300000110395,-0.05521967976676507 +207487,1037.4350000110396,-0.055219635232273835 +207488,1037.4400000110397,-0.055219590695799285 +207489,1037.4450000110398,-0.055219546157341357 +207490,1037.45000001104,-0.05521950161690001 +207491,1037.45500001104,-0.05521945707447519 +207492,1037.4600000110402,-0.05521941253006685 +207493,1037.4650000110403,-0.055219367983674945 +207494,1037.4700000110404,-0.055219323435299415 +207495,1037.4750000110405,-0.05521927888494021 +207496,1037.4800000110406,-0.055219234332597296 +207497,1037.4850000110407,-0.0552191897782706 +207498,1037.4900000110408,-0.05521914522196009 +207499,1037.495000011041,-0.05521910066366571 +207500,1037.500000011041,-0.05521905610338742 +207501,1037.5050000110411,-0.05521901154112516 +207502,1037.5100000110413,-0.05521896697687888 +207503,1037.5150000110414,-0.05521892241064852 +207504,1037.5200000110415,-0.05521887784243405 +207505,1037.5250000110416,-0.05521883327223542 +207506,1037.5300000110417,-0.055218788700052555 +207507,1037.5350000110418,-0.055218744125885434 +207508,1037.540000011042,-0.055218699549734 +207509,1037.545000011042,-0.0552186549715982 +207510,1037.5500000110421,-0.05521861039147798 +207511,1037.5550000110422,-0.0552185658093733 +207512,1037.5600000110423,-0.05521852122528411 +207513,1037.5650000110425,-0.055218476639210354 +207514,1037.5700000110426,-0.055218432051151976 +207515,1037.5750000110427,-0.05521838746110895 +207516,1037.5800000110428,-0.0552183428690812 +207517,1037.585000011043,-0.05521829827506869 +207518,1037.590000011043,-0.05521825367907137 +207519,1037.595000011043,-0.05521820908108919 +207520,1037.6000000110432,-0.05521816448112209 +207521,1037.6050000110433,-0.05521811987917003 +207522,1037.6100000110434,-0.05521807527523298 +207523,1037.6150000110435,-0.05521803066931085 +207524,1037.6200000110437,-0.05521798606140362 +207525,1037.6250000110438,-0.05521794145151124 +207526,1037.6300000110439,-0.05521789683963364 +207527,1037.635000011044,-0.05521785222577078 +207528,1037.640000011044,-0.055217807609922634 +207529,1037.6450000110442,-0.05521776299208912 +207530,1037.6500000110443,-0.055217718372270214 +207531,1037.6550000110444,-0.05521767375046585 +207532,1037.6600000110445,-0.055217629126675986 +207533,1037.6650000110446,-0.05521758450090057 +207534,1037.6700000110447,-0.05521753987313954 +207535,1037.6750000110449,-0.055217495243392874 +207536,1037.680000011045,-0.05521745061166051 +207537,1037.685000011045,-0.05521740597794239 +207538,1037.6900000110452,-0.05521736134223848 +207539,1037.6950000110453,-0.055217316704548706 +207540,1037.7000000110454,-0.05521727206487304 +207541,1037.7050000110455,-0.05521722742321144 +207542,1037.7100000110456,-0.05521718277956384 +207543,1037.7150000110457,-0.055217138133930206 +207544,1037.7200000110458,-0.05521709348631047 +207545,1037.725000011046,-0.05521704883670459 +207546,1037.730000011046,-0.05521700418511253 +207547,1037.7350000110462,-0.055216959531534215 +207548,1037.7400000110463,-0.05521691487596962 +207549,1037.7450000110464,-0.055216870218418694 +207550,1037.7500000110465,-0.05521682555888137 +207551,1037.7550000110466,-0.05521678089735761 +207552,1037.7600000110467,-0.055216736233847374 +207553,1037.7650000110468,-0.0552166915683506 +207554,1037.770000011047,-0.055216646900867236 +207555,1037.775000011047,-0.055216602231397245 +207556,1037.7800000110472,-0.05521655755994057 +207557,1037.7850000110473,-0.05521651288649717 +207558,1037.7900000110474,-0.055216468211066995 +207559,1037.7950000110475,-0.055216423533649986 +207560,1037.8000000110476,-0.0552163788542461 +207561,1037.8050000110477,-0.0552163341728553 +207562,1037.8100000110478,-0.055216289489477516 +207563,1037.815000011048,-0.055216244804112705 +207564,1037.820000011048,-0.05521620011676083 +207565,1037.8250000110481,-0.05521615542742182 +207566,1037.8300000110482,-0.05521611073609566 +207567,1037.8350000110484,-0.05521606604278227 +207568,1037.8400000110485,-0.05521602134748162 +207569,1037.8450000110486,-0.05521597665019364 +207570,1037.8500000110487,-0.055215931950918305 +207571,1037.8550000110488,-0.05521588724965555 +207572,1037.860000011049,-0.05521584254640534 +207573,1037.865000011049,-0.05521579784116763 +207574,1037.8700000110491,-0.05521575313394234 +207575,1037.8750000110492,-0.055215708424729455 +207576,1037.8800000110493,-0.055215663713528915 +207577,1037.8850000110494,-0.055215619000340666 +207578,1037.8900000110496,-0.055215574285164666 +207579,1037.8950000110497,-0.05521552956800086 +207580,1037.9000000110498,-0.0552154848488492 +207581,1037.9050000110499,-0.05521544012770964 +207582,1037.91000001105,-0.05521539540458214 +207583,1037.91500001105,-0.05521535067946664 +207584,1037.9200000110502,-0.055215305952363083 +207585,1037.9250000110503,-0.055215261223271445 +207586,1037.9300000110504,-0.05521521649219166 +207587,1037.9350000110505,-0.05521517175912368 +207588,1037.9400000110506,-0.05521512702406746 +207589,1037.9450000110508,-0.05521508228702295 +207590,1037.9500000110509,-0.055215037547990106 +207591,1037.955000011051,-0.05521499280696888 +207592,1037.960000011051,-0.05521494806395921 +207593,1037.9650000110512,-0.055214903318961076 +207594,1037.9700000110513,-0.055214858571974404 +207595,1037.9750000110514,-0.05521481382299915 +207596,1037.9800000110515,-0.05521476907203527 +207597,1037.9850000110516,-0.055214724319082704 +207598,1037.9900000110517,-0.055214679564141424 +207599,1037.9950000110518,-0.05521463480721137 +207600,1038.000000011052,-0.055214590048292496 +207601,1038.005000011052,-0.05521454528738475 +207602,1038.0100000110522,-0.05521450052448809 +207603,1038.0150000110523,-0.05521445575960246 +207604,1038.0200000110524,-0.05521441099272782 +207605,1038.0250000110525,-0.05521436622386412 +207606,1038.0300000110526,-0.05521432145301131 +207607,1038.0350000110527,-0.05521427668016934 +207608,1038.0400000110528,-0.055214231905338154 +207609,1038.045000011053,-0.05521418712851772 +207610,1038.050000011053,-0.055214142349707986 +207611,1038.0550000110532,-0.055214097568908896 +207612,1038.0600000110533,-0.055214052786120404 +207613,1038.0650000110534,-0.05521400800134246 +207614,1038.0700000110535,-0.05521396321457503 +207615,1038.0750000110536,-0.055213918425818055 +207616,1038.0800000110537,-0.05521387363507148 +207617,1038.0850000110538,-0.05521382884233528 +207618,1038.090000011054,-0.055213784047609384 +207619,1038.095000011054,-0.05521373925089374 +207620,1038.1000000110541,-0.05521369445218832 +207621,1038.1050000110542,-0.05521364965149307 +207622,1038.1100000110544,-0.05521360484880793 +207623,1038.1150000110545,-0.055213560044132866 +207624,1038.1200000110546,-0.05521351523746782 +207625,1038.1250000110547,-0.05521347042881276 +207626,1038.1300000110548,-0.05521342561816762 +207627,1038.135000011055,-0.055213380805532355 +207628,1038.140000011055,-0.05521333599090693 +207629,1038.1450000110551,-0.05521329117429129 +207630,1038.1500000110552,-0.05521324635568537 +207631,1038.1550000110553,-0.05521320153508914 +207632,1038.1600000110554,-0.055213156712502556 +207633,1038.1650000110556,-0.05521311188792556 +207634,1038.1700000110557,-0.05521306706135812 +207635,1038.1750000110558,-0.055213022232800155 +207636,1038.1800000110559,-0.05521297740225165 +207637,1038.185000011056,-0.05521293256971253 +207638,1038.190000011056,-0.05521288773518278 +207639,1038.1950000110562,-0.055212842898662316 +207640,1038.2000000110563,-0.055212798060151114 +207641,1038.2050000110564,-0.05521275321964913 +207642,1038.2100000110565,-0.055212708377156305 +207643,1038.2150000110566,-0.055212663532672596 +207644,1038.2200000110568,-0.055212618686197944 +207645,1038.2250000110569,-0.05521257383773231 +207646,1038.230000011057,-0.05521252898727565 +207647,1038.235000011057,-0.055212484134827905 +207648,1038.2400000110572,-0.055212439280389033 +207649,1038.2450000110573,-0.055212394423958984 +207650,1038.2500000110574,-0.05521234956553772 +207651,1038.2550000110575,-0.05521230470512519 +207652,1038.2600000110576,-0.05521225984272134 +207653,1038.2650000110577,-0.05521221497832612 +207654,1038.2700000110578,-0.05521217011193948 +207655,1038.275000011058,-0.0552121252435614 +207656,1038.280000011058,-0.055212080373191814 +207657,1038.2850000110582,-0.05521203550083067 +207658,1038.2900000110583,-0.055211990626477914 +207659,1038.2950000110584,-0.05521194575013351 +207660,1038.3000000110585,-0.05521190087179741 +207661,1038.3050000110586,-0.05521185599146956 +207662,1038.3100000110587,-0.055211811109149925 +207663,1038.3150000110588,-0.05521176622483844 +207664,1038.320000011059,-0.05521172133853507 +207665,1038.325000011059,-0.05521167645023976 +207666,1038.3300000110592,-0.05521163155995248 +207667,1038.3350000110593,-0.05521158666767316 +207668,1038.3400000110594,-0.05521154177340176 +207669,1038.3450000110595,-0.05521149687713824 +207670,1038.3500000110596,-0.05521145197888255 +207671,1038.3550000110597,-0.05521140707863464 +207672,1038.3600000110598,-0.05521136217639446 +207673,1038.36500001106,-0.05521131727216196 +207674,1038.37000001106,-0.055211272365937106 +207675,1038.3750000110601,-0.05521122745771984 +207676,1038.3800000110602,-0.05521118254751012 +207677,1038.3850000110604,-0.0552111376353079 +207678,1038.3900000110605,-0.05521109272111312 +207679,1038.3950000110606,-0.05521104780492574 +207680,1038.4000000110607,-0.05521100288674572 +207681,1038.4050000110608,-0.05521095796657301 +207682,1038.410000011061,-0.05521091304440755 +207683,1038.415000011061,-0.0552108681202493 +207684,1038.4200000110611,-0.05521082319409822 +207685,1038.4250000110612,-0.05521077826595426 +207686,1038.4300000110613,-0.055210733335817365 +207687,1038.4350000110614,-0.0552106884036875 +207688,1038.4400000110616,-0.055210643469564606 +207689,1038.4450000110617,-0.05521059853344863 +207690,1038.4500000110618,-0.05521055359533955 +207691,1038.4550000110619,-0.05521050865523729 +207692,1038.460000011062,-0.055210463713141825 +207693,1038.465000011062,-0.055210418769053096 +207694,1038.4700000110622,-0.055210373822971066 +207695,1038.4750000110623,-0.05521032887489568 +207696,1038.4800000110624,-0.05521028392482688 +207697,1038.4850000110625,-0.05521023897276464 +207698,1038.4900000110626,-0.05521019401870891 +207699,1038.4950000110628,-0.05521014906265963 +207700,1038.5000000110629,-0.05521010410461676 +207701,1038.505000011063,-0.055210059144580256 +207702,1038.510000011063,-0.05521001418255007 +207703,1038.5150000110632,-0.05520996921852615 +207704,1038.5200000110633,-0.05520992425250846 +207705,1038.5250000110634,-0.055209879284496936 +207706,1038.5300000110635,-0.05520983431449154 +207707,1038.5350000110636,-0.05520978934249223 +207708,1038.5400000110637,-0.055209744368498945 +207709,1038.5450000110638,-0.055209699392511656 +207710,1038.550000011064,-0.05520965441453031 +207711,1038.555000011064,-0.05520960943455485 +207712,1038.5600000110642,-0.05520956445258524 +207713,1038.5650000110643,-0.055209519468621425 +207714,1038.5700000110644,-0.055209474482663355 +207715,1038.5750000110645,-0.055209429494711006 +207716,1038.5800000110646,-0.0552093845047643 +207717,1038.5850000110647,-0.055209339512823224 +207718,1038.5900000110648,-0.0552092945188877 +207719,1038.595000011065,-0.05520924952295769 +207720,1038.600000011065,-0.05520920452503316 +207721,1038.6050000110652,-0.05520915952511405 +207722,1038.6100000110653,-0.05520911452320031 +207723,1038.6150000110654,-0.055209069519291915 +207724,1038.6200000110655,-0.0552090245133888 +207725,1038.6250000110656,-0.05520897950549092 +207726,1038.6300000110657,-0.05520893449559823 +207727,1038.6350000110658,-0.055208889483710694 +207728,1038.640000011066,-0.05520884446982825 +207729,1038.645000011066,-0.05520879945395086 +207730,1038.6500000110661,-0.055208754436078464 +207731,1038.6550000110662,-0.05520870941621104 +207732,1038.6600000110664,-0.05520866439434852 +207733,1038.6650000110665,-0.055208619370490854 +207734,1038.6700000110666,-0.05520857434463801 +207735,1038.6750000110667,-0.055208529316789934 +207736,1038.6800000110668,-0.05520848428694659 +207737,1038.685000011067,-0.05520843925510792 +207738,1038.690000011067,-0.05520839422127388 +207739,1038.6950000110671,-0.05520834918544442 +207740,1038.7000000110672,-0.0552083041476195 +207741,1038.7050000110673,-0.05520825910779908 +207742,1038.7100000110675,-0.0552082140659831 +207743,1038.7150000110676,-0.055208169022171516 +207744,1038.7200000110677,-0.05520812397636428 +207745,1038.7250000110678,-0.055208078928561354 +207746,1038.730000011068,-0.05520803387876268 +207747,1038.735000011068,-0.05520798882696822 +207748,1038.740000011068,-0.055207943773177934 +207749,1038.7450000110682,-0.055207898717391755 +207750,1038.7500000110683,-0.05520785365960965 +207751,1038.7550000110684,-0.055207808599831584 +207752,1038.7600000110685,-0.055207763538057494 +207753,1038.7650000110687,-0.055207718474287334 +207754,1038.7700000110688,-0.05520767340852106 +207755,1038.7750000110689,-0.05520762834075863 +207756,1038.780000011069,-0.05520758327099999 +207757,1038.785000011069,-0.05520753819924509 +207758,1038.7900000110692,-0.055207493125493896 +207759,1038.7950000110693,-0.05520744804974636 +207760,1038.8000000110694,-0.055207402972002426 +207761,1038.8050000110695,-0.05520735789226207 +207762,1038.8100000110696,-0.055207312810525225 +207763,1038.8150000110697,-0.05520726772679184 +207764,1038.8200000110699,-0.05520722264106189 +207765,1038.82500001107,-0.05520717755333531 +207766,1038.83000001107,-0.05520713246361207 +207767,1038.8350000110702,-0.0552070873718921 +207768,1038.8400000110703,-0.05520704227817538 +207769,1038.8450000110704,-0.05520699718246185 +207770,1038.8500000110705,-0.055206952084751466 +207771,1038.8550000110706,-0.05520690698504417 +207772,1038.8600000110707,-0.05520686188333994 +207773,1038.8650000110708,-0.055206816779638714 +207774,1038.870000011071,-0.055206771673940454 +207775,1038.875000011071,-0.0552067265662451 +207776,1038.8800000110712,-0.055206681456552616 +207777,1038.8850000110713,-0.05520663634486296 +207778,1038.8900000110714,-0.05520659123117608 +207779,1038.8950000110715,-0.05520654611549193 +207780,1038.9000000110716,-0.055206500997810465 +207781,1038.9050000110717,-0.05520645587813164 +207782,1038.9100000110718,-0.055206410756455396 +207783,1038.915000011072,-0.05520636563278171 +207784,1038.920000011072,-0.055206320507110516 +207785,1038.9250000110721,-0.05520627537944179 +207786,1038.9300000110723,-0.05520623024977546 +207787,1038.9350000110724,-0.05520618511811149 +207788,1038.9400000110725,-0.05520613998444985 +207789,1038.9450000110726,-0.05520609484879047 +207790,1038.9500000110727,-0.05520604971113332 +207791,1038.9550000110728,-0.05520600457147835 +207792,1038.960000011073,-0.0552059594298255 +207793,1038.965000011073,-0.055205914286174745 +207794,1038.9700000110731,-0.05520586914052603 +207795,1038.9750000110732,-0.05520582399287932 +207796,1038.9800000110733,-0.05520577884323454 +207797,1038.9850000110735,-0.05520573369159167 +207798,1038.9900000110736,-0.055205688537950666 +207799,1038.9950000110737,-0.055205643382311466 +207800,1039.0000000110738,-0.055205598224674024 +207801,1039.005000011074,-0.055205553065038306 +207802,1039.010000011074,-0.055205507903404255 +207803,1039.015000011074,-0.05520546273977183 +207804,1039.0200000110742,-0.055205417574141 +207805,1039.0250000110743,-0.0552053724065117 +207806,1039.0300000110744,-0.05520532723688389 +207807,1039.0350000110745,-0.05520528206525752 +207808,1039.0400000110747,-0.05520523689163255 +207809,1039.0450000110748,-0.05520519171600894 +207810,1039.0500000110749,-0.05520514653838663 +207811,1039.055000011075,-0.05520510135876559 +207812,1039.060000011075,-0.055205056177145766 +207813,1039.0650000110752,-0.055205010993527114 +207814,1039.0700000110753,-0.055204965807909574 +207815,1039.0750000110754,-0.05520492062029313 +207816,1039.0800000110755,-0.0552048754306777 +207817,1039.0850000110756,-0.05520483023906327 +207818,1039.0900000110757,-0.05520478504544977 +207819,1039.0950000110759,-0.05520473984983717 +207820,1039.100000011076,-0.05520469465222541 +207821,1039.105000011076,-0.055204649452614475 +207822,1039.1100000110762,-0.055204604251004284 +207823,1039.1150000110763,-0.05520455904739481 +207824,1039.1200000110764,-0.05520451384178601 +207825,1039.1250000110765,-0.05520446863417783 +207826,1039.1300000110766,-0.05520442342457022 +207827,1039.1350000110767,-0.05520437821296315 +207828,1039.1400000110768,-0.055204332999356565 +207829,1039.145000011077,-0.055204287783750416 +207830,1039.150000011077,-0.05520424256614466 +207831,1039.1550000110772,-0.05520419734653926 +207832,1039.1600000110773,-0.05520415212493415 +207833,1039.1650000110774,-0.05520410690132931 +207834,1039.1700000110775,-0.05520406167572469 +207835,1039.1750000110776,-0.05520401644812023 +207836,1039.1800000110777,-0.05520397121851589 +207837,1039.1850000110778,-0.05520392598691163 +207838,1039.190000011078,-0.05520388075330739 +207839,1039.195000011078,-0.055203835517703144 +207840,1039.2000000110781,-0.05520379028009883 +207841,1039.2050000110783,-0.05520374504049441 +207842,1039.2100000110784,-0.055203699798889845 +207843,1039.2150000110785,-0.05520365455528509 +207844,1039.2200000110786,-0.05520360930968009 +207845,1039.2250000110787,-0.05520356406207481 +207846,1039.2300000110788,-0.05520351881246918 +207847,1039.235000011079,-0.05520347356086319 +207848,1039.240000011079,-0.055203428307256774 +207849,1039.2450000110791,-0.05520338305164988 +207850,1039.2500000110792,-0.05520333779404248 +207851,1039.2550000110793,-0.055203292534434525 +207852,1039.2600000110795,-0.05520324727282596 +207853,1039.2650000110796,-0.05520320200921675 +207854,1039.2700000110797,-0.05520315674360684 +207855,1039.2750000110798,-0.05520311147599619 +207856,1039.28000001108,-0.055203066206384765 +207857,1039.28500001108,-0.055203020934772494 +207858,1039.29000001108,-0.05520297566115936 +207859,1039.2950000110802,-0.0552029303855453 +207860,1039.3000000110803,-0.05520288510793027 +207861,1039.3050000110804,-0.05520283982831424 +207862,1039.3100000110805,-0.05520279454669715 +207863,1039.3150000110807,-0.05520274926307896 +207864,1039.3200000110808,-0.05520270397745962 +207865,1039.3250000110809,-0.0552026586898391 +207866,1039.330000011081,-0.05520261340021733 +207867,1039.335000011081,-0.055202568108594294 +207868,1039.3400000110812,-0.05520252281496993 +207869,1039.3450000110813,-0.055202477519344186 +207870,1039.3500000110814,-0.05520243222171702 +207871,1039.3550000110815,-0.0552023869220884 +207872,1039.3600000110816,-0.05520234162045827 +207873,1039.3650000110817,-0.05520229631682659 +207874,1039.3700000110819,-0.05520225101119331 +207875,1039.375000011082,-0.05520220570355839 +207876,1039.380000011082,-0.05520216039392179 +207877,1039.3850000110822,-0.05520211508228344 +207878,1039.3900000110823,-0.05520206976864333 +207879,1039.3950000110824,-0.05520202445300139 +207880,1039.4000000110825,-0.05520197913535758 +207881,1039.4050000110826,-0.055201933815711854 +207882,1039.4100000110827,-0.055201888494064176 +207883,1039.4150000110828,-0.05520184317041451 +207884,1039.420000011083,-0.05520179784476278 +207885,1039.425000011083,-0.05520175251710897 +207886,1039.4300000110832,-0.05520170718745303 +207887,1039.4350000110833,-0.0552016618557949 +207888,1039.4400000110834,-0.055201616522134546 +207889,1039.4450000110835,-0.05520157118647191 +207890,1039.4500000110836,-0.05520152584880697 +207891,1039.4550000110837,-0.05520148050913966 +207892,1039.4600000110838,-0.055201435167469955 +207893,1039.465000011084,-0.0552013898237978 +207894,1039.470000011084,-0.05520134447812313 +207895,1039.4750000110841,-0.055201299130445934 +207896,1039.4800000110843,-0.05520125378076615 +207897,1039.4850000110844,-0.055201208429083735 +207898,1039.4900000110845,-0.05520116307539866 +207899,1039.4950000110846,-0.055201117719710854 +207900,1039.5000000110847,-0.055201072362020286 +207901,1039.5050000110848,-0.05520102700232691 +207902,1039.510000011085,-0.05520098164063069 +207903,1039.515000011085,-0.05520093627693156 +207904,1039.5200000110851,-0.0552008909112295 +207905,1039.5250000110852,-0.05520084554352444 +207906,1039.5300000110853,-0.05520080017381635 +207907,1039.5350000110855,-0.05520075480210518 +207908,1039.5400000110856,-0.05520070942839089 +207909,1039.5450000110857,-0.055200664052673445 +207910,1039.5500000110858,-0.05520061867495278 +207911,1039.555000011086,-0.055200573295228865 +207912,1039.560000011086,-0.05520052791350165 +207913,1039.565000011086,-0.05520048252977108 +207914,1039.5700000110862,-0.05520043714403713 +207915,1039.5750000110863,-0.05520039175629974 +207916,1039.5800000110864,-0.05520034636655888 +207917,1039.5850000110865,-0.0552003009748145 +207918,1039.5900000110867,-0.055200255581066546 +207919,1039.5950000110868,-0.05520021018531497 +207920,1039.6000000110869,-0.055200164787559756 +207921,1039.605000011087,-0.05520011938780084 +207922,1039.610000011087,-0.05520007398603818 +207923,1039.6150000110872,-0.055200028582271715 +207924,1039.6200000110873,-0.05519998317650142 +207925,1039.6250000110874,-0.05519993776872725 +207926,1039.6300000110875,-0.055199892358949156 +207927,1039.6350000110876,-0.055199846947167105 +207928,1039.6400000110877,-0.055199801533381034 +207929,1039.6450000110879,-0.05519975611759091 +207930,1039.650000011088,-0.055199710699796685 +207931,1039.655000011088,-0.055199665279998304 +207932,1039.6600000110882,-0.055199619858195735 +207933,1039.6650000110883,-0.055199574434388936 +207934,1039.6700000110884,-0.05519952900857786 +207935,1039.6750000110885,-0.05519948358076246 +207936,1039.6800000110886,-0.0551994381509427 +207937,1039.6850000110887,-0.05519939271911852 +207938,1039.6900000110888,-0.05519934728528989 +207939,1039.695000011089,-0.05519930184945675 +207940,1039.700000011089,-0.05519925641161906 +207941,1039.7050000110892,-0.055199210971776796 +207942,1039.7100000110893,-0.055199165529929886 +207943,1039.7150000110894,-0.05519912008607831 +207944,1039.7200000110895,-0.05519907464022201 +207945,1039.7250000110896,-0.05519902919236094 +207946,1039.7300000110897,-0.05519898374249506 +207947,1039.7350000110898,-0.055198938290624326 +207948,1039.74000001109,-0.0551988928367487 +207949,1039.74500001109,-0.05519884738086813 +207950,1039.7500000110902,-0.05519880192298257 +207951,1039.7550000110903,-0.05519875646309198 +207952,1039.7600000110904,-0.05519871100119632 +207953,1039.7650000110905,-0.05519866553729553 +207954,1039.7700000110906,-0.05519862007138957 +207955,1039.7750000110907,-0.055198574603478406 +207956,1039.7800000110908,-0.05519852913356199 +207957,1039.785000011091,-0.055198483661640284 +207958,1039.790000011091,-0.055198438187713236 +207959,1039.7950000110911,-0.0551983927117808 +207960,1039.8000000110912,-0.05519834723384294 +207961,1039.8050000110914,-0.0551983017538996 +207962,1039.8100000110915,-0.055198256271950755 +207963,1039.8150000110916,-0.055198210787996346 +207964,1039.8200000110917,-0.055198165302036334 +207965,1039.8250000110918,-0.05519811981407067 +207966,1039.830000011092,-0.05519807432409931 +207967,1039.835000011092,-0.05519802883212222 +207968,1039.8400000110921,-0.05519798333813934 +207969,1039.8450000110922,-0.055197937842150636 +207970,1039.8500000110923,-0.05519789234415606 +207971,1039.8550000110924,-0.05519784684415558 +207972,1039.8600000110926,-0.05519780134214913 +207973,1039.8650000110927,-0.055197755838136686 +207974,1039.8700000110928,-0.055197710332118205 +207975,1039.8750000110929,-0.055197664824093634 +207976,1039.880000011093,-0.05519761931406292 +207977,1039.885000011093,-0.05519757380202603 +207978,1039.8900000110932,-0.05519752828798292 +207979,1039.8950000110933,-0.05519748277193355 +207980,1039.9000000110934,-0.055197437253877865 +207981,1039.9050000110935,-0.05519739173381583 +207982,1039.9100000110936,-0.055197346211747406 +207983,1039.9150000110938,-0.05519730068767254 +207984,1039.9200000110939,-0.055197255161591186 +207985,1039.925000011094,-0.05519720963350331 +207986,1039.930000011094,-0.05519716410340885 +207987,1039.9350000110942,-0.05519711857130778 +207988,1039.9400000110943,-0.055197073037200055 +207989,1039.9450000110944,-0.05519702750108563 +207990,1039.9500000110945,-0.05519698196296444 +207991,1039.9550000110946,-0.055196936422836476 +207992,1039.9600000110947,-0.05519689088070168 +207993,1039.9650000110948,-0.05519684533655999 +207994,1039.970000011095,-0.05519679979041138 +207995,1039.975000011095,-0.055196754242255806 +207996,1039.9800000110952,-0.05519670869209323 +207997,1039.9850000110953,-0.05519666313992359 +207998,1039.9900000110954,-0.05519661758574685 +207999,1039.9950000110955,-0.055196572029562976 +208000,1040.0000000110956,-0.05519652647137191 +208001,1040.0050000110957,-0.05519648091117362 +208002,1040.0100000110958,-0.055196435348968065 +208003,1040.015000011096,-0.0551963897847552 +208004,1040.020000011096,-0.05519634421853496 +208005,1040.0250000110962,-0.05519629865030733 +208006,1040.0300000110963,-0.055196253080072255 +208007,1040.0350000110964,-0.055196207507829685 +208008,1040.0400000110965,-0.055196161933579575 +208009,1040.0450000110966,-0.0551961163573219 +208010,1040.0500000110967,-0.0551960707790566 +208011,1040.0550000110968,-0.05519602519878363 +208012,1040.060000011097,-0.05519597961650295 +208013,1040.065000011097,-0.055195934032214525 +208014,1040.0700000110971,-0.0551958884459183 +208015,1040.0750000110972,-0.05519584285761424 +208016,1040.0800000110974,-0.055195797267302296 +208017,1040.0850000110975,-0.05519575167498243 +208018,1040.0900000110976,-0.05519570608065459 +208019,1040.0950000110977,-0.05519566048431874 +208020,1040.1000000110978,-0.05519561488597483 +208021,1040.105000011098,-0.055195569285622824 +208022,1040.110000011098,-0.05519552368326268 +208023,1040.1150000110981,-0.05519547807889434 +208024,1040.1200000110982,-0.055195432472517764 +208025,1040.1250000110983,-0.05519538686413293 +208026,1040.1300000110984,-0.055195341253739774 +208027,1040.1350000110986,-0.05519529564133825 +208028,1040.1400000110987,-0.05519525002692832 +208029,1040.1450000110988,-0.05519520441050994 +208030,1040.1500000110989,-0.05519515879208308 +208031,1040.155000011099,-0.05519511317164768 +208032,1040.160000011099,-0.055195067549203704 +208033,1040.1650000110992,-0.055195021924751106 +208034,1040.1700000110993,-0.055194976298289844 +208035,1040.1750000110994,-0.05519493066981988 +208036,1040.1800000110995,-0.05519488503934116 +208037,1040.1850000110996,-0.05519483940685365 +208038,1040.1900000110998,-0.0551947937723573 +208039,1040.1950000110999,-0.05519474813585207 +208040,1040.2000000111,-0.05519470249733791 +208041,1040.2050000111,-0.05519465685681479 +208042,1040.2100000111002,-0.05519461121428266 +208043,1040.2150000111003,-0.05519456556974147 +208044,1040.2200000111004,-0.05519451992319118 +208045,1040.2250000111005,-0.05519447427463176 +208046,1040.2300000111006,-0.05519442862406315 +208047,1040.2350000111007,-0.05519438297148531 +208048,1040.2400000111008,-0.0551943373168982 +208049,1040.245000011101,-0.05519429166030177 +208050,1040.250000011101,-0.055194246001695986 +208051,1040.2550000111012,-0.0551942003410808 +208052,1040.2600000111013,-0.05519415467845619 +208053,1040.2650000111014,-0.055194109013822074 +208054,1040.2700000111015,-0.055194063347178426 +208055,1040.2750000111016,-0.05519401767852521 +208056,1040.2800000111017,-0.055193972007862385 +208057,1040.2850000111018,-0.0551939263351899 +208058,1040.290000011102,-0.05519388066050772 +208059,1040.295000011102,-0.055193834983815776 +208060,1040.3000000111022,-0.05519378930511405 +208061,1040.3050000111023,-0.055193743624402505 +208062,1040.3100000111024,-0.055193697941681066 +208063,1040.3150000111025,-0.05519365225694972 +208064,1040.3200000111026,-0.055193606570208414 +208065,1040.3250000111027,-0.055193560881457104 +208066,1040.3300000111028,-0.05519351519069575 +208067,1040.335000011103,-0.0551934694979243 +208068,1040.340000011103,-0.055193423803142724 +208069,1040.3450000111031,-0.055193378106350964 +208070,1040.3500000111032,-0.05519333240754899 +208071,1040.3550000111034,-0.05519328670673676 +208072,1040.3600000111035,-0.05519324100391421 +208073,1040.3650000111036,-0.05519319529908132 +208074,1040.3700000111037,-0.05519314959223805 +208075,1040.3750000111038,-0.055193103883384324 +208076,1040.380000011104,-0.05519305817252014 +208077,1040.385000011104,-0.05519301245964543 +208078,1040.3900000111041,-0.05519296674476016 +208079,1040.3950000111042,-0.05519292102786427 +208080,1040.4000000111043,-0.05519287530895774 +208081,1040.4050000111044,-0.05519282958804051 +208082,1040.4100000111046,-0.05519278386511256 +208083,1040.4150000111047,-0.05519273814017383 +208084,1040.4200000111048,-0.05519269241322428 +208085,1040.4250000111049,-0.055192646684263866 +208086,1040.430000011105,-0.055192600953292544 +208087,1040.435000011105,-0.05519255522031027 +208088,1040.4400000111052,-0.055192509485317 +208089,1040.4450000111053,-0.05519246374831271 +208090,1040.4500000111054,-0.05519241800929733 +208091,1040.4550000111055,-0.05519237226827083 +208092,1040.4600000111056,-0.05519232652523317 +208093,1040.4650000111058,-0.05519228078018431 +208094,1040.4700000111059,-0.05519223503312419 +208095,1040.475000011106,-0.05519218928405279 +208096,1040.480000011106,-0.05519214353297005 +208097,1040.4850000111062,-0.05519209777987594 +208098,1040.4900000111063,-0.055192052024770406 +208099,1040.4950000111064,-0.055192006267653415 +208100,1040.5000000111065,-0.055191960508524915 +208101,1040.5050000111066,-0.05519191474738486 +208102,1040.5100000111067,-0.055191868984233214 +208103,1040.5150000111068,-0.05519182321906993 +208104,1040.520000011107,-0.05519177745189498 +208105,1040.525000011107,-0.05519173168270831 +208106,1040.5300000111072,-0.05519168591150988 +208107,1040.5350000111073,-0.05519164013829965 +208108,1040.5400000111074,-0.05519159436307757 +208109,1040.5450000111075,-0.055191548585843596 +208110,1040.5500000111076,-0.05519150280659768 +208111,1040.5550000111077,-0.0551914570253398 +208112,1040.5600000111078,-0.05519141124206991 +208113,1040.565000011108,-0.05519136545678795 +208114,1040.570000011108,-0.05519131966949389 +208115,1040.5750000111082,-0.05519127388018769 +208116,1040.5800000111083,-0.05519122808886931 +208117,1040.5850000111084,-0.055191182295538696 +208118,1040.5900000111085,-0.055191136500195796 +208119,1040.5950000111086,-0.05519109070284058 +208120,1040.6000000111087,-0.05519104490347301 +208121,1040.6050000111088,-0.05519099910209305 +208122,1040.610000011109,-0.055190953298700635 +208123,1040.615000011109,-0.05519090749329574 +208124,1040.6200000111091,-0.05519086168587832 +208125,1040.6250000111093,-0.05519081587644833 +208126,1040.6300000111094,-0.05519077006500572 +208127,1040.6350000111095,-0.055190724251550465 +208128,1040.6400000111096,-0.05519067843608251 +208129,1040.6450000111097,-0.05519063261860181 +208130,1040.6500000111098,-0.055190586799108335 +208131,1040.65500001111,-0.055190540977602016 +208132,1040.66000001111,-0.05519049515408284 +208133,1040.6650000111101,-0.05519044932855076 +208134,1040.6700000111102,-0.05519040350100572 +208135,1040.6750000111103,-0.055190357671447685 +208136,1040.6800000111105,-0.05519031183987662 +208137,1040.6850000111106,-0.05519026600629246 +208138,1040.6900000111107,-0.055190220170695185 +208139,1040.6950000111108,-0.05519017433308474 +208140,1040.700000011111,-0.05519012849346109 +208141,1040.705000011111,-0.055190082651824186 +208142,1040.710000011111,-0.055190036808174 +208143,1040.7150000111112,-0.05518999096251048 +208144,1040.7200000111113,-0.05518994511483358 +208145,1040.7250000111114,-0.055189899265143255 +208146,1040.7300000111115,-0.05518985341343948 +208147,1040.7350000111117,-0.0551898075597222 +208148,1040.7400000111118,-0.05518976170399137 +208149,1040.7450000111119,-0.05518971584624694 +208150,1040.750000011112,-0.055189669986488894 +208151,1040.755000011112,-0.055189624124717174 +208152,1040.7600000111122,-0.05518957826093174 +208153,1040.7650000111123,-0.055189532395132544 +208154,1040.7700000111124,-0.055189486527319545 +208155,1040.7750000111125,-0.05518944065749271 +208156,1040.7800000111126,-0.055189394785652 +208157,1040.7850000111127,-0.05518934891179735 +208158,1040.7900000111129,-0.05518930303592875 +208159,1040.795000011113,-0.055189257158046116 +208160,1040.800000011113,-0.05518921127814944 +208161,1040.8050000111132,-0.05518916539623868 +208162,1040.8100000111133,-0.05518911951231377 +208163,1040.8150000111134,-0.05518907362637468 +208164,1040.8200000111135,-0.055189027738421374 +208165,1040.8250000111136,-0.05518898184845379 +208166,1040.8300000111137,-0.05518893595647191 +208167,1040.8350000111138,-0.05518889006247568 +208168,1040.840000011114,-0.05518884416646506 +208169,1040.845000011114,-0.05518879826844001 +208170,1040.8500000111142,-0.055188752368400484 +208171,1040.8550000111143,-0.055188706466346445 +208172,1040.8600000111144,-0.05518866056227785 +208173,1040.8650000111145,-0.055188614656194644 +208174,1040.8700000111146,-0.055188568748096814 +208175,1040.8750000111147,-0.0551885228379843 +208176,1040.8800000111148,-0.055188476925857044 +208177,1040.885000011115,-0.05518843101171503 +208178,1040.890000011115,-0.05518838509555819 +208179,1040.8950000111151,-0.05518833917738651 +208180,1040.9000000111153,-0.055188293257199934 +208181,1040.9050000111154,-0.05518824733499841 +208182,1040.9100000111155,-0.055188201410781915 +208183,1040.9150000111156,-0.055188155484550395 +208184,1040.9200000111157,-0.055188109556303815 +208185,1040.9250000111158,-0.05518806362604214 +208186,1040.930000011116,-0.0551880176937653 +208187,1040.935000011116,-0.055187971759473285 +208188,1040.9400000111161,-0.05518792582316604 +208189,1040.9450000111162,-0.05518787988484353 +208190,1040.9500000111163,-0.05518783394450569 +208191,1040.9550000111165,-0.05518778800215249 +208192,1040.9600000111166,-0.055187742057783894 +208193,1040.9650000111167,-0.05518769611139986 +208194,1040.9700000111168,-0.05518765016300034 +208195,1040.975000011117,-0.0551876042125853 +208196,1040.980000011117,-0.0551875582601547 +208197,1040.985000011117,-0.055187512305708494 +208198,1040.9900000111172,-0.055187466349246636 +208199,1040.9950000111173,-0.05518742039076908 +208200,1041.0000000111174,-0.0551873744302758 +208201,1041.0050000111175,-0.055187328467766736 +208202,1041.0100000111177,-0.05518728250324186 +208203,1041.0150000111178,-0.05518723653670112 +208204,1041.0200000111179,-0.05518719056814449 +208205,1041.025000011118,-0.0551871445975719 +208206,1041.030000011118,-0.05518709862498333 +208207,1041.0350000111182,-0.055187052650378744 +208208,1041.0400000111183,-0.055187006673758095 +208209,1041.0450000111184,-0.055186960695121315 +208210,1041.0500000111185,-0.05518691471446839 +208211,1041.0550000111186,-0.05518686873179928 +208212,1041.0600000111187,-0.05518682274711394 +208213,1041.0650000111189,-0.055186776760412316 +208214,1041.070000011119,-0.05518673077169437 +208215,1041.075000011119,-0.05518668478096007 +208216,1041.0800000111192,-0.055186638788209355 +208217,1041.0850000111193,-0.0551865927934422 +208218,1041.0900000111194,-0.05518654679665856 +208219,1041.0950000111195,-0.055186500797858404 +208220,1041.1000000111196,-0.055186454797041665 +208221,1041.1050000111197,-0.05518640879420832 +208222,1041.1100000111198,-0.05518636278935833 +208223,1041.11500001112,-0.05518631678249165 +208224,1041.12000001112,-0.05518627077360823 +208225,1041.1250000111202,-0.05518622476270802 +208226,1041.1300000111203,-0.05518617874979101 +208227,1041.1350000111204,-0.05518613273485714 +208228,1041.1400000111205,-0.05518608671790636 +208229,1041.1450000111206,-0.05518604069893864 +208230,1041.1500000111207,-0.05518599467795393 +208231,1041.1550000111208,-0.0551859486549522 +208232,1041.160000011121,-0.0551859026299334 +208233,1041.165000011121,-0.05518585660289747 +208234,1041.1700000111211,-0.05518581057384441 +208235,1041.1750000111213,-0.05518576454277415 +208236,1041.1800000111214,-0.055185718509686656 +208237,1041.1850000111215,-0.05518567247458188 +208238,1041.1900000111216,-0.05518562643745979 +208239,1041.1950000111217,-0.05518558039832034 +208240,1041.2000000111218,-0.055185534357163495 +208241,1041.205000011122,-0.0551854883139892 +208242,1041.210000011122,-0.05518544226879743 +208243,1041.2150000111221,-0.055185396221588134 +208244,1041.2200000111222,-0.05518535017236127 +208245,1041.2250000111223,-0.0551853041211168 +208246,1041.2300000111225,-0.055185258067854674 +208247,1041.2350000111226,-0.05518521201257487 +208248,1041.2400000111227,-0.05518516595527733 +208249,1041.2450000111228,-0.055185119895962004 +208250,1041.250000011123,-0.05518507383462887 +208251,1041.255000011123,-0.05518502777127787 +208252,1041.260000011123,-0.055184981705908985 +208253,1041.2650000111232,-0.05518493563852215 +208254,1041.2700000111233,-0.055184889569117344 +208255,1041.2750000111234,-0.055184843497694515 +208256,1041.2800000111235,-0.05518479742425362 +208257,1041.2850000111237,-0.05518475134879462 +208258,1041.2900000111238,-0.05518470527131747 +208259,1041.2950000111239,-0.05518465919182214 +208260,1041.300000011124,-0.055184613110308575 +208261,1041.305000011124,-0.05518456702677674 +208262,1041.3100000111242,-0.055184520941226584 +208263,1041.3150000111243,-0.055184474853658086 +208264,1041.3200000111244,-0.0551844287640712 +208265,1041.3250000111245,-0.05518438267246587 +208266,1041.3300000111246,-0.055184336578842065 +208267,1041.3350000111247,-0.055184290483199734 +208268,1041.3400000111249,-0.05518424438553885 +208269,1041.345000011125,-0.05518419828585937 +208270,1041.350000011125,-0.055184152184161235 +208271,1041.3550000111252,-0.055184106080444426 +208272,1041.3600000111253,-0.05518405997470889 +208273,1041.3650000111254,-0.05518401386695459 +208274,1041.3700000111255,-0.05518396775718148 +208275,1041.3750000111256,-0.055183921645389516 +208276,1041.3800000111257,-0.05518387553157866 +208277,1041.3850000111258,-0.05518382941574889 +208278,1041.390000011126,-0.055183783297900135 +208279,1041.395000011126,-0.05518373717803236 +208280,1041.4000000111262,-0.05518369105614553 +208281,1041.4050000111263,-0.055183644932239616 +208282,1041.4100000111264,-0.055183598806314564 +208283,1041.4150000111265,-0.055183552678370336 +208284,1041.4200000111266,-0.05518350654840688 +208285,1041.4250000111267,-0.05518346041642417 +208286,1041.4300000111268,-0.05518341428242215 +208287,1041.435000011127,-0.0551833681464008 +208288,1041.440000011127,-0.05518332200836005 +208289,1041.4450000111271,-0.05518327586829989 +208290,1041.4500000111273,-0.05518322972622025 +208291,1041.4550000111274,-0.055183183582121105 +208292,1041.4600000111275,-0.055183137436002415 +208293,1041.4650000111276,-0.05518309128786413 +208294,1041.4700000111277,-0.055183045137706215 +208295,1041.4750000111278,-0.05518299898552864 +208296,1041.480000011128,-0.05518295283133135 +208297,1041.485000011128,-0.055182906675114295 +208298,1041.4900000111281,-0.05518286051687746 +208299,1041.4950000111282,-0.055182814356620785 +208300,1041.5000000111283,-0.05518276819434422 +208301,1041.5050000111285,-0.055182722030047746 +208302,1041.5100000111286,-0.05518267586373131 +208303,1041.5150000111287,-0.055182629695394884 +208304,1041.5200000111288,-0.05518258352503841 +208305,1041.525000011129,-0.055182537352661855 +208306,1041.530000011129,-0.05518249117826518 +208307,1041.5350000111291,-0.05518244500184834 +208308,1041.5400000111292,-0.05518239882341129 +208309,1041.5450000111293,-0.055182352642954 +208310,1041.5500000111294,-0.05518230646047643 +208311,1041.5550000111296,-0.05518226027597852 +208312,1041.5600000111297,-0.055182214089460245 +208313,1041.5650000111298,-0.05518216790092156 +208314,1041.5700000111299,-0.05518212171036242 +208315,1041.57500001113,-0.05518207551778279 +208316,1041.58000001113,-0.055182029323182634 +208317,1041.5850000111302,-0.055181983126561904 +208318,1041.5900000111303,-0.05518193692792055 +208319,1041.5950000111304,-0.055181890727258535 +208320,1041.6000000111305,-0.055181844524575835 +208321,1041.6050000111306,-0.055181798319872404 +208322,1041.6100000111308,-0.05518175211314818 +208323,1041.6150000111309,-0.05518170590440315 +208324,1041.620000011131,-0.055181659693637246 +208325,1041.625000011131,-0.05518161348085045 +208326,1041.6300000111312,-0.05518156726604271 +208327,1041.6350000111313,-0.055181521049213984 +208328,1041.6400000111314,-0.05518147483036424 +208329,1041.6450000111315,-0.05518142860949344 +208330,1041.6500000111316,-0.05518138238660153 +208331,1041.6550000111317,-0.05518133616168848 +208332,1041.6600000111318,-0.055181289934754234 +208333,1041.665000011132,-0.055181243705798765 +208334,1041.670000011132,-0.05518119747482203 +208335,1041.6750000111322,-0.05518115124182398 +208336,1041.6800000111323,-0.055181105006804586 +208337,1041.6850000111324,-0.05518105876976379 +208338,1041.6900000111325,-0.05518101253070158 +208339,1041.6950000111326,-0.0551809662896179 +208340,1041.7000000111327,-0.0551809200465127 +208341,1041.7050000111328,-0.05518087380138594 +208342,1041.710000011133,-0.055180827554237595 +208343,1041.715000011133,-0.055180781305067615 +208344,1041.7200000111332,-0.055180735053875954 +208345,1041.7250000111333,-0.05518068880066258 +208346,1041.7300000111334,-0.05518064254542745 +208347,1041.7350000111335,-0.05518059628817052 +208348,1041.7400000111336,-0.05518055002889176 +208349,1041.7450000111337,-0.05518050376759112 +208350,1041.7500000111338,-0.05518045750426856 +208351,1041.755000011134,-0.05518041123892404 +208352,1041.760000011134,-0.05518036497155751 +208353,1041.7650000111341,-0.05518031870216895 +208354,1041.7700000111342,-0.055180272430758306 +208355,1041.7750000111344,-0.05518022615732553 +208356,1041.7800000111345,-0.0551801798818706 +208357,1041.7850000111346,-0.055180133604393465 +208358,1041.7900000111347,-0.05518008732489409 +208359,1041.7950000111348,-0.05518004104337243 +208360,1041.800000011135,-0.05517999475982843 +208361,1041.805000011135,-0.05517994847426208 +208362,1041.8100000111351,-0.05517990218667332 +208363,1041.8150000111352,-0.05517985589706211 +208364,1041.8200000111353,-0.05517980960542842 +208365,1041.8250000111354,-0.05517976331177219 +208366,1041.8300000111356,-0.055179717016093394 +208367,1041.8350000111357,-0.05517967071839199 +208368,1041.8400000111358,-0.05517962441866793 +208369,1041.8450000111359,-0.05517957811692118 +208370,1041.850000011136,-0.055179531813151696 +208371,1041.855000011136,-0.055179485507359446 +208372,1041.8600000111362,-0.05517943919954439 +208373,1041.8650000111363,-0.055179392889706476 +208374,1041.8700000111364,-0.05517934657784568 +208375,1041.8750000111365,-0.055179300263961936 +208376,1041.8800000111366,-0.05517925394805522 +208377,1041.8850000111368,-0.05517920763012549 +208378,1041.8900000111369,-0.055179161310172704 +208379,1041.895000011137,-0.05517911498819683 +208380,1041.900000011137,-0.05517906866419781 +208381,1041.9050000111372,-0.05517902233817563 +208382,1041.9100000111373,-0.05517897601013023 +208383,1041.9150000111374,-0.05517892968006156 +208384,1041.9200000111375,-0.0551788833479696 +208385,1041.9250000111376,-0.05517883701385431 +208386,1041.9300000111377,-0.055178790677715625 +208387,1041.9350000111378,-0.05517874433955353 +208388,1041.940000011138,-0.05517869799936797 +208389,1041.945000011138,-0.05517865165715891 +208390,1041.9500000111382,-0.05517860531292632 +208391,1041.9550000111383,-0.055178558966670156 +208392,1041.9600000111384,-0.05517851261839036 +208393,1041.9650000111385,-0.055178466268086895 +208394,1041.9700000111386,-0.05517841991575973 +208395,1041.9750000111387,-0.05517837356140883 +208396,1041.9800000111388,-0.05517832720503415 +208397,1041.985000011139,-0.05517828084663565 +208398,1041.990000011139,-0.055178234486213285 +208399,1041.9950000111392,-0.055178188123767014 +208400,1042.0000000111393,-0.055178141759296806 +208401,1042.0050000111394,-0.055178095392802606 +208402,1042.0100000111395,-0.055178049024284394 +208403,1042.0150000111396,-0.05517800265374211 +208404,1042.0200000111397,-0.05517795628117573 +208405,1042.0250000111398,-0.055177909906585186 +208406,1042.03000001114,-0.055177863529970464 +208407,1042.03500001114,-0.05517781715133153 +208408,1042.0400000111401,-0.05517777077066832 +208409,1042.0450000111402,-0.055177724387980805 +208410,1042.0500000111404,-0.05517767800326894 +208411,1042.0550000111405,-0.0551776316165327 +208412,1042.0600000111406,-0.05517758522777203 +208413,1042.0650000111407,-0.05517753883698689 +208414,1042.0700000111408,-0.05517749244417723 +208415,1042.075000011141,-0.05517744604934305 +208416,1042.080000011141,-0.05517739965248427 +208417,1042.0850000111411,-0.055177353253600854 +208418,1042.0900000111412,-0.05517730685269278 +208419,1042.0950000111413,-0.05517726044976 +208420,1042.1000000111414,-0.05517721404480247 +208421,1042.1050000111416,-0.05517716763782015 +208422,1042.1100000111417,-0.055177121228813006 +208423,1042.1150000111418,-0.055177074817780995 +208424,1042.1200000111419,-0.05517702840472407 +208425,1042.125000011142,-0.0551769819896422 +208426,1042.130000011142,-0.05517693557253534 +208427,1042.1350000111422,-0.05517688915340345 +208428,1042.1400000111423,-0.0551768427322465 +208429,1042.1450000111424,-0.05517679630906443 +208430,1042.1500000111425,-0.055176749883857214 +208431,1042.1550000111426,-0.05517670345662481 +208432,1042.1600000111428,-0.055176657027367175 +208433,1042.1650000111429,-0.05517661059608426 +208434,1042.170000011143,-0.05517656416277605 +208435,1042.175000011143,-0.05517651772744249 +208436,1042.1800000111432,-0.05517647129008354 +208437,1042.1850000111433,-0.055176424850699166 +208438,1042.1900000111434,-0.055176378409289316 +208439,1042.1950000111435,-0.05517633196585395 +208440,1042.2000000111436,-0.05517628552039304 +208441,1042.2050000111437,-0.055176239072906544 +208442,1042.2100000111438,-0.05517619262339442 +208443,1042.215000011144,-0.055176146171856615 +208444,1042.220000011144,-0.055176099718293105 +208445,1042.2250000111442,-0.05517605326270385 +208446,1042.2300000111443,-0.055176006805088794 +208447,1042.2350000111444,-0.05517596034544791 +208448,1042.2400000111445,-0.05517591388378115 +208449,1042.2450000111446,-0.055175867420088495 +208450,1042.2500000111447,-0.05517582095436988 +208451,1042.2550000111448,-0.055175774486625286 +208452,1042.260000011145,-0.055175728016854664 +208453,1042.265000011145,-0.05517568154505797 +208454,1042.2700000111452,-0.055175635071235164 +208455,1042.2750000111453,-0.0551755885953862 +208456,1042.2800000111454,-0.05517554211751106 +208457,1042.2850000111455,-0.055175495637609685 +208458,1042.2900000111456,-0.055175449155682045 +208459,1042.2950000111457,-0.055175402671728095 +208460,1042.3000000111458,-0.05517535618574779 +208461,1042.305000011146,-0.0551753096977411 +208462,1042.310000011146,-0.055175263207707985 +208463,1042.3150000111461,-0.055175216715648394 +208464,1042.3200000111462,-0.0551751702215623 +208465,1042.3250000111464,-0.05517512372544965 +208466,1042.3300000111465,-0.05517507722731042 +208467,1042.3350000111466,-0.05517503072714456 +208468,1042.3400000111467,-0.055174984224952026 +208469,1042.3450000111468,-0.055174937720732786 +208470,1042.350000011147,-0.05517489121448681 +208471,1042.355000011147,-0.05517484470621403 +208472,1042.3600000111471,-0.055174798195914435 +208473,1042.3650000111472,-0.05517475168358797 +208474,1042.3700000111473,-0.0551747051692346 +208475,1042.3750000111474,-0.05517465865285428 +208476,1042.3800000111476,-0.05517461213444697 +208477,1042.3850000111477,-0.055174565614012634 +208478,1042.3900000111478,-0.05517451909155124 +208479,1042.3950000111479,-0.05517447256706274 +208480,1042.400000011148,-0.05517442604054709 +208481,1042.405000011148,-0.055174379512004254 +208482,1042.4100000111482,-0.05517433298143419 +208483,1042.4150000111483,-0.055174286448836866 +208484,1042.4200000111484,-0.05517423991421224 +208485,1042.4250000111485,-0.05517419337756027 +208486,1042.4300000111486,-0.055174146838880916 +208487,1042.4350000111488,-0.05517410029817414 +208488,1042.4400000111489,-0.0551740537554399 +208489,1042.445000011149,-0.05517400721067816 +208490,1042.450000011149,-0.05517396066388886 +208491,1042.4550000111492,-0.055173914115072 +208492,1042.4600000111493,-0.05517386756422749 +208493,1042.4650000111494,-0.05517382101135533 +208494,1042.4700000111495,-0.05517377445645548 +208495,1042.4750000111496,-0.055173727899527875 +208496,1042.4800000111497,-0.0551736813405725 +208497,1042.4850000111499,-0.055173634779589295 +208498,1042.49000001115,-0.05517358821657824 +208499,1042.49500001115,-0.05517354165153928 +208500,1042.5000000111502,-0.055173495084472376 +208501,1042.5050000111503,-0.055173448515377504 +208502,1042.5100000111504,-0.05517340194425461 +208503,1042.5150000111505,-0.055173355371103655 +208504,1042.5200000111506,-0.0551733087959246 +208505,1042.5250000111507,-0.05517326221871741 +208506,1042.5300000111508,-0.05517321563948204 +208507,1042.535000011151,-0.05517316905821845 +208508,1042.540000011151,-0.0551731224749266 +208509,1042.5450000111512,-0.05517307588960647 +208510,1042.5500000111513,-0.05517302930225799 +208511,1042.5550000111514,-0.05517298271288114 +208512,1042.5600000111515,-0.05517293612147587 +208513,1042.5650000111516,-0.05517288952804215 +208514,1042.5700000111517,-0.055172842932579944 +208515,1042.5750000111518,-0.05517279633508919 +208516,1042.580000011152,-0.05517274973556987 +208517,1042.585000011152,-0.05517270313402193 +208518,1042.5900000111521,-0.055172656530445355 +208519,1042.5950000111523,-0.05517260992484008 +208520,1042.6000000111524,-0.05517256331720607 +208521,1042.6050000111525,-0.0551725167075433 +208522,1042.6100000111526,-0.05517247009585171 +208523,1042.6150000111527,-0.05517242348213128 +208524,1042.6200000111528,-0.055172376866381954 +208525,1042.625000011153,-0.0551723302486037 +208526,1042.630000011153,-0.05517228362879648 +208527,1042.6350000111531,-0.055172237006960244 +208528,1042.6400000111532,-0.055172190383094975 +208529,1042.6450000111533,-0.055172143757200615 +208530,1042.6500000111535,-0.055172097129277134 +208531,1042.6550000111536,-0.055172050499324485 +208532,1042.6600000111537,-0.055172003867342626 +208533,1042.6650000111538,-0.05517195723333153 +208534,1042.670000011154,-0.055171910597291145 +208535,1042.675000011154,-0.05517186395922144 +208536,1042.680000011154,-0.05517181731912237 +208537,1042.6850000111542,-0.055171770676993886 +208538,1042.6900000111543,-0.05517172403283597 +208539,1042.6950000111544,-0.05517167738664857 +208540,1042.7000000111545,-0.05517163073843166 +208541,1042.7050000111547,-0.055171584088185184 +208542,1042.7100000111548,-0.055171537435909114 +208543,1042.7150000111549,-0.05517149078160341 +208544,1042.720000011155,-0.055171444125268025 +208545,1042.725000011155,-0.055171397466902916 +208546,1042.7300000111552,-0.05517135080650806 +208547,1042.7350000111553,-0.055171304144083395 +208548,1042.7400000111554,-0.05517125747962891 +208549,1042.7450000111555,-0.05517121081314454 +208550,1042.7500000111556,-0.055171164144630254 +208551,1042.7550000111557,-0.05517111747408602 +208552,1042.7600000111559,-0.05517107080151179 +208553,1042.765000011156,-0.055171024126907525 +208554,1042.770000011156,-0.0551709774502732 +208555,1042.7750000111562,-0.055170930771608756 +208556,1042.7800000111563,-0.05517088409091416 +208557,1042.7850000111564,-0.055170837408189385 +208558,1042.7900000111565,-0.05517079072343438 +208559,1042.7950000111566,-0.055170744036649115 +208560,1042.8000000111567,-0.055170697347833524 +208561,1042.8050000111568,-0.055170650656987605 +208562,1042.810000011157,-0.055170603964111296 +208563,1042.815000011157,-0.05517055726920455 +208564,1042.8200000111572,-0.05517051057226735 +208565,1042.8250000111573,-0.05517046387329964 +208566,1042.8300000111574,-0.0551704171723014 +208567,1042.8350000111575,-0.05517037046927257 +208568,1042.8400000111576,-0.055170323764213124 +208569,1042.8450000111577,-0.05517027705712302 +208570,1042.8500000111578,-0.05517023034800221 +208571,1042.855000011158,-0.05517018363685067 +208572,1042.860000011158,-0.05517013692366834 +208573,1042.8650000111581,-0.055170090208455196 +208574,1042.8700000111583,-0.055170043491211206 +208575,1042.8750000111584,-0.05516999677193631 +208576,1042.8800000111585,-0.05516995005063049 +208577,1042.8850000111586,-0.0551699033272937 +208578,1042.8900000111587,-0.05516985660192589 +208579,1042.8950000111588,-0.05516980987452702 +208580,1042.900000011159,-0.05516976314509706 +208581,1042.905000011159,-0.05516971641363598 +208582,1042.9100000111591,-0.05516966968014373 +208583,1042.9150000111592,-0.05516962294462026 +208584,1042.9200000111593,-0.05516957620706555 +208585,1042.9250000111595,-0.05516952946747955 +208586,1042.9300000111596,-0.05516948272586222 +208587,1042.9350000111597,-0.05516943598221354 +208588,1042.9400000111598,-0.05516938923653345 +208589,1042.94500001116,-0.05516934248882191 +208590,1042.95000001116,-0.05516929573907889 +208591,1042.95500001116,-0.05516924898730436 +208592,1042.9600000111602,-0.055169202233498256 +208593,1042.9650000111603,-0.055169155477660554 +208594,1042.9700000111604,-0.055169108719791214 +208595,1042.9750000111605,-0.0551690619598902 +208596,1042.9800000111607,-0.055169015197957465 +208597,1042.9850000111608,-0.05516896843399297 +208598,1042.9900000111609,-0.05516892166799669 +208599,1042.995000011161,-0.05516887489996857 +208600,1043.000000011161,-0.05516882812990858 +208601,1043.0050000111612,-0.05516878135781667 +208602,1043.0100000111613,-0.05516873458369283 +208603,1043.0150000111614,-0.05516868780753698 +208604,1043.0200000111615,-0.05516864102934912 +208605,1043.0250000111616,-0.05516859424912917 +208606,1043.0300000111617,-0.05516854746687713 +208607,1043.0350000111619,-0.055168500682592936 +208608,1043.040000011162,-0.05516845389627656 +208609,1043.045000011162,-0.05516840710792796 +208610,1043.0500000111622,-0.0551683603175471 +208611,1043.0550000111623,-0.055168313525133926 +208612,1043.0600000111624,-0.05516826673068842 +208613,1043.0650000111625,-0.055168219934210526 +208614,1043.0700000111626,-0.055168173135700216 +208615,1043.0750000111627,-0.055168126335157455 +208616,1043.0800000111628,-0.05516807953258218 +208617,1043.085000011163,-0.05516803272797438 +208618,1043.090000011163,-0.05516798592133401 +208619,1043.0950000111632,-0.05516793911266102 +208620,1043.1000000111633,-0.05516789230195538 +208621,1043.1050000111634,-0.05516784548921704 +208622,1043.1100000111635,-0.055167798674445975 +208623,1043.1150000111636,-0.055167751857642146 +208624,1043.1200000111637,-0.0551677050388055 +208625,1043.1250000111638,-0.05516765821793601 +208626,1043.130000011164,-0.055167611395033636 +208627,1043.135000011164,-0.055167564570098325 +208628,1043.1400000111641,-0.05516751774313005 +208629,1043.1450000111643,-0.05516747091412878 +208630,1043.1500000111644,-0.055167424083094475 +208631,1043.1550000111645,-0.055167377250027086 +208632,1043.1600000111646,-0.055167330414926566 +208633,1043.1650000111647,-0.0551672835777929 +208634,1043.1700000111648,-0.05516723673862603 +208635,1043.175000011165,-0.05516718989742593 +208636,1043.180000011165,-0.05516714305419255 +208637,1043.1850000111651,-0.055167096208925855 +208638,1043.1900000111652,-0.055167049361625815 +208639,1043.1950000111653,-0.055167002512292375 +208640,1043.2000000111655,-0.0551669556609255 +208641,1043.2050000111656,-0.055166908807525165 +208642,1043.2100000111657,-0.05516686195209131 +208643,1043.2150000111658,-0.055166815094623914 +208644,1043.220000011166,-0.05516676823512293 +208645,1043.225000011166,-0.05516672137358833 +208646,1043.230000011166,-0.05516667451002006 +208647,1043.2350000111662,-0.055166627644418084 +208648,1043.2400000111663,-0.05516658077678238 +208649,1043.2450000111664,-0.055166533907112895 +208650,1043.2500000111665,-0.05516648703540959 +208651,1043.2550000111667,-0.05516644016167243 +208652,1043.2600000111668,-0.055166393285901366 +208653,1043.2650000111669,-0.05516634640809636 +208654,1043.270000011167,-0.055166299528257384 +208655,1043.275000011167,-0.05516625264638441 +208656,1043.2800000111672,-0.055166205762477376 +208657,1043.2850000111673,-0.055166158876536246 +208658,1043.2900000111674,-0.05516611198856099 +208659,1043.2950000111675,-0.05516606509855157 +208660,1043.3000000111676,-0.05516601820650795 +208661,1043.3050000111677,-0.055165971312430076 +208662,1043.3100000111679,-0.05516592441631792 +208663,1043.315000011168,-0.055165877518171445 +208664,1043.320000011168,-0.05516583061799061 +208665,1043.3250000111682,-0.05516578371577538 +208666,1043.3300000111683,-0.05516573681152571 +208667,1043.3350000111684,-0.05516568990524155 +208668,1043.3400000111685,-0.055165642996922885 +208669,1043.3450000111686,-0.055165596086569665 +208670,1043.3500000111687,-0.05516554917418185 +208671,1043.3550000111688,-0.05516550225975941 +208672,1043.360000011169,-0.055165455343302285 +208673,1043.365000011169,-0.05516540842481045 +208674,1043.3700000111692,-0.05516536150428388 +208675,1043.3750000111693,-0.05516531458172251 +208676,1043.3800000111694,-0.05516526765712632 +208677,1043.3850000111695,-0.055165220730495276 +208678,1043.3900000111696,-0.05516517380182933 +208679,1043.3950000111697,-0.055165126871128435 +208680,1043.4000000111698,-0.055165079938392564 +208681,1043.40500001117,-0.055165033003621675 +208682,1043.41000001117,-0.05516498606681573 +208683,1043.4150000111702,-0.05516493912797469 +208684,1043.4200000111703,-0.05516489218709852 +208685,1043.4250000111704,-0.05516484524418716 +208686,1043.4300000111705,-0.055164798299240606 +208687,1043.4350000111706,-0.05516475135225879 +208688,1043.4400000111707,-0.055164704403241685 +208689,1043.4450000111708,-0.055164657452189264 +208690,1043.450000011171,-0.05516461049910147 +208691,1043.455000011171,-0.05516456354397828 +208692,1043.4600000111711,-0.055164516586819645 +208693,1043.4650000111712,-0.05516446962762552 +208694,1043.4700000111714,-0.05516442266639588 +208695,1043.4750000111715,-0.05516437570313069 +208696,1043.4800000111716,-0.05516432873782989 +208697,1043.4850000111717,-0.05516428177049346 +208698,1043.4900000111718,-0.055164234801121356 +208699,1043.495000011172,-0.055164187829713544 +208700,1043.500000011172,-0.05516414085626998 +208701,1043.5050000111721,-0.05516409388079063 +208702,1043.5100000111722,-0.05516404690327545 +208703,1043.5150000111723,-0.05516399992372441 +208704,1043.5200000111724,-0.05516395294213744 +208705,1043.5250000111726,-0.05516390595851455 +208706,1043.5300000111727,-0.05516385897285567 +208707,1043.5350000111728,-0.055163811985160766 +208708,1043.5400000111729,-0.055163764995429805 +208709,1043.545000011173,-0.05516371800366275 +208710,1043.550000011173,-0.055163671009859555 +208711,1043.5550000111732,-0.05516362401402019 +208712,1043.5600000111733,-0.055163577016144605 +208713,1043.5650000111734,-0.05516353001623277 +208714,1043.5700000111735,-0.05516348301428465 +208715,1043.5750000111736,-0.0551634360103002 +208716,1043.5800000111738,-0.05516338900427938 +208717,1043.5850000111739,-0.05516334199622216 +208718,1043.590000011174,-0.05516329498612849 +208719,1043.595000011174,-0.05516324797399834 +208720,1043.6000000111742,-0.05516320095983167 +208721,1043.6050000111743,-0.055163153943628446 +208722,1043.6100000111744,-0.055163106925388616 +208723,1043.6150000111745,-0.055163059905112166 +208724,1043.6200000111746,-0.055163012882799026 +208725,1043.6250000111747,-0.05516296585844919 +208726,1043.6300000111748,-0.05516291883206259 +208727,1043.635000011175,-0.055162871803639206 +208728,1043.640000011175,-0.055162824773179 +208729,1043.6450000111752,-0.05516277774068192 +208730,1043.6500000111753,-0.055162730706147925 +208731,1043.6550000111754,-0.055162683669576995 +208732,1043.6600000111755,-0.05516263663096909 +208733,1043.6650000111756,-0.05516258959032416 +208734,1043.6700000111757,-0.05516254254764218 +208735,1043.6750000111758,-0.05516249550292309 +208736,1043.680000011176,-0.05516244845616687 +208737,1043.685000011176,-0.05516240140737348 +208738,1043.6900000111762,-0.055162354356542875 +208739,1043.6950000111763,-0.05516230730367502 +208740,1043.7000000111764,-0.055162260248769884 +208741,1043.7050000111765,-0.055162213191827424 +208742,1043.7100000111766,-0.05516216613284759 +208743,1043.7150000111767,-0.05516211907183035 +208744,1043.7200000111768,-0.05516207200877567 +208745,1043.725000011177,-0.0551620249436835 +208746,1043.730000011177,-0.05516197787655384 +208747,1043.7350000111771,-0.0551619308073866 +208748,1043.7400000111772,-0.05516188373618178 +208749,1043.7450000111774,-0.05516183666293932 +208750,1043.7500000111775,-0.05516178958765919 +208751,1043.7550000111776,-0.055161742510341345 +208752,1043.7600000111777,-0.05516169543098576 +208753,1043.7650000111778,-0.05516164834959238 +208754,1043.770000011178,-0.05516160126616119 +208755,1043.775000011178,-0.05516155418069212 +208756,1043.7800000111781,-0.055161507093185166 +208757,1043.7850000111782,-0.05516146000364027 +208758,1043.7900000111783,-0.0551614129120574 +208759,1043.7950000111784,-0.05516136581843651 +208760,1043.8000000111786,-0.05516131872277757 +208761,1043.8050000111787,-0.055161271625080534 +208762,1043.8100000111788,-0.05516122452534536 +208763,1043.8150000111789,-0.05516117742357203 +208764,1043.820000011179,-0.05516113031976049 +208765,1043.825000011179,-0.0551610832139107 +208766,1043.8300000111792,-0.055161036106022625 +208767,1043.8350000111793,-0.05516098899609622 +208768,1043.8400000111794,-0.05516094188413146 +208769,1043.8450000111795,-0.05516089477012831 +208770,1043.8500000111796,-0.05516084765408672 +208771,1043.8550000111798,-0.055160800536006666 +208772,1043.8600000111799,-0.05516075341588808 +208773,1043.86500001118,-0.05516070629373095 +208774,1043.87000001118,-0.05516065916953524 +208775,1043.8750000111802,-0.0551606120433009 +208776,1043.8800000111803,-0.05516056491502789 +208777,1043.8850000111804,-0.05516051778471618 +208778,1043.8900000111805,-0.055160470652365734 +208779,1043.8950000111806,-0.055160423517976495 +208780,1043.9000000111807,-0.05516037638154845 +208781,1043.9050000111808,-0.055160329243081535 +208782,1043.910000011181,-0.05516028210257574 +208783,1043.915000011181,-0.05516023496003101 +208784,1043.9200000111812,-0.0551601878154473 +208785,1043.9250000111813,-0.055160140668824596 +208786,1043.9300000111814,-0.05516009352016283 +208787,1043.9350000111815,-0.05516004636946199 +208788,1043.9400000111816,-0.05515999921672203 +208789,1043.9450000111817,-0.05515995206194291 +208790,1043.9500000111818,-0.055159904905124575 +208791,1043.955000011182,-0.055159857746267006 +208792,1043.960000011182,-0.055159810585370166 +208793,1043.9650000111822,-0.05515976342243401 +208794,1043.9700000111823,-0.05515971625745852 +208795,1043.9750000111824,-0.05515966909044361 +208796,1043.9800000111825,-0.05515962192138929 +208797,1043.9850000111826,-0.05515957475029551 +208798,1043.9900000111827,-0.05515952757716221 +208799,1043.9950000111828,-0.05515948040198937 +208800,1044.000000011183,-0.05515943322477696 +208801,1044.005000011183,-0.05515938604552493 +208802,1044.0100000111831,-0.055159338864233236 +208803,1044.0150000111832,-0.05515929168090185 +208804,1044.0200000111834,-0.05515924449553073 +208805,1044.0250000111835,-0.05515919730811984 +208806,1044.0300000111836,-0.05515915011866915 +208807,1044.0350000111837,-0.055159102927178606 +208808,1044.0400000111838,-0.05515905573364819 +208809,1044.045000011184,-0.05515900853807784 +208810,1044.050000011184,-0.05515896134046753 +208811,1044.0550000111841,-0.055158914140817215 +208812,1044.0600000111842,-0.05515886693912687 +208813,1044.0650000111843,-0.05515881973539645 +208814,1044.0700000111844,-0.05515877252962592 +208815,1044.0750000111846,-0.05515872532181524 +208816,1044.0800000111847,-0.055158678111964364 +208817,1044.0850000111848,-0.055158630900073266 +208818,1044.0900000111849,-0.0551585836861419 +208819,1044.095000011185,-0.05515853647017024 +208820,1044.100000011185,-0.05515848925215822 +208821,1044.1050000111852,-0.05515844203210584 +208822,1044.1100000111853,-0.055158394810013035 +208823,1044.1150000111854,-0.055158347585879786 +208824,1044.1200000111855,-0.055158300359706036 +208825,1044.1250000111856,-0.055158253131491745 +208826,1044.1300000111858,-0.0551582059012369 +208827,1044.1350000111859,-0.05515815866894144 +208828,1044.140000011186,-0.05515811143460535 +208829,1044.145000011186,-0.05515806419822856 +208830,1044.1500000111862,-0.055158016959811054 +208831,1044.1550000111863,-0.055157969719352794 +208832,1044.1600000111864,-0.05515792247685373 +208833,1044.1650000111865,-0.05515787523231383 +208834,1044.1700000111866,-0.055157827985733064 +208835,1044.1750000111867,-0.055157780737111396 +208836,1044.1800000111868,-0.05515773348644878 +208837,1044.185000011187,-0.055157686233745166 +208838,1044.190000011187,-0.05515763897900054 +208839,1044.1950000111872,-0.05515759172221485 +208840,1044.2000000111873,-0.05515754446338805 +208841,1044.2050000111874,-0.05515749720252012 +208842,1044.2100000111875,-0.05515744993961101 +208843,1044.2150000111876,-0.05515740267466069 +208844,1044.2200000111877,-0.05515735540766912 +208845,1044.2250000111878,-0.05515730813863626 +208846,1044.230000011188,-0.05515726086756206 +208847,1044.235000011188,-0.0551572135944465 +208848,1044.2400000111882,-0.05515716631928955 +208849,1044.2450000111883,-0.05515711904209114 +208850,1044.2500000111884,-0.05515707176285126 +208851,1044.2550000111885,-0.055157024481569866 +208852,1044.2600000111886,-0.05515697719824692 +208853,1044.2650000111887,-0.055156929912882374 +208854,1044.2700000111888,-0.0551568826254762 +208855,1044.275000011189,-0.055156835336028366 +208856,1044.280000011189,-0.055156788044538815 +208857,1044.2850000111891,-0.05515674075100754 +208858,1044.2900000111892,-0.05515669345543447 +208859,1044.2950000111894,-0.05515664615781958 +208860,1044.3000000111895,-0.05515659885816284 +208861,1044.3050000111896,-0.05515655155646419 +208862,1044.3100000111897,-0.05515650425272362 +208863,1044.3150000111898,-0.05515645694694108 +208864,1044.32000001119,-0.05515640963911652 +208865,1044.32500001119,-0.05515636232924992 +208866,1044.3300000111901,-0.05515631501734123 +208867,1044.3350000111902,-0.05515626770339043 +208868,1044.3400000111903,-0.05515622038739745 +208869,1044.3450000111905,-0.055156173069362296 +208870,1044.3500000111906,-0.0551561257492849 +208871,1044.3550000111907,-0.05515607842716523 +208872,1044.3600000111908,-0.055156031103003246 +208873,1044.365000011191,-0.05515598377679892 +208874,1044.370000011191,-0.0551559364485522 +208875,1044.375000011191,-0.055155889118263066 +208876,1044.3800000111912,-0.055155841785931456 +208877,1044.3850000111913,-0.055155794451557355 +208878,1044.3900000111914,-0.055155747115140714 +208879,1044.3950000111915,-0.0551556997766815 +208880,1044.4000000111917,-0.05515565243617967 +208881,1044.4050000111918,-0.055155605093635186 +208882,1044.4100000111919,-0.05515555774904802 +208883,1044.415000011192,-0.05515551040241812 +208884,1044.420000011192,-0.05515546305374547 +208885,1044.4250000111922,-0.05515541570303 +208886,1044.4300000111923,-0.055155368350271704 +208887,1044.4350000111924,-0.05515532099547052 +208888,1044.4400000111925,-0.05515527363862643 +208889,1044.4450000111926,-0.05515522627973938 +208890,1044.4500000111927,-0.05515517891880934 +208891,1044.4550000111929,-0.055155131555836276 +208892,1044.460000011193,-0.05515508419082015 +208893,1044.465000011193,-0.05515503682376091 +208894,1044.4700000111932,-0.055154989454658535 +208895,1044.4750000111933,-0.05515494208351298 +208896,1044.4800000111934,-0.0551548947103242 +208897,1044.4850000111935,-0.05515484733509217 +208898,1044.4900000111936,-0.05515479995781685 +208899,1044.4950000111937,-0.0551547525784982 +208900,1044.5000000111938,-0.055154705197136195 +208901,1044.505000011194,-0.05515465781373078 +208902,1044.510000011194,-0.05515461042828192 +208903,1044.5150000111942,-0.05515456304078957 +208904,1044.5200000111943,-0.055154515651253705 +208905,1044.5250000111944,-0.05515446825967429 +208906,1044.5300000111945,-0.05515442086605128 +208907,1044.5350000111946,-0.05515437347038464 +208908,1044.5400000111947,-0.05515432607267432 +208909,1044.5450000111948,-0.0551542786729203 +208910,1044.550000011195,-0.05515423127112254 +208911,1044.555000011195,-0.05515418386728099 +208912,1044.5600000111951,-0.05515413646139562 +208913,1044.5650000111953,-0.05515408905346641 +208914,1044.5700000111954,-0.05515404164349329 +208915,1044.5750000111955,-0.05515399423147623 +208916,1044.5800000111956,-0.05515394681741522 +208917,1044.5850000111957,-0.055153899401310186 +208918,1044.5900000111958,-0.05515385198316112 +208919,1044.595000011196,-0.055153804562967965 +208920,1044.600000011196,-0.05515375714073069 +208921,1044.6050000111961,-0.055153709716449256 +208922,1044.6100000111962,-0.05515366229012362 +208923,1044.6150000111963,-0.055153614861753755 +208924,1044.6200000111965,-0.055153567431339624 +208925,1044.6250000111966,-0.055153519998881184 +208926,1044.6300000111967,-0.05515347256437839 +208927,1044.6350000111968,-0.05515342512783122 +208928,1044.640000011197,-0.05515337768923962 +208929,1044.645000011197,-0.05515333024860357 +208930,1044.650000011197,-0.055153282805923014 +208931,1044.6550000111972,-0.05515323536119793 +208932,1044.6600000111973,-0.055153187914428276 +208933,1044.6650000111974,-0.055153140465614 +208934,1044.6700000111975,-0.055153093014755086 +208935,1044.6750000111977,-0.05515304556185149 +208936,1044.6800000111978,-0.05515299810690317 +208937,1044.6850000111979,-0.0551529506499101 +208938,1044.690000011198,-0.055152903190872224 +208939,1044.695000011198,-0.05515285572978951 +208940,1044.7000000111982,-0.05515280826666192 +208941,1044.7050000111983,-0.05515276080148944 +208942,1044.7100000111984,-0.055152713334272 +208943,1044.7150000111985,-0.05515266586500957 +208944,1044.7200000111986,-0.05515261839370211 +208945,1044.7250000111987,-0.05515257092034961 +208946,1044.7300000111989,-0.055152523444951994 +208947,1044.735000011199,-0.05515247596750926 +208948,1044.740000011199,-0.05515242848802134 +208949,1044.7450000111992,-0.05515238100648823 +208950,1044.7500000111993,-0.05515233352290986 +208951,1044.7550000111994,-0.055152286037286204 +208952,1044.7600000111995,-0.055152238549617226 +208953,1044.7650000111996,-0.05515219105990289 +208954,1044.7700000111997,-0.05515214356814316 +208955,1044.7750000111998,-0.05515209607433799 +208956,1044.7800000112,-0.05515204857848734 +208957,1044.7850000112,-0.05515200108059119 +208958,1044.7900000112002,-0.05515195358064949 +208959,1044.7950000112003,-0.05515190607866221 +208960,1044.8000000112004,-0.0551518585746293 +208961,1044.8050000112005,-0.05515181106855073 +208962,1044.8100000112006,-0.05515176356042646 +208963,1044.8150000112007,-0.055151716050256455 +208964,1044.8200000112008,-0.05515166853804068 +208965,1044.825000011201,-0.0551516210237791 +208966,1044.830000011201,-0.05515157350747167 +208967,1044.8350000112011,-0.055151525989118357 +208968,1044.8400000112013,-0.05515147846871912 +208969,1044.8450000112014,-0.05515143094627392 +208970,1044.8500000112015,-0.055151383421782725 +208971,1044.8550000112016,-0.0551513358952455 +208972,1044.8600000112017,-0.055151288366662186 +208973,1044.8650000112018,-0.05515124083603277 +208974,1044.870000011202,-0.0551511933033572 +208975,1044.875000011202,-0.05515114576863546 +208976,1044.8800000112021,-0.05515109823186749 +208977,1044.8850000112022,-0.05515105069305327 +208978,1044.8900000112023,-0.05515100315219274 +208979,1044.8950000112025,-0.05515095560928589 +208980,1044.9000000112026,-0.055150908064332656 +208981,1044.9050000112027,-0.05515086051733302 +208982,1044.9100000112028,-0.05515081296828693 +208983,1044.915000011203,-0.05515076541719435 +208984,1044.920000011203,-0.05515071786405525 +208985,1044.925000011203,-0.055150670308869595 +208986,1044.9300000112032,-0.055150622751637346 +208987,1044.9350000112033,-0.05515057519235846 +208988,1044.9400000112034,-0.055150527631032904 +208989,1044.9450000112035,-0.055150480067660636 +208990,1044.9500000112037,-0.05515043250224163 +208991,1044.9550000112038,-0.055150384934775844 +208992,1044.9600000112039,-0.05515033736526323 +208993,1044.965000011204,-0.05515028979370375 +208994,1044.970000011204,-0.05515024222009739 +208995,1044.9750000112042,-0.05515019464444409 +208996,1044.9800000112043,-0.055150147066743815 +208997,1044.9850000112044,-0.05515009948699654 +208998,1044.9900000112045,-0.05515005190520222 +208999,1044.9950000112046,-0.055150004321360815 +209000,1045.0000000112047,-0.05514995673547229 +209001,1045.0050000112049,-0.055149909147536605 +209002,1045.010000011205,-0.055149861557553734 +209003,1045.015000011205,-0.05514981396552362 +209004,1045.0200000112052,-0.05514976637144625 +209005,1045.0250000112053,-0.055149718775321564 +209006,1045.0300000112054,-0.05514967117714953 +209007,1045.0350000112055,-0.055149623576930124 +209008,1045.0400000112056,-0.055149575974663294 +209009,1045.0450000112057,-0.055149528370349005 +209010,1045.0500000112058,-0.05514948076398723 +209011,1045.055000011206,-0.05514943315557792 +209012,1045.060000011206,-0.05514938554512105 +209013,1045.0650000112062,-0.05514933793261656 +209014,1045.0700000112063,-0.05514929031806443 +209015,1045.0750000112064,-0.05514924270146463 +209016,1045.0800000112065,-0.055149195082817105 +209017,1045.0850000112066,-0.05514914746212183 +209018,1045.0900000112067,-0.05514909983937877 +209019,1045.0950000112068,-0.05514905221458787 +209020,1045.100000011207,-0.05514900458774911 +209021,1045.105000011207,-0.05514895695886244 +209022,1045.1100000112071,-0.05514890932792783 +209023,1045.1150000112073,-0.05514886169494524 +209024,1045.1200000112074,-0.05514881405991464 +209025,1045.1250000112075,-0.05514876642283599 +209026,1045.1300000112076,-0.05514871878370924 +209027,1045.1350000112077,-0.05514867114253437 +209028,1045.1400000112078,-0.05514862349931133 +209029,1045.145000011208,-0.055148575854040094 +209030,1045.150000011208,-0.0551485282067206 +209031,1045.1550000112081,-0.055148480557352844 +209032,1045.1600000112082,-0.055148432905936774 +209033,1045.1650000112083,-0.05514838525247235 +209034,1045.1700000112085,-0.055148337596959536 +209035,1045.1750000112086,-0.0551482899393983 +209036,1045.1800000112087,-0.05514824227978859 +209037,1045.1850000112088,-0.05514819461813039 +209038,1045.190000011209,-0.05514814695442365 +209039,1045.195000011209,-0.05514809928866834 +209040,1045.200000011209,-0.05514805162086441 +209041,1045.2050000112092,-0.05514800395101183 +209042,1045.2100000112093,-0.05514795627911056 +209043,1045.2150000112094,-0.05514790860516057 +209044,1045.2200000112095,-0.05514786092916181 +209045,1045.2250000112097,-0.05514781325111426 +209046,1045.2300000112098,-0.05514776557101787 +209047,1045.2350000112099,-0.055147717888872606 +209048,1045.24000001121,-0.05514767020467844 +209049,1045.24500001121,-0.055147622518435316 +209050,1045.2500000112102,-0.055147574830143216 +209051,1045.2550000112103,-0.055147527139802095 +209052,1045.2600000112104,-0.05514747944741191 +209053,1045.2650000112105,-0.05514743175297264 +209054,1045.2700000112106,-0.05514738405648423 +209055,1045.2750000112108,-0.05514733635794664 +209056,1045.2800000112109,-0.05514728865735985 +209057,1045.285000011211,-0.055147240954723814 +209058,1045.290000011211,-0.05514719325003849 +209059,1045.2950000112112,-0.055147145543303834 +209060,1045.3000000112113,-0.05514709783451984 +209061,1045.3050000112114,-0.05514705012368645 +209062,1045.3100000112115,-0.055147002410803635 +209063,1045.3150000112116,-0.055146954695871345 +209064,1045.3200000112117,-0.05514690697888955 +209065,1045.3250000112118,-0.055146859259858204 +209066,1045.330000011212,-0.055146811538777284 +209067,1045.335000011212,-0.05514676381564675 +209068,1045.3400000112122,-0.055146716090466556 +209069,1045.3450000112123,-0.05514666836323667 +209070,1045.3500000112124,-0.055146620633957054 +209071,1045.3550000112125,-0.05514657290262767 +209072,1045.3600000112126,-0.05514652516924848 +209073,1045.3650000112127,-0.05514647743381946 +209074,1045.3700000112128,-0.05514642969634055 +209075,1045.375000011213,-0.05514638195681172 +209076,1045.380000011213,-0.055146334215232955 +209077,1045.3850000112132,-0.0551462864716042 +209078,1045.3900000112133,-0.05514623872592542 +209079,1045.3950000112134,-0.055146190978196556 +209080,1045.4000000112135,-0.05514614322841761 +209081,1045.4050000112136,-0.05514609547658853 +209082,1045.4100000112137,-0.05514604772270927 +209083,1045.4150000112138,-0.055145999966779796 +209084,1045.420000011214,-0.05514595220880007 +209085,1045.425000011214,-0.05514590444877006 +209086,1045.4300000112141,-0.05514585668668971 +209087,1045.4350000112142,-0.05514580892255901 +209088,1045.4400000112144,-0.05514576115637792 +209089,1045.4450000112145,-0.05514571338814639 +209090,1045.4500000112146,-0.05514566561786438 +209091,1045.4550000112147,-0.055145617845531875 +209092,1045.4600000112148,-0.055145570071148814 +209093,1045.465000011215,-0.055145522294715164 +209094,1045.470000011215,-0.055145474516230905 +209095,1045.4750000112151,-0.05514542673569598 +209096,1045.4800000112152,-0.05514537895311037 +209097,1045.4850000112153,-0.05514533116847402 +209098,1045.4900000112154,-0.0551452833817869 +209099,1045.4950000112156,-0.055145235593048965 +209100,1045.5000000112157,-0.055145187802260194 +209101,1045.5050000112158,-0.05514514000942054 +209102,1045.5100000112159,-0.055145092214529984 +209103,1045.515000011216,-0.05514504441758847 +209104,1045.520000011216,-0.055144996618595954 +209105,1045.5250000112162,-0.05514494881755242 +209106,1045.5300000112163,-0.05514490101445781 +209107,1045.5350000112164,-0.0551448532093121 +209108,1045.5400000112165,-0.055144805402115256 +209109,1045.5450000112166,-0.05514475759286722 +209110,1045.5500000112168,-0.055144709781567984 +209111,1045.5550000112169,-0.05514466196821749 +209112,1045.560000011217,-0.055144614152815706 +209113,1045.565000011217,-0.0551445663353626 +209114,1045.5700000112172,-0.055144518515858124 +209115,1045.5750000112173,-0.05514447069430224 +209116,1045.5800000112174,-0.055144422870694924 +209117,1045.5850000112175,-0.055144375045036144 +209118,1045.5900000112176,-0.05514432721732584 +209119,1045.5950000112177,-0.055144279387564 +209120,1045.6000000112178,-0.055144231555750566 +209121,1045.605000011218,-0.05514418372188551 +209122,1045.610000011218,-0.055144135885968795 +209123,1045.6150000112182,-0.05514408804800038 +209124,1045.6200000112183,-0.05514404020798024 +209125,1045.6250000112184,-0.05514399236590832 +209126,1045.6300000112185,-0.05514394452178459 +209127,1045.6350000112186,-0.05514389667560903 +209128,1045.6400000112187,-0.055143848827381575 +209129,1045.6450000112188,-0.055143800977102204 +209130,1045.650000011219,-0.055143753124770885 +209131,1045.655000011219,-0.05514370527038756 +209132,1045.6600000112192,-0.05514365741395221 +209133,1045.6650000112193,-0.055143609555464795 +209134,1045.6700000112194,-0.05514356169492527 +209135,1045.6750000112195,-0.05514351383233361 +209136,1045.6800000112196,-0.055143465967689764 +209137,1045.6850000112197,-0.05514341810099371 +209138,1045.6900000112198,-0.0551433702322454 +209139,1045.69500001122,-0.055143322361444806 +209140,1045.70000001122,-0.055143274488591874 +209141,1045.7050000112201,-0.05514322661368658 +209142,1045.7100000112202,-0.05514317873672889 +209143,1045.7150000112204,-0.05514313085771876 +209144,1045.7200000112205,-0.05514308297665616 +209145,1045.7250000112206,-0.05514303509354104 +209146,1045.7300000112207,-0.055142987208373385 +209147,1045.7350000112208,-0.05514293932115314 +209148,1045.740000011221,-0.055142891431880274 +209149,1045.745000011221,-0.05514284354055474 +209150,1045.7500000112211,-0.055142795647176515 +209151,1045.7550000112212,-0.05514274775174555 +209152,1045.7600000112213,-0.05514269985426181 +209153,1045.7650000112214,-0.055142651954725265 +209154,1045.7700000112216,-0.05514260405313588 +209155,1045.7750000112217,-0.055142556149493614 +209156,1045.7800000112218,-0.05514250824379843 +209157,1045.7850000112219,-0.055142460336050296 +209158,1045.790000011222,-0.055142412426249156 +209159,1045.795000011222,-0.055142364514394984 +209160,1045.8000000112222,-0.05514231660048776 +209161,1045.8050000112223,-0.05514226868452742 +209162,1045.8100000112224,-0.05514222076651395 +209163,1045.8150000112225,-0.0551421728464473 +209164,1045.8200000112226,-0.05514212492432742 +209165,1045.8250000112228,-0.055142077000154305 +209166,1045.8300000112229,-0.05514202907392789 +209167,1045.835000011223,-0.055141981145648146 +209168,1045.840000011223,-0.05514193321531505 +209169,1045.8450000112232,-0.05514188528292856 +209170,1045.8500000112233,-0.055141837348488626 +209171,1045.8550000112234,-0.055141789411995205 +209172,1045.8600000112235,-0.055141741473448296 +209173,1045.8650000112236,-0.05514169353284783 +209174,1045.8700000112237,-0.05514164559019378 +209175,1045.8750000112238,-0.0551415976454861 +209176,1045.880000011224,-0.05514154969872478 +209177,1045.885000011224,-0.05514150174990975 +209178,1045.8900000112242,-0.055141453799040986 +209179,1045.8950000112243,-0.05514140584611846 +209180,1045.9000000112244,-0.05514135789114212 +209181,1045.9050000112245,-0.05514130993411195 +209182,1045.9100000112246,-0.05514126197502789 +209183,1045.9150000112247,-0.05514121401388991 +209184,1045.9200000112248,-0.05514116605069798 +209185,1045.925000011225,-0.05514111808545205 +209186,1045.930000011225,-0.0551410701181521 +209187,1045.9350000112252,-0.05514102214879809 +209188,1045.9400000112253,-0.055140974177389966 +209189,1045.9450000112254,-0.05514092620392771 +209190,1045.9500000112255,-0.055140878228411266 +209191,1045.9550000112256,-0.05514083025084062 +209192,1045.9600000112257,-0.05514078227121573 +209193,1045.9650000112258,-0.05514073428953654 +209194,1045.970000011226,-0.05514068630580303 +209195,1045.975000011226,-0.05514063832001516 +209196,1045.9800000112261,-0.05514059033217289 +209197,1045.9850000112262,-0.055140542342276194 +209198,1045.9900000112264,-0.05514049435032502 +209199,1045.9950000112265,-0.05514044635631933 +209200,1046.0000000112266,-0.0551403983602591 +209201,1046.0050000112267,-0.05514035036214429 +209202,1046.0100000112268,-0.05514030236197486 +209203,1046.015000011227,-0.05514025435975077 +209204,1046.020000011227,-0.05514020635547199 +209205,1046.0250000112271,-0.05514015834913848 +209206,1046.0300000112272,-0.0551401103407502 +209207,1046.0350000112273,-0.05514006233030712 +209208,1046.0400000112274,-0.05514001431780919 +209209,1046.0450000112276,-0.05513996630325639 +209210,1046.0500000112277,-0.05513991828664868 +209211,1046.0550000112278,-0.055139870267986016 +209212,1046.0600000112279,-0.05513982224726836 +209213,1046.065000011228,-0.05513977422449568 +209214,1046.070000011228,-0.055139726199667935 +209215,1046.0750000112282,-0.055139678172785096 +209216,1046.0800000112283,-0.05513963014384712 +209217,1046.0850000112284,-0.05513958211285396 +209218,1046.0900000112285,-0.055139534079805604 +209219,1046.0950000112286,-0.055139486044702 +209220,1046.1000000112288,-0.055139438007543104 +209221,1046.1050000112289,-0.0551393899683289 +209222,1046.110000011229,-0.055139341927059334 +209223,1046.115000011229,-0.05513929388373437 +209224,1046.1200000112292,-0.05513924583835397 +209225,1046.1250000112293,-0.0551391977909181 +209226,1046.1300000112294,-0.05513914974142674 +209227,1046.1350000112295,-0.05513910168987982 +209228,1046.1400000112296,-0.05513905363627734 +209229,1046.1450000112297,-0.05513900558061923 +209230,1046.1500000112298,-0.05513895752290547 +209231,1046.15500001123,-0.055138909463136015 +209232,1046.16000001123,-0.05513886140131085 +209233,1046.1650000112302,-0.05513881333742991 +209234,1046.1700000112303,-0.055138765271493174 +209235,1046.1750000112304,-0.05513871720350059 +209236,1046.1800000112305,-0.05513866913345214 +209237,1046.1850000112306,-0.05513862106134778 +209238,1046.1900000112307,-0.055138572987187474 +209239,1046.1950000112308,-0.05513852491097119 +209240,1046.200000011231,-0.055138476832698874 +209241,1046.205000011231,-0.0551384287523705 +209242,1046.2100000112312,-0.05513838066998603 +209243,1046.2150000112313,-0.05513833258554543 +209244,1046.2200000112314,-0.055138284499048666 +209245,1046.2250000112315,-0.05513823641049569 +209246,1046.2300000112316,-0.05513818831988648 +209247,1046.2350000112317,-0.05513814022722099 +209248,1046.2400000112318,-0.05513809213249917 +209249,1046.245000011232,-0.05513804403572099 +209250,1046.250000011232,-0.05513799593688644 +209251,1046.2550000112321,-0.05513794783599546 +209252,1046.2600000112323,-0.055137899733048015 +209253,1046.2650000112324,-0.05513785162804406 +209254,1046.2700000112325,-0.05513780352098358 +209255,1046.2750000112326,-0.055137755411866524 +209256,1046.2800000112327,-0.055137707300692854 +209257,1046.2850000112328,-0.05513765918746253 +209258,1046.290000011233,-0.05513761107217553 +209259,1046.295000011233,-0.05513756295483181 +209260,1046.3000000112331,-0.05513751483543132 +209261,1046.3050000112332,-0.055137466713974036 +209262,1046.3100000112333,-0.05513741859045992 +209263,1046.3150000112335,-0.05513737046488893 +209264,1046.3200000112336,-0.05513732233726104 +209265,1046.3250000112337,-0.05513727420757621 +209266,1046.3300000112338,-0.055137226075834406 +209267,1046.335000011234,-0.05513717794203558 +209268,1046.340000011234,-0.0551371298061797 +209269,1046.345000011234,-0.05513708166826673 +209270,1046.3500000112342,-0.05513703352829663 +209271,1046.3550000112343,-0.05513698538626936 +209272,1046.3600000112344,-0.0551369372421849 +209273,1046.3650000112345,-0.055136889096043196 +209274,1046.3700000112347,-0.05513684094784422 +209275,1046.3750000112348,-0.05513679279758793 +209276,1046.3800000112349,-0.055136744645274294 +209277,1046.385000011235,-0.055136696490903275 +209278,1046.390000011235,-0.055136648334474826 +209279,1046.3950000112352,-0.05513660017598893 +209280,1046.4000000112353,-0.05513655201544553 +209281,1046.4050000112354,-0.0551365038528446 +209282,1046.4100000112355,-0.055136455688186106 +209283,1046.4150000112356,-0.055136407521470004 +209284,1046.4200000112357,-0.055136359352696264 +209285,1046.4250000112359,-0.05513631118186483 +209286,1046.430000011236,-0.05513626300897569 +209287,1046.435000011236,-0.05513621483402879 +209288,1046.4400000112362,-0.05513616665702411 +209289,1046.4450000112363,-0.05513611847796159 +209290,1046.4500000112364,-0.055136070296841214 +209291,1046.4550000112365,-0.05513602211366293 +209292,1046.4600000112366,-0.05513597392842672 +209293,1046.4650000112367,-0.055135925741132526 +209294,1046.4700000112368,-0.05513587755178033 +209295,1046.475000011237,-0.055135829360370085 +209296,1046.480000011237,-0.05513578116690175 +209297,1046.4850000112372,-0.05513573297137529 +209298,1046.4900000112373,-0.055135684773790675 +209299,1046.4950000112374,-0.05513563657414787 +209300,1046.5000000112375,-0.055135588372446837 +209301,1046.5050000112376,-0.055135540168687526 +209302,1046.5100000112377,-0.05513549196286991 +209303,1046.5150000112378,-0.055135443754993956 +209304,1046.520000011238,-0.055135395545059626 +209305,1046.525000011238,-0.055135347333066874 +209306,1046.5300000112381,-0.05513529911901567 +209307,1046.5350000112383,-0.05513525090290598 +209308,1046.5400000112384,-0.05513520268473776 +209309,1046.5450000112385,-0.05513515446451098 +209310,1046.5500000112386,-0.05513510624222559 +209311,1046.5550000112387,-0.05513505801788158 +209312,1046.5600000112388,-0.05513500979147888 +209313,1046.565000011239,-0.05513496156301748 +209314,1046.570000011239,-0.055134913332497336 +209315,1046.5750000112391,-0.0551348650999184 +209316,1046.5800000112392,-0.05513481686528064 +209317,1046.5850000112393,-0.055134768628584026 +209318,1046.5900000112395,-0.055134720389828515 +209319,1046.5950000112396,-0.05513467214901408 +209320,1046.6000000112397,-0.05513462390614068 +209321,1046.6050000112398,-0.055134575661208274 +209322,1046.61000001124,-0.05513452741421682 +209323,1046.61500001124,-0.0551344791651663 +209324,1046.62000001124,-0.055134430914056655 +209325,1046.6250000112402,-0.055134382660887854 +209326,1046.6300000112403,-0.055134334405659874 +209327,1046.6350000112404,-0.055134286148372666 +209328,1046.6400000112405,-0.055134237889026196 +209329,1046.6450000112407,-0.05513418962762043 +209330,1046.6500000112408,-0.05513414136415533 +209331,1046.6550000112409,-0.05513409309863084 +209332,1046.660000011241,-0.055134044831046954 +209333,1046.665000011241,-0.05513399656140362 +209334,1046.6700000112412,-0.055133948289700814 +209335,1046.6750000112413,-0.05513390001593848 +209336,1046.6800000112414,-0.055133851740116584 +209337,1046.6850000112415,-0.05513380346223509 +209338,1046.6900000112416,-0.055133755182293985 +209339,1046.6950000112417,-0.055133706900293206 +209340,1046.7000000112419,-0.05513365861623273 +209341,1046.705000011242,-0.055133610330112506 +209342,1046.710000011242,-0.05513356204193251 +209343,1046.7150000112422,-0.05513351375169269 +209344,1046.7200000112423,-0.05513346545939302 +209345,1046.7250000112424,-0.05513341716503346 +209346,1046.7300000112425,-0.05513336886861399 +209347,1046.7350000112426,-0.05513332057013454 +209348,1046.7400000112427,-0.055133272269595114 +209349,1046.7450000112428,-0.055133223966995645 +209350,1046.750000011243,-0.0551331756623361 +209351,1046.755000011243,-0.05513312735561645 +209352,1046.7600000112432,-0.055133079046836654 +209353,1046.7650000112433,-0.05513303073599669 +209354,1046.7700000112434,-0.05513298242309649 +209355,1046.7750000112435,-0.05513293410813604 +209356,1046.7800000112436,-0.0551328857911153 +209357,1046.7850000112437,-0.05513283747203423 +209358,1046.7900000112438,-0.05513278915089279 +209359,1046.795000011244,-0.05513274082769095 +209360,1046.800000011244,-0.055132692502428686 +209361,1046.8050000112441,-0.05513264417510594 +209362,1046.8100000112443,-0.05513259584572268 +209363,1046.8150000112444,-0.05513254751427887 +209364,1046.8200000112445,-0.05513249918077447 +209365,1046.8250000112446,-0.05513245084520945 +209366,1046.8300000112447,-0.055132402507583764 +209367,1046.8350000112448,-0.05513235416789739 +209368,1046.840000011245,-0.05513230582615029 +209369,1046.845000011245,-0.05513225748234241 +209370,1046.8500000112451,-0.05513220913647372 +209371,1046.8550000112452,-0.05513216078854419 +209372,1046.8600000112453,-0.055132112438553774 +209373,1046.8650000112455,-0.05513206408650245 +209374,1046.8700000112456,-0.055132015732390176 +209375,1046.8750000112457,-0.05513196737621691 +209376,1046.8800000112458,-0.05513191901798261 +209377,1046.885000011246,-0.055131870657687244 +209378,1046.890000011246,-0.05513182229533079 +209379,1046.895000011246,-0.055131773930913196 +209380,1046.9000000112462,-0.055131725564434436 +209381,1046.9050000112463,-0.05513167719589446 +209382,1046.9100000112464,-0.05513162882529322 +209383,1046.9150000112465,-0.0551315804526307 +209384,1046.9200000112467,-0.05513153207790687 +209385,1046.9250000112468,-0.055131483701121684 +209386,1046.9300000112469,-0.055131435322275095 +209387,1046.935000011247,-0.055131386941367086 +209388,1046.940000011247,-0.0551313385583976 +209389,1046.9450000112472,-0.05513129017336661 +209390,1046.9500000112473,-0.05513124178627408 +209391,1046.9550000112474,-0.05513119339711996 +209392,1046.9600000112475,-0.05513114500590423 +209393,1046.9650000112476,-0.05513109661262685 +209394,1046.9700000112477,-0.05513104821728779 +209395,1046.9750000112479,-0.055130999819887 +209396,1046.980000011248,-0.055130951420424436 +209397,1046.985000011248,-0.055130903018900085 +209398,1046.9900000112482,-0.0551308546153139 +209399,1046.9950000112483,-0.05513080620966584 +209400,1047.0000000112484,-0.055130757801955865 +209401,1047.0050000112485,-0.055130709392183945 +209402,1047.0100000112486,-0.05513066098035004 +209403,1047.0150000112487,-0.055130612566454136 +209404,1047.0200000112488,-0.05513056415049616 +209405,1047.025000011249,-0.0551305157324761 +209406,1047.030000011249,-0.055130467312393905 +209407,1047.0350000112492,-0.05513041889024955 +209408,1047.0400000112493,-0.05513037046604298 +209409,1047.0450000112494,-0.05513032203977417 +209410,1047.0500000112495,-0.05513027361144309 +209411,1047.0550000112496,-0.055130225181049694 +209412,1047.0600000112497,-0.055130176748593954 +209413,1047.0650000112498,-0.05513012831407582 +209414,1047.07000001125,-0.05513007987749526 +209415,1047.07500001125,-0.055130031438852256 +209416,1047.0800000112501,-0.05512998299814675 +209417,1047.0850000112503,-0.0551299345553787 +209418,1047.0900000112504,-0.05512988611054809 +209419,1047.0950000112505,-0.05512983766365487 +209420,1047.1000000112506,-0.055129789214699 +209421,1047.1050000112507,-0.05512974076368046 +209422,1047.1100000112508,-0.0551296923105992 +209423,1047.115000011251,-0.055129643855455185 +209424,1047.120000011251,-0.05512959539824837 +209425,1047.1250000112511,-0.05512954693897874 +209426,1047.1300000112512,-0.05512949847764624 +209427,1047.1350000112513,-0.05512945001425084 +209428,1047.1400000112515,-0.0551294015487925 +209429,1047.1450000112516,-0.05512935308127119 +209430,1047.1500000112517,-0.055129304611686865 +209431,1047.1550000112518,-0.05512925614003949 +209432,1047.160000011252,-0.055129207666329026 +209433,1047.165000011252,-0.05512915919055544 +209434,1047.1700000112521,-0.0551291107127187 +209435,1047.1750000112522,-0.05512906223281877 +209436,1047.1800000112523,-0.055129013750855604 +209437,1047.1850000112524,-0.05512896526682917 +209438,1047.1900000112526,-0.05512891678073943 +209439,1047.1950000112527,-0.05512886829258635 +209440,1047.2000000112528,-0.05512881980236989 +209441,1047.2050000112529,-0.055128771310090016 +209442,1047.210000011253,-0.055128722815746684 +209443,1047.215000011253,-0.05512867431933987 +209444,1047.2200000112532,-0.05512862582086953 +209445,1047.2250000112533,-0.055128577320335624 +209446,1047.2300000112534,-0.055128528817738116 +209447,1047.2350000112535,-0.05512848031307698 +209448,1047.2400000112536,-0.05512843180635217 +209449,1047.2450000112538,-0.05512838329756364 +209450,1047.2500000112539,-0.05512833478671138 +209451,1047.255000011254,-0.055128286273795325 +209452,1047.260000011254,-0.05512823775881546 +209453,1047.2650000112542,-0.055128189241771736 +209454,1047.2700000112543,-0.055128140722664115 +209455,1047.2750000112544,-0.05512809220149256 +209456,1047.2800000112545,-0.05512804367825704 +209457,1047.2850000112546,-0.05512799515295753 +209458,1047.2900000112547,-0.05512794662559396 +209459,1047.2950000112548,-0.05512789809616633 +209460,1047.300000011255,-0.05512784956467459 +209461,1047.305000011255,-0.055127801031118695 +209462,1047.3100000112552,-0.055127752495498616 +209463,1047.3150000112553,-0.05512770395781431 +209464,1047.3200000112554,-0.05512765541806573 +209465,1047.3250000112555,-0.05512760687625286 +209466,1047.3300000112556,-0.055127558332375655 +209467,1047.3350000112557,-0.05512750978643409 +209468,1047.3400000112558,-0.05512746123842811 +209469,1047.345000011256,-0.055127412688357684 +209470,1047.350000011256,-0.05512736413622278 +209471,1047.3550000112562,-0.055127315582023356 +209472,1047.3600000112563,-0.05512726702575938 +209473,1047.3650000112564,-0.05512721846743081 +209474,1047.3700000112565,-0.055127169907037615 +209475,1047.3750000112566,-0.05512712134457975 +209476,1047.3800000112567,-0.05512707278005719 +209477,1047.3850000112568,-0.0551270242134699 +209478,1047.390000011257,-0.05512697564481782 +209479,1047.395000011257,-0.05512692707410093 +209480,1047.4000000112571,-0.0551268785013192 +209481,1047.4050000112572,-0.05512682992647258 +209482,1047.4100000112574,-0.055126781349561046 +209483,1047.4150000112575,-0.05512673277058454 +209484,1047.4200000112576,-0.05512668418954304 +209485,1047.4250000112577,-0.05512663560643651 +209486,1047.4300000112578,-0.05512658702126491 +209487,1047.435000011258,-0.055126538434028205 +209488,1047.440000011258,-0.055126489844726366 +209489,1047.4450000112581,-0.055126441253359346 +209490,1047.4500000112582,-0.05512639265992711 +209491,1047.4550000112583,-0.055126344064429615 +209492,1047.4600000112584,-0.055126295466866836 +209493,1047.4650000112586,-0.055126246867238736 +209494,1047.4700000112587,-0.055126198265545254 +209495,1047.4750000112588,-0.05512614966178639 +209496,1047.4800000112589,-0.055126101055962086 +209497,1047.485000011259,-0.0551260524480723 +209498,1047.490000011259,-0.05512600383811701 +209499,1047.4950000112592,-0.05512595522609618 +209500,1047.5000000112593,-0.05512590661200976 +209501,1047.5050000112594,-0.055125857995857716 +209502,1047.5100000112595,-0.05512580937764003 +209503,1047.5150000112596,-0.05512576075735663 +209504,1047.5200000112598,-0.05512571213500752 +209505,1047.5250000112599,-0.05512566351059263 +209506,1047.53000001126,-0.05512561488411194 +209507,1047.53500001126,-0.0551255662555654 +209508,1047.5400000112602,-0.05512551762495299 +209509,1047.5450000112603,-0.05512546899227466 +209510,1047.5500000112604,-0.05512542035753039 +209511,1047.5550000112605,-0.05512537172072013 +209512,1047.5600000112606,-0.05512532308184385 +209513,1047.5650000112607,-0.055125274440901505 +209514,1047.5700000112608,-0.055125225797893064 +209515,1047.575000011261,-0.055125177152818484 +209516,1047.580000011261,-0.05512512850567774 +209517,1047.5850000112612,-0.05512507985647078 +209518,1047.5900000112613,-0.05512503120519757 +209519,1047.5950000112614,-0.0551249825518581 +209520,1047.6000000112615,-0.05512493389645229 +209521,1047.6050000112616,-0.055124885238980126 +209522,1047.6100000112617,-0.05512483657944158 +209523,1047.6150000112618,-0.0551247879178366 +209524,1047.620000011262,-0.05512473925416517 +209525,1047.625000011262,-0.055124690588427214 +209526,1047.6300000112622,-0.05512464192062274 +209527,1047.6350000112623,-0.055124593250751676 +209528,1047.6400000112624,-0.055124544578813994 +209529,1047.6450000112625,-0.05512449590480968 +209530,1047.6500000112626,-0.055124447228738674 +209531,1047.6550000112627,-0.055124398550600945 +209532,1047.6600000112628,-0.05512434987039646 +209533,1047.665000011263,-0.055124301188125176 +209534,1047.670000011263,-0.05512425250378705 +209535,1047.6750000112631,-0.055124203817382054 +209536,1047.6800000112632,-0.05512415512891016 +209537,1047.6850000112634,-0.05512410643837133 +209538,1047.6900000112635,-0.055124057745765516 +209539,1047.6950000112636,-0.05512400905109267 +209540,1047.7000000112637,-0.05512396035435279 +209541,1047.7050000112638,-0.05512391165554581 +209542,1047.710000011264,-0.05512386295467171 +209543,1047.715000011264,-0.055123814251730435 +209544,1047.7200000112641,-0.05512376554672197 +209545,1047.7250000112642,-0.055123716839646265 +209546,1047.7300000112643,-0.055123668130503276 +209547,1047.7350000112644,-0.05512361941929298 +209548,1047.7400000112646,-0.05512357070601535 +209549,1047.7450000112647,-0.05512352199067031 +209550,1047.7500000112648,-0.055123473273257874 +209551,1047.7550000112649,-0.055123424553777965 +209552,1047.760000011265,-0.055123375832230564 +209553,1047.765000011265,-0.055123327108615644 +209554,1047.7700000112652,-0.05512327838293314 +209555,1047.7750000112653,-0.05512322965518304 +209556,1047.7800000112654,-0.05512318092536529 +209557,1047.7850000112655,-0.05512313219347986 +209558,1047.7900000112656,-0.055123083459526726 +209559,1047.7950000112658,-0.05512303472350584 +209560,1047.8000000112659,-0.055122985985417164 +209561,1047.805000011266,-0.05512293724526066 +209562,1047.810000011266,-0.055122888503036295 +209563,1047.8150000112662,-0.055122839758744026 +209564,1047.8200000112663,-0.055122791012383814 +209565,1047.8250000112664,-0.05512274226395563 +209566,1047.8300000112665,-0.05512269351345944 +209567,1047.8350000112666,-0.0551226447608952 +209568,1047.8400000112667,-0.05512259600626288 +209569,1047.8450000112668,-0.05512254724956245 +209570,1047.850000011267,-0.05512249849079385 +209571,1047.855000011267,-0.05512244972995706 +209572,1047.8600000112672,-0.05512240096705203 +209573,1047.8650000112673,-0.05512235220207874 +209574,1047.8700000112674,-0.05512230343503716 +209575,1047.8750000112675,-0.05512225466592723 +209576,1047.8800000112676,-0.055122205894748914 +209577,1047.8850000112677,-0.0551221571215022 +209578,1047.8900000112678,-0.05512210834618702 +209579,1047.895000011268,-0.05512205956880337 +209580,1047.900000011268,-0.05512201078935118 +209581,1047.9050000112682,-0.055121962007830434 +209582,1047.9100000112683,-0.055121913224241086 +209583,1047.9150000112684,-0.05512186443858311 +209584,1047.9200000112685,-0.05512181565085645 +209585,1047.9250000112686,-0.05512176686106109 +209586,1047.9300000112687,-0.05512171806919699 +209587,1047.9350000112688,-0.055121669275264094 +209588,1047.940000011269,-0.05512162047926239 +209589,1047.945000011269,-0.055121571681191826 +209590,1047.9500000112691,-0.05512152288105237 +209591,1047.9550000112692,-0.05512147407884399 +209592,1047.9600000112694,-0.055121425274566635 +209593,1047.9650000112695,-0.055121376468220275 +209594,1047.9700000112696,-0.055121327659804875 +209595,1047.9750000112697,-0.05512127884932041 +209596,1047.9800000112698,-0.05512123003676682 +209597,1047.98500001127,-0.05512118122214407 +209598,1047.99000001127,-0.05512113240545215 +209599,1047.9950000112701,-0.055121083586691 +209600,1048.0000000112702,-0.05512103476586059 +209601,1048.0050000112703,-0.05512098594296089 +209602,1048.0100000112704,-0.05512093711799185 +209603,1048.0150000112706,-0.055120888290953435 +209604,1048.0200000112707,-0.05512083946184561 +209605,1048.0250000112708,-0.05512079063066834 +209606,1048.0300000112709,-0.05512074179742159 +209607,1048.035000011271,-0.055120692962105325 +209608,1048.040000011271,-0.05512064412471951 +209609,1048.0450000112712,-0.05512059528526409 +209610,1048.0500000112713,-0.055120546443739045 +209611,1048.0550000112714,-0.055120497600144334 +209612,1048.0600000112715,-0.055120448754479925 +209613,1048.0650000112716,-0.055120399906745776 +209614,1048.0700000112718,-0.055120351056941845 +209615,1048.0750000112719,-0.055120302205068104 +209616,1048.080000011272,-0.05512025335112452 +209617,1048.085000011272,-0.05512020449511104 +209618,1048.0900000112722,-0.055120155637027636 +209619,1048.0950000112723,-0.05512010677687428 +209620,1048.1000000112724,-0.05512005791465093 +209621,1048.1050000112725,-0.05512000905035754 +209622,1048.1100000112726,-0.05511996018399408 +209623,1048.1150000112727,-0.055119911315560516 +209624,1048.1200000112729,-0.055119862445056796 +209625,1048.125000011273,-0.0551198135724829 +209626,1048.130000011273,-0.05511976469783879 +209627,1048.1350000112732,-0.05511971582112442 +209628,1048.1400000112733,-0.05511966694233975 +209629,1048.1450000112734,-0.05511961806148476 +209630,1048.1500000112735,-0.055119569178559404 +209631,1048.1550000112736,-0.05511952029356364 +209632,1048.1600000112737,-0.05511947140649744 +209633,1048.1650000112738,-0.05511942251736076 +209634,1048.170000011274,-0.05511937362615357 +209635,1048.175000011274,-0.05511932473287584 +209636,1048.1800000112742,-0.055119275837527515 +209637,1048.1850000112743,-0.05511922694010856 +209638,1048.1900000112744,-0.055119178040618964 +209639,1048.1950000112745,-0.055119129139058656 +209640,1048.2000000112746,-0.055119080235427616 +209641,1048.2050000112747,-0.055119031329725815 +209642,1048.2100000112748,-0.05511898242195319 +209643,1048.215000011275,-0.05511893351210974 +209644,1048.220000011275,-0.055118884600195386 +209645,1048.2250000112751,-0.05511883568621012 +209646,1048.2300000112753,-0.0551187867701539 +209647,1048.2350000112754,-0.0551187378520267 +209648,1048.2400000112755,-0.05511868893182846 +209649,1048.2450000112756,-0.05511864000955916 +209650,1048.2500000112757,-0.05511859108521876 +209651,1048.2550000112758,-0.0551185421588072 +209652,1048.260000011276,-0.05511849323032448 +209653,1048.265000011276,-0.055118444299770544 +209654,1048.2700000112761,-0.055118395367145356 +209655,1048.2750000112762,-0.05511834643244889 +209656,1048.2800000112763,-0.05511829749568109 +209657,1048.2850000112765,-0.055118248556841935 +209658,1048.2900000112766,-0.055118199615931375 +209659,1048.2950000112767,-0.05511815067294938 +209660,1048.3000000112768,-0.05511810172789592 +209661,1048.305000011277,-0.055118052780770956 +209662,1048.310000011277,-0.05511800383157444 +209663,1048.315000011277,-0.055117954880306345 +209664,1048.3200000112772,-0.05511790592696663 +209665,1048.3250000112773,-0.05511785697155526 +209666,1048.3300000112774,-0.0551178080140722 +209667,1048.3350000112775,-0.05511775905451741 +209668,1048.3400000112777,-0.05511771009289085 +209669,1048.3450000112778,-0.05511766112919249 +209670,1048.3500000112779,-0.05511761216342228 +209671,1048.355000011278,-0.055117563195580206 +209672,1048.360000011278,-0.055117514225666214 +209673,1048.3650000112782,-0.05511746525368027 +209674,1048.3700000112783,-0.055117416279622335 +209675,1048.3750000112784,-0.05511736730349237 +209676,1048.3800000112785,-0.055117318325290356 +209677,1048.3850000112786,-0.05511726934501624 +209678,1048.3900000112787,-0.055117220362669986 +209679,1048.3950000112789,-0.055117171378251555 +209680,1048.400000011279,-0.05511712239176092 +209681,1048.405000011279,-0.05511707340319803 +209682,1048.4100000112792,-0.05511702441256287 +209683,1048.4150000112793,-0.05511697541985538 +209684,1048.4200000112794,-0.055116926425075534 +209685,1048.4250000112795,-0.05511687742822329 +209686,1048.4300000112796,-0.055116828429298624 +209687,1048.4350000112797,-0.05511677942830148 +209688,1048.4400000112798,-0.05511673042523185 +209689,1048.44500001128,-0.055116681420089665 +209690,1048.45000001128,-0.05511663241287491 +209691,1048.4550000112802,-0.05511658340358753 +209692,1048.4600000112803,-0.05511653439222751 +209693,1048.4650000112804,-0.055116485378794794 +209694,1048.4700000112805,-0.055116436363289355 +209695,1048.4750000112806,-0.05511638734571115 +209696,1048.4800000112807,-0.055116338326060145 +209697,1048.4850000112808,-0.055116289304336305 +209698,1048.490000011281,-0.05511624028053959 +209699,1048.495000011281,-0.05511619125466996 +209700,1048.5000000112811,-0.05511614222672738 +209701,1048.5050000112813,-0.05511609319671182 +209702,1048.5100000112814,-0.055116044164623235 +209703,1048.5150000112815,-0.0551159951304616 +209704,1048.5200000112816,-0.055115946094226875 +209705,1048.5250000112817,-0.05511589705591901 +209706,1048.5300000112818,-0.05511584801553796 +209707,1048.535000011282,-0.055115798973083725 +209708,1048.540000011282,-0.055115749928556244 +209709,1048.5450000112821,-0.05511570088195548 +209710,1048.5500000112822,-0.05511565183328139 +209711,1048.5550000112823,-0.055115602782533954 +209712,1048.5600000112825,-0.05511555372971313 +209713,1048.5650000112826,-0.05511550467481886 +209714,1048.5700000112827,-0.05511545561785114 +209715,1048.5750000112828,-0.05511540655880992 +209716,1048.580000011283,-0.05511535749769516 +209717,1048.585000011283,-0.055115308434506814 +209718,1048.590000011283,-0.05511525936924487 +209719,1048.5950000112832,-0.05511521030190927 +209720,1048.6000000112833,-0.05511516123249999 +209721,1048.6050000112834,-0.055115112161016985 +209722,1048.6100000112835,-0.05511506308746022 +209723,1048.6150000112837,-0.055115014011829645 +209724,1048.6200000112838,-0.05511496493412524 +209725,1048.6250000112839,-0.05511491585434696 +209726,1048.630000011284,-0.05511486677249478 +209727,1048.635000011284,-0.05511481768856865 +209728,1048.6400000112842,-0.05511476860256853 +209729,1048.6450000112843,-0.0551147195144944 +209730,1048.6500000112844,-0.055114670424346215 +209731,1048.6550000112845,-0.055114621332123935 +209732,1048.6600000112846,-0.055114572237827515 +209733,1048.6650000112847,-0.05511452314145694 +209734,1048.6700000112849,-0.05511447404301217 +209735,1048.675000011285,-0.05511442494249315 +209736,1048.680000011285,-0.05511437583989984 +209737,1048.6850000112852,-0.055114326735232214 +209738,1048.6900000112853,-0.05511427762849024 +209739,1048.6950000112854,-0.05511422851967389 +209740,1048.7000000112855,-0.055114179408783104 +209741,1048.7050000112856,-0.05511413029581786 +209742,1048.7100000112857,-0.0551140811807781 +209743,1048.7150000112858,-0.05511403206366382 +209744,1048.720000011286,-0.055113982944474955 +209745,1048.725000011286,-0.05511393382321148 +209746,1048.7300000112862,-0.05511388469987337 +209747,1048.7350000112863,-0.055113835574460555 +209748,1048.7400000112864,-0.055113786446973026 +209749,1048.7450000112865,-0.05511373731741074 +209750,1048.7500000112866,-0.055113688185773654 +209751,1048.7550000112867,-0.05511363905206173 +209752,1048.7600000112868,-0.055113589916274935 +209753,1048.765000011287,-0.05511354077841324 +209754,1048.770000011287,-0.055113491638476605 +209755,1048.7750000112871,-0.055113442496464986 +209756,1048.7800000112873,-0.05511339335237834 +209757,1048.7850000112874,-0.05511334420621664 +209758,1048.7900000112875,-0.05511329505797984 +209759,1048.7950000112876,-0.05511324590766792 +209760,1048.8000000112877,-0.05511319675528083 +209761,1048.8050000112878,-0.055113147600818535 +209762,1048.810000011288,-0.05511309844428101 +209763,1048.815000011288,-0.055113049285668195 +209764,1048.8200000112881,-0.05511300012498008 +209765,1048.8250000112882,-0.0551129509622166 +209766,1048.8300000112883,-0.05511290179737773 +209767,1048.8350000112885,-0.055112852630463435 +209768,1048.8400000112886,-0.055112803461473674 +209769,1048.8450000112887,-0.05511275429040842 +209770,1048.8500000112888,-0.055112705117267624 +209771,1048.855000011289,-0.05511265594205126 +209772,1048.860000011289,-0.05511260676475928 +209773,1048.865000011289,-0.05511255758539166 +209774,1048.8700000112892,-0.05511250840394834 +209775,1048.8750000112893,-0.0551124592204293 +209776,1048.8800000112894,-0.05511241003483451 +209777,1048.8850000112895,-0.055112360847163915 +209778,1048.8900000112897,-0.05511231165741749 +209779,1048.8950000112898,-0.055112262465595196 +209780,1048.9000000112899,-0.05511221327169699 +209781,1048.90500001129,-0.05511216407572284 +209782,1048.91000001129,-0.05511211487767271 +209783,1048.9150000112902,-0.055112065677546555 +209784,1048.9200000112903,-0.05511201647534435 +209785,1048.9250000112904,-0.05511196727106605 +209786,1048.9300000112905,-0.05511191806471162 +209787,1048.9350000112906,-0.05511186885628102 +209788,1048.9400000112907,-0.05511181964577422 +209789,1048.9450000112909,-0.05511177043319117 +209790,1048.950000011291,-0.05511172121853184 +209791,1048.955000011291,-0.05511167200179621 +209792,1048.9600000112912,-0.05511162278298421 +209793,1048.9650000112913,-0.05511157356209583 +209794,1048.9700000112914,-0.055111524339131024 +209795,1048.9750000112915,-0.055111475114089745 +209796,1048.9800000112916,-0.055111425886971974 +209797,1048.9850000112917,-0.055111376657777655 +209798,1048.9900000112918,-0.05511132742650676 +209799,1048.995000011292,-0.055111278193159266 +209800,1049.000000011292,-0.05511122895773511 +209801,1049.0050000112922,-0.05511117972023428 +209802,1049.0100000112923,-0.05511113048065671 +209803,1049.0150000112924,-0.05511108123900239 +209804,1049.0200000112925,-0.055111031995271266 +209805,1049.0250000112926,-0.05511098274946331 +209806,1049.0300000112927,-0.055110933501578474 +209807,1049.0350000112928,-0.055110884251616726 +209808,1049.040000011293,-0.055110834999578036 +209809,1049.045000011293,-0.05511078574546237 +209810,1049.0500000112932,-0.055110736489269674 +209811,1049.0550000112933,-0.05511068723099992 +209812,1049.0600000112934,-0.055110637970653076 +209813,1049.0650000112935,-0.05511058870822909 +209814,1049.0700000112936,-0.05511053944372794 +209815,1049.0750000112937,-0.055110490177149585 +209816,1049.0800000112938,-0.055110440908493985 +209817,1049.085000011294,-0.055110391637761096 +209818,1049.090000011294,-0.055110342364950896 +209819,1049.0950000112941,-0.055110293090063336 +209820,1049.1000000112942,-0.05511024381309839 +209821,1049.1050000112944,-0.05511019453405602 +209822,1049.1100000112945,-0.05511014525293618 +209823,1049.1150000112946,-0.05511009596973882 +209824,1049.1200000112947,-0.05511004668446394 +209825,1049.1250000112948,-0.05510999739711147 +209826,1049.130000011295,-0.05510994810768139 +209827,1049.135000011295,-0.055109898816173654 +209828,1049.1400000112951,-0.05510984952258822 +209829,1049.1450000112952,-0.05510980022692506 +209830,1049.1500000112953,-0.055109750929184145 +209831,1049.1550000112954,-0.05510970162936542 +209832,1049.1600000112956,-0.05510965232746885 +209833,1049.1650000112957,-0.055109603023494415 +209834,1049.1700000112958,-0.05510955371744207 +209835,1049.1750000112959,-0.05510950440931177 +209836,1049.180000011296,-0.055109455099103484 +209837,1049.185000011296,-0.05510940578681718 +209838,1049.1900000112962,-0.055109356472452804 +209839,1049.1950000112963,-0.05510930715601033 +209840,1049.2000000112964,-0.055109257837489725 +209841,1049.2050000112965,-0.05510920851689093 +209842,1049.2100000112966,-0.055109159194213934 +209843,1049.2150000112968,-0.055109109869458696 +209844,1049.2200000112969,-0.05510906054262516 +209845,1049.225000011297,-0.0551090112137133 +209846,1049.230000011297,-0.055108961882723094 +209847,1049.2350000112972,-0.05510891254965449 +209848,1049.2400000112973,-0.055108863214507454 +209849,1049.2450000112974,-0.055108813877281934 +209850,1049.2500000112975,-0.0551087645379779 +209851,1049.2550000112976,-0.05510871519659534 +209852,1049.2600000112977,-0.05510866585313418 +209853,1049.2650000112978,-0.055108616507594424 +209854,1049.270000011298,-0.055108567159975995 +209855,1049.275000011298,-0.05510851781027887 +209856,1049.2800000112982,-0.055108468458503014 +209857,1049.2850000112983,-0.05510841910464839 +209858,1049.2900000112984,-0.05510836974871496 +209859,1049.2950000112985,-0.05510832039070269 +209860,1049.3000000112986,-0.055108271030611534 +209861,1049.3050000112987,-0.05510822166844146 +209862,1049.3100000112988,-0.055108172304192425 +209863,1049.315000011299,-0.05510812293786439 +209864,1049.320000011299,-0.05510807356945735 +209865,1049.3250000112992,-0.05510802419897122 +209866,1049.3300000112993,-0.055107974826405996 +209867,1049.3350000112994,-0.05510792545176163 +209868,1049.3400000112995,-0.05510787607503808 +209869,1049.3450000112996,-0.055107826696235325 +209870,1049.3500000112997,-0.0551077773153533 +209871,1049.3550000112998,-0.055107727932392 +209872,1049.3600000113,-0.05510767854735136 +209873,1049.3650000113,-0.055107629160231354 +209874,1049.3700000113001,-0.05510757977103195 +209875,1049.3750000113002,-0.0551075303797531 +209876,1049.3800000113004,-0.05510748098639478 +209877,1049.3850000113005,-0.055107431590956935 +209878,1049.3900000113006,-0.05510738219343955 +209879,1049.3950000113007,-0.05510733279384258 +209880,1049.4000000113008,-0.055107283392165966 +209881,1049.405000011301,-0.05510723398840971 +209882,1049.410000011301,-0.05510718458257372 +209883,1049.4150000113011,-0.05510713517465801 +209884,1049.4200000113012,-0.05510708576466253 +209885,1049.4250000113013,-0.05510703635258723 +209886,1049.4300000113014,-0.05510698693843207 +209887,1049.4350000113016,-0.05510693752219703 +209888,1049.4400000113017,-0.05510688810388207 +209889,1049.4450000113018,-0.05510683868348714 +209890,1049.4500000113019,-0.05510678926101221 +209891,1049.455000011302,-0.05510673983645725 +209892,1049.460000011302,-0.05510669040982221 +209893,1049.4650000113022,-0.05510664098110706 +209894,1049.4700000113023,-0.055106591550311765 +209895,1049.4750000113024,-0.05510654211743628 +209896,1049.4800000113025,-0.055106492682480565 +209897,1049.4850000113026,-0.05510644324544459 +209898,1049.4900000113028,-0.05510639380632833 +209899,1049.4950000113029,-0.05510634436513172 +209900,1049.500000011303,-0.05510629492185474 +209901,1049.505000011303,-0.055106245476497354 +209902,1049.5100000113032,-0.05510619602905951 +209903,1049.5150000113033,-0.055106146579541174 +209904,1049.5200000113034,-0.05510609712794234 +209905,1049.5250000113035,-0.05510604767426293 +209906,1049.5300000113036,-0.05510599821850292 +209907,1049.5350000113037,-0.05510594876066227 +209908,1049.5400000113038,-0.05510589930074096 +209909,1049.545000011304,-0.05510584983873894 +209910,1049.550000011304,-0.05510580037465617 +209911,1049.5550000113042,-0.05510575090849261 +209912,1049.5600000113043,-0.05510570144024824 +209913,1049.5650000113044,-0.055105651969923 +209914,1049.5700000113045,-0.05510560249751687 +209915,1049.5750000113046,-0.0551055530230298 +209916,1049.5800000113047,-0.055105503546461765 +209917,1049.5850000113048,-0.05510545406781272 +209918,1049.590000011305,-0.055105404587082615 +209919,1049.595000011305,-0.05510535510427144 +209920,1049.6000000113052,-0.05510530561937914 +209921,1049.6050000113053,-0.05510525613240569 +209922,1049.6100000113054,-0.05510520664335103 +209923,1049.6150000113055,-0.055105157152215145 +209924,1049.6200000113056,-0.05510510765899798 +209925,1049.6250000113057,-0.05510505816369951 +209926,1049.6300000113058,-0.055105008666319705 +209927,1049.635000011306,-0.05510495916685851 +209928,1049.640000011306,-0.055104909665315886 +209929,1049.6450000113061,-0.05510486016169182 +209930,1049.6500000113062,-0.05510481065598624 +209931,1049.6550000113064,-0.05510476114819915 +209932,1049.6600000113065,-0.05510471163833047 +209933,1049.6650000113066,-0.05510466212638019 +209934,1049.6700000113067,-0.05510461261234827 +209935,1049.6750000113068,-0.055104563096234654 +209936,1049.680000011307,-0.05510451357803933 +209937,1049.685000011307,-0.055104464057762245 +209938,1049.6900000113071,-0.055104414535403365 +209939,1049.6950000113072,-0.05510436501096266 +209940,1049.7000000113073,-0.055104315484440065 +209941,1049.7050000113074,-0.05510426595583558 +209942,1049.7100000113076,-0.055104216425149136 +209943,1049.7150000113077,-0.05510416689238072 +209944,1049.7200000113078,-0.05510411735753027 +209945,1049.7250000113079,-0.05510406782059778 +209946,1049.730000011308,-0.05510401828158318 +209947,1049.735000011308,-0.05510396874048645 +209948,1049.7400000113082,-0.05510391919730756 +209949,1049.7450000113083,-0.05510386965204646 +209950,1049.7500000113084,-0.055103820104703105 +209951,1049.7550000113085,-0.05510377055527748 +209952,1049.7600000113086,-0.05510372100376952 +209953,1049.7650000113088,-0.055103671450179206 +209954,1049.7700000113089,-0.0551036218945065 +209955,1049.775000011309,-0.05510357233675137 +209956,1049.780000011309,-0.055103522776913764 +209957,1049.7850000113092,-0.055103473214993655 +209958,1049.7900000113093,-0.05510342365099099 +209959,1049.7950000113094,-0.05510337408490575 +209960,1049.8000000113095,-0.055103324516737884 +209961,1049.8050000113096,-0.05510327494648736 +209962,1049.8100000113097,-0.05510322537415415 +209963,1049.8150000113098,-0.0551031757997382 +209964,1049.82000001131,-0.05510312622323947 +209965,1049.82500001131,-0.055103076644657946 +209966,1049.8300000113102,-0.05510302706399358 +209967,1049.8350000113103,-0.05510297748124633 +209968,1049.8400000113104,-0.055102927896416146 +209969,1049.8450000113105,-0.055102878309503014 +209970,1049.8500000113106,-0.055102828720506876 +209971,1049.8550000113107,-0.055102779129427716 +209972,1049.8600000113108,-0.055102729536265486 +209973,1049.865000011311,-0.055102679941020145 +209974,1049.870000011311,-0.05510263034369166 +209975,1049.8750000113112,-0.05510258074427999 +209976,1049.8800000113113,-0.0551025311427851 +209977,1049.8850000113114,-0.05510248153920695 +209978,1049.8900000113115,-0.055102431933545505 +209979,1049.8950000113116,-0.05510238232580072 +209980,1049.9000000113117,-0.05510233271597257 +209981,1049.9050000113118,-0.055102283104061005 +209982,1049.910000011312,-0.05510223349006599 +209983,1049.915000011312,-0.055102183873987486 +209984,1049.9200000113121,-0.055102134255825476 +209985,1049.9250000113122,-0.055102084635579904 +209986,1049.9300000113124,-0.05510203501325073 +209987,1049.9350000113125,-0.05510198538883792 +209988,1049.9400000113126,-0.055101935762341445 +209989,1049.9450000113127,-0.055101886133761255 +209990,1049.9500000113128,-0.055101836503097315 +209991,1049.955000011313,-0.0551017868703496 +209992,1049.960000011313,-0.05510173723551805 +209993,1049.9650000113131,-0.055101687598602636 +209994,1049.9700000113132,-0.055101637959603336 +209995,1049.9750000113133,-0.0551015883185201 +209996,1049.9800000113135,-0.05510153867535288 +209997,1049.9850000113136,-0.05510148903010166 +209998,1049.9900000113137,-0.05510143938276639 +209999,1049.9950000113138,-0.05510138973334702 +210000,1050.000000011314,-0.05510134008184353 +210001,1050.005000011314,-0.05510129042825588 +210002,1050.010000011314,-0.055101240772584034 +210003,1050.0150000113142,-0.05510119111482795 +210004,1050.0200000113143,-0.0551011414549876 +210005,1050.0250000113144,-0.05510109179306292 +210006,1050.0300000113145,-0.055101042129053895 +210007,1050.0350000113147,-0.05510099246296049 +210008,1050.0400000113148,-0.055100942794782656 +210009,1050.0450000113149,-0.05510089312452036 +210010,1050.050000011315,-0.05510084345217355 +210011,1050.055000011315,-0.05510079377774221 +210012,1050.0600000113152,-0.0551007441012263 +210013,1050.0650000113153,-0.055100694422625766 +210014,1050.0700000113154,-0.05510064474194058 +210015,1050.0750000113155,-0.05510059505917072 +210016,1050.0800000113156,-0.055100545374316114 +210017,1050.0850000113157,-0.05510049568737675 +210018,1050.0900000113159,-0.055100445998352586 +210019,1050.095000011316,-0.05510039630724359 +210020,1050.100000011316,-0.0551003466140497 +210021,1050.1050000113162,-0.05510029691877089 +210022,1050.1100000113163,-0.05510024722140715 +210023,1050.1150000113164,-0.05510019752195841 +210024,1050.1200000113165,-0.05510014782042464 +210025,1050.1250000113166,-0.055100098116805794 +210026,1050.1300000113167,-0.05510004841110185 +210027,1050.1350000113168,-0.055099998703312766 +210028,1050.140000011317,-0.0550999489934385 +210029,1050.145000011317,-0.055099899281479015 +210030,1050.1500000113172,-0.05509984956743428 +210031,1050.1550000113173,-0.05509979985130424 +210032,1050.1600000113174,-0.055099750133088876 +210033,1050.1650000113175,-0.05509970041278814 +210034,1050.1700000113176,-0.055099650690402 +210035,1050.1750000113177,-0.055099600965930425 +210036,1050.1800000113178,-0.05509955123937336 +210037,1050.185000011318,-0.05509950151073078 +210038,1050.190000011318,-0.055099451780002626 +210039,1050.1950000113181,-0.05509940204718889 +210040,1050.2000000113183,-0.05509935231228951 +210041,1050.2050000113184,-0.05509930257530447 +210042,1050.2100000113185,-0.055099252836233716 +210043,1050.2150000113186,-0.055099203095077216 +210044,1050.2200000113187,-0.05509915335183493 +210045,1050.2250000113188,-0.05509910360650682 +210046,1050.230000011319,-0.05509905385909285 +210047,1050.235000011319,-0.05509900410959298 +210048,1050.2400000113191,-0.05509895435800718 +210049,1050.2450000113192,-0.055098904604335405 +210050,1050.2500000113193,-0.05509885484857762 +210051,1050.2550000113195,-0.055098805090733775 +210052,1050.2600000113196,-0.055098755330803856 +210053,1050.2650000113197,-0.055098705568787806 +210054,1050.2700000113198,-0.05509865580468559 +210055,1050.27500001132,-0.05509860603849718 +210056,1050.28000001132,-0.05509855627022253 +210057,1050.28500001132,-0.0550985064998616 +210058,1050.2900000113202,-0.05509845672741436 +210059,1050.2950000113203,-0.05509840695288076 +210060,1050.3000000113204,-0.05509835717626078 +210061,1050.3050000113205,-0.055098307397554364 +210062,1050.3100000113207,-0.05509825761676149 +210063,1050.3150000113208,-0.05509820783388211 +210064,1050.3200000113209,-0.05509815804891619 +210065,1050.325000011321,-0.05509810826186369 +210066,1050.330000011321,-0.05509805847272457 +210067,1050.3350000113212,-0.0550980086814988 +210068,1050.3400000113213,-0.055097958888186326 +210069,1050.3450000113214,-0.05509790909278713 +210070,1050.3500000113215,-0.055097859295301164 +210071,1050.3550000113216,-0.055097809495728386 +210072,1050.3600000113217,-0.05509775969406877 +210073,1050.3650000113219,-0.05509770989032226 +210074,1050.370000011322,-0.05509766008448884 +210075,1050.375000011322,-0.05509761027656846 +210076,1050.3800000113222,-0.05509756046656108 +210077,1050.3850000113223,-0.055097510654466664 +210078,1050.3900000113224,-0.05509746084028518 +210079,1050.3950000113225,-0.05509741102401658 +210080,1050.4000000113226,-0.05509736120566085 +210081,1050.4050000113227,-0.05509731138521792 +210082,1050.4100000113228,-0.055097261562687766 +210083,1050.415000011323,-0.05509721173807034 +210084,1050.420000011323,-0.055097161911365634 +210085,1050.4250000113232,-0.05509711208257358 +210086,1050.4300000113233,-0.05509706225169414 +210087,1050.4350000113234,-0.055097012418727304 +210088,1050.4400000113235,-0.055096962583673005 +210089,1050.4450000113236,-0.05509691274653122 +210090,1050.4500000113237,-0.05509686290730191 +210091,1050.4550000113238,-0.05509681306598503 +210092,1050.460000011324,-0.05509676322258055 +210093,1050.465000011324,-0.05509671337708842 +210094,1050.4700000113241,-0.05509666352950862 +210095,1050.4750000113243,-0.0550966136798411 +210096,1050.4800000113244,-0.05509656382808582 +210097,1050.4850000113245,-0.055096513974242756 +210098,1050.4900000113246,-0.05509646411831186 +210099,1050.4950000113247,-0.05509641426029309 +210100,1050.5000000113248,-0.05509636440018641 +210101,1050.505000011325,-0.055096314537991777 +210102,1050.510000011325,-0.05509626467370916 +210103,1050.5150000113251,-0.05509621480733853 +210104,1050.5200000113252,-0.05509616493887984 +210105,1050.5250000113253,-0.05509611506833305 +210106,1050.5300000113255,-0.05509606519569812 +210107,1050.5350000113256,-0.055096015320975016 +210108,1050.5400000113257,-0.055095965444163696 +210109,1050.5450000113258,-0.055095915565264136 +210110,1050.550000011326,-0.05509586568427629 +210111,1050.555000011326,-0.05509581580120012 +210112,1050.560000011326,-0.05509576591603558 +210113,1050.5650000113262,-0.05509571602878263 +210114,1050.5700000113263,-0.05509566613944125 +210115,1050.5750000113264,-0.05509561624801138 +210116,1050.5800000113265,-0.055095566354493 +210117,1050.5850000113267,-0.055095516458886065 +210118,1050.5900000113268,-0.055095466561190534 +210119,1050.5950000113269,-0.055095416661406375 +210120,1050.600000011327,-0.05509536675953355 +210121,1050.605000011327,-0.05509531685557201 +210122,1050.6100000113272,-0.05509526694952173 +210123,1050.6150000113273,-0.05509521704138267 +210124,1050.6200000113274,-0.05509516713115478 +210125,1050.6250000113275,-0.055095117218838044 +210126,1050.6300000113276,-0.055095067304432394 +210127,1050.6350000113277,-0.05509501738793782 +210128,1050.6400000113279,-0.05509496746935426 +210129,1050.645000011328,-0.05509491754868169 +210130,1050.650000011328,-0.05509486762592008 +210131,1050.6550000113282,-0.055094817701069373 +210132,1050.6600000113283,-0.055094767774129555 +210133,1050.6650000113284,-0.05509471784510056 +210134,1050.6700000113285,-0.05509466791398236 +210135,1050.6750000113286,-0.05509461798077493 +210136,1050.6800000113287,-0.055094568045478215 +210137,1050.6850000113288,-0.055094518108092176 +210138,1050.690000011329,-0.05509446816861679 +210139,1050.695000011329,-0.055094418227052 +210140,1050.7000000113292,-0.05509436828339779 +210141,1050.7050000113293,-0.0550943183376541 +210142,1050.7100000113294,-0.05509426838982091 +210143,1050.7150000113295,-0.055094218439898174 +210144,1050.7200000113296,-0.05509416848788584 +210145,1050.7250000113297,-0.05509411853378388 +210146,1050.7300000113298,-0.05509406857759228 +210147,1050.73500001133,-0.05509401861931097 +210148,1050.74000001133,-0.05509396865893993 +210149,1050.7450000113301,-0.05509391869647911 +210150,1050.7500000113303,-0.055093868731928466 +210151,1050.7550000113304,-0.05509381876528798 +210152,1050.7600000113305,-0.0550937687965576 +210153,1050.7650000113306,-0.055093718825737284 +210154,1050.7700000113307,-0.05509366885282701 +210155,1050.7750000113308,-0.05509361887782673 +210156,1050.780000011331,-0.055093568900736405 +210157,1050.785000011331,-0.055093518921556 +210158,1050.7900000113311,-0.055093468940285474 +210159,1050.7950000113312,-0.055093418956924795 +210160,1050.8000000113313,-0.055093368971473926 +210161,1050.8050000113315,-0.055093318983932806 +210162,1050.8100000113316,-0.05509326899430141 +210163,1050.8150000113317,-0.05509321900257972 +210164,1050.8200000113318,-0.05509316900876768 +210165,1050.825000011332,-0.055093119012865246 +210166,1050.830000011332,-0.05509306901487238 +210167,1050.835000011332,-0.055093019014789066 +210168,1050.8400000113322,-0.05509296901261524 +210169,1050.8450000113323,-0.05509291900835088 +210170,1050.8500000113324,-0.05509286900199592 +210171,1050.8550000113325,-0.055092818993550355 +210172,1050.8600000113327,-0.05509276898301414 +210173,1050.8650000113328,-0.05509271897038723 +210174,1050.8700000113329,-0.05509266895566958 +210175,1050.875000011333,-0.055092618938861165 +210176,1050.880000011333,-0.055092568919961935 +210177,1050.8850000113332,-0.05509251889897186 +210178,1050.8900000113333,-0.0550924688758909 +210179,1050.8950000113334,-0.05509241885071901 +210180,1050.9000000113335,-0.055092368823456174 +210181,1050.9050000113336,-0.05509231879410233 +210182,1050.9100000113338,-0.055092268762657444 +210183,1050.9150000113339,-0.05509221872912147 +210184,1050.920000011334,-0.05509216869349439 +210185,1050.925000011334,-0.05509211865577615 +210186,1050.9300000113342,-0.05509206861596672 +210187,1050.9350000113343,-0.05509201857406606 +210188,1050.9400000113344,-0.05509196853007413 +210189,1050.9450000113345,-0.0550919184839909 +210190,1050.9500000113346,-0.05509186843581631 +210191,1050.9550000113347,-0.05509181838555034 +210192,1050.9600000113348,-0.055091768333192945 +210193,1050.965000011335,-0.055091718278744095 +210194,1050.970000011335,-0.05509166822220375 +210195,1050.9750000113352,-0.055091618163571866 +210196,1050.9800000113353,-0.0550915681028484 +210197,1050.9850000113354,-0.05509151804003332 +210198,1050.9900000113355,-0.05509146797512659 +210199,1050.9950000113356,-0.05509141790812817 +210200,1051.0000000113357,-0.055091367839038015 +210201,1051.0050000113358,-0.055091317767856085 +210202,1051.010000011336,-0.055091267694582356 +210203,1051.015000011336,-0.05509121761921678 +210204,1051.0200000113362,-0.05509116754175932 +210205,1051.0250000113363,-0.05509111746220994 +210206,1051.0300000113364,-0.05509106738056859 +210207,1051.0350000113365,-0.05509101729683525 +210208,1051.0400000113366,-0.05509096721100987 +210209,1051.0450000113367,-0.055090917123092414 +210210,1051.0500000113368,-0.05509086703308283 +210211,1051.055000011337,-0.0550908169409811 +210212,1051.060000011337,-0.055090766846787174 +210213,1051.0650000113371,-0.055090716750501034 +210214,1051.0700000113372,-0.05509066665212261 +210215,1051.0750000113374,-0.05509061655165188 +210216,1051.0800000113375,-0.055090566449088815 +210217,1051.0850000113376,-0.055090516344433356 +210218,1051.0900000113377,-0.05509046623768548 +210219,1051.0950000113378,-0.05509041612884514 +210220,1051.100000011338,-0.05509036601791229 +210221,1051.105000011338,-0.05509031590488691 +210222,1051.1100000113381,-0.05509026578976895 +210223,1051.1150000113382,-0.055090215672558375 +210224,1051.1200000113383,-0.055090165553255147 +210225,1051.1250000113384,-0.05509011543185923 +210226,1051.1300000113386,-0.05509006530837059 +210227,1051.1350000113387,-0.05509001518278916 +210228,1051.1400000113388,-0.05508996505511493 +210229,1051.1450000113389,-0.05508991492534786 +210230,1051.150000011339,-0.05508986479348789 +210231,1051.155000011339,-0.05508981465953501 +210232,1051.1600000113392,-0.05508976452348917 +210233,1051.1650000113393,-0.05508971438535032 +210234,1051.1700000113394,-0.05508966424511843 +210235,1051.1750000113395,-0.05508961410279346 +210236,1051.1800000113396,-0.05508956395837538 +210237,1051.1850000113398,-0.05508951381186414 +210238,1051.1900000113399,-0.05508946366325971 +210239,1051.19500001134,-0.055089413512562045 +210240,1051.20000001134,-0.05508936335977111 +210241,1051.2050000113402,-0.055089313204886865 +210242,1051.2100000113403,-0.05508926304790927 +210243,1051.2150000113404,-0.05508921288883829 +210244,1051.2200000113405,-0.055089162727673884 +210245,1051.2250000113406,-0.055089112564416 +210246,1051.2300000113407,-0.055089062399064616 +210247,1051.2350000113408,-0.055089012231619695 +210248,1051.240000011341,-0.05508896206208119 +210249,1051.245000011341,-0.05508891189044907 +210250,1051.2500000113412,-0.05508886171672329 +210251,1051.2550000113413,-0.05508881154090382 +210252,1051.2600000113414,-0.05508876136299061 +210253,1051.2650000113415,-0.055088711182983634 +210254,1051.2700000113416,-0.05508866100088284 +210255,1051.2750000113417,-0.05508861081668819 +210256,1051.2800000113418,-0.05508856063039966 +210257,1051.285000011342,-0.055088510442017194 +210258,1051.290000011342,-0.055088460251540766 +210259,1051.2950000113422,-0.055088410058970326 +210260,1051.3000000113423,-0.055088359864305846 +210261,1051.3050000113424,-0.055088309667547276 +210262,1051.3100000113425,-0.05508825946869459 +210263,1051.3150000113426,-0.05508820926774775 +210264,1051.3200000113427,-0.05508815906470669 +210265,1051.3250000113428,-0.05508810885957139 +210266,1051.330000011343,-0.05508805865234183 +210267,1051.335000011343,-0.05508800844301794 +210268,1051.3400000113431,-0.055087958231599704 +210269,1051.3450000113432,-0.05508790801808708 +210270,1051.3500000113434,-0.05508785780248002 +210271,1051.3550000113435,-0.05508780758477849 +210272,1051.3600000113436,-0.055087757364982455 +210273,1051.3650000113437,-0.055087707143091864 +210274,1051.3700000113438,-0.05508765691910668 +210275,1051.375000011344,-0.05508760669302687 +210276,1051.380000011344,-0.055087556464852395 +210277,1051.3850000113441,-0.05508750623458323 +210278,1051.3900000113442,-0.055087456002219315 +210279,1051.3950000113443,-0.05508740576776062 +210280,1051.4000000113444,-0.0550873555312071 +210281,1051.4050000113446,-0.05508730529255872 +210282,1051.4100000113447,-0.05508725505181545 +210283,1051.4150000113448,-0.05508720480897723 +210284,1051.4200000113449,-0.055087154564044054 +210285,1051.425000011345,-0.055087104317015856 +210286,1051.430000011345,-0.05508705406789261 +210287,1051.4350000113452,-0.05508700381667427 +210288,1051.4400000113453,-0.055086953563360797 +210289,1051.4450000113454,-0.055086903307952156 +210290,1051.4500000113455,-0.055086853050448296 +210291,1051.4550000113456,-0.05508680279084919 +210292,1051.4600000113458,-0.055086752529154806 +210293,1051.4650000113459,-0.05508670226536509 +210294,1051.470000011346,-0.05508665199948001 +210295,1051.475000011346,-0.05508660173149954 +210296,1051.4800000113462,-0.055086551461423626 +210297,1051.4850000113463,-0.055086501189252235 +210298,1051.4900000113464,-0.055086450914985305 +210299,1051.4950000113465,-0.055086400638622836 +210300,1051.5000000113466,-0.05508635036016476 +210301,1051.5050000113467,-0.05508630007961105 +210302,1051.5100000113468,-0.05508624979696167 +210303,1051.515000011347,-0.05508619951221657 +210304,1051.520000011347,-0.05508614922537572 +210305,1051.5250000113472,-0.05508609893643907 +210306,1051.5300000113473,-0.055086048645406595 +210307,1051.5350000113474,-0.05508599835227825 +210308,1051.5400000113475,-0.055085948057053996 +210309,1051.5450000113476,-0.0550858977597338 +210310,1051.5500000113477,-0.05508584746031761 +210311,1051.5550000113478,-0.05508579715880539 +210312,1051.560000011348,-0.05508574685519712 +210313,1051.565000011348,-0.05508569654949274 +210314,1051.5700000113482,-0.05508564624169222 +210315,1051.5750000113483,-0.05508559593179551 +210316,1051.5800000113484,-0.05508554561980259 +210317,1051.5850000113485,-0.05508549530571341 +210318,1051.5900000113486,-0.05508544498952793 +210319,1051.5950000113487,-0.05508539467124611 +210320,1051.6000000113488,-0.05508534435086791 +210321,1051.605000011349,-0.055085294028393295 +210322,1051.610000011349,-0.05508524370382223 +210323,1051.6150000113491,-0.055085193377154666 +210324,1051.6200000113492,-0.05508514304839058 +210325,1051.6250000113494,-0.055085092717529906 +210326,1051.6300000113495,-0.05508504238457263 +210327,1051.6350000113496,-0.05508499204951871 +210328,1051.6400000113497,-0.05508494171236809 +210329,1051.6450000113498,-0.05508489137312075 +210330,1051.65000001135,-0.055084841031776646 +210331,1051.65500001135,-0.05508479068833573 +210332,1051.6600000113501,-0.05508474034279797 +210333,1051.6650000113502,-0.05508468999516333 +210334,1051.6700000113503,-0.05508463964543177 +210335,1051.6750000113504,-0.05508458929360323 +210336,1051.6800000113506,-0.0550845389396777 +210337,1051.6850000113507,-0.05508448858365513 +210338,1051.6900000113508,-0.05508443822553548 +210339,1051.6950000113509,-0.055084387865318704 +210340,1051.700000011351,-0.055084337503004774 +210341,1051.705000011351,-0.05508428713859365 +210342,1051.7100000113512,-0.05508423677208529 +210343,1051.7150000113513,-0.05508418640347965 +210344,1051.7200000113514,-0.0550841360327767 +210345,1051.7250000113515,-0.0550840856599764 +210346,1051.7300000113516,-0.0550840352850787 +210347,1051.7350000113518,-0.05508398490808358 +210348,1051.7400000113519,-0.055083934528990984 +210349,1051.745000011352,-0.055083884147800875 +210350,1051.750000011352,-0.055083833764513215 +210351,1051.7550000113522,-0.05508378337912797 +210352,1051.7600000113523,-0.055083732991645096 +210353,1051.7650000113524,-0.05508368260206456 +210354,1051.7700000113525,-0.05508363221038631 +210355,1051.7750000113526,-0.05508358181661032 +210356,1051.7800000113527,-0.05508353142073655 +210357,1051.7850000113528,-0.05508348102276496 +210358,1051.790000011353,-0.0550834306226955 +210359,1051.795000011353,-0.055083380220528146 +210360,1051.8000000113532,-0.055083329816262835 +210361,1051.8050000113533,-0.05508327940989955 +210362,1051.8100000113534,-0.05508322900143824 +210363,1051.8150000113535,-0.05508317859087888 +210364,1051.8200000113536,-0.05508312817822142 +210365,1051.8250000113537,-0.055083077763465826 +210366,1051.8300000113538,-0.05508302734661206 +210367,1051.835000011354,-0.05508297692766007 +210368,1051.840000011354,-0.05508292650660982 +210369,1051.8450000113542,-0.05508287608346129 +210370,1051.8500000113543,-0.05508282565821442 +210371,1051.8550000113544,-0.05508277523086918 +210372,1051.8600000113545,-0.055082724801425516 +210373,1051.8650000113546,-0.05508267436988341 +210374,1051.8700000113547,-0.05508262393624281 +210375,1051.8750000113548,-0.05508257350050368 +210376,1051.880000011355,-0.055082523062665985 +210377,1051.885000011355,-0.05508247262272968 +210378,1051.8900000113551,-0.05508242218069472 +210379,1051.8950000113553,-0.055082371736561074 +210380,1051.9000000113554,-0.05508232129032871 +210381,1051.9050000113555,-0.05508227084199757 +210382,1051.9100000113556,-0.055082220391567634 +210383,1051.9150000113557,-0.05508216993903885 +210384,1051.9200000113558,-0.055082119484411184 +210385,1051.925000011356,-0.05508206902768458 +210386,1051.930000011356,-0.055082018568859026 +210387,1051.9350000113561,-0.055081968107934476 +210388,1051.9400000113562,-0.055081917644910876 +210389,1051.9450000113563,-0.05508186717978819 +210390,1051.9500000113565,-0.055081816712566394 +210391,1051.9550000113566,-0.05508176624324544 +210392,1051.9600000113567,-0.05508171577182529 +210393,1051.9650000113568,-0.055081665298305896 +210394,1051.970000011357,-0.05508161482268722 +210395,1051.975000011357,-0.055081564344969226 +210396,1051.980000011357,-0.05508151386515188 +210397,1051.9850000113572,-0.055081463383235135 +210398,1051.9900000113573,-0.055081412899218946 +210399,1051.9950000113574,-0.055081362413103296 +210400,1052.0000000113575,-0.055081311924888125 +210401,1052.0050000113577,-0.055081261434573404 +210402,1052.0100000113578,-0.05508121094215909 +210403,1052.0150000113579,-0.05508116044764515 +210404,1052.020000011358,-0.05508110995103152 +210405,1052.025000011358,-0.055081059452318185 +210406,1052.0300000113582,-0.05508100895150511 +210407,1052.0350000113583,-0.055080958448592246 +210408,1052.0400000113584,-0.05508090794357953 +210409,1052.0450000113585,-0.05508085743646696 +210410,1052.0500000113586,-0.05508080692725447 +210411,1052.0550000113587,-0.055080756415942046 +210412,1052.0600000113589,-0.05508070590252963 +210413,1052.065000011359,-0.05508065538701719 +210414,1052.070000011359,-0.055080604869404685 +210415,1052.0750000113592,-0.055080554349692064 +210416,1052.0800000113593,-0.055080503827879296 +210417,1052.0850000113594,-0.055080453303966354 +210418,1052.0900000113595,-0.05508040277795318 +210419,1052.0950000113596,-0.05508035224983975 +210420,1052.1000000113597,-0.05508030171962601 +210421,1052.1050000113598,-0.05508025118731192 +210422,1052.11000001136,-0.05508020065289745 +210423,1052.11500001136,-0.05508015011638256 +210424,1052.1200000113602,-0.0550800995777672 +210425,1052.1250000113603,-0.05508004903705134 +210426,1052.1300000113604,-0.05507999849423494 +210427,1052.1350000113605,-0.055079947949317955 +210428,1052.1400000113606,-0.05507989740230035 +210429,1052.1450000113607,-0.05507984685318209 +210430,1052.1500000113608,-0.05507979630196313 +210431,1052.155000011361,-0.05507974574864343 +210432,1052.160000011361,-0.05507969519322295 +210433,1052.1650000113611,-0.05507964463570164 +210434,1052.1700000113613,-0.055079594076079486 +210435,1052.1750000113614,-0.055079543514356434 +210436,1052.1800000113615,-0.05507949295053244 +210437,1052.1850000113616,-0.05507944238460748 +210438,1052.1900000113617,-0.055079391816581495 +210439,1052.1950000113618,-0.05507934124645445 +210440,1052.200000011362,-0.0550792906742263 +210441,1052.205000011362,-0.05507924009989702 +210442,1052.2100000113621,-0.05507918952346657 +210443,1052.2150000113622,-0.0550791389449349 +210444,1052.2200000113623,-0.05507908836430197 +210445,1052.2250000113625,-0.05507903778156775 +210446,1052.2300000113626,-0.0550789871967322 +210447,1052.2350000113627,-0.05507893660979528 +210448,1052.2400000113628,-0.05507888602075694 +210449,1052.245000011363,-0.05507883542961715 +210450,1052.250000011363,-0.05507878483637586 +210451,1052.255000011363,-0.05507873424103303 +210452,1052.2600000113632,-0.05507868364358864 +210453,1052.2650000113633,-0.05507863304404263 +210454,1052.2700000113634,-0.055078582442394976 +210455,1052.2750000113635,-0.05507853183864563 +210456,1052.2800000113637,-0.055078481232794546 +210457,1052.2850000113638,-0.05507843062484169 +210458,1052.2900000113639,-0.055078380014787015 +210459,1052.295000011364,-0.0550783294026305 +210460,1052.300000011364,-0.05507827878837209 +210461,1052.3050000113642,-0.05507822817201175 +210462,1052.3100000113643,-0.05507817755354944 +210463,1052.3150000113644,-0.05507812693298512 +210464,1052.3200000113645,-0.05507807631031875 +210465,1052.3250000113646,-0.055078025685550286 +210466,1052.3300000113647,-0.0550779750586797 +210467,1052.3350000113649,-0.055077924429706944 +210468,1052.340000011365,-0.05507787379863197 +210469,1052.345000011365,-0.05507782316545476 +210470,1052.3500000113652,-0.055077772530175255 +210471,1052.3550000113653,-0.05507772189279342 +210472,1052.3600000113654,-0.05507767125330922 +210473,1052.3650000113655,-0.05507762061172261 +210474,1052.3700000113656,-0.05507756996803354 +210475,1052.3750000113657,-0.055077519322241995 +210476,1052.3800000113658,-0.05507746867434793 +210477,1052.385000011366,-0.05507741802435129 +210478,1052.390000011366,-0.055077367372252044 +210479,1052.3950000113662,-0.05507731671805014 +210480,1052.4000000113663,-0.055077266061745546 +210481,1052.4050000113664,-0.05507721540333823 +210482,1052.4100000113665,-0.055077164742828144 +210483,1052.4150000113666,-0.055077114080215255 +210484,1052.4200000113667,-0.05507706341549951 +210485,1052.4250000113668,-0.05507701274868089 +210486,1052.430000011367,-0.05507696207975934 +210487,1052.435000011367,-0.055076911408734816 +210488,1052.4400000113671,-0.05507686073560728 +210489,1052.4450000113673,-0.055076810060376714 +210490,1052.4500000113674,-0.05507675938304306 +210491,1052.4550000113675,-0.05507670870360627 +210492,1052.4600000113676,-0.055076658022066315 +210493,1052.4650000113677,-0.05507660733842314 +210494,1052.4700000113678,-0.055076556652676745 +210495,1052.475000011368,-0.05507650596482705 +210496,1052.480000011368,-0.05507645527487402 +210497,1052.4850000113681,-0.05507640458281763 +210498,1052.4900000113682,-0.055076353888657836 +210499,1052.4950000113683,-0.05507630319239459 +210500,1052.5000000113685,-0.05507625249402786 +210501,1052.5050000113686,-0.0550762017935576 +210502,1052.5100000113687,-0.05507615109098377 +210503,1052.5150000113688,-0.05507610038630634 +210504,1052.520000011369,-0.05507604967952526 +210505,1052.525000011369,-0.055075998970640486 +210506,1052.530000011369,-0.055075948259651994 +210507,1052.5350000113692,-0.055075897546559734 +210508,1052.5400000113693,-0.05507584683136366 +210509,1052.5450000113694,-0.05507579611406375 +210510,1052.5500000113695,-0.055075745394659946 +210511,1052.5550000113697,-0.055075694673152216 +210512,1052.5600000113698,-0.05507564394954052 +210513,1052.5650000113699,-0.05507559322382481 +210514,1052.57000001137,-0.055075542496005055 +210515,1052.57500001137,-0.05507549176608122 +210516,1052.5800000113702,-0.05507544103405324 +210517,1052.5850000113703,-0.05507539029992111 +210518,1052.5900000113704,-0.055075339563684766 +210519,1052.5950000113705,-0.055075288825344175 +210520,1052.6000000113706,-0.05507523808489928 +210521,1052.6050000113707,-0.055075187342350077 +210522,1052.6100000113709,-0.0550751365976965 +210523,1052.615000011371,-0.05507508585093851 +210524,1052.620000011371,-0.05507503510207607 +210525,1052.6250000113712,-0.055074984351109135 +210526,1052.6300000113713,-0.055074933598037674 +210527,1052.6350000113714,-0.05507488284286164 +210528,1052.6400000113715,-0.055074832085581 +210529,1052.6450000113716,-0.055074781326195706 +210530,1052.6500000113717,-0.055074730564705736 +210531,1052.6550000113718,-0.05507467980111102 +210532,1052.660000011372,-0.055074629035411535 +210533,1052.665000011372,-0.05507457826760724 +210534,1052.6700000113722,-0.05507452749769809 +210535,1052.6750000113723,-0.05507447672568405 +210536,1052.6800000113724,-0.05507442595156508 +210537,1052.6850000113725,-0.05507437517534113 +210538,1052.6900000113726,-0.05507432439701218 +210539,1052.6950000113727,-0.05507427361657817 +210540,1052.7000000113728,-0.05507422283403908 +210541,1052.705000011373,-0.05507417204939485 +210542,1052.710000011373,-0.05507412126264544 +210543,1052.7150000113731,-0.055074070473790815 +210544,1052.7200000113733,-0.05507401968283094 +210545,1052.7250000113734,-0.05507396888976577 +210546,1052.7300000113735,-0.055073918094595276 +210547,1052.7350000113736,-0.0550738672973194 +210548,1052.7400000113737,-0.0550738164979381 +210549,1052.7450000113738,-0.055073765696451345 +210550,1052.750000011374,-0.0550737148928591 +210551,1052.755000011374,-0.05507366408716132 +210552,1052.7600000113741,-0.05507361327935796 +210553,1052.7650000113742,-0.055073562469448986 +210554,1052.7700000113743,-0.055073511657434356 +210555,1052.7750000113745,-0.05507346084331403 +210556,1052.7800000113746,-0.05507341002708796 +210557,1052.7850000113747,-0.05507335920875612 +210558,1052.7900000113748,-0.055073308388318455 +210559,1052.795000011375,-0.05507325756577493 +210560,1052.800000011375,-0.0550732067411255 +210561,1052.8050000113751,-0.055073155914370134 +210562,1052.8100000113752,-0.055073105085508785 +210563,1052.8150000113753,-0.05507305425454142 +210564,1052.8200000113754,-0.05507300342146799 +210565,1052.8250000113756,-0.05507295258628845 +210566,1052.8300000113757,-0.055072901749002784 +210567,1052.8350000113758,-0.055072850909610935 +210568,1052.8400000113759,-0.055072800068112854 +210569,1052.845000011376,-0.05507274922450851 +210570,1052.850000011376,-0.05507269837879787 +210571,1052.8550000113762,-0.05507264753098087 +210572,1052.8600000113763,-0.055072596681057503 +210573,1052.8650000113764,-0.0550725458290277 +210574,1052.8700000113765,-0.055072494974891445 +210575,1052.8750000113766,-0.055072444118648665 +210576,1052.8800000113768,-0.055072393260299335 +210577,1052.8850000113769,-0.05507234239984344 +210578,1052.890000011377,-0.0550722915372809 +210579,1052.895000011377,-0.0550722406726117 +210580,1052.9000000113772,-0.055072189805835794 +210581,1052.9050000113773,-0.055072138936953126 +210582,1052.9100000113774,-0.05507208806596367 +210583,1052.9150000113775,-0.055072037192867386 +210584,1052.9200000113776,-0.055071986317664225 +210585,1052.9250000113777,-0.055071935440354165 +210586,1052.9300000113778,-0.05507188456093715 +210587,1052.935000011378,-0.05507183367941313 +210588,1052.940000011378,-0.055071782795782086 +210589,1052.9450000113782,-0.05507173191004397 +210590,1052.9500000113783,-0.05507168102219873 +210591,1052.9550000113784,-0.05507163013224634 +210592,1052.9600000113785,-0.055071579240186755 +210593,1052.9650000113786,-0.05507152834601993 +210594,1052.9700000113787,-0.05507147744974583 +210595,1052.9750000113788,-0.05507142655136441 +210596,1052.980000011379,-0.05507137565087564 +210597,1052.985000011379,-0.055071324748279464 +210598,1052.9900000113792,-0.05507127384357585 +210599,1052.9950000113793,-0.05507122293676476 +210600,1053.0000000113794,-0.055071172027846144 +210601,1053.0050000113795,-0.05507112111681997 +210602,1053.0100000113796,-0.05507107020368619 +210603,1053.0150000113797,-0.055071019288444774 +210604,1053.0200000113798,-0.05507096837109567 +210605,1053.02500001138,-0.05507091745163885 +210606,1053.03000001138,-0.05507086653007426 +210607,1053.0350000113801,-0.055070815606401854 +210608,1053.0400000113802,-0.05507076468062161 +210609,1053.0450000113804,-0.055070713752733466 +210610,1053.0500000113805,-0.055070662822737405 +210611,1053.0550000113806,-0.05507061189063337 +210612,1053.0600000113807,-0.055070560956421336 +210613,1053.0650000113808,-0.055070510020101236 +210614,1053.070000011381,-0.05507045908167305 +210615,1053.075000011381,-0.05507040814113674 +210616,1053.0800000113811,-0.05507035719849225 +210617,1053.0850000113812,-0.05507030625373955 +210618,1053.0900000113813,-0.0550702553068786 +210619,1053.0950000113814,-0.055070204357909346 +210620,1053.1000000113816,-0.055070153406831766 +210621,1053.1050000113817,-0.055070102453645804 +210622,1053.1100000113818,-0.05507005149835142 +210623,1053.1150000113819,-0.055070000540948585 +210624,1053.120000011382,-0.055069949581437246 +210625,1053.125000011382,-0.05506989861981737 +210626,1053.1300000113822,-0.05506984765608891 +210627,1053.1350000113823,-0.05506979669025184 +210628,1053.1400000113824,-0.05506974572230609 +210629,1053.1450000113825,-0.05506969475225165 +210630,1053.1500000113826,-0.05506964378008847 +210631,1053.1550000113828,-0.0550695928058165 +210632,1053.1600000113829,-0.05506954182943571 +210633,1053.165000011383,-0.05506949085094604 +210634,1053.170000011383,-0.055069439870347466 +210635,1053.1750000113832,-0.055069388887639945 +210636,1053.1800000113833,-0.05506933790282344 +210637,1053.1850000113834,-0.055069286915897894 +210638,1053.1900000113835,-0.05506923592686329 +210639,1053.1950000113836,-0.055069184935719565 +210640,1053.2000000113837,-0.055069133942466694 +210641,1053.2050000113838,-0.05506908294710462 +210642,1053.210000011384,-0.055069031949633314 +210643,1053.215000011384,-0.055068980950052734 +210644,1053.2200000113842,-0.055068929948362835 +210645,1053.2250000113843,-0.05506887894456358 +210646,1053.2300000113844,-0.05506882793865492 +210647,1053.2350000113845,-0.05506877693063683 +210648,1053.2400000113846,-0.05506872592050925 +210649,1053.2450000113847,-0.05506867490827216 +210650,1053.2500000113848,-0.05506862389392551 +210651,1053.255000011385,-0.05506857287746924 +210652,1053.260000011385,-0.055068521858903326 +210653,1053.2650000113852,-0.055068470838227725 +210654,1053.2700000113853,-0.055068419815442415 +210655,1053.2750000113854,-0.05506836879054733 +210656,1053.2800000113855,-0.05506831776354242 +210657,1053.2850000113856,-0.05506826673442768 +210658,1053.2900000113857,-0.05506821570320304 +210659,1053.2950000113858,-0.05506816466986847 +210660,1053.300000011386,-0.055068113634423925 +210661,1053.305000011386,-0.05506806259686937 +210662,1053.3100000113861,-0.055068011557204755 +210663,1053.3150000113862,-0.055067960515430045 +210664,1053.3200000113864,-0.0550679094715452 +210665,1053.3250000113865,-0.05506785842555017 +210666,1053.3300000113866,-0.055067807377444926 +210667,1053.3350000113867,-0.05506775632722942 +210668,1053.3400000113868,-0.055067705274903615 +210669,1053.345000011387,-0.055067654220467464 +210670,1053.350000011387,-0.055067603163920925 +210671,1053.3550000113871,-0.055067552105263956 +210672,1053.3600000113872,-0.05506750104449652 +210673,1053.3650000113873,-0.055067449981618596 +210674,1053.3700000113874,-0.055067398916630116 +210675,1053.3750000113876,-0.05506734784953103 +210676,1053.3800000113877,-0.05506729678032133 +210677,1053.3850000113878,-0.055067245709000956 +210678,1053.3900000113879,-0.05506719463556986 +210679,1053.395000011388,-0.055067143560028016 +210680,1053.400000011388,-0.055067092482375374 +210681,1053.4050000113882,-0.05506704140261189 +210682,1053.4100000113883,-0.05506699032073753 +210683,1053.4150000113884,-0.05506693923675225 +210684,1053.4200000113885,-0.05506688815065602 +210685,1053.4250000113886,-0.05506683706244877 +210686,1053.4300000113888,-0.05506678597213049 +210687,1053.4350000113889,-0.05506673487970112 +210688,1053.440000011389,-0.05506668378516062 +210689,1053.445000011389,-0.05506663268850896 +210690,1053.4500000113892,-0.055066581589746096 +210691,1053.4550000113893,-0.05506653048887198 +210692,1053.4600000113894,-0.05506647938588657 +210693,1053.4650000113895,-0.05506642828078982 +210694,1053.4700000113896,-0.0550663771735817 +210695,1053.4750000113897,-0.05506632606426217 +210696,1053.4800000113898,-0.05506627495283118 +210697,1053.48500001139,-0.0550662238392887 +210698,1053.49000001139,-0.05506617272363467 +210699,1053.4950000113902,-0.05506612160586906 +210700,1053.5000000113903,-0.05506607048599183 +210701,1053.5050000113904,-0.05506601936400294 +210702,1053.5100000113905,-0.05506596823990235 +210703,1053.5150000113906,-0.05506591711369001 +210704,1053.5200000113907,-0.05506586598536588 +210705,1053.5250000113908,-0.05506581485492991 +210706,1053.530000011391,-0.05506576372238209 +210707,1053.535000011391,-0.055065712587722346 +210708,1053.5400000113912,-0.05506566145095066 +210709,1053.5450000113913,-0.055065610312066963 +210710,1053.5500000113914,-0.05506555917107125 +210711,1053.5550000113915,-0.05506550802796345 +210712,1053.5600000113916,-0.05506545688274352 +210713,1053.5650000113917,-0.05506540573541143 +210714,1053.5700000113918,-0.05506535458596715 +210715,1053.575000011392,-0.05506530343441062 +210716,1053.580000011392,-0.05506525228074182 +210717,1053.5850000113921,-0.05506520112496068 +210718,1053.5900000113922,-0.05506514996706717 +210719,1053.5950000113924,-0.055065098807061265 +210720,1053.6000000113925,-0.0550650476449429 +210721,1053.6050000113926,-0.05506499648071204 +210722,1053.6100000113927,-0.05506494531436866 +210723,1053.6150000113928,-0.05506489414591269 +210724,1053.620000011393,-0.05506484297534411 +210725,1053.625000011393,-0.05506479180266287 +210726,1053.6300000113931,-0.05506474062786893 +210727,1053.6350000113932,-0.05506468945096225 +210728,1053.6400000113933,-0.05506463827194279 +210729,1053.6450000113934,-0.05506458709081049 +210730,1053.6500000113936,-0.05506453590756535 +210731,1053.6550000113937,-0.055064484722207284 +210732,1053.6600000113938,-0.055064433534736265 +210733,1053.6650000113939,-0.05506438234515227 +210734,1053.670000011394,-0.05506433115345524 +210735,1053.675000011394,-0.055064279959645135 +210736,1053.6800000113942,-0.05506422876372191 +210737,1053.6850000113943,-0.05506417756568554 +210738,1053.6900000113944,-0.055064126365535954 +210739,1053.6950000113945,-0.055064075163273135 +210740,1053.7000000113946,-0.05506402395889703 +210741,1053.7050000113948,-0.05506397275240761 +210742,1053.7100000113949,-0.05506392154380482 +210743,1053.715000011395,-0.055063870333088634 +210744,1053.720000011395,-0.05506381912025898 +210745,1053.7250000113952,-0.05506376790531584 +210746,1053.7300000113953,-0.05506371668825918 +210747,1053.7350000113954,-0.05506366546908893 +210748,1053.7400000113955,-0.05506361424780508 +210749,1053.7450000113956,-0.055063563024407555 +210750,1053.7500000113957,-0.05506351179889635 +210751,1053.7550000113959,-0.05506346057127139 +210752,1053.760000011396,-0.05506340934153265 +210753,1053.765000011396,-0.055063358109680084 +210754,1053.7700000113962,-0.055063306875713654 +210755,1053.7750000113963,-0.05506325563963331 +210756,1053.7800000113964,-0.055063204401439025 +210757,1053.7850000113965,-0.055063153161130744 +210758,1053.7900000113966,-0.05506310191870844 +210759,1053.7950000113967,-0.05506305067417206 +210760,1053.8000000113968,-0.05506299942752156 +210761,1053.805000011397,-0.0550629481787569 +210762,1053.810000011397,-0.055062896927878045 +210763,1053.8150000113972,-0.05506284567488494 +210764,1053.8200000113973,-0.055062794419777565 +210765,1053.8250000113974,-0.05506274316255585 +210766,1053.8300000113975,-0.055062691903219774 +210767,1053.8350000113976,-0.05506264064176928 +210768,1053.8400000113977,-0.05506258937820434 +210769,1053.8450000113978,-0.05506253811252491 +210770,1053.850000011398,-0.05506248684473094 +210771,1053.855000011398,-0.05506243557482239 +210772,1053.8600000113981,-0.055062384302799215 +210773,1053.8650000113983,-0.055062333028661384 +210774,1053.8700000113984,-0.05506228175240887 +210775,1053.8750000113985,-0.0550622304740416 +210776,1053.8800000113986,-0.055062179193559546 +210777,1053.8850000113987,-0.05506212791096266 +210778,1053.8900000113988,-0.0550620766262509 +210779,1053.895000011399,-0.055062025339424225 +210780,1053.900000011399,-0.055061974050482604 +210781,1053.9050000113991,-0.05506192275942599 +210782,1053.9100000113992,-0.05506187146625432 +210783,1053.9150000113993,-0.05506182017096758 +210784,1053.9200000113995,-0.05506176887356571 +210785,1053.9250000113996,-0.05506171757404869 +210786,1053.9300000113997,-0.05506166627241646 +210787,1053.9350000113998,-0.05506161496866898 +210788,1053.9400000114,-0.05506156366280621 +210789,1053.9450000114,-0.05506151235482811 +210790,1053.9500000114,-0.05506146104473463 +210791,1053.9550000114002,-0.05506140973252573 +210792,1053.9600000114003,-0.05506135841820138 +210793,1053.9650000114004,-0.05506130710176153 +210794,1053.9700000114005,-0.055061255783206135 +210795,1053.9750000114007,-0.05506120446253516 +210796,1053.9800000114008,-0.055061153139748555 +210797,1053.9850000114009,-0.05506110181484628 +210798,1053.990000011401,-0.0550610504878283 +210799,1053.995000011401,-0.05506099915869456 +210800,1054.0000000114012,-0.05506094782744502 +210801,1054.0050000114013,-0.05506089649407964 +210802,1054.0100000114014,-0.055060845158598395 +210803,1054.0150000114015,-0.05506079382100123 +210804,1054.0200000114016,-0.05506074248128809 +210805,1054.0250000114017,-0.05506069113945895 +210806,1054.0300000114019,-0.05506063979551377 +210807,1054.035000011402,-0.05506058844945248 +210808,1054.040000011402,-0.05506053710127508 +210809,1054.0450000114022,-0.055060485750981485 +210810,1054.0500000114023,-0.05506043439857169 +210811,1054.0550000114024,-0.055060383044045626 +210812,1054.0600000114025,-0.05506033168740326 +210813,1054.0650000114026,-0.055060280328644566 +210814,1054.0700000114027,-0.05506022896776948 +210815,1054.0750000114028,-0.055060177604777966 +210816,1054.080000011403,-0.05506012623966997 +210817,1054.085000011403,-0.05506007487244547 +210818,1054.0900000114032,-0.05506002350310442 +210819,1054.0950000114033,-0.055059972131646776 +210820,1054.1000000114034,-0.05505992075807248 +210821,1054.1050000114035,-0.055059869382381506 +210822,1054.1100000114036,-0.05505981800457382 +210823,1054.1150000114037,-0.055059766624649356 +210824,1054.1200000114038,-0.055059715242608095 +210825,1054.125000011404,-0.05505966385844998 +210826,1054.130000011404,-0.05505961247217498 +210827,1054.1350000114041,-0.055059561083783036 +210828,1054.1400000114043,-0.05505950969327411 +210829,1054.1450000114044,-0.05505945830064818 +210830,1054.1500000114045,-0.055059406905905175 +210831,1054.1550000114046,-0.055059355509045074 +210832,1054.1600000114047,-0.055059304110067826 +210833,1054.1650000114048,-0.05505925270897339 +210834,1054.170000011405,-0.05505920130576172 +210835,1054.175000011405,-0.05505914990043277 +210836,1054.1800000114051,-0.05505909849298651 +210837,1054.1850000114052,-0.055059047083422887 +210838,1054.1900000114053,-0.055058995671741856 +210839,1054.1950000114055,-0.055058944257943394 +210840,1054.2000000114056,-0.055058892842027446 +210841,1054.2050000114057,-0.05505884142399397 +210842,1054.2100000114058,-0.055058790003842915 +210843,1054.215000011406,-0.05505873858157425 +210844,1054.220000011406,-0.05505868715718793 +210845,1054.225000011406,-0.05505863573068392 +210846,1054.2300000114062,-0.05505858430206216 +210847,1054.2350000114063,-0.05505853287132261 +210848,1054.2400000114064,-0.05505848143846525 +210849,1054.2450000114065,-0.05505843000349002 +210850,1054.2500000114067,-0.05505837856639687 +210851,1054.2550000114068,-0.05505832712718578 +210852,1054.2600000114069,-0.05505827568585669 +210853,1054.265000011407,-0.055058224242409554 +210854,1054.270000011407,-0.05505817279684435 +210855,1054.2750000114072,-0.055058121349161014 +210856,1054.2800000114073,-0.05505806989935951 +210857,1054.2850000114074,-0.05505801844743981 +210858,1054.2900000114075,-0.05505796699340185 +210859,1054.2950000114076,-0.055057915537245594 +210860,1054.3000000114077,-0.05505786407897101 +210861,1054.3050000114079,-0.05505781261857804 +210862,1054.310000011408,-0.05505776115606665 +210863,1054.315000011408,-0.0550577096914368 +210864,1054.3200000114082,-0.05505765822468844 +210865,1054.3250000114083,-0.05505760675582154 +210866,1054.3300000114084,-0.055057555284836045 +210867,1054.3350000114085,-0.055057503811731905 +210868,1054.3400000114086,-0.055057452336509105 +210869,1054.3450000114087,-0.05505740085916757 +210870,1054.3500000114088,-0.05505734937970728 +210871,1054.355000011409,-0.05505729789812819 +210872,1054.360000011409,-0.05505724641443024 +210873,1054.3650000114092,-0.05505719492861341 +210874,1054.3700000114093,-0.05505714344067765 +210875,1054.3750000114094,-0.05505709195062291 +210876,1054.3800000114095,-0.055057040458449155 +210877,1054.3850000114096,-0.05505698896415633 +210878,1054.3900000114097,-0.055056937467744406 +210879,1054.3950000114098,-0.05505688596921334 +210880,1054.40000001141,-0.05505683446856308 +210881,1054.40500001141,-0.05505678296579359 +210882,1054.4100000114101,-0.05505673146090481 +210883,1054.4150000114103,-0.05505667995389674 +210884,1054.4200000114104,-0.05505662844476929 +210885,1054.4250000114105,-0.055056576933522436 +210886,1054.4300000114106,-0.05505652542015615 +210887,1054.4350000114107,-0.05505647390467037 +210888,1054.4400000114108,-0.055056422387065054 +210889,1054.445000011411,-0.055056370867340165 +210890,1054.450000011411,-0.05505631934549565 +210891,1054.4550000114111,-0.055056267821531495 +210892,1054.4600000114112,-0.05505621629544763 +210893,1054.4650000114113,-0.055056164767244016 +210894,1054.4700000114115,-0.05505611323692061 +210895,1054.4750000114116,-0.055056061704477376 +210896,1054.4800000114117,-0.05505601016991426 +210897,1054.4850000114118,-0.05505595863323124 +210898,1054.490000011412,-0.055055907094428265 +210899,1054.495000011412,-0.055055855553505284 +210900,1054.500000011412,-0.055055804010462256 +210901,1054.5050000114122,-0.05505575246529914 +210902,1054.5100000114123,-0.05505570091801587 +210903,1054.5150000114124,-0.05505564936861245 +210904,1054.5200000114125,-0.0550555978170888 +210905,1054.5250000114127,-0.05505554626344488 +210906,1054.5300000114128,-0.05505549470768067 +210907,1054.5350000114129,-0.05505544314979611 +210908,1054.540000011413,-0.055055391589791156 +210909,1054.545000011413,-0.05505534002766578 +210910,1054.5500000114132,-0.05505528846341993 +210911,1054.5550000114133,-0.05505523689705355 +210912,1054.5600000114134,-0.05505518532856661 +210913,1054.5650000114135,-0.05505513375795907 +210914,1054.5700000114136,-0.05505508218523089 +210915,1054.5750000114137,-0.05505503061038201 +210916,1054.5800000114139,-0.055054979033412395 +210917,1054.585000011414,-0.055054927454322014 +210918,1054.590000011414,-0.0550548758731108 +210919,1054.5950000114142,-0.05505482428977874 +210920,1054.6000000114143,-0.05505477270432576 +210921,1054.6050000114144,-0.05505472111675184 +210922,1054.6100000114145,-0.05505466952705692 +210923,1054.6150000114146,-0.05505461793524097 +210924,1054.6200000114147,-0.05505456634130394 +210925,1054.6250000114148,-0.05505451474524578 +210926,1054.630000011415,-0.055054463147066475 +210927,1054.635000011415,-0.05505441154676595 +210928,1054.6400000114152,-0.05505435994434417 +210929,1054.6450000114153,-0.0550543083398011 +210930,1054.6500000114154,-0.055054256733136686 +210931,1054.6550000114155,-0.0550542051243509 +210932,1054.6600000114156,-0.05505415351344369 +210933,1054.6650000114157,-0.05505410190041502 +210934,1054.6700000114158,-0.05505405028526484 +210935,1054.675000011416,-0.0550539986679931 +210936,1054.680000011416,-0.05505394704859977 +210937,1054.6850000114162,-0.05505389542708478 +210938,1054.6900000114163,-0.05505384380344812 +210939,1054.6950000114164,-0.05505379217768973 +210940,1054.7000000114165,-0.05505374054980958 +210941,1054.7050000114166,-0.055053688919807615 +210942,1054.7100000114167,-0.05505363728768379 +210943,1054.7150000114168,-0.05505358565343806 +210944,1054.720000011417,-0.055053534017070395 +210945,1054.725000011417,-0.05505348237858074 +210946,1054.7300000114171,-0.05505343073796907 +210947,1054.7350000114172,-0.05505337909523531 +210948,1054.7400000114174,-0.05505332745037944 +210949,1054.7450000114175,-0.05505327580340142 +210950,1054.7500000114176,-0.055053224154301195 +210951,1054.7550000114177,-0.055053172503078715 +210952,1054.7600000114178,-0.05505312084973396 +210953,1054.765000011418,-0.05505306919426687 +210954,1054.770000011418,-0.0550530175366774 +210955,1054.7750000114181,-0.055052965876965516 +210956,1054.7800000114182,-0.05505291421513117 +210957,1054.7850000114183,-0.055052862551174316 +210958,1054.7900000114184,-0.0550528108850949 +210959,1054.7950000114186,-0.0550527592168929 +210960,1054.8000000114187,-0.055052707546568255 +210961,1054.8050000114188,-0.05505265587412095 +210962,1054.8100000114189,-0.0550526041995509 +210963,1054.815000011419,-0.055052552522858095 +210964,1054.820000011419,-0.055052500844042486 +210965,1054.8250000114192,-0.05505244916310401 +210966,1054.8300000114193,-0.05505239748004265 +210967,1054.8350000114194,-0.05505234579485834 +210968,1054.8400000114195,-0.05505229410755105 +210969,1054.8450000114196,-0.05505224241812073 +210970,1054.8500000114198,-0.05505219072656735 +210971,1054.8550000114199,-0.05505213903289085 +210972,1054.86000001142,-0.055052087337091195 +210973,1054.86500001142,-0.05505203563916834 +210974,1054.8700000114202,-0.05505198393912224 +210975,1054.8750000114203,-0.05505193223695284 +210976,1054.8800000114204,-0.05505188053266011 +210977,1054.8850000114205,-0.05505182882624401 +210978,1054.8900000114206,-0.05505177711770449 +210979,1054.8950000114207,-0.0550517254070415 +210980,1054.9000000114208,-0.05505167369425502 +210981,1054.905000011421,-0.055051621979344975 +210982,1054.910000011421,-0.05505157026231135 +210983,1054.9150000114212,-0.05505151854315408 +210984,1054.9200000114213,-0.05505146682187312 +210985,1054.9250000114214,-0.05505141509846844 +210986,1054.9300000114215,-0.055051363372940004 +210987,1054.9350000114216,-0.05505131164528775 +210988,1054.9400000114217,-0.05505125991551164 +210989,1054.9450000114218,-0.05505120818361162 +210990,1054.950000011422,-0.05505115644958767 +210991,1054.955000011422,-0.05505110471343973 +210992,1054.9600000114222,-0.05505105297516776 +210993,1054.9650000114223,-0.05505100123477172 +210994,1054.9700000114224,-0.05505094949225156 +210995,1054.9750000114225,-0.05505089774760724 +210996,1054.9800000114226,-0.05505084600083872 +210997,1054.9850000114227,-0.05505079425194594 +210998,1054.9900000114228,-0.055050742500928875 +210999,1054.995000011423,-0.05505069074778747 +211000,1055.000000011423,-0.05505063899252168 +211001,1055.0050000114231,-0.055050587235131475 +211002,1055.0100000114232,-0.0550505354756168 +211003,1055.0150000114234,-0.05505048371397762 +211004,1055.0200000114235,-0.05505043195021388 +211005,1055.0250000114236,-0.05505038018432554 +211006,1055.0300000114237,-0.055050328416312556 +211007,1055.0350000114238,-0.05505027664617488 +211008,1055.040000011424,-0.055050224873912486 +211009,1055.045000011424,-0.05505017309952531 +211010,1055.0500000114241,-0.05505012132301332 +211011,1055.0550000114242,-0.055050069544376454 +211012,1055.0600000114243,-0.05505001776361469 +211013,1055.0650000114244,-0.05504996598072798 +211014,1055.0700000114246,-0.05504991419571627 +211015,1055.0750000114247,-0.05504986240857953 +211016,1055.0800000114248,-0.0550498106193177 +211017,1055.0850000114249,-0.05504975882793075 +211018,1055.090000011425,-0.05504970703441863 +211019,1055.095000011425,-0.055049655238781296 +211020,1055.1000000114252,-0.0550496034410187 +211021,1055.1050000114253,-0.05504955164113082 +211022,1055.1100000114254,-0.05504949983911759 +211023,1055.1150000114255,-0.055049448034978965 +211024,1055.1200000114256,-0.0550493962287149 +211025,1055.1250000114258,-0.05504934442032536 +211026,1055.1300000114259,-0.05504929260981029 +211027,1055.135000011426,-0.05504924079716968 +211028,1055.140000011426,-0.055049188982403435 +211029,1055.1450000114262,-0.055049137165511554 +211030,1055.1500000114263,-0.05504908534649397 +211031,1055.1550000114264,-0.055049033525350635 +211032,1055.1600000114265,-0.055048981702081536 +211033,1055.1650000114266,-0.0550489298766866 +211034,1055.1700000114267,-0.05504887804916578 +211035,1055.1750000114268,-0.055048826219519044 +211036,1055.180000011427,-0.05504877438774635 +211037,1055.185000011427,-0.05504872255384766 +211038,1055.1900000114272,-0.0550486707178229 +211039,1055.1950000114273,-0.055048618879672065 +211040,1055.2000000114274,-0.055048567039395084 +211041,1055.2050000114275,-0.055048515196991915 +211042,1055.2100000114276,-0.05504846335246252 +211043,1055.2150000114277,-0.05504841150580685 +211044,1055.2200000114278,-0.05504835965702488 +211045,1055.225000011428,-0.05504830780611654 +211046,1055.230000011428,-0.055048255953081805 +211047,1055.2350000114282,-0.05504820409792062 +211048,1055.2400000114283,-0.05504815224063295 +211049,1055.2450000114284,-0.05504810038121873 +211050,1055.2500000114285,-0.055048048519677935 +211051,1055.2550000114286,-0.055047996656010525 +211052,1055.2600000114287,-0.055047944790216435 +211053,1055.2650000114288,-0.05504789292229563 +211054,1055.270000011429,-0.055047841052248074 +211055,1055.275000011429,-0.05504778918007372 +211056,1055.2800000114291,-0.05504773730577252 +211057,1055.2850000114292,-0.05504768542934443 +211058,1055.2900000114294,-0.0550476335507894 +211059,1055.2950000114295,-0.05504758167010739 +211060,1055.3000000114296,-0.05504752978729836 +211061,1055.3050000114297,-0.05504747790236226 +211062,1055.3100000114298,-0.05504742601529905 +211063,1055.31500001143,-0.055047374126108696 +211064,1055.32000001143,-0.05504732223479114 +211065,1055.3250000114301,-0.055047270341346335 +211066,1055.3300000114302,-0.05504721844577424 +211067,1055.3350000114303,-0.055047166548074816 +211068,1055.3400000114304,-0.05504711464824801 +211069,1055.3450000114306,-0.05504706274629379 +211070,1055.3500000114307,-0.05504701084221209 +211071,1055.3550000114308,-0.05504695893600288 +211072,1055.3600000114309,-0.055046907027666125 +211073,1055.365000011431,-0.05504685511720176 +211074,1055.370000011431,-0.05504680320460976 +211075,1055.3750000114312,-0.05504675128989007 +211076,1055.3800000114313,-0.05504669937304264 +211077,1055.3850000114314,-0.05504664745406744 +211078,1055.3900000114315,-0.05504659553296442 +211079,1055.3950000114316,-0.05504654360973353 +211080,1055.4000000114318,-0.05504649168437473 +211081,1055.4050000114319,-0.05504643975688798 +211082,1055.410000011432,-0.055046387827273224 +211083,1055.415000011432,-0.05504633589553042 +211084,1055.4200000114322,-0.055046283961659524 +211085,1055.4250000114323,-0.0550462320256605 +211086,1055.4300000114324,-0.0550461800875333 +211087,1055.4350000114325,-0.05504612814727787 +211088,1055.4400000114326,-0.05504607620489418 +211089,1055.4450000114327,-0.055046024260382166 +211090,1055.4500000114328,-0.055045972313741816 +211091,1055.455000011433,-0.05504592036497306 +211092,1055.460000011433,-0.055045868414075855 +211093,1055.4650000114332,-0.055045816461050154 +211094,1055.4700000114333,-0.05504576450589592 +211095,1055.4750000114334,-0.05504571254861311 +211096,1055.4800000114335,-0.05504566058920168 +211097,1055.4850000114336,-0.055045608627661564 +211098,1055.4900000114337,-0.055045556663992745 +211099,1055.4950000114338,-0.05504550469819516 +211100,1055.500000011434,-0.05504545273026878 +211101,1055.505000011434,-0.05504540076021355 +211102,1055.5100000114342,-0.05504534878802943 +211103,1055.5150000114343,-0.05504529681371638 +211104,1055.5200000114344,-0.05504524483727434 +211105,1055.5250000114345,-0.055045192858703275 +211106,1055.5300000114346,-0.05504514087800314 +211107,1055.5350000114347,-0.05504508889517389 +211108,1055.5400000114348,-0.05504503691021547 +211109,1055.545000011435,-0.05504498492312786 +211110,1055.550000011435,-0.05504493293391099 +211111,1055.5550000114351,-0.055044880942564815 +211112,1055.5600000114352,-0.05504482894908931 +211113,1055.5650000114354,-0.05504477695348442 +211114,1055.5700000114355,-0.0550447249557501 +211115,1055.5750000114356,-0.05504467295588631 +211116,1055.5800000114357,-0.055044620953893 +211117,1055.5850000114358,-0.055044568949770126 +211118,1055.590000011436,-0.055044516943517634 +211119,1055.595000011436,-0.0550444649351355 +211120,1055.6000000114361,-0.055044412924623656 +211121,1055.6050000114362,-0.05504436091198208 +211122,1055.6100000114363,-0.055044308897210716 +211123,1055.6150000114365,-0.05504425688030952 +211124,1055.6200000114366,-0.055044204861278444 +211125,1055.6250000114367,-0.05504415284011745 +211126,1055.6300000114368,-0.05504410081682647 +211127,1055.635000011437,-0.05504404879140549 +211128,1055.640000011437,-0.05504399676385445 +211129,1055.645000011437,-0.05504394473417331 +211130,1055.6500000114372,-0.05504389270236202 +211131,1055.6550000114373,-0.05504384066842053 +211132,1055.6600000114374,-0.05504378863234881 +211133,1055.6650000114375,-0.05504373659414681 +211134,1055.6700000114377,-0.055043684553814476 +211135,1055.6750000114378,-0.055043632511351775 +211136,1055.6800000114379,-0.055043580466758654 +211137,1055.685000011438,-0.05504352842003508 +211138,1055.690000011438,-0.05504347637118099 +211139,1055.6950000114382,-0.055043424320196335 +211140,1055.7000000114383,-0.0550433722670811 +211141,1055.7050000114384,-0.05504332021183521 +211142,1055.7100000114385,-0.05504326815445863 +211143,1055.7150000114386,-0.055043216094951324 +211144,1055.7200000114387,-0.05504316403331323 +211145,1055.7250000114389,-0.055043111969544326 +211146,1055.730000011439,-0.055043059903644546 +211147,1055.735000011439,-0.055043007835613854 +211148,1055.7400000114392,-0.05504295576545219 +211149,1055.7450000114393,-0.055042903693159534 +211150,1055.7500000114394,-0.05504285161873582 +211151,1055.7550000114395,-0.05504279954218103 +211152,1055.7600000114396,-0.05504274746349509 +211153,1055.7650000114397,-0.05504269538267796 +211154,1055.7700000114398,-0.055042643299729604 +211155,1055.77500001144,-0.05504259121464997 +211156,1055.78000001144,-0.055042539127439026 +211157,1055.7850000114402,-0.05504248703809671 +211158,1055.7900000114403,-0.05504243494662299 +211159,1055.7950000114404,-0.05504238285301782 +211160,1055.8000000114405,-0.055042330757281134 +211161,1055.8050000114406,-0.0550422786594129 +211162,1055.8100000114407,-0.055042226559413085 +211163,1055.8150000114408,-0.05504217445728162 +211164,1055.820000011441,-0.05504212235301849 +211165,1055.825000011441,-0.05504207024662361 +211166,1055.8300000114411,-0.05504201813809696 +211167,1055.8350000114413,-0.05504196602743851 +211168,1055.8400000114414,-0.05504191391464818 +211169,1055.8450000114415,-0.05504186179972595 +211170,1055.8500000114416,-0.05504180968267177 +211171,1055.8550000114417,-0.055041757563485574 +211172,1055.8600000114418,-0.05504170544216734 +211173,1055.865000011442,-0.05504165331871703 +211174,1055.870000011442,-0.055041601193134566 +211175,1055.8750000114421,-0.05504154906541993 +211176,1055.8800000114422,-0.055041496935573066 +211177,1055.8850000114423,-0.05504144480359392 +211178,1055.8900000114425,-0.055041392669482464 +211179,1055.8950000114426,-0.05504134053323864 +211180,1055.9000000114427,-0.05504128839486241 +211181,1055.9050000114428,-0.05504123625435372 +211182,1055.910000011443,-0.05504118411171254 +211183,1055.915000011443,-0.05504113196693881 +211184,1055.920000011443,-0.05504107982003249 +211185,1055.9250000114432,-0.055041027670993545 +211186,1055.9300000114433,-0.055040975519821914 +211187,1055.9350000114434,-0.05504092336651755 +211188,1055.9400000114435,-0.055040871211080415 +211189,1055.9450000114437,-0.055040819053510465 +211190,1055.9500000114438,-0.055040766893807644 +211191,1055.9550000114439,-0.05504071473197192 +211192,1055.960000011444,-0.055040662568003246 +211193,1055.965000011444,-0.055040610401901564 +211194,1055.9700000114442,-0.05504055823366683 +211195,1055.9750000114443,-0.05504050606329901 +211196,1055.9800000114444,-0.05504045389079805 +211197,1055.9850000114445,-0.055040401716163916 +211198,1055.9900000114446,-0.055040349539396544 +211199,1055.9950000114447,-0.0550402973604959 +211200,1056.0000000114449,-0.05504024517946193 +211201,1056.005000011445,-0.05504019299629461 +211202,1056.010000011445,-0.05504014081099388 +211203,1056.0150000114452,-0.055040088623559684 +211204,1056.0200000114453,-0.05504003643399199 +211205,1056.0250000114454,-0.05503998424229074 +211206,1056.0300000114455,-0.05503993204845591 +211207,1056.0350000114456,-0.055039879852487435 +211208,1056.0400000114457,-0.05503982765438527 +211209,1056.0450000114458,-0.05503977545414936 +211210,1056.050000011446,-0.05503972325177969 +211211,1056.055000011446,-0.0550396710472762 +211212,1056.0600000114462,-0.05503961884063884 +211213,1056.0650000114463,-0.055039566631867556 +211214,1056.0700000114464,-0.05503951442096232 +211215,1056.0750000114465,-0.05503946220792308 +211216,1056.0800000114466,-0.055039409992749797 +211217,1056.0850000114467,-0.055039357775442416 +211218,1056.0900000114468,-0.05503930555600089 +211219,1056.095000011447,-0.05503925333442516 +211220,1056.100000011447,-0.0550392011107152 +211221,1056.1050000114471,-0.05503914888487096 +211222,1056.1100000114473,-0.0550390966568924 +211223,1056.1150000114474,-0.055039044426779454 +211224,1056.1200000114475,-0.0550389921945321 +211225,1056.1250000114476,-0.05503893996015029 +211226,1056.1300000114477,-0.05503888772363397 +211227,1056.1350000114478,-0.05503883548498308 +211228,1056.140000011448,-0.05503878324419759 +211229,1056.145000011448,-0.05503873100127746 +211230,1056.1500000114481,-0.05503867875622263 +211231,1056.1550000114482,-0.05503862650903305 +211232,1056.1600000114483,-0.0550385742597087 +211233,1056.1650000114485,-0.05503852200824952 +211234,1056.1700000114486,-0.055038469754655456 +211235,1056.1750000114487,-0.05503841749892646 +211236,1056.1800000114488,-0.05503836524106251 +211237,1056.185000011449,-0.05503831298106354 +211238,1056.190000011449,-0.05503826071892951 +211239,1056.195000011449,-0.05503820845466036 +211240,1056.2000000114492,-0.05503815618825607 +211241,1056.2050000114493,-0.05503810391971658 +211242,1056.2100000114494,-0.05503805164904183 +211243,1056.2150000114495,-0.05503799937623179 +211244,1056.2200000114497,-0.05503794710128642 +211245,1056.2250000114498,-0.055037894824205666 +211246,1056.2300000114499,-0.055037842544989474 +211247,1056.23500001145,-0.0550377902636378 +211248,1056.24000001145,-0.05503773798015061 +211249,1056.2450000114502,-0.055037685694527855 +211250,1056.2500000114503,-0.05503763340676949 +211251,1056.2550000114504,-0.055037581116875456 +211252,1056.2600000114505,-0.05503752882484572 +211253,1056.2650000114506,-0.055037476530680224 +211254,1056.2700000114507,-0.055037424234378934 +211255,1056.2750000114509,-0.05503737193594179 +211256,1056.280000011451,-0.05503731963536876 +211257,1056.285000011451,-0.055037267332659796 +211258,1056.2900000114512,-0.05503721502781484 +211259,1056.2950000114513,-0.05503716272083385 +211260,1056.3000000114514,-0.055037110411716786 +211261,1056.3050000114515,-0.055037058100463596 +211262,1056.3100000114516,-0.05503700578707424 +211263,1056.3150000114517,-0.05503695347154866 +211264,1056.3200000114518,-0.05503690115388682 +211265,1056.325000011452,-0.05503684883408867 +211266,1056.330000011452,-0.05503679651215417 +211267,1056.3350000114522,-0.05503674418808328 +211268,1056.3400000114523,-0.055036691861875923 +211269,1056.3450000114524,-0.055036639533532085 +211270,1056.3500000114525,-0.0550365872030517 +211271,1056.3550000114526,-0.05503653487043472 +211272,1056.3600000114527,-0.055036482535681115 +211273,1056.3650000114528,-0.05503643019879084 +211274,1056.370000011453,-0.055036377859763834 +211275,1056.375000011453,-0.055036325518600056 +211276,1056.3800000114531,-0.05503627317529946 +211277,1056.3850000114533,-0.05503622082986199 +211278,1056.3900000114534,-0.05503616848228762 +211279,1056.3950000114535,-0.055036116132576286 +211280,1056.4000000114536,-0.055036063780727944 +211281,1056.4050000114537,-0.05503601142674256 +211282,1056.4100000114538,-0.05503595907062008 +211283,1056.415000011454,-0.055035906712360444 +211284,1056.420000011454,-0.05503585435196362 +211285,1056.4250000114541,-0.05503580198942956 +211286,1056.4300000114542,-0.05503574962475821 +211287,1056.4350000114543,-0.05503569725794954 +211288,1056.4400000114545,-0.05503564488900349 +211289,1056.4450000114546,-0.05503559251792002 +211290,1056.4500000114547,-0.05503554014469909 +211291,1056.4550000114548,-0.05503548776934062 +211292,1056.460000011455,-0.0550354353918446 +211293,1056.465000011455,-0.055035383012210976 +211294,1056.470000011455,-0.05503533063043969 +211295,1056.4750000114552,-0.0550352782465307 +211296,1056.4800000114553,-0.05503522586048396 +211297,1056.4850000114554,-0.055035173472299435 +211298,1056.4900000114555,-0.055035121081977056 +211299,1056.4950000114557,-0.05503506868951679 +211300,1056.5000000114558,-0.055035016294918596 +211301,1056.5050000114559,-0.05503496389818241 +211302,1056.510000011456,-0.0550349114993082 +211303,1056.515000011456,-0.0550348590982959 +211304,1056.5200000114562,-0.05503480669514548 +211305,1056.5250000114563,-0.055034754289856894 +211306,1056.5300000114564,-0.0550347018824301 +211307,1056.5350000114565,-0.055034649472865044 +211308,1056.5400000114566,-0.055034597061161664 +211309,1056.5450000114568,-0.05503454464731993 +211310,1056.5500000114569,-0.0550344922313398 +211311,1056.555000011457,-0.05503443981322121 +211312,1056.560000011457,-0.05503438739296414 +211313,1056.5650000114572,-0.05503433497056851 +211314,1056.5700000114573,-0.05503428254603429 +211315,1056.5750000114574,-0.05503423011936144 +211316,1056.5800000114575,-0.05503417769054991 +211317,1056.5850000114576,-0.05503412525959965 +211318,1056.5900000114577,-0.05503407282651061 +211319,1056.5950000114578,-0.05503402039128274 +211320,1056.600000011458,-0.055033967953916005 +211321,1056.605000011458,-0.055033915514410336 +211322,1056.6100000114582,-0.05503386307276571 +211323,1056.6150000114583,-0.055033810628982084 +211324,1056.6200000114584,-0.05503375818305939 +211325,1056.6250000114585,-0.055033705734997586 +211326,1056.6300000114586,-0.05503365328479663 +211327,1056.6350000114587,-0.055033600832456474 +211328,1056.6400000114588,-0.05503354837797707 +211329,1056.645000011459,-0.05503349592135838 +211330,1056.650000011459,-0.05503344346260035 +211331,1056.6550000114592,-0.055033391001702923 +211332,1056.6600000114593,-0.05503333853866606 +211333,1056.6650000114594,-0.05503328607348972 +211334,1056.6700000114595,-0.055033233606173855 +211335,1056.6750000114596,-0.0550331811367184 +211336,1056.6800000114597,-0.05503312866512333 +211337,1056.6850000114598,-0.055033076191388586 +211338,1056.69000001146,-0.055033023715514134 +211339,1056.69500001146,-0.05503297123749991 +211340,1056.7000000114601,-0.05503291875734587 +211341,1056.7050000114602,-0.055032866275051974 +211342,1056.7100000114604,-0.05503281379061818 +211343,1056.7150000114605,-0.05503276130404443 +211344,1056.7200000114606,-0.05503270881533068 +211345,1056.7250000114607,-0.055032656324476875 +211346,1056.7300000114608,-0.05503260383148297 +211347,1056.735000011461,-0.055032551336348934 +211348,1056.740000011461,-0.055032498839074705 +211349,1056.7450000114611,-0.05503244633966024 +211350,1056.7500000114612,-0.055032393838105494 +211351,1056.7550000114613,-0.05503234133441042 +211352,1056.7600000114614,-0.055032288828574964 +211353,1056.7650000114616,-0.05503223632059908 +211354,1056.7700000114617,-0.055032183810482735 +211355,1056.7750000114618,-0.055032131298225866 +211356,1056.7800000114619,-0.055032078783828424 +211357,1056.785000011462,-0.055032026267290375 +211358,1056.790000011462,-0.055031973748611664 +211359,1056.7950000114622,-0.05503192122779224 +211360,1056.8000000114623,-0.055031868704832065 +211361,1056.8050000114624,-0.055031816179731095 +211362,1056.8100000114625,-0.055031763652489275 +211363,1056.8150000114626,-0.05503171112310655 +211364,1056.8200000114628,-0.055031658591582884 +211365,1056.8250000114629,-0.05503160605791823 +211366,1056.830000011463,-0.05503155352211252 +211367,1056.835000011463,-0.05503150098416573 +211368,1056.8400000114632,-0.05503144844407781 +211369,1056.8450000114633,-0.0550313959018487 +211370,1056.8500000114634,-0.05503134335747836 +211371,1056.8550000114635,-0.055031290810966756 +211372,1056.8600000114636,-0.05503123826231382 +211373,1056.8650000114637,-0.05503118571151951 +211374,1056.8700000114638,-0.05503113315858379 +211375,1056.875000011464,-0.055031080603506595 +211376,1056.880000011464,-0.055031028046287886 +211377,1056.8850000114642,-0.05503097548692762 +211378,1056.8900000114643,-0.055030922925425746 +211379,1056.8950000114644,-0.055030870361782204 +211380,1056.9000000114645,-0.055030817795996965 +211381,1056.9050000114646,-0.05503076522806997 +211382,1056.9100000114647,-0.05503071265800118 +211383,1056.9150000114648,-0.05503066008579054 +211384,1056.920000011465,-0.055030607511438005 +211385,1056.925000011465,-0.05503055493494353 +211386,1056.9300000114652,-0.055030502356307055 +211387,1056.9350000114653,-0.05503044977552855 +211388,1056.9400000114654,-0.055030397192607966 +211389,1056.9450000114655,-0.055030344607545245 +211390,1056.9500000114656,-0.05503029202034034 +211391,1056.9550000114657,-0.05503023943099322 +211392,1056.9600000114658,-0.055030186839503815 +211393,1056.965000011466,-0.055030134245872095 +211394,1056.970000011466,-0.055030081650098 +211395,1056.9750000114661,-0.055030029052181476 +211396,1056.9800000114662,-0.0550299764521225 +211397,1056.9850000114664,-0.055029923849921 +211398,1056.9900000114665,-0.05502987124557694 +211399,1056.9950000114666,-0.05502981863909028 +211400,1057.0000000114667,-0.05502976603046095 +211401,1057.0050000114668,-0.055029713419688916 +211402,1057.010000011467,-0.055029660806774135 +211403,1057.015000011467,-0.055029608191716546 +211404,1057.0200000114671,-0.05502955557451612 +211405,1057.0250000114672,-0.0550295029551728 +211406,1057.0300000114673,-0.05502945033368653 +211407,1057.0350000114674,-0.05502939771005727 +211408,1057.0400000114676,-0.05502934508428497 +211409,1057.0450000114677,-0.055029292456369575 +211410,1057.0500000114678,-0.055029239826311055 +211411,1057.0550000114679,-0.05502918719410934 +211412,1057.060000011468,-0.0550291345597644 +211413,1057.065000011468,-0.05502908192327618 +211414,1057.0700000114682,-0.055029029284644634 +211415,1057.0750000114683,-0.055028976643869715 +211416,1057.0800000114684,-0.05502892400095138 +211417,1057.0850000114685,-0.05502887135588957 +211418,1057.0900000114686,-0.05502881870868423 +211419,1057.0950000114688,-0.05502876605933533 +211420,1057.1000000114689,-0.055028713407842815 +211421,1057.105000011469,-0.05502866075420664 +211422,1057.110000011469,-0.05502860809842676 +211423,1057.1150000114692,-0.05502855544050311 +211424,1057.1200000114693,-0.05502850278043566 +211425,1057.1250000114694,-0.05502845011822436 +211426,1057.1300000114695,-0.05502839745386915 +211427,1057.1350000114696,-0.05502834478736999 +211428,1057.1400000114697,-0.05502829211872684 +211429,1057.1450000114698,-0.05502823944793964 +211430,1057.15000001147,-0.055028186775008335 +211431,1057.15500001147,-0.0550281340999329 +211432,1057.1600000114702,-0.055028081422713274 +211433,1057.1650000114703,-0.055028028743349396 +211434,1057.1700000114704,-0.05502797606184125 +211435,1057.1750000114705,-0.055027923378188744 +211436,1057.1800000114706,-0.05502787069239187 +211437,1057.1850000114707,-0.055027818004450564 +211438,1057.1900000114708,-0.055027765314364784 +211439,1057.195000011471,-0.055027712622134475 +211440,1057.200000011471,-0.05502765992775959 +211441,1057.2050000114712,-0.05502760723124007 +211442,1057.2100000114713,-0.05502755453257588 +211443,1057.2150000114714,-0.05502750183176697 +211444,1057.2200000114715,-0.05502744912881329 +211445,1057.2250000114716,-0.05502739642371479 +211446,1057.2300000114717,-0.05502734371647144 +211447,1057.2350000114718,-0.055027291007083166 +211448,1057.240000011472,-0.055027238295549924 +211449,1057.245000011472,-0.055027185581871675 +211450,1057.2500000114721,-0.05502713286604838 +211451,1057.2550000114722,-0.055027080148079964 +211452,1057.2600000114724,-0.05502702742796639 +211453,1057.2650000114725,-0.05502697470570762 +211454,1057.2700000114726,-0.055026921981303586 +211455,1057.2750000114727,-0.05502686925475426 +211456,1057.2800000114728,-0.05502681652605959 +211457,1057.285000011473,-0.05502676379521952 +211458,1057.290000011473,-0.055026711062234016 +211459,1057.2950000114731,-0.05502665832710301 +211460,1057.3000000114732,-0.05502660558982646 +211461,1057.3050000114733,-0.055026552850404316 +211462,1057.3100000114734,-0.05502650010883653 +211463,1057.3150000114736,-0.05502644736512306 +211464,1057.3200000114737,-0.055026394619263855 +211465,1057.3250000114738,-0.05502634187125886 +211466,1057.3300000114739,-0.05502628912110804 +211467,1057.335000011474,-0.05502623636881133 +211468,1057.340000011474,-0.055026183614368694 +211469,1057.3450000114742,-0.055026130857780076 +211470,1057.3500000114743,-0.05502607809904544 +211471,1057.3550000114744,-0.05502602533816472 +211472,1057.3600000114745,-0.055025972575137874 +211473,1057.3650000114746,-0.055025919809964866 +211474,1057.3700000114748,-0.05502586704264563 +211475,1057.3750000114749,-0.05502581427318012 +211476,1057.380000011475,-0.0550257615015683 +211477,1057.385000011475,-0.055025708727810096 +211478,1057.3900000114752,-0.05502565595190549 +211479,1057.3950000114753,-0.05502560317385442 +211480,1057.4000000114754,-0.05502555039365683 +211481,1057.4050000114755,-0.05502549761131269 +211482,1057.4100000114756,-0.05502544482682192 +211483,1057.4150000114757,-0.055025392040184515 +211484,1057.4200000114758,-0.055025339251400386 +211485,1057.425000011476,-0.0550252864604695 +211486,1057.430000011476,-0.055025233667391815 +211487,1057.4350000114762,-0.05502518087216728 +211488,1057.4400000114763,-0.05502512807479584 +211489,1057.4450000114764,-0.055025075275277446 +211490,1057.4500000114765,-0.05502502247361205 +211491,1057.4550000114766,-0.055024969669799605 +211492,1057.4600000114767,-0.05502491686384006 +211493,1057.4650000114768,-0.055024864055733376 +211494,1057.470000011477,-0.055024811245479484 +211495,1057.475000011477,-0.055024758433078365 +211496,1057.4800000114772,-0.055024705618529936 +211497,1057.4850000114773,-0.05502465280183418 +211498,1057.4900000114774,-0.05502459998299102 +211499,1057.4950000114775,-0.055024547162000434 +211500,1057.5000000114776,-0.055024494338862355 +211501,1057.5050000114777,-0.05502444151357674 +211502,1057.5100000114778,-0.055024388686143524 +211503,1057.515000011478,-0.05502433585656269 +211504,1057.520000011478,-0.05502428302483416 +211505,1057.5250000114781,-0.05502423019095791 +211506,1057.5300000114783,-0.05502417735493387 +211507,1057.5350000114784,-0.055024124516762 +211508,1057.5400000114785,-0.05502407167644225 +211509,1057.5450000114786,-0.055024018833974564 +211510,1057.5500000114787,-0.055023965989358915 +211511,1057.5550000114788,-0.055023913142595235 +211512,1057.560000011479,-0.05502386029368347 +211513,1057.565000011479,-0.05502380744262358 +211514,1057.5700000114791,-0.05502375458941552 +211515,1057.5750000114792,-0.05502370173405923 +211516,1057.5800000114793,-0.05502364887655468 +211517,1057.5850000114795,-0.055023596016901793 +211518,1057.5900000114796,-0.055023543155100545 +211519,1057.5950000114797,-0.05502349029115088 +211520,1057.6000000114798,-0.05502343742505275 +211521,1057.60500001148,-0.055023384556806096 +211522,1057.61000001148,-0.055023331686410874 +211523,1057.61500001148,-0.05502327881386704 +211524,1057.6200000114802,-0.05502322593917454 +211525,1057.6250000114803,-0.05502317306233333 +211526,1057.6300000114804,-0.055023120183343356 +211527,1057.6350000114805,-0.05502306730220457 +211528,1057.6400000114807,-0.05502301441891692 +211529,1057.6450000114808,-0.05502296153348036 +211530,1057.6500000114809,-0.05502290864589483 +211531,1057.655000011481,-0.0550228557561603 +211532,1057.660000011481,-0.0550228028642767 +211533,1057.6650000114812,-0.05502274997024399 +211534,1057.6700000114813,-0.05502269707406214 +211535,1057.6750000114814,-0.05502264417573108 +211536,1057.6800000114815,-0.05502259127525076 +211537,1057.6850000114816,-0.055022538372621145 +211538,1057.6900000114817,-0.055022485467842164 +211539,1057.6950000114819,-0.05502243256091377 +211540,1057.700000011482,-0.055022379651835936 +211541,1057.705000011482,-0.05502232674060859 +211542,1057.7100000114822,-0.0550222738272317 +211543,1057.7150000114823,-0.05502222091170521 +211544,1057.7200000114824,-0.055022167994029064 +211545,1057.7250000114825,-0.05502211507420323 +211546,1057.7300000114826,-0.05502206215222764 +211547,1057.7350000114827,-0.05502200922810225 +211548,1057.7400000114828,-0.055021956301827005 +211549,1057.745000011483,-0.05502190337340187 +211550,1057.750000011483,-0.05502185044282679 +211551,1057.7550000114832,-0.05502179751010171 +211552,1057.7600000114833,-0.05502174457522658 +211553,1057.7650000114834,-0.055021691638201364 +211554,1057.7700000114835,-0.055021638699026 +211555,1057.7750000114836,-0.055021585757700435 +211556,1057.7800000114837,-0.05502153281422463 +211557,1057.7850000114838,-0.05502147986859853 +211558,1057.790000011484,-0.0550214269208221 +211559,1057.795000011484,-0.05502137397089526 +211560,1057.8000000114841,-0.05502132101881797 +211561,1057.8050000114843,-0.055021268064590206 +211562,1057.8100000114844,-0.05502121510821189 +211563,1057.8150000114845,-0.055021162149682994 +211564,1057.8200000114846,-0.05502110918900346 +211565,1057.8250000114847,-0.05502105622617322 +211566,1057.8300000114848,-0.05502100326119223 +211567,1057.835000011485,-0.05502095029406047 +211568,1057.840000011485,-0.055020897324777863 +211569,1057.8450000114851,-0.055020844353344374 +211570,1057.8500000114852,-0.055020791379759945 +211571,1057.8550000114853,-0.05502073840402453 +211572,1057.8600000114855,-0.055020685426138076 +211573,1057.8650000114856,-0.055020632446100524 +211574,1057.8700000114857,-0.05502057946391183 +211575,1057.8750000114858,-0.05502052647957196 +211576,1057.880000011486,-0.05502047349308085 +211577,1057.885000011486,-0.05502042050443845 +211578,1057.890000011486,-0.05502036751364472 +211579,1057.8950000114862,-0.0550203145206996 +211580,1057.9000000114863,-0.05502026152560305 +211581,1057.9050000114864,-0.055020208528355 +211582,1057.9100000114865,-0.055020155528955415 +211583,1057.9150000114867,-0.05502010252740425 +211584,1057.9200000114868,-0.055020049523701445 +211585,1057.9250000114869,-0.05501999651784696 +211586,1057.930000011487,-0.05501994350984075 +211587,1057.935000011487,-0.055019890499682735 +211588,1057.9400000114872,-0.05501983748737288 +211589,1057.9450000114873,-0.05501978447291116 +211590,1057.9500000114874,-0.055019731456297495 +211591,1057.9550000114875,-0.05501967843753184 +211592,1057.9600000114876,-0.05501962541661415 +211593,1057.9650000114877,-0.05501957239354438 +211594,1057.9700000114879,-0.05501951936832248 +211595,1057.975000011488,-0.055019466340948384 +211596,1057.980000011488,-0.05501941331142206 +211597,1057.9850000114882,-0.05501936027974344 +211598,1057.9900000114883,-0.05501930724591249 +211599,1057.9950000114884,-0.05501925420992915 +211600,1058.0000000114885,-0.05501920117179337 +211601,1058.0050000114886,-0.05501914813150512 +211602,1058.0100000114887,-0.05501909508906432 +211603,1058.0150000114888,-0.05501904204447095 +211604,1058.020000011489,-0.055018988997724935 +211605,1058.025000011489,-0.05501893594882624 +211606,1058.0300000114892,-0.055018882897774804 +211607,1058.0350000114893,-0.05501882984457058 +211608,1058.0400000114894,-0.05501877678921352 +211609,1058.0450000114895,-0.05501872373170358 +211610,1058.0500000114896,-0.0550186706720407 +211611,1058.0550000114897,-0.055018617610224835 +211612,1058.0600000114898,-0.055018564546255935 +211613,1058.06500001149,-0.05501851148013394 +211614,1058.07000001149,-0.0550184584118588 +211615,1058.0750000114901,-0.05501840534143048 +211616,1058.0800000114903,-0.05501835226884893 +211617,1058.0850000114904,-0.05501829919411408 +211618,1058.0900000114905,-0.0550182461172259 +211619,1058.0950000114906,-0.055018193038184324 +211620,1058.1000000114907,-0.055018139956989315 +211621,1058.1050000114908,-0.05501808687364081 +211622,1058.110000011491,-0.055018033788138763 +211623,1058.115000011491,-0.05501798070048314 +211624,1058.1200000114911,-0.05501792761067387 +211625,1058.1250000114912,-0.055017874518710895 +211626,1058.1300000114913,-0.05501782142459419 +211627,1058.1350000114915,-0.055017768328323696 +211628,1058.1400000114916,-0.055017715229899365 +211629,1058.1450000114917,-0.05501766212932114 +211630,1058.1500000114918,-0.05501760902658897 +211631,1058.155000011492,-0.05501755592170281 +211632,1058.160000011492,-0.05501750281466259 +211633,1058.165000011492,-0.055017449705468284 +211634,1058.1700000114922,-0.05501739659411983 +211635,1058.1750000114923,-0.05501734348061719 +211636,1058.1800000114924,-0.05501729036496029 +211637,1058.1850000114925,-0.055017237247149096 +211638,1058.1900000114927,-0.05501718412718357 +211639,1058.1950000114928,-0.055017131005063634 +211640,1058.2000000114929,-0.05501707788078926 +211641,1058.205000011493,-0.05501702475436038 +211642,1058.210000011493,-0.05501697162577695 +211643,1058.2150000114932,-0.055016918495038925 +211644,1058.2200000114933,-0.05501686536214625 +211645,1058.2250000114934,-0.055016812227098866 +211646,1058.2300000114935,-0.05501675908989674 +211647,1058.2350000114936,-0.05501670595053982 +211648,1058.2400000114937,-0.05501665280902803 +211649,1058.2450000114939,-0.05501659966536134 +211650,1058.250000011494,-0.0550165465195397 +211651,1058.255000011494,-0.05501649337156306 +211652,1058.2600000114942,-0.05501644022143135 +211653,1058.2650000114943,-0.055016387069144544 +211654,1058.2700000114944,-0.055016333914702585 +211655,1058.2750000114945,-0.05501628075810541 +211656,1058.2800000114946,-0.05501622759935299 +211657,1058.2850000114947,-0.055016174438445246 +211658,1058.2900000114948,-0.05501612127538215 +211659,1058.295000011495,-0.05501606811016364 +211660,1058.300000011495,-0.05501601494278968 +211661,1058.3050000114952,-0.0550159617732602 +211662,1058.3100000114953,-0.05501590860157517 +211663,1058.3150000114954,-0.05501585542773451 +211664,1058.3200000114955,-0.05501580225173818 +211665,1058.3250000114956,-0.05501574907358614 +211666,1058.3300000114957,-0.05501569589327834 +211667,1058.3350000114958,-0.055015642710814716 +211668,1058.340000011496,-0.05501558952619523 +211669,1058.345000011496,-0.05501553633941981 +211670,1058.3500000114961,-0.05501548315048844 +211671,1058.3550000114963,-0.055015429959401035 +211672,1058.3600000114964,-0.05501537676615756 +211673,1058.3650000114965,-0.05501532357075796 +211674,1058.3700000114966,-0.05501527037320219 +211675,1058.3750000114967,-0.055015217173490186 +211676,1058.3800000114968,-0.05501516397162192 +211677,1058.385000011497,-0.055015110767597325 +211678,1058.390000011497,-0.05501505756141634 +211679,1058.3950000114971,-0.05501500435307894 +211680,1058.4000000114972,-0.05501495114258505 +211681,1058.4050000114973,-0.055014897929934636 +211682,1058.4100000114975,-0.05501484471512764 +211683,1058.4150000114976,-0.055014791498164003 +211684,1058.4200000114977,-0.055014738279043685 +211685,1058.4250000114978,-0.05501468505776664 +211686,1058.430000011498,-0.055014631834332806 +211687,1058.435000011498,-0.05501457860874213 +211688,1058.4400000114981,-0.05501452538099457 +211689,1058.4450000114982,-0.05501447215109006 +211690,1058.4500000114983,-0.05501441891902857 +211691,1058.4550000114984,-0.05501436568481003 +211692,1058.4600000114986,-0.055014312448434396 +211693,1058.4650000114987,-0.05501425920990163 +211694,1058.4700000114988,-0.05501420596921166 +211695,1058.4750000114989,-0.055014152726364444 +211696,1058.480000011499,-0.055014099481359935 +211697,1058.485000011499,-0.05501404623419806 +211698,1058.4900000114992,-0.0550139929848788 +211699,1058.4950000114993,-0.05501393973340209 +211700,1058.5000000114994,-0.05501388647976786 +211701,1058.5050000114995,-0.05501383322397608 +211702,1058.5100000114996,-0.0550137799660267 +211703,1058.5150000114998,-0.05501372670591967 +211704,1058.5200000114999,-0.055013673443654924 +211705,1058.5250000115,-0.05501362017923242 +211706,1058.5300000115,-0.0550135669126521 +211707,1058.5350000115002,-0.05501351364391391 +211708,1058.5400000115003,-0.05501346037301781 +211709,1058.5450000115004,-0.055013407099963746 +211710,1058.5500000115005,-0.055013353824751664 +211711,1058.5550000115006,-0.05501330054738152 +211712,1058.5600000115007,-0.05501324726785325 +211713,1058.5650000115008,-0.05501319398616681 +211714,1058.570000011501,-0.05501314070232215 +211715,1058.575000011501,-0.05501308741631921 +211716,1058.5800000115012,-0.055013034128157945 +211717,1058.5850000115013,-0.0550129808378383 +211718,1058.5900000115014,-0.055012927545360225 +211719,1058.5950000115015,-0.05501287425072369 +211720,1058.6000000115016,-0.0550128209539286 +211721,1058.6050000115017,-0.05501276765497494 +211722,1058.6100000115018,-0.05501271435386264 +211723,1058.615000011502,-0.055012661050591646 +211724,1058.620000011502,-0.055012607745161916 +211725,1058.6250000115022,-0.0550125544375734 +211726,1058.6300000115023,-0.05501250112782604 +211727,1058.6350000115024,-0.05501244781591979 +211728,1058.6400000115025,-0.055012394501854585 +211729,1058.6450000115026,-0.05501234118563039 +211730,1058.6500000115027,-0.055012287867247156 +211731,1058.6550000115028,-0.05501223454670482 +211732,1058.660000011503,-0.05501218122400333 +211733,1058.665000011503,-0.05501212789914263 +211734,1058.6700000115031,-0.05501207457212267 +211735,1058.6750000115032,-0.055012021242943424 +211736,1058.6800000115034,-0.0550119679116048 +211737,1058.6850000115035,-0.05501191457810677 +211738,1058.6900000115036,-0.055011861242449285 +211739,1058.6950000115037,-0.05501180790463228 +211740,1058.7000000115038,-0.05501175456465571 +211741,1058.705000011504,-0.05501170122251952 +211742,1058.710000011504,-0.05501164787822367 +211743,1058.7150000115041,-0.0550115945317681 +211744,1058.7200000115042,-0.05501154118315275 +211745,1058.7250000115043,-0.05501148783237757 +211746,1058.7300000115044,-0.05501143447944251 +211747,1058.7350000115046,-0.05501138112434754 +211748,1058.7400000115047,-0.05501132776709258 +211749,1058.7450000115048,-0.05501127440767759 +211750,1058.7500000115049,-0.05501122104610251 +211751,1058.755000011505,-0.05501116768236729 +211752,1058.760000011505,-0.055011114316471876 +211753,1058.7650000115052,-0.05501106094841623 +211754,1058.7700000115053,-0.055011007578200294 +211755,1058.7750000115054,-0.055010954205824004 +211756,1058.7800000115055,-0.05501090083128733 +211757,1058.7850000115056,-0.05501084745459021 +211758,1058.7900000115058,-0.055010794075732575 +211759,1058.7950000115059,-0.0550107406947144 +211760,1058.800000011506,-0.05501068731153562 +211761,1058.805000011506,-0.05501063392619618 +211762,1058.8100000115062,-0.055010580538696036 +211763,1058.8150000115063,-0.05501052714903513 +211764,1058.8200000115064,-0.05501047375721341 +211765,1058.8250000115065,-0.055010420363230825 +211766,1058.8300000115066,-0.055010366967087325 +211767,1058.8350000115067,-0.05501031356878285 +211768,1058.8400000115068,-0.055010260168317344 +211769,1058.845000011507,-0.05501020676569077 +211770,1058.850000011507,-0.05501015336090308 +211771,1058.8550000115072,-0.0550100999539542 +211772,1058.8600000115073,-0.055010046544844086 +211773,1058.8650000115074,-0.05500999313357271 +211774,1058.8700000115075,-0.05500993972013998 +211775,1058.8750000115076,-0.055009886304545876 +211776,1058.8800000115077,-0.05500983288679032 +211777,1058.8850000115078,-0.055009779466873285 +211778,1058.890000011508,-0.055009726044794705 +211779,1058.895000011508,-0.05500967262055453 +211780,1058.9000000115082,-0.05500961919415269 +211781,1058.9050000115083,-0.05500956576558916 +211782,1058.9100000115084,-0.05500951233486387 +211783,1058.9150000115085,-0.05500945890197679 +211784,1058.9200000115086,-0.05500940546692785 +211785,1058.9250000115087,-0.055009352029717 +211786,1058.9300000115088,-0.055009298590344174 +211787,1058.935000011509,-0.055009245148809345 +211788,1058.940000011509,-0.05500919170511245 +211789,1058.9450000115091,-0.05500913825925342 +211790,1058.9500000115092,-0.05500908481123223 +211791,1058.9550000115094,-0.055009031361048816 +211792,1058.9600000115095,-0.05500897790870312 +211793,1058.9650000115096,-0.055008924454195085 +211794,1058.9700000115097,-0.05500887099752467 +211795,1058.9750000115098,-0.055008817538691815 +211796,1058.98000001151,-0.05500876407769648 +211797,1058.98500001151,-0.05500871061453862 +211798,1058.9900000115101,-0.055008657149218154 +211799,1058.9950000115102,-0.05500860368173504 +211800,1059.0000000115103,-0.05500855021208923 +211801,1059.0050000115104,-0.05500849674028068 +211802,1059.0100000115106,-0.05500844326630931 +211803,1059.0150000115107,-0.05500838979017509 +211804,1059.0200000115108,-0.05500833631187796 +211805,1059.0250000115109,-0.05500828283141787 +211806,1059.030000011511,-0.05500822934879477 +211807,1059.035000011511,-0.05500817586400861 +211808,1059.0400000115112,-0.05500812237705932 +211809,1059.0450000115113,-0.05500806888794686 +211810,1059.0500000115114,-0.05500801539667118 +211811,1059.0550000115115,-0.055007961903232226 +211812,1059.0600000115116,-0.055007908407629945 +211813,1059.0650000115118,-0.05500785490986426 +211814,1059.0700000115119,-0.05500780140993516 +211815,1059.075000011512,-0.05500774790784256 +211816,1059.080000011512,-0.05500769440358642 +211817,1059.0850000115122,-0.055007640897166685 +211818,1059.0900000115123,-0.0550075873885833 +211819,1059.0950000115124,-0.055007533877836225 +211820,1059.1000000115125,-0.0550074803649254 +211821,1059.1050000115126,-0.05500742684985076 +211822,1059.1100000115127,-0.05500737333261226 +211823,1059.1150000115128,-0.05500731981320986 +211824,1059.120000011513,-0.05500726629164349 +211825,1059.125000011513,-0.0550072127679131 +211826,1059.1300000115132,-0.05500715924201865 +211827,1059.1350000115133,-0.05500710571396007 +211828,1059.1400000115134,-0.05500705218373732 +211829,1059.1450000115135,-0.05500699865135033 +211830,1059.1500000115136,-0.05500694511679907 +211831,1059.1550000115137,-0.055006891580083477 +211832,1059.1600000115138,-0.055006838041203494 +211833,1059.165000011514,-0.05500678450015907 +211834,1059.170000011514,-0.055006730956950155 +211835,1059.1750000115142,-0.05500667741157669 +211836,1059.1800000115143,-0.055006623864038616 +211837,1059.1850000115144,-0.0550065703143359 +211838,1059.1900000115145,-0.05500651676246848 +211839,1059.1950000115146,-0.05500646320843629 +211840,1059.2000000115147,-0.05500640965223928 +211841,1059.2050000115148,-0.05500635609387743 +211842,1059.210000011515,-0.05500630253335065 +211843,1059.215000011515,-0.0550062489706589 +211844,1059.2200000115151,-0.055006195405802115 +211845,1059.2250000115152,-0.05500614183878027 +211846,1059.2300000115154,-0.05500608826959328 +211847,1059.2350000115155,-0.05500603469824111 +211848,1059.2400000115156,-0.055005981124723706 +211849,1059.2450000115157,-0.055005927549041 +211850,1059.2500000115158,-0.055005873971192956 +211851,1059.255000011516,-0.055005820391179516 +211852,1059.260000011516,-0.05500576680900062 +211853,1059.2650000115161,-0.05500571322465622 +211854,1059.2700000115162,-0.05500565963814627 +211855,1059.2750000115163,-0.055005606049470704 +211856,1059.2800000115164,-0.05500555245862947 +211857,1059.2850000115166,-0.05500549886562253 +211858,1059.2900000115167,-0.055005445270449815 +211859,1059.2950000115168,-0.055005391673111276 +211860,1059.3000000115169,-0.055005338073606865 +211861,1059.305000011517,-0.05500528447193652 +211862,1059.310000011517,-0.055005230868100184 +211863,1059.3150000115172,-0.05500517726209782 +211864,1059.3200000115173,-0.05500512365392936 +211865,1059.3250000115174,-0.055005070043594756 +211866,1059.3300000115175,-0.05500501643109395 +211867,1059.3350000115176,-0.055004962816426896 +211868,1059.3400000115178,-0.05500490919959354 +211869,1059.3450000115179,-0.05500485558059383 +211870,1059.350000011518,-0.055004801959427696 +211871,1059.355000011518,-0.05500474833609511 +211872,1059.3600000115182,-0.055004694710595985 +211873,1059.3650000115183,-0.055004641082930295 +211874,1059.3700000115184,-0.05500458745309798 +211875,1059.3750000115185,-0.05500453382109899 +211876,1059.3800000115186,-0.05500448018693327 +211877,1059.3850000115187,-0.055004426550600755 +211878,1059.3900000115189,-0.055004372912101404 +211879,1059.395000011519,-0.055004319271435155 +211880,1059.400000011519,-0.05500426562860196 +211881,1059.4050000115192,-0.05500421198360177 +211882,1059.4100000115193,-0.05500415833643452 +211883,1059.4150000115194,-0.05500410468710015 +211884,1059.4200000115195,-0.05500405103559862 +211885,1059.4250000115196,-0.05500399738192988 +211886,1059.4300000115197,-0.055003943726093865 +211887,1059.4350000115198,-0.055003890068090526 +211888,1059.44000001152,-0.05500383640791981 +211889,1059.44500001152,-0.05500378274558166 +211890,1059.4500000115202,-0.05500372908107603 +211891,1059.4550000115203,-0.05500367541440287 +211892,1059.4600000115204,-0.0550036217455621 +211893,1059.4650000115205,-0.055003568074553685 +211894,1059.4700000115206,-0.05500351440137757 +211895,1059.4750000115207,-0.05500346072603371 +211896,1059.4800000115208,-0.05500340704852204 +211897,1059.485000011521,-0.055003353368842496 +211898,1059.490000011521,-0.05500329968699505 +211899,1059.4950000115211,-0.05500324600297962 +211900,1059.5000000115213,-0.05500319231679617 +211901,1059.5050000115214,-0.055003138628444644 +211902,1059.5100000115215,-0.055003084937924995 +211903,1059.5150000115216,-0.05500303124523716 +211904,1059.5200000115217,-0.055002977550381076 +211905,1059.5250000115218,-0.05500292385335671 +211906,1059.530000011522,-0.05500287015416399 +211907,1059.535000011522,-0.05500281645280286 +211908,1059.5400000115221,-0.05500276274927327 +211909,1059.5450000115222,-0.05500270904357518 +211910,1059.5500000115223,-0.05500265533570853 +211911,1059.5550000115225,-0.055002601625673254 +211912,1059.5600000115226,-0.0550025479134693 +211913,1059.5650000115227,-0.055002494199096634 +211914,1059.5700000115228,-0.055002440482555176 +211915,1059.575000011523,-0.055002386763844884 +211916,1059.580000011523,-0.0550023330429657 +211917,1059.585000011523,-0.05500227931991758 +211918,1059.5900000115232,-0.055002225594700464 +211919,1059.5950000115233,-0.05500217186731429 +211920,1059.6000000115234,-0.055002118137759015 +211921,1059.6050000115235,-0.05500206440603458 +211922,1059.6100000115237,-0.05500201067214093 +211923,1059.6150000115238,-0.05500195693607802 +211924,1059.6200000115239,-0.05500190319784578 +211925,1059.625000011524,-0.055001849457444164 +211926,1059.630000011524,-0.055001795714873125 +211927,1059.6350000115242,-0.055001741970132585 +211928,1059.6400000115243,-0.05500168822322252 +211929,1059.6450000115244,-0.05500163447414285 +211930,1059.6500000115245,-0.05500158072289354 +211931,1059.6550000115246,-0.05500152696947451 +211932,1059.6600000115247,-0.05500147321388573 +211933,1059.6650000115249,-0.05500141945612715 +211934,1059.670000011525,-0.055001365696198706 +211935,1059.675000011525,-0.05500131193410033 +211936,1059.6800000115252,-0.055001258169831986 +211937,1059.6850000115253,-0.055001204403393615 +211938,1059.6900000115254,-0.05500115063478515 +211939,1059.6950000115255,-0.05500109686400656 +211940,1059.7000000115256,-0.055001043091057765 +211941,1059.7050000115257,-0.05500098931593873 +211942,1059.7100000115258,-0.05500093553864939 +211943,1059.715000011526,-0.0550008817591897 +211944,1059.720000011526,-0.0550008279775596 +211945,1059.7250000115262,-0.05500077419375903 +211946,1059.7300000115263,-0.05500072040778794 +211947,1059.7350000115264,-0.05500066661964627 +211948,1059.7400000115265,-0.055000612829333974 +211949,1059.7450000115266,-0.055000559036851006 +211950,1059.7500000115267,-0.05500050524219728 +211951,1059.7550000115268,-0.055000451445372765 +211952,1059.760000011527,-0.05500039764637741 +211953,1059.765000011527,-0.05500034384521115 +211954,1059.7700000115271,-0.05500029004187393 +211955,1059.7750000115273,-0.0550002362363657 +211956,1059.7800000115274,-0.0550001824286864 +211957,1059.7850000115275,-0.055000128618835985 +211958,1059.7900000115276,-0.055000074806814396 +211959,1059.7950000115277,-0.05500002099262157 +211960,1059.8000000115278,-0.05499996717625747 +211961,1059.805000011528,-0.05499991335772202 +211962,1059.810000011528,-0.05499985953701519 +211963,1059.8150000115281,-0.0549998057141369 +211964,1059.8200000115282,-0.054999751889087095 +211965,1059.8250000115283,-0.05499969806186574 +211966,1059.8300000115285,-0.05499964423247278 +211967,1059.8350000115286,-0.054999590400908134 +211968,1059.8400000115287,-0.054999536567171776 +211969,1059.8450000115288,-0.05499948273126363 +211970,1059.850000011529,-0.05499942889318365 +211971,1059.855000011529,-0.05499937505293178 +211972,1059.860000011529,-0.054999321210507976 +211973,1059.8650000115292,-0.05499926736591216 +211974,1059.8700000115293,-0.05499921351914431 +211975,1059.8750000115294,-0.054999159670204335 +211976,1059.8800000115295,-0.05499910581909221 +211977,1059.8850000115297,-0.05499905196580785 +211978,1059.8900000115298,-0.05499899811035122 +211979,1059.8950000115299,-0.05499894425272227 +211980,1059.90000001153,-0.05499889039292093 +211981,1059.90500001153,-0.054998836530947164 +211982,1059.9100000115302,-0.054998782666800895 +211983,1059.9150000115303,-0.05499872880048207 +211984,1059.9200000115304,-0.05499867493199065 +211985,1059.9250000115305,-0.05499862106132657 +211986,1059.9300000115306,-0.05499856718848979 +211987,1059.9350000115307,-0.054998513313480234 +211988,1059.9400000115309,-0.05499845943629785 +211989,1059.945000011531,-0.05499840555694259 +211990,1059.950000011531,-0.054998351675414385 +211991,1059.9550000115312,-0.05499829779171318 +211992,1059.9600000115313,-0.05499824390583895 +211993,1059.9650000115314,-0.05499819001779162 +211994,1059.9700000115315,-0.054998136127571116 +211995,1059.9750000115316,-0.05499808223517741 +211996,1059.9800000115317,-0.05499802834061043 +211997,1059.9850000115318,-0.05499797444387015 +211998,1059.990000011532,-0.05499792054495649 +211999,1059.995000011532,-0.05499786664386939 +212000,1060.0000000115322,-0.0549978127406088 +212001,1060.0050000115323,-0.054997758835174666 +212002,1060.0100000115324,-0.05499770492756694 +212003,1060.0150000115325,-0.05499765101778556 +212004,1060.0200000115326,-0.054997597105830465 +212005,1060.0250000115327,-0.05499754319170161 +212006,1060.0300000115328,-0.054997489275398936 +212007,1060.035000011533,-0.054997435356922385 +212008,1060.040000011533,-0.0549973814362719 +212009,1060.0450000115331,-0.05499732751344743 +212010,1060.0500000115333,-0.05499727358844892 +212011,1060.0550000115334,-0.05499721966127632 +212012,1060.0600000115335,-0.05499716573192956 +212013,1060.0650000115336,-0.05499711180040859 +212014,1060.0700000115337,-0.05499705786671336 +212015,1060.0750000115338,-0.05499700393084382 +212016,1060.080000011534,-0.0549969499927999 +212017,1060.085000011534,-0.05499689605258155 +212018,1060.0900000115341,-0.05499684211018871 +212019,1060.0950000115342,-0.05499678816562133 +212020,1060.1000000115343,-0.054996734218879344 +212021,1060.1050000115345,-0.05499668026996271 +212022,1060.1100000115346,-0.05499662631887137 +212023,1060.1150000115347,-0.05499657236560526 +212024,1060.1200000115348,-0.05499651841016434 +212025,1060.125000011535,-0.054996464452548535 +212026,1060.130000011535,-0.0549964104927578 +212027,1060.135000011535,-0.05499635653079209 +212028,1060.1400000115352,-0.05499630256665133 +212029,1060.1450000115353,-0.054996248600335466 +212030,1060.1500000115354,-0.05499619463184445 +212031,1060.1550000115355,-0.05499614066117823 +212032,1060.1600000115357,-0.05499608668833675 +212033,1060.1650000115358,-0.05499603271331994 +212034,1060.1700000115359,-0.05499597873612776 +212035,1060.175000011536,-0.054995924756760135 +212036,1060.180000011536,-0.05499587077521703 +212037,1060.1850000115362,-0.05499581679149837 +212038,1060.1900000115363,-0.054995762805604115 +212039,1060.1950000115364,-0.05499570881753421 +212040,1060.2000000115365,-0.05499565482728859 +212041,1060.2050000115366,-0.05499560083486719 +212042,1060.2100000115367,-0.054995546840269985 +212043,1060.2150000115369,-0.05499549284349689 +212044,1060.220000011537,-0.05499543884454786 +212045,1060.225000011537,-0.05499538484342284 +212046,1060.2300000115372,-0.054995330840121766 +212047,1060.2350000115373,-0.054995276834644585 +212048,1060.2400000115374,-0.05499522282699126 +212049,1060.2450000115375,-0.054995168817161696 +212050,1060.2500000115376,-0.05499511480515586 +212051,1060.2550000115377,-0.05499506079097371 +212052,1060.2600000115378,-0.05499500677461518 +212053,1060.265000011538,-0.0549949527560802 +212054,1060.270000011538,-0.054994898735368725 +212055,1060.2750000115382,-0.05499484471248069 +212056,1060.2800000115383,-0.05499479068741604 +212057,1060.2850000115384,-0.05499473666017474 +212058,1060.2900000115385,-0.054994682630756714 +212059,1060.2950000115386,-0.05499462859916191 +212060,1060.3000000115387,-0.05499457456539028 +212061,1060.3050000115388,-0.05499452052944176 +212062,1060.310000011539,-0.05499446649131629 +212063,1060.315000011539,-0.054994412451013816 +212064,1060.3200000115392,-0.05499435840853428 +212065,1060.3250000115393,-0.05499430436387763 +212066,1060.3300000115394,-0.05499425031704381 +212067,1060.3350000115395,-0.054994196268032765 +212068,1060.3400000115396,-0.05499414221684444 +212069,1060.3450000115397,-0.05499408816347877 +212070,1060.3500000115398,-0.05499403410793569 +212071,1060.35500001154,-0.05499398005021517 +212072,1060.36000001154,-0.05499392599031714 +212073,1060.3650000115401,-0.054993871928241546 +212074,1060.3700000115402,-0.054993817863988326 +212075,1060.3750000115404,-0.05499376379755744 +212076,1060.3800000115405,-0.0549937097289488 +212077,1060.3850000115406,-0.05499365565816238 +212078,1060.3900000115407,-0.05499360158519811 +212079,1060.3950000115408,-0.05499354751005593 +212080,1060.400000011541,-0.0549934934327358 +212081,1060.405000011541,-0.054993439353237646 +212082,1060.4100000115411,-0.054993385271561425 +212083,1060.4150000115412,-0.05499333118770707 +212084,1060.4200000115413,-0.05499327710167454 +212085,1060.4250000115414,-0.05499322301346375 +212086,1060.4300000115416,-0.05499316892307467 +212087,1060.4350000115417,-0.05499311483050723 +212088,1060.4400000115418,-0.05499306073576138 +212089,1060.4450000115419,-0.05499300663883704 +212090,1060.450000011542,-0.05499295253973419 +212091,1060.455000011542,-0.05499289843845276 +212092,1060.4600000115422,-0.054992844334992685 +212093,1060.4650000115423,-0.05499279022935392 +212094,1060.4700000115424,-0.0549927361215364 +212095,1060.4750000115425,-0.05499268201154007 +212096,1060.4800000115426,-0.05499262789936486 +212097,1060.4850000115428,-0.05499257378501073 +212098,1060.4900000115429,-0.05499251966847763 +212099,1060.495000011543,-0.05499246554976549 +212100,1060.500000011543,-0.05499241142887425 +212101,1060.5050000115432,-0.05499235730580387 +212102,1060.5100000115433,-0.05499230318055427 +212103,1060.5150000115434,-0.05499224905312542 +212104,1060.5200000115435,-0.05499219492351725 +212105,1060.5250000115436,-0.0549921407917297 +212106,1060.5300000115437,-0.054992086657762715 +212107,1060.5350000115438,-0.05499203252161624 +212108,1060.540000011544,-0.0549919783832902 +212109,1060.545000011544,-0.05499192424278456 +212110,1060.5500000115442,-0.05499187010009926 +212111,1060.5550000115443,-0.054991815955234245 +212112,1060.5600000115444,-0.05499176180818945 +212113,1060.5650000115445,-0.05499170765896483 +212114,1060.5700000115446,-0.054991653507560315 +212115,1060.5750000115447,-0.05499159935397586 +212116,1060.5800000115448,-0.0549915451982114 +212117,1060.585000011545,-0.05499149104026687 +212118,1060.590000011545,-0.05499143688014222 +212119,1060.5950000115452,-0.0549913827178374 +212120,1060.6000000115453,-0.05499132855335235 +212121,1060.6050000115454,-0.05499127438668701 +212122,1060.6100000115455,-0.054991220217841315 +212123,1060.6150000115456,-0.054991166046815226 +212124,1060.6200000115457,-0.054991111873608674 +212125,1060.6250000115458,-0.054991057698221595 +212126,1060.630000011546,-0.05499100352065395 +212127,1060.635000011546,-0.054990949340905676 +212128,1060.6400000115461,-0.0549908951589767 +212129,1060.6450000115462,-0.054990840974866985 +212130,1060.6500000115464,-0.05499078678857646 +212131,1060.6550000115465,-0.05499073260010508 +212132,1060.6600000115466,-0.05499067840945277 +212133,1060.6650000115467,-0.054990624216619495 +212134,1060.6700000115468,-0.05499057002160518 +212135,1060.675000011547,-0.05499051582440979 +212136,1060.680000011547,-0.05499046162503324 +212137,1060.6850000115471,-0.05499040742347549 +212138,1060.6900000115472,-0.05499035321973648 +212139,1060.6950000115473,-0.05499029901381614 +212140,1060.7000000115474,-0.054990244805714426 +212141,1060.7050000115476,-0.054990190595431275 +212142,1060.7100000115477,-0.05499013638296664 +212143,1060.7150000115478,-0.05499008216832046 +212144,1060.7200000115479,-0.054990027951492666 +212145,1060.725000011548,-0.05498997373248321 +212146,1060.730000011548,-0.05498991951129203 +212147,1060.7350000115482,-0.054989865287919076 +212148,1060.7400000115483,-0.054989811062364266 +212149,1060.7450000115484,-0.05498975683462757 +212150,1060.7500000115485,-0.05498970260470892 +212151,1060.7550000115486,-0.05498964837260827 +212152,1060.7600000115488,-0.05498959413832556 +212153,1060.7650000115489,-0.05498953990186071 +212154,1060.770000011549,-0.05498948566321368 +212155,1060.775000011549,-0.05498943142238442 +212156,1060.7800000115492,-0.054989377179372856 +212157,1060.7850000115493,-0.05498932293417893 +212158,1060.7900000115494,-0.0549892686868026 +212159,1060.7950000115495,-0.054989214437243805 +212160,1060.8000000115496,-0.05498916018550247 +212161,1060.8050000115497,-0.054989105931578554 +212162,1060.8100000115498,-0.05498905167547199 +212163,1060.81500001155,-0.05498899741718272 +212164,1060.82000001155,-0.054988943156710705 +212165,1060.8250000115502,-0.054988888894055864 +212166,1060.8300000115503,-0.05498883462921815 +212167,1060.8350000115504,-0.0549887803621975 +212168,1060.8400000115505,-0.05498872609299387 +212169,1060.8450000115506,-0.05498867182160719 +212170,1060.8500000115507,-0.0549886175480374 +212171,1060.8550000115508,-0.054988563272284456 +212172,1060.860000011551,-0.05498850899434828 +212173,1060.865000011551,-0.05498845471422882 +212174,1060.8700000115512,-0.054988400431926036 +212175,1060.8750000115513,-0.05498834614743986 +212176,1060.8800000115514,-0.05498829186077022 +212177,1060.8850000115515,-0.05498823757191707 +212178,1060.8900000115516,-0.05498818328088035 +212179,1060.8950000115517,-0.05498812898766001 +212180,1060.9000000115518,-0.05498807469225598 +212181,1060.905000011552,-0.05498802039466821 +212182,1060.910000011552,-0.05498796609489664 +212183,1060.9150000115521,-0.054987911792941206 +212184,1060.9200000115522,-0.054987857488801854 +212185,1060.9250000115524,-0.054987803182478534 +212186,1060.9300000115525,-0.05498774887397117 +212187,1060.9350000115526,-0.05498769456327972 +212188,1060.9400000115527,-0.054987640250404125 +212189,1060.9450000115528,-0.05498758593534433 +212190,1060.950000011553,-0.05498753161810025 +212191,1060.955000011553,-0.05498747729867185 +212192,1060.9600000115531,-0.05498742297705907 +212193,1060.9650000115532,-0.054987368653261856 +212194,1060.9700000115533,-0.05498731432728015 +212195,1060.9750000115534,-0.05498725999911388 +212196,1060.9800000115536,-0.05498720566876299 +212197,1060.9850000115537,-0.054987151336227426 +212198,1060.9900000115538,-0.05498709700150714 +212199,1060.9950000115539,-0.05498704266460206 +212200,1061.000000011554,-0.05498698832551213 +212201,1061.005000011554,-0.0549869339842373 +212202,1061.0100000115542,-0.0549868796407775 +212203,1061.0150000115543,-0.05498682529513268 +212204,1061.0200000115544,-0.054986770947302775 +212205,1061.0250000115545,-0.054986716597287724 +212206,1061.0300000115546,-0.05498666224508749 +212207,1061.0350000115548,-0.05498660789070199 +212208,1061.0400000115549,-0.05498655353413118 +212209,1061.045000011555,-0.05498649917537499 +212210,1061.050000011555,-0.05498644481443337 +212211,1061.0550000115552,-0.054986390451306266 +212212,1061.0600000115553,-0.05498633608599361 +212213,1061.0650000115554,-0.05498628171849535 +212214,1061.0700000115555,-0.05498622734881143 +212215,1061.0750000115556,-0.05498617297694178 +212216,1061.0800000115557,-0.05498611860288634 +212217,1061.0850000115558,-0.05498606422664506 +212218,1061.090000011556,-0.05498600984821788 +212219,1061.095000011556,-0.05498595546760474 +212220,1061.1000000115562,-0.05498590108480559 +212221,1061.1050000115563,-0.05498584669982036 +212222,1061.1100000115564,-0.054985792312648996 +212223,1061.1150000115565,-0.054985737923291436 +212224,1061.1200000115566,-0.054985683531747626 +212225,1061.1250000115567,-0.054985629138017515 +212226,1061.1300000115568,-0.05498557474210102 +212227,1061.135000011557,-0.054985520343998104 +212228,1061.140000011557,-0.054985465943708706 +212229,1061.1450000115572,-0.054985411541232765 +212230,1061.1500000115573,-0.05498535713657022 +212231,1061.1550000115574,-0.054985302729721 +212232,1061.1600000115575,-0.05498524832068506 +212233,1061.1650000115576,-0.054985193909462354 +212234,1061.1700000115577,-0.0549851394960528 +212235,1061.1750000115578,-0.054985085080456346 +212236,1061.180000011558,-0.05498503066267294 +212237,1061.185000011558,-0.054984976242702516 +212238,1061.1900000115581,-0.05498492182054501 +212239,1061.1950000115582,-0.054984867396200385 +212240,1061.2000000115584,-0.05498481296966857 +212241,1061.2050000115585,-0.05498475854094949 +212242,1061.2100000115586,-0.054984704110043095 +212243,1061.2150000115587,-0.05498464967694935 +212244,1061.2200000115588,-0.05498459524166816 +212245,1061.225000011559,-0.0549845408041995 +212246,1061.230000011559,-0.05498448636454329 +212247,1061.2350000115591,-0.05498443192269947 +212248,1061.2400000115592,-0.05498437747866798 +212249,1061.2450000115593,-0.054984323032448774 +212250,1061.2500000115595,-0.05498426858404179 +212251,1061.2550000115596,-0.05498421413344696 +212252,1061.2600000115597,-0.054984159680664224 +212253,1061.2650000115598,-0.054984105225693525 +212254,1061.27000001156,-0.05498405076853482 +212255,1061.27500001156,-0.05498399630918803 +212256,1061.28000001156,-0.0549839418476531 +212257,1061.2850000115602,-0.05498388738392998 +212258,1061.2900000115603,-0.05498383291801861 +212259,1061.2950000115604,-0.05498377844991892 +212260,1061.3000000115605,-0.054983723979630854 +212261,1061.3050000115607,-0.054983669507154345 +212262,1061.3100000115608,-0.05498361503248936 +212263,1061.3150000115609,-0.05498356055563581 +212264,1061.320000011561,-0.054983506076593656 +212265,1061.325000011561,-0.05498345159536284 +212266,1061.3300000115612,-0.05498339711194328 +212267,1061.3350000115613,-0.05498334262633493 +212268,1061.3400000115614,-0.05498328813853775 +212269,1061.3450000115615,-0.05498323364855165 +212270,1061.3500000115616,-0.05498317915637658 +212271,1061.3550000115617,-0.05498312466201249 +212272,1061.3600000115619,-0.05498307016545931 +212273,1061.365000011562,-0.05498301566671698 +212274,1061.370000011562,-0.05498296116578546 +212275,1061.3750000115622,-0.054982906662664664 +212276,1061.3800000115623,-0.054982852157354545 +212277,1061.3850000115624,-0.054982797649855045 +212278,1061.3900000115625,-0.05498274314016611 +212279,1061.3950000115626,-0.05498268862828766 +212280,1061.4000000115627,-0.05498263411421965 +212281,1061.4050000115628,-0.05498257959796203 +212282,1061.410000011563,-0.05498252507951472 +212283,1061.415000011563,-0.054982470558877665 +212284,1061.4200000115632,-0.05498241603605082 +212285,1061.4250000115633,-0.05498236151103412 +212286,1061.4300000115634,-0.054982306983827486 +212287,1061.4350000115635,-0.05498225245443088 +212288,1061.4400000115636,-0.054982197922844235 +212289,1061.4450000115637,-0.05498214338906749 +212290,1061.4500000115638,-0.054982088853100596 +212291,1061.455000011564,-0.05498203431494348 +212292,1061.460000011564,-0.05498197977459608 +212293,1061.4650000115641,-0.054981925232058346 +212294,1061.4700000115643,-0.054981870687330216 +212295,1061.4750000115644,-0.05498181614041162 +212296,1061.4800000115645,-0.05498176159130252 +212297,1061.4850000115646,-0.05498170704000283 +212298,1061.4900000115647,-0.05498165248651252 +212299,1061.4950000115648,-0.0549815979308315 +212300,1061.500000011565,-0.05498154337295973 +212301,1061.505000011565,-0.054981488812897154 +212302,1061.5100000115651,-0.05498143425064369 +212303,1061.5150000115652,-0.05498137968619929 +212304,1061.5200000115653,-0.054981325119563905 +212305,1061.5250000115655,-0.05498127055073746 +212306,1061.5300000115656,-0.05498121597971991 +212307,1061.5350000115657,-0.054981161406511166 +212308,1061.5400000115658,-0.054981106831111196 +212309,1061.545000011566,-0.05498105225351992 +212310,1061.550000011566,-0.05498099767373729 +212311,1061.555000011566,-0.054980943091763254 +212312,1061.5600000115662,-0.05498088850759774 +212313,1061.5650000115663,-0.05498083392124069 +212314,1061.5700000115664,-0.05498077933269204 +212315,1061.5750000115665,-0.05498072474195173 +212316,1061.5800000115667,-0.054980670149019716 +212317,1061.5850000115668,-0.05498061555389593 +212318,1061.5900000115669,-0.054980560956580306 +212319,1061.595000011567,-0.054980506357072786 +212320,1061.600000011567,-0.0549804517553733 +212321,1061.6050000115672,-0.0549803971514818 +212322,1061.6100000115673,-0.054980342545398214 +212323,1061.6150000115674,-0.054980287937122514 +212324,1061.6200000115675,-0.0549802333266546 +212325,1061.6250000115676,-0.05498017871399444 +212326,1061.6300000115677,-0.05498012409914195 +212327,1061.6350000115679,-0.05498006948209708 +212328,1061.640000011568,-0.05498001486285978 +212329,1061.645000011568,-0.05497996024142998 +212330,1061.6500000115682,-0.05497990561780762 +212331,1061.6550000115683,-0.05497985099199264 +212332,1061.6600000115684,-0.05497979636398498 +212333,1061.6650000115685,-0.05497974173378458 +212334,1061.6700000115686,-0.05497968710139138 +212335,1061.6750000115687,-0.05497963246680532 +212336,1061.6800000115688,-0.05497957783002633 +212337,1061.685000011569,-0.05497952319105437 +212338,1061.690000011569,-0.05497946854988936 +212339,1061.6950000115692,-0.05497941390653125 +212340,1061.7000000115693,-0.05497935926097998 +212341,1061.7050000115694,-0.05497930461323548 +212342,1061.7100000115695,-0.054979249963297706 +212343,1061.7150000115696,-0.05497919531116658 +212344,1061.7200000115697,-0.05497914065684205 +212345,1061.7250000115698,-0.054979086000324064 +212346,1061.73000001157,-0.05497903134161254 +212347,1061.73500001157,-0.054978976680707434 +212348,1061.7400000115701,-0.05497892201760867 +212349,1061.7450000115703,-0.054978867352316205 +212350,1061.7500000115704,-0.054978812684829965 +212351,1061.7550000115705,-0.05497875801514989 +212352,1061.7600000115706,-0.05497870334327594 +212353,1061.7650000115707,-0.05497864866920803 +212354,1061.7700000115708,-0.054978593992946106 +212355,1061.775000011571,-0.05497853931449011 +212356,1061.780000011571,-0.05497848463383998 +212357,1061.7850000115711,-0.05497842995099566 +212358,1061.7900000115712,-0.054978375265957086 +212359,1061.7950000115713,-0.0549783205787242 +212360,1061.8000000115715,-0.05497826588929692 +212361,1061.8050000115716,-0.05497821119767522 +212362,1061.8100000115717,-0.05497815650385901 +212363,1061.8150000115718,-0.05497810180784825 +212364,1061.820000011572,-0.05497804710964286 +212365,1061.825000011572,-0.0549779924092428 +212366,1061.830000011572,-0.054977937706647995 +212367,1061.8350000115722,-0.05497788300185839 +212368,1061.8400000115723,-0.054977828294873916 +212369,1061.8450000115724,-0.05497777358569452 +212370,1061.8500000115725,-0.05497771887432013 +212371,1061.8550000115727,-0.05497766416075071 +212372,1061.8600000115728,-0.05497760944498617 +212373,1061.8650000115729,-0.05497755472702646 +212374,1061.870000011573,-0.05497750000687152 +212375,1061.875000011573,-0.054977445284521295 +212376,1061.8800000115732,-0.05497739055997572 +212377,1061.8850000115733,-0.05497733583323472 +212378,1061.8900000115734,-0.05497728110429826 +212379,1061.8950000115735,-0.054977226373166245 +212380,1061.9000000115736,-0.054977171639838646 +212381,1061.9050000115737,-0.05497711690431538 +212382,1061.9100000115739,-0.0549770621665964 +212383,1061.915000011574,-0.054977007426681636 +212384,1061.920000011574,-0.05497695268457105 +212385,1061.9250000115742,-0.05497689794026455 +212386,1061.9300000115743,-0.05497684319376208 +212387,1061.9350000115744,-0.05497678844506359 +212388,1061.9400000115745,-0.054976733694169014 +212389,1061.9450000115746,-0.05497667894107829 +212390,1061.9500000115747,-0.05497662418579135 +212391,1061.9550000115748,-0.054976569428308156 +212392,1061.960000011575,-0.05497651466862861 +212393,1061.965000011575,-0.05497645990675268 +212394,1061.9700000115752,-0.05497640514268029 +212395,1061.9750000115753,-0.05497635037641139 +212396,1061.9800000115754,-0.05497629560794592 +212397,1061.9850000115755,-0.0549762408372838 +212398,1061.9900000115756,-0.05497618606442498 +212399,1061.9950000115757,-0.05497613128936941 +212400,1062.0000000115758,-0.05497607651211701 +212401,1062.005000011576,-0.05497602173266772 +212402,1062.010000011576,-0.05497596695102149 +212403,1062.0150000115761,-0.05497591216717825 +212404,1062.0200000115763,-0.054975857381137944 +212405,1062.0250000115764,-0.05497580259290051 +212406,1062.0300000115765,-0.05497574780246588 +212407,1062.0350000115766,-0.054975693009833994 +212408,1062.0400000115767,-0.05497563821500479 +212409,1062.0450000115768,-0.054975583417978216 +212410,1062.050000011577,-0.054975528618754196 +212411,1062.055000011577,-0.054975473817332685 +212412,1062.0600000115771,-0.054975419013713604 +212413,1062.0650000115772,-0.05497536420789691 +212414,1062.0700000115773,-0.05497530939988252 +212415,1062.0750000115775,-0.05497525458967038 +212416,1062.0800000115776,-0.054975199777260446 +212417,1062.0850000115777,-0.05497514496265262 +212418,1062.0900000115778,-0.05497509014584688 +212419,1062.095000011578,-0.05497503532684314 +212420,1062.100000011578,-0.05497498050564134 +212421,1062.105000011578,-0.054974925682241424 +212422,1062.1100000115782,-0.05497487085664332 +212423,1062.1150000115783,-0.05497481602884699 +212424,1062.1200000115784,-0.05497476119885235 +212425,1062.1250000115785,-0.05497470636665935 +212426,1062.1300000115787,-0.05497465153226792 +212427,1062.1350000115788,-0.05497459669567799 +212428,1062.1400000115789,-0.05497454185688952 +212429,1062.145000011579,-0.05497448701590243 +212430,1062.150000011579,-0.054974432172716664 +212431,1062.1550000115792,-0.054974377327332166 +212432,1062.1600000115793,-0.054974322479748865 +212433,1062.1650000115794,-0.054974267629966704 +212434,1062.1700000115795,-0.054974212777985615 +212435,1062.1750000115796,-0.05497415792380555 +212436,1062.1800000115798,-0.05497410306742643 +212437,1062.1850000115799,-0.05497404820884821 +212438,1062.19000001158,-0.05497399334807081 +212439,1062.19500001158,-0.05497393848509418 +212440,1062.2000000115802,-0.05497388361991826 +212441,1062.2050000115803,-0.054973828752542975 +212442,1062.2100000115804,-0.05497377388296826 +212443,1062.2150000115805,-0.05497371901119408 +212444,1062.2200000115806,-0.05497366413722034 +212445,1062.2250000115807,-0.054973609261047 +212446,1062.2300000115808,-0.054973554382674 +212447,1062.235000011581,-0.054973499502101265 +212448,1062.240000011581,-0.05497344461932873 +212449,1062.2450000115812,-0.054973389734356344 +212450,1062.2500000115813,-0.05497333484718404 +212451,1062.2550000115814,-0.05497327995781175 +212452,1062.2600000115815,-0.054973225066239424 +212453,1062.2650000115816,-0.054973170172466994 +212454,1062.2700000115817,-0.0549731152764944 +212455,1062.2750000115818,-0.054973060378321566 +212456,1062.280000011582,-0.054973005477948436 +212457,1062.285000011582,-0.054972950575374956 +212458,1062.2900000115822,-0.05497289567060106 +212459,1062.2950000115823,-0.05497284076362669 +212460,1062.3000000115824,-0.05497278585445177 +212461,1062.3050000115825,-0.054972730943076246 +212462,1062.3100000115826,-0.05497267602950005 +212463,1062.3150000115827,-0.054972621113723134 +212464,1062.3200000115828,-0.05497256619574543 +212465,1062.325000011583,-0.05497251127556686 +212466,1062.330000011583,-0.05497245635318737 +212467,1062.3350000115831,-0.054972401428606904 +212468,1062.3400000115832,-0.0549723465018254 +212469,1062.3450000115834,-0.054972291572842794 +212470,1062.3500000115835,-0.05497223664165901 +212471,1062.3550000115836,-0.054972181708274 +212472,1062.3600000115837,-0.05497212677268769 +212473,1062.3650000115838,-0.054972071834900035 +212474,1062.370000011584,-0.05497201689491095 +212475,1062.375000011584,-0.054971961952720395 +212476,1062.3800000115841,-0.05497190700832829 +212477,1062.3850000115842,-0.054971852061734584 +212478,1062.3900000115843,-0.0549717971129392 +212479,1062.3950000115844,-0.05497174216194209 +212480,1062.4000000115846,-0.05497168720874318 +212481,1062.4050000115847,-0.05497163225334241 +212482,1062.4100000115848,-0.054971577295739725 +212483,1062.4150000115849,-0.05497152233593505 +212484,1062.420000011585,-0.054971467373928336 +212485,1062.425000011585,-0.054971412409719506 +212486,1062.4300000115852,-0.054971357443308506 +212487,1062.4350000115853,-0.05497130247469528 +212488,1062.4400000115854,-0.05497124750387975 +212489,1062.4450000115855,-0.054971192530861857 +212490,1062.4500000115856,-0.054971137555641536 +212491,1062.4550000115858,-0.05497108257821873 +212492,1062.4600000115859,-0.05497102759859337 +212493,1062.465000011586,-0.054970972616765396 +212494,1062.470000011586,-0.054970917632734755 +212495,1062.4750000115862,-0.054970862646501376 +212496,1062.4800000115863,-0.05497080765806518 +212497,1062.4850000115864,-0.054970752667426126 +212498,1062.4900000115865,-0.054970697674584144 +212499,1062.4950000115866,-0.05497064267953917 +212500,1062.5000000115867,-0.05497058768229114 +212501,1062.5050000115868,-0.05497053268283999 +212502,1062.510000011587,-0.05497047768118566 +212503,1062.515000011587,-0.05497042267732809 +212504,1062.5200000115872,-0.054970367671267215 +212505,1062.5250000115873,-0.05497031266300296 +212506,1062.5300000115874,-0.05497025765253527 +212507,1062.5350000115875,-0.05497020263986409 +212508,1062.5400000115876,-0.05497014762498934 +212509,1062.5450000115877,-0.05497009260791097 +212510,1062.5500000115878,-0.054970037588628916 +212511,1062.555000011588,-0.054969982567143104 +212512,1062.560000011588,-0.05496992754345348 +212513,1062.5650000115882,-0.05496987251755998 +212514,1062.5700000115883,-0.054969817489462544 +212515,1062.5750000115884,-0.0549697624591611 +212516,1062.5800000115885,-0.05496970742665559 +212517,1062.5850000115886,-0.05496965239194594 +212518,1062.5900000115887,-0.05496959735503211 +212519,1062.5950000115888,-0.05496954231591401 +212520,1062.600000011589,-0.05496948727459159 +212521,1062.605000011589,-0.054969432231064784 +212522,1062.6100000115891,-0.054969377185333526 +212523,1062.6150000115892,-0.05496932213739777 +212524,1062.6200000115894,-0.054969267087257426 +212525,1062.6250000115895,-0.054969212034912444 +212526,1062.6300000115896,-0.054969156980362754 +212527,1062.6350000115897,-0.05496910192360831 +212528,1062.6400000115898,-0.054969046864649034 +212529,1062.64500001159,-0.05496899180348486 +212530,1062.65000001159,-0.05496893674011572 +212531,1062.6550000115901,-0.054968881674541566 +212532,1062.6600000115902,-0.05496882660676232 +212533,1062.6650000115903,-0.054968771536777934 +212534,1062.6700000115904,-0.05496871646458834 +212535,1062.6750000115906,-0.05496866139019346 +212536,1062.6800000115907,-0.054968606313593245 +212537,1062.6850000115908,-0.054968551234787624 +212538,1062.6900000115909,-0.054968496153776546 +212539,1062.695000011591,-0.05496844107055992 +212540,1062.700000011591,-0.0549683859851377 +212541,1062.7050000115912,-0.05496833089750983 +212542,1062.7100000115913,-0.054968275807676235 +212543,1062.7150000115914,-0.05496822071563685 +212544,1062.7200000115915,-0.054968165621391604 +212545,1062.7250000115916,-0.05496811052494046 +212546,1062.7300000115918,-0.05496805542628333 +212547,1062.7350000115919,-0.054968000325420166 +212548,1062.740000011592,-0.05496794522235089 +212549,1062.745000011592,-0.054967890117075445 +212550,1062.7500000115922,-0.054967835009593756 +212551,1062.7550000115923,-0.054967779899905776 +212552,1062.7600000115924,-0.054967724788011436 +212553,1062.7650000115925,-0.05496766967391067 +212554,1062.7700000115926,-0.0549676145576034 +212555,1062.7750000115927,-0.05496755943908958 +212556,1062.7800000115928,-0.05496750431836915 +212557,1062.785000011593,-0.05496744919544203 +212558,1062.790000011593,-0.05496739407030816 +212559,1062.7950000115932,-0.054967338942967486 +212560,1062.8000000115933,-0.05496728381341994 +212561,1062.8050000115934,-0.054967228681665446 +212562,1062.8100000115935,-0.05496717354770395 +212563,1062.8150000115936,-0.054967118411535384 +212564,1062.8200000115937,-0.05496706327315968 +212565,1062.8250000115938,-0.05496700813257678 +212566,1062.830000011594,-0.05496695298978662 +212567,1062.835000011594,-0.054966897844789135 +212568,1062.8400000115942,-0.054966842697584256 +212569,1062.8450000115943,-0.05496678754817192 +212570,1062.8500000115944,-0.05496673239655207 +212571,1062.8550000115945,-0.054966677242724644 +212572,1062.8600000115946,-0.05496662208668957 +212573,1062.8650000115947,-0.05496656692844678 +212574,1062.8700000115948,-0.054966511767996225 +212575,1062.875000011595,-0.054966456605337825 +212576,1062.880000011595,-0.05496640144047152 +212577,1062.8850000115951,-0.054966346273397235 +212578,1062.8900000115952,-0.05496629110411492 +212579,1062.8950000115954,-0.0549662359326245 +212580,1062.9000000115955,-0.05496618075892593 +212581,1062.9050000115956,-0.054966125583019124 +212582,1062.9100000115957,-0.05496607040490403 +212583,1062.9150000115958,-0.054966015224580576 +212584,1062.920000011596,-0.054965960042048706 +212585,1062.925000011596,-0.054965904857308345 +212586,1062.9300000115961,-0.05496584967035943 +212587,1062.9350000115962,-0.05496579448120191 +212588,1062.9400000115963,-0.05496573928983571 +212589,1062.9450000115964,-0.05496568409626076 +212590,1062.9500000115966,-0.054965628900477 +212591,1062.9550000115967,-0.054965573702484366 +212592,1062.9600000115968,-0.05496551850228279 +212593,1062.9650000115969,-0.054965463299872216 +212594,1062.970000011597,-0.05496540809525257 +212595,1062.975000011597,-0.054965352888423795 +212596,1062.9800000115972,-0.054965297679385815 +212597,1062.9850000115973,-0.054965242468138574 +212598,1062.9900000115974,-0.05496518725468201 +212599,1062.9950000115975,-0.054965132039016054 +212600,1063.0000000115976,-0.05496507682114064 +212601,1063.0050000115978,-0.054965021601055694 +212602,1063.0100000115979,-0.05496496637876118 +212603,1063.015000011598,-0.054964911154256994 +212604,1063.020000011598,-0.0549648559275431 +212605,1063.0250000115982,-0.05496480069861943 +212606,1063.0300000115983,-0.0549647454674859 +212607,1063.0350000115984,-0.054964690234142466 +212608,1063.0400000115985,-0.05496463499858905 +212609,1063.0450000115986,-0.05496457976082559 +212610,1063.0500000115987,-0.05496452452085202 +212611,1063.0550000115988,-0.05496446927866829 +212612,1063.060000011599,-0.054964414034274316 +212613,1063.065000011599,-0.05496435878767004 +212614,1063.0700000115992,-0.05496430353885539 +212615,1063.0750000115993,-0.054964248287830315 +212616,1063.0800000115994,-0.054964193034594745 +212617,1063.0850000115995,-0.0549641377791486 +212618,1063.0900000115996,-0.05496408252149183 +212619,1063.0950000115997,-0.05496402726162437 +212620,1063.1000000115998,-0.05496397199954615 +212621,1063.1050000116,-0.0549639167352571 +212622,1063.1100000116,-0.054963861468757175 +212623,1063.1150000116002,-0.05496380620004628 +212624,1063.1200000116003,-0.05496375092912437 +212625,1063.1250000116004,-0.05496369565599137 +212626,1063.1300000116005,-0.05496364038064724 +212627,1063.1350000116006,-0.05496358510309187 +212628,1063.1400000116007,-0.05496352982332523 +212629,1063.1450000116008,-0.05496347454134724 +212630,1063.150000011601,-0.054963419257157836 +212631,1063.155000011601,-0.05496336397075696 +212632,1063.1600000116011,-0.05496330868214453 +212633,1063.1650000116013,-0.054963253391320493 +212634,1063.1700000116014,-0.054963198098284795 +212635,1063.1750000116015,-0.054963142803037345 +212636,1063.1800000116016,-0.05496308750557809 +212637,1063.1850000116017,-0.054963032205906974 +212638,1063.1900000116018,-0.05496297690402392 +212639,1063.195000011602,-0.05496292159992886 +212640,1063.200000011602,-0.05496286629362173 +212641,1063.2050000116021,-0.054962810985102466 +212642,1063.2100000116022,-0.05496275567437101 +212643,1063.2150000116023,-0.05496270036142728 +212644,1063.2200000116025,-0.054962645046271234 +212645,1063.2250000116026,-0.054962589728902785 +212646,1063.2300000116027,-0.054962534409321875 +212647,1063.2350000116028,-0.05496247908752844 +212648,1063.240000011603,-0.05496242376352241 +212649,1063.245000011603,-0.054962368437303726 +212650,1063.250000011603,-0.05496231310887231 +212651,1063.2550000116032,-0.05496225777822811 +212652,1063.2600000116033,-0.05496220244537105 +212653,1063.2650000116034,-0.05496214711030106 +212654,1063.2700000116035,-0.05496209177301809 +212655,1063.2750000116037,-0.05496203643352206 +212656,1063.2800000116038,-0.05496198109181292 +212657,1063.2850000116039,-0.05496192574789059 +212658,1063.290000011604,-0.05496187040175501 +212659,1063.295000011604,-0.05496181505340612 +212660,1063.3000000116042,-0.05496175970284384 +212661,1063.3050000116043,-0.05496170435006811 +212662,1063.3100000116044,-0.05496164899507886 +212663,1063.3150000116045,-0.05496159363787604 +212664,1063.3200000116046,-0.05496153827845957 +212665,1063.3250000116047,-0.05496148291682938 +212666,1063.3300000116049,-0.054961427552985415 +212667,1063.335000011605,-0.05496137218692761 +212668,1063.340000011605,-0.05496131681865589 +212669,1063.3450000116052,-0.05496126144817019 +212670,1063.3500000116053,-0.05496120607547044 +212671,1063.3550000116054,-0.054961150700556585 +212672,1063.3600000116055,-0.05496109532342857 +212673,1063.3650000116056,-0.0549610399440863 +212674,1063.3700000116057,-0.054960984562529715 +212675,1063.3750000116058,-0.05496092917875876 +212676,1063.380000011606,-0.05496087379277337 +212677,1063.385000011606,-0.054960818404573474 +212678,1063.3900000116062,-0.054960763014159 +212679,1063.3950000116063,-0.054960707621529895 +212680,1063.4000000116064,-0.054960652226686064 +212681,1063.4050000116065,-0.05496059682962748 +212682,1063.4100000116066,-0.054960541430354046 +212683,1063.4150000116067,-0.054960486028865704 +212684,1063.4200000116068,-0.05496043062516239 +212685,1063.425000011607,-0.054960375219244045 +212686,1063.430000011607,-0.054960319811110596 +212687,1063.4350000116071,-0.054960264400761974 +212688,1063.4400000116073,-0.05496020898819812 +212689,1063.4450000116074,-0.05496015357341896 +212690,1063.4500000116075,-0.054960098156424435 +212691,1063.4550000116076,-0.054960042737214464 +212692,1063.4600000116077,-0.054959987315788994 +212693,1063.4650000116078,-0.05495993189214795 +212694,1063.470000011608,-0.05495987646629128 +212695,1063.475000011608,-0.05495982103821889 +212696,1063.4800000116081,-0.05495976560793075 +212697,1063.4850000116082,-0.054959710175426765 +212698,1063.4900000116083,-0.05495965474070688 +212699,1063.4950000116085,-0.05495959930377103 +212700,1063.5000000116086,-0.05495954386461914 +212701,1063.5050000116087,-0.05495948842325114 +212702,1063.5100000116088,-0.054959432979666975 +212703,1063.515000011609,-0.05495937753386657 +212704,1063.520000011609,-0.05495932208584987 +212705,1063.525000011609,-0.05495926663561679 +212706,1063.5300000116092,-0.054959211183167274 +212707,1063.5350000116093,-0.05495915572850126 +212708,1063.5400000116094,-0.05495910027161868 +212709,1063.5450000116095,-0.05495904481251947 +212710,1063.5500000116097,-0.054958989351203545 +212711,1063.5550000116098,-0.05495893388767084 +212712,1063.5600000116099,-0.0549588784219213 +212713,1063.56500001161,-0.054958822953954864 +212714,1063.57000001161,-0.05495876748377145 +212715,1063.5750000116102,-0.05495871201137101 +212716,1063.5800000116103,-0.054958656536753456 +212717,1063.5850000116104,-0.05495860105991872 +212718,1063.5900000116105,-0.054958545580866755 +212719,1063.5950000116106,-0.05495849009959748 +212720,1063.6000000116107,-0.054958434616110836 +212721,1063.6050000116109,-0.054958379130406756 +212722,1063.610000011611,-0.05495832364248517 +212723,1063.615000011611,-0.05495826815234601 +212724,1063.6200000116112,-0.0549582126599892 +212725,1063.6250000116113,-0.054958157165414676 +212726,1063.6300000116114,-0.054958101668622375 +212727,1063.6350000116115,-0.054958046169612244 +212728,1063.6400000116116,-0.0549579906683842 +212729,1063.6450000116117,-0.05495793516493818 +212730,1063.6500000116118,-0.054957879659274116 +212731,1063.655000011612,-0.054957824151391936 +212732,1063.660000011612,-0.054957768641291566 +212733,1063.6650000116122,-0.054957713128972956 +212734,1063.6700000116123,-0.05495765761443603 +212735,1063.6750000116124,-0.05495760209768073 +212736,1063.6800000116125,-0.05495754657870698 +212737,1063.6850000116126,-0.05495749105751472 +212738,1063.6900000116127,-0.054957435534103864 +212739,1063.6950000116128,-0.05495738000847436 +212740,1063.700000011613,-0.054957324480626145 +212741,1063.705000011613,-0.05495726895055914 +212742,1063.7100000116131,-0.05495721341827328 +212743,1063.7150000116133,-0.0549571578837685 +212744,1063.7200000116134,-0.05495710234704474 +212745,1063.7250000116135,-0.05495704680810192 +212746,1063.7300000116136,-0.05495699126693998 +212747,1063.7350000116137,-0.05495693572355884 +212748,1063.7400000116138,-0.05495688017795845 +212749,1063.745000011614,-0.05495682463013874 +212750,1063.750000011614,-0.05495676908009963 +212751,1063.7550000116141,-0.05495671352784106 +212752,1063.7600000116142,-0.054956657973362966 +212753,1063.7650000116143,-0.054956602416665265 +212754,1063.7700000116145,-0.054956546857747895 +212755,1063.7750000116146,-0.05495649129661081 +212756,1063.7800000116147,-0.054956435733253914 +212757,1063.7850000116148,-0.054956380167677156 +212758,1063.790000011615,-0.05495632459988046 +212759,1063.795000011615,-0.054956269029863766 +212760,1063.800000011615,-0.054956213457627 +212761,1063.8050000116152,-0.05495615788317009 +212762,1063.8100000116153,-0.054956102306492984 +212763,1063.8150000116154,-0.05495604672759561 +212764,1063.8200000116155,-0.05495599114647789 +212765,1063.8250000116157,-0.05495593556313975 +212766,1063.8300000116158,-0.05495587997758113 +212767,1063.8350000116159,-0.054955824389801976 +212768,1063.840000011616,-0.05495576879980221 +212769,1063.845000011616,-0.05495571320758177 +212770,1063.8500000116162,-0.05495565761314058 +212771,1063.8550000116163,-0.05495560201647857 +212772,1063.8600000116164,-0.054955546417595674 +212773,1063.8650000116165,-0.05495549081649182 +212774,1063.8700000116166,-0.05495543521316695 +212775,1063.8750000116167,-0.05495537960762099 +212776,1063.8800000116169,-0.05495532399985386 +212777,1063.885000011617,-0.05495526838986552 +212778,1063.890000011617,-0.05495521277765589 +212779,1063.8950000116172,-0.05495515716322488 +212780,1063.9000000116173,-0.05495510154657245 +212781,1063.9050000116174,-0.05495504592769852 +212782,1063.9100000116175,-0.05495499030660304 +212783,1063.9150000116176,-0.05495493468328591 +212784,1063.9200000116177,-0.054954879057747076 +212785,1063.9250000116178,-0.05495482342998648 +212786,1063.930000011618,-0.05495476780000404 +212787,1063.935000011618,-0.0549547121677997 +212788,1063.9400000116182,-0.054954656533373385 +212789,1063.9450000116183,-0.05495460089672501 +212790,1063.9500000116184,-0.05495454525785454 +212791,1063.9550000116185,-0.05495448961676188 +212792,1063.9600000116186,-0.054954433973446966 +212793,1063.9650000116187,-0.05495437832790975 +212794,1063.9700000116188,-0.054954322680150144 +212795,1063.975000011619,-0.054954267030168084 +212796,1063.980000011619,-0.054954211377963504 +212797,1063.9850000116191,-0.05495415572353633 +212798,1063.9900000116193,-0.054954100066886495 +212799,1063.9950000116194,-0.05495404440801393 +212800,1064.0000000116195,-0.05495398874691857 +212801,1064.0050000116196,-0.054953933083600345 +212802,1064.0100000116197,-0.0549538774180592 +212803,1064.0150000116198,-0.054953821750295034 +212804,1064.02000001162,-0.0549537660803078 +212805,1064.02500001162,-0.054953710408097434 +212806,1064.0300000116201,-0.054953654733663856 +212807,1064.0350000116202,-0.054953599057006995 +212808,1064.0400000116204,-0.054953543378126794 +212809,1064.0450000116205,-0.05495348769702318 +212810,1064.0500000116206,-0.05495343201369609 +212811,1064.0550000116207,-0.05495337632814544 +212812,1064.0600000116208,-0.05495332064037117 +212813,1064.065000011621,-0.054953264950373226 +212814,1064.070000011621,-0.05495320925815152 +212815,1064.0750000116211,-0.05495315356370598 +212816,1064.0800000116212,-0.054953097867036546 +212817,1064.0850000116213,-0.054953042168143146 +212818,1064.0900000116214,-0.05495298646702571 +212819,1064.0950000116216,-0.05495293076368418 +212820,1064.1000000116217,-0.05495287505811848 +212821,1064.1050000116218,-0.054952819350328544 +212822,1064.1100000116219,-0.05495276364031429 +212823,1064.115000011622,-0.054952707928075654 +212824,1064.120000011622,-0.054952652213612584 +212825,1064.1250000116222,-0.05495259649692499 +212826,1064.1300000116223,-0.05495254077801281 +212827,1064.1350000116224,-0.05495248505687597 +212828,1064.1400000116225,-0.054952429333514415 +212829,1064.1450000116226,-0.05495237360792807 +212830,1064.1500000116228,-0.05495231788011687 +212831,1064.1550000116229,-0.05495226215008073 +212832,1064.160000011623,-0.054952206417819595 +212833,1064.165000011623,-0.05495215068333339 +212834,1064.1700000116232,-0.054952094946622045 +212835,1064.1750000116233,-0.05495203920768549 +212836,1064.1800000116234,-0.05495198346652367 +212837,1064.1850000116235,-0.05495192772313651 +212838,1064.1900000116236,-0.05495187197752392 +212839,1064.1950000116237,-0.05495181622968586 +212840,1064.2000000116238,-0.05495176047962224 +212841,1064.205000011624,-0.054951704727332996 +212842,1064.210000011624,-0.05495164897281806 +212843,1064.2150000116242,-0.05495159321607737 +212844,1064.2200000116243,-0.054951537457110844 +212845,1064.2250000116244,-0.05495148169591842 +212846,1064.2300000116245,-0.054951425932500034 +212847,1064.2350000116246,-0.0549513701668556 +212848,1064.2400000116247,-0.05495131439898506 +212849,1064.2450000116248,-0.054951258628888354 +212850,1064.250000011625,-0.054951202856565386 +212851,1064.255000011625,-0.05495114708201611 +212852,1064.2600000116252,-0.05495109130524044 +212853,1064.2650000116253,-0.05495103552623833 +212854,1064.2700000116254,-0.05495097974500969 +212855,1064.2750000116255,-0.05495092396155445 +212856,1064.2800000116256,-0.05495086817587256 +212857,1064.2850000116257,-0.05495081238796392 +212858,1064.2900000116258,-0.05495075659782849 +212859,1064.295000011626,-0.05495070080546617 +212860,1064.300000011626,-0.05495064501087691 +212861,1064.3050000116261,-0.054950589214060645 +212862,1064.3100000116262,-0.05495053341501731 +212863,1064.3150000116264,-0.054950477613746815 +212864,1064.3200000116265,-0.054950421810249096 +212865,1064.3250000116266,-0.05495036600452408 +212866,1064.3300000116267,-0.05495031019657172 +212867,1064.3350000116268,-0.05495025438639192 +212868,1064.340000011627,-0.05495019857398462 +212869,1064.345000011627,-0.05495014275934974 +212870,1064.3500000116271,-0.054950086942487236 +212871,1064.3550000116272,-0.05495003112339701 +212872,1064.3600000116273,-0.05494997530207901 +212873,1064.3650000116274,-0.054949919478533164 +212874,1064.3700000116276,-0.05494986365275939 +212875,1064.3750000116277,-0.05494980782475763 +212876,1064.3800000116278,-0.05494975199452782 +212877,1064.3850000116279,-0.05494969616206987 +212878,1064.390000011628,-0.05494964032738372 +212879,1064.395000011628,-0.05494958449046931 +212880,1064.4000000116282,-0.054949528651326546 +212881,1064.4050000116283,-0.05494947280995538 +212882,1064.4100000116284,-0.05494941696635574 +212883,1064.4150000116285,-0.05494936112052754 +212884,1064.4200000116286,-0.05494930527247072 +212885,1064.4250000116288,-0.05494924942218522 +212886,1064.4300000116289,-0.05494919356967096 +212887,1064.435000011629,-0.05494913771492786 +212888,1064.440000011629,-0.05494908185795586 +212889,1064.4450000116292,-0.05494902599875489 +212890,1064.4500000116293,-0.05494897013732488 +212891,1064.4550000116294,-0.054948914273665765 +212892,1064.4600000116295,-0.05494885840777747 +212893,1064.4650000116296,-0.05494880253965991 +212894,1064.4700000116297,-0.05494874666931304 +212895,1064.4750000116298,-0.05494869079673677 +212896,1064.48000001163,-0.05494863492193105 +212897,1064.48500001163,-0.05494857904489578 +212898,1064.4900000116302,-0.05494852316563092 +212899,1064.4950000116303,-0.054948467284136375 +212900,1064.5000000116304,-0.05494841140041209 +212901,1064.5050000116305,-0.05494835551445799 +212902,1064.5100000116306,-0.05494829962627401 +212903,1064.5150000116307,-0.05494824373586006 +212904,1064.5200000116308,-0.05494818784321609 +212905,1064.525000011631,-0.05494813194834203 +212906,1064.530000011631,-0.05494807605123779 +212907,1064.5350000116312,-0.05494802015190332 +212908,1064.5400000116313,-0.054947964250338543 +212909,1064.5450000116314,-0.05494790834654339 +212910,1064.5500000116315,-0.05494785244051778 +212911,1064.5550000116316,-0.05494779653226165 +212912,1064.5600000116317,-0.054947740621774925 +212913,1064.5650000116318,-0.05494768470905755 +212914,1064.570000011632,-0.05494762879410945 +212915,1064.575000011632,-0.054947572876930535 +212916,1064.5800000116321,-0.05494751695752075 +212917,1064.5850000116322,-0.05494746103588001 +212918,1064.5900000116324,-0.054947405112008255 +212919,1064.5950000116325,-0.05494734918590542 +212920,1064.6000000116326,-0.05494729325757143 +212921,1064.6050000116327,-0.05494723732700621 +212922,1064.6100000116328,-0.0549471813942097 +212923,1064.615000011633,-0.0549471254591818 +212924,1064.620000011633,-0.05494706952192247 +212925,1064.6250000116331,-0.05494701358243164 +212926,1064.6300000116332,-0.05494695764070922 +212927,1064.6350000116333,-0.05494690169675513 +212928,1064.6400000116334,-0.05494684575056934 +212929,1064.6450000116336,-0.054946789802151744 +212930,1064.6500000116337,-0.054946733851502276 +212931,1064.6550000116338,-0.05494667789862088 +212932,1064.6600000116339,-0.05494662194350747 +212933,1064.665000011634,-0.05494656598616199 +212934,1064.670000011634,-0.05494651002658435 +212935,1064.6750000116342,-0.05494645406477449 +212936,1064.6800000116343,-0.05494639810073234 +212937,1064.6850000116344,-0.05494634213445782 +212938,1064.6900000116345,-0.05494628616595087 +212939,1064.6950000116346,-0.054946230195211415 +212940,1064.7000000116348,-0.05494617422223938 +212941,1064.7050000116349,-0.05494611824703469 +212942,1064.710000011635,-0.05494606226959729 +212943,1064.715000011635,-0.0549460062899271 +212944,1064.7200000116352,-0.05494595030802404 +212945,1064.7250000116353,-0.05494589432388806 +212946,1064.7300000116354,-0.054945838337519065 +212947,1064.7350000116355,-0.05494578234891699 +212948,1064.7400000116356,-0.05494572635808177 +212949,1064.7450000116357,-0.05494567036501333 +212950,1064.7500000116358,-0.054945614369711605 +212951,1064.755000011636,-0.054945558372176524 +212952,1064.760000011636,-0.054945502372408 +212953,1064.7650000116362,-0.05494544637040598 +212954,1064.7700000116363,-0.054945390366170375 +212955,1064.7750000116364,-0.05494533435970112 +212956,1064.7800000116365,-0.054945278350998154 +212957,1064.7850000116366,-0.05494522234006139 +212958,1064.7900000116367,-0.054945166326890775 +212959,1064.7950000116368,-0.0549451103114862 +212960,1064.800000011637,-0.054945054293847634 +212961,1064.805000011637,-0.05494499827397499 +212962,1064.8100000116372,-0.054944942251868197 +212963,1064.8150000116373,-0.05494488622752719 +212964,1064.8200000116374,-0.05494483020095189 +212965,1064.8250000116375,-0.05494477417214222 +212966,1064.8300000116376,-0.05494471814109811 +212967,1064.8350000116377,-0.054944662107819495 +212968,1064.8400000116378,-0.0549446060723063 +212969,1064.845000011638,-0.05494455003455846 +212970,1064.850000011638,-0.0549444939945759 +212971,1064.8550000116381,-0.054944437952358545 +212972,1064.8600000116382,-0.05494438190790632 +212973,1064.8650000116384,-0.054944325861219154 +212974,1064.8700000116385,-0.054944269812296984 +212975,1064.8750000116386,-0.05494421376113972 +212976,1064.8800000116387,-0.05494415770774731 +212977,1064.8850000116388,-0.05494410165211967 +212978,1064.890000011639,-0.05494404559425674 +212979,1064.895000011639,-0.05494398953415843 +212980,1064.9000000116391,-0.05494393347182469 +212981,1064.9050000116392,-0.054943877407255426 +212982,1064.9100000116393,-0.05494382134045058 +212983,1064.9150000116394,-0.05494376527141009 +212984,1064.9200000116396,-0.054943709200133854 +212985,1064.9250000116397,-0.054943653126621826 +212986,1064.9300000116398,-0.05494359705087392 +212987,1064.9350000116399,-0.054943540972890066 +212988,1064.94000001164,-0.05494348489267019 +212989,1064.94500001164,-0.05494342881021422 +212990,1064.9500000116402,-0.0549433727255221 +212991,1064.9550000116403,-0.05494331663859373 +212992,1064.9600000116404,-0.05494326054942906 +212993,1064.9650000116405,-0.05494320445802801 +212994,1064.9700000116406,-0.05494314836439051 +212995,1064.9750000116408,-0.05494309226851648 +212996,1064.9800000116409,-0.054943036170405864 +212997,1064.985000011641,-0.054942980070058565 +212998,1064.990000011641,-0.05494292396747454 +212999,1064.9950000116412,-0.0549428678626537 +213000,1065.0000000116413,-0.05494281175559597 +213001,1065.0050000116414,-0.05494275564630128 +213002,1065.0100000116415,-0.05494269953476956 +213003,1065.0150000116416,-0.05494264342100074 +213004,1065.0200000116417,-0.054942587304994746 +213005,1065.0250000116419,-0.0549425311867515 +213006,1065.030000011642,-0.05494247506627093 +213007,1065.035000011642,-0.054942418943552965 +213008,1065.0400000116422,-0.054942362818597545 +213009,1065.0450000116423,-0.05494230669140458 +213010,1065.0500000116424,-0.05494225056197401 +213011,1065.0550000116425,-0.05494219443030575 +213012,1065.0600000116426,-0.05494213829639973 +213013,1065.0650000116427,-0.054942082160255895 +213014,1065.0700000116428,-0.05494202602187416 +213015,1065.075000011643,-0.05494196988125444 +213016,1065.080000011643,-0.05494191373839668 +213017,1065.0850000116432,-0.054941857593300794 +213018,1065.0900000116433,-0.05494180144596672 +213019,1065.0950000116434,-0.054941745296394374 +213020,1065.1000000116435,-0.054941689144583694 +213021,1065.1050000116436,-0.0549416329905346 +213022,1065.1100000116437,-0.05494157683424703 +213023,1065.1150000116438,-0.0549415206757209 +213024,1065.120000011644,-0.05494146451495614 +213025,1065.125000011644,-0.05494140835195267 +213026,1065.1300000116441,-0.054941352186710445 +213027,1065.1350000116443,-0.05494129601922937 +213028,1065.1400000116444,-0.05494123984950936 +213029,1065.1450000116445,-0.054941183677550354 +213030,1065.1500000116446,-0.05494112750335229 +213031,1065.1550000116447,-0.05494107132691509 +213032,1065.1600000116448,-0.05494101514823868 +213033,1065.165000011645,-0.05494095896732297 +213034,1065.170000011645,-0.054940902784167904 +213035,1065.1750000116451,-0.05494084659877341 +213036,1065.1800000116452,-0.054940790411139404 +213037,1065.1850000116453,-0.05494073422126583 +213038,1065.1900000116455,-0.0549406780291526 +213039,1065.1950000116456,-0.05494062183479964 +213040,1065.2000000116457,-0.054940565638206894 +213041,1065.2050000116458,-0.05494050943937427 +213042,1065.210000011646,-0.0549404532383017 +213043,1065.215000011646,-0.05494039703498912 +213044,1065.220000011646,-0.05494034082943644 +213045,1065.2250000116462,-0.0549402846216436 +213046,1065.2300000116463,-0.05494022841161052 +213047,1065.2350000116464,-0.054940172199337126 +213048,1065.2400000116465,-0.05494011598482335 +213049,1065.2450000116467,-0.05494005976806912 +213050,1065.2500000116468,-0.054940003549074364 +213051,1065.2550000116469,-0.054939947327838995 +213052,1065.260000011647,-0.05493989110436296 +213053,1065.265000011647,-0.05493983487864617 +213054,1065.2700000116472,-0.05493977865068855 +213055,1065.2750000116473,-0.05493972242049003 +213056,1065.2800000116474,-0.05493966618805054 +213057,1065.2850000116475,-0.05493960995337001 +213058,1065.2900000116476,-0.05493955371644836 +213059,1065.2950000116477,-0.054939497477285514 +213060,1065.3000000116479,-0.0549394412358814 +213061,1065.305000011648,-0.05493938499223596 +213062,1065.310000011648,-0.05493932874634909 +213063,1065.3150000116482,-0.05493927249822073 +213064,1065.3200000116483,-0.05493921624785082 +213065,1065.3250000116484,-0.05493915999523928 +213066,1065.3300000116485,-0.05493910374038603 +213067,1065.3350000116486,-0.054939047483290995 +213068,1065.3400000116487,-0.054938991223954105 +213069,1065.3450000116488,-0.054938934962375285 +213070,1065.350000011649,-0.05493887869855446 +213071,1065.355000011649,-0.05493882243249156 +213072,1065.3600000116492,-0.054938766164186505 +213073,1065.3650000116493,-0.05493870989363923 +213074,1065.3700000116494,-0.05493865362084965 +213075,1065.3750000116495,-0.0549385973458177 +213076,1065.3800000116496,-0.0549385410685433 +213077,1065.3850000116497,-0.05493848478902639 +213078,1065.3900000116498,-0.05493842850726688 +213079,1065.39500001165,-0.05493837222326471 +213080,1065.40000001165,-0.0549383159370198 +213081,1065.4050000116501,-0.05493825964853206 +213082,1065.4100000116503,-0.054938203357801425 +213083,1065.4150000116504,-0.05493814706482783 +213084,1065.4200000116505,-0.05493809076961121 +213085,1065.4250000116506,-0.054938034472151474 +213086,1065.4300000116507,-0.05493797817244854 +213087,1065.4350000116508,-0.05493792187050235 +213088,1065.440000011651,-0.054937865566312825 +213089,1065.445000011651,-0.054937809259879886 +213090,1065.4500000116511,-0.05493775295120346 +213091,1065.4550000116512,-0.054937696640283494 +213092,1065.4600000116513,-0.0549376403271199 +213093,1065.4650000116515,-0.05493758401171259 +213094,1065.4700000116516,-0.0549375276940615 +213095,1065.4750000116517,-0.05493747137416655 +213096,1065.4800000116518,-0.05493741505202768 +213097,1065.485000011652,-0.05493735872764479 +213098,1065.490000011652,-0.05493730240101783 +213099,1065.495000011652,-0.05493724607214672 +213100,1065.5000000116522,-0.05493718974103139 +213101,1065.5050000116523,-0.05493713340767175 +213102,1065.5100000116524,-0.05493707707206774 +213103,1065.5150000116525,-0.05493702073421928 +213104,1065.5200000116527,-0.05493696439412629 +213105,1065.5250000116528,-0.054936908051788705 +213106,1065.5300000116529,-0.05493685170720645 +213107,1065.535000011653,-0.05493679536037944 +213108,1065.540000011653,-0.05493673901130761 +213109,1065.5450000116532,-0.05493668265999088 +213110,1065.5500000116533,-0.054936626306429176 +213111,1065.5550000116534,-0.054936569950622426 +213112,1065.5600000116535,-0.05493651359257056 +213113,1065.5650000116536,-0.0549364572322735 +213114,1065.5700000116537,-0.05493640086973116 +213115,1065.5750000116539,-0.05493634450494348 +213116,1065.580000011654,-0.054936288137910384 +213117,1065.585000011654,-0.054936231768631785 +213118,1065.5900000116542,-0.05493617539710762 +213119,1065.5950000116543,-0.05493611902333781 +213120,1065.6000000116544,-0.05493606264732229 +213121,1065.6050000116545,-0.05493600626906097 +213122,1065.6100000116546,-0.05493594988855378 +213123,1065.6150000116547,-0.05493589350580065 +213124,1065.6200000116548,-0.054935837120801495 +213125,1065.625000011655,-0.05493578073355625 +213126,1065.630000011655,-0.054935724344064824 +213127,1065.6350000116552,-0.05493566795232717 +213128,1065.6400000116553,-0.0549356115583432 +213129,1065.6450000116554,-0.054935555162112834 +213130,1065.6500000116555,-0.054935498763635994 +213131,1065.6550000116556,-0.05493544236291261 +213132,1065.6600000116557,-0.05493538595994261 +213133,1065.6650000116558,-0.05493532955472591 +213134,1065.670000011656,-0.05493527314726245 +213135,1065.675000011656,-0.05493521673755214 +213136,1065.6800000116561,-0.05493516032559491 +213137,1065.6850000116563,-0.054935103911390684 +213138,1065.6900000116564,-0.054935047494939396 +213139,1065.6950000116565,-0.05493499107624096 +213140,1065.7000000116566,-0.05493493465529531 +213141,1065.7050000116567,-0.05493487823210235 +213142,1065.7100000116568,-0.05493482180666203 +213143,1065.715000011657,-0.054934765378974265 +213144,1065.720000011657,-0.05493470894903898 +213145,1065.7250000116571,-0.05493465251685609 +213146,1065.7300000116572,-0.05493459608242553 +213147,1065.7350000116573,-0.054934539645747224 +213148,1065.7400000116575,-0.0549344832068211 +213149,1065.7450000116576,-0.054934426765647075 +213150,1065.7500000116577,-0.054934370322225076 +213151,1065.7550000116578,-0.05493431387655502 +213152,1065.760000011658,-0.054934257428636855 +213153,1065.765000011658,-0.05493420097847049 +213154,1065.770000011658,-0.054934144526055835 +213155,1065.7750000116582,-0.054934088071392835 +213156,1065.7800000116583,-0.05493403161448141 +213157,1065.7850000116584,-0.05493397515532148 +213158,1065.7900000116585,-0.054933918693912974 +213159,1065.7950000116587,-0.054933862230255814 +213160,1065.8000000116588,-0.054933805764349926 +213161,1065.8050000116589,-0.05493374929619523 +213162,1065.810000011659,-0.054933692825791657 +213163,1065.815000011659,-0.05493363635313912 +213164,1065.8200000116592,-0.054933579878237555 +213165,1065.8250000116593,-0.05493352340108688 +213166,1065.8300000116594,-0.05493346692168701 +213167,1065.8350000116595,-0.054933410440037904 +213168,1065.8400000116596,-0.05493335395613946 +213169,1065.8450000116597,-0.054933297469991586 +213170,1065.8500000116599,-0.05493324098159424 +213171,1065.85500001166,-0.05493318449094733 +213172,1065.86000001166,-0.05493312799805078 +213173,1065.8650000116602,-0.05493307150290451 +213174,1065.8700000116603,-0.05493301500550845 +213175,1065.8750000116604,-0.05493295850586253 +213176,1065.8800000116605,-0.05493290200396666 +213177,1065.8850000116606,-0.054932845499820776 +213178,1065.8900000116607,-0.0549327889934248 +213179,1065.8950000116608,-0.05493273248477864 +213180,1065.900000011661,-0.05493267597388224 +213181,1065.905000011661,-0.05493261946073552 +213182,1065.9100000116612,-0.0549325629453384 +213183,1065.9150000116613,-0.05493250642769081 +213184,1065.9200000116614,-0.05493244990779266 +213185,1065.9250000116615,-0.054932393385643895 +213186,1065.9300000116616,-0.05493233686124441 +213187,1065.9350000116617,-0.05493228033459416 +213188,1065.9400000116618,-0.05493222380569304 +213189,1065.945000011662,-0.054932167274541005 +213190,1065.950000011662,-0.05493211074113795 +213191,1065.9550000116622,-0.05493205420548381 +213192,1065.9600000116623,-0.05493199766757852 +213193,1065.9650000116624,-0.05493194112742198 +213194,1065.9700000116625,-0.054931884585014135 +213195,1065.9750000116626,-0.05493182804035489 +213196,1065.9800000116627,-0.05493177149344417 +213197,1065.9850000116628,-0.05493171494428192 +213198,1065.990000011663,-0.054931658392868045 +213199,1065.995000011663,-0.054931601839202475 +213200,1066.0000000116631,-0.05493154528328514 +213201,1066.0050000116632,-0.05493148872511594 +213202,1066.0100000116634,-0.05493143216469483 +213203,1066.0150000116635,-0.0549313756020217 +213204,1066.0200000116636,-0.0549313190370965 +213205,1066.0250000116637,-0.05493126246991915 +213206,1066.0300000116638,-0.05493120590048956 +213207,1066.035000011664,-0.05493114932880767 +213208,1066.040000011664,-0.054931092754873394 +213209,1066.0450000116641,-0.05493103617868666 +213210,1066.0500000116642,-0.05493097960024737 +213211,1066.0550000116643,-0.05493092301955547 +213212,1066.0600000116644,-0.054930866436610874 +213213,1066.0650000116646,-0.05493080985141351 +213214,1066.0700000116647,-0.054930753263963315 +213215,1066.0750000116648,-0.05493069667426019 +213216,1066.0800000116649,-0.05493064008230407 +213217,1066.085000011665,-0.05493058348809487 +213218,1066.090000011665,-0.05493052689163251 +213219,1066.0950000116652,-0.05493047029291692 +213220,1066.1000000116653,-0.05493041369194803 +213221,1066.1050000116654,-0.054930357088725755 +213222,1066.1100000116655,-0.054930300483250025 +213223,1066.1150000116656,-0.05493024387552074 +213224,1066.1200000116658,-0.054930187265537854 +213225,1066.1250000116659,-0.05493013065330126 +213226,1066.130000011666,-0.0549300740388109 +213227,1066.135000011666,-0.0549300174220667 +213228,1066.1400000116662,-0.05492996080306857 +213229,1066.1450000116663,-0.05492990418181644 +213230,1066.1500000116664,-0.05492984755831024 +213231,1066.1550000116665,-0.05492979093254989 +213232,1066.1600000116666,-0.0549297343045353 +213233,1066.1650000116667,-0.0549296776742664 +213234,1066.1700000116668,-0.05492962104174312 +213235,1066.175000011667,-0.05492956440696537 +213236,1066.180000011667,-0.054929507769933085 +213237,1066.1850000116672,-0.05492945113064617 +213238,1066.1900000116673,-0.05492939448910457 +213239,1066.1950000116674,-0.0549293378453082 +213240,1066.2000000116675,-0.054929281199256975 +213241,1066.2050000116676,-0.05492922455095082 +213242,1066.2100000116677,-0.054929167900389674 +213243,1066.2150000116678,-0.05492911124757343 +213244,1066.220000011668,-0.054929054592502025 +213245,1066.225000011668,-0.05492899793517539 +213246,1066.2300000116682,-0.054928941275593446 +213247,1066.2350000116683,-0.0549288846137561 +213248,1066.2400000116684,-0.054928827949663285 +213249,1066.2450000116685,-0.05492877128331493 +213250,1066.2500000116686,-0.054928714614710945 +213251,1066.2550000116687,-0.05492865794385125 +213252,1066.2600000116688,-0.05492860127073578 +213253,1066.265000011669,-0.054928544595364455 +213254,1066.270000011669,-0.054928487917737204 +213255,1066.2750000116691,-0.05492843123785393 +213256,1066.2800000116692,-0.054928374555714574 +213257,1066.2850000116694,-0.05492831787131904 +213258,1066.2900000116695,-0.05492826118466727 +213259,1066.2950000116696,-0.054928204495759164 +213260,1066.3000000116697,-0.05492814780459466 +213261,1066.3050000116698,-0.05492809111117367 +213262,1066.31000001167,-0.05492803441549613 +213263,1066.31500001167,-0.05492797771756196 +213264,1066.3200000116701,-0.054927921017371074 +213265,1066.3250000116702,-0.0549278643149234 +213266,1066.3300000116703,-0.05492780761021885 +213267,1066.3350000116704,-0.05492775090325736 +213268,1066.3400000116706,-0.054927694194038854 +213269,1066.3450000116707,-0.05492763748256323 +213270,1066.3500000116708,-0.05492758076883043 +213271,1066.3550000116709,-0.05492752405284037 +213272,1066.360000011671,-0.05492746733459298 +213273,1066.365000011671,-0.05492741061408816 +213274,1066.3700000116712,-0.054927353891325865 +213275,1066.3750000116713,-0.05492729716630599 +213276,1066.3800000116714,-0.05492724043902847 +213277,1066.3850000116715,-0.054927183709493226 +213278,1066.3900000116716,-0.05492712697770017 +213279,1066.3950000116718,-0.05492707024364923 +213280,1066.4000000116719,-0.05492701350734032 +213281,1066.405000011672,-0.054926956768773384 +213282,1066.410000011672,-0.054926900027948325 +213283,1066.4150000116722,-0.05492684328486507 +213284,1066.4200000116723,-0.05492678653952355 +213285,1066.4250000116724,-0.054926729791923666 +213286,1066.4300000116725,-0.054926673042065347 +213287,1066.4350000116726,-0.05492661628994853 +213288,1066.4400000116727,-0.05492655953557312 +213289,1066.4450000116728,-0.05492650277893904 +213290,1066.450000011673,-0.05492644602004622 +213291,1066.455000011673,-0.05492638925889457 +213292,1066.4600000116732,-0.05492633249548404 +213293,1066.4650000116733,-0.054926275729814504 +213294,1066.4700000116734,-0.054926218961885924 +213295,1066.4750000116735,-0.0549261621916982 +213296,1066.4800000116736,-0.05492610541925126 +213297,1066.4850000116737,-0.05492604864454502 +213298,1066.4900000116738,-0.05492599186757941 +213299,1066.495000011674,-0.054925935088354354 +213300,1066.500000011674,-0.05492587830686976 +213301,1066.5050000116742,-0.05492582152312556 +213302,1066.5100000116743,-0.054925764737121685 +213303,1066.5150000116744,-0.05492570794885803 +213304,1066.5200000116745,-0.05492565115833453 +213305,1066.5250000116746,-0.054925594365551104 +213306,1066.5300000116747,-0.054925537570507686 +213307,1066.5350000116748,-0.05492548077320419 +213308,1066.540000011675,-0.05492542397364052 +213309,1066.545000011675,-0.05492536717181662 +213310,1066.5500000116751,-0.0549253103677324 +213311,1066.5550000116752,-0.05492525356138778 +213312,1066.5600000116754,-0.054925196752782686 +213313,1066.5650000116755,-0.05492513994191704 +213314,1066.5700000116756,-0.05492508312879076 +213315,1066.5750000116757,-0.05492502631340376 +213316,1066.5800000116758,-0.054924969495755975 +213317,1066.585000011676,-0.05492491267584731 +213318,1066.590000011676,-0.0549248558536777 +213319,1066.5950000116761,-0.05492479902924707 +213320,1066.6000000116762,-0.054924742202555325 +213321,1066.6050000116763,-0.054924685373602386 +213322,1066.6100000116764,-0.05492462854238819 +213323,1066.6150000116766,-0.05492457170891265 +213324,1066.6200000116767,-0.054924514873175685 +213325,1066.6250000116768,-0.05492445803517721 +213326,1066.6300000116769,-0.054924401194917156 +213327,1066.635000011677,-0.05492434435239544 +213328,1066.640000011677,-0.05492428750761198 +213329,1066.6450000116772,-0.05492423066056671 +213330,1066.6500000116773,-0.05492417381125954 +213331,1066.6550000116774,-0.054924116959690385 +213332,1066.6600000116775,-0.05492406010585917 +213333,1066.6650000116776,-0.05492400324976582 +213334,1066.6700000116778,-0.05492394639141025 +213335,1066.6750000116779,-0.05492388953079239 +213336,1066.680000011678,-0.054923832667912155 +213337,1066.685000011678,-0.054923775802769456 +213338,1066.6900000116782,-0.05492371893536422 +213339,1066.6950000116783,-0.05492366206569638 +213340,1066.7000000116784,-0.05492360519376584 +213341,1066.7050000116785,-0.05492354831957252 +213342,1066.7100000116786,-0.05492349144311635 +213343,1066.7150000116787,-0.05492343456439726 +213344,1066.7200000116788,-0.05492337768341514 +213345,1066.725000011679,-0.054923320800169935 +213346,1066.730000011679,-0.05492326391466156 +213347,1066.7350000116792,-0.05492320702688994 +213348,1066.7400000116793,-0.05492315013685499 +213349,1066.7450000116794,-0.054923093244556624 +213350,1066.7500000116795,-0.05492303634999478 +213351,1066.7550000116796,-0.054922979453169346 +213352,1066.7600000116797,-0.054922922554080274 +213353,1066.7650000116798,-0.05492286565272747 +213354,1066.77000001168,-0.05492280874911086 +213355,1066.77500001168,-0.054922751843230345 +213356,1066.7800000116802,-0.05492269493508587 +213357,1066.7850000116803,-0.05492263802467735 +213358,1066.7900000116804,-0.05492258111200471 +213359,1066.7950000116805,-0.05492252419706785 +213360,1066.8000000116806,-0.054922467279866695 +213361,1066.8050000116807,-0.05492241036040117 +213362,1066.8100000116808,-0.05492235343867121 +213363,1066.815000011681,-0.05492229651467672 +213364,1066.820000011681,-0.05492223958841761 +213365,1066.8250000116811,-0.05492218265989382 +213366,1066.8300000116812,-0.054922125729105264 +213367,1066.8350000116814,-0.05492206879605185 +213368,1066.8400000116815,-0.054922011860733505 +213369,1066.8450000116816,-0.054921954923150156 +213370,1066.8500000116817,-0.05492189798330171 +213371,1066.8550000116818,-0.05492184104118809 +213372,1066.860000011682,-0.05492178409680922 +213373,1066.865000011682,-0.05492172715016503 +213374,1066.8700000116821,-0.05492167020125543 +213375,1066.8750000116822,-0.054921613250080326 +213376,1066.8800000116823,-0.05492155629663967 +213377,1066.8850000116825,-0.05492149934093335 +213378,1066.8900000116826,-0.0549214423829613 +213379,1066.8950000116827,-0.05492138542272345 +213380,1066.9000000116828,-0.0549213284602197 +213381,1066.905000011683,-0.05492127149544997 +213382,1066.910000011683,-0.05492121452841418 +213383,1066.915000011683,-0.054921157559112276 +213384,1066.9200000116832,-0.054921100587544146 +213385,1066.9250000116833,-0.05492104361370972 +213386,1066.9300000116834,-0.05492098663760892 +213387,1066.9350000116835,-0.05492092965924167 +213388,1066.9400000116837,-0.05492087267860787 +213389,1066.9450000116838,-0.05492081569570746 +213390,1066.9500000116839,-0.054920758710540356 +213391,1066.955000011684,-0.05492070172310646 +213392,1066.960000011684,-0.05492064473340571 +213393,1066.9650000116842,-0.05492058774143803 +213394,1066.9700000116843,-0.054920530747203315 +213395,1066.9750000116844,-0.054920473750701505 +213396,1066.9800000116845,-0.05492041675193252 +213397,1066.9850000116846,-0.05492035975089627 +213398,1066.9900000116847,-0.05492030274759267 +213399,1066.9950000116849,-0.05492024574202165 +213400,1067.000000011685,-0.05492018873418313 +213401,1067.005000011685,-0.05492013172407701 +213402,1067.0100000116852,-0.05492007471170322 +213403,1067.0150000116853,-0.054920017697061695 +213404,1067.0200000116854,-0.05491996068015234 +213405,1067.0250000116855,-0.05491990366097508 +213406,1067.0300000116856,-0.054919846639529826 +213407,1067.0350000116857,-0.054919789615816485 +213408,1067.0400000116858,-0.05491973258983499 +213409,1067.045000011686,-0.05491967556158528 +213410,1067.050000011686,-0.05491961853106724 +213411,1067.0550000116862,-0.05491956149828082 +213412,1067.0600000116863,-0.05491950446322591 +213413,1067.0650000116864,-0.05491944742590245 +213414,1067.0700000116865,-0.05491939038631034 +213415,1067.0750000116866,-0.05491933334444951 +213416,1067.0800000116867,-0.05491927630031988 +213417,1067.0850000116868,-0.05491921925392137 +213418,1067.090000011687,-0.0549191622052539 +213419,1067.095000011687,-0.05491910515431738 +213420,1067.1000000116871,-0.05491904810111173 +213421,1067.1050000116873,-0.05491899104563688 +213422,1067.1100000116874,-0.05491893398789273 +213423,1067.1150000116875,-0.05491887692787921 +213424,1067.1200000116876,-0.054918819865596234 +213425,1067.1250000116877,-0.05491876280104373 +213426,1067.1300000116878,-0.054918705734221605 +213427,1067.135000011688,-0.05491864866512979 +213428,1067.140000011688,-0.0549185915937682 +213429,1067.1450000116881,-0.054918534520136744 +213430,1067.1500000116882,-0.05491847744423535 +213431,1067.1550000116883,-0.054918420366063925 +213432,1067.1600000116885,-0.054918363285622405 +213433,1067.1650000116886,-0.0549183062029107 +213434,1067.1700000116887,-0.054918249117928725 +213435,1067.1750000116888,-0.0549181920306764 +213436,1067.180000011689,-0.05491813494115364 +213437,1067.185000011689,-0.054918077849360376 +213438,1067.190000011689,-0.05491802075529651 +213439,1067.1950000116892,-0.05491796365896197 +213440,1067.2000000116893,-0.05491790656035667 +213441,1067.2050000116894,-0.054917849459480535 +213442,1067.2100000116895,-0.05491779235633348 +213443,1067.2150000116897,-0.054917735250915416 +213444,1067.2200000116898,-0.05491767814322627 +213445,1067.2250000116899,-0.05491762103326596 +213446,1067.23000001169,-0.054917563921034404 +213447,1067.23500001169,-0.054917506806531506 +213448,1067.2400000116902,-0.054917449689757196 +213449,1067.2450000116903,-0.05491739257071138 +213450,1067.2500000116904,-0.054917335449394006 +213451,1067.2550000116905,-0.05491727832580497 +213452,1067.2600000116906,-0.054917221199944195 +213453,1067.2650000116907,-0.054917164071811596 +213454,1067.2700000116909,-0.0549171069414071 +213455,1067.275000011691,-0.05491704980873061 +213456,1067.280000011691,-0.05491699267378205 +213457,1067.2850000116912,-0.054916935536561344 +213458,1067.2900000116913,-0.05491687839706839 +213459,1067.2950000116914,-0.05491682125530314 +213460,1067.3000000116915,-0.05491676411126548 +213461,1067.3050000116916,-0.05491670696495534 +213462,1067.3100000116917,-0.05491664981637264 +213463,1067.3150000116918,-0.0549165926655173 +213464,1067.320000011692,-0.05491653551238923 +213465,1067.325000011692,-0.05491647835698835 +213466,1067.3300000116922,-0.054916421199314586 +213467,1067.3350000116923,-0.05491636403936784 +213468,1067.3400000116924,-0.05491630687714803 +213469,1067.3450000116925,-0.05491624971265509 +213470,1067.3500000116926,-0.054916192545888934 +213471,1067.3550000116927,-0.054916135376849466 +213472,1067.3600000116928,-0.05491607820553662 +213473,1067.365000011693,-0.054916021031950306 +213474,1067.370000011693,-0.05491596385609045 +213475,1067.3750000116931,-0.05491590667795694 +213476,1067.3800000116933,-0.05491584949754973 +213477,1067.3850000116934,-0.05491579231486871 +213478,1067.3900000116935,-0.054915735129913816 +213479,1067.3950000116936,-0.054915677942684954 +213480,1067.4000000116937,-0.05491562075318206 +213481,1067.4050000116938,-0.05491556356140503 +213482,1067.410000011694,-0.054915506367353775 +213483,1067.415000011694,-0.05491544917102823 +213484,1067.4200000116941,-0.05491539197242831 +213485,1067.4250000116942,-0.05491533477155393 +213486,1067.4300000116943,-0.054915277568405016 +213487,1067.4350000116945,-0.05491522036298147 +213488,1067.4400000116946,-0.05491516315528323 +213489,1067.4450000116947,-0.054915105945310176 +213490,1067.4500000116948,-0.05491504873306225 +213491,1067.455000011695,-0.05491499151853937 +213492,1067.460000011695,-0.05491493430174146 +213493,1067.465000011695,-0.054914877082668415 +213494,1067.4700000116952,-0.05491481986132017 +213495,1067.4750000116953,-0.054914762637696644 +213496,1067.4800000116954,-0.05491470541179773 +213497,1067.4850000116955,-0.05491464818362337 +213498,1067.4900000116957,-0.05491459095317348 +213499,1067.4950000116958,-0.05491453372044795 +213500,1067.5000000116959,-0.05491447648544673 +213501,1067.505000011696,-0.054914419248169706 +213502,1067.510000011696,-0.054914362008616824 +213503,1067.5150000116962,-0.05491430476678798 +213504,1067.5200000116963,-0.0549142475226831 +213505,1067.5250000116964,-0.05491419027630211 +213506,1067.5300000116965,-0.05491413302764491 +213507,1067.5350000116966,-0.05491407577671143 +213508,1067.5400000116967,-0.05491401852350157 +213509,1067.5450000116969,-0.05491396126801526 +213510,1067.550000011697,-0.05491390401025241 +213511,1067.555000011697,-0.05491384675021294 +213512,1067.5600000116972,-0.05491378948789676 +213513,1067.5650000116973,-0.05491373222330381 +213514,1067.5700000116974,-0.05491367495643398 +213515,1067.5750000116975,-0.054913617687287204 +213516,1067.5800000116976,-0.054913560415863386 +213517,1067.5850000116977,-0.054913503142162444 +213518,1067.5900000116978,-0.0549134458661843 +213519,1067.595000011698,-0.05491338858792888 +213520,1067.600000011698,-0.05491333130739608 +213521,1067.6050000116982,-0.05491327402458582 +213522,1067.6100000116983,-0.054913216739498026 +213523,1067.6150000116984,-0.054913159452132605 +213524,1067.6200000116985,-0.05491310216248948 +213525,1067.6250000116986,-0.05491304487056857 +213526,1067.6300000116987,-0.05491298757636979 +213527,1067.6350000116988,-0.05491293027989303 +213528,1067.640000011699,-0.05491287298113825 +213529,1067.645000011699,-0.054912815680105344 +213530,1067.6500000116991,-0.05491275837679422 +213531,1067.6550000116993,-0.05491270107120481 +213532,1067.6600000116994,-0.054912643763337016 +213533,1067.6650000116995,-0.05491258645319077 +213534,1067.6700000116996,-0.05491252914076597 +213535,1067.6750000116997,-0.05491247182606254 +213536,1067.6800000116998,-0.05491241450908041 +213537,1067.6850000117,-0.054912357189819475 +213538,1067.6900000117,-0.05491229986827966 +213539,1067.6950000117001,-0.05491224254446089 +213540,1067.7000000117002,-0.05491218521836308 +213541,1067.7050000117003,-0.054912127889986125 +213542,1067.7100000117005,-0.05491207055932995 +213543,1067.7150000117006,-0.05491201322639448 +213544,1067.7200000117007,-0.05491195589117963 +213545,1067.7250000117008,-0.05491189855368531 +213546,1067.730000011701,-0.05491184121391143 +213547,1067.735000011701,-0.054911783871857925 +213548,1067.740000011701,-0.05491172652752469 +213549,1067.7450000117012,-0.05491166918091166 +213550,1067.7500000117013,-0.05491161183201874 +213551,1067.7550000117014,-0.05491155448084584 +213552,1067.7600000117015,-0.05491149712739288 +213553,1067.7650000117017,-0.05491143977165977 +213554,1067.7700000117018,-0.05491138241364644 +213555,1067.7750000117019,-0.0549113250533528 +213556,1067.780000011702,-0.05491126769077876 +213557,1067.785000011702,-0.05491121032592425 +213558,1067.7900000117022,-0.054911152958789164 +213559,1067.7950000117023,-0.05491109558937343 +213560,1067.8000000117024,-0.05491103821767696 +213561,1067.8050000117025,-0.05491098084369968 +213562,1067.8100000117026,-0.054910923467441496 +213563,1067.8150000117028,-0.054910866088902326 +213564,1067.8200000117029,-0.05491080870808207 +213565,1067.825000011703,-0.05491075132498067 +213566,1067.830000011703,-0.05491069393959802 +213567,1067.8350000117032,-0.054910636551934046 +213568,1067.8400000117033,-0.05491057916198867 +213569,1067.8450000117034,-0.054910521769761786 +213570,1067.8500000117035,-0.05491046437525333 +213571,1067.8550000117036,-0.0549104069784632 +213572,1067.8600000117037,-0.05491034957939134 +213573,1067.8650000117038,-0.05491029217803764 +213574,1067.870000011704,-0.05491023477440202 +213575,1067.875000011704,-0.054910177368484386 +213576,1067.8800000117042,-0.054910119960284665 +213577,1067.8850000117043,-0.054910062549802775 +213578,1067.8900000117044,-0.05491000513703863 +213579,1067.8950000117045,-0.054909947721992126 +213580,1067.9000000117046,-0.05490989030466321 +213581,1067.9050000117047,-0.054909832885051774 +213582,1067.9100000117048,-0.05490977546315773 +213583,1067.915000011705,-0.054909718038981016 +213584,1067.920000011705,-0.05490966061252152 +213585,1067.9250000117052,-0.05490960318377918 +213586,1067.9300000117053,-0.0549095457527539 +213587,1067.9350000117054,-0.0549094883194456 +213588,1067.9400000117055,-0.054909430883854186 +213589,1067.9450000117056,-0.05490937344597957 +213590,1067.9500000117057,-0.05490931600582168 +213591,1067.9550000117058,-0.05490925856338042 +213592,1067.960000011706,-0.054909201118655715 +213593,1067.965000011706,-0.054909143671647474 +213594,1067.9700000117061,-0.054909086222355616 +213595,1067.9750000117062,-0.05490902877078004 +213596,1067.9800000117064,-0.054908971316920685 +213597,1067.9850000117065,-0.054908913860777446 +213598,1067.9900000117066,-0.05490885640235024 +213599,1067.9950000117067,-0.05490879894163899 +213600,1068.0000000117068,-0.05490874147864361 +213601,1068.005000011707,-0.05490868401336401 +213602,1068.010000011707,-0.0549086265458001 +213603,1068.0150000117071,-0.054908569075951805 +213604,1068.0200000117072,-0.05490851160381904 +213605,1068.0250000117073,-0.05490845412940171 +213606,1068.0300000117074,-0.054908396652699726 +213607,1068.0350000117076,-0.05490833917371302 +213608,1068.0400000117077,-0.05490828169244149 +213609,1068.0450000117078,-0.05490822420888506 +213610,1068.0500000117079,-0.05490816672304363 +213611,1068.055000011708,-0.05490810923491714 +213612,1068.060000011708,-0.054908051744505484 +213613,1068.0650000117082,-0.05490799425180859 +213614,1068.0700000117083,-0.05490793675682636 +213615,1068.0750000117084,-0.054907879259558715 +213616,1068.0800000117085,-0.05490782176000556 +213617,1068.0850000117086,-0.054907764258166805 +213618,1068.0900000117088,-0.05490770675404238 +213619,1068.0950000117089,-0.054907649247632195 +213620,1068.100000011709,-0.05490759173893616 +213621,1068.105000011709,-0.054907534227954205 +213622,1068.1100000117092,-0.054907476714686224 +213623,1068.1150000117093,-0.05490741919913213 +213624,1068.1200000117094,-0.05490736168129186 +213625,1068.1250000117095,-0.0549073041611653 +213626,1068.1300000117096,-0.054907246638752384 +213627,1068.1350000117097,-0.05490718911405301 +213628,1068.1400000117098,-0.054907131587067115 +213629,1068.14500001171,-0.05490707405779459 +213630,1068.15000001171,-0.05490701652623536 +213631,1068.1550000117102,-0.05490695899238932 +213632,1068.1600000117103,-0.05490690145625641 +213633,1068.1650000117104,-0.05490684391783654 +213634,1068.1700000117105,-0.054906786377129604 +213635,1068.1750000117106,-0.05490672883413553 +213636,1068.1800000117107,-0.05490667128885424 +213637,1068.1850000117108,-0.05490661374128564 +213638,1068.190000011711,-0.054906556191429645 +213639,1068.195000011711,-0.05490649863928616 +213640,1068.2000000117112,-0.0549064410848551 +213641,1068.2050000117113,-0.05490638352813639 +213642,1068.2100000117114,-0.05490632596912993 +213643,1068.2150000117115,-0.05490626840783564 +213644,1068.2200000117116,-0.054906210844253435 +213645,1068.2250000117117,-0.05490615327838323 +213646,1068.2300000117118,-0.054906095710224936 +213647,1068.235000011712,-0.054906038139778464 +213648,1068.240000011712,-0.05490598056704373 +213649,1068.2450000117121,-0.054905922992020635 +213650,1068.2500000117122,-0.05490586541470911 +213651,1068.2550000117124,-0.05490580783510907 +213652,1068.2600000117125,-0.05490575025322042 +213653,1068.2650000117126,-0.05490569266904306 +213654,1068.2700000117127,-0.05490563508257694 +213655,1068.2750000117128,-0.05490557749382194 +213656,1068.280000011713,-0.054905519902777984 +213657,1068.285000011713,-0.05490546230944497 +213658,1068.2900000117131,-0.05490540471382283 +213659,1068.2950000117132,-0.05490534711591148 +213660,1068.3000000117133,-0.05490528951571084 +213661,1068.3050000117134,-0.05490523191322079 +213662,1068.3100000117136,-0.05490517430844126 +213663,1068.3150000117137,-0.05490511670137218 +213664,1068.3200000117138,-0.054905059092013445 +213665,1068.3250000117139,-0.05490500148036497 +213666,1068.330000011714,-0.054904943866426664 +213667,1068.335000011714,-0.054904886250198445 +213668,1068.3400000117142,-0.05490482863168023 +213669,1068.3450000117143,-0.054904771010871926 +213670,1068.3500000117144,-0.05490471338777345 +213671,1068.3550000117145,-0.05490465576238472 +213672,1068.3600000117146,-0.05490459813470564 +213673,1068.3650000117148,-0.05490454050473612 +213674,1068.3700000117149,-0.05490448287247607 +213675,1068.375000011715,-0.05490442523792541 +213676,1068.380000011715,-0.05490436760108406 +213677,1068.3850000117152,-0.054904309961951926 +213678,1068.3900000117153,-0.05490425232052891 +213679,1068.3950000117154,-0.05490419467681494 +213680,1068.4000000117155,-0.05490413703080992 +213681,1068.4050000117156,-0.05490407938251377 +213682,1068.4100000117157,-0.054904021731926406 +213683,1068.4150000117158,-0.054903964079047726 +213684,1068.420000011716,-0.05490390642387766 +213685,1068.425000011716,-0.0549038487664161 +213686,1068.4300000117162,-0.05490379110666298 +213687,1068.4350000117163,-0.0549037334446182 +213688,1068.4400000117164,-0.05490367578028166 +213689,1068.4450000117165,-0.054903618113653296 +213690,1068.4500000117166,-0.054903560444733004 +213691,1068.4550000117167,-0.0549035027735207 +213692,1068.4600000117168,-0.0549034451000163 +213693,1068.465000011717,-0.05490338742421972 +213694,1068.470000011717,-0.054903329746130866 +213695,1068.4750000117172,-0.054903272065749666 +213696,1068.4800000117173,-0.05490321438307601 +213697,1068.4850000117174,-0.054903156698109815 +213698,1068.4900000117175,-0.054903099010851 +213699,1068.4950000117176,-0.05490304132129947 +213700,1068.5000000117177,-0.054902983629455136 +213701,1068.5050000117178,-0.054902925935317926 +213702,1068.510000011718,-0.054902868238887736 +213703,1068.515000011718,-0.05490281054016448 +213704,1068.5200000117181,-0.054902752839148077 +213705,1068.5250000117182,-0.054902695135838446 +213706,1068.5300000117184,-0.054902637430235476 +213707,1068.5350000117185,-0.0549025797223391 +213708,1068.5400000117186,-0.05490252201214922 +213709,1068.5450000117187,-0.05490246429966574 +213710,1068.5500000117188,-0.05490240658488858 +213711,1068.555000011719,-0.05490234886781767 +213712,1068.560000011719,-0.05490229114845289 +213713,1068.5650000117191,-0.05490223342679417 +213714,1068.5700000117192,-0.05490217570284142 +213715,1068.5750000117193,-0.054902117976594556 +213716,1068.5800000117194,-0.054902060248053476 +213717,1068.5850000117196,-0.05490200251721811 +213718,1068.5900000117197,-0.05490194478408836 +213719,1068.5950000117198,-0.054901887048664125 +213720,1068.6000000117199,-0.05490182931094533 +213721,1068.60500001172,-0.05490177157093189 +213722,1068.61000001172,-0.054901713828623716 +213723,1068.6150000117202,-0.054901656084020714 +213724,1068.6200000117203,-0.05490159833712279 +213725,1068.6250000117204,-0.05490154058792988 +213726,1068.6300000117205,-0.05490148283644186 +213727,1068.6350000117206,-0.05490142508265866 +213728,1068.6400000117208,-0.0549013673265802 +213729,1068.6450000117209,-0.05490130956820639 +213730,1068.650000011721,-0.054901251807537126 +213731,1068.655000011721,-0.054901194044572325 +213732,1068.6600000117212,-0.0549011362793119 +213733,1068.6650000117213,-0.05490107851175577 +213734,1068.6700000117214,-0.05490102074190384 +213735,1068.6750000117215,-0.05490096296975601 +213736,1068.6800000117216,-0.054900905195312204 +213737,1068.6850000117217,-0.05490084741857234 +213738,1068.6900000117218,-0.05490078963953633 +213739,1068.695000011722,-0.05490073185820407 +213740,1068.700000011722,-0.05490067407457548 +213741,1068.7050000117222,-0.05490061628865046 +213742,1068.7100000117223,-0.05490055850042893 +213743,1068.7150000117224,-0.0549005007099108 +213744,1068.7200000117225,-0.05490044291709599 +213745,1068.7250000117226,-0.0549003851219844 +213746,1068.7300000117227,-0.05490032732457594 +213747,1068.7350000117228,-0.054900269524870524 +213748,1068.740000011723,-0.05490021172286807 +213749,1068.745000011723,-0.05490015391856848 +213750,1068.7500000117232,-0.054900096111971664 +213751,1068.7550000117233,-0.05490003830307754 +213752,1068.7600000117234,-0.05489998049188601 +213753,1068.7650000117235,-0.05489992267839699 +213754,1068.7700000117236,-0.0548998648626104 +213755,1068.7750000117237,-0.05489980704452614 +213756,1068.7800000117238,-0.05489974922414412 +213757,1068.785000011724,-0.05489969140146425 +213758,1068.790000011724,-0.05489963357648645 +213759,1068.7950000117241,-0.05489957574921063 +213760,1068.8000000117243,-0.05489951791963668 +213761,1068.8050000117244,-0.05489946008776454 +213762,1068.8100000117245,-0.05489940225359409 +213763,1068.8150000117246,-0.05489934441712527 +213764,1068.8200000117247,-0.05489928657835797 +213765,1068.8250000117248,-0.05489922873729212 +213766,1068.830000011725,-0.05489917089392762 +213767,1068.835000011725,-0.05489911304826437 +213768,1068.8400000117251,-0.054899055200302284 +213769,1068.8450000117252,-0.054898997350041286 +213770,1068.8500000117253,-0.05489893949748128 +213771,1068.8550000117255,-0.054898881642622174 +213772,1068.8600000117256,-0.054898823785463874 +213773,1068.8650000117257,-0.05489876592600631 +213774,1068.8700000117258,-0.05489870806424936 +213775,1068.875000011726,-0.054898650200192974 +213776,1068.880000011726,-0.05489859233383703 +213777,1068.885000011726,-0.054898534465181455 +213778,1068.8900000117262,-0.054898476594226156 +213779,1068.8950000117263,-0.05489841872097104 +213780,1068.9000000117264,-0.05489836084541601 +213781,1068.9050000117265,-0.05489830296756098 +213782,1068.9100000117267,-0.05489824508740587 +213783,1068.9150000117268,-0.05489818720495059 +213784,1068.9200000117269,-0.05489812932019504 +213785,1068.925000011727,-0.054898071433139135 +213786,1068.930000011727,-0.0548980135437828 +213787,1068.9350000117272,-0.054897955652125914 +213788,1068.9400000117273,-0.05489789775816841 +213789,1068.9450000117274,-0.054897839861910186 +213790,1068.9500000117275,-0.05489778196335115 +213791,1068.9550000117276,-0.05489772406249122 +213792,1068.9600000117277,-0.05489766615933032 +213793,1068.9650000117279,-0.05489760825386833 +213794,1068.970000011728,-0.054897550346105176 +213795,1068.975000011728,-0.054897492436040765 +213796,1068.9800000117282,-0.054897434523675 +213797,1068.9850000117283,-0.05489737660900781 +213798,1068.9900000117284,-0.05489731869203909 +213799,1068.9950000117285,-0.05489726077276876 +213800,1069.0000000117286,-0.05489720285119671 +213801,1069.0050000117287,-0.05489714492732287 +213802,1069.0100000117288,-0.05489708700114714 +213803,1069.015000011729,-0.05489702907266944 +213804,1069.020000011729,-0.05489697114188967 +213805,1069.0250000117292,-0.054896913208807734 +213806,1069.0300000117293,-0.05489685527342354 +213807,1069.0350000117294,-0.05489679733573702 +213808,1069.0400000117295,-0.05489673939574806 +213809,1069.0450000117296,-0.05489668145345658 +213810,1069.0500000117297,-0.05489662350886249 +213811,1069.0550000117298,-0.054896565561965704 +213812,1069.06000001173,-0.05489650761276611 +213813,1069.06500001173,-0.05489644966126365 +213814,1069.0700000117301,-0.054896391707458206 +213815,1069.0750000117303,-0.0548963337513497 +213816,1069.0800000117304,-0.05489627579293804 +213817,1069.0850000117305,-0.05489621783222313 +213818,1069.0900000117306,-0.05489615986920488 +213819,1069.0950000117307,-0.05489610190388321 +213820,1069.1000000117308,-0.054896043936258014 +213821,1069.105000011731,-0.054895985966329205 +213822,1069.110000011731,-0.0548959279940967 +213823,1069.1150000117311,-0.054895870019560394 +213824,1069.1200000117312,-0.05489581204272021 +213825,1069.1250000117313,-0.05489575406357605 +213826,1069.1300000117315,-0.054895696082127826 +213827,1069.1350000117316,-0.05489563809837546 +213828,1069.1400000117317,-0.05489558011231884 +213829,1069.1450000117318,-0.05489552212395789 +213830,1069.150000011732,-0.05489546413329251 +213831,1069.155000011732,-0.05489540614032261 +213832,1069.160000011732,-0.05489534814504809 +213833,1069.1650000117322,-0.05489529014746887 +213834,1069.1700000117323,-0.05489523214758486 +213835,1069.1750000117324,-0.05489517414539597 +213836,1069.1800000117325,-0.0548951161409021 +213837,1069.1850000117327,-0.05489505813410317 +213838,1069.1900000117328,-0.05489500012499907 +213839,1069.1950000117329,-0.05489494211358974 +213840,1069.200000011733,-0.05489488409987506 +213841,1069.205000011733,-0.05489482608385494 +213842,1069.2100000117332,-0.05489476806552931 +213843,1069.2150000117333,-0.05489471004489805 +213844,1069.2200000117334,-0.054894652021961095 +213845,1069.2250000117335,-0.054894593996718345 +213846,1069.2300000117336,-0.0548945359691697 +213847,1069.2350000117337,-0.05489447793931507 +213848,1069.2400000117339,-0.05489441990715437 +213849,1069.245000011734,-0.054894361872687515 +213850,1069.250000011734,-0.0548943038359144 +213851,1069.2550000117342,-0.05489424579683494 +213852,1069.2600000117343,-0.05489418775544904 +213853,1069.2650000117344,-0.054894129711756605 +213854,1069.2700000117345,-0.05489407166575755 +213855,1069.2750000117346,-0.05489401361745179 +213856,1069.2800000117347,-0.05489395556683922 +213857,1069.2850000117348,-0.05489389751391976 +213858,1069.290000011735,-0.054893839458693305 +213859,1069.295000011735,-0.054893781401159775 +213860,1069.3000000117352,-0.054893723341319076 +213861,1069.3050000117353,-0.054893665279171104 +213862,1069.3100000117354,-0.054893607214715784 +213863,1069.3150000117355,-0.05489354914795301 +213864,1069.3200000117356,-0.05489349107888271 +213865,1069.3250000117357,-0.05489343300750475 +213866,1069.3300000117358,-0.05489337493381909 +213867,1069.335000011736,-0.054893316857825614 +213868,1069.340000011736,-0.054893258779524216 +213869,1069.3450000117361,-0.054893200698914825 +213870,1069.3500000117363,-0.05489314261599735 +213871,1069.3550000117364,-0.05489308453077169 +213872,1069.3600000117365,-0.05489302644323774 +213873,1069.3650000117366,-0.05489296835339543 +213874,1069.3700000117367,-0.05489291026124467 +213875,1069.3750000117368,-0.05489285216678535 +213876,1069.380000011737,-0.05489279407001739 +213877,1069.385000011737,-0.054892735970940694 +213878,1069.3900000117371,-0.05489267786955516 +213879,1069.3950000117372,-0.054892619765860705 +213880,1069.4000000117373,-0.05489256165985724 +213881,1069.4050000117375,-0.054892503551544666 +213882,1069.4100000117376,-0.0548924454409229 +213883,1069.4150000117377,-0.05489238732799184 +213884,1069.4200000117378,-0.05489232921275139 +213885,1069.425000011738,-0.05489227109520148 +213886,1069.430000011738,-0.05489221297534199 +213887,1069.435000011738,-0.05489215485317284 +213888,1069.4400000117382,-0.05489209672869395 +213889,1069.4450000117383,-0.0548920386019052 +213890,1069.4500000117384,-0.05489198047280651 +213891,1069.4550000117385,-0.05489192234139779 +213892,1069.4600000117387,-0.05489186420767895 +213893,1069.4650000117388,-0.054891806071649896 +213894,1069.4700000117389,-0.05489174793331053 +213895,1069.475000011739,-0.05489168979266076 +213896,1069.480000011739,-0.0548916316497005 +213897,1069.4850000117392,-0.05489157350442964 +213898,1069.4900000117393,-0.054891515356848115 +213899,1069.4950000117394,-0.05489145720695582 +213900,1069.5000000117395,-0.054891399054752654 +213901,1069.5050000117396,-0.05489134090023853 +213902,1069.5100000117397,-0.05489128274341336 +213903,1069.5150000117399,-0.05489122458427704 +213904,1069.52000001174,-0.054891166422829485 +213905,1069.52500001174,-0.05489110825907059 +213906,1069.5300000117402,-0.05489105009300028 +213907,1069.5350000117403,-0.05489099192461845 +213908,1069.5400000117404,-0.054890933753925016 +213909,1069.5450000117405,-0.054890875580919866 +213910,1069.5500000117406,-0.054890817405602935 +213911,1069.5550000117407,-0.0548907592279741 +213912,1069.5600000117408,-0.05489070104803329 +213913,1069.565000011741,-0.05489064286578041 +213914,1069.570000011741,-0.05489058468121536 +213915,1069.5750000117412,-0.05489052649433805 +213916,1069.5800000117413,-0.05489046830514839 +213917,1069.5850000117414,-0.05489041011364628 +213918,1069.5900000117415,-0.05489035191983163 +213919,1069.5950000117416,-0.054890293723704346 +213920,1069.6000000117417,-0.054890235525264335 +213921,1069.6050000117418,-0.0548901773245115 +213922,1069.610000011742,-0.05489011912144575 +213923,1069.615000011742,-0.054890060916066984 +213924,1069.6200000117421,-0.05489000270837512 +213925,1069.6250000117423,-0.05488994449837007 +213926,1069.6300000117424,-0.05488988628605172 +213927,1069.6350000117425,-0.05488982807142 +213928,1069.6400000117426,-0.054889769854474794 +213929,1069.6450000117427,-0.05488971163521602 +213930,1069.6500000117428,-0.05488965341364359 +213931,1069.655000011743,-0.054889595189757404 +213932,1069.660000011743,-0.05488953696355736 +213933,1069.6650000117431,-0.054889478735043386 +213934,1069.6700000117432,-0.054889420504215365 +213935,1069.6750000117434,-0.05488936227107321 +213936,1069.6800000117435,-0.054889304035616836 +213937,1069.6850000117436,-0.05488924579784613 +213938,1069.6900000117437,-0.054889187557761024 +213939,1069.6950000117438,-0.054889129315361405 +213940,1069.700000011744,-0.054889071070647194 +213941,1069.705000011744,-0.05488901282361827 +213942,1069.7100000117441,-0.054888954574274576 +213943,1069.7150000117442,-0.054888896322615996 +213944,1069.7200000117443,-0.05488883806864243 +213945,1069.7250000117444,-0.05488877981235381 +213946,1069.7300000117446,-0.05488872155375002 +213947,1069.7350000117447,-0.05488866329283097 +213948,1069.7400000117448,-0.05488860502959656 +213949,1069.7450000117449,-0.05488854676404671 +213950,1069.750000011745,-0.054888488496181324 +213951,1069.755000011745,-0.0548884302260003 +213952,1069.7600000117452,-0.05488837195350355 +213953,1069.7650000117453,-0.05488831367869098 +213954,1069.7700000117454,-0.05488825540156249 +213955,1069.7750000117455,-0.05488819712211799 +213956,1069.7800000117456,-0.05488813884035737 +213957,1069.7850000117458,-0.054888080556280555 +213958,1069.7900000117459,-0.05488802226988746 +213959,1069.795000011746,-0.05488796398117796 +213960,1069.800000011746,-0.054887905690151985 +213961,1069.8050000117462,-0.054887847396809436 +213962,1069.8100000117463,-0.054887789101150206 +213963,1069.8150000117464,-0.05488773080317421 +213964,1069.8200000117465,-0.05488767250288136 +213965,1069.8250000117466,-0.05488761420027156 +213966,1069.8300000117467,-0.054887555895344706 +213967,1069.8350000117468,-0.0548874975881007 +213968,1069.840000011747,-0.05488743927853946 +213969,1069.845000011747,-0.05488738096666088 +213970,1069.8500000117472,-0.054887322652464876 +213971,1069.8550000117473,-0.05488726433595134 +213972,1069.8600000117474,-0.054887206017120195 +213973,1069.8650000117475,-0.05488714769597134 +213974,1069.8700000117476,-0.05488708937250468 +213975,1069.8750000117477,-0.05488703104672011 +213976,1069.8800000117478,-0.05488697271861755 +213977,1069.885000011748,-0.054886914388196886 +213978,1069.890000011748,-0.05488685605545804 +213979,1069.8950000117482,-0.05488679772040092 +213980,1069.9000000117483,-0.054886739383025414 +213981,1069.9050000117484,-0.054886681043331435 +213982,1069.9100000117485,-0.0548866227013189 +213983,1069.9150000117486,-0.05488656435698771 +213984,1069.9200000117487,-0.05488650601033774 +213985,1069.9250000117488,-0.05488644766136894 +213986,1069.930000011749,-0.054886389310081184 +213987,1069.935000011749,-0.05488633095647438 +213988,1069.9400000117491,-0.05488627260054845 +213989,1069.9450000117492,-0.054886214242303284 +213990,1069.9500000117494,-0.054886155881738785 +213991,1069.9550000117495,-0.05488609751885487 +213992,1069.9600000117496,-0.054886039153651436 +213993,1069.9650000117497,-0.0548859807861284 +213994,1069.9700000117498,-0.054885922416285655 +213995,1069.97500001175,-0.0548858640441231 +213996,1069.98000001175,-0.054885805669640644 +213997,1069.9850000117501,-0.05488574729283819 +213998,1069.9900000117502,-0.054885688913715654 +213999,1069.9950000117503,-0.054885630532272925 +214000,1070.0000000117504,-0.05488557214850992 +214001,1070.0050000117506,-0.05488551376242654 +214002,1070.0100000117507,-0.0548854553740227 +214003,1070.0150000117508,-0.05488539698329828 +214004,1070.0200000117509,-0.0548853385902532 +214005,1070.025000011751,-0.05488528019488736 +214006,1070.030000011751,-0.05488522179720067 +214007,1070.0350000117512,-0.05488516339719303 +214008,1070.0400000117513,-0.054885104994864334 +214009,1070.0450000117514,-0.054885046590214516 +214010,1070.0500000117515,-0.05488498818324345 +214011,1070.0550000117516,-0.05488492977395106 +214012,1070.0600000117518,-0.05488487136233724 +214013,1070.0650000117519,-0.05488481294840189 +214014,1070.070000011752,-0.054884754532144926 +214015,1070.075000011752,-0.05488469611356625 +214016,1070.0800000117522,-0.054884637692665765 +214017,1070.0850000117523,-0.054884579269443366 +214018,1070.0900000117524,-0.05488452084389897 +214019,1070.0950000117525,-0.05488446241603248 +214020,1070.1000000117526,-0.054884403985843794 +214021,1070.1050000117527,-0.05488434555333281 +214022,1070.1100000117528,-0.05488428711849944 +214023,1070.115000011753,-0.054884228681343586 +214024,1070.120000011753,-0.05488417024186516 +214025,1070.1250000117532,-0.05488411180006406 +214026,1070.1300000117533,-0.05488405335594018 +214027,1070.1350000117534,-0.05488399490949344 +214028,1070.1400000117535,-0.05488393646072373 +214029,1070.1450000117536,-0.05488387800963096 +214030,1070.1500000117537,-0.05488381955621505 +214031,1070.1550000117538,-0.05488376110047587 +214032,1070.160000011754,-0.054883702642413344 +214033,1070.165000011754,-0.05488364418202738 +214034,1070.1700000117542,-0.05488358571931788 +214035,1070.1750000117543,-0.054883527254284734 +214036,1070.1800000117544,-0.054883468786927854 +214037,1070.1850000117545,-0.05488341031724714 +214038,1070.1900000117546,-0.05488335184524252 +214039,1070.1950000117547,-0.05488329337091386 +214040,1070.2000000117548,-0.05488323489426108 +214041,1070.205000011755,-0.054883176415284084 +214042,1070.210000011755,-0.054883117933982775 +214043,1070.2150000117551,-0.05488305945035707 +214044,1070.2200000117552,-0.05488300096440685 +214045,1070.2250000117554,-0.054882942476132034 +214046,1070.2300000117555,-0.05488288398553252 +214047,1070.2350000117556,-0.05488282549260821 +214048,1070.2400000117557,-0.054882766997359 +214049,1070.2450000117558,-0.0548827084997848 +214050,1070.250000011756,-0.05488264999988551 +214051,1070.255000011756,-0.05488259149766105 +214052,1070.2600000117561,-0.05488253299311131 +214053,1070.2650000117562,-0.05488247448623619 +214054,1070.2700000117563,-0.054882415977035595 +214055,1070.2750000117564,-0.05488235746550943 +214056,1070.2800000117566,-0.0548822989516576 +214057,1070.2850000117567,-0.05488224043548001 +214058,1070.2900000117568,-0.054882181916976566 +214059,1070.2950000117569,-0.054882123396147155 +214060,1070.300000011757,-0.05488206487299168 +214061,1070.305000011757,-0.05488200634751006 +214062,1070.3100000117572,-0.054881947819702195 +214063,1070.3150000117573,-0.054881889289567984 +214064,1070.3200000117574,-0.05488183075710733 +214065,1070.3250000117575,-0.05488177222232012 +214066,1070.3300000117576,-0.05488171368520628 +214067,1070.3350000117578,-0.054881655145765706 +214068,1070.3400000117579,-0.05488159660399831 +214069,1070.345000011758,-0.05488153805990398 +214070,1070.350000011758,-0.05488147951348262 +214071,1070.3550000117582,-0.05488142096473413 +214072,1070.3600000117583,-0.05488136241365842 +214073,1070.3650000117584,-0.0548813038602554 +214074,1070.3700000117585,-0.054881245304524956 +214075,1070.3750000117586,-0.054881186746467 +214076,1070.3800000117587,-0.05488112818608143 +214077,1070.3850000117588,-0.054881069623368146 +214078,1070.390000011759,-0.054881011058327066 +214079,1070.395000011759,-0.05488095249095808 +214080,1070.4000000117592,-0.054880893921261095 +214081,1070.4050000117593,-0.05488083534923601 +214082,1070.4100000117594,-0.054880776774882734 +214083,1070.4150000117595,-0.054880718198201166 +214084,1070.4200000117596,-0.0548806596191912 +214085,1070.4250000117597,-0.05488060103785274 +214086,1070.4300000117598,-0.0548805424541857 +214087,1070.43500001176,-0.05488048386818997 +214088,1070.44000001176,-0.05488042527986547 +214089,1070.4450000117602,-0.05488036668921207 +214090,1070.4500000117603,-0.0548803080962297 +214091,1070.4550000117604,-0.05488024950091826 +214092,1070.4600000117605,-0.054880190903277636 +214093,1070.4650000117606,-0.054880132303307745 +214094,1070.4700000117607,-0.05488007370100849 +214095,1070.4750000117608,-0.05488001509637975 +214096,1070.480000011761,-0.05487995648942146 +214097,1070.485000011761,-0.0548798978801335 +214098,1070.4900000117611,-0.05487983926851578 +214099,1070.4950000117612,-0.05487978065456821 +214100,1070.5000000117614,-0.05487972203829067 +214101,1070.5050000117615,-0.05487966341968307 +214102,1070.5100000117616,-0.05487960479874532 +214103,1070.5150000117617,-0.054879546175477315 +214104,1070.5200000117618,-0.05487948754987896 +214105,1070.525000011762,-0.05487942892195016 +214106,1070.530000011762,-0.05487937029169082 +214107,1070.5350000117621,-0.05487931165910082 +214108,1070.5400000117622,-0.05487925302418009 +214109,1070.5450000117623,-0.0548791943869285 +214110,1070.5500000117624,-0.054879135747345986 +214111,1070.5550000117626,-0.05487907710543243 +214112,1070.5600000117627,-0.05487901846118773 +214113,1070.5650000117628,-0.05487895981461179 +214114,1070.5700000117629,-0.05487890116570452 +214115,1070.575000011763,-0.054878842514465814 +214116,1070.580000011763,-0.054878783860895584 +214117,1070.5850000117632,-0.05487872520499371 +214118,1070.5900000117633,-0.05487866654676013 +214119,1070.5950000117634,-0.05487860788619472 +214120,1070.6000000117635,-0.05487854922329737 +214121,1070.6050000117637,-0.054878490558068 +214122,1070.6100000117638,-0.05487843189050651 +214123,1070.6150000117639,-0.054878373220612786 +214124,1070.620000011764,-0.05487831454838676 +214125,1070.625000011764,-0.054878255873828295 +214126,1070.6300000117642,-0.054878197196937324 +214127,1070.6350000117643,-0.05487813851771374 +214128,1070.6400000117644,-0.054878079836157424 +214129,1070.6450000117645,-0.0548780211522683 +214130,1070.6500000117646,-0.05487796246604627 +214131,1070.6550000117647,-0.05487790377749123 +214132,1070.6600000117649,-0.05487784508660307 +214133,1070.665000011765,-0.0548777863933817 +214134,1070.670000011765,-0.05487772769782701 +214135,1070.6750000117652,-0.05487766899993892 +214136,1070.6800000117653,-0.05487761029971732 +214137,1070.6850000117654,-0.054877551597162115 +214138,1070.6900000117655,-0.0548774928922732 +214139,1070.6950000117656,-0.05487743418505049 +214140,1070.7000000117657,-0.054877375475493866 +214141,1070.7050000117658,-0.054877316763603246 +214142,1070.710000011766,-0.05487725804937853 +214143,1070.715000011766,-0.0548771993328196 +214144,1070.7200000117662,-0.05487714061392637 +214145,1070.7250000117663,-0.05487708189269874 +214146,1070.7300000117664,-0.054877023169136604 +214147,1070.7350000117665,-0.05487696444323987 +214148,1070.7400000117666,-0.05487690571500845 +214149,1070.7450000117667,-0.05487684698444222 +214150,1070.7500000117668,-0.0548767882515411 +214151,1070.755000011767,-0.05487672951630498 +214152,1070.760000011767,-0.054876670778733753 +214153,1070.7650000117671,-0.054876612038827335 +214154,1070.7700000117673,-0.05487655329658561 +214155,1070.7750000117674,-0.05487649455200851 +214156,1070.7800000117675,-0.05487643580509591 +214157,1070.7850000117676,-0.05487637705584771 +214158,1070.7900000117677,-0.05487631830426382 +214159,1070.7950000117678,-0.054876259550344135 +214160,1070.800000011768,-0.054876200794088545 +214161,1070.805000011768,-0.05487614203549697 +214162,1070.8100000117681,-0.0548760832745693 +214163,1070.8150000117682,-0.05487602451130543 +214164,1070.8200000117683,-0.054875965745705274 +214165,1070.8250000117685,-0.05487590697776872 +214166,1070.8300000117686,-0.05487584820749568 +214167,1070.8350000117687,-0.054875789434886045 +214168,1070.8400000117688,-0.05487573065993972 +214169,1070.845000011769,-0.054875671882656595 +214170,1070.850000011769,-0.05487561310303657 +214171,1070.855000011769,-0.054875554321079566 +214172,1070.8600000117692,-0.05487549553678547 +214173,1070.8650000117693,-0.05487543675015417 +214174,1070.8700000117694,-0.05487537796118558 +214175,1070.8750000117695,-0.0548753191698796 +214176,1070.8800000117697,-0.05487526037623613 +214177,1070.8850000117698,-0.05487520158025505 +214178,1070.8900000117699,-0.05487514278193629 +214179,1070.89500001177,-0.05487508398127973 +214180,1070.90000001177,-0.05487502517828528 +214181,1070.9050000117702,-0.05487496637295284 +214182,1070.9100000117703,-0.0548749075652823 +214183,1070.9150000117704,-0.05487484875527356 +214184,1070.9200000117705,-0.05487478994292653 +214185,1070.9250000117706,-0.054874731128241094 +214186,1070.9300000117707,-0.05487467231121717 +214187,1070.9350000117709,-0.05487461349185465 +214188,1070.940000011771,-0.05487455467015342 +214189,1070.945000011771,-0.05487449584611339 +214190,1070.9500000117712,-0.054874437019734476 +214191,1070.9550000117713,-0.05487437819101655 +214192,1070.9600000117714,-0.05487431935995953 +214193,1070.9650000117715,-0.05487426052656331 +214194,1070.9700000117716,-0.05487420169082779 +214195,1070.9750000117717,-0.05487414285275287 +214196,1070.9800000117718,-0.054874084012338446 +214197,1070.985000011772,-0.054874025169584416 +214198,1070.990000011772,-0.05487396632449068 +214199,1070.9950000117722,-0.05487390747705713 +214200,1071.0000000117723,-0.05487384862728368 +214201,1071.0050000117724,-0.054873789775170226 +214202,1071.0100000117725,-0.05487373092071665 +214203,1071.0150000117726,-0.054873672063922886 +214204,1071.0200000117727,-0.0548736132047888 +214205,1071.0250000117728,-0.05487355434331431 +214206,1071.030000011773,-0.05487349547949931 +214207,1071.035000011773,-0.0548734366133437 +214208,1071.0400000117731,-0.05487337774484736 +214209,1071.0450000117733,-0.05487331887401021 +214210,1071.0500000117734,-0.05487326000083215 +214211,1071.0550000117735,-0.054873201125313076 +214212,1071.0600000117736,-0.05487314224745288 +214213,1071.0650000117737,-0.054873083367251455 +214214,1071.0700000117738,-0.05487302448470871 +214215,1071.075000011774,-0.054872965599824554 +214216,1071.080000011774,-0.05487290671259886 +214217,1071.0850000117741,-0.05487284782303155 +214218,1071.0900000117742,-0.05487278893112252 +214219,1071.0950000117743,-0.054872730036871646 +214220,1071.1000000117745,-0.054872671140278856 +214221,1071.1050000117746,-0.05487261224134403 +214222,1071.1100000117747,-0.05487255334006707 +214223,1071.1150000117748,-0.05487249443644788 +214224,1071.120000011775,-0.05487243553048636 +214225,1071.125000011775,-0.0548723766221824 +214226,1071.130000011775,-0.0548723177115359 +214227,1071.1350000117752,-0.05487225879854677 +214228,1071.1400000117753,-0.054872199883214894 +214229,1071.1450000117754,-0.05487214096554017 +214230,1071.1500000117755,-0.054872082045522505 +214231,1071.1550000117757,-0.0548720231231618 +214232,1071.1600000117758,-0.05487196419845793 +214233,1071.1650000117759,-0.05487190527141082 +214234,1071.170000011776,-0.054871846342020365 +214235,1071.175000011776,-0.05487178741028644 +214236,1071.1800000117762,-0.05487172847620897 +214237,1071.1850000117763,-0.054871669539787844 +214238,1071.1900000117764,-0.05487161060102297 +214239,1071.1950000117765,-0.05487155165991422 +214240,1071.2000000117766,-0.054871492716461516 +214241,1071.2050000117767,-0.05487143377066475 +214242,1071.2100000117769,-0.05487137482252381 +214243,1071.215000011777,-0.0548713158720386 +214244,1071.220000011777,-0.05487125691920902 +214245,1071.2250000117772,-0.054871197964034966 +214246,1071.2300000117773,-0.05487113900651633 +214247,1071.2350000117774,-0.05487108004665304 +214248,1071.2400000117775,-0.05487102108444495 +214249,1071.2450000117776,-0.05487096211989199 +214250,1071.2500000117777,-0.05487090315299403 +214251,1071.2550000117778,-0.054870844183751 +214252,1071.260000011778,-0.054870785212162786 +214253,1071.265000011778,-0.05487072623822927 +214254,1071.2700000117782,-0.05487066726195036 +214255,1071.2750000117783,-0.05487060828332597 +214256,1071.2800000117784,-0.05487054930235597 +214257,1071.2850000117785,-0.054870490319040274 +214258,1071.2900000117786,-0.05487043133337876 +214259,1071.2950000117787,-0.05487037234537135 +214260,1071.3000000117788,-0.05487031335501794 +214261,1071.305000011779,-0.05487025436231842 +214262,1071.310000011779,-0.05487019536727269 +214263,1071.3150000117791,-0.054870136369880626 +214264,1071.3200000117793,-0.054870077370142156 +214265,1071.3250000117794,-0.05487001836805716 +214266,1071.3300000117795,-0.05486995936362554 +214267,1071.3350000117796,-0.0548699003568472 +214268,1071.3400000117797,-0.054869841347722034 +214269,1071.3450000117798,-0.05486978233624993 +214270,1071.35000001178,-0.054869723322430786 +214271,1071.35500001178,-0.05486966430626451 +214272,1071.3600000117801,-0.054869605287751 +214273,1071.3650000117802,-0.05486954626689014 +214274,1071.3700000117803,-0.05486948724368183 +214275,1071.3750000117805,-0.054869428218125973 +214276,1071.3800000117806,-0.05486936919022247 +214277,1071.3850000117807,-0.05486931015997121 +214278,1071.3900000117808,-0.05486925112737208 +214279,1071.395000011781,-0.054869192092424995 +214280,1071.400000011781,-0.05486913305512985 +214281,1071.405000011781,-0.054869074015486546 +214282,1071.4100000117812,-0.05486901497349497 +214283,1071.4150000117813,-0.05486895592915502 +214284,1071.4200000117814,-0.054868896882466586 +214285,1071.4250000117815,-0.05486883783342958 +214286,1071.4300000117817,-0.05486877878204389 +214287,1071.4350000117818,-0.0548687197283094 +214288,1071.4400000117819,-0.05486866067222603 +214289,1071.445000011782,-0.05486860161379366 +214290,1071.450000011782,-0.054868542553012205 +214291,1071.4550000117822,-0.05486848348988154 +214292,1071.4600000117823,-0.05486842442440158 +214293,1071.4650000117824,-0.05486836535657221 +214294,1071.4700000117825,-0.05486830628639334 +214295,1071.4750000117826,-0.05486824721386484 +214296,1071.4800000117827,-0.054868188138986626 +214297,1071.4850000117829,-0.05486812906175859 +214298,1071.490000011783,-0.05486806998218064 +214299,1071.495000011783,-0.05486801090025266 +214300,1071.5000000117832,-0.054867951815974536 +214301,1071.5050000117833,-0.05486789272934618 +214302,1071.5100000117834,-0.05486783364036749 +214303,1071.5150000117835,-0.05486777454903836 +214304,1071.5200000117836,-0.05486771545535868 +214305,1071.5250000117837,-0.05486765635932835 +214306,1071.5300000117838,-0.05486759726094727 +214307,1071.535000011784,-0.05486753816021532 +214308,1071.540000011784,-0.054867479057132414 +214309,1071.5450000117842,-0.054867419951698436 +214310,1071.5500000117843,-0.054867360843913304 +214311,1071.5550000117844,-0.05486730173377689 +214312,1071.5600000117845,-0.05486724262128909 +214313,1071.5650000117846,-0.05486718350644982 +214314,1071.5700000117847,-0.05486712438925896 +214315,1071.5750000117848,-0.05486706526971641 +214316,1071.580000011785,-0.05486700614782207 +214317,1071.585000011785,-0.054866947023575835 +214318,1071.5900000117852,-0.054866887896977586 +214319,1071.5950000117853,-0.05486682876802723 +214320,1071.6000000117854,-0.05486676963672467 +214321,1071.6050000117855,-0.0548667105030698 +214322,1071.6100000117856,-0.0548666513670625 +214323,1071.6150000117857,-0.05486659222870269 +214324,1071.6200000117858,-0.054866533087990235 +214325,1071.625000011786,-0.05486647394492506 +214326,1071.630000011786,-0.05486641479950704 +214327,1071.6350000117861,-0.05486635565173609 +214328,1071.6400000117862,-0.05486629650161209 +214329,1071.6450000117864,-0.054866237349134934 +214330,1071.6500000117865,-0.054866178194304525 +214331,1071.6550000117866,-0.054866119037120756 +214332,1071.6600000117867,-0.05486605987758353 +214333,1071.6650000117868,-0.05486600071569272 +214334,1071.670000011787,-0.05486594155144826 +214335,1071.675000011787,-0.05486588238485001 +214336,1071.6800000117871,-0.05486582321589788 +214337,1071.6850000117872,-0.05486576404459176 +214338,1071.6900000117873,-0.05486570487093155 +214339,1071.6950000117874,-0.05486564569491715 +214340,1071.7000000117876,-0.05486558651654845 +214341,1071.7050000117877,-0.05486552733582534 +214342,1071.7100000117878,-0.05486546815274771 +214343,1071.7150000117879,-0.054865408967315475 +214344,1071.720000011788,-0.05486534977952852 +214345,1071.725000011788,-0.05486529058938673 +214346,1071.7300000117882,-0.054865231396890014 +214347,1071.7350000117883,-0.054865172202038265 +214348,1071.7400000117884,-0.05486511300483137 +214349,1071.7450000117885,-0.054865053805269244 +214350,1071.7500000117886,-0.05486499460335175 +214351,1071.7550000117888,-0.0548649353990788 +214352,1071.7600000117889,-0.0548648761924503 +214353,1071.765000011789,-0.05486481698346613 +214354,1071.770000011789,-0.05486475777212618 +214355,1071.7750000117892,-0.05486469855843036 +214356,1071.7800000117893,-0.05486463934237857 +214357,1071.7850000117894,-0.054864580123970684 +214358,1071.7900000117895,-0.0548645209032066 +214359,1071.7950000117896,-0.05486446168008623 +214360,1071.8000000117897,-0.05486440245460945 +214361,1071.8050000117898,-0.054864343226776156 +214362,1071.81000001179,-0.05486428399658625 +214363,1071.81500001179,-0.05486422476403963 +214364,1071.8200000117902,-0.054864165529136186 +214365,1071.8250000117903,-0.05486410629187582 +214366,1071.8300000117904,-0.0548640470522584 +214367,1071.8350000117905,-0.05486398781028384 +214368,1071.8400000117906,-0.054863928565952035 +214369,1071.8450000117907,-0.05486386931926289 +214370,1071.8500000117908,-0.054863810070216276 +214371,1071.855000011791,-0.0548637508188121 +214372,1071.860000011791,-0.05486369156505025 +214373,1071.8650000117912,-0.05486363230893062 +214374,1071.8700000117913,-0.05486357305045311 +214375,1071.8750000117914,-0.05486351378961763 +214376,1071.8800000117915,-0.054863454526424035 +214377,1071.8850000117916,-0.05486339526087226 +214378,1071.8900000117917,-0.05486333599296216 +214379,1071.8950000117918,-0.05486327672269367 +214380,1071.900000011792,-0.054863217450066656 +214381,1071.905000011792,-0.054863158175081014 +214382,1071.9100000117921,-0.05486309889773665 +214383,1071.9150000117922,-0.05486303961803344 +214384,1071.9200000117924,-0.054862980335971305 +214385,1071.9250000117925,-0.05486292105155012 +214386,1071.9300000117926,-0.054862861764769774 +214387,1071.9350000117927,-0.054862802475630176 +214388,1071.9400000117928,-0.05486274318413121 +214389,1071.945000011793,-0.05486268389027276 +214390,1071.950000011793,-0.05486262459405475 +214391,1071.9550000117931,-0.054862565295477055 +214392,1071.9600000117932,-0.05486250599453956 +214393,1071.9650000117933,-0.05486244669124217 +214394,1071.9700000117934,-0.054862387385584785 +214395,1071.9750000117936,-0.05486232807756729 +214396,1071.9800000117937,-0.054862268767189575 +214397,1071.9850000117938,-0.05486220945445155 +214398,1071.9900000117939,-0.054862150139353076 +214399,1071.995000011794,-0.054862090821894076 +214400,1072.000000011794,-0.05486203150207443 +214401,1072.0050000117942,-0.05486197217989404 +214402,1072.0100000117943,-0.0548619128553528 +214403,1072.0150000117944,-0.0548618535284506 +214404,1072.0200000117945,-0.05486179419918732 +214405,1072.0250000117946,-0.05486173486756286 +214406,1072.0300000117948,-0.054861675533577126 +214407,1072.0350000117949,-0.054861616197230005 +214408,1072.040000011795,-0.0548615568585214 +214409,1072.045000011795,-0.05486149751745119 +214410,1072.0500000117952,-0.054861438174019256 +214411,1072.0550000117953,-0.05486137882822551 +214412,1072.0600000117954,-0.05486131948006985 +214413,1072.0650000117955,-0.05486126012955216 +214414,1072.0700000117956,-0.054861200776672336 +214415,1072.0750000117957,-0.05486114142143026 +214416,1072.0800000117958,-0.05486108206382583 +214417,1072.085000011796,-0.05486102270385895 +214418,1072.090000011796,-0.0548609633415295 +214419,1072.0950000117962,-0.05486090397683738 +214420,1072.1000000117963,-0.05486084460978249 +214421,1072.1050000117964,-0.05486078524036471 +214422,1072.1100000117965,-0.054860725868583926 +214423,1072.1150000117966,-0.054860666494440054 +214424,1072.1200000117967,-0.054860607117932975 +214425,1072.1250000117968,-0.054860547739062585 +214426,1072.130000011797,-0.05486048835782877 +214427,1072.135000011797,-0.05486042897423143 +214428,1072.1400000117972,-0.054860369588270445 +214429,1072.1450000117973,-0.054860310199945715 +214430,1072.1500000117974,-0.05486025080925714 +214431,1072.1550000117975,-0.0548601914162046 +214432,1072.1600000117976,-0.054860132020788 +214433,1072.1650000117977,-0.054860072623007225 +214434,1072.1700000117978,-0.054860013222862165 +214435,1072.175000011798,-0.05485995382035271 +214436,1072.180000011798,-0.05485989441547876 +214437,1072.1850000117981,-0.05485983500824021 +214438,1072.1900000117982,-0.05485977559863696 +214439,1072.1950000117984,-0.05485971618666888 +214440,1072.2000000117985,-0.05485965677233587 +214441,1072.2050000117986,-0.054859597355637835 +214442,1072.2100000117987,-0.054859537936574644 +214443,1072.2150000117988,-0.05485947851514621 +214444,1072.220000011799,-0.05485941909135241 +214445,1072.225000011799,-0.054859359665193154 +214446,1072.2300000117991,-0.05485930023666832 +214447,1072.2350000117992,-0.0548592408057778 +214448,1072.2400000117993,-0.05485918137252149 +214449,1072.2450000117994,-0.054859121936899284 +214450,1072.2500000117996,-0.05485906249891107 +214451,1072.2550000117997,-0.05485900305855675 +214452,1072.2600000117998,-0.05485894361583621 +214453,1072.2650000117999,-0.054858884170749335 +214454,1072.2700000118,-0.05485882472329603 +214455,1072.2750000118,-0.05485876527347617 +214456,1072.2800000118002,-0.05485870582128965 +214457,1072.2850000118003,-0.05485864636673637 +214458,1072.2900000118004,-0.05485858690981622 +214459,1072.2950000118005,-0.0548585274505291 +214460,1072.3000000118006,-0.05485846798887488 +214461,1072.3050000118008,-0.05485840852485348 +214462,1072.3100000118009,-0.054858349058464755 +214463,1072.315000011801,-0.054858289589708634 +214464,1072.320000011801,-0.05485823011858498 +214465,1072.3250000118012,-0.054858170645093705 +214466,1072.3300000118013,-0.05485811116923469 +214467,1072.3350000118014,-0.05485805169100783 +214468,1072.3400000118015,-0.054857992210413015 +214469,1072.3450000118016,-0.05485793272745013 +214470,1072.3500000118017,-0.05485787324211908 +214471,1072.3550000118018,-0.054857813754419754 +214472,1072.360000011802,-0.05485775426435203 +214473,1072.365000011802,-0.0548576947719158 +214474,1072.3700000118022,-0.054857635277110975 +214475,1072.3750000118023,-0.05485757577993743 +214476,1072.3800000118024,-0.05485751628039508 +214477,1072.3850000118025,-0.05485745677848378 +214478,1072.3900000118026,-0.05485739727420344 +214479,1072.3950000118027,-0.05485733776755394 +214480,1072.4000000118028,-0.05485727825853519 +214481,1072.405000011803,-0.05485721874714707 +214482,1072.410000011803,-0.054857159233389484 +214483,1072.4150000118032,-0.054857099717262305 +214484,1072.4200000118033,-0.05485704019876542 +214485,1072.4250000118034,-0.05485698067789874 +214486,1072.4300000118035,-0.05485692115466213 +214487,1072.4350000118036,-0.054856861629055516 +214488,1072.4400000118037,-0.05485680210107876 +214489,1072.4450000118038,-0.05485674257073177 +214490,1072.450000011804,-0.05485668303801443 +214491,1072.455000011804,-0.054856623502926624 +214492,1072.4600000118041,-0.05485656396546826 +214493,1072.4650000118042,-0.054856504425639205 +214494,1072.4700000118044,-0.05485644488343937 +214495,1072.4750000118045,-0.054856385338868635 +214496,1072.4800000118046,-0.054856325791926897 +214497,1072.4850000118047,-0.05485626624261404 +214498,1072.4900000118048,-0.05485620669092995 +214499,1072.495000011805,-0.05485614713687454 +214500,1072.500000011805,-0.05485608758044768 +214501,1072.5050000118051,-0.05485602802164927 +214502,1072.5100000118052,-0.05485596846047919 +214503,1072.5150000118053,-0.05485590889693734 +214504,1072.5200000118055,-0.05485584933102361 +214505,1072.5250000118056,-0.05485578976273789 +214506,1072.5300000118057,-0.05485573019208006 +214507,1072.5350000118058,-0.05485567061905003 +214508,1072.540000011806,-0.054855611043647674 +214509,1072.545000011806,-0.05485555146587288 +214510,1072.550000011806,-0.054855491885725555 +214511,1072.5550000118062,-0.054855432303205574 +214512,1072.5600000118063,-0.05485537271831284 +214513,1072.5650000118064,-0.054855313131047224 +214514,1072.5700000118065,-0.05485525354140865 +214515,1072.5750000118067,-0.05485519394939697 +214516,1072.5800000118068,-0.05485513435501208 +214517,1072.5850000118069,-0.054855074758253894 +214518,1072.590000011807,-0.05485501515912229 +214519,1072.595000011807,-0.05485495555761716 +214520,1072.6000000118072,-0.05485489595373838 +214521,1072.6050000118073,-0.05485483634748586 +214522,1072.6100000118074,-0.054854776738859475 +214523,1072.6150000118075,-0.054854717127859116 +214524,1072.6200000118076,-0.054854657514484685 +214525,1072.6250000118077,-0.05485459789873606 +214526,1072.6300000118079,-0.05485453828061313 +214527,1072.635000011808,-0.05485447866011579 +214528,1072.640000011808,-0.05485441903724393 +214529,1072.6450000118082,-0.054854359411997435 +214530,1072.6500000118083,-0.0548542997843762 +214531,1072.6550000118084,-0.05485424015438011 +214532,1072.6600000118085,-0.05485418052200906 +214533,1072.6650000118086,-0.054854120887262936 +214534,1072.6700000118087,-0.054854061250141625 +214535,1072.6750000118088,-0.05485400161064501 +214536,1072.680000011809,-0.054853941968773 +214537,1072.685000011809,-0.054853882324525476 +214538,1072.6900000118092,-0.054853822677902314 +214539,1072.6950000118093,-0.05485376302890343 +214540,1072.7000000118094,-0.05485370337752869 +214541,1072.7050000118095,-0.054853643723777996 +214542,1072.7100000118096,-0.05485358406765123 +214543,1072.7150000118097,-0.05485352440914828 +214544,1072.7200000118098,-0.054853464748269035 +214545,1072.72500001181,-0.05485340508501339 +214546,1072.73000001181,-0.05485334541938124 +214547,1072.7350000118101,-0.054853285751372466 +214548,1072.7400000118103,-0.05485322608098696 +214549,1072.7450000118104,-0.054853166408224595 +214550,1072.7500000118105,-0.054853106733085286 +214551,1072.7550000118106,-0.05485304705556889 +214552,1072.7600000118107,-0.05485298737567533 +214553,1072.7650000118108,-0.05485292769340447 +214554,1072.770000011811,-0.05485286800875622 +214555,1072.775000011811,-0.05485280832173045 +214556,1072.7800000118111,-0.054852748632327065 +214557,1072.7850000118112,-0.05485268894054595 +214558,1072.7900000118113,-0.05485262924638698 +214559,1072.7950000118115,-0.05485256954985006 +214560,1072.8000000118116,-0.054852509850935066 +214561,1072.8050000118117,-0.054852450149641886 +214562,1072.8100000118118,-0.054852390445970414 +214563,1072.815000011812,-0.054852330739920546 +214564,1072.820000011812,-0.054852271031492164 +214565,1072.825000011812,-0.05485221132068516 +214566,1072.8300000118122,-0.05485215160749941 +214567,1072.8350000118123,-0.05485209189193482 +214568,1072.8400000118124,-0.05485203217399126 +214569,1072.8450000118125,-0.054851972453668636 +214570,1072.8500000118127,-0.05485191273096683 +214571,1072.8550000118128,-0.05485185300588573 +214572,1072.8600000118129,-0.05485179327842522 +214573,1072.865000011813,-0.05485173354858519 +214574,1072.870000011813,-0.054851673816365534 +214575,1072.8750000118132,-0.05485161408176613 +214576,1072.8800000118133,-0.054851554344786876 +214577,1072.8850000118134,-0.05485149460542766 +214578,1072.8900000118135,-0.05485143486368837 +214579,1072.8950000118136,-0.05485137511956888 +214580,1072.9000000118137,-0.0548513153730691 +214581,1072.9050000118139,-0.05485125562418891 +214582,1072.910000011814,-0.054851195872928186 +214583,1072.915000011814,-0.05485113611928684 +214584,1072.9200000118142,-0.05485107636326472 +214585,1072.9250000118143,-0.05485101660486175 +214586,1072.9300000118144,-0.054850956844077814 +214587,1072.9350000118145,-0.054850897080912786 +214588,1072.9400000118146,-0.054850837315366566 +214589,1072.9450000118147,-0.054850777547439035 +214590,1072.9500000118148,-0.05485071777713009 +214591,1072.955000011815,-0.0548506580044396 +214592,1072.960000011815,-0.05485059822936746 +214593,1072.9650000118152,-0.05485053845191358 +214594,1072.9700000118153,-0.05485047867207781 +214595,1072.9750000118154,-0.054850418889860066 +214596,1072.9800000118155,-0.054850359105260225 +214597,1072.9850000118156,-0.05485029931827817 +214598,1072.9900000118157,-0.054850239528913804 +214599,1072.9950000118158,-0.054850179737167014 +214600,1073.000000011816,-0.05485011994303767 +214601,1073.005000011816,-0.054850060146525666 +214602,1073.0100000118161,-0.054850000347630885 +214603,1073.0150000118163,-0.054849940546353226 +214604,1073.0200000118164,-0.05484988074269258 +214605,1073.0250000118165,-0.054849820936648815 +214606,1073.0300000118166,-0.05484976112822183 +214607,1073.0350000118167,-0.054849701317411514 +214608,1073.0400000118168,-0.05484964150421774 +214609,1073.045000011817,-0.05484958168864042 +214610,1073.050000011817,-0.05484952187067941 +214611,1073.0550000118171,-0.05484946205033464 +214612,1073.0600000118172,-0.05484940222760597 +214613,1073.0650000118173,-0.05484934240249328 +214614,1073.0700000118175,-0.054849282574996466 +214615,1073.0750000118176,-0.05484922274511541 +214616,1073.0800000118177,-0.054849162912850004 +214617,1073.0850000118178,-0.054849103078200144 +214618,1073.090000011818,-0.054849043241165706 +214619,1073.095000011818,-0.054848983401746564 +214620,1073.100000011818,-0.054848923559942635 +214621,1073.1050000118182,-0.05484886371575378 +214622,1073.1100000118183,-0.0548488038691799 +214623,1073.1150000118184,-0.05484874402022088 +214624,1073.1200000118185,-0.0548486841688766 +214625,1073.1250000118187,-0.05484862431514696 +214626,1073.1300000118188,-0.054848564459031836 +214627,1073.1350000118189,-0.05484850460053112 +214628,1073.140000011819,-0.05484844473964469 +214629,1073.145000011819,-0.05484838487637244 +214630,1073.1500000118192,-0.05484832501071425 +214631,1073.1550000118193,-0.054848265142670015 +214632,1073.1600000118194,-0.054848205272239624 +214633,1073.1650000118195,-0.05484814539942295 +214634,1073.1700000118196,-0.05484808552421988 +214635,1073.1750000118197,-0.05484802564663032 +214636,1073.1800000118199,-0.05484796576665414 +214637,1073.18500001182,-0.054847905884291226 +214638,1073.19000001182,-0.05484784599954146 +214639,1073.1950000118202,-0.05484778611240475 +214640,1073.2000000118203,-0.05484772622288096 +214641,1073.2050000118204,-0.054847666330969984 +214642,1073.2100000118205,-0.05484760643667171 +214643,1073.2150000118206,-0.054847546539986025 +214644,1073.2200000118207,-0.054847486640912824 +214645,1073.2250000118208,-0.05484742673945196 +214646,1073.230000011821,-0.05484736683560335 +214647,1073.235000011821,-0.05484730692936688 +214648,1073.2400000118212,-0.054847247020742416 +214649,1073.2450000118213,-0.05484718710972986 +214650,1073.2500000118214,-0.0548471271963291 +214651,1073.2550000118215,-0.05484706728054001 +214652,1073.2600000118216,-0.05484700736236248 +214653,1073.2650000118217,-0.05484694744179639 +214654,1073.2700000118218,-0.05484688751884164 +214655,1073.275000011822,-0.054846827593498106 +214656,1073.280000011822,-0.05484676766576567 +214657,1073.2850000118221,-0.054846707735644235 +214658,1073.2900000118223,-0.05484664780313366 +214659,1073.2950000118224,-0.054846587868233855 +214660,1073.3000000118225,-0.05484652793094469 +214661,1073.3050000118226,-0.054846467991266065 +214662,1073.3100000118227,-0.05484640804919786 +214663,1073.3150000118228,-0.05484634810473996 +214664,1073.320000011823,-0.05484628815789225 +214665,1073.325000011823,-0.05484622820865461 +214666,1073.3300000118231,-0.05484616825702692 +214667,1073.3350000118232,-0.054846108303009074 +214668,1073.3400000118233,-0.054846048346600965 +214669,1073.3450000118235,-0.05484598838780248 +214670,1073.3500000118236,-0.05484592842661348 +214671,1073.3550000118237,-0.05484586846303388 +214672,1073.3600000118238,-0.054845808497063546 +214673,1073.365000011824,-0.05484574852870237 +214674,1073.370000011824,-0.05484568855795024 +214675,1073.375000011824,-0.05484562858480703 +214676,1073.3800000118242,-0.05484556860927264 +214677,1073.3850000118243,-0.054845508631346934 +214678,1073.3900000118244,-0.05484544865102981 +214679,1073.3950000118245,-0.054845388668321164 +214680,1073.4000000118247,-0.054845328683220874 +214681,1073.4050000118248,-0.05484526869572882 +214682,1073.4100000118249,-0.05484520870584488 +214683,1073.415000011825,-0.054845148713568964 +214684,1073.420000011825,-0.054845088718900925 +214685,1073.4250000118252,-0.05484502872184066 +214686,1073.4300000118253,-0.05484496872238806 +214687,1073.4350000118254,-0.05484490872054302 +214688,1073.4400000118255,-0.05484484871630539 +214689,1073.4450000118256,-0.05484478870967509 +214690,1073.4500000118258,-0.05484472870065198 +214691,1073.4550000118259,-0.05484466868923597 +214692,1073.460000011826,-0.054844608675426926 +214693,1073.465000011826,-0.05484454865922473 +214694,1073.4700000118262,-0.05484448864062928 +214695,1073.4750000118263,-0.05484442861964046 +214696,1073.4800000118264,-0.05484436859625814 +214697,1073.4850000118265,-0.0548443085704822 +214698,1073.4900000118266,-0.05484424854231254 +214699,1073.4950000118267,-0.054844188511749055 +214700,1073.5000000118268,-0.0548441284787916 +214701,1073.505000011827,-0.05484406844344009 +214702,1073.510000011827,-0.054844008405694394 +214703,1073.5150000118272,-0.054843948365554396 +214704,1073.5200000118273,-0.054843888323019986 +214705,1073.5250000118274,-0.05484382827809103 +214706,1073.5300000118275,-0.05484376823076743 +214707,1073.5350000118276,-0.054843708181049056 +214708,1073.5400000118277,-0.054843648128935815 +214709,1073.5450000118278,-0.054843588074427574 +214710,1073.550000011828,-0.05484352801752422 +214711,1073.555000011828,-0.05484346795822563 +214712,1073.5600000118282,-0.0548434078965317 +214713,1073.5650000118283,-0.05484334783244232 +214714,1073.5700000118284,-0.05484328776595736 +214715,1073.5750000118285,-0.0548432276970767 +214716,1073.5800000118286,-0.054843167625800236 +214717,1073.5850000118287,-0.054843107552127845 +214718,1073.5900000118288,-0.05484304747605941 +214719,1073.595000011829,-0.05484298739759483 +214720,1073.600000011829,-0.054842927316733965 +214721,1073.6050000118291,-0.054842867233476714 +214722,1073.6100000118292,-0.054842807147822956 +214723,1073.6150000118294,-0.054842747059772566 +214724,1073.6200000118295,-0.05484268696932544 +214725,1073.6250000118296,-0.05484262687648146 +214726,1073.6300000118297,-0.054842566781240505 +214727,1073.6350000118298,-0.054842506683602466 +214728,1073.64000001183,-0.054842446583567225 +214729,1073.64500001183,-0.05484238648113467 +214730,1073.6500000118301,-0.05484232637630467 +214731,1073.6550000118302,-0.054842266269077115 +214732,1073.6600000118303,-0.054842206159451894 +214733,1073.6650000118304,-0.05484214604742887 +214734,1073.6700000118306,-0.054842085933007954 +214735,1073.6750000118307,-0.05484202581618901 +214736,1073.6800000118308,-0.054841965696971924 +214737,1073.6850000118309,-0.05484190557535659 +214738,1073.690000011831,-0.054841845451342894 +214739,1073.695000011831,-0.0548417853249307 +214740,1073.7000000118312,-0.0548417251961199 +214741,1073.7050000118313,-0.05484166506491037 +214742,1073.7100000118314,-0.05484160493130202 +214743,1073.7150000118315,-0.0548415447952947 +214744,1073.7200000118316,-0.0548414846568883 +214745,1073.7250000118318,-0.05484142451608271 +214746,1073.7300000118319,-0.05484136437287782 +214747,1073.735000011832,-0.05484130422727351 +214748,1073.740000011832,-0.05484124407926966 +214749,1073.7450000118322,-0.054841183928866145 +214750,1073.7500000118323,-0.054841123776062844 +214751,1073.7550000118324,-0.05484106362085966 +214752,1073.7600000118325,-0.05484100346325646 +214753,1073.7650000118326,-0.05484094330325313 +214754,1073.7700000118327,-0.054840883140849554 +214755,1073.7750000118328,-0.05484082297604562 +214756,1073.780000011833,-0.054840762808841204 +214757,1073.785000011833,-0.0548407026392362 +214758,1073.7900000118332,-0.054840642467230465 +214759,1073.7950000118333,-0.05484058229282391 +214760,1073.8000000118334,-0.0548405221160164 +214761,1073.8050000118335,-0.054840461936807826 +214762,1073.8100000118336,-0.05484040175519806 +214763,1073.8150000118337,-0.054840341571187 +214764,1073.8200000118338,-0.054840281384774515 +214765,1073.825000011834,-0.054840221195960485 +214766,1073.830000011834,-0.0548401610047448 +214767,1073.8350000118342,-0.05484010081112734 +214768,1073.8400000118343,-0.054840040615108 +214769,1073.8450000118344,-0.05483998041668663 +214770,1073.8500000118345,-0.05483992021586315 +214771,1073.8550000118346,-0.054839860012637416 +214772,1073.8600000118347,-0.054839799807009315 +214773,1073.8650000118348,-0.05483973959897874 +214774,1073.870000011835,-0.054839679388545566 +214775,1073.875000011835,-0.054839619175709675 +214776,1073.8800000118351,-0.05483955896047094 +214777,1073.8850000118352,-0.054839498742829264 +214778,1073.8900000118354,-0.05483943852278451 +214779,1073.8950000118355,-0.05483937830033656 +214780,1073.9000000118356,-0.05483931807548531 +214781,1073.9050000118357,-0.054839257848230634 +214782,1073.9100000118358,-0.054839197618572415 +214783,1073.915000011836,-0.05483913738651053 +214784,1073.920000011836,-0.05483907715204487 +214785,1073.9250000118361,-0.05483901691517531 +214786,1073.9300000118362,-0.05483895667590173 +214787,1073.9350000118363,-0.054838896434224016 +214788,1073.9400000118364,-0.054838836190142036 +214789,1073.9450000118366,-0.054838775943655695 +214790,1073.9500000118367,-0.05483871569476486 +214791,1073.9550000118368,-0.05483865544346941 +214792,1073.9600000118369,-0.05483859518976924 +214793,1073.965000011837,-0.054838534933664224 +214794,1073.970000011837,-0.05483847467515423 +214795,1073.9750000118372,-0.05483841441423915 +214796,1073.9800000118373,-0.054838354150918873 +214797,1073.9850000118374,-0.05483829388519328 +214798,1073.9900000118375,-0.05483823361706224 +214799,1073.9950000118376,-0.05483817334652565 +214800,1074.0000000118378,-0.054838113073583376 +214801,1074.0050000118379,-0.054838052798235296 +214802,1074.010000011838,-0.054837992520481306 +214803,1074.015000011838,-0.05483793224032128 +214804,1074.0200000118382,-0.0548378719577551 +214805,1074.0250000118383,-0.05483781167278265 +214806,1074.0300000118384,-0.05483775138540381 +214807,1074.0350000118385,-0.05483769109561845 +214808,1074.0400000118386,-0.05483763080342646 +214809,1074.0450000118387,-0.05483757050882774 +214810,1074.0500000118388,-0.054837510211822135 +214811,1074.055000011839,-0.054837449912409554 +214812,1074.060000011839,-0.05483738961058986 +214813,1074.0650000118392,-0.05483732930636293 +214814,1074.0700000118393,-0.05483726899972866 +214815,1074.0750000118394,-0.05483720869068694 +214816,1074.0800000118395,-0.05483714837923762 +214817,1074.0850000118396,-0.0548370880653806 +214818,1074.0900000118397,-0.054837027749115766 +214819,1074.0950000118398,-0.05483696743044298 +214820,1074.10000001184,-0.05483690710936215 +214821,1074.10500001184,-0.054836846785873125 +214822,1074.1100000118402,-0.0548367864599758 +214823,1074.1150000118403,-0.05483672613167005 +214824,1074.1200000118404,-0.05483666580095576 +214825,1074.1250000118405,-0.05483660546783281 +214826,1074.1300000118406,-0.05483654513230109 +214827,1074.1350000118407,-0.05483648479436046 +214828,1074.1400000118408,-0.054836424454010824 +214829,1074.145000011841,-0.05483636411125204 +214830,1074.150000011841,-0.054836303766084005 +214831,1074.1550000118411,-0.05483624341850658 +214832,1074.1600000118412,-0.05483618306851967 +214833,1074.1650000118414,-0.05483612271612314 +214834,1074.1700000118415,-0.05483606236131688 +214835,1074.1750000118416,-0.05483600200410075 +214836,1074.1800000118417,-0.054835941644474646 +214837,1074.1850000118418,-0.05483588128243845 +214838,1074.190000011842,-0.05483582091799204 +214839,1074.195000011842,-0.05483576055113528 +214840,1074.2000000118421,-0.05483570018186806 +214841,1074.2050000118422,-0.054835639810190275 +214842,1074.2100000118423,-0.05483557943610178 +214843,1074.2150000118424,-0.054835519059602475 +214844,1074.2200000118426,-0.05483545868069223 +214845,1074.2250000118427,-0.054835398299370924 +214846,1074.2300000118428,-0.05483533791563844 +214847,1074.2350000118429,-0.05483527752949465 +214848,1074.240000011843,-0.05483521714093945 +214849,1074.245000011843,-0.0548351567499727 +214850,1074.2500000118432,-0.054835096356594296 +214851,1074.2550000118433,-0.05483503596080411 +214852,1074.2600000118434,-0.054834975562602015 +214853,1074.2650000118435,-0.05483491516198789 +214854,1074.2700000118436,-0.05483485475896164 +214855,1074.2750000118438,-0.05483479435352313 +214856,1074.2800000118439,-0.05483473394567221 +214857,1074.285000011844,-0.054834673535408815 +214858,1074.290000011844,-0.05483461312273278 +214859,1074.2950000118442,-0.054834552707643994 +214860,1074.3000000118443,-0.05483449229014235 +214861,1074.3050000118444,-0.05483443187022772 +214862,1074.3100000118445,-0.05483437144789997 +214863,1074.3150000118446,-0.05483431102315899 +214864,1074.3200000118447,-0.05483425059600466 +214865,1074.3250000118448,-0.05483419016643687 +214866,1074.330000011845,-0.05483412973445549 +214867,1074.335000011845,-0.05483406930006038 +214868,1074.3400000118452,-0.05483400886325144 +214869,1074.3450000118453,-0.05483394842402855 +214870,1074.3500000118454,-0.054833887982391576 +214871,1074.3550000118455,-0.0548338275383404 +214872,1074.3600000118456,-0.05483376709187492 +214873,1074.3650000118457,-0.054833706642995 +214874,1074.3700000118458,-0.05483364619170051 +214875,1074.375000011846,-0.054833585737991346 +214876,1074.380000011846,-0.05483352528186737 +214877,1074.3850000118462,-0.05483346482332847 +214878,1074.3900000118463,-0.05483340436237452 +214879,1074.3950000118464,-0.05483334389900541 +214880,1074.4000000118465,-0.05483328343322101 +214881,1074.4050000118466,-0.054833222965021196 +214882,1074.4100000118467,-0.05483316249440584 +214883,1074.4150000118468,-0.05483310202137484 +214884,1074.420000011847,-0.05483304154592807 +214885,1074.425000011847,-0.054832981068065396 +214886,1074.4300000118471,-0.0548329205877867 +214887,1074.4350000118473,-0.05483286010509187 +214888,1074.4400000118474,-0.05483279961998076 +214889,1074.4450000118475,-0.05483273913245328 +214890,1074.4500000118476,-0.05483267864250929 +214891,1074.4550000118477,-0.05483261815014868 +214892,1074.4600000118478,-0.0548325576553713 +214893,1074.465000011848,-0.05483249715817706 +214894,1074.470000011848,-0.05483243665856584 +214895,1074.4750000118481,-0.05483237615653749 +214896,1074.4800000118482,-0.05483231565209191 +214897,1074.4850000118483,-0.05483225514522897 +214898,1074.4900000118485,-0.05483219463594855 +214899,1074.4950000118486,-0.05483213412425053 +214900,1074.5000000118487,-0.054832073610134785 +214901,1074.5050000118488,-0.054832013093601195 +214902,1074.510000011849,-0.05483195257464962 +214903,1074.515000011849,-0.05483189205327996 +214904,1074.520000011849,-0.05483183152949208 +214905,1074.5250000118492,-0.054831771003285866 +214906,1074.5300000118493,-0.05483171047466119 +214907,1074.5350000118494,-0.05483164994361795 +214908,1074.5400000118495,-0.054831589410156 +214909,1074.5450000118497,-0.054831528874275226 +214910,1074.5500000118498,-0.0548314683359755 +214911,1074.5550000118499,-0.05483140779525669 +214912,1074.56000001185,-0.0548313472521187 +214913,1074.56500001185,-0.0548312867065614 +214914,1074.5700000118502,-0.054831226158584656 +214915,1074.5750000118503,-0.054831165608188355 +214916,1074.5800000118504,-0.054831105055372364 +214917,1074.5850000118505,-0.05483104450013657 +214918,1074.5900000118506,-0.05483098394248084 +214919,1074.5950000118507,-0.05483092338240506 +214920,1074.6000000118509,-0.054830862819909114 +214921,1074.605000011851,-0.05483080225499288 +214922,1074.610000011851,-0.05483074168765622 +214923,1074.6150000118512,-0.05483068111789901 +214924,1074.6200000118513,-0.05483062054572113 +214925,1074.6250000118514,-0.05483055997112247 +214926,1074.6300000118515,-0.05483049939410289 +214927,1074.6350000118516,-0.05483043881466228 +214928,1074.6400000118517,-0.054830378232800514 +214929,1074.6450000118518,-0.054830317648517465 +214930,1074.650000011852,-0.05483025706181301 +214931,1074.655000011852,-0.05483019647268703 +214932,1074.6600000118522,-0.054830135881139414 +214933,1074.6650000118523,-0.05483007528717 +214934,1074.6700000118524,-0.054830014690778715 +214935,1074.6750000118525,-0.054829954091965394 +214936,1074.6800000118526,-0.05482989349072993 +214937,1074.6850000118527,-0.0548298328870722 +214938,1074.6900000118528,-0.05482977228099209 +214939,1074.695000011853,-0.05482971167248947 +214940,1074.700000011853,-0.054829651061564205 +214941,1074.7050000118531,-0.054829590448216184 +214942,1074.7100000118533,-0.054829529832445274 +214943,1074.7150000118534,-0.054829469214251365 +214944,1074.7200000118535,-0.05482940859363431 +214945,1074.7250000118536,-0.054829347970594015 +214946,1074.7300000118537,-0.05482928734513034 +214947,1074.7350000118538,-0.05482922671724316 +214948,1074.740000011854,-0.05482916608693236 +214949,1074.745000011854,-0.0548291054541978 +214950,1074.7500000118541,-0.054829044819039385 +214951,1074.7550000118542,-0.05482898418145696 +214952,1074.7600000118543,-0.05482892354145042 +214953,1074.7650000118545,-0.05482886289901964 +214954,1074.7700000118546,-0.05482880225416449 +214955,1074.7750000118547,-0.054828741606884834 +214956,1074.7800000118548,-0.05482868095718057 +214957,1074.785000011855,-0.05482862030505156 +214958,1074.790000011855,-0.054828559650497696 +214959,1074.795000011855,-0.05482849899351883 +214960,1074.8000000118552,-0.05482843833411487 +214961,1074.8050000118553,-0.05482837767228567 +214962,1074.8100000118554,-0.054828317008031105 +214963,1074.8150000118555,-0.054828256341351064 +214964,1074.8200000118557,-0.054828195672245415 +214965,1074.8250000118558,-0.054828135000714026 +214966,1074.8300000118559,-0.05482807432675678 +214967,1074.835000011856,-0.05482801365037355 +214968,1074.840000011856,-0.05482795297156422 +214969,1074.8450000118562,-0.05482789229032865 +214970,1074.8500000118563,-0.05482783160666674 +214971,1074.8550000118564,-0.054827770920578334 +214972,1074.8600000118565,-0.05482771023206333 +214973,1074.8650000118566,-0.05482764954112159 +214974,1074.8700000118567,-0.05482758884775301 +214975,1074.8750000118569,-0.05482752815195744 +214976,1074.880000011857,-0.05482746745373477 +214977,1074.885000011857,-0.054827406753084874 +214978,1074.8900000118572,-0.054827346050007636 +214979,1074.8950000118573,-0.054827285344502916 +214980,1074.9000000118574,-0.054827224636570596 +214981,1074.9050000118575,-0.054827163926210544 +214982,1074.9100000118576,-0.05482710321342265 +214983,1074.9150000118577,-0.05482704249820678 +214984,1074.9200000118578,-0.054826981780562806 +214985,1074.925000011858,-0.054826921060490606 +214986,1074.930000011858,-0.05482686033799006 +214987,1074.9350000118582,-0.05482679961306103 +214988,1074.9400000118583,-0.054826738885703406 +214989,1074.9450000118584,-0.054826678155917054 +214990,1074.9500000118585,-0.054826617423701846 +214991,1074.9550000118586,-0.05482655668905767 +214992,1074.9600000118587,-0.05482649595198438 +214993,1074.9650000118588,-0.054826435212481886 +214994,1074.970000011859,-0.05482637447055002 +214995,1074.975000011859,-0.05482631372618869 +214996,1074.9800000118591,-0.05482625297939775 +214997,1074.9850000118593,-0.05482619223017709 +214998,1074.9900000118594,-0.05482613147852658 +214999,1074.9950000118595,-0.054826070724446084 +215000,1075.0000000118596,-0.05482600996793549 +215001,1075.0050000118597,-0.05482594920899466 +215002,1075.0100000118598,-0.05482588844762347 +215003,1075.01500001186,-0.05482582768382181 +215004,1075.02000001186,-0.05482576691758955 +215005,1075.0250000118601,-0.05482570614892655 +215006,1075.0300000118602,-0.05482564537783269 +215007,1075.0350000118603,-0.05482558460430785 +215008,1075.0400000118605,-0.05482552382835191 +215009,1075.0450000118606,-0.054825463049964725 +215010,1075.0500000118607,-0.05482540226914618 +215011,1075.0550000118608,-0.05482534148589615 +215012,1075.060000011861,-0.05482528070021451 +215013,1075.065000011861,-0.05482521991210113 +215014,1075.070000011861,-0.05482515912155589 +215015,1075.0750000118612,-0.054825098328578646 +215016,1075.0800000118613,-0.05482503753316931 +215017,1075.0850000118614,-0.05482497673532773 +215018,1075.0900000118615,-0.054824915935053765 +215019,1075.0950000118617,-0.05482485513234731 +215020,1075.1000000118618,-0.054824794327208236 +215021,1075.1050000118619,-0.054824733519636425 +215022,1075.110000011862,-0.05482467270963174 +215023,1075.115000011862,-0.054824611897194064 +215024,1075.1200000118622,-0.05482455108232325 +215025,1075.1250000118623,-0.0548244902650192 +215026,1075.1300000118624,-0.05482442944528175 +215027,1075.1350000118625,-0.054824368623110804 +215028,1075.1400000118626,-0.05482430779850623 +215029,1075.1450000118627,-0.0548242469714679 +215030,1075.1500000118629,-0.05482418614199568 +215031,1075.155000011863,-0.054824125310089455 +215032,1075.160000011863,-0.0548240644757491 +215033,1075.1650000118632,-0.054824003638974474 +215034,1075.1700000118633,-0.05482394279976546 +215035,1075.1750000118634,-0.054823881958121934 +215036,1075.1800000118635,-0.054823821114043755 +215037,1075.1850000118636,-0.054823760267530816 +215038,1075.1900000118637,-0.05482369941858298 +215039,1075.1950000118638,-0.05482363856720012 +215040,1075.200000011864,-0.05482357771338211 +215041,1075.205000011864,-0.05482351685712882 +215042,1075.2100000118642,-0.05482345599844014 +215043,1075.2150000118643,-0.05482339513731591 +215044,1075.2200000118644,-0.05482333427375603 +215045,1075.2250000118645,-0.054823273407760366 +215046,1075.2300000118646,-0.05482321253932879 +215047,1075.2350000118647,-0.05482315166846118 +215048,1075.2400000118648,-0.054823090795157396 +215049,1075.245000011865,-0.05482302991941732 +215050,1075.250000011865,-0.05482296904124084 +215051,1075.2550000118651,-0.054822908160627806 +215052,1075.2600000118653,-0.05482284727757809 +215053,1075.2650000118654,-0.05482278639209157 +215054,1075.2700000118655,-0.054822725504168134 +215055,1075.2750000118656,-0.05482266461380763 +215056,1075.2800000118657,-0.05482260372100996 +215057,1075.2850000118658,-0.054822542825774964 +215058,1075.290000011866,-0.05482248192810253 +215059,1075.295000011866,-0.054822421027992535 +215060,1075.3000000118661,-0.05482236012544485 +215061,1075.3050000118662,-0.05482229922045934 +215062,1075.3100000118664,-0.054822238313035884 +215063,1075.3150000118665,-0.054822177403174355 +215064,1075.3200000118666,-0.05482211649087461 +215065,1075.3250000118667,-0.054822055576136536 +215066,1075.3300000118668,-0.05482199465896001 +215067,1075.335000011867,-0.0548219337393449 +215068,1075.340000011867,-0.05482187281729107 +215069,1075.3450000118671,-0.054821811892798396 +215070,1075.3500000118672,-0.05482175096586676 +215071,1075.3550000118673,-0.05482169003649601 +215072,1075.3600000118674,-0.05482162910468604 +215073,1075.3650000118676,-0.05482156817043672 +215074,1075.3700000118677,-0.05482150723374792 +215075,1075.3750000118678,-0.054821446294619505 +215076,1075.3800000118679,-0.05482138535305136 +215077,1075.385000011868,-0.054821324409043345 +215078,1075.390000011868,-0.054821263462595325 +215079,1075.3950000118682,-0.054821202513707194 +215080,1075.4000000118683,-0.054821141562378814 +215081,1075.4050000118684,-0.054821080608610046 +215082,1075.4100000118685,-0.05482101965240078 +215083,1075.4150000118686,-0.054820958693750865 +215084,1075.4200000118688,-0.054820897732660204 +215085,1075.4250000118689,-0.054820836769128634 +215086,1075.430000011869,-0.05482077580315605 +215087,1075.435000011869,-0.054820714834742316 +215088,1075.4400000118692,-0.054820653863887306 +215089,1075.4450000118693,-0.05482059289059089 +215090,1075.4500000118694,-0.054820531914852935 +215091,1075.4550000118695,-0.05482047093667332 +215092,1075.4600000118696,-0.05482040995605192 +215093,1075.4650000118697,-0.0548203489729886 +215094,1075.4700000118698,-0.05482028798748323 +215095,1075.47500001187,-0.054820226999535676 +215096,1075.48000001187,-0.054820166009145826 +215097,1075.4850000118702,-0.054820105016313535 +215098,1075.4900000118703,-0.05482004402103867 +215099,1075.4950000118704,-0.05481998302332112 +215100,1075.5000000118705,-0.054819922023160744 +215101,1075.5050000118706,-0.054819861020557414 +215102,1075.5100000118707,-0.05481980001551101 +215103,1075.5150000118708,-0.0548197390080214 +215104,1075.520000011871,-0.05481967799808845 +215105,1075.525000011871,-0.054819616985712034 +215106,1075.5300000118712,-0.05481955597089201 +215107,1075.5350000118713,-0.05481949495362828 +215108,1075.5400000118714,-0.05481943393392069 +215109,1075.5450000118715,-0.05481937291176911 +215110,1075.5500000118716,-0.054819311887173414 +215111,1075.5550000118717,-0.05481925086013348 +215112,1075.5600000118718,-0.05481918983064918 +215113,1075.565000011872,-0.05481912879872037 +215114,1075.570000011872,-0.05481906776434694 +215115,1075.5750000118721,-0.05481900672752875 +215116,1075.5800000118722,-0.05481894568826566 +215117,1075.5850000118724,-0.05481888464655756 +215118,1075.5900000118725,-0.054818823602404324 +215119,1075.5950000118726,-0.05481876255580579 +215120,1075.6000000118727,-0.05481870150676186 +215121,1075.6050000118728,-0.05481864045527239 +215122,1075.610000011873,-0.05481857940133725 +215123,1075.615000011873,-0.05481851834495632 +215124,1075.6200000118731,-0.05481845728612946 +215125,1075.6250000118732,-0.05481839622485654 +215126,1075.6300000118733,-0.05481833516113744 +215127,1075.6350000118734,-0.05481827409497202 +215128,1075.6400000118736,-0.05481821302636017 +215129,1075.6450000118737,-0.05481815195530173 +215130,1075.6500000118738,-0.054818090881796594 +215131,1075.6550000118739,-0.05481802980584462 +215132,1075.660000011874,-0.054817968727445675 +215133,1075.665000011874,-0.054817907646599634 +215134,1075.6700000118742,-0.05481784656330638 +215135,1075.6750000118743,-0.054817785477565766 +215136,1075.6800000118744,-0.054817724389377674 +215137,1075.6850000118745,-0.054817663298741964 +215138,1075.6900000118746,-0.054817602205658504 +215139,1075.6950000118748,-0.05481754111012717 +215140,1075.7000000118749,-0.054817480012147826 +215141,1075.705000011875,-0.05481741891172035 +215142,1075.710000011875,-0.054817357808844606 +215143,1075.7150000118752,-0.05481729670352047 +215144,1075.7200000118753,-0.054817235595747804 +215145,1075.7250000118754,-0.05481717448552648 +215146,1075.7300000118755,-0.05481711337285637 +215147,1075.7350000118756,-0.05481705225773733 +215148,1075.7400000118757,-0.054816991140169254 +215149,1075.7450000118758,-0.054816930020151984 +215150,1075.750000011876,-0.05481686889768541 +215151,1075.755000011876,-0.05481680777276939 +215152,1075.7600000118762,-0.0548167466454038 +215153,1075.7650000118763,-0.054816685515588506 +215154,1075.7700000118764,-0.054816624383323374 +215155,1075.7750000118765,-0.05481656324860828 +215156,1075.7800000118766,-0.05481650211144309 +215157,1075.7850000118767,-0.054816440971827675 +215158,1075.7900000118768,-0.0548163798297619 +215159,1075.795000011877,-0.054816318685245634 +215160,1075.800000011877,-0.05481625753827875 +215161,1075.8050000118772,-0.054816196388861115 +215162,1075.8100000118773,-0.05481613523699261 +215163,1075.8150000118774,-0.05481607408267308 +215164,1075.8200000118775,-0.054816012925902415 +215165,1075.8250000118776,-0.05481595176668047 +215166,1075.8300000118777,-0.05481589060500713 +215167,1075.8350000118778,-0.054815829440882244 +215168,1075.840000011878,-0.05481576827430568 +215169,1075.845000011878,-0.05481570710527733 +215170,1075.8500000118781,-0.05481564593379704 +215171,1075.8550000118782,-0.05481558475986469 +215172,1075.8600000118784,-0.054815523583480144 +215173,1075.8650000118785,-0.05481546240464327 +215174,1075.8700000118786,-0.054815401223353946 +215175,1075.8750000118787,-0.054815340039612026 +215176,1075.8800000118788,-0.054815278853417394 +215177,1075.885000011879,-0.054815217664769905 +215178,1075.890000011879,-0.054815156473669434 +215179,1075.8950000118791,-0.05481509528011584 +215180,1075.9000000118792,-0.05481503408410902 +215181,1075.9050000118793,-0.0548149728856488 +215182,1075.9100000118794,-0.05481491168473508 +215183,1075.9150000118796,-0.054814850481367715 +215184,1075.9200000118797,-0.054814789275546574 +215185,1075.9250000118798,-0.054814728067271536 +215186,1075.9300000118799,-0.054814666856542446 +215187,1075.93500001188,-0.0548146056433592 +215188,1075.94000001188,-0.05481454442772164 +215189,1075.9450000118802,-0.05481448320962966 +215190,1075.9500000118803,-0.0548144219890831 +215191,1075.9550000118804,-0.05481436076608185 +215192,1075.9600000118805,-0.05481429954062577 +215193,1075.9650000118806,-0.05481423831271472 +215194,1075.9700000118808,-0.05481417708234858 +215195,1075.9750000118809,-0.054814115849527216 +215196,1075.980000011881,-0.0548140546142505 +215197,1075.985000011881,-0.05481399337651829 +215198,1075.9900000118812,-0.05481393213633045 +215199,1075.9950000118813,-0.054813870893686854 +215200,1076.0000000118814,-0.05481380964858737 +215201,1076.0050000118815,-0.05481374840103186 +215202,1076.0100000118816,-0.0548136871510202 +215203,1076.0150000118817,-0.05481362589855226 +215204,1076.0200000118818,-0.0548135646436279 +215205,1076.025000011882,-0.05481350338624699 +215206,1076.030000011882,-0.0548134421264094 +215207,1076.0350000118822,-0.05481338086411499 +215208,1076.0400000118823,-0.05481331959936363 +215209,1076.0450000118824,-0.05481325833215519 +215210,1076.0500000118825,-0.054813197062489535 +215211,1076.0550000118826,-0.05481313579036653 +215212,1076.0600000118827,-0.05481307451578604 +215213,1076.0650000118828,-0.054813013238747946 +215214,1076.070000011883,-0.05481295195925211 +215215,1076.075000011883,-0.05481289067729839 +215216,1076.0800000118832,-0.054812829392886654 +215217,1076.0850000118833,-0.054812768106016777 +215218,1076.0900000118834,-0.054812706816688615 +215219,1076.0950000118835,-0.05481264552490205 +215220,1076.1000000118836,-0.05481258423065694 +215221,1076.1050000118837,-0.054812522933953146 +215222,1076.1100000118838,-0.05481246163479055 +215223,1076.115000011884,-0.05481240033316901 +215224,1076.120000011884,-0.05481233902908839 +215225,1076.1250000118841,-0.05481227772254856 +215226,1076.1300000118842,-0.05481221641354938 +215227,1076.1350000118844,-0.054812155102090726 +215228,1076.1400000118845,-0.054812093788172464 +215229,1076.1450000118846,-0.054812032471794454 +215230,1076.1500000118847,-0.05481197115295657 +215231,1076.1550000118848,-0.054811909831658685 +215232,1076.160000011885,-0.054811848507900635 +215233,1076.165000011885,-0.05481178718168232 +215234,1076.1700000118851,-0.0548117258530036 +215235,1076.1750000118852,-0.05481166452186432 +215236,1076.1800000118853,-0.054811603188264356 +215237,1076.1850000118854,-0.05481154185220359 +215238,1076.1900000118856,-0.05481148051368187 +215239,1076.1950000118857,-0.05481141917269908 +215240,1076.2000000118858,-0.05481135782925507 +215241,1076.2050000118859,-0.05481129648334971 +215242,1076.210000011886,-0.054811235134982865 +215243,1076.215000011886,-0.054811173784154406 +215244,1076.2200000118862,-0.0548111124308642 +215245,1076.2250000118863,-0.054811051075112104 +215246,1076.2300000118864,-0.054810989716898 +215247,1076.2350000118865,-0.05481092835622174 +215248,1076.2400000118867,-0.0548108669930832 +215249,1076.2450000118868,-0.05481080562748222 +215250,1076.2500000118869,-0.054810744259418696 +215251,1076.255000011887,-0.05481068288889249 +215252,1076.260000011887,-0.05481062151590345 +215253,1076.2650000118872,-0.05481056014045146 +215254,1076.2700000118873,-0.054810498762536373 +215255,1076.2750000118874,-0.05481043738215806 +215256,1076.2800000118875,-0.05481037599931638 +215257,1076.2850000118876,-0.05481031461401121 +215258,1076.2900000118877,-0.05481025322624241 +215259,1076.2950000118879,-0.05481019183600985 +215260,1076.300000011888,-0.054810130443313385 +215261,1076.305000011888,-0.05481006904815289 +215262,1076.3100000118882,-0.05481000765052822 +215263,1076.3150000118883,-0.05480994625043926 +215264,1076.3200000118884,-0.05480988484788584 +215265,1076.3250000118885,-0.05480982344286787 +215266,1076.3300000118886,-0.05480976203538518 +215267,1076.3350000118887,-0.05480970062543764 +215268,1076.3400000118888,-0.05480963921302514 +215269,1076.345000011889,-0.05480957779814752 +215270,1076.350000011889,-0.054809516380804654 +215271,1076.3550000118892,-0.05480945496099641 +215272,1076.3600000118893,-0.05480939353872265 +215273,1076.3650000118894,-0.054809332113983235 +215274,1076.3700000118895,-0.05480927068677804 +215275,1076.3750000118896,-0.05480920925710692 +215276,1076.3800000118897,-0.05480914782496973 +215277,1076.3850000118898,-0.05480908639036635 +215278,1076.39000001189,-0.05480902495329664 +215279,1076.39500001189,-0.054808963513760474 +215280,1076.4000000118901,-0.05480890207175772 +215281,1076.4050000118903,-0.05480884062728822 +215282,1076.4100000118904,-0.054808779180351846 +215283,1076.4150000118905,-0.054808717730948475 +215284,1076.4200000118906,-0.054808656279077966 +215285,1076.4250000118907,-0.05480859482474018 +215286,1076.4300000118908,-0.05480853336793499 +215287,1076.435000011891,-0.05480847190866224 +215288,1076.440000011891,-0.054808410446921814 +215289,1076.4450000118911,-0.05480834898271357 +215290,1076.4500000118912,-0.054808287516037384 +215291,1076.4550000118913,-0.054808226046893095 +215292,1076.4600000118915,-0.05480816457528059 +215293,1076.4650000118916,-0.05480810310119972 +215294,1076.4700000118917,-0.05480804162465036 +215295,1076.4750000118918,-0.05480798014563236 +215296,1076.480000011892,-0.05480791866414559 +215297,1076.485000011892,-0.05480785718018993 +215298,1076.490000011892,-0.05480779569376522 +215299,1076.4950000118922,-0.054807734204871325 +215300,1076.5000000118923,-0.05480767271350813 +215301,1076.5050000118924,-0.05480761121967548 +215302,1076.5100000118925,-0.054807549723373254 +215303,1076.5150000118927,-0.054807488224601304 +215304,1076.5200000118928,-0.0548074267233595 +215305,1076.5250000118929,-0.05480736521964769 +215306,1076.530000011893,-0.054807303713465774 +215307,1076.535000011893,-0.054807242204813575 +215308,1076.5400000118932,-0.054807180693690984 +215309,1076.5450000118933,-0.05480711918009784 +215310,1076.5500000118934,-0.054807057664034035 +215311,1076.5550000118935,-0.054806996145499415 +215312,1076.5600000118936,-0.05480693462449385 +215313,1076.5650000118937,-0.05480687310101721 +215314,1076.5700000118939,-0.054806811575069336 +215315,1076.575000011894,-0.05480675004665011 +215316,1076.580000011894,-0.05480668851575939 +215317,1076.5850000118942,-0.05480662698239705 +215318,1076.5900000118943,-0.05480656544656293 +215319,1076.5950000118944,-0.054806503908256914 +215320,1076.6000000118945,-0.05480644236747885 +215321,1076.6050000118946,-0.05480638082422861 +215322,1076.6100000118947,-0.054806319278506065 +215323,1076.6150000118948,-0.05480625773031106 +215324,1076.620000011895,-0.05480619617964348 +215325,1076.625000011895,-0.05480613462650317 +215326,1076.6300000118952,-0.05480607307088999 +215327,1076.6350000118953,-0.05480601151280382 +215328,1076.6400000118954,-0.054805949952244505 +215329,1076.6450000118955,-0.05480588838921192 +215330,1076.6500000118956,-0.05480582682370593 +215331,1076.6550000118957,-0.054805765255726384 +215332,1076.6600000118958,-0.05480570368527316 +215333,1076.665000011896,-0.054805642112346106 +215334,1076.670000011896,-0.0548055805369451 +215335,1076.6750000118961,-0.05480551895907 +215336,1076.6800000118963,-0.05480545737872066 +215337,1076.6850000118964,-0.05480539579589696 +215338,1076.6900000118965,-0.054805334210598744 +215339,1076.6950000118966,-0.05480527262282588 +215340,1076.7000000118967,-0.054805211032578245 +215341,1076.7050000118968,-0.054805149439855684 +215342,1076.710000011897,-0.05480508784465806 +215343,1076.715000011897,-0.05480502624698524 +215344,1076.7200000118971,-0.05480496464683708 +215345,1076.7250000118972,-0.05480490304421346 +215346,1076.7300000118973,-0.05480484143911423 +215347,1076.7350000118975,-0.05480477983153925 +215348,1076.7400000118976,-0.054804718221488385 +215349,1076.7450000118977,-0.05480465660896149 +215350,1076.7500000118978,-0.05480459499395845 +215351,1076.755000011898,-0.0548045333764791 +215352,1076.760000011898,-0.05480447175652332 +215353,1076.765000011898,-0.05480441013409096 +215354,1076.7700000118982,-0.054804348509181894 +215355,1076.7750000118983,-0.05480428688179598 +215356,1076.7800000118984,-0.05480422525193306 +215357,1076.7850000118985,-0.054804163619593026 +215358,1076.7900000118987,-0.05480410198477573 +215359,1076.7950000118988,-0.05480404034748102 +215360,1076.8000000118989,-0.054803978707708784 +215361,1076.805000011899,-0.05480391706545886 +215362,1076.810000011899,-0.05480385542073113 +215363,1076.8150000118992,-0.05480379377352543 +215364,1076.8200000118993,-0.05480373212384164 +215365,1076.8250000118994,-0.05480367047167961 +215366,1076.8300000118995,-0.05480360881703922 +215367,1076.8350000118996,-0.054803547159920314 +215368,1076.8400000118997,-0.05480348550032277 +215369,1076.8450000118999,-0.05480342383824642 +215370,1076.8500000119,-0.05480336217369116 +215371,1076.8550000119,-0.05480330050665683 +215372,1076.8600000119002,-0.05480323883714328 +215373,1076.8650000119003,-0.0548031771651504 +215374,1076.8700000119004,-0.05480311549067804 +215375,1076.8750000119005,-0.05480305381372607 +215376,1076.8800000119006,-0.05480299213429433 +215377,1076.8850000119007,-0.0548029304523827 +215378,1076.8900000119008,-0.05480286876799103 +215379,1076.895000011901,-0.05480280708111918 +215380,1076.900000011901,-0.054802745391767035 +215381,1076.9050000119012,-0.05480268369993442 +215382,1076.9100000119013,-0.05480262200562122 +215383,1076.9150000119014,-0.05480256030882728 +215384,1076.9200000119015,-0.054802498609552476 +215385,1076.9250000119016,-0.05480243690779666 +215386,1076.9300000119017,-0.054802375203559704 +215387,1076.9350000119018,-0.05480231349684145 +215388,1076.940000011902,-0.05480225178764178 +215389,1076.945000011902,-0.05480219007596054 +215390,1076.9500000119021,-0.054802128361797584 +215391,1076.9550000119023,-0.054802066645152796 +215392,1076.9600000119024,-0.054802004926026014 +215393,1076.9650000119025,-0.054801943204417114 +215394,1076.9700000119026,-0.05480188148032595 +215395,1076.9750000119027,-0.05480181975375237 +215396,1076.9800000119028,-0.05480175802469626 +215397,1076.985000011903,-0.05480169629315746 +215398,1076.990000011903,-0.05480163455913585 +215399,1076.9950000119031,-0.054801572822631275 +215400,1077.0000000119032,-0.05480151108364359 +215401,1077.0050000119033,-0.05480144934217266 +215402,1077.0100000119035,-0.05480138759821836 +215403,1077.0150000119036,-0.05480132585178053 +215404,1077.0200000119037,-0.05480126410285905 +215405,1077.0250000119038,-0.05480120235145377 +215406,1077.030000011904,-0.054801140597564545 +215407,1077.035000011904,-0.05480107884119123 +215408,1077.040000011904,-0.0548010170823337 +215409,1077.0450000119042,-0.05480095532099181 +215410,1077.0500000119043,-0.05480089355716541 +215411,1077.0550000119044,-0.054800831790854376 +215412,1077.0600000119045,-0.05480077002205856 +215413,1077.0650000119047,-0.05480070825077782 +215414,1077.0700000119048,-0.05480064647701202 +215415,1077.0750000119049,-0.054800584700761025 +215416,1077.080000011905,-0.05480052292202468 +215417,1077.085000011905,-0.05480046114080285 +215418,1077.0900000119052,-0.0548003993570954 +215419,1077.0950000119053,-0.05480033757090219 +215420,1077.1000000119054,-0.05480027578222307 +215421,1077.1050000119055,-0.0548002139910579 +215422,1077.1100000119056,-0.05480015219740656 +215423,1077.1150000119057,-0.05480009040126889 +215424,1077.1200000119059,-0.05480002860264475 +215425,1077.125000011906,-0.054799966801534 +215426,1077.130000011906,-0.05479990499793651 +215427,1077.1350000119062,-0.05479984319185212 +215428,1077.1400000119063,-0.054799781383280705 +215429,1077.1450000119064,-0.05479971957222212 +215430,1077.1500000119065,-0.05479965775867622 +215431,1077.1550000119066,-0.054799595942642866 +215432,1077.1600000119067,-0.05479953412412193 +215433,1077.1650000119068,-0.054799472303113266 +215434,1077.170000011907,-0.054799410479616714 +215435,1077.175000011907,-0.05479934865363214 +215436,1077.1800000119072,-0.054799286825159416 +215437,1077.1850000119073,-0.0547992249941984 +215438,1077.1900000119074,-0.05479916316074893 +215439,1077.1950000119075,-0.05479910132481089 +215440,1077.2000000119076,-0.054799039486384135 +215441,1077.2050000119077,-0.0547989776454685 +215442,1077.2100000119078,-0.05479891580206386 +215443,1077.215000011908,-0.05479885395617008 +215444,1077.220000011908,-0.05479879210778701 +215445,1077.2250000119082,-0.054798730256914514 +215446,1077.2300000119083,-0.05479866840355244 +215447,1077.2350000119084,-0.054798606547700676 +215448,1077.2400000119085,-0.05479854468935905 +215449,1077.2450000119086,-0.05479848282852743 +215450,1077.2500000119087,-0.054798420965205666 +215451,1077.2550000119088,-0.05479835909939362 +215452,1077.260000011909,-0.054798297231091156 +215453,1077.265000011909,-0.05479823536029814 +215454,1077.2700000119091,-0.054798173487014414 +215455,1077.2750000119092,-0.05479811161123983 +215456,1077.2800000119094,-0.05479804973297428 +215457,1077.2850000119095,-0.05479798785221759 +215458,1077.2900000119096,-0.05479792596896964 +215459,1077.2950000119097,-0.054797864083230265 +215460,1077.3000000119098,-0.054797802194999336 +215461,1077.30500001191,-0.05479774030427672 +215462,1077.31000001191,-0.05479767841106225 +215463,1077.3150000119101,-0.054797616515355814 +215464,1077.3200000119102,-0.05479755461715725 +215465,1077.3250000119103,-0.05479749271646641 +215466,1077.3300000119104,-0.05479743081328317 +215467,1077.3350000119106,-0.05479736890760738 +215468,1077.3400000119107,-0.054797306999438904 +215469,1077.3450000119108,-0.05479724508877759 +215470,1077.3500000119109,-0.05479718317562329 +215471,1077.355000011911,-0.054797121259975885 +215472,1077.360000011911,-0.05479705934183521 +215473,1077.3650000119112,-0.05479699742120113 +215474,1077.3700000119113,-0.0547969354980735 +215475,1077.3750000119114,-0.05479687357245217 +215476,1077.3800000119115,-0.05479681164433703 +215477,1077.3850000119116,-0.05479674971372791 +215478,1077.3900000119118,-0.054796687780624666 +215479,1077.3950000119119,-0.05479662584502717 +215480,1077.400000011912,-0.05479656390693526 +215481,1077.405000011912,-0.05479650196634882 +215482,1077.4100000119122,-0.05479644002326768 +215483,1077.4150000119123,-0.0547963780776917 +215484,1077.4200000119124,-0.05479631612962075 +215485,1077.4250000119125,-0.05479625417905468 +215486,1077.4300000119126,-0.05479619222599337 +215487,1077.4350000119127,-0.05479613027043664 +215488,1077.4400000119128,-0.054796068312384365 +215489,1077.445000011913,-0.054796006351836395 +215490,1077.450000011913,-0.054795944388792595 +215491,1077.4550000119132,-0.05479588242325282 +215492,1077.4600000119133,-0.05479582045521693 +215493,1077.4650000119134,-0.05479575848468477 +215494,1077.4700000119135,-0.0547956965116562 +215495,1077.4750000119136,-0.054795634536131094 +215496,1077.4800000119137,-0.05479557255810929 +215497,1077.4850000119138,-0.05479551057759065 +215498,1077.490000011914,-0.05479544859457504 +215499,1077.495000011914,-0.054795386609062295 +215500,1077.5000000119142,-0.05479532462105229 +215501,1077.5050000119143,-0.05479526263054487 +215502,1077.5100000119144,-0.05479520063753989 +215503,1077.5150000119145,-0.054795138642037215 +215504,1077.5200000119146,-0.05479507664403671 +215505,1077.5250000119147,-0.05479501464353821 +215506,1077.5300000119148,-0.05479495264054158 +215507,1077.535000011915,-0.05479489063504669 +215508,1077.540000011915,-0.05479482862705338 +215509,1077.5450000119151,-0.054794766616561505 +215510,1077.5500000119152,-0.05479470460357092 +215511,1077.5550000119154,-0.054794642588081505 +215512,1077.5600000119155,-0.05479458057009309 +215513,1077.5650000119156,-0.05479451854960553 +215514,1077.5700000119157,-0.05479445652661869 +215515,1077.5750000119158,-0.05479439450113243 +215516,1077.580000011916,-0.0547943324731466 +215517,1077.585000011916,-0.05479427044266106 +215518,1077.5900000119161,-0.054794208409675665 +215519,1077.5950000119162,-0.054794146374190264 +215520,1077.6000000119163,-0.05479408433620472 +215521,1077.6050000119164,-0.05479402229571889 +215522,1077.6100000119166,-0.054793960252732615 +215523,1077.6150000119167,-0.05479389820724578 +215524,1077.6200000119168,-0.05479383615925821 +215525,1077.6250000119169,-0.05479377410876977 +215526,1077.630000011917,-0.05479371205578032 +215527,1077.635000011917,-0.05479365000028972 +215528,1077.6400000119172,-0.05479358794229781 +215529,1077.6450000119173,-0.05479352588180446 +215530,1077.6500000119174,-0.054793463818809514 +215531,1077.6550000119175,-0.054793401753312834 +215532,1077.6600000119176,-0.05479333968531428 +215533,1077.6650000119178,-0.05479327761481369 +215534,1077.6700000119179,-0.054793215541810936 +215535,1077.675000011918,-0.054793153466305866 +215536,1077.680000011918,-0.05479309138829834 +215537,1077.6850000119182,-0.054793029307788205 +215538,1077.6900000119183,-0.05479296722477533 +215539,1077.6950000119184,-0.054792905139259544 +215540,1077.7000000119185,-0.05479284305124073 +215541,1077.7050000119186,-0.05479278096071872 +215542,1077.7100000119187,-0.05479271886769338 +215543,1077.7150000119188,-0.05479265677216458 +215544,1077.720000011919,-0.054792594674132146 +215545,1077.725000011919,-0.05479253257359595 +215546,1077.7300000119192,-0.05479247047055584 +215547,1077.7350000119193,-0.05479240836501168 +215548,1077.7400000119194,-0.05479234625696332 +215549,1077.7450000119195,-0.05479228414641061 +215550,1077.7500000119196,-0.05479222203335341 +215551,1077.7550000119197,-0.054792159917791565 +215552,1077.7600000119198,-0.054792097799724944 +215553,1077.76500001192,-0.05479203567915339 +215554,1077.77000001192,-0.054791973556076755 +215555,1077.7750000119202,-0.05479191143049491 +215556,1077.7800000119203,-0.054791849302407686 +215557,1077.7850000119204,-0.05479178717181496 +215558,1077.7900000119205,-0.05479172503871658 +215559,1077.7950000119206,-0.05479166290311238 +215560,1077.8000000119207,-0.054791600765002245 +215561,1077.8050000119208,-0.05479153862438601 +215562,1077.810000011921,-0.05479147648126353 +215563,1077.815000011921,-0.05479141433563467 +215564,1077.8200000119211,-0.054791352187499275 +215565,1077.8250000119212,-0.05479129003685719 +215566,1077.8300000119214,-0.05479122788370829 +215567,1077.8350000119215,-0.05479116572805242 +215568,1077.8400000119216,-0.05479110356988943 +215569,1077.8450000119217,-0.05479104140921918 +215570,1077.8500000119218,-0.0547909792460415 +215571,1077.855000011922,-0.05479091708035628 +215572,1077.860000011922,-0.05479085491216336 +215573,1077.8650000119221,-0.054790792741462584 +215574,1077.8700000119222,-0.05479073056825381 +215575,1077.8750000119223,-0.054790668392536886 +215576,1077.8800000119224,-0.05479060621431168 +215577,1077.8850000119226,-0.05479054403357805 +215578,1077.8900000119227,-0.054790481850335825 +215579,1077.8950000119228,-0.05479041966458487 +215580,1077.9000000119229,-0.05479035747632506 +215581,1077.905000011923,-0.05479029528555621 +215582,1077.910000011923,-0.0547902330922782 +215583,1077.9150000119232,-0.05479017089649087 +215584,1077.9200000119233,-0.054790108698194076 +215585,1077.9250000119234,-0.05479004649738768 +215586,1077.9300000119235,-0.05478998429407152 +215587,1077.9350000119236,-0.054789922088245464 +215588,1077.9400000119238,-0.05478985987990936 +215589,1077.9450000119239,-0.05478979766906305 +215590,1077.950000011924,-0.054789735455706395 +215591,1077.955000011924,-0.05478967323983925 +215592,1077.9600000119242,-0.054789611021461467 +215593,1077.9650000119243,-0.0547895488005729 +215594,1077.9700000119244,-0.054789486577173405 +215595,1077.9750000119245,-0.05478942435126284 +215596,1077.9800000119246,-0.054789362122841044 +215597,1077.9850000119247,-0.05478929989190786 +215598,1077.9900000119248,-0.054789237658463164 +215599,1077.995000011925,-0.0547891754225068 +215600,1078.000000011925,-0.05478911318403861 +215601,1078.0050000119252,-0.05478905094305847 +215602,1078.0100000119253,-0.05478898869956622 +215603,1078.0150000119254,-0.054788926453561704 +215604,1078.0200000119255,-0.05478886420504477 +215605,1078.0250000119256,-0.0547888019540153 +215606,1078.0300000119257,-0.05478873970047312 +215607,1078.0350000119258,-0.05478867744441809 +215608,1078.040000011926,-0.05478861518585006 +215609,1078.045000011926,-0.0547885529247689 +215610,1078.0500000119262,-0.05478849066117444 +215611,1078.0550000119263,-0.054788428395066535 +215612,1078.0600000119264,-0.05478836612644504 +215613,1078.0650000119265,-0.054788303855309806 +215614,1078.0700000119266,-0.054788241581660686 +215615,1078.0750000119267,-0.054788179305497536 +215616,1078.0800000119268,-0.05478811702682022 +215617,1078.085000011927,-0.054788054745628555 +215618,1078.090000011927,-0.05478799246192243 +215619,1078.0950000119271,-0.054787930175701674 +215620,1078.1000000119272,-0.05478786788696614 +215621,1078.1050000119274,-0.05478780559571568 +215622,1078.1100000119275,-0.05478774330195016 +215623,1078.1150000119276,-0.054787681005669414 +215624,1078.1200000119277,-0.054787618706873306 +215625,1078.1250000119278,-0.05478755640556169 +215626,1078.130000011928,-0.05478749410173441 +215627,1078.135000011928,-0.05478743179539131 +215628,1078.1400000119281,-0.054787369486532254 +215629,1078.1450000119282,-0.0547873071751571 +215630,1078.1500000119283,-0.054787244861265676 +215631,1078.1550000119285,-0.05478718254485784 +215632,1078.1600000119286,-0.054787120225933454 +215633,1078.1650000119287,-0.054787057904492356 +215634,1078.1700000119288,-0.05478699558053441 +215635,1078.175000011929,-0.054786933254059464 +215636,1078.180000011929,-0.05478687092506738 +215637,1078.185000011929,-0.05478680859355798 +215638,1078.1900000119292,-0.054786746259531144 +215639,1078.1950000119293,-0.05478668392298671 +215640,1078.2000000119294,-0.05478662158392453 +215641,1078.2050000119295,-0.054786559242344456 +215642,1078.2100000119297,-0.05478649689824633 +215643,1078.2150000119298,-0.05478643455163001 +215644,1078.2200000119299,-0.05478637220249535 +215645,1078.22500001193,-0.05478630985084219 +215646,1078.23000001193,-0.0547862474966704 +215647,1078.2350000119302,-0.05478618513997982 +215648,1078.2400000119303,-0.0547861227807703 +215649,1078.2450000119304,-0.05478606041904169 +215650,1078.2500000119305,-0.05478599805479384 +215651,1078.2550000119306,-0.0547859356880266 +215652,1078.2600000119307,-0.05478587331873982 +215653,1078.2650000119309,-0.054785810946933355 +215654,1078.270000011931,-0.05478574857260706 +215655,1078.275000011931,-0.054785686195760776 +215656,1078.2800000119312,-0.054785623816394347 +215657,1078.2850000119313,-0.05478556143450764 +215658,1078.2900000119314,-0.0547854990501005 +215659,1078.2950000119315,-0.054785436663172773 +215660,1078.3000000119316,-0.05478537427372432 +215661,1078.3050000119317,-0.054785311881754964 +215662,1078.3100000119318,-0.05478524948726458 +215663,1078.315000011932,-0.05478518709025302 +215664,1078.320000011932,-0.054785124690720124 +215665,1078.3250000119322,-0.054785062288665747 +215666,1078.3300000119323,-0.05478499988408973 +215667,1078.3350000119324,-0.05478493747699193 +215668,1078.3400000119325,-0.05478487506737219 +215669,1078.3450000119326,-0.05478481265523037 +215670,1078.3500000119327,-0.05478475024056631 +215671,1078.3550000119328,-0.05478468782337987 +215672,1078.360000011933,-0.054784625403670885 +215673,1078.365000011933,-0.054784562981439223 +215674,1078.3700000119331,-0.05478450055668472 +215675,1078.3750000119333,-0.05478443812940723 +215676,1078.3800000119334,-0.05478437569960661 +215677,1078.3850000119335,-0.0547843132672827 +215678,1078.3900000119336,-0.05478425083243535 +215679,1078.3950000119337,-0.0547841883950644 +215680,1078.4000000119338,-0.05478412595516973 +215681,1078.405000011934,-0.05478406351275116 +215682,1078.410000011934,-0.05478400106780855 +215683,1078.4150000119341,-0.05478393862034175 +215684,1078.4200000119342,-0.0547838761703506 +215685,1078.4250000119343,-0.05478381371783496 +215686,1078.4300000119345,-0.05478375126279468 +215687,1078.4350000119346,-0.0547836888052296 +215688,1078.4400000119347,-0.05478362634513958 +215689,1078.4450000119348,-0.054783563882524464 +215690,1078.450000011935,-0.05478350141738409 +215691,1078.455000011935,-0.054783438949718315 +215692,1078.460000011935,-0.054783376479526996 +215693,1078.4650000119352,-0.054783314006809976 +215694,1078.4700000119353,-0.0547832515315671 +215695,1078.4750000119354,-0.054783189053798226 +215696,1078.4800000119355,-0.0547831265735032 +215697,1078.4850000119357,-0.054783064090681864 +215698,1078.4900000119358,-0.054783001605334065 +215699,1078.4950000119359,-0.05478293911745966 +215700,1078.500000011936,-0.054782876627058504 +215701,1078.505000011936,-0.05478281413413042 +215702,1078.5100000119362,-0.05478275163867528 +215703,1078.5150000119363,-0.054782689140692925 +215704,1078.5200000119364,-0.05478262664018321 +215705,1078.5250000119365,-0.05478256413714597 +215706,1078.5300000119366,-0.054782501631581056 +215707,1078.5350000119367,-0.05478243912348833 +215708,1078.5400000119369,-0.054782376612867625 +215709,1078.545000011937,-0.05478231409971879 +215710,1078.550000011937,-0.05478225158404169 +215711,1078.5550000119372,-0.05478218906583615 +215712,1078.5600000119373,-0.05478212654510203 +215713,1078.5650000119374,-0.05478206402183919 +215714,1078.5700000119375,-0.05478200149604746 +215715,1078.5750000119376,-0.05478193896772669 +215716,1078.5800000119377,-0.05478187643687673 +215717,1078.5850000119378,-0.054781813903497435 +215718,1078.590000011938,-0.054781751367588644 +215719,1078.595000011938,-0.054781688829150216 +215720,1078.6000000119382,-0.054781626288181985 +215721,1078.6050000119383,-0.05478156374468379 +215722,1078.6100000119384,-0.054781501198655505 +215723,1078.6150000119385,-0.05478143865009697 +215724,1078.6200000119386,-0.05478137609900803 +215725,1078.6250000119387,-0.05478131354538853 +215726,1078.6300000119388,-0.05478125098923832 +215727,1078.635000011939,-0.05478118843055724 +215728,1078.640000011939,-0.05478112586934513 +215729,1078.6450000119391,-0.05478106330560186 +215730,1078.6500000119393,-0.05478100073932727 +215731,1078.6550000119394,-0.05478093817052121 +215732,1078.6600000119395,-0.054780875599183515 +215733,1078.6650000119396,-0.05478081302531405 +215734,1078.6700000119397,-0.05478075044891264 +215735,1078.6750000119398,-0.054780687869979146 +215736,1078.68000001194,-0.05478062528851342 +215737,1078.68500001194,-0.054780562704515305 +215738,1078.6900000119401,-0.054780500117984646 +215739,1078.6950000119402,-0.05478043752892128 +215740,1078.7000000119403,-0.054780374937325065 +215741,1078.7050000119405,-0.054780312343195844 +215742,1078.7100000119406,-0.05478024974653347 +215743,1078.7150000119407,-0.05478018714733779 +215744,1078.7200000119408,-0.05478012454560863 +215745,1078.725000011941,-0.05478006194134587 +215746,1078.730000011941,-0.05477999933454933 +215747,1078.735000011941,-0.05477993672521887 +215748,1078.7400000119412,-0.05477987411335434 +215749,1078.7450000119413,-0.05477981149895558 +215750,1078.7500000119414,-0.05477974888202243 +215751,1078.7550000119415,-0.05477968626255475 +215752,1078.7600000119417,-0.054779623640552375 +215753,1078.7650000119418,-0.05477956101601515 +215754,1078.7700000119419,-0.05477949838894294 +215755,1078.775000011942,-0.05477943575933557 +215756,1078.780000011942,-0.0547793731271929 +215757,1078.7850000119422,-0.05477931049251477 +215758,1078.7900000119423,-0.05477924785530102 +215759,1078.7950000119424,-0.05477918521555151 +215760,1078.8000000119425,-0.05477912257326608 +215761,1078.8050000119426,-0.05477905992844457 +215762,1078.8100000119427,-0.05477899728108683 +215763,1078.8150000119429,-0.05477893463119271 +215764,1078.820000011943,-0.05477887197876206 +215765,1078.825000011943,-0.05477880932379472 +215766,1078.8300000119432,-0.05477874666629053 +215767,1078.8350000119433,-0.05477868400624935 +215768,1078.8400000119434,-0.05477862134367101 +215769,1078.8450000119435,-0.054778558678555356 +215770,1078.8500000119436,-0.05477849601090225 +215771,1078.8550000119437,-0.05477843334071153 +215772,1078.8600000119438,-0.054778370667983044 +215773,1078.865000011944,-0.05477830799271662 +215774,1078.870000011944,-0.05477824531491213 +215775,1078.8750000119442,-0.054778182634569406 +215776,1078.8800000119443,-0.054778119951688284 +215777,1078.8850000119444,-0.054778057266268616 +215778,1078.8900000119445,-0.05477799457831026 +215779,1078.8950000119446,-0.054777931887813054 +215780,1078.9000000119447,-0.05477786919477684 +215781,1078.9050000119448,-0.05477780649920146 +215782,1078.910000011945,-0.05477774380108677 +215783,1078.915000011945,-0.054777681100432615 +215784,1078.9200000119451,-0.054777618397238825 +215785,1078.9250000119453,-0.054777555691505254 +215786,1078.9300000119454,-0.05477749298323176 +215787,1078.9350000119455,-0.05477743027241816 +215788,1078.9400000119456,-0.054777367559064316 +215789,1078.9450000119457,-0.05477730484317009 +215790,1078.9500000119458,-0.054777242124735295 +215791,1078.955000011946,-0.05477717940375979 +215792,1078.960000011946,-0.054777116680243425 +215793,1078.9650000119461,-0.05477705395418603 +215794,1078.9700000119462,-0.05477699122558747 +215795,1078.9750000119463,-0.05477692849444756 +215796,1078.9800000119465,-0.05477686576076617 +215797,1078.9850000119466,-0.054776803024543144 +215798,1078.9900000119467,-0.054776740285778315 +215799,1078.9950000119468,-0.05477667754447154 +215800,1079.000000011947,-0.05477661480062265 +215801,1079.005000011947,-0.0547765520542315 +215802,1079.010000011947,-0.05477648930529793 +215803,1079.0150000119472,-0.054776426553821776 +215804,1079.0200000119473,-0.05477636379980289 +215805,1079.0250000119474,-0.05477630104324112 +215806,1079.0300000119475,-0.05477623828413632 +215807,1079.0350000119477,-0.054776175522488306 +215808,1079.0400000119478,-0.054776112758296934 +215809,1079.0450000119479,-0.05477604999156206 +215810,1079.050000011948,-0.054775987222283516 +215811,1079.055000011948,-0.054775924450461165 +215812,1079.0600000119482,-0.05477586167609482 +215813,1079.0650000119483,-0.05477579889918434 +215814,1079.0700000119484,-0.05477573611972957 +215815,1079.0750000119485,-0.05477567333773037 +215816,1079.0800000119486,-0.054775610553186554 +215817,1079.0850000119488,-0.05477554776609797 +215818,1079.0900000119489,-0.054775484976464485 +215819,1079.095000011949,-0.05477542218428593 +215820,1079.100000011949,-0.05477535938956214 +215821,1079.1050000119492,-0.05477529659229296 +215822,1079.1100000119493,-0.05477523379247825 +215823,1079.1150000119494,-0.05477517099011783 +215824,1079.1200000119495,-0.054775108185211564 +215825,1079.1250000119496,-0.054775045377759284 +215826,1079.1300000119497,-0.054774982567760845 +215827,1079.1350000119498,-0.054774919755216075 +215828,1079.14000001195,-0.054774856940124836 +215829,1079.14500001195,-0.05477479412248695 +215830,1079.1500000119502,-0.054774731302302274 +215831,1079.1550000119503,-0.05477466847957065 +215832,1079.1600000119504,-0.054774605654291916 +215833,1079.1650000119505,-0.05477454282646592 +215834,1079.1700000119506,-0.054774479996092494 +215835,1079.1750000119507,-0.054774417163171496 +215836,1079.1800000119508,-0.05477435432770275 +215837,1079.185000011951,-0.054774291489686135 +215838,1079.190000011951,-0.05477422864912145 +215839,1079.1950000119512,-0.05477416580600857 +215840,1079.2000000119513,-0.05477410296034732 +215841,1079.2050000119514,-0.05477404011213756 +215842,1079.2100000119515,-0.054773977261379114 +215843,1079.2150000119516,-0.05477391440807183 +215844,1079.2200000119517,-0.05477385155221556 +215845,1079.2250000119518,-0.05477378869381013 +215846,1079.230000011952,-0.054773725832855405 +215847,1079.235000011952,-0.05477366296935121 +215848,1079.2400000119521,-0.05477360010329738 +215849,1079.2450000119522,-0.05477353723469379 +215850,1079.2500000119524,-0.05477347436354026 +215851,1079.2550000119525,-0.05477341148983663 +215852,1079.2600000119526,-0.05477334861358274 +215853,1079.2650000119527,-0.054773285734778444 +215854,1079.2700000119528,-0.05477322285342358 +215855,1079.275000011953,-0.054773159969517995 +215856,1079.280000011953,-0.054773097083061516 +215857,1079.2850000119531,-0.05477303419405399 +215858,1079.2900000119532,-0.05477297130249528 +215859,1079.2950000119533,-0.05477290840838521 +215860,1079.3000000119534,-0.054772845511723615 +215861,1079.3050000119536,-0.054772782612510354 +215862,1079.3100000119537,-0.05477271971074525 +215863,1079.3150000119538,-0.05477265680642816 +215864,1079.3200000119539,-0.05477259389955893 +215865,1079.325000011954,-0.05477253099013738 +215866,1079.330000011954,-0.05477246807816337 +215867,1079.3350000119542,-0.05477240516363673 +215868,1079.3400000119543,-0.05477234224655732 +215869,1079.3450000119544,-0.05477227932692496 +215870,1079.3500000119545,-0.05477221640473951 +215871,1079.3550000119546,-0.0547721534800008 +215872,1079.3600000119548,-0.05477209055270868 +215873,1079.3650000119549,-0.05477202762286298 +215874,1079.370000011955,-0.05477196469046355 +215875,1079.375000011955,-0.05477190175551023 +215876,1079.3800000119552,-0.05477183881800285 +215877,1079.3850000119553,-0.05477177587794127 +215878,1079.3900000119554,-0.05477171293532531 +215879,1079.3950000119555,-0.05477164999015483 +215880,1079.4000000119556,-0.05477158704242966 +215881,1079.4050000119557,-0.05477152409214965 +215882,1079.4100000119558,-0.05477146113931464 +215883,1079.415000011956,-0.054771398183924465 +215884,1079.420000011956,-0.05477133522597896 +215885,1079.4250000119562,-0.054771272265477976 +215886,1079.4300000119563,-0.05477120930242135 +215887,1079.4350000119564,-0.05477114633680894 +215888,1079.4400000119565,-0.05477108336864056 +215889,1079.4450000119566,-0.05477102039791608 +215890,1079.4500000119567,-0.054770957424635315 +215891,1079.4550000119568,-0.0547708944487981 +215892,1079.460000011957,-0.054770831470404305 +215893,1079.465000011957,-0.05477076848945376 +215894,1079.4700000119572,-0.054770705505946295 +215895,1079.4750000119573,-0.054770642519881764 +215896,1079.4800000119574,-0.05477057953125999 +215897,1079.4850000119575,-0.05477051654008082 +215898,1079.4900000119576,-0.0547704535463441 +215899,1079.4950000119577,-0.05477039055004967 +215900,1079.5000000119578,-0.05477032755119737 +215901,1079.505000011958,-0.05477026454978703 +215902,1079.510000011958,-0.05477020154581851 +215903,1079.5150000119581,-0.054770138539291635 +215904,1079.5200000119582,-0.05477007553020624 +215905,1079.5250000119584,-0.054770012518562186 +215906,1079.5300000119585,-0.05476994950435929 +215907,1079.5350000119586,-0.054769886487597404 +215908,1079.5400000119587,-0.05476982346827637 +215909,1079.5450000119588,-0.05476976044639604 +215910,1079.550000011959,-0.054769697421956226 +215911,1079.555000011959,-0.05476963439495678 +215912,1079.5600000119591,-0.05476957136539754 +215913,1079.5650000119592,-0.05476950833327835 +215914,1079.5700000119593,-0.054769445298599055 +215915,1079.5750000119594,-0.05476938226135948 +215916,1079.5800000119596,-0.05476931922155947 +215917,1079.5850000119597,-0.05476925617919888 +215918,1079.5900000119598,-0.05476919313427753 +215919,1079.5950000119599,-0.05476913008679526 +215920,1079.60000001196,-0.05476906703675192 +215921,1079.60500001196,-0.05476900398414735 +215922,1079.6100000119602,-0.054768940928981366 +215923,1079.6150000119603,-0.054768877871253834 +215924,1079.6200000119604,-0.054768814810964586 +215925,1079.6250000119605,-0.05476875174811346 +215926,1079.6300000119606,-0.05476868868270029 +215927,1079.6350000119608,-0.054768625614724925 +215928,1079.6400000119609,-0.054768562544187195 +215929,1079.645000011961,-0.05476849947108694 +215930,1079.650000011961,-0.054768436395424 +215931,1079.6550000119612,-0.05476837331719823 +215932,1079.6600000119613,-0.05476831023640945 +215933,1079.6650000119614,-0.0547682471530575 +215934,1079.6700000119615,-0.054768184067142234 +215935,1079.6750000119616,-0.05476812097866346 +215936,1079.6800000119617,-0.05476805788762104 +215937,1079.6850000119618,-0.05476799479401481 +215938,1079.690000011962,-0.05476793169784462 +215939,1079.695000011962,-0.054767868599110286 +215940,1079.7000000119622,-0.05476780549781166 +215941,1079.7050000119623,-0.05476774239394858 +215942,1079.7100000119624,-0.05476767928752088 +215943,1079.7150000119625,-0.0547676161785284 +215944,1079.7200000119626,-0.054767553066970974 +215945,1079.7250000119627,-0.05476748995284845 +215946,1079.7300000119628,-0.05476742683616067 +215947,1079.735000011963,-0.054767363716907456 +215948,1079.740000011963,-0.05476730059508864 +215949,1079.7450000119632,-0.05476723747070409 +215950,1079.7500000119633,-0.054767174343753625 +215951,1079.7550000119634,-0.05476711121423708 +215952,1079.7600000119635,-0.0547670480821543 +215953,1079.7650000119636,-0.054766984947505135 +215954,1079.7700000119637,-0.05476692181028941 +215955,1079.7750000119638,-0.05476685867050695 +215956,1079.780000011964,-0.0547667955281576 +215957,1079.785000011964,-0.05476673238324122 +215958,1079.7900000119641,-0.05476666923575763 +215959,1079.7950000119642,-0.05476660608570667 +215960,1079.8000000119644,-0.05476654293308818 +215961,1079.8050000119645,-0.05476647977790198 +215962,1079.8100000119646,-0.054766416620147924 +215963,1079.8150000119647,-0.054766353459825855 +215964,1079.8200000119648,-0.054766290296935596 +215965,1079.825000011965,-0.054766227131477 +215966,1079.830000011965,-0.0547661639634499 +215967,1079.8350000119651,-0.05476610079285412 +215968,1079.8400000119652,-0.05476603761968951 +215969,1079.8450000119653,-0.054765974443955916 +215970,1079.8500000119654,-0.05476591126565316 +215971,1079.8550000119656,-0.054765848084781084 +215972,1079.8600000119657,-0.054765784901339515 +215973,1079.8650000119658,-0.054765721715328314 +215974,1079.8700000119659,-0.054765658526747286 +215975,1079.875000011966,-0.0547655953355963 +215976,1079.880000011966,-0.05476553214187517 +215977,1079.8850000119662,-0.05476546894558375 +215978,1079.8900000119663,-0.05476540574672187 +215979,1079.8950000119664,-0.05476534254528936 +215980,1079.9000000119665,-0.05476527934128606 +215981,1079.9050000119666,-0.05476521613471181 +215982,1079.9100000119668,-0.05476515292556644 +215983,1079.9150000119669,-0.0547650897138498 +215984,1079.920000011967,-0.05476502649956173 +215985,1079.925000011967,-0.05476496328270204 +215986,1079.9300000119672,-0.05476490006327059 +215987,1079.9350000119673,-0.05476483684126721 +215988,1079.9400000119674,-0.05476477361669174 +215989,1079.9450000119675,-0.05476471038954401 +215990,1079.9500000119676,-0.054764647159823855 +215991,1079.9550000119677,-0.054764583927531106 +215992,1079.9600000119678,-0.054764520692665616 +215993,1079.965000011968,-0.05476445745522722 +215994,1079.970000011968,-0.05476439421521575 +215995,1079.9750000119682,-0.05476433097263103 +215996,1079.9800000119683,-0.054764267727472914 +215997,1079.9850000119684,-0.05476420447974122 +215998,1079.9900000119685,-0.054764141229435806 +215999,1079.9950000119686,-0.0547640779765565 +216000,1080.0000000119687,-0.05476401472110312 +216001,1080.0050000119688,-0.05476395146307553 +216002,1080.010000011969,-0.05476388820247354 +216003,1080.015000011969,-0.054763824939297 +216004,1080.0200000119692,-0.05476376167354575 +216005,1080.0250000119693,-0.054763698405219614 +216006,1080.0300000119694,-0.054763635134318436 +216007,1080.0350000119695,-0.05476357186084205 +216008,1080.0400000119696,-0.05476350858479029 +216009,1080.0450000119697,-0.05476344530616299 +216010,1080.0500000119698,-0.05476338202496 +216011,1080.05500001197,-0.05476331874118112 +216012,1080.06000001197,-0.05476325545482622 +216013,1080.0650000119701,-0.05476319216589513 +216014,1080.0700000119703,-0.054763128874387675 +216015,1080.0750000119704,-0.05476306558030369 +216016,1080.0800000119705,-0.05476300228364302 +216017,1080.0850000119706,-0.0547629389844055 +216018,1080.0900000119707,-0.05476287568259096 +216019,1080.0950000119708,-0.05476281237819923 +216020,1080.100000011971,-0.054762749071230146 +216021,1080.105000011971,-0.054762685761683555 +216022,1080.1100000119711,-0.05476262244955929 +216023,1080.1150000119712,-0.05476255913485717 +216024,1080.1200000119713,-0.05476249581757705 +216025,1080.1250000119715,-0.05476243249771875 +216026,1080.1300000119716,-0.05476236917528212 +216027,1080.1350000119717,-0.054762305850266986 +216028,1080.1400000119718,-0.05476224252267318 +216029,1080.145000011972,-0.054762179192500524 +216030,1080.150000011972,-0.05476211585974889 +216031,1080.155000011972,-0.054762052524418084 +216032,1080.1600000119722,-0.054761989186507945 +216033,1080.1650000119723,-0.054761925846018314 +216034,1080.1700000119724,-0.05476186250294902 +216035,1080.1750000119725,-0.05476179915729989 +216036,1080.1800000119727,-0.054761735809070775 +216037,1080.1850000119728,-0.05476167245826149 +216038,1080.1900000119729,-0.05476160910487188 +216039,1080.195000011973,-0.05476154574890178 +216040,1080.200000011973,-0.054761482390351036 +216041,1080.2050000119732,-0.054761419029219466 +216042,1080.2100000119733,-0.05476135566550691 +216043,1080.2150000119734,-0.0547612922992132 +216044,1080.2200000119735,-0.05476122893033816 +216045,1080.2250000119736,-0.05476116555888164 +216046,1080.2300000119737,-0.05476110218484348 +216047,1080.2350000119739,-0.05476103880822349 +216048,1080.240000011974,-0.054760975429021516 +216049,1080.245000011974,-0.054760912047237396 +216050,1080.2500000119742,-0.05476084866287095 +216051,1080.2550000119743,-0.054760785275922035 +216052,1080.2600000119744,-0.05476072188639047 +216053,1080.2650000119745,-0.05476065849427609 +216054,1080.2700000119746,-0.05476059509957872 +216055,1080.2750000119747,-0.054760531702298214 +216056,1080.2800000119748,-0.054760468302434376 +216057,1080.285000011975,-0.05476040489998707 +216058,1080.290000011975,-0.05476034149495611 +216059,1080.2950000119752,-0.05476027808734134 +216060,1080.3000000119753,-0.05476021467714259 +216061,1080.3050000119754,-0.054760151264359694 +216062,1080.3100000119755,-0.054760087848992486 +216063,1080.3150000119756,-0.05476002443104079 +216064,1080.3200000119757,-0.054759961010504454 +216065,1080.3250000119758,-0.05475989758738331 +216066,1080.330000011976,-0.05475983416167718 +216067,1080.335000011976,-0.05475977073338589 +216068,1080.3400000119761,-0.0547597073025093 +216069,1080.3450000119763,-0.05475964386904721 +216070,1080.3500000119764,-0.054759580432999486 +216071,1080.3550000119765,-0.05475951699436594 +216072,1080.3600000119766,-0.0547594535531464 +216073,1080.3650000119767,-0.054759390109340715 +216074,1080.3700000119768,-0.05475932666294871 +216075,1080.375000011977,-0.05475926321397023 +216076,1080.380000011977,-0.05475919976240509 +216077,1080.3850000119771,-0.05475913630825313 +216078,1080.3900000119772,-0.05475907285151419 +216079,1080.3950000119773,-0.05475900939218809 +216080,1080.4000000119775,-0.054758945930274666 +216081,1080.4050000119776,-0.054758882465773755 +216082,1080.4100000119777,-0.05475881899868517 +216083,1080.4150000119778,-0.05475875552900877 +216084,1080.420000011978,-0.05475869205674438 +216085,1080.425000011978,-0.05475862858189183 +216086,1080.430000011978,-0.054758565104450936 +216087,1080.4350000119782,-0.05475850162442156 +216088,1080.4400000119783,-0.05475843814180351 +216089,1080.4450000119784,-0.05475837465659663 +216090,1080.4500000119785,-0.05475831116880076 +216091,1080.4550000119787,-0.054758247678415715 +216092,1080.4600000119788,-0.05475818418544134 +216093,1080.4650000119789,-0.05475812068987745 +216094,1080.470000011979,-0.05475805719172388 +216095,1080.475000011979,-0.05475799369098047 +216096,1080.4800000119792,-0.05475793018764706 +216097,1080.4850000119793,-0.05475786668172347 +216098,1080.4900000119794,-0.05475780317320954 +216099,1080.4950000119795,-0.05475773966210508 +216100,1080.5000000119796,-0.05475767614840994 +216101,1080.5050000119797,-0.05475761263212397 +216102,1080.5100000119799,-0.05475754911324697 +216103,1080.51500001198,-0.05475748559177877 +216104,1080.52000001198,-0.05475742206771922 +216105,1080.5250000119802,-0.05475735854106815 +216106,1080.5300000119803,-0.05475729501182538 +216107,1080.5350000119804,-0.05475723147999075 +216108,1080.5400000119805,-0.05475716794556408 +216109,1080.5450000119806,-0.05475710440854522 +216110,1080.5500000119807,-0.05475704086893399 +216111,1080.5550000119808,-0.05475697732673021 +216112,1080.560000011981,-0.05475691378193374 +216113,1080.565000011981,-0.05475685023454437 +216114,1080.5700000119812,-0.05475678668456197 +216115,1080.5750000119813,-0.05475672313198635 +216116,1080.5800000119814,-0.05475665957681734 +216117,1080.5850000119815,-0.05475659601905478 +216118,1080.5900000119816,-0.0547565324586985 +216119,1080.5950000119817,-0.054756468895748325 +216120,1080.6000000119818,-0.0547564053302041 +216121,1080.605000011982,-0.05475634176206565 +216122,1080.610000011982,-0.05475627819133278 +216123,1080.6150000119821,-0.05475621461800536 +216124,1080.6200000119823,-0.054756151042083194 +216125,1080.6250000119824,-0.05475608746356612 +216126,1080.6300000119825,-0.05475602388245396 +216127,1080.6350000119826,-0.05475596029874656 +216128,1080.6400000119827,-0.05475589671244374 +216129,1080.6450000119828,-0.054755833123545344 +216130,1080.650000011983,-0.05475576953205119 +216131,1080.655000011983,-0.0547557059379611 +216132,1080.6600000119831,-0.05475564234127491 +216133,1080.6650000119832,-0.05475557874199247 +216134,1080.6700000119833,-0.05475551514011357 +216135,1080.6750000119835,-0.054755451535638086 +216136,1080.6800000119836,-0.054755387928565824 +216137,1080.6850000119837,-0.05475532431889661 +216138,1080.6900000119838,-0.05475526070663028 +216139,1080.695000011984,-0.05475519709176666 +216140,1080.700000011984,-0.0547551334743056 +216141,1080.705000011984,-0.0547550698542469 +216142,1080.7100000119842,-0.0547550062315904 +216143,1080.7150000119843,-0.054754942606335934 +216144,1080.7200000119844,-0.054754878978483336 +216145,1080.7250000119845,-0.05475481534803243 +216146,1080.7300000119847,-0.05475475171498303 +216147,1080.7350000119848,-0.054754688079335 +216148,1080.7400000119849,-0.05475462444108814 +216149,1080.745000011985,-0.05475456080024229 +216150,1080.750000011985,-0.05475449715679727 +216151,1080.7550000119852,-0.05475443351075293 +216152,1080.7600000119853,-0.05475436986210909 +216153,1080.7650000119854,-0.054754306210865564 +216154,1080.7700000119855,-0.054754242557022194 +216155,1080.7750000119856,-0.05475417890057882 +216156,1080.7800000119857,-0.05475411524153526 +216157,1080.7850000119859,-0.05475405157989134 +216158,1080.790000011986,-0.05475398791564689 +216159,1080.795000011986,-0.05475392424880174 +216160,1080.8000000119862,-0.05475386057935572 +216161,1080.8050000119863,-0.05475379690730865 +216162,1080.8100000119864,-0.05475373323266038 +216163,1080.8150000119865,-0.05475366955541072 +216164,1080.8200000119866,-0.054753605875559504 +216165,1080.8250000119867,-0.054753542193106554 +216166,1080.8300000119868,-0.05475347850805171 +216167,1080.835000011987,-0.054753414820394794 +216168,1080.840000011987,-0.054753351130135644 +216169,1080.8450000119872,-0.05475328743727408 +216170,1080.8500000119873,-0.05475322374180994 +216171,1080.8550000119874,-0.054753160043743025 +216172,1080.8600000119875,-0.054753096343073196 +216173,1080.8650000119876,-0.05475303263980027 +216174,1080.8700000119877,-0.05475296893392407 +216175,1080.8750000119878,-0.054752905225444425 +216176,1080.880000011988,-0.05475284151436117 +216177,1080.885000011988,-0.05475277780067411 +216178,1080.8900000119881,-0.0547527140843831 +216179,1080.8950000119883,-0.054752650365487966 +216180,1080.9000000119884,-0.05475258664398852 +216181,1080.9050000119885,-0.05475252291988461 +216182,1080.9100000119886,-0.054752459193176055 +216183,1080.9150000119887,-0.05475239546386267 +216184,1080.9200000119888,-0.0547523317319443 +216185,1080.925000011989,-0.05475226799742076 +216186,1080.930000011989,-0.05475220426029189 +216187,1080.9350000119891,-0.054752140520557505 +216188,1080.9400000119892,-0.054752076778217446 +216189,1080.9450000119894,-0.05475201303327154 +216190,1080.9500000119895,-0.0547519492857196 +216191,1080.9550000119896,-0.05475188553556147 +216192,1080.9600000119897,-0.054751821782796965 +216193,1080.9650000119898,-0.05475175802742592 +216194,1080.97000001199,-0.054751694269448155 +216195,1080.97500001199,-0.0547516305088635 +216196,1080.9800000119901,-0.05475156674567178 +216197,1080.9850000119902,-0.05475150297987283 +216198,1080.9900000119903,-0.05475143921146646 +216199,1080.9950000119904,-0.05475137544045252 +216200,1081.0000000119906,-0.05475131166683083 +216201,1081.0050000119907,-0.05475124789060122 +216202,1081.0100000119908,-0.05475118411176351 +216203,1081.0150000119909,-0.054751120330317524 +216204,1081.020000011991,-0.05475105654626309 +216205,1081.025000011991,-0.05475099275960004 +216206,1081.0300000119912,-0.054750928970328204 +216207,1081.0350000119913,-0.0547508651784474 +216208,1081.0400000119914,-0.05475080138395745 +216209,1081.0450000119915,-0.054750737586858195 +216210,1081.0500000119916,-0.054750673787149456 +216211,1081.0550000119918,-0.05475060998483106 +216212,1081.0600000119919,-0.054750546179902826 +216213,1081.065000011992,-0.05475048237236459 +216214,1081.070000011992,-0.05475041856221617 +216215,1081.0750000119922,-0.0547503547494574 +216216,1081.0800000119923,-0.05475029093408811 +216217,1081.0850000119924,-0.05475022711610812 +216218,1081.0900000119925,-0.054750163295517254 +216219,1081.0950000119926,-0.05475009947231534 +216220,1081.1000000119927,-0.0547500356465022 +216221,1081.1050000119928,-0.05474997181807767 +216222,1081.110000011993,-0.05474990798704157 +216223,1081.115000011993,-0.05474984415339373 +216224,1081.1200000119932,-0.05474978031713397 +216225,1081.1250000119933,-0.054749716478262114 +216226,1081.1300000119934,-0.054749652636777994 +216227,1081.1350000119935,-0.054749588792681436 +216228,1081.1400000119936,-0.05474952494597227 +216229,1081.1450000119937,-0.05474946109665031 +216230,1081.1500000119938,-0.054749397244715385 +216231,1081.155000011994,-0.054749333390167326 +216232,1081.160000011994,-0.05474926953300596 +216233,1081.1650000119942,-0.054749205673231105 +216234,1081.1700000119943,-0.05474914181084259 +216235,1081.1750000119944,-0.054749077945840226 +216236,1081.1800000119945,-0.054749014078223864 +216237,1081.1850000119946,-0.05474895020799332 +216238,1081.1900000119947,-0.05474888633514841 +216239,1081.1950000119948,-0.054748822459688984 +216240,1081.200000011995,-0.05474875858161484 +216241,1081.205000011995,-0.05474869470092581 +216242,1081.2100000119951,-0.05474863081762172 +216243,1081.2150000119952,-0.0547485669317024 +216244,1081.2200000119954,-0.054748503043167675 +216245,1081.2250000119955,-0.05474843915201735 +216246,1081.2300000119956,-0.05474837525825129 +216247,1081.2350000119957,-0.054748311361869285 +216248,1081.2400000119958,-0.05474824746287118 +216249,1081.245000011996,-0.05474818356125678 +216250,1081.250000011996,-0.054748119657025925 +216251,1081.2550000119961,-0.05474805575017844 +216252,1081.2600000119962,-0.05474799184071414 +216253,1081.2650000119963,-0.054747927928632846 +216254,1081.2700000119964,-0.0547478640139344 +216255,1081.2750000119966,-0.05474780009661862 +216256,1081.2800000119967,-0.054747736176685324 +216257,1081.2850000119968,-0.05474767225413434 +216258,1081.2900000119969,-0.0547476083289655 +216259,1081.295000011997,-0.05474754440117861 +216260,1081.300000011997,-0.054747480470773525 +216261,1081.3050000119972,-0.05474741653775004 +216262,1081.3100000119973,-0.054747352602107995 +216263,1081.3150000119974,-0.05474728866384722 +216264,1081.3200000119975,-0.054747224722967516 +216265,1081.3250000119976,-0.054747160779468715 +216266,1081.3300000119978,-0.054747096833350654 +216267,1081.3350000119979,-0.054747032884613134 +216268,1081.340000011998,-0.054746968933256 +216269,1081.345000011998,-0.05474690497927907 +216270,1081.3500000119982,-0.054746841022682166 +216271,1081.3550000119983,-0.054746777063465105 +216272,1081.3600000119984,-0.05474671310162772 +216273,1081.3650000119985,-0.05474664913716984 +216274,1081.3700000119986,-0.05474658517009128 +216275,1081.3750000119987,-0.05474652120039187 +216276,1081.3800000119988,-0.05474645722807142 +216277,1081.385000011999,-0.05474639325312977 +216278,1081.390000011999,-0.054746329275566726 +216279,1081.3950000119992,-0.05474626529538212 +216280,1081.4000000119993,-0.05474620131257578 +216281,1081.4050000119994,-0.054746137327147525 +216282,1081.4100000119995,-0.05474607333909718 +216283,1081.4150000119996,-0.054746009348424565 +216284,1081.4200000119997,-0.054745945355129506 +216285,1081.4250000119998,-0.05474588135921182 +216286,1081.430000012,-0.05474581736067134 +216287,1081.435000012,-0.05474575335950789 +216288,1081.4400000120002,-0.054745689355721286 +216289,1081.4450000120003,-0.05474562534931134 +216290,1081.4500000120004,-0.05474556134027789 +216291,1081.4550000120005,-0.05474549732862076 +216292,1081.4600000120006,-0.054745433314339766 +216293,1081.4650000120007,-0.05474536929743474 +216294,1081.4700000120008,-0.05474530527790549 +216295,1081.475000012001,-0.05474524125575185 +216296,1081.480000012001,-0.05474517723097364 +216297,1081.4850000120011,-0.054745113203570686 +216298,1081.4900000120012,-0.054745049173542795 +216299,1081.4950000120014,-0.05474498514088981 +216300,1081.5000000120015,-0.05474492110561154 +216301,1081.5050000120016,-0.05474485706770781 +216302,1081.5100000120017,-0.05474479302717845 +216303,1081.5150000120018,-0.05474472898402327 +216304,1081.520000012002,-0.054744664938242114 +216305,1081.525000012002,-0.05474460088983477 +216306,1081.5300000120021,-0.054744536838801094 +216307,1081.5350000120022,-0.054744472785140885 +216308,1081.5400000120023,-0.05474440872885397 +216309,1081.5450000120024,-0.05474434466994018 +216310,1081.5500000120026,-0.05474428060839932 +216311,1081.5550000120027,-0.054744216544231235 +216312,1081.5600000120028,-0.054744152477435734 +216313,1081.5650000120029,-0.05474408840801265 +216314,1081.570000012003,-0.05474402433596178 +216315,1081.575000012003,-0.05474396026128297 +216316,1081.5800000120032,-0.05474389618397602 +216317,1081.5850000120033,-0.05474383210404076 +216318,1081.5900000120034,-0.05474376802147703 +216319,1081.5950000120035,-0.05474370393628462 +216320,1081.6000000120036,-0.05474363984846337 +216321,1081.6050000120038,-0.054743575758013106 +216322,1081.6100000120039,-0.05474351166493365 +216323,1081.615000012004,-0.054743447569224814 +216324,1081.620000012004,-0.05474338347088641 +216325,1081.6250000120042,-0.05474331936991828 +216326,1081.6300000120043,-0.054743255266320234 +216327,1081.6350000120044,-0.054743191160092096 +216328,1081.6400000120045,-0.054743127051233686 +216329,1081.6450000120046,-0.05474306293974482 +216330,1081.6500000120047,-0.05474299882562532 +216331,1081.6550000120048,-0.054742934708875014 +216332,1081.660000012005,-0.054742870589493724 +216333,1081.665000012005,-0.05474280646748126 +216334,1081.6700000120052,-0.054742742342837464 +216335,1081.6750000120053,-0.05474267821556213 +216336,1081.6800000120054,-0.054742614085655096 +216337,1081.6850000120055,-0.05474254995311617 +216338,1081.6900000120056,-0.054742485817945184 +216339,1081.6950000120057,-0.05474242168014196 +216340,1081.7000000120058,-0.054742357539706306 +216341,1081.705000012006,-0.054742293396638046 +216342,1081.710000012006,-0.05474222925093702 +216343,1081.7150000120062,-0.054742165102603026 +216344,1081.7200000120063,-0.05474210095163589 +216345,1081.7250000120064,-0.05474203679803543 +216346,1081.7300000120065,-0.054741972641801466 +216347,1081.7350000120066,-0.05474190848293384 +216348,1081.7400000120067,-0.05474184432143234 +216349,1081.7450000120068,-0.054741780157296804 +216350,1081.750000012007,-0.05474171599052704 +216351,1081.755000012007,-0.05474165182112289 +216352,1081.7600000120071,-0.054741587649084156 +216353,1081.7650000120072,-0.05474152347441066 +216354,1081.7700000120074,-0.054741459297102224 +216355,1081.7750000120075,-0.05474139511715866 +216356,1081.7800000120076,-0.05474133093457981 +216357,1081.7850000120077,-0.05474126674936547 +216358,1081.7900000120078,-0.05474120256151547 +216359,1081.795000012008,-0.05474113837102962 +216360,1081.800000012008,-0.054741074177907766 +216361,1081.8050000120081,-0.054741009982149695 +216362,1081.8100000120082,-0.05474094578375524 +216363,1081.8150000120083,-0.05474088158272423 +216364,1081.8200000120084,-0.054740817379056464 +216365,1081.8250000120086,-0.05474075317275178 +216366,1081.8300000120087,-0.05474068896381 +216367,1081.8350000120088,-0.05474062475223093 +216368,1081.8400000120089,-0.05474056053801439 +216369,1081.845000012009,-0.05474049632116021 +216370,1081.850000012009,-0.05474043210166819 +216371,1081.8550000120092,-0.05474036787953817 +216372,1081.8600000120093,-0.054740303654769944 +216373,1081.8650000120094,-0.05474023942736336 +216374,1081.8700000120095,-0.054740175197318226 +216375,1081.8750000120097,-0.05474011096463435 +216376,1081.8800000120098,-0.054740046729311556 +216377,1081.8850000120099,-0.05473998249134968 +216378,1081.89000001201,-0.05473991825074852 +216379,1081.89500001201,-0.05473985400750789 +216380,1081.9000000120102,-0.05473978976162762 +216381,1081.9050000120103,-0.05473972551310753 +216382,1081.9100000120104,-0.054739661261947445 +216383,1081.9150000120105,-0.05473959700814717 +216384,1081.9200000120106,-0.05473953275170654 +216385,1081.9250000120107,-0.05473946849262535 +216386,1081.9300000120109,-0.054739404230903434 +216387,1081.935000012011,-0.0547393399665406 +216388,1081.940000012011,-0.054739275699536676 +216389,1081.9450000120112,-0.054739211429891486 +216390,1081.9500000120113,-0.054739147157604834 +216391,1081.9550000120114,-0.054739082882676544 +216392,1081.9600000120115,-0.05473901860510644 +216393,1081.9650000120116,-0.054738954324894326 +216394,1081.9700000120117,-0.05473889004204003 +216395,1081.9750000120118,-0.05473882575654337 +216396,1081.980000012012,-0.05473876146840415 +216397,1081.985000012012,-0.0547386971776222 +216398,1081.9900000120122,-0.05473863288419734 +216399,1081.9950000120123,-0.0547385685881294 +216400,1082.0000000120124,-0.05473850428941816 +216401,1082.0050000120125,-0.054738439988063464 +216402,1082.0100000120126,-0.05473837568406514 +216403,1082.0150000120127,-0.05473831137742297 +216404,1082.0200000120128,-0.0547382470681368 +216405,1082.025000012013,-0.05473818275620644 +216406,1082.030000012013,-0.05473811844163171 +216407,1082.0350000120131,-0.05473805412441243 +216408,1082.0400000120133,-0.05473798980454841 +216409,1082.0450000120134,-0.05473792548203946 +216410,1082.0500000120135,-0.05473786115688541 +216411,1082.0550000120136,-0.05473779682908608 +216412,1082.0600000120137,-0.05473773249864128 +216413,1082.0650000120138,-0.05473766816555082 +216414,1082.070000012014,-0.05473760382981452 +216415,1082.075000012014,-0.0547375394914322 +216416,1082.0800000120141,-0.05473747515040368 +216417,1082.0850000120142,-0.05473741080672879 +216418,1082.0900000120143,-0.05473734646040732 +216419,1082.0950000120145,-0.0547372821114391 +216420,1082.1000000120146,-0.05473721775982395 +216421,1082.1050000120147,-0.054737153405561685 +216422,1082.1100000120148,-0.05473708904865211 +216423,1082.115000012015,-0.054737024689095054 +216424,1082.120000012015,-0.05473696032689033 +216425,1082.125000012015,-0.05473689596203775 +216426,1082.1300000120152,-0.054736831594537134 +216427,1082.1350000120153,-0.054736767224388305 +216428,1082.1400000120154,-0.05473670285159106 +216429,1082.1450000120155,-0.054736638476145245 +216430,1082.1500000120157,-0.054736574098050654 +216431,1082.1550000120158,-0.054736509717307105 +216432,1082.1600000120159,-0.05473644533391442 +216433,1082.165000012016,-0.05473638094787241 +216434,1082.170000012016,-0.054736316559180896 +216435,1082.1750000120162,-0.05473625216783969 +216436,1082.1800000120163,-0.054736187773848616 +216437,1082.1850000120164,-0.05473612337720748 +216438,1082.1900000120165,-0.054736058977916106 +216439,1082.1950000120166,-0.054735994575974306 +216440,1082.2000000120167,-0.0547359301713819 +216441,1082.2050000120169,-0.054735865764138684 +216442,1082.210000012017,-0.05473580135424449 +216443,1082.215000012017,-0.05473573694169913 +216444,1082.2200000120172,-0.05473567252650243 +216445,1082.2250000120173,-0.054735608108654195 +216446,1082.2300000120174,-0.05473554368815424 +216447,1082.2350000120175,-0.054735479265002385 +216448,1082.2400000120176,-0.05473541483919844 +216449,1082.2450000120177,-0.05473535041074223 +216450,1082.2500000120178,-0.05473528597963356 +216451,1082.255000012018,-0.05473522154587225 +216452,1082.260000012018,-0.054735157109458116 +216453,1082.2650000120182,-0.05473509267039097 +216454,1082.2700000120183,-0.05473502822867063 +216455,1082.2750000120184,-0.05473496378429691 +216456,1082.2800000120185,-0.054734899337269625 +216457,1082.2850000120186,-0.05473483488758859 +216458,1082.2900000120187,-0.05473477043525361 +216459,1082.2950000120188,-0.05473470598026451 +216460,1082.300000012019,-0.05473464152262111 +216461,1082.305000012019,-0.054734577062323216 +216462,1082.3100000120191,-0.05473451259937065 +216463,1082.3150000120193,-0.05473444813376321 +216464,1082.3200000120194,-0.05473438366550073 +216465,1082.3250000120195,-0.05473431919458301 +216466,1082.3300000120196,-0.05473425472100988 +216467,1082.3350000120197,-0.054734190244781135 +216468,1082.3400000120198,-0.05473412576589661 +216469,1082.34500001202,-0.0547340612843561 +216470,1082.35000001202,-0.05473399680015943 +216471,1082.3550000120201,-0.054733932313306415 +216472,1082.3600000120202,-0.05473386782379687 +216473,1082.3650000120203,-0.05473380333163061 +216474,1082.3700000120205,-0.05473373883680743 +216475,1082.3750000120206,-0.05473367433932717 +216476,1082.3800000120207,-0.05473360983918963 +216477,1082.3850000120208,-0.05473354533639463 +216478,1082.390000012021,-0.054733480830941976 +216479,1082.395000012021,-0.05473341632283149 +216480,1082.400000012021,-0.05473335181206298 +216481,1082.4050000120212,-0.05473328729863626 +216482,1082.4100000120213,-0.054733222782551154 +216483,1082.4150000120214,-0.054733158263807466 +216484,1082.4200000120215,-0.054733093742405 +216485,1082.4250000120217,-0.05473302921834359 +216486,1082.4300000120218,-0.05473296469162304 +216487,1082.4350000120219,-0.05473290016224316 +216488,1082.440000012022,-0.054732835630203765 +216489,1082.445000012022,-0.05473277109550467 +216490,1082.4500000120222,-0.054732706558145695 +216491,1082.4550000120223,-0.054732642018126644 +216492,1082.4600000120224,-0.05473257747544733 +216493,1082.4650000120225,-0.05473251293010758 +216494,1082.4700000120226,-0.05473244838210718 +216495,1082.4750000120227,-0.05473238383144597 +216496,1082.4800000120229,-0.054732319278123755 +216497,1082.485000012023,-0.05473225472214034 +216498,1082.490000012023,-0.054732190163495544 +216499,1082.4950000120232,-0.05473212560218917 +216500,1082.5000000120233,-0.05473206103822105 +216501,1082.5050000120234,-0.05473199647159097 +216502,1082.5100000120235,-0.05473193190229878 +216503,1082.5150000120236,-0.054731867330344276 +216504,1082.5200000120237,-0.05473180275572725 +216505,1082.5250000120238,-0.05473173817844753 +216506,1082.530000012024,-0.05473167359850494 +216507,1082.535000012024,-0.05473160901589928 +216508,1082.5400000120242,-0.054731544430630365 +216509,1082.5450000120243,-0.054731479842697994 +216510,1082.5500000120244,-0.054731415252102 +216511,1082.5550000120245,-0.05473135065884219 +216512,1082.5600000120246,-0.054731286062918376 +216513,1082.5650000120247,-0.05473122146433036 +216514,1082.5700000120248,-0.05473115686307796 +216515,1082.575000012025,-0.054731092259160986 +216516,1082.580000012025,-0.054731027652579256 +216517,1082.5850000120251,-0.05473096304333258 +216518,1082.5900000120253,-0.05473089843142077 +216519,1082.5950000120254,-0.05473083381684364 +216520,1082.6000000120255,-0.054730769199601 +216521,1082.6050000120256,-0.05473070457969266 +216522,1082.6100000120257,-0.05473063995711843 +216523,1082.6150000120258,-0.05473057533187813 +216524,1082.620000012026,-0.054730510703971565 +216525,1082.625000012026,-0.05473044607339854 +216526,1082.6300000120261,-0.05473038144015888 +216527,1082.6350000120262,-0.05473031680425238 +216528,1082.6400000120263,-0.05473025216567888 +216529,1082.6450000120265,-0.054730187524438166 +216530,1082.6500000120266,-0.05473012288053005 +216531,1082.6550000120267,-0.054730058233954354 +216532,1082.6600000120268,-0.05472999358471088 +216533,1082.665000012027,-0.05472992893279945 +216534,1082.670000012027,-0.05472986427821987 +216535,1082.675000012027,-0.05472979962097195 +216536,1082.6800000120272,-0.0547297349610555 +216537,1082.6850000120273,-0.054729670298470326 +216538,1082.6900000120274,-0.05472960563321625 +216539,1082.6950000120275,-0.05472954096529308 +216540,1082.7000000120277,-0.05472947629470063 +216541,1082.7050000120278,-0.054729411621438705 +216542,1082.7100000120279,-0.0547293469455071 +216543,1082.715000012028,-0.054729282266905654 +216544,1082.720000012028,-0.05472921758563416 +216545,1082.7250000120282,-0.05472915290169243 +216546,1082.7300000120283,-0.05472908821508028 +216547,1082.7350000120284,-0.05472902352579753 +216548,1082.7400000120285,-0.054728958833843974 +216549,1082.7450000120286,-0.054728894139219435 +216550,1082.7500000120287,-0.054728829441923706 +216551,1082.7550000120289,-0.05472876474195661 +216552,1082.760000012029,-0.05472870003931796 +216553,1082.765000012029,-0.05472863533400755 +216554,1082.7700000120292,-0.0547285706260252 +216555,1082.7750000120293,-0.054728505915370734 +216556,1082.7800000120294,-0.05472844120204394 +216557,1082.7850000120295,-0.05472837648604464 +216558,1082.7900000120296,-0.05472831176737263 +216559,1082.7950000120297,-0.054728247046027745 +216560,1082.8000000120298,-0.05472818232200977 +216561,1082.80500001203,-0.05472811759531854 +216562,1082.81000001203,-0.05472805286595384 +216563,1082.8150000120302,-0.05472798813391549 +216564,1082.8200000120303,-0.05472792339920329 +216565,1082.8250000120304,-0.05472785866181707 +216566,1082.8300000120305,-0.05472779392175663 +216567,1082.8350000120306,-0.054727729179021765 +216568,1082.8400000120307,-0.05472766443361231 +216569,1082.8450000120308,-0.05472759968552805 +216570,1082.850000012031,-0.05472753493476881 +216571,1082.855000012031,-0.0547274701813344 +216572,1082.8600000120312,-0.05472740542522462 +216573,1082.8650000120313,-0.05472734066643929 +216574,1082.8700000120314,-0.0547272759049782 +216575,1082.8750000120315,-0.05472721114084118 +216576,1082.8800000120316,-0.05472714637402803 +216577,1082.8850000120317,-0.054727081604538555 +216578,1082.8900000120318,-0.05472701683237257 +216579,1082.895000012032,-0.054726952057529886 +216580,1082.900000012032,-0.0547268872800103 +216581,1082.9050000120321,-0.054726822499813636 +216582,1082.9100000120322,-0.0547267577169397 +216583,1082.9150000120324,-0.054726692931388286 +216584,1082.9200000120325,-0.05472662814315922 +216585,1082.9250000120326,-0.0547265633522523 +216586,1082.9300000120327,-0.05472649855866735 +216587,1082.9350000120328,-0.05472643376240416 +216588,1082.940000012033,-0.054726368963462536 +216589,1082.945000012033,-0.05472630416184229 +216590,1082.9500000120331,-0.05472623935754325 +216591,1082.9550000120332,-0.05472617455056521 +216592,1082.9600000120333,-0.05472610974090796 +216593,1082.9650000120334,-0.05472604492857134 +216594,1082.9700000120336,-0.05472598011355514 +216595,1082.9750000120337,-0.05472591529585917 +216596,1082.9800000120338,-0.05472585047548324 +216597,1082.9850000120339,-0.05472578565242717 +216598,1082.990000012034,-0.05472572082669075 +216599,1082.995000012034,-0.054725655998273795 +216600,1083.0000000120342,-0.0547255911671761 +216601,1083.0050000120343,-0.0547255263333975 +216602,1083.0100000120344,-0.05472546149693777 +216603,1083.0150000120345,-0.054725396657796736 +216604,1083.0200000120346,-0.054725331815974214 +216605,1083.0250000120348,-0.05472526697147001 +216606,1083.0300000120349,-0.05472520212428391 +216607,1083.035000012035,-0.05472513727441575 +216608,1083.040000012035,-0.054725072421865306 +216609,1083.0450000120352,-0.0547250075666324 +216610,1083.0500000120353,-0.05472494270871684 +216611,1083.0550000120354,-0.05472487784811844 +216612,1083.0600000120355,-0.054724812984837 +216613,1083.0650000120356,-0.054724748118872325 +216614,1083.0700000120357,-0.05472468325022423 +216615,1083.0750000120358,-0.05472461837889252 +216616,1083.080000012036,-0.054724553504877 +216617,1083.085000012036,-0.05472448862817747 +216618,1083.0900000120362,-0.054724423748793743 +216619,1083.0950000120363,-0.05472435886672562 +216620,1083.1000000120364,-0.05472429398197292 +216621,1083.1050000120365,-0.05472422909453545 +216622,1083.1100000120366,-0.054724164204413 +216623,1083.1150000120367,-0.0547240993116054 +216624,1083.1200000120368,-0.054724034416112434 +216625,1083.125000012037,-0.05472396951793392 +216626,1083.130000012037,-0.05472390461706966 +216627,1083.1350000120372,-0.05472383971351947 +216628,1083.1400000120373,-0.05472377480728315 +216629,1083.1450000120374,-0.0547237098983605 +216630,1083.1500000120375,-0.05472364498675133 +216631,1083.1550000120376,-0.05472358007245545 +216632,1083.1600000120377,-0.05472351515547267 +216633,1083.1650000120378,-0.05472345023580279 +216634,1083.170000012038,-0.0547233853134456 +216635,1083.175000012038,-0.054723320388400935 +216636,1083.1800000120381,-0.054723255460668585 +216637,1083.1850000120382,-0.054723190530248364 +216638,1083.1900000120384,-0.05472312559714007 +216639,1083.1950000120385,-0.05472306066134351 +216640,1083.2000000120386,-0.0547229957228585 +216641,1083.2050000120387,-0.054722930781684824 +216642,1083.2100000120388,-0.054722865837822314 +216643,1083.215000012039,-0.054722800891270754 +216644,1083.220000012039,-0.054722735942029956 +216645,1083.2250000120391,-0.05472267099009973 +216646,1083.2300000120392,-0.05472260603547988 +216647,1083.2350000120393,-0.05472254107817023 +216648,1083.2400000120394,-0.05472247611817055 +216649,1083.2450000120396,-0.054722411155480655 +216650,1083.2500000120397,-0.05472234619010037 +216651,1083.2550000120398,-0.05472228122202948 +216652,1083.2600000120399,-0.054722216251267795 +216653,1083.26500001204,-0.05472215127781513 +216654,1083.27000001204,-0.05472208630167127 +216655,1083.2750000120402,-0.05472202132283603 +216656,1083.2800000120403,-0.054721956341309226 +216657,1083.2850000120404,-0.05472189135709066 +216658,1083.2900000120405,-0.05472182637018011 +216659,1083.2950000120406,-0.05472176138057742 +216660,1083.3000000120408,-0.05472169638828237 +216661,1083.3050000120409,-0.05472163139329477 +216662,1083.310000012041,-0.05472156639561443 +216663,1083.315000012041,-0.05472150139524115 +216664,1083.3200000120412,-0.05472143639217472 +216665,1083.3250000120413,-0.054721371386414974 +216666,1083.3300000120414,-0.054721306377961694 +216667,1083.3350000120415,-0.054721241366814694 +216668,1083.3400000120416,-0.054721176352973785 +216669,1083.3450000120417,-0.054721111336438755 +216670,1083.3500000120418,-0.054721046317209414 +216671,1083.355000012042,-0.05472098129528557 +216672,1083.360000012042,-0.05472091627066702 +216673,1083.3650000120422,-0.05472085124335358 +216674,1083.3700000120423,-0.05472078621334505 +216675,1083.3750000120424,-0.054720721180641224 +216676,1083.3800000120425,-0.05472065614524192 +216677,1083.3850000120426,-0.05472059110714693 +216678,1083.3900000120427,-0.05472052606635606 +216679,1083.3950000120428,-0.054720461022869114 +216680,1083.400000012043,-0.05472039597668591 +216681,1083.405000012043,-0.05472033092780623 +216682,1083.4100000120432,-0.05472026587622989 +216683,1083.4150000120433,-0.054720200821956694 +216684,1083.4200000120434,-0.05472013576498644 +216685,1083.4250000120435,-0.05472007070531893 +216686,1083.4300000120436,-0.05472000564295398 +216687,1083.4350000120437,-0.05471994057789138 +216688,1083.4400000120438,-0.05471987551013093 +216689,1083.445000012044,-0.05471981043967246 +216690,1083.450000012044,-0.05471974536651574 +216691,1083.4550000120441,-0.05471968029066059 +216692,1083.4600000120442,-0.05471961521210682 +216693,1083.4650000120444,-0.054719550130854215 +216694,1083.4700000120445,-0.05471948504690259 +216695,1083.4750000120446,-0.054719419960251744 +216696,1083.4800000120447,-0.054719354870901474 +216697,1083.4850000120448,-0.05471928977885159 +216698,1083.490000012045,-0.05471922468410189 +216699,1083.495000012045,-0.05471915958665218 +216700,1083.5000000120451,-0.05471909448650227 +216701,1083.5050000120452,-0.05471902938365196 +216702,1083.5100000120453,-0.054718964278101044 +216703,1083.5150000120454,-0.054718899169849324 +216704,1083.5200000120456,-0.05471883405889662 +216705,1083.5250000120457,-0.05471876894524272 +216706,1083.5300000120458,-0.05471870382888742 +216707,1083.5350000120459,-0.05471863870983053 +216708,1083.540000012046,-0.05471857358807186 +216709,1083.545000012046,-0.054718508463611204 +216710,1083.5500000120462,-0.05471844333644836 +216711,1083.5550000120463,-0.05471837820658314 +216712,1083.5600000120464,-0.05471831307401534 +216713,1083.5650000120465,-0.05471824793874477 +216714,1083.5700000120466,-0.05471818280077122 +216715,1083.5750000120468,-0.0547181176600945 +216716,1083.5800000120469,-0.0547180525167144 +216717,1083.585000012047,-0.05471798737063074 +216718,1083.590000012047,-0.05471792222184331 +216719,1083.5950000120472,-0.054717857070351913 +216720,1083.6000000120473,-0.05471779191615636 +216721,1083.6050000120474,-0.05471772675925644 +216722,1083.6100000120475,-0.05471766159965195 +216723,1083.6150000120476,-0.05471759643734271 +216724,1083.6200000120477,-0.0547175312723285 +216725,1083.6250000120478,-0.05471746610460915 +216726,1083.630000012048,-0.054717400934184424 +216727,1083.635000012048,-0.05471733576105416 +216728,1083.6400000120482,-0.05471727058521814 +216729,1083.6450000120483,-0.05471720540667617 +216730,1083.6500000120484,-0.054717140225428056 +216731,1083.6550000120485,-0.05471707504147358 +216732,1083.6600000120486,-0.05471700985481256 +216733,1083.6650000120487,-0.054716944665444786 +216734,1083.6700000120488,-0.054716879473370075 +216735,1083.675000012049,-0.054716814278588204 +216736,1083.680000012049,-0.054716749081099 +216737,1083.6850000120492,-0.054716683880902256 +216738,1083.6900000120493,-0.05471661867799776 +216739,1083.6950000120494,-0.05471655347238531 +216740,1083.7000000120495,-0.054716488264064736 +216741,1083.7050000120496,-0.05471642305303581 +216742,1083.7100000120497,-0.05471635783929835 +216743,1083.7150000120498,-0.05471629262285215 +216744,1083.72000001205,-0.054716227403697006 +216745,1083.72500001205,-0.054716162181832714 +216746,1083.7300000120501,-0.05471609695725908 +216747,1083.7350000120503,-0.054716031729975925 +216748,1083.7400000120504,-0.054715966499983025 +216749,1083.7450000120505,-0.054715901267280175 +216750,1083.7500000120506,-0.054715836031867186 +216751,1083.7550000120507,-0.05471577079374386 +216752,1083.7600000120508,-0.05471570555291 +216753,1083.765000012051,-0.0547156403093654 +216754,1083.770000012051,-0.05471557506310985 +216755,1083.7750000120511,-0.05471550981414318 +216756,1083.7800000120512,-0.05471544456246515 +216757,1083.7850000120513,-0.05471537930807559 +216758,1083.7900000120515,-0.05471531405097429 +216759,1083.7950000120516,-0.05471524879116105 +216760,1083.8000000120517,-0.054715183528635664 +216761,1083.8050000120518,-0.05471511826339793 +216762,1083.810000012052,-0.05471505299544765 +216763,1083.815000012052,-0.054714987724784635 +216764,1083.820000012052,-0.05471492245140868 +216765,1083.8250000120522,-0.054714857175319584 +216766,1083.8300000120523,-0.05471479189651713 +216767,1083.8350000120524,-0.054714726615001125 +216768,1083.8400000120525,-0.05471466133077138 +216769,1083.8450000120527,-0.05471459604382768 +216770,1083.8500000120528,-0.05471453075416984 +216771,1083.8550000120529,-0.054714465461797646 +216772,1083.860000012053,-0.054714400166710905 +216773,1083.865000012053,-0.054714334868909406 +216774,1083.8700000120532,-0.054714269568392954 +216775,1083.8750000120533,-0.05471420426516135 +216776,1083.8800000120534,-0.054714138959214384 +216777,1083.8850000120535,-0.05471407365055187 +216778,1083.8900000120536,-0.054714008339173587 +216779,1083.8950000120537,-0.05471394302507935 +216780,1083.9000000120539,-0.05471387770826894 +216781,1083.905000012054,-0.05471381238874217 +216782,1083.910000012054,-0.05471374706649884 +216783,1083.9150000120542,-0.054713681741538754 +216784,1083.9200000120543,-0.05471361641386169 +216785,1083.9250000120544,-0.054713551083467454 +216786,1083.9300000120545,-0.054713485750355846 +216787,1083.9350000120546,-0.054713420414526655 +216788,1083.9400000120547,-0.05471335507597969 +216789,1083.9450000120548,-0.05471328973471475 +216790,1083.950000012055,-0.054713224390731625 +216791,1083.955000012055,-0.054713159044030124 +216792,1083.9600000120552,-0.05471309369461004 +216793,1083.9650000120553,-0.054713028342471166 +216794,1083.9700000120554,-0.054712962987613294 +216795,1083.9750000120555,-0.05471289763003624 +216796,1083.9800000120556,-0.054712832269739796 +216797,1083.9850000120557,-0.05471276690672376 +216798,1083.9900000120558,-0.054712701540987924 +216799,1083.995000012056,-0.05471263617253209 +216800,1084.000000012056,-0.05471257080135604 +216801,1084.0050000120561,-0.05471250542745959 +216802,1084.0100000120563,-0.05471244005084253 +216803,1084.0150000120564,-0.054712374671504665 +216804,1084.0200000120565,-0.054712309289445774 +216805,1084.0250000120566,-0.05471224390466567 +216806,1084.0300000120567,-0.05471217851716415 +216807,1084.0350000120568,-0.05471211312694099 +216808,1084.040000012057,-0.054712047733996017 +216809,1084.045000012057,-0.05471198233832901 +216810,1084.0500000120571,-0.05471191693993977 +216811,1084.0550000120572,-0.0547118515388281 +216812,1084.0600000120573,-0.054711786134993785 +216813,1084.0650000120575,-0.054711720728436636 +216814,1084.0700000120576,-0.054711655319156435 +216815,1084.0750000120577,-0.05471158990715298 +216816,1084.0800000120578,-0.054711524492426084 +216817,1084.085000012058,-0.05471145907497552 +216818,1084.090000012058,-0.0547113936548011 +216819,1084.095000012058,-0.054711328231902626 +216820,1084.1000000120582,-0.05471126280627988 +216821,1084.1050000120583,-0.05471119737793267 +216822,1084.1100000120584,-0.05471113194686077 +216823,1084.1150000120585,-0.05471106651306401 +216824,1084.1200000120587,-0.054711001076542164 +216825,1084.1250000120588,-0.054710935637295025 +216826,1084.1300000120589,-0.0547108701953224 +216827,1084.135000012059,-0.05471080475062408 +216828,1084.140000012059,-0.05471073930319986 +216829,1084.1450000120592,-0.05471067385304954 +216830,1084.1500000120593,-0.054710608400172916 +216831,1084.1550000120594,-0.054710542944569784 +216832,1084.1600000120595,-0.054710477486239924 +216833,1084.1650000120596,-0.05471041202518316 +216834,1084.1700000120597,-0.05471034656139926 +216835,1084.1750000120599,-0.05471028109488805 +216836,1084.18000001206,-0.054710215625649296 +216837,1084.18500001206,-0.0547101501536828 +216838,1084.1900000120602,-0.054710084678988365 +216839,1084.1950000120603,-0.054710019201565784 +216840,1084.2000000120604,-0.054709953721414864 +216841,1084.2050000120605,-0.054709888238535384 +216842,1084.2100000120606,-0.05470982275292714 +216843,1084.2150000120607,-0.054709757264589924 +216844,1084.2200000120608,-0.05470969177352355 +216845,1084.225000012061,-0.05470962627972779 +216846,1084.230000012061,-0.05470956078320245 +216847,1084.2350000120612,-0.054709495283947335 +216848,1084.2400000120613,-0.05470942978196223 +216849,1084.2450000120614,-0.05470936427724692 +216850,1084.2500000120615,-0.05470929876980121 +216851,1084.2550000120616,-0.054709233259624894 +216852,1084.2600000120617,-0.05470916774671777 +216853,1084.2650000120618,-0.05470910223107963 +216854,1084.270000012062,-0.05470903671271026 +216855,1084.275000012062,-0.054708971191609466 +216856,1084.2800000120621,-0.05470890566777703 +216857,1084.2850000120623,-0.054708840141212765 +216858,1084.2900000120624,-0.05470877461191646 +216859,1084.2950000120625,-0.05470870907988788 +216860,1084.3000000120626,-0.05470864354512686 +216861,1084.3050000120627,-0.05470857800763318 +216862,1084.3100000120628,-0.05470851246740662 +216863,1084.315000012063,-0.05470844692444699 +216864,1084.320000012063,-0.054708381378754084 +216865,1084.3250000120631,-0.054708315830327696 +216866,1084.3300000120632,-0.0547082502791676 +216867,1084.3350000120633,-0.05470818472527361 +216868,1084.3400000120635,-0.05470811916864553 +216869,1084.3450000120636,-0.05470805360928313 +216870,1084.3500000120637,-0.054707988047186205 +216871,1084.3550000120638,-0.054707922482354565 +216872,1084.360000012064,-0.05470785691478798 +216873,1084.365000012064,-0.05470779134448627 +216874,1084.370000012064,-0.05470772577144922 +216875,1084.3750000120642,-0.05470766019567661 +216876,1084.3800000120643,-0.05470759461716825 +216877,1084.3850000120644,-0.05470752903592393 +216878,1084.3900000120645,-0.054707463451943425 +216879,1084.3950000120647,-0.054707397865226555 +216880,1084.4000000120648,-0.054707332275773096 +216881,1084.4050000120649,-0.05470726668358285 +216882,1084.410000012065,-0.054707201088655594 +216883,1084.415000012065,-0.05470713549099115 +216884,1084.4200000120652,-0.05470706989058928 +216885,1084.4250000120653,-0.054707004287449804 +216886,1084.4300000120654,-0.054706938681572496 +216887,1084.4350000120655,-0.05470687307295715 +216888,1084.4400000120656,-0.05470680746160358 +216889,1084.4450000120657,-0.054706741847511536 +216890,1084.4500000120659,-0.05470667623068086 +216891,1084.455000012066,-0.0547066106111113 +216892,1084.460000012066,-0.054706544988802674 +216893,1084.4650000120662,-0.05470647936375478 +216894,1084.4700000120663,-0.05470641373596739 +216895,1084.4750000120664,-0.05470634810544031 +216896,1084.4800000120665,-0.05470628247217333 +216897,1084.4850000120666,-0.054706216836166235 +216898,1084.4900000120667,-0.05470615119741882 +216899,1084.4950000120668,-0.054706085555930886 +216900,1084.500000012067,-0.054706019911702215 +216901,1084.505000012067,-0.05470595426473261 +216902,1084.5100000120672,-0.05470588861502185 +216903,1084.5150000120673,-0.054705822962569726 +216904,1084.5200000120674,-0.05470575730737605 +216905,1084.5250000120675,-0.0547056916494406 +216906,1084.5300000120676,-0.05470562598876316 +216907,1084.5350000120677,-0.05470556032534353 +216908,1084.5400000120678,-0.0547054946591815 +216909,1084.545000012068,-0.05470542899027686 +216910,1084.550000012068,-0.05470536331862941 +216911,1084.5550000120681,-0.05470529764423894 +216912,1084.5600000120683,-0.054705231967105236 +216913,1084.5650000120684,-0.05470516628722808 +216914,1084.5700000120685,-0.05470510060460728 +216915,1084.5750000120686,-0.05470503491924262 +216916,1084.5800000120687,-0.05470496923113389 +216917,1084.5850000120688,-0.05470490354028088 +216918,1084.590000012069,-0.05470483784668339 +216919,1084.595000012069,-0.054704772150341203 +216920,1084.6000000120691,-0.05470470645125411 +216921,1084.6050000120692,-0.05470464074942191 +216922,1084.6100000120693,-0.05470457504484439 +216923,1084.6150000120695,-0.05470450933752133 +216924,1084.6200000120696,-0.05470444362745253 +216925,1084.6250000120697,-0.05470437791463779 +216926,1084.6300000120698,-0.054704312199076885 +216927,1084.63500001207,-0.054704246480769596 +216928,1084.64000001207,-0.05470418075971574 +216929,1084.64500001207,-0.054704115035915095 +216930,1084.6500000120702,-0.05470404930936745 +216931,1084.6550000120703,-0.054703983580072606 +216932,1084.6600000120704,-0.05470391784803033 +216933,1084.6650000120705,-0.05470385211324043 +216934,1084.6700000120707,-0.05470378637570271 +216935,1084.6750000120708,-0.05470372063541693 +216936,1084.6800000120709,-0.05470365489238289 +216937,1084.685000012071,-0.05470358914660038 +216938,1084.690000012071,-0.05470352339806919 +216939,1084.6950000120712,-0.05470345764678913 +216940,1084.7000000120713,-0.05470339189275997 +216941,1084.7050000120714,-0.0547033261359815 +216942,1084.7100000120715,-0.05470326037645352 +216943,1084.7150000120716,-0.054703194614175804 +216944,1084.7200000120718,-0.054703128849148144 +216945,1084.7250000120719,-0.054703063081370344 +216946,1084.730000012072,-0.05470299731084218 +216947,1084.735000012072,-0.05470293153756345 +216948,1084.7400000120722,-0.05470286576153393 +216949,1084.7450000120723,-0.05470279998275342 +216950,1084.7500000120724,-0.054702734201221716 +216951,1084.7550000120725,-0.0547026684169386 +216952,1084.7600000120726,-0.054702602629903854 +216953,1084.7650000120727,-0.05470253684011728 +216954,1084.7700000120728,-0.05470247104757866 +216955,1084.775000012073,-0.05470240525228778 +216956,1084.780000012073,-0.054702339454244436 +216957,1084.7850000120732,-0.054702273653448416 +216958,1084.7900000120733,-0.05470220784989951 +216959,1084.7950000120734,-0.05470214204359749 +216960,1084.8000000120735,-0.054702076234542166 +216961,1084.8050000120736,-0.05470201042273331 +216962,1084.8100000120737,-0.054701944608170724 +216963,1084.8150000120738,-0.0547018787908542 +216964,1084.820000012074,-0.05470181297078351 +216965,1084.825000012074,-0.05470174714795846 +216966,1084.8300000120742,-0.05470168132237882 +216967,1084.8350000120743,-0.05470161549404439 +216968,1084.8400000120744,-0.054701549662954964 +216969,1084.8450000120745,-0.05470148382911032 +216970,1084.8500000120746,-0.05470141799251023 +216971,1084.8550000120747,-0.05470135215315452 +216972,1084.8600000120748,-0.05470128631104295 +216973,1084.865000012075,-0.054701220466175315 +216974,1084.870000012075,-0.0547011546185514 +216975,1084.8750000120751,-0.05470108876817101 +216976,1084.8800000120752,-0.054701022915033905 +216977,1084.8850000120754,-0.054700957059139896 +216978,1084.8900000120755,-0.05470089120048877 +216979,1084.8950000120756,-0.0547008253390803 +216980,1084.9000000120757,-0.054700759474914276 +216981,1084.9050000120758,-0.0547006936079905 +216982,1084.910000012076,-0.05470062773830874 +216983,1084.915000012076,-0.054700561865868795 +216984,1084.9200000120761,-0.05470049599067045 +216985,1084.9250000120762,-0.05470043011271349 +216986,1084.9300000120763,-0.054700364231997714 +216987,1084.9350000120764,-0.05470029834852289 +216988,1084.9400000120766,-0.05470023246228883 +216989,1084.9450000120767,-0.054700166573295295 +216990,1084.9500000120768,-0.05470010068154208 +216991,1084.9550000120769,-0.054700034787029 +216992,1084.960000012077,-0.05469996888975581 +216993,1084.965000012077,-0.054699902989722306 +216994,1084.9700000120772,-0.05469983708692827 +216995,1084.9750000120773,-0.054699771181373494 +216996,1084.9800000120774,-0.05469970527305776 +216997,1084.9850000120775,-0.054699639361980856 +216998,1084.9900000120776,-0.05469957344814257 +216999,1084.9950000120778,-0.05469950753154269 +217000,1085.0000000120779,-0.05469944161218101 +217001,1085.005000012078,-0.0546993756900573 +217002,1085.010000012078,-0.05469930976517135 +217003,1085.0150000120782,-0.054699243837522955 +217004,1085.0200000120783,-0.05469917790711189 +217005,1085.0250000120784,-0.054699111973937946 +217006,1085.0300000120785,-0.054699046038000916 +217007,1085.0350000120786,-0.05469898009930058 +217008,1085.0400000120787,-0.054698914157836724 +217009,1085.0450000120788,-0.05469884821360914 +217010,1085.050000012079,-0.05469878226661761 +217011,1085.055000012079,-0.05469871631686192 +217012,1085.0600000120792,-0.05469865036434186 +217013,1085.0650000120793,-0.054698584409057206 +217014,1085.0700000120794,-0.05469851845100775 +217015,1085.0750000120795,-0.05469845249019326 +217016,1085.0800000120796,-0.054698386526613546 +217017,1085.0850000120797,-0.05469832056026839 +217018,1085.0900000120798,-0.05469825459115756 +217019,1085.09500001208,-0.05469818861928087 +217020,1085.10000001208,-0.054698122644638095 +217021,1085.1050000120802,-0.054698056667228996 +217022,1085.1100000120803,-0.054697990687053395 +217023,1085.1150000120804,-0.05469792470411105 +217024,1085.1200000120805,-0.05469785871840175 +217025,1085.1250000120806,-0.054697792729925296 +217026,1085.1300000120807,-0.05469772673868145 +217027,1085.1350000120808,-0.054697660744670015 +217028,1085.140000012081,-0.05469759474789078 +217029,1085.145000012081,-0.054697528748343514 +217030,1085.1500000120811,-0.05469746274602801 +217031,1085.1550000120812,-0.054697396740944045 +217032,1085.1600000120814,-0.05469733073309142 +217033,1085.1650000120815,-0.0546972647224699 +217034,1085.1700000120816,-0.05469719870907928 +217035,1085.1750000120817,-0.05469713269291934 +217036,1085.1800000120818,-0.05469706667398988 +217037,1085.185000012082,-0.05469700065229067 +217038,1085.190000012082,-0.05469693462782149 +217039,1085.1950000120821,-0.054696868600582135 +217040,1085.2000000120822,-0.05469680257057239 +217041,1085.2050000120823,-0.05469673653779202 +217042,1085.2100000120824,-0.054696670502240835 +217043,1085.2150000120826,-0.05469660446391861 +217044,1085.2200000120827,-0.05469653842282512 +217045,1085.2250000120828,-0.05469647237896015 +217046,1085.2300000120829,-0.054696406332323505 +217047,1085.235000012083,-0.054696340282914944 +217048,1085.240000012083,-0.05469627423073426 +217049,1085.2450000120832,-0.05469620817578124 +217050,1085.2500000120833,-0.054696142118055666 +217051,1085.2550000120834,-0.05469607605755731 +217052,1085.2600000120835,-0.05469600999428598 +217053,1085.2650000120836,-0.05469594392824143 +217054,1085.2700000120838,-0.054695877859423474 +217055,1085.2750000120839,-0.05469581178783187 +217056,1085.280000012084,-0.05469574571346641 +217057,1085.285000012084,-0.05469567963632689 +217058,1085.2900000120842,-0.054695613556413065 +217059,1085.2950000120843,-0.054695547473724744 +217060,1085.3000000120844,-0.0546954813882617 +217061,1085.3050000120845,-0.05469541530002371 +217062,1085.3100000120846,-0.05469534920901058 +217063,1085.3150000120847,-0.05469528311522207 +217064,1085.3200000120848,-0.054695217018657975 +217065,1085.325000012085,-0.05469515091931807 +217066,1085.330000012085,-0.05469508481720213 +217067,1085.3350000120852,-0.05469501871230996 +217068,1085.3400000120853,-0.05469495260464133 +217069,1085.3450000120854,-0.05469488649419603 +217070,1085.3500000120855,-0.05469482038097383 +217071,1085.3550000120856,-0.054694754264974506 +217072,1085.3600000120857,-0.054694688146197865 +217073,1085.3650000120858,-0.05469462202464368 +217074,1085.370000012086,-0.05469455590031173 +217075,1085.375000012086,-0.05469448977320179 +217076,1085.3800000120862,-0.05469442364331366 +217077,1085.3850000120863,-0.05469435751064711 +217078,1085.3900000120864,-0.05469429137520193 +217079,1085.3950000120865,-0.05469422523697789 +217080,1085.4000000120866,-0.05469415909597477 +217081,1085.4050000120867,-0.054694092952192366 +217082,1085.4100000120868,-0.05469402680563046 +217083,1085.415000012087,-0.05469396065628882 +217084,1085.420000012087,-0.05469389450416725 +217085,1085.4250000120871,-0.054693828349265505 +217086,1085.4300000120872,-0.054693762191583374 +217087,1085.4350000120874,-0.054693696031120655 +217088,1085.4400000120875,-0.05469362986787711 +217089,1085.4450000120876,-0.05469356370185253 +217090,1085.4500000120877,-0.0546934975330467 +217091,1085.4550000120878,-0.05469343136145939 +217092,1085.460000012088,-0.05469336518709039 +217093,1085.465000012088,-0.05469329900993948 +217094,1085.4700000120881,-0.054693232830006454 +217095,1085.4750000120882,-0.05469316664729107 +217096,1085.4800000120883,-0.05469310046179311 +217097,1085.4850000120884,-0.05469303427351237 +217098,1085.4900000120886,-0.05469296808244862 +217099,1085.4950000120887,-0.05469290188860164 +217100,1085.5000000120888,-0.054692835691971226 +217101,1085.5050000120889,-0.05469276949255715 +217102,1085.510000012089,-0.05469270329035919 +217103,1085.515000012089,-0.05469263708537713 +217104,1085.5200000120892,-0.05469257087761075 +217105,1085.5250000120893,-0.05469250466705982 +217106,1085.5300000120894,-0.05469243845372414 +217107,1085.5350000120895,-0.05469237223760348 +217108,1085.5400000120896,-0.05469230601869761 +217109,1085.5450000120898,-0.054692239797006326 +217110,1085.5500000120899,-0.0546921735725294 +217111,1085.55500001209,-0.054692107345266625 +217112,1085.56000001209,-0.05469204111521776 +217113,1085.5650000120902,-0.05469197488238261 +217114,1085.5700000120903,-0.054691908646760934 +217115,1085.5750000120904,-0.054691842408352516 +217116,1085.5800000120905,-0.05469177616715715 +217117,1085.5850000120906,-0.05469170992317458 +217118,1085.5900000120907,-0.05469164367640464 +217119,1085.5950000120908,-0.05469157742684706 +217120,1085.600000012091,-0.054691511174501654 +217121,1085.605000012091,-0.054691444919368185 +217122,1085.6100000120912,-0.05469137866144644 +217123,1085.6150000120913,-0.05469131240073618 +217124,1085.6200000120914,-0.0546912461372372 +217125,1085.6250000120915,-0.054691179870949284 +217126,1085.6300000120916,-0.054691113601872204 +217127,1085.6350000120917,-0.054691047330005745 +217128,1085.6400000120918,-0.05469098105534968 +217129,1085.645000012092,-0.05469091477790378 +217130,1085.650000012092,-0.054690848497667845 +217131,1085.6550000120922,-0.054690782214641645 +217132,1085.6600000120923,-0.054690715928824955 +217133,1085.6650000120924,-0.05469064964021756 +217134,1085.6700000120925,-0.05469058334881923 +217135,1085.6750000120926,-0.05469051705462975 +217136,1085.6800000120927,-0.05469045075764889 +217137,1085.6850000120928,-0.05469038445787643 +217138,1085.690000012093,-0.05469031815531217 +217139,1085.695000012093,-0.05469025184995587 +217140,1085.7000000120931,-0.05469018554180731 +217141,1085.7050000120933,-0.05469011923086627 +217142,1085.7100000120934,-0.05469005291713253 +217143,1085.7150000120935,-0.05468998660060587 +217144,1085.7200000120936,-0.05468992028128605 +217145,1085.7250000120937,-0.054689853959172884 +217146,1085.7300000120938,-0.05468978763426611 +217147,1085.735000012094,-0.054689721306565534 +217148,1085.740000012094,-0.05468965497607093 +217149,1085.7450000120941,-0.05468958864278207 +217150,1085.7500000120942,-0.05468952230669873 +217151,1085.7550000120943,-0.05468945596782069 +217152,1085.7600000120945,-0.05468938962614773 +217153,1085.7650000120946,-0.054689323281679636 +217154,1085.7700000120947,-0.05468925693441617 +217155,1085.7750000120948,-0.054689190584357124 +217156,1085.780000012095,-0.05468912423150226 +217157,1085.785000012095,-0.05468905787585136 +217158,1085.790000012095,-0.05468899151740422 +217159,1085.7950000120952,-0.0546889251561606 +217160,1085.8000000120953,-0.05468885879212027 +217161,1085.8050000120954,-0.054688792425283024 +217162,1085.8100000120955,-0.05468872605564863 +217163,1085.8150000120957,-0.05468865968321687 +217164,1085.8200000120958,-0.05468859330798752 +217165,1085.8250000120959,-0.054688526929960346 +217166,1085.830000012096,-0.05468846054913514 +217167,1085.835000012096,-0.05468839416551168 +217168,1085.8400000120962,-0.05468832777908973 +217169,1085.8450000120963,-0.05468826138986907 +217170,1085.8500000120964,-0.05468819499784948 +217171,1085.8550000120965,-0.05468812860303073 +217172,1085.8600000120966,-0.05468806220541262 +217173,1085.8650000120967,-0.054687995804994914 +217174,1085.8700000120969,-0.05468792940177737 +217175,1085.875000012097,-0.05468786299575979 +217176,1085.880000012097,-0.05468779658694193 +217177,1085.8850000120972,-0.05468773017532358 +217178,1085.8900000120973,-0.05468766376090452 +217179,1085.8950000120974,-0.0546875973436845 +217180,1085.9000000120975,-0.05468753092366333 +217181,1085.9050000120976,-0.05468746450084076 +217182,1085.9100000120977,-0.054687398075216595 +217183,1085.9150000120978,-0.054687331646790585 +217184,1085.920000012098,-0.054687265215562504 +217185,1085.925000012098,-0.054687198781532144 +217186,1085.9300000120982,-0.05468713234469928 +217187,1085.9350000120983,-0.05468706590506368 +217188,1085.9400000120984,-0.05468699946262511 +217189,1085.9450000120985,-0.054686933017383366 +217190,1085.9500000120986,-0.05468686656933822 +217191,1085.9550000120987,-0.05468680011848945 +217192,1085.9600000120988,-0.05468673366483681 +217193,1085.965000012099,-0.054686667208380085 +217194,1085.970000012099,-0.05468660074911907 +217195,1085.9750000120991,-0.05468653428705352 +217196,1085.9800000120993,-0.05468646782218322 +217197,1085.9850000120994,-0.05468640135450794 +217198,1085.9900000120995,-0.054686334884027445 +217199,1085.9950000120996,-0.05468626841074152 +217200,1086.0000000120997,-0.054686201934649945 +217201,1086.0050000120998,-0.054686135455752495 +217202,1086.0100000121,-0.054686068974048936 +217203,1086.0150000121,-0.05468600248953905 +217204,1086.0200000121001,-0.05468593600222261 +217205,1086.0250000121002,-0.05468586951209939 +217206,1086.0300000121003,-0.05468580301916916 +217207,1086.0350000121005,-0.0546857365234317 +217208,1086.0400000121006,-0.05468567002488679 +217209,1086.0450000121007,-0.0546856035235342 +217210,1086.0500000121008,-0.054685537019373696 +217211,1086.055000012101,-0.05468547051240506 +217212,1086.060000012101,-0.05468540400262808 +217213,1086.065000012101,-0.0546853374900425 +217214,1086.0700000121012,-0.05468527097464812 +217215,1086.0750000121013,-0.054685204456444696 +217216,1086.0800000121014,-0.05468513793543201 +217217,1086.0850000121015,-0.05468507141160984 +217218,1086.0900000121017,-0.05468500488497796 +217219,1086.0950000121018,-0.05468493835553613 +217220,1086.1000000121019,-0.054684871823284145 +217221,1086.105000012102,-0.054684805288221755 +217222,1086.110000012102,-0.05468473875034876 +217223,1086.1150000121022,-0.054684672209664914 +217224,1086.1200000121023,-0.054684605666169984 +217225,1086.1250000121024,-0.054684539119863776 +217226,1086.1300000121025,-0.054684472570746025 +217227,1086.1350000121026,-0.05468440601881653 +217228,1086.1400000121027,-0.05468433946407507 +217229,1086.1450000121029,-0.054684272906521385 +217230,1086.150000012103,-0.05468420634615528 +217231,1086.155000012103,-0.05468413978297652 +217232,1086.1600000121032,-0.054684073216984874 +217233,1086.1650000121033,-0.054684006648180114 +217234,1086.1700000121034,-0.054683940076562014 +217235,1086.1750000121035,-0.05468387350213034 +217236,1086.1800000121036,-0.05468380692488488 +217237,1086.1850000121037,-0.0546837403448254 +217238,1086.1900000121038,-0.05468367376195167 +217239,1086.195000012104,-0.054683607176263464 +217240,1086.200000012104,-0.054683540587760565 +217241,1086.2050000121042,-0.05468347399644273 +217242,1086.2100000121043,-0.054683407402309744 +217243,1086.2150000121044,-0.05468334080536137 +217244,1086.2200000121045,-0.05468327420559738 +217245,1086.2250000121046,-0.054683207603017564 +217246,1086.2300000121047,-0.05468314099762168 +217247,1086.2350000121048,-0.05468307438940948 +217248,1086.240000012105,-0.05468300777838077 +217249,1086.245000012105,-0.05468294116453531 +217250,1086.2500000121051,-0.05468287454787287 +217251,1086.2550000121053,-0.054682807928393216 +217252,1086.2600000121054,-0.054682741306096135 +217253,1086.2650000121055,-0.0546826746809814 +217254,1086.2700000121056,-0.054682608053048753 +217255,1086.2750000121057,-0.054682541422298 +217256,1086.2800000121058,-0.054682474788728896 +217257,1086.285000012106,-0.05468240815234121 +217258,1086.290000012106,-0.05468234151313472 +217259,1086.2950000121061,-0.0546822748711092 +217260,1086.3000000121062,-0.05468220822626442 +217261,1086.3050000121063,-0.05468214157860015 +217262,1086.3100000121065,-0.054682074928116164 +217263,1086.3150000121066,-0.05468200827481222 +217264,1086.3200000121067,-0.0546819416186881 +217265,1086.3250000121068,-0.05468187495974358 +217266,1086.330000012107,-0.054681808297978425 +217267,1086.335000012107,-0.05468174163339241 +217268,1086.340000012107,-0.0546816749659853 +217269,1086.3450000121072,-0.05468160829575686 +217270,1086.3500000121073,-0.05468154162270687 +217271,1086.3550000121074,-0.05468147494683511 +217272,1086.3600000121075,-0.05468140826814134 +217273,1086.3650000121077,-0.054681341586625326 +217274,1086.3700000121078,-0.054681274902286844 +217275,1086.3750000121079,-0.05468120821512567 +217276,1086.380000012108,-0.05468114152514156 +217277,1086.385000012108,-0.05468107483233429 +217278,1086.3900000121082,-0.05468100813670364 +217279,1086.3950000121083,-0.05468094143824938 +217280,1086.4000000121084,-0.05468087473697128 +217281,1086.4050000121085,-0.054680808032869094 +217282,1086.4100000121086,-0.054680741325942604 +217283,1086.4150000121087,-0.05468067461619158 +217284,1086.4200000121089,-0.05468060790361579 +217285,1086.425000012109,-0.054680541188215005 +217286,1086.430000012109,-0.05468047446998899 +217287,1086.4350000121092,-0.05468040774893753 +217288,1086.4400000121093,-0.05468034102506037 +217289,1086.4450000121094,-0.054680274298357305 +217290,1086.4500000121095,-0.0546802075688281 +217291,1086.4550000121096,-0.054680140836472504 +217292,1086.4600000121097,-0.054680074101290305 +217293,1086.4650000121098,-0.05468000736328126 +217294,1086.47000001211,-0.05467994062244516 +217295,1086.47500001211,-0.054679873878781766 +217296,1086.4800000121102,-0.054679807132290835 +217297,1086.4850000121103,-0.054679740382972145 +217298,1086.4900000121104,-0.054679673630825466 +217299,1086.4950000121105,-0.05467960687585055 +217300,1086.5000000121106,-0.05467954011804719 +217301,1086.5050000121107,-0.05467947335741515 +217302,1086.5100000121108,-0.054679406593954184 +217303,1086.515000012111,-0.054679339827664084 +217304,1086.520000012111,-0.05467927305854459 +217305,1086.5250000121111,-0.054679206286595505 +217306,1086.5300000121113,-0.05467913951181658 +217307,1086.5350000121114,-0.054679072734207565 +217308,1086.5400000121115,-0.054679005953768255 +217309,1086.5450000121116,-0.05467893917049841 +217310,1086.5500000121117,-0.05467887238439781 +217311,1086.5550000121118,-0.0546788055954662 +217312,1086.560000012112,-0.05467873880370337 +217313,1086.565000012112,-0.054678672009109065 +217314,1086.5700000121121,-0.05467860521168308 +217315,1086.5750000121122,-0.054678538411425164 +217316,1086.5800000121124,-0.05467847160833509 +217317,1086.5850000121125,-0.05467840480241263 +217318,1086.5900000121126,-0.05467833799365755 +217319,1086.5950000121127,-0.05467827118206961 +217320,1086.6000000121128,-0.05467820436764859 +217321,1086.605000012113,-0.05467813755039425 +217322,1086.610000012113,-0.05467807073030636 +217323,1086.6150000121131,-0.05467800390738469 +217324,1086.6200000121132,-0.05467793708162901 +217325,1086.6250000121133,-0.05467787025303907 +217326,1086.6300000121134,-0.05467780342161467 +217327,1086.6350000121136,-0.054677736587355544 +217328,1086.6400000121137,-0.054677669750261476 +217329,1086.6450000121138,-0.054677602910332225 +217330,1086.6500000121139,-0.054677536067567575 +217331,1086.655000012114,-0.05467746922196727 +217332,1086.660000012114,-0.054677402373531095 +217333,1086.6650000121142,-0.05467733552225881 +217334,1086.6700000121143,-0.05467726866815019 +217335,1086.6750000121144,-0.054677201811204994 +217336,1086.6800000121145,-0.054677134951422984 +217337,1086.6850000121146,-0.05467706808880394 +217338,1086.6900000121148,-0.0546770012233476 +217339,1086.6950000121149,-0.054676934355053775 +217340,1086.700000012115,-0.0546768674839222 +217341,1086.705000012115,-0.05467680060995265 +217342,1086.7100000121152,-0.05467673373314489 +217343,1086.7150000121153,-0.05467666685349869 +217344,1086.7200000121154,-0.05467659997101382 +217345,1086.7250000121155,-0.054676533085690024 +217346,1086.7300000121156,-0.05467646619752709 +217347,1086.7350000121157,-0.054676399306524785 +217348,1086.7400000121158,-0.05467633241268287 +217349,1086.745000012116,-0.05467626551600111 +217350,1086.750000012116,-0.05467619861647927 +217351,1086.7550000121162,-0.05467613171411712 +217352,1086.7600000121163,-0.05467606480891442 +217353,1086.7650000121164,-0.05467599790087094 +217354,1086.7700000121165,-0.054675930989986445 +217355,1086.7750000121166,-0.0546758640762607 +217356,1086.7800000121167,-0.05467579715969346 +217357,1086.7850000121168,-0.054675730240284506 +217358,1086.790000012117,-0.05467566331803361 +217359,1086.795000012117,-0.05467559639294052 +217360,1086.8000000121172,-0.054675529465005014 +217361,1086.8050000121173,-0.05467546253422684 +217362,1086.8100000121174,-0.05467539560060578 +217363,1086.8150000121175,-0.054675328664141605 +217364,1086.8200000121176,-0.05467526172483406 +217365,1086.8250000121177,-0.05467519478268291 +217366,1086.8300000121178,-0.05467512783768794 +217367,1086.835000012118,-0.054675060889848894 +217368,1086.840000012118,-0.05467499393916555 +217369,1086.8450000121181,-0.05467492698563767 +217370,1086.8500000121182,-0.05467486002926502 +217371,1086.8550000121184,-0.054674793070047356 +217372,1086.8600000121185,-0.054674726107984455 +217373,1086.8650000121186,-0.054674659143076086 +217374,1086.8700000121187,-0.054674592175321994 +217375,1086.8750000121188,-0.05467452520472196 +217376,1086.880000012119,-0.05467445823127574 +217377,1086.885000012119,-0.05467439125498309 +217378,1086.8900000121191,-0.05467432427584379 +217379,1086.8950000121192,-0.054674257293857595 +217380,1086.9000000121193,-0.05467419030902428 +217381,1086.9050000121194,-0.0546741233213436 +217382,1086.9100000121196,-0.05467405633081532 +217383,1086.9150000121197,-0.05467398933743921 +217384,1086.9200000121198,-0.05467392234121502 +217385,1086.9250000121199,-0.054673855342142516 +217386,1086.93000001212,-0.05467378834022148 +217387,1086.93500001212,-0.05467372133545166 +217388,1086.9400000121202,-0.054673654327832825 +217389,1086.9450000121203,-0.054673587317364734 +217390,1086.9500000121204,-0.05467352030404716 +217391,1086.9550000121205,-0.054673453287879856 +217392,1086.9600000121206,-0.05467338626886259 +217393,1086.9650000121208,-0.054673319246995124 +217394,1086.9700000121209,-0.05467325222227723 +217395,1086.975000012121,-0.05467318519470865 +217396,1086.980000012121,-0.054673118164289165 +217397,1086.9850000121212,-0.054673051131018544 +217398,1086.9900000121213,-0.054672984094896536 +217399,1086.9950000121214,-0.054672917055922914 +217400,1087.0000000121215,-0.05467285001409742 +217401,1087.0050000121216,-0.054672782969419846 +217402,1087.0100000121217,-0.054672715921889936 +217403,1087.0150000121218,-0.05467264887150745 +217404,1087.020000012122,-0.05467258181827215 +217405,1087.025000012122,-0.05467251476218381 +217406,1087.0300000121222,-0.0546724477032422 +217407,1087.0350000121223,-0.05467238064144706 +217408,1087.0400000121224,-0.05467231357679818 +217409,1087.0450000121225,-0.054672246509295294 +217410,1087.0500000121226,-0.05467217943893817 +217411,1087.0550000121227,-0.05467211236572659 +217412,1087.0600000121228,-0.054672045289660305 +217413,1087.065000012123,-0.05467197821073907 +217414,1087.070000012123,-0.05467191112896265 +217415,1087.0750000121232,-0.054671844044330814 +217416,1087.0800000121233,-0.054671776956843304 +217417,1087.0850000121234,-0.05467170986649991 +217418,1087.0900000121235,-0.05467164277330038 +217419,1087.0950000121236,-0.05467157567724446 +217420,1087.1000000121237,-0.05467150857833194 +217421,1087.1050000121238,-0.05467144147656256 +217422,1087.110000012124,-0.05467137437193611 +217423,1087.115000012124,-0.054671307264452323 +217424,1087.1200000121241,-0.05467124015411098 +217425,1087.1250000121242,-0.054671173040911826 +217426,1087.1300000121244,-0.05467110592485463 +217427,1087.1350000121245,-0.05467103880593915 +217428,1087.1400000121246,-0.05467097168416514 +217429,1087.1450000121247,-0.05467090455953238 +217430,1087.1500000121248,-0.05467083743204061 +217431,1087.155000012125,-0.05467077030168962 +217432,1087.160000012125,-0.054670703168479134 +217433,1087.1650000121251,-0.05467063603240894 +217434,1087.1700000121252,-0.05467056889347879 +217435,1087.1750000121253,-0.05467050175168845 +217436,1087.1800000121254,-0.05467043460703768 +217437,1087.1850000121256,-0.054670367459526234 +217438,1087.1900000121257,-0.054670300309153874 +217439,1087.1950000121258,-0.05467023315592036 +217440,1087.2000000121259,-0.054670165999825444 +217441,1087.205000012126,-0.0546700988408689 +217442,1087.210000012126,-0.0546700316790505 +217443,1087.2150000121262,-0.05466996451436998 +217444,1087.2200000121263,-0.05466989734682712 +217445,1087.2250000121264,-0.05466983017642166 +217446,1087.2300000121265,-0.05466976300315336 +217447,1087.2350000121266,-0.054669695827022 +217448,1087.2400000121268,-0.05466962864802733 +217449,1087.2450000121269,-0.0546695614661691 +217450,1087.250000012127,-0.05466949428144709 +217451,1087.255000012127,-0.054669427093861044 +217452,1087.2600000121272,-0.05466935990341072 +217453,1087.2650000121273,-0.054669292710095886 +217454,1087.2700000121274,-0.0546692255139163 +217455,1087.2750000121275,-0.05466915831487172 +217456,1087.2800000121276,-0.05466909111296191 +217457,1087.2850000121277,-0.054669023908186634 +217458,1087.2900000121278,-0.05466895670054563 +217459,1087.295000012128,-0.05466888949003868 +217460,1087.300000012128,-0.05466882227666552 +217461,1087.3050000121282,-0.05466875506042594 +217462,1087.3100000121283,-0.05466868784131967 +217463,1087.3150000121284,-0.054668620619346485 +217464,1087.3200000121285,-0.05466855339450614 +217465,1087.3250000121286,-0.05466848616679839 +217466,1087.3300000121287,-0.05466841893622299 +217467,1087.3350000121288,-0.05466835170277972 +217468,1087.340000012129,-0.05466828446646832 +217469,1087.345000012129,-0.054668217227288554 +217470,1087.3500000121292,-0.05466814998524018 +217471,1087.3550000121293,-0.05466808274032295 +217472,1087.3600000121294,-0.05466801549253663 +217473,1087.3650000121295,-0.05466794824188098 +217474,1087.3700000121296,-0.054667880988355746 +217475,1087.3750000121297,-0.05466781373196071 +217476,1087.3800000121298,-0.0546677464726956 +217477,1087.38500001213,-0.0546676792105602 +217478,1087.39000001213,-0.05466761194555426 +217479,1087.3950000121301,-0.05466754467767753 +217480,1087.4000000121302,-0.05466747740692978 +217481,1087.4050000121304,-0.05466741013331075 +217482,1087.4100000121305,-0.05466734285682021 +217483,1087.4150000121306,-0.05466727557745793 +217484,1087.4200000121307,-0.054667208295223646 +217485,1087.4250000121308,-0.054667141010117125 +217486,1087.430000012131,-0.05466707372213812 +217487,1087.435000012131,-0.054667006431286386 +217488,1087.4400000121311,-0.0546669391375617 +217489,1087.4450000121312,-0.0546668718409638 +217490,1087.4500000121313,-0.05466680454149244 +217491,1087.4550000121314,-0.054666737239147396 +217492,1087.4600000121316,-0.05466666993392842 +217493,1087.4650000121317,-0.05466660262583525 +217494,1087.4700000121318,-0.054666535314867676 +217495,1087.4750000121319,-0.054666468001025426 +217496,1087.480000012132,-0.05466640068430826 +217497,1087.485000012132,-0.054666333364715956 +217498,1087.4900000121322,-0.05466626604224825 +217499,1087.4950000121323,-0.0546661987169049 +217500,1087.5000000121324,-0.054666131388685674 +217501,1087.5050000121325,-0.05466606405759032 +217502,1087.5100000121327,-0.054665996723618604 +217503,1087.5150000121328,-0.05466592938677027 +217504,1087.5200000121329,-0.054665862047045086 +217505,1087.525000012133,-0.05466579470444279 +217506,1087.530000012133,-0.054665727358963155 +217507,1087.5350000121332,-0.05466566001060593 +217508,1087.5400000121333,-0.05466559265937089 +217509,1087.5450000121334,-0.05466552530525776 +217510,1087.5500000121335,-0.054665457948266306 +217511,1087.5550000121336,-0.054665390588396305 +217512,1087.5600000121337,-0.0546653232256475 +217513,1087.5650000121339,-0.05466525586001963 +217514,1087.570000012134,-0.054665188491512466 +217515,1087.575000012134,-0.05466512112012576 +217516,1087.5800000121342,-0.05466505374585927 +217517,1087.5850000121343,-0.05466498636871275 +217518,1087.5900000121344,-0.05466491898868595 +217519,1087.5950000121345,-0.05466485160577865 +217520,1087.6000000121346,-0.05466478421999058 +217521,1087.6050000121347,-0.0546647168313215 +217522,1087.6100000121348,-0.05466464943977117 +217523,1087.615000012135,-0.05466458204533935 +217524,1087.620000012135,-0.054664514648025776 +217525,1087.6250000121352,-0.05466444724783021 +217526,1087.6300000121353,-0.05466437984475242 +217527,1087.6350000121354,-0.054664312438792155 +217528,1087.6400000121355,-0.054664245029949175 +217529,1087.6450000121356,-0.054664177618223224 +217530,1087.6500000121357,-0.05466411020361406 +217531,1087.6550000121358,-0.05466404278612143 +217532,1087.660000012136,-0.054663975365745104 +217533,1087.665000012136,-0.054663907942484824 +217534,1087.6700000121361,-0.05466384051634036 +217535,1087.6750000121363,-0.05466377308731144 +217536,1087.6800000121364,-0.05466370565539785 +217537,1087.6850000121365,-0.05466363822059931 +217538,1087.6900000121366,-0.0546635707829156 +217539,1087.6950000121367,-0.05466350334234647 +217540,1087.7000000121368,-0.05466343589889168 +217541,1087.705000012137,-0.05466336845255096 +217542,1087.710000012137,-0.05466330100332408 +217543,1087.7150000121371,-0.0546632335512108 +217544,1087.7200000121372,-0.05466316609621086 +217545,1087.7250000121373,-0.05466309863832402 +217546,1087.7300000121375,-0.05466303117755004 +217547,1087.7350000121376,-0.05466296371388866 +217548,1087.7400000121377,-0.054662896247339644 +217549,1087.7450000121378,-0.054662828777902746 +217550,1087.750000012138,-0.05466276130557772 +217551,1087.755000012138,-0.0546626938303643 +217552,1087.760000012138,-0.05466262635226227 +217553,1087.7650000121382,-0.05466255887127136 +217554,1087.7700000121383,-0.05466249138739133 +217555,1087.7750000121384,-0.05466242390062193 +217556,1087.7800000121385,-0.05466235641096293 +217557,1087.7850000121387,-0.05466228891841406 +217558,1087.7900000121388,-0.054662221422975096 +217559,1087.7950000121389,-0.05466215392464577 +217560,1087.800000012139,-0.054662086423425835 +217561,1087.805000012139,-0.05466201891931506 +217562,1087.8100000121392,-0.05466195141231319 +217563,1087.8150000121393,-0.05466188390241997 +217564,1087.8200000121394,-0.054661816389635166 +217565,1087.8250000121395,-0.05466174887395852 +217566,1087.8300000121396,-0.05466168135538979 +217567,1087.8350000121397,-0.05466161383392873 +217568,1087.8400000121399,-0.054661546309575086 +217569,1087.84500001214,-0.05466147878232862 +217570,1087.85000001214,-0.05466141125218907 +217571,1087.8550000121402,-0.054661343719156194 +217572,1087.8600000121403,-0.054661276183229746 +217573,1087.8650000121404,-0.05466120864440947 +217574,1087.8700000121405,-0.05466114110269513 +217575,1087.8750000121406,-0.05466107355808647 +217576,1087.8800000121407,-0.054661006010583255 +217577,1087.8850000121408,-0.05466093846018521 +217578,1087.890000012141,-0.05466087090689212 +217579,1087.895000012141,-0.0546608033507037 +217580,1087.9000000121412,-0.05466073579161973 +217581,1087.9050000121413,-0.054660668229639955 +217582,1087.9100000121414,-0.05466060066476412 +217583,1087.9150000121415,-0.05466053309699198 +217584,1087.9200000121416,-0.054660465526323296 +217585,1087.9250000121417,-0.05466039795275779 +217586,1087.9300000121418,-0.05466033037629525 +217587,1087.935000012142,-0.0546602627969354 +217588,1087.940000012142,-0.054660195214678 +217589,1087.9450000121421,-0.054660127629522805 +217590,1087.9500000121423,-0.05466006004146957 +217591,1087.9550000121424,-0.054659992450518016 +217592,1087.9600000121425,-0.05465992485666793 +217593,1087.9650000121426,-0.05465985725991904 +217594,1087.9700000121427,-0.0546597896602711 +217595,1087.9750000121428,-0.05465972205772388 +217596,1087.980000012143,-0.054659654452277114 +217597,1087.985000012143,-0.05465958684393054 +217598,1087.9900000121431,-0.05465951923268394 +217599,1087.9950000121432,-0.05465945161853703 +217600,1088.0000000121433,-0.054659384001489585 +217601,1088.0050000121435,-0.05465931638154135 +217602,1088.0100000121436,-0.054659248758692075 +217603,1088.0150000121437,-0.0546591811329415 +217604,1088.0200000121438,-0.05465911350428938 +217605,1088.025000012144,-0.05465904587273548 +217606,1088.030000012144,-0.05465897823827952 +217607,1088.035000012144,-0.054658910600921276 +217608,1088.0400000121442,-0.05465884296066048 +217609,1088.0450000121443,-0.05465877531749689 +217610,1088.0500000121444,-0.054658707671430266 +217611,1088.0550000121445,-0.054658640022460334 +217612,1088.0600000121447,-0.054658572370586855 +217613,1088.0650000121448,-0.05465850471580959 +217614,1088.0700000121449,-0.05465843705812827 +217615,1088.075000012145,-0.05465836939754266 +217616,1088.080000012145,-0.054658301734052485 +217617,1088.0850000121452,-0.05465823406765752 +217618,1088.0900000121453,-0.054658166398357494 +217619,1088.0950000121454,-0.054658098726152175 +217620,1088.1000000121455,-0.054658031051041306 +217621,1088.1050000121456,-0.05465796337302463 +217622,1088.1100000121457,-0.05465789569210189 +217623,1088.1150000121459,-0.054657828008272846 +217624,1088.120000012146,-0.05465776032153724 +217625,1088.125000012146,-0.054657692631894836 +217626,1088.1300000121462,-0.05465762493934535 +217627,1088.1350000121463,-0.05465755724388858 +217628,1088.1400000121464,-0.05465748954552423 +217629,1088.1450000121465,-0.054657421844252055 +217630,1088.1500000121466,-0.05465735414007182 +217631,1088.1550000121467,-0.05465728643298326 +217632,1088.1600000121468,-0.05465721872298613 +217633,1088.165000012147,-0.05465715101008019 +217634,1088.170000012147,-0.05465708329426515 +217635,1088.1750000121472,-0.0546570155755408 +217636,1088.1800000121473,-0.05465694785390686 +217637,1088.1850000121474,-0.05465688012936309 +217638,1088.1900000121475,-0.054656812401909234 +217639,1088.1950000121476,-0.05465674467154504 +217640,1088.2000000121477,-0.054656676938270254 +217641,1088.2050000121478,-0.05465660920208463 +217642,1088.210000012148,-0.0546565414629879 +217643,1088.215000012148,-0.054656473720979835 +217644,1088.2200000121481,-0.054656405976060175 +217645,1088.2250000121483,-0.05465633822822865 +217646,1088.2300000121484,-0.054656270477485024 +217647,1088.2350000121485,-0.05465620272382904 +217648,1088.2400000121486,-0.05465613496726044 +217649,1088.2450000121487,-0.05465606720777898 +217650,1088.2500000121488,-0.0546559994453844 +217651,1088.255000012149,-0.05465593168007645 +217652,1088.260000012149,-0.05465586391185487 +217653,1088.2650000121491,-0.054655796140719415 +217654,1088.2700000121492,-0.054655728366669834 +217655,1088.2750000121493,-0.05465566058970586 +217656,1088.2800000121495,-0.05465559280982726 +217657,1088.2850000121496,-0.05465552502703375 +217658,1088.2900000121497,-0.054655457241325096 +217659,1088.2950000121498,-0.05465538945270104 +217660,1088.30000001215,-0.054655321661161355 +217661,1088.30500001215,-0.05465525386670575 +217662,1088.31000001215,-0.05465518606933398 +217663,1088.3150000121502,-0.0546551182690458 +217664,1088.3200000121503,-0.05465505046584096 +217665,1088.3250000121504,-0.05465498265971918 +217666,1088.3300000121505,-0.05465491485068023 +217667,1088.3350000121507,-0.05465484703872384 +217668,1088.3400000121508,-0.054654779223849786 +217669,1088.3450000121509,-0.054654711406057786 +217670,1088.350000012151,-0.054654643585347586 +217671,1088.355000012151,-0.05465457576171895 +217672,1088.3600000121512,-0.0546545079351716 +217673,1088.3650000121513,-0.05465444010570529 +217674,1088.3700000121514,-0.05465437227331977 +217675,1088.3750000121515,-0.05465430443801478 +217676,1088.3800000121516,-0.05465423659979007 +217677,1088.3850000121517,-0.054654168758645386 +217678,1088.3900000121519,-0.05465410091458047 +217679,1088.395000012152,-0.054654033067595066 +217680,1088.400000012152,-0.05465396521768892 +217681,1088.4050000121522,-0.05465389736486178 +217682,1088.4100000121523,-0.05465382950911338 +217683,1088.4150000121524,-0.05465376165044347 +217684,1088.4200000121525,-0.0546536937888518 +217685,1088.4250000121526,-0.0546536259243381 +217686,1088.4300000121527,-0.05465355805690214 +217687,1088.4350000121528,-0.05465349018654365 +217688,1088.440000012153,-0.05465342231326237 +217689,1088.445000012153,-0.054653354437058044 +217690,1088.4500000121532,-0.054653286557930426 +217691,1088.4550000121533,-0.05465321867587926 +217692,1088.4600000121534,-0.05465315079090428 +217693,1088.4650000121535,-0.054653082903005246 +217694,1088.4700000121536,-0.05465301501218188 +217695,1088.4750000121537,-0.054652947118433944 +217696,1088.4800000121538,-0.054652879221761166 +217697,1088.485000012154,-0.054652811322163306 +217698,1088.490000012154,-0.05465274341964009 +217699,1088.4950000121542,-0.05465267551419127 +217700,1088.5000000121543,-0.05465260760581661 +217701,1088.5050000121544,-0.05465253969451583 +217702,1088.5100000121545,-0.05465247178028867 +217703,1088.5150000121546,-0.05465240386313488 +217704,1088.5200000121547,-0.054652335943054214 +217705,1088.5250000121548,-0.054652268020046406 +217706,1088.530000012155,-0.054652200094111196 +217707,1088.535000012155,-0.054652132165248335 +217708,1088.5400000121551,-0.05465206423345755 +217709,1088.5450000121552,-0.05465199629873861 +217710,1088.5500000121554,-0.054651928361091236 +217711,1088.5550000121555,-0.05465186042051518 +217712,1088.5600000121556,-0.05465179247701019 +217713,1088.5650000121557,-0.05465172453057599 +217714,1088.5700000121558,-0.054651656581212335 +217715,1088.575000012156,-0.05465158862891897 +217716,1088.580000012156,-0.05465152067369564 +217717,1088.5850000121561,-0.05465145271554208 +217718,1088.5900000121562,-0.054651384754458035 +217719,1088.5950000121563,-0.05465131679044325 +217720,1088.6000000121564,-0.05465124882349746 +217721,1088.6050000121566,-0.054651180853620404 +217722,1088.6100000121567,-0.054651112880811835 +217723,1088.6150000121568,-0.0546510449050715 +217724,1088.6200000121569,-0.05465097692639913 +217725,1088.625000012157,-0.054650908944794456 +217726,1088.630000012157,-0.05465084096025724 +217727,1088.6350000121572,-0.05465077297278721 +217728,1088.6400000121573,-0.05465070498238411 +217729,1088.6450000121574,-0.0546506369890477 +217730,1088.6500000121575,-0.05465056899277771 +217731,1088.6550000121576,-0.054650500993573874 +217732,1088.6600000121578,-0.05465043299143594 +217733,1088.6650000121579,-0.05465036498636364 +217734,1088.670000012158,-0.05465029697835672 +217735,1088.675000012158,-0.054650228967414935 +217736,1088.6800000121582,-0.05465016095353801 +217737,1088.6850000121583,-0.05465009293672569 +217738,1088.6900000121584,-0.054650024916977714 +217739,1088.6950000121585,-0.054649956894293826 +217740,1088.7000000121586,-0.05464988886867377 +217741,1088.7050000121587,-0.05464982084011729 +217742,1088.7100000121588,-0.054649752808624115 +217743,1088.715000012159,-0.054649684774193984 +217744,1088.720000012159,-0.054649616736826646 +217745,1088.7250000121592,-0.054649548696521846 +217746,1088.7300000121593,-0.05464948065327931 +217747,1088.7350000121594,-0.054649412607098796 +217748,1088.7400000121595,-0.05464934455798003 +217749,1088.7450000121596,-0.05464927650592276 +217750,1088.7500000121597,-0.054649208450926724 +217751,1088.7550000121598,-0.05464914039299166 +217752,1088.76000001216,-0.0546490723321173 +217753,1088.76500001216,-0.0546490042683034 +217754,1088.7700000121602,-0.0546489362015497 +217755,1088.7750000121603,-0.05464886813185593 +217756,1088.7800000121604,-0.05464880005922184 +217757,1088.7850000121605,-0.054648731983647156 +217758,1088.7900000121606,-0.05464866390513163 +217759,1088.7950000121607,-0.054648595823675 +217760,1088.8000000121608,-0.05464852773927699 +217761,1088.805000012161,-0.05464845965193736 +217762,1088.810000012161,-0.05464839156165583 +217763,1088.8150000121611,-0.05464832346843215 +217764,1088.8200000121612,-0.054648255372266065 +217765,1088.8250000121614,-0.0546481872731573 +217766,1088.8300000121615,-0.05464811917110562 +217767,1088.8350000121616,-0.05464805106611074 +217768,1088.8400000121617,-0.05464798295817241 +217769,1088.8450000121618,-0.054647914847290355 +217770,1088.850000012162,-0.054647846733464324 +217771,1088.855000012162,-0.05464777861669406 +217772,1088.8600000121621,-0.054647710496979286 +217773,1088.8650000121622,-0.05464764237431976 +217774,1088.8700000121623,-0.054647574248715206 +217775,1088.8750000121624,-0.05464750612016536 +217776,1088.8800000121626,-0.05464743798866998 +217777,1088.8850000121627,-0.054647369854228786 +217778,1088.8900000121628,-0.054647301716841526 +217779,1088.8950000121629,-0.05464723357650794 +217780,1088.900000012163,-0.05464716543322777 +217781,1088.905000012163,-0.054647097287000734 +217782,1088.9100000121632,-0.054647029137826576 +217783,1088.9150000121633,-0.054646960985705054 +217784,1088.9200000121634,-0.05464689283063588 +217785,1088.9250000121635,-0.054646824672618804 +217786,1088.9300000121636,-0.054646756511653564 +217787,1088.9350000121638,-0.0546466883477399 +217788,1088.9400000121639,-0.05464662018087755 +217789,1088.945000012164,-0.05464655201106623 +217790,1088.950000012164,-0.05464648383830571 +217791,1088.9550000121642,-0.05464641566259572 +217792,1088.9600000121643,-0.05464634748393597 +217793,1088.9650000121644,-0.05464627930232622 +217794,1088.9700000121645,-0.054646211117766214 +217795,1088.9750000121646,-0.05464614293025568 +217796,1088.9800000121647,-0.05464607473979435 +217797,1088.9850000121648,-0.05464600654638196 +217798,1088.990000012165,-0.054645938350018256 +217799,1088.995000012165,-0.05464587015070298 +217800,1089.0000000121652,-0.054645801948435845 +217801,1089.0050000121653,-0.05464573374321661 +217802,1089.0100000121654,-0.054645665535045 +217803,1089.0150000121655,-0.054645597323920755 +217804,1089.0200000121656,-0.054645529109843625 +217805,1089.0250000121657,-0.054645460892813316 +217806,1089.0300000121658,-0.054645392672829585 +217807,1089.035000012166,-0.054645324449892174 +217808,1089.040000012166,-0.05464525622400081 +217809,1089.0450000121662,-0.05464518799515523 +217810,1089.0500000121663,-0.054645119763355156 +217811,1089.0550000121664,-0.05464505152860035 +217812,1089.0600000121665,-0.054644983290890535 +217813,1089.0650000121666,-0.05464491505022545 +217814,1089.0700000121667,-0.05464484680660482 +217815,1089.0750000121668,-0.05464477856002838 +217816,1089.080000012167,-0.0546447103104959 +217817,1089.085000012167,-0.054644642058007065 +217818,1089.0900000121671,-0.05464457380256165 +217819,1089.0950000121672,-0.05464450554415937 +217820,1089.1000000121674,-0.05464443728279997 +217821,1089.1050000121675,-0.05464436901848319 +217822,1089.1100000121676,-0.05464430075120875 +217823,1089.1150000121677,-0.054644232480976385 +217824,1089.1200000121678,-0.05464416420778585 +217825,1089.125000012168,-0.054644095931636855 +217826,1089.130000012168,-0.05464402765252915 +217827,1089.1350000121681,-0.05464395937046247 +217828,1089.1400000121682,-0.054643891085436554 +217829,1089.1450000121683,-0.05464382279745112 +217830,1089.1500000121684,-0.054643754506505916 +217831,1089.1550000121686,-0.05464368621260067 +217832,1089.1600000121687,-0.05464361791573512 +217833,1089.1650000121688,-0.05464354961590901 +217834,1089.1700000121689,-0.05464348131312206 +217835,1089.175000012169,-0.05464341300737399 +217836,1089.180000012169,-0.05464334469866458 +217837,1089.1850000121692,-0.05464327638699352 +217838,1089.1900000121693,-0.05464320807236057 +217839,1089.1950000121694,-0.054643139754765445 +217840,1089.2000000121695,-0.0546430714342079 +217841,1089.2050000121696,-0.05464300311068766 +217842,1089.2100000121698,-0.054642934784204455 +217843,1089.2150000121699,-0.05464286645475802 +217844,1089.22000001217,-0.054642798122348096 +217845,1089.22500001217,-0.0546427297869744 +217846,1089.2300000121702,-0.05464266144863667 +217847,1089.2350000121703,-0.054642593107334665 +217848,1089.2400000121704,-0.054642524763068086 +217849,1089.2450000121705,-0.05464245641583668 +217850,1089.2500000121706,-0.05464238806564018 +217851,1089.2550000121707,-0.05464231971247833 +217852,1089.2600000121708,-0.05464225135635084 +217853,1089.265000012171,-0.05464218299725747 +217854,1089.270000012171,-0.054642114635197914 +217855,1089.2750000121712,-0.05464204627017195 +217856,1089.2800000121713,-0.05464197790217928 +217857,1089.2850000121714,-0.05464190953121964 +217858,1089.2900000121715,-0.05464184115729277 +217859,1089.2950000121716,-0.05464177278039841 +217860,1089.3000000121717,-0.054641704400536284 +217861,1089.3050000121718,-0.054641636017706136 +217862,1089.310000012172,-0.05464156763190768 +217863,1089.315000012172,-0.05464149924314064 +217864,1089.3200000121722,-0.05464143085140478 +217865,1089.3250000121723,-0.05464136245669981 +217866,1089.3300000121724,-0.05464129405902547 +217867,1089.3350000121725,-0.054641225658381504 +217868,1089.3400000121726,-0.05464115725476762 +217869,1089.3450000121727,-0.054641088848183555 +217870,1089.3500000121728,-0.054641020438629055 +217871,1089.355000012173,-0.05464095202610385 +217872,1089.360000012173,-0.05464088361060766 +217873,1089.3650000121731,-0.05464081519214022 +217874,1089.3700000121733,-0.05464074677070127 +217875,1089.3750000121734,-0.05464067834629053 +217876,1089.3800000121735,-0.05464060991890773 +217877,1089.3850000121736,-0.054640541488552616 +217878,1089.3900000121737,-0.05464047305522492 +217879,1089.3950000121738,-0.05464040461892435 +217880,1089.400000012174,-0.05464033617965066 +217881,1089.405000012174,-0.054640267737403575 +217882,1089.4100000121741,-0.05464019929218281 +217883,1089.4150000121742,-0.05464013084398812 +217884,1089.4200000121743,-0.05464006239281922 +217885,1089.4250000121745,-0.05463999393867586 +217886,1089.4300000121746,-0.05463992548155776 +217887,1089.4350000121747,-0.054639857021464636 +217888,1089.4400000121748,-0.054639788558396234 +217889,1089.445000012175,-0.05463972009235228 +217890,1089.450000012175,-0.054639651623332515 +217891,1089.455000012175,-0.05463958315133665 +217892,1089.4600000121752,-0.05463951467636443 +217893,1089.4650000121753,-0.054639446198415584 +217894,1089.4700000121754,-0.054639377717489834 +217895,1089.4750000121755,-0.05463930923358692 +217896,1089.4800000121757,-0.05463924074670656 +217897,1089.4850000121758,-0.0546391722568485 +217898,1089.4900000121759,-0.054639103764012445 +217899,1089.495000012176,-0.05463903526819816 +217900,1089.500000012176,-0.05463896676940534 +217901,1089.5050000121762,-0.054638898267633754 +217902,1089.5100000121763,-0.05463882976288309 +217903,1089.5150000121764,-0.0546387612551531 +217904,1089.5200000121765,-0.0546386927444435 +217905,1089.5250000121766,-0.05463862423075405 +217906,1089.5300000121767,-0.05463855571408445 +217907,1089.5350000121769,-0.05463848719443443 +217908,1089.540000012177,-0.05463841867180373 +217909,1089.545000012177,-0.05463835014619208 +217910,1089.5500000121772,-0.054638281617599205 +217911,1089.5550000121773,-0.05463821308602484 +217912,1089.5600000121774,-0.0546381445514687 +217913,1089.5650000121775,-0.05463807601393052 +217914,1089.5700000121776,-0.05463800747341003 +217915,1089.5750000121777,-0.05463793892990697 +217916,1089.5800000121778,-0.05463787038342105 +217917,1089.585000012178,-0.054637801833952 +217918,1089.590000012178,-0.05463773328149957 +217919,1089.5950000121782,-0.05463766472606346 +217920,1089.6000000121783,-0.054637596167643424 +217921,1089.6050000121784,-0.054637527606239175 +217922,1089.6100000121785,-0.05463745904185043 +217923,1089.6150000121786,-0.054637390474476945 +217924,1089.6200000121787,-0.054637321904118435 +217925,1089.6250000121788,-0.05463725333077463 +217926,1089.630000012179,-0.05463718475444525 +217927,1089.635000012179,-0.05463711617513002 +217928,1089.6400000121791,-0.05463704759282868 +217929,1089.6450000121793,-0.054636979007540956 +217930,1089.6500000121794,-0.054636910419266584 +217931,1089.6550000121795,-0.054636841828005274 +217932,1089.6600000121796,-0.05463677323375676 +217933,1089.6650000121797,-0.05463670463652076 +217934,1089.6700000121798,-0.05463663603629702 +217935,1089.67500001218,-0.05463656743308526 +217936,1089.68000001218,-0.05463649882688522 +217937,1089.6850000121801,-0.054636430217696604 +217938,1089.6900000121802,-0.05463636160551914 +217939,1089.6950000121803,-0.054636292990352574 +217940,1089.7000000121805,-0.05463622437219661 +217941,1089.7050000121806,-0.05463615575105099 +217942,1089.7100000121807,-0.05463608712691544 +217943,1089.7150000121808,-0.05463601849978968 +217944,1089.720000012181,-0.054635949869673454 +217945,1089.725000012181,-0.054635881236566465 +217946,1089.730000012181,-0.05463581260046846 +217947,1089.7350000121812,-0.05463574396137915 +217948,1089.7400000121813,-0.05463567531929827 +217949,1089.7450000121814,-0.05463560667422555 +217950,1089.7500000121815,-0.05463553802616069 +217951,1089.7550000121817,-0.05463546937510344 +217952,1089.7600000121818,-0.05463540072105353 +217953,1089.7650000121819,-0.05463533206401069 +217954,1089.770000012182,-0.05463526340397462 +217955,1089.775000012182,-0.05463519474094505 +217956,1089.7800000121822,-0.05463512607492173 +217957,1089.7850000121823,-0.054635057405904366 +217958,1089.7900000121824,-0.054634988733892685 +217959,1089.7950000121825,-0.05463492005888642 +217960,1089.8000000121826,-0.054634851380885294 +217961,1089.8050000121827,-0.05463478269988903 +217962,1089.8100000121829,-0.05463471401589736 +217963,1089.815000012183,-0.05463464532891 +217964,1089.820000012183,-0.05463457663892667 +217965,1089.8250000121832,-0.054634507945947125 +217966,1089.8300000121833,-0.05463443924997105 +217967,1089.8350000121834,-0.0546343705509982 +217968,1089.8400000121835,-0.05463430184902829 +217969,1089.8450000121836,-0.054634233144061045 +217970,1089.8500000121837,-0.054634164436096186 +217971,1089.8550000121838,-0.05463409572513345 +217972,1089.860000012184,-0.05463402701117255 +217973,1089.865000012184,-0.054633958294213206 +217974,1089.8700000121842,-0.05463388957425515 +217975,1089.8750000121843,-0.054633820851298115 +217976,1089.8800000121844,-0.0546337521253418 +217977,1089.8850000121845,-0.05463368339638596 +217978,1089.8900000121846,-0.0546336146644303 +217979,1089.8950000121847,-0.05463354592947455 +217980,1089.9000000121848,-0.05463347719151844 +217981,1089.905000012185,-0.05463340845056167 +217982,1089.910000012185,-0.054633339706603994 +217983,1089.9150000121851,-0.05463327095964512 +217984,1089.9200000121853,-0.05463320220968477 +217985,1089.9250000121854,-0.054633133456722674 +217986,1089.9300000121855,-0.05463306470075855 +217987,1089.9350000121856,-0.054632995941792134 +217988,1089.9400000121857,-0.05463292717982314 +217989,1089.9450000121858,-0.0546328584148513 +217990,1089.950000012186,-0.05463278964687632 +217991,1089.955000012186,-0.05463272087589793 +217992,1089.9600000121861,-0.05463265210191587 +217993,1089.9650000121862,-0.05463258332492984 +217994,1089.9700000121863,-0.054632514544939566 +217995,1089.9750000121865,-0.054632445761944794 +217996,1089.9800000121866,-0.054632376975945224 +217997,1089.9850000121867,-0.05463230818694058 +217998,1089.9900000121868,-0.054632239394930594 +217999,1089.995000012187,-0.054632170599914986 +218000,1090.000000012187,-0.05463210180189347 +218001,1090.005000012187,-0.054632033000865776 +218002,1090.0100000121872,-0.05463196419683163 +218003,1090.0150000121873,-0.054631895389790755 +218004,1090.0200000121874,-0.054631826579742866 +218005,1090.0250000121875,-0.05463175776668769 +218006,1090.0300000121877,-0.05463168895062495 +218007,1090.0350000121878,-0.054631620131554356 +218008,1090.0400000121879,-0.05463155130947564 +218009,1090.045000012188,-0.05463148248438853 +218010,1090.050000012188,-0.05463141365629274 +218011,1090.0550000121882,-0.05463134482518799 +218012,1090.0600000121883,-0.05463127599107402 +218013,1090.0650000121884,-0.05463120715395053 +218014,1090.0700000121885,-0.054631138313817246 +218015,1090.0750000121886,-0.05463106947067389 +218016,1090.0800000121887,-0.054631000624520185 +218017,1090.0850000121889,-0.05463093177535585 +218018,1090.090000012189,-0.05463086292318062 +218019,1090.095000012189,-0.05463079406799419 +218020,1090.1000000121892,-0.054630725209796296 +218021,1090.1050000121893,-0.05463065634858667 +218022,1090.1100000121894,-0.05463058748436502 +218023,1090.1150000121895,-0.05463051861713107 +218024,1090.1200000121896,-0.05463044974688454 +218025,1090.1250000121897,-0.054630380873625144 +218026,1090.1300000121898,-0.054630311997352625 +218027,1090.13500001219,-0.054630243118066676 +218028,1090.14000001219,-0.05463017423576703 +218029,1090.1450000121902,-0.05463010535045341 +218030,1090.1500000121903,-0.05463003646212553 +218031,1090.1550000121904,-0.054629967570783124 +218032,1090.1600000121905,-0.0546298986764259 +218033,1090.1650000121906,-0.05462982977905358 +218034,1090.1700000121907,-0.05462976087866589 +218035,1090.1750000121908,-0.054629691975262545 +218036,1090.180000012191,-0.05462962306884326 +218037,1090.185000012191,-0.05462955415940776 +218038,1090.1900000121911,-0.05462948524695577 +218039,1090.1950000121913,-0.054629416331487 +218040,1090.2000000121914,-0.05462934741300117 +218041,1090.2050000121915,-0.05462927849149801 +218042,1090.2100000121916,-0.05462920956697724 +218043,1090.2150000121917,-0.054629140639438564 +218044,1090.2200000121918,-0.05462907170888171 +218045,1090.225000012192,-0.054629002775306405 +218046,1090.230000012192,-0.054628933838712354 +218047,1090.2350000121921,-0.05462886489909929 +218048,1090.2400000121922,-0.05462879595646692 +218049,1090.2450000121923,-0.05462872701081497 +218050,1090.2500000121925,-0.05462865806214316 +218051,1090.2550000121926,-0.0546285891104512 +218052,1090.2600000121927,-0.05462852015573881 +218053,1090.2650000121928,-0.054628451198005724 +218054,1090.270000012193,-0.054628382237251645 +218055,1090.275000012193,-0.054628313273476295 +218056,1090.280000012193,-0.05462824430667939 +218057,1090.2850000121932,-0.054628175336860665 +218058,1090.2900000121933,-0.05462810636401983 +218059,1090.2950000121934,-0.05462803738815659 +218060,1090.3000000121935,-0.054627968409270665 +218061,1090.3050000121937,-0.0546278994273618 +218062,1090.3100000121938,-0.054627830442429685 +218063,1090.3150000121939,-0.05462776145447405 +218064,1090.320000012194,-0.05462769246349461 +218065,1090.325000012194,-0.054627623469491085 +218066,1090.3300000121942,-0.05462755447246319 +218067,1090.3350000121943,-0.05462748547241064 +218068,1090.3400000121944,-0.054627416469333154 +218069,1090.3450000121945,-0.054627347463230454 +218070,1090.3500000121946,-0.05462727845410226 +218071,1090.3550000121948,-0.054627209441948266 +218072,1090.3600000121949,-0.05462714042676822 +218073,1090.365000012195,-0.054627071408561836 +218074,1090.370000012195,-0.054627002387328816 +218075,1090.3750000121952,-0.05462693336306889 +218076,1090.3800000121953,-0.05462686433578176 +218077,1090.3850000121954,-0.05462679530546716 +218078,1090.3900000121955,-0.05462672627212479 +218079,1090.3950000121956,-0.05462665723575438 +218080,1090.4000000121957,-0.054626588196355644 +218081,1090.4050000121958,-0.054626519153928285 +218082,1090.410000012196,-0.054626450108472044 +218083,1090.415000012196,-0.054626381059986615 +218084,1090.4200000121962,-0.05462631200847173 +218085,1090.4250000121963,-0.0546262429539271 +218086,1090.4300000121964,-0.054626173896352444 +218087,1090.4350000121965,-0.05462610483574747 +218088,1090.4400000121966,-0.054626035772111906 +218089,1090.4450000121967,-0.05462596670544545 +218090,1090.4500000121968,-0.054625897635747836 +218091,1090.455000012197,-0.05462582856301877 +218092,1090.460000012197,-0.05462575948725798 +218093,1090.4650000121972,-0.05462569040846516 +218094,1090.4700000121973,-0.05462562132664005 +218095,1090.4750000121974,-0.054625552241782345 +218096,1090.4800000121975,-0.05462548315389178 +218097,1090.4850000121976,-0.05462541406296805 +218098,1090.4900000121977,-0.054625344969010885 +218099,1090.4950000121978,-0.05462527587202 +218100,1090.500000012198,-0.054625206771995095 +218101,1090.505000012198,-0.05462513766893591 +218102,1090.5100000121981,-0.05462506856284215 +218103,1090.5150000121982,-0.05462499945371351 +218104,1090.5200000121984,-0.05462493034154973 +218105,1090.5250000121985,-0.05462486122635052 +218106,1090.5300000121986,-0.054624792108115584 +218107,1090.5350000121987,-0.05462472298684465 +218108,1090.5400000121988,-0.05462465386253743 +218109,1090.545000012199,-0.05462458473519364 +218110,1090.550000012199,-0.05462451560481297 +218111,1090.5550000121991,-0.05462444647139516 +218112,1090.5600000121992,-0.054624377334939925 +218113,1090.5650000121993,-0.054624308195446974 +218114,1090.5700000121994,-0.054624239052916024 +218115,1090.5750000121996,-0.05462416990734678 +218116,1090.5800000121997,-0.05462410075873896 +218117,1090.5850000121998,-0.054624031607092276 +218118,1090.5900000121999,-0.05462396245240646 +218119,1090.5950000122,-0.054623893294681196 +218120,1090.6000000122,-0.05462382413391622 +218121,1090.6050000122002,-0.05462375497011124 +218122,1090.6100000122003,-0.05462368580326596 +218123,1090.6150000122004,-0.05462361663338011 +218124,1090.6200000122005,-0.0546235474604534 +218125,1090.6250000122006,-0.05462347828448553 +218126,1090.6300000122008,-0.05462340910547623 +218127,1090.6350000122009,-0.05462333992342519 +218128,1090.640000012201,-0.054623270738332154 +218129,1090.645000012201,-0.054623201550196815 +218130,1090.6500000122012,-0.05462313235901888 +218131,1090.6550000122013,-0.054623063164798084 +218132,1090.6600000122014,-0.05462299396753413 +218133,1090.6650000122015,-0.05462292476722672 +218134,1090.6700000122016,-0.05462285556387559 +218135,1090.6750000122017,-0.05462278635748042 +218136,1090.6800000122018,-0.05462271714804095 +218137,1090.685000012202,-0.054622647935556885 +218138,1090.690000012202,-0.05462257872002793 +218139,1090.6950000122022,-0.05462250950145381 +218140,1090.7000000122023,-0.054622440279834227 +218141,1090.7050000122024,-0.0546223710551689 +218142,1090.7100000122025,-0.05462230182745754 +218143,1090.7150000122026,-0.05462223259669985 +218144,1090.7200000122027,-0.05462216336289555 +218145,1090.7250000122028,-0.05462209412604436 +218146,1090.730000012203,-0.05462202488614598 +218147,1090.735000012203,-0.054621955643200125 +218148,1090.7400000122032,-0.0546218863972065 +218149,1090.7450000122033,-0.054621817148164824 +218150,1090.7500000122034,-0.05462174789607481 +218151,1090.7550000122035,-0.054621678640936165 +218152,1090.7600000122036,-0.054621609382748605 +218153,1090.7650000122037,-0.05462154012151183 +218154,1090.7700000122038,-0.05462147085722556 +218155,1090.775000012204,-0.05462140158988952 +218156,1090.780000012204,-0.0546213323195034 +218157,1090.7850000122041,-0.05462126304606692 +218158,1090.7900000122042,-0.05462119376957978 +218159,1090.7950000122044,-0.054621124490041695 +218160,1090.8000000122045,-0.05462105520745239 +218161,1090.8050000122046,-0.054620985921811555 +218162,1090.8100000122047,-0.054620916633118924 +218163,1090.8150000122048,-0.054620847341374186 +218164,1090.820000012205,-0.05462077804657707 +218165,1090.825000012205,-0.05462070874872727 +218166,1090.8300000122051,-0.054620639447824505 +218167,1090.8350000122052,-0.05462057014386848 +218168,1090.8400000122053,-0.05462050083685891 +218169,1090.8450000122054,-0.0546204315267955 +218170,1090.8500000122056,-0.05462036221367796 +218171,1090.8550000122057,-0.05462029289750602 +218172,1090.8600000122058,-0.054620223578279364 +218173,1090.8650000122059,-0.05462015425599772 +218174,1090.870000012206,-0.054620084930660784 +218175,1090.875000012206,-0.05462001560226827 +218176,1090.8800000122062,-0.05461994627081988 +218177,1090.8850000122063,-0.054619876936315336 +218178,1090.8900000122064,-0.05461980759875434 +218179,1090.8950000122065,-0.05461973825813661 +218180,1090.9000000122066,-0.05461966891446184 +218181,1090.9050000122068,-0.05461959956772975 +218182,1090.9100000122069,-0.054619530217940054 +218183,1090.915000012207,-0.05461946086509245 +218184,1090.920000012207,-0.054619391509186654 +218185,1090.9250000122072,-0.054619322150222374 +218186,1090.9300000122073,-0.05461925278819932 +218187,1090.9350000122074,-0.054619183423117196 +218188,1090.9400000122075,-0.054619114054975715 +218189,1090.9450000122076,-0.05461904468377458 +218190,1090.9500000122077,-0.05461897530951349 +218191,1090.9550000122078,-0.05461890593219218 +218192,1090.960000012208,-0.05461883655181033 +218193,1090.965000012208,-0.05461876716836767 +218194,1090.9700000122082,-0.0546186977818639 +218195,1090.9750000122083,-0.05461862839229873 +218196,1090.9800000122084,-0.054618558999671864 +218197,1090.9850000122085,-0.05461848960398301 +218198,1090.9900000122086,-0.05461842020523189 +218199,1090.9950000122087,-0.054618350803418196 +218200,1091.0000000122088,-0.05461828139854164 +218201,1091.005000012209,-0.05461821199060192 +218202,1091.010000012209,-0.054618142579598766 +218203,1091.0150000122092,-0.05461807316553187 +218204,1091.0200000122093,-0.05461800374840094 +218205,1091.0250000122094,-0.05461793432820568 +218206,1091.0300000122095,-0.05461786490494581 +218207,1091.0350000122096,-0.05461779547862102 +218208,1091.0400000122097,-0.05461772604923104 +218209,1091.0450000122098,-0.05461765661677555 +218210,1091.05000001221,-0.05461758718125428 +218211,1091.05500001221,-0.05461751774266692 +218212,1091.0600000122101,-0.054617448301013186 +218213,1091.0650000122102,-0.05461737885629279 +218214,1091.0700000122104,-0.054617309408505434 +218215,1091.0750000122105,-0.054617239957650825 +218216,1091.0800000122106,-0.05461717050372866 +218217,1091.0850000122107,-0.054617101046738656 +218218,1091.0900000122108,-0.05461703158668051 +218219,1091.095000012211,-0.054616962123553936 +218220,1091.100000012211,-0.05461689265735863 +218221,1091.1050000122111,-0.05461682318809432 +218222,1091.1100000122112,-0.054616753715760684 +218223,1091.1150000122113,-0.05461668424035745 +218224,1091.1200000122114,-0.054616614761884306 +218225,1091.1250000122116,-0.054616545280340975 +218226,1091.1300000122117,-0.054616475795727155 +218227,1091.1350000122118,-0.054616406308042556 +218228,1091.1400000122119,-0.05461633681728688 +218229,1091.145000012212,-0.054616267323459824 +218230,1091.150000012212,-0.05461619782656111 +218231,1091.1550000122122,-0.05461612832659043 +218232,1091.1600000122123,-0.05461605882354749 +218233,1091.1650000122124,-0.054615989317432015 +218234,1091.1700000122125,-0.05461591980824367 +218235,1091.1750000122126,-0.0546158502959822 +218236,1091.1800000122128,-0.0546157807806473 +218237,1091.1850000122129,-0.054615711262238666 +218238,1091.190000012213,-0.054615641740756005 +218239,1091.195000012213,-0.05461557221619901 +218240,1091.2000000122132,-0.05461550268856742 +218241,1091.2050000122133,-0.05461543315786091 +218242,1091.2100000122134,-0.054615363624079184 +218243,1091.2150000122135,-0.054615294087221954 +218244,1091.2200000122136,-0.05461522454728893 +218245,1091.2250000122137,-0.05461515500427981 +218246,1091.2300000122138,-0.0546150854581943 +218247,1091.235000012214,-0.05461501590903211 +218248,1091.240000012214,-0.054614946356792926 +218249,1091.2450000122142,-0.05461487680147647 +218250,1091.2500000122143,-0.05461480724308244 +218251,1091.2550000122144,-0.054614737681610535 +218252,1091.2600000122145,-0.054614668117060464 +218253,1091.2650000122146,-0.05461459854943193 +218254,1091.2700000122147,-0.05461452897872464 +218255,1091.2750000122148,-0.05461445940493829 +218256,1091.280000012215,-0.05461438982807259 +218257,1091.285000012215,-0.05461432024812723 +218258,1091.2900000122152,-0.05461425066510192 +218259,1091.2950000122153,-0.054614181078996384 +218260,1091.3000000122154,-0.054614111489810296 +218261,1091.3050000122155,-0.054614041897543375 +218262,1091.3100000122156,-0.05461397230219532 +218263,1091.3150000122157,-0.05461390270376583 +218264,1091.3200000122158,-0.054613833102254615 +218265,1091.325000012216,-0.054613763497661366 +218266,1091.330000012216,-0.0546136938899858 +218267,1091.3350000122161,-0.054613624279227606 +218268,1091.3400000122163,-0.054613554665386504 +218269,1091.3450000122164,-0.05461348504846218 +218270,1091.3500000122165,-0.05461341542845435 +218271,1091.3550000122166,-0.0546133458053627 +218272,1091.3600000122167,-0.05461327617918694 +218273,1091.3650000122168,-0.054613206549926775 +218274,1091.370000012217,-0.0546131369175819 +218275,1091.375000012217,-0.05461306728215202 +218276,1091.3800000122171,-0.05461299764363685 +218277,1091.3850000122172,-0.05461292800203607 +218278,1091.3900000122173,-0.05461285835734939 +218279,1091.3950000122175,-0.05461278870957652 +218280,1091.4000000122176,-0.054612719058717146 +218281,1091.4050000122177,-0.05461264940477098 +218282,1091.4100000122178,-0.05461257974773773 +218283,1091.415000012218,-0.05461251008761708 +218284,1091.420000012218,-0.05461244042440875 +218285,1091.425000012218,-0.05461237075811242 +218286,1091.4300000122182,-0.054612301088727805 +218287,1091.4350000122183,-0.054612231416254604 +218288,1091.4400000122184,-0.054612161740692514 +218289,1091.4450000122185,-0.05461209206204124 +218290,1091.4500000122187,-0.05461202238030049 +218291,1091.4550000122188,-0.05461195269546995 +218292,1091.4600000122189,-0.05461188300754932 +218293,1091.465000012219,-0.05461181331653832 +218294,1091.470000012219,-0.054611743622436634 +218295,1091.4750000122192,-0.054611673925243964 +218296,1091.4800000122193,-0.05461160422496 +218297,1091.4850000122194,-0.05461153452158447 +218298,1091.4900000122195,-0.05461146481511706 +218299,1091.4950000122196,-0.054611395105557466 +218300,1091.5000000122197,-0.054611325392905384 +218301,1091.5050000122199,-0.054611255677160526 +218302,1091.51000001222,-0.054611185958322594 +218303,1091.51500001222,-0.05461111623639127 +218304,1091.5200000122202,-0.05461104651136627 +218305,1091.5250000122203,-0.054610976783247285 +218306,1091.5300000122204,-0.05461090705203401 +218307,1091.5350000122205,-0.05461083731772615 +218308,1091.5400000122206,-0.05461076758032341 +218309,1091.5450000122207,-0.054610697839825494 +218310,1091.5500000122208,-0.05461062809623208 +218311,1091.555000012221,-0.05461055834954287 +218312,1091.560000012221,-0.05461048859975759 +218313,1091.5650000122212,-0.05461041884687592 +218314,1091.5700000122213,-0.05461034909089754 +218315,1091.5750000122214,-0.054610279331822185 +218316,1091.5800000122215,-0.05461020956964953 +218317,1091.5850000122216,-0.054610139804379274 +218318,1091.5900000122217,-0.05461007003601112 +218319,1091.5950000122218,-0.05461000026454478 +218320,1091.600000012222,-0.054609930489979946 +218321,1091.605000012222,-0.054609860712316306 +218322,1091.6100000122221,-0.05460979093155356 +218323,1091.6150000122223,-0.054609721147691415 +218324,1091.6200000122224,-0.05460965136072956 +218325,1091.6250000122225,-0.0546095815706677 +218326,1091.6300000122226,-0.05460951177750553 +218327,1091.6350000122227,-0.054609441981242755 +218328,1091.6400000122228,-0.05460937218187906 +218329,1091.645000012223,-0.05460930237941413 +218330,1091.650000012223,-0.05460923257384769 +218331,1091.6550000122231,-0.054609162765179436 +218332,1091.6600000122232,-0.054609092953409044 +218333,1091.6650000122233,-0.05460902313853623 +218334,1091.6700000122235,-0.05460895332056069 +218335,1091.6750000122236,-0.05460888349948212 +218336,1091.6800000122237,-0.05460881367530021 +218337,1091.6850000122238,-0.05460874384801465 +218338,1091.690000012224,-0.05460867401762516 +218339,1091.695000012224,-0.054608604184131423 +218340,1091.700000012224,-0.05460853434753314 +218341,1091.7050000122242,-0.05460846450783001 +218342,1091.7100000122243,-0.05460839466502172 +218343,1091.7150000122244,-0.05460832481910796 +218344,1091.7200000122245,-0.054608254970088456 +218345,1091.7250000122247,-0.05460818511796288 +218346,1091.7300000122248,-0.05460811526273093 +218347,1091.7350000122249,-0.05460804540439231 +218348,1091.740000012225,-0.05460797554294672 +218349,1091.745000012225,-0.05460790567839383 +218350,1091.7500000122252,-0.05460783581073338 +218351,1091.7550000122253,-0.05460776593996502 +218352,1091.7600000122254,-0.05460769606608848 +218353,1091.7650000122255,-0.05460762618910344 +218354,1091.7700000122256,-0.0546075563090096 +218355,1091.7750000122257,-0.054607486425806644 +218356,1091.7800000122259,-0.05460741653949428 +218357,1091.785000012226,-0.054607346650072205 +218358,1091.790000012226,-0.05460727675754011 +218359,1091.7950000122262,-0.054607206861897684 +218360,1091.8000000122263,-0.05460713696314463 +218361,1091.8050000122264,-0.05460706706128065 +218362,1091.8100000122265,-0.054606997156305424 +218363,1091.8150000122266,-0.054606927248218654 +218364,1091.8200000122267,-0.05460685733702003 +218365,1091.8250000122268,-0.05460678742270926 +218366,1091.830000012227,-0.05460671750528603 +218367,1091.835000012227,-0.054606647584750034 +218368,1091.8400000122272,-0.05460657766110097 +218369,1091.8450000122273,-0.05460650773433852 +218370,1091.8500000122274,-0.0546064378044624 +218371,1091.8550000122275,-0.054606367871472286 +218372,1091.8600000122276,-0.05460629793536788 +218373,1091.8650000122277,-0.05460622799614887 +218374,1091.8700000122278,-0.05460615805381497 +218375,1091.875000012228,-0.05460608810836584 +218376,1091.880000012228,-0.0546060181598012 +218377,1091.8850000122281,-0.05460594820812074 +218378,1091.8900000122283,-0.05460587825332415 +218379,1091.8950000122284,-0.054605808295411125 +218380,1091.9000000122285,-0.05460573833438136 +218381,1091.9050000122286,-0.05460566837023454 +218382,1091.9100000122287,-0.05460559840297036 +218383,1091.9150000122288,-0.05460552843258853 +218384,1091.920000012229,-0.05460545845908872 +218385,1091.925000012229,-0.054605388482470645 +218386,1091.9300000122291,-0.05460531850273398 +218387,1091.9350000122292,-0.054605248519878434 +218388,1091.9400000122293,-0.05460517853390368 +218389,1091.9450000122295,-0.054605108544809426 +218390,1091.9500000122296,-0.05460503855259536 +218391,1091.9550000122297,-0.05460496855726117 +218392,1091.9600000122298,-0.05460489855880657 +218393,1091.96500001223,-0.05460482855723123 +218394,1091.97000001223,-0.05460475855253485 +218395,1091.97500001223,-0.054604688544717124 +218396,1091.9800000122302,-0.05460461853377774 +218397,1091.9850000122303,-0.05460454851971639 +218398,1091.9900000122304,-0.05460447850253277 +218399,1091.9950000122305,-0.05460440848222658 +218400,1092.0000000122307,-0.05460433845879749 +218401,1092.0050000122308,-0.05460426843224521 +218402,1092.0100000122309,-0.05460419840256941 +218403,1092.015000012231,-0.054604128369769814 +218404,1092.020000012231,-0.05460405833384609 +218405,1092.0250000122312,-0.05460398829479793 +218406,1092.0300000122313,-0.05460391825262504 +218407,1092.0350000122314,-0.0546038482073271 +218408,1092.0400000122315,-0.054603778158903826 +218409,1092.0450000122316,-0.054603708107354876 +218410,1092.0500000122317,-0.054603638052679954 +218411,1092.0550000122319,-0.05460356799487875 +218412,1092.060000012232,-0.05460349793395095 +218413,1092.065000012232,-0.054603427869896255 +218414,1092.0700000122322,-0.054603357802714345 +218415,1092.0750000122323,-0.05460328773240492 +218416,1092.0800000122324,-0.05460321765896768 +218417,1092.0850000122325,-0.054603147582402305 +218418,1092.0900000122326,-0.05460307750270847 +218419,1092.0950000122327,-0.054603007419885885 +218420,1092.1000000122328,-0.05460293733393424 +218421,1092.105000012233,-0.05460286724485321 +218422,1092.110000012233,-0.05460279715264251 +218423,1092.1150000122332,-0.054602727057301806 +218424,1092.1200000122333,-0.05460265695883079 +218425,1092.1250000122334,-0.05460258685722917 +218426,1092.1300000122335,-0.054602516752496624 +218427,1092.1350000122336,-0.05460244664463285 +218428,1092.1400000122337,-0.054602376533637524 +218429,1092.1450000122338,-0.05460230641951034 +218430,1092.150000012234,-0.05460223630225099 +218431,1092.155000012234,-0.05460216618185916 +218432,1092.1600000122341,-0.054602096058334555 +218433,1092.1650000122343,-0.05460202593167684 +218434,1092.1700000122344,-0.05460195580188571 +218435,1092.1750000122345,-0.054601885668960876 +218436,1092.1800000122346,-0.05460181553290201 +218437,1092.1850000122347,-0.054601745393708795 +218438,1092.1900000122348,-0.054601675251380925 +218439,1092.195000012235,-0.0546016051059181 +218440,1092.200000012235,-0.05460153495732 +218441,1092.2050000122351,-0.0546014648055863 +218442,1092.2100000122352,-0.054601394650716714 +218443,1092.2150000122354,-0.05460132449271091 +218444,1092.2200000122355,-0.0546012543315686 +218445,1092.2250000122356,-0.05460118416728945 +218446,1092.2300000122357,-0.05460111399987315 +218447,1092.2350000122358,-0.05460104382931939 +218448,1092.240000012236,-0.05460097365562788 +218449,1092.245000012236,-0.054600903478798285 +218450,1092.2500000122361,-0.054600833298830295 +218451,1092.2550000122362,-0.054600763115723594 +218452,1092.2600000122363,-0.05460069292947789 +218453,1092.2650000122364,-0.05460062274009285 +218454,1092.2700000122366,-0.05460055254756816 +218455,1092.2750000122367,-0.054600482351903526 +218456,1092.2800000122368,-0.05460041215309862 +218457,1092.2850000122369,-0.054600341951153125 +218458,1092.290000012237,-0.054600271746066756 +218459,1092.295000012237,-0.05460020153783917 +218460,1092.3000000122372,-0.054600131326470076 +218461,1092.3050000122373,-0.05460006111195915 +218462,1092.3100000122374,-0.054599990894306075 +218463,1092.3150000122375,-0.05459992067351054 +218464,1092.3200000122376,-0.054599850449572246 +218465,1092.3250000122378,-0.05459978022249087 +218466,1092.3300000122379,-0.054599709992266085 +218467,1092.335000012238,-0.054599639758897596 +218468,1092.340000012238,-0.05459956952238508 +218469,1092.3450000122382,-0.05459949928272823 +218470,1092.3500000122383,-0.05459942903992673 +218471,1092.3550000122384,-0.05459935879398026 +218472,1092.3600000122385,-0.05459928854488851 +218473,1092.3650000122386,-0.05459921829265116 +218474,1092.3700000122387,-0.05459914803726791 +218475,1092.3750000122388,-0.05459907777873844 +218476,1092.380000012239,-0.05459900751706243 +218477,1092.385000012239,-0.054598937252239584 +218478,1092.3900000122392,-0.054598866984269565 +218479,1092.3950000122393,-0.054598796713152056 +218480,1092.4000000122394,-0.05459872643888676 +218481,1092.4050000122395,-0.05459865616147336 +218482,1092.4100000122396,-0.05459858588091153 +218483,1092.4150000122397,-0.054598515597200976 +218484,1092.4200000122398,-0.05459844531034136 +218485,1092.42500001224,-0.054598375020332386 +218486,1092.43000001224,-0.054598304727173724 +218487,1092.4350000122402,-0.05459823443086506 +218488,1092.4400000122403,-0.05459816413140609 +218489,1092.4450000122404,-0.0545980938287965 +218490,1092.4500000122405,-0.05459802352303595 +218491,1092.4550000122406,-0.05459795321412415 +218492,1092.4600000122407,-0.05459788290206076 +218493,1092.4650000122408,-0.05459781258684549 +218494,1092.470000012241,-0.054597742268478015 +218495,1092.475000012241,-0.05459767194695802 +218496,1092.4800000122411,-0.054597601622285184 +218497,1092.4850000122412,-0.054597531294459205 +218498,1092.4900000122414,-0.05459746096347975 +218499,1092.4950000122415,-0.05459739062934651 +218500,1092.5000000122416,-0.054597320292059166 +218501,1092.5050000122417,-0.0545972499516174 +218502,1092.5100000122418,-0.05459717960802091 +218503,1092.515000012242,-0.05459710926126935 +218504,1092.520000012242,-0.05459703891136243 +218505,1092.5250000122421,-0.05459696855829984 +218506,1092.5300000122422,-0.05459689820208124 +218507,1092.5350000122423,-0.05459682784270632 +218508,1092.5400000122424,-0.05459675748017476 +218509,1092.5450000122426,-0.05459668711448626 +218510,1092.5500000122427,-0.05459661674564049 +218511,1092.5550000122428,-0.054596546373637124 +218512,1092.5600000122429,-0.05459647599847587 +218513,1092.565000012243,-0.05459640562015639 +218514,1092.570000012243,-0.054596335238678365 +218515,1092.5750000122432,-0.054596264854041496 +218516,1092.5800000122433,-0.05459619446624545 +218517,1092.5850000122434,-0.05459612407528991 +218518,1092.5900000122435,-0.05459605368117455 +218519,1092.5950000122436,-0.05459598328389907 +218520,1092.6000000122438,-0.05459591288346316 +218521,1092.6050000122439,-0.05459584247986648 +218522,1092.610000012244,-0.05459577207310872 +218523,1092.615000012244,-0.05459570166318956 +218524,1092.6200000122442,-0.05459563125010868 +218525,1092.6250000122443,-0.054595560833865776 +218526,1092.6300000122444,-0.05459549041446052 +218527,1092.6350000122445,-0.05459541999189259 +218528,1092.6400000122446,-0.05459534956616166 +218529,1092.6450000122447,-0.05459527913726743 +218530,1092.6500000122448,-0.05459520870520957 +218531,1092.655000012245,-0.05459513826998777 +218532,1092.660000012245,-0.05459506783160171 +218533,1092.6650000122452,-0.05459499739005107 +218534,1092.6700000122453,-0.05459492694533552 +218535,1092.6750000122454,-0.05459485649745474 +218536,1092.6800000122455,-0.05459478604640843 +218537,1092.6850000122456,-0.05459471559219625 +218538,1092.6900000122457,-0.0545946451348179 +218539,1092.6950000122458,-0.05459457467427303 +218540,1092.700000012246,-0.054594504210561355 +218541,1092.705000012246,-0.054594433743682544 +218542,1092.7100000122462,-0.05459436327363628 +218543,1092.7150000122463,-0.054594292800422224 +218544,1092.7200000122464,-0.05459422232404008 +218545,1092.7250000122465,-0.05459415184448952 +218546,1092.7300000122466,-0.05459408136177021 +218547,1092.7350000122467,-0.05459401087588185 +218548,1092.7400000122468,-0.054593940386824115 +218549,1092.745000012247,-0.05459386989459668 +218550,1092.750000012247,-0.05459379939919923 +218551,1092.7550000122471,-0.05459372890063143 +218552,1092.7600000122472,-0.05459365839889297 +218553,1092.7650000122474,-0.054593587893983525 +218554,1092.7700000122475,-0.05459351738590279 +218555,1092.7750000122476,-0.054593446874650425 +218556,1092.7800000122477,-0.05459337636022612 +218557,1092.7850000122478,-0.05459330584262955 +218558,1092.790000012248,-0.05459323532186039 +218559,1092.795000012248,-0.054593164797918335 +218560,1092.8000000122481,-0.05459309427080305 +218561,1092.8050000122482,-0.05459302374051421 +218562,1092.8100000122483,-0.05459295320705151 +218563,1092.8150000122484,-0.05459288267041461 +218564,1092.8200000122486,-0.05459281213060319 +218565,1092.8250000122487,-0.05459274158761694 +218566,1092.8300000122488,-0.054592671041455536 +218567,1092.8350000122489,-0.05459260049211865 +218568,1092.840000012249,-0.05459252993960597 +218569,1092.845000012249,-0.05459245938391716 +218570,1092.8500000122492,-0.054592388825051914 +218571,1092.8550000122493,-0.054592318263009885 +218572,1092.8600000122494,-0.05459224769779078 +218573,1092.8650000122495,-0.05459217712939426 +218574,1092.8700000122496,-0.05459210655782001 +218575,1092.8750000122498,-0.05459203598306769 +218576,1092.8800000122499,-0.054591965405137007 +218577,1092.88500001225,-0.05459189482402762 +218578,1092.89000001225,-0.05459182423973921 +218579,1092.8950000122502,-0.05459175365227145 +218580,1092.9000000122503,-0.05459168306162401 +218581,1092.9050000122504,-0.054591612467796584 +218582,1092.9100000122505,-0.054591541870788844 +218583,1092.9150000122506,-0.05459147127060047 +218584,1092.9200000122507,-0.054591400667231116 +218585,1092.9250000122508,-0.054591330060680475 +218586,1092.930000012251,-0.05459125945094825 +218587,1092.935000012251,-0.05459118883803407 +218588,1092.9400000122512,-0.054591118221937636 +218589,1092.9450000122513,-0.05459104760265862 +218590,1092.9500000122514,-0.0545909769801967 +218591,1092.9550000122515,-0.05459090635455156 +218592,1092.9600000122516,-0.05459083572572287 +218593,1092.9650000122517,-0.0545907650937103 +218594,1092.9700000122518,-0.05459069445851353 +218595,1092.975000012252,-0.05459062382013224 +218596,1092.980000012252,-0.0545905531785661 +218597,1092.9850000122522,-0.05459048253381478 +218598,1092.9900000122523,-0.054590411885877974 +218599,1092.9950000122524,-0.05459034123475533 +218600,1093.0000000122525,-0.05459027058044654 +218601,1093.0050000122526,-0.054590199922951284 +218602,1093.0100000122527,-0.05459012926226923 +218603,1093.0150000122528,-0.05459005859840006 +218604,1093.020000012253,-0.054589987931343446 +218605,1093.025000012253,-0.05458991726109906 +218606,1093.0300000122531,-0.05458984658766657 +218607,1093.0350000122532,-0.05458977591104566 +218608,1093.0400000122534,-0.05458970523123601 +218609,1093.0450000122535,-0.05458963454823729 +218610,1093.0500000122536,-0.05458956386204916 +218611,1093.0550000122537,-0.05458949317267131 +218612,1093.0600000122538,-0.05458942248010341 +218613,1093.065000012254,-0.05458935178434514 +218614,1093.070000012254,-0.054589281085396166 +218615,1093.0750000122541,-0.054589210383256176 +218616,1093.0800000122542,-0.05458913967792482 +218617,1093.0850000122543,-0.05458906896940179 +218618,1093.0900000122544,-0.054588998257686754 +218619,1093.0950000122546,-0.054588927542779386 +218620,1093.1000000122547,-0.05458885682467937 +218621,1093.1050000122548,-0.054588786103386355 +218622,1093.110000012255,-0.05458871537890003 +218623,1093.115000012255,-0.054588644651220083 +218624,1093.120000012255,-0.05458857392034616 +218625,1093.1250000122552,-0.05458850318627796 +218626,1093.1300000122553,-0.05458843244901513 +218627,1093.1350000122554,-0.05458836170855736 +218628,1093.1400000122555,-0.05458829096490432 +218629,1093.1450000122557,-0.054588220218055684 +218630,1093.1500000122558,-0.05458814946801111 +218631,1093.1550000122559,-0.05458807871477029 +218632,1093.160000012256,-0.05458800795833289 +218633,1093.165000012256,-0.054587937198698595 +218634,1093.1700000122562,-0.054587866435867057 +218635,1093.1750000122563,-0.05458779566983796 +218636,1093.1800000122564,-0.054587724900610965 +218637,1093.1850000122565,-0.054587654128185746 +218638,1093.1900000122566,-0.054587583352561996 +218639,1093.1950000122567,-0.05458751257373936 +218640,1093.2000000122569,-0.054587441791717525 +218641,1093.205000012257,-0.05458737100649615 +218642,1093.210000012257,-0.05458730021807493 +218643,1093.2150000122572,-0.05458722942645352 +218644,1093.2200000122573,-0.0545871586316316 +218645,1093.2250000122574,-0.05458708783360882 +218646,1093.2300000122575,-0.05458701703238488 +218647,1093.2350000122576,-0.05458694622795943 +218648,1093.2400000122577,-0.054586875420332165 +218649,1093.2450000122578,-0.054586804609502736 +218650,1093.250000012258,-0.05458673379547082 +218651,1093.255000012258,-0.05458666297823608 +218652,1093.2600000122582,-0.054586592157798194 +218653,1093.2650000122583,-0.05458652133415684 +218654,1093.2700000122584,-0.05458645050731168 +218655,1093.2750000122585,-0.05458637967726239 +218656,1093.2800000122586,-0.05458630884400863 +218657,1093.2850000122587,-0.05458623800755008 +218658,1093.2900000122588,-0.054586167167886404 +218659,1093.295000012259,-0.054586096325017285 +218660,1093.300000012259,-0.054586025478942375 +218661,1093.3050000122591,-0.05458595462966136 +218662,1093.3100000122593,-0.05458588377717389 +218663,1093.3150000122594,-0.05458581292147966 +218664,1093.3200000122595,-0.05458574206257832 +218665,1093.3250000122596,-0.054585671200469546 +218666,1093.3300000122597,-0.05458560033515302 +218667,1093.3350000122598,-0.0545855294666284 +218668,1093.34000001226,-0.05458545859489536 +218669,1093.34500001226,-0.05458538771995356 +218670,1093.3500000122601,-0.05458531684180268 +218671,1093.3550000122602,-0.05458524596044238 +218672,1093.3600000122603,-0.05458517507587233 +218673,1093.3650000122605,-0.054585104188092204 +218674,1093.3700000122606,-0.054585033297101675 +218675,1093.3750000122607,-0.0545849624029004 +218676,1093.3800000122608,-0.05458489150548806 +218677,1093.385000012261,-0.05458482060486432 +218678,1093.390000012261,-0.05458474970102884 +218679,1093.395000012261,-0.05458467879398131 +218680,1093.4000000122612,-0.054584607883721374 +218681,1093.4050000122613,-0.054584536970248725 +218682,1093.4100000122614,-0.054584466053563006 +218683,1093.4150000122615,-0.05458439513366389 +218684,1093.4200000122617,-0.05458432421055106 +218685,1093.4250000122618,-0.05458425328422418 +218686,1093.4300000122619,-0.054584182354682896 +218687,1093.435000012262,-0.05458411142192691 +218688,1093.440000012262,-0.05458404048595585 +218689,1093.4450000122622,-0.054583969546769424 +218690,1093.4500000122623,-0.05458389860436728 +218691,1093.4550000122624,-0.054583827658749084 +218692,1093.4600000122625,-0.05458375670991451 +218693,1093.4650000122626,-0.05458368575786322 +218694,1093.4700000122627,-0.05458361480259488 +218695,1093.4750000122629,-0.05458354384410918 +218696,1093.480000012263,-0.05458347288240575 +218697,1093.485000012263,-0.054583401917484266 +218698,1093.4900000122632,-0.054583330949344415 +218699,1093.4950000122633,-0.05458325997798585 +218700,1093.5000000122634,-0.054583189003408236 +218701,1093.5050000122635,-0.054583118025611256 +218702,1093.5100000122636,-0.05458304704459455 +218703,1093.5150000122637,-0.05458297606035781 +218704,1093.5200000122638,-0.054582905072900686 +218705,1093.525000012264,-0.05458283408222284 +218706,1093.530000012264,-0.05458276308832396 +218707,1093.5350000122642,-0.0545826920912037 +218708,1093.5400000122643,-0.054582621090861726 +218709,1093.5450000122644,-0.05458255008729769 +218710,1093.5500000122645,-0.05458247908051128 +218711,1093.5550000122646,-0.05458240807050216 +218712,1093.5600000122647,-0.05458233705726998 +218713,1093.5650000122648,-0.05458226604081442 +218714,1093.570000012265,-0.054582195021135135 +218715,1093.575000012265,-0.05458212399823179 +218716,1093.5800000122651,-0.05458205297210407 +218717,1093.5850000122653,-0.054581981942751615 +218718,1093.5900000122654,-0.0545819109101741 +218719,1093.5950000122655,-0.0545818398743712 +218720,1093.6000000122656,-0.054581768835342576 +218721,1093.6050000122657,-0.054581697793087885 +218722,1093.6100000122658,-0.05458162674760679 +218723,1093.615000012266,-0.054581555698898956 +218724,1093.620000012266,-0.05458148464696406 +218725,1093.6250000122661,-0.05458141359180175 +218726,1093.6300000122662,-0.0545813425334117 +218727,1093.6350000122663,-0.05458127147179357 +218728,1093.6400000122665,-0.054581200406947035 +218729,1093.6450000122666,-0.05458112933887175 +218730,1093.6500000122667,-0.05458105826756737 +218731,1093.6550000122668,-0.05458098719303358 +218732,1093.660000012267,-0.05458091611527003 +218733,1093.665000012267,-0.0545808450342764 +218734,1093.670000012267,-0.054580773950052335 +218735,1093.6750000122672,-0.05458070286259751 +218736,1093.6800000122673,-0.054580631771911574 +218737,1093.6850000122674,-0.0545805606779942 +218738,1093.6900000122675,-0.054580489580845055 +218739,1093.6950000122677,-0.05458041848046379 +218740,1093.7000000122678,-0.05458034737685009 +218741,1093.7050000122679,-0.05458027627000359 +218742,1093.710000012268,-0.05458020515992398 +218743,1093.715000012268,-0.0545801340466109 +218744,1093.7200000122682,-0.05458006293006402 +218745,1093.7250000122683,-0.05457999181028301 +218746,1093.7300000122684,-0.05457992068726753 +218747,1093.7350000122685,-0.05457984956101724 +218748,1093.7400000122686,-0.054579778431531806 +218749,1093.7450000122687,-0.05457970729881089 +218750,1093.7500000122689,-0.05457963616285416 +218751,1093.755000012269,-0.054579565023661264 +218752,1093.760000012269,-0.05457949388123187 +218753,1093.7650000122692,-0.054579422735565646 +218754,1093.7700000122693,-0.054579351586662245 +218755,1093.7750000122694,-0.05457928043452132 +218756,1093.7800000122695,-0.05457920927914256 +218757,1093.7850000122696,-0.054579138120525617 +218758,1093.7900000122697,-0.05457906695867014 +218759,1093.7950000122698,-0.0545789957935758 +218760,1093.80000001227,-0.054578924625242255 +218761,1093.80500001227,-0.05457885345366917 +218762,1093.8100000122702,-0.054578782278856194 +218763,1093.8150000122703,-0.05457871110080301 +218764,1093.8200000122704,-0.05457863991950926 +218765,1093.8250000122705,-0.05457856873497461 +218766,1093.8300000122706,-0.05457849754719872 +218767,1093.8350000122707,-0.05457842635618127 +218768,1093.8400000122708,-0.054578355161921895 +218769,1093.845000012271,-0.054578283964420264 +218770,1093.850000012271,-0.05457821276367605 +218771,1093.8550000122711,-0.05457814155968889 +218772,1093.8600000122713,-0.05457807035245846 +218773,1093.8650000122714,-0.054577999141984405 +218774,1093.8700000122715,-0.05457792792826642 +218775,1093.8750000122716,-0.054577856711304135 +218776,1093.8800000122717,-0.054577785491097215 +218777,1093.8850000122718,-0.05457771426764532 +218778,1093.890000012272,-0.05457764304094812 +218779,1093.895000012272,-0.054577571811005254 +218780,1093.9000000122721,-0.05457750057781639 +218781,1093.9050000122722,-0.054577429341381205 +218782,1093.9100000122723,-0.05457735810169935 +218783,1093.9150000122725,-0.05457728685877047 +218784,1093.9200000122726,-0.05457721561259423 +218785,1093.9250000122727,-0.054577144363170293 +218786,1093.9300000122728,-0.05457707311049832 +218787,1093.935000012273,-0.05457700185457797 +218788,1093.940000012273,-0.0545769305954089 +218789,1093.945000012273,-0.054576859332990765 +218790,1093.9500000122732,-0.05457678806732324 +218791,1093.9550000122733,-0.05457671679840596 +218792,1093.9600000122734,-0.054576645526238594 +218793,1093.9650000122735,-0.0545765742508208 +218794,1093.9700000122737,-0.05457650297215224 +218795,1093.9750000122738,-0.05457643169023257 +218796,1093.9800000122739,-0.054576360405061454 +218797,1093.985000012274,-0.05457628911663853 +218798,1093.990000012274,-0.05457621782496348 +218799,1093.9950000122742,-0.054576146530035945 +218800,1094.0000000122743,-0.0545760752318556 +218801,1094.0050000122744,-0.05457600393042209 +218802,1094.0100000122745,-0.05457593262573506 +218803,1094.0150000122746,-0.0545758613177942 +218804,1094.0200000122747,-0.05457579000659914 +218805,1094.0250000122749,-0.05457571869214955 +218806,1094.030000012275,-0.054575647374445084 +218807,1094.035000012275,-0.054575576053485404 +218808,1094.0400000122752,-0.05457550472927017 +218809,1094.0450000122753,-0.05457543340179902 +218810,1094.0500000122754,-0.05457536207107162 +218811,1094.0550000122755,-0.05457529073708764 +218812,1094.0600000122756,-0.05457521939984672 +218813,1094.0650000122757,-0.05457514805934852 +218814,1094.0700000122758,-0.0545750767155927 +218815,1094.075000012276,-0.05457500536857893 +218816,1094.080000012276,-0.054574934018306834 +218817,1094.0850000122762,-0.05457486266477609 +218818,1094.0900000122763,-0.05457479130798636 +218819,1094.0950000122764,-0.054574719947937285 +218820,1094.1000000122765,-0.054574648584628536 +218821,1094.1050000122766,-0.05457457721805976 +218822,1094.1100000122767,-0.0545745058482306 +218823,1094.1150000122768,-0.05457443447514074 +218824,1094.120000012277,-0.0545743630987898 +218825,1094.125000012277,-0.054574291719177465 +218826,1094.1300000122772,-0.05457422033630339 +218827,1094.1350000122773,-0.05457414895016721 +218828,1094.1400000122774,-0.054574077560768604 +218829,1094.1450000122775,-0.0545740061681072 +218830,1094.1500000122776,-0.05457393477218268 +218831,1094.1550000122777,-0.0545738633729947 +218832,1094.1600000122778,-0.054573791970542886 +218833,1094.165000012278,-0.054573720564826914 +218834,1094.170000012278,-0.05457364915584643 +218835,1094.1750000122781,-0.054573577743601095 +218836,1094.1800000122782,-0.05457350632809056 +218837,1094.1850000122784,-0.054573434909314475 +218838,1094.1900000122785,-0.0545733634872725 +218839,1094.1950000122786,-0.0545732920619643 +218840,1094.2000000122787,-0.05457322063338951 +218841,1094.2050000122788,-0.054573149201547794 +218842,1094.210000012279,-0.0545730777664388 +218843,1094.215000012279,-0.054573006328062196 +218844,1094.2200000122791,-0.054572934886417616 +218845,1094.2250000122792,-0.05457286344150472 +218846,1094.2300000122793,-0.05457279199332318 +218847,1094.2350000122794,-0.05457272054187263 +218848,1094.2400000122796,-0.05457264908715273 +218849,1094.2450000122797,-0.054572577629163135 +218850,1094.2500000122798,-0.054572506167903496 +218851,1094.2550000122799,-0.05457243470337346 +218852,1094.26000001228,-0.0545723632355727 +218853,1094.26500001228,-0.05457229176450083 +218854,1094.2700000122802,-0.05457222029015755 +218855,1094.2750000122803,-0.05457214881254248 +218856,1094.2800000122804,-0.05457207733165528 +218857,1094.2850000122805,-0.0545720058474956 +218858,1094.2900000122806,-0.054571934360063114 +218859,1094.2950000122808,-0.054571862869357446 +218860,1094.3000000122809,-0.05457179137537827 +218861,1094.305000012281,-0.05457171987812522 +218862,1094.310000012281,-0.05457164837759797 +218863,1094.3150000122812,-0.05457157687379615 +218864,1094.3200000122813,-0.054571505366719425 +218865,1094.3250000122814,-0.05457143385636745 +218866,1094.3300000122815,-0.05457136234273986 +218867,1094.3350000122816,-0.05457129082583633 +218868,1094.3400000122817,-0.05457121930565648 +218869,1094.3450000122818,-0.0545711477822 +218870,1094.350000012282,-0.054571076255466526 +218871,1094.355000012282,-0.054571004725455695 +218872,1094.3600000122822,-0.05457093319216716 +218873,1094.3650000122823,-0.05457086165560059 +218874,1094.3700000122824,-0.05457079011575563 +218875,1094.3750000122825,-0.05457071857263192 +218876,1094.3800000122826,-0.05457064702622912 +218877,1094.3850000122827,-0.05457057547654688 +218878,1094.3900000122828,-0.054570503923584854 +218879,1094.395000012283,-0.05457043236734268 +218880,1094.400000012283,-0.054570360807820024 +218881,1094.4050000122832,-0.05457028924501653 +218882,1094.4100000122833,-0.05457021767893184 +218883,1094.4150000122834,-0.05457014610956563 +218884,1094.4200000122835,-0.05457007453691752 +218885,1094.4250000122836,-0.05457000296098717 +218886,1094.4300000122837,-0.05456993138177424 +218887,1094.4350000122838,-0.054569859799278364 +218888,1094.440000012284,-0.05456978821349921 +218889,1094.445000012284,-0.05456971662443641 +218890,1094.4500000122841,-0.05456964503208962 +218891,1094.4550000122842,-0.0545695734364585 +218892,1094.4600000122844,-0.05456950183754269 +218893,1094.4650000122845,-0.054569430235341845 +218894,1094.4700000122846,-0.054569358629855604 +218895,1094.4750000122847,-0.054569287021083615 +218896,1094.4800000122848,-0.05456921540902553 +218897,1094.485000012285,-0.05456914379368101 +218898,1094.490000012285,-0.054569072175049686 +218899,1094.4950000122851,-0.05456900055313122 +218900,1094.5000000122852,-0.05456892892792526 +218901,1094.5050000122853,-0.05456885729943144 +218902,1094.5100000122854,-0.05456878566764944 +218903,1094.5150000122856,-0.05456871403257888 +218904,1094.5200000122857,-0.05456864239421941 +218905,1094.5250000122858,-0.0545685707525707 +218906,1094.5300000122859,-0.05456849910763236 +218907,1094.535000012286,-0.05456842745940408 +218908,1094.540000012286,-0.05456835580788548 +218909,1094.5450000122862,-0.05456828415307622 +218910,1094.5500000122863,-0.05456821249497594 +218911,1094.5550000122864,-0.05456814083358429 +218912,1094.5600000122865,-0.05456806916890093 +218913,1094.5650000122866,-0.0545679975009255 +218914,1094.5700000122868,-0.05456792582965764 +218915,1094.5750000122869,-0.054567854155097 +218916,1094.580000012287,-0.05456778247724321 +218917,1094.585000012287,-0.05456771079609595 +218918,1094.5900000122872,-0.05456763911165486 +218919,1094.5950000122873,-0.05456756742391957 +218920,1094.6000000122874,-0.05456749573288974 +218921,1094.6050000122875,-0.05456742403856501 +218922,1094.6100000122876,-0.054567352340945036 +218923,1094.6150000122877,-0.054567280640029456 +218924,1094.6200000122878,-0.054567208935817915 +218925,1094.625000012288,-0.054567137228310074 +218926,1094.630000012288,-0.05456706551750557 +218927,1094.6350000122882,-0.054566993803404046 +218928,1094.6400000122883,-0.05456692208600515 +218929,1094.6450000122884,-0.05456685036530853 +218930,1094.6500000122885,-0.05456677864131382 +218931,1094.6550000122886,-0.05456670691402067 +218932,1094.6600000122887,-0.05456663518342875 +218933,1094.6650000122888,-0.05456656344953767 +218934,1094.670000012289,-0.0545664917123471 +218935,1094.675000012289,-0.054566419971856676 +218936,1094.6800000122892,-0.054566348228066046 +218937,1094.6850000122893,-0.05456627648097487 +218938,1094.6900000122894,-0.054566204730582754 +218939,1094.6950000122895,-0.05456613297688938 +218940,1094.7000000122896,-0.05456606121989438 +218941,1094.7050000122897,-0.05456598945959739 +218942,1094.7100000122898,-0.05456591769599807 +218943,1094.71500001229,-0.05456584592909606 +218944,1094.72000001229,-0.05456577415889099 +218945,1094.7250000122901,-0.054565702385382525 +218946,1094.7300000122902,-0.0545656306085703 +218947,1094.7350000122904,-0.05456555882845396 +218948,1094.7400000122905,-0.054565487045033154 +218949,1094.7450000122906,-0.05456541525830753 +218950,1094.7500000122907,-0.05456534346827671 +218951,1094.7550000122908,-0.05456527167494035 +218952,1094.760000012291,-0.0545651998782981 +218953,1094.765000012291,-0.0545651280783496 +218954,1094.7700000122911,-0.05456505627509449 +218955,1094.7750000122912,-0.05456498446853243 +218956,1094.7800000122913,-0.05456491265866305 +218957,1094.7850000122914,-0.05456484084548599 +218958,1094.7900000122916,-0.054564769029000884 +218959,1094.7950000122917,-0.0545646972092074 +218960,1094.8000000122918,-0.05456462538610517 +218961,1094.8050000122919,-0.05456455355969382 +218962,1094.810000012292,-0.054564481729973024 +218963,1094.815000012292,-0.05456440989694241 +218964,1094.8200000122922,-0.05456433806060162 +218965,1094.8250000122923,-0.054564266220950286 +218966,1094.8300000122924,-0.054564194377988075 +218967,1094.8350000122925,-0.0545641225317146 +218968,1094.8400000122926,-0.054564050682129536 +218969,1094.8450000122928,-0.054563978829232494 +218970,1094.8500000122929,-0.05456390697302314 +218971,1094.855000012293,-0.0545638351135011 +218972,1094.860000012293,-0.05456376325066603 +218973,1094.8650000122932,-0.054563691384517554 +218974,1094.8700000122933,-0.05456361951505534 +218975,1094.8750000122934,-0.054563547642279005 +218976,1094.8800000122935,-0.0545634757661882 +218977,1094.8850000122936,-0.05456340388678257 +218978,1094.8900000122937,-0.05456333200406175 +218979,1094.8950000122938,-0.05456326011802538 +218980,1094.900000012294,-0.054563188228673114 +218981,1094.905000012294,-0.05456311633600457 +218982,1094.9100000122942,-0.054563044440019415 +218983,1094.9150000122943,-0.05456297254071727 +218984,1094.9200000122944,-0.05456290063809779 +218985,1094.9250000122945,-0.0545628287321606 +218986,1094.9300000122946,-0.05456275682290536 +218987,1094.9350000122947,-0.054562684910331685 +218988,1094.9400000122948,-0.054562612994439236 +218989,1094.945000012295,-0.05456254107522766 +218990,1094.950000012295,-0.05456246915269658 +218991,1094.9550000122952,-0.05456239722684563 +218992,1094.9600000122953,-0.05456232529767448 +218993,1094.9650000122954,-0.05456225336518274 +218994,1094.9700000122955,-0.05456218142937007 +218995,1094.9750000122956,-0.0545621094902361 +218996,1094.9800000122957,-0.05456203754778046 +218997,1094.9850000122958,-0.05456196560200281 +218998,1094.990000012296,-0.05456189365290278 +218999,1094.995000012296,-0.05456182170048001 +219000,1095.0000000122961,-0.05456174974473413 +219001,1095.0050000122963,-0.054561677785664786 +219002,1095.0100000122964,-0.054561605823271624 +219003,1095.0150000122965,-0.05456153385755428 +219004,1095.0200000122966,-0.05456146188851239 +219005,1095.0250000122967,-0.054561389916145585 +219006,1095.0300000122968,-0.05456131794045352 +219007,1095.035000012297,-0.05456124596143583 +219008,1095.040000012297,-0.054561173979092145 +219009,1095.0450000122971,-0.054561101993422116 +219010,1095.0500000122972,-0.054561030004425366 +219011,1095.0550000122973,-0.054560958012101535 +219012,1095.0600000122975,-0.05456088601645027 +219013,1095.0650000122976,-0.054560814017471204 +219014,1095.0700000122977,-0.054560742015163984 +219015,1095.0750000122978,-0.05456067000952824 +219016,1095.080000012298,-0.0545605980005636 +219017,1095.085000012298,-0.054560525988269715 +219018,1095.090000012298,-0.054560453972646215 +219019,1095.0950000122982,-0.054560381953692755 +219020,1095.1000000122983,-0.05456030993140895 +219021,1095.1050000122984,-0.05456023790579445 +219022,1095.1100000122985,-0.054560165876848886 +219023,1095.1150000122987,-0.054560093844571896 +219024,1095.1200000122988,-0.05456002180896311 +219025,1095.1250000122989,-0.05455994977002219 +219026,1095.130000012299,-0.05455987772774874 +219027,1095.135000012299,-0.05455980568214243 +219028,1095.1400000122992,-0.05455973363320287 +219029,1095.1450000122993,-0.054559661580929716 +219030,1095.1500000122994,-0.0545595895253226 +219031,1095.1550000122995,-0.05455951746638114 +219032,1095.1600000122996,-0.05455944540410498 +219033,1095.1650000122997,-0.05455937333849377 +219034,1095.1700000122999,-0.05455930126954713 +219035,1095.1750000123,-0.05455922919726471 +219036,1095.1800000123,-0.05455915712164614 +219037,1095.1850000123002,-0.05455908504269105 +219038,1095.1900000123003,-0.05455901296039909 +219039,1095.1950000123004,-0.054558940874769875 +219040,1095.2000000123005,-0.05455886878580306 +219041,1095.2050000123006,-0.054558796693498265 +219042,1095.2100000123007,-0.054558724597855136 +219043,1095.2150000123008,-0.0545586524988733 +219044,1095.220000012301,-0.054558580396552404 +219045,1095.225000012301,-0.054558508290892066 +219046,1095.2300000123012,-0.054558436181891934 +219047,1095.2350000123013,-0.05455836406955165 +219048,1095.2400000123014,-0.054558291953870824 +219049,1095.2450000123015,-0.0545582198348491 +219050,1095.2500000123016,-0.05455814771248612 +219051,1095.2550000123017,-0.05455807558678152 +219052,1095.2600000123018,-0.05455800345773493 +219053,1095.265000012302,-0.054557931325345976 +219054,1095.270000012302,-0.054557859189614304 +219055,1095.2750000123021,-0.05455778705053955 +219056,1095.2800000123023,-0.05455771490812133 +219057,1095.2850000123024,-0.0545576427623593 +219058,1095.2900000123025,-0.05455757061325308 +219059,1095.2950000123026,-0.05455749846080231 +219060,1095.3000000123027,-0.054557426305006616 +219061,1095.3050000123028,-0.054557354145865634 +219062,1095.310000012303,-0.054557281983379 +219063,1095.315000012303,-0.05455720981754635 +219064,1095.3200000123031,-0.05455713764836732 +219065,1095.3250000123032,-0.05455706547584153 +219066,1095.3300000123033,-0.05455699329996861 +219067,1095.3350000123035,-0.05455692112074822 +219068,1095.3400000123036,-0.054556848938179955 +219069,1095.3450000123037,-0.054556776752263475 +219070,1095.3500000123038,-0.05455670456299841 +219071,1095.355000012304,-0.05455663237038438 +219072,1095.360000012304,-0.05455656017442102 +219073,1095.365000012304,-0.05455648797510799 +219074,1095.3700000123042,-0.05455641577244488 +219075,1095.3750000123043,-0.05455634356643134 +219076,1095.3800000123044,-0.054556271357067004 +219077,1095.3850000123045,-0.05455619914435151 +219078,1095.3900000123047,-0.05455612692828449 +219079,1095.3950000123048,-0.05455605470886556 +219080,1095.4000000123049,-0.05455598248609437 +219081,1095.405000012305,-0.05455591025997053 +219082,1095.410000012305,-0.05455583803049369 +219083,1095.4150000123052,-0.05455576579766347 +219084,1095.4200000123053,-0.054555693561479504 +219085,1095.4250000123054,-0.05455562132194142 +219086,1095.4300000123055,-0.05455554907904886 +219087,1095.4350000123056,-0.054555476832801444 +219088,1095.4400000123057,-0.05455540458319881 +219089,1095.4450000123059,-0.05455533233024059 +219090,1095.450000012306,-0.05455526007392641 +219091,1095.455000012306,-0.05455518781425589 +219092,1095.4600000123062,-0.05455511555122868 +219093,1095.4650000123063,-0.0545550432848444 +219094,1095.4700000123064,-0.054554971015102684 +219095,1095.4750000123065,-0.054554898742003165 +219096,1095.4800000123066,-0.054554826465545464 +219097,1095.4850000123067,-0.05455475418572921 +219098,1095.4900000123068,-0.05455468190255404 +219099,1095.495000012307,-0.05455460961601958 +219100,1095.500000012307,-0.05455453732612545 +219101,1095.5050000123072,-0.054554465032871306 +219102,1095.5100000123073,-0.05455439273625676 +219103,1095.5150000123074,-0.054554320436281445 +219104,1095.5200000123075,-0.054554248132944995 +219105,1095.5250000123076,-0.05455417582624702 +219106,1095.5300000123077,-0.05455410351618717 +219107,1095.5350000123078,-0.054554031202765065 +219108,1095.540000012308,-0.05455395888598034 +219109,1095.545000012308,-0.05455388656583261 +219110,1095.5500000123081,-0.05455381424232152 +219111,1095.5550000123083,-0.054553741915446693 +219112,1095.5600000123084,-0.05455366958520774 +219113,1095.5650000123085,-0.054553597251604316 +219114,1095.5700000123086,-0.05455352491463603 +219115,1095.5750000123087,-0.054553452574302524 +219116,1095.5800000123088,-0.054553380230603424 +219117,1095.585000012309,-0.05455330788353834 +219118,1095.590000012309,-0.05455323553310692 +219119,1095.5950000123091,-0.054553163179308785 +219120,1095.6000000123092,-0.05455309082214356 +219121,1095.6050000123093,-0.054553018461610876 +219122,1095.6100000123095,-0.054552946097710366 +219123,1095.6150000123096,-0.054552873730441646 +219124,1095.6200000123097,-0.05455280135980435 +219125,1095.6250000123098,-0.0545527289857981 +219126,1095.63000001231,-0.054552656608422526 +219127,1095.63500001231,-0.05455258422767726 +219128,1095.64000001231,-0.054552511843561934 +219129,1095.6450000123102,-0.05455243945607616 +219130,1095.6500000123103,-0.05455236706521957 +219131,1095.6550000123104,-0.054552294670991784 +219132,1095.6600000123105,-0.054552222273392445 +219133,1095.6650000123107,-0.05455214987242117 +219134,1095.6700000123108,-0.054552077468077574 +219135,1095.6750000123109,-0.0545520050603613 +219136,1095.680000012311,-0.05455193264927196 +219137,1095.685000012311,-0.0545518602348092 +219138,1095.6900000123112,-0.05455178781697262 +219139,1095.6950000123113,-0.054551715395761875 +219140,1095.7000000123114,-0.05455164297117656 +219141,1095.7050000123115,-0.05455157054321633 +219142,1095.7100000123116,-0.05455149811188079 +219143,1095.7150000123117,-0.05455142567716958 +219144,1095.7200000123119,-0.054551353239082306 +219145,1095.725000012312,-0.054551280797618604 +219146,1095.730000012312,-0.0545512083527781 +219147,1095.7350000123122,-0.05455113590456043 +219148,1095.7400000123123,-0.0545510634529652 +219149,1095.7450000123124,-0.05455099099799203 +219150,1095.7500000123125,-0.054550918539640565 +219151,1095.7550000123126,-0.05455084607791042 +219152,1095.7600000123127,-0.05455077361280122 +219153,1095.7650000123128,-0.0545507011443126 +219154,1095.770000012313,-0.05455062867244417 +219155,1095.775000012313,-0.05455055619719555 +219156,1095.7800000123132,-0.054550483718566384 +219157,1095.7850000123133,-0.05455041123655629 +219158,1095.7900000123134,-0.05455033875116487 +219159,1095.7950000123135,-0.054550266262391775 +219160,1095.8000000123136,-0.05455019377023662 +219161,1095.8050000123137,-0.05455012127469903 +219162,1095.8100000123138,-0.054550048775778605 +219163,1095.815000012314,-0.054549976273475 +219164,1095.820000012314,-0.05454990376778782 +219165,1095.8250000123141,-0.05454983125871671 +219166,1095.8300000123143,-0.054549758746261265 +219167,1095.8350000123144,-0.05454968623042112 +219168,1095.8400000123145,-0.054549613711195905 +219169,1095.8450000123146,-0.05454954118858524 +219170,1095.8500000123147,-0.05454946866258874 +219171,1095.8550000123148,-0.05454939613320603 +219172,1095.860000012315,-0.05454932360043674 +219173,1095.865000012315,-0.054549251064280484 +219174,1095.8700000123151,-0.05454917852473689 +219175,1095.8750000123152,-0.05454910598180557 +219176,1095.8800000123153,-0.05454903343548615 +219177,1095.8850000123155,-0.05454896088577827 +219178,1095.8900000123156,-0.05454888833268153 +219179,1095.8950000123157,-0.05454881577619555 +219180,1095.9000000123158,-0.05454874321631998 +219181,1095.905000012316,-0.05454867065305442 +219182,1095.910000012316,-0.05454859808639849 +219183,1095.915000012316,-0.0545485255163518 +219184,1095.9200000123162,-0.054548452942914 +219185,1095.9250000123163,-0.054548380366084705 +219186,1095.9300000123164,-0.05454830778586352 +219187,1095.9350000123166,-0.05454823520225007 +219188,1095.9400000123167,-0.054548162615243985 +219189,1095.9450000123168,-0.054548090024844884 +219190,1095.9500000123169,-0.054548017431052385 +219191,1095.955000012317,-0.054547944833866116 +219192,1095.960000012317,-0.05454787223328567 +219193,1095.9650000123172,-0.0545477996293107 +219194,1095.9700000123173,-0.054547727021940814 +219195,1095.9750000123174,-0.05454765441117564 +219196,1095.9800000123175,-0.054547581797014785 +219197,1095.9850000123176,-0.05454750917945788 +219198,1095.9900000123178,-0.05454743655850453 +219199,1095.9950000123179,-0.05454736393415436 +219200,1096.000000012318,-0.05454729130640701 +219201,1096.005000012318,-0.05454721867526208 +219202,1096.0100000123182,-0.05454714604071918 +219203,1096.0150000123183,-0.05454707340277796 +219204,1096.0200000123184,-0.054547000761438 +219205,1096.0250000123185,-0.05454692811669895 +219206,1096.0300000123186,-0.054546855468560425 +219207,1096.0350000123187,-0.054546782817022035 +219208,1096.0400000123188,-0.0545467101620834 +219209,1096.045000012319,-0.05454663750374414 +219210,1096.050000012319,-0.054546564842003875 +219211,1096.0550000123192,-0.054546492176862214 +219212,1096.0600000123193,-0.054546419508318796 +219213,1096.0650000123194,-0.054546346836373216 +219214,1096.0700000123195,-0.05454627416102512 +219215,1096.0750000123196,-0.05454620148227411 +219216,1096.0800000123197,-0.0545461288001198 +219217,1096.0850000123198,-0.05454605611456182 +219218,1096.09000001232,-0.05454598342559977 +219219,1096.09500001232,-0.05454591073323328 +219220,1096.1000000123202,-0.05454583803746198 +219221,1096.1050000123203,-0.054545765338285465 +219222,1096.1100000123204,-0.054545692635703365 +219223,1096.1150000123205,-0.05454561992971529 +219224,1096.1200000123206,-0.05454554722032086 +219225,1096.1250000123207,-0.05454547450751969 +219226,1096.1300000123208,-0.05454540179131139 +219227,1096.135000012321,-0.054545329071695604 +219228,1096.140000012321,-0.054545256348671925 +219229,1096.1450000123211,-0.05454518362223998 +219230,1096.1500000123212,-0.05454511089239938 +219231,1096.1550000123214,-0.05454503815914974 +219232,1096.1600000123215,-0.054544965422490675 +219233,1096.1650000123216,-0.05454489268242182 +219234,1096.1700000123217,-0.054544819938942765 +219235,1096.1750000123218,-0.054544747192053135 +219236,1096.180000012322,-0.054544674441752566 +219237,1096.185000012322,-0.05454460168804064 +219238,1096.1900000123221,-0.05454452893091701 +219239,1096.1950000123222,-0.05454445617038127 +219240,1096.2000000123223,-0.05454438340643303 +219241,1096.2050000123224,-0.05454431063907191 +219242,1096.2100000123226,-0.054544237868297527 +219243,1096.2150000123227,-0.054544165094109504 +219244,1096.2200000123228,-0.05454409231650745 +219245,1096.2250000123229,-0.05454401953549098 +219246,1096.230000012323,-0.05454394675105971 +219247,1096.235000012323,-0.054543873963213245 +219248,1096.2400000123232,-0.05454380117195122 +219249,1096.2450000123233,-0.05454372837727324 +219250,1096.2500000123234,-0.05454365557917892 +219251,1096.2550000123235,-0.05454358277766787 +219252,1096.2600000123236,-0.0545435099727397 +219253,1096.2650000123238,-0.05454343716439403 +219254,1096.2700000123239,-0.05454336435263049 +219255,1096.275000012324,-0.05454329153744867 +219256,1096.280000012324,-0.054543218718848194 +219257,1096.2850000123242,-0.054543145896828675 +219258,1096.2900000123243,-0.05454307307138973 +219259,1096.2950000123244,-0.05454300024253097 +219260,1096.3000000123245,-0.054542927410252004 +219261,1096.3050000123246,-0.05454285457455246 +219262,1096.3100000123247,-0.05454278173543194 +219263,1096.3150000123248,-0.05454270889289006 +219264,1096.320000012325,-0.05454263604692643 +219265,1096.325000012325,-0.054542563197540674 +219266,1096.3300000123252,-0.05454249034473239 +219267,1096.3350000123253,-0.05454241748850119 +219268,1096.3400000123254,-0.054542344628846696 +219269,1096.3450000123255,-0.05454227176576852 +219270,1096.3500000123256,-0.054542198899266266 +219271,1096.3550000123257,-0.054542126029339555 +219272,1096.3600000123258,-0.054542053155988 +219273,1096.365000012326,-0.05454198027921122 +219274,1096.370000012326,-0.054541907399008806 +219275,1096.3750000123262,-0.05454183451538039 +219276,1096.3800000123263,-0.05454176162832557 +219277,1096.3850000123264,-0.05454168873784397 +219278,1096.3900000123265,-0.054541615843935194 +219279,1096.3950000123266,-0.05454154294659885 +219280,1096.4000000123267,-0.05454147004583456 +219281,1096.4050000123268,-0.05454139714164194 +219282,1096.410000012327,-0.05454132423402058 +219283,1096.415000012327,-0.0545412513229701 +219284,1096.4200000123271,-0.054541178408490126 +219285,1096.4250000123272,-0.05454110549058025 +219286,1096.4300000123274,-0.05454103256924009 +219287,1096.4350000123275,-0.054540959644469256 +219288,1096.4400000123276,-0.05454088671626737 +219289,1096.4450000123277,-0.05454081378463401 +219290,1096.4500000123278,-0.05454074084956882 +219291,1096.455000012328,-0.05454066791107139 +219292,1096.460000012328,-0.054540594969141355 +219293,1096.4650000123281,-0.05454052202377831 +219294,1096.4700000123282,-0.05454044907498185 +219295,1096.4750000123283,-0.05454037612275161 +219296,1096.4800000123284,-0.05454030316708719 +219297,1096.4850000123286,-0.05454023020798819 +219298,1096.4900000123287,-0.054540157245454225 +219299,1096.4950000123288,-0.05454008427948492 +219300,1096.5000000123289,-0.054540011310079864 +219301,1096.505000012329,-0.054539938337238685 +219302,1096.510000012329,-0.054539865360960976 +219303,1096.5150000123292,-0.05453979238124636 +219304,1096.5200000123293,-0.05453971939809443 +219305,1096.5250000123294,-0.05453964641150481 +219306,1096.5300000123295,-0.05453957342147709 +219307,1096.5350000123296,-0.054539500428010895 +219308,1096.5400000123298,-0.05453942743110583 +219309,1096.5450000123299,-0.05453935443076151 +219310,1096.55000001233,-0.054539281426977525 +219311,1096.55500001233,-0.05453920841975351 +219312,1096.5600000123302,-0.05453913540908904 +219313,1096.5650000123303,-0.05453906239498376 +219314,1096.5700000123304,-0.05453898937743725 +219315,1096.5750000123305,-0.05453891635644912 +219316,1096.5800000123306,-0.054538843332019 +219317,1096.5850000123307,-0.054538770304146465 +219318,1096.5900000123308,-0.05453869727283116 +219319,1096.595000012331,-0.05453862423807266 +219320,1096.600000012331,-0.05453855119987058 +219321,1096.6050000123312,-0.05453847815822455 +219322,1096.6100000123313,-0.054538405113134146 +219323,1096.6150000123314,-0.05453833206459899 +219324,1096.6200000123315,-0.054538259012618696 +219325,1096.6250000123316,-0.054538185957192856 +219326,1096.6300000123317,-0.05453811289832108 +219327,1096.6350000123318,-0.05453803983600298 +219328,1096.640000012332,-0.05453796677023816 +219329,1096.645000012332,-0.05453789370102622 +219330,1096.6500000123322,-0.054537820628366776 +219331,1096.6550000123323,-0.05453774755225943 +219332,1096.6600000123324,-0.0545376744727038 +219333,1096.6650000123325,-0.05453760138969948 +219334,1096.6700000123326,-0.05453752830324606 +219335,1096.6750000123327,-0.05453745521334318 +219336,1096.6800000123328,-0.05453738211999043 +219337,1096.685000012333,-0.0545373090231874 +219338,1096.690000012333,-0.05453723592293372 +219339,1096.6950000123331,-0.05453716281922898 +219340,1096.7000000123332,-0.0545370897120728 +219341,1096.7050000123334,-0.054537016601464774 +219342,1096.7100000123335,-0.0545369434874045 +219343,1096.7150000123336,-0.054536870369891605 +219344,1096.7200000123337,-0.05453679724892567 +219345,1096.7250000123338,-0.05453672412450631 +219346,1096.730000012334,-0.05453665099663313 +219347,1096.735000012334,-0.05453657786530573 +219348,1096.7400000123341,-0.05453650473052373 +219349,1096.7450000123342,-0.054536431592286716 +219350,1096.7500000123343,-0.054536358450594305 +219351,1096.7550000123344,-0.0545362853054461 +219352,1096.7600000123346,-0.054536212156841686 +219353,1096.7650000123347,-0.054536139004780694 +219354,1096.7700000123348,-0.05453606584926271 +219355,1096.7750000123349,-0.054535992690287347 +219356,1096.780000012335,-0.05453591952785419 +219357,1096.785000012335,-0.05453584636196287 +219358,1096.7900000123352,-0.05453577319261298 +219359,1096.7950000123353,-0.05453570001980411 +219360,1096.8000000123354,-0.054535626843535884 +219361,1096.8050000123355,-0.05453555366380789 +219362,1096.8100000123356,-0.05453548048061974 +219363,1096.8150000123358,-0.054535407293971036 +219364,1096.8200000123359,-0.054535334103861376 +219365,1096.825000012336,-0.05453526091029036 +219366,1096.830000012336,-0.0545351877132576 +219367,1096.8350000123362,-0.05453511451276269 +219368,1096.8400000123363,-0.05453504130880524 +219369,1096.8450000123364,-0.054534968101384834 +219370,1096.8500000123365,-0.0545348948905011 +219371,1096.8550000123366,-0.054534821676153616 +219372,1096.8600000123367,-0.054534748458342 +219373,1096.8650000123368,-0.054534675237065844 +219374,1096.870000012337,-0.05453460201232477 +219375,1096.875000012337,-0.05453452878411835 +219376,1096.8800000123372,-0.054534455552446216 +219377,1096.8850000123373,-0.05453438231730794 +219378,1096.8900000123374,-0.054534309078703144 +219379,1096.8950000123375,-0.054534235836631424 +219380,1096.9000000123376,-0.05453416259109238 +219381,1096.9050000123377,-0.05453408934208561 +219382,1096.9100000123378,-0.05453401608961072 +219383,1096.915000012338,-0.05453394283366731 +219384,1096.920000012338,-0.05453386957425498 +219385,1096.9250000123382,-0.054533796311373325 +219386,1096.9300000123383,-0.054533723045021944 +219387,1096.9350000123384,-0.05453364977520045 +219388,1096.9400000123385,-0.05453357650190843 +219389,1096.9450000123386,-0.054533503225145497 +219390,1096.9500000123387,-0.054533429944911234 +219391,1096.9550000123388,-0.05453335666120526 +219392,1096.960000012339,-0.054533283374027165 +219393,1096.965000012339,-0.05453321008337655 +219394,1096.9700000123391,-0.054533136789253006 +219395,1096.9750000123393,-0.05453306349165615 +219396,1096.9800000123394,-0.054532990190585565 +219397,1096.9850000123395,-0.054532916886040866 +219398,1096.9900000123396,-0.05453284357802164 +219399,1096.9950000123397,-0.054532770266527496 +219400,1097.0000000123398,-0.05453269695155801 +219401,1097.00500001234,-0.05453262363311281 +219402,1097.01000001234,-0.054532550311191474 +219403,1097.0150000123401,-0.05453247698579361 +219404,1097.0200000123402,-0.05453240365691882 +219405,1097.0250000123403,-0.05453233032456669 +219406,1097.0300000123405,-0.05453225698873684 +219407,1097.0350000123406,-0.054532183649428835 +219408,1097.0400000123407,-0.0545321103066423 +219409,1097.0450000123408,-0.05453203696037683 +219410,1097.050000012341,-0.054531963610632006 +219411,1097.055000012341,-0.05453189025740744 +219412,1097.060000012341,-0.05453181690070274 +219413,1097.0650000123412,-0.054531743540517486 +219414,1097.0700000123413,-0.05453167017685128 +219415,1097.0750000123414,-0.054531596809703715 +219416,1097.0800000123415,-0.05453152343907439 +219417,1097.0850000123417,-0.05453145006496291 +219418,1097.0900000123418,-0.05453137668736886 +219419,1097.0950000123419,-0.05453130330629185 +219420,1097.100000012342,-0.05453122992173147 +219421,1097.105000012342,-0.05453115653368731 +219422,1097.1100000123422,-0.05453108314215898 +219423,1097.1150000123423,-0.05453100974714607 +219424,1097.1200000123424,-0.05453093634864818 +219425,1097.1250000123425,-0.05453086294666491 +219426,1097.1300000123426,-0.05453078954119585 +219427,1097.1350000123427,-0.054530716132240586 +219428,1097.1400000123429,-0.054530642719798725 +219429,1097.145000012343,-0.054530569303869854 +219430,1097.150000012343,-0.054530495884453585 +219431,1097.1550000123432,-0.05453042246154951 +219432,1097.1600000123433,-0.0545303490351572 +219433,1097.1650000123434,-0.05453027560527628 +219434,1097.1700000123435,-0.05453020217190633 +219435,1097.1750000123436,-0.054530128735046944 +219436,1097.1800000123437,-0.05453005529469773 +219437,1097.1850000123438,-0.05452998185085828 +219438,1097.190000012344,-0.054529908403528185 +219439,1097.195000012344,-0.05452983495270704 +219440,1097.2000000123442,-0.054529761498394426 +219441,1097.2050000123443,-0.05452968804058996 +219442,1097.2100000123444,-0.05452961457929322 +219443,1097.2150000123445,-0.05452954111450382 +219444,1097.2200000123446,-0.054529467646221325 +219445,1097.2250000123447,-0.05452939417444534 +219446,1097.2300000123448,-0.05452932069917549 +219447,1097.235000012345,-0.054529247220411324 +219448,1097.240000012345,-0.05452917373815247 +219449,1097.2450000123451,-0.054529100252398495 +219450,1097.2500000123453,-0.054529026763149004 +219451,1097.2550000123454,-0.05452895327040359 +219452,1097.2600000123455,-0.054528879774161855 +219453,1097.2650000123456,-0.05452880627442337 +219454,1097.2700000123457,-0.05452873277118776 +219455,1097.2750000123458,-0.054528659264454604 +219456,1097.280000012346,-0.05452858575422349 +219457,1097.285000012346,-0.054528512240493994 +219458,1097.2900000123461,-0.05452843872326574 +219459,1097.2950000123462,-0.0545283652025383 +219460,1097.3000000123463,-0.054528291678311275 +219461,1097.3050000123465,-0.054528218150584264 +219462,1097.3100000123466,-0.05452814461935685 +219463,1097.3150000123467,-0.05452807108462862 +219464,1097.3200000123468,-0.05452799754639918 +219465,1097.325000012347,-0.05452792400466811 +219466,1097.330000012347,-0.054527850459435 +219467,1097.335000012347,-0.05452777691069946 +219468,1097.3400000123472,-0.05452770335846107 +219469,1097.3450000123473,-0.05452762980271942 +219470,1097.3500000123474,-0.05452755624347409 +219471,1097.3550000123475,-0.0545274826807247 +219472,1097.3600000123477,-0.05452740911447083 +219473,1097.3650000123478,-0.05452733554471206 +219474,1097.3700000123479,-0.054527261971447985 +219475,1097.375000012348,-0.05452718839467819 +219476,1097.380000012348,-0.05452711481440228 +219477,1097.3850000123482,-0.05452704123061985 +219478,1097.3900000123483,-0.05452696764333047 +219479,1097.3950000123484,-0.054526894052533734 +219480,1097.4000000123485,-0.05452682045822924 +219481,1097.4050000123486,-0.05452674686041658 +219482,1097.4100000123487,-0.05452667325909535 +219483,1097.4150000123489,-0.05452659965426513 +219484,1097.420000012349,-0.05452652604592549 +219485,1097.425000012349,-0.05452645243407606 +219486,1097.4300000123492,-0.05452637881871641 +219487,1097.4350000123493,-0.05452630519984612 +219488,1097.4400000123494,-0.0545262315774648 +219489,1097.4450000123495,-0.05452615795157202 +219490,1097.4500000123496,-0.05452608432216738 +219491,1097.4550000123497,-0.05452601068925047 +219492,1097.4600000123498,-0.05452593705282087 +219493,1097.46500001235,-0.05452586341287817 +219494,1097.47000001235,-0.05452578976942196 +219495,1097.4750000123502,-0.05452571612245184 +219496,1097.4800000123503,-0.05452564247196739 +219497,1097.4850000123504,-0.05452556881796821 +219498,1097.4900000123505,-0.05452549516045387 +219499,1097.4950000123506,-0.05452542149942397 +219500,1097.5000000123507,-0.05452534783487809 +219501,1097.5050000123508,-0.054525274166815824 +219502,1097.510000012351,-0.05452520049523675 +219503,1097.515000012351,-0.054525126820140456 +219504,1097.5200000123511,-0.05452505314152656 +219505,1097.5250000123513,-0.054524979459394614 +219506,1097.5300000123514,-0.05452490577374423 +219507,1097.5350000123515,-0.05452483208457497 +219508,1097.5400000123516,-0.05452475839188644 +219509,1097.5450000123517,-0.05452468469567822 +219510,1097.5500000123518,-0.054524610995949886 +219511,1097.555000012352,-0.05452453729270104 +219512,1097.560000012352,-0.05452446358593127 +219513,1097.5650000123521,-0.05452438987564017 +219514,1097.5700000123522,-0.054524316161827305 +219515,1097.5750000123523,-0.05452424244449228 +219516,1097.5800000123525,-0.05452416872363466 +219517,1097.5850000123526,-0.054524094999254064 +219518,1097.5900000123527,-0.05452402127135005 +219519,1097.5950000123528,-0.05452394753992222 +219520,1097.600000012353,-0.05452387380497014 +219521,1097.605000012353,-0.05452380006649341 +219522,1097.610000012353,-0.05452372632449162 +219523,1097.6150000123532,-0.05452365257896435 +219524,1097.6200000123533,-0.05452357882991118 +219525,1097.6250000123534,-0.05452350507733169 +219526,1097.6300000123535,-0.05452343132122549 +219527,1097.6350000123537,-0.05452335756159215 +219528,1097.6400000123538,-0.05452328379843125 +219529,1097.6450000123539,-0.054523210031742396 +219530,1097.650000012354,-0.054523136261525156 +219531,1097.655000012354,-0.0545230624877791 +219532,1097.6600000123542,-0.05452298871050384 +219533,1097.6650000123543,-0.05452291492969894 +219534,1097.6700000123544,-0.054522841145364 +219535,1097.6750000123545,-0.05452276735749859 +219536,1097.6800000123546,-0.05452269356610232 +219537,1097.6850000123547,-0.05452261977117475 +219538,1097.6900000123549,-0.05452254597271546 +219539,1097.695000012355,-0.054522472170724055 +219540,1097.700000012355,-0.054522398365200106 +219541,1097.7050000123552,-0.05452232455614319 +219542,1097.7100000123553,-0.0545222507435529 +219543,1097.7150000123554,-0.054522176927428834 +219544,1097.7200000123555,-0.05452210310777055 +219545,1097.7250000123556,-0.054522029284577646 +219546,1097.7300000123557,-0.054521955457849686 +219547,1097.7350000123558,-0.05452188162758627 +219548,1097.740000012356,-0.05452180779378698 +219549,1097.745000012356,-0.054521733956451386 +219550,1097.7500000123562,-0.054521660115579094 +219551,1097.7550000123563,-0.05452158627116967 +219552,1097.7600000123564,-0.05452151242322269 +219553,1097.7650000123565,-0.054521438571737746 +219554,1097.7700000123566,-0.054521364716714434 +219555,1097.7750000123567,-0.05452129085815231 +219556,1097.7800000123568,-0.05452121699605098 +219557,1097.785000012357,-0.05452114313041001 +219558,1097.790000012357,-0.054521069261228974 +219559,1097.7950000123571,-0.05452099538850747 +219560,1097.8000000123573,-0.05452092151224508 +219561,1097.8050000123574,-0.054520847632441374 +219562,1097.8100000123575,-0.05452077374909594 +219563,1097.8150000123576,-0.05452069986220836 +219564,1097.8200000123577,-0.0545206259717782 +219565,1097.8250000123578,-0.05452055207780507 +219566,1097.830000012358,-0.054520478180288524 +219567,1097.835000012358,-0.05452040427922816 +219568,1097.8400000123581,-0.05452033037462354 +219569,1097.8450000123582,-0.054520256466474265 +219570,1097.8500000123584,-0.05452018255477991 +219571,1097.8550000123585,-0.054520108639540044 +219572,1097.8600000123586,-0.05452003472075426 +219573,1097.8650000123587,-0.05451996079842212 +219574,1097.8700000123588,-0.05451988687254323 +219575,1097.875000012359,-0.05451981294311715 +219576,1097.880000012359,-0.05451973901014347 +219577,1097.8850000123591,-0.05451966507362177 +219578,1097.8900000123592,-0.05451959113355161 +219579,1097.8950000123593,-0.0545195171899326 +219580,1097.9000000123594,-0.054519443242764296 +219581,1097.9050000123596,-0.054519369292046295 +219582,1097.9100000123597,-0.05451929533777816 +219583,1097.9150000123598,-0.05451922137995947 +219584,1097.9200000123599,-0.054519147418589826 +219585,1097.92500001236,-0.054519073453668784 +219586,1097.93000001236,-0.054518999485195924 +219587,1097.9350000123602,-0.05451892551317083 +219588,1097.9400000123603,-0.05451885153759308 +219589,1097.9450000123604,-0.054518777558462246 +219590,1097.9500000123605,-0.05451870357577792 +219591,1097.9550000123606,-0.05451862958953967 +219592,1097.9600000123608,-0.054518555599747075 +219593,1097.9650000123609,-0.054518481606399716 +219594,1097.970000012361,-0.05451840760949716 +219595,1097.975000012361,-0.054518333609039 +219596,1097.9800000123612,-0.05451825960502481 +219597,1097.9850000123613,-0.05451818559745415 +219598,1097.9900000123614,-0.05451811158632661 +219599,1097.9950000123615,-0.05451803757164179 +219600,1098.0000000123616,-0.054517963553399225 +219601,1098.0050000123617,-0.054517889531598515 +219602,1098.0100000123618,-0.05451781550623923 +219603,1098.015000012362,-0.054517741477320955 +219604,1098.020000012362,-0.05451766744484326 +219605,1098.0250000123622,-0.05451759340880572 +219606,1098.0300000123623,-0.05451751936920792 +219607,1098.0350000123624,-0.05451744532604943 +219608,1098.0400000123625,-0.054517371279329825 +219609,1098.0450000123626,-0.05451729722904868 +219610,1098.0500000123627,-0.054517223175205576 +219611,1098.0550000123628,-0.054517149117800076 +219612,1098.060000012363,-0.054517075056831774 +219613,1098.065000012363,-0.05451700099230024 +219614,1098.0700000123632,-0.05451692692420504 +219615,1098.0750000123633,-0.054516852852545754 +219616,1098.0800000123634,-0.05451677877732196 +219617,1098.0850000123635,-0.05451670469853323 +219618,1098.0900000123636,-0.054516630616179146 +219619,1098.0950000123637,-0.05451655653025928 +219620,1098.1000000123638,-0.0545164824407732 +219621,1098.105000012364,-0.05451640834772049 +219622,1098.110000012364,-0.0545163342511007 +219623,1098.1150000123641,-0.05451626015091344 +219624,1098.1200000123642,-0.05451618604715826 +219625,1098.1250000123644,-0.054516111939834744 +219626,1098.1300000123645,-0.054516037828942474 +219627,1098.1350000123646,-0.054515963714481 +219628,1098.1400000123647,-0.05451588959644992 +219629,1098.1450000123648,-0.054515815474848794 +219630,1098.150000012365,-0.0545157413496772 +219631,1098.155000012365,-0.054515667220934705 +219632,1098.1600000123651,-0.05451559308862089 +219633,1098.1650000123652,-0.05451551895273532 +219634,1098.1700000123653,-0.05451544481327758 +219635,1098.1750000123654,-0.05451537067024724 +219636,1098.1800000123656,-0.05451529652364387 +219637,1098.1850000123657,-0.054515222373467044 +219638,1098.1900000123658,-0.05451514821971633 +219639,1098.1950000123659,-0.05451507406239129 +219640,1098.200000012366,-0.05451499990149152 +219641,1098.205000012366,-0.054514925737016585 +219642,1098.2100000123662,-0.05451485156896605 +219643,1098.2150000123663,-0.0545147773973395 +219644,1098.2200000123664,-0.05451470322213651 +219645,1098.2250000123665,-0.05451462904335662 +219646,1098.2300000123666,-0.054514554860999424 +219647,1098.2350000123668,-0.05451448067506451 +219648,1098.2400000123669,-0.05451440648555142 +219649,1098.245000012367,-0.05451433229245973 +219650,1098.250000012367,-0.05451425809578902 +219651,1098.2550000123672,-0.054514183895538866 +219652,1098.2600000123673,-0.05451410969170883 +219653,1098.2650000123674,-0.05451403548429848 +219654,1098.2700000123675,-0.05451396127330739 +219655,1098.2750000123676,-0.05451388705873514 +219656,1098.2800000123677,-0.054513812840581294 +219657,1098.2850000123678,-0.054513738618845425 +219658,1098.290000012368,-0.054513664393527096 +219659,1098.295000012368,-0.05451359016462588 +219660,1098.3000000123682,-0.05451351593214135 +219661,1098.3050000123683,-0.05451344169607308 +219662,1098.3100000123684,-0.054513367456420624 +219663,1098.3150000123685,-0.05451329321318357 +219664,1098.3200000123686,-0.05451321896636148 +219665,1098.3250000123687,-0.054513144715953914 +219666,1098.3300000123688,-0.05451307046196045 +219667,1098.335000012369,-0.05451299620438067 +219668,1098.340000012369,-0.054512921943214124 +219669,1098.3450000123692,-0.05451284767846039 +219670,1098.3500000123693,-0.054512773410119036 +219671,1098.3550000123694,-0.05451269913818963 +219672,1098.3600000123695,-0.05451262486267174 +219673,1098.3650000123696,-0.054512550583564946 +219674,1098.3700000123697,-0.0545124763008688 +219675,1098.3750000123698,-0.05451240201458288 +219676,1098.38000001237,-0.05451232772470674 +219677,1098.38500001237,-0.05451225343123996 +219678,1098.3900000123701,-0.054512179134182104 +219679,1098.3950000123702,-0.05451210483353275 +219680,1098.4000000123704,-0.054512030529291454 +219681,1098.4050000123705,-0.0545119562214578 +219682,1098.4100000123706,-0.05451188191003133 +219683,1098.4150000123707,-0.05451180759501163 +219684,1098.4200000123708,-0.05451173327639828 +219685,1098.425000012371,-0.05451165895419081 +219686,1098.430000012371,-0.05451158462838882 +219687,1098.4350000123711,-0.05451151029899185 +219688,1098.4400000123712,-0.0545114359659995 +219689,1098.4450000123713,-0.054511361629411295 +219690,1098.4500000123714,-0.05451128728922684 +219691,1098.4550000123716,-0.05451121294544569 +219692,1098.4600000123717,-0.05451113859806741 +219693,1098.4650000123718,-0.054511064247091554 +219694,1098.4700000123719,-0.0545109898925177 +219695,1098.475000012372,-0.054510915534345415 +219696,1098.480000012372,-0.05451084117257426 +219697,1098.4850000123722,-0.05451076680720379 +219698,1098.4900000123723,-0.05451069243823361 +219699,1098.4950000123724,-0.054510618065663236 +219700,1098.5000000123725,-0.05451054368949227 +219701,1098.5050000123726,-0.05451046930972025 +219702,1098.5100000123728,-0.05451039492634677 +219703,1098.5150000123729,-0.05451032053937137 +219704,1098.520000012373,-0.05451024614879363 +219705,1098.525000012373,-0.05451017175461311 +219706,1098.5300000123732,-0.05451009735682938 +219707,1098.5350000123733,-0.054510022955441995 +219708,1098.5400000123734,-0.054509948550450535 +219709,1098.5450000123735,-0.05450987414185454 +219710,1098.5500000123736,-0.05450979972965359 +219711,1098.5550000123737,-0.054509725313847256 +219712,1098.5600000123738,-0.05450965089443508 +219713,1098.565000012374,-0.05450957647141665 +219714,1098.570000012374,-0.05450950204479152 +219715,1098.5750000123742,-0.05450942761455926 +219716,1098.5800000123743,-0.054509353180719415 +219717,1098.5850000123744,-0.054509278743271564 +219718,1098.5900000123745,-0.054509204302215265 +219719,1098.5950000123746,-0.0545091298575501 +219720,1098.6000000123747,-0.05450905540927559 +219721,1098.6050000123748,-0.05450898095739133 +219722,1098.610000012375,-0.05450890650189689 +219723,1098.615000012375,-0.05450883204279181 +219724,1098.6200000123752,-0.054508757580075666 +219725,1098.6250000123753,-0.05450868311374802 +219726,1098.6300000123754,-0.05450860864380843 +219727,1098.6350000123755,-0.05450853417025645 +219728,1098.6400000123756,-0.054508459693091656 +219729,1098.6450000123757,-0.0545083852123136 +219730,1098.6500000123758,-0.05450831072792185 +219731,1098.655000012376,-0.05450823623991598 +219732,1098.660000012376,-0.05450816174829552 +219733,1098.6650000123761,-0.05450808725306007 +219734,1098.6700000123762,-0.05450801275420916 +219735,1098.6750000123764,-0.054507938251742376 +219736,1098.6800000123765,-0.05450786374565925 +219737,1098.6850000123766,-0.054507789235959364 +219738,1098.6900000123767,-0.05450771472264228 +219739,1098.6950000123768,-0.054507640205707544 +219740,1098.700000012377,-0.054507565685154746 +219741,1098.705000012377,-0.05450749116098342 +219742,1098.7100000123771,-0.05450741663319313 +219743,1098.7150000123772,-0.05450734210178345 +219744,1098.7200000123773,-0.05450726756675393 +219745,1098.7250000123774,-0.054507193028104126 +219746,1098.7300000123776,-0.0545071184858336 +219747,1098.7350000123777,-0.05450704393994192 +219748,1098.7400000123778,-0.054506969390428636 +219749,1098.745000012378,-0.05450689483729332 +219750,1098.750000012378,-0.05450682028053552 +219751,1098.755000012378,-0.0545067457201548 +219752,1098.7600000123782,-0.05450667115615072 +219753,1098.7650000123783,-0.05450659658852284 +219754,1098.7700000123784,-0.05450652201727073 +219755,1098.7750000123785,-0.05450644744239392 +219756,1098.7800000123787,-0.054506372863892 +219757,1098.7850000123788,-0.0545062982817645 +219758,1098.7900000123789,-0.054506223696011005 +219759,1098.795000012379,-0.054506149106631055 +219760,1098.800000012379,-0.054506074513624214 +219761,1098.8050000123792,-0.05450599991699005 +219762,1098.8100000123793,-0.05450592531672811 +219763,1098.8150000123794,-0.05450585071283796 +219764,1098.8200000123795,-0.05450577610531914 +219765,1098.8250000123796,-0.054505701494171235 +219766,1098.8300000123797,-0.05450562687939379 +219767,1098.8350000123799,-0.05450555226098635 +219768,1098.84000001238,-0.054505477638948495 +219769,1098.84500001238,-0.05450540301327976 +219770,1098.8500000123802,-0.054505328383979715 +219771,1098.8550000123803,-0.054505253751047915 +219772,1098.8600000123804,-0.05450517911448392 +219773,1098.8650000123805,-0.054505104474287296 +219774,1098.8700000123806,-0.054505029830457574 +219775,1098.8750000123807,-0.05450495518299432 +219776,1098.8800000123808,-0.054504880531897115 +219777,1098.885000012381,-0.05450480587716548 +219778,1098.890000012381,-0.054504731218798994 +219779,1098.8950000123812,-0.054504656556797204 +219780,1098.9000000123813,-0.05450458189115968 +219781,1098.9050000123814,-0.05450450722188596 +219782,1098.9100000123815,-0.0545044325489756 +219783,1098.9150000123816,-0.054504357872428175 +219784,1098.9200000123817,-0.05450428319224322 +219785,1098.9250000123818,-0.054504208508420304 +219786,1098.930000012382,-0.05450413382095897 +219787,1098.935000012382,-0.05450405912985878 +219788,1098.9400000123821,-0.05450398443511928 +219789,1098.9450000123823,-0.05450390973674004 +219790,1098.9500000123824,-0.05450383503472061 +219791,1098.9550000123825,-0.05450376032906054 +219792,1098.9600000123826,-0.05450368561975939 +219793,1098.9650000123827,-0.05450361090681672 +219794,1098.9700000123828,-0.05450353619023207 +219795,1098.975000012383,-0.05450346147000501 +219796,1098.980000012383,-0.05450338674613508 +219797,1098.9850000123831,-0.054503312018621845 +219798,1098.9900000123832,-0.05450323728746484 +219799,1098.9950000123833,-0.05450316255266365 +219800,1099.0000000123835,-0.05450308781421781 +219801,1099.0050000123836,-0.05450301307212686 +219802,1099.0100000123837,-0.05450293832639038 +219803,1099.0150000123838,-0.05450286357700792 +219804,1099.020000012384,-0.054502788823979006 +219805,1099.025000012384,-0.05450271406730322 +219806,1099.030000012384,-0.0545026393069801 +219807,1099.0350000123842,-0.05450256454300922 +219808,1099.0400000123843,-0.05450248977539011 +219809,1099.0450000123844,-0.05450241500412231 +219810,1099.0500000123845,-0.0545023402292054 +219811,1099.0550000123847,-0.05450226545063893 +219812,1099.0600000123848,-0.05450219066842244 +219813,1099.0650000123849,-0.054502115882555505 +219814,1099.070000012385,-0.05450204109303765 +219815,1099.075000012385,-0.05450196629986843 +219816,1099.0800000123852,-0.054501891503047406 +219817,1099.0850000123853,-0.05450181670257413 +219818,1099.0900000123854,-0.05450174189844816 +219819,1099.0950000123855,-0.05450166709066903 +219820,1099.1000000123856,-0.05450159227923631 +219821,1099.1050000123857,-0.05450151746414953 +219822,1099.1100000123859,-0.054501442645408245 +219823,1099.115000012386,-0.054501367823012035 +219824,1099.120000012386,-0.05450129299696042 +219825,1099.1250000123862,-0.05450121816725296 +219826,1099.1300000123863,-0.0545011433338892 +219827,1099.1350000123864,-0.0545010684968687 +219828,1099.1400000123865,-0.054500993656191 +219829,1099.1450000123866,-0.054500918811855655 +219830,1099.1500000123867,-0.054500843963862226 +219831,1099.1550000123868,-0.05450076911221025 +219832,1099.160000012387,-0.05450069425689928 +219833,1099.165000012387,-0.05450061939792886 +219834,1099.1700000123872,-0.05450054453529855 +219835,1099.1750000123873,-0.05450046966900789 +219836,1099.1800000123874,-0.05450039479905644 +219837,1099.1850000123875,-0.054500319925443734 +219838,1099.1900000123876,-0.05450024504816933 +219839,1099.1950000123877,-0.054500170167232784 +219840,1099.2000000123878,-0.05450009528263364 +219841,1099.205000012388,-0.054500020394371435 +219842,1099.210000012388,-0.054499945502445725 +219843,1099.2150000123881,-0.05449987060685608 +219844,1099.2200000123883,-0.05449979570760202 +219845,1099.2250000123884,-0.054499720804683106 +219846,1099.2300000123885,-0.05449964589809888 +219847,1099.2350000123886,-0.05449957098784888 +219848,1099.2400000123887,-0.05449949607393269 +219849,1099.2450000123888,-0.05449942115634983 +219850,1099.250000012389,-0.05449934623509984 +219851,1099.255000012389,-0.054499271310182285 +219852,1099.2600000123891,-0.054499196381596705 +219853,1099.2650000123892,-0.05449912144934265 +219854,1099.2700000123893,-0.05449904651341967 +219855,1099.2750000123895,-0.054498971573827305 +219856,1099.2800000123896,-0.05449889663056511 +219857,1099.2850000123897,-0.054498821683632626 +219858,1099.2900000123898,-0.05449874673302941 +219859,1099.29500001239,-0.05449867177875498 +219860,1099.30000001239,-0.05449859682080892 +219861,1099.30500001239,-0.05449852185919075 +219862,1099.3100000123902,-0.05449844689390002 +219863,1099.3150000123903,-0.0544983719249363 +219864,1099.3200000123904,-0.0544982969522991 +219865,1099.3250000123905,-0.05449822197598799 +219866,1099.3300000123907,-0.05449814699600251 +219867,1099.3350000123908,-0.05449807201234219 +219868,1099.3400000123909,-0.0544979970250066 +219869,1099.345000012391,-0.05449792203399527 +219870,1099.350000012391,-0.05449784703930775 +219871,1099.3550000123912,-0.05449777204094359 +219872,1099.3600000123913,-0.05449769703890233 +219873,1099.3650000123914,-0.05449762203318352 +219874,1099.3700000123915,-0.054497547023786695 +219875,1099.3750000123916,-0.05449747201071141 +219876,1099.3800000123917,-0.054497396993957184 +219877,1099.3850000123919,-0.05449732197352358 +219878,1099.390000012392,-0.054497246949410154 +219879,1099.395000012392,-0.05449717192161644 +219880,1099.4000000123922,-0.05449709689014199 +219881,1099.4050000123923,-0.05449702185498633 +219882,1099.4100000123924,-0.05449694681614901 +219883,1099.4150000123925,-0.05449687177362958 +219884,1099.4200000123926,-0.054496796727427584 +219885,1099.4250000123927,-0.054496721677542555 +219886,1099.4300000123928,-0.05449664662397404 +219887,1099.435000012393,-0.0544965715667216 +219888,1099.440000012393,-0.054496496505784746 +219889,1099.4450000123932,-0.054496421441163054 +219890,1099.4500000123933,-0.05449634637285604 +219891,1099.4550000123934,-0.05449627130086326 +219892,1099.4600000123935,-0.05449619622518425 +219893,1099.4650000123936,-0.05449612114581855 +219894,1099.4700000123937,-0.054496046062765716 +219895,1099.4750000123938,-0.05449597097602528 +219896,1099.480000012394,-0.05449589588559678 +219897,1099.485000012394,-0.05449582079147977 +219898,1099.4900000123941,-0.0544957456936738 +219899,1099.4950000123943,-0.054495670592178386 +219900,1099.5000000123944,-0.054495595486993086 +219901,1099.5050000123945,-0.05449552037811743 +219902,1099.5100000123946,-0.054495445265550974 +219903,1099.5150000123947,-0.05449537014929324 +219904,1099.5200000123948,-0.054495295029343783 +219905,1099.525000012395,-0.05449521990570214 +219906,1099.530000012395,-0.05449514477836786 +219907,1099.5350000123951,-0.05449506964734047 +219908,1099.5400000123952,-0.054494994512619514 +219909,1099.5450000123953,-0.054494919374204545 +219910,1099.5500000123955,-0.054494844232095094 +219911,1099.5550000123956,-0.05449476908629069 +219912,1099.5600000123957,-0.0544946939367909 +219913,1099.5650000123958,-0.05449461878359523 +219914,1099.570000012396,-0.05449454362670325 +219915,1099.575000012396,-0.054494468466114485 +219916,1099.580000012396,-0.05449439330182847 +219917,1099.5850000123962,-0.05449431813384476 +219918,1099.5900000123963,-0.054494242962162875 +219919,1099.5950000123964,-0.05449416778678237 +219920,1099.6000000123965,-0.054494092607702785 +219921,1099.6050000123967,-0.054494017424923644 +219922,1099.6100000123968,-0.05449394223844449 +219923,1099.6150000123969,-0.05449386704826487 +219924,1099.620000012397,-0.05449379185438433 +219925,1099.625000012397,-0.054493716656802395 +219926,1099.6300000123972,-0.0544936414555186 +219927,1099.6350000123973,-0.0544935662505325 +219928,1099.6400000123974,-0.05449349104184361 +219929,1099.6450000123975,-0.05449341582945148 +219930,1099.6500000123976,-0.05449334061335566 +219931,1099.6550000123977,-0.05449326539355566 +219932,1099.6600000123979,-0.05449319017005104 +219933,1099.665000012398,-0.054493114942841335 +219934,1099.670000012398,-0.054493039711926074 +219935,1099.6750000123982,-0.0544929644773048 +219936,1099.6800000123983,-0.05449288923897704 +219937,1099.6850000123984,-0.05449281399694235 +219938,1099.6900000123985,-0.054492738751200254 +219939,1099.6950000123986,-0.05449266350175027 +219940,1099.7000000123987,-0.054492588248591975 +219941,1099.7050000123988,-0.05449251299172488 +219942,1099.710000012399,-0.05449243773114853 +219943,1099.715000012399,-0.05449236246686245 +219944,1099.7200000123992,-0.05449228719886618 +219945,1099.7250000123993,-0.05449221192715928 +219946,1099.7300000123994,-0.05449213665174125 +219947,1099.7350000123995,-0.054492061372611644 +219948,1099.7400000123996,-0.054491986089769996 +219949,1099.7450000123997,-0.054491910803215846 +219950,1099.7500000123998,-0.054491835512948714 +219951,1099.7550000124,-0.054491760218968156 +219952,1099.7600000124,-0.05449168492127369 +219953,1099.7650000124002,-0.054491609619864864 +219954,1099.7700000124003,-0.054491534314741186 +219955,1099.7750000124004,-0.05449145900590223 +219956,1099.7800000124005,-0.0544913836933475 +219957,1099.7850000124006,-0.05449130837707655 +219958,1099.7900000124007,-0.0544912330570889 +219959,1099.7950000124008,-0.0544911577333841 +219960,1099.800000012401,-0.05449108240596166 +219961,1099.805000012401,-0.05449100707482114 +219962,1099.8100000124011,-0.05449093173996205 +219963,1099.8150000124012,-0.05449085640138394 +219964,1099.8200000124014,-0.054490781059086335 +219965,1099.8250000124015,-0.05449070571306878 +219966,1099.8300000124016,-0.054490630363330794 +219967,1099.8350000124017,-0.054490555009871926 +219968,1099.8400000124018,-0.054490479652691694 +219969,1099.845000012402,-0.05449040429178963 +219970,1099.850000012402,-0.05449032892716528 +219971,1099.8550000124021,-0.05449025355881817 +219972,1099.8600000124022,-0.054490178186747826 +219973,1099.8650000124023,-0.0544901028109538 +219974,1099.8700000124024,-0.054490027431435606 +219975,1099.8750000124026,-0.05448995204819279 +219976,1099.8800000124027,-0.05448987666122487 +219977,1099.8850000124028,-0.054489801270531386 +219978,1099.8900000124029,-0.054489725876111866 +219979,1099.895000012403,-0.05448965047796584 +219980,1099.900000012403,-0.054489575076092846 +219981,1099.9050000124032,-0.05448949967049241 +219982,1099.9100000124033,-0.054489424261164064 +219983,1099.9150000124034,-0.05448934884810734 +219984,1099.9200000124035,-0.05448927343132178 +219985,1099.9250000124036,-0.054489198010806886 +219986,1099.9300000124038,-0.054489122586562216 +219987,1099.9350000124039,-0.0544890471585873 +219988,1099.940000012404,-0.054488971726881656 +219989,1099.945000012404,-0.05448889629144482 +219990,1099.9500000124042,-0.05448882085227632 +219991,1099.9550000124043,-0.054488745409375684 +219992,1099.9600000124044,-0.05448866996274245 +219993,1099.9650000124045,-0.05448859451237614 +219994,1099.9700000124046,-0.054488519058276286 +219995,1099.9750000124047,-0.05448844360044242 +219996,1099.9800000124048,-0.05448836813887408 +219997,1099.985000012405,-0.05448829267357078 +219998,1099.990000012405,-0.05448821720453205 +219999,1099.9950000124052,-0.05448814173175742 +220000,1100.0000000124053,-0.05448806625524644 +220001,1100.0050000124054,-0.05448799077499861 +220002,1100.0100000124055,-0.05448791529101347 +220003,1100.0150000124056,-0.05448783980329054 +220004,1100.0200000124057,-0.05448776431182937 +220005,1100.0250000124058,-0.05448768881662947 +220006,1100.030000012406,-0.05448761331769039 +220007,1100.035000012406,-0.05448753781501164 +220008,1100.0400000124062,-0.05448746230859274 +220009,1100.0450000124063,-0.054487386798433235 +220010,1100.0500000124064,-0.05448731128453264 +220011,1100.0550000124065,-0.05448723576689049 +220012,1100.0600000124066,-0.054487160245506316 +220013,1100.0650000124067,-0.05448708472037964 +220014,1100.0700000124068,-0.054487009191509984 +220015,1100.075000012407,-0.05448693365889689 +220016,1100.080000012407,-0.05448685812253987 +220017,1100.0850000124071,-0.05448678258243845 +220018,1100.0900000124072,-0.05448670703859217 +220019,1100.0950000124074,-0.05448663149100055 +220020,1100.1000000124075,-0.054486555939663124 +220021,1100.1050000124076,-0.05448648038457939 +220022,1100.1100000124077,-0.05448640482574892 +220023,1100.1150000124078,-0.0544863292631712 +220024,1100.120000012408,-0.05448625369684578 +220025,1100.125000012408,-0.05448617812677217 +220026,1100.1300000124081,-0.0544861025529499 +220027,1100.1350000124082,-0.05448602697537851 +220028,1100.1400000124083,-0.05448595139405751 +220029,1100.1450000124084,-0.05448587580898642 +220030,1100.1500000124086,-0.054485800220164776 +220031,1100.1550000124087,-0.05448572462759211 +220032,1100.1600000124088,-0.05448564903126793 +220033,1100.1650000124089,-0.054485573431191765 +220034,1100.170000012409,-0.05448549782736315 +220035,1100.175000012409,-0.0544854222197816 +220036,1100.1800000124092,-0.05448534660844665 +220037,1100.1850000124093,-0.054485270993357815 +220038,1100.1900000124094,-0.05448519537451462 +220039,1100.1950000124095,-0.05448511975191658 +220040,1100.2000000124096,-0.05448504412556324 +220041,1100.2050000124098,-0.054484968495454096 +220042,1100.2100000124099,-0.0544848928615887 +220043,1100.21500001241,-0.05448481722396657 +220044,1100.22000001241,-0.05448474158258722 +220045,1100.2250000124102,-0.054484665937450175 +220046,1100.2300000124103,-0.05448459028855496 +220047,1100.2350000124104,-0.05448451463590109 +220048,1100.2400000124105,-0.054484438979488105 +220049,1100.2450000124106,-0.054484363319315506 +220050,1100.2500000124107,-0.05448428765538283 +220051,1100.2550000124108,-0.05448421198768961 +220052,1100.260000012411,-0.05448413631623535 +220053,1100.265000012411,-0.054484060641019585 +220054,1100.2700000124112,-0.05448398496204182 +220055,1100.2750000124113,-0.054483909279301586 +220056,1100.2800000124114,-0.0544838335927984 +220057,1100.2850000124115,-0.05448375790253181 +220058,1100.2900000124116,-0.05448368220850129 +220059,1100.2950000124117,-0.05448360651070641 +220060,1100.3000000124118,-0.05448353080914666 +220061,1100.305000012412,-0.05448345510382157 +220062,1100.310000012412,-0.05448337939473066 +220063,1100.3150000124122,-0.05448330368187345 +220064,1100.3200000124123,-0.05448322796524947 +220065,1100.3250000124124,-0.05448315224485823 +220066,1100.3300000124125,-0.05448307652069926 +220067,1100.3350000124126,-0.054483000792772074 +220068,1100.3400000124127,-0.05448292506107619 +220069,1100.3450000124128,-0.05448284932561113 +220070,1100.350000012413,-0.054482773586376425 +220071,1100.355000012413,-0.054482697843371584 +220072,1100.3600000124131,-0.05448262209659612 +220073,1100.3650000124132,-0.054482546346049564 +220074,1100.3700000124134,-0.054482470591731426 +220075,1100.3750000124135,-0.054482394833641236 +220076,1100.3800000124136,-0.05448231907177852 +220077,1100.3850000124137,-0.05448224330614278 +220078,1100.3900000124138,-0.054482167536733545 +220079,1100.395000012414,-0.05448209176355033 +220080,1100.400000012414,-0.05448201598659264 +220081,1100.4050000124141,-0.054481940205860016 +220082,1100.4100000124142,-0.05448186442135197 +220083,1100.4150000124143,-0.054481788633068025 +220084,1100.4200000124144,-0.05448171284100768 +220085,1100.4250000124146,-0.05448163704517047 +220086,1100.4300000124147,-0.05448156124555591 +220087,1100.4350000124148,-0.05448148544216352 +220088,1100.4400000124149,-0.0544814096349928 +220089,1100.445000012415,-0.05448133382404329 +220090,1100.450000012415,-0.054481258009314505 +220091,1100.4550000124152,-0.05448118219080594 +220092,1100.4600000124153,-0.054481106368517135 +220093,1100.4650000124154,-0.0544810305424476 +220094,1100.4700000124155,-0.054480954712596855 +220095,1100.4750000124156,-0.054480878878964405 +220096,1100.4800000124158,-0.05448080304154978 +220097,1100.4850000124159,-0.05448072720035249 +220098,1100.490000012416,-0.05448065135537206 +220099,1100.495000012416,-0.054480575506607995 +220100,1100.5000000124162,-0.054480499654059815 +220101,1100.5050000124163,-0.054480423797727044 +220102,1100.5100000124164,-0.05448034793760918 +220103,1100.5150000124165,-0.05448027207370577 +220104,1100.5200000124166,-0.05448019620601629 +220105,1100.5250000124167,-0.05448012033454028 +220106,1100.5300000124168,-0.05448004445927724 +220107,1100.535000012417,-0.0544799685802267 +220108,1100.540000012417,-0.05447989269738817 +220109,1100.5450000124172,-0.05447981681076117 +220110,1100.5500000124173,-0.05447974092034521 +220111,1100.5550000124174,-0.0544796650261398 +220112,1100.5600000124175,-0.054479589128144455 +220113,1100.5650000124176,-0.05447951322635869 +220114,1100.5700000124177,-0.054479437320782025 +220115,1100.5750000124178,-0.054479361411413976 +220116,1100.580000012418,-0.05447928549825406 +220117,1100.585000012418,-0.05447920958130178 +220118,1100.5900000124182,-0.05447913366055664 +220119,1100.5950000124183,-0.05447905773601818 +220120,1100.6000000124184,-0.0544789818076859 +220121,1100.6050000124185,-0.05447890587555931 +220122,1100.6100000124186,-0.05447882993963792 +220123,1100.6150000124187,-0.054478753999921255 +220124,1100.6200000124188,-0.054478678056408825 +220125,1100.625000012419,-0.05447860210910014 +220126,1100.630000012419,-0.05447852615799471 +220127,1100.6350000124191,-0.054478450203092055 +220128,1100.6400000124193,-0.05447837424439168 +220129,1100.6450000124194,-0.05447829828189311 +220130,1100.6500000124195,-0.05447822231559583 +220131,1100.6550000124196,-0.054478146345499384 +220132,1100.6600000124197,-0.054478070371603265 +220133,1100.6650000124198,-0.054477994393907 +220134,1100.67000001242,-0.05447791841241008 +220135,1100.67500001242,-0.054477842427112025 +220136,1100.6800000124201,-0.05447776643801235 +220137,1100.6850000124202,-0.05447769044511057 +220138,1100.6900000124203,-0.05447761444840619 +220139,1100.6950000124205,-0.05447753844789871 +220140,1100.7000000124206,-0.05447746244358766 +220141,1100.7050000124207,-0.05447738643547254 +220142,1100.7100000124208,-0.05447731042355287 +220143,1100.715000012421,-0.05447723440782815 +220144,1100.720000012421,-0.0544771583882979 +220145,1100.725000012421,-0.05447708236496162 +220146,1100.7300000124212,-0.05447700633781882 +220147,1100.7350000124213,-0.05447693030686902 +220148,1100.7400000124214,-0.05447685427211173 +220149,1100.7450000124215,-0.05447677823354644 +220150,1100.7500000124217,-0.05447670219117268 +220151,1100.7550000124218,-0.05447662614498995 +220152,1100.7600000124219,-0.054476550094997765 +220153,1100.765000012422,-0.054476474041195634 +220154,1100.770000012422,-0.05447639798358306 +220155,1100.7750000124222,-0.054476321922159544 +220156,1100.7800000124223,-0.05447624585692461 +220157,1100.7850000124224,-0.05447616978787777 +220158,1100.7900000124225,-0.05447609371501852 +220159,1100.7950000124226,-0.05447601763834638 +220160,1100.8000000124227,-0.054475941557860834 +220161,1100.8050000124229,-0.05447586547356141 +220162,1100.810000012423,-0.05447578938544763 +220163,1100.815000012423,-0.05447571329351898 +220164,1100.8200000124232,-0.05447563719777497 +220165,1100.8250000124233,-0.05447556109821511 +220166,1100.8300000124234,-0.05447548499483891 +220167,1100.8350000124235,-0.05447540888764587 +220168,1100.8400000124236,-0.0544753327766355 +220169,1100.8450000124237,-0.05447525666180731 +220170,1100.8500000124238,-0.054475180543160806 +220171,1100.855000012424,-0.05447510442069549 +220172,1100.860000012424,-0.05447502829441088 +220173,1100.8650000124242,-0.05447495216430647 +220174,1100.8700000124243,-0.05447487603038178 +220175,1100.8750000124244,-0.0544747998926363 +220176,1100.8800000124245,-0.05447472375106955 +220177,1100.8850000124246,-0.05447464760568103 +220178,1100.8900000124247,-0.05447457145647024 +220179,1100.8950000124248,-0.0544744953034367 +220180,1100.900000012425,-0.05447441914657989 +220181,1100.905000012425,-0.05447434298589934 +220182,1100.9100000124251,-0.05447426682139455 +220183,1100.9150000124253,-0.054474190653065024 +220184,1100.9200000124254,-0.05447411448091026 +220185,1100.9250000124255,-0.054474038304929764 +220186,1100.9300000124256,-0.05447396212512305 +220187,1100.9350000124257,-0.05447388594148963 +220188,1100.9400000124258,-0.054473809754028976 +220189,1100.945000012426,-0.05447373356274062 +220190,1100.950000012426,-0.05447365736762406 +220191,1100.9550000124261,-0.05447358116867879 +220192,1100.9600000124262,-0.05447350496590433 +220193,1100.9650000124263,-0.054473428759300176 +220194,1100.9700000124265,-0.05447335254886584 +220195,1100.9750000124266,-0.0544732763346008 +220196,1100.9800000124267,-0.05447320011650459 +220197,1100.9850000124268,-0.05447312389457669 +220198,1100.990000012427,-0.054473047668816624 +220199,1100.995000012427,-0.05447297143922387 +220200,1101.000000012427,-0.054472895205797955 +220201,1101.0050000124272,-0.05447281896853837 +220202,1101.0100000124273,-0.05447274272744461 +220203,1101.0150000124274,-0.05447266648251619 +220204,1101.0200000124275,-0.054472590233752616 +220205,1101.0250000124277,-0.05447251398115337 +220206,1101.0300000124278,-0.05447243772471798 +220207,1101.0350000124279,-0.05447236146444592 +220208,1101.040000012428,-0.054472285200336715 +220209,1101.045000012428,-0.05447220893238986 +220210,1101.0500000124282,-0.054472132660604855 +220211,1101.0550000124283,-0.054472056384981205 +220212,1101.0600000124284,-0.054471980105518396 +220213,1101.0650000124285,-0.05447190382221595 +220214,1101.0700000124286,-0.05447182753507335 +220215,1101.0750000124287,-0.0544717512440901 +220216,1101.0800000124289,-0.05447167494926572 +220217,1101.085000012429,-0.05447159865059969 +220218,1101.090000012429,-0.054471522348091515 +220219,1101.0950000124292,-0.054471446041740694 +220220,1101.1000000124293,-0.05447136973154673 +220221,1101.1050000124294,-0.054471293417509115 +220222,1101.1100000124295,-0.05447121709962737 +220223,1101.1150000124296,-0.054471140777900974 +220224,1101.1200000124297,-0.05447106445232943 +220225,1101.1250000124298,-0.05447098812291225 +220226,1101.13000001243,-0.054470911789648926 +220227,1101.13500001243,-0.05447083545253895 +220228,1101.1400000124302,-0.05447075911158183 +220229,1101.1450000124303,-0.05447068276677706 +220230,1101.1500000124304,-0.05447060641812414 +220231,1101.1550000124305,-0.05447053006562256 +220232,1101.1600000124306,-0.054470453709271824 +220233,1101.1650000124307,-0.05447037734907144 +220234,1101.1700000124308,-0.0544703009850209 +220235,1101.175000012431,-0.054470224617119714 +220236,1101.180000012431,-0.054470148245367354 +220237,1101.1850000124311,-0.05447007186976333 +220238,1101.1900000124313,-0.054469995490307156 +220239,1101.1950000124314,-0.054469919106998305 +220240,1101.2000000124315,-0.05446984271983628 +220241,1101.2050000124316,-0.054469766328820585 +220242,1101.2100000124317,-0.05446968993395072 +220243,1101.2150000124318,-0.054469613535226176 +220244,1101.220000012432,-0.054469537132646455 +220245,1101.225000012432,-0.05446946072621104 +220246,1101.2300000124321,-0.054469384315919446 +220247,1101.2350000124322,-0.054469307901771145 +220248,1101.2400000124323,-0.05446923148376565 +220249,1101.2450000124325,-0.05446915506190247 +220250,1101.2500000124326,-0.054469078636181084 +220251,1101.2550000124327,-0.054469002206600975 +220252,1101.2600000124328,-0.054468925773161675 +220253,1101.265000012433,-0.05446884933586264 +220254,1101.270000012433,-0.05446877289470339 +220255,1101.275000012433,-0.05446869644968342 +220256,1101.2800000124332,-0.05446862000080222 +220257,1101.2850000124333,-0.05446854354805927 +220258,1101.2900000124334,-0.0544684670914541 +220259,1101.2950000124335,-0.05446839063098618 +220260,1101.3000000124337,-0.054468314166655006 +220261,1101.3050000124338,-0.05446823769846007 +220262,1101.3100000124339,-0.05446816122640088 +220263,1101.315000012434,-0.05446808475047692 +220264,1101.320000012434,-0.05446800827068769 +220265,1101.3250000124342,-0.05446793178703267 +220266,1101.3300000124343,-0.05446785529951137 +220267,1101.3350000124344,-0.054467778808123285 +220268,1101.3400000124345,-0.0544677023128679 +220269,1101.3450000124346,-0.0544676258137447 +220270,1101.3500000124347,-0.0544675493107532 +220271,1101.3550000124349,-0.05446747280389288 +220272,1101.360000012435,-0.05446739629316322 +220273,1101.365000012435,-0.054467319778563734 +220274,1101.3700000124352,-0.05446724326009391 +220275,1101.3750000124353,-0.05446716673775323 +220276,1101.3800000124354,-0.054467090211541204 +220277,1101.3850000124355,-0.054467013681457316 +220278,1101.3900000124356,-0.05446693714750106 +220279,1101.3950000124357,-0.054466860609671916 +220280,1101.4000000124358,-0.054466784067969384 +220281,1101.405000012436,-0.054466707522392965 +220282,1101.410000012436,-0.054466630972942146 +220283,1101.4150000124362,-0.054466554419616404 +220284,1101.4200000124363,-0.05446647786241525 +220285,1101.4250000124364,-0.05446640130133815 +220286,1101.4300000124365,-0.05446632473638462 +220287,1101.4350000124366,-0.05446624816755416 +220288,1101.4400000124367,-0.05446617159484623 +220289,1101.4450000124368,-0.05446609501826034 +220290,1101.450000012437,-0.05446601843779597 +220291,1101.455000012437,-0.054465941853452604 +220292,1101.4600000124371,-0.05446586526522975 +220293,1101.4650000124373,-0.054465788673126896 +220294,1101.4700000124374,-0.05446571207714352 +220295,1101.4750000124375,-0.054465635477279124 +220296,1101.4800000124376,-0.0544655588735332 +220297,1101.4850000124377,-0.054465482265905224 +220298,1101.4900000124378,-0.054465405654394686 +220299,1101.495000012438,-0.054465329039001094 +220300,1101.500000012438,-0.054465252419723914 +220301,1101.5050000124381,-0.05446517579656265 +220302,1101.5100000124382,-0.05446509916951678 +220303,1101.5150000124383,-0.0544650225385858 +220304,1101.5200000124385,-0.05446494590376919 +220305,1101.5250000124386,-0.054464869265066454 +220306,1101.5300000124387,-0.054464792622477075 +220307,1101.5350000124388,-0.054464715976000534 +220308,1101.540000012439,-0.054464639325636326 +220309,1101.545000012439,-0.05446456267138393 +220310,1101.550000012439,-0.05446448601324285 +220311,1101.5550000124392,-0.05446440935121255 +220312,1101.5600000124393,-0.054464332685292535 +220313,1101.5650000124394,-0.05446425601548229 +220314,1101.5700000124396,-0.054464179341781306 +220315,1101.5750000124397,-0.05446410266418906 +220316,1101.5800000124398,-0.05446402598270504 +220317,1101.5850000124399,-0.05446394929732874 +220318,1101.59000001244,-0.054463872608059634 +220319,1101.59500001244,-0.05446379591489722 +220320,1101.6000000124402,-0.054463719217840975 +220321,1101.6050000124403,-0.054463642516890405 +220322,1101.6100000124404,-0.05446356581204498 +220323,1101.6150000124405,-0.05446348910330419 +220324,1101.6200000124406,-0.054463412390667515 +220325,1101.6250000124408,-0.054463335674134444 +220326,1101.6300000124409,-0.054463258953704456 +220327,1101.635000012441,-0.05446318222937706 +220328,1101.640000012441,-0.0544631055011517 +220329,1101.6450000124412,-0.0544630287690279 +220330,1101.6500000124413,-0.05446295203300514 +220331,1101.6550000124414,-0.05446287529308289 +220332,1101.6600000124415,-0.054462798549260644 +220333,1101.6650000124416,-0.05446272180153787 +220334,1101.6700000124417,-0.05446264504991408 +220335,1101.6750000124418,-0.05446256829438873 +220336,1101.680000012442,-0.05446249153496132 +220337,1101.685000012442,-0.05446241477163133 +220338,1101.6900000124422,-0.05446233800439825 +220339,1101.6950000124423,-0.05446226123326156 +220340,1101.7000000124424,-0.054462184458220736 +220341,1101.7050000124425,-0.054462107679275264 +220342,1101.7100000124426,-0.05446203089642464 +220343,1101.7150000124427,-0.05446195410966833 +220344,1101.7200000124428,-0.05446187731900582 +220345,1101.725000012443,-0.05446180052443661 +220346,1101.730000012443,-0.05446172372596017 +220347,1101.7350000124432,-0.05446164692357598 +220348,1101.7400000124433,-0.05446157011728353 +220349,1101.7450000124434,-0.0544614933070823 +220350,1101.7500000124435,-0.054461416492971766 +220351,1101.7550000124436,-0.05446133967495142 +220352,1101.7600000124437,-0.05446126285302073 +220353,1101.7650000124438,-0.054461186027179184 +220354,1101.770000012444,-0.05446110919742627 +220355,1101.775000012444,-0.054461032363761465 +220356,1101.7800000124441,-0.05446095552618424 +220357,1101.7850000124442,-0.0544608786846941 +220358,1101.7900000124444,-0.054460801839290494 +220359,1101.7950000124445,-0.05446072498997293 +220360,1101.8000000124446,-0.05446064813674089 +220361,1101.8050000124447,-0.05446057127959382 +220362,1101.8100000124448,-0.05446049441853124 +220363,1101.815000012445,-0.05446041755355262 +220364,1101.820000012445,-0.054460340684657424 +220365,1101.8250000124451,-0.05446026381184514 +220366,1101.8300000124452,-0.05446018693511525 +220367,1101.8350000124453,-0.054460110054467235 +220368,1101.8400000124454,-0.054460033169900585 +220369,1101.8450000124456,-0.05445995628141476 +220370,1101.8500000124457,-0.054459879389009244 +220371,1101.8550000124458,-0.05445980249268352 +220372,1101.8600000124459,-0.054459725592437065 +220373,1101.865000012446,-0.05445964868826937 +220374,1101.870000012446,-0.0544595717801799 +220375,1101.8750000124462,-0.05445949486816814 +220376,1101.8800000124463,-0.05445941795223355 +220377,1101.8850000124464,-0.05445934103237563 +220378,1101.8900000124465,-0.054459264108593856 +220379,1101.8950000124466,-0.0544591871808877 +220380,1101.9000000124468,-0.05445911024925664 +220381,1101.9050000124469,-0.05445903331370016 +220382,1101.910000012447,-0.054458956374217736 +220383,1101.915000012447,-0.054458879430808835 +220384,1101.9200000124472,-0.054458802483472936 +220385,1101.9250000124473,-0.054458725532209526 +220386,1101.9300000124474,-0.054458648577018084 +220387,1101.9350000124475,-0.05445857161789808 +220388,1101.9400000124476,-0.05445849465484898 +220389,1101.9450000124477,-0.054458417687870284 +220390,1101.9500000124478,-0.05445834071696144 +220391,1101.955000012448,-0.05445826374212196 +220392,1101.960000012448,-0.05445818676335129 +220393,1101.9650000124482,-0.054458109780648925 +220394,1101.9700000124483,-0.05445803279401433 +220395,1101.9750000124484,-0.05445795580344698 +220396,1101.9800000124485,-0.05445787880894635 +220397,1101.9850000124486,-0.05445780181051193 +220398,1101.9900000124487,-0.05445772480814317 +220399,1101.9950000124488,-0.05445764780183957 +220400,1102.000000012449,-0.05445757079160059 +220401,1102.005000012449,-0.05445749377742571 +220402,1102.0100000124492,-0.0544574167593144 +220403,1102.0150000124493,-0.05445733973726614 +220404,1102.0200000124494,-0.05445726271128041 +220405,1102.0250000124495,-0.05445718568135668 +220406,1102.0300000124496,-0.05445710864749441 +220407,1102.0350000124497,-0.05445703160969309 +220408,1102.0400000124498,-0.054456954567952194 +220409,1102.04500001245,-0.054456877522271185 +220410,1102.05000001245,-0.05445680047264955 +220411,1102.0550000124501,-0.05445672341908674 +220412,1102.0600000124502,-0.05445664636158226 +220413,1102.0650000124504,-0.05445656930013556 +220414,1102.0700000124505,-0.05445649223474612 +220415,1102.0750000124506,-0.05445641516541342 +220416,1102.0800000124507,-0.054456338092136916 +220417,1102.0850000124508,-0.054456261014916095 +220418,1102.090000012451,-0.05445618393375042 +220419,1102.095000012451,-0.054456106848639364 +220420,1102.1000000124511,-0.05445602975958241 +220421,1102.1050000124512,-0.05445595266657901 +220422,1102.1100000124513,-0.05445587556962866 +220423,1102.1150000124514,-0.05445579846873082 +220424,1102.1200000124516,-0.05445572136388496 +220425,1102.1250000124517,-0.05445564425509055 +220426,1102.1300000124518,-0.05445556714234707 +220427,1102.1350000124519,-0.054455490025653974 +220428,1102.140000012452,-0.05445541290501075 +220429,1102.145000012452,-0.054455335780416864 +220430,1102.1500000124522,-0.054455258651871785 +220431,1102.1550000124523,-0.05445518151937499 +220432,1102.1600000124524,-0.05445510438292594 +220433,1102.1650000124525,-0.054455027242524115 +220434,1102.1700000124526,-0.05445495009816897 +220435,1102.1750000124528,-0.05445487294985998 +220436,1102.1800000124529,-0.05445479579759662 +220437,1102.185000012453,-0.054454718641378366 +220438,1102.190000012453,-0.05445464148120468 +220439,1102.1950000124532,-0.05445456431707503 +220440,1102.2000000124533,-0.054454487148988893 +220441,1102.2050000124534,-0.05445440997694573 +220442,1102.2100000124535,-0.054454332800945 +220443,1102.2150000124536,-0.05445425562098619 +220444,1102.2200000124537,-0.05445417843706876 +220445,1102.2250000124538,-0.05445410124919219 +220446,1102.230000012454,-0.054454024057355936 +220447,1102.235000012454,-0.05445394686155947 +220448,1102.2400000124542,-0.05445386966180226 +220449,1102.2450000124543,-0.054453792458083766 +220450,1102.2500000124544,-0.05445371525040346 +220451,1102.2550000124545,-0.05445363803876081 +220452,1102.2600000124546,-0.0544535608231553 +220453,1102.2650000124547,-0.05445348360358638 +220454,1102.2700000124548,-0.054453406380053526 +220455,1102.275000012455,-0.05445332915255619 +220456,1102.280000012455,-0.054453251921093855 +220457,1102.2850000124552,-0.054453174685665975 +220458,1102.2900000124553,-0.054453097446272025 +220459,1102.2950000124554,-0.05445302020291148 +220460,1102.3000000124555,-0.05445294295558378 +220461,1102.3050000124556,-0.054452865704288415 +220462,1102.3100000124557,-0.05445278844902484 +220463,1102.3150000124558,-0.05445271118979252 +220464,1102.320000012456,-0.054452633926590936 +220465,1102.325000012456,-0.05445255665941953 +220466,1102.3300000124561,-0.05445247938827778 +220467,1102.3350000124562,-0.05445240211316516 +220468,1102.3400000124564,-0.05445232483408113 +220469,1102.3450000124565,-0.05445224755102514 +220470,1102.3500000124566,-0.054452170263996666 +220471,1102.3550000124567,-0.05445209297299518 +220472,1102.3600000124568,-0.05445201567802013 +220473,1102.365000012457,-0.054451938379070995 +220474,1102.370000012457,-0.05445186107614724 +220475,1102.3750000124571,-0.05445178376924832 +220476,1102.3800000124572,-0.05445170645837371 +220477,1102.3850000124573,-0.054451629143522855 +220478,1102.3900000124574,-0.05445155182469523 +220479,1102.3950000124576,-0.05445147450189031 +220480,1102.4000000124577,-0.05445139717510753 +220481,1102.4050000124578,-0.054451319844346376 +220482,1102.4100000124579,-0.054451242509606305 +220483,1102.415000012458,-0.05445116517088678 +220484,1102.420000012458,-0.05445108782818727 +220485,1102.4250000124582,-0.054451010481507224 +220486,1102.4300000124583,-0.05445093313084611 +220487,1102.4350000124584,-0.0544508557762034 +220488,1102.4400000124585,-0.05445077841757853 +220489,1102.4450000124586,-0.05445070105497099 +220490,1102.4500000124588,-0.05445062368838023 +220491,1102.4550000124589,-0.054450546317805736 +220492,1102.460000012459,-0.054450468943246934 +220493,1102.465000012459,-0.0544503915647033 +220494,1102.4700000124592,-0.05445031418217428 +220495,1102.4750000124593,-0.054450236795659364 +220496,1102.4800000124594,-0.05445015940515799 +220497,1102.4850000124595,-0.054450082010669636 +220498,1102.4900000124596,-0.05445000461219375 +220499,1102.4950000124597,-0.05444992720972981 +220500,1102.5000000124599,-0.054449849803277245 +220501,1102.50500001246,-0.05444977239283554 +220502,1102.51000001246,-0.054449694978404156 +220503,1102.5150000124602,-0.054449617559982545 +220504,1102.5200000124603,-0.05444954013757017 +220505,1102.5250000124604,-0.05444946271116648 +220506,1102.5300000124605,-0.054449385280770944 +220507,1102.5350000124606,-0.05444930784638302 +220508,1102.5400000124607,-0.05444923040800218 +220509,1102.5450000124608,-0.05444915296562786 +220510,1102.550000012461,-0.05444907551925954 +220511,1102.555000012461,-0.05444899806889666 +220512,1102.5600000124612,-0.05444892061453868 +220513,1102.5650000124613,-0.054448843156185076 +220514,1102.5700000124614,-0.0544487656938353 +220515,1102.5750000124615,-0.0544486882274888 +220516,1102.5800000124616,-0.05444861075714505 +220517,1102.5850000124617,-0.05444853328280348 +220518,1102.5900000124618,-0.05444845580446358 +220519,1102.595000012462,-0.054448378322124784 +220520,1102.600000012462,-0.05444830083578657 +220521,1102.6050000124621,-0.05444822334544838 +220522,1102.6100000124623,-0.05444814585110967 +220523,1102.6150000124624,-0.05444806835276991 +220524,1102.6200000124625,-0.054447990850428556 +220525,1102.6250000124626,-0.05444791334408505 +220526,1102.6300000124627,-0.05444783583373886 +220527,1102.6350000124628,-0.05444775831938944 +220528,1102.640000012463,-0.05444768080103624 +220529,1102.645000012463,-0.05444760327867873 +220530,1102.6500000124631,-0.05444752575231635 +220531,1102.6550000124632,-0.05444744822194858 +220532,1102.6600000124633,-0.054447370687574846 +220533,1102.6650000124635,-0.05444729314919462 +220534,1102.6700000124636,-0.05444721560680736 +220535,1102.6750000124637,-0.054447138060412514 +220536,1102.6800000124638,-0.05444706051000954 +220537,1102.685000012464,-0.05444698295559788 +220538,1102.690000012464,-0.054446905397177 +220539,1102.695000012464,-0.05444682783474637 +220540,1102.7000000124642,-0.05444675026830542 +220541,1102.7050000124643,-0.05444667269785362 +220542,1102.7100000124644,-0.05444659512339041 +220543,1102.7150000124645,-0.05444651754491525 +220544,1102.7200000124647,-0.0544464399624276 +220545,1102.7250000124648,-0.05444636237592693 +220546,1102.7300000124649,-0.054446284785412656 +220547,1102.735000012465,-0.054446207190884256 +220548,1102.740000012465,-0.054446129592341165 +220549,1102.7450000124652,-0.05444605198978286 +220550,1102.7500000124653,-0.05444597438320878 +220551,1102.7550000124654,-0.05444589677261837 +220552,1102.7600000124655,-0.05444581915801109 +220553,1102.7650000124656,-0.0544457415393864 +220554,1102.7700000124657,-0.054445663916743756 +220555,1102.7750000124659,-0.05444558629008259 +220556,1102.780000012466,-0.05444550865940236 +220557,1102.785000012466,-0.05444543102470254 +220558,1102.7900000124662,-0.05444535338598256 +220559,1102.7950000124663,-0.05444527574324188 +220560,1102.8000000124664,-0.05444519809647994 +220561,1102.8050000124665,-0.05444512044569621 +220562,1102.8100000124666,-0.054445042790890116 +220563,1102.8150000124667,-0.05444496513206113 +220564,1102.8200000124668,-0.0544448874692087 +220565,1102.825000012467,-0.054444809802332274 +220566,1102.830000012467,-0.05444473213143129 +220567,1102.8350000124672,-0.05444465445650522 +220568,1102.8400000124673,-0.05444457677755351 +220569,1102.8450000124674,-0.054444499094575605 +220570,1102.8500000124675,-0.054444421407570956 +220571,1102.8550000124676,-0.05444434371653901 +220572,1102.8600000124677,-0.05444426602147921 +220573,1102.8650000124678,-0.054444188322391014 +220574,1102.870000012468,-0.05444411061927387 +220575,1102.875000012468,-0.054444032912127245 +220576,1102.8800000124681,-0.05444395520095056 +220577,1102.8850000124683,-0.054443877485743274 +220578,1102.8900000124684,-0.05444379976650484 +220579,1102.8950000124685,-0.0544437220432347 +220580,1102.9000000124686,-0.05444364431593232 +220581,1102.9050000124687,-0.05444356658459712 +220582,1102.9100000124688,-0.054443488849228575 +220583,1102.915000012469,-0.05444341110982612 +220584,1102.920000012469,-0.0544433333663892 +220585,1102.9250000124691,-0.05444325561891726 +220586,1102.9300000124692,-0.05444317786740977 +220587,1102.9350000124693,-0.054443100111866156 +220588,1102.9400000124695,-0.05444302235228587 +220589,1102.9450000124696,-0.05444294458866836 +220590,1102.9500000124697,-0.05444286682101307 +220591,1102.9550000124698,-0.05444278904931946 +220592,1102.96000001247,-0.05444271127358695 +220593,1102.96500001247,-0.05444263349381501 +220594,1102.97000001247,-0.05444255571000308 +220595,1102.9750000124702,-0.0544424779221506 +220596,1102.9800000124703,-0.05444240013025703 +220597,1102.9850000124704,-0.0544423223343218 +220598,1102.9900000124705,-0.05444224453434437 +220599,1102.9950000124707,-0.054442166730324176 +220600,1103.0000000124708,-0.05444208892226067 +220601,1103.0050000124709,-0.05444201111015329 +220602,1103.010000012471,-0.05444193329400149 +220603,1103.015000012471,-0.05444185547380471 +220604,1103.0200000124712,-0.0544417776495624 +220605,1103.0250000124713,-0.05444169982127399 +220606,1103.0300000124714,-0.05444162198893893 +220607,1103.0350000124715,-0.05444154415255668 +220608,1103.0400000124716,-0.054441466312126666 +220609,1103.0450000124717,-0.05444138846764834 +220610,1103.0500000124719,-0.05444131061912114 +220611,1103.055000012472,-0.054441232766544514 +220612,1103.060000012472,-0.05444115490991791 +220613,1103.0650000124722,-0.054441077049240776 +220614,1103.0700000124723,-0.054440999184512534 +220615,1103.0750000124724,-0.05444092131573264 +220616,1103.0800000124725,-0.05444084344290053 +220617,1103.0850000124726,-0.05444076556601566 +220618,1103.0900000124727,-0.05444068768507746 +220619,1103.0950000124728,-0.0544406098000854 +220620,1103.100000012473,-0.05444053191103889 +220621,1103.105000012473,-0.05444045401793739 +220622,1103.1100000124732,-0.054440376120780315 +220623,1103.1150000124733,-0.05444029821956714 +220624,1103.1200000124734,-0.054440220314297294 +220625,1103.1250000124735,-0.05444014240497022 +220626,1103.1300000124736,-0.054440064491585345 +220627,1103.1350000124737,-0.05443998657414214 +220628,1103.1400000124738,-0.05443990865264003 +220629,1103.145000012474,-0.05443983072707845 +220630,1103.150000012474,-0.05443975279745685 +220631,1103.1550000124741,-0.054439674863774656 +220632,1103.1600000124743,-0.05443959692603133 +220633,1103.1650000124744,-0.0544395189842263 +220634,1103.1700000124745,-0.05443944103835901 +220635,1103.1750000124746,-0.054439363088428894 +220636,1103.1800000124747,-0.0544392851344354 +220637,1103.1850000124748,-0.054439207176377964 +220638,1103.190000012475,-0.054439129214256025 +220639,1103.195000012475,-0.05443905124806902 +220640,1103.2000000124751,-0.05443897327781639 +220641,1103.2050000124752,-0.054438895303497575 +220642,1103.2100000124753,-0.054438817325112014 +220643,1103.2150000124755,-0.05443873934265915 +220644,1103.2200000124756,-0.054438661356138424 +220645,1103.2250000124757,-0.05443858336554926 +220646,1103.2300000124758,-0.05443850537089111 +220647,1103.235000012476,-0.0544384273721634 +220648,1103.240000012476,-0.054438349369365584 +220649,1103.245000012476,-0.05443827136249709 +220650,1103.2500000124762,-0.05443819335155736 +220651,1103.2550000124763,-0.05443811533654582 +220652,1103.2600000124764,-0.05443803731746192 +220653,1103.2650000124765,-0.0544379592943051 +220654,1103.2700000124767,-0.054437881267074786 +220655,1103.2750000124768,-0.05443780323577042 +220656,1103.2800000124769,-0.05443772520039144 +220657,1103.285000012477,-0.054437647160937276 +220658,1103.290000012477,-0.05443756911740738 +220659,1103.2950000124772,-0.05443749106980117 +220660,1103.3000000124773,-0.054437413018118094 +220661,1103.3050000124774,-0.054437334962357586 +220662,1103.3100000124775,-0.05443725690251907 +220663,1103.3150000124776,-0.054437178838601996 +220664,1103.3200000124777,-0.0544371007706058 +220665,1103.3250000124779,-0.0544370226985299 +220666,1103.330000012478,-0.05443694462237376 +220667,1103.335000012478,-0.0544368665421368 +220668,1103.3400000124782,-0.054436788457818436 +220669,1103.3450000124783,-0.05443671036941814 +220670,1103.3500000124784,-0.054436632276935314 +220671,1103.3550000124785,-0.05443655418036941 +220672,1103.3600000124786,-0.05443647607971987 +220673,1103.3650000124787,-0.05443639797498611 +220674,1103.3700000124788,-0.054436319866167565 +220675,1103.375000012479,-0.05443624175326368 +220676,1103.380000012479,-0.05443616363627388 +220677,1103.3850000124792,-0.0544360855151976 +220678,1103.3900000124793,-0.05443600739003428 +220679,1103.3950000124794,-0.05443592926078334 +220680,1103.4000000124795,-0.05443585112744422 +220681,1103.4050000124796,-0.054435772990016375 +220682,1103.4100000124797,-0.05443569484849921 +220683,1103.4150000124798,-0.05443561670289216 +220684,1103.42000001248,-0.05443553855319466 +220685,1103.42500001248,-0.05443546039940615 +220686,1103.4300000124801,-0.05443538224152606 +220687,1103.4350000124803,-0.05443530407955382 +220688,1103.4400000124804,-0.05443522591348885 +220689,1103.4450000124805,-0.0544351477433306 +220690,1103.4500000124806,-0.054435069569078495 +220691,1103.4550000124807,-0.05443499139073197 +220692,1103.4600000124808,-0.05443491320829044 +220693,1103.465000012481,-0.05443483502175336 +220694,1103.470000012481,-0.05443475683112014 +220695,1103.4750000124811,-0.05443467863639022 +220696,1103.4800000124812,-0.054434600437563034 +220697,1103.4850000124814,-0.05443452223463801 +220698,1103.4900000124815,-0.054434444027614576 +220699,1103.4950000124816,-0.054434365816492164 +220700,1103.5000000124817,-0.0544342876012702 +220701,1103.5050000124818,-0.05443420938194811 +220702,1103.510000012482,-0.054434131158525335 +220703,1103.515000012482,-0.054434052931001294 +220704,1103.5200000124821,-0.05443397469937543 +220705,1103.5250000124822,-0.05443389646364716 +220706,1103.5300000124823,-0.05443381822381592 +220707,1103.5350000124824,-0.05443373997988114 +220708,1103.5400000124826,-0.054433661731842234 +220709,1103.5450000124827,-0.054433583479698656 +220710,1103.5500000124828,-0.054433505223449814 +220711,1103.5550000124829,-0.054433426963095145 +220712,1103.560000012483,-0.05443334869863407 +220713,1103.565000012483,-0.054433270430066016 +220714,1103.5700000124832,-0.054433192157390425 +220715,1103.5750000124833,-0.05443311388060671 +220716,1103.5800000124834,-0.054433035599714304 +220717,1103.5850000124835,-0.05443295731471263 +220718,1103.5900000124836,-0.05443287902560111 +220719,1103.5950000124838,-0.054432800732379195 +220720,1103.6000000124839,-0.05443272243504629 +220721,1103.605000012484,-0.054432644133601826 +220722,1103.610000012484,-0.054432565828045246 +220723,1103.6150000124842,-0.05443248751837595 +220724,1103.6200000124843,-0.054432409204593385 +220725,1103.6250000124844,-0.05443233088669696 +220726,1103.6300000124845,-0.05443225256468611 +220727,1103.6350000124846,-0.05443217423856027 +220728,1103.6400000124847,-0.054432095908318844 +220729,1103.6450000124848,-0.054432017573961274 +220730,1103.650000012485,-0.054431939235487 +220731,1103.655000012485,-0.0544318608928954 +220732,1103.6600000124852,-0.05443178254618594 +220733,1103.6650000124853,-0.05443170419535804 +220734,1103.6700000124854,-0.0544316258404111 +220735,1103.6750000124855,-0.054431547481344565 +220736,1103.6800000124856,-0.05443146911815785 +220737,1103.6850000124857,-0.054431390750850385 +220738,1103.6900000124858,-0.0544313123794216 +220739,1103.695000012486,-0.0544312340038709 +220740,1103.700000012486,-0.05443115562419773 +220741,1103.7050000124862,-0.05443107724040149 +220742,1103.7100000124863,-0.054430998852481635 +220743,1103.7150000124864,-0.054430920460437564 +220744,1103.7200000124865,-0.0544308420642687 +220745,1103.7250000124866,-0.05443076366397447 +220746,1103.7300000124867,-0.05443068525955431 +220747,1103.7350000124868,-0.054430606851007625 +220748,1103.740000012487,-0.05443052843833384 +220749,1103.745000012487,-0.05443045002153238 +220750,1103.7500000124871,-0.05443037160060267 +220751,1103.7550000124872,-0.054430293175544125 +220752,1103.7600000124874,-0.05443021474635617 +220753,1103.7650000124875,-0.05443013631303823 +220754,1103.7700000124876,-0.05443005787558972 +220755,1103.7750000124877,-0.05442997943401008 +220756,1103.7800000124878,-0.05442990098829871 +220757,1103.785000012488,-0.05442982253845504 +220758,1103.790000012488,-0.05442974408447849 +220759,1103.7950000124881,-0.05442966562636846 +220760,1103.8000000124882,-0.0544295871641244 +220761,1103.8050000124883,-0.05442950869774572 +220762,1103.8100000124884,-0.05442943022723183 +220763,1103.8150000124886,-0.05442935175258218 +220764,1103.8200000124887,-0.05442927327379616 +220765,1103.8250000124888,-0.0544291947908732 +220766,1103.8300000124889,-0.05442911630381272 +220767,1103.835000012489,-0.05442903781261414 +220768,1103.840000012489,-0.05442895931727688 +220769,1103.8450000124892,-0.05442888081780035 +220770,1103.8500000124893,-0.05442880231418397 +220771,1103.8550000124894,-0.05442872380642716 +220772,1103.8600000124895,-0.05442864529452935 +220773,1103.8650000124896,-0.05442856677848994 +220774,1103.8700000124898,-0.054428488258308365 +220775,1103.8750000124899,-0.054428409733984044 +220776,1103.88000001249,-0.05442833120551637 +220777,1103.88500001249,-0.05442825267290479 +220778,1103.8900000124902,-0.05442817413614871 +220779,1103.8950000124903,-0.054428095595247555 +220780,1103.9000000124904,-0.05442801705020072 +220781,1103.9050000124905,-0.05442793850100765 +220782,1103.9100000124906,-0.054427859947667745 +220783,1103.9150000124907,-0.05442778139018042 +220784,1103.9200000124908,-0.054427702828545095 +220785,1103.925000012491,-0.05442762426276119 +220786,1103.930000012491,-0.05442754569282812 +220787,1103.9350000124912,-0.0544274671187453 +220788,1103.9400000124913,-0.05442738854051214 +220789,1103.9450000124914,-0.05442730995812806 +220790,1103.9500000124915,-0.054427231371592485 +220791,1103.9550000124916,-0.05442715278090482 +220792,1103.9600000124917,-0.05442707418606449 +220793,1103.9650000124918,-0.054426995587070905 +220794,1103.970000012492,-0.054426916983923476 +220795,1103.975000012492,-0.05442683837662162 +220796,1103.9800000124922,-0.05442675976516475 +220797,1103.9850000124923,-0.05442668114955228 +220798,1103.9900000124924,-0.05442660252978364 +220799,1103.9950000124925,-0.05442652390585822 +220800,1104.0000000124926,-0.054426445277775445 +220801,1104.0050000124927,-0.05442636664553473 +220802,1104.0100000124928,-0.054426288009135494 +220803,1104.015000012493,-0.05442620936857714 +220804,1104.020000012493,-0.05442613072385907 +220805,1104.0250000124931,-0.05442605207498073 +220806,1104.0300000124932,-0.054425973421941505 +220807,1104.0350000124934,-0.054425894764740836 +220808,1104.0400000124935,-0.0544258161033781 +220809,1104.0450000124936,-0.054425737437852735 +220810,1104.0500000124937,-0.054425658768164145 +220811,1104.0550000124938,-0.05442558009431174 +220812,1104.060000012494,-0.05442550141629494 +220813,1104.065000012494,-0.05442542273411314 +220814,1104.0700000124941,-0.05442534404776578 +220815,1104.0750000124942,-0.05442526535725224 +220816,1104.0800000124943,-0.05442518666257196 +220817,1104.0850000124944,-0.05442510796372433 +220818,1104.0900000124946,-0.05442502926070877 +220819,1104.0950000124947,-0.0544249505535247 +220820,1104.1000000124948,-0.05442487184217151 +220821,1104.1050000124949,-0.05442479312664862 +220822,1104.110000012495,-0.05442471440695546 +220823,1104.115000012495,-0.05442463568309141 +220824,1104.1200000124952,-0.054424556955055894 +220825,1104.1250000124953,-0.05442447822284832 +220826,1104.1300000124954,-0.05442439948646811 +220827,1104.1350000124955,-0.05442432074591464 +220828,1104.1400000124956,-0.05442424200118735 +220829,1104.1450000124958,-0.05442416325228564 +220830,1104.1500000124959,-0.054424084499208915 +220831,1104.155000012496,-0.05442400574195659 +220832,1104.160000012496,-0.05442392698052808 +220833,1104.1650000124962,-0.05442384821492277 +220834,1104.1700000124963,-0.054423769445140095 +220835,1104.1750000124964,-0.05442369067117944 +220836,1104.1800000124965,-0.05442361189304025 +220837,1104.1850000124966,-0.05442353311072189 +220838,1104.1900000124967,-0.05442345432422378 +220839,1104.1950000124968,-0.05442337553354536 +220840,1104.200000012497,-0.05442329673868599 +220841,1104.205000012497,-0.0544232179396451 +220842,1104.2100000124972,-0.0544231391364221 +220843,1104.2150000124973,-0.05442306032901638 +220844,1104.2200000124974,-0.054422981517427374 +220845,1104.2250000124975,-0.054422902701654466 +220846,1104.2300000124976,-0.05442282388169707 +220847,1104.2350000124977,-0.05442274505755461 +220848,1104.2400000124978,-0.054422666229226466 +220849,1104.245000012498,-0.05442258739671205 +220850,1104.250000012498,-0.05442250856001077 +220851,1104.2550000124982,-0.054422429719122034 +220852,1104.2600000124983,-0.054422350874045254 +220853,1104.2650000124984,-0.05442227202477982 +220854,1104.2700000124985,-0.05442219317132515 +220855,1104.2750000124986,-0.05442211431368064 +220856,1104.2800000124987,-0.0544220354518457 +220857,1104.2850000124988,-0.05442195658581973 +220858,1104.290000012499,-0.05442187771560214 +220859,1104.295000012499,-0.05442179884119233 +220860,1104.3000000124991,-0.05442171996258971 +220861,1104.3050000124992,-0.05442164107979367 +220862,1104.3100000124994,-0.054421562192803634 +220863,1104.3150000124995,-0.05442148330161899 +220864,1104.3200000124996,-0.054421404406239146 +220865,1104.3250000124997,-0.05442132550666351 +220866,1104.3300000124998,-0.054421246602891486 +220867,1104.3350000125,-0.05442116769492247 +220868,1104.3400000125,-0.05442108878275587 +220869,1104.3450000125001,-0.05442100986639109 +220870,1104.3500000125002,-0.05442093094582752 +220871,1104.3550000125003,-0.05442085202106458 +220872,1104.3600000125004,-0.05442077309210166 +220873,1104.3650000125006,-0.05442069415893816 +220874,1104.3700000125007,-0.05442061522157349 +220875,1104.3750000125008,-0.054420536280007044 +220876,1104.380000012501,-0.054420457334238226 +220877,1104.385000012501,-0.054420378384266443 +220878,1104.390000012501,-0.05442029943009109 +220879,1104.3950000125012,-0.05442022047171158 +220880,1104.4000000125013,-0.054420141509127294 +220881,1104.4050000125014,-0.054420062542337645 +220882,1104.4100000125015,-0.05441998357134205 +220883,1104.4150000125017,-0.05441990459613987 +220884,1104.4200000125018,-0.05441982561673053 +220885,1104.4250000125019,-0.054419746633113435 +220886,1104.430000012502,-0.054419667645287974 +220887,1104.435000012502,-0.05441958865325355 +220888,1104.4400000125022,-0.05441950965700957 +220889,1104.4450000125023,-0.05441943065655542 +220890,1104.4500000125024,-0.0544193516518905 +220891,1104.4550000125025,-0.05441927264301421 +220892,1104.4600000125026,-0.054419193629925956 +220893,1104.4650000125027,-0.054419114612625136 +220894,1104.4700000125029,-0.054419035591111144 +220895,1104.475000012503,-0.05441895656538337 +220896,1104.480000012503,-0.054418877535441224 +220897,1104.4850000125032,-0.054418798501284116 +220898,1104.4900000125033,-0.05441871946291143 +220899,1104.4950000125034,-0.054418640420322545 +220900,1104.5000000125035,-0.054418561373516895 +220901,1104.5050000125036,-0.05441848232249386 +220902,1104.5100000125037,-0.05441840326725283 +220903,1104.5150000125038,-0.0544183242077932 +220904,1104.520000012504,-0.0544182451441144 +220905,1104.525000012504,-0.05441816607621579 +220906,1104.5300000125042,-0.05441808700409676 +220907,1104.5350000125043,-0.05441800792775675 +220908,1104.5400000125044,-0.05441792884719512 +220909,1104.5450000125045,-0.05441784976241126 +220910,1104.5500000125046,-0.05441777067340461 +220911,1104.5550000125047,-0.054417691580174524 +220912,1104.5600000125048,-0.054417612482720416 +220913,1104.565000012505,-0.05441753338104168 +220914,1104.570000012505,-0.0544174542751377 +220915,1104.5750000125051,-0.054417375165007886 +220916,1104.5800000125053,-0.05441729605065163 +220917,1104.5850000125054,-0.05441721693206833 +220918,1104.5900000125055,-0.05441713780925737 +220919,1104.5950000125056,-0.05441705868221814 +220920,1104.6000000125057,-0.05441697955095005 +220921,1104.6050000125058,-0.054416900415452475 +220922,1104.610000012506,-0.05441682127572483 +220923,1104.615000012506,-0.0544167421317665 +220924,1104.6200000125061,-0.05441666298357687 +220925,1104.6250000125062,-0.05441658383115535 +220926,1104.6300000125063,-0.05441650467450131 +220927,1104.6350000125065,-0.054416425513614176 +220928,1104.6400000125066,-0.05441634634849331 +220929,1104.6450000125067,-0.05441626717913812 +220930,1104.6500000125068,-0.054416188005548 +220931,1104.655000012507,-0.054416108827722326 +220932,1104.660000012507,-0.0544160296456605 +220933,1104.665000012507,-0.05441595045936192 +220934,1104.6700000125072,-0.054415871268825966 +220935,1104.6750000125073,-0.054415792074052054 +220936,1104.6800000125074,-0.054415712875039546 +220937,1104.6850000125075,-0.054415633671787846 +220938,1104.6900000125077,-0.054415554464296335 +220939,1104.6950000125078,-0.05441547525256442 +220940,1104.7000000125079,-0.05441539603659149 +220941,1104.705000012508,-0.05441531681637693 +220942,1104.710000012508,-0.054415237591920136 +220943,1104.7150000125082,-0.05441515836322049 +220944,1104.7200000125083,-0.05441507913027738 +220945,1104.7250000125084,-0.0544149998930902 +220946,1104.7300000125085,-0.05441492065165835 +220947,1104.7350000125086,-0.054414841405981206 +220948,1104.7400000125087,-0.05441476215605816 +220949,1104.7450000125089,-0.05441468290188861 +220950,1104.750000012509,-0.054414603643471934 +220951,1104.755000012509,-0.05441452438080752 +220952,1104.7600000125092,-0.054414445113894774 +220953,1104.7650000125093,-0.05441436584273306 +220954,1104.7700000125094,-0.0544142865673218 +220955,1104.7750000125095,-0.054414207287660346 +220956,1104.7800000125096,-0.054414128003748105 +220957,1104.7850000125097,-0.05441404871558446 +220958,1104.7900000125098,-0.0544139694231688 +220959,1104.79500001251,-0.054413890126500504 +220960,1104.80000001251,-0.05441381082557898 +220961,1104.8050000125102,-0.0544137315204036 +220962,1104.8100000125103,-0.054413652210973766 +220963,1104.8150000125104,-0.05441357289728885 +220964,1104.8200000125105,-0.05441349357934823 +220965,1104.8250000125106,-0.054413414257151314 +220966,1104.8300000125107,-0.05441333493069748 +220967,1104.8350000125108,-0.0544132555999861 +220968,1104.840000012511,-0.05441317626501659 +220969,1104.845000012511,-0.05441309692578831 +220970,1104.8500000125111,-0.05441301758230065 +220971,1104.8550000125113,-0.05441293823455301 +220972,1104.8600000125114,-0.05441285888254477 +220973,1104.8650000125115,-0.0544127795262753 +220974,1104.8700000125116,-0.054412700165744 +220975,1104.8750000125117,-0.05441262080095025 +220976,1104.8800000125118,-0.05441254143189343 +220977,1104.885000012512,-0.05441246205857294 +220978,1104.890000012512,-0.05441238268098814 +220979,1104.8950000125121,-0.054412303299138445 +220980,1104.9000000125122,-0.054412223913023215 +220981,1104.9050000125123,-0.05441214452264184 +220982,1104.9100000125125,-0.0544120651279937 +220983,1104.9150000125126,-0.05441198572907818 +220984,1104.9200000125127,-0.054411906325894675 +220985,1104.9250000125128,-0.05441182691844256 +220986,1104.930000012513,-0.05441174750672122 +220987,1104.935000012513,-0.05441166809073003 +220988,1104.940000012513,-0.05441158867046838 +220989,1104.9450000125132,-0.05441150924593565 +220990,1104.9500000125133,-0.05441142981713122 +220991,1104.9550000125134,-0.05441135038405447 +220992,1104.9600000125135,-0.0544112709467048 +220993,1104.9650000125137,-0.05441119150508158 +220994,1104.9700000125138,-0.054411112059184176 +220995,1104.9750000125139,-0.054411032609011985 +220996,1104.980000012514,-0.05441095315456438 +220997,1104.985000012514,-0.054410873695840765 +220998,1104.9900000125142,-0.0544107942328405 +220999,1104.9950000125143,-0.05441071476556297 +221000,1105.0000000125144,-0.054410635294007546 +221001,1105.0050000125145,-0.05441055581817362 +221002,1105.0100000125146,-0.05441047633806058 +221003,1105.0150000125147,-0.05441039685366779 +221004,1105.0200000125149,-0.05441031736499464 +221005,1105.025000012515,-0.054410237872040496 +221006,1105.030000012515,-0.05441015837480475 +221007,1105.0350000125152,-0.05441007887328678 +221008,1105.0400000125153,-0.054409999367485966 +221009,1105.0450000125154,-0.05440991985740168 +221010,1105.0500000125155,-0.0544098403430333 +221011,1105.0550000125156,-0.05440976082438022 +221012,1105.0600000125157,-0.0544096813014418 +221013,1105.0650000125158,-0.05440960177421742 +221014,1105.070000012516,-0.054409522242706475 +221015,1105.075000012516,-0.05440944270690834 +221016,1105.0800000125162,-0.05440936316682238 +221017,1105.0850000125163,-0.05440928362244797 +221018,1105.0900000125164,-0.05440920407378451 +221019,1105.0950000125165,-0.05440912452083135 +221020,1105.1000000125166,-0.05440904496358789 +221021,1105.1050000125167,-0.054408965402053484 +221022,1105.1100000125168,-0.05440888583622753 +221023,1105.115000012517,-0.05440880626610938 +221024,1105.120000012517,-0.05440872669169843 +221025,1105.1250000125171,-0.05440864711299406 +221026,1105.1300000125173,-0.054408567529995636 +221027,1105.1350000125174,-0.05440848794270254 +221028,1105.1400000125175,-0.054408408351114136 +221029,1105.1450000125176,-0.054408328755229815 +221030,1105.1500000125177,-0.05440824915504895 +221031,1105.1550000125178,-0.05440816955057091 +221032,1105.160000012518,-0.05440808994179506 +221033,1105.165000012518,-0.05440801032872078 +221034,1105.1700000125181,-0.05440793071134746 +221035,1105.1750000125182,-0.05440785108967447 +221036,1105.1800000125183,-0.05440777146370117 +221037,1105.1850000125185,-0.05440769183342694 +221038,1105.1900000125186,-0.05440761219885116 +221039,1105.1950000125187,-0.054407532559973194 +221040,1105.2000000125188,-0.05440745291679242 +221041,1105.205000012519,-0.054407373269308223 +221042,1105.210000012519,-0.05440729361751997 +221043,1105.215000012519,-0.05440721396142703 +221044,1105.2200000125192,-0.054407134301028774 +221045,1105.2250000125193,-0.05440705463632457 +221046,1105.2300000125194,-0.054406974967313816 +221047,1105.2350000125195,-0.05440689529399586 +221048,1105.2400000125197,-0.05440681561637007 +221049,1105.2450000125198,-0.05440673593443583 +221050,1105.2500000125199,-0.05440665624819252 +221051,1105.25500001252,-0.054406576557639495 +221052,1105.26000001252,-0.05440649686277614 +221053,1105.2650000125202,-0.05440641716360182 +221054,1105.2700000125203,-0.054406337460115896 +221055,1105.2750000125204,-0.05440625775231774 +221056,1105.2800000125205,-0.05440617804020674 +221057,1105.2850000125206,-0.05440609832378226 +221058,1105.2900000125207,-0.054406018603043664 +221059,1105.2950000125209,-0.05440593887799034 +221060,1105.300000012521,-0.05440585914862163 +221061,1105.305000012521,-0.05440577941493693 +221062,1105.3100000125212,-0.0544056996769356 +221063,1105.3150000125213,-0.054405619934617 +221064,1105.3200000125214,-0.05440554018798051 +221065,1105.3250000125215,-0.05440546043702548 +221066,1105.3300000125216,-0.05440538068175131 +221067,1105.3350000125217,-0.054405300922157354 +221068,1105.3400000125218,-0.054405221158242985 +221069,1105.345000012522,-0.05440514139000756 +221070,1105.350000012522,-0.054405061617450456 +221071,1105.3550000125222,-0.05440498184057104 +221072,1105.3600000125223,-0.05440490205936868 +221073,1105.3650000125224,-0.05440482227384274 +221074,1105.3700000125225,-0.054404742483992595 +221075,1105.3750000125226,-0.05440466268981761 +221076,1105.3800000125227,-0.05440458289131715 +221077,1105.3850000125228,-0.05440450308849059 +221078,1105.390000012523,-0.05440442328133727 +221079,1105.395000012523,-0.054404343469856585 +221080,1105.4000000125232,-0.054404263654047894 +221081,1105.4050000125233,-0.05440418383391057 +221082,1105.4100000125234,-0.054404104009443954 +221083,1105.4150000125235,-0.054404024180647444 +221084,1105.4200000125236,-0.05440394434752038 +221085,1105.4250000125237,-0.05440386451006215 +221086,1105.4300000125238,-0.05440378466827211 +221087,1105.435000012524,-0.05440370482214962 +221088,1105.440000012524,-0.05440362497169404 +221089,1105.4450000125241,-0.054403545116904754 +221090,1105.4500000125242,-0.05440346525778111 +221091,1105.4550000125244,-0.05440338539432248 +221092,1105.4600000125245,-0.05440330552652823 +221093,1105.4650000125246,-0.054403225654397716 +221094,1105.4700000125247,-0.054403145777930303 +221095,1105.4750000125248,-0.054403065897125374 +221096,1105.480000012525,-0.05440298601198226 +221097,1105.485000012525,-0.05440290612250036 +221098,1105.4900000125251,-0.05440282622867901 +221099,1105.4950000125252,-0.05440274633051759 +221100,1105.5000000125253,-0.05440266642801545 +221101,1105.5050000125254,-0.05440258652117197 +221102,1105.5100000125256,-0.05440250660998649 +221103,1105.5150000125257,-0.05440242669445838 +221104,1105.5200000125258,-0.05440234677458702 +221105,1105.5250000125259,-0.05440226685037175 +221106,1105.530000012526,-0.054402186921811944 +221107,1105.535000012526,-0.05440210698890697 +221108,1105.5400000125262,-0.054402027051656164 +221109,1105.5450000125263,-0.0544019471100589 +221110,1105.5500000125264,-0.05440186716411455 +221111,1105.5550000125265,-0.05440178721382246 +221112,1105.5600000125266,-0.054401707259182 +221113,1105.5650000125268,-0.054401627300192545 +221114,1105.5700000125269,-0.05440154733685343 +221115,1105.575000012527,-0.054401467369164014 +221116,1105.580000012527,-0.05440138739712367 +221117,1105.5850000125272,-0.05440130742073176 +221118,1105.5900000125273,-0.05440122743998764 +221119,1105.5950000125274,-0.054401147454890664 +221120,1105.6000000125275,-0.05440106746544019 +221121,1105.6050000125276,-0.0544009874716356 +221122,1105.6100000125277,-0.054400907473476236 +221123,1105.6150000125278,-0.05440082747096145 +221124,1105.620000012528,-0.0544007474640906 +221125,1105.625000012528,-0.05440066745286306 +221126,1105.6300000125282,-0.05440058743727818 +221127,1105.6350000125283,-0.05440050741733532 +221128,1105.6400000125284,-0.054400427393033836 +221129,1105.6450000125285,-0.05440034736437309 +221130,1105.6500000125286,-0.05440026733135244 +221131,1105.6550000125287,-0.05440018729397123 +221132,1105.6600000125288,-0.054400107252228824 +221133,1105.665000012529,-0.05440002720612459 +221134,1105.670000012529,-0.05439994715565787 +221135,1105.6750000125292,-0.05439986710082803 +221136,1105.6800000125293,-0.05439978704163443 +221137,1105.6850000125294,-0.05439970697807641 +221138,1105.6900000125295,-0.05439962691015335 +221139,1105.6950000125296,-0.054399546837864576 +221140,1105.7000000125297,-0.05439946676120947 +221141,1105.7050000125298,-0.05439938668018738 +221142,1105.71000001253,-0.05439930659479765 +221143,1105.71500001253,-0.05439922650503965 +221144,1105.7200000125301,-0.05439914641091274 +221145,1105.7250000125302,-0.054399066312416255 +221146,1105.7300000125304,-0.05439898620954956 +221147,1105.7350000125305,-0.05439890610231201 +221148,1105.7400000125306,-0.05439882599070296 +221149,1105.7450000125307,-0.05439874587472176 +221150,1105.7500000125308,-0.054398665754367755 +221151,1105.755000012531,-0.054398585629640325 +221152,1105.760000012531,-0.054398505500538805 +221153,1105.7650000125311,-0.05439842536706255 +221154,1105.7700000125312,-0.05439834522921091 +221155,1105.7750000125313,-0.05439826508698325 +221156,1105.7800000125314,-0.054398184940378916 +221157,1105.7850000125316,-0.05439810478939725 +221158,1105.7900000125317,-0.054398024634037624 +221159,1105.7950000125318,-0.05439794447429938 +221160,1105.8000000125319,-0.05439786431018188 +221161,1105.805000012532,-0.054397784141684453 +221162,1105.810000012532,-0.054397703968806485 +221163,1105.8150000125322,-0.054397623791547306 +221164,1105.8200000125323,-0.054397543609906264 +221165,1105.8250000125324,-0.054397463423882714 +221166,1105.8300000125325,-0.05439738323347601 +221167,1105.8350000125326,-0.05439730303868551 +221168,1105.8400000125328,-0.054397222839510546 +221169,1105.8450000125329,-0.05439714263595049 +221170,1105.850000012533,-0.054397062428004676 +221171,1105.855000012533,-0.054396982215672456 +221172,1105.8600000125332,-0.05439690199895318 +221173,1105.8650000125333,-0.054396821777846216 +221174,1105.8700000125334,-0.05439674155235089 +221175,1105.8750000125335,-0.05439666132246657 +221176,1105.8800000125336,-0.05439658108819259 +221177,1105.8850000125337,-0.05439650084952831 +221178,1105.8900000125338,-0.054396420606473074 +221179,1105.895000012534,-0.05439634035902623 +221180,1105.900000012534,-0.05439626010718712 +221181,1105.9050000125342,-0.05439617985095511 +221182,1105.9100000125343,-0.054396099590329525 +221183,1105.9150000125344,-0.05439601932530974 +221184,1105.9200000125345,-0.054395939055895084 +221185,1105.9250000125346,-0.0543958587820849 +221186,1105.9300000125347,-0.05439577850387856 +221187,1105.9350000125348,-0.05439569822127538 +221188,1105.940000012535,-0.05439561793427474 +221189,1105.945000012535,-0.05439553764287597 +221190,1105.9500000125352,-0.05439545734707841 +221191,1105.9550000125353,-0.05439537704688141 +221192,1105.9600000125354,-0.05439529674228432 +221193,1105.9650000125355,-0.05439521643328648 +221194,1105.9700000125356,-0.05439513611988724 +221195,1105.9750000125357,-0.05439505580208595 +221196,1105.9800000125358,-0.054394975479881966 +221197,1105.985000012536,-0.05439489515327461 +221198,1105.990000012536,-0.05439481482226323 +221199,1105.9950000125361,-0.05439473448684719 +221200,1106.0000000125362,-0.05439465414702582 +221201,1106.0050000125364,-0.05439457380279846 +221202,1106.0100000125365,-0.05439449345416448 +221203,1106.0150000125366,-0.054394413101123196 +221204,1106.0200000125367,-0.05439433274367396 +221205,1106.0250000125368,-0.05439425238181612 +221206,1106.030000012537,-0.05439417201554902 +221207,1106.035000012537,-0.05439409164487201 +221208,1106.0400000125371,-0.054394011269784416 +221209,1106.0450000125372,-0.05439393089028559 +221210,1106.0500000125373,-0.05439385050637487 +221211,1106.0550000125374,-0.05439377011805162 +221212,1106.0600000125376,-0.05439368972531517 +221213,1106.0650000125377,-0.05439360932816486 +221214,1106.0700000125378,-0.05439352892660003 +221215,1106.0750000125379,-0.054393448520620016 +221216,1106.080000012538,-0.054393368110224175 +221217,1106.085000012538,-0.054393287695411845 +221218,1106.0900000125382,-0.054393207276182354 +221219,1106.0950000125383,-0.05439312685253506 +221220,1106.1000000125384,-0.054393046424469293 +221221,1106.1050000125385,-0.0543929659919844 +221222,1106.1100000125386,-0.05439288555507971 +221223,1106.1150000125388,-0.05439280511375459 +221224,1106.1200000125389,-0.05439272466800835 +221225,1106.125000012539,-0.05439264421784036 +221226,1106.130000012539,-0.05439256376324994 +221227,1106.1350000125392,-0.05439248330423644 +221228,1106.1400000125393,-0.05439240284079918 +221229,1106.1450000125394,-0.05439232237293753 +221230,1106.1500000125395,-0.054392241900650805 +221231,1106.1550000125396,-0.05439216142393835 +221232,1106.1600000125397,-0.05439208094279951 +221233,1106.1650000125398,-0.05439200045723362 +221234,1106.17000001254,-0.054391919967240014 +221235,1106.17500001254,-0.05439183947281804 +221236,1106.1800000125402,-0.05439175897396703 +221237,1106.1850000125403,-0.05439167847068633 +221238,1106.1900000125404,-0.05439159796297527 +221239,1106.1950000125405,-0.05439151745083318 +221240,1106.2000000125406,-0.05439143693425941 +221241,1106.2050000125407,-0.054391356413253295 +221242,1106.2100000125408,-0.05439127588781416 +221243,1106.215000012541,-0.05439119535794136 +221244,1106.220000012541,-0.05439111482363423 +221245,1106.2250000125412,-0.05439103428489209 +221246,1106.2300000125413,-0.054390953741714286 +221247,1106.2350000125414,-0.05439087319410015 +221248,1106.2400000125415,-0.05439079264204904 +221249,1106.2450000125416,-0.05439071208556027 +221250,1106.2500000125417,-0.05439063152463318 +221251,1106.2550000125418,-0.054390550959267106 +221252,1106.260000012542,-0.05439047038946137 +221253,1106.265000012542,-0.05439038981521533 +221254,1106.2700000125421,-0.05439030923652831 +221255,1106.2750000125423,-0.054390228653399646 +221256,1106.2800000125424,-0.05439014806582867 +221257,1106.2850000125425,-0.054390067473814724 +221258,1106.2900000125426,-0.05438998687735713 +221259,1106.2950000125427,-0.054389906276455235 +221260,1106.3000000125428,-0.05438982567110836 +221261,1106.305000012543,-0.05438974506131584 +221262,1106.310000012543,-0.05438966444707701 +221263,1106.3150000125431,-0.05438958382839121 +221264,1106.3200000125432,-0.05438950320525777 +221265,1106.3250000125433,-0.05438942257767602 +221266,1106.3300000125435,-0.0543893419456453 +221267,1106.3350000125436,-0.05438926130916494 +221268,1106.3400000125437,-0.05438918066823426 +221269,1106.3450000125438,-0.054389100022852604 +221270,1106.350000012544,-0.05438901937301929 +221271,1106.355000012544,-0.05438893871873367 +221272,1106.360000012544,-0.05438885805999506 +221273,1106.3650000125442,-0.0543887773968028 +221274,1106.3700000125443,-0.05438869672915621 +221275,1106.3750000125444,-0.05438861605705463 +221276,1106.3800000125445,-0.054388535380497406 +221277,1106.3850000125447,-0.05438845469948385 +221278,1106.3900000125448,-0.05438837401401328 +221279,1106.3950000125449,-0.05438829332408504 +221280,1106.400000012545,-0.05438821262969847 +221281,1106.405000012545,-0.054388131930852894 +221282,1106.4100000125452,-0.05438805122754763 +221283,1106.4150000125453,-0.05438797051978202 +221284,1106.4200000125454,-0.054387889807555385 +221285,1106.4250000125455,-0.05438780909086705 +221286,1106.4300000125456,-0.05438772836971636 +221287,1106.4350000125457,-0.05438764764410263 +221288,1106.4400000125459,-0.05438756691402519 +221289,1106.445000012546,-0.05438748617948338 +221290,1106.450000012546,-0.054387405440476516 +221291,1106.4550000125462,-0.05438732469700392 +221292,1106.4600000125463,-0.05438724394906494 +221293,1106.4650000125464,-0.05438716319665889 +221294,1106.4700000125465,-0.054387082439785094 +221295,1106.4750000125466,-0.05438700167844289 +221296,1106.4800000125467,-0.054386920912631594 +221297,1106.4850000125468,-0.05438684014235054 +221298,1106.490000012547,-0.054386759367599055 +221299,1106.495000012547,-0.05438667858837646 +221300,1106.5000000125472,-0.05438659780468209 +221301,1106.5050000125473,-0.05438651701651526 +221302,1106.5100000125474,-0.0543864362238753 +221303,1106.5150000125475,-0.054386355426761526 +221304,1106.5200000125476,-0.054386274625173286 +221305,1106.5250000125477,-0.05438619381910989 +221306,1106.5300000125478,-0.05438611300857068 +221307,1106.535000012548,-0.05438603219355496 +221308,1106.540000012548,-0.05438595137406205 +221309,1106.5450000125481,-0.05438587055009129 +221310,1106.5500000125483,-0.054385789721642 +221311,1106.5550000125484,-0.05438570888871351 +221312,1106.5600000125485,-0.05438562805130513 +221313,1106.5650000125486,-0.054385547209416206 +221314,1106.5700000125487,-0.05438546636304604 +221315,1106.5750000125488,-0.05438538551219396 +221316,1106.580000012549,-0.05438530465685929 +221317,1106.585000012549,-0.05438522379704137 +221318,1106.5900000125491,-0.05438514293273949 +221319,1106.5950000125492,-0.05438506206395299 +221320,1106.6000000125493,-0.05438498119068119 +221321,1106.6050000125495,-0.05438490031292342 +221322,1106.6100000125496,-0.054384819430679 +221323,1106.6150000125497,-0.05438473854394725 +221324,1106.6200000125498,-0.054384657652727486 +221325,1106.62500001255,-0.054384576757019035 +221326,1106.63000001255,-0.054384495856821216 +221327,1106.63500001255,-0.05438441495213336 +221328,1106.6400000125502,-0.054384334042954764 +221329,1106.6450000125503,-0.05438425312928476 +221330,1106.6500000125504,-0.054384172211122676 +221331,1106.6550000125505,-0.05438409128846783 +221332,1106.6600000125507,-0.054384010361319526 +221333,1106.6650000125508,-0.05438392942967711 +221334,1106.6700000125509,-0.05438384849353989 +221335,1106.675000012551,-0.05438376755290717 +221336,1106.680000012551,-0.05438368660777829 +221337,1106.6850000125512,-0.05438360565815256 +221338,1106.6900000125513,-0.05438352470402932 +221339,1106.6950000125514,-0.05438344374540784 +221340,1106.7000000125515,-0.05438336278228749 +221341,1106.7050000125516,-0.054383281814667554 +221342,1106.7100000125517,-0.05438320084254737 +221343,1106.7150000125519,-0.05438311986592625 +221344,1106.720000012552,-0.05438303888480351 +221345,1106.725000012552,-0.05438295789917846 +221346,1106.7300000125522,-0.054382876909050436 +221347,1106.7350000125523,-0.05438279591441874 +221348,1106.7400000125524,-0.05438271491528269 +221349,1106.7450000125525,-0.05438263391164161 +221350,1106.7500000125526,-0.054382552903494814 +221351,1106.7550000125527,-0.05438247189084162 +221352,1106.7600000125528,-0.05438239087368133 +221353,1106.765000012553,-0.05438230985201328 +221354,1106.770000012553,-0.05438222882583678 +221355,1106.7750000125532,-0.05438214779515113 +221356,1106.7800000125533,-0.05438206675995566 +221357,1106.7850000125534,-0.05438198572024969 +221358,1106.7900000125535,-0.05438190467603252 +221359,1106.7950000125536,-0.054381823627303476 +221360,1106.8000000125537,-0.05438174257406188 +221361,1106.8050000125538,-0.05438166151630702 +221362,1106.810000012554,-0.05438158045403824 +221363,1106.815000012554,-0.05438149938725483 +221364,1106.8200000125541,-0.05438141831595612 +221365,1106.8250000125543,-0.05438133724014142 +221366,1106.8300000125544,-0.054381256159810036 +221367,1106.8350000125545,-0.05438117507496129 +221368,1106.8400000125546,-0.05438109398559449 +221369,1106.8450000125547,-0.05438101289170895 +221370,1106.8500000125548,-0.054380931793303985 +221371,1106.855000012555,-0.05438085069037891 +221372,1106.860000012555,-0.05438076958293303 +221373,1106.8650000125551,-0.054380688470965666 +221374,1106.8700000125552,-0.05438060735447611 +221375,1106.8750000125553,-0.0543805262334637 +221376,1106.8800000125555,-0.05438044510792773 +221377,1106.8850000125556,-0.05438036397786752 +221378,1106.8900000125557,-0.054380282843282376 +221379,1106.8950000125558,-0.05438020170417161 +221380,1106.900000012556,-0.05438012056053454 +221381,1106.905000012556,-0.05438003941237047 +221382,1106.910000012556,-0.0543799582596787 +221383,1106.9150000125562,-0.05437987710245855 +221384,1106.9200000125563,-0.054379795940709345 +221385,1106.9250000125564,-0.05437971477443037 +221386,1106.9300000125565,-0.05437963360362095 +221387,1106.9350000125567,-0.05437955242828038 +221388,1106.9400000125568,-0.05437947124840798 +221389,1106.9450000125569,-0.05437939006400306 +221390,1106.950000012557,-0.054379308875064925 +221391,1106.955000012557,-0.05437922768159288 +221392,1106.9600000125572,-0.054379146483586244 +221393,1106.9650000125573,-0.05437906528104432 +221394,1106.9700000125574,-0.05437898407396641 +221395,1106.9750000125575,-0.05437890286235182 +221396,1106.9800000125576,-0.05437882164619988 +221397,1106.9850000125577,-0.05437874042550988 +221398,1106.9900000125579,-0.05437865920028112 +221399,1106.995000012558,-0.054378577970512924 +221400,1107.000000012558,-0.05437849673620458 +221401,1107.0050000125582,-0.05437841549735542 +221402,1107.0100000125583,-0.05437833425396474 +221403,1107.0150000125584,-0.05437825300603183 +221404,1107.0200000125585,-0.054378171753556005 +221405,1107.0250000125586,-0.05437809049653659 +221406,1107.0300000125587,-0.054378009234972866 +221407,1107.0350000125588,-0.05437792796886414 +221408,1107.040000012559,-0.05437784669820974 +221409,1107.045000012559,-0.05437776542300894 +221410,1107.0500000125592,-0.054377684143261065 +221411,1107.0550000125593,-0.05437760285896542 +221412,1107.0600000125594,-0.0543775215701213 +221413,1107.0650000125595,-0.05437744027672802 +221414,1107.0700000125596,-0.05437735897878489 +221415,1107.0750000125597,-0.054377277676291184 +221416,1107.0800000125598,-0.05437719636924622 +221417,1107.08500001256,-0.054377115057649306 +221418,1107.09000001256,-0.05437703374149975 +221419,1107.0950000125601,-0.05437695242079684 +221420,1107.1000000125603,-0.054376871095539896 +221421,1107.1050000125604,-0.05437678976572822 +221422,1107.1100000125605,-0.054376708431361095 +221423,1107.1150000125606,-0.054376627092437846 +221424,1107.1200000125607,-0.054376545748957755 +221425,1107.1250000125608,-0.054376464400920144 +221426,1107.130000012561,-0.0543763830483243 +221427,1107.135000012561,-0.05437630169116953 +221428,1107.1400000125611,-0.05437622032945514 +221429,1107.1450000125612,-0.05437613896318041 +221430,1107.1500000125613,-0.054376057592344665 +221431,1107.1550000125615,-0.054375976216947196 +221432,1107.1600000125616,-0.0543758948369873 +221433,1107.1650000125617,-0.05437581345246428 +221434,1107.1700000125618,-0.054375732063377445 +221435,1107.175000012562,-0.054375650669726085 +221436,1107.180000012562,-0.05437556927150951 +221437,1107.185000012562,-0.05437548786872699 +221438,1107.1900000125622,-0.05437540646137787 +221439,1107.1950000125623,-0.05437532504946141 +221440,1107.2000000125624,-0.05437524363297693 +221441,1107.2050000125626,-0.054375162211923726 +221442,1107.2100000125627,-0.054375080786301086 +221443,1107.2150000125628,-0.05437499935610832 +221444,1107.2200000125629,-0.05437491792134472 +221445,1107.225000012563,-0.05437483648200959 +221446,1107.230000012563,-0.054374755038102206 +221447,1107.2350000125632,-0.05437467358962189 +221448,1107.2400000125633,-0.054374592136567944 +221449,1107.2450000125634,-0.05437451067893964 +221450,1107.2500000125635,-0.054374429216736304 +221451,1107.2550000125636,-0.05437434774995721 +221452,1107.2600000125638,-0.05437426627860165 +221453,1107.2650000125639,-0.05437418480266894 +221454,1107.270000012564,-0.05437410332215836 +221455,1107.275000012564,-0.05437402183706922 +221456,1107.2800000125642,-0.05437394034740082 +221457,1107.2850000125643,-0.05437385885315244 +221458,1107.2900000125644,-0.05437377735432338 +221459,1107.2950000125645,-0.05437369585091294 +221460,1107.3000000125646,-0.05437361434292041 +221461,1107.3050000125647,-0.05437353283034507 +221462,1107.3100000125648,-0.05437345131318624 +221463,1107.315000012565,-0.054373369791443193 +221464,1107.320000012565,-0.05437328826511525 +221465,1107.3250000125652,-0.05437320673420167 +221466,1107.3300000125653,-0.054373125198701786 +221467,1107.3350000125654,-0.05437304365861486 +221468,1107.3400000125655,-0.05437296211394021 +221469,1107.3450000125656,-0.0543728805646771 +221470,1107.3500000125657,-0.05437279901082485 +221471,1107.3550000125658,-0.05437271745238273 +221472,1107.360000012566,-0.054372635889350054 +221473,1107.365000012566,-0.0543725543217261 +221474,1107.3700000125662,-0.05437247274951017 +221475,1107.3750000125663,-0.05437239117270154 +221476,1107.3800000125664,-0.05437230959129951 +221477,1107.3850000125665,-0.054372228005303384 +221478,1107.3900000125666,-0.054372146414712434 +221479,1107.3950000125667,-0.05437206481952596 +221480,1107.4000000125668,-0.05437198321974326 +221481,1107.405000012567,-0.054371901615363614 +221482,1107.410000012567,-0.054371820006386316 +221483,1107.4150000125671,-0.054371738392810655 +221484,1107.4200000125672,-0.05437165677463592 +221485,1107.4250000125674,-0.05437157515186141 +221486,1107.4300000125675,-0.0543714935244864 +221487,1107.4350000125676,-0.054371411892510185 +221488,1107.4400000125677,-0.05437133025593205 +221489,1107.4450000125678,-0.054371248614751296 +221490,1107.450000012568,-0.05437116696896722 +221491,1107.455000012568,-0.05437108531857908 +221492,1107.4600000125681,-0.05437100366358618 +221493,1107.4650000125682,-0.05437092200398782 +221494,1107.4700000125683,-0.054370840339783275 +221495,1107.4750000125684,-0.05437075867097184 +221496,1107.4800000125686,-0.05437067699755279 +221497,1107.4850000125687,-0.054370595319525435 +221498,1107.4900000125688,-0.054370513636889044 +221499,1107.4950000125689,-0.05437043194964291 +221500,1107.500000012569,-0.05437035025778632 +221501,1107.505000012569,-0.05437026856131854 +221502,1107.5100000125692,-0.05437018686023889 +221503,1107.5150000125693,-0.054370105154546634 +221504,1107.5200000125694,-0.05437002344424107 +221505,1107.5250000125695,-0.05436994172932148 +221506,1107.5300000125696,-0.05436986000978715 +221507,1107.5350000125698,-0.05436977828563737 +221508,1107.5400000125699,-0.054369696556871405 +221509,1107.54500001257,-0.054369614823488566 +221510,1107.55000001257,-0.054369533085488114 +221511,1107.5550000125702,-0.05436945134286936 +221512,1107.5600000125703,-0.054369369595631566 +221513,1107.5650000125704,-0.05436928784377403 +221514,1107.5700000125705,-0.054369206087296035 +221515,1107.5750000125706,-0.05436912432619685 +221516,1107.5800000125707,-0.054369042560475776 +221517,1107.5850000125708,-0.05436896079013209 +221518,1107.590000012571,-0.05436887901516508 +221519,1107.595000012571,-0.05436879723557401 +221520,1107.6000000125712,-0.054368715451358185 +221521,1107.6050000125713,-0.054368633662516874 +221522,1107.6100000125714,-0.05436855186904937 +221523,1107.6150000125715,-0.054368470070954945 +221524,1107.6200000125716,-0.05436838826823288 +221525,1107.6250000125717,-0.05436830646088247 +221526,1107.6300000125718,-0.05436822464890298 +221527,1107.635000012572,-0.054368142832293714 +221528,1107.640000012572,-0.05436806101105394 +221529,1107.6450000125722,-0.054367979185182935 +221530,1107.6500000125723,-0.054367897354679985 +221531,1107.6550000125724,-0.054367815519544366 +221532,1107.6600000125725,-0.054367733679775355 +221533,1107.6650000125726,-0.05436765183537225 +221534,1107.6700000125727,-0.0543675699863343 +221535,1107.6750000125728,-0.05436748813266081 +221536,1107.680000012573,-0.054367406274351056 +221537,1107.685000012573,-0.054367324411404315 +221538,1107.6900000125731,-0.05436724254381986 +221539,1107.6950000125732,-0.05436716067159698 +221540,1107.7000000125734,-0.05436707879473495 +221541,1107.7050000125735,-0.05436699691323305 +221542,1107.7100000125736,-0.054366915027090554 +221543,1107.7150000125737,-0.05436683313630674 +221544,1107.7200000125738,-0.05436675124088089 +221545,1107.725000012574,-0.05436666934081228 +221546,1107.730000012574,-0.05436658743610019 +221547,1107.7350000125741,-0.054366505526743894 +221548,1107.7400000125742,-0.054366423612742666 +221549,1107.7450000125743,-0.05436634169409578 +221550,1107.7500000125744,-0.05436625977080252 +221551,1107.7550000125746,-0.05436617784286216 +221552,1107.7600000125747,-0.054366095910273984 +221553,1107.7650000125748,-0.05436601397303725 +221554,1107.7700000125749,-0.05436593203115126 +221555,1107.775000012575,-0.05436585008461526 +221556,1107.780000012575,-0.05436576813342855 +221557,1107.7850000125752,-0.05436568617759039 +221558,1107.7900000125753,-0.05436560421710006 +221559,1107.7950000125754,-0.05436552225195684 +221560,1107.8000000125755,-0.05436544028216 +221561,1107.8050000125756,-0.054365358307708805 +221562,1107.8100000125758,-0.05436527632860253 +221563,1107.8150000125759,-0.054365194344840474 +221564,1107.820000012576,-0.05436511235642189 +221565,1107.825000012576,-0.05436503036334605 +221566,1107.8300000125762,-0.05436494836561224 +221567,1107.8350000125763,-0.05436486636321972 +221568,1107.8400000125764,-0.054364784356167775 +221569,1107.8450000125765,-0.054364702344455666 +221570,1107.8500000125766,-0.05436462032808267 +221571,1107.8550000125767,-0.05436453830704805 +221572,1107.8600000125768,-0.054364456281351094 +221573,1107.865000012577,-0.054364374250991075 +221574,1107.870000012577,-0.05436429221596725 +221575,1107.8750000125772,-0.054364210176278904 +221576,1107.8800000125773,-0.0543641281319253 +221577,1107.8850000125774,-0.054364046082905716 +221578,1107.8900000125775,-0.05436396402921942 +221579,1107.8950000125776,-0.054363881970865675 +221580,1107.9000000125777,-0.054363799907843756 +221581,1107.9050000125778,-0.05436371784015293 +221582,1107.910000012578,-0.054363635767792476 +221583,1107.915000012578,-0.05436355369076165 +221584,1107.9200000125782,-0.054363471609059744 +221585,1107.9250000125783,-0.05436338952268601 +221586,1107.9300000125784,-0.05436330743163971 +221587,1107.9350000125785,-0.05436322533592013 +221588,1107.9400000125786,-0.05436314323552654 +221589,1107.9450000125787,-0.05436306113045819 +221590,1107.9500000125788,-0.054362979020714366 +221591,1107.955000012579,-0.054362896906294325 +221592,1107.960000012579,-0.05436281478719734 +221593,1107.9650000125791,-0.054362732663422675 +221594,1107.9700000125792,-0.0543626505349696 +221595,1107.9750000125794,-0.0543625684018374 +221596,1107.9800000125795,-0.05436248626402531 +221597,1107.9850000125796,-0.05436240412153262 +221598,1107.9900000125797,-0.05436232197435858 +221599,1107.9950000125798,-0.054362239822502476 +221600,1108.00000001258,-0.05436215766596355 +221601,1108.00500001258,-0.054362075504741085 +221602,1108.0100000125801,-0.054361993338834354 +221603,1108.0150000125802,-0.0543619111682426 +221604,1108.0200000125803,-0.0543618289929651 +221605,1108.0250000125804,-0.05436174681300112 +221606,1108.0300000125806,-0.05436166462834993 +221607,1108.0350000125807,-0.05436158243901079 +221608,1108.0400000125808,-0.05436150024498295 +221609,1108.0450000125809,-0.0543614180462657 +221610,1108.050000012581,-0.05436133584285828 +221611,1108.055000012581,-0.05436125363475998 +221612,1108.0600000125812,-0.05436117142197004 +221613,1108.0650000125813,-0.05436108920448774 +221614,1108.0700000125814,-0.05436100698231233 +221615,1108.0750000125815,-0.05436092475544308 +221616,1108.0800000125816,-0.05436084252387926 +221617,1108.0850000125818,-0.05436076028762011 +221618,1108.0900000125819,-0.05436067804666492 +221619,1108.095000012582,-0.05436059580101292 +221620,1108.100000012582,-0.0543605135506634 +221621,1108.1050000125822,-0.054360431295615616 +221622,1108.1100000125823,-0.054360349035868824 +221623,1108.1150000125824,-0.05436026677142229 +221624,1108.1200000125825,-0.054360184502275276 +221625,1108.1250000125826,-0.05436010222842704 +221626,1108.1300000125827,-0.054360019949876846 +221627,1108.1350000125829,-0.05435993766662395 +221628,1108.140000012583,-0.0543598553786676 +221629,1108.145000012583,-0.054359773086007084 +221630,1108.1500000125832,-0.05435969078864165 +221631,1108.1550000125833,-0.05435960848657054 +221632,1108.1600000125834,-0.05435952617979304 +221633,1108.1650000125835,-0.05435944386830839 +221634,1108.1700000125836,-0.054359361552115855 +221635,1108.1750000125837,-0.054359279231214704 +221636,1108.1800000125838,-0.05435919690560418 +221637,1108.185000012584,-0.05435911457528356 +221638,1108.190000012584,-0.05435903224025208 +221639,1108.1950000125842,-0.05435894990050902 +221640,1108.2000000125843,-0.054358867556053625 +221641,1108.2050000125844,-0.05435878520688516 +221642,1108.2100000125845,-0.05435870285300287 +221643,1108.2150000125846,-0.05435862049440601 +221644,1108.2200000125847,-0.054358538131093856 +221645,1108.2250000125848,-0.05435845576306565 +221646,1108.230000012585,-0.05435837339032065 +221647,1108.235000012585,-0.05435829101285812 +221648,1108.2400000125851,-0.054358208630677314 +221649,1108.2450000125853,-0.05435812624377748 +221650,1108.2500000125854,-0.05435804385215788 +221651,1108.2550000125855,-0.054357961455817776 +221652,1108.2600000125856,-0.05435787905475641 +221653,1108.2650000125857,-0.05435779664897305 +221654,1108.2700000125858,-0.05435771423846694 +221655,1108.275000012586,-0.05435763182323734 +221656,1108.280000012586,-0.0543575494032835 +221657,1108.2850000125861,-0.05435746697860468 +221658,1108.2900000125862,-0.05435738454920012 +221659,1108.2950000125863,-0.05435730211506909 +221660,1108.3000000125865,-0.054357219676210836 +221661,1108.3050000125866,-0.05435713723262461 +221662,1108.3100000125867,-0.05435705478430967 +221663,1108.3150000125868,-0.05435697233126527 +221664,1108.320000012587,-0.05435688987349066 +221665,1108.325000012587,-0.054356807410985086 +221666,1108.330000012587,-0.05435672494374781 +221667,1108.3350000125872,-0.05435664247177807 +221668,1108.3400000125873,-0.054356559995075146 +221669,1108.3450000125874,-0.05435647751363827 +221670,1108.3500000125875,-0.05435639502746669 +221671,1108.3550000125877,-0.054356312536559655 +221672,1108.3600000125878,-0.05435623004091643 +221673,1108.3650000125879,-0.054356147540536255 +221674,1108.370000012588,-0.054356065035418386 +221675,1108.375000012588,-0.05435598252556207 +221676,1108.3800000125882,-0.05435590001096657 +221677,1108.3850000125883,-0.05435581749163112 +221678,1108.3900000125884,-0.05435573496755497 +221679,1108.3950000125885,-0.05435565243873737 +221680,1108.4000000125886,-0.05435556990517758 +221681,1108.4050000125887,-0.05435548736687483 +221682,1108.4100000125889,-0.054355404823828384 +221683,1108.415000012589,-0.05435532227603748 +221684,1108.420000012589,-0.05435523972350138 +221685,1108.4250000125892,-0.05435515716621933 +221686,1108.4300000125893,-0.054355074604190576 +221687,1108.4350000125894,-0.05435499203741436 +221688,1108.4400000125895,-0.05435490946588993 +221689,1108.4450000125896,-0.05435482688961655 +221690,1108.4500000125897,-0.05435474430859344 +221691,1108.4550000125898,-0.05435466172281986 +221692,1108.46000001259,-0.05435457913229506 +221693,1108.46500001259,-0.05435449653701828 +221694,1108.4700000125902,-0.05435441393698876 +221695,1108.4750000125903,-0.054354331332205776 +221696,1108.4800000125904,-0.054354248722668544 +221697,1108.4850000125905,-0.05435416610837632 +221698,1108.4900000125906,-0.054354083489328346 +221699,1108.4950000125907,-0.054354000865523874 +221700,1108.5000000125908,-0.05435391823696213 +221701,1108.505000012591,-0.05435383560364238 +221702,1108.510000012591,-0.054353752965563856 +221703,1108.5150000125911,-0.054353670322725804 +221704,1108.5200000125913,-0.05435358767512747 +221705,1108.5250000125914,-0.0543535050227681 +221706,1108.5300000125915,-0.05435342236564695 +221707,1108.5350000125916,-0.05435333970376324 +221708,1108.5400000125917,-0.05435325703711622 +221709,1108.5450000125918,-0.054353174365705144 +221710,1108.550000012592,-0.05435309168952924 +221711,1108.555000012592,-0.05435300900858776 +221712,1108.5600000125921,-0.054352926322879955 +221713,1108.5650000125922,-0.05435284363240504 +221714,1108.5700000125923,-0.05435276093716227 +221715,1108.5750000125925,-0.0543526782371509 +221716,1108.5800000125926,-0.05435259553237016 +221717,1108.5850000125927,-0.05435251282281929 +221718,1108.5900000125928,-0.05435243010849753 +221719,1108.595000012593,-0.054352347389404115 +221720,1108.600000012593,-0.0543522646655383 +221721,1108.605000012593,-0.05435218193689933 +221722,1108.6100000125932,-0.054352099203486416 +221723,1108.6150000125933,-0.05435201646529883 +221724,1108.6200000125934,-0.0543519337223358 +221725,1108.6250000125935,-0.05435185097459656 +221726,1108.6300000125937,-0.054351768222080356 +221727,1108.6350000125938,-0.054351685464786414 +221728,1108.6400000125939,-0.054351602702713976 +221729,1108.645000012594,-0.0543515199358623 +221730,1108.650000012594,-0.054351437164230604 +221731,1108.6550000125942,-0.054351354387818136 +221732,1108.6600000125943,-0.054351271606624126 +221733,1108.6650000125944,-0.05435118882064782 +221734,1108.6700000125945,-0.054351106029888456 +221735,1108.6750000125946,-0.054351023234345264 +221736,1108.6800000125947,-0.05435094043401749 +221737,1108.6850000125949,-0.05435085762890437 +221738,1108.690000012595,-0.054350774819005125 +221739,1108.695000012595,-0.054350692004319 +221740,1108.7000000125952,-0.054350609184845244 +221741,1108.7050000125953,-0.054350526360583074 +221742,1108.7100000125954,-0.05435044353153174 +221743,1108.7150000125955,-0.05435036069769046 +221744,1108.7200000125956,-0.05435027785905849 +221745,1108.7250000125957,-0.05435019501563505 +221746,1108.7300000125958,-0.05435011216741938 +221747,1108.735000012596,-0.05435002931441072 +221748,1108.740000012596,-0.05434994645660831 +221749,1108.7450000125962,-0.054349863594011366 +221750,1108.7500000125963,-0.05434978072661913 +221751,1108.7550000125964,-0.05434969785443083 +221752,1108.7600000125965,-0.05434961497744571 +221753,1108.7650000125966,-0.054349532095663 +221754,1108.7700000125967,-0.054349449209081926 +221755,1108.7750000125968,-0.054349366317701736 +221756,1108.780000012597,-0.05434928342152165 +221757,1108.785000012597,-0.0543492005205409 +221758,1108.7900000125971,-0.054349117614758725 +221759,1108.7950000125973,-0.05434903470417436 +221760,1108.8000000125974,-0.05434895178878702 +221761,1108.8050000125975,-0.05434886886859595 +221762,1108.8100000125976,-0.054348785943600375 +221763,1108.8150000125977,-0.054348703013799536 +221764,1108.8200000125978,-0.05434862007919266 +221765,1108.825000012598,-0.05434853713977897 +221766,1108.830000012598,-0.05434845419555769 +221767,1108.8350000125981,-0.054348371246528075 +221768,1108.8400000125982,-0.05434828829268933 +221769,1108.8450000125983,-0.054348205334040715 +221770,1108.8500000125985,-0.054348122370581425 +221771,1108.8550000125986,-0.054348039402310706 +221772,1108.8600000125987,-0.054347956429227795 +221773,1108.8650000125988,-0.05434787345133191 +221774,1108.870000012599,-0.05434779046862228 +221775,1108.875000012599,-0.05434770748109813 +221776,1108.880000012599,-0.0543476244887587 +221777,1108.8850000125992,-0.05434754149160321 +221778,1108.8900000125993,-0.054347458489630886 +221779,1108.8950000125994,-0.05434737548284096 +221780,1108.9000000125995,-0.05434729247123266 +221781,1108.9050000125997,-0.05434720945480521 +221782,1108.9100000125998,-0.05434712643355783 +221783,1108.9150000125999,-0.05434704340748976 +221784,1108.9200000126,-0.05434696037660022 +221785,1108.9250000126,-0.054346877340888444 +221786,1108.9300000126002,-0.054346794300353635 +221787,1108.9350000126003,-0.054346711254995045 +221788,1108.9400000126004,-0.05434662820481189 +221789,1108.9450000126005,-0.0543465451498034 +221790,1108.9500000126006,-0.054346462089968794 +221791,1108.9550000126007,-0.0543463790253073 +221792,1108.9600000126009,-0.054346295955818136 +221793,1108.965000012601,-0.05434621288150052 +221794,1108.970000012601,-0.05434612980235369 +221795,1108.9750000126012,-0.05434604671837687 +221796,1108.9800000126013,-0.05434596362956928 +221797,1108.9850000126014,-0.054345880535930154 +221798,1108.9900000126015,-0.05434579743745869 +221799,1108.9950000126016,-0.054345714334154124 +221800,1109.0000000126017,-0.054345631226015684 +221801,1109.0050000126018,-0.0543455481130426 +221802,1109.010000012602,-0.054345464995234086 +221803,1109.015000012602,-0.05434538187258936 +221804,1109.0200000126022,-0.05434529874510764 +221805,1109.0250000126023,-0.054345215612788156 +221806,1109.0300000126024,-0.05434513247563012 +221807,1109.0350000126025,-0.054345049333632774 +221808,1109.0400000126026,-0.05434496618679532 +221809,1109.0450000126027,-0.05434488303511698 +221810,1109.0500000126028,-0.054344799878596986 +221811,1109.055000012603,-0.05434471671723455 +221812,1109.060000012603,-0.05434463355102889 +221813,1109.0650000126032,-0.05434455037997924 +221814,1109.0700000126033,-0.05434446720408479 +221815,1109.0750000126034,-0.05434438402334479 +221816,1109.0800000126035,-0.05434430083775844 +221817,1109.0850000126036,-0.05434421764732497 +221818,1109.0900000126037,-0.054344134452043606 +221819,1109.0950000126038,-0.05434405125191356 +221820,1109.100000012604,-0.05434396804693404 +221821,1109.105000012604,-0.05434388483710427 +221822,1109.1100000126041,-0.05434380162242347 +221823,1109.1150000126042,-0.054343718402890845 +221824,1109.1200000126044,-0.05434363517850562 +221825,1109.1250000126045,-0.05434355194926702 +221826,1109.1300000126046,-0.054343468715174266 +221827,1109.1350000126047,-0.05434338547622657 +221828,1109.1400000126048,-0.05434330223242314 +221829,1109.145000012605,-0.054343218983763195 +221830,1109.150000012605,-0.05434313573024596 +221831,1109.1550000126051,-0.054343052471870636 +221832,1109.1600000126052,-0.054342969208636446 +221833,1109.1650000126053,-0.054342885940542617 +221834,1109.1700000126054,-0.05434280266758835 +221835,1109.1750000126056,-0.05434271938977285 +221836,1109.1800000126057,-0.05434263610709536 +221837,1109.1850000126058,-0.05434255281955508 +221838,1109.1900000126059,-0.05434246952715122 +221839,1109.195000012606,-0.05434238622988301 +221840,1109.200000012606,-0.05434230292774964 +221841,1109.2050000126062,-0.054342219620750344 +221842,1109.2100000126063,-0.05434213630888432 +221843,1109.2150000126064,-0.05434205299215079 +221844,1109.2200000126065,-0.05434196967054896 +221845,1109.2250000126066,-0.05434188634407805 +221846,1109.2300000126068,-0.05434180301273728 +221847,1109.2350000126069,-0.05434171967652584 +221848,1109.240000012607,-0.05434163633544296 +221849,1109.245000012607,-0.05434155298948784 +221850,1109.2500000126072,-0.054341469638659705 +221851,1109.2550000126073,-0.05434138628295776 +221852,1109.2600000126074,-0.05434130292238121 +221853,1109.2650000126075,-0.05434121955692926 +221854,1109.2700000126076,-0.054341136186601136 +221855,1109.2750000126077,-0.05434105281139604 +221856,1109.2800000126078,-0.054340969431313196 +221857,1109.285000012608,-0.0543408860463518 +221858,1109.290000012608,-0.05434080265651106 +221859,1109.2950000126082,-0.054340719261790196 +221860,1109.3000000126083,-0.05434063586218842 +221861,1109.3050000126084,-0.05434055245770493 +221862,1109.3100000126085,-0.05434046904833893 +221863,1109.3150000126086,-0.05434038563408965 +221864,1109.3200000126087,-0.05434030221495627 +221865,1109.3250000126088,-0.05434021879093801 +221866,1109.330000012609,-0.05434013536203409 +221867,1109.335000012609,-0.05434005192824371 +221868,1109.3400000126092,-0.05433996848956608 +221869,1109.3450000126093,-0.05433988504600039 +221870,1109.3500000126094,-0.054339801597545874 +221871,1109.3550000126095,-0.054339718144201715 +221872,1109.3600000126096,-0.05433963468596713 +221873,1109.3650000126097,-0.05433955122284132 +221874,1109.3700000126098,-0.054339467754823505 +221875,1109.37500001261,-0.05433938428191287 +221876,1109.38000001261,-0.05433930080410865 +221877,1109.3850000126101,-0.05433921732141002 +221878,1109.3900000126102,-0.05433913383381621 +221879,1109.3950000126104,-0.0543390503413264 +221880,1109.4000000126105,-0.0543389668439398 +221881,1109.4050000126106,-0.05433888334165563 +221882,1109.4100000126107,-0.054338799834473095 +221883,1109.4150000126108,-0.05433871632239138 +221884,1109.420000012611,-0.0543386328054097 +221885,1109.425000012611,-0.05433854928352726 +221886,1109.4300000126111,-0.05433846575674325 +221887,1109.4350000126112,-0.054338382225056894 +221888,1109.4400000126113,-0.054338298688467374 +221889,1109.4450000126114,-0.05433821514697391 +221890,1109.4500000126116,-0.05433813160057569 +221891,1109.4550000126117,-0.054338048049271934 +221892,1109.4600000126118,-0.054337964493061816 +221893,1109.4650000126119,-0.05433788093194457 +221894,1109.470000012612,-0.05433779736591937 +221895,1109.475000012612,-0.054337713794985434 +221896,1109.4800000126122,-0.05433763021914196 +221897,1109.4850000126123,-0.05433754663838815 +221898,1109.4900000126124,-0.054337463052723196 +221899,1109.4950000126125,-0.054337379462146305 +221900,1109.5000000126126,-0.05433729586665668 +221901,1109.5050000126128,-0.0543372122662535 +221902,1109.5100000126129,-0.05433712866093599 +221903,1109.515000012613,-0.05433704505070334 +221904,1109.520000012613,-0.054336961435554755 +221905,1109.5250000126132,-0.05433687781548943 +221906,1109.5300000126133,-0.054336794190506556 +221907,1109.5350000126134,-0.05433671056060534 +221908,1109.5400000126135,-0.05433662692578498 +221909,1109.5450000126136,-0.054336543286044675 +221910,1109.5500000126137,-0.054336459641383617 +221911,1109.5550000126138,-0.054336375991800995 +221912,1109.560000012614,-0.05433629233729602 +221913,1109.565000012614,-0.05433620867786789 +221914,1109.5700000126142,-0.0543361250135158 +221915,1109.5750000126143,-0.05433604134423894 +221916,1109.5800000126144,-0.05433595767003651 +221917,1109.5850000126145,-0.0543358739909077 +221918,1109.5900000126146,-0.05433579030685172 +221919,1109.5950000126147,-0.05433570661786776 +221920,1109.6000000126148,-0.05433562292395502 +221921,1109.605000012615,-0.05433553922511267 +221922,1109.610000012615,-0.05433545552133993 +221923,1109.6150000126152,-0.05433537181263599 +221924,1109.6200000126153,-0.05433528809900004 +221925,1109.6250000126154,-0.05433520438043128 +221926,1109.6300000126155,-0.054335120656928894 +221927,1109.6350000126156,-0.054335036928492085 +221928,1109.6400000126157,-0.05433495319512005 +221929,1109.6450000126158,-0.05433486945681197 +221930,1109.650000012616,-0.054334785713567056 +221931,1109.655000012616,-0.05433470196538449 +221932,1109.6600000126161,-0.05433461821226345 +221933,1109.6650000126162,-0.05433453445420315 +221934,1109.6700000126164,-0.054334450691202775 +221935,1109.6750000126165,-0.05433436692326151 +221936,1109.6800000126166,-0.054334283150378554 +221937,1109.6850000126167,-0.0543341993725531 +221938,1109.6900000126168,-0.054334115589784335 +221939,1109.695000012617,-0.05433403180207145 +221940,1109.700000012617,-0.054333948009413637 +221941,1109.7050000126171,-0.05433386421181008 +221942,1109.7100000126172,-0.054333780409259985 +221943,1109.7150000126173,-0.05433369660176253 +221944,1109.7200000126174,-0.0543336127893169 +221945,1109.7250000126176,-0.054333528971922306 +221946,1109.7300000126177,-0.054333445149577914 +221947,1109.7350000126178,-0.054333361322282926 +221948,1109.7400000126179,-0.054333277490036525 +221949,1109.745000012618,-0.05433319365283789 +221950,1109.750000012618,-0.05433310981068624 +221951,1109.7550000126182,-0.054333025963580736 +221952,1109.7600000126183,-0.054332942111520566 +221953,1109.7650000126184,-0.05433285825450493 +221954,1109.7700000126185,-0.05433277439253301 +221955,1109.7750000126186,-0.054332690525603994 +221956,1109.7800000126188,-0.054332606653717065 +221957,1109.7850000126189,-0.054332522776871416 +221958,1109.790000012619,-0.05433243889506623 +221959,1109.795000012619,-0.0543323550083007 +221960,1109.8000000126192,-0.05433227111657401 +221961,1109.8050000126193,-0.05433218721988533 +221962,1109.8100000126194,-0.05433210331823386 +221963,1109.8150000126195,-0.05433201941161879 +221964,1109.8200000126196,-0.05433193550003929 +221965,1109.8250000126197,-0.05433185158349456 +221966,1109.8300000126198,-0.054331767661983776 +221967,1109.83500001262,-0.05433168373550612 +221968,1109.84000001262,-0.05433159980406077 +221969,1109.8450000126202,-0.05433151586764693 +221970,1109.8500000126203,-0.054331431926263773 +221971,1109.8550000126204,-0.05433134797991049 +221972,1109.8600000126205,-0.05433126402858625 +221973,1109.8650000126206,-0.054331180072290236 +221974,1109.8700000126207,-0.05433109611102164 +221975,1109.8750000126208,-0.05433101214477964 +221976,1109.880000012621,-0.05433092817356342 +221977,1109.885000012621,-0.054330844197372156 +221978,1109.8900000126212,-0.05433076021620505 +221979,1109.8950000126213,-0.054330676230061256 +221980,1109.9000000126214,-0.05433059223893997 +221981,1109.9050000126215,-0.05433050824284038 +221982,1109.9100000126216,-0.05433042424176165 +221983,1109.9150000126217,-0.05433034023570296 +221984,1109.9200000126218,-0.05433025622466352 +221985,1109.925000012622,-0.05433017220864247 +221986,1109.930000012622,-0.05433008818763901 +221987,1109.9350000126221,-0.05433000416165231 +221988,1109.9400000126222,-0.054329920130681573 +221989,1109.9450000126224,-0.05432983609472596 +221990,1109.9500000126225,-0.054329752053784645 +221991,1109.9550000126226,-0.054329668007856824 +221992,1109.9600000126227,-0.054329583956941666 +221993,1109.9650000126228,-0.05432949990103833 +221994,1109.970000012623,-0.05432941584014603 +221995,1109.975000012623,-0.054329331774263905 +221996,1109.9800000126231,-0.05432924770339116 +221997,1109.9850000126232,-0.05432916362752697 +221998,1109.9900000126233,-0.0543290795466705 +221999,1109.9950000126234,-0.054328995460820935 +222000,1110.0000000126236,-0.054328911369977466 +222001,1110.0050000126237,-0.05432882727413924 +222002,1110.0100000126238,-0.05432874317330546 +222003,1110.015000012624,-0.05432865906747527 +222004,1110.020000012624,-0.05432857495664787 +222005,1110.025000012624,-0.054328490840822426 +222006,1110.0300000126242,-0.05432840671999811 +222007,1110.0350000126243,-0.05432832259417411 +222008,1110.0400000126244,-0.054328238463349596 +222009,1110.0450000126245,-0.054328154327523734 +222010,1110.0500000126247,-0.054328070186695714 +222011,1110.0550000126248,-0.05432798604086469 +222012,1110.0600000126249,-0.05432790189002985 +222013,1110.065000012625,-0.05432781773419036 +222014,1110.070000012625,-0.0543277335733454 +222015,1110.0750000126252,-0.054327649407494134 +222016,1110.0800000126253,-0.05432756523663573 +222017,1110.0850000126254,-0.05432748106076937 +222018,1110.0900000126255,-0.05432739687989424 +222019,1110.0950000126256,-0.05432731269400948 +222020,1110.1000000126257,-0.054327228503114285 +222021,1110.1050000126259,-0.054327144307207816 +222022,1110.110000012626,-0.05432706010628925 +222023,1110.115000012626,-0.05432697590035777 +222024,1110.1200000126262,-0.05432689168941252 +222025,1110.1250000126263,-0.05432680747345268 +222026,1110.1300000126264,-0.05432672325247742 +222027,1110.1350000126265,-0.05432663902648592 +222028,1110.1400000126266,-0.054326554795477336 +222029,1110.1450000126267,-0.054326470559450855 +222030,1110.1500000126268,-0.054326386318405626 +222031,1110.155000012627,-0.05432630207234083 +222032,1110.160000012627,-0.05432621782125563 +222033,1110.1650000126272,-0.05432613356514919 +222034,1110.1700000126273,-0.0543260493040207 +222035,1110.1750000126274,-0.05432596503786931 +222036,1110.1800000126275,-0.0543258807666942 +222037,1110.1850000126276,-0.05432579649049453 +222038,1110.1900000126277,-0.054325712209269454 +222039,1110.1950000126278,-0.05432562792301816 +222040,1110.200000012628,-0.0543255436317398 +222041,1110.205000012628,-0.05432545933543355 +222042,1110.2100000126281,-0.05432537503409857 +222043,1110.2150000126283,-0.05432529072773403 +222044,1110.2200000126284,-0.0543252064163391 +222045,1110.2250000126285,-0.054325122099912936 +222046,1110.2300000126286,-0.0543250377784547 +222047,1110.2350000126287,-0.054324953451963566 +222048,1110.2400000126288,-0.054324869120438705 +222049,1110.245000012629,-0.05432478478387927 +222050,1110.250000012629,-0.05432470044228443 +222051,1110.2550000126291,-0.05432461609565334 +222052,1110.2600000126292,-0.05432453174398519 +222053,1110.2650000126293,-0.05432444738727912 +222054,1110.2700000126295,-0.0543243630255343 +222055,1110.2750000126296,-0.05432427865874989 +222056,1110.2800000126297,-0.05432419428692505 +222057,1110.2850000126298,-0.054324109910058954 +222058,1110.29000001263,-0.05432402552815076 +222059,1110.29500001263,-0.05432394114119963 +222060,1110.30000001263,-0.05432385674920472 +222061,1110.3050000126302,-0.05432377235216519 +222062,1110.3100000126303,-0.05432368795008021 +222063,1110.3150000126304,-0.05432360354294895 +222064,1110.3200000126305,-0.05432351913077055 +222065,1110.3250000126307,-0.054323434713544186 +222066,1110.3300000126308,-0.05432335029126901 +222067,1110.3350000126309,-0.05432326586394419 +222068,1110.340000012631,-0.05432318143156887 +222069,1110.345000012631,-0.05432309699414222 +222070,1110.3500000126312,-0.05432301255166341 +222071,1110.3550000126313,-0.05432292810413159 +222072,1110.3600000126314,-0.05432284365154591 +222073,1110.3650000126315,-0.05432275919390554 +222074,1110.3700000126316,-0.05432267473120963 +222075,1110.3750000126317,-0.05432259026345734 +222076,1110.3800000126319,-0.05432250579064784 +222077,1110.385000012632,-0.05432242131278028 +222078,1110.390000012632,-0.05432233682985381 +222079,1110.3950000126322,-0.0543222523418676 +222080,1110.4000000126323,-0.054322167848820796 +222081,1110.4050000126324,-0.05432208335071256 +222082,1110.4100000126325,-0.05432199884754205 +222083,1110.4150000126326,-0.05432191433930842 +222084,1110.4200000126327,-0.05432182982601083 +222085,1110.4250000126328,-0.054321745307648425 +222086,1110.430000012633,-0.05432166078422037 +222087,1110.435000012633,-0.05432157625572582 +222088,1110.4400000126332,-0.054321491722163925 +222089,1110.4450000126333,-0.05432140718353385 +222090,1110.4500000126334,-0.05432132263983473 +222091,1110.4550000126335,-0.05432123809106574 +222092,1110.4600000126336,-0.054321153537226025 +222093,1110.4650000126337,-0.05432106897831474 +222094,1110.4700000126338,-0.05432098441433104 +222095,1110.475000012634,-0.05432089984527407 +222096,1110.480000012634,-0.05432081527114299 +222097,1110.4850000126341,-0.05432073069193696 +222098,1110.4900000126343,-0.05432064610765512 +222099,1110.4950000126344,-0.05432056151829663 +222100,1110.5000000126345,-0.054320476923860626 +222101,1110.5050000126346,-0.054320392324346274 +222102,1110.5100000126347,-0.054320307719752735 +222103,1110.5150000126348,-0.05432022311007914 +222104,1110.520000012635,-0.05432013849532466 +222105,1110.525000012635,-0.054320053875488425 +222106,1110.5300000126351,-0.0543199692505696 +222107,1110.5350000126352,-0.054319884620567326 +222108,1110.5400000126353,-0.054319799985480755 +222109,1110.5450000126355,-0.05431971534530905 +222110,1110.5500000126356,-0.05431963070005135 +222111,1110.5550000126357,-0.054319546049706804 +222112,1110.5600000126358,-0.05431946139427456 +222113,1110.565000012636,-0.054319376733753755 +222114,1110.570000012636,-0.05431929206814355 +222115,1110.575000012636,-0.05431920739744311 +222116,1110.5800000126362,-0.054319122721651555 +222117,1110.5850000126363,-0.05431903804076805 +222118,1110.5900000126364,-0.05431895335479175 +222119,1110.5950000126365,-0.05431886866372177 +222120,1110.6000000126367,-0.054318783967557294 +222121,1110.6050000126368,-0.05431869926629745 +222122,1110.6100000126369,-0.054318614559941365 +222123,1110.615000012637,-0.05431852984848823 +222124,1110.620000012637,-0.054318445131937156 +222125,1110.6250000126372,-0.0543183604102873 +222126,1110.6300000126373,-0.05431827568353781 +222127,1110.6350000126374,-0.05431819095168783 +222128,1110.6400000126375,-0.054318106214736504 +222129,1110.6450000126376,-0.05431802147268297 +222130,1110.6500000126377,-0.05431793672552639 +222131,1110.6550000126379,-0.054317851973265906 +222132,1110.660000012638,-0.05431776721590065 +222133,1110.665000012638,-0.05431768245342976 +222134,1110.6700000126382,-0.05431759768585239 +222135,1110.6750000126383,-0.05431751291316769 +222136,1110.6800000126384,-0.05431742813537478 +222137,1110.6850000126385,-0.05431734335247283 +222138,1110.6900000126386,-0.05431725856446097 +222139,1110.6950000126387,-0.05431717377133835 +222140,1110.7000000126388,-0.05431708897310409 +222141,1110.705000012639,-0.054317004169757356 +222142,1110.710000012639,-0.05431691936129728 +222143,1110.7150000126392,-0.05431683454772301 +222144,1110.7200000126393,-0.05431674972903368 +222145,1110.7250000126394,-0.05431666490522842 +222146,1110.7300000126395,-0.054316580076306395 +222147,1110.7350000126396,-0.05431649524226673 +222148,1110.7400000126397,-0.05431641040310856 +222149,1110.7450000126398,-0.05431632555883104 +222150,1110.75000001264,-0.05431624070943329 +222151,1110.75500001264,-0.05431615585491447 +222152,1110.7600000126401,-0.054316070995273705 +222153,1110.7650000126403,-0.05431598613051014 +222154,1110.7700000126404,-0.05431590126062291 +222155,1110.7750000126405,-0.05431581638561116 +222156,1110.7800000126406,-0.05431573150547402 +222157,1110.7850000126407,-0.05431564662021063 +222158,1110.7900000126408,-0.05431556172982013 +222159,1110.795000012641,-0.054315476834301664 +222160,1110.800000012641,-0.05431539193365435 +222161,1110.8050000126411,-0.05431530702787735 +222162,1110.8100000126412,-0.05431522211696978 +222163,1110.8150000126413,-0.05431513720093078 +222164,1110.8200000126415,-0.05431505227975949 +222165,1110.8250000126416,-0.054314967353455035 +222166,1110.8300000126417,-0.05431488242201657 +222167,1110.8350000126418,-0.05431479748544321 +222168,1110.840000012642,-0.05431471254373411 +222169,1110.845000012642,-0.05431462759688839 +222170,1110.850000012642,-0.05431454264490519 +222171,1110.8550000126422,-0.054314457687783646 +222172,1110.8600000126423,-0.054314372725522884 +222173,1110.8650000126424,-0.05431428775812205 +222174,1110.8700000126425,-0.054314202785580266 +222175,1110.8750000126427,-0.05431411780789667 +222176,1110.8800000126428,-0.054314032825070385 +222177,1110.8850000126429,-0.05431394783710056 +222178,1110.890000012643,-0.054313862843986316 +222179,1110.895000012643,-0.05431377784572679 +222180,1110.9000000126432,-0.05431369284232112 +222181,1110.9050000126433,-0.05431360783376843 +222182,1110.9100000126434,-0.05431352282006785 +222183,1110.9150000126435,-0.054313437801218514 +222184,1110.9200000126436,-0.05431335277721955 +222185,1110.9250000126437,-0.05431326774807009 +222186,1110.9300000126439,-0.05431318271376927 +222187,1110.935000012644,-0.05431309767431621 +222188,1110.940000012644,-0.05431301262971005 +222189,1110.9450000126442,-0.0543129275799499 +222190,1110.9500000126443,-0.05431284252503491 +222191,1110.9550000126444,-0.05431275746496421 +222192,1110.9600000126445,-0.05431267239973691 +222193,1110.9650000126446,-0.05431258732935217 +222194,1110.9700000126447,-0.05431250225380909 +222195,1110.9750000126448,-0.05431241717310681 +222196,1110.980000012645,-0.054312332087244446 +222197,1110.985000012645,-0.054312246996221135 +222198,1110.9900000126452,-0.054312161900036 +222199,1110.9950000126453,-0.054312076798688186 +222200,1111.0000000126454,-0.05431199169217679 +222201,1111.0050000126455,-0.05431190658050096 +222202,1111.0100000126456,-0.05431182146365983 +222203,1111.0150000126457,-0.05431173634165249 +222204,1111.0200000126458,-0.054311651214478104 +222205,1111.025000012646,-0.05431156608213577 +222206,1111.030000012646,-0.05431148094462464 +222207,1111.0350000126462,-0.0543113958019438 +222208,1111.0400000126463,-0.054311310654092414 +222209,1111.0450000126464,-0.054311225501069586 +222210,1111.0500000126465,-0.05431114034287445 +222211,1111.0550000126466,-0.05431105517950613 +222212,1111.0600000126467,-0.05431097001096373 +222213,1111.0650000126468,-0.054310884837246394 +222214,1111.070000012647,-0.05431079965835323 +222215,1111.075000012647,-0.054310714474283386 +222216,1111.0800000126471,-0.05431062928503596 +222217,1111.0850000126472,-0.05431054409061008 +222218,1111.0900000126474,-0.05431045889100487 +222219,1111.0950000126475,-0.054310373686219465 +222220,1111.1000000126476,-0.054310288476252966 +222221,1111.1050000126477,-0.05431020326110451 +222222,1111.1100000126478,-0.05431011804077321 +222223,1111.115000012648,-0.05431003281525818 +222224,1111.120000012648,-0.05430994758455856 +222225,1111.1250000126481,-0.05430986234867345 +222226,1111.1300000126482,-0.05430977710760197 +222227,1111.1350000126483,-0.05430969186134327 +222228,1111.1400000126484,-0.054309606609896435 +222229,1111.1450000126486,-0.054309521353260594 +222230,1111.1500000126487,-0.054309436091434876 +222231,1111.1550000126488,-0.05430935082441839 +222232,1111.1600000126489,-0.054309265552210266 +222233,1111.165000012649,-0.054309180274809604 +222234,1111.170000012649,-0.054309094992215534 +222235,1111.1750000126492,-0.05430900970442717 +222236,1111.1800000126493,-0.05430892441144363 +222237,1111.1850000126494,-0.05430883911326403 +222238,1111.1900000126495,-0.05430875380988749 +222239,1111.1950000126496,-0.054308668501313134 +222240,1111.2000000126498,-0.05430858318754007 +222241,1111.2050000126499,-0.05430849786856742 +222242,1111.21000001265,-0.05430841254439429 +222243,1111.21500001265,-0.05430832721501979 +222244,1111.2200000126502,-0.05430824188044305 +222245,1111.2250000126503,-0.05430815654066318 +222246,1111.2300000126504,-0.05430807119567929 +222247,1111.2350000126505,-0.05430798584549051 +222248,1111.2400000126506,-0.05430790049009595 +222249,1111.2450000126507,-0.054307815129494716 +222250,1111.2500000126508,-0.05430772976368591 +222251,1111.255000012651,-0.05430764439266868 +222252,1111.260000012651,-0.05430755901644212 +222253,1111.2650000126512,-0.05430747363500532 +222254,1111.2700000126513,-0.05430738824835743 +222255,1111.2750000126514,-0.05430730285649754 +222256,1111.2800000126515,-0.05430721745942478 +222257,1111.2850000126516,-0.05430713205713823 +222258,1111.2900000126517,-0.05430704664963704 +222259,1111.2950000126518,-0.054306961236920304 +222260,1111.300000012652,-0.054306875818987126 +222261,1111.305000012652,-0.05430679039583663 +222262,1111.3100000126522,-0.05430670496746792 +222263,1111.3150000126523,-0.05430661953388011 +222264,1111.3200000126524,-0.05430653409507231 +222265,1111.3250000126525,-0.05430644865104362 +222266,1111.3300000126526,-0.05430636320179316 +222267,1111.3350000126527,-0.05430627774732004 +222268,1111.3400000126528,-0.05430619228762336 +222269,1111.345000012653,-0.054306106822702246 +222270,1111.350000012653,-0.054306021352555786 +222271,1111.3550000126531,-0.054305935877183104 +222272,1111.3600000126532,-0.0543058503965833 +222273,1111.3650000126534,-0.054305764910755484 +222274,1111.3700000126535,-0.054305679419698764 +222275,1111.3750000126536,-0.05430559392341225 +222276,1111.3800000126537,-0.05430550842189503 +222277,1111.3850000126538,-0.05430542291514624 +222278,1111.390000012654,-0.05430533740316497 +222279,1111.395000012654,-0.054305251885950326 +222280,1111.4000000126541,-0.05430516636350141 +222281,1111.4050000126542,-0.05430508083581734 +222282,1111.4100000126543,-0.05430499530289721 +222283,1111.4150000126544,-0.05430490976474013 +222284,1111.4200000126546,-0.054304824221345215 +222285,1111.4250000126547,-0.05430473867271155 +222286,1111.4300000126548,-0.05430465311883826 +222287,1111.4350000126549,-0.05430456755972443 +222288,1111.440000012655,-0.05430448199536917 +222289,1111.445000012655,-0.0543043964257716 +222290,1111.4500000126552,-0.054304310850930806 +222291,1111.4550000126553,-0.05430422527084589 +222292,1111.4600000126554,-0.054304139685515965 +222293,1111.4650000126555,-0.054304054094940116 +222294,1111.4700000126556,-0.054303968499117464 +222295,1111.4750000126558,-0.05430388289804709 +222296,1111.4800000126559,-0.054303797291728115 +222297,1111.485000012656,-0.05430371168015964 +222298,1111.490000012656,-0.05430362606334076 +222299,1111.4950000126562,-0.05430354044127057 +222300,1111.5000000126563,-0.05430345481394818 +222301,1111.5050000126564,-0.05430336918137269 +222302,1111.5100000126565,-0.054303283543543204 +222303,1111.5150000126566,-0.054303197900458816 +222304,1111.5200000126567,-0.05430311225211861 +222305,1111.5250000126568,-0.054303026598521716 +222306,1111.530000012657,-0.05430294093966721 +222307,1111.535000012657,-0.054302855275554195 +222308,1111.5400000126572,-0.05430276960618177 +222309,1111.5450000126573,-0.054302683931549044 +222310,1111.5500000126574,-0.0543025982516551 +222311,1111.5550000126575,-0.054302512566499046 +222312,1111.5600000126576,-0.05430242687607998 +222313,1111.5650000126577,-0.05430234118039699 +222314,1111.5700000126578,-0.05430225547944919 +222315,1111.575000012658,-0.054302169773235646 +222316,1111.580000012658,-0.05430208406175548 +222317,1111.5850000126582,-0.054301998345007776 +222318,1111.5900000126583,-0.05430191262299164 +222319,1111.5950000126584,-0.05430182689570616 +222320,1111.6000000126585,-0.05430174116315044 +222321,1111.6050000126586,-0.05430165542532356 +222322,1111.6100000126587,-0.054301569682224625 +222323,1111.6150000126588,-0.054301483933852736 +222324,1111.620000012659,-0.054301398180206975 +222325,1111.625000012659,-0.05430131242128644 +222326,1111.6300000126591,-0.054301226657090224 +222327,1111.6350000126592,-0.05430114088761742 +222328,1111.6400000126594,-0.05430105511286712 +222329,1111.6450000126595,-0.05430096933283842 +222330,1111.6500000126596,-0.05430088354753042 +222331,1111.6550000126597,-0.05430079775694219 +222332,1111.6600000126598,-0.054300711961072834 +222333,1111.66500001266,-0.05430062615992146 +222334,1111.67000001266,-0.05430054035348715 +222335,1111.6750000126601,-0.05430045454176899 +222336,1111.6800000126602,-0.05430036872476606 +222337,1111.6850000126603,-0.054300282902477466 +222338,1111.6900000126604,-0.05430019707490229 +222339,1111.6950000126606,-0.05430011124203962 +222340,1111.7000000126607,-0.05430002540388857 +222341,1111.7050000126608,-0.05429993956044819 +222342,1111.7100000126609,-0.05429985371171762 +222343,1111.715000012661,-0.0542997678576959 +222344,1111.720000012661,-0.05429968199838214 +222345,1111.7250000126612,-0.05429959613377544 +222346,1111.7300000126613,-0.05429951026387487 +222347,1111.7350000126614,-0.054299424388679525 +222348,1111.7400000126615,-0.0542993385081885 +222349,1111.7450000126616,-0.05429925262240086 +222350,1111.7500000126618,-0.05429916673131571 +222351,1111.7550000126619,-0.054299080834932144 +222352,1111.760000012662,-0.05429899493324923 +222353,1111.765000012662,-0.05429890902626606 +222354,1111.7700000126622,-0.05429882311398173 +222355,1111.7750000126623,-0.05429873719639531 +222356,1111.7800000126624,-0.054298651273505895 +222357,1111.7850000126625,-0.054298565345312584 +222358,1111.7900000126626,-0.05429847941181444 +222359,1111.7950000126627,-0.05429839347301055 +222360,1111.8000000126628,-0.05429830752890001 +222361,1111.805000012663,-0.05429822157948191 +222362,1111.810000012663,-0.05429813562475531 +222363,1111.8150000126632,-0.0542980496647193 +222364,1111.8200000126633,-0.054297963699372974 +222365,1111.8250000126634,-0.05429787772871541 +222366,1111.8300000126635,-0.05429779175274568 +222367,1111.8350000126636,-0.05429770577146289 +222368,1111.8400000126637,-0.0542976197848661 +222369,1111.8450000126638,-0.05429753379295441 +222370,1111.850000012664,-0.0542974477957269 +222371,1111.855000012664,-0.05429736179318263 +222372,1111.8600000126642,-0.05429727578532071 +222373,1111.8650000126643,-0.0542971897721402 +222374,1111.8700000126644,-0.054297103753640184 +222375,1111.8750000126645,-0.054297017729819756 +222376,1111.8800000126646,-0.05429693170067799 +222377,1111.8850000126647,-0.054296845666213955 +222378,1111.8900000126648,-0.05429675962642674 +222379,1111.895000012665,-0.054296673581315416 +222380,1111.900000012665,-0.054296587530879084 +222381,1111.9050000126651,-0.0542965014751168 +222382,1111.9100000126653,-0.05429641541402765 +222383,1111.9150000126654,-0.05429632934761071 +222384,1111.9200000126655,-0.054296243275865054 +222385,1111.9250000126656,-0.054296157198789774 +222386,1111.9300000126657,-0.05429607111638393 +222387,1111.9350000126658,-0.05429598502864661 +222388,1111.940000012666,-0.05429589893557689 +222389,1111.945000012666,-0.05429581283717384 +222390,1111.9500000126661,-0.05429572673343656 +222391,1111.9550000126662,-0.05429564062436408 +222392,1111.9600000126663,-0.054295554509955525 +222393,1111.9650000126665,-0.05429546839020993 +222394,1111.9700000126666,-0.05429538226512641 +222395,1111.9750000126667,-0.054295296134704005 +222396,1111.9800000126668,-0.054295209998941815 +222397,1111.985000012667,-0.054295123857838905 +222398,1111.990000012667,-0.05429503771139433 +222399,1111.995000012667,-0.05429495155960719 +222400,1112.0000000126672,-0.05429486540247655 +222401,1112.0050000126673,-0.05429477924000148 +222402,1112.0100000126674,-0.05429469307218105 +222403,1112.0150000126675,-0.054294606899014344 +222404,1112.0200000126677,-0.05429452072050043 +222405,1112.0250000126678,-0.054294434536638375 +222406,1112.0300000126679,-0.05429434834742726 +222407,1112.035000012668,-0.05429426215286615 +222408,1112.040000012668,-0.05429417595295412 +222409,1112.0450000126682,-0.05429408974769024 +222410,1112.0500000126683,-0.05429400353707358 +222411,1112.0550000126684,-0.05429391732110321 +222412,1112.0600000126685,-0.054293831099778186 +222413,1112.0650000126686,-0.05429374487309761 +222414,1112.0700000126687,-0.05429365864106052 +222415,1112.0750000126689,-0.05429357240366601 +222416,1112.080000012669,-0.05429348616091313 +222417,1112.085000012669,-0.054293399912800966 +222418,1112.0900000126692,-0.054293313659328574 +222419,1112.0950000126693,-0.054293227400495025 +222420,1112.1000000126694,-0.054293141136299385 +222421,1112.1050000126695,-0.054293054866740735 +222422,1112.1100000126696,-0.054292968591818126 +222423,1112.1150000126697,-0.054292882311530635 +222424,1112.1200000126698,-0.054292796025877325 +222425,1112.12500001267,-0.05429270973485725 +222426,1112.13000001267,-0.05429262343846951 +222427,1112.1350000126702,-0.054292537136713136 +222428,1112.1400000126703,-0.05429245082958721 +222429,1112.1450000126704,-0.05429236451709079 +222430,1112.1500000126705,-0.05429227819922295 +222431,1112.1550000126706,-0.054292191875982755 +222432,1112.1600000126707,-0.05429210554736926 +222433,1112.1650000126708,-0.05429201921338154 +222434,1112.170000012671,-0.05429193287401866 +222435,1112.175000012671,-0.054291846529279666 +222436,1112.1800000126711,-0.054291760179163644 +222437,1112.1850000126713,-0.05429167382366966 +222438,1112.1900000126714,-0.05429158746279674 +222439,1112.1950000126715,-0.05429150109654398 +222440,1112.2000000126716,-0.05429141472491044 +222441,1112.2050000126717,-0.05429132834789518 +222442,1112.2100000126718,-0.05429124196549725 +222443,1112.215000012672,-0.054291155577715716 +222444,1112.220000012672,-0.054291069184549644 +222445,1112.2250000126721,-0.054290982785998095 +222446,1112.2300000126722,-0.054290896382060125 +222447,1112.2350000126723,-0.054290809972734805 +222448,1112.2400000126725,-0.054290723558021184 +222449,1112.2450000126726,-0.054290637137918325 +222450,1112.2500000126727,-0.054290550712425285 +222451,1112.2550000126728,-0.054290464281541134 +222452,1112.260000012673,-0.05429037784526493 +222453,1112.265000012673,-0.05429029140359572 +222454,1112.270000012673,-0.05429020495653256 +222455,1112.2750000126732,-0.05429011850407453 +222456,1112.2800000126733,-0.054290032046220675 +222457,1112.2850000126734,-0.054289945582970046 +222458,1112.2900000126735,-0.054289859114321715 +222459,1112.2950000126737,-0.05428977264027472 +222460,1112.3000000126738,-0.05428968616082814 +222461,1112.3050000126739,-0.05428959967598101 +222462,1112.310000012674,-0.054289513185732406 +222463,1112.315000012674,-0.05428942669008137 +222464,1112.3200000126742,-0.05428934018902696 +222465,1112.3250000126743,-0.054289253682568234 +222466,1112.3300000126744,-0.05428916717070425 +222467,1112.3350000126745,-0.05428908065343405 +222468,1112.3400000126746,-0.054288994130756704 +222469,1112.3450000126747,-0.05428890760267126 +222470,1112.3500000126749,-0.054288821069176776 +222471,1112.355000012675,-0.054288734530272297 +222472,1112.360000012675,-0.05428864798595689 +222473,1112.3650000126752,-0.054288561436229586 +222474,1112.3700000126753,-0.054288474881089455 +222475,1112.3750000126754,-0.05428838832053555 +222476,1112.3800000126755,-0.05428830175456692 +222477,1112.3850000126756,-0.054288215183182616 +222478,1112.3900000126757,-0.05428812860638169 +222479,1112.3950000126758,-0.054288042024163194 +222480,1112.400000012676,-0.054287955436526175 +222481,1112.405000012676,-0.0542878688434697 +222482,1112.4100000126762,-0.0542877822449928 +222483,1112.4150000126763,-0.05428769564109453 +222484,1112.4200000126764,-0.05428760903177394 +222485,1112.4250000126765,-0.05428752241703009 +222486,1112.4300000126766,-0.054287435796862016 +222487,1112.4350000126767,-0.054287349171268776 +222488,1112.4400000126768,-0.05428726254024942 +222489,1112.445000012677,-0.05428717590380299 +222490,1112.450000012677,-0.05428708926192853 +222491,1112.4550000126771,-0.054287002614625095 +222492,1112.4600000126773,-0.05428691596189174 +222493,1112.4650000126774,-0.0542868293037275 +222494,1112.4700000126775,-0.05428674264013144 +222495,1112.4750000126776,-0.05428665597110259 +222496,1112.4800000126777,-0.05428656929664 +222497,1112.4850000126778,-0.054286482616742716 +222498,1112.490000012678,-0.054286395931409784 +222499,1112.495000012678,-0.05428630924064025 +222500,1112.5000000126781,-0.05428622254443316 +222501,1112.5050000126782,-0.05428613584278756 +222502,1112.5100000126783,-0.0542860491357025 +222503,1112.5150000126785,-0.054285962423177014 +222504,1112.5200000126786,-0.05428587570521016 +222505,1112.5250000126787,-0.05428578898180096 +222506,1112.5300000126788,-0.05428570225294849 +222507,1112.535000012679,-0.054285615518651756 +222508,1112.540000012679,-0.054285528778909825 +222509,1112.545000012679,-0.05428544203372174 +222510,1112.5500000126792,-0.054285355283086534 +222511,1112.5550000126793,-0.05428526852700326 +222512,1112.5600000126794,-0.05428518176547095 +222513,1112.5650000126795,-0.05428509499848866 +222514,1112.5700000126797,-0.05428500822605541 +222515,1112.5750000126798,-0.054284921448170265 +222516,1112.5800000126799,-0.05428483466483225 +222517,1112.58500001268,-0.0542847478760404 +222518,1112.59000001268,-0.05428466108179377 +222519,1112.5950000126802,-0.0542845742820914 +222520,1112.6000000126803,-0.05428448747693231 +222521,1112.6050000126804,-0.05428440066631556 +222522,1112.6100000126805,-0.0542843138502402 +222523,1112.6150000126806,-0.05428422702870523 +222524,1112.6200000126807,-0.05428414020170972 +222525,1112.6250000126809,-0.054284053369252704 +222526,1112.630000012681,-0.05428396653133321 +222527,1112.635000012681,-0.05428387968795027 +222528,1112.6400000126812,-0.054283792839102944 +222529,1112.6450000126813,-0.05428370598479026 +222530,1112.6500000126814,-0.05428361912501124 +222531,1112.6550000126815,-0.05428353225976494 +222532,1112.6600000126816,-0.05428344538905039 +222533,1112.6650000126817,-0.05428335851286663 +222534,1112.6700000126818,-0.05428327163121269 +222535,1112.675000012682,-0.054283184744087595 +222536,1112.680000012682,-0.054283097851490394 +222537,1112.6850000126822,-0.054283010953420134 +222538,1112.6900000126823,-0.054282924049875815 +222539,1112.6950000126824,-0.0542828371408565 +222540,1112.7000000126825,-0.05428275022636122 +222541,1112.7050000126826,-0.054282663306389 +222542,1112.7100000126827,-0.05428257638093888 +222543,1112.7150000126828,-0.05428248945000988 +222544,1112.720000012683,-0.054282402513601044 +222545,1112.725000012683,-0.05428231557171141 +222546,1112.7300000126831,-0.05428222862433999 +222547,1112.7350000126833,-0.05428214167148583 +222548,1112.7400000126834,-0.054282054713147974 +222549,1112.7450000126835,-0.054281967749325435 +222550,1112.7500000126836,-0.05428188078001725 +222551,1112.7550000126837,-0.05428179380522244 +222552,1112.7600000126838,-0.054281706824940046 +222553,1112.765000012684,-0.0542816198391691 +222554,1112.770000012684,-0.054281532847908626 +222555,1112.7750000126841,-0.054281445851157656 +222556,1112.7800000126842,-0.05428135884891522 +222557,1112.7850000126843,-0.05428127184118034 +222558,1112.7900000126845,-0.054281184827952064 +222559,1112.7950000126846,-0.05428109780922939 +222560,1112.8000000126847,-0.05428101078501137 +222561,1112.8050000126848,-0.05428092375529704 +222562,1112.810000012685,-0.05428083672008541 +222563,1112.815000012685,-0.0542807496793755 +222564,1112.8200000126851,-0.05428066263316636 +222565,1112.8250000126852,-0.054280575581457005 +222566,1112.8300000126853,-0.054280488524246454 +222567,1112.8350000126854,-0.05428040146153373 +222568,1112.8400000126856,-0.05428031439331788 +222569,1112.8450000126857,-0.05428022731959791 +222570,1112.8500000126858,-0.05428014024037286 +222571,1112.8550000126859,-0.05428005315564175 +222572,1112.860000012686,-0.0542799660654036 +222573,1112.865000012686,-0.054279878969657434 +222574,1112.8700000126862,-0.05427979186840229 +222575,1112.8750000126863,-0.05427970476163716 +222576,1112.8800000126864,-0.054279617649361116 +222577,1112.8850000126865,-0.054279530531573146 +222578,1112.8900000126866,-0.054279443408272274 +222579,1112.8950000126868,-0.054279356279457534 +222580,1112.9000000126869,-0.05427926914512794 +222581,1112.905000012687,-0.05427918200528252 +222582,1112.910000012687,-0.054279094859920295 +222583,1112.9150000126872,-0.05427900770904029 +222584,1112.9200000126873,-0.05427892055264151 +222585,1112.9250000126874,-0.054278833390722994 +222586,1112.9300000126875,-0.05427874622328375 +222587,1112.9350000126876,-0.0542786590503228 +222588,1112.9400000126877,-0.054278571871839175 +222589,1112.9450000126878,-0.05427848468783189 +222590,1112.950000012688,-0.05427839749829997 +222591,1112.955000012688,-0.05427831030324241 +222592,1112.9600000126882,-0.05427822310265824 +222593,1112.9650000126883,-0.0542781358965465 +222594,1112.9700000126884,-0.05427804868490618 +222595,1112.9750000126885,-0.05427796146773632 +222596,1112.9800000126886,-0.05427787424503592 +222597,1112.9850000126887,-0.054277787016804 +222598,1112.9900000126888,-0.0542776997830396 +222599,1112.995000012689,-0.0542776125437417 +222600,1113.000000012689,-0.05427752529890934 +222601,1113.0050000126892,-0.05427743804854153 +222602,1113.0100000126893,-0.05427735079263728 +222603,1113.0150000126894,-0.054277263531195614 +222604,1113.0200000126895,-0.054277176264215556 +222605,1113.0250000126896,-0.05427708899169611 +222606,1113.0300000126897,-0.05427700171363628 +222607,1113.0350000126898,-0.05427691443003509 +222608,1113.04000001269,-0.05427682714089157 +222609,1113.04500001269,-0.05427673984620471 +222610,1113.0500000126901,-0.05427665254597353 +222611,1113.0550000126902,-0.05427656524019706 +222612,1113.0600000126904,-0.05427647792887429 +222613,1113.0650000126905,-0.05427639061200423 +222614,1113.0700000126906,-0.054276303289585916 +222615,1113.0750000126907,-0.054276215961618336 +222616,1113.0800000126908,-0.05427612862810052 +222617,1113.085000012691,-0.05427604128903148 +222618,1113.090000012691,-0.05427595394441022 +222619,1113.0950000126911,-0.054275866594235736 +222620,1113.1000000126912,-0.05427577923850706 +222621,1113.1050000126913,-0.0542756918772232 +222622,1113.1100000126914,-0.05427560451038315 +222623,1113.1150000126916,-0.05427551713798593 +222624,1113.1200000126917,-0.054275429760030545 +222625,1113.1250000126918,-0.054275342376516024 +222626,1113.1300000126919,-0.05427525498744136 +222627,1113.135000012692,-0.05427516759280556 +222628,1113.140000012692,-0.054275080192607635 +222629,1113.1450000126922,-0.05427499278684658 +222630,1113.1500000126923,-0.05427490537552143 +222631,1113.1550000126924,-0.054274817958631164 +222632,1113.1600000126925,-0.0542747305361748 +222633,1113.1650000126926,-0.05427464310815135 +222634,1113.1700000126928,-0.05427455567455982 +222635,1113.1750000126929,-0.05427446823539921 +222636,1113.180000012693,-0.054274380790668535 +222637,1113.185000012693,-0.054274293340366785 +222638,1113.1900000126932,-0.05427420588449297 +222639,1113.1950000126933,-0.05427411842304611 +222640,1113.2000000126934,-0.05427403095602519 +222641,1113.2050000126935,-0.054273943483429225 +222642,1113.2100000126936,-0.054273856005257214 +222643,1113.2150000126937,-0.05427376852150816 +222644,1113.2200000126938,-0.054273681032181074 +222645,1113.225000012694,-0.05427359353727495 +222646,1113.230000012694,-0.054273506036788786 +222647,1113.2350000126942,-0.0542734185307216 +222648,1113.2400000126943,-0.05427333101907239 +222649,1113.2450000126944,-0.05427324350184016 +222650,1113.2500000126945,-0.0542731559790239 +222651,1113.2550000126946,-0.054273068450622616 +222652,1113.2600000126947,-0.05427298091663532 +222653,1113.2650000126948,-0.054272893377060996 +222654,1113.270000012695,-0.054272805831898654 +222655,1113.275000012695,-0.05427271828114728 +222656,1113.2800000126952,-0.05427263072480589 +222657,1113.2850000126953,-0.05427254316287348 +222658,1113.2900000126954,-0.054272455595349045 +222659,1113.2950000126955,-0.05427236802223159 +222660,1113.3000000126956,-0.0542722804435201 +222661,1113.3050000126957,-0.05427219285921359 +222662,1113.3100000126958,-0.054272105269311054 +222663,1113.315000012696,-0.05427201767381149 +222664,1113.320000012696,-0.054271930072713886 +222665,1113.3250000126961,-0.054271842466017246 +222666,1113.3300000126962,-0.054271754853720565 +222667,1113.3350000126964,-0.054271667235822836 +222668,1113.3400000126965,-0.054271579612323054 +222669,1113.3450000126966,-0.05427149198322023 +222670,1113.3500000126967,-0.054271404348513345 +222671,1113.3550000126968,-0.0542713167082014 +222672,1113.360000012697,-0.054271229062283384 +222673,1113.365000012697,-0.05427114141075829 +222674,1113.3700000126971,-0.05427105375362513 +222675,1113.3750000126972,-0.05427096609088288 +222676,1113.3800000126973,-0.05427087842253055 +222677,1113.3850000126974,-0.05427079074856711 +222678,1113.3900000126976,-0.054270703068991566 +222679,1113.3950000126977,-0.05427061538380292 +222680,1113.4000000126978,-0.05427052769300015 +222681,1113.4050000126979,-0.05427043999658226 +222682,1113.410000012698,-0.05427035229454822 +222683,1113.415000012698,-0.05427026458689704 +222684,1113.4200000126982,-0.05427017687362771 +222685,1113.4250000126983,-0.05427008915473921 +222686,1113.4300000126984,-0.05427000143023055 +222687,1113.4350000126985,-0.0542699137001007 +222688,1113.4400000126986,-0.05426982596434867 +222689,1113.4450000126988,-0.05426973822297343 +222690,1113.4500000126989,-0.05426965047597398 +222691,1113.455000012699,-0.05426956272334931 +222692,1113.460000012699,-0.05426947496509841 +222693,1113.4650000126992,-0.05426938720122026 +222694,1113.4700000126993,-0.054269299431713845 +222695,1113.4750000126994,-0.054269211656578165 +222696,1113.4800000126995,-0.054269123875812196 +222697,1113.4850000126996,-0.05426903608941494 +222698,1113.4900000126997,-0.05426894829738538 +222699,1113.4950000126998,-0.054268860499722495 +222700,1113.5000000127,-0.05426877269642527 +222701,1113.5050000127,-0.05426868488749271 +222702,1113.5100000127002,-0.05426859707292379 +222703,1113.5150000127003,-0.05426850925271748 +222704,1113.5200000127004,-0.05426842142687278 +222705,1113.5250000127005,-0.05426833359538867 +222706,1113.5300000127006,-0.05426824575826413 +222707,1113.5350000127007,-0.054268157915498154 +222708,1113.5400000127008,-0.054268070067089724 +222709,1113.545000012701,-0.05426798221303783 +222710,1113.550000012701,-0.054267894353341437 +222711,1113.5550000127012,-0.05426780648799954 +222712,1113.5600000127013,-0.054267718617011115 +222713,1113.5650000127014,-0.054267630740375154 +222714,1113.5700000127015,-0.054267542858090635 +222715,1113.5750000127016,-0.05426745497015654 +222716,1113.5800000127017,-0.05426736707657184 +222717,1113.5850000127018,-0.05426727917733554 +222718,1113.590000012702,-0.0542671912724466 +222719,1113.595000012702,-0.054267103361904004 +222720,1113.6000000127021,-0.05426701544570674 +222721,1113.6050000127022,-0.054266927523853765 +222722,1113.6100000127024,-0.054266839596344096 +222723,1113.6150000127025,-0.054266751663176696 +222724,1113.6200000127026,-0.054266663724350524 +222725,1113.6250000127027,-0.05426657577986458 +222726,1113.6300000127028,-0.054266487829717845 +222727,1113.635000012703,-0.05426639987390928 +222728,1113.640000012703,-0.05426631191243787 +222729,1113.6450000127031,-0.0542662239453026 +222730,1113.6500000127032,-0.05426613597250244 +222731,1113.6550000127033,-0.05426604799403637 +222732,1113.6600000127034,-0.054265960009903365 +222733,1113.6650000127036,-0.05426587202010239 +222734,1113.6700000127037,-0.05426578402463244 +222735,1113.6750000127038,-0.05426569602349248 +222736,1113.6800000127039,-0.05426560801668148 +222737,1113.685000012704,-0.05426552000419844 +222738,1113.690000012704,-0.0542654319860423 +222739,1113.6950000127042,-0.05426534396221206 +222740,1113.7000000127043,-0.05426525593270668 +222741,1113.7050000127044,-0.054265167897525134 +222742,1113.7100000127045,-0.054265079856666405 +222743,1113.7150000127046,-0.05426499181012946 +222744,1113.7200000127048,-0.05426490375791328 +222745,1113.7250000127049,-0.05426481570001681 +222746,1113.730000012705,-0.054264727636439046 +222747,1113.735000012705,-0.05426463956717896 +222748,1113.7400000127052,-0.054264551492235524 +222749,1113.7450000127053,-0.054264463411607705 +222750,1113.7500000127054,-0.05426437532529447 +222751,1113.7550000127055,-0.054264287233294795 +222752,1113.7600000127056,-0.05426419913560764 +222753,1113.7650000127057,-0.054264111032232 +222754,1113.7700000127059,-0.05426402292316681 +222755,1113.775000012706,-0.05426393480841105 +222756,1113.780000012706,-0.054263846687963704 +222757,1113.7850000127062,-0.054263758561823736 +222758,1113.7900000127063,-0.05426367042999011 +222759,1113.7950000127064,-0.054263582292461796 +222760,1113.8000000127065,-0.054263494149237756 +222761,1113.8050000127066,-0.05426340600031696 +222762,1113.8100000127067,-0.054263317845698385 +222763,1113.8150000127068,-0.05426322968538098 +222764,1113.820000012707,-0.054263141519363726 +222765,1113.825000012707,-0.054263053347645585 +222766,1113.8300000127072,-0.05426296517022552 +222767,1113.8350000127073,-0.05426287698710249 +222768,1113.8400000127074,-0.05426278879827548 +222769,1113.8450000127075,-0.05426270060374344 +222770,1113.8500000127076,-0.05426261240350534 +222771,1113.8550000127077,-0.05426252419756014 +222772,1113.8600000127078,-0.054262435985906805 +222773,1113.865000012708,-0.0542623477685443 +222774,1113.870000012708,-0.05426225954547159 +222775,1113.8750000127081,-0.054262171316687646 +222776,1113.8800000127083,-0.05426208308219141 +222777,1113.8850000127084,-0.05426199484198186 +222778,1113.8900000127085,-0.05426190659605796 +222779,1113.8950000127086,-0.05426181834441864 +222780,1113.9000000127087,-0.0542617300870629 +222781,1113.9050000127088,-0.054261641823989695 +222782,1113.910000012709,-0.05426155355519796 +222783,1113.915000012709,-0.05426146528068669 +222784,1113.9200000127091,-0.05426137700045483 +222785,1113.9250000127092,-0.05426128871450133 +222786,1113.9300000127093,-0.05426120042282517 +222787,1113.9350000127095,-0.05426111212542529 +222788,1113.9400000127096,-0.05426102382230064 +222789,1113.9450000127097,-0.05426093551345021 +222790,1113.9500000127098,-0.05426084719887294 +222791,1113.95500001271,-0.05426075887856779 +222792,1113.96000001271,-0.05426067055253371 +222793,1113.96500001271,-0.05426058222076968 +222794,1113.9700000127102,-0.054260493883274634 +222795,1113.9750000127103,-0.054260405540047546 +222796,1113.9800000127104,-0.05426031719108737 +222797,1113.9850000127105,-0.05426022883639304 +222798,1113.9900000127107,-0.05426014047596354 +222799,1113.9950000127108,-0.05426005210979781 +222800,1114.0000000127109,-0.05425996373789481 +222801,1114.005000012711,-0.05425987536025349 +222802,1114.010000012711,-0.0542597869768728 +222803,1114.0150000127112,-0.05425969858775172 +222804,1114.0200000127113,-0.05425961019288917 +222805,1114.0250000127114,-0.05425952179228412 +222806,1114.0300000127115,-0.05425943338593552 +222807,1114.0350000127116,-0.054259344973842334 +222808,1114.0400000127117,-0.054259256556003506 +222809,1114.0450000127119,-0.05425916813241798 +222810,1114.050000012712,-0.054259079703084724 +222811,1114.055000012712,-0.054258991268002675 +222812,1114.0600000127122,-0.0542589028271708 +222813,1114.0650000127123,-0.054258814380588036 +222814,1114.0700000127124,-0.05425872592825334 +222815,1114.0750000127125,-0.054258637470165655 +222816,1114.0800000127126,-0.05425854900632393 +222817,1114.0850000127127,-0.05425846053672713 +222818,1114.0900000127128,-0.05425837206137419 +222819,1114.095000012713,-0.05425828358026406 +222820,1114.100000012713,-0.0542581950933957 +222821,1114.1050000127132,-0.05425810660076806 +222822,1114.1100000127133,-0.05425801810238008 +222823,1114.1150000127134,-0.054257929598230704 +222824,1114.1200000127135,-0.05425784108831887 +222825,1114.1250000127136,-0.05425775257264354 +222826,1114.1300000127137,-0.05425766405120366 +222827,1114.1350000127138,-0.05425757552399819 +222828,1114.140000012714,-0.05425748699102604 +222829,1114.145000012714,-0.0542573984522862 +222830,1114.1500000127141,-0.054257309907777586 +222831,1114.1550000127143,-0.054257221357499136 +222832,1114.1600000127144,-0.054257132801449816 +222833,1114.1650000127145,-0.05425704423962856 +222834,1114.1700000127146,-0.05425695567203431 +222835,1114.1750000127147,-0.05425686709866602 +222836,1114.1800000127148,-0.054256778519522625 +222837,1114.185000012715,-0.054256689934603086 +222838,1114.190000012715,-0.05425660134390633 +222839,1114.1950000127151,-0.05425651274743129 +222840,1114.2000000127152,-0.054256424145176924 +222841,1114.2050000127153,-0.05425633553714217 +222842,1114.2100000127155,-0.05425624692332596 +222843,1114.2150000127156,-0.054256158303727264 +222844,1114.2200000127157,-0.05425606967834499 +222845,1114.2250000127158,-0.054255981047178096 +222846,1114.230000012716,-0.05425589241022551 +222847,1114.235000012716,-0.0542558037674862 +222848,1114.240000012716,-0.054255715118959075 +222849,1114.2450000127162,-0.05425562646464309 +222850,1114.2500000127163,-0.05425553780453717 +222851,1114.2550000127164,-0.05425544913864028 +222852,1114.2600000127165,-0.05425536046695132 +222853,1114.2650000127167,-0.05425527178946926 +222854,1114.2700000127168,-0.05425518310619303 +222855,1114.2750000127169,-0.05425509441712157 +222856,1114.280000012717,-0.0542550057222538 +222857,1114.285000012717,-0.05425491702158867 +222858,1114.2900000127172,-0.054254828315125125 +222859,1114.2950000127173,-0.05425473960286209 +222860,1114.3000000127174,-0.05425465088479849 +222861,1114.3050000127175,-0.054254562160933294 +222862,1114.3100000127176,-0.054254473431265396 +222863,1114.3150000127177,-0.05425438469579376 +222864,1114.3200000127179,-0.054254295954517306 +222865,1114.325000012718,-0.05425420720743498 +222866,1114.330000012718,-0.05425411845454569 +222867,1114.3350000127182,-0.0542540296958484 +222868,1114.3400000127183,-0.054253940931342046 +222869,1114.3450000127184,-0.05425385216102554 +222870,1114.3500000127185,-0.05425376338489781 +222871,1114.3550000127186,-0.054253674602957803 +222872,1114.3600000127187,-0.054253585815204446 +222873,1114.3650000127188,-0.054253497021636676 +222874,1114.370000012719,-0.05425340822225343 +222875,1114.375000012719,-0.05425331941705362 +222876,1114.3800000127192,-0.054253230606036186 +222877,1114.3850000127193,-0.05425314178920006 +222878,1114.3900000127194,-0.05425305296654416 +222879,1114.3950000127195,-0.05425296413806744 +222880,1114.4000000127196,-0.05425287530376881 +222881,1114.4050000127197,-0.0542527864636472 +222882,1114.4100000127198,-0.054252697617701545 +222883,1114.41500001272,-0.05425260876593078 +222884,1114.42000001272,-0.05425251990833381 +222885,1114.4250000127201,-0.05425243104490957 +222886,1114.4300000127203,-0.054252342175657005 +222887,1114.4350000127204,-0.05425225330057504 +222888,1114.4400000127205,-0.05425216441966258 +222889,1114.4450000127206,-0.05425207553291855 +222890,1114.4500000127207,-0.054251986640341913 +222891,1114.4550000127208,-0.05425189774193156 +222892,1114.460000012721,-0.054251808837686426 +222893,1114.465000012721,-0.054251719927605434 +222894,1114.4700000127211,-0.05425163101168752 +222895,1114.4750000127212,-0.054251542089931604 +222896,1114.4800000127213,-0.0542514531623366 +222897,1114.4850000127215,-0.054251364228901436 +222898,1114.4900000127216,-0.05425127528962504 +222899,1114.4950000127217,-0.05425118634450634 +222900,1114.5000000127218,-0.054251097393544244 +222901,1114.505000012722,-0.05425100843673768 +222902,1114.510000012722,-0.05425091947408558 +222903,1114.515000012722,-0.05425083050558685 +222904,1114.5200000127222,-0.054250741531240425 +222905,1114.5250000127223,-0.05425065255104522 +222906,1114.5300000127224,-0.05425056356500015 +222907,1114.5350000127225,-0.05425047457310414 +222908,1114.5400000127227,-0.05425038557535612 +222909,1114.5450000127228,-0.054250296571755 +222910,1114.5500000127229,-0.054250207562299695 +222911,1114.555000012723,-0.05425011854698913 +222912,1114.560000012723,-0.05425002952582223 +222913,1114.5650000127232,-0.0542499404987979 +222914,1114.5700000127233,-0.05424985146591506 +222915,1114.5750000127234,-0.054249762427172644 +222916,1114.5800000127235,-0.05424967338256956 +222917,1114.5850000127236,-0.0542495843321047 +222918,1114.5900000127237,-0.05424949527577702 +222919,1114.5950000127239,-0.05424940621358542 +222920,1114.600000012724,-0.05424931714552881 +222921,1114.605000012724,-0.05424922807160611 +222922,1114.6100000127242,-0.05424913899181624 +222923,1114.6150000127243,-0.05424904990615812 +222924,1114.6200000127244,-0.05424896081463065 +222925,1114.6250000127245,-0.05424887171723276 +222926,1114.6300000127246,-0.05424878261396334 +222927,1114.6350000127247,-0.05424869350482133 +222928,1114.6400000127248,-0.05424860438980564 +222929,1114.645000012725,-0.05424851526891516 +222930,1114.650000012725,-0.05424842614214883 +222931,1114.6550000127252,-0.05424833700950555 +222932,1114.6600000127253,-0.05424824787098423 +222933,1114.6650000127254,-0.054248158726583784 +222934,1114.6700000127255,-0.054248069576303126 +222935,1114.6750000127256,-0.05424798042014116 +222936,1114.6800000127257,-0.054247891258096814 +222937,1114.6850000127258,-0.054247802090168974 +222938,1114.690000012726,-0.05424771291635658 +222939,1114.695000012726,-0.054247623736658514 +222940,1114.7000000127262,-0.0542475345510737 +222941,1114.7050000127263,-0.054247445359601035 +222942,1114.7100000127264,-0.05424735616223944 +222943,1114.7150000127265,-0.05424726695898782 +222944,1114.7200000127266,-0.05424717774984508 +222945,1114.7250000127267,-0.05424708853481013 +222946,1114.7300000127268,-0.05424699931388189 +222947,1114.735000012727,-0.05424691008705924 +222948,1114.740000012727,-0.0542468208543411 +222949,1114.7450000127271,-0.05424673161572638 +222950,1114.7500000127272,-0.05424664237121398 +222951,1114.7550000127274,-0.054246553120802815 +222952,1114.7600000127275,-0.054246463864491785 +222953,1114.7650000127276,-0.0542463746022798 +222954,1114.7700000127277,-0.05424628533416575 +222955,1114.7750000127278,-0.05424619606014855 +222956,1114.780000012728,-0.05424610678022711 +222957,1114.785000012728,-0.05424601749440032 +222958,1114.7900000127281,-0.05424592820266709 +222959,1114.7950000127282,-0.05424583890502632 +222960,1114.8000000127283,-0.05424574960147692 +222961,1114.8050000127284,-0.05424566029201779 +222962,1114.8100000127286,-0.054245570976647825 +222963,1114.8150000127287,-0.05424548165536593 +222964,1114.8200000127288,-0.05424539232817102 +222965,1114.8250000127289,-0.05424530299506198 +222966,1114.830000012729,-0.05424521365603772 +222967,1114.835000012729,-0.05424512431109713 +222968,1114.8400000127292,-0.05424503496023911 +222969,1114.8450000127293,-0.05424494560346257 +222970,1114.8500000127294,-0.05424485624076641 +222971,1114.8550000127295,-0.054244766872149526 +222972,1114.8600000127296,-0.05424467749761081 +222973,1114.8650000127298,-0.05424458811714916 +222974,1114.8700000127299,-0.05424449873076348 +222975,1114.87500001273,-0.05424440933845267 +222976,1114.88000001273,-0.05424431994021562 +222977,1114.8850000127302,-0.05424423053605122 +222978,1114.8900000127303,-0.05424414112595838 +222979,1114.8950000127304,-0.054244051709936 +222980,1114.9000000127305,-0.05424396228798297 +222981,1114.9050000127306,-0.05424387286009818 +222982,1114.9100000127307,-0.05424378342628053 +222983,1114.9150000127308,-0.05424369398652891 +222984,1114.920000012731,-0.054243604540842226 +222985,1114.925000012731,-0.054243515089219374 +222986,1114.9300000127312,-0.05424342563165924 +222987,1114.9350000127313,-0.05424333616816071 +222988,1114.9400000127314,-0.054243246698722686 +222989,1114.9450000127315,-0.05424315722334406 +222990,1114.9500000127316,-0.05424306774202371 +222991,1114.9550000127317,-0.05424297825476056 +222992,1114.9600000127318,-0.054242888761553476 +222993,1114.965000012732,-0.05424279926240135 +222994,1114.970000012732,-0.05424270975730309 +222995,1114.9750000127322,-0.054242620246257575 +222996,1114.9800000127323,-0.054242530729263695 +222997,1114.9850000127324,-0.05424244120632034 +222998,1114.9900000127325,-0.0542423516774264 +222999,1114.9950000127326,-0.05424226214258077 +223000,1115.0000000127327,-0.054242172601782344 +223001,1115.0050000127328,-0.05424208305503 +223002,1115.010000012733,-0.05424199350232263 +223003,1115.015000012733,-0.054241903943659124 +223004,1115.0200000127331,-0.05424181437903836 +223005,1115.0250000127332,-0.05424172480845924 +223006,1115.0300000127334,-0.05424163523192064 +223007,1115.0350000127335,-0.054241545649421456 +223008,1115.0400000127336,-0.054241456060960556 +223009,1115.0450000127337,-0.05424136646653685 +223010,1115.0500000127338,-0.054241276866149206 +223011,1115.055000012734,-0.05424118725979652 +223012,1115.060000012734,-0.05424109764747768 +223013,1115.0650000127341,-0.05424100802919155 +223014,1115.0700000127342,-0.054240918404937034 +223015,1115.0750000127343,-0.05424082877471301 +223016,1115.0800000127344,-0.05424073913851837 +223017,1115.0850000127346,-0.054240649496351975 +223018,1115.0900000127347,-0.05424055984821273 +223019,1115.0950000127348,-0.0542404701940995 +223020,1115.1000000127349,-0.05424038053401118 +223021,1115.105000012735,-0.054240290867946656 +223022,1115.110000012735,-0.0542402011959048 +223023,1115.1150000127352,-0.0542401115178845 +223024,1115.1200000127353,-0.05424002183388463 +223025,1115.1250000127354,-0.054239932143904074 +223026,1115.1300000127355,-0.0542398424479417 +223027,1115.1350000127356,-0.0542397527459964 +223028,1115.1400000127358,-0.05423966303806705 +223029,1115.1450000127359,-0.054239573324152544 +223030,1115.150000012736,-0.054239483604251744 +223031,1115.155000012736,-0.05423939387836353 +223032,1115.1600000127362,-0.05423930414648679 +223033,1115.1650000127363,-0.05423921440862039 +223034,1115.1700000127364,-0.05423912466476321 +223035,1115.1750000127365,-0.05423903491491413 +223036,1115.1800000127366,-0.05423894515907203 +223037,1115.1850000127367,-0.05423885539723578 +223038,1115.1900000127368,-0.05423876562940426 +223039,1115.195000012737,-0.05423867585557633 +223040,1115.200000012737,-0.05423858607575089 +223041,1115.2050000127372,-0.0542384962899268 +223042,1115.2100000127373,-0.05423840649810295 +223043,1115.2150000127374,-0.05423831670027819 +223044,1115.2200000127375,-0.05423822689645141 +223045,1115.2250000127376,-0.05423813708662148 +223046,1115.2300000127377,-0.05423804727078728 +223047,1115.2350000127378,-0.05423795744894767 +223048,1115.240000012738,-0.05423786762110153 +223049,1115.245000012738,-0.05423777778724774 +223050,1115.2500000127382,-0.054237687947385156 +223051,1115.2550000127383,-0.054237598101512664 +223052,1115.2600000127384,-0.054237508249629134 +223053,1115.2650000127385,-0.05423741839173341 +223054,1115.2700000127386,-0.054237328527824404 +223055,1115.2750000127387,-0.05423723865790096 +223056,1115.2800000127388,-0.05423714878196195 +223057,1115.285000012739,-0.05423705890000625 +223058,1115.290000012739,-0.05423696901203272 +223059,1115.2950000127391,-0.05423687911804024 +223060,1115.3000000127392,-0.054236789218027666 +223061,1115.3050000127394,-0.054236699311993875 +223062,1115.3100000127395,-0.054236609399937734 +223063,1115.3150000127396,-0.05423651948185811 +223064,1115.3200000127397,-0.05423642955775387 +223065,1115.3250000127398,-0.05423633962762388 +223066,1115.33000001274,-0.05423624969146701 +223067,1115.33500001274,-0.05423615974928212 +223068,1115.3400000127401,-0.054236069801068085 +223069,1115.3450000127402,-0.054235979846823754 +223070,1115.3500000127403,-0.054235889886548 +223071,1115.3550000127404,-0.054235799920239684 +223072,1115.3600000127406,-0.05423570994789768 +223073,1115.3650000127407,-0.054235619969520844 +223074,1115.3700000127408,-0.054235529985108034 +223075,1115.3750000127409,-0.05423543999465812 +223076,1115.380000012741,-0.05423534999816998 +223077,1115.385000012741,-0.05423525999564245 +223078,1115.3900000127412,-0.054235169987074415 +223079,1115.3950000127413,-0.05423507997246472 +223080,1115.4000000127414,-0.054234989951812224 +223081,1115.4050000127415,-0.0542348999251158 +223082,1115.4100000127416,-0.0542348098923743 +223083,1115.4150000127418,-0.0542347198535866 +223084,1115.4200000127419,-0.05423462980875154 +223085,1115.425000012742,-0.05423453975786798 +223086,1115.430000012742,-0.05423444970093481 +223087,1115.4350000127422,-0.05423435963795085 +223088,1115.4400000127423,-0.05423426956891497 +223089,1115.4450000127424,-0.054234179493826036 +223090,1115.4500000127425,-0.05423408941268291 +223091,1115.4550000127426,-0.054233999325484436 +223092,1115.4600000127427,-0.05423390923222948 +223093,1115.4650000127428,-0.054233819132916895 +223094,1115.470000012743,-0.05423372902754554 +223095,1115.475000012743,-0.054233638916114275 +223096,1115.4800000127432,-0.05423354879862194 +223097,1115.4850000127433,-0.05423345867506741 +223098,1115.4900000127434,-0.05423336854544952 +223099,1115.4950000127435,-0.054233278409767154 +223100,1115.5000000127436,-0.054233188268019136 +223101,1115.5050000127437,-0.05423309812020433 +223102,1115.5100000127438,-0.05423300796632159 +223103,1115.515000012744,-0.05423291780636978 +223104,1115.520000012744,-0.05423282764034774 +223105,1115.5250000127442,-0.05423273746825431 +223106,1115.5300000127443,-0.05423264729008838 +223107,1115.5350000127444,-0.05423255710584877 +223108,1115.5400000127445,-0.05423246691553435 +223109,1115.5450000127446,-0.054232376719143945 +223110,1115.5500000127447,-0.05423228651667643 +223111,1115.5550000127448,-0.05423219630813064 +223112,1115.560000012745,-0.054232106093505435 +223113,1115.565000012745,-0.05423201587279967 +223114,1115.5700000127451,-0.05423192564601219 +223115,1115.5750000127452,-0.05423183541314184 +223116,1115.5800000127454,-0.05423174517418747 +223117,1115.5850000127455,-0.05423165492914792 +223118,1115.5900000127456,-0.05423156467802205 +223119,1115.5950000127457,-0.05423147442080871 +223120,1115.6000000127458,-0.054231384157506723 +223121,1115.605000012746,-0.05423129388811496 +223122,1115.610000012746,-0.05423120361263227 +223123,1115.6150000127461,-0.054231113331057484 +223124,1115.6200000127462,-0.054231023043389455 +223125,1115.6250000127463,-0.05423093274962703 +223126,1115.6300000127465,-0.05423084244976904 +223127,1115.6350000127466,-0.05423075214381434 +223128,1115.6400000127467,-0.05423066183176178 +223129,1115.6450000127468,-0.0542305715136102 +223130,1115.650000012747,-0.05423048118935844 +223131,1115.655000012747,-0.054230390859005356 +223132,1115.660000012747,-0.05423030052254977 +223133,1115.6650000127472,-0.05423021017999054 +223134,1115.6700000127473,-0.054230119831326494 +223135,1115.6750000127474,-0.05423002947655648 +223136,1115.6800000127475,-0.054229939115679346 +223137,1115.6850000127477,-0.05422984874869392 +223138,1115.6900000127478,-0.05422975837559906 +223139,1115.6950000127479,-0.0542296679963936 +223140,1115.700000012748,-0.05422957761107638 +223141,1115.705000012748,-0.05422948721964623 +223142,1115.7100000127482,-0.054229396822102004 +223143,1115.7150000127483,-0.054229306418442536 +223144,1115.7200000127484,-0.054229216008666654 +223145,1115.7250000127485,-0.054229125592773215 +223146,1115.7300000127486,-0.05422903517076104 +223147,1115.7350000127487,-0.054228944742628966 +223148,1115.7400000127489,-0.054228854308375846 +223149,1115.745000012749,-0.0542287638680005 +223150,1115.750000012749,-0.05422867342150178 +223151,1115.7550000127492,-0.054228582968878516 +223152,1115.7600000127493,-0.054228492510129546 +223153,1115.7650000127494,-0.05422840204525369 +223154,1115.7700000127495,-0.0542283115742498 +223155,1115.7750000127496,-0.054228221097116704 +223156,1115.7800000127497,-0.054228130613853225 +223157,1115.7850000127498,-0.05422804012445822 +223158,1115.79000001275,-0.0542279496289305 +223159,1115.79500001275,-0.054227859127268914 +223160,1115.8000000127502,-0.05422776861947229 +223161,1115.8050000127503,-0.054227678105539454 +223162,1115.8100000127504,-0.05422758758546925 +223163,1115.8150000127505,-0.05422749705926051 +223164,1115.8200000127506,-0.05422740652691206 +223165,1115.8250000127507,-0.05422731598842273 +223166,1115.8300000127508,-0.05422722544379134 +223167,1115.835000012751,-0.05422713489301674 +223168,1115.840000012751,-0.05422704433609775 +223169,1115.8450000127511,-0.05422695377303319 +223170,1115.8500000127513,-0.05422686320382191 +223171,1115.8550000127514,-0.05422677262846271 +223172,1115.8600000127515,-0.05422668204695445 +223173,1115.8650000127516,-0.054226591459295946 +223174,1115.8700000127517,-0.05422650086548602 +223175,1115.8750000127518,-0.0542264102655235 +223176,1115.880000012752,-0.05422631965940721 +223177,1115.885000012752,-0.05422622904713599 +223178,1115.8900000127521,-0.05422613842870865 +223179,1115.8950000127522,-0.05422604780412404 +223180,1115.9000000127523,-0.05422595717338096 +223181,1115.9050000127525,-0.05422586653647825 +223182,1115.9100000127526,-0.054225775893414735 +223183,1115.9150000127527,-0.05422568524418922 +223184,1115.9200000127528,-0.054225594588800545 +223185,1115.925000012753,-0.054225503927247544 +223186,1115.930000012753,-0.05422541325952902 +223187,1115.935000012753,-0.05422532258564381 +223188,1115.9400000127532,-0.05422523190559072 +223189,1115.9450000127533,-0.05422514121936858 +223190,1115.9500000127534,-0.054225050526976216 +223191,1115.9550000127535,-0.05422495982841245 +223192,1115.9600000127537,-0.05422486912367611 +223193,1115.9650000127538,-0.05422477841276602 +223194,1115.9700000127539,-0.05422468769568097 +223195,1115.975000012754,-0.054224596972419804 +223196,1115.980000012754,-0.054224506242981335 +223197,1115.9850000127542,-0.05422441550736437 +223198,1115.9900000127543,-0.054224324765567745 +223199,1115.9950000127544,-0.05422423401759028 +223200,1116.0000000127545,-0.05422414326343078 +223201,1116.0050000127546,-0.05422405250308807 +223202,1116.0100000127547,-0.05422396173656098 +223203,1116.0150000127549,-0.0542238709638483 +223204,1116.020000012755,-0.05422378018494887 +223205,1116.025000012755,-0.05422368939986148 +223206,1116.0300000127552,-0.05422359860858498 +223207,1116.0350000127553,-0.05422350781111817 +223208,1116.0400000127554,-0.05422341700745986 +223209,1116.0450000127555,-0.054223326197608855 +223210,1116.0500000127556,-0.054223235381564 +223211,1116.0550000127557,-0.05422314455932409 +223212,1116.0600000127558,-0.05422305373088793 +223213,1116.065000012756,-0.05422296289625435 +223214,1116.070000012756,-0.054222872055422144 +223215,1116.0750000127562,-0.05422278120839015 +223216,1116.0800000127563,-0.05422269035515716 +223217,1116.0850000127564,-0.054222599495721995 +223218,1116.0900000127565,-0.05422250863008347 +223219,1116.0950000127566,-0.05422241775824038 +223220,1116.1000000127567,-0.05422232688019156 +223221,1116.1050000127568,-0.05422223599593581 +223222,1116.110000012757,-0.05422214510547192 +223223,1116.115000012757,-0.05422205420879873 +223224,1116.1200000127571,-0.05422196330591503 +223225,1116.1250000127573,-0.05422187239681964 +223226,1116.1300000127574,-0.054221781481511355 +223227,1116.1350000127575,-0.054221690559989 +223228,1116.1400000127576,-0.05422159963225137 +223229,1116.1450000127577,-0.05422150869829727 +223230,1116.1500000127578,-0.05422141775812553 +223231,1116.155000012758,-0.05422132681173493 +223232,1116.160000012758,-0.05422123585912428 +223233,1116.1650000127581,-0.0542211449002924 +223234,1116.1700000127582,-0.054221053935238094 +223235,1116.1750000127583,-0.054220962963960145 +223236,1116.1800000127585,-0.054220871986457385 +223237,1116.1850000127586,-0.054220781002728605 +223238,1116.1900000127587,-0.05422069001277261 +223239,1116.1950000127588,-0.0542205990165882 +223240,1116.200000012759,-0.05422050801417419 +223241,1116.205000012759,-0.05422041700552937 +223242,1116.210000012759,-0.05422032599065254 +223243,1116.2150000127592,-0.054220234969542515 +223244,1116.2200000127593,-0.054220143942198096 +223245,1116.2250000127594,-0.054220052908618074 +223246,1116.2300000127595,-0.054219961868801264 +223247,1116.2350000127597,-0.05421987082274646 +223248,1116.2400000127598,-0.05421977977045246 +223249,1116.2450000127599,-0.05421968871191807 +223250,1116.25000001276,-0.054219597647142084 +223251,1116.25500001276,-0.054219506576123296 +223252,1116.2600000127602,-0.054219415498860515 +223253,1116.2650000127603,-0.05421932441535253 +223254,1116.2700000127604,-0.05421923332559814 +223255,1116.2750000127605,-0.054219142229596146 +223256,1116.2800000127606,-0.054219051127345354 +223257,1116.2850000127607,-0.05421896001884454 +223258,1116.2900000127609,-0.05421886890409253 +223259,1116.295000012761,-0.054218777783088104 +223260,1116.300000012761,-0.054218686655830045 +223261,1116.3050000127612,-0.05421859552231716 +223262,1116.3100000127613,-0.05421850438254825 +223263,1116.3150000127614,-0.0542184132365221 +223264,1116.3200000127615,-0.05421832208423751 +223265,1116.3250000127616,-0.05421823092569328 +223266,1116.3300000127617,-0.05421813976088818 +223267,1116.3350000127618,-0.05421804858982102 +223268,1116.340000012762,-0.05421795741249061 +223269,1116.345000012762,-0.054217866228895704 +223270,1116.3500000127622,-0.05421777503903512 +223271,1116.3550000127623,-0.05421768384290765 +223272,1116.3600000127624,-0.05421759264051207 +223273,1116.3650000127625,-0.054217501431847184 +223274,1116.3700000127626,-0.054217410216911774 +223275,1116.3750000127627,-0.054217318995704644 +223276,1116.3800000127628,-0.054217227768224574 +223277,1116.385000012763,-0.05421713653447034 +223278,1116.390000012763,-0.054217045294440755 +223279,1116.3950000127631,-0.0542169540481346 +223280,1116.4000000127633,-0.05421686279555066 +223281,1116.4050000127634,-0.054216771536687705 +223282,1116.4100000127635,-0.05421668027154455 +223283,1116.4150000127636,-0.05421658900011997 +223284,1116.4200000127637,-0.05421649772241276 +223285,1116.4250000127638,-0.05421640643842169 +223286,1116.430000012764,-0.05421631514814555 +223287,1116.435000012764,-0.05421622385158315 +223288,1116.4400000127641,-0.05421613254873326 +223289,1116.4450000127642,-0.05421604123959465 +223290,1116.4500000127643,-0.05421594992416611 +223291,1116.4550000127645,-0.05421585860244643 +223292,1116.4600000127646,-0.0542157672744344 +223293,1116.4650000127647,-0.05421567594012879 +223294,1116.4700000127648,-0.054215584599528396 +223295,1116.475000012765,-0.054215493252632 +223296,1116.480000012765,-0.054215401899438374 +223297,1116.485000012765,-0.054215310539946306 +223298,1116.4900000127652,-0.05421521917415457 +223299,1116.4950000127653,-0.054215127802061946 +223300,1116.5000000127654,-0.05421503642366723 +223301,1116.5050000127655,-0.05421494503896919 +223302,1116.5100000127657,-0.054214853647966604 +223303,1116.5150000127658,-0.05421476225065826 +223304,1116.5200000127659,-0.05421467084704293 +223305,1116.525000012766,-0.054214579437119395 +223306,1116.530000012766,-0.05421448802088644 +223307,1116.5350000127662,-0.05421439659834283 +223308,1116.5400000127663,-0.054214305169487345 +223309,1116.5450000127664,-0.05421421373431878 +223310,1116.5500000127665,-0.054214122292835884 +223311,1116.5550000127666,-0.05421403084503746 +223312,1116.5600000127667,-0.05421393939092226 +223313,1116.5650000127669,-0.054213847930489084 +223314,1116.570000012767,-0.05421375646373669 +223315,1116.575000012767,-0.054213664990663844 +223316,1116.5800000127672,-0.05421357351126935 +223317,1116.5850000127673,-0.05421348202555196 +223318,1116.5900000127674,-0.05421339053351045 +223319,1116.5950000127675,-0.054213299035143596 +223320,1116.6000000127676,-0.05421320753045016 +223321,1116.6050000127677,-0.054213116019428936 +223322,1116.6100000127678,-0.0542130245020787 +223323,1116.615000012768,-0.05421293297839819 +223324,1116.620000012768,-0.0542128414483862 +223325,1116.6250000127682,-0.0542127499120415 +223326,1116.6300000127683,-0.05421265836936286 +223327,1116.6350000127684,-0.05421256682034904 +223328,1116.6400000127685,-0.05421247526499883 +223329,1116.6450000127686,-0.05421238370331099 +223330,1116.6500000127687,-0.054212292135284286 +223331,1116.6550000127688,-0.05421220056091748 +223332,1116.660000012769,-0.05421210898020935 +223333,1116.665000012769,-0.05421201739315866 +223334,1116.6700000127692,-0.05421192579976417 +223335,1116.6750000127693,-0.05421183420002467 +223336,1116.6800000127694,-0.05421174259393891 +223337,1116.6850000127695,-0.054211650981505655 +223338,1116.6900000127696,-0.05421155936272368 +223339,1116.6950000127697,-0.05421146773759174 +223340,1116.7000000127698,-0.05421137610610861 +223341,1116.70500001277,-0.05421128446827304 +223342,1116.71000001277,-0.05421119282408381 +223343,1116.7150000127701,-0.05421110117353969 +223344,1116.7200000127702,-0.05421100951663942 +223345,1116.7250000127704,-0.054210917853381786 +223346,1116.7300000127705,-0.054210826183765534 +223347,1116.7350000127706,-0.054210734507789425 +223348,1116.7400000127707,-0.05421064282545224 +223349,1116.7450000127708,-0.05421055113675273 +223350,1116.750000012771,-0.05421045944168965 +223351,1116.755000012771,-0.05421036774026178 +223352,1116.7600000127711,-0.05421027603246785 +223353,1116.7650000127712,-0.05421018431830663 +223354,1116.7700000127713,-0.05421009259777689 +223355,1116.7750000127714,-0.05421000087087739 +223356,1116.7800000127716,-0.0542099091376069 +223357,1116.7850000127717,-0.05420981739796415 +223358,1116.7900000127718,-0.054209725651947906 +223359,1116.7950000127719,-0.054209633899556936 +223360,1116.800000012772,-0.05420954214078999 +223361,1116.805000012772,-0.05420945037564583 +223362,1116.8100000127722,-0.05420935860412321 +223363,1116.8150000127723,-0.05420926682622088 +223364,1116.8200000127724,-0.05420917504193761 +223365,1116.8250000127725,-0.05420908325127215 +223366,1116.8300000127726,-0.054208991454223254 +223367,1116.8350000127728,-0.05420889965078968 +223368,1116.8400000127729,-0.054208807840970166 +223369,1116.845000012773,-0.05420871602476348 +223370,1116.850000012773,-0.05420862420216837 +223371,1116.8550000127732,-0.054208532373183585 +223372,1116.8600000127733,-0.054208440537807906 +223373,1116.8650000127734,-0.05420834869604005 +223374,1116.8700000127735,-0.054208256847878784 +223375,1116.8750000127736,-0.05420816499332286 +223376,1116.8800000127737,-0.05420807313237101 +223377,1116.8850000127738,-0.054207981265022014 +223378,1116.890000012774,-0.054207889391274605 +223379,1116.895000012774,-0.05420779751112754 +223380,1116.9000000127742,-0.054207705624579564 +223381,1116.9050000127743,-0.05420761373162944 +223382,1116.9100000127744,-0.05420752183227589 +223383,1116.9150000127745,-0.054207429926517676 +223384,1116.9200000127746,-0.054207338014353554 +223385,1116.9250000127747,-0.05420724609578227 +223386,1116.9300000127748,-0.05420715417080255 +223387,1116.935000012775,-0.05420706223941318 +223388,1116.940000012775,-0.054206970301612874 +223389,1116.9450000127752,-0.05420687835740037 +223390,1116.9500000127753,-0.05420678640677444 +223391,1116.9550000127754,-0.05420669444973382 +223392,1116.9600000127755,-0.05420660248627725 +223393,1116.9650000127756,-0.05420651051640348 +223394,1116.9700000127757,-0.05420641854011126 +223395,1116.9750000127758,-0.05420632655739932 +223396,1116.980000012776,-0.05420623456826641 +223397,1116.985000012776,-0.05420614257271127 +223398,1116.9900000127761,-0.05420605057073265 +223399,1116.9950000127762,-0.05420595856232927 +223400,1117.0000000127764,-0.05420586654749991 +223401,1117.0050000127765,-0.054205774526243276 +223402,1117.0100000127766,-0.054205682498558116 +223403,1117.0150000127767,-0.05420559046444319 +223404,1117.0200000127768,-0.05420549842389723 +223405,1117.025000012777,-0.05420540637691896 +223406,1117.030000012777,-0.05420531432350713 +223407,1117.0350000127771,-0.05420522226366046 +223408,1117.0400000127772,-0.054205130197377716 +223409,1117.0450000127773,-0.05420503812465762 +223410,1117.0500000127774,-0.05420494604549893 +223411,1117.0550000127776,-0.054204853959900365 +223412,1117.0600000127777,-0.054204761867860655 +223413,1117.0650000127778,-0.05420466976937856 +223414,1117.0700000127779,-0.05420457766445279 +223415,1117.075000012778,-0.0542044855530821 +223416,1117.080000012778,-0.054204393435265216 +223417,1117.0850000127782,-0.054204301311000874 +223418,1117.0900000127783,-0.05420420918028782 +223419,1117.0950000127784,-0.05420411704312477 +223420,1117.1000000127785,-0.054204024899510456 +223421,1117.1050000127786,-0.05420393274944364 +223422,1117.1100000127788,-0.05420384059292303 +223423,1117.1150000127789,-0.05420374842994735 +223424,1117.120000012779,-0.05420365626051536 +223425,1117.125000012779,-0.05420356408462577 +223426,1117.1300000127792,-0.05420347190227732 +223427,1117.1350000127793,-0.05420337971346874 +223428,1117.1400000127794,-0.05420328751819875 +223429,1117.1450000127795,-0.05420319531646609 +223430,1117.1500000127796,-0.0542031031082695 +223431,1117.1550000127797,-0.0542030108936077 +223432,1117.1600000127798,-0.054202918672479415 +223433,1117.16500001278,-0.05420282644488337 +223434,1117.17000001278,-0.05420273421081831 +223435,1117.1750000127802,-0.05420264197028294 +223436,1117.1800000127803,-0.054202549723276 +223437,1117.1850000127804,-0.054202457469796204 +223438,1117.1900000127805,-0.0542023652098423 +223439,1117.1950000127806,-0.05420227294341301 +223440,1117.2000000127807,-0.05420218067050705 +223441,1117.2050000127808,-0.05420208839112314 +223442,1117.210000012781,-0.05420199610526001 +223443,1117.215000012781,-0.05420190381291638 +223444,1117.2200000127812,-0.054201811514090995 +223445,1117.2250000127813,-0.05420171920878256 +223446,1117.2300000127814,-0.05420162689698981 +223447,1117.2350000127815,-0.05420153457871145 +223448,1117.2400000127816,-0.054201442253946214 +223449,1117.2450000127817,-0.05420134992269283 +223450,1117.2500000127818,-0.05420125758495 +223451,1117.255000012782,-0.05420116524071646 +223452,1117.260000012782,-0.05420107288999094 +223453,1117.2650000127821,-0.054200980532772135 +223454,1117.2700000127822,-0.054200888169058783 +223455,1117.2750000127824,-0.0542007957988496 +223456,1117.2800000127825,-0.054200703422143295 +223457,1117.2850000127826,-0.05420061103893859 +223458,1117.2900000127827,-0.05420051864923421 +223459,1117.2950000127828,-0.05420042625302888 +223460,1117.300000012783,-0.05420033385032132 +223461,1117.305000012783,-0.05420024144111022 +223462,1117.3100000127831,-0.054200149025394315 +223463,1117.3150000127832,-0.054200056603172314 +223464,1117.3200000127833,-0.05419996417444294 +223465,1117.3250000127834,-0.05419987173920491 +223466,1117.3300000127836,-0.05419977929745693 +223467,1117.3350000127837,-0.054199686849197716 +223468,1117.3400000127838,-0.054199594394426 +223469,1117.3450000127839,-0.05419950193314047 +223470,1117.350000012784,-0.054199409465339854 +223471,1117.355000012784,-0.05419931699102286 +223472,1117.3600000127842,-0.0541992245101882 +223473,1117.3650000127843,-0.05419913202283459 +223474,1117.3700000127844,-0.05419903952896074 +223475,1117.3750000127845,-0.054198947028565356 +223476,1117.3800000127846,-0.05419885452164717 +223477,1117.3850000127848,-0.054198762008204865 +223478,1117.3900000127849,-0.05419866948823716 +223479,1117.395000012785,-0.054198576961742774 +223480,1117.400000012785,-0.054198484428720405 +223481,1117.4050000127852,-0.05419839188916878 +223482,1117.4100000127853,-0.05419829934308658 +223483,1117.4150000127854,-0.054198206790472526 +223484,1117.4200000127855,-0.05419811423132533 +223485,1117.4250000127856,-0.054198021665643706 +223486,1117.4300000127857,-0.05419792909342634 +223487,1117.4350000127858,-0.05419783651467195 +223488,1117.440000012786,-0.05419774392937925 +223489,1117.445000012786,-0.054197651337546913 +223490,1117.4500000127862,-0.05419755873917369 +223491,1117.4550000127863,-0.05419746613425825 +223492,1117.4600000127864,-0.054197373522799325 +223493,1117.4650000127865,-0.05419728090479561 +223494,1117.4700000127866,-0.054197188280245785 +223495,1117.4750000127867,-0.05419709564914858 +223496,1117.4800000127868,-0.05419700301150269 +223497,1117.485000012787,-0.05419691036730682 +223498,1117.490000012787,-0.05419681771655965 +223499,1117.4950000127872,-0.05419672505925992 +223500,1117.5000000127873,-0.0541966323954063 +223501,1117.5050000127874,-0.05419653972499751 +223502,1117.5100000127875,-0.05419644704803224 +223503,1117.5150000127876,-0.05419635436450919 +223504,1117.5200000127877,-0.054196261674427065 +223505,1117.5250000127878,-0.05419616897778455 +223506,1117.530000012788,-0.05419607627458036 +223507,1117.535000012788,-0.05419598356481319 +223508,1117.5400000127881,-0.05419589084848174 +223509,1117.5450000127883,-0.05419579812558469 +223510,1117.5500000127884,-0.054195705396120744 +223511,1117.5550000127885,-0.05419561266008861 +223512,1117.5600000127886,-0.05419551991748698 +223513,1117.5650000127887,-0.05419542716831454 +223514,1117.5700000127888,-0.05419533441256999 +223515,1117.575000012789,-0.054195241650252045 +223516,1117.580000012789,-0.05419514888135937 +223517,1117.5850000127891,-0.05419505610589067 +223518,1117.5900000127892,-0.054194963323844644 +223519,1117.5950000127893,-0.05419487053521998 +223520,1117.6000000127895,-0.05419477774001537 +223521,1117.6050000127896,-0.0541946849382295 +223522,1117.6100000127897,-0.05419459212986108 +223523,1117.6150000127898,-0.05419449931490879 +223524,1117.62000001279,-0.05419440649337132 +223525,1117.62500001279,-0.054194313665247365 +223526,1117.63000001279,-0.054194220830535614 +223527,1117.6350000127902,-0.05419412798923476 +223528,1117.6400000127903,-0.05419403514134348 +223529,1117.6450000127904,-0.05419394228686046 +223530,1117.6500000127905,-0.054193849425784424 +223531,1117.6550000127907,-0.054193756558114016 +223532,1117.6600000127908,-0.05419366368384796 +223533,1117.6650000127909,-0.054193570802984925 +223534,1117.670000012791,-0.05419347791552359 +223535,1117.675000012791,-0.05419338502146265 +223536,1117.6800000127912,-0.05419329212080079 +223537,1117.6850000127913,-0.054193199213536714 +223538,1117.6900000127914,-0.054193106299669086 +223539,1117.6950000127915,-0.05419301337919659 +223540,1117.7000000127916,-0.05419292045211792 +223541,1117.7050000127917,-0.054192827518431755 +223542,1117.7100000127919,-0.05419273457813678 +223543,1117.715000012792,-0.054192641631231685 +223544,1117.720000012792,-0.05419254867771514 +223545,1117.7250000127922,-0.05419245571758583 +223546,1117.7300000127923,-0.05419236275084245 +223547,1117.7350000127924,-0.054192269777483676 +223548,1117.7400000127925,-0.054192176797508186 +223549,1117.7450000127926,-0.05419208381091466 +223550,1117.7500000127927,-0.05419199081770176 +223551,1117.7550000127928,-0.0541918978178682 +223552,1117.760000012793,-0.05419180481141264 +223553,1117.765000012793,-0.05419171179833376 +223554,1117.7700000127932,-0.05419161877863023 +223555,1117.7750000127933,-0.05419152575230075 +223556,1117.7800000127934,-0.05419143271934398 +223557,1117.7850000127935,-0.0541913396797586 +223558,1117.7900000127936,-0.0541912466335433 +223559,1117.7950000127937,-0.05419115358069675 +223560,1117.8000000127938,-0.05419106052121761 +223561,1117.805000012794,-0.05419096745510457 +223562,1117.810000012794,-0.05419087438235631 +223563,1117.8150000127941,-0.0541907813029715 +223564,1117.8200000127943,-0.054190688216948814 +223565,1117.8250000127944,-0.054190595124286915 +223566,1117.8300000127945,-0.05419050202498448 +223567,1117.8350000127946,-0.054190408919040194 +223568,1117.8400000127947,-0.054190315806452734 +223569,1117.8450000127948,-0.054190222687220756 +223570,1117.850000012795,-0.05419012956134293 +223571,1117.855000012795,-0.054190036428817936 +223572,1117.8600000127951,-0.054189943289644445 +223573,1117.8650000127952,-0.05418985014382113 +223574,1117.8700000127953,-0.054189756991346656 +223575,1117.8750000127955,-0.054189663832219695 +223576,1117.8800000127956,-0.05418957066643891 +223577,1117.8850000127957,-0.05418947749400297 +223578,1117.8900000127958,-0.054189384314910556 +223579,1117.895000012796,-0.05418929112916032 +223580,1117.900000012796,-0.05418919793675094 +223581,1117.905000012796,-0.05418910473768109 +223582,1117.9100000127962,-0.05418901153194942 +223583,1117.9150000127963,-0.0541889183195546 +223584,1117.9200000127964,-0.05418882510049531 +223585,1117.9250000127965,-0.0541887318747702 +223586,1117.9300000127967,-0.05418863864237794 +223587,1117.9350000127968,-0.0541885454033172 +223588,1117.9400000127969,-0.05418845215758662 +223589,1117.945000012797,-0.0541883589051849 +223590,1117.950000012797,-0.05418826564611068 +223591,1117.9550000127972,-0.054188172380362616 +223592,1117.9600000127973,-0.05418807910793939 +223593,1117.9650000127974,-0.05418798582883966 +223594,1117.9700000127975,-0.054187892543062076 +223595,1117.9750000127976,-0.05418779925060531 +223596,1117.9800000127977,-0.05418770595146802 +223597,1117.9850000127979,-0.05418761264564887 +223598,1117.990000012798,-0.054187519333146514 +223599,1117.995000012798,-0.05418742601395961 +223600,1118.0000000127982,-0.054187332688086814 +223601,1118.0050000127983,-0.0541872393555268 +223602,1118.0100000127984,-0.054187146016278206 +223603,1118.0150000127985,-0.054187052670339714 +223604,1118.0200000127986,-0.05418695931770995 +223605,1118.0250000127987,-0.0541868659583876 +223606,1118.0300000127988,-0.0541867725923713 +223607,1118.035000012799,-0.05418667921965972 +223608,1118.040000012799,-0.05418658584025151 +223609,1118.0450000127992,-0.05418649245414532 +223610,1118.0500000127993,-0.05418639906133981 +223611,1118.0550000127994,-0.05418630566183365 +223612,1118.0600000127995,-0.05418621225562546 +223613,1118.0650000127996,-0.054186118842713925 +223614,1118.0700000127997,-0.054186025423097674 +223615,1118.0750000127998,-0.05418593199677537 +223616,1118.0800000128,-0.05418583856374566 +223617,1118.0850000128,-0.054185745124007215 +223618,1118.0900000128001,-0.05418565167755867 +223619,1118.0950000128003,-0.05418555822439866 +223620,1118.1000000128004,-0.05418546476452586 +223621,1118.1050000128005,-0.05418537129793891 +223622,1118.1100000128006,-0.054185277824636474 +223623,1118.1150000128007,-0.054185184344617186 +223624,1118.1200000128008,-0.05418509085787969 +223625,1118.125000012801,-0.054184997364422643 +223626,1118.130000012801,-0.05418490386424469 +223627,1118.1350000128011,-0.05418481035734447 +223628,1118.1400000128012,-0.05418471684372065 +223629,1118.1450000128013,-0.054184623323371865 +223630,1118.1500000128015,-0.054184529796296774 +223631,1118.1550000128016,-0.054184436262494 +223632,1118.1600000128017,-0.05418434272196221 +223633,1118.1650000128018,-0.05418424917470003 +223634,1118.170000012802,-0.05418415562070611 +223635,1118.175000012802,-0.05418406205997908 +223636,1118.180000012802,-0.05418396849251762 +223637,1118.1850000128022,-0.05418387491832034 +223638,1118.1900000128023,-0.0541837813373859 +223639,1118.1950000128024,-0.05418368774971293 +223640,1118.2000000128025,-0.05418359415530009 +223641,1118.2050000128027,-0.054183500554145995 +223642,1118.2100000128028,-0.054183406946249305 +223643,1118.2150000128029,-0.05418331333160866 +223644,1118.220000012803,-0.05418321971022269 +223645,1118.225000012803,-0.05418312608209004 +223646,1118.2300000128032,-0.05418303244720936 +223647,1118.2350000128033,-0.05418293880557927 +223648,1118.2400000128034,-0.054182845157198414 +223649,1118.2450000128035,-0.05418275150206543 +223650,1118.2500000128036,-0.05418265784017896 +223651,1118.2550000128037,-0.054182564171537634 +223652,1118.2600000128039,-0.0541824704961401 +223653,1118.265000012804,-0.054182376813984974 +223654,1118.270000012804,-0.05418228312507091 +223655,1118.2750000128042,-0.05418218942939653 +223656,1118.2800000128043,-0.054182095726960484 +223657,1118.2850000128044,-0.05418200201776139 +223658,1118.2900000128045,-0.05418190830179789 +223659,1118.2950000128046,-0.054181814579068614 +223660,1118.3000000128047,-0.0541817208495722 +223661,1118.3050000128048,-0.05418162711330729 +223662,1118.310000012805,-0.05418153337027249 +223663,1118.315000012805,-0.05418143962046645 +223664,1118.3200000128052,-0.0541813458638878 +223665,1118.3250000128053,-0.05418125210053516 +223666,1118.3300000128054,-0.054181158330407174 +223667,1118.3350000128055,-0.05418106455350245 +223668,1118.3400000128056,-0.054180970769819654 +223669,1118.3450000128057,-0.05418087697935738 +223670,1118.3500000128058,-0.05418078318211427 +223671,1118.355000012806,-0.05418068937808896 +223672,1118.360000012806,-0.05418059556728007 +223673,1118.3650000128061,-0.054180501749686215 +223674,1118.3700000128063,-0.05418040792530604 +223675,1118.3750000128064,-0.05418031409413817 +223676,1118.3800000128065,-0.054180220256181216 +223677,1118.3850000128066,-0.05418012641143382 +223678,1118.3900000128067,-0.0541800325598946 +223679,1118.3950000128068,-0.05417993870156218 +223680,1118.400000012807,-0.05417984483643518 +223681,1118.405000012807,-0.054179750964512226 +223682,1118.4100000128071,-0.05417965708579195 +223683,1118.4150000128072,-0.054179563200272965 +223684,1118.4200000128073,-0.05417946930795389 +223685,1118.4250000128075,-0.054179375408833365 +223686,1118.4300000128076,-0.05417928150291 +223687,1118.4350000128077,-0.05417918759018241 +223688,1118.4400000128078,-0.05417909367064922 +223689,1118.445000012808,-0.05417899974430905 +223690,1118.450000012808,-0.054178905811160534 +223691,1118.4550000128081,-0.05417881187120227 +223692,1118.4600000128082,-0.05417871792443289 +223693,1118.4650000128083,-0.05417862397085099 +223694,1118.4700000128084,-0.05417853001045522 +223695,1118.4750000128086,-0.054178436043244176 +223696,1118.4800000128087,-0.054178342069216484 +223697,1118.4850000128088,-0.05417824808837077 +223698,1118.4900000128089,-0.05417815410070563 +223699,1118.495000012809,-0.05417806010621968 +223700,1118.500000012809,-0.054177966104911546 +223701,1118.5050000128092,-0.054177872096779836 +223702,1118.5100000128093,-0.054177778081823176 +223703,1118.5150000128094,-0.054177684060040164 +223704,1118.5200000128095,-0.05417759003142943 +223705,1118.5250000128096,-0.054177495995989575 +223706,1118.5300000128098,-0.054177401953719215 +223707,1118.5350000128099,-0.05417730790461695 +223708,1118.54000001281,-0.05417721384868142 +223709,1118.54500001281,-0.05417711978591122 +223710,1118.5500000128102,-0.054177025716304957 +223711,1118.5550000128103,-0.05417693163986124 +223712,1118.5600000128104,-0.05417683755657868 +223713,1118.5650000128105,-0.05417674346645589 +223714,1118.5700000128106,-0.054176649369491486 +223715,1118.5750000128107,-0.05417655526568406 +223716,1118.5800000128108,-0.05417646115503223 +223717,1118.585000012811,-0.054176367037534603 +223718,1118.590000012811,-0.05417627291318979 +223719,1118.5950000128112,-0.0541761787819964 +223720,1118.6000000128113,-0.05417608464395302 +223721,1118.6050000128114,-0.054175990499058274 +223722,1118.6100000128115,-0.05417589634731077 +223723,1118.6150000128116,-0.0541758021887091 +223724,1118.6200000128117,-0.054175708023251876 +223725,1118.6250000128118,-0.05417561385093769 +223726,1118.630000012812,-0.05417551967176516 +223727,1118.635000012812,-0.05417542548573288 +223728,1118.6400000128122,-0.05417533129283945 +223729,1118.6450000128123,-0.05417523709308348 +223730,1118.6500000128124,-0.05417514288646358 +223731,1118.6550000128125,-0.054175048672978336 +223732,1118.6600000128126,-0.05417495445262635 +223733,1118.6650000128127,-0.054174860225406234 +223734,1118.6700000128128,-0.05417476599131658 +223735,1118.675000012813,-0.054174671750355986 +223736,1118.680000012813,-0.05417457750252305 +223737,1118.6850000128131,-0.05417448324781638 +223738,1118.6900000128132,-0.05417438898623458 +223739,1118.6950000128134,-0.05417429471777622 +223740,1118.7000000128135,-0.05417420044243991 +223741,1118.7050000128136,-0.05417410616022426 +223742,1118.7100000128137,-0.054174011871127845 +223743,1118.7150000128138,-0.05417391757514928 +223744,1118.720000012814,-0.05417382327228714 +223745,1118.725000012814,-0.05417372896254004 +223746,1118.7300000128141,-0.05417363464590656 +223747,1118.7350000128142,-0.054173540322385305 +223748,1118.7400000128143,-0.05417344599197486 +223749,1118.7450000128144,-0.054173351654673824 +223750,1118.7500000128146,-0.054173257310480796 +223751,1118.7550000128147,-0.054173162959394346 +223752,1118.7600000128148,-0.05417306860141308 +223753,1118.7650000128149,-0.054172974236535595 +223754,1118.770000012815,-0.05417287986476048 +223755,1118.775000012815,-0.05417278548608631 +223756,1118.7800000128152,-0.054172691100511684 +223757,1118.7850000128153,-0.0541725967080352 +223758,1118.7900000128154,-0.05417250230865544 +223759,1118.7950000128155,-0.054172407902370996 +223760,1118.8000000128156,-0.05417231348918044 +223761,1118.8050000128158,-0.054172219069082386 +223762,1118.8100000128159,-0.0541721246420754 +223763,1118.815000012816,-0.05417203020815808 +223764,1118.820000012816,-0.054171935767329 +223765,1118.8250000128162,-0.054171841319586765 +223766,1118.8300000128163,-0.05417174686492995 +223767,1118.8350000128164,-0.05417165240335713 +223768,1118.8400000128165,-0.054171557934866915 +223769,1118.8450000128166,-0.05417146345945786 +223770,1118.8500000128167,-0.05417136897712857 +223771,1118.8550000128168,-0.05417127448787761 +223772,1118.860000012817,-0.05417117999170358 +223773,1118.865000012817,-0.05417108548860506 +223774,1118.8700000128172,-0.05417099097858062 +223775,1118.8750000128173,-0.05417089646162884 +223776,1118.8800000128174,-0.05417080193774832 +223777,1118.8850000128175,-0.05417070740693762 +223778,1118.8900000128176,-0.05417061286919534 +223779,1118.8950000128177,-0.05417051832452003 +223780,1118.9000000128178,-0.0541704237729103 +223781,1118.905000012818,-0.05417032921436472 +223782,1118.910000012818,-0.05417023464888185 +223783,1118.9150000128182,-0.054170140076460274 +223784,1118.9200000128183,-0.054170045497098585 +223785,1118.9250000128184,-0.05416995091079535 +223786,1118.9300000128185,-0.05416985631754915 +223787,1118.9350000128186,-0.05416976171735856 +223788,1118.9400000128187,-0.054169667110222135 +223789,1118.9450000128188,-0.05416957249613847 +223790,1118.950000012819,-0.05416947787510614 +223791,1118.955000012819,-0.05416938324712372 +223792,1118.9600000128191,-0.054169288612189774 +223793,1118.9650000128192,-0.05416919397030287 +223794,1118.9700000128194,-0.054169099321461606 +223795,1118.9750000128195,-0.054169004665664516 +223796,1118.9800000128196,-0.05416891000291021 +223797,1118.9850000128197,-0.05416881533319723 +223798,1118.9900000128198,-0.05416872065652416 +223799,1118.99500001282,-0.05416862597288957 +223800,1119.00000001282,-0.05416853128229202 +223801,1119.0050000128201,-0.054168436584730105 +223802,1119.0100000128202,-0.054168341880202364 +223803,1119.0150000128203,-0.054168247168707384 +223804,1119.0200000128204,-0.05416815245024373 +223805,1119.0250000128206,-0.054168057724809954 +223806,1119.0300000128207,-0.05416796299240464 +223807,1119.0350000128208,-0.054167868253026344 +223808,1119.0400000128209,-0.05416777350667364 +223809,1119.045000012821,-0.054167678753345085 +223810,1119.050000012821,-0.05416758399303926 +223811,1119.0550000128212,-0.054167489225754706 +223812,1119.0600000128213,-0.05416739445149001 +223813,1119.0650000128214,-0.054167299670243724 +223814,1119.0700000128215,-0.0541672048820144 +223815,1119.0750000128216,-0.05416711008680062 +223816,1119.0800000128218,-0.05416701528460094 +223817,1119.0850000128219,-0.05416692047541392 +223818,1119.090000012822,-0.05416682565923813 +223819,1119.095000012822,-0.05416673083607212 +223820,1119.1000000128222,-0.054166636005914454 +223821,1119.1050000128223,-0.05416654116876369 +223822,1119.1100000128224,-0.05416644632461838 +223823,1119.1150000128225,-0.05416635147347709 +223824,1119.1200000128226,-0.0541662566153384 +223825,1119.1250000128227,-0.05416616175020084 +223826,1119.1300000128228,-0.05416606687806298 +223827,1119.135000012823,-0.05416597199892337 +223828,1119.140000012823,-0.054165877112780564 +223829,1119.1450000128232,-0.054165782219633134 +223830,1119.1500000128233,-0.05416568731947962 +223831,1119.1550000128234,-0.054165592412318574 +223832,1119.1600000128235,-0.05416549749814857 +223833,1119.1650000128236,-0.05416540257696815 +223834,1119.1700000128237,-0.05416530764877587 +223835,1119.1750000128238,-0.05416521271357027 +223836,1119.180000012824,-0.05416511777134993 +223837,1119.185000012824,-0.054165022822113384 +223838,1119.1900000128242,-0.054164927865859185 +223839,1119.1950000128243,-0.054164832902585884 +223840,1119.2000000128244,-0.05416473793229204 +223841,1119.2050000128245,-0.0541646429549762 +223842,1119.2100000128246,-0.05416454797063692 +223843,1119.2150000128247,-0.05416445297927273 +223844,1119.2200000128248,-0.05416435798088219 +223845,1119.225000012825,-0.05416426297546386 +223846,1119.230000012825,-0.05416416796301627 +223847,1119.2350000128251,-0.05416407294353798 +223848,1119.2400000128252,-0.054163977917027525 +223849,1119.2450000128254,-0.05416388288348347 +223850,1119.2500000128255,-0.05416378784290434 +223851,1119.2550000128256,-0.054163692795288695 +223852,1119.2600000128257,-0.05416359774063508 +223853,1119.2650000128258,-0.05416350267894204 +223854,1119.270000012826,-0.05416340761020811 +223855,1119.275000012826,-0.05416331253443184 +223856,1119.2800000128261,-0.054163217451611775 +223857,1119.2850000128262,-0.05416312236174646 +223858,1119.2900000128263,-0.05416302726483443 +223859,1119.2950000128264,-0.054162932160874235 +223860,1119.3000000128266,-0.05416283704986441 +223861,1119.3050000128267,-0.054162741931803496 +223862,1119.3100000128268,-0.054162646806690036 +223863,1119.3150000128269,-0.05416255167452257 +223864,1119.320000012827,-0.05416245653529964 +223865,1119.325000012827,-0.05416236138901978 +223866,1119.3300000128272,-0.05416226623568153 +223867,1119.3350000128273,-0.05416217107528343 +223868,1119.3400000128274,-0.05416207590782402 +223869,1119.3450000128275,-0.054161980733301834 +223870,1119.3500000128276,-0.0541618855517154 +223871,1119.3550000128278,-0.054161790363063275 +223872,1119.3600000128279,-0.05416169516734398 +223873,1119.365000012828,-0.05416159996455605 +223874,1119.370000012828,-0.05416150475469802 +223875,1119.3750000128282,-0.05416140953776842 +223876,1119.3800000128283,-0.0541613143137658 +223877,1119.3850000128284,-0.05416121908268869 +223878,1119.3900000128285,-0.054161123844535614 +223879,1119.3950000128286,-0.0541610285993051 +223880,1119.4000000128287,-0.05416093334699569 +223881,1119.4050000128289,-0.054160838087605925 +223882,1119.410000012829,-0.054160742821134325 +223883,1119.415000012829,-0.054160647547579405 +223884,1119.4200000128292,-0.05416055226693972 +223885,1119.4250000128293,-0.054160456979213775 +223886,1119.4300000128294,-0.05416036168440013 +223887,1119.4350000128295,-0.054160266382497296 +223888,1119.4400000128296,-0.05416017107350381 +223889,1119.4450000128297,-0.05416007575741817 +223890,1119.4500000128298,-0.05415998043423893 +223891,1119.45500001283,-0.05415988510396461 +223892,1119.46000001283,-0.05415978976659375 +223893,1119.4650000128302,-0.05415969442212486 +223894,1119.4700000128303,-0.054159599070556466 +223895,1119.4750000128304,-0.054159503711887096 +223896,1119.4800000128305,-0.054159408346115274 +223897,1119.4850000128306,-0.054159312973239525 +223898,1119.4900000128307,-0.05415921759325836 +223899,1119.4950000128308,-0.05415912220617033 +223900,1119.500000012831,-0.05415902681197392 +223901,1119.505000012831,-0.05415893141066768 +223902,1119.5100000128311,-0.054158836002250126 +223903,1119.5150000128313,-0.054158740586719774 +223904,1119.5200000128314,-0.054158645164075155 +223905,1119.5250000128315,-0.054158549734314776 +223906,1119.5300000128316,-0.05415845429743716 +223907,1119.5350000128317,-0.054158358853440815 +223908,1119.5400000128318,-0.05415826340232428 +223909,1119.545000012832,-0.05415816794408606 +223910,1119.550000012832,-0.05415807247872468 +223911,1119.5550000128321,-0.05415797700623865 +223912,1119.5600000128322,-0.0541578815266265 +223913,1119.5650000128323,-0.05415778603988673 +223914,1119.5700000128325,-0.054157690546017864 +223915,1119.5750000128326,-0.054157595045018415 +223916,1119.5800000128327,-0.05415749953688689 +223917,1119.5850000128328,-0.054157404021621815 +223918,1119.590000012833,-0.0541573084992217 +223919,1119.595000012833,-0.05415721296968505 +223920,1119.600000012833,-0.05415711743301038 +223921,1119.6050000128332,-0.054157021889196216 +223922,1119.6100000128333,-0.05415692633824107 +223923,1119.6150000128334,-0.054156830780143425 +223924,1119.6200000128335,-0.054156735214901816 +223925,1119.6250000128337,-0.05415663964251475 +223926,1119.6300000128338,-0.054156544062980747 +223927,1119.6350000128339,-0.054156448476298295 +223928,1119.640000012834,-0.05415635288246591 +223929,1119.645000012834,-0.0541562572814821 +223930,1119.6500000128342,-0.05415616167334537 +223931,1119.6550000128343,-0.05415606605805424 +223932,1119.6600000128344,-0.0541559704356072 +223933,1119.6650000128345,-0.05415587480600277 +223934,1119.6700000128346,-0.05415577916923945 +223935,1119.6750000128347,-0.05415568352531575 +223936,1119.6800000128349,-0.054155587874230166 +223937,1119.685000012835,-0.0541554922159812 +223938,1119.690000012835,-0.054155396550567364 +223939,1119.6950000128352,-0.05415530087798716 +223940,1119.7000000128353,-0.054155205198239104 +223941,1119.7050000128354,-0.05415510951132167 +223942,1119.7100000128355,-0.05415501381723338 +223943,1119.7150000128356,-0.054154918115972735 +223944,1119.7200000128357,-0.05415482240753824 +223945,1119.7250000128358,-0.054154726691928376 +223946,1119.730000012836,-0.05415463096914165 +223947,1119.735000012836,-0.05415453523917657 +223948,1119.7400000128362,-0.05415443950203162 +223949,1119.7450000128363,-0.05415434375770532 +223950,1119.7500000128364,-0.05415424800619616 +223951,1119.7550000128365,-0.05415415224750263 +223952,1119.7600000128366,-0.05415405648162321 +223953,1119.7650000128367,-0.054153960708556444 +223954,1119.7700000128368,-0.05415386492830079 +223955,1119.775000012837,-0.05415376914085475 +223956,1119.780000012837,-0.05415367334621683 +223957,1119.7850000128371,-0.05415357754438552 +223958,1119.7900000128373,-0.05415348173535931 +223959,1119.7950000128374,-0.054153385919136696 +223960,1119.8000000128375,-0.05415329009571617 +223961,1119.8050000128376,-0.05415319426509623 +223962,1119.8100000128377,-0.05415309842727535 +223963,1119.8150000128378,-0.054153002582252044 +223964,1119.820000012838,-0.0541529067300248 +223965,1119.825000012838,-0.054152810870592094 +223966,1119.8300000128381,-0.054152715003952426 +223967,1119.8350000128382,-0.054152619130104274 +223968,1119.8400000128383,-0.05415252324904614 +223969,1119.8450000128385,-0.054152427360776516 +223970,1119.8500000128386,-0.054152331465293885 +223971,1119.8550000128387,-0.05415223556259673 +223972,1119.8600000128388,-0.054152139652683534 +223973,1119.865000012839,-0.054152043735552796 +223974,1119.870000012839,-0.054151947811202986 +223975,1119.875000012839,-0.05415185187963262 +223976,1119.8800000128392,-0.054151755940840145 +223977,1119.8850000128393,-0.054151659994824075 +223978,1119.8900000128394,-0.054151564041582875 +223979,1119.8950000128395,-0.05415146808111504 +223980,1119.9000000128397,-0.05415137211341906 +223981,1119.9050000128398,-0.0541512761384934 +223982,1119.9100000128399,-0.054151180156336555 +223983,1119.91500001284,-0.054151084166946986 +223984,1119.92000001284,-0.05415098817032319 +223985,1119.9250000128402,-0.05415089216646365 +223986,1119.9300000128403,-0.05415079615536685 +223987,1119.9350000128404,-0.05415070013703125 +223988,1119.9400000128405,-0.05415060411145535 +223989,1119.9450000128406,-0.05415050807863762 +223990,1119.9500000128407,-0.05415041203857653 +223991,1119.9550000128409,-0.05415031599127058 +223992,1119.960000012841,-0.054150219936718216 +223993,1119.965000012841,-0.05415012387491794 +223994,1119.9700000128412,-0.05415002780586821 +223995,1119.9750000128413,-0.054149931729567516 +223996,1119.9800000128414,-0.054149835646014326 +223997,1119.9850000128415,-0.05414973955520712 +223998,1119.9900000128416,-0.05414964345714437 +223999,1119.9950000128417,-0.05414954735182454 +224000,1120.0000000128418,-0.0541494512392461 +224001,1120.005000012842,-0.05414935511940756 +224002,1120.010000012842,-0.05414925899230735 +224003,1120.0150000128422,-0.05414916285794397 +224004,1120.0200000128423,-0.054149066716315856 +224005,1120.0250000128424,-0.05414897056742152 +224006,1120.0300000128425,-0.0541488744112594 +224007,1120.0350000128426,-0.054148778247827975 +224008,1120.0400000128427,-0.054148682077125726 +224009,1120.0450000128428,-0.054148585899151114 +224010,1120.050000012843,-0.054148489713902605 +224011,1120.055000012843,-0.054148393521378665 +224012,1120.0600000128431,-0.054148297321577776 +224013,1120.0650000128433,-0.054148201114498376 +224014,1120.0700000128434,-0.054148104900138945 +224015,1120.0750000128435,-0.054148008678497964 +224016,1120.0800000128436,-0.054147912449573864 +224017,1120.0850000128437,-0.054147816213365146 +224018,1120.0900000128438,-0.05414771996987025 +224019,1120.095000012844,-0.05414762371908765 +224020,1120.100000012844,-0.05414752746101582 +224021,1120.1050000128441,-0.054147431195653184 +224022,1120.1100000128442,-0.05414733492299824 +224023,1120.1150000128443,-0.05414723864304943 +224024,1120.1200000128445,-0.05414714235580523 +224025,1120.1250000128446,-0.054147046061264095 +224026,1120.1300000128447,-0.05414694975942449 +224027,1120.1350000128448,-0.05414685345028487 +224028,1120.140000012845,-0.05414675713384368 +224029,1120.145000012845,-0.05414666081009939 +224030,1120.150000012845,-0.05414656447905047 +224031,1120.1550000128452,-0.05414646814069535 +224032,1120.1600000128453,-0.05414637179503251 +224033,1120.1650000128454,-0.0541462754420604 +224034,1120.1700000128455,-0.054146179081777476 +224035,1120.1750000128457,-0.054146082714182184 +224036,1120.1800000128458,-0.054145986339273 +224037,1120.1850000128459,-0.05414588995704835 +224038,1120.190000012846,-0.05414579356750671 +224039,1120.195000012846,-0.05414569717064653 +224040,1120.2000000128462,-0.05414560076646625 +224041,1120.2050000128463,-0.05414550435496433 +224042,1120.2100000128464,-0.05414540793613922 +224043,1120.2150000128465,-0.054145311509989386 +224044,1120.2200000128466,-0.05414521507651325 +224045,1120.2250000128467,-0.0541451186357093 +224046,1120.2300000128469,-0.05414502218757595 +224047,1120.235000012847,-0.05414492573211166 +224048,1120.240000012847,-0.05414482926931488 +224049,1120.2450000128472,-0.05414473279918407 +224050,1120.2500000128473,-0.05414463632171767 +224051,1120.2550000128474,-0.05414453983691412 +224052,1120.2600000128475,-0.05414444334477187 +224053,1120.2650000128476,-0.054144346845289376 +224054,1120.2700000128477,-0.05414425033846507 +224055,1120.2750000128478,-0.05414415382429741 +224056,1120.280000012848,-0.054144057302784834 +224057,1120.285000012848,-0.05414396077392578 +224058,1120.2900000128482,-0.054143864237718706 +224059,1120.2950000128483,-0.054143767694162036 +224060,1120.3000000128484,-0.054143671143254225 +224061,1120.3050000128485,-0.05414357458499371 +224062,1120.3100000128486,-0.054143478019378945 +224063,1120.3150000128487,-0.05414338144640836 +224064,1120.3200000128488,-0.054143284866080395 +224065,1120.325000012849,-0.0541431882783935 +224066,1120.330000012849,-0.0541430916833461 +224067,1120.3350000128492,-0.054142995080936646 +224068,1120.3400000128493,-0.05414289847116356 +224069,1120.3450000128494,-0.05414280185402529 +224070,1120.3500000128495,-0.05414270522952029 +224071,1120.3550000128496,-0.05414260859764697 +224072,1120.3600000128497,-0.05414251195840378 +224073,1120.3650000128498,-0.054142415311789135 +224074,1120.37000001285,-0.05414231865780151 +224075,1120.37500001285,-0.0541422219964393 +224076,1120.3800000128501,-0.05414212532770097 +224077,1120.3850000128502,-0.05414202865158494 +224078,1120.3900000128504,-0.05414193196808964 +224079,1120.3950000128505,-0.0541418352772135 +224080,1120.4000000128506,-0.05414173857895497 +224081,1120.4050000128507,-0.05414164187331247 +224082,1120.4100000128508,-0.054141545160284424 +224083,1120.415000012851,-0.05414144843986928 +224084,1120.420000012851,-0.05414135171206546 +224085,1120.4250000128511,-0.054141254976871396 +224086,1120.4300000128512,-0.0541411582342855 +224087,1120.4350000128513,-0.054141061484306224 +224088,1120.4400000128514,-0.05414096472693199 +224089,1120.4450000128516,-0.05414086796216121 +224090,1120.4500000128517,-0.054140771189992325 +224091,1120.4550000128518,-0.05414067441042376 +224092,1120.4600000128519,-0.05414057762345394 +224093,1120.465000012852,-0.05414048082908129 +224094,1120.470000012852,-0.054140384027304235 +224095,1120.4750000128522,-0.054140287218121204 +224096,1120.4800000128523,-0.05414019040153062 +224097,1120.4850000128524,-0.05414009357753089 +224098,1120.4900000128525,-0.05413999674612046 +224099,1120.4950000128526,-0.054139899907297735 +224100,1120.5000000128528,-0.05413980306106114 +224101,1120.5050000128529,-0.054139706207409106 +224102,1120.510000012853,-0.05413960934634005 +224103,1120.515000012853,-0.05413951247785239 +224104,1120.5200000128532,-0.05413941560194455 +224105,1120.5250000128533,-0.054139318718614944 +224106,1120.5300000128534,-0.05413922182786199 +224107,1120.5350000128535,-0.054139124929684104 +224108,1120.5400000128536,-0.05413902802407971 +224109,1120.5450000128537,-0.054138931111047214 +224110,1120.5500000128538,-0.054138834190585045 +224111,1120.555000012854,-0.054138737262691625 +224112,1120.560000012854,-0.05413864032736534 +224113,1120.5650000128542,-0.05413854338460463 +224114,1120.5700000128543,-0.05413844643440791 +224115,1120.5750000128544,-0.05413834947677359 +224116,1120.5800000128545,-0.054138252511700076 +224117,1120.5850000128546,-0.05413815553918577 +224118,1120.5900000128547,-0.054138058559229124 +224119,1120.5950000128548,-0.05413796157182851 +224120,1120.600000012855,-0.054137864576982365 +224121,1120.605000012855,-0.05413776757468909 +224122,1120.6100000128552,-0.05413767056494709 +224123,1120.6150000128553,-0.05413757354775477 +224124,1120.6200000128554,-0.054137476523110566 +224125,1120.6250000128555,-0.05413737949101287 +224126,1120.6300000128556,-0.05413728245146008 +224127,1120.6350000128557,-0.05413718540445062 +224128,1120.6400000128558,-0.054137088349982876 +224129,1120.645000012856,-0.05413699128805527 +224130,1120.650000012856,-0.054136894218666215 +224131,1120.6550000128561,-0.0541367971418141 +224132,1120.6600000128562,-0.054136700057497336 +224133,1120.6650000128564,-0.054136602965714334 +224134,1120.6700000128565,-0.05413650586646349 +224135,1120.6750000128566,-0.05413640875974322 +224136,1120.6800000128567,-0.05413631164555192 +224137,1120.6850000128568,-0.05413621452388797 +224138,1120.690000012857,-0.05413611739474981 +224139,1120.695000012857,-0.05413602025813582 +224140,1120.7000000128571,-0.05413592311404439 +224141,1120.7050000128572,-0.054135825962473946 +224142,1120.7100000128573,-0.054135728803422864 +224143,1120.7150000128574,-0.05413563163688956 +224144,1120.7200000128576,-0.05413553446287243 +224145,1120.7250000128577,-0.05413543728136986 +224146,1120.7300000128578,-0.05413534009238026 +224147,1120.7350000128579,-0.054135242895902026 +224148,1120.740000012858,-0.05413514569193355 +224149,1120.745000012858,-0.054135048480473215 +224150,1120.7500000128582,-0.054134951261519446 +224151,1120.7550000128583,-0.054134854035070616 +224152,1120.7600000128584,-0.05413475680112514 +224153,1120.7650000128585,-0.05413465955968138 +224154,1120.7700000128586,-0.05413456231073775 +224155,1120.7750000128588,-0.05413446505429263 +224156,1120.7800000128589,-0.054134367790344445 +224157,1120.785000012859,-0.05413427051889154 +224158,1120.790000012859,-0.05413417323993234 +224159,1120.7950000128592,-0.05413407595346523 +224160,1120.8000000128593,-0.054133978659488595 +224161,1120.8050000128594,-0.054133881358000804 +224162,1120.8100000128595,-0.05413378404900029 +224163,1120.8150000128596,-0.0541336867324854 +224164,1120.8200000128597,-0.054133589408454544 +224165,1120.8250000128598,-0.0541334920769061 +224166,1120.83000001286,-0.05413339473783846 +224167,1120.83500001286,-0.054133297391250015 +224168,1120.8400000128602,-0.05413320003713913 +224169,1120.8450000128603,-0.05413310267550422 +224170,1120.8500000128604,-0.05413300530634365 +224171,1120.8550000128605,-0.054132907929655805 +224172,1120.8600000128606,-0.05413281054543907 +224173,1120.8650000128607,-0.05413271315369184 +224174,1120.8700000128608,-0.054132615754412486 +224175,1120.875000012861,-0.05413251834759939 +224176,1120.880000012861,-0.05413242093325093 +224177,1120.8850000128612,-0.0541323235113655 +224178,1120.8900000128613,-0.054132226081941466 +224179,1120.8950000128614,-0.05413212864497722 +224180,1120.9000000128615,-0.05413203120047114 +224181,1120.9050000128616,-0.05413193374842159 +224182,1120.9100000128617,-0.054131836288826965 +224183,1120.9150000128618,-0.054131738821685614 +224184,1120.920000012862,-0.05413164134699595 +224185,1120.925000012862,-0.05413154386475634 +224186,1120.9300000128621,-0.05413144637496515 +224187,1120.9350000128622,-0.05413134887762077 +224188,1120.9400000128624,-0.05413125137272155 +224189,1120.9450000128625,-0.05413115386026588 +224190,1120.9500000128626,-0.05413105634025214 +224191,1120.9550000128627,-0.0541309588126787 +224192,1120.9600000128628,-0.05413086127754393 +224193,1120.965000012863,-0.054130763734846196 +224194,1120.970000012863,-0.05413066618458388 +224195,1120.9750000128631,-0.05413056862675533 +224196,1120.9800000128632,-0.054130471061358945 +224197,1120.9850000128633,-0.05413037348839309 +224198,1120.9900000128634,-0.05413027590785613 +224199,1120.9950000128636,-0.05413017831974644 +224200,1121.0000000128637,-0.05413008072406237 +224201,1121.0050000128638,-0.05412998312080229 +224202,1121.0100000128639,-0.054129885509964594 +224203,1121.015000012864,-0.054129787891547626 +224204,1121.020000012864,-0.05412969026554976 +224205,1121.0250000128642,-0.05412959263196935 +224206,1121.0300000128643,-0.05412949499080477 +224207,1121.0350000128644,-0.05412939734205439 +224208,1121.0400000128645,-0.05412929968571656 +224209,1121.0450000128646,-0.05412920202178967 +224210,1121.0500000128648,-0.054129104350272045 +224211,1121.0550000128649,-0.05412900667116208 +224212,1121.060000012865,-0.05412890898445812 +224213,1121.065000012865,-0.05412881129015854 +224214,1121.0700000128652,-0.05412871358826168 +224215,1121.0750000128653,-0.05412861587876591 +224216,1121.0800000128654,-0.0541285181616696 +224217,1121.0850000128655,-0.0541284204369711 +224218,1121.0900000128656,-0.05412832270466876 +224219,1121.0950000128657,-0.05412822496476095 +224220,1121.1000000128658,-0.05412812721724602 +224221,1121.105000012866,-0.05412802946212233 +224222,1121.110000012866,-0.054127931699388246 +224223,1121.1150000128662,-0.054127833929042114 +224224,1121.1200000128663,-0.05412773615108229 +224225,1121.1250000128664,-0.05412763836550712 +224226,1121.1300000128665,-0.05412754057231497 +224227,1121.1350000128666,-0.05412744277150419 +224228,1121.1400000128667,-0.05412734496307314 +224229,1121.1450000128668,-0.054127247147020156 +224230,1121.150000012867,-0.0541271493233436 +224231,1121.155000012867,-0.05412705149204183 +224232,1121.1600000128672,-0.054126953653113194 +224233,1121.1650000128673,-0.054126855806556025 +224234,1121.1700000128674,-0.054126757952368695 +224235,1121.1750000128675,-0.05412666009054953 +224236,1121.1800000128676,-0.05412656222109691 +224237,1121.1850000128677,-0.054126464344009154 +224238,1121.1900000128678,-0.054126366459284626 +224239,1121.195000012868,-0.05412626856692167 +224240,1121.200000012868,-0.054126170666918626 +224241,1121.2050000128681,-0.054126072759273856 +224242,1121.2100000128682,-0.05412597484398567 +224243,1121.2150000128684,-0.05412587692105245 +224244,1121.2200000128685,-0.05412577899047253 +224245,1121.2250000128686,-0.054125681052244246 +224246,1121.2300000128687,-0.054125583106365956 +224247,1121.2350000128688,-0.05412548515283598 +224248,1121.240000012869,-0.05412538719165266 +224249,1121.245000012869,-0.05412528922281436 +224250,1121.2500000128691,-0.054125191246319405 +224251,1121.2550000128692,-0.05412509326216615 +224252,1121.2600000128693,-0.054124995270352916 +224253,1121.2650000128695,-0.054124897270878054 +224254,1121.2700000128696,-0.054124799263739906 +224255,1121.2750000128697,-0.05412470124893679 +224256,1121.2800000128698,-0.05412460322646706 +224257,1121.28500001287,-0.054124505196329054 +224258,1121.29000001287,-0.05412440715852111 +224259,1121.29500001287,-0.05412430911304155 +224260,1121.3000000128702,-0.054124211059888724 +224261,1121.3050000128703,-0.054124112999060954 +224262,1121.3100000128704,-0.05412401493055659 +224263,1121.3150000128705,-0.054123916854373934 +224264,1121.3200000128707,-0.05412381877051135 +224265,1121.3250000128708,-0.05412372067896716 +224266,1121.3300000128709,-0.054123622579739704 +224267,1121.335000012871,-0.0541235244728273 +224268,1121.340000012871,-0.05412342635822829 +224269,1121.3450000128712,-0.05412332823594099 +224270,1121.3500000128713,-0.054123230105963746 +224271,1121.3550000128714,-0.05412313196829487 +224272,1121.3600000128715,-0.054123033822932716 +224273,1121.3650000128716,-0.05412293566987559 +224274,1121.3700000128717,-0.05412283750912182 +224275,1121.3750000128719,-0.05412273934066975 +224276,1121.380000012872,-0.05412264116451769 +224277,1121.385000012872,-0.05412254298066397 +224278,1121.3900000128722,-0.05412244478910691 +224279,1121.3950000128723,-0.05412234658984484 +224280,1121.4000000128724,-0.0541222483828761 +224281,1121.4050000128725,-0.05412215016819898 +224282,1121.4100000128726,-0.054122051945811836 +224283,1121.4150000128727,-0.05412195371571296 +224284,1121.4200000128728,-0.054121855477900695 +224285,1121.425000012873,-0.054121757232373356 +224286,1121.430000012873,-0.05412165897912927 +224287,1121.4350000128732,-0.05412156071816675 +224288,1121.4400000128733,-0.05412146244948411 +224289,1121.4450000128734,-0.05412136417307969 +224290,1121.4500000128735,-0.05412126588895177 +224291,1121.4550000128736,-0.05412116759709871 +224292,1121.4600000128737,-0.0541210692975188 +224293,1121.4650000128738,-0.05412097099021037 +224294,1121.470000012874,-0.054120872675171725 +224295,1121.475000012874,-0.05412077435240119 +224296,1121.4800000128741,-0.05412067602189707 +224297,1121.4850000128743,-0.0541205776836577 +224298,1121.4900000128744,-0.054120479337681375 +224299,1121.4950000128745,-0.05412038098396641 +224300,1121.5000000128746,-0.054120282622511125 +224301,1121.5050000128747,-0.05412018425331382 +224302,1121.5100000128748,-0.05412008587637283 +224303,1121.515000012875,-0.05411998749168644 +224304,1121.520000012875,-0.054119889099252985 +224305,1121.5250000128751,-0.05411979069907075 +224306,1121.5300000128752,-0.054119692291138055 +224307,1121.5350000128753,-0.054119593875453204 +224308,1121.5400000128755,-0.05411949545201452 +224309,1121.5450000128756,-0.0541193970208203 +224310,1121.5500000128757,-0.05411929858186885 +224311,1121.5550000128758,-0.05411920013515848 +224312,1121.560000012876,-0.054119101680687495 +224313,1121.565000012876,-0.0541190032184542 +224314,1121.570000012876,-0.0541189047484569 +224315,1121.5750000128762,-0.054118806270693896 +224316,1121.5800000128763,-0.05411870778516349 +224317,1121.5850000128764,-0.054118609291864 +224318,1121.5900000128765,-0.054118510790793724 +224319,1121.5950000128767,-0.05411841228195095 +224320,1121.6000000128768,-0.05411831376533399 +224321,1121.6050000128769,-0.05411821524094114 +224322,1121.610000012877,-0.0541181167087707 +224323,1121.615000012877,-0.05411801816882097 +224324,1121.6200000128772,-0.054117919621090256 +224325,1121.6250000128773,-0.054117821065576846 +224326,1121.6300000128774,-0.05411772250227905 +224327,1121.6350000128775,-0.05411762393119516 +224328,1121.6400000128776,-0.054117525352323455 +224329,1121.6450000128777,-0.05411742676566226 +224330,1121.6500000128779,-0.05411732817120985 +224331,1121.655000012878,-0.05411722956896453 +224332,1121.660000012878,-0.05411713095892459 +224333,1121.6650000128782,-0.054117032341088334 +224334,1121.6700000128783,-0.05411693371545404 +224335,1121.6750000128784,-0.054116835082020004 +224336,1121.6800000128785,-0.054116736440784526 +224337,1121.6850000128786,-0.054116637791745886 +224338,1121.6900000128787,-0.0541165391349024 +224339,1121.6950000128788,-0.05411644047025233 +224340,1121.700000012879,-0.05411634179779398 +224341,1121.705000012879,-0.05411624311752563 +224342,1121.7100000128792,-0.05411614442944558 +224343,1121.7150000128793,-0.054116045733552116 +224344,1121.7200000128794,-0.054115947029843514 +224345,1121.7250000128795,-0.054115848318318074 +224346,1121.7300000128796,-0.054115749598974076 +224347,1121.7350000128797,-0.054115650871809806 +224348,1121.7400000128798,-0.05411555213682356 +224349,1121.74500001288,-0.0541154533940136 +224350,1121.75000001288,-0.05411535464337822 +224351,1121.7550000128801,-0.054115255884915725 +224352,1121.7600000128803,-0.05411515711862437 +224353,1121.7650000128804,-0.05411505834450245 +224354,1121.7700000128805,-0.054114959562548234 +224355,1121.7750000128806,-0.05411486077276002 +224356,1121.7800000128807,-0.05411476197513608 +224357,1121.7850000128808,-0.054114663169674684 +224358,1121.790000012881,-0.054114564356374135 +224359,1121.795000012881,-0.0541144655352327 +224360,1121.8000000128811,-0.05411436670624865 +224361,1121.8050000128812,-0.05411426786942026 +224362,1121.8100000128813,-0.054114169024745834 +224363,1121.8150000128815,-0.054114070172223624 +224364,1121.8200000128816,-0.054113971311851916 +224365,1121.8250000128817,-0.05411387244362898 +224366,1121.8300000128818,-0.054113773567553085 +224367,1121.835000012882,-0.05411367468362252 +224368,1121.840000012882,-0.054113575791835546 +224369,1121.845000012882,-0.05411347689219045 +224370,1121.8500000128822,-0.05411337798468548 +224371,1121.8550000128823,-0.05411327906931893 +224372,1121.8600000128824,-0.05411318014608907 +224373,1121.8650000128825,-0.054113081214994155 +224374,1121.8700000128827,-0.05411298227603247 +224375,1121.8750000128828,-0.05411288332920228 +224376,1121.8800000128829,-0.05411278437450186 +224377,1121.885000012883,-0.05411268541192946 +224378,1121.890000012883,-0.054112586441483375 +224379,1121.8950000128832,-0.05411248746316184 +224380,1121.9000000128833,-0.05411238847696315 +224381,1121.9050000128834,-0.054112289482885545 +224382,1121.9100000128835,-0.05411219048092731 +224383,1121.9150000128836,-0.05411209147108671 +224384,1121.9200000128837,-0.054111992453362005 +224385,1121.9250000128839,-0.054111893427751454 +224386,1121.930000012884,-0.05411179439425332 +224387,1121.935000012884,-0.05411169535286587 +224388,1121.9400000128842,-0.05411159630358736 +224389,1121.9450000128843,-0.05411149724641606 +224390,1121.9500000128844,-0.054111398181350225 +224391,1121.9550000128845,-0.05411129910838811 +224392,1121.9600000128846,-0.054111200027527985 +224393,1121.9650000128847,-0.05411110093876811 +224394,1121.9700000128848,-0.05411100184210673 +224395,1121.975000012885,-0.054110902737542106 +224396,1121.980000012885,-0.05411080362507251 +224397,1121.9850000128852,-0.054110704504696176 +224398,1121.9900000128853,-0.05411060537641137 +224399,1121.9950000128854,-0.054110506240216356 +224400,1122.0000000128855,-0.054110407096109384 +224401,1122.0050000128856,-0.054110307944088706 +224402,1122.0100000128857,-0.054110208784152576 +224403,1122.0150000128858,-0.054110109616299244 +224404,1122.020000012886,-0.05411001044052696 +224405,1122.025000012886,-0.05410991125683398 +224406,1122.0300000128861,-0.05410981206521857 +224407,1122.0350000128863,-0.054109712865678956 +224408,1122.0400000128864,-0.05410961365821341 +224409,1122.0450000128865,-0.05410951444282016 +224410,1122.0500000128866,-0.05410941521949746 +224411,1122.0550000128867,-0.05410931598824357 +224412,1122.0600000128868,-0.05410921674905673 +224413,1122.065000012887,-0.054109117501935186 +224414,1122.070000012887,-0.05410901824687719 +224415,1122.0750000128871,-0.05410891898388097 +224416,1122.0800000128872,-0.054108819712944796 +224417,1122.0850000128873,-0.0541087204340669 +224418,1122.0900000128875,-0.05410862114724552 +224419,1122.0950000128876,-0.0541085218524789 +224420,1122.1000000128877,-0.054108422549765306 +224421,1122.1050000128878,-0.05410832323910296 +224422,1122.110000012888,-0.054108223920490105 +224423,1122.115000012888,-0.054108124593924986 +224424,1122.120000012888,-0.054108025259405834 +224425,1122.1250000128882,-0.05410792591693091 +224426,1122.1300000128883,-0.05410782656649843 +224427,1122.1350000128884,-0.05410772720810665 +224428,1122.1400000128885,-0.0541076278417538 +224429,1122.1450000128887,-0.05410752846743812 +224430,1122.1500000128888,-0.05410742908515783 +224431,1122.1550000128889,-0.0541073296949112 +224432,1122.160000012889,-0.054107230296696444 +224433,1122.165000012889,-0.0541071308905118 +224434,1122.1700000128892,-0.054107031476355504 +224435,1122.1750000128893,-0.05410693205422578 +224436,1122.1800000128894,-0.054106832624120874 +224437,1122.1850000128895,-0.05410673318603901 +224438,1122.1900000128896,-0.054106633739978434 +224439,1122.1950000128897,-0.054106534285937355 +224440,1122.2000000128899,-0.05410643482391403 +224441,1122.20500001289,-0.05410633535390667 +224442,1122.21000001289,-0.05410623587591351 +224443,1122.2150000128902,-0.05410613638993279 +224444,1122.2200000128903,-0.05410603689596272 +224445,1122.2250000128904,-0.05410593739400153 +224446,1122.2300000128905,-0.054105837884047464 +224447,1122.2350000128906,-0.054105738366098735 +224448,1122.2400000128907,-0.054105638840153576 +224449,1122.2450000128908,-0.054105539306210204 +224450,1122.250000012891,-0.05410543976426685 +224451,1122.255000012891,-0.05410534021432173 +224452,1122.2600000128912,-0.05410524065637307 +224453,1122.2650000128913,-0.05410514109041911 +224454,1122.2700000128914,-0.054105041516458056 +224455,1122.2750000128915,-0.054104941934488136 +224456,1122.2800000128916,-0.05410484234450756 +224457,1122.2850000128917,-0.05410474274651456 +224458,1122.2900000128918,-0.05410464314050735 +224459,1122.295000012892,-0.05410454352648415 +224460,1122.300000012892,-0.05410444390444319 +224461,1122.3050000128922,-0.05410434427438267 +224462,1122.3100000128923,-0.05410424463630082 +224463,1122.3150000128924,-0.05410414499019586 +224464,1122.3200000128925,-0.054104045336066 +224465,1122.3250000128926,-0.05410394567390945 +224466,1122.3300000128927,-0.05410384600372443 +224467,1122.3350000128928,-0.05410374632550915 +224468,1122.340000012893,-0.05410364663926184 +224469,1122.345000012893,-0.05410354694498069 +224470,1122.3500000128931,-0.054103447242663937 +224471,1122.3550000128932,-0.05410334753230978 +224472,1122.3600000128934,-0.05410324781391644 +224473,1122.3650000128935,-0.054103148087482116 +224474,1122.3700000128936,-0.05410304835300501 +224475,1122.3750000128937,-0.054102948610483356 +224476,1122.3800000128938,-0.05410284885991534 +224477,1122.385000012894,-0.05410274910129918 +224478,1122.390000012894,-0.0541026493346331 +224479,1122.3950000128941,-0.054102549559915274 +224480,1122.4000000128942,-0.05410244977714393 +224481,1122.4050000128943,-0.05410234998631728 +224482,1122.4100000128944,-0.05410225018743351 +224483,1122.4150000128946,-0.05410215038049084 +224484,1122.4200000128947,-0.054102050565487475 +224485,1122.4250000128948,-0.054101950742421606 +224486,1122.4300000128949,-0.05410185091129144 +224487,1122.435000012895,-0.05410175107209519 +224488,1122.440000012895,-0.05410165122483103 +224489,1122.4450000128952,-0.05410155136949719 +224490,1122.4500000128953,-0.054101451506091865 +224491,1122.4550000128954,-0.05410135163461325 +224492,1122.4600000128955,-0.05410125175505955 +224493,1122.4650000128956,-0.054101151867428955 +224494,1122.4700000128958,-0.05410105197171966 +224495,1122.4750000128959,-0.05410095206792987 +224496,1122.480000012896,-0.05410085215605778 +224497,1122.485000012896,-0.054100752236101585 +224498,1122.4900000128962,-0.05410065230805948 +224499,1122.4950000128963,-0.054100552371929664 +224500,1122.5000000128964,-0.05410045242771034 +224501,1122.5050000128965,-0.054100352475399675 +224502,1122.5100000128966,-0.05410025251499589 +224503,1122.5150000128967,-0.05410015254649716 +224504,1122.5200000128968,-0.05410005256990168 +224505,1122.525000012897,-0.054099952585207646 +224506,1122.530000012897,-0.05409985259241324 +224507,1122.5350000128972,-0.05409975259151666 +224508,1122.5400000128973,-0.0540996525825161 +224509,1122.5450000128974,-0.05409955256540974 +224510,1122.5500000128975,-0.054099452540195755 +224511,1122.5550000128976,-0.05409935250687237 +224512,1122.5600000128977,-0.05409925246543773 +224513,1122.5650000128978,-0.05409915241589005 +224514,1122.570000012898,-0.0540990523582275 +224515,1122.575000012898,-0.05409895229244827 +224516,1122.5800000128982,-0.05409885221855055 +224517,1122.5850000128983,-0.054098752136532514 +224518,1122.5900000128984,-0.054098652046392345 +224519,1122.5950000128985,-0.05409855194812825 +224520,1122.6000000128986,-0.05409845184173838 +224521,1122.6050000128987,-0.05409835172722093 +224522,1122.6100000128988,-0.05409825160457408 +224523,1122.615000012899,-0.05409815147379599 +224524,1122.620000012899,-0.05409805133488487 +224525,1122.6250000128991,-0.05409795118783889 +224526,1122.6300000128992,-0.05409785103265623 +224527,1122.6350000128994,-0.05409775086933505 +224528,1122.6400000128995,-0.05409765069787355 +224529,1122.6450000128996,-0.05409755051826989 +224530,1122.6500000128997,-0.054097450330522254 +224531,1122.6550000128998,-0.05409735013462881 +224532,1122.6600000129,-0.05409724993058774 +224533,1122.6650000129,-0.05409714971839721 +224534,1122.6700000129001,-0.0540970494980554 +224535,1122.6750000129002,-0.05409694926956048 +224536,1122.6800000129003,-0.05409684903291063 +224537,1122.6850000129004,-0.05409674878810401 +224538,1122.6900000129006,-0.054096648535138785 +224539,1122.6950000129007,-0.05409654827401313 +224540,1122.7000000129008,-0.05409644800472523 +224541,1122.7050000129009,-0.054096347727273245 +224542,1122.710000012901,-0.054096247441655324 +224543,1122.715000012901,-0.05409614714786966 +224544,1122.7200000129012,-0.0540960468459144 +224545,1122.7250000129013,-0.05409594653578773 +224546,1122.7300000129014,-0.0540958462174878 +224547,1122.7350000129015,-0.0540957458910128 +224548,1122.7400000129016,-0.054095645556360865 +224549,1122.7450000129018,-0.054095545213530175 +224550,1122.7500000129019,-0.054095444862518875 +224551,1122.755000012902,-0.054095344503325135 +224552,1122.760000012902,-0.05409524413594713 +224553,1122.7650000129022,-0.05409514376038301 +224554,1122.7700000129023,-0.054095043376630944 +224555,1122.7750000129024,-0.05409494298468909 +224556,1122.7800000129025,-0.054094842584555596 +224557,1122.7850000129026,-0.05409474217622862 +224558,1122.7900000129027,-0.05409464175970634 +224559,1122.7950000129028,-0.0540945413349869 +224560,1122.800000012903,-0.054094440902068455 +224561,1122.805000012903,-0.05409434046094917 +224562,1122.8100000129032,-0.054094240011627194 +224563,1122.8150000129033,-0.05409413955410068 +224564,1122.8200000129034,-0.05409403908836778 +224565,1122.8250000129035,-0.05409393861442666 +224566,1122.8300000129036,-0.05409383813227547 +224567,1122.8350000129037,-0.054093737641912346 +224568,1122.8400000129038,-0.054093637143335455 +224569,1122.845000012904,-0.05409353663654295 +224570,1122.850000012904,-0.05409343612153297 +224571,1122.8550000129042,-0.054093335598303684 +224572,1122.8600000129043,-0.054093235066853214 +224573,1122.8650000129044,-0.05409313452717973 +224574,1122.8700000129045,-0.05409303397928138 +224575,1122.8750000129046,-0.054092933423156284 +224576,1122.8800000129047,-0.05409283285880261 +224577,1122.8850000129048,-0.054092732286218505 +224578,1122.890000012905,-0.054092631705402114 +224579,1122.895000012905,-0.05409253111635158 +224580,1122.9000000129051,-0.05409243051906505 +224581,1122.9050000129052,-0.05409232991354067 +224582,1122.9100000129054,-0.05409222929977656 +224583,1122.9150000129055,-0.05409212867777089 +224584,1122.9200000129056,-0.05409202804752178 +224585,1122.9250000129057,-0.05409192740902739 +224586,1122.9300000129058,-0.05409182676228585 +224587,1122.935000012906,-0.054091726107295304 +224588,1122.940000012906,-0.05409162544405389 +224589,1122.9450000129061,-0.05409152477255974 +224590,1122.9500000129062,-0.054091424092810994 +224591,1122.9550000129063,-0.05409132340480579 +224592,1122.9600000129064,-0.05409122270854226 +224593,1122.9650000129066,-0.05409112200401856 +224594,1122.9700000129067,-0.054091021291232805 +224595,1122.9750000129068,-0.05409092057018313 +224596,1122.9800000129069,-0.054090819840867665 +224597,1122.985000012907,-0.05409071910328457 +224598,1122.990000012907,-0.05409061835743195 +224599,1122.9950000129072,-0.05409051760330794 +224600,1123.0000000129073,-0.05409041684091069 +224601,1123.0050000129074,-0.054090316070238315 +224602,1123.0100000129075,-0.05409021529128894 +224603,1123.0150000129076,-0.05409011450406071 +224604,1123.0200000129078,-0.05409001370855174 +224605,1123.0250000129079,-0.05408991290476015 +224606,1123.030000012908,-0.0540898120926841 +224607,1123.035000012908,-0.05408971127232169 +224608,1123.0400000129082,-0.05408961044367106 +224609,1123.0450000129083,-0.054089509606730334 +224610,1123.0500000129084,-0.05408940876149763 +224611,1123.0550000129085,-0.05408930790797106 +224612,1123.0600000129086,-0.05408920704614877 +224613,1123.0650000129087,-0.05408910617602888 +224614,1123.0700000129088,-0.05408900529760949 +224615,1123.075000012909,-0.05408890441088875 +224616,1123.080000012909,-0.05408880351586476 +224617,1123.0850000129092,-0.05408870261253564 +224618,1123.0900000129093,-0.05408860170089953 +224619,1123.0950000129094,-0.05408850078095455 +224620,1123.1000000129095,-0.05408839985269879 +224621,1123.1050000129096,-0.05408829891613039 +224622,1123.1100000129097,-0.054088197971247455 +224623,1123.1150000129098,-0.05408809701804812 +224624,1123.12000001291,-0.054087996056530474 +224625,1123.12500001291,-0.05408789508669266 +224626,1123.1300000129102,-0.05408779410853276 +224627,1123.1350000129103,-0.05408769312204892 +224628,1123.1400000129104,-0.05408759212723924 +224629,1123.1450000129105,-0.05408749112410182 +224630,1123.1500000129106,-0.05408739011263478 +224631,1123.1550000129107,-0.05408728909283624 +224632,1123.1600000129108,-0.054087188064704306 +224633,1123.165000012911,-0.05408708702823709 +224634,1123.170000012911,-0.0540869859834327 +224635,1123.1750000129111,-0.05408688493028923 +224636,1123.1800000129113,-0.05408678386880482 +224637,1123.1850000129114,-0.054086682798977534 +224638,1123.1900000129115,-0.054086581720805514 +224639,1123.1950000129116,-0.05408648063428686 +224640,1123.2000000129117,-0.054086379539419666 +224641,1123.2050000129118,-0.054086278436202034 +224642,1123.210000012912,-0.05408617732463209 +224643,1123.215000012912,-0.05408607620470791 +224644,1123.2200000129121,-0.054085975076427616 +224645,1123.2250000129122,-0.054085873939789295 +224646,1123.2300000129123,-0.05408577279479107 +224647,1123.2350000129125,-0.05408567164143102 +224648,1123.2400000129126,-0.05408557047970726 +224649,1123.2450000129127,-0.05408546930961788 +224650,1123.2500000129128,-0.05408536813116098 +224651,1123.255000012913,-0.05408526694433465 +224652,1123.260000012913,-0.05408516574913701 +224653,1123.265000012913,-0.05408506454556614 +224654,1123.2700000129132,-0.05408496333362014 +224655,1123.2750000129133,-0.054084862113297105 +224656,1123.2800000129134,-0.05408476088459513 +224657,1123.2850000129135,-0.054084659647512315 +224658,1123.2900000129137,-0.05408455840204674 +224659,1123.2950000129138,-0.054084457148196506 +224660,1123.3000000129139,-0.05408435588595971 +224661,1123.305000012914,-0.054084254615334434 +224662,1123.310000012914,-0.05408415333631877 +224663,1123.3150000129142,-0.054084052048910806 +224664,1123.3200000129143,-0.05408395075310864 +224665,1123.3250000129144,-0.05408384944891036 +224666,1123.3300000129145,-0.054083748136314044 +224667,1123.3350000129146,-0.05408364681531779 +224668,1123.3400000129147,-0.05408354548591969 +224669,1123.3450000129149,-0.054083444148117804 +224670,1123.350000012915,-0.05408334280191025 +224671,1123.355000012915,-0.054083241447295094 +224672,1123.3600000129152,-0.054083140084270426 +224673,1123.3650000129153,-0.054083038712834326 +224674,1123.3700000129154,-0.05408293733298487 +224675,1123.3750000129155,-0.054082835944720145 +224676,1123.3800000129156,-0.05408273454803825 +224677,1123.3850000129157,-0.05408263314293724 +224678,1123.3900000129158,-0.05408253172941521 +224679,1123.395000012916,-0.05408243030747023 +224680,1123.400000012916,-0.0540823288771004 +224681,1123.4050000129162,-0.05408222743830378 +224682,1123.4100000129163,-0.05408212599107844 +224683,1123.4150000129164,-0.05408202453542248 +224684,1123.4200000129165,-0.05408192307133395 +224685,1123.4250000129166,-0.05408182159881095 +224686,1123.4300000129167,-0.054081720117851534 +224687,1123.4350000129168,-0.05408161862845378 +224688,1123.440000012917,-0.05408151713061578 +224689,1123.445000012917,-0.05408141562433559 +224690,1123.4500000129171,-0.054081314109611284 +224691,1123.4550000129173,-0.05408121258644094 +224692,1123.4600000129174,-0.05408111105482263 +224693,1123.4650000129175,-0.05408100951475441 +224694,1123.4700000129176,-0.05408090796623437 +224695,1123.4750000129177,-0.054080806409260565 +224696,1123.4800000129178,-0.05408070484383106 +224697,1123.485000012918,-0.05408060326994392 +224698,1123.490000012918,-0.05408050168759723 +224699,1123.4950000129181,-0.05408040009678905 +224700,1123.5000000129182,-0.054080298497517436 +224701,1123.5050000129183,-0.054080196889780455 +224702,1123.5100000129185,-0.05408009527357618 +224703,1123.5150000129186,-0.05407999364890266 +224704,1123.5200000129187,-0.054079892015757976 +224705,1123.5250000129188,-0.05407979037414017 +224706,1123.530000012919,-0.05407968872404733 +224707,1123.535000012919,-0.0540795870654775 +224708,1123.540000012919,-0.05407948539842873 +224709,1123.5450000129192,-0.054079383722899096 +224710,1123.5500000129193,-0.05407928203888665 +224711,1123.5550000129194,-0.054079180346389435 +224712,1123.5600000129195,-0.05407907864540553 +224713,1123.5650000129197,-0.054078976935933 +224714,1123.5700000129198,-0.054078875217969884 +224715,1123.5750000129199,-0.05407877349151423 +224716,1123.58000001292,-0.054078671756564105 +224717,1123.58500001292,-0.05407857001311757 +224718,1123.5900000129202,-0.05407846826117266 +224719,1123.5950000129203,-0.05407836650072744 +224720,1123.6000000129204,-0.05407826473177996 +224721,1123.6050000129205,-0.05407816295432826 +224722,1123.6100000129206,-0.05407806116837041 +224723,1123.6150000129207,-0.05407795937390445 +224724,1123.6200000129209,-0.05407785757092843 +224725,1123.625000012921,-0.05407775575944039 +224726,1123.630000012921,-0.05407765393943839 +224727,1123.6350000129212,-0.05407755211092048 +224728,1123.6400000129213,-0.05407745027388469 +224729,1123.6450000129214,-0.05407734842832909 +224730,1123.6500000129215,-0.054077246574251704 +224731,1123.6550000129216,-0.05407714471165058 +224732,1123.6600000129217,-0.05407704284052376 +224733,1123.6650000129218,-0.0540769409608693 +224734,1123.670000012922,-0.054076839072685234 +224735,1123.675000012922,-0.0540767371759696 +224736,1123.6800000129222,-0.054076635270720444 +224737,1123.6850000129223,-0.05407653335693581 +224738,1123.6900000129224,-0.05407643143461374 +224739,1123.6950000129225,-0.05407632950375225 +224740,1123.7000000129226,-0.0540762275643494 +224741,1123.7050000129227,-0.054076125616403216 +224742,1123.7100000129228,-0.05407602365991176 +224743,1123.715000012923,-0.05407592169487303 +224744,1123.720000012923,-0.054075819721285084 +224745,1123.7250000129231,-0.05407571773914596 +224746,1123.7300000129233,-0.05407561574845369 +224747,1123.7350000129234,-0.05407551374920629 +224748,1123.7400000129235,-0.054075411741401826 +224749,1123.7450000129236,-0.054075309725038295 +224750,1123.7500000129237,-0.05407520770011375 +224751,1123.7550000129238,-0.05407510566662623 +224752,1123.760000012924,-0.05407500362457374 +224753,1123.765000012924,-0.05407490157395432 +224754,1123.7700000129241,-0.054074799514766 +224755,1123.7750000129242,-0.05407469744700681 +224756,1123.7800000129243,-0.05407459537067477 +224757,1123.7850000129245,-0.05407449328576792 +224758,1123.7900000129246,-0.05407439119228427 +224759,1123.7950000129247,-0.054074289090221855 +224760,1123.8000000129248,-0.0540741869795787 +224761,1123.805000012925,-0.054074084860352825 +224762,1123.810000012925,-0.05407398273254226 +224763,1123.815000012925,-0.05407388059614502 +224764,1123.8200000129252,-0.05407377845115913 +224765,1123.8250000129253,-0.05407367629758261 +224766,1123.8300000129254,-0.05407357413541348 +224767,1123.8350000129255,-0.054073471964649754 +224768,1123.8400000129257,-0.05407336978528946 +224769,1123.8450000129258,-0.05407326759733062 +224770,1123.8500000129259,-0.054073165400771235 +224771,1123.855000012926,-0.05407306319560934 +224772,1123.860000012926,-0.054072960981842944 +224773,1123.8650000129262,-0.05407285875947005 +224774,1123.8700000129263,-0.0540727565284887 +224775,1123.8750000129264,-0.05407265428889688 +224776,1123.8800000129265,-0.054072552040692626 +224777,1123.8850000129266,-0.05407244978387395 +224778,1123.8900000129267,-0.05407234751843885 +224779,1123.8950000129269,-0.05407224524438534 +224780,1123.900000012927,-0.054072142961711436 +224781,1123.905000012927,-0.05407204067041515 +224782,1123.9100000129272,-0.054071938370494496 +224783,1123.9150000129273,-0.054071836061947466 +224784,1123.9200000129274,-0.054071733744772074 +224785,1123.9250000129275,-0.054071631418966336 +224786,1123.9300000129276,-0.05407152908452825 +224787,1123.9350000129277,-0.054071426741455826 +224788,1123.9400000129278,-0.054071324389747065 +224789,1123.945000012928,-0.054071222029399964 +224790,1123.950000012928,-0.05407111966041255 +224791,1123.9550000129282,-0.0540710172827828 +224792,1123.9600000129283,-0.05407091489650874 +224793,1123.9650000129284,-0.054070812501588364 +224794,1123.9700000129285,-0.05407071009801966 +224795,1123.9750000129286,-0.05407060768580064 +224796,1123.9800000129287,-0.0540705052649293 +224797,1123.9850000129288,-0.05407040283540364 +224798,1123.990000012929,-0.05407030039722166 +224799,1123.995000012929,-0.05407019795038136 +224800,1124.0000000129291,-0.05407009549488073 +224801,1124.0050000129293,-0.05406999303071777 +224802,1124.0100000129294,-0.05406989055789047 +224803,1124.0150000129295,-0.054069788076396834 +224804,1124.0200000129296,-0.05406968558623486 +224805,1124.0250000129297,-0.05406958308740252 +224806,1124.0300000129298,-0.05406948057989783 +224807,1124.03500001293,-0.05406937806371876 +224808,1124.04000001293,-0.05406927553886331 +224809,1124.0450000129301,-0.05406917300532948 +224810,1124.0500000129302,-0.05406907046311525 +224811,1124.0550000129303,-0.05406896791221861 +224812,1124.0600000129305,-0.05406886535263756 +224813,1124.0650000129306,-0.05406876278437007 +224814,1124.0700000129307,-0.054068660207414125 +224815,1124.0750000129308,-0.054068557621767724 +224816,1124.080000012931,-0.05406845502742885 +224817,1124.085000012931,-0.0540683524243955 +224818,1124.0900000129311,-0.05406824981266563 +224819,1124.0950000129312,-0.05406814719223725 +224820,1124.1000000129313,-0.05406804456310832 +224821,1124.1050000129314,-0.05406794192527683 +224822,1124.1100000129316,-0.054067839278740766 +224823,1124.1150000129317,-0.054067736623498105 +224824,1124.1200000129318,-0.05406763395954684 +224825,1124.1250000129319,-0.05406753128688493 +224826,1124.130000012932,-0.05406742860551037 +224827,1124.135000012932,-0.05406732591542112 +224828,1124.1400000129322,-0.054067223216615175 +224829,1124.1450000129323,-0.0540671205090905 +224830,1124.1500000129324,-0.054067017792845076 +224831,1124.1550000129325,-0.05406691506787688 +224832,1124.1600000129326,-0.05406681233418388 +224833,1124.1650000129328,-0.05406670959176405 +224834,1124.1700000129329,-0.054066606840615365 +224835,1124.175000012933,-0.0540665040807358 +224836,1124.180000012933,-0.05406640131212332 +224837,1124.1850000129332,-0.054066298534775896 +224838,1124.1900000129333,-0.0540661957486915 +224839,1124.1950000129334,-0.05406609295386809 +224840,1124.2000000129335,-0.05406599015030367 +224841,1124.2050000129336,-0.05406588733799616 +224842,1124.2100000129337,-0.05406578451694357 +224843,1124.2150000129338,-0.05406568168714384 +224844,1124.220000012934,-0.05406557884859494 +224845,1124.225000012934,-0.05406547600129484 +224846,1124.2300000129342,-0.05406537314524149 +224847,1124.2350000129343,-0.054065270280432884 +224848,1124.2400000129344,-0.05406516740686695 +224849,1124.2450000129345,-0.05406506452454167 +224850,1124.2500000129346,-0.054064961633455 +224851,1124.2550000129347,-0.054064858733604906 +224852,1124.2600000129348,-0.05406475582498935 +224853,1124.265000012935,-0.05406465290760627 +224854,1124.270000012935,-0.05406454998145365 +224855,1124.2750000129352,-0.05406444704652944 +224856,1124.2800000129353,-0.054064344102831584 +224857,1124.2850000129354,-0.05406424115035806 +224858,1124.2900000129355,-0.0540641381891068 +224859,1124.2950000129356,-0.054064035219075775 +224860,1124.3000000129357,-0.054063932240262944 +224861,1124.3050000129358,-0.05406382925266624 +224862,1124.310000012936,-0.05406372625628363 +224863,1124.315000012936,-0.05406362325111306 +224864,1124.3200000129361,-0.05406352023715249 +224865,1124.3250000129362,-0.05406341721439986 +224866,1124.3300000129364,-0.05406331418285314 +224867,1124.3350000129365,-0.05406321114251024 +224868,1124.3400000129366,-0.05406310809336914 +224869,1124.3450000129367,-0.05406300503542778 +224870,1124.3500000129368,-0.0540629019686841 +224871,1124.355000012937,-0.05406279889313606 +224872,1124.360000012937,-0.0540626958087816 +224873,1124.3650000129371,-0.05406259271561866 +224874,1124.3700000129372,-0.0540624896136452 +224875,1124.3750000129373,-0.05406238650285914 +224876,1124.3800000129374,-0.054062283383258435 +224877,1124.3850000129376,-0.054062180254841025 +224878,1124.3900000129377,-0.05406207711760484 +224879,1124.3950000129378,-0.05406197397154784 +224880,1124.4000000129379,-0.05406187081666796 +224881,1124.405000012938,-0.054061767652963146 +224882,1124.410000012938,-0.05406166448043131 +224883,1124.4150000129382,-0.05406156129907041 +224884,1124.4200000129383,-0.05406145810887837 +224885,1124.4250000129384,-0.054061354909853136 +224886,1124.4300000129385,-0.05406125170199265 +224887,1124.4350000129386,-0.05406114848529482 +224888,1124.4400000129388,-0.054061045259757606 +224889,1124.4450000129389,-0.054060942025378936 +224890,1124.450000012939,-0.054060838782156735 +224891,1124.455000012939,-0.05406073553008895 +224892,1124.4600000129392,-0.0540606322691735 +224893,1124.4650000129393,-0.05406052899940831 +224894,1124.4700000129394,-0.054060425720791304 +224895,1124.4750000129395,-0.05406032243332042 +224896,1124.4800000129396,-0.0540602191369936 +224897,1124.4850000129397,-0.05406011583180876 +224898,1124.4900000129398,-0.05406001251776382 +224899,1124.49500001294,-0.05405990919485672 +224900,1124.50000001294,-0.054059805863085376 +224901,1124.5050000129402,-0.05405970252244771 +224902,1124.5100000129403,-0.05405959917294165 +224903,1124.5150000129404,-0.05405949581456511 +224904,1124.5200000129405,-0.05405939244731603 +224905,1124.5250000129406,-0.05405928907119231 +224906,1124.5300000129407,-0.0540591856861919 +224907,1124.5350000129408,-0.05405908229231268 +224908,1124.540000012941,-0.054058978889552606 +224909,1124.545000012941,-0.05405887547790958 +224910,1124.5500000129412,-0.05405877205738152 +224911,1124.5550000129413,-0.05405866862796634 +224912,1124.5600000129414,-0.05405856518966196 +224913,1124.5650000129415,-0.054058461742466306 +224914,1124.5700000129416,-0.05405835828637727 +224915,1124.5750000129417,-0.05405825482139278 +224916,1124.5800000129418,-0.05405815134751076 +224917,1124.585000012942,-0.054058047864729106 +224918,1124.590000012942,-0.05405794437304573 +224919,1124.5950000129421,-0.054057840872458546 +224920,1124.6000000129422,-0.05405773736296547 +224921,1124.6050000129424,-0.054057633844564405 +224922,1124.6100000129425,-0.054057530317253265 +224923,1124.6150000129426,-0.05405742678102996 +224924,1124.6200000129427,-0.054057323235892386 +224925,1124.6250000129428,-0.054057219681838464 +224926,1124.630000012943,-0.05405711611886609 +224927,1124.635000012943,-0.05405701254697317 +224928,1124.6400000129431,-0.054056908966157606 +224929,1124.6450000129432,-0.05405680537641731 +224930,1124.6500000129433,-0.054056701777750196 +224931,1124.6550000129434,-0.05405659817015413 +224932,1124.6600000129436,-0.05405649455362705 +224933,1124.6650000129437,-0.05405639092816684 +224934,1124.6700000129438,-0.05405628729377139 +224935,1124.6750000129439,-0.05405618365043861 +224936,1124.680000012944,-0.05405607999816641 +224937,1124.685000012944,-0.054055976336952666 +224938,1124.6900000129442,-0.0540558726667953 +224939,1124.6950000129443,-0.054055768987692175 +224940,1124.7000000129444,-0.05405566529964122 +224941,1124.7050000129445,-0.054055561602640315 +224942,1124.7100000129446,-0.054055457896687344 +224943,1124.7150000129448,-0.054055354181780216 +224944,1124.7200000129449,-0.05405525045791683 +224945,1124.725000012945,-0.05405514672509506 +224946,1124.730000012945,-0.054055042983312804 +224947,1124.7350000129452,-0.05405493923256795 +224948,1124.7400000129453,-0.05405483547285839 +224949,1124.7450000129454,-0.054054731704182006 +224950,1124.7500000129455,-0.054054627926536696 +224951,1124.7550000129456,-0.054054524139920346 +224952,1124.7600000129457,-0.05405442034433084 +224953,1124.7650000129458,-0.05405431653976605 +224954,1124.770000012946,-0.054054212726223884 +224955,1124.775000012946,-0.054054108903702214 +224956,1124.7800000129462,-0.054054005072198937 +224957,1124.7850000129463,-0.05405390123171192 +224958,1124.7900000129464,-0.054053797382239054 +224959,1124.7950000129465,-0.05405369352377821 +224960,1124.8000000129466,-0.054053589656327276 +224961,1124.8050000129467,-0.05405348577988413 +224962,1124.8100000129468,-0.054053381894446646 +224963,1124.815000012947,-0.05405327800001271 +224964,1124.820000012947,-0.05405317409658021 +224965,1124.8250000129472,-0.054053070184147005 +224966,1124.8300000129473,-0.054052966262710986 +224967,1124.8350000129474,-0.05405286233227001 +224968,1124.8400000129475,-0.054052758392821955 +224969,1124.8450000129476,-0.0540526544443647 +224970,1124.8500000129477,-0.054052550486896125 +224971,1124.8550000129478,-0.0540524465204141 +224972,1124.860000012948,-0.05405234254491648 +224973,1124.865000012948,-0.05405223856040115 +224974,1124.8700000129481,-0.054052134566865986 +224975,1124.8750000129482,-0.05405203056430885 +224976,1124.8800000129484,-0.05405192655272761 +224977,1124.8850000129485,-0.054051822532120125 +224978,1124.8900000129486,-0.05405171850248428 +224979,1124.8950000129487,-0.05405161446381791 +224980,1124.9000000129488,-0.054051510416118914 +224981,1124.905000012949,-0.05405140635938514 +224982,1124.910000012949,-0.054051302293614455 +224983,1124.9150000129491,-0.05405119821880473 +224984,1124.9200000129492,-0.05405109413495381 +224985,1124.9250000129493,-0.054050990042059585 +224986,1124.9300000129494,-0.054050885940119885 +224987,1124.9350000129496,-0.05405078182913259 +224988,1124.9400000129497,-0.05405067770909555 +224989,1124.9450000129498,-0.05405057358000663 +224990,1124.9500000129499,-0.05405046944186368 +224991,1124.95500001295,-0.054050365294664574 +224992,1124.96000001295,-0.054050261138407135 +224993,1124.9650000129502,-0.05405015697308924 +224994,1124.9700000129503,-0.05405005279870876 +224995,1124.9750000129504,-0.054049948615263535 +224996,1124.9800000129505,-0.05404984442275141 +224997,1124.9850000129506,-0.05404974022117023 +224998,1124.9900000129508,-0.05404963601051786 +224999,1124.9950000129509,-0.05404953179079216 +225000,1125.000000012951,-0.05404942756199097 +225001,1125.005000012951,-0.054049323324112136 +225002,1125.0100000129512,-0.05404921907715351 +225003,1125.0150000129513,-0.05404911482111294 +225004,1125.0200000129514,-0.05404901055598828 +225005,1125.0250000129515,-0.054048906281777366 +225006,1125.0300000129516,-0.054048801998478044 +225007,1125.0350000129517,-0.05404869770608817 +225008,1125.0400000129519,-0.05404859340460557 +225009,1125.045000012952,-0.0540484890940281 +225010,1125.050000012952,-0.05404838477435361 +225011,1125.0550000129522,-0.054048280445579924 +225012,1125.0600000129523,-0.05404817610770489 +225013,1125.0650000129524,-0.054048071760726346 +225014,1125.0700000129525,-0.054047967404642135 +225015,1125.0750000129526,-0.054047863039450104 +225016,1125.0800000129527,-0.054047758665148084 +225017,1125.0850000129528,-0.0540476542817339 +225018,1125.090000012953,-0.0540475498892054 +225019,1125.095000012953,-0.05404744548756042 +225020,1125.1000000129532,-0.0540473410767968 +225021,1125.1050000129533,-0.05404723665691236 +225022,1125.1100000129534,-0.05404713222790494 +225023,1125.1150000129535,-0.05404702778977237 +225024,1125.1200000129536,-0.05404692334251249 +225025,1125.1250000129537,-0.05404681888612312 +225026,1125.1300000129538,-0.054046714420602104 +225027,1125.135000012954,-0.054046609945947253 +225028,1125.140000012954,-0.054046505462156405 +225029,1125.1450000129541,-0.054046400969227394 +225030,1125.1500000129543,-0.05404629646715804 +225031,1125.1550000129544,-0.05404619195594617 +225032,1125.1600000129545,-0.05404608743558961 +225033,1125.1650000129546,-0.0540459829060862 +225034,1125.1700000129547,-0.05404587836743373 +225035,1125.1750000129548,-0.05404577381963004 +225036,1125.180000012955,-0.05404566926267297 +225037,1125.185000012955,-0.05404556469656032 +225038,1125.1900000129551,-0.05404546012128992 +225039,1125.1950000129552,-0.05404535553685959 +225040,1125.2000000129553,-0.054045250943267134 +225041,1125.2050000129555,-0.054045146340510386 +225042,1125.2100000129556,-0.054045041728587165 +225043,1125.2150000129557,-0.054044937107495285 +225044,1125.2200000129558,-0.05404483247723256 +225045,1125.225000012956,-0.05404472783779681 +225046,1125.230000012956,-0.05404462318918584 +225047,1125.235000012956,-0.054044518531397474 +225048,1125.2400000129562,-0.054044413864429514 +225049,1125.2450000129563,-0.054044309188279786 +225050,1125.2500000129564,-0.054044204502946086 +225051,1125.2550000129565,-0.05404409980842624 +225052,1125.2600000129567,-0.05404399510471805 +225053,1125.2650000129568,-0.05404389039181933 +225054,1125.2700000129569,-0.05404378566972788 +225055,1125.275000012957,-0.054043680938441516 +225056,1125.280000012957,-0.054043576197958035 +225057,1125.2850000129572,-0.05404347144827526 +225058,1125.2900000129573,-0.05404336668939098 +225059,1125.2950000129574,-0.054043261921303 +225060,1125.3000000129575,-0.05404315714400913 +225061,1125.3050000129576,-0.054043052357507164 +225062,1125.3100000129577,-0.05404294756179492 +225063,1125.3150000129579,-0.054042842756870185 +225064,1125.320000012958,-0.05404273794273077 +225065,1125.325000012958,-0.054042633119374475 +225066,1125.3300000129582,-0.054042528286799084 +225067,1125.3350000129583,-0.054042423445002416 +225068,1125.3400000129584,-0.054042318593982244 +225069,1125.3450000129585,-0.05404221373373639 +225070,1125.3500000129586,-0.05404210886426263 +225071,1125.3550000129587,-0.054042003985558765 +225072,1125.3600000129588,-0.05404189909762259 +225073,1125.365000012959,-0.0540417942004519 +225074,1125.370000012959,-0.05404168929404449 +225075,1125.3750000129592,-0.05404158437839814 +225076,1125.3800000129593,-0.05404147945351066 +225077,1125.3850000129594,-0.05404137451937983 +225078,1125.3900000129595,-0.05404126957600343 +225079,1125.3950000129596,-0.05404116462337926 +225080,1125.4000000129597,-0.05404105966150512 +225081,1125.4050000129598,-0.05404095469037877 +225082,1125.41000001296,-0.054040849709998014 +225083,1125.41500001296,-0.05404074472036062 +225084,1125.4200000129601,-0.054040639721464404 +225085,1125.4250000129603,-0.05404053471330711 +225086,1125.4300000129604,-0.05404042969588656 +225087,1125.4350000129605,-0.054040324669200515 +225088,1125.4400000129606,-0.054040219633246754 +225089,1125.4450000129607,-0.05404011458802306 +225090,1125.4500000129608,-0.05404000953352723 +225091,1125.455000012961,-0.05403990446975702 +225092,1125.460000012961,-0.05403979939671023 +225093,1125.4650000129611,-0.05403969431438461 +225094,1125.4700000129612,-0.05403958922277795 +225095,1125.4750000129613,-0.05403948412188804 +225096,1125.4800000129615,-0.05403937901171263 +225097,1125.4850000129616,-0.05403927389224951 +225098,1125.4900000129617,-0.05403916876349645 +225099,1125.4950000129618,-0.054039063625451224 +225100,1125.500000012962,-0.05403895847811161 +225101,1125.505000012962,-0.05403885332147537 +225102,1125.510000012962,-0.05403874815554028 +225103,1125.5150000129622,-0.05403864298030411 +225104,1125.5200000129623,-0.05403853779576461 +225105,1125.5250000129624,-0.05403843260191957 +225106,1125.5300000129625,-0.05403832739876675 +225107,1125.5350000129627,-0.05403822218630393 +225108,1125.5400000129628,-0.05403811696452884 +225109,1125.5450000129629,-0.05403801173343928 +225110,1125.550000012963,-0.05403790649303299 +225111,1125.555000012963,-0.05403780124330775 +225112,1125.5600000129632,-0.05403769598426132 +225113,1125.5650000129633,-0.054037590715891454 +225114,1125.5700000129634,-0.05403748543819591 +225115,1125.5750000129635,-0.05403738015117247 +225116,1125.5800000129636,-0.054037274854818865 +225117,1125.5850000129637,-0.05403716954913287 +225118,1125.5900000129639,-0.05403706423411224 +225119,1125.595000012964,-0.05403695890975472 +225120,1125.600000012964,-0.05403685357605808 +225121,1125.6050000129642,-0.054036748233020064 +225122,1125.6100000129643,-0.05403664288063844 +225123,1125.6150000129644,-0.05403653751891095 +225124,1125.6200000129645,-0.05403643214783536 +225125,1125.6250000129646,-0.05403632676740941 +225126,1125.6300000129647,-0.05403622137763084 +225127,1125.6350000129648,-0.054036115978497425 +225128,1125.640000012965,-0.0540360105700069 +225129,1125.645000012965,-0.05403590515215702 +225130,1125.6500000129652,-0.05403579972494552 +225131,1125.6550000129653,-0.05403569428837017 +225132,1125.6600000129654,-0.0540355888424287 +225133,1125.6650000129655,-0.054035483387118846 +225134,1125.6700000129656,-0.05403537792243837 +225135,1125.6750000129657,-0.054035272448385005 +225136,1125.6800000129658,-0.054035166964956506 +225137,1125.685000012966,-0.054035061472150606 +225138,1125.690000012966,-0.05403495596996504 +225139,1125.6950000129661,-0.05403485045839756 +225140,1125.7000000129663,-0.054034744937445894 +225141,1125.7050000129664,-0.05403463940710781 +225142,1125.7100000129665,-0.054034533867381 +225143,1125.7150000129666,-0.05403442831826324 +225144,1125.7200000129667,-0.05403432275975224 +225145,1125.7250000129668,-0.05403421719184576 +225146,1125.730000012967,-0.05403411161454152 +225147,1125.735000012967,-0.05403400602783725 +225148,1125.7400000129671,-0.0540339004317307 +225149,1125.7450000129672,-0.05403379482621959 +225150,1125.7500000129673,-0.05403368921130165 +225151,1125.7550000129675,-0.05403358358697462 +225152,1125.7600000129676,-0.054033477953236216 +225153,1125.7650000129677,-0.05403337231008418 +225154,1125.7700000129678,-0.05403326665751624 +225155,1125.775000012968,-0.05403316099553011 +225156,1125.780000012968,-0.05403305532412352 +225157,1125.785000012968,-0.05403294964329422 +225158,1125.7900000129682,-0.0540328439530399 +225159,1125.7950000129683,-0.0540327382533583 +225160,1125.8000000129684,-0.05403263254424715 +225161,1125.8050000129685,-0.054032526825704155 +225162,1125.8100000129687,-0.05403242109772705 +225163,1125.8150000129688,-0.05403231536031356 +225164,1125.8200000129689,-0.05403220961346139 +225165,1125.825000012969,-0.054032103857168265 +225166,1125.830000012969,-0.0540319980914319 +225167,1125.8350000129692,-0.054031892316250024 +225168,1125.8400000129693,-0.05403178653162034 +225169,1125.8450000129694,-0.05403168073754058 +225170,1125.8500000129695,-0.054031574934008446 +225171,1125.8550000129696,-0.05403146912102166 +225172,1125.8600000129697,-0.05403136329857793 +225173,1125.8650000129699,-0.054031257466674976 +225174,1125.87000001297,-0.054031151625310504 +225175,1125.87500001297,-0.05403104577448221 +225176,1125.8800000129702,-0.05403093991418783 +225177,1125.8850000129703,-0.05403083404442505 +225178,1125.8900000129704,-0.054030728165191604 +225179,1125.8950000129705,-0.054030622276485175 +225180,1125.9000000129706,-0.054030516378303486 +225181,1125.9050000129707,-0.05403041047064424 +225182,1125.9100000129708,-0.054030304553505146 +225183,1125.915000012971,-0.05403019862688389 +225184,1125.920000012971,-0.05403009269077819 +225185,1125.9250000129712,-0.054029986745185755 +225186,1125.9300000129713,-0.054029880790104276 +225187,1125.9350000129714,-0.05402977482553145 +225188,1125.9400000129715,-0.05402966885146498 +225189,1125.9450000129716,-0.05402956286790257 +225190,1125.9500000129717,-0.05402945687484191 +225191,1125.9550000129718,-0.05402935087228072 +225192,1125.960000012972,-0.054029244860216666 +225193,1125.965000012972,-0.054029138838647454 +225194,1125.9700000129722,-0.0540290328075708 +225195,1125.9750000129723,-0.05402892676698437 +225196,1125.9800000129724,-0.054028820716885875 +225197,1125.9850000129725,-0.054028714657273 +225198,1125.9900000129726,-0.05402860858814344 +225199,1125.9950000129727,-0.05402850250949488 +225200,1126.0000000129728,-0.05402839642132503 +225201,1126.005000012973,-0.05402829032363155 +225202,1126.010000012973,-0.054028184216412145 +225203,1126.0150000129731,-0.0540280780996645 +225204,1126.0200000129732,-0.0540279719733863 +225205,1126.0250000129734,-0.05402786583757523 +225206,1126.0300000129735,-0.054027759692228984 +225207,1126.0350000129736,-0.05402765353734523 +225208,1126.0400000129737,-0.054027547372921675 +225209,1126.0450000129738,-0.054027441198955986 +225210,1126.050000012974,-0.05402733501544584 +225211,1126.055000012974,-0.054027228822388924 +225212,1126.0600000129741,-0.054027122619782916 +225213,1126.0650000129742,-0.0540270164076255 +225214,1126.0700000129743,-0.054026910185914344 +225215,1126.0750000129744,-0.05402680395464715 +225216,1126.0800000129746,-0.05402669771382156 +225217,1126.0850000129747,-0.05402659146343528 +225218,1126.0900000129748,-0.05402648520348598 +225219,1126.0950000129749,-0.05402637893397132 +225220,1126.100000012975,-0.05402627265488897 +225221,1126.105000012975,-0.054026166366236625 +225222,1126.1100000129752,-0.05402606006801193 +225223,1126.1150000129753,-0.054025953760212575 +225224,1126.1200000129754,-0.05402584744283623 +225225,1126.1250000129755,-0.05402574111588055 +225226,1126.1300000129756,-0.054025634779343225 +225227,1126.1350000129758,-0.05402552843322189 +225228,1126.1400000129759,-0.05402542207751425 +225229,1126.145000012976,-0.05402531571221795 +225230,1126.150000012976,-0.054025209337330654 +225231,1126.1550000129762,-0.05402510295285002 +225232,1126.1600000129763,-0.05402499655877372 +225233,1126.1650000129764,-0.05402489015509941 +225234,1126.1700000129765,-0.05402478374182476 +225235,1126.1750000129766,-0.05402467731894744 +225236,1126.1800000129767,-0.05402457088646508 +225237,1126.1850000129768,-0.05402446444437537 +225238,1126.190000012977,-0.05402435799267594 +225239,1126.195000012977,-0.05402425153136447 +225240,1126.2000000129772,-0.054024145060438615 +225241,1126.2050000129773,-0.05402403857989602 +225242,1126.2100000129774,-0.054023932089734335 +225243,1126.2150000129775,-0.05402382558995122 +225244,1126.2200000129776,-0.054023719080544326 +225245,1126.2250000129777,-0.054023612561511315 +225246,1126.2300000129778,-0.054023506032849826 +225247,1126.235000012978,-0.05402339949455753 +225248,1126.240000012978,-0.054023292946632044 +225249,1126.2450000129782,-0.05402318638907103 +225250,1126.2500000129783,-0.05402307982187215 +225251,1126.2550000129784,-0.05402297324503303 +225252,1126.2600000129785,-0.05402286665855134 +225253,1126.2650000129786,-0.05402276006242471 +225254,1126.2700000129787,-0.05402265345665079 +225255,1126.2750000129788,-0.05402254684122721 +225256,1126.280000012979,-0.05402244021615162 +225257,1126.285000012979,-0.05402233358142168 +225258,1126.2900000129791,-0.054022226937035005 +225259,1126.2950000129792,-0.054022120282989236 +225260,1126.3000000129794,-0.05402201361928202 +225261,1126.3050000129795,-0.054021906945911 +225262,1126.3100000129796,-0.054021800262873815 +225263,1126.3150000129797,-0.054021693570168096 +225264,1126.3200000129798,-0.05402158686779149 +225265,1126.32500001298,-0.054021480155741604 +225266,1126.33000001298,-0.054021373434016084 +225267,1126.3350000129801,-0.05402126670261258 +225268,1126.3400000129802,-0.05402115996152871 +225269,1126.3450000129803,-0.05402105321076211 +225270,1126.3500000129804,-0.05402094645031041 +225271,1126.3550000129806,-0.05402083968017122 +225272,1126.3600000129807,-0.0540207329003422 +225273,1126.3650000129808,-0.05402062611082096 +225274,1126.3700000129809,-0.05402051931160513 +225275,1126.375000012981,-0.054020412502692336 +225276,1126.380000012981,-0.054020305684080214 +225277,1126.3850000129812,-0.05402019885576638 +225278,1126.3900000129813,-0.054020092017748454 +225279,1126.3950000129814,-0.05401998517002407 +225280,1126.4000000129815,-0.054019878312590836 +225281,1126.4050000129816,-0.05401977144544638 +225282,1126.4100000129818,-0.054019664568588324 +225283,1126.4150000129819,-0.05401955768201428 +225284,1126.420000012982,-0.05401945078572187 +225285,1126.425000012982,-0.05401934387970873 +225286,1126.4300000129822,-0.05401923696397245 +225287,1126.4350000129823,-0.05401913003851065 +225288,1126.4400000129824,-0.05401902310332096 +225289,1126.4450000129825,-0.05401891615840099 +225290,1126.4500000129826,-0.05401880920374833 +225291,1126.4550000129827,-0.05401870223936062 +225292,1126.4600000129828,-0.05401859526523546 +225293,1126.465000012983,-0.05401848828137045 +225294,1126.470000012983,-0.05401838128776322 +225295,1126.4750000129832,-0.054018274284411374 +225296,1126.4800000129833,-0.05401816727131252 +225297,1126.4850000129834,-0.054018060248464256 +225298,1126.4900000129835,-0.05401795321586418 +225299,1126.4950000129836,-0.05401784617350992 +225300,1126.5000000129837,-0.05401773912139907 +225301,1126.5050000129838,-0.05401763205952925 +225302,1126.510000012984,-0.054017524987898045 +225303,1126.515000012984,-0.05401741790650306 +225304,1126.5200000129842,-0.05401731081534189 +225305,1126.5250000129843,-0.05401720371441213 +225306,1126.5300000129844,-0.05401709660371141 +225307,1126.5350000129845,-0.0540169894832373 +225308,1126.5400000129846,-0.0540168823529874 +225309,1126.5450000129847,-0.05401677521295932 +225310,1126.5500000129848,-0.05401666806315065 +225311,1126.555000012985,-0.05401656090355897 +225312,1126.560000012985,-0.054016453734181895 +225313,1126.5650000129851,-0.05401634655501701 +225314,1126.5700000129852,-0.05401623936606191 +225315,1126.5750000129854,-0.054016132167314185 +225316,1126.5800000129855,-0.05401602495877141 +225317,1126.5850000129856,-0.054015917740431206 +225318,1126.5900000129857,-0.05401581051229114 +225319,1126.5950000129858,-0.0540157032743488 +225320,1126.600000012986,-0.05401559602660177 +225321,1126.605000012986,-0.05401548876904765 +225322,1126.6100000129861,-0.05401538150168402 +225323,1126.6150000129862,-0.05401527422450846 +225324,1126.6200000129863,-0.05401516693751856 +225325,1126.6250000129864,-0.0540150596407119 +225326,1126.6300000129866,-0.05401495233408605 +225327,1126.6350000129867,-0.05401484501763859 +225328,1126.6400000129868,-0.05401473769136713 +225329,1126.6450000129869,-0.05401463035526922 +225330,1126.650000012987,-0.05401452300934244 +225331,1126.655000012987,-0.05401441565358438 +225332,1126.6600000129872,-0.05401430828799262 +225333,1126.6650000129873,-0.05401420091256472 +225334,1126.6700000129874,-0.05401409352729826 +225335,1126.6750000129875,-0.05401398613219081 +225336,1126.6800000129876,-0.05401387872723994 +225337,1126.6850000129878,-0.05401377131244324 +225338,1126.6900000129879,-0.05401366388779826 +225339,1126.695000012988,-0.05401355645330259 +225340,1126.700000012988,-0.05401344900895377 +225341,1126.7050000129882,-0.054013341554749406 +225342,1126.7100000129883,-0.054013234090687035 +225343,1126.7150000129884,-0.05401312661676424 +225344,1126.7200000129885,-0.05401301913297859 +225345,1126.7250000129886,-0.05401291163932763 +225346,1126.7300000129887,-0.05401280413580894 +225347,1126.7350000129888,-0.054012696622420066 +225348,1126.740000012989,-0.05401258909915859 +225349,1126.745000012989,-0.054012481566022064 +225350,1126.7500000129892,-0.054012374023008035 +225351,1126.7550000129893,-0.05401226647011408 +225352,1126.7600000129894,-0.054012158907337765 +225353,1126.7650000129895,-0.054012051334676625 +225354,1126.7700000129896,-0.054011943752128234 +225355,1126.7750000129897,-0.05401183615969014 +225356,1126.7800000129898,-0.05401172855735989 +225357,1126.78500001299,-0.05401162094513505 +225358,1126.79000001299,-0.054011513323013176 +225359,1126.7950000129902,-0.05401140569099181 +225360,1126.8000000129903,-0.05401129804906851 +225361,1126.8050000129904,-0.054011190397240824 +225362,1126.8100000129905,-0.05401108273550631 +225363,1126.8150000129906,-0.05401097506386249 +225364,1126.8200000129907,-0.05401086738230694 +225365,1126.8250000129908,-0.05401075969083719 +225366,1126.830000012991,-0.05401065198945079 +225367,1126.835000012991,-0.05401054427814529 +225368,1126.8400000129911,-0.05401043655691822 +225369,1126.8450000129912,-0.054010328825767145 +225370,1126.8500000129914,-0.05401022108468959 +225371,1126.8550000129915,-0.05401011333368311 +225372,1126.8600000129916,-0.05401000557274523 +225373,1126.8650000129917,-0.05400989780187349 +225374,1126.8700000129918,-0.05400979002106546 +225375,1126.875000012992,-0.054009682230318636 +225376,1126.880000012992,-0.05400957442963058 +225377,1126.8850000129921,-0.054009466618998817 +225378,1126.8900000129922,-0.05400935879842088 +225379,1126.8950000129923,-0.0540092509678943 +225380,1126.9000000129925,-0.054009143127416635 +225381,1126.9050000129926,-0.05400903527698539 +225382,1126.9100000129927,-0.054008927416598115 +225383,1126.9150000129928,-0.05400881954625233 +225384,1126.920000012993,-0.05400871166594556 +225385,1126.925000012993,-0.05400860377567534 +225386,1126.930000012993,-0.0540084958754392 +225387,1126.9350000129932,-0.05400838796523466 +225388,1126.9400000129933,-0.054008280045059254 +225389,1126.9450000129934,-0.05400817211491051 +225390,1126.9500000129935,-0.054008064174785944 +225391,1126.9550000129937,-0.054007956224683074 +225392,1126.9600000129938,-0.05400784826459943 +225393,1126.9650000129939,-0.05400774029453254 +225394,1126.970000012994,-0.05400763231447991 +225395,1126.975000012994,-0.05400752432443906 +225396,1126.9800000129942,-0.05400741632440752 +225397,1126.9850000129943,-0.0540073083143828 +225398,1126.9900000129944,-0.05400720029436242 +225399,1126.9950000129945,-0.0540070922643439 +225400,1127.0000000129946,-0.05400698422432474 +225401,1127.0050000129947,-0.054006876174302464 +225402,1127.0100000129949,-0.05400676811427458 +225403,1127.015000012995,-0.05400666004423862 +225404,1127.020000012995,-0.05400655196419207 +225405,1127.0250000129952,-0.05400644387413245 +225406,1127.0300000129953,-0.054006335774057265 +225407,1127.0350000129954,-0.054006227663964027 +225408,1127.0400000129955,-0.05400611954385025 +225409,1127.0450000129956,-0.05400601141371344 +225410,1127.0500000129957,-0.0540059032735511 +225411,1127.0550000129958,-0.05400579512336073 +225412,1127.060000012996,-0.05400568696313982 +225413,1127.065000012996,-0.0540055787928859 +225414,1127.0700000129962,-0.054005470612596466 +225415,1127.0750000129963,-0.05400536242226902 +225416,1127.0800000129964,-0.05400525422190104 +225417,1127.0850000129965,-0.054005146011490056 +225418,1127.0900000129966,-0.05400503779103354 +225419,1127.0950000129967,-0.054004929560529005 +225420,1127.1000000129968,-0.05400482131997396 +225421,1127.105000012997,-0.05400471306936586 +225422,1127.110000012997,-0.05400460480870224 +225423,1127.1150000129971,-0.054004496537980576 +225424,1127.1200000129973,-0.05400438825719836 +225425,1127.1250000129974,-0.05400427996635308 +225426,1127.1300000129975,-0.05400417166544225 +225427,1127.1350000129976,-0.054004063354463325 +225428,1127.1400000129977,-0.054003955033413834 +225429,1127.1450000129978,-0.054003846702291226 +225430,1127.150000012998,-0.05400373836109301 +225431,1127.155000012998,-0.05400363000981668 +225432,1127.1600000129981,-0.054003521648459694 +225433,1127.1650000129982,-0.05400341327701956 +225434,1127.1700000129983,-0.05400330489549376 +225435,1127.1750000129985,-0.05400319650387977 +225436,1127.1800000129986,-0.05400308810217506 +225437,1127.1850000129987,-0.054002979690377116 +225438,1127.1900000129988,-0.05400287126848343 +225439,1127.195000012999,-0.05400276283649148 +225440,1127.200000012999,-0.05400265439439875 +225441,1127.205000012999,-0.05400254594220269 +225442,1127.2100000129992,-0.05400243747990079 +225443,1127.2150000129993,-0.054002329007490545 +225444,1127.2200000129994,-0.054002220524969405 +225445,1127.2250000129995,-0.054002112032334834 +225446,1127.2300000129997,-0.05400200352958433 +225447,1127.2350000129998,-0.05400189501671535 +225448,1127.2400000129999,-0.054001786493725376 +225449,1127.245000013,-0.05400167796061187 +225450,1127.250000013,-0.054001569417372296 +225451,1127.2550000130002,-0.05400146086400413 +225452,1127.2600000130003,-0.05400135230050483 +225453,1127.2650000130004,-0.05400124372687188 +225454,1127.2700000130005,-0.054001135143102716 +225455,1127.2750000130006,-0.05400102654919482 +225456,1127.2800000130007,-0.05400091794514566 +225457,1127.2850000130009,-0.05400080933095268 +225458,1127.290000013001,-0.05400070070661336 +225459,1127.295000013001,-0.054000592072125146 +225460,1127.3000000130012,-0.05400048342748551 +225461,1127.3050000130013,-0.054000374772691886 +225462,1127.3100000130014,-0.05400026610774175 +225463,1127.3150000130015,-0.05400015743263256 +225464,1127.3200000130016,-0.05400004874736177 +225465,1127.3250000130017,-0.05399994005192684 +225466,1127.3300000130018,-0.05399983134632521 +225467,1127.335000013002,-0.05399972263055433 +225468,1127.340000013002,-0.053999613904611665 +225469,1127.3450000130022,-0.053999505168494666 +225470,1127.3500000130023,-0.05399939642220077 +225471,1127.3550000130024,-0.05399928766572744 +225472,1127.3600000130025,-0.05399917889907211 +225473,1127.3650000130026,-0.05399907012223223 +225474,1127.3700000130027,-0.05399896133520525 +225475,1127.3750000130028,-0.05399885253798861 +225476,1127.380000013003,-0.053998743730579765 +225477,1127.385000013003,-0.05399863491297614 +225478,1127.3900000130031,-0.0539985260851752 +225479,1127.3950000130033,-0.05399841724717437 +225480,1127.4000000130034,-0.05399830839897111 +225481,1127.4050000130035,-0.05399819954056282 +225482,1127.4100000130036,-0.05399809067194698 +225483,1127.4150000130037,-0.053997981793121 +225484,1127.4200000130038,-0.05399787290408233 +225485,1127.425000013004,-0.0539977640048284 +225486,1127.430000013004,-0.05399765509535665 +225487,1127.4350000130041,-0.05399754617566451 +225488,1127.4400000130042,-0.05399743724574941 +225489,1127.4450000130043,-0.05399732830560878 +225490,1127.4500000130045,-0.05399721935524005 +225491,1127.4550000130046,-0.05399711039464066 +225492,1127.4600000130047,-0.05399700142380803 +225493,1127.4650000130048,-0.05399689244273959 +225494,1127.470000013005,-0.05399678345143278 +225495,1127.475000013005,-0.053996674449885006 +225496,1127.480000013005,-0.0539965654380937 +225497,1127.4850000130052,-0.05399645641605628 +225498,1127.4900000130053,-0.053996347383770175 +225499,1127.4950000130054,-0.053996238341232815 +225500,1127.5000000130055,-0.05399612928844161 +225501,1127.5050000130057,-0.053996020225393994 +225502,1127.5100000130058,-0.05399591115208736 +225503,1127.5150000130059,-0.05399580206851916 +225504,1127.520000013006,-0.053995692974686774 +225505,1127.525000013006,-0.05399558387058765 +225506,1127.5300000130062,-0.0539954747562192 +225507,1127.5350000130063,-0.05399536563157881 +225508,1127.5400000130064,-0.05399525649666392 +225509,1127.5450000130065,-0.05399514735147193 +225510,1127.5500000130066,-0.05399503819600027 +225511,1127.5550000130067,-0.05399492903024632 +225512,1127.5600000130069,-0.053994819854207524 +225513,1127.565000013007,-0.053994710667881265 +225514,1127.570000013007,-0.05399460147126496 +225515,1127.5750000130072,-0.053994492264356014 +225516,1127.5800000130073,-0.05399438304715183 +225517,1127.5850000130074,-0.05399427381964982 +225518,1127.5900000130075,-0.05399416458184739 +225519,1127.5950000130076,-0.05399405533374193 +225520,1127.6000000130077,-0.053993946075330854 +225521,1127.6050000130078,-0.05399383680661156 +225522,1127.610000013008,-0.05399372752758143 +225523,1127.615000013008,-0.05399361823823789 +225524,1127.6200000130082,-0.053993508938578315 +225525,1127.6250000130083,-0.053993399628600114 +225526,1127.6300000130084,-0.05399329030830069 +225527,1127.6350000130085,-0.05399318097767743 +225528,1127.6400000130086,-0.05399307163672772 +225529,1127.6450000130087,-0.05399296228544897 +225530,1127.6500000130088,-0.05399285292383857 +225531,1127.655000013009,-0.053992743551893894 +225532,1127.660000013009,-0.05399263416961234 +225533,1127.6650000130091,-0.05399252477699132 +225534,1127.6700000130093,-0.053992415374028185 +225535,1127.6750000130094,-0.05399230596072035 +225536,1127.6800000130095,-0.05399219653706518 +225537,1127.6850000130096,-0.053992087103060075 +225538,1127.6900000130097,-0.05399197765870241 +225539,1127.6950000130098,-0.05399186820398958 +225540,1127.70000001301,-0.05399175873891896 +225541,1127.70500001301,-0.05399164926348793 +225542,1127.7100000130101,-0.05399153977769387 +225543,1127.7150000130102,-0.053991430281534164 +225544,1127.7200000130103,-0.05399132077500619 +225545,1127.7250000130105,-0.05399121125810733 +225546,1127.7300000130106,-0.053991101730834955 +225547,1127.7350000130107,-0.05399099219318645 +225548,1127.7400000130108,-0.05399088264515916 +225549,1127.745000013011,-0.05399077308675048 +225550,1127.750000013011,-0.05399066351795779 +225551,1127.755000013011,-0.05399055393877845 +225552,1127.7600000130112,-0.053990444349209826 +225553,1127.7650000130113,-0.0539903347492493 +225554,1127.7700000130114,-0.05399022513889423 +225555,1127.7750000130115,-0.05399011551814199 +225556,1127.7800000130117,-0.05399000588698995 +225557,1127.7850000130118,-0.05398989624543546 +225558,1127.7900000130119,-0.05398978659347591 +225559,1127.795000013012,-0.05398967693110865 +225560,1127.800000013012,-0.05398956725833104 +225561,1127.8050000130122,-0.05398945757514043 +225562,1127.8100000130123,-0.053989347881534214 +225563,1127.8150000130124,-0.05398923817750972 +225564,1127.8200000130125,-0.05398912846306432 +225565,1127.8250000130126,-0.05398901873819537 +225566,1127.8300000130128,-0.05398890900290023 +225567,1127.8350000130129,-0.053988799257176256 +225568,1127.840000013013,-0.0539886895010208 +225569,1127.845000013013,-0.05398857973443121 +225570,1127.8500000130132,-0.05398846995740486 +225571,1127.8550000130133,-0.05398836016993907 +225572,1127.8600000130134,-0.05398825037203122 +225573,1127.8650000130135,-0.05398814056367864 +225574,1127.8700000130136,-0.053988030744878686 +225575,1127.8750000130137,-0.05398792091562871 +225576,1127.8800000130138,-0.05398781107592605 +225577,1127.885000013014,-0.05398770122576806 +225578,1127.890000013014,-0.053987591365152084 +225579,1127.8950000130142,-0.05398748149407547 +225580,1127.9000000130143,-0.053987371612535556 +225581,1127.9050000130144,-0.05398726172052967 +225582,1127.9100000130145,-0.05398715181805518 +225583,1127.9150000130146,-0.05398704190510941 +225584,1127.9200000130147,-0.0539869319816897 +225585,1127.9250000130148,-0.05398682204779337 +225586,1127.930000013015,-0.05398671210341779 +225587,1127.935000013015,-0.053986602148560284 +225588,1127.9400000130152,-0.053986492183218174 +225589,1127.9450000130153,-0.0539863822073888 +225590,1127.9500000130154,-0.05398627222106951 +225591,1127.9550000130155,-0.05398616222425763 +225592,1127.9600000130156,-0.05398605221695047 +225593,1127.9650000130157,-0.05398594219914538 +225594,1127.9700000130158,-0.05398583217083969 +225595,1127.975000013016,-0.05398572213203072 +225596,1127.980000013016,-0.05398561208271579 +225597,1127.9850000130161,-0.05398550202289225 +225598,1127.9900000130162,-0.053985391952557395 +225599,1127.9950000130164,-0.05398528187170857 +225600,1128.0000000130165,-0.053985171780343094 +225601,1128.0050000130166,-0.05398506167845828 +225602,1128.0100000130167,-0.053984951566051466 +225603,1128.0150000130168,-0.05398484144311995 +225604,1128.020000013017,-0.053984731309661076 +225605,1128.025000013017,-0.05398462116567214 +225606,1128.0300000130171,-0.05398451101115046 +225607,1128.0350000130172,-0.053984400846093364 +225608,1128.0400000130173,-0.05398429067049817 +225609,1128.0450000130174,-0.05398418048436217 +225610,1128.0500000130176,-0.0539840702876827 +225611,1128.0550000130177,-0.053983960080457055 +225612,1128.0600000130178,-0.05398384986268255 +225613,1128.0650000130179,-0.0539837396343565 +225614,1128.070000013018,-0.05398362939547621 +225615,1128.075000013018,-0.053983519146039 +225616,1128.0800000130182,-0.05398340888604216 +225617,1128.0850000130183,-0.053983298615483 +225618,1128.0900000130184,-0.05398318833435881 +225619,1128.0950000130185,-0.053983078042666936 +225620,1128.1000000130186,-0.05398296774040463 +225621,1128.1050000130188,-0.05398285742756923 +225622,1128.1100000130189,-0.05398274710415803 +225623,1128.115000013019,-0.05398263677016831 +225624,1128.120000013019,-0.0539825264255974 +225625,1128.1250000130192,-0.05398241607044257 +225626,1128.1300000130193,-0.05398230570470113 +225627,1128.1350000130194,-0.05398219532837038 +225628,1128.1400000130195,-0.0539820849414476 +225629,1128.1450000130196,-0.05398197454393008 +225630,1128.1500000130197,-0.05398186413581513 +225631,1128.1550000130198,-0.05398175371710003 +225632,1128.16000001302,-0.05398164328778209 +225633,1128.16500001302,-0.053981532847858574 +225634,1128.1700000130202,-0.053981422397326784 +225635,1128.1750000130203,-0.053981311936184 +225636,1128.1800000130204,-0.05398120146442752 +225637,1128.1850000130205,-0.053981090982054614 +225638,1128.1900000130206,-0.05398098048906257 +225639,1128.1950000130207,-0.053980869985448696 +225640,1128.2000000130208,-0.053980759471210234 +225641,1128.205000013021,-0.05398064894634449 +225642,1128.210000013021,-0.05398053841084874 +225643,1128.2150000130212,-0.05398042786472026 +225644,1128.2200000130213,-0.05398031730795633 +225645,1128.2250000130214,-0.053980206740554225 +225646,1128.2300000130215,-0.05398009616251123 +225647,1128.2350000130216,-0.05397998557382462 +225648,1128.2400000130217,-0.053979874974491665 +225649,1128.2450000130218,-0.05397976436450964 +225650,1128.250000013022,-0.053979653743875804 +225651,1128.255000013022,-0.05397954311258744 +225652,1128.2600000130221,-0.05397943247064181 +225653,1128.2650000130222,-0.053979321818036184 +225654,1128.2700000130224,-0.05397921115476784 +225655,1128.2750000130225,-0.053979100480834034 +225656,1128.2800000130226,-0.053978989796232044 +225657,1128.2850000130227,-0.05397887910095912 +225658,1128.2900000130228,-0.05397876839501254 +225659,1128.295000013023,-0.05397865767838955 +225660,1128.300000013023,-0.053978546951087426 +225661,1128.3050000130231,-0.05397843621310342 +225662,1128.3100000130232,-0.053978325464434804 +225663,1128.3150000130233,-0.053978214705078825 +225664,1128.3200000130234,-0.05397810393503275 +225665,1128.3250000130236,-0.05397799315429383 +225666,1128.3300000130237,-0.0539778823628593 +225667,1128.3350000130238,-0.05397777156072645 +225668,1128.3400000130239,-0.053977660747892516 +225669,1128.345000013024,-0.053977549924354745 +225670,1128.350000013024,-0.05397743909011041 +225671,1128.3550000130242,-0.05397732824515674 +225672,1128.3600000130243,-0.05397721738949099 +225673,1128.3650000130244,-0.053977106523110406 +225674,1128.3700000130245,-0.053976995646012244 +225675,1128.3750000130246,-0.05397688475819373 +225676,1128.3800000130248,-0.05397677385965214 +225677,1128.3850000130249,-0.053976662950384696 +225678,1128.390000013025,-0.05397655203038865 +225679,1128.395000013025,-0.05397644109966123 +225680,1128.4000000130252,-0.0539763301581997 +225681,1128.4050000130253,-0.05397621920600129 +225682,1128.4100000130254,-0.053976108243063224 +225683,1128.4150000130255,-0.05397599726938276 +225684,1128.4200000130256,-0.05397588628495713 +225685,1128.4250000130257,-0.053975775289783555 +225686,1128.4300000130258,-0.05397566428385929 +225687,1128.435000013026,-0.05397555326718156 +225688,1128.440000013026,-0.05397544223974758 +225689,1128.4450000130262,-0.05397533120155461 +225690,1128.4500000130263,-0.053975220152599875 +225691,1128.4550000130264,-0.053975109092880585 +225692,1128.4600000130265,-0.05397499802239399 +225693,1128.4650000130266,-0.053974886941137314 +225694,1128.4700000130267,-0.05397477584910777 +225695,1128.4750000130268,-0.053974664746302595 +225696,1128.480000013027,-0.05397455363271901 +225697,1128.485000013027,-0.05397444250835423 +225698,1128.4900000130272,-0.05397433137320549 +225699,1128.4950000130273,-0.05397422022727001 +225700,1128.5000000130274,-0.053974109070545 +225701,1128.5050000130275,-0.05397399790302768 +225702,1128.5100000130276,-0.05397388672471527 +225703,1128.5150000130277,-0.053973775535605 +225704,1128.5200000130278,-0.05397366433569407 +225705,1128.525000013028,-0.0539735531249797 +225706,1128.530000013028,-0.0539734419034591 +225707,1128.5350000130281,-0.05397333067112949 +225708,1128.5400000130282,-0.05397321942798807 +225709,1128.5450000130284,-0.053973108174032065 +225710,1128.5500000130285,-0.05397299690925867 +225711,1128.5550000130286,-0.053972885633665105 +225712,1128.5600000130287,-0.05397277434724858 +225713,1128.5650000130288,-0.053972663050006274 +225714,1128.570000013029,-0.05397255174193544 +225715,1128.575000013029,-0.05397244042303324 +225716,1128.5800000130291,-0.05397232909329688 +225717,1128.5850000130292,-0.05397221775272358 +225718,1128.5900000130293,-0.05397210640131054 +225719,1128.5950000130294,-0.05397199503905495 +225720,1128.6000000130296,-0.05397188366595401 +225721,1128.6050000130297,-0.05397177228200492 +225722,1128.6100000130298,-0.05397166088720488 +225723,1128.6150000130299,-0.05397154948155108 +225724,1128.62000001303,-0.05397143806504072 +225725,1128.62500001303,-0.053971326637670985 +225726,1128.6300000130302,-0.05397121519943907 +225727,1128.6350000130303,-0.05397110375034217 +225728,1128.6400000130304,-0.05397099229037747 +225729,1128.6450000130305,-0.05397088081954216 +225730,1128.6500000130306,-0.053970769337833444 +225731,1128.6550000130308,-0.053970657845248494 +225732,1128.6600000130309,-0.0539705463417845 +225733,1128.665000013031,-0.053970434827438636 +225734,1128.670000013031,-0.0539703233022081 +225735,1128.6750000130312,-0.05397021176609008 +225736,1128.6800000130313,-0.05397010021908173 +225737,1128.6850000130314,-0.05396998866118025 +225738,1128.6900000130315,-0.053969877092382816 +225739,1128.6950000130316,-0.053969765512686604 +225740,1128.7000000130317,-0.053969653922088814 +225741,1128.7050000130318,-0.05396954232058659 +225742,1128.710000013032,-0.05396943070817711 +225743,1128.715000013032,-0.053969319084857574 +225744,1128.7200000130322,-0.05396920745062513 +225745,1128.7250000130323,-0.05396909580547697 +225746,1128.7300000130324,-0.053968984149410246 +225747,1128.7350000130325,-0.053968872482422145 +225748,1128.7400000130326,-0.05396876080450982 +225749,1128.7450000130327,-0.053968649115670446 +225750,1128.7500000130328,-0.0539685374159012 +225751,1128.755000013033,-0.053968425705199226 +225752,1128.760000013033,-0.0539683139835617 +225753,1128.7650000130332,-0.05396820225098579 +225754,1128.7700000130333,-0.05396809050746865 +225755,1128.7750000130334,-0.05396797875300745 +225756,1128.7800000130335,-0.05396786698759934 +225757,1128.7850000130336,-0.05396775521124148 +225758,1128.7900000130337,-0.05396764342393104 +225759,1128.7950000130338,-0.05396753162566516 +225760,1128.800000013034,-0.05396741981644101 +225761,1128.805000013034,-0.05396730799625573 +225762,1128.8100000130341,-0.053967196165106486 +225763,1128.8150000130343,-0.05396708432299043 +225764,1128.8200000130344,-0.05396697246990471 +225765,1128.8250000130345,-0.05396686060584646 +225766,1128.8300000130346,-0.05396674873081287 +225767,1128.8350000130347,-0.05396663684480105 +225768,1128.8400000130348,-0.05396652494780815 +225769,1128.845000013035,-0.05396641303983135 +225770,1128.850000013035,-0.05396630112086777 +225771,1128.8550000130351,-0.053966189190914546 +225772,1128.8600000130352,-0.05396607724996883 +225773,1128.8650000130353,-0.05396596529802777 +225774,1128.8700000130355,-0.0539658533350885 +225775,1128.8750000130356,-0.053965741361148165 +225776,1128.8800000130357,-0.053965629376203895 +225777,1128.8850000130358,-0.053965517380252834 +225778,1128.890000013036,-0.053965405373292114 +225779,1128.895000013036,-0.05396529335531886 +225780,1128.900000013036,-0.05396518132633023 +225781,1128.9050000130362,-0.053965069286323344 +225782,1128.9100000130363,-0.05396495723529533 +225783,1128.9150000130364,-0.05396484517324332 +225784,1128.9200000130365,-0.053964733100164454 +225785,1128.9250000130367,-0.05396462101605585 +225786,1128.9300000130368,-0.053964508920914624 +225787,1128.9350000130369,-0.05396439681473794 +225788,1128.940000013037,-0.05396428469752289 +225789,1128.945000013037,-0.05396417256926661 +225790,1128.9500000130372,-0.053964060429966224 +225791,1128.9550000130373,-0.05396394827961885 +225792,1128.9600000130374,-0.05396383611822161 +225793,1128.9650000130375,-0.05396372394577162 +225794,1128.9700000130376,-0.053963611762266 +225795,1128.9750000130377,-0.05396349956770188 +225796,1128.9800000130379,-0.05396338736207635 +225797,1128.985000013038,-0.05396327514538655 +225798,1128.990000013038,-0.05396316291762958 +225799,1128.9950000130382,-0.05396305067880256 +225800,1129.0000000130383,-0.0539629384289026 +225801,1129.0050000130384,-0.053962826167926824 +225802,1129.0100000130385,-0.053962713895872316 +225803,1129.0150000130386,-0.053962601612736194 +225804,1129.0200000130387,-0.053962489318515584 +225805,1129.0250000130388,-0.05396237701320757 +225806,1129.030000013039,-0.05396226469680927 +225807,1129.035000013039,-0.05396215236931778 +225808,1129.0400000130392,-0.053962040030730206 +225809,1129.0450000130393,-0.05396192768104365 +225810,1129.0500000130394,-0.053961815320255214 +225811,1129.0550000130395,-0.053961702948361986 +225812,1129.0600000130396,-0.053961590565361095 +225813,1129.0650000130397,-0.05396147817124961 +225814,1129.0700000130398,-0.053961365766024644 +225815,1129.07500001304,-0.053961253349683276 +225816,1129.08000001304,-0.053961140922222615 +225817,1129.0850000130401,-0.053961028483639754 +225818,1129.0900000130403,-0.053960916033931765 +225819,1129.0950000130404,-0.05396080357309576 +225820,1129.1000000130405,-0.05396069110112883 +225821,1129.1050000130406,-0.053960578618028054 +225822,1129.1100000130407,-0.053960466123790525 +225823,1129.1150000130408,-0.05396035361841332 +225824,1129.120000013041,-0.053960241101893534 +225825,1129.125000013041,-0.05396012857422824 +225826,1129.1300000130411,-0.053960016035414525 +225827,1129.1350000130412,-0.05395990348544949 +225828,1129.1400000130413,-0.053959790924330196 +225829,1129.1450000130415,-0.05395967835205373 +225830,1129.1500000130416,-0.05395956576861717 +225831,1129.1550000130417,-0.05395945317401758 +225832,1129.1600000130418,-0.05395934056825206 +225833,1129.165000013042,-0.053959227951317676 +225834,1129.170000013042,-0.053959115323211494 +225835,1129.175000013042,-0.05395900268393058 +225836,1129.1800000130422,-0.05395889003347202 +225837,1129.1850000130423,-0.05395877737183288 +225838,1129.1900000130424,-0.05395866469901024 +225839,1129.1950000130425,-0.05395855201500116 +225840,1129.2000000130427,-0.05395843931980271 +225841,1129.2050000130428,-0.053958326613411954 +225842,1129.2100000130429,-0.05395821389582597 +225843,1129.215000013043,-0.05395810116704179 +225844,1129.220000013043,-0.05395798842705651 +225845,1129.2250000130432,-0.05395787567586717 +225846,1129.2300000130433,-0.05395776291347085 +225847,1129.2350000130434,-0.05395765013986458 +225848,1129.2400000130435,-0.053957537355045444 +225849,1129.2450000130436,-0.053957424559010495 +225850,1129.2500000130437,-0.053957311751756776 +225851,1129.2550000130439,-0.05395719893328136 +225852,1129.260000013044,-0.05395708610358129 +225853,1129.265000013044,-0.05395697326265362 +225854,1129.2700000130442,-0.05395686041049541 +225855,1129.2750000130443,-0.0539567475471037 +225856,1129.2800000130444,-0.053956634672475544 +225857,1129.2850000130445,-0.053956521786607994 +225858,1129.2900000130446,-0.05395640888949808 +225859,1129.2950000130447,-0.05395629598114286 +225860,1129.3000000130448,-0.053956183061539376 +225861,1129.305000013045,-0.05395607013068468 +225862,1129.310000013045,-0.05395595718857581 +225863,1129.3150000130452,-0.0539558442352098 +225864,1129.3200000130453,-0.0539557312705837 +225865,1129.3250000130454,-0.05395561829469454 +225866,1129.3300000130455,-0.05395550530753937 +225867,1129.3350000130456,-0.05395539230911521 +225868,1129.3400000130457,-0.0539552792994191 +225869,1129.3450000130458,-0.05395516627844809 +225870,1129.350000013046,-0.0539550532461992 +225871,1129.355000013046,-0.053954940202669464 +225872,1129.3600000130461,-0.05395482714785591 +225873,1129.3650000130463,-0.05395471408175558 +225874,1129.3700000130464,-0.0539546010043655 +225875,1129.3750000130465,-0.05395448791568268 +225876,1129.3800000130466,-0.053954374815704156 +225877,1129.3850000130467,-0.05395426170442697 +225878,1129.3900000130468,-0.05395414858184812 +225879,1129.395000013047,-0.05395403544796464 +225880,1129.400000013047,-0.053953922302773565 +225881,1129.4050000130471,-0.053953809146271896 +225882,1129.4100000130472,-0.05395369597845665 +225883,1129.4150000130473,-0.05395358279932486 +225884,1129.4200000130475,-0.053953469608873546 +225885,1129.4250000130476,-0.05395335640709972 +225886,1129.4300000130477,-0.0539532431940004 +225887,1129.4350000130478,-0.05395312996957257 +225888,1129.440000013048,-0.05395301673381329 +225889,1129.445000013048,-0.053952903486719536 +225890,1129.450000013048,-0.053952790228288326 +225891,1129.4550000130482,-0.053952676958516674 +225892,1129.4600000130483,-0.0539525636774016 +225893,1129.4650000130484,-0.05395245038494009 +225894,1129.4700000130485,-0.05395233708112916 +225895,1129.4750000130487,-0.05395222376596581 +225896,1129.4800000130488,-0.05395211043944704 +225897,1129.4850000130489,-0.05395199710156986 +225898,1129.490000013049,-0.05395188375233127 +225899,1129.495000013049,-0.05395177039172828 +225900,1129.5000000130492,-0.05395165701975786 +225901,1129.5050000130493,-0.05395154363641704 +225902,1129.5100000130494,-0.0539514302417028 +225903,1129.5150000130495,-0.053951316835612134 +225904,1129.5200000130496,-0.053951203418142045 +225905,1129.5250000130497,-0.05395108998928951 +225906,1129.5300000130499,-0.053950976549051545 +225907,1129.53500001305,-0.05395086309742511 +225908,1129.54000001305,-0.05395074963440722 +225909,1129.5450000130502,-0.05395063615999486 +225910,1129.5500000130503,-0.05395052267418501 +225911,1129.5550000130504,-0.05395040917697466 +225912,1129.5600000130505,-0.05395029566836078 +225913,1129.5650000130506,-0.053950182148340374 +225914,1129.5700000130507,-0.053950068616910415 +225915,1129.5750000130508,-0.05394995507406789 +225916,1129.580000013051,-0.05394984151980977 +225917,1129.585000013051,-0.05394972795413304 +225918,1129.5900000130512,-0.05394961437703468 +225919,1129.5950000130513,-0.053949500788511656 +225920,1129.6000000130514,-0.05394938718856096 +225921,1129.6050000130515,-0.05394927357717955 +225922,1129.6100000130516,-0.05394915995436442 +225923,1129.6150000130517,-0.05394904632011251 +225924,1129.6200000130518,-0.05394893267442083 +225925,1129.625000013052,-0.05394881901728633 +225926,1129.630000013052,-0.05394870534870596 +225927,1129.6350000130521,-0.053948591668676715 +225928,1129.6400000130523,-0.05394847797719554 +225929,1129.6450000130524,-0.05394836427425942 +225930,1129.6500000130525,-0.0539482505598653 +225931,1129.6550000130526,-0.05394813683401016 +225932,1129.6600000130527,-0.053948023096690945 +225933,1129.6650000130528,-0.05394790934790463 +225934,1129.670000013053,-0.05394779558764817 +225935,1129.675000013053,-0.05394768181591853 +225936,1129.6800000130531,-0.05394756803271264 +225937,1129.6850000130532,-0.05394745423802748 +225938,1129.6900000130533,-0.05394734043185999 +225939,1129.6950000130535,-0.053947226614207124 +225940,1129.7000000130536,-0.05394711278506586 +225941,1129.7050000130537,-0.05394699894443312 +225942,1129.7100000130538,-0.053946885092305864 +225943,1129.715000013054,-0.05394677122868103 +225944,1129.720000013054,-0.05394665735355558 +225945,1129.7250000130541,-0.053946543466926455 +225946,1129.7300000130542,-0.05394642956879061 +225947,1129.7350000130543,-0.053946315659144956 +225948,1129.7400000130544,-0.05394620173798647 +225949,1129.7450000130546,-0.05394608780531208 +225950,1129.7500000130547,-0.05394597386111872 +225951,1129.7550000130548,-0.05394585990540334 +225952,1129.7600000130549,-0.05394574593816287 +225953,1129.765000013055,-0.05394563195939425 +225954,1129.770000013055,-0.053945517969094414 +225955,1129.7750000130552,-0.05394540396726029 +225956,1129.7800000130553,-0.05394528995388883 +225957,1129.7850000130554,-0.05394517592897695 +225958,1129.7900000130555,-0.05394506189252158 +225959,1129.7950000130556,-0.05394494784451966 +225960,1129.8000000130558,-0.05394483378496811 +225961,1129.8050000130559,-0.053944719713863866 +225962,1129.810000013056,-0.05394460563120383 +225963,1129.815000013056,-0.053944491536984954 +225964,1129.8200000130562,-0.053944377431204144 +225965,1129.8250000130563,-0.05394426331385833 +225966,1129.8300000130564,-0.05394414918494444 +225967,1129.8350000130565,-0.05394403504445937 +225968,1129.8400000130566,-0.053943920892400056 +225969,1129.8450000130567,-0.05394380672876342 +225970,1129.8500000130568,-0.05394369255354637 +225971,1129.855000013057,-0.05394357836674583 +225972,1129.860000013057,-0.053943464168358705 +225973,1129.8650000130572,-0.0539433499583819 +225974,1129.8700000130573,-0.05394323573681234 +225975,1129.8750000130574,-0.05394312150364693 +225976,1129.8800000130575,-0.05394300725888259 +225977,1129.8850000130576,-0.0539428930025162 +225978,1129.8900000130577,-0.05394277873454469 +225979,1129.8950000130578,-0.053942664454964956 +225980,1129.900000013058,-0.05394255016377392 +225981,1129.905000013058,-0.05394243586096846 +225982,1129.9100000130582,-0.053942321546545484 +225983,1129.9150000130583,-0.0539422072205019 +225984,1129.9200000130584,-0.0539420928828346 +225985,1129.9250000130585,-0.05394197853354049 +225986,1129.9300000130586,-0.053941864172616476 +225987,1129.9350000130587,-0.053941749800059426 +225988,1129.9400000130588,-0.05394163541586626 +225989,1129.945000013059,-0.05394152102003386 +225990,1129.950000013059,-0.05394140661255912 +225991,1129.9550000130591,-0.053941292193438926 +225992,1129.9600000130592,-0.05394117776267016 +225993,1129.9650000130594,-0.05394106332024974 +225994,1129.9700000130595,-0.05394094886617452 +225995,1129.9750000130596,-0.053940834400441416 +225996,1129.9800000130597,-0.053940719923047296 +225997,1129.9850000130598,-0.053940605433989035 +225998,1129.99000001306,-0.05394049093326354 +225999,1129.99500001306,-0.053940376420867665 +226000,1130.0000000130601,-0.053940261896798306 +226001,1130.0050000130602,-0.05394014736105234 +226002,1130.0100000130603,-0.053940032813626644 +226003,1130.0150000130604,-0.05393991825451809 +226004,1130.0200000130606,-0.05393980368372357 +226005,1130.0250000130607,-0.05393968910123994 +226006,1130.0300000130608,-0.05393957450706407 +226007,1130.0350000130609,-0.05393945990119284 +226008,1130.040000013061,-0.05393934528362311 +226009,1130.045000013061,-0.05393923065435178 +226010,1130.0500000130612,-0.053939116013375685 +226011,1130.0550000130613,-0.053939001360691706 +226012,1130.0600000130614,-0.053938886696296706 +226013,1130.0650000130615,-0.05393877202018754 +226014,1130.0700000130616,-0.05393865733236109 +226015,1130.0750000130618,-0.05393854263281419 +226016,1130.0800000130619,-0.05393842792154372 +226017,1130.085000013062,-0.05393831319854654 +226018,1130.090000013062,-0.0539381984638195 +226019,1130.0950000130622,-0.053938083717359475 +226020,1130.1000000130623,-0.0539379689591633 +226021,1130.1050000130624,-0.053937854189227835 +226022,1130.1100000130625,-0.05393773940754993 +226023,1130.1150000130626,-0.053937624614126434 +226024,1130.1200000130627,-0.053937509808954204 +226025,1130.1250000130628,-0.0539373949920301 +226026,1130.130000013063,-0.05393728016335095 +226027,1130.135000013063,-0.053937165322913615 +226028,1130.1400000130632,-0.05393705047071494 +226029,1130.1450000130633,-0.05393693560675176 +226030,1130.1500000130634,-0.053936820731020914 +226031,1130.1550000130635,-0.05393670584351926 +226032,1130.1600000130636,-0.053936590944243634 +226033,1130.1650000130637,-0.05393647603319087 +226034,1130.1700000130638,-0.05393636111035781 +226035,1130.175000013064,-0.05393624617574129 +226036,1130.180000013064,-0.053936131229338144 +226037,1130.1850000130642,-0.05393601627114521 +226038,1130.1900000130643,-0.05393590130115932 +226039,1130.1950000130644,-0.0539357863193773 +226040,1130.2000000130645,-0.05393567132579599 +226041,1130.2050000130646,-0.05393555632041222 +226042,1130.2100000130647,-0.053935441303222816 +226043,1130.2150000130648,-0.05393532627422461 +226044,1130.220000013065,-0.05393521123341441 +226045,1130.225000013065,-0.053935096180789045 +226046,1130.2300000130651,-0.05393498111634536 +226047,1130.2350000130652,-0.05393486604008015 +226048,1130.2400000130654,-0.053934750951990254 +226049,1130.2450000130655,-0.05393463585207249 +226050,1130.2500000130656,-0.05393452074032366 +226051,1130.2550000130657,-0.05393440561674061 +226052,1130.2600000130658,-0.05393429048132013 +226053,1130.265000013066,-0.05393417533405905 +226054,1130.270000013066,-0.05393406017495417 +226055,1130.2750000130661,-0.05393394500400231 +226056,1130.2800000130662,-0.05393382982120028 +226057,1130.2850000130663,-0.053933714626544886 +226058,1130.2900000130664,-0.05393359942003295 +226059,1130.2950000130666,-0.05393348420166126 +226060,1130.3000000130667,-0.05393336897142663 +226061,1130.3050000130668,-0.05393325372932587 +226062,1130.3100000130669,-0.053933138475355774 +226063,1130.315000013067,-0.05393302320951315 +226064,1130.320000013067,-0.0539329079317948 +226065,1130.3250000130672,-0.053932792642197525 +226066,1130.3300000130673,-0.05393267734071812 +226067,1130.3350000130674,-0.05393256202735337 +226068,1130.3400000130675,-0.05393244670210008 +226069,1130.3450000130676,-0.05393233136495506 +226070,1130.3500000130678,-0.05393221601591509 +226071,1130.3550000130679,-0.05393210065497695 +226072,1130.360000013068,-0.05393198528213745 +226073,1130.365000013068,-0.05393186989739337 +226074,1130.3700000130682,-0.05393175450074151 +226075,1130.3750000130683,-0.05393163909217863 +226076,1130.3800000130684,-0.053931523671701544 +226077,1130.3850000130685,-0.05393140823930702 +226078,1130.3900000130686,-0.05393129279499185 +226079,1130.3950000130687,-0.05393117733875281 +226080,1130.4000000130688,-0.053931061870586675 +226081,1130.405000013069,-0.05393094639049025 +226082,1130.410000013069,-0.053930830898460284 +226083,1130.4150000130692,-0.053930715394493574 +226084,1130.4200000130693,-0.05393059987858688 +226085,1130.4250000130694,-0.053930484350736975 +226086,1130.4300000130695,-0.05393036881094065 +226087,1130.4350000130696,-0.05393025325919467 +226088,1130.4400000130697,-0.0539301376954958 +226089,1130.4450000130698,-0.05393002211984081 +226090,1130.45000001307,-0.05392990653222647 +226091,1130.45500001307,-0.05392979093264955 +226092,1130.4600000130702,-0.05392967532110682 +226093,1130.4650000130703,-0.053929559697595025 +226094,1130.4700000130704,-0.053929444062110934 +226095,1130.4750000130705,-0.05392932841465131 +226096,1130.4800000130706,-0.05392921275521293 +226097,1130.4850000130707,-0.05392909708379253 +226098,1130.4900000130708,-0.05392898140038688 +226099,1130.495000013071,-0.05392886570499273 +226100,1130.500000013071,-0.05392874999760684 +226101,1130.5050000130711,-0.05392863427822597 +226102,1130.5100000130712,-0.05392851854684686 +226103,1130.5150000130714,-0.05392840280346627 +226104,1130.5200000130715,-0.05392828704808095 +226105,1130.5250000130716,-0.05392817128068764 +226106,1130.5300000130717,-0.05392805550128309 +226107,1130.5350000130718,-0.05392793970986405 +226108,1130.540000013072,-0.053927823906427266 +226109,1130.545000013072,-0.05392770809096947 +226110,1130.5500000130721,-0.05392759226348743 +226111,1130.5550000130722,-0.05392747642397787 +226112,1130.5600000130723,-0.05392736057243752 +226113,1130.5650000130724,-0.05392724470886314 +226114,1130.5700000130726,-0.05392712883325146 +226115,1130.5750000130727,-0.053927012945599206 +226116,1130.5800000130728,-0.053926897045903116 +226117,1130.5850000130729,-0.05392678113415994 +226118,1130.590000013073,-0.0539266652103664 +226119,1130.595000013073,-0.0539265492745192 +226120,1130.6000000130732,-0.05392643332661511 +226121,1130.6050000130733,-0.053926317366650836 +226122,1130.6100000130734,-0.053926201394623105 +226123,1130.6150000130735,-0.05392608541052866 +226124,1130.6200000130736,-0.05392596941436421 +226125,1130.6250000130738,-0.05392585340612648 +226126,1130.6300000130739,-0.053925737385812196 +226127,1130.635000013074,-0.05392562135341808 +226128,1130.640000013074,-0.053925505308940844 +226129,1130.6450000130742,-0.0539253892523772 +226130,1130.6500000130743,-0.05392527318372387 +226131,1130.6550000130744,-0.05392515710297758 +226132,1130.6600000130745,-0.05392504101013503 +226133,1130.6650000130746,-0.053924924905192954 +226134,1130.6700000130747,-0.053924808788148045 +226135,1130.6750000130749,-0.053924692658997006 +226136,1130.680000013075,-0.05392457651773656 +226137,1130.685000013075,-0.0539244603643634 +226138,1130.6900000130752,-0.05392434419887425 +226139,1130.6950000130753,-0.053924228021265806 +226140,1130.7000000130754,-0.053924111831534775 +226141,1130.7050000130755,-0.05392399562967786 +226142,1130.7100000130756,-0.05392387941569176 +226143,1130.7150000130757,-0.05392376318957317 +226144,1130.7200000130758,-0.053923646951318786 +226145,1130.725000013076,-0.053923530700925315 +226146,1130.730000013076,-0.053923414438389446 +226147,1130.7350000130762,-0.05392329816370788 +226148,1130.7400000130763,-0.05392318187687731 +226149,1130.7450000130764,-0.05392306557789442 +226150,1130.7500000130765,-0.05392294926675591 +226151,1130.7550000130766,-0.05392283294345846 +226152,1130.7600000130767,-0.05392271660799875 +226153,1130.7650000130768,-0.05392260026037349 +226154,1130.770000013077,-0.053922483900579354 +226155,1130.775000013077,-0.05392236752861303 +226156,1130.7800000130771,-0.053922251144471176 +226157,1130.7850000130773,-0.053922134748150496 +226158,1130.7900000130774,-0.05392201833964768 +226159,1130.7950000130775,-0.05392190191895938 +226160,1130.8000000130776,-0.053921785486082285 +226161,1130.8050000130777,-0.05392166904101309 +226162,1130.8100000130778,-0.053921552583748436 +226163,1130.815000013078,-0.053921436114285015 +226164,1130.820000013078,-0.0539213196326195 +226165,1130.8250000130781,-0.05392120313874857 +226166,1130.8300000130782,-0.053921086632668876 +226167,1130.8350000130783,-0.05392097011437708 +226168,1130.8400000130785,-0.053920853583869874 +226169,1130.8450000130786,-0.05392073704114391 +226170,1130.8500000130787,-0.05392062048619584 +226171,1130.8550000130788,-0.05392050391902235 +226172,1130.860000013079,-0.053920387339620096 +226173,1130.865000013079,-0.05392027074798573 +226174,1130.870000013079,-0.05392015414411591 +226175,1130.8750000130792,-0.053920037528007315 +226176,1130.8800000130793,-0.053919920899656575 +226177,1130.8850000130794,-0.05391980425906036 +226178,1130.8900000130795,-0.05391968760621531 +226179,1130.8950000130797,-0.05391957094111808 +226180,1130.9000000130798,-0.053919454263765335 +226181,1130.9050000130799,-0.0539193375741537 +226182,1130.91000001308,-0.05391922087227985 +226183,1130.91500001308,-0.05391910415814041 +226184,1130.9200000130802,-0.05391898743173205 +226185,1130.9250000130803,-0.05391887069305139 +226186,1130.9300000130804,-0.05391875394209508 +226187,1130.9350000130805,-0.05391863717885977 +226188,1130.9400000130806,-0.053918520403342086 +226189,1130.9450000130807,-0.05391840361553868 +226190,1130.9500000130809,-0.05391828681544618 +226191,1130.955000013081,-0.05391817000306123 +226192,1130.960000013081,-0.05391805317838048 +226193,1130.9650000130812,-0.05391793634140052 +226194,1130.9700000130813,-0.05391781949211801 +226195,1130.9750000130814,-0.05391770263052959 +226196,1130.9800000130815,-0.053917585756631865 +226197,1130.9850000130816,-0.05391746887042149 +226198,1130.9900000130817,-0.053917351971895074 +226199,1130.9950000130818,-0.05391723506104924 +226200,1131.000000013082,-0.053917118137880624 +226201,1131.005000013082,-0.053917001202385836 +226202,1131.0100000130822,-0.05391688425456151 +226203,1131.0150000130823,-0.053916767294404255 +226204,1131.0200000130824,-0.053916650321910696 +226205,1131.0250000130825,-0.05391653333707745 +226206,1131.0300000130826,-0.05391641633990114 +226207,1131.0350000130827,-0.05391629933037835 +226208,1131.0400000130828,-0.05391618230850573 +226209,1131.045000013083,-0.053916065274279876 +226210,1131.050000013083,-0.0539159482276974 +226211,1131.0550000130831,-0.053915831168754924 +226212,1131.0600000130833,-0.053915714097449025 +226213,1131.0650000130834,-0.05391559701377634 +226214,1131.0700000130835,-0.05391547991773347 +226215,1131.0750000130836,-0.053915362809317004 +226216,1131.0800000130837,-0.05391524568852356 +226217,1131.0850000130838,-0.053915128555349724 +226218,1131.090000013084,-0.0539150114097921 +226219,1131.095000013084,-0.05391489425184729 +226220,1131.1000000130841,-0.053914777081511885 +226221,1131.1050000130842,-0.053914659898782503 +226222,1131.1100000130843,-0.05391454270365571 +226223,1131.1150000130845,-0.05391442549612812 +226224,1131.1200000130846,-0.05391430827619631 +226225,1131.1250000130847,-0.05391419104385688 +226226,1131.1300000130848,-0.053914073799106406 +226227,1131.135000013085,-0.05391395654194149 +226228,1131.140000013085,-0.05391383927235872 +226229,1131.145000013085,-0.05391372199035466 +226230,1131.1500000130852,-0.05391360469592591 +226231,1131.1550000130853,-0.05391348738906905 +226232,1131.1600000130854,-0.053913370069780656 +226233,1131.1650000130855,-0.05391325273805731 +226234,1131.1700000130857,-0.053913135393895605 +226235,1131.1750000130858,-0.05391301803729209 +226236,1131.1800000130859,-0.05391290066824337 +226237,1131.185000013086,-0.053912783286745994 +226238,1131.190000013086,-0.053912665892796544 +226239,1131.1950000130862,-0.053912548486391584 +226240,1131.2000000130863,-0.053912431067527695 +226241,1131.2050000130864,-0.053912313636201435 +226242,1131.2100000130865,-0.05391219619240938 +226243,1131.2150000130866,-0.0539120787361481 +226244,1131.2200000130867,-0.053911961267414155 +226245,1131.2250000130869,-0.0539118437862041 +226246,1131.230000013087,-0.053911726292514506 +226247,1131.235000013087,-0.053911608786341915 +226248,1131.2400000130872,-0.05391149126768291 +226249,1131.2450000130873,-0.053911373736534034 +226250,1131.2500000130874,-0.05391125619289184 +226251,1131.2550000130875,-0.05391113863675291 +226252,1131.2600000130876,-0.05391102106811377 +226253,1131.2650000130877,-0.05391090348697098 +226254,1131.2700000130878,-0.05391078589332109 +226255,1131.275000013088,-0.053910668287160644 +226256,1131.280000013088,-0.0539105506684862 +226257,1131.2850000130882,-0.053910433037294286 +226258,1131.2900000130883,-0.05391031539358147 +226259,1131.2950000130884,-0.05391019773734429 +226260,1131.3000000130885,-0.05391008006857928 +226261,1131.3050000130886,-0.053909962387282975 +226262,1131.3100000130887,-0.05390984469345193 +226263,1131.3150000130888,-0.05390972698708268 +226264,1131.320000013089,-0.05390960926817177 +226265,1131.325000013089,-0.053909491536715703 +226266,1131.3300000130891,-0.05390937379271105 +226267,1131.3350000130893,-0.05390925603615432 +226268,1131.3400000130894,-0.05390913826704206 +226269,1131.3450000130895,-0.05390902048537077 +226270,1131.3500000130896,-0.05390890269113702 +226271,1131.3550000130897,-0.053908784884337306 +226272,1131.3600000130898,-0.05390866706496817 +226273,1131.36500001309,-0.05390854923302614 +226274,1131.37000001309,-0.053908431388507726 +226275,1131.3750000130901,-0.05390831353140945 +226276,1131.3800000130902,-0.05390819566172783 +226277,1131.3850000130903,-0.053908077779459405 +226278,1131.3900000130905,-0.053907959884600676 +226279,1131.3950000130906,-0.05390784197714815 +226280,1131.4000000130907,-0.05390772405709835 +226281,1131.4050000130908,-0.053907606124447796 +226282,1131.410000013091,-0.053907488179193 +226283,1131.415000013091,-0.05390737022133046 +226284,1131.420000013091,-0.053907252250856685 +226285,1131.4250000130912,-0.053907134267768185 +226286,1131.4300000130913,-0.053907016272061486 +226287,1131.4350000130914,-0.05390689826373307 +226288,1131.4400000130915,-0.05390678024277945 +226289,1131.4450000130917,-0.05390666220919711 +226290,1131.4500000130918,-0.05390654416298257 +226291,1131.4550000130919,-0.05390642610413232 +226292,1131.460000013092,-0.05390630803264287 +226293,1131.465000013092,-0.0539061899485107 +226294,1131.4700000130922,-0.05390607185173232 +226295,1131.4750000130923,-0.053905953742304204 +226296,1131.4800000130924,-0.05390583562022286 +226297,1131.4850000130925,-0.05390571748548477 +226298,1131.4900000130926,-0.05390559933808643 +226299,1131.4950000130927,-0.05390548117802433 +226300,1131.5000000130929,-0.05390536300529494 +226301,1131.505000013093,-0.053905244819894775 +226302,1131.510000013093,-0.05390512662182029 +226303,1131.5150000130932,-0.05390500841106797 +226304,1131.5200000130933,-0.05390489018763431 +226305,1131.5250000130934,-0.05390477195151579 +226306,1131.5300000130935,-0.05390465370270886 +226307,1131.5350000130936,-0.053904535441210016 +226308,1131.5400000130937,-0.05390441716701574 +226309,1131.5450000130938,-0.0539042988801225 +226310,1131.550000013094,-0.05390418058052677 +226311,1131.555000013094,-0.05390406226822502 +226312,1131.5600000130942,-0.053903943943213704 +226313,1131.5650000130943,-0.05390382560548931 +226314,1131.5700000130944,-0.05390370725504829 +226315,1131.5750000130945,-0.05390358889188713 +226316,1131.5800000130946,-0.05390347051600226 +226317,1131.5850000130947,-0.05390335212739016 +226318,1131.5900000130948,-0.05390323372604731 +226319,1131.595000013095,-0.05390311531197014 +226320,1131.600000013095,-0.05390299688515512 +226321,1131.6050000130952,-0.05390287844559872 +226322,1131.6100000130953,-0.05390275999329737 +226323,1131.6150000130954,-0.05390264152824753 +226324,1131.6200000130955,-0.05390252305044567 +226325,1131.6250000130956,-0.05390240455988821 +226326,1131.6300000130957,-0.05390228605657163 +226327,1131.6350000130958,-0.05390216754049236 +226328,1131.640000013096,-0.05390204901164685 +226329,1131.645000013096,-0.05390193047003154 +226330,1131.6500000130961,-0.053901811915642896 +226331,1131.6550000130962,-0.05390169334847734 +226332,1131.6600000130964,-0.05390157476853132 +226333,1131.6650000130965,-0.053901456175801256 +226334,1131.6700000130966,-0.05390133757028362 +226335,1131.6750000130967,-0.05390121895197481 +226336,1131.6800000130968,-0.053901100320871295 +226337,1131.685000013097,-0.053900981676969495 +226338,1131.690000013097,-0.053900863020265845 +226339,1131.6950000130971,-0.05390074435075677 +226340,1131.7000000130972,-0.053900625668438694 +226341,1131.7050000130973,-0.05390050697330805 +226342,1131.7100000130974,-0.05390038826536129 +226343,1131.7150000130976,-0.053900269544594794 +226344,1131.7200000130977,-0.05390015081100502 +226345,1131.7250000130978,-0.05390003206458838 +226346,1131.7300000130979,-0.053899913305341274 +226347,1131.735000013098,-0.05389979453326015 +226348,1131.740000013098,-0.05389967574834141 +226349,1131.7450000130982,-0.05389955695058148 +226350,1131.7500000130983,-0.05389943813997678 +226351,1131.7550000130984,-0.053899319316523704 +226352,1131.7600000130985,-0.053899200480218665 +226353,1131.7650000130986,-0.053899081631058096 +226354,1131.7700000130988,-0.053898962769038376 +226355,1131.7750000130989,-0.05389884389415593 +226356,1131.780000013099,-0.05389872500640716 +226357,1131.785000013099,-0.05389860610578849 +226358,1131.7900000130992,-0.053898487192296285 +226359,1131.7950000130993,-0.05389836826592698 +226360,1131.8000000130994,-0.05389824932667696 +226361,1131.8050000130995,-0.053898130374542635 +226362,1131.8100000130996,-0.05389801140952038 +226363,1131.8150000130997,-0.05389789243160661 +226364,1131.8200000130998,-0.05389777344079771 +226365,1131.8250000131,-0.05389765443709008 +226366,1131.8300000131,-0.05389753542048011 +226367,1131.8350000131002,-0.05389741639096418 +226368,1131.8400000131003,-0.0538972973485387 +226369,1131.8450000131004,-0.05389717829320003 +226370,1131.8500000131005,-0.053897059224944574 +226371,1131.8550000131006,-0.053896940143768717 +226372,1131.8600000131007,-0.05389682104966883 +226373,1131.8650000131008,-0.053896701942641304 +226374,1131.870000013101,-0.05389658282268252 +226375,1131.875000013101,-0.05389646368978885 +226376,1131.8800000131012,-0.053896344543956656 +226377,1131.8850000131013,-0.05389622538518235 +226378,1131.8900000131014,-0.053896106213462275 +226379,1131.8950000131015,-0.053895987028792815 +226380,1131.9000000131016,-0.05389586783117035 +226381,1131.9050000131017,-0.05389574862059124 +226382,1131.9100000131018,-0.053895629397051836 +226383,1131.915000013102,-0.053895510160548527 +226384,1131.920000013102,-0.05389539091107769 +226385,1131.9250000131021,-0.05389527164863566 +226386,1131.9300000131022,-0.053895152373218805 +226387,1131.9350000131024,-0.0538950330848235 +226388,1131.9400000131025,-0.05389491378344609 +226389,1131.9450000131026,-0.05389479446908294 +226390,1131.9500000131027,-0.0538946751417304 +226391,1131.9550000131028,-0.05389455580138482 +226392,1131.960000013103,-0.053894436448042586 +226393,1131.965000013103,-0.05389431708170001 +226394,1131.9700000131031,-0.05389419770235345 +226395,1131.9750000131032,-0.053894078309999274 +226396,1131.9800000131033,-0.05389395890463382 +226397,1131.9850000131034,-0.053893839486253425 +226398,1131.9900000131036,-0.05389372005485444 +226399,1131.9950000131037,-0.05389360061043321 +226400,1132.0000000131038,-0.05389348115298608 +226401,1132.0050000131039,-0.05389336168250938 +226402,1132.010000013104,-0.05389324219899945 +226403,1132.015000013104,-0.05389312270245263 +226404,1132.0200000131042,-0.05389300319286525 +226405,1132.0250000131043,-0.05389288367023366 +226406,1132.0300000131044,-0.05389276413455417 +226407,1132.0350000131045,-0.053892644585823136 +226408,1132.0400000131046,-0.05389252502403687 +226409,1132.0450000131048,-0.0538924054491917 +226410,1132.0500000131049,-0.053892285861283966 +226411,1132.055000013105,-0.05389216626030998 +226412,1132.060000013105,-0.05389204664626607 +226413,1132.0650000131052,-0.05389192701914856 +226414,1132.0700000131053,-0.05389180737895376 +226415,1132.0750000131054,-0.053891687725678 +226416,1132.0800000131055,-0.05389156805931759 +226417,1132.0850000131056,-0.053891448379868846 +226418,1132.0900000131057,-0.0538913286873281 +226419,1132.0950000131058,-0.053891208981691634 +226420,1132.100000013106,-0.05389108926295579 +226421,1132.105000013106,-0.053890969531116856 +226422,1132.1100000131062,-0.05389084978617115 +226423,1132.1150000131063,-0.05389073002811497 +226424,1132.1200000131064,-0.053890610256944645 +226425,1132.1250000131065,-0.053890490472656455 +226426,1132.1300000131066,-0.05389037067524671 +226427,1132.1350000131067,-0.05389025086471172 +226428,1132.1400000131068,-0.053890131041047784 +226429,1132.145000013107,-0.05389001120425118 +226430,1132.150000013107,-0.05388989135431822 +226431,1132.1550000131072,-0.0538897714912452 +226432,1132.1600000131073,-0.053889651615028414 +226433,1132.1650000131074,-0.053889531725664144 +226434,1132.1700000131075,-0.05388941182314868 +226435,1132.1750000131076,-0.05388929190747833 +226436,1132.1800000131077,-0.05388917197864936 +226437,1132.1850000131078,-0.05388905203665806 +226438,1132.190000013108,-0.05388893208150073 +226439,1132.195000013108,-0.05388881211317363 +226440,1132.2000000131081,-0.053888692131673056 +226441,1132.2050000131082,-0.05388857213699528 +226442,1132.2100000131084,-0.053888452129136594 +226443,1132.2150000131085,-0.05388833210809327 +226444,1132.2200000131086,-0.05388821207386157 +226445,1132.2250000131087,-0.053888092026437774 +226446,1132.2300000131088,-0.053887971965818154 +226447,1132.235000013109,-0.053887851891998996 +226448,1132.240000013109,-0.05388773180497654 +226449,1132.2450000131091,-0.053887611704747075 +226450,1132.2500000131092,-0.05388749159130687 +226451,1132.2550000131093,-0.053887371464652174 +226452,1132.2600000131094,-0.053887251324779256 +226453,1132.2650000131096,-0.05388713117168439 +226454,1132.2700000131097,-0.05388701100536382 +226455,1132.2750000131098,-0.053886890825813806 +226456,1132.2800000131099,-0.05388677063303061 +226457,1132.28500001311,-0.053886650427010484 +226458,1132.29000001311,-0.05388653020774969 +226459,1132.2950000131102,-0.05388640997524448 +226460,1132.3000000131103,-0.05388628972949108 +226461,1132.3050000131104,-0.053886169470485766 +226462,1132.3100000131105,-0.05388604919822478 +226463,1132.3150000131106,-0.05388592891270437 +226464,1132.3200000131108,-0.053885808613920776 +226465,1132.3250000131109,-0.053885688301870245 +226466,1132.330000013111,-0.05388556797654901 +226467,1132.335000013111,-0.05388544763795332 +226468,1132.3400000131112,-0.05388532728607942 +226469,1132.3450000131113,-0.05388520692092352 +226470,1132.3500000131114,-0.053885086542481885 +226471,1132.3550000131115,-0.05388496615075073 +226472,1132.3600000131116,-0.053884845745726294 +226473,1132.3650000131117,-0.05388472532740481 +226474,1132.3700000131118,-0.053884604895782506 +226475,1132.375000013112,-0.05388448445085561 +226476,1132.380000013112,-0.05388436399262035 +226477,1132.3850000131122,-0.05388424352107295 +226478,1132.3900000131123,-0.05388412303620962 +226479,1132.3950000131124,-0.053884002538026596 +226480,1132.4000000131125,-0.0538838820265201 +226481,1132.4050000131126,-0.05388376150168634 +226482,1132.4100000131127,-0.053883640963521544 +226483,1132.4150000131128,-0.05388352041202191 +226484,1132.420000013113,-0.05388339984718367 +226485,1132.425000013113,-0.05388327926900303 +226486,1132.4300000131132,-0.05388315867747621 +226487,1132.4350000131133,-0.05388303807259939 +226488,1132.4400000131134,-0.05388291745436881 +226489,1132.4450000131135,-0.05388279682278067 +226490,1132.4500000131136,-0.05388267617783114 +226491,1132.4550000131137,-0.05388255551951647 +226492,1132.4600000131138,-0.05388243484783284 +226493,1132.465000013114,-0.05388231416277645 +226494,1132.470000013114,-0.0538821934643435 +226495,1132.4750000131141,-0.053882072752530194 +226496,1132.4800000131142,-0.0538819520273327 +226497,1132.4850000131144,-0.05388183128874724 +226498,1132.4900000131145,-0.05388171053676999 +226499,1132.4950000131146,-0.05388158977139716 +226500,1132.5000000131147,-0.05388146899262492 +226501,1132.5050000131148,-0.053881348200449465 +226502,1132.510000013115,-0.05388122739486698 +226503,1132.515000013115,-0.053881106575873645 +226504,1132.5200000131151,-0.05388098574346564 +226505,1132.5250000131152,-0.05388086489763917 +226506,1132.5300000131153,-0.05388074403839039 +226507,1132.5350000131155,-0.05388062316571548 +226508,1132.5400000131156,-0.05388050227961062 +226509,1132.5450000131157,-0.05388038138007199 +226510,1132.5500000131158,-0.053880260467095764 +226511,1132.555000013116,-0.0538801395406781 +226512,1132.560000013116,-0.05388001860081518 +226513,1132.565000013116,-0.05387989764750317 +226514,1132.5700000131162,-0.053879776680738234 +226515,1132.5750000131163,-0.05387965570051654 +226516,1132.5800000131164,-0.05387953470683425 +226517,1132.5850000131165,-0.05387941369968752 +226518,1132.5900000131167,-0.05387929267907252 +226519,1132.5950000131168,-0.05387917164498541 +226520,1132.6000000131169,-0.05387905059742234 +226521,1132.605000013117,-0.053878929536379475 +226522,1132.610000013117,-0.05387880846185296 +226523,1132.6150000131172,-0.05387868737383896 +226524,1132.6200000131173,-0.05387856627233362 +226525,1132.6250000131174,-0.053878445157333074 +226526,1132.6300000131175,-0.05387832402883349 +226527,1132.6350000131176,-0.053878202886831005 +226528,1132.6400000131177,-0.053878081731321775 +226529,1132.6450000131179,-0.05387796056230192 +226530,1132.650000013118,-0.05387783937976761 +226531,1132.655000013118,-0.053877718183714965 +226532,1132.6600000131182,-0.053877596974140136 +226533,1132.6650000131183,-0.053877475751039246 +226534,1132.6700000131184,-0.05387735451440844 +226535,1132.6750000131185,-0.053877233264243846 +226536,1132.6800000131186,-0.0538771120005416 +226537,1132.6850000131187,-0.05387699072329784 +226538,1132.6900000131188,-0.05387686943250867 +226539,1132.695000013119,-0.05387674812817023 +226540,1132.700000013119,-0.05387662681027867 +226541,1132.7050000131192,-0.053876505478830085 +226542,1132.7100000131193,-0.05387638413382061 +226543,1132.7150000131194,-0.05387626277524636 +226544,1132.7200000131195,-0.05387614140310345 +226545,1132.7250000131196,-0.053876020017388004 +226546,1132.7300000131197,-0.05387589861809613 +226547,1132.7350000131198,-0.053875777205223956 +226548,1132.74000001312,-0.053875655778767594 +226549,1132.74500001312,-0.05387553433872314 +226550,1132.7500000131201,-0.05387541288508672 +226551,1132.7550000131203,-0.053875291417854444 +226552,1132.7600000131204,-0.053875169937022405 +226553,1132.7650000131205,-0.05387504844258672 +226554,1132.7700000131206,-0.05387492693454347 +226555,1132.7750000131207,-0.05387480541288878 +226556,1132.7800000131208,-0.053874683877618734 +226557,1132.785000013121,-0.05387456232872944 +226558,1132.790000013121,-0.053874440766216995 +226559,1132.7950000131211,-0.053874319190077485 +226560,1132.8000000131212,-0.05387419760030702 +226561,1132.8050000131213,-0.05387407599690168 +226562,1132.8100000131215,-0.05387395437985755 +226563,1132.8150000131216,-0.05387383274917073 +226564,1132.8200000131217,-0.05387371110483731 +226565,1132.8250000131218,-0.05387358944685337 +226566,1132.830000013122,-0.05387346777521499 +226567,1132.835000013122,-0.053873346089918256 +226568,1132.840000013122,-0.05387322439095924 +226569,1132.8450000131222,-0.053873102678334034 +226570,1132.8500000131223,-0.053872980952038706 +226571,1132.8550000131224,-0.05387285921206933 +226572,1132.8600000131225,-0.053872737458422 +226573,1132.8650000131227,-0.053872615691092765 +226574,1132.8700000131228,-0.05387249391007771 +226575,1132.8750000131229,-0.0538723721153729 +226576,1132.880000013123,-0.053872250306974394 +226577,1132.885000013123,-0.05387212848487826 +226578,1132.8900000131232,-0.053872006649080574 +226579,1132.8950000131233,-0.0538718847995774 +226580,1132.9000000131234,-0.05387176293636479 +226581,1132.9050000131235,-0.0538716410594388 +226582,1132.9100000131236,-0.05387151916879549 +226583,1132.9150000131237,-0.05387139726443092 +226584,1132.9200000131239,-0.05387127534634115 +226585,1132.925000013124,-0.05387115341452223 +226586,1132.930000013124,-0.0538710314689702 +226587,1132.9350000131242,-0.05387090950968111 +226588,1132.9400000131243,-0.053870787536651026 +226589,1132.9450000131244,-0.05387066554987598 +226590,1132.9500000131245,-0.05387054354935202 +226591,1132.9550000131246,-0.053870421535075194 +226592,1132.9600000131247,-0.05387029950704154 +226593,1132.9650000131248,-0.05387017746524708 +226594,1132.970000013125,-0.05387005540968788 +226595,1132.975000013125,-0.053869933340359964 +226596,1132.9800000131252,-0.05386981125725937 +226597,1132.9850000131253,-0.053869689160382137 +226598,1132.9900000131254,-0.05386956704972428 +226599,1132.9950000131255,-0.05386944492528184 +226600,1133.0000000131256,-0.05386932278705085 +226601,1133.0050000131257,-0.05386920063502733 +226602,1133.0100000131258,-0.0538690784692073 +226603,1133.015000013126,-0.05386895628958678 +226604,1133.020000013126,-0.053868834096161805 +226605,1133.0250000131261,-0.05386871188892839 +226606,1133.0300000131263,-0.05386858966788256 +226607,1133.0350000131264,-0.05386846743302032 +226608,1133.0400000131265,-0.05386834518433768 +226609,1133.0450000131266,-0.05386822292183068 +226610,1133.0500000131267,-0.053868100645495305 +226611,1133.0550000131268,-0.053867978355327584 +226612,1133.060000013127,-0.053867856051323514 +226613,1133.065000013127,-0.0538677337334791 +226614,1133.0700000131271,-0.053867611401790354 +226615,1133.0750000131272,-0.05386748905625328 +226616,1133.0800000131273,-0.05386736669686387 +226617,1133.0850000131275,-0.05386724432361814 +226618,1133.0900000131276,-0.05386712193651208 +226619,1133.0950000131277,-0.05386699953554168 +226620,1133.1000000131278,-0.053866877120702955 +226621,1133.105000013128,-0.053866754691991876 +226622,1133.110000013128,-0.053866632249404446 +226623,1133.115000013128,-0.053866509792936654 +226624,1133.1200000131282,-0.05386638732258449 +226625,1133.1250000131283,-0.053866264838343926 +226626,1133.1300000131284,-0.05386614234021097 +226627,1133.1350000131285,-0.053866019828181594 +226628,1133.1400000131287,-0.05386589730225178 +226629,1133.1450000131288,-0.0538657747624175 +226630,1133.1500000131289,-0.053865652208674744 +226631,1133.155000013129,-0.0538655296410195 +226632,1133.160000013129,-0.05386540705944772 +226633,1133.1650000131292,-0.053865284463955394 +226634,1133.1700000131293,-0.05386516185453847 +226635,1133.1750000131294,-0.05386503923119295 +226636,1133.1800000131295,-0.053864916593914784 +226637,1133.1850000131296,-0.05386479394269993 +226638,1133.1900000131297,-0.05386467127754437 +226639,1133.1950000131299,-0.05386454859844408 +226640,1133.20000001313,-0.05386442590539498 +226641,1133.20500001313,-0.05386430319839306 +226642,1133.2100000131302,-0.05386418047743428 +226643,1133.2150000131303,-0.05386405774251458 +226644,1133.2200000131304,-0.053863934993629924 +226645,1133.2250000131305,-0.05386381223077628 +226646,1133.2300000131306,-0.05386368945394958 +226647,1133.2350000131307,-0.05386356666314576 +226648,1133.2400000131308,-0.053863443858360796 +226649,1133.245000013131,-0.05386332103959063 +226650,1133.250000013131,-0.0538631982068312 +226651,1133.2550000131312,-0.053863075360078456 +226652,1133.2600000131313,-0.053862952499328334 +226653,1133.2650000131314,-0.05386282962457676 +226654,1133.2700000131315,-0.0538627067358197 +226655,1133.2750000131316,-0.05386258383305307 +226656,1133.2800000131317,-0.05386246091627281 +226657,1133.2850000131318,-0.05386233798547485 +226658,1133.290000013132,-0.05386221504065513 +226659,1133.295000013132,-0.05386209208180958 +226660,1133.3000000131321,-0.05386196910893412 +226661,1133.3050000131323,-0.05386184612202467 +226662,1133.3100000131324,-0.053861723121077176 +226663,1133.3150000131325,-0.05386160010608754 +226664,1133.3200000131326,-0.05386147707705169 +226665,1133.3250000131327,-0.05386135403396555 +226666,1133.3300000131328,-0.05386123097682504 +226667,1133.335000013133,-0.05386110790562607 +226668,1133.340000013133,-0.05386098482036455 +226669,1133.3450000131331,-0.053860861721036386 +226670,1133.3500000131332,-0.0538607386076375 +226671,1133.3550000131333,-0.05386061548016382 +226672,1133.3600000131335,-0.05386049233861121 +226673,1133.3650000131336,-0.053860369182975605 +226674,1133.3700000131337,-0.053860246013252906 +226675,1133.3750000131338,-0.05386012282943902 +226676,1133.380000013134,-0.053859999631529834 +226677,1133.385000013134,-0.05385987641952126 +226678,1133.390000013134,-0.053859753193409174 +226679,1133.3950000131342,-0.0538596299531895 +226680,1133.4000000131343,-0.05385950669885811 +226681,1133.4050000131344,-0.053859383430410905 +226682,1133.4100000131345,-0.05385926014784377 +226683,1133.4150000131347,-0.0538591368511526 +226684,1133.4200000131348,-0.05385901354033328 +226685,1133.4250000131349,-0.05385889021538169 +226686,1133.430000013135,-0.053858766876293714 +226687,1133.435000013135,-0.05385864352306524 +226688,1133.4400000131352,-0.05385852015569215 +226689,1133.4450000131353,-0.0538583967741703 +226690,1133.4500000131354,-0.053858273378495594 +226691,1133.4550000131355,-0.05385814996866389 +226692,1133.4600000131356,-0.053858026544671075 +226693,1133.4650000131358,-0.053857903106513005 +226694,1133.4700000131359,-0.05385777965418555 +226695,1133.475000013136,-0.05385765618768459 +226696,1133.480000013136,-0.053857532707005974 +226697,1133.4850000131362,-0.05385740921214559 +226698,1133.4900000131363,-0.05385728570309928 +226699,1133.4950000131364,-0.05385716217986291 +226700,1133.5000000131365,-0.05385703864243236 +226701,1133.5050000131366,-0.05385691509080345 +226702,1133.5100000131367,-0.05385679152497207 +226703,1133.5150000131368,-0.053856667944934045 +226704,1133.520000013137,-0.05385654435068526 +226705,1133.525000013137,-0.05385642074222153 +226706,1133.5300000131372,-0.053856297119538724 +226707,1133.5350000131373,-0.053856173482632684 +226708,1133.5400000131374,-0.05385604983149925 +226709,1133.5450000131375,-0.053855926166134285 +226710,1133.5500000131376,-0.053855802486533606 +226711,1133.5550000131377,-0.05385567879269307 +226712,1133.5600000131378,-0.0538555550846085 +226713,1133.565000013138,-0.05385543136227574 +226714,1133.570000013138,-0.05385530762569063 +226715,1133.5750000131382,-0.05385518387484901 +226716,1133.5800000131383,-0.05385506010974669 +226717,1133.5850000131384,-0.0538549363303795 +226718,1133.5900000131385,-0.0538548125367433 +226719,1133.5950000131386,-0.05385468872883388 +226720,1133.6000000131387,-0.05385456490664707 +226721,1133.6050000131388,-0.05385444107017871 +226722,1133.610000013139,-0.053854317219424616 +226723,1133.615000013139,-0.053854193354380596 +226724,1133.6200000131391,-0.05385406947504248 +226725,1133.6250000131392,-0.05385394558140607 +226726,1133.6300000131394,-0.05385382167346718 +226727,1133.6350000131395,-0.05385369775122163 +226728,1133.6400000131396,-0.053853573814665226 +226729,1133.6450000131397,-0.053853449863793784 +226730,1133.6500000131398,-0.0538533258986031 +226731,1133.65500001314,-0.05385320191908899 +226732,1133.66000001314,-0.05385307792524723 +226733,1133.6650000131401,-0.05385295391707366 +226734,1133.6700000131402,-0.05385282989456405 +226735,1133.6750000131403,-0.05385270585771421 +226736,1133.6800000131404,-0.05385258180651994 +226737,1133.6850000131406,-0.05385245774097703 +226738,1133.6900000131407,-0.053852333661081275 +226739,1133.6950000131408,-0.05385220956682845 +226740,1133.7000000131409,-0.05385208545821436 +226741,1133.705000013141,-0.05385196133523479 +226742,1133.710000013141,-0.053851837197885534 +226743,1133.7150000131412,-0.05385171304616235 +226744,1133.7200000131413,-0.05385158888006103 +226745,1133.7250000131414,-0.05385146469957736 +226746,1133.7300000131415,-0.05385134050470713 +226747,1133.7350000131416,-0.05385121629544609 +226748,1133.7400000131418,-0.053851092071790035 +226749,1133.7450000131419,-0.05385096783373473 +226750,1133.750000013142,-0.05385084358127595 +226751,1133.755000013142,-0.05385071931440946 +226752,1133.7600000131422,-0.05385059503313103 +226753,1133.7650000131423,-0.05385047073743643 +226754,1133.7700000131424,-0.053850346427321415 +226755,1133.7750000131425,-0.053850222102781745 +226756,1133.7800000131426,-0.053850097763813186 +226757,1133.7850000131427,-0.05384997341041149 +226758,1133.7900000131428,-0.05384984904257243 +226759,1133.795000013143,-0.05384972466029175 +226760,1133.800000013143,-0.05384960026356521 +226761,1133.8050000131432,-0.05384947585238855 +226762,1133.8100000131433,-0.05384935142675752 +226763,1133.8150000131434,-0.053849226986667886 +226764,1133.8200000131435,-0.05384910253211538 +226765,1133.8250000131436,-0.05384897806309574 +226766,1133.8300000131437,-0.05384885357960472 +226767,1133.8350000131438,-0.053848729081638055 +226768,1133.840000013144,-0.053848604569191494 +226769,1133.845000013144,-0.05384848004226076 +226770,1133.8500000131442,-0.05384835550084159 +226771,1133.8550000131443,-0.05384823094492973 +226772,1133.8600000131444,-0.0538481063745209 +226773,1133.8650000131445,-0.05384798178961083 +226774,1133.8700000131446,-0.05384785719019524 +226775,1133.8750000131447,-0.05384773257626988 +226776,1133.8800000131448,-0.05384760794783046 +226777,1133.885000013145,-0.0538474833048727 +226778,1133.890000013145,-0.053847358647392325 +226779,1133.8950000131451,-0.053847233975385066 +226780,1133.9000000131452,-0.053847109288846624 +226781,1133.9050000131454,-0.05384698458777271 +226782,1133.9100000131455,-0.05384685987215904 +226783,1133.9150000131456,-0.05384673514200135 +226784,1133.9200000131457,-0.053846610397295325 +226785,1133.9250000131458,-0.05384648563803667 +226786,1133.930000013146,-0.053846360864221114 +226787,1133.935000013146,-0.05384623607584434 +226788,1133.9400000131461,-0.053846111272902064 +226789,1133.9450000131462,-0.053845986455389974 +226790,1133.9500000131463,-0.05384586162330379 +226791,1133.9550000131464,-0.05384573677663919 +226792,1133.9600000131466,-0.053845611915391875 +226793,1133.9650000131467,-0.05384548703955753 +226794,1133.9700000131468,-0.05384536214913186 +226795,1133.9750000131469,-0.05384523724411055 +226796,1133.980000013147,-0.0538451123244893 +226797,1133.985000013147,-0.05384498739026377 +226798,1133.9900000131472,-0.05384486244142967 +226799,1133.9950000131473,-0.053844737477982664 +226800,1134.0000000131474,-0.05384461249991844 +226801,1134.0050000131475,-0.05384448750723268 +226802,1134.0100000131476,-0.05384436249992106 +226803,1134.0150000131478,-0.05384423747797925 +226804,1134.0200000131479,-0.05384411244140293 +226805,1134.025000013148,-0.05384398739018777 +226806,1134.030000013148,-0.053843862324329424 +226807,1134.0350000131482,-0.05384373724382358 +226808,1134.0400000131483,-0.05384361214866591 +226809,1134.0450000131484,-0.05384348703885206 +226810,1134.0500000131485,-0.0538433619143777 +226811,1134.0550000131486,-0.05384323677523848 +226812,1134.0600000131487,-0.05384311162143007 +226813,1134.0650000131488,-0.053842986452948126 +226814,1134.070000013149,-0.0538428612697883 +226815,1134.075000013149,-0.05384273607194625 +226816,1134.0800000131492,-0.05384261085941762 +226817,1134.0850000131493,-0.05384248563219807 +226818,1134.0900000131494,-0.053842360390283235 +226819,1134.0950000131495,-0.053842235133668766 +226820,1134.1000000131496,-0.053842109862350315 +226821,1134.1050000131497,-0.05384198457632351 +226822,1134.1100000131498,-0.05384185927558401 +226823,1134.11500001315,-0.053841733960127446 +226824,1134.12000001315,-0.05384160862994943 +226825,1134.1250000131502,-0.05384148328504563 +226826,1134.1300000131503,-0.053841357925411656 +226827,1134.1350000131504,-0.05384123255104315 +226828,1134.1400000131505,-0.05384110716193574 +226829,1134.1450000131506,-0.05384098175808505 +226830,1134.1500000131507,-0.05384085633948672 +226831,1134.1550000131508,-0.05384073090613636 +226832,1134.160000013151,-0.053840605458029586 +226833,1134.165000013151,-0.053840479995162026 +226834,1134.1700000131511,-0.05384035451752929 +226835,1134.1750000131512,-0.053840229025127 +226836,1134.1800000131514,-0.05384010351795078 +226837,1134.1850000131515,-0.053839977995996234 +226838,1134.1900000131516,-0.053839852459258965 +226839,1134.1950000131517,-0.053839726907734586 +226840,1134.2000000131518,-0.053839601341418714 +226841,1134.205000013152,-0.05383947576030694 +226842,1134.210000013152,-0.053839350164394874 +226843,1134.2150000131521,-0.05383922455367811 +226844,1134.2200000131522,-0.05383909892815225 +226845,1134.2250000131523,-0.053838973287812904 +226846,1134.2300000131524,-0.05383884763265566 +226847,1134.2350000131526,-0.053838721962676105 +226848,1134.2400000131527,-0.05383859627786983 +226849,1134.2450000131528,-0.053838470578232434 +226850,1134.2500000131529,-0.05383834486375949 +226851,1134.255000013153,-0.053838219134446606 +226852,1134.260000013153,-0.053838093390289346 +226853,1134.2650000131532,-0.053837967631283304 +226854,1134.2700000131533,-0.05383784185742405 +226855,1134.2750000131534,-0.05383771606870718 +226856,1134.2800000131535,-0.05383759026512826 +226857,1134.2850000131536,-0.05383746444668286 +226858,1134.2900000131538,-0.05383733861336656 +226859,1134.2950000131539,-0.053837212765174926 +226860,1134.300000013154,-0.05383708690210354 +226861,1134.305000013154,-0.05383696102414796 +226862,1134.3100000131542,-0.05383683513130373 +226863,1134.3150000131543,-0.05383670922356645 +226864,1134.3200000131544,-0.05383658330093165 +226865,1134.3250000131545,-0.053836457363394916 +226866,1134.3300000131546,-0.05383633141095179 +226867,1134.3350000131547,-0.05383620544359784 +226868,1134.3400000131548,-0.053836079461328595 +226869,1134.345000013155,-0.053835953464139635 +226870,1134.350000013155,-0.053835827452026495 +226871,1134.3550000131552,-0.053835701424984735 +226872,1134.3600000131553,-0.053835575383009884 +226873,1134.3650000131554,-0.053835449326097504 +226874,1134.3700000131555,-0.053835323254243124 +226875,1134.3750000131556,-0.05383519716744229 +226876,1134.3800000131557,-0.05383507106569054 +226877,1134.3850000131558,-0.05383494494898342 +226878,1134.390000013156,-0.05383481881731645 +226879,1134.395000013156,-0.05383469267068516 +226880,1134.4000000131562,-0.053834566509085094 +226881,1134.4050000131563,-0.05383444033251178 +226882,1134.4100000131564,-0.053834314140960744 +226883,1134.4150000131565,-0.053834187934427506 +226884,1134.4200000131566,-0.0538340617129076 +226885,1134.4250000131567,-0.05383393547639653 +226886,1134.4300000131568,-0.05383380922488983 +226887,1134.435000013157,-0.053833682958383026 +226888,1134.440000013157,-0.05383355667687161 +226889,1134.4450000131571,-0.053833430380351106 +226890,1134.4500000131573,-0.05383330406881703 +226891,1134.4550000131574,-0.0538331777422649 +226892,1134.4600000131575,-0.053833051400690196 +226893,1134.4650000131576,-0.053832925044088445 +226894,1134.4700000131577,-0.05383279867245514 +226895,1134.4750000131578,-0.0538326722857858 +226896,1134.480000013158,-0.05383254588407591 +226897,1134.485000013158,-0.05383241946732097 +226898,1134.4900000131581,-0.0538322930355165 +226899,1134.4950000131582,-0.053832166588657956 +226900,1134.5000000131583,-0.05383204012674085 +226901,1134.5050000131585,-0.05383191364976068 +226902,1134.5100000131586,-0.053831787157712925 +226903,1134.5150000131587,-0.05383166065059308 +226904,1134.5200000131588,-0.05383153412839661 +226905,1134.525000013159,-0.05383140759111902 +226906,1134.530000013159,-0.05383128103875578 +226907,1134.535000013159,-0.05383115447130237 +226908,1134.5400000131592,-0.05383102788875427 +226909,1134.5450000131593,-0.053830901291106945 +226910,1134.5500000131594,-0.05383077467835588 +226911,1134.5550000131595,-0.05383064805049655 +226912,1134.5600000131597,-0.053830521407524416 +226913,1134.5650000131598,-0.05383039474943495 +226914,1134.5700000131599,-0.053830268076223604 +226915,1134.57500001316,-0.05383014138788586 +226916,1134.58000001316,-0.053830014684417164 +226917,1134.5850000131602,-0.053829887965812985 +226918,1134.5900000131603,-0.05382976123206878 +226919,1134.5950000131604,-0.053829634483180004 +226920,1134.6000000131605,-0.0538295077191421 +226921,1134.6050000131606,-0.05382938093995054 +226922,1134.6100000131607,-0.05382925414560076 +226923,1134.6150000131609,-0.05382912733608821 +226924,1134.620000013161,-0.05382900051140834 +226925,1134.625000013161,-0.05382887367155658 +226926,1134.6300000131612,-0.0538287468165284 +226927,1134.6350000131613,-0.05382861994631921 +226928,1134.6400000131614,-0.05382849306092446 +226929,1134.6450000131615,-0.053828366160339584 +226930,1134.6500000131616,-0.053828239244560025 +226931,1134.6550000131617,-0.0538281123135812 +226932,1134.6600000131618,-0.05382798536739856 +226933,1134.665000013162,-0.05382785840600751 +226934,1134.670000013162,-0.0538277314294035 +226935,1134.6750000131622,-0.053827604437581944 +226936,1134.6800000131623,-0.053827477430538256 +226937,1134.6850000131624,-0.05382735040826786 +226938,1134.6900000131625,-0.053827223370766175 +226939,1134.6950000131626,-0.05382709631802862 +226940,1134.7000000131627,-0.05382696925005063 +226941,1134.7050000131628,-0.05382684216682758 +226942,1134.710000013163,-0.05382671506835489 +226943,1134.715000013163,-0.05382658795462798 +226944,1134.7200000131631,-0.053826460825642256 +226945,1134.7250000131633,-0.053826333681393126 +226946,1134.7300000131634,-0.053826206521875974 +226947,1134.7350000131635,-0.053826079347086206 +226948,1134.7400000131636,-0.053825952157019234 +226949,1134.7450000131637,-0.053825824951670445 +226950,1134.7500000131638,-0.05382569773103524 +226951,1134.755000013164,-0.05382557049510899 +226952,1134.760000013164,-0.053825443243887126 +226953,1134.7650000131641,-0.05382531597736499 +226954,1134.7700000131642,-0.053825188695538005 +226955,1134.7750000131643,-0.05382506139840155 +226956,1134.7800000131645,-0.05382493408595099 +226957,1134.7850000131646,-0.05382480675818171 +226958,1134.7900000131647,-0.05382467941508911 +226959,1134.7950000131648,-0.053824552056668536 +226960,1134.800000013165,-0.053824424682915394 +226961,1134.805000013165,-0.05382429729382503 +226962,1134.810000013165,-0.05382416988939282 +226963,1134.8150000131652,-0.05382404246961414 +226964,1134.8200000131653,-0.053823915034484374 +226965,1134.8250000131654,-0.053823787583998854 +226966,1134.8300000131655,-0.05382366011815296 +226967,1134.8350000131657,-0.05382353263694205 +226968,1134.8400000131658,-0.05382340514036148 +226969,1134.8450000131659,-0.0538232776284066 +226970,1134.850000013166,-0.05382315010107278 +226971,1134.855000013166,-0.053823022558355374 +226972,1134.8600000131662,-0.05382289500024972 +226973,1134.8650000131663,-0.05382276742675117 +226974,1134.8700000131664,-0.05382263983785507 +226975,1134.8750000131665,-0.05382251223355677 +226976,1134.8800000131666,-0.053822384613851595 +226977,1134.8850000131667,-0.05382225697873491 +226978,1134.8900000131669,-0.05382212932820205 +226979,1134.895000013167,-0.05382200166224834 +226980,1134.900000013167,-0.053821873980869114 +226981,1134.9050000131672,-0.05382174628405972 +226982,1134.9100000131673,-0.053821618571815465 +226983,1134.9150000131674,-0.0538214908441317 +226984,1134.9200000131675,-0.053821363101003744 +226985,1134.9250000131676,-0.053821235342426915 +226986,1134.9300000131677,-0.053821107568396545 +226987,1134.9350000131678,-0.05382097977890794 +226988,1134.940000013168,-0.05382085197395644 +226989,1134.945000013168,-0.05382072415353734 +226990,1134.9500000131682,-0.05382059631764596 +226991,1134.9550000131683,-0.05382046846627763 +226992,1134.9600000131684,-0.05382034059942764 +226993,1134.9650000131685,-0.05382021271709131 +226994,1134.9700000131686,-0.05382008481926394 +226995,1134.9750000131687,-0.05381995690594083 +226996,1134.9800000131688,-0.05381982897711728 +226997,1134.985000013169,-0.0538197010327886 +226998,1134.990000013169,-0.05381957307295009 +226999,1134.9950000131691,-0.05381944509759704 +227000,1135.0000000131693,-0.05381931710672474 +227001,1135.0050000131694,-0.053819189100328485 +227002,1135.0100000131695,-0.05381906107840358 +227003,1135.0150000131696,-0.053818933040945295 +227004,1135.0200000131697,-0.05381880498794892 +227005,1135.0250000131698,-0.05381867691940974 +227006,1135.03000001317,-0.05381854883532304 +227007,1135.03500001317,-0.0538184207356841 +227008,1135.0400000131701,-0.05381829262048818 +227009,1135.0450000131702,-0.05381816448973058 +227010,1135.0500000131703,-0.053818036343406546 +227011,1135.0550000131705,-0.05381790818151137 +227012,1135.0600000131706,-0.05381778000404033 +227013,1135.0650000131707,-0.05381765181098868 +227014,1135.0700000131708,-0.05381752360235169 +227015,1135.075000013171,-0.053817395378124605 +227016,1135.080000013171,-0.0538172671383027 +227017,1135.085000013171,-0.05381713888288124 +227018,1135.0900000131712,-0.05381701061185547 +227019,1135.0950000131713,-0.053816882325220645 +227020,1135.1000000131714,-0.053816754022972035 +227021,1135.1050000131715,-0.053816625705104884 +227022,1135.1100000131717,-0.05381649737161443 +227023,1135.1150000131718,-0.05381636902249594 +227024,1135.1200000131719,-0.05381624065774463 +227025,1135.125000013172,-0.05381611227735577 +227026,1135.130000013172,-0.05381598388132459 +227027,1135.1350000131722,-0.05381585546964631 +227028,1135.1400000131723,-0.0538157270423162 +227029,1135.1450000131724,-0.05381559859932946 +227030,1135.1500000131725,-0.05381547014068136 +227031,1135.1550000131726,-0.0538153416663671 +227032,1135.1600000131727,-0.05381521317638193 +227033,1135.1650000131729,-0.05381508467072105 +227034,1135.170000013173,-0.0538149561493797 +227035,1135.175000013173,-0.0538148276123531 +227036,1135.1800000131732,-0.05381469905963647 +227037,1135.1850000131733,-0.053814570491225025 +227038,1135.1900000131734,-0.053814441907113986 +227039,1135.1950000131735,-0.05381431330729858 +227040,1135.2000000131736,-0.053814184691773986 +227041,1135.2050000131737,-0.05381405606053544 +227042,1135.2100000131738,-0.05381392741357813 +227043,1135.215000013174,-0.053813798750897264 +227044,1135.220000013174,-0.05381367007248805 +227045,1135.2250000131742,-0.05381354137834571 +227046,1135.2300000131743,-0.053813412668465406 +227047,1135.2350000131744,-0.05381328394284236 +227048,1135.2400000131745,-0.05381315520147176 +227049,1135.2450000131746,-0.053813026444348794 +227050,1135.2500000131747,-0.05381289767146865 +227051,1135.2550000131748,-0.05381276888282652 +227052,1135.260000013175,-0.0538126400784176 +227053,1135.265000013175,-0.053812511258237064 +227054,1135.2700000131751,-0.0538123824222801 +227055,1135.2750000131753,-0.05381225357054188 +227056,1135.2800000131754,-0.05381212470301759 +227057,1135.2850000131755,-0.053811995819702405 +227058,1135.2900000131756,-0.0538118669205915 +227059,1135.2950000131757,-0.053811738005680045 +227060,1135.3000000131758,-0.0538116090749632 +227061,1135.305000013176,-0.053811480128436145 +227062,1135.310000013176,-0.05381135116609403 +227063,1135.3150000131761,-0.05381122218793203 +227064,1135.3200000131762,-0.053811093193945315 +227065,1135.3250000131763,-0.05381096418412902 +227066,1135.3300000131765,-0.053810835158478315 +227067,1135.3350000131766,-0.053810706116988356 +227068,1135.3400000131767,-0.053810577059654294 +227069,1135.3450000131768,-0.05381044798647129 +227070,1135.350000013177,-0.05381031889743447 +227071,1135.355000013177,-0.053810189792538994 +227072,1135.3600000131771,-0.053810060671780006 +227073,1135.3650000131772,-0.05380993153515266 +227074,1135.3700000131773,-0.05380980238265207 +227075,1135.3750000131774,-0.05380967321427339 +227076,1135.3800000131776,-0.05380954403001175 +227077,1135.3850000131777,-0.053809414829862276 +227078,1135.3900000131778,-0.053809285613820125 +227079,1135.3950000131779,-0.0538091563818804 +227080,1135.400000013178,-0.053809027134038234 +227081,1135.405000013178,-0.05380889787028876 +227082,1135.4100000131782,-0.053808768590627096 +227083,1135.4150000131783,-0.053808639295048366 +227084,1135.4200000131784,-0.05380850998354768 +227085,1135.4250000131785,-0.05380838065612017 +227086,1135.4300000131786,-0.05380825131276093 +227087,1135.4350000131788,-0.05380812195346509 +227088,1135.4400000131789,-0.053807992578227756 +227089,1135.445000013179,-0.053807863187044024 +227090,1135.450000013179,-0.053807733779909 +227091,1135.4550000131792,-0.053807604356817806 +227092,1135.4600000131793,-0.05380747491776553 +227093,1135.4650000131794,-0.05380734546274728 +227094,1135.4700000131795,-0.05380721599175814 +227095,1135.4750000131796,-0.05380708650479322 +227096,1135.4800000131797,-0.05380695700184761 +227097,1135.4850000131798,-0.05380682748291639 +227098,1135.49000001318,-0.05380669794799465 +227099,1135.49500001318,-0.05380656839707749 +227100,1135.5000000131802,-0.05380643883015998 +227101,1135.5050000131803,-0.05380630924723719 +227102,1135.5100000131804,-0.05380617964830424 +227103,1135.5150000131805,-0.05380605003335617 +227104,1135.5200000131806,-0.05380592040238808 +227105,1135.5250000131807,-0.05380579075539504 +227106,1135.5300000131808,-0.05380566109237211 +227107,1135.535000013181,-0.05380553141331436 +227108,1135.540000013181,-0.05380540171821686 +227109,1135.5450000131812,-0.053805272007074675 +227110,1135.5500000131813,-0.053805142279882874 +227111,1135.5550000131814,-0.0538050125366365 +227112,1135.5600000131815,-0.05380488277733062 +227113,1135.5650000131816,-0.05380475300196031 +227114,1135.5700000131817,-0.05380462321052059 +227115,1135.5750000131818,-0.05380449340300653 +227116,1135.580000013182,-0.05380436357941319 +227117,1135.585000013182,-0.053804233739735606 +227118,1135.5900000131821,-0.05380410388396882 +227119,1135.5950000131822,-0.053803974012107875 +227120,1135.6000000131824,-0.053803844124147814 +227121,1135.6050000131825,-0.053803714220083676 +227122,1135.6100000131826,-0.0538035842999105 +227123,1135.6150000131827,-0.05380345436362332 +227124,1135.6200000131828,-0.053803324411217164 +227125,1135.625000013183,-0.05380319444268706 +227126,1135.630000013183,-0.05380306445802804 +227127,1135.6350000131831,-0.05380293445723513 +227128,1135.6400000131832,-0.05380280444030335 +227129,1135.6450000131833,-0.053802674407227725 +227130,1135.6500000131834,-0.053802544358003274 +227131,1135.6550000131836,-0.053802414292625014 +227132,1135.6600000131837,-0.053802284211087965 +227133,1135.6650000131838,-0.05380215411338712 +227134,1135.6700000131839,-0.0538020239995175 +227135,1135.675000013184,-0.05380189386947413 +227136,1135.680000013184,-0.053801763723251995 +227137,1135.6850000131842,-0.0538016335608461 +227138,1135.6900000131843,-0.05380150338225145 +227139,1135.6950000131844,-0.053801373187463045 +227140,1135.7000000131845,-0.05380124297647588 +227141,1135.7050000131846,-0.05380111274928495 +227142,1135.7100000131848,-0.05380098250588526 +227143,1135.7150000131849,-0.05380085224627178 +227144,1135.720000013185,-0.053800721970439495 +227145,1135.725000013185,-0.05380059167838343 +227146,1135.7300000131852,-0.053800461370098536 +227147,1135.7350000131853,-0.0538003310455798 +227148,1135.7400000131854,-0.053800200704822186 +227149,1135.7450000131855,-0.05380007034782071 +227150,1135.7500000131856,-0.05379993997457031 +227151,1135.7550000131857,-0.05379980958506597 +227152,1135.7600000131858,-0.05379967917930267 +227153,1135.765000013186,-0.05379954875727538 +227154,1135.770000013186,-0.05379941831897904 +227155,1135.7750000131862,-0.05379928786440864 +227156,1135.7800000131863,-0.05379915739355913 +227157,1135.7850000131864,-0.05379902690642547 +227158,1135.7900000131865,-0.053798896403002616 +227159,1135.7950000131866,-0.05379876588328554 +227160,1135.8000000131867,-0.05379863534726917 +227161,1135.8050000131868,-0.05379850479494847 +227162,1135.810000013187,-0.05379837422631839 +227163,1135.815000013187,-0.05379824364137387 +227164,1135.8200000131872,-0.053798113040109855 +227165,1135.8250000131873,-0.05379798242252129 +227166,1135.8300000131874,-0.0537978517886031 +227167,1135.8350000131875,-0.05379772113835024 +227168,1135.8400000131876,-0.053797590471757646 +227169,1135.8450000131877,-0.05379745978882024 +227170,1135.8500000131878,-0.05379732908953294 +227171,1135.855000013188,-0.053797198373890694 +227172,1135.860000013188,-0.05379706764188842 +227173,1135.8650000131881,-0.05379693689352105 +227174,1135.8700000131882,-0.0537968061287835 +227175,1135.8750000131884,-0.053796675347670686 +227176,1135.8800000131885,-0.05379654455017753 +227177,1135.8850000131886,-0.05379641373629895 +227178,1135.8900000131887,-0.05379628290602985 +227179,1135.8950000131888,-0.05379615205936513 +227180,1135.900000013189,-0.05379602119629972 +227181,1135.905000013189,-0.05379589031682851 +227182,1135.9100000131891,-0.05379575942094641 +227183,1135.9150000131892,-0.05379562850864832 +227184,1135.9200000131893,-0.05379549757992915 +227185,1135.9250000131894,-0.05379536663478378 +227186,1135.9300000131896,-0.053795235673207105 +227187,1135.9350000131897,-0.05379510469519402 +227188,1135.9400000131898,-0.05379497370073941 +227189,1135.9450000131899,-0.053794842689838175 +227190,1135.95000001319,-0.0537947116624852 +227191,1135.95500001319,-0.053794580618675356 +227192,1135.9600000131902,-0.053794449558403526 +227193,1135.9650000131903,-0.053794318481664605 +227194,1135.9700000131904,-0.05379418738845345 +227195,1135.9750000131905,-0.05379405627876494 +227196,1135.9800000131906,-0.05379392515259396 +227197,1135.9850000131908,-0.05379379400993536 +227198,1135.9900000131909,-0.053793662850784005 +227199,1135.995000013191,-0.05379353167513477 +227200,1136.000000013191,-0.05379340048298252 +227201,1136.0050000131912,-0.05379326927432212 +227202,1136.0100000131913,-0.05379313804914841 +227203,1136.0150000131914,-0.05379300680745625 +227204,1136.0200000131915,-0.053792875549240504 +227205,1136.0250000131916,-0.053792744274496034 +227206,1136.0300000131917,-0.05379261298321765 +227207,1136.0350000131918,-0.053792481675400225 +227208,1136.040000013192,-0.05379235035103861 +227209,1136.045000013192,-0.05379221901012762 +227210,1136.0500000131922,-0.053792087652662135 +227211,1136.0550000131923,-0.05379195627863695 +227212,1136.0600000131924,-0.053791824888046916 +227213,1136.0650000131925,-0.05379169348088688 +227214,1136.0700000131926,-0.05379156205715165 +227215,1136.0750000131927,-0.05379143061683607 +227216,1136.0800000131928,-0.053791299159934955 +227217,1136.085000013193,-0.05379116768644313 +227218,1136.090000013193,-0.05379103619635544 +227219,1136.0950000131932,-0.05379090468966668 +227220,1136.1000000131933,-0.053790773166371667 +227221,1136.1050000131934,-0.05379064162646522 +227222,1136.1100000131935,-0.05379051006994214 +227223,1136.1150000131936,-0.05379037849679726 +227224,1136.1200000131937,-0.053790246907025364 +227225,1136.1250000131938,-0.05379011530062127 +227226,1136.130000013194,-0.05378998367757977 +227227,1136.135000013194,-0.053789852037895686 +227228,1136.1400000131941,-0.0537897203815638 +227229,1136.1450000131942,-0.0537895887085789 +227230,1136.1500000131944,-0.05378945701893581 +227231,1136.1550000131945,-0.05378932531262929 +227232,1136.1600000131946,-0.05378919358965414 +227233,1136.1650000131947,-0.05378906185000514 +227234,1136.1700000131948,-0.05378893009367708 +227235,1136.175000013195,-0.05378879832066476 +227236,1136.180000013195,-0.05378866653096293 +227237,1136.1850000131951,-0.05378853472456638 +227238,1136.1900000131952,-0.053788402901469884 +227239,1136.1950000131953,-0.05378827106166821 +227240,1136.2000000131954,-0.05378813920515614 +227241,1136.2050000131956,-0.05378800733192844 +227242,1136.2100000131957,-0.05378787544197987 +227243,1136.2150000131958,-0.05378774353530518 +227244,1136.2200000131959,-0.05378761161189917 +227245,1136.225000013196,-0.05378747967175656 +227246,1136.230000013196,-0.053787347714872126 +227247,1136.2350000131962,-0.05378721574124062 +227248,1136.2400000131963,-0.05378708375085678 +227249,1136.2450000131964,-0.05378695174371537 +227250,1136.2500000131965,-0.05378681971981112 +227251,1136.2550000131966,-0.053786687679138794 +227252,1136.2600000131968,-0.05378655562169313 +227253,1136.2650000131969,-0.053786423547468855 +227254,1136.270000013197,-0.05378629145646073 +227255,1136.275000013197,-0.05378615934866347 +227256,1136.2800000131972,-0.05378602722407182 +227257,1136.2850000131973,-0.0537858950826805 +227258,1136.2900000131974,-0.05378576292448425 +227259,1136.2950000131975,-0.05378563074947778 +227260,1136.3000000131976,-0.05378549855765581 +227261,1136.3050000131977,-0.05378536634901309 +227262,1136.3100000131979,-0.053785234123544315 +227263,1136.315000013198,-0.053785101881244204 +227264,1136.320000013198,-0.053784969622107485 +227265,1136.3250000131982,-0.05378483734612886 +227266,1136.3300000131983,-0.05378470505330303 +227267,1136.3350000131984,-0.053784572743624706 +227268,1136.3400000131985,-0.0537844404170886 +227269,1136.3450000131986,-0.05378430807368942 +227270,1136.3500000131987,-0.053784175713421846 +227271,1136.3550000131988,-0.053784043336280576 +227272,1136.360000013199,-0.05378391094226032 +227273,1136.365000013199,-0.05378377853135576 +227274,1136.3700000131992,-0.05378364610356161 +227275,1136.3750000131993,-0.053783513658872524 +227276,1136.3800000131994,-0.05378338119728321 +227277,1136.3850000131995,-0.05378324871878833 +227278,1136.3900000131996,-0.05378311622338258 +227279,1136.3950000131997,-0.05378298371106064 +227280,1136.4000000131998,-0.05378285118181718 +227281,1136.4050000132,-0.05378271863564689 +227282,1136.4100000132,-0.05378258607254442 +227283,1136.4150000132001,-0.05378245349250445 +227284,1136.4200000132003,-0.05378232089552164 +227285,1136.4250000132004,-0.05378218828159065 +227286,1136.4300000132005,-0.053782055650706144 +227287,1136.4350000132006,-0.05378192300286278 +227288,1136.4400000132007,-0.05378179033805523 +227289,1136.4450000132008,-0.053781657656278146 +227290,1136.450000013201,-0.05378152495752616 +227291,1136.455000013201,-0.053781392241793936 +227292,1136.4600000132011,-0.053781259509076126 +227293,1136.4650000132012,-0.053781126759367366 +227294,1136.4700000132013,-0.053780993992662306 +227295,1136.4750000132015,-0.053780861208955574 +227296,1136.4800000132016,-0.053780728408241815 +227297,1136.4850000132017,-0.05378059559051566 +227298,1136.4900000132018,-0.05378046275577175 +227299,1136.495000013202,-0.05378032990400472 +227300,1136.500000013202,-0.05378019703520917 +227301,1136.505000013202,-0.053780064149379754 +227302,1136.5100000132022,-0.053779931246511085 +227303,1136.5150000132023,-0.05377979832659779 +227304,1136.5200000132024,-0.053779665389634475 +227305,1136.5250000132025,-0.053779532435615764 +227306,1136.5300000132027,-0.05377939946453627 +227307,1136.5350000132028,-0.05377926647639061 +227308,1136.5400000132029,-0.05377913347117337 +227309,1136.545000013203,-0.05377900044887918 +227310,1136.550000013203,-0.05377886740950264 +227311,1136.5550000132032,-0.05377873435303834 +227312,1136.5600000132033,-0.0537786012794809 +227313,1136.5650000132034,-0.05377846818882489 +227314,1136.5700000132035,-0.05377833508106492 +227315,1136.5750000132036,-0.053778201956195586 +227316,1136.5800000132037,-0.05377806881421147 +227317,1136.5850000132039,-0.05377793565510714 +227318,1136.590000013204,-0.05377780247887721 +227319,1136.595000013204,-0.05377766928551626 +227320,1136.6000000132042,-0.053777536075018846 +227321,1136.6050000132043,-0.053777402847379564 +227322,1136.6100000132044,-0.05377726960259298 +227323,1136.6150000132045,-0.05377713634065367 +227324,1136.6200000132046,-0.053777003061556215 +227325,1136.6250000132047,-0.05377686976529516 +227326,1136.6300000132048,-0.05377673645186509 +227327,1136.635000013205,-0.05377660312126055 +227328,1136.640000013205,-0.05377646977347611 +227329,1136.6450000132052,-0.05377633640850633 +227330,1136.6500000132053,-0.053776203026345754 +227331,1136.6550000132054,-0.05377606962698896 +227332,1136.6600000132055,-0.05377593621043046 +227333,1136.6650000132056,-0.053775802776664834 +227334,1136.6700000132057,-0.05377566932568661 +227335,1136.6750000132058,-0.05377553585749033 +227336,1136.680000013206,-0.05377540237207055 +227337,1136.685000013206,-0.05377526886942178 +227338,1136.6900000132061,-0.05377513534953859 +227339,1136.6950000132063,-0.053775001812415485 +227340,1136.7000000132064,-0.05377486825804701 +227341,1136.7050000132065,-0.05377473468642769 +227342,1136.7100000132066,-0.053774601097552055 +227343,1136.7150000132067,-0.05377446749141461 +227344,1136.7200000132068,-0.053774333868009894 +227345,1136.725000013207,-0.05377420022733242 +227346,1136.730000013207,-0.0537740665693767 +227347,1136.7350000132071,-0.05377393289413725 +227348,1136.7400000132072,-0.05377379920160858 +227349,1136.7450000132073,-0.05377366549178521 +227350,1136.7500000132075,-0.053773531764661625 +227351,1136.7550000132076,-0.05377339802023234 +227352,1136.7600000132077,-0.05377326425849185 +227353,1136.7650000132078,-0.053773130479434654 +227354,1136.770000013208,-0.053772996683055255 +227355,1136.775000013208,-0.05377286286934813 +227356,1136.780000013208,-0.053772729038307786 +227357,1136.7850000132082,-0.05377259518992871 +227358,1136.7900000132083,-0.05377246132420538 +227359,1136.7950000132084,-0.05377232744113229 +227360,1136.8000000132085,-0.05377219354070391 +227361,1136.8050000132087,-0.053772059622914724 +227362,1136.8100000132088,-0.05377192568775921 +227363,1136.8150000132089,-0.05377179173523183 +227364,1136.820000013209,-0.053771657765327066 +227365,1136.825000013209,-0.053771523778039385 +227366,1136.8300000132092,-0.05377138977336324 +227367,1136.8350000132093,-0.053771255751293115 +227368,1136.8400000132094,-0.05377112171182345 +227369,1136.8450000132095,-0.053770987654948726 +227370,1136.8500000132096,-0.053770853580663386 +227371,1136.8550000132097,-0.053770719488961886 +227372,1136.8600000132099,-0.05377058537983868 +227373,1136.86500001321,-0.0537704512532882 +227374,1136.87000001321,-0.05377031710930491 +227375,1136.8750000132102,-0.053770182947883244 +227376,1136.8800000132103,-0.053770048769017635 +227377,1136.8850000132104,-0.05376991457270253 +227378,1136.8900000132105,-0.05376978035893238 +227379,1136.8950000132106,-0.05376964612770159 +227380,1136.9000000132107,-0.05376951187900461 +227381,1136.9050000132108,-0.053769377612835866 +227382,1136.910000013211,-0.05376924332918978 +227383,1136.915000013211,-0.05376910902806077 +227384,1136.9200000132112,-0.05376897470944326 +227385,1136.9250000132113,-0.05376884037333167 +227386,1136.9300000132114,-0.05376870601972041 +227387,1136.9350000132115,-0.05376857164860391 +227388,1136.9400000132116,-0.05376843725997656 +227389,1136.9450000132117,-0.05376830285383278 +227390,1136.9500000132118,-0.05376816843016697 +227391,1136.955000013212,-0.05376803398897353 +227392,1136.960000013212,-0.05376789953024687 +227393,1136.9650000132121,-0.05376776505398136 +227394,1136.9700000132123,-0.05376763056017144 +227395,1136.9750000132124,-0.05376749604881147 +227396,1136.9800000132125,-0.05376736151989584 +227397,1136.9850000132126,-0.05376722697341896 +227398,1136.9900000132127,-0.053767092409375196 +227399,1136.9950000132128,-0.05376695782775894 +227400,1137.000000013213,-0.053766823228564575 +227401,1137.005000013213,-0.05376668861178646 +227402,1137.0100000132131,-0.05376655397741898 +227403,1137.0150000132132,-0.05376641932545651 +227404,1137.0200000132133,-0.053766284655893413 +227405,1137.0250000132135,-0.053766149968724065 +227406,1137.0300000132136,-0.05376601526394283 +227407,1137.0350000132137,-0.05376588054154406 +227408,1137.0400000132138,-0.05376574580152213 +227409,1137.045000013214,-0.05376561104387138 +227410,1137.050000013214,-0.053765476268586174 +227411,1137.055000013214,-0.05376534147566086 +227412,1137.0600000132142,-0.05376520666508979 +227413,1137.0650000132143,-0.05376507183686731 +227414,1137.0700000132144,-0.05376493699098775 +227415,1137.0750000132145,-0.053764802127445464 +227416,1137.0800000132147,-0.05376466724623479 +227417,1137.0850000132148,-0.05376453234735008 +227418,1137.0900000132149,-0.05376439743078565 +227419,1137.095000013215,-0.05376426249653582 +227420,1137.100000013215,-0.05376412754459494 +227421,1137.1050000132152,-0.05376399257495733 +227422,1137.1100000132153,-0.05376385758761731 +227423,1137.1150000132154,-0.0537637225825692 +227424,1137.1200000132155,-0.05376358755980732 +227425,1137.1250000132156,-0.05376345251932598 +227426,1137.1300000132157,-0.0537633174611195 +227427,1137.1350000132159,-0.05376318238518219 +227428,1137.140000013216,-0.05376304729150836 +227429,1137.145000013216,-0.05376291218009231 +227430,1137.1500000132162,-0.05376277705092835 +227431,1137.1550000132163,-0.05376264190401076 +227432,1137.1600000132164,-0.05376250673933386 +227433,1137.1650000132165,-0.05376237155689194 +227434,1137.1700000132166,-0.05376223635667928 +227435,1137.1750000132167,-0.053762101138690184 +227436,1137.1800000132168,-0.05376196590291893 +227437,1137.185000013217,-0.05376183064935981 +227438,1137.190000013217,-0.05376169537800709 +227439,1137.1950000132172,-0.05376156008885506 +227440,1137.2000000132173,-0.053761424781898014 +227441,1137.2050000132174,-0.053761289457130206 +227442,1137.2100000132175,-0.053761154114545906 +227443,1137.2150000132176,-0.05376101875413937 +227444,1137.2200000132177,-0.0537608833759049 +227445,1137.2250000132178,-0.05376074797983672 +227446,1137.230000013218,-0.05376061256592912 +227447,1137.235000013218,-0.05376047713417636 +227448,1137.2400000132182,-0.053760341684572666 +227449,1137.2450000132183,-0.05376020621711231 +227450,1137.2500000132184,-0.05376007073178955 +227451,1137.2550000132185,-0.05375993522859862 +227452,1137.2600000132186,-0.05375979970753377 +227453,1137.2650000132187,-0.05375966416858925 +227454,1137.2700000132188,-0.0537595286117593 +227455,1137.275000013219,-0.05375939303703814 +227456,1137.280000013219,-0.053759257444420006 +227457,1137.2850000132191,-0.053759121833899144 +227458,1137.2900000132192,-0.05375898620546978 +227459,1137.2950000132194,-0.05375885055912613 +227460,1137.3000000132195,-0.05375871489486244 +227461,1137.3050000132196,-0.0537585792126729 +227462,1137.3100000132197,-0.053758443512551754 +227463,1137.3150000132198,-0.053758307794493206 +227464,1137.32000001322,-0.05375817205849147 +227465,1137.32500001322,-0.05375803630454077 +227466,1137.3300000132201,-0.053757900532635294 +227467,1137.3350000132202,-0.053757764742769255 +227468,1137.3400000132203,-0.05375762893493686 +227469,1137.3450000132204,-0.05375749310913231 +227470,1137.3500000132206,-0.053757357265349796 +227471,1137.3550000132207,-0.053757221403583515 +227472,1137.3600000132208,-0.05375708552382766 +227473,1137.3650000132209,-0.05375694962607642 +227474,1137.370000013221,-0.05375681371032398 +227475,1137.375000013221,-0.05375667777656453 +227476,1137.3800000132212,-0.05375654182479225 +227477,1137.3850000132213,-0.05375640585500132 +227478,1137.3900000132214,-0.05375626986718591 +227479,1137.3950000132215,-0.05375613386134019 +227480,1137.4000000132216,-0.05375599783745834 +227481,1137.4050000132218,-0.05375586179553453 +227482,1137.4100000132219,-0.05375572573556292 +227483,1137.415000013222,-0.05375558965753767 +227484,1137.420000013222,-0.05375545356145294 +227485,1137.4250000132222,-0.053755317447302886 +227486,1137.4300000132223,-0.053755181315081675 +227487,1137.4350000132224,-0.05375504516478344 +227488,1137.4400000132225,-0.053754908996402354 +227489,1137.4450000132226,-0.05375477280993255 +227490,1137.4500000132227,-0.05375463660536817 +227491,1137.4550000132228,-0.05375450038270336 +227492,1137.460000013223,-0.05375436414193224 +227493,1137.465000013223,-0.05375422788304898 +227494,1137.4700000132232,-0.053754091606047695 +227495,1137.4750000132233,-0.05375395531092252 +227496,1137.4800000132234,-0.05375381899766758 +227497,1137.4850000132235,-0.05375368266627699 +227498,1137.4900000132236,-0.05375354631674487 +227499,1137.4950000132237,-0.05375340994906537 +227500,1137.5000000132238,-0.05375327356323258 +227501,1137.505000013224,-0.05375313715924063 +227502,1137.510000013224,-0.05375300073708361 +227503,1137.5150000132242,-0.05375286429675566 +227504,1137.5200000132243,-0.053752727838250865 +227505,1137.5250000132244,-0.05375259136156334 +227506,1137.5300000132245,-0.05375245486668716 +227507,1137.5350000132246,-0.05375231835361645 +227508,1137.5400000132247,-0.05375218182234529 +227509,1137.5450000132248,-0.05375204527286779 +227510,1137.550000013225,-0.05375190870517803 +227511,1137.555000013225,-0.05375177211927009 +227512,1137.5600000132251,-0.05375163551513805 +227513,1137.5650000132252,-0.053751498892776015 +227514,1137.5700000132254,-0.05375136225217804 +227515,1137.5750000132255,-0.05375122559333822 +227516,1137.5800000132256,-0.053751088916250626 +227517,1137.5850000132257,-0.053750952220909316 +227518,1137.5900000132258,-0.05375081550730836 +227519,1137.595000013226,-0.053750678775441825 +227520,1137.600000013226,-0.053750542025303785 +227521,1137.6050000132261,-0.0537504052568883 +227522,1137.6100000132262,-0.05375026847018941 +227523,1137.6150000132263,-0.053750131665201185 +227524,1137.6200000132264,-0.053749994841917656 +227525,1137.6250000132266,-0.05374985800033289 +227526,1137.6300000132267,-0.053749721140440944 +227527,1137.6350000132268,-0.053749584262235826 +227528,1137.6400000132269,-0.053749447365711606 +227529,1137.645000013227,-0.053749310450862314 +227530,1137.650000013227,-0.053749173517681985 +227531,1137.6550000132272,-0.053749036566164636 +227532,1137.6600000132273,-0.053748899596304314 +227533,1137.6650000132274,-0.05374876260809505 +227534,1137.6700000132275,-0.05374862560153086 +227535,1137.6750000132276,-0.05374848857660577 +227536,1137.6800000132278,-0.05374835153331378 +227537,1137.6850000132279,-0.053748214471648924 +227538,1137.690000013228,-0.05374807739160521 +227539,1137.695000013228,-0.05374794029317666 +227540,1137.7000000132282,-0.053747803176357266 +227541,1137.7050000132283,-0.053747666041141035 +227542,1137.7100000132284,-0.05374752888752197 +227543,1137.7150000132285,-0.05374739171549408 +227544,1137.7200000132286,-0.053747254525051344 +227545,1137.7250000132287,-0.05374711731618777 +227546,1137.7300000132288,-0.05374698008889735 +227547,1137.735000013229,-0.053746842843174054 +227548,1137.740000013229,-0.05374670557901187 +227549,1137.7450000132292,-0.053746568296404805 +227550,1137.7500000132293,-0.05374643099534682 +227551,1137.7550000132294,-0.05374629367583188 +227552,1137.7600000132295,-0.05374615633785399 +227553,1137.7650000132296,-0.05374601898140711 +227554,1137.7700000132297,-0.053745881606485184 +227555,1137.7750000132298,-0.0537457442130822 +227556,1137.78000001323,-0.05374560680119213 +227557,1137.78500001323,-0.05374546937080892 +227558,1137.7900000132302,-0.053745331921926535 +227559,1137.7950000132303,-0.053745194454538917 +227560,1137.8000000132304,-0.05374505696864003 +227561,1137.8050000132305,-0.053744919464223814 +227562,1137.8100000132306,-0.053744781941284216 +227563,1137.8150000132307,-0.05374464439981519 +227564,1137.8200000132308,-0.05374450683981067 +227565,1137.825000013231,-0.05374436926126458 +227566,1137.830000013231,-0.05374423166417088 +227567,1137.8350000132311,-0.0537440940485235 +227568,1137.8400000132312,-0.05374395641431635 +227569,1137.8450000132314,-0.053743818761543355 +227570,1137.8500000132315,-0.053743681090198454 +227571,1137.8550000132316,-0.053743543400275554 +227572,1137.8600000132317,-0.0537434056917686 +227573,1137.8650000132318,-0.05374326796467149 +227574,1137.870000013232,-0.05374313021897813 +227575,1137.875000013232,-0.05374299245468243 +227576,1137.8800000132321,-0.053742854671778306 +227577,1137.8850000132322,-0.05374271687025966 +227578,1137.8900000132323,-0.053742579050120386 +227579,1137.8950000132324,-0.05374244121135439 +227580,1137.9000000132326,-0.053742303353955564 +227581,1137.9050000132327,-0.05374216547791781 +227582,1137.9100000132328,-0.053742027583235 +227583,1137.9150000132329,-0.05374188966990103 +227584,1137.920000013233,-0.05374175173790978 +227585,1137.925000013233,-0.05374161378725515 +227586,1137.9300000132332,-0.05374147581793099 +227587,1137.9350000132333,-0.0537413378299312 +227588,1137.9400000132334,-0.05374119982324963 +227589,1137.9450000132335,-0.053741061797880164 +227590,1137.9500000132336,-0.05374092375381667 +227591,1137.9550000132338,-0.05374078569105302 +227592,1137.9600000132339,-0.05374064760958305 +227593,1137.965000013234,-0.05374050950940064 +227594,1137.970000013234,-0.053740371390499635 +227595,1137.9750000132342,-0.053740233252873894 +227596,1137.9800000132343,-0.053740095096517254 +227597,1137.9850000132344,-0.05373995692142357 +227598,1137.9900000132345,-0.053739818727586694 +227599,1137.9950000132346,-0.05373968051500046 +227600,1138.0000000132347,-0.05373954228365871 +227601,1138.0050000132348,-0.053739404033555274 +227602,1138.010000013235,-0.05373926576468399 +227603,1138.015000013235,-0.05373912747703868 +227604,1138.0200000132352,-0.053738989170613184 +227605,1138.0250000132353,-0.0537388508454013 +227606,1138.0300000132354,-0.053738712501396876 +227607,1138.0350000132355,-0.05373857413859372 +227608,1138.0400000132356,-0.053738435756985656 +227609,1138.0450000132357,-0.053738297356566475 +227610,1138.0500000132358,-0.05373815893733001 +227611,1138.055000013236,-0.05373802049927007 +227612,1138.060000013236,-0.05373788204238042 +227613,1138.0650000132362,-0.0537377435666549 +227614,1138.0700000132363,-0.053737605072087295 +227615,1138.0750000132364,-0.0537374665586714 +227616,1138.0800000132365,-0.053737328026401014 +227617,1138.0850000132366,-0.05373718947526992 +227618,1138.0900000132367,-0.0537370509052719 +227619,1138.0950000132368,-0.05373691231640075 +227620,1138.100000013237,-0.05373677370865024 +227621,1138.105000013237,-0.05373663508201415 +227622,1138.1100000132371,-0.05373649643648625 +227623,1138.1150000132372,-0.05373635777206032 +227624,1138.1200000132374,-0.05373621908873012 +227625,1138.1250000132375,-0.053736080386489436 +227626,1138.1300000132376,-0.05373594166533201 +227627,1138.1350000132377,-0.05373580292525162 +227628,1138.1400000132378,-0.053735664166242 +227629,1138.145000013238,-0.053735525388296936 +227630,1138.150000013238,-0.053735386591410146 +227631,1138.1550000132381,-0.0537352477755754 +227632,1138.1600000132382,-0.053735108940786445 +227633,1138.1650000132383,-0.053734970087037016 +227634,1138.1700000132385,-0.05373483121432085 +227635,1138.1750000132386,-0.053734692322631686 +227636,1138.1800000132387,-0.05373455341196326 +227637,1138.1850000132388,-0.053734414482309305 +227638,1138.190000013239,-0.05373427553366355 +227639,1138.195000013239,-0.05373413656601971 +227640,1138.200000013239,-0.05373399757937152 +227641,1138.2050000132392,-0.053733858573712684 +227642,1138.2100000132393,-0.05373371954903693 +227643,1138.2150000132394,-0.05373358050533797 +227644,1138.2200000132395,-0.05373344144260952 +227645,1138.2250000132397,-0.053733302360845274 +227646,1138.2300000132398,-0.05373316326003895 +227647,1138.2350000132399,-0.05373302414018424 +227648,1138.24000001324,-0.053732885001274856 +227649,1138.24500001324,-0.05373274584330447 +227650,1138.2500000132402,-0.053732606666266794 +227651,1138.2550000132403,-0.05373246747015551 +227652,1138.2600000132404,-0.053732328254964316 +227653,1138.2650000132405,-0.053732189020686875 +227654,1138.2700000132406,-0.05373204976731688 +227655,1138.2750000132407,-0.053731910494848024 +227656,1138.2800000132409,-0.053731771203273965 +227657,1138.285000013241,-0.053731631892588366 +227658,1138.290000013241,-0.05373149256278491 +227659,1138.2950000132412,-0.05373135321385726 +227660,1138.3000000132413,-0.05373121384579909 +227661,1138.3050000132414,-0.05373107445860404 +227662,1138.3100000132415,-0.05373093505226578 +227663,1138.3150000132416,-0.05373079562677796 +227664,1138.3200000132417,-0.05373065618213424 +227665,1138.3250000132418,-0.053730516718328264 +227666,1138.330000013242,-0.053730377235353656 +227667,1138.335000013242,-0.053730237733204095 +227668,1138.3400000132422,-0.05373009821187318 +227669,1138.3450000132423,-0.0537299586713546 +227670,1138.3500000132424,-0.05372981911164193 +227671,1138.3550000132425,-0.053729679532728836 +227672,1138.3600000132426,-0.05372953993460894 +227673,1138.3650000132427,-0.05372940031727586 +227674,1138.3700000132428,-0.05372926068072323 +227675,1138.375000013243,-0.05372912102494466 +227676,1138.380000013243,-0.053728981349933765 +227677,1138.3850000132431,-0.05372884165568415 +227678,1138.3900000132433,-0.053728701942189434 +227679,1138.3950000132434,-0.05372856220944321 +227680,1138.4000000132435,-0.05372842245743911 +227681,1138.4050000132436,-0.05372828268617071 +227682,1138.4100000132437,-0.053728142895631624 +227683,1138.4150000132438,-0.05372800308581542 +227684,1138.420000013244,-0.05372786325671571 +227685,1138.425000013244,-0.05372772340832607 +227686,1138.4300000132441,-0.0537275835406401 +227687,1138.4350000132442,-0.053727443653651376 +227688,1138.4400000132443,-0.053727303747353475 +227689,1138.4450000132445,-0.053727163821739976 +227690,1138.4500000132446,-0.053727023876804454 +227691,1138.4550000132447,-0.05372688391254048 +227692,1138.4600000132448,-0.053726743928941605 +227693,1138.465000013245,-0.05372660392600142 +227694,1138.470000013245,-0.05372646390371347 +227695,1138.475000013245,-0.05372632386207131 +227696,1138.4800000132452,-0.0537261838010685 +227697,1138.4850000132453,-0.0537260437206986 +227698,1138.4900000132454,-0.05372590362095514 +227699,1138.4950000132455,-0.05372576350183168 +227700,1138.5000000132457,-0.05372562336332176 +227701,1138.5050000132458,-0.05372548320541891 +227702,1138.5100000132459,-0.053725343028116684 +227703,1138.515000013246,-0.05372520283140861 +227704,1138.520000013246,-0.05372506261528821 +227705,1138.5250000132462,-0.05372492237974902 +227706,1138.5300000132463,-0.053724782124784556 +227707,1138.5350000132464,-0.053724641850388354 +227708,1138.5400000132465,-0.05372450155655392 +227709,1138.5450000132466,-0.053724361243274774 +227710,1138.5500000132467,-0.053724220910544435 +227711,1138.5550000132469,-0.05372408055835639 +227712,1138.560000013247,-0.05372394018670417 +227713,1138.565000013247,-0.05372379979558127 +227714,1138.5700000132472,-0.05372365938498119 +227715,1138.5750000132473,-0.05372351895489743 +227716,1138.5800000132474,-0.053723378505323466 +227717,1138.5850000132475,-0.05372323803625281 +227718,1138.5900000132476,-0.053723097547678934 +227719,1138.5950000132477,-0.05372295703959534 +227720,1138.6000000132478,-0.05372281651199551 +227721,1138.605000013248,-0.053722675964872894 +227722,1138.610000013248,-0.053722535398220986 +227723,1138.6150000132482,-0.05372239481203326 +227724,1138.6200000132483,-0.053722254206303194 +227725,1138.6250000132484,-0.05372211358102423 +227726,1138.6300000132485,-0.05372197293618986 +227727,1138.6350000132486,-0.053721832271793515 +227728,1138.6400000132487,-0.05372169158782868 +227729,1138.6450000132488,-0.053721550884288774 +227730,1138.650000013249,-0.053721410161167285 +227731,1138.655000013249,-0.05372126941845764 +227732,1138.6600000132491,-0.053721128656153284 +227733,1138.6650000132493,-0.05372098787424767 +227734,1138.6700000132494,-0.05372084707273423 +227735,1138.6750000132495,-0.05372070625160639 +227736,1138.6800000132496,-0.05372056541085759 +227737,1138.6850000132497,-0.053720424550481254 +227738,1138.6900000132498,-0.05372028367047082 +227739,1138.69500001325,-0.053720142770819705 +227740,1138.70000001325,-0.053720001851521315 +227741,1138.7050000132501,-0.05371986091256909 +227742,1138.7100000132502,-0.05371971995395643 +227743,1138.7150000132503,-0.05371957897567674 +227744,1138.7200000132505,-0.053719437977723446 +227745,1138.7250000132506,-0.05371929696008994 +227746,1138.7300000132507,-0.053719155922769615 +227747,1138.7350000132508,-0.05371901486575588 +227748,1138.740000013251,-0.053718873789042124 +227749,1138.745000013251,-0.05371873269262174 +227750,1138.750000013251,-0.053718591576488124 +227751,1138.7550000132512,-0.05371845044063464 +227752,1138.7600000132513,-0.05371830928505469 +227753,1138.7650000132514,-0.05371816810974164 +227754,1138.7700000132515,-0.053718026914688875 +227755,1138.7750000132517,-0.05371788569988978 +227756,1138.7800000132518,-0.053717744465337704 +227757,1138.7850000132519,-0.05371760321102602 +227758,1138.790000013252,-0.05371746193694808 +227759,1138.795000013252,-0.05371732064309727 +227760,1138.8000000132522,-0.05371717932946693 +227761,1138.8050000132523,-0.05371703799605041 +227762,1138.8100000132524,-0.053716896642841065 +227763,1138.8150000132525,-0.05371675526983225 +227764,1138.8200000132526,-0.053716613877017295 +227765,1138.8250000132527,-0.053716472464389556 +227766,1138.8300000132529,-0.053716331031942365 +227767,1138.835000013253,-0.053716189579669046 +227768,1138.840000013253,-0.05371604810756294 +227769,1138.8450000132532,-0.053715906615617384 +227770,1138.8500000132533,-0.05371576510382569 +227771,1138.8550000132534,-0.05371562357218119 +227772,1138.8600000132535,-0.053715482020677184 +227773,1138.8650000132536,-0.05371534044930701 +227774,1138.8700000132537,-0.05371519885806397 +227775,1138.8750000132538,-0.053715057246941374 +227776,1138.880000013254,-0.05371491561593253 +227777,1138.885000013254,-0.05371477396503074 +227778,1138.8900000132542,-0.053714632294229306 +227779,1138.8950000132543,-0.05371449060352153 +227780,1138.9000000132544,-0.053714348892900686 +227781,1138.9050000132545,-0.053714207162360084 +227782,1138.9100000132546,-0.053714065411893004 +227783,1138.9150000132547,-0.05371392364149273 +227784,1138.9200000132548,-0.05371378185115253 +227785,1138.925000013255,-0.0537136400408657 +227786,1138.930000013255,-0.0537134982106255 +227787,1138.9350000132551,-0.05371335636042522 +227788,1138.9400000132553,-0.053713214490258114 +227789,1138.9450000132554,-0.05371307260011744 +227790,1138.9500000132555,-0.05371293068999647 +227791,1138.9550000132556,-0.05371278875988847 +227792,1138.9600000132557,-0.05371264680978668 +227793,1138.9650000132558,-0.05371250483968436 +227794,1138.970000013256,-0.053712362849574743 +227795,1138.975000013256,-0.05371222083945109 +227796,1138.9800000132561,-0.053712078809306646 +227797,1138.9850000132562,-0.053711936759134646 +227798,1138.9900000132563,-0.053711794688928324 +227799,1138.9950000132565,-0.0537116525986809 +227800,1139.0000000132566,-0.05371151048838563 +227801,1139.0050000132567,-0.053711368358035715 +227802,1139.0100000132568,-0.05371122620762439 +227803,1139.015000013257,-0.05371108403714487 +227804,1139.020000013257,-0.05371094184659037 +227805,1139.025000013257,-0.05371079963595412 +227806,1139.0300000132572,-0.053710657405229296 +227807,1139.0350000132573,-0.05371051515440914 +227808,1139.0400000132574,-0.053710372883486825 +227809,1139.0450000132575,-0.053710230592455575 +227810,1139.0500000132577,-0.05371008828130857 +227811,1139.0550000132578,-0.053709945950039015 +227812,1139.0600000132579,-0.053709803598640096 +227813,1139.065000013258,-0.053709661227105 +227814,1139.070000013258,-0.053709518835426906 +227815,1139.0750000132582,-0.053709376423599 +227816,1139.0800000132583,-0.05370923399161445 +227817,1139.0850000132584,-0.05370909153946646 +227818,1139.0900000132585,-0.05370894906714817 +227819,1139.0950000132586,-0.053708806574652754 +227820,1139.1000000132588,-0.05370866406197338 +227821,1139.1050000132589,-0.053708521529103194 +227822,1139.110000013259,-0.05370837897603538 +227823,1139.115000013259,-0.053708236402763065 +227824,1139.1200000132592,-0.05370809380927942 +227825,1139.1250000132593,-0.05370795119557759 +227826,1139.1300000132594,-0.05370780856165072 +227827,1139.1350000132595,-0.053707665907491944 +227828,1139.1400000132596,-0.05370752323309439 +227829,1139.1450000132597,-0.05370738053845122 +227830,1139.1500000132598,-0.05370723782355555 +227831,1139.15500001326,-0.05370709508840049 +227832,1139.16000001326,-0.0537069523329792 +227833,1139.1650000132602,-0.05370680955728479 +227834,1139.1700000132603,-0.05370666676131036 +227835,1139.1750000132604,-0.053706523945049045 +227836,1139.1800000132605,-0.05370638110849395 +227837,1139.1850000132606,-0.05370623825163817 +227838,1139.1900000132607,-0.05370609537447483 +227839,1139.1950000132608,-0.053705952476997026 +227840,1139.200000013261,-0.05370580955919785 +227841,1139.205000013261,-0.053705666621070396 +227842,1139.2100000132612,-0.05370552366260776 +227843,1139.2150000132613,-0.053705380683803046 +227844,1139.2200000132614,-0.05370523768464932 +227845,1139.2250000132615,-0.05370509466513967 +227846,1139.2300000132616,-0.05370495162526716 +227847,1139.2350000132617,-0.05370480856502488 +227848,1139.2400000132618,-0.053704665484405896 +227849,1139.245000013262,-0.053704522383403286 +227850,1139.250000013262,-0.05370437926201011 +227851,1139.2550000132621,-0.05370423612021942 +227852,1139.2600000132622,-0.053704092958024294 +227853,1139.2650000132624,-0.05370394977541777 +227854,1139.2700000132625,-0.05370380657239291 +227855,1139.2750000132626,-0.05370366334894274 +227856,1139.2800000132627,-0.05370352010506033 +227857,1139.2850000132628,-0.053703376840738726 +227858,1139.290000013263,-0.05370323355597094 +227859,1139.295000013263,-0.05370309025075003 +227860,1139.3000000132631,-0.053702946925069016 +227861,1139.3050000132632,-0.053702803578920925 +227862,1139.3100000132633,-0.05370266021229878 +227863,1139.3150000132634,-0.05370251682519562 +227864,1139.3200000132636,-0.05370237341760445 +227865,1139.3250000132637,-0.05370222998951829 +227866,1139.3300000132638,-0.05370208654093014 +227867,1139.3350000132639,-0.05370194307183303 +227868,1139.340000013264,-0.05370179958221993 +227869,1139.345000013264,-0.05370165607208388 +227870,1139.3500000132642,-0.053701512541417855 +227871,1139.3550000132643,-0.05370136899021486 +227872,1139.3600000132644,-0.05370122541846787 +227873,1139.3650000132645,-0.0537010818261699 +227874,1139.3700000132646,-0.053700938213313905 +227875,1139.3750000132648,-0.05370079457989289 +227876,1139.3800000132649,-0.05370065092589981 +227877,1139.385000013265,-0.053700507251327655 +227878,1139.390000013265,-0.053700363556169396 +227879,1139.3950000132652,-0.053700219840418 +227880,1139.4000000132653,-0.05370007610406643 +227881,1139.4050000132654,-0.05369993234710763 +227882,1139.4100000132655,-0.05369978856953459 +227883,1139.4150000132656,-0.053699644771340246 +227884,1139.4200000132657,-0.05369950095251754 +227885,1139.4250000132658,-0.05369935711305943 +227886,1139.430000013266,-0.05369921325295887 +227887,1139.435000013266,-0.05369906937220879 +227888,1139.4400000132662,-0.05369892547080211 +227889,1139.4450000132663,-0.05369878154873179 +227890,1139.4500000132664,-0.053698637605990744 +227891,1139.4550000132665,-0.053698493642571905 +227892,1139.4600000132666,-0.05369834965846819 +227893,1139.4650000132667,-0.05369820565367253 +227894,1139.4700000132668,-0.05369806162817783 +227895,1139.475000013267,-0.05369791758197701 +227896,1139.480000013267,-0.053697773515062976 +227897,1139.4850000132672,-0.05369762942742864 +227898,1139.4900000132673,-0.0536974853190669 +227899,1139.4950000132674,-0.05369734118997066 +227900,1139.5000000132675,-0.05369719704013281 +227901,1139.5050000132676,-0.05369705286954624 +227902,1139.5100000132677,-0.05369690867820384 +227903,1139.5150000132678,-0.0536967644660985 +227904,1139.520000013268,-0.053696620233223115 +227905,1139.525000013268,-0.053696475979570536 +227906,1139.5300000132681,-0.05369633170513366 +227907,1139.5350000132682,-0.05369618740990535 +227908,1139.5400000132684,-0.05369604309387847 +227909,1139.5450000132685,-0.0536958987570459 +227910,1139.5500000132686,-0.05369575439940048 +227911,1139.5550000132687,-0.05369561002093509 +227912,1139.5600000132688,-0.05369546562164257 +227913,1139.565000013269,-0.05369532120151578 +227914,1139.570000013269,-0.05369517676054757 +227915,1139.5750000132691,-0.053695032298730766 +227916,1139.5800000132692,-0.05369488781605821 +227917,1139.5850000132693,-0.05369474331252276 +227918,1139.5900000132694,-0.053694598788117234 +227919,1139.5950000132696,-0.05369445424283447 +227920,1139.6000000132697,-0.05369430967666729 +227921,1139.6050000132698,-0.05369416508960852 +227922,1139.6100000132699,-0.053694020481650985 +227923,1139.61500001327,-0.05369387585278749 +227924,1139.62000001327,-0.053693731203010846 +227925,1139.6250000132702,-0.053693586532313875 +227926,1139.6300000132703,-0.053693441840689374 +227927,1139.6350000132704,-0.05369329712813015 +227928,1139.6400000132705,-0.05369315239462901 +227929,1139.6450000132706,-0.05369300764017872 +227930,1139.6500000132708,-0.053692862864772095 +227931,1139.6550000132709,-0.05369271806840193 +227932,1139.660000013271,-0.05369257325106099 +227933,1139.665000013271,-0.05369242841274208 +227934,1139.6700000132712,-0.05369228355343795 +227935,1139.6750000132713,-0.05369213867314139 +227936,1139.6800000132714,-0.053691993771845165 +227937,1139.6850000132715,-0.05369184884954204 +227938,1139.6900000132716,-0.053691703906224804 +227939,1139.6950000132717,-0.05369155894188619 +227940,1139.7000000132718,-0.05369141395651896 +227941,1139.705000013272,-0.05369126895011587 +227942,1139.710000013272,-0.05369112392266968 +227943,1139.7150000132722,-0.053690978874173116 +227944,1139.7200000132723,-0.053690833804618934 +227945,1139.7250000132724,-0.05369068871399986 +227946,1139.7300000132725,-0.053690543602308655 +227947,1139.7350000132726,-0.05369039846953803 +227948,1139.7400000132727,-0.05369025331568071 +227949,1139.7450000132728,-0.053690108140729435 +227950,1139.750000013273,-0.05368996294467692 +227951,1139.755000013273,-0.05368981772751589 +227952,1139.7600000132732,-0.053689672489239046 +227953,1139.7650000132733,-0.0536895272298391 +227954,1139.7700000132734,-0.05368938194930877 +227955,1139.7750000132735,-0.053689236647640755 +227956,1139.7800000132736,-0.053689091324827756 +227957,1139.7850000132737,-0.05368894598086247 +227958,1139.7900000132738,-0.053688800615737595 +227959,1139.795000013274,-0.053688655229445804 +227960,1139.800000013274,-0.05368850982197979 +227961,1139.8050000132741,-0.05368836439333225 +227962,1139.8100000132742,-0.05368821894349584 +227963,1139.8150000132744,-0.053688073472463245 +227964,1139.8200000132745,-0.053687927980227146 +227965,1139.8250000132746,-0.053687782466780194 +227966,1139.8300000132747,-0.05368763693211507 +227967,1139.8350000132748,-0.05368749137622443 +227968,1139.840000013275,-0.05368734579910093 +227969,1139.845000013275,-0.05368720020073721 +227970,1139.8500000132751,-0.05368705458112594 +227971,1139.8550000132752,-0.05368690894025976 +227972,1139.8600000132753,-0.05368676327813131 +227973,1139.8650000132754,-0.05368661759473322 +227974,1139.8700000132756,-0.053686471890058145 +227975,1139.8750000132757,-0.05368632616409872 +227976,1139.8800000132758,-0.05368618041684755 +227977,1139.8850000132759,-0.053686034648297284 +227978,1139.890000013276,-0.05368588885844052 +227979,1139.895000013276,-0.0536857430472699 +227980,1139.9000000132762,-0.053685597214778016 +227981,1139.9050000132763,-0.05368545136095749 +227982,1139.9100000132764,-0.05368530548580092 +227983,1139.9150000132765,-0.05368515958930094 +227984,1139.9200000132766,-0.05368501367145011 +227985,1139.9250000132768,-0.05368486773224105 +227986,1139.9300000132769,-0.05368472177166633 +227987,1139.935000013277,-0.05368457578971857 +227988,1139.940000013277,-0.05368442978639033 +227989,1139.9450000132772,-0.053684283761674195 +227990,1139.9500000132773,-0.053684137715562755 +227991,1139.9550000132774,-0.05368399164804859 +227992,1139.9600000132775,-0.053683845559124255 +227993,1139.9650000132776,-0.05368369944878232 +227994,1139.9700000132777,-0.05368355331701535 +227995,1139.9750000132778,-0.0536834071638159 +227996,1139.980000013278,-0.053683260989176536 +227997,1139.985000013278,-0.0536831147930898 +227998,1139.9900000132782,-0.053682968575548246 +227999,1139.9950000132783,-0.05368282233654442 +228000,1140.0000000132784,-0.053682676076070864 +228001,1140.0050000132785,-0.05368252979412012 +228002,1140.0100000132786,-0.0536823834906847 +228003,1140.0150000132787,-0.05368223716575716 +228004,1140.0200000132788,-0.053682090819330015 +228005,1140.025000013279,-0.05368194445139579 +228006,1140.030000013279,-0.05368179806194702 +228007,1140.0350000132792,-0.05368165165097619 +228008,1140.0400000132793,-0.05368150521847583 +228009,1140.0450000132794,-0.053681358764438455 +228010,1140.0500000132795,-0.05368121228885657 +228011,1140.0550000132796,-0.05368106579172266 +228012,1140.0600000132797,-0.05368091927302923 +228013,1140.0650000132798,-0.05368077273276877 +228014,1140.07000001328,-0.05368062617093379 +228015,1140.07500001328,-0.05368047958751676 +228016,1140.0800000132801,-0.053680332982510154 +228017,1140.0850000132803,-0.053680186355906476 +228018,1140.0900000132804,-0.05368003970769817 +228019,1140.0950000132805,-0.053679893037877735 +228020,1140.1000000132806,-0.05367974634643763 +228021,1140.1050000132807,-0.053679599633370316 +228022,1140.1100000132808,-0.05367945289866826 +228023,1140.115000013281,-0.05367930614232391 +228024,1140.120000013281,-0.05367915936432972 +228025,1140.1250000132811,-0.05367901256467815 +228026,1140.1300000132812,-0.05367886574336163 +228027,1140.1350000132813,-0.05367871890037262 +228028,1140.1400000132815,-0.05367857203570354 +228029,1140.1450000132816,-0.053678425149346835 +228030,1140.1500000132817,-0.053678278241294945 +228031,1140.1550000132818,-0.053678131311540284 +228032,1140.160000013282,-0.05367798436007527 +228033,1140.165000013282,-0.05367783738689234 +228034,1140.170000013282,-0.05367769039198389 +228035,1140.1750000132822,-0.053677543375342356 +228036,1140.1800000132823,-0.05367739633696013 +228037,1140.1850000132824,-0.05367724927682961 +228038,1140.1900000132825,-0.05367710219494322 +228039,1140.1950000132827,-0.05367695509129334 +228040,1140.2000000132828,-0.053676807965872375 +228041,1140.2050000132829,-0.0536766608186727 +228042,1140.210000013283,-0.05367651364968671 +228043,1140.215000013283,-0.0536763664589068 +228044,1140.2200000132832,-0.05367621924632533 +228045,1140.2250000132833,-0.05367607201193468 +228046,1140.2300000132834,-0.053675924755727224 +228047,1140.2350000132835,-0.05367577747769532 +228048,1140.2400000132836,-0.053675630177831335 +228049,1140.2450000132837,-0.053675482856127645 +228050,1140.2500000132839,-0.05367533551257658 +228051,1140.255000013284,-0.053675188147170504 +228052,1140.260000013284,-0.05367504075990176 +228053,1140.2650000132842,-0.05367489335076272 +228054,1140.2700000132843,-0.05367474591974569 +228055,1140.2750000132844,-0.053674598466843026 +228056,1140.2800000132845,-0.053674450992047054 +228057,1140.2850000132846,-0.0536743034953501 +228058,1140.2900000132847,-0.0536741559767445 +228059,1140.2950000132848,-0.05367400843622258 +228060,1140.300000013285,-0.053673860873776645 +228061,1140.305000013285,-0.05367371328939902 +228062,1140.3100000132852,-0.05367356568308201 +228063,1140.3150000132853,-0.0536734180548179 +228064,1140.3200000132854,-0.05367327040459902 +228065,1140.3250000132855,-0.053673122732417665 +228066,1140.3300000132856,-0.05367297503826613 +228067,1140.3350000132857,-0.05367282732213671 +228068,1140.3400000132858,-0.05367267958402169 +228069,1140.345000013286,-0.05367253182391335 +228070,1140.350000013286,-0.05367238404180397 +228071,1140.3550000132861,-0.05367223623768582 +228072,1140.3600000132863,-0.05367208841155119 +228073,1140.3650000132864,-0.05367194056339234 +228074,1140.3700000132865,-0.05367179269320154 +228075,1140.3750000132866,-0.05367164480097104 +228076,1140.3800000132867,-0.05367149688669309 +228077,1140.3850000132868,-0.05367134895035997 +228078,1140.390000013287,-0.053671200991963916 +228079,1140.395000013287,-0.05367105301149717 +228080,1140.4000000132871,-0.05367090500895196 +228081,1140.4050000132872,-0.05367075698432056 +228082,1140.4100000132873,-0.05367060893759518 +228083,1140.4150000132875,-0.05367046086876805 +228084,1140.4200000132876,-0.0536703127778314 +228085,1140.4250000132877,-0.05367016466477746 +228086,1140.4300000132878,-0.05367001652959844 +228087,1140.435000013288,-0.05366986837228656 +228088,1140.440000013288,-0.053669720192834024 +228089,1140.445000013288,-0.053669571991233046 +228090,1140.4500000132882,-0.05366942376747582 +228091,1140.4550000132883,-0.053669275521554566 +228092,1140.4600000132884,-0.05366912725346147 +228093,1140.4650000132885,-0.05366897896318871 +228094,1140.4700000132887,-0.05366883065072848 +228095,1140.4750000132888,-0.053668682316072976 +228096,1140.4800000132889,-0.05366853395921436 +228097,1140.485000013289,-0.05366838558014481 +228098,1140.490000013289,-0.053668237178856514 +228099,1140.4950000132892,-0.05366808875534163 +228100,1140.5000000132893,-0.05366794030959233 +228101,1140.5050000132894,-0.05366779184160076 +228102,1140.5100000132895,-0.05366764335135909 +228103,1140.5150000132896,-0.05366749483885947 +228104,1140.5200000132897,-0.05366734630409405 +228105,1140.5250000132899,-0.05366719774705497 +228106,1140.53000001329,-0.053667049167734376 +228107,1140.53500001329,-0.0536669005661244 +228108,1140.5400000132902,-0.05366675194221718 +228109,1140.5450000132903,-0.05366660329600484 +228110,1140.5500000132904,-0.05366645462747951 +228111,1140.5550000132905,-0.05366630593663331 +228112,1140.5600000132906,-0.053666157223458355 +228113,1140.5650000132907,-0.05366600848794677 +228114,1140.5700000132908,-0.05366585973009066 +228115,1140.575000013291,-0.05366571094988213 +228116,1140.580000013291,-0.053665562147313266 +228117,1140.5850000132912,-0.05366541332237618 +228118,1140.5900000132913,-0.05366526447506297 +228119,1140.5950000132914,-0.05366511560536573 +228120,1140.6000000132915,-0.05366496671327653 +228121,1140.6050000132916,-0.053664817798787456 +228122,1140.6100000132917,-0.05366466886189059 +228123,1140.6150000132918,-0.053664519902578006 +228124,1140.620000013292,-0.053664370920841774 +228125,1140.625000013292,-0.05366422191667397 +228126,1140.6300000132921,-0.05366407289006665 +228127,1140.6350000132923,-0.05366392384101187 +228128,1140.6400000132924,-0.053663774769501675 +228129,1140.6450000132925,-0.05366362567552814 +228130,1140.6500000132926,-0.053663476559083295 +228131,1140.6550000132927,-0.05366332742015918 +228132,1140.6600000132928,-0.053663178258747835 +228133,1140.665000013293,-0.05366302907484131 +228134,1140.670000013293,-0.053662879868431615 +228135,1140.6750000132931,-0.0536627306395108 +228136,1140.6800000132932,-0.05366258138807086 +228137,1140.6850000132933,-0.05366243211410384 +228138,1140.6900000132935,-0.053662282817601735 +228139,1140.6950000132936,-0.05366213349855657 +228140,1140.7000000132937,-0.05366198415696034 +228141,1140.7050000132938,-0.05366183479280507 +228142,1140.710000013294,-0.053661685406082724 +228143,1140.715000013294,-0.05366153599678532 +228144,1140.720000013294,-0.053661386564904844 +228145,1140.7250000132942,-0.053661237110433295 +228146,1140.7300000132943,-0.05366108763336263 +228147,1140.7350000132944,-0.05366093813368485 +228148,1140.7400000132945,-0.053660788611391924 +228149,1140.7450000132947,-0.053660639066475814 +228150,1140.7500000132948,-0.0536604894989285 +228151,1140.7550000132949,-0.05366033990874193 +228152,1140.760000013295,-0.05366019029590808 +228153,1140.765000013295,-0.0536600406604189 +228154,1140.7700000132952,-0.053659891002266334 +228155,1140.7750000132953,-0.05365974132144233 +228156,1140.7800000132954,-0.05365959161793883 +228157,1140.7850000132955,-0.053659441891747775 +228158,1140.7900000132956,-0.05365929214286111 +228159,1140.7950000132957,-0.05365914237127075 +228160,1140.8000000132959,-0.05365899257696863 +228161,1140.805000013296,-0.053658842759946666 +228162,1140.810000013296,-0.05365869292019679 +228163,1140.8150000132962,-0.0536585430577109 +228164,1140.8200000132963,-0.05365839317248092 +228165,1140.8250000132964,-0.05365824326449874 +228166,1140.8300000132965,-0.053658093333756283 +228167,1140.8350000132966,-0.053657943380245446 +228168,1140.8400000132967,-0.0536577934039581 +228169,1140.8450000132968,-0.05365764340488614 +228170,1140.850000013297,-0.053657493383021476 +228171,1140.855000013297,-0.05365734333835597 +228172,1140.8600000132972,-0.05365719327088151 +228173,1140.8650000132973,-0.05365704318058997 +228174,1140.8700000132974,-0.053656893067473205 +228175,1140.8750000132975,-0.0536567429315231 +228176,1140.8800000132976,-0.0536565927727315 +228177,1140.8850000132977,-0.05365644259109027 +228178,1140.8900000132978,-0.05365629238659126 +228179,1140.895000013298,-0.05365614215922634 +228180,1140.900000013298,-0.053655991908987316 +228181,1140.9050000132981,-0.05365584163586606 +228182,1140.9100000132983,-0.0536556913398544 +228183,1140.9150000132984,-0.05365554102094417 +228184,1140.9200000132985,-0.053655390679127196 +228185,1140.9250000132986,-0.0536552403143953 +228186,1140.9300000132987,-0.05365508992674032 +228187,1140.9350000132988,-0.05365493951615405 +228188,1140.940000013299,-0.053654789082628315 +228189,1140.945000013299,-0.053654638626154924 +228190,1140.9500000132991,-0.053654488146725667 +228191,1140.9550000132992,-0.053654337644332376 +228192,1140.9600000132994,-0.05365418711896682 +228193,1140.9650000132995,-0.05365403657062079 +228194,1140.9700000132996,-0.05365388599928609 +228195,1140.9750000132997,-0.05365373540495449 +228196,1140.9800000132998,-0.053653584787617774 +228197,1140.9850000133,-0.05365343414726772 +228198,1140.9900000133,-0.05365328348389609 +228199,1140.9950000133001,-0.05365313279749467 +228200,1141.0000000133002,-0.0536529820880552 +228201,1141.0050000133003,-0.05365283135556945 +228202,1141.0100000133004,-0.05365268060002917 +228203,1141.0150000133006,-0.05365252982142611 +228204,1141.0200000133007,-0.05365237901975203 +228205,1141.0250000133008,-0.05365222819499867 +228206,1141.0300000133009,-0.05365207734715776 +228207,1141.035000013301,-0.053651926476221024 +228208,1141.040000013301,-0.053651775582180206 +228209,1141.0450000133012,-0.05365162466502703 +228210,1141.0500000133013,-0.05365147372475322 +228211,1141.0550000133014,-0.053651322761350484 +228212,1141.0600000133015,-0.05365117177481054 +228213,1141.0650000133016,-0.053651020765125096 +228214,1141.0700000133018,-0.053650869732285854 +228215,1141.0750000133019,-0.05365071867628453 +228216,1141.080000013302,-0.0536505675971128 +228217,1141.085000013302,-0.053650416494762355 +228218,1141.0900000133022,-0.053650265369224896 +228219,1141.0950000133023,-0.0536501142204921 +228220,1141.1000000133024,-0.05364996304855565 +228221,1141.1050000133025,-0.05364981185340723 +228222,1141.1100000133026,-0.0536496606350385 +228223,1141.1150000133027,-0.053649509393441125 +228224,1141.1200000133028,-0.053649358128606765 +228225,1141.125000013303,-0.05364920684052708 +228226,1141.130000013303,-0.053649055529193745 +228227,1141.1350000133032,-0.05364890419459839 +228228,1141.1400000133033,-0.053648752836732656 +228229,1141.1450000133034,-0.053648601455588196 +228230,1141.1500000133035,-0.05364845005115664 +228231,1141.1550000133036,-0.05364829862342964 +228232,1141.1600000133037,-0.05364814717239881 +228233,1141.1650000133038,-0.05364799569805577 +228234,1141.170000013304,-0.05364784420039215 +228235,1141.175000013304,-0.05364769267939954 +228236,1141.1800000133042,-0.05364754113506959 +228237,1141.1850000133043,-0.053647389567393886 +228238,1141.1900000133044,-0.05364723797636404 +228239,1141.1950000133045,-0.053647086361971644 +228240,1141.2000000133046,-0.05364693472420831 +228241,1141.2050000133047,-0.05364678306306561 +228242,1141.2100000133048,-0.053646631378535134 +228243,1141.215000013305,-0.053646479670608475 +228244,1141.220000013305,-0.053646327939277184 +228245,1141.2250000133051,-0.053646176184532865 +228246,1141.2300000133052,-0.05364602440636708 +228247,1141.2350000133054,-0.05364587260477138 +228248,1141.2400000133055,-0.053645720779737345 +228249,1141.2450000133056,-0.05364556893125652 +228250,1141.2500000133057,-0.053645417059320466 +228251,1141.2550000133058,-0.053645265163920715 +228252,1141.260000013306,-0.05364511324504882 +228253,1141.265000013306,-0.05364496130269633 +228254,1141.2700000133061,-0.05364480933685476 +228255,1141.2750000133062,-0.05364465734751566 +228256,1141.2800000133063,-0.05364450533467056 +228257,1141.2850000133064,-0.053644353298310965 +228258,1141.2900000133066,-0.0536442012384284 +228259,1141.2950000133067,-0.05364404915501436 +228260,1141.3000000133068,-0.053643897048060385 +228261,1141.3050000133069,-0.05364374491755797 +228262,1141.310000013307,-0.0536435927634986 +228263,1141.315000013307,-0.053643440585873794 +228264,1141.3200000133072,-0.05364328838467503 +228265,1141.3250000133073,-0.0536431361598938 +228266,1141.3300000133074,-0.0536429839115216 +228267,1141.3350000133075,-0.05364283163954988 +228268,1141.3400000133076,-0.05364267934397014 +228269,1141.3450000133078,-0.05364252702477386 +228270,1141.3500000133079,-0.05364237468195247 +228271,1141.355000013308,-0.053642222315497465 +228272,1141.360000013308,-0.05364206992540028 +228273,1141.3650000133082,-0.05364191751165237 +228274,1141.3700000133083,-0.05364176507424519 +228275,1141.3750000133084,-0.05364161261317018 +228276,1141.3800000133085,-0.0536414601284188 +228277,1141.3850000133086,-0.053641307619982474 +228278,1141.3900000133087,-0.05364115508785261 +228279,1141.3950000133088,-0.053641002532020664 +228280,1141.400000013309,-0.05364084995247805 +228281,1141.405000013309,-0.053640697349216185 +228282,1141.4100000133092,-0.05364054472222648 +228283,1141.4150000133093,-0.053640392071500356 +228284,1141.4200000133094,-0.05364023939702921 +228285,1141.4250000133095,-0.05364008669880444 +228286,1141.4300000133096,-0.05363993397681745 +228287,1141.4350000133097,-0.05363978123105963 +228288,1141.4400000133098,-0.053639628461522364 +228289,1141.44500001331,-0.05363947566819704 +228290,1141.45000001331,-0.053639322851075026 +228291,1141.4550000133102,-0.05363917001014771 +228292,1141.4600000133103,-0.053639017145406455 +228293,1141.4650000133104,-0.053638864256842625 +228294,1141.4700000133105,-0.05363871134444759 +228295,1141.4750000133106,-0.0536385584082127 +228296,1141.4800000133107,-0.053638405448129305 +228297,1141.4850000133108,-0.05363825246418877 +228298,1141.490000013311,-0.05363809945638242 +228299,1141.495000013311,-0.0536379464247016 +228300,1141.5000000133111,-0.05363779336913764 +228301,1141.5050000133112,-0.05363764028968188 +228302,1141.5100000133114,-0.05363748718632565 +228303,1141.5150000133115,-0.05363733405906025 +228304,1141.5200000133116,-0.05363718090787701 +228305,1141.5250000133117,-0.05363702773276725 +228306,1141.5300000133118,-0.05363687453372226 +228307,1141.535000013312,-0.05363672131073337 +228308,1141.540000013312,-0.053636568063791856 +228309,1141.5450000133121,-0.053636414792889026 +228310,1141.5500000133122,-0.05363626149801617 +228311,1141.5550000133123,-0.05363610817916457 +228312,1141.5600000133124,-0.053635954836325495 +228313,1141.5650000133126,-0.05363580146949025 +228314,1141.5700000133127,-0.05363564807865008 +228315,1141.5750000133128,-0.05363549466379627 +228316,1141.5800000133129,-0.053635341224920086 +228317,1141.585000013313,-0.05363518776201278 +228318,1141.590000013313,-0.05363503427506561 +228319,1141.5950000133132,-0.053634880764069824 +228320,1141.6000000133133,-0.05363472722901666 +228321,1141.6050000133134,-0.053634573669897365 +228322,1141.6100000133135,-0.05363442008670319 +228323,1141.6150000133136,-0.05363426647942535 +228324,1141.6200000133138,-0.05363411284805508 +228325,1141.6250000133139,-0.053633959192583604 +228326,1141.630000013314,-0.053633805513002134 +228327,1141.635000013314,-0.05363365180930188 +228328,1141.6400000133142,-0.05363349808147407 +228329,1141.6450000133143,-0.05363334432950991 +228330,1141.6500000133144,-0.05363319055340058 +228331,1141.6550000133145,-0.05363303675313729 +228332,1141.6600000133146,-0.05363288292871124 +228333,1141.6650000133147,-0.05363272908011361 +228334,1141.6700000133148,-0.05363257520733557 +228335,1141.675000013315,-0.0536324213103683 +228336,1141.680000013315,-0.053632267389202994 +228337,1141.6850000133152,-0.05363211344383082 +228338,1141.6900000133153,-0.05363195947424292 +228339,1141.6950000133154,-0.05363180548043047 +228340,1141.7000000133155,-0.053631651462384626 +228341,1141.7050000133156,-0.05363149742009654 +228342,1141.7100000133157,-0.053631343353557355 +228343,1141.7150000133158,-0.053631189262758214 +228344,1141.720000013316,-0.05363103514769024 +228345,1141.725000013316,-0.05363088100834459 +228346,1141.7300000133162,-0.05363072684471239 +228347,1141.7350000133163,-0.05363057265678474 +228348,1141.7400000133164,-0.053630418444552776 +228349,1141.7450000133165,-0.053630264208007615 +228350,1141.7500000133166,-0.05363010994714037 +228351,1141.7550000133167,-0.05362995566194213 +228352,1141.7600000133168,-0.053629801352404034 +228353,1141.765000013317,-0.053629647018517135 +228354,1141.770000013317,-0.053629492660272546 +228355,1141.7750000133171,-0.05362933827766135 +228356,1141.7800000133172,-0.05362918387067463 +228357,1141.7850000133174,-0.05362902943930345 +228358,1141.7900000133175,-0.05362887498353891 +228359,1141.7950000133176,-0.053628720503372064 +228360,1141.8000000133177,-0.05362856599879399 +228361,1141.8050000133178,-0.053628411469795724 +228362,1141.810000013318,-0.05362825691636833 +228363,1141.815000013318,-0.05362810233850287 +228364,1141.8200000133181,-0.05362794773619038 +228365,1141.8250000133182,-0.0536277931094219 +228366,1141.8300000133183,-0.053627638458188485 +228367,1141.8350000133184,-0.05362748378248115 +228368,1141.8400000133186,-0.053627329082290925 +228369,1141.8450000133187,-0.05362717435760884 +228370,1141.8500000133188,-0.0536270196084259 +228371,1141.8550000133189,-0.053626864834733126 +228372,1141.860000013319,-0.05362671003652153 +228373,1141.865000013319,-0.05362655521378211 +228374,1141.8700000133192,-0.053626400366505865 +228375,1141.8750000133193,-0.05362624549468379 +228376,1141.8800000133194,-0.05362609059830689 +228377,1141.8850000133195,-0.05362593567736613 +228378,1141.8900000133196,-0.0536257807318525 +228379,1141.8950000133198,-0.053625625761756994 +228380,1141.9000000133199,-0.053625470767070554 +228381,1141.90500001332,-0.053625315747784175 +228382,1141.91000001332,-0.0536251607038888 +228383,1141.9150000133202,-0.05362500563537539 +228384,1141.9200000133203,-0.0536248505422349 +228385,1141.9250000133204,-0.05362469542445828 +228386,1141.9300000133205,-0.053624540282036476 +228387,1141.9350000133206,-0.05362438511496042 +228388,1141.9400000133207,-0.05362422992322105 +228389,1141.9450000133209,-0.0536240747068093 +228390,1141.950000013321,-0.05362391946571608 +228391,1141.955000013321,-0.05362376419993234 +228392,1141.9600000133212,-0.05362360890944898 +228393,1141.9650000133213,-0.0536234535942569 +228394,1141.9700000133214,-0.05362329825434702 +228395,1141.9750000133215,-0.05362314288971024 +228396,1141.9800000133216,-0.05362298750033745 +228397,1141.9850000133217,-0.05362283208621955 +228398,1141.9900000133218,-0.05362267664734742 +228399,1141.995000013322,-0.053622521183711955 +228400,1142.000000013322,-0.05362236569530403 +228401,1142.0050000133222,-0.0536222101821145 +228402,1142.0100000133223,-0.053622054644134255 +228403,1142.0150000133224,-0.053621899081354146 +228404,1142.0200000133225,-0.05362174349376504 +228405,1142.0250000133226,-0.0536215878813578 +228406,1142.0300000133227,-0.05362143224412326 +228407,1142.0350000133228,-0.05362127658205226 +228408,1142.040000013323,-0.05362112089513566 +228409,1142.045000013323,-0.05362096518336429 +228410,1142.0500000133231,-0.05362080944672897 +228411,1142.0550000133233,-0.05362065368522053 +228412,1142.0600000133234,-0.05362049789882981 +228413,1142.0650000133235,-0.0536203420875476 +228414,1142.0700000133236,-0.05362018625136473 +228415,1142.0750000133237,-0.053620030390271994 +228416,1142.0800000133238,-0.053619874504260194 +228417,1142.085000013324,-0.05361971859332015 +228418,1142.090000013324,-0.05361956265744263 +228419,1142.0950000133241,-0.05361940669661843 +228420,1142.1000000133242,-0.05361925071083833 +228421,1142.1050000133243,-0.053619094700093115 +228422,1142.1100000133245,-0.05361893866437356 +228423,1142.1150000133246,-0.05361878260367042 +228424,1142.1200000133247,-0.05361862651797448 +228425,1142.1250000133248,-0.05361847040727648 +228426,1142.130000013325,-0.05361831427156717 +228427,1142.135000013325,-0.05361815811083733 +228428,1142.140000013325,-0.05361800192507768 +228429,1142.1450000133252,-0.05361784571427896 +228430,1142.1500000133253,-0.053617689478431915 +228431,1142.1550000133254,-0.05361753321752727 +228432,1142.1600000133255,-0.05361737693155576 +228433,1142.1650000133257,-0.053617220620508096 +228434,1142.1700000133258,-0.053617064284374995 +228435,1142.1750000133259,-0.05361690792314717 +228436,1142.180000013326,-0.05361675153681532 +228437,1142.185000013326,-0.053616595125370155 +228438,1142.1900000133262,-0.05361643868880238 +228439,1142.1950000133263,-0.05361628222710266 +228440,1142.2000000133264,-0.05361612574026171 +228441,1142.2050000133265,-0.05361596922827019 +228442,1142.2100000133266,-0.05361581269111879 +228443,1142.2150000133267,-0.05361565612879818 +228444,1142.2200000133269,-0.05361549954129903 +228445,1142.225000013327,-0.053615342928611996 +228446,1142.230000013327,-0.05361518629072775 +228447,1142.2350000133272,-0.05361502962763693 +228448,1142.2400000133273,-0.053614872939330184 +228449,1142.2450000133274,-0.053614716225798165 +228450,1142.2500000133275,-0.0536145594870315 +228451,1142.2550000133276,-0.05361440272302083 +228452,1142.2600000133277,-0.05361424593375679 +228453,1142.2650000133278,-0.053614089119230005 +228454,1142.270000013328,-0.05361393227943107 +228455,1142.275000013328,-0.05361377541435061 +228456,1142.2800000133282,-0.053613618523979244 +228457,1142.2850000133283,-0.05361346160830757 +228458,1142.2900000133284,-0.05361330466732619 +228459,1142.2950000133285,-0.053613147701025696 +228460,1142.3000000133286,-0.05361299070939667 +228461,1142.3050000133287,-0.0536128336924297 +228462,1142.3100000133288,-0.053612676650115376 +228463,1142.315000013329,-0.053612519582444264 +228464,1142.320000013329,-0.053612362489406935 +228465,1142.3250000133291,-0.05361220537099395 +228466,1142.3300000133293,-0.05361204822719587 +228467,1142.3350000133294,-0.05361189105800327 +228468,1142.3400000133295,-0.053611733863406674 +228469,1142.3450000133296,-0.053611576643396636 +228470,1142.3500000133297,-0.05361141939796369 +228471,1142.3550000133298,-0.05361126212709839 +228472,1142.36000001333,-0.053611104830791234 +228473,1142.36500001333,-0.05361094750903279 +228474,1142.3700000133301,-0.05361079016181354 +228475,1142.3750000133302,-0.053610632789124014 +228476,1142.3800000133303,-0.05361047539095472 +228477,1142.3850000133305,-0.05361031796729617 +228478,1142.3900000133306,-0.05361016051813887 +228479,1142.3950000133307,-0.0536100030434733 +228480,1142.4000000133308,-0.053609845543289965 +228481,1142.405000013331,-0.05360968801757933 +228482,1142.410000013331,-0.05360953046633189 +228483,1142.415000013331,-0.053609372889538126 +228484,1142.4200000133312,-0.05360921528718849 +228485,1142.4250000133313,-0.05360905765927348 +228486,1142.4300000133314,-0.053608900005783514 +228487,1142.4350000133315,-0.05360874232670908 +228488,1142.4400000133317,-0.053608584622040614 +228489,1142.4450000133318,-0.05360842689176856 +228490,1142.4500000133319,-0.053608269135883374 +228491,1142.455000013332,-0.05360811135437548 +228492,1142.460000013332,-0.05360795354723531 +228493,1142.4650000133322,-0.05360779571445329 +228494,1142.4700000133323,-0.05360763785601985 +228495,1142.4750000133324,-0.05360747997192539 +228496,1142.4800000133325,-0.053607322062160324 +228497,1142.4850000133326,-0.05360716412671506 +228498,1142.4900000133327,-0.05360700616558001 +228499,1142.4950000133329,-0.05360684817874555 +228500,1142.500000013333,-0.053606690166202085 +228501,1142.505000013333,-0.05360653212793998 +228502,1142.5100000133332,-0.05360637406394964 +228503,1142.5150000133333,-0.05360621597422143 +228504,1142.5200000133334,-0.05360605785874571 +228505,1142.5250000133335,-0.053605899717512874 +228506,1142.5300000133336,-0.053605741550513245 +228507,1142.5350000133337,-0.053605583357737206 +228508,1142.5400000133338,-0.0536054251391751 +228509,1142.545000013334,-0.05360526689481726 +228510,1142.550000013334,-0.05360510862465405 +228511,1142.5550000133342,-0.053604950328675786 +228512,1142.5600000133343,-0.0536047920068728 +228513,1142.5650000133344,-0.05360463365923542 +228514,1142.5700000133345,-0.05360447528575395 +228515,1142.5750000133346,-0.05360431688641873 +228516,1142.5800000133347,-0.053604158461220054 +228517,1142.5850000133348,-0.05360400001014823 +228518,1142.590000013335,-0.05360384153319356 +228519,1142.595000013335,-0.053603683030346336 +228520,1142.6000000133351,-0.05360352450159684 +228521,1142.6050000133353,-0.05360336594693536 +228522,1142.6100000133354,-0.05360320736635218 +228523,1142.6150000133355,-0.05360304875983756 +228524,1142.6200000133356,-0.0536028901273818 +228525,1142.6250000133357,-0.05360273146897512 +228526,1142.6300000133358,-0.05360257278460782 +228527,1142.635000013336,-0.05360241407427012 +228528,1142.640000013336,-0.05360225533795227 +228529,1142.6450000133361,-0.05360209657564454 +228530,1142.6500000133362,-0.05360193778733715 +228531,1142.6550000133363,-0.053601778973020334 +228532,1142.6600000133365,-0.05360162013268432 +228533,1142.6650000133366,-0.05360146126631932 +228534,1142.6700000133367,-0.053601302373915576 +228535,1142.6750000133368,-0.053601143455463275 +228536,1142.680000013337,-0.05360098451095263 +228537,1142.685000013337,-0.05360082554037385 +228538,1142.690000013337,-0.053600666543717125 +228539,1142.6950000133372,-0.05360050752097266 +228540,1142.7000000133373,-0.05360034847213062 +228541,1142.7050000133374,-0.0536001893971812 +228542,1142.7100000133375,-0.05360003029611457 +228543,1142.7150000133377,-0.0535998711689209 +228544,1142.7200000133378,-0.053599712015590356 +228545,1142.7250000133379,-0.05359955283611309 +228546,1142.730000013338,-0.05359939363047927 +228547,1142.735000013338,-0.053599234398679044 +228548,1142.7400000133382,-0.05359907514070256 +228549,1142.7450000133383,-0.05359891585653995 +228550,1142.7500000133384,-0.05359875654618135 +228551,1142.7550000133385,-0.053598597209616884 +228552,1142.7600000133386,-0.053598437846836676 +228553,1142.7650000133387,-0.05359827845783086 +228554,1142.7700000133389,-0.05359811904258953 +228555,1142.775000013339,-0.0535979596011028 +228556,1142.780000013339,-0.05359780013336078 +228557,1142.7850000133392,-0.05359764063935356 +228558,1142.7900000133393,-0.053597481119071234 +228559,1142.7950000133394,-0.05359732157250389 +228560,1142.8000000133395,-0.0535971619996416 +228561,1142.8050000133396,-0.053597002400474464 +228562,1142.8100000133397,-0.05359684277499254 +228563,1142.8150000133398,-0.053596683123185884 +228564,1142.82000001334,-0.05359652344504457 +228565,1142.82500001334,-0.05359636374055864 +228566,1142.8300000133402,-0.053596204009718165 +228567,1142.8350000133403,-0.05359604425251318 +228568,1142.8400000133404,-0.05359588446893372 +228569,1142.8450000133405,-0.05359572465896983 +228570,1142.8500000133406,-0.053595564822611526 +228571,1142.8550000133407,-0.05359540495984884 +228572,1142.8600000133408,-0.05359524507067178 +228573,1142.865000013341,-0.05359508515507038 +228574,1142.870000013341,-0.053594925213034626 +228575,1142.8750000133412,-0.05359476524455454 +228576,1142.8800000133413,-0.053594605249620106 +228577,1142.8850000133414,-0.05359444522822132 +228578,1142.8900000133415,-0.053594285180348165 +228579,1142.8950000133416,-0.05359412510599063 +228580,1142.9000000133417,-0.05359396500513869 +228581,1142.9050000133418,-0.05359380487778231 +228582,1142.910000013342,-0.053593644723911454 +228583,1142.915000013342,-0.05359348454351608 +228584,1142.9200000133421,-0.053593324336586166 +228585,1142.9250000133422,-0.053593164103111636 +228586,1142.9300000133424,-0.053593003843082444 +228587,1142.9350000133425,-0.05359284355648853 +228588,1142.9400000133426,-0.053592683243319825 +228589,1142.9450000133427,-0.05359252290356627 +228590,1142.9500000133428,-0.053592362537217754 +228591,1142.955000013343,-0.053592202144264224 +228592,1142.960000013343,-0.053592041724695595 +228593,1142.9650000133431,-0.05359188127850174 +228594,1142.9700000133432,-0.05359172080567261 +228595,1142.9750000133433,-0.05359156030619806 +228596,1142.9800000133434,-0.053591399780068 +228597,1142.9850000133436,-0.05359123922727231 +228598,1142.9900000133437,-0.05359107864780087 +228599,1142.9950000133438,-0.05359091804164355 +228600,1143.0000000133439,-0.05359075740879023 +228601,1143.005000013344,-0.05359059674923076 +228602,1143.010000013344,-0.05359043606295501 +228603,1143.0150000133442,-0.05359027534995282 +228604,1143.0200000133443,-0.05359011461021405 +228605,1143.0250000133444,-0.05358995384372854 +228606,1143.0300000133445,-0.053589793050486126 +228607,1143.0350000133446,-0.05358963223047662 +228608,1143.0400000133448,-0.053589471383689885 +228609,1143.0450000133449,-0.05358931051011571 +228610,1143.050000013345,-0.05358914960974393 +228611,1143.055000013345,-0.053588988682564336 +228612,1143.0600000133452,-0.05358882772856674 +228613,1143.0650000133453,-0.05358866674774096 +228614,1143.0700000133454,-0.05358850574007676 +228615,1143.0750000133455,-0.053588344705563944 +228616,1143.0800000133456,-0.05358818364419229 +228617,1143.0850000133457,-0.05358802255595157 +228618,1143.0900000133458,-0.05358786144083156 +228619,1143.095000013346,-0.05358770029882203 +228620,1143.100000013346,-0.053587539129912744 +228621,1143.1050000133462,-0.05358737793409344 +228622,1143.1100000133463,-0.05358721671135388 +228623,1143.1150000133464,-0.053587055461683804 +228624,1143.1200000133465,-0.05358689418507295 +228625,1143.1250000133466,-0.05358673288151106 +228626,1143.1300000133467,-0.053586571550987845 +228627,1143.1350000133468,-0.05358641019349304 +228628,1143.140000013347,-0.05358624880901636 +228629,1143.145000013347,-0.05358608739754752 +228630,1143.1500000133472,-0.05358592595907622 +228631,1143.1550000133473,-0.05358576449359217 +228632,1143.1600000133474,-0.05358560300108504 +228633,1143.1650000133475,-0.05358544148154454 +228634,1143.1700000133476,-0.05358527993496034 +228635,1143.1750000133477,-0.05358511836132213 +228636,1143.1800000133478,-0.05358495676061958 +228637,1143.185000013348,-0.05358479513284236 +228638,1143.190000013348,-0.05358463347798012 +228639,1143.1950000133481,-0.05358447179602253 +228640,1143.2000000133482,-0.05358431008695922 +228641,1143.2050000133484,-0.053584148350779855 +228642,1143.2100000133485,-0.053583986587474076 +228643,1143.2150000133486,-0.0535838247970315 +228644,1143.2200000133487,-0.05358366297944177 +228645,1143.2250000133488,-0.053583501134694504 +228646,1143.230000013349,-0.05358333926277932 +228647,1143.235000013349,-0.05358317736368582 +228648,1143.2400000133491,-0.05358301543740362 +228649,1143.2450000133492,-0.05358285348392232 +228650,1143.2500000133493,-0.053582691503231514 +228651,1143.2550000133494,-0.05358252949532079 +228652,1143.2600000133496,-0.053582367460179726 +228653,1143.2650000133497,-0.05358220539779791 +228654,1143.2700000133498,-0.05358204330816491 +228655,1143.2750000133499,-0.053581881191270296 +228656,1143.28000001335,-0.05358171904710363 +228657,1143.28500001335,-0.053581556875654454 +228658,1143.2900000133502,-0.05358139467691234 +228659,1143.2950000133503,-0.05358123245086681 +228660,1143.3000000133504,-0.053581070197507415 +228661,1143.3050000133505,-0.05358090791682369 +228662,1143.3100000133506,-0.05358074560880516 +228663,1143.3150000133508,-0.05358058327344135 +228664,1143.3200000133509,-0.05358042091072177 +228665,1143.325000013351,-0.053580258520635936 +228666,1143.330000013351,-0.053580096103173346 +228667,1143.3350000133512,-0.05357993365832351 +228668,1143.3400000133513,-0.05357977118607592 +228669,1143.3450000133514,-0.05357960868642006 +228670,1143.3500000133515,-0.05357944615934541 +228671,1143.3550000133516,-0.05357928360484145 +228672,1143.3600000133517,-0.053579121022897656 +228673,1143.3650000133518,-0.053578958413503484 +228674,1143.370000013352,-0.053578795776648404 +228675,1143.375000013352,-0.05357863311232187 +228676,1143.3800000133522,-0.053578470420513315 +228677,1143.3850000133523,-0.0535783077012122 +228678,1143.3900000133524,-0.05357814495440795 +228679,1143.3950000133525,-0.05357798218009 +228680,1143.4000000133526,-0.05357781937824778 +228681,1143.4050000133527,-0.05357765654887071 +228682,1143.4100000133528,-0.05357749369194819 +228683,1143.415000013353,-0.05357733080746965 +228684,1143.420000013353,-0.05357716789542448 +228685,1143.4250000133532,-0.05357700495580208 +228686,1143.4300000133533,-0.053576841988591854 +228687,1143.4350000133534,-0.05357667899378316 +228688,1143.4400000133535,-0.05357651597136541 +228689,1143.4450000133536,-0.05357635292132795 +228690,1143.4500000133537,-0.05357618984366017 +228691,1143.4550000133538,-0.053576026738351434 +228692,1143.460000013354,-0.05357586360539108 +228693,1143.465000013354,-0.053575700444768476 +228694,1143.4700000133541,-0.05357553725647295 +228695,1143.4750000133542,-0.05357537404049385 +228696,1143.4800000133544,-0.05357521079682053 +228697,1143.4850000133545,-0.05357504752544229 +228698,1143.4900000133546,-0.05357488422634846 +228699,1143.4950000133547,-0.053574720899528375 +228700,1143.5000000133548,-0.05357455754497133 +228701,1143.505000013355,-0.05357439416266662 +228702,1143.510000013355,-0.05357423075260357 +228703,1143.5150000133551,-0.053574067314771455 +228704,1143.5200000133552,-0.05357390384915958 +228705,1143.5250000133553,-0.05357374035575721 +228706,1143.5300000133554,-0.05357357683455363 +228707,1143.5350000133556,-0.05357341328553811 +228708,1143.5400000133557,-0.05357324970869991 +228709,1143.5450000133558,-0.05357308610402829 +228710,1143.5500000133559,-0.05357292247151251 +228711,1143.555000013356,-0.053572758811141825 +228712,1143.560000013356,-0.05357259512290546 +228713,1143.5650000133562,-0.053572431406792645 +228714,1143.5700000133563,-0.053572267662792626 +228715,1143.5750000133564,-0.053572103890894625 +228716,1143.5800000133565,-0.05357194009108786 +228717,1143.5850000133566,-0.05357177626336153 +228718,1143.5900000133568,-0.05357161240770486 +228719,1143.5950000133569,-0.05357144852410706 +228720,1143.600000013357,-0.05357128461255729 +228721,1143.605000013357,-0.05357112067304476 +228722,1143.6100000133572,-0.053570956705558656 +228723,1143.6150000133573,-0.05357079271008814 +228724,1143.6200000133574,-0.0535706286866224 +228725,1143.6250000133575,-0.053570464635150604 +228726,1143.6300000133576,-0.053570300555661886 +228727,1143.6350000133577,-0.053570136448145435 +228728,1143.6400000133578,-0.053569972312590364 +228729,1143.645000013358,-0.05356980814898584 +228730,1143.650000013358,-0.05356964395732099 +228731,1143.6550000133582,-0.053569479737584955 +228732,1143.6600000133583,-0.05356931548976685 +228733,1143.6650000133584,-0.05356915121385579 +228734,1143.6700000133585,-0.05356898690984089 +228735,1143.6750000133586,-0.05356882257771126 +228736,1143.6800000133587,-0.053568658217456 +228737,1143.6850000133588,-0.05356849382906421 +228738,1143.690000013359,-0.05356832941252496 +228739,1143.695000013359,-0.05356816496782736 +228740,1143.7000000133592,-0.05356800049496046 +228741,1143.7050000133593,-0.05356783599391335 +228742,1143.7100000133594,-0.05356767146467509 +228743,1143.7150000133595,-0.05356750690723473 +228744,1143.7200000133596,-0.053567342321581335 +228745,1143.7250000133597,-0.053567177707703965 +228746,1143.7300000133598,-0.05356701306559164 +228747,1143.73500001336,-0.053566848395233395 +228748,1143.74000001336,-0.053566683696618274 +228749,1143.7450000133601,-0.053566518969735286 +228750,1143.7500000133602,-0.05356635421457345 +228751,1143.7550000133604,-0.053566189431121784 +228752,1143.7600000133605,-0.0535660246193693 +228753,1143.7650000133606,-0.05356585977930499 +228754,1143.7700000133607,-0.053565694910917845 +228755,1143.7750000133608,-0.05356553001419685 +228756,1143.780000013361,-0.053565365089131005 +228757,1143.785000013361,-0.053565200135709264 +228758,1143.7900000133611,-0.0535650351539206 +228759,1143.7950000133612,-0.053564870143753995 +228760,1143.8000000133613,-0.05356470510519839 +228761,1143.8050000133615,-0.05356454003824274 +228762,1143.8100000133616,-0.05356437494287599 +228763,1143.8150000133617,-0.053564209819087084 +228764,1143.8200000133618,-0.05356404466686494 +228765,1143.825000013362,-0.05356387948619852 +228766,1143.830000013362,-0.0535637142770767 +228767,1143.835000013362,-0.05356354903948842 +228768,1143.8400000133622,-0.0535633837734226 +228769,1143.8450000133623,-0.05356321847886812 +228770,1143.8500000133624,-0.0535630531558139 +228771,1143.8550000133625,-0.05356288780424882 +228772,1143.8600000133627,-0.05356272242416176 +228773,1143.8650000133628,-0.0535625570155416 +228774,1143.8700000133629,-0.053562391578377215 +228775,1143.875000013363,-0.053562226112657485 +228776,1143.880000013363,-0.05356206061837125 +228777,1143.8850000133632,-0.053561895095507385 +228778,1143.8900000133633,-0.05356172954405471 +228779,1143.8950000133634,-0.05356156396400211 +228780,1143.9000000133635,-0.05356139835533839 +228781,1143.9050000133636,-0.05356123271805238 +228782,1143.9100000133637,-0.05356106705213291 +228783,1143.9150000133639,-0.05356090135756881 +228784,1143.920000013364,-0.05356073563434888 +228785,1143.925000013364,-0.05356056988246192 +228786,1143.9300000133642,-0.053560404101896754 +228787,1143.9350000133643,-0.05356023829264216 +228788,1143.9400000133644,-0.053560072454686906 +228789,1143.9450000133645,-0.053559906588019804 +228790,1143.9500000133646,-0.05355974069262962 +228791,1143.9550000133647,-0.05355957476850512 +228792,1143.9600000133648,-0.05355940881563507 +228793,1143.965000013365,-0.05355924283400822 +228794,1143.970000013365,-0.05355907682361333 +228795,1143.9750000133652,-0.05355891078443913 +228796,1143.9800000133653,-0.05355874471647438 +228797,1143.9850000133654,-0.0535585786197078 +228798,1143.9900000133655,-0.05355841249412812 +228799,1143.9950000133656,-0.05355824633972405 +228800,1144.0000000133657,-0.05355808015648431 +228801,1144.0050000133658,-0.053557913944397614 +228802,1144.010000013366,-0.053557747703452646 +228803,1144.015000013366,-0.05355758143363812 +228804,1144.0200000133661,-0.053557415134942714 +228805,1144.0250000133663,-0.05355724880735511 +228806,1144.0300000133664,-0.05355708245086399 +228807,1144.0350000133665,-0.053556916065458024 +228808,1144.0400000133666,-0.05355674965112587 +228809,1144.0450000133667,-0.053556583207856195 +228810,1144.0500000133668,-0.053556416735637644 +228811,1144.055000013367,-0.05355625023445886 +228812,1144.060000013367,-0.05355608370430849 +228813,1144.0650000133671,-0.05355591714517517 +228814,1144.0700000133672,-0.05355575055704752 +228815,1144.0750000133673,-0.05355558393991416 +228816,1144.0800000133675,-0.053555417293763695 +228817,1144.0850000133676,-0.05355525061858475 +228818,1144.0900000133677,-0.05355508391436591 +228819,1144.0950000133678,-0.05355491718109579 +228820,1144.100000013368,-0.05355475041876297 +228821,1144.105000013368,-0.05355458362735601 +228822,1144.110000013368,-0.053554416806863514 +228823,1144.1150000133682,-0.05355424995727406 +228824,1144.1200000133683,-0.05355408307857618 +228825,1144.1250000133684,-0.05355391617075847 +228826,1144.1300000133685,-0.053553749233809456 +228827,1144.1350000133687,-0.05355358226771769 +228828,1144.1400000133688,-0.0535534152724717 +228829,1144.1450000133689,-0.05355324824806003 +228830,1144.150000013369,-0.053553081194471205 +228831,1144.155000013369,-0.05355291411169374 +228832,1144.1600000133692,-0.05355274699971615 +228833,1144.1650000133693,-0.05355257985852694 +228834,1144.1700000133694,-0.053552412688114615 +228835,1144.1750000133695,-0.053552245488467674 +228836,1144.1800000133696,-0.0535520782595746 +228837,1144.1850000133697,-0.053551911001423876 +228838,1144.1900000133699,-0.05355174371400398 +228839,1144.19500001337,-0.05355157639730338 +228840,1144.20000001337,-0.053551409051310526 +228841,1144.2050000133702,-0.05355124167601389 +228842,1144.2100000133703,-0.05355107427140192 +228843,1144.2150000133704,-0.053550906837463046 +228844,1144.2200000133705,-0.053550739374185724 +228845,1144.2250000133706,-0.05355057188155839 +228846,1144.2300000133707,-0.05355040435956944 +228847,1144.2350000133708,-0.053550236808207315 +228848,1144.240000013371,-0.05355006922746041 +228849,1144.245000013371,-0.053549901617317146 +228850,1144.2500000133712,-0.05354973397776591 +228851,1144.2550000133713,-0.05354956630879511 +228852,1144.2600000133714,-0.053549398610393116 +228853,1144.2650000133715,-0.053549230882548315 +228854,1144.2700000133716,-0.053549063125249076 +228855,1144.2750000133717,-0.053548895338483775 +228856,1144.2800000133718,-0.053548727522240755 +228857,1144.285000013372,-0.053548559676508393 +228858,1144.290000013372,-0.05354839180127502 +228859,1144.2950000133721,-0.05354822389652898 +228860,1144.3000000133723,-0.05354805596225862 +228861,1144.3050000133724,-0.05354788799845224 +228862,1144.3100000133725,-0.053547720005098186 +228863,1144.3150000133726,-0.05354755198218477 +228864,1144.3200000133727,-0.05354738392970031 +228865,1144.3250000133728,-0.053547215847633084 +228866,1144.330000013373,-0.0535470477359714 +228867,1144.335000013373,-0.053546879594703556 +228868,1144.3400000133731,-0.05354671142381781 +228869,1144.3450000133732,-0.05354654322330247 +228870,1144.3500000133733,-0.053546374993145775 +228871,1144.3550000133735,-0.05354620673333601 +228872,1144.3600000133736,-0.053546038443861424 +228873,1144.3650000133737,-0.05354587012471028 +228874,1144.3700000133738,-0.0535457017758708 +228875,1144.375000013374,-0.053545533397331244 +228876,1144.380000013374,-0.05354536498907983 +228877,1144.385000013374,-0.05354519655110478 +228878,1144.3900000133742,-0.053545028083394314 +228879,1144.3950000133743,-0.053544859585936654 +228880,1144.4000000133744,-0.05354469105871998 +228881,1144.4050000133745,-0.053544522501732514 +228882,1144.4100000133747,-0.05354435391496244 +228883,1144.4150000133748,-0.05354418529839795 +228884,1144.4200000133749,-0.05354401665202721 +228885,1144.425000013375,-0.05354384797583839 +228886,1144.430000013375,-0.05354367926981966 +228887,1144.4350000133752,-0.05354351053395919 +228888,1144.4400000133753,-0.05354334176824513 +228889,1144.4450000133754,-0.053543172972665615 +228890,1144.4500000133755,-0.05354300414720879 +228891,1144.4550000133756,-0.05354283529186279 +228892,1144.4600000133757,-0.05354266640661572 +228893,1144.4650000133759,-0.05354249749145572 +228894,1144.470000013376,-0.0535423285463709 +228895,1144.475000013376,-0.05354215957134936 +228896,1144.4800000133762,-0.05354199056637921 +228897,1144.4850000133763,-0.05354182153144855 +228898,1144.4900000133764,-0.05354165246654544 +228899,1144.4950000133765,-0.053541483371657976 +228900,1144.5000000133766,-0.05354131424677422 +228901,1144.5050000133767,-0.05354114509188226 +228902,1144.5100000133768,-0.053540975906970135 +228903,1144.515000013377,-0.05354080669202591 +228904,1144.520000013377,-0.053540637447037624 +228905,1144.5250000133772,-0.05354046817199332 +228906,1144.5300000133773,-0.05354029886688103 +228907,1144.5350000133774,-0.053540129531688775 +228908,1144.5400000133775,-0.05353996016640458 +228909,1144.5450000133776,-0.05353979077101647 +228910,1144.5500000133777,-0.053539621345512434 +228911,1144.5550000133778,-0.05353945188988047 +228912,1144.560000013378,-0.05353928240410858 +228913,1144.565000013378,-0.05353911288818475 +228914,1144.5700000133781,-0.05353894334209696 +228915,1144.5750000133783,-0.053538773765833186 +228916,1144.5800000133784,-0.053538604159381394 +228917,1144.5850000133785,-0.05353843452272953 +228918,1144.5900000133786,-0.05353826485586556 +228919,1144.5950000133787,-0.05353809515877742 +228920,1144.6000000133788,-0.05353792543145306 +228921,1144.605000013379,-0.053537755673880416 +228922,1144.610000013379,-0.053537585886047394 +228923,1144.6150000133791,-0.053537416067941934 +228924,1144.6200000133792,-0.053537246219551936 +228925,1144.6250000133793,-0.0535370763408653 +228926,1144.6300000133795,-0.05353690643186994 +228927,1144.6350000133796,-0.05353673649255374 +228928,1144.6400000133797,-0.053536566522904595 +228929,1144.6450000133798,-0.05353639652291037 +228930,1144.65000001338,-0.05353622649255894 +228931,1144.65500001338,-0.053536056431838175 +228932,1144.66000001338,-0.05353588634073593 +228933,1144.6650000133802,-0.05353571621924006 +228934,1144.6700000133803,-0.0535355460673384 +228935,1144.6750000133804,-0.0535353758850188 +228936,1144.6800000133805,-0.053535205672269076 +228937,1144.6850000133807,-0.05353503542907705 +228938,1144.6900000133808,-0.05353486515543058 +228939,1144.6950000133809,-0.05353469485131744 +228940,1144.700000013381,-0.05353452451672544 +228941,1144.705000013381,-0.05353435415164238 +228942,1144.7100000133812,-0.053534183756056036 +228943,1144.7150000133813,-0.05353401332995421 +228944,1144.7200000133814,-0.053533842873324675 +228945,1144.7250000133815,-0.05353367238615519 +228946,1144.7300000133816,-0.05353350186843353 +228947,1144.7350000133818,-0.053533331320147454 +228948,1144.7400000133819,-0.05353316074128469 +228949,1144.745000013382,-0.053532990131833005 +228950,1144.750000013382,-0.05353281949178012 +228951,1144.7550000133822,-0.053532648821113755 +228952,1144.7600000133823,-0.05353247811982165 +228953,1144.7650000133824,-0.053532307387891505 +228954,1144.7700000133825,-0.05353213662531104 +228955,1144.7750000133826,-0.05353196583206796 +228956,1144.7800000133827,-0.053531795008149946 +228957,1144.7850000133828,-0.053531624153544684 +228958,1144.790000013383,-0.05353145326823986 +228959,1144.795000013383,-0.053531282352223146 +228960,1144.8000000133832,-0.05353111140548221 +228961,1144.8050000133833,-0.0535309404280047 +228962,1144.8100000133834,-0.05353076941977828 +228963,1144.8150000133835,-0.05353059838079059 +228964,1144.8200000133836,-0.053530427311029284 +228965,1144.8250000133837,-0.053530256210481984 +228966,1144.8300000133838,-0.0535300850791363 +228967,1144.835000013384,-0.053529913916979865 +228968,1144.840000013384,-0.05352974272400029 +228969,1144.8450000133842,-0.05352957150018517 +228970,1144.8500000133843,-0.053529400245522114 +228971,1144.8550000133844,-0.05352922895999869 +228972,1144.8600000133845,-0.0535290576436025 +228973,1144.8650000133846,-0.05352888629632112 +228974,1144.8700000133847,-0.053528714918142116 +228975,1144.8750000133848,-0.053528543509053055 +228976,1144.880000013385,-0.053528372069041465 +228977,1144.885000013385,-0.053528200598094926 +228978,1144.8900000133851,-0.05352802909620097 +228979,1144.8950000133852,-0.05352785756334711 +228980,1144.9000000133854,-0.0535276859995209 +228981,1144.9050000133855,-0.05352751440470985 +228982,1144.9100000133856,-0.05352734277890147 +228983,1144.9150000133857,-0.05352717112208327 +228984,1144.9200000133858,-0.05352699943424275 +228985,1144.925000013386,-0.0535268277153674 +228986,1144.930000013386,-0.0535266559654447 +228987,1144.9350000133861,-0.05352648418446213 +228988,1144.9400000133862,-0.05352631237240716 +228989,1144.9450000133863,-0.053526140529267255 +228990,1144.9500000133864,-0.05352596865502986 +228991,1144.9550000133866,-0.05352579674968244 +228992,1144.9600000133867,-0.053525624813212436 +228993,1144.9650000133868,-0.053525452845607266 +228994,1144.9700000133869,-0.05352528084685437 +228995,1144.975000013387,-0.05352510881694118 +228996,1144.980000013387,-0.053524936755855096 +228997,1144.9850000133872,-0.053524764663583524 +228998,1144.9900000133873,-0.05352459254011387 +228999,1144.9950000133874,-0.05352442038543353 +229000,1145.0000000133875,-0.05352424819952988 +229001,1145.0050000133876,-0.0535240759823903 +229002,1145.0100000133878,-0.05352390373400216 +229003,1145.0150000133879,-0.05352373145435283 +229004,1145.020000013388,-0.053523559143429655 +229005,1145.025000013388,-0.053523386801219985 +229006,1145.0300000133882,-0.053523214427711185 +229007,1145.0350000133883,-0.053523042022890564 +229008,1145.0400000133884,-0.05352286958674547 +229009,1145.0450000133885,-0.05352269711926321 +229010,1145.0500000133886,-0.0535225246204311 +229011,1145.0550000133887,-0.05352235209023645 +229012,1145.0600000133888,-0.05352217952866656 +229013,1145.065000013389,-0.053522006935708716 +229014,1145.070000013389,-0.05352183431135022 +229015,1145.0750000133892,-0.053521661655578326 +229016,1145.0800000133893,-0.053521488968380326 +229017,1145.0850000133894,-0.05352131624974347 +229018,1145.0900000133895,-0.05352114349965501 +229019,1145.0950000133896,-0.053520970718102204 +229020,1145.1000000133897,-0.053520797905072304 +229021,1145.1050000133898,-0.05352062506055252 +229022,1145.11000001339,-0.05352045218453009 +229023,1145.11500001339,-0.053520279276992246 +229024,1145.1200000133902,-0.05352010633792618 +229025,1145.1250000133903,-0.05351993336731911 +229026,1145.1300000133904,-0.05351976036515824 +229027,1145.1350000133905,-0.053519587331430744 +229028,1145.1400000133906,-0.05351941426612382 +229029,1145.1450000133907,-0.05351924116922463 +229030,1145.1500000133908,-0.053519068040720354 +229031,1145.155000013391,-0.05351889488059817 +229032,1145.160000013391,-0.05351872168884521 +229033,1145.1650000133911,-0.053518548465448616 +229034,1145.1700000133912,-0.05351837521039555 +229035,1145.1750000133914,-0.05351820192367312 +229036,1145.1800000133915,-0.05351802860526847 +229037,1145.1850000133916,-0.053517855255168716 +229038,1145.1900000133917,-0.05351768187336096 +229039,1145.1950000133918,-0.053517508459832316 +229040,1145.200000013392,-0.053517335014569865 +229041,1145.205000013392,-0.05351716153756071 +229042,1145.2100000133921,-0.05351698802879193 +229043,1145.2150000133922,-0.05351681448825059 +229044,1145.2200000133923,-0.05351664091592377 +229045,1145.2250000133924,-0.05351646731179852 +229046,1145.2300000133926,-0.0535162936758619 +229047,1145.2350000133927,-0.05351612000810096 +229048,1145.2400000133928,-0.053515946308502704 +229049,1145.2450000133929,-0.05351577257705419 +229050,1145.250000013393,-0.053515598813742446 +229051,1145.255000013393,-0.05351542501855447 +229052,1145.2600000133932,-0.05351525119147728 +229053,1145.2650000133933,-0.05351507733249787 +229054,1145.2700000133934,-0.05351490344160322 +229055,1145.2750000133935,-0.05351472951878034 +229056,1145.2800000133936,-0.05351455556401621 +229057,1145.2850000133938,-0.05351438157729777 +229058,1145.2900000133939,-0.05351420755861201 +229059,1145.295000013394,-0.05351403350794588 +229060,1145.300000013394,-0.05351385942528633 +229061,1145.3050000133942,-0.05351368531062029 +229062,1145.3100000133943,-0.05351351116393471 +229063,1145.3150000133944,-0.0535133369852165 +229064,1145.3200000133945,-0.05351316277445258 +229065,1145.3250000133946,-0.053512988531629876 +229066,1145.3300000133947,-0.05351281425673527 +229067,1145.3350000133948,-0.053512639949755685 +229068,1145.340000013395,-0.05351246561067798 +229069,1145.345000013395,-0.05351229123948906 +229070,1145.3500000133952,-0.05351211683617578 +229071,1145.3550000133953,-0.05351194240072502 +229072,1145.3600000133954,-0.053511767933123636 +229073,1145.3650000133955,-0.05351159343335847 +229074,1145.3700000133956,-0.05351141890141638 +229075,1145.3750000133957,-0.0535112443372842 +229076,1145.3800000133958,-0.05351106974094874 +229077,1145.385000013396,-0.05351089511239684 +229078,1145.390000013396,-0.05351072045161531 +229079,1145.3950000133962,-0.053510545758590954 +229080,1145.4000000133963,-0.053510371033310564 +229081,1145.4050000133964,-0.05351019627576093 +229082,1145.4100000133965,-0.05351002148592886 +229083,1145.4150000133966,-0.0535098466638011 +229084,1145.4200000133967,-0.05350967180936444 +229085,1145.4250000133968,-0.05350949692260562 +229086,1145.430000013397,-0.05350932200351142 +229087,1145.435000013397,-0.05350914705206856 +229088,1145.4400000133971,-0.05350897206826377 +229089,1145.4450000133972,-0.05350879705208382 +229090,1145.4500000133974,-0.0535086220035154 +229091,1145.4550000133975,-0.053508446922545236 +229092,1145.4600000133976,-0.053508271809160034 +229093,1145.4650000133977,-0.053508096663346494 +229094,1145.4700000133978,-0.0535079214850913 +229095,1145.475000013398,-0.05350774627438115 +229096,1145.480000013398,-0.05350757103120272 +229097,1145.4850000133981,-0.05350739575554266 +229098,1145.4900000133982,-0.053507220447387656 +229099,1145.4950000133983,-0.05350704510672435 +229100,1145.5000000133984,-0.05350686973353939 +229101,1145.5050000133986,-0.05350669432781942 +229102,1145.5100000133987,-0.05350651888955106 +229103,1145.5150000133988,-0.053506343418720945 +229104,1145.5200000133989,-0.053506167915315685 +229105,1145.525000013399,-0.05350599237932188 +229106,1145.530000013399,-0.053505816810726144 +229107,1145.5350000133992,-0.053505641209515065 +229108,1145.5400000133993,-0.05350546557567522 +229109,1145.5450000133994,-0.0535052899091932 +229110,1145.5500000133995,-0.053505114210055556 +229111,1145.5550000133996,-0.05350493847824886 +229112,1145.5600000133998,-0.053504762713759674 +229113,1145.5650000133999,-0.05350458691657454 +229114,1145.5700000134,-0.053504411086679984 +229115,1145.5750000134,-0.053504235224062544 +229116,1145.5800000134002,-0.05350405932870875 +229117,1145.5850000134003,-0.05350388340060511 +229118,1145.5900000134004,-0.053503707439738125 +229119,1145.5950000134005,-0.053503531446094314 +229120,1145.6000000134006,-0.053503355419660156 +229121,1145.6050000134007,-0.05350317936042214 +229122,1145.6100000134008,-0.053503003268366725 +229123,1145.615000013401,-0.053502827143480404 +229124,1145.620000013401,-0.05350265098574963 +229125,1145.6250000134012,-0.05350247479516085 +229126,1145.6300000134013,-0.05350229857170051 +229127,1145.6350000134014,-0.053502122315355054 +229128,1145.6400000134015,-0.0535019460261109 +229129,1145.6450000134016,-0.05350176970395448 +229130,1145.6500000134017,-0.05350159334887221 +229131,1145.6550000134018,-0.05350141696085048 +229132,1145.660000013402,-0.05350124053987571 +229133,1145.665000013402,-0.053501064085934275 +229134,1145.6700000134022,-0.05350088759901256 +229135,1145.6750000134023,-0.053500711079096944 +229136,1145.6800000134024,-0.053500534526173794 +229137,1145.6850000134025,-0.05350035794022946 +229138,1145.6900000134026,-0.05350018132125031 +229139,1145.6950000134027,-0.053500004669222674 +229140,1145.7000000134028,-0.05349982798413289 +229141,1145.705000013403,-0.053499651265967285 +229142,1145.710000013403,-0.053499474514712174 +229143,1145.7150000134031,-0.053499297730353876 +229144,1145.7200000134033,-0.053499120912878693 +229145,1145.7250000134034,-0.053498944062272916 +229146,1145.7300000134035,-0.05349876717852284 +229147,1145.7350000134036,-0.053498590261614735 +229148,1145.7400000134037,-0.05349841331153489 +229149,1145.7450000134038,-0.053498236328269555 +229150,1145.750000013404,-0.05349805931180498 +229151,1145.755000013404,-0.053497882262127434 +229152,1145.7600000134041,-0.053497705179223136 +229153,1145.7650000134042,-0.05349752806307834 +229154,1145.7700000134043,-0.05349735091367924 +229155,1145.7750000134045,-0.053497173731012086 +229156,1145.7800000134046,-0.05349699651506306 +229157,1145.7850000134047,-0.053496819265818375 +229158,1145.7900000134048,-0.053496641983264225 +229159,1145.795000013405,-0.05349646466738679 +229160,1145.800000013405,-0.05349628731817225 +229161,1145.805000013405,-0.053496109935606766 +229162,1145.8100000134052,-0.0534959325196765 +229163,1145.8150000134053,-0.05349575507036761 +229164,1145.8200000134054,-0.05349557758766623 +229165,1145.8250000134055,-0.05349540007155852 +229166,1145.8300000134057,-0.05349522252203059 +229167,1145.8350000134058,-0.05349504493906855 +229168,1145.8400000134059,-0.05349486732265852 +229169,1145.845000013406,-0.05349468967278662 +229170,1145.850000013406,-0.053494511989438935 +229171,1145.8550000134062,-0.05349433427260155 +229172,1145.8600000134063,-0.05349415652226054 +229173,1145.8650000134064,-0.053493978738401976 +229174,1145.8700000134065,-0.05349380092101194 +229175,1145.8750000134066,-0.05349362307007647 +229176,1145.8800000134067,-0.05349344518558162 +229177,1145.8850000134069,-0.05349326726751343 +229178,1145.890000013407,-0.05349308931585793 +229179,1145.895000013407,-0.05349291133060115 +229180,1145.9000000134072,-0.05349273331172908 +229181,1145.9050000134073,-0.05349255525922776 +229182,1145.9100000134074,-0.05349237717308317 +229183,1145.9150000134075,-0.0534921990532813 +229184,1145.9200000134076,-0.05349202089980814 +229185,1145.9250000134077,-0.05349184271264966 +229186,1145.9300000134078,-0.053491664491791824 +229187,1145.935000013408,-0.0534914862372206 +229188,1145.940000013408,-0.05349130794892193 +229189,1145.9450000134082,-0.053491129626881746 +229190,1145.9500000134083,-0.05349095127108599 +229191,1145.9550000134084,-0.0534907728815206 +229192,1145.9600000134085,-0.053490594458171475 +229193,1145.9650000134086,-0.05349041600102453 +229194,1145.9700000134087,-0.053490237510065666 +229195,1145.9750000134088,-0.05349005898528078 +229196,1145.980000013409,-0.05348988042665576 +229197,1145.985000013409,-0.05348970183417646 +229198,1145.9900000134091,-0.05348952320782877 +229199,1145.9950000134093,-0.05348934454759854 +229200,1146.0000000134094,-0.05348916585347162 +229201,1146.0050000134095,-0.05348898712543385 +229202,1146.0100000134096,-0.05348880836347108 +229203,1146.0150000134097,-0.05348862956756912 +229204,1146.0200000134098,-0.05348845073771379 +229205,1146.02500001341,-0.05348827187389091 +229206,1146.03000001341,-0.05348809297608628 +229207,1146.0350000134101,-0.05348791404428569 +229208,1146.0400000134102,-0.05348773507847493 +229209,1146.0450000134103,-0.05348755607863976 +229210,1146.0500000134105,-0.053487377044765964 +229211,1146.0550000134106,-0.0534871979768393 +229212,1146.0600000134107,-0.05348701887484552 +229213,1146.0650000134108,-0.05348683973877036 +229214,1146.070000013411,-0.05348666056859956 +229215,1146.075000013411,-0.05348648136431885 +229216,1146.080000013411,-0.05348630212591394 +229217,1146.0850000134112,-0.053486122853370545 +229218,1146.0900000134113,-0.05348594354667438 +229219,1146.0950000134114,-0.05348576420581112 +229220,1146.1000000134115,-0.05348558483076646 +229221,1146.1050000134117,-0.05348540542152607 +229222,1146.1100000134118,-0.05348522597807562 +229223,1146.1150000134119,-0.05348504650040077 +229224,1146.120000013412,-0.05348486698848717 +229225,1146.125000013412,-0.05348468744232047 +229226,1146.1300000134122,-0.0534845078618863 +229227,1146.1350000134123,-0.05348432824717028 +229228,1146.1400000134124,-0.053484148598158046 +229229,1146.1450000134125,-0.05348396891483519 +229230,1146.1500000134126,-0.05348378919718732 +229231,1146.1550000134127,-0.05348360944520003 +229232,1146.1600000134129,-0.05348342965885891 +229233,1146.165000013413,-0.05348324983814952 +229234,1146.170000013413,-0.053483069983057435 +229235,1146.1750000134132,-0.053482890093568214 +229236,1146.1800000134133,-0.053482710169667415 +229237,1146.1850000134134,-0.05348253021134056 +229238,1146.1900000134135,-0.053482350218573206 +229239,1146.1950000134136,-0.05348217019135085 +229240,1146.2000000134137,-0.05348199012965903 +229241,1146.2050000134138,-0.05348181003348324 +229242,1146.210000013414,-0.053481629902809004 +229243,1146.215000013414,-0.05348144973762179 +229244,1146.2200000134142,-0.053481269537907085 +229245,1146.2250000134143,-0.053481089303650364 +229246,1146.2300000134144,-0.0534809090348371 +229247,1146.2350000134145,-0.053480728731452744 +229248,1146.2400000134146,-0.053480548393482735 +229249,1146.2450000134147,-0.05348036802091252 +229250,1146.2500000134148,-0.05348018761372754 +229251,1146.255000013415,-0.0534800071719132 +229252,1146.260000013415,-0.05347982669545493 +229253,1146.2650000134151,-0.05347964618433813 +229254,1146.2700000134153,-0.053479465638548176 +229255,1146.2750000134154,-0.05347928505807049 +229256,1146.2800000134155,-0.05347910444289043 +229257,1146.2850000134156,-0.053478923792993384 +229258,1146.2900000134157,-0.053478743108364694 +229259,1146.2950000134158,-0.05347856238898973 +229260,1146.300000013416,-0.053478381634853835 +229261,1146.305000013416,-0.05347820084594233 +229262,1146.3100000134161,-0.05347802002224056 +229263,1146.3150000134162,-0.05347783916373383 +229264,1146.3200000134163,-0.05347765827040746 +229265,1146.3250000134165,-0.05347747734224676 +229266,1146.3300000134166,-0.053477296379237 +229267,1146.3350000134167,-0.05347711538136349 +229268,1146.3400000134168,-0.0534769343486115 +229269,1146.345000013417,-0.05347675328096628 +229270,1146.350000013417,-0.05347657217841311 +229271,1146.355000013417,-0.05347639104093722 +229272,1146.3600000134172,-0.05347620986852387 +229273,1146.3650000134173,-0.05347602866115828 +229274,1146.3700000134174,-0.05347584741882568 +229275,1146.3750000134175,-0.05347566614151129 +229276,1146.3800000134177,-0.053475484829200295 +229277,1146.3850000134178,-0.053475303481877914 +229278,1146.3900000134179,-0.05347512209952933 +229279,1146.395000013418,-0.05347494068213972 +229280,1146.400000013418,-0.05347475922969426 +229281,1146.4050000134182,-0.0534745777421781 +229282,1146.4100000134183,-0.053474396219576406 +229283,1146.4150000134184,-0.05347421466187433 +229284,1146.4200000134185,-0.053474033069056987 +229285,1146.4250000134186,-0.05347385144110952 +229286,1146.4300000134187,-0.05347366977801704 +229287,1146.4350000134189,-0.05347348807976467 +229288,1146.440000013419,-0.0534733063463375 +229289,1146.445000013419,-0.053473124577720625 +229290,1146.4500000134192,-0.053472942773899135 +229291,1146.4550000134193,-0.05347276093485809 +229292,1146.4600000134194,-0.05347257906058256 +229293,1146.4650000134195,-0.05347239715105761 +229294,1146.4700000134196,-0.05347221520626828 +229295,1146.4750000134197,-0.05347203322619962 +229296,1146.4800000134198,-0.05347185121083665 +229297,1146.48500001342,-0.053471669160164395 +229298,1146.49000001342,-0.05347148707416787 +229299,1146.4950000134202,-0.053471304952832074 +229300,1146.5000000134203,-0.053471122796142 +229301,1146.5050000134204,-0.05347094060408265 +229302,1146.5100000134205,-0.05347075837663897 +229303,1146.5150000134206,-0.05347057611379596 +229304,1146.5200000134207,-0.05347039381553856 +229305,1146.5250000134208,-0.05347021148185172 +229306,1146.530000013421,-0.0534700291127204 +229307,1146.535000013421,-0.05346984670812951 +229308,1146.5400000134211,-0.053469664268063995 +229309,1146.5450000134213,-0.05346948179250876 +229310,1146.5500000134214,-0.053469299281448716 +229311,1146.5550000134215,-0.053469116734868746 +229312,1146.5600000134216,-0.05346893415275375 +229313,1146.5650000134217,-0.0534687515350886 +229314,1146.5700000134218,-0.053468568881858164 +229315,1146.575000013422,-0.05346838619304731 +229316,1146.580000013422,-0.05346820346864088 +229317,1146.5850000134221,-0.05346802070862373 +229318,1146.5900000134222,-0.05346783791298069 +229319,1146.5950000134224,-0.053467655081696576 +229320,1146.6000000134225,-0.053467472214756215 +229321,1146.6050000134226,-0.0534672893121444 +229322,1146.6100000134227,-0.053467106373845955 +229323,1146.6150000134228,-0.05346692339984564 +229324,1146.620000013423,-0.053466740390128255 +229325,1146.625000013423,-0.05346655734467855 +229326,1146.6300000134231,-0.0534663742634813 +229327,1146.6350000134232,-0.05346619114652126 +229328,1146.6400000134233,-0.05346600799378315 +229329,1146.6450000134234,-0.05346582480525174 +229330,1146.6500000134236,-0.05346564158091174 +229331,1146.6550000134237,-0.05346545832074786 +229332,1146.6600000134238,-0.05346527502474482 +229333,1146.6650000134239,-0.05346509169288729 +229334,1146.670000013424,-0.05346490832515998 +229335,1146.675000013424,-0.05346472492154757 +229336,1146.6800000134242,-0.053464541482034736 +229337,1146.6850000134243,-0.053464358006606136 +229338,1146.6900000134244,-0.05346417449524641 +229339,1146.6950000134245,-0.0534639909479402 +229340,1146.7000000134246,-0.05346380736467216 +229341,1146.7050000134248,-0.0534636237454269 +229342,1146.7100000134249,-0.05346344009018904 +229343,1146.715000013425,-0.05346325639894319 +229344,1146.720000013425,-0.053463072671673946 +229345,1146.7250000134252,-0.05346288890836588 +229346,1146.7300000134253,-0.0534627051090036 +229347,1146.7350000134254,-0.053462521273571637 +229348,1146.7400000134255,-0.05346233740205459 +229349,1146.7450000134256,-0.05346215349443699 +229350,1146.7500000134257,-0.05346196955070339 +229351,1146.7550000134258,-0.053461785570838305 +229352,1146.760000013426,-0.05346160155482626 +229353,1146.765000013426,-0.053461417502651785 +229354,1146.7700000134262,-0.05346123341429939 +229355,1146.7750000134263,-0.05346104928975355 +229356,1146.7800000134264,-0.053460865128998766 +229357,1146.7850000134265,-0.0534606809320195 +229358,1146.7900000134266,-0.05346049669880023 +229359,1146.7950000134267,-0.05346031242932541 +229360,1146.8000000134268,-0.05346012812357951 +229361,1146.805000013427,-0.05345994378154694 +229362,1146.810000013427,-0.05345975940321215 +229363,1146.8150000134272,-0.053459574988559556 +229364,1146.8200000134273,-0.05345939053757356 +229365,1146.8250000134274,-0.05345920605023858 +229366,1146.8300000134275,-0.053459021526539 +229367,1146.8350000134276,-0.05345883696645922 +229368,1146.8400000134277,-0.05345865236998358 +229369,1146.8450000134278,-0.053458467737096484 +229370,1146.850000013428,-0.05345828306778226 +229371,1146.855000013428,-0.053458098362025266 +229372,1146.8600000134281,-0.053457913619809845 +229373,1146.8650000134282,-0.053457728841120315 +229374,1146.8700000134284,-0.05345754402594099 +229375,1146.8750000134285,-0.053457359174256196 +229376,1146.8800000134286,-0.05345717428605022 +229377,1146.8850000134287,-0.05345698936130735 +229378,1146.8900000134288,-0.053456804400011874 +229379,1146.895000013429,-0.05345661940214806 +229380,1146.900000013429,-0.05345643436770019 +229381,1146.9050000134291,-0.05345624929665247 +229382,1146.9100000134292,-0.05345606418898919 +229383,1146.9150000134293,-0.05345587904469456 +229384,1146.9200000134294,-0.0534556938637528 +229385,1146.9250000134296,-0.053455508646148134 +229386,1146.9300000134297,-0.05345532339186477 +229387,1146.9350000134298,-0.0534551381008869 +229388,1146.9400000134299,-0.0534549527731987 +229389,1146.94500001343,-0.05345476740878437 +229390,1146.95000001343,-0.05345458200762805 +229391,1146.9550000134302,-0.05345439656971391 +229392,1146.9600000134303,-0.0534542110950261 +229393,1146.9650000134304,-0.05345402558354876 +229394,1146.9700000134305,-0.053453840035266 +229395,1146.9750000134306,-0.053453654450161966 +229396,1146.9800000134308,-0.05345346882822075 +229397,1146.9850000134309,-0.053453283169426456 +229398,1146.990000013431,-0.05345309747376318 +229399,1146.995000013431,-0.05345291174121499 +229400,1147.0000000134312,-0.05345272597176597 +229401,1147.0050000134313,-0.05345254016540018 +229402,1147.0100000134314,-0.05345235432210167 +229403,1147.0150000134315,-0.053452168441854485 +229404,1147.0200000134316,-0.05345198252464266 +229405,1147.0250000134317,-0.05345179657045022 +229406,1147.0300000134318,-0.053451610579261156 +229407,1147.035000013432,-0.0534514245510595 +229408,1147.040000013432,-0.053451238485829236 +229409,1147.0450000134322,-0.053451052383554354 +229410,1147.0500000134323,-0.05345086624421882 +229411,1147.0550000134324,-0.0534506800678066 +229412,1147.0600000134325,-0.05345049385430166 +229413,1147.0650000134326,-0.053450307603687935 +229414,1147.0700000134327,-0.05345012131594936 +229415,1147.0750000134328,-0.05344993499106987 +229416,1147.080000013433,-0.05344974862903338 +229417,1147.085000013433,-0.0534495622298238 +229418,1147.0900000134332,-0.05344937579342502 +229419,1147.0950000134333,-0.053449189319820935 +229420,1147.1000000134334,-0.053449002808995415 +229421,1147.1050000134335,-0.053448816260932334 +229422,1147.1100000134336,-0.053448629675615554 +229423,1147.1150000134337,-0.05344844305302891 +229424,1147.1200000134338,-0.05344825639315626 +229425,1147.125000013434,-0.05344806969598142 +229426,1147.130000013434,-0.05344788296148822 +229427,1147.1350000134341,-0.053447696189660464 +229428,1147.1400000134342,-0.05344750938048195 +229429,1147.1450000134344,-0.05344732253393647 +229430,1147.1500000134345,-0.05344713565000781 +229431,1147.1550000134346,-0.05344694872867973 +229432,1147.1600000134347,-0.05344676176993599 +229433,1147.1650000134348,-0.053446574773760344 +229434,1147.170000013435,-0.05344638774013655 +229435,1147.175000013435,-0.05344620066904831 +229436,1147.1800000134351,-0.05344601356047936 +229437,1147.1850000134352,-0.0534458264144134 +229438,1147.1900000134353,-0.05344563923083416 +229439,1147.1950000134354,-0.053445452009725315 +229440,1147.2000000134356,-0.05344526475107054 +229441,1147.2050000134357,-0.0534450774548535 +229442,1147.2100000134358,-0.05344489012105788 +229443,1147.2150000134359,-0.05344470274966733 +229444,1147.220000013436,-0.05344451534066548 +229445,1147.225000013436,-0.05344432789403595 +229446,1147.2300000134362,-0.0534441404097624 +229447,1147.2350000134363,-0.053443952887828404 +229448,1147.2400000134364,-0.05344376532821758 +229449,1147.2450000134365,-0.05344357773091353 +229450,1147.2500000134366,-0.05344339009589983 +229451,1147.2550000134368,-0.053443202423160044 +229452,1147.2600000134369,-0.053443014712677754 +229453,1147.265000013437,-0.053442826964436495 +229454,1147.270000013437,-0.053442639178419814 +229455,1147.2750000134372,-0.05344245135461124 +229456,1147.2800000134373,-0.0534422634929943 +229457,1147.2850000134374,-0.053442075593552504 +229458,1147.2900000134375,-0.05344188765626936 +229459,1147.2950000134376,-0.05344169968112836 +229460,1147.3000000134377,-0.053441511668112965 +229461,1147.3050000134378,-0.05344132361720668 +229462,1147.310000013438,-0.05344113552839295 +229463,1147.315000013438,-0.053440947401655226 +229464,1147.3200000134382,-0.05344075923697694 +229465,1147.3250000134383,-0.053440571034341564 +229466,1147.3300000134384,-0.053440382793732484 +229467,1147.3350000134385,-0.05344019451513311 +229468,1147.3400000134386,-0.053440006198526874 +229469,1147.3450000134387,-0.05343981784389715 +229470,1147.3500000134388,-0.05343962945122731 +229471,1147.355000013439,-0.05343944102050072 +229472,1147.360000013439,-0.053439252551700775 +229473,1147.3650000134392,-0.05343906404481081 +229474,1147.3700000134393,-0.053438875499814145 +229475,1147.3750000134394,-0.053438686916694136 +229476,1147.3800000134395,-0.0534384982954341 +229477,1147.3850000134396,-0.05343830963601734 +229478,1147.3900000134397,-0.05343812093842716 +229479,1147.3950000134398,-0.05343793220264685 +229480,1147.40000001344,-0.05343774342865969 +229481,1147.40500001344,-0.05343755461644895 +229482,1147.4100000134401,-0.053437365765997884 +229483,1147.4150000134402,-0.053437176877289744 +229484,1147.4200000134404,-0.05343698795030778 +229485,1147.4250000134405,-0.053436798985035214 +229486,1147.4300000134406,-0.053436609981455246 +229487,1147.4350000134407,-0.053436420939551116 +229488,1147.4400000134408,-0.05343623185930601 +229489,1147.445000013441,-0.0534360427407031 +229490,1147.450000013441,-0.05343585358372559 +229491,1147.4550000134411,-0.05343566438835663 +229492,1147.4600000134412,-0.053435475154579366 +229493,1147.4650000134413,-0.05343528588237696 +229494,1147.4700000134414,-0.05343509657173256 +229495,1147.4750000134416,-0.05343490722262928 +229496,1147.4800000134417,-0.05343471783505022 +229497,1147.4850000134418,-0.05343452840897851 +229498,1147.4900000134419,-0.053434338944397225 +229499,1147.495000013442,-0.053434149441289464 +229500,1147.500000013442,-0.0534339598996383 +229501,1147.5050000134422,-0.05343377031942679 +229502,1147.5100000134423,-0.05343358070063799 +229503,1147.5150000134424,-0.053433391043254945 +229504,1147.5200000134425,-0.05343320134726069 +229505,1147.5250000134427,-0.05343301161263824 +229506,1147.5300000134428,-0.05343282183937062 +229507,1147.5350000134429,-0.05343263202744082 +229508,1147.540000013443,-0.05343244217683183 +229509,1147.545000013443,-0.05343225228752663 +229510,1147.5500000134432,-0.053432062359508196 +229511,1147.5550000134433,-0.05343187239275949 +229512,1147.5600000134434,-0.05343168238726345 +229513,1147.5650000134435,-0.05343149234300303 +229514,1147.5700000134436,-0.05343130225996114 +229515,1147.5750000134437,-0.05343111213812071 +229516,1147.5800000134439,-0.05343092197746465 +229517,1147.585000013444,-0.05343073177797585 +229518,1147.590000013444,-0.05343054153963721 +229519,1147.5950000134442,-0.053430351262431584 +229520,1147.6000000134443,-0.053430160946341856 +229521,1147.6050000134444,-0.053429970591350864 +229522,1147.6100000134445,-0.05342978019744146 +229523,1147.6150000134446,-0.05342958976459649 +229524,1147.6200000134447,-0.05342939929279875 +229525,1147.6250000134448,-0.05342920878203107 +229526,1147.630000013445,-0.05342901823227625 +229527,1147.635000013445,-0.053428827643517085 +229528,1147.6400000134452,-0.05342863701573636 +229529,1147.6450000134453,-0.05342844634891684 +229530,1147.6500000134454,-0.05342825564304127 +229531,1147.6550000134455,-0.05342806489809242 +229532,1147.6600000134456,-0.05342787411405301 +229533,1147.6650000134457,-0.05342768329090579 +229534,1147.6700000134458,-0.053427492428633455 +229535,1147.675000013446,-0.05342730152721873 +229536,1147.680000013446,-0.0534271105866443 +229537,1147.6850000134461,-0.05342691960689285 +229538,1147.6900000134463,-0.05342672858794705 +229539,1147.6950000134464,-0.05342653752978958 +229540,1147.7000000134465,-0.05342634643240308 +229541,1147.7050000134466,-0.0534261552957702 +229542,1147.7100000134467,-0.05342596411987357 +229543,1147.7150000134468,-0.05342577290469581 +229544,1147.720000013447,-0.05342558165021952 +229545,1147.725000013447,-0.0534253903564273 +229546,1147.7300000134471,-0.053425199023301756 +229547,1147.7350000134472,-0.053425007650825466 +229548,1147.7400000134473,-0.05342481623898098 +229549,1147.7450000134475,-0.05342462478775086 +229550,1147.7500000134476,-0.05342443329711766 +229551,1147.7550000134477,-0.0534242417670639 +229552,1147.7600000134478,-0.05342405019757213 +229553,1147.765000013448,-0.05342385858862484 +229554,1147.770000013448,-0.05342366694020454 +229555,1147.775000013448,-0.05342347525229371 +229556,1147.7800000134482,-0.05342328352487485 +229557,1147.7850000134483,-0.053423091757930426 +229558,1147.7900000134484,-0.053422899951442886 +229559,1147.7950000134485,-0.05342270810539469 +229560,1147.8000000134487,-0.05342251621976827 +229561,1147.8050000134488,-0.05342232429454606 +229562,1147.8100000134489,-0.053422132329710464 +229563,1147.815000013449,-0.053421940325243895 +229564,1147.820000013449,-0.05342174828112874 +229565,1147.8250000134492,-0.0534215561973474 +229566,1147.8300000134493,-0.05342136407388223 +229567,1147.8350000134494,-0.053421171910715604 +229568,1147.8400000134495,-0.053420979707829844 +229569,1147.8450000134496,-0.05342078746520733 +229570,1147.8500000134497,-0.053420595182830356 +229571,1147.8550000134499,-0.053420402860681254 +229572,1147.86000001345,-0.05342021049874232 +229573,1147.86500001345,-0.053420018096995876 +229574,1147.8700000134502,-0.05341982565542419 +229575,1147.8750000134503,-0.05341963317400954 +229576,1147.8800000134504,-0.05341944065273417 +229577,1147.8850000134505,-0.05341924809158034 +229578,1147.8900000134506,-0.05341905549053031 +229579,1147.8950000134507,-0.0534188628495663 +229580,1147.9000000134508,-0.053418670168670516 +229581,1147.905000013451,-0.053418477447825186 +229582,1147.910000013451,-0.05341828468701249 +229583,1147.9150000134512,-0.05341809188621461 +229584,1147.9200000134513,-0.05341789904541373 +229585,1147.9250000134514,-0.05341770616459202 +229586,1147.9300000134515,-0.05341751324373162 +229587,1147.9350000134516,-0.05341732028281467 +229588,1147.9400000134517,-0.053417127281823296 +229589,1147.9450000134518,-0.053416934240739636 +229590,1147.950000013452,-0.05341674115954578 +229591,1147.955000013452,-0.053416548038223835 +229592,1147.9600000134521,-0.05341635487675589 +229593,1147.9650000134523,-0.053416161675124 +229594,1147.9700000134524,-0.05341596843331026 +229595,1147.9750000134525,-0.05341577515129669 +229596,1147.9800000134526,-0.05341558182906535 +229597,1147.9850000134527,-0.05341538846659826 +229598,1147.9900000134528,-0.05341519506387744 +229599,1147.995000013453,-0.053415001620884896 +229600,1148.000000013453,-0.05341480813760262 +229601,1148.0050000134531,-0.05341461461401261 +229602,1148.0100000134532,-0.05341442105009683 +229603,1148.0150000134533,-0.05341422744583726 +229604,1148.0200000134535,-0.05341403380121582 +229605,1148.0250000134536,-0.05341384011621447 +229606,1148.0300000134537,-0.053413646390815146 +229607,1148.0350000134538,-0.053413452624999753 +229608,1148.040000013454,-0.0534132588187502 +229609,1148.045000013454,-0.05341306497204836 +229610,1148.050000013454,-0.05341287108487615 +229611,1148.0550000134542,-0.05341267715721543 +229612,1148.0600000134543,-0.053412483189048045 +229613,1148.0650000134544,-0.05341228918035587 +229614,1148.0700000134545,-0.05341209513112074 +229615,1148.0750000134547,-0.05341190104132447 +229616,1148.0800000134548,-0.05341170691094888 +229617,1148.0850000134549,-0.05341151273997576 +229618,1148.090000013455,-0.05341131852838693 +229619,1148.095000013455,-0.05341112427616416 +229620,1148.1000000134552,-0.05341092998328921 +229621,1148.1050000134553,-0.05341073564974384 +229622,1148.1100000134554,-0.053410541275509815 +229623,1148.1150000134555,-0.05341034686056885 +229624,1148.1200000134556,-0.05341015240490269 +229625,1148.1250000134557,-0.053409957908493025 +229626,1148.1300000134559,-0.05340976337132158 +229627,1148.135000013456,-0.05340956879337003 +229628,1148.140000013456,-0.05340937417462006 +229629,1148.1450000134562,-0.05340917951505333 +229630,1148.1500000134563,-0.05340898481465149 +229631,1148.1550000134564,-0.0534087900733962 +229632,1148.1600000134565,-0.053408595291269095 +229633,1148.1650000134566,-0.05340840046825177 +229634,1148.1700000134567,-0.05340820560432586 +229635,1148.1750000134568,-0.05340801069947296 +229636,1148.180000013457,-0.05340781575367464 +229637,1148.185000013457,-0.05340762076691249 +229638,1148.1900000134572,-0.05340742573916806 +229639,1148.1950000134573,-0.05340723067042292 +229640,1148.2000000134574,-0.0534070355606586 +229641,1148.2050000134575,-0.05340684040985663 +229642,1148.2100000134576,-0.05340664521799853 +229643,1148.2150000134577,-0.05340644998506581 +229644,1148.2200000134578,-0.053406254711039935 +229645,1148.225000013458,-0.05340605939590242 +229646,1148.230000013458,-0.05340586403963472 +229647,1148.2350000134581,-0.0534056686422183 +229648,1148.2400000134583,-0.05340547320363462 +229649,1148.2450000134584,-0.05340527772386509 +229650,1148.2500000134585,-0.05340508220289114 +229651,1148.2550000134586,-0.05340488664069419 +229652,1148.2600000134587,-0.05340469103725565 +229653,1148.2650000134588,-0.053404495392556886 +229654,1148.270000013459,-0.0534042997065793 +229655,1148.275000013459,-0.05340410397930422 +229656,1148.2800000134591,-0.053403908210713044 +229657,1148.2850000134592,-0.05340371240078709 +229658,1148.2900000134593,-0.05340351654950769 +229659,1148.2950000134595,-0.05340332065685617 +229660,1148.3000000134596,-0.05340312472281383 +229661,1148.3050000134597,-0.05340292874736197 +229662,1148.3100000134598,-0.05340273273048187 +229663,1148.31500001346,-0.05340253667215481 +229664,1148.32000001346,-0.05340234057236204 +229665,1148.32500001346,-0.053402144431084805 +229666,1148.3300000134602,-0.053401948248304354 +229667,1148.3350000134603,-0.053401752024001894 +229668,1148.3400000134604,-0.05340155575815865 +229669,1148.3450000134605,-0.053401359450755824 +229670,1148.3500000134607,-0.05340116310177458 +229671,1148.3550000134608,-0.05340096671119614 +229672,1148.3600000134609,-0.053400770279001634 +229673,1148.365000013461,-0.05340057380517223 +229674,1148.370000013461,-0.05340037728968906 +229675,1148.3750000134612,-0.05340018073253326 +229676,1148.3800000134613,-0.05339998413368595 +229677,1148.3850000134614,-0.053399787493128216 +229678,1148.3900000134615,-0.053399590810841176 +229679,1148.3950000134616,-0.0533993940868059 +229680,1148.4000000134617,-0.053399197321003455 +229681,1148.4050000134619,-0.0533990005134149 +229682,1148.410000013462,-0.053398803664021305 +229683,1148.415000013462,-0.053398606772803676 +229684,1148.4200000134622,-0.05339840983974304 +229685,1148.4250000134623,-0.05339821286482041 +229686,1148.4300000134624,-0.05339801584801678 +229687,1148.4350000134625,-0.053397818789313135 +229688,1148.4400000134626,-0.05339762168869045 +229689,1148.4450000134627,-0.0533974245461297 +229690,1148.4500000134628,-0.053397227361611815 +229691,1148.455000013463,-0.05339703013511775 +229692,1148.460000013463,-0.05339683286662841 +229693,1148.4650000134632,-0.053396635556124734 +229694,1148.4700000134633,-0.05339643820358761 +229695,1148.4750000134634,-0.053396240808997915 +229696,1148.4800000134635,-0.053396043372336534 +229697,1148.4850000134636,-0.05339584589358435 +229698,1148.4900000134637,-0.05339564837272219 +229699,1148.4950000134638,-0.05339545080973092 +229700,1148.500000013464,-0.05339525320459134 +229701,1148.505000013464,-0.0533950555572843 +229702,1148.5100000134642,-0.053394857867790566 +229703,1148.5150000134643,-0.05339466013609096 +229704,1148.5200000134644,-0.05339446236216625 +229705,1148.5250000134645,-0.053394264545997216 +229706,1148.5300000134646,-0.053394066687564606 +229707,1148.5350000134647,-0.05339386878684915 +229708,1148.5400000134648,-0.0533936708438316 +229709,1148.545000013465,-0.053393472858492656 +229710,1148.550000013465,-0.05339327483081304 +229711,1148.5550000134651,-0.05339307676077344 +229712,1148.5600000134652,-0.05339287864835453 +229713,1148.5650000134654,-0.05339268049353699 +229714,1148.5700000134655,-0.05339248229630148 +229715,1148.5750000134656,-0.05339228405662864 +229716,1148.5800000134657,-0.05339208577449911 +229717,1148.5850000134658,-0.0533918874498935 +229718,1148.590000013466,-0.053391689082792425 +229719,1148.595000013466,-0.05339149067317648 +229720,1148.6000000134661,-0.053391292221026246 +229721,1148.6050000134662,-0.053391093726322295 +229722,1148.6100000134663,-0.0533908951890452 +229723,1148.6150000134664,-0.05339069660917548 +229724,1148.6200000134666,-0.05339049798669369 +229725,1148.6250000134667,-0.05339029932158035 +229726,1148.6300000134668,-0.05339010061381596 +229727,1148.6350000134669,-0.05338990186338103 +229728,1148.640000013467,-0.053389703070256034 +229729,1148.645000013467,-0.05338950423442144 +229730,1148.6500000134672,-0.053389305355857716 +229731,1148.6550000134673,-0.053389106434545315 +229732,1148.6600000134674,-0.05338890747046466 +229733,1148.6650000134675,-0.053388708463596175 +229734,1148.6700000134676,-0.053388509413920274 +229735,1148.6750000134678,-0.053388310321417366 +229736,1148.6800000134679,-0.053388111186067816 +229737,1148.685000013468,-0.05338791200785201 +229738,1148.690000013468,-0.0533877127867503 +229739,1148.6950000134682,-0.053387513522743034 +229740,1148.7000000134683,-0.05338731421581055 +229741,1148.7050000134684,-0.05338711486593316 +229742,1148.7100000134685,-0.05338691547309118 +229743,1148.7150000134686,-0.05338671603726492 +229744,1148.7200000134687,-0.05338651655843465 +229745,1148.7250000134688,-0.05338631703658065 +229746,1148.730000013469,-0.05338611747168317 +229747,1148.735000013469,-0.05338591786372245 +229748,1148.7400000134692,-0.053385718212678755 +229749,1148.7450000134693,-0.05338551851853228 +229750,1148.7500000134694,-0.053385318781263236 +229751,1148.7550000134695,-0.053385119000851834 +229752,1148.7600000134696,-0.05338491917727824 +229753,1148.7650000134697,-0.053384719310522626 +229754,1148.7700000134698,-0.053384519400565156 +229755,1148.77500001347,-0.053384319447385975 +229756,1148.78000001347,-0.05338411945096522 +229757,1148.7850000134702,-0.05338391941128299 +229758,1148.7900000134703,-0.053383719328319416 +229759,1148.7950000134704,-0.053383519202054586 +229760,1148.8000000134705,-0.05338331903246858 +229761,1148.8050000134706,-0.05338311881954147 +229762,1148.8100000134707,-0.053382918563253313 +229763,1148.8150000134708,-0.053382718263584136 +229764,1148.820000013471,-0.05338251792051399 +229765,1148.825000013471,-0.05338231753402289 +229766,1148.8300000134711,-0.05338211710409084 +229767,1148.8350000134712,-0.053381916630697815 +229768,1148.8400000134714,-0.053381716113823814 +229769,1148.8450000134715,-0.05338151555344879 +229770,1148.8500000134716,-0.05338131494955272 +229771,1148.8550000134717,-0.05338111430211552 +229772,1148.8600000134718,-0.053380913611117124 +229773,1148.865000013472,-0.053380712876537444 +229774,1148.870000013472,-0.05338051209835639 +229775,1148.8750000134721,-0.053380311276553856 +229776,1148.8800000134722,-0.05338011041110971 +229777,1148.8850000134723,-0.05337990950200382 +229778,1148.8900000134724,-0.05337970854921602 +229779,1148.8950000134726,-0.05337950755272617 +229780,1148.9000000134727,-0.05337930651251408 +229781,1148.9050000134728,-0.05337910542855956 +229782,1148.9100000134729,-0.05337890430084241 +229783,1148.915000013473,-0.053378703129342425 +229784,1148.920000013473,-0.053378501914039374 +229785,1148.9250000134732,-0.05337830065491302 +229786,1148.9300000134733,-0.05337809935194309 +229787,1148.9350000134734,-0.053377898005109344 +229788,1148.9400000134735,-0.053377696614391484 +229789,1148.9450000134736,-0.05337749517976923 +229790,1148.9500000134738,-0.05337729370122226 +229791,1148.9550000134739,-0.05337709217873027 +229792,1148.960000013474,-0.053376890612272916 +229793,1148.965000013474,-0.053376689001829875 +229794,1148.9700000134742,-0.05337648734738076 +229795,1148.9750000134743,-0.053376285648905224 +229796,1148.9800000134744,-0.05337608390638286 +229797,1148.9850000134745,-0.05337588211979329 +229798,1148.9900000134746,-0.053375680289116094 +229799,1148.9950000134747,-0.053375478414330844 +229800,1149.0000000134748,-0.05337527649541711 +229801,1149.005000013475,-0.05337507453235445 +229802,1149.010000013475,-0.05337487252512239 +229803,1149.0150000134752,-0.053374670473700446 +229804,1149.0200000134753,-0.05337446837806815 +229805,1149.0250000134754,-0.053374266238204966 +229806,1149.0300000134755,-0.05337406405409041 +229807,1149.0350000134756,-0.053373861825703944 +229808,1149.0400000134757,-0.05337365955302501 +229809,1149.0450000134758,-0.05337345723603306 +229810,1149.050000013476,-0.053373254874707544 +229811,1149.055000013476,-0.053373052469027855 +229812,1149.0600000134762,-0.0533728500189734 +229813,1149.0650000134763,-0.05337264752452357 +229814,1149.0700000134764,-0.053372444985657755 +229815,1149.0750000134765,-0.053372242402355295 +229816,1149.0800000134766,-0.05337203977459558 +229817,1149.0850000134767,-0.05337183710235792 +229818,1149.0900000134768,-0.05337163438562163 +229819,1149.095000013477,-0.05337143162436604 +229820,1149.100000013477,-0.05337122881857045 +229821,1149.1050000134771,-0.053371025968214116 +229822,1149.1100000134772,-0.05337082307327633 +229823,1149.1150000134774,-0.053370620133736356 +229824,1149.1200000134775,-0.05337041714957341 +229825,1149.1250000134776,-0.05337021412076675 +229826,1149.1300000134777,-0.05337001104729558 +229827,1149.1350000134778,-0.053369807929139104 +229828,1149.140000013478,-0.05336960476627651 +229829,1149.145000013478,-0.053369401558686975 +229830,1149.1500000134781,-0.05336919830634966 +229831,1149.1550000134782,-0.05336899500924372 +229832,1149.1600000134783,-0.05336879166734829 +229833,1149.1650000134784,-0.05336858828064248 +229834,1149.1700000134786,-0.05336838484910542 +229835,1149.1750000134787,-0.05336818137271619 +229836,1149.1800000134788,-0.05336797785145388 +229837,1149.1850000134789,-0.05336777428529753 +229838,1149.190000013479,-0.05336757067422623 +229839,1149.195000013479,-0.053367367018219 +229840,1149.2000000134792,-0.05336716331725488 +229841,1149.2050000134793,-0.05336695957131288 +229842,1149.2100000134794,-0.05336675578037199 +229843,1149.2150000134795,-0.0533665519444112 +229844,1149.2200000134796,-0.05336634806340947 +229845,1149.2250000134798,-0.053366144137345785 +229846,1149.2300000134799,-0.05336594016619908 +229847,1149.23500001348,-0.053365736149948294 +229848,1149.24000001348,-0.05336553208857232 +229849,1149.2450000134802,-0.05336532798205008 +229850,1149.2500000134803,-0.05336512383036046 +229851,1149.2550000134804,-0.05336491963348233 +229852,1149.2600000134805,-0.05336471539139457 +229853,1149.2650000134806,-0.053364511104076015 +229854,1149.2700000134807,-0.0533643067715055 +229855,1149.2750000134808,-0.05336410239366186 +229856,1149.280000013481,-0.053363897970523884 +229857,1149.285000013481,-0.05336369350207036 +229858,1149.2900000134812,-0.0533634889882801 +229859,1149.2950000134813,-0.05336328442913184 +229860,1149.3000000134814,-0.053363079824604344 +229861,1149.3050000134815,-0.05336287517467635 +229862,1149.3100000134816,-0.05336267047932658 +229863,1149.3150000134817,-0.05336246573853376 +229864,1149.3200000134818,-0.05336226095227656 +229865,1149.325000013482,-0.05336205612053368 +229866,1149.330000013482,-0.053361851243283784 +229867,1149.3350000134822,-0.05336164632050553 +229868,1149.3400000134823,-0.053361441352177554 +229869,1149.3450000134824,-0.05336123633827849 +229870,1149.3500000134825,-0.05336103127878694 +229871,1149.3550000134826,-0.05336082617368151 +229872,1149.3600000134827,-0.05336062102294078 +229873,1149.3650000134828,-0.053360415826543335 +229874,1149.370000013483,-0.05336021058446771 +229875,1149.375000013483,-0.053360005296692464 +229876,1149.3800000134831,-0.053359799963196126 +229877,1149.3850000134832,-0.053359594583957205 +229878,1149.3900000134834,-0.053359389158954204 +229879,1149.3950000134835,-0.05335918368816562 +229880,1149.4000000134836,-0.053358978171569905 +229881,1149.4050000134837,-0.05335877260914553 +229882,1149.4100000134838,-0.05335856700087095 +229883,1149.415000013484,-0.05335836134672458 +229884,1149.420000013484,-0.053358155646684835 +229885,1149.4250000134841,-0.05335794990073012 +229886,1149.4300000134842,-0.05335774410883883 +229887,1149.4350000134843,-0.053357538270989324 +229888,1149.4400000134845,-0.05335733238715997 +229889,1149.4450000134846,-0.05335712645732912 +229890,1149.4500000134847,-0.0533569204814751 +229891,1149.4550000134848,-0.053356714459576224 +229892,1149.460000013485,-0.0533565083916108 +229893,1149.465000013485,-0.053356302277557124 +229894,1149.470000013485,-0.05335609611739345 +229895,1149.4750000134852,-0.05335588991109805 +229896,1149.4800000134853,-0.05335568365864917 +229897,1149.4850000134854,-0.05335547736002505 +229898,1149.4900000134855,-0.05335527101520388 +229899,1149.4950000134857,-0.0533550646241639 +229900,1149.5000000134858,-0.05335485818688328 +229901,1149.5050000134859,-0.05335465170334018 +229902,1149.510000013486,-0.05335444517351279 +229903,1149.515000013486,-0.05335423859737922 +229904,1149.5200000134862,-0.053354031974917636 +229905,1149.5250000134863,-0.053353825306106134 +229906,1149.5300000134864,-0.05335361859092282 +229907,1149.5350000134865,-0.05335341182934579 +229908,1149.5400000134866,-0.05335320502135311 +229909,1149.5450000134867,-0.05335299816692283 +229910,1149.5500000134869,-0.05335279126603301 +229911,1149.555000013487,-0.05335258431866168 +229912,1149.560000013487,-0.05335237732478686 +229913,1149.5650000134872,-0.05335217028438653 +229914,1149.5700000134873,-0.05335196319743869 +229915,1149.5750000134874,-0.05335175606392131 +229916,1149.5800000134875,-0.053351548883812355 +229917,1149.5850000134876,-0.053351341657089775 +229918,1149.5900000134877,-0.05335113438373148 +229919,1149.5950000134878,-0.05335092706371539 +229920,1149.600000013488,-0.05335071969701941 +229921,1149.605000013488,-0.05335051228362143 +229922,1149.6100000134882,-0.053350304823499305 +229923,1149.6150000134883,-0.053350097316630894 +229924,1149.6200000134884,-0.053349889762994054 +229925,1149.6250000134885,-0.053349682162566595 +229926,1149.6300000134886,-0.05334947451532634 +229927,1149.6350000134887,-0.053349266821251067 +229928,1149.6400000134888,-0.05334905908031858 +229929,1149.645000013489,-0.053348851292506654 +229930,1149.650000013489,-0.05334864345779302 +229931,1149.6550000134891,-0.05334843557615543 +229932,1149.6600000134893,-0.05334822764757159 +229933,1149.6650000134894,-0.053348019672019235 +229934,1149.6700000134895,-0.053347811649476044 +229935,1149.6750000134896,-0.053347603579919696 +229936,1149.6800000134897,-0.05334739546332786 +229937,1149.6850000134898,-0.05334718729967818 +229938,1149.69000001349,-0.05334697908894832 +229939,1149.69500001349,-0.053346770831115865 +229940,1149.7000000134901,-0.053346562526158436 +229941,1149.7050000134902,-0.05334635417405363 +229942,1149.7100000134903,-0.053346145774779016 +229943,1149.7150000134905,-0.053345937328312165 +229944,1149.7200000134906,-0.05334572883463061 +229945,1149.7250000134907,-0.053345520293711875 +229946,1149.7300000134908,-0.05334531170553349 +229947,1149.735000013491,-0.053345103070072966 +229948,1149.740000013491,-0.05334489438730777 +229949,1149.745000013491,-0.053344685657215396 +229950,1149.7500000134912,-0.053344476879773284 +229951,1149.7550000134913,-0.05334426805495888 +229952,1149.7600000134914,-0.05334405918274962 +229953,1149.7650000134915,-0.053343850263122904 +229954,1149.7700000134917,-0.053343641296056135 +229955,1149.7750000134918,-0.0533434322815267 +229956,1149.7800000134919,-0.05334322321951196 +229957,1149.785000013492,-0.05334301410998927 +229958,1149.790000013492,-0.05334280495293597 +229959,1149.7950000134922,-0.053342595748329356 +229960,1149.8000000134923,-0.053342386496146775 +229961,1149.8050000134924,-0.0533421771963655 +229962,1149.8100000134925,-0.053341967848962814 +229963,1149.8150000134926,-0.053341758453915956 +229964,1149.8200000134927,-0.05334154901120221 +229965,1149.8250000134929,-0.05334133952079879 +229966,1149.830000013493,-0.0533411299826829 +229967,1149.835000013493,-0.05334092039683176 +229968,1149.8400000134932,-0.05334071076322255 +229969,1149.8450000134933,-0.05334050108183243 +229970,1149.8500000134934,-0.053340291352638576 +229971,1149.8550000134935,-0.05334008157561811 +229972,1149.8600000134936,-0.053339871750748176 +229973,1149.8650000134937,-0.05333966187800586 +229974,1149.8700000134938,-0.05333945195736827 +229975,1149.875000013494,-0.05333924198881249 +229976,1149.880000013494,-0.053339031972315584 +229977,1149.8850000134942,-0.0533388219078546 +229978,1149.8900000134943,-0.05333861179540657 +229979,1149.8950000134944,-0.05333840163494851 +229980,1149.9000000134945,-0.05333819142645743 +229981,1149.9050000134946,-0.05333798116991031 +229982,1149.9100000134947,-0.05333777086528413 +229983,1149.9150000134948,-0.05333756051255584 +229984,1149.920000013495,-0.05333735011170238 +229985,1149.925000013495,-0.05333713966270068 +229986,1149.9300000134951,-0.053336929165527666 +229987,1149.9350000134953,-0.05333671862016021 +229988,1149.9400000134954,-0.053336508026575205 +229989,1149.9450000134955,-0.053336297384749515 +229990,1149.9500000134956,-0.05333608669465999 +229991,1149.9550000134957,-0.053335875956283446 +229992,1149.9600000134958,-0.05333566516959672 +229993,1149.965000013496,-0.05333545433457663 +229994,1149.970000013496,-0.05333524345119993 +229995,1149.9750000134961,-0.053335032519443416 +229996,1149.9800000134962,-0.05333482153928384 +229997,1149.9850000134963,-0.053334610510697926 +229998,1149.9900000134965,-0.053334399433662416 +229999,1149.9950000134966,-0.053334188308154014 +230000,1150.0000000134967,-0.05333397713414941 +230001,1150.0050000134968,-0.053333765911625294 +230002,1150.010000013497,-0.05333355464055832 +230003,1150.015000013497,-0.05333334332092514 +230004,1150.020000013497,-0.05333313195270239 +230005,1150.0250000134972,-0.053332920535866676 +230006,1150.0300000134973,-0.0533327090703946 +230007,1150.0350000134974,-0.05333249755626275 +230008,1150.0400000134975,-0.0533322859934477 +230009,1150.0450000134977,-0.05333207438192599 +230010,1150.0500000134978,-0.05333186272167416 +230011,1150.0550000134979,-0.05333165101266873 +230012,1150.060000013498,-0.053331439254886225 +230013,1150.065000013498,-0.05333122744830311 +230014,1150.0700000134982,-0.05333101559289588 +230015,1150.0750000134983,-0.05333080368864099 +230016,1150.0800000134984,-0.053330591735514875 +230017,1150.0850000134985,-0.05333037973349397 +230018,1150.0900000134986,-0.05333016768255468 +230019,1150.0950000134987,-0.053329955582673394 +230020,1150.1000000134989,-0.05332974343382651 +230021,1150.105000013499,-0.05332953123599037 +230022,1150.110000013499,-0.053329318989141346 +230023,1150.1150000134992,-0.05332910669325575 +230024,1150.1200000134993,-0.05332889434830992 +230025,1150.1250000134994,-0.05332868195428013 +230026,1150.1300000134995,-0.05332846951114269 +230027,1150.1350000134996,-0.053328257018873844 +230028,1150.1400000134997,-0.05332804447744985 +230029,1150.1450000134998,-0.05332783188684695 +230030,1150.1500000135,-0.05332761924704137 +230031,1150.1550000135,-0.05332740655800931 +230032,1150.1600000135002,-0.05332719381972696 +230033,1150.1650000135003,-0.053326981032170484 +230034,1150.1700000135004,-0.05332676819531604 +230035,1150.1750000135005,-0.05332655530913978 +230036,1150.1800000135006,-0.05332634237361782 +230037,1150.1850000135007,-0.05332612938872626 +230038,1150.1900000135008,-0.05332591635444121 +230039,1150.195000013501,-0.05332570327073873 +230040,1150.200000013501,-0.05332549013759488 +230041,1150.2050000135011,-0.05332527695498573 +230042,1150.2100000135013,-0.05332506372288726 +230043,1150.2150000135014,-0.05332485044127553 +230044,1150.2200000135015,-0.053324637110126506 +230045,1150.2250000135016,-0.05332442372941617 +230046,1150.2300000135017,-0.05332421029912048 +230047,1150.2350000135018,-0.053323996819215395 +230048,1150.240000013502,-0.05332378328967684 +230049,1150.245000013502,-0.05332356971048074 +230050,1150.2500000135021,-0.053323356081602984 +230051,1150.2550000135022,-0.05332314240301945 +230052,1150.2600000135023,-0.05332292867470599 +230053,1150.2650000135025,-0.053322714896638486 +230054,1150.2700000135026,-0.05332250106879275 +230055,1150.2750000135027,-0.053322287191144596 +230056,1150.2800000135028,-0.053322073263669834 +230057,1150.285000013503,-0.05332185928634425 +230058,1150.290000013503,-0.053321645259143596 +230059,1150.295000013503,-0.053321431182043626 +230060,1150.3000000135032,-0.05332121705502009 +230061,1150.3050000135033,-0.053321002878048675 +230062,1150.3100000135034,-0.05332078865110511 +230063,1150.3150000135035,-0.053320574374165076 +230064,1150.3200000135037,-0.05332036004720423 +230065,1150.3250000135038,-0.053320145670198243 +230066,1150.3300000135039,-0.05331993124312274 +230067,1150.335000013504,-0.05331971676595333 +230068,1150.340000013504,-0.05331950223866562 +230069,1150.3450000135042,-0.05331928766123521 +230070,1150.3500000135043,-0.05331907303363765 +230071,1150.3550000135044,-0.05331885835584852 +230072,1150.3600000135045,-0.05331864362784333 +230073,1150.3650000135046,-0.05331842884959761 +230074,1150.3700000135048,-0.053318214021086864 +230075,1150.3750000135049,-0.05331799914228657 +230076,1150.380000013505,-0.0533177842131722 +230077,1150.385000013505,-0.05331756923371923 +230078,1150.3900000135052,-0.053317354203903065 +230079,1150.3950000135053,-0.053317139123699134 +230080,1150.4000000135054,-0.053316923993082854 +230081,1150.4050000135055,-0.0533167088120296 +230082,1150.4100000135056,-0.05331649358051475 +230083,1150.4150000135057,-0.05331627829851364 +230084,1150.4200000135058,-0.05331606296600161 +230085,1150.425000013506,-0.05331584758295399 +230086,1150.430000013506,-0.053315632149346086 +230087,1150.4350000135062,-0.05331541666515318 +230088,1150.4400000135063,-0.05331520113035053 +230089,1150.4450000135064,-0.0533149855449134 +230090,1150.4500000135065,-0.05331476990881703 +230091,1150.4550000135066,-0.05331455422203662 +230092,1150.4600000135067,-0.05331433848454738 +230093,1150.4650000135068,-0.053314122696324504 +230094,1150.470000013507,-0.05331390685734314 +230095,1150.475000013507,-0.053313690967578466 +230096,1150.4800000135072,-0.0533134750270056 +230097,1150.4850000135073,-0.05331325903559966 +230098,1150.4900000135074,-0.053313042993335745 +230099,1150.4950000135075,-0.05331282690018894 +230100,1150.5000000135076,-0.053312610756134304 +230101,1150.5050000135077,-0.053312394561146906 +230102,1150.5100000135078,-0.05331217831520176 +230103,1150.515000013508,-0.05331196201827389 +230104,1150.520000013508,-0.0533117456703383 +230105,1150.5250000135081,-0.05331152927136995 +230106,1150.5300000135082,-0.05331131282134382 +230107,1150.5350000135084,-0.053311096320234855 +230108,1150.5400000135085,-0.05331087976801798 +230109,1150.5450000135086,-0.053310663164668114 +230110,1150.5500000135087,-0.05331044651016015 +230111,1150.5550000135088,-0.05331022980446898 +230112,1150.560000013509,-0.053310013047569445 +230113,1150.565000013509,-0.05330979623943638 +230114,1150.5700000135091,-0.05330957938004464 +230115,1150.5750000135092,-0.05330936246936902 +230116,1150.5800000135093,-0.05330914550738432 +230117,1150.5850000135094,-0.0533089284940653 +230118,1150.5900000135096,-0.053308711429386736 +230119,1150.5950000135097,-0.05330849431332335 +230120,1150.6000000135098,-0.05330827714584989 +230121,1150.6050000135099,-0.05330805992694104 +230122,1150.61000001351,-0.05330784265657149 +230123,1150.61500001351,-0.05330762533471594 +230124,1150.6200000135102,-0.053307407961349015 +230125,1150.6250000135103,-0.053307190536445365 +230126,1150.6300000135104,-0.053306973059979584 +230127,1150.6350000135105,-0.0533067555319263 +230128,1150.6400000135106,-0.053306537952260105 +230129,1150.6450000135108,-0.05330632032095554 +230130,1150.6500000135109,-0.053306102637987164 +230131,1150.655000013511,-0.05330588490332953 +230132,1150.660000013511,-0.053305667116957126 +230133,1150.6650000135112,-0.053305449278844466 +230134,1150.6700000135113,-0.05330523138896601 +230135,1150.6750000135114,-0.05330501344729623 +230136,1150.6800000135115,-0.05330479545380959 +230137,1150.6850000135116,-0.0533045774084805 +230138,1150.6900000135117,-0.05330435931128336 +230139,1150.6950000135118,-0.05330414116219258 +230140,1150.700000013512,-0.053303922961182526 +230141,1150.705000013512,-0.05330370470822756 +230142,1150.7100000135122,-0.05330348640330201 +230143,1150.7150000135123,-0.0533032680463802 +230144,1150.7200000135124,-0.05330304963743645 +230145,1150.7250000135125,-0.05330283117644503 +230146,1150.7300000135126,-0.05330261266338022 +230147,1150.7350000135127,-0.05330239409821626 +230148,1150.7400000135128,-0.05330217548092739 +230149,1150.745000013513,-0.053301956811487826 +230150,1150.750000013513,-0.053301738089871764 +230151,1150.7550000135132,-0.05330151931605339 +230152,1150.7600000135133,-0.05330130049000685 +230153,1150.7650000135134,-0.05330108161170631 +230154,1150.7700000135135,-0.05330086268112588 +230155,1150.7750000135136,-0.05330064369823967 +230156,1150.7800000135137,-0.05330042466302179 +230157,1150.7850000135138,-0.053300205575446284 +230158,1150.790000013514,-0.05329998643548723 +230159,1150.795000013514,-0.053299767243118655 +230160,1150.8000000135141,-0.05329954799831458 +230161,1150.8050000135142,-0.05329932870104901 +230162,1150.8100000135144,-0.05329910935129593 +230163,1150.8150000135145,-0.05329888994902929 +230164,1150.8200000135146,-0.053298670494223044 +230165,1150.8250000135147,-0.05329845098685114 +230166,1150.8300000135148,-0.05329823142688747 +230167,1150.835000013515,-0.05329801181430594 +230168,1150.840000013515,-0.053297792149080425 +230169,1150.8450000135151,-0.05329757243118478 +230170,1150.8500000135152,-0.05329735266059284 +230171,1150.8550000135153,-0.053297132837278424 +230172,1150.8600000135154,-0.053296912961215345 +230173,1150.8650000135156,-0.05329669303237738 +230174,1150.8700000135157,-0.0532964730507383 +230175,1150.8750000135158,-0.05329625301627185 +230176,1150.8800000135159,-0.05329603292895178 +230177,1150.885000013516,-0.05329581278875178 +230178,1150.890000013516,-0.05329559259564554 +230179,1150.8950000135162,-0.05329537234960677 +230180,1150.9000000135163,-0.05329515205060909 +230181,1150.9050000135164,-0.05329493169862616 +230182,1150.9100000135165,-0.05329471129363159 +230183,1150.9150000135166,-0.05329449083559901 +230184,1150.9200000135168,-0.05329427032450198 +230185,1150.9250000135169,-0.053294049760314065 +230186,1150.930000013517,-0.053293829143008835 +230187,1150.935000013517,-0.053293608472559796 +230188,1150.9400000135172,-0.05329338774894048 +230189,1150.9450000135173,-0.05329316697212437 +230190,1150.9500000135174,-0.05329294614208494 +230191,1150.9550000135175,-0.05329272525879566 +230192,1150.9600000135176,-0.05329250432222995 +230193,1150.9650000135177,-0.053292283332361225 +230194,1150.9700000135178,-0.0532920622891629 +230195,1150.975000013518,-0.05329184119260836 +230196,1150.980000013518,-0.05329162004267097 +230197,1150.9850000135182,-0.05329139883932407 +230198,1150.9900000135183,-0.053291177582541 +230199,1150.9950000135184,-0.05329095627229505 +230200,1151.0000000135185,-0.05329073490855952 +230201,1151.0050000135186,-0.053290513491307666 +230202,1151.0100000135187,-0.05329029202051277 +230203,1151.0150000135188,-0.05329007049614805 +230204,1151.020000013519,-0.05328984891818672 +230205,1151.025000013519,-0.053289627286601984 +230206,1151.0300000135192,-0.05328940560136701 +230207,1151.0350000135193,-0.05328918386245498 +230208,1151.0400000135194,-0.053288962069839005 +230209,1151.0450000135195,-0.053288740223492226 +230210,1151.0500000135196,-0.05328851832338775 +230211,1151.0550000135197,-0.05328829636949865 +230212,1151.0600000135198,-0.05328807436179801 +230213,1151.06500001352,-0.05328785230025886 +230214,1151.07000001352,-0.05328763018485424 +230215,1151.0750000135201,-0.05328740801555715 +230216,1151.0800000135202,-0.0532871857923406 +230217,1151.0850000135204,-0.05328696351517753 +230218,1151.0900000135205,-0.053286741184040934 +230219,1151.0950000135206,-0.05328651879890371 +230220,1151.1000000135207,-0.0532862963597388 +230221,1151.1050000135208,-0.05328607386651909 +230222,1151.110000013521,-0.05328585131921746 +230223,1151.115000013521,-0.053285628717806774 +230224,1151.1200000135211,-0.053285406062259864 +230225,1151.1250000135212,-0.05328518335254955 +230226,1151.1300000135213,-0.05328496058864864 +230227,1151.1350000135214,-0.053284737770529916 +230228,1151.1400000135216,-0.05328451489816614 +230229,1151.1450000135217,-0.053284291971530055 +230230,1151.1500000135218,-0.053284068990594395 +230231,1151.1550000135219,-0.05328384595533187 +230232,1151.160000013522,-0.05328362286571516 +230233,1151.165000013522,-0.05328339972171693 +230234,1151.1700000135222,-0.05328317652330985 +230235,1151.1750000135223,-0.053282953270466525 +230236,1151.1800000135224,-0.05328272996315957 +230237,1151.1850000135225,-0.05328250660136159 +230238,1151.1900000135226,-0.05328228318504516 +230239,1151.1950000135228,-0.053282059714182824 +230240,1151.2000000135229,-0.05328183618874712 +230241,1151.205000013523,-0.05328161260871056 +230242,1151.210000013523,-0.053281388974045656 +230243,1151.2150000135232,-0.05328116528472487 +230244,1151.2200000135233,-0.05328094154072065 +230245,1151.2250000135234,-0.05328071774200545 +230246,1151.2300000135235,-0.05328049388855169 +230247,1151.2350000135236,-0.053280269980331765 +230248,1151.2400000135237,-0.05328004601731806 +230249,1151.2450000135238,-0.05327982199948293 +230250,1151.250000013524,-0.05327959792679873 +230251,1151.255000013524,-0.053279373799237764 +230252,1151.2600000135242,-0.053279149616772346 +230253,1151.2650000135243,-0.053278925379374745 +230254,1151.2700000135244,-0.05327870108701724 +230255,1151.2750000135245,-0.05327847673967207 +230256,1151.2800000135246,-0.053278252337311476 +230257,1151.2850000135247,-0.053278027879907625 +230258,1151.2900000135248,-0.05327780336743274 +230259,1151.295000013525,-0.05327757879985897 +230260,1151.300000013525,-0.053277354177158474 +230261,1151.3050000135252,-0.053277129499303355 +230262,1151.3100000135253,-0.053276904766265745 +230263,1151.3150000135254,-0.05327667997801773 +230264,1151.3200000135255,-0.05327645513453136 +230265,1151.3250000135256,-0.053276230235778696 +230266,1151.3300000135257,-0.05327600528173177 +230267,1151.3350000135258,-0.053275780272362586 +230268,1151.340000013526,-0.05327555520764313 +230269,1151.345000013526,-0.05327533008754537 +230270,1151.3500000135261,-0.05327510491204127 +230271,1151.3550000135263,-0.05327487968110276 +230272,1151.3600000135264,-0.05327465439470174 +230273,1151.3650000135265,-0.05327442905281011 +230274,1151.3700000135266,-0.053274203655399734 +230275,1151.3750000135267,-0.053273978202442465 +230276,1151.3800000135268,-0.053273752693910124 +230277,1151.385000013527,-0.05327352712977454 +230278,1151.390000013527,-0.053273301510007504 +230279,1151.3950000135271,-0.05327307583458077 +230280,1151.4000000135272,-0.0532728501034661 +230281,1151.4050000135273,-0.05327262431663523 +230282,1151.4100000135275,-0.05327239847405987 +230283,1151.4150000135276,-0.05327217257571171 +230284,1151.4200000135277,-0.05327194662156242 +230285,1151.4250000135278,-0.05327172061158366 +230286,1151.430000013528,-0.05327149454574705 +230287,1151.435000013528,-0.0532712684240242 +230288,1151.440000013528,-0.053271042246386714 +230289,1151.4450000135282,-0.053270816012806164 +230290,1151.4500000135283,-0.05327058972325409 +230291,1151.4550000135284,-0.053270363377702044 +230292,1151.4600000135285,-0.053270136976121506 +230293,1151.4650000135287,-0.053269910518483995 +230294,1151.4700000135288,-0.053269684004760974 +230295,1151.4750000135289,-0.05326945743492388 +230296,1151.480000013529,-0.05326923080894416 +230297,1151.485000013529,-0.053269004126793223 +230298,1151.4900000135292,-0.05326877738844245 +230299,1151.4950000135293,-0.05326855059386321 +230300,1151.5000000135294,-0.05326832374302687 +230301,1151.5050000135295,-0.05326809683590474 +230302,1151.5100000135296,-0.05326786987246814 +230303,1151.5150000135297,-0.053267642852688354 +230304,1151.5200000135299,-0.05326741577653665 +230305,1151.52500001353,-0.05326718864398427 +230306,1151.53000001353,-0.05326696145500245 +230307,1151.5350000135302,-0.053266734209562384 +230308,1151.5400000135303,-0.05326650690763529 +230309,1151.5450000135304,-0.05326627954919231 +230310,1151.5500000135305,-0.053266052134204586 +230311,1151.5550000135306,-0.053265824662643256 +230312,1151.5600000135307,-0.053265597134479405 +230313,1151.5650000135308,-0.05326536954968414 +230314,1151.570000013531,-0.053265141908228515 +230315,1151.575000013531,-0.05326491421008358 +230316,1151.5800000135312,-0.053264686455220346 +230317,1151.5850000135313,-0.05326445864360981 +230318,1151.5900000135314,-0.05326423077522297 +230319,1151.5950000135315,-0.05326400285003078 +230320,1151.6000000135316,-0.053263774868004175 +230321,1151.6050000135317,-0.05326354682911409 +230322,1151.6100000135318,-0.053263318733331406 +230323,1151.615000013532,-0.05326309058062701 +230324,1151.620000013532,-0.05326286237097175 +230325,1151.6250000135321,-0.05326263410433647 +230326,1151.6300000135323,-0.053262405780691996 +230327,1151.6350000135324,-0.053262177400009096 +230328,1151.6400000135325,-0.05326194896225856 +230329,1151.6450000135326,-0.053261720467411136 +230330,1151.6500000135327,-0.053261491915437574 +230331,1151.6550000135328,-0.053261263306308565 +230332,1151.660000013533,-0.053261034639994806 +230333,1151.665000013533,-0.053260805916466966 +230334,1151.6700000135331,-0.0532605771356957 +230335,1151.6750000135332,-0.05326034829765163 +230336,1151.6800000135333,-0.053260119402305364 +230337,1151.6850000135335,-0.05325989044962749 +230338,1151.6900000135336,-0.053259661439588574 +230339,1151.6950000135337,-0.05325943237215914 +230340,1151.7000000135338,-0.05325920324730974 +230341,1151.705000013534,-0.053258974065010865 +230342,1151.710000013534,-0.05325874482523298 +230343,1151.715000013534,-0.053258515527946575 +230344,1151.7200000135342,-0.05325828617312206 +230345,1151.7250000135343,-0.05325805676072986 +230346,1151.7300000135344,-0.053257827290740384 +230347,1151.7350000135345,-0.053257597763123984 +230348,1151.7400000135347,-0.05325736817785104 +230349,1151.7450000135348,-0.05325713853489187 +230350,1151.7500000135349,-0.05325690883421679 +230351,1151.755000013535,-0.053256679075796086 +230352,1151.760000013535,-0.05325644925960003 +230353,1151.7650000135352,-0.053256219385598866 +230354,1151.7700000135353,-0.05325598945376282 +230355,1151.7750000135354,-0.05325575946406211 +230356,1151.7800000135355,-0.0532555294164669 +230357,1151.7850000135356,-0.053255299310947364 +230358,1151.7900000135357,-0.05325506914747363 +230359,1151.7950000135359,-0.05325483892601584 +230360,1151.800000013536,-0.05325460864654407 +230361,1151.805000013536,-0.05325437830902841 +230362,1151.8100000135362,-0.053254147913438916 +230363,1151.8150000135363,-0.05325391745974562 +230364,1151.8200000135364,-0.05325368694791852 +230365,1151.8250000135365,-0.05325345637792764 +230366,1151.8300000135366,-0.05325322574974291 +230367,1151.8350000135367,-0.0532529950633343 +230368,1151.8400000135368,-0.05325276431867172 +230369,1151.845000013537,-0.05325253351572509 +230370,1151.850000013537,-0.05325230265446429 +230371,1151.8550000135372,-0.05325207173485917 +230372,1151.8600000135373,-0.05325184075687959 +230373,1151.8650000135374,-0.053251609720495356 +230374,1151.8700000135375,-0.053251378625676256 +230375,1151.8750000135376,-0.053251147472392076 +230376,1151.8800000135377,-0.05325091626061257 +230377,1151.8850000135378,-0.05325068499030746 +230378,1151.890000013538,-0.053250453661446456 +230379,1151.895000013538,-0.05325022227399926 +230380,1151.9000000135381,-0.05324999082793551 +230381,1151.9050000135383,-0.053249759323224864 +230382,1151.9100000135384,-0.053249527759836955 +230383,1151.9150000135385,-0.05324929613774137 +230384,1151.9200000135386,-0.05324906445690769 +230385,1151.9250000135387,-0.05324883271730546 +230386,1151.9300000135388,-0.05324860091890423 +230387,1151.935000013539,-0.0532483690616735 +230388,1151.940000013539,-0.053248137145582776 +230389,1151.9450000135391,-0.05324790517060152 +230390,1151.9500000135392,-0.05324767313669916 +230391,1151.9550000135393,-0.05324744104384514 +230392,1151.9600000135395,-0.05324720889200886 +230393,1151.9650000135396,-0.05324697668115969 +230394,1151.9700000135397,-0.053246744411267005 +230395,1151.9750000135398,-0.053246512082300114 +230396,1151.98000001354,-0.05324627969422836 +230397,1151.98500001354,-0.053246047247021026 +230398,1151.99000001354,-0.053245814740647365 +230399,1151.9950000135402,-0.05324558217507663 +230400,1152.0000000135403,-0.053245349550278064 +230401,1152.0050000135404,-0.053245116866220854 +230402,1152.0100000135405,-0.05324488412287418 +230403,1152.0150000135407,-0.0532446513202072 +230404,1152.0200000135408,-0.053244418458189044 +230405,1152.0250000135409,-0.053244185536788835 +230406,1152.030000013541,-0.053243952555975665 +230407,1152.035000013541,-0.05324371951571861 +230408,1152.0400000135412,-0.053243486415986696 +230409,1152.0450000135413,-0.05324325325674896 +230410,1152.0500000135414,-0.05324302003797439 +230411,1152.0550000135415,-0.05324278675963198 +230412,1152.0600000135416,-0.05324255342169069 +230413,1152.0650000135417,-0.05324232002411944 +230414,1152.0700000135419,-0.05324208656688714 +230415,1152.075000013542,-0.053241853049962685 +230416,1152.080000013542,-0.05324161947331494 +230417,1152.0850000135422,-0.05324138583691276 +230418,1152.0900000135423,-0.05324115214072495 +230419,1152.0950000135424,-0.053240918384720316 +230420,1152.1000000135425,-0.05324068456886764 +230421,1152.1050000135426,-0.053240450693135655 +230422,1152.1100000135427,-0.05324021675749312 +230423,1152.1150000135428,-0.05323998276190871 +230424,1152.120000013543,-0.05323974870635112 +230425,1152.125000013543,-0.05323951459078903 +230426,1152.1300000135432,-0.053239280415191076 +230427,1152.1350000135433,-0.05323904617952586 +230428,1152.1400000135434,-0.053238811883761984 +230429,1152.1450000135435,-0.053238577527868015 +230430,1152.1500000135436,-0.05323834311181251 +230431,1152.1550000135437,-0.05323810863556399 +230432,1152.1600000135438,-0.05323787409909096 +230433,1152.165000013544,-0.05323763950236189 +230434,1152.170000013544,-0.05323740484534524 +230435,1152.1750000135441,-0.05323717012800945 +230436,1152.1800000135443,-0.053236935350322936 +230437,1152.1850000135444,-0.05323670051225408 +230438,1152.1900000135445,-0.05323646561377123 +230439,1152.1950000135446,-0.053236230654842745 +230440,1152.2000000135447,-0.05323599563543694 +230441,1152.2050000135448,-0.05323576055552211 +230442,1152.210000013545,-0.05323552541506652 +230443,1152.215000013545,-0.05323529021403843 +230444,1152.2200000135451,-0.053235054952406075 +230445,1152.2250000135452,-0.05323481963013764 +230446,1152.2300000135454,-0.05323458424720131 +230447,1152.2350000135455,-0.05323434880356524 +230448,1152.2400000135456,-0.05323411329919756 +230449,1152.2450000135457,-0.0532338777340664 +230450,1152.2500000135458,-0.05323364210813982 +230451,1152.255000013546,-0.053233406421385895 +230452,1152.260000013546,-0.053233170673772666 +230453,1152.2650000135461,-0.05323293486526815 +230454,1152.2700000135462,-0.053232698995840336 +230455,1152.2750000135463,-0.05323246306545721 +230456,1152.2800000135464,-0.053232227074086695 +230457,1152.2850000135466,-0.05323199102169673 +230458,1152.2900000135467,-0.05323175490825521 +230459,1152.2950000135468,-0.05323151873373001 +230460,1152.3000000135469,-0.05323128249808899 +230461,1152.305000013547,-0.05323104620129996 +230462,1152.310000013547,-0.05323080984333075 +230463,1152.3150000135472,-0.053230573424149115 +230464,1152.3200000135473,-0.05323033694372283 +230465,1152.3250000135474,-0.05323010040201963 +230466,1152.3300000135475,-0.05322986379900724 +230467,1152.3350000135476,-0.05322962713465331 +230468,1152.3400000135478,-0.05322939040892554 +230469,1152.3450000135479,-0.05322915362179156 +230470,1152.350000013548,-0.05322891677321897 +230471,1152.355000013548,-0.05322867986317537 +230472,1152.3600000135482,-0.05322844289162835 +230473,1152.3650000135483,-0.05322820585854542 +230474,1152.3700000135484,-0.05322796876389413 +230475,1152.3750000135485,-0.05322773160764196 +230476,1152.3800000135486,-0.0532274943897564 +230477,1152.3850000135487,-0.05322725711020489 +230478,1152.3900000135488,-0.053227019768954865 +230479,1152.395000013549,-0.0532267823659737 +230480,1152.400000013549,-0.05322654490122881 +230481,1152.4050000135492,-0.053226307374687525 +230482,1152.4100000135493,-0.053226069786317186 +230483,1152.4150000135494,-0.05322583213608509 +230484,1152.4200000135495,-0.053225594423958515 +230485,1152.4250000135496,-0.05322535664990473 +230486,1152.4300000135497,-0.053225118813890956 +230487,1152.4350000135498,-0.053224880915884426 +230488,1152.44000001355,-0.0532246429558523 +230489,1152.44500001355,-0.053224404933761765 +230490,1152.4500000135502,-0.05322416684957993 +230491,1152.4550000135503,-0.05322392870327393 +230492,1152.4600000135504,-0.05322369049481084 +230493,1152.4650000135505,-0.05322345222415774 +230494,1152.4700000135506,-0.05322321389128166 +230495,1152.4750000135507,-0.05322297549614961 +230496,1152.4800000135508,-0.053222737038728596 +230497,1152.485000013551,-0.05322249851898558 +230498,1152.490000013551,-0.0532222599368875 +230499,1152.4950000135511,-0.05322202129240128 +230500,1152.5000000135512,-0.053221782585493815 +230501,1152.5050000135514,-0.05322154381613197 +230502,1152.5100000135515,-0.0532213049842826 +230503,1152.5150000135516,-0.05322106608991251 +230504,1152.5200000135517,-0.05322082713298851 +230505,1152.5250000135518,-0.053220588113477366 +230506,1152.530000013552,-0.05322034903134582 +230507,1152.535000013552,-0.05322010988656061 +230508,1152.5400000135521,-0.05321987067908842 +230509,1152.5450000135522,-0.05321963140889592 +230510,1152.5500000135523,-0.05321939207594977 +230511,1152.5550000135524,-0.0532191526802166 +230512,1152.5600000135526,-0.053218913221663 +230513,1152.5650000135527,-0.05321867370025555 +230514,1152.5700000135528,-0.05321843411596079 +230515,1152.5750000135529,-0.053218194468745254 +230516,1152.580000013553,-0.05321795475857544 +230517,1152.585000013553,-0.05321771498541783 +230518,1152.5900000135532,-0.053217475149238865 +230519,1152.5950000135533,-0.05321723525000498 +230520,1152.6000000135534,-0.05321699528768257 +230521,1152.6050000135535,-0.053216755262238014 +230522,1152.6100000135536,-0.05321651517363766 +230523,1152.6150000135538,-0.05321627502184785 +230524,1152.6200000135539,-0.05321603480683487 +230525,1152.625000013554,-0.053215794528565 +230526,1152.630000013554,-0.053215554187004487 +230527,1152.6350000135542,-0.053215313782119564 +230528,1152.6400000135543,-0.05321507331387645 +230529,1152.6450000135544,-0.05321483278224129 +230530,1152.6500000135545,-0.05321459218718025 +230531,1152.6550000135546,-0.05321435152865945 +230532,1152.6600000135547,-0.053214110806644996 +230533,1152.6650000135548,-0.05321387002110296 +230534,1152.670000013555,-0.0532136291719994 +230535,1152.675000013555,-0.053213388259300345 +230536,1152.6800000135552,-0.05321314728297179 +230537,1152.6850000135553,-0.0532129062429797 +230538,1152.6900000135554,-0.05321266513929004 +230539,1152.6950000135555,-0.05321242397186873 +230540,1152.7000000135556,-0.05321218274068166 +230541,1152.7050000135557,-0.05321194144569471 +230542,1152.7100000135558,-0.05321170008687374 +230543,1152.715000013556,-0.05321145866418455 +230544,1152.720000013556,-0.053211217177592945 +230545,1152.7250000135562,-0.0532109756270647 +230546,1152.7300000135563,-0.05321073401256557 +230547,1152.7350000135564,-0.05321049233406127 +230548,1152.7400000135565,-0.053210250591517495 +230549,1152.7450000135566,-0.05321000878489991 +230550,1152.7500000135567,-0.053209766914174166 +230551,1152.7550000135568,-0.05320952497930588 +230552,1152.760000013557,-0.05320928298026064 +230553,1152.765000013557,-0.05320904091700402 +230554,1152.7700000135571,-0.053208798789501556 +230555,1152.7750000135572,-0.05320855659771877 +230556,1152.7800000135574,-0.05320831434162115 +230557,1152.7850000135575,-0.05320807202117415 +230558,1152.7900000135576,-0.05320782963634322 +230559,1152.7950000135577,-0.05320758718709378 +230560,1152.8000000135578,-0.05320734467339121 +230561,1152.805000013558,-0.05320710209520085 +230562,1152.810000013558,-0.05320685945248808 +230563,1152.8150000135581,-0.05320661674521817 +230564,1152.8200000135582,-0.053206373973356424 +230565,1152.8250000135583,-0.05320613113686808 +230566,1152.8300000135584,-0.05320588823571839 +230567,1152.8350000135586,-0.05320564526987255 +230568,1152.8400000135587,-0.053205402239295735 +230569,1152.8450000135588,-0.053205159143953115 +230570,1152.8500000135589,-0.05320491598380981 +230571,1152.855000013559,-0.05320467275883092 +230572,1152.860000013559,-0.05320442946898152 +230573,1152.8650000135592,-0.053204186114226656 +230574,1152.8700000135593,-0.05320394269453135 +230575,1152.8750000135594,-0.0532036992098606 +230576,1152.8800000135595,-0.05320345566017939 +230577,1152.8850000135596,-0.05320321204545265 +230578,1152.8900000135598,-0.05320296836564529 +230579,1152.8950000135599,-0.053202724620722223 +230580,1152.90000001356,-0.053202480810648295 +230581,1152.90500001356,-0.05320223693538836 +230582,1152.9100000135602,-0.053201992994907216 +230583,1152.9150000135603,-0.05320174898916966 +230584,1152.9200000135604,-0.05320150491814044 +230585,1152.9250000135605,-0.05320126078178431 +230586,1152.9300000135606,-0.05320101658006597 +230587,1152.9350000135607,-0.05320077231295008 +230588,1152.9400000135608,-0.053200527980401306 +230589,1152.945000013561,-0.05320028358238429 +230590,1152.950000013561,-0.05320003911886362 +230591,1152.9550000135612,-0.05319979458980386 +230592,1152.9600000135613,-0.053199549995169564 +230593,1152.9650000135614,-0.053199305334925256 +230594,1152.9700000135615,-0.053199060609035426 +230595,1152.9750000135616,-0.05319881581746455 +230596,1152.9800000135617,-0.05319857096017706 +230597,1152.9850000135618,-0.05319832603713738 +230598,1152.990000013562,-0.05319808104830989 +230599,1152.995000013562,-0.053197835993658946 +230600,1153.0000000135622,-0.05319759087314888 +230601,1153.0050000135623,-0.053197345686744016 +230602,1153.0100000135624,-0.05319710043440861 +230603,1153.0150000135625,-0.05319685511610693 +230604,1153.0200000135626,-0.05319660973180321 +230605,1153.0250000135627,-0.05319636428146163 +230606,1153.0300000135628,-0.05319611876504637 +230607,1153.035000013563,-0.053195873182521565 +230608,1153.040000013563,-0.053195627533851354 +230609,1153.0450000135631,-0.05319538181899979 +230610,1153.0500000135632,-0.05319513603793098 +230611,1153.0550000135634,-0.05319489019060893 +230612,1153.0600000135635,-0.05319464427699767 +230613,1153.0650000135636,-0.05319439829706116 +230614,1153.0700000135637,-0.05319415225076337 +230615,1153.0750000135638,-0.05319390613806823 +230616,1153.080000013564,-0.05319365995893963 +230617,1153.085000013564,-0.05319341371334146 +230618,1153.0900000135641,-0.05319316740123753 +230619,1153.0950000135642,-0.05319292102259169 +230620,1153.1000000135643,-0.053192674577367725 +230621,1153.1050000135644,-0.0531924280655294 +230622,1153.1100000135646,-0.05319218148704045 +230623,1153.1150000135647,-0.05319193484186457 +230624,1153.1200000135648,-0.053191688129965456 +230625,1153.1250000135649,-0.05319144135130677 +230626,1153.130000013565,-0.053191194505852114 +230627,1153.135000013565,-0.0531909475935651 +230628,1153.1400000135652,-0.053190700614409295 +230629,1153.1450000135653,-0.05319045356834825 +230630,1153.1500000135654,-0.05319020645534547 +230631,1153.1550000135655,-0.05318995927536446 +230632,1153.1600000135657,-0.05318971202836866 +230633,1153.1650000135658,-0.05318946471432152 +230634,1153.1700000135659,-0.053189217333186434 +230635,1153.175000013566,-0.053188969884926794 +230636,1153.180000013566,-0.05318872236950593 +230637,1153.1850000135662,-0.05318847478688717 +230638,1153.1900000135663,-0.05318822713703382 +230639,1153.1950000135664,-0.05318797941990914 +230640,1153.2000000135665,-0.053187731635476354 +230641,1153.2050000135666,-0.0531874837836987 +230642,1153.2100000135667,-0.053187235864539335 +230643,1153.2150000135669,-0.05318698787796142 +230644,1153.220000013567,-0.05318673982392808 +230645,1153.225000013567,-0.05318649170240242 +230646,1153.2300000135672,-0.053186243513347504 +230647,1153.2350000135673,-0.053185995256726376 +230648,1153.2400000135674,-0.05318574693250204 +230649,1153.2450000135675,-0.0531854985406375 +230650,1153.2500000135676,-0.0531852500810957 +230651,1153.2550000135677,-0.05318500155383959 +230652,1153.2600000135678,-0.05318475295883205 +230653,1153.265000013568,-0.05318450429603595 +230654,1153.270000013568,-0.05318425556541416 +230655,1153.2750000135682,-0.05318400676692947 +230656,1153.2800000135683,-0.05318375790054468 +230657,1153.2850000135684,-0.05318350896622255 +230658,1153.2900000135685,-0.05318325996392581 +230659,1153.2950000135686,-0.053183010893617155 +230660,1153.3000000135687,-0.05318276175525927 +230661,1153.3050000135688,-0.0531825125488148 +230662,1153.310000013569,-0.053182263274246355 +230663,1153.315000013569,-0.053182013931516524 +230664,1153.3200000135691,-0.05318176452058788 +230665,1153.3250000135693,-0.05318151504142294 +230666,1153.3300000135694,-0.05318126549398421 +230667,1153.3350000135695,-0.05318101587823418 +230668,1153.3400000135696,-0.053180766194135275 +230669,1153.3450000135697,-0.05318051644164993 +230670,1153.3500000135698,-0.053180266620740525 +230671,1153.35500001357,-0.05318001673136942 +230672,1153.36000001357,-0.05317976677349894 +230673,1153.3650000135701,-0.053179516747091385 +230674,1153.3700000135702,-0.053179266652109036 +230675,1153.3750000135703,-0.053179016488514134 +230676,1153.3800000135705,-0.053178766256268904 +230677,1153.3850000135706,-0.05317851595533553 +230678,1153.3900000135707,-0.053178265585676156 +230679,1153.3950000135708,-0.05317801514725292 +230680,1153.400000013571,-0.05317776464002793 +230681,1153.405000013571,-0.05317751406396325 +230682,1153.410000013571,-0.053177263419020904 +230683,1153.4150000135712,-0.053177012705162924 +230684,1153.4200000135713,-0.05317676192235129 +230685,1153.4250000135714,-0.053176511070547945 +230686,1153.4300000135715,-0.053176260149714834 +230687,1153.4350000135717,-0.053176009159813846 +230688,1153.4400000135718,-0.05317575810080683 +230689,1153.4450000135719,-0.05317550697265564 +230690,1153.450000013572,-0.05317525577532209 +230691,1153.455000013572,-0.05317500450876794 +230692,1153.4600000135722,-0.053174753172954954 +230693,1153.4650000135723,-0.05317450176784483 +230694,1153.4700000135724,-0.05317425029339928 +230695,1153.4750000135725,-0.05317399874957997 +230696,1153.4800000135726,-0.05317374713634851 +230697,1153.4850000135727,-0.05317349545366652 +230698,1153.4900000135729,-0.053173243701495565 +230699,1153.495000013573,-0.05317299187979718 +230700,1153.500000013573,-0.0531727399885329 +230701,1153.5050000135732,-0.05317248802766419 +230702,1153.5100000135733,-0.0531722359971525 +230703,1153.5150000135734,-0.05317198389695926 +230704,1153.5200000135735,-0.05317173172704588 +230705,1153.5250000135736,-0.05317147948737372 +230706,1153.5300000135737,-0.0531712271779041 +230707,1153.5350000135738,-0.053170974798598336 +230708,1153.540000013574,-0.0531707223494177 +230709,1153.545000013574,-0.05317046983032344 +230710,1153.5500000135742,-0.053170217241276775 +230711,1153.5550000135743,-0.053169964582238875 +230712,1153.5600000135744,-0.05316971185317091 +230713,1153.5650000135745,-0.05316945905403401 +230714,1153.5700000135746,-0.053169206184789264 +230715,1153.5750000135747,-0.053168953245397735 +230716,1153.5800000135748,-0.05316870023582047 +230717,1153.585000013575,-0.05316844715601846 +230718,1153.590000013575,-0.053168194005952685 +230719,1153.5950000135751,-0.05316794078558411 +230720,1153.6000000135753,-0.05316768749487362 +230721,1153.6050000135754,-0.053167434133782124 +230722,1153.6100000135755,-0.05316718070227047 +230723,1153.6150000135756,-0.05316692720029948 +230724,1153.6200000135757,-0.05316667362782995 +230725,1153.6250000135758,-0.05316641998482264 +230726,1153.630000013576,-0.05316616627123828 +230727,1153.635000013576,-0.05316591248703759 +230728,1153.6400000135761,-0.053165658632181235 +230729,1153.6450000135762,-0.053165404706629844 +230730,1153.6500000135763,-0.05316515071034405 +230731,1153.6550000135765,-0.05316489664328442 +230732,1153.6600000135766,-0.05316464250541152 +230733,1153.6650000135767,-0.053164388296685856 +230734,1153.6700000135768,-0.053164134017067925 +230735,1153.675000013577,-0.053163879666518185 +230736,1153.680000013577,-0.05316362524499706 +230737,1153.685000013577,-0.05316337075246496 +230738,1153.6900000135772,-0.053163116188882226 +230739,1153.6950000135773,-0.05316286155420923 +230740,1153.7000000135774,-0.053162606848406256 +230741,1153.7050000135775,-0.05316235207143358 +230742,1153.7100000135777,-0.05316209722325144 +230743,1153.7150000135778,-0.05316184230382007 +230744,1153.7200000135779,-0.05316158731309963 +230745,1153.725000013578,-0.0531613322510503 +230746,1153.730000013578,-0.05316107711763216 +230747,1153.7350000135782,-0.053160821912805335 +230748,1153.7400000135783,-0.05316056663652986 +230749,1153.7450000135784,-0.053160311288765784 +230750,1153.7500000135785,-0.05316005586947308 +230751,1153.7550000135786,-0.05315980037861173 +230752,1153.7600000135787,-0.053159544816141664 +230753,1153.7650000135789,-0.05315928918202278 +230754,1153.770000013579,-0.053159033476214944 +230755,1153.775000013579,-0.05315877769867801 +230756,1153.7800000135792,-0.05315852184937178 +230757,1153.7850000135793,-0.053158265928256045 +230758,1153.7900000135794,-0.05315800993529054 +230759,1153.7950000135795,-0.053157753870434976 +230760,1153.8000000135796,-0.05315749773364904 +230761,1153.8050000135797,-0.053157241524892374 +230762,1153.8100000135798,-0.05315698524412461 +230763,1153.81500001358,-0.05315672889130535 +230764,1153.82000001358,-0.053156472466394135 +230765,1153.8250000135802,-0.05315621596935048 +230766,1153.8300000135803,-0.05315595940013391 +230767,1153.8350000135804,-0.05315570275870387 +230768,1153.8400000135805,-0.05315544604501979 +230769,1153.8450000135806,-0.053155189259041065 +230770,1153.8500000135807,-0.05315493240072708 +230771,1153.8550000135808,-0.05315467547003715 +230772,1153.860000013581,-0.05315441846693059 +230773,1153.865000013581,-0.05315416139136669 +230774,1153.8700000135811,-0.05315390424330467 +230775,1153.8750000135813,-0.05315364702270374 +230776,1153.8800000135814,-0.05315338972952308 +230777,1153.8850000135815,-0.053153132363721836 +230778,1153.8900000135816,-0.05315287492525913 +230779,1153.8950000135817,-0.05315261741409402 +230780,1153.9000000135818,-0.053152359830185576 +230781,1153.905000013582,-0.05315210217349281 +230782,1153.910000013582,-0.053151844443974694 +230783,1153.9150000135821,-0.0531515866415902 +230784,1153.9200000135822,-0.05315132876629824 +230785,1153.9250000135823,-0.05315107081805769 +230786,1153.9300000135825,-0.05315081279682742 +230787,1153.9350000135826,-0.05315055470256627 +230788,1153.9400000135827,-0.053150296535232996 +230789,1153.9450000135828,-0.053150038294786386 +230790,1153.950000013583,-0.05314977998118515 +230791,1153.955000013583,-0.053149521594387995 +230792,1153.960000013583,-0.05314926313435358 +230793,1153.9650000135832,-0.05314900460104053 +230794,1153.9700000135833,-0.05314874599440745 +230795,1153.9750000135834,-0.05314848731441289 +230796,1153.9800000135835,-0.053148228561015386 +230797,1153.9850000135837,-0.05314796973417345 +230798,1153.9900000135838,-0.053147710833845535 +230799,1153.9950000135839,-0.053147451859990084 +230800,1154.000000013584,-0.05314719281256551 +230801,1154.005000013584,-0.05314693369153015 +230802,1154.0100000135842,-0.053146674496842364 +230803,1154.0150000135843,-0.053146415228460454 +230804,1154.0200000135844,-0.05314615588634269 +230805,1154.0250000135845,-0.0531458964704473 +230806,1154.0300000135846,-0.053145636980732505 +230807,1154.0350000135847,-0.05314537741715647 +230808,1154.0400000135849,-0.05314511777967732 +230809,1154.045000013585,-0.05314485806825317 +230810,1154.050000013585,-0.0531445982828421 +230811,1154.0550000135852,-0.053144338423402146 +230812,1154.0600000135853,-0.05314407848989131 +230813,1154.0650000135854,-0.053143818482267575 +230814,1154.0700000135855,-0.053143558400488886 +230815,1154.0750000135856,-0.05314329824451314 +230816,1154.0800000135857,-0.0531430380142982 +230817,1154.0850000135858,-0.05314277770980192 +230818,1154.090000013586,-0.05314251733098212 +230819,1154.095000013586,-0.053142256877796556 +230820,1154.1000000135862,-0.053141996350202975 +230821,1154.1050000135863,-0.05314173574815908 +230822,1154.1100000135864,-0.053141475071622556 +230823,1154.1150000135865,-0.05314121432055103 +230824,1154.1200000135866,-0.053140953494902124 +230825,1154.1250000135867,-0.053140692594633394 +230826,1154.1300000135868,-0.053140431619702395 +230827,1154.135000013587,-0.05314017057006665 +230828,1154.140000013587,-0.053139909445683586 +230829,1154.1450000135872,-0.05313964824651068 +230830,1154.1500000135873,-0.05313938697250532 +230831,1154.1550000135874,-0.05313912562362489 +230832,1154.1600000135875,-0.053138864199826726 +230833,1154.1650000135876,-0.05313860270106813 +230834,1154.1700000135877,-0.053138341127306365 +230835,1154.1750000135878,-0.05313807947849868 +230836,1154.180000013588,-0.053137817754602266 +230837,1154.185000013588,-0.0531375559555743 +230838,1154.1900000135881,-0.05313729408137192 +230839,1154.1950000135882,-0.05313703213195223 +230840,1154.2000000135884,-0.05313677010727229 +230841,1154.2050000135885,-0.05313650800728913 +230842,1154.2100000135886,-0.05313624583195974 +230843,1154.2150000135887,-0.05313598358124111 +230844,1154.2200000135888,-0.05313572125509015 +230845,1154.225000013589,-0.05313545885346376 +230846,1154.230000013589,-0.05313519637631882 +230847,1154.2350000135891,-0.05313493382361213 +230848,1154.2400000135892,-0.0531346711953005 +230849,1154.2450000135893,-0.05313440849134068 +230850,1154.2500000135894,-0.053134145711689416 +230851,1154.2550000135896,-0.053133882856303376 +230852,1154.2600000135897,-0.053133619925139215 +230853,1154.2650000135898,-0.05313335691815357 +230854,1154.2700000135899,-0.053133093835303014 +230855,1154.27500001359,-0.05313283067654412 +230856,1154.28000001359,-0.05313256744183339 +230857,1154.2850000135902,-0.053132304131127316 +230858,1154.2900000135903,-0.05313204074438234 +230859,1154.2950000135904,-0.05313177728155486 +230860,1154.3000000135905,-0.053131513742601284 +230861,1154.3050000135906,-0.05313125012747794 +230862,1154.3100000135908,-0.05313098643614114 +230863,1154.3150000135909,-0.05313072266854717 +230864,1154.320000013591,-0.053130458824652255 +230865,1154.325000013591,-0.053130194904412606 +230866,1154.3300000135912,-0.05312993090778439 +230867,1154.3350000135913,-0.053129666834723734 +230868,1154.3400000135914,-0.05312940268518676 +230869,1154.3450000135915,-0.053129138459129525 +230870,1154.3500000135916,-0.05312887415650805 +230871,1154.3550000135917,-0.05312860977727833 +230872,1154.3600000135918,-0.05312834532139634 +230873,1154.365000013592,-0.053128080788817984 +230874,1154.370000013592,-0.05312781617949917 +230875,1154.3750000135922,-0.05312755149339573 +230876,1154.3800000135923,-0.05312728673046351 +230877,1154.3850000135924,-0.05312702189065827 +230878,1154.3900000135925,-0.05312675697393577 +230879,1154.3950000135926,-0.05312649198025173 +230880,1154.4000000135927,-0.053126226909561806 +230881,1154.4050000135928,-0.05312596176182166 +230882,1154.410000013593,-0.05312569653698688 +230883,1154.415000013593,-0.05312543123501305 +230884,1154.4200000135932,-0.053125165855855715 +230885,1154.4250000135933,-0.05312490039947035 +230886,1154.4300000135934,-0.053124634865812426 +230887,1154.4350000135935,-0.05312436925483738 +230888,1154.4400000135936,-0.053124103566500595 +230889,1154.4450000135937,-0.05312383780075743 +230890,1154.4500000135938,-0.053123571957563204 +230891,1154.455000013594,-0.0531233060368732 +230892,1154.460000013594,-0.05312304003864267 +230893,1154.4650000135941,-0.05312277396282683 +230894,1154.4700000135942,-0.05312250780938085 +230895,1154.4750000135944,-0.05312224157825989 +230896,1154.4800000135945,-0.05312197526941904 +230897,1154.4850000135946,-0.05312170888281337 +230898,1154.4900000135947,-0.053121442418397904 +230899,1154.4950000135948,-0.05312117587612765 +230900,1154.500000013595,-0.05312090925595757 +230901,1154.505000013595,-0.05312064255784259 +230902,1154.5100000135951,-0.05312037578173758 +230903,1154.5150000135952,-0.053120108927597415 +230904,1154.5200000135953,-0.0531198419953769 +230905,1154.5250000135954,-0.05311957498503081 +230906,1154.5300000135956,-0.05311930789651389 +230907,1154.5350000135957,-0.05311904072978085 +230908,1154.5400000135958,-0.05311877348478636 +230909,1154.5450000135959,-0.05311850616148504 +230910,1154.550000013596,-0.053118238759831515 +230911,1154.555000013596,-0.053117971279780324 +230912,1154.5600000135962,-0.05311770372128599 +230913,1154.5650000135963,-0.05311743608430301 +230914,1154.5700000135964,-0.05311716836878583 +230915,1154.5750000135965,-0.053116900574688854 +230916,1154.5800000135966,-0.05311663270196647 +230917,1154.5850000135968,-0.05311636475057301 +230918,1154.5900000135969,-0.053116096720462795 +230919,1154.595000013597,-0.05311582861159006 +230920,1154.600000013597,-0.05311556042390906 +230921,1154.6050000135972,-0.05311529215737397 +230922,1154.6100000135973,-0.05311502381193896 +230923,1154.6150000135974,-0.05311475538755814 +230924,1154.6200000135975,-0.05311448688418558 +230925,1154.6250000135976,-0.05311421830177535 +230926,1154.6300000135977,-0.053113949640281446 +230927,1154.6350000135978,-0.05311368089965784 +230928,1154.640000013598,-0.05311341207985845 +230929,1154.645000013598,-0.05311314318083717 +230930,1154.6500000135982,-0.05311287420254787 +230931,1154.6550000135983,-0.05311260514494438 +230932,1154.6600000135984,-0.053112336007980473 +230933,1154.6650000135985,-0.053112066791609895 +230934,1154.6700000135986,-0.05311179749578634 +230935,1154.6750000135987,-0.05311152812046348 +230936,1154.6800000135988,-0.05311125866559496 +230937,1154.685000013599,-0.05311098913113438 +230938,1154.690000013599,-0.05311071951703529 +230939,1154.6950000135992,-0.053110449823251214 +230940,1154.7000000135993,-0.05311018004973563 +230941,1154.7050000135994,-0.05310991019644199 +230942,1154.7100000135995,-0.05310964026332368 +230943,1154.7150000135996,-0.0531093702503341 +230944,1154.7200000135997,-0.05310910015742654 +230945,1154.7250000135998,-0.05310882998455434 +230946,1154.7300000136,-0.05310855973167071 +230947,1154.7350000136,-0.0531082893987289 +230948,1154.7400000136001,-0.05310801898568208 +230949,1154.7450000136002,-0.0531077484924834 +230950,1154.7500000136004,-0.05310747791908594 +230951,1154.7550000136005,-0.05310720726544278 +230952,1154.7600000136006,-0.05310693653150695 +230953,1154.7650000136007,-0.05310666571723144 +230954,1154.7700000136008,-0.05310639482256919 +230955,1154.775000013601,-0.05310612384747312 +230956,1154.780000013601,-0.053105852791896085 +230957,1154.7850000136011,-0.05310558165579094 +230958,1154.7900000136012,-0.05310531043911049 +230959,1154.7950000136013,-0.05310503914180747 +230960,1154.8000000136014,-0.05310476776383462 +230961,1154.8050000136016,-0.05310449630514459 +230962,1154.8100000136017,-0.053104224765690065 +230963,1154.8150000136018,-0.05310395314542362 +230964,1154.8200000136019,-0.053103681444297834 +230965,1154.825000013602,-0.05310340966226522 +230966,1154.830000013602,-0.05310313779927829 +230967,1154.8350000136022,-0.05310286585528946 +230968,1154.8400000136023,-0.053102593830251184 +230969,1154.8450000136024,-0.053102321724115796 +230970,1154.8500000136025,-0.05310204953683564 +230971,1154.8550000136026,-0.05310177726836301 +230972,1154.8600000136028,-0.053101504918650164 +230973,1154.8650000136029,-0.053101232487649315 +230974,1154.870000013603,-0.05310095997531263 +230975,1154.875000013603,-0.053100687381592265 +230976,1154.8800000136032,-0.05310041470644032 +230977,1154.8850000136033,-0.05310014194980883 +230978,1154.8900000136034,-0.053099869111649836 +230979,1154.8950000136035,-0.05309959619191531 +230980,1154.9000000136036,-0.0530993231905572 +230981,1154.9050000136037,-0.053099050107527405 +230982,1154.9100000136038,-0.05309877694277777 +230983,1154.915000013604,-0.05309850369626015 +230984,1154.920000013604,-0.053098230367926304 +230985,1154.9250000136042,-0.05309795695772799 +230986,1154.9300000136043,-0.05309768346561691 +230987,1154.9350000136044,-0.05309740989154473 +230988,1154.9400000136045,-0.05309713623546307 +230989,1154.9450000136046,-0.05309686249732352 +230990,1154.9500000136047,-0.05309658867707762 +230991,1154.9550000136048,-0.053096314774676884 +230992,1154.960000013605,-0.05309604079007276 +230993,1154.965000013605,-0.0530957667232167 +230994,1154.9700000136052,-0.05309549257406008 +230995,1154.9750000136053,-0.05309521834255425 +230996,1154.9800000136054,-0.053094944028650504 +230997,1154.9850000136055,-0.053094669632300126 +230998,1154.9900000136056,-0.05309439515345433 +230999,1154.9950000136057,-0.053094120592064316 +231000,1155.0000000136058,-0.053093845948081225 +231001,1155.005000013606,-0.05309357122145616 +231002,1155.010000013606,-0.05309329641214018 +231003,1155.0150000136061,-0.05309302152008432 +231004,1155.0200000136062,-0.053092746545239565 +231005,1155.0250000136064,-0.05309247148755685 +231006,1155.0300000136065,-0.05309219634698709 +231007,1155.0350000136066,-0.053091921123481156 +231008,1155.0400000136067,-0.05309164581698986 +231009,1155.0450000136068,-0.05309137042746399 +231010,1155.050000013607,-0.053091094954854284 +231011,1155.055000013607,-0.05309081939911146 +231012,1155.0600000136071,-0.053090543760186154 +231013,1155.0650000136072,-0.053090268038029 +231014,1155.0700000136073,-0.053089992232590574 +231015,1155.0750000136075,-0.053089716343821425 +231016,1155.0800000136076,-0.05308944037167204 +231017,1155.0850000136077,-0.053089164316092875 +231018,1155.0900000136078,-0.05308888817703437 +231019,1155.095000013608,-0.05308861195444686 +231020,1155.100000013608,-0.05308833564828071 +231021,1155.105000013608,-0.0530880592584862 +231022,1155.1100000136082,-0.05308778278501359 +231023,1155.1150000136083,-0.053087506227813094 +231024,1155.1200000136084,-0.05308722958683488 +231025,1155.1250000136085,-0.053086952862029066 +231026,1155.1300000136087,-0.05308667605334576 +231027,1155.1350000136088,-0.05308639916073499 +231028,1155.1400000136089,-0.05308612218414676 +231029,1155.145000013609,-0.053085845123531046 +231030,1155.150000013609,-0.05308556797883776 +231031,1155.1550000136092,-0.053085290750016785 +231032,1155.1600000136093,-0.053085013437017964 +231033,1155.1650000136094,-0.053084736039791094 +231034,1155.1700000136095,-0.05308445855828593 +231035,1155.1750000136096,-0.05308418099245219 +231036,1155.1800000136097,-0.05308390334223954 +231037,1155.1850000136099,-0.05308362560759761 +231038,1155.19000001361,-0.05308334778847599 +231039,1155.19500001361,-0.053083069884824224 +231040,1155.2000000136102,-0.05308279189659183 +231041,1155.2050000136103,-0.053082513823728264 +231042,1155.2100000136104,-0.05308223566618294 +231043,1155.2150000136105,-0.05308195742390525 +231044,1155.2200000136106,-0.053081679096844525 +231045,1155.2250000136107,-0.053081400684950056 +231046,1155.2300000136108,-0.05308112218817111 +231047,1155.235000013611,-0.05308084360645688 +231048,1155.240000013611,-0.05308056493975654 +231049,1155.2450000136112,-0.05308028618801923 +231050,1155.2500000136113,-0.05308000735119402 +231051,1155.2550000136114,-0.05307972842922994 +231052,1155.2600000136115,-0.05307944942207603 +231053,1155.2650000136116,-0.05307917032968121 +231054,1155.2700000136117,-0.0530788911519944 +231055,1155.2750000136118,-0.053078611888964476 +231056,1155.280000013612,-0.05307833254054027 +231057,1155.285000013612,-0.05307805310667057 +231058,1155.2900000136121,-0.05307777358730411 +231059,1155.2950000136123,-0.0530774939823896 +231060,1155.3000000136124,-0.053077214291875695 +231061,1155.3050000136125,-0.053076934515711 +231062,1155.3100000136126,-0.053076654653844105 +231063,1155.3150000136127,-0.053076374706223534 +231064,1155.3200000136128,-0.053076094672797766 +231065,1155.325000013613,-0.05307581455351526 +231066,1155.330000013613,-0.0530755343483244 +231067,1155.3350000136131,-0.05307525405717354 +231068,1155.3400000136132,-0.05307497368001102 +231069,1155.3450000136133,-0.05307469321678508 +231070,1155.3500000136135,-0.05307441266744397 +231071,1155.3550000136136,-0.05307413203193586 +231072,1155.3600000136137,-0.05307385131020891 +231073,1155.3650000136138,-0.0530735705022112 +231074,1155.370000013614,-0.05307328960789079 +231075,1155.375000013614,-0.05307300862719569 +231076,1155.380000013614,-0.053072727560073876 +231077,1155.3850000136142,-0.05307244640647326 +231078,1155.3900000136143,-0.05307216516634174 +231079,1155.3950000136144,-0.05307188383962712 +231080,1155.4000000136145,-0.053071602426277224 +231081,1155.4050000136147,-0.05307132092623978 +231082,1155.4100000136148,-0.0530710393394625 +231083,1155.4150000136149,-0.05307075766589306 +231084,1155.420000013615,-0.05307047590547906 +231085,1155.425000013615,-0.05307019405816807 +231086,1155.4300000136152,-0.05306991212390763 +231087,1155.4350000136153,-0.05306963010264522 +231088,1155.4400000136154,-0.053069347994328296 +231089,1155.4450000136155,-0.05306906579890423 +231090,1155.4500000136156,-0.05306878351632041 +231091,1155.4550000136157,-0.053068501146524116 +231092,1155.4600000136159,-0.05306821868946261 +231093,1155.465000013616,-0.05306793614508312 +231094,1155.470000013616,-0.05306765351333284 +231095,1155.4750000136162,-0.05306737079415888 +231096,1155.4800000136163,-0.05306708798750833 +231097,1155.4850000136164,-0.05306680509332824 +231098,1155.4900000136165,-0.0530665221115656 +231099,1155.4950000136166,-0.05306623904216737 +231100,1155.5000000136167,-0.05306595588508046 +231101,1155.5050000136168,-0.05306567264025172 +231102,1155.510000013617,-0.05306538930762798 +231103,1155.515000013617,-0.05306510588715601 +231104,1155.5200000136172,-0.05306482237878255 +231105,1155.5250000136173,-0.053064538782454276 +231106,1155.5300000136174,-0.053064255098117824 +231107,1155.5350000136175,-0.05306397132571979 +231108,1155.5400000136176,-0.053063687465206726 +231109,1155.5450000136177,-0.053063403516525144 +231110,1155.5500000136178,-0.053063119479621494 +231111,1155.555000013618,-0.05306283535444219 +231112,1155.560000013618,-0.05306255114093361 +231113,1155.5650000136181,-0.05306226683904207 +231114,1155.5700000136183,-0.05306198244871385 +231115,1155.5750000136184,-0.053061697969895176 +231116,1155.5800000136185,-0.05306141340253224 +231117,1155.5850000136186,-0.053061128746571186 +231118,1155.5900000136187,-0.05306084400195812 +231119,1155.5950000136188,-0.053060559168639075 +231120,1155.600000013619,-0.05306027424656007 +231121,1155.605000013619,-0.05305998923566705 +231122,1155.6100000136191,-0.05305970413590593 +231123,1155.6150000136192,-0.053059418947222596 +231124,1155.6200000136193,-0.05305913366956287 +231125,1155.6250000136195,-0.053058848302872504 +231126,1155.6300000136196,-0.05305856284709725 +231127,1155.6350000136197,-0.05305827730218277 +231128,1155.6400000136198,-0.05305799166807473 +231129,1155.64500001362,-0.05305770594471871 +231130,1155.65000001362,-0.053057420132060246 +231131,1155.65500001362,-0.05305713423004485 +231132,1155.6600000136202,-0.053056848238617976 +231133,1155.6650000136203,-0.05305656215772503 +231134,1155.6700000136204,-0.053056275987311365 +231135,1155.6750000136205,-0.0530559897273223 +231136,1155.6800000136207,-0.053055703377703115 +231137,1155.6850000136208,-0.053055416938399005 +231138,1155.6900000136209,-0.053055130409355174 +231139,1155.695000013621,-0.05305484379051674 +231140,1155.700000013621,-0.053054557081828775 +231141,1155.7050000136212,-0.05305427028323634 +231142,1155.7100000136213,-0.053053983394684395 +231143,1155.7150000136214,-0.05305369641611789 +231144,1155.7200000136215,-0.05305340934748172 +231145,1155.7250000136216,-0.053053122188720735 +231146,1155.7300000136217,-0.05305283493977975 +231147,1155.7350000136219,-0.05305254760060349 +231148,1155.740000013622,-0.0530522601711367 +231149,1155.745000013622,-0.053051972651324 +231150,1155.7500000136222,-0.05305168504111002 +231151,1155.7550000136223,-0.05305139734043934 +231152,1155.7600000136224,-0.05305110954925645 +231153,1155.7650000136225,-0.05305082166750585 +231154,1155.7700000136226,-0.053050533695131935 +231155,1155.7750000136227,-0.0530502456320791 +231156,1155.7800000136228,-0.05304995747829167 +231157,1155.785000013623,-0.05304966923371393 +231158,1155.790000013623,-0.05304938089829011 +231159,1155.7950000136232,-0.053049092471964404 +231160,1155.8000000136233,-0.05304880395468094 +231161,1155.8050000136234,-0.053048515346383794 +231162,1155.8100000136235,-0.053048226647017034 +231163,1155.8150000136236,-0.05304793785652464 +231164,1155.8200000136237,-0.05304764897485058 +231165,1155.8250000136238,-0.05304736000193873 +231166,1155.830000013624,-0.053047070937732956 +231167,1155.835000013624,-0.053046781782177053 +231168,1155.8400000136241,-0.05304649253521478 +231169,1155.8450000136243,-0.05304620319678985 +231170,1155.8500000136244,-0.0530459137668459 +231171,1155.8550000136245,-0.053045624245326564 +231172,1155.8600000136246,-0.053045334632175395 +231173,1155.8650000136247,-0.05304504492733591 +231174,1155.8700000136248,-0.05304475513075157 +231175,1155.875000013625,-0.05304446524236581 +231176,1155.880000013625,-0.05304417526212197 +231177,1155.8850000136251,-0.05304388518996338 +231178,1155.8900000136252,-0.053043595025833314 +231179,1155.8950000136253,-0.053043304769675004 +231180,1155.9000000136255,-0.05304301442143161 +231181,1155.9050000136256,-0.053042723981046265 +231182,1155.9100000136257,-0.05304243344846205 +231183,1155.9150000136258,-0.05304214282362198 +231184,1155.920000013626,-0.053041852106469035 +231185,1155.925000013626,-0.053041561296946156 +231186,1155.930000013626,-0.05304127039499622 +231187,1155.9350000136262,-0.05304097940056205 +231188,1155.9400000136263,-0.05304068831358643 +231189,1155.9450000136264,-0.053040397134012096 +231190,1155.9500000136265,-0.05304010586178174 +231191,1155.9550000136267,-0.05303981449683798 +231192,1155.9600000136268,-0.05303952303912341 +231193,1155.9650000136269,-0.05303923148858057 +231194,1155.970000013627,-0.05303893984515194 +231195,1155.975000013627,-0.053038648108779965 +231196,1155.9800000136272,-0.05303835627940703 +231197,1155.9850000136273,-0.05303806435697545 +231198,1155.9900000136274,-0.05303777234142754 +231199,1155.9950000136275,-0.05303748023270553 +231200,1156.0000000136276,-0.05303718803075161 +231201,1156.0050000136278,-0.05303689573550791 +231202,1156.0100000136279,-0.053036603346916525 +231203,1156.015000013628,-0.053036310864919486 +231204,1156.020000013628,-0.053036018289458794 +231205,1156.0250000136282,-0.053035725620476384 +231206,1156.0300000136283,-0.05303543285791413 +231207,1156.0350000136284,-0.05303514000171389 +231208,1156.0400000136285,-0.053034847051817435 +231209,1156.0450000136286,-0.05303455400816653 +231210,1156.0500000136287,-0.05303426087070282 +231211,1156.0550000136288,-0.05303396763936798 +231212,1156.060000013629,-0.053033674314103565 +231213,1156.065000013629,-0.053033380894851136 +231214,1156.0700000136292,-0.053033087381552164 +231215,1156.0750000136293,-0.05303279377414809 +231216,1156.0800000136294,-0.05303250007258029 +231217,1156.0850000136295,-0.05303220627679011 +231218,1156.0900000136296,-0.05303191238671882 +231219,1156.0950000136297,-0.05303161840230764 +231220,1156.1000000136298,-0.05303132432349779 +231221,1156.10500001363,-0.05303103015023035 +231222,1156.11000001363,-0.05303073588244644 +231223,1156.1150000136302,-0.053030441520087054 +231224,1156.1200000136303,-0.0530301470630932 +231225,1156.1250000136304,-0.05302985251140578 +231226,1156.1300000136305,-0.05302955786496567 +231227,1156.1350000136306,-0.053029263123713706 +231228,1156.1400000136307,-0.05302896828759064 +231229,1156.1450000136308,-0.053028673356537215 +231230,1156.150000013631,-0.05302837833049408 +231231,1156.155000013631,-0.05302808320940185 +231232,1156.1600000136311,-0.05302778799320109 +231233,1156.1650000136312,-0.05302749268183233 +231234,1156.1700000136314,-0.05302719727523602 +231235,1156.1750000136315,-0.053026901773352564 +231236,1156.1800000136316,-0.05302660617612233 +231237,1156.1850000136317,-0.05302631048348562 +231238,1156.1900000136318,-0.053026014695382685 +231239,1156.195000013632,-0.05302571881175373 +231240,1156.200000013632,-0.05302542283253891 +231241,1156.2050000136321,-0.05302512675767831 +231242,1156.2100000136322,-0.05302483058711198 +231243,1156.2150000136323,-0.05302453432077992 +231244,1156.2200000136324,-0.053024237958622066 +231245,1156.2250000136326,-0.053023941500578306 +231246,1156.2300000136327,-0.053023644946588476 +231247,1156.2350000136328,-0.05302334829659236 +231248,1156.2400000136329,-0.0530230515505297 +231249,1156.245000013633,-0.05302275470834016 +231250,1156.250000013633,-0.053022457769963366 +231251,1156.2550000136332,-0.0530221607353389 +231252,1156.2600000136333,-0.05302186360440628 +231253,1156.2650000136334,-0.053021566377104964 +231254,1156.2700000136335,-0.053021269053374384 +231255,1156.2750000136336,-0.05302097163315389 +231256,1156.2800000136338,-0.053020674116382796 +231257,1156.2850000136339,-0.05302037650300035 +231258,1156.290000013634,-0.053020078792945756 +231259,1156.295000013634,-0.05301978098615817 +231260,1156.3000000136342,-0.05301948308257669 +231261,1156.3050000136343,-0.05301918508214034 +231262,1156.3100000136344,-0.05301888698478813 +231263,1156.3150000136345,-0.05301858879045898 +231264,1156.3200000136346,-0.05301829049909179 +231265,1156.3250000136347,-0.05301799211062537 +231266,1156.3300000136348,-0.053017693624998516 +231267,1156.335000013635,-0.05301739504214993 +231268,1156.340000013635,-0.0530170963620183 +231269,1156.3450000136352,-0.05301679758454222 +231270,1156.3500000136353,-0.053016498709660256 +231271,1156.3550000136354,-0.05301619973731093 +231272,1156.3600000136355,-0.053015900667432676 +231273,1156.3650000136356,-0.05301560149996389 +231274,1156.3700000136357,-0.05301530223484294 +231275,1156.3750000136358,-0.05301500287200808 +231276,1156.380000013636,-0.05301470341139758 +231277,1156.385000013636,-0.0530144038529496 +231278,1156.3900000136362,-0.053014104196602276 +231279,1156.3950000136363,-0.05301380444229369 +231280,1156.4000000136364,-0.05301350458996184 +231281,1156.4050000136365,-0.05301320463954471 +231282,1156.4100000136366,-0.0530129045909802 +231283,1156.4150000136367,-0.05301260444420616 +231284,1156.4200000136368,-0.0530123041991604 +231285,1156.425000013637,-0.05301200385578065 +231286,1156.430000013637,-0.053011703414004616 +231287,1156.4350000136371,-0.053011402873769924 +231288,1156.4400000136372,-0.05301110223501415 +231289,1156.4450000136374,-0.053010801497674835 +231290,1156.4500000136375,-0.053010500661689434 +231291,1156.4550000136376,-0.05301019972699538 +231292,1156.4600000136377,-0.05300989869353002 +231293,1156.4650000136378,-0.053009597561230665 +231294,1156.470000013638,-0.05300929633003456 +231295,1156.475000013638,-0.05300899499987889 +231296,1156.4800000136381,-0.053008693570700816 +231297,1156.4850000136382,-0.05300839204243741 +231298,1156.4900000136383,-0.053008090415025695 +231299,1156.4950000136384,-0.05300778868840264 +231300,1156.5000000136386,-0.05300748686250518 +231301,1156.5050000136387,-0.053007184937270156 +231302,1156.5100000136388,-0.05300688291263438 +231303,1156.5150000136389,-0.05300658078853461 +231304,1156.520000013639,-0.05300627856490752 +231305,1156.525000013639,-0.053005976241689755 +231306,1156.5300000136392,-0.0530056738188179 +231307,1156.5350000136393,-0.053005371296228475 +231308,1156.5400000136394,-0.05300506867385795 +231309,1156.5450000136395,-0.05300476595164274 +231310,1156.5500000136396,-0.053004463129519196 +231311,1156.5550000136398,-0.05300416020742361 +231312,1156.5600000136399,-0.053003857185292234 +231313,1156.56500001364,-0.05300355406306126 +231314,1156.57000001364,-0.05300325084066681 +231315,1156.5750000136402,-0.05300294751804495 +231316,1156.5800000136403,-0.05300264409513172 +231317,1156.5850000136404,-0.053002340571863045 +231318,1156.5900000136405,-0.05300203694817485 +231319,1156.5950000136406,-0.05300173322400298 +231320,1156.6000000136407,-0.05300142939928323 +231321,1156.6050000136408,-0.053001125473951305 +231322,1156.610000013641,-0.053000821447942915 +231323,1156.615000013641,-0.05300051732119366 +231324,1156.6200000136412,-0.053000213093639094 +231325,1156.6250000136413,-0.05299990876521473 +231326,1156.6300000136414,-0.05299960433585601 +231327,1156.6350000136415,-0.052999299805498314 +231328,1156.6400000136416,-0.05299899517407698 +231329,1156.6450000136417,-0.052998690441527274 +231330,1156.6500000136418,-0.05299838560778443 +231331,1156.655000013642,-0.05299808067278359 +231332,1156.660000013642,-0.05299777563645985 +231333,1156.6650000136422,-0.052997470498748256 +231334,1156.6700000136423,-0.05299716525958381 +231335,1156.6750000136424,-0.05299685991890142 +231336,1156.6800000136425,-0.052996554476635954 +231337,1156.6850000136426,-0.05299624893272223 +231338,1156.6900000136427,-0.05299594328709499 +231339,1156.6950000136428,-0.05299563753968893 +231340,1156.700000013643,-0.05299533169043869 +231341,1156.705000013643,-0.05299502573927885 +231342,1156.7100000136431,-0.05299471968614392 +231343,1156.7150000136432,-0.05299441353096838 +231344,1156.7200000136434,-0.05299410727368659 +231345,1156.7250000136435,-0.05299380091423293 +231346,1156.7300000136436,-0.05299349445254169 +231347,1156.7350000136437,-0.05299318788854706 +231348,1156.7400000136438,-0.052992881222183215 +231349,1156.745000013644,-0.05299257445338428 +231350,1156.750000013644,-0.05299226758208429 +231351,1156.7550000136441,-0.05299196060821726 +231352,1156.7600000136442,-0.05299165353171708 +231353,1156.7650000136443,-0.05299134635251764 +231354,1156.7700000136444,-0.05299103907055276 +231355,1156.7750000136446,-0.05299073168575619 +231356,1156.7800000136447,-0.05299042419806162 +231357,1156.7850000136448,-0.05299011660740269 +231358,1156.7900000136449,-0.05298980891371295 +231359,1156.795000013645,-0.052989501116925936 +231360,1156.800000013645,-0.05298919321697511 +231361,1156.8050000136452,-0.05298888521379385 +231362,1156.8100000136453,-0.052988577107315506 +231363,1156.8150000136454,-0.05298826889747335 +231364,1156.8200000136455,-0.05298796058420059 +231365,1156.8250000136456,-0.052987652167430385 +231366,1156.8300000136458,-0.05298734364709583 +231367,1156.8350000136459,-0.052987035023129965 +231368,1156.840000013646,-0.052986726295465775 +231369,1156.845000013646,-0.05298641746403615 +231370,1156.8500000136462,-0.052986108528773966 +231371,1156.8550000136463,-0.052985799489612004 +231372,1156.8600000136464,-0.05298549034648302 +231373,1156.8650000136465,-0.05298518109931966 +231374,1156.8700000136466,-0.05298487174805456 +231375,1156.8750000136467,-0.05298456229262025 +231376,1156.8800000136468,-0.05298425273294923 +231377,1156.885000013647,-0.05298394306897394 +231378,1156.890000013647,-0.052983633300626734 +231379,1156.8950000136472,-0.052983323427839936 +231380,1156.9000000136473,-0.052983013450545784 +231381,1156.9050000136474,-0.05298270336867647 +231382,1156.9100000136475,-0.05298239318216412 +231383,1156.9150000136476,-0.052982082890940786 +231384,1156.9200000136477,-0.05298177249493848 +231385,1156.9250000136478,-0.052981461994089145 +231386,1156.930000013648,-0.05298115138832466 +231387,1156.935000013648,-0.052980840677576836 +231388,1156.9400000136482,-0.05298052986177744 +231389,1156.9450000136483,-0.052980218940858165 +231390,1156.9500000136484,-0.05297990791475064 +231391,1156.9550000136485,-0.05297959678338644 +231392,1156.9600000136486,-0.05297928554669707 +231393,1156.9650000136487,-0.05297897420461398 +231394,1156.9700000136488,-0.05297866275706855 +231395,1156.975000013649,-0.05297835120399211 +231396,1156.980000013649,-0.05297803954531592 +231397,1156.9850000136491,-0.05297772778097118 +231398,1156.9900000136493,-0.05297741591088904 +231399,1156.9950000136494,-0.05297710393500055 +231400,1157.0000000136495,-0.05297679185323672 +231401,1157.0050000136496,-0.05297647966552853 +231402,1157.0100000136497,-0.05297616737180684 +231403,1157.0150000136498,-0.05297585497200248 +231404,1157.02000001365,-0.05297554246604622 +231405,1157.02500001365,-0.05297522985386875 +231406,1157.0300000136501,-0.0529749171354007 +231407,1157.0350000136502,-0.05297460431057266 +231408,1157.0400000136503,-0.05297429137931512 +231409,1157.0450000136505,-0.052973978341558536 +231410,1157.0500000136506,-0.05297366519723329 +231411,1157.0550000136507,-0.0529733519462697 +231412,1157.0600000136508,-0.05297303858859803 +231413,1157.065000013651,-0.05297272512414847 +231414,1157.070000013651,-0.052972411552851144 +231415,1157.075000013651,-0.05297209787463612 +231416,1157.0800000136512,-0.0529717840894334 +231417,1157.0850000136513,-0.052971470197172923 +231418,1157.0900000136514,-0.05297115619778455 +231419,1157.0950000136515,-0.05297084209119812 +231420,1157.1000000136517,-0.05297052787734336 +231421,1157.1050000136518,-0.05297021355614996 +231422,1157.1100000136519,-0.052969899127547536 +231423,1157.115000013652,-0.05296958459146565 +231424,1157.120000013652,-0.05296926994783378 +231425,1157.1250000136522,-0.05296895519658136 +231426,1157.1300000136523,-0.052968640337637755 +231427,1157.1350000136524,-0.05296832537093225 +231428,1157.1400000136525,-0.052968010296394086 +231429,1157.1450000136526,-0.05296769511395243 +231430,1157.1500000136527,-0.052967379823536394 +231431,1157.1550000136529,-0.052967064425075 +231432,1157.160000013653,-0.05296674891849722 +231433,1157.165000013653,-0.05296643330373198 +231434,1157.1700000136532,-0.052966117580708114 +231435,1157.1750000136533,-0.05296580174935441 +231436,1157.1800000136534,-0.052965485809599575 +231437,1157.1850000136535,-0.052965169761372256 +231438,1157.1900000136536,-0.052964853604601035 +231439,1157.1950000136537,-0.05296453733921442 +231440,1157.2000000136538,-0.05296422096514088 +231441,1157.205000013654,-0.05296390448230879 +231442,1157.210000013654,-0.05296358789064648 +231443,1157.2150000136542,-0.05296327119008221 +231444,1157.2200000136543,-0.052962954380544165 +231445,1157.2250000136544,-0.052962637461960456 +231446,1157.2300000136545,-0.05296232043425914 +231447,1157.2350000136546,-0.05296200329736823 +231448,1157.2400000136547,-0.05296168605121564 +231449,1157.2450000136548,-0.05296136869572922 +231450,1157.250000013655,-0.05296105123083679 +231451,1157.255000013655,-0.05296073365646605 +231452,1157.2600000136551,-0.05296041597254467 +231453,1157.2650000136553,-0.05296009817900024 +231454,1157.2700000136554,-0.052959780275760295 +231455,1157.2750000136555,-0.0529594622627523 +231456,1157.2800000136556,-0.052959144139903644 +231457,1157.2850000136557,-0.05295882590714165 +231458,1157.2900000136558,-0.052958507564393575 +231459,1157.295000013656,-0.05295818911158662 +231460,1157.300000013656,-0.052957870548647916 +231461,1157.3050000136561,-0.05295755187550452 +231462,1157.3100000136562,-0.05295723309208342 +231463,1157.3150000136563,-0.05295691419831154 +231464,1157.3200000136565,-0.05295659519411574 +231465,1157.3250000136566,-0.052956276079422805 +231466,1157.3300000136567,-0.05295595685415947 +231467,1157.3350000136568,-0.05295563751825237 +231468,1157.340000013657,-0.05295531807162813 +231469,1157.345000013657,-0.05295499851421323 +231470,1157.350000013657,-0.05295467884593414 +231471,1157.3550000136572,-0.05295435906671725 +231472,1157.3600000136573,-0.05295403917648887 +231473,1157.3650000136574,-0.052953719175175225 +231474,1157.3700000136575,-0.05295339906270253 +231475,1157.3750000136577,-0.052953078838996887 +231476,1157.3800000136578,-0.05295275850398433 +231477,1157.3850000136579,-0.05295243805759084 +231478,1157.390000013658,-0.05295211749974233 +231479,1157.395000013658,-0.05295179683036463 +231480,1157.4000000136582,-0.0529514760493835 +231481,1157.4050000136583,-0.052951155156724654 +231482,1157.4100000136584,-0.05295083415231372 +231483,1157.4150000136585,-0.05295051303607626 +231484,1157.4200000136586,-0.05295019180793777 +231485,1157.4250000136587,-0.052949870467823686 +231486,1157.4300000136589,-0.05294954901565935 +231487,1157.435000013659,-0.052949227451370054 +231488,1157.440000013659,-0.05294890577488101 +231489,1157.4450000136592,-0.05294858398611737 +231490,1157.4500000136593,-0.052948262085004215 +231491,1157.4550000136594,-0.05294794007146655 +231492,1157.4600000136595,-0.052947617945429314 +231493,1157.4650000136596,-0.05294729570681739 +231494,1157.4700000136597,-0.05294697335555556 +231495,1157.4750000136598,-0.05294665089156855 +231496,1157.48000001366,-0.05294632831478104 +231497,1157.48500001366,-0.05294600562511761 +231498,1157.4900000136602,-0.052945682822502775 +231499,1157.4950000136603,-0.052945359906861 +231500,1157.5000000136604,-0.05294503687811666 +231501,1157.5050000136605,-0.05294471373619405 +231502,1157.5100000136606,-0.05294439048101742 +231503,1157.5150000136607,-0.052944067112510936 +231504,1157.5200000136608,-0.05294374363059871 +231505,1157.525000013661,-0.05294342003520474 +231506,1157.530000013661,-0.052943096326253 +231507,1157.5350000136611,-0.052942772503667385 +231508,1157.5400000136613,-0.0529424485673717 +231509,1157.5450000136614,-0.05294212451728967 +231510,1157.5500000136615,-0.05294180035334499 +231511,1157.5550000136616,-0.052941476075461257 +231512,1157.5600000136617,-0.052941151683562 +231513,1157.5650000136618,-0.05294082717757067 +231514,1157.570000013662,-0.05294050255741067 +231515,1157.575000013662,-0.0529401778230053 +231516,1157.5800000136621,-0.052939852974277814 +231517,1157.5850000136622,-0.05293952801115137 +231518,1157.5900000136623,-0.05293920293354907 +231519,1157.5950000136625,-0.052938877741393955 +231520,1157.6000000136626,-0.05293855243460898 +231521,1157.6050000136627,-0.05293822701311702 +231522,1157.6100000136628,-0.052937901476840896 +231523,1157.615000013663,-0.05293757582570333 +231524,1157.620000013663,-0.05293725005962702 +231525,1157.625000013663,-0.05293692417853454 +231526,1157.6300000136632,-0.05293659818234842 +231527,1157.6350000136633,-0.052936272070991094 +231528,1157.6400000136634,-0.05293594584438496 +231529,1157.6450000136635,-0.05293561950245231 +231530,1157.6500000136637,-0.052935293045115385 +231531,1157.6550000136638,-0.05293496647229634 +231532,1157.6600000136639,-0.05293463978391726 +231533,1157.665000013664,-0.05293431297990016 +231534,1157.670000013664,-0.05293398606016697 +231535,1157.6750000136642,-0.05293365902463957 +231536,1157.6800000136643,-0.05293333187323974 +231537,1157.6850000136644,-0.05293300460588921 +231538,1157.6900000136645,-0.05293267722250961 +231539,1157.6950000136646,-0.05293234972302253 +231540,1157.7000000136647,-0.05293202210734946 +231541,1157.7050000136649,-0.05293169437541182 +231542,1157.710000013665,-0.05293136652713098 +231543,1157.715000013665,-0.0529310385624282 +231544,1157.7200000136652,-0.05293071048122468 +231545,1157.7250000136653,-0.05293038228344156 +231546,1157.7300000136654,-0.052930053968999885 +231547,1157.7350000136655,-0.052929725537820646 +231548,1157.7400000136656,-0.05292939698982474 +231549,1157.7450000136657,-0.052929068324933 +231550,1157.7500000136658,-0.05292873954306617 +231551,1157.755000013666,-0.05292841064414495 +231552,1157.760000013666,-0.05292808162808994 +231553,1157.7650000136662,-0.05292775249482168 +231554,1157.7700000136663,-0.05292742324426061 +231555,1157.7750000136664,-0.05292709387632712 +231556,1157.7800000136665,-0.052926764390941516 +231557,1157.7850000136666,-0.05292643478802403 +231558,1157.7900000136667,-0.0529261050674948 +231559,1157.7950000136668,-0.05292577522927394 +231560,1157.800000013667,-0.05292544527328143 +231561,1157.805000013667,-0.05292511519943722 +231562,1157.8100000136671,-0.052924785007661145 +231563,1157.8150000136673,-0.05292445469787299 +231564,1157.8200000136674,-0.05292412426999245 +231565,1157.8250000136675,-0.052923793723939155 +231566,1157.8300000136676,-0.05292346305963267 +231567,1157.8350000136677,-0.05292313227699245 +231568,1157.8400000136678,-0.0529228013759379 +231569,1157.845000013668,-0.052922470356388335 +231570,1157.850000013668,-0.052922139218263 +231571,1157.8550000136681,-0.05292180796148106 +231572,1157.8600000136682,-0.05292147658596163 +231573,1157.8650000136684,-0.0529211450916237 +231574,1157.8700000136685,-0.05292081347838621 +231575,1157.8750000136686,-0.05292048174616802 +231576,1157.8800000136687,-0.05292014989488793 +231577,1157.8850000136688,-0.05291981792446464 +231578,1157.890000013669,-0.05291948583481677 +231579,1157.895000013669,-0.05291915362586288 +231580,1157.9000000136691,-0.052918821297521436 +231581,1157.9050000136692,-0.05291848884971084 +231582,1157.9100000136693,-0.05291815628234943 +231583,1157.9150000136694,-0.05291782359535543 +231584,1157.9200000136696,-0.052917490788647 +231585,1157.9250000136697,-0.05291715786214223 +231586,1157.9300000136698,-0.05291682481575914 +231587,1157.9350000136699,-0.05291649164941565 +231588,1157.94000001367,-0.05291615836302961 +231589,1157.94500001367,-0.05291582495651881 +231590,1157.9500000136702,-0.052915491429800926 +231591,1157.9550000136703,-0.05291515778279357 +231592,1157.9600000136704,-0.052914824015414315 +231593,1157.9650000136705,-0.05291449012758058 +231594,1157.9700000136706,-0.05291415611920978 +231595,1157.9750000136708,-0.05291382199021919 +231596,1157.9800000136709,-0.05291348774052605 +231597,1157.985000013671,-0.05291315337004751 +231598,1157.990000013671,-0.05291281887870062 +231599,1157.9950000136712,-0.052912484266402375 +231600,1158.0000000136713,-0.052912149533069684 +231601,1158.0050000136714,-0.052911814678619364 +231602,1158.0100000136715,-0.05291147970296818 +231603,1158.0150000136716,-0.052911144606032794 +231604,1158.0200000136717,-0.05291080938772979 +231605,1158.0250000136718,-0.05291047404797567 +231606,1158.030000013672,-0.05291013858668687 +231607,1158.035000013672,-0.052909803003779746 +231608,1158.0400000136722,-0.05290946729917056 +231609,1158.0450000136723,-0.0529091314727755 +231610,1158.0500000136724,-0.05290879552451068 +231611,1158.0550000136725,-0.05290845945429213 +231612,1158.0600000136726,-0.05290812326203579 +231613,1158.0650000136727,-0.05290778694765753 +231614,1158.0700000136728,-0.05290745051107314 +231615,1158.075000013673,-0.05290711395219832 +231616,1158.080000013673,-0.05290677727094868 +231617,1158.0850000136732,-0.05290644046723979 +231618,1158.0900000136733,-0.052906103540987105 +231619,1158.0950000136734,-0.052905766492105995 +231620,1158.1000000136735,-0.052905429320511774 +231621,1158.1050000136736,-0.05290509202611966 +231622,1158.1100000136737,-0.052904754608844785 +231623,1158.1150000136738,-0.0529044170686022 +231624,1158.120000013674,-0.05290407940530689 +231625,1158.125000013674,-0.05290374161887374 +231626,1158.1300000136741,-0.052903403709217575 +231627,1158.1350000136742,-0.052903065676253094 +231628,1158.1400000136744,-0.05290272751989497 +231629,1158.1450000136745,-0.05290238924005776 +231630,1158.1500000136746,-0.052902050836655945 +231631,1158.1550000136747,-0.05290171230960392 +231632,1158.1600000136748,-0.052901373658815996 +231633,1158.165000013675,-0.05290103488420642 +231634,1158.170000013675,-0.052900695985689354 +231635,1158.1750000136751,-0.05290035696317884 +231636,1158.1800000136752,-0.052900017816588873 +231637,1158.1850000136753,-0.05289967854583337 +231638,1158.1900000136754,-0.05289933915082614 +231639,1158.1950000136756,-0.05289899963148092 +231640,1158.2000000136757,-0.05289865998771136 +231641,1158.2050000136758,-0.05289832021943103 +231642,1158.2100000136759,-0.05289798032655343 +231643,1158.215000013676,-0.05289764030899194 +231644,1158.220000013676,-0.0528973001666599 +231645,1158.2250000136762,-0.05289695989947055 +231646,1158.2300000136763,-0.05289661950733701 +231647,1158.2350000136764,-0.052896278990172366 +231648,1158.2400000136765,-0.052895938347889596 +231649,1158.2450000136766,-0.05289559758040161 +231650,1158.2500000136768,-0.05289525668762121 +231651,1158.2550000136769,-0.05289491566946114 +231652,1158.260000013677,-0.05289457452583403 +231653,1158.265000013677,-0.052894233256652455 +231654,1158.2700000136772,-0.05289389186182888 +231655,1158.2750000136773,-0.0528935503412757 +231656,1158.2800000136774,-0.05289320869490523 +231657,1158.2850000136775,-0.05289286692262968 +231658,1158.2900000136776,-0.052892525024361176 +231659,1158.2950000136777,-0.0528921830000118 +231660,1158.3000000136778,-0.05289184084949349 +231661,1158.305000013678,-0.05289149857271814 +231662,1158.310000013678,-0.052891156169597525 +231663,1158.3150000136782,-0.05289081364004336 +231664,1158.3200000136783,-0.05289047098396729 +231665,1158.3250000136784,-0.052890128201280834 +231666,1158.3300000136785,-0.05288978529189544 +231667,1158.3350000136786,-0.05288944225572247 +231668,1158.3400000136787,-0.052889099092673204 +231669,1158.3450000136788,-0.05288875580265885 +231670,1158.350000013679,-0.052888412385590486 +231671,1158.355000013679,-0.05288806884137915 +231672,1158.3600000136792,-0.05288772516993578 +231673,1158.3650000136793,-0.0528873813711712 +231674,1158.3700000136794,-0.052887037444996184 +231675,1158.3750000136795,-0.05288669339132139 +231676,1158.3800000136796,-0.0528863492100574 +231677,1158.3850000136797,-0.05288600490111473 +231678,1158.3900000136798,-0.05288566046440379 +231679,1158.39500001368,-0.05288531589983488 +231680,1158.40000001368,-0.05288497120731825 +231681,1158.4050000136801,-0.05288462638676403 +231682,1158.4100000136802,-0.0528842814380823 +231683,1158.4150000136804,-0.05288393636118302 +231684,1158.4200000136805,-0.05288359115597608 +231685,1158.4250000136806,-0.052883245822371264 +231686,1158.4300000136807,-0.05288290036027828 +231687,1158.4350000136808,-0.05288255476960676 +231688,1158.440000013681,-0.052882209050266214 +231689,1158.445000013681,-0.052881863202166104 +231690,1158.4500000136811,-0.05288151722521577 +231691,1158.4550000136812,-0.05288117111932448 +231692,1158.4600000136813,-0.052880824884401406 +231693,1158.4650000136814,-0.05288047852035564 +231694,1158.4700000136816,-0.05288013202709617 +231695,1158.4750000136817,-0.0528797854045319 +231696,1158.4800000136818,-0.052879438652571664 +231697,1158.4850000136819,-0.05287909177112418 +231698,1158.490000013682,-0.05287874476009809 +231699,1158.495000013682,-0.05287839761940194 +231700,1158.5000000136822,-0.0528780503489442 +231701,1158.5050000136823,-0.052877702948633226 +231702,1158.5100000136824,-0.052877355418377306 +231703,1158.5150000136825,-0.05287700775808463 +231704,1158.5200000136826,-0.0528766599676633 +231705,1158.5250000136828,-0.05287631204702132 +231706,1158.5300000136829,-0.0528759639960666 +231707,1158.535000013683,-0.052875615814706976 +231708,1158.540000013683,-0.052875267502850196 +231709,1158.5450000136832,-0.05287491906040388 +231710,1158.5500000136833,-0.052874570487275604 +231711,1158.5550000136834,-0.05287422178337283 +231712,1158.5600000136835,-0.05287387294860294 +231713,1158.5650000136836,-0.0528735239828732 +231714,1158.5700000136837,-0.05287317488609079 +231715,1158.5750000136838,-0.05287282565816284 +231716,1158.580000013684,-0.052872476298996336 +231717,1158.585000013684,-0.0528721268084982 +231718,1158.5900000136842,-0.05287177718657526 +231719,1158.5950000136843,-0.05287142743313424 +231720,1158.6000000136844,-0.052871077548081784 +231721,1158.6050000136845,-0.052870727531324435 +231722,1158.6100000136846,-0.05287037738276865 +231723,1158.6150000136847,-0.052870027102320805 +231724,1158.6200000136848,-0.05286967668988716 +231725,1158.625000013685,-0.052869326145373874 +231726,1158.630000013685,-0.05286897546868705 +231727,1158.6350000136852,-0.05286862465973269 +231728,1158.6400000136853,-0.052868273718416674 +231729,1158.6450000136854,-0.05286792264464482 +231730,1158.6500000136855,-0.052867571438322825 +231731,1158.6550000136856,-0.052867220099356335 +231732,1158.6600000136857,-0.052866868627650845 +231733,1158.6650000136858,-0.0528665170231118 +231734,1158.670000013686,-0.05286616528564454 +231735,1158.675000013686,-0.052865813415154304 +231736,1158.6800000136861,-0.05286546141154625 +231737,1158.6850000136862,-0.05286510927472543 +231738,1158.6900000136864,-0.0528647570045968 +231739,1158.6950000136865,-0.052864404601065236 +231740,1158.7000000136866,-0.052864052064035494 +231741,1158.7050000136867,-0.052863699393412275 +231742,1158.7100000136868,-0.05286334658910015 +231743,1158.715000013687,-0.05286299365100361 +231744,1158.720000013687,-0.052862640579027044 +231745,1158.7250000136871,-0.052862287373074766 +231746,1158.7300000136872,-0.05286193403305097 +231747,1158.7350000136873,-0.05286158055885977 +231748,1158.7400000136874,-0.05286122695040517 +231749,1158.7450000136876,-0.052860873207591086 +231750,1158.7500000136877,-0.052860519330321355 +231751,1158.7550000136878,-0.052860165318499686 +231752,1158.7600000136879,-0.05285981117202971 +231753,1158.765000013688,-0.05285945689081497 +231754,1158.770000013688,-0.0528591024747589 +231755,1158.7750000136882,-0.052858747923764854 +231756,1158.7800000136883,-0.05285839323773606 +231757,1158.7850000136884,-0.052858038416575666 +231758,1158.7900000136885,-0.05285768346018674 +231759,1158.7950000136887,-0.05285732836847221 +231760,1158.8000000136888,-0.05285697314133496 +231761,1158.8050000136889,-0.05285661777867775 +231762,1158.810000013689,-0.052856262280403216 +231763,1158.815000013689,-0.05285590664641396 +231764,1158.8200000136892,-0.05285555087661243 +231765,1158.8250000136893,-0.052855194970901 +231766,1158.8300000136894,-0.05285483892918194 +231767,1158.8350000136895,-0.052854482751357436 +231768,1158.8400000136896,-0.05285412643732957 +231769,1158.8450000136897,-0.05285376998700031 +231770,1158.8500000136899,-0.05285341340027153 +231771,1158.85500001369,-0.05285305667704505 +231772,1158.86000001369,-0.05285269981722253 +231773,1158.8650000136902,-0.05285234282070556 +231774,1158.8700000136903,-0.052851985687395624 +231775,1158.8750000136904,-0.052851628417194124 +231776,1158.8800000136905,-0.05285127101000234 +231777,1158.8850000136906,-0.05285091346572145 +231778,1158.8900000136907,-0.052850555784252566 +231779,1158.8950000136908,-0.05285019796549668 +231780,1158.900000013691,-0.05284984000935468 +231781,1158.905000013691,-0.052849481915727366 +231782,1158.9100000136912,-0.052849123684515435 +231783,1158.9150000136913,-0.05284876531561946 +231784,1158.9200000136914,-0.05284840680893996 +231785,1158.9250000136915,-0.05284804816437732 +231786,1158.9300000136916,-0.052847689381831826 +231787,1158.9350000136917,-0.052847330461203684 +231788,1158.9400000136918,-0.05284697140239298 +231789,1158.945000013692,-0.05284661220529971 +231790,1158.950000013692,-0.05284625286982376 +231791,1158.9550000136921,-0.052845893395864936 +231792,1158.9600000136923,-0.05284553378332292 +231793,1158.9650000136924,-0.052845174032097306 +231794,1158.9700000136925,-0.052844814142087575 +231795,1158.9750000136926,-0.05284445411319311 +231796,1158.9800000136927,-0.05284409394531319 +231797,1158.9850000136928,-0.05284373363834702 +231798,1158.990000013693,-0.05284337319219367 +231799,1158.995000013693,-0.052843012606752116 +231800,1159.0000000136931,-0.05284265188192124 +231801,1159.0050000136932,-0.052842291017599824 +231802,1159.0100000136933,-0.05284193001368652 +231803,1159.0150000136935,-0.05284156887007992 +231804,1159.0200000136936,-0.05284120758667849 +231805,1159.0250000136937,-0.05284084616338059 +231806,1159.0300000136938,-0.05284048460008448 +231807,1159.035000013694,-0.05284012289668833 +231808,1159.040000013694,-0.052839761053090184 +231809,1159.045000013694,-0.052839399069188005 +231810,1159.0500000136942,-0.05283903694487964 +231811,1159.0550000136943,-0.05283867468006283 +231812,1159.0600000136944,-0.052838312274635216 +231813,1159.0650000136945,-0.052837949728494336 +231814,1159.0700000136947,-0.05283758704153765 +231815,1159.0750000136948,-0.05283722421366245 +231816,1159.0800000136949,-0.052836861244766 +231817,1159.085000013695,-0.0528364981347454 +231818,1159.090000013695,-0.05283613488349768 +231819,1159.0950000136952,-0.05283577149091974 +231820,1159.1000000136953,-0.0528354079569084 +231821,1159.1050000136954,-0.052835044281360356 +231822,1159.1100000136955,-0.05283468046417221 +231823,1159.1150000136956,-0.05283431650524045 +231824,1159.1200000136957,-0.05283395240446149 +231825,1159.1250000136959,-0.05283358816173159 +231826,1159.130000013696,-0.05283322377694692 +231827,1159.135000013696,-0.05283285925000357 +231828,1159.1400000136962,-0.05283249458079749 +231829,1159.1450000136963,-0.05283212976922455 +231830,1159.1500000136964,-0.05283176481518051 +231831,1159.1550000136965,-0.052831399718561003 +231832,1159.1600000136966,-0.05283103447926159 +231833,1159.1650000136967,-0.05283066909717769 +231834,1159.1700000136968,-0.05283030357220464 +231835,1159.175000013697,-0.05282993790423766 +231836,1159.180000013697,-0.05282957209317185 +231837,1159.1850000136972,-0.05282920613890223 +231838,1159.1900000136973,-0.05282884004132369 +231839,1159.1950000136974,-0.05282847380033104 +231840,1159.2000000136975,-0.05282810741581895 +231841,1159.2050000136976,-0.052827740887682016 +231842,1159.2100000136977,-0.05282737421581469 +231843,1159.2150000136978,-0.05282700740011133 +231844,1159.220000013698,-0.052826640440466206 +231845,1159.225000013698,-0.052826273336773456 +231846,1159.2300000136981,-0.052825906088927115 +231847,1159.2350000136983,-0.05282553869682111 +231848,1159.2400000136984,-0.05282517116034927 +231849,1159.2450000136985,-0.052824803479405304 +231850,1159.2500000136986,-0.05282443565388282 +231851,1159.2550000136987,-0.052824067683675285 +231852,1159.2600000136988,-0.05282369956867611 +231853,1159.265000013699,-0.05282333130877855 +231854,1159.270000013699,-0.052822962903875795 +231855,1159.2750000136991,-0.05282259435386088 +231856,1159.2800000136992,-0.052822225658626765 +231857,1159.2850000136993,-0.05282185681806627 +231858,1159.2900000136995,-0.05282148783207213 +231859,1159.2950000136996,-0.052821118700536955 +231860,1159.3000000136997,-0.05282074942335326 +231861,1159.3050000136998,-0.05282038000041344 +231862,1159.3100000137,-0.052820010431609776 +231863,1159.3150000137,-0.052819640716834426 +231864,1159.3200000137,-0.05281927085597948 +231865,1159.3250000137002,-0.05281890084893687 +231866,1159.3300000137003,-0.05281853069559843 +231867,1159.3350000137004,-0.0528181603958559 +231868,1159.3400000137005,-0.05281778994960091 +231869,1159.3450000137007,-0.05281741935672494 +231870,1159.3500000137008,-0.052817048617119396 +231871,1159.3550000137009,-0.05281667773067557 +231872,1159.360000013701,-0.052816306697284605 +231873,1159.365000013701,-0.052815935516837574 +231874,1159.3700000137012,-0.05281556418922543 +231875,1159.3750000137013,-0.052815192714338995 +231876,1159.3800000137014,-0.05281482109206898 +231877,1159.3850000137015,-0.05281444932230601 +231878,1159.3900000137016,-0.05281407740494055 +231879,1159.3950000137017,-0.05281370533986301 +231880,1159.4000000137019,-0.052813333126963645 +231881,1159.405000013702,-0.05281296076613261 +231882,1159.410000013702,-0.052812588257259936 +231883,1159.4150000137022,-0.052812215600235565 +231884,1159.4200000137023,-0.052811842794949285 +231885,1159.4250000137024,-0.052811469841290815 +231886,1159.4300000137025,-0.05281109673914975 +231887,1159.4350000137026,-0.052810723488415534 +231888,1159.4400000137027,-0.05281035008897753 +231889,1159.4450000137028,-0.05280997654072497 +231890,1159.450000013703,-0.052809602843547 +231891,1159.455000013703,-0.05280922899733261 +231892,1159.4600000137032,-0.05280885500197072 +231893,1159.4650000137033,-0.05280848085735008 +231894,1159.4700000137034,-0.05280810656335936 +231895,1159.4750000137035,-0.052807732119887124 +231896,1159.4800000137036,-0.05280735752682181 +231897,1159.4850000137037,-0.052806982784051715 +231898,1159.4900000137038,-0.05280660789146505 +231899,1159.495000013704,-0.05280623284894989 +231900,1159.500000013704,-0.05280585765639421 +231901,1159.5050000137041,-0.05280548231368587 +231902,1159.5100000137043,-0.0528051068207126 +231903,1159.5150000137044,-0.052804731177362 +231904,1159.5200000137045,-0.052804355383521594 +231905,1159.5250000137046,-0.052803979439078774 +231906,1159.5300000137047,-0.052803603343920785 +231907,1159.5350000137048,-0.05280322709793478 +231908,1159.540000013705,-0.0528028507010078 +231909,1159.545000013705,-0.05280247415302675 +231910,1159.5500000137051,-0.052802097453878434 +231911,1159.5550000137052,-0.05280172060344951 +231912,1159.5600000137053,-0.052801343601626555 +231913,1159.5650000137055,-0.05280096644829602 +231914,1159.5700000137056,-0.05280058914334421 +231915,1159.5750000137057,-0.052800211686657335 +231916,1159.5800000137058,-0.05279983407812148 +231917,1159.585000013706,-0.0527994563176226 +231918,1159.590000013706,-0.05279907840504656 +231919,1159.595000013706,-0.05279870034027909 +231920,1159.6000000137062,-0.05279832212320577 +231921,1159.6050000137063,-0.05279794375371211 +231922,1159.6100000137064,-0.05279756523168346 +231923,1159.6150000137065,-0.05279718655700509 +231924,1159.6200000137067,-0.05279680772956212 +231925,1159.6250000137068,-0.05279642874923955 +231926,1159.6300000137069,-0.05279604961592229 +231927,1159.635000013707,-0.05279567032949508 +231928,1159.640000013707,-0.052795290889842576 +231929,1159.6450000137072,-0.05279491129684931 +231930,1159.6500000137073,-0.05279453155039967 +231931,1159.6550000137074,-0.05279415165037794 +231932,1159.6600000137075,-0.052793771596668294 +231933,1159.6650000137076,-0.05279339138915475 +231934,1159.6700000137077,-0.052793011027721236 +231935,1159.6750000137079,-0.05279263051225155 +231936,1159.680000013708,-0.05279224984262936 +231937,1159.685000013708,-0.052791869018738224 +231938,1159.6900000137082,-0.052791488040461576 +231939,1159.6950000137083,-0.052791106907682704 +231940,1159.7000000137084,-0.052790725620284806 +231941,1159.7050000137085,-0.05279034417815092 +231942,1159.7100000137086,-0.05278996258116401 +231943,1159.7150000137087,-0.05278958082920686 +231944,1159.7200000137088,-0.052789198922162175 +231945,1159.725000013709,-0.05278881685991253 +231946,1159.730000013709,-0.052788434642340364 +231947,1159.7350000137092,-0.05278805226932798 +231948,1159.7400000137093,-0.05278766974075758 +231949,1159.7450000137094,-0.05278728705651125 +231950,1159.7500000137095,-0.0527869042164709 +231951,1159.7550000137096,-0.052786521220518384 +231952,1159.7600000137097,-0.05278613806853538 +231953,1159.7650000137098,-0.05278575476040348 +231954,1159.77000001371,-0.0527853712960041 +231955,1159.77500001371,-0.05278498767521859 +231956,1159.7800000137102,-0.05278460389792812 +231957,1159.7850000137103,-0.05278421996401377 +231958,1159.7900000137104,-0.05278383587335648 +231959,1159.7950000137105,-0.05278345162583707 +231960,1159.8000000137106,-0.05278306722133624 +231961,1159.8050000137107,-0.052782682659734535 +231962,1159.8100000137108,-0.052782297940912416 +231963,1159.815000013711,-0.05278191306475017 +231964,1159.820000013711,-0.052781528031128004 +231965,1159.8250000137111,-0.052781142839925965 +231966,1159.8300000137112,-0.052780757491023976 +231967,1159.8350000137114,-0.052780371984301855 +231968,1159.8400000137115,-0.05277998631963927 +231969,1159.8450000137116,-0.05277960049691576 +231970,1159.8500000137117,-0.05277921451601077 +231971,1159.8550000137118,-0.052778828376803574 +231972,1159.860000013712,-0.05277844207917334 +231973,1159.865000013712,-0.05277805562299911 +231974,1159.8700000137121,-0.052777669008159764 +231975,1159.8750000137122,-0.052777282234534116 +231976,1159.8800000137123,-0.05277689530200078 +231977,1159.8850000137124,-0.0527765082104383 +231978,1159.8900000137126,-0.05277612095972505 +231979,1159.8950000137127,-0.0527757335497393 +231980,1159.9000000137128,-0.05277534598035919 +231981,1159.9050000137129,-0.05277495825146271 +231982,1159.910000013713,-0.052774570362927736 +231983,1159.915000013713,-0.052774182314632004 +231984,1159.9200000137132,-0.05277379410645311 +231985,1159.9250000137133,-0.05277340573826857 +231986,1159.9300000137134,-0.0527730172099557 +231987,1159.9350000137135,-0.05277262852139174 +231988,1159.9400000137136,-0.052772239672453765 +231989,1159.9450000137138,-0.052771850663018725 +231990,1159.9500000137139,-0.05277146149296347 +231991,1159.955000013714,-0.05277107216216467 +231992,1159.960000013714,-0.052770682670498885 +231993,1159.9650000137142,-0.052770293017842564 +231994,1159.9700000137143,-0.05276990320407198 +231995,1159.9750000137144,-0.05276951322906332 +231996,1159.9800000137145,-0.0527691230926926 +231997,1159.9850000137146,-0.05276873279483573 +231998,1159.9900000137147,-0.05276834233536846 +231999,1159.9950000137148,-0.05276795171416644 +232000,1160.000000013715,-0.05276756093110517 +232001,1160.005000013715,-0.05276716998606 +232002,1160.0100000137152,-0.052766778878906184 +232003,1160.0150000137153,-0.0527663876095188 +232004,1160.0200000137154,-0.052765996177772834 +232005,1160.0250000137155,-0.052765604583543096 +232006,1160.0300000137156,-0.0527652128267043 +232007,1160.0350000137157,-0.052764820907131 +232008,1160.0400000137158,-0.05276442882469762 +232009,1160.045000013716,-0.05276403657927845 +232010,1160.050000013716,-0.05276364417074766 +232011,1160.0550000137162,-0.05276325159897925 +232012,1160.0600000137163,-0.05276285886384713 +232013,1160.0650000137164,-0.05276246596522503 +232014,1160.0700000137165,-0.05276207290298659 +232015,1160.0750000137166,-0.05276167967700526 +232016,1160.0800000137167,-0.052761286287154395 +232017,1160.0850000137168,-0.0527608927333072 +232018,1160.090000013717,-0.05276049901533675 +232019,1160.095000013717,-0.05276010513311597 +232020,1160.1000000137171,-0.052759711086517655 +232021,1160.1050000137172,-0.05275931687541447 +232022,1160.1100000137174,-0.05275892249967893 +232023,1160.1150000137175,-0.05275852795918341 +232024,1160.1200000137176,-0.05275813325380017 +232025,1160.1250000137177,-0.052757738383401316 +232026,1160.1300000137178,-0.05275734334785881 +232027,1160.135000013718,-0.052756948147044486 +232028,1160.140000013718,-0.05275655278083004 +232029,1160.1450000137181,-0.05275615724908701 +232030,1160.1500000137182,-0.05275576155168683 +232031,1160.1550000137183,-0.052755365688500776 +232032,1160.1600000137184,-0.052754969659399964 +232033,1160.1650000137186,-0.052754573464255404 +232034,1160.1700000137187,-0.05275417710293795 +232035,1160.1750000137188,-0.05275378057531832 +232036,1160.1800000137189,-0.0527533838812671 +232037,1160.185000013719,-0.052752987020654715 +232038,1160.190000013719,-0.052752589993351466 +232039,1160.1950000137192,-0.0527521927992275 +232040,1160.2000000137193,-0.05275179543815284 +232041,1160.2050000137194,-0.05275139790999737 +232042,1160.2100000137195,-0.052751000214630805 +232043,1160.2150000137196,-0.052750602351922735 +232044,1160.2200000137198,-0.05275020432174263 +232045,1160.2250000137199,-0.052749806123959776 +232046,1160.23000001372,-0.05274940775844334 +232047,1160.23500001372,-0.05274900922506235 +232048,1160.2400000137202,-0.0527486105236857 +232049,1160.2450000137203,-0.0527482116541821 +232050,1160.2500000137204,-0.05274781261642016 +232051,1160.2550000137205,-0.05274741341026834 +232052,1160.2600000137206,-0.052747014035594945 +232053,1160.2650000137207,-0.05274661449226814 +232054,1160.2700000137208,-0.052746214780155926 +232055,1160.275000013721,-0.052745814899126206 +232056,1160.280000013721,-0.0527454148490467 +232057,1160.2850000137212,-0.052745014629785 +232058,1160.2900000137213,-0.05274461424120857 +232059,1160.2950000137214,-0.05274421368318468 +232060,1160.3000000137215,-0.05274381295558051 +232061,1160.3050000137216,-0.05274341205826305 +232062,1160.3100000137217,-0.05274301099109918 +232063,1160.3150000137218,-0.05274260975395562 +232064,1160.320000013722,-0.05274220834669893 +232065,1160.325000013722,-0.05274180676919555 +232066,1160.3300000137222,-0.05274140502131176 +232067,1160.3350000137223,-0.05274100310291369 +232068,1160.3400000137224,-0.052740601013867336 +232069,1160.3450000137225,-0.052740198754038535 +232070,1160.3500000137226,-0.052739796323292995 +232071,1160.3550000137227,-0.05273939372149624 +232072,1160.3600000137228,-0.052738990948513705 +232073,1160.365000013723,-0.052738588004210614 +232074,1160.370000013723,-0.05273818488845208 +232075,1160.3750000137231,-0.05273778160110307 +232076,1160.3800000137232,-0.05273737814202838 +232077,1160.3850000137234,-0.05273697451109268 +232078,1160.3900000137235,-0.052736570708160485 +232079,1160.3950000137236,-0.052736166733096154 +232080,1160.4000000137237,-0.05273576258576391 +232081,1160.4050000137238,-0.0527353582660278 +232082,1160.410000013724,-0.05273495377375177 +232083,1160.415000013724,-0.05273454910879956 +232084,1160.4200000137241,-0.052734144271034795 +232085,1160.4250000137242,-0.05273373926032095 +232086,1160.4300000137243,-0.05273333407652132 +232087,1160.4350000137244,-0.052732928719499084 +232088,1160.4400000137246,-0.052732523189117274 +232089,1160.4450000137247,-0.05273211748523873 +232090,1160.4500000137248,-0.05273171160772618 +232091,1160.4550000137249,-0.05273130555644218 +232092,1160.460000013725,-0.05273089933124914 +232093,1160.465000013725,-0.052730492932009314 +232094,1160.4700000137252,-0.05273008635858482 +232095,1160.4750000137253,-0.0527296796108376 +232096,1160.4800000137254,-0.05272927268862945 +232097,1160.4850000137255,-0.05272886559182204 +232098,1160.4900000137256,-0.05272845832027687 +232099,1160.4950000137258,-0.05272805087385527 +232100,1160.5000000137259,-0.05272764325241842 +232101,1160.505000013726,-0.05272723545582737 +232102,1160.510000013726,-0.052726827483943 +232103,1160.5150000137262,-0.052726419336626036 +232104,1160.5200000137263,-0.05272601101373706 +232105,1160.5250000137264,-0.0527256025151365 +232106,1160.5300000137265,-0.05272519384068461 +232107,1160.5350000137266,-0.052724784990241504 +232108,1160.5400000137267,-0.05272437596366713 +232109,1160.5450000137268,-0.052723966760821285 +232110,1160.550000013727,-0.05272355738156364 +232111,1160.555000013727,-0.05272314782575366 +232112,1160.5600000137272,-0.05272273809325068 +232113,1160.5650000137273,-0.052722328183913904 +232114,1160.5700000137274,-0.05272191809760233 +232115,1160.5750000137275,-0.05272150783417481 +232116,1160.5800000137276,-0.05272109739349008 +232117,1160.5850000137277,-0.05272068677540668 +232118,1160.5900000137278,-0.052720275979782995 +232119,1160.595000013728,-0.05271986500647728 +232120,1160.600000013728,-0.0527194538553476 +232121,1160.6050000137282,-0.05271904252625187 +232122,1160.6100000137283,-0.05271863101904786 +232123,1160.6150000137284,-0.05271821933359317 +232124,1160.6200000137285,-0.052717807469745255 +232125,1160.6250000137286,-0.05271739542736138 +232126,1160.6300000137287,-0.052716983206298695 +232127,1160.6350000137288,-0.052716570806414155 +232128,1160.640000013729,-0.05271615822756458 +232129,1160.645000013729,-0.052715745469606605 +232130,1160.6500000137291,-0.05271533253239673 +232131,1160.6550000137292,-0.052714919415791275 +232132,1160.6600000137294,-0.05271450611964642 +232133,1160.6650000137295,-0.05271409264381815 +232134,1160.6700000137296,-0.05271367898816233 +232135,1160.6750000137297,-0.05271326515253465 +232136,1160.6800000137298,-0.052712851136790605 +232137,1160.68500001373,-0.05271243694078558 +232138,1160.69000001373,-0.05271202256437478 +232139,1160.6950000137301,-0.05271160800741324 +232140,1160.7000000137302,-0.05271119326975581 +232141,1160.7050000137303,-0.05271077835125723 +232142,1160.7100000137305,-0.05271036325177205 +232143,1160.7150000137306,-0.052709947971154664 +232144,1160.7200000137307,-0.05270953250925928 +232145,1160.7250000137308,-0.052709116865939966 +232146,1160.730000013731,-0.052708701041050604 +232147,1160.735000013731,-0.05270828503444494 +232148,1160.740000013731,-0.05270786884597655 +232149,1160.7450000137312,-0.052707452475498844 +232150,1160.7500000137313,-0.052707035922865034 +232151,1160.7550000137314,-0.05270661918792821 +232152,1160.7600000137315,-0.0527062022705413 +232153,1160.7650000137317,-0.052705785170557025 +232154,1160.7700000137318,-0.052705367887827974 +232155,1160.7750000137319,-0.052704950422206555 +232156,1160.780000013732,-0.05270453277354501 +232157,1160.785000013732,-0.05270411494169544 +232158,1160.7900000137322,-0.05270369692650974 +232159,1160.7950000137323,-0.05270327872783966 +232160,1160.8000000137324,-0.05270286034553679 +232161,1160.8050000137325,-0.05270244177945254 +232162,1160.8100000137326,-0.052702023029438154 +232163,1160.8150000137327,-0.05270160409534471 +232164,1160.8200000137329,-0.052701184977023106 +232165,1160.825000013733,-0.05270076567432411 +232166,1160.830000013733,-0.05270034618709826 +232167,1160.8350000137332,-0.052699926515196 +232168,1160.8400000137333,-0.05269950665846753 +232169,1160.8450000137334,-0.052699086616762925 +232170,1160.8500000137335,-0.0526986663899321 +232171,1160.8550000137336,-0.05269824597782477 +232172,1160.8600000137337,-0.05269782538029048 +232173,1160.8650000137338,-0.052697404597178636 +232174,1160.870000013734,-0.05269698362833843 +232175,1160.875000013734,-0.052696562473618924 +232176,1160.8800000137342,-0.05269614113286899 +232177,1160.8850000137343,-0.05269571960593733 +232178,1160.8900000137344,-0.05269529789267247 +232179,1160.8950000137345,-0.05269487599292279 +232180,1160.9000000137346,-0.05269445390653645 +232181,1160.9050000137347,-0.05269403163336149 +232182,1160.9100000137348,-0.05269360917324573 +232183,1160.915000013735,-0.052693186526036856 +232184,1160.920000013735,-0.05269276369158236 +232185,1160.9250000137351,-0.05269234066972956 +232186,1160.9300000137353,-0.05269191746032563 +232187,1160.9350000137354,-0.05269149406321752 +232188,1160.9400000137355,-0.05269107047825204 +232189,1160.9450000137356,-0.05269064670527584 +232190,1160.9500000137357,-0.05269022274413534 +232191,1160.9550000137358,-0.052689798594676845 +232192,1160.960000013736,-0.05268937425674645 +232193,1160.965000013736,-0.052688949730190074 +232194,1160.9700000137361,-0.052688525014853486 +232195,1160.9750000137362,-0.05268810011058225 +232196,1160.9800000137363,-0.05268767501722178 +232197,1160.9850000137365,-0.052687249734617296 +232198,1160.9900000137366,-0.052686824262613854 +232199,1160.9950000137367,-0.05268639860105631 +232200,1161.0000000137368,-0.052685972749789374 +232201,1161.005000013737,-0.052685546708657556 +232202,1161.010000013737,-0.0526851204775052 +232203,1161.015000013737,-0.052684694056176457 +232204,1161.0200000137372,-0.05268426744451531 +232205,1161.0250000137373,-0.052683840642365594 +232206,1161.0300000137374,-0.05268341364957091 +232207,1161.0350000137375,-0.05268298646597471 +232208,1161.0400000137377,-0.05268255909142026 +232209,1161.0450000137378,-0.05268213152575065 +232210,1161.0500000137379,-0.052681703768808805 +232211,1161.055000013738,-0.05268127582043743 +232212,1161.060000013738,-0.05268084768047909 +232213,1161.0650000137382,-0.05268041934877615 +232214,1161.0700000137383,-0.0526799908251708 +232215,1161.0750000137384,-0.05267956210950506 +232216,1161.0800000137385,-0.05267913320162073 +232217,1161.0850000137386,-0.052678704101359455 +232218,1161.0900000137387,-0.05267827480856272 +232219,1161.0950000137389,-0.05267784532307179 +232220,1161.100000013739,-0.052677415644727776 +232221,1161.105000013739,-0.05267698577337157 +232222,1161.1100000137392,-0.05267655570884392 +232223,1161.1150000137393,-0.05267612545098537 +232224,1161.1200000137394,-0.05267569499963628 +232225,1161.1250000137395,-0.052675264354636854 +232226,1161.1300000137396,-0.05267483351582706 +232227,1161.1350000137397,-0.05267440248304674 +232228,1161.1400000137398,-0.0526739712561355 +232229,1161.14500001374,-0.052673539834932795 +232230,1161.15000001374,-0.05267310821927789 +232231,1161.1550000137402,-0.052672676409009855 +232232,1161.1600000137403,-0.05267224440396757 +232233,1161.1650000137404,-0.05267181220398975 +232234,1161.1700000137405,-0.05267137980891489 +232235,1161.1750000137406,-0.05267094721858135 +232236,1161.1800000137407,-0.05267051443282725 +232237,1161.1850000137408,-0.05267008145149055 +232238,1161.190000013741,-0.052669648274409016 +232239,1161.195000013741,-0.052669214901420236 +232240,1161.2000000137411,-0.052668781332361594 +232241,1161.2050000137413,-0.0526683475670703 +232242,1161.2100000137414,-0.05266791360538338 +232243,1161.2150000137415,-0.052667479447137636 +232244,1161.2200000137416,-0.05266704509216973 +232245,1161.2250000137417,-0.0526666105403161 +232246,1161.2300000137418,-0.052666175791413014 +232247,1161.235000013742,-0.052665740845296544 +232248,1161.240000013742,-0.052665305701802556 +232249,1161.2450000137421,-0.05266487036076676 +232250,1161.2500000137422,-0.05266443482202463 +232251,1161.2550000137423,-0.05266399908541149 +232252,1161.2600000137425,-0.052663563150762455 +232253,1161.2650000137426,-0.052663127017912446 +232254,1161.2700000137427,-0.0526626906866962 +232255,1161.2750000137428,-0.05266225415694825 +232256,1161.280000013743,-0.052661817428502955 +232257,1161.285000013743,-0.052661380501194476 +232258,1161.290000013743,-0.05266094337485676 +232259,1161.2950000137432,-0.05266050604932359 +232260,1161.3000000137433,-0.052660068524428526 +232261,1161.3050000137434,-0.052659630800004964 +232262,1161.3100000137435,-0.05265919287588609 +232263,1161.3150000137437,-0.052658754751904895 +232264,1161.3200000137438,-0.05265831642789418 +232265,1161.3250000137439,-0.052657877903686555 +232266,1161.330000013744,-0.05265743917911442 +232267,1161.335000013744,-0.05265700025400999 +232268,1161.3400000137442,-0.052656561128205284 +232269,1161.3450000137443,-0.052656121801532126 +232270,1161.3500000137444,-0.05265568227382213 +232271,1161.3550000137445,-0.05265524254490673 +232272,1161.3600000137446,-0.052654802614617156 +232273,1161.3650000137447,-0.052654362482784434 +232274,1161.3700000137449,-0.05265392214923942 +232275,1161.375000013745,-0.052653481613812746 +232276,1161.380000013745,-0.05265304087633484 +232277,1161.3850000137452,-0.05265259993663595 +232278,1161.3900000137453,-0.052652158794546114 +232279,1161.3950000137454,-0.05265171744989518 +232280,1161.4000000137455,-0.05265127590251278 +232281,1161.4050000137456,-0.05265083415222837 +232282,1161.4100000137457,-0.0526503921988712 +232283,1161.4150000137458,-0.052649950042270306 +232284,1161.420000013746,-0.05264950768225452 +232285,1161.425000013746,-0.0526490651186525 +232286,1161.4300000137462,-0.052648622351292675 +232287,1161.4350000137463,-0.05264817938000329 +232288,1161.4400000137464,-0.05264773620461237 +232289,1161.4450000137465,-0.05264729282494777 +232290,1161.4500000137466,-0.05264684924083712 +232291,1161.4550000137467,-0.05264640545210783 +232292,1161.4600000137468,-0.05264596145858714 +232293,1161.465000013747,-0.05264551726010207 +232294,1161.470000013747,-0.05264507285647943 +232295,1161.4750000137471,-0.05264462824754586 +232296,1161.4800000137473,-0.05264418343312774 +232297,1161.4850000137474,-0.0526437384130513 +232298,1161.4900000137475,-0.05264329318714252 +232299,1161.4950000137476,-0.05264284775522722 +232300,1161.5000000137477,-0.05264240211713098 +232301,1161.5050000137478,-0.05264195627267918 +232302,1161.510000013748,-0.052641510221697004 +232303,1161.515000013748,-0.05264106396400942 +232304,1161.5200000137481,-0.05264061749944119 +232305,1161.5250000137482,-0.05264017082781689 +232306,1161.5300000137483,-0.052639723948960854 +232307,1161.5350000137485,-0.05263927686269722 +232308,1161.5400000137486,-0.05263882956884993 +232309,1161.5450000137487,-0.052638382067242716 +232310,1161.5500000137488,-0.05263793435769908 +232311,1161.555000013749,-0.05263748644004234 +232312,1161.560000013749,-0.052637038314095594 +232313,1161.565000013749,-0.05263658997968173 +232314,1161.5700000137492,-0.052636141436623436 +232315,1161.5750000137493,-0.05263569268474316 +232316,1161.5800000137494,-0.05263524372386318 +232317,1161.5850000137495,-0.052634794553805535 +232318,1161.5900000137497,-0.05263434517439207 +232319,1161.5950000137498,-0.052633895585444394 +232320,1161.6000000137499,-0.052633445786783924 +232321,1161.60500001375,-0.05263299577823188 +232322,1161.61000001375,-0.052632545559609216 +232323,1161.6150000137502,-0.05263209513073672 +232324,1161.6200000137503,-0.052631644491434953 +232325,1161.6250000137504,-0.05263119364152428 +232326,1161.6300000137505,-0.05263074258082482 +232327,1161.6350000137506,-0.052630291309156474 +232328,1161.6400000137508,-0.05262983982633898 +232329,1161.6450000137509,-0.052629388132191805 +232330,1161.650000013751,-0.05262893622653424 +232331,1161.655000013751,-0.05262848410918534 +232332,1161.6600000137512,-0.052628031779963946 +232333,1161.6650000137513,-0.05262757923868868 +232334,1161.6700000137514,-0.05262712648517797 +232335,1161.6750000137515,-0.05262667351924999 +232336,1161.6800000137516,-0.05262622034072273 +232337,1161.6850000137517,-0.052625766949413934 +232338,1161.6900000137518,-0.05262531334514115 +232339,1161.695000013752,-0.05262485952772171 +232340,1161.700000013752,-0.05262440549697271 +232341,1161.7050000137522,-0.052623951252711056 +232342,1161.7100000137523,-0.05262349679475338 +232343,1161.7150000137524,-0.052623042122916165 +232344,1161.7200000137525,-0.05262258723701561 +232345,1161.7250000137526,-0.052622132136867734 +232346,1161.7300000137527,-0.05262167682228832 +232347,1161.7350000137528,-0.05262122129309293 +232348,1161.740000013753,-0.052620765549096914 +232349,1161.745000013753,-0.0526203095901154 +232350,1161.7500000137532,-0.052619853415963265 +232351,1161.7550000137533,-0.052619397026455204 +232352,1161.7600000137534,-0.052618940421405684 +232353,1161.7650000137535,-0.05261848360062892 +232354,1161.7700000137536,-0.05261802656393893 +232355,1161.7750000137537,-0.052617569311149484 +232356,1161.7800000137538,-0.05261711184207417 +232357,1161.785000013754,-0.05261665415652631 +232358,1161.790000013754,-0.05261619625431901 +232359,1161.7950000137541,-0.05261573813526516 +232360,1161.8000000137542,-0.05261527979917745 +232361,1161.8050000137544,-0.05261482124586827 +232362,1161.8100000137545,-0.052614362475149876 +232363,1161.8150000137546,-0.05261390348683422 +232364,1161.8200000137547,-0.05261344428073308 +232365,1161.8250000137548,-0.05261298485665796 +232366,1161.830000013755,-0.05261252521442019 +232367,1161.835000013755,-0.05261206535383083 +232368,1161.8400000137551,-0.052611605274700726 +232369,1161.8450000137552,-0.052611144976840496 +232370,1161.8500000137553,-0.05261068446006054 +232371,1161.8550000137554,-0.052610223724171006 +232372,1161.8600000137556,-0.05260976276898184 +232373,1161.8650000137557,-0.05260930159430272 +232374,1161.8700000137558,-0.052608840199943135 +232375,1161.8750000137559,-0.0526083785857123 +232376,1161.880000013756,-0.05260791675141924 +232377,1161.885000013756,-0.05260745469687274 +232378,1161.8900000137562,-0.05260699242188132 +232379,1161.8950000137563,-0.0526065299262533 +232380,1161.9000000137564,-0.05260606720979678 +232381,1161.9050000137565,-0.052605604272319584 +232382,1161.9100000137566,-0.05260514111362934 +232383,1161.9150000137568,-0.05260467773353344 +232384,1161.9200000137569,-0.05260421413183899 +232385,1161.925000013757,-0.05260375030835293 +232386,1161.930000013757,-0.05260328626288194 +232387,1161.9350000137572,-0.052602821995232446 +232388,1161.9400000137573,-0.05260235750521066 +232389,1161.9450000137574,-0.05260189279262256 +232390,1161.9500000137575,-0.05260142785727389 +232391,1161.9550000137576,-0.052600962698970126 +232392,1161.9600000137577,-0.052600497317516544 +232393,1161.9650000137578,-0.05260003171271817 +232394,1161.970000013758,-0.05259956588437976 +232395,1161.975000013758,-0.052599099832305894 +232396,1161.9800000137582,-0.052598633556300886 +232397,1161.9850000137583,-0.05259816705616878 +232398,1161.9900000137584,-0.052597700331713425 +232399,1161.9950000137585,-0.05259723338273841 +232400,1162.0000000137586,-0.05259676620904709 +232401,1162.0050000137587,-0.052596298810442574 +232402,1162.0100000137588,-0.05259583118672774 +232403,1162.015000013759,-0.05259536333770521 +232404,1162.020000013759,-0.05259489526317738 +232405,1162.0250000137592,-0.05259442696294639 +232406,1162.0300000137593,-0.05259395843681415 +232407,1162.0350000137594,-0.05259348968458232 +232408,1162.0400000137595,-0.05259302070605233 +232409,1162.0450000137596,-0.05259255150102534 +232410,1162.0500000137597,-0.05259208206930228 +232411,1162.0550000137598,-0.05259161241068385 +232412,1162.06000001376,-0.05259114252497049 +232413,1162.06500001376,-0.052590672411962414 +232414,1162.0700000137601,-0.052590202071459556 +232415,1162.0750000137602,-0.052589731503261634 +232416,1162.0800000137604,-0.052589260707168094 +232417,1162.0850000137605,-0.05258878968297818 +232418,1162.0900000137606,-0.05258831843049083 +232419,1162.0950000137607,-0.052587846949504795 +232420,1162.1000000137608,-0.05258737523981853 +232421,1162.105000013761,-0.05258690330123027 +232422,1162.110000013761,-0.052586431133537975 +232423,1162.1150000137611,-0.052585958736539394 +232424,1162.1200000137612,-0.05258548611003201 +232425,1162.1250000137613,-0.05258501325381303 +232426,1162.1300000137614,-0.05258454016767945 +232427,1162.1350000137616,-0.052584066851428 +232428,1162.1400000137617,-0.05258359330485516 +232429,1162.1450000137618,-0.05258311952775715 +232430,1162.1500000137619,-0.052582645519929944 +232431,1162.155000013762,-0.05258217128116928 +232432,1162.160000013762,-0.05258169681127062 +232433,1162.1650000137622,-0.05258122211002919 +232434,1162.1700000137623,-0.05258074717723994 +232435,1162.1750000137624,-0.052580272012697604 +232436,1162.1800000137625,-0.052579796616196633 +232437,1162.1850000137626,-0.05257932098753122 +232438,1162.1900000137628,-0.05257884512649533 +232439,1162.1950000137629,-0.05257836903288265 +232440,1162.200000013763,-0.05257789270648662 +232441,1162.205000013763,-0.052577416147100424 +232442,1162.2100000137632,-0.05257693935451698 +232443,1162.2150000137633,-0.05257646232852898 +232444,1162.2200000137634,-0.052575985068928806 +232445,1162.2250000137635,-0.05257550757550863 +232446,1162.2300000137636,-0.05257502984806034 +232447,1162.2350000137637,-0.05257455188637559 +232448,1162.2400000137638,-0.05257407369024574 +232449,1162.245000013764,-0.052573595259461925 +232450,1162.250000013764,-0.052573116593814986 +232451,1162.2550000137642,-0.052572637693095545 +232452,1162.2600000137643,-0.05257215855709393 +232453,1162.2650000137644,-0.05257167918560022 +232454,1162.2700000137645,-0.05257119957840423 +232455,1162.2750000137646,-0.05257071973529553 +232456,1162.2800000137647,-0.052570239656063396 +232457,1162.2850000137648,-0.05256975934049686 +232458,1162.290000013765,-0.052569278788384695 +232459,1162.295000013765,-0.052568797999515395 +232460,1162.3000000137652,-0.052568316973677226 +232461,1162.3050000137653,-0.052567835710658144 +232462,1162.3100000137654,-0.05256735421024585 +232463,1162.3150000137655,-0.05256687247222781 +232464,1162.3200000137656,-0.05256639049639121 +232465,1162.3250000137657,-0.052565908282522944 +232466,1162.3300000137658,-0.05256542583040965 +232467,1162.335000013766,-0.05256494313983774 +232468,1162.340000013766,-0.052564460210593314 +232469,1162.3450000137661,-0.05256397704246221 +232470,1162.3500000137662,-0.05256349363523002 +232471,1162.3550000137664,-0.05256300998868204 +232472,1162.3600000137665,-0.05256252610260331 +232473,1162.3650000137666,-0.05256204197677862 +232474,1162.3700000137667,-0.05256155761099244 +232475,1162.3750000137668,-0.05256107300502902 +232476,1162.380000013767,-0.05256058815867232 +232477,1162.385000013767,-0.05256010307170603 +232478,1162.3900000137671,-0.05255961774391355 +232479,1162.3950000137672,-0.05255913217507804 +232480,1162.4000000137673,-0.05255864636498235 +232481,1162.4050000137674,-0.05255816031340912 +232482,1162.4100000137676,-0.05255767402014064 +232483,1162.4150000137677,-0.052557187484958974 +232484,1162.4200000137678,-0.052556700707645905 +232485,1162.4250000137679,-0.05255621368798292 +232486,1162.430000013768,-0.052555726425751244 +232487,1162.435000013768,-0.052555238920731856 +232488,1162.4400000137682,-0.05255475117270541 +232489,1162.4450000137683,-0.052554263181452315 +232490,1162.4500000137684,-0.05255377494675268 +232491,1162.4550000137685,-0.05255328646838636 +232492,1162.4600000137686,-0.05255279774613291 +232493,1162.4650000137688,-0.052552308779771635 +232494,1162.4700000137689,-0.05255181956908153 +232495,1162.475000013769,-0.05255133011384133 +232496,1162.480000013769,-0.05255084041382949 +232497,1162.4850000137692,-0.05255035046882418 +232498,1162.4900000137693,-0.05254986027860329 +232499,1162.4950000137694,-0.05254936984294443 +232500,1162.5000000137695,-0.052548879161624915 +232501,1162.5050000137696,-0.052548388234421796 +232502,1162.5100000137697,-0.05254789706111184 +232503,1162.5150000137698,-0.05254740564147153 +232504,1162.52000001377,-0.052546913975277054 +232505,1162.52500001377,-0.05254642206230432 +232506,1162.5300000137702,-0.05254592990232897 +232507,1162.5350000137703,-0.052545437495126336 +232508,1162.5400000137704,-0.05254494484047147 +232509,1162.5450000137705,-0.052544451938139176 +232510,1162.5500000137706,-0.052543958787903904 +232511,1162.5550000137707,-0.05254346538953988 +232512,1162.5600000137708,-0.052542971742821 +232513,1162.565000013771,-0.052542477847520884 +232514,1162.570000013771,-0.0525419837034129 +232515,1162.5750000137712,-0.05254148931027007 +232516,1162.5800000137713,-0.05254099466786515 +232517,1162.5850000137714,-0.05254049977597062 +232518,1162.5900000137715,-0.05254000463435865 +232519,1162.5950000137716,-0.052539509242801145 +232520,1162.6000000137717,-0.052539013601069696 +232521,1162.6050000137718,-0.05253851770893562 +232522,1162.610000013772,-0.05253802156616992 +232523,1162.615000013772,-0.052537525172543315 +232524,1162.6200000137721,-0.052537028527826254 +232525,1162.6250000137723,-0.05253653163178885 +232526,1162.6300000137724,-0.052536034484200966 +232527,1162.6350000137725,-0.05253553708483214 +232528,1162.6400000137726,-0.05253503943345163 +232529,1162.6450000137727,-0.05253454152982839 +232530,1162.6500000137728,-0.0525340433737311 +232531,1162.655000013773,-0.0525335449649281 +232532,1162.660000013773,-0.052533046303187475 +232533,1162.6650000137731,-0.052532547388277014 +232534,1162.6700000137732,-0.05253204821996417 +232535,1162.6750000137733,-0.052531548798016116 +232536,1162.6800000137735,-0.05253104912219975 +232537,1162.6850000137736,-0.05253054919228164 +232538,1162.6900000137737,-0.05253004900802806 +232539,1162.6950000137738,-0.052529548569205005 +232540,1162.700000013774,-0.05252904787557815 +232541,1162.705000013774,-0.052528546926912854 +232542,1162.710000013774,-0.05252804572297421 +232543,1162.7150000137742,-0.052527544263526994 +232544,1162.7200000137743,-0.05252704254833567 +232545,1162.7250000137744,-0.05252654057716441 +232546,1162.7300000137745,-0.05252603834977708 +232547,1162.7350000137747,-0.052525535865937244 +232548,1162.7400000137748,-0.05252503312540814 +232549,1162.7450000137749,-0.052524530127952745 +232550,1162.750000013775,-0.052524026873333685 +232551,1162.755000013775,-0.052523523361313294 +232552,1162.7600000137752,-0.052523019591653626 +232553,1162.7650000137753,-0.05252251556411638 +232554,1162.7700000137754,-0.05252201127846298 +232555,1162.7750000137755,-0.05252150673445456 +232556,1162.7800000137756,-0.0525210019318519 +232557,1162.7850000137757,-0.05252049687041549 +232558,1162.7900000137759,-0.0525199915499055 +232559,1162.795000013776,-0.05251948597008182 +232560,1162.800000013776,-0.05251898013070401 +232561,1162.8050000137762,-0.052518474031531315 +232562,1162.8100000137763,-0.052517967672322655 +232563,1162.8150000137764,-0.05251746105283668 +232564,1162.8200000137765,-0.05251695417283169 +232565,1162.8250000137766,-0.052516447032065684 +232566,1162.8300000137767,-0.05251593963029635 +232567,1162.8350000137768,-0.05251543196728105 +232568,1162.840000013777,-0.05251492404277684 +232569,1162.845000013777,-0.052514415856540465 +232570,1162.8500000137772,-0.05251390740832835 +232571,1162.8550000137773,-0.05251339869789659 +232572,1162.8600000137774,-0.05251288972500099 +232573,1162.8650000137775,-0.052512380489397006 +232574,1162.8700000137776,-0.05251187099083981 +232575,1162.8750000137777,-0.05251136122908423 +232576,1162.8800000137778,-0.05251085120388477 +232577,1162.885000013778,-0.05251034091499564 +232578,1162.890000013778,-0.05250983036217072 +232579,1162.8950000137781,-0.05250931954516355 +232580,1162.9000000137783,-0.05250880846372738 +232581,1162.9050000137784,-0.0525082971176151 +232582,1162.9100000137785,-0.05250778550657933 +232583,1162.9150000137786,-0.05250727363037231 +232584,1162.9200000137787,-0.052506761488745994 +232585,1162.9250000137788,-0.052506249081451996 +232586,1162.930000013779,-0.05250573640824162 +232587,1162.935000013779,-0.052505223468865825 +232588,1162.9400000137791,-0.05250471026307525 +232589,1162.9450000137792,-0.052504196790620246 +232590,1162.9500000137793,-0.05250368305125076 +232591,1162.9550000137795,-0.052503169044716476 +232592,1162.9600000137796,-0.052502654770766724 +232593,1162.9650000137797,-0.052502140229150514 +232594,1162.9700000137798,-0.05250162541961652 +232595,1162.97500001378,-0.05250111034191309 +232596,1162.98000001378,-0.05250059499578825 +232597,1162.98500001378,-0.052500079380989675 +232598,1162.9900000137802,-0.052499563497264735 +232599,1162.9950000137803,-0.052499047344360436 +232600,1163.0000000137804,-0.05249853092202348 +232601,1163.0050000137805,-0.05249801423000022 +232602,1163.0100000137807,-0.052497497268036694 +232603,1163.0150000137808,-0.052496980035878583 +232604,1163.0200000137809,-0.05249646253327124 +232605,1163.025000013781,-0.05249594475995969 +232606,1163.030000013781,-0.05249542671568861 +232607,1163.0350000137812,-0.052494908400202364 +232608,1163.0400000137813,-0.05249438981324497 +232609,1163.0450000137814,-0.05249387095456008 +232610,1163.0500000137815,-0.052493351823891046 +232611,1163.0550000137816,-0.052492832420980864 +232612,1163.0600000137817,-0.05249231274557218 +232613,1163.0650000137819,-0.05249179279740733 +232614,1163.070000013782,-0.052491272576228286 +232615,1163.075000013782,-0.05249075208177668 +232616,1163.0800000137822,-0.052490231313793816 +232617,1163.0850000137823,-0.05248971027202063 +232618,1163.0900000137824,-0.05248918895619775 +232619,1163.0950000137825,-0.05248866736606546 +232620,1163.1000000137826,-0.052488145501363645 +232621,1163.1050000137827,-0.05248762336183192 +232622,1163.1100000137828,-0.0524871009472095 +232623,1163.115000013783,-0.05248657825723528 +232624,1163.120000013783,-0.0524860552916478 +232625,1163.1250000137832,-0.05248553205018526 +232626,1163.1300000137833,-0.052485008532585496 +232627,1163.1350000137834,-0.052484484738586024 +232628,1163.1400000137835,-0.05248396066792398 +232629,1163.1450000137836,-0.05248343632033618 +232630,1163.1500000137837,-0.05248291169555908 +232631,1163.1550000137838,-0.05248238679332877 +232632,1163.160000013784,-0.05248186161338102 +232633,1163.165000013784,-0.052481336155451204 +232634,1163.1700000137841,-0.052480810419274396 +232635,1163.1750000137843,-0.05248028440458526 +232636,1163.1800000137844,-0.05247975811111817 +232637,1163.1850000137845,-0.0524792315386071 +232638,1163.1900000137846,-0.052478704686785664 +232639,1163.1950000137847,-0.05247817755538716 +232640,1163.2000000137848,-0.05247765014414452 +232641,1163.205000013785,-0.052477122452790285 +232642,1163.210000013785,-0.05247659448105668 +232643,1163.2150000137851,-0.05247606622867555 +232644,1163.2200000137852,-0.05247553769537838 +232645,1163.2250000137853,-0.05247500888089631 +232646,1163.2300000137855,-0.05247447978496011 +232647,1163.2350000137856,-0.052473950407300206 +232648,1163.2400000137857,-0.052473420747646646 +232649,1163.2450000137858,-0.05247289080572911 +232650,1163.250000013786,-0.05247236058127693 +232651,1163.255000013786,-0.05247183007401908 +232652,1163.260000013786,-0.05247129928368416 +232653,1163.2650000137862,-0.052470768210000414 +232654,1163.2700000137863,-0.05247023685269571 +232655,1163.2750000137864,-0.052469705211497554 +232656,1163.2800000137865,-0.0524691732861331 +232657,1163.2850000137867,-0.05246864107632912 +232658,1163.2900000137868,-0.052468108581812035 +232659,1163.2950000137869,-0.052467575802307875 +232660,1163.300000013787,-0.05246704273754233 +232661,1163.305000013787,-0.05246650938724069 +232662,1163.3100000137872,-0.0524659757511279 +232663,1163.3150000137873,-0.05246544182892852 +232664,1163.3200000137874,-0.05246490762036675 +232665,1163.3250000137875,-0.05246437312516641 +232666,1163.3300000137876,-0.05246383834305094 +232667,1163.3350000137877,-0.052463303273743433 +232668,1163.3400000137879,-0.052462767916966586 +232669,1163.345000013788,-0.05246223227244273 +232670,1163.350000013788,-0.05246169633989384 +232671,1163.3550000137882,-0.052461160119041464 +232672,1163.3600000137883,-0.05246062360960683 +232673,1163.3650000137884,-0.05246008681131076 +232674,1163.3700000137885,-0.05245954972387369 +232675,1163.3750000137886,-0.052459012347015714 +232676,1163.3800000137887,-0.05245847468045652 +232677,1163.3850000137888,-0.05245793672391541 +232678,1163.390000013789,-0.052457398477111325 +232679,1163.395000013789,-0.052456859939762825 +232680,1163.4000000137892,-0.052456321111588065 +232681,1163.4050000137893,-0.05245578199230485 +232682,1163.4100000137894,-0.05245524258163059 +232683,1163.4150000137895,-0.0524547028792823 +232684,1163.4200000137896,-0.05245416288497661 +232685,1163.4250000137897,-0.05245362259842979 +232686,1163.4300000137898,-0.05245308201935771 +232687,1163.43500001379,-0.05245254114747584 +232688,1163.44000001379,-0.0524519999824993 +232689,1163.4450000137901,-0.05245145852414278 +232690,1163.4500000137903,-0.05245091677212061 +232691,1163.4550000137904,-0.052450374726146706 +232692,1163.4600000137905,-0.052449832385934626 +232693,1163.4650000137906,-0.052449289751197524 +232694,1163.4700000137907,-0.05244874682164816 +232695,1163.4750000137908,-0.05244820359699891 +232696,1163.480000013791,-0.05244766007696174 +232697,1163.485000013791,-0.05244711626124824 +232698,1163.4900000137911,-0.052446572149569604 +232699,1163.4950000137912,-0.052446027741636626 +232700,1163.5000000137914,-0.05244548303715972 +232701,1163.5050000137915,-0.052444938035848876 +232702,1163.5100000137916,-0.052444392737413706 +232703,1163.5150000137917,-0.052443847141563436 +232704,1163.5200000137918,-0.05244330124800688 +232705,1163.525000013792,-0.05244275505645244 +232706,1163.530000013792,-0.052442208566608146 +232707,1163.5350000137921,-0.05244166177818161 +232708,1163.5400000137922,-0.05244111469088007 +232709,1163.5450000137923,-0.052440567304410324 +232710,1163.5500000137924,-0.052440019618478786 +232711,1163.5550000137926,-0.052439471632791466 +232712,1163.5600000137927,-0.052438923347053974 +232713,1163.5650000137928,-0.05243837476097153 +232714,1163.5700000137929,-0.05243782587424892 +232715,1163.575000013793,-0.052437276686590525 +232716,1163.580000013793,-0.05243672719770035 +232717,1163.5850000137932,-0.05243617740728197 +232718,1163.5900000137933,-0.05243562731503856 +232719,1163.5950000137934,-0.05243507692067287 +232720,1163.6000000137935,-0.05243452622388728 +232721,1163.6050000137936,-0.052433975224383714 +232722,1163.6100000137938,-0.052433423921863724 +232723,1163.6150000137939,-0.05243287231602841 +232724,1163.620000013794,-0.0524323204065785 +232725,1163.625000013794,-0.052431768193214295 +232726,1163.6300000137942,-0.05243121567563567 +232727,1163.6350000137943,-0.0524306628535421 +232728,1163.6400000137944,-0.05243010972663264 +232729,1163.6450000137945,-0.05242955629460592 +232730,1163.6500000137946,-0.052429002557160174 +232731,1163.6550000137947,-0.052428448513993205 +232732,1163.6600000137948,-0.0524278941648024 +232733,1163.665000013795,-0.05242733950928472 +232734,1163.670000013795,-0.052426784547136736 +232735,1163.6750000137952,-0.05242622927805456 +232736,1163.6800000137953,-0.05242567370173391 +232737,1163.6850000137954,-0.052425117817870064 +232738,1163.6900000137955,-0.052424561626157884 +232739,1163.6950000137956,-0.05242400512629182 +232740,1163.7000000137957,-0.05242344831796588 +232741,1163.7050000137958,-0.052422891200873664 +232742,1163.710000013796,-0.052422333774708334 +232743,1163.715000013796,-0.05242177603916262 +232744,1163.7200000137962,-0.05242121799392885 +232745,1163.7250000137963,-0.05242065963869891 +232746,1163.7300000137964,-0.05242010097316424 +232747,1163.7350000137965,-0.05241954199701589 +232748,1163.7400000137966,-0.05241898270994443 +232749,1163.7450000137967,-0.05241842311164006 +232750,1163.7500000137968,-0.05241786320179249 +232751,1163.755000013797,-0.05241730298009102 +232752,1163.760000013797,-0.05241674244622453 +232753,1163.7650000137971,-0.052416181599881456 +232754,1163.7700000137972,-0.052415620440749794 +232755,1163.7750000137974,-0.0524150589685171 +232756,1163.7800000137975,-0.05241449718287052 +232757,1163.7850000137976,-0.052413935083496725 +232758,1163.7900000137977,-0.05241337267008198 +232759,1163.7950000137978,-0.05241280994231211 +232760,1163.800000013798,-0.05241224689987246 +232761,1163.805000013798,-0.05241168354244799 +232762,1163.8100000137981,-0.05241111986972318 +232763,1163.8150000137982,-0.05241055588138208 +232764,1163.8200000137983,-0.052409991577108316 +232765,1163.8250000137984,-0.052409426956585035 +232766,1163.8300000137986,-0.052408862019494976 +232767,1163.8350000137987,-0.05240829676552039 +232768,1163.8400000137988,-0.05240773119434313 +232769,1163.8450000137989,-0.05240716530564457 +232770,1163.850000013799,-0.05240659909910563 +232771,1163.855000013799,-0.052406032574406826 +232772,1163.8600000137992,-0.05240546573122818 +232773,1163.8650000137993,-0.05240489856924927 +232774,1163.8700000137994,-0.05240433108814925 +232775,1163.8750000137995,-0.052403763287606805 +232776,1163.8800000137996,-0.052403195167300166 +232777,1163.8850000137998,-0.05240262672690712 +232778,1163.8900000137999,-0.052402057966104976 +232779,1163.8950000138,-0.052401488884570614 +232780,1163.9000000138,-0.05240091948198045 +232781,1163.9050000138002,-0.05240034975801045 +232782,1163.9100000138003,-0.0523997797123361 +232783,1163.9150000138004,-0.05239920934463246 +232784,1163.9200000138005,-0.0523986386545741 +232785,1163.9250000138006,-0.052398067641835154 +232786,1163.9300000138007,-0.05239749630608928 +232787,1163.9350000138008,-0.052396924647009686 +232788,1163.940000013801,-0.052396352664269105 +232789,1163.945000013801,-0.052395780357539806 +232790,1163.9500000138012,-0.05239520772649361 +232791,1163.9550000138013,-0.052394634770801876 +232792,1163.9600000138014,-0.05239406149013547 +232793,1163.9650000138015,-0.05239348788416481 +232794,1163.9700000138016,-0.05239291395255985 +232795,1163.9750000138017,-0.052392339694990055 +232796,1163.9800000138018,-0.05239176511112444 +232797,1163.985000013802,-0.05239119020063156 +232798,1163.990000013802,-0.05239061496317946 +232799,1163.9950000138022,-0.05239003939843576 +232800,1164.0000000138023,-0.052389463506067574 +232801,1164.0050000138024,-0.05238888728574155 +232802,1164.0100000138025,-0.05238831073712386 +232803,1164.0150000138026,-0.052387733859880214 +232804,1164.0200000138027,-0.05238715665367585 +232805,1164.0250000138028,-0.05238657911817549 +232806,1164.030000013803,-0.05238600125304342 +232807,1164.035000013803,-0.052385423057943414 +232808,1164.0400000138031,-0.05238484453253879 +232809,1164.0450000138032,-0.0523842656764924 +232810,1164.0500000138034,-0.052383686489466584 +232811,1164.0550000138035,-0.0523831069711232 +232812,1164.0600000138036,-0.05238252712112363 +232813,1164.0650000138037,-0.05238194693912878 +232814,1164.0700000138038,-0.05238136642479907 +232815,1164.075000013804,-0.052380785577794416 +232816,1164.080000013804,-0.052380204397774265 +232817,1164.0850000138041,-0.05237962288439758 +232818,1164.0900000138042,-0.05237904103732282 +232819,1164.0950000138043,-0.05237845885620797 +232820,1164.1000000138044,-0.0523778763407105 +232821,1164.1050000138046,-0.05237729349048742 +232822,1164.1100000138047,-0.05237671030519523 +232823,1164.1150000138048,-0.05237612678448994 +232824,1164.1200000138049,-0.05237554292802706 +232825,1164.125000013805,-0.05237495873546161 +232826,1164.130000013805,-0.05237437420644811 +232827,1164.1350000138052,-0.05237378934064062 +232828,1164.1400000138053,-0.05237320413769263 +232829,1164.1450000138054,-0.05237261859725719 +232830,1164.1500000138055,-0.052372032718986834 +232831,1164.1550000138056,-0.052371446502533586 +232832,1164.1600000138058,-0.05237085994754898 +232833,1164.1650000138059,-0.052370273053684045 +232834,1164.170000013806,-0.0523696858205893 +232835,1164.175000013806,-0.05236909824791478 +232836,1164.1800000138062,-0.05236851033530998 +232837,1164.1850000138063,-0.05236792208242392 +232838,1164.1900000138064,-0.052367333488905106 +232839,1164.1950000138065,-0.052366744554401524 +232840,1164.2000000138066,-0.05236615527856066 +232841,1164.2050000138067,-0.05236556566102949 +232842,1164.2100000138068,-0.052364975701454486 +232843,1164.215000013807,-0.05236438539948159 +232844,1164.220000013807,-0.052363794754756256 +232845,1164.2250000138072,-0.05236320376692339 +232846,1164.2300000138073,-0.05236261243562741 +232847,1164.2350000138074,-0.052362020760512225 +232848,1164.2400000138075,-0.052361428741221204 +232849,1164.2450000138076,-0.052360836377397205 +232850,1164.2500000138077,-0.052360243668682575 +232851,1164.2550000138078,-0.052359650614719144 +232852,1164.260000013808,-0.0523590572151482 +232853,1164.265000013808,-0.05235846346961054 +232854,1164.2700000138082,-0.05235786937774641 +232855,1164.2750000138083,-0.052357274939195564 +232856,1164.2800000138084,-0.0523566801535972 +232857,1164.2850000138085,-0.052356085020590006 +232858,1164.2900000138086,-0.052355489539812144 +232859,1164.2950000138087,-0.05235489371090124 +232860,1164.3000000138088,-0.0523542975334944 +232861,1164.305000013809,-0.052353701007228214 +232862,1164.310000013809,-0.05235310413173871 +232863,1164.3150000138091,-0.05235250690666139 +232864,1164.3200000138092,-0.052351909331631266 +232865,1164.3250000138094,-0.05235131140628276 +232866,1164.3300000138095,-0.052350713130249804 +232867,1164.3350000138096,-0.052350114503165755 +232868,1164.3400000138097,-0.05234951552466346 +232869,1164.3450000138098,-0.05234891619437523 +232870,1164.35000001381,-0.052348316511932835 +232871,1164.35500001381,-0.052347716476967496 +232872,1164.3600000138101,-0.05234711608910988 +232873,1164.3650000138102,-0.05234651534799015 +232874,1164.3700000138103,-0.05234591425323791 +232875,1164.3750000138104,-0.05234531280448221 +232876,1164.3800000138106,-0.05234471100135156 +232877,1164.3850000138107,-0.05234410884347394 +232878,1164.3900000138108,-0.052343506330476755 +232879,1164.3950000138109,-0.052342903461986896 +232880,1164.400000013811,-0.05234230023763068 +232881,1164.405000013811,-0.05234169665703388 +232882,1164.4100000138112,-0.05234109271982173 +232883,1164.4150000138113,-0.052340488425618885 +232884,1164.4200000138114,-0.05233988377404948 +232885,1164.4250000138115,-0.05233927876473709 +232886,1164.4300000138117,-0.052338673397304705 +232887,1164.4350000138118,-0.05233806767137479 +232888,1164.4400000138119,-0.05233746158656923 +232889,1164.445000013812,-0.05233685514250938 +232890,1164.450000013812,-0.05233624833881602 +232891,1164.4550000138122,-0.05233564117510936 +232892,1164.4600000138123,-0.05233503365100907 +232893,1164.4650000138124,-0.05233442576613423 +232894,1164.4700000138125,-0.052333817520103396 +232895,1164.4750000138126,-0.05233320891253452 +232896,1164.4800000138127,-0.052332599943045 +232897,1164.4850000138129,-0.05233199061125168 +232898,1164.490000013813,-0.052331380916770844 +232899,1164.495000013813,-0.05233077085921816 +232900,1164.5000000138132,-0.052330160438208796 +232901,1164.5050000138133,-0.052329549653357274 +232902,1164.5100000138134,-0.05232893850427759 +232903,1164.5150000138135,-0.052328326990583166 +232904,1164.5200000138136,-0.05232771511188683 +232905,1164.5250000138137,-0.052327102867800845 +232906,1164.5300000138138,-0.05232649025793691 +232907,1164.535000013814,-0.052325877281906116 +232908,1164.540000013814,-0.052325263939319015 +232909,1164.5450000138142,-0.05232465022978553 +232910,1164.5500000138143,-0.05232403615291506 +232911,1164.5550000138144,-0.05232342170831636 +232912,1164.5600000138145,-0.05232280689559765 +232913,1164.5650000138146,-0.052322191714366556 +232914,1164.5700000138147,-0.052321576164230096 +232915,1164.5750000138148,-0.05232096024479473 +232916,1164.580000013815,-0.052320343955666315 +232917,1164.585000013815,-0.05231972729645011 +232918,1164.5900000138151,-0.05231911026675081 +232919,1164.5950000138153,-0.0523184928661725 +232920,1164.6000000138154,-0.05231787509431868 +232921,1164.6050000138155,-0.05231725695079224 +232922,1164.6100000138156,-0.0523166384351955 +232923,1164.6150000138157,-0.052316019547130166 +232924,1164.6200000138158,-0.05231540028619736 +232925,1164.625000013816,-0.05231478065199759 +232926,1164.630000013816,-0.05231416064413078 +232927,1164.6350000138161,-0.052313540262196256 +232928,1164.6400000138162,-0.05231291950579272 +232929,1164.6450000138163,-0.052312298374518305 +232930,1164.6500000138165,-0.0523116768679705 +232931,1164.6550000138166,-0.05231105498574624 +232932,1164.6600000138167,-0.05231043272744179 +232933,1164.6650000138168,-0.05230981009265287 +232934,1164.670000013817,-0.05230918708097454 +232935,1164.675000013817,-0.052308563692001285 +232936,1164.680000013817,-0.052307939925326966 +232937,1164.6850000138172,-0.05230731578054483 +232938,1164.6900000138173,-0.05230669125724751 +232939,1164.6950000138174,-0.05230606635502704 +232940,1164.7000000138175,-0.052305441073474825 +232941,1164.7050000138177,-0.05230481541218164 +232942,1164.7100000138178,-0.05230418937073768 +232943,1164.7150000138179,-0.05230356294873248 +232944,1164.720000013818,-0.05230293614575497 +232945,1164.725000013818,-0.052302308961393464 +232946,1164.7300000138182,-0.052301681395235645 +232947,1164.7350000138183,-0.0523010534468686 +232948,1164.7400000138184,-0.05230042511587873 +232949,1164.7450000138185,-0.05229979640185185 +232950,1164.7500000138186,-0.05229916730437317 +232951,1164.7550000138187,-0.052298537823027236 +232952,1164.7600000138189,-0.05229790795739796 +232953,1164.765000013819,-0.052297277707068615 +232954,1164.770000013819,-0.05229664707162189 +232955,1164.7750000138192,-0.052296016050639806 +232956,1164.7800000138193,-0.05229538464370376 +232957,1164.7850000138194,-0.05229475285039448 +232958,1164.7900000138195,-0.05229412067029209 +232959,1164.7950000138196,-0.05229348810297607 +232960,1164.8000000138197,-0.05229285514802527 +232961,1164.8050000138198,-0.05229222180501786 +232962,1164.81000001382,-0.0522915880735314 +232963,1164.81500001382,-0.0522909539531428 +232964,1164.8200000138202,-0.05229031944342833 +232965,1164.8250000138203,-0.052289684543963606 +232966,1164.8300000138204,-0.05228904925432357 +232967,1164.8350000138205,-0.05228841357408257 +232968,1164.8400000138206,-0.05228777750281425 +232969,1164.8450000138207,-0.05228714104009164 +232970,1164.8500000138208,-0.0522865041854871 +232971,1164.855000013821,-0.05228586693857236 +232972,1164.860000013821,-0.05228522929891844 +232973,1164.8650000138211,-0.05228459126609575 +232974,1164.8700000138213,-0.05228395283967402 +232975,1164.8750000138214,-0.05228331401922234 +232976,1164.8800000138215,-0.05228267480430914 +232977,1164.8850000138216,-0.05228203519450214 +232978,1164.8900000138217,-0.05228139518936847 +232979,1164.8950000138218,-0.05228075478847453 +232980,1164.900000013822,-0.05228011399138609 +232981,1164.905000013822,-0.05227947279766825 +232982,1164.9100000138221,-0.05227883120688543 +232983,1164.9150000138222,-0.0522781892186014 +232984,1164.9200000138223,-0.05227754683237923 +232985,1164.9250000138225,-0.052276904047781333 +232986,1164.9300000138226,-0.052276260864369435 +232987,1164.9350000138227,-0.052275617281704614 +232988,1164.9400000138228,-0.05227497329934725 +232989,1164.945000013823,-0.05227432891685706 +232990,1164.950000013823,-0.052273684133793054 +232991,1164.955000013823,-0.05227303894971359 +232992,1164.9600000138232,-0.05227239336417634 +232993,1164.9650000138233,-0.052271747376738266 +232994,1164.9700000138234,-0.05227110098695568 +232995,1164.9750000138235,-0.052270454194384176 +232996,1164.9800000138237,-0.05226980699857869 +232997,1164.9850000138238,-0.052269159399093455 +232998,1164.9900000138239,-0.05226851139548201 +232999,1164.995000013824,-0.05226786298729721 +233000,1165.000000013824,-0.052267214174091206 +233001,1165.0050000138242,-0.05226656495541548 +233002,1165.0100000138243,-0.05226591533082078 +233003,1165.0150000138244,-0.05226526529985718 +233004,1165.0200000138245,-0.05226461486207406 +233005,1165.0250000138246,-0.05226396401702009 +233006,1165.0300000138247,-0.05226331276424324 +233007,1165.0350000138249,-0.05226266110329077 +233008,1165.040000013825,-0.05226200903370925 +233009,1165.045000013825,-0.05226135655504455 +233010,1165.0500000138252,-0.052260703666841796 +233011,1165.0550000138253,-0.052260050368645436 +233012,1165.0600000138254,-0.052259396659999215 +233013,1165.0650000138255,-0.052258742540446136 +233014,1165.0700000138256,-0.052258088009528525 +233015,1165.0750000138257,-0.052257433066787956 +233016,1165.0800000138258,-0.052256777711765325 +233017,1165.085000013826,-0.05225612194400078 +233018,1165.090000013826,-0.05225546576303377 +233019,1165.0950000138262,-0.052254809168403 +233020,1165.1000000138263,-0.05225415215964648 +233021,1165.1050000138264,-0.05225349473630149 +233022,1165.1100000138265,-0.05225283689790459 +233023,1165.1150000138266,-0.052252178643991586 +233024,1165.1200000138267,-0.05225151997409759 +233025,1165.1250000138268,-0.052250860887756975 +233026,1165.130000013827,-0.05225020138450337 +233027,1165.135000013827,-0.05224954146386969 +233028,1165.1400000138271,-0.052248881125388114 +233029,1165.1450000138273,-0.05224822036859007 +233030,1165.1500000138274,-0.05224755919300627 +233031,1165.1550000138275,-0.05224689759816667 +233032,1165.1600000138276,-0.05224623558360051 +233033,1165.1650000138277,-0.05224557314883626 +233034,1165.1700000138278,-0.052244910293401677 +233035,1165.175000013828,-0.05224424701682375 +233036,1165.180000013828,-0.05224358331862875 +233037,1165.1850000138281,-0.05224291919834217 +233038,1165.1900000138282,-0.05224225465548876 +233039,1165.1950000138283,-0.05224158968959256 +233040,1165.2000000138285,-0.0522409243001768 +233041,1165.2050000138286,-0.052240258486763995 +233042,1165.2100000138287,-0.052239592248875893 +233043,1165.2150000138288,-0.05223892558603349 +233044,1165.220000013829,-0.05223825849775703 +233045,1165.225000013829,-0.05223759098356598 +233046,1165.230000013829,-0.052236923042979055 +233047,1165.2350000138292,-0.05223625467551422 +233048,1165.2400000138293,-0.05223558588068866 +233049,1165.2450000138294,-0.05223491665801879 +233050,1165.2500000138295,-0.052234247007020285 +233051,1165.2550000138297,-0.052233576927208036 +233052,1165.2600000138298,-0.05223290641809615 +233053,1165.2650000138299,-0.05223223547919798 +233054,1165.27000001383,-0.052231564110026114 +233055,1165.27500001383,-0.05223089231009233 +233056,1165.2800000138302,-0.052230220078907666 +233057,1165.2850000138303,-0.05222954741598237 +233058,1165.2900000138304,-0.052228874320825895 +233059,1165.2950000138305,-0.05222820079294694 +233060,1165.3000000138306,-0.052227526831853395 +233061,1165.3050000138307,-0.052226852437052385 +233062,1165.3100000138309,-0.052226177608050234 +233063,1165.315000013831,-0.052225502344352505 +233064,1165.320000013831,-0.052224826645463934 +233065,1165.3250000138312,-0.052224150510888495 +233066,1165.3300000138313,-0.052223473940129356 +233067,1165.3350000138314,-0.05222279693268889 +233068,1165.3400000138315,-0.05222211948806869 +233069,1165.3450000138316,-0.05222144160576951 +233070,1165.3500000138317,-0.05222076328529137 +233071,1165.3550000138318,-0.05222008452613345 +233072,1165.360000013832,-0.05221940532779411 +233073,1165.365000013832,-0.052218725689770935 +233074,1165.3700000138322,-0.05221804561156071 +233075,1165.3750000138323,-0.052217365092659396 +233076,1165.3800000138324,-0.052216684132562134 +233077,1165.3850000138325,-0.05221600273076328 +233078,1165.3900000138326,-0.05221532088675636 +233079,1165.3950000138327,-0.05221463860003409 +233080,1165.4000000138328,-0.05221395587008838 +233081,1165.405000013833,-0.052213272696410316 +233082,1165.410000013833,-0.05221258907849014 +233083,1165.4150000138332,-0.05221190501581732 +233084,1165.4200000138333,-0.05221122050788047 +233085,1165.4250000138334,-0.05221053555416738 +233086,1165.4300000138335,-0.05220985015416502 +233087,1165.4350000138336,-0.05220916430735956 +233088,1165.4400000138337,-0.052208478013236276 +233089,1165.4450000138338,-0.052207791271279676 +233090,1165.450000013834,-0.0522071040809734 +233091,1165.455000013834,-0.05220641644180026 +233092,1165.4600000138341,-0.052205728353242234 +233093,1165.4650000138342,-0.05220503981478048 +233094,1165.4700000138344,-0.05220435082589528 +233095,1165.4750000138345,-0.05220366138606609 +233096,1165.4800000138346,-0.052202971494771516 +233097,1165.4850000138347,-0.052202281151489345 +233098,1165.4900000138348,-0.0522015903556965 +233099,1165.495000013835,-0.05220089910686904 +233100,1165.500000013835,-0.0522002074044822 +233101,1165.5050000138351,-0.05219951524801034 +233102,1165.5100000138352,-0.05219882263692699 +233103,1165.5150000138353,-0.052198129570704806 +233104,1165.5200000138354,-0.052197436048815576 +233105,1165.5250000138356,-0.05219674207073025 +233106,1165.5300000138357,-0.05219604763591892 +233107,1165.5350000138358,-0.052195352743850794 +233108,1165.5400000138359,-0.05219465739399422 +233109,1165.545000013836,-0.0521939615858167 +233110,1165.550000013836,-0.05219326531878484 +233111,1165.5550000138362,-0.05219256859236438 +233112,1165.5600000138363,-0.05219187140602021 +233113,1165.5650000138364,-0.05219117375921633 +233114,1165.5700000138365,-0.05219047565141585 +233115,1165.5750000138366,-0.05218977708208102 +233116,1165.5800000138368,-0.052189078050673215 +233117,1165.5850000138369,-0.052188378556652926 +233118,1165.590000013837,-0.05218767859947974 +233119,1165.595000013837,-0.05218697817861238 +233120,1165.6000000138372,-0.052186277293508665 +233121,1165.6050000138373,-0.05218557594362555 +233122,1165.6100000138374,-0.052184874128419066 +233123,1165.6150000138375,-0.05218417184734439 +233124,1165.6200000138376,-0.05218346909985577 +233125,1165.6250000138377,-0.05218276588540658 +233126,1165.6300000138378,-0.05218206220344928 +233127,1165.635000013838,-0.052181358053435434 +233128,1165.640000013838,-0.0521806534348157 +233129,1165.6450000138382,-0.05217994834703984 +233130,1165.6500000138383,-0.05217924278955671 +233131,1165.6550000138384,-0.052178536761814255 +233132,1165.6600000138385,-0.05217783026325951 +233133,1165.6650000138386,-0.052177123293338595 +233134,1165.6700000138387,-0.05217641585149673 +233135,1165.6750000138388,-0.05217570793717819 +233136,1165.680000013839,-0.05217499954982635 +233137,1165.685000013839,-0.05217429068888367 +233138,1165.6900000138392,-0.052173581353791694 +233139,1165.6950000138393,-0.05217287154399101 +233140,1165.7000000138394,-0.05217216125892131 +233141,1165.7050000138395,-0.05217145049802136 +233142,1165.7100000138396,-0.05217073926072897 +233143,1165.7150000138397,-0.05217002754648104 +233144,1165.7200000138398,-0.052169315354713516 +233145,1165.72500001384,-0.052168602684861454 +233146,1165.73000001384,-0.05216788953635892 +233147,1165.7350000138401,-0.052167175908639056 +233148,1165.7400000138402,-0.05216646180113408 +233149,1165.7450000138404,-0.05216574721327524 +233150,1165.7500000138405,-0.05216503214449287 +233151,1165.7550000138406,-0.05216431659421632 +233152,1165.7600000138407,-0.052163600561874024 +233153,1165.7650000138408,-0.052162884046893426 +233154,1165.770000013841,-0.05216216704870105 +233155,1165.775000013841,-0.052161449566722466 +233156,1165.7800000138411,-0.05216073160038225 +233157,1165.7850000138412,-0.05216001314910405 +233158,1165.7900000138413,-0.052159294212310525 +233159,1165.7950000138414,-0.052158574789423415 +233160,1165.8000000138416,-0.052157854879863436 +233161,1165.8050000138417,-0.052157134483050385 +233162,1165.8100000138418,-0.05215641359840306 +233163,1165.8150000138419,-0.05215569222533929 +233164,1165.820000013842,-0.05215497036327594 +233165,1165.825000013842,-0.05215424801162888 +233166,1165.8300000138422,-0.052153525169813024 +233167,1165.8350000138423,-0.05215280183724228 +233168,1165.8400000138424,-0.052152078013329585 +233169,1165.8450000138425,-0.0521513536974869 +233170,1165.8500000138426,-0.05215062888912519 +233171,1165.8550000138428,-0.05214990358765442 +233172,1165.8600000138429,-0.052149177792483584 +233173,1165.865000013843,-0.052148451503020665 +233174,1165.870000013843,-0.05214772471867266 +233175,1165.8750000138432,-0.05214699743884556 +233176,1165.8800000138433,-0.05214626966294436 +233177,1165.8850000138434,-0.05214554139037306 +233178,1165.8900000138435,-0.05214481262053462 +233179,1165.8950000138436,-0.05214408335283105 +233180,1165.9000000138437,-0.0521433535866633 +233181,1165.9050000138438,-0.05214262332143133 +233182,1165.910000013844,-0.05214189255653409 +233183,1165.915000013844,-0.0521411612913695 +233184,1165.9200000138442,-0.052140429525334486 +233185,1165.9250000138443,-0.05213969725782492 +233186,1165.9300000138444,-0.052138964488235684 +233187,1165.9350000138445,-0.05213823121596063 +233188,1165.9400000138446,-0.052137497440392554 +233189,1165.9450000138447,-0.05213676316092325 +233190,1165.9500000138448,-0.05213602837694347 +233191,1165.955000013845,-0.05213529308784294 +233192,1165.960000013845,-0.05213455729301035 +233193,1165.9650000138452,-0.052133820991833335 +233194,1165.9700000138453,-0.052133084183698504 +233195,1165.9750000138454,-0.05213234686799142 +233196,1165.9800000138455,-0.0521316090440966 +233197,1165.9850000138456,-0.052130870711397506 +233198,1165.9900000138457,-0.052130131869276584 +233199,1165.9950000138458,-0.05212939251711518 +233200,1166.000000013846,-0.05212865265429362 +233201,1166.005000013846,-0.052127912280191153 +233202,1166.0100000138461,-0.05212717139418598 +233203,1166.0150000138462,-0.05212642999565525 +233204,1166.0200000138464,-0.05212568808397501 +233205,1166.0250000138465,-0.05212494565852028 +233206,1166.0300000138466,-0.05212420271866499 +233207,1166.0350000138467,-0.05212345926378203 +233208,1166.0400000138468,-0.05212271529324316 +233209,1166.045000013847,-0.05212197080641913 +233210,1166.050000013847,-0.05212122580267956 +233211,1166.0550000138471,-0.05212048028139302 +233212,1166.0600000138472,-0.052119734241926965 +233213,1166.0650000138473,-0.052118987683647804 +233214,1166.0700000138474,-0.052118240605920844 +233215,1166.0750000138476,-0.052117493008110305 +233216,1166.0800000138477,-0.05211674488957928 +233217,1166.0850000138478,-0.052115996249689815 +233218,1166.0900000138479,-0.052115247087802845 +233219,1166.095000013848,-0.05211449740327818 +233220,1166.100000013848,-0.052113747195474576 +233221,1166.1050000138482,-0.052112996463749624 +233222,1166.1100000138483,-0.05211224520745986 +233223,1166.1150000138484,-0.05211149342596069 +233224,1166.1200000138485,-0.052110741118606384 +233225,1166.1250000138486,-0.05210998828475014 +233226,1166.1300000138488,-0.05210923492374403 +233227,1166.1350000138489,-0.052108481034938973 +233228,1166.140000013849,-0.052107726617684806 +233229,1166.145000013849,-0.052106971671330216 +233230,1166.1500000138492,-0.05210621619522277 +233231,1166.1550000138493,-0.052105460188708916 +233232,1166.1600000138494,-0.05210470365113396 +233233,1166.1650000138495,-0.052103946581842066 +233234,1166.1700000138496,-0.05210318898017628 +233235,1166.1750000138497,-0.0521024308454785 +233236,1166.1800000138498,-0.052101672177089456 +233237,1166.18500001385,-0.052100912974348774 +233238,1166.19000001385,-0.05210015323659491 +233239,1166.1950000138502,-0.052099392963165174 +233240,1166.2000000138503,-0.052098632153395726 +233241,1166.2050000138504,-0.05209787080662157 +233242,1166.2100000138505,-0.05209710892217656 +233243,1166.2150000138506,-0.05209634649939336 +233244,1166.2200000138507,-0.052095583537603504 +233245,1166.2250000138508,-0.05209482003613735 +233246,1166.230000013851,-0.05209405599432408 +233247,1166.235000013851,-0.05209329141149171 +233248,1166.2400000138512,-0.052092526286967075 +233249,1166.2450000138513,-0.05209176062007586 +233250,1166.2500000138514,-0.052090994410142547 +233251,1166.2550000138515,-0.05209022765649043 +233252,1166.2600000138516,-0.05208946035844164 +233253,1166.2650000138517,-0.05208869251531711 +233254,1166.2700000138518,-0.05208792412643658 +233255,1166.275000013852,-0.05208715519111861 +233256,1166.280000013852,-0.052086385708680565 +233257,1166.2850000138521,-0.0520856156784386 +233258,1166.2900000138523,-0.05208484509970766 +233259,1166.2950000138524,-0.05208407397180153 +233260,1166.3000000138525,-0.052083302294032734 +233261,1166.3050000138526,-0.05208253006571262 +233262,1166.3100000138527,-0.05208175728615133 +233263,1166.3150000138528,-0.05208098395465777 +233264,1166.320000013853,-0.05208021007053964 +233265,1166.325000013853,-0.05207943563310342 +233266,1166.3300000138531,-0.05207866064165437 +233267,1166.3350000138532,-0.052077885095496525 +233268,1166.3400000138533,-0.05207710899393268 +233269,1166.3450000138535,-0.05207633233626443 +233270,1166.3500000138536,-0.05207555512179208 +233271,1166.3550000138537,-0.052074777349814756 +233272,1166.3600000138538,-0.05207399901963031 +233273,1166.365000013854,-0.05207322013053538 +233274,1166.370000013854,-0.05207244068182533 +233275,1166.375000013854,-0.052071660672794284 +233276,1166.3800000138542,-0.05207088010273512 +233277,1166.3850000138543,-0.05207009897093947 +233278,1166.3900000138544,-0.0520693172766977 +233279,1166.3950000138545,-0.05206853501929892 +233280,1166.4000000138547,-0.052067752198030975 +233281,1166.4050000138548,-0.05206696881218043 +233282,1166.4100000138549,-0.052066184861032615 +233283,1166.415000013855,-0.05206540034387156 +233284,1166.420000013855,-0.052064615259980046 +233285,1166.4250000138552,-0.052063829608639554 +233286,1166.4300000138553,-0.0520630433891303 +233287,1166.4350000138554,-0.0520622566007312 +233288,1166.4400000138555,-0.05206146924271993 +233289,1166.4450000138556,-0.0520606813143728 +233290,1166.4500000138557,-0.0520598928149649 +233291,1166.4550000138559,-0.052059103743769986 +233292,1166.460000013856,-0.05205831410006053 +233293,1166.465000013856,-0.052057523883107706 +233294,1166.4700000138562,-0.052056733092181375 +233295,1166.4750000138563,-0.05205594172655009 +233296,1166.4800000138564,-0.052055149785481106 +233297,1166.4850000138565,-0.05205435726824037 +233298,1166.4900000138566,-0.05205356417409249 +233299,1166.4950000138567,-0.052052770502300776 +233300,1166.5000000138568,-0.052051976252127194 +233301,1166.505000013857,-0.05205118142283242 +233302,1166.510000013857,-0.05205038601367575 +233303,1166.5150000138572,-0.05204959002391522 +233304,1166.5200000138573,-0.05204879345280746 +233305,1166.5250000138574,-0.0520479962996078 +233306,1166.5300000138575,-0.052047198563570235 +233307,1166.5350000138576,-0.05204640024394739 +233308,1166.5400000138577,-0.05204560133999057 +233309,1166.5450000138578,-0.05204480185094973 +233310,1166.550000013858,-0.05204400177607343 +233311,1166.555000013858,-0.052043201114608924 +233312,1166.5600000138581,-0.052042399865802086 +233313,1166.5650000138583,-0.05204159802889743 +233314,1166.5700000138584,-0.052040795603138096 +233315,1166.5750000138585,-0.052039992587765864 +233316,1166.5800000138586,-0.052039188982021145 +233317,1166.5850000138587,-0.052038384785142965 +233318,1166.5900000138588,-0.052037579996368974 +233319,1166.595000013859,-0.05203677461493546 +233320,1166.600000013859,-0.05203596864007727 +233321,1166.6050000138591,-0.05203516207102794 +233322,1166.6100000138592,-0.05203435490701955 +233323,1166.6150000138593,-0.05203354714728282 +233324,1166.6200000138595,-0.05203273879104707 +233325,1166.6250000138596,-0.05203192983754021 +233326,1166.6300000138597,-0.05203112028598872 +233327,1166.6350000138598,-0.05203031013561774 +233328,1166.64000001386,-0.05202949938565092 +233329,1166.64500001386,-0.052028688035310564 +233330,1166.65000001386,-0.0520278760838175 +233331,1166.6550000138602,-0.05202706353039119 +233332,1166.6600000138603,-0.052026250374249614 +233333,1166.6650000138604,-0.052025436614609365 +233334,1166.6700000138605,-0.0520246222506856 +233335,1166.6750000138607,-0.052023807281692015 +233336,1166.6800000138608,-0.052022991706840896 +233337,1166.6850000138609,-0.052022175525343085 +233338,1166.690000013861,-0.052021358736407966 +233339,1166.695000013861,-0.05202054133924346 +233340,1166.7000000138612,-0.052019723333056093 +233341,1166.7050000138613,-0.052018904717050875 +233342,1166.7100000138614,-0.052018085490431375 +233343,1166.7150000138615,-0.05201726565239973 +233344,1166.7200000138616,-0.052016445202156564 +233345,1166.7250000138617,-0.05201562413890106 +233346,1166.7300000138619,-0.05201480246183094 +233347,1166.735000013862,-0.052013980170142415 +233348,1166.740000013862,-0.05201315726303024 +233349,1166.7450000138622,-0.05201233373968768 +233350,1166.7500000138623,-0.052011509599306505 +233351,1166.7550000138624,-0.05201068484107702 +233352,1166.7600000138625,-0.05200985946418801 +233353,1166.7650000138626,-0.05200903346782678 +233354,1166.7700000138627,-0.052008206851179115 +233355,1166.7750000138628,-0.05200737961342931 +233356,1166.780000013863,-0.05200655175376015 +233357,1166.785000013863,-0.05200572327135291 +233358,1166.7900000138632,-0.052004894165387325 +233359,1166.7950000138633,-0.05200406443504166 +233360,1166.8000000138634,-0.052003234079492616 +233361,1166.8050000138635,-0.05200240309791538 +233362,1166.8100000138636,-0.05200157148948361 +233363,1166.8150000138637,-0.052000739253369434 +233364,1166.8200000138638,-0.051999906388743425 +233365,1166.825000013864,-0.051999072894774644 +233366,1166.830000013864,-0.05199823877063058 +233367,1166.8350000138641,-0.051997404015477186 +233368,1166.8400000138643,-0.05199656862847885 +233369,1166.8450000138644,-0.05199573260879844 +233370,1166.8500000138645,-0.05199489595559722 +233371,1166.8550000138646,-0.05199405866803491 +233372,1166.8600000138647,-0.051993220745269665 +233373,1166.8650000138648,-0.051992382186458075 +233374,1166.870000013865,-0.05199154299075514 +233375,1166.875000013865,-0.05199070315731427 +233376,1166.8800000138651,-0.05198986268528734 +233377,1166.8850000138652,-0.05198902157382459 +233378,1166.8900000138653,-0.05198817982207469 +233379,1166.8950000138655,-0.05198733742918471 +233380,1166.9000000138656,-0.05198649439430014 +233381,1166.9050000138657,-0.05198565071656484 +233382,1166.9100000138658,-0.05198480639512107 +233383,1166.915000013866,-0.051983961429109514 +233384,1166.920000013866,-0.0519831158176692 +233385,1166.925000013866,-0.051982269559937566 +233386,1166.9300000138662,-0.051981422655050395 +233387,1166.9350000138663,-0.051980575102141886 +233388,1166.9400000138664,-0.05197972690034459 +233389,1166.9450000138665,-0.05197887804878941 +233390,1166.9500000138667,-0.051978028546605645 +233391,1166.9550000138668,-0.05197717839292092 +233392,1166.9600000138669,-0.05197632758686125 +233393,1166.965000013867,-0.05197547612755095 +233394,1166.970000013867,-0.051974624014112736 +233395,1166.9750000138672,-0.05197377124566762 +233396,1166.9800000138673,-0.051972917821335 +233397,1166.9850000138674,-0.05197206374023257 +233398,1166.9900000138675,-0.05197120900147635 +233399,1166.9950000138676,-0.05197035360418073 +233400,1167.0000000138677,-0.051969497547458374 +233401,1167.0050000138679,-0.0519686408304203 +233402,1167.010000013868,-0.05196778345217582 +233403,1167.015000013868,-0.051966925411832565 +233404,1167.0200000138682,-0.051966066708496454 +233405,1167.0250000138683,-0.05196520734127175 +233406,1167.0300000138684,-0.05196434730926096 +233407,1167.0350000138685,-0.05196348661156492 +233408,1167.0400000138686,-0.051962625247282734 +233409,1167.0450000138687,-0.05196176321551181 +233410,1167.0500000138688,-0.05196090051534782 +233411,1167.055000013869,-0.051960037145884715 +233412,1167.060000013869,-0.051959173106214736 +233413,1167.0650000138692,-0.051958308395428365 +233414,1167.0700000138693,-0.05195744301261437 +233415,1167.0750000138694,-0.05195657695685975 +233416,1167.0800000138695,-0.051955710227249784 +233417,1167.0850000138696,-0.051954842822868004 +233418,1167.0900000138697,-0.05195397474279618 +233419,1167.0950000138698,-0.051953105986114294 +233420,1167.10000001387,-0.05195223655190063 +233421,1167.10500001387,-0.051951366439231636 +233422,1167.1100000138701,-0.051950495647182036 +233423,1167.1150000138703,-0.05194962417482478 +233424,1167.1200000138704,-0.05194875202123099 +233425,1167.1250000138705,-0.051947879185470044 +233426,1167.1300000138706,-0.05194700566660953 +233427,1167.1350000138707,-0.05194613146371523 +233428,1167.1400000138708,-0.05194525657585113 +233429,1167.145000013871,-0.05194438100207941 +233430,1167.150000013871,-0.05194350474146046 +233431,1167.1550000138711,-0.05194262779305284 +233432,1167.1600000138712,-0.051941750155913284 +233433,1167.1650000138713,-0.05194087182909675 +233434,1167.1700000138715,-0.05193999281165632 +233435,1167.1750000138716,-0.05193911310264329 +233436,1167.1800000138717,-0.05193823270110708 +233437,1167.1850000138718,-0.051937351606095306 +233438,1167.190000013872,-0.05193646981665373 +233439,1167.195000013872,-0.051935587331826245 +233440,1167.200000013872,-0.051934704150654924 +233441,1167.2050000138722,-0.05193382027217996 +233442,1167.2100000138723,-0.051932935695439685 +233443,1167.2150000138724,-0.051932050419470584 +233444,1167.2200000138725,-0.051931164443307254 +233445,1167.2250000138727,-0.05193027776598241 +233446,1167.2300000138728,-0.05192939038652689 +233447,1167.2350000138729,-0.05192850230396966 +233448,1167.240000013873,-0.0519276135173378 +233449,1167.245000013873,-0.05192672402565647 +233450,1167.2500000138732,-0.051925833827948936 +233451,1167.2550000138733,-0.05192494292323657 +233452,1167.2600000138734,-0.05192405131053883 +233453,1167.2650000138735,-0.05192315898887326 +233454,1167.2700000138736,-0.051922265957255465 +233455,1167.2750000138738,-0.05192137221469916 +233456,1167.2800000138739,-0.05192047776021613 +233457,1167.285000013874,-0.051919582592816184 +233458,1167.290000013874,-0.051918686711507234 +233459,1167.2950000138742,-0.05191779011529525 +233460,1167.3000000138743,-0.05191689280318421 +233461,1167.3050000138744,-0.05191599477417619 +233462,1167.3100000138745,-0.05191509602727125 +233463,1167.3150000138746,-0.05191419656146755 +233464,1167.3200000138747,-0.05191329637576123 +233465,1167.3250000138748,-0.051912395469146506 +233466,1167.330000013875,-0.051911493840615566 +233467,1167.335000013875,-0.051910591489158636 +233468,1167.3400000138752,-0.05190968841376396 +233469,1167.3450000138753,-0.05190878461341778 +233470,1167.3500000138754,-0.05190788008710435 +233471,1167.3550000138755,-0.051906974833805894 +233472,1167.3600000138756,-0.051906068852502645 +233473,1167.3650000138757,-0.05190516214217283 +233474,1167.3700000138758,-0.05190425470179263 +233475,1167.375000013876,-0.05190334653033622 +233476,1167.380000013876,-0.051902437626775766 +233477,1167.3850000138762,-0.05190152799008136 +233478,1167.3900000138763,-0.051900617619221066 +233479,1167.3950000138764,-0.05189970651316092 +233480,1167.4000000138765,-0.05189879467086489 +233481,1167.4050000138766,-0.051897882091294874 +233482,1167.4100000138767,-0.05189696877341075 +233483,1167.4150000138768,-0.05189605471617029 +233484,1167.420000013877,-0.05189513991852921 +233485,1167.425000013877,-0.05189422437944117 +233486,1167.4300000138771,-0.051893308097857714 +233487,1167.4350000138772,-0.051892391072728306 +233488,1167.4400000138774,-0.05189147330300031 +233489,1167.4450000138775,-0.051890554787619024 +233490,1167.4500000138776,-0.051889635525527625 +233491,1167.4550000138777,-0.05188871551566716 +233492,1167.4600000138778,-0.05188779475697658 +233493,1167.465000013878,-0.0518868732483927 +233494,1167.470000013878,-0.05188595098885024 +233495,1167.4750000138781,-0.051885027977281756 +233496,1167.4800000138782,-0.05188410421261769 +233497,1167.4850000138783,-0.05188317969378632 +233498,1167.4900000138784,-0.05188225441971379 +233499,1167.4950000138786,-0.0518813283893241 +233500,1167.5000000138787,-0.05188040160153906 +233501,1167.5050000138788,-0.05187947405527835 +233502,1167.5100000138789,-0.05187854574945945 +233503,1167.515000013879,-0.05187761668299768 +233504,1167.520000013879,-0.05187668685480618 +233505,1167.5250000138792,-0.0518757562637959 +233506,1167.5300000138793,-0.051874824908875565 +233507,1167.5350000138794,-0.05187389278895175 +233508,1167.5400000138795,-0.0518729599029288 +233509,1167.5450000138796,-0.05187202624970885 +233510,1167.5500000138798,-0.05187109182819182 +233511,1167.5550000138799,-0.05187015663727543 +233512,1167.56000001388,-0.05186922067585512 +233513,1167.56500001388,-0.05186828394282415 +233514,1167.5700000138802,-0.05186734643707351 +233515,1167.5750000138803,-0.051866408157491946 +233516,1167.5800000138804,-0.05186546910296597 +233517,1167.5850000138805,-0.051864529272379827 +233518,1167.5900000138806,-0.051863588664615476 +233519,1167.5950000138807,-0.051862647278552644 +233520,1167.6000000138808,-0.05186170511306875 +233521,1167.605000013881,-0.05186076216703897 +233522,1167.610000013881,-0.05185981843933615 +233523,1167.6150000138812,-0.05185887392883087 +233524,1167.6200000138813,-0.05185792863439141 +233525,1167.6250000138814,-0.051856982554883746 +233526,1167.6300000138815,-0.051856035689171506 +233527,1167.6350000138816,-0.05185508803611605 +233528,1167.6400000138817,-0.05185413959457638 +233529,1167.6450000138818,-0.0518531903634092 +233530,1167.650000013882,-0.05185224034146885 +233531,1167.655000013882,-0.05185128952760731 +233532,1167.6600000138822,-0.05185033792067426 +233533,1167.6650000138823,-0.05184938551951702 +233534,1167.6700000138824,-0.0518484323229805 +233535,1167.6750000138825,-0.05184747832990729 +233536,1167.6800000138826,-0.051846523539137594 +233537,1167.6850000138827,-0.05184556794950923 +233538,1167.6900000138828,-0.051844611559857624 +233539,1167.695000013883,-0.05184365436901582 +233540,1167.700000013883,-0.05184269637581447 +233541,1167.7050000138831,-0.05184173757908181 +233542,1167.7100000138832,-0.05184077797764366 +233543,1167.7150000138834,-0.05183981757032342 +233544,1167.7200000138835,-0.0518388563559421 +233545,1167.7250000138836,-0.05183789433331824 +233546,1167.7300000138837,-0.051836931501267926 +233547,1167.7350000138838,-0.051835967858604864 +233548,1167.740000013884,-0.051835003404140254 +233549,1167.745000013884,-0.05183403813668285 +233550,1167.7500000138841,-0.05183307205503897 +233551,1167.7550000138842,-0.051832105158012426 +233552,1167.7600000138843,-0.051831137444404575 +233553,1167.7650000138844,-0.05183016891301429 +233554,1167.7700000138846,-0.05182919956263793 +233555,1167.7750000138847,-0.05182822939206937 +233556,1167.7800000138848,-0.05182725840010001 +233557,1167.7850000138849,-0.05182628658551869 +233558,1167.790000013885,-0.05182531394711177 +233559,1167.795000013885,-0.05182434048366305 +233560,1167.8000000138852,-0.05182336619395385 +233561,1167.8050000138853,-0.0518223910767629 +233562,1167.8100000138854,-0.05182141513086641 +233563,1167.8150000138855,-0.05182043835503805 +233564,1167.8200000138856,-0.05181946074804891 +233565,1167.8250000138858,-0.05181848230866753 +233566,1167.8300000138859,-0.05181750303565986 +233567,1167.835000013886,-0.05181652292778928 +233568,1167.840000013886,-0.05181554198381659 +233569,1167.8450000138862,-0.05181456020249998 +233570,1167.8500000138863,-0.05181357758259506 +233571,1167.8550000138864,-0.05181259412285482 +233572,1167.8600000138865,-0.05181160982202964 +233573,1167.8650000138866,-0.051810624678867274 +233574,1167.8700000138867,-0.051809638692112844 +233575,1167.8750000138868,-0.05180865186050885 +233576,1167.880000013887,-0.05180766418279512 +233577,1167.885000013887,-0.051806675657708884 +233578,1167.8900000138872,-0.05180568628398466 +233579,1167.8950000138873,-0.05180469606035433 +233580,1167.9000000138874,-0.0518037049855471 +233581,1167.9050000138875,-0.051802713058289485 +233582,1167.9100000138876,-0.05180172027730532 +233583,1167.9150000138877,-0.05180072664131576 +233584,1167.9200000138878,-0.05179973214903925 +233585,1167.925000013888,-0.05179873679919149 +233586,1167.930000013888,-0.051797740590485516 +233587,1167.9350000138882,-0.051796743521631626 +233588,1167.9400000138883,-0.05179574559133738 +233589,1167.9450000138884,-0.05179474679830759 +233590,1167.9500000138885,-0.05179374714124432 +233591,1167.9550000138886,-0.05179274661884692 +233592,1167.9600000138887,-0.05179174522981193 +233593,1167.9650000138888,-0.05179074297283313 +233594,1167.970000013889,-0.05178973984660155 +233595,1167.975000013889,-0.05178873584980542 +233596,1167.9800000138891,-0.05178773098113017 +233597,1167.9850000138892,-0.05178672523925843 +233598,1167.9900000138894,-0.05178571862287005 +233599,1167.9950000138895,-0.05178471113064202 +233600,1168.0000000138896,-0.05178370276124855 +233601,1168.0050000138897,-0.05178269351336098 +233602,1168.0100000138898,-0.051781683385647856 +233603,1168.01500001389,-0.05178067237677482 +233604,1168.02000001389,-0.05177966048540472 +233605,1168.0250000138901,-0.0517786477101975 +233606,1168.0300000138902,-0.05177763404981025 +233607,1168.0350000138903,-0.051776619502897164 +233608,1168.0400000138904,-0.05177560406810959 +233609,1168.0450000138906,-0.05177458774409593 +233610,1168.0500000138907,-0.051773570529501725 +233611,1168.0550000138908,-0.05177255242296958 +233612,1168.0600000138909,-0.05177153342313919 +233613,1168.065000013891,-0.05177051352864733 +233614,1168.070000013891,-0.05176949273812782 +233615,1168.0750000138912,-0.05176847105021156 +233616,1168.0800000138913,-0.051767448463526496 +233617,1168.0850000138914,-0.05176642497669758 +233618,1168.0900000138915,-0.05176540058834684 +233619,1168.0950000138916,-0.05176437529709331 +233620,1168.1000000138918,-0.05176334910155304 +233621,1168.1050000138919,-0.05176232200033907 +233622,1168.110000013892,-0.05176129399206147 +233623,1168.115000013892,-0.05176026507532727 +233624,1168.1200000138922,-0.05175923524874051 +233625,1168.1250000138923,-0.05175820451090218 +233626,1168.1300000138924,-0.05175717286041024 +233627,1168.1350000138925,-0.05175614029585963 +233628,1168.1400000138926,-0.05175510681584218 +233629,1168.1450000138927,-0.05175407241894674 +233630,1168.1500000138928,-0.051753037103759 +233631,1168.155000013893,-0.05175200086886164 +233632,1168.160000013893,-0.05175096371283423 +233633,1168.1650000138932,-0.05174992563425326 +233634,1168.1700000138933,-0.05174888663169206 +233635,1168.1750000138934,-0.05174784670372091 +233636,1168.1800000138935,-0.051746805848906945 +233637,1168.1850000138936,-0.05174576406581416 +233638,1168.1900000138937,-0.05174472135300341 +233639,1168.1950000138938,-0.051743677709032425 +233640,1168.200000013894,-0.05174263313245574 +233641,1168.205000013894,-0.05174158762182475 +233642,1168.2100000138942,-0.05174054117568768 +233643,1168.2150000138943,-0.05173949379258954 +233644,1168.2200000138944,-0.05173844547107217 +233645,1168.2250000138945,-0.0517373962096742 +233646,1168.2300000138946,-0.05173634600693104 +233647,1168.2350000138947,-0.051735294861374896 +233648,1168.2400000138948,-0.05173424277153474 +233649,1168.245000013895,-0.051733189735936276 +233650,1168.250000013895,-0.051732135753102 +233651,1168.2550000138951,-0.05173108082155112 +233652,1168.2600000138953,-0.05173002493979958 +233653,1168.2650000138954,-0.05172896810636006 +233654,1168.2700000138955,-0.051727910319741936 +233655,1168.2750000138956,-0.05172685157845132 +233656,1168.2800000138957,-0.05172579188099098 +233657,1168.2850000138958,-0.051724731225860396 +233658,1168.290000013896,-0.05172366961155571 +233659,1168.295000013896,-0.05172260703656973 +233660,1168.3000000138961,-0.05172154349939191 +233661,1168.3050000138962,-0.05172047899850839 +233662,1168.3100000138963,-0.0517194135324019 +233663,1168.3150000138965,-0.05171834709955184 +233664,1168.3200000138966,-0.05171727969843418 +233665,1168.3250000138967,-0.05171621132752155 +233666,1168.3300000138968,-0.05171514198528314 +233667,1168.335000013897,-0.051714071670184734 +233668,1168.340000013897,-0.05171300038068871 +233669,1168.345000013897,-0.051711928115254 +233670,1168.3500000138972,-0.0517108548723361 +233671,1168.3550000138973,-0.05170978065038705 +233672,1168.3600000138974,-0.05170870544785544 +233673,1168.3650000138975,-0.05170762926318637 +233674,1168.3700000138977,-0.05170655209482148 +233675,1168.3750000138978,-0.05170547394119889 +233676,1168.3800000138979,-0.05170439480075325 +233677,1168.385000013898,-0.051703314671915676 +233678,1168.390000013898,-0.051702233553113784 +233679,1168.3950000138982,-0.05170115144277162 +233680,1168.4000000138983,-0.05170006833930971 +233681,1168.4050000138984,-0.051698984241145045 +233682,1168.4100000138985,-0.051697899146691 +233683,1168.4150000138986,-0.051696813054357436 +233684,1168.4200000138987,-0.051695725962550586 +233685,1168.4250000138989,-0.05169463786967312 +233686,1168.430000013899,-0.05169354877412407 +233687,1168.435000013899,-0.05169245867429886 +233688,1168.4400000138992,-0.051691367568589316 +233689,1168.4450000138993,-0.051690275455383586 +233690,1168.4500000138994,-0.0516891823330662 +233691,1168.4550000138995,-0.051688088200018016 +233692,1168.4600000138996,-0.05168699305461621 +233693,1168.4650000138997,-0.051685896895234305 +233694,1168.4700000138998,-0.051684799720242126 +233695,1168.4750000139,-0.05168370152800577 +233696,1168.4800000139,-0.051682602316887656 +233697,1168.4850000139002,-0.05168150208524645 +233698,1168.4900000139003,-0.0516804008314371 +233699,1168.4950000139004,-0.051679298553810794 +233700,1168.5000000139005,-0.051678195250714994 +233701,1168.5050000139006,-0.05167709092049334 +233702,1168.5100000139007,-0.05167598556148575 +233703,1168.5150000139008,-0.051674879172028315 +233704,1168.520000013901,-0.051673771750453325 +233705,1168.525000013901,-0.051672663295089294 +233706,1168.5300000139011,-0.051671553804260854 +233707,1168.5350000139013,-0.051670443276288835 +233708,1168.5400000139014,-0.05166933170949022 +233709,1168.5450000139015,-0.05166821910217813 +233710,1168.5500000139016,-0.0516671054526618 +233711,1168.5550000139017,-0.05166599075924661 +233712,1168.5600000139018,-0.051664875020234036 +233713,1168.565000013902,-0.05166375823392164 +233714,1168.570000013902,-0.05166264039860306 +233715,1168.5750000139021,-0.05166152151256803 +233716,1168.5800000139022,-0.05166040157410234 +233717,1168.5850000139023,-0.051659280581487804 +233718,1168.5900000139025,-0.0516581585330023 +233719,1168.5950000139026,-0.05165703542691969 +233720,1168.6000000139027,-0.05165591126150992 +233721,1168.6050000139028,-0.051654786035038855 +233722,1168.610000013903,-0.05165365974576841 +233723,1168.615000013903,-0.05165253239195644 +233724,1168.620000013903,-0.05165140397185678 +233725,1168.6250000139032,-0.051650274483719213 +233726,1168.6300000139033,-0.051649143925789474 +233727,1168.6350000139034,-0.05164801229630919 +233728,1168.6400000139035,-0.05164687959351595 +233729,1168.6450000139037,-0.05164574581564321 +233730,1168.6500000139038,-0.051644610960920316 +233731,1168.6550000139039,-0.051643475027572536 +233732,1168.660000013904,-0.05164233801382095 +233733,1168.665000013904,-0.05164119991788252 +233734,1168.6700000139042,-0.05164006073797005 +233735,1168.6750000139043,-0.05163892047229214 +233736,1168.6800000139044,-0.05163777911905326 +233737,1168.6850000139045,-0.051636636676453636 +233738,1168.6900000139046,-0.0516354931426893 +233739,1168.6950000139047,-0.05163434851595207 +233740,1168.7000000139049,-0.05163320279442951 +233741,1168.705000013905,-0.05163205597630494 +233742,1168.710000013905,-0.051630908059757445 +233743,1168.7150000139052,-0.0516297590429618 +233744,1168.7200000139053,-0.0516286089240885 +233745,1168.7250000139054,-0.05162745770130374 +233746,1168.7300000139055,-0.051626305372769424 +233747,1168.7350000139056,-0.05162515193664309 +233748,1168.7400000139057,-0.051623997391077966 +233749,1168.7450000139058,-0.051622841734222914 +233750,1168.750000013906,-0.05162168496422244 +233751,1168.755000013906,-0.051620527079216647 +233752,1168.7600000139062,-0.051619368077341264 +233753,1168.7650000139063,-0.051618207956727606 +233754,1168.7700000139064,-0.05161704671550257 +233755,1168.7750000139065,-0.051615884351788606 +233756,1168.7800000139066,-0.051614720863703736 +233757,1168.7850000139067,-0.05161355624936151 +233758,1168.7900000139068,-0.051612390506871 +233759,1168.795000013907,-0.05161122363433678 +233760,1168.800000013907,-0.05161005562985895 +233761,1168.8050000139071,-0.05160888649153306 +233762,1168.8100000139073,-0.051607716217450146 +233763,1168.8150000139074,-0.0516065448056967 +233764,1168.8200000139075,-0.05160537225435465 +233765,1168.8250000139076,-0.05160419856150135 +233766,1168.8300000139077,-0.05160302372520957 +233767,1168.8350000139078,-0.051601847743547466 +233768,1168.840000013908,-0.05160067061457859 +233769,1168.845000013908,-0.05159949233636188 +233770,1168.8500000139081,-0.05159831290695158 +233771,1168.8550000139082,-0.051597132324397325 +233772,1168.8600000139083,-0.05159595058674405 +233773,1168.8650000139085,-0.05159476769203201 +233774,1168.8700000139086,-0.05159358363829675 +233775,1168.8750000139087,-0.05159239842356911 +233776,1168.8800000139088,-0.05159121204587518 +233777,1168.885000013909,-0.051590024503236326 +233778,1168.890000013909,-0.05158883579366912 +233779,1168.895000013909,-0.051587645915185394 +233780,1168.9000000139092,-0.051586454865792164 +233781,1168.9050000139093,-0.05158526264349165 +233782,1168.9100000139094,-0.05158406924628122 +233783,1168.9150000139095,-0.05158287467215345 +233784,1168.9200000139097,-0.05158167891909605 +233785,1168.9250000139098,-0.05158048198509184 +233786,1168.9300000139099,-0.05157928386811878 +233787,1168.93500001391,-0.05157808456614993 +233788,1168.94000001391,-0.05157688407715341 +233789,1168.9450000139102,-0.051575682399092444 +233790,1168.9500000139103,-0.0515744795299253 +233791,1168.9550000139104,-0.05157327546760528 +233792,1168.9600000139105,-0.05157207021008074 +233793,1168.9650000139106,-0.05157086375529498 +233794,1168.9700000139107,-0.051569656101186356 +233795,1168.9750000139109,-0.05156844724568816 +233796,1168.980000013911,-0.051567237186728676 +233797,1168.985000013911,-0.051566025922231105 +233798,1168.9900000139112,-0.05156481345011359 +233799,1168.9950000139113,-0.0515635997682892 +233800,1169.0000000139114,-0.05156238487466587 +233801,1169.0050000139115,-0.05156116876714643 +233802,1169.0100000139116,-0.05155995144362858 +233803,1169.0150000139117,-0.05155873290200485 +233804,1169.0200000139118,-0.05155751314016263 +233805,1169.025000013912,-0.0515562921559841 +233806,1169.030000013912,-0.051555069947346224 +233807,1169.0350000139122,-0.0515538465121208 +233808,1169.0400000139123,-0.05155262184817436 +233809,1169.0450000139124,-0.051551395953368155 +233810,1169.0500000139125,-0.05155016882555822 +233811,1169.0550000139126,-0.051548940462595255 +233812,1169.0600000139127,-0.05154771086232471 +233813,1169.0650000139128,-0.05154648002258667 +233814,1169.070000013913,-0.05154524794121589 +233815,1169.075000013913,-0.05154401461604181 +233816,1169.0800000139131,-0.051542780044888444 +233817,1169.0850000139133,-0.05154154422557446 +233818,1169.0900000139134,-0.05154030715591308 +233819,1169.0950000139135,-0.05153906883371215 +233820,1169.1000000139136,-0.05153782925677403 +233821,1169.1050000139137,-0.051536588422895664 +233822,1169.1100000139138,-0.05153534632986849 +233823,1169.115000013914,-0.051534102975478446 +233824,1169.120000013914,-0.05153285835750599 +233825,1169.1250000139141,-0.05153161247372603 +233826,1169.1300000139142,-0.051530365321907926 +233827,1169.1350000139144,-0.05152911689981548 +233828,1169.1400000139145,-0.051527867205206905 +233829,1169.1450000139146,-0.05152661623583482 +233830,1169.1500000139147,-0.051525363989446224 +233831,1169.1550000139148,-0.05152411046378245 +233832,1169.160000013915,-0.05152285565657923 +233833,1169.165000013915,-0.05152159956556656 +233834,1169.1700000139151,-0.05152034218846879 +233835,1169.1750000139152,-0.05151908352300453 +233836,1169.1800000139153,-0.051517823566886674 +233837,1169.1850000139154,-0.05151656231782236 +233838,1169.1900000139156,-0.05151529977351296 +233839,1169.1950000139157,-0.051514035931654066 +233840,1169.2000000139158,-0.05151277078993544 +233841,1169.2050000139159,-0.05151150434604105 +233842,1169.210000013916,-0.051510236597649 +233843,1169.215000013916,-0.05150896754243153 +233844,1169.2200000139162,-0.05150769717805503 +233845,1169.2250000139163,-0.05150642550217994 +233846,1169.2300000139164,-0.051505152512460795 +233847,1169.2350000139165,-0.05150387820654622 +233848,1169.2400000139166,-0.051502602582078824 +233849,1169.2450000139168,-0.05150132563669529 +233850,1169.2500000139169,-0.05150004736802626 +233851,1169.255000013917,-0.051498767773696386 +233852,1169.260000013917,-0.05149748685132427 +233853,1169.2650000139172,-0.051496204598522444 +233854,1169.2700000139173,-0.05149492101289736 +233855,1169.2750000139174,-0.0514936360920494 +233856,1169.2800000139175,-0.05149234983357279 +233857,1169.2850000139176,-0.05149106223505564 +233858,1169.2900000139177,-0.05148977329407988 +233859,1169.2950000139178,-0.05148848300822128 +233860,1169.300000013918,-0.051487191375049396 +233861,1169.305000013918,-0.051485898392127555 +233862,1169.3100000139182,-0.05148460405701285 +233863,1169.3150000139183,-0.05148330836725611 +233864,1169.3200000139184,-0.05148201132040188 +233865,1169.3250000139185,-0.0514807129139884 +233866,1169.3300000139186,-0.05147941314554757 +233867,1169.3350000139187,-0.05147811201260495 +233868,1169.3400000139188,-0.05147680951267975 +233869,1169.345000013919,-0.051475505643284764 +233870,1169.350000013919,-0.05147420040192637 +233871,1169.3550000139192,-0.051472893786104534 +233872,1169.3600000139193,-0.051471585793312756 +233873,1169.3650000139194,-0.051470276421038054 +233874,1169.3700000139195,-0.05146896566676095 +233875,1169.3750000139196,-0.05146765352795545 +233876,1169.3800000139197,-0.051466340002089016 +233877,1169.3850000139198,-0.05146502508662255 +233878,1169.39000001392,-0.051463708779010346 +233879,1169.39500001392,-0.051462391076700115 +233880,1169.4000000139201,-0.051461071977132934 +233881,1169.4050000139202,-0.0514597514777432 +233882,1169.4100000139204,-0.05145842957595866 +233883,1169.4150000139205,-0.05145710626920035 +233884,1169.4200000139206,-0.051455781554882604 +233885,1169.4250000139207,-0.05145445543041298 +233886,1169.4300000139208,-0.05145312789319228 +233887,1169.435000013921,-0.051451798940614524 +233888,1169.440000013921,-0.051450468570066916 +233889,1169.4450000139211,-0.051449136778929816 +233890,1169.4500000139212,-0.05144780356457673 +233891,1169.4550000139213,-0.051446468924374274 +233892,1169.4600000139214,-0.051445132855682175 +233893,1169.4650000139216,-0.051443795355853215 +233894,1169.4700000139217,-0.051442456422233204 +233895,1169.4750000139218,-0.05144111605216101 +233896,1169.4800000139219,-0.051439774242968486 +233897,1169.485000013922,-0.05143843099198044 +233898,1169.490000013922,-0.05143708629651465 +233899,1169.4950000139222,-0.051435740153881825 +233900,1169.5000000139223,-0.05143439256138555 +233901,1169.5050000139224,-0.051433043516322316 +233902,1169.5100000139225,-0.05143169301598145 +233903,1169.5150000139226,-0.05143034105764511 +233904,1169.5200000139228,-0.051428987638588254 +233905,1169.5250000139229,-0.051427632756078624 +233906,1169.530000013923,-0.05142627640737672 +233907,1169.535000013923,-0.05142491858973575 +233908,1169.5400000139232,-0.05142355930040165 +233909,1169.5450000139233,-0.05142219853661301 +233910,1169.5500000139234,-0.051420836295601104 +233911,1169.5550000139235,-0.05141947257458981 +233912,1169.5600000139236,-0.0514181073707956 +233913,1169.5650000139237,-0.05141674068142754 +233914,1169.5700000139238,-0.05141537250368725 +233915,1169.575000013924,-0.05141400283476885 +233916,1169.580000013924,-0.05141263167185899 +233917,1169.5850000139242,-0.05141125901213677 +233918,1169.5900000139243,-0.05140988485277373 +233919,1169.5950000139244,-0.05140850919093386 +233920,1169.6000000139245,-0.05140713202377351 +233921,1169.6050000139246,-0.05140575334844142 +233922,1169.6100000139247,-0.05140437316207867 +233923,1169.6150000139248,-0.05140299146181861 +233924,1169.620000013925,-0.051401608244786956 +233925,1169.625000013925,-0.051400223508101604 +233926,1169.6300000139252,-0.051398837248872724 +233927,1169.6350000139253,-0.05139744946420268 +233928,1169.6400000139254,-0.05139606015118602 +233929,1169.6450000139255,-0.051394669306909425 +233930,1169.6500000139256,-0.05139327692845171 +233931,1169.6550000139257,-0.05139188301288381 +233932,1169.6600000139258,-0.051390487557268674 +233933,1169.665000013926,-0.051389090558661324 +233934,1169.670000013926,-0.05138769201410878 +233935,1169.6750000139261,-0.05138629192065005 +233936,1169.6800000139262,-0.0513848902753161 +233937,1169.6850000139264,-0.05138348707512981 +233938,1169.6900000139265,-0.05138208231710597 +233939,1169.6950000139266,-0.05138067599825122 +233940,1169.7000000139267,-0.05137926811556404 +233941,1169.7050000139268,-0.051377858666034754 +233942,1169.710000013927,-0.05137644764664543 +233943,1169.715000013927,-0.05137503505436989 +233944,1169.7200000139271,-0.0513736208861737 +233945,1169.7250000139272,-0.0513722051390141 +233946,1169.7300000139273,-0.051370787809839995 +233947,1169.7350000139274,-0.051369368895591946 +233948,1169.7400000139276,-0.051367948393202086 +233949,1169.7450000139277,-0.05136652629959413 +233950,1169.7500000139278,-0.05136510261168335 +233951,1169.7550000139279,-0.05136367732637653 +233952,1169.760000013928,-0.05136225044057191 +233953,1169.765000013928,-0.05136082195115922 +233954,1169.7700000139282,-0.05135939185501958 +233955,1169.7750000139283,-0.051357960149025515 +233956,1169.7800000139284,-0.051356526830040904 +233957,1169.7850000139285,-0.05135509189492096 +233958,1169.7900000139286,-0.05135365534051219 +233959,1169.7950000139288,-0.05135221716365237 +233960,1169.8000000139289,-0.05135077736117052 +233961,1169.805000013929,-0.05134933592988682 +233962,1169.810000013929,-0.05134789286661267 +233963,1169.8150000139292,-0.05134644816815059 +233964,1169.8200000139293,-0.0513450018312942 +233965,1169.8250000139294,-0.05134355385282821 +233966,1169.8300000139295,-0.05134210422952836 +233967,1169.8350000139296,-0.0513406529581614 +233968,1169.8400000139297,-0.051339200035485054 +233969,1169.8450000139298,-0.05133774545824799 +233970,1169.85000001393,-0.05133628922318981 +233971,1169.85500001393,-0.05133483132704096 +233972,1169.8600000139302,-0.05133337176652276 +233973,1169.8650000139303,-0.05133191053834732 +233974,1169.8700000139304,-0.05133044763921754 +233975,1169.8750000139305,-0.05132898306582706 +233976,1169.8800000139306,-0.05132751681486022 +233977,1169.8850000139307,-0.051326048882992054 +233978,1169.8900000139308,-0.051324579266888236 +233979,1169.895000013931,-0.051323107963205036 +233980,1169.900000013931,-0.0513216349685893 +233981,1169.9050000139312,-0.0513201602796784 +233982,1169.9100000139313,-0.05131868389310024 +233983,1169.9150000139314,-0.05131720580547318 +233984,1169.9200000139315,-0.051315726013406004 +233985,1169.9250000139316,-0.05131424451349793 +233986,1169.9300000139317,-0.05131276130233847 +233987,1169.9350000139318,-0.051311276376507536 +233988,1169.940000013932,-0.05130978973257529 +233989,1169.945000013932,-0.05130830136710215 +233990,1169.9500000139321,-0.05130681127663877 +233991,1169.9550000139322,-0.05130531945772597 +233992,1169.9600000139324,-0.051303825906894744 +233993,1169.9650000139325,-0.05130233062066617 +233994,1169.9700000139326,-0.0513008335955514 +233995,1169.9750000139327,-0.05129933482805163 +233996,1169.9800000139328,-0.051297834314658064 +233997,1169.985000013933,-0.05129633205185185 +233998,1169.990000013933,-0.05129482803610408 +233999,1169.9950000139331,-0.05129332226387572 +234000,1170.0000000139332,-0.05129181473161759 +234001,1170.0050000139333,-0.05129030543577031 +234002,1170.0100000139334,-0.051288794372764276 +234003,1170.0150000139336,-0.05128728153901963 +234004,1170.0200000139337,-0.05128576693094621 +234005,1170.0250000139338,-0.051284250544943503 +234006,1170.0300000139339,-0.05128273237740062 +234007,1170.035000013934,-0.05128121242469625 +234008,1170.040000013934,-0.051279690683198625 +234009,1170.0450000139342,-0.05127816714926546 +234010,1170.0500000139343,-0.05127664181924395 +234011,1170.0550000139344,-0.05127511468947071 +234012,1170.0600000139345,-0.05127358575627174 +234013,1170.0650000139347,-0.05127205501596237 +234014,1170.0700000139348,-0.051270522464847236 +234015,1170.0750000139349,-0.05126898809922024 +234016,1170.080000013935,-0.05126745191536449 +234017,1170.085000013935,-0.0512659139095523 +234018,1170.0900000139352,-0.05126437407804508 +234019,1170.0950000139353,-0.05126283241709338 +234020,1170.1000000139354,-0.051261288922936785 +234021,1170.1050000139355,-0.05125974359180389 +234022,1170.1100000139356,-0.05125819641991226 +234023,1170.1150000139357,-0.05125664740346841 +234024,1170.1200000139359,-0.051255096538667715 +234025,1170.125000013936,-0.05125354382169442 +234026,1170.130000013936,-0.051251989248721555 +234027,1170.1350000139362,-0.05125043281591093 +234028,1170.1400000139363,-0.05124887451941302 +234029,1170.1450000139364,-0.05124731435536705 +234030,1170.1500000139365,-0.05124575231990082 +234031,1170.1550000139366,-0.051244188409130705 +234032,1170.1600000139367,-0.05124262261916167 +234033,1170.1650000139368,-0.05124105494608715 +234034,1170.170000013937,-0.05123948538598904 +234035,1170.175000013937,-0.05123791393493764 +234036,1170.1800000139372,-0.05123634058899161 +234037,1170.1850000139373,-0.05123476534419794 +234038,1170.1900000139374,-0.05123318819659188 +234039,1170.1950000139375,-0.051231609142196946 +234040,1170.2000000139376,-0.05123002817702478 +234041,1170.2050000139377,-0.051228445297075195 +234042,1170.2100000139378,-0.051226860498336094 +234043,1170.215000013938,-0.051225273776783424 +234044,1170.220000013938,-0.05122368512838112 +234045,1170.2250000139381,-0.051222094549081096 +234046,1170.2300000139383,-0.05122050203482313 +234047,1170.2350000139384,-0.05121890758153489 +234048,1170.2400000139385,-0.05121731118513185 +234049,1170.2450000139386,-0.05121571284151722 +234050,1170.2500000139387,-0.05121411254658196 +234051,1170.2550000139388,-0.05121251029620467 +234052,1170.260000013939,-0.0512109060862516 +234053,1170.265000013939,-0.05120929991257654 +234054,1170.2700000139391,-0.05120769177102081 +234055,1170.2750000139392,-0.051206081657413194 +234056,1170.2800000139393,-0.05120446956756993 +234057,1170.2850000139395,-0.05120285549729459 +234058,1170.2900000139396,-0.051201239442378095 +234059,1170.2950000139397,-0.05119962139859864 +234060,1170.3000000139398,-0.051198001361721625 +234061,1170.30500001394,-0.051196379327499646 +234062,1170.31000001394,-0.05119475529167238 +234063,1170.31500001394,-0.051193129249966635 +234064,1170.3200000139402,-0.05119150119809619 +234065,1170.3250000139403,-0.051189871131761835 +234066,1170.3300000139404,-0.05118823904665122 +234067,1170.3350000139405,-0.05118660493843892 +234068,1170.3400000139407,-0.05118496880278627 +234069,1170.3450000139408,-0.051183330635341424 +234070,1170.3500000139409,-0.05118169043173919 +234071,1170.355000013941,-0.051180048187601045 +234072,1170.360000013941,-0.051178403898535084 +234073,1170.3650000139412,-0.05117675756013593 +234074,1170.3700000139413,-0.05117510916798471 +234075,1170.3750000139414,-0.051173458717649015 +234076,1170.3800000139415,-0.05117180620468277 +234077,1170.3850000139416,-0.05117015162462626 +234078,1170.3900000139417,-0.05116849497300603 +234079,1170.3950000139419,-0.05116683624533489 +234080,1170.400000013942,-0.05116517543711177 +234081,1170.405000013942,-0.051163512543821725 +234082,1170.4100000139422,-0.05116184756093586 +234083,1170.4150000139423,-0.05116018048391128 +234084,1170.4200000139424,-0.05115851130819104 +234085,1170.4250000139425,-0.051156840029204065 +234086,1170.4300000139426,-0.05115516664236512 +234087,1170.4350000139427,-0.051153491143074735 +234088,1170.4400000139428,-0.05115181352671914 +234089,1170.445000013943,-0.051150133788670234 +234090,1170.450000013943,-0.051148451924285514 +234091,1170.4550000139432,-0.051146767928907995 +234092,1170.4600000139433,-0.0511450817978662 +234093,1170.4650000139434,-0.05114339352647405 +234094,1170.4700000139435,-0.05114170311003082 +234095,1170.4750000139436,-0.051140010543821106 +234096,1170.4800000139437,-0.05113831582311474 +234097,1170.4850000139438,-0.05113661894316671 +234098,1170.490000013944,-0.05113491989921717 +234099,1170.495000013944,-0.051133218686491275 +234100,1170.5000000139441,-0.05113151530019924 +234101,1170.5050000139443,-0.05112980973553616 +234102,1170.5100000139444,-0.05112810198768203 +234103,1170.5150000139445,-0.051126392051801646 +234104,1170.5200000139446,-0.05112467992304457 +234105,1170.5250000139447,-0.05112296559654504 +234106,1170.5300000139448,-0.051121249067421916 +234107,1170.535000013945,-0.0511195303307786 +234108,1170.540000013945,-0.051117809381703044 +234109,1170.5450000139451,-0.05111608621526756 +234110,1170.5500000139452,-0.051114360826528885 +234111,1170.5550000139453,-0.051112633210528016 +234112,1170.5600000139455,-0.05111090336229022 +234113,1170.5650000139456,-0.051109171276824926 +234114,1170.5700000139457,-0.05110743694912566 +234115,1170.5750000139458,-0.051105700374169984 +234116,1170.580000013946,-0.051103961546919464 +234117,1170.585000013946,-0.05110222046231954 +234118,1170.590000013946,-0.0511004771152995 +234119,1170.5950000139462,-0.05109873150077242 +234120,1170.6000000139463,-0.05109698361363505 +234121,1170.6050000139464,-0.051095233448767804 +234122,1170.6100000139465,-0.05109348100103465 +234123,1170.6150000139467,-0.051091726265283056 +234124,1170.6200000139468,-0.051089969236343936 +234125,1170.6250000139469,-0.05108820990903153 +234126,1170.630000013947,-0.0510864482781434 +234127,1170.635000013947,-0.05108468433846029 +234128,1170.6400000139472,-0.051082918084746125 +234129,1170.6450000139473,-0.051081149511747914 +234130,1170.6500000139474,-0.051079378614195634 +234131,1170.6550000139475,-0.05107760538680222 +234132,1170.6600000139476,-0.05107582982426348 +234133,1170.6650000139477,-0.051074051921257975 +234134,1170.6700000139479,-0.05107227167244703 +234135,1170.675000013948,-0.05107048907247457 +234136,1170.680000013948,-0.051068704115967124 +234137,1170.6850000139482,-0.05106691679753368 +234138,1170.6900000139483,-0.051065127111765675 +234139,1170.6950000139484,-0.05106333505323688 +234140,1170.7000000139485,-0.05106154061650335 +234141,1170.7050000139486,-0.05105974379610332 +234142,1170.7100000139487,-0.051057944586557144 +234143,1170.7150000139488,-0.05105614298236722 +234144,1170.720000013949,-0.05105433897801791 +234145,1170.725000013949,-0.05105253256797546 +234146,1170.7300000139492,-0.051050723746687954 +234147,1170.7350000139493,-0.05104891250858516 +234148,1170.7400000139494,-0.05104709884807855 +234149,1170.7450000139495,-0.051045282759561134 +234150,1170.7500000139496,-0.051043464237407424 +234151,1170.7550000139497,-0.05104164327597336 +234152,1170.7600000139498,-0.0510398198695962 +234153,1170.76500001395,-0.051037994012594484 +234154,1170.77000001395,-0.05103616569926788 +234155,1170.7750000139501,-0.051034334923897196 +234156,1170.7800000139503,-0.051032501680744205 +234157,1170.7850000139504,-0.051030665964051654 +234158,1170.7900000139505,-0.051028827768043086 +234159,1170.7950000139506,-0.05102698708692285 +234160,1170.8000000139507,-0.05102514391487594 +234161,1170.8050000139508,-0.05102329824606795 +234162,1170.810000013951,-0.051021450074645 +234163,1170.815000013951,-0.051019599394733606 +234164,1170.8200000139511,-0.05101774620044064 +234165,1170.8250000139512,-0.05101589048585322 +234166,1170.8300000139513,-0.05101403224503862 +234167,1170.8350000139515,-0.05101217147204422 +234168,1170.8400000139516,-0.051010308160897355 +234169,1170.8450000139517,-0.051008442305605285 +234170,1170.8500000139518,-0.051006573900155075 +234171,1170.855000013952,-0.051004702938513516 +234172,1170.860000013952,-0.05100282941462705 +234173,1170.865000013952,-0.05100095332242164 +234174,1170.8700000139522,-0.050999074655802716 +234175,1170.8750000139523,-0.05099719340865509 +234176,1170.8800000139524,-0.05099530957484282 +234177,1170.8850000139525,-0.05099342314820916 +234178,1170.8900000139527,-0.05099153412257644 +234179,1170.8950000139528,-0.050989642491746014 +234180,1170.9000000139529,-0.050987748249498095 +234181,1170.905000013953,-0.05098585138959176 +234182,1170.910000013953,-0.05098395190576474 +234183,1170.9150000139532,-0.050982049791733444 +234184,1170.9200000139533,-0.05098014504119277 +234185,1170.9250000139534,-0.050978237647816046 +234186,1170.9300000139535,-0.05097632760525494 +234187,1170.9350000139536,-0.05097441490713935 +234188,1170.9400000139537,-0.05097249954707732 +234189,1170.9450000139539,-0.050970581518654925 +234190,1170.950000013954,-0.05096866081543618 +234191,1170.955000013954,-0.05096673743096295 +234192,1170.9600000139542,-0.050964811358754816 +234193,1170.9650000139543,-0.05096288259230903 +234194,1170.9700000139544,-0.050960951125100365 +234195,1170.9750000139545,-0.05095901695058105 +234196,1170.9800000139546,-0.050957080062180624 +234197,1170.9850000139547,-0.05095514045330589 +234198,1170.9900000139548,-0.050953198117340746 +234199,1170.995000013955,-0.05095125304764616 +234200,1171.000000013955,-0.050949305237559986 +234201,1171.0050000139552,-0.0509473546803969 +234202,1171.0100000139553,-0.05094540136944831 +234203,1171.0150000139554,-0.05094344529798221 +234204,1171.0200000139555,-0.05094148645924311 +234205,1171.0250000139556,-0.0509395248464519 +234206,1171.0300000139557,-0.05093756045280577 +234207,1171.0350000139558,-0.05093559327147806 +234208,1171.040000013956,-0.05093362329561818 +234209,1171.045000013956,-0.0509316505183515 +234210,1171.0500000139562,-0.050929674932779265 +234211,1171.0550000139563,-0.050927696531978414 +234212,1171.0600000139564,-0.05092571530900152 +234213,1171.0650000139565,-0.05092373125687668 +234214,1171.0700000139566,-0.05092174436860738 +234215,1171.0750000139567,-0.050919754637172375 +234216,1171.0800000139568,-0.05091776205552563 +234217,1171.085000013957,-0.05091576661659613 +234218,1171.090000013957,-0.05091376831328782 +234219,1171.0950000139571,-0.05091176713847943 +234220,1171.1000000139572,-0.05090976308502445 +234221,1171.1050000139574,-0.05090775614575094 +234222,1171.1100000139575,-0.050905746313461404 +234223,1171.1150000139576,-0.050903733580932725 +234224,1171.1200000139577,-0.05090171794091602 +234225,1171.1250000139578,-0.05089969938613649 +234226,1171.130000013958,-0.050897677909293365 +234227,1171.135000013958,-0.050895653503059704 +234228,1171.1400000139581,-0.05089362616008235 +234229,1171.1450000139582,-0.050891595872981754 +234230,1171.1500000139583,-0.05088956263435185 +234231,1171.1550000139584,-0.05088752643675997 +234232,1171.1600000139586,-0.050885487272746686 +234233,1171.1650000139587,-0.05088344513482569 +234234,1171.1700000139588,-0.05088140001548369 +234235,1171.1750000139589,-0.05087935190718024 +234236,1171.180000013959,-0.05087730080234763 +234237,1171.185000013959,-0.05087524669339081 +234238,1171.1900000139592,-0.050873189572687154 +234239,1171.1950000139593,-0.05087112943258641 +234240,1171.2000000139594,-0.05086906626541058 +234241,1171.2050000139595,-0.0508670000634537 +234242,1171.2100000139596,-0.05086493081898179 +234243,1171.2150000139598,-0.05086285852423268 +234244,1171.2200000139599,-0.0508607831714159 +234245,1171.22500001396,-0.05085870475271254 +234246,1171.23000001396,-0.05085662326027509 +234247,1171.2350000139602,-0.050854538686227316 +234248,1171.2400000139603,-0.05085245102266414 +234249,1171.2450000139604,-0.05085036026165149 +234250,1171.2500000139605,-0.05084826639522613 +234251,1171.2550000139606,-0.05084616941539558 +234252,1171.2600000139607,-0.05084406931413793 +234253,1171.2650000139608,-0.05084196608340172 +234254,1171.270000013961,-0.05083985971510576 +234255,1171.275000013961,-0.05083775020113906 +234256,1171.2800000139612,-0.05083563753336061 +234257,1171.2850000139613,-0.050833521703599276 +234258,1171.2900000139614,-0.05083140270365364 +234259,1171.2950000139615,-0.05082928052529185 +234260,1171.3000000139616,-0.05082715516025149 +234261,1171.3050000139617,-0.05082502660023943 +234262,1171.3100000139618,-0.05082289483693164 +234263,1171.315000013962,-0.05082075986197309 +234264,1171.320000013962,-0.05081862166697755 +234265,1171.3250000139622,-0.050816480243527494 +234266,1171.3300000139623,-0.050814335583173886 +234267,1171.3350000139624,-0.05081218767743606 +234268,1171.3400000139625,-0.05081003651780158 +234269,1171.3450000139626,-0.05080788209572603 +234270,1171.3500000139627,-0.05080572440263293 +234271,1171.3550000139628,-0.05080356342991351 +234272,1171.360000013963,-0.05080139916892658 +234273,1171.365000013963,-0.05079923161099838 +234274,1171.3700000139631,-0.05079706074742239 +234275,1171.3750000139632,-0.05079488656945924 +234276,1171.3800000139634,-0.05079270906833641 +234277,1171.3850000139635,-0.05079052823524822 +234278,1171.3900000139636,-0.05078834406135556 +234279,1171.3950000139637,-0.05078615653778577 +234280,1171.4000000139638,-0.05078396565563247 +234281,1171.405000013964,-0.050781771405955356 +234282,1171.410000013964,-0.05077957377978008 +234283,1171.4150000139641,-0.050777372768098065 +234284,1171.4200000139642,-0.05077516836186631 +234285,1171.4250000139643,-0.05077296055200725 +234286,1171.4300000139644,-0.05077074932940856 +234287,1171.4350000139646,-0.050768534684922983 +234288,1171.4400000139647,-0.05076631660936818 +234289,1171.4450000139648,-0.05076409509352651 +234290,1171.4500000139649,-0.05076187012814489 +234291,1171.455000013965,-0.050759641703934606 +234292,1171.460000013965,-0.05075740981157111 +234293,1171.4650000139652,-0.05075517444169388 +234294,1171.4700000139653,-0.05075293558490623 +234295,1171.4750000139654,-0.050750693231775064 +234296,1171.4800000139655,-0.05074844737283078 +234297,1171.4850000139656,-0.05074619799856704 +234298,1171.4900000139658,-0.05074394509944058 +234299,1171.4950000139659,-0.05074168866587104 +234300,1171.500000013966,-0.05073942868824075 +234301,1171.505000013966,-0.050737165156894574 +234302,1171.5100000139662,-0.05073489806213969 +234303,1171.5150000139663,-0.050732627394245396 +234304,1171.5200000139664,-0.05073035314344296 +234305,1171.5250000139665,-0.05072807529992534 +234306,1171.5300000139666,-0.050725793853847095 +234307,1171.5350000139667,-0.050723508795324106 +234308,1171.5400000139668,-0.05072122011443341 +234309,1171.545000013967,-0.050718927801212975 +234310,1171.550000013967,-0.050716631845661525 +234311,1171.5550000139672,-0.05071433223773835 +234312,1171.5600000139673,-0.05071202896736304 +234313,1171.5650000139674,-0.05070972202441536 +234314,1171.5700000139675,-0.05070741139873496 +234315,1171.5750000139676,-0.05070509708012126 +234316,1171.5800000139677,-0.05070277905833317 +234317,1171.5850000139678,-0.05070045732308887 +234318,1171.590000013968,-0.050698131864065674 +234319,1171.595000013968,-0.05069580267089974 +234320,1171.6000000139682,-0.050693469733185906 +234321,1171.6050000139683,-0.05069113304047744 +234322,1171.6100000139684,-0.05068879258228583 +234323,1171.6150000139685,-0.05068644834808059 +234324,1171.6200000139686,-0.050684100327289004 +234325,1171.6250000139687,-0.05068174850929593 +234326,1171.6300000139688,-0.05067939288344356 +234327,1171.635000013969,-0.050677033439031204 +234328,1171.640000013969,-0.050674670165315065 +234329,1171.6450000139691,-0.050672303051507994 +234330,1171.6500000139692,-0.0506699320867793 +234331,1171.6550000139694,-0.05066755726025447 +234332,1171.6600000139695,-0.05066517856101498 +234333,1171.6650000139696,-0.050662795978098016 +234334,1171.6700000139697,-0.05066040950049629 +234335,1171.6750000139698,-0.05065801911715777 +234336,1171.68000001397,-0.05065562481698543 +234337,1171.68500001397,-0.050653226588837044 +234338,1171.6900000139701,-0.05065082442152493 +234339,1171.6950000139702,-0.050648418303815716 +234340,1171.7000000139703,-0.050646008224430064 +234341,1171.7050000139704,-0.05064359417204244 +234342,1171.7100000139706,-0.0506411761352809 +234343,1171.7150000139707,-0.05063875410272679 +234344,1171.7200000139708,-0.0506363280629145 +234345,1171.7250000139709,-0.05063389800433126 +234346,1171.730000013971,-0.05063146391541682 +234347,1171.735000013971,-0.05062902578456324 +234348,1171.7400000139712,-0.050626583600114614 +234349,1171.7450000139713,-0.0506241373503668 +234350,1171.7500000139714,-0.050621687023567175 +234351,1171.7550000139715,-0.050619232607914386 +234352,1171.7600000139716,-0.05061677409155803 +234353,1171.7650000139718,-0.050614311462598455 +234354,1171.7700000139719,-0.050611844709086425 +234355,1171.775000013972,-0.050609373819022904 +234356,1171.780000013972,-0.05060689878035875 +234357,1171.7850000139722,-0.05060441958099446 +234358,1171.7900000139723,-0.050601936208779875 +234359,1171.7950000139724,-0.050599448651513924 +234360,1171.8000000139725,-0.05059695689694432 +234361,1171.8050000139726,-0.05059446093276731 +234362,1171.8100000139727,-0.05059196074662732 +234363,1171.8150000139728,-0.05058945632611679 +234364,1171.820000013973,-0.05058694765877577 +234365,1171.825000013973,-0.05058443473209168 +234366,1171.8300000139732,-0.05058191753349903 +234367,1171.8350000139733,-0.050579396050379075 +234368,1171.8400000139734,-0.0505768702700596 +234369,1171.8450000139735,-0.050574340179814554 +234370,1171.8500000139736,-0.05057180576686378 +234371,1171.8550000139737,-0.050569267018372686 +234372,1171.8600000139738,-0.05056672392145197 +234373,1171.865000013974,-0.05056417646315731 +234374,1171.870000013974,-0.05056162463048905 +234375,1171.8750000139742,-0.05055906841039187 +234376,1171.8800000139743,-0.05055650778975452 +234377,1171.8850000139744,-0.05055394275540944 +234378,1171.8900000139745,-0.05055137329413252 +234379,1171.8950000139746,-0.05054879939264271 +234380,1171.9000000139747,-0.05054622103760174 +234381,1171.9050000139748,-0.050543638215613786 +234382,1171.910000013975,-0.050541050913225125 +234383,1171.915000013975,-0.050538459116923846 +234384,1171.9200000139751,-0.0505358628131395 +234385,1171.9250000139753,-0.05053326198824274 +234386,1171.9300000139754,-0.050530656628545036 +234387,1171.9350000139755,-0.05052804672029828 +234388,1171.9400000139756,-0.0505254322496945 +234389,1171.9450000139757,-0.05052281320286551 +234390,1171.9500000139758,-0.05052018956588251 +234391,1171.955000013976,-0.05051756132475577 +234392,1171.960000013976,-0.05051492846543434 +234393,1171.9650000139761,-0.05051229097380561 +234394,1171.9700000139762,-0.050509648835694976 +234395,1171.9750000139763,-0.050507002036865534 +234396,1171.9800000139765,-0.05050435056301764 +234397,1171.9850000139766,-0.05050169439978863 +234398,1171.9900000139767,-0.050499033532752396 +234399,1171.9950000139768,-0.050496367947419005 +234400,1172.000000013977,-0.050493697629234405 +234401,1172.005000013977,-0.05049102256357998 +234402,1172.010000013977,-0.050488342735772206 +234403,1172.0150000139772,-0.05048565813106228 +234404,1172.0200000139773,-0.05048296873463569 +234405,1172.0250000139774,-0.050480274531611885 +234406,1172.0300000139775,-0.05047757550704388 +234407,1172.0350000139777,-0.05047487164591783 +234408,1172.0400000139778,-0.05047216293315266 +234409,1172.0450000139779,-0.0504694493535997 +234410,1172.050000013978,-0.05046673089204224 +234411,1172.055000013978,-0.05046400753319512 +234412,1172.0600000139782,-0.05046127926170438 +234413,1172.0650000139783,-0.05045854606214682 +234414,1172.0700000139784,-0.05045580791902961 +234415,1172.0750000139785,-0.05045306481678981 +234416,1172.0800000139786,-0.05045031673979405 +234417,1172.0850000139787,-0.05044756367233803 +234418,1172.0900000139789,-0.05044480559864617 +234419,1172.095000013979,-0.050442042502871105 +234420,1172.100000013979,-0.05043927436909331 +234421,1172.1050000139792,-0.05043650118132067 +234422,1172.1100000139793,-0.050433722923487995 +234423,1172.1150000139794,-0.05043093957945665 +234424,1172.1200000139795,-0.05042815113301407 +234425,1172.1250000139796,-0.05042535756787332 +234426,1172.1300000139797,-0.050422558867672634 +234427,1172.1350000139798,-0.050419755015975 +234428,1172.14000001398,-0.05041694599626767 +234429,1172.14500001398,-0.050414131791961726 +234430,1172.1500000139802,-0.05041131238639157 +234431,1172.1550000139803,-0.05040848776281456 +234432,1172.1600000139804,-0.050405657904410435 +234433,1172.1650000139805,-0.05040282279428086 +234434,1172.1700000139806,-0.05039998241544903 +234435,1172.1750000139807,-0.05039713675085909 +234436,1172.1800000139808,-0.05039428578337571 +234437,1172.185000013981,-0.05039142949578357 +234438,1172.190000013981,-0.05038856787078689 +234439,1172.1950000139811,-0.050385700891008925 +234440,1172.2000000139813,-0.05038282853899146 +234441,1172.2050000139814,-0.050379950797194324 +234442,1172.2100000139815,-0.05037706764799488 +234443,1172.2150000139816,-0.050374179073687485 +234444,1172.2200000139817,-0.050371285056483035 +234445,1172.2250000139818,-0.05036838557850838 +234446,1172.230000013982,-0.05036548062180586 +234447,1172.235000013982,-0.050362570168332725 +234448,1172.2400000139821,-0.05035965419996066 +234449,1172.2450000139822,-0.050356732698475216 +234450,1172.2500000139823,-0.05035380564557528 +234451,1172.2550000139825,-0.05035087302287252 +234452,1172.2600000139826,-0.05034793481189085 +234453,1172.2650000139827,-0.05034499099406591 +234454,1172.2700000139828,-0.05034204155074444 +234455,1172.275000013983,-0.05033908646318379 +234456,1172.280000013983,-0.05033612571255131 +234457,1172.285000013983,-0.05033315927992381 +234458,1172.2900000139832,-0.050330187146286946 +234459,1172.2950000139833,-0.0503272092925347 +234460,1172.3000000139834,-0.05032422569946877 +234461,1172.3050000139835,-0.05032123634779795 +234462,1172.3100000139837,-0.050318241218137605 +234463,1172.3150000139838,-0.05031524029100902 +234464,1172.3200000139839,-0.05031223354683883 +234465,1172.325000013984,-0.05030922096595838 +234466,1172.330000013984,-0.05030620252860317 +234467,1172.3350000139842,-0.05030317821491221 +234468,1172.3400000139843,-0.05030014800492737 +234469,1172.3450000139844,-0.05029711187859279 +234470,1172.3500000139845,-0.05029406981575426 +234471,1172.3550000139846,-0.05029102179615856 +234472,1172.3600000139847,-0.05028796779945282 +234473,1172.3650000139849,-0.05028490780518388 +234474,1172.370000013985,-0.05028184179279765 +234475,1172.375000013985,-0.05027876974163846 +234476,1172.3800000139852,-0.05027569163094833 +234477,1172.3850000139853,-0.05027260743986642 +234478,1172.3900000139854,-0.050269517147428264 +234479,1172.3950000139855,-0.05026642073256511 +234480,1172.4000000139856,-0.05026331817410329 +234481,1172.4050000139857,-0.050260209450763454 +234482,1172.4100000139858,-0.05025709454115993 +234483,1172.415000013986,-0.05025397342380001 +234484,1172.420000013986,-0.050250846077083224 +234485,1172.4250000139862,-0.050247712479300675 +234486,1172.4300000139863,-0.050244572608634255 +234487,1172.4350000139864,-0.050241426443156004 +234488,1172.4400000139865,-0.0502382739608273 +234489,1172.4450000139866,-0.05023511513949818 +234490,1172.4500000139867,-0.05023194995690658 +234491,1172.4550000139868,-0.05022877839067756 +234492,1172.460000013987,-0.050225600418322615 +234493,1172.465000013987,-0.05022241601723884 +234494,1172.4700000139871,-0.05021922516470823 +234495,1172.4750000139873,-0.05021602783789687 +234496,1172.4800000139874,-0.05021282401385415 +234497,1172.4850000139875,-0.05020961366951198 +234498,1172.4900000139876,-0.050206396781684065 +234499,1172.4950000139877,-0.05020317332706499 +234500,1172.5000000139878,-0.050199943282229514 +234501,1172.505000013988,-0.0501967066236317 +234502,1172.510000013988,-0.050193463327604125 +234503,1172.5150000139881,-0.05019021337035703 +234504,1172.5200000139882,-0.050186956727977516 +234505,1172.5250000139883,-0.05018369337642868 +234506,1172.5300000139885,-0.05018042329154878 +234507,1172.5350000139886,-0.05017714644905036 +234508,1172.5400000139887,-0.05017386282451942 +234509,1172.5450000139888,-0.05017057239341452 +234510,1172.550000013989,-0.050167275131065905 +234511,1172.555000013989,-0.050163971012674655 +234512,1172.560000013989,-0.05016066001331173 +234513,1172.5650000139892,-0.050157342107917134 +234514,1172.5700000139893,-0.05015401727129896 +234515,1172.5750000139894,-0.05015068547813252 +234516,1172.5800000139895,-0.05014734670295937 +234517,1172.5850000139897,-0.050144000920186414 +234518,1172.5900000139898,-0.05014064810408496 +234519,1172.5950000139899,-0.05013728822878976 +234520,1172.60000001399,-0.05013392126829807 +234521,1172.60500001399,-0.050130547196468686 +234522,1172.6100000139902,-0.05012716598702093 +234523,1172.6150000139903,-0.05012377761353373 +234524,1172.6200000139904,-0.05012038204944461 +234525,1172.6250000139905,-0.050116979268048666 +234526,1172.6300000139906,-0.050113569242497574 +234527,1172.6350000139907,-0.05011015194579859 +234528,1172.6400000139909,-0.0501067273508135 +234529,1172.645000013991,-0.050103295430257606 +234530,1172.650000013991,-0.050099856156698666 +234531,1172.6550000139912,-0.05009640950255586 +234532,1172.6600000139913,-0.05009295544009872 +234533,1172.6650000139914,-0.05008949394144604 +234534,1172.6700000139915,-0.050086024978564826 +234535,1172.6750000139916,-0.05008254852326917 +234536,1172.6800000139917,-0.05007906454721921 +234537,1172.6850000139918,-0.05007557302191992 +234538,1172.690000013992,-0.05007207391872011 +234539,1172.695000013992,-0.05006856720881119 +234540,1172.7000000139922,-0.0500650528632261 +234541,1172.7050000139923,-0.05006153085283813 +234542,1172.7100000139924,-0.05005800114835975 +234543,1172.7150000139925,-0.05005446372034145 +234544,1172.7200000139926,-0.050050918539170555 +234545,1172.7250000139927,-0.050047365575070044 +234546,1172.7300000139928,-0.05004380479809734 +234547,1172.735000013993,-0.05004023617814308 +234548,1172.740000013993,-0.050036659684929874 +234549,1172.7450000139931,-0.05003307528801113 +234550,1172.7500000139933,-0.05002948295676977 +234551,1172.7550000139934,-0.05002588266041693 +234552,1172.7600000139935,-0.050022274367990734 +234553,1172.7650000139936,-0.05001865804835501 +234554,1172.7700000139937,-0.05001503367019798 +234555,1172.7750000139938,-0.05001140120203095 +234556,1172.780000013994,-0.050007760612187 +234557,1172.785000013994,-0.05000411186881964 +234558,1172.7900000139941,-0.050000454939901476 +234559,1172.7950000139942,-0.049996789793222855 +234560,1172.8000000139943,-0.04999311639639048 +234561,1172.8050000139945,-0.04998943471682602 +234562,1172.8100000139946,-0.04998574472176476 +234563,1172.8150000139947,-0.049982046378254125 +234564,1172.8200000139948,-0.04997833965315233 +234565,1172.825000013995,-0.04997462451312687 +234566,1172.830000013995,-0.04997090092465314 +234567,1172.835000013995,-0.04996716885401291 +234568,1172.8400000139952,-0.04996342826729288 +234569,1172.8450000139953,-0.049959679130383204 +234570,1172.8500000139954,-0.04995592140897595 +234571,1172.8550000139956,-0.04995215506856359 +234572,1172.8600000139957,-0.04994838007443749 +234573,1172.8650000139958,-0.04994459639168631 +234574,1172.8700000139959,-0.0499408039851945 +234575,1172.875000013996,-0.04993700281964067 +234576,1172.880000013996,-0.049933192859496024 +234577,1172.8850000139962,-0.049929374069022744 +234578,1172.8900000139963,-0.049925546412272356 +234579,1172.8950000139964,-0.04992170985308409 +234580,1172.9000000139965,-0.04991786435508324 +234581,1172.9050000139966,-0.04991400988167946 +234582,1172.9100000139968,-0.04991014639606511 +234583,1172.9150000139969,-0.04990627386121351 +234584,1172.920000013997,-0.04990239223987726 +234585,1172.925000013997,-0.04989850149458644 +234586,1172.9300000139972,-0.04989460158764693 +234587,1172.9350000139973,-0.04989069248113855 +234588,1172.9400000139974,-0.04988677413691335 +234589,1172.9450000139975,-0.04988284651659375 +234590,1172.9500000139976,-0.049878909581570686 +234591,1172.9550000139977,-0.04987496329300185 +234592,1172.9600000139978,-0.04987100761180975 +234593,1172.965000013998,-0.049867042498679855 +234594,1172.970000013998,-0.04986306791405867 +234595,1172.9750000139982,-0.049859083818151885 +234596,1172.9800000139983,-0.049855090170922316 +234597,1172.9850000139984,-0.04985108693208806 +234598,1172.9900000139985,-0.04984707406112043 +234599,1172.9950000139986,-0.049843051517242026 +234600,1173.0000000139987,-0.04983901925942465 +234601,1173.0050000139988,-0.04983497724638729 +234602,1173.010000013999,-0.049830925436594085 +234603,1173.015000013999,-0.04982686378825221 +234604,1173.0200000139992,-0.04982279225930977 +234605,1173.0250000139993,-0.049818710807453696 +234606,1173.0300000139994,-0.04981461939010758 +234607,1173.0350000139995,-0.04981051796442951 +234608,1173.0400000139996,-0.04980640648730987 +234609,1173.0450000139997,-0.04980228491536916 +234610,1173.0500000139998,-0.0497981532049557 +234611,1173.055000014,-0.049794011312143435 +234612,1173.060000014,-0.04978985919272958 +234613,1173.0650000140001,-0.049785696802232375 +234614,1173.0700000140002,-0.049781524095888714 +234615,1173.0750000140004,-0.049777341028651806 +234616,1173.0800000140005,-0.04977314755518879 +234617,1173.0850000140006,-0.04976894362987831 +234618,1173.0900000140007,-0.04976472920680811 +234619,1173.0950000140008,-0.04976050423977258 +234620,1173.100000014001,-0.04975626868227024 +234621,1173.105000014001,-0.04975202248750125 +234622,1173.1100000140011,-0.04974776560836486 +234623,1173.1150000140012,-0.04974349799745689 +234624,1173.1200000140013,-0.04973921960706709 +234625,1173.1250000140014,-0.049734930389176535 +234626,1173.1300000140016,-0.04973063029545497 +234627,1173.1350000140017,-0.04972631927725818 +234628,1173.1400000140018,-0.04972199728562522 +234629,1173.1450000140019,-0.04971766427127574 +234630,1173.150000014002,-0.04971332018460717 +234631,1173.155000014002,-0.04970896497569198 +234632,1173.1600000140022,-0.04970459859427481 +234633,1173.1650000140023,-0.049700220989769665 +234634,1173.1700000140024,-0.04969583211125697 +234635,1173.1750000140025,-0.04969143190748071 +234636,1173.1800000140026,-0.04968702032684545 +234637,1173.1850000140028,-0.04968259731741336 +234638,1173.1900000140029,-0.04967816282690122 +234639,1173.195000014003,-0.04967371680267733 +234640,1173.200000014003,-0.04966925919175848 +234641,1173.2050000140032,-0.04966478994080681 +234642,1173.2100000140033,-0.04966030899612665 +234643,1173.2150000140034,-0.04965581630366136 +234644,1173.2200000140035,-0.0496513118089901 +234645,1173.2250000140036,-0.04964679545732458 +234646,1173.2300000140037,-0.049642267193505736 +234647,1173.2350000140038,-0.04963772696200046 +234648,1173.240000014004,-0.04963317470689816 +234649,1173.245000014004,-0.04962861037190744 +234650,1173.2500000140042,-0.049624033900352575 +234651,1173.2550000140043,-0.04961944523517009 +234652,1173.2600000140044,-0.049614844318905206 +234653,1173.2650000140045,-0.04961023109370828 +234654,1173.2700000140046,-0.04960560550133121 +234655,1173.2750000140047,-0.049600967483123794 +234656,1173.2800000140048,-0.04959631698003003 +234657,1173.285000014005,-0.04959165393258441 +234658,1173.290000014005,-0.04958697828090814 +234659,1173.2950000140052,-0.0495822899647053 +234660,1173.3000000140053,-0.049577588923259024 +234661,1173.3050000140054,-0.04957287509542757 +234662,1173.3100000140055,-0.04956814841964039 +234663,1173.3150000140056,-0.04956340883389412 +234664,1173.3200000140057,-0.04955865627574854 +234665,1173.3250000140058,-0.0495538906823225 +234666,1173.330000014006,-0.04954911199028975 +234667,1173.335000014006,-0.0495443201358748 +234668,1173.3400000140061,-0.04953951505484864 +234669,1173.3450000140062,-0.04953469668252448 +234670,1173.3500000140064,-0.04952986495375341 +234671,1173.3550000140065,-0.04952501980292001 +234672,1173.3600000140066,-0.049520161163937905 +234673,1173.3650000140067,-0.04951528897024528 +234674,1173.3700000140068,-0.04951040315480031 +234675,1173.375000014007,-0.04950550365007662 +234676,1173.380000014007,-0.049500590388058534 +234677,1173.3850000140071,-0.049495663300236435 +234678,1173.3900000140072,-0.04949072231760198 +234679,1173.3950000140073,-0.04948576737064324 +234680,1173.4000000140074,-0.04948079838933985 +234681,1173.4050000140076,-0.04947581530315806 +234682,1173.4100000140077,-0.049470818041045674 +234683,1173.4150000140078,-0.04946580653142706 +234684,1173.4200000140079,-0.04946078070219798 +234685,1173.425000014008,-0.049455740480720364 +234686,1173.430000014008,-0.049450685793817124 +234687,1173.4350000140082,-0.04944561656776677 +234688,1173.4400000140083,-0.04944053272829805 +234689,1173.4450000140084,-0.04943543420058446 +234690,1173.4500000140085,-0.04943032090923879 +234691,1173.4550000140086,-0.049425192778307446 +234692,1173.4600000140088,-0.04942004973126485 +234693,1173.4650000140089,-0.049414891691007656 +234694,1173.470000014009,-0.04940971857984898 +234695,1173.475000014009,-0.049404530319512495 +234696,1173.4800000140092,-0.0493993268311265 +234697,1173.4850000140093,-0.049394108035217855 +234698,1173.4900000140094,-0.04938887385170591 +234699,1173.4950000140095,-0.04938362419989627 +234700,1173.5000000140096,-0.04937835899847459 +234701,1173.5050000140097,-0.04937307816550019 +234702,1173.5100000140098,-0.04936778161839963 +234703,1173.51500001401,-0.049362469273960194 +234704,1173.52000001401,-0.04935714104832334 +234705,1173.5250000140102,-0.04935179685697794 +234706,1173.5300000140103,-0.0493464366147536 +234707,1173.5350000140104,-0.049341060235813736 +234708,1173.5400000140105,-0.04933566763364865 +234709,1173.5450000140106,-0.049330258721068505 +234710,1173.5500000140107,-0.049324833410196195 +234711,1173.5550000140108,-0.04931939161246009 +234712,1173.560000014011,-0.04931393323858675 +234713,1173.565000014011,-0.0493084581985935 +234714,1173.5700000140112,-0.04930296640178091 +234715,1173.5750000140113,-0.04929745775672517 +234716,1173.5800000140114,-0.049291932171270404 +234717,1173.5850000140115,-0.049286389552520814 +234718,1173.5900000140116,-0.04928082980683275 +234719,1173.5950000140117,-0.04927525283980673 +234720,1173.6000000140118,-0.04926965855627923 +234721,1173.605000014012,-0.049264046860314485 +234722,1173.610000014012,-0.049258417655196084 +234723,1173.6150000140121,-0.04925277084341851 +234724,1173.6200000140122,-0.049247106326678544 +234725,1173.6250000140124,-0.04924142400586654 +234726,1173.6300000140125,-0.049235723781057616 +234727,1173.6350000140126,-0.049230005551502656 +234728,1173.6400000140127,-0.04922426921561928 +234729,1173.6450000140128,-0.04921851467098261 +234730,1173.650000014013,-0.04921274181431591 +234731,1173.655000014013,-0.04920695054148119 +234732,1173.6600000140131,-0.049201140747469535 +234733,1173.6650000140132,-0.049195312326391426 +234734,1173.6700000140133,-0.04918946517146683 +234735,1173.6750000140134,-0.049183599175015226 +234736,1173.6800000140136,-0.049177714228445434 +234737,1173.6850000140137,-0.04917181022224531 +234738,1173.6900000140138,-0.04916588704597132 +234739,1173.6950000140139,-0.04915994458823796 +234740,1173.700000014014,-0.049153982736706965 +234741,1173.705000014014,-0.04914800137807644 +234742,1173.7100000140142,-0.049142000398069825 +234743,1173.7150000140143,-0.049135979681424635 +234744,1173.7200000140144,-0.04912993911188109 +234745,1173.7250000140145,-0.049123878572170605 +234746,1173.7300000140146,-0.04911779794400401 +234747,1173.7350000140148,-0.04911169710805973 +234748,1173.7400000140149,-0.04910557594397166 +234749,1173.745000014015,-0.049099434330317 +234750,1173.750000014015,-0.04909327214460375 +234751,1173.7550000140152,-0.04908708926325816 +234752,1173.7600000140153,-0.0490808855616119 +234753,1173.7650000140154,-0.04907466091388913 +234754,1173.7700000140155,-0.04906841519319325 +234755,1173.7750000140156,-0.049062148271493564 +234756,1173.7800000140157,-0.0490558600196117 +234757,1173.7850000140158,-0.0490495503072078 +234758,1173.790000014016,-0.04904321900276652 +234759,1173.795000014016,-0.04903686597358287 +234760,1173.8000000140162,-0.04903049108574774 +234761,1173.8050000140163,-0.04902409420413324 +234762,1173.8100000140164,-0.04901767519237789 +234763,1173.8150000140165,-0.04901123391287144 +234764,1173.8200000140166,-0.049004770226739595 +234765,1173.8250000140167,-0.0489982839938284 +234766,1173.8300000140168,-0.04899177507268841 +234767,1173.835000014017,-0.04898524332055868 +234768,1173.840000014017,-0.04897868859335038 +234769,1173.8450000140172,-0.048972110745630265 +234770,1173.8500000140173,-0.04896550963060379 +234771,1173.8550000140174,-0.048958885100098055 +234772,1173.8600000140175,-0.04895223700454437 +234773,1173.8650000140176,-0.048945565192960644 +234774,1173.8700000140177,-0.04893886951293342 +234775,1173.8750000140178,-0.048932149810599665 +234776,1173.880000014018,-0.048925405930628205 +234777,1173.885000014018,-0.04891863771620094 +234778,1173.8900000140181,-0.04891184500899371 +234779,1173.8950000140183,-0.04890502764915682 +234780,1173.9000000140184,-0.04889818547529533 +234781,1173.9050000140185,-0.0488913183244489 +234782,1173.9100000140186,-0.04888442603207146 +234783,1173.9150000140187,-0.048877508432010365 +234784,1173.9200000140188,-0.04887056535648535 +234785,1173.925000014019,-0.04886359663606707 +234786,1173.930000014019,-0.048856602099655255 +234787,1173.9350000140191,-0.04884958157445659 +234788,1173.9400000140192,-0.04884253488596209 +234789,1173.9450000140193,-0.04883546185792422 +234790,1173.9500000140195,-0.04882836231233357 +234791,1173.9550000140196,-0.048821236069395084 +234792,1173.9600000140197,-0.048814082947503994 +234793,1173.9650000140198,-0.048806902763221215 +234794,1173.97000001402,-0.04879969533124844 +234795,1173.97500001402,-0.048792460464402714 +234796,1173.98000001402,-0.048785197973590565 +234797,1173.9850000140202,-0.04877790766778176 +234798,1173.9900000140203,-0.04877058935398254 +234799,1173.9950000140204,-0.04876324283720838 +234800,1174.0000000140205,-0.048755867920456296 +234801,1174.0050000140207,-0.04874846440467668 +234802,1174.0100000140208,-0.04874103208874457 +234803,1174.0150000140209,-0.04873357076943045 +234804,1174.020000014021,-0.04872608024137051 +234805,1174.025000014021,-0.048718560297036424 +234806,1174.0300000140212,-0.048711010726704494 +234807,1174.0350000140213,-0.048703431318424285 +234808,1174.0400000140214,-0.048695821857986696 +234809,1174.0450000140215,-0.04868818212889141 +234810,1174.0500000140216,-0.04868051191231378 +234811,1174.0550000140217,-0.048672810987071116 +234812,1174.0600000140219,-0.04866507912958827 +234813,1174.065000014022,-0.04865731611386268 +234814,1174.070000014022,-0.048649521711428695 +234815,1174.0750000140222,-0.048641695691321256 +234816,1174.0800000140223,-0.04863383782003887 +234817,1174.0850000140224,-0.04862594786150595 +234818,1174.0900000140225,-0.048618025577034346 +234819,1174.0950000140226,-0.048610070725284206 +234820,1174.1000000140227,-0.04860208306222406 +234821,1174.1050000140228,-0.04859406234109014 +234822,1174.110000014023,-0.048586008312344976 +234823,1174.115000014023,-0.048577920723635024 +234824,1174.1200000140232,-0.04856979931974767 +234825,1174.1250000140233,-0.04856164384256725 +234826,1174.1300000140234,-0.04855345403103026 +234827,1174.1350000140235,-0.04854522962107968 +234828,1174.1400000140236,-0.048536970345618394 +234829,1174.1450000140237,-0.048528675934461626 +234830,1174.1500000140238,-0.04852034611428852 +234831,1174.155000014024,-0.04851198060859268 +234832,1174.160000014024,-0.0485035791376317 +234833,1174.1650000140241,-0.04849514141837574 +234834,1174.1700000140243,-0.04848666716445496 +234835,1174.1750000140244,-0.04847815608610595 +234836,1174.1800000140245,-0.04846960789011703 +234837,1174.1850000140246,-0.048461022279772406 +234838,1174.1900000140247,-0.048452398954795216 +234839,1174.1950000140248,-0.048443737611289284 +234840,1174.200000014025,-0.048435037941679755 +234841,1174.205000014025,-0.048426299634652455 +234842,1174.2100000140251,-0.048417522375091906 +234843,1174.2150000140252,-0.048408705844018116 +234844,1174.2200000140253,-0.04839984971852191 +234845,1174.2250000140255,-0.04839095367169895 +234846,1174.2300000140256,-0.04838201737258231 +234847,1174.2350000140257,-0.04837304048607358 +234848,1174.2400000140258,-0.04836402267287246 +234849,1174.245000014026,-0.048354963589404776 +234850,1174.250000014026,-0.048345862887749 +234851,1174.255000014026,-0.04833672021556107 +234852,1174.2600000140262,-0.048327535215997516 +234853,1174.2650000140263,-0.04831830752763695 +234854,1174.2700000140264,-0.048309036784399705 +234855,1174.2750000140265,-0.04829972261546566 +234856,1174.2800000140267,-0.04829036464519027 +234857,1174.2850000140268,-0.04828096249301859 +234858,1174.2900000140269,-0.04827151577339733 +234859,1174.295000014027,-0.04826202409568497 +234860,1174.300000014027,-0.04825248706405961 +234861,1174.3050000140272,-0.04824290427742485 +234862,1174.3100000140273,-0.04823327532931334 +234863,1174.3150000140274,-0.048223599807788044 +234864,1174.3200000140275,-0.04821387729534125 +234865,1174.3250000140276,-0.04820410736879105 +234866,1174.3300000140277,-0.04819428959917542 +234867,1174.3350000140279,-0.048184423551643665 +234868,1174.340000014028,-0.048174508785345266 +234869,1174.345000014028,-0.04816454485331602 +234870,1174.3500000140282,-0.04815453130236129 +234871,1174.3550000140283,-0.04814446767293646 +234872,1174.3600000140284,-0.04813435349902438 +234873,1174.3650000140285,-0.048124188308009685 +234874,1174.3700000140286,-0.048113971620550026 +234875,1174.3750000140287,-0.04810370295044395 +234876,1174.3800000140288,-0.048093381804495496 +234877,1174.385000014029,-0.048083007682375195 +234878,1174.390000014029,-0.04807258007647762 +234879,1174.3950000140292,-0.048062098471775075 +234880,1174.4000000140293,-0.04805156234566755 +234881,1174.4050000140294,-0.04804097116782872 +234882,1174.4100000140295,-0.048030324400047786 +234883,1174.4150000140296,-0.04801962149606717 +234884,1174.4200000140297,-0.048008861901415824 +234885,1174.4250000140298,-0.047998045053237945 +234886,1174.43000001403,-0.04798717038011719 +234887,1174.43500001403,-0.047976237301895916 +234888,1174.4400000140301,-0.04796524522948947 +234889,1174.4450000140303,-0.04795419356469538 +234890,1174.4500000140304,-0.047943081699997114 +234891,1174.4550000140305,-0.04793190901836236 +234892,1174.4600000140306,-0.04792067489303553 +234893,1174.4650000140307,-0.047909378687324394 +234894,1174.4700000140308,-0.047898019754380496 +234895,1174.475000014031,-0.047886597436973245 +234896,1174.480000014031,-0.04787511106725741 +234897,1174.4850000140311,-0.047863559966533714 +234898,1174.4900000140312,-0.04785194344500234 +234899,1174.4950000140313,-0.04784026080150914 +234900,1174.5000000140315,-0.047828511323284084 +234901,1174.5050000140316,-0.04781669428567187 +234902,1174.5100000140317,-0.047804808951854204 +234903,1174.5150000140318,-0.047792854572563624 +234904,1174.520000014032,-0.04778083038578829 +234905,1174.525000014032,-0.047768735616467654 +234906,1174.530000014032,-0.04775656947617847 +234907,1174.5350000140322,-0.04774433116281078 +234908,1174.5400000140323,-0.047732019860233524 +234909,1174.5450000140324,-0.04771963473794932 +234910,1174.5500000140325,-0.04770717495073798 +234911,1174.5550000140327,-0.047694639638288294 +234912,1174.5600000140328,-0.04768202792481756 +234913,1174.5650000140329,-0.047669338918678354 +234914,1174.570000014033,-0.04765657171195212 +234915,1174.575000014033,-0.04764372538002872 +234916,1174.5800000140332,-0.047630798981171694 +234917,1174.5850000140333,-0.04761779155606832 +234918,1174.5900000140334,-0.047604702127363945 +234919,1174.5950000140335,-0.04759152969917983 +234920,1174.6000000140336,-0.047578273256613825 +234921,1174.6050000140337,-0.04756493176522298 +234922,1174.6100000140339,-0.04755150417048737 +234923,1174.615000014034,-0.04753798939725424 +234924,1174.620000014034,-0.04752438634916145 +234925,1174.6250000140342,-0.04751069390803941 +234926,1174.6300000140343,-0.04749691093329023 +234927,1174.6350000140344,-0.0474830362612433 +234928,1174.6400000140345,-0.04746906870448579 +234929,1174.6450000140346,-0.04745500705116715 +234930,1174.6500000140347,-0.047440850064276015 +234931,1174.6550000140348,-0.04742659648088841 +234932,1174.660000014035,-0.047412245011385495 +234933,1174.665000014035,-0.0473977943386395 +234934,1174.6700000140352,-0.04738324311716603 +234935,1174.6750000140353,-0.04736858997224106 +234936,1174.6800000140354,-0.04735383349898064 +234937,1174.6850000140355,-0.04733897226138133 +234938,1174.6900000140356,-0.04732400479131918 +234939,1174.6950000140357,-0.04730892958750497 +234940,1174.7000000140358,-0.04729374511439324 +234941,1174.705000014036,-0.0472784498010424 +234942,1174.710000014036,-0.047263042039923216 +234943,1174.7150000140361,-0.0472475201856725 +234944,1174.7200000140363,-0.047231882553788886 +234945,1174.7250000140364,-0.04721612741926709 +234946,1174.7300000140365,-0.04720025301516697 +234947,1174.7350000140366,-0.04718425753111333 +234948,1174.7400000140367,-0.04716813911172206 +234949,1174.7450000140368,-0.0471518958549481 +234950,1174.750000014037,-0.04713552581034994 +234951,1174.755000014037,-0.04711902697726541 +234952,1174.7600000140371,-0.04710239730289265 +234953,1174.7650000140372,-0.04708563468027013 +234954,1174.7700000140374,-0.04706873694614848 +234955,1174.7750000140375,-0.04705170187874688 +234956,1174.7800000140376,-0.04703452719538576 +234957,1174.7850000140377,-0.04701721054998683 +234958,1174.7900000140378,-0.0469997495304309 +234959,1174.795000014038,-0.04698214165576292 +234960,1174.800000014038,-0.04696438437323268 +234961,1174.8050000140381,-0.04694647505515851 +234962,1174.8100000140382,-0.04692841099560044 +234963,1174.8150000140383,-0.046910189406827334 +234964,1174.8200000140384,-0.04689180741556173 +234965,1174.8250000140386,-0.046873262058983775 +234966,1174.8300000140387,-0.04685455028047442 +234967,1174.8350000140388,-0.04683566892507537 +234968,1174.8400000140389,-0.04681661473464137 +234969,1174.845000014039,-0.04679738434265752 +234970,1174.850000014039,-0.04677797426869136 +234971,1174.8550000140392,-0.04675838091244622 +234972,1174.8600000140393,-0.0467386005473782 +234973,1174.8650000140394,-0.04671862931383529 +234974,1174.8700000140395,-0.0466984632116714 +234975,1174.8750000140396,-0.04667809809228342 +234976,1174.8800000140398,-0.04665752965001199 +234977,1174.8850000140399,-0.04663675341283979 +234978,1174.89000001404,-0.04661576473231256 +234979,1174.89500001404,-0.04659455877259791 +234980,1174.9000000140402,-0.04657313049858592 +234981,1174.9050000140403,-0.04655147466292214 +234982,1174.9100000140404,-0.04652958579184817 +234983,1174.9150000140405,-0.046507458169707167 +234984,1174.9200000140406,-0.04648508582195056 +234985,1174.9250000140407,-0.046462462496457746 +234986,1174.9300000140408,-0.0464395816429513 +234987,1174.935000014041,-0.046416436390256166 +234988,1174.940000014041,-0.04639301952111083 +234989,1174.9450000140412,-0.04636932344418992 +234990,1174.9500000140413,-0.04634534016294073 +234991,1174.9550000140414,-0.04632106124076735 +234992,1174.9600000140415,-0.04629647776201401 +234993,1174.9650000140416,-0.046271580288100904 +234994,1174.9700000140417,-0.0462463588080474 +234995,1174.9750000140418,-0.04622080268247528 +234996,1174.980000014042,-0.0461949005800138 +234997,1174.985000014042,-0.04616864040482307 +234998,1174.9900000140422,-0.04614200921370691 +234999,1174.9950000140423,-0.04611499312099354 +235000,1175.0000000140424,-0.046087577189016966 +235001,1175.0050000140425,-0.046059745301627195 +235002,1175.0100000140426,-0.046031480017689794 +235003,1175.0150000140427,-0.046002762401006245 +235004,1175.0200000140428,-0.045973571822501884 +235005,1175.025000014043,-0.045943885729907284 +235006,1175.030000014043,-0.045913679379536707 +235007,1175.0350000140431,-0.04588292552420467 +235008,1175.0400000140432,-0.04585159405091499 +235009,1175.0450000140434,-0.0458196515618429 +235010,1175.0500000140435,-0.0457870608924969 +235011,1175.0550000140436,-0.045753780562014575 +235012,1175.0600000140437,-0.045719764152558684 +235013,1175.0650000140438,-0.04568495961795308 +235014,1175.070000014044,-0.045649308526189404 +235015,1175.075000014044,-0.04561274524630138 +235016,1175.0800000140441,-0.04557519609728317 +235017,1175.0850000140442,-0.04553657848491135 +235018,1175.0900000140443,-0.0454968000605318 +235019,1175.0950000140444,-0.04545575794167417 +235020,1175.1000000140446,-0.045413338033565495 +235021,1175.1050000140447,-0.045369414478852496 +235022,1175.1100000140448,-0.045323849239763465 +235023,1175.1150000140449,-0.04527649179089988 +235024,1175.120000014045,-0.045227178889307496 +235025,1175.125000014045,-0.045175734411241175 +235026,1175.1300000140452,-0.04512196931325694 +235027,1175.1350000140453,-0.045065681883484865 +235028,1175.1400000140454,-0.04500665857414542 +235029,1175.1450000140455,-0.04494467580918351 +235030,1175.1500000140456,-0.04487950318353444 +235031,1175.1550000140458,-0.0448109083419361 +235032,1175.1600000140459,-0.04473866349566752 +235033,1175.165000014046,-0.04466255303976969 +235034,1175.170000014046,-0.044582381227373034 +235035,1175.1750000140462,-0.044497978563836 +235036,1175.1800000140463,-0.044409205656479316 +235037,1175.1850000140464,-0.044315953687764476 +235038,1175.1900000140465,-0.04421814132213619 +235039,1175.1950000140466,-0.0441157085101938 +235040,1175.2000000140467,-0.04400860814195713 +235041,1175.2050000140468,-0.04389679671602452 +235042,1175.210000014047,-0.043780225124856735 +235043,1175.215000014047,-0.04365883039287597 +235044,1175.2200000140472,-0.04353252887036507 +235045,1175.2250000140473,-0.04340121109068292 +235046,1175.2300000140474,-0.04326473829879865 +235047,1175.2350000140475,-0.043122940564429064 +235048,1175.2400000140476,-0.04297561638147782 +235049,1175.2450000140477,-0.042822533692790175 +235050,1175.2500000140478,-0.04266343232964518 +235051,1175.255000014048,-0.042498027887191765 +235052,1175.260000014048,-0.0423260170469688 +235053,1175.2650000140482,-0.04214708429617621 +235054,1175.2700000140483,-0.041960909888483285 +235055,1175.2750000140484,-0.04176717876610842 +235056,1175.2800000140485,-0.041565590045241005 +235057,1175.2850000140486,-0.04135586657424392 +235058,1175.2900000140487,-0.04113776400734217 +235059,1175.2950000140488,-0.040911078786113955 +235060,1175.300000014049,-0.04067565438063112 +235061,1175.305000014049,-0.040431385116767096 +235062,1175.3100000140491,-0.04017821692087723 +235063,1175.3150000140492,-0.03991614436649434 +235064,1175.3200000140494,-0.039645203532612756 +235065,1175.3250000140495,-0.03936546041019721 +235066,1175.3300000140496,-0.03907699495228078 +235067,1175.3350000140497,-0.03877988134902722 +235068,1175.3400000140498,-0.03847416564693321 +235069,1175.34500001405,-0.03815984227503127 +235070,1175.35000001405,-0.03783683123333536 +235071,1175.3550000140501,-0.03750495755583928 +235072,1175.3600000140502,-0.037163934219992104 +235073,1175.3650000140503,-0.03681334907585261 +235074,1175.3700000140504,-0.03645265577989845 +235075,1175.3750000140506,-0.03608116826420413 +235076,1175.3800000140507,-0.03569805799096513 +235077,1175.3850000140508,-0.03530235310242968 +235078,1175.3900000140509,-0.03489293852152466 +235079,1175.395000014051,-0.03446855606563571 +235080,1175.400000014051,-0.03402780373782798 +235081,1175.4050000140512,-0.033569133615836716 +235082,1175.4100000140513,-0.03309084819484192 +235083,1175.4150000140514,-0.03259109559913771 +235084,1175.4200000140515,-0.032067864612841494 +235085,1175.4250000140516,-0.03151898077479701 +235086,1175.4300000140518,-0.03094210461244975 +235087,1175.4350000140519,-0.0303347323373133 +235088,1175.440000014052,-0.029694198139550723 +235089,1175.445000014052,-0.029017676092253128 +235090,1175.4500000140522,-0.028302179298018922 +235091,1175.4550000140523,-0.027544554822671076 +235092,1175.4600000140524,-0.026741475227016892 +235093,1175.4650000140525,-0.025889430646832794 +235094,1175.4700000140526,-0.024984728571051825 +235095,1175.4750000140527,-0.02402351092383974 +235096,1175.4800000140528,-0.02300179930093917 +235097,1175.485000014053,-0.021915579313239085 +235098,1175.490000014053,-0.020760934482293898 +235099,1175.4950000140532,-0.019534239582444143 +235100,1175.5000000140533,-0.018232422624660943 +235101,1175.5050000140534,-0.016853302336174988 +235102,1175.5100000140535,-0.015396001042411551 +235103,1175.5150000140536,-0.013861418017760117 +235104,1175.5200000140537,-0.012252724370714691 +235105,1175.5250000140538,-0.010575810607132056 +235106,1175.530000014054,-0.0088395910210677 +235107,1175.535000014054,-0.007056057949887879 +235108,1175.5400000140542,-0.0052399964904611025 +235109,1175.5450000140543,-0.0034083230057764063 +235110,1175.5500000140544,-0.0015790925429741164 +235111,1175.5550000140545,0.00022969091335616731 +235112,1175.5600000140546,0.002001264838265067 +235113,1175.5650000140547,0.003721095520715338 +235114,1175.5700000140548,0.005377513804429983 +235115,1175.575000014055,0.006961945887544451 +235116,1175.580000014055,0.008468782243595981 +235117,1175.5850000140551,0.009894991796280155 +235118,1175.5900000140552,0.011239607667021593 +235119,1175.5950000140554,0.012503193372008283 +235120,1175.6000000140555,0.013687362578657032 +235121,1175.6050000140556,0.01479438844527714 +235122,1175.6100000140557,0.015826910092209583 +235123,1175.6150000140558,0.01678772664961956 +235124,1175.620000014056,0.01767966189548104 +235125,1175.625000014056,0.018505481438912442 +235126,1175.6300000140561,0.019267846642794958 +235127,1175.6350000140562,0.019969292873121706 +235128,1175.6400000140563,0.020612223016066165 +235129,1175.6450000140564,0.02119891000475611 +235130,1175.6500000140566,0.021731504227097777 +235131,1175.6550000140567,0.022212043207444916 +235132,1175.6600000140568,0.022642461992521505 +235133,1175.665000014057,0.023024603351779034 +235134,1175.670000014057,0.023360227330313524 +235135,1175.675000014057,0.023651019950173015 +235136,1175.6800000140572,0.023898601002830224 +235137,1175.6850000140573,0.024104530953344624 +235138,1175.6900000140574,0.024270317013239215 +235139,1175.6950000140575,0.024397418452389897 +235140,1175.7000000140577,0.024487251221386758 +235141,1175.7050000140578,0.024541191951379857 +235142,1175.7100000140579,0.024560581391958634 +235143,1175.715000014058,0.02454672734096139 +235144,1175.720000014058,0.024500907114098993 +235145,1175.7250000140582,0.02442436959719725 +235146,1175.7300000140583,0.02431833691974817 +235147,1175.7350000140584,0.024184005785224557 +235148,1175.7400000140585,0.02402254849112861 +235149,1175.7450000140586,0.023835113669876246 +235150,1175.7500000140587,0.023622826780237704 +235151,1175.7550000140589,0.023386790378036183 +235152,1175.760000014059,0.023128084194047393 +235153,1175.765000014059,0.022847765046435122 +235154,1175.7700000140592,0.022546866614520766 +235155,1175.7750000140593,0.022226399100128462 +235156,1175.7800000140594,0.02188734880210982 +235157,1175.7850000140595,0.02153067762886826 +235158,1175.7900000140596,0.021157322572729072 +235159,1175.7950000140597,0.020768195168800553 +235160,1175.8000000140598,0.020364180959526693 +235161,1175.80500001406,0.01994613898443341 +235162,1175.81000001406,0.01951490131263116 +235163,1175.8150000140602,0.019071272633479047 +235164,1175.8200000140603,0.01861602991847637 +235165,1175.8250000140604,0.018149922164981434 +235166,1175.8300000140605,0.01767367022981787 +235167,1175.8350000140606,0.017187966758287647 +235168,1175.8400000140607,0.016693476211630094 +235169,1175.8450000140608,0.01619083499361609 +235170,1175.850000014061,0.015680651674804223 +235171,1175.855000014061,0.015163507311059107 +235172,1175.8600000140611,0.014639955851277158 +235173,1175.8650000140613,0.014110524627909267 +235174,1175.8700000140614,0.013575714922811987 +235175,1175.8750000140615,0.013036002600204285 +235176,1175.8800000140616,0.012491838798033224 +235177,1175.8850000140617,0.011943650668838134 +235178,1175.8900000140618,0.011391842161214695 +235179,1175.895000014062,0.010836794833186988 +235180,1175.900000014062,0.010278868689162363 +235181,1175.9050000140621,0.009718403032628463 +235182,1175.9100000140622,0.009155717327334105 +235183,1175.9150000140623,0.008591112060332747 +235184,1175.9200000140625,0.008024869600946019 +235185,1175.9250000140626,0.007457255050391669 +235186,1175.9300000140627,0.006888517077506598 +235187,1175.9350000140628,0.006318888736661707 +235188,1175.940000014063,0.005748588264602507 +235189,1175.945000014063,0.0051778198535472695 +235190,1175.950000014063,0.004606774398431617 +235191,1175.9550000140632,0.004035630216696765 +235192,1175.9600000140633,0.0034645537394794473 +235193,1175.9650000140634,0.0028937001734767875 +235194,1175.9700000140635,0.0023232141331223206 +235195,1175.9750000140637,0.0017532302430324318 +235196,1175.9800000140638,0.001183873710959837 +235197,1175.9850000140639,0.0006152608717308112 +235198,1175.990000014064,4.7499702843012415e-05 +235199,1175.995000014064,-0.0005193096874252259 +235200,1176.0000000140642,-0.001085074598406333 +235201,1176.0050000140643,-0.0016497093008296915 +235202,1176.0100000140644,-0.0022131346248067062 +235203,1176.0150000140645,-0.00277527757074391 +235204,1176.0200000140646,-0.003336070941859223 +235205,1176.0250000140647,-0.003895452996935699 +235206,1176.0300000140649,-0.00445336712191849 +235207,1176.035000014065,-0.0050097615189449345 +235208,1176.040000014065,-0.005564588911392139 +235209,1176.0450000140652,-0.006117806263528507 +235210,1176.0500000140653,-0.006669374513368112 +235211,1176.0550000140654,-0.007219258317347763 +235212,1176.0600000140655,-0.007767425805472865 +235213,1176.0650000140656,-0.008313848345615459 +235214,1176.0700000140657,-0.008858500315689877 +235215,1176.0750000140658,-0.00940135888248199 +235216,1176.080000014066,-0.009942403785965639 +235217,1176.085000014066,-0.01048161712800217 +235218,1176.0900000140662,-0.011018983164391155 +235219,1176.0950000140663,-0.011554488099315993 +235220,1176.1000000140664,-0.012088119881311529 +235221,1176.1050000140665,-0.012619867999971092 +235222,1176.1100000140666,-0.013149723282707172 +235223,1176.1150000140667,-0.013677677690984527 +235224,1176.1200000140668,-0.014203724115558135 +235225,1176.125000014067,-0.014727856170371197 +235226,1176.130000014067,-0.015250067984900934 +235227,1176.1350000140671,-0.015770353994885376 +235228,1176.1400000140673,-0.01628870873151857 +235229,1176.1450000140674,-0.016805126609370887 +235230,1176.1500000140675,-0.01731960171346949 +235231,1176.1550000140676,-0.017832127586162542 +235232,1176.1600000140677,-0.01834269701458871 +235233,1176.1650000140678,-0.018851301819775665 +235234,1176.170000014068,-0.019357932648595012 +235235,1176.175000014068,-0.019862578770002977 +235236,1176.1800000140681,-0.020365227877189227 +235237,1176.1850000140682,-0.02086586589743604 +235238,1176.1900000140683,-0.021364476811649907 +235239,1176.1950000140685,-0.02186104248566153 +235240,1176.2000000140686,-0.022355542515491246 +235241,1176.2050000140687,-0.02284795408884014 +235242,1176.2100000140688,-0.023338251865083842 +235243,1176.215000014069,-0.023826407876017742 +235244,1176.220000014069,-0.024312391449515275 +235245,1176.225000014069,-0.024796169158124465 +235246,1176.2300000140692,-0.025277704794428795 +235247,1176.2350000140693,-0.025756959374746424 +235248,1176.2400000140694,-0.026233891172434732 +235249,1176.2450000140695,-0.02670845578170773 +235250,1176.2500000140697,-0.027180606212471453 +235251,1176.2550000140698,-0.027650293016242396 +235252,1176.2600000140699,-0.028117464442744152 +235253,1176.26500001407,-0.028582066626291494 +235254,1176.27000001407,-0.02904404380057646 +235255,1176.2750000140702,-0.029503338539983916 +235256,1176.2800000140703,-0.029959892025093582 +235257,1176.2850000140704,-0.030413644329587926 +235258,1176.2900000140705,-0.030864534725388616 +235259,1176.2950000140706,-0.031312502002503545 +235260,1176.3000000140707,-0.031757484799789945 +235261,1176.3050000140709,-0.03219942194263413 +235262,1176.310000014071,-0.032638252783423596 +235263,1176.315000014071,-0.03307391754064422 +235264,1176.3200000140712,-0.03350635763247687 +235265,1176.3250000140713,-0.03393551600089208 +235266,1176.3300000140714,-0.034361337422445355 +235267,1176.3350000140715,-0.034783768802252854 +235268,1176.3400000140716,-0.03520275944796933 +235269,1176.3450000140717,-0.0356182613209878 +235270,1176.3500000140718,-0.03603022926252152 +235271,1176.355000014072,-0.03643862119270105 +235272,1176.360000014072,-0.03684339828131009 +235273,1176.3650000140722,-0.03724452508927992 +235274,1176.3700000140723,-0.037641969680551134 +235275,1176.3750000140724,-0.03803570370438222 +235276,1176.3800000140725,-0.038425702448625504 +235277,1176.3850000140726,-0.038811944864894955 +235278,1176.3900000140727,-0.03919441356690877 +235279,1176.3950000140728,-0.039573094803598254 +235280,1176.400000014073,-0.03994797840882956 +235281,1176.405000014073,-0.040319057729784384 +235282,1176.4100000140731,-0.040686329536191196 +235283,1176.4150000140733,-0.041049793912690244 +235284,1176.4200000140734,-0.041409454136657205 +235285,1176.4250000140735,-0.041765316543806524 +235286,1176.4300000140736,-0.042117390383849915 +235287,1176.4350000140737,-0.04246568766840512 +235288,1176.4400000140738,-0.04281022301323909 +235289,1176.445000014074,-0.04315101347679586 +235290,1176.450000014074,-0.0434880783968065 +235291,1176.4550000140741,-0.04382143922661379 +235292,1176.4600000140742,-0.04415111937267156 +235293,1176.4650000140743,-0.0444771440345028 +235294,1176.4700000140745,-0.04479954004822641 +235295,1176.4750000140746,-0.04511833573459198 +235296,1176.4800000140747,-0.04543356075229921 +235297,1176.4850000140748,-0.04574524595722446 +235298,1176.490000014075,-0.04605342326803503 +235299,1176.495000014075,-0.04635812553854029 +235300,1176.500000014075,-0.046659386437011834 +235301,1176.5050000140752,-0.0469572403325996 +235302,1176.5100000140753,-0.04725172218887919 +235303,1176.5150000140754,-0.04754286746448676 +235304,1176.5200000140755,-0.047830712020730214 +235305,1176.5250000140757,-0.048115292036010275 +235306,1176.5300000140758,-0.04839664392683896 +235307,1176.5350000140759,-0.04867480427520792 +235308,1176.540000014076,-0.04894980976203133 +235309,1176.545000014076,-0.049221697106368874 +235310,1176.5500000140762,-0.04949050301012127 +235311,1176.5550000140763,-0.049756264107883884 +235312,1176.5600000140764,-0.05001901692164158 +235313,1176.5650000140765,-0.05027879781999029 +235314,1176.5700000140766,-0.05053564298157583 +235315,1176.5750000140767,-0.05078958836244885 +235316,1176.5800000140769,-0.05104066966704491 +235317,1176.585000014077,-0.051288922322510644 +235318,1176.590000014077,-0.05153438145611021 +235319,1176.5950000140772,-0.05177708187545977 +235320,1176.6000000140773,-0.052017058051352406 +235321,1176.6050000140774,-0.052254344102950226 +235322,1176.6100000140775,-0.052488973785134944 +235323,1176.6150000140776,-0.05272098047782254 +235324,1176.6200000140777,-0.052950397177061265 +235325,1176.6250000140778,-0.05317725648774598 +235326,1176.630000014078,-0.05340159061779441 +235327,1176.635000014078,-0.053623431373643074 +235328,1176.6400000140782,-0.053842810156932375 +235329,1176.6450000140783,-0.054059757962261076 +235330,1176.6500000140784,-0.05427430537590034 +235331,1176.6550000140785,-0.0544864825753674 +235332,1176.6600000140786,-0.054696319329767304 +235333,1176.6650000140787,-0.05490384500081945 +235334,1176.6700000140788,-0.05510908854449322 +235335,1176.675000014079,-0.05531207851318388 +235336,1176.680000014079,-0.055512843058366006 +235337,1176.6850000140792,-0.055711409933667855 +235338,1176.6900000140793,-0.05590780649831524 +235339,1176.6950000140794,-0.056102059720898254 +235340,1176.7000000140795,-0.05629419618341863 +235341,1176.7050000140796,-0.05648424208557971 +235342,1176.7100000140797,-0.05667222324928425 +235343,1176.7150000140798,-0.05685816512330919 +235344,1176.72000001408,-0.05704209278812894 +235345,1176.72500001408,-0.05722403096086174 +235346,1176.7300000140801,-0.057404004000316304 +235347,1176.7350000140802,-0.05758203591211788 +235348,1176.7400000140804,-0.05775815035389496 +235349,1176.7450000140805,-0.0579323706405101 +235350,1176.7500000140806,-0.058104719749319356 +235351,1176.7550000140807,-0.05827522032544692 +235352,1176.7600000140808,-0.058443894687062695 +235353,1176.765000014081,-0.05861076483065169 +235354,1176.770000014081,-0.058775852436265597 +235355,1176.7750000140811,-0.05893917887274755 +235356,1176.7800000140812,-0.059100765202922435 +235357,1176.7850000140813,-0.05926063218874545 +235358,1176.7900000140814,-0.05941880029640309 +235359,1176.7950000140816,-0.059575289701360744 +235360,1176.8000000140817,-0.05973012029335226 +235361,1176.8050000140818,-0.05988331168130719 +235362,1176.8100000140819,-0.06003488319821204 +235363,1176.815000014082,-0.06018485390590234 +235364,1176.820000014082,-0.06033324259978274 +235365,1176.8250000140822,-0.060480067813472926 +235366,1176.8300000140823,-0.06062534782337741 +235367,1176.8350000140824,-0.06076910065317748 +235368,1176.8400000140825,-0.06091134407824416 +235369,1176.8450000140826,-0.061052095629971305 +235370,1176.8500000140828,-0.06119137260002789 +235371,1176.8550000140829,-0.061329192044529184 +235372,1176.860000014083,-0.06146557078812657 +235373,1176.865000014083,-0.06160052542801596 +235374,1176.8700000140832,-0.06173407233786485 +235375,1176.8750000140833,-0.06186622767165852 +235376,1176.8800000140834,-0.06199700736746572 +235377,1176.8850000140835,-0.06212642715112439 +235378,1176.8900000140836,-0.062254502539848364 +235379,1176.8950000140837,-0.06238124884575564 +235380,1176.9000000140838,-0.06250668117931933 +235381,1176.905000014084,-0.06263081445274227 +235382,1176.910000014084,-0.06275366338325636 +235383,1176.9150000140842,-0.06287524249634786 +235384,1176.9200000140843,-0.06299556612891002 +235385,1176.9250000140844,-0.06311464843232396 +235386,1176.9300000140845,-0.06323250337546955 +235387,1176.9350000140846,-0.06334914474766754 +235388,1176.9400000140847,-0.06346458616155427 +235389,1176.9450000140848,-0.06357884105589047 +235390,1176.950000014085,-0.06369192269830572 +235391,1176.955000014085,-0.0638038441879799 +235392,1176.9600000140852,-0.06391461845826317 +235393,1176.9650000140853,-0.06402425827923618 +235394,1176.9700000140854,-0.0641327762602117 +235395,1176.9750000140855,-0.06424018485217943 +235396,1176.9800000140856,-0.06434649635019543 +235397,1176.9850000140857,-0.06445172289571768 +235398,1176.9900000140858,-0.06455587647888925 +235399,1176.995000014086,-0.0646589689407705 +235400,1177.000000014086,-0.06476101197552195 +235401,1177.0050000140861,-0.06486201713253917 +235402,1177.0100000140862,-0.06496199581854097 +235403,1177.0150000140864,-0.06506095929961266 +235404,1177.0200000140865,-0.06515891870320534 +235405,1177.0250000140866,-0.065255885020093 +235406,1177.0300000140867,-0.06535186910628833 +235407,1177.0350000140868,-0.065446881684919 +235408,1177.040000014087,-0.06554093334806523 +235409,1177.045000014087,-0.06563403455856029 +235410,1177.0500000140871,-0.06572619565175489 +235411,1177.0550000140872,-0.06581742683724674 +235412,1177.0600000140873,-0.0659077382005764 +235413,1177.0650000140874,-0.06599713970489055 +235414,1177.0700000140876,-0.06608564119257382 +235415,1177.0750000140877,-0.06617325238685008 +235416,1177.0800000140878,-0.06625998289335434 +235417,1177.0850000140879,-0.06634584220167625 +235418,1177.090000014088,-0.06643083968687594 +235419,1177.095000014088,-0.06651498461097351 +235420,1177.1000000140882,-0.06659828612441253 +235421,1177.1050000140883,-0.06668075326749895 +235422,1177.1100000140884,-0.06676239497181576 +235423,1177.1150000140885,-0.06684322006161449 +235424,1177.1200000140886,-0.0669232372551842 +235425,1177.1250000140888,-0.06700245516619861 +235426,1177.1300000140889,-0.0670808823050422 +235427,1177.135000014089,-0.0671585270801158 +235428,1177.140000014089,-0.06723539779912248 +235429,1177.1450000140892,-0.06731150267033408 +235430,1177.1500000140893,-0.06738684980383924 +235431,1177.1550000140894,-0.06746144721277327 +235432,1177.1600000140895,-0.06753530281453049 +235433,1177.1650000140896,-0.06760842443195944 +235434,1177.1700000140897,-0.06768081979454163 +235435,1177.1750000140898,-0.067752496539554 +235436,1177.18000001409,-0.06782346221321567 +235437,1177.18500001409,-0.06789372427181956 +235438,1177.1900000140902,-0.06796329008284882 +235439,1177.1950000140903,-0.06803216692607891 +235440,1177.2000000140904,-0.06810036199466533 +235441,1177.2050000140905,-0.06816788239621752 +235442,1177.2100000140906,-0.06823473515385911 +235443,1177.2150000140907,-0.068300927207275 +235444,1177.2200000140908,-0.06836646541374532 +235445,1177.225000014091,-0.0684313565491667 +235446,1177.230000014091,-0.068495607309061 +235447,1177.2350000140912,-0.06855922430957181 +235448,1177.2400000140913,-0.06862221408844894 +235449,1177.2450000140914,-0.06868458310602094 +235450,1177.2500000140915,-0.06874633774615617 +235451,1177.2550000140916,-0.06880748431721234 +235452,1177.2600000140917,-0.06886802905297477 +235453,1177.2650000140918,-0.06892797811358363 +235454,1177.270000014092,-0.06898733758645018 +235455,1177.275000014092,-0.06904611348716225 +235456,1177.2800000140921,-0.06910431176037914 +235457,1177.2850000140922,-0.06916193828071601 +235458,1177.2900000140924,-0.0692189988536179 +235459,1177.2950000140925,-0.06927549921622352 +235460,1177.3000000140926,-0.06933144503821888 +235461,1177.3050000140927,-0.06938684192268113 +235462,1177.3100000140928,-0.06944169540691227 +235463,1177.315000014093,-0.06949601096326323 +235464,1177.320000014093,-0.06954979399994829 +235465,1177.3250000140931,-0.06960304986184987 +235466,1177.3300000140932,-0.06965578383131385 +235467,1177.3350000140933,-0.06970800112893565 +235468,1177.3400000140934,-0.06975970691433676 +235469,1177.3450000140936,-0.06981090628693239 +235470,1177.3500000140937,-0.06986160428668974 +235471,1177.3550000140938,-0.06991180589487744 +235472,1177.3600000140939,-0.06996151603480594 +235473,1177.365000014094,-0.07001073957255902 +235474,1177.370000014094,-0.07005948131771667 +235475,1177.3750000140942,-0.07010774602406908 +235476,1177.3800000140943,-0.07015553839032215 +235477,1177.3850000140944,-0.07020286306079442 +235478,1177.3900000140945,-0.07024972462610543 +235479,1177.3950000140946,-0.07029612762385588 +235480,1177.4000000140948,-0.07034207653929929 +235481,1177.4050000140949,-0.0703875758060055 +235482,1177.410000014095,-0.07043262980651603 +235483,1177.415000014095,-0.07047724287299127 +235484,1177.4200000140952,-0.0705214192878497 +235485,1177.4250000140953,-0.07056516328439913 +235486,1177.4300000140954,-0.07060847904746013 +235487,1177.4350000140955,-0.07065137071398157 +235488,1177.4400000140956,-0.07069384237364851 +235489,1177.4450000140957,-0.07073589806948233 +235490,1177.4500000140958,-0.07077754179843346 +235491,1177.455000014096,-0.0708187775119664 +235492,1177.460000014096,-0.07085960911663743 +235493,1177.4650000140962,-0.07090004047466493 +235494,1177.4700000140963,-0.0709400754044924 +235495,1177.4750000140964,-0.07097971768134426 +235496,1177.4800000140965,-0.07101897103777452 +235497,1177.4850000140966,-0.07105783916420841 +235498,1177.4900000140967,-0.0710963257094769 +235499,1177.4950000140968,-0.0711344342813445 +235500,1177.500000014097,-0.07117216844702999 +235501,1177.505000014097,-0.07120953173372051 +235502,1177.5100000140972,-0.0712465276290789 +235503,1177.5150000140973,-0.07128315958174444 +235504,1177.5200000140974,-0.071319431001827 +235505,1177.5250000140975,-0.07135534526139468 +235506,1177.5300000140976,-0.07139090569495517 +235507,1177.5350000140977,-0.07142611559993056 +235508,1177.5400000140978,-0.07146097823712609 +235509,1177.545000014098,-0.07149549683119255 +235510,1177.550000014098,-0.0715296745710827 +235511,1177.5550000140981,-0.07156351461050145 +235512,1177.5600000140983,-0.07159702006835027 +235513,1177.5650000140984,-0.07163019402916553 +235514,1177.5700000140985,-0.07166303954355112 +235515,1177.5750000140986,-0.0716955596286052 +235516,1177.5800000140987,-0.07172775726834131 +235517,1177.5850000140988,-0.07175963541410386 +235518,1177.590000014099,-0.07179119698497806 +235519,1177.595000014099,-0.07182244486819428 +235520,1177.6000000140991,-0.07185338191952718 +235521,1177.6050000140992,-0.07188401096368924 +235522,1177.6100000140993,-0.07191433479471923 +235523,1177.6150000140995,-0.07194435617636534 +235524,1177.6200000140996,-0.07197407784246317 +235525,1177.6250000140997,-0.07200350249730868 +235526,1177.6300000140998,-0.07203263281602613 +235527,1177.6350000141,-0.07206147144493101 +235528,1177.6400000141,-0.07209002100188812 +235529,1177.6450000141,-0.07211828407666479 +235530,1177.6500000141002,-0.07214626323127948 +235531,1177.6550000141003,-0.07217396100034544 +235532,1177.6600000141004,-0.07220137989141003 +235533,1177.6650000141005,-0.07222852238528917 +235534,1177.6700000141007,-0.07225539093639753 +235535,1177.6750000141008,-0.07228198797307417 +235536,1177.6800000141009,-0.07230831589790371 +235537,1177.685000014101,-0.07233437708803336 +235538,1177.690000014101,-0.07236017389548549 +235539,1177.6950000141012,-0.07238570864746613 +235540,1177.7000000141013,-0.07241098364666924 +235541,1177.7050000141014,-0.07243600117157689 +235542,1177.7100000141015,-0.07246076347675547 +235543,1177.7150000141016,-0.07248527279314777 +235544,1177.7200000141017,-0.07250953132836135 +235545,1177.7250000141019,-0.07253354126695277 +235546,1177.730000014102,-0.07255730477070825 +235547,1177.735000014102,-0.07258082397892038 +235548,1177.7400000141022,-0.07260410100866123 +235549,1177.7450000141023,-0.07262713795505174 +235550,1177.7500000141024,-0.07264993689152749 +235551,1177.7550000141025,-0.07267249987010098 +235552,1177.7600000141026,-0.07269482892162031 +235553,1177.7650000141027,-0.07271692605602446 +235554,1177.7700000141028,-0.07273879326259514 +235555,1177.775000014103,-0.07276043251020524 +235556,1177.780000014103,-0.07278184574756405 +235557,1177.7850000141032,-0.07280303490345914 +235558,1177.7900000141033,-0.072824001886995 +235559,1177.7950000141034,-0.07284474858782859 +235560,1177.8000000141035,-0.07286527687640164 +235561,1177.8050000141036,-0.07288558860416997 +235562,1177.8100000141037,-0.0729056856038297 +235563,1177.8150000141038,-0.07292556968954053 +235564,1177.820000014104,-0.07294524265714585 +235565,1177.825000014104,-0.07296470628439028 +235566,1177.8300000141041,-0.07298396233113405 +235567,1177.8350000141043,-0.07300301253956464 +235568,1177.8400000141044,-0.07302185863440563 +235569,1177.8450000141045,-0.07304050232312281 +235570,1177.8500000141046,-0.07305894529612753 +235571,1177.8550000141047,-0.07307718922697737 +235572,1177.8600000141048,-0.0730952357725743 +235573,1177.865000014105,-0.07311308657336002 +235574,1177.870000014105,-0.0731307432535089 +235575,1177.8750000141051,-0.07314820742111836 +235576,1177.8800000141052,-0.07316548066839666 +235577,1177.8850000141053,-0.07318256457184841 +235578,1177.8900000141055,-0.0731994606924575 +235579,1177.8950000141056,-0.07321617057586774 +235580,1177.9000000141057,-0.07323269575256101 +235581,1177.9050000141058,-0.07324903773803333 +235582,1177.910000014106,-0.07326519803296838 +235583,1177.915000014106,-0.07328117812340891 +235584,1177.920000014106,-0.07329697948092591 +235585,1177.9250000141062,-0.0733126035627856 +235586,1177.9300000141063,-0.07332805181211415 +235587,1177.9350000141064,-0.0733433256580604 +235588,1177.9400000141065,-0.07335842651595645 +235589,1177.9450000141067,-0.07337335578747614 +235590,1177.9500000141068,-0.07338811486079146 +235591,1177.9550000141069,-0.07340270511072702 +235592,1177.960000014107,-0.07341712789891255 +235593,1177.965000014107,-0.07343138457393332 +235594,1177.9700000141072,-0.07344547647147874 +235595,1177.9750000141073,-0.07345940491448905 +235596,1177.9800000141074,-0.0734731712133 +235597,1177.9850000141075,-0.07348677666578599 +235598,1177.9900000141076,-0.07350022255750091 +235599,1177.9950000141077,-0.07351351016181766 +235600,1178.0000000141079,-0.07352664074006565 +235601,1178.005000014108,-0.07353961554166648 +235602,1178.010000014108,-0.07355243580426811 +235603,1178.0150000141082,-0.07356510275387722 +235604,1178.0200000141083,-0.07357761760498976 +235605,1178.0250000141084,-0.07358998156072019 +235606,1178.0300000141085,-0.07360219581292869 +235607,1178.0350000141086,-0.07361426154234703 +235608,1178.0400000141087,-0.07362617991870277 +235609,1178.0450000141088,-0.07363795210084187 +235610,1178.050000014109,-0.07364957923684985 +235611,1178.055000014109,-0.07366106246417124 +235612,1178.0600000141092,-0.07367240290972775 +235613,1178.0650000141093,-0.07368360169003485 +235614,1178.0700000141094,-0.07369465991131684 +235615,1178.0750000141095,-0.07370557866962058 +235616,1178.0800000141096,-0.07371635905092778 +235617,1178.0850000141097,-0.07372700213126582 +235618,1178.0900000141098,-0.07373750897681727 +235619,1178.09500001411,-0.07374788064402796 +235620,1178.10000001411,-0.07375811817971385 +235621,1178.1050000141101,-0.0737682226211664 +235622,1178.1100000141103,-0.07377819499625675 +235623,1178.1150000141104,-0.07378803632353854 +235624,1178.1200000141105,-0.07379774761234957 +235625,1178.1250000141106,-0.073807329862912 +235626,1178.1300000141107,-0.07381678406643156 +235627,1178.1350000141108,-0.07382611120519535 +235628,1178.140000014111,-0.07383531225266848 +235629,1178.145000014111,-0.07384438817358963 +235630,1178.1500000141111,-0.07385333992406522 +235631,1178.1550000141112,-0.07386216845166263 +235632,1178.1600000141113,-0.07387087469550223 +235633,1178.1650000141115,-0.07387945958634815 +235634,1178.1700000141116,-0.07388792404669813 +235635,1178.1750000141117,-0.0738962689908721 +235636,1178.1800000141118,-0.07390449532509985 +235637,1178.185000014112,-0.07391260394760751 +235638,1178.190000014112,-0.07392059574870298 +235639,1178.195000014112,-0.07392847161086037 +235640,1178.2000000141122,-0.07393623240880343 +235641,1178.2050000141123,-0.07394387900958786 +235642,1178.2100000141124,-0.0739514122726828 +235643,1178.2150000141125,-0.07395883305005115 +235644,1178.2200000141127,-0.07396614218622899 +235645,1178.2250000141128,-0.07397334051840418 +235646,1178.2300000141129,-0.0739804288764937 +235647,1178.235000014113,-0.07398740808322038 +235648,1178.240000014113,-0.07399427895418852 +235649,1178.2450000141132,-0.07400104229795863 +235650,1178.2500000141133,-0.07400769891612136 +235651,1178.2550000141134,-0.07401424960337037 +235652,1178.2600000141135,-0.07402069514757456 +235653,1178.2650000141136,-0.0740270363298492 +235654,1178.2700000141137,-0.07403327392462639 +235655,1178.2750000141139,-0.07403940869972457 +235656,1178.280000014114,-0.07404544141641729 +235657,1178.285000014114,-0.07405137282950104 +235658,1178.2900000141142,-0.07405720368736239 +235659,1178.2950000141143,-0.0740629347320443 +235660,1178.3000000141144,-0.07406856669931157 +235661,1178.3050000141145,-0.07407410031871568 +235662,1178.3100000141146,-0.07407953631365864 +235663,1178.3150000141147,-0.07408487540145627 +235664,1178.3200000141148,-0.07409011829340062 +235665,1178.325000014115,-0.07409526569482179 +235666,1178.330000014115,-0.07410031830514884 +235667,1178.3350000141152,-0.07410527681797008 +235668,1178.3400000141153,-0.07411014192109269 +235669,1178.3450000141154,-0.07411491429660155 +235670,1178.3500000141155,-0.07411959462091747 +235671,1178.3550000141156,-0.07412418356485463 +235672,1178.3600000141157,-0.07412868179367747 +235673,1178.3650000141158,-0.07413308996715681 +235674,1178.370000014116,-0.07413740873962539 +235675,1178.375000014116,-0.0741416387600327 +235676,1178.3800000141161,-0.07414578067199923 +235677,1178.3850000141163,-0.07414983511387006 +235678,1178.3900000141164,-0.07415380271876783 +235679,1178.3950000141165,-0.07415768411464502 +235680,1178.4000000141166,-0.07416147992433583 +235681,1178.4050000141167,-0.07416519076560724 +235682,1178.4100000141168,-0.07416881725120954 +235683,1178.415000014117,-0.07417235998892638 +235684,1178.420000014117,-0.07417581958162413 +235685,1178.4250000141171,-0.07417919662730067 +235686,1178.4300000141172,-0.07418249171913371 +235687,1178.4350000141173,-0.07418570544552845 +235688,1178.4400000141175,-0.07418883839016478 +235689,1178.4450000141176,-0.07419189113204386 +235690,1178.4500000141177,-0.07419486424553419 +235691,1178.4550000141178,-0.07419775830041726 +235692,1178.460000014118,-0.07420057386193248 +235693,1178.465000014118,-0.07420331149082171 +235694,1178.470000014118,-0.07420597174337336 +235695,1178.4750000141182,-0.07420855517146581 +235696,1178.4800000141183,-0.07421106232261045 +235697,1178.4850000141184,-0.07421349373999421 +235698,1178.4900000141186,-0.07421584996252162 +235699,1178.4950000141187,-0.07421813152485636 +235700,1178.5000000141188,-0.07422033895746233 +235701,1178.5050000141189,-0.07422247278664433 +235702,1178.510000014119,-0.07422453353458817 +235703,1178.515000014119,-0.07422652171940047 +235704,1178.5200000141192,-0.07422843785514781 +235705,1178.5250000141193,-0.07423028245189568 +235706,1178.5300000141194,-0.0742320560157468 +235707,1178.5350000141195,-0.07423375904887906 +235708,1178.5400000141196,-0.07423539204958315 +235709,1178.5450000141198,-0.07423695551229953 +235710,1178.5500000141199,-0.07423844992765524 +235711,1178.55500001412,-0.07423987578250012 +235712,1178.56000001412,-0.07424123355994273 +235713,1178.5650000141202,-0.07424252373938578 +235714,1178.5700000141203,-0.07424374679656127 +235715,1178.5750000141204,-0.07424490320356515 +235716,1178.5800000141205,-0.07424599342889161 +235717,1178.5850000141206,-0.07424701793746706 +235718,1178.5900000141207,-0.07424797719068361 +235719,1178.5950000141208,-0.0742488716464323 +235720,1178.600000014121,-0.07424970175913591 +235721,1178.605000014121,-0.07425046797978133 +235722,1178.6100000141212,-0.07425117075595175 +235723,1178.6150000141213,-0.07425181053185835 +235724,1178.6200000141214,-0.07425238774837169 +235725,1178.6250000141215,-0.07425290284305272 +235726,1178.6300000141216,-0.07425335625018353 +235727,1178.6350000141217,-0.07425374840079768 +235728,1178.6400000141218,-0.07425407972271021 +235729,1178.645000014122,-0.07425435064054743 +235730,1178.650000014122,-0.07425456157577617 +235731,1178.6550000141222,-0.0742547129467329 +235732,1178.6600000141223,-0.07425480516865249 +235733,1178.6650000141224,-0.07425483865369659 +235734,1178.6700000141225,-0.07425481381098176 +235735,1178.6750000141226,-0.07425473104660729 +235736,1178.6800000141227,-0.07425459076368268 +235737,1178.6850000141228,-0.0742543933623549 +235738,1178.690000014123,-0.0742541392398352 +235739,1178.695000014123,-0.07425382879042587 +235740,1178.7000000141231,-0.07425346240554648 +235741,1178.7050000141232,-0.07425304047375995 +235742,1178.7100000141234,-0.07425256338079834 +235743,1178.7150000141235,-0.07425203150958835 +235744,1178.7200000141236,-0.07425144524027648 +235745,1178.7250000141237,-0.07425080495025405 +235746,1178.7300000141238,-0.07425011101418183 +235747,1178.735000014124,-0.07424936380401446 +235748,1178.740000014124,-0.07424856368902467 +235749,1178.7450000141241,-0.07424771103582709 +235750,1178.7500000141242,-0.0742468062084019 +235751,1178.7550000141243,-0.07424584956811833 +235752,1178.7600000141244,-0.07424484147375765 +235753,1178.7650000141246,-0.07424378228153612 +235754,1178.7700000141247,-0.07424267234512773 +235755,1178.7750000141248,-0.07424151201568649 +235756,1178.7800000141249,-0.07424030164186861 +235757,1178.785000014125,-0.07423904156985457 +235758,1178.790000014125,-0.07423773214337066 +235759,1178.7950000141252,-0.07423637370371058 +235760,1178.8000000141253,-0.07423496658975666 +235761,1178.8050000141254,-0.07423351113800081 +235762,1178.8100000141255,-0.07423200768256547 +235763,1178.8150000141256,-0.07423045655522409 +235764,1178.8200000141258,-0.07422885808542157 +235765,1178.8250000141259,-0.07422721260029434 +235766,1178.830000014126,-0.0742255204246904 +235767,1178.835000014126,-0.07422378188118903 +235768,1178.8400000141262,-0.07422199729012027 +235769,1178.8450000141263,-0.07422016696958435 +235770,1178.8500000141264,-0.07421829123547072 +235771,1178.8550000141265,-0.07421637040147708 +235772,1178.8600000141266,-0.07421440477912807 +235773,1178.8650000141267,-0.07421239467779375 +235774,1178.8700000141268,-0.07421034040470809 +235775,1178.875000014127,-0.074208242264987 +235776,1178.880000014127,-0.07420610056164637 +235777,1178.8850000141272,-0.07420391559561984 +235778,1178.8900000141273,-0.07420168766577642 +235779,1178.8950000141274,-0.07419941706893789 +235780,1178.9000000141275,-0.07419710409989606 +235781,1178.9050000141276,-0.07419474905142985 +235782,1178.9100000141277,-0.07419235221432216 +235783,1178.9150000141278,-0.07418991387737658 +235784,1178.920000014128,-0.07418743432743401 +235785,1178.925000014128,-0.07418491384938895 +235786,1178.9300000141282,-0.07418235272620578 +235787,1178.9350000141283,-0.07417975123893479 +235788,1178.9400000141284,-0.07417710966672805 +235789,1178.9450000141285,-0.0741744282868552 +235790,1178.9500000141286,-0.07417170737471893 +235791,1178.9550000141287,-0.0741689472038704 +235792,1178.9600000141288,-0.0741661480460246 +235793,1178.965000014129,-0.07416331017107534 +235794,1178.970000014129,-0.07416043384711021 +235795,1178.9750000141291,-0.07415751934042546 +235796,1178.9800000141292,-0.07415456691554052 +235797,1178.9850000141294,-0.07415157683521266 +235798,1178.9900000141295,-0.07414854936045116 +235799,1178.9950000141296,-0.0741454847505317 +235800,1179.0000000141297,-0.07414238326301037 +235801,1179.0050000141298,-0.07413924515373754 +235802,1179.01000001413,-0.07413607067687174 +235803,1179.01500001413,-0.07413286008489324 +235804,1179.0200000141301,-0.07412961362861767 +235805,1179.0250000141302,-0.07412633155720928 +235806,1179.0300000141303,-0.07412301411819434 +235807,1179.0350000141304,-0.07411966155747415 +235808,1179.0400000141306,-0.07411627411933804 +235809,1179.0450000141307,-0.07411285204647627 +235810,1179.0500000141308,-0.07410939557999284 +235811,1179.0550000141309,-0.07410590495941795 +235812,1179.060000014131,-0.07410238042272058 +235813,1179.065000014131,-0.07409882220632086 +235814,1179.0700000141312,-0.07409523054510234 +235815,1179.0750000141313,-0.07409160567242401 +235816,1179.0800000141314,-0.07408794782013244 +235817,1179.0850000141315,-0.07408425721857355 +235818,1179.0900000141316,-0.0740805340966045 +235819,1179.0950000141318,-0.07407677868160532 +235820,1179.1000000141319,-0.07407299119949036 +235821,1179.105000014132,-0.07406917187471988 +235822,1179.110000014132,-0.07406532093031128 +235823,1179.1150000141322,-0.0740614385878503 +235824,1179.1200000141323,-0.07405752506750224 +235825,1179.1250000141324,-0.07405358058802286 +235826,1179.1300000141325,-0.07404960536676929 +235827,1179.1350000141326,-0.07404559961971086 +235828,1179.1400000141327,-0.07404156356143977 +235829,1179.1450000141328,-0.0740374974051817 +235830,1179.150000014133,-0.07403340136280621 +235831,1179.155000014133,-0.07402927564483726 +235832,1179.1600000141332,-0.07402512046046336 +235833,1179.1650000141333,-0.07402093601754785 +235834,1179.1700000141334,-0.07401672252263895 +235835,1179.1750000141335,-0.07401248018097982 +235836,1179.1800000141336,-0.07400820919651835 +235837,1179.1850000141337,-0.07400390977191706 +235838,1179.1900000141338,-0.07399958210856279 +235839,1179.195000014134,-0.0739952264065763 +235840,1179.200000014134,-0.07399084286482183 +235841,1179.2050000141342,-0.07398643168091655 +235842,1179.2100000141343,-0.0739819930512399 +235843,1179.2150000141344,-0.07397752717094284 +235844,1179.2200000141345,-0.07397303423395711 +235845,1179.2250000141346,-0.07396851443300417 +235846,1179.2300000141347,-0.07396396795960442 +235847,1179.2350000141348,-0.07395939500408594 +235848,1179.240000014135,-0.07395479575559342 +235849,1179.245000014135,-0.07395017040209698 +235850,1179.2500000141351,-0.07394551913040069 +235851,1179.2550000141352,-0.07394084212615133 +235852,1179.2600000141354,-0.0739361395738468 +235853,1179.2650000141355,-0.07393141165684468 +235854,1179.2700000141356,-0.07392665855737045 +235855,1179.2750000141357,-0.0739218804565259 +235856,1179.2800000141358,-0.0739170775342973 +235857,1179.285000014136,-0.0739122499695635 +235858,1179.290000014136,-0.07390739794010404 +235859,1179.2950000141361,-0.07390252162260715 +235860,1179.3000000141362,-0.0738976211926776 +235861,1179.3050000141363,-0.07389269682484464 +235862,1179.3100000141364,-0.07388774869256971 +235863,1179.3150000141366,-0.07388277696825413 +235864,1179.3200000141367,-0.07387778182324675 +235865,1179.3250000141368,-0.07387276342785158 +235866,1179.3300000141369,-0.07386772195133519 +235867,1179.335000014137,-0.07386265756193416 +235868,1179.340000014137,-0.0738575704268625 +235869,1179.3450000141372,-0.07385246071231888 +235870,1179.3500000141373,-0.0738473285834939 +235871,1179.3550000141374,-0.07384217420457723 +235872,1179.3600000141375,-0.07383699773876472 +235873,1179.3650000141376,-0.07383179934826548 +235874,1179.3700000141378,-0.07382657919430878 +235875,1179.3750000141379,-0.073821337437151 +235876,1179.380000014138,-0.07381607423608251 +235877,1179.385000014138,-0.07381078974943443 +235878,1179.3900000141382,-0.07380548413458536 +235879,1179.3950000141383,-0.07380015754796804 +235880,1179.4000000141384,-0.07379481014507602 +235881,1179.4050000141385,-0.07378944208047018 +235882,1179.4100000141386,-0.0737840535077852 +235883,1179.4150000141387,-0.07377864457973604 +235884,1179.4200000141389,-0.07377321544812432 +235885,1179.425000014139,-0.07376776626384465 +235886,1179.430000014139,-0.07376229717689087 +235887,1179.4350000141392,-0.07375680833636229 +235888,1179.4400000141393,-0.07375129989046993 +235889,1179.4450000141394,-0.07374577198654245 +235890,1179.4500000141395,-0.0737402247710324 +235891,1179.4550000141396,-0.07373465838952213 +235892,1179.4600000141397,-0.07372907298672973 +235893,1179.4650000141398,-0.07372346870651503 +235894,1179.47000001414,-0.07371784569188529 +235895,1179.47500001414,-0.07371220408500116 +235896,1179.4800000141402,-0.07370654402718238 +235897,1179.4850000141403,-0.07370086565891341 +235898,1179.4900000141404,-0.07369516911984922 +235899,1179.4950000141405,-0.07368945454882075 +235900,1179.5000000141406,-0.0736837220838406 +235901,1179.5050000141407,-0.07367797186210845 +235902,1179.5100000141408,-0.07367220402001656 +235903,1179.515000014141,-0.07366641869315521 +235904,1179.520000014141,-0.073660616016318 +235905,1179.5250000141411,-0.07365479612350727 +235906,1179.5300000141413,-0.0736489591479393 +235907,1179.5350000141414,-0.0736431052220496 +235908,1179.5400000141415,-0.07363723447749808 +235909,1179.5450000141416,-0.07363134704517424 +235910,1179.5500000141417,-0.07362544305520219 +235911,1179.5550000141418,-0.0736195226369458 +235912,1179.560000014142,-0.07361358591901368 +235913,1179.565000014142,-0.0736076330292642 +235914,1179.5700000141421,-0.07360166409481037 +235915,1179.5750000141422,-0.07359567924202476 +235916,1179.5800000141423,-0.07358967859654442 +235917,1179.5850000141425,-0.07358366228327559 +235918,1179.5900000141426,-0.07357763042639856 +235919,1179.5950000141427,-0.07357158314937237 +235920,1179.6000000141428,-0.07356552057493952 +235921,1179.605000014143,-0.07355944282513066 +235922,1179.610000014143,-0.07355335002126914 +235923,1179.615000014143,-0.07354724228397566 +235924,1179.6200000141432,-0.07354111973317282 +235925,1179.6250000141433,-0.07353498248808957 +235926,1179.6300000141434,-0.07352883066726573 +235927,1179.6350000141435,-0.07352266438855647 +235928,1179.6400000141437,-0.07351648376913657 +235929,1179.6450000141438,-0.07351028892550497 +235930,1179.6500000141439,-0.07350407997348894 +235931,1179.655000014144,-0.0734978570282485 +235932,1179.660000014144,-0.0734916202042806 +235933,1179.6650000141442,-0.07348536961542336 +235934,1179.6700000141443,-0.0734791053748603 +235935,1179.6750000141444,-0.07347282759512448 +235936,1179.6800000141445,-0.07346653638810263 +235937,1179.6850000141446,-0.07346023186503921 +235938,1179.6900000141447,-0.07345391413654052 +235939,1179.6950000141449,-0.07344758331257871 +235940,1179.700000014145,-0.07344123950249579 +235941,1179.705000014145,-0.07343488281500757 +235942,1179.7100000141452,-0.0734285133582076 +235943,1179.7150000141453,-0.07342213123957107 +235944,1179.7200000141454,-0.07341573656595873 +235945,1179.7250000141455,-0.07340932944362069 +235946,1179.7300000141456,-0.0734029099782002 +235947,1179.7350000141457,-0.07339647827473751 +235948,1179.7400000141458,-0.07339003443767357 +235949,1179.745000014146,-0.07338357857085376 +235950,1179.750000014146,-0.0733771107775316 +235951,1179.7550000141462,-0.07337063116037242 +235952,1179.7600000141463,-0.07336413982145695 +235953,1179.7650000141464,-0.073357636862285 +235954,1179.7700000141465,-0.07335112238377897 +235955,1179.7750000141466,-0.07334459648628751 +235956,1179.7800000141467,-0.07333805926958889 +235957,1179.7850000141468,-0.07333151083289464 +235958,1179.790000014147,-0.07332495127485296 +235959,1179.795000014147,-0.07331838069355218 +235960,1179.8000000141471,-0.07331179918652414 +235961,1179.8050000141473,-0.07330520685074768 +235962,1179.8100000141474,-0.0732986037826519 +235963,1179.8150000141475,-0.07329199007811958 +235964,1179.8200000141476,-0.07328536583249044 +235965,1179.8250000141477,-0.07327873114056448 +235966,1179.8300000141478,-0.07327208609660521 +235967,1179.835000014148,-0.07326543079434293 +235968,1179.840000014148,-0.07325876532697792 +235969,1179.8450000141481,-0.07325208978718363 +235970,1179.8500000141482,-0.07324540426710989 +235971,1179.8550000141483,-0.07323870885838597 +235972,1179.8600000141485,-0.07323200365212384 +235973,1179.8650000141486,-0.07322528873892112 +235974,1179.8700000141487,-0.07321856420886429 +235975,1179.8750000141488,-0.07321183015153161 +235976,1179.880000014149,-0.07320508665599632 +235977,1179.885000014149,-0.07319833381082942 +235978,1179.890000014149,-0.07319157170410291 +235979,1179.8950000141492,-0.07318480042339258 +235980,1179.9000000141493,-0.07317802005578099 +235981,1179.9050000141494,-0.07317123068786043 +235982,1179.9100000141495,-0.0731644324057358 +235983,1179.9150000141497,-0.07315762529502746 +235984,1179.9200000141498,-0.07315080944087413 +235985,1179.9250000141499,-0.07314398492793571 +235986,1179.93000001415,-0.07313715184039607 +235987,1179.93500001415,-0.07313031026196591 +235988,1179.9400000141502,-0.07312346027588545 +235989,1179.9450000141503,-0.07311660196492728 +235990,1179.9500000141504,-0.07310973541139902 +235991,1179.9550000141505,-0.07310286069714604 +235992,1179.9600000141506,-0.07309597790355422 +235993,1179.9650000141507,-0.07308908711155257 +235994,1179.9700000141509,-0.07308218840161589 +235995,1179.975000014151,-0.07307528185376742 +235996,1179.980000014151,-0.07306836754758149 +235997,1179.9850000141512,-0.07306144556218605 +235998,1179.9900000141513,-0.07305451597626533 +235999,1179.9950000141514,-0.07304757886806236 +236000,1180.0000000141515,-0.0730406343153815 +236001,1180.0050000141516,-0.07303368239559106 +236002,1180.0100000141517,-0.07302672318562564 +236003,1180.0150000141518,-0.07301975676198882 +236004,1180.020000014152,-0.0730127832007555 +236005,1180.025000014152,-0.07300580257757439 +236006,1180.0300000141522,-0.07299881496767048 +236007,1180.0350000141523,-0.07299182044584747 +236008,1180.0400000141524,-0.07298481908649007 +236009,1180.0450000141525,-0.07297781096356652 +236010,1180.0500000141526,-0.07297079615063093 +236011,1180.0550000141527,-0.07296377472082559 +236012,1180.0600000141528,-0.07295674674688332 +236013,1180.065000014153,-0.07294971230112988 +236014,1180.070000014153,-0.07294267145548614 +236015,1180.0750000141531,-0.07293562428147046 +236016,1180.0800000141533,-0.07292857085020102 +236017,1180.0850000141534,-0.07292151123239789 +236018,1180.0900000141535,-0.0729144454983855 +236019,1180.0950000141536,-0.07290737371809469 +236020,1180.1000000141537,-0.07290029596106505 +236021,1180.1050000141538,-0.07289321229644707 +236022,1180.110000014154,-0.07288612279300431 +236023,1180.115000014154,-0.07287902751911557 +236024,1180.1200000141541,-0.07287192654277709 +236025,1180.1250000141542,-0.07286481993160462 +236026,1180.1300000141543,-0.07285770775283565 +236027,1180.1350000141545,-0.0728505900733314 +236028,1180.1400000141546,-0.07284346695957901 +236029,1180.1450000141547,-0.07283633847769355 +236030,1180.1500000141548,-0.07282920469342016 +236031,1180.155000014155,-0.07282206567213609 +236032,1180.160000014155,-0.07281492147885268 +236033,1180.165000014155,-0.07280777217821748 +236034,1180.1700000141552,-0.07280061783451619 +236035,1180.1750000141553,-0.07279345851167471 +236036,1180.1800000141554,-0.07278629427326107 +236037,1180.1850000141555,-0.07277912518248748 +236038,1180.1900000141557,-0.07277195130221226 +236039,1180.1950000141558,-0.07276477269494178 +236040,1180.2000000141559,-0.07275758942283236 +236041,1180.205000014156,-0.07275040154769233 +236042,1180.210000014156,-0.07274320913098371 +236043,1180.2150000141562,-0.07273601223382437 +236044,1180.2200000141563,-0.07272881091698971 +236045,1180.2250000141564,-0.07272160524091466 +236046,1180.2300000141565,-0.07271439526569545 +236047,1180.2350000141566,-0.07270718105109156 +236048,1180.2400000141567,-0.07269996265652744 +236049,1180.2450000141569,-0.07269274014109442 +236050,1180.250000014157,-0.07268551356355253 +236051,1180.255000014157,-0.07267828298233224 +236052,1180.2600000141572,-0.07267104845553628 +236053,1180.2650000141573,-0.07266381004094144 +236054,1180.2700000141574,-0.0726565677960003 +236055,1180.2750000141575,-0.07264932177784303 +236056,1180.2800000141576,-0.07264207204327908 +236057,1180.2850000141577,-0.07263481864879895 +236058,1180.2900000141578,-0.0726275616505759 +236059,1180.295000014158,-0.0726203011044677 +236060,1180.300000014158,-0.07261303706601825 +236061,1180.3050000141582,-0.07260576959045936 +236062,1180.3100000141583,-0.07259849873271237 +236063,1180.3150000141584,-0.07259122454738982 +236064,1180.3200000141585,-0.07258394708879715 +236065,1180.3250000141586,-0.0725766664109343 +236066,1180.3300000141587,-0.07256938256749737 +236067,1180.3350000141588,-0.07256209561188026 +236068,1180.340000014159,-0.07255480559717627 +236069,1180.345000014159,-0.07254751257617968 +236070,1180.3500000141591,-0.07254021660138742 +236071,1180.3550000141593,-0.07253291772500058 +236072,1180.3600000141594,-0.07252561599892601 +236073,1180.3650000141595,-0.07251831147477796 +236074,1180.3700000141596,-0.0725110042038795 +236075,1180.3750000141597,-0.07250369423726417 +236076,1180.3800000141598,-0.07249638162567751 +236077,1180.38500001416,-0.0724890664195785 +236078,1180.39000001416,-0.07248174866914124 +236079,1180.3950000141601,-0.07247442842425629 +236080,1180.4000000141602,-0.0724671057345323 +236081,1180.4050000141604,-0.0724597806492974 +236082,1180.4100000141605,-0.07245245321760078 +236083,1180.4150000141606,-0.07244512348821408 +236084,1180.4200000141607,-0.0724377915096329 +236085,1180.4250000141608,-0.07243045733007826 +236086,1180.430000014161,-0.072423120997498 +236087,1180.435000014161,-0.07241578255956825 +236088,1180.4400000141611,-0.07240844206369489 +236089,1180.4450000141612,-0.07240109955701488 +236090,1180.4500000141613,-0.0723937550863978 +236091,1180.4550000141614,-0.07238640869844712 +236092,1180.4600000141616,-0.07237906043950171 +236093,1180.4650000141617,-0.07237171035563711 +236094,1180.4700000141618,-0.07236435849266702 +236095,1180.4750000141619,-0.07235700489614463 +236096,1180.480000014162,-0.07234964961136392 +236097,1180.485000014162,-0.0723422926833611 +236098,1180.4900000141622,-0.07233493415691594 +236099,1180.4950000141623,-0.07232757407655303 +236100,1180.5000000141624,-0.07232021248654324 +236101,1180.5050000141625,-0.07231284943090491 +236102,1180.5100000141626,-0.07230548495340526 +236103,1180.5150000141628,-0.07229811909756162 +236104,1180.5200000141629,-0.07229075190664284 +236105,1180.525000014163,-0.07228338342367042 +236106,1180.530000014163,-0.07227601369141996 +236107,1180.5350000141632,-0.07226864275242231 +236108,1180.5400000141633,-0.07226127064896488 +236109,1180.5450000141634,-0.07225389742309293 +236110,1180.5500000141635,-0.07224652311661083 +236111,1180.5550000141636,-0.07223914777108316 +236112,1180.5600000141637,-0.07223177142783618 +236113,1180.5650000141638,-0.0722243941279589 +236114,1180.570000014164,-0.07221701591230437 +236115,1180.575000014164,-0.0722096368214908 +236116,1180.5800000141642,-0.07220225689590297 +236117,1180.5850000141643,-0.07219487617569319 +236118,1180.5900000141644,-0.07218749470078269 +236119,1180.5950000141645,-0.07218011251086269 +236120,1180.6000000141646,-0.07217272964539566 +236121,1180.6050000141647,-0.07216534614361644 +236122,1180.6100000141648,-0.07215796204453345 +236123,1180.615000014165,-0.07215057738692982 +236124,1180.620000014165,-0.07214319220936453 +236125,1180.6250000141652,-0.07213580655017364 +236126,1180.6300000141653,-0.07212842044747136 +236127,1180.6350000141654,-0.07212103393915119 +236128,1180.6400000141655,-0.07211364706288707 +236129,1180.6450000141656,-0.07210625985613452 +236130,1180.6500000141657,-0.07209887235613167 +236131,1180.6550000141658,-0.07209148459990054 +236132,1180.660000014166,-0.07208409662424793 +236133,1180.665000014166,-0.07207670846576669 +236134,1180.6700000141661,-0.07206932016083671 +236135,1180.6750000141662,-0.07206193174562607 +236136,1180.6800000141664,-0.07205454325609208 +236137,1180.6850000141665,-0.07204715472798234 +236138,1180.6900000141666,-0.0720397661968359 +236139,1180.6950000141667,-0.07203237769798418 +236140,1180.7000000141668,-0.07202498926655211 +236141,1180.705000014167,-0.07201760093745921 +236142,1180.710000014167,-0.07201021274542053 +236143,1180.7150000141671,-0.07200282472494782 +236144,1180.7200000141672,-0.07199543691035039 +236145,1180.7250000141673,-0.07198804933573634 +236146,1180.7300000141674,-0.07198066203501341 +236147,1180.7350000141676,-0.07197327504189008 +236148,1180.7400000141677,-0.07196588838987655 +236149,1180.7450000141678,-0.07195850211228579 +236150,1180.7500000141679,-0.07195111624223444 +236151,1180.755000014168,-0.07194373081264391 +236152,1180.760000014168,-0.07193634585624128 +236153,1180.7650000141682,-0.0719289614055604 +236154,1180.7700000141683,-0.0719215774929427 +236155,1180.7750000141684,-0.07191419415053829 +236156,1180.7800000141685,-0.07190681141030689 +236157,1180.7850000141686,-0.07189942930401877 +236158,1180.7900000141688,-0.07189204786325572 +236159,1180.7950000141689,-0.07188466711941201 +236160,1180.800000014169,-0.07187728710369531 +236161,1180.805000014169,-0.07186990784712767 +236162,1180.8100000141692,-0.0718625293805464 +236163,1180.8150000141693,-0.07185515173460504 +236164,1180.8200000141694,-0.07184777493977426 +236165,1180.8250000141695,-0.07184039902634282 +236166,1180.8300000141696,-0.07183302402441841 +236167,1180.8350000141697,-0.07182564996392865 +236168,1180.8400000141698,-0.07181827687462193 +236169,1180.84500001417,-0.07181090478606832 +236170,1180.85000001417,-0.07180353372766049 +236171,1180.8550000141702,-0.07179616372861457 +236172,1180.8600000141703,-0.07178879481797105 +236173,1180.8650000141704,-0.07178142702459565 +236174,1180.8700000141705,-0.07177406037718025 +236175,1180.8750000141706,-0.07176669490424366 +236176,1180.8800000141707,-0.07175933063413253 +236177,1180.8850000141708,-0.07175196759502231 +236178,1180.890000014171,-0.07174460581491793 +236179,1180.895000014171,-0.07173724532165482 +236180,1180.9000000141712,-0.07172988614289959 +236181,1180.9050000141713,-0.07172252830615104 +236182,1180.9100000141714,-0.07171517183874093 +236183,1180.9150000141715,-0.07170781676783475 +236184,1180.9200000141716,-0.07170046312043261 +236185,1180.9250000141717,-0.07169311092337015 +236186,1180.9300000141718,-0.07168576020331917 +236187,1180.935000014172,-0.07167841098678862 +236188,1180.940000014172,-0.07167106330012532 +236189,1180.9450000141721,-0.07166371716951482 +236190,1180.9500000141722,-0.07165637262098215 +236191,1180.9550000141724,-0.07164902968039266 +236192,1180.9600000141725,-0.07164168837345279 +236193,1180.9650000141726,-0.07163434872571091 +236194,1180.9700000141727,-0.07162701076255805 +236195,1180.9750000141728,-0.07161967450922871 +236196,1180.980000014173,-0.07161233999080163 +236197,1180.985000014173,-0.07160500723220059 +236198,1180.9900000141731,-0.07159767625819517 +236199,1180.9950000141732,-0.07159034709340148 +236200,1181.0000000141733,-0.07158301976228296 +236201,1181.0050000141734,-0.07157569428915116 +236202,1181.0100000141736,-0.07156837069816646 +236203,1181.0150000141737,-0.07156104901333882 +236204,1181.0200000141738,-0.07155372925852853 +236205,1181.0250000141739,-0.07154641145744696 +236206,1181.030000014174,-0.07153909563365736 +236207,1181.035000014174,-0.07153178181057546 +236208,1181.0400000141742,-0.0715244700114703 +236209,1181.0450000141743,-0.07151716025946497 +236210,1181.0500000141744,-0.0715098525775373 +236211,1181.0550000141745,-0.07150254698852053 +236212,1181.0600000141746,-0.07149524351510414 +236213,1181.0650000141748,-0.07148794217983448 +236214,1181.0700000141749,-0.07148064300511552 +236215,1181.075000014175,-0.07147334601320951 +236216,1181.080000014175,-0.07146605122623775 +236217,1181.0850000141752,-0.07145875866618126 +236218,1181.0900000141753,-0.0714514683548814 +236219,1181.0950000141754,-0.0714441803140407 +236220,1181.1000000141755,-0.07143689456522348 +236221,1181.1050000141756,-0.0714296111298565 +236222,1181.1100000141757,-0.07142233002922967 +236223,1181.1150000141758,-0.07141505128449678 +236224,1181.120000014176,-0.07140777491667609 +236225,1181.125000014176,-0.07140050094665105 +236226,1181.1300000141762,-0.07139322939517098 +236227,1181.1350000141763,-0.07138596028285167 +236228,1181.1400000141764,-0.07137869363017611 +236229,1181.1450000141765,-0.07137142945749514 +236230,1181.1500000141766,-0.07136416778502805 +236231,1181.1550000141767,-0.07135690863286327 +236232,1181.1600000141768,-0.07134965202095904 +236233,1181.165000014177,-0.07134239796914402 +236234,1181.170000014177,-0.07133514649711793 +236235,1181.1750000141772,-0.07132789762445221 +236236,1181.1800000141773,-0.07132065137059063 +236237,1181.1850000141774,-0.07131340775484996 +236238,1181.1900000141775,-0.07130616679642053 +236239,1181.1950000141776,-0.07129892851436696 +236240,1181.2000000141777,-0.07129169292762869 +236241,1181.2050000141778,-0.07128446005502062 +236242,1181.210000014178,-0.07127722991523375 +236243,1181.215000014178,-0.07127000252683578 +236244,1181.2200000141781,-0.07126277790827173 +236245,1181.2250000141782,-0.07125555607786453 +236246,1181.2300000141784,-0.0712483370538156 +236247,1181.2350000141785,-0.07124112085420554 +236248,1181.2400000141786,-0.07123390749699465 +236249,1181.2450000141787,-0.07122669700002353 +236250,1181.2500000141788,-0.07121948938101368 +236251,1181.255000014179,-0.07121228465756811 +236252,1181.260000014179,-0.07120508284717192 +236253,1181.2650000141791,-0.0711978839671929 +236254,1181.2700000141792,-0.071190688034882 +236255,1181.2750000141793,-0.07118349506737409 +236256,1181.2800000141794,-0.0711763050816884 +236257,1181.2850000141796,-0.07116911809472912 +236258,1181.2900000141797,-0.07116193412328597 +236259,1181.2950000141798,-0.07115475318403482 +236260,1181.30000001418,-0.07114757529353817 +236261,1181.30500001418,-0.07114040046824577 +236262,1181.31000001418,-0.07113322872449515 +236263,1181.3150000141802,-0.07112606007851219 +236264,1181.3200000141803,-0.07111889454641164 +236265,1181.3250000141804,-0.07111173214419773 +236266,1181.3300000141805,-0.07110457288776467 +236267,1181.3350000141807,-0.0710974167928972 +236268,1181.3400000141808,-0.07109026387527115 +236269,1181.3450000141809,-0.07108311415045394 +236270,1181.350000014181,-0.07107596763390518 +236271,1181.355000014181,-0.07106882434097715 +236272,1181.3600000141812,-0.07106168428691534 +236273,1181.3650000141813,-0.07105454748685901 +236274,1181.3700000141814,-0.07104741395584167 +236275,1181.3750000141815,-0.07104028370879166 +236276,1181.3800000141816,-0.0710331567605326 +236277,1181.3850000141817,-0.07102603312578396 +236278,1181.3900000141819,-0.07101891281916158 +236279,1181.395000014182,-0.07101179585517814 +236280,1181.400000014182,-0.07100468224824373 +236281,1181.4050000141822,-0.07099757201266628 +236282,1181.4100000141823,-0.07099046516265216 +236283,1181.4150000141824,-0.0709833617123066 +236284,1181.4200000141825,-0.0709762616756342 +236285,1181.4250000141826,-0.07096916506653955 +236286,1181.4300000141827,-0.07096207189882753 +236287,1181.4350000141828,-0.07095498218620398 +236288,1181.440000014183,-0.07094789594227605 +236289,1181.445000014183,-0.07094081318055281 +236290,1181.4500000141832,-0.07093373391444566 +236291,1181.4550000141833,-0.0709266581572688 +236292,1181.4600000141834,-0.07091958592223983 +236293,1181.4650000141835,-0.07091251722248008 +236294,1181.4700000141836,-0.07090545207101517 +236295,1181.4750000141837,-0.07089839048077551 +236296,1181.4800000141838,-0.07089133246459667 +236297,1181.485000014184,-0.07088427803521996 +236298,1181.490000014184,-0.07087722720529284 +236299,1181.4950000141841,-0.07087017998736939 +236300,1181.5000000141843,-0.0708631363939108 +236301,1181.5050000141844,-0.07085609643728578 +236302,1181.5100000141845,-0.0708490601297711 +236303,1181.5150000141846,-0.07084202748355199 +236304,1181.5200000141847,-0.07083499851072257 +236305,1181.5250000141848,-0.07082797322328636 +236306,1181.530000014185,-0.07082095163315674 +236307,1181.535000014185,-0.07081393375215732 +236308,1181.5400000141851,-0.07080691959202244 +236309,1181.5450000141852,-0.07079990916439764 +236310,1181.5500000141853,-0.07079290248084007 +236311,1181.5550000141855,-0.07078589955281889 +236312,1181.5600000141856,-0.07077890039171576 +236313,1181.5650000141857,-0.07077190500882531 +236314,1181.5700000141858,-0.0707649134153555 +236315,1181.575000014186,-0.07075792562242804 +236316,1181.580000014186,-0.07075094164107891 +236317,1181.585000014186,-0.07074396148225874 +236318,1181.5900000141862,-0.0707369851568332 +236319,1181.5950000141863,-0.07073001267558349 +236320,1181.6000000141864,-0.0707230440492067 +236321,1181.6050000141865,-0.07071607928831626 +236322,1181.6100000141867,-0.07070911840344239 +236323,1181.6150000141868,-0.07070216140503242 +236324,1181.6200000141869,-0.07069520830345136 +236325,1181.625000014187,-0.07068825910898209 +236326,1181.630000014187,-0.070681313831826 +236327,1181.6350000141872,-0.07067437248210326 +236328,1181.6400000141873,-0.07066743506985322 +236329,1181.6450000141874,-0.07066050160503495 +236330,1181.6500000141875,-0.07065357209752744 +236331,1181.6550000141876,-0.07064664655713018 +236332,1181.6600000141877,-0.07063972499356345 +236333,1181.6650000141879,-0.07063280741646875 +236334,1181.670000014188,-0.07062589383540922 +236335,1181.675000014188,-0.07061898425986997 +236336,1181.6800000141882,-0.07061207869925853 +236337,1181.6850000141883,-0.07060517716290524 +236338,1181.6900000141884,-0.07059827966006357 +236339,1181.6950000141885,-0.0705913861999106 +236340,1181.7000000141886,-0.0705844967915473 +236341,1181.7050000141887,-0.07057761144399899 +236342,1181.7100000141888,-0.07057073016621572 +236343,1181.715000014189,-0.0705638529670726 +236344,1181.720000014189,-0.07055697985537017 +236345,1181.7250000141892,-0.07055011083983485 +236346,1181.7300000141893,-0.07054324592911927 +236347,1181.7350000141894,-0.07053638513180259 +236348,1181.7400000141895,-0.07052952845639096 +236349,1181.7450000141896,-0.07052267591131785 +236350,1181.7500000141897,-0.07051582750494437 +236351,1181.7550000141898,-0.07050898324555971 +236352,1181.76000001419,-0.07050214314138145 +236353,1181.76500001419,-0.07049530720055595 +236354,1181.7700000141901,-0.0704884754311587 +236355,1181.7750000141903,-0.07048164784119466 +236356,1181.7800000141904,-0.07047482443859863 +236357,1181.7850000141905,-0.07046800523123563 +236358,1181.7900000141906,-0.07046119022690119 +236359,1181.7950000141907,-0.07045437943332176 +236360,1181.8000000141908,-0.07044757285815506 +236361,1181.805000014191,-0.07044077050899035 +236362,1181.810000014191,-0.07043397239334888 +236363,1181.8150000141911,-0.07042717851868416 +236364,1181.8200000141912,-0.07042038889238232 +236365,1181.8250000141913,-0.07041360352176249 +236366,1181.8300000141915,-0.07040682241407707 +236367,1181.8350000141916,-0.07040004557651214 +236368,1181.8400000141917,-0.07039327301618775 +236369,1181.8450000141918,-0.07038650474015824 +236370,1181.850000014192,-0.07037974075541265 +236371,1181.855000014192,-0.07037298106887493 +236372,1181.860000014192,-0.07036622568740444 +236373,1181.8650000141922,-0.0703594746177961 +236374,1181.8700000141923,-0.07035272786678083 +236375,1181.8750000141924,-0.07034598544102583 +236376,1181.8800000141925,-0.07033924734713493 +236377,1181.8850000141927,-0.0703325135916489 +236378,1181.8900000141928,-0.07032578418104574 +236379,1181.8950000141929,-0.07031905912174106 +236380,1181.900000014193,-0.07031233842008838 +236381,1181.905000014193,-0.07030562208237941 +236382,1181.9100000141932,-0.07029891011484436 +236383,1181.9150000141933,-0.07029220252365237 +236384,1181.9200000141934,-0.07028549931491164 +236385,1181.9250000141935,-0.07027880049466989 +236386,1181.9300000141936,-0.07027210606891462 +236387,1181.9350000141937,-0.07026541604357338 +236388,1181.9400000141939,-0.07025873042451412 +236389,1181.945000014194,-0.0702520492175455 +236390,1181.950000014194,-0.07024537242841718 +236391,1181.9550000141942,-0.07023870006282006 +236392,1181.9600000141943,-0.07023203212638673 +236393,1181.9650000141944,-0.07022536862469163 +236394,1181.9700000141945,-0.07021870956325141 +236395,1181.9750000141946,-0.07021205494752521 +236396,1181.9800000141947,-0.07020540478291494 +236397,1181.9850000141948,-0.07019875907476564 +236398,1181.990000014195,-0.07019211782836568 +236399,1181.995000014195,-0.07018548104894715 +236400,1182.0000000141952,-0.07017884874168602 +236401,1182.0050000141953,-0.0701722209117026 +236402,1182.0100000141954,-0.07016559756406164 +236403,1182.0150000141955,-0.07015897870377279 +236404,1182.0200000141956,-0.07015236433579074 +236405,1182.0250000141957,-0.0701457544650156 +236406,1182.0300000141958,-0.07013914909629314 +236407,1182.035000014196,-0.07013254823441509 +236408,1182.040000014196,-0.07012595188411937 +236409,1182.0450000141961,-0.07011936005009044 +236410,1182.0500000141963,-0.07011277273695954 +236411,1182.0550000141964,-0.07010618994930498 +236412,1182.0600000141965,-0.07009961169165235 +236413,1182.0650000141966,-0.07009303796847492 +236414,1182.0700000141967,-0.07008646878419375 +236415,1182.0750000141968,-0.07007990414317815 +236416,1182.080000014197,-0.07007334404974573 +236417,1182.085000014197,-0.07006678850816288 +236418,1182.0900000141971,-0.07006023752264488 +236419,1182.0950000141972,-0.07005369109735626 +236420,1182.1000000141973,-0.07004714923641103 +236421,1182.1050000141975,-0.07004061194387291 +236422,1182.1100000141976,-0.07003407922375567 +236423,1182.1150000141977,-0.0700275510800233 +236424,1182.1200000141978,-0.07002102751659035 +236425,1182.125000014198,-0.07001450853732215 +236426,1182.130000014198,-0.07000799414603504 +236427,1182.135000014198,-0.07000148434649667 +236428,1182.1400000141982,-0.06999497914242626 +236429,1182.1450000141983,-0.06998847853749482 +236430,1182.1500000141984,-0.06998198253532541 +236431,1182.1550000141985,-0.06997549113949338 +236432,1182.1600000141987,-0.06996900435352667 +236433,1182.1650000141988,-0.06996252218090604 +236434,1182.1700000141989,-0.06995604462506524 +236435,1182.175000014199,-0.06994957168939138 +236436,1182.180000014199,-0.06994310337722508 +236437,1182.1850000141992,-0.06993663969186074 +236438,1182.1900000141993,-0.06993018063654685 +236439,1182.1950000141994,-0.06992372621448611 +236440,1182.2000000141995,-0.06991727642883576 +236441,1182.2050000141996,-0.06991083128270782 +236442,1182.2100000141997,-0.06990439077916927 +236443,1182.2150000141999,-0.0698979549212423 +236444,1182.2200000142,-0.06989152371190464 +236445,1182.2250000142,-0.06988509715408966 +236446,1182.2300000142002,-0.06987867525068671 +236447,1182.2350000142003,-0.06987225800454126 +236448,1182.2400000142004,-0.06986584541845524 +236449,1182.2450000142005,-0.06985943749518715 +236450,1182.2500000142006,-0.06985303423745243 +236451,1182.2550000142007,-0.06984663564792352 +236452,1182.2600000142008,-0.06984024172923027 +236453,1182.265000014201,-0.06983385248396004 +236454,1182.270000014201,-0.06982746791465796 +236455,1182.2750000142012,-0.06982108802382715 +236456,1182.2800000142013,-0.06981471281392895 +236457,1182.2850000142014,-0.06980834228738317 +236458,1182.2900000142015,-0.06980197644656827 +236459,1182.2950000142016,-0.06979561529382161 +236460,1182.3000000142017,-0.06978925883143965 +236461,1182.3050000142018,-0.06978290706167813 +236462,1182.310000014202,-0.06977655998675242 +236463,1182.315000014202,-0.06977021760883757 +236464,1182.3200000142022,-0.06976387993006865 +236465,1182.3250000142023,-0.0697575469525409 +236466,1182.3300000142024,-0.06975121867830995 +236467,1182.3350000142025,-0.06974489510939211 +236468,1182.3400000142026,-0.06973857624776443 +236469,1182.3450000142027,-0.06973226209536507 +236470,1182.3500000142028,-0.06972595265409338 +236471,1182.355000014203,-0.0697196479258102 +236472,1182.360000014203,-0.06971334791233805 +236473,1182.3650000142031,-0.06970705261546128 +236474,1182.3700000142032,-0.06970076203692634 +236475,1182.3750000142034,-0.06969447617844196 +236476,1182.3800000142035,-0.06968819504167935 +236477,1182.3850000142036,-0.06968191862827243 +236478,1182.3900000142037,-0.06967564693981797 +236479,1182.3950000142038,-0.06966937997787588 +236480,1182.400000014204,-0.06966311774396934 +236481,1182.405000014204,-0.069656860239585 +236482,1182.4100000142041,-0.06965060746617326 +236483,1182.4150000142042,-0.06964435942514834 +236484,1182.4200000142043,-0.06963811611788859 +236485,1182.4250000142044,-0.06963187754573663 +236486,1182.4300000142046,-0.06962564370999955 +236487,1182.4350000142047,-0.06961941461194911 +236488,1182.4400000142048,-0.06961319025282194 +236489,1182.4450000142049,-0.0696069706338197 +236490,1182.450000014205,-0.06960075575610934 +236491,1182.455000014205,-0.06959454562082319 +236492,1182.4600000142052,-0.06958834022905927 +236493,1182.4650000142053,-0.06958213958188135 +236494,1182.4700000142054,-0.06957594368031926 +236495,1182.4750000142055,-0.06956975252536896 +236496,1182.4800000142056,-0.06956356611799282 +236497,1182.4850000142058,-0.06955738445911978 +236498,1182.4900000142059,-0.06955120754964551 +236499,1182.495000014206,-0.06954503539043261 +236500,1182.500000014206,-0.06953886798231076 +236501,1182.5050000142062,-0.06953270532607699 +236502,1182.5100000142063,-0.06952654742249574 +236503,1182.5150000142064,-0.06952039427229917 +236504,1182.5200000142065,-0.06951424587618722 +236505,1182.5250000142066,-0.06950810223482787 +236506,1182.5300000142067,-0.06950196334885725 +236507,1182.5350000142068,-0.06949582921887991 +236508,1182.540000014207,-0.0694896998454689 +236509,1182.545000014207,-0.06948357522916603 +236510,1182.5500000142072,-0.06947745537048193 +236511,1182.5550000142073,-0.06947134026989638 +236512,1182.5600000142074,-0.06946522992785831 +236513,1182.5650000142075,-0.06945912434478611 +236514,1182.5700000142076,-0.06945302352106777 +236515,1182.5750000142077,-0.06944692745706099 +236516,1182.5800000142078,-0.0694408361530934 +236517,1182.585000014208,-0.06943474960946273 +236518,1182.590000014208,-0.06942866782643695 +236519,1182.5950000142082,-0.06942259080425447 +236520,1182.6000000142083,-0.06941651854312429 +236521,1182.6050000142084,-0.06941045104322617 +236522,1182.6100000142085,-0.06940438830471077 +236523,1182.6150000142086,-0.06939833032769983 +236524,1182.6200000142087,-0.0693922771122864 +236525,1182.6250000142088,-0.06938622865853489 +236526,1182.630000014209,-0.06938018496648128 +236527,1182.635000014209,-0.06937414603613333 +236528,1182.6400000142091,-0.06936811186747063 +236529,1182.6450000142092,-0.06936208246044488 +236530,1182.6500000142094,-0.06935605781497999 +236531,1182.6550000142095,-0.06935003793097218 +236532,1182.6600000142096,-0.06934402280829027 +236533,1182.6650000142097,-0.06933801244677577 +236534,1182.6700000142098,-0.069332006846243 +236535,1182.67500001421,-0.06932600600647924 +236536,1182.68000001421,-0.06932000992724503 +236537,1182.6850000142101,-0.0693140186082741 +236538,1182.6900000142102,-0.06930803204927372 +236539,1182.6950000142103,-0.06930205024992474 +236540,1182.7000000142104,-0.06929607320988176 +236541,1182.7050000142106,-0.06929010092877336 +236542,1182.7100000142107,-0.0692841334062021 +236543,1182.7150000142108,-0.06927817064174481 +236544,1182.7200000142109,-0.06927221263495266 +236545,1182.725000014211,-0.06926625938535133 +236546,1182.730000014211,-0.0692603108924412 +236547,1182.7350000142112,-0.0692543671556974 +236548,1182.7400000142113,-0.06924842817457004 +236549,1182.7450000142114,-0.06924249394848432 +236550,1182.7500000142115,-0.06923656447684072 +236551,1182.7550000142116,-0.06923063975901506 +236552,1182.7600000142118,-0.0692247197943587 +236553,1182.7650000142119,-0.06921880458219867 +236554,1182.770000014212,-0.06921289412183787 +236555,1182.775000014212,-0.06920698841255508 +236556,1182.7800000142122,-0.06920108745360523 +236557,1182.7850000142123,-0.06919519124421945 +236558,1182.7900000142124,-0.06918929978360532 +236559,1182.7950000142125,-0.06918341307094682 +236560,1182.8000000142126,-0.06917753110540469 +236561,1182.8050000142127,-0.0691716538861164 +236562,1182.8100000142128,-0.06916578141219641 +236563,1182.815000014213,-0.06915991368273619 +236564,1182.820000014213,-0.06915405069680443 +236565,1182.8250000142132,-0.06914819245344718 +236566,1182.8300000142133,-0.06914233895168792 +236567,1182.8350000142134,-0.06913649019052777 +236568,1182.8400000142135,-0.06913064616894556 +236569,1182.8450000142136,-0.06912480688589803 +236570,1182.8500000142137,-0.06911897234031987 +236571,1182.8550000142138,-0.06911314253112395 +236572,1182.860000014214,-0.0691073174572014 +236573,1182.865000014214,-0.06910149711742172 +236574,1182.8700000142142,-0.06909568151063294 +236575,1182.8750000142143,-0.06908987063566177 +236576,1182.8800000142144,-0.06908406449131367 +236577,1182.8850000142145,-0.06907826307637303 +236578,1182.8900000142146,-0.06907246638960328 +236579,1182.8950000142147,-0.069066674429747 +236580,1182.9000000142148,-0.06906088719552606 +236581,1182.905000014215,-0.06905510468564174 +236582,1182.910000014215,-0.0690493268987749 +236583,1182.9150000142151,-0.069043553833586 +236584,1182.9200000142152,-0.06903778548871535 +236585,1182.9250000142154,-0.0690320218627831 +236586,1182.9300000142155,-0.0690262629543895 +236587,1182.9350000142156,-0.06902050876211492 +236588,1182.9400000142157,-0.06901475928452001 +236589,1182.9450000142158,-0.06900901452014584 +236590,1182.950000014216,-0.06900327446751396 +236591,1182.955000014216,-0.06899753912512659 +236592,1182.9600000142161,-0.06899180849146665 +236593,1182.9650000142162,-0.068986082564998 +236594,1182.9700000142163,-0.06898036134416548 +236595,1182.9750000142164,-0.06897464482739499 +236596,1182.9800000142166,-0.0689689330130937 +236597,1182.9850000142167,-0.06896322589965014 +236598,1182.9900000142168,-0.06895752348543426 +236599,1182.9950000142169,-0.06895182576879758 +236600,1183.000000014217,-0.06894613274807333 +236601,1183.005000014217,-0.06894044442157653 +236602,1183.0100000142172,-0.06893476078760413 +236603,1183.0150000142173,-0.06892908184443511 +236604,1183.0200000142174,-0.06892340759033055 +236605,1183.0250000142175,-0.06891773802353386 +236606,1183.0300000142176,-0.06891207314227073 +236607,1183.0350000142178,-0.06890641294474938 +236608,1183.0400000142179,-0.0689007574291606 +236609,1183.045000014218,-0.0688951065936779 +236610,1183.050000014218,-0.06888946043645754 +236611,1183.0550000142182,-0.06888381895563875 +236612,1183.0600000142183,-0.06887818214934374 +236613,1183.0650000142184,-0.06887255001567791 +236614,1183.0700000142185,-0.0688669225527298 +236615,1183.0750000142186,-0.06886129975857141 +236616,1183.0800000142187,-0.06885568163125812 +236617,1183.0850000142188,-0.06885006816882887 +236618,1183.090000014219,-0.06884445936930629 +236619,1183.095000014219,-0.06883885523069676 +236620,1183.1000000142192,-0.06883325575099052 +236621,1183.1050000142193,-0.06882766092816181 +236622,1183.1100000142194,-0.06882207076016893 +236623,1183.1150000142195,-0.06881648524495439 +236624,1183.1200000142196,-0.06881090438044493 +236625,1183.1250000142197,-0.06880532816455173 +236626,1183.1300000142198,-0.06879975659517042 +236627,1183.13500001422,-0.06879418967018126 +236628,1183.14000001422,-0.06878862738744917 +236629,1183.1450000142202,-0.06878306974482383 +236630,1183.1500000142203,-0.06877751674013988 +236631,1183.1550000142204,-0.06877196837121688 +236632,1183.1600000142205,-0.06876642463585951 +236633,1183.1650000142206,-0.06876088553185762 +236634,1183.1700000142207,-0.06875535105698637 +236635,1183.1750000142208,-0.06874982120900626 +236636,1183.180000014221,-0.06874429598566327 +236637,1183.185000014221,-0.06873877538468899 +236638,1183.1900000142211,-0.06873325940380065 +236639,1183.1950000142213,-0.06872774804070121 +236640,1183.2000000142214,-0.06872224129307956 +236641,1183.2050000142215,-0.06871673915861048 +236642,1183.2100000142216,-0.06871124163495483 +236643,1183.2150000142217,-0.0687057487197596 +236644,1183.2200000142218,-0.068700260410658 +236645,1183.225000014222,-0.0686947767052696 +236646,1183.230000014222,-0.06868929760120035 +236647,1183.2350000142221,-0.06868382309604273 +236648,1183.2400000142222,-0.0686783531873758 +236649,1183.2450000142223,-0.06867288787276536 +236650,1183.2500000142225,-0.06866742714976393 +236651,1183.2550000142226,-0.06866197101591093 +236652,1183.2600000142227,-0.06865651946873276 +236653,1183.2650000142228,-0.06865107250574283 +236654,1183.270000014223,-0.06864563012444175 +236655,1183.275000014223,-0.0686401923223173 +236656,1183.280000014223,-0.0686347590968446 +236657,1183.2850000142232,-0.06862933044548618 +236658,1183.2900000142233,-0.06862390636569203 +236659,1183.2950000142234,-0.06861848685489974 +236660,1183.3000000142235,-0.06861307191053459 +236661,1183.3050000142237,-0.06860766153000955 +236662,1183.3100000142238,-0.06860225571072548 +236663,1183.3150000142239,-0.06859685445007112 +236664,1183.320000014224,-0.06859145774542325 +236665,1183.325000014224,-0.06858606559414668 +236666,1183.3300000142242,-0.06858067799359446 +236667,1183.3350000142243,-0.06857529494110787 +236668,1183.3400000142244,-0.06856991643401651 +236669,1183.3450000142245,-0.06856454246963842 +236670,1183.3500000142246,-0.06855917304528011 +236671,1183.3550000142247,-0.06855380815823676 +236672,1183.3600000142249,-0.06854844780579214 +236673,1183.365000014225,-0.06854309198521878 +236674,1183.370000014225,-0.06853774069377805 +236675,1183.3750000142252,-0.06853239392872022 +236676,1183.3800000142253,-0.06852705168728457 +236677,1183.3850000142254,-0.06852171396669941 +236678,1183.3900000142255,-0.06851638076418223 +236679,1183.3950000142256,-0.06851105207693974 +236680,1183.4000000142257,-0.06850572790216794 +236681,1183.4050000142258,-0.06850040823705221 +236682,1183.410000014226,-0.06849509307876743 +236683,1183.415000014226,-0.06848978242447795 +236684,1183.4200000142262,-0.0684844762713378 +236685,1183.4250000142263,-0.06847917461649065 +236686,1183.4300000142264,-0.06847387745706997 +236687,1183.4350000142265,-0.06846858479019903 +236688,1183.4400000142266,-0.06846329661299107 +236689,1183.4450000142267,-0.06845801292254929 +236690,1183.4500000142268,-0.06845273371596694 +236691,1183.455000014227,-0.06844745899032748 +236692,1183.460000014227,-0.0684421887427045 +236693,1183.4650000142271,-0.06843692297016192 +236694,1183.4700000142273,-0.06843166166975402 +236695,1183.4750000142274,-0.06842640483852552 +236696,1183.4800000142275,-0.06842115247351166 +236697,1183.4850000142276,-0.0684159045717382 +236698,1183.4900000142277,-0.0684106611302216 +236699,1183.4950000142278,-0.06840542214596904 +236700,1183.500000014228,-0.06840018761597848 +236701,1183.505000014228,-0.06839495753723876 +236702,1183.5100000142281,-0.06838973190672962 +236703,1183.5150000142282,-0.06838451072142185 +236704,1183.5200000142283,-0.06837929397827726 +236705,1183.5250000142285,-0.06837408167424885 +236706,1183.5300000142286,-0.06836887380628083 +236707,1183.5350000142287,-0.06836367037130868 +236708,1183.5400000142288,-0.0683584713662592 +236709,1183.545000014229,-0.06835327678805066 +236710,1183.550000014229,-0.06834808663359278 +236711,1183.555000014229,-0.06834290089978683 +236712,1183.5600000142292,-0.06833771958352573 +236713,1183.5650000142293,-0.06833254268169407 +236714,1183.5700000142294,-0.06832737019116818 +236715,1183.5750000142295,-0.06832220210881622 +236716,1183.5800000142297,-0.06831703843149825 +236717,1183.5850000142298,-0.06831187915606625 +236718,1183.5900000142299,-0.06830672427936424 +236719,1183.59500001423,-0.0683015737982283 +236720,1183.60000001423,-0.06829642770948666 +236721,1183.6050000142302,-0.06829128600995976 +236722,1183.6100000142303,-0.06828614869646032 +236723,1183.6150000142304,-0.0682810157657934 +236724,1183.6200000142305,-0.06827588721475643 +236725,1183.6250000142306,-0.06827076304013932 +236726,1183.6300000142307,-0.06826564323872451 +236727,1183.6350000142309,-0.068260527807287 +236728,1183.640000014231,-0.0682554167425945 +236729,1183.645000014231,-0.06825031004140734 +236730,1183.6500000142312,-0.0682452077004787 +236731,1183.6550000142313,-0.06824010971655456 +236732,1183.6600000142314,-0.06823501608637378 +236733,1183.6650000142315,-0.06822992680666819 +236734,1183.6700000142316,-0.06822484187416264 +236735,1183.6750000142317,-0.06821976128557504 +236736,1183.6800000142318,-0.06821468503761643 +236737,1183.685000014232,-0.06820961312699107 +236738,1183.690000014232,-0.06820454555039644 +236739,1183.6950000142322,-0.06819948230452336 +236740,1183.7000000142323,-0.06819442338605597 +236741,1183.7050000142324,-0.06818936879167188 +236742,1183.7100000142325,-0.06818431851804217 +236743,1183.7150000142326,-0.06817927256183148 +236744,1183.7200000142327,-0.068174230919698 +236745,1183.7250000142328,-0.06816919358829364 +236746,1183.730000014233,-0.06816416056426396 +236747,1183.735000014233,-0.06815913184424832 +236748,1183.7400000142331,-0.06815410742487993 +236749,1183.7450000142333,-0.06814908730278584 +236750,1183.7500000142334,-0.06814407147458702 +236751,1183.7550000142335,-0.0681390599368985 +236752,1183.7600000142336,-0.06813405268632933 +236753,1183.7650000142337,-0.06812904971948261 +236754,1183.7700000142338,-0.06812405103295567 +236755,1183.775000014234,-0.06811905662333997 +236756,1183.780000014234,-0.06811406648722132 +236757,1183.7850000142341,-0.0681090806211798 +236758,1183.7900000142342,-0.06810409902178985 +236759,1183.7950000142343,-0.06809912168562036 +236760,1183.8000000142345,-0.0680941486092347 +236761,1183.8050000142346,-0.06808917978919073 +236762,1183.8100000142347,-0.06808421522204093 +236763,1183.8150000142348,-0.0680792549043324 +236764,1183.820000014235,-0.06807429883260695 +236765,1183.825000014235,-0.06806934700340106 +236766,1183.830000014235,-0.06806439941324606 +236767,1183.8350000142352,-0.0680594560586681 +236768,1183.8400000142353,-0.06805451693618823 +236769,1183.8450000142354,-0.06804958204232243 +236770,1183.8500000142355,-0.06804465137358165 +236771,1183.8550000142357,-0.0680397249264719 +236772,1183.8600000142358,-0.06803480269749429 +236773,1183.8650000142359,-0.06802988468314505 +236774,1183.870000014236,-0.06802497087991563 +236775,1183.875000014236,-0.06802006128429268 +236776,1183.8800000142362,-0.06801515589275817 +236777,1183.8850000142363,-0.06801025470178935 +236778,1183.8900000142364,-0.06800535770785893 +236779,1183.8950000142365,-0.06800046490743497 +236780,1183.9000000142366,-0.06799557629698108 +236781,1183.9050000142367,-0.06799069187295637 +236782,1183.9100000142369,-0.0679858116318155 +236783,1183.915000014237,-0.06798093557000877 +236784,1183.920000014237,-0.06797606368398217 +236785,1183.9250000142372,-0.06797119597017735 +236786,1183.9300000142373,-0.06796633242503178 +236787,1183.9350000142374,-0.0679614730449787 +236788,1183.9400000142375,-0.06795661782644719 +236789,1183.9450000142376,-0.06795176676586226 +236790,1183.9500000142377,-0.06794691985964486 +236791,1183.9550000142378,-0.06794207710421192 +236792,1183.960000014238,-0.06793723849597637 +236793,1183.965000014238,-0.06793240403134729 +236794,1183.9700000142382,-0.0679275737067298 +236795,1183.9750000142383,-0.06792274751852526 +236796,1183.9800000142384,-0.06791792546313119 +236797,1183.9850000142385,-0.06791310753694138 +236798,1183.9900000142386,-0.06790829373634592 +236799,1183.9950000142387,-0.06790348405773126 +236800,1184.0000000142388,-0.06789867849748019 +236801,1184.005000014239,-0.06789387705197196 +236802,1184.010000014239,-0.06788907971758228 +236803,1184.0150000142391,-0.06788428649068337 +236804,1184.0200000142393,-0.067879497367644 +236805,1184.0250000142394,-0.06787471234482953 +236806,1184.0300000142395,-0.06786993141860201 +236807,1184.0350000142396,-0.0678651545853201 +236808,1184.0400000142397,-0.0678603818413392 +236809,1184.0450000142398,-0.06785561318301152 +236810,1184.05000001424,-0.067850848606686 +236811,1184.05500001424,-0.06784608810870847 +236812,1184.0600000142401,-0.06784133168542164 +236813,1184.0650000142402,-0.0678365793331651 +236814,1184.0700000142403,-0.06783183104827549 +236815,1184.0750000142405,-0.06782708682708638 +236816,1184.0800000142406,-0.06782234666592839 +236817,1184.0850000142407,-0.06781761056112927 +236818,1184.0900000142408,-0.06781287850901385 +236819,1184.095000014241,-0.06780815050590416 +236820,1184.100000014241,-0.0678034265481194 +236821,1184.105000014241,-0.06779870663197597 +236822,1184.1100000142412,-0.06779399075378764 +236823,1184.1150000142413,-0.06778927890986543 +236824,1184.1200000142414,-0.06778457109651774 +236825,1184.1250000142416,-0.06777986731005035 +236826,1184.1300000142417,-0.06777516754676648 +236827,1184.1350000142418,-0.06777047180296679 +236828,1184.1400000142419,-0.06776578007494946 +236829,1184.145000014242,-0.06776109235901025 +236830,1184.150000014242,-0.06775640865144243 +236831,1184.1550000142422,-0.06775172894853693 +236832,1184.1600000142423,-0.06774705324658231 +236833,1184.1650000142424,-0.06774238154186484 +236834,1184.1700000142425,-0.06773771383066847 +236835,1184.1750000142426,-0.06773305010927495 +236836,1184.1800000142428,-0.06772839037396383 +236837,1184.1850000142429,-0.06772373462101246 +236838,1184.190000014243,-0.06771908284669606 +236839,1184.195000014243,-0.06771443504728775 +236840,1184.2000000142432,-0.06770979121905862 +236841,1184.2050000142433,-0.06770515135827769 +236842,1184.2100000142434,-0.067700515461212 +236843,1184.2150000142435,-0.06769588352412664 +236844,1184.2200000142436,-0.06769125554328476 +236845,1184.2250000142437,-0.0676866315149476 +236846,1184.2300000142438,-0.06768201143537457 +236847,1184.235000014244,-0.06767739530082326 +236848,1184.240000014244,-0.06767278310754946 +236849,1184.2450000142442,-0.06766817485180716 +236850,1184.2500000142443,-0.06766357052984873 +236851,1184.2550000142444,-0.06765897013792473 +236852,1184.2600000142445,-0.06765437367228412 +236853,1184.2650000142446,-0.06764978112917425 +236854,1184.2700000142447,-0.06764519250484083 +236855,1184.2750000142448,-0.06764060779552802 +236856,1184.280000014245,-0.06763602699747849 +236857,1184.285000014245,-0.06763145010693337 +236858,1184.2900000142452,-0.06762687712013234 +236859,1184.2950000142453,-0.06762230803331364 +236860,1184.3000000142454,-0.0676177428427141 +236861,1184.3050000142455,-0.0676131815445692 +236862,1184.3100000142456,-0.06760862413511308 +236863,1184.3150000142457,-0.06760407061057853 +236864,1184.3200000142458,-0.06759952096719711 +236865,1184.325000014246,-0.06759497520119909 +236866,1184.330000014246,-0.06759043330881356 +236867,1184.3350000142461,-0.06758589528626839 +236868,1184.3400000142462,-0.06758136112979032 +236869,1184.3450000142464,-0.06757683083560494 +236870,1184.3500000142465,-0.06757230439993675 +236871,1184.3550000142466,-0.06756778181900919 +236872,1184.3600000142467,-0.06756326308904463 +236873,1184.3650000142468,-0.06755874820626447 +236874,1184.370000014247,-0.06755423716688912 +236875,1184.375000014247,-0.067549729967138 +236876,1184.3800000142471,-0.06754522660322965 +236877,1184.3850000142472,-0.06754072707138171 +236878,1184.3900000142473,-0.06753623136781094 +236879,1184.3950000142474,-0.06753173948873327 +236880,1184.4000000142476,-0.06752725143036381 +236881,1184.4050000142477,-0.06752276718891691 +236882,1184.4100000142478,-0.06751828676060613 +236883,1184.4150000142479,-0.06751381014164436 +236884,1184.420000014248,-0.06750933732824374 +236885,1184.425000014248,-0.06750486831661577 +236886,1184.4300000142482,-0.0675004031029713 +236887,1184.4350000142483,-0.06749594168352051 +236888,1184.4400000142484,-0.0674914840544731 +236889,1184.4450000142485,-0.0674870302120381 +236890,1184.4500000142486,-0.06748258015242406 +236891,1184.4550000142488,-0.06747813387183904 +236892,1184.4600000142489,-0.06747369136649055 +236893,1184.465000014249,-0.06746925263258569 +236894,1184.470000014249,-0.0674648176663311 +236895,1184.4750000142492,-0.06746038646393307 +236896,1184.4800000142493,-0.06745595902159744 +236897,1184.4850000142494,-0.06745153533552972 +236898,1184.4900000142495,-0.06744711540193514 +236899,1184.4950000142496,-0.06744269921701856 +236900,1184.5000000142497,-0.0674382867769846 +236901,1184.5050000142498,-0.06743387807803759 +236902,1184.51000001425,-0.0674294731163817 +236903,1184.51500001425,-0.06742507188822083 +236904,1184.5200000142502,-0.06742067438975871 +236905,1184.5250000142503,-0.06741628061719898 +236906,1184.5300000142504,-0.06741189056674506 +236907,1184.5350000142505,-0.06740750423460033 +236908,1184.5400000142506,-0.06740312161696806 +236909,1184.5450000142507,-0.06739874271005146 +236910,1184.5500000142508,-0.06739436751005375 +236911,1184.555000014251,-0.06738999601317806 +236912,1184.560000014251,-0.06738562821562762 +236913,1184.5650000142512,-0.06738126411360564 +236914,1184.5700000142513,-0.0673769037033154 +236915,1184.5750000142514,-0.06737254698096026 +236916,1184.5800000142515,-0.06736819394274375 +236917,1184.5850000142516,-0.06736384458486942 +236918,1184.5900000142517,-0.06735949890354107 +236919,1184.5950000142518,-0.0673551568949626 +236920,1184.600000014252,-0.06735081855533817 +236921,1184.605000014252,-0.0673464838808721 +236922,1184.6100000142521,-0.06734215286776901 +236923,1184.6150000142522,-0.06733782551223376 +236924,1184.6200000142524,-0.06733350181047147 +236925,1184.6250000142525,-0.06732918175868761 +236926,1184.6300000142526,-0.06732486535308796 +236927,1184.6350000142527,-0.06732055258987865 +236928,1184.6400000142528,-0.06731624346526617 +236929,1184.645000014253,-0.06731193797545744 +236930,1184.650000014253,-0.06730763611665977 +236931,1184.6550000142531,-0.06730333788508089 +236932,1184.6600000142532,-0.06729904327692904 +236933,1184.6650000142533,-0.06729475228841289 +236934,1184.6700000142534,-0.06729046491574164 +236935,1184.6750000142536,-0.06728618115512498 +236936,1184.6800000142537,-0.06728190100277316 +236937,1184.6850000142538,-0.06727762445489698 +236938,1184.6900000142539,-0.06727335150770784 +236939,1184.695000014254,-0.06726908215741774 +236940,1184.700000014254,-0.06726481640023928 +236941,1184.7050000142542,-0.0672605542323857 +236942,1184.7100000142543,-0.0672562956500709 +236943,1184.7150000142544,-0.0672520406495095 +236944,1184.7200000142545,-0.06724778922691678 +236945,1184.7250000142546,-0.06724354137850876 +236946,1184.7300000142548,-0.06723929710050217 +236947,1184.7350000142549,-0.06723505638911455 +236948,1184.740000014255,-0.06723081924056416 +236949,1184.745000014255,-0.06722658565107008 +236950,1184.7500000142552,-0.06722235561685223 +236951,1184.7550000142553,-0.06721812913413132 +236952,1184.7600000142554,-0.06721390619912894 +236953,1184.7650000142555,-0.06720968680806756 +236954,1184.7700000142556,-0.06720547095717051 +236955,1184.7750000142557,-0.06720125864266202 +236956,1184.7800000142558,-0.06719704986076731 +236957,1184.785000014256,-0.06719284460771248 +236958,1184.790000014256,-0.06718864287972459 +236959,1184.7950000142562,-0.06718444467303177 +236960,1184.8000000142563,-0.067180249983863 +236961,1184.8050000142564,-0.06717605880844843 +236962,1184.8100000142565,-0.06717187114301913 +236963,1184.8150000142566,-0.06716768698380728 +236964,1184.8200000142567,-0.06716350632704608 +236965,1184.8250000142568,-0.06715932916896988 +236966,1184.830000014257,-0.06715515550581407 +236967,1184.835000014257,-0.06715098533381521 +236968,1184.8400000142572,-0.06714681864921095 +236969,1184.8450000142573,-0.06714265544824012 +236970,1184.8500000142574,-0.06713849572714273 +236971,1184.8550000142575,-0.06713433948215995 +236972,1184.8600000142576,-0.06713018670953416 +236973,1184.8650000142577,-0.06712603740550899 +236974,1184.8700000142578,-0.06712189156632924 +236975,1184.875000014258,-0.06711774918824104 +236976,1184.880000014258,-0.06711361026749174 +236977,1184.8850000142581,-0.06710947480032999 +236978,1184.8900000142582,-0.0671053427830057 +236979,1184.8950000142584,-0.06710121421177018 +236980,1184.9000000142585,-0.06709708908287598 +236981,1184.9050000142586,-0.06709296739257709 +236982,1184.9100000142587,-0.06708884913712876 +236983,1184.9150000142588,-0.0670847343127877 +236984,1184.920000014259,-0.06708062291581199 +236985,1184.925000014259,-0.0670765149424611 +236986,1184.9300000142591,-0.06707241038899596 +236987,1184.9350000142592,-0.06706830925167889 +236988,1184.9400000142593,-0.06706421152677372 +236989,1184.9450000142594,-0.0670601172105457 +236990,1184.9500000142596,-0.0670560262992616 +236991,1184.9550000142597,-0.06705193878918966 +236992,1184.9600000142598,-0.06704785467659967 +236993,1184.9650000142599,-0.06704377395776291 +236994,1184.97000001426,-0.06703969662895222 +236995,1184.97500001426,-0.06703562268644198 +236996,1184.9800000142602,-0.06703155212650816 +236997,1184.9850000142603,-0.06702748494542833 +236998,1184.9900000142604,-0.06702342113948162 +236999,1184.9950000142605,-0.06701936070494878 +237000,1185.0000000142606,-0.06701530363811221 +237001,1185.0050000142608,-0.06701124993525596 +237002,1185.0100000142609,-0.06700719959266568 +237003,1185.015000014261,-0.06700315260662873 +237004,1185.020000014261,-0.06699910897343415 +237005,1185.0250000142612,-0.06699506868937266 +237006,1185.0300000142613,-0.06699103175073669 +237007,1185.0350000142614,-0.06698699815382039 +237008,1185.0400000142615,-0.06698296789491967 +237009,1185.0450000142616,-0.06697894097033216 +237010,1185.0500000142617,-0.06697491737635726 +237011,1185.0550000142619,-0.06697089710929613 +237012,1185.060000014262,-0.06696688016545174 +237013,1185.065000014262,-0.06696286654112885 +237014,1185.0700000142622,-0.06695885623263402 +237015,1185.0750000142623,-0.06695484923627566 +237016,1185.0800000142624,-0.06695084554836399 +237017,1185.0850000142625,-0.06694684516521109 +237018,1185.0900000142626,-0.06694284808313092 +237019,1185.0950000142627,-0.06693885429843927 +237020,1185.1000000142628,-0.06693486380745385 +237021,1185.105000014263,-0.06693087660649427 +237022,1185.110000014263,-0.06692689269188204 +237023,1185.1150000142632,-0.06692291205994057 +237024,1185.1200000142633,-0.06691893470699528 +237025,1185.1250000142634,-0.06691496062937342 +237026,1185.1300000142635,-0.06691098982340431 +237027,1185.1350000142636,-0.06690702228541917 +237028,1185.1400000142637,-0.06690305801175123 +237029,1185.1450000142638,-0.06689909699873568 +237030,1185.150000014264,-0.06689513924270978 +237031,1185.155000014264,-0.06689118474001272 +237032,1185.1600000142641,-0.06688723348698576 +237033,1185.1650000142643,-0.06688328547997223 +237034,1185.1700000142644,-0.06687934071531744 +237035,1185.1750000142645,-0.06687539918936881 +237036,1185.1800000142646,-0.0668714608984758 +237037,1185.1850000142647,-0.06686752583898997 +237038,1185.1900000142648,-0.06686359400726498 +237039,1185.195000014265,-0.06685966539965657 +237040,1185.200000014265,-0.06685574001252259 +237041,1185.2050000142651,-0.06685181784222305 +237042,1185.2100000142652,-0.06684789888512005 +237043,1185.2150000142653,-0.06684398313757786 +237044,1185.2200000142655,-0.06684007059596292 +237045,1185.2250000142656,-0.0668361612566438 +237046,1185.2300000142657,-0.06683225511599125 +237047,1185.2350000142658,-0.06682835217037822 +237048,1185.240000014266,-0.06682445241617989 +237049,1185.245000014266,-0.06682055584977357 +237050,1185.250000014266,-0.06681666246753884 +237051,1185.2550000142662,-0.06681277226585748 +237052,1185.2600000142663,-0.06680888524111353 +237053,1185.2650000142664,-0.06680500138969327 +237054,1185.2700000142665,-0.06680112070798519 +237055,1185.2750000142667,-0.0667972431923801 +237056,1185.2800000142668,-0.06679336883927109 +237057,1185.2850000142669,-0.06678949764505346 +237058,1185.290000014267,-0.06678562960612487 +237059,1185.295000014267,-0.06678176471888528 +237060,1185.3000000142672,-0.06677790297973689 +237061,1185.3050000142673,-0.06677404438508433 +237062,1185.3100000142674,-0.06677018893133448 +237063,1185.3150000142675,-0.06676633661489657 +237064,1185.3200000142676,-0.0667624874321822 +237065,1185.3250000142677,-0.06675864137960531 +237066,1185.3300000142679,-0.06675479845358222 +237067,1185.335000014268,-0.06675095865053159 +237068,1185.340000014268,-0.0667471219668745 +237069,1185.3450000142682,-0.06674328839903443 +237070,1185.3500000142683,-0.0667394579434372 +237071,1185.3550000142684,-0.06673563059651111 +237072,1185.3600000142685,-0.0667318063546868 +237073,1185.3650000142686,-0.0667279852143974 +237074,1185.3700000142687,-0.06672416717207846 +237075,1185.3750000142688,-0.06672035222416797 +237076,1185.380000014269,-0.06671654036710634 +237077,1185.385000014269,-0.06671273159733646 +237078,1185.3900000142692,-0.0667089259113037 +237079,1185.3950000142693,-0.06670512330545589 +237080,1185.4000000142694,-0.06670132377624334 +237081,1185.4050000142695,-0.06669752732011887 +237082,1185.4100000142696,-0.06669373393353775 +237083,1185.4150000142697,-0.06668994361295782 +237084,1185.4200000142698,-0.06668615635483939 +237085,1185.42500001427,-0.06668237215564528 +237086,1185.43000001427,-0.0666785910118409 +237087,1185.4350000142701,-0.06667481291989412 +237088,1185.4400000142703,-0.06667103787627542 +237089,1185.4450000142704,-0.06666726587745779 +237090,1185.4500000142705,-0.0666634969199168 +237091,1185.4550000142706,-0.06665973100013056 +237092,1185.4600000142707,-0.0666559681145798 +237093,1185.4650000142708,-0.06665220825974777 +237094,1185.470000014271,-0.06664845143212035 +237095,1185.475000014271,-0.066644697628186 +237096,1185.4800000142711,-0.0666409468444358 +237097,1185.4850000142712,-0.0666371990773634 +237098,1185.4900000142713,-0.0666334543234651 +237099,1185.4950000142715,-0.0666297125792398 +237100,1185.5000000142716,-0.06662597384118907 +237101,1185.5050000142717,-0.06662223810581705 +237102,1185.5100000142718,-0.06661850536963057 +237103,1185.515000014272,-0.0666147756291391 +237104,1185.520000014272,-0.06661104888085477 +237105,1185.525000014272,-0.06660732512129235 +237106,1185.5300000142722,-0.06660360434696931 +237107,1185.5350000142723,-0.06659988655440577 +237108,1185.5400000142724,-0.06659617174012455 +237109,1185.5450000142725,-0.06659245990065114 +237110,1185.5500000142727,-0.06658875103251373 +237111,1185.5550000142728,-0.06658504513224323 +237112,1185.5600000142729,-0.06658134219637322 +237113,1185.565000014273,-0.06657764222144004 +237114,1185.570000014273,-0.06657394520398272 +237115,1185.5750000142732,-0.06657025114054299 +237116,1185.5800000142733,-0.06656656002766537 +237117,1185.5850000142734,-0.06656287186189705 +237118,1185.5900000142735,-0.06655918663978802 +237119,1185.5950000142736,-0.06655550435789101 +237120,1185.6000000142737,-0.06655182501276145 +237121,1185.6050000142739,-0.0665481486009576 +237122,1185.610000014274,-0.06654447511904046 +237123,1185.615000014274,-0.06654080456357378 +237124,1185.6200000142742,-0.06653713693112409 +237125,1185.6250000142743,-0.06653347221826074 +237126,1185.6300000142744,-0.06652981042155584 +237127,1185.6350000142745,-0.06652615153758429 +237128,1185.6400000142746,-0.06652249556292378 +237129,1185.6450000142747,-0.06651884249415484 +237130,1185.6500000142748,-0.06651519232786078 +237131,1185.655000014275,-0.06651154506062773 +237132,1185.660000014275,-0.06650790068904464 +237133,1185.6650000142752,-0.06650425920970328 +237134,1185.6700000142753,-0.06650062061919826 +237135,1185.6750000142754,-0.06649698491412703 +237136,1185.6800000142755,-0.06649335209108985 +237137,1185.6850000142756,-0.06648972214668984 +237138,1185.6900000142757,-0.066486095077533 +237139,1185.6950000142758,-0.06648247088022816 +237140,1185.700000014276,-0.06647884955138696 +237141,1185.705000014276,-0.066475231087624 +237142,1185.7100000142761,-0.06647161548555668 +237143,1185.7150000142763,-0.06646800274180528 +237144,1185.7200000142764,-0.06646439285299299 +237145,1185.7250000142765,-0.06646078581574587 +237146,1185.7300000142766,-0.06645718162669283 +237147,1185.7350000142767,-0.06645358028246574 +237148,1185.7400000142768,-0.0664499817796993 +237149,1185.745000014277,-0.06644638611503115 +237150,1185.750000014277,-0.06644279328510182 +237151,1185.7550000142771,-0.06643920328655474 +237152,1185.7600000142772,-0.0664356161160363 +237153,1185.7650000142773,-0.06643203177019576 +237154,1185.7700000142775,-0.06642845024568529 +237155,1185.7750000142776,-0.06642487153916003 +237156,1185.7800000142777,-0.06642129564727806 +237157,1185.7850000142778,-0.06641772256670034 +237158,1185.790000014278,-0.06641415229409078 +237159,1185.795000014278,-0.06641058482611628 +237160,1185.800000014278,-0.06640702015944663 +237161,1185.8050000142782,-0.0664034582907546 +237162,1185.8100000142783,-0.06639989921671591 +237163,1185.8150000142784,-0.06639634293400923 +237164,1185.8200000142785,-0.0663927894393162 +237165,1185.8250000142787,-0.06638923872932144 +237166,1185.8300000142788,-0.06638569080071248 +237167,1185.8350000142789,-0.06638214565017991 +237168,1185.840000014279,-0.06637860327441723 +237169,1185.845000014279,-0.06637506367012094 +237170,1185.8500000142792,-0.06637152683399053 +237171,1185.8550000142793,-0.06636799276272846 +237172,1185.8600000142794,-0.0663644614530402 +237173,1185.8650000142795,-0.06636093290163422 +237174,1185.8700000142796,-0.06635740710522196 +237175,1185.8750000142797,-0.06635388406051788 +237176,1185.8800000142799,-0.06635036376423945 +237177,1185.88500001428,-0.0663468462131071 +237178,1185.89000001428,-0.06634333140384434 +237179,1185.8950000142802,-0.06633981933317765 +237180,1185.9000000142803,-0.06633630999783653 +237181,1185.9050000142804,-0.06633280339455352 +237182,1185.9100000142805,-0.06632929952006417 +237183,1185.9150000142806,-0.06632579837110705 +237184,1185.9200000142807,-0.06632229994442379 +237185,1185.9250000142808,-0.06631880423675901 +237186,1185.930000014281,-0.06631531124486038 +237187,1185.935000014281,-0.06631182096547864 +237188,1185.9400000142812,-0.0663083333953675 +237189,1185.9450000142813,-0.0663048485312838 +237190,1185.9500000142814,-0.06630136636998736 +237191,1185.9550000142815,-0.0662978869082411 +237192,1185.9600000142816,-0.06629441014281094 +237193,1185.9650000142817,-0.0662909360704659 +237194,1185.9700000142818,-0.06628746468797804 +237195,1185.975000014282,-0.06628399599212248 +237196,1185.980000014282,-0.06628052997967741 +237197,1185.9850000142822,-0.06627706664742407 +237198,1185.9900000142823,-0.06627360599214677 +237199,1185.9950000142824,-0.06627014801063291 +237200,1186.0000000142825,-0.06626669269967295 +237201,1186.0050000142826,-0.06626324005606042 +237202,1186.0100000142827,-0.06625979007659195 +237203,1186.0150000142828,-0.06625634275806723 +237204,1186.020000014283,-0.06625289809728903 +237205,1186.025000014283,-0.06624945609106324 +237206,1186.0300000142831,-0.06624601673619879 +237207,1186.0350000142832,-0.06624258002950771 +237208,1186.0400000142834,-0.06623914596780514 +237209,1186.0450000142835,-0.06623571454790933 +237210,1186.0500000142836,-0.06623228576664159 +237211,1186.0550000142837,-0.06622885962082631 +237212,1186.0600000142838,-0.06622543610729106 +237213,1186.065000014284,-0.06622201522286643 +237214,1186.070000014284,-0.06621859696438617 +237215,1186.0750000142841,-0.06621518132868712 +237216,1186.0800000142842,-0.06621176831260918 +237217,1186.0850000142843,-0.06620835791299545 +237218,1186.0900000142844,-0.06620495012669209 +237219,1186.0950000142846,-0.06620154495054835 +237220,1186.1000000142847,-0.06619814238141666 +237221,1186.1050000142848,-0.06619474241615253 +237222,1186.1100000142849,-0.06619134505161457 +237223,1186.115000014285,-0.06618795028466457 +237224,1186.120000014285,-0.06618455811216738 +237225,1186.1250000142852,-0.06618116853099101 +237226,1186.1300000142853,-0.06617778153800662 +237227,1186.1350000142854,-0.06617439713008842 +237228,1186.1400000142855,-0.06617101530411382 +237229,1186.1450000142856,-0.06616763605696335 +237230,1186.1500000142858,-0.06616425938552065 +237231,1186.1550000142859,-0.06616088528667251 +237232,1186.160000014286,-0.06615751375730887 +237233,1186.165000014286,-0.06615414479432274 +237234,1186.1700000142862,-0.06615077839461038 +237235,1186.1750000142863,-0.0661474145550711 +237236,1186.1800000142864,-0.06614405327260738 +237237,1186.1850000142865,-0.06614069454412484 +237238,1186.1900000142866,-0.06613733836653227 +237239,1186.1950000142867,-0.06613398473674156 +237240,1186.2000000142868,-0.0661306336516678 +237241,1186.205000014287,-0.06612728510822917 +237242,1186.210000014287,-0.06612393910334706 +237243,1186.2150000142872,-0.06612059563394596 +237244,1186.2200000142873,-0.06611725469695352 +237245,1186.2250000142874,-0.06611391628930058 +237246,1186.2300000142875,-0.06611058040792109 +237247,1186.2350000142876,-0.0661072470497522 +237248,1186.2400000142877,-0.06610391621173416 +237249,1186.2450000142878,-0.06610058789081043 +237250,1186.250000014288,-0.0660972620839276 +237251,1186.255000014288,-0.06609393878803543 +237252,1186.2600000142882,-0.06609061800008682 +237253,1186.2650000142883,-0.06608729971703786 +237254,1186.2700000142884,-0.0660839839358478 +237255,1186.2750000142885,-0.06608067065347902 +237256,1186.2800000142886,-0.0660773598668971 +237257,1186.2850000142887,-0.06607405157307078 +237258,1186.2900000142888,-0.06607074576897193 +237259,1186.295000014289,-0.06606744245157564 +237260,1186.300000014289,-0.06606414161786014 +237261,1186.3050000142891,-0.06606084326480682 +237262,1186.3100000142892,-0.06605754738940024 +237263,1186.3150000142894,-0.06605425398862816 +237264,1186.3200000142895,-0.06605096305948148 +237265,1186.3250000142896,-0.06604767459895426 +237266,1186.3300000142897,-0.06604438860404375 +237267,1186.3350000142898,-0.06604110507175041 +237268,1186.34000001429,-0.0660378239990778 +237269,1186.34500001429,-0.06603454538303269 +237270,1186.3500000142901,-0.06603126922062504 +237271,1186.3550000142902,-0.06602799550886793 +237272,1186.3600000142903,-0.06602472424477769 +237273,1186.3650000142904,-0.06602145542537376 +237274,1186.3700000142906,-0.0660181890476788 +237275,1186.3750000142907,-0.06601492510871859 +237276,1186.3800000142908,-0.06601166360552216 +237277,1186.3850000142909,-0.06600840453512168 +237278,1186.390000014291,-0.06600514789455246 +237279,1186.395000014291,-0.06600189368085307 +237280,1186.4000000142912,-0.06599864189106519 +237281,1186.4050000142913,-0.0659953925222337 +237282,1186.4100000142914,-0.06599214557140667 +237283,1186.4150000142915,-0.06598890103563533 +237284,1186.4200000142916,-0.06598565891197408 +237285,1186.4250000142918,-0.06598241919748056 +237286,1186.4300000142919,-0.0659791818892155 +237287,1186.435000014292,-0.06597594698424289 +237288,1186.440000014292,-0.06597271447962982 +237289,1186.4450000142922,-0.06596948437244668 +237290,1186.4500000142923,-0.06596625665976688 +237291,1186.4550000142924,-0.06596303133866716 +237292,1186.4600000142925,-0.06595980840622732 +237293,1186.4650000142926,-0.06595658785953044 +237294,1186.4700000142927,-0.06595336969566272 +237295,1186.4750000142928,-0.06595015391171355 +237296,1186.480000014293,-0.06594694050477548 +237297,1186.485000014293,-0.06594372947194431 +237298,1186.4900000142932,-0.06594052081031894 +237299,1186.4950000142933,-0.06593731451700151 +237300,1186.5000000142934,-0.06593411058909732 +237301,1186.5050000142935,-0.06593090902371482 +237302,1186.5100000142936,-0.06592770981796567 +237303,1186.5150000142937,-0.0659245129689647 +237304,1186.5200000142938,-0.06592131847382994 +237305,1186.525000014294,-0.06591812632968258 +237306,1186.530000014294,-0.06591493653364698 +237307,1186.5350000142942,-0.06591174908285069 +237308,1186.5400000142943,-0.06590856397442443 +237309,1186.5450000142944,-0.06590538120550214 +237310,1186.5500000142945,-0.06590220077322087 +237311,1186.5550000142946,-0.06589902267472089 +237312,1186.5600000142947,-0.06589584690714567 +237313,1186.5650000142948,-0.06589267346764179 +237314,1186.570000014295,-0.06588950235335905 +237315,1186.575000014295,-0.06588633356145043 +237316,1186.5800000142951,-0.06588316708907206 +237317,1186.5850000142952,-0.06588000293338328 +237318,1186.5900000142954,-0.06587684109154658 +237319,1186.5950000142955,-0.06587368156072762 +237320,1186.6000000142956,-0.06587052433809525 +237321,1186.6050000142957,-0.06586736942082151 +237322,1186.6100000142958,-0.06586421680608157 +237323,1186.615000014296,-0.06586106649105378 +237324,1186.620000014296,-0.0658579184729197 +237325,1186.6250000142961,-0.06585477274886405 +237326,1186.6300000142962,-0.06585162931607469 +237327,1186.6350000142963,-0.06584848817174267 +237328,1186.6400000142964,-0.06584534931306221 +237329,1186.6450000142966,-0.06584221273723073 +237330,1186.6500000142967,-0.06583907844144873 +237331,1186.6550000142968,-0.06583594642291998 +237332,1186.6600000142969,-0.0658328166788514 +237333,1186.665000014297,-0.06582968920645298 +237334,1186.670000014297,-0.06582656400293799 +237335,1186.6750000142972,-0.06582344106552282 +237336,1186.6800000142973,-0.065820320391427 +237337,1186.6850000142974,-0.0658172019778733 +237338,1186.6900000142975,-0.06581408582208756 +237339,1186.6950000142976,-0.06581097192129885 +237340,1186.7000000142978,-0.06580786027273938 +237341,1186.7050000142979,-0.06580475087364451 +237342,1186.710000014298,-0.06580164372125277 +237343,1186.715000014298,-0.06579853881280585 +237344,1186.7200000142982,-0.06579543614554861 +237345,1186.7250000142983,-0.06579233571672903 +237346,1186.7300000142984,-0.06578923752359829 +237347,1186.7350000142985,-0.0657861415634107 +237348,1186.7400000142986,-0.06578304783342373 +237349,1186.7450000142987,-0.065779956330898 +237350,1186.7500000142988,-0.06577686705309732 +237351,1186.755000014299,-0.06577377999728859 +237352,1186.760000014299,-0.06577069516074191 +237353,1186.7650000142992,-0.06576761254073049 +237354,1186.7700000142993,-0.06576453213453075 +237355,1186.7750000142994,-0.0657614539394222 +237356,1186.7800000142995,-0.0657583779526875 +237357,1186.7850000142996,-0.06575530417161253 +237358,1186.7900000142997,-0.06575223259348618 +237359,1186.7950000142998,-0.06574916321560063 +237360,1186.8000000143,-0.0657460960352511 +237361,1186.8050000143,-0.065743031049736 +237362,1186.8100000143002,-0.06573996825635688 +237363,1186.8150000143003,-0.0657369076524184 +237364,1186.8200000143004,-0.06573384923522839 +237365,1186.8250000143005,-0.0657307930020978 +237366,1186.8300000143006,-0.06572773895034072 +237367,1186.8350000143007,-0.0657246870772744 +237368,1186.8400000143008,-0.06572163738021916 +237369,1186.845000014301,-0.06571858985649855 +237370,1186.850000014301,-0.06571554450343914 +237371,1186.8550000143011,-0.0657125013183707 +237372,1186.8600000143012,-0.06570946029862615 +237373,1186.8650000143014,-0.06570642144154146 +237374,1186.8700000143015,-0.06570338474445579 +237375,1186.8750000143016,-0.06570035020471142 +237376,1186.8800000143017,-0.06569731781965371 +237377,1186.8850000143018,-0.06569428758663119 +237378,1186.890000014302,-0.06569125950299551 +237379,1186.895000014302,-0.0656882335661014 +237380,1186.9000000143021,-0.06568520977330676 +237381,1186.9050000143022,-0.06568218812197255 +237382,1186.9100000143023,-0.06567916860946289 +237383,1186.9150000143024,-0.06567615123314502 +237384,1186.9200000143026,-0.06567313599038926 +237385,1186.9250000143027,-0.06567012287856909 +237386,1186.9300000143028,-0.06566711189506104 +237387,1186.935000014303,-0.06566410303724479 +237388,1186.940000014303,-0.06566109630250311 +237389,1186.945000014303,-0.0656580916882219 +237390,1186.9500000143032,-0.06565508919179014 +237391,1186.9550000143033,-0.06565208881059992 +237392,1186.9600000143034,-0.06564909054204646 +237393,1186.9650000143035,-0.06564609438352803 +237394,1186.9700000143037,-0.06564310033244604 +237395,1186.9750000143038,-0.06564010838620499 +237396,1186.9800000143039,-0.06563711854221246 +237397,1186.985000014304,-0.06563413079787914 +237398,1186.990000014304,-0.06563114515061881 +237399,1186.9950000143042,-0.06562816159784834 +237400,1187.0000000143043,-0.0656251801369877 +237401,1187.0050000143044,-0.06562220076545994 +237402,1187.0100000143045,-0.06561922348069119 +237403,1187.0150000143046,-0.06561624828011067 +237404,1187.0200000143047,-0.0656132751611507 +237405,1187.0250000143049,-0.06561030412124666 +237406,1187.030000014305,-0.06560733515783702 +237407,1187.035000014305,-0.06560436826836334 +237408,1187.0400000143052,-0.06560140345027025 +237409,1187.0450000143053,-0.06559844070100544 +237410,1187.0500000143054,-0.0655954800180197 +237411,1187.0550000143055,-0.06559252139876688 +237412,1187.0600000143056,-0.06558956484070388 +237413,1187.0650000143057,-0.06558661034129074 +237414,1187.0700000143058,-0.06558365789799046 +237415,1187.075000014306,-0.06558070750826922 +237416,1187.080000014306,-0.06557775916959617 +237417,1187.0850000143062,-0.06557481287944357 +237418,1187.0900000143063,-0.06557186863528673 +237419,1187.0950000143064,-0.06556892643460403 +237420,1187.1000000143065,-0.0655659862748769 +237421,1187.1050000143066,-0.06556304815358983 +237422,1187.1100000143067,-0.06556011206823036 +237423,1187.1150000143068,-0.06555717801628906 +237424,1187.120000014307,-0.06555424599525958 +237425,1187.125000014307,-0.06555131600263861 +237426,1187.1300000143071,-0.06554838803592591 +237427,1187.1350000143073,-0.06554546209262424 +237428,1187.1400000143074,-0.06554253817023942 +237429,1187.1450000143075,-0.06553961626628033 +237430,1187.1500000143076,-0.06553669637825886 +237431,1187.1550000143077,-0.06553377850368997 +237432,1187.1600000143078,-0.06553086264009161 +237433,1187.165000014308,-0.06552794878498483 +237434,1187.170000014308,-0.06552503693589365 +237435,1187.1750000143081,-0.06552212709034516 +237436,1187.1800000143082,-0.06551921924586947 +237437,1187.1850000143083,-0.06551631339999969 +237438,1187.1900000143085,-0.06551340955027199 +237439,1187.1950000143086,-0.06551050769422553 +237440,1187.2000000143087,-0.06550760782940254 +237441,1187.2050000143088,-0.06550470995334821 +237442,1187.210000014309,-0.0655018140636108 +237443,1187.215000014309,-0.06549892015774153 +237444,1187.220000014309,-0.06549602823329467 +237445,1187.2250000143092,-0.0654931382878275 +237446,1187.2300000143093,-0.06549025031890031 +237447,1187.2350000143094,-0.06548736432407638 +237448,1187.2400000143095,-0.06548448030092202 +237449,1187.2450000143097,-0.0654815982470065 +237450,1187.2500000143098,-0.06547871815990214 +237451,1187.2550000143099,-0.06547584003718425 +237452,1187.26000001431,-0.06547296387643109 +237453,1187.26500001431,-0.06547008967522401 +237454,1187.2700000143102,-0.06546721743114724 +237455,1187.2750000143103,-0.06546434714178809 +237456,1187.2800000143104,-0.0654614788047368 +237457,1187.2850000143105,-0.06545861241758663 +237458,1187.2900000143106,-0.06545574797793384 +237459,1187.2950000143107,-0.06545288548337763 +237460,1187.3000000143109,-0.0654500249315202 +237461,1187.305000014311,-0.06544716631996676 +237462,1187.310000014311,-0.06544430964632544 +237463,1187.3150000143112,-0.06544145490820738 +237464,1187.3200000143113,-0.06543860210322668 +237465,1187.3250000143114,-0.06543575122900042 +237466,1187.3300000143115,-0.06543290228314864 +237467,1187.3350000143116,-0.06543005526329437 +237468,1187.3400000143117,-0.06542721016706358 +237469,1187.3450000143118,-0.0654243669920852 +237470,1187.350000014312,-0.06542152573599112 +237471,1187.355000014312,-0.06541868639641622 +237472,1187.3600000143122,-0.06541584897099828 +237473,1187.3650000143123,-0.0654130134573781 +237474,1187.3700000143124,-0.06541017985319937 +237475,1187.3750000143125,-0.06540734815610877 +237476,1187.3800000143126,-0.06540451836375591 +237477,1187.3850000143127,-0.06540169047379335 +237478,1187.3900000143128,-0.06539886448387659 +237479,1187.395000014313,-0.06539604039166408 +237480,1187.400000014313,-0.06539321819481718 +237481,1187.4050000143131,-0.06539039789100023 +237482,1187.4100000143133,-0.06538757947788049 +237483,1187.4150000143134,-0.0653847629531281 +237484,1187.4200000143135,-0.06538194831441622 +237485,1187.4250000143136,-0.06537913555942086 +237486,1187.4300000143137,-0.06537632468582101 +237487,1187.4350000143138,-0.06537351569129853 +237488,1187.440000014314,-0.06537070857353824 +237489,1187.445000014314,-0.06536790333022788 +237490,1187.4500000143141,-0.06536509995905809 +237491,1187.4550000143142,-0.06536229845772241 +237492,1187.4600000143143,-0.06535949882391735 +237493,1187.4650000143145,-0.06535670105534228 +237494,1187.4700000143146,-0.06535390514969946 +237495,1187.4750000143147,-0.0653511111046941 +237496,1187.4800000143148,-0.06534831891803429 +237497,1187.485000014315,-0.06534552858743103 +237498,1187.490000014315,-0.06534274011059824 +237499,1187.495000014315,-0.06533995348525265 +237500,1187.5000000143152,-0.06533716870911399 +237501,1187.5050000143153,-0.06533438577990483 +237502,1187.5100000143154,-0.06533160469535064 +237503,1187.5150000143155,-0.06532882545317975 +237504,1187.5200000143157,-0.06532604805112341 +237505,1187.5250000143158,-0.06532327248691573 +237506,1187.5300000143159,-0.06532049875829371 +237507,1187.535000014316,-0.06531772686299724 +237508,1187.540000014316,-0.06531495679876904 +237509,1187.5450000143162,-0.06531218856335477 +237510,1187.5500000143163,-0.0653094221545029 +237511,1187.5550000143164,-0.06530665756996479 +237512,1187.5600000143165,-0.06530389480749467 +237513,1187.5650000143166,-0.06530113386484963 +237514,1187.5700000143167,-0.06529837473978964 +237515,1187.5750000143169,-0.06529561743007749 +237516,1187.580000014317,-0.06529286193347884 +237517,1187.585000014317,-0.06529010824776224 +237518,1187.5900000143172,-0.06528735637069903 +237519,1187.5950000143173,-0.06528460630006346 +237520,1187.6000000143174,-0.0652818580336326 +237521,1187.6050000143175,-0.06527911156918632 +237522,1187.6100000143176,-0.06527636690450743 +237523,1187.6150000143177,-0.06527362403738149 +237524,1187.6200000143178,-0.06527088296559692 +237525,1187.625000014318,-0.06526814368694503 +237526,1187.630000014318,-0.06526540619921989 +237527,1187.6350000143182,-0.06526267050021842 +237528,1187.6400000143183,-0.0652599365877404 +237529,1187.6450000143184,-0.0652572044595884 +237530,1187.6500000143185,-0.06525447411356783 +237531,1187.6550000143186,-0.0652517455474869 +237532,1187.6600000143187,-0.06524901875915667 +237533,1187.6650000143188,-0.06524629374639099 +237534,1187.670000014319,-0.06524357050700653 +237535,1187.675000014319,-0.0652408490388228 +237536,1187.6800000143191,-0.06523812933966203 +237537,1187.6850000143193,-0.06523541140734934 +237538,1187.6900000143194,-0.06523269523971267 +237539,1187.6950000143195,-0.06522998083458267 +237540,1187.7000000143196,-0.06522726818979287 +237541,1187.7050000143197,-0.06522455730317953 +237542,1187.7100000143198,-0.06522184817258174 +237543,1187.71500001432,-0.06521914079584142 +237544,1187.72000001432,-0.06521643517080318 +237545,1187.7250000143201,-0.0652137312953145 +237546,1187.7300000143202,-0.06521102916722564 +237547,1187.7350000143203,-0.06520832878438956 +237548,1187.7400000143205,-0.0652056301446621 +237549,1187.7450000143206,-0.0652029332459018 +237550,1187.7500000143207,-0.06520023808597003 +237551,1187.7550000143208,-0.0651975446627309 +237552,1187.760000014321,-0.06519485297405127 +237553,1187.765000014321,-0.06519216301780081 +237554,1187.770000014321,-0.06518947479185194 +237555,1187.7750000143212,-0.06518678829407981 +237556,1187.7800000143213,-0.06518410352236237 +237557,1187.7850000143214,-0.0651814204745803 +237558,1187.7900000143215,-0.06517873914861705 +237559,1187.7950000143217,-0.0651760595423588 +237560,1187.8000000143218,-0.0651733816536945 +237561,1187.8050000143219,-0.06517070548051583 +237562,1187.810000014322,-0.06516803102071723 +237563,1187.815000014322,-0.06516535827219587 +237564,1187.8200000143222,-0.06516268723285165 +237565,1187.8250000143223,-0.06516001790058722 +237566,1187.8300000143224,-0.06515735027330796 +237567,1187.8350000143225,-0.06515468434892197 +237568,1187.8400000143226,-0.06515202012534009 +237569,1187.8450000143227,-0.06514935760047588 +237570,1187.8500000143229,-0.06514669677224563 +237571,1187.855000014323,-0.06514403763856835 +237572,1187.860000014323,-0.06514138019736575 +237573,1187.8650000143232,-0.06513872444656228 +237574,1187.8700000143233,-0.06513607038408507 +237575,1187.8750000143234,-0.06513341800786401 +237576,1187.8800000143235,-0.06513076731583166 +237577,1187.8850000143236,-0.0651281183059233 +237578,1187.8900000143237,-0.06512547097607689 +237579,1187.8950000143238,-0.06512282532423311 +237580,1187.900000014324,-0.06512018134833532 +237581,1187.905000014324,-0.06511753904632962 +237582,1187.9100000143242,-0.06511489841616476 +237583,1187.9150000143243,-0.06511225945579219 +237584,1187.9200000143244,-0.06510962216316604 +237585,1187.9250000143245,-0.06510698653624312 +237586,1187.9300000143246,-0.06510435257298297 +237587,1187.9350000143247,-0.06510172027134777 +237588,1187.9400000143248,-0.06509908962930233 +237589,1187.945000014325,-0.06509646064481421 +237590,1187.950000014325,-0.06509383331585364 +237591,1187.9550000143252,-0.06509120764039347 +237592,1187.9600000143253,-0.06508858361640925 +237593,1187.9650000143254,-0.06508596124187918 +237594,1187.9700000143255,-0.06508334051478411 +237595,1187.9750000143256,-0.06508072143310759 +237596,1187.9800000143257,-0.06507810399483577 +237597,1187.9850000143258,-0.0650754881979575 +237598,1187.990000014326,-0.06507287404046426 +237599,1187.995000014326,-0.06507026152035017 +237600,1188.0000000143261,-0.06506765063561204 +237601,1188.0050000143262,-0.06506504138424926 +237602,1188.0100000143264,-0.06506243376426389 +237603,1188.0150000143265,-0.06505982777366064 +237604,1188.0200000143266,-0.06505722341044683 +237605,1188.0250000143267,-0.06505462067263243 +237606,1188.0300000143268,-0.06505201955823003 +237607,1188.035000014327,-0.06504942006525487 +237608,1188.040000014327,-0.06504682219172478 +237609,1188.0450000143271,-0.06504422593566023 +237610,1188.0500000143272,-0.06504163129508429 +237611,1188.0550000143273,-0.06503903826802268 +237612,1188.0600000143274,-0.06503644685250373 +237613,1188.0650000143276,-0.06503385704655835 +237614,1188.0700000143277,-0.06503126884822008 +237615,1188.0750000143278,-0.06502868225552505 +237616,1188.0800000143279,-0.06502609726651204 +237617,1188.085000014328,-0.06502351387922237 +237618,1188.090000014328,-0.06502093209169998 +237619,1188.0950000143282,-0.06501835190199146 +237620,1188.1000000143283,-0.06501577330814588 +237621,1188.1050000143284,-0.065013196308215 +237622,1188.1100000143285,-0.06501062090025311 +237623,1188.1150000143286,-0.06500804708231714 +237624,1188.1200000143288,-0.06500547485246654 +237625,1188.1250000143289,-0.06500290420876337 +237626,1188.130000014329,-0.06500033514927228 +237627,1188.135000014329,-0.06499776767206046 +237628,1188.1400000143292,-0.06499520177519771 +237629,1188.1450000143293,-0.06499263745675637 +237630,1188.1500000143294,-0.06499007471481136 +237631,1188.1550000143295,-0.06498751354744016 +237632,1188.1600000143296,-0.0649849539527228 +237633,1188.1650000143297,-0.06498239592874192 +237634,1188.1700000143298,-0.06497983947358262 +237635,1188.17500001433,-0.06497728458533264 +237636,1188.18000001433,-0.06497473126208222 +237637,1188.1850000143302,-0.0649721795019242 +237638,1188.1900000143303,-0.06496962930295393 +237639,1188.1950000143304,-0.06496708066326926 +237640,1188.2000000143305,-0.06496453358097065 +237641,1188.2050000143306,-0.06496198805416109 +237642,1188.2100000143307,-0.06495944408094606 +237643,1188.2150000143308,-0.0649569016594336 +237644,1188.220000014331,-0.06495436078773428 +237645,1188.225000014331,-0.06495182146396121 +237646,1188.2300000143312,-0.06494928368622999 +237647,1188.2350000143313,-0.06494674745265876 +237648,1188.2400000143314,-0.06494421276136818 +237649,1188.2450000143315,-0.06494167961048142 +237650,1188.2500000143316,-0.06493914799812416 +237651,1188.2550000143317,-0.0649366179224246 +237652,1188.2600000143318,-0.06493408938151346 +237653,1188.265000014332,-0.06493156237352393 +237654,1188.270000014332,-0.06492903689659174 +237655,1188.2750000143321,-0.06492651294885508 +237656,1188.2800000143322,-0.06492399052845467 +237657,1188.2850000143324,-0.06492146963353371 +237658,1188.2900000143325,-0.06491895026223789 +237659,1188.2950000143326,-0.0649164324127154 +237660,1188.3000000143327,-0.0649139160831169 +237661,1188.3050000143328,-0.06491140127159557 +237662,1188.310000014333,-0.06490888797630703 +237663,1188.315000014333,-0.0649063761954094 +237664,1188.3200000143331,-0.06490386592706325 +237665,1188.3250000143332,-0.06490135716943167 +237666,1188.3300000143333,-0.06489884992068017 +237667,1188.3350000143334,-0.06489634417897674 +237668,1188.3400000143336,-0.0648938399424919 +237669,1188.3450000143337,-0.06489133720939852 +237670,1188.3500000143338,-0.06488883597787201 +237671,1188.3550000143339,-0.06488633624609022 +237672,1188.360000014334,-0.06488383801223345 +237673,1188.365000014334,-0.06488134127448446 +237674,1188.3700000143342,-0.06487884603102842 +237675,1188.3750000143343,-0.06487635228005299 +237676,1188.3800000143344,-0.06487386001974828 +237677,1188.3850000143345,-0.06487136924830679 +237678,1188.3900000143346,-0.06486887996392351 +237679,1188.3950000143348,-0.06486639216479585 +237680,1188.4000000143349,-0.06486390584912365 +237681,1188.405000014335,-0.06486142101510914 +237682,1188.410000014335,-0.06485893766095706 +237683,1188.4150000143352,-0.0648564557848745 +237684,1188.4200000143353,-0.06485397538507102 +237685,1188.4250000143354,-0.06485149645975859 +237686,1188.4300000143355,-0.06484901900715155 +237687,1188.4350000143356,-0.06484654302546675 +237688,1188.4400000143357,-0.06484406851292336 +237689,1188.4450000143358,-0.06484159546774301 +237690,1188.450000014336,-0.0648391238881497 +237691,1188.455000014336,-0.06483665377236988 +237692,1188.4600000143362,-0.06483418511863237 +237693,1188.4650000143363,-0.06483171792516838 +237694,1188.4700000143364,-0.06482925219021153 +237695,1188.4750000143365,-0.06482678791199785 +237696,1188.4800000143366,-0.06482432508876573 +237697,1188.4850000143367,-0.06482186371875595 +237698,1188.4900000143368,-0.0648194038002117 +237699,1188.495000014337,-0.06481694533137854 +237700,1188.500000014337,-0.06481448831050438 +237701,1188.5050000143372,-0.06481203273583953 +237702,1188.5100000143373,-0.06480957860563673 +237703,1188.5150000143374,-0.06480712591815099 +237704,1188.5200000143375,-0.06480467467163975 +237705,1188.5250000143376,-0.0648022248643628 +237706,1188.5300000143377,-0.06479977649458231 +237707,1188.5350000143378,-0.06479732956056279 +237708,1188.540000014338,-0.06479488406057111 +237709,1188.545000014338,-0.06479243999287651 +237710,1188.5500000143381,-0.06478999735575057 +237711,1188.5550000143382,-0.06478755614746722 +237712,1188.5600000143384,-0.06478511636630274 +237713,1188.5650000143385,-0.06478267801053578 +237714,1188.5700000143386,-0.06478024107844728 +237715,1188.5750000143387,-0.06477780556832055 +237716,1188.5800000143388,-0.06477537147844124 +237717,1188.585000014339,-0.06477293880709734 +237718,1188.590000014339,-0.06477050755257915 +237719,1188.5950000143391,-0.06476807771317931 +237720,1188.6000000143392,-0.06476564928719279 +237721,1188.6050000143393,-0.06476322227291686 +237722,1188.6100000143394,-0.06476079666865116 +237723,1188.6150000143396,-0.06475837247269758 +237724,1188.6200000143397,-0.06475594968336042 +237725,1188.6250000143398,-0.06475352829894616 +237726,1188.6300000143399,-0.06475110831776373 +237727,1188.63500001434,-0.06474868973812428 +237728,1188.64000001434,-0.06474627255834128 +237729,1188.6450000143402,-0.06474385677673054 +237730,1188.6500000143403,-0.0647414423916101 +237731,1188.6550000143404,-0.06473902940130037 +237732,1188.6600000143405,-0.064736617804124 +237733,1188.6650000143406,-0.06473420759840595 +237734,1188.6700000143408,-0.06473179878247348 +237735,1188.6750000143409,-0.06472939135465614 +237736,1188.680000014341,-0.06472698531328575 +237737,1188.685000014341,-0.06472458065669638 +237738,1188.6900000143412,-0.06472217738322444 +237739,1188.6950000143413,-0.0647197754912086 +237740,1188.7000000143414,-0.06471737497898976 +237741,1188.7050000143415,-0.06471497584491112 +237742,1188.7100000143416,-0.06471257808731817 +237743,1188.7150000143417,-0.06471018170455864 +237744,1188.7200000143418,-0.0647077866949825 +237745,1188.725000014342,-0.06470539305694203 +237746,1188.730000014342,-0.06470300078879174 +237747,1188.7350000143422,-0.06470060988888839 +237748,1188.7400000143423,-0.06469822035559097 +237749,1188.7450000143424,-0.06469583218726081 +237750,1188.7500000143425,-0.06469344538226138 +237751,1188.7550000143426,-0.06469105993895843 +237752,1188.7600000143427,-0.06468867585572 +237753,1188.7650000143428,-0.06468629313091628 +237754,1188.770000014343,-0.0646839117629198 +237755,1188.775000014343,-0.06468153175010521 +237756,1188.7800000143432,-0.06467915309084948 +237757,1188.7850000143433,-0.06467677578353177 +237758,1188.7900000143434,-0.06467439982653347 +237759,1188.7950000143435,-0.0646720252182382 +237760,1188.8000000143436,-0.0646696519570318 +237761,1188.8050000143437,-0.06466728004130229 +237762,1188.8100000143438,-0.06466490946943998 +237763,1188.815000014344,-0.06466254023983731 +237764,1188.820000014344,-0.064660172350889 +237765,1188.8250000143441,-0.06465780580099194 +237766,1188.8300000143443,-0.06465544058854522 +237767,1188.8350000143444,-0.06465307671195016 +237768,1188.8400000143445,-0.06465071416961023 +237769,1188.8450000143446,-0.06464835295993115 +237770,1188.8500000143447,-0.06464599308132082 +237771,1188.8550000143448,-0.06464363453218933 +237772,1188.860000014345,-0.06464127731094893 +237773,1188.865000014345,-0.06463892141601407 +237774,1188.8700000143451,-0.06463656684580142 +237775,1188.8750000143452,-0.06463421359872978 +237776,1188.8800000143453,-0.06463186167322017 +237777,1188.8850000143455,-0.06462951106769577 +237778,1188.8900000143456,-0.06462716178058191 +237779,1188.8950000143457,-0.0646248138103061 +237780,1188.9000000143458,-0.06462246715529808 +237781,1188.905000014346,-0.06462012181398966 +237782,1188.910000014346,-0.06461777778481487 +237783,1188.915000014346,-0.06461543506620987 +237784,1188.9200000143462,-0.06461309365661302 +237785,1188.9250000143463,-0.0646107535544648 +237786,1188.9300000143464,-0.06460841475820783 +237787,1188.9350000143465,-0.06460607726628693 +237788,1188.9400000143467,-0.06460374107714903 +237789,1188.9450000143468,-0.06460140618924319 +237790,1188.9500000143469,-0.06459907260102067 +237791,1188.955000014347,-0.06459674031093479 +237792,1188.960000014347,-0.06459440931744108 +237793,1188.9650000143472,-0.06459207961899716 +237794,1188.9700000143473,-0.0645897512140628 +237795,1188.9750000143474,-0.0645874241010999 +237796,1188.9800000143475,-0.06458509827857248 +237797,1188.9850000143476,-0.06458277374494667 +237798,1188.9900000143477,-0.06458045049869074 +237799,1188.9950000143479,-0.06457812853827508 +237800,1189.000000014348,-0.0645758078621722 +237801,1189.005000014348,-0.06457348846885669 +237802,1189.0100000143482,-0.06457117035680526 +237803,1189.0150000143483,-0.0645688535244968 +237804,1189.0200000143484,-0.0645665379704122 +237805,1189.0250000143485,-0.06456422369303451 +237806,1189.0300000143486,-0.06456191069084888 +237807,1189.0350000143487,-0.06455959896234253 +237808,1189.0400000143488,-0.06455728850600483 +237809,1189.045000014349,-0.06455497932032717 +237810,1189.050000014349,-0.0645526714038031 +237811,1189.0550000143492,-0.06455036475492819 +237812,1189.0600000143493,-0.06454805937220015 +237813,1189.0650000143494,-0.06454575525411875 +237814,1189.0700000143495,-0.06454345239918585 +237815,1189.0750000143496,-0.06454115080590538 +237816,1189.0800000143497,-0.06453885047278334 +237817,1189.0850000143498,-0.0645365513983278 +237818,1189.09000001435,-0.06453425358104892 +237819,1189.09500001435,-0.06453195701945891 +237820,1189.1000000143501,-0.06452966171207204 +237821,1189.1050000143503,-0.06452736765740467 +237822,1189.1100000143504,-0.06452507485397518 +237823,1189.1150000143505,-0.06452278330030406 +237824,1189.1200000143506,-0.06452049299491378 +237825,1189.1250000143507,-0.06451820393632893 +237826,1189.1300000143508,-0.06451591612307613 +237827,1189.135000014351,-0.06451362955368402 +237828,1189.140000014351,-0.06451134422668331 +237829,1189.1450000143511,-0.06450906014060676 +237830,1189.1500000143512,-0.06450677729398913 +237831,1189.1550000143513,-0.06450449568536726 +237832,1189.1600000143515,-0.06450221531328 +237833,1189.1650000143516,-0.06449993617626827 +237834,1189.1700000143517,-0.06449765827287494 +237835,1189.1750000143518,-0.06449538160164497 +237836,1189.180000014352,-0.06449310616112536 +237837,1189.185000014352,-0.06449083194986505 +237838,1189.190000014352,-0.06448855896641507 +237839,1189.1950000143522,-0.06448628720932845 +237840,1189.2000000143523,-0.06448401667716022 +237841,1189.2050000143524,-0.06448174736846746 +237842,1189.2100000143525,-0.06447947928180918 +237843,1189.2150000143527,-0.06447721241574647 +237844,1189.2200000143528,-0.0644749467688424 +237845,1189.2250000143529,-0.06447268233966204 +237846,1189.230000014353,-0.06447041912677247 +237847,1189.235000014353,-0.06446815712874275 +237848,1189.2400000143532,-0.06446589634414393 +237849,1189.2450000143533,-0.06446363677154908 +237850,1189.2500000143534,-0.06446137840953323 +237851,1189.2550000143535,-0.0644591212566734 +237852,1189.2600000143536,-0.06445686531154861 +237853,1189.2650000143537,-0.06445461057273985 +237854,1189.2700000143539,-0.0644523570388301 +237855,1189.275000014354,-0.06445010470840429 +237856,1189.280000014354,-0.06444785358004934 +237857,1189.2850000143542,-0.06444560365235416 +237858,1189.2900000143543,-0.06444335492390961 +237859,1189.2950000143544,-0.06444110739330851 +237860,1189.3000000143545,-0.06443886105914566 +237861,1189.3050000143546,-0.06443661592001781 +237862,1189.3100000143547,-0.06443437197452367 +237863,1189.3150000143548,-0.06443212922126391 +237864,1189.320000014355,-0.06442988765884115 +237865,1189.325000014355,-0.06442764728585998 +237866,1189.3300000143552,-0.06442540810092691 +237867,1189.3350000143553,-0.0644231701026504 +237868,1189.3400000143554,-0.06442093328964088 +237869,1189.3450000143555,-0.06441869766051071 +237870,1189.3500000143556,-0.0644164632138742 +237871,1189.3550000143557,-0.06441422994834754 +237872,1189.3600000143558,-0.06441199786254893 +237873,1189.365000014356,-0.06440976695509845 +237874,1189.370000014356,-0.06440753722461814 +237875,1189.3750000143561,-0.06440530866973196 +237876,1189.3800000143563,-0.06440308128906576 +237877,1189.3850000143564,-0.06440085508124736 +237878,1189.3900000143565,-0.0643986300449065 +237879,1189.3950000143566,-0.0643964061786748 +237880,1189.4000000143567,-0.0643941834811858 +237881,1189.4050000143568,-0.06439196195107498 +237882,1189.410000014357,-0.06438974158697972 +237883,1189.415000014357,-0.06438752238753928 +237884,1189.4200000143571,-0.06438530435139486 +237885,1189.4250000143572,-0.06438308747718956 +237886,1189.4300000143573,-0.06438087176356837 +237887,1189.4350000143575,-0.06437865720917815 +237888,1189.4400000143576,-0.06437644381266772 +237889,1189.4450000143577,-0.06437423157268772 +237890,1189.4500000143578,-0.06437202048789074 +237891,1189.455000014358,-0.06436981055693121 +237892,1189.460000014358,-0.06436760177846548 +237893,1189.465000014358,-0.06436539415115179 +237894,1189.4700000143582,-0.06436318767365022 +237895,1189.4750000143583,-0.06436098234462274 +237896,1189.4800000143584,-0.06435877816273324 +237897,1189.4850000143585,-0.06435657512664741 +237898,1189.4900000143587,-0.0643543732350329 +237899,1189.4950000143588,-0.06435217248655913 +237900,1189.5000000143589,-0.06434997287989747 +237901,1189.505000014359,-0.0643477744137211 +237902,1189.510000014359,-0.06434557708670507 +237903,1189.5150000143592,-0.06434338089752634 +237904,1189.5200000143593,-0.06434118584486365 +237905,1189.5250000143594,-0.06433899192739764 +237906,1189.5300000143595,-0.0643367991438108 +237907,1189.5350000143596,-0.06433460749278744 +237908,1189.5400000143597,-0.06433241697301377 +237909,1189.5450000143599,-0.06433022758317777 +237910,1189.55000001436,-0.06432803932196934 +237911,1189.55500001436,-0.06432585218808018 +237912,1189.5600000143602,-0.06432366618020381 +237913,1189.5650000143603,-0.06432148129703563 +237914,1189.5700000143604,-0.06431929753727285 +237915,1189.5750000143605,-0.0643171148996145 +237916,1189.5800000143606,-0.06431493338276144 +237917,1189.5850000143607,-0.06431275298541637 +237918,1189.5900000143608,-0.0643105737062838 +237919,1189.595000014361,-0.0643083955440701 +237920,1189.600000014361,-0.06430621849748339 +237921,1189.6050000143612,-0.06430404256523364 +237922,1189.6100000143613,-0.06430186774603266 +237923,1189.6150000143614,-0.06429969403859404 +237924,1189.6200000143615,-0.06429752144163318 +237925,1189.6250000143616,-0.06429534995386729 +237926,1189.6300000143617,-0.06429317957401538 +237927,1189.6350000143618,-0.06429101030079828 +237928,1189.640000014362,-0.0642888421329386 +237929,1189.645000014362,-0.06428667506916076 +237930,1189.6500000143621,-0.06428450910819097 +237931,1189.6550000143623,-0.06428234424875724 +237932,1189.6600000143624,-0.06428018048958935 +237933,1189.6650000143625,-0.06427801782941887 +237934,1189.6700000143626,-0.0642758562669792 +237935,1189.6750000143627,-0.06427369580100545 +237936,1189.6800000143628,-0.06427153643023456 +237937,1189.685000014363,-0.06426937815340526 +237938,1189.690000014363,-0.06426722096925801 +237939,1189.6950000143631,-0.06426506487653508 +237940,1189.7000000143632,-0.06426290987398049 +237941,1189.7050000143633,-0.06426075596034005 +237942,1189.7100000143635,-0.06425860313436133 +237943,1189.7150000143636,-0.06425645139479363 +237944,1189.7200000143637,-0.06425430074038807 +237945,1189.7250000143638,-0.0642521511698975 +237946,1189.730000014364,-0.06425000268207653 +237947,1189.735000014364,-0.06424785527568151 +237948,1189.740000014364,-0.06424570894947057 +237949,1189.7450000143642,-0.06424356370220358 +237950,1189.7500000143643,-0.06424141953264215 +237951,1189.7550000143644,-0.06423927643954963 +237952,1189.7600000143646,-0.06423713442169116 +237953,1189.7650000143647,-0.06423499347783355 +237954,1189.7700000143648,-0.06423285360674542 +237955,1189.7750000143649,-0.06423071480719708 +237956,1189.780000014365,-0.06422857707796058 +237957,1189.785000014365,-0.06422644041780971 +237958,1189.7900000143652,-0.06422430482552001 +237959,1189.7950000143653,-0.06422217029986871 +237960,1189.8000000143654,-0.06422003683963479 +237961,1189.8050000143655,-0.06421790444359896 +237962,1189.8100000143656,-0.0642157731105436 +237963,1189.8150000143658,-0.0642136428392529 +237964,1189.8200000143659,-0.06421151362851268 +237965,1189.825000014366,-0.0642093854771105 +237966,1189.830000014366,-0.06420725838383565 +237967,1189.8350000143662,-0.06420513234747913 +237968,1189.8400000143663,-0.0642030073668336 +237969,1189.8450000143664,-0.0642008834406935 +237970,1189.8500000143665,-0.0641987605678549 +237971,1189.8550000143666,-0.0641966387471156 +237972,1189.8600000143667,-0.06419451797727514 +237973,1189.8650000143668,-0.06419239825713469 +237974,1189.870000014367,-0.06419027958549714 +237975,1189.875000014367,-0.06418816196116707 +237976,1189.8800000143672,-0.06418604538295077 +237977,1189.8850000143673,-0.06418392984965618 +237978,1189.8900000143674,-0.06418181536009294 +237979,1189.8950000143675,-0.06417970191307239 +237980,1189.9000000143676,-0.06417758950740754 +237981,1189.9050000143677,-0.06417547814191304 +237982,1189.9100000143678,-0.06417336781540528 +237983,1189.915000014368,-0.06417125852670229 +237984,1189.920000014368,-0.06416915027462375 +237985,1189.9250000143682,-0.06416704305799105 +237986,1189.9300000143683,-0.06416493687562723 +237987,1189.9350000143684,-0.064162831726357 +237988,1189.9400000143685,-0.0641607276090067 +237989,1189.9450000143686,-0.06415862452240438 +237990,1189.9500000143687,-0.06415652246537973 +237991,1189.9550000143688,-0.06415442143676406 +237992,1189.960000014369,-0.06415232143539037 +237993,1189.965000014369,-0.06415022246009333 +237994,1189.9700000143691,-0.06414812450970922 +237995,1189.9750000143692,-0.06414602758307598 +237996,1189.9800000143694,-0.06414393167903319 +237997,1189.9850000143695,-0.06414183679642207 +237998,1189.9900000143696,-0.0641397429340855 +237999,1189.9950000143697,-0.064137650090868 +238000,1190.0000000143698,-0.06413555826561568 +238001,1190.00500001437,-0.06413346745717632 +238002,1190.01000001437,-0.06413137766439936 +238003,1190.0150000143701,-0.06412928888613578 +238004,1190.0200000143702,-0.06412720112123829 +238005,1190.0250000143703,-0.06412511436856116 +238006,1190.0300000143704,-0.06412302862696029 +238007,1190.0350000143706,-0.06412094389529324 +238008,1190.0400000143707,-0.06411886017241913 +238009,1190.0450000143708,-0.06411677745719874 +238010,1190.0500000143709,-0.06411469574849445 +238011,1190.055000014371,-0.06411261504517023 +238012,1190.060000014371,-0.0641105353460917 +238013,1190.0650000143712,-0.06410845665012606 +238014,1190.0700000143713,-0.06410637895614213 +238015,1190.0750000143714,-0.06410430226301032 +238016,1190.0800000143715,-0.06410222656960267 +238017,1190.0850000143716,-0.06410015187479276 +238018,1190.0900000143718,-0.06409807817745582 +238019,1190.0950000143719,-0.06409600547646865 +238020,1190.100000014372,-0.06409393377070965 +238021,1190.105000014372,-0.06409186305905883 +238022,1190.1100000143722,-0.06408979334039774 +238023,1190.1150000143723,-0.06408772461360956 +238024,1190.1200000143724,-0.06408565687757904 +238025,1190.1250000143725,-0.06408359013119251 +238026,1190.1300000143726,-0.06408152437333786 +238027,1190.1350000143727,-0.06407945960290459 +238028,1190.1400000143728,-0.06407739581878376 +238029,1190.145000014373,-0.064075333019868 +238030,1190.150000014373,-0.06407327120505152 +238031,1190.1550000143732,-0.06407121037323008 +238032,1190.1600000143733,-0.06406915052330103 +238033,1190.1650000143734,-0.06406709165416329 +238034,1190.1700000143735,-0.0640650337647173 +238035,1190.1750000143736,-0.06406297685386511 +238036,1190.1800000143737,-0.06406092092051029 +238037,1190.1850000143738,-0.06405886596355798 +238038,1190.190000014374,-0.06405681198191489 +238039,1190.195000014374,-0.06405475897448926 +238040,1190.2000000143742,-0.0640527069401909 +238041,1190.2050000143743,-0.06405065587793116 +238042,1190.2100000143744,-0.06404860578662289 +238043,1190.2150000143745,-0.06404655666518055 +238044,1190.2200000143746,-0.06404450851252012 +238045,1190.2250000143747,-0.06404246132755911 +238046,1190.2300000143748,-0.06404041510921658 +238047,1190.235000014375,-0.0640383698564131 +238048,1190.240000014375,-0.0640363255680708 +238049,1190.2450000143751,-0.06403428224311333 +238050,1190.2500000143752,-0.06403223988046589 +238051,1190.2550000143754,-0.06403019847905514 +238052,1190.2600000143755,-0.06402815803780935 +238053,1190.2650000143756,-0.06402611855565826 +238054,1190.2700000143757,-0.06402408003153313 +238055,1190.2750000143758,-0.06402204246436678 +238056,1190.280000014376,-0.06402000585309349 +238057,1190.285000014376,-0.06401797019664912 +238058,1190.2900000143761,-0.06401593549397097 +238059,1190.2950000143762,-0.0640139017439979 +238060,1190.3000000143763,-0.06401186894567026 +238061,1190.3050000143764,-0.0640098370979299 +238062,1190.3100000143766,-0.06400780619972021 +238063,1190.3150000143767,-0.06400577624998603 +238064,1190.3200000143768,-0.06400374724767373 +238065,1190.3250000143769,-0.06400171919173119 +238066,1190.330000014377,-0.06399969208110774 +238067,1190.335000014377,-0.06399766591475427 +238068,1190.3400000143772,-0.06399564069162308 +238069,1190.3450000143773,-0.06399361641066804 +238070,1190.3500000143774,-0.06399159307084444 +238071,1190.3550000143775,-0.06398957067110912 +238072,1190.3600000143776,-0.06398754921042034 +238073,1190.3650000143778,-0.06398552868773788 +238074,1190.3700000143779,-0.06398350910202301 +238075,1190.375000014378,-0.06398149045223843 +238076,1190.380000014378,-0.06397947273734836 +238077,1190.3850000143782,-0.06397745595631847 +238078,1190.3900000143783,-0.0639754401081159 +238079,1190.3950000143784,-0.0639734251917093 +238080,1190.4000000143785,-0.06397141120606871 +238081,1190.4050000143786,-0.06396939815016571 +238082,1190.4100000143787,-0.0639673860229733 +238083,1190.4150000143788,-0.06396537482346597 +238084,1190.420000014379,-0.06396336455061963 +238085,1190.425000014379,-0.06396135520341169 +238086,1190.4300000143792,-0.06395934678082098 +238087,1190.4350000143793,-0.06395733928182781 +238088,1190.4400000143794,-0.06395533270541394 +238089,1190.4450000143795,-0.06395332705056254 +238090,1190.4500000143796,-0.0639513223162583 +238091,1190.4550000143797,-0.06394931850148729 +238092,1190.4600000143798,-0.06394731560523702 +238093,1190.46500001438,-0.0639453136264965 +238094,1190.47000001438,-0.06394331256425613 +238095,1190.4750000143802,-0.06394131241750778 +238096,1190.4800000143803,-0.06393931318524472 +238097,1190.4850000143804,-0.06393731486646168 +238098,1190.4900000143805,-0.06393531746015481 +238099,1190.4950000143806,-0.06393332096532169 +238100,1190.5000000143807,-0.06393132538096133 +238101,1190.5050000143808,-0.06392933070607415 +238102,1190.510000014381,-0.06392733693966204 +238103,1190.515000014381,-0.06392534408072827 +238104,1190.5200000143811,-0.06392335212827752 +238105,1190.5250000143812,-0.06392136108131592 +238106,1190.5300000143814,-0.063919370938851 +238107,1190.5350000143815,-0.06391738169989172 +238108,1190.5400000143816,-0.06391539336344841 +238109,1190.5450000143817,-0.06391340592853287 +238110,1190.5500000143818,-0.06391141939415824 +238111,1190.555000014382,-0.06390943375933913 +238112,1190.560000014382,-0.06390744902309152 +238113,1190.5650000143821,-0.06390546518443278 +238114,1190.5700000143822,-0.06390348224238171 +238115,1190.5750000143823,-0.06390150019595849 +238116,1190.5800000143824,-0.0638995190441847 +238117,1190.5850000143826,-0.06389753878608331 +238118,1190.5900000143827,-0.0638955594206787 +238119,1190.5950000143828,-0.06389358094699664 +238120,1190.6000000143829,-0.06389160336406424 +238121,1190.605000014383,-0.06388962667091005 +238122,1190.610000014383,-0.06388765086656398 +238123,1190.6150000143832,-0.06388567595005734 +238124,1190.6200000143833,-0.0638837019204228 +238125,1190.6250000143834,-0.06388172877669442 +238126,1190.6300000143835,-0.06387975651790764 +238127,1190.6350000143836,-0.06387778514309927 +238128,1190.6400000143838,-0.0638758146513075 +238129,1190.6450000143839,-0.06387384504157187 +238130,1190.650000014384,-0.06387187631293331 +238131,1190.655000014384,-0.0638699084644341 +238132,1190.6600000143842,-0.06386794149511792 +238133,1190.6650000143843,-0.06386597540402977 +238134,1190.6700000143844,-0.06386401019021604 +238135,1190.6750000143845,-0.06386204585272447 +238136,1190.6800000143846,-0.06386008239060414 +238137,1190.6850000143847,-0.06385811980290555 +238138,1190.6900000143849,-0.06385615808868048 +238139,1190.695000014385,-0.06385419724698209 +238140,1190.700000014385,-0.06385223727686488 +238141,1190.7050000143852,-0.06385027817738474 +238142,1190.7100000143853,-0.06384831994759885 +238143,1190.7150000143854,-0.06384636258656577 +238144,1190.7200000143855,-0.0638444060933454 +238145,1190.7250000143856,-0.06384245046699896 +238146,1190.7300000143857,-0.06384049570658902 +238147,1190.7350000143858,-0.06383854181117951 +238148,1190.740000014386,-0.06383658877983567 +238149,1190.745000014386,-0.06383463661162407 +238150,1190.7500000143862,-0.06383268530561262 +238151,1190.7550000143863,-0.06383073486087057 +238152,1190.7600000143864,-0.06382878527646847 +238153,1190.7650000143865,-0.06382683655147824 +238154,1190.7700000143866,-0.06382488868497307 +238155,1190.7750000143867,-0.06382294167602753 +238156,1190.7800000143868,-0.06382099552371746 +238157,1190.785000014387,-0.06381905022712003 +238158,1190.790000014387,-0.06381710578531376 +238159,1190.7950000143871,-0.06381516219737844 +238160,1190.8000000143873,-0.06381321946239521 +238161,1190.8050000143874,-0.0638112775794465 +238162,1190.8100000143875,-0.06380933654761604 +238163,1190.8150000143876,-0.0638073963659889 +238164,1190.8200000143877,-0.06380545703365142 +238165,1190.8250000143878,-0.06380351854969128 +238166,1190.830000014388,-0.06380158091319743 +238167,1190.835000014388,-0.06379964412326014 +238168,1190.8400000143881,-0.06379770817897097 +238169,1190.8450000143882,-0.06379577307942276 +238170,1190.8500000143883,-0.06379383882370969 +238171,1190.8550000143885,-0.0637919054109272 +238172,1190.8600000143886,-0.06378997284017202 +238173,1190.8650000143887,-0.06378804111054216 +238174,1190.8700000143888,-0.06378611022113696 +238175,1190.875000014389,-0.06378418017105701 +238176,1190.880000014389,-0.0637822509594042 +238177,1190.885000014389,-0.06378032258528168 +238178,1190.8900000143892,-0.06377839504779391 +238179,1190.8950000143893,-0.0637764683460466 +238180,1190.9000000143894,-0.06377454247914675 +238181,1190.9050000143895,-0.06377261744620265 +238182,1190.9100000143897,-0.06377069324632383 +238183,1190.9150000143898,-0.06376876987862112 +238184,1190.9200000143899,-0.06376684734220664 +238185,1190.92500001439,-0.06376492563619368 +238186,1190.93000001439,-0.06376300475969691 +238187,1190.9350000143902,-0.06376108471183221 +238188,1190.9400000143903,-0.06375916549171672 +238189,1190.9450000143904,-0.06375724709846885 +238190,1190.9500000143905,-0.06375532953120827 +238191,1190.9550000143906,-0.06375341278905591 +238192,1190.9600000143907,-0.06375149687113395 +238193,1190.9650000143909,-0.06374958177656583 +238194,1190.970000014391,-0.06374766750447622 +238195,1190.975000014391,-0.06374575405399105 +238196,1190.9800000143912,-0.06374384142423753 +238197,1190.9850000143913,-0.06374192961434409 +238198,1190.9900000143914,-0.06374001862344038 +238199,1190.9950000143915,-0.06373810845065733 +238200,1191.0000000143916,-0.06373619909512711 +238201,1191.0050000143917,-0.0637342905559831 +238202,1191.0100000143918,-0.06373238283235996 +238203,1191.015000014392,-0.06373047592339354 +238204,1191.020000014392,-0.06372856982822096 +238205,1191.0250000143922,-0.06372666454598054 +238206,1191.0300000143923,-0.06372476007581188 +238207,1191.0350000143924,-0.06372285641685574 +238208,1191.0400000143925,-0.06372095356825418 +238209,1191.0450000143926,-0.06371905152915043 +238210,1191.0500000143927,-0.06371715029868898 +238211,1191.0550000143928,-0.06371524987601551 +238212,1191.060000014393,-0.06371335026027695 +238213,1191.065000014393,-0.06371145145062145 +238214,1191.0700000143931,-0.06370955344619832 +238215,1191.0750000143933,-0.06370765624615815 +238216,1191.0800000143934,-0.06370575984965274 +238217,1191.0850000143935,-0.06370386425583506 +238218,1191.0900000143936,-0.06370196946385931 +238219,1191.0950000143937,-0.06370007547288091 +238220,1191.1000000143938,-0.06369818228205648 +238221,1191.105000014394,-0.06369628989054384 +238222,1191.110000014394,-0.06369439829750201 +238223,1191.1150000143941,-0.06369250750209123 +238224,1191.1200000143942,-0.0636906175034729 +238225,1191.1250000143943,-0.06368872830080965 +238226,1191.1300000143945,-0.06368683989326533 +238227,1191.1350000143946,-0.06368495228000494 +238228,1191.1400000143947,-0.06368306546019467 +238229,1191.1450000143948,-0.06368117943300194 +238230,1191.150000014395,-0.06367929419759534 +238231,1191.155000014395,-0.06367740975314463 +238232,1191.160000014395,-0.06367552609882078 +238233,1191.1650000143952,-0.06367364323379594 +238234,1191.1700000143953,-0.06367176115724343 +238235,1191.1750000143954,-0.06366987986833779 +238236,1191.1800000143955,-0.06366799936625468 +238237,1191.1850000143957,-0.06366611965017098 +238238,1191.1900000143958,-0.06366424071926474 +238239,1191.1950000143959,-0.06366236257271517 +238240,1191.200000014396,-0.06366048520970267 +238241,1191.205000014396,-0.0636586086294088 +238242,1191.2100000143962,-0.06365673283101628 +238243,1191.2150000143963,-0.06365485781370901 +238244,1191.2200000143964,-0.06365298357667208 +238245,1191.2250000143965,-0.06365111011909172 +238246,1191.2300000143966,-0.06364923744015528 +238247,1191.2350000143967,-0.06364736553905137 +238248,1191.2400000143969,-0.06364549441496967 +238249,1191.245000014397,-0.06364362406710104 +238250,1191.250000014397,-0.06364175449463755 +238251,1191.2550000143972,-0.06363988569677236 +238252,1191.2600000143973,-0.06363801767269979 +238253,1191.2650000143974,-0.06363615042161534 +238254,1191.2700000143975,-0.06363428394271566 +238255,1191.2750000143976,-0.06363241823519851 +238256,1191.2800000143977,-0.06363055329826284 +238257,1191.2850000143978,-0.06362868913110871 +238258,1191.290000014398,-0.06362682573293735 +238259,1191.295000014398,-0.0636249631029511 +238260,1191.3000000143982,-0.06362310124035347 +238261,1191.3050000143983,-0.06362124014434911 +238262,1191.3100000143984,-0.06361937981414378 +238263,1191.3150000143985,-0.06361752024894439 +238264,1191.3200000143986,-0.06361566144795898 +238265,1191.3250000143987,-0.06361380341039674 +238266,1191.3300000143988,-0.06361194613546796 +238267,1191.335000014399,-0.06361008962238407 +238268,1191.340000014399,-0.06360823387035762 +238269,1191.3450000143991,-0.06360637887860232 +238270,1191.3500000143993,-0.06360452464633297 +238271,1191.3550000143994,-0.06360267117276548 +238272,1191.3600000143995,-0.06360081845711693 +238273,1191.3650000143996,-0.06359896649860547 +238274,1191.3700000143997,-0.06359711529645039 +238275,1191.3750000143998,-0.0635952648498721 +238276,1191.3800000144,-0.0635934151580921 +238277,1191.3850000144,-0.06359156622033303 +238278,1191.3900000144001,-0.06358971803581863 +238279,1191.3950000144002,-0.06358787060377376 +238280,1191.4000000144003,-0.06358602392342436 +238281,1191.4050000144005,-0.06358417799399749 +238282,1191.4100000144006,-0.06358233281472132 +238283,1191.4150000144007,-0.06358048838482513 +238284,1191.4200000144008,-0.06357864470353929 +238285,1191.425000014401,-0.06357680177009524 +238286,1191.430000014401,-0.0635749595837256 +238287,1191.435000014401,-0.06357311814366401 +238288,1191.4400000144012,-0.06357127744914522 +238289,1191.4450000144013,-0.06356943749940508 +238290,1191.4500000144014,-0.06356759829368058 +238291,1191.4550000144015,-0.06356575983120973 +238292,1191.4600000144017,-0.06356392211123162 +238293,1191.4650000144018,-0.06356208513298651 +238294,1191.4700000144019,-0.0635602488957157 +238295,1191.475000014402,-0.06355841339866154 +238296,1191.480000014402,-0.06355657864106752 +238297,1191.4850000144022,-0.06355474462217818 +238298,1191.4900000144023,-0.06355291134123914 +238299,1191.4950000144024,-0.06355107879749711 +238300,1191.5000000144025,-0.06354924699019986 +238301,1191.5050000144026,-0.06354741591859626 +238302,1191.5100000144027,-0.06354558558193622 +238303,1191.5150000144029,-0.06354375597947076 +238304,1191.520000014403,-0.06354192711045192 +238305,1191.525000014403,-0.06354009897413287 +238306,1191.5300000144032,-0.0635382715697678 +238307,1191.5350000144033,-0.06353644489661199 +238308,1191.5400000144034,-0.06353461895392175 +238309,1191.5450000144035,-0.06353279374095451 +238310,1191.5500000144036,-0.0635309692569687 +238311,1191.5550000144037,-0.06352914550122386 +238312,1191.5600000144038,-0.06352732247298057 +238313,1191.565000014404,-0.06352550017150044 +238314,1191.570000014404,-0.06352367859604617 +238315,1191.5750000144042,-0.06352185774588151 +238316,1191.5800000144043,-0.06352003762027122 +238317,1191.5850000144044,-0.06351821821848118 +238318,1191.5900000144045,-0.06351639953977826 +238319,1191.5950000144046,-0.06351458158343042 +238320,1191.6000000144047,-0.06351276434870663 +238321,1191.6050000144048,-0.06351094783487692 +238322,1191.610000014405,-0.06350913204121235 +238323,1191.615000014405,-0.06350731696698506 +238324,1191.6200000144052,-0.06350550261146819 +238325,1191.6250000144053,-0.06350368897393593 +238326,1191.6300000144054,-0.06350187605366353 +238327,1191.6350000144055,-0.06350006384992722 +238328,1191.6400000144056,-0.06349825236200432 +238329,1191.6450000144057,-0.06349644158917316 +238330,1191.6500000144058,-0.0634946315307131 +238331,1191.655000014406,-0.0634928221859045 +238332,1191.660000014406,-0.06349101355402882 +238333,1191.6650000144061,-0.0634892056343685 +238334,1191.6700000144062,-0.06348739842620699 +238335,1191.6750000144064,-0.06348559192882879 +238336,1191.6800000144065,-0.06348378614151942 +238337,1191.6850000144066,-0.06348198106356541 +238338,1191.6900000144067,-0.06348017669425432 +238339,1191.6950000144068,-0.06347837303287475 +238340,1191.700000014407,-0.06347657007871624 +238341,1191.705000014407,-0.06347476783106941 +238342,1191.7100000144071,-0.0634729662892259 +238343,1191.7150000144072,-0.0634711654524783 +238344,1191.7200000144073,-0.06346936532012028 +238345,1191.7250000144074,-0.06346756589144648 +238346,1191.7300000144076,-0.06346576716575253 +238347,1191.7350000144077,-0.06346396914233512 +238348,1191.7400000144078,-0.06346217182049191 +238349,1191.7450000144079,-0.06346037519952155 +238350,1191.750000014408,-0.06345857927872374 +238351,1191.755000014408,-0.06345678405739912 +238352,1191.7600000144082,-0.06345498953484938 +238353,1191.7650000144083,-0.06345319571037718 +238354,1191.7700000144084,-0.06345140258328617 +238355,1191.7750000144085,-0.063449610152881 +238356,1191.7800000144086,-0.06344781841846735 +238357,1191.7850000144088,-0.06344602737935184 +238358,1191.7900000144089,-0.0634442370348421 +238359,1191.795000014409,-0.06344244738424676 +238360,1191.800000014409,-0.06344065842687542 +238361,1191.8050000144092,-0.06343887016203865 +238362,1191.8100000144093,-0.06343708258904807 +238363,1191.8150000144094,-0.06343529570721619 +238364,1191.8200000144095,-0.06343350951585658 +238365,1191.8250000144096,-0.06343172401428375 +238366,1191.8300000144097,-0.0634299392018132 +238367,1191.8350000144098,-0.06342815507776142 +238368,1191.84000001441,-0.06342637164144584 +238369,1191.84500001441,-0.0634245888921849 +238370,1191.8500000144102,-0.063422806829298 +238371,1191.8550000144103,-0.06342102545210551 +238372,1191.8600000144104,-0.06341924475992877 +238373,1191.8650000144105,-0.06341746475209009 +238374,1191.8700000144106,-0.06341568542791273 +238375,1191.8750000144107,-0.06341390678672096 +238376,1191.8800000144108,-0.06341212882783996 +238377,1191.885000014411,-0.06341035155059593 +238378,1191.890000014411,-0.06340857495431598 +238379,1191.8950000144112,-0.06340679903832822 +238380,1191.9000000144113,-0.0634050238019617 +238381,1191.9050000144114,-0.0634032492445464 +238382,1191.9100000144115,-0.06340147536541332 +238383,1191.9150000144116,-0.06339970216389436 +238384,1191.9200000144117,-0.06339792963932242 +238385,1191.9250000144118,-0.06339615779103129 +238386,1191.930000014412,-0.06339438661835577 +238387,1191.935000014412,-0.06339261612063157 +238388,1191.9400000144121,-0.06339084629719538 +238389,1191.9450000144122,-0.06338907714738481 +238390,1191.9500000144124,-0.06338730867053843 +238391,1191.9550000144125,-0.06338554086599575 +238392,1191.9600000144126,-0.06338377373309721 +238393,1191.9650000144127,-0.06338200727118422 +238394,1191.9700000144128,-0.0633802414795991 +238395,1191.975000014413,-0.06337847635768512 +238396,1191.980000014413,-0.06337671190478648 +238397,1191.9850000144131,-0.06337494812024835 +238398,1191.9900000144132,-0.06337318500341678 +238399,1191.9950000144133,-0.0633714225536388 +238400,1192.0000000144134,-0.06336966077026233 +238401,1192.0050000144136,-0.06336789965263626 +238402,1192.0100000144137,-0.06336613920011039 +238403,1192.0150000144138,-0.06336437941203543 +238404,1192.0200000144139,-0.06336262028776306 +238405,1192.025000014414,-0.06336086182664583 +238406,1192.030000014414,-0.06335910402803727 +238407,1192.0350000144142,-0.06335734689129179 +238408,1192.0400000144143,-0.06335559041576473 +238409,1192.0450000144144,-0.06335383460081236 +238410,1192.0500000144145,-0.06335207944579185 +238411,1192.0550000144146,-0.06335032495006133 +238412,1192.0600000144148,-0.0633485711129798 +238413,1192.0650000144149,-0.06334681793390717 +238414,1192.070000014415,-0.0633450654122043 +238415,1192.075000014415,-0.06334331354723295 +238416,1192.0800000144152,-0.06334156233835576 +238417,1192.0850000144153,-0.06333981178493632 +238418,1192.0900000144154,-0.06333806188633909 +238419,1192.0950000144155,-0.06333631264192947 +238420,1192.1000000144156,-0.06333456405107374 +238421,1192.1050000144157,-0.06333281611313912 +238422,1192.1100000144158,-0.06333106882749366 +238423,1192.115000014416,-0.0633293221935064 +238424,1192.120000014416,-0.06332757621054722 +238425,1192.1250000144162,-0.06332583087798689 +238426,1192.1300000144163,-0.06332408619519714 +238427,1192.1350000144164,-0.06332234216155054 +238428,1192.1400000144165,-0.06332059877642056 +238429,1192.1450000144166,-0.06331885603918158 +238430,1192.1500000144167,-0.06331711394920887 +238431,1192.1550000144168,-0.06331537250587858 +238432,1192.160000014417,-0.06331363170856777 +238433,1192.165000014417,-0.06331189155665434 +238434,1192.1700000144172,-0.06331015204951715 +238435,1192.1750000144173,-0.06330841318653588 +238436,1192.1800000144174,-0.06330667496709111 +238437,1192.1850000144175,-0.06330493739056434 +238438,1192.1900000144176,-0.06330320045633789 +238439,1192.1950000144177,-0.06330146416379501 +238440,1192.2000000144178,-0.0632997285123198 +238441,1192.205000014418,-0.06329799350129728 +238442,1192.210000014418,-0.06329625913011327 +238443,1192.2150000144181,-0.06329452539815454 +238444,1192.2200000144182,-0.06329279230480869 +238445,1192.2250000144184,-0.0632910598494642 +238446,1192.2300000144185,-0.06328932803151045 +238447,1192.2350000144186,-0.06328759685033764 +238448,1192.2400000144187,-0.06328586630533688 +238449,1192.2450000144188,-0.06328413639590014 +238450,1192.250000014419,-0.06328240712142022 +238451,1192.255000014419,-0.06328067848129083 +238452,1192.2600000144191,-0.06327895047490655 +238453,1192.2650000144192,-0.06327722310166274 +238454,1192.2700000144193,-0.06327549636095572 +238455,1192.2750000144194,-0.06327377025218264 +238456,1192.2800000144196,-0.06327204477474149 +238457,1192.2850000144197,-0.0632703199280311 +238458,1192.2900000144198,-0.0632685957114512 +238459,1192.2950000144199,-0.06326687212440235 +238460,1192.30000001442,-0.06326514916628598 +238461,1192.30500001442,-0.06326342683650435 +238462,1192.3100000144202,-0.0632617051344606 +238463,1192.3150000144203,-0.06325998405955868 +238464,1192.3200000144204,-0.06325826361120342 +238465,1192.3250000144205,-0.06325654378880048 +238466,1192.3300000144206,-0.0632548245917564 +238467,1192.3350000144208,-0.06325310601947849 +238468,1192.3400000144209,-0.063251388071375 +238469,1192.345000014421,-0.06324967074685493 +238470,1192.350000014421,-0.0632479540453282 +238471,1192.3550000144212,-0.06324623796620553 +238472,1192.3600000144213,-0.06324452250889848 +238473,1192.3650000144214,-0.06324280767281942 +238474,1192.3700000144215,-0.06324109345738164 +238475,1192.3750000144216,-0.06323937986199918 +238476,1192.3800000144217,-0.06323766688608695 +238477,1192.3850000144218,-0.06323595452906071 +238478,1192.390000014422,-0.063234242790337 +238479,1192.395000014422,-0.06323253166933321 +238480,1192.4000000144222,-0.0632308211654676 +238481,1192.4050000144223,-0.06322911127815921 +238482,1192.4100000144224,-0.06322740200682793 +238483,1192.4150000144225,-0.06322569335089447 +238484,1192.4200000144226,-0.06322398530978034 +238485,1192.4250000144227,-0.06322227788290789 +238486,1192.4300000144228,-0.06322057106970033 +238487,1192.435000014423,-0.06321886486958163 +238488,1192.440000014423,-0.0632171592819766 +238489,1192.4450000144232,-0.0632154543063109 +238490,1192.4500000144233,-0.06321374994201097 +238491,1192.4550000144234,-0.06321204618850407 +238492,1192.4600000144235,-0.06321034304521826 +238493,1192.4650000144236,-0.06320864051158248 +238494,1192.4700000144237,-0.06320693858702639 +238495,1192.4750000144238,-0.06320523727098051 +238496,1192.480000014424,-0.0632035365628762 +238497,1192.485000014424,-0.06320183646214556 +238498,1192.4900000144241,-0.06320013696822153 +238499,1192.4950000144242,-0.06319843808053786 +238500,1192.5000000144244,-0.06319673979852913 +238501,1192.5050000144245,-0.06319504212163068 +238502,1192.5100000144246,-0.06319334504927865 +238503,1192.5150000144247,-0.06319164858091 +238504,1192.5200000144248,-0.0631899527159625 +238505,1192.525000014425,-0.06318825745387471 +238506,1192.530000014425,-0.06318656279408598 +238507,1192.5350000144251,-0.06318486873603645 +238508,1192.5400000144252,-0.06318317527916709 +238509,1192.5450000144253,-0.06318148242291963 +238510,1192.5500000144254,-0.06317979016673661 +238511,1192.5550000144256,-0.06317809851006134 +238512,1192.5600000144257,-0.06317640745233798 +238513,1192.5650000144258,-0.06317471699301139 +238514,1192.570000014426,-0.0631730271315273 +238515,1192.575000014426,-0.06317133786733216 +238516,1192.580000014426,-0.06316964919987327 +238517,1192.5850000144262,-0.06316796112859867 +238518,1192.5900000144263,-0.06316627365295718 +238519,1192.5950000144264,-0.06316458677239845 +238520,1192.6000000144265,-0.06316290048637288 +238521,1192.6050000144267,-0.06316121479433164 +238522,1192.6100000144268,-0.06315952969572668 +238523,1192.6150000144269,-0.06315784519001076 +238524,1192.620000014427,-0.06315616127663741 +238525,1192.625000014427,-0.06315447795506088 +238526,1192.6300000144272,-0.06315279522473628 +238527,1192.6350000144273,-0.06315111308511942 +238528,1192.6400000144274,-0.06314943153566693 +238529,1192.6450000144275,-0.0631477505758362 +238530,1192.6500000144276,-0.06314607020508536 +238531,1192.6550000144277,-0.06314439042287336 +238532,1192.6600000144279,-0.06314271122865986 +238533,1192.665000014428,-0.06314103262190535 +238534,1192.670000014428,-0.06313935460207103 +238535,1192.6750000144282,-0.0631376771686189 +238536,1192.6800000144283,-0.0631360003210117 +238537,1192.6850000144284,-0.06313432405871296 +238538,1192.6900000144285,-0.06313264838118693 +238539,1192.6950000144286,-0.06313097328789867 +238540,1192.7000000144287,-0.06312929877831397 +238541,1192.7050000144288,-0.06312762485189938 +238542,1192.710000014429,-0.06312595150812218 +238543,1192.715000014429,-0.06312427874645048 +238544,1192.7200000144292,-0.06312260656635305 +238545,1192.7250000144293,-0.0631209349672995 +238546,1192.7300000144294,-0.06311926394876012 +238547,1192.7350000144295,-0.063117593510206 +238548,1192.7400000144296,-0.06311592365110898 +238549,1192.7450000144297,-0.06311425437094159 +238550,1192.7500000144298,-0.0631125856691772 +238551,1192.75500001443,-0.06311091754528984 +238552,1192.76000001443,-0.06310924999875434 +238553,1192.7650000144301,-0.06310758302904626 +238554,1192.7700000144303,-0.06310591663564188 +238555,1192.7750000144304,-0.06310425081801828 +238556,1192.7800000144305,-0.0631025855756532 +238557,1192.7850000144306,-0.06310092090802519 +238558,1192.7900000144307,-0.06309925681461351 +238559,1192.7950000144308,-0.06309759329489817 +238560,1192.800000014431,-0.06309593034835988 +238561,1192.805000014431,-0.06309426797448012 +238562,1192.8100000144311,-0.06309260617274111 +238563,1192.8150000144312,-0.06309094494262579 +238564,1192.8200000144313,-0.06308928428361785 +238565,1192.8250000144315,-0.06308762419520166 +238566,1192.8300000144316,-0.06308596467686237 +238567,1192.8350000144317,-0.06308430572808583 +238568,1192.8400000144318,-0.06308264734835868 +238569,1192.845000014432,-0.06308098953716819 +238570,1192.850000014432,-0.06307933229400242 +238571,1192.855000014432,-0.06307767561835016 +238572,1192.8600000144322,-0.06307601950970088 +238573,1192.8650000144323,-0.0630743639675448 +238574,1192.8700000144324,-0.06307270899137288 +238575,1192.8750000144325,-0.06307105458067676 +238576,1192.8800000144327,-0.06306940073494884 +238577,1192.8850000144328,-0.06306774745368217 +238578,1192.8900000144329,-0.06306609473637062 +238579,1192.895000014433,-0.06306444258250869 +238580,1192.900000014433,-0.06306279099159164 +238581,1192.9050000144332,-0.06306113996311542 +238582,1192.9100000144333,-0.06305948949657673 +238583,1192.9150000144334,-0.06305783959147293 +238584,1192.9200000144335,-0.06305619024730212 +238585,1192.9250000144336,-0.06305454146356312 +238586,1192.9300000144337,-0.06305289323975545 +238587,1192.9350000144339,-0.06305124557537932 +238588,1192.940000014434,-0.06304959846993566 +238589,1192.945000014434,-0.06304795192292612 +238590,1192.9500000144342,-0.06304630593385303 +238591,1192.9550000144343,-0.06304466050221946 +238592,1192.9600000144344,-0.06304301562752915 +238593,1192.9650000144345,-0.06304137130928654 +238594,1192.9700000144346,-0.06303972754699677 +238595,1192.9750000144347,-0.06303808434016572 +238596,1192.9800000144348,-0.06303644168829993 +238597,1192.985000014435,-0.06303479959090665 +238598,1192.990000014435,-0.0630331580474938 +238599,1192.9950000144352,-0.06303151705757004 +238600,1193.0000000144353,-0.06302987662064471 +238601,1193.0050000144354,-0.06302823673622783 +238602,1193.0100000144355,-0.06302659740383011 +238603,1193.0150000144356,-0.06302495862296296 +238604,1193.0200000144357,-0.06302332039313852 +238605,1193.0250000144358,-0.06302168271386954 +238606,1193.030000014436,-0.0630200455846695 +238607,1193.035000014436,-0.0630184090050526 +238608,1193.0400000144361,-0.06301677297453365 +238609,1193.0450000144363,-0.06301513749262821 +238610,1193.0500000144364,-0.0630135025588525 +238611,1193.0550000144365,-0.06301186817272346 +238612,1193.0600000144366,-0.06301023433375862 +238613,1193.0650000144367,-0.06300860104147628 +238614,1193.0700000144368,-0.06300696829539539 +238615,1193.075000014437,-0.06300533609503556 +238616,1193.080000014437,-0.06300370443991711 +238617,1193.0850000144371,-0.06300207332956105 +238618,1193.0900000144372,-0.063000442763489 +238619,1193.0950000144373,-0.0629988127412233 +238620,1193.1000000144375,-0.06299718326228698 +238621,1193.1050000144376,-0.06299555432620371 +238622,1193.1100000144377,-0.06299392593249786 +238623,1193.1150000144378,-0.06299229808069444 +238624,1193.120000014438,-0.06299067077031915 +238625,1193.125000014438,-0.06298904400089837 +238626,1193.130000014438,-0.06298741777195911 +238627,1193.1350000144382,-0.0629857920830291 +238628,1193.1400000144383,-0.06298416693363669 +238629,1193.1450000144384,-0.06298254232331091 +238630,1193.1500000144385,-0.06298091825158146 +238631,1193.1550000144387,-0.06297929471797871 +238632,1193.1600000144388,-0.06297767172203368 +238633,1193.1650000144389,-0.06297604926327804 +238634,1193.170000014439,-0.06297442734124416 +238635,1193.175000014439,-0.06297280595546502 +238636,1193.1800000144392,-0.0629711851054743 +238637,1193.1850000144393,-0.0629695647908063 +238638,1193.1900000144394,-0.06296794501099602 +238639,1193.1950000144395,-0.06296632576557909 +238640,1193.2000000144396,-0.06296470705409178 +238641,1193.2050000144397,-0.06296308887607102 +238642,1193.2100000144399,-0.06296147123105444 +238643,1193.21500001444,-0.06295985411858027 +238644,1193.22000001444,-0.0629582375381874 +238645,1193.2250000144402,-0.06295662148941536 +238646,1193.2300000144403,-0.06295500597180435 +238647,1193.2350000144404,-0.06295339098489523 +238648,1193.2400000144405,-0.06295177652822949 +238649,1193.2450000144406,-0.06295016260134924 +238650,1193.2500000144407,-0.06294854920379726 +238651,1193.2550000144408,-0.06294693633511698 +238652,1193.260000014441,-0.06294532399485249 +238653,1193.265000014441,-0.06294371218254845 +238654,1193.2700000144412,-0.06294210089775024 +238655,1193.2750000144413,-0.06294049014000384 +238656,1193.2800000144414,-0.06293887990885588 +238657,1193.2850000144415,-0.06293727020385363 +238658,1193.2900000144416,-0.06293566102454498 +238659,1193.2950000144417,-0.06293405237047849 +238660,1193.3000000144418,-0.0629324442412033 +238661,1193.305000014442,-0.06293083663626925 +238662,1193.310000014442,-0.06292922955522677 +238663,1193.3150000144421,-0.06292762299762694 +238664,1193.3200000144423,-0.06292601696302147 +238665,1193.3250000144424,-0.0629244114509627 +238666,1193.3300000144425,-0.06292280646100358 +238667,1193.3350000144426,-0.06292120199269771 +238668,1193.3400000144427,-0.06291959804559932 +238669,1193.3450000144428,-0.06291799461926327 +238670,1193.350000014443,-0.06291639171324502 +238671,1193.355000014443,-0.06291478932710068 +238672,1193.3600000144431,-0.06291318746038697 +238673,1193.3650000144432,-0.06291158611266127 +238674,1193.3700000144433,-0.0629099852834815 +238675,1193.3750000144435,-0.06290838497240629 +238676,1193.3800000144436,-0.06290678517899485 +238677,1193.3850000144437,-0.062905185902807 +238678,1193.3900000144438,-0.06290358714340319 +238679,1193.395000014444,-0.0629019889003445 +238680,1193.400000014444,-0.0629003911731926 +238681,1193.405000014444,-0.06289879396150981 +238682,1193.4100000144442,-0.06289719726485905 +238683,1193.4150000144443,-0.06289560108280383 +238684,1193.4200000144444,-0.06289400541490829 +238685,1193.4250000144445,-0.0628924102607372 +238686,1193.4300000144447,-0.06289081561985595 +238687,1193.4350000144448,-0.06288922149183047 +238688,1193.4400000144449,-0.06288762787622738 +238689,1193.445000014445,-0.06288603477261387 +238690,1193.450000014445,-0.06288444218055775 +238691,1193.4550000144452,-0.0628828500996274 +238692,1193.4600000144453,-0.06288125852939185 +238693,1193.4650000144454,-0.06287966746942072 +238694,1193.4700000144455,-0.06287807691928425 +238695,1193.4750000144456,-0.06287648687855327 +238696,1193.4800000144457,-0.06287489734679919 +238697,1193.4850000144459,-0.06287330832359404 +238698,1193.490000014446,-0.06287171980851046 +238699,1193.495000014446,-0.06287013180112169 +238700,1193.5000000144462,-0.06286854430100156 +238701,1193.5050000144463,-0.06286695730772446 +238702,1193.5100000144464,-0.06286537082086546 +238703,1193.5150000144465,-0.06286378484000017 +238704,1193.5200000144466,-0.06286219936470479 +238705,1193.5250000144467,-0.06286061439455615 +238706,1193.5300000144468,-0.06285902992913164 +238707,1193.535000014447,-0.06285744596800925 +238708,1193.540000014447,-0.0628558625107676 +238709,1193.5450000144472,-0.06285427955698582 +238710,1193.5500000144473,-0.06285269710624371 +238711,1193.5550000144474,-0.06285111515812161 +238712,1193.5600000144475,-0.06284953371220048 +238713,1193.5650000144476,-0.06284795276806185 +238714,1193.5700000144477,-0.06284637232528784 +238715,1193.5750000144478,-0.06284479238346112 +238716,1193.580000014448,-0.06284321294216502 +238717,1193.585000014448,-0.0628416340009834 +238718,1193.5900000144482,-0.06284005555950072 +238719,1193.5950000144483,-0.06283847761730199 +238720,1193.6000000144484,-0.06283690017397286 +238721,1193.6050000144485,-0.06283532322909952 +238722,1193.6100000144486,-0.06283374678226873 +238723,1193.6150000144487,-0.06283217083306787 +238724,1193.6200000144488,-0.06283059538108485 +238725,1193.625000014449,-0.0628290204259082 +238726,1193.630000014449,-0.062827445967127 +238727,1193.6350000144491,-0.0628258720043309 +238728,1193.6400000144492,-0.06282429853711015 +238729,1193.6450000144494,-0.06282272556505557 +238730,1193.6500000144495,-0.0628211530877585 +238731,1193.6550000144496,-0.06281958110481094 +238732,1193.6600000144497,-0.06281800961580537 +238733,1193.6650000144498,-0.06281643862033491 +238734,1193.67000001445,-0.06281486811799322 +238735,1193.67500001445,-0.06281329810837452 +238736,1193.6800000144501,-0.06281172859107363 +238737,1193.6850000144502,-0.06281015956568589 +238738,1193.6900000144503,-0.06280859103180725 +238739,1193.6950000144504,-0.06280702298903419 +238740,1193.7000000144506,-0.06280545543696378 +238741,1193.7050000144507,-0.06280388837519366 +238742,1193.7100000144508,-0.06280232180332196 +238743,1193.7150000144509,-0.06280075572094748 +238744,1193.720000014451,-0.0627991901276695 +238745,1193.725000014451,-0.0627976250230879 +238746,1193.7300000144512,-0.06279606040680309 +238747,1193.7350000144513,-0.06279449627841607 +238748,1193.7400000144514,-0.06279293263752839 +238749,1193.7450000144515,-0.0627913694837421 +238750,1193.7500000144516,-0.06278980681665991 +238751,1193.7550000144518,-0.06278824463588499 +238752,1193.7600000144519,-0.06278668294102113 +238753,1193.765000014452,-0.06278512173167262 +238754,1193.770000014452,-0.06278356100744435 +238755,1193.7750000144522,-0.06278200076794173 +238756,1193.7800000144523,-0.06278044101277071 +238757,1193.7850000144524,-0.06277888174153783 +238758,1193.7900000144525,-0.06277732295385016 +238759,1193.7950000144526,-0.06277576464931532 +238760,1193.8000000144527,-0.06277420682754146 +238761,1193.8050000144528,-0.06277264948813731 +238762,1193.810000014453,-0.06277109263071211 +238763,1193.815000014453,-0.06276953625487566 +238764,1193.8200000144532,-0.06276798036023833 +238765,1193.8250000144533,-0.06276642494641098 +238766,1193.8300000144534,-0.06276487001300507 +238767,1193.8350000144535,-0.06276331555963255 +238768,1193.8400000144536,-0.06276176158590595 +238769,1193.8450000144537,-0.0627602080914383 +238770,1193.8500000144538,-0.06275865507584322 +238771,1193.855000014454,-0.06275710253873484 +238772,1193.860000014454,-0.06275555047972782 +238773,1193.8650000144542,-0.06275399889843736 +238774,1193.8700000144543,-0.06275244779447922 +238775,1193.8750000144544,-0.06275089716746968 +238776,1193.8800000144545,-0.06274934701702553 +238777,1193.8850000144546,-0.06274779734276413 +238778,1193.8900000144547,-0.06274624814430337 +238779,1193.8950000144548,-0.06274469942126164 +238780,1193.900000014455,-0.0627431511732579 +238781,1193.905000014455,-0.06274160339991161 +238782,1193.9100000144551,-0.0627400561008428 +238783,1193.9150000144552,-0.06273850927567196 +238784,1193.9200000144554,-0.06273696292402017 +238785,1193.9250000144555,-0.06273541704550904 +238786,1193.9300000144556,-0.06273387163976066 +238787,1193.9350000144557,-0.06273232670639765 +238788,1193.9400000144558,-0.06273078224504322 +238789,1193.945000014456,-0.06272923825532102 +238790,1193.950000014456,-0.06272769473685529 +238791,1193.9550000144561,-0.06272615168927073 +238792,1193.9600000144562,-0.06272460911219264 +238793,1193.9650000144563,-0.06272306700524677 +238794,1193.9700000144564,-0.06272152536805942 +238795,1193.9750000144566,-0.06271998420025741 +238796,1193.9800000144567,-0.06271844350146809 +238797,1193.9850000144568,-0.06271690327131929 +238798,1193.9900000144569,-0.0627153635094394 +238799,1193.995000014457,-0.06271382421545729 +238800,1194.000000014457,-0.06271228538900239 +238801,1194.0050000144572,-0.0627107470297046 +238802,1194.0100000144573,-0.06270920913719434 +238803,1194.0150000144574,-0.06270767171110257 +238804,1194.0200000144575,-0.06270613475106077 +238805,1194.0250000144576,-0.06270459825670087 +238806,1194.0300000144578,-0.06270306222765537 +238807,1194.0350000144579,-0.06270152666355726 +238808,1194.040000014458,-0.06269999156404005 +238809,1194.045000014458,-0.06269845692873774 +238810,1194.0500000144582,-0.06269692275728485 +238811,1194.0550000144583,-0.0626953890493164 +238812,1194.0600000144584,-0.06269385580446793 +238813,1194.0650000144585,-0.06269232302237546 +238814,1194.0700000144586,-0.06269079070267554 +238815,1194.0750000144587,-0.06268925884500523 +238816,1194.0800000144588,-0.06268772744900206 +238817,1194.085000014459,-0.06268619651430409 +238818,1194.090000014459,-0.06268466604054987 +238819,1194.0950000144592,-0.06268313602737847 +238820,1194.1000000144593,-0.06268160647442941 +238821,1194.1050000144594,-0.0626800773813428 +238822,1194.1100000144595,-0.06267854874775915 +238823,1194.1150000144596,-0.06267702057331953 +238824,1194.1200000144597,-0.06267549285766548 +238825,1194.1250000144598,-0.06267396560043904 +238826,1194.13000001446,-0.06267243880128279 +238827,1194.13500001446,-0.06267091245983972 +238828,1194.1400000144602,-0.0626693865757534 +238829,1194.1450000144603,-0.06266786114866782 +238830,1194.1500000144604,-0.06266633617822755 +238831,1194.1550000144605,-0.06266481166407753 +238832,1194.1600000144606,-0.06266328760586333 +238833,1194.1650000144607,-0.06266176400323091 +238834,1194.1700000144608,-0.06266024085582676 +238835,1194.175000014461,-0.06265871816329785 +238836,1194.180000014461,-0.06265719592529163 +238837,1194.1850000144611,-0.06265567414145608 +238838,1194.1900000144612,-0.0626541528114396 +238839,1194.1950000144614,-0.06265263193489115 +238840,1194.2000000144615,-0.0626511115114601 +238841,1194.2050000144616,-0.06264959154079637 +238842,1194.2100000144617,-0.06264807202255032 +238843,1194.2150000144618,-0.06264655295637284 +238844,1194.220000014462,-0.06264503434191523 +238845,1194.225000014462,-0.06264351617882935 +238846,1194.2300000144621,-0.06264199846676749 +238847,1194.2350000144622,-0.06264048120538245 +238848,1194.2400000144623,-0.06263896439432748 +238849,1194.2450000144624,-0.06263744803325634 +238850,1194.2500000144626,-0.06263593212182325 +238851,1194.2550000144627,-0.06263441665968292 +238852,1194.2600000144628,-0.0626329016464905 +238853,1194.2650000144629,-0.06263138708190169 +238854,1194.270000014463,-0.0626298729655726 +238855,1194.275000014463,-0.06262835929715983 +238856,1194.2800000144632,-0.06262684607632046 +238857,1194.2850000144633,-0.06262533330271206 +238858,1194.2900000144634,-0.06262382097599263 +238859,1194.2950000144635,-0.0626223090958207 +238860,1194.3000000144636,-0.06262079766185522 +238861,1194.3050000144638,-0.06261928667375564 +238862,1194.3100000144639,-0.06261777613118186 +238863,1194.315000014464,-0.06261626603379426 +238864,1194.320000014464,-0.0626147563812537 +238865,1194.3250000144642,-0.06261324717322148 +238866,1194.3300000144643,-0.0626117384093594 +238867,1194.3350000144644,-0.06261023008932969 +238868,1194.3400000144645,-0.06260872221279508 +238869,1194.3450000144646,-0.06260721477941875 +238870,1194.3500000144647,-0.06260570778886432 +238871,1194.3550000144648,-0.06260420124079594 +238872,1194.360000014465,-0.06260269513487814 +238873,1194.365000014465,-0.06260118947077596 +238874,1194.3700000144652,-0.06259968424815492 +238875,1194.3750000144653,-0.06259817946668095 +238876,1194.3800000144654,-0.06259667512602048 +238877,1194.3850000144655,-0.06259517122584037 +238878,1194.3900000144656,-0.06259366776580795 +238879,1194.3950000144657,-0.06259216474559104 +238880,1194.4000000144658,-0.06259066216485787 +238881,1194.405000014466,-0.06258916002327714 +238882,1194.410000014466,-0.06258765832051802 +238883,1194.4150000144662,-0.06258615705625013 +238884,1194.4200000144663,-0.06258465623014353 +238885,1194.4250000144664,-0.06258315584186876 +238886,1194.4300000144665,-0.0625816558910968 +238887,1194.4350000144666,-0.06258015637749904 +238888,1194.4400000144667,-0.06257865730074741 +238889,1194.4450000144668,-0.06257715866051423 +238890,1194.450000014467,-0.06257566045647228 +238891,1194.455000014467,-0.0625741626882948 +238892,1194.4600000144671,-0.06257266535565546 +238893,1194.4650000144673,-0.06257116845822841 +238894,1194.4700000144674,-0.06256967199568822 +238895,1194.4750000144675,-0.06256817596770993 +238896,1194.4800000144676,-0.06256668037396901 +238897,1194.4850000144677,-0.06256518521414137 +238898,1194.4900000144678,-0.06256369048790338 +238899,1194.495000014468,-0.06256219619493184 +238900,1194.500000014468,-0.062560702334904 +238901,1194.5050000144681,-0.0625592089074976 +238902,1194.5100000144682,-0.06255771591239072 +238903,1194.5150000144683,-0.06255622334926199 +238904,1194.5200000144685,-0.06255473121779039 +238905,1194.5250000144686,-0.06255323951765542 +238906,1194.5300000144687,-0.06255174824853696 +238907,1194.5350000144688,-0.06255025741011536 +238908,1194.540000014469,-0.06254876700207138 +238909,1194.545000014469,-0.06254727702408626 +238910,1194.550000014469,-0.06254578747584165 +238911,1194.5550000144692,-0.06254429835701965 +238912,1194.5600000144693,-0.06254280966730276 +238913,1194.5650000144694,-0.06254132140637397 +238914,1194.5700000144695,-0.06253983357391665 +238915,1194.5750000144697,-0.06253834616961466 +238916,1194.5800000144698,-0.06253685919315227 +238917,1194.5850000144699,-0.06253537264421413 +238918,1194.59000001447,-0.06253388652248541 +238919,1194.59500001447,-0.06253240082765167 +238920,1194.6000000144702,-0.0625309155593989 +238921,1194.6050000144703,-0.06252943071741349 +238922,1194.6100000144704,-0.06252794630138232 +238923,1194.6150000144705,-0.06252646231099265 +238924,1194.6200000144706,-0.06252497874593221 +238925,1194.6250000144707,-0.06252349560588914 +238926,1194.6300000144709,-0.06252201289055198 +238927,1194.635000014471,-0.06252053059960971 +238928,1194.640000014471,-0.06251904873275177 +238929,1194.6450000144712,-0.06251756728966798 +238930,1194.6500000144713,-0.06251608627004862 +238931,1194.6550000144714,-0.06251460567358436 +238932,1194.6600000144715,-0.06251312549996631 +238933,1194.6650000144716,-0.062511645748886 +238934,1194.6700000144717,-0.06251016642003539 +238935,1194.6750000144718,-0.06250868751310686 +238936,1194.680000014472,-0.06250720902779318 +238937,1194.685000014472,-0.0625057309637876 +238938,1194.6900000144722,-0.06250425332078373 +238939,1194.6950000144723,-0.06250277609847564 +238940,1194.7000000144724,-0.06250129929655777 +238941,1194.7050000144725,-0.06249982291472504 +238942,1194.7100000144726,-0.06249834695267275 +238943,1194.7150000144727,-0.062496871410096605 +238944,1194.7200000144728,-0.06249539628669274 +238945,1194.725000014473,-0.06249392158215771 +238946,1194.730000014473,-0.06249244729618849 +238947,1194.7350000144731,-0.06249097342848245 +238948,1194.7400000144733,-0.06248949997873737 +238949,1194.7450000144734,-0.062488026946651475 +238950,1194.7500000144735,-0.06248655433192337 +238951,1194.7550000144736,-0.062485082134252086 +238952,1194.7600000144737,-0.06248361035333704 +238953,1194.7650000144738,-0.062482138988878104 +238954,1194.770000014474,-0.062480668040575525 +238955,1194.775000014474,-0.062479197508129955 +238956,1194.7800000144741,-0.06247772739124248 +238957,1194.7850000144742,-0.06247625768961459 +238958,1194.7900000144743,-0.06247478840294815 +238959,1194.7950000144745,-0.06247331953094546 +238960,1194.8000000144746,-0.06247185107330923 +238961,1194.8050000144747,-0.06247038302974254 +238962,1194.8100000144748,-0.062468915399948914 +238963,1194.815000014475,-0.06246744818363226 +238964,1194.820000014475,-0.06246598138049689 +238965,1194.825000014475,-0.06246451499024751 +238966,1194.8300000144752,-0.062463049012589256 +238967,1194.8350000144753,-0.06246158344722764 +238968,1194.8400000144754,-0.06246011829386859 +238969,1194.8450000144755,-0.062458653552218406 +238970,1194.8500000144757,-0.06245718922198384 +238971,1194.8550000144758,-0.06245572530287198 +238972,1194.8600000144759,-0.06245426179459037 +238973,1194.865000014476,-0.062452798696846896 +238974,1194.870000014476,-0.06245133600934989 +238975,1194.8750000144762,-0.062449873731808055 +238976,1194.8800000144763,-0.062448411863930506 +238977,1194.8850000144764,-0.06244695040542672 +238978,1194.8900000144765,-0.06244548935600662 +238979,1194.8950000144766,-0.06244402871538047 +238980,1194.9000000144767,-0.06244256848325895 +238981,1194.9050000144769,-0.062441108659353164 +238982,1194.910000014477,-0.06243964924337455 +238983,1194.915000014477,-0.06243819023503498 +238984,1194.9200000144772,-0.062436731634046706 +238985,1194.9250000144773,-0.06243527344012236 +238986,1194.9300000144774,-0.06243381565297497 +238987,1194.9350000144775,-0.062432358272317974 +238988,1194.9400000144776,-0.06243090129786517 +238989,1194.9450000144777,-0.06242944472933074 +238990,1194.9500000144778,-0.062427988566429296 +238991,1194.955000014478,-0.06242653280887579 +238992,1194.960000014478,-0.0624250774563856 +238993,1194.9650000144782,-0.06242362250867444 +238994,1194.9700000144783,-0.06242216796545846 +238995,1194.9750000144784,-0.06242071382645418 +238996,1194.9800000144785,-0.06241926009137848 +238997,1194.9850000144786,-0.062417806759948645 +238998,1194.9900000144787,-0.06241635383188235 +238999,1194.9950000144788,-0.062414901306897634 +239000,1195.000000014479,-0.062413449184712935 +239001,1195.005000014479,-0.06241199746504704 +239002,1195.0100000144791,-0.06241054614761916 +239003,1195.0150000144793,-0.06240909523214886 +239004,1195.0200000144794,-0.062407644718356095 +239005,1195.0250000144795,-0.06240619460596119 +239006,1195.0300000144796,-0.06240474489468485 +239007,1195.0350000144797,-0.06240329558424817 +239008,1195.0400000144798,-0.06240184667437261 +239009,1195.04500001448,-0.062400398164780005 +239010,1195.05000001448,-0.062398950055192574 +239011,1195.0550000144801,-0.06239750234533291 +239012,1195.0600000144802,-0.06239605503492398 +239013,1195.0650000144803,-0.06239460812368911 +239014,1195.0700000144805,-0.06239316161135203 +239015,1195.0750000144806,-0.062391715497636814 +239016,1195.0800000144807,-0.062390269782267936 +239017,1195.0850000144808,-0.06238882446497023 +239018,1195.090000014481,-0.06238737954546888 +239019,1195.095000014481,-0.062385935023489485 +239020,1195.100000014481,-0.06238449089875798 +239021,1195.1050000144812,-0.06238304717100067 +239022,1195.1100000144813,-0.06238160383994426 +239023,1195.1150000144814,-0.06238016090531579 +239024,1195.1200000144815,-0.062378718366842695 +239025,1195.1250000144817,-0.062377276224252744 +239026,1195.1300000144818,-0.062375834477274114 +239027,1195.1350000144819,-0.06237439312563532 +239028,1195.140000014482,-0.06237295216906526 +239029,1195.145000014482,-0.06237151160729317 +239030,1195.1500000144822,-0.06237007144004869 +239031,1195.1550000144823,-0.062368631667061795 +239032,1195.1600000144824,-0.062367192288062825 +239033,1195.1650000144825,-0.06236575330278251 +239034,1195.1700000144826,-0.06236431471095192 +239035,1195.1750000144827,-0.062362876512302476 +239036,1195.1800000144829,-0.06236143870656599 +239037,1195.185000014483,-0.062360001293474625 +239038,1195.190000014483,-0.06235856427276089 +239039,1195.1950000144832,-0.06235712764415767 +239040,1195.2000000144833,-0.06235569140739821 +239041,1195.2050000144834,-0.0623542555622161 +239042,1195.2100000144835,-0.06235282010834529 +239043,1195.2150000144836,-0.062351385045520104 +239044,1195.2200000144837,-0.06234995037347521 +239045,1195.2250000144838,-0.062348516091945645 +239046,1195.230000014484,-0.062347082200666794 +239047,1195.235000014484,-0.06234564869937438 +239048,1195.2400000144842,-0.062344215587804515 +239049,1195.2450000144843,-0.06234278286569365 +239050,1195.2500000144844,-0.062341350532778575 +239051,1195.2550000144845,-0.062339918588796464 +239052,1195.2600000144846,-0.062338487033484824 +239053,1195.2650000144847,-0.06233705586658151 +239054,1195.2700000144848,-0.06233562508782474 +239055,1195.275000014485,-0.062334194696953095 +239056,1195.280000014485,-0.062332764693705474 +239057,1195.2850000144851,-0.062331335077821154 +239058,1195.2900000144853,-0.062329905849039746 +239059,1195.2950000144854,-0.06232847700710123 +239060,1195.3000000144855,-0.062327048551745916 +239061,1195.3050000144856,-0.06232562048271447 +239062,1195.3100000144857,-0.06232419279974791 +239063,1195.3150000144858,-0.06232276550258757 +239064,1195.320000014486,-0.06232133859097519 +239065,1195.325000014486,-0.062319912064652795 +239066,1195.3300000144861,-0.0623184859233628 +239067,1195.3350000144862,-0.06231706016684794 +239068,1195.3400000144863,-0.06231563479485129 +239069,1195.3450000144865,-0.062314209807116314 +239070,1195.3500000144866,-0.06231278520338677 +239071,1195.3550000144867,-0.062311360983406776 +239072,1195.3600000144868,-0.06230993714692078 +239073,1195.365000014487,-0.06230851369367361 +239074,1195.370000014487,-0.06230709062341039 +239075,1195.3750000144871,-0.062305667935876614 +239076,1195.3800000144872,-0.0623042456308181 +239077,1195.3850000144873,-0.062302823707981035 +239078,1195.3900000144874,-0.062301402167111906 +239079,1195.3950000144876,-0.062299981007957556 +239080,1195.4000000144877,-0.062298560230265185 +239081,1195.4050000144878,-0.06229713983378228 +239082,1195.4100000144879,-0.06229571981825673 +239083,1195.415000014488,-0.06229430018343672 +239084,1195.420000014488,-0.062292880929070794 +239085,1195.4250000144882,-0.0622914620549078 +239086,1195.4300000144883,-0.062290043560696944 +239087,1195.4350000144884,-0.06228862544618777 +239088,1195.4400000144885,-0.06228720771113014 +239089,1195.4450000144886,-0.06228579035527426 +239090,1195.4500000144888,-0.06228437337837067 +239091,1195.4550000144889,-0.062282956780170255 +239092,1195.460000014489,-0.0622815405604242 +239093,1195.465000014489,-0.06228012471888407 +239094,1195.4700000144892,-0.06227870925530169 +239095,1195.4750000144893,-0.0622772941694293 +239096,1195.4800000144894,-0.0622758794610194 +239097,1195.4850000144895,-0.06227446512982486 +239098,1195.4900000144896,-0.062273051175598865 +239099,1195.4950000144897,-0.062271637598094925 +239100,1195.5000000144898,-0.0622702243970669 +239101,1195.50500001449,-0.06226881157226895 +239102,1195.51000001449,-0.06226739912345556 +239103,1195.5150000144902,-0.0622659870503816 +239104,1195.5200000144903,-0.062264575352802186 +239105,1195.5250000144904,-0.06226316403047281 +239106,1195.5300000144905,-0.062261753083149275 +239107,1195.5350000144906,-0.06226034251058771 +239108,1195.5400000144907,-0.062258932312544576 +239109,1195.5450000144908,-0.06225752248877663 +239110,1195.550000014491,-0.062256113039041 +239111,1195.555000014491,-0.0622547039630951 +239112,1195.5600000144912,-0.06225329526069666 +239113,1195.5650000144913,-0.06225188693160378 +239114,1195.5700000144914,-0.06225047897557482 +239115,1195.5750000144915,-0.06224907139236851 +239116,1195.5800000144916,-0.06224766418174387 +239117,1195.5850000144917,-0.06224625734346026 +239118,1195.5900000144918,-0.062244850877277345 +239119,1195.595000014492,-0.06224344478295511 +239120,1195.600000014492,-0.06224203906025388 +239121,1195.6050000144921,-0.06224063370893427 +239122,1195.6100000144922,-0.06223922872875723 +239123,1195.6150000144924,-0.06223782411948402 +239124,1195.6200000144925,-0.06223641988087621 +239125,1195.6250000144926,-0.06223501601269571 +239126,1195.6300000144927,-0.06223361251470472 +239127,1195.6350000144928,-0.06223220938666576 +239128,1195.640000014493,-0.06223080662834167 +239129,1195.645000014493,-0.062229404239495606 +239130,1195.6500000144931,-0.062228002219891054 +239131,1195.6550000144932,-0.06222660056929178 +239132,1195.6600000144933,-0.062225199287461876 +239133,1195.6650000144934,-0.06222379837416576 +239134,1195.6700000144936,-0.06222239782916813 +239135,1195.6750000144937,-0.06222099765223403 +239136,1195.6800000144938,-0.06221959784312881 +239137,1195.6850000144939,-0.06221819840161811 +239138,1195.690000014494,-0.062216799327467896 +239139,1195.695000014494,-0.06221540062044443 +239140,1195.7000000144942,-0.06221400228031429 +239141,1195.7050000144943,-0.06221260430684439 +239142,1195.7100000144944,-0.062211206699801895 +239143,1195.7150000144945,-0.062209809458954324 +239144,1195.7200000144946,-0.06220841258406949 +239145,1195.7250000144948,-0.062207016074915515 +239146,1195.7300000144949,-0.062205619931260815 +239147,1195.735000014495,-0.06220422415287413 +239148,1195.740000014495,-0.06220282873952449 +239149,1195.7450000144952,-0.06220143369098123 +239150,1195.7500000144953,-0.06220003900701401 +239151,1195.7550000144954,-0.06219864468739277 +239152,1195.7600000144955,-0.06219725073188776 +239153,1195.7650000144956,-0.06219585714026955 +239154,1195.7700000144957,-0.06219446391230899 +239155,1195.7750000144958,-0.062193071047777236 +239156,1195.780000014496,-0.06219167854644576 +239157,1195.785000014496,-0.06219028640808631 +239158,1195.7900000144962,-0.062188894632470966 +239159,1195.7950000144963,-0.06218750321937209 +239160,1195.8000000144964,-0.062186112168562346 +239161,1195.8050000144965,-0.0621847214798147 +239162,1195.8100000144966,-0.0621833311529024 +239163,1195.8150000144967,-0.062181941187599024 +239164,1195.8200000144968,-0.062180551583678426 +239165,1195.825000014497,-0.06217916234091476 +239166,1195.830000014497,-0.062177773459082486 +239167,1195.8350000144972,-0.06217638493795636 +239168,1195.8400000144973,-0.06217499677731142 +239169,1195.8450000144974,-0.06217360897692302 +239170,1195.8500000144975,-0.0621722215365668 +239171,1195.8550000144976,-0.06217083445601867 +239172,1195.8600000144977,-0.062169447735054874 +239173,1195.8650000144978,-0.06216806137345195 +239174,1195.870000014498,-0.0621666753709867 +239175,1195.875000014498,-0.06216528972743622 +239176,1195.8800000144981,-0.06216390444257793 +239177,1195.8850000144982,-0.06216251951618952 +239178,1195.8900000144984,-0.06216113494804897 +239179,1195.8950000144985,-0.06215975073793456 +239180,1195.9000000144986,-0.06215836688562486 +239181,1195.9050000144987,-0.062156983390898715 +239182,1195.9100000144988,-0.062155600253535295 +239183,1195.915000014499,-0.06215421747331404 +239184,1195.920000014499,-0.06215283505001466 +239185,1195.9250000144991,-0.06215145298341718 +239186,1195.9300000144992,-0.06215007127330189 +239187,1195.9350000144993,-0.06214868991944941 +239188,1195.9400000144994,-0.0621473089216406 +239189,1195.9450000144996,-0.062145928279656634 +239190,1195.9500000144997,-0.06214454799327896 +239191,1195.9550000144998,-0.06214316806228933 +239192,1195.9600000144999,-0.062141788486469764 +239193,1195.9650000145,-0.06214040926560256 +239194,1195.9700000145,-0.06213903039947033 +239195,1195.9750000145002,-0.06213765188785594 +239196,1195.9800000145003,-0.06213627373054257 +239197,1195.9850000145004,-0.06213489592731365 +239198,1195.9900000145005,-0.06213351847795292 +239199,1195.9950000145006,-0.0621321413822444 +239200,1196.0000000145008,-0.06213076463997237 +239201,1196.0050000145009,-0.06212938825092142 +239202,1196.010000014501,-0.062128012214876405 +239203,1196.015000014501,-0.06212663653162247 +239204,1196.0200000145012,-0.06212526120094503 +239205,1196.0250000145013,-0.06212388622262979 +239206,1196.0300000145014,-0.06212251159646273 +239207,1196.0350000145015,-0.0621211373222301 +239208,1196.0400000145016,-0.06211976339971844 +239209,1196.0450000145017,-0.06211838982871457 +239210,1196.0500000145018,-0.06211701660900559 +239211,1196.055000014502,-0.062115643740378874 +239212,1196.060000014502,-0.062114271222622065 +239213,1196.0650000145022,-0.062112899055523085 +239214,1196.0700000145023,-0.06211152723887015 +239215,1196.0750000145024,-0.062110155772451735 +239216,1196.0800000145025,-0.062108784656056584 +239217,1196.0850000145026,-0.06210741388947375 +239218,1196.0900000145027,-0.06210604347249252 +239219,1196.0950000145028,-0.06210467340490247 +239220,1196.100000014503,-0.062103303686493465 +239221,1196.105000014503,-0.06210193431705561 +239222,1196.1100000145032,-0.06210056529637931 +239223,1196.1150000145033,-0.06209919662425526 +239224,1196.1200000145034,-0.062097828300474375 +239225,1196.1250000145035,-0.062096460324827886 +239226,1196.1300000145036,-0.06209509269710729 +239227,1196.1350000145037,-0.062093725417104326 +239228,1196.1400000145038,-0.062092358484611025 +239229,1196.145000014504,-0.06209099189941969 +239230,1196.150000014504,-0.06208962566132289 +239231,1196.1550000145041,-0.06208825977011345 +239232,1196.1600000145042,-0.062086894225584485 +239233,1196.1650000145044,-0.062085529027529375 +239234,1196.1700000145045,-0.062084164175741766 +239235,1196.1750000145046,-0.062082799670015565 +239236,1196.1800000145047,-0.062081435510144944 +239237,1196.1850000145048,-0.062080071695924346 +239238,1196.190000014505,-0.0620787082271485 +239239,1196.195000014505,-0.06207734510361236 +239240,1196.2000000145051,-0.06207598232511118 +239241,1196.2050000145052,-0.06207461989144048 +239242,1196.2100000145053,-0.06207325780239603 +239243,1196.2150000145054,-0.06207189605777386 +239244,1196.2200000145056,-0.06207053465737026 +239245,1196.2250000145057,-0.062069173600981825 +239246,1196.2300000145058,-0.06206781288840537 +239247,1196.2350000145059,-0.06206645251943799 +239248,1196.240000014506,-0.06206509249387702 +239249,1196.245000014506,-0.0620637328115201 +239250,1196.2500000145062,-0.06206237347216511 +239251,1196.2550000145063,-0.06206101447561017 +239252,1196.2600000145064,-0.062059655821653695 +239253,1196.2650000145065,-0.06205829751009433 +239254,1196.2700000145066,-0.06205693954073102 +239255,1196.2750000145068,-0.062055581913362946 +239256,1196.2800000145069,-0.06205422462778953 +239257,1196.285000014507,-0.062052867683810464 +239258,1196.290000014507,-0.062051511081225724 +239259,1196.2950000145072,-0.06205015481983553 +239260,1196.3000000145073,-0.062048798899440344 +239261,1196.3050000145074,-0.0620474433198409 +239262,1196.3100000145075,-0.062046088080838176 +239263,1196.3150000145076,-0.06204473318223344 +239264,1196.3200000145077,-0.06204337862382818 +239265,1196.3250000145079,-0.06204202440542415 +239266,1196.330000014508,-0.06204067052682336 +239267,1196.335000014508,-0.06203931698782809 +239268,1196.3400000145082,-0.06203796378824085 +239269,1196.3450000145083,-0.062036610927864416 +239270,1196.3500000145084,-0.06203525840650183 +239271,1196.3550000145085,-0.06203390622395635 +239272,1196.3600000145086,-0.062032554380031545 +239273,1196.3650000145087,-0.06203120287453118 +239274,1196.3700000145088,-0.0620298517072593 +239275,1196.375000014509,-0.06202850087802021 +239276,1196.380000014509,-0.06202715038661846 +239277,1196.3850000145092,-0.06202580023285883 +239278,1196.3900000145093,-0.062024450416546376 +239279,1196.3950000145094,-0.06202310093748639 +239280,1196.4000000145095,-0.06202175179548442 +239281,1196.4050000145096,-0.06202040299034627 +239282,1196.4100000145097,-0.062019054521877975 +239283,1196.4150000145098,-0.062017706389885845 +239284,1196.42000001451,-0.062016358594176424 +239285,1196.42500001451,-0.06201501113455649 +239286,1196.4300000145101,-0.062013664010833094 +239287,1196.4350000145103,-0.06201231722281352 +239288,1196.4400000145104,-0.062010970770305325 +239289,1196.4450000145105,-0.06200962465311625 +239290,1196.4500000145106,-0.06200827887105435 +239291,1196.4550000145107,-0.06200693342392789 +239292,1196.4600000145108,-0.062005588311545394 +239293,1196.465000014511,-0.06200424353371563 +239294,1196.470000014511,-0.062002899090247594 +239295,1196.4750000145111,-0.06200155498095056 +239296,1196.4800000145112,-0.062000211205634 +239297,1196.4850000145113,-0.06199886776410767 +239298,1196.4900000145115,-0.06199752465618157 +239299,1196.4950000145116,-0.061996181881665904 +239300,1196.5000000145117,-0.06199483944037115 +239301,1196.5050000145118,-0.06199349733210802 +239302,1196.510000014512,-0.06199215555668748 +239303,1196.515000014512,-0.061990814113920704 +239304,1196.520000014512,-0.06198947300361916 +239305,1196.5250000145122,-0.06198813222559448 +239306,1196.5300000145123,-0.061986791779658636 +239307,1196.5350000145124,-0.061985451665623754 +239308,1196.5400000145125,-0.06198411188330225 +239309,1196.5450000145127,-0.06198277243250674 +239310,1196.5500000145128,-0.0619814333130501 +239311,1196.5550000145129,-0.06198009452474548 +239312,1196.560000014513,-0.06197875606740621 +239313,1196.565000014513,-0.06197741794084588 +239314,1196.5700000145132,-0.06197608014487833 +239315,1196.5750000145133,-0.0619747426793176 +239316,1196.5800000145134,-0.06197340554397802 +239317,1196.5850000145135,-0.06197206873867411 +239318,1196.5900000145136,-0.06197073226322067 +239319,1196.5950000145137,-0.0619693961174327 +239320,1196.6000000145139,-0.061968060301125436 +239321,1196.605000014514,-0.06196672481411436 +239322,1196.610000014514,-0.061965389656215196 +239323,1196.6150000145142,-0.0619640548272439 +239324,1196.6200000145143,-0.061962720327016656 +239325,1196.6250000145144,-0.06196138615534987 +239326,1196.6300000145145,-0.0619600523120602 +239327,1196.6350000145146,-0.06195871879696452 +239328,1196.6400000145147,-0.06195738560987996 +239329,1196.6450000145148,-0.06195605275062387 +239330,1196.650000014515,-0.061954720219013826 +239331,1196.655000014515,-0.061953388014867626 +239332,1196.6600000145152,-0.06195205613800334 +239333,1196.6650000145153,-0.06195072458823923 +239334,1196.6700000145154,-0.06194939336539379 +239335,1196.6750000145155,-0.061948062469285775 +239336,1196.6800000145156,-0.06194673189973413 +239337,1196.6850000145157,-0.06194540165655806 +239338,1196.6900000145158,-0.061944071739576986 +239339,1196.695000014516,-0.06194274214861056 +239340,1196.700000014516,-0.061941412883478666 +239341,1196.7050000145161,-0.061940083944001405 +239342,1196.7100000145163,-0.06193875532999911 +239343,1196.7150000145164,-0.061937427041292355 +239344,1196.7200000145165,-0.061936099077701916 +239345,1196.7250000145166,-0.061934771439048804 +239346,1196.7300000145167,-0.06193344412515428 +239347,1196.7350000145168,-0.06193211713583982 +239348,1196.740000014517,-0.061930790470927095 +239349,1196.745000014517,-0.06192946413023803 +239350,1196.7500000145171,-0.06192813811359477 +239351,1196.7550000145172,-0.06192681242081969 +239352,1196.7600000145173,-0.061925487051735374 +239353,1196.7650000145175,-0.06192416200616465 +239354,1196.7700000145176,-0.06192283728393055 +239355,1196.7750000145177,-0.06192151288485634 +239356,1196.7800000145178,-0.06192018880876552 +239357,1196.785000014518,-0.061918865055481775 +239358,1196.790000014518,-0.061917541624829056 +239359,1196.795000014518,-0.061916218516631503 +239360,1196.8000000145182,-0.061914895730713494 +239361,1196.8050000145183,-0.061913573266899634 +239362,1196.8100000145184,-0.061912251125014736 +239363,1196.8150000145185,-0.06191092930488382 +239364,1196.8200000145187,-0.06190960780633216 +239365,1196.8250000145188,-0.061908286629185245 +239366,1196.8300000145189,-0.061906965773268756 +239367,1196.835000014519,-0.061905645238408594 +239368,1196.840000014519,-0.06190432502443092 +239369,1196.8450000145192,-0.06190300513116208 +239370,1196.8500000145193,-0.06190168555842864 +239371,1196.8550000145194,-0.06190036630605739 +239372,1196.8600000145195,-0.061899047373875346 +239373,1196.8650000145196,-0.06189772876170973 +239374,1196.8700000145197,-0.061896410469387986 +239375,1196.8750000145199,-0.06189509249673776 +239376,1196.88000001452,-0.06189377484358694 +239377,1196.88500001452,-0.061892457509763604 +239378,1196.8900000145202,-0.06189114049509605 +239379,1196.8950000145203,-0.061889823799412824 +239380,1196.9000000145204,-0.06188850742254265 +239381,1196.9050000145205,-0.06188719136431446 +239382,1196.9100000145206,-0.06188587562455745 +239383,1196.9150000145207,-0.061884560203100965 +239384,1196.9200000145208,-0.061883245099774616 +239385,1196.925000014521,-0.06188193031440821 +239386,1196.930000014521,-0.06188061584683176 +239387,1196.9350000145212,-0.0618793016968755 +239388,1196.9400000145213,-0.06187798786436987 +239389,1196.9450000145214,-0.06187667434914553 +239390,1196.9500000145215,-0.06187536115103335 +239391,1196.9550000145216,-0.06187404826986439 +239392,1196.9600000145217,-0.06187273570546995 +239393,1196.9650000145218,-0.06187142345768153 +239394,1196.970000014522,-0.061870111526330845 +239395,1196.975000014522,-0.06186879991124981 +239396,1196.9800000145221,-0.061867488612270566 +239397,1196.9850000145223,-0.06186617762922544 +239398,1196.9900000145224,-0.06186486696194697 +239399,1196.9950000145225,-0.061863556610267934 +239400,1197.0000000145226,-0.0618622465740213 +239401,1197.0050000145227,-0.061860936853040234 +239402,1197.0100000145228,-0.0618596274471581 +239403,1197.015000014523,-0.06185831835620853 +239404,1197.020000014523,-0.061857009580025275 +239405,1197.0250000145231,-0.06185570111844237 +239406,1197.0300000145232,-0.06185439297129402 +239407,1197.0350000145233,-0.06185308513841463 +239408,1197.0400000145235,-0.06185177761963884 +239409,1197.0450000145236,-0.06185047041480147 +239410,1197.0500000145237,-0.06184916352373753 +239411,1197.0550000145238,-0.061847856946282295 +239412,1197.060000014524,-0.061846550682271184 +239413,1197.065000014524,-0.061845244731539864 +239414,1197.070000014524,-0.06184393909392418 +239415,1197.0750000145242,-0.06184263376926019 +239416,1197.0800000145243,-0.06184132875738415 +239417,1197.0850000145244,-0.06184002405813251 +239418,1197.0900000145245,-0.06183871967134196 +239419,1197.0950000145247,-0.061837415596849354 +239420,1197.1000000145248,-0.06183611183449176 +239421,1197.1050000145249,-0.06183480838410645 +239422,1197.110000014525,-0.061833505245530905 +239423,1197.115000014525,-0.061832202418602794 +239424,1197.1200000145252,-0.06183089990316001 +239425,1197.1250000145253,-0.06182959769904059 +239426,1197.1300000145254,-0.06182829580608285 +239427,1197.1350000145255,-0.061826994224125256 +239428,1197.1400000145256,-0.06182569295300648 +239429,1197.1450000145257,-0.06182439199256541 +239430,1197.1500000145259,-0.06182309134264112 +239431,1197.155000014526,-0.061821791003072876 +239432,1197.160000014526,-0.06182049097370016 +239433,1197.1650000145262,-0.06181919125436264 +239434,1197.1700000145263,-0.06181789184490018 +239435,1197.1750000145264,-0.061816592745152846 +239436,1197.1800000145265,-0.06181529395496092 +239437,1197.1850000145266,-0.06181399547416486 +239438,1197.1900000145267,-0.061812697302605316 +239439,1197.1950000145268,-0.061811399440123156 +239440,1197.200000014527,-0.06181010188655941 +239441,1197.205000014527,-0.061808804641755345 +239442,1197.2100000145272,-0.0618075077055524 +239443,1197.2150000145273,-0.06180621107779222 +239444,1197.2200000145274,-0.06180491475831663 +239445,1197.2250000145275,-0.06180361874696766 +239446,1197.2300000145276,-0.061802323043587536 +239447,1197.2350000145277,-0.06180102764801866 +239448,1197.2400000145278,-0.06179973256010367 +239449,1197.245000014528,-0.06179843777968534 +239450,1197.250000014528,-0.0617971433066067 +239451,1197.2550000145282,-0.061795849140710915 +239452,1197.2600000145283,-0.061794555281841385 +239453,1197.2650000145284,-0.061793261729841675 +239454,1197.2700000145285,-0.06179196848455556 +239455,1197.2750000145286,-0.061790675545826984 +239456,1197.2800000145287,-0.06178938291350012 +239457,1197.2850000145288,-0.061788090587419305 +239458,1197.290000014529,-0.06178679856742907 +239459,1197.295000014529,-0.061785506853374146 +239460,1197.3000000145291,-0.06178421544509942 +239461,1197.3050000145292,-0.06178292434245003 +239462,1197.3100000145294,-0.06178163354527125 +239463,1197.3150000145295,-0.06178034305340857 +239464,1197.3200000145296,-0.06177905286670767 +239465,1197.3250000145297,-0.0617777629850144 +239466,1197.3300000145298,-0.061776473408174826 +239467,1197.33500001453,-0.061775184136035166 +239468,1197.34000001453,-0.06177389516844187 +239469,1197.3450000145301,-0.061772606505241544 +239470,1197.3500000145302,-0.06177131814628098 +239471,1197.3550000145303,-0.06177003009140718 +239472,1197.3600000145304,-0.061768742340467316 +239473,1197.3650000145306,-0.06176745489330875 +239474,1197.3700000145307,-0.06176616774977905 +239475,1197.3750000145308,-0.06176488090972592 +239476,1197.3800000145309,-0.06176359437299729 +239477,1197.385000014531,-0.06176230813944127 +239478,1197.390000014531,-0.06176102220890617 +239479,1197.3950000145312,-0.06175973658124045 +239480,1197.4000000145313,-0.06175845125629277 +239481,1197.4050000145314,-0.06175716623391199 +239482,1197.4100000145315,-0.06175588151394712 +239483,1197.4150000145316,-0.06175459709624738 +239484,1197.4200000145318,-0.06175331298066219 +239485,1197.4250000145319,-0.0617520291670411 +239486,1197.430000014532,-0.0617507456552339 +239487,1197.435000014532,-0.06174946244509052 +239488,1197.4400000145322,-0.0617481795364611 +239489,1197.4450000145323,-0.061746896929195945 +239490,1197.4500000145324,-0.061745614623145546 +239491,1197.4550000145325,-0.061744332618160584 +239492,1197.4600000145326,-0.061743050914091914 +239493,1197.4650000145327,-0.061741769510790565 +239494,1197.4700000145328,-0.061740488408107766 +239495,1197.475000014533,-0.06173920760589491 +239496,1197.480000014533,-0.061737927104003575 +239497,1197.4850000145332,-0.06173664690228553 +239498,1197.4900000145333,-0.061735367000592706 +239499,1197.4950000145334,-0.06173408739877722 +239500,1197.5000000145335,-0.06173280809669137 +239501,1197.5050000145336,-0.06173152909418764 +239502,1197.5100000145337,-0.06173025039111866 +239503,1197.5150000145338,-0.06172897198733729 +239504,1197.520000014534,-0.06172769388269653 +239505,1197.525000014534,-0.06172641607704957 +239506,1197.5300000145342,-0.06172513857024977 +239507,1197.5350000145343,-0.06172386136215069 +239508,1197.5400000145344,-0.06172258445260605 +239509,1197.5450000145345,-0.06172130784146972 +239510,1197.5500000145346,-0.061720031528595815 +239511,1197.5550000145347,-0.06171875551383855 +239512,1197.5600000145348,-0.06171747979705237 +239513,1197.565000014535,-0.06171620437809186 +239514,1197.570000014535,-0.06171492925681182 +239515,1197.5750000145351,-0.06171365443306719 +239516,1197.5800000145352,-0.0617123799067131 +239517,1197.5850000145354,-0.06171110567760485 +239518,1197.5900000145355,-0.06170983174559791 +239519,1197.5950000145356,-0.06170855811054794 +239520,1197.6000000145357,-0.06170728477231077 +239521,1197.6050000145358,-0.06170601173074239 +239522,1197.610000014536,-0.06170473898569897 +239523,1197.615000014536,-0.061703466537036844 +239524,1197.6200000145361,-0.06170219438461254 +239525,1197.6250000145362,-0.06170092252828275 +239526,1197.6300000145363,-0.06169965096790432 +239527,1197.6350000145364,-0.0616983797033343 +239528,1197.6400000145366,-0.06169710873442989 +239529,1197.6450000145367,-0.06169583806104846 +239530,1197.6500000145368,-0.06169456768304757 +239531,1197.6550000145369,-0.06169329760028492 +239532,1197.660000014537,-0.06169202781261842 +239533,1197.665000014537,-0.06169075831990613 +239534,1197.6700000145372,-0.06168948912200625 +239535,1197.6750000145373,-0.06168822021877722 +239536,1197.6800000145374,-0.06168695161007759 +239537,1197.6850000145375,-0.06168568329576608 +239538,1197.6900000145376,-0.06168441527570164 +239539,1197.6950000145378,-0.061683147549743314 +239540,1197.7000000145379,-0.06168188011775035 +239541,1197.705000014538,-0.06168061297958218 +239542,1197.710000014538,-0.06167934613509837 +239543,1197.7150000145382,-0.06167807958415868 +239544,1197.7200000145383,-0.06167681332662302 +239545,1197.7250000145384,-0.06167554736235148 +239546,1197.7300000145385,-0.061674281691204313 +239547,1197.7350000145386,-0.06167301631304193 +239548,1197.7400000145387,-0.061671751227724926 +239549,1197.7450000145388,-0.061670486435114046 +239550,1197.750000014539,-0.06166922193507021 +239551,1197.755000014539,-0.06166795772745451 +239552,1197.7600000145392,-0.06166669381212817 +239553,1197.7650000145393,-0.061665430188952625 +239554,1197.7700000145394,-0.06166416685778946 +239555,1197.7750000145395,-0.0616629038185004 +239556,1197.7800000145396,-0.061661641070947355 +239557,1197.7850000145397,-0.06166037861499241 +239558,1197.7900000145398,-0.061659116450497806 +239559,1197.79500001454,-0.061657854577325935 +239560,1197.80000001454,-0.06165659299533937 +239561,1197.8050000145402,-0.06165533170440082 +239562,1197.8100000145403,-0.0616540707043732 +239563,1197.8150000145404,-0.06165280999511955 +239564,1197.8200000145405,-0.0616515495765031 +239565,1197.8250000145406,-0.06165028944838721 +239566,1197.8300000145407,-0.06164902961063544 +239567,1197.8350000145408,-0.06164777006311148 +239568,1197.840000014541,-0.0616465108056792 +239569,1197.845000014541,-0.061645251838202623 +239570,1197.8500000145411,-0.06164399316054593 +239571,1197.8550000145412,-0.06164273477257349 +239572,1197.8600000145414,-0.061641476674149785 +239573,1197.8650000145415,-0.061640218865139505 +239574,1197.8700000145416,-0.061638961345407466 +239575,1197.8750000145417,-0.06163770411481868 +239576,1197.8800000145418,-0.061636447173238254 +239577,1197.885000014542,-0.06163519052053154 +239578,1197.890000014542,-0.061633934156563985 +239579,1197.8950000145421,-0.06163267808120121 +239580,1197.9000000145422,-0.061631422294309006 +239581,1197.9050000145423,-0.06163016679575331 +239582,1197.9100000145424,-0.06162891158540023 +239583,1197.9150000145426,-0.06162765666311603 +239584,1197.9200000145427,-0.06162640202876712 +239585,1197.9250000145428,-0.06162514768222009 +239586,1197.9300000145429,-0.06162389362334166 +239587,1197.935000014543,-0.061622639851998715 +239588,1197.940000014543,-0.0616213863680583 +239589,1197.9450000145432,-0.06162013317138762 +239590,1197.9500000145433,-0.061618880261854046 +239591,1197.9550000145434,-0.06161762763932508 +239592,1197.9600000145435,-0.061616375303668404 +239593,1197.9650000145436,-0.06161512325475184 +239594,1197.9700000145438,-0.06161387149244335 +239595,1197.9750000145439,-0.0616126200166111 +239596,1197.980000014544,-0.06161136882712337 +239597,1197.985000014544,-0.06161011792384861 +239598,1197.9900000145442,-0.0616088673066554 +239599,1197.9950000145443,-0.061607616975412526 +239600,1198.0000000145444,-0.06160636692998888 +239601,1198.0050000145445,-0.06160511717025352 +239602,1198.0100000145446,-0.06160386769607568 +239603,1198.0150000145447,-0.06160261850732472 +239604,1198.0200000145448,-0.06160136960387016 +239605,1198.025000014545,-0.061600120985581666 +239606,1198.030000014545,-0.06159887265232909 +239607,1198.0350000145452,-0.061597624603982395 +239608,1198.0400000145453,-0.06159637684041172 +239609,1198.0450000145454,-0.06159512936148735 +239610,1198.0500000145455,-0.061593882167079714 +239611,1198.0550000145456,-0.0615926352570594 +239612,1198.0600000145457,-0.061591388631297164 +239613,1198.0650000145458,-0.06159014228966388 +239614,1198.070000014546,-0.06158889623203058 +239615,1198.075000014546,-0.06158765045826847 +239616,1198.0800000145462,-0.06158640496824889 +239617,1198.0850000145463,-0.06158515976184332 +239618,1198.0900000145464,-0.061583914838923406 +239619,1198.0950000145465,-0.06158267019936095 +239620,1198.1000000145466,-0.06158142584302787 +239621,1198.1050000145467,-0.06158018176979627 +239622,1198.1100000145468,-0.06157893797953838 +239623,1198.115000014547,-0.0615776944721266 +239624,1198.120000014547,-0.06157645124743345 +239625,1198.1250000145471,-0.06157520830533163 +239626,1198.1300000145472,-0.061573965645693944 +239627,1198.1350000145474,-0.06157272326839341 +239628,1198.1400000145475,-0.06157148117330311 +239629,1198.1450000145476,-0.061570239360296354 +239630,1198.1500000145477,-0.06156899782924654 +239631,1198.1550000145478,-0.06156775658002725 +239632,1198.160000014548,-0.06156651561251219 +239633,1198.165000014548,-0.06156527492657523 +239634,1198.1700000145481,-0.06156403452209037 +239635,1198.1750000145482,-0.06156279439893176 +239636,1198.1800000145483,-0.06156155455697371 +239637,1198.1850000145485,-0.06156031499609065 +239638,1198.1900000145486,-0.061559075716157194 +239639,1198.1950000145487,-0.061557836717048064 +239640,1198.2000000145488,-0.06155659799863814 +239641,1198.205000014549,-0.06155535956080244 +239642,1198.210000014549,-0.06155412140341615 +239643,1198.215000014549,-0.06155288352635457 +239644,1198.2200000145492,-0.06155164592949315 +239645,1198.2250000145493,-0.061550408612707504 +239646,1198.2300000145494,-0.061549171575873377 +239647,1198.2350000145495,-0.061547934818866654 +239648,1198.2400000145497,-0.06154669834156337 +239649,1198.2450000145498,-0.0615454621438397 +239650,1198.2500000145499,-0.06154422622557195 +239651,1198.25500001455,-0.06154299058663659 +239652,1198.26000001455,-0.06154175522691023 +239653,1198.2650000145502,-0.06154052014626959 +239654,1198.2700000145503,-0.06153928534459158 +239655,1198.2750000145504,-0.061538050821753204 +239656,1198.2800000145505,-0.06153681657763166 +239657,1198.2850000145506,-0.061535582612104234 +239658,1198.2900000145507,-0.061534348925048395 +239659,1198.2950000145509,-0.06153311551634171 +239660,1198.300000014551,-0.061531882385861936 +239661,1198.305000014551,-0.061530649533486935 +239662,1198.3100000145512,-0.06152941695909473 +239663,1198.3150000145513,-0.06152818466256346 +239664,1198.3200000145514,-0.06152695264377144 +239665,1198.3250000145515,-0.06152572090259707 +239666,1198.3300000145516,-0.06152448943891895 +239667,1198.3350000145517,-0.06152325825261578 +239668,1198.3400000145518,-0.06152202734356641 +239669,1198.345000014552,-0.061520796711649825 +239670,1198.350000014552,-0.06151956635674516 +239671,1198.3550000145522,-0.06151833627873167 +239672,1198.3600000145523,-0.061517106477488766 +239673,1198.3650000145524,-0.061515876952895995 +239674,1198.3700000145525,-0.061514647704833024 +239675,1198.3750000145526,-0.06151341873317966 +239676,1198.3800000145527,-0.061512190037815884 +239677,1198.3850000145528,-0.06151096161862177 +239678,1198.390000014553,-0.061509733475477536 +239679,1198.395000014553,-0.06150850560826356 +239680,1198.4000000145531,-0.06150727801686034 +239681,1198.4050000145533,-0.061506050701148514 +239682,1198.4100000145534,-0.061504823661008845 +239683,1198.4150000145535,-0.06150359689632225 +239684,1198.4200000145536,-0.061502370406969764 +239685,1198.4250000145537,-0.06150114419283257 +239686,1198.4300000145538,-0.06149991825379199 +239687,1198.435000014554,-0.06149869258972946 +239688,1198.440000014554,-0.061497467200526575 +239689,1198.4450000145541,-0.06149624208606505 +239690,1198.4500000145542,-0.06149501724622674 +239691,1198.4550000145543,-0.06149379268089362 +239692,1198.4600000145545,-0.06149256838994782 +239693,1198.4650000145546,-0.061491344373271604 +239694,1198.4700000145547,-0.061490120630747346 +239695,1198.4750000145548,-0.06148889716225756 +239696,1198.480000014555,-0.06148767396768491 +239697,1198.485000014555,-0.061486451046912194 +239698,1198.490000014555,-0.06148522839982233 +239699,1198.4950000145552,-0.06148400602629836 +239700,1198.5000000145553,-0.06148278392622348 +239701,1198.5050000145554,-0.06148156209948098 +239702,1198.5100000145555,-0.06148034054595435 +239703,1198.5150000145557,-0.06147911926552715 +239704,1198.5200000145558,-0.061477898258083086 +239705,1198.5250000145559,-0.06147667752350602 +239706,1198.530000014556,-0.061475457061679895 +239707,1198.535000014556,-0.06147423687248885 +239708,1198.5400000145562,-0.061473016955817104 +239709,1198.5450000145563,-0.061471797311549024 +239710,1198.5500000145564,-0.061470577939569115 +239711,1198.5550000145565,-0.061469358839762 +239712,1198.5600000145566,-0.06146814001201243 +239713,1198.5650000145567,-0.061466921456205297 +239714,1198.5700000145569,-0.06146570317222563 +239715,1198.575000014557,-0.06146448515995857 +239716,1198.580000014557,-0.06146326741928938 +239717,1198.5850000145572,-0.06146204995010348 +239718,1198.5900000145573,-0.06146083275228638 +239719,1198.5950000145574,-0.06145961582572376 +239720,1198.6000000145575,-0.06145839917030141 +239721,1198.6050000145576,-0.061457182785905236 +239722,1198.6100000145577,-0.0614559666724213 +239723,1198.6150000145578,-0.06145475082973576 +239724,1198.620000014558,-0.06145353525773493 +239725,1198.625000014558,-0.061452319956305235 +239726,1198.6300000145582,-0.061451104925333226 +239727,1198.6350000145583,-0.061449890164705596 +239728,1198.6400000145584,-0.061448675674309144 +239729,1198.6450000145585,-0.061447461454030815 +239730,1198.6500000145586,-0.06144624750375766 +239731,1198.6550000145587,-0.06144503382337689 +239732,1198.6600000145588,-0.061443820412775796 +239733,1198.665000014559,-0.06144260727184182 +239734,1198.670000014559,-0.061441394400462555 +239735,1198.6750000145591,-0.06144018179852567 +239736,1198.6800000145593,-0.061438969465919 +239737,1198.6850000145594,-0.061437757402530484 +239738,1198.6900000145595,-0.06143654560824817 +239739,1198.6950000145596,-0.06143533408296027 +239740,1198.7000000145597,-0.06143412282655508 +239741,1198.7050000145598,-0.06143291183892107 +239742,1198.71000001456,-0.061431701119946794 +239743,1198.71500001456,-0.061430490669520936 +239744,1198.7200000145601,-0.06142928048753231 +239745,1198.7250000145602,-0.06142807057386986 +239746,1198.7300000145603,-0.061426860928422644 +239747,1198.7350000145605,-0.06142565155107984 +239748,1198.7400000145606,-0.061424442441730766 +239749,1198.7450000145607,-0.06142323360026484 +239750,1198.7500000145608,-0.06142202502657162 +239751,1198.755000014561,-0.06142081672054077 +239752,1198.760000014561,-0.06141960868206211 +239753,1198.765000014561,-0.06141840091102553 +239754,1198.7700000145612,-0.061417193407321095 +239755,1198.7750000145613,-0.06141598617083897 +239756,1198.7800000145614,-0.06141477920146941 +239757,1198.7850000145615,-0.061413572499102856 +239758,1198.7900000145617,-0.06141236606362982 +239759,1198.7950000145618,-0.06141115989494094 +239760,1198.8000000145619,-0.06140995399292699 +239761,1198.805000014562,-0.06140874835747887 +239762,1198.810000014562,-0.06140754298848758 +239763,1198.8150000145622,-0.06140633788584425 +239764,1198.8200000145623,-0.06140513304944014 +239765,1198.8250000145624,-0.061403928479166626 +239766,1198.8300000145625,-0.06140272417491518 +239767,1198.8350000145626,-0.06140152013657742 +239768,1198.8400000145627,-0.06140031636404507 +239769,1198.8450000145629,-0.061399112857209975 +239770,1198.850000014563,-0.061397909615964114 +239771,1198.855000014563,-0.06139670664019957 +239772,1198.8600000145632,-0.06139550392980854 +239773,1198.8650000145633,-0.061394301484683354 +239774,1198.8700000145634,-0.06139309930471646 +239775,1198.8750000145635,-0.06139189738980041 +239776,1198.8800000145636,-0.061390695739827875 +239777,1198.8850000145637,-0.06138949435469167 +239778,1198.8900000145638,-0.06138829323428469 +239779,1198.895000014564,-0.06138709237849997 +239780,1198.900000014564,-0.06138589178723066 +239781,1198.9050000145642,-0.061384691460370025 +239782,1198.9100000145643,-0.06138349139781144 +239783,1198.9150000145644,-0.061382291599448406 +239784,1198.9200000145645,-0.06138109206517456 +239785,1198.9250000145646,-0.0613798927948836 +239786,1198.9300000145647,-0.06137869378846939 +239787,1198.9350000145648,-0.061377495045825896 +239788,1198.940000014565,-0.06137629656684719 +239789,1198.945000014565,-0.061375098351427466 +239790,1198.9500000145651,-0.061373900399461036 +239791,1198.9550000145653,-0.06137270271084234 +239792,1198.9600000145654,-0.06137150528546589 +239793,1198.9650000145655,-0.061370308123226365 +239794,1198.9700000145656,-0.06136911122401852 +239795,1198.9750000145657,-0.061367914587737264 +239796,1198.9800000145658,-0.06136671821427757 +239797,1198.985000014566,-0.061365522103534575 +239798,1198.990000014566,-0.06136432625540349 +239799,1198.9950000145661,-0.06136313066977965 +239800,1199.0000000145662,-0.06136193534655854 +239801,1199.0050000145663,-0.06136074028563571 +239802,1199.0100000145665,-0.06135954548690686 +239803,1199.0150000145666,-0.06135835095026775 +239804,1199.0200000145667,-0.061357156675614324 +239805,1199.0250000145668,-0.06135596266284257 +239806,1199.030000014567,-0.061354768911848656 +239807,1199.035000014567,-0.061353575422528804 +239808,1199.040000014567,-0.0613523821947794 +239809,1199.0450000145672,-0.061351189228496895 +239810,1199.0500000145673,-0.06134999652357787 +239811,1199.0550000145674,-0.06134880407991905 +239812,1199.0600000145675,-0.06134761189741721 +239813,1199.0650000145677,-0.061346419975969284 +239814,1199.0700000145678,-0.061345228315472296 +239815,1199.0750000145679,-0.061344036915823394 +239816,1199.080000014568,-0.061342845776919834 +239817,1199.085000014568,-0.06134165489865896 +239818,1199.0900000145682,-0.06134046428093826 +239819,1199.0950000145683,-0.061339273923655326 +239820,1199.1000000145684,-0.06133808382670784 +239821,1199.1050000145685,-0.06133689398999361 +239822,1199.1100000145686,-0.061335704413410554 +239823,1199.1150000145687,-0.061334515096856695 +239824,1199.1200000145689,-0.06133332604023016 +239825,1199.125000014569,-0.061332137243429216 +239826,1199.130000014569,-0.06133094870635219 +239827,1199.1350000145692,-0.06132976042889756 +239828,1199.1400000145693,-0.0613285724109639 +239829,1199.1450000145694,-0.06132738465244988 +239830,1199.1500000145695,-0.0613261971532543 +239831,1199.1550000145696,-0.06132500991327605 +239832,1199.1600000145697,-0.061323822932414146 +239833,1199.1650000145698,-0.061322636210567695 +239834,1199.17000001457,-0.061321449747635925 +239835,1199.17500001457,-0.061320263543518154 +239836,1199.1800000145702,-0.061319077598113836 +239837,1199.1850000145703,-0.0613178919113225 +239838,1199.1900000145704,-0.06131670648304382 +239839,1199.1950000145705,-0.061315521313177544 +239840,1199.2000000145706,-0.06131433640162354 +239841,1199.2050000145707,-0.06131315174828179 +239842,1199.2100000145708,-0.06131196735305235 +239843,1199.215000014571,-0.06131078321583545 +239844,1199.220000014571,-0.06130959933653135 +239845,1199.2250000145712,-0.06130841571504047 +239846,1199.2300000145713,-0.0613072323512633 +239847,1199.2350000145714,-0.061306049245100455 +239848,1199.2400000145715,-0.06130486639645267 +239849,1199.2450000145716,-0.061303683805220756 +239850,1199.2500000145717,-0.06130250147130565 +239851,1199.2550000145718,-0.06130131939460839 +239852,1199.260000014572,-0.06130013757503009 +239853,1199.265000014572,-0.06129895601247203 +239854,1199.2700000145721,-0.06129777470683554 +239855,1199.2750000145722,-0.06129659365802208 +239856,1199.2800000145724,-0.0612954128659332 +239857,1199.2850000145725,-0.06129423233047058 +239858,1199.2900000145726,-0.06129305205153597 +239859,1199.2950000145727,-0.061291872029031254 +239860,1199.3000000145728,-0.0612906922628584 +239861,1199.305000014573,-0.061289512752919495 +239862,1199.310000014573,-0.06128833349911672 +239863,1199.3150000145731,-0.061287154501352366 +239864,1199.3200000145732,-0.061285975759528814 +239865,1199.3250000145733,-0.06128479727354855 +239866,1199.3300000145734,-0.061283619043314176 +239867,1199.3350000145736,-0.061282441068728405 +239868,1199.3400000145737,-0.06128126334969402 +239869,1199.3450000145738,-0.06128008588611394 +239870,1199.3500000145739,-0.06127890867789115 +239871,1199.355000014574,-0.061277731724928786 +239872,1199.360000014574,-0.06127655502713003 +239873,1199.3650000145742,-0.061275378584398216 +239874,1199.3700000145743,-0.06127420239663674 +239875,1199.3750000145744,-0.06127302646374914 +239876,1199.3800000145745,-0.06127185078563901 +239877,1199.3850000145746,-0.06127067536221007 +239878,1199.3900000145748,-0.061269500193366154 +239879,1199.3950000145749,-0.06126832527901118 +239880,1199.400000014575,-0.061267150619049165 +239881,1199.405000014575,-0.06126597621338422 +239882,1199.4100000145752,-0.061264802061920594 +239883,1199.4150000145753,-0.06126362816456258 +239884,1199.4200000145754,-0.06126245452121461 +239885,1199.4250000145755,-0.06126128113178122 +239886,1199.4300000145756,-0.06126010799616701 +239887,1199.4350000145757,-0.06125893511427673 +239888,1199.4400000145758,-0.06125776248601518 +239889,1199.445000014576,-0.0612565901112873 +239890,1199.450000014576,-0.06125541798999808 +239891,1199.4550000145762,-0.061254246122052665 +239892,1199.4600000145763,-0.06125307450735627 +239893,1199.4650000145764,-0.06125190314581421 +239894,1199.4700000145765,-0.061250732037331904 +239895,1199.4750000145766,-0.06124956118181487 +239896,1199.4800000145767,-0.06124839057916871 +239897,1199.4850000145768,-0.06124722022929915 +239898,1199.490000014577,-0.06124605013211199 +239899,1199.495000014577,-0.06124488028751314 +239900,1199.5000000145772,-0.06124371069540861 +239901,1199.5050000145773,-0.061242541355704505 +239902,1199.5100000145774,-0.061241372268307004 +239903,1199.5150000145775,-0.061240203433122434 +239904,1199.5200000145776,-0.06123903485005717 +239905,1199.5250000145777,-0.06123786651901771 +239906,1199.5300000145778,-0.061236698439910656 +239907,1199.535000014578,-0.061235530612642676 +239908,1199.540000014578,-0.06123436303712058 +239909,1199.5450000145781,-0.061233195713251205 +239910,1199.5500000145782,-0.061232028640941565 +239911,1199.5550000145784,-0.06123086182009871 +239912,1199.5600000145785,-0.061229695250629816 +239913,1199.5650000145786,-0.06122852893244215 +239914,1199.5700000145787,-0.06122736286544306 +239915,1199.5750000145788,-0.06122619704954001 +239916,1199.580000014579,-0.061225031484640556 +239917,1199.585000014579,-0.06122386617065233 +239918,1199.5900000145791,-0.06122270110748309 +239919,1199.5950000145792,-0.061221536295040666 +239920,1199.6000000145793,-0.061220371733232984 +239921,1199.6050000145794,-0.06121920742196807 +239922,1199.6100000145796,-0.061218043361154044 +239923,1199.6150000145797,-0.061216879550699134 +239924,1199.6200000145798,-0.06121571599051164 +239925,1199.6250000145799,-0.06121455268049997 +239926,1199.63000001458,-0.0612133896205726 +239927,1199.63500001458,-0.06121222681063814 +239928,1199.6400000145802,-0.06121106425060529 +239929,1199.6450000145803,-0.06120990194038281 +239930,1199.6500000145804,-0.06120873987987958 +239931,1199.6550000145805,-0.06120757806900456 +239932,1199.6600000145806,-0.061206416507666804 +239933,1199.6650000145808,-0.06120525519577548 +239934,1199.6700000145809,-0.06120409413323982 +239935,1199.675000014581,-0.06120293331996918 +239936,1199.680000014581,-0.06120177275587297 +239937,1199.6850000145812,-0.061200612440860724 +239938,1199.6900000145813,-0.061199452374842055 +239939,1199.6950000145814,-0.06119829255772666 +239940,1199.7000000145815,-0.06119713298942436 +239941,1199.7050000145816,-0.061195973669845034 +239942,1199.7100000145817,-0.06119481459889866 +239943,1199.7150000145818,-0.06119365577649533 +239944,1199.720000014582,-0.0611924972025452 +239945,1199.725000014582,-0.061191338876958525 +239946,1199.7300000145822,-0.06119018079964566 +239947,1199.7350000145823,-0.061189022970517044 +239948,1199.7400000145824,-0.061187865389483224 +239949,1199.7450000145825,-0.061186708056454805 +239950,1199.7500000145826,-0.0611855509713425 +239951,1199.7550000145827,-0.061184394134057116 +239952,1199.7600000145828,-0.06118323754450956 +239953,1199.765000014583,-0.06118208120261079 +239954,1199.770000014583,-0.061180925108271896 +239955,1199.7750000145832,-0.06117976926140403 +239956,1199.7800000145833,-0.06117861366191848 +239957,1199.7850000145834,-0.06117745830972656 +239958,1199.7900000145835,-0.06117630320473971 +239959,1199.7950000145836,-0.06117514834686946 +239960,1199.8000000145837,-0.06117399373602743 +239961,1199.8050000145838,-0.061172839372125296 +239962,1199.810000014584,-0.06117168525507488 +239963,1199.815000014584,-0.061170531384788035 +239964,1199.8200000145841,-0.06116937776117675 +239965,1199.8250000145842,-0.061168224384153064 +239966,1199.8300000145844,-0.06116707125362915 +239967,1199.8350000145845,-0.061165918369517215 +239968,1199.8400000145846,-0.0611647657317296 +239969,1199.8450000145847,-0.06116361334017872 +239970,1199.8500000145848,-0.06116246119477705 +239971,1199.855000014585,-0.06116130929543719 +239972,1199.860000014585,-0.061160157642071826 +239973,1199.8650000145851,-0.06115900623459371 +239974,1199.8700000145852,-0.0611578550729157 +239975,1199.8750000145853,-0.06115670415695071 +239976,1199.8800000145854,-0.061155553486611794 +239977,1199.8850000145856,-0.06115440306181205 +239978,1199.8900000145857,-0.06115325288246468 +239979,1199.8950000145858,-0.06115210294848298 +239980,1199.9000000145859,-0.061150953259780295 +239981,1199.905000014586,-0.06114980381627011 +239982,1199.910000014586,-0.061148654617865957 +239983,1199.9150000145862,-0.061147505664481475 +239984,1199.9200000145863,-0.06114635695603036 +239985,1199.9250000145864,-0.061145208492426446 +239986,1199.9300000145865,-0.06114406027358361 +239987,1199.9350000145866,-0.061142912299415826 +239988,1199.9400000145868,-0.061141764569837165 +239989,1199.9450000145869,-0.06114061708476176 +239990,1199.950000014587,-0.06113946984410386 +239991,1199.955000014587,-0.06113832284777776 +239992,1199.9600000145872,-0.06113717609569788 +239993,1199.9650000145873,-0.06113602958777871 +239994,1199.9700000145874,-0.06113488332393482 +239995,1199.9750000145875,-0.06113373730408085 +239996,1199.9800000145876,-0.06113259152813157 +239997,1199.9850000145877,-0.06113144599600179 +239998,1199.9900000145878,-0.06113030070760642 +239999,1199.995000014588,-0.06112915566286047 +240000,1200.000000014588,-0.061128010861679 +240001,1200.0050000145882,-0.06115259463098842 +240002,1200.0100000145883,-0.06117491735767433 +240003,1200.0150000145884,-0.06119561284336869 +240004,1200.0200000145885,-0.061215052364270495 +240005,1200.0250000145886,-0.061233477811079386 +240006,1200.0300000145887,-0.061251058509449625 +240007,1200.0350000145888,-0.061267919189474766 +240008,1200.040000014589,-0.06128415530467419 +240009,1200.045000014589,-0.061299842120149224 +240010,1200.0500000145892,-0.06131504043705438 +240011,1200.0550000145893,-0.061329800366186064 +240012,1200.0600000145894,-0.06134416390559413 +240013,1200.0650000145895,-0.06135816675307955 +240014,1200.0700000145896,-0.06137183961274396 +240015,1200.0750000145897,-0.06138520915798688 +240016,1200.0800000145898,-0.06139829875597765 +240017,1200.08500001459,-0.06141112902323266 +240018,1200.09000001459,-0.061423718259400927 +240019,1200.0950000145901,-0.06143608279167769 +240020,1200.1000000145903,-0.0614482372525114 +240021,1200.1050000145904,-0.061460194806687865 +240022,1200.1100000145905,-0.061471967339373094 +240023,1200.1150000145906,-0.06148356561357734 +240024,1200.1200000145907,-0.06149499940331542 +240025,1200.1250000145908,-0.061506277607185626 +240026,1200.130000014591,-0.06151740834597305 +240027,1200.135000014591,-0.06152839904707045 +240028,1200.1400000145911,-0.06153925651790999 +240029,1200.1450000145912,-0.06154998701015106 +240030,1200.1500000145913,-0.06156059627602966 +240031,1200.1550000145915,-0.06157108961801414 +240032,1200.1600000145916,-0.061581471932709304 +240033,1200.1650000145917,-0.0615917477497912 +240034,1200.1700000145918,-0.061601921266627925 +240035,1200.175000014592,-0.06161199637913913 +240036,1200.180000014592,-0.061621976709363764 +240037,1200.185000014592,-0.06163186563013712 +240038,1200.1900000145922,-0.061641666287221515 +240039,1200.1950000145923,-0.06165138161918798 +240040,1200.2000000145924,-0.061661014375306085 +240041,1200.2050000145925,-0.061670567131666174 +240042,1200.2100000145927,-0.061680042305729134 +240043,1200.2150000145928,-0.06168944216947485 +240044,1200.2200000145929,-0.061698768861299526 +240045,1200.225000014593,-0.061708024396794015 +240046,1200.230000014593,-0.06171721067851969 +240047,1200.2350000145932,-0.0617263295048851 +240048,1200.2400000145933,-0.06173538257821467 +240049,1200.2450000145934,-0.06174437151209061 +240050,1200.2500000145935,-0.06175329783804017 +240051,1200.2550000145936,-0.06176216301163261 +240052,1200.2600000145937,-0.06177096841804307 +240053,1200.2650000145939,-0.06177971537713485 +240054,1200.270000014594,-0.06178840514810578 +240055,1200.275000014594,-0.061797038933740014 +240056,1200.2800000145942,-0.061805617884301965 +240057,1200.2850000145943,-0.061814143101105744 +240058,1200.2900000145944,-0.06182261563978976 +240059,1200.2950000145945,-0.061831036513323556 +240060,1200.3000000145946,-0.061839406694770886 +240061,1200.3050000145947,-0.06184772711983104 +240062,1200.3100000145948,-0.06185599868917814 +240063,1200.315000014595,-0.0618642222706162 +240064,1200.320000014595,-0.06187239870106621 +240065,1200.3250000145952,-0.06188052878839972 +240066,1200.3300000145953,-0.061888613313132314 +240067,1200.3350000145954,-0.061896653029988986 +240068,1200.3400000145955,-0.06190464866935224 +240069,1200.3450000145956,-0.06191260093860292 +240070,1200.3500000145957,-0.06192051052336277 +240071,1200.3550000145958,-0.06192837808864687 +240072,1200.360000014596,-0.06193620427993351 +240073,1200.365000014596,-0.06194398972415815 +240074,1200.3700000145961,-0.06195173503063779 +240075,1200.3750000145963,-0.0619594407919314 +240076,1200.3800000145964,-0.06196710758464137 +240077,1200.3850000145965,-0.06197473597016097 +240078,1200.3900000145966,-0.06198232649537188 +240079,1200.3950000145967,-0.061989879693295835 +240080,1200.4000000145968,-0.06199739608370392 +240081,1200.405000014597,-0.06200487617368687 +240082,1200.410000014597,-0.06201232045818924 +240083,1200.4150000145971,-0.062019729420510386 +240084,1200.4200000145972,-0.062027103532774616 +240085,1200.4250000145973,-0.0620344432563729 +240086,1200.4300000145975,-0.06204174904237825 +240087,1200.4350000145976,-0.0620490213319367 +240088,1200.4400000145977,-0.06205626055663572 +240089,1200.4450000145978,-0.062063467138851594 +240090,1200.450000014598,-0.06207064149207739 +240091,1200.455000014598,-0.06207778402123286 +240092,1200.460000014598,-0.06208489512295756 +240093,1200.4650000145982,-0.06209197518588829 +240094,1200.4700000145983,-0.06209902459092203 +240095,1200.4750000145984,-0.062106043711465345 +240096,1200.4800000145985,-0.06211303291367118 +240097,1200.4850000145987,-0.062119992556663776 +240098,1200.4900000145988,-0.062126922992752714 +240099,1200.4950000145989,-0.062133824567636595 +240100,1200.500000014599,-0.06214069762059718 +240101,1200.505000014599,-0.06214754248468444 +240102,1200.5100000145992,-0.06215435948689329 +240103,1200.5150000145993,-0.062161148948332356 +240104,1200.5200000145994,-0.06216791118438535 +240105,1200.5250000145995,-0.0621746465048655 +240106,1200.5300000145996,-0.06218135521416342 +240107,1200.5350000145997,-0.06218803761138889 +240108,1200.5400000145999,-0.06219469399050679 +240109,1200.5450000146,-0.06220132464046756 +240110,1200.5500000146,-0.062207929845332605 +240111,1200.5550000146002,-0.06221450988439479 +240112,1200.5600000146003,-0.06222106503229441 +240113,1200.5650000146004,-0.06222759555913074 +240114,1200.5700000146005,-0.062234101730569535 +240115,1200.5750000146006,-0.06224058380794673 +240116,1200.5800000146007,-0.062247042048368346 +240117,1200.5850000146008,-0.06225347670480693 +240118,1200.590000014601,-0.06225988802619479 +240119,1200.595000014601,-0.06226627625751395 +240120,1200.6000000146012,-0.06227264163988326 +240121,1200.6050000146013,-0.06227898441064252 +240122,1200.6100000146014,-0.06228530480343402 +240123,1200.6150000146015,-0.062291603048281415 +240124,1200.6200000146016,-0.06229787937166624 +240125,1200.6250000146017,-0.06230413399660198 +240126,1200.6300000146018,-0.06231036714270593 +240127,1200.635000014602,-0.06231657902626897 +240128,1200.640000014602,-0.06232276986032322 +240129,1200.6450000146021,-0.062328939854707784 +240130,1200.6500000146023,-0.06233508921613259 +240131,1200.6550000146024,-0.062341218148240445 +240132,1200.6600000146025,-0.06234732685166736 +240133,1200.6650000146026,-0.06235341552410124 +240134,1200.6700000146027,-0.062359484360338925 +240135,1200.6750000146028,-0.062365533552341805 +240136,1200.680000014603,-0.06237156328928987 +240137,1200.685000014603,-0.06237757375763441 +240138,1200.6900000146031,-0.0623835651411493 +240139,1200.6950000146032,-0.062389537620981074 +240140,1200.7000000146033,-0.06239549137569759 +240141,1200.7050000146035,-0.06240142658133563 +240142,1200.7100000146036,-0.0624073434114472 +240143,1200.7150000146037,-0.06241324203714483 +240144,1200.7200000146038,-0.062419122627145614 +240145,1200.725000014604,-0.06242498534781437 +240146,1200.730000014604,-0.062430830363205646 +240147,1200.735000014604,-0.06243665783510477 +240148,1200.7400000146042,-0.062442467923068026 +240149,1200.7450000146043,-0.06244826078446178 +240150,1200.7500000146044,-0.06245403657450079 +240151,1200.7550000146045,-0.06245979544628564 +240152,1200.7600000146047,-0.0624655375508393 +240153,1200.7650000146048,-0.062471263037142934 +240154,1200.7700000146049,-0.06247697205217081 +240155,1200.775000014605,-0.062482664740924565 +240156,1200.780000014605,-0.06248834124646665 +240157,1200.7850000146052,-0.06249400170995307 +240158,1200.7900000146053,-0.06249964627066547 +240159,1200.7950000146054,-0.06250527506604239 +240160,1200.8000000146055,-0.06251088823171008 +240161,1200.8050000146056,-0.0625164859015125 +240162,1200.8100000146057,-0.06252206820754072 +240163,1200.8150000146059,-0.06252763528016178 +240164,1200.820000014606,-0.0625331872480469 +240165,1200.825000014606,-0.06253872423819913 +240166,1200.8300000146062,-0.06254424637598044 +240167,1200.8350000146063,-0.06254975378513823 +240168,1200.8400000146064,-0.06255524658783143 +240169,1200.8450000146065,-0.06256072490465586 +240170,1200.8500000146066,-0.06256618885466927 +240171,1200.8550000146067,-0.06257163855541592 +240172,1200.8600000146068,-0.06257707412295042 +240173,1200.865000014607,-0.06258249567186142 +240174,1200.870000014607,-0.06258790331529458 +240175,1200.8750000146072,-0.06259329716497535 +240176,1200.8800000146073,-0.062598677331231 +240177,1200.8850000146074,-0.0626040439230126 +240178,1200.8900000146075,-0.06260939704791621 +240179,1200.8950000146076,-0.06261473681220393 +240180,1200.9000000146077,-0.0626200633208245 +240181,1200.9050000146078,-0.06262537667743341 +240182,1200.910000014608,-0.06263067698441274 +240183,1200.915000014608,-0.06263596434289062 +240184,1200.9200000146081,-0.06264123885276028 +240185,1200.9250000146083,-0.06264650061269882 +240186,1200.9300000146084,-0.06265174972018554 +240187,1200.9350000146085,-0.06265698627152003 +240188,1200.9400000146086,-0.06266221036183992 +240189,1200.9450000146087,-0.06266742208513823 +240190,1200.9500000146088,-0.06267262153428049 +240191,1200.955000014609,-0.06267780880102153 +240192,1200.960000014609,-0.06268298397602194 +240193,1200.9650000146091,-0.06268814714886431 +240194,1200.9700000146092,-0.06269329840806905 +240195,1200.9750000146093,-0.0626984378411101 +240196,1200.9800000146095,-0.06270356553443025 +240197,1200.9850000146096,-0.06270868157345623 +240198,1200.9900000146097,-0.06271378604261348 +240199,1200.9950000146098,-0.06271887902534078 +240200,1201.00000001461,-0.06272396060410448 +240201,1201.00500001461,-0.06272903086041265 +240202,1201.0100000146101,-0.06273408987482886 +240203,1201.0150000146102,-0.06273913772698571 +240204,1201.0200000146103,-0.06274417449559826 +240205,1201.0250000146104,-0.06274920025847712 +240206,1201.0300000146106,-0.06275421509254134 +240207,1201.0350000146107,-0.06275921907383109 +240208,1201.0400000146108,-0.06276421227752019 +240209,1201.0450000146109,-0.06276919477792828 +240210,1201.050000014611,-0.06277416664853294 +240211,1201.055000014611,-0.0627791279619815 +240212,1201.0600000146112,-0.06278407879010274 +240213,1201.0650000146113,-0.0627890192039183 +240214,1201.0700000146114,-0.062793949273654 +240215,1201.0750000146115,-0.06279886906875093 +240216,1201.0800000146116,-0.0628037786578763 +240217,1201.0850000146118,-0.0628086781089342 +240218,1201.0900000146119,-0.06281356748907618 +240219,1201.095000014612,-0.0628184468647116 +240220,1201.100000014612,-0.06282331630151783 +240221,1201.1050000146122,-0.0628281758644503 +240222,1201.1100000146123,-0.06283302561775246 +240223,1201.1150000146124,-0.06283786562496535 +240224,1201.1200000146125,-0.06284269594893734 +240225,1201.1250000146126,-0.0628475166518334 +240226,1201.1300000146127,-0.0628523277951445 +240227,1201.1350000146128,-0.06285712943969661 +240228,1201.140000014613,-0.06286192164565974 +240229,1201.145000014613,-0.06286670447255674 +240230,1201.1500000146132,-0.06287147797927203 +240231,1201.1550000146133,-0.06287624222406013 +240232,1201.1600000146134,-0.0628809972645541 +240233,1201.1650000146135,-0.06288574315777377 +240234,1201.1700000146136,-0.06289047996013399 +240235,1201.1750000146137,-0.06289520772745259 +240236,1201.1800000146138,-0.06289992651495831 +240237,1201.185000014614,-0.06290463637729864 +240238,1201.190000014614,-0.06290933736854738 +240239,1201.1950000146142,-0.06291402954221229 +240240,1201.2000000146143,-0.06291871295124246 +240241,1201.2050000146144,-0.06292338764803564 +240242,1201.2100000146145,-0.06292805368444543 +240243,1201.2150000146146,-0.06293271111178846 +240244,1201.2200000146147,-0.06293735998085123 +240245,1201.2250000146148,-0.06294200034189715 +240246,1201.230000014615,-0.06294663224467319 +240247,1201.235000014615,-0.06295125573841662 +240248,1201.2400000146151,-0.0629558708718616 +240249,1201.2450000146152,-0.06296047769324557 +240250,1201.2500000146154,-0.06296507625031574 +240251,1201.2550000146155,-0.06296966659033527 +240252,1201.2600000146156,-0.06297424876008959 +240253,1201.2650000146157,-0.06297882280589229 +240254,1201.2700000146158,-0.06298338877359137 +240255,1201.275000014616,-0.06298794670857495 +240256,1201.280000014616,-0.06299249665577723 +240257,1201.2850000146161,-0.0629970386596842 +240258,1201.2900000146162,-0.06300157276433924 +240259,1201.2950000146163,-0.06300609901334878 +240260,1201.3000000146164,-0.06301061744988776 +240261,1201.3050000146166,-0.06301512811670505 +240262,1201.3100000146167,-0.06301963105612877 +240263,1201.3150000146168,-0.06302412631007154 +240264,1201.3200000146169,-0.06302861392003568 +240265,1201.325000014617,-0.06303309392711834 +240266,1201.330000014617,-0.06303756637201648 +240267,1201.3350000146172,-0.06304203129503182 +240268,1201.3400000146173,-0.06304648873607582 +240269,1201.3450000146174,-0.0630509387346744 +240270,1201.3500000146175,-0.06305538132997275 +240271,1201.3550000146176,-0.06305981656073993 +240272,1201.3600000146178,-0.0630642444653736 +240273,1201.3650000146179,-0.06306866508190448 +240274,1201.370000014618,-0.06307307844800086 +240275,1201.375000014618,-0.063077484600973 +240276,1201.3800000146182,-0.06308188357777753 +240277,1201.3850000146183,-0.0630862754150217 +240278,1201.3900000146184,-0.06309066014896765 +240279,1201.3950000146185,-0.06309503781553655 +240280,1201.4000000146186,-0.06309940845031276 +240281,1201.4050000146187,-0.06310377208854781 +240282,1201.4100000146188,-0.06310812876516453 +240283,1201.415000014619,-0.06311247851476084 +240284,1201.420000014619,-0.06311682137161377 +240285,1201.4250000146192,-0.06312115736968323 +240286,1201.4300000146193,-0.0631254865426158 +240287,1201.4350000146194,-0.06312980892374848 +240288,1201.4400000146195,-0.06313412454611236 +240289,1201.4450000146196,-0.06313843344243625 +240290,1201.4500000146197,-0.06314273564515026 +240291,1201.4550000146198,-0.06314703118638927 +240292,1201.46000001462,-0.06315132009799655 +240293,1201.46500001462,-0.06315560241152704 +240294,1201.4700000146202,-0.06315987815825083 +240295,1201.4750000146203,-0.06316414736915647 +240296,1201.4800000146204,-0.06316841007495427 +240297,1201.4850000146205,-0.06317266630607954 +240298,1201.4900000146206,-0.0631769160926958 +240299,1201.4950000146207,-0.06318115946469795 +240300,1201.5000000146208,-0.06318539645171536 +240301,1201.505000014621,-0.06318962708311501 +240302,1201.510000014621,-0.06319385138800446 +240303,1201.5150000146211,-0.06319806939523487 +240304,1201.5200000146212,-0.06320228113340394 +240305,1201.5250000146214,-0.06320648663085887 +240306,1201.5300000146215,-0.0632106859156992 +240307,1201.5350000146216,-0.06321487901577962 +240308,1201.5400000146217,-0.06321906595871281 +240309,1201.5450000146218,-0.06322324677187222 +240310,1201.550000014622,-0.06322742148239474 +240311,1201.555000014622,-0.06323159011718346 +240312,1201.5600000146221,-0.06323575270291022 +240313,1201.5650000146222,-0.06323990926601834 +240314,1201.5700000146223,-0.06324405983272514 +240315,1201.5750000146224,-0.06324820442902451 +240316,1201.5800000146226,-0.06325234308068942 +240317,1201.5850000146227,-0.06325647581327438 +240318,1201.5900000146228,-0.06326060265211797 +240319,1201.5950000146229,-0.06326472362234517 +240320,1201.600000014623,-0.0632688387488698 +240321,1201.605000014623,-0.06327294805639684 +240322,1201.6100000146232,-0.06327705156942481 +240323,1201.6150000146233,-0.063281149312248 +240324,1201.6200000146234,-0.0632852413089588 +240325,1201.6250000146235,-0.06328932758344984 +240326,1201.6300000146236,-0.06329340815941634 +240327,1201.6350000146238,-0.06329748306035815 +240328,1201.6400000146239,-0.06330155230958201 +240329,1201.645000014624,-0.0633056159302036 +240330,1201.650000014624,-0.06330967394514966 +240331,1201.6550000146242,-0.06331372637716008 +240332,1201.6600000146243,-0.06331777324878989 +240333,1201.6650000146244,-0.06332181458241133 +240334,1201.6700000146245,-0.06332585040021585 +240335,1201.6750000146246,-0.06332988072421597 +240336,1201.6800000146247,-0.06333390557624738 +240337,1201.6850000146248,-0.06333792497797072 +240338,1201.690000014625,-0.06334193895087355 +240339,1201.695000014625,-0.06334594751627216 +240340,1201.7000000146252,-0.06334995069531353 +240341,1201.7050000146253,-0.06335394850897695 +240342,1201.7100000146254,-0.06335794097807605 +240343,1201.7150000146255,-0.06336192812326039 +240344,1201.7200000146256,-0.0633659099650173 +240345,1201.7250000146257,-0.0633698865236736 +240346,1201.7300000146258,-0.06337385781939733 +240347,1201.735000014626,-0.06337782387219937 +240348,1201.740000014626,-0.06338178470193519 +240349,1201.7450000146262,-0.06338574032830645 +240350,1201.7500000146263,-0.06338969077086261 +240351,1201.7550000146264,-0.06339363604900257 +240352,1201.7600000146265,-0.06339757618197628 +240353,1201.7650000146266,-0.06340151118888622 +240354,1201.7700000146267,-0.06340544108868905 +240355,1201.7750000146268,-0.06340936590019705 +240356,1201.780000014627,-0.06341328564207967 +240357,1201.785000014627,-0.06341720033286505 +240358,1201.7900000146271,-0.06342110999094143 +240359,1201.7950000146272,-0.06342501463455864 +240360,1201.8000000146274,-0.06342891428182951 +240361,1201.8050000146275,-0.06343280895073135 +240362,1201.8100000146276,-0.06343669865910728 +240363,1201.8150000146277,-0.06344058342466767 +240364,1201.8200000146278,-0.06344446326499145 +240365,1201.825000014628,-0.06344833819752753 +240366,1201.830000014628,-0.06345220823959609 +240367,1201.8350000146281,-0.06345607340838987 +240368,1201.8400000146282,-0.06345993372097555 +240369,1201.8450000146283,-0.063463789194295 +240370,1201.8500000146284,-0.06346763984516653 +240371,1201.8550000146286,-0.06347148569028617 +240372,1201.8600000146287,-0.0634753267462289 +240373,1201.8650000146288,-0.0634791630294499 +240374,1201.8700000146289,-0.06348299455628573 +240375,1201.875000014629,-0.06348682134295554 +240376,1201.880000014629,-0.06349064340556225 +240377,1201.8850000146292,-0.06349446076009374 +240378,1201.8900000146293,-0.06349827342242398 +240379,1201.8950000146294,-0.06350208140831416 +240380,1201.9000000146295,-0.06350588473341386 +240381,1201.9050000146296,-0.06350968341326212 +240382,1201.9100000146298,-0.06351347746328857 +240383,1201.9150000146299,-0.06351726689881451 +240384,1201.92000001463,-0.063521051735054 +240385,1201.92500001463,-0.06352483198711487 +240386,1201.9300000146302,-0.06352860766999982 +240387,1201.9350000146303,-0.06353237879860744 +240388,1201.9400000146304,-0.06353614538773326 +240389,1201.9450000146305,-0.06353990745207072 +240390,1201.9500000146306,-0.06354366500621222 +240391,1201.9550000146307,-0.06354741806465004 +240392,1201.9600000146309,-0.06355116664177742 +240393,1201.965000014631,-0.0635549107518894 +240394,1201.970000014631,-0.06355865040918393 +240395,1201.9750000146312,-0.06356238562776263 +240396,1201.9800000146313,-0.06356611642163192 +240397,1201.9850000146314,-0.06356984280470378 +240398,1201.9900000146315,-0.06357356479079676 +240399,1201.9950000146316,-0.06357728239363684 +240400,1202.0000000146317,-0.06358099562685836 +240401,1202.0050000146318,-0.0635847045040048 +240402,1202.010000014632,-0.06358840903852982 +240403,1202.015000014632,-0.06359210924379795 +240404,1202.0200000146322,-0.06359580513308555 +240405,1202.0250000146323,-0.06359949671958161 +240406,1202.0300000146324,-0.06360318401638859 +240407,1202.0350000146325,-0.06360686703652325 +240408,1202.0400000146326,-0.06361054579291744 +240409,1202.0450000146327,-0.06361422029841894 +240410,1202.0500000146328,-0.0636178905657922 +240411,1202.055000014633,-0.06362155660771918 +240412,1202.060000014633,-0.06362521843680008 +240413,1202.0650000146331,-0.0636288760655542 +240414,1202.0700000146333,-0.06363252950642055 +240415,1202.0750000146334,-0.06363617877175876 +240416,1202.0800000146335,-0.06363982387384967 +240417,1202.0850000146336,-0.06364346482489619 +240418,1202.0900000146337,-0.06364710163702397 +240419,1202.0950000146338,-0.06365073432228209 +240420,1202.100000014634,-0.06365436289264385 +240421,1202.105000014634,-0.06365798736000738 +240422,1202.1100000146341,-0.06366160773619642 +240423,1202.1150000146342,-0.06366522403296092 +240424,1202.1200000146343,-0.0636688362619778 +240425,1202.1250000146345,-0.06367244443485152 +240426,1202.1300000146346,-0.0636760485631149 +240427,1202.1350000146347,-0.06367964865822963 +240428,1202.1400000146348,-0.06368324473158694 +240429,1202.145000014635,-0.06368683679450833 +240430,1202.150000014635,-0.06369042485824612 +240431,1202.155000014635,-0.06369400893398411 +240432,1202.1600000146352,-0.06369758903283818 +240433,1202.1650000146353,-0.06370116516585697 +240434,1202.1700000146354,-0.06370473734402236 +240435,1202.1750000146355,-0.06370830557825022 +240436,1202.1800000146357,-0.06371186987939087 +240437,1202.1850000146358,-0.06371543025822979 +240438,1202.1900000146359,-0.06371898672548808 +240439,1202.195000014636,-0.06372253929182314 +240440,1202.200000014636,-0.06372608796782916 +240441,1202.2050000146362,-0.06372963276403774 +240442,1202.2100000146363,-0.06373317369091842 +240443,1202.2150000146364,-0.0637367107588792 +240444,1202.2200000146365,-0.06374024397826715 +240445,1202.2250000146366,-0.0637437733593689 +240446,1202.2300000146367,-0.0637472989124112 +240447,1202.2350000146369,-0.06375082064756141 +240448,1202.240000014637,-0.06375433857492806 +240449,1202.245000014637,-0.06375785270456134 +240450,1202.2500000146372,-0.06376136304645365 +240451,1202.2550000146373,-0.06376486961054005 +240452,1202.2600000146374,-0.06376837240669878 +240453,1202.2650000146375,-0.06377187144475176 +240454,1202.2700000146376,-0.06377536673446509 +240455,1202.2750000146377,-0.06377885828554951 +240456,1202.2800000146378,-0.06378234610766088 +240457,1202.285000014638,-0.0637858302104007 +240458,1202.290000014638,-0.06378931060331651 +240459,1202.2950000146382,-0.06379278729590236 +240460,1202.3000000146383,-0.06379626029759933 +240461,1202.3050000146384,-0.06379972961779595 +240462,1202.3100000146385,-0.0638031952658286 +240463,1202.3150000146386,-0.06380665725098204 +240464,1202.3200000146387,-0.0638101155824898 +240465,1202.3250000146388,-0.06381357026953458 +240466,1202.330000014639,-0.06381702132124879 +240467,1202.335000014639,-0.06382046874671485 +240468,1202.3400000146391,-0.06382391255496572 +240469,1202.3450000146393,-0.0638273527549852 +240470,1202.3500000146394,-0.06383078935570848 +240471,1202.3550000146395,-0.06383422236602243 +240472,1202.3600000146396,-0.06383765179476607 +240473,1202.3650000146397,-0.06384107765073092 +240474,1202.3700000146398,-0.0638444999426615 +240475,1202.37500001464,-0.06384791867925556 +240476,1202.38000001464,-0.06385133386916461 +240477,1202.3850000146401,-0.06385474552099421 +240478,1202.3900000146402,-0.06385815364330445 +240479,1202.3950000146403,-0.06386155824461019 +240480,1202.4000000146405,-0.06386495933338159 +240481,1202.4050000146406,-0.06386835691804428 +240482,1202.4100000146407,-0.06387175100697995 +240483,1202.4150000146408,-0.06387514160852653 +240484,1202.420000014641,-0.06387852873097866 +240485,1202.425000014641,-0.06388191238258797 +240486,1202.430000014641,-0.06388529257156346 +240487,1202.4350000146412,-0.06388866930607184 +240488,1202.4400000146413,-0.06389204259423792 +240489,1202.4450000146414,-0.06389541244414486 +240490,1202.4500000146415,-0.06389877886383453 +240491,1202.4550000146417,-0.06390214186130795 +240492,1202.4600000146418,-0.06390550144452548 +240493,1202.4650000146419,-0.06390885762140716 +240494,1202.470000014642,-0.06391221039983316 +240495,1202.475000014642,-0.06391555978764393 +240496,1202.4800000146422,-0.06391890579264065 +240497,1202.4850000146423,-0.06392224842258545 +240498,1202.4900000146424,-0.0639255876852018 +240499,1202.4950000146425,-0.06392892358817474 +240500,1202.5000000146426,-0.06393225613915123 +240501,1202.5050000146427,-0.06393558534574041 +240502,1202.5100000146429,-0.06393891121551398 +240503,1202.515000014643,-0.06394223375600643 +240504,1202.520000014643,-0.06394555297471531 +240505,1202.5250000146432,-0.06394886887910158 +240506,1202.5300000146433,-0.06395218147658982 +240507,1202.5350000146434,-0.06395549077456864 +240508,1202.5400000146435,-0.0639587967803908 +240509,1202.5450000146436,-0.06396209950137362 +240510,1202.5500000146437,-0.06396539894479918 +240511,1202.5550000146438,-0.06396869511791463 +240512,1202.560000014644,-0.0639719880279324 +240513,1202.565000014644,-0.06397527768203057 +240514,1202.5700000146442,-0.06397856408735304 +240515,1202.5750000146443,-0.06398184725100983 +240516,1202.5800000146444,-0.06398512718007733 +240517,1202.5850000146445,-0.06398840388159859 +240518,1202.5900000146446,-0.0639916773625835 +240519,1202.5950000146447,-0.06399494763000912 +240520,1202.6000000146448,-0.0639982146908199 +240521,1202.605000014645,-0.06400147855192789 +240522,1202.610000014645,-0.06400473922021306 +240523,1202.6150000146451,-0.06400799670252344 +240524,1202.6200000146453,-0.06401125100567549 +240525,1202.6250000146454,-0.06401450213645421 +240526,1202.6300000146455,-0.06401775010161347 +240527,1202.6350000146456,-0.06402099490787615 +240528,1202.6400000146457,-0.06402423656193448 +240529,1202.6450000146458,-0.06402747507045022 +240530,1202.650000014646,-0.0640307104400548 +240531,1202.655000014646,-0.06403394267734971 +240532,1202.6600000146461,-0.06403717178890658 +240533,1202.6650000146462,-0.06404039778126748 +240534,1202.6700000146463,-0.06404362066094509 +240535,1202.6750000146465,-0.06404684043442295 +240536,1202.6800000146466,-0.06405005710815569 +240537,1202.6850000146467,-0.06405327068856916 +240538,1202.6900000146468,-0.06405648118206073 +240539,1202.695000014647,-0.06405968859499944 +240540,1202.700000014647,-0.06406289293372625 +240541,1202.705000014647,-0.06406609420455418 +240542,1202.7100000146472,-0.06406929241376857 +240543,1202.7150000146473,-0.0640724875676273 +240544,1202.7200000146474,-0.0640756796723609 +240545,1202.7250000146475,-0.06407886873417279 +240546,1202.7300000146477,-0.0640820547592395 +240547,1202.7350000146478,-0.06408523775371086 +240548,1202.7400000146479,-0.06408841772371014 +240549,1202.745000014648,-0.06409159467533428 +240550,1202.750000014648,-0.06409476861465409 +240551,1202.7550000146482,-0.0640979395477144 +240552,1202.7600000146483,-0.06410110748053423 +240553,1202.7650000146484,-0.06410427241910704 +240554,1202.7700000146485,-0.06410743436940088 +240555,1202.7750000146486,-0.06411059333735851 +240556,1202.7800000146487,-0.06411374932889767 +240557,1202.7850000146489,-0.06411690234991119 +240558,1202.790000014649,-0.0641200524062672 +240559,1202.795000014649,-0.06412319950380926 +240560,1202.8000000146492,-0.0641263436483566 +240561,1202.8050000146493,-0.06412948484570424 +240562,1202.8100000146494,-0.06413262310162313 +240563,1202.8150000146495,-0.0641357584218604 +240564,1202.8200000146496,-0.06413889081213942 +240565,1202.8250000146497,-0.06414202027816006 +240566,1202.8300000146498,-0.06414514682559883 +240567,1202.83500001465,-0.06414827046010897 +240568,1202.84000001465,-0.06415139118732072 +240569,1202.8450000146502,-0.06415450901284135 +240570,1202.8500000146503,-0.06415762394225541 +240571,1202.8550000146504,-0.0641607359811249 +240572,1202.8600000146505,-0.06416384513498932 +240573,1202.8650000146506,-0.0641669514093659 +240574,1202.8700000146507,-0.06417005480974977 +240575,1202.8750000146508,-0.06417315534161402 +240576,1202.880000014651,-0.06417625301040993 +240577,1202.885000014651,-0.06417934782156706 +240578,1202.8900000146512,-0.06418243978049347 +240579,1202.8950000146513,-0.06418552889257576 +240580,1202.9000000146514,-0.0641886151631793 +240581,1202.9050000146515,-0.06419169859764833 +240582,1202.9100000146516,-0.0641947792013061 +240583,1202.9150000146517,-0.06419785697945506 +240584,1202.9200000146518,-0.06420093193737689 +240585,1202.925000014652,-0.06420400408033272 +240586,1202.930000014652,-0.0642070734135633 +240587,1202.9350000146521,-0.06421013994228901 +240588,1202.9400000146522,-0.06421320367171009 +240589,1202.9450000146524,-0.06421626460700677 +240590,1202.9500000146525,-0.06421932275333936 +240591,1202.9550000146526,-0.06422237811584834 +240592,1202.9600000146527,-0.06422543069965464 +240593,1202.9650000146528,-0.06422848050985959 +240594,1202.970000014653,-0.06423152755154517 +240595,1202.975000014653,-0.06423457182977409 +240596,1202.9800000146531,-0.06423761334958987 +240597,1202.9850000146532,-0.06424065211601705 +240598,1202.9900000146533,-0.06424368813406127 +240599,1202.9950000146534,-0.06424672140870938 +240600,1203.0000000146536,-0.06424975194492956 +240601,1203.0050000146537,-0.06425277974767143 +240602,1203.0100000146538,-0.06425580482186627 +240603,1203.0150000146539,-0.06425882717242695 +240604,1203.020000014654,-0.0642618468042482 +240605,1203.025000014654,-0.06426486372220666 +240606,1203.0300000146542,-0.06426787793116102 +240607,1203.0350000146543,-0.06427088943595212 +240608,1203.0400000146544,-0.064273898241403 +240609,1203.0450000146545,-0.06427690435231917 +240610,1203.0500000146546,-0.06427990777348855 +240611,1203.0550000146548,-0.06428290850968166 +240612,1203.0600000146549,-0.06428590656565174 +240613,1203.065000014655,-0.06428890194613483 +240614,1203.070000014655,-0.06429189465584986 +240615,1203.0750000146552,-0.0642948846994988 +240616,1203.0800000146553,-0.06429787208176671 +240617,1203.0850000146554,-0.06430085680732192 +240618,1203.0900000146555,-0.06430383888081605 +240619,1203.0950000146556,-0.06430681830688414 +240620,1203.1000000146557,-0.06430979509014481 +240621,1203.1050000146558,-0.06431276923520025 +240622,1203.110000014656,-0.06431574074663643 +240623,1203.115000014656,-0.06431870962902309 +240624,1203.1200000146562,-0.06432167588691397 +240625,1203.1250000146563,-0.06432463952484677 +240626,1203.1300000146564,-0.06432760054734331 +240627,1203.1350000146565,-0.06433055895890967 +240628,1203.1400000146566,-0.06433351476403618 +240629,1203.1450000146567,-0.06433646796719764 +240630,1203.1500000146568,-0.06433941857285326 +240631,1203.155000014657,-0.0643423665854469 +240632,1203.160000014657,-0.06434531200940707 +240633,1203.1650000146572,-0.06434825484914705 +240634,1203.1700000146573,-0.06435119510906501 +240635,1203.1750000146574,-0.064354132793544 +240636,1203.1800000146575,-0.06435706790695217 +240637,1203.1850000146576,-0.06436000045364276 +240638,1203.1900000146577,-0.06436293043795424 +240639,1203.1950000146578,-0.06436585786421034 +240640,1203.200000014658,-0.06436878273672023 +240641,1203.205000014658,-0.06437170505977848 +240642,1203.2100000146581,-0.06437462483766528 +240643,1203.2150000146582,-0.06437754207464641 +240644,1203.2200000146584,-0.06438045677497338 +240645,1203.2250000146585,-0.06438336894288349 +240646,1203.2300000146586,-0.06438627858259995 +240647,1203.2350000146587,-0.0643891856983319 +240648,1203.2400000146588,-0.0643920902942745 +240649,1203.245000014659,-0.06439499237460916 +240650,1203.250000014659,-0.06439789194350334 +240651,1203.2550000146591,-0.06440078900511086 +240652,1203.2600000146592,-0.06440368356357186 +240653,1203.2650000146593,-0.06440657562301295 +240654,1203.2700000146594,-0.06440946518754724 +240655,1203.2750000146596,-0.06441235226127442 +240656,1203.2800000146597,-0.06441523684828085 +240657,1203.2850000146598,-0.0644181189526396 +240658,1203.2900000146599,-0.0644209985784106 +240659,1203.29500001466,-0.06442387572964065 +240660,1203.30000001466,-0.06442675041036347 +240661,1203.3050000146602,-0.06442962262459988 +240662,1203.3100000146603,-0.06443249237635772 +240663,1203.3150000146604,-0.06443535966963208 +240664,1203.3200000146605,-0.06443822450840524 +240665,1203.3250000146606,-0.06444108689664683 +240666,1203.3300000146608,-0.06444394683831386 +240667,1203.3350000146609,-0.06444680433735077 +240668,1203.340000014661,-0.06444965939768953 +240669,1203.345000014661,-0.06445251202324973 +240670,1203.3500000146612,-0.06445536221793857 +240671,1203.3550000146613,-0.06445820998565102 +240672,1203.3600000146614,-0.06446105533026983 +240673,1203.3650000146615,-0.06446389825566559 +240674,1203.3700000146616,-0.06446673876569682 +240675,1203.3750000146617,-0.06446957686421002 +240676,1203.3800000146618,-0.0644724125550398 +240677,1203.385000014662,-0.0644752458420088 +240678,1203.390000014662,-0.06447807672892787 +240679,1203.3950000146622,-0.06448090521959615 +240680,1203.4000000146623,-0.06448373131780105 +240681,1203.4050000146624,-0.06448655502731832 +240682,1203.4100000146625,-0.06448937635191217 +240683,1203.4150000146626,-0.06449219529533533 +240684,1203.4200000146627,-0.064495011861329 +240685,1203.4250000146628,-0.06449782605362309 +240686,1203.430000014663,-0.06450063787593611 +240687,1203.435000014663,-0.06450344733197533 +240688,1203.4400000146632,-0.06450625442543678 +240689,1203.4450000146633,-0.06450905916000539 +240690,1203.4500000146634,-0.06451186153935497 +240691,1203.4550000146635,-0.06451466156714827 +240692,1203.4600000146636,-0.0645174592470371 +240693,1203.4650000146637,-0.0645202545826623 +240694,1203.4700000146638,-0.06452304757765391 +240695,1203.475000014664,-0.06452583823563111 +240696,1203.480000014664,-0.06452862656020236 +240697,1203.4850000146641,-0.06453141255496538 +240698,1203.4900000146642,-0.06453419622350726 +240699,1203.4950000146644,-0.06453697756940452 +240700,1203.5000000146645,-0.06453975659622312 +240701,1203.5050000146646,-0.06454253330751855 +240702,1203.5100000146647,-0.06454530770683589 +240703,1203.5150000146648,-0.0645480797977098 +240704,1203.520000014665,-0.06455084958366461 +240705,1203.525000014665,-0.06455361706821446 +240706,1203.5300000146651,-0.06455638225486315 +240707,1203.5350000146652,-0.06455914514710444 +240708,1203.5400000146653,-0.06456190574842184 +240709,1203.5450000146654,-0.06456466406228889 +240710,1203.5500000146656,-0.06456742009216906 +240711,1203.5550000146657,-0.06457017384151588 +240712,1203.5600000146658,-0.06457292531377294 +240713,1203.5650000146659,-0.06457567451237398 +240714,1203.570000014666,-0.06457842144074288 +240715,1203.575000014666,-0.06458116610229381 +240716,1203.5800000146662,-0.06458390850043114 +240717,1203.5850000146663,-0.06458664863854963 +240718,1203.5900000146664,-0.06458938652003435 +240719,1203.5950000146665,-0.06459212214826085 +240720,1203.6000000146666,-0.06459485552659508 +240721,1203.6050000146668,-0.06459758665839356 +240722,1203.6100000146669,-0.06460031554700332 +240723,1203.615000014667,-0.06460304219576202 +240724,1203.620000014667,-0.06460576660799794 +240725,1203.6250000146672,-0.06460848878703007 +240726,1203.6300000146673,-0.06461120873616814 +240727,1203.6350000146674,-0.06461392645871264 +240728,1203.6400000146675,-0.06461664195795491 +240729,1203.6450000146676,-0.06461935523717716 +240730,1203.6500000146677,-0.06462206629965249 +240731,1203.6550000146678,-0.06462477514864495 +240732,1203.660000014668,-0.06462748178740965 +240733,1203.665000014668,-0.06463018621919267 +240734,1203.6700000146682,-0.06463288844723118 +240735,1203.6750000146683,-0.06463558847475354 +240736,1203.6800000146684,-0.06463828630497918 +240737,1203.6850000146685,-0.06464098194111884 +240738,1203.6900000146686,-0.06464367538637444 +240739,1203.6950000146687,-0.0646463666439392 +240740,1203.7000000146688,-0.06464905571699771 +240741,1203.705000014669,-0.06465174260872589 +240742,1203.710000014669,-0.06465442732229107 +240743,1203.7150000146692,-0.06465710986085207 +240744,1203.7200000146693,-0.06465979022755919 +240745,1203.7250000146694,-0.06466246842555423 +240746,1203.7300000146695,-0.06466514445797057 +240747,1203.7350000146696,-0.06466781832793322 +240748,1203.7400000146697,-0.0646704900385588 +240749,1203.7450000146698,-0.06467315959295569 +240750,1203.75000001467,-0.06467582699422388 +240751,1203.75500001467,-0.06467849224545519 +240752,1203.7600000146701,-0.06468115534973325 +240753,1203.7650000146702,-0.06468381631013348 +240754,1203.7700000146704,-0.0646864751297232 +240755,1203.7750000146705,-0.0646891318115616 +240756,1203.7800000146706,-0.0646917863586999 +240757,1203.7850000146707,-0.06469443877418121 +240758,1203.7900000146708,-0.0646970890610407 +240759,1203.795000014671,-0.06469973722230557 +240760,1203.800000014671,-0.06470238326099514 +240761,1203.8050000146711,-0.06470502718012083 +240762,1203.8100000146712,-0.06470766898268623 +240763,1203.8150000146713,-0.0647103086716871 +240764,1203.8200000146715,-0.06471294625011145 +240765,1203.8250000146716,-0.06471558172093957 +240766,1203.8300000146717,-0.064718215087144 +240767,1203.8350000146718,-0.06472084635168962 +240768,1203.840000014672,-0.0647234755175337 +240769,1203.845000014672,-0.06472610258762589 +240770,1203.850000014672,-0.06472872756490827 +240771,1203.8550000146722,-0.06473135045231539 +240772,1203.8600000146723,-0.06473397125277429 +240773,1203.8650000146724,-0.06473658996920453 +240774,1203.8700000146725,-0.06473920660451825 +240775,1203.8750000146727,-0.06474182116162017 +240776,1203.8800000146728,-0.06474443364340764 +240777,1203.8850000146729,-0.06474704405277067 +240778,1203.890000014673,-0.06474965239259194 +240779,1203.895000014673,-0.06475225866574688 +240780,1203.9000000146732,-0.06475486287510364 +240781,1203.9050000146733,-0.06475746502352318 +240782,1203.9100000146734,-0.06476006511385926 +240783,1203.9150000146735,-0.06476266314895845 +240784,1203.9200000146736,-0.06476525913166026 +240785,1203.9250000146737,-0.06476785306479706 +240786,1203.9300000146739,-0.06477044495119415 +240787,1203.935000014674,-0.06477303479366982 +240788,1203.940000014674,-0.06477562259503533 +240789,1203.9450000146742,-0.06477820835809497 +240790,1203.9500000146743,-0.06478079208564609 +240791,1203.9550000146744,-0.06478337378047912 +240792,1203.9600000146745,-0.06478595344537756 +240793,1203.9650000146746,-0.06478853108311812 +240794,1203.9700000146747,-0.06479110669647062 +240795,1203.9750000146748,-0.06479368028819811 +240796,1203.980000014675,-0.06479625186105682 +240797,1203.985000014675,-0.06479882141779628 +240798,1203.9900000146752,-0.06480138896115926 +240799,1203.9950000146753,-0.06480395449388188 +240800,1204.0000000146754,-0.06480651801869355 +240801,1204.0050000146755,-0.06480907953831706 +240802,1204.0100000146756,-0.0648116390554686 +240803,1204.0150000146757,-0.06481419657285775 +240804,1204.0200000146758,-0.06481675209318756 +240805,1204.025000014676,-0.06481930561915454 +240806,1204.030000014676,-0.06482185715344867 +240807,1204.0350000146761,-0.06482440669875347 +240808,1204.0400000146763,-0.06482695425774607 +240809,1204.0450000146764,-0.06482949983309706 +240810,1204.0500000146765,-0.06483204342747069 +240811,1204.0550000146766,-0.06483458504352485 +240812,1204.0600000146767,-0.06483712468391108 +240813,1204.0650000146768,-0.06483966235127453 +240814,1204.070000014677,-0.06484219804825414 +240815,1204.075000014677,-0.06484473177748253 +240816,1204.0800000146771,-0.06484726354158607 +240817,1204.0850000146772,-0.06484979334318494 +240818,1204.0900000146773,-0.06485232118489309 +240819,1204.0950000146775,-0.06485484706931828 +240820,1204.1000000146776,-0.06485737099906216 +240821,1204.1050000146777,-0.06485989297672026 +240822,1204.1100000146778,-0.06486241300488196 +240823,1204.115000014678,-0.0648649310861306 +240824,1204.120000014678,-0.06486744722304345 +240825,1204.125000014678,-0.06486996141819178 +240826,1204.1300000146782,-0.0648724736741408 +240827,1204.1350000146783,-0.06487498399344976 +240828,1204.1400000146784,-0.06487749237867198 +240829,1204.1450000146785,-0.0648799988323548 +240830,1204.1500000146787,-0.06488250335703967 +240831,1204.1550000146788,-0.06488500595526214 +240832,1204.1600000146789,-0.06488750662955191 +240833,1204.165000014679,-0.0648900053824328 +240834,1204.170000014679,-0.0648925022164228 +240835,1204.1750000146792,-0.06489499713403415 +240836,1204.1800000146793,-0.06489749013777331 +240837,1204.1850000146794,-0.06489998123014092 +240838,1204.1900000146795,-0.06490247041363191 +240839,1204.1950000146796,-0.06490495769073552 +240840,1204.2000000146797,-0.06490744306393532 +240841,1204.2050000146799,-0.06490992653570914 +240842,1204.21000001468,-0.06491240810852918 +240843,1204.21500001468,-0.06491488778486205 +240844,1204.2200000146802,-0.06491736556716875 +240845,1204.2250000146803,-0.06491984145790464 +240846,1204.2300000146804,-0.06492231545951958 +240847,1204.2350000146805,-0.06492478757445785 +240848,1204.2400000146806,-0.06492725780515822 +240849,1204.2450000146807,-0.06492972615405394 +240850,1204.2500000146808,-0.0649321926235728 +240851,1204.255000014681,-0.06493465721613713 +240852,1204.260000014681,-0.06493711993416379 +240853,1204.2650000146812,-0.06493958078006425 +240854,1204.2700000146813,-0.06494203975624456 +240855,1204.2750000146814,-0.0649444968651054 +240856,1204.2800000146815,-0.06494695210904207 +240857,1204.2850000146816,-0.06494940549044456 +240858,1204.2900000146817,-0.06495185701169752 +240859,1204.2950000146818,-0.06495430667518028 +240860,1204.300000014682,-0.0649567544832669 +240861,1204.305000014682,-0.0649592004383262 +240862,1204.3100000146821,-0.06496164454272174 +240863,1204.3150000146823,-0.06496408679881184 +240864,1204.3200000146824,-0.0649665272089496 +240865,1204.3250000146825,-0.06496896577548297 +240866,1204.3300000146826,-0.06497140250075473 +240867,1204.3350000146827,-0.06497383738710245 +240868,1204.3400000146828,-0.06497627043685865 +240869,1204.345000014683,-0.06497870165235067 +240870,1204.350000014683,-0.06498113103590081 +240871,1204.3550000146831,-0.06498355858982623 +240872,1204.3600000146832,-0.0649859843164391 +240873,1204.3650000146833,-0.06498840821804648 +240874,1204.3700000146835,-0.06499083029695045 +240875,1204.3750000146836,-0.06499325055544809 +240876,1204.3800000146837,-0.06499566899583147 +240877,1204.3850000146838,-0.06499808562038768 +240878,1204.390000014684,-0.06500050043139889 +240879,1204.395000014684,-0.06500291343114233 +240880,1204.400000014684,-0.06500532462189025 +240881,1204.4050000146842,-0.06500773400591012 +240882,1204.4100000146843,-0.0650101415854644 +240883,1204.4150000146844,-0.0650125473628108 +240884,1204.4200000146845,-0.06501495134020206 +240885,1204.4250000146847,-0.06501735351988619 +240886,1204.4300000146848,-0.06501975390410633 +240887,1204.4350000146849,-0.06502215249510082 +240888,1204.440000014685,-0.06502454929510329 +240889,1204.445000014685,-0.06502694430634248 +240890,1204.4500000146852,-0.06502933753104251 +240891,1204.4550000146853,-0.06503172897142265 +240892,1204.4600000146854,-0.06503411862969755 +240893,1204.4650000146855,-0.0650365065080771 +240894,1204.4700000146856,-0.06503889260876654 +240895,1204.4750000146857,-0.06504127693396641 +240896,1204.4800000146859,-0.06504365948587264 +240897,1204.485000014686,-0.06504604026667649 +240898,1204.490000014686,-0.0650484192785646 +240899,1204.4950000146862,-0.06505079652371902 +240900,1204.5000000146863,-0.0650531720043172 +240901,1204.5050000146864,-0.06505554572253204 +240902,1204.5100000146865,-0.06505791768053186 +240903,1204.5150000146866,-0.06506028788048043 +240904,1204.5200000146867,-0.06506265632453702 +240905,1204.5250000146868,-0.06506502301485637 +240906,1204.530000014687,-0.06506738795358871 +240907,1204.535000014687,-0.06506975114287983 +240908,1204.5400000146872,-0.065072112584871 +240909,1204.5450000146873,-0.06507447228169908 +240910,1204.5500000146874,-0.06507683023549647 +240911,1204.5550000146875,-0.06507918644839118 +240912,1204.5600000146876,-0.06508154092250677 +240913,1204.5650000146877,-0.06508389365996245 +240914,1204.5700000146878,-0.06508624466287298 +240915,1204.575000014688,-0.06508859393334884 +240916,1204.580000014688,-0.06509094147349613 +240917,1204.5850000146881,-0.06509328728541659 +240918,1204.5900000146883,-0.06509563137120768 +240919,1204.5950000146884,-0.06509797373296251 +240920,1204.6000000146885,-0.06510031437276995 +240921,1204.6050000146886,-0.06510265329271454 +240922,1204.6100000146887,-0.06510499049487657 +240923,1204.6150000146888,-0.0651073259813321 +240924,1204.620000014689,-0.06510965975415296 +240925,1204.625000014689,-0.06511199181540671 +240926,1204.6300000146891,-0.06511432216715675 +240927,1204.6350000146892,-0.06511665081146224 +240928,1204.6400000146893,-0.0651189777503782 +240929,1204.6450000146895,-0.06512130298595545 +240930,1204.6500000146896,-0.06512362652024069 +240931,1204.6550000146897,-0.06512594835527645 +240932,1204.6600000146898,-0.06512826849310113 +240933,1204.66500001469,-0.06513058693574904 +240934,1204.67000001469,-0.06513290368525036 +240935,1204.67500001469,-0.0651352187436312 +240936,1204.6800000146902,-0.0651375321129136 +240937,1204.6850000146903,-0.0651398437951155 +240938,1204.6900000146904,-0.06514215379225084 +240939,1204.6950000146905,-0.0651444621063295 +240940,1204.7000000146907,-0.06514676873935735 +240941,1204.7050000146908,-0.0651490736933362 +240942,1204.7100000146909,-0.06515137697026391 +240943,1204.715000014691,-0.06515367857213437 +240944,1204.720000014691,-0.06515597850093743 +240945,1204.7250000146912,-0.06515827675865905 +240946,1204.7300000146913,-0.0651605733472812 +240947,1204.7350000146914,-0.06516286826878193 +240948,1204.7400000146915,-0.06516516152513534 +240949,1204.7450000146916,-0.06516745311831164 +240950,1204.7500000146918,-0.06516974305027717 +240951,1204.7550000146919,-0.06517203132299434 +240952,1204.760000014692,-0.06517431793842171 +240953,1204.765000014692,-0.06517660289851394 +240954,1204.7700000146922,-0.06517888620522191 +240955,1204.7750000146923,-0.06518116786049259 +240956,1204.7800000146924,-0.06518344786626916 +240957,1204.7850000146925,-0.06518572622449098 +240958,1204.7900000146926,-0.06518800293709359 +240959,1204.7950000146927,-0.06519027800600875 +240960,1204.8000000146928,-0.06519255143316446 +240961,1204.805000014693,-0.06519482322048495 +240962,1204.810000014693,-0.06519709336989066 +240963,1204.8150000146932,-0.06519936188329828 +240964,1204.8200000146933,-0.06520162876262083 +240965,1204.8250000146934,-0.06520389400976756 +240966,1204.8300000146935,-0.065206157626644 +240967,1204.8350000146936,-0.06520841961515202 +240968,1204.8400000146937,-0.06521067997718975 +240969,1204.8450000146938,-0.0652129387146517 +240970,1204.850000014694,-0.06521519582942868 +240971,1204.855000014694,-0.06521745132340784 +240972,1204.8600000146942,-0.06521970519847273 +240973,1204.8650000146943,-0.0652219574565032 +240974,1204.8700000146944,-0.06522420809937551 +240975,1204.8750000146945,-0.06522645712896236 +240976,1204.8800000146946,-0.06522870454713277 +240977,1204.8850000146947,-0.0652309503557522 +240978,1204.8900000146948,-0.06523319455668256 +240979,1204.895000014695,-0.06523543715178214 +240980,1204.900000014695,-0.06523767814290571 +240981,1204.9050000146951,-0.0652399175319045 +240982,1204.9100000146952,-0.06524215532062617 +240983,1204.9150000146954,-0.06524439151091486 +240984,1204.9200000146955,-0.06524662610461125 +240985,1204.9250000146956,-0.06524885910355245 +240986,1204.9300000146957,-0.06525109050957208 +240987,1204.9350000146958,-0.06525332032450032 +240988,1204.940000014696,-0.06525554855016386 +240989,1204.945000014696,-0.0652577751883859 +240990,1204.9500000146961,-0.0652600002409862 +240991,1204.9550000146962,-0.0652622237097811 +240992,1204.9600000146963,-0.06526444559658348 +240993,1204.9650000146964,-0.06526666590320282 +240994,1204.9700000146966,-0.06526888463144516 +240995,1204.9750000146967,-0.06527110178311316 +240996,1204.9800000146968,-0.06527331736000606 +240997,1204.9850000146969,-0.06527553136391977 +240998,1204.990000014697,-0.06527774379664676 +240999,1204.995000014697,-0.06527995465997619 +241000,1205.0000000146972,-0.06528216395569383 +241001,1205.0050000146973,-0.06528437168558214 +241002,1205.0100000146974,-0.06528657785142022 +241003,1205.0150000146975,-0.06528878245498386 +241004,1205.0200000146976,-0.06529098549804552 +241005,1205.0250000146978,-0.06529318698237435 +241006,1205.0300000146979,-0.06529538690973626 +241007,1205.035000014698,-0.06529758528189378 +241008,1205.040000014698,-0.06529978210060623 +241009,1205.0450000146982,-0.06530197736762967 +241010,1205.0500000146983,-0.06530417108471687 +241011,1205.0550000146984,-0.06530636325361736 +241012,1205.0600000146985,-0.0653085538760774 +241013,1205.0650000146986,-0.06531074295384008 +241014,1205.0700000146987,-0.06531293048864523 +241015,1205.0750000146988,-0.06531511648222947 +241016,1205.080000014699,-0.06531730093632623 +241017,1205.085000014699,-0.06531948385266576 +241018,1205.0900000146992,-0.06532166523297507 +241019,1205.0950000146993,-0.06532384507897804 +241020,1205.1000000146994,-0.06532602339239539 +241021,1205.1050000146995,-0.06532820017494465 +241022,1205.1100000146996,-0.0653303754283402 +241023,1205.1150000146997,-0.06533254915429333 +241024,1205.1200000146998,-0.06533472135451215 +241025,1205.1250000147,-0.06533689203070166 +241026,1205.1300000147,-0.06533906118456374 +241027,1205.1350000147002,-0.06534122881779719 +241028,1205.1400000147003,-0.06534339493209768 +241029,1205.1450000147004,-0.06534555952915783 +241030,1205.1500000147005,-0.06534772261066714 +241031,1205.1550000147006,-0.06534988417831207 +241032,1205.1600000147007,-0.065352044233776 +241033,1205.1650000147008,-0.06535420277873927 +241034,1205.170000014701,-0.06535635981487915 +241035,1205.175000014701,-0.06535851534386994 +241036,1205.1800000147011,-0.06536066936738281 +241037,1205.1850000147012,-0.065362821887086 +241038,1205.1900000147014,-0.06536497290464469 +241039,1205.1950000147015,-0.06536712242172106 +241040,1205.2000000147016,-0.06536927043997433 +241041,1205.2050000147017,-0.06537141696106068 +241042,1205.2100000147018,-0.06537356198663336 +241043,1205.215000014702,-0.0653757055183426 +241044,1205.220000014702,-0.06537784755783572 +241045,1205.2250000147021,-0.06537998810675708 +241046,1205.2300000147022,-0.06538212716674803 +241047,1205.2350000147023,-0.06538426473944706 +241048,1205.2400000147024,-0.0653864008264897 +241049,1205.2450000147026,-0.06538853542950854 +241050,1205.2500000147027,-0.06539066855013327 +241051,1205.2550000147028,-0.06539280018999069 +241052,1205.2600000147029,-0.0653949303507047 +241053,1205.265000014703,-0.06539705903389625 +241054,1205.270000014703,-0.0653991862411835 +241055,1205.2750000147032,-0.06540131197418167 +241056,1205.2800000147033,-0.06540343623450313 +241057,1205.2850000147034,-0.0654055590237574 +241058,1205.2900000147035,-0.06540768034355114 +241059,1205.2950000147036,-0.06540980019548814 +241060,1205.3000000147038,-0.06541191858116943 +241061,1205.3050000147039,-0.06541403550219313 +241062,1205.310000014704,-0.06541615096015457 +241063,1205.315000014704,-0.06541826495664627 +241064,1205.3200000147042,-0.06542037749325794 +241065,1205.3250000147043,-0.06542248857157648 +241066,1205.3300000147044,-0.06542459819318602 +241067,1205.3350000147045,-0.06542670635966792 +241068,1205.3400000147046,-0.0654288130726007 +241069,1205.3450000147047,-0.06543091833356017 +241070,1205.3500000147048,-0.06543302214411935 +241071,1205.355000014705,-0.06543512450584853 +241072,1205.360000014705,-0.0654372254203152 +241073,1205.3650000147052,-0.06543932488908419 +241074,1205.3700000147053,-0.06544142291371753 +241075,1205.3750000147054,-0.06544351949577455 +241076,1205.3800000147055,-0.06544561463681187 +241077,1205.3850000147056,-0.06544770833838338 +241078,1205.3900000147057,-0.06544980060204028 +241079,1205.3950000147058,-0.06545189142933107 +241080,1205.400000014706,-0.06545398082180155 +241081,1205.405000014706,-0.06545606878099486 +241082,1205.4100000147062,-0.06545815530845142 +241083,1205.4150000147063,-0.06546024040570904 +241084,1205.4200000147064,-0.06546232407430283 +241085,1205.4250000147065,-0.06546440631576525 +241086,1205.4300000147066,-0.06546648713162612 +241087,1205.4350000147067,-0.0654685665234126 +241088,1205.4400000147068,-0.06547064449264924 +241089,1205.445000014707,-0.06547272104085794 +241090,1205.450000014707,-0.06547479616955801 +241091,1205.4550000147071,-0.06547686988026612 +241092,1205.4600000147072,-0.06547894217449636 +241093,1205.4650000147074,-0.06548101305376017 +241094,1205.4700000147075,-0.06548308251956643 +241095,1205.4750000147076,-0.06548515057342144 +241096,1205.4800000147077,-0.0654872172168289 +241097,1205.4850000147078,-0.06548928245128996 +241098,1205.490000014708,-0.06549134627830316 +241099,1205.495000014708,-0.06549340869936454 +241100,1205.5000000147081,-0.06549546971596754 +241101,1205.5050000147082,-0.06549752932960304 +241102,1205.5100000147083,-0.06549958754175944 +241103,1205.5150000147084,-0.06550164435392256 +241104,1205.5200000147086,-0.0655036997675757 +241105,1205.5250000147087,-0.06550575378419962 +241106,1205.5300000147088,-0.06550780640527262 +241107,1205.5350000147089,-0.06550985763227044 +241108,1205.540000014709,-0.06551190746666632 +241109,1205.545000014709,-0.06551395590993105 +241110,1205.5500000147092,-0.06551600296353285 +241111,1205.5550000147093,-0.06551804862893755 +241112,1205.5600000147094,-0.06552009290760843 +241113,1205.5650000147095,-0.06552213580100634 +241114,1205.5700000147096,-0.06552417731058965 +241115,1205.5750000147098,-0.06552621743781425 +241116,1205.5800000147099,-0.06552825618413363 +241117,1205.58500001471,-0.06553029355099878 +241118,1205.59000001471,-0.0655323295398583 +241119,1205.5950000147102,-0.06553436415215831 +241120,1205.6000000147103,-0.06553639738934253 +241121,1205.6050000147104,-0.06553842925285223 +241122,1205.6100000147105,-0.06554045974412633 +241123,1205.6150000147106,-0.06554248886460126 +241124,1205.6200000147107,-0.06554451661571108 +241125,1205.6250000147108,-0.06554654299888746 +241126,1205.630000014711,-0.06554856801555968 +241127,1205.635000014711,-0.06555059166715463 +241128,1205.6400000147112,-0.06555261395509679 +241129,1205.6450000147113,-0.06555463488080833 +241130,1205.6500000147114,-0.06555665444570898 +241131,1205.6550000147115,-0.06555867265121615 +241132,1205.6600000147116,-0.0655606894987449 +241133,1205.6650000147117,-0.06556270498970791 +241134,1205.6700000147118,-0.06556471912551554 +241135,1205.675000014712,-0.0655667319075758 +241136,1205.680000014712,-0.06556874333729437 +241137,1205.6850000147122,-0.06557075341607459 +241138,1205.6900000147123,-0.06557276214531749 +241139,1205.6950000147124,-0.06557476952642179 +241140,1205.7000000147125,-0.0655767755607839 +241141,1205.7050000147126,-0.06557878024979792 +241142,1205.7100000147127,-0.06558078359485561 +241143,1205.7150000147128,-0.06558278559734652 +241144,1205.720000014713,-0.06558478625865787 +241145,1205.725000014713,-0.06558678558017456 +241146,1205.7300000147131,-0.06558878356327927 +241147,1205.7350000147133,-0.06559078020935237 +241148,1205.7400000147134,-0.06559277551977202 +241149,1205.7450000147135,-0.06559476949591406 +241150,1205.7500000147136,-0.06559676213915208 +241151,1205.7550000147137,-0.06559875345085746 +241152,1205.7600000147138,-0.06560074343239931 +241153,1205.765000014714,-0.06560273208514451 +241154,1205.770000014714,-0.0656047194104577 +241155,1205.7750000147141,-0.0656067054097013 +241156,1205.7800000147142,-0.0656086900842355 +241157,1205.7850000147143,-0.06561067343541829 +241158,1205.7900000147145,-0.06561265546460542 +241159,1205.7950000147146,-0.06561463617315044 +241160,1205.8000000147147,-0.06561661556240474 +241161,1205.8050000147148,-0.06561859363371746 +241162,1205.810000014715,-0.06562057038843558 +241163,1205.815000014715,-0.06562254582790389 +241164,1205.820000014715,-0.06562451995346501 +241165,1205.8250000147152,-0.06562649276645936 +241166,1205.8300000147153,-0.06562846426822522 +241167,1205.8350000147154,-0.06563043446009867 +241168,1205.8400000147155,-0.06563240334341366 +241169,1205.8450000147157,-0.06563437091950197 +241170,1205.8500000147158,-0.06563633718969328 +241171,1205.8550000147159,-0.06563830215531505 +241172,1205.860000014716,-0.06564026581769264 +241173,1205.865000014716,-0.06564222817814928 +241174,1205.8700000147162,-0.06564418923800606 +241175,1205.8750000147163,-0.06564614899858198 +241176,1205.8800000147164,-0.06564810746119386 +241177,1205.8850000147165,-0.06565006462715647 +241178,1205.8900000147166,-0.06565202049778242 +241179,1205.8950000147167,-0.06565397507438224 +241180,1205.9000000147169,-0.06565592835826439 +241181,1205.905000014717,-0.06565788035073518 +241182,1205.910000014717,-0.06565983105309887 +241183,1205.9150000147172,-0.06566178046665763 +241184,1205.9200000147173,-0.06566372859271155 +241185,1205.9250000147174,-0.06566567543255863 +241186,1205.9300000147175,-0.06566762098749482 +241187,1205.9350000147176,-0.06566956525881401 +241188,1205.9400000147177,-0.06567150824780801 +241189,1205.9450000147178,-0.0656734499557666 +241190,1205.950000014718,-0.06567539038397749 +241191,1205.955000014718,-0.06567732953372635 +241192,1205.9600000147182,-0.06567926740629683 +241193,1205.9650000147183,-0.0656812040029705 +241194,1205.9700000147184,-0.06568313932502697 +241195,1205.9750000147185,-0.06568507337374373 +241196,1205.9800000147186,-0.06568700615039633 +241197,1205.9850000147187,-0.06568893765625827 +241198,1205.9900000147188,-0.06569086789260105 +241199,1205.995000014719,-0.06569279686069415 +241200,1206.000000014719,-0.06569472456180504 +241201,1206.0050000147191,-0.06569665099719924 +241202,1206.0100000147193,-0.06569857616814019 +241203,1206.0150000147194,-0.06570050007588944 +241204,1206.0200000147195,-0.06570242272170648 +241205,1206.0250000147196,-0.06570434410684886 +241206,1206.0300000147197,-0.06570626423257216 +241207,1206.0350000147198,-0.06570818310012995 +241208,1206.04000001472,-0.06571010071077388 +241209,1206.04500001472,-0.0657120170657536 +241210,1206.0500000147201,-0.06571393216631684 +241211,1206.0550000147202,-0.06571584601370933 +241212,1206.0600000147203,-0.06571775860917492 +241213,1206.0650000147205,-0.06571966995395546 +241214,1206.0700000147206,-0.06572158004929086 +241215,1206.0750000147207,-0.06572348889641914 +241216,1206.0800000147208,-0.06572539649657635 +241217,1206.085000014721,-0.06572730285099665 +241218,1206.090000014721,-0.06572920796091224 +241219,1206.095000014721,-0.06573111182755341 +241220,1206.1000000147212,-0.06573301445214856 +241221,1206.1050000147213,-0.06573491583592418 +241222,1206.1100000147214,-0.06573681598010485 +241223,1206.1150000147215,-0.06573871488591322 +241224,1206.1200000147217,-0.06574061255457009 +241225,1206.1250000147218,-0.06574250898729436 +241226,1206.1300000147219,-0.06574440418530302 +241227,1206.135000014722,-0.06574629814981119 +241228,1206.140000014722,-0.06574819088203211 +241229,1206.1450000147222,-0.06575008238317716 +241230,1206.1500000147223,-0.06575197265445583 +241231,1206.1550000147224,-0.06575386169707577 +241232,1206.1600000147225,-0.06575574951224274 +241233,1206.1650000147226,-0.06575763610116066 +241234,1206.1700000147227,-0.0657595214650316 +241235,1206.1750000147229,-0.06576140560505578 +241236,1206.180000014723,-0.06576328852243155 +241237,1206.185000014723,-0.06576517021835544 +241238,1206.1900000147232,-0.06576705069402217 +241239,1206.1950000147233,-0.06576892995062457 +241240,1206.2000000147234,-0.0657708079893537 +241241,1206.2050000147235,-0.06577268481139875 +241242,1206.2100000147236,-0.06577456041794712 +241243,1206.2150000147237,-0.06577643481018439 +241244,1206.2200000147238,-0.06577830798929431 +241245,1206.225000014724,-0.06578017995645882 +241246,1206.230000014724,-0.06578205071285811 +241247,1206.2350000147242,-0.0657839202596705 +241248,1206.2400000147243,-0.06578578859807255 +241249,1206.2450000147244,-0.06578765572923902 +241250,1206.2500000147245,-0.06578952165434289 +241251,1206.2550000147246,-0.06579138637455537 +241252,1206.2600000147247,-0.06579324989104583 +241253,1206.2650000147248,-0.06579511220498195 +241254,1206.270000014725,-0.06579697331752957 +241255,1206.275000014725,-0.06579883322985278 +241256,1206.2800000147251,-0.06580069194311391 +241257,1206.2850000147253,-0.06580254945847357 +241258,1206.2900000147254,-0.06580440577709053 +241259,1206.2950000147255,-0.06580626090012186 +241260,1206.3000000147256,-0.06580811482872288 +241261,1206.3050000147257,-0.06580996756404717 +241262,1206.3100000147258,-0.06581181910724655 +241263,1206.315000014726,-0.0658136694594711 +241264,1206.320000014726,-0.06581551862186918 +241265,1206.3250000147261,-0.06581736659558743 +241266,1206.3300000147262,-0.06581921338177074 +241267,1206.3350000147263,-0.06582105898156229 +241268,1206.3400000147265,-0.06582290339610354 +241269,1206.3450000147266,-0.06582474662653424 +241270,1206.3500000147267,-0.06582658867399244 +241271,1206.3550000147268,-0.06582842953961443 +241272,1206.360000014727,-0.06583026922453489 +241273,1206.365000014727,-0.06583210772988671 +241274,1206.370000014727,-0.06583394505680111 +241275,1206.3750000147272,-0.06583578120640766 +241276,1206.3800000147273,-0.06583761617983419 +241277,1206.3850000147274,-0.06583944997820687 +241278,1206.3900000147275,-0.06584128260265018 +241279,1206.3950000147277,-0.06584311405428693 +241280,1206.4000000147278,-0.06584494433423825 +241281,1206.4050000147279,-0.06584677344362361 +241282,1206.410000014728,-0.06584860138356077 +241283,1206.415000014728,-0.06585042815516591 +241284,1206.4200000147282,-0.06585225375955348 +241285,1206.4250000147283,-0.06585407819783629 +241286,1206.4300000147284,-0.06585590147112551 +241287,1206.4350000147285,-0.06585772358053064 +241288,1206.4400000147286,-0.06585954452715959 +241289,1206.4450000147287,-0.06586136431211854 +241290,1206.4500000147289,-0.06586318293651211 +241291,1206.455000014729,-0.06586500040144325 +241292,1206.460000014729,-0.06586681670801328 +241293,1206.4650000147292,-0.06586863185732189 +241294,1206.4700000147293,-0.06587044585046717 +241295,1206.4750000147294,-0.06587225868854554 +241296,1206.4800000147295,-0.06587407037265187 +241297,1206.4850000147296,-0.06587588090387936 +241298,1206.4900000147297,-0.06587769028331963 +241299,1206.4950000147298,-0.06587949851206268 +241300,1206.50000001473,-0.06588130559119691 +241301,1206.50500001473,-0.06588311152180912 +241302,1206.5100000147302,-0.0658849163049845 +241303,1206.5150000147303,-0.06588671994180667 +241304,1206.5200000147304,-0.06588852243335765 +241305,1206.5250000147305,-0.06589032378071788 +241306,1206.5300000147306,-0.06589212398496619 +241307,1206.5350000147307,-0.06589392304717986 +241308,1206.5400000147308,-0.0658957209684346 +241309,1206.545000014731,-0.06589751774980453 +241310,1206.550000014731,-0.06589931339236217 +241311,1206.5550000147311,-0.06590110789717854 +241312,1206.5600000147313,-0.06590290126532303 +241313,1206.5650000147314,-0.06590469349786351 +241314,1206.5700000147315,-0.06590648459586632 +241315,1206.5750000147316,-0.06590827456039616 +241316,1206.5800000147317,-0.06591006339251627 +241317,1206.5850000147318,-0.0659118510932883 +241318,1206.590000014732,-0.06591363766377235 +241319,1206.595000014732,-0.06591542310502699 +241320,1206.6000000147321,-0.06591720741810926 +241321,1206.6050000147322,-0.06591899060407466 +241322,1206.6100000147323,-0.06592077266397718 +241323,1206.6150000147325,-0.06592255359886923 +241324,1206.6200000147326,-0.06592433340980175 +241325,1206.6250000147327,-0.06592611209782413 +241326,1206.6300000147328,-0.06592788966398425 +241327,1206.635000014733,-0.06592966610932847 +241328,1206.640000014733,-0.06593144143490168 +241329,1206.6450000147331,-0.06593321564174719 +241330,1206.6500000147332,-0.06593498873090683 +241331,1206.6550000147333,-0.06593676070342099 +241332,1206.6600000147334,-0.06593853156032846 +241333,1206.6650000147336,-0.0659403013026666 +241334,1206.6700000147337,-0.06594206993147128 +241335,1206.6750000147338,-0.06594383744777685 +241336,1206.6800000147339,-0.06594560385261618 +241337,1206.685000014734,-0.06594736914702067 +241338,1206.690000014734,-0.06594913333202022 +241339,1206.6950000147342,-0.0659508964086433 +241340,1206.7000000147343,-0.06595265837791682 +241341,1206.7050000147344,-0.0659544192408663 +241342,1206.7100000147345,-0.06595617899851577 +241343,1206.7150000147346,-0.06595793765188776 +241344,1206.7200000147348,-0.06595969520200338 +241345,1206.7250000147349,-0.06596145164988228 +241346,1206.730000014735,-0.06596320699654262 +241347,1206.735000014735,-0.06596496124300115 +241348,1206.7400000147352,-0.06596671439027312 +241349,1206.7450000147353,-0.06596846643937236 +241350,1206.7500000147354,-0.06597021739131129 +241351,1206.7550000147355,-0.0659719672471008 +241352,1206.7600000147356,-0.06597371600775045 +241353,1206.7650000147357,-0.06597546367426829 +241354,1206.7700000147358,-0.06597721024766097 +241355,1206.775000014736,-0.06597895572893367 +241356,1206.780000014736,-0.06598070011909021 +241357,1206.7850000147362,-0.06598244341913295 +241358,1206.7900000147363,-0.06598418563006281 +241359,1206.7950000147364,-0.06598592675287933 +241360,1206.8000000147365,-0.06598766678858059 +241361,1206.8050000147366,-0.0659894057381633 +241362,1206.8100000147367,-0.06599114360262276 +241363,1206.8150000147368,-0.06599288038295285 +241364,1206.820000014737,-0.06599461608014603 +241365,1206.825000014737,-0.0659963506951934 +241366,1206.8300000147372,-0.06599808422908462 +241367,1206.8350000147373,-0.06599981668280801 +241368,1206.8400000147374,-0.06600154805735042 +241369,1206.8450000147375,-0.06600327835369739 +241370,1206.8500000147376,-0.06600500757283301 +241371,1206.8550000147377,-0.06600673571574003 +241372,1206.8600000147378,-0.06600846278339981 +241373,1206.865000014738,-0.06601018877679232 +241374,1206.870000014738,-0.06601191369689616 +241375,1206.8750000147381,-0.06601363754468856 +241376,1206.8800000147382,-0.06601536032114538 +241377,1206.8850000147384,-0.06601708202724112 +241378,1206.8900000147385,-0.06601880266394891 +241379,1206.8950000147386,-0.06602052223224052 +241380,1206.9000000147387,-0.06602224073308634 +241381,1206.9050000147388,-0.06602395816745543 +241382,1206.910000014739,-0.06602567453631553 +241383,1206.915000014739,-0.06602738984063293 +241384,1206.9200000147391,-0.06602910408137269 +241385,1206.9250000147392,-0.06603081725949844 +241386,1206.9300000147393,-0.06603252937597248 +241387,1206.9350000147394,-0.06603424043175583 +241388,1206.9400000147396,-0.06603595042780812 +241389,1206.9450000147397,-0.06603765936508764 +241390,1206.9500000147398,-0.06603936724455135 +241391,1206.9550000147399,-0.06604107406715494 +241392,1206.96000001474,-0.0660427798338527 +241393,1206.96500001474,-0.06604448454559764 +241394,1206.9700000147402,-0.06604618820334143 +241395,1206.9750000147403,-0.06604789080803443 +241396,1206.9800000147404,-0.06604959236062569 +241397,1206.9850000147405,-0.0660512928620629 +241398,1206.9900000147406,-0.06605299231329254 +241399,1206.9950000147408,-0.06605469071525968 +241400,1207.0000000147409,-0.06605638806890815 +241401,1207.005000014741,-0.06605808437518043 +241402,1207.010000014741,-0.06605977963501773 +241403,1207.0150000147412,-0.06606147384935997 +241404,1207.0200000147413,-0.06606316701914575 +241405,1207.0250000147414,-0.0660648591453124 +241406,1207.0300000147415,-0.06606655022879593 +241407,1207.0350000147416,-0.06606824027053111 +241408,1207.0400000147417,-0.06606992927145137 +241409,1207.0450000147418,-0.06607161723248892 +241410,1207.050000014742,-0.06607330415457463 +241411,1207.055000014742,-0.06607499003863812 +241412,1207.0600000147422,-0.06607667488560774 +241413,1207.0650000147423,-0.06607835869641057 +241414,1207.0700000147424,-0.06608004147197243 +241415,1207.0750000147425,-0.06608172321321781 +241416,1207.0800000147426,-0.06608340392107001 +241417,1207.0850000147427,-0.06608508359645106 +241418,1207.0900000147428,-0.06608676224028168 +241419,1207.095000014743,-0.06608843985348137 +241420,1207.100000014743,-0.06609011643696837 +241421,1207.1050000147432,-0.0660917919916597 +241422,1207.1100000147433,-0.06609346651847105 +241423,1207.1150000147434,-0.06609514001831693 +241424,1207.1200000147435,-0.0660968124921106 +241425,1207.1250000147436,-0.06609848394076402 +241426,1207.1300000147437,-0.066100154365188 +241427,1207.1350000147438,-0.06610182376629206 +241428,1207.140000014744,-0.06610349214498447 +241429,1207.145000014744,-0.0661051595021723 +241430,1207.1500000147441,-0.06610682583876139 +241431,1207.1550000147442,-0.06610849115565631 +241432,1207.1600000147444,-0.06611015545376048 +241433,1207.1650000147445,-0.066111818733976 +241434,1207.1700000147446,-0.06611348099720384 +241435,1207.1750000147447,-0.0661151422443437 +241436,1207.1800000147448,-0.06611680247629409 +241437,1207.185000014745,-0.06611846169395226 +241438,1207.190000014745,-0.06612011989821431 +241439,1207.1950000147451,-0.0661217770899751 +241440,1207.2000000147452,-0.06612343327012828 +241441,1207.2050000147453,-0.0661250884395663 +241442,1207.2100000147454,-0.06612674259918043 +241443,1207.2150000147456,-0.06612839574986071 +241444,1207.2200000147457,-0.06613004789249598 +241445,1207.2250000147458,-0.06613169902797393 +241446,1207.2300000147459,-0.06613334915718098 +241447,1207.235000014746,-0.06613499828100246 +241448,1207.240000014746,-0.06613664640032242 +241449,1207.2450000147462,-0.06613829351602378 +241450,1207.2500000147463,-0.06613993962898825 +241451,1207.2550000147464,-0.06614158474009636 +241452,1207.2600000147465,-0.0661432288502275 +241453,1207.2650000147466,-0.06614487196025982 +241454,1207.2700000147468,-0.06614651407107035 +241455,1207.2750000147469,-0.0661481551835349 +241456,1207.280000014747,-0.06614979529852814 +241457,1207.285000014747,-0.0661514344169236 +241458,1207.2900000147472,-0.0661530725395936 +241459,1207.2950000147473,-0.06615470966740929 +241460,1207.3000000147474,-0.06615634580124068 +241461,1207.3050000147475,-0.06615798094195664 +241462,1207.3100000147476,-0.06615961509042485 +241463,1207.3150000147477,-0.06616124824751185 +241464,1207.3200000147478,-0.06616288041408303 +241465,1207.325000014748,-0.0661645115910026 +241466,1207.330000014748,-0.0661661417791337 +241467,1207.3350000147482,-0.06616777097933825 +241468,1207.3400000147483,-0.06616939919247704 +241469,1207.3450000147484,-0.06617102641940972 +241470,1207.3500000147485,-0.06617265266099484 +241471,1207.3550000147486,-0.06617427791808977 +241472,1207.3600000147487,-0.06617590219155076 +241473,1207.3650000147488,-0.06617752548223292 +241474,1207.370000014749,-0.06617914779099024 +241475,1207.375000014749,-0.06618076911867558 +241476,1207.3800000147492,-0.06618238946614066 +241477,1207.3850000147493,-0.0661840088342361 +241478,1207.3900000147494,-0.06618562722381138 +241479,1207.3950000147495,-0.06618724463571486 +241480,1207.4000000147496,-0.0661888610707938 +241481,1207.4050000147497,-0.06619047652989432 +241482,1207.4100000147498,-0.06619209101386146 +241483,1207.41500001475,-0.0661937045235391 +241484,1207.42000001475,-0.06619531705977005 +241485,1207.4250000147501,-0.066196928623396 +241486,1207.4300000147502,-0.06619853921525753 +241487,1207.4350000147504,-0.06620014883619416 +241488,1207.4400000147505,-0.06620175748704424 +241489,1207.4450000147506,-0.06620336516864504 +241490,1207.4500000147507,-0.06620497188183276 +241491,1207.4550000147508,-0.06620657762744252 +241492,1207.460000014751,-0.06620818240630828 +241493,1207.465000014751,-0.06620978621926296 +241494,1207.4700000147511,-0.0662113890671384 +241495,1207.4750000147512,-0.06621299095076531 +241496,1207.4800000147513,-0.06621459187097337 +241497,1207.4850000147514,-0.0662161918285911 +241498,1207.4900000147516,-0.06621779082444602 +241499,1207.4950000147517,-0.06621938885936453 +241500,1207.5000000147518,-0.06622098593417196 +241501,1207.5050000147519,-0.06622258204969257 +241502,1207.510000014752,-0.06622417720674954 +241503,1207.515000014752,-0.066225771406165 +241504,1207.5200000147522,-0.06622736464875997 +241505,1207.5250000147523,-0.06622895693535445 +241506,1207.5300000147524,-0.06623054826676734 +241507,1207.5350000147525,-0.06623213864381651 +241508,1207.5400000147526,-0.06623372806731874 +241509,1207.5450000147528,-0.06623531653808977 +241510,1207.5500000147529,-0.06623690405694427 +241511,1207.555000014753,-0.06623849062469588 +241512,1207.560000014753,-0.06624007624215714 +241513,1207.5650000147532,-0.06624166091013957 +241514,1207.5700000147533,-0.06624324462945369 +241515,1207.5750000147534,-0.06624482740090888 +241516,1207.5800000147535,-0.06624640922531351 +241517,1207.5850000147536,-0.06624799010347494 +241518,1207.5900000147537,-0.06624957003619947 +241519,1207.5950000147539,-0.06625114902429234 +241520,1207.600000014754,-0.0662527270685578 +241521,1207.605000014754,-0.06625430416979897 +241522,1207.6100000147542,-0.06625588032881806 +241523,1207.6150000147543,-0.06625745554641616 +241524,1207.6200000147544,-0.06625902982339335 +241525,1207.6250000147545,-0.06626060316054871 +241526,1207.6300000147546,-0.06626217555868029 +241527,1207.6350000147547,-0.06626374701858506 +241528,1207.6400000147548,-0.06626531754105905 +241529,1207.645000014755,-0.0662668871268972 +241530,1207.650000014755,-0.06626845577689347 +241531,1207.6550000147552,-0.06627002349184082 +241532,1207.6600000147553,-0.06627159027253113 +241533,1207.6650000147554,-0.06627315611975533 +241534,1207.6700000147555,-0.06627472103430332 +241535,1207.6750000147556,-0.06627628501696396 +241536,1207.6800000147557,-0.06627784806852517 +241537,1207.6850000147558,-0.06627941018977382 +241538,1207.690000014756,-0.06628097138149575 +241539,1207.695000014756,-0.06628253164447585 +241540,1207.7000000147561,-0.06628409097949799 +241541,1207.7050000147563,-0.06628564938734505 +241542,1207.7100000147564,-0.0662872068687989 +241543,1207.7150000147565,-0.0662887634246404 +241544,1207.7200000147566,-0.06629031905564947 +241545,1207.7250000147567,-0.06629187376260501 +241546,1207.7300000147568,-0.06629342754628491 +241547,1207.735000014757,-0.0662949804074661 +241548,1207.740000014757,-0.06629653234692452 +241549,1207.7450000147571,-0.06629808336543512 +241550,1207.7500000147572,-0.06629963346377188 +241551,1207.7550000147573,-0.06630118264270779 +241552,1207.7600000147575,-0.06630273090301485 +241553,1207.7650000147576,-0.0663042782454641 +241554,1207.7700000147577,-0.06630582467082563 +241555,1207.7750000147578,-0.0663073701798685 +241556,1207.780000014758,-0.06630891477336084 +241557,1207.785000014758,-0.0663104584520698 +241558,1207.790000014758,-0.06631200121676155 +241559,1207.7950000147582,-0.0663135430682013 +241560,1207.8000000147583,-0.06631508400715332 +241561,1207.8050000147584,-0.06631662403438089 +241562,1207.8100000147585,-0.06631816315064636 +241563,1207.8150000147587,-0.06631970135671107 +241564,1207.8200000147588,-0.06632123865333543 +241565,1207.8250000147589,-0.06632277504127891 +241566,1207.830000014759,-0.06632431052130003 +241567,1207.835000014759,-0.06632584509415629 +241568,1207.8400000147592,-0.06632737876060434 +241569,1207.8450000147593,-0.0663289115213998 +241570,1207.8500000147594,-0.0663304433772974 +241571,1207.8550000147595,-0.06633197432905089 +241572,1207.8600000147596,-0.06633350437741305 +241573,1207.8650000147597,-0.06633503352313579 +241574,1207.8700000147599,-0.06633656176697005 +241575,1207.87500001476,-0.06633808910966581 +241576,1207.88000001476,-0.0663396155519721 +241577,1207.8850000147602,-0.06634114109463708 +241578,1207.8900000147603,-0.06634266573840793 +241579,1207.8950000147604,-0.06634418948403091 +241580,1207.9000000147605,-0.06634571233225134 +241581,1207.9050000147606,-0.06634723428381362 +241582,1207.9100000147607,-0.06634875533946122 +241583,1207.9150000147608,-0.06635027549993669 +241584,1207.920000014761,-0.06635179476598164 +241585,1207.925000014761,-0.06635331313833677 +241586,1207.9300000147612,-0.06635483061774189 +241587,1207.9350000147613,-0.06635634720493581 +241588,1207.9400000147614,-0.06635786290065651 +241589,1207.9450000147615,-0.06635937770564103 +241590,1207.9500000147616,-0.06636089162062546 +241591,1207.9550000147617,-0.066362404646345 +241592,1207.9600000147618,-0.06636391678353395 +241593,1207.965000014762,-0.0663654280329257 +241594,1207.970000014762,-0.0663669383952527 +241595,1207.9750000147621,-0.06636844787124654 +241596,1207.9800000147623,-0.0663699564616379 +241597,1207.9850000147624,-0.06637146416715652 +241598,1207.9900000147625,-0.06637297098853126 +241599,1207.9950000147626,-0.06637447692649011 +241600,1208.0000000147627,-0.06637598198176009 +241601,1208.0050000147628,-0.0663774861550674 +241602,1208.010000014763,-0.06637898944713731 +241603,1208.015000014763,-0.0663804918586942 +241604,1208.0200000147631,-0.06638199339046157 +241605,1208.0250000147632,-0.06638349404316198 +241606,1208.0300000147633,-0.06638499381751717 +241607,1208.0350000147635,-0.06638649271424797 +241608,1208.0400000147636,-0.0663879907340743 +241609,1208.0450000147637,-0.06638948787771523 +241610,1208.0500000147638,-0.06639098414588893 +241611,1208.055000014764,-0.06639247953931268 +241612,1208.060000014764,-0.0663939740587029 +241613,1208.065000014764,-0.06639546770477513 +241614,1208.0700000147642,-0.06639696047824403 +241615,1208.0750000147643,-0.06639845237982336 +241616,1208.0800000147644,-0.06639994341022608 +241617,1208.0850000147645,-0.06640143357016418 +241618,1208.0900000147647,-0.06640292286034885 +241619,1208.0950000147648,-0.0664044112814904 +241620,1208.1000000147649,-0.06640589883429826 +241621,1208.105000014765,-0.066407385519481 +241622,1208.110000014765,-0.06640887133774633 +241623,1208.1150000147652,-0.06641035628980108 +241624,1208.1200000147653,-0.06641184037635124 +241625,1208.1250000147654,-0.06641332359810193 +241626,1208.1300000147655,-0.06641480595575741 +241627,1208.1350000147656,-0.06641628745002112 +241628,1208.1400000147657,-0.06641776808159558 +241629,1208.1450000147659,-0.0664192478511825 +241630,1208.150000014766,-0.06642072675948274 +241631,1208.155000014766,-0.06642220480719627 +241632,1208.1600000147662,-0.06642368199502227 +241633,1208.1650000147663,-0.06642515832365901 +241634,1208.1700000147664,-0.066426633793804 +241635,1208.1750000147665,-0.06642810840615379 +241636,1208.1800000147666,-0.06642958216140417 +241637,1208.1850000147667,-0.06643105506025007 +241638,1208.1900000147668,-0.06643252710338558 +241639,1208.195000014767,-0.06643399829150394 +241640,1208.200000014767,-0.06643546862529756 +241641,1208.2050000147672,-0.06643693810545802 +241642,1208.2100000147673,-0.06643840673267604 +241643,1208.2150000147674,-0.06643987450764154 +241644,1208.2200000147675,-0.06644134143104359 +241645,1208.2250000147676,-0.06644280750357044 +241646,1208.2300000147677,-0.0664442727259095 +241647,1208.2350000147678,-0.06644573709874736 +241648,1208.240000014768,-0.06644720062276978 +241649,1208.245000014768,-0.06644866329866168 +241650,1208.2500000147681,-0.06645012512710721 +241651,1208.2550000147683,-0.06645158610878965 +241652,1208.2600000147684,-0.06645304624439148 +241653,1208.2650000147685,-0.06645450553459434 +241654,1208.2700000147686,-0.06645596398007907 +241655,1208.2750000147687,-0.06645742158152568 +241656,1208.2800000147688,-0.06645887833961339 +241657,1208.285000014769,-0.06646033425502058 +241658,1208.290000014769,-0.06646178932842486 +241659,1208.2950000147691,-0.06646324356050295 +241660,1208.3000000147692,-0.06646469695193086 +241661,1208.3050000147693,-0.06646614950338373 +241662,1208.3100000147695,-0.06646760121553587 +241663,1208.3150000147696,-0.06646905208906086 +241664,1208.3200000147697,-0.06647050212463143 +241665,1208.3250000147698,-0.06647195132291951 +241666,1208.33000001477,-0.06647339968459624 +241667,1208.33500001477,-0.06647484721033196 +241668,1208.34000001477,-0.0664762939007962 +241669,1208.3450000147702,-0.06647773975665769 +241670,1208.3500000147703,-0.06647918477858439 +241671,1208.3550000147704,-0.06648062896724344 +241672,1208.3600000147705,-0.0664820723233012 +241673,1208.3650000147707,-0.06648351484742325 +241674,1208.3700000147708,-0.06648495654027435 +241675,1208.3750000147709,-0.06648639740251851 +241676,1208.380000014771,-0.0664878374348189 +241677,1208.385000014771,-0.06648927663783795 +241678,1208.3900000147712,-0.06649071501223729 +241679,1208.3950000147713,-0.06649215255867776 +241680,1208.4000000147714,-0.06649358927781943 +241681,1208.4050000147715,-0.06649502517032158 +241682,1208.4100000147716,-0.06649646023684269 +241683,1208.4150000147717,-0.06649789447804053 +241684,1208.4200000147719,-0.06649932789457201 +241685,1208.425000014772,-0.06650076048709332 +241686,1208.430000014772,-0.06650219225625985 +241687,1208.4350000147722,-0.06650362320272624 +241688,1208.4400000147723,-0.06650505332714632 +241689,1208.4450000147724,-0.0665064826301732 +241690,1208.4500000147725,-0.06650791111245917 +241691,1208.4550000147726,-0.06650933877465579 +241692,1208.4600000147727,-0.06651076561741384 +241693,1208.4650000147728,-0.06651219164138332 +241694,1208.470000014773,-0.06651361684721352 +241695,1208.475000014773,-0.06651504123555288 +241696,1208.4800000147732,-0.06651646480704915 +241697,1208.4850000147733,-0.06651788756234929 +241698,1208.4900000147734,-0.06651930950209951 +241699,1208.4950000147735,-0.06652073062694529 +241700,1208.5000000147736,-0.06652215093753126 +241701,1208.5050000147737,-0.06652357043450141 +241702,1208.5100000147738,-0.0665249891184989 +241703,1208.515000014774,-0.06652640699016617 +241704,1208.520000014774,-0.0665278240501449 +241705,1208.5250000147742,-0.06652924029907602 +241706,1208.5300000147743,-0.06653065573759971 +241707,1208.5350000147744,-0.06653207036635543 +241708,1208.5400000147745,-0.06653348418598182 +241709,1208.5450000147746,-0.06653489719711686 +241710,1208.5500000147747,-0.06653630940039774 +241711,1208.5550000147748,-0.06653772079646092 +241712,1208.560000014775,-0.0665391313859421 +241713,1208.565000014775,-0.06654054116947627 +241714,1208.5700000147751,-0.06654195014769766 +241715,1208.5750000147752,-0.06654335832123978 +241716,1208.5800000147754,-0.06654476569073538 +241717,1208.5850000147755,-0.06654617225681647 +241718,1208.5900000147756,-0.06654757802011439 +241719,1208.5950000147757,-0.06654898298125966 +241720,1208.6000000147758,-0.06655038714088213 +241721,1208.605000014776,-0.06655179049961088 +241722,1208.610000014776,-0.06655319305807429 +241723,1208.6150000147761,-0.0665545948169 +241724,1208.6200000147762,-0.06655599577671491 +241725,1208.6250000147763,-0.06655739593814523 +241726,1208.6300000147764,-0.06655879530181642 +241727,1208.6350000147766,-0.06656019386835321 +241728,1208.6400000147767,-0.06656159163837963 +241729,1208.6450000147768,-0.06656298861251897 +241730,1208.6500000147769,-0.06656438479139379 +241731,1208.655000014777,-0.06656578017562599 +241732,1208.660000014777,-0.06656717476583668 +241733,1208.6650000147772,-0.06656856856264631 +241734,1208.6700000147773,-0.06656996156667457 +241735,1208.6750000147774,-0.06657135377854045 +241736,1208.6800000147775,-0.06657274519886228 +241737,1208.6850000147776,-0.0665741358282576 +241738,1208.6900000147778,-0.06657552566734327 +241739,1208.6950000147779,-0.06657691471673546 +241740,1208.700000014778,-0.0665783029770496 +241741,1208.705000014778,-0.06657969044890044 +241742,1208.7100000147782,-0.06658107713290201 +241743,1208.7150000147783,-0.06658246302966764 +241744,1208.7200000147784,-0.06658384813980994 +241745,1208.7250000147785,-0.06658523246394087 +241746,1208.7300000147786,-0.06658661600267161 +241747,1208.7350000147787,-0.06658799875661274 +241748,1208.7400000147788,-0.06658938072637402 +241749,1208.745000014779,-0.0665907619125646 +241750,1208.750000014779,-0.06659214231579293 +241751,1208.7550000147792,-0.06659352193666672 +241752,1208.7600000147793,-0.06659490077579303 +241753,1208.7650000147794,-0.06659627883377817 +241754,1208.7700000147795,-0.06659765611122784 +241755,1208.7750000147796,-0.06659903260874697 +241756,1208.7800000147797,-0.06660040832693985 +241757,1208.7850000147798,-0.06660178326641006 +241758,1208.79000001478,-0.06660315742776049 +241759,1208.79500001478,-0.06660453081159338 +241760,1208.8000000147802,-0.06660590341851023 +241761,1208.8050000147803,-0.0666072752491119 +241762,1208.8100000147804,-0.06660864630399854 +241763,1208.8150000147805,-0.06661001658376962 +241764,1208.8200000147806,-0.06661138608902395 +241765,1208.8250000147807,-0.06661275482035964 +241766,1208.8300000147808,-0.06661412277837413 +241767,1208.835000014781,-0.06661548996366416 +241768,1208.840000014781,-0.06661685637682584 +241769,1208.8450000147811,-0.06661822201845456 +241770,1208.8500000147812,-0.06661958688914506 +241771,1208.8550000147814,-0.0666209509894914 +241772,1208.8600000147815,-0.06662231432008697 +241773,1208.8650000147816,-0.06662367688152449 +241774,1208.8700000147817,-0.06662503867439601 +241775,1208.8750000147818,-0.06662639969929289 +241776,1208.880000014782,-0.06662775995680587 +241777,1208.885000014782,-0.06662911944752496 +241778,1208.8900000147821,-0.06663047817203956 +241779,1208.8950000147822,-0.06663183613093838 +241780,1208.9000000147823,-0.06663319332480946 +241781,1208.9050000147824,-0.06663454975424021 +241782,1208.9100000147826,-0.06663590541981732 +241783,1208.9150000147827,-0.06663726032212688 +241784,1208.9200000147828,-0.06663861446175429 +241785,1208.9250000147829,-0.0666399678392843 +241786,1208.930000014783,-0.06664132045530098 +241787,1208.935000014783,-0.06664267231038781 +241788,1208.9400000147832,-0.06664402340512753 +241789,1208.9450000147833,-0.06664537374010228 +241790,1208.9500000147834,-0.06664672331589351 +241791,1208.9550000147835,-0.06664807213308206 +241792,1208.9600000147836,-0.06664942019224811 +241793,1208.9650000147838,-0.06665076749397114 +241794,1208.9700000147839,-0.06665211403883006 +241795,1208.975000014784,-0.06665345982740307 +241796,1208.980000014784,-0.06665480486026774 +241797,1208.9850000147842,-0.06665614913800103 +241798,1208.9900000147843,-0.06665749266117918 +241799,1208.9950000147844,-0.06665883543037786 +241800,1209.0000000147845,-0.06666017744617206 +241801,1209.0050000147846,-0.06666151870913613 +241802,1209.0100000147847,-0.0666628592198438 +241803,1209.0150000147848,-0.06666419897886813 +241804,1209.020000014785,-0.06666553798678156 +241805,1209.025000014785,-0.06666687624415589 +241806,1209.0300000147852,-0.06666821375156229 +241807,1209.0350000147853,-0.06666955050957128 +241808,1209.0400000147854,-0.06667088651875275 +241809,1209.0450000147855,-0.06667222177967597 +241810,1209.0500000147856,-0.06667355629290954 +241811,1209.0550000147857,-0.06667489005902147 +241812,1209.0600000147858,-0.06667622307857911 +241813,1209.065000014786,-0.06667755535214923 +241814,1209.070000014786,-0.0666788868802979 +241815,1209.0750000147862,-0.0666802176635906 +241816,1209.0800000147863,-0.06668154770259219 +241817,1209.0850000147864,-0.06668287699786689 +241818,1209.0900000147865,-0.0666842055499783 +241819,1209.0950000147866,-0.06668553335948937 +241820,1209.1000000147867,-0.0666868604269625 +241821,1209.1050000147868,-0.06668818675295939 +241822,1209.110000014787,-0.06668951233804116 +241823,1209.115000014787,-0.06669083718276829 +241824,1209.1200000147871,-0.06669216128770067 +241825,1209.1250000147872,-0.06669348465339753 +241826,1209.1300000147874,-0.06669480728041753 +241827,1209.1350000147875,-0.06669612916931868 +241828,1209.1400000147876,-0.06669745032065838 +241829,1209.1450000147877,-0.06669877073499342 +241830,1209.1500000147878,-0.06670009041287998 +241831,1209.155000014788,-0.06670140935487365 +241832,1209.160000014788,-0.06670272756152934 +241833,1209.1650000147881,-0.06670404503340142 +241834,1209.1700000147882,-0.06670536177104362 +241835,1209.1750000147883,-0.06670667777500908 +241836,1209.1800000147884,-0.06670799304585029 +241837,1209.1850000147886,-0.06670930758411919 +241838,1209.1900000147887,-0.06671062139036707 +241839,1209.1950000147888,-0.06671193446514463 +241840,1209.2000000147889,-0.066713246809002 +241841,1209.205000014789,-0.06671455842248862 +241842,1209.210000014789,-0.06671586930615343 +241843,1209.2150000147892,-0.06671717946054471 +241844,1209.2200000147893,-0.06671848888621015 +241845,1209.2250000147894,-0.06671979758369685 +241846,1209.2300000147895,-0.0667211055535513 +241847,1209.2350000147896,-0.06672241279631941 +241848,1209.2400000147898,-0.06672371931254646 +241849,1209.2450000147899,-0.06672502510277718 +241850,1209.25000001479,-0.06672633016755568 +241851,1209.25500001479,-0.06672763450742547 +241852,1209.2600000147902,-0.06672893812292946 +241853,1209.2650000147903,-0.06673024101461003 +241854,1209.2700000147904,-0.06673154318300889 +241855,1209.2750000147905,-0.06673284462866722 +241856,1209.2800000147906,-0.06673414535212556 +241857,1209.2850000147907,-0.0667354453539239 +241858,1209.2900000147908,-0.06673674463460162 +241859,1209.295000014791,-0.06673804319469755 +241860,1209.300000014791,-0.06673934103474988 +241861,1209.3050000147912,-0.06674063815529625 +241862,1209.3100000147913,-0.06674193455687373 +241863,1209.3150000147914,-0.06674323024001878 +241864,1209.3200000147915,-0.06674452520526729 +241865,1209.3250000147916,-0.06674581945315455 +241866,1209.3300000147917,-0.0667471129842153 +241867,1209.3350000147918,-0.0667484057989837 +241868,1209.340000014792,-0.06674969789799329 +241869,1209.345000014792,-0.06675098928177707 +241870,1209.3500000147922,-0.06675227995086747 +241871,1209.3550000147923,-0.06675356990579631 +241872,1209.3600000147924,-0.06675485914709488 +241873,1209.3650000147925,-0.06675614767529385 +241874,1209.3700000147926,-0.06675743549092335 +241875,1209.3750000147927,-0.06675872259451292 +241876,1209.3800000147928,-0.06676000898659153 +241877,1209.385000014793,-0.0667612946676876 +241878,1209.390000014793,-0.06676257963832896 +241879,1209.3950000147931,-0.06676386389904287 +241880,1209.4000000147932,-0.06676514745035605 +241881,1209.4050000147934,-0.06676643029279461 +241882,1209.4100000147935,-0.06676771242688413 +241883,1209.4150000147936,-0.0667689938531496 +241884,1209.4200000147937,-0.06677027457211548 +241885,1209.4250000147938,-0.06677155458430561 +241886,1209.430000014794,-0.06677283389024335 +241887,1209.435000014794,-0.0667741124904514 +241888,1209.4400000147941,-0.06677539038545198 +241889,1209.4450000147942,-0.06677666757576671 +241890,1209.4500000147943,-0.06677794406191666 +241891,1209.4550000147945,-0.06677921984442234 +241892,1209.4600000147946,-0.06678049492380371 +241893,1209.4650000147947,-0.06678176930058018 +241894,1209.4700000147948,-0.06678304297527057 +241895,1209.475000014795,-0.06678431594839318 +241896,1209.480000014795,-0.06678558822046574 +241897,1209.485000014795,-0.06678685979200544 +241898,1209.4900000147952,-0.06678813066352887 +241899,1209.4950000147953,-0.06678940083555215 +241900,1209.5000000147954,-0.0667906703085908 +241901,1209.5050000147955,-0.0667919390831598 +241902,1209.5100000147957,-0.06679320715977353 +241903,1209.5150000147958,-0.06679447453894592 +241904,1209.5200000147959,-0.06679574122119028 +241905,1209.525000014796,-0.06679700720701941 +241906,1209.530000014796,-0.06679827249694553 +241907,1209.5350000147962,-0.06679953709148034 +241908,1209.5400000147963,-0.066800800991135 +241909,1209.5450000147964,-0.06680206419642011 +241910,1209.5500000147965,-0.06680332670784572 +241911,1209.5550000147966,-0.06680458852592137 +241912,1209.5600000147967,-0.06680584965115606 +241913,1209.5650000147969,-0.06680711008405818 +241914,1209.570000014797,-0.06680836982513567 +241915,1209.575000014797,-0.06680962887489589 +241916,1209.5800000147972,-0.06681088723384566 +241917,1209.5850000147973,-0.06681214490249127 +241918,1209.5900000147974,-0.06681340188133848 +241919,1209.5950000147975,-0.06681465817089251 +241920,1209.6000000147976,-0.06681591377165802 +241921,1209.6050000147977,-0.06681716868413917 +241922,1209.6100000147978,-0.0668184229088396 +241923,1209.615000014798,-0.0668196764462624 +241924,1209.620000014798,-0.06682092929691008 +241925,1209.6250000147982,-0.0668221814612847 +241926,1209.6300000147983,-0.06682343293988774 +241927,1209.6350000147984,-0.06682468373322017 +241928,1209.6400000147985,-0.06682593384178241 +241929,1209.6450000147986,-0.0668271832660744 +241930,1209.6500000147987,-0.06682843200659551 +241931,1209.6550000147988,-0.0668296800638446 +241932,1209.660000014799,-0.06683092743831999 +241933,1209.665000014799,-0.0668321741305195 +241934,1209.6700000147991,-0.06683342014094042 +241935,1209.6750000147993,-0.0668346654700795 +241936,1209.6800000147994,-0.066835910118433 +241937,1209.6850000147995,-0.06683715408649661 +241938,1209.6900000147996,-0.06683839737476556 +241939,1209.6950000147997,-0.06683963998373452 +241940,1209.7000000147998,-0.06684088191389763 +241941,1209.7050000148,-0.06684212316574856 +241942,1209.7100000148,-0.06684336373978043 +241943,1209.7150000148001,-0.06684460363648584 +241944,1209.7200000148002,-0.06684584285635689 +241945,1209.7250000148003,-0.06684708139988517 +241946,1209.7300000148005,-0.06684831926756174 +241947,1209.7350000148006,-0.06684955645987714 +241948,1209.7400000148007,-0.06685079297732141 +241949,1209.7450000148008,-0.06685202882038407 +241950,1209.750000014801,-0.06685326398955418 +241951,1209.755000014801,-0.0668544984853202 +241952,1209.760000014801,-0.06685573230817013 +241953,1209.7650000148012,-0.06685696545859147 +241954,1209.7700000148013,-0.06685819793707119 +241955,1209.7750000148014,-0.06685942974409578 +241956,1209.7800000148015,-0.06686066088015118 +241957,1209.7850000148017,-0.06686189134572286 +241958,1209.7900000148018,-0.06686312114129576 +241959,1209.7950000148019,-0.06686435026735435 +241960,1209.800000014802,-0.06686557872438256 +241961,1209.805000014802,-0.06686680651286384 +241962,1209.8100000148022,-0.06686803363328112 +241963,1209.8150000148023,-0.06686926008611685 +241964,1209.8200000148024,-0.06687048587185299 +241965,1209.8250000148025,-0.06687171099097093 +241966,1209.8300000148026,-0.06687293544395163 +241967,1209.8350000148027,-0.06687415923127554 +241968,1209.8400000148029,-0.0668753823534226 +241969,1209.845000014803,-0.06687660481087224 +241970,1209.850000014803,-0.06687782660410342 +241971,1209.8550000148032,-0.06687904773359458 +241972,1209.8600000148033,-0.0668802681998237 +241973,1209.8650000148034,-0.06688148800326824 +241974,1209.8700000148035,-0.06688270714440514 +241975,1209.8750000148036,-0.06688392562371093 +241976,1209.8800000148037,-0.06688514344166155 +241977,1209.8850000148038,-0.0668863605987325 +241978,1209.890000014804,-0.0668875770953988 +241979,1209.895000014804,-0.06688879293213497 +241980,1209.9000000148042,-0.066890008109415 +241981,1209.9050000148043,-0.06689122262771248 +241982,1209.9100000148044,-0.06689243648750041 +241983,1209.9150000148045,-0.06689364968925138 +241984,1209.9200000148046,-0.06689486223343744 +241985,1209.9250000148047,-0.06689607412053018 +241986,1209.9300000148048,-0.06689728535100074 +241987,1209.935000014805,-0.06689849592531973 +241988,1209.940000014805,-0.06689970584395726 +241989,1209.9450000148051,-0.06690091510738297 +241990,1209.9500000148053,-0.06690212371606608 +241991,1209.9550000148054,-0.06690333167047524 +241992,1209.9600000148055,-0.06690453897107869 +241993,1209.9650000148056,-0.06690574561834414 +241994,1209.9700000148057,-0.06690695161273885 +241995,1209.9750000148058,-0.0669081569547296 +241996,1209.980000014806,-0.06690936164478264 +241997,1209.985000014806,-0.06691056568336384 +241998,1209.9900000148061,-0.0669117690709385 +241999,1209.9950000148062,-0.0669129718079715 +242000,1210.0000000148063,-0.06691417389492722 +242001,1210.0050000148065,-0.06691537533226957 +242002,1210.0100000148066,-0.066916576120462 +242003,1210.0150000148067,-0.06691777625996749 +242004,1210.0200000148068,-0.0669189757512485 +242005,1210.025000014807,-0.06692017459476707 +242006,1210.030000014807,-0.06692137279098473 +242007,1210.035000014807,-0.0669225703403626 +242008,1210.0400000148072,-0.06692376724336126 +242009,1210.0450000148073,-0.06692496350044086 +242010,1210.0500000148074,-0.06692615911206105 +242011,1210.0550000148075,-0.06692735407868108 +242012,1210.0600000148077,-0.06692854840075965 +242013,1210.0650000148078,-0.06692974207875504 +242014,1210.0700000148079,-0.06693093511312506 +242015,1210.075000014808,-0.06693212750432706 +242016,1210.080000014808,-0.06693331925281788 +242017,1210.0850000148082,-0.06693451035905397 +242018,1210.0900000148083,-0.06693570082349126 +242019,1210.0950000148084,-0.06693689064658524 +242020,1210.1000000148085,-0.06693807982879094 +242021,1210.1050000148086,-0.0669392683705629 +242022,1210.1100000148087,-0.06694045627235524 +242023,1210.1150000148089,-0.06694164353462162 +242024,1210.120000014809,-0.0669428301578152 +242025,1210.125000014809,-0.06694401614238871 +242026,1210.1300000148092,-0.06694520148879442 +242027,1210.1350000148093,-0.06694638619748412 +242028,1210.1400000148094,-0.06694757026890918 +242029,1210.1450000148095,-0.0669487537035205 +242030,1210.1500000148096,-0.06694993650176853 +242031,1210.1550000148097,-0.06695111866410323 +242032,1210.1600000148098,-0.06695230019097416 +242033,1210.16500001481,-0.06695348108283036 +242034,1210.17000001481,-0.0669546613401205 +242035,1210.1750000148102,-0.06695584096329273 +242036,1210.1800000148103,-0.06695701995279478 +242037,1210.1850000148104,-0.06695819830907394 +242038,1210.1900000148105,-0.066959376032577 +242039,1210.1950000148106,-0.06696055312375036 +242040,1210.2000000148107,-0.06696172958303993 +242041,1210.2050000148108,-0.06696290541089119 +242042,1210.210000014811,-0.06696408060774915 +242043,1210.215000014811,-0.06696525517405841 +242044,1210.2200000148111,-0.06696642911026311 +242045,1210.2250000148113,-0.06696760241680691 +242046,1210.2300000148114,-0.06696877509413308 +242047,1210.2350000148115,-0.06696994714268441 +242048,1210.2400000148116,-0.06697111856290326 +242049,1210.2450000148117,-0.06697228935523153 +242050,1210.2500000148118,-0.06697345952011069 +242051,1210.255000014812,-0.0669746290579818 +242052,1210.260000014812,-0.06697579796928539 +242053,1210.2650000148121,-0.06697696625446165 +242054,1210.2700000148122,-0.06697813391395026 +242055,1210.2750000148123,-0.0669793009481905 +242056,1210.2800000148125,-0.06698046735762118 +242057,1210.2850000148126,-0.06698163314268071 +242058,1210.2900000148127,-0.06698279830380702 +242059,1210.2950000148128,-0.06698396284143764 +242060,1210.300000014813,-0.06698512675600962 +242061,1210.305000014813,-0.06698629004795963 +242062,1210.310000014813,-0.06698745271772387 +242063,1210.3150000148132,-0.0669886147657381 +242064,1210.3200000148133,-0.06698977619243766 +242065,1210.3250000148134,-0.06699093699825745 +242066,1210.3300000148135,-0.06699209718363196 +242067,1210.3350000148137,-0.06699325674899521 +242068,1210.3400000148138,-0.0669944156947808 +242069,1210.3450000148139,-0.06699557402142192 +242070,1210.350000014814,-0.0669967317293513 +242071,1210.355000014814,-0.06699788881900129 +242072,1210.3600000148142,-0.06699904529080375 +242073,1210.3650000148143,-0.06700020114519013 +242074,1210.3700000148144,-0.06700135638259148 +242075,1210.3750000148145,-0.0670025110034384 +242076,1210.3800000148146,-0.06700366500816105 +242077,1210.3850000148148,-0.06700481839718918 +242078,1210.3900000148149,-0.06700597117095214 +242079,1210.395000014815,-0.06700712332987879 +242080,1210.400000014815,-0.06700827487439763 +242081,1210.4050000148152,-0.0670094258049367 +242082,1210.4100000148153,-0.06701057612192364 +242083,1210.4150000148154,-0.06701172582578563 +242084,1210.4200000148155,-0.06701287491694947 +242085,1210.4250000148156,-0.06701402339584152 +242086,1210.4300000148157,-0.06701517126288771 +242087,1210.4350000148158,-0.06701631851851356 +242088,1210.440000014816,-0.06701746516314416 +242089,1210.445000014816,-0.06701861119720423 +242090,1210.4500000148162,-0.06701975662111799 +242091,1210.4550000148163,-0.0670209014353093 +242092,1210.4600000148164,-0.06702204564020159 +242093,1210.4650000148165,-0.06702318923621785 +242094,1210.4700000148166,-0.0670243322237807 +242095,1210.4750000148167,-0.06702547460331228 +242096,1210.4800000148168,-0.06702661637523437 +242097,1210.485000014817,-0.06702775753996834 +242098,1210.490000014817,-0.06702889809793508 +242099,1210.4950000148172,-0.06703003804955515 +242100,1210.5000000148173,-0.06703117739524862 +242101,1210.5050000148174,-0.06703231613543521 +242102,1210.5100000148175,-0.0670334542705342 +242103,1210.5150000148176,-0.06703459180096444 +242104,1210.5200000148177,-0.0670357287271444 +242105,1210.5250000148178,-0.06703686504949215 +242106,1210.530000014818,-0.06703800076842532 +242107,1210.535000014818,-0.06703913588436113 +242108,1210.5400000148181,-0.06704027039771641 +242109,1210.5450000148182,-0.06704140430890759 +242110,1210.5500000148184,-0.06704253761835065 +242111,1210.5550000148185,-0.06704367032646122 +242112,1210.5600000148186,-0.06704480243365447 +242113,1210.5650000148187,-0.0670459339403452 +242114,1210.5700000148188,-0.06704706484694781 +242115,1210.575000014819,-0.06704819515387625 +242116,1210.580000014819,-0.06704932486154412 +242117,1210.5850000148191,-0.06705045397036459 +242118,1210.5900000148192,-0.06705158248075041 +242119,1210.5950000148193,-0.06705271039311397 +242120,1210.6000000148194,-0.06705383770786723 +242121,1210.6050000148196,-0.06705496442542176 +242122,1210.6100000148197,-0.06705609054618872 +242123,1210.6150000148198,-0.06705721607057887 +242124,1210.6200000148199,-0.06705834099900256 +242125,1210.62500001482,-0.06705946533186978 +242126,1210.63000001482,-0.06706058906959009 +242127,1210.6350000148202,-0.06706171221257265 +242128,1210.6400000148203,-0.06706283476122622 +242129,1210.6450000148204,-0.06706395671595922 +242130,1210.6500000148205,-0.0670650780771796 +242131,1210.6550000148206,-0.06706619884529492 +242132,1210.6600000148208,-0.0670673190207124 +242133,1210.6650000148209,-0.06706843860383883 +242134,1210.670000014821,-0.0670695575950806 +242135,1210.675000014821,-0.06707067599484372 +242136,1210.6800000148212,-0.06707179380353379 +242137,1210.6850000148213,-0.06707291102155602 +242138,1210.6900000148214,-0.06707402764931528 +242139,1210.6950000148215,-0.06707514368721594 +242140,1210.7000000148216,-0.0670762591356621 +242141,1210.7050000148217,-0.0670773739950574 +242142,1210.7100000148218,-0.06707848826580508 +242143,1210.715000014822,-0.06707960194830805 +242144,1210.720000014822,-0.06708071504296875 +242145,1210.7250000148222,-0.06708182755018932 +242146,1210.7300000148223,-0.06708293947037146 +242147,1210.7350000148224,-0.06708405080391647 +242148,1210.7400000148225,-0.06708516155122532 +242149,1210.7450000148226,-0.06708627171269851 +242150,1210.7500000148227,-0.06708738128873626 +242151,1210.7550000148228,-0.0670884902797383 +242152,1210.760000014823,-0.06708959868610403 +242153,1210.765000014823,-0.0670907065082325 +242154,1210.7700000148232,-0.06709181374652229 +242155,1210.7750000148233,-0.06709292040137167 +242156,1210.7800000148234,-0.06709402647317848 +242157,1210.7850000148235,-0.06709513196234022 +242158,1210.7900000148236,-0.06709623686925396 +242159,1210.7950000148237,-0.06709734119431641 +242160,1210.8000000148238,-0.06709844493792393 +242161,1210.805000014824,-0.06709954810047244 +242162,1210.810000014824,-0.06710065068235756 +242163,1210.8150000148241,-0.06710175268397445 +242164,1210.8200000148242,-0.06710285410571792 +242165,1210.8250000148244,-0.06710395494798245 +242166,1210.8300000148245,-0.06710505521116206 +242167,1210.8350000148246,-0.06710615489565043 +242168,1210.8400000148247,-0.06710725400184091 +242169,1210.8450000148248,-0.06710835253012638 +242170,1210.850000014825,-0.06710945048089943 +242171,1210.855000014825,-0.06711054785455223 +242172,1210.8600000148251,-0.06711164465147658 +242173,1210.8650000148252,-0.06711274087206393 +242174,1210.8700000148253,-0.06711383651670531 +242175,1210.8750000148254,-0.06711493158579142 +242176,1210.8800000148256,-0.06711602607971257 +242177,1210.8850000148257,-0.0671171199988587 +242178,1210.8900000148258,-0.06711821334361938 +242179,1210.8950000148259,-0.06711930611438381 +242180,1210.900000014826,-0.06712039831154082 +242181,1210.905000014826,-0.06712148993547885 +242182,1210.9100000148262,-0.06712258098658601 +242183,1210.9150000148263,-0.06712367146524999 +242184,1210.9200000148264,-0.06712476137185816 +242185,1210.9250000148265,-0.06712585070679748 +242186,1210.9300000148266,-0.06712693947045459 +242187,1210.9350000148268,-0.06712802766321573 +242188,1210.9400000148269,-0.06712911528546675 +242189,1210.945000014827,-0.0671302023375932 +242190,1210.950000014827,-0.06713128881998023 +242191,1210.9550000148272,-0.06713237473301259 +242192,1210.9600000148273,-0.06713346007707471 +242193,1210.9650000148274,-0.06713454485255066 +242194,1210.9700000148275,-0.0671356290598241 +242195,1210.9750000148276,-0.06713671269927839 +242196,1210.9800000148277,-0.06713779577129647 +242197,1210.9850000148278,-0.06713887827626094 +242198,1210.990000014828,-0.06713996021455405 +242199,1210.995000014828,-0.06714104158655768 +242200,1211.0000000148282,-0.06714212239265334 +242201,1211.0050000148283,-0.06714320263322218 +242202,1211.0100000148284,-0.06714428230864498 +242203,1211.0150000148285,-0.06714536141930223 +242204,1211.0200000148286,-0.06714643996557396 +242205,1211.0250000148287,-0.06714751794783992 +242206,1211.0300000148288,-0.06714859536647944 +242207,1211.035000014829,-0.06714967222187154 +242208,1211.040000014829,-0.06715074851439487 +242209,1211.0450000148292,-0.0671518242444277 +242210,1211.0500000148293,-0.06715289941234799 +242211,1211.0550000148294,-0.0671539740185333 +242212,1211.0600000148295,-0.06715504806336087 +242213,1211.0650000148296,-0.06715612154720754 +242214,1211.0700000148297,-0.06715719447044985 +242215,1211.0750000148298,-0.06715826683346394 +242216,1211.08000001483,-0.06715933863662563 +242217,1211.08500001483,-0.06716040988031034 +242218,1211.0900000148301,-0.06716148056489321 +242219,1211.0950000148302,-0.06716255069074897 +242220,1211.1000000148304,-0.06716362025825202 +242221,1211.1050000148305,-0.06716468926777641 +242222,1211.1100000148306,-0.06716575771969582 +242223,1211.1150000148307,-0.0671668256143836 +242224,1211.1200000148308,-0.06716789295221275 +242225,1211.125000014831,-0.0671689597335559 +242226,1211.130000014831,-0.06717002595878536 +242227,1211.1350000148311,-0.06717109162827309 +242228,1211.1400000148312,-0.06717215674239067 +242229,1211.1450000148313,-0.06717322130150936 +242230,1211.1500000148314,-0.06717428530600006 +242231,1211.1550000148316,-0.06717534875623334 +242232,1211.1600000148317,-0.0671764116525794 +242233,1211.1650000148318,-0.06717747399540812 +242234,1211.1700000148319,-0.06717853578508902 +242235,1211.175000014832,-0.06717959702199126 +242236,1211.180000014832,-0.06718065770648368 +242237,1211.1850000148322,-0.06718171783893478 +242238,1211.1900000148323,-0.06718277741971271 +242239,1211.1950000148324,-0.06718383644918526 +242240,1211.2000000148325,-0.06718489492771987 +242241,1211.2050000148326,-0.06718595285568368 +242242,1211.2100000148328,-0.06718701023344348 +242243,1211.2150000148329,-0.06718806706136567 +242244,1211.220000014833,-0.06718912333981637 +242245,1211.225000014833,-0.06719017906916133 +242246,1211.2300000148332,-0.06719123424976596 +242247,1211.2350000148333,-0.06719228888199533 +242248,1211.2400000148334,-0.06719334296621418 +242249,1211.2450000148335,-0.06719439650278689 +242250,1211.2500000148336,-0.06719544949207755 +242251,1211.2550000148337,-0.06719650193444984 +242252,1211.2600000148338,-0.06719755383026718 +242253,1211.265000014834,-0.0671986051798926 +242254,1211.270000014834,-0.06719965598368881 +242255,1211.2750000148342,-0.06720070624201817 +242256,1211.2800000148343,-0.06720175595524275 +242257,1211.2850000148344,-0.06720280512372423 +242258,1211.2900000148345,-0.06720385374782399 +242259,1211.2950000148346,-0.06720490182790306 +242260,1211.3000000148347,-0.06720594936432214 +242261,1211.3050000148348,-0.06720699635744158 +242262,1211.310000014835,-0.06720804280762144 +242263,1211.315000014835,-0.06720908871522141 +242264,1211.3200000148352,-0.06721013408060086 +242265,1211.3250000148353,-0.06721117890411883 +242266,1211.3300000148354,-0.06721222318613401 +242267,1211.3350000148355,-0.0672132669270048 +242268,1211.3400000148356,-0.06721431012708923 +242269,1211.3450000148357,-0.06721535278674501 +242270,1211.3500000148358,-0.06721639490632952 +242271,1211.355000014836,-0.06721743648619985 +242272,1211.360000014836,-0.06721847752671269 +242273,1211.3650000148361,-0.06721951802822446 +242274,1211.3700000148363,-0.06722055799109122 +242275,1211.3750000148364,-0.06722159741566874 +242276,1211.3800000148365,-0.0672226363023124 +242277,1211.3850000148366,-0.0672236746513773 +242278,1211.3900000148367,-0.0672247124632182 +242279,1211.3950000148368,-0.06722574973818957 +242280,1211.400000014837,-0.06722678647664547 +242281,1211.405000014837,-0.06722782267893973 +242282,1211.4100000148371,-0.06722885834542579 +242283,1211.4150000148372,-0.06722989347645679 +242284,1211.4200000148373,-0.06723092807238555 +242285,1211.4250000148375,-0.06723196213356457 +242286,1211.4300000148376,-0.06723299566034599 +242287,1211.4350000148377,-0.06723402865308169 +242288,1211.4400000148378,-0.06723506111212317 +242289,1211.445000014838,-0.06723609303782163 +242290,1211.450000014838,-0.06723712443052797 +242291,1211.455000014838,-0.06723815529059272 +242292,1211.4600000148382,-0.06723918561836617 +242293,1211.4650000148383,-0.0672402154141982 +242294,1211.4700000148384,-0.0672412446784384 +242295,1211.4750000148385,-0.06724227341143606 +242296,1211.4800000148387,-0.06724330161354015 +242297,1211.4850000148388,-0.06724432928509932 +242298,1211.4900000148389,-0.06724535642646189 +242299,1211.495000014839,-0.06724638303797585 +242300,1211.500000014839,-0.0672474091199889 +242301,1211.5050000148392,-0.06724843467284843 +242302,1211.5100000148393,-0.06724945969690145 +242303,1211.5150000148394,-0.06725048419249476 +242304,1211.5200000148395,-0.06725150815997473 +242305,1211.5250000148396,-0.0672525315996875 +242306,1211.5300000148397,-0.06725355451197887 +242307,1211.5350000148399,-0.06725457689719429 +242308,1211.54000001484,-0.06725559875567895 +242309,1211.54500001484,-0.06725662008777769 +242310,1211.5500000148402,-0.06725764089383506 +242311,1211.5550000148403,-0.06725866117419528 +242312,1211.5600000148404,-0.06725968092920226 +242313,1211.5650000148405,-0.0672607001591996 +242314,1211.5700000148406,-0.0672617188645306 +242315,1211.5750000148407,-0.06726273704553823 +242316,1211.5800000148408,-0.06726375470256517 +242317,1211.585000014841,-0.06726477183595375 +242318,1211.590000014841,-0.06726578844604603 +242319,1211.5950000148412,-0.06726680453318376 +242320,1211.6000000148413,-0.06726782009770835 +242321,1211.6050000148414,-0.06726883513996093 +242322,1211.6100000148415,-0.0672698496602823 +242323,1211.6150000148416,-0.06727086365901296 +242324,1211.6200000148417,-0.06727187713649312 +242325,1211.6250000148418,-0.06727289009306264 +242326,1211.630000014842,-0.06727390252906112 +242327,1211.635000014842,-0.06727491444482783 +242328,1211.6400000148421,-0.06727592584070173 +242329,1211.6450000148423,-0.0672769367170215 +242330,1211.6500000148424,-0.06727794707412545 +242331,1211.6550000148425,-0.06727895691235167 +242332,1211.6600000148426,-0.06727996623203789 +242333,1211.6650000148427,-0.06728097503352154 +242334,1211.6700000148428,-0.06728198331713978 +242335,1211.675000014843,-0.06728299108322942 +242336,1211.680000014843,-0.067283998332127 +242337,1211.6850000148431,-0.06728500506416875 +242338,1211.6900000148432,-0.06728601127969058 +242339,1211.6950000148433,-0.06728701697902814 +242340,1211.7000000148435,-0.06728802216251673 +242341,1211.7050000148436,-0.06728902683049136 +242342,1211.7100000148437,-0.06729003098328676 +242343,1211.7150000148438,-0.06729103462123734 +242344,1211.720000014844,-0.06729203774467724 +242345,1211.725000014844,-0.06729304035394024 +242346,1211.730000014844,-0.06729404244935988 +242347,1211.7350000148442,-0.06729504403126937 +242348,1211.7400000148443,-0.06729604510000163 +242349,1211.7450000148444,-0.06729704565588929 +242350,1211.7500000148445,-0.06729804569926466 +242351,1211.7550000148447,-0.06729904523045978 +242352,1211.7600000148448,-0.06730004424980636 +242353,1211.7650000148449,-0.06730104275763586 +242354,1211.770000014845,-0.06730204075427938 +242355,1211.775000014845,-0.06730303824006777 +242356,1211.7800000148452,-0.06730403521533157 +242357,1211.7850000148453,-0.06730503168040104 +242358,1211.7900000148454,-0.06730602763560613 +242359,1211.7950000148455,-0.06730702308127648 +242360,1211.8000000148456,-0.06730801801774147 +242361,1211.8050000148457,-0.06730901244533016 +242362,1211.8100000148459,-0.06731000636437133 +242363,1211.815000014846,-0.06731099977519346 +242364,1211.820000014846,-0.06731199267812474 +242365,1211.8250000148462,-0.06731298507349305 +242366,1211.8300000148463,-0.06731397696162601 +242367,1211.8350000148464,-0.06731496834285093 +242368,1211.8400000148465,-0.06731595921749484 +242369,1211.8450000148466,-0.06731694958588444 +242370,1211.8500000148467,-0.06731793944834621 +242371,1211.8550000148468,-0.06731892880520628 +242372,1211.860000014847,-0.06731991765679048 +242373,1211.865000014847,-0.06732090600342441 +242374,1211.8700000148472,-0.06732189384543336 +242375,1211.8750000148473,-0.06732288118314227 +242376,1211.8800000148474,-0.0673238680168759 +242377,1211.8850000148475,-0.06732485434695862 +242378,1211.8900000148476,-0.06732584017371458 +242379,1211.8950000148477,-0.06732682549746762 +242380,1211.9000000148478,-0.06732781031854125 +242381,1211.905000014848,-0.06732879463725878 +242382,1211.910000014848,-0.06732977845394318 +242383,1211.9150000148481,-0.06733076176891711 +242384,1211.9200000148483,-0.067331744582503 +242385,1211.9250000148484,-0.06733272689502298 +242386,1211.9300000148485,-0.06733370870679888 +242387,1211.9350000148486,-0.06733469001815222 +242388,1211.9400000148487,-0.06733567082940428 +242389,1211.9450000148488,-0.06733665114087606 +242390,1211.950000014849,-0.06733763095288824 +242391,1211.955000014849,-0.06733861026576123 +242392,1211.9600000148491,-0.06733958907981516 +242393,1211.9650000148492,-0.0673405673953699 +242394,1211.9700000148493,-0.06734154521274499 +242395,1211.9750000148495,-0.06734252253225972 +242396,1211.9800000148496,-0.0673434993542331 +242397,1211.9850000148497,-0.06734447567898386 +242398,1211.9900000148498,-0.06734545150683041 +242399,1211.99500001485,-0.06734642683809093 +242400,1212.00000001485,-0.06734740167308331 +242401,1212.00500001485,-0.06734837601212514 +242402,1212.0100000148502,-0.0673493498555337 +242403,1212.0150000148503,-0.06735032320362608 +242404,1212.0200000148504,-0.06735129605671902 +242405,1212.0250000148505,-0.06735226841512901 +242406,1212.0300000148507,-0.06735324027917224 +242407,1212.0350000148508,-0.06735421164916465 +242408,1212.0400000148509,-0.06735518252542189 +242409,1212.045000014851,-0.0673561529082593 +242410,1212.050000014851,-0.06735712279799203 +242411,1212.0550000148512,-0.06735809219493484 +242412,1212.0600000148513,-0.06735906109940232 +242413,1212.0650000148514,-0.06736002951170869 +242414,1212.0700000148515,-0.06736099743216796 +242415,1212.0750000148516,-0.06736196486109386 +242416,1212.0800000148517,-0.0673629317987998 +242417,1212.0850000148519,-0.06736389824559898 +242418,1212.090000014852,-0.06736486420180425 +242419,1212.095000014852,-0.06736582966772826 +242420,1212.1000000148522,-0.06736679464368335 +242421,1212.1050000148523,-0.06736775912998157 +242422,1212.1100000148524,-0.06736872312693473 +242423,1212.1150000148525,-0.06736968663485435 +242424,1212.1200000148526,-0.06737064965405168 +242425,1212.1250000148527,-0.0673716121848377 +242426,1212.1300000148528,-0.06737257422752313 +242427,1212.135000014853,-0.0673735357824184 +242428,1212.140000014853,-0.06737449684983367 +242429,1212.1450000148532,-0.06737545743007882 +242430,1212.1500000148533,-0.06737641752346352 +242431,1212.1550000148534,-0.0673773771302971 +242432,1212.1600000148535,-0.06737833625088863 +242433,1212.1650000148536,-0.06737929488554695 +242434,1212.1700000148537,-0.06738025303458058 +242435,1212.1750000148538,-0.06738121069829782 +242436,1212.180000014854,-0.06738216787700668 +242437,1212.185000014854,-0.06738312457101489 +242438,1212.1900000148541,-0.06738408078062993 +242439,1212.1950000148543,-0.06738503650615901 +242440,1212.2000000148544,-0.06738599174790906 +242441,1212.2050000148545,-0.06738694650618676 +242442,1212.2100000148546,-0.06738790078129851 +242443,1212.2150000148547,-0.06738885457355047 +242444,1212.2200000148548,-0.06738980788324848 +242445,1212.225000014855,-0.06739076071069816 +242446,1212.230000014855,-0.06739171305620487 +242447,1212.2350000148551,-0.06739266492007367 +242448,1212.2400000148552,-0.06739361630260939 +242449,1212.2450000148553,-0.06739456720411656 +242450,1212.2500000148555,-0.06739551762489947 +242451,1212.2550000148556,-0.06739646756526216 +242452,1212.2600000148557,-0.06739741702550836 +242453,1212.2650000148558,-0.06739836600594158 +242454,1212.270000014856,-0.06739931450686505 +242455,1212.275000014856,-0.06740026252858175 +242456,1212.2800000148561,-0.0674012100713944 +242457,1212.2850000148562,-0.06740215713560539 +242458,1212.2900000148563,-0.06740310372151698 +242459,1212.2950000148564,-0.06740404982943103 +242460,1212.3000000148566,-0.06740499545964924 +242461,1212.3050000148567,-0.067405940612473 +242462,1212.3100000148568,-0.06740688528820346 +242463,1212.3150000148569,-0.06740782948714148 +242464,1212.320000014857,-0.06740877320958771 +242465,1212.325000014857,-0.0674097164558425 +242466,1212.3300000148572,-0.06741065922620597 +242467,1212.3350000148573,-0.06741160152097794 +242468,1212.3400000148574,-0.06741254334045801 +242469,1212.3450000148575,-0.06741348468494551 +242470,1212.3500000148576,-0.06741442555473952 +242471,1212.3550000148578,-0.06741536595013885 +242472,1212.3600000148579,-0.06741630587144205 +242473,1212.365000014858,-0.06741724531894741 +242474,1212.370000014858,-0.06741818429295299 +242475,1212.3750000148582,-0.06741912279375657 +242476,1212.3800000148583,-0.06742006082165569 +242477,1212.3850000148584,-0.06742099837694762 +242478,1212.3900000148585,-0.06742193545992939 +242479,1212.3950000148586,-0.06742287207089775 +242480,1212.4000000148587,-0.06742380821014922 +242481,1212.4050000148588,-0.06742474387798005 +242482,1212.410000014859,-0.06742567907468625 +242483,1212.415000014859,-0.06742661380056356 +242484,1212.4200000148592,-0.06742754805590748 +242485,1212.4250000148593,-0.06742848184101326 +242486,1212.4300000148594,-0.06742941515617587 +242487,1212.4350000148595,-0.06743034800169005 +242488,1212.4400000148596,-0.06743128037785029 +242489,1212.4450000148597,-0.06743221228495082 +242490,1212.4500000148598,-0.06743314372328563 +242491,1212.45500001486,-0.06743407469314842 +242492,1212.46000001486,-0.06743500519483268 +242493,1212.4650000148602,-0.06743593522863166 +242494,1212.4700000148603,-0.0674368647948383 +242495,1212.4750000148604,-0.06743779389374535 +242496,1212.4800000148605,-0.06743872252564527 +242497,1212.4850000148606,-0.06743965069083031 +242498,1212.4900000148607,-0.06744057838959241 +242499,1212.4950000148608,-0.06744150562222333 +242500,1212.500000014861,-0.06744243238901453 +242501,1212.505000014861,-0.06744335869025725 +242502,1212.5100000148611,-0.06744428452624245 +242503,1212.5150000148612,-0.06744520989726087 +242504,1212.5200000148614,-0.06744613480360302 +242505,1212.5250000148615,-0.06744705924555912 +242506,1212.5300000148616,-0.06744798322341916 +242507,1212.5350000148617,-0.06744890673747289 +242508,1212.5400000148618,-0.06744982978800983 +242509,1212.545000014862,-0.06745075237531918 +242510,1212.550000014862,-0.06745167449968999 +242511,1212.5550000148621,-0.067452596161411 +242512,1212.5600000148622,-0.06745351736077072 +242513,1212.5650000148623,-0.06745443809805744 +242514,1212.5700000148624,-0.06745535837355916 +242515,1212.5750000148626,-0.0674562781875637 +242516,1212.5800000148627,-0.06745719754035855 +242517,1212.5850000148628,-0.06745811643223104 +242518,1212.5900000148629,-0.06745903486346819 +242519,1212.595000014863,-0.06745995283435682 +242520,1212.600000014863,-0.0674608703451835 +242521,1212.6050000148632,-0.06746178739623453 +242522,1212.6100000148633,-0.067462703987796 +242523,1212.6150000148634,-0.06746362012015372 +242524,1212.6200000148635,-0.06746453579359334 +242525,1212.6250000148636,-0.06746545100840014 +242526,1212.6300000148638,-0.06746636576485927 +242527,1212.6350000148639,-0.0674672800632556 +242528,1212.640000014864,-0.06746819390387375 +242529,1212.645000014864,-0.0674691072869981 +242530,1212.6500000148642,-0.06747002021291282 +242531,1212.6550000148643,-0.06747093268190178 +242532,1212.6600000148644,-0.06747184469424869 +242533,1212.6650000148645,-0.06747275625023694 +242534,1212.6700000148646,-0.06747366735014974 +242535,1212.6750000148647,-0.06747457799427002 +242536,1212.6800000148648,-0.06747548818288052 +242537,1212.685000014865,-0.06747639791626368 +242538,1212.690000014865,-0.06747730719470175 +242539,1212.6950000148652,-0.06747821601847673 +242540,1212.7000000148653,-0.06747912438787038 +242541,1212.7050000148654,-0.06748003230316421 +242542,1212.7100000148655,-0.06748093976463952 +242543,1212.7150000148656,-0.06748184677257735 +242544,1212.7200000148657,-0.06748275332725849 +242545,1212.7250000148658,-0.06748365942896355 +242546,1212.730000014866,-0.06748456507797286 +242547,1212.735000014866,-0.06748547027456651 +242548,1212.7400000148662,-0.06748637501902438 +242549,1212.7450000148663,-0.06748727931162611 +242550,1212.7500000148664,-0.0674881831526511 +242551,1212.7550000148665,-0.06748908654237848 +242552,1212.7600000148666,-0.06748998948108721 +242553,1212.7650000148667,-0.06749089196905599 +242554,1212.7700000148668,-0.06749179400656326 +242555,1212.775000014867,-0.06749269559388726 +242556,1212.780000014867,-0.067493596731306 +242557,1212.7850000148671,-0.06749449741909722 +242558,1212.7900000148672,-0.06749539765753847 +242559,1212.7950000148674,-0.06749629744690702 +242560,1212.8000000148675,-0.06749719678747995 +242561,1212.8050000148676,-0.0674980956795341 +242562,1212.8100000148677,-0.06749899412334606 +242563,1212.8150000148678,-0.06749989211919222 +242564,1212.820000014868,-0.06750078966734868 +242565,1212.825000014868,-0.06750168676809139 +242566,1212.8300000148681,-0.06750258342169602 +242567,1212.8350000148682,-0.067503479628438 +242568,1212.8400000148683,-0.06750437538859257 +242569,1212.8450000148684,-0.06750527070243469 +242570,1212.8500000148686,-0.06750616557023914 +242571,1212.8550000148687,-0.06750705999228043 +242572,1212.8600000148688,-0.06750795396883288 +242573,1212.8650000148689,-0.06750884750017054 +242574,1212.870000014869,-0.0675097405865673 +242575,1212.875000014869,-0.06751063322829672 +242576,1212.8800000148692,-0.0675115254256322 +242577,1212.8850000148693,-0.06751241717884691 +242578,1212.8900000148694,-0.0675133084882138 +242579,1212.8950000148695,-0.06751419935400553 +242580,1212.9000000148696,-0.0675150897764946 +242581,1212.9050000148698,-0.06751597975595329 +242582,1212.9100000148699,-0.06751686929265358 +242583,1212.91500001487,-0.06751775838686727 +242584,1212.92000001487,-0.06751864703886597 +242585,1212.9250000148702,-0.06751953524892099 +242586,1212.9300000148703,-0.06752042301730347 +242587,1212.9350000148704,-0.06752131034428431 +242588,1212.9400000148705,-0.06752219723013415 +242589,1212.9450000148706,-0.06752308367512348 +242590,1212.9500000148707,-0.06752396967952251 +242591,1212.9550000148708,-0.06752485524360123 +242592,1212.960000014871,-0.06752574036762941 +242593,1212.965000014871,-0.06752662505187661 +242594,1212.9700000148712,-0.06752750929661215 +242595,1212.9750000148713,-0.06752839310210516 +242596,1212.9800000148714,-0.06752927646862449 +242597,1212.9850000148715,-0.06753015939643882 +242598,1212.9900000148716,-0.06753104188581657 +242599,1212.9950000148717,-0.06753192393702598 +242600,1213.0000000148718,-0.06753280555033501 +242601,1213.005000014872,-0.06753368672601147 +242602,1213.010000014872,-0.06753456746432288 +242603,1213.0150000148722,-0.06753544776553658 +242604,1213.0200000148723,-0.06753632762991967 +242605,1213.0250000148724,-0.06753720705773905 +242606,1213.0300000148725,-0.06753808604926138 +242607,1213.0350000148726,-0.0675389646047531 +242608,1213.0400000148727,-0.06753984272448046 +242609,1213.0450000148728,-0.06754072040870947 +242610,1213.050000014873,-0.06754159765770588 +242611,1213.055000014873,-0.0675424744717353 +242612,1213.0600000148731,-0.06754335085106304 +242613,1213.0650000148732,-0.06754422679595427 +242614,1213.0700000148734,-0.0675451023066739 +242615,1213.0750000148735,-0.0675459773834866 +242616,1213.0800000148736,-0.06754685202665686 +242617,1213.0850000148737,-0.06754772623644896 +242618,1213.0900000148738,-0.06754860001312692 +242619,1213.095000014874,-0.06754947335695456 +242620,1213.100000014874,-0.06755034626819552 +242621,1213.1050000148741,-0.06755121874711316 +242622,1213.1100000148742,-0.06755209079397066 +242623,1213.1150000148743,-0.06755296240903101 +242624,1213.1200000148744,-0.06755383359255693 +242625,1213.1250000148746,-0.06755470434481095 +242626,1213.1300000148747,-0.06755557466605537 +242627,1213.1350000148748,-0.0675564445565523 +242628,1213.1400000148749,-0.0675573140165636 +242629,1213.145000014875,-0.06755818304635099 +242630,1213.150000014875,-0.06755905164617589 +242631,1213.1550000148752,-0.06755991981629952 +242632,1213.1600000148753,-0.06756078755698294 +242633,1213.1650000148754,-0.06756165486848696 +242634,1213.1700000148755,-0.06756252175107215 +242635,1213.1750000148756,-0.06756338820499892 +242636,1213.1800000148758,-0.06756425423052742 +242637,1213.1850000148759,-0.06756511982791763 +242638,1213.190000014876,-0.06756598499742927 +242639,1213.195000014876,-0.0675668497393219 +242640,1213.2000000148762,-0.06756771405385481 +242641,1213.2050000148763,-0.06756857794128715 +242642,1213.2100000148764,-0.06756944140187779 +242643,1213.2150000148765,-0.06757030443588542 +242644,1213.2200000148766,-0.06757116704356853 +242645,1213.2250000148767,-0.06757202922518536 +242646,1213.2300000148769,-0.06757289098099399 +242647,1213.235000014877,-0.06757375231125225 +242648,1213.240000014877,-0.06757461321621777 +242649,1213.2450000148772,-0.06757547369614798 +242650,1213.2500000148773,-0.0675763337513001 +242651,1213.2550000148774,-0.0675771933819311 +242652,1213.2600000148775,-0.06757805258829783 +242653,1213.2650000148776,-0.06757891137065683 +242654,1213.2700000148777,-0.06757976972926448 +242655,1213.2750000148778,-0.06758062766437697 +242656,1213.280000014878,-0.06758148517625026 +242657,1213.285000014878,-0.06758234226514008 +242658,1213.2900000148782,-0.06758319893130199 +242659,1213.2950000148783,-0.06758405517499132 +242660,1213.3000000148784,-0.06758491099646322 +242661,1213.3050000148785,-0.06758576639597255 +242662,1213.3100000148786,-0.0675866213737741 +242663,1213.3150000148787,-0.06758747593012232 +242664,1213.3200000148788,-0.06758833006527155 +242665,1213.325000014879,-0.06758918377947586 +242666,1213.330000014879,-0.06759003707298915 +242667,1213.3350000148791,-0.0675908899460651 +242668,1213.3400000148793,-0.0675917423989572 +242669,1213.3450000148794,-0.0675925944319187 +242670,1213.3500000148795,-0.06759344604520269 +242671,1213.3550000148796,-0.067594297239062 +242672,1213.3600000148797,-0.06759514801374931 +242673,1213.3650000148798,-0.06759599836951707 +242674,1213.37000001488,-0.06759684830661754 +242675,1213.37500001488,-0.06759769782530273 +242676,1213.3800000148801,-0.06759854692582451 +242677,1213.3850000148802,-0.0675993956084345 +242678,1213.3900000148803,-0.06760024387338416 +242679,1213.3950000148805,-0.06760109172092468 +242680,1213.4000000148806,-0.06760193915130712 +242681,1213.4050000148807,-0.06760278616478228 +242682,1213.4100000148808,-0.06760363276160081 +242683,1213.415000014881,-0.0676044789420131 +242684,1213.420000014881,-0.0676053247062694 +242685,1213.425000014881,-0.0676061700546197 +242686,1213.4300000148812,-0.06760701498731385 +242687,1213.4350000148813,-0.06760785950460141 +242688,1213.4400000148814,-0.06760870360673182 +242689,1213.4450000148815,-0.0676095472939543 +242690,1213.4500000148817,-0.06761039056651784 +242691,1213.4550000148818,-0.06761123342467128 +242692,1213.4600000148819,-0.06761207586866319 +242693,1213.465000014882,-0.067612917898742 +242694,1213.470000014882,-0.06761375951515594 +242695,1213.4750000148822,-0.06761460071815299 +242696,1213.4800000148823,-0.06761544150798096 +242697,1213.4850000148824,-0.06761628188488748 +242698,1213.4900000148825,-0.06761712184911996 +242699,1213.4950000148826,-0.0676179614009256 +242700,1213.5000000148827,-0.06761880054055142 +242701,1213.5050000148829,-0.06761963926824424 +242702,1213.510000014883,-0.0676204775842507 +242703,1213.515000014883,-0.06762131548881718 +242704,1213.5200000148832,-0.06762215298218993 +242705,1213.5250000148833,-0.06762299006461497 +242706,1213.5300000148834,-0.06762382673633811 +242707,1213.5350000148835,-0.06762466299760503 +242708,1213.5400000148836,-0.06762549884866112 +242709,1213.5450000148837,-0.06762633428975164 +242710,1213.5500000148838,-0.06762716932112162 +242711,1213.555000014884,-0.0676280039430159 +242712,1213.560000014884,-0.06762883815567915 +242713,1213.5650000148842,-0.0676296719593558 +242714,1213.5700000148843,-0.06763050535429013 +242715,1213.5750000148844,-0.06763133834072621 +242716,1213.5800000148845,-0.06763217091890787 +242717,1213.5850000148846,-0.06763300308907881 +242718,1213.5900000148847,-0.0676338348514825 +242719,1213.5950000148848,-0.06763466620636224 +242720,1213.600000014885,-0.0676354971539611 +242721,1213.605000014885,-0.06763632769452198 +242722,1213.6100000148851,-0.0676371578282876 +242723,1213.6150000148853,-0.06763798755550045 +242724,1213.6200000148854,-0.06763881687640284 +242725,1213.6250000148855,-0.06763964579123691 +242726,1213.6300000148856,-0.06764047430024456 +242727,1213.6350000148857,-0.06764130240366756 +242728,1213.6400000148858,-0.06764213010174742 +242729,1213.645000014886,-0.06764295739472553 +242730,1213.650000014886,-0.06764378428284301 +242731,1213.6550000148861,-0.06764461076634085 +242732,1213.6600000148862,-0.06764543684545982 +242733,1213.6650000148863,-0.0676462625204405 +242734,1213.6700000148865,-0.06764708779152326 +242735,1213.6750000148866,-0.06764791265894834 +242736,1213.6800000148867,-0.06764873712295574 +242737,1213.6850000148868,-0.06764956118378526 +242738,1213.690000014887,-0.06765038484167656 +242739,1213.695000014887,-0.06765120809686906 +242740,1213.700000014887,-0.067652030949602 +242741,1213.7050000148872,-0.06765285340011444 +242742,1213.7100000148873,-0.06765367544864526 +242743,1213.7150000148874,-0.06765449709543313 +242744,1213.7200000148875,-0.06765531834071654 +242745,1213.7250000148877,-0.06765613918473382 +242746,1213.7300000148878,-0.06765695962772304 +242747,1213.7350000148879,-0.06765777966992213 +242748,1213.740000014888,-0.06765859931156885 +242749,1213.745000014888,-0.06765941855290074 +242750,1213.7500000148882,-0.06766023739415514 +242751,1213.7550000148883,-0.06766105583556922 +242752,1213.7600000148884,-0.06766187387737997 +242753,1213.7650000148885,-0.0676626915198242 +242754,1213.7700000148886,-0.0676635087631385 +242755,1213.7750000148887,-0.06766432560755929 +242756,1213.7800000148889,-0.06766514205332282 +242757,1213.785000014889,-0.06766595810066511 +242758,1213.790000014889,-0.06766677374982205 +242759,1213.7950000148892,-0.06766758900102932 +242760,1213.8000000148893,-0.06766840385452237 +242761,1213.8050000148894,-0.06766921831053654 +242762,1213.8100000148895,-0.06767003236930692 +242763,1213.8150000148896,-0.06767084603106846 +242764,1213.8200000148897,-0.06767165929605591 +242765,1213.8250000148898,-0.0676724721645038 +242766,1213.83000001489,-0.06767328463664653 +242767,1213.83500001489,-0.06767409671271829 +242768,1213.8400000148902,-0.0676749083929531 +242769,1213.8450000148903,-0.06767571967758475 +242770,1213.8500000148904,-0.0676765305668469 +242771,1213.8550000148905,-0.067677341060973 +242772,1213.8600000148906,-0.06767815116019633 +242773,1213.8650000148907,-0.06767896086474999 +242774,1213.8700000148908,-0.06767977017486683 +242775,1213.875000014891,-0.06768057909077962 +242776,1213.880000014891,-0.06768138761272088 +242777,1213.8850000148911,-0.06768219574092298 +242778,1213.8900000148913,-0.06768300347561808 +242779,1213.8950000148914,-0.06768381081703817 +242780,1213.9000000148915,-0.06768461776541505 +242781,1213.9050000148916,-0.06768542432098038 +242782,1213.9100000148917,-0.06768623048396558 +242783,1213.9150000148918,-0.06768703625460191 +242784,1213.920000014892,-0.06768784163312046 +242785,1213.925000014892,-0.06768864661975212 +242786,1213.9300000148921,-0.06768945121472762 +242787,1213.9350000148922,-0.06769025541827751 +242788,1213.9400000148923,-0.06769105923063214 +242789,1213.9450000148925,-0.06769186265202166 +242790,1213.9500000148926,-0.06769266568267611 +242791,1213.9550000148927,-0.06769346832282529 +242792,1213.9600000148928,-0.06769427057269883 +242793,1213.965000014893,-0.06769507243252619 +242794,1213.970000014893,-0.06769587390253665 +242795,1213.975000014893,-0.06769667498295931 +242796,1213.9800000148932,-0.0676974756740231 +242797,1213.9850000148933,-0.06769827597595675 +242798,1213.9900000148934,-0.06769907588898882 +242799,1213.9950000148935,-0.06769987541334771 +242800,1214.0000000148937,-0.06770067454926162 +242801,1214.0050000148938,-0.06770147329695857 +242802,1214.0100000148939,-0.06770227165666641 +242803,1214.015000014894,-0.0677030696286128 +242804,1214.020000014894,-0.06770386721302528 +242805,1214.0250000148942,-0.06770466441013112 +242806,1214.0300000148943,-0.06770546122015747 +242807,1214.0350000148944,-0.0677062576433313 +242808,1214.0400000148945,-0.06770705367987939 +242809,1214.0450000148946,-0.06770784933002837 +242810,1214.0500000148947,-0.06770864459400464 +242811,1214.0550000148949,-0.06770943947203448 +242812,1214.060000014895,-0.06771023396434396 +242813,1214.065000014895,-0.06771102807115897 +242814,1214.0700000148952,-0.06771182179270528 +242815,1214.0750000148953,-0.06771261512920841 +242816,1214.0800000148954,-0.06771340808089375 +242817,1214.0850000148955,-0.0677142006479865 +242818,1214.0900000148956,-0.0677149928307117 +242819,1214.0950000148957,-0.06771578462929416 +242820,1214.1000000148958,-0.06771657604395862 +242821,1214.105000014896,-0.06771736707492952 +242822,1214.110000014896,-0.06771815772243124 +242823,1214.1150000148962,-0.06771894798668793 +242824,1214.1200000148963,-0.06771973786792354 +242825,1214.1250000148964,-0.0677205273663619 +242826,1214.1300000148965,-0.06772131648222664 +242827,1214.1350000148966,-0.06772210521574122 +242828,1214.1400000148967,-0.06772289356712893 +242829,1214.1450000148968,-0.0677236815366129 +242830,1214.150000014897,-0.06772446912441604 +242831,1214.155000014897,-0.06772525633076115 +242832,1214.1600000148972,-0.06772604315587082 +242833,1214.1650000148973,-0.06772682959996745 +242834,1214.1700000148974,-0.06772761566327332 +242835,1214.1750000148975,-0.06772840134601049 +242836,1214.1800000148976,-0.06772918664840089 +242837,1214.1850000148977,-0.06772997157066624 +242838,1214.1900000148978,-0.06773075611302812 +242839,1214.195000014898,-0.06773154027570792 +242840,1214.200000014898,-0.06773232405892686 +242841,1214.2050000148981,-0.067733107462906 +242842,1214.2100000148982,-0.06773389048786622 +242843,1214.2150000148984,-0.06773467313402823 +242844,1214.2200000148985,-0.06773545540161258 +242845,1214.2250000148986,-0.06773623729083962 +242846,1214.2300000148987,-0.06773701880192957 +242847,1214.2350000148988,-0.06773779993510247 +242848,1214.240000014899,-0.06773858069057817 +242849,1214.245000014899,-0.06773936106857636 +242850,1214.2500000148991,-0.06774014106931657 +242851,1214.2550000148992,-0.06774092069301814 +242852,1214.2600000148993,-0.06774169993990027 +242853,1214.2650000148994,-0.06774247881018199 +242854,1214.2700000148996,-0.06774325730408212 +242855,1214.2750000148997,-0.06774403542181937 +242856,1214.2800000148998,-0.06774481316361222 +242857,1214.2850000148999,-0.06774559052967903 +242858,1214.2900000149,-0.06774636752023798 +242859,1214.2950000149,-0.06774714413550709 +242860,1214.3000000149002,-0.06774792037570417 +242861,1214.3050000149003,-0.06774869624104692 +242862,1214.3100000149004,-0.06774947173175282 +242863,1214.3150000149005,-0.06775024684803922 +242864,1214.3200000149006,-0.06775102159012332 +242865,1214.3250000149008,-0.06775179595822209 +242866,1214.3300000149009,-0.0677525699525524 +242867,1214.335000014901,-0.06775334357333088 +242868,1214.340000014901,-0.06775411682077409 +242869,1214.3450000149012,-0.06775488969509832 +242870,1214.3500000149013,-0.0677556621965198 +242871,1214.3550000149014,-0.0677564343252545 +242872,1214.3600000149015,-0.06775720608151826 +242873,1214.3650000149016,-0.0677579774655268 +242874,1214.3700000149017,-0.0677587484774956 +242875,1214.3750000149018,-0.06775951911764003 +242876,1214.380000014902,-0.06776028938617526 +242877,1214.385000014902,-0.06776105928331631 +242878,1214.3900000149022,-0.06776182880927804 +242879,1214.3950000149023,-0.06776259796427514 +242880,1214.4000000149024,-0.06776336674852215 +242881,1214.4050000149025,-0.06776413516223341 +242882,1214.4100000149026,-0.06776490320562314 +242883,1214.4150000149027,-0.06776567087890537 +242884,1214.4200000149028,-0.06776643818229397 +242885,1214.425000014903,-0.06776720511600265 +242886,1214.430000014903,-0.06776797168024494 +242887,1214.4350000149032,-0.06776873787523426 +242888,1214.4400000149033,-0.0677695037011838 +242889,1214.4450000149034,-0.06777026915830664 +242890,1214.4500000149035,-0.06777103424681566 +242891,1214.4550000149036,-0.0677717989669236 +242892,1214.4600000149037,-0.06777256331884304 +242893,1214.4650000149038,-0.06777332730278639 +242894,1214.470000014904,-0.06777409091896587 +242895,1214.475000014904,-0.06777485416759359 +242896,1214.4800000149041,-0.06777561704888148 +242897,1214.4850000149042,-0.06777637956304129 +242898,1214.4900000149044,-0.06777714171028462 +242899,1214.4950000149045,-0.06777790349082294 +242900,1214.5000000149046,-0.0677786649048675 +242901,1214.5050000149047,-0.06777942595262944 +242902,1214.5100000149048,-0.0677801866343197 +242903,1214.515000014905,-0.0677809469501491 +242904,1214.520000014905,-0.06778170690032828 +242905,1214.5250000149051,-0.06778246648506771 +242906,1214.5300000149052,-0.0677832257045777 +242907,1214.5350000149053,-0.06778398455906845 +242908,1214.5400000149054,-0.06778474304874992 +242909,1214.5450000149056,-0.06778550117383196 +242910,1214.5500000149057,-0.06778625893452427 +242911,1214.5550000149058,-0.06778701633103637 +242912,1214.5600000149059,-0.06778777336357762 +242913,1214.565000014906,-0.06778853003235721 +242914,1214.570000014906,-0.06778928633758423 +242915,1214.5750000149062,-0.06779004227946753 +242916,1214.5800000149063,-0.06779079785821586 +242917,1214.5850000149064,-0.06779155307403778 +242918,1214.5900000149065,-0.06779230792714173 +242919,1214.5950000149066,-0.06779306241773596 +242920,1214.6000000149068,-0.06779381654602855 +242921,1214.6050000149069,-0.06779457031222748 +242922,1214.610000014907,-0.06779532371654051 +242923,1214.615000014907,-0.06779607675917526 +242924,1214.6200000149072,-0.06779682944033924 +242925,1214.6250000149073,-0.06779758176023974 +242926,1214.6300000149074,-0.06779833371908392 +242927,1214.6350000149075,-0.06779908531707877 +242928,1214.6400000149076,-0.06779983655443118 +242929,1214.6450000149077,-0.06780058743134781 +242930,1214.6500000149078,-0.06780133794803518 +242931,1214.655000014908,-0.0678020881046997 +242932,1214.660000014908,-0.06780283790154759 +242933,1214.6650000149082,-0.06780358733878492 +242934,1214.6700000149083,-0.06780433641661757 +242935,1214.6750000149084,-0.06780508513525133 +242936,1214.6800000149085,-0.06780583349489178 +242937,1214.6850000149086,-0.06780658149574438 +242938,1214.6900000149087,-0.06780732913801445 +242939,1214.6950000149088,-0.06780807642190707 +242940,1214.700000014909,-0.06780882334762728 +242941,1214.705000014909,-0.0678095699153799 +242942,1214.7100000149092,-0.06781031612536959 +242943,1214.7150000149093,-0.06781106197780086 +242944,1214.7200000149094,-0.06781180747287811 +242945,1214.7250000149095,-0.06781255261080554 +242946,1214.7300000149096,-0.06781329739178722 +242947,1214.7350000149097,-0.06781404181602704 +242948,1214.7400000149098,-0.06781478588372879 +242949,1214.74500001491,-0.06781552959509604 +242950,1214.75000001491,-0.06781627295033225 +242951,1214.7550000149101,-0.06781701594964072 +242952,1214.7600000149102,-0.0678177585932246 +242953,1214.7650000149104,-0.06781850088128687 +242954,1214.7700000149105,-0.06781924281403037 +242955,1214.7750000149106,-0.06781998439165782 +242956,1214.7800000149107,-0.06782072561437172 +242957,1214.7850000149108,-0.06782146648237444 +242958,1214.790000014911,-0.06782220699586827 +242959,1214.795000014911,-0.06782294715505524 +242960,1214.8000000149111,-0.06782368696013732 +242961,1214.8050000149112,-0.06782442641131627 +242962,1214.8100000149113,-0.06782516550879372 +242963,1214.8150000149114,-0.06782590425277114 +242964,1214.8200000149116,-0.06782664264344987 +242965,1214.8250000149117,-0.06782738068103109 +242966,1214.8300000149118,-0.06782811836571581 +242967,1214.8350000149119,-0.06782885569770493 +242968,1214.840000014912,-0.06782959267719915 +242969,1214.845000014912,-0.06783032930439906 +242970,1214.8500000149122,-0.06783106557950508 +242971,1214.8550000149123,-0.0678318015027175 +242972,1214.8600000149124,-0.06783253707423643 +242973,1214.8650000149125,-0.06783327229426186 +242974,1214.8700000149126,-0.06783400716299362 +242975,1214.8750000149128,-0.06783474168063139 +242976,1214.8800000149129,-0.06783547584737468 +242977,1214.885000014913,-0.06783620966342291 +242978,1214.890000014913,-0.06783694312897529 +242979,1214.8950000149132,-0.0678376762442309 +242980,1214.9000000149133,-0.06783840900938869 +242981,1214.9050000149134,-0.06783914142464745 +242982,1214.9100000149135,-0.06783987349020582 +242983,1214.9150000149136,-0.0678406052062623 +242984,1214.9200000149137,-0.0678413365730152 +242985,1214.9250000149138,-0.06784206759066277 +242986,1214.930000014914,-0.06784279825940304 +242987,1214.935000014914,-0.0678435285794339 +242988,1214.9400000149142,-0.06784425855095313 +242989,1214.9450000149143,-0.06784498817415834 +242990,1214.9500000149144,-0.06784571744924696 +242991,1214.9550000149145,-0.06784644637641633 +242992,1214.9600000149146,-0.06784717495586363 +242993,1214.9650000149147,-0.06784790318778587 +242994,1214.9700000149148,-0.06784863107237993 +242995,1214.975000014915,-0.06784935860984254 +242996,1214.980000014915,-0.06785008580037029 +242997,1214.9850000149152,-0.06785081264415961 +242998,1214.9900000149153,-0.0678515391414068 +242999,1214.9950000149154,-0.06785226529230802 +243000,1215.0000000149155,-0.06785299109705926 +243001,1215.0050000149156,-0.06785371655585638 +243002,1215.0100000149157,-0.0678544416688951 +243003,1215.0150000149158,-0.06785516643637096 +243004,1215.020000014916,-0.06785589085847943 +243005,1215.025000014916,-0.06785661493541577 +243006,1215.0300000149161,-0.0678573386673751 +243007,1215.0350000149162,-0.06785806205455243 +243008,1215.0400000149164,-0.0678587850971426 +243009,1215.0450000149165,-0.06785950779534031 +243010,1215.0500000149166,-0.06786023014934012 +243011,1215.0550000149167,-0.06786095215933642 +243012,1215.0600000149168,-0.06786167382552351 +243013,1215.065000014917,-0.06786239514809551 +243014,1215.070000014917,-0.06786311612724641 +243015,1215.0750000149171,-0.06786383676317005 +243016,1215.0800000149172,-0.06786455705606012 +243017,1215.0850000149173,-0.06786527700611018 +243018,1215.0900000149175,-0.06786599661351364 +243019,1215.0950000149176,-0.06786671587846378 +243020,1215.1000000149177,-0.0678674348011537 +243021,1215.1050000149178,-0.06786815338177643 +243022,1215.110000014918,-0.06786887162052475 +243023,1215.115000014918,-0.06786958951759142 +243024,1215.120000014918,-0.06787030707316898 +243025,1215.1250000149182,-0.06787102428744983 +243026,1215.1300000149183,-0.06787174116062626 +243027,1215.1350000149184,-0.0678724576928904 +243028,1215.1400000149185,-0.06787317388443424 +243029,1215.1450000149187,-0.06787388973544964 +243030,1215.1500000149188,-0.0678746052461283 +243031,1215.1550000149189,-0.06787532041666179 +243032,1215.160000014919,-0.06787603524724156 +243033,1215.165000014919,-0.06787674973805888 +243034,1215.1700000149192,-0.06787746388930489 +243035,1215.1750000149193,-0.06787817770117062 +243036,1215.1800000149194,-0.0678788911738469 +243037,1215.1850000149195,-0.0678796043075245 +243038,1215.1900000149196,-0.06788031710239398 +243039,1215.1950000149197,-0.06788102955864578 +243040,1215.2000000149199,-0.06788174167647022 +243041,1215.20500001492,-0.06788245345605748 +243042,1215.21000001492,-0.06788316489759756 +243043,1215.2150000149202,-0.06788387600128039 +243044,1215.2200000149203,-0.06788458676729567 +243045,1215.2250000149204,-0.06788529719583306 +243046,1215.2300000149205,-0.06788600728708197 +243047,1215.2350000149206,-0.06788671704123178 +243048,1215.2400000149207,-0.06788742645847168 +243049,1215.2450000149208,-0.06788813553899073 +243050,1215.250000014921,-0.06788884428297783 +243051,1215.255000014921,-0.06788955269062177 +243052,1215.2600000149212,-0.06789026076211119 +243053,1215.2650000149213,-0.06789096849763458 +243054,1215.2700000149214,-0.06789167589738032 +243055,1215.2750000149215,-0.06789238296153666 +243056,1215.2800000149216,-0.06789308969029165 +243057,1215.2850000149217,-0.06789379608383325 +243058,1215.2900000149218,-0.0678945021423493 +243059,1215.295000014922,-0.06789520786602746 +243060,1215.300000014922,-0.0678959132550553 +243061,1215.3050000149221,-0.06789661830962018 +243062,1215.3100000149223,-0.0678973230299094 +243063,1215.3150000149224,-0.06789802741611009 +243064,1215.3200000149225,-0.06789873146840923 +243065,1215.3250000149226,-0.06789943518699368 +243066,1215.3300000149227,-0.06790013857205017 +243067,1215.3350000149228,-0.06790084162376529 +243068,1215.340000014923,-0.06790154434232548 +243069,1215.345000014923,-0.06790224672791707 +243070,1215.3500000149231,-0.06790294878072624 +243071,1215.3550000149232,-0.06790365050093901 +243072,1215.3600000149233,-0.06790435188874132 +243073,1215.3650000149235,-0.06790505294431891 +243074,1215.3700000149236,-0.06790575366785744 +243075,1215.3750000149237,-0.06790645405954242 +243076,1215.3800000149238,-0.0679071541195592 +243077,1215.385000014924,-0.06790785384809302 +243078,1215.390000014924,-0.06790855324532898 +243079,1215.395000014924,-0.06790925231145203 +243080,1215.4000000149242,-0.06790995104664704 +243081,1215.4050000149243,-0.06791064945109866 +243082,1215.4100000149244,-0.06791134752499149 +243083,1215.4150000149245,-0.06791204526850993 +243084,1215.4200000149247,-0.06791274268183828 +243085,1215.4250000149248,-0.06791343976516072 +243086,1215.4300000149249,-0.06791413651866125 +243087,1215.435000014925,-0.06791483294252378 +243088,1215.440000014925,-0.06791552903693206 +243089,1215.4450000149252,-0.06791622480206973 +243090,1215.4500000149253,-0.06791692023812025 +243091,1215.4550000149254,-0.06791761534526702 +243092,1215.4600000149255,-0.06791831012369326 +243093,1215.4650000149256,-0.06791900457358206 +243094,1215.4700000149257,-0.06791969869511638 +243095,1215.4750000149259,-0.06792039248847906 +243096,1215.480000014926,-0.06792108595385278 +243097,1215.485000014926,-0.06792177909142012 +243098,1215.4900000149262,-0.06792247190136352 +243099,1215.4950000149263,-0.06792316438386527 +243100,1215.5000000149264,-0.06792385653910755 +243101,1215.5050000149265,-0.06792454836727238 +243102,1215.5100000149266,-0.0679252398685417 +243103,1215.5150000149267,-0.06792593104309726 +243104,1215.5200000149268,-0.06792662189112071 +243105,1215.525000014927,-0.06792731241279355 +243106,1215.530000014927,-0.06792800260829719 +243107,1215.5350000149272,-0.06792869247781287 +243108,1215.5400000149273,-0.06792938202152173 +243109,1215.5450000149274,-0.0679300712396047 +243110,1215.5500000149275,-0.0679307601322427 +243111,1215.5550000149276,-0.06793144869961644 +243112,1215.5600000149277,-0.06793213694190652 +243113,1215.5650000149278,-0.0679328248592934 +243114,1215.570000014928,-0.06793351245195745 +243115,1215.575000014928,-0.06793419972007883 +243116,1215.5800000149281,-0.06793488666383765 +243117,1215.5850000149283,-0.06793557328341385 +243118,1215.5900000149284,-0.06793625957898725 +243119,1215.5950000149285,-0.06793694555073755 +243120,1215.6000000149286,-0.06793763119884431 +243121,1215.6050000149287,-0.06793831652348696 +243122,1215.6100000149288,-0.06793900152484482 +243123,1215.615000014929,-0.06793968620309702 +243124,1215.620000014929,-0.06794037055842266 +243125,1215.6250000149291,-0.06794105459100062 +243126,1215.6300000149292,-0.06794173830100969 +243127,1215.6350000149293,-0.06794242168862856 +243128,1215.6400000149295,-0.06794310475403573 +243129,1215.6450000149296,-0.06794378749740962 +243130,1215.6500000149297,-0.0679444699189285 +243131,1215.6550000149298,-0.06794515201877052 +243132,1215.66000001493,-0.06794583379711369 +243133,1215.66500001493,-0.06794651525413592 +243134,1215.67000001493,-0.06794719639001497 +243135,1215.6750000149302,-0.06794787720492847 +243136,1215.6800000149303,-0.06794855769905392 +243137,1215.6850000149304,-0.06794923787256874 +243138,1215.6900000149305,-0.06794991772565015 +243139,1215.6950000149307,-0.06795059725847531 +243140,1215.7000000149308,-0.0679512764712212 +243141,1215.7050000149309,-0.0679519553640647 +243142,1215.710000014931,-0.06795263393718257 +243143,1215.715000014931,-0.06795331219075142 +243144,1215.7200000149312,-0.06795399012494774 +243145,1215.7250000149313,-0.0679546677399479 +243146,1215.7300000149314,-0.06795534503592818 +243147,1215.7350000149315,-0.06795602201306465 +243148,1215.7400000149316,-0.06795669867153335 +243149,1215.7450000149317,-0.0679573750115101 +243150,1215.7500000149319,-0.06795805103317067 +243151,1215.755000014932,-0.06795872673669065 +243152,1215.760000014932,-0.06795940212224556 +243153,1215.7650000149322,-0.06796007719001076 +243154,1215.7700000149323,-0.06796075194016149 +243155,1215.7750000149324,-0.06796142637287284 +243156,1215.7800000149325,-0.06796210048831983 +243157,1215.7850000149326,-0.06796277428667728 +243158,1215.7900000149327,-0.06796344776812 +243159,1215.7950000149328,-0.06796412093282254 +243160,1215.800000014933,-0.06796479378095943 +243161,1215.805000014933,-0.06796546631270502 +243162,1215.8100000149332,-0.06796613852823358 +243163,1215.8150000149333,-0.06796681042771918 +243164,1215.8200000149334,-0.06796748201133586 +243165,1215.8250000149335,-0.06796815327925748 +243166,1215.8300000149336,-0.06796882423165777 +243167,1215.8350000149337,-0.06796949486871037 +243168,1215.8400000149338,-0.06797016519058878 +243169,1215.845000014934,-0.06797083519746636 +243170,1215.850000014934,-0.06797150488951638 +243171,1215.8550000149341,-0.06797217426691197 +243172,1215.8600000149343,-0.06797284332982614 +243173,1215.8650000149344,-0.06797351207843179 +243174,1215.8700000149345,-0.06797418051290163 +243175,1215.8750000149346,-0.06797484863340834 +243176,1215.8800000149347,-0.06797551644012444 +243177,1215.8850000149348,-0.0679761839332223 +243178,1215.890000014935,-0.06797685111287421 +243179,1215.895000014935,-0.06797751797925232 +243180,1215.9000000149351,-0.06797818453252864 +243181,1215.9050000149352,-0.06797885077287509 +243182,1215.9100000149353,-0.06797951670046347 +243183,1215.9150000149355,-0.0679801823154654 +243184,1215.9200000149356,-0.06798084761805245 +243185,1215.9250000149357,-0.06798151260839605 +243186,1215.9300000149358,-0.06798217728666747 +243187,1215.935000014936,-0.06798284165303789 +243188,1215.940000014936,-0.06798350570767839 +243189,1215.945000014936,-0.06798416945075988 +243190,1215.9500000149362,-0.06798483288245318 +243191,1215.9550000149363,-0.06798549600292898 +243192,1215.9600000149364,-0.06798615881235787 +243193,1215.9650000149365,-0.06798682131091027 +243194,1215.9700000149367,-0.06798748349875654 +243195,1215.9750000149368,-0.06798814537606687 +243196,1215.9800000149369,-0.06798880694301136 +243197,1215.985000014937,-0.06798946819975997 +243198,1215.990000014937,-0.06799012914648256 +243199,1215.9950000149372,-0.06799078978334885 +243200,1216.0000000149373,-0.06799145011052847 +243201,1216.0050000149374,-0.0679921101281909 +243202,1216.0100000149375,-0.0679927698365055 +243203,1216.0150000149376,-0.06799342923564154 +243204,1216.0200000149378,-0.06799408832576814 +243205,1216.0250000149379,-0.06799474710705432 +243206,1216.030000014938,-0.06799540557966897 +243207,1216.035000014938,-0.06799606374378085 +243208,1216.0400000149382,-0.06799672159955863 +243209,1216.0450000149383,-0.06799737914717086 +243210,1216.0500000149384,-0.06799803638678593 +243211,1216.0550000149385,-0.06799869331857215 +243212,1216.0600000149386,-0.06799934994269771 +243213,1216.0650000149387,-0.06800000625933066 +243214,1216.0700000149388,-0.06800066226863896 +243215,1216.075000014939,-0.06800131797079044 +243216,1216.080000014939,-0.06800197336595279 +243217,1216.0850000149392,-0.06800262845429361 +243218,1216.0900000149393,-0.06800328323598037 +243219,1216.0950000149394,-0.06800393771118043 +243220,1216.1000000149395,-0.06800459188006101 +243221,1216.1050000149396,-0.06800524574278925 +243222,1216.1100000149397,-0.06800589929953214 +243223,1216.1150000149398,-0.0680065525504566 +243224,1216.12000001494,-0.06800720549572933 +243225,1216.12500001494,-0.06800785813551706 +243226,1216.1300000149402,-0.06800851046998627 +243227,1216.1350000149403,-0.06800916249930339 +243228,1216.1400000149404,-0.06800981422363472 +243229,1216.1450000149405,-0.06801046564314644 +243230,1216.1500000149406,-0.06801111675800463 +243231,1216.1550000149407,-0.06801176756837525 +243232,1216.1600000149408,-0.06801241807442411 +243233,1216.165000014941,-0.06801306827631695 +243234,1216.170000014941,-0.06801371817421935 +243235,1216.1750000149411,-0.06801436776829681 +243236,1216.1800000149412,-0.06801501705871471 +243237,1216.1850000149414,-0.06801566604563829 +243238,1216.1900000149415,-0.0680163147292327 +243239,1216.1950000149416,-0.06801696310966296 +243240,1216.2000000149417,-0.06801761118709397 +243241,1216.2050000149418,-0.06801825896169054 +243242,1216.210000014942,-0.06801890643361734 +243243,1216.215000014942,-0.06801955360303895 +243244,1216.2200000149421,-0.06802020047011978 +243245,1216.2250000149422,-0.06802084703502419 +243246,1216.2300000149423,-0.06802149329791639 +243247,1216.2350000149424,-0.0680221392589605 +243248,1216.2400000149426,-0.06802278491832048 +243249,1216.2450000149427,-0.06802343027616023 +243250,1216.2500000149428,-0.0680240753326435 +243251,1216.2550000149429,-0.06802472008793393 +243252,1216.260000014943,-0.06802536454219507 +243253,1216.265000014943,-0.06802600869559032 +243254,1216.2700000149432,-0.068026652548283 +243255,1216.2750000149433,-0.06802729610043629 +243256,1216.2800000149434,-0.06802793935221327 +243257,1216.2850000149435,-0.06802858230377688 +243258,1216.2900000149436,-0.06802922495529003 +243259,1216.2950000149438,-0.06802986730691538 +243260,1216.3000000149439,-0.0680305093588156 +243261,1216.305000014944,-0.0680311511111532 +243262,1216.310000014944,-0.06803179256409056 +243263,1216.3150000149442,-0.06803243371778996 +243264,1216.3200000149443,-0.06803307457241359 +243265,1216.3250000149444,-0.06803371512812349 +243266,1216.3300000149445,-0.06803435538508161 +243267,1216.3350000149446,-0.0680349953434498 +243268,1216.3400000149447,-0.06803563500338976 +243269,1216.3450000149448,-0.0680362743650631 +243270,1216.350000014945,-0.06803691342863132 +243271,1216.355000014945,-0.0680375521942558 +243272,1216.3600000149452,-0.0680381906620978 +243273,1216.3650000149453,-0.06803882883231852 +243274,1216.3700000149454,-0.06803946670507896 +243275,1216.3750000149455,-0.0680401042805401 +243276,1216.3800000149456,-0.06804074155886272 +243277,1216.3850000149457,-0.06804137854020756 +243278,1216.3900000149458,-0.06804201522473521 +243279,1216.395000014946,-0.06804265161260617 +243280,1216.400000014946,-0.06804328770398081 +243281,1216.4050000149462,-0.0680439234990194 +243282,1216.4100000149463,-0.06804455899788209 +243283,1216.4150000149464,-0.06804519420072895 +243284,1216.4200000149465,-0.06804582910771988 +243285,1216.4250000149466,-0.06804646371901472 +243286,1216.4300000149467,-0.06804709803477318 +243287,1216.4350000149468,-0.06804773205515488 +243288,1216.440000014947,-0.06804836578031931 +243289,1216.445000014947,-0.06804899921042581 +243290,1216.4500000149471,-0.06804963234563371 +243291,1216.4550000149472,-0.06805026518610213 +243292,1216.4600000149474,-0.06805089773199015 +243293,1216.4650000149475,-0.06805152998345669 +243294,1216.4700000149476,-0.06805216194066059 +243295,1216.4750000149477,-0.06805279360376058 +243296,1216.4800000149478,-0.06805342497291526 +243297,1216.485000014948,-0.06805405604828314 +243298,1216.490000014948,-0.06805468683002262 +243299,1216.4950000149481,-0.06805531731829197 +243300,1216.5000000149482,-0.06805594751324938 +243301,1216.5050000149483,-0.0680565774150529 +243302,1216.5100000149484,-0.0680572070238605 +243303,1216.5150000149486,-0.06805783633983004 +243304,1216.5200000149487,-0.06805846536311923 +243305,1216.5250000149488,-0.06805909409388572 +243306,1216.5300000149489,-0.06805972253228702 +243307,1216.535000014949,-0.06806035067848056 +243308,1216.540000014949,-0.06806097853262363 +243309,1216.5450000149492,-0.06806160609487344 +243310,1216.5500000149493,-0.06806223336538707 +243311,1216.5550000149494,-0.0680628603443215 +243312,1216.5600000149495,-0.06806348703183362 +243313,1216.5650000149496,-0.06806411342808016 +243314,1216.5700000149498,-0.06806473953321782 +243315,1216.5750000149499,-0.06806536534740312 +243316,1216.58000001495,-0.0680659908707925 +243317,1216.58500001495,-0.0680666161035423 +243318,1216.5900000149502,-0.06806724104580876 +243319,1216.5950000149503,-0.06806786569774798 +243320,1216.6000000149504,-0.06806849005951598 +243321,1216.6050000149505,-0.06806911413126866 +243322,1216.6100000149506,-0.06806973791316183 +243323,1216.6150000149507,-0.06807036140535117 +243324,1216.6200000149508,-0.06807098460799225 +243325,1216.625000014951,-0.0680716075212406 +243326,1216.630000014951,-0.06807223014525153 +243327,1216.6350000149512,-0.06807285248018033 +243328,1216.6400000149513,-0.06807347452618215 +243329,1216.6450000149514,-0.06807409628341206 +243330,1216.6500000149515,-0.06807471775202499 +243331,1216.6550000149516,-0.06807533893217578 +243332,1216.6600000149517,-0.06807595982401916 +243333,1216.6650000149518,-0.06807658042770977 +243334,1216.670000014952,-0.06807720074340212 +243335,1216.675000014952,-0.06807782077125063 +243336,1216.6800000149522,-0.0680784405114096 +243337,1216.6850000149523,-0.06807905996403324 +243338,1216.6900000149524,-0.06807967912927565 +243339,1216.6950000149525,-0.06808029800729082 +243340,1216.7000000149526,-0.06808091659823265 +243341,1216.7050000149527,-0.06808153490225491 +243342,1216.7100000149528,-0.06808215291951127 +243343,1216.715000014953,-0.06808277065015529 +243344,1216.720000014953,-0.06808338809434047 +243345,1216.7250000149531,-0.06808400525222018 +243346,1216.7300000149532,-0.06808462212394764 +243347,1216.7350000149534,-0.06808523870967603 +243348,1216.7400000149535,-0.06808585500955838 +243349,1216.7450000149536,-0.06808647102374767 +243350,1216.7500000149537,-0.06808708675239669 +243351,1216.7550000149538,-0.0680877021956582 +243352,1216.760000014954,-0.06808831735368483 +243353,1216.765000014954,-0.06808893222662911 +243354,1216.7700000149541,-0.06808954681464345 +243355,1216.7750000149542,-0.0680901611178802 +243356,1216.7800000149543,-0.06809077513649155 +243357,1216.7850000149544,-0.0680913888706296 +243358,1216.7900000149546,-0.06809200232044639 +243359,1216.7950000149547,-0.06809261548609381 +243360,1216.8000000149548,-0.06809322836772365 +243361,1216.8050000149549,-0.06809384096548764 +243362,1216.810000014955,-0.06809445327953734 +243363,1216.815000014955,-0.06809506531002425 +243364,1216.8200000149552,-0.06809567705709978 +243365,1216.8250000149553,-0.06809628852091518 +243366,1216.8300000149554,-0.06809689970162167 +243367,1216.8350000149555,-0.0680975105993703 +243368,1216.8400000149556,-0.06809812121431207 +243369,1216.8450000149558,-0.06809873154659782 +243370,1216.8500000149559,-0.06809934159637837 +243371,1216.855000014956,-0.06809995136380435 +243372,1216.860000014956,-0.06810056084902635 +243373,1216.8650000149562,-0.06810117005219483 +243374,1216.8700000149563,-0.06810177897346015 +243375,1216.8750000149564,-0.06810238761297256 +243376,1216.8800000149565,-0.06810299597088225 +243377,1216.8850000149566,-0.06810360404733924 +243378,1216.8900000149567,-0.06810421184249352 +243379,1216.8950000149568,-0.06810481935649491 +243380,1216.900000014957,-0.06810542658949319 +243381,1216.905000014957,-0.068106033541638 +243382,1216.9100000149572,-0.0681066402130789 +243383,1216.9150000149573,-0.0681072466039653 +243384,1216.9200000149574,-0.0681078527144466 +243385,1216.9250000149575,-0.06810845854467198 +243386,1216.9300000149576,-0.06810906409479066 +243387,1216.9350000149577,-0.06810966936495164 +243388,1216.9400000149578,-0.06811027435530385 +243389,1216.945000014958,-0.06811087906599618 +243390,1216.950000014958,-0.06811148349717731 +243391,1216.9550000149582,-0.06811208764899594 +243392,1216.9600000149583,-0.06811269152160057 +243393,1216.9650000149584,-0.06811329511513965 +243394,1216.9700000149585,-0.06811389842976154 +243395,1216.9750000149586,-0.06811450146561446 +243396,1216.9800000149587,-0.06811510422284654 +243397,1216.9850000149588,-0.06811570670160583 +243398,1216.990000014959,-0.06811630890204028 +243399,1216.995000014959,-0.0681169108242977 +243400,1217.0000000149591,-0.06811751246852586 +243401,1217.0050000149593,-0.06811811383487239 +243402,1217.0100000149594,-0.06811871492348481 +243403,1217.0150000149595,-0.06811931573451059 +243404,1217.0200000149596,-0.06811991626809706 +243405,1217.0250000149597,-0.06812051652439145 +243406,1217.0300000149598,-0.06812111650354091 +243407,1217.03500001496,-0.0681217162056925 +243408,1217.04000001496,-0.06812231563099316 +243409,1217.0450000149601,-0.0681229147795897 +243410,1217.0500000149602,-0.06812351365162891 +243411,1217.0550000149603,-0.06812411224725741 +243412,1217.0600000149605,-0.06812471056662175 +243413,1217.0650000149606,-0.0681253086098684 +243414,1217.0700000149607,-0.06812590637714369 +243415,1217.0750000149608,-0.06812650386859388 +243416,1217.080000014961,-0.06812710108436514 +243417,1217.085000014961,-0.0681276980246035 +243418,1217.090000014961,-0.06812829468945494 +243419,1217.0950000149612,-0.0681288910790653 +243420,1217.1000000149613,-0.06812948719358038 +243421,1217.1050000149614,-0.0681300830331458 +243422,1217.1100000149615,-0.06813067859790715 +243423,1217.1150000149617,-0.0681312738880099 +243424,1217.1200000149618,-0.0681318689035994 +243425,1217.1250000149619,-0.06813246364482094 +243426,1217.130000014962,-0.06813305811181967 +243427,1217.135000014962,-0.06813365230474072 +243428,1217.1400000149622,-0.06813424622372903 +243429,1217.1450000149623,-0.0681348398689295 +243430,1217.1500000149624,-0.06813543324048692 +243431,1217.1550000149625,-0.06813602633854596 +243432,1217.1600000149626,-0.06813661916325123 +243433,1217.1650000149627,-0.06813721171474721 +243434,1217.1700000149629,-0.06813780399317831 +243435,1217.175000014963,-0.06813839599868883 +243436,1217.180000014963,-0.06813898773142299 +243437,1217.1850000149632,-0.06813957919152487 +243438,1217.1900000149633,-0.06814017037913851 +243439,1217.1950000149634,-0.0681407612944078 +243440,1217.2000000149635,-0.06814135193747657 +243441,1217.2050000149636,-0.06814194230848855 +243442,1217.2100000149637,-0.06814253240758737 +243443,1217.2150000149638,-0.06814312223491653 +243444,1217.220000014964,-0.06814371179061951 +243445,1217.225000014964,-0.06814430107483962 +243446,1217.2300000149642,-0.0681448900877201 +243447,1217.2350000149643,-0.06814547882940411 +243448,1217.2400000149644,-0.06814606730003472 +243449,1217.2450000149645,-0.06814665549975485 +243450,1217.2500000149646,-0.06814724342870737 +243451,1217.2550000149647,-0.06814783108703508 +243452,1217.2600000149648,-0.0681484184748806 +243453,1217.265000014965,-0.06814900559238654 +243454,1217.270000014965,-0.06814959243969537 +243455,1217.2750000149651,-0.06815017901694946 +243456,1217.2800000149653,-0.06815076532429112 +243457,1217.2850000149654,-0.06815135136186255 +243458,1217.2900000149655,-0.06815193712980583 +243459,1217.2950000149656,-0.06815252262826298 +243460,1217.3000000149657,-0.0681531078573759 +243461,1217.3050000149658,-0.06815369281728641 +243462,1217.310000014966,-0.06815427750813625 +243463,1217.315000014966,-0.06815486193006702 +243464,1217.3200000149661,-0.06815544608322026 +243465,1217.3250000149662,-0.06815602996773741 +243466,1217.3300000149663,-0.06815661358375982 +243467,1217.3350000149665,-0.06815719693142874 +243468,1217.3400000149666,-0.06815778001088534 +243469,1217.3450000149667,-0.06815836282227067 +243470,1217.3500000149668,-0.06815894536572568 +243471,1217.355000014967,-0.06815952764139128 +243472,1217.360000014967,-0.06816010964940823 +243473,1217.365000014967,-0.06816069138991722 +243474,1217.3700000149672,-0.06816127286305886 +243475,1217.3750000149673,-0.06816185406897363 +243476,1217.3800000149674,-0.06816243500780195 +243477,1217.3850000149675,-0.06816301567968412 +243478,1217.3900000149677,-0.06816359608476039 +243479,1217.3950000149678,-0.06816417622317086 +243480,1217.4000000149679,-0.06816475609505558 +243481,1217.405000014968,-0.0681653357005545 +243482,1217.410000014968,-0.06816591503980744 +243483,1217.4150000149682,-0.0681664941129542 +243484,1217.4200000149683,-0.06816707292013441 +243485,1217.4250000149684,-0.06816765146148764 +243486,1217.4300000149685,-0.0681682297371534 +243487,1217.4350000149686,-0.06816880774727105 +243488,1217.4400000149687,-0.0681693854919799 +243489,1217.4450000149689,-0.06816996297141914 +243490,1217.450000014969,-0.0681705401857279 +243491,1217.455000014969,-0.06817111713504517 +243492,1217.4600000149692,-0.06817169381950988 +243493,1217.4650000149693,-0.06817227023926088 +243494,1217.4700000149694,-0.06817284639443692 +243495,1217.4750000149695,-0.06817342228517663 +243496,1217.4800000149696,-0.06817399791161857 +243497,1217.4850000149697,-0.06817457327390122 +243498,1217.4900000149698,-0.06817514837216294 +243499,1217.49500001497,-0.06817572320654201 +243500,1217.50000001497,-0.06817629777717664 +243501,1217.5050000149702,-0.06817687208420493 +243502,1217.5100000149703,-0.06817744612776488 +243503,1217.5150000149704,-0.06817801990799441 +243504,1217.5200000149705,-0.06817859342503135 +243505,1217.5250000149706,-0.06817916667901346 +243506,1217.5300000149707,-0.06817973967007833 +243507,1217.5350000149708,-0.06818031239836357 +243508,1217.540000014971,-0.06818088486400661 +243509,1217.545000014971,-0.06818145706714485 +243510,1217.5500000149711,-0.06818202900791555 +243511,1217.5550000149713,-0.06818260068645592 +243512,1217.5600000149714,-0.06818317210290305 +243513,1217.5650000149715,-0.06818374325739394 +243514,1217.5700000149716,-0.06818431415006555 +243515,1217.5750000149717,-0.06818488478105468 +243516,1217.5800000149718,-0.06818545515049808 +243517,1217.585000014972,-0.06818602525853239 +243518,1217.590000014972,-0.06818659510529418 +243519,1217.5950000149721,-0.06818716469091993 +243520,1217.6000000149722,-0.06818773401554601 +243521,1217.6050000149723,-0.06818830307930873 +243522,1217.6100000149725,-0.06818887188234427 +243523,1217.6150000149726,-0.06818944042478874 +243524,1217.6200000149727,-0.06819000870677816 +243525,1217.6250000149728,-0.0681905767284485 +243526,1217.630000014973,-0.06819114448993556 +243527,1217.635000014973,-0.06819171199137512 +243528,1217.640000014973,-0.06819227923290283 +243529,1217.6450000149732,-0.0681928462146543 +243530,1217.6500000149733,-0.06819341293676498 +243531,1217.6550000149734,-0.06819397939937027 +243532,1217.6600000149735,-0.0681945456026055 +243533,1217.6650000149737,-0.06819511154660589 +243534,1217.6700000149738,-0.06819567723150655 +243535,1217.6750000149739,-0.06819624265744254 +243536,1217.680000014974,-0.06819680782454882 +243537,1217.685000014974,-0.06819737273296024 +243538,1217.6900000149742,-0.06819793738281157 +243539,1217.6950000149743,-0.06819850177423753 +243540,1217.7000000149744,-0.0681990659073727 +243541,1217.7050000149745,-0.06819962978235161 +243542,1217.7100000149746,-0.06820019339930866 +243543,1217.7150000149747,-0.06820075675837821 +243544,1217.7200000149749,-0.06820131985969449 +243545,1217.725000014975,-0.06820188270339167 +243546,1217.730000014975,-0.06820244528960383 +243547,1217.7350000149752,-0.06820300761846494 +243548,1217.7400000149753,-0.0682035696901089 +243549,1217.7450000149754,-0.06820413150466953 +243550,1217.7500000149755,-0.06820469306228055 +243551,1217.7550000149756,-0.0682052543630756 +243552,1217.7600000149757,-0.06820581540718822 +243553,1217.7650000149758,-0.06820637619475185 +243554,1217.770000014976,-0.06820693672589989 +243555,1217.775000014976,-0.06820749700076563 +243556,1217.7800000149762,-0.06820805701948225 +243557,1217.7850000149763,-0.06820861678218287 +243558,1217.7900000149764,-0.06820917628900051 +243559,1217.7950000149765,-0.06820973554006811 +243560,1217.8000000149766,-0.06821029453551852 +243561,1217.8050000149767,-0.06821085327548453 +243562,1217.8100000149768,-0.06821141176009878 +243563,1217.815000014977,-0.06821196998949387 +243564,1217.820000014977,-0.06821252796380231 +243565,1217.8250000149771,-0.06821308568315654 +243566,1217.8300000149773,-0.06821364314768885 +243567,1217.8350000149774,-0.06821420035753152 +243568,1217.8400000149775,-0.0682147573128167 +243569,1217.8450000149776,-0.06821531401367646 +243570,1217.8500000149777,-0.06821587046024279 +243571,1217.8550000149778,-0.06821642665264759 +243572,1217.860000014978,-0.06821698259102266 +243573,1217.865000014978,-0.06821753827549976 +243574,1217.8700000149781,-0.0682180937062105 +243575,1217.8750000149782,-0.06821864888328646 +243576,1217.8800000149784,-0.06821920380685913 +243577,1217.8850000149785,-0.06821975847705987 +243578,1217.8900000149786,-0.06822031289401999 +243579,1217.8950000149787,-0.0682208670578707 +243580,1217.9000000149788,-0.06822142096874313 +243581,1217.905000014979,-0.06822197462676835 +243582,1217.910000014979,-0.06822252803207728 +243583,1217.9150000149791,-0.06822308118480083 +243584,1217.9200000149792,-0.06822363408506978 +243585,1217.9250000149793,-0.06822418673301484 +243586,1217.9300000149794,-0.06822473912876661 +243587,1217.9350000149796,-0.06822529127245565 +243588,1217.9400000149797,-0.06822584316421239 +243589,1217.9450000149798,-0.06822639480416721 +243590,1217.9500000149799,-0.0682269461924504 +243591,1217.95500001498,-0.06822749732919214 +243592,1217.96000001498,-0.06822804821452257 +243593,1217.9650000149802,-0.06822859884857167 +243594,1217.9700000149803,-0.06822914923146942 +243595,1217.9750000149804,-0.06822969936334568 +243596,1217.9800000149805,-0.06823024924433022 +243597,1217.9850000149806,-0.06823079887455272 +243598,1217.9900000149808,-0.0682313482541428 +243599,1217.9950000149809,-0.06823189738322999 +243600,1218.000000014981,-0.06823244626194372 +243601,1218.005000014981,-0.06823299489041335 +243602,1218.0100000149812,-0.06823354326876813 +243603,1218.0150000149813,-0.06823409139713728 +243604,1218.0200000149814,-0.0682346392756499 +243605,1218.0250000149815,-0.068235186904435 +243606,1218.0300000149816,-0.06823573428362152 +243607,1218.0350000149817,-0.06823628141333833 +243608,1218.0400000149818,-0.06823682829371418 +243609,1218.045000014982,-0.06823737492487778 +243610,1218.050000014982,-0.0682379213069577 +243611,1218.0550000149822,-0.06823846744008251 +243612,1218.0600000149823,-0.06823901332438059 +243613,1218.0650000149824,-0.06823955895998035 +243614,1218.0700000149825,-0.06824010434701003 +243615,1218.0750000149826,-0.06824064948559784 +243616,1218.0800000149827,-0.06824119437587188 +243617,1218.0850000149828,-0.06824173901796018 +243618,1218.090000014983,-0.06824228341199066 +243619,1218.095000014983,-0.06824282755809122 +243620,1218.1000000149832,-0.0682433714563896 +243621,1218.1050000149833,-0.06824391510701351 +243622,1218.1100000149834,-0.06824445851009056 +243623,1218.1150000149835,-0.06824500166574828 +243624,1218.1200000149836,-0.06824554457411412 +243625,1218.1250000149837,-0.06824608723531544 +243626,1218.1300000149838,-0.06824662964947953 +243627,1218.135000014984,-0.06824717181673359 +243628,1218.140000014984,-0.06824771373720474 +243629,1218.1450000149841,-0.06824825541102003 +243630,1218.1500000149842,-0.0682487968383064 +243631,1218.1550000149844,-0.06824933801919071 +243632,1218.1600000149845,-0.06824987895379979 +243633,1218.1650000149846,-0.06825041964226032 +243634,1218.1700000149847,-0.06825096008469896 +243635,1218.1750000149848,-0.06825150028124223 +243636,1218.180000014985,-0.06825204023201661 +243637,1218.185000014985,-0.06825257993714848 +243638,1218.1900000149851,-0.06825311939676415 +243639,1218.1950000149852,-0.06825365861098985 +243640,1218.2000000149853,-0.06825419757995171 +243641,1218.2050000149854,-0.06825473630377579 +243642,1218.2100000149856,-0.06825527478258808 +243643,1218.2150000149857,-0.06825581301651447 +243644,1218.2200000149858,-0.06825635100568078 +243645,1218.2250000149859,-0.06825688875021275 +243646,1218.230000014986,-0.06825742625023605 +243647,1218.235000014986,-0.06825796350587623 +243648,1218.2400000149862,-0.0682585005172588 +243649,1218.2450000149863,-0.06825903728450919 +243650,1218.2500000149864,-0.06825957380775272 +243651,1218.2550000149865,-0.06826011008711465 +243652,1218.2600000149866,-0.06826064612272013 +243653,1218.2650000149868,-0.0682611819146943 +243654,1218.2700000149869,-0.06826171746316213 +243655,1218.275000014987,-0.06826225276824857 +243656,1218.280000014987,-0.06826278783007848 +243657,1218.2850000149872,-0.06826332264877664 +243658,1218.2900000149873,-0.06826385722446772 +243659,1218.2950000149874,-0.06826439155727634 +243660,1218.3000000149875,-0.06826492564732706 +243661,1218.3050000149876,-0.06826545949474432 +243662,1218.3100000149877,-0.06826599309965249 +243663,1218.3150000149878,-0.06826652646217586 +243664,1218.320000014988,-0.06826705958243866 +243665,1218.325000014988,-0.06826759246056503 +243666,1218.3300000149882,-0.068268125096679 +243667,1218.3350000149883,-0.06826865749090458 +243668,1218.3400000149884,-0.06826918964336565 +243669,1218.3450000149885,-0.06826972155418604 +243670,1218.3500000149886,-0.06827025322348948 +243671,1218.3550000149887,-0.06827078465139964 +243672,1218.3600000149888,-0.0682713158380401 +243673,1218.365000014989,-0.06827184678353436 +243674,1218.370000014989,-0.06827237748800585 +243675,1218.3750000149892,-0.06827290795157794 +243676,1218.3800000149893,-0.06827343817437385 +243677,1218.3850000149894,-0.0682739681565168 +243678,1218.3900000149895,-0.0682744978981299 +243679,1218.3950000149896,-0.06827502739933616 +243680,1218.4000000149897,-0.06827555666025856 +243681,1218.4050000149898,-0.06827608568101995 +243682,1218.41000001499,-0.06827661446174316 +243683,1218.41500001499,-0.06827714300255087 +243684,1218.4200000149901,-0.06827767130356575 +243685,1218.4250000149902,-0.06827819936491035 +243686,1218.4300000149904,-0.06827872718670716 +243687,1218.4350000149905,-0.06827925476907858 +243688,1218.4400000149906,-0.06827978211214693 +243689,1218.4450000149907,-0.06828030921603448 +243690,1218.4500000149908,-0.0682808360808634 +243691,1218.455000014991,-0.06828136270675576 +243692,1218.460000014991,-0.0682818890938336 +243693,1218.4650000149911,-0.06828241524221886 +243694,1218.4700000149912,-0.0682829411520334 +243695,1218.4750000149913,-0.068283466823399 +243696,1218.4800000149914,-0.06828399225643736 +243697,1218.4850000149916,-0.06828451745127014 +243698,1218.4900000149917,-0.06828504240801886 +243699,1218.4950000149918,-0.068285567126805 +243700,1218.5000000149919,-0.06828609160774998 +243701,1218.505000014992,-0.0682866158509751 +243702,1218.510000014992,-0.06828713985660163 +243703,1218.5150000149922,-0.06828766362475071 +243704,1218.5200000149923,-0.06828818715554344 +243705,1218.5250000149924,-0.06828871044910083 +243706,1218.5300000149925,-0.06828923350554383 +243707,1218.5350000149926,-0.06828975632499329 +243708,1218.5400000149928,-0.06829027890757 +243709,1218.5450000149929,-0.06829080125339465 +243710,1218.550000014993,-0.06829132336258789 +243711,1218.555000014993,-0.06829184523527027 +243712,1218.5600000149932,-0.06829236687156225 +243713,1218.5650000149933,-0.06829288827158427 +243714,1218.5700000149934,-0.06829340943545661 +243715,1218.5750000149935,-0.06829393036329956 +243716,1218.5800000149936,-0.06829445105523325 +243717,1218.5850000149937,-0.06829497151137781 +243718,1218.5900000149938,-0.06829549173185324 +243719,1218.595000014994,-0.06829601171677951 +243720,1218.600000014994,-0.06829653146627648 +243721,1218.6050000149942,-0.06829705098046393 +243722,1218.6100000149943,-0.06829757025946158 +243723,1218.6150000149944,-0.06829808930338908 +243724,1218.6200000149945,-0.068298608112366 +243725,1218.6250000149946,-0.06829912668651181 +243726,1218.6300000149947,-0.06829964502594595 +243727,1218.6350000149948,-0.06830016313078775 +243728,1218.640000014995,-0.06830068100115647 +243729,1218.645000014995,-0.0683011986371713 +243730,1218.6500000149952,-0.06830171603895135 +243731,1218.6550000149953,-0.06830223320661567 +243732,1218.6600000149954,-0.06830275014028321 +243733,1218.6650000149955,-0.06830326684007286 +243734,1218.6700000149956,-0.06830378330610345 +243735,1218.6750000149957,-0.0683042995384937 +243736,1218.6800000149958,-0.0683048155373623 +243737,1218.685000014996,-0.06830533130282782 +243738,1218.690000014996,-0.06830584683500875 +243739,1218.6950000149961,-0.06830636213402357 +243740,1218.7000000149962,-0.06830687719999061 +243741,1218.7050000149964,-0.06830739203302819 +243742,1218.7100000149965,-0.06830790663325449 +243743,1218.7150000149966,-0.0683084210007877 +243744,1218.7200000149967,-0.06830893513574583 +243745,1218.7250000149968,-0.06830944903824691 +243746,1218.730000014997,-0.06830996270840886 +243747,1218.735000014997,-0.0683104761463495 +243748,1218.7400000149971,-0.06831098935218663 +243749,1218.7450000149972,-0.06831150232603792 +243750,1218.7500000149973,-0.06831201506802098 +243751,1218.7550000149974,-0.0683125275782534 +243752,1218.7600000149976,-0.06831303985685262 +243753,1218.7650000149977,-0.06831355190393607 +243754,1218.7700000149978,-0.06831406371962104 +243755,1218.7750000149979,-0.06831457530402478 +243756,1218.780000014998,-0.06831508665726452 +243757,1218.785000014998,-0.06831559777945732 +243758,1218.7900000149982,-0.06831610867072023 +243759,1218.7950000149983,-0.06831661933117018 +243760,1218.8000000149984,-0.06831712976092409 +243761,1218.8050000149985,-0.06831763996009876 +243762,1218.8100000149986,-0.06831814992881093 +243763,1218.8150000149988,-0.06831865966717725 +243764,1218.8200000149989,-0.06831916917531432 +243765,1218.825000014999,-0.06831967845333865 +243766,1218.830000014999,-0.0683201875013667 +243767,1218.8350000149992,-0.06832069631951485 +243768,1218.8400000149993,-0.06832120490789936 +243769,1218.8450000149994,-0.0683217132666365 +243770,1218.8500000149995,-0.06832222139584239 +243771,1218.8550000149996,-0.06832272929563314 +243772,1218.8600000149997,-0.06832323696612475 +243773,1218.8650000149999,-0.06832374440743312 +243774,1218.870000015,-0.06832425161967418 +243775,1218.875000015,-0.06832475860296365 +243776,1218.8800000150002,-0.0683252653574173 +243777,1218.8850000150003,-0.06832577188315075 +243778,1218.8900000150004,-0.06832627818027957 +243779,1218.8950000150005,-0.06832678424891929 +243780,1218.9000000150006,-0.0683272900891853 +243781,1218.9050000150007,-0.06832779570119298 +243782,1218.9100000150008,-0.0683283010850576 +243783,1218.915000015001,-0.06832880624089438 +243784,1218.920000015001,-0.06832931116881846 +243785,1218.9250000150012,-0.06832981586894492 +243786,1218.9300000150013,-0.06833032034138872 +243787,1218.9350000150014,-0.06833082458626483 +243788,1218.9400000150015,-0.06833132860368807 +243789,1218.9450000150016,-0.06833183239377323 +243790,1218.9500000150017,-0.06833233595663502 +243791,1218.9550000150018,-0.06833283929238809 +243792,1218.960000015002,-0.068333342401147 +243793,1218.965000015002,-0.06833384528302622 +243794,1218.9700000150021,-0.0683343479381402 +243795,1218.9750000150023,-0.06833485036660329 +243796,1218.9800000150024,-0.06833535256852975 +243797,1218.9850000150025,-0.06833585454403382 +243798,1218.9900000150026,-0.06833635629322961 +243799,1218.9950000150027,-0.06833685781623122 +243800,1219.0000000150028,-0.0683373591131526 +243801,1219.005000015003,-0.06833786018410772 +243802,1219.010000015003,-0.06833836102921038 +243803,1219.0150000150031,-0.06833886164857443 +243804,1219.0200000150032,-0.06833936204231354 +243805,1219.0250000150033,-0.06833986221054136 +243806,1219.0300000150035,-0.06834036215337146 +243807,1219.0350000150036,-0.06834086187091734 +243808,1219.0400000150037,-0.06834136136329243 +243809,1219.0450000150038,-0.06834186063061007 +243810,1219.050000015004,-0.06834235967298358 +243811,1219.055000015004,-0.06834285849052617 +243812,1219.060000015004,-0.06834335708335099 +243813,1219.0650000150042,-0.0683438554515711 +243814,1219.0700000150043,-0.0683443535952995 +243815,1219.0750000150044,-0.06834485151464915 +243816,1219.0800000150045,-0.0683453492097329 +243817,1219.0850000150047,-0.06834584668066357 +243818,1219.0900000150048,-0.06834634392755386 +243819,1219.0950000150049,-0.06834684095051644 +243820,1219.100000015005,-0.0683473377496639 +243821,1219.105000015005,-0.06834783432510874 +243822,1219.1100000150052,-0.06834833067696341 +243823,1219.1150000150053,-0.0683488268053403 +243824,1219.1200000150054,-0.0683493227103517 +243825,1219.1250000150055,-0.06834981839210985 +243826,1219.1300000150056,-0.06835031385072693 +243827,1219.1350000150057,-0.06835080908631504 +243828,1219.1400000150059,-0.0683513040989862 +243829,1219.145000015006,-0.06835179888885236 +243830,1219.150000015006,-0.06835229345602542 +243831,1219.1550000150062,-0.06835278780061721 +243832,1219.1600000150063,-0.06835328192273947 +243833,1219.1650000150064,-0.06835377582250388 +243834,1219.1700000150065,-0.06835426950002206 +243835,1219.1750000150066,-0.06835476295540555 +243836,1219.1800000150067,-0.06835525618876583 +243837,1219.1850000150068,-0.0683557492002143 +243838,1219.190000015007,-0.06835624198986229 +243839,1219.195000015007,-0.06835673455782107 +243840,1219.2000000150072,-0.06835722690420186 +243841,1219.2050000150073,-0.06835771902911576 +243842,1219.2100000150074,-0.06835821093267386 +243843,1219.2150000150075,-0.06835870261498714 +243844,1219.2200000150076,-0.06835919407616652 +243845,1219.2250000150077,-0.06835968531632286 +243846,1219.2300000150078,-0.06836017633556693 +243847,1219.235000015008,-0.06836066713400948 +243848,1219.240000015008,-0.06836115771176116 +243849,1219.2450000150081,-0.06836164806893252 +243850,1219.2500000150083,-0.0683621382056341 +243851,1219.2550000150084,-0.06836262812197633 +243852,1219.2600000150085,-0.0683631178180696 +243853,1219.2650000150086,-0.06836360729402423 +243854,1219.2700000150087,-0.06836409654995042 +243855,1219.2750000150088,-0.06836458558595838 +243856,1219.280000015009,-0.06836507440215822 +243857,1219.285000015009,-0.06836556299865994 +243858,1219.2900000150091,-0.06836605137557354 +243859,1219.2950000150092,-0.0683665395330089 +243860,1219.3000000150093,-0.06836702747107588 +243861,1219.3050000150095,-0.06836751518988425 +243862,1219.3100000150096,-0.06836800268954367 +243863,1219.3150000150097,-0.06836848997016381 +243864,1219.3200000150098,-0.0683689770318542 +243865,1219.32500001501,-0.06836946387472437 +243866,1219.33000001501,-0.06836995049888371 +243867,1219.33500001501,-0.06837043690444163 +243868,1219.3400000150102,-0.06837092309150739 +243869,1219.3450000150103,-0.06837140906019021 +243870,1219.3500000150104,-0.06837189481059927 +243871,1219.3550000150105,-0.06837238034284365 +243872,1219.3600000150107,-0.06837286565703239 +243873,1219.3650000150108,-0.06837335075327446 +243874,1219.3700000150109,-0.0683738356316787 +243875,1219.375000015011,-0.06837432029235399 +243876,1219.380000015011,-0.06837480473540905 +243877,1219.3850000150112,-0.06837528896095259 +243878,1219.3900000150113,-0.06837577296909322 +243879,1219.3950000150114,-0.06837625675993951 +243880,1219.4000000150115,-0.06837674033359996 +243881,1219.4050000150116,-0.06837722369018295 +243882,1219.4100000150117,-0.0683777068297969 +243883,1219.4150000150119,-0.06837818975255006 +243884,1219.420000015012,-0.06837867245855066 +243885,1219.425000015012,-0.06837915494790686 +243886,1219.4300000150122,-0.06837963722072675 +243887,1219.4350000150123,-0.06838011927711837 +243888,1219.4400000150124,-0.06838060111718966 +243889,1219.4450000150125,-0.06838108274104852 +243890,1219.4500000150126,-0.06838156414880278 +243891,1219.4550000150127,-0.0683820453405602 +243892,1219.4600000150128,-0.06838252631642847 +243893,1219.465000015013,-0.06838300707651522 +243894,1219.470000015013,-0.06838348762092801 +243895,1219.4750000150132,-0.06838396794977435 +243896,1219.4800000150133,-0.06838444806316166 +243897,1219.4850000150134,-0.06838492796119731 +243898,1219.4900000150135,-0.0683854076439886 +243899,1219.4950000150136,-0.06838588711164274 +243900,1219.5000000150137,-0.06838636636426695 +243901,1219.5050000150138,-0.0683868454019683 +243902,1219.510000015014,-0.0683873242248538 +243903,1219.515000015014,-0.06838780283303046 +243904,1219.5200000150141,-0.06838828122660519 +243905,1219.5250000150143,-0.06838875940568481 +243906,1219.5300000150144,-0.06838923737037611 +243907,1219.5350000150145,-0.0683897151207858 +243908,1219.5400000150146,-0.06839019265702051 +243909,1219.5450000150147,-0.06839066997918684 +243910,1219.5500000150148,-0.06839114708739129 +243911,1219.555000015015,-0.06839162398174031 +243912,1219.560000015015,-0.0683921006623403 +243913,1219.5650000150151,-0.06839257712929757 +243914,1219.5700000150152,-0.06839305338271837 +243915,1219.5750000150153,-0.06839352942270889 +243916,1219.5800000150155,-0.06839400524937526 +243917,1219.5850000150156,-0.06839448086282356 +243918,1219.5900000150157,-0.06839495626315975 +243919,1219.5950000150158,-0.06839543145048979 +243920,1219.600000015016,-0.06839590642491955 +243921,1219.605000015016,-0.06839638118655479 +243922,1219.610000015016,-0.06839685573550129 +243923,1219.6150000150162,-0.0683973300718647 +243924,1219.6200000150163,-0.06839780419575066 +243925,1219.6250000150164,-0.06839827810726468 +243926,1219.6300000150165,-0.06839875180651224 +243927,1219.6350000150167,-0.06839922529359878 +243928,1219.6400000150168,-0.06839969856862964 +243929,1219.6450000150169,-0.0684001716317101 +243930,1219.650000015017,-0.0684006444829454 +243931,1219.655000015017,-0.0684011171224407 +243932,1219.6600000150172,-0.06840158955030107 +243933,1219.6650000150173,-0.06840206176663156 +243934,1219.6700000150174,-0.06840253377153716 +243935,1219.6750000150175,-0.06840300556512273 +243936,1219.6800000150176,-0.06840347714749313 +243937,1219.6850000150177,-0.06840394851875316 +243938,1219.6900000150179,-0.0684044196790075 +243939,1219.695000015018,-0.0684048906283608 +243940,1219.700000015018,-0.06840536136691766 +243941,1219.7050000150182,-0.06840583189478261 +243942,1219.7100000150183,-0.06840630221206008 +243943,1219.7150000150184,-0.06840677231885449 +243944,1219.7200000150185,-0.06840724221527016 +243945,1219.7250000150186,-0.06840771190141136 +243946,1219.7300000150187,-0.06840818137738229 +243947,1219.7350000150188,-0.0684086506432871 +243948,1219.740000015019,-0.06840911969922987 +243949,1219.745000015019,-0.06840958854531462 +243950,1219.7500000150192,-0.06841005718164529 +243951,1219.7550000150193,-0.06841052560832576 +243952,1219.7600000150194,-0.0684109938254599 +243953,1219.7650000150195,-0.06841146183315143 +243954,1219.7700000150196,-0.06841192963150407 +243955,1219.7750000150197,-0.06841239722062145 +243956,1219.7800000150198,-0.06841286460060714 +243957,1219.78500001502,-0.06841333177156465 +243958,1219.79000001502,-0.06841379873359746 +243959,1219.7950000150202,-0.06841426548680893 +243960,1219.8000000150203,-0.0684147320313024 +243961,1219.8050000150204,-0.0684151983671811 +243962,1219.8100000150205,-0.06841566449454826 +243963,1219.8150000150206,-0.06841613041350703 +243964,1219.8200000150207,-0.06841659612416044 +243965,1219.8250000150208,-0.06841706162661153 +243966,1219.830000015021,-0.06841752692096324 +243967,1219.835000015021,-0.06841799200731848 +243968,1219.8400000150211,-0.06841845688578005 +243969,1219.8450000150212,-0.06841892155645071 +243970,1219.8500000150214,-0.06841938601943318 +243971,1219.8550000150215,-0.06841985027483008 +243972,1219.8600000150216,-0.06842031432274401 +243973,1219.8650000150217,-0.06842077816327746 +243974,1219.8700000150218,-0.06842124179653292 +243975,1219.875000015022,-0.06842170522261273 +243976,1219.880000015022,-0.06842216844161926 +243977,1219.8850000150221,-0.06842263145365476 +243978,1219.8900000150222,-0.06842309425882144 +243979,1219.8950000150223,-0.06842355685722144 +243980,1219.9000000150224,-0.06842401924895686 +243981,1219.9050000150226,-0.06842448143412969 +243982,1219.9100000150227,-0.06842494341284192 +243983,1219.9150000150228,-0.06842540518519542 +243984,1219.9200000150229,-0.06842586675129204 +243985,1219.925000015023,-0.06842632811123357 +243986,1219.930000015023,-0.06842678926512172 +243987,1219.9350000150232,-0.06842725021305812 +243988,1219.9400000150233,-0.06842771095514437 +243989,1219.9450000150234,-0.068428171491482 +243990,1219.9500000150235,-0.06842863182217249 +243991,1219.9550000150236,-0.06842909194731724 +243992,1219.9600000150238,-0.0684295518670176 +243993,1219.9650000150239,-0.06843001158137485 +243994,1219.970000015024,-0.0684304710904902 +243995,1219.975000015024,-0.06843093039446485 +243996,1219.9800000150242,-0.06843138949339987 +243997,1219.9850000150243,-0.06843184838739633 +243998,1219.9900000150244,-0.06843230707655519 +243999,1219.9950000150245,-0.06843276556097738 +244000,1220.0000000150246,-0.06843322384076378 +244001,1220.0050000150247,-0.06843368191601515 +244002,1220.0100000150248,-0.06843413978683223 +244003,1220.015000015025,-0.06843459745331573 +244004,1220.020000015025,-0.06843505491556626 +244005,1220.0250000150252,-0.06843551217368436 +244006,1220.0300000150253,-0.06843596922777052 +244007,1220.0350000150254,-0.06843642607792522 +244008,1220.0400000150255,-0.06843688272424879 +244009,1220.0450000150256,-0.06843733916684157 +244010,1220.0500000150257,-0.06843779540580382 +244011,1220.0550000150258,-0.0684382514412357 +244012,1220.060000015026,-0.0684387072732374 +244013,1220.065000015026,-0.06843916290190896 +244014,1220.0700000150262,-0.06843961832735039 +244015,1220.0750000150263,-0.06844007354966167 +244016,1220.0800000150264,-0.06844052856894267 +244017,1220.0850000150265,-0.06844098338529325 +244018,1220.0900000150266,-0.06844143799881318 +244019,1220.0950000150267,-0.06844189240960215 +244020,1220.1000000150268,-0.06844234661775984 +244021,1220.105000015027,-0.06844280062338585 +244022,1220.110000015027,-0.0684432544265797 +244023,1220.1150000150271,-0.06844370802744087 +244024,1220.1200000150272,-0.06844416142606881 +244025,1220.1250000150274,-0.06844461462256282 +244026,1220.1300000150275,-0.06844506761702225 +244027,1220.1350000150276,-0.06844552040954632 +244028,1220.1400000150277,-0.06844597300023421 +244029,1220.1450000150278,-0.06844642538918502 +244030,1220.150000015028,-0.06844687757649785 +244031,1220.155000015028,-0.06844732956227167 +244032,1220.1600000150281,-0.06844778134660545 +244033,1220.1650000150282,-0.06844823292959805 +244034,1220.1700000150283,-0.0684486843113483 +244035,1220.1750000150284,-0.06844913549195497 +244036,1220.1800000150286,-0.06844958647151676 +244037,1220.1850000150287,-0.06845003725013234 +244038,1220.1900000150288,-0.06845048782790028 +244039,1220.1950000150289,-0.0684509382049191 +244040,1220.200000015029,-0.06845138838128728 +244041,1220.205000015029,-0.06845183835710322 +244042,1220.2100000150292,-0.0684522881324653 +244043,1220.2150000150293,-0.0684527377074718 +244044,1220.2200000150294,-0.06845318708222095 +244045,1220.2250000150295,-0.06845363625681095 +244046,1220.2300000150296,-0.06845408523133988 +244047,1220.2350000150298,-0.06845453400590581 +244048,1220.2400000150299,-0.06845498258060677 +244049,1220.24500001503,-0.06845543095554067 +244050,1220.25000001503,-0.06845587913080543 +244051,1220.2550000150302,-0.06845632710649885 +244052,1220.2600000150303,-0.0684567748827187 +244053,1220.2650000150304,-0.0684572224595627 +244054,1220.2700000150305,-0.06845766983712849 +244055,1220.2750000150306,-0.06845811701551369 +244056,1220.2800000150307,-0.06845856399481579 +244057,1220.2850000150308,-0.06845901077513232 +244058,1220.290000015031,-0.06845945735656064 +244059,1220.295000015031,-0.06845990373919816 +244060,1220.3000000150312,-0.06846034992314218 +244061,1220.3050000150313,-0.06846079590848991 +244062,1220.3100000150314,-0.06846124169533857 +244063,1220.3150000150315,-0.06846168728378528 +244064,1220.3200000150316,-0.0684621326739271 +244065,1220.3250000150317,-0.06846257786586106 +244066,1220.3300000150318,-0.06846302285968411 +244067,1220.335000015032,-0.06846346765549316 +244068,1220.340000015032,-0.06846391225338504 +244069,1220.3450000150322,-0.06846435665345652 +244070,1220.3500000150323,-0.06846480085580435 +244071,1220.3550000150324,-0.06846524486052519 +244072,1220.3600000150325,-0.06846568866771566 +244073,1220.3650000150326,-0.06846613227747228 +244074,1220.3700000150327,-0.0684665756898916 +244075,1220.3750000150328,-0.06846701890507002 +244076,1220.380000015033,-0.06846746192310395 +244077,1220.385000015033,-0.06846790474408966 +244078,1220.3900000150331,-0.06846834736812349 +244079,1220.3950000150332,-0.0684687897953016 +244080,1220.4000000150334,-0.06846923202572018 +244081,1220.4050000150335,-0.06846967405947528 +244082,1220.4100000150336,-0.06847011589666298 +244083,1220.4150000150337,-0.06847055753737925 +244084,1220.4200000150338,-0.06847099898172002 +244085,1220.425000015034,-0.06847144022978113 +244086,1220.430000015034,-0.06847188128165844 +244087,1220.4350000150341,-0.06847232213744768 +244088,1220.4400000150342,-0.06847276279724454 +244089,1220.4450000150343,-0.06847320326114467 +244090,1220.4500000150344,-0.06847364352924366 +244091,1220.4550000150346,-0.06847408360163704 +244092,1220.4600000150347,-0.06847452347842027 +244093,1220.4650000150348,-0.06847496315968878 +244094,1220.4700000150349,-0.06847540264553792 +244095,1220.475000015035,-0.06847584193606299 +244096,1220.480000015035,-0.06847628103135925 +244097,1220.4850000150352,-0.06847671993152186 +244098,1220.4900000150353,-0.068477158636646 +244099,1220.4950000150354,-0.0684775971468267 +244100,1220.5000000150355,-0.06847803546215903 +244101,1220.5050000150356,-0.06847847358273791 +244102,1220.5100000150358,-0.06847891150865827 +244103,1220.5150000150359,-0.06847934924001498 +244104,1220.520000015036,-0.06847978677690279 +244105,1220.525000015036,-0.06848022411941648 +244106,1220.5300000150362,-0.06848066126765072 +244107,1220.5350000150363,-0.06848109822170013 +244108,1220.5400000150364,-0.0684815349816593 +244109,1220.5450000150365,-0.06848197154762276 +244110,1220.5500000150366,-0.06848240791968493 +244111,1220.5550000150367,-0.06848284409794024 +244112,1220.5600000150368,-0.06848328008248306 +244113,1220.565000015037,-0.06848371587340765 +244114,1220.570000015037,-0.06848415147080826 +244115,1220.5750000150372,-0.06848458687477907 +244116,1220.5800000150373,-0.06848502208541421 +244117,1220.5850000150374,-0.06848545710280778 +244118,1220.5900000150375,-0.06848589192705375 +244119,1220.5950000150376,-0.0684863265582461 +244120,1220.6000000150377,-0.06848676099647875 +244121,1220.6050000150378,-0.06848719524184554 +244122,1220.610000015038,-0.06848762929444027 +244123,1220.615000015038,-0.06848806315435667 +244124,1220.6200000150382,-0.06848849682168842 +244125,1220.6250000150383,-0.06848893029652917 +244126,1220.6300000150384,-0.06848936357897248 +244127,1220.6350000150385,-0.06848979666911187 +244128,1220.6400000150386,-0.0684902295670408 +244129,1220.6450000150387,-0.06849066227285269 +244130,1220.6500000150388,-0.06849109478664091 +244131,1220.655000015039,-0.06849152710849872 +244132,1220.660000015039,-0.06849195923851939 +244133,1220.6650000150391,-0.0684923911767961 +244134,1220.6700000150392,-0.068492822923422 +244135,1220.6750000150394,-0.06849325447849015 +244136,1220.6800000150395,-0.0684936858420936 +244137,1220.6850000150396,-0.0684941170143253 +244138,1220.6900000150397,-0.06849454799527817 +244139,1220.6950000150398,-0.06849497878504508 +244140,1220.70000001504,-0.06849540938371884 +244141,1220.70500001504,-0.06849583979139219 +244142,1220.7100000150401,-0.06849627000815782 +244143,1220.7150000150402,-0.0684967000341084 +244144,1220.7200000150403,-0.06849712986933651 +244145,1220.7250000150405,-0.06849755951393467 +244146,1220.7300000150406,-0.06849798896799539 +244147,1220.7350000150407,-0.06849841823161107 +244148,1220.7400000150408,-0.06849884730487409 +244149,1220.745000015041,-0.06849927618787678 +244150,1220.750000015041,-0.06849970488071139 +244151,1220.755000015041,-0.06850013338347015 +244152,1220.7600000150412,-0.06850056169624517 +244153,1220.7650000150413,-0.0685009898191286 +244154,1220.7700000150414,-0.06850141775221247 +244155,1220.7750000150415,-0.06850184549558877 +244156,1220.7800000150417,-0.06850227304934944 +244157,1220.7850000150418,-0.06850270041358639 +244158,1220.7900000150419,-0.06850312758839142 +244159,1220.795000015042,-0.0685035545738563 +244160,1220.800000015042,-0.06850398137007281 +244161,1220.8050000150422,-0.06850440797713257 +244162,1220.8100000150423,-0.06850483439512722 +244163,1220.8150000150424,-0.06850526062414833 +244164,1220.8200000150425,-0.06850568666428739 +244165,1220.8250000150426,-0.06850611251563586 +244166,1220.8300000150427,-0.06850653817828516 +244167,1220.8350000150429,-0.06850696365232661 +244168,1220.840000015043,-0.06850738893785156 +244169,1220.845000015043,-0.06850781403495121 +244170,1220.8500000150432,-0.06850823894371676 +244171,1220.8550000150433,-0.06850866366423936 +244172,1220.8600000150434,-0.06850908819661006 +244173,1220.8650000150435,-0.0685095125409199 +244174,1220.8700000150436,-0.06850993669725988 +244175,1220.8750000150437,-0.06851036066572092 +244176,1220.8800000150438,-0.06851078444639386 +244177,1220.885000015044,-0.06851120803936955 +244178,1220.890000015044,-0.06851163144473874 +244179,1220.8950000150442,-0.06851205466259215 +244180,1220.9000000150443,-0.06851247769302043 +244181,1220.9050000150444,-0.06851290053611421 +244182,1220.9100000150445,-0.068513323191964 +244183,1220.9150000150446,-0.06851374566066033 +244184,1220.9200000150447,-0.06851416794229366 +244185,1220.9250000150448,-0.06851459003695434 +244186,1220.930000015045,-0.06851501194473275 +244187,1220.935000015045,-0.06851543366571916 +244188,1220.9400000150451,-0.06851585520000382 +244189,1220.9450000150453,-0.06851627654767689 +244190,1220.9500000150454,-0.06851669770882855 +244191,1220.9550000150455,-0.06851711868354883 +244192,1220.9600000150456,-0.06851753947192778 +244193,1220.9650000150457,-0.06851796007405536 +244194,1220.9700000150458,-0.06851838049002151 +244195,1220.975000015046,-0.0685188007199161 +244196,1220.980000015046,-0.06851922076382892 +244197,1220.9850000150461,-0.06851964062184977 +244198,1220.9900000150462,-0.06852006029406835 +244199,1220.9950000150463,-0.0685204797805743 +244200,1221.0000000150465,-0.06852089908145724 +244201,1221.0050000150466,-0.06852131819680675 +244202,1221.0100000150467,-0.06852173712671229 +244203,1221.0150000150468,-0.06852215587126335 +244204,1221.020000015047,-0.06852257443054931 +244205,1221.025000015047,-0.06852299280465954 +244206,1221.030000015047,-0.06852341099368331 +244207,1221.0350000150472,-0.06852382899770988 +244208,1221.0400000150473,-0.06852424681682844 +244209,1221.0450000150474,-0.06852466445112812 +244210,1221.0500000150475,-0.06852508190069802 +244211,1221.0550000150477,-0.06852549916562717 +244212,1221.0600000150478,-0.06852591624600456 +244213,1221.0650000150479,-0.06852633314191912 +244214,1221.070000015048,-0.06852674985345975 +244215,1221.075000015048,-0.06852716638071527 +244216,1221.0800000150482,-0.06852758272377445 +244217,1221.0850000150483,-0.06852799888272601 +244218,1221.0900000150484,-0.06852841485765866 +244219,1221.0950000150485,-0.068528830648661 +244220,1221.1000000150486,-0.0685292462558216 +244221,1221.1050000150487,-0.068529661679229 +244222,1221.1100000150489,-0.06853007691897164 +244223,1221.115000015049,-0.06853049197513798 +244224,1221.120000015049,-0.06853090684781638 +244225,1221.1250000150492,-0.06853132153709511 +244226,1221.1300000150493,-0.0685317360430625 +244227,1221.1350000150494,-0.06853215036580672 +244228,1221.1400000150495,-0.06853256450541595 +244229,1221.1450000150496,-0.0685329784619783 +244230,1221.1500000150497,-0.06853339223558184 +244231,1221.1550000150498,-0.06853380582631458 +244232,1221.16000001505,-0.06853421923426448 +244233,1221.16500001505,-0.06853463245951942 +244234,1221.1700000150502,-0.06853504550216728 +244235,1221.1750000150503,-0.06853545836229588 +244236,1221.1800000150504,-0.06853587103999297 +244237,1221.1850000150505,-0.06853628353534624 +244238,1221.1900000150506,-0.06853669584844337 +244239,1221.1950000150507,-0.06853710797937193 +244240,1221.2000000150508,-0.06853751992821949 +244241,1221.205000015051,-0.06853793169507356 +244242,1221.210000015051,-0.06853834328002159 +244243,1221.2150000150511,-0.06853875468315099 +244244,1221.2200000150513,-0.06853916590454909 +244245,1221.2250000150514,-0.0685395769443032 +244246,1221.2300000150515,-0.06853998780250056 +244247,1221.2350000150516,-0.06854039847922838 +244248,1221.2400000150517,-0.06854080897457383 +244249,1221.2450000150518,-0.068541219288624 +244250,1221.250000015052,-0.06854162942146591 +244251,1221.255000015052,-0.06854203937318658 +244252,1221.2600000150521,-0.06854244914387297 +244253,1221.2650000150522,-0.06854285873361196 +244254,1221.2700000150523,-0.06854326814249041 +244255,1221.2750000150525,-0.06854367737059511 +244256,1221.2800000150526,-0.06854408641801281 +244257,1221.2850000150527,-0.06854449528483023 +244258,1221.2900000150528,-0.06854490397113398 +244259,1221.295000015053,-0.06854531247701068 +244260,1221.300000015053,-0.06854572080254688 +244261,1221.305000015053,-0.06854612894782908 +244262,1221.3100000150532,-0.06854653691294371 +244263,1221.3150000150533,-0.06854694469797719 +244264,1221.3200000150534,-0.06854735230301585 +244265,1221.3250000150535,-0.06854775972814602 +244266,1221.3300000150537,-0.06854816697345394 +244267,1221.3350000150538,-0.06854857403902578 +244268,1221.3400000150539,-0.06854898092494772 +244269,1221.345000015054,-0.06854938763130586 +244270,1221.350000015054,-0.06854979415818625 +244271,1221.3550000150542,-0.06855020050567488 +244272,1221.3600000150543,-0.06855060667385772 +244273,1221.3650000150544,-0.06855101266282065 +244274,1221.3700000150545,-0.06855141847264956 +244275,1221.3750000150546,-0.06855182410343022 +244276,1221.3800000150547,-0.06855222955524841 +244277,1221.3850000150549,-0.06855263482818981 +244278,1221.390000015055,-0.0685530399223401 +244279,1221.395000015055,-0.06855344483778489 +244280,1221.4000000150552,-0.06855384957460971 +244281,1221.4050000150553,-0.06855425413290009 +244282,1221.4100000150554,-0.06855465851274148 +244283,1221.4150000150555,-0.06855506271421931 +244284,1221.4200000150556,-0.06855546673741893 +244285,1221.4250000150557,-0.06855587058242564 +244286,1221.4300000150558,-0.06855627424932473 +244287,1221.435000015056,-0.0685566777382014 +244288,1221.440000015056,-0.06855708104914081 +244289,1221.4450000150562,-0.06855748418222808 +244290,1221.4500000150563,-0.06855788713754829 +244291,1221.4550000150564,-0.06855828991518646 +244292,1221.4600000150565,-0.06855869251522755 +244293,1221.4650000150566,-0.06855909493775648 +244294,1221.4700000150567,-0.06855949718285814 +244295,1221.4750000150568,-0.06855989925061734 +244296,1221.480000015057,-0.06856030114111886 +244297,1221.485000015057,-0.06856070285444743 +244298,1221.4900000150571,-0.06856110439068773 +244299,1221.4950000150573,-0.0685615057499244 +244300,1221.5000000150574,-0.068561906932242 +244301,1221.5050000150575,-0.06856230793772508 +244302,1221.5100000150576,-0.06856270876645813 +244303,1221.5150000150577,-0.06856310941852557 +244304,1221.5200000150578,-0.0685635098940118 +244305,1221.525000015058,-0.06856391019300116 +244306,1221.530000015058,-0.06856431031557794 +244307,1221.5350000150581,-0.0685647102618264 +244308,1221.5400000150582,-0.0685651100318307 +244309,1221.5450000150583,-0.06856550962567502 +244310,1221.5500000150585,-0.06856590904344345 +244311,1221.5550000150586,-0.06856630828522005 +244312,1221.5600000150587,-0.0685667073510888 +244313,1221.5650000150588,-0.06856710624113367 +244314,1221.570000015059,-0.06856750495543856 +244315,1221.575000015059,-0.06856790349408735 +244316,1221.580000015059,-0.06856830185716384 +244317,1221.5850000150592,-0.06856870004475178 +244318,1221.5900000150593,-0.06856909805693491 +244319,1221.5950000150594,-0.06856949589379689 +244320,1221.6000000150595,-0.06856989355542133 +244321,1221.6050000150597,-0.06857029104189181 +244322,1221.6100000150598,-0.06857068835329186 +244323,1221.6150000150599,-0.06857108548970495 +244324,1221.62000001506,-0.06857148245121451 +244325,1221.62500001506,-0.06857187923790393 +244326,1221.6300000150602,-0.06857227584985653 +244327,1221.6350000150603,-0.06857267228715562 +244328,1221.6400000150604,-0.06857306854988442 +244329,1221.6450000150605,-0.06857346463812611 +244330,1221.6500000150606,-0.06857386055196388 +244331,1221.6550000150608,-0.06857425629148078 +244332,1221.6600000150609,-0.06857465185675989 +244333,1221.665000015061,-0.0685750472478842 +244334,1221.670000015061,-0.06857544246493667 +244335,1221.6750000150612,-0.06857583750800021 +244336,1221.6800000150613,-0.06857623237715768 +244337,1221.6850000150614,-0.06857662707249189 +244338,1221.6900000150615,-0.06857702159408562 +244339,1221.6950000150616,-0.06857741594202156 +244340,1221.7000000150617,-0.0685778101163824 +244341,1221.7050000150618,-0.06857820411725078 +244342,1221.710000015062,-0.06857859794470926 +244343,1221.715000015062,-0.06857899159884037 +244344,1221.7200000150622,-0.0685793850797266 +244345,1221.7250000150623,-0.06857977838745039 +244346,1221.7300000150624,-0.06858017152209414 +244347,1221.7350000150625,-0.06858056448374017 +244348,1221.7400000150626,-0.06858095727247078 +244349,1221.7450000150627,-0.06858134988836824 +244350,1221.7500000150628,-0.06858174233151475 +244351,1221.755000015063,-0.06858213460199246 +244352,1221.760000015063,-0.06858252669988346 +244353,1221.7650000150632,-0.06858291862526984 +244354,1221.7700000150633,-0.06858331037823362 +244355,1221.7750000150634,-0.06858370195885677 +244356,1221.7800000150635,-0.06858409336722118 +244357,1221.7850000150636,-0.06858448460340877 +244358,1221.7900000150637,-0.06858487566750135 +244359,1221.7950000150638,-0.06858526655958071 +244360,1221.800000015064,-0.06858565727972858 +244361,1221.805000015064,-0.06858604782802666 +244362,1221.8100000150641,-0.0685864382045566 +244363,1221.8150000150642,-0.06858682840939997 +244364,1221.8200000150644,-0.06858721844263836 +244365,1221.8250000150645,-0.06858760830435326 +244366,1221.8300000150646,-0.06858799799462613 +244367,1221.8350000150647,-0.06858838751353837 +244368,1221.8400000150648,-0.06858877686117137 +244369,1221.845000015065,-0.06858916603760645 +244370,1221.850000015065,-0.06858955504292487 +244371,1221.8550000150651,-0.06858994387720788 +244372,1221.8600000150652,-0.06859033254053665 +244373,1221.8650000150653,-0.06859072103299232 +244374,1221.8700000150654,-0.06859110935465598 +244375,1221.8750000150656,-0.06859149750560868 +244376,1221.8800000150657,-0.06859188548593143 +244377,1221.8850000150658,-0.06859227329570516 +244378,1221.8900000150659,-0.06859266093501082 +244379,1221.895000015066,-0.06859304840392921 +244380,1221.900000015066,-0.0685934357025412 +244381,1221.9050000150662,-0.06859382283092753 +244382,1221.9100000150663,-0.06859420978916896 +244383,1221.9150000150664,-0.06859459657734612 +244384,1221.9200000150665,-0.06859498319553968 +244385,1221.9250000150666,-0.06859536964383023 +244386,1221.9300000150668,-0.0685957559222983 +244387,1221.9350000150669,-0.06859614203102439 +244388,1221.940000015067,-0.06859652797008894 +244389,1221.945000015067,-0.06859691373957238 +244390,1221.9500000150672,-0.06859729933955507 +244391,1221.9550000150673,-0.0685976847701173 +244392,1221.9600000150674,-0.06859807003133936 +244393,1221.9650000150675,-0.06859845512330148 +244394,1221.9700000150676,-0.06859884004608383 +244395,1221.9750000150677,-0.06859922479976653 +244396,1221.9800000150678,-0.0685996093844297 +244397,1221.985000015068,-0.06859999380015337 +244398,1221.990000015068,-0.06860037804701755 +244399,1221.9950000150682,-0.06860076212510216 +244400,1222.0000000150683,-0.06860114603448715 +244401,1222.0050000150684,-0.06860152977525234 +244402,1222.0100000150685,-0.06860191334747759 +244403,1222.0150000150686,-0.06860229675124266 +244404,1222.0200000150687,-0.06860267998662728 +244405,1222.0250000150688,-0.06860306305371112 +244406,1222.030000015069,-0.06860344595257384 +244407,1222.035000015069,-0.06860382868329501 +244408,1222.0400000150692,-0.06860421124595419 +244409,1222.0450000150693,-0.0686045936406309 +244410,1222.0500000150694,-0.06860497586740458 +244411,1222.0550000150695,-0.06860535792635464 +244412,1222.0600000150696,-0.06860573981756048 +244413,1222.0650000150697,-0.06860612154110139 +244414,1222.0700000150698,-0.06860650309705668 +244415,1222.07500001507,-0.06860688448550556 +244416,1222.08000001507,-0.06860726570652724 +244417,1222.0850000150701,-0.06860764676020087 +244418,1222.0900000150702,-0.06860802764660553 +244419,1222.0950000150704,-0.06860840836582031 +244420,1222.1000000150705,-0.0686087889179242 +244421,1222.1050000150706,-0.06860916930299617 +244422,1222.1100000150707,-0.06860954952111514 +244423,1222.1150000150708,-0.06860992957236002 +244424,1222.120000015071,-0.06861030945680961 +244425,1222.125000015071,-0.06861068917454273 +244426,1222.1300000150711,-0.0686110687256381 +244427,1222.1350000150712,-0.06861144811017446 +244428,1222.1400000150713,-0.06861182732823042 +244429,1222.1450000150714,-0.06861220637988465 +244430,1222.1500000150716,-0.06861258526521567 +244431,1222.1550000150717,-0.06861296398430204 +244432,1222.1600000150718,-0.06861334253722223 +244433,1222.1650000150719,-0.0686137209240547 +244434,1222.170000015072,-0.0686140991448778 +244435,1222.175000015072,-0.06861447719976992 +244436,1222.1800000150722,-0.06861485508880934 +244437,1222.1850000150723,-0.06861523281207432 +244438,1222.1900000150724,-0.06861561036964312 +244439,1222.1950000150725,-0.06861598776159386 +244440,1222.2000000150726,-0.06861636498800472 +244441,1222.2050000150728,-0.06861674204895375 +244442,1222.2100000150729,-0.06861711894451902 +244443,1222.215000015073,-0.06861749567477853 +244444,1222.220000015073,-0.06861787223981021 +244445,1222.2250000150732,-0.06861824863969199 +244446,1222.2300000150733,-0.06861862487450174 +244447,1222.2350000150734,-0.06861900094431726 +244448,1222.2400000150735,-0.06861937684921637 +244449,1222.2450000150736,-0.06861975258927679 +244450,1222.2500000150737,-0.0686201281645762 +244451,1222.2550000150738,-0.06862050357519227 +244452,1222.260000015074,-0.06862087882120262 +244453,1222.265000015074,-0.06862125390268477 +244454,1222.2700000150742,-0.06862162881971628 +244455,1222.2750000150743,-0.0686220035723746 +244456,1222.2800000150744,-0.0686223781607372 +244457,1222.2850000150745,-0.06862275258488143 +244458,1222.2900000150746,-0.06862312684488465 +244459,1222.2950000150747,-0.06862350094082417 +244460,1222.3000000150748,-0.06862387487277727 +244461,1222.305000015075,-0.06862424864082112 +244462,1222.310000015075,-0.06862462224503293 +244463,1222.3150000150752,-0.06862499568548984 +244464,1222.3200000150753,-0.06862536896226891 +244465,1222.3250000150754,-0.0686257420754472 +244466,1222.3300000150755,-0.0686261150251017 +244467,1222.3350000150756,-0.06862648781130938 +244468,1222.3400000150757,-0.06862686043414715 +244469,1222.3450000150758,-0.06862723289369188 +244470,1222.350000015076,-0.06862760519002042 +244471,1222.355000015076,-0.06862797732320954 +244472,1222.3600000150761,-0.06862834929333597 +244473,1222.3650000150762,-0.06862872110047644 +244474,1222.3700000150764,-0.0686290927447076 +244475,1222.3750000150765,-0.06862946422610607 +244476,1222.3800000150766,-0.0686298355447484 +244477,1222.3850000150767,-0.06863020670071115 +244478,1222.3900000150768,-0.0686305776940708 +244479,1222.395000015077,-0.06863094852490378 +244480,1222.400000015077,-0.06863131919328652 +244481,1222.4050000150771,-0.06863168969929535 +244482,1222.4100000150772,-0.0686320600430066 +244483,1222.4150000150773,-0.06863243022449655 +244484,1222.4200000150774,-0.06863280024384144 +244485,1222.4250000150776,-0.06863317010111744 +244486,1222.4300000150777,-0.06863353979640072 +244487,1222.4350000150778,-0.06863390932976735 +244488,1222.4400000150779,-0.06863427870129343 +244489,1222.445000015078,-0.06863464791105496 +244490,1222.450000015078,-0.06863501695912792 +244491,1222.4550000150782,-0.06863538584558826 +244492,1222.4600000150783,-0.06863575457051185 +244493,1222.4650000150784,-0.06863612313397456 +244494,1222.4700000150785,-0.06863649153605221 +244495,1222.4750000150786,-0.06863685977682053 +244496,1222.4800000150788,-0.06863722785635527 +244497,1222.4850000150789,-0.06863759577473211 +244498,1222.490000015079,-0.06863796353202667 +244499,1222.495000015079,-0.06863833112831459 +244500,1222.5000000150792,-0.0686386985636714 +244501,1222.5050000150793,-0.06863906583817261 +244502,1222.5100000150794,-0.06863943295189372 +244503,1222.5150000150795,-0.06863979990491012 +244504,1222.5200000150796,-0.06864016669729724 +244505,1222.5250000150797,-0.0686405333291304 +244506,1222.5300000150798,-0.0686408998004849 +244507,1222.53500001508,-0.06864126611143602 +244508,1222.54000001508,-0.06864163226205898 +244509,1222.5450000150802,-0.06864199825242895 +244510,1222.5500000150803,-0.06864236408262107 +244511,1222.5550000150804,-0.06864272975271045 +244512,1222.5600000150805,-0.06864309526277214 +244513,1222.5650000150806,-0.06864346061288114 +244514,1222.5700000150807,-0.06864382580311244 +244515,1222.5750000150808,-0.06864419083354095 +244516,1222.580000015081,-0.06864455570424156 +244517,1222.585000015081,-0.06864492041528915 +244518,1222.5900000150812,-0.06864528496675848 +244519,1222.5950000150813,-0.06864564935872434 +244520,1222.6000000150814,-0.06864601359126145 +244521,1222.6050000150815,-0.06864637766444448 +244522,1222.6100000150816,-0.06864674157834807 +244523,1222.6150000150817,-0.06864710533304683 +244524,1222.6200000150818,-0.0686474689286153 +244525,1222.625000015082,-0.06864783236512802 +244526,1222.630000015082,-0.06864819564265943 +244527,1222.6350000150821,-0.06864855876128399 +244528,1222.6400000150823,-0.06864892172107609 +244529,1222.6450000150824,-0.06864928452211008 +244530,1222.6500000150825,-0.06864964716446026 +244531,1222.6550000150826,-0.06865000964820091 +244532,1222.6600000150827,-0.06865037197340623 +244533,1222.6650000150828,-0.06865073414015045 +244534,1222.670000015083,-0.06865109614850767 +244535,1222.675000015083,-0.06865145799855203 +244536,1222.6800000150831,-0.06865181969035757 +244537,1222.6850000150832,-0.06865218122399833 +244538,1222.6900000150833,-0.06865254259954827 +244539,1222.6950000150835,-0.06865290381708133 +244540,1222.7000000150836,-0.06865326487667145 +244541,1222.7050000150837,-0.06865362577839244 +244542,1222.7100000150838,-0.06865398652231813 +244543,1222.715000015084,-0.06865434710852232 +244544,1222.720000015084,-0.06865470753707872 +244545,1222.725000015084,-0.06865506780806105 +244546,1222.7300000150842,-0.06865542792154294 +244547,1222.7350000150843,-0.06865578787759802 +244548,1222.7400000150844,-0.06865614767629985 +244549,1222.7450000150845,-0.06865650731772198 +244550,1222.7500000150847,-0.06865686680193789 +244551,1222.7550000150848,-0.06865722612902103 +244552,1222.7600000150849,-0.06865758529904482 +244553,1222.765000015085,-0.06865794431208264 +244554,1222.770000015085,-0.0686583031682078 +244555,1222.7750000150852,-0.06865866186749359 +244556,1222.7800000150853,-0.06865902041001327 +244557,1222.7850000150854,-0.06865937879584004 +244558,1222.7900000150855,-0.06865973702504707 +244559,1222.7950000150856,-0.06866009509770751 +244560,1222.8000000150857,-0.06866045301389442 +244561,1222.8050000150859,-0.06866081077368087 +244562,1222.810000015086,-0.06866116837713984 +244563,1222.815000015086,-0.06866152582434433 +244564,1222.8200000150862,-0.06866188311536724 +244565,1222.8250000150863,-0.06866224025028146 +244566,1222.8300000150864,-0.06866259722915985 +244567,1222.8350000150865,-0.06866295405207519 +244568,1222.8400000150866,-0.06866331071910028 +244569,1222.8450000150867,-0.06866366723030783 +244570,1222.8500000150868,-0.06866402358577052 +244571,1222.855000015087,-0.06866437978556102 +244572,1222.860000015087,-0.06866473582975191 +244573,1222.8650000150872,-0.06866509171841577 +244574,1222.8700000150873,-0.06866544745162513 +244575,1222.8750000150874,-0.06866580302945247 +244576,1222.8800000150875,-0.06866615845197022 +244577,1222.8850000150876,-0.06866651371925081 +244578,1222.8900000150877,-0.06866686883136662 +244579,1222.8950000150878,-0.06866722378838995 +244580,1222.900000015088,-0.06866757859039309 +244581,1222.905000015088,-0.0686679332374483 +244582,1222.9100000150881,-0.06866828772962778 +244583,1222.9150000150883,-0.06866864206700371 +244584,1222.9200000150884,-0.06866899624964819 +244585,1222.9250000150885,-0.06866935027763334 +244586,1222.9300000150886,-0.0686697041510312 +244587,1222.9350000150887,-0.06867005786991377 +244588,1222.9400000150888,-0.06867041143435304 +244589,1222.945000015089,-0.06867076484442093 +244590,1222.950000015089,-0.06867111810018933 +244591,1222.9550000150891,-0.0686714712017301 +244592,1222.9600000150892,-0.06867182414911505 +244593,1222.9650000150893,-0.06867217694241594 +244594,1222.9700000150895,-0.0686725295817045 +244595,1222.9750000150896,-0.06867288206705244 +244596,1222.9800000150897,-0.06867323439853142 +244597,1222.9850000150898,-0.06867358657621306 +244598,1222.99000001509,-0.0686739386001689 +244599,1222.99500001509,-0.06867429047047054 +244600,1223.00000001509,-0.06867464218718942 +244601,1223.0050000150902,-0.06867499375039703 +244602,1223.0100000150903,-0.06867534516016477 +244603,1223.0150000150904,-0.06867569641656404 +244604,1223.0200000150905,-0.06867604751966616 +244605,1223.0250000150907,-0.06867639846954245 +244606,1223.0300000150908,-0.06867674926626417 +244607,1223.0350000150909,-0.06867709990990253 +244608,1223.040000015091,-0.06867745040052874 +244609,1223.045000015091,-0.06867780073821393 +244610,1223.0500000150912,-0.06867815092302923 +244611,1223.0550000150913,-0.06867850095504567 +244612,1223.0600000150914,-0.0686788508343343 +244613,1223.0650000150915,-0.06867920056096613 +244614,1223.0700000150916,-0.06867955013501208 +244615,1223.0750000150917,-0.06867989955654308 +244616,1223.0800000150919,-0.06868024882563001 +244617,1223.085000015092,-0.06868059794234369 +244618,1223.090000015092,-0.06868094690675491 +244619,1223.0950000150922,-0.06868129571893446 +244620,1223.1000000150923,-0.06868164437895302 +244621,1223.1050000150924,-0.0686819928868813 +244622,1223.1100000150925,-0.06868234124278995 +244623,1223.1150000150926,-0.06868268944674955 +244624,1223.1200000150927,-0.06868303749883067 +244625,1223.1250000150928,-0.06868338539910385 +244626,1223.130000015093,-0.06868373314763955 +244627,1223.135000015093,-0.06868408074450824 +244628,1223.1400000150932,-0.06868442818978034 +244629,1223.1450000150933,-0.0686847754835262 +244630,1223.1500000150934,-0.06868512262581616 +244631,1223.1550000150935,-0.06868546961672053 +244632,1223.1600000150936,-0.06868581645630957 +244633,1223.1650000150937,-0.06868616314465348 +244634,1223.1700000150938,-0.06868650968182244 +244635,1223.175000015094,-0.0686868560678866 +244636,1223.180000015094,-0.06868720230291608 +244637,1223.1850000150941,-0.06868754838698092 +244638,1223.1900000150943,-0.06868789432015115 +244639,1223.1950000150944,-0.06868824010249679 +244640,1223.2000000150945,-0.06868858573408776 +244641,1223.2050000150946,-0.06868893121499398 +244642,1223.2100000150947,-0.06868927654528532 +244643,1223.2150000150948,-0.06868962172503164 +244644,1223.220000015095,-0.06868996675430272 +244645,1223.225000015095,-0.06869031163316833 +244646,1223.2300000150951,-0.06869065636169817 +244647,1223.2350000150952,-0.06869100093996196 +244648,1223.2400000150953,-0.06869134536802932 +244649,1223.2450000150955,-0.06869168964596988 +244650,1223.2500000150956,-0.0686920337738532 +244651,1223.2550000150957,-0.06869237775174881 +244652,1223.2600000150958,-0.06869272157972621 +244653,1223.265000015096,-0.06869306525785486 +244654,1223.270000015096,-0.06869340878620417 +244655,1223.275000015096,-0.06869375216484355 +244656,1223.2800000150962,-0.0686940953938423 +244657,1223.2850000150963,-0.06869443847326977 +244658,1223.2900000150964,-0.06869478140319521 +244659,1223.2950000150965,-0.06869512418368784 +244660,1223.3000000150967,-0.06869546681481686 +244661,1223.3050000150968,-0.06869580929665145 +244662,1223.3100000150969,-0.0686961516292607 +244663,1223.315000015097,-0.0686964938127137 +244664,1223.320000015097,-0.0686968358470795 +244665,1223.3250000150972,-0.06869717773242709 +244666,1223.3300000150973,-0.06869751946882546 +244667,1223.3350000150974,-0.06869786105634353 +244668,1223.3400000150975,-0.0686982024950502 +244669,1223.3450000150976,-0.0686985437850143 +244670,1223.3500000150977,-0.06869888492630469 +244671,1223.3550000150979,-0.06869922591899012 +244672,1223.360000015098,-0.06869956676313935 +244673,1223.365000015098,-0.06869990745882107 +244674,1223.3700000150982,-0.06870024800610398 +244675,1223.3750000150983,-0.06870058840505668 +244676,1223.3800000150984,-0.06870092865574777 +244677,1223.3850000150985,-0.06870126875824582 +244678,1223.3900000150986,-0.06870160871261935 +244679,1223.3950000150987,-0.06870194851893684 +244680,1223.4000000150988,-0.06870228817726673 +244681,1223.405000015099,-0.06870262768767743 +244682,1223.410000015099,-0.06870296705023732 +244683,1223.4150000150992,-0.06870330626501474 +244684,1223.4200000150993,-0.06870364533207797 +244685,1223.4250000150994,-0.06870398425149529 +244686,1223.4300000150995,-0.06870432302333492 +244687,1223.4350000150996,-0.06870466164766502 +244688,1223.4400000150997,-0.06870500012455376 +244689,1223.4450000150998,-0.06870533845406926 +244690,1223.4500000151,-0.0687056766362796 +244691,1223.4550000151,-0.06870601467125281 +244692,1223.4600000151001,-0.0687063525590569 +244693,1223.4650000151003,-0.06870669029975982 +244694,1223.4700000151004,-0.0687070278934295 +244695,1223.4750000151005,-0.06870736534013384 +244696,1223.4800000151006,-0.06870770263994071 +244697,1223.4850000151007,-0.0687080397929179 +244698,1223.4900000151008,-0.06870837679913322 +244699,1223.495000015101,-0.06870871365865439 +244700,1223.500000015101,-0.06870905037154915 +244701,1223.5050000151011,-0.06870938693788513 +244702,1223.5100000151012,-0.06870972335773 +244703,1223.5150000151014,-0.06871005963115134 +244704,1223.5200000151015,-0.06871039575821672 +244705,1223.5250000151016,-0.06871073173899367 +244706,1223.5300000151017,-0.06871106757354968 +244707,1223.5350000151018,-0.0687114032619522 +244708,1223.540000015102,-0.06871173880426863 +244709,1223.545000015102,-0.06871207420056638 +244710,1223.5500000151021,-0.06871240945091277 +244711,1223.5550000151022,-0.06871274455537513 +244712,1223.5600000151023,-0.06871307951402071 +244713,1223.5650000151024,-0.06871341432691674 +244714,1223.5700000151026,-0.06871374899413045 +244715,1223.5750000151027,-0.06871408351572898 +244716,1223.5800000151028,-0.06871441789177947 +244717,1223.5850000151029,-0.06871475212234897 +244718,1223.590000015103,-0.06871508620750458 +244719,1223.595000015103,-0.06871542014731329 +244720,1223.6000000151032,-0.0687157539418421 +244721,1223.6050000151033,-0.06871608759115795 +244722,1223.6100000151034,-0.06871642109532773 +244723,1223.6150000151035,-0.06871675445441834 +244724,1223.6200000151036,-0.0687170876684966 +244725,1223.6250000151038,-0.06871742073762932 +244726,1223.6300000151039,-0.06871775366188326 +244727,1223.635000015104,-0.06871808644132515 +244728,1223.640000015104,-0.06871841907602169 +244729,1223.6450000151042,-0.06871875156603952 +244730,1223.6500000151043,-0.06871908391144527 +244731,1223.6550000151044,-0.06871941611230553 +244732,1223.6600000151045,-0.06871974816868684 +244733,1223.6650000151046,-0.06872008008065572 +244734,1223.6700000151047,-0.06872041184827865 +244735,1223.6750000151048,-0.06872074347162206 +244736,1223.680000015105,-0.06872107495075237 +244737,1223.685000015105,-0.06872140628573593 +244738,1223.6900000151052,-0.06872173747663911 +244739,1223.6950000151053,-0.06872206852352818 +244740,1223.7000000151054,-0.0687223994264694 +244741,1223.7050000151055,-0.06872273018552903 +244742,1223.7100000151056,-0.06872306080077324 +244743,1223.7150000151057,-0.06872339127226819 +244744,1223.7200000151058,-0.06872372160007999 +244745,1223.725000015106,-0.06872405178427474 +244746,1223.730000015106,-0.06872438182491848 +244747,1223.7350000151062,-0.06872471172207724 +244748,1223.7400000151063,-0.06872504147581697 +244749,1223.7450000151064,-0.06872537108620363 +244750,1223.7500000151065,-0.06872570055330314 +244751,1223.7550000151066,-0.06872602987718136 +244752,1223.7600000151067,-0.06872635905790413 +244753,1223.7650000151068,-0.06872668809553724 +244754,1223.770000015107,-0.06872701699014647 +244755,1223.775000015107,-0.06872734574179755 +244756,1223.7800000151071,-0.06872767435055617 +244757,1223.7850000151072,-0.068728002816488 +244758,1223.7900000151074,-0.06872833113965866 +244759,1223.7950000151075,-0.06872865932013375 +244760,1223.8000000151076,-0.06872898735797879 +244761,1223.8050000151077,-0.06872931525325934 +244762,1223.8100000151078,-0.06872964300604087 +244763,1223.815000015108,-0.06872997061638883 +244764,1223.820000015108,-0.06873029808436863 +244765,1223.8250000151081,-0.06873062541004565 +244766,1223.8300000151082,-0.06873095259348524 +244767,1223.8350000151083,-0.06873127963475271 +244768,1223.8400000151084,-0.06873160653391332 +244769,1223.8450000151086,-0.06873193329103233 +244770,1223.8500000151087,-0.06873225990617493 +244771,1223.8550000151088,-0.0687325863794063 +244772,1223.8600000151089,-0.06873291271079157 +244773,1223.865000015109,-0.06873323890039583 +244774,1223.870000015109,-0.06873356494828416 +244775,1223.8750000151092,-0.06873389085452157 +244776,1223.8800000151093,-0.06873421661917309 +244777,1223.8850000151094,-0.06873454224230363 +244778,1223.8900000151095,-0.06873486772397816 +244779,1223.8950000151096,-0.06873519306426155 +244780,1223.9000000151098,-0.06873551826321866 +244781,1223.9050000151099,-0.06873584332091431 +244782,1223.91000001511,-0.0687361682374133 +244783,1223.91500001511,-0.06873649301278036 +244784,1223.9200000151102,-0.06873681764708021 +244785,1223.9250000151103,-0.06873714214037754 +244786,1223.9300000151104,-0.068737466492737 +244787,1223.9350000151105,-0.0687377907042232 +244788,1223.9400000151106,-0.06873811477490073 +244789,1223.9450000151107,-0.0687384387048341 +244790,1223.9500000151108,-0.06873876249408788 +244791,1223.955000015111,-0.06873908614272649 +244792,1223.960000015111,-0.06873940965081439 +244793,1223.9650000151112,-0.068739733018416 +244794,1223.9700000151113,-0.06874005624559568 +244795,1223.9750000151114,-0.06874037933241776 +244796,1223.9800000151115,-0.06874070227894656 +244797,1223.9850000151116,-0.06874102508524634 +244798,1223.9900000151117,-0.06874134775138133 +244799,1223.9950000151118,-0.06874167027741573 +244800,1224.000000015112,-0.06874199266341373 +244801,1224.005000015112,-0.06874231490943943 +244802,1224.0100000151122,-0.06874263701555694 +244803,1224.0150000151123,-0.06874295898183033 +244804,1224.0200000151124,-0.06874328080832362 +244805,1224.0250000151125,-0.06874360249510082 +244806,1224.0300000151126,-0.06874392404222587 +244807,1224.0350000151127,-0.06874424544976272 +244808,1224.0400000151128,-0.06874456671777525 +244809,1224.045000015113,-0.0687448878463273 +244810,1224.050000015113,-0.06874520883548273 +244811,1224.0550000151131,-0.06874552968530531 +244812,1224.0600000151132,-0.06874585039585882 +244813,1224.0650000151134,-0.06874617096720693 +244814,1224.0700000151135,-0.06874649139941338 +244815,1224.0750000151136,-0.06874681169254182 +244816,1224.0800000151137,-0.06874713184665586 +244817,1224.0850000151138,-0.06874745186181909 +244818,1224.090000015114,-0.06874777173809506 +244819,1224.095000015114,-0.06874809147554727 +244820,1224.1000000151141,-0.06874841107423924 +244821,1224.1050000151142,-0.0687487305342344 +244822,1224.1100000151143,-0.06874904985559617 +244823,1224.1150000151144,-0.06874936903838794 +244824,1224.1200000151146,-0.06874968808267307 +244825,1224.1250000151147,-0.06875000698851486 +244826,1224.1300000151148,-0.06875032575597659 +244827,1224.1350000151149,-0.06875064438512152 +244828,1224.140000015115,-0.06875096287601286 +244829,1224.145000015115,-0.06875128122871381 +244830,1224.1500000151152,-0.0687515994432875 +244831,1224.1550000151153,-0.06875191751979705 +244832,1224.1600000151154,-0.06875223545830554 +244833,1224.1650000151155,-0.06875255325887603 +244834,1224.1700000151156,-0.06875287092157151 +244835,1224.1750000151158,-0.06875318844645498 +244836,1224.1800000151159,-0.06875350583358937 +244837,1224.185000015116,-0.06875382308303762 +244838,1224.190000015116,-0.06875414019486259 +244839,1224.1950000151162,-0.06875445716912713 +244840,1224.2000000151163,-0.06875477400589407 +244841,1224.2050000151164,-0.06875509070522617 +244842,1224.2100000151165,-0.06875540726718617 +244843,1224.2150000151166,-0.0687557236918368 +244844,1224.2200000151167,-0.06875603997924075 +244845,1224.2250000151168,-0.06875635612946066 +244846,1224.230000015117,-0.06875667214255912 +244847,1224.235000015117,-0.06875698801859875 +244848,1224.2400000151172,-0.06875730375764207 +244849,1224.2450000151173,-0.0687576193597516 +244850,1224.2500000151174,-0.06875793482498983 +244851,1224.2550000151175,-0.0687582501534192 +244852,1224.2600000151176,-0.06875856534510214 +244853,1224.2650000151177,-0.06875888040010099 +244854,1224.2700000151178,-0.06875919531847814 +244855,1224.275000015118,-0.06875951010029589 +244856,1224.280000015118,-0.06875982474561652 +244857,1224.2850000151182,-0.0687601392545023 +244858,1224.2900000151183,-0.06876045362701542 +244859,1224.2950000151184,-0.06876076786321808 +244860,1224.3000000151185,-0.06876108196317243 +244861,1224.3050000151186,-0.06876139592694058 +244862,1224.3100000151187,-0.06876170975458462 +244863,1224.3150000151188,-0.0687620234461666 +244864,1224.320000015119,-0.06876233700174854 +244865,1224.325000015119,-0.06876265042139243 +244866,1224.3300000151191,-0.0687629637051602 +244867,1224.3350000151192,-0.06876327685311381 +244868,1224.3400000151194,-0.06876358986531511 +244869,1224.3450000151195,-0.06876390274182599 +244870,1224.3500000151196,-0.06876421548270825 +244871,1224.3550000151197,-0.06876452808802368 +244872,1224.3600000151198,-0.06876484055783405 +244873,1224.36500001512,-0.06876515289220107 +244874,1224.37000001512,-0.06876546509118645 +244875,1224.3750000151201,-0.06876577715485183 +244876,1224.3800000151202,-0.06876608908325883 +244877,1224.3850000151203,-0.06876640087646908 +244878,1224.3900000151204,-0.06876671253454411 +244879,1224.3950000151206,-0.06876702405754546 +244880,1224.4000000151207,-0.06876733544553464 +244881,1224.4050000151208,-0.06876764669857309 +244882,1224.4100000151209,-0.06876795781672225 +244883,1224.415000015121,-0.06876826880004351 +244884,1224.420000015121,-0.06876857964859827 +244885,1224.4250000151212,-0.06876889036244782 +244886,1224.4300000151213,-0.06876920094165348 +244887,1224.4350000151214,-0.06876951138627652 +244888,1224.4400000151215,-0.06876982169637819 +244889,1224.4450000151216,-0.06877013187201968 +244890,1224.4500000151218,-0.06877044191326215 +244891,1224.4550000151219,-0.06877075182016677 +244892,1224.460000015122,-0.06877106159279463 +244893,1224.465000015122,-0.0687713712312068 +244894,1224.4700000151222,-0.06877168073546433 +244895,1224.4750000151223,-0.06877199010562823 +244896,1224.4800000151224,-0.06877229934175949 +244897,1224.4850000151225,-0.06877260844391905 +244898,1224.4900000151226,-0.06877291741216783 +244899,1224.4950000151227,-0.06877322624656669 +244900,1224.5000000151229,-0.0687735349471765 +244901,1224.505000015123,-0.06877384351405808 +244902,1224.510000015123,-0.0687741519472722 +244903,1224.5150000151232,-0.06877446024687962 +244904,1224.5200000151233,-0.06877476841294108 +244905,1224.5250000151234,-0.06877507644551725 +244906,1224.5300000151235,-0.06877538434466882 +244907,1224.5350000151236,-0.06877569211045637 +244908,1224.5400000151237,-0.06877599974294052 +244909,1224.5450000151238,-0.06877630724218181 +244910,1224.550000015124,-0.0687766146082408 +244911,1224.555000015124,-0.068776921841178 +244912,1224.5600000151242,-0.06877722894105384 +244913,1224.5650000151243,-0.06877753590792876 +244914,1224.5700000151244,-0.06877784274186319 +244915,1224.5750000151245,-0.06877814944291746 +244916,1224.5800000151246,-0.06877845601115196 +244917,1224.5850000151247,-0.06877876244662695 +244918,1224.5900000151248,-0.06877906874940275 +244919,1224.595000015125,-0.06877937491953956 +244920,1224.600000015125,-0.06877968095709763 +244921,1224.6050000151251,-0.06877998686213713 +244922,1224.6100000151253,-0.0687802926347182 +244923,1224.6150000151254,-0.06878059827490098 +244924,1224.6200000151255,-0.06878090378274551 +244925,1224.6250000151256,-0.0687812091583119 +244926,1224.6300000151257,-0.06878151440166014 +244927,1224.6350000151258,-0.06878181951285021 +244928,1224.640000015126,-0.06878212449194213 +244929,1224.645000015126,-0.06878242933899577 +244930,1224.6500000151261,-0.06878273405407104 +244931,1224.6550000151262,-0.06878303863722782 +244932,1224.6600000151263,-0.06878334308852595 +244933,1224.6650000151265,-0.06878364740802519 +244934,1224.6700000151266,-0.06878395159578536 +244935,1224.6750000151267,-0.06878425565186617 +244936,1224.6800000151268,-0.06878455957632736 +244937,1224.685000015127,-0.06878486336922857 +244938,1224.690000015127,-0.06878516703062945 +244939,1224.695000015127,-0.06878547056058965 +244940,1224.7000000151272,-0.06878577395916873 +244941,1224.7050000151273,-0.06878607722642623 +244942,1224.7100000151274,-0.0687863803624217 +244943,1224.7150000151275,-0.06878668336721461 +244944,1224.7200000151277,-0.0687869862408644 +244945,1224.7250000151278,-0.06878728898343055 +244946,1224.7300000151279,-0.06878759159497241 +244947,1224.735000015128,-0.06878789407554936 +244948,1224.740000015128,-0.06878819642522074 +244949,1224.7450000151282,-0.06878849864404586 +244950,1224.7500000151283,-0.06878880073208397 +244951,1224.7550000151284,-0.06878910268939432 +244952,1224.7600000151285,-0.06878940451603613 +244953,1224.7650000151286,-0.06878970621206855 +244954,1224.7700000151287,-0.06879000777755076 +244955,1224.7750000151289,-0.06879030921254185 +244956,1224.780000015129,-0.06879061051710095 +244957,1224.785000015129,-0.06879091169128707 +244958,1224.7900000151292,-0.06879121273515923 +244959,1224.7950000151293,-0.06879151364877646 +244960,1224.8000000151294,-0.0687918144321977 +244961,1224.8050000151295,-0.06879211508548189 +244962,1224.8100000151296,-0.06879241560868792 +244963,1224.8150000151297,-0.06879271600187467 +244964,1224.8200000151298,-0.06879301626510097 +244965,1224.82500001513,-0.06879331639842562 +244966,1224.83000001513,-0.06879361640190741 +244967,1224.8350000151302,-0.0687939162756051 +244968,1224.8400000151303,-0.06879421601957739 +244969,1224.8450000151304,-0.06879451563388297 +244970,1224.8500000151305,-0.06879481511858049 +244971,1224.8550000151306,-0.06879511447372857 +244972,1224.8600000151307,-0.06879541369938583 +244973,1224.8650000151308,-0.06879571279561078 +244974,1224.870000015131,-0.068796011762462 +244975,1224.875000015131,-0.06879631059999798 +244976,1224.8800000151311,-0.06879660930827719 +244977,1224.8850000151313,-0.06879690788735805 +244978,1224.8900000151314,-0.068797206337299 +244979,1224.8950000151315,-0.06879750465815838 +244980,1224.9000000151316,-0.0687978028499946 +244981,1224.9050000151317,-0.06879810091286592 +244982,1224.9100000151318,-0.06879839884683067 +244983,1224.915000015132,-0.06879869665194707 +244984,1224.920000015132,-0.06879899432827337 +244985,1224.9250000151321,-0.06879929187586777 +244986,1224.9300000151322,-0.06879958929478842 +244987,1224.9350000151323,-0.06879988658509346 +244988,1224.9400000151325,-0.06880018374684102 +244989,1224.9450000151326,-0.06880048078008913 +244990,1224.9500000151327,-0.06880077768489588 +244991,1224.9550000151328,-0.06880107446131926 +244992,1224.960000015133,-0.06880137110941727 +244993,1224.965000015133,-0.06880166762924783 +244994,1224.970000015133,-0.06880196402086891 +244995,1224.9750000151332,-0.06880226028433838 +244996,1224.9800000151333,-0.0688025564197141 +244997,1224.9850000151334,-0.0688028524270539 +244998,1224.9900000151335,-0.06880314830641561 +244999,1224.9950000151337,-0.06880344405785697 +245000,1225.0000000151338,-0.06880373968143576 +245001,1225.0050000151339,-0.06880403517720968 +245002,1225.010000015134,-0.06880433054523638 +245003,1225.015000015134,-0.06880462578557356 +245004,1225.0200000151342,-0.06880492089827882 +245005,1225.0250000151343,-0.06880521588340976 +245006,1225.0300000151344,-0.06880551074102394 +245007,1225.0350000151345,-0.06880580547117889 +245008,1225.0400000151346,-0.06880610007393212 +245009,1225.0450000151347,-0.06880639454934108 +245010,1225.0500000151349,-0.06880668889746325 +245011,1225.055000015135,-0.06880698311835602 +245012,1225.060000015135,-0.06880727721207677 +245013,1225.0650000151352,-0.06880757117868289 +245014,1225.0700000151353,-0.06880786501823165 +245015,1225.0750000151354,-0.06880815873078039 +245016,1225.0800000151355,-0.06880845231638635 +245017,1225.0850000151356,-0.06880874577510677 +245018,1225.0900000151357,-0.06880903910699886 +245019,1225.0950000151358,-0.06880933231211978 +245020,1225.100000015136,-0.0688096253905267 +245021,1225.105000015136,-0.0688099183422767 +245022,1225.1100000151362,-0.06881021116742692 +245023,1225.1150000151363,-0.06881050386603436 +245024,1225.1200000151364,-0.06881079643815609 +245025,1225.1250000151365,-0.06881108888384908 +245026,1225.1300000151366,-0.06881138120317032 +245027,1225.1350000151367,-0.06881167339617672 +245028,1225.1400000151368,-0.0688119654629252 +245029,1225.145000015137,-0.06881225740347266 +245030,1225.150000015137,-0.06881254921787591 +245031,1225.1550000151371,-0.06881284090619182 +245032,1225.1600000151373,-0.06881313246847712 +245033,1225.1650000151374,-0.06881342390478862 +245034,1225.1700000151375,-0.06881371521518304 +245035,1225.1750000151376,-0.06881400639971706 +245036,1225.1800000151377,-0.06881429745844737 +245037,1225.1850000151378,-0.06881458839143062 +245038,1225.190000015138,-0.06881487919872342 +245039,1225.195000015138,-0.06881516988038235 +245040,1225.2000000151381,-0.06881546043646396 +245041,1225.2050000151382,-0.06881575086702478 +245042,1225.2100000151383,-0.0688160411721213 +245043,1225.2150000151385,-0.06881633135181 +245044,1225.2200000151386,-0.06881662140614733 +245045,1225.2250000151387,-0.06881691133518968 +245046,1225.2300000151388,-0.06881720113899342 +245047,1225.235000015139,-0.06881749081761493 +245048,1225.240000015139,-0.0688177803711105 +245049,1225.245000015139,-0.06881806979953645 +245050,1225.2500000151392,-0.06881835910294902 +245051,1225.2550000151393,-0.06881864828140445 +245052,1225.2600000151394,-0.06881893733495895 +245053,1225.2650000151395,-0.06881922626366868 +245054,1225.2700000151397,-0.0688195150675898 +245055,1225.2750000151398,-0.06881980374677843 +245056,1225.2800000151399,-0.06882009230129066 +245057,1225.28500001514,-0.06882038073118255 +245058,1225.29000001514,-0.06882066903651012 +245059,1225.2950000151402,-0.06882095721732936 +245060,1225.3000000151403,-0.06882124527369628 +245061,1225.3050000151404,-0.0688215332056668 +245062,1225.3100000151405,-0.06882182101329683 +245063,1225.3150000151406,-0.06882210869664226 +245064,1225.3200000151407,-0.06882239625575895 +245065,1225.3250000151409,-0.06882268369070271 +245066,1225.330000015141,-0.06882297100152938 +245067,1225.335000015141,-0.0688232581882947 +245068,1225.3400000151412,-0.06882354525105441 +245069,1225.3450000151413,-0.06882383218986424 +245070,1225.3500000151414,-0.06882411900477985 +245071,1225.3550000151415,-0.0688244056958569 +245072,1225.3600000151416,-0.06882469226315104 +245073,1225.3650000151417,-0.06882497870671785 +245074,1225.3700000151418,-0.06882526502661289 +245075,1225.375000015142,-0.0688255512228917 +245076,1225.380000015142,-0.06882583729560982 +245077,1225.3850000151422,-0.0688261232448227 +245078,1225.3900000151423,-0.06882640907058582 +245079,1225.3950000151424,-0.0688266947729546 +245080,1225.4000000151425,-0.06882698035198442 +245081,1225.4050000151426,-0.06882726580773067 +245082,1225.4100000151427,-0.06882755114024867 +245083,1225.4150000151428,-0.06882783634959375 +245084,1225.420000015143,-0.06882812143582116 +245085,1225.425000015143,-0.06882840639898619 +245086,1225.4300000151432,-0.06882869123914405 +245087,1225.4350000151433,-0.06882897595634996 +245088,1225.4400000151434,-0.06882926055065905 +245089,1225.4450000151435,-0.06882954502212649 +245090,1225.4500000151436,-0.06882982937080737 +245091,1225.4550000151437,-0.06883011359675678 +245092,1225.4600000151438,-0.06883039770002979 +245093,1225.465000015144,-0.06883068168068139 +245094,1225.470000015144,-0.06883096553876664 +245095,1225.4750000151441,-0.06883124927434045 +245096,1225.4800000151442,-0.0688315328874578 +245097,1225.4850000151444,-0.06883181637817358 +245098,1225.4900000151445,-0.0688320997465427 +245099,1225.4950000151446,-0.06883238299261998 +245100,1225.5000000151447,-0.06883266611646029 +245101,1225.5050000151448,-0.0688329491181184 +245102,1225.510000015145,-0.06883323199764908 +245103,1225.515000015145,-0.0688335147551071 +245104,1225.5200000151451,-0.06883379739054717 +245105,1225.5250000151452,-0.06883407990402396 +245106,1225.5300000151453,-0.06883436229559213 +245107,1225.5350000151454,-0.06883464456530633 +245108,1225.5400000151456,-0.06883492671322115 +245109,1225.5450000151457,-0.06883520873939118 +245110,1225.5500000151458,-0.06883549064387094 +245111,1225.5550000151459,-0.06883577242671497 +245112,1225.560000015146,-0.06883605408797776 +245113,1225.565000015146,-0.06883633562771377 +245114,1225.5700000151462,-0.06883661704597743 +245115,1225.5750000151463,-0.06883689834282317 +245116,1225.5800000151464,-0.06883717951830533 +245117,1225.5850000151465,-0.06883746057247828 +245118,1225.5900000151466,-0.06883774150539636 +245119,1225.5950000151468,-0.06883802231711382 +245120,1225.6000000151469,-0.06883830300768498 +245121,1225.605000015147,-0.06883858357716406 +245122,1225.610000015147,-0.06883886402560527 +245123,1225.6150000151472,-0.06883914435306278 +245124,1225.6200000151473,-0.06883942455959077 +245125,1225.6250000151474,-0.06883970464524335 +245126,1225.6300000151475,-0.06883998461007462 +245127,1225.6350000151476,-0.06884026445413868 +245128,1225.6400000151477,-0.06884054417748955 +245129,1225.6450000151478,-0.06884082378018123 +245130,1225.650000015148,-0.06884110326226776 +245131,1225.655000015148,-0.06884138262380307 +245132,1225.6600000151482,-0.06884166186484109 +245133,1225.6650000151483,-0.06884194098543572 +245134,1225.6700000151484,-0.06884221998564088 +245135,1225.6750000151485,-0.06884249886551037 +245136,1225.6800000151486,-0.06884277762509805 +245137,1225.6850000151487,-0.0688430562644577 +245138,1225.6900000151488,-0.0688433347836431 +245139,1225.695000015149,-0.06884361318270799 +245140,1225.700000015149,-0.06884389146170605 +245141,1225.7050000151492,-0.06884416962069101 +245142,1225.7100000151493,-0.06884444765971649 +245143,1225.7150000151494,-0.06884472557883617 +245144,1225.7200000151495,-0.0688450033781036 +245145,1225.7250000151496,-0.06884528105757239 +245146,1225.7300000151497,-0.06884555861729606 +245147,1225.7350000151498,-0.06884583605732818 +245148,1225.74000001515,-0.06884611337772217 +245149,1225.74500001515,-0.06884639057853158 +245150,1225.7500000151501,-0.06884666765980978 +245151,1225.7550000151502,-0.06884694462161021 +245152,1225.7600000151504,-0.06884722146398628 +245153,1225.7650000151505,-0.06884749818699129 +245154,1225.7700000151506,-0.0688477747906786 +245155,1225.7750000151507,-0.06884805127510152 +245156,1225.7800000151508,-0.0688483276403133 +245157,1225.785000015151,-0.06884860388636721 +245158,1225.790000015151,-0.06884888001331647 +245159,1225.7950000151511,-0.06884915602121428 +245160,1225.8000000151512,-0.06884943191011376 +245161,1225.8050000151513,-0.0688497076800681 +245162,1225.8100000151514,-0.06884998333113038 +245163,1225.8150000151516,-0.0688502588633537 +245164,1225.8200000151517,-0.06885053427679112 +245165,1225.8250000151518,-0.06885080957149566 +245166,1225.8300000151519,-0.06885108474752033 +245167,1225.835000015152,-0.0688513598049181 +245168,1225.840000015152,-0.06885163474374192 +245169,1225.8450000151522,-0.06885190956404472 +245170,1225.8500000151523,-0.06885218426587938 +245171,1225.8550000151524,-0.06885245884929879 +245172,1225.8600000151525,-0.06885273331435578 +245173,1225.8650000151526,-0.06885300766110315 +245174,1225.8700000151528,-0.0688532818895937 +245175,1225.8750000151529,-0.06885355599988019 +245176,1225.880000015153,-0.06885382999201535 +245177,1225.885000015153,-0.06885410386605188 +245178,1225.8900000151532,-0.06885437762204248 +245179,1225.8950000151533,-0.06885465126003977 +245180,1225.9000000151534,-0.06885492478009642 +245181,1225.9050000151535,-0.06885519818226497 +245182,1225.9100000151536,-0.06885547146659805 +245183,1225.9150000151537,-0.06885574463314817 +245184,1225.9200000151538,-0.06885601768196786 +245185,1225.925000015154,-0.0688562906131096 +245186,1225.930000015154,-0.06885656342662587 +245187,1225.9350000151542,-0.0688568361225691 +245188,1225.9400000151543,-0.0688571087009917 +245189,1225.9450000151544,-0.06885738116194604 +245190,1225.9500000151545,-0.0688576535054845 +245191,1225.9550000151546,-0.06885792573165943 +245192,1225.9600000151547,-0.06885819784052309 +245193,1225.9650000151548,-0.06885846983212779 +245194,1225.970000015155,-0.06885874170652576 +245195,1225.975000015155,-0.06885901346376921 +245196,1225.9800000151552,-0.06885928510391039 +245197,1225.9850000151553,-0.06885955662700143 +245198,1225.9900000151554,-0.06885982803309447 +245199,1225.9950000151555,-0.06886009932224166 +245200,1226.0000000151556,-0.06886037049449506 +245201,1226.0050000151557,-0.06886064154990676 +245202,1226.0100000151558,-0.06886091248852878 +245203,1226.015000015156,-0.06886118331041316 +245204,1226.020000015156,-0.06886145401561186 +245205,1226.0250000151561,-0.06886172460417683 +245206,1226.0300000151562,-0.06886199507616003 +245207,1226.0350000151564,-0.06886226543161335 +245208,1226.0400000151565,-0.06886253567058867 +245209,1226.0450000151566,-0.06886280579313786 +245210,1226.0500000151567,-0.06886307579931272 +245211,1226.0550000151568,-0.06886334568916508 +245212,1226.060000015157,-0.06886361546274668 +245213,1226.065000015157,-0.0688638851201093 +245214,1226.0700000151571,-0.06886415466130466 +245215,1226.0750000151572,-0.06886442408638442 +245216,1226.0800000151573,-0.06886469339540029 +245217,1226.0850000151574,-0.06886496258840388 +245218,1226.0900000151576,-0.06886523166544684 +245219,1226.0950000151577,-0.06886550062658073 +245220,1226.1000000151578,-0.06886576947185713 +245221,1226.1050000151579,-0.06886603820132758 +245222,1226.110000015158,-0.06886630681504359 +245223,1226.115000015158,-0.06886657531305664 +245224,1226.1200000151582,-0.06886684369541818 +245225,1226.1250000151583,-0.06886711196217966 +245226,1226.1300000151584,-0.0688673801133925 +245227,1226.1350000151585,-0.06886764814910805 +245228,1226.1400000151586,-0.06886791606937769 +245229,1226.1450000151588,-0.06886818387425273 +245230,1226.1500000151589,-0.06886845156378447 +245231,1226.155000015159,-0.06886871913802423 +245232,1226.160000015159,-0.06886898659702322 +245233,1226.1650000151592,-0.06886925394083265 +245234,1226.1700000151593,-0.06886952116950376 +245235,1226.1750000151594,-0.06886978828308771 +245236,1226.1800000151595,-0.06887005528163563 +245237,1226.1850000151596,-0.06887032216519867 +245238,1226.1900000151597,-0.0688705889338279 +245239,1226.1950000151598,-0.06887085558757441 +245240,1226.20000001516,-0.06887112212648923 +245241,1226.20500001516,-0.06887138855062337 +245242,1226.2100000151602,-0.06887165486002783 +245243,1226.2150000151603,-0.0688719210547536 +245244,1226.2200000151604,-0.06887218713485158 +245245,1226.2250000151605,-0.0688724531003727 +245246,1226.2300000151606,-0.06887271895136785 +245247,1226.2350000151607,-0.0688729846878879 +245248,1226.2400000151608,-0.06887325030998366 +245249,1226.245000015161,-0.06887351581770598 +245250,1226.250000015161,-0.06887378121110563 +245251,1226.2550000151612,-0.06887404649023336 +245252,1226.2600000151613,-0.0688743116551399 +245253,1226.2650000151614,-0.06887457670587596 +245254,1226.2700000151615,-0.06887484164249225 +245255,1226.2750000151616,-0.0688751064650394 +245256,1226.2800000151617,-0.06887537117356804 +245257,1226.2850000151618,-0.06887563576812879 +245258,1226.290000015162,-0.06887590024877223 +245259,1226.295000015162,-0.06887616461554891 +245260,1226.3000000151621,-0.06887642886850934 +245261,1226.3050000151622,-0.06887669300770405 +245262,1226.3100000151624,-0.0688769570331835 +245263,1226.3150000151625,-0.06887722094499815 +245264,1226.3200000151626,-0.06887748474319845 +245265,1226.3250000151627,-0.06887774842783476 +245266,1226.3300000151628,-0.06887801199895748 +245267,1226.335000015163,-0.06887827545661696 +245268,1226.340000015163,-0.0688785388008635 +245269,1226.3450000151631,-0.06887880203174743 +245270,1226.3500000151632,-0.06887906514931902 +245271,1226.3550000151633,-0.0688793281536285 +245272,1226.3600000151635,-0.06887959104472613 +245273,1226.3650000151636,-0.06887985382266205 +245274,1226.3700000151637,-0.06888011648748649 +245275,1226.3750000151638,-0.06888037903924957 +245276,1226.380000015164,-0.0688806414780014 +245277,1226.385000015164,-0.0688809038037921 +245278,1226.390000015164,-0.06888116601667173 +245279,1226.3950000151642,-0.06888142811669033 +245280,1226.4000000151643,-0.06888169010389794 +245281,1226.4050000151644,-0.06888195197834454 +245282,1226.4100000151645,-0.06888221374008012 +245283,1226.4150000151647,-0.0688824753891546 +245284,1226.4200000151648,-0.06888273692561789 +245285,1226.4250000151649,-0.06888299834951993 +245286,1226.430000015165,-0.06888325966091054 +245287,1226.435000015165,-0.06888352085983959 +245288,1226.4400000151652,-0.0688837819463569 +245289,1226.4450000151653,-0.06888404292051227 +245290,1226.4500000151654,-0.06888430378235547 +245291,1226.4550000151655,-0.06888456453193621 +245292,1226.4600000151656,-0.06888482516930423 +245293,1226.4650000151657,-0.06888508569450924 +245294,1226.4700000151659,-0.0688853461076009 +245295,1226.475000015166,-0.06888560640862883 +245296,1226.480000015166,-0.06888586659764268 +245297,1226.4850000151662,-0.06888612667469203 +245298,1226.4900000151663,-0.06888638663982644 +245299,1226.4950000151664,-0.06888664649309548 +245300,1226.5000000151665,-0.06888690623454863 +245301,1226.5050000151666,-0.06888716586423542 +245302,1226.5100000151667,-0.0688874253822053 +245303,1226.5150000151668,-0.0688876847885077 +245304,1226.520000015167,-0.06888794408319207 +245305,1226.525000015167,-0.06888820326630779 +245306,1226.5300000151672,-0.06888846233790423 +245307,1226.5350000151673,-0.06888872129803074 +245308,1226.5400000151674,-0.06888898014673661 +245309,1226.5450000151675,-0.06888923888407118 +245310,1226.5500000151676,-0.06888949751008369 +245311,1226.5550000151677,-0.0688897560248234 +245312,1226.5600000151678,-0.06889001442833952 +245313,1226.565000015168,-0.06889027272068124 +245314,1226.570000015168,-0.06889053090189774 +245315,1226.5750000151681,-0.06889078897203818 +245316,1226.5800000151683,-0.06889104693115167 +245317,1226.5850000151684,-0.0688913047792873 +245318,1226.5900000151685,-0.06889156251649414 +245319,1226.5950000151686,-0.06889182014282126 +245320,1226.6000000151687,-0.06889207765831766 +245321,1226.6050000151688,-0.06889233506303234 +245322,1226.610000015169,-0.06889259235701427 +245323,1226.615000015169,-0.06889284954031241 +245324,1226.6200000151691,-0.0688931066129757 +245325,1226.6250000151692,-0.06889336357505299 +245326,1226.6300000151693,-0.06889362042659321 +245327,1226.6350000151695,-0.06889387716764517 +245328,1226.6400000151696,-0.06889413379825773 +245329,1226.6450000151697,-0.06889439031847967 +245330,1226.6500000151698,-0.06889464672835977 +245331,1226.65500001517,-0.06889490302794676 +245332,1226.66000001517,-0.06889515921728942 +245333,1226.66500001517,-0.06889541529643642 +245334,1226.6700000151702,-0.06889567126543643 +245335,1226.6750000151703,-0.06889592712433813 +245336,1226.6800000151704,-0.06889618287319015 +245337,1226.6850000151705,-0.06889643851204107 +245338,1226.6900000151707,-0.06889669404093948 +245339,1226.6950000151708,-0.06889694945993395 +245340,1226.7000000151709,-0.06889720476907302 +245341,1226.705000015171,-0.06889745996840516 +245342,1226.710000015171,-0.06889771505797888 +245343,1226.7150000151712,-0.06889797003784266 +245344,1226.7200000151713,-0.0688982249080449 +245345,1226.7250000151714,-0.06889847966863402 +245346,1226.7300000151715,-0.06889873431965843 +245347,1226.7350000151716,-0.06889898886116647 +245348,1226.7400000151717,-0.06889924329320647 +245349,1226.7450000151719,-0.06889949761582677 +245350,1226.750000015172,-0.06889975182907562 +245351,1226.755000015172,-0.06890000593300134 +245352,1226.7600000151722,-0.06890025992765213 +245353,1226.7650000151723,-0.06890051381307623 +245354,1226.7700000151724,-0.06890076758932183 +245355,1226.7750000151725,-0.06890102125643709 +245356,1226.7800000151726,-0.06890127481447016 +245357,1226.7850000151727,-0.06890152826346915 +245358,1226.7900000151728,-0.06890178160348216 +245359,1226.795000015173,-0.06890203483455729 +245360,1226.800000015173,-0.06890228795674255 +245361,1226.8050000151732,-0.068902540970086 +245362,1226.8100000151733,-0.06890279387463562 +245363,1226.8150000151734,-0.0689030466704394 +245364,1226.8200000151735,-0.06890329935754527 +245365,1226.8250000151736,-0.06890355193600117 +245366,1226.8300000151737,-0.068903804405855 +245367,1226.8350000151738,-0.06890405676715466 +245368,1226.840000015174,-0.06890430901994798 +245369,1226.845000015174,-0.06890456116428283 +245370,1226.8500000151741,-0.06890481320020697 +245371,1226.8550000151743,-0.06890506512776823 +245372,1226.8600000151744,-0.06890531694701432 +245373,1226.8650000151745,-0.06890556865799304 +245374,1226.8700000151746,-0.06890582026075205 +245375,1226.8750000151747,-0.06890607175533907 +245376,1226.8800000151748,-0.06890632314180176 +245377,1226.885000015175,-0.06890657442018774 +245378,1226.890000015175,-0.06890682559054466 +245379,1226.8950000151751,-0.0689070766529201 +245380,1226.9000000151752,-0.06890732760736162 +245381,1226.9050000151753,-0.06890757845391679 +245382,1226.9100000151755,-0.06890782919263311 +245383,1226.9150000151756,-0.06890807982355808 +245384,1226.9200000151757,-0.0689083303467392 +245385,1226.9250000151758,-0.06890858076222389 +245386,1226.930000015176,-0.0689088310700596 +245387,1226.935000015176,-0.06890908127029374 +245388,1226.940000015176,-0.06890933136297367 +245389,1226.9450000151762,-0.06890958134814676 +245390,1226.9500000151763,-0.06890983122586035 +245391,1226.9550000151764,-0.06891008099616172 +245392,1226.9600000151765,-0.0689103306590982 +245393,1226.9650000151767,-0.06891058021471701 +245394,1226.9700000151768,-0.0689108296630654 +245395,1226.9750000151769,-0.06891107900419059 +245396,1226.980000015177,-0.0689113282381398 +245397,1226.985000015177,-0.06891157736496015 +245398,1226.9900000151772,-0.06891182638469881 +245399,1226.9950000151773,-0.06891207529740291 +245400,1227.0000000151774,-0.06891232410311954 +245401,1227.0050000151775,-0.06891257280189576 +245402,1227.0100000151776,-0.06891282139377865 +245403,1227.0150000151777,-0.06891306987881521 +245404,1227.0200000151779,-0.06891331825705245 +245405,1227.025000015178,-0.06891356652853736 +245406,1227.030000015178,-0.06891381469331688 +245407,1227.0350000151782,-0.06891406275143797 +245408,1227.0400000151783,-0.06891431070294751 +245409,1227.0450000151784,-0.06891455854789243 +245410,1227.0500000151785,-0.06891480628631955 +245411,1227.0550000151786,-0.06891505391827572 +245412,1227.0600000151787,-0.06891530144380777 +245413,1227.0650000151788,-0.06891554886296249 +245414,1227.070000015179,-0.06891579617578664 +245415,1227.075000015179,-0.06891604338232697 +245416,1227.0800000151792,-0.06891629048263023 +245417,1227.0850000151793,-0.06891653747674309 +245418,1227.0900000151794,-0.06891678436471224 +245419,1227.0950000151795,-0.06891703114658433 +245420,1227.1000000151796,-0.068917277822406 +245421,1227.1050000151797,-0.06891752439222386 +245422,1227.1100000151798,-0.06891777085608446 +245423,1227.11500001518,-0.0689180172140344 +245424,1227.12000001518,-0.06891826346612019 +245425,1227.1250000151801,-0.06891850961238838 +245426,1227.1300000151803,-0.06891875565288542 +245427,1227.1350000151804,-0.06891900158765782 +245428,1227.1400000151805,-0.068919247416752 +245429,1227.1450000151806,-0.06891949314021438 +245430,1227.1500000151807,-0.06891973875809139 +245431,1227.1550000151808,-0.06891998427042936 +245432,1227.160000015181,-0.0689202296772747 +245433,1227.165000015181,-0.06892047497867368 +245434,1227.1700000151811,-0.06892072017467264 +245435,1227.1750000151812,-0.06892096526531787 +245436,1227.1800000151813,-0.0689212102506556 +245437,1227.1850000151815,-0.06892145513073211 +245438,1227.1900000151816,-0.0689216999055936 +245439,1227.1950000151817,-0.06892194457528625 +245440,1227.2000000151818,-0.06892218913985625 +245441,1227.205000015182,-0.06892243359934971 +245442,1227.210000015182,-0.06892267795381281 +245443,1227.215000015182,-0.0689229222032916 +245444,1227.2200000151822,-0.0689231663478322 +245445,1227.2250000151823,-0.06892341038748062 +245446,1227.2300000151824,-0.06892365432228291 +245447,1227.2350000151825,-0.06892389815228511 +245448,1227.2400000151827,-0.06892414187753317 +245449,1227.2450000151828,-0.06892438549807305 +245450,1227.2500000151829,-0.06892462901395072 +245451,1227.255000015183,-0.06892487242521209 +245452,1227.260000015183,-0.06892511573190303 +245453,1227.2650000151832,-0.06892535893406945 +245454,1227.2700000151833,-0.06892560203175718 +245455,1227.2750000151834,-0.06892584502501205 +245456,1227.2800000151835,-0.06892608791387986 +245457,1227.2850000151836,-0.0689263306984064 +245458,1227.2900000151838,-0.06892657337863742 +245459,1227.2950000151839,-0.06892681595461866 +245460,1227.300000015184,-0.06892705842639583 +245461,1227.305000015184,-0.06892730079401463 +245462,1227.3100000151842,-0.06892754305752072 +245463,1227.3150000151843,-0.06892778521695976 +245464,1227.3200000151844,-0.06892802727237736 +245465,1227.3250000151845,-0.06892826922381913 +245466,1227.3300000151846,-0.06892851107133063 +245467,1227.3350000151847,-0.06892875281495743 +245468,1227.3400000151848,-0.06892899445474507 +245469,1227.345000015185,-0.06892923599073905 +245470,1227.350000015185,-0.06892947742298484 +245471,1227.3550000151852,-0.06892971875152794 +245472,1227.3600000151853,-0.06892995997641377 +245473,1227.3650000151854,-0.06893020109768776 +245474,1227.3700000151855,-0.0689304421153953 +245475,1227.3750000151856,-0.06893068302958177 +245476,1227.3800000151857,-0.06893092384029252 +245477,1227.3850000151858,-0.06893116454757289 +245478,1227.390000015186,-0.06893140515146819 +245479,1227.395000015186,-0.06893164565202367 +245480,1227.4000000151862,-0.06893188604928464 +245481,1227.4050000151863,-0.06893212634329632 +245482,1227.4100000151864,-0.06893236653410394 +245483,1227.4150000151865,-0.06893260662175267 +245484,1227.4200000151866,-0.06893284660628769 +245485,1227.4250000151867,-0.06893308648775419 +245486,1227.4300000151868,-0.06893332626619725 +245487,1227.435000015187,-0.068933565941662 +245488,1227.440000015187,-0.06893380551419352 +245489,1227.4450000151871,-0.06893404498383689 +245490,1227.4500000151872,-0.06893428435063712 +245491,1227.4550000151874,-0.06893452361463924 +245492,1227.4600000151875,-0.06893476277588825 +245493,1227.4650000151876,-0.06893500183442912 +245494,1227.4700000151877,-0.0689352407903068 +245495,1227.4750000151878,-0.06893547964356621 +245496,1227.480000015188,-0.06893571839425228 +245497,1227.485000015188,-0.06893595704240989 +245498,1227.4900000151881,-0.06893619558808388 +245499,1227.4950000151882,-0.06893643403131909 +245500,1227.5000000151883,-0.06893667237216038 +245501,1227.5050000151884,-0.0689369106106525 +245502,1227.5100000151886,-0.06893714874684025 +245503,1227.5150000151887,-0.06893738678076838 +245504,1227.5200000151888,-0.0689376247124816 +245505,1227.5250000151889,-0.06893786254202465 +245506,1227.530000015189,-0.06893810026944218 +245507,1227.535000015189,-0.06893833789477886 +245508,1227.5400000151892,-0.06893857541807935 +245509,1227.5450000151893,-0.06893881283938827 +245510,1227.5500000151894,-0.0689390501587502 +245511,1227.5550000151895,-0.06893928737620972 +245512,1227.5600000151896,-0.06893952449181139 +245513,1227.5650000151898,-0.06893976150559973 +245514,1227.5700000151899,-0.06893999841761926 +245515,1227.57500001519,-0.06894023522791447 +245516,1227.58000001519,-0.06894047193652982 +245517,1227.5850000151902,-0.06894070854350975 +245518,1227.5900000151903,-0.0689409450488987 +245519,1227.5950000151904,-0.06894118145274104 +245520,1227.6000000151905,-0.0689414177550812 +245521,1227.6050000151906,-0.06894165395596347 +245522,1227.6100000151907,-0.0689418900554322 +245523,1227.6150000151908,-0.06894212605353175 +245524,1227.620000015191,-0.06894236195030638 +245525,1227.625000015191,-0.06894259774580035 +245526,1227.6300000151912,-0.06894283344005792 +245527,1227.6350000151913,-0.06894306903312329 +245528,1227.6400000151914,-0.0689433045250407 +245529,1227.6450000151915,-0.06894353991585432 +245530,1227.6500000151916,-0.0689437752056083 +245531,1227.6550000151917,-0.06894401039434678 +245532,1227.6600000151918,-0.06894424548211389 +245533,1227.665000015192,-0.0689444804689537 +245534,1227.670000015192,-0.0689447153549103 +245535,1227.6750000151922,-0.06894495014002774 +245536,1227.6800000151923,-0.06894518482435007 +245537,1227.6850000151924,-0.06894541940792126 +245538,1227.6900000151925,-0.06894565389078533 +245539,1227.6950000151926,-0.06894588827298621 +245540,1227.7000000151927,-0.06894612255456788 +245541,1227.7050000151928,-0.06894635673557424 +245542,1227.710000015193,-0.0689465908160492 +245543,1227.715000015193,-0.06894682479603663 +245544,1227.7200000151931,-0.06894705867558037 +245545,1227.7250000151932,-0.06894729245472431 +245546,1227.7300000151934,-0.06894752613351221 +245547,1227.7350000151935,-0.06894775971198788 +245548,1227.7400000151936,-0.06894799319019511 +245549,1227.7450000151937,-0.06894822656817762 +245550,1227.7500000151938,-0.06894845984597917 +245551,1227.755000015194,-0.06894869302364341 +245552,1227.760000015194,-0.06894892610121409 +245553,1227.7650000151941,-0.06894915907873483 +245554,1227.7700000151942,-0.0689493919562493 +245555,1227.7750000151943,-0.0689496247338011 +245556,1227.7800000151944,-0.06894985741143383 +245557,1227.7850000151946,-0.0689500899891911 +245558,1227.7900000151947,-0.06895032246711642 +245559,1227.7950000151948,-0.06895055484525335 +245560,1227.8000000151949,-0.0689507871236454 +245561,1227.805000015195,-0.06895101930233606 +245562,1227.810000015195,-0.0689512513813688 +245563,1227.8150000151952,-0.06895148336078707 +245564,1227.8200000151953,-0.06895171524063431 +245565,1227.8250000151954,-0.06895194702095392 +245566,1227.8300000151955,-0.06895217870178928 +245567,1227.8350000151956,-0.06895241028318376 +245568,1227.8400000151958,-0.06895264176518069 +245569,1227.8450000151959,-0.06895287314782342 +245570,1227.850000015196,-0.06895310443115521 +245571,1227.855000015196,-0.06895333561521938 +245572,1227.8600000151962,-0.06895356670005916 +245573,1227.8650000151963,-0.0689537976857178 +245574,1227.8700000151964,-0.06895402857223852 +245575,1227.8750000151965,-0.0689542593596645 +245576,1227.8800000151966,-0.06895449004803893 +245577,1227.8850000151967,-0.06895472063740493 +245578,1227.8900000151968,-0.06895495112780567 +245579,1227.895000015197,-0.06895518151928426 +245580,1227.900000015197,-0.06895541181188375 +245581,1227.9050000151972,-0.06895564200564724 +245582,1227.9100000151973,-0.06895587210061778 +245583,1227.9150000151974,-0.06895610209683838 +245584,1227.9200000151975,-0.06895633199435204 +245585,1227.9250000151976,-0.06895656179320175 +245586,1227.9300000151977,-0.0689567914934305 +245587,1227.9350000151978,-0.06895702109508117 +245588,1227.940000015198,-0.06895725059819674 +245589,1227.945000015198,-0.06895748000282008 +245590,1227.9500000151982,-0.06895770930899409 +245591,1227.9550000151983,-0.06895793851676159 +245592,1227.9600000151984,-0.06895816762616545 +245593,1227.9650000151985,-0.06895839663724847 +245594,1227.9700000151986,-0.06895862555005346 +245595,1227.9750000151987,-0.06895885436462316 +245596,1227.9800000151988,-0.06895908308100036 +245597,1227.985000015199,-0.06895931169922777 +245598,1227.990000015199,-0.06895954021934811 +245599,1227.9950000151991,-0.06895976864140407 +245600,1228.0000000151992,-0.06895999696543831 +245601,1228.0050000151994,-0.06896022519149349 +245602,1228.0100000151995,-0.06896045331961224 +245603,1228.0150000151996,-0.06896068134983716 +245604,1228.0200000151997,-0.06896090928221082 +245605,1228.0250000151998,-0.0689611371167758 +245606,1228.0300000152,-0.06896136485357465 +245607,1228.0350000152,-0.06896159249264988 +245608,1228.0400000152001,-0.06896182003404401 +245609,1228.0450000152002,-0.06896204747779952 +245610,1228.0500000152003,-0.06896227482395885 +245611,1228.0550000152004,-0.06896250207256445 +245612,1228.0600000152006,-0.06896272922365874 +245613,1228.0650000152007,-0.06896295627728413 +245614,1228.0700000152008,-0.068963183233483 +245615,1228.0750000152009,-0.06896341009229769 +245616,1228.080000015201,-0.06896363685377052 +245617,1228.085000015201,-0.06896386351794387 +245618,1228.0900000152012,-0.06896409008485997 +245619,1228.0950000152013,-0.06896431655456114 +245620,1228.1000000152014,-0.0689645429270896 +245621,1228.1050000152015,-0.0689647692024876 +245622,1228.1100000152016,-0.06896499538079737 +245623,1228.1150000152018,-0.06896522146206106 +245624,1228.1200000152019,-0.06896544744632088 +245625,1228.125000015202,-0.06896567333361897 +245626,1228.130000015202,-0.06896589912399745 +245627,1228.1350000152022,-0.06896612481749845 +245628,1228.1400000152023,-0.06896635041416403 +245629,1228.1450000152024,-0.06896657591403628 +245630,1228.1500000152025,-0.06896680131715725 +245631,1228.1550000152026,-0.06896702662356896 +245632,1228.1600000152027,-0.06896725183331343 +245633,1228.1650000152028,-0.06896747694643263 +245634,1228.170000015203,-0.06896770196296853 +245635,1228.175000015203,-0.0689679268829631 +245636,1228.1800000152032,-0.06896815170645823 +245637,1228.1850000152033,-0.06896837643349585 +245638,1228.1900000152034,-0.06896860106411784 +245639,1228.1950000152035,-0.06896882559836605 +245640,1228.2000000152036,-0.06896905003628236 +245641,1228.2050000152037,-0.06896927437790855 +245642,1228.2100000152038,-0.06896949862328644 +245643,1228.215000015204,-0.06896972277245783 +245644,1228.220000015204,-0.06896994682546446 +245645,1228.2250000152042,-0.06897017078234809 +245646,1228.2300000152043,-0.06897039464315043 +245647,1228.2350000152044,-0.06897061840791319 +245648,1228.2400000152045,-0.06897084207667803 +245649,1228.2450000152046,-0.06897106564948663 +245650,1228.2500000152047,-0.06897128912638065 +245651,1228.2550000152048,-0.06897151250740167 +245652,1228.260000015205,-0.06897173579259132 +245653,1228.265000015205,-0.06897195898199117 +245654,1228.2700000152051,-0.06897218207564276 +245655,1228.2750000152053,-0.06897240507358766 +245656,1228.2800000152054,-0.06897262797586738 +245657,1228.2850000152055,-0.06897285078252342 +245658,1228.2900000152056,-0.06897307349359726 +245659,1228.2950000152057,-0.06897329610913035 +245660,1228.3000000152058,-0.06897351862916414 +245661,1228.305000015206,-0.06897374105374005 +245662,1228.310000015206,-0.06897396338289946 +245663,1228.3150000152061,-0.06897418561668375 +245664,1228.3200000152062,-0.0689744077551343 +245665,1228.3250000152063,-0.06897462979829246 +245666,1228.3300000152065,-0.06897485174619951 +245667,1228.3350000152066,-0.06897507359889676 +245668,1228.3400000152067,-0.06897529535642548 +245669,1228.3450000152068,-0.06897551701882695 +245670,1228.350000015207,-0.06897573858614238 +245671,1228.355000015207,-0.06897596005841303 +245672,1228.360000015207,-0.06897618143568005 +245673,1228.3650000152072,-0.06897640271798464 +245674,1228.3700000152073,-0.06897662390536798 +245675,1228.3750000152074,-0.06897684499787117 +245676,1228.3800000152075,-0.06897706599553534 +245677,1228.3850000152077,-0.0689772868984016 +245678,1228.3900000152078,-0.06897750770651102 +245679,1228.3950000152079,-0.06897772841990465 +245680,1228.400000015208,-0.06897794903862353 +245681,1228.405000015208,-0.0689781695627087 +245682,1228.4100000152082,-0.06897838999220113 +245683,1228.4150000152083,-0.06897861032714181 +245684,1228.4200000152084,-0.06897883056757169 +245685,1228.4250000152085,-0.06897905071353172 +245686,1228.4300000152086,-0.06897927076506283 +245687,1228.4350000152087,-0.06897949072220588 +245688,1228.4400000152089,-0.0689797105850018 +245689,1228.445000015209,-0.06897993035349141 +245690,1228.450000015209,-0.06898015002771557 +245691,1228.4550000152092,-0.06898036960771507 +245692,1228.4600000152093,-0.06898058909353076 +245693,1228.4650000152094,-0.06898080848520337 +245694,1228.4700000152095,-0.0689810277827737 +245695,1228.4750000152096,-0.06898124698628245 +245696,1228.4800000152097,-0.06898146609577038 +245697,1228.4850000152098,-0.06898168511127817 +245698,1228.49000001521,-0.0689819040328465 +245699,1228.49500001521,-0.06898212286051604 +245700,1228.5000000152102,-0.06898234159432744 +245701,1228.5050000152103,-0.0689825602343213 +245702,1228.5100000152104,-0.06898277878053823 +245703,1228.5150000152105,-0.06898299723301882 +245704,1228.5200000152106,-0.06898321559180363 +245705,1228.5250000152107,-0.0689834338569332 +245706,1228.5300000152108,-0.06898365202844807 +245707,1228.535000015211,-0.06898387010638872 +245708,1228.540000015211,-0.06898408809079565 +245709,1228.5450000152111,-0.06898430598170933 +245710,1228.5500000152113,-0.06898452377917019 +245711,1228.5550000152114,-0.06898474148321868 +245712,1228.5600000152115,-0.06898495909389515 +245713,1228.5650000152116,-0.06898517661124007 +245714,1228.5700000152117,-0.06898539403529373 +245715,1228.5750000152118,-0.06898561136609653 +245716,1228.580000015212,-0.06898582860368879 +245717,1228.585000015212,-0.0689860457481108 +245718,1228.5900000152121,-0.06898626279940286 +245719,1228.5950000152122,-0.06898647975760523 +245720,1228.6000000152123,-0.06898669662275816 +245721,1228.6050000152125,-0.0689869133949019 +245722,1228.6100000152126,-0.06898713007407664 +245723,1228.6150000152127,-0.06898734666032261 +245724,1228.6200000152128,-0.06898756315367993 +245725,1228.625000015213,-0.06898777955418878 +245726,1228.630000015213,-0.06898799586188929 +245727,1228.635000015213,-0.06898821207682158 +245728,1228.6400000152132,-0.06898842819902574 +245729,1228.6450000152133,-0.06898864422854185 +245730,1228.6500000152134,-0.06898886016540998 +245731,1228.6550000152135,-0.06898907600967014 +245732,1228.6600000152137,-0.06898929176136234 +245733,1228.6650000152138,-0.0689895074205266 +245734,1228.6700000152139,-0.0689897229872029 +245735,1228.675000015214,-0.06898993846143121 +245736,1228.680000015214,-0.06899015384325144 +245737,1228.6850000152142,-0.06899036913270352 +245738,1228.6900000152143,-0.06899058432982735 +245739,1228.6950000152144,-0.06899079943466284 +245740,1228.7000000152145,-0.06899101444724981 +245741,1228.7050000152146,-0.06899122936762814 +245742,1228.7100000152147,-0.06899144419583765 +245743,1228.7150000152149,-0.06899165893191812 +245744,1228.720000015215,-0.06899187357590937 +245745,1228.725000015215,-0.06899208812785114 +245746,1228.7300000152152,-0.06899230258778319 +245747,1228.7350000152153,-0.06899251695574525 +245748,1228.7400000152154,-0.06899273123177702 +245749,1228.7450000152155,-0.06899294541591819 +245750,1228.7500000152156,-0.06899315950820843 +245751,1228.7550000152157,-0.06899337350868742 +245752,1228.7600000152158,-0.06899358741739478 +245753,1228.765000015216,-0.06899380123437011 +245754,1228.770000015216,-0.068994014959653 +245755,1228.7750000152162,-0.06899422859328304 +245756,1228.7800000152163,-0.06899444213529979 +245757,1228.7850000152164,-0.06899465558574279 +245758,1228.7900000152165,-0.06899486894465154 +245759,1228.7950000152166,-0.06899508221206556 +245760,1228.8000000152167,-0.0689952953880243 +245761,1228.8050000152168,-0.06899550847256726 +245762,1228.810000015217,-0.06899572146573385 +245763,1228.815000015217,-0.06899593436756352 +245764,1228.8200000152171,-0.06899614717809566 +245765,1228.8250000152173,-0.06899635989736966 +245766,1228.8300000152174,-0.06899657252542488 +245767,1228.8350000152175,-0.06899678506230067 +245768,1228.8400000152176,-0.06899699750803637 +245769,1228.8450000152177,-0.06899720986267127 +245770,1228.8500000152178,-0.06899742212624467 +245771,1228.855000015218,-0.06899763429879585 +245772,1228.860000015218,-0.06899784638036405 +245773,1228.8650000152181,-0.06899805837098852 +245774,1228.8700000152182,-0.06899827027070844 +245775,1228.8750000152183,-0.06899848207956305 +245776,1228.8800000152185,-0.0689986937975915 +245777,1228.8850000152186,-0.06899890542483296 +245778,1228.8900000152187,-0.06899911696132656 +245779,1228.8950000152188,-0.06899932840711144 +245780,1228.900000015219,-0.06899953976222668 +245781,1228.905000015219,-0.06899975102671137 +245782,1228.910000015219,-0.06899996220060459 +245783,1228.9150000152192,-0.06900017328394537 +245784,1228.9200000152193,-0.06900038427677273 +245785,1228.9250000152194,-0.06900059517912568 +245786,1228.9300000152195,-0.06900080599104323 +245787,1228.9350000152197,-0.06900101671256434 +245788,1228.9400000152198,-0.06900122734372795 +245789,1228.9450000152199,-0.06900143788457301 +245790,1228.95000001522,-0.06900164833513843 +245791,1228.95500001522,-0.0690018586954631 +245792,1228.9600000152202,-0.0690020689655859 +245793,1228.9650000152203,-0.0690022791455457 +245794,1228.9700000152204,-0.06900248923538133 +245795,1228.9750000152205,-0.06900269923513158 +245796,1228.9800000152206,-0.0690029091448353 +245797,1228.9850000152207,-0.06900311896453125 +245798,1228.9900000152209,-0.06900332869425822 +245799,1228.995000015221,-0.06900353833405493 +245800,1229.000000015221,-0.0690037478839601 +245801,1229.0050000152212,-0.06900395734401246 +245802,1229.0100000152213,-0.0690041667142507 +245803,1229.0150000152214,-0.06900437599471348 +245804,1229.0200000152215,-0.06900458518543946 +245805,1229.0250000152216,-0.06900479428646729 +245806,1229.0300000152217,-0.06900500329783557 +245807,1229.0350000152218,-0.0690052122195829 +245808,1229.040000015222,-0.06900542105174787 +245809,1229.045000015222,-0.06900562979436901 +245810,1229.0500000152222,-0.06900583844748491 +245811,1229.0550000152223,-0.06900604701113404 +245812,1229.0600000152224,-0.06900625548535495 +245813,1229.0650000152225,-0.06900646387018611 +245814,1229.0700000152226,-0.06900667216566599 +245815,1229.0750000152227,-0.06900688037183303 +245816,1229.0800000152228,-0.06900708848872569 +245817,1229.085000015223,-0.06900729651638234 +245818,1229.090000015223,-0.06900750445484141 +245819,1229.0950000152231,-0.06900771230414127 +245820,1229.1000000152233,-0.06900792006432026 +245821,1229.1050000152234,-0.06900812773541674 +245822,1229.1100000152235,-0.06900833531746901 +245823,1229.1150000152236,-0.06900854281051541 +245824,1229.1200000152237,-0.0690087502145942 +245825,1229.1250000152238,-0.06900895752974366 +245826,1229.130000015224,-0.06900916475600201 +245827,1229.135000015224,-0.06900937189340749 +245828,1229.1400000152241,-0.06900957894199833 +245829,1229.1450000152242,-0.06900978590181271 +245830,1229.1500000152244,-0.0690099927728888 +245831,1229.1550000152245,-0.06901019955526475 +245832,1229.1600000152246,-0.06901040624897872 +245833,1229.1650000152247,-0.06901061285406883 +245834,1229.1700000152248,-0.06901081937057316 +245835,1229.175000015225,-0.0690110257985298 +245836,1229.180000015225,-0.06901123213797682 +245837,1229.1850000152251,-0.06901143838895227 +245838,1229.1900000152252,-0.06901164455149417 +245839,1229.1950000152253,-0.06901185062564055 +245840,1229.2000000152254,-0.06901205661142937 +245841,1229.2050000152256,-0.06901226250889864 +245842,1229.2100000152257,-0.06901246831808627 +245843,1229.2150000152258,-0.06901267403903026 +245844,1229.2200000152259,-0.06901287967176847 +245845,1229.225000015226,-0.06901308521633884 +245846,1229.230000015226,-0.06901329067277924 +245847,1229.2350000152262,-0.06901349604112753 +245848,1229.2400000152263,-0.06901370132142157 +245849,1229.2450000152264,-0.06901390651369917 +245850,1229.2500000152265,-0.06901411161799816 +245851,1229.2550000152266,-0.06901431663435632 +245852,1229.2600000152268,-0.06901452156281145 +245853,1229.2650000152269,-0.06901472640340127 +245854,1229.270000015227,-0.06901493115616354 +245855,1229.275000015227,-0.06901513582113598 +245856,1229.2800000152272,-0.06901534039835629 +245857,1229.2850000152273,-0.06901554488786214 +245858,1229.2900000152274,-0.06901574928969123 +245859,1229.2950000152275,-0.06901595360388119 +245860,1229.3000000152276,-0.06901615783046965 +245861,1229.3050000152277,-0.0690163619694942 +245862,1229.3100000152278,-0.06901656602099247 +245863,1229.315000015228,-0.06901676998500203 +245864,1229.320000015228,-0.06901697386156043 +245865,1229.3250000152282,-0.06901717765070522 +245866,1229.3300000152283,-0.06901738135247391 +245867,1229.3350000152284,-0.06901758496690402 +245868,1229.3400000152285,-0.06901778849403303 +245869,1229.3450000152286,-0.0690179919338984 +245870,1229.3500000152287,-0.0690181952865376 +245871,1229.3550000152288,-0.06901839855198806 +245872,1229.360000015229,-0.06901860173028718 +245873,1229.365000015229,-0.06901880482147237 +245874,1229.3700000152292,-0.069019007825581 +245875,1229.3750000152293,-0.06901921074265044 +245876,1229.3800000152294,-0.06901941357271806 +245877,1229.3850000152295,-0.06901961631582113 +245878,1229.3900000152296,-0.069019818971997 +245879,1229.3950000152297,-0.06902002154128295 +245880,1229.4000000152298,-0.06902022402371626 +245881,1229.40500001523,-0.06902042641933416 +245882,1229.41000001523,-0.06902062872817392 +245883,1229.4150000152301,-0.06902083095027274 +245884,1229.4200000152302,-0.06902103308566783 +245885,1229.4250000152304,-0.06902123513439637 +245886,1229.4300000152305,-0.06902143709649554 +245887,1229.4350000152306,-0.06902163897200246 +245888,1229.4400000152307,-0.06902184076095429 +245889,1229.4450000152308,-0.06902204246338814 +245890,1229.450000015231,-0.06902224407934109 +245891,1229.455000015231,-0.06902244560885022 +245892,1229.4600000152311,-0.0690226470519526 +245893,1229.4650000152312,-0.06902284840868528 +245894,1229.4700000152313,-0.06902304967908526 +245895,1229.4750000152314,-0.06902325086318957 +245896,1229.4800000152316,-0.0690234519610352 +245897,1229.4850000152317,-0.06902365297265911 +245898,1229.4900000152318,-0.06902385389809826 +245899,1229.4950000152319,-0.06902405473738958 +245900,1229.500000015232,-0.06902425549057 +245901,1229.505000015232,-0.06902445615767643 +245902,1229.5100000152322,-0.06902465673874573 +245903,1229.5150000152323,-0.06902485723381478 +245904,1229.5200000152324,-0.06902505764292043 +245905,1229.5250000152325,-0.06902525796609951 +245906,1229.5300000152326,-0.06902545820338883 +245907,1229.5350000152328,-0.0690256583548252 +245908,1229.5400000152329,-0.0690258584204454 +245909,1229.545000015233,-0.06902605840028617 +245910,1229.550000015233,-0.06902625829438425 +245911,1229.5550000152332,-0.0690264581027764 +245912,1229.5600000152333,-0.06902665782549931 +245913,1229.5650000152334,-0.06902685746258967 +245914,1229.5700000152335,-0.06902705701408417 +245915,1229.5750000152336,-0.06902725648001945 +245916,1229.5800000152337,-0.06902745586043216 +245917,1229.5850000152338,-0.0690276551553589 +245918,1229.590000015234,-0.0690278543648363 +245919,1229.595000015234,-0.06902805348890094 +245920,1229.6000000152342,-0.06902825252758939 +245921,1229.6050000152343,-0.0690284514809382 +245922,1229.6100000152344,-0.06902865034898392 +245923,1229.6150000152345,-0.06902884913176303 +245924,1229.6200000152346,-0.06902904782931207 +245925,1229.6250000152347,-0.06902924644166751 +245926,1229.6300000152348,-0.0690294449688658 +245927,1229.635000015235,-0.0690296434109434 +245928,1229.640000015235,-0.06902984176793676 +245929,1229.6450000152352,-0.06903004003988227 +245930,1229.6500000152353,-0.06903023822681632 +245931,1229.6550000152354,-0.06903043632877533 +245932,1229.6600000152355,-0.06903063434579562 +245933,1229.6650000152356,-0.06903083227791355 +245934,1229.6700000152357,-0.06903103012516544 +245935,1229.6750000152358,-0.06903122788758762 +245936,1229.680000015236,-0.06903142556521635 +245937,1229.685000015236,-0.06903162315808795 +245938,1229.6900000152361,-0.06903182066623863 +245939,1229.6950000152362,-0.06903201808970466 +245940,1229.7000000152364,-0.06903221542852227 +245941,1229.7050000152365,-0.06903241268272764 +245942,1229.7100000152366,-0.06903260985235699 +245943,1229.7150000152367,-0.06903280693744647 +245944,1229.7200000152368,-0.06903300393803226 +245945,1229.725000015237,-0.06903320085415046 +245946,1229.730000015237,-0.06903339768583723 +245947,1229.7350000152371,-0.06903359443312866 +245948,1229.7400000152372,-0.06903379109606082 +245949,1229.7450000152373,-0.0690339876746698 +245950,1229.7500000152374,-0.06903418416899164 +245951,1229.7550000152376,-0.06903438057906239 +245952,1229.7600000152377,-0.06903457690491806 +245953,1229.7650000152378,-0.06903477314659465 +245954,1229.7700000152379,-0.06903496930412814 +245955,1229.775000015238,-0.06903516537755451 +245956,1229.780000015238,-0.0690353613669097 +245957,1229.7850000152382,-0.06903555727222965 +245958,1229.7900000152383,-0.06903575309355027 +245959,1229.7950000152384,-0.06903594883090745 +245960,1229.8000000152385,-0.06903614448433712 +245961,1229.8050000152386,-0.06903634005387509 +245962,1229.8100000152388,-0.06903653553955723 +245963,1229.8150000152389,-0.06903673094141935 +245964,1229.820000015239,-0.06903692625949731 +245965,1229.825000015239,-0.06903712149382686 +245966,1229.8300000152392,-0.0690373166444438 +245967,1229.8350000152393,-0.06903751171138392 +245968,1229.8400000152394,-0.06903770669468293 +245969,1229.8450000152395,-0.06903790159437656 +245970,1229.8500000152396,-0.06903809641050054 +245971,1229.8550000152397,-0.06903829114309057 +245972,1229.8600000152398,-0.0690384857921823 +245973,1229.86500001524,-0.06903868035781141 +245974,1229.87000001524,-0.06903887484001354 +245975,1229.8750000152402,-0.06903906923882434 +245976,1229.8800000152403,-0.06903926355427939 +245977,1229.8850000152404,-0.06903945778641431 +245978,1229.8900000152405,-0.06903965193526465 +245979,1229.8950000152406,-0.06903984600086599 +245980,1229.9000000152407,-0.06904003998325388 +245981,1229.9050000152408,-0.06904023388246383 +245982,1229.910000015241,-0.06904042769853135 +245983,1229.915000015241,-0.06904062143149195 +245984,1229.9200000152412,-0.0690408150813811 +245985,1229.9250000152413,-0.06904100864823426 +245986,1229.9300000152414,-0.06904120213208687 +245987,1229.9350000152415,-0.06904139553297435 +245988,1229.9400000152416,-0.06904158885093213 +245989,1229.9450000152417,-0.0690417820859956 +245990,1229.9500000152418,-0.0690419752382001 +245991,1229.955000015242,-0.06904216830758103 +245992,1229.960000015242,-0.06904236129417374 +245993,1229.9650000152421,-0.0690425541980135 +245994,1229.9700000152422,-0.06904274701913568 +245995,1229.9750000152424,-0.06904293975757554 +245996,1229.9800000152425,-0.06904313241336837 +245997,1229.9850000152426,-0.06904332498654943 +245998,1229.9900000152427,-0.06904351747715394 +245999,1229.9950000152428,-0.06904370988521716 +246000,1230.000000015243,-0.06904390221077426 +246001,1230.005000015243,-0.06904409445386048 +246002,1230.0100000152431,-0.06904428661451097 +246003,1230.0150000152432,-0.06904447869276088 +246004,1230.0200000152433,-0.06904467068864537 +246005,1230.0250000152434,-0.06904486260219955 +246006,1230.0300000152436,-0.06904505443345856 +246007,1230.0350000152437,-0.06904524618245746 +246008,1230.0400000152438,-0.06904543784923135 +246009,1230.0450000152439,-0.06904562943381529 +246010,1230.050000015244,-0.0690458209362443 +246011,1230.055000015244,-0.06904601235655342 +246012,1230.0600000152442,-0.06904620369477768 +246013,1230.0650000152443,-0.06904639495095205 +246014,1230.0700000152444,-0.06904658612511153 +246015,1230.0750000152445,-0.06904677721729104 +246016,1230.0800000152447,-0.06904696822752555 +246017,1230.0850000152448,-0.06904715915585 +246018,1230.0900000152449,-0.06904735000229928 +246019,1230.095000015245,-0.06904754076690832 +246020,1230.100000015245,-0.06904773144971196 +246021,1230.1050000152452,-0.06904792205074507 +246022,1230.1100000152453,-0.06904811257004252 +246023,1230.1150000152454,-0.06904830300763912 +246024,1230.1200000152455,-0.06904849336356968 +246025,1230.1250000152456,-0.06904868363786901 +246026,1230.1300000152457,-0.06904887383057187 +246027,1230.1350000152459,-0.06904906394171303 +246028,1230.140000015246,-0.06904925397132726 +246029,1230.145000015246,-0.06904944391944927 +246030,1230.1500000152462,-0.06904963378611378 +246031,1230.1550000152463,-0.06904982357135549 +246032,1230.1600000152464,-0.06905001327520909 +246033,1230.1650000152465,-0.06905020289770922 +246034,1230.1700000152466,-0.06905039243889054 +246035,1230.1750000152467,-0.0690505818987877 +246036,1230.1800000152468,-0.06905077127743531 +246037,1230.185000015247,-0.06905096057486795 +246038,1230.190000015247,-0.06905114979112024 +246039,1230.1950000152472,-0.06905133892622672 +246040,1230.2000000152473,-0.06905152798022195 +246041,1230.2050000152474,-0.06905171695314047 +246042,1230.2100000152475,-0.06905190584501679 +246043,1230.2150000152476,-0.06905209465588541 +246044,1230.2200000152477,-0.06905228338578084 +246045,1230.2250000152478,-0.06905247203473752 +246046,1230.230000015248,-0.06905266060278993 +246047,1230.235000015248,-0.06905284908997249 +246048,1230.2400000152481,-0.06905303749631962 +246049,1230.2450000152483,-0.06905322582186574 +246050,1230.2500000152484,-0.06905341406664524 +246051,1230.2550000152485,-0.06905360223069248 +246052,1230.2600000152486,-0.06905379031404182 +246053,1230.2650000152487,-0.0690539783167276 +246054,1230.2700000152488,-0.06905416623878417 +246055,1230.275000015249,-0.06905435408024582 +246056,1230.280000015249,-0.06905454184114683 +246057,1230.2850000152491,-0.06905472952152149 +246058,1230.2900000152492,-0.06905491712140405 +246059,1230.2950000152493,-0.06905510464082876 +246060,1230.3000000152495,-0.06905529207982986 +246061,1230.3050000152496,-0.06905547943844155 +246062,1230.3100000152497,-0.06905566671669804 +246063,1230.3150000152498,-0.06905585391463348 +246064,1230.32000001525,-0.06905604103228205 +246065,1230.32500001525,-0.06905622806967791 +246066,1230.33000001525,-0.06905641502685518 +246067,1230.3350000152502,-0.06905660190384798 +246068,1230.3400000152503,-0.06905678870069039 +246069,1230.3450000152504,-0.06905697541741652 +246070,1230.3500000152505,-0.06905716205406043 +246071,1230.3550000152507,-0.06905734861065617 +246072,1230.3600000152508,-0.06905753508723776 +246073,1230.3650000152509,-0.06905772148383926 +246074,1230.370000015251,-0.06905790780049463 +246075,1230.375000015251,-0.06905809403723788 +246076,1230.3800000152512,-0.06905828019410298 +246077,1230.3850000152513,-0.06905846627112387 +246078,1230.3900000152514,-0.06905865226833453 +246079,1230.3950000152515,-0.06905883818576886 +246080,1230.4000000152516,-0.06905902402346074 +246081,1230.4050000152517,-0.0690592097814441 +246082,1230.4100000152519,-0.06905939545975281 +246083,1230.415000015252,-0.06905958105842072 +246084,1230.420000015252,-0.06905976657748168 +246085,1230.4250000152522,-0.06905995201696952 +246086,1230.4300000152523,-0.06906013737691805 +246087,1230.4350000152524,-0.06906032265736108 +246088,1230.4400000152525,-0.06906050785833236 +246089,1230.4450000152526,-0.06906069297986568 +246090,1230.4500000152527,-0.06906087802199479 +246091,1230.4550000152528,-0.06906106298475341 +246092,1230.460000015253,-0.06906124786817526 +246093,1230.465000015253,-0.06906143267229405 +246094,1230.4700000152532,-0.06906161739714346 +246095,1230.4750000152533,-0.06906180204275716 +246096,1230.4800000152534,-0.06906198660916882 +246097,1230.4850000152535,-0.06906217109641206 +246098,1230.4900000152536,-0.06906235550452051 +246099,1230.4950000152537,-0.06906253983352778 +246100,1230.5000000152538,-0.06906272408346746 +246101,1230.505000015254,-0.06906290825437311 +246102,1230.510000015254,-0.06906309234627832 +246103,1230.5150000152541,-0.06906327635921661 +246104,1230.5200000152543,-0.06906346029322151 +246105,1230.5250000152544,-0.06906364414832655 +246106,1230.5300000152545,-0.06906382792456522 +246107,1230.5350000152546,-0.069064011621971 +246108,1230.5400000152547,-0.06906419524057734 +246109,1230.5450000152548,-0.06906437878041773 +246110,1230.550000015255,-0.06906456224152556 +246111,1230.555000015255,-0.06906474562393429 +246112,1230.5600000152551,-0.0690649289276773 +246113,1230.5650000152552,-0.06906511215278795 +246114,1230.5700000152553,-0.06906529529929965 +246115,1230.5750000152555,-0.06906547836724576 +246116,1230.5800000152556,-0.0690656613566596 +246117,1230.5850000152557,-0.06906584426757452 +246118,1230.5900000152558,-0.06906602710002381 +246119,1230.595000015256,-0.06906620985404076 +246120,1230.600000015256,-0.06906639252965864 +246121,1230.605000015256,-0.06906657512691075 +246122,1230.6100000152562,-0.06906675764583031 +246123,1230.6150000152563,-0.06906694008645056 +246124,1230.6200000152564,-0.06906712244880471 +246125,1230.6250000152565,-0.06906730473292598 +246126,1230.6300000152567,-0.06906748693884752 +246127,1230.6350000152568,-0.06906766906660254 +246128,1230.6400000152569,-0.06906785111622417 +246129,1230.645000015257,-0.06906803308774553 +246130,1230.650000015257,-0.06906821498119979 +246131,1230.6550000152572,-0.06906839679662002 +246132,1230.6600000152573,-0.06906857853403933 +246133,1230.6650000152574,-0.0690687601934908 +246134,1230.6700000152575,-0.06906894177500747 +246135,1230.6750000152576,-0.06906912327862241 +246136,1230.6800000152577,-0.06906930470436863 +246137,1230.6850000152579,-0.06906948605227917 +246138,1230.690000015258,-0.06906966732238701 +246139,1230.695000015258,-0.06906984851472514 +246140,1230.7000000152582,-0.06907002962932653 +246141,1230.7050000152583,-0.06907021066622411 +246142,1230.7100000152584,-0.06907039162545085 +246143,1230.7150000152585,-0.06907057250703967 +246144,1230.7200000152586,-0.06907075331102347 +246145,1230.7250000152587,-0.06907093403743512 +246146,1230.7300000152588,-0.06907111468630754 +246147,1230.735000015259,-0.06907129525767355 +246148,1230.740000015259,-0.06907147575156602 +246149,1230.7450000152592,-0.06907165616801779 +246150,1230.7500000152593,-0.06907183650706164 +246151,1230.7550000152594,-0.0690720167687304 +246152,1230.7600000152595,-0.06907219695305683 +246153,1230.7650000152596,-0.06907237706007373 +246154,1230.7700000152597,-0.06907255708981382 +246155,1230.7750000152598,-0.06907273704230986 +246156,1230.78000001526,-0.06907291691759457 +246157,1230.78500001526,-0.06907309671570065 +246158,1230.7900000152601,-0.06907327643666082 +246159,1230.7950000152603,-0.06907345608050773 +246160,1230.8000000152604,-0.06907363564727405 +246161,1230.8050000152605,-0.06907381513699243 +246162,1230.8100000152606,-0.06907399454969548 +246163,1230.8150000152607,-0.06907417388541585 +246164,1230.8200000152608,-0.06907435314418614 +246165,1230.825000015261,-0.06907453232603891 +246166,1230.830000015261,-0.06907471143100676 +246167,1230.8350000152611,-0.0690748904591222 +246168,1230.8400000152612,-0.06907506941041783 +246169,1230.8450000152613,-0.06907524828492613 +246170,1230.8500000152615,-0.06907542708267964 +246171,1230.8550000152616,-0.06907560580371083 +246172,1230.8600000152617,-0.0690757844480522 +246173,1230.8650000152618,-0.0690759630157362 +246174,1230.870000015262,-0.06907614150679528 +246175,1230.875000015262,-0.0690763199212619 +246176,1230.880000015262,-0.06907649825916846 +246177,1230.8850000152622,-0.06907667652054737 +246178,1230.8900000152623,-0.069076854705431 +246179,1230.8950000152624,-0.06907703281385176 +246180,1230.9000000152625,-0.06907721084584198 +246181,1230.9050000152627,-0.06907738880143402 +246182,1230.9100000152628,-0.06907756668066019 +246183,1230.9150000152629,-0.06907774448355282 +246184,1230.920000015263,-0.06907792221014421 +246185,1230.925000015263,-0.06907809986046663 +246186,1230.9300000152632,-0.06907827743455237 +246187,1230.9350000152633,-0.06907845493243368 +246188,1230.9400000152634,-0.0690786323541428 +246189,1230.9450000152635,-0.06907880969971195 +246190,1230.9500000152636,-0.06907898696917332 +246191,1230.9550000152637,-0.06907916416255912 +246192,1230.9600000152639,-0.06907934127990153 +246193,1230.965000015264,-0.06907951832123271 +246194,1230.970000015264,-0.06907969528658482 +246195,1230.9750000152642,-0.06907987217598997 +246196,1230.9800000152643,-0.06908004898948032 +246197,1230.9850000152644,-0.06908022572708794 +246198,1230.9900000152645,-0.06908040238884491 +246199,1230.9950000152646,-0.06908057897478335 +246200,1231.0000000152647,-0.06908075548493528 +246201,1231.0050000152648,-0.06908093191933276 +246202,1231.010000015265,-0.06908110827800781 +246203,1231.015000015265,-0.06908128456099247 +246204,1231.0200000152652,-0.06908146076831873 +246205,1231.0250000152653,-0.06908163690001853 +246206,1231.0300000152654,-0.0690818129561239 +246207,1231.0350000152655,-0.06908198893666677 +246208,1231.0400000152656,-0.06908216484167908 +246209,1231.0450000152657,-0.06908234067119276 +246210,1231.0500000152658,-0.06908251642523972 +246211,1231.055000015266,-0.06908269210385186 +246212,1231.060000015266,-0.06908286770706105 +246213,1231.0650000152662,-0.06908304323489918 +246214,1231.0700000152663,-0.06908321868739807 +246215,1231.0750000152664,-0.06908339406458959 +246216,1231.0800000152665,-0.06908356936650552 +246217,1231.0850000152666,-0.0690837445931777 +246218,1231.0900000152667,-0.06908391974463791 +246219,1231.0950000152668,-0.06908409482091794 +246220,1231.100000015267,-0.06908426982204954 +246221,1231.105000015267,-0.06908444474806445 +246222,1231.1100000152671,-0.06908461959899444 +246223,1231.1150000152672,-0.06908479437487118 +246224,1231.1200000152674,-0.06908496907572641 +246225,1231.1250000152675,-0.0690851437015918 +246226,1231.1300000152676,-0.06908531825249904 +246227,1231.1350000152677,-0.06908549272847977 +246228,1231.1400000152678,-0.06908566712956567 +246229,1231.145000015268,-0.06908584145578833 +246230,1231.150000015268,-0.06908601570717939 +246231,1231.1550000152681,-0.06908618988377045 +246232,1231.1600000152682,-0.06908636398559308 +246233,1231.1650000152683,-0.06908653801267887 +246234,1231.1700000152684,-0.06908671196505937 +246235,1231.1750000152686,-0.06908688584276614 +246236,1231.1800000152687,-0.06908705964583067 +246237,1231.1850000152688,-0.0690872333742845 +246238,1231.1900000152689,-0.06908740702815913 +246239,1231.195000015269,-0.06908758060748603 +246240,1231.200000015269,-0.06908775411229669 +246241,1231.2050000152692,-0.06908792754262252 +246242,1231.2100000152693,-0.06908810089849501 +246243,1231.2150000152694,-0.06908827417994558 +246244,1231.2200000152695,-0.06908844738700562 +246245,1231.2250000152696,-0.06908862051970653 +246246,1231.2300000152698,-0.0690887935780797 +246247,1231.2350000152699,-0.0690889665621565 +246248,1231.24000001527,-0.06908913947196828 +246249,1231.24500001527,-0.06908931230754638 +246250,1231.2500000152702,-0.06908948506892212 +246251,1231.2550000152703,-0.0690896577561268 +246252,1231.2600000152704,-0.06908983036919174 +246253,1231.2650000152705,-0.0690900029081482 +246254,1231.2700000152706,-0.06909017537302745 +246255,1231.2750000152707,-0.06909034776386075 +246256,1231.2800000152708,-0.06909052008067933 +246257,1231.285000015271,-0.0690906923235144 +246258,1231.290000015271,-0.0690908644923972 +246259,1231.2950000152712,-0.06909103658735889 +246260,1231.3000000152713,-0.06909120860843067 +246261,1231.3050000152714,-0.06909138055564369 +246262,1231.3100000152715,-0.06909155242902912 +246263,1231.3150000152716,-0.06909172422861809 +246264,1231.3200000152717,-0.0690918959544417 +246265,1231.3250000152718,-0.06909206760653111 +246266,1231.330000015272,-0.06909223918491735 +246267,1231.335000015272,-0.06909241068963154 +246268,1231.3400000152722,-0.06909258212070472 +246269,1231.3450000152723,-0.06909275347816796 +246270,1231.3500000152724,-0.06909292476205227 +246271,1231.3550000152725,-0.06909309597238868 +246272,1231.3600000152726,-0.06909326710920821 +246273,1231.3650000152727,-0.06909343817254185 +246274,1231.3700000152728,-0.06909360916242058 +246275,1231.375000015273,-0.06909378007887534 +246276,1231.380000015273,-0.06909395092193711 +246277,1231.3850000152731,-0.0690941216916368 +246278,1231.3900000152732,-0.06909429238800534 +246279,1231.3950000152734,-0.06909446301107365 +246280,1231.4000000152735,-0.0690946335608726 +246281,1231.4050000152736,-0.06909480403743308 +246282,1231.4100000152737,-0.06909497444078595 +246283,1231.4150000152738,-0.06909514477096206 +246284,1231.420000015274,-0.06909531502799222 +246285,1231.425000015274,-0.06909548521190731 +246286,1231.4300000152741,-0.06909565532273808 +246287,1231.4350000152742,-0.06909582536051537 +246288,1231.4400000152743,-0.06909599532526992 +246289,1231.4450000152744,-0.06909616521703249 +246290,1231.4500000152746,-0.06909633503583386 +246291,1231.4550000152747,-0.06909650478170476 +246292,1231.4600000152748,-0.06909667445467589 +246293,1231.4650000152749,-0.06909684405477798 +246294,1231.470000015275,-0.06909701358204172 +246295,1231.475000015275,-0.06909718303649777 +246296,1231.4800000152752,-0.06909735241817681 +246297,1231.4850000152753,-0.06909752172710948 +246298,1231.4900000152754,-0.06909769096332644 +246299,1231.4950000152755,-0.06909786012685828 +246300,1231.5000000152756,-0.06909802921773563 +246301,1231.5050000152758,-0.06909819823598908 +246302,1231.5100000152759,-0.06909836718164919 +246303,1231.515000015276,-0.06909853605474656 +246304,1231.520000015276,-0.06909870485531172 +246305,1231.5250000152762,-0.06909887358337521 +246306,1231.5300000152763,-0.06909904223896755 +246307,1231.5350000152764,-0.06909921082211926 +246308,1231.5400000152765,-0.06909937933286082 +246309,1231.5450000152766,-0.06909954777122274 +246310,1231.5500000152767,-0.06909971613723545 +246311,1231.5550000152768,-0.06909988443092942 +246312,1231.560000015277,-0.0691000526523351 +246313,1231.565000015277,-0.0691002208014829 +246314,1231.5700000152772,-0.06910038887840322 +246315,1231.5750000152773,-0.06910055688312648 +246316,1231.5800000152774,-0.06910072481568307 +246317,1231.5850000152775,-0.06910089267610331 +246318,1231.5900000152776,-0.06910106046441762 +246319,1231.5950000152777,-0.0691012281806563 +246320,1231.6000000152778,-0.06910139582484967 +246321,1231.605000015278,-0.06910156339702807 +246322,1231.610000015278,-0.06910173089722178 +246323,1231.6150000152782,-0.06910189832546111 +246324,1231.6200000152783,-0.06910206568177629 +246325,1231.6250000152784,-0.06910223296619762 +246326,1231.6300000152785,-0.06910240017875532 +246327,1231.6350000152786,-0.06910256731947961 +246328,1231.6400000152787,-0.06910273438840074 +246329,1231.6450000152788,-0.06910290138554888 +246330,1231.650000015279,-0.06910306831095421 +246331,1231.655000015279,-0.06910323516464693 +246332,1231.6600000152791,-0.0691034019466572 +246333,1231.6650000152792,-0.06910356865701514 +246334,1231.6700000152794,-0.06910373529575091 +246335,1231.6750000152795,-0.06910390186289461 +246336,1231.6800000152796,-0.06910406835847635 +246337,1231.6850000152797,-0.06910423478252622 +246338,1231.6900000152798,-0.0691044011350743 +246339,1231.69500001528,-0.06910456741615065 +246340,1231.70000001528,-0.06910473362578531 +246341,1231.7050000152801,-0.06910489976400834 +246342,1231.7100000152802,-0.06910506583084973 +246343,1231.7150000152803,-0.06910523182633949 +246344,1231.7200000152804,-0.06910539775050764 +246345,1231.7250000152806,-0.06910556360338414 +246346,1231.7300000152807,-0.06910572938499897 +246347,1231.7350000152808,-0.06910589509538205 +246348,1231.7400000152809,-0.06910606073456337 +246349,1231.745000015281,-0.06910622630257279 +246350,1231.750000015281,-0.06910639179944028 +246351,1231.7550000152812,-0.06910655722519571 +246352,1231.7600000152813,-0.06910672257986895 +246353,1231.7650000152814,-0.06910688786348991 +246354,1231.7700000152815,-0.06910705307608839 +246355,1231.7750000152816,-0.06910721821769428 +246356,1231.7800000152818,-0.06910738328833739 +246357,1231.7850000152819,-0.06910754828804754 +246358,1231.790000015282,-0.06910771321685452 +246359,1231.795000015282,-0.06910787807478813 +246360,1231.8000000152822,-0.06910804286187813 +246361,1231.8050000152823,-0.0691082075781543 +246362,1231.8100000152824,-0.06910837222364635 +246363,1231.8150000152825,-0.06910853679838407 +246364,1231.8200000152826,-0.06910870130239713 +246365,1231.8250000152827,-0.06910886573571524 +246366,1231.8300000152828,-0.06910903009836811 +246367,1231.835000015283,-0.06910919439038542 +246368,1231.840000015283,-0.0691093586117968 +246369,1231.8450000152832,-0.06910952276263195 +246370,1231.8500000152833,-0.06910968684292049 +246371,1231.8550000152834,-0.069109850852692 +246372,1231.8600000152835,-0.06911001479197615 +246373,1231.8650000152836,-0.06911017866080249 +246374,1231.8700000152837,-0.06911034245920064 +246375,1231.8750000152838,-0.06911050618720015 +246376,1231.880000015284,-0.06911066984483057 +246377,1231.885000015284,-0.06911083343212146 +246378,1231.8900000152842,-0.06911099694910233 +246379,1231.8950000152843,-0.06911116039580271 +246380,1231.9000000152844,-0.0691113237722521 +246381,1231.9050000152845,-0.06911148707847997 +246382,1231.9100000152846,-0.06911165031451581 +246383,1231.9150000152847,-0.06911181348038908 +246384,1231.9200000152848,-0.06911197657612923 +246385,1231.925000015285,-0.0691121396017657 +246386,1231.930000015285,-0.06911230255732786 +246387,1231.9350000152851,-0.06911246544284518 +246388,1231.9400000152852,-0.06911262825834702 +246389,1231.9450000152854,-0.06911279100386276 +246390,1231.9500000152855,-0.06911295367942179 +246391,1231.9550000152856,-0.06911311628505344 +246392,1231.9600000152857,-0.06911327882078706 +246393,1231.9650000152858,-0.06911344128665196 +246394,1231.970000015286,-0.06911360368267748 +246395,1231.975000015286,-0.0691137660088929 +246396,1231.9800000152861,-0.0691139282653275 +246397,1231.9850000152862,-0.06911409045201056 +246398,1231.9900000152863,-0.06911425256897134 +246399,1231.9950000152865,-0.06911441461623907 +246400,1232.0000000152866,-0.06911457659384301 +246401,1232.0050000152867,-0.06911473850181236 +246402,1232.0100000152868,-0.06911490034017634 +246403,1232.015000015287,-0.0691150621089641 +246404,1232.020000015287,-0.0691152238082049 +246405,1232.025000015287,-0.06911538543792782 +246406,1232.0300000152872,-0.06911554699816205 +246407,1232.0350000152873,-0.06911570848893672 +246408,1232.0400000152874,-0.06911586991028096 +246409,1232.0450000152875,-0.06911603126222389 +246410,1232.0500000152877,-0.06911619254479459 +246411,1232.0550000152878,-0.06911635375802215 +246412,1232.0600000152879,-0.06911651490193564 +246413,1232.065000015288,-0.06911667597656414 +246414,1232.070000015288,-0.06911683698193667 +246415,1232.0750000152882,-0.06911699791808226 +246416,1232.0800000152883,-0.06911715878502994 +246417,1232.0850000152884,-0.06911731958280871 +246418,1232.0900000152885,-0.06911748031144758 +246419,1232.0950000152886,-0.0691176409709755 +246420,1232.1000000152887,-0.06911780156142144 +246421,1232.1050000152889,-0.06911796208281437 +246422,1232.110000015289,-0.06911812253518322 +246423,1232.115000015289,-0.06911828291855691 +246424,1232.1200000152892,-0.06911844323296437 +246425,1232.1250000152893,-0.06911860347843447 +246426,1232.1300000152894,-0.06911876365499611 +246427,1232.1350000152895,-0.06911892376267817 +246428,1232.1400000152896,-0.0691190838015095 +246429,1232.1450000152897,-0.06911924377151894 +246430,1232.1500000152898,-0.06911940367273535 +246431,1232.15500001529,-0.06911956350518751 +246432,1232.16000001529,-0.06911972326890427 +246433,1232.1650000152902,-0.0691198829639144 +246434,1232.1700000152903,-0.06912004259024666 +246435,1232.1750000152904,-0.06912020214792985 +246436,1232.1800000152905,-0.06912036163699273 +246437,1232.1850000152906,-0.06912052105746401 +246438,1232.1900000152907,-0.06912068040937243 +246439,1232.1950000152908,-0.0691208396927467 +246440,1232.200000015291,-0.06912099890761553 +246441,1232.205000015291,-0.0691211580540076 +246442,1232.2100000152911,-0.06912131713195162 +246443,1232.2150000152913,-0.06912147614147619 +246444,1232.2200000152914,-0.06912163508261002 +246445,1232.2250000152915,-0.06912179395538169 +246446,1232.2300000152916,-0.06912195275981986 +246447,1232.2350000152917,-0.06912211149595314 +246448,1232.2400000152918,-0.0691222701638101 +246449,1232.245000015292,-0.06912242876341936 +246450,1232.250000015292,-0.06912258729480945 +246451,1232.2550000152921,-0.06912274575800896 +246452,1232.2600000152922,-0.06912290415304642 +246453,1232.2650000152923,-0.06912306247995037 +246454,1232.2700000152925,-0.06912322073874931 +246455,1232.2750000152926,-0.06912337892947176 +246456,1232.2800000152927,-0.0691235370521462 +246457,1232.2850000152928,-0.06912369510680114 +246458,1232.290000015293,-0.06912385309346501 +246459,1232.295000015293,-0.0691240110121663 +246460,1232.300000015293,-0.0691241688629334 +246461,1232.3050000152932,-0.06912432664579478 +246462,1232.3100000152933,-0.06912448436077885 +246463,1232.3150000152934,-0.06912464200791399 +246464,1232.3200000152935,-0.06912479958722861 +246465,1232.3250000152937,-0.06912495709875106 +246466,1232.3300000152938,-0.06912511454250975 +246467,1232.3350000152939,-0.06912527191853297 +246468,1232.340000015294,-0.06912542922684911 +246469,1232.345000015294,-0.06912558646748646 +246470,1232.3500000152942,-0.06912574364047333 +246471,1232.3550000152943,-0.06912590074583803 +246472,1232.3600000152944,-0.06912605778360886 +246473,1232.3650000152945,-0.06912621475381406 +246474,1232.3700000152946,-0.06912637165648189 +246475,1232.3750000152947,-0.06912652849164062 +246476,1232.3800000152949,-0.06912668525931849 +246477,1232.385000015295,-0.0691268419595437 +246478,1232.390000015295,-0.06912699859234445 +246479,1232.3950000152952,-0.06912715515774896 +246480,1232.4000000152953,-0.0691273116557854 +246481,1232.4050000152954,-0.06912746808648193 +246482,1232.4100000152955,-0.06912762444986671 +246483,1232.4150000152956,-0.0691277807459679 +246484,1232.4200000152957,-0.0691279369748136 +246485,1232.4250000152958,-0.06912809313643198 +246486,1232.430000015296,-0.06912824923085108 +246487,1232.435000015296,-0.06912840525809903 +246488,1232.4400000152962,-0.06912856121820392 +246489,1232.4450000152963,-0.06912871711119378 +246490,1232.4500000152964,-0.06912887293709669 +246491,1232.4550000152965,-0.06912902869594068 +246492,1232.4600000152966,-0.06912918438775378 +246493,1232.4650000152967,-0.06912934001256402 +246494,1232.4700000152968,-0.06912949557039938 +246495,1232.475000015297,-0.06912965106128788 +246496,1232.480000015297,-0.06912980648525746 +246497,1232.4850000152971,-0.06912996184233612 +246498,1232.4900000152973,-0.06913011713255178 +246499,1232.4950000152974,-0.06913027235593239 +246500,1232.5000000152975,-0.0691304275125059 +246501,1232.5050000152976,-0.06913058260230018 +246502,1232.5100000152977,-0.06913073762534318 +246503,1232.5150000152978,-0.06913089258166273 +246504,1232.520000015298,-0.06913104747128676 +246505,1232.525000015298,-0.0691312022942431 +246506,1232.5300000152981,-0.06913135705055963 +246507,1232.5350000152982,-0.06913151174026416 +246508,1232.5400000152983,-0.06913166636338453 +246509,1232.5450000152985,-0.06913182091994854 +246510,1232.5500000152986,-0.06913197540998399 +246511,1232.5550000152987,-0.06913212983351867 +246512,1232.5600000152988,-0.06913228419058036 +246513,1232.565000015299,-0.06913243848119684 +246514,1232.570000015299,-0.0691325927053958 +246515,1232.575000015299,-0.06913274686320504 +246516,1232.5800000152992,-0.06913290095465226 +246517,1232.5850000152993,-0.06913305497976517 +246518,1232.5900000152994,-0.06913320893857146 +246519,1232.5950000152995,-0.06913336283109882 +246520,1232.6000000152997,-0.06913351665737492 +246521,1232.6050000152998,-0.06913367041742743 +246522,1232.6100000152999,-0.06913382411128402 +246523,1232.6150000153,-0.06913397773897227 +246524,1232.6200000153,-0.06913413130051986 +246525,1232.6250000153002,-0.06913428479595436 +246526,1232.6300000153003,-0.06913443822530338 +246527,1232.6350000153004,-0.06913459158859452 +246528,1232.6400000153005,-0.06913474488585533 +246529,1232.6450000153006,-0.06913489811711337 +246530,1232.6500000153007,-0.06913505128239622 +246531,1232.6550000153009,-0.06913520438173139 +246532,1232.660000015301,-0.0691353574151464 +246533,1232.665000015301,-0.06913551038266877 +246534,1232.6700000153012,-0.06913566328432601 +246535,1232.6750000153013,-0.06913581612014556 +246536,1232.6800000153014,-0.06913596889015494 +246537,1232.6850000153015,-0.0691361215943816 +246538,1232.6900000153016,-0.06913627423285297 +246539,1232.6950000153017,-0.06913642680559651 +246540,1232.7000000153018,-0.06913657931263961 +246541,1232.705000015302,-0.06913673175400972 +246542,1232.710000015302,-0.06913688412973422 +246543,1232.7150000153022,-0.06913703643984047 +246544,1232.7200000153023,-0.0691371886843559 +246545,1232.7250000153024,-0.06913734086330782 +246546,1232.7300000153025,-0.0691374929767236 +246547,1232.7350000153026,-0.06913764502463057 +246548,1232.7400000153027,-0.06913779700705606 +246549,1232.7450000153028,-0.06913794892402739 +246550,1232.750000015303,-0.06913810077557184 +246551,1232.755000015303,-0.06913825256171668 +246552,1232.7600000153031,-0.06913840428248924 +246553,1232.7650000153033,-0.06913855593791672 +246554,1232.7700000153034,-0.06913870752802642 +246555,1232.7750000153035,-0.06913885905284553 +246556,1232.7800000153036,-0.06913901051240132 +246557,1232.7850000153037,-0.06913916190672097 +246558,1232.7900000153038,-0.0691393132358317 +246559,1232.795000015304,-0.06913946449976067 +246560,1232.800000015304,-0.06913961569853509 +246561,1232.8050000153041,-0.0691397668321821 +246562,1232.8100000153042,-0.06913991790072886 +246563,1232.8150000153043,-0.0691400689042025 +246564,1232.8200000153045,-0.06914021984263018 +246565,1232.8250000153046,-0.06914037071603896 +246566,1232.8300000153047,-0.06914052152445596 +246567,1232.8350000153048,-0.06914067226790829 +246568,1232.840000015305,-0.069140822946423 +246569,1232.845000015305,-0.06914097356002717 +246570,1232.850000015305,-0.06914112410874786 +246571,1232.8550000153052,-0.06914127459261209 +246572,1232.8600000153053,-0.0691414250116469 +246573,1232.8650000153054,-0.06914157536587931 +246574,1232.8700000153055,-0.0691417256553363 +246575,1232.8750000153057,-0.06914187588004489 +246576,1232.8800000153058,-0.06914202604003204 +246577,1232.8850000153059,-0.06914217613532472 +246578,1232.890000015306,-0.06914232616594988 +246579,1232.895000015306,-0.06914247613193449 +246580,1232.9000000153062,-0.06914262603330545 +246581,1232.9050000153063,-0.06914277587008968 +246582,1232.9100000153064,-0.0691429256423141 +246583,1232.9150000153065,-0.06914307535000559 +246584,1232.9200000153066,-0.06914322499319105 +246585,1232.9250000153068,-0.06914337457189731 +246586,1232.9300000153069,-0.06914352408615126 +246587,1232.935000015307,-0.06914367353597975 +246588,1232.940000015307,-0.06914382292140958 +246589,1232.9450000153072,-0.0691439722424676 +246590,1232.9500000153073,-0.06914412149918062 +246591,1232.9550000153074,-0.06914427069157542 +246592,1232.9600000153075,-0.06914441981967878 +246593,1232.9650000153076,-0.06914456888351748 +246594,1232.9700000153077,-0.0691447178831183 +246595,1232.9750000153078,-0.06914486681850794 +246596,1232.980000015308,-0.06914501568971318 +246597,1232.985000015308,-0.06914516449676071 +246598,1232.9900000153082,-0.06914531323967728 +246599,1232.9950000153083,-0.06914546191848957 +246600,1233.0000000153084,-0.06914561053322424 +246601,1233.0050000153085,-0.069145759083908 +246602,1233.0100000153086,-0.06914590757056752 +246603,1233.0150000153087,-0.06914605599322943 +246604,1233.0200000153088,-0.06914620435192036 +246605,1233.025000015309,-0.06914635264666695 +246606,1233.030000015309,-0.06914650087749583 +246607,1233.0350000153092,-0.06914664904443359 +246608,1233.0400000153093,-0.06914679714750682 +246609,1233.0450000153094,-0.0691469451867421 +246610,1233.0500000153095,-0.06914709316216597 +246611,1233.0550000153096,-0.06914724107380503 +246612,1233.0600000153097,-0.0691473889216858 +246613,1233.0650000153098,-0.06914753670583482 +246614,1233.07000001531,-0.06914768442627858 +246615,1233.07500001531,-0.06914783208304363 +246616,1233.0800000153101,-0.06914797967615645 +246617,1233.0850000153102,-0.0691481272056435 +246618,1233.0900000153104,-0.06914827467153128 +246619,1233.0950000153105,-0.06914842207384624 +246620,1233.1000000153106,-0.06914856941261481 +246621,1233.1050000153107,-0.06914871668786345 +246622,1233.1100000153108,-0.06914886389961857 +246623,1233.115000015311,-0.06914901104790656 +246624,1233.120000015311,-0.06914915813275387 +246625,1233.1250000153111,-0.06914930515418685 +246626,1233.1300000153112,-0.06914945211223189 +246627,1233.1350000153113,-0.06914959900691534 +246628,1233.1400000153114,-0.06914974583826357 +246629,1233.1450000153116,-0.06914989260630292 +246630,1233.1500000153117,-0.06915003931105969 +246631,1233.1550000153118,-0.06915018595256023 +246632,1233.1600000153119,-0.0691503325308308 +246633,1233.165000015312,-0.06915047904589776 +246634,1233.170000015312,-0.06915062549778733 +246635,1233.1750000153122,-0.06915077188652581 +246636,1233.1800000153123,-0.06915091821213944 +246637,1233.1850000153124,-0.06915106447465447 +246638,1233.1900000153125,-0.06915121067409713 +246639,1233.1950000153126,-0.06915135681049366 +246640,1233.2000000153128,-0.06915150288387024 +246641,1233.2050000153129,-0.06915164889425308 +246642,1233.210000015313,-0.06915179484166838 +246643,1233.215000015313,-0.06915194072614231 +246644,1233.2200000153132,-0.06915208654770101 +246645,1233.2250000153133,-0.06915223230637063 +246646,1233.2300000153134,-0.06915237800217734 +246647,1233.2350000153135,-0.06915252363514725 +246648,1233.2400000153136,-0.06915266920530647 +246649,1233.2450000153137,-0.0691528147126811 +246650,1233.2500000153138,-0.06915296015729724 +246651,1233.255000015314,-0.06915310553918097 +246652,1233.260000015314,-0.06915325085835837 +246653,1233.2650000153142,-0.06915339611485545 +246654,1233.2700000153143,-0.06915354130869832 +246655,1233.2750000153144,-0.06915368643991295 +246656,1233.2800000153145,-0.0691538315085254 +246657,1233.2850000153146,-0.06915397651456168 +246658,1233.2900000153147,-0.06915412145804777 +246659,1233.2950000153148,-0.06915426633900966 +246660,1233.300000015315,-0.06915441115747333 +246661,1233.305000015315,-0.06915455591346473 +246662,1233.3100000153152,-0.06915470060700982 +246663,1233.3150000153153,-0.06915484523813453 +246664,1233.3200000153154,-0.06915498980686481 +246665,1233.3250000153155,-0.06915513431322654 +246666,1233.3300000153156,-0.06915527875724566 +246667,1233.3350000153157,-0.06915542313894804 +246668,1233.3400000153158,-0.06915556745835957 +246669,1233.345000015316,-0.06915571171550612 +246670,1233.350000015316,-0.06915585591041354 +246671,1233.3550000153161,-0.06915600004310767 +246672,1233.3600000153162,-0.06915614411361436 +246673,1233.3650000153164,-0.06915628812195942 +246674,1233.3700000153165,-0.06915643206816867 +246675,1233.3750000153166,-0.0691565759522679 +246676,1233.3800000153167,-0.06915671977428291 +246677,1233.3850000153168,-0.06915686353423944 +246678,1233.390000015317,-0.06915700723216331 +246679,1233.395000015317,-0.06915715086808023 +246680,1233.4000000153171,-0.06915729444201597 +246681,1233.4050000153172,-0.06915743795399623 +246682,1233.4100000153173,-0.06915758140404675 +246683,1233.4150000153174,-0.06915772479219323 +246684,1233.4200000153176,-0.06915786811846136 +246685,1233.4250000153177,-0.06915801138287683 +246686,1233.4300000153178,-0.06915815458546531 +246687,1233.4350000153179,-0.06915829772625245 +246688,1233.440000015318,-0.06915844080526393 +246689,1233.445000015318,-0.06915858382252535 +246690,1233.4500000153182,-0.06915872677806234 +246691,1233.4550000153183,-0.06915886967190053 +246692,1233.4600000153184,-0.06915901250406552 +246693,1233.4650000153185,-0.06915915527458288 +246694,1233.4700000153186,-0.06915929798347822 +246695,1233.4750000153188,-0.0691594406307771 +246696,1233.4800000153189,-0.06915958321650507 +246697,1233.485000015319,-0.06915972574068768 +246698,1233.490000015319,-0.06915986820335046 +246699,1233.4950000153192,-0.06916001060451892 +246700,1233.5000000153193,-0.06916015294421858 +246701,1233.5050000153194,-0.06916029522247494 +246702,1233.5100000153195,-0.0691604374393135 +246703,1233.5150000153196,-0.06916057959475973 +246704,1233.5200000153197,-0.06916072168883908 +246705,1233.5250000153198,-0.06916086372157701 +246706,1233.53000001532,-0.06916100569299896 +246707,1233.53500001532,-0.06916114760313037 +246708,1233.5400000153202,-0.06916128945199666 +246709,1233.5450000153203,-0.06916143123962325 +246710,1233.5500000153204,-0.06916157296603548 +246711,1233.5550000153205,-0.0691617146312588 +246712,1233.5600000153206,-0.06916185623531854 +246713,1233.5650000153207,-0.06916199777824009 +246714,1233.5700000153208,-0.06916213926004876 +246715,1233.575000015321,-0.06916228068076995 +246716,1233.580000015321,-0.06916242204042894 +246717,1233.5850000153212,-0.06916256333905106 +246718,1233.5900000153213,-0.06916270457666163 +246719,1233.5950000153214,-0.0691628457532859 +246720,1233.6000000153215,-0.0691629868689492 +246721,1233.6050000153216,-0.06916312792367678 +246722,1233.6100000153217,-0.06916326891749391 +246723,1233.6150000153218,-0.06916340985042582 +246724,1233.620000015322,-0.06916355072249777 +246725,1233.625000015322,-0.06916369153373497 +246726,1233.6300000153221,-0.06916383228416263 +246727,1233.6350000153222,-0.06916397297380598 +246728,1233.6400000153224,-0.06916411360269017 +246729,1233.6450000153225,-0.06916425417084042 +246730,1233.6500000153226,-0.06916439467828188 +246731,1233.6550000153227,-0.06916453512503971 +246732,1233.6600000153228,-0.06916467551113906 +246733,1233.665000015323,-0.06916481583660504 +246734,1233.670000015323,-0.06916495610146282 +246735,1233.6750000153231,-0.06916509630573749 +246736,1233.6800000153232,-0.06916523644945413 +246737,1233.6850000153233,-0.06916537653263785 +246738,1233.6900000153234,-0.06916551655531375 +246739,1233.6950000153236,-0.06916565651750686 +246740,1233.7000000153237,-0.06916579641924225 +246741,1233.7050000153238,-0.06916593626054499 +246742,1233.7100000153239,-0.06916607604144007 +246743,1233.715000015324,-0.06916621576195255 +246744,1233.720000015324,-0.06916635542210742 +246745,1233.7250000153242,-0.06916649502192967 +246746,1233.7300000153243,-0.06916663456144433 +246747,1233.7350000153244,-0.06916677404067635 +246748,1233.7400000153245,-0.06916691345965069 +246749,1233.7450000153246,-0.06916705281839232 +246750,1233.7500000153248,-0.0691671921169262 +246751,1233.7550000153249,-0.06916733135527721 +246752,1233.760000015325,-0.06916747053347032 +246753,1233.765000015325,-0.06916760965153043 +246754,1233.7700000153252,-0.06916774870948245 +246755,1233.7750000153253,-0.06916788770735123 +246756,1233.7800000153254,-0.06916802664516168 +246757,1233.7850000153255,-0.06916816552293865 +246758,1233.7900000153256,-0.06916830434070702 +246759,1233.7950000153257,-0.06916844309849161 +246760,1233.8000000153258,-0.06916858179631726 +246761,1233.805000015326,-0.0691687204342088 +246762,1233.810000015326,-0.06916885901219103 +246763,1233.8150000153262,-0.06916899753028874 +246764,1233.8200000153263,-0.06916913598852674 +246765,1233.8250000153264,-0.06916927438692978 +246766,1233.8300000153265,-0.06916941272552267 +246767,1233.8350000153266,-0.06916955100433012 +246768,1233.8400000153267,-0.06916968922337689 +246769,1233.8450000153268,-0.06916982738268773 +246770,1233.850000015327,-0.06916996548228733 +246771,1233.855000015327,-0.06917010352220045 +246772,1233.8600000153272,-0.06917024150245174 +246773,1233.8650000153273,-0.0691703794230659 +246774,1233.8700000153274,-0.06917051728406763 +246775,1233.8750000153275,-0.06917065508548158 +246776,1233.8800000153276,-0.06917079282733239 +246777,1233.8850000153277,-0.06917093050964473 +246778,1233.8900000153278,-0.06917106813244324 +246779,1233.895000015328,-0.06917120569575252 +246780,1233.900000015328,-0.0691713431995972 +246781,1233.9050000153281,-0.06917148064400185 +246782,1233.9100000153283,-0.06917161802899108 +246783,1233.9150000153284,-0.06917175535458947 +246784,1233.9200000153285,-0.06917189262082159 +246785,1233.9250000153286,-0.06917202982771198 +246786,1233.9300000153287,-0.06917216697528521 +246787,1233.9350000153288,-0.0691723040635658 +246788,1233.940000015329,-0.06917244109257827 +246789,1233.945000015329,-0.06917257806234714 +246790,1233.9500000153291,-0.06917271497289691 +246791,1233.9550000153292,-0.06917285182425208 +246792,1233.9600000153293,-0.06917298861643711 +246793,1233.9650000153295,-0.06917312534947648 +246794,1233.9700000153296,-0.06917326202339465 +246795,1233.9750000153297,-0.06917339863821606 +246796,1233.9800000153298,-0.06917353519396516 +246797,1233.98500001533,-0.06917367169066634 +246798,1233.99000001533,-0.06917380812834405 +246799,1233.99500001533,-0.06917394450702269 +246800,1234.0000000153302,-0.06917408082672664 +246801,1234.0050000153303,-0.06917421708748028 +246802,1234.0100000153304,-0.069174353289308 +246803,1234.0150000153305,-0.06917448943223414 +246804,1234.0200000153307,-0.06917462551628306 +246805,1234.0250000153308,-0.06917476154147909 +246806,1234.0300000153309,-0.06917489750784656 +246807,1234.035000015331,-0.06917503341540979 +246808,1234.040000015331,-0.06917516926419308 +246809,1234.0450000153312,-0.06917530505422072 +246810,1234.0500000153313,-0.069175440785517 +246811,1234.0550000153314,-0.0691755764581062 +246812,1234.0600000153315,-0.06917571207201258 +246813,1234.0650000153316,-0.06917584762726038 +246814,1234.0700000153317,-0.06917598312387385 +246815,1234.0750000153319,-0.06917611856187722 +246816,1234.080000015332,-0.06917625394129469 +246817,1234.085000015332,-0.0691763892621505 +246818,1234.0900000153322,-0.06917652452446882 +246819,1234.0950000153323,-0.06917665972827385 +246820,1234.1000000153324,-0.06917679487358976 +246821,1234.1050000153325,-0.06917692996044071 +246822,1234.1100000153326,-0.06917706498885087 +246823,1234.1150000153327,-0.06917719995884437 +246824,1234.1200000153328,-0.06917733487044535 +246825,1234.125000015333,-0.06917746972367793 +246826,1234.130000015333,-0.06917760451856621 +246827,1234.1350000153332,-0.0691777392551343 +246828,1234.1400000153333,-0.06917787393340628 +246829,1234.1450000153334,-0.06917800855340626 +246830,1234.1500000153335,-0.06917814311515827 +246831,1234.1550000153336,-0.06917827761868638 +246832,1234.1600000153337,-0.06917841206401464 +246833,1234.1650000153338,-0.06917854645116708 +246834,1234.170000015334,-0.06917868078016774 +246835,1234.175000015334,-0.06917881505104062 +246836,1234.1800000153341,-0.06917894926380971 +246837,1234.1850000153343,-0.06917908341849903 +246838,1234.1900000153344,-0.06917921751513255 +246839,1234.1950000153345,-0.06917935155373425 +246840,1234.2000000153346,-0.06917948553432808 +246841,1234.2050000153347,-0.069179619456938 +246842,1234.2100000153348,-0.06917975332158793 +246843,1234.215000015335,-0.06917988712830184 +246844,1234.220000015335,-0.06918002087710359 +246845,1234.2250000153351,-0.06918015456801711 +246846,1234.2300000153352,-0.06918028820106634 +246847,1234.2350000153353,-0.06918042177627509 +246848,1234.2400000153355,-0.0691805552936673 +246849,1234.2450000153356,-0.06918068875326681 +246850,1234.2500000153357,-0.06918082215509748 +246851,1234.2550000153358,-0.06918095549918314 +246852,1234.260000015336,-0.06918108878554763 +246853,1234.265000015336,-0.06918122201421478 +246854,1234.270000015336,-0.06918135518520839 +246855,1234.2750000153362,-0.06918148829855227 +246856,1234.2800000153363,-0.06918162135427021 +246857,1234.2850000153364,-0.06918175435238598 +246858,1234.2900000153365,-0.06918188729292336 +246859,1234.2950000153367,-0.06918202017590612 +246860,1234.3000000153368,-0.06918215300135798 +246861,1234.3050000153369,-0.0691822857693027 +246862,1234.310000015337,-0.06918241847976399 +246863,1234.315000015337,-0.06918255113276557 +246864,1234.3200000153372,-0.06918268372833115 +246865,1234.3250000153373,-0.06918281626648444 +246866,1234.3300000153374,-0.0691829487472491 +246867,1234.3350000153375,-0.06918308117064882 +246868,1234.3400000153376,-0.06918321353670726 +246869,1234.3450000153377,-0.06918334584544808 +246870,1234.3500000153379,-0.0691834780968949 +246871,1234.355000015338,-0.06918361029107138 +246872,1234.360000015338,-0.06918374242800113 +246873,1234.3650000153382,-0.06918387450770776 +246874,1234.3700000153383,-0.06918400653021486 +246875,1234.3750000153384,-0.06918413849554604 +246876,1234.3800000153385,-0.06918427040372487 +246877,1234.3850000153386,-0.06918440225477493 +246878,1234.3900000153387,-0.06918453404871976 +246879,1234.3950000153388,-0.06918466578558292 +246880,1234.400000015339,-0.06918479746538794 +246881,1234.405000015339,-0.06918492908815838 +246882,1234.4100000153392,-0.0691850606539177 +246883,1234.4150000153393,-0.06918519216268945 +246884,1234.4200000153394,-0.06918532361449711 +246885,1234.4250000153395,-0.06918545500936417 +246886,1234.4300000153396,-0.06918558634731409 +246887,1234.4350000153397,-0.06918571762837034 +246888,1234.4400000153398,-0.0691858488525564 +246889,1234.44500001534,-0.06918598001989568 +246890,1234.45000001534,-0.06918611113041163 +246891,1234.4550000153401,-0.06918624218412768 +246892,1234.4600000153403,-0.06918637318106723 +246893,1234.4650000153404,-0.0691865041212537 +246894,1234.4700000153405,-0.06918663500471045 +246895,1234.4750000153406,-0.06918676583146088 +246896,1234.4800000153407,-0.06918689660152838 +246897,1234.4850000153408,-0.06918702731493627 +246898,1234.490000015341,-0.06918715797170794 +246899,1234.495000015341,-0.06918728857186669 +246900,1234.5000000153411,-0.06918741911543587 +246901,1234.5050000153412,-0.06918754960243881 +246902,1234.5100000153413,-0.0691876800328988 +246903,1234.5150000153415,-0.06918781040683915 +246904,1234.5200000153416,-0.06918794072428314 +246905,1234.5250000153417,-0.06918807098525406 +246906,1234.5300000153418,-0.06918820118977517 +246907,1234.535000015342,-0.06918833133786972 +246908,1234.540000015342,-0.06918846142956098 +246909,1234.545000015342,-0.06918859146487215 +246910,1234.5500000153422,-0.06918872144382648 +246911,1234.5550000153423,-0.06918885136644719 +246912,1234.5600000153424,-0.06918898123275746 +246913,1234.5650000153425,-0.06918911104278051 +246914,1234.5700000153427,-0.06918924079653953 +246915,1234.5750000153428,-0.06918937049405766 +246916,1234.5800000153429,-0.06918950013535809 +246917,1234.585000015343,-0.06918962972046397 +246918,1234.590000015343,-0.06918975924939845 +246919,1234.5950000153432,-0.06918988872218466 +246920,1234.6000000153433,-0.06919001813884572 +246921,1234.6050000153434,-0.06919014749940473 +246922,1234.6100000153435,-0.06919027680388481 +246923,1234.6150000153436,-0.06919040605230906 +246924,1234.6200000153437,-0.06919053524470055 +246925,1234.6250000153439,-0.06919066438108235 +246926,1234.630000015344,-0.06919079346147751 +246927,1234.635000015344,-0.06919092248590912 +246928,1234.6400000153442,-0.06919105145440017 +246929,1234.6450000153443,-0.06919118036697372 +246930,1234.6500000153444,-0.06919130922365281 +246931,1234.6550000153445,-0.06919143802446041 +246932,1234.6600000153446,-0.06919156676941955 +246933,1234.6650000153447,-0.06919169545855322 +246934,1234.6700000153448,-0.06919182409188437 +246935,1234.675000015345,-0.06919195266943601 +246936,1234.680000015345,-0.06919208119123108 +246937,1234.6850000153452,-0.06919220965729252 +246938,1234.6900000153453,-0.06919233806764326 +246939,1234.6950000153454,-0.06919246642230627 +246940,1234.7000000153455,-0.06919259472130443 +246941,1234.7050000153456,-0.06919272296466068 +246942,1234.7100000153457,-0.0691928511523979 +246943,1234.7150000153458,-0.06919297928453898 +246944,1234.720000015346,-0.0691931073611068 +246945,1234.725000015346,-0.06919323538212423 +246946,1234.7300000153461,-0.06919336334761413 +246947,1234.7350000153463,-0.06919349125759934 +246948,1234.7400000153464,-0.06919361911210271 +246949,1234.7450000153465,-0.06919374691114706 +246950,1234.7500000153466,-0.06919387465475521 +246951,1234.7550000153467,-0.06919400234294996 +246952,1234.7600000153468,-0.06919412997575412 +246953,1234.765000015347,-0.06919425755319047 +246954,1234.770000015347,-0.06919438507528179 +246955,1234.7750000153471,-0.06919451254205085 +246956,1234.7800000153472,-0.06919463995352039 +246957,1234.7850000153474,-0.06919476730971319 +246958,1234.7900000153475,-0.06919489461065195 +246959,1234.7950000153476,-0.06919502185635942 +246960,1234.8000000153477,-0.0691951490468583 +246961,1234.8050000153478,-0.06919527618217133 +246962,1234.810000015348,-0.06919540326232117 +246963,1234.815000015348,-0.06919553028733051 +246964,1234.8200000153481,-0.06919565725722206 +246965,1234.8250000153482,-0.06919578417201845 +246966,1234.8300000153483,-0.06919591103174236 +246967,1234.8350000153484,-0.06919603783641641 +246968,1234.8400000153486,-0.06919616458606326 +246969,1234.8450000153487,-0.06919629128070554 +246970,1234.8500000153488,-0.06919641792036585 +246971,1234.8550000153489,-0.06919654450506679 +246972,1234.860000015349,-0.06919667103483099 +246973,1234.865000015349,-0.06919679750968101 +246974,1234.8700000153492,-0.06919692392963943 +246975,1234.8750000153493,-0.0691970502947288 +246976,1234.8800000153494,-0.06919717660497174 +246977,1234.8850000153495,-0.06919730286039072 +246978,1234.8900000153496,-0.06919742906100833 +246979,1234.8950000153498,-0.06919755520684706 +246980,1234.9000000153499,-0.06919768129792944 +246981,1234.90500001535,-0.06919780733427798 +246982,1234.91000001535,-0.06919793331591519 +246983,1234.9150000153502,-0.06919805924286353 +246984,1234.9200000153503,-0.06919818511514549 +246985,1234.9250000153504,-0.06919831093278353 +246986,1234.9300000153505,-0.06919843669580011 +246987,1234.9350000153506,-0.06919856240421769 +246988,1234.9400000153507,-0.0691986880580587 +246989,1234.9450000153508,-0.06919881365734556 +246990,1234.950000015351,-0.0691989392021007 +246991,1234.955000015351,-0.06919906469234652 +246992,1234.9600000153512,-0.0691991901281054 +246993,1234.9650000153513,-0.06919931550939976 +246994,1234.9700000153514,-0.06919944083625196 +246995,1234.9750000153515,-0.06919956610868436 +246996,1234.9800000153516,-0.06919969132671933 +246997,1234.9850000153517,-0.0691998164903792 +246998,1234.9900000153518,-0.06919994159968636 +246999,1234.995000015352,-0.06920006665466308 +247000,1235.000000015352,-0.06920019165533171 +247001,1235.0050000153522,-0.06920031660171455 +247002,1235.0100000153523,-0.06920044149383389 +247003,1235.0150000153524,-0.06920056633171204 +247004,1235.0200000153525,-0.06920069111537126 +247005,1235.0250000153526,-0.06920081584483383 +247006,1235.0300000153527,-0.06920094052012199 +247007,1235.0350000153528,-0.06920106514125801 +247008,1235.040000015353,-0.06920118970826412 +247009,1235.045000015353,-0.06920131422116256 +247010,1235.0500000153531,-0.06920143867997555 +247011,1235.0550000153532,-0.06920156308472529 +247012,1235.0600000153534,-0.06920168743543399 +247013,1235.0650000153535,-0.06920181173212385 +247014,1235.0700000153536,-0.06920193597481702 +247015,1235.0750000153537,-0.0692020601635357 +247016,1235.0800000153538,-0.06920218429830202 +247017,1235.085000015354,-0.06920230837913814 +247018,1235.090000015354,-0.06920243240606624 +247019,1235.0950000153541,-0.06920255637910842 +247020,1235.1000000153542,-0.0692026802982868 +247021,1235.1050000153543,-0.0692028041636235 +247022,1235.1100000153544,-0.06920292797514063 +247023,1235.1150000153546,-0.06920305173286026 +247024,1235.1200000153547,-0.0692031754368045 +247025,1235.1250000153548,-0.06920329908699542 +247026,1235.1300000153549,-0.06920342268345506 +247027,1235.135000015355,-0.06920354622620549 +247028,1235.140000015355,-0.06920366971526876 +247029,1235.1450000153552,-0.0692037931506669 +247030,1235.1500000153553,-0.06920391653242193 +247031,1235.1550000153554,-0.06920403986055587 +247032,1235.1600000153555,-0.06920416313509073 +247033,1235.1650000153556,-0.06920428635604849 +247034,1235.1700000153558,-0.06920440952345115 +247035,1235.1750000153559,-0.06920453263732068 +247036,1235.180000015356,-0.06920465569767906 +247037,1235.185000015356,-0.06920477870454822 +247038,1235.1900000153562,-0.06920490165795014 +247039,1235.1950000153563,-0.06920502455790672 +247040,1235.2000000153564,-0.06920514740443993 +247041,1235.2050000153565,-0.06920527019757165 +247042,1235.2100000153566,-0.0692053929373238 +247043,1235.2150000153567,-0.0692055156237183 +247044,1235.2200000153568,-0.06920563825677702 +247045,1235.225000015357,-0.06920576083652184 +247046,1235.230000015357,-0.06920588336297465 +247047,1235.2350000153572,-0.06920600583615727 +247048,1235.2400000153573,-0.06920612825609158 +247049,1235.2450000153574,-0.06920625062279943 +247050,1235.2500000153575,-0.06920637293630263 +247051,1235.2550000153576,-0.06920649519662302 +247052,1235.2600000153577,-0.06920661740378238 +247053,1235.2650000153578,-0.06920673955780254 +247054,1235.270000015358,-0.0692068616587053 +247055,1235.275000015358,-0.06920698370651242 +247056,1235.2800000153582,-0.06920710570124568 +247057,1235.2850000153583,-0.06920722764292686 +247058,1235.2900000153584,-0.06920734953157769 +247059,1235.2950000153585,-0.06920747136721994 +247060,1235.3000000153586,-0.06920759314987533 +247061,1235.3050000153587,-0.0692077148795656 +247062,1235.3100000153588,-0.06920783655631246 +247063,1235.315000015359,-0.06920795818013761 +247064,1235.320000015359,-0.06920807975106276 +247065,1235.3250000153591,-0.06920820126910958 +247066,1235.3300000153592,-0.06920832273429976 +247067,1235.3350000153594,-0.06920844414665496 +247068,1235.3400000153595,-0.06920856550619685 +247069,1235.3450000153596,-0.06920868681294708 +247070,1235.3500000153597,-0.06920880806692728 +247071,1235.3550000153598,-0.06920892926815908 +247072,1235.36000001536,-0.06920905041666411 +247073,1235.36500001536,-0.06920917151246399 +247074,1235.3700000153601,-0.0692092925555803 +247075,1235.3750000153602,-0.06920941354603465 +247076,1235.3800000153603,-0.0692095344838486 +247077,1235.3850000153604,-0.06920965536904375 +247078,1235.3900000153606,-0.06920977620164165 +247079,1235.3950000153607,-0.06920989698166387 +247080,1235.4000000153608,-0.06921001770913192 +247081,1235.4050000153609,-0.06921013838406737 +247082,1235.410000015361,-0.06921025900649172 +247083,1235.415000015361,-0.06921037957642652 +247084,1235.4200000153612,-0.06921050009389326 +247085,1235.4250000153613,-0.06921062055891343 +247086,1235.4300000153614,-0.06921074097150853 +247087,1235.4350000153615,-0.06921086133170003 +247088,1235.4400000153616,-0.06921098163950941 +247089,1235.4450000153618,-0.06921110189495812 +247090,1235.4500000153619,-0.06921122209806761 +247091,1235.455000015362,-0.06921134224885933 +247092,1235.460000015362,-0.0692114623473547 +247093,1235.4650000153622,-0.06921158239357515 +247094,1235.4700000153623,-0.06921170238754211 +247095,1235.4750000153624,-0.06921182232927695 +247096,1235.4800000153625,-0.06921194221880107 +247097,1235.4850000153626,-0.06921206205613588 +247098,1235.4900000153627,-0.06921218184130272 +247099,1235.4950000153628,-0.069212301574323 +247100,1235.500000015363,-0.06921242125521804 +247101,1235.505000015363,-0.06921254088400919 +247102,1235.5100000153632,-0.0692126604607178 +247103,1235.5150000153633,-0.06921277998536521 +247104,1235.5200000153634,-0.06921289945797271 +247105,1235.5250000153635,-0.06921301887856163 +247106,1235.5300000153636,-0.06921313824715325 +247107,1235.5350000153637,-0.06921325756376889 +247108,1235.5400000153638,-0.06921337682842982 +247109,1235.545000015364,-0.06921349604115729 +247110,1235.550000015364,-0.06921361520197258 +247111,1235.5550000153642,-0.06921373431089696 +247112,1235.5600000153643,-0.06921385336795165 +247113,1235.5650000153644,-0.06921397237315789 +247114,1235.5700000153645,-0.06921409132653691 +247115,1235.5750000153646,-0.06921421022810993 +247116,1235.5800000153647,-0.06921432907789815 +247117,1235.5850000153648,-0.06921444787592278 +247118,1235.590000015365,-0.06921456662220499 +247119,1235.595000015365,-0.06921468531676597 +247120,1235.6000000153651,-0.06921480395962688 +247121,1235.6050000153652,-0.0692149225508089 +247122,1235.6100000153654,-0.06921504109033316 +247123,1235.6150000153655,-0.0692151595782208 +247124,1235.6200000153656,-0.06921527801449298 +247125,1235.6250000153657,-0.0692153963991708 +247126,1235.6300000153658,-0.06921551473227538 +247127,1235.635000015366,-0.06921563301382783 +247128,1235.640000015366,-0.06921575124384922 +247129,1235.6450000153661,-0.06921586942236069 +247130,1235.6500000153662,-0.06921598754938325 +247131,1235.6550000153663,-0.06921610562493803 +247132,1235.6600000153664,-0.06921622364904605 +247133,1235.6650000153666,-0.06921634162172836 +247134,1235.6700000153667,-0.06921645954300602 +247135,1235.6750000153668,-0.06921657741290005 +247136,1235.6800000153669,-0.06921669523143148 +247137,1235.685000015367,-0.0692168129986213 +247138,1235.690000015367,-0.06921693071449053 +247139,1235.6950000153672,-0.06921704837906016 +247140,1235.7000000153673,-0.06921716599235118 +247141,1235.7050000153674,-0.06921728355438457 +247142,1235.7100000153675,-0.06921740106518127 +247143,1235.7150000153677,-0.06921751852476227 +247144,1235.7200000153678,-0.0692176359331485 +247145,1235.7250000153679,-0.06921775329036091 +247146,1235.730000015368,-0.0692178705964204 +247147,1235.735000015368,-0.06921798785134792 +247148,1235.7400000153682,-0.06921810505516438 +247149,1235.7450000153683,-0.06921822220789066 +247150,1235.7500000153684,-0.06921833930954768 +247151,1235.7550000153685,-0.06921845636015632 +247152,1235.7600000153686,-0.06921857335973745 +247153,1235.7650000153687,-0.06921869030831192 +247154,1235.7700000153689,-0.06921880720590061 +247155,1235.775000015369,-0.06921892405252435 +247156,1235.780000015369,-0.06921904084820397 +247157,1235.7850000153692,-0.06921915759296034 +247158,1235.7900000153693,-0.06921927428681422 +247159,1235.7950000153694,-0.06921939092978648 +247160,1235.8000000153695,-0.06921950752189789 +247161,1235.8050000153696,-0.06921962406316924 +247162,1235.8100000153697,-0.06921974055362132 +247163,1235.8150000153698,-0.06921985699327492 +247164,1235.82000001537,-0.06921997338215079 +247165,1235.82500001537,-0.06922008972026968 +247166,1235.8300000153702,-0.06922020600765234 +247167,1235.8350000153703,-0.06922032224431952 +247168,1235.8400000153704,-0.06922043843029194 +247169,1235.8450000153705,-0.06922055456559031 +247170,1235.8500000153706,-0.06922067065023536 +247171,1235.8550000153707,-0.06922078668424779 +247172,1235.8600000153708,-0.06922090266764827 +247173,1235.865000015371,-0.06922101860045751 +247174,1235.870000015371,-0.06922113448269618 +247175,1235.8750000153711,-0.06922125031438492 +247176,1235.8800000153713,-0.06922136609554441 +247177,1235.8850000153714,-0.06922148182619531 +247178,1235.8900000153715,-0.06922159750635823 +247179,1235.8950000153716,-0.06922171313605381 +247180,1235.9000000153717,-0.06922182871530266 +247181,1235.9050000153718,-0.06922194424412542 +247182,1235.910000015372,-0.06922205972254267 +247183,1235.915000015372,-0.069222175150575 +247184,1235.9200000153721,-0.06922229052824301 +247185,1235.9250000153722,-0.06922240585556726 +247186,1235.9300000153723,-0.06922252113256833 +247187,1235.9350000153725,-0.06922263635926677 +247188,1235.9400000153726,-0.06922275153568314 +247189,1235.9450000153727,-0.06922286666183794 +247190,1235.9500000153728,-0.06922298173775174 +247191,1235.955000015373,-0.06922309676344506 +247192,1235.960000015373,-0.06922321173893839 +247193,1235.965000015373,-0.06922332666425224 +247194,1235.9700000153732,-0.06922344153940713 +247195,1235.9750000153733,-0.0692235563644235 +247196,1235.9800000153734,-0.06922367113932186 +247197,1235.9850000153735,-0.06922378586412267 +247198,1235.9900000153737,-0.06922390053884639 +247199,1235.9950000153738,-0.06922401516351347 +247200,1236.0000000153739,-0.06922412973814435 +247201,1236.005000015374,-0.06922424426275944 +247202,1236.010000015374,-0.06922435873737921 +247203,1236.0150000153742,-0.06922447316202403 +247204,1236.0200000153743,-0.06922458753671433 +247205,1236.0250000153744,-0.06922470186147048 +247206,1236.0300000153745,-0.0692248161363129 +247207,1236.0350000153746,-0.06922493036126194 +247208,1236.0400000153747,-0.06922504453633799 +247209,1236.0450000153749,-0.0692251586615614 +247210,1236.050000015375,-0.06922527273695252 +247211,1236.055000015375,-0.0692253867625317 +247212,1236.0600000153752,-0.06922550073831928 +247213,1236.0650000153753,-0.06922561466433555 +247214,1236.0700000153754,-0.06922572854060087 +247215,1236.0750000153755,-0.06922584236713553 +247216,1236.0800000153756,-0.06922595614395982 +247217,1236.0850000153757,-0.06922606987109405 +247218,1236.0900000153758,-0.06922618354855847 +247219,1236.095000015376,-0.06922629717637337 +247220,1236.100000015376,-0.06922641075455901 +247221,1236.1050000153762,-0.06922652428313565 +247222,1236.1100000153763,-0.06922663776212354 +247223,1236.1150000153764,-0.0692267511915429 +247224,1236.1200000153765,-0.06922686457141394 +247225,1236.1250000153766,-0.06922697790175693 +247226,1236.1300000153767,-0.06922709118259203 +247227,1236.1350000153768,-0.06922720441393948 +247228,1236.140000015377,-0.06922731759581945 +247229,1236.145000015377,-0.06922743072825213 +247230,1236.1500000153771,-0.06922754381125769 +247231,1236.1550000153773,-0.0692276568448563 +247232,1236.1600000153774,-0.06922776982906813 +247233,1236.1650000153775,-0.0692278827639133 +247234,1236.1700000153776,-0.06922799564941197 +247235,1236.1750000153777,-0.06922810848558426 +247236,1236.1800000153778,-0.0692282212724503 +247237,1236.185000015378,-0.0692283340100302 +247238,1236.190000015378,-0.06922844669834406 +247239,1236.1950000153781,-0.06922855933741198 +247240,1236.2000000153782,-0.06922867192725404 +247241,1236.2050000153783,-0.06922878446789033 +247242,1236.2100000153785,-0.0692288969593409 +247243,1236.2150000153786,-0.06922900940162584 +247244,1236.2200000153787,-0.06922912179476516 +247245,1236.2250000153788,-0.06922923413877895 +247246,1236.230000015379,-0.06922934643368721 +247247,1236.235000015379,-0.06922945867950998 +247248,1236.240000015379,-0.06922957087626729 +247249,1236.2450000153792,-0.06922968302397912 +247250,1236.2500000153793,-0.06922979512266549 +247251,1236.2550000153794,-0.06922990717234637 +247252,1236.2600000153795,-0.06923001917304175 +247253,1236.2650000153797,-0.06923013112477162 +247254,1236.2700000153798,-0.06923024302755593 +247255,1236.2750000153799,-0.06923035488141463 +247256,1236.28000001538,-0.06923046668636768 +247257,1236.28500001538,-0.069230578442435 +247258,1236.2900000153802,-0.06923069014963655 +247259,1236.2950000153803,-0.06923080180799222 +247260,1236.3000000153804,-0.06923091341752195 +247261,1236.3050000153805,-0.06923102497824561 +247262,1236.3100000153806,-0.06923113649018313 +247263,1236.3150000153807,-0.06923124795335439 +247264,1236.3200000153809,-0.06923135936777923 +247265,1236.325000015381,-0.06923147073347756 +247266,1236.330000015381,-0.06923158205046923 +247267,1236.3350000153812,-0.06923169331877409 +247268,1236.3400000153813,-0.06923180453841198 +247269,1236.3450000153814,-0.06923191570940272 +247270,1236.3500000153815,-0.06923202683176617 +247271,1236.3550000153816,-0.06923213790552214 +247272,1236.3600000153817,-0.06923224893069041 +247273,1236.3650000153818,-0.0692323599072908 +247274,1236.370000015382,-0.06923247083534309 +247275,1236.375000015382,-0.06923258171486708 +247276,1236.3800000153822,-0.06923269254588253 +247277,1236.3850000153823,-0.06923280332840923 +247278,1236.3900000153824,-0.06923291406246689 +247279,1236.3950000153825,-0.0692330247480753 +247280,1236.4000000153826,-0.06923313538525418 +247281,1236.4050000153827,-0.06923324597402326 +247282,1236.4100000153828,-0.06923335651440228 +247283,1236.415000015383,-0.06923346700641093 +247284,1236.420000015383,-0.06923357745006893 +247285,1236.4250000153831,-0.06923368784539599 +247286,1236.4300000153833,-0.06923379819241177 +247287,1236.4350000153834,-0.06923390849113596 +247288,1236.4400000153835,-0.06923401874158824 +247289,1236.4450000153836,-0.06923412894378826 +247290,1236.4500000153837,-0.06923423909775568 +247291,1236.4550000153838,-0.06923434920351014 +247292,1236.460000015384,-0.06923445926107129 +247293,1236.465000015384,-0.06923456927045873 +247294,1236.4700000153841,-0.06923467923169212 +247295,1236.4750000153842,-0.06923478914479105 +247296,1236.4800000153843,-0.06923489900977509 +247297,1236.4850000153845,-0.06923500882666389 +247298,1236.4900000153846,-0.069235118595477 +247299,1236.4950000153847,-0.06923522831623402 +247300,1236.5000000153848,-0.0692353379889545 +247301,1236.505000015385,-0.069235447613658 +247302,1236.510000015385,-0.0692355571903641 +247303,1236.515000015385,-0.06923566671909233 +247304,1236.5200000153852,-0.0692357761998622 +247305,1236.5250000153853,-0.06923588563269324 +247306,1236.5300000153854,-0.069235995017605 +247307,1236.5350000153855,-0.06923610435461694 +247308,1236.5400000153857,-0.06923621364374861 +247309,1236.5450000153858,-0.06923632288501948 +247310,1236.5500000153859,-0.06923643207844903 +247311,1236.555000015386,-0.06923654122405674 +247312,1236.560000015386,-0.06923665032186208 +247313,1236.5650000153862,-0.06923675937188449 +247314,1236.5700000153863,-0.06923686837414345 +247315,1236.5750000153864,-0.06923697732865837 +247316,1236.5800000153865,-0.06923708623544872 +247317,1236.5850000153866,-0.0692371950945339 +247318,1236.5900000153867,-0.06923730390593331 +247319,1236.5950000153869,-0.0692374126696664 +247320,1236.600000015387,-0.06923752138575254 +247321,1236.605000015387,-0.06923763005421112 +247322,1236.6100000153872,-0.06923773867506153 +247323,1236.6150000153873,-0.06923784724832313 +247324,1236.6200000153874,-0.06923795577401531 +247325,1236.6250000153875,-0.06923806425215742 +247326,1236.6300000153876,-0.06923817268276879 +247327,1236.6350000153877,-0.06923828106586878 +247328,1236.6400000153878,-0.06923838940147671 +247329,1236.645000015388,-0.0692384976896119 +247330,1236.650000015388,-0.06923860593029368 +247331,1236.6550000153882,-0.06923871412354136 +247332,1236.6600000153883,-0.06923882226937422 +247333,1236.6650000153884,-0.06923893036781156 +247334,1236.6700000153885,-0.06923903841887268 +247335,1236.6750000153886,-0.0692391464225768 +247336,1236.6800000153887,-0.06923925437894322 +247337,1236.6850000153888,-0.06923936228799121 +247338,1236.690000015389,-0.06923947014974 +247339,1236.695000015389,-0.06923957796420882 +247340,1236.7000000153892,-0.06923968573141691 +247341,1236.7050000153893,-0.06923979345138351 +247342,1236.7100000153894,-0.06923990112412781 +247343,1236.7150000153895,-0.06924000874966903 +247344,1236.7200000153896,-0.06924011632802636 +247345,1236.7250000153897,-0.069240223859219 +247346,1236.7300000153898,-0.06924033134326613 +247347,1236.73500001539,-0.06924043878018689 +247348,1236.74000001539,-0.0692405461700005 +247349,1236.7450000153901,-0.06924065351272608 +247350,1236.7500000153902,-0.06924076080838279 +247351,1236.7550000153904,-0.06924086805698976 +247352,1236.7600000153905,-0.06924097525856612 +247353,1236.7650000153906,-0.06924108241313101 +247354,1236.7700000153907,-0.06924118952070354 +247355,1236.7750000153908,-0.06924129658130282 +247356,1236.780000015391,-0.06924140359494793 +247357,1236.785000015391,-0.06924151056165796 +247358,1236.7900000153911,-0.06924161748145201 +247359,1236.7950000153912,-0.06924172435434915 +247360,1236.8000000153913,-0.06924183118036843 +247361,1236.8050000153914,-0.06924193795952893 +247362,1236.8100000153916,-0.06924204469184969 +247363,1236.8150000153917,-0.06924215137734972 +247364,1236.8200000153918,-0.0692422580160481 +247365,1236.8250000153919,-0.06924236460796382 +247366,1236.830000015392,-0.06924247115311592 +247367,1236.835000015392,-0.06924257765152339 +247368,1236.8400000153922,-0.06924268410320523 +247369,1236.8450000153923,-0.06924279050818045 +247370,1236.8500000153924,-0.069242896866468 +247371,1236.8550000153925,-0.06924300317808688 +247372,1236.8600000153926,-0.06924310944305605 +247373,1236.8650000153928,-0.06924321566139446 +247374,1236.8700000153929,-0.06924332183312107 +247375,1236.875000015393,-0.06924342795825482 +247376,1236.880000015393,-0.06924353403681463 +247377,1236.8850000153932,-0.06924364006881943 +247378,1236.8900000153933,-0.06924374605428815 +247379,1236.8950000153934,-0.06924385199323971 +247380,1236.9000000153935,-0.06924395788569297 +247381,1236.9050000153936,-0.06924406373166685 +247382,1236.9100000153937,-0.06924416953118022 +247383,1236.9150000153938,-0.06924427528425198 +247384,1236.920000015394,-0.06924438099090097 +247385,1236.925000015394,-0.06924448665114606 +247386,1236.9300000153942,-0.06924459226500612 +247387,1236.9350000153943,-0.06924469783249997 +247388,1236.9400000153944,-0.06924480335364645 +247389,1236.9450000153945,-0.06924490882846437 +247390,1236.9500000153946,-0.0692450142569726 +247391,1236.9550000153947,-0.06924511963918989 +247392,1236.9600000153948,-0.06924522497513509 +247393,1236.965000015395,-0.06924533026482696 +247394,1236.970000015395,-0.0692454355082843 +247395,1236.9750000153952,-0.0692455407055259 +247396,1236.9800000153953,-0.06924564585657052 +247397,1236.9850000153954,-0.06924575096143691 +247398,1236.9900000153955,-0.06924585602014385 +247399,1236.9950000153956,-0.06924596103271005 +247400,1237.0000000153957,-0.06924606599915428 +247401,1237.0050000153958,-0.06924617091949525 +247402,1237.010000015396,-0.06924627579375171 +247403,1237.015000015396,-0.06924638062194234 +247404,1237.0200000153961,-0.06924648540408584 +247405,1237.0250000153962,-0.06924659014020094 +247406,1237.0300000153964,-0.06924669483030631 +247407,1237.0350000153965,-0.06924679947442063 +247408,1237.0400000153966,-0.06924690407256258 +247409,1237.0450000153967,-0.06924700862475082 +247410,1237.0500000153968,-0.069247113131004 +247411,1237.055000015397,-0.06924721759134078 +247412,1237.060000015397,-0.06924732200577981 +247413,1237.0650000153971,-0.0692474263743397 +247414,1237.0700000153972,-0.06924753069703908 +247415,1237.0750000153973,-0.06924763497389656 +247416,1237.0800000153974,-0.06924773920493078 +247417,1237.0850000153976,-0.06924784339016031 +247418,1237.0900000153977,-0.06924794752960375 +247419,1237.0950000153978,-0.06924805162327968 +247420,1237.1000000153979,-0.06924815567120668 +247421,1237.105000015398,-0.06924825967340331 +247422,1237.110000015398,-0.06924836362988815 +247423,1237.1150000153982,-0.06924846754067973 +247424,1237.1200000153983,-0.06924857140579661 +247425,1237.1250000153984,-0.06924867522525732 +247426,1237.1300000153985,-0.06924877899908038 +247427,1237.1350000153986,-0.06924888272728433 +247428,1237.1400000153988,-0.06924898640988766 +247429,1237.1450000153989,-0.06924909004690889 +247430,1237.150000015399,-0.06924919363836651 +247431,1237.155000015399,-0.069249297184279 +247432,1237.1600000153992,-0.06924940068466486 +247433,1237.1650000153993,-0.06924950413954252 +247434,1237.1700000153994,-0.0692496075489305 +247435,1237.1750000153995,-0.06924971091284722 +247436,1237.1800000153996,-0.06924981423131113 +247437,1237.1850000153997,-0.06924991750434069 +247438,1237.1900000153998,-0.06925002073195431 +247439,1237.1950000154,-0.06925012391417043 +247440,1237.2000000154,-0.06925022705100746 +247441,1237.2050000154002,-0.0692503301424838 +247442,1237.2100000154003,-0.06925043318861786 +247443,1237.2150000154004,-0.06925053618942803 +247444,1237.2200000154005,-0.06925063914493271 +247445,1237.2250000154006,-0.06925074205515024 +247446,1237.2300000154007,-0.06925084492009902 +247447,1237.2350000154008,-0.0692509477397974 +247448,1237.240000015401,-0.06925105051426372 +247449,1237.245000015401,-0.06925115324351636 +247450,1237.2500000154012,-0.06925125592757361 +247451,1237.2550000154013,-0.06925135856645383 +247452,1237.2600000154014,-0.06925146116017535 +247453,1237.2650000154015,-0.06925156370875643 +247454,1237.2700000154016,-0.06925166621221544 +247455,1237.2750000154017,-0.06925176867057065 +247456,1237.2800000154018,-0.06925187108384033 +247457,1237.285000015402,-0.06925197345204279 +247458,1237.290000015402,-0.06925207577519629 +247459,1237.2950000154021,-0.0692521780533191 +247460,1237.3000000154022,-0.06925228028642948 +247461,1237.3050000154024,-0.06925238247454567 +247462,1237.3100000154025,-0.06925248461768592 +247463,1237.3150000154026,-0.06925258671586847 +247464,1237.3200000154027,-0.06925268876911152 +247465,1237.3250000154028,-0.06925279077743332 +247466,1237.330000015403,-0.06925289274085206 +247467,1237.335000015403,-0.06925299465938596 +247468,1237.3400000154031,-0.0692530965330532 +247469,1237.3450000154032,-0.06925319836187196 +247470,1237.3500000154033,-0.06925330014586045 +247471,1237.3550000154034,-0.06925340188503681 +247472,1237.3600000154036,-0.06925350357941921 +247473,1237.3650000154037,-0.06925360522902582 +247474,1237.3700000154038,-0.06925370683387479 +247475,1237.3750000154039,-0.06925380839398423 +247476,1237.380000015404,-0.0692539099093723 +247477,1237.385000015404,-0.06925401138005711 +247478,1237.3900000154042,-0.06925411280605678 +247479,1237.3950000154043,-0.06925421418738942 +247480,1237.4000000154044,-0.06925431552407314 +247481,1237.4050000154045,-0.06925441681612603 +247482,1237.4100000154046,-0.06925451806356615 +247483,1237.4150000154048,-0.0692546192664116 +247484,1237.4200000154049,-0.06925472042468048 +247485,1237.425000015405,-0.06925482153839078 +247486,1237.430000015405,-0.06925492260756062 +247487,1237.4350000154052,-0.069255023632208 +247488,1237.4400000154053,-0.06925512461235098 +247489,1237.4450000154054,-0.06925522554800757 +247490,1237.4500000154055,-0.06925532643919584 +247491,1237.4550000154056,-0.06925542728593377 +247492,1237.4600000154057,-0.06925552808823936 +247493,1237.4650000154058,-0.06925562884613064 +247494,1237.470000015406,-0.06925572955962558 +247495,1237.475000015406,-0.06925583022874217 +247496,1237.4800000154062,-0.06925593085349839 +247497,1237.4850000154063,-0.06925603143391218 +247498,1237.4900000154064,-0.06925613197000155 +247499,1237.4950000154065,-0.06925623246178442 +247500,1237.5000000154066,-0.06925633290927875 +247501,1237.5050000154067,-0.06925643331250246 +247502,1237.5100000154068,-0.06925653367147351 +247503,1237.515000015407,-0.06925663398620979 +247504,1237.520000015407,-0.06925673425672924 +247505,1237.5250000154072,-0.06925683448304974 +247506,1237.5300000154073,-0.06925693466518922 +247507,1237.5350000154074,-0.06925703480316556 +247508,1237.5400000154075,-0.06925713489699661 +247509,1237.5450000154076,-0.06925723494670029 +247510,1237.5500000154077,-0.06925733495229446 +247511,1237.5550000154078,-0.06925743491379698 +247512,1237.560000015408,-0.06925753483122568 +247513,1237.565000015408,-0.06925763470459843 +247514,1237.5700000154081,-0.06925773453393307 +247515,1237.5750000154082,-0.06925783431924741 +247516,1237.5800000154084,-0.06925793406055929 +247517,1237.5850000154085,-0.0692580337578865 +247518,1237.5900000154086,-0.06925813341124687 +247519,1237.5950000154087,-0.0692582330206582 +247520,1237.6000000154088,-0.06925833258613827 +247521,1237.605000015409,-0.06925843210770487 +247522,1237.610000015409,-0.06925853158537576 +247523,1237.6150000154091,-0.06925863101916875 +247524,1237.6200000154092,-0.06925873040910156 +247525,1237.6250000154093,-0.06925882975519196 +247526,1237.6300000154095,-0.06925892905745767 +247527,1237.6350000154096,-0.06925902831591649 +247528,1237.6400000154097,-0.06925912753058609 +247529,1237.6450000154098,-0.06925922670148421 +247530,1237.65000001541,-0.06925932582862858 +247531,1237.65500001541,-0.06925942491203689 +247532,1237.66000001541,-0.06925952395172685 +247533,1237.6650000154102,-0.06925962294771615 +247534,1237.6700000154103,-0.06925972190002247 +247535,1237.6750000154104,-0.0692598208086635 +247536,1237.6800000154105,-0.06925991967365688 +247537,1237.6850000154107,-0.06926001849502031 +247538,1237.6900000154108,-0.06926011727277141 +247539,1237.6950000154109,-0.06926021600692785 +247540,1237.700000015411,-0.06926031469750725 +247541,1237.705000015411,-0.06926041334452726 +247542,1237.7100000154112,-0.06926051194800552 +247543,1237.7150000154113,-0.0692606105079596 +247544,1237.7200000154114,-0.06926070902440713 +247545,1237.7250000154115,-0.06926080749736574 +247546,1237.7300000154116,-0.06926090592685297 +247547,1237.7350000154117,-0.06926100431288644 +247548,1237.7400000154119,-0.06926110265548373 +247549,1237.745000015412,-0.06926120095466239 +247550,1237.750000015412,-0.06926129921044 +247551,1237.7550000154122,-0.0692613974228341 +247552,1237.7600000154123,-0.06926149559186227 +247553,1237.7650000154124,-0.06926159371754202 +247554,1237.7700000154125,-0.0692616917998909 +247555,1237.7750000154126,-0.06926178983892642 +247556,1237.7800000154127,-0.06926188783466611 +247557,1237.7850000154128,-0.06926198578712749 +247558,1237.790000015413,-0.06926208369632804 +247559,1237.795000015413,-0.06926218156228527 +247560,1237.8000000154132,-0.06926227938501665 +247561,1237.8050000154133,-0.06926237716453969 +247562,1237.8100000154134,-0.06926247490087184 +247563,1237.8150000154135,-0.06926257259403057 +247564,1237.8200000154136,-0.06926267024403335 +247565,1237.8250000154137,-0.06926276785089762 +247566,1237.8300000154138,-0.06926286541464083 +247567,1237.835000015414,-0.0692629629352804 +247568,1237.840000015414,-0.06926306041283377 +247569,1237.8450000154141,-0.06926315784731836 +247570,1237.8500000154143,-0.06926325523875158 +247571,1237.8550000154144,-0.06926335258715086 +247572,1237.8600000154145,-0.06926344989253355 +247573,1237.8650000154146,-0.06926354715491706 +247574,1237.8700000154147,-0.0692636443743188 +247575,1237.8750000154148,-0.06926374155075612 +247576,1237.880000015415,-0.06926383868424639 +247577,1237.885000015415,-0.06926393577480698 +247578,1237.8900000154151,-0.06926403282245523 +247579,1237.8950000154152,-0.0692641298272085 +247580,1237.9000000154153,-0.06926422678908413 +247581,1237.9050000154155,-0.06926432370809944 +247582,1237.9100000154156,-0.06926442058427175 +247583,1237.9150000154157,-0.06926451741761838 +247584,1237.9200000154158,-0.06926461420815665 +247585,1237.925000015416,-0.06926471095590384 +247586,1237.930000015416,-0.06926480766087727 +247587,1237.935000015416,-0.0692649043230942 +247588,1237.9400000154162,-0.06926500094257193 +247589,1237.9450000154163,-0.06926509751932773 +247590,1237.9500000154164,-0.06926519405337883 +247591,1237.9550000154165,-0.06926529054474254 +247592,1237.9600000154167,-0.06926538699343608 +247593,1237.9650000154168,-0.06926548339947669 +247594,1237.9700000154169,-0.06926557976288161 +247595,1237.975000015417,-0.06926567608366807 +247596,1237.980000015417,-0.06926577236185329 +247597,1237.9850000154172,-0.06926586859745446 +247598,1237.9900000154173,-0.06926596479048881 +247599,1237.9950000154174,-0.06926606094097354 +247600,1238.0000000154175,-0.06926615704892582 +247601,1238.0050000154176,-0.06926625311436285 +247602,1238.0100000154177,-0.06926634913730181 +247603,1238.0150000154179,-0.06926644511775985 +247604,1238.020000015418,-0.06926654105575415 +247605,1238.025000015418,-0.06926663695130185 +247606,1238.0300000154182,-0.06926673280442008 +247607,1238.0350000154183,-0.06926682861512602 +247608,1238.0400000154184,-0.06926692438343678 +247609,1238.0450000154185,-0.06926702010936947 +247610,1238.0500000154186,-0.06926711579294123 +247611,1238.0550000154187,-0.06926721143416915 +247612,1238.0600000154188,-0.06926730703307035 +247613,1238.065000015419,-0.06926740258966191 +247614,1238.070000015419,-0.06926749810396092 +247615,1238.0750000154192,-0.06926759357598447 +247616,1238.0800000154193,-0.06926768900574962 +247617,1238.0850000154194,-0.06926778439327343 +247618,1238.0900000154195,-0.06926787973857297 +247619,1238.0950000154196,-0.06926797504166529 +247620,1238.1000000154197,-0.06926807030256746 +247621,1238.1050000154198,-0.06926816552129647 +247622,1238.11000001542,-0.06926826069786937 +247623,1238.11500001542,-0.06926835583230317 +247624,1238.1200000154201,-0.0692684509246149 +247625,1238.1250000154203,-0.06926854597482157 +247626,1238.1300000154204,-0.06926864098294015 +247627,1238.1350000154205,-0.06926873594898766 +247628,1238.1400000154206,-0.06926883087298108 +247629,1238.1450000154207,-0.0692689257549374 +247630,1238.1500000154208,-0.06926902059487357 +247631,1238.155000015421,-0.06926911539280656 +247632,1238.160000015421,-0.06926921014875331 +247633,1238.1650000154211,-0.0692693048627308 +247634,1238.1700000154212,-0.06926939953475593 +247635,1238.1750000154213,-0.06926949416484568 +247636,1238.1800000154215,-0.06926958875301696 +247637,1238.1850000154216,-0.06926968329928669 +247638,1238.1900000154217,-0.06926977780367176 +247639,1238.1950000154218,-0.0692698722661891 +247640,1238.200000015422,-0.06926996668685562 +247641,1238.205000015422,-0.06927006106568817 +247642,1238.210000015422,-0.06927015540270366 +247643,1238.2150000154222,-0.06927024969791898 +247644,1238.2200000154223,-0.06927034395135097 +247645,1238.2250000154224,-0.0692704381630165 +247646,1238.2300000154225,-0.06927053233293246 +247647,1238.2350000154227,-0.06927062646111563 +247648,1238.2400000154228,-0.0692707205475829 +247649,1238.2450000154229,-0.06927081459235108 +247650,1238.250000015423,-0.06927090859543703 +247651,1238.255000015423,-0.06927100255685752 +247652,1238.2600000154232,-0.06927109647662938 +247653,1238.2650000154233,-0.06927119035476943 +247654,1238.2700000154234,-0.06927128419129445 +247655,1238.2750000154235,-0.06927137798622125 +247656,1238.2800000154236,-0.06927147173956659 +247657,1238.2850000154237,-0.06927156545134726 +247658,1238.2900000154239,-0.06927165912158002 +247659,1238.295000015424,-0.06927175275028162 +247660,1238.300000015424,-0.06927184633746884 +247661,1238.3050000154242,-0.06927193988315841 +247662,1238.3100000154243,-0.06927203338736708 +247663,1238.3150000154244,-0.06927212685011157 +247664,1238.3200000154245,-0.06927222027140861 +247665,1238.3250000154246,-0.06927231365127492 +247666,1238.3300000154247,-0.06927240698972723 +247667,1238.3350000154248,-0.06927250028678221 +247668,1238.340000015425,-0.06927259354245656 +247669,1238.345000015425,-0.069272686756767 +247670,1238.3500000154252,-0.06927277992973019 +247671,1238.3550000154253,-0.0692728730613628 +247672,1238.3600000154254,-0.06927296615168152 +247673,1238.3650000154255,-0.069273059200703 +247674,1238.3700000154256,-0.06927315220844388 +247675,1238.3750000154257,-0.06927324517492083 +247676,1238.3800000154258,-0.06927333810015046 +247677,1238.385000015426,-0.06927343098414943 +247678,1238.390000015426,-0.06927352382693436 +247679,1238.3950000154261,-0.06927361662852186 +247680,1238.4000000154263,-0.06927370938892854 +247681,1238.4050000154264,-0.06927380210817101 +247682,1238.4100000154265,-0.06927389478626589 +247683,1238.4150000154266,-0.06927398742322972 +247684,1238.4200000154267,-0.06927408001907914 +247685,1238.4250000154268,-0.06927417257383067 +247686,1238.430000015427,-0.06927426508750091 +247687,1238.435000015427,-0.06927435756010643 +247688,1238.4400000154271,-0.06927444999166375 +247689,1238.4450000154272,-0.06927454238218946 +247690,1238.4500000154273,-0.06927463473170006 +247691,1238.4550000154275,-0.06927472704021212 +247692,1238.4600000154276,-0.06927481930774212 +247693,1238.4650000154277,-0.06927491153430662 +247694,1238.4700000154278,-0.06927500371992212 +247695,1238.475000015428,-0.06927509586460513 +247696,1238.480000015428,-0.06927518796837213 +247697,1238.485000015428,-0.06927528003123964 +247698,1238.4900000154282,-0.06927537205322414 +247699,1238.4950000154283,-0.06927546403434207 +247700,1238.5000000154284,-0.06927555597460992 +247701,1238.5050000154285,-0.06927564787404417 +247702,1238.5100000154287,-0.06927573973266125 +247703,1238.5150000154288,-0.06927583155047763 +247704,1238.5200000154289,-0.06927592332750974 +247705,1238.525000015429,-0.06927601506377402 +247706,1238.530000015429,-0.0692761067592869 +247707,1238.5350000154292,-0.0692761984140648 +247708,1238.5400000154293,-0.06927629002812412 +247709,1238.5450000154294,-0.06927638160148128 +247710,1238.5500000154295,-0.06927647313415267 +247711,1238.5550000154296,-0.0692765646261547 +247712,1238.5600000154298,-0.06927665607750373 +247713,1238.5650000154299,-0.06927674748821618 +247714,1238.57000001543,-0.06927683885830838 +247715,1238.57500001543,-0.06927693018779671 +247716,1238.5800000154302,-0.06927702147669752 +247717,1238.5850000154303,-0.06927711272502718 +247718,1238.5900000154304,-0.06927720393280203 +247719,1238.5950000154305,-0.06927729510003838 +247720,1238.6000000154306,-0.0692773862267526 +247721,1238.6050000154307,-0.06927747731296097 +247722,1238.6100000154308,-0.06927756835867983 +247723,1238.615000015431,-0.06927765936392549 +247724,1238.620000015431,-0.06927775032871425 +247725,1238.6250000154312,-0.06927784125306241 +247726,1238.6300000154313,-0.06927793213698624 +247727,1238.6350000154314,-0.06927802298050204 +247728,1238.6400000154315,-0.06927811378362607 +247729,1238.6450000154316,-0.06927820454637461 +247730,1238.6500000154317,-0.06927829526876392 +247731,1238.6550000154318,-0.06927838595081023 +247732,1238.660000015432,-0.06927847659252981 +247733,1238.665000015432,-0.0692785671939389 +247734,1238.6700000154322,-0.06927865775505374 +247735,1238.6750000154323,-0.06927874827589052 +247736,1238.6800000154324,-0.0692788387564655 +247737,1238.6850000154325,-0.06927892919679485 +247738,1238.6900000154326,-0.0692790195968948 +247739,1238.6950000154327,-0.06927910995678155 +247740,1238.7000000154328,-0.06927920027647129 +247741,1238.705000015433,-0.0692792905559802 +247742,1238.710000015433,-0.06927938079532446 +247743,1238.7150000154331,-0.06927947099452023 +247744,1238.7200000154332,-0.06927956115358368 +247745,1238.7250000154334,-0.06927965127253095 +247746,1238.7300000154335,-0.06927974135137824 +247747,1238.7350000154336,-0.06927983139014164 +247748,1238.7400000154337,-0.0692799213888373 +247749,1238.7450000154338,-0.06928001134748138 +247750,1238.750000015434,-0.06928010126608997 +247751,1238.755000015434,-0.06928019114467919 +247752,1238.7600000154341,-0.06928028098326516 +247753,1238.7650000154342,-0.06928037078186397 +247754,1238.7700000154343,-0.06928046054049171 +247755,1238.7750000154344,-0.06928055025916448 +247756,1238.7800000154346,-0.06928063993789835 +247757,1238.7850000154347,-0.0692807295767094 +247758,1238.7900000154348,-0.0692808191756137 +247759,1238.7950000154349,-0.06928090873462732 +247760,1238.800000015435,-0.06928099825376628 +247761,1238.805000015435,-0.06928108773304666 +247762,1238.8100000154352,-0.0692811771724845 +247763,1238.8150000154353,-0.06928126657209581 +247764,1238.8200000154354,-0.06928135593189663 +247765,1238.8250000154355,-0.06928144525190298 +247766,1238.8300000154356,-0.06928153453213086 +247767,1238.8350000154358,-0.06928162377259629 +247768,1238.8400000154359,-0.06928171297331527 +247769,1238.845000015436,-0.0692818021343038 +247770,1238.850000015436,-0.06928189125557783 +247771,1238.8550000154362,-0.06928198033715337 +247772,1238.8600000154363,-0.06928206937904638 +247773,1238.8650000154364,-0.06928215838127283 +247774,1238.8700000154365,-0.06928224734384866 +247775,1238.8750000154366,-0.06928233626678985 +247776,1238.8800000154367,-0.06928242515011235 +247777,1238.8850000154368,-0.06928251399383206 +247778,1238.890000015437,-0.06928260279796493 +247779,1238.895000015437,-0.0692826915625269 +247780,1238.9000000154372,-0.06928278028753386 +247781,1238.9050000154373,-0.06928286897300173 +247782,1238.9100000154374,-0.06928295761894641 +247783,1238.9150000154375,-0.06928304622538381 +247784,1238.9200000154376,-0.06928313479232982 +247785,1238.9250000154377,-0.06928322331980032 +247786,1238.9300000154378,-0.06928331180781118 +247787,1238.935000015438,-0.06928340025637827 +247788,1238.940000015438,-0.06928348866551746 +247789,1238.9450000154382,-0.06928357703524463 +247790,1238.9500000154383,-0.06928366536557558 +247791,1238.9550000154384,-0.06928375365652617 +247792,1238.9600000154385,-0.06928384190811225 +247793,1238.9650000154386,-0.06928393012034965 +247794,1238.9700000154387,-0.06928401829325417 +247795,1238.9750000154388,-0.06928410642684166 +247796,1238.980000015439,-0.0692841945211279 +247797,1238.985000015439,-0.06928428257612872 +247798,1238.9900000154391,-0.06928437059185988 +247799,1238.9950000154392,-0.0692844585683372 +247800,1239.0000000154394,-0.06928454650557646 +247801,1239.0050000154395,-0.06928463440359342 +247802,1239.0100000154396,-0.06928472226240384 +247803,1239.0150000154397,-0.06928481008202353 +247804,1239.0200000154398,-0.0692848978624682 +247805,1239.02500001544,-0.06928498560375361 +247806,1239.03000001544,-0.0692850733058955 +247807,1239.0350000154401,-0.06928516096890963 +247808,1239.0400000154402,-0.06928524859281171 +247809,1239.0450000154403,-0.06928533617761745 +247810,1239.0500000154404,-0.06928542372334259 +247811,1239.0550000154406,-0.06928551123000283 +247812,1239.0600000154407,-0.06928559869761386 +247813,1239.0650000154408,-0.06928568612619139 +247814,1239.0700000154409,-0.0692857735157511 +247815,1239.075000015441,-0.06928586086630868 +247816,1239.080000015441,-0.06928594817787981 +247817,1239.0850000154412,-0.06928603545048014 +247818,1239.0900000154413,-0.06928612268412533 +247819,1239.0950000154414,-0.06928620987883106 +247820,1239.1000000154415,-0.06928629703461296 +247821,1239.1050000154416,-0.06928638415148669 +247822,1239.1100000154418,-0.06928647122946786 +247823,1239.1150000154419,-0.06928655826857212 +247824,1239.120000015442,-0.06928664526881509 +247825,1239.125000015442,-0.06928673223021238 +247826,1239.1300000154422,-0.06928681915277961 +247827,1239.1350000154423,-0.06928690603653236 +247828,1239.1400000154424,-0.06928699288148624 +247829,1239.1450000154425,-0.06928707968765685 +247830,1239.1500000154426,-0.06928716645505974 +247831,1239.1550000154427,-0.06928725318371051 +247832,1239.1600000154428,-0.06928733987362473 +247833,1239.165000015443,-0.06928742652481797 +247834,1239.170000015443,-0.06928751313730576 +247835,1239.1750000154432,-0.06928759971110365 +247836,1239.1800000154433,-0.0692876862462272 +247837,1239.1850000154434,-0.06928777274269197 +247838,1239.1900000154435,-0.06928785920051346 +247839,1239.1950000154436,-0.06928794561970718 +247840,1239.2000000154437,-0.06928803200028866 +247841,1239.2050000154438,-0.06928811834227341 +247842,1239.210000015444,-0.06928820464567693 +247843,1239.215000015444,-0.06928829091051474 +247844,1239.2200000154442,-0.0692883771368023 +247845,1239.2250000154443,-0.0692884633245551 +247846,1239.2300000154444,-0.06928854947378862 +247847,1239.2350000154445,-0.06928863558451834 +247848,1239.2400000154446,-0.0692887216567597 +247849,1239.2450000154447,-0.06928880769052818 +247850,1239.2500000154448,-0.06928889368583924 +247851,1239.255000015445,-0.0692889796427083 +247852,1239.260000015445,-0.0692890655611508 +247853,1239.2650000154451,-0.06928915144118218 +247854,1239.2700000154452,-0.06928923728281787 +247855,1239.2750000154454,-0.06928932308607327 +247856,1239.2800000154455,-0.0692894088509638 +247857,1239.2850000154456,-0.06928949457750486 +247858,1239.2900000154457,-0.06928958026571184 +247859,1239.2950000154458,-0.06928966591560017 +247860,1239.300000015446,-0.06928975152718521 +247861,1239.305000015446,-0.06928983710048232 +247862,1239.3100000154461,-0.0692899226355069 +247863,1239.3150000154462,-0.06929000813227432 +247864,1239.3200000154463,-0.0692900935907999 +247865,1239.3250000154464,-0.06929017901109903 +247866,1239.3300000154466,-0.06929026439318704 +247867,1239.3350000154467,-0.06929034973707929 +247868,1239.3400000154468,-0.06929043504279107 +247869,1239.3450000154469,-0.06929052031033775 +247870,1239.350000015447,-0.06929060553973464 +247871,1239.355000015447,-0.06929069073099704 +247872,1239.3600000154472,-0.06929077588414027 +247873,1239.3650000154473,-0.06929086099917962 +247874,1239.3700000154474,-0.0692909460761304 +247875,1239.3750000154475,-0.06929103111500788 +247876,1239.3800000154476,-0.06929111611582735 +247877,1239.3850000154478,-0.06929120107860408 +247878,1239.3900000154479,-0.06929128600335334 +247879,1239.395000015448,-0.0692913708900904 +247880,1239.400000015448,-0.0692914557388305 +247881,1239.4050000154482,-0.06929154054958889 +247882,1239.4100000154483,-0.06929162532238083 +247883,1239.4150000154484,-0.06929171005722154 +247884,1239.4200000154485,-0.06929179475412625 +247885,1239.4250000154486,-0.06929187941311019 +247886,1239.4300000154487,-0.06929196403418857 +247887,1239.4350000154488,-0.0692920486173766 +247888,1239.440000015449,-0.0692921331626895 +247889,1239.445000015449,-0.06929221767014246 +247890,1239.4500000154492,-0.06929230213975066 +247891,1239.4550000154493,-0.06929238657152928 +247892,1239.4600000154494,-0.06929247096549351 +247893,1239.4650000154495,-0.06929255532165851 +247894,1239.4700000154496,-0.06929263964003947 +247895,1239.4750000154497,-0.06929272392065153 +247896,1239.4800000154498,-0.06929280816350983 +247897,1239.48500001545,-0.06929289236862954 +247898,1239.49000001545,-0.06929297653602577 +247899,1239.4950000154502,-0.0692930606657137 +247900,1239.5000000154503,-0.06929314475770841 +247901,1239.5050000154504,-0.06929322881202504 +247902,1239.5100000154505,-0.0692933128286787 +247903,1239.5150000154506,-0.06929339680768452 +247904,1239.5200000154507,-0.06929348074905757 +247905,1239.5250000154508,-0.06929356465281294 +247906,1239.530000015451,-0.06929364851896574 +247907,1239.535000015451,-0.06929373234753104 +247908,1239.5400000154511,-0.06929381613852394 +247909,1239.5450000154513,-0.06929389989195947 +247910,1239.5500000154514,-0.06929398360785272 +247911,1239.5550000154515,-0.06929406728621872 +247912,1239.5600000154516,-0.06929415092707256 +247913,1239.5650000154517,-0.06929423453042924 +247914,1239.5700000154518,-0.06929431809630382 +247915,1239.575000015452,-0.06929440162471133 +247916,1239.580000015452,-0.06929448511566678 +247917,1239.5850000154521,-0.06929456856918521 +247918,1239.5900000154522,-0.06929465198528163 +247919,1239.5950000154523,-0.06929473536397103 +247920,1239.6000000154525,-0.06929481870526841 +247921,1239.6050000154526,-0.06929490200918878 +247922,1239.6100000154527,-0.0692949852757471 +247923,1239.6150000154528,-0.06929506850495837 +247924,1239.620000015453,-0.06929515169683755 +247925,1239.625000015453,-0.06929523485139961 +247926,1239.630000015453,-0.06929531796865954 +247927,1239.6350000154532,-0.06929540104863224 +247928,1239.6400000154533,-0.06929548409133271 +247929,1239.6450000154534,-0.06929556709677585 +247930,1239.6500000154535,-0.06929565006497662 +247931,1239.6550000154537,-0.06929573299594996 +247932,1239.6600000154538,-0.06929581588971077 +247933,1239.6650000154539,-0.06929589874627397 +247934,1239.670000015454,-0.06929598156565446 +247935,1239.675000015454,-0.06929606434786717 +247936,1239.6800000154542,-0.06929614709292699 +247937,1239.6850000154543,-0.06929622980084879 +247938,1239.6900000154544,-0.06929631247164748 +247939,1239.6950000154545,-0.06929639510533794 +247940,1239.7000000154546,-0.06929647770193502 +247941,1239.7050000154547,-0.0692965602614536 +247942,1239.7100000154549,-0.06929664278390855 +247943,1239.715000015455,-0.06929672526931471 +247944,1239.720000015455,-0.06929680771768691 +247945,1239.7250000154552,-0.06929689012904003 +247946,1239.7300000154553,-0.06929697250338887 +247947,1239.7350000154554,-0.06929705484074829 +247948,1239.7400000154555,-0.06929713714113309 +247949,1239.7450000154556,-0.06929721940455807 +247950,1239.7500000154557,-0.06929730163103809 +247951,1239.7550000154558,-0.0692973838205879 +247952,1239.760000015456,-0.06929746597322232 +247953,1239.765000015456,-0.06929754808895616 +247954,1239.7700000154562,-0.06929763016780419 +247955,1239.7750000154563,-0.06929771220978116 +247956,1239.7800000154564,-0.0692977942149019 +247957,1239.7850000154565,-0.06929787618318113 +247958,1239.7900000154566,-0.06929795811463361 +247959,1239.7950000154567,-0.06929804000927411 +247960,1239.8000000154568,-0.0692981218671174 +247961,1239.805000015457,-0.06929820368817817 +247962,1239.810000015457,-0.06929828547247117 +247963,1239.8150000154571,-0.06929836722001116 +247964,1239.8200000154573,-0.06929844893081283 +247965,1239.8250000154574,-0.0692985306048909 +247966,1239.8300000154575,-0.0692986122422601 +247967,1239.8350000154576,-0.06929869384293509 +247968,1239.8400000154577,-0.06929877540693062 +247969,1239.8450000154578,-0.06929885693426135 +247970,1239.850000015458,-0.06929893842494197 +247971,1239.855000015458,-0.06929901987898716 +247972,1239.8600000154581,-0.0692991012964116 +247973,1239.8650000154582,-0.06929918267722995 +247974,1239.8700000154583,-0.06929926402145686 +247975,1239.8750000154585,-0.069299345329107 +247976,1239.8800000154586,-0.069299426600195 +247977,1239.8850000154587,-0.06929950783473554 +247978,1239.8900000154588,-0.06929958903274322 +247979,1239.895000015459,-0.06929967019423267 +247980,1239.900000015459,-0.06929975131921852 +247981,1239.905000015459,-0.06929983240771538 +247982,1239.9100000154592,-0.06929991345973788 +247983,1239.9150000154593,-0.06929999447530061 +247984,1239.9200000154594,-0.06930007545441816 +247985,1239.9250000154595,-0.06930015639710514 +247986,1239.9300000154597,-0.06930023730337613 +247987,1239.9350000154598,-0.06930031817324571 +247988,1239.9400000154599,-0.06930039900672845 +247989,1239.94500001546,-0.06930047980383892 +247990,1239.95000001546,-0.06930056056459169 +247991,1239.9550000154602,-0.0693006412890013 +247992,1239.9600000154603,-0.0693007219770823 +247993,1239.9650000154604,-0.06930080262884926 +247994,1239.9700000154605,-0.06930088324431669 +247995,1239.9750000154606,-0.06930096382349911 +247996,1239.9800000154607,-0.06930104436641106 +247997,1239.9850000154609,-0.06930112487306707 +247998,1239.990000015461,-0.06930120534348164 +247999,1239.995000015461,-0.06930128577766928 +248000,1240.0000000154612,-0.06930136617564447 +248001,1240.0050000154613,-0.06930144653742173 +248002,1240.0100000154614,-0.06930152686301555 +248003,1240.0150000154615,-0.0693016071524404 +248004,1240.0200000154616,-0.06930168740571076 +248005,1240.0250000154617,-0.06930176762284108 +248006,1240.0300000154618,-0.06930184780384585 +248007,1240.035000015462,-0.0693019279487395 +248008,1240.040000015462,-0.06930200805753652 +248009,1240.0450000154622,-0.06930208813025131 +248010,1240.0500000154623,-0.06930216816689834 +248011,1240.0550000154624,-0.06930224816749204 +248012,1240.0600000154625,-0.06930232813204683 +248013,1240.0650000154626,-0.06930240806057712 +248014,1240.0700000154627,-0.06930248795309736 +248015,1240.0750000154628,-0.06930256780962192 +248016,1240.080000015463,-0.06930264763016522 +248017,1240.085000015463,-0.06930272741474165 +248018,1240.0900000154631,-0.06930280716336562 +248019,1240.0950000154633,-0.06930288687605148 +248020,1240.1000000154634,-0.06930296655281364 +248021,1240.1050000154635,-0.06930304619366645 +248022,1240.1100000154636,-0.06930312579862428 +248023,1240.1150000154637,-0.0693032053677015 +248024,1240.1200000154638,-0.06930328490091246 +248025,1240.125000015464,-0.06930336439827152 +248026,1240.130000015464,-0.06930344385979299 +248027,1240.1350000154641,-0.06930352328549122 +248028,1240.1400000154642,-0.06930360267538056 +248029,1240.1450000154643,-0.06930368202947532 +248030,1240.1500000154645,-0.0693037613477898 +248031,1240.1550000154646,-0.06930384063033833 +248032,1240.1600000154647,-0.06930391987713522 +248033,1240.1650000154648,-0.06930399908819475 +248034,1240.170000015465,-0.06930407826353123 +248035,1240.175000015465,-0.06930415740315894 +248036,1240.180000015465,-0.06930423650709217 +248037,1240.1850000154652,-0.0693043155753452 +248038,1240.1900000154653,-0.06930439460793227 +248039,1240.1950000154654,-0.06930447360486768 +248040,1240.2000000154655,-0.06930455256616565 +248041,1240.2050000154657,-0.06930463149184045 +248042,1240.2100000154658,-0.06930471038190635 +248043,1240.2150000154659,-0.06930478923637755 +248044,1240.220000015466,-0.0693048680552683 +248045,1240.225000015466,-0.06930494683859283 +248046,1240.2300000154662,-0.06930502558636537 +248047,1240.2350000154663,-0.0693051042986001 +248048,1240.2400000154664,-0.06930518297531127 +248049,1240.2450000154665,-0.06930526161651307 +248050,1240.2500000154666,-0.06930534022221968 +248051,1240.2550000154667,-0.06930541879244531 +248052,1240.2600000154669,-0.06930549732720413 +248053,1240.265000015467,-0.06930557582651035 +248054,1240.270000015467,-0.06930565429037812 +248055,1240.2750000154672,-0.06930573271882161 +248056,1240.2800000154673,-0.06930581111185498 +248057,1240.2850000154674,-0.0693058894694924 +248058,1240.2900000154675,-0.06930596779174801 +248059,1240.2950000154676,-0.06930604607863594 +248060,1240.3000000154677,-0.06930612433017035 +248061,1240.3050000154678,-0.06930620254636535 +248062,1240.310000015468,-0.06930628072723509 +248063,1240.315000015468,-0.06930635887279367 +248064,1240.3200000154682,-0.0693064369830552 +248065,1240.3250000154683,-0.06930651505803383 +248066,1240.3300000154684,-0.06930659309774362 +248067,1240.3350000154685,-0.06930667110219867 +248068,1240.3400000154686,-0.06930674907141308 +248069,1240.3450000154687,-0.06930682700540093 +248070,1240.3500000154688,-0.0693069049041763 +248071,1240.355000015469,-0.06930698276775327 +248072,1240.360000015469,-0.0693070605961459 +248073,1240.3650000154691,-0.06930713838936825 +248074,1240.3700000154693,-0.06930721614743438 +248075,1240.3750000154694,-0.06930729387035832 +248076,1240.3800000154695,-0.06930737155815413 +248077,1240.3850000154696,-0.06930744921083586 +248078,1240.3900000154697,-0.06930752682841751 +248079,1240.3950000154698,-0.06930760441091312 +248080,1240.40000001547,-0.0693076819583367 +248081,1240.40500001547,-0.06930775947070228 +248082,1240.4100000154701,-0.06930783694802387 +248083,1240.4150000154702,-0.06930791439031544 +248084,1240.4200000154704,-0.06930799179759103 +248085,1240.4250000154705,-0.0693080691698646 +248086,1240.4300000154706,-0.06930814650715013 +248087,1240.4350000154707,-0.06930822380946161 +248088,1240.4400000154708,-0.06930830107681302 +248089,1240.445000015471,-0.0693083783092183 +248090,1240.450000015471,-0.06930845550669144 +248091,1240.4550000154711,-0.06930853266924639 +248092,1240.4600000154712,-0.06930860979689708 +248093,1240.4650000154713,-0.06930868688965747 +248094,1240.4700000154714,-0.06930876394754149 +248095,1240.4750000154716,-0.06930884097056306 +248096,1240.4800000154717,-0.06930891795873612 +248097,1240.4850000154718,-0.06930899491207458 +248098,1240.4900000154719,-0.06930907183059236 +248099,1240.495000015472,-0.06930914871430338 +248100,1240.500000015472,-0.06930922556322151 +248101,1240.5050000154722,-0.06930930237736069 +248102,1240.5100000154723,-0.06930937915673475 +248103,1240.5150000154724,-0.06930945590135762 +248104,1240.5200000154725,-0.06930953261124317 +248105,1240.5250000154726,-0.06930960928640527 +248106,1240.5300000154728,-0.06930968592685778 +248107,1240.5350000154729,-0.06930976253261457 +248108,1240.540000015473,-0.0693098391036895 +248109,1240.545000015473,-0.0693099156400964 +248110,1240.5500000154732,-0.06930999214184914 +248111,1240.5550000154733,-0.06931006860896154 +248112,1240.5600000154734,-0.06931014504144742 +248113,1240.5650000154735,-0.06931022143932061 +248114,1240.5700000154736,-0.06931029780259494 +248115,1240.5750000154737,-0.06931037413128424 +248116,1240.5800000154738,-0.06931045042540229 +248117,1240.585000015474,-0.06931052668496292 +248118,1240.590000015474,-0.0693106029099799 +248119,1240.5950000154742,-0.06931067910046702 +248120,1240.6000000154743,-0.0693107552564381 +248121,1240.6050000154744,-0.06931083137790689 +248122,1240.6100000154745,-0.06931090746488718 +248123,1240.6150000154746,-0.06931098351739273 +248124,1240.6200000154747,-0.0693110595354373 +248125,1240.6250000154748,-0.06931113551903463 +248126,1240.630000015475,-0.0693112114681985 +248127,1240.635000015475,-0.06931128738294265 +248128,1240.6400000154752,-0.06931136326328081 +248129,1240.6450000154753,-0.06931143910922671 +248130,1240.6500000154754,-0.06931151492079408 +248131,1240.6550000154755,-0.06931159069799665 +248132,1240.6600000154756,-0.06931166644084813 +248133,1240.6650000154757,-0.06931174214936223 +248134,1240.6700000154758,-0.06931181782355265 +248135,1240.675000015476,-0.06931189346343312 +248136,1240.680000015476,-0.06931196906901729 +248137,1240.6850000154761,-0.06931204464031887 +248138,1240.6900000154762,-0.06931212017735153 +248139,1240.6950000154764,-0.06931219568012895 +248140,1240.7000000154765,-0.06931227114866481 +248141,1240.7050000154766,-0.06931234658297276 +248142,1240.7100000154767,-0.06931242198306647 +248143,1240.7150000154768,-0.06931249734895958 +248144,1240.720000015477,-0.06931257268066575 +248145,1240.725000015477,-0.06931264797819862 +248146,1240.7300000154771,-0.06931272324157182 +248147,1240.7350000154772,-0.06931279847079898 +248148,1240.7400000154773,-0.06931287366589373 +248149,1240.7450000154774,-0.06931294882686967 +248150,1240.7500000154776,-0.06931302395374044 +248151,1240.7550000154777,-0.06931309904651962 +248152,1240.7600000154778,-0.06931317410522084 +248153,1240.7650000154779,-0.06931324912985767 +248154,1240.770000015478,-0.0693133241204437 +248155,1240.775000015478,-0.06931339907699254 +248156,1240.7800000154782,-0.06931347399951775 +248157,1240.7850000154783,-0.0693135488880329 +248158,1240.7900000154784,-0.06931362374255155 +248159,1240.7950000154785,-0.0693136985630873 +248160,1240.8000000154786,-0.06931377334965368 +248161,1240.8050000154788,-0.06931384810226422 +248162,1240.8100000154789,-0.06931392282093249 +248163,1240.815000015479,-0.06931399750567202 +248164,1240.820000015479,-0.06931407215649635 +248165,1240.8250000154792,-0.069314146773419 +248166,1240.8300000154793,-0.06931422135645349 +248167,1240.8350000154794,-0.06931429590561333 +248168,1240.8400000154795,-0.06931437042091206 +248169,1240.8450000154796,-0.06931444490236315 +248170,1240.8500000154797,-0.06931451934998012 +248171,1240.8550000154798,-0.06931459376377645 +248172,1240.86000001548,-0.06931466814376566 +248173,1240.86500001548,-0.0693147424899612 +248174,1240.8700000154802,-0.06931481680237653 +248175,1240.8750000154803,-0.06931489108102515 +248176,1240.8800000154804,-0.06931496532592053 +248177,1240.8850000154805,-0.0693150395370761 +248178,1240.8900000154806,-0.06931511371450534 +248179,1240.8950000154807,-0.06931518785822169 +248180,1240.9000000154808,-0.06931526196823859 +248181,1240.905000015481,-0.06931533604456948 +248182,1240.910000015481,-0.06931541008722779 +248183,1240.9150000154812,-0.06931548409622694 +248184,1240.9200000154813,-0.06931555807158035 +248185,1240.9250000154814,-0.06931563201330146 +248186,1240.9300000154815,-0.06931570592140364 +248187,1240.9350000154816,-0.06931577979590031 +248188,1240.9400000154817,-0.06931585363680487 +248189,1240.9450000154818,-0.06931592744413072 +248190,1240.950000015482,-0.06931600121789123 +248191,1240.955000015482,-0.06931607495809979 +248192,1240.9600000154821,-0.06931614866476977 +248193,1240.9650000154822,-0.06931622233791454 +248194,1240.9700000154824,-0.06931629597754746 +248195,1240.9750000154825,-0.0693163695836819 +248196,1240.9800000154826,-0.06931644315633119 +248197,1240.9850000154827,-0.0693165166955087 +248198,1240.9900000154828,-0.06931659020122775 +248199,1240.995000015483,-0.06931666367350171 +248200,1241.000000015483,-0.06931673711234387 +248201,1241.0050000154831,-0.0693168105177676 +248202,1241.0100000154832,-0.06931688388978617 +248203,1241.0150000154833,-0.06931695722841291 +248204,1241.0200000154834,-0.06931703053366116 +248205,1241.0250000154836,-0.06931710380554418 +248206,1241.0300000154837,-0.06931717704407528 +248207,1241.0350000154838,-0.06931725024926776 +248208,1241.0400000154839,-0.0693173234211349 +248209,1241.045000015484,-0.06931739655968998 +248210,1241.050000015484,-0.06931746966494627 +248211,1241.0550000154842,-0.06931754273691705 +248212,1241.0600000154843,-0.06931761577561557 +248213,1241.0650000154844,-0.06931768878105508 +248214,1241.0700000154845,-0.06931776175324886 +248215,1241.0750000154846,-0.06931783469221015 +248216,1241.0800000154848,-0.06931790759795216 +248217,1241.0850000154849,-0.06931798047048815 +248218,1241.090000015485,-0.06931805330983137 +248219,1241.095000015485,-0.06931812611599501 +248220,1241.1000000154852,-0.06931819888899231 +248221,1241.1050000154853,-0.06931827162883647 +248222,1241.1100000154854,-0.0693183443355407 +248223,1241.1150000154855,-0.06931841700911821 +248224,1241.1200000154856,-0.06931848964958219 +248225,1241.1250000154857,-0.06931856225694584 +248226,1241.1300000154858,-0.06931863483122234 +248227,1241.135000015486,-0.06931870737242488 +248228,1241.140000015486,-0.0693187798805666 +248229,1241.1450000154862,-0.0693188523556607 +248230,1241.1500000154863,-0.06931892479772032 +248231,1241.1550000154864,-0.06931899720675867 +248232,1241.1600000154865,-0.06931906958278886 +248233,1241.1650000154866,-0.06931914192582403 +248234,1241.1700000154867,-0.06931921423587734 +248235,1241.1750000154868,-0.06931928651296193 +248236,1241.180000015487,-0.06931935875709092 +248237,1241.185000015487,-0.06931943096827743 +248238,1241.1900000154872,-0.06931950314653461 +248239,1241.1950000154873,-0.06931957529187553 +248240,1241.2000000154874,-0.06931964740431334 +248241,1241.2050000154875,-0.06931971948386112 +248242,1241.2100000154876,-0.06931979153053197 +248243,1241.2150000154877,-0.06931986354433899 +248244,1241.2200000154878,-0.06931993552529525 +248245,1241.225000015488,-0.06932000747341384 +248246,1241.230000015488,-0.06932007938870784 +248247,1241.2350000154881,-0.06932015127119033 +248248,1241.2400000154882,-0.06932022312087435 +248249,1241.2450000154884,-0.06932029493777297 +248250,1241.2500000154885,-0.06932036672189924 +248251,1241.2550000154886,-0.06932043847326624 +248252,1241.2600000154887,-0.06932051019188697 +248253,1241.2650000154888,-0.06932058187777448 +248254,1241.270000015489,-0.06932065353094183 +248255,1241.275000015489,-0.06932072515140202 +248256,1241.2800000154891,-0.06932079673916806 +248257,1241.2850000154892,-0.06932086829425299 +248258,1241.2900000154893,-0.06932093981666981 +248259,1241.2950000154894,-0.06932101130643153 +248260,1241.3000000154896,-0.06932108276355115 +248261,1241.3050000154897,-0.06932115418804165 +248262,1241.3100000154898,-0.06932122557991603 +248263,1241.3150000154899,-0.06932129693918727 +248264,1241.32000001549,-0.06932136826586836 +248265,1241.32500001549,-0.06932143955997226 +248266,1241.3300000154902,-0.06932151082151193 +248267,1241.3350000154903,-0.06932158205050036 +248268,1241.3400000154904,-0.06932165324695046 +248269,1241.3450000154905,-0.06932172441087522 +248270,1241.3500000154907,-0.06932179554228758 +248271,1241.3550000154908,-0.06932186664120046 +248272,1241.3600000154909,-0.0693219377076268 +248273,1241.365000015491,-0.06932200874157954 +248274,1241.370000015491,-0.0693220797430716 +248275,1241.3750000154912,-0.06932215071211591 +248276,1241.3800000154913,-0.06932222164872535 +248277,1241.3850000154914,-0.06932229255291285 +248278,1241.3900000154915,-0.06932236342469131 +248279,1241.3950000154916,-0.06932243426407363 +248280,1241.4000000154917,-0.06932250507107268 +248281,1241.4050000154919,-0.06932257584570138 +248282,1241.410000015492,-0.06932264658797259 +248283,1241.415000015492,-0.06932271729789917 +248284,1241.4200000154922,-0.06932278797549403 +248285,1241.4250000154923,-0.06932285862076999 +248286,1241.4300000154924,-0.06932292923373995 +248287,1241.4350000154925,-0.06932299981441674 +248288,1241.4400000154926,-0.0693230703628132 +248289,1241.4450000154927,-0.0693231408789422 +248290,1241.4500000154928,-0.06932321136281655 +248291,1241.455000015493,-0.0693232818144491 +248292,1241.460000015493,-0.06932335223385268 +248293,1241.4650000154932,-0.06932342262104009 +248294,1241.4700000154933,-0.06932349297602416 +248295,1241.4750000154934,-0.06932356329881773 +248296,1241.4800000154935,-0.06932363358943353 +248297,1241.4850000154936,-0.06932370384788442 +248298,1241.4900000154937,-0.06932377407418318 +248299,1241.4950000154938,-0.0693238442683426 +248300,1241.500000015494,-0.06932391443037546 +248301,1241.505000015494,-0.06932398456029454 +248302,1241.5100000154941,-0.0693240546581126 +248303,1241.5150000154943,-0.06932412472384243 +248304,1241.5200000154944,-0.06932419475749678 +248305,1241.5250000154945,-0.06932426475908843 +248306,1241.5300000154946,-0.06932433472863009 +248307,1241.5350000154947,-0.06932440466613454 +248308,1241.5400000154948,-0.06932447457161452 +248309,1241.545000015495,-0.06932454444508275 +248310,1241.550000015495,-0.06932461428655198 +248311,1241.5550000154951,-0.06932468409603491 +248312,1241.5600000154952,-0.06932475387354428 +248313,1241.5650000154953,-0.0693248236190928 +248314,1241.5700000154955,-0.06932489333269316 +248315,1241.5750000154956,-0.06932496301435809 +248316,1241.5800000154957,-0.06932503266410028 +248317,1241.5850000154958,-0.06932510228193242 +248318,1241.590000015496,-0.0693251718678672 +248319,1241.595000015496,-0.06932524142191732 +248320,1241.600000015496,-0.06932531094409543 +248321,1241.6050000154962,-0.0693253804344142 +248322,1241.6100000154963,-0.06932544989288633 +248323,1241.6150000154964,-0.06932551931952446 +248324,1241.6200000154965,-0.06932558871434125 +248325,1241.6250000154967,-0.06932565807734935 +248326,1241.6300000154968,-0.06932572740856141 +248327,1241.6350000154969,-0.06932579670799006 +248328,1241.640000015497,-0.06932586597564794 +248329,1241.645000015497,-0.06932593521154769 +248330,1241.6500000154972,-0.06932600441570191 +248331,1241.6550000154973,-0.06932607358812326 +248332,1241.6600000154974,-0.06932614272882433 +248333,1241.6650000154975,-0.06932621183781772 +248334,1241.6700000154976,-0.06932628091511603 +248335,1241.6750000154977,-0.06932634996073189 +248336,1241.6800000154979,-0.06932641897467788 +248337,1241.685000015498,-0.06932648795696658 +248338,1241.690000015498,-0.06932655690761057 +248339,1241.6950000154982,-0.06932662582662244 +248340,1241.7000000154983,-0.06932669471401474 +248341,1241.7050000154984,-0.06932676356980008 +248342,1241.7100000154985,-0.06932683239399097 +248343,1241.7150000154986,-0.0693269011866 +248344,1241.7200000154987,-0.06932696994763972 +248345,1241.7250000154988,-0.06932703867712264 +248346,1241.730000015499,-0.06932710737506134 +248347,1241.735000015499,-0.06932717604146836 +248348,1241.7400000154992,-0.06932724467635622 +248349,1241.7450000154993,-0.06932731327973743 +248350,1241.7500000154994,-0.06932738185162451 +248351,1241.7550000154995,-0.06932745039202999 +248352,1241.7600000154996,-0.06932751890096638 +248353,1241.7650000154997,-0.06932758737844617 +248354,1241.7700000154998,-0.06932765582448187 +248355,1241.7750000155,-0.06932772423908597 +248356,1241.7800000155,-0.06932779262227097 +248357,1241.7850000155001,-0.06932786097404933 +248358,1241.7900000155003,-0.06932792929443354 +248359,1241.7950000155004,-0.0693279975834361 +248360,1241.8000000155005,-0.06932806584106942 +248361,1241.8050000155006,-0.069328134067346 +248362,1241.8100000155007,-0.0693282022622783 +248363,1241.8150000155008,-0.06932827042587876 +248364,1241.820000015501,-0.06932833855815983 +248365,1241.825000015501,-0.06932840665913395 +248366,1241.8300000155011,-0.06932847472881357 +248367,1241.8350000155012,-0.0693285427672111 +248368,1241.8400000155013,-0.06932861077433897 +248369,1241.8450000155015,-0.06932867875020962 +248370,1241.8500000155016,-0.06932874669483546 +248371,1241.8550000155017,-0.06932881460822889 +248372,1241.8600000155018,-0.06932888249040231 +248373,1241.865000015502,-0.06932895034136814 +248374,1241.870000015502,-0.06932901816113876 +248375,1241.875000015502,-0.06932908594972657 +248376,1241.8800000155022,-0.06932915370714396 +248377,1241.8850000155023,-0.0693292214334033 +248378,1241.8900000155024,-0.06932928912851695 +248379,1241.8950000155025,-0.06932935679249731 +248380,1241.9000000155027,-0.06932942442535672 +248381,1241.9050000155028,-0.06932949202710756 +248382,1241.9100000155029,-0.06932955959776217 +248383,1241.915000015503,-0.06932962713733291 +248384,1241.920000015503,-0.06932969464583211 +248385,1241.9250000155032,-0.0693297621232721 +248386,1241.9300000155033,-0.06932982956966524 +248387,1241.9350000155034,-0.06932989698502384 +248388,1241.9400000155035,-0.06932996436936023 +248389,1241.9450000155036,-0.06933003172268673 +248390,1241.9500000155037,-0.06933009904501565 +248391,1241.9550000155039,-0.06933016633635929 +248392,1241.960000015504,-0.06933023359672996 +248393,1241.965000015504,-0.06933030082613996 +248394,1241.9700000155042,-0.06933036802460159 +248395,1241.9750000155043,-0.06933043519212712 +248396,1241.9800000155044,-0.06933050232872882 +248397,1241.9850000155045,-0.06933056943441902 +248398,1241.9900000155046,-0.06933063650920994 +248399,1241.9950000155047,-0.06933070355311387 +248400,1242.0000000155048,-0.06933077056614306 +248401,1242.005000015505,-0.06933083754830978 +248402,1242.010000015505,-0.06933090449962627 +248403,1242.0150000155052,-0.06933097142010479 +248404,1242.0200000155053,-0.06933103830975758 +248405,1242.0250000155054,-0.06933110516859685 +248406,1242.0300000155055,-0.06933117199663487 +248407,1242.0350000155056,-0.06933123879388382 +248408,1242.0400000155057,-0.06933130556035598 +248409,1242.0450000155058,-0.06933137229606351 +248410,1242.050000015506,-0.06933143900101865 +248411,1242.055000015506,-0.0693315056752336 +248412,1242.0600000155061,-0.06933157231872056 +248413,1242.0650000155063,-0.06933163893149173 +248414,1242.0700000155064,-0.06933170551355929 +248415,1242.0750000155065,-0.06933177206493543 +248416,1242.0800000155066,-0.06933183858563234 +248417,1242.0850000155067,-0.0693319050756622 +248418,1242.0900000155068,-0.06933197153503715 +248419,1242.095000015507,-0.06933203796376937 +248420,1242.100000015507,-0.06933210436187104 +248421,1242.1050000155071,-0.06933217072935427 +248422,1242.1100000155072,-0.06933223706623126 +248423,1242.1150000155073,-0.06933230337251413 +248424,1242.1200000155075,-0.06933236964821503 +248425,1242.1250000155076,-0.06933243589334608 +248426,1242.1300000155077,-0.06933250210791941 +248427,1242.1350000155078,-0.06933256829194716 +248428,1242.140000015508,-0.06933263444544144 +248429,1242.145000015508,-0.06933270056841437 +248430,1242.150000015508,-0.06933276666087805 +248431,1242.1550000155082,-0.0693328327228446 +248432,1242.1600000155083,-0.0693328987543261 +248433,1242.1650000155084,-0.06933296475533467 +248434,1242.1700000155085,-0.06933303072588239 +248435,1242.1750000155087,-0.06933309666598132 +248436,1242.1800000155088,-0.06933316257564355 +248437,1242.1850000155089,-0.06933322845488119 +248438,1242.190000015509,-0.06933329430370626 +248439,1242.195000015509,-0.06933336012213084 +248440,1242.2000000155092,-0.06933342591016702 +248441,1242.2050000155093,-0.0693334916678268 +248442,1242.2100000155094,-0.06933355739512229 +248443,1242.2150000155095,-0.06933362309206548 +248444,1242.2200000155096,-0.06933368875866845 +248445,1242.2250000155097,-0.0693337543949432 +248446,1242.2300000155099,-0.06933382000090178 +248447,1242.23500001551,-0.06933388557655623 +248448,1242.24000001551,-0.06933395112191854 +248449,1242.2450000155102,-0.06933401663700073 +248450,1242.2500000155103,-0.06933408212181481 +248451,1242.2550000155104,-0.0693341475763728 +248452,1242.2600000155105,-0.06933421300068669 +248453,1242.2650000155106,-0.06933427839476847 +248454,1242.2700000155107,-0.06933434375863011 +248455,1242.2750000155108,-0.06933440909228364 +248456,1242.280000015511,-0.069334474395741 +248457,1242.285000015511,-0.06933453966901418 +248458,1242.2900000155112,-0.06933460491211516 +248459,1242.2950000155113,-0.06933467012505588 +248460,1242.3000000155114,-0.06933473530784832 +248461,1242.3050000155115,-0.06933480046050443 +248462,1242.3100000155116,-0.06933486558303614 +248463,1242.3150000155117,-0.06933493067545544 +248464,1242.3200000155118,-0.06933499573777423 +248465,1242.325000015512,-0.06933506077000445 +248466,1242.330000015512,-0.06933512577215804 +248467,1242.3350000155122,-0.06933519074424692 +248468,1242.3400000155123,-0.069335255686283 +248469,1242.3450000155124,-0.06933532059827821 +248470,1242.3500000155125,-0.06933538548024447 +248471,1242.3550000155126,-0.06933545033219365 +248472,1242.3600000155127,-0.06933551515413769 +248473,1242.3650000155128,-0.06933557994608845 +248474,1242.370000015513,-0.06933564470805782 +248475,1242.375000015513,-0.06933570944005772 +248476,1242.3800000155131,-0.06933577414210003 +248477,1242.3850000155132,-0.06933583881419658 +248478,1242.3900000155134,-0.06933590345635926 +248479,1242.3950000155135,-0.06933596806859996 +248480,1242.4000000155136,-0.06933603265093051 +248481,1242.4050000155137,-0.06933609720336278 +248482,1242.4100000155138,-0.06933616172590863 +248483,1242.415000015514,-0.06933622621857988 +248484,1242.420000015514,-0.0693362906813884 +248485,1242.4250000155141,-0.069336355114346 +248486,1242.4300000155142,-0.06933641951746453 +248487,1242.4350000155143,-0.06933648389075579 +248488,1242.4400000155144,-0.06933654823423163 +248489,1242.4450000155146,-0.06933661254790385 +248490,1242.4500000155147,-0.06933667683178428 +248491,1242.4550000155148,-0.06933674108588471 +248492,1242.4600000155149,-0.06933680531021695 +248493,1242.465000015515,-0.06933686950479279 +248494,1242.470000015515,-0.06933693366962401 +248495,1242.4750000155152,-0.06933699780472243 +248496,1242.4800000155153,-0.0693370619100998 +248497,1242.4850000155154,-0.06933712598576791 +248498,1242.4900000155155,-0.06933719003173855 +248499,1242.4950000155156,-0.06933725404802346 +248500,1242.5000000155158,-0.06933731803463442 +248501,1242.5050000155159,-0.06933738199158315 +248502,1242.510000015516,-0.06933744591888145 +248503,1242.515000015516,-0.06933750981654106 +248504,1242.5200000155162,-0.0693375736845737 +248505,1242.5250000155163,-0.06933763752299112 +248506,1242.5300000155164,-0.06933770133180506 +248507,1242.5350000155165,-0.06933776511102724 +248508,1242.5400000155166,-0.06933782886066939 +248509,1242.5450000155167,-0.06933789258074322 +248510,1242.5500000155168,-0.06933795627126045 +248511,1242.555000015517,-0.06933801993223279 +248512,1242.560000015517,-0.06933808356367195 +248513,1242.5650000155172,-0.0693381471655896 +248514,1242.5700000155173,-0.06933821073799747 +248515,1242.5750000155174,-0.06933827428090723 +248516,1242.5800000155175,-0.06933833779433057 +248517,1242.5850000155176,-0.06933840127827917 +248518,1242.5900000155177,-0.0693384647327647 +248519,1242.5950000155178,-0.06933852815779884 +248520,1242.600000015518,-0.06933859155339324 +248521,1242.605000015518,-0.06933865491955958 +248522,1242.6100000155182,-0.0693387182563095 +248523,1242.6150000155183,-0.06933878156365465 +248524,1242.6200000155184,-0.06933884484160668 +248525,1242.6250000155185,-0.06933890809017726 +248526,1242.6300000155186,-0.06933897130937798 +248527,1242.6350000155187,-0.06933903449922049 +248528,1242.6400000155188,-0.06933909765971642 +248529,1242.645000015519,-0.06933916079087739 +248530,1242.650000015519,-0.06933922389271502 +248531,1242.6550000155191,-0.0693392869652409 +248532,1242.6600000155192,-0.06933935000846667 +248533,1242.6650000155194,-0.06933941302240391 +248534,1242.6700000155195,-0.06933947600706424 +248535,1242.6750000155196,-0.06933953896245923 +248536,1242.6800000155197,-0.06933960188860049 +248537,1242.6850000155198,-0.06933966478549958 +248538,1242.69000001552,-0.06933972765316808 +248539,1242.69500001552,-0.06933979049161759 +248540,1242.7000000155201,-0.06933985330085966 +248541,1242.7050000155202,-0.06933991608090585 +248542,1242.7100000155203,-0.06933997883176772 +248543,1242.7150000155204,-0.06934004155345684 +248544,1242.7200000155206,-0.06934010424598475 +248545,1242.7250000155207,-0.06934016690936298 +248546,1242.7300000155208,-0.06934022954360308 +248547,1242.7350000155209,-0.06934029214871662 +248548,1242.740000015521,-0.06934035472471507 +248549,1242.745000015521,-0.06934041727161 +248550,1242.7500000155212,-0.0693404797894129 +248551,1242.7550000155213,-0.06934054227813534 +248552,1242.7600000155214,-0.06934060473778876 +248553,1242.7650000155215,-0.06934066716838473 +248554,1242.7700000155216,-0.06934072956993471 +248555,1242.7750000155218,-0.06934079194245021 +248556,1242.7800000155219,-0.06934085428594272 +248557,1242.785000015522,-0.06934091660042374 +248558,1242.790000015522,-0.06934097888590474 +248559,1242.7950000155222,-0.06934104114239718 +248560,1242.8000000155223,-0.06934110336991259 +248561,1242.8050000155224,-0.06934116556846238 +248562,1242.8100000155225,-0.06934122773805805 +248563,1242.8150000155226,-0.06934128987871105 +248564,1242.8200000155227,-0.06934135199043283 +248565,1242.8250000155228,-0.06934141407323484 +248566,1242.830000015523,-0.06934147612712853 +248567,1242.835000015523,-0.06934153815212533 +248568,1242.8400000155232,-0.06934160014823669 +248569,1242.8450000155233,-0.06934166211547403 +248570,1242.8500000155234,-0.0693417240538488 +248571,1242.8550000155235,-0.06934178596337237 +248572,1242.8600000155236,-0.06934184784405621 +248573,1242.8650000155237,-0.06934190969591168 +248574,1242.8700000155238,-0.06934197151895023 +248575,1242.875000015524,-0.06934203331318325 +248576,1242.880000015524,-0.06934209507862214 +248577,1242.8850000155242,-0.06934215681527829 +248578,1242.8900000155243,-0.06934221852316307 +248579,1242.8950000155244,-0.0693422802022879 +248580,1242.9000000155245,-0.06934234185266412 +248581,1242.9050000155246,-0.06934240347430312 +248582,1242.9100000155247,-0.0693424650672163 +248583,1242.9150000155248,-0.06934252663141499 +248584,1242.920000015525,-0.06934258816691055 +248585,1242.925000015525,-0.06934264967371434 +248586,1242.9300000155251,-0.06934271115183771 +248587,1242.9350000155252,-0.06934277260129201 +248588,1242.9400000155254,-0.06934283402208859 +248589,1242.9450000155255,-0.06934289541423876 +248590,1242.9500000155256,-0.06934295677775387 +248591,1242.9550000155257,-0.06934301811264526 +248592,1242.9600000155258,-0.06934307941892422 +248593,1242.965000015526,-0.06934314069660209 +248594,1242.970000015526,-0.06934320194569019 +248595,1242.9750000155261,-0.0693432631661998 +248596,1242.9800000155262,-0.06934332435814225 +248597,1242.9850000155263,-0.06934338552152883 +248598,1242.9900000155264,-0.06934344665637084 +248599,1242.9950000155266,-0.06934350776267956 +248600,1243.0000000155267,-0.06934356884046626 +248601,1243.0050000155268,-0.06934362988974226 +248602,1243.0100000155269,-0.06934369091051881 +248603,1243.015000015527,-0.06934375190280719 +248604,1243.020000015527,-0.06934381286661866 +248605,1243.0250000155272,-0.06934387380196447 +248606,1243.0300000155273,-0.0693439347088559 +248607,1243.0350000155274,-0.0693439955873042 +248608,1243.0400000155275,-0.06934405643732058 +248609,1243.0450000155276,-0.06934411725891634 +248610,1243.0500000155278,-0.06934417805210269 +248611,1243.0550000155279,-0.06934423881689086 +248612,1243.060000015528,-0.06934429955329209 +248613,1243.065000015528,-0.06934436026131759 +248614,1243.0700000155282,-0.06934442094097859 +248615,1243.0750000155283,-0.06934448159228632 +248616,1243.0800000155284,-0.06934454221525195 +248617,1243.0850000155285,-0.06934460280988672 +248618,1243.0900000155286,-0.06934466337620182 +248619,1243.0950000155287,-0.06934472391420844 +248620,1243.1000000155288,-0.06934478442391778 +248621,1243.105000015529,-0.06934484490534105 +248622,1243.110000015529,-0.0693449053584894 +248623,1243.1150000155292,-0.06934496578337401 +248624,1243.1200000155293,-0.06934502618000606 +248625,1243.1250000155294,-0.06934508654839672 +248626,1243.1300000155295,-0.06934514688855717 +248627,1243.1350000155296,-0.06934520720049854 +248628,1243.1400000155297,-0.069345267484232 +248629,1243.1450000155298,-0.0693453277397687 +248630,1243.15000001553,-0.0693453879671198 +248631,1243.15500001553,-0.06934544816629641 +248632,1243.1600000155302,-0.06934550833730968 +248633,1243.1650000155303,-0.06934556848017076 +248634,1243.1700000155304,-0.06934562859489075 +248635,1243.1750000155305,-0.06934568868148079 +248636,1243.1800000155306,-0.069345748739952 +248637,1243.1850000155307,-0.06934580877031549 +248638,1243.1900000155308,-0.06934586877258235 +248639,1243.195000015531,-0.06934592874676371 +248640,1243.200000015531,-0.06934598869287066 +248641,1243.2050000155311,-0.0693460486109143 +248642,1243.2100000155313,-0.06934610850090571 +248643,1243.2150000155314,-0.069346168362856 +248644,1243.2200000155315,-0.06934622819677622 +248645,1243.2250000155316,-0.06934628800267746 +248646,1243.2300000155317,-0.06934634778057078 +248647,1243.2350000155318,-0.06934640753046728 +248648,1243.240000015532,-0.06934646725237799 +248649,1243.245000015532,-0.06934652694631399 +248650,1243.2500000155321,-0.06934658661228633 +248651,1243.2550000155322,-0.06934664625030605 +248652,1243.2600000155323,-0.0693467058603842 +248653,1243.2650000155325,-0.06934676544253184 +248654,1243.2700000155326,-0.06934682499675997 +248655,1243.2750000155327,-0.06934688452307963 +248656,1243.2800000155328,-0.06934694402150188 +248657,1243.285000015533,-0.06934700349203769 +248658,1243.290000015533,-0.06934706293469811 +248659,1243.295000015533,-0.06934712234949415 +248660,1243.3000000155332,-0.06934718173643682 +248661,1243.3050000155333,-0.06934724109553712 +248662,1243.3100000155334,-0.06934730042680606 +248663,1243.3150000155335,-0.06934735973025462 +248664,1243.3200000155337,-0.06934741900589378 +248665,1243.3250000155338,-0.06934747825373455 +248666,1243.3300000155339,-0.06934753747378791 +248667,1243.335000015534,-0.06934759666606481 +248668,1243.340000015534,-0.06934765583057625 +248669,1243.3450000155342,-0.0693477149673332 +248670,1243.3500000155343,-0.06934777407634661 +248671,1243.3550000155344,-0.06934783315762744 +248672,1243.3600000155345,-0.06934789221118663 +248673,1243.3650000155346,-0.06934795123703515 +248674,1243.3700000155347,-0.06934801023518393 +248675,1243.3750000155349,-0.06934806920564394 +248676,1243.380000015535,-0.06934812814842609 +248677,1243.385000015535,-0.0693481870635413 +248678,1243.3900000155352,-0.06934824595100052 +248679,1243.3950000155353,-0.06934830481081466 +248680,1243.4000000155354,-0.06934836364299465 +248681,1243.4050000155355,-0.0693484224475514 +248682,1243.4100000155356,-0.06934848122449581 +248683,1243.4150000155357,-0.0693485399738388 +248684,1243.4200000155358,-0.06934859869559125 +248685,1243.425000015536,-0.06934865738976408 +248686,1243.430000015536,-0.06934871605636815 +248687,1243.4350000155362,-0.06934877469541437 +248688,1243.4400000155363,-0.0693488333069136 +248689,1243.4450000155364,-0.06934889189087674 +248690,1243.4500000155365,-0.06934895044731466 +248691,1243.4550000155366,-0.06934900897623822 +248692,1243.4600000155367,-0.0693490674776583 +248693,1243.4650000155368,-0.06934912595158574 +248694,1243.470000015537,-0.0693491843980314 +248695,1243.475000015537,-0.06934924281700613 +248696,1243.4800000155371,-0.06934930120852079 +248697,1243.4850000155373,-0.0693493595725862 +248698,1243.4900000155374,-0.0693494179092132 +248699,1243.4950000155375,-0.06934947621841264 +248700,1243.5000000155376,-0.06934953450019535 +248701,1243.5050000155377,-0.06934959275457213 +248702,1243.5100000155378,-0.06934965098155381 +248703,1243.515000015538,-0.0693497091811512 +248704,1243.520000015538,-0.06934976735337511 +248705,1243.5250000155381,-0.06934982549823637 +248706,1243.5300000155382,-0.06934988361574576 +248707,1243.5350000155383,-0.06934994170591408 +248708,1243.5400000155385,-0.06934999976875211 +248709,1243.5450000155386,-0.06935005780427066 +248710,1243.5500000155387,-0.06935011581248052 +248711,1243.5550000155388,-0.06935017379339244 +248712,1243.560000015539,-0.06935023174701721 +248713,1243.565000015539,-0.0693502896733656 +248714,1243.570000015539,-0.06935034757244837 +248715,1243.5750000155392,-0.06935040544427629 +248716,1243.5800000155393,-0.06935046328886012 +248717,1243.5850000155394,-0.0693505211062106 +248718,1243.5900000155395,-0.06935057889633847 +248719,1243.5950000155397,-0.0693506366592545 +248720,1243.6000000155398,-0.06935069439496942 +248721,1243.6050000155399,-0.06935075210349397 +248722,1243.61000001554,-0.06935080978483885 +248723,1243.61500001554,-0.06935086743901481 +248724,1243.6200000155402,-0.06935092506603256 +248725,1243.6250000155403,-0.06935098266590284 +248726,1243.6300000155404,-0.06935104023863635 +248727,1243.6350000155405,-0.0693510977842438 +248728,1243.6400000155406,-0.06935115530273588 +248729,1243.6450000155407,-0.0693512127941233 +248730,1243.6500000155409,-0.06935127025841677 +248731,1243.655000015541,-0.06935132769562694 +248732,1243.660000015541,-0.06935138510576454 +248733,1243.6650000155412,-0.06935144248884022 +248734,1243.6700000155413,-0.06935149984486468 +248735,1243.6750000155414,-0.06935155717384858 +248736,1243.6800000155415,-0.0693516144758026 +248737,1243.6850000155416,-0.06935167175073738 +248738,1243.6900000155417,-0.0693517289986636 +248739,1243.6950000155418,-0.06935178621959193 +248740,1243.700000015542,-0.069351843413533 +248741,1243.705000015542,-0.06935190058049745 +248742,1243.7100000155422,-0.06935195772049593 +248743,1243.7150000155423,-0.06935201483353909 +248744,1243.7200000155424,-0.06935207191963753 +248745,1243.7250000155425,-0.06935212897880193 +248746,1243.7300000155426,-0.06935218601104287 +248747,1243.7350000155427,-0.06935224301637101 +248748,1243.7400000155428,-0.06935229999479692 +248749,1243.745000015543,-0.06935235694633124 +248750,1243.750000015543,-0.06935241387098458 +248751,1243.7550000155431,-0.06935247076876754 +248752,1243.7600000155433,-0.06935252763969069 +248753,1243.7650000155434,-0.06935258448376466 +248754,1243.7700000155435,-0.06935264130100002 +248755,1243.7750000155436,-0.06935269809140737 +248756,1243.7800000155437,-0.06935275485499728 +248757,1243.7850000155438,-0.06935281159178033 +248758,1243.790000015544,-0.06935286830176711 +248759,1243.795000015544,-0.06935292498496816 +248760,1243.8000000155441,-0.06935298164139406 +248761,1243.8050000155442,-0.06935303827105534 +248762,1243.8100000155443,-0.06935309487396259 +248763,1243.8150000155445,-0.06935315145012635 +248764,1243.8200000155446,-0.06935320799955717 +248765,1243.8250000155447,-0.06935326452226559 +248766,1243.8300000155448,-0.06935332101826214 +248767,1243.835000015545,-0.06935337748755735 +248768,1243.840000015545,-0.06935343393016177 +248769,1243.845000015545,-0.06935349034608591 +248770,1243.8500000155452,-0.06935354673534029 +248771,1243.8550000155453,-0.06935360309793542 +248772,1243.8600000155454,-0.06935365943388182 +248773,1243.8650000155455,-0.06935371574318999 +248774,1243.8700000155457,-0.06935377202587045 +248775,1243.8750000155458,-0.06935382828193369 +248776,1243.8800000155459,-0.0693538845113902 +248777,1243.885000015546,-0.06935394071425045 +248778,1243.890000015546,-0.06935399689052497 +248779,1243.8950000155462,-0.06935405304022421 +248780,1243.9000000155463,-0.06935410916335866 +248781,1243.9050000155464,-0.06935416525993879 +248782,1243.9100000155465,-0.06935422132997507 +248783,1243.9150000155466,-0.06935427737347795 +248784,1243.9200000155467,-0.06935433339045789 +248785,1243.9250000155469,-0.06935438938092538 +248786,1243.930000015547,-0.06935444534489082 +248787,1243.935000015547,-0.0693545012823647 +248788,1243.9400000155472,-0.06935455719335744 +248789,1243.9450000155473,-0.06935461307787949 +248790,1243.9500000155474,-0.06935466893594128 +248791,1243.9550000155475,-0.06935472476755324 +248792,1243.9600000155476,-0.06935478057272579 +248793,1243.9650000155477,-0.06935483635146934 +248794,1243.9700000155478,-0.06935489210379435 +248795,1243.975000015548,-0.06935494782971117 +248796,1243.980000015548,-0.06935500352923026 +248797,1243.9850000155482,-0.069355059202362 +248798,1243.9900000155483,-0.0693551148491168 +248799,1243.9950000155484,-0.06935517046950505 +248800,1244.0000000155485,-0.06935522606353715 +248801,1244.0050000155486,-0.06935528163122347 +248802,1244.0100000155487,-0.0693553371725744 +248803,1244.0150000155488,-0.06935539268760031 +248804,1244.020000015549,-0.0693554481763116 +248805,1244.025000015549,-0.06935550363871862 +248806,1244.0300000155491,-0.06935555907483174 +248807,1244.0350000155493,-0.06935561448466131 +248808,1244.0400000155494,-0.06935566986821769 +248809,1244.0450000155495,-0.06935572522551126 +248810,1244.0500000155496,-0.06935578055655232 +248811,1244.0550000155497,-0.06935583586135126 +248812,1244.0600000155498,-0.06935589113991839 +248813,1244.06500001555,-0.06935594639226406 +248814,1244.07000001555,-0.06935600161839861 +248815,1244.0750000155501,-0.06935605681833235 +248816,1244.0800000155502,-0.06935611199207561 +248817,1244.0850000155503,-0.0693561671396387 +248818,1244.0900000155505,-0.06935622226103194 +248819,1244.0950000155506,-0.06935627735626565 +248820,1244.1000000155507,-0.06935633242535014 +248821,1244.1050000155508,-0.06935638746829569 +248822,1244.110000015551,-0.0693564424851126 +248823,1244.115000015551,-0.06935649747581117 +248824,1244.120000015551,-0.06935655244040169 +248825,1244.1250000155512,-0.06935660737889444 +248826,1244.1300000155513,-0.06935666229129972 +248827,1244.1350000155514,-0.06935671717762777 +248828,1244.1400000155515,-0.06935677203788888 +248829,1244.1450000155517,-0.06935682687209334 +248830,1244.1500000155518,-0.06935688168025139 +248831,1244.1550000155519,-0.0693569364623733 +248832,1244.160000015552,-0.0693569912184693 +248833,1244.165000015552,-0.06935704594854968 +248834,1244.1700000155522,-0.06935710065262465 +248835,1244.1750000155523,-0.06935715533070447 +248836,1244.1800000155524,-0.06935720998279939 +248837,1244.1850000155525,-0.06935726460891962 +248838,1244.1900000155526,-0.06935731920907541 +248839,1244.1950000155528,-0.06935737378327698 +248840,1244.2000000155529,-0.06935742833153455 +248841,1244.205000015553,-0.06935748285385833 +248842,1244.210000015553,-0.06935753735025854 +248843,1244.2150000155532,-0.06935759182074538 +248844,1244.2200000155533,-0.06935764626532909 +248845,1244.2250000155534,-0.06935770068401982 +248846,1244.2300000155535,-0.06935775507682779 +248847,1244.2350000155536,-0.06935780944376319 +248848,1244.2400000155537,-0.06935786378483622 +248849,1244.2450000155538,-0.06935791810005705 +248850,1244.250000015554,-0.06935797238943586 +248851,1244.255000015554,-0.06935802665298284 +248852,1244.2600000155542,-0.06935808089070813 +248853,1244.2650000155543,-0.06935813510262194 +248854,1244.2700000155544,-0.06935818928873441 +248855,1244.2750000155545,-0.0693582434490557 +248856,1244.2800000155546,-0.06935829758359595 +248857,1244.2850000155547,-0.06935835169236532 +248858,1244.2900000155548,-0.06935840577537397 +248859,1244.295000015555,-0.06935845983263204 +248860,1244.300000015555,-0.06935851386414964 +248861,1244.3050000155552,-0.06935856786993694 +248862,1244.3100000155553,-0.06935862185000405 +248863,1244.3150000155554,-0.06935867580436109 +248864,1244.3200000155555,-0.0693587297330182 +248865,1244.3250000155556,-0.06935878363598548 +248866,1244.3300000155557,-0.06935883751327304 +248867,1244.3350000155558,-0.06935889136489103 +248868,1244.340000015556,-0.0693589451908495 +248869,1244.345000015556,-0.06935899899115859 +248870,1244.3500000155561,-0.06935905276582836 +248871,1244.3550000155562,-0.06935910651486894 +248872,1244.3600000155564,-0.0693591602382904 +248873,1244.3650000155565,-0.06935921393610282 +248874,1244.3700000155566,-0.06935926760831629 +248875,1244.3750000155567,-0.06935932125494086 +248876,1244.3800000155568,-0.06935937487598665 +248877,1244.385000015557,-0.06935942847146367 +248878,1244.390000015557,-0.06935948204138202 +248879,1244.3950000155571,-0.06935953558575175 +248880,1244.4000000155572,-0.06935958910458292 +248881,1244.4050000155573,-0.06935964259788559 +248882,1244.4100000155574,-0.06935969606566979 +248883,1244.4150000155576,-0.06935974950794556 +248884,1244.4200000155577,-0.06935980292472294 +248885,1244.4250000155578,-0.06935985631601196 +248886,1244.4300000155579,-0.06935990968182268 +248887,1244.435000015558,-0.06935996302216509 +248888,1244.440000015558,-0.06936001633704923 +248889,1244.4450000155582,-0.06936006962648511 +248890,1244.4500000155583,-0.06936012289048275 +248891,1244.4550000155584,-0.06936017612905217 +248892,1244.4600000155585,-0.06936022934220336 +248893,1244.4650000155586,-0.06936028252994632 +248894,1244.4700000155588,-0.06936033569229105 +248895,1244.4750000155589,-0.06936038882924754 +248896,1244.480000015559,-0.0693604419408258 +248897,1244.485000015559,-0.06936049502703578 +248898,1244.4900000155592,-0.0693605480878875 +248899,1244.4950000155593,-0.0693606011233909 +248900,1244.5000000155594,-0.06936065413355598 +248901,1244.5050000155595,-0.0693607071183927 +248902,1244.5100000155596,-0.06936076007791105 +248903,1244.5150000155597,-0.06936081301212094 +248904,1244.5200000155598,-0.06936086592103234 +248905,1244.52500001556,-0.06936091880465522 +248906,1244.53000001556,-0.06936097166299954 +248907,1244.5350000155602,-0.0693610244960752 +248908,1244.5400000155603,-0.06936107730389217 +248909,1244.5450000155604,-0.06936113008646039 +248910,1244.5500000155605,-0.06936118284378978 +248911,1244.5550000155606,-0.06936123557589026 +248912,1244.5600000155607,-0.06936128828277177 +248913,1244.5650000155608,-0.06936134096444423 +248914,1244.570000015561,-0.06936139362091755 +248915,1244.575000015561,-0.06936144625220163 +248916,1244.5800000155612,-0.06936149885830639 +248917,1244.5850000155613,-0.06936155143924173 +248918,1244.5900000155614,-0.06936160399501756 +248919,1244.5950000155615,-0.06936165652564377 +248920,1244.6000000155616,-0.06936170903113024 +248921,1244.6050000155617,-0.06936176151148687 +248922,1244.6100000155618,-0.06936181396672354 +248923,1244.615000015562,-0.06936186639685013 +248924,1244.620000015562,-0.06936191880187652 +248925,1244.6250000155621,-0.06936197118181255 +248926,1244.6300000155622,-0.06936202353666812 +248927,1244.6350000155624,-0.06936207586645309 +248928,1244.6400000155625,-0.0693621281711773 +248929,1244.6450000155626,-0.06936218045085063 +248930,1244.6500000155627,-0.06936223270548292 +248931,1244.6550000155628,-0.069362284935084 +248932,1244.660000015563,-0.06936233713966374 +248933,1244.665000015563,-0.06936238931923197 +248934,1244.6700000155631,-0.06936244147379851 +248935,1244.6750000155632,-0.06936249360337321 +248936,1244.6800000155633,-0.06936254570796588 +248937,1244.6850000155634,-0.06936259778758636 +248938,1244.6900000155636,-0.06936264984224444 +248939,1244.6950000155637,-0.06936270187194997 +248940,1244.7000000155638,-0.06936275387671273 +248941,1244.7050000155639,-0.06936280585654256 +248942,1244.710000015564,-0.06936285781144921 +248943,1244.715000015564,-0.06936290974144253 +248944,1244.7200000155642,-0.0693629616465323 +248945,1244.7250000155643,-0.0693630135267283 +248946,1244.7300000155644,-0.06936306538204032 +248947,1244.7350000155645,-0.06936311721247815 +248948,1244.7400000155646,-0.06936316901805155 +248949,1244.7450000155648,-0.06936322079877032 +248950,1244.7500000155649,-0.06936327255464421 +248951,1244.755000015565,-0.06936332428568301 +248952,1244.760000015565,-0.06936337599189644 +248953,1244.7650000155652,-0.06936342767329431 +248954,1244.7700000155653,-0.06936347932988633 +248955,1244.7750000155654,-0.06936353096168227 +248956,1244.7800000155655,-0.06936358256869188 +248957,1244.7850000155656,-0.06936363415092489 +248958,1244.7900000155657,-0.06936368570839106 +248959,1244.7950000155658,-0.0693637372411001 +248960,1244.800000015566,-0.06936378874906177 +248961,1244.805000015566,-0.06936384023228577 +248962,1244.8100000155662,-0.06936389169078182 +248963,1244.8150000155663,-0.06936394312455964 +248964,1244.8200000155664,-0.06936399453362897 +248965,1244.8250000155665,-0.0693640459179995 +248966,1244.8300000155666,-0.06936409727768093 +248967,1244.8350000155667,-0.06936414861268297 +248968,1244.8400000155668,-0.06936419992301532 +248969,1244.845000015567,-0.06936425120868768 +248970,1244.850000015567,-0.06936430246970973 +248971,1244.8550000155672,-0.06936435370609116 +248972,1244.8600000155673,-0.06936440491784167 +248973,1244.8650000155674,-0.06936445610497091 +248974,1244.8700000155675,-0.06936450726748858 +248975,1244.8750000155676,-0.06936455840540434 +248976,1244.8800000155677,-0.06936460951872785 +248977,1244.8850000155678,-0.06936466060746878 +248978,1244.890000015568,-0.06936471167163678 +248979,1244.895000015568,-0.06936476271124152 +248980,1244.9000000155681,-0.06936481372629263 +248981,1244.9050000155682,-0.06936486471679978 +248982,1244.9100000155684,-0.0693649156827726 +248983,1244.9150000155685,-0.06936496662422074 +248984,1244.9200000155686,-0.06936501754115383 +248985,1244.9250000155687,-0.0693650684335815 +248986,1244.9300000155688,-0.06936511930151337 +248987,1244.935000015569,-0.06936517014495906 +248988,1244.940000015569,-0.0693652209639282 +248989,1244.9450000155691,-0.06936527175843042 +248990,1244.9500000155692,-0.06936532252847531 +248991,1244.9550000155693,-0.0693653732740725 +248992,1244.9600000155694,-0.06936542399523156 +248993,1244.9650000155696,-0.0693654746919621 +248994,1244.9700000155697,-0.06936552536427372 +248995,1244.9750000155698,-0.06936557601217602 +248996,1244.9800000155699,-0.06936562663567859 +248997,1244.98500001557,-0.069365677234791 +248998,1244.99000001557,-0.06936572780952285 +248999,1244.9950000155702,-0.0693657783598837 +249000,1245.0000000155703,-0.06936582888588311 +249001,1245.0050000155704,-0.06936587938753067 +249002,1245.0100000155705,-0.06936592986483593 +249003,1245.0150000155706,-0.06936598031780848 +249004,1245.0200000155708,-0.06936603074645784 +249005,1245.0250000155709,-0.06936608115079358 +249006,1245.030000015571,-0.06936613153082524 +249007,1245.035000015571,-0.06936618188656239 +249008,1245.0400000155712,-0.06936623221801455 +249009,1245.0450000155713,-0.06936628252519125 +249010,1245.0500000155714,-0.06936633280810203 +249011,1245.0550000155715,-0.06936638306675642 +249012,1245.0600000155716,-0.06936643330116397 +249013,1245.0650000155717,-0.06936648351133415 +249014,1245.0700000155718,-0.06936653369727652 +249015,1245.075000015572,-0.06936658385900059 +249016,1245.080000015572,-0.06936663399651584 +249017,1245.0850000155722,-0.06936668410983181 +249018,1245.0900000155723,-0.06936673419895799 +249019,1245.0950000155724,-0.06936678426390387 +249020,1245.1000000155725,-0.06936683430467895 +249021,1245.1050000155726,-0.06936688432129272 +249022,1245.1100000155727,-0.06936693431375467 +249023,1245.1150000155728,-0.06936698428207427 +249024,1245.120000015573,-0.06936703422626102 +249025,1245.125000015573,-0.06936708414632438 +249026,1245.1300000155732,-0.06936713404227382 +249027,1245.1350000155733,-0.06936718391411881 +249028,1245.1400000155734,-0.06936723376186882 +249029,1245.1450000155735,-0.0693672835855333 +249030,1245.1500000155736,-0.06936733338512172 +249031,1245.1550000155737,-0.06936738316064352 +249032,1245.1600000155738,-0.06936743291210815 +249033,1245.165000015574,-0.06936748263952504 +249034,1245.170000015574,-0.06936753234290365 +249035,1245.1750000155741,-0.0693675820222534 +249036,1245.1800000155743,-0.06936763167758375 +249037,1245.1850000155744,-0.0693676813089041 +249038,1245.1900000155745,-0.06936773091622388 +249039,1245.1950000155746,-0.06936778049955251 +249040,1245.2000000155747,-0.06936783005889942 +249041,1245.2050000155748,-0.06936787959427401 +249042,1245.210000015575,-0.0693679291056857 +249043,1245.215000015575,-0.06936797859314389 +249044,1245.2200000155751,-0.06936802805665798 +249045,1245.2250000155752,-0.06936807749623736 +249046,1245.2300000155753,-0.06936812691189145 +249047,1245.2350000155755,-0.06936817630362961 +249048,1245.2400000155756,-0.06936822567146125 +249049,1245.2450000155757,-0.06936827501539572 +249050,1245.2500000155758,-0.06936832433544243 +249051,1245.255000015576,-0.06936837363161075 +249052,1245.260000015576,-0.06936842290391004 +249053,1245.265000015576,-0.06936847215234969 +249054,1245.2700000155762,-0.06936852137693901 +249055,1245.2750000155763,-0.06936857057768742 +249056,1245.2800000155764,-0.06936861975460425 +249057,1245.2850000155765,-0.06936866890769884 +249058,1245.2900000155767,-0.06936871803698055 +249059,1245.2950000155768,-0.06936876714245874 +249060,1245.3000000155769,-0.06936881622414272 +249061,1245.305000015577,-0.06936886528204184 +249062,1245.310000015577,-0.06936891431616543 +249063,1245.3150000155772,-0.06936896332652283 +249064,1245.3200000155773,-0.06936901231312335 +249065,1245.3250000155774,-0.06936906127597632 +249066,1245.3300000155775,-0.06936911021509105 +249067,1245.3350000155776,-0.06936915913047688 +249068,1245.3400000155777,-0.06936920802214307 +249069,1245.3450000155779,-0.06936925689009897 +249070,1245.350000015578,-0.06936930573435386 +249071,1245.355000015578,-0.06936935455491704 +249072,1245.3600000155782,-0.06936940335179781 +249073,1245.3650000155783,-0.06936945212500546 +249074,1245.3700000155784,-0.0693695008745493 +249075,1245.3750000155785,-0.06936954960043856 +249076,1245.3800000155786,-0.06936959830268256 +249077,1245.3850000155787,-0.06936964698129057 +249078,1245.3900000155788,-0.06936969563627186 +249079,1245.395000015579,-0.06936974426763569 +249080,1245.400000015579,-0.06936979287539131 +249081,1245.4050000155792,-0.06936984145954801 +249082,1245.4100000155793,-0.06936989002011504 +249083,1245.4150000155794,-0.06936993855710165 +249084,1245.4200000155795,-0.06936998707051709 +249085,1245.4250000155796,-0.0693700355603706 +249086,1245.4300000155797,-0.06937008402667143 +249087,1245.4350000155798,-0.0693701324694288 +249088,1245.44000001558,-0.06937018088865196 +249089,1245.44500001558,-0.06937022928435013 +249090,1245.4500000155801,-0.06937027765653256 +249091,1245.4550000155803,-0.06937032600520844 +249092,1245.4600000155804,-0.06937037433038701 +249093,1245.4650000155805,-0.06937042263207747 +249094,1245.4700000155806,-0.06937047091028906 +249095,1245.4750000155807,-0.06937051916503095 +249096,1245.4800000155808,-0.06937056739631238 +249097,1245.485000015581,-0.06937061560414252 +249098,1245.490000015581,-0.06937066378853059 +249099,1245.4950000155811,-0.06937071194948577 +249100,1245.5000000155812,-0.06937076008701724 +249101,1245.5050000155813,-0.0693708082011342 +249102,1245.5100000155815,-0.06937085629184583 +249103,1245.5150000155816,-0.0693709043591613 +249104,1245.5200000155817,-0.06937095240308977 +249105,1245.5250000155818,-0.06937100042364046 +249106,1245.530000015582,-0.06937104842082248 +249107,1245.535000015582,-0.06937109639464502 +249108,1245.540000015582,-0.06937114434511725 +249109,1245.5450000155822,-0.06937119227224829 +249110,1245.5500000155823,-0.06937124017604734 +249111,1245.5550000155824,-0.0693712880565235 +249112,1245.5600000155825,-0.06937133591368594 +249113,1245.5650000155827,-0.06937138374754379 +249114,1245.5700000155828,-0.0693714315581062 +249115,1245.5750000155829,-0.06937147934538228 +249116,1245.580000015583,-0.06937152710938119 +249117,1245.585000015583,-0.06937157485011203 +249118,1245.5900000155832,-0.06937162256758393 +249119,1245.5950000155833,-0.069371670261806 +249120,1245.6000000155834,-0.06937171793278736 +249121,1245.6050000155835,-0.06937176558053713 +249122,1245.6100000155836,-0.0693718132050644 +249123,1245.6150000155837,-0.06937186080637828 +249124,1245.6200000155839,-0.06937190838448788 +249125,1245.625000015584,-0.06937195593940229 +249126,1245.630000015584,-0.06937200347113058 +249127,1245.6350000155842,-0.06937205097968187 +249128,1245.6400000155843,-0.06937209846506524 +249129,1245.6450000155844,-0.06937214592728974 +249130,1245.6500000155845,-0.06937219336636447 +249131,1245.6550000155846,-0.0693722407822985 +249132,1245.6600000155847,-0.06937228817510092 +249133,1245.6650000155848,-0.06937233554478077 +249134,1245.670000015585,-0.06937238289134712 +249135,1245.675000015585,-0.06937243021480902 +249136,1245.6800000155852,-0.06937247751517553 +249137,1245.6850000155853,-0.0693725247924557 +249138,1245.6900000155854,-0.06937257204665859 +249139,1245.6950000155855,-0.06937261927779323 +249140,1245.7000000155856,-0.06937266648586866 +249141,1245.7050000155857,-0.06937271367089393 +249142,1245.7100000155858,-0.06937276083287806 +249143,1245.715000015586,-0.06937280797183008 +249144,1245.720000015586,-0.06937285508775902 +249145,1245.7250000155861,-0.0693729021806739 +249146,1245.7300000155863,-0.06937294925058375 +249147,1245.7350000155864,-0.06937299629749755 +249148,1245.7400000155865,-0.06937304332142435 +249149,1245.7450000155866,-0.06937309032237313 +249150,1245.7500000155867,-0.06937313730035291 +249151,1245.7550000155868,-0.06937318425537269 +249152,1245.760000015587,-0.06937323118744143 +249153,1245.765000015587,-0.06937327809656817 +249154,1245.7700000155871,-0.06937332498276187 +249155,1245.7750000155872,-0.06937337184603154 +249156,1245.7800000155873,-0.06937341868638612 +249157,1245.7850000155875,-0.06937346550383462 +249158,1245.7900000155876,-0.06937351229838602 +249159,1245.7950000155877,-0.06937355907004927 +249160,1245.8000000155878,-0.06937360581883334 +249161,1245.805000015588,-0.06937365254474719 +249162,1245.810000015588,-0.06937369924779979 +249163,1245.815000015588,-0.0693737459280001 +249164,1245.8200000155882,-0.06937379258535706 +249165,1245.8250000155883,-0.06937383921987961 +249166,1245.8300000155884,-0.0693738858315767 +249167,1245.8350000155885,-0.0693739324204573 +249168,1245.8400000155887,-0.0693739789865303 +249169,1245.8450000155888,-0.06937402552980466 +249170,1245.8500000155889,-0.06937407205028932 +249171,1245.855000015589,-0.0693741185479932 +249172,1245.860000015589,-0.06937416502292523 +249173,1245.8650000155892,-0.0693742114750943 +249174,1245.8700000155893,-0.06937425790450934 +249175,1245.8750000155894,-0.06937430431117926 +249176,1245.8800000155895,-0.06937435069511298 +249177,1245.8850000155896,-0.0693743970563194 +249178,1245.8900000155897,-0.06937444339480742 +249179,1245.8950000155899,-0.06937448971058593 +249180,1245.90000001559,-0.06937453600366383 +249181,1245.90500001559,-0.06937458227405001 +249182,1245.9100000155902,-0.06937462852175337 +249183,1245.9150000155903,-0.06937467474678276 +249184,1245.9200000155904,-0.0693747209491471 +249185,1245.9250000155905,-0.06937476712885522 +249186,1245.9300000155906,-0.06937481328591603 +249187,1245.9350000155907,-0.06937485942033839 +249188,1245.9400000155908,-0.06937490553213115 +249189,1245.945000015591,-0.06937495162130317 +249190,1245.950000015591,-0.06937499768786333 +249191,1245.9550000155912,-0.06937504373182048 +249192,1245.9600000155913,-0.06937508975318345 +249193,1245.9650000155914,-0.0693751357519611 +249194,1245.9700000155915,-0.06937518172816227 +249195,1245.9750000155916,-0.06937522768179583 +249196,1245.9800000155917,-0.06937527361287056 +249197,1245.9850000155918,-0.06937531952139533 +249198,1245.990000015592,-0.06937536540737897 +249199,1245.995000015592,-0.06937541127083029 +249200,1246.0000000155921,-0.0693754571117581 +249201,1246.0050000155923,-0.06937550293017127 +249202,1246.0100000155924,-0.06937554872607855 +249203,1246.0150000155925,-0.06937559449948878 +249204,1246.0200000155926,-0.06937564025041078 +249205,1246.0250000155927,-0.06937568597885334 +249206,1246.0300000155928,-0.06937573168482526 +249207,1246.035000015593,-0.06937577736833533 +249208,1246.040000015593,-0.06937582302939237 +249209,1246.0450000155931,-0.06937586866800513 +249210,1246.0500000155932,-0.06937591428418241 +249211,1246.0550000155934,-0.06937595987793302 +249212,1246.0600000155935,-0.06937600544926571 +249213,1246.0650000155936,-0.06937605099818925 +249214,1246.0700000155937,-0.06937609652471242 +249215,1246.0750000155938,-0.069376142028844 +249216,1246.080000015594,-0.06937618751059274 +249217,1246.085000015594,-0.06937623296996742 +249218,1246.0900000155941,-0.06937627840697677 +249219,1246.0950000155942,-0.06937632382162956 +249220,1246.1000000155943,-0.06937636921393454 +249221,1246.1050000155944,-0.06937641458390044 +249222,1246.1100000155946,-0.06937645993153603 +249223,1246.1150000155947,-0.06937650525685005 +249224,1246.1200000155948,-0.06937655055985119 +249225,1246.1250000155949,-0.06937659584054823 +249226,1246.130000015595,-0.06937664109894986 +249227,1246.135000015595,-0.06937668633506484 +249228,1246.1400000155952,-0.0693767315489019 +249229,1246.1450000155953,-0.06937677674046971 +249230,1246.1500000155954,-0.06937682190977702 +249231,1246.1550000155955,-0.06937686705683253 +249232,1246.1600000155956,-0.06937691218164496 +249233,1246.1650000155958,-0.069376957284223 +249234,1246.1700000155959,-0.06937700236457535 +249235,1246.175000015596,-0.06937704742271071 +249236,1246.180000015596,-0.06937709245863777 +249237,1246.1850000155962,-0.06937713747236522 +249238,1246.1900000155963,-0.06937718246390176 +249239,1246.1950000155964,-0.06937722743325607 +249240,1246.2000000155965,-0.06937727238043681 +249241,1246.2050000155966,-0.06937731730545267 +249242,1246.2100000155967,-0.06937736220831232 +249243,1246.2150000155968,-0.06937740708902443 +249244,1246.220000015597,-0.06937745194759766 +249245,1246.225000015597,-0.06937749678404068 +249246,1246.2300000155972,-0.06937754159836212 +249247,1246.2350000155973,-0.06937758639057069 +249248,1246.2400000155974,-0.06937763116067498 +249249,1246.2450000155975,-0.06937767590868367 +249250,1246.2500000155976,-0.06937772063460541 +249251,1246.2550000155977,-0.06937776533844883 +249252,1246.2600000155978,-0.06937781002022256 +249253,1246.265000015598,-0.06937785467993522 +249254,1246.270000015598,-0.06937789931759548 +249255,1246.2750000155982,-0.06937794393321194 +249256,1246.2800000155983,-0.06937798852679324 +249257,1246.2850000155984,-0.06937803309834797 +249258,1246.2900000155985,-0.06937807764788477 +249259,1246.2950000155986,-0.06937812217541224 +249260,1246.3000000155987,-0.069378166680939 +249261,1246.3050000155988,-0.06937821116447365 +249262,1246.310000015599,-0.0693782556260248 +249263,1246.315000015599,-0.06937830006560103 +249264,1246.3200000155991,-0.06937834448321094 +249265,1246.3250000155992,-0.06937838887886312 +249266,1246.3300000155994,-0.06937843325256617 +249267,1246.3350000155995,-0.06937847760432866 +249268,1246.3400000155996,-0.06937852193415919 +249269,1246.3450000155997,-0.06937856624206633 +249270,1246.3500000155998,-0.06937861052805865 +249271,1246.3550000156,-0.06937865479214471 +249272,1246.3600000156,-0.06937869903433308 +249273,1246.3650000156001,-0.06937874325463234 +249274,1246.3700000156002,-0.06937878745305104 +249275,1246.3750000156003,-0.06937883162959772 +249276,1246.3800000156004,-0.06937887578428097 +249277,1246.3850000156006,-0.0693789199171093 +249278,1246.3900000156007,-0.0693789640280913 +249279,1246.3950000156008,-0.06937900811723546 +249280,1246.4000000156009,-0.06937905218455036 +249281,1246.405000015601,-0.06937909623004451 +249282,1246.410000015601,-0.06937914025372646 +249283,1246.4150000156012,-0.06937918425560474 +249284,1246.4200000156013,-0.06937922823568786 +249285,1246.4250000156014,-0.06937927219398435 +249286,1246.4300000156015,-0.06937931613050273 +249287,1246.4350000156016,-0.0693793600452515 +249288,1246.4400000156018,-0.0693794039382392 +249289,1246.4450000156019,-0.0693794478094743 +249290,1246.450000015602,-0.06937949165896534 +249291,1246.455000015602,-0.0693795354867208 +249292,1246.4600000156022,-0.06937957929274918 +249293,1246.4650000156023,-0.069379623077059 +249294,1246.4700000156024,-0.06937966683965871 +249295,1246.4750000156025,-0.06937971058055682 +249296,1246.4800000156026,-0.06937975429976181 +249297,1246.4850000156027,-0.06937979799728215 +249298,1246.4900000156028,-0.06937984167312634 +249299,1246.495000015603,-0.06937988532730283 +249300,1246.500000015603,-0.0693799289598201 +249301,1246.5050000156032,-0.06937997257068662 +249302,1246.5100000156033,-0.06938001615991085 +249303,1246.5150000156034,-0.06938005972750125 +249304,1246.5200000156035,-0.06938010327346626 +249305,1246.5250000156036,-0.06938014679781436 +249306,1246.5300000156037,-0.06938019030055398 +249307,1246.5350000156038,-0.06938023378169358 +249308,1246.540000015604,-0.06938027724124159 +249309,1246.545000015604,-0.06938032067920645 +249310,1246.5500000156042,-0.0693803640955966 +249311,1246.5550000156043,-0.06938040749042049 +249312,1246.5600000156044,-0.06938045086368651 +249313,1246.5650000156045,-0.0693804942154031 +249314,1246.5700000156046,-0.06938053754557869 +249315,1246.5750000156047,-0.06938058085422169 +249316,1246.5800000156048,-0.06938062414134054 +249317,1246.585000015605,-0.06938066740694361 +249318,1246.590000015605,-0.06938071065103933 +249319,1246.5950000156051,-0.06938075387363613 +249320,1246.6000000156052,-0.06938079707474236 +249321,1246.6050000156054,-0.06938084025436644 +249322,1246.6100000156055,-0.06938088341251679 +249323,1246.6150000156056,-0.06938092654920176 +249324,1246.6200000156057,-0.06938096966442978 +249325,1246.6250000156058,-0.06938101275820918 +249326,1246.630000015606,-0.06938105583054839 +249327,1246.635000015606,-0.06938109888145577 +249328,1246.6400000156061,-0.06938114191093969 +249329,1246.6450000156062,-0.06938118491900853 +249330,1246.6500000156063,-0.06938122790567065 +249331,1246.6550000156064,-0.06938127087093442 +249332,1246.6600000156066,-0.06938131381480818 +249333,1246.6650000156067,-0.06938135673730031 +249334,1246.6700000156068,-0.06938139963841916 +249335,1246.6750000156069,-0.06938144251817308 +249336,1246.680000015607,-0.0693814853765704 +249337,1246.685000015607,-0.0693815282136195 +249338,1246.6900000156072,-0.06938157102932867 +249339,1246.6950000156073,-0.06938161382370629 +249340,1246.7000000156074,-0.06938165659676068 +249341,1246.7050000156075,-0.06938169934850016 +249342,1246.7100000156076,-0.06938174207893308 +249343,1246.7150000156078,-0.06938178478806772 +249344,1246.7200000156079,-0.06938182747591244 +249345,1246.725000015608,-0.06938187014247554 +249346,1246.730000015608,-0.06938191278776534 +249347,1246.7350000156082,-0.06938195541179017 +249348,1246.7400000156083,-0.06938199801455829 +249349,1246.7450000156084,-0.06938204059607801 +249350,1246.7500000156085,-0.06938208315635767 +249351,1246.7550000156086,-0.06938212569540553 +249352,1246.7600000156087,-0.06938216821322989 +249353,1246.7650000156088,-0.06938221070983905 +249354,1246.770000015609,-0.06938225318524129 +249355,1246.775000015609,-0.06938229563944488 +249356,1246.7800000156092,-0.06938233807245812 +249357,1246.7850000156093,-0.06938238048428928 +249358,1246.7900000156094,-0.06938242287494664 +249359,1246.7950000156095,-0.06938246524443845 +249360,1246.8000000156096,-0.06938250759277298 +249361,1246.8050000156097,-0.06938254991995851 +249362,1246.8100000156098,-0.06938259222600328 +249363,1246.81500001561,-0.06938263451091556 +249364,1246.82000001561,-0.06938267677470358 +249365,1246.8250000156102,-0.06938271901737562 +249366,1246.8300000156103,-0.06938276123893991 +249367,1246.8350000156104,-0.06938280343940469 +249368,1246.8400000156105,-0.0693828456187782 +249369,1246.8450000156106,-0.06938288777706868 +249370,1246.8500000156107,-0.06938292991428437 +249371,1246.8550000156108,-0.06938297203043348 +249372,1246.860000015611,-0.06938301412552424 +249373,1246.865000015611,-0.06938305619956489 +249374,1246.8700000156111,-0.06938309825256364 +249375,1246.8750000156112,-0.06938314028452869 +249376,1246.8800000156114,-0.06938318229546828 +249377,1246.8850000156115,-0.0693832242853906 +249378,1246.8900000156116,-0.06938326625430387 +249379,1246.8950000156117,-0.06938330820221628 +249380,1246.9000000156118,-0.06938335012913602 +249381,1246.905000015612,-0.0693833920350713 +249382,1246.910000015612,-0.06938343392003031 +249383,1246.9150000156121,-0.06938347578402125 +249384,1246.9200000156122,-0.06938351762705229 +249385,1246.9250000156123,-0.06938355944913162 +249386,1246.9300000156124,-0.06938360125026741 +249387,1246.9350000156126,-0.06938364303046785 +249388,1246.9400000156127,-0.06938368478974109 +249389,1246.9450000156128,-0.06938372652809534 +249390,1246.9500000156129,-0.06938376824553871 +249391,1246.955000015613,-0.06938380994207942 +249392,1246.960000015613,-0.0693838516177256 +249393,1246.9650000156132,-0.0693838932724854 +249394,1246.9700000156133,-0.06938393490636698 +249395,1246.9750000156134,-0.0693839765193785 +249396,1246.9800000156135,-0.06938401811152808 +249397,1246.9850000156137,-0.06938405968282389 +249398,1246.9900000156138,-0.06938410123327407 +249399,1246.9950000156139,-0.06938414276288674 +249400,1247.000000015614,-0.06938418427167004 +249401,1247.005000015614,-0.06938422575963209 +249402,1247.0100000156142,-0.06938426722678102 +249403,1247.0150000156143,-0.06938430867312496 +249404,1247.0200000156144,-0.06938435009867203 +249405,1247.0250000156145,-0.06938439150343036 +249406,1247.0300000156146,-0.06938443288740803 +249407,1247.0350000156147,-0.06938447425061317 +249408,1247.0400000156149,-0.06938451559305388 +249409,1247.045000015615,-0.06938455691473826 +249410,1247.050000015615,-0.06938459821567441 +249411,1247.0550000156152,-0.06938463949587044 +249412,1247.0600000156153,-0.06938468075533444 +249413,1247.0650000156154,-0.0693847219940745 +249414,1247.0700000156155,-0.0693847632120987 +249415,1247.0750000156156,-0.06938480440941512 +249416,1247.0800000156157,-0.06938484558603186 +249417,1247.0850000156158,-0.06938488674195697 +249418,1247.090000015616,-0.06938492787719855 +249419,1247.095000015616,-0.06938496899176465 +249420,1247.1000000156162,-0.06938501008566335 +249421,1247.1050000156163,-0.06938505115890271 +249422,1247.1100000156164,-0.06938509221149079 +249423,1247.1150000156165,-0.06938513324343565 +249424,1247.1200000156166,-0.06938517425474534 +249425,1247.1250000156167,-0.0693852152454279 +249426,1247.1300000156168,-0.0693852562154914 +249427,1247.135000015617,-0.06938529716494386 +249428,1247.140000015617,-0.06938533809379335 +249429,1247.1450000156171,-0.0693853790020479 +249430,1247.1500000156173,-0.06938541988971553 +249431,1247.1550000156174,-0.06938546075680427 +249432,1247.1600000156175,-0.06938550160332216 +249433,1247.1650000156176,-0.06938554242927722 +249434,1247.1700000156177,-0.06938558323467749 +249435,1247.1750000156178,-0.06938562401953095 +249436,1247.180000015618,-0.06938566478384565 +249437,1247.185000015618,-0.0693857055276296 +249438,1247.1900000156181,-0.06938574625089078 +249439,1247.1950000156182,-0.06938578695363722 +249440,1247.2000000156183,-0.0693858276358769 +249441,1247.2050000156185,-0.06938586829761785 +249442,1247.2100000156186,-0.06938590893886805 +249443,1247.2150000156187,-0.06938594955963548 +249444,1247.2200000156188,-0.06938599015992815 +249445,1247.225000015619,-0.06938603073975402 +249446,1247.230000015619,-0.0693860712991211 +249447,1247.235000015619,-0.06938611183803736 +249448,1247.2400000156192,-0.06938615235651079 +249449,1247.2450000156193,-0.06938619285454932 +249450,1247.2500000156194,-0.06938623333216096 +249451,1247.2550000156195,-0.06938627378935365 +249452,1247.2600000156197,-0.06938631422613538 +249453,1247.2650000156198,-0.0693863546425141 +249454,1247.2700000156199,-0.06938639503849775 +249455,1247.27500001562,-0.06938643541409431 +249456,1247.28000001562,-0.06938647576931171 +249457,1247.2850000156202,-0.06938651610415793 +249458,1247.2900000156203,-0.06938655641864085 +249459,1247.2950000156204,-0.06938659671276846 +249460,1247.3000000156205,-0.06938663698654869 +249461,1247.3050000156206,-0.06938667723998948 +249462,1247.3100000156207,-0.06938671747309874 +249463,1247.3150000156209,-0.06938675768588443 +249464,1247.320000015621,-0.06938679787835443 +249465,1247.325000015621,-0.06938683805051671 +249466,1247.3300000156212,-0.06938687820237914 +249467,1247.3350000156213,-0.06938691833394967 +249468,1247.3400000156214,-0.06938695844523621 +249469,1247.3450000156215,-0.06938699853624665 +249470,1247.3500000156216,-0.06938703860698892 +249471,1247.3550000156217,-0.06938707865747089 +249472,1247.3600000156218,-0.06938711868770048 +249473,1247.365000015622,-0.06938715869768558 +249474,1247.370000015622,-0.06938719868743409 +249475,1247.3750000156222,-0.0693872386569539 +249476,1247.3800000156223,-0.06938727860625288 +249477,1247.3850000156224,-0.06938731853533892 +249478,1247.3900000156225,-0.06938735844421992 +249479,1247.3950000156226,-0.06938739833290374 +249480,1247.4000000156227,-0.06938743820139823 +249481,1247.4050000156228,-0.0693874780497113 +249482,1247.410000015623,-0.0693875178778508 +249483,1247.415000015623,-0.0693875576858246 +249484,1247.4200000156231,-0.06938759747364054 +249485,1247.4250000156233,-0.0693876372413065 +249486,1247.4300000156234,-0.06938767698883033 +249487,1247.4350000156235,-0.06938771671621989 +249488,1247.4400000156236,-0.069387756423483 +249489,1247.4450000156237,-0.06938779611062752 +249490,1247.4500000156238,-0.06938783577766129 +249491,1247.455000015624,-0.06938787542459217 +249492,1247.460000015624,-0.06938791505142797 +249493,1247.4650000156241,-0.06938795465817653 +249494,1247.4700000156242,-0.06938799424484568 +249495,1247.4750000156243,-0.06938803381144323 +249496,1247.4800000156245,-0.06938807335797703 +249497,1247.4850000156246,-0.06938811288445489 +249498,1247.4900000156247,-0.0693881523908846 +249499,1247.4950000156248,-0.069388191877274 +249500,1247.500000015625,-0.06938823134363092 +249501,1247.505000015625,-0.06938827078996312 +249502,1247.510000015625,-0.06938831021627845 +249503,1247.5150000156252,-0.06938834962258465 +249504,1247.5200000156253,-0.06938838900888958 +249505,1247.5250000156254,-0.06938842837520098 +249506,1247.5300000156255,-0.0693884677215267 +249507,1247.5350000156257,-0.06938850704787448 +249508,1247.5400000156258,-0.06938854635425212 +249509,1247.5450000156259,-0.06938858564066741 +249510,1247.550000015626,-0.06938862490712812 +249511,1247.555000015626,-0.06938866415364203 +249512,1247.5600000156262,-0.0693887033802169 +249513,1247.5650000156263,-0.06938874258686052 +249514,1247.5700000156264,-0.06938878177358064 +249515,1247.5750000156265,-0.06938882094038502 +249516,1247.5800000156266,-0.06938886008728143 +249517,1247.5850000156267,-0.06938889921427761 +249518,1247.5900000156269,-0.06938893832138135 +249519,1247.595000015627,-0.06938897740860035 +249520,1247.600000015627,-0.0693890164759424 +249521,1247.6050000156272,-0.06938905552341522 +249522,1247.6100000156273,-0.06938909455102656 +249523,1247.6150000156274,-0.06938913355878415 +249524,1247.6200000156275,-0.06938917254669574 +249525,1247.6250000156276,-0.06938921151476907 +249526,1247.6300000156277,-0.06938925046301182 +249527,1247.6350000156278,-0.06938928939143174 +249528,1247.640000015628,-0.06938932830003658 +249529,1247.645000015628,-0.06938936718883403 +249530,1247.6500000156282,-0.06938940605783181 +249531,1247.6550000156283,-0.06938944490703763 +249532,1247.6600000156284,-0.0693894837364592 +249533,1247.6650000156285,-0.06938952254610423 +249534,1247.6700000156286,-0.06938956133598043 +249535,1247.6750000156287,-0.06938960010609549 +249536,1247.6800000156288,-0.0693896388564571 +249537,1247.685000015629,-0.06938967758707297 +249538,1247.690000015629,-0.06938971629795078 +249539,1247.6950000156291,-0.06938975498909823 +249540,1247.7000000156293,-0.069389793660523 +249541,1247.7050000156294,-0.06938983231223277 +249542,1247.7100000156295,-0.06938987094423521 +249543,1247.7150000156296,-0.069389909556538 +249544,1247.7200000156297,-0.06938994814914883 +249545,1247.7250000156298,-0.06938998672207533 +249546,1247.73000001563,-0.06939002527532522 +249547,1247.73500001563,-0.06939006380890611 +249548,1247.7400000156301,-0.06939010232282568 +249549,1247.7450000156302,-0.0693901408170916 +249550,1247.7500000156303,-0.06939017929171153 +249551,1247.7550000156305,-0.06939021774669307 +249552,1247.7600000156306,-0.06939025618204392 +249553,1247.7650000156307,-0.06939029459777168 +249554,1247.7700000156308,-0.06939033299388404 +249555,1247.775000015631,-0.06939037137038861 +249556,1247.780000015631,-0.06939040972729302 +249557,1247.785000015631,-0.06939044806460493 +249558,1247.7900000156312,-0.06939048638233193 +249559,1247.7950000156313,-0.06939052468048168 +249560,1247.8000000156314,-0.06939056295906178 +249561,1247.8050000156315,-0.06939060121807987 +249562,1247.8100000156317,-0.06939063945754355 +249563,1247.8150000156318,-0.06939067767746043 +249564,1247.8200000156319,-0.06939071587783814 +249565,1247.825000015632,-0.06939075405868426 +249566,1247.830000015632,-0.06939079222000644 +249567,1247.8350000156322,-0.06939083036181222 +249568,1247.8400000156323,-0.06939086848410925 +249569,1247.8450000156324,-0.0693909065869051 +249570,1247.8500000156325,-0.06939094467020736 +249571,1247.8550000156326,-0.06939098273402364 +249572,1247.8600000156327,-0.0693910207783615 +249573,1247.8650000156329,-0.06939105880322853 +249574,1247.870000015633,-0.06939109680863233 +249575,1247.875000015633,-0.06939113479458045 +249576,1247.8800000156332,-0.06939117276108049 +249577,1247.8850000156333,-0.06939121070813999 +249578,1247.8900000156334,-0.06939124863576651 +249579,1247.8950000156335,-0.06939128654396767 +249580,1247.9000000156336,-0.06939132443275098 +249581,1247.9050000156337,-0.06939136230212402 +249582,1247.9100000156338,-0.06939140015209436 +249583,1247.915000015634,-0.0693914379826695 +249584,1247.920000015634,-0.06939147579385704 +249585,1247.9250000156342,-0.06939151358566452 +249586,1247.9300000156343,-0.06939155135809946 +249587,1247.9350000156344,-0.06939158911116942 +249588,1247.9400000156345,-0.06939162684488193 +249589,1247.9450000156346,-0.06939166455924452 +249590,1247.9500000156347,-0.06939170225426472 +249591,1247.9550000156348,-0.06939173992995007 +249592,1247.960000015635,-0.06939177758630807 +249593,1247.965000015635,-0.06939181522334625 +249594,1247.9700000156352,-0.06939185284107216 +249595,1247.9750000156353,-0.0693918904394933 +249596,1247.9800000156354,-0.06939192801861715 +249597,1247.9850000156355,-0.06939196557845126 +249598,1247.9900000156356,-0.06939200311900312 +249599,1247.9950000156357,-0.06939204064028023 +249600,1248.0000000156358,-0.0693920781422901 +249601,1248.005000015636,-0.06939211562504022 +249602,1248.010000015636,-0.06939215308853808 +249603,1248.0150000156361,-0.06939219053279119 +249604,1248.0200000156362,-0.06939222795780703 +249605,1248.0250000156364,-0.06939226536359307 +249606,1248.0300000156365,-0.06939230275015681 +249607,1248.0350000156366,-0.06939234011750572 +249608,1248.0400000156367,-0.06939237746564729 +249609,1248.0450000156368,-0.06939241479458898 +249610,1248.050000015637,-0.06939245210433827 +249611,1248.055000015637,-0.06939248939490261 +249612,1248.0600000156371,-0.06939252666628949 +249613,1248.0650000156372,-0.06939256391850634 +249614,1248.0700000156373,-0.06939260115156064 +249615,1248.0750000156374,-0.06939263836545985 +249616,1248.0800000156376,-0.0693926755602114 +249617,1248.0850000156377,-0.06939271273582276 +249618,1248.0900000156378,-0.06939274989230136 +249619,1248.0950000156379,-0.06939278702965464 +249620,1248.100000015638,-0.06939282414789007 +249621,1248.105000015638,-0.06939286124701506 +249622,1248.1100000156382,-0.06939289832703706 +249623,1248.1150000156383,-0.0693929353879635 +249624,1248.1200000156384,-0.06939297242980179 +249625,1248.1250000156385,-0.06939300945255937 +249626,1248.1300000156386,-0.06939304645624365 +249627,1248.1350000156388,-0.06939308344086208 +249628,1248.1400000156389,-0.06939312040642202 +249629,1248.145000015639,-0.06939315735293095 +249630,1248.150000015639,-0.06939319428039623 +249631,1248.1550000156392,-0.0693932311888253 +249632,1248.1600000156393,-0.06939326807822553 +249633,1248.1650000156394,-0.06939330494860435 +249634,1248.1700000156395,-0.06939334179996916 +249635,1248.1750000156396,-0.06939337863232733 +249636,1248.1800000156397,-0.06939341544568628 +249637,1248.1850000156398,-0.06939345224005336 +249638,1248.19000001564,-0.069393489015436 +249639,1248.19500001564,-0.06939352577184157 +249640,1248.2000000156402,-0.06939356250927743 +249641,1248.2050000156403,-0.06939359922775098 +249642,1248.2100000156404,-0.0693936359272696 +249643,1248.2150000156405,-0.06939367260784064 +249644,1248.2200000156406,-0.06939370926947147 +249645,1248.2250000156407,-0.06939374591216947 +249646,1248.2300000156408,-0.069393782535942 +249647,1248.235000015641,-0.06939381914079641 +249648,1248.240000015641,-0.06939385572674006 +249649,1248.2450000156412,-0.0693938922937803 +249650,1248.2500000156413,-0.0693939288419245 +249651,1248.2550000156414,-0.06939396537117998 +249652,1248.2600000156415,-0.06939400188155409 +249653,1248.2650000156416,-0.06939403837305419 +249654,1248.2700000156417,-0.06939407484568762 +249655,1248.2750000156418,-0.06939411129946169 +249656,1248.280000015642,-0.06939414773438374 +249657,1248.285000015642,-0.06939418415046111 +249658,1248.2900000156421,-0.06939422054770114 +249659,1248.2950000156422,-0.06939425692611113 +249660,1248.3000000156424,-0.06939429328569839 +249661,1248.3050000156425,-0.06939432962647028 +249662,1248.3100000156426,-0.06939436594843408 +249663,1248.3150000156427,-0.06939440225159713 +249664,1248.3200000156428,-0.06939443853596672 +249665,1248.325000015643,-0.06939447480155014 +249666,1248.330000015643,-0.06939451104835473 +249667,1248.3350000156431,-0.06939454727638777 +249668,1248.3400000156432,-0.06939458348565655 +249669,1248.3450000156433,-0.06939461967616839 +249670,1248.3500000156434,-0.06939465584793057 +249671,1248.3550000156436,-0.06939469200095036 +249672,1248.3600000156437,-0.06939472813523508 +249673,1248.3650000156438,-0.06939476425079197 +249674,1248.3700000156439,-0.06939480034762834 +249675,1248.375000015644,-0.06939483642575146 +249676,1248.380000015644,-0.06939487248516862 +249677,1248.3850000156442,-0.06939490852588706 +249678,1248.3900000156443,-0.06939494454791406 +249679,1248.3950000156444,-0.06939498055125691 +249680,1248.4000000156445,-0.06939501653592284 +249681,1248.4050000156446,-0.06939505250191912 +249682,1248.4100000156448,-0.069395088449253 +249683,1248.4150000156449,-0.06939512437793174 +249684,1248.420000015645,-0.06939516028796258 +249685,1248.425000015645,-0.06939519617935279 +249686,1248.4300000156452,-0.06939523205210961 +249687,1248.4350000156453,-0.06939526790624026 +249688,1248.4400000156454,-0.069395303741752 +249689,1248.4450000156455,-0.06939533955865207 +249690,1248.4500000156456,-0.06939537535694769 +249691,1248.4550000156457,-0.06939541113664607 +249692,1248.4600000156458,-0.06939544689775448 +249693,1248.465000015646,-0.06939548264028013 +249694,1248.470000015646,-0.06939551836423022 +249695,1248.4750000156462,-0.06939555406961198 +249696,1248.4800000156463,-0.06939558975643263 +249697,1248.4850000156464,-0.06939562542469938 +249698,1248.4900000156465,-0.06939566107441944 +249699,1248.4950000156466,-0.06939569670560002 +249700,1248.5000000156467,-0.06939573231824832 +249701,1248.5050000156468,-0.06939576791237154 +249702,1248.510000015647,-0.06939580348797687 +249703,1248.515000015647,-0.06939583904507154 +249704,1248.5200000156472,-0.0693958745836627 +249705,1248.5250000156473,-0.06939591010375758 +249706,1248.5300000156474,-0.06939594560536333 +249707,1248.5350000156475,-0.06939598108848713 +249708,1248.5400000156476,-0.0693960165531362 +249709,1248.5450000156477,-0.06939605199931768 +249710,1248.5500000156478,-0.06939608742703876 +249711,1248.555000015648,-0.06939612283630663 +249712,1248.560000015648,-0.06939615822712844 +249713,1248.5650000156481,-0.06939619359951135 +249714,1248.5700000156482,-0.06939622895346252 +249715,1248.5750000156484,-0.06939626428898915 +249716,1248.5800000156485,-0.06939629960609836 +249717,1248.5850000156486,-0.0693963349047973 +249718,1248.5900000156487,-0.06939637018509315 +249719,1248.5950000156488,-0.06939640544699303 +249720,1248.600000015649,-0.0693964406905041 +249721,1248.605000015649,-0.06939647591563351 +249722,1248.6100000156491,-0.0693965111223884 +249723,1248.6150000156492,-0.06939654631077591 +249724,1248.6200000156493,-0.06939658148080315 +249725,1248.6250000156494,-0.06939661663247727 +249726,1248.6300000156496,-0.06939665176580541 +249727,1248.6350000156497,-0.06939668688079466 +249728,1248.6400000156498,-0.06939672197745217 +249729,1248.6450000156499,-0.06939675705578506 +249730,1248.65000001565,-0.06939679211580044 +249731,1248.65500001565,-0.06939682715750543 +249732,1248.6600000156502,-0.06939686218090714 +249733,1248.6650000156503,-0.06939689718601266 +249734,1248.6700000156504,-0.06939693217282913 +249735,1248.6750000156505,-0.06939696714136365 +249736,1248.6800000156506,-0.06939700209162329 +249737,1248.6850000156508,-0.06939703702361517 +249738,1248.6900000156509,-0.06939707193734637 +249739,1248.695000015651,-0.06939710683282399 +249740,1248.700000015651,-0.06939714171005512 +249741,1248.7050000156512,-0.06939717656904686 +249742,1248.7100000156513,-0.06939721140980624 +249743,1248.7150000156514,-0.0693972462323404 +249744,1248.7200000156515,-0.06939728103665639 +249745,1248.7250000156516,-0.0693973158227613 +249746,1248.7300000156517,-0.06939735059066218 +249747,1248.7350000156518,-0.06939738534036612 +249748,1248.740000015652,-0.06939742007188017 +249749,1248.745000015652,-0.06939745478521138 +249750,1248.7500000156522,-0.06939748948036685 +249751,1248.7550000156523,-0.0693975241573536 +249752,1248.7600000156524,-0.0693975588161787 +249753,1248.7650000156525,-0.0693975934568492 +249754,1248.7700000156526,-0.06939762807937216 +249755,1248.7750000156527,-0.06939766268375462 +249756,1248.7800000156528,-0.06939769727000362 +249757,1248.785000015653,-0.0693977318381262 +249758,1248.790000015653,-0.06939776638812939 +249759,1248.7950000156532,-0.06939780092002024 +249760,1248.8000000156533,-0.06939783543380576 +249761,1248.8050000156534,-0.06939786992949298 +249762,1248.8100000156535,-0.06939790440708896 +249763,1248.8150000156536,-0.0693979388666007 +249764,1248.8200000156537,-0.06939797330803522 +249765,1248.8250000156538,-0.06939800773139955 +249766,1248.830000015654,-0.06939804213670069 +249767,1248.835000015654,-0.06939807652394565 +249768,1248.8400000156541,-0.06939811089314145 +249769,1248.8450000156543,-0.06939814524429509 +249770,1248.8500000156544,-0.0693981795774136 +249771,1248.8550000156545,-0.06939821389250392 +249772,1248.8600000156546,-0.0693982481895731 +249773,1248.8650000156547,-0.06939828246862811 +249774,1248.8700000156548,-0.06939831672967597 +249775,1248.875000015655,-0.06939835097272365 +249776,1248.880000015655,-0.06939838519777812 +249777,1248.8850000156551,-0.0693984194048464 +249778,1248.8900000156552,-0.06939845359393544 +249779,1248.8950000156553,-0.06939848776505224 +249780,1248.9000000156555,-0.06939852191820375 +249781,1248.9050000156556,-0.06939855605339698 +249782,1248.9100000156557,-0.06939859017063887 +249783,1248.9150000156558,-0.0693986242699364 +249784,1248.920000015656,-0.06939865835129652 +249785,1248.925000015656,-0.06939869241472621 +249786,1248.930000015656,-0.06939872646023243 +249787,1248.9350000156562,-0.06939876048782212 +249788,1248.9400000156563,-0.06939879449750223 +249789,1248.9450000156564,-0.06939882848927974 +249790,1248.9500000156565,-0.06939886246316157 +249791,1248.9550000156567,-0.06939889641915466 +249792,1248.9600000156568,-0.06939893035726595 +249793,1248.9650000156569,-0.06939896427750242 +249794,1248.970000015657,-0.06939899817987095 +249795,1248.975000015657,-0.06939903206437852 +249796,1248.9800000156572,-0.06939906593103204 +249797,1248.9850000156573,-0.06939909977983844 +249798,1248.9900000156574,-0.06939913361080464 +249799,1248.9950000156575,-0.06939916742393758 +249800,1249.0000000156576,-0.06939920121924414 +249801,1249.0050000156577,-0.0693992349967313 +249802,1249.0100000156579,-0.06939926875640592 +249803,1249.015000015658,-0.06939930249827492 +249804,1249.020000015658,-0.06939933622234523 +249805,1249.0250000156582,-0.06939936992862372 +249806,1249.0300000156583,-0.06939940361711734 +249807,1249.0350000156584,-0.06939943728783296 +249808,1249.0400000156585,-0.06939947094077747 +249809,1249.0450000156586,-0.0693995045759578 +249810,1249.0500000156587,-0.0693995381933808 +249811,1249.0550000156588,-0.06939957179305337 +249812,1249.060000015659,-0.06939960537498241 +249813,1249.065000015659,-0.06939963893917481 +249814,1249.0700000156592,-0.06939967248563743 +249815,1249.0750000156593,-0.06939970601437714 +249816,1249.0800000156594,-0.06939973952540085 +249817,1249.0850000156595,-0.0693997730187154 +249818,1249.0900000156596,-0.0693998064943277 +249819,1249.0950000156597,-0.06939983995224457 +249820,1249.1000000156598,-0.06939987339247289 +249821,1249.10500001566,-0.06939990681501952 +249822,1249.11000001566,-0.06939994021989133 +249823,1249.1150000156601,-0.06939997360709518 +249824,1249.1200000156603,-0.0694000069766379 +249825,1249.1250000156604,-0.06940004032852634 +249826,1249.1300000156605,-0.06940007366276739 +249827,1249.1350000156606,-0.06940010697936784 +249828,1249.1400000156607,-0.06940014027833456 +249829,1249.1450000156608,-0.06940017355967439 +249830,1249.150000015661,-0.06940020682339416 +249831,1249.155000015661,-0.0694002400695007 +249832,1249.1600000156611,-0.06940027329800086 +249833,1249.1650000156612,-0.06940030650890144 +249834,1249.1700000156613,-0.06940033970220928 +249835,1249.1750000156615,-0.06940037287793122 +249836,1249.1800000156616,-0.06940040603607404 +249837,1249.1850000156617,-0.0694004391766446 +249838,1249.1900000156618,-0.0694004722996497 +249839,1249.195000015662,-0.06940050540509612 +249840,1249.200000015662,-0.06940053849299072 +249841,1249.205000015662,-0.06940057156334027 +249842,1249.2100000156622,-0.06940060461615158 +249843,1249.2150000156623,-0.06940063765143147 +249844,1249.2200000156624,-0.06940067066918672 +249845,1249.2250000156625,-0.06940070366942412 +249846,1249.2300000156627,-0.06940073665215049 +249847,1249.2350000156628,-0.06940076961737258 +249848,1249.2400000156629,-0.06940080256509723 +249849,1249.245000015663,-0.06940083549533117 +249850,1249.250000015663,-0.06940086840808121 +249851,1249.2550000156632,-0.06940090130335412 +249852,1249.2600000156633,-0.06940093418115668 +249853,1249.2650000156634,-0.06940096704149568 +249854,1249.2700000156635,-0.06940099988437785 +249855,1249.2750000156636,-0.06940103270981 +249856,1249.2800000156637,-0.06940106551779887 +249857,1249.2850000156639,-0.06940109830835124 +249858,1249.290000015664,-0.06940113108147385 +249859,1249.295000015664,-0.06940116383717347 +249860,1249.3000000156642,-0.06940119657545686 +249861,1249.3050000156643,-0.06940122929633077 +249862,1249.3100000156644,-0.06940126199980193 +249863,1249.3150000156645,-0.06940129468587711 +249864,1249.3200000156646,-0.06940132735456304 +249865,1249.3250000156647,-0.06940136000586647 +249866,1249.3300000156648,-0.06940139263979413 +249867,1249.335000015665,-0.06940142525635275 +249868,1249.340000015665,-0.06940145785554909 +249869,1249.3450000156652,-0.06940149043738984 +249870,1249.3500000156653,-0.06940152300188175 +249871,1249.3550000156654,-0.06940155554903156 +249872,1249.3600000156655,-0.06940158807884596 +249873,1249.3650000156656,-0.06940162059133169 +249874,1249.3700000156657,-0.06940165308649547 +249875,1249.3750000156658,-0.06940168556434399 +249876,1249.380000015666,-0.069401718024884 +249877,1249.385000015666,-0.06940175046812216 +249878,1249.3900000156661,-0.0694017828940652 +249879,1249.3950000156663,-0.06940181530271984 +249880,1249.4000000156664,-0.06940184769409276 +249881,1249.4050000156665,-0.06940188006819065 +249882,1249.4100000156666,-0.06940191242502022 +249883,1249.4150000156667,-0.06940194476458818 +249884,1249.4200000156668,-0.06940197708690118 +249885,1249.425000015667,-0.06940200939196593 +249886,1249.430000015667,-0.06940204167978911 +249887,1249.4350000156671,-0.0694020739503774 +249888,1249.4400000156672,-0.06940210620373748 +249889,1249.4450000156673,-0.06940213843987603 +249890,1249.4500000156675,-0.06940217065879972 +249891,1249.4550000156676,-0.06940220286051522 +249892,1249.4600000156677,-0.06940223504502921 +249893,1249.4650000156678,-0.06940226721234832 +249894,1249.470000015668,-0.06940229936247926 +249895,1249.475000015668,-0.06940233149542865 +249896,1249.480000015668,-0.06940236361120318 +249897,1249.4850000156682,-0.0694023957098095 +249898,1249.4900000156683,-0.06940242779125425 +249899,1249.4950000156684,-0.06940245985554407 +249900,1249.5000000156685,-0.06940249190268562 +249901,1249.5050000156687,-0.06940252393268555 +249902,1249.5100000156688,-0.06940255594555048 +249903,1249.5150000156689,-0.06940258794128706 +249904,1249.520000015669,-0.06940261991990196 +249905,1249.525000015669,-0.06940265188140175 +249906,1249.5300000156692,-0.06940268382579311 +249907,1249.5350000156693,-0.06940271575308264 +249908,1249.5400000156694,-0.06940274766327699 +249909,1249.5450000156695,-0.06940277955638276 +249910,1249.5500000156696,-0.06940281143240658 +249911,1249.5550000156697,-0.06940284329135507 +249912,1249.5600000156699,-0.06940287513323484 +249913,1249.56500001567,-0.06940290695805251 +249914,1249.57000001567,-0.06940293876581469 +249915,1249.5750000156702,-0.06940297055652796 +249916,1249.5800000156703,-0.06940300233019896 +249917,1249.5850000156704,-0.06940303408683426 +249918,1249.5900000156705,-0.0694030658264405 +249919,1249.5950000156706,-0.06940309754902424 +249920,1249.6000000156707,-0.06940312925459209 +249921,1249.6050000156708,-0.06940316094315065 +249922,1249.610000015671,-0.06940319261470647 +249923,1249.615000015671,-0.06940322426926618 +249924,1249.6200000156712,-0.06940325590683633 +249925,1249.6250000156713,-0.06940328752742352 +249926,1249.6300000156714,-0.06940331913103431 +249927,1249.6350000156715,-0.0694033507176753 +249928,1249.6400000156716,-0.06940338228735304 +249929,1249.6450000156717,-0.0694034138400741 +249930,1249.6500000156718,-0.06940344537584509 +249931,1249.655000015672,-0.06940347689467251 +249932,1249.660000015672,-0.06940350839656295 +249933,1249.6650000156721,-0.069403539881523 +249934,1249.6700000156723,-0.06940357134955916 +249935,1249.6750000156724,-0.06940360280067803 +249936,1249.6800000156725,-0.06940363423488614 +249937,1249.6850000156726,-0.06940366565219004 +249938,1249.6900000156727,-0.06940369705259629 +249939,1249.6950000156728,-0.06940372843611141 +249940,1249.700000015673,-0.06940375980274197 +249941,1249.705000015673,-0.06940379115249447 +249942,1249.7100000156731,-0.06940382248537547 +249943,1249.7150000156732,-0.06940385380139151 +249944,1249.7200000156733,-0.06940388510054911 +249945,1249.7250000156735,-0.06940391638285479 +249946,1249.7300000156736,-0.06940394764831509 +249947,1249.7350000156737,-0.06940397889693653 +249948,1249.7400000156738,-0.06940401012872562 +249949,1249.745000015674,-0.06940404134368887 +249950,1249.750000015674,-0.06940407254183284 +249951,1249.755000015674,-0.06940410372316398 +249952,1249.7600000156742,-0.06940413488768885 +249953,1249.7650000156743,-0.06940416603541393 +249954,1249.7700000156744,-0.06940419716634573 +249955,1249.7750000156746,-0.06940422828049074 +249956,1249.7800000156747,-0.06940425937785548 +249957,1249.7850000156748,-0.06940429045844644 +249958,1249.7900000156749,-0.06940432152227011 +249959,1249.795000015675,-0.06940435256933299 +249960,1249.800000015675,-0.06940438359964154 +249961,1249.8050000156752,-0.06940441461320229 +249962,1249.8100000156753,-0.0694044456100217 +249963,1249.8150000156754,-0.06940447659010625 +249964,1249.8200000156755,-0.0694045075534624 +249965,1249.8250000156756,-0.06940453850009666 +249966,1249.8300000156758,-0.06940456943001548 +249967,1249.8350000156759,-0.06940460034322535 +249968,1249.840000015676,-0.06940463123973271 +249969,1249.845000015676,-0.06940466211954405 +249970,1249.8500000156762,-0.06940469298266583 +249971,1249.8550000156763,-0.06940472382910448 +249972,1249.8600000156764,-0.06940475465886652 +249973,1249.8650000156765,-0.06940478547195833 +249974,1249.8700000156766,-0.06940481626838642 +249975,1249.8750000156767,-0.0694048470481572 +249976,1249.8800000156768,-0.06940487781127716 +249977,1249.885000015677,-0.0694049085577527 +249978,1249.890000015677,-0.0694049392875903 +249979,1249.8950000156772,-0.06940497000079637 +249980,1249.9000000156773,-0.06940500069737734 +249981,1249.9050000156774,-0.06940503137733968 +249982,1249.9100000156775,-0.0694050620406898 +249983,1249.9150000156776,-0.06940509268743414 +249984,1249.9200000156777,-0.06940512331757911 +249985,1249.9250000156778,-0.06940515393113114 +249986,1249.930000015678,-0.06940518452809666 +249987,1249.935000015678,-0.06940521510848206 +249988,1249.9400000156782,-0.06940524567229381 +249989,1249.9450000156783,-0.06940527621953826 +249990,1249.9500000156784,-0.06940530675022188 +249991,1249.9550000156785,-0.06940533726435105 +249992,1249.9600000156786,-0.06940536776193217 +249993,1249.9650000156787,-0.06940539824297165 +249994,1249.9700000156788,-0.06940542870747587 +249995,1249.975000015679,-0.06940545915545128 +249996,1249.980000015679,-0.06940548958690423 +249997,1249.9850000156791,-0.06940552000184114 +249998,1249.9900000156792,-0.06940555040026838 +249999,1249.9950000156794,-0.06940558078219235 +250000,1250.0000000156795,-0.06940561114761942 +250001,1250.0050000156796,-0.06940564149655601 +250002,1250.0100000156797,-0.06940567182900845 +250003,1250.0150000156798,-0.06940570214498314 +250004,1250.02000001568,-0.06940573244448646 +250005,1250.02500001568,-0.06940576272752479 +250006,1250.0300000156801,-0.06940579299410447 +250007,1250.0350000156802,-0.0694058232442319 +250008,1250.0400000156803,-0.06940585347791342 +250009,1250.0450000156804,-0.06940588369515542 +250010,1250.0500000156806,-0.06940591389596425 +250011,1250.0550000156807,-0.06940594408034624 +250012,1250.0600000156808,-0.06940597424830777 +250013,1250.0650000156809,-0.0694060043998552 +250014,1250.070000015681,-0.06940603453499485 +250015,1250.075000015681,-0.06940606465373308 +250016,1250.0800000156812,-0.06940609475607626 +250017,1250.0850000156813,-0.0694061248420307 +250018,1250.0900000156814,-0.06940615491160274 +250019,1250.0950000156815,-0.06940618496479874 +250020,1250.1000000156816,-0.06940621500162501 +250021,1250.1050000156818,-0.0694062450220879 +250022,1250.1100000156819,-0.06940627502619375 +250023,1250.115000015682,-0.06940630501394884 +250024,1250.120000015682,-0.06940633498535953 +250025,1250.1250000156822,-0.06940636494043215 +250026,1250.1300000156823,-0.06940639487917298 +250027,1250.1350000156824,-0.06940642480158837 +250028,1250.1400000156825,-0.06940645470768461 +250029,1250.1450000156826,-0.06940648459746805 +250030,1250.1500000156827,-0.06940651447094495 +250031,1250.1550000156828,-0.06940654432812166 +250032,1250.160000015683,-0.06940657416900446 +250033,1250.165000015683,-0.06940660399359964 +250034,1250.1700000156832,-0.06940663380191353 +250035,1250.1750000156833,-0.06940666359395241 +250036,1250.1800000156834,-0.06940669336972256 +250037,1250.1850000156835,-0.0694067231292303 +250038,1250.1900000156836,-0.06940675287248191 +250039,1250.1950000156837,-0.06940678259948366 +250040,1250.2000000156838,-0.06940681231024184 +250041,1250.205000015684,-0.06940684200476276 +250042,1250.210000015684,-0.06940687168305266 +250043,1250.2150000156842,-0.06940690134511783 +250044,1250.2200000156843,-0.06940693099096454 +250045,1250.2250000156844,-0.06940696062059906 +250046,1250.2300000156845,-0.06940699023402767 +250047,1250.2350000156846,-0.06940701983125665 +250048,1250.2400000156847,-0.06940704941229223 +250049,1250.2450000156848,-0.06940707897714068 +250050,1250.250000015685,-0.06940710852580827 +250051,1250.255000015685,-0.06940713805830125 +250052,1250.2600000156851,-0.06940716757462587 +250053,1250.2650000156852,-0.06940719707478837 +250054,1250.2700000156854,-0.06940722655879503 +250055,1250.2750000156855,-0.06940725602665208 +250056,1250.2800000156856,-0.06940728547836575 +250057,1250.2850000156857,-0.06940731491394231 +250058,1250.2900000156858,-0.06940734433338797 +250059,1250.295000015686,-0.06940737373670898 +250060,1250.300000015686,-0.06940740312391157 +250061,1250.3050000156861,-0.06940743249500197 +250062,1250.3100000156862,-0.06940746184998642 +250063,1250.3150000156863,-0.06940749118887113 +250064,1250.3200000156864,-0.06940752051166234 +250065,1250.3250000156866,-0.06940754981836626 +250066,1250.3300000156867,-0.0694075791089891 +250067,1250.3350000156868,-0.06940760838353711 +250068,1250.3400000156869,-0.06940763764201648 +250069,1250.345000015687,-0.0694076668844334 +250070,1250.350000015687,-0.0694076961107941 +250071,1250.3550000156872,-0.0694077253211048 +250072,1250.3600000156873,-0.06940775451537168 +250073,1250.3650000156874,-0.06940778369360096 +250074,1250.3700000156875,-0.0694078128557988 +250075,1250.3750000156876,-0.06940784200197146 +250076,1250.3800000156878,-0.06940787113212508 +250077,1250.3850000156879,-0.06940790024626588 +250078,1250.390000015688,-0.06940792934440003 +250079,1250.395000015688,-0.06940795842653374 +250080,1250.4000000156882,-0.06940798749267317 +250081,1250.4050000156883,-0.06940801654282451 +250082,1250.4100000156884,-0.06940804557699394 +250083,1250.4150000156885,-0.06940807459518765 +250084,1250.4200000156886,-0.06940810359741179 +250085,1250.4250000156887,-0.06940813258367252 +250086,1250.4300000156888,-0.06940816155397606 +250087,1250.435000015689,-0.06940819050832853 +250088,1250.440000015689,-0.06940821944673613 +250089,1250.4450000156892,-0.06940824836920499 +250090,1250.4500000156893,-0.06940827727574127 +250091,1250.4550000156894,-0.06940830616635116 +250092,1250.4600000156895,-0.06940833504104077 +250093,1250.4650000156896,-0.06940836389981629 +250094,1250.4700000156897,-0.06940839274268386 +250095,1250.4750000156898,-0.0694084215696496 +250096,1250.48000001569,-0.06940845038071969 +250097,1250.48500001569,-0.06940847917590026 +250098,1250.4900000156902,-0.06940850795519744 +250099,1250.4950000156903,-0.06940853671861737 +250100,1250.5000000156904,-0.06940856546616618 +250101,1250.5050000156905,-0.06940859419785002 +250102,1250.5100000156906,-0.069408622913675 +250103,1250.5150000156907,-0.06940865161364727 +250104,1250.5200000156908,-0.06940868029777293 +250105,1250.525000015691,-0.06940870896605812 +250106,1250.530000015691,-0.06940873761850894 +250107,1250.5350000156911,-0.06940876625513152 +250108,1250.5400000156912,-0.06940879487593199 +250109,1250.5450000156914,-0.06940882348091644 +250110,1250.5500000156915,-0.06940885207009098 +250111,1250.5550000156916,-0.06940888064346173 +250112,1250.5600000156917,-0.06940890920103479 +250113,1250.5650000156918,-0.06940893774281627 +250114,1250.570000015692,-0.06940896626881225 +250115,1250.575000015692,-0.06940899477902884 +250116,1250.5800000156921,-0.06940902327347215 +250117,1250.5850000156922,-0.06940905175214825 +250118,1250.5900000156923,-0.06940908021506323 +250119,1250.5950000156924,-0.06940910866222319 +250120,1250.6000000156926,-0.06940913709363422 +250121,1250.6050000156927,-0.06940916550930239 +250122,1250.6100000156928,-0.06940919390923378 +250123,1250.6150000156929,-0.06940922229343448 +250124,1250.620000015693,-0.06940925066191056 +250125,1250.625000015693,-0.0694092790146681 +250126,1250.6300000156932,-0.06940930735171315 +250127,1250.6350000156933,-0.0694093356730518 +250128,1250.6400000156934,-0.06940936397869012 +250129,1250.6450000156935,-0.06940939226863414 +250130,1250.6500000156936,-0.06940942054288995 +250131,1250.6550000156938,-0.06940944880146362 +250132,1250.6600000156939,-0.06940947704436116 +250133,1250.665000015694,-0.06940950527158869 +250134,1250.670000015694,-0.06940953348315221 +250135,1250.6750000156942,-0.06940956167905778 +250136,1250.6800000156943,-0.06940958985931144 +250137,1250.6850000156944,-0.06940961802391925 +250138,1250.6900000156945,-0.06940964617288725 +250139,1250.6950000156946,-0.06940967430622148 +250140,1250.7000000156947,-0.06940970242392797 +250141,1250.7050000156948,-0.06940973052601276 +250142,1250.710000015695,-0.06940975861248189 +250143,1250.715000015695,-0.06940978668334137 +250144,1250.7200000156952,-0.06940981473859724 +250145,1250.7250000156953,-0.06940984277825551 +250146,1250.7300000156954,-0.06940987080232222 +250147,1250.7350000156955,-0.06940989881080338 +250148,1250.7400000156956,-0.06940992680370502 +250149,1250.7450000156957,-0.06940995478103315 +250150,1250.7500000156958,-0.0694099827427938 +250151,1250.755000015696,-0.06941001068899293 +250152,1250.760000015696,-0.0694100386196366 +250153,1250.7650000156962,-0.0694100665347308 +250154,1250.7700000156963,-0.0694100944342815 +250155,1250.7750000156964,-0.06941012231829476 +250156,1250.7800000156965,-0.06941015018677653 +250157,1250.7850000156966,-0.06941017803973283 +250158,1250.7900000156967,-0.06941020587716965 +250159,1250.7950000156968,-0.06941023369909297 +250160,1250.800000015697,-0.0694102615055088 +250161,1250.805000015697,-0.06941028929642311 +250162,1250.8100000156971,-0.06941031707184188 +250163,1250.8150000156973,-0.0694103448317711 +250164,1250.8200000156974,-0.06941037257621677 +250165,1250.8250000156975,-0.06941040030518482 +250166,1250.8300000156976,-0.06941042801868127 +250167,1250.8350000156977,-0.06941045571671206 +250168,1250.8400000156978,-0.06941048339928318 +250169,1250.845000015698,-0.06941051106640059 +250170,1250.850000015698,-0.06941053871807026 +250171,1250.8550000156981,-0.06941056635429814 +250172,1250.8600000156982,-0.06941059397509021 +250173,1250.8650000156983,-0.06941062158045241 +250174,1250.8700000156985,-0.06941064917039072 +250175,1250.8750000156986,-0.06941067674491105 +250176,1250.8800000156987,-0.0694107043040194 +250177,1250.8850000156988,-0.06941073184772166 +250178,1250.890000015699,-0.06941075937602384 +250179,1250.895000015699,-0.06941078688893183 +250180,1250.900000015699,-0.06941081438645162 +250181,1250.9050000156992,-0.06941084186858912 +250182,1250.9100000156993,-0.06941086933535026 +250183,1250.9150000156994,-0.06941089678674098 +250184,1250.9200000156995,-0.06941092422276722 +250185,1250.9250000156997,-0.06941095164343491 +250186,1250.9300000156998,-0.06941097904874996 +250187,1250.9350000156999,-0.06941100643871832 +250188,1250.9400000157,-0.0694110338133459 +250189,1250.9450000157,-0.06941106117263861 +250190,1250.9500000157002,-0.06941108851660238 +250191,1250.9550000157003,-0.06941111584524312 +250192,1250.9600000157004,-0.06941114315856675 +250193,1250.9650000157005,-0.06941117045657917 +250194,1250.9700000157006,-0.06941119773928629 +250195,1250.9750000157007,-0.06941122500669403 +250196,1250.9800000157009,-0.06941125225880827 +250197,1250.985000015701,-0.06941127949563493 +250198,1250.990000015701,-0.0694113067171799 +250199,1250.9950000157012,-0.06941133392344907 +250200,1251.0000000157013,-0.06941136111444836 +250201,1251.0050000157014,-0.06941138829018363 +250202,1251.0100000157015,-0.06941141545066078 +250203,1251.0150000157016,-0.06941144259588569 +250204,1251.0200000157017,-0.06941146972586426 +250205,1251.0250000157018,-0.06941149684060237 +250206,1251.030000015702,-0.0694115239401059 +250207,1251.035000015702,-0.06941155102438072 +250208,1251.0400000157022,-0.0694115780934327 +250209,1251.0450000157023,-0.06941160514726773 +250210,1251.0500000157024,-0.06941163218589166 +250211,1251.0550000157025,-0.06941165920931038 +250212,1251.0600000157026,-0.06941168621752973 +250213,1251.0650000157027,-0.0694117132105556 +250214,1251.0700000157028,-0.06941174018839384 +250215,1251.075000015703,-0.0694117671510503 +250216,1251.080000015703,-0.06941179409853085 +250217,1251.0850000157031,-0.06941182103084134 +250218,1251.0900000157033,-0.06941184794798762 +250219,1251.0950000157034,-0.06941187484997552 +250220,1251.1000000157035,-0.06941190173681092 +250221,1251.1050000157036,-0.06941192860849965 +250222,1251.1100000157037,-0.06941195546504755 +250223,1251.1150000157038,-0.06941198230646048 +250224,1251.120000015704,-0.06941200913274423 +250225,1251.125000015704,-0.06941203594390469 +250226,1251.1300000157041,-0.06941206273994764 +250227,1251.1350000157042,-0.06941208952087896 +250228,1251.1400000157043,-0.06941211628670446 +250229,1251.1450000157045,-0.06941214303742996 +250230,1251.1500000157046,-0.06941216977306128 +250231,1251.1550000157047,-0.06941219649360426 +250232,1251.1600000157048,-0.0694122231990647 +250233,1251.165000015705,-0.06941224988944841 +250234,1251.170000015705,-0.06941227656476125 +250235,1251.175000015705,-0.06941230322500896 +250236,1251.1800000157052,-0.06941232987019741 +250237,1251.1850000157053,-0.0694123565003324 +250238,1251.1900000157054,-0.0694123831154197 +250239,1251.1950000157055,-0.06941240971546514 +250240,1251.2000000157057,-0.06941243630047453 +250241,1251.2050000157058,-0.06941246287045363 +250242,1251.2100000157059,-0.06941248942540829 +250243,1251.215000015706,-0.06941251596534424 +250244,1251.220000015706,-0.06941254249026732 +250245,1251.2250000157062,-0.06941256900018329 +250246,1251.2300000157063,-0.06941259549509796 +250247,1251.2350000157064,-0.0694126219750171 +250248,1251.2400000157065,-0.06941264843994649 +250249,1251.2450000157066,-0.06941267488989192 +250250,1251.2500000157067,-0.06941270132485916 +250251,1251.2550000157069,-0.06941272774485398 +250252,1251.260000015707,-0.06941275414988218 +250253,1251.265000015707,-0.0694127805399495 +250254,1251.2700000157072,-0.06941280691506171 +250255,1251.2750000157073,-0.06941283327522459 +250256,1251.2800000157074,-0.0694128596204439 +250257,1251.2850000157075,-0.0694128859507254 +250258,1251.2900000157076,-0.06941291226607484 +250259,1251.2950000157077,-0.06941293856649798 +250260,1251.3000000157078,-0.06941296485200059 +250261,1251.305000015708,-0.06941299112258839 +250262,1251.310000015708,-0.06941301737826717 +250263,1251.3150000157082,-0.06941304361904266 +250264,1251.3200000157083,-0.06941306984492059 +250265,1251.3250000157084,-0.0694130960559067 +250266,1251.3300000157085,-0.06941312225200677 +250267,1251.3350000157086,-0.06941314843322652 +250268,1251.3400000157087,-0.06941317459957165 +250269,1251.3450000157088,-0.06941320075104794 +250270,1251.350000015709,-0.06941322688766109 +250271,1251.355000015709,-0.06941325300941686 +250272,1251.3600000157091,-0.06941327911632095 +250273,1251.3650000157093,-0.0694133052083791 +250274,1251.3700000157094,-0.06941333128559703 +250275,1251.3750000157095,-0.06941335734798044 +250276,1251.3800000157096,-0.06941338339553507 +250277,1251.3850000157097,-0.06941340942826664 +250278,1251.3900000157098,-0.06941343544618084 +250279,1251.39500001571,-0.0694134614492834 +250280,1251.40000001571,-0.06941348743758002 +250281,1251.4050000157101,-0.0694135134110764 +250282,1251.4100000157102,-0.06941353936977826 +250283,1251.4150000157103,-0.06941356531369129 +250284,1251.4200000157105,-0.0694135912428212 +250285,1251.4250000157106,-0.06941361715717367 +250286,1251.4300000157107,-0.06941364305675442 +250287,1251.4350000157108,-0.0694136689415691 +250288,1251.440000015711,-0.06941369481162345 +250289,1251.445000015711,-0.06941372066692311 +250290,1251.450000015711,-0.06941374650747381 +250291,1251.4550000157112,-0.0694137723332812 +250292,1251.4600000157113,-0.06941379814435099 +250293,1251.4650000157114,-0.06941382394068885 +250294,1251.4700000157115,-0.06941384972230044 +250295,1251.4750000157117,-0.06941387548919144 +250296,1251.4800000157118,-0.06941390124136754 +250297,1251.4850000157119,-0.0694139269788344 +250298,1251.490000015712,-0.06941395270159767 +250299,1251.495000015712,-0.06941397840966303 +250300,1251.5000000157122,-0.06941400410303615 +250301,1251.5050000157123,-0.06941402978172267 +250302,1251.5100000157124,-0.06941405544572828 +250303,1251.5150000157125,-0.06941408109505862 +250304,1251.5200000157126,-0.06941410672971934 +250305,1251.5250000157127,-0.06941413234971608 +250306,1251.5300000157129,-0.06941415795505453 +250307,1251.535000015713,-0.06941418354574029 +250308,1251.540000015713,-0.06941420912177902 +250309,1251.5450000157132,-0.0694142346831764 +250310,1251.5500000157133,-0.069414260229938 +250311,1251.5550000157134,-0.06941428576206952 +250312,1251.5600000157135,-0.06941431127957658 +250313,1251.5650000157136,-0.06941433678246481 +250314,1251.5700000157137,-0.06941436227073981 +250315,1251.5750000157138,-0.06941438774440727 +250316,1251.580000015714,-0.06941441320347276 +250317,1251.585000015714,-0.06941443864794195 +250318,1251.5900000157142,-0.06941446407782044 +250319,1251.5950000157143,-0.06941448949311385 +250320,1251.6000000157144,-0.0694145148938278 +250321,1251.6050000157145,-0.0694145402799679 +250322,1251.6100000157146,-0.06941456565153979 +250323,1251.6150000157147,-0.06941459100854903 +250324,1251.6200000157148,-0.06941461635100128 +250325,1251.625000015715,-0.06941464167890213 +250326,1251.630000015715,-0.06941466699225718 +250327,1251.6350000157151,-0.06941469229107203 +250328,1251.6400000157153,-0.06941471757535228 +250329,1251.6450000157154,-0.06941474284510354 +250330,1251.6500000157155,-0.0694147681003314 +250331,1251.6550000157156,-0.06941479334104145 +250332,1251.6600000157157,-0.06941481856723929 +250333,1251.6650000157158,-0.06941484377893048 +250334,1251.670000015716,-0.06941486897612063 +250335,1251.675000015716,-0.06941489415881533 +250336,1251.6800000157161,-0.06941491932702015 +250337,1251.6850000157162,-0.06941494448074069 +250338,1251.6900000157164,-0.0694149696199825 +250339,1251.6950000157165,-0.06941499474475117 +250340,1251.7000000157166,-0.06941501985505227 +250341,1251.7050000157167,-0.06941504495089139 +250342,1251.7100000157168,-0.06941507003227405 +250343,1251.715000015717,-0.06941509509920588 +250344,1251.720000015717,-0.06941512015169239 +250345,1251.7250000157171,-0.06941514518973918 +250346,1251.7300000157172,-0.06941517021335179 +250347,1251.7350000157173,-0.0694151952225358 +250348,1251.7400000157174,-0.06941522021729672 +250349,1251.7450000157176,-0.06941524519764015 +250350,1251.7500000157177,-0.06941527016357162 +250351,1251.7550000157178,-0.06941529511509668 +250352,1251.7600000157179,-0.06941532005222088 +250353,1251.765000015718,-0.06941534497494976 +250354,1251.770000015718,-0.06941536988328888 +250355,1251.7750000157182,-0.06941539477724375 +250356,1251.7800000157183,-0.06941541965681992 +250357,1251.7850000157184,-0.06941544452202295 +250358,1251.7900000157185,-0.06941546937285832 +250359,1251.7950000157186,-0.06941549420933163 +250360,1251.8000000157188,-0.06941551903144835 +250361,1251.8050000157189,-0.06941554383921404 +250362,1251.810000015719,-0.0694155686326342 +250363,1251.815000015719,-0.06941559341171438 +250364,1251.8200000157192,-0.06941561817646008 +250365,1251.8250000157193,-0.06941564292687684 +250366,1251.8300000157194,-0.06941566766297015 +250367,1251.8350000157195,-0.06941569238474554 +250368,1251.8400000157196,-0.06941571709220852 +250369,1251.8450000157197,-0.06941574178536461 +250370,1251.8500000157198,-0.06941576646421928 +250371,1251.85500001572,-0.06941579112877805 +250372,1251.86000001572,-0.06941581577904646 +250373,1251.8650000157202,-0.06941584041502996 +250374,1251.8700000157203,-0.06941586503673408 +250375,1251.8750000157204,-0.0694158896441643 +250376,1251.8800000157205,-0.06941591423732613 +250377,1251.8850000157206,-0.06941593881622504 +250378,1251.8900000157207,-0.06941596338086653 +250379,1251.8950000157208,-0.06941598793125608 +250380,1251.900000015721,-0.0694160124673992 +250381,1251.905000015721,-0.06941603698930135 +250382,1251.9100000157212,-0.06941606149696801 +250383,1251.9150000157213,-0.06941608599040466 +250384,1251.9200000157214,-0.06941611046961679 +250385,1251.9250000157215,-0.06941613493460988 +250386,1251.9300000157216,-0.06941615938538936 +250387,1251.9350000157217,-0.06941618382196074 +250388,1251.9400000157218,-0.06941620824432948 +250389,1251.945000015722,-0.06941623265250103 +250390,1251.950000015722,-0.06941625704648088 +250391,1251.9550000157221,-0.06941628142627447 +250392,1251.9600000157222,-0.06941630579188726 +250393,1251.9650000157224,-0.06941633014332471 +250394,1251.9700000157225,-0.06941635448059229 +250395,1251.9750000157226,-0.06941637880369543 +250396,1251.9800000157227,-0.06941640311263957 +250397,1251.9850000157228,-0.06941642740743019 +250398,1251.990000015723,-0.06941645168807273 +250399,1251.995000015723,-0.06941647595457262 +250400,1252.0000000157231,-0.06941650020693531 +250401,1252.0050000157232,-0.06941652444516623 +250402,1252.0100000157233,-0.06941654866927084 +250403,1252.0150000157234,-0.06941657287925454 +250404,1252.0200000157236,-0.0694165970751228 +250405,1252.0250000157237,-0.06941662125688101 +250406,1252.0300000157238,-0.06941664542453464 +250407,1252.0350000157239,-0.06941666957808909 +250408,1252.040000015724,-0.0694166937175498 +250409,1252.045000015724,-0.06941671784292217 +250410,1252.0500000157242,-0.06941674195421164 +250411,1252.0550000157243,-0.06941676605142363 +250412,1252.0600000157244,-0.06941679013456356 +250413,1252.0650000157245,-0.06941681420363682 +250414,1252.0700000157246,-0.06941683825864882 +250415,1252.0750000157248,-0.069416862299605 +250416,1252.0800000157249,-0.06941688632651073 +250417,1252.085000015725,-0.06941691033937145 +250418,1252.090000015725,-0.06941693433819253 +250419,1252.0950000157252,-0.0694169583229794 +250420,1252.1000000157253,-0.06941698229373744 +250421,1252.1050000157254,-0.06941700625047205 +250422,1252.1100000157255,-0.06941703019318862 +250423,1252.1150000157256,-0.06941705412189256 +250424,1252.1200000157257,-0.06941707803658925 +250425,1252.1250000157258,-0.06941710193728406 +250426,1252.130000015726,-0.06941712582398239 +250427,1252.135000015726,-0.06941714969668962 +250428,1252.1400000157262,-0.06941717355541115 +250429,1252.1450000157263,-0.06941719740015233 +250430,1252.1500000157264,-0.06941722123091856 +250431,1252.1550000157265,-0.0694172450477152 +250432,1252.1600000157266,-0.06941726885054764 +250433,1252.1650000157267,-0.06941729263942122 +250434,1252.1700000157268,-0.06941731641434133 +250435,1252.175000015727,-0.06941734017531334 +250436,1252.180000015727,-0.0694173639223426 +250437,1252.1850000157272,-0.06941738765543448 +250438,1252.1900000157273,-0.06941741137459434 +250439,1252.1950000157274,-0.06941743507982755 +250440,1252.2000000157275,-0.06941745877113942 +250441,1252.2050000157276,-0.06941748244853535 +250442,1252.2100000157277,-0.06941750611202069 +250443,1252.2150000157278,-0.06941752976160076 +250444,1252.220000015728,-0.06941755339728092 +250445,1252.225000015728,-0.06941757701906653 +250446,1252.2300000157281,-0.06941760062696291 +250447,1252.2350000157282,-0.06941762422097542 +250448,1252.2400000157284,-0.06941764780110939 +250449,1252.2450000157285,-0.06941767136737015 +250450,1252.2500000157286,-0.06941769491976303 +250451,1252.2550000157287,-0.06941771845829339 +250452,1252.2600000157288,-0.06941774198296653 +250453,1252.265000015729,-0.0694177654937878 +250454,1252.270000015729,-0.06941778899076251 +250455,1252.2750000157291,-0.06941781247389597 +250456,1252.2800000157292,-0.06941783594319353 +250457,1252.2850000157293,-0.0694178593986605 +250458,1252.2900000157294,-0.06941788284030222 +250459,1252.2950000157296,-0.06941790626812396 +250460,1252.3000000157297,-0.06941792968213106 +250461,1252.3050000157298,-0.06941795308232883 +250462,1252.3100000157299,-0.06941797646872255 +250463,1252.31500001573,-0.06941799984131758 +250464,1252.32000001573,-0.06941802320011918 +250465,1252.3250000157302,-0.06941804654513267 +250466,1252.3300000157303,-0.06941806987636334 +250467,1252.3350000157304,-0.06941809319381652 +250468,1252.3400000157305,-0.06941811649749746 +250469,1252.3450000157306,-0.06941813978741149 +250470,1252.3500000157308,-0.0694181630635639 +250471,1252.3550000157309,-0.06941818632595995 +250472,1252.360000015731,-0.06941820957460496 +250473,1252.365000015731,-0.0694182328095042 +250474,1252.3700000157312,-0.06941825603066294 +250475,1252.3750000157313,-0.06941827923808648 +250476,1252.3800000157314,-0.06941830243178011 +250477,1252.3850000157315,-0.06941832561174908 +250478,1252.3900000157316,-0.06941834877799868 +250479,1252.3950000157317,-0.0694183719305342 +250480,1252.4000000157318,-0.06941839506936087 +250481,1252.405000015732,-0.069418418194484 +250482,1252.410000015732,-0.06941844130590881 +250483,1252.4150000157322,-0.06941846440364062 +250484,1252.4200000157323,-0.06941848748768464 +250485,1252.4250000157324,-0.06941851055804617 +250486,1252.4300000157325,-0.06941853361473044 +250487,1252.4350000157326,-0.06941855665774273 +250488,1252.4400000157327,-0.06941857968708827 +250489,1252.4450000157328,-0.06941860270277234 +250490,1252.450000015733,-0.06941862570480016 +250491,1252.455000015733,-0.069418648693177 +250492,1252.4600000157332,-0.0694186716679081 +250493,1252.4650000157333,-0.0694186946289987 +250494,1252.4700000157334,-0.06941871757645406 +250495,1252.4750000157335,-0.06941874051027938 +250496,1252.4800000157336,-0.06941876343047992 +250497,1252.4850000157337,-0.06941878633706093 +250498,1252.4900000157338,-0.06941880923002763 +250499,1252.495000015734,-0.06941883210938525 +250500,1252.500000015734,-0.06941885497513901 +250501,1252.5050000157341,-0.06941887782729415 +250502,1252.5100000157342,-0.06941890066585589 +250503,1252.5150000157344,-0.06941892349082945 +250504,1252.5200000157345,-0.06941894630222006 +250505,1252.5250000157346,-0.06941896910003294 +250506,1252.5300000157347,-0.06941899188427328 +250507,1252.5350000157348,-0.06941901465494632 +250508,1252.540000015735,-0.06941903741205728 +250509,1252.545000015735,-0.06941906015561135 +250510,1252.5500000157351,-0.06941908288561374 +250511,1252.5550000157352,-0.06941910560206968 +250512,1252.5600000157353,-0.06941912830498434 +250513,1252.5650000157354,-0.06941915099436294 +250514,1252.5700000157356,-0.06941917367021067 +250515,1252.5750000157357,-0.06941919633253274 +250516,1252.5800000157358,-0.06941921898133434 +250517,1252.585000015736,-0.06941924161662066 +250518,1252.590000015736,-0.06941926423839691 +250519,1252.595000015736,-0.06941928684666826 +250520,1252.6000000157362,-0.06941930944143991 +250521,1252.6050000157363,-0.06941933202271704 +250522,1252.6100000157364,-0.06941935459050481 +250523,1252.6150000157365,-0.06941937714480843 +250524,1252.6200000157367,-0.0694193996856331 +250525,1252.6250000157368,-0.06941942221298394 +250526,1252.6300000157369,-0.06941944472686618 +250527,1252.635000015737,-0.06941946722728495 +250528,1252.640000015737,-0.06941948971424546 +250529,1252.6450000157372,-0.06941951218775284 +250530,1252.6500000157373,-0.06941953464781228 +250531,1252.6550000157374,-0.06941955709442896 +250532,1252.6600000157375,-0.06941957952760801 +250533,1252.6650000157376,-0.06941960194735461 +250534,1252.6700000157377,-0.0694196243536739 +250535,1252.6750000157379,-0.06941964674657104 +250536,1252.680000015738,-0.06941966912605121 +250537,1252.685000015738,-0.06941969149211956 +250538,1252.6900000157382,-0.06941971384478121 +250539,1252.6950000157383,-0.06941973618404135 +250540,1252.7000000157384,-0.06941975850990507 +250541,1252.7050000157385,-0.06941978082237758 +250542,1252.7100000157386,-0.06941980312146397 +250543,1252.7150000157387,-0.0694198254071694 +250544,1252.7200000157388,-0.06941984767949902 +250545,1252.725000015739,-0.06941986993845793 +250546,1252.730000015739,-0.06941989218405131 +250547,1252.7350000157392,-0.06941991441628426 +250548,1252.7400000157393,-0.06941993663516192 +250549,1252.7450000157394,-0.06941995884068942 +250550,1252.7500000157395,-0.06941998103287189 +250551,1252.7550000157396,-0.06942000321171445 +250552,1252.7600000157397,-0.06942002537722222 +250553,1252.7650000157398,-0.06942004752940033 +250554,1252.77000001574,-0.06942006966825387 +250555,1252.77500001574,-0.069420091793788 +250556,1252.7800000157401,-0.06942011390600777 +250557,1252.7850000157403,-0.06942013600491835 +250558,1252.7900000157404,-0.06942015809052482 +250559,1252.7950000157405,-0.06942018016283232 +250560,1252.8000000157406,-0.0694202022218459 +250561,1252.8050000157407,-0.06942022426757072 +250562,1252.8100000157408,-0.06942024630001184 +250563,1252.815000015741,-0.06942026831917439 +250564,1252.820000015741,-0.06942029032506344 +250565,1252.8250000157411,-0.06942031231768413 +250566,1252.8300000157412,-0.06942033429704149 +250567,1252.8350000157413,-0.06942035626314066 +250568,1252.8400000157415,-0.06942037821598672 +250569,1252.8450000157416,-0.06942040015558475 +250570,1252.8500000157417,-0.06942042208193984 +250571,1252.8550000157418,-0.06942044399505706 +250572,1252.860000015742,-0.0694204658949415 +250573,1252.865000015742,-0.06942048778159826 +250574,1252.870000015742,-0.0694205096550324 +250575,1252.8750000157422,-0.06942053151524896 +250576,1252.8800000157423,-0.06942055336225307 +250577,1252.8850000157424,-0.06942057519604979 +250578,1252.8900000157425,-0.06942059701664417 +250579,1252.8950000157427,-0.06942061882404128 +250580,1252.9000000157428,-0.0694206406182462 +250581,1252.9050000157429,-0.06942066239926398 +250582,1252.910000015743,-0.06942068416709968 +250583,1252.915000015743,-0.06942070592175835 +250584,1252.9200000157432,-0.06942072766324507 +250585,1252.9250000157433,-0.0694207493915649 +250586,1252.9300000157434,-0.06942077110672287 +250587,1252.9350000157435,-0.06942079280872403 +250588,1252.9400000157436,-0.06942081449757345 +250589,1252.9450000157437,-0.06942083617327616 +250590,1252.9500000157439,-0.06942085783583721 +250591,1252.955000015744,-0.06942087948526166 +250592,1252.960000015744,-0.06942090112155452 +250593,1252.9650000157442,-0.06942092274472085 +250594,1252.9700000157443,-0.06942094435476569 +250595,1252.9750000157444,-0.06942096595169404 +250596,1252.9800000157445,-0.06942098753551097 +250597,1252.9850000157446,-0.06942100910622152 +250598,1252.9900000157447,-0.0694210306638307 +250599,1252.9950000157448,-0.0694210522083435 +250600,1253.000000015745,-0.06942107373976503 +250601,1253.005000015745,-0.06942109525810024 +250602,1253.0100000157452,-0.06942111676335418 +250603,1253.0150000157453,-0.06942113825553185 +250604,1253.0200000157454,-0.0694211597346383 +250605,1253.0250000157455,-0.06942118120067853 +250606,1253.0300000157456,-0.06942120265365755 +250607,1253.0350000157457,-0.06942122409358037 +250608,1253.0400000157458,-0.069421245520452 +250609,1253.045000015746,-0.06942126693427743 +250610,1253.050000015746,-0.06942128833506168 +250611,1253.0550000157461,-0.06942130972280978 +250612,1253.0600000157463,-0.06942133109752668 +250613,1253.0650000157464,-0.06942135245921743 +250614,1253.0700000157465,-0.069421373807887 +250615,1253.0750000157466,-0.06942139514354038 +250616,1253.0800000157467,-0.06942141646618258 +250617,1253.0850000157468,-0.06942143777581858 +250618,1253.090000015747,-0.06942145907245337 +250619,1253.095000015747,-0.06942148035609194 +250620,1253.1000000157471,-0.06942150162673927 +250621,1253.1050000157472,-0.06942152288440034 +250622,1253.1100000157473,-0.06942154412908016 +250623,1253.1150000157475,-0.06942156536078367 +250624,1253.1200000157476,-0.06942158657951587 +250625,1253.1250000157477,-0.06942160778528174 +250626,1253.1300000157478,-0.06942162897808624 +250627,1253.135000015748,-0.06942165015793433 +250628,1253.140000015748,-0.06942167132483103 +250629,1253.145000015748,-0.06942169247878126 +250630,1253.1500000157482,-0.06942171361978998 +250631,1253.1550000157483,-0.06942173474786219 +250632,1253.1600000157484,-0.06942175586300284 +250633,1253.1650000157485,-0.06942177696521686 +250634,1253.1700000157487,-0.06942179805450922 +250635,1253.1750000157488,-0.06942181913088491 +250636,1253.1800000157489,-0.06942184019434886 +250637,1253.185000015749,-0.06942186124490601 +250638,1253.190000015749,-0.06942188228256133 +250639,1253.1950000157492,-0.06942190330731976 +250640,1253.2000000157493,-0.06942192431918623 +250641,1253.2050000157494,-0.06942194531816571 +250642,1253.2100000157495,-0.06942196630426313 +250643,1253.2150000157496,-0.06942198727748343 +250644,1253.2200000157497,-0.06942200823783154 +250645,1253.2250000157499,-0.0694220291853124 +250646,1253.23000001575,-0.06942205011993095 +250647,1253.23500001575,-0.06942207104169214 +250648,1253.2400000157502,-0.06942209195060085 +250649,1253.2450000157503,-0.06942211284666207 +250650,1253.2500000157504,-0.06942213372988067 +250651,1253.2550000157505,-0.0694221546002616 +250652,1253.2600000157506,-0.06942217545780979 +250653,1253.2650000157507,-0.06942219630253015 +250654,1253.2700000157508,-0.06942221713442759 +250655,1253.275000015751,-0.06942223795350703 +250656,1253.280000015751,-0.06942225875977341 +250657,1253.2850000157512,-0.06942227955323162 +250658,1253.2900000157513,-0.06942230033388656 +250659,1253.2950000157514,-0.06942232110174316 +250660,1253.3000000157515,-0.06942234185680633 +250661,1253.3050000157516,-0.06942236259908094 +250662,1253.3100000157517,-0.06942238332857192 +250663,1253.3150000157518,-0.06942240404528419 +250664,1253.320000015752,-0.0694224247492226 +250665,1253.325000015752,-0.06942244544039208 +250666,1253.3300000157521,-0.06942246611879752 +250667,1253.3350000157523,-0.06942248678444381 +250668,1253.3400000157524,-0.06942250743733583 +250669,1253.3450000157525,-0.06942252807747848 +250670,1253.3500000157526,-0.06942254870487664 +250671,1253.3550000157527,-0.06942256931953524 +250672,1253.3600000157528,-0.0694225899214591 +250673,1253.365000015753,-0.06942261051065311 +250674,1253.370000015753,-0.06942263108712218 +250675,1253.3750000157531,-0.06942265165087119 +250676,1253.3800000157532,-0.06942267220190498 +250677,1253.3850000157533,-0.06942269274022846 +250678,1253.3900000157535,-0.06942271326584647 +250679,1253.3950000157536,-0.0694227337787639 +250680,1253.4000000157537,-0.06942275427898562 +250681,1253.4050000157538,-0.06942277476651647 +250682,1253.410000015754,-0.06942279524136134 +250683,1253.415000015754,-0.06942281570352508 +250684,1253.420000015754,-0.06942283615301258 +250685,1253.4250000157542,-0.06942285658982864 +250686,1253.4300000157543,-0.06942287701397817 +250687,1253.4350000157544,-0.069422897425466 +250688,1253.4400000157545,-0.06942291782429698 +250689,1253.4450000157547,-0.06942293821047596 +250690,1253.4500000157548,-0.06942295858400781 +250691,1253.4550000157549,-0.06942297894489734 +250692,1253.460000015755,-0.06942299929314942 +250693,1253.465000015755,-0.06942301962876889 +250694,1253.4700000157552,-0.06942303995176059 +250695,1253.4750000157553,-0.06942306026212935 +250696,1253.4800000157554,-0.06942308055988002 +250697,1253.4850000157555,-0.06942310084501743 +250698,1253.4900000157556,-0.06942312111754642 +250699,1253.4950000157557,-0.0694231413774718 +250700,1253.5000000157559,-0.06942316162479842 +250701,1253.505000015756,-0.06942318185953109 +250702,1253.510000015756,-0.06942320208167464 +250703,1253.5150000157562,-0.06942322229123392 +250704,1253.5200000157563,-0.06942324248821372 +250705,1253.5250000157564,-0.06942326267261888 +250706,1253.5300000157565,-0.06942328284445419 +250707,1253.5350000157566,-0.0694233030037245 +250708,1253.5400000157567,-0.0694233231504346 +250709,1253.5450000157568,-0.06942334328458931 +250710,1253.550000015757,-0.06942336340619344 +250711,1253.555000015757,-0.0694233835152518 +250712,1253.5600000157572,-0.0694234036117692 +250713,1253.5650000157573,-0.06942342369575044 +250714,1253.5700000157574,-0.06942344376720033 +250715,1253.5750000157575,-0.06942346382612363 +250716,1253.5800000157576,-0.0694234838725252 +250717,1253.5850000157577,-0.06942350390640979 +250718,1253.5900000157578,-0.06942352392778221 +250719,1253.595000015758,-0.06942354393664726 +250720,1253.600000015758,-0.06942356393300973 +250721,1253.6050000157582,-0.0694235839168744 +250722,1253.6100000157583,-0.06942360388824607 +250723,1253.6150000157584,-0.06942362384712952 +250724,1253.6200000157585,-0.06942364379352953 +250725,1253.6250000157586,-0.06942366372745087 +250726,1253.6300000157587,-0.06942368364889835 +250727,1253.6350000157588,-0.06942370355787672 +250728,1253.640000015759,-0.06942372345439077 +250729,1253.645000015759,-0.06942374333844527 +250730,1253.6500000157591,-0.06942376321004498 +250731,1253.6550000157592,-0.0694237830691947 +250732,1253.6600000157594,-0.06942380291589917 +250733,1253.6650000157595,-0.06942382275016316 +250734,1253.6700000157596,-0.06942384257199145 +250735,1253.6750000157597,-0.0694238623813888 +250736,1253.6800000157598,-0.06942388217835996 +250737,1253.68500001576,-0.06942390196290969 +250738,1253.69000001576,-0.06942392173504278 +250739,1253.6950000157601,-0.06942394149476393 +250740,1253.7000000157602,-0.0694239612420779 +250741,1253.7050000157603,-0.06942398097698949 +250742,1253.7100000157604,-0.06942400069950341 +250743,1253.7150000157606,-0.06942402040962442 +250744,1253.7200000157607,-0.06942404010735725 +250745,1253.7250000157608,-0.06942405979270667 +250746,1253.7300000157609,-0.06942407946567741 +250747,1253.735000015761,-0.0694240991262742 +250748,1253.740000015761,-0.06942411877450179 +250749,1253.7450000157612,-0.06942413841036492 +250750,1253.7500000157613,-0.06942415803386831 +250751,1253.7550000157614,-0.0694241776450167 +250752,1253.7600000157615,-0.06942419724381482 +250753,1253.7650000157616,-0.06942421683026738 +250754,1253.7700000157618,-0.06942423640437914 +250755,1253.7750000157619,-0.06942425596615481 +250756,1253.780000015762,-0.06942427551559913 +250757,1253.785000015762,-0.06942429505271677 +250758,1253.7900000157622,-0.06942431457751251 +250759,1253.7950000157623,-0.06942433408999102 +250760,1253.8000000157624,-0.06942435359015706 +250761,1253.8050000157625,-0.06942437307801531 +250762,1253.8100000157626,-0.06942439255357048 +250763,1253.8150000157627,-0.06942441201682731 +250764,1253.8200000157628,-0.06942443146779048 +250765,1253.825000015763,-0.06942445090646472 +250766,1253.830000015763,-0.0694244703328547 +250767,1253.8350000157632,-0.06942448974696515 +250768,1253.8400000157633,-0.06942450914880077 +250769,1253.8450000157634,-0.06942452853836625 +250770,1253.8500000157635,-0.06942454791566628 +250771,1253.8550000157636,-0.06942456728070558 +250772,1253.8600000157637,-0.06942458663348881 +250773,1253.8650000157638,-0.0694246059740207 +250774,1253.870000015764,-0.0694246253023059 +250775,1253.875000015764,-0.06942464461834912 +250776,1253.8800000157642,-0.06942466392215504 +250777,1253.8850000157643,-0.06942468321372836 +250778,1253.8900000157644,-0.06942470249307374 +250779,1253.8950000157645,-0.06942472176019587 +250780,1253.9000000157646,-0.06942474101509942 +250781,1253.9050000157647,-0.06942476025778907 +250782,1253.9100000157648,-0.06942477948826951 +250783,1253.915000015765,-0.06942479870654539 +250784,1253.920000015765,-0.0694248179126214 +250785,1253.9250000157651,-0.0694248371065022 +250786,1253.9300000157652,-0.06942485628819245 +250787,1253.9350000157654,-0.06942487545769682 +250788,1253.9400000157655,-0.06942489461501998 +250789,1253.9450000157656,-0.06942491376016659 +250790,1253.9500000157657,-0.0694249328931413 +250791,1253.9550000157658,-0.06942495201394878 +250792,1253.960000015766,-0.06942497112259367 +250793,1253.965000015766,-0.06942499021908066 +250794,1253.9700000157661,-0.06942500930341436 +250795,1253.9750000157662,-0.06942502837559944 +250796,1253.9800000157663,-0.06942504743564056 +250797,1253.9850000157664,-0.06942506648354232 +250798,1253.9900000157666,-0.06942508551930943 +250799,1253.9950000157667,-0.06942510454294648 +250800,1254.0000000157668,-0.06942512355445815 +250801,1254.0050000157669,-0.06942514255384906 +250802,1254.010000015767,-0.06942516154112384 +250803,1254.015000015767,-0.06942518051628714 +250804,1254.0200000157672,-0.06942519947934359 +250805,1254.0250000157673,-0.06942521843029782 +250806,1254.0300000157674,-0.06942523736915446 +250807,1254.0350000157675,-0.06942525629591814 +250808,1254.0400000157676,-0.0694252752105935 +250809,1254.0450000157678,-0.06942529411318514 +250810,1254.0500000157679,-0.06942531300369771 +250811,1254.055000015768,-0.06942533188213582 +250812,1254.060000015768,-0.06942535074850406 +250813,1254.0650000157682,-0.06942536960280708 +250814,1254.0700000157683,-0.06942538844504949 +250815,1254.0750000157684,-0.0694254072752359 +250816,1254.0800000157685,-0.06942542609337093 +250817,1254.0850000157686,-0.06942544489945918 +250818,1254.0900000157687,-0.06942546369350526 +250819,1254.0950000157688,-0.06942548247551379 +250820,1254.100000015769,-0.06942550124548937 +250821,1254.105000015769,-0.06942552000343657 +250822,1254.1100000157692,-0.06942553874936003 +250823,1254.1150000157693,-0.06942555748326433 +250824,1254.1200000157694,-0.06942557620515408 +250825,1254.1250000157695,-0.06942559491503386 +250826,1254.1300000157696,-0.06942561361290828 +250827,1254.1350000157697,-0.06942563229878192 +250828,1254.1400000157698,-0.06942565097265939 +250829,1254.14500001577,-0.06942566963454525 +250830,1254.15000001577,-0.06942568828444409 +250831,1254.1550000157702,-0.06942570692236052 +250832,1254.1600000157703,-0.0694257255482991 +250833,1254.1650000157704,-0.06942574416226442 +250834,1254.1700000157705,-0.06942576276426107 +250835,1254.1750000157706,-0.06942578135429359 +250836,1254.1800000157707,-0.06942579993236658 +250837,1254.1850000157708,-0.06942581849848463 +250838,1254.190000015771,-0.06942583705265229 +250839,1254.195000015771,-0.06942585559487412 +250840,1254.2000000157711,-0.06942587412515472 +250841,1254.2050000157712,-0.06942589264349865 +250842,1254.2100000157714,-0.06942591114991045 +250843,1254.2150000157715,-0.0694259296443947 +250844,1254.2200000157716,-0.06942594812695596 +250845,1254.2250000157717,-0.0694259665975988 +250846,1254.2300000157718,-0.06942598505632773 +250847,1254.235000015772,-0.06942600350314736 +250848,1254.240000015772,-0.06942602193806222 +250849,1254.2450000157721,-0.06942604036107687 +250850,1254.2500000157722,-0.06942605877219586 +250851,1254.2550000157723,-0.06942607717142373 +250852,1254.2600000157724,-0.06942609555876503 +250853,1254.2650000157726,-0.0694261139342243 +250854,1254.2700000157727,-0.0694261322978061 +250855,1254.2750000157728,-0.06942615064951496 +250856,1254.2800000157729,-0.06942616898935541 +250857,1254.285000015773,-0.06942618731733201 +250858,1254.290000015773,-0.06942620563344927 +250859,1254.2950000157732,-0.06942622393771174 +250860,1254.3000000157733,-0.06942624223012395 +250861,1254.3050000157734,-0.06942626051069042 +250862,1254.3100000157735,-0.06942627877941569 +250863,1254.3150000157736,-0.06942629703630429 +250864,1254.3200000157738,-0.06942631528136074 +250865,1254.3250000157739,-0.06942633351458957 +250866,1254.330000015774,-0.06942635173599529 +250867,1254.335000015774,-0.0694263699455824 +250868,1254.3400000157742,-0.06942638814335547 +250869,1254.3450000157743,-0.06942640632931898 +250870,1254.3500000157744,-0.06942642450347745 +250871,1254.3550000157745,-0.06942644266583539 +250872,1254.3600000157746,-0.06942646081639732 +250873,1254.3650000157747,-0.06942647895516775 +250874,1254.3700000157748,-0.06942649708215118 +250875,1254.375000015775,-0.0694265151973521 +250876,1254.380000015775,-0.06942653330077506 +250877,1254.3850000157752,-0.0694265513924245 +250878,1254.3900000157753,-0.06942656947230497 +250879,1254.3950000157754,-0.06942658754042093 +250880,1254.4000000157755,-0.0694266055967769 +250881,1254.4050000157756,-0.06942662364137737 +250882,1254.4100000157757,-0.06942664167422684 +250883,1254.4150000157758,-0.0694266596953298 +250884,1254.420000015776,-0.06942667770469071 +250885,1254.425000015776,-0.0694266957023141 +250886,1254.4300000157762,-0.06942671368820444 +250887,1254.4350000157763,-0.06942673166236621 +250888,1254.4400000157764,-0.06942674962480389 +250889,1254.4450000157765,-0.06942676757552195 +250890,1254.4500000157766,-0.0694267855145249 +250891,1254.4550000157767,-0.06942680344181719 +250892,1254.4600000157768,-0.0694268213574033 +250893,1254.465000015777,-0.0694268392612877 +250894,1254.470000015777,-0.06942685715347487 +250895,1254.4750000157771,-0.06942687503396928 +250896,1254.4800000157773,-0.0694268929027754 +250897,1254.4850000157774,-0.06942691075989768 +250898,1254.4900000157775,-0.06942692860534061 +250899,1254.4950000157776,-0.06942694643910863 +250900,1254.5000000157777,-0.0694269642612062 +250901,1254.5050000157778,-0.0694269820716378 +250902,1254.510000015778,-0.06942699987040789 +250903,1254.515000015778,-0.06942701765752089 +250904,1254.5200000157781,-0.06942703543298129 +250905,1254.5250000157782,-0.06942705319679351 +250906,1254.5300000157783,-0.06942707094896203 +250907,1254.5350000157785,-0.06942708868949128 +250908,1254.5400000157786,-0.06942710641838572 +250909,1254.5450000157787,-0.06942712413564978 +250910,1254.5500000157788,-0.06942714184128791 +250911,1254.555000015779,-0.06942715953530455 +250912,1254.560000015779,-0.06942717721770415 +250913,1254.565000015779,-0.06942719488849114 +250914,1254.5700000157792,-0.06942721254766995 +250915,1254.5750000157793,-0.06942723019524503 +250916,1254.5800000157794,-0.0694272478312208 +250917,1254.5850000157795,-0.06942726545560168 +250918,1254.5900000157797,-0.06942728306839213 +250919,1254.5950000157798,-0.06942730066959657 +250920,1254.6000000157799,-0.0694273182592194 +250921,1254.60500001578,-0.06942733583726506 +250922,1254.61000001578,-0.06942735340373797 +250923,1254.6150000157802,-0.06942737095864256 +250924,1254.6200000157803,-0.06942738850198323 +250925,1254.6250000157804,-0.06942740603376442 +250926,1254.6300000157805,-0.06942742355399052 +250927,1254.6350000157806,-0.06942744106266598 +250928,1254.6400000157807,-0.06942745855979517 +250929,1254.6450000157809,-0.06942747604538252 +250930,1254.650000015781,-0.06942749351943245 +250931,1254.655000015781,-0.06942751098194934 +250932,1254.6600000157812,-0.0694275284329376 +250933,1254.6650000157813,-0.06942754587240166 +250934,1254.6700000157814,-0.06942756330034588 +250935,1254.6750000157815,-0.0694275807167747 +250936,1254.6800000157816,-0.0694275981216925 +250937,1254.6850000157817,-0.06942761551510367 +250938,1254.6900000157818,-0.0694276328970126 +250939,1254.695000015782,-0.0694276502674237 +250940,1254.700000015782,-0.06942766762634135 +250941,1254.7050000157822,-0.06942768497376993 +250942,1254.7100000157823,-0.06942770230971383 +250943,1254.7150000157824,-0.06942771963417746 +250944,1254.7200000157825,-0.06942773694716518 +250945,1254.7250000157826,-0.0694277542486814 +250946,1254.7300000157827,-0.06942777153873048 +250947,1254.7350000157828,-0.06942778881731677 +250948,1254.740000015783,-0.06942780608444468 +250949,1254.745000015783,-0.0694278233401186 +250950,1254.7500000157831,-0.06942784058434286 +250951,1254.7550000157833,-0.06942785781712187 +250952,1254.7600000157834,-0.06942787503845997 +250953,1254.7650000157835,-0.06942789224836156 +250954,1254.7700000157836,-0.06942790944683098 +250955,1254.7750000157837,-0.06942792663387261 +250956,1254.7800000157838,-0.0694279438094908 +250957,1254.785000015784,-0.06942796097368992 +250958,1254.790000015784,-0.06942797812647433 +250959,1254.7950000157841,-0.06942799526784839 +250960,1254.8000000157842,-0.06942801239781644 +250961,1254.8050000157843,-0.06942802951638287 +250962,1254.8100000157845,-0.06942804662355198 +250963,1254.8150000157846,-0.06942806371932816 +250964,1254.8200000157847,-0.06942808080371576 +250965,1254.8250000157848,-0.06942809787671911 +250966,1254.830000015785,-0.06942811493834256 +250967,1254.835000015785,-0.06942813198859045 +250968,1254.840000015785,-0.06942814902746713 +250969,1254.8450000157852,-0.06942816605497694 +250970,1254.8500000157853,-0.06942818307112422 +250971,1254.8550000157854,-0.06942820007591331 +250972,1254.8600000157855,-0.06942821706934854 +250973,1254.8650000157857,-0.06942823405143424 +250974,1254.8700000157858,-0.06942825102217473 +250975,1254.8750000157859,-0.06942826798157437 +250976,1254.880000015786,-0.06942828492963746 +250977,1254.885000015786,-0.06942830186636835 +250978,1254.8900000157862,-0.06942831879177135 +250979,1254.8950000157863,-0.0694283357058508 +250980,1254.9000000157864,-0.06942835260861101 +250981,1254.9050000157865,-0.06942836950005629 +250982,1254.9100000157866,-0.06942838638019098 +250983,1254.9150000157867,-0.0694284032490194 +250984,1254.9200000157869,-0.06942842010654583 +250985,1254.925000015787,-0.0694284369527746 +250986,1254.930000015787,-0.06942845378771004 +250987,1254.9350000157872,-0.06942847061135644 +250988,1254.9400000157873,-0.06942848742371813 +250989,1254.9450000157874,-0.06942850422479939 +250990,1254.9500000157875,-0.06942852101460452 +250991,1254.9550000157876,-0.06942853779313783 +250992,1254.9600000157877,-0.06942855456040366 +250993,1254.9650000157878,-0.06942857131640626 +250994,1254.970000015788,-0.06942858806114995 +250995,1254.975000015788,-0.069428604794639 +250996,1254.9800000157882,-0.06942862151687774 +250997,1254.9850000157883,-0.06942863822787045 +250998,1254.9900000157884,-0.06942865492762143 +250999,1254.9950000157885,-0.06942867161613495 +251000,1255.0000000157886,-0.06942868829341531 +251001,1255.0050000157887,-0.06942870495946679 +251002,1255.0100000157888,-0.06942872161429368 +251003,1255.015000015789,-0.06942873825790025 +251004,1255.020000015789,-0.06942875489029081 +251005,1255.0250000157891,-0.0694287715114696 +251006,1255.0300000157893,-0.06942878812144093 +251007,1255.0350000157894,-0.06942880472020906 +251008,1255.0400000157895,-0.06942882130777826 +251009,1255.0450000157896,-0.06942883788415281 +251010,1255.0500000157897,-0.06942885444933698 +251011,1255.0550000157898,-0.06942887100333503 +251012,1255.06000001579,-0.06942888754615124 +251013,1255.06500001579,-0.06942890407778989 +251014,1255.0700000157901,-0.0694289205982552 +251015,1255.0750000157902,-0.06942893710755148 +251016,1255.0800000157903,-0.06942895360568295 +251017,1255.0850000157905,-0.06942897009265389 +251018,1255.0900000157906,-0.06942898656846855 +251019,1255.0950000157907,-0.0694290030331312 +251020,1255.1000000157908,-0.06942901948664607 +251021,1255.105000015791,-0.06942903592901743 +251022,1255.110000015791,-0.06942905236024953 +251023,1255.115000015791,-0.06942906878034662 +251024,1255.1200000157912,-0.06942908518931293 +251025,1255.1250000157913,-0.06942910158715272 +251026,1255.1300000157914,-0.06942911797387022 +251027,1255.1350000157915,-0.06942913434946969 +251028,1255.1400000157917,-0.06942915071395536 +251029,1255.1450000157918,-0.06942916706733149 +251030,1255.1500000157919,-0.06942918340960229 +251031,1255.155000015792,-0.069429199740772 +251032,1255.160000015792,-0.06942921606084486 +251033,1255.1650000157922,-0.0694292323698251 +251034,1255.1700000157923,-0.06942924866771694 +251035,1255.1750000157924,-0.06942926495452462 +251036,1255.1800000157925,-0.06942928123025235 +251037,1255.1850000157926,-0.0694292974949044 +251038,1255.1900000157927,-0.06942931374848495 +251039,1255.1950000157929,-0.06942932999099823 +251040,1255.200000015793,-0.06942934622244848 +251041,1255.205000015793,-0.06942936244283988 +251042,1255.2100000157932,-0.0694293786521767 +251043,1255.2150000157933,-0.06942939485046311 +251044,1255.2200000157934,-0.06942941103770335 +251045,1255.2250000157935,-0.06942942721390162 +251046,1255.2300000157936,-0.06942944337906214 +251047,1255.2350000157937,-0.0694294595331891 +251048,1255.2400000157938,-0.06942947567628673 +251049,1255.245000015794,-0.06942949180835921 +251050,1255.250000015794,-0.06942950792941074 +251051,1255.2550000157942,-0.06942952403944556 +251052,1255.2600000157943,-0.06942954013846786 +251053,1255.2650000157944,-0.06942955622648181 +251054,1255.2700000157945,-0.06942957230349163 +251055,1255.2750000157946,-0.0694295883695015 +251056,1255.2800000157947,-0.06942960442451564 +251057,1255.2850000157948,-0.0694296204685382 +251058,1255.290000015795,-0.06942963650157341 +251059,1255.295000015795,-0.06942965252362546 +251060,1255.3000000157951,-0.0694296685346985 +251061,1255.3050000157953,-0.06942968453479674 +251062,1255.3100000157954,-0.06942970052392436 +251063,1255.3150000157955,-0.06942971650208554 +251064,1255.3200000157956,-0.06942973246928447 +251065,1255.3250000157957,-0.06942974842552531 +251066,1255.3300000157958,-0.06942976437081225 +251067,1255.335000015796,-0.06942978030514947 +251068,1255.340000015796,-0.06942979622854113 +251069,1255.3450000157961,-0.06942981214099142 +251070,1255.3500000157962,-0.06942982804250449 +251071,1255.3550000157963,-0.06942984393308452 +251072,1255.3600000157965,-0.06942985981273567 +251073,1255.3650000157966,-0.06942987568146212 +251074,1255.3700000157967,-0.06942989153926803 +251075,1255.3750000157968,-0.06942990738615754 +251076,1255.380000015797,-0.06942992322213483 +251077,1255.385000015797,-0.06942993904720406 +251078,1255.390000015797,-0.06942995486136938 +251079,1255.3950000157972,-0.06942997066463495 +251080,1255.4000000157973,-0.06942998645700493 +251081,1255.4050000157974,-0.06943000223848347 +251082,1255.4100000157976,-0.0694300180090747 +251083,1255.4150000157977,-0.06943003376878279 +251084,1255.4200000157978,-0.06943004951761189 +251085,1255.4250000157979,-0.06943006525556614 +251086,1255.430000015798,-0.06943008098264968 +251087,1255.435000015798,-0.06943009669886666 +251088,1255.4400000157982,-0.06943011240422119 +251089,1255.4450000157983,-0.06943012809871746 +251090,1255.4500000157984,-0.06943014378235958 +251091,1255.4550000157985,-0.06943015945515169 +251092,1255.4600000157986,-0.06943017511709791 +251093,1255.4650000157988,-0.06943019076820238 +251094,1255.4700000157989,-0.06943020640846925 +251095,1255.475000015799,-0.06943022203790263 +251096,1255.480000015799,-0.06943023765650665 +251097,1255.4850000157992,-0.06943025326428544 +251098,1255.4900000157993,-0.06943026886124314 +251099,1255.4950000157994,-0.06943028444738385 +251100,1255.5000000157995,-0.0694303000227117 +251101,1255.5050000157996,-0.0694303155872308 +251102,1255.5100000157997,-0.06943033114094527 +251103,1255.5150000157998,-0.06943034668385924 +251104,1255.5200000158,-0.06943036221597682 +251105,1255.5250000158,-0.06943037773730211 +251106,1255.5300000158002,-0.06943039324783924 +251107,1255.5350000158003,-0.0694304087475923 +251108,1255.5400000158004,-0.06943042423656542 +251109,1255.5450000158005,-0.0694304397147627 +251110,1255.5500000158006,-0.06943045518218824 +251111,1255.5550000158007,-0.06943047063884615 +251112,1255.5600000158008,-0.0694304860847405 +251113,1255.565000015801,-0.06943050151987544 +251114,1255.570000015801,-0.06943051694425503 +251115,1255.5750000158012,-0.06943053235788339 +251116,1255.5800000158013,-0.06943054776076461 +251117,1255.5850000158014,-0.06943056315290277 +251118,1255.5900000158015,-0.06943057853430198 +251119,1255.5950000158016,-0.06943059390496634 +251120,1255.6000000158017,-0.06943060926489988 +251121,1255.6050000158018,-0.06943062461410675 +251122,1255.610000015802,-0.06943063995259101 +251123,1255.615000015802,-0.06943065528035675 +251124,1255.6200000158021,-0.06943067059740804 +251125,1255.6250000158022,-0.06943068590374898 +251126,1255.6300000158024,-0.06943070119938363 +251127,1255.6350000158025,-0.06943071648431609 +251128,1255.6400000158026,-0.06943073175855043 +251129,1255.6450000158027,-0.0694307470220907 +251130,1255.6500000158028,-0.069430762274941 +251131,1255.655000015803,-0.06943077751710537 +251132,1255.660000015803,-0.06943079274858792 +251133,1255.6650000158031,-0.06943080796939269 +251134,1255.6700000158032,-0.06943082317952376 +251135,1255.6750000158033,-0.06943083837898519 +251136,1255.6800000158034,-0.06943085356778103 +251137,1255.6850000158036,-0.06943086874591536 +251138,1255.6900000158037,-0.06943088391339224 +251139,1255.6950000158038,-0.06943089907021571 +251140,1255.7000000158039,-0.06943091421638985 +251141,1255.705000015804,-0.06943092935191869 +251142,1255.710000015804,-0.06943094447680631 +251143,1255.7150000158042,-0.06943095959105673 +251144,1255.7200000158043,-0.06943097469467403 +251145,1255.7250000158044,-0.06943098978766224 +251146,1255.7300000158045,-0.06943100487002542 +251147,1255.7350000158046,-0.0694310199417676 +251148,1255.7400000158048,-0.06943103500289284 +251149,1255.7450000158049,-0.06943105005340518 +251150,1255.750000015805,-0.06943106509330864 +251151,1255.755000015805,-0.06943108012260728 +251152,1255.7600000158052,-0.06943109514130512 +251153,1255.7650000158053,-0.06943111014940621 +251154,1255.7700000158054,-0.06943112514691459 +251155,1255.7750000158055,-0.06943114013383428 +251156,1255.7800000158056,-0.06943115511016931 +251157,1255.7850000158057,-0.06943117007592371 +251158,1255.7900000158058,-0.06943118503110152 +251159,1255.795000015806,-0.06943119997570676 +251160,1255.800000015806,-0.06943121490974345 +251161,1255.8050000158062,-0.06943122983321562 +251162,1255.8100000158063,-0.06943124474612726 +251163,1255.8150000158064,-0.06943125964848244 +251164,1255.8200000158065,-0.06943127454028515 +251165,1255.8250000158066,-0.06943128942153941 +251166,1255.8300000158067,-0.06943130429224924 +251167,1255.8350000158068,-0.06943131915241864 +251168,1255.840000015807,-0.06943133400205165 +251169,1255.845000015807,-0.06943134884115225 +251170,1255.8500000158072,-0.06943136366972445 +251171,1255.8550000158073,-0.06943137848777228 +251172,1255.8600000158074,-0.06943139329529972 +251173,1255.8650000158075,-0.06943140809231081 +251174,1255.8700000158076,-0.06943142287880952 +251175,1255.8750000158077,-0.06943143765479985 +251176,1255.8800000158078,-0.06943145242028582 +251177,1255.885000015808,-0.06943146717527142 +251178,1255.890000015808,-0.06943148191976065 +251179,1255.8950000158081,-0.06943149665375747 +251180,1255.9000000158082,-0.06943151137726593 +251181,1255.9050000158084,-0.06943152609028996 +251182,1255.9100000158085,-0.0694315407928336 +251183,1255.9150000158086,-0.06943155548490083 +251184,1255.9200000158087,-0.06943157016649562 +251185,1255.9250000158088,-0.06943158483762196 +251186,1255.930000015809,-0.06943159949828383 +251187,1255.935000015809,-0.06943161414848523 +251188,1255.9400000158091,-0.06943162878823012 +251189,1255.9450000158092,-0.06943164341752248 +251190,1255.9500000158093,-0.06943165803636629 +251191,1255.9550000158094,-0.06943167264476553 +251192,1255.9600000158096,-0.06943168724272417 +251193,1255.9650000158097,-0.06943170183024619 +251194,1255.9700000158098,-0.06943171640733554 +251195,1255.9750000158099,-0.06943173097399623 +251196,1255.98000001581,-0.0694317455302322 +251197,1255.98500001581,-0.0694317600760474 +251198,1255.9900000158102,-0.06943177461144581 +251199,1255.9950000158103,-0.06943178913643142 +251200,1256.0000000158104,-0.06943180365100815 +251201,1256.0050000158105,-0.06943181815517999 +251202,1256.0100000158106,-0.06943183264895088 +251203,1256.0150000158108,-0.06943184713232478 +251204,1256.0200000158109,-0.06943186160530564 +251205,1256.025000015811,-0.06943187606789744 +251206,1256.030000015811,-0.06943189052010411 +251207,1256.0350000158112,-0.0694319049619296 +251208,1256.0400000158113,-0.06943191939337785 +251209,1256.0450000158114,-0.06943193381445284 +251210,1256.0500000158115,-0.06943194822515848 +251211,1256.0550000158116,-0.06943196262549874 +251212,1256.0600000158117,-0.06943197701547756 +251213,1256.0650000158118,-0.06943199139509887 +251214,1256.070000015812,-0.0694320057643666 +251215,1256.075000015812,-0.06943202012328471 +251216,1256.0800000158122,-0.06943203447185714 +251217,1256.0850000158123,-0.06943204881008781 +251218,1256.0900000158124,-0.06943206313798066 +251219,1256.0950000158125,-0.0694320774555396 +251220,1256.1000000158126,-0.06943209176276859 +251221,1256.1050000158127,-0.06943210605967154 +251222,1256.1100000158128,-0.06943212034625239 +251223,1256.115000015813,-0.06943213462251506 +251224,1256.120000015813,-0.06943214888846347 +251225,1256.1250000158132,-0.06943216314410156 +251226,1256.1300000158133,-0.06943217738943322 +251227,1256.1350000158134,-0.06943219162446239 +251228,1256.1400000158135,-0.069432205849193 +251229,1256.1450000158136,-0.06943222006362894 +251230,1256.1500000158137,-0.06943223426777413 +251231,1256.1550000158138,-0.0694322484616325 +251232,1256.160000015814,-0.06943226264520794 +251233,1256.165000015814,-0.06943227681850438 +251234,1256.1700000158141,-0.06943229098152572 +251235,1256.1750000158142,-0.06943230513427585 +251236,1256.1800000158144,-0.0694323192767587 +251237,1256.1850000158145,-0.06943233340897818 +251238,1256.1900000158146,-0.06943234753093817 +251239,1256.1950000158147,-0.06943236164264259 +251240,1256.2000000158148,-0.06943237574409533 +251241,1256.205000015815,-0.06943238983530027 +251242,1256.210000015815,-0.06943240391626132 +251243,1256.2150000158151,-0.0694324179869824 +251244,1256.2200000158152,-0.06943243204746735 +251245,1256.2250000158153,-0.0694324460977201 +251246,1256.2300000158154,-0.06943246013774454 +251247,1256.2350000158156,-0.06943247416754456 +251248,1256.2400000158157,-0.06943248818712403 +251249,1256.2450000158158,-0.06943250219648683 +251250,1256.2500000158159,-0.06943251619563688 +251251,1256.255000015816,-0.06943253018457803 +251252,1256.260000015816,-0.06943254416331417 +251253,1256.2650000158162,-0.06943255813184916 +251254,1256.2700000158163,-0.06943257209018693 +251255,1256.2750000158164,-0.0694325860383313 +251256,1256.2800000158165,-0.06943259997628617 +251257,1256.2850000158166,-0.06943261390405542 +251258,1256.2900000158168,-0.06943262782164292 +251259,1256.2950000158169,-0.06943264172905252 +251260,1256.300000015817,-0.06943265562628811 +251261,1256.305000015817,-0.06943266951335354 +251262,1256.3100000158172,-0.06943268339025269 +251263,1256.3150000158173,-0.06943269725698943 +251264,1256.3200000158174,-0.06943271111356761 +251265,1256.3250000158175,-0.06943272495999107 +251266,1256.3300000158176,-0.06943273879626372 +251267,1256.3350000158177,-0.06943275262238938 +251268,1256.3400000158178,-0.06943276643837192 +251269,1256.345000015818,-0.06943278024421518 +251270,1256.350000015818,-0.06943279403992303 +251271,1256.3550000158182,-0.06943280782549931 +251272,1256.3600000158183,-0.0694328216009479 +251273,1256.3650000158184,-0.0694328353662726 +251274,1256.3700000158185,-0.06943284912147729 +251275,1256.3750000158186,-0.06943286286656582 +251276,1256.3800000158187,-0.069432876601542 +251277,1256.3850000158188,-0.06943289032640972 +251278,1256.390000015819,-0.06943290404117279 +251279,1256.395000015819,-0.06943291774583506 +251280,1256.4000000158192,-0.06943293144040036 +251281,1256.4050000158193,-0.06943294512487252 +251282,1256.4100000158194,-0.06943295879925539 +251283,1256.4150000158195,-0.0694329724635528 +251284,1256.4200000158196,-0.06943298611776859 +251285,1256.4250000158197,-0.06943299976190659 +251286,1256.4300000158198,-0.0694330133959706 +251287,1256.43500001582,-0.06943302701996448 +251288,1256.44000001582,-0.06943304063389205 +251289,1256.4450000158201,-0.06943305423775714 +251290,1256.4500000158203,-0.06943306783156356 +251291,1256.4550000158204,-0.06943308141531512 +251292,1256.4600000158205,-0.06943309498901566 +251293,1256.4650000158206,-0.069433108552669 +251294,1256.4700000158207,-0.06943312210627894 +251295,1256.4750000158208,-0.06943313564984932 +251296,1256.480000015821,-0.06943314918338393 +251297,1256.485000015821,-0.0694331627068866 +251298,1256.4900000158211,-0.06943317622036112 +251299,1256.4950000158212,-0.06943318972381132 +251300,1256.5000000158213,-0.069433203217241 +251301,1256.5050000158215,-0.06943321670065397 +251302,1256.5100000158216,-0.06943323017405403 +251303,1256.5150000158217,-0.06943324363744499 +251304,1256.5200000158218,-0.06943325709083065 +251305,1256.525000015822,-0.06943327053421482 +251306,1256.530000015822,-0.06943328396760128 +251307,1256.535000015822,-0.06943329739099381 +251308,1256.5400000158222,-0.06943331080439626 +251309,1256.5450000158223,-0.06943332420781238 +251310,1256.5500000158224,-0.06943333760124598 +251311,1256.5550000158225,-0.06943335098470085 +251312,1256.5600000158227,-0.06943336435818079 +251313,1256.5650000158228,-0.06943337772168957 +251314,1256.5700000158229,-0.06943339107523099 +251315,1256.575000015823,-0.06943340441880883 +251316,1256.580000015823,-0.06943341775242687 +251317,1256.5850000158232,-0.06943343107608889 +251318,1256.5900000158233,-0.06943344438979869 +251319,1256.5950000158234,-0.06943345769356005 +251320,1256.6000000158235,-0.0694334709873767 +251321,1256.6050000158236,-0.06943348427125248 +251322,1256.6100000158237,-0.06943349754519113 +251323,1256.6150000158239,-0.06943351080919644 +251324,1256.620000015824,-0.06943352406327216 +251325,1256.625000015824,-0.06943353730742209 +251326,1256.6300000158242,-0.06943355054164997 +251327,1256.6350000158243,-0.06943356376595958 +251328,1256.6400000158244,-0.06943357698035468 +251329,1256.6450000158245,-0.06943359018483906 +251330,1256.6500000158246,-0.06943360337941645 +251331,1256.6550000158247,-0.06943361656409064 +251332,1256.6600000158248,-0.06943362973886537 +251333,1256.665000015825,-0.0694336429037444 +251334,1256.670000015825,-0.06943365605873149 +251335,1256.6750000158252,-0.0694336692038304 +251336,1256.6800000158253,-0.0694336823390449 +251337,1256.6850000158254,-0.0694336954643787 +251338,1256.6900000158255,-0.06943370857983558 +251339,1256.6950000158256,-0.06943372168541928 +251340,1256.7000000158257,-0.06943373478113357 +251341,1256.7050000158258,-0.06943374786698217 +251342,1256.710000015826,-0.06943376094296885 +251343,1256.715000015826,-0.06943377400909734 +251344,1256.7200000158261,-0.06943378706537136 +251345,1256.7250000158263,-0.0694338001117947 +251346,1256.7300000158264,-0.06943381314837106 +251347,1256.7350000158265,-0.06943382617510419 +251348,1256.7400000158266,-0.06943383919199783 +251349,1256.7450000158267,-0.06943385219905572 +251350,1256.7500000158268,-0.06943386519628157 +251351,1256.755000015827,-0.06943387818367915 +251352,1256.760000015827,-0.06943389116125215 +251353,1256.7650000158271,-0.06943390412900433 +251354,1256.7700000158272,-0.06943391708693938 +251355,1256.7750000158273,-0.06943393003506108 +251356,1256.7800000158275,-0.06943394297337312 +251357,1256.7850000158276,-0.06943395590187923 +251358,1256.7900000158277,-0.06943396882058313 +251359,1256.7950000158278,-0.06943398172948854 +251360,1256.800000015828,-0.06943399462859919 +251361,1256.805000015828,-0.06943400751791877 +251362,1256.810000015828,-0.06943402039745103 +251363,1256.8150000158282,-0.06943403326719966 +251364,1256.8200000158283,-0.06943404612716837 +251365,1256.8250000158284,-0.06943405897736091 +251366,1256.8300000158285,-0.06943407181778095 +251367,1256.8350000158287,-0.0694340846484322 +251368,1256.8400000158288,-0.06943409746931839 +251369,1256.8450000158289,-0.0694341102804432 +251370,1256.850000015829,-0.06943412308181036 +251371,1256.855000015829,-0.06943413587342358 +251372,1256.8600000158292,-0.06943414865528652 +251373,1256.8650000158293,-0.06943416142740291 +251374,1256.8700000158294,-0.06943417418977645 +251375,1256.8750000158295,-0.06943418694241081 +251376,1256.8800000158296,-0.06943419968530971 +251377,1256.8850000158297,-0.06943421241847683 +251378,1256.8900000158299,-0.06943422514191587 +251379,1256.89500001583,-0.06943423785563053 +251380,1256.90000001583,-0.06943425055962449 +251381,1256.9050000158302,-0.06943426325390144 +251382,1256.9100000158303,-0.06943427593846505 +251383,1256.9150000158304,-0.06943428861331903 +251384,1256.9200000158305,-0.06943430127846704 +251385,1256.9250000158306,-0.06943431393391279 +251386,1256.9300000158307,-0.06943432657965995 +251387,1256.9350000158308,-0.0694343392157122 +251388,1256.940000015831,-0.0694343518420732 +251389,1256.945000015831,-0.06943436445874665 +251390,1256.9500000158312,-0.0694343770657362 +251391,1256.9550000158313,-0.06943438966304555 +251392,1256.9600000158314,-0.06943440225067836 +251393,1256.9650000158315,-0.06943441482863831 +251394,1256.9700000158316,-0.06943442739692907 +251395,1256.9750000158317,-0.06943443995555429 +251396,1256.9800000158318,-0.06943445250451764 +251397,1256.985000015832,-0.0694344650438228 +251398,1256.990000015832,-0.06943447757347342 +251399,1256.9950000158321,-0.06943449009347316 +251400,1257.0000000158323,-0.06943450260382569 +251401,1257.0050000158324,-0.06943451510453467 +251402,1257.0100000158325,-0.06943452759560376 +251403,1257.0150000158326,-0.0694345400770366 +251404,1257.0200000158327,-0.06943455254883686 +251405,1257.0250000158328,-0.06943456501100818 +251406,1257.030000015833,-0.06943457746355423 +251407,1257.035000015833,-0.06943458990647865 +251408,1257.0400000158331,-0.06943460233978509 +251409,1257.0450000158332,-0.0694346147634772 +251410,1257.0500000158333,-0.06943462717755862 +251411,1257.0550000158335,-0.069434639582033 +251412,1257.0600000158336,-0.06943465197690397 +251413,1257.0650000158337,-0.0694346643621752 +251414,1257.0700000158338,-0.06943467673785031 +251415,1257.075000015834,-0.06943468910393294 +251416,1257.080000015834,-0.06943470146042674 +251417,1257.085000015834,-0.06943471380733533 +251418,1257.0900000158342,-0.06943472614466235 +251419,1257.0950000158343,-0.06943473847241143 +251420,1257.1000000158344,-0.06943475079058621 +251421,1257.1050000158345,-0.06943476309919032 +251422,1257.1100000158347,-0.06943477539822739 +251423,1257.1150000158348,-0.06943478768770103 +251424,1257.1200000158349,-0.0694347999676149 +251425,1257.125000015835,-0.06943481223797258 +251426,1257.130000015835,-0.06943482449877773 +251427,1257.1350000158352,-0.06943483675003395 +251428,1257.1400000158353,-0.06943484899174487 +251429,1257.1450000158354,-0.06943486122391411 +251430,1257.1500000158355,-0.0694348734465453 +251431,1257.1550000158356,-0.06943488565964202 +251432,1257.1600000158357,-0.06943489786320792 +251433,1257.1650000158359,-0.0694349100572466 +251434,1257.170000015836,-0.06943492224176168 +251435,1257.175000015836,-0.06943493441675674 +251436,1257.1800000158362,-0.06943494658223542 +251437,1257.1850000158363,-0.06943495873820134 +251438,1257.1900000158364,-0.06943497088465805 +251439,1257.1950000158365,-0.06943498302160922 +251440,1257.2000000158366,-0.06943499514905839 +251441,1257.2050000158367,-0.06943500726700921 +251442,1257.2100000158368,-0.06943501937546527 +251443,1257.215000015837,-0.06943503147443016 +251444,1257.220000015837,-0.06943504356390749 +251445,1257.2250000158372,-0.06943505564390084 +251446,1257.2300000158373,-0.06943506771441382 +251447,1257.2350000158374,-0.06943507977545 +251448,1257.2400000158375,-0.069435091827013 +251449,1257.2450000158376,-0.0694351038691064 +251450,1257.2500000158377,-0.06943511590173378 +251451,1257.2550000158378,-0.06943512792489874 +251452,1257.260000015838,-0.06943513993860485 +251453,1257.265000015838,-0.06943515194285571 +251454,1257.2700000158381,-0.0694351639376549 +251455,1257.2750000158383,-0.06943517592300602 +251456,1257.2800000158384,-0.06943518789891262 +251457,1257.2850000158385,-0.06943519986537829 +251458,1257.2900000158386,-0.0694352118224066 +251459,1257.2950000158387,-0.06943522377000115 +251460,1257.3000000158388,-0.0694352357081655 +251461,1257.305000015839,-0.06943524763690322 +251462,1257.310000015839,-0.06943525955621788 +251463,1257.3150000158391,-0.06943527146611306 +251464,1257.3200000158392,-0.06943528336659231 +251465,1257.3250000158394,-0.06943529525765924 +251466,1257.3300000158395,-0.06943530713931738 +251467,1257.3350000158396,-0.0694353190115703 +251468,1257.3400000158397,-0.06943533087442158 +251469,1257.3450000158398,-0.06943534272787477 +251470,1257.35000001584,-0.06943535457193344 +251471,1257.35500001584,-0.06943536640660113 +251472,1257.3600000158401,-0.06943537823188141 +251473,1257.3650000158402,-0.06943539004777784 +251474,1257.3700000158403,-0.06943540185429398 +251475,1257.3750000158404,-0.06943541365143337 +251476,1257.3800000158406,-0.06943542543919956 +251477,1257.3850000158407,-0.06943543721759612 +251478,1257.3900000158408,-0.06943544898662658 +251479,1257.3950000158409,-0.06943546074629452 +251480,1257.400000015841,-0.06943547249660344 +251481,1257.405000015841,-0.06943548423755692 +251482,1257.4100000158412,-0.0694354959691585 +251483,1257.4150000158413,-0.0694355076914117 +251484,1257.4200000158414,-0.06943551940432009 +251485,1257.4250000158415,-0.06943553110788721 +251486,1257.4300000158416,-0.06943554280211656 +251487,1257.4350000158418,-0.06943555448701172 +251488,1257.4400000158419,-0.06943556616257619 +251489,1257.445000015842,-0.06943557782881353 +251490,1257.450000015842,-0.06943558948572728 +251491,1257.4550000158422,-0.06943560113332095 +251492,1257.4600000158423,-0.06943561277159807 +251493,1257.4650000158424,-0.0694356244005622 +251494,1257.4700000158425,-0.06943563602021682 +251495,1257.4750000158426,-0.06943564763056549 +251496,1257.4800000158427,-0.06943565923161173 +251497,1257.4850000158428,-0.06943567082335905 +251498,1257.490000015843,-0.06943568240581098 +251499,1257.495000015843,-0.06943569397897104 +251500,1257.5000000158432,-0.06943570554284274 +251501,1257.5050000158433,-0.06943571709742961 +251502,1257.5100000158434,-0.06943572864273517 +251503,1257.5150000158435,-0.06943574017876293 +251504,1257.5200000158436,-0.0694357517055164 +251505,1257.5250000158437,-0.06943576322299909 +251506,1257.5300000158438,-0.06943577473121451 +251507,1257.535000015844,-0.06943578623016618 +251508,1257.540000015844,-0.0694357977198576 +251509,1257.5450000158442,-0.06943580920029227 +251510,1257.5500000158443,-0.0694358206714737 +251511,1257.5550000158444,-0.06943583213340541 +251512,1257.5600000158445,-0.06943584358609088 +251513,1257.5650000158446,-0.06943585502953363 +251514,1257.5700000158447,-0.06943586646373714 +251515,1257.5750000158448,-0.06943587788870492 +251516,1257.580000015845,-0.06943588930444047 +251517,1257.585000015845,-0.06943590071094727 +251518,1257.5900000158451,-0.06943591210822882 +251519,1257.5950000158452,-0.06943592349628862 +251520,1257.6000000158454,-0.06943593487513015 +251521,1257.6050000158455,-0.06943594624475694 +251522,1257.6100000158456,-0.06943595760517242 +251523,1257.6150000158457,-0.06943596895638011 +251524,1257.6200000158458,-0.06943598029838348 +251525,1257.625000015846,-0.06943599163118604 +251526,1257.630000015846,-0.06943600295479126 +251527,1257.6350000158461,-0.06943601426920261 +251528,1257.6400000158462,-0.06943602557442356 +251529,1257.6450000158463,-0.06943603687045764 +251530,1257.6500000158464,-0.06943604815730829 +251531,1257.6550000158466,-0.06943605943497899 +251532,1257.6600000158467,-0.06943607070347321 +251533,1257.6650000158468,-0.06943608196279444 +251534,1257.6700000158469,-0.06943609321294614 +251535,1257.675000015847,-0.06943610445393178 +251536,1257.680000015847,-0.06943611568575483 +251537,1257.6850000158472,-0.06943612690841877 +251538,1257.6900000158473,-0.06943613812192706 +251539,1257.6950000158474,-0.06943614932628316 +251540,1257.7000000158475,-0.06943616052149054 +251541,1257.7050000158476,-0.06943617170755265 +251542,1257.7100000158478,-0.06943618288447295 +251543,1257.7150000158479,-0.06943619405225493 +251544,1257.720000015848,-0.06943620521090203 +251545,1257.725000015848,-0.0694362163604177 +251546,1257.7300000158482,-0.06943622750080541 +251547,1257.7350000158483,-0.0694362386320686 +251548,1257.7400000158484,-0.06943624975421074 +251549,1257.7450000158485,-0.06943626086723527 +251550,1257.7500000158486,-0.06943627197114563 +251551,1257.7550000158487,-0.06943628306594529 +251552,1257.7600000158488,-0.06943629415163768 +251553,1257.765000015849,-0.06943630522822626 +251554,1257.770000015849,-0.06943631629571446 +251555,1257.7750000158492,-0.06943632735410575 +251556,1257.7800000158493,-0.06943633840340355 +251557,1257.7850000158494,-0.0694363494436113 +251558,1257.7900000158495,-0.06943636047473244 +251559,1257.7950000158496,-0.06943637149677043 +251560,1257.8000000158497,-0.06943638250972868 +251561,1257.8050000158498,-0.06943639351361063 +251562,1257.81000001585,-0.06943640450841972 +251563,1257.81500001585,-0.06943641549415938 +251564,1257.8200000158502,-0.06943642647083305 +251565,1257.8250000158503,-0.06943643743844415 +251566,1257.8300000158504,-0.06943644839699611 +251567,1257.8350000158505,-0.06943645934649237 +251568,1257.8400000158506,-0.06943647028693634 +251569,1257.8450000158507,-0.06943648121833146 +251570,1257.8500000158508,-0.06943649214068112 +251571,1257.855000015851,-0.06943650305398877 +251572,1257.860000015851,-0.06943651395825784 +251573,1257.8650000158511,-0.06943652485349172 +251574,1257.8700000158512,-0.06943653573969386 +251575,1257.8750000158514,-0.06943654661686764 +251576,1257.8800000158515,-0.06943655748501651 +251577,1257.8850000158516,-0.06943656834414386 +251578,1257.8900000158517,-0.0694365791942531 +251579,1257.8950000158518,-0.06943659003534766 +251580,1257.900000015852,-0.06943660086743095 +251581,1257.905000015852,-0.06943661169050636 +251582,1257.9100000158521,-0.0694366225045773 +251583,1257.9150000158522,-0.0694366333096472 +251584,1257.9200000158523,-0.06943664410571943 +251585,1257.9250000158524,-0.0694366548927974 +251586,1257.9300000158526,-0.06943666567088454 +251587,1257.9350000158527,-0.06943667643998423 +251588,1257.9400000158528,-0.06943668720009986 +251589,1257.9450000158529,-0.06943669795123486 +251590,1257.950000015853,-0.0694367086933926 +251591,1257.955000015853,-0.06943671942657646 +251592,1257.9600000158532,-0.06943673015078987 +251593,1257.9650000158533,-0.0694367408660362 +251594,1257.9700000158534,-0.06943675157231885 +251595,1257.9750000158535,-0.06943676226964121 +251596,1257.9800000158536,-0.06943677295800665 +251597,1257.9850000158538,-0.06943678363741859 +251598,1257.9900000158539,-0.0694367943078804 +251599,1257.995000015854,-0.06943680496939544 +251600,1258.000000015854,-0.06943681562196713 +251601,1258.0050000158542,-0.06943682626559883 +251602,1258.0100000158543,-0.06943683690029392 +251603,1258.0150000158544,-0.0694368475260558 +251604,1258.0200000158545,-0.06943685814288783 +251605,1258.0250000158546,-0.06943686875079338 +251606,1258.0300000158547,-0.06943687934977584 +251607,1258.0350000158548,-0.06943688993983858 +251608,1258.040000015855,-0.06943690052098496 +251609,1258.045000015855,-0.06943691109321837 +251610,1258.0500000158552,-0.06943692165654217 +251611,1258.0550000158553,-0.06943693221095973 +251612,1258.0600000158554,-0.06943694275647441 +251613,1258.0650000158555,-0.06943695329308959 +251614,1258.0700000158556,-0.06943696382080863 +251615,1258.0750000158557,-0.06943697433963489 +251616,1258.0800000158558,-0.06943698484957173 +251617,1258.085000015856,-0.06943699535062252 +251618,1258.090000015856,-0.0694370058427906 +251619,1258.0950000158562,-0.06943701632607933 +251620,1258.1000000158563,-0.06943702680049209 +251621,1258.1050000158564,-0.06943703726603222 +251622,1258.1100000158565,-0.06943704772270307 +251623,1258.1150000158566,-0.06943705817050799 +251624,1258.1200000158567,-0.06943706860945036 +251625,1258.1250000158568,-0.06943707903953349 +251626,1258.130000015857,-0.06943708946076074 +251627,1258.135000015857,-0.06943709987313548 +251628,1258.1400000158571,-0.06943711027666104 +251629,1258.1450000158572,-0.06943712067134074 +251630,1258.1500000158574,-0.06943713105717796 +251631,1258.1550000158575,-0.06943714143417601 +251632,1258.1600000158576,-0.06943715180233827 +251633,1258.1650000158577,-0.06943716216166805 +251634,1258.1700000158578,-0.0694371725121687 +251635,1258.175000015858,-0.06943718285384355 +251636,1258.180000015858,-0.06943719318669594 +251637,1258.1850000158581,-0.06943720351072923 +251638,1258.1900000158582,-0.06943721382594668 +251639,1258.1950000158583,-0.06943722413235169 +251640,1258.2000000158584,-0.06943723442994756 +251641,1258.2050000158586,-0.06943724471873763 +251642,1258.2100000158587,-0.06943725499872522 +251643,1258.2150000158588,-0.06943726526991367 +251644,1258.220000015859,-0.06943727553230629 +251645,1258.225000015859,-0.0694372857859064 +251646,1258.230000015859,-0.06943729603071734 +251647,1258.2350000158592,-0.06943730626674241 +251648,1258.2400000158593,-0.06943731649398494 +251649,1258.2450000158594,-0.06943732671244826 +251650,1258.2500000158595,-0.06943733692213566 +251651,1258.2550000158597,-0.06943734712305047 +251652,1258.2600000158598,-0.06943735731519601 +251653,1258.2650000158599,-0.0694373674985756 +251654,1258.27000001586,-0.06943737767319252 +251655,1258.27500001586,-0.06943738783905012 +251656,1258.2800000158602,-0.06943739799615169 +251657,1258.2850000158603,-0.06943740814450053 +251658,1258.2900000158604,-0.06943741828409995 +251659,1258.2950000158605,-0.06943742841495326 +251660,1258.3000000158606,-0.06943743853706377 +251661,1258.3050000158607,-0.06943744865043477 +251662,1258.3100000158609,-0.06943745875506957 +251663,1258.315000015861,-0.06943746885097148 +251664,1258.320000015861,-0.06943747893814377 +251665,1258.3250000158612,-0.06943748901658976 +251666,1258.3300000158613,-0.06943749908631275 +251667,1258.3350000158614,-0.06943750914731601 +251668,1258.3400000158615,-0.06943751919960285 +251669,1258.3450000158616,-0.06943752924317656 +251670,1258.3500000158617,-0.06943753927804043 +251671,1258.3550000158618,-0.06943754930419777 +251672,1258.360000015862,-0.06943755932165183 +251673,1258.365000015862,-0.0694375693304059 +251674,1258.3700000158622,-0.06943757933046331 +251675,1258.3750000158623,-0.06943758932182731 +251676,1258.3800000158624,-0.06943759930450119 +251677,1258.3850000158625,-0.06943760927848824 +251678,1258.3900000158626,-0.06943761924379173 +251679,1258.3950000158627,-0.06943762920041494 +251680,1258.4000000158628,-0.06943763914836114 +251681,1258.405000015863,-0.06943764908763363 +251682,1258.410000015863,-0.06943765901823566 +251683,1258.4150000158631,-0.06943766894017053 +251684,1258.4200000158633,-0.06943767885344149 +251685,1258.4250000158634,-0.06943768875805183 +251686,1258.4300000158635,-0.06943769865400479 +251687,1258.4350000158636,-0.06943770854130368 +251688,1258.4400000158637,-0.06943771841995174 +251689,1258.4450000158638,-0.06943772828995223 +251690,1258.450000015864,-0.06943773815130845 +251691,1258.455000015864,-0.06943774800402364 +251692,1258.4600000158641,-0.06943775784810106 +251693,1258.4650000158642,-0.06943776768354398 +251694,1258.4700000158643,-0.06943777751035567 +251695,1258.4750000158645,-0.06943778732853935 +251696,1258.4800000158646,-0.0694377971380983 +251697,1258.4850000158647,-0.0694378069390358 +251698,1258.4900000158648,-0.06943781673135507 +251699,1258.495000015865,-0.06943782651505939 +251700,1258.500000015865,-0.06943783629015199 +251701,1258.505000015865,-0.06943784605663614 +251702,1258.5100000158652,-0.06943785581451507 +251703,1258.5150000158653,-0.06943786556379204 +251704,1258.5200000158654,-0.0694378753044703 +251705,1258.5250000158655,-0.0694378850365531 +251706,1258.5300000158657,-0.06943789476004367 +251707,1258.5350000158658,-0.06943790447494526 +251708,1258.5400000158659,-0.0694379141812611 +251709,1258.545000015866,-0.06943792387899447 +251710,1258.550000015866,-0.06943793356814856 +251711,1258.5550000158662,-0.06943794324872664 +251712,1258.5600000158663,-0.06943795292073193 +251713,1258.5650000158664,-0.06943796258416768 +251714,1258.5700000158665,-0.06943797223903712 +251715,1258.5750000158666,-0.06943798188534347 +251716,1258.5800000158667,-0.06943799152308999 +251717,1258.5850000158669,-0.06943800115227988 +251718,1258.590000015867,-0.06943801077291639 +251719,1258.595000015867,-0.06943802038500273 +251720,1258.6000000158672,-0.06943802998854214 +251721,1258.6050000158673,-0.06943803958353786 +251722,1258.6100000158674,-0.06943804916999308 +251723,1258.6150000158675,-0.06943805874791105 +251724,1258.6200000158676,-0.06943806831729497 +251725,1258.6250000158677,-0.0694380778781481 +251726,1258.6300000158678,-0.0694380874304736 +251727,1258.635000015868,-0.06943809697427474 +251728,1258.640000015868,-0.0694381065095547 +251729,1258.6450000158682,-0.06943811603631672 +251730,1258.6500000158683,-0.069438125554564 +251731,1258.6550000158684,-0.06943813506429976 +251732,1258.6600000158685,-0.06943814456552722 +251733,1258.6650000158686,-0.06943815405824957 +251734,1258.6700000158687,-0.06943816354247004 +251735,1258.6750000158688,-0.06943817301819181 +251736,1258.680000015869,-0.06943818248541812 +251737,1258.685000015869,-0.06943819194415217 +251738,1258.6900000158691,-0.06943820139439713 +251739,1258.6950000158693,-0.06943821083615623 +251740,1258.7000000158694,-0.06943822026943268 +251741,1258.7050000158695,-0.06943822969422965 +251742,1258.7100000158696,-0.06943823911055036 +251743,1258.7150000158697,-0.069438248518398 +251744,1258.7200000158698,-0.06943825791777578 +251745,1258.72500001587,-0.06943826730868688 +251746,1258.73000001587,-0.0694382766911345 +251747,1258.7350000158701,-0.06943828606512184 +251748,1258.7400000158702,-0.0694382954306521 +251749,1258.7450000158703,-0.06943830478772843 +251750,1258.7500000158705,-0.06943831413635404 +251751,1258.7550000158706,-0.06943832347653212 +251752,1258.7600000158707,-0.06943833280826588 +251753,1258.7650000158708,-0.06943834213155846 +251754,1258.770000015871,-0.06943835144641307 +251755,1258.775000015871,-0.06943836075283288 +251756,1258.780000015871,-0.0694383700508211 +251757,1258.7850000158712,-0.06943837934038088 +251758,1258.7900000158713,-0.0694383886215154 +251759,1258.7950000158714,-0.06943839789422784 +251760,1258.8000000158715,-0.0694384071585214 +251761,1258.8050000158717,-0.06943841641439923 +251762,1258.8100000158718,-0.06943842566186452 +251763,1258.8150000158719,-0.06943843490092043 +251764,1258.820000015872,-0.06943844413157013 +251765,1258.825000015872,-0.0694384533538168 +251766,1258.8300000158722,-0.06943846256766362 +251767,1258.8350000158723,-0.06943847177311373 +251768,1258.8400000158724,-0.0694384809701703 +251769,1258.8450000158725,-0.06943849015883652 +251770,1258.8500000158726,-0.06943849933911553 +251771,1258.8550000158727,-0.06943850851101048 +251772,1258.8600000158729,-0.06943851767452458 +251773,1258.865000015873,-0.06943852682966095 +251774,1258.870000015873,-0.06943853597642276 +251775,1258.8750000158732,-0.06943854511481316 +251776,1258.8800000158733,-0.06943855424483533 +251777,1258.8850000158734,-0.0694385633664924 +251778,1258.8900000158735,-0.06943857247978753 +251779,1258.8950000158736,-0.0694385815847239 +251780,1258.9000000158737,-0.06943859068130462 +251781,1258.9050000158738,-0.06943859976953286 +251782,1258.910000015874,-0.06943860884941176 +251783,1258.915000015874,-0.06943861792094448 +251784,1258.9200000158742,-0.06943862698413417 +251785,1258.9250000158743,-0.06943863603898394 +251786,1258.9300000158744,-0.06943864508549699 +251787,1258.9350000158745,-0.06943865412367642 +251788,1258.9400000158746,-0.06943866315352538 +251789,1258.9450000158747,-0.06943867217504704 +251790,1258.9500000158748,-0.06943868118824449 +251791,1258.955000015875,-0.06943869019312089 +251792,1258.960000015875,-0.0694386991896794 +251793,1258.9650000158751,-0.06943870817792312 +251794,1258.9700000158753,-0.0694387171578552 +251795,1258.9750000158754,-0.06943872612947877 +251796,1258.9800000158755,-0.06943873509279697 +251797,1258.9850000158756,-0.0694387440478129 +251798,1258.9900000158757,-0.06943875299452974 +251799,1258.9950000158758,-0.06943876193295058 +251800,1259.000000015876,-0.06943877086307856 +251801,1259.005000015876,-0.0694387797849168 +251802,1259.0100000158761,-0.06943878869846842 +251803,1259.0150000158762,-0.06943879760373656 +251804,1259.0200000158763,-0.06943880650072433 +251805,1259.0250000158765,-0.06943881538943485 +251806,1259.0300000158766,-0.06943882426987125 +251807,1259.0350000158767,-0.06943883314203662 +251808,1259.0400000158768,-0.06943884200593411 +251809,1259.045000015877,-0.06943885086156684 +251810,1259.050000015877,-0.06943885970893789 +251811,1259.055000015877,-0.06943886854805038 +251812,1259.0600000158772,-0.06943887737890744 +251813,1259.0650000158773,-0.06943888620151217 +251814,1259.0700000158774,-0.06943889501586768 +251815,1259.0750000158775,-0.0694389038219771 +251816,1259.0800000158777,-0.06943891261984349 +251817,1259.0850000158778,-0.06943892140947 +251818,1259.0900000158779,-0.06943893019085973 +251819,1259.095000015878,-0.06943893896401575 +251820,1259.100000015878,-0.06943894772894119 +251821,1259.1050000158782,-0.06943895648563915 +251822,1259.1100000158783,-0.06943896523411273 +251823,1259.1150000158784,-0.06943897397436502 +251824,1259.1200000158785,-0.06943898270639912 +251825,1259.1250000158786,-0.06943899143021813 +251826,1259.1300000158787,-0.06943900014582513 +251827,1259.1350000158789,-0.06943900885322322 +251828,1259.140000015879,-0.06943901755241552 +251829,1259.145000015879,-0.0694390262434051 +251830,1259.1500000158792,-0.06943903492619503 +251831,1259.1550000158793,-0.06943904360078844 +251832,1259.1600000158794,-0.06943905226718837 +251833,1259.1650000158795,-0.06943906092539795 +251834,1259.1700000158796,-0.06943906957542025 +251835,1259.1750000158797,-0.06943907821725834 +251836,1259.1800000158798,-0.06943908685091532 +251837,1259.18500001588,-0.06943909547639426 +251838,1259.19000001588,-0.06943910409369825 +251839,1259.1950000158802,-0.06943911270283036 +251840,1259.2000000158803,-0.06943912130379368 +251841,1259.2050000158804,-0.06943912989659128 +251842,1259.2100000158805,-0.06943913848122622 +251843,1259.2150000158806,-0.0694391470577016 +251844,1259.2200000158807,-0.06943915562602047 +251845,1259.2250000158808,-0.06943916418618594 +251846,1259.230000015881,-0.06943917273820104 +251847,1259.235000015881,-0.06943918128206884 +251848,1259.2400000158812,-0.06943918981779244 +251849,1259.2450000158813,-0.06943919834537489 +251850,1259.2500000158814,-0.06943920686481926 +251851,1259.2550000158815,-0.0694392153761286 +251852,1259.2600000158816,-0.06943922387930598 +251853,1259.2650000158817,-0.06943923237435448 +251854,1259.2700000158818,-0.06943924086127713 +251855,1259.275000015882,-0.06943924934007702 +251856,1259.280000015882,-0.06943925781075719 +251857,1259.2850000158821,-0.0694392662733207 +251858,1259.2900000158822,-0.06943927472777062 +251859,1259.2950000158824,-0.06943928317410998 +251860,1259.3000000158825,-0.06943929161234183 +251861,1259.3050000158826,-0.06943930004246926 +251862,1259.3100000158827,-0.0694393084644953 +251863,1259.3150000158828,-0.069439316878423 +251864,1259.320000015883,-0.06943932528425541 +251865,1259.325000015883,-0.06943933368199556 +251866,1259.3300000158831,-0.06943934207164654 +251867,1259.3350000158832,-0.06943935045321137 +251868,1259.3400000158833,-0.06943935882669308 +251869,1259.3450000158834,-0.06943936719209473 +251870,1259.3500000158836,-0.06943937554941937 +251871,1259.3550000158837,-0.06943938389867002 +251872,1259.3600000158838,-0.06943939223984973 +251873,1259.3650000158839,-0.06943940057296154 +251874,1259.370000015884,-0.06943940889800847 +251875,1259.375000015884,-0.06943941721499358 +251876,1259.3800000158842,-0.06943942552391989 +251877,1259.3850000158843,-0.06943943382479044 +251878,1259.3900000158844,-0.06943944211760826 +251879,1259.3950000158845,-0.0694394504023764 +251880,1259.4000000158846,-0.06943945867909786 +251881,1259.4050000158848,-0.06943946694777567 +251882,1259.4100000158849,-0.06943947520841287 +251883,1259.415000015885,-0.06943948346101249 +251884,1259.420000015885,-0.06943949170557753 +251885,1259.4250000158852,-0.06943949994211106 +251886,1259.4300000158853,-0.06943950817061605 +251887,1259.4350000158854,-0.06943951639109555 +251888,1259.4400000158855,-0.06943952460355259 +251889,1259.4450000158856,-0.06943953280799016 +251890,1259.4500000158857,-0.0694395410044113 +251891,1259.4550000158858,-0.06943954919281901 +251892,1259.460000015886,-0.06943955737321633 +251893,1259.465000015886,-0.06943956554560626 +251894,1259.4700000158862,-0.0694395737099918 +251895,1259.4750000158863,-0.06943958186637599 +251896,1259.4800000158864,-0.06943959001476183 +251897,1259.4850000158865,-0.06943959815515231 +251898,1259.4900000158866,-0.06943960628755046 +251899,1259.4950000158867,-0.06943961441195928 +251900,1259.5000000158868,-0.06943962252838179 +251901,1259.505000015887,-0.06943963063682099 +251902,1259.510000015887,-0.06943963873727985 +251903,1259.5150000158872,-0.0694396468297614 +251904,1259.5200000158873,-0.06943965491426865 +251905,1259.5250000158874,-0.06943966299080458 +251906,1259.5300000158875,-0.06943967105937221 +251907,1259.5350000158876,-0.06943967911997452 +251908,1259.5400000158877,-0.06943968717261452 +251909,1259.5450000158878,-0.06943969521729519 +251910,1259.550000015888,-0.06943970325401955 +251911,1259.555000015888,-0.06943971128279057 +251912,1259.5600000158881,-0.06943971930361124 +251913,1259.5650000158882,-0.06943972731648457 +251914,1259.5700000158884,-0.06943973532141354 +251915,1259.5750000158885,-0.06943974331840112 +251916,1259.5800000158886,-0.06943975130745034 +251917,1259.5850000158887,-0.06943975928856415 +251918,1259.5900000158888,-0.06943976726174554 +251919,1259.595000015889,-0.06943977522699751 +251920,1259.600000015889,-0.06943978318432303 +251921,1259.6050000158891,-0.06943979113372509 +251922,1259.6100000158892,-0.06943979907520664 +251923,1259.6150000158893,-0.06943980700877068 +251924,1259.6200000158894,-0.06943981493442021 +251925,1259.6250000158896,-0.06943982285215819 +251926,1259.6300000158897,-0.06943983076198758 +251927,1259.6350000158898,-0.06943983866391137 +251928,1259.6400000158899,-0.06943984655793253 +251929,1259.64500001589,-0.06943985444405402 +251930,1259.65000001589,-0.06943986232227885 +251931,1259.6550000158902,-0.06943987019260993 +251932,1259.6600000158903,-0.06943987805505028 +251933,1259.6650000158904,-0.06943988590960284 +251934,1259.6700000158905,-0.06943989375627058 +251935,1259.6750000158906,-0.06943990159505649 +251936,1259.6800000158908,-0.0694399094259635 +251937,1259.6850000158909,-0.06943991724899458 +251938,1259.690000015891,-0.06943992506415271 +251939,1259.695000015891,-0.06943993287144082 +251940,1259.7000000158912,-0.0694399406708619 +251941,1259.7050000158913,-0.0694399484624189 +251942,1259.7100000158914,-0.06943995624611476 +251943,1259.7150000158915,-0.06943996402195245 +251944,1259.7200000158916,-0.06943997178993491 +251945,1259.7250000158917,-0.06943997955006512 +251946,1259.7300000158918,-0.06943998730234602 +251947,1259.735000015892,-0.06943999504678054 +251948,1259.740000015892,-0.06944000278337166 +251949,1259.7450000158922,-0.06944001051212231 +251950,1259.7500000158923,-0.06944001823303544 +251951,1259.7550000158924,-0.06944002594611402 +251952,1259.7600000158925,-0.06944003365136096 +251953,1259.7650000158926,-0.06944004134877924 +251954,1259.7700000158927,-0.06944004903837175 +251955,1259.7750000158928,-0.06944005672014149 +251956,1259.780000015893,-0.06944006439409137 +251957,1259.785000015893,-0.06944007206022433 +251958,1259.7900000158932,-0.06944007971854331 +251959,1259.7950000158933,-0.06944008736905125 +251960,1259.8000000158934,-0.06944009501175108 +251961,1259.8050000158935,-0.06944010264664575 +251962,1259.8100000158936,-0.06944011027373818 +251963,1259.8150000158937,-0.06944011789303131 +251964,1259.8200000158938,-0.06944012550452808 +251965,1259.825000015894,-0.0694401331082314 +251966,1259.830000015894,-0.0694401407041442 +251967,1259.8350000158941,-0.06944014829226941 +251968,1259.8400000158942,-0.06944015587260997 +251969,1259.8450000158944,-0.0694401634451688 +251970,1259.8500000158945,-0.06944017100994883 +251971,1259.8550000158946,-0.06944017856695296 +251972,1259.8600000158947,-0.06944018611618413 +251973,1259.8650000158948,-0.06944019365764527 +251974,1259.870000015895,-0.06944020119133928 +251975,1259.875000015895,-0.0694402087172691 +251976,1259.8800000158951,-0.0694402162354376 +251977,1259.8850000158952,-0.06944022374584777 +251978,1259.8900000158953,-0.06944023124850246 +251979,1259.8950000158954,-0.06944023874340462 +251980,1259.9000000158956,-0.06944024623055715 +251981,1259.9050000158957,-0.06944025370996297 +251982,1259.9100000158958,-0.069440261181625 +251983,1259.9150000158959,-0.06944026864554612 +251984,1259.920000015896,-0.06944027610172925 +251985,1259.925000015896,-0.0694402835501773 +251986,1259.9300000158962,-0.06944029099089317 +251987,1259.9350000158963,-0.06944029842387978 +251988,1259.9400000158964,-0.06944030584914003 +251989,1259.9450000158965,-0.06944031326667681 +251990,1259.9500000158966,-0.06944032067649303 +251991,1259.9550000158968,-0.06944032807859159 +251992,1259.9600000158969,-0.06944033547297539 +251993,1259.965000015897,-0.06944034285964733 +251994,1259.970000015897,-0.06944035023861031 +251995,1259.9750000158972,-0.06944035760986722 +251996,1259.9800000158973,-0.06944036497342096 +251997,1259.9850000158974,-0.06944037232927441 +251998,1259.9900000158975,-0.06944037967743047 +251999,1259.9950000158976,-0.06944038701789204 +252000,1260.0000000158977,-0.06944039435066199 +252001,1260.0050000158978,-0.06944040167574324 +252002,1260.010000015898,-0.06944040899313865 +252003,1260.015000015898,-0.06944041630285111 +252004,1260.0200000158982,-0.0694404236048835 +252005,1260.0250000158983,-0.06944043089923874 +252006,1260.0300000158984,-0.06944043818591968 +252007,1260.0350000158985,-0.06944044546492921 +252008,1260.0400000158986,-0.06944045273627023 +252009,1260.0450000158987,-0.06944045999994558 +252010,1260.0500000158988,-0.06944046725595816 +252011,1260.055000015899,-0.06944047450431087 +252012,1260.060000015899,-0.06944048174500655 +252013,1260.0650000158992,-0.0694404889780481 +252014,1260.0700000158993,-0.06944049620343838 +252015,1260.0750000158994,-0.06944050342118029 +252016,1260.0800000158995,-0.06944051063127665 +252017,1260.0850000158996,-0.06944051783373038 +252018,1260.0900000158997,-0.06944052502854434 +252019,1260.0950000158998,-0.06944053221572136 +252020,1260.1000000159,-0.06944053939526436 +252021,1260.1050000159,-0.06944054656717617 +252022,1260.1100000159001,-0.06944055373145967 +252023,1260.1150000159003,-0.06944056088811773 +252024,1260.1200000159004,-0.0694405680371532 +252025,1260.1250000159005,-0.06944057517856896 +252026,1260.1300000159006,-0.06944058231236784 +252027,1260.1350000159007,-0.06944058943855272 +252028,1260.1400000159008,-0.06944059655712646 +252029,1260.145000015901,-0.06944060366809193 +252030,1260.150000015901,-0.06944061077145196 +252031,1260.1550000159011,-0.06944061786720941 +252032,1260.1600000159012,-0.06944062495536714 +252033,1260.1650000159013,-0.06944063203592801 +252034,1260.1700000159015,-0.06944063910889486 +252035,1260.1750000159016,-0.06944064617427054 +252036,1260.1800000159017,-0.06944065323205792 +252037,1260.1850000159018,-0.06944066028225981 +252038,1260.190000015902,-0.06944066732487911 +252039,1260.195000015902,-0.06944067435991862 +252040,1260.200000015902,-0.0694406813873812 +252041,1260.2050000159022,-0.0694406884072697 +252042,1260.2100000159023,-0.06944069541958696 +252043,1260.2150000159024,-0.06944070242433581 +252044,1260.2200000159025,-0.0694407094215191 +252045,1260.2250000159027,-0.06944071641113968 +252046,1260.2300000159028,-0.06944072339320037 +252047,1260.2350000159029,-0.06944073036770403 +252048,1260.240000015903,-0.06944073733465346 +252049,1260.245000015903,-0.06944074429405153 +252050,1260.2500000159032,-0.06944075124590106 +252051,1260.2550000159033,-0.06944075819020487 +252052,1260.2600000159034,-0.06944076512696581 +252053,1260.2650000159035,-0.06944077205618672 +252054,1260.2700000159036,-0.06944077897787039 +252055,1260.2750000159037,-0.06944078589201969 +252056,1260.2800000159039,-0.06944079279863742 +252057,1260.285000015904,-0.06944079969772642 +252058,1260.290000015904,-0.06944080658928951 +252059,1260.2950000159042,-0.06944081347332952 +252060,1260.3000000159043,-0.06944082034984926 +252061,1260.3050000159044,-0.06944082721885157 +252062,1260.3100000159045,-0.06944083408033924 +252063,1260.3150000159046,-0.06944084093431513 +252064,1260.3200000159047,-0.06944084778078204 +252065,1260.3250000159048,-0.06944085461974277 +252066,1260.330000015905,-0.06944086145120015 +252067,1260.335000015905,-0.069440868275157 +252068,1260.3400000159052,-0.06944087509161613 +252069,1260.3450000159053,-0.06944088190058037 +252070,1260.3500000159054,-0.06944088870205249 +252071,1260.3550000159055,-0.06944089549603534 +252072,1260.3600000159056,-0.0694409022825317 +252073,1260.3650000159057,-0.06944090906154442 +252074,1260.3700000159058,-0.06944091583307627 +252075,1260.375000015906,-0.06944092259713004 +252076,1260.380000015906,-0.06944092935370859 +252077,1260.3850000159061,-0.06944093610281468 +252078,1260.3900000159063,-0.06944094284445113 +252079,1260.3950000159064,-0.06944094957862075 +252080,1260.4000000159065,-0.06944095630532633 +252081,1260.4050000159066,-0.06944096302457065 +252082,1260.4100000159067,-0.06944096973635654 +252083,1260.4150000159068,-0.06944097644068678 +252084,1260.420000015907,-0.06944098313756418 +252085,1260.425000015907,-0.06944098982699153 +252086,1260.4300000159071,-0.0694409965089716 +252087,1260.4350000159072,-0.06944100318350724 +252088,1260.4400000159073,-0.06944100985060118 +252089,1260.4450000159075,-0.06944101651025625 +252090,1260.4500000159076,-0.06944102316247522 +252091,1260.4550000159077,-0.06944102980726088 +252092,1260.4600000159078,-0.06944103644461604 +252093,1260.465000015908,-0.06944104307454345 +252094,1260.470000015908,-0.06944104969704591 +252095,1260.475000015908,-0.06944105631212623 +252096,1260.4800000159082,-0.06944106291978716 +252097,1260.4850000159083,-0.0694410695200315 +252098,1260.4900000159084,-0.069441076112862 +252099,1260.4950000159085,-0.06944108269828149 +252100,1260.5000000159087,-0.06944108927629272 +252101,1260.5050000159088,-0.06944109584689846 +252102,1260.5100000159089,-0.06944110241010151 +252103,1260.515000015909,-0.06944110896590462 +252104,1260.520000015909,-0.06944111551431058 +252105,1260.5250000159092,-0.06944112205532217 +252106,1260.5300000159093,-0.06944112858894215 +252107,1260.5350000159094,-0.06944113511517329 +252108,1260.5400000159095,-0.06944114163401835 +252109,1260.5450000159096,-0.06944114814548012 +252110,1260.5500000159097,-0.06944115464956137 +252111,1260.5550000159099,-0.06944116114626485 +252112,1260.56000001591,-0.06944116763559333 +252113,1260.56500001591,-0.06944117411754958 +252114,1260.5700000159102,-0.06944118059213636 +252115,1260.5750000159103,-0.06944118705935644 +252116,1260.5800000159104,-0.06944119351921256 +252117,1260.5850000159105,-0.0694411999717075 +252118,1260.5900000159106,-0.06944120641684402 +252119,1260.5950000159107,-0.06944121285462487 +252120,1260.6000000159108,-0.0694412192850528 +252121,1260.605000015911,-0.06944122570813058 +252122,1260.610000015911,-0.06944123212386095 +252123,1260.6150000159112,-0.0694412385322467 +252124,1260.6200000159113,-0.06944124493329053 +252125,1260.6250000159114,-0.06944125132699522 +252126,1260.6300000159115,-0.06944125771336351 +252127,1260.6350000159116,-0.06944126409239817 +252128,1260.6400000159117,-0.06944127046410194 +252129,1260.6450000159118,-0.06944127682847756 +252130,1260.650000015912,-0.06944128318552777 +252131,1260.655000015912,-0.06944128953525533 +252132,1260.6600000159121,-0.06944129587766297 +252133,1260.6650000159123,-0.06944130221275345 +252134,1260.6700000159124,-0.06944130854052949 +252135,1260.6750000159125,-0.06944131486099386 +252136,1260.6800000159126,-0.06944132117414926 +252137,1260.6850000159127,-0.06944132747999848 +252138,1260.6900000159128,-0.06944133377854422 +252139,1260.695000015913,-0.06944134006978922 +252140,1260.700000015913,-0.06944134635373622 +252141,1260.7050000159131,-0.06944135263038796 +252142,1260.7100000159132,-0.06944135889974716 +252143,1260.7150000159133,-0.06944136516181657 +252144,1260.7200000159135,-0.0694413714165989 +252145,1260.7250000159136,-0.06944137766409689 +252146,1260.7300000159137,-0.06944138390431329 +252147,1260.7350000159138,-0.0694413901372508 +252148,1260.740000015914,-0.06944139636291215 +252149,1260.745000015914,-0.06944140258130006 +252150,1260.750000015914,-0.0694414087924173 +252151,1260.7550000159142,-0.06944141499626653 +252152,1260.7600000159143,-0.06944142119285052 +252153,1260.7650000159144,-0.06944142738217195 +252154,1260.7700000159145,-0.06944143356423357 +252155,1260.7750000159147,-0.0694414397390381 +252156,1260.7800000159148,-0.06944144590658825 +252157,1260.7850000159149,-0.06944145206688675 +252158,1260.790000015915,-0.06944145821993628 +252159,1260.795000015915,-0.0694414643657396 +252160,1260.8000000159152,-0.06944147050429939 +252161,1260.8050000159153,-0.06944147663561838 +252162,1260.8100000159154,-0.06944148275969927 +252163,1260.8150000159155,-0.06944148887654478 +252164,1260.8200000159156,-0.06944149498615762 +252165,1260.8250000159157,-0.06944150108854051 +252166,1260.8300000159159,-0.06944150718369613 +252167,1260.835000015916,-0.0694415132716272 +252168,1260.840000015916,-0.06944151935233643 +252169,1260.8450000159162,-0.06944152542582652 +252170,1260.8500000159163,-0.06944153149210017 +252171,1260.8550000159164,-0.0694415375511601 +252172,1260.8600000159165,-0.06944154360300898 +252173,1260.8650000159166,-0.06944154964764954 +252174,1260.8700000159167,-0.06944155568508446 +252175,1260.8750000159168,-0.06944156171531646 +252176,1260.880000015917,-0.0694415677383482 +252177,1260.885000015917,-0.0694415737541824 +252178,1260.8900000159172,-0.06944157976282177 +252179,1260.8950000159173,-0.06944158576426897 +252180,1260.9000000159174,-0.06944159175852671 +252181,1260.9050000159175,-0.06944159774559769 +252182,1260.9100000159176,-0.06944160372548458 +252183,1260.9150000159177,-0.06944160969819009 +252184,1260.9200000159178,-0.06944161566371689 +252185,1260.925000015918,-0.06944162162206768 +252186,1260.930000015918,-0.06944162757324514 +252187,1260.9350000159181,-0.06944163351725197 +252188,1260.9400000159183,-0.06944163945409082 +252189,1260.9450000159184,-0.0694416453837644 +252190,1260.9500000159185,-0.0694416513062754 +252191,1260.9550000159186,-0.06944165722162648 +252192,1260.9600000159187,-0.06944166312982035 +252193,1260.9650000159188,-0.06944166903085965 +252194,1260.970000015919,-0.06944167492474708 +252195,1260.975000015919,-0.06944168081148532 +252196,1260.9800000159191,-0.06944168669107703 +252197,1260.9850000159192,-0.06944169256352488 +252198,1260.9900000159193,-0.06944169842883158 +252199,1260.9950000159195,-0.06944170428699976 +252200,1261.0000000159196,-0.06944171013803212 +252201,1261.0050000159197,-0.06944171598193133 +252202,1261.0100000159198,-0.06944172181870005 +252203,1261.01500001592,-0.06944172764834095 +252204,1261.02000001592,-0.06944173347085669 +252205,1261.02500001592,-0.06944173928624994 +252206,1261.0300000159202,-0.06944174509452337 +252207,1261.0350000159203,-0.06944175089567965 +252208,1261.0400000159204,-0.06944175668972143 +252209,1261.0450000159206,-0.06944176247665139 +252210,1261.0500000159207,-0.06944176825647218 +252211,1261.0550000159208,-0.06944177402918644 +252212,1261.0600000159209,-0.06944177979479688 +252213,1261.065000015921,-0.0694417855533061 +252214,1261.070000015921,-0.0694417913047168 +252215,1261.0750000159212,-0.06944179704903163 +252216,1261.0800000159213,-0.06944180278625321 +252217,1261.0850000159214,-0.06944180851638423 +252218,1261.0900000159215,-0.06944181423942733 +252219,1261.0950000159216,-0.06944181995538518 +252220,1261.1000000159218,-0.0694418256642604 +252221,1261.1050000159219,-0.06944183136605564 +252222,1261.110000015922,-0.06944183706077357 +252223,1261.115000015922,-0.06944184274841683 +252224,1261.1200000159222,-0.06944184842898807 +252225,1261.1250000159223,-0.06944185410248993 +252226,1261.1300000159224,-0.06944185976892506 +252227,1261.1350000159225,-0.0694418654282961 +252228,1261.1400000159226,-0.06944187108060569 +252229,1261.1450000159227,-0.06944187672585647 +252230,1261.1500000159228,-0.06944188236405109 +252231,1261.155000015923,-0.06944188799519219 +252232,1261.160000015923,-0.0694418936192824 +252233,1261.1650000159232,-0.06944189923632435 +252234,1261.1700000159233,-0.06944190484632068 +252235,1261.1750000159234,-0.06944191044927404 +252236,1261.1800000159235,-0.06944191604518705 +252237,1261.1850000159236,-0.06944192163406236 +252238,1261.1900000159237,-0.06944192721590257 +252239,1261.1950000159238,-0.06944193279071034 +252240,1261.200000015924,-0.06944193835848829 +252241,1261.205000015924,-0.06944194391923905 +252242,1261.2100000159242,-0.06944194947296525 +252243,1261.2150000159243,-0.0694419550196695 +252244,1261.2200000159244,-0.06944196055935446 +252245,1261.2250000159245,-0.06944196609202273 +252246,1261.2300000159246,-0.06944197161767693 +252247,1261.2350000159247,-0.0694419771363197 +252248,1261.2400000159248,-0.06944198264795363 +252249,1261.245000015925,-0.06944198815258139 +252250,1261.250000015925,-0.06944199365020556 +252251,1261.2550000159251,-0.06944199914082878 +252252,1261.2600000159252,-0.06944200462445366 +252253,1261.2650000159254,-0.06944201010108282 +252254,1261.2700000159255,-0.06944201557071886 +252255,1261.2750000159256,-0.0694420210333644 +252256,1261.2800000159257,-0.06944202648902208 +252257,1261.2850000159258,-0.06944203193769447 +252258,1261.290000015926,-0.06944203737938422 +252259,1261.295000015926,-0.06944204281409393 +252260,1261.3000000159261,-0.06944204824182619 +252261,1261.3050000159262,-0.06944205366258362 +252262,1261.3100000159263,-0.06944205907636884 +252263,1261.3150000159264,-0.06944206448318443 +252264,1261.3200000159266,-0.06944206988303303 +252265,1261.3250000159267,-0.06944207527591723 +252266,1261.3300000159268,-0.0694420806618396 +252267,1261.3350000159269,-0.06944208604080278 +252268,1261.340000015927,-0.06944209141280937 +252269,1261.345000015927,-0.06944209677786195 +252270,1261.3500000159272,-0.06944210213596314 +252271,1261.3550000159273,-0.06944210748711552 +252272,1261.3600000159274,-0.0694421128313217 +252273,1261.3650000159275,-0.06944211816858428 +252274,1261.3700000159276,-0.06944212349890584 +252275,1261.3750000159278,-0.06944212882228899 +252276,1261.3800000159279,-0.0694421341387363 +252277,1261.385000015928,-0.0694421394482504 +252278,1261.390000015928,-0.06944214475083384 +252279,1261.3950000159282,-0.06944215004648922 +252280,1261.4000000159283,-0.06944215533521914 +252281,1261.4050000159284,-0.0694421606170262 +252282,1261.4100000159285,-0.06944216589191295 +252283,1261.4150000159286,-0.06944217115988201 +252284,1261.4200000159287,-0.06944217642093595 +252285,1261.4250000159288,-0.06944218167507735 +252286,1261.430000015929,-0.0694421869223088 +252287,1261.435000015929,-0.0694421921626329 +252288,1261.4400000159292,-0.0694421973960522 +252289,1261.4450000159293,-0.06944220262256928 +252290,1261.4500000159294,-0.06944220784218674 +252291,1261.4550000159295,-0.06944221305490716 +252292,1261.4600000159296,-0.06944221826073309 +252293,1261.4650000159297,-0.06944222345966712 +252294,1261.4700000159298,-0.06944222865171183 +252295,1261.47500001593,-0.06944223383686979 +252296,1261.48000001593,-0.06944223901514357 +252297,1261.4850000159302,-0.06944224418653575 +252298,1261.4900000159303,-0.06944224935104888 +252299,1261.4950000159304,-0.06944225450868555 +252300,1261.5000000159305,-0.06944225965944832 +252301,1261.5050000159306,-0.06944226480333977 +252302,1261.5100000159307,-0.06944226994036246 +252303,1261.5150000159308,-0.06944227507051894 +252304,1261.520000015931,-0.06944228019381178 +252305,1261.525000015931,-0.06944228531024356 +252306,1261.5300000159311,-0.06944229041981684 +252307,1261.5350000159312,-0.06944229552253417 +252308,1261.5400000159314,-0.06944230061839811 +252309,1261.5450000159315,-0.06944230570741124 +252310,1261.5500000159316,-0.0694423107895761 +252311,1261.5550000159317,-0.06944231586489526 +252312,1261.5600000159318,-0.06944232093337126 +252313,1261.565000015932,-0.06944232599500666 +252314,1261.570000015932,-0.06944233104980402 +252315,1261.5750000159321,-0.06944233609776589 +252316,1261.5800000159322,-0.06944234113889482 +252317,1261.5850000159323,-0.06944234617319338 +252318,1261.5900000159324,-0.0694423512006641 +252319,1261.5950000159326,-0.06944235622130952 +252320,1261.6000000159327,-0.06944236123513223 +252321,1261.6050000159328,-0.06944236624213473 +252322,1261.6100000159329,-0.06944237124231961 +252323,1261.615000015933,-0.0694423762356894 +252324,1261.620000015933,-0.06944238122224662 +252325,1261.6250000159332,-0.06944238620199386 +252326,1261.6300000159333,-0.06944239117493362 +252327,1261.6350000159334,-0.06944239614106845 +252328,1261.6400000159335,-0.06944240110040091 +252329,1261.6450000159336,-0.06944240605293353 +252330,1261.6500000159338,-0.06944241099866885 +252331,1261.6550000159339,-0.0694424159376094 +252332,1261.660000015934,-0.06944242086975771 +252333,1261.665000015934,-0.06944242579511634 +252334,1261.6700000159342,-0.0694424307136878 +252335,1261.6750000159343,-0.06944243562547463 +252336,1261.6800000159344,-0.06944244053047938 +252337,1261.6850000159345,-0.06944244542870456 +252338,1261.6900000159346,-0.06944245032015271 +252339,1261.6950000159347,-0.06944245520482638 +252340,1261.7000000159348,-0.06944246008272806 +252341,1261.705000015935,-0.06944246495386029 +252342,1261.710000015935,-0.06944246981822562 +252343,1261.7150000159352,-0.06944247467582655 +252344,1261.7200000159353,-0.06944247952666562 +252345,1261.7250000159354,-0.06944248437074532 +252346,1261.7300000159355,-0.06944248920806821 +252347,1261.7350000159356,-0.06944249403863681 +252348,1261.7400000159357,-0.06944249886245363 +252349,1261.7450000159358,-0.06944250367952119 +252350,1261.750000015936,-0.06944250848984201 +252351,1261.755000015936,-0.06944251329341862 +252352,1261.7600000159362,-0.06944251809025351 +252353,1261.7650000159363,-0.0694425228803492 +252354,1261.7700000159364,-0.06944252766370823 +252355,1261.7750000159365,-0.06944253244033309 +252356,1261.7800000159366,-0.06944253721022631 +252357,1261.7850000159367,-0.06944254197339039 +252358,1261.7900000159368,-0.06944254672982784 +252359,1261.795000015937,-0.06944255147954118 +252360,1261.800000015937,-0.06944255622253291 +252361,1261.8050000159371,-0.06944256095880555 +252362,1261.8100000159372,-0.06944256568836159 +252363,1261.8150000159374,-0.06944257041120354 +252364,1261.8200000159375,-0.06944257512733391 +252365,1261.8250000159376,-0.0694425798367552 +252366,1261.8300000159377,-0.06944258453946991 +252367,1261.8350000159378,-0.06944258923548056 +252368,1261.840000015938,-0.06944259392478964 +252369,1261.845000015938,-0.06944259860739967 +252370,1261.8500000159381,-0.06944260328331309 +252371,1261.8550000159382,-0.06944260795253246 +252372,1261.8600000159383,-0.06944261261506024 +252373,1261.8650000159384,-0.06944261727089894 +252374,1261.8700000159386,-0.06944262192005106 +252375,1261.8750000159387,-0.06944262656251908 +252376,1261.8800000159388,-0.0694426311983055 +252377,1261.8850000159389,-0.06944263582741284 +252378,1261.890000015939,-0.06944264044984354 +252379,1261.895000015939,-0.06944264506560012 +252380,1261.9000000159392,-0.06944264967468505 +252381,1261.9050000159393,-0.06944265427710086 +252382,1261.9100000159394,-0.06944265887284999 +252383,1261.9150000159395,-0.06944266346193495 +252384,1261.9200000159396,-0.06944266804435822 +252385,1261.9250000159398,-0.0694426726201223 +252386,1261.9300000159399,-0.06944267718922964 +252387,1261.93500001594,-0.06944268175168276 +252388,1261.94000001594,-0.06944268630748411 +252389,1261.9450000159402,-0.0694426908566362 +252390,1261.9500000159403,-0.06944269539914147 +252391,1261.9550000159404,-0.06944269993500243 +252392,1261.9600000159405,-0.06944270446422156 +252393,1261.9650000159406,-0.06944270898680133 +252394,1261.9700000159407,-0.06944271350274418 +252395,1261.9750000159409,-0.06944271801205264 +252396,1261.980000015941,-0.06944272251472916 +252397,1261.985000015941,-0.0694427270107762 +252398,1261.9900000159412,-0.06944273150019625 +252399,1261.9950000159413,-0.06944273598299176 +252400,1262.0000000159414,-0.06944274045916524 +252401,1262.0050000159415,-0.06944274492871913 +252402,1262.0100000159416,-0.06944274939165589 +252403,1262.0150000159417,-0.069442753847978 +252404,1262.0200000159418,-0.06944275829768792 +252405,1262.025000015942,-0.06944276274078813 +252406,1262.030000015942,-0.06944276717728107 +252407,1262.0350000159422,-0.06944277160716922 +252408,1262.0400000159423,-0.06944277603045504 +252409,1262.0450000159424,-0.06944278044714099 +252410,1262.0500000159425,-0.06944278485722953 +252411,1262.0550000159426,-0.06944278926072311 +252412,1262.0600000159427,-0.06944279365762421 +252413,1262.0650000159428,-0.06944279804793525 +252414,1262.070000015943,-0.06944280243165873 +252415,1262.075000015943,-0.0694428068087971 +252416,1262.0800000159431,-0.06944281117935276 +252417,1262.0850000159433,-0.06944281554332822 +252418,1262.0900000159434,-0.06944281990072593 +252419,1262.0950000159435,-0.06944282425154831 +252420,1262.1000000159436,-0.06944282859579783 +252421,1262.1050000159437,-0.06944283293347692 +252422,1262.1100000159438,-0.06944283726458807 +252423,1262.115000015944,-0.06944284158913369 +252424,1262.120000015944,-0.06944284590711625 +252425,1262.1250000159441,-0.06944285021853819 +252426,1262.1300000159442,-0.06944285452340193 +252427,1262.1350000159443,-0.06944285882170995 +252428,1262.1400000159445,-0.06944286311346468 +252429,1262.1450000159446,-0.06944286739866852 +252430,1262.1500000159447,-0.06944287167732398 +252431,1262.1550000159448,-0.06944287594943346 +252432,1262.160000015945,-0.0694428802149994 +252433,1262.165000015945,-0.06944288447402426 +252434,1262.170000015945,-0.06944288872651044 +252435,1262.1750000159452,-0.06944289297246041 +252436,1262.1800000159453,-0.0694428972118766 +252437,1262.1850000159454,-0.06944290144476144 +252438,1262.1900000159455,-0.06944290567111734 +252439,1262.1950000159457,-0.06944290989094677 +252440,1262.2000000159458,-0.06944291410425214 +252441,1262.2050000159459,-0.06944291831103588 +252442,1262.210000015946,-0.06944292251130044 +252443,1262.215000015946,-0.06944292670504823 +252444,1262.2200000159462,-0.06944293089228167 +252445,1262.2250000159463,-0.0694429350730032 +252446,1262.2300000159464,-0.06944293924721524 +252447,1262.2350000159465,-0.06944294341492022 +252448,1262.2400000159466,-0.06944294757612055 +252449,1262.2450000159467,-0.06944295173081866 +252450,1262.2500000159469,-0.069442955879017 +252451,1262.255000015947,-0.06944296002071795 +252452,1262.260000015947,-0.06944296415592395 +252453,1262.2650000159472,-0.0694429682846374 +252454,1262.2700000159473,-0.06944297240686075 +252455,1262.2750000159474,-0.06944297652259639 +252456,1262.2800000159475,-0.06944298063184674 +252457,1262.2850000159476,-0.06944298473461423 +252458,1262.2900000159477,-0.06944298883090126 +252459,1262.2950000159478,-0.06944299292071025 +252460,1262.300000015948,-0.06944299700404362 +252461,1262.305000015948,-0.06944300108090376 +252462,1262.3100000159482,-0.06944300515129309 +252463,1262.3150000159483,-0.06944300921521404 +252464,1262.3200000159484,-0.06944301327266898 +252465,1262.3250000159485,-0.06944301732366034 +252466,1262.3300000159486,-0.06944302136819053 +252467,1262.3350000159487,-0.06944302540626195 +252468,1262.3400000159488,-0.06944302943787699 +252469,1262.345000015949,-0.06944303346303808 +252470,1262.350000015949,-0.06944303748174761 +252471,1262.3550000159491,-0.06944304149400797 +252472,1262.3600000159493,-0.06944304549982158 +252473,1262.3650000159494,-0.06944304949919083 +252474,1262.3700000159495,-0.06944305349211814 +252475,1262.3750000159496,-0.06944305747860588 +252476,1262.3800000159497,-0.06944306145865646 +252477,1262.3850000159498,-0.06944306543227226 +252478,1262.39000001595,-0.0694430693994557 +252479,1262.39500001595,-0.06944307336020916 +252480,1262.4000000159501,-0.06944307731453503 +252481,1262.4050000159502,-0.06944308126243573 +252482,1262.4100000159503,-0.06944308520391361 +252483,1262.4150000159505,-0.06944308913897108 +252484,1262.4200000159506,-0.06944309306761055 +252485,1262.4250000159507,-0.06944309698983438 +252486,1262.4300000159508,-0.06944310090564497 +252487,1262.435000015951,-0.0694431048150447 +252488,1262.440000015951,-0.06944310871803597 +252489,1262.445000015951,-0.06944311261462116 +252490,1262.4500000159512,-0.06944311650480263 +252491,1262.4550000159513,-0.0694431203885828 +252492,1262.4600000159514,-0.06944312426596402 +252493,1262.4650000159515,-0.06944312813694868 +252494,1262.4700000159517,-0.06944313200153919 +252495,1262.4750000159518,-0.06944313585973788 +252496,1262.4800000159519,-0.06944313971154717 +252497,1262.485000015952,-0.0694431435569694 +252498,1262.490000015952,-0.06944314739600699 +252499,1262.4950000159522,-0.06944315122866229 +252500,1262.5000000159523,-0.06944315505493767 +252501,1262.5050000159524,-0.06944315887483553 +252502,1262.5100000159525,-0.06944316268835822 +252503,1262.5150000159526,-0.06944316649550811 +252504,1262.5200000159527,-0.06944317029628758 +252505,1262.5250000159529,-0.06944317409069899 +252506,1262.530000015953,-0.06944317787874472 +252507,1262.535000015953,-0.06944318166042714 +252508,1262.5400000159532,-0.0694431854357486 +252509,1262.5450000159533,-0.06944318920471147 +252510,1262.5500000159534,-0.06944319296731814 +252511,1262.5550000159535,-0.06944319672357097 +252512,1262.5600000159536,-0.06944320047347229 +252513,1262.5650000159537,-0.06944320421702449 +252514,1262.5700000159538,-0.06944320795422992 +252515,1262.575000015954,-0.06944321168509096 +252516,1262.580000015954,-0.06944321540960995 +252517,1262.5850000159542,-0.06944321912778925 +252518,1262.5900000159543,-0.06944322283963124 +252519,1262.5950000159544,-0.06944322654513825 +252520,1262.6000000159545,-0.06944323024431265 +252521,1262.6050000159546,-0.06944323393715678 +252522,1262.6100000159547,-0.06944323762367302 +252523,1262.6150000159548,-0.0694432413038637 +252524,1262.620000015955,-0.06944324497773119 +252525,1262.625000015955,-0.06944324864527782 +252526,1262.6300000159551,-0.06944325230650596 +252527,1262.6350000159553,-0.06944325596141795 +252528,1262.6400000159554,-0.06944325961001614 +252529,1262.6450000159555,-0.06944326325230289 +252530,1262.6500000159556,-0.06944326688828052 +252531,1262.6550000159557,-0.0694432705179514 +252532,1262.6600000159558,-0.06944327414131787 +252533,1262.665000015956,-0.06944327775838227 +252534,1262.670000015956,-0.06944328136914694 +252535,1262.6750000159561,-0.06944328497361424 +252536,1262.6800000159562,-0.0694432885717865 +252537,1262.6850000159563,-0.06944329216366604 +252538,1262.6900000159565,-0.06944329574925523 +252539,1262.6950000159566,-0.06944329932855639 +252540,1262.7000000159567,-0.06944330290157187 +252541,1262.7050000159568,-0.069443306468304 +252542,1262.710000015957,-0.06944331002875512 +252543,1262.715000015957,-0.06944331358292756 +252544,1262.720000015957,-0.06944331713082366 +252545,1262.7250000159572,-0.06944332067244574 +252546,1262.7300000159573,-0.06944332420779614 +252547,1262.7350000159574,-0.0694433277368772 +252548,1262.7400000159575,-0.06944333125969124 +252549,1262.7450000159577,-0.0694433347762406 +252550,1262.7500000159578,-0.06944333828652757 +252551,1262.7550000159579,-0.06944334179055454 +252552,1262.760000015958,-0.0694433452883238 +252553,1262.765000015958,-0.06944334877983768 +252554,1262.7700000159582,-0.0694433522650985 +252555,1262.7750000159583,-0.06944335574410859 +252556,1262.7800000159584,-0.06944335921687028 +252557,1262.7850000159585,-0.06944336268338588 +252558,1262.7900000159586,-0.06944336614365773 +252559,1262.7950000159587,-0.06944336959768813 +252560,1262.8000000159589,-0.06944337304547939 +252561,1262.805000015959,-0.06944337648703386 +252562,1262.810000015959,-0.06944337992235383 +252563,1262.8150000159592,-0.06944338335144162 +252564,1262.8200000159593,-0.06944338677429956 +252565,1262.8250000159594,-0.06944339019092997 +252566,1262.8300000159595,-0.06944339360133515 +252567,1262.8350000159596,-0.06944339700551742 +252568,1262.8400000159597,-0.06944340040347909 +252569,1262.8450000159598,-0.06944340379522247 +252570,1262.85000001596,-0.06944340718074986 +252571,1262.85500001596,-0.06944341056006359 +252572,1262.8600000159602,-0.06944341393316594 +252573,1262.8650000159603,-0.06944341730005925 +252574,1262.8700000159604,-0.0694434206607458 +252575,1262.8750000159605,-0.06944342401522792 +252576,1262.8800000159606,-0.06944342736350789 +252577,1262.8850000159607,-0.06944343070558805 +252578,1262.8900000159608,-0.06944343404147066 +252579,1262.895000015961,-0.06944343737115805 +252580,1262.900000015961,-0.0694434406946525 +252581,1262.9050000159611,-0.06944344401195633 +252582,1262.9100000159613,-0.06944344732307184 +252583,1262.9150000159614,-0.06944345062800132 +252584,1262.9200000159615,-0.06944345392674706 +252585,1262.9250000159616,-0.06944345721931136 +252586,1262.9300000159617,-0.06944346050569652 +252587,1262.9350000159618,-0.06944346378590485 +252588,1262.940000015962,-0.06944346705993863 +252589,1262.945000015962,-0.06944347032780014 +252590,1262.9500000159621,-0.0694434735894917 +252591,1262.9550000159622,-0.06944347684501559 +252592,1262.9600000159624,-0.06944348009437408 +252593,1262.9650000159625,-0.06944348333756949 +252594,1262.9700000159626,-0.0694434865746041 +252595,1262.9750000159627,-0.06944348980548018 +252596,1262.9800000159628,-0.06944349303020005 +252597,1262.985000015963,-0.06944349624876596 +252598,1262.990000015963,-0.06944349946118021 +252599,1262.9950000159631,-0.06944350266744509 +252600,1263.0000000159632,-0.06944350586756287 +252601,1263.0050000159633,-0.06944350906153586 +252602,1263.0100000159634,-0.06944351224936632 +252603,1263.0150000159636,-0.06944351543105652 +252604,1263.0200000159637,-0.06944351860660876 +252605,1263.0250000159638,-0.06944352177602531 +252606,1263.0300000159639,-0.06944352493930844 +252607,1263.035000015964,-0.06944352809646046 +252608,1263.040000015964,-0.0694435312474836 +252609,1263.0450000159642,-0.06944353439238017 +252610,1263.0500000159643,-0.06944353753115243 +252611,1263.0550000159644,-0.06944354066380265 +252612,1263.0600000159645,-0.06944354379033311 +252613,1263.0650000159646,-0.06944354691074608 +252614,1263.0700000159648,-0.06944355002504383 +252615,1263.0750000159649,-0.06944355313322863 +252616,1263.080000015965,-0.06944355623530275 +252617,1263.085000015965,-0.06944355933126846 +252618,1263.0900000159652,-0.06944356242112802 +252619,1263.0950000159653,-0.0694435655048837 +252620,1263.1000000159654,-0.06944356858253778 +252621,1263.1050000159655,-0.0694435716540925 +252622,1263.1100000159656,-0.06944357471955014 +252623,1263.1150000159657,-0.06944357777891294 +252624,1263.1200000159658,-0.06944358083218319 +252625,1263.125000015966,-0.06944358387936314 +252626,1263.130000015966,-0.06944358692045506 +252627,1263.1350000159662,-0.0694435899554612 +252628,1263.1400000159663,-0.0694435929843838 +252629,1263.1450000159664,-0.06944359600722515 +252630,1263.1500000159665,-0.06944359902398747 +252631,1263.1550000159666,-0.06944360203467305 +252632,1263.1600000159667,-0.06944360503928414 +252633,1263.1650000159668,-0.06944360803782297 +252634,1263.170000015967,-0.06944361103029183 +252635,1263.175000015967,-0.06944361401669293 +252636,1263.1800000159672,-0.06944361699702854 +252637,1263.1850000159673,-0.06944361997130093 +252638,1263.1900000159674,-0.06944362293951231 +252639,1263.1950000159675,-0.06944362590166496 +252640,1263.2000000159676,-0.06944362885776113 +252641,1263.2050000159677,-0.06944363180780304 +252642,1263.2100000159678,-0.06944363475179295 +252643,1263.215000015968,-0.06944363768973312 +252644,1263.220000015968,-0.06944364062162578 +252645,1263.2250000159681,-0.06944364354747316 +252646,1263.2300000159682,-0.06944364646727752 +252647,1263.2350000159684,-0.0694436493810411 +252648,1263.2400000159685,-0.06944365228876613 +252649,1263.2450000159686,-0.06944365519045487 +252650,1263.2500000159687,-0.06944365808610954 +252651,1263.2550000159688,-0.06944366097573239 +252652,1263.260000015969,-0.06944366385932564 +252653,1263.265000015969,-0.06944366673689155 +252654,1263.2700000159691,-0.06944366960843233 +252655,1263.2750000159692,-0.06944367247395022 +252656,1263.2800000159693,-0.06944367533344749 +252657,1263.2850000159694,-0.06944367818692632 +252658,1263.2900000159696,-0.06944368103438897 +252659,1263.2950000159697,-0.06944368387583769 +252660,1263.3000000159698,-0.06944368671127465 +252661,1263.3050000159699,-0.06944368954070214 +252662,1263.31000001597,-0.06944369236412236 +252663,1263.31500001597,-0.06944369518153753 +252664,1263.3200000159702,-0.06944369799294992 +252665,1263.3250000159703,-0.0694437007983617 +252666,1263.3300000159704,-0.06944370359777512 +252667,1263.3350000159705,-0.06944370639119239 +252668,1263.3400000159706,-0.06944370917861577 +252669,1263.3450000159708,-0.06944371196004744 +252670,1263.3500000159709,-0.06944371473548965 +252671,1263.355000015971,-0.06944371750494462 +252672,1263.360000015971,-0.06944372026841455 +252673,1263.3650000159712,-0.06944372302590168 +252674,1263.3700000159713,-0.0694437257774082 +252675,1263.3750000159714,-0.06944372852293636 +252676,1263.3800000159715,-0.06944373126248835 +252677,1263.3850000159716,-0.06944373399606639 +252678,1263.3900000159717,-0.0694437367236727 +252679,1263.3950000159718,-0.06944373944530949 +252680,1263.400000015972,-0.06944374216097898 +252681,1263.405000015972,-0.06944374487068339 +252682,1263.4100000159722,-0.06944374757442491 +252683,1263.4150000159723,-0.06944375027220574 +252684,1263.4200000159724,-0.06944375296402813 +252685,1263.4250000159725,-0.06944375564989427 +252686,1263.4300000159726,-0.06944375832980636 +252687,1263.4350000159727,-0.06944376100376659 +252688,1263.4400000159728,-0.06944376367177721 +252689,1263.445000015973,-0.06944376633384039 +252690,1263.450000015973,-0.06944376898995834 +252691,1263.4550000159732,-0.06944377164013328 +252692,1263.4600000159733,-0.06944377428436739 +252693,1263.4650000159734,-0.06944377692266289 +252694,1263.4700000159735,-0.06944377955502198 +252695,1263.4750000159736,-0.06944378218144684 +252696,1263.4800000159737,-0.06944378480193968 +252697,1263.4850000159738,-0.06944378741650269 +252698,1263.490000015974,-0.06944379002513809 +252699,1263.495000015974,-0.06944379262784806 +252700,1263.5000000159741,-0.06944379522463479 +252701,1263.5050000159742,-0.06944379781550047 +252702,1263.5100000159744,-0.06944380040044733 +252703,1263.5150000159745,-0.06944380297947753 +252704,1263.5200000159746,-0.06944380555259326 +252705,1263.5250000159747,-0.06944380811979672 +252706,1263.5300000159748,-0.06944381068109012 +252707,1263.535000015975,-0.06944381323647564 +252708,1263.540000015975,-0.06944381578595543 +252709,1263.5450000159751,-0.06944381832953173 +252710,1263.5500000159752,-0.06944382086720668 +252711,1263.5550000159753,-0.0694438233989825 +252712,1263.5600000159754,-0.06944382592486137 +252713,1263.5650000159756,-0.06944382844484547 +252714,1263.5700000159757,-0.06944383095893697 +252715,1263.5750000159758,-0.06944383346713807 +252716,1263.5800000159759,-0.06944383596945096 +252717,1263.585000015976,-0.06944383846587779 +252718,1263.590000015976,-0.06944384095642075 +252719,1263.5950000159762,-0.06944384344108205 +252720,1263.6000000159763,-0.06944384591986383 +252721,1263.6050000159764,-0.06944384839276829 +252722,1263.6100000159765,-0.0694438508597976 +252723,1263.6150000159766,-0.06944385332095392 +252724,1263.6200000159768,-0.06944385577623945 +252725,1263.6250000159769,-0.06944385822565634 +252726,1263.630000015977,-0.06944386066920678 +252727,1263.635000015977,-0.06944386310689295 +252728,1263.6400000159772,-0.06944386553871701 +252729,1263.6450000159773,-0.06944386796468112 +252730,1263.6500000159774,-0.06944387038478746 +252731,1263.6550000159775,-0.0694438727990382 +252732,1263.6600000159776,-0.06944387520743552 +252733,1263.6650000159777,-0.06944387760998154 +252734,1263.6700000159778,-0.06944388000667849 +252735,1263.675000015978,-0.06944388239752848 +252736,1263.680000015978,-0.06944388478253372 +252737,1263.6850000159782,-0.06944388716169635 +252738,1263.6900000159783,-0.06944388953501851 +252739,1263.6950000159784,-0.06944389190250241 +252740,1263.7000000159785,-0.0694438942641502 +252741,1263.7050000159786,-0.06944389661996402 +252742,1263.7100000159787,-0.06944389896994602 +252743,1263.7150000159788,-0.0694439013140984 +252744,1263.720000015979,-0.06944390365242328 +252745,1263.725000015979,-0.06944390598492285 +252746,1263.7300000159792,-0.06944390831159925 +252747,1263.7350000159793,-0.06944391063245461 +252748,1263.7400000159794,-0.06944391294749112 +252749,1263.7450000159795,-0.06944391525671094 +252750,1263.7500000159796,-0.0694439175601162 +252751,1263.7550000159797,-0.06944391985770904 +252752,1263.7600000159798,-0.06944392214949163 +252753,1263.76500001598,-0.06944392443546611 +252754,1263.77000001598,-0.06944392671563467 +252755,1263.7750000159801,-0.06944392898999939 +252756,1263.7800000159802,-0.06944393125856248 +252757,1263.7850000159804,-0.06944393352132605 +252758,1263.7900000159805,-0.06944393577829225 +252759,1263.7950000159806,-0.06944393802946323 +252760,1263.8000000159807,-0.06944394027484115 +252761,1263.8050000159808,-0.06944394251442812 +252762,1263.810000015981,-0.06944394474822631 +252763,1263.815000015981,-0.06944394697623785 +252764,1263.8200000159811,-0.06944394919846487 +252765,1263.8250000159812,-0.06944395141490955 +252766,1263.8300000159813,-0.069443953625574 +252767,1263.8350000159814,-0.06944395583046035 +252768,1263.8400000159816,-0.06944395802957075 +252769,1263.8450000159817,-0.06944396022290733 +252770,1263.8500000159818,-0.06944396241047225 +252771,1263.855000015982,-0.06944396459226762 +252772,1263.860000015982,-0.06944396676829559 +252773,1263.865000015982,-0.06944396893855825 +252774,1263.8700000159822,-0.06944397110305779 +252775,1263.8750000159823,-0.06944397326179631 +252776,1263.8800000159824,-0.06944397541477597 +252777,1263.8850000159825,-0.06944397756199887 +252778,1263.8900000159827,-0.06944397970346713 +252779,1263.8950000159828,-0.06944398183918292 +252780,1263.9000000159829,-0.06944398396914835 +252781,1263.905000015983,-0.06944398609336552 +252782,1263.910000015983,-0.06944398821183659 +252783,1263.9150000159832,-0.06944399032456366 +252784,1263.9200000159833,-0.06944399243154886 +252785,1263.9250000159834,-0.06944399453279433 +252786,1263.9300000159835,-0.06944399662830218 +252787,1263.9350000159836,-0.06944399871807455 +252788,1263.9400000159837,-0.06944400080211353 +252789,1263.9450000159839,-0.06944400288042127 +252790,1263.950000015984,-0.06944400495299986 +252791,1263.955000015984,-0.06944400701985144 +252792,1263.9600000159842,-0.06944400908097813 +252793,1263.9650000159843,-0.069444011136382 +252794,1263.9700000159844,-0.06944401318606522 +252795,1263.9750000159845,-0.0694440152300299 +252796,1263.9800000159846,-0.06944401726827812 +252797,1263.9850000159847,-0.06944401930081202 +252798,1263.9900000159848,-0.0694440213276337 +252799,1263.995000015985,-0.0694440233487453 +252800,1264.000000015985,-0.0694440253641489 +252801,1264.0050000159852,-0.06944402737384663 +252802,1264.0100000159853,-0.06944402937784058 +252803,1264.0150000159854,-0.06944403137613286 +252804,1264.0200000159855,-0.0694440333687256 +252805,1264.0250000159856,-0.06944403535562088 +252806,1264.0300000159857,-0.06944403733682084 +252807,1264.0350000159858,-0.06944403931232754 +252808,1264.040000015986,-0.0694440412821431 +252809,1264.045000015986,-0.06944404324626964 +252810,1264.0500000159861,-0.06944404520470926 +252811,1264.0550000159863,-0.06944404715746404 +252812,1264.0600000159864,-0.06944404910453611 +252813,1264.0650000159865,-0.06944405104592755 +252814,1264.0700000159866,-0.06944405298164047 +252815,1264.0750000159867,-0.06944405491167696 +252816,1264.0800000159868,-0.06944405683603913 +252817,1264.085000015987,-0.06944405875472906 +252818,1264.090000015987,-0.06944406066774886 +252819,1264.0950000159871,-0.06944406257510062 +252820,1264.1000000159872,-0.06944406447678643 +252821,1264.1050000159873,-0.06944406637280838 +252822,1264.1100000159875,-0.06944406826316858 +252823,1264.1150000159876,-0.06944407014786912 +252824,1264.1200000159877,-0.06944407202691207 +252825,1264.1250000159878,-0.06944407390029952 +252826,1264.130000015988,-0.0694440757680336 +252827,1264.135000015988,-0.06944407763011637 +252828,1264.140000015988,-0.06944407948654992 +252829,1264.1450000159882,-0.06944408133733632 +252830,1264.1500000159883,-0.06944408318247768 +252831,1264.1550000159884,-0.06944408502197606 +252832,1264.1600000159885,-0.06944408685583359 +252833,1264.1650000159887,-0.06944408868405232 +252834,1264.1700000159888,-0.06944409050663435 +252835,1264.1750000159889,-0.06944409232358173 +252836,1264.180000015989,-0.06944409413489656 +252837,1264.185000015989,-0.06944409594058094 +252838,1264.1900000159892,-0.06944409774063692 +252839,1264.1950000159893,-0.0694440995350666 +252840,1264.2000000159894,-0.06944410132387205 +252841,1264.2050000159895,-0.06944410310705534 +252842,1264.2100000159896,-0.06944410488461855 +252843,1264.2150000159897,-0.06944410665656377 +252844,1264.2200000159899,-0.06944410842289306 +252845,1264.22500001599,-0.06944411018360849 +252846,1264.23000001599,-0.06944411193871214 +252847,1264.2350000159902,-0.06944411368820609 +252848,1264.2400000159903,-0.0694441154320924 +252849,1264.2450000159904,-0.06944411717037315 +252850,1264.2500000159905,-0.0694441189030504 +252851,1264.2550000159906,-0.06944412063012623 +252852,1264.2600000159907,-0.06944412235160269 +252853,1264.2650000159908,-0.06944412406748186 +252854,1264.270000015991,-0.06944412577776582 +252855,1264.275000015991,-0.06944412748245661 +252856,1264.2800000159912,-0.0694441291815563 +252857,1264.2850000159913,-0.06944413087506697 +252858,1264.2900000159914,-0.06944413256299067 +252859,1264.2950000159915,-0.06944413424532948 +252860,1264.3000000159916,-0.06944413592208544 +252861,1264.3050000159917,-0.06944413759326062 +252862,1264.3100000159918,-0.06944413925885708 +252863,1264.315000015992,-0.06944414091887686 +252864,1264.320000015992,-0.06944414257332207 +252865,1264.3250000159921,-0.06944414422219472 +252866,1264.3300000159923,-0.06944414586549688 +252867,1264.3350000159924,-0.06944414750323061 +252868,1264.3400000159925,-0.06944414913539797 +252869,1264.3450000159926,-0.069444150762001 +252870,1264.3500000159927,-0.06944415238304177 +252871,1264.3550000159928,-0.06944415399852231 +252872,1264.360000015993,-0.06944415560844469 +252873,1264.365000015993,-0.06944415721281097 +252874,1264.3700000159931,-0.06944415881162316 +252875,1264.3750000159932,-0.06944416040488337 +252876,1264.3800000159933,-0.0694441619925936 +252877,1264.3850000159935,-0.06944416357475593 +252878,1264.3900000159936,-0.06944416515137238 +252879,1264.3950000159937,-0.06944416672244501 +252880,1264.4000000159938,-0.06944416828797585 +252881,1264.405000015994,-0.06944416984796697 +252882,1264.410000015994,-0.06944417140242042 +252883,1264.415000015994,-0.0694441729513382 +252884,1264.4200000159942,-0.06944417449472239 +252885,1264.4250000159943,-0.06944417603257504 +252886,1264.4300000159944,-0.06944417756489814 +252887,1264.4350000159945,-0.06944417909169379 +252888,1264.4400000159947,-0.06944418061296398 +252889,1264.4450000159948,-0.06944418212871079 +252890,1264.4500000159949,-0.06944418363893622 +252891,1264.455000015995,-0.06944418514364231 +252892,1264.460000015995,-0.06944418664283113 +252893,1264.4650000159952,-0.0694441881365047 +252894,1264.4700000159953,-0.06944418962466503 +252895,1264.4750000159954,-0.06944419110731419 +252896,1264.4800000159955,-0.06944419258445417 +252897,1264.4850000159956,-0.06944419405608704 +252898,1264.4900000159957,-0.06944419552221483 +252899,1264.4950000159959,-0.06944419698283955 +252900,1264.500000015996,-0.06944419843796323 +252901,1264.505000015996,-0.06944419988758793 +252902,1264.5100000159962,-0.06944420133171565 +252903,1264.5150000159963,-0.0694442027703484 +252904,1264.5200000159964,-0.06944420420348825 +252905,1264.5250000159965,-0.0694442056311372 +252906,1264.5300000159966,-0.06944420705329729 +252907,1264.5350000159967,-0.06944420846997051 +252908,1264.5400000159968,-0.06944420988115894 +252909,1264.545000015997,-0.06944421128686457 +252910,1264.550000015997,-0.06944421268708939 +252911,1264.5550000159972,-0.06944421408183547 +252912,1264.5600000159973,-0.06944421547110481 +252913,1264.5650000159974,-0.06944421685489943 +252914,1264.5700000159975,-0.06944421823322136 +252915,1264.5750000159976,-0.06944421960607261 +252916,1264.5800000159977,-0.06944422097345519 +252917,1264.5850000159978,-0.0694442223353711 +252918,1264.590000015998,-0.0694442236918224 +252919,1264.595000015998,-0.06944422504281107 +252920,1264.6000000159981,-0.06944422638833915 +252921,1264.6050000159983,-0.06944422772840862 +252922,1264.6100000159984,-0.06944422906302153 +252923,1264.6150000159985,-0.06944423039217985 +252924,1264.6200000159986,-0.06944423171588562 +252925,1264.6250000159987,-0.06944423303414084 +252926,1264.6300000159988,-0.06944423434694752 +252927,1264.635000015999,-0.06944423565430767 +252928,1264.640000015999,-0.0694442369562233 +252929,1264.6450000159991,-0.06944423825269642 +252930,1264.6500000159992,-0.06944423954372902 +252931,1264.6550000159993,-0.06944424082932313 +252932,1264.6600000159995,-0.06944424210948072 +252933,1264.6650000159996,-0.06944424338420381 +252934,1264.6700000159997,-0.06944424465349443 +252935,1264.6750000159998,-0.06944424591735454 +252936,1264.680000016,-0.06944424717578616 +252937,1264.685000016,-0.06944424842879128 +252938,1264.690000016,-0.06944424967637193 +252939,1264.6950000160002,-0.06944425091853006 +252940,1264.7000000160003,-0.06944425215526771 +252941,1264.7050000160004,-0.06944425338658686 +252942,1264.7100000160005,-0.0694442546124895 +252943,1264.7150000160007,-0.06944425583297764 +252944,1264.7200000160008,-0.06944425704805328 +252945,1264.7250000160009,-0.06944425825771838 +252946,1264.730000016001,-0.06944425946197498 +252947,1264.735000016001,-0.06944426066082504 +252948,1264.7400000160012,-0.06944426185427056 +252949,1264.7450000160013,-0.06944426304231353 +252950,1264.7500000160014,-0.06944426422495596 +252951,1264.7550000160015,-0.0694442654021998 +252952,1264.7600000160016,-0.06944426657404708 +252953,1264.7650000160017,-0.06944426774049975 +252954,1264.7700000160019,-0.06944426890155983 +252955,1264.775000016002,-0.06944427005722928 +252956,1264.780000016002,-0.0694442712075101 +252957,1264.7850000160022,-0.06944427235240427 +252958,1264.7900000160023,-0.06944427349191377 +252959,1264.7950000160024,-0.06944427462604061 +252960,1264.8000000160025,-0.06944427575478675 +252961,1264.8050000160026,-0.06944427687815416 +252962,1264.8100000160027,-0.06944427799614483 +252963,1264.8150000160028,-0.06944427910876075 +252964,1264.820000016003,-0.0694442802160039 +252965,1264.825000016003,-0.06944428131787625 +252966,1264.8300000160032,-0.06944428241437978 +252967,1264.8350000160033,-0.06944428350551646 +252968,1264.8400000160034,-0.06944428459128826 +252969,1264.8450000160035,-0.06944428567169719 +252970,1264.8500000160036,-0.06944428674674519 +252971,1264.8550000160037,-0.06944428781643426 +252972,1264.8600000160038,-0.06944428888076636 +252973,1264.865000016004,-0.06944428993974344 +252974,1264.870000016004,-0.06944429099336752 +252975,1264.8750000160042,-0.06944429204164054 +252976,1264.8800000160043,-0.06944429308456447 +252977,1264.8850000160044,-0.06944429412214127 +252978,1264.8900000160045,-0.06944429515437293 +252979,1264.8950000160046,-0.06944429618126143 +252980,1264.9000000160047,-0.0694442972028087 +252981,1264.9050000160048,-0.06944429821901674 +252982,1264.910000016005,-0.06944429922988749 +252983,1264.915000016005,-0.0694443002354229 +252984,1264.9200000160051,-0.06944430123562498 +252985,1264.9250000160052,-0.06944430223049566 +252986,1264.9300000160054,-0.06944430322003692 +252987,1264.9350000160055,-0.0694443042042507 +252988,1264.9400000160056,-0.06944430518313897 +252989,1264.9450000160057,-0.06944430615670372 +252990,1264.9500000160058,-0.06944430712494687 +252991,1264.955000016006,-0.0694443080878704 +252992,1264.960000016006,-0.06944430904547624 +252993,1264.9650000160061,-0.06944430999776638 +252994,1264.9700000160062,-0.06944431094474277 +252995,1264.9750000160063,-0.06944431188640734 +252996,1264.9800000160064,-0.06944431282276209 +252997,1264.9850000160066,-0.06944431375380893 +252998,1264.9900000160067,-0.06944431467954983 +252999,1264.9950000160068,-0.06944431559998673 +253000,1265.0000000160069,-0.06944431651512162 +253001,1265.005000016007,-0.06944431742495641 +253002,1265.010000016007,-0.06944431832949306 +253003,1265.0150000160072,-0.06944431922873352 +253004,1265.0200000160073,-0.06944432012267976 +253005,1265.0250000160074,-0.0694443210113337 +253006,1265.0300000160075,-0.06944432189469729 +253007,1265.0350000160076,-0.0694443227727725 +253008,1265.0400000160078,-0.06944432364556125 +253009,1265.0450000160079,-0.06944432451306548 +253010,1265.050000016008,-0.06944432537528716 +253011,1265.055000016008,-0.06944432623222822 +253012,1265.0600000160082,-0.0694443270838906 +253013,1265.0650000160083,-0.06944432793027625 +253014,1265.0700000160084,-0.06944432877138709 +253015,1265.0750000160085,-0.06944432960722509 +253016,1265.0800000160086,-0.06944433043779216 +253017,1265.0850000160087,-0.06944433126309027 +253018,1265.0900000160088,-0.06944433208312133 +253019,1265.095000016009,-0.06944433289788728 +253020,1265.100000016009,-0.06944433370739007 +253021,1265.1050000160092,-0.06944433451163164 +253022,1265.1100000160093,-0.0694443353106139 +253023,1265.1150000160094,-0.06944433610433882 +253024,1265.1200000160095,-0.0694443368928083 +253025,1265.1250000160096,-0.06944433767602427 +253026,1265.1300000160097,-0.06944433845398869 +253027,1265.1350000160098,-0.06944433922670348 +253028,1265.14000001601,-0.06944433999417055 +253029,1265.14500001601,-0.06944434075639186 +253030,1265.1500000160102,-0.06944434151336931 +253031,1265.1550000160103,-0.06944434226510485 +253032,1265.1600000160104,-0.0694443430116004 +253033,1265.1650000160105,-0.0694443437528579 +253034,1265.1700000160106,-0.06944434448887925 +253035,1265.1750000160107,-0.06944434521966639 +253036,1265.1800000160108,-0.06944434594522124 +253037,1265.185000016011,-0.06944434666554573 +253038,1265.190000016011,-0.06944434738064179 +253039,1265.1950000160111,-0.06944434809051131 +253040,1265.2000000160112,-0.06944434879515624 +253041,1265.2050000160114,-0.06944434949457848 +253042,1265.2100000160115,-0.06944435018877997 +253043,1265.2150000160116,-0.0694443508777626 +253044,1265.2200000160117,-0.06944435156152833 +253045,1265.2250000160118,-0.06944435224007904 +253046,1265.230000016012,-0.06944435291341666 +253047,1265.235000016012,-0.06944435358154313 +253048,1265.2400000160121,-0.06944435424446033 +253049,1265.2450000160122,-0.06944435490217017 +253050,1265.2500000160123,-0.0694443555546746 +253051,1265.2550000160124,-0.0694443562019755 +253052,1265.2600000160126,-0.06944435684407482 +253053,1265.2650000160127,-0.06944435748097444 +253054,1265.2700000160128,-0.06944435811267625 +253055,1265.2750000160129,-0.06944435873918221 +253056,1265.280000016013,-0.0694443593604942 +253057,1265.285000016013,-0.06944435997661413 +253058,1265.2900000160132,-0.06944436058754393 +253059,1265.2950000160133,-0.06944436119328548 +253060,1265.3000000160134,-0.06944436179384068 +253061,1265.3050000160135,-0.06944436238921148 +253062,1265.3100000160136,-0.06944436297939974 +253063,1265.3150000160138,-0.06944436356440738 +253064,1265.3200000160139,-0.0694443641442363 +253065,1265.325000016014,-0.06944436471888842 +253066,1265.330000016014,-0.0694443652883656 +253067,1265.3350000160142,-0.06944436585266979 +253068,1265.3400000160143,-0.06944436641180286 +253069,1265.3450000160144,-0.06944436696576672 +253070,1265.3500000160145,-0.06944436751456327 +253071,1265.3550000160146,-0.0694443680581944 +253072,1265.3600000160147,-0.069444368596662 +253073,1265.3650000160148,-0.06944436912996799 +253074,1265.370000016015,-0.06944436965811424 +253075,1265.375000016015,-0.06944437018110267 +253076,1265.3800000160152,-0.06944437069893517 +253077,1265.3850000160153,-0.0694443712116136 +253078,1265.3900000160154,-0.06944437171913989 +253079,1265.3950000160155,-0.06944437222151593 +253080,1265.4000000160156,-0.0694443727187436 +253081,1265.4050000160157,-0.06944437321082478 +253082,1265.4100000160158,-0.06944437369776138 +253083,1265.415000016016,-0.06944437417955529 +253084,1265.420000016016,-0.06944437465620837 +253085,1265.4250000160162,-0.06944437512772254 +253086,1265.4300000160163,-0.06944437559409967 +253087,1265.4350000160164,-0.06944437605534165 +253088,1265.4400000160165,-0.06944437651145036 +253089,1265.4450000160166,-0.06944437696242768 +253090,1265.4500000160167,-0.06944437740827551 +253091,1265.4550000160168,-0.06944437784899574 +253092,1265.460000016017,-0.06944437828459021 +253093,1265.465000016017,-0.06944437871506084 +253094,1265.4700000160171,-0.06944437914040953 +253095,1265.4750000160172,-0.06944437956063809 +253096,1265.4800000160174,-0.06944437997574847 +253097,1265.4850000160175,-0.06944438038574251 +253098,1265.4900000160176,-0.0694443807906221 +253099,1265.4950000160177,-0.06944438119038909 +253100,1265.5000000160178,-0.0694443815850454 +253101,1265.505000016018,-0.06944438197459289 +253102,1265.510000016018,-0.06944438235903343 +253103,1265.5150000160181,-0.06944438273836889 +253104,1265.5200000160182,-0.06944438311260115 +253105,1265.5250000160183,-0.06944438348173208 +253106,1265.5300000160184,-0.06944438384576355 +253107,1265.5350000160186,-0.06944438420469744 +253108,1265.5400000160187,-0.06944438455853562 +253109,1265.5450000160188,-0.06944438490727996 +253110,1265.5500000160189,-0.06944438525093231 +253111,1265.555000016019,-0.06944438558949456 +253112,1265.560000016019,-0.06944438592296856 +253113,1265.5650000160192,-0.06944438625135621 +253114,1265.5700000160193,-0.06944438657465933 +253115,1265.5750000160194,-0.06944438689287982 +253116,1265.5800000160195,-0.06944438720601954 +253117,1265.5850000160196,-0.06944438751408034 +253118,1265.5900000160198,-0.0694443878170641 +253119,1265.5950000160199,-0.06944438811497267 +253120,1265.60000001602,-0.06944438840780791 +253121,1265.60500001602,-0.0694443886955717 +253122,1265.6100000160202,-0.06944438897826587 +253123,1265.6150000160203,-0.06944438925589229 +253124,1265.6200000160204,-0.06944438952845283 +253125,1265.6250000160205,-0.06944438979594934 +253126,1265.6300000160206,-0.06944439005838371 +253127,1265.6350000160207,-0.06944439031575775 +253128,1265.6400000160208,-0.06944439056807332 +253129,1265.645000016021,-0.0694443908153323 +253130,1265.650000016021,-0.06944439105753653 +253131,1265.6550000160212,-0.06944439129468787 +253132,1265.6600000160213,-0.06944439152678815 +253133,1265.6650000160214,-0.06944439175383926 +253134,1265.6700000160215,-0.06944439197584304 +253135,1265.6750000160216,-0.06944439219280132 +253136,1265.6800000160217,-0.06944439240471598 +253137,1265.6850000160218,-0.06944439261158884 +253138,1265.690000016022,-0.06944439281342175 +253139,1265.695000016022,-0.06944439301021658 +253140,1265.7000000160222,-0.06944439320197518 +253141,1265.7050000160223,-0.06944439338869937 +253142,1265.7100000160224,-0.06944439357039102 +253143,1265.7150000160225,-0.06944439374705197 +253144,1265.7200000160226,-0.06944439391868404 +253145,1265.7250000160227,-0.0694443940852891 +253146,1265.7300000160228,-0.06944439424686899 +253147,1265.735000016023,-0.06944439440342555 +253148,1265.740000016023,-0.06944439455496061 +253149,1265.7450000160231,-0.06944439470147604 +253150,1265.7500000160233,-0.06944439484297364 +253151,1265.7550000160234,-0.06944439497945527 +253152,1265.7600000160235,-0.06944439511092278 +253153,1265.7650000160236,-0.06944439523737797 +253154,1265.7700000160237,-0.06944439535882273 +253155,1265.7750000160238,-0.06944439547525887 +253156,1265.780000016024,-0.0694443955866882 +253157,1265.785000016024,-0.0694443956931126 +253158,1265.7900000160241,-0.06944439579453388 +253159,1265.7950000160242,-0.06944439589095387 +253160,1265.8000000160243,-0.06944439598237442 +253161,1265.8050000160245,-0.06944439606879735 +253162,1265.8100000160246,-0.06944439615022449 +253163,1265.8150000160247,-0.06944439622665767 +253164,1265.8200000160248,-0.06944439629809875 +253165,1265.825000016025,-0.06944439636454951 +253166,1265.830000016025,-0.06944439642601179 +253167,1265.835000016025,-0.06944439648248744 +253168,1265.8400000160252,-0.0694443965339783 +253169,1265.8450000160253,-0.06944439658048614 +253170,1265.8500000160254,-0.06944439662201284 +253171,1265.8550000160255,-0.06944439665856018 +253172,1265.8600000160257,-0.06944439669013003 +253173,1265.8650000160258,-0.06944439671672417 +253174,1265.8700000160259,-0.06944439673834445 +253175,1265.875000016026,-0.0694443967549927 +253176,1265.880000016026,-0.0694443967666707 +253177,1265.8850000160262,-0.06944439677338032 +253178,1265.8900000160263,-0.06944439677512336 +253179,1265.8950000160264,-0.06944439677190162 +253180,1265.9000000160265,-0.06944439676371694 +253181,1265.9050000160266,-0.06944439675057112 +253182,1265.9100000160267,-0.06944439673246602 +253183,1265.9150000160269,-0.0694443967094034 +253184,1265.920000016027,-0.06944439668138512 +253185,1265.925000016027,-0.06944439664841297 +253186,1265.9300000160272,-0.06944439661048876 +253187,1265.9350000160273,-0.06944439656761434 +253188,1265.9400000160274,-0.06944439651979147 +253189,1265.9450000160275,-0.06944439646702201 +253190,1265.9500000160276,-0.06944439640930773 +253191,1265.9550000160277,-0.06944439634665046 +253192,1265.9600000160278,-0.06944439627905204 +253193,1265.965000016028,-0.06944439620651421 +253194,1265.970000016028,-0.06944439612903884 +253195,1265.9750000160282,-0.06944439604662772 +253196,1265.9800000160283,-0.06944439595928265 +253197,1265.9850000160284,-0.06944439586700543 +253198,1265.9900000160285,-0.06944439576979788 +253199,1265.9950000160286,-0.0694443956676618 +253200,1266.0000000160287,-0.069444395560599 +253201,1266.0050000160288,-0.06944439544861128 +253202,1266.010000016029,-0.06944439533170044 +253203,1266.015000016029,-0.06944439520986828 +253204,1266.0200000160291,-0.0694443950831166 +253205,1266.0250000160293,-0.0694443949514472 +253206,1266.0300000160294,-0.06944439481486189 +253207,1266.0350000160295,-0.06944439467336247 +253208,1266.0400000160296,-0.06944439452695073 +253209,1266.0450000160297,-0.06944439437562848 +253210,1266.0500000160298,-0.06944439421939749 +253211,1266.05500001603,-0.0694443940582596 +253212,1266.06000001603,-0.06944439389221656 +253213,1266.0650000160301,-0.06944439372127018 +253214,1266.0700000160302,-0.06944439354542226 +253215,1266.0750000160303,-0.0694443933646746 +253216,1266.0800000160305,-0.06944439317902898 +253217,1266.0850000160306,-0.0694443929884872 +253218,1266.0900000160307,-0.06944439279305105 +253219,1266.0950000160308,-0.06944439259272232 +253220,1266.100000016031,-0.0694443923875028 +253221,1266.105000016031,-0.06944439217739429 +253222,1266.110000016031,-0.06944439196239857 +253223,1266.1150000160312,-0.06944439174251743 +253224,1266.1200000160313,-0.06944439151775264 +253225,1266.1250000160314,-0.069444391288106 +253226,1266.1300000160315,-0.06944439105357932 +253227,1266.1350000160317,-0.06944439081417433 +253228,1266.1400000160318,-0.06944439056989286 +253229,1266.1450000160319,-0.06944439032073667 +253230,1266.150000016032,-0.06944439006670756 +253231,1266.155000016032,-0.06944438980780732 +253232,1266.1600000160322,-0.06944438954403769 +253233,1266.1650000160323,-0.0694443892754005 +253234,1266.1700000160324,-0.0694443890018975 +253235,1266.1750000160325,-0.06944438872353048 +253236,1266.1800000160326,-0.06944438844030122 +253237,1266.1850000160327,-0.0694443881522115 +253238,1266.1900000160329,-0.06944438785926309 +253239,1266.195000016033,-0.06944438756145777 +253240,1266.200000016033,-0.06944438725879731 +253241,1266.2050000160332,-0.0694443869512835 +253242,1266.2100000160333,-0.0694443866389181 +253243,1266.2150000160334,-0.06944438632170288 +253244,1266.2200000160335,-0.06944438599963963 +253245,1266.2250000160336,-0.06944438567273012 +253246,1266.2300000160337,-0.06944438534097612 +253247,1266.2350000160338,-0.06944438500437938 +253248,1266.240000016034,-0.06944438466294171 +253249,1266.245000016034,-0.06944438431666487 +253250,1266.2500000160342,-0.0694443839655506 +253251,1266.2550000160343,-0.06944438360960069 +253252,1266.2600000160344,-0.06944438324881691 +253253,1266.2650000160345,-0.06944438288320101 +253254,1266.2700000160346,-0.06944438251275478 +253255,1266.2750000160347,-0.06944438213747998 +253256,1266.2800000160348,-0.06944438175737835 +253257,1266.285000016035,-0.0694443813724517 +253258,1266.290000016035,-0.06944438098270174 +253259,1266.2950000160351,-0.06944438058813028 +253260,1266.3000000160353,-0.06944438018873905 +253261,1266.3050000160354,-0.06944437978452983 +253262,1266.3100000160355,-0.06944437937550436 +253263,1266.3150000160356,-0.06944437896166444 +253264,1266.3200000160357,-0.06944437854301179 +253265,1266.3250000160358,-0.06944437811954819 +253266,1266.330000016036,-0.0694443776912754 +253267,1266.335000016036,-0.06944437725819515 +253268,1266.3400000160361,-0.06944437682030921 +253269,1266.3450000160362,-0.06944437637761937 +253270,1266.3500000160363,-0.06944437593012734 +253271,1266.3550000160365,-0.0694443754778349 +253272,1266.3600000160366,-0.06944437502074378 +253273,1266.3650000160367,-0.06944437455885576 +253274,1266.3700000160368,-0.06944437409217258 +253275,1266.375000016037,-0.069444373620696 +253276,1266.380000016037,-0.06944437314442777 +253277,1266.385000016037,-0.06944437266336961 +253278,1266.3900000160372,-0.0694443721775233 +253279,1266.3950000160373,-0.06944437168689059 +253280,1266.4000000160374,-0.06944437119147323 +253281,1266.4050000160375,-0.06944437069127295 +253282,1266.4100000160377,-0.06944437018629152 +253283,1266.4150000160378,-0.06944436967653066 +253284,1266.4200000160379,-0.06944436916199213 +253285,1266.425000016038,-0.06944436864267768 +253286,1266.430000016038,-0.06944436811858905 +253287,1266.4350000160382,-0.06944436758972798 +253288,1266.4400000160383,-0.06944436705609622 +253289,1266.4450000160384,-0.06944436651769549 +253290,1266.4500000160385,-0.06944436597452756 +253291,1266.4550000160386,-0.06944436542659416 +253292,1266.4600000160387,-0.06944436487389703 +253293,1266.4650000160389,-0.06944436431643791 +253294,1266.470000016039,-0.06944436375421854 +253295,1266.475000016039,-0.06944436318724066 +253296,1266.4800000160392,-0.069444362615506 +253297,1266.4850000160393,-0.0694443620390163 +253298,1266.4900000160394,-0.0694443614577733 +253299,1266.4950000160395,-0.06944436087177873 +253300,1266.5000000160396,-0.06944436028103433 +253301,1266.5050000160397,-0.06944435968554184 +253302,1266.5100000160398,-0.06944435908530298 +253303,1266.51500001604,-0.06944435848031948 +253304,1266.52000001604,-0.0694443578705931 +253305,1266.5250000160402,-0.06944435725612554 +253306,1266.5300000160403,-0.06944435663691853 +253307,1266.5350000160404,-0.06944435601297383 +253308,1266.5400000160405,-0.06944435538429315 +253309,1266.5450000160406,-0.06944435475087822 +253310,1266.5500000160407,-0.06944435411273077 +253311,1266.5550000160408,-0.06944435346985252 +253312,1266.560000016041,-0.06944435282224519 +253313,1266.565000016041,-0.06944435216991053 +253314,1266.5700000160411,-0.06944435151285026 +253315,1266.5750000160413,-0.0694443508510661 +253316,1266.5800000160414,-0.06944435018455976 +253317,1266.5850000160415,-0.06944434951333298 +253318,1266.5900000160416,-0.06944434883738748 +253319,1266.5950000160417,-0.06944434815672498 +253320,1266.6000000160418,-0.0694443474713472 +253321,1266.605000016042,-0.06944434678125586 +253322,1266.610000016042,-0.06944434608645268 +253323,1266.6150000160421,-0.06944434538693939 +253324,1266.6200000160422,-0.06944434468271769 +253325,1266.6250000160423,-0.06944434397378932 +253326,1266.6300000160425,-0.06944434326015597 +253327,1266.6350000160426,-0.06944434254181939 +253328,1266.6400000160427,-0.06944434181878126 +253329,1266.6450000160428,-0.06944434109104332 +253330,1266.650000016043,-0.06944434035860726 +253331,1266.655000016043,-0.06944433962147482 +253332,1266.660000016043,-0.06944433887964771 +253333,1266.6650000160432,-0.06944433813312761 +253334,1266.6700000160433,-0.06944433738191629 +253335,1266.6750000160434,-0.06944433662601542 +253336,1266.6800000160436,-0.06944433586542671 +253337,1266.6850000160437,-0.06944433510015188 +253338,1266.6900000160438,-0.06944433433019263 +253339,1266.6950000160439,-0.06944433355555069 +253340,1266.700000016044,-0.06944433277622776 +253341,1266.705000016044,-0.06944433199222554 +253342,1266.7100000160442,-0.06944433120354572 +253343,1266.7150000160443,-0.06944433041019003 +253344,1266.7200000160444,-0.06944432961216018 +253345,1266.7250000160445,-0.06944432880945785 +253346,1266.7300000160446,-0.06944432800208476 +253347,1266.7350000160448,-0.06944432719004262 +253348,1266.7400000160449,-0.06944432637333312 +253349,1266.745000016045,-0.06944432555195795 +253350,1266.750000016045,-0.06944432472591884 +253351,1266.7550000160452,-0.06944432389521747 +253352,1266.7600000160453,-0.06944432305985554 +253353,1266.7650000160454,-0.06944432221983475 +253354,1266.7700000160455,-0.06944432137515681 +253355,1266.7750000160456,-0.0694443205258234 +253356,1266.7800000160457,-0.06944431967183624 +253357,1266.7850000160458,-0.06944431881319701 +253358,1266.790000016046,-0.06944431794990742 +253359,1266.795000016046,-0.06944431708196915 +253360,1266.8000000160462,-0.06944431620938389 +253361,1266.8050000160463,-0.06944431533215334 +253362,1266.8100000160464,-0.0694443144502792 +253363,1266.8150000160465,-0.06944431356376315 +253364,1266.8200000160466,-0.06944431267260691 +253365,1266.8250000160467,-0.06944431177681214 +253366,1266.8300000160468,-0.06944431087638055 +253367,1266.835000016047,-0.06944430997131382 +253368,1266.840000016047,-0.06944430906161363 +253369,1266.8450000160472,-0.06944430814728167 +253370,1266.8500000160473,-0.06944430722831967 +253371,1266.8550000160474,-0.06944430630472925 +253372,1266.8600000160475,-0.06944430537651215 +253373,1266.8650000160476,-0.06944430444367003 +253374,1266.8700000160477,-0.06944430350620459 +253375,1266.8750000160478,-0.06944430256411749 +253376,1266.880000016048,-0.06944430161741044 +253377,1266.885000016048,-0.06944430066608512 +253378,1266.8900000160481,-0.06944429971014318 +253379,1266.8950000160482,-0.06944429874958635 +253380,1266.9000000160484,-0.06944429778441628 +253381,1266.9050000160485,-0.06944429681463465 +253382,1266.9100000160486,-0.06944429584024316 +253383,1266.9150000160487,-0.06944429486124348 +253384,1266.9200000160488,-0.06944429387763729 +253385,1266.925000016049,-0.06944429288942623 +253386,1266.930000016049,-0.06944429189661204 +253387,1266.9350000160491,-0.06944429089919636 +253388,1266.9400000160492,-0.06944428989718088 +253389,1266.9450000160493,-0.06944428889056727 +253390,1266.9500000160494,-0.06944428787935719 +253391,1266.9550000160496,-0.06944428686355233 +253392,1266.9600000160497,-0.06944428584315437 +253393,1266.9650000160498,-0.06944428481816498 +253394,1266.9700000160499,-0.0694442837885858 +253395,1266.97500001605,-0.06944428275441855 +253396,1266.98000001605,-0.06944428171566487 +253397,1266.9850000160502,-0.06944428067232644 +253398,1266.9900000160503,-0.06944427962440493 +253399,1266.9950000160504,-0.069444278571902 +253400,1267.0000000160505,-0.06944427751481931 +253401,1267.0050000160506,-0.06944427645315855 +253402,1267.0100000160508,-0.06944427538692138 +253403,1267.0150000160509,-0.06944427431610946 +253404,1267.020000016051,-0.06944427324072446 +253405,1267.025000016051,-0.06944427216076804 +253406,1267.0300000160512,-0.06944427107624186 +253407,1267.0350000160513,-0.0694442699871476 +253408,1267.0400000160514,-0.06944426889348693 +253409,1267.0450000160515,-0.06944426779526147 +253410,1267.0500000160516,-0.0694442666924729 +253411,1267.0550000160517,-0.06944426558512293 +253412,1267.0600000160518,-0.06944426447321314 +253413,1267.065000016052,-0.06944426335674524 +253414,1267.070000016052,-0.06944426223572087 +253415,1267.0750000160522,-0.06944426111014171 +253416,1267.0800000160523,-0.06944425998000939 +253417,1267.0850000160524,-0.0694442588453256 +253418,1267.0900000160525,-0.06944425770609194 +253419,1267.0950000160526,-0.06944425656231012 +253420,1267.1000000160527,-0.06944425541398179 +253421,1267.1050000160528,-0.06944425426110859 +253422,1267.110000016053,-0.06944425310369215 +253423,1267.115000016053,-0.06944425194173415 +253424,1267.1200000160532,-0.06944425077523626 +253425,1267.1250000160533,-0.06944424960420009 +253426,1267.1300000160534,-0.06944424842862733 +253427,1267.1350000160535,-0.06944424724851961 +253428,1267.1400000160536,-0.06944424606387857 +253429,1267.1450000160537,-0.06944424487470588 +253430,1267.1500000160538,-0.06944424368100317 +253431,1267.155000016054,-0.06944424248277212 +253432,1267.160000016054,-0.06944424128001433 +253433,1267.1650000160541,-0.06944424007273149 +253434,1267.1700000160542,-0.06944423886092523 +253435,1267.1750000160544,-0.06944423764459719 +253436,1267.1800000160545,-0.069444236423749 +253437,1267.1850000160546,-0.06944423519838235 +253438,1267.1900000160547,-0.06944423396849883 +253439,1267.1950000160548,-0.06944423273410012 +253440,1267.200000016055,-0.06944423149518786 +253441,1267.205000016055,-0.06944423025176366 +253442,1267.2100000160551,-0.0694442290038292 +253443,1267.2150000160552,-0.06944422775138608 +253444,1267.2200000160553,-0.06944422649443598 +253445,1267.2250000160554,-0.06944422523298052 +253446,1267.2300000160556,-0.06944422396702134 +253447,1267.2350000160557,-0.06944422269656006 +253448,1267.2400000160558,-0.06944422142159834 +253449,1267.2450000160559,-0.06944422014213782 +253450,1267.250000016056,-0.06944421885818011 +253451,1267.255000016056,-0.06944421756972687 +253452,1267.2600000160562,-0.06944421627677971 +253453,1267.2650000160563,-0.0694442149793403 +253454,1267.2700000160564,-0.06944421367741022 +253455,1267.2750000160565,-0.06944421237099115 +253456,1267.2800000160566,-0.06944421106008469 +253457,1267.2850000160568,-0.0694442097446925 +253458,1267.2900000160569,-0.0694442084248162 +253459,1267.295000016057,-0.0694442071004574 +253460,1267.300000016057,-0.06944420577161776 +253461,1267.3050000160572,-0.06944420443829888 +253462,1267.3100000160573,-0.06944420310050242 +253463,1267.3150000160574,-0.06944420175822998 +253464,1267.3200000160575,-0.06944420041148319 +253465,1267.3250000160576,-0.06944419906026368 +253466,1267.3300000160577,-0.0694441977045731 +253467,1267.3350000160578,-0.06944419634441301 +253468,1267.340000016058,-0.06944419497978511 +253469,1267.345000016058,-0.06944419361069097 +253470,1267.3500000160582,-0.06944419223713225 +253471,1267.3550000160583,-0.06944419085911054 +253472,1267.3600000160584,-0.06944418947662748 +253473,1267.3650000160585,-0.0694441880896847 +253474,1267.3700000160586,-0.06944418669828378 +253475,1267.3750000160587,-0.0694441853024264 +253476,1267.3800000160588,-0.06944418390211413 +253477,1267.385000016059,-0.0694441824973486 +253478,1267.390000016059,-0.06944418108813143 +253479,1267.3950000160592,-0.06944417967446424 +253480,1267.4000000160593,-0.06944417825634863 +253481,1267.4050000160594,-0.06944417683378626 +253482,1267.4100000160595,-0.0694441754067787 +253483,1267.4150000160596,-0.06944417397532758 +253484,1267.4200000160597,-0.06944417253943451 +253485,1267.4250000160598,-0.06944417109910112 +253486,1267.43000001606,-0.06944416965432901 +253487,1267.43500001606,-0.06944416820511978 +253488,1267.4400000160601,-0.06944416675147506 +253489,1267.4450000160602,-0.06944416529339646 +253490,1267.4500000160604,-0.06944416383088559 +253491,1267.4550000160605,-0.06944416236394405 +253492,1267.4600000160606,-0.06944416089257344 +253493,1267.4650000160607,-0.06944415941677538 +253494,1267.4700000160608,-0.06944415793655148 +253495,1267.475000016061,-0.06944415645190335 +253496,1267.480000016061,-0.0694441549628326 +253497,1267.4850000160611,-0.06944415346934082 +253498,1267.4900000160612,-0.06944415197142963 +253499,1267.4950000160613,-0.0694441504691006 +253500,1267.5000000160614,-0.06944414896235539 +253501,1267.5050000160616,-0.06944414745119556 +253502,1267.5100000160617,-0.06944414593562273 +253503,1267.5150000160618,-0.06944414441563851 +253504,1267.5200000160619,-0.06944414289124448 +253505,1267.525000016062,-0.06944414136244226 +253506,1267.530000016062,-0.06944413982923342 +253507,1267.5350000160622,-0.06944413829161959 +253508,1267.5400000160623,-0.06944413674960237 +253509,1267.5450000160624,-0.06944413520318334 +253510,1267.5500000160625,-0.0694441336523641 +253511,1267.5550000160626,-0.06944413209714626 +253512,1267.5600000160628,-0.0694441305375314 +253513,1267.5650000160629,-0.06944412897352112 +253514,1267.570000016063,-0.06944412740511702 +253515,1267.575000016063,-0.0694441258323207 +253516,1267.5800000160632,-0.06944412425513373 +253517,1267.5850000160633,-0.06944412267355773 +253518,1267.5900000160634,-0.06944412108759429 +253519,1267.5950000160635,-0.06944411949724498 +253520,1267.6000000160636,-0.06944411790251141 +253521,1267.6050000160637,-0.06944411630339517 +253522,1267.6100000160639,-0.06944411469989784 +253523,1267.615000016064,-0.06944411309202102 +253524,1267.620000016064,-0.0694441114797663 +253525,1267.6250000160642,-0.06944410986313523 +253526,1267.6300000160643,-0.06944410824212946 +253527,1267.6350000160644,-0.06944410661675054 +253528,1267.6400000160645,-0.06944410498700007 +253529,1267.6450000160646,-0.06944410335287962 +253530,1267.6500000160647,-0.06944410171439079 +253531,1267.6550000160648,-0.06944410007153515 +253532,1267.660000016065,-0.06944409842431429 +253533,1267.665000016065,-0.0694440967727298 +253534,1267.6700000160652,-0.06944409511678325 +253535,1267.6750000160653,-0.06944409345647623 +253536,1267.6800000160654,-0.06944409179181033 +253537,1267.6850000160655,-0.06944409012278711 +253538,1267.6900000160656,-0.06944408844940818 +253539,1267.6950000160657,-0.06944408677167507 +253540,1267.7000000160658,-0.06944408508958941 +253541,1267.705000016066,-0.06944408340315276 +253542,1267.710000016066,-0.0694440817123667 +253543,1267.7150000160661,-0.06944408001723279 +253544,1267.7200000160663,-0.06944407831775262 +253545,1267.7250000160664,-0.06944407661392778 +253546,1267.7300000160665,-0.06944407490575981 +253547,1267.7350000160666,-0.0694440731932503 +253548,1267.7400000160667,-0.06944407147640083 +253549,1267.7450000160668,-0.06944406975521299 +253550,1267.750000016067,-0.0694440680296883 +253551,1267.755000016067,-0.0694440662998284 +253552,1267.7600000160671,-0.0694440645656348 +253553,1267.7650000160672,-0.06944406282710912 +253554,1267.7700000160673,-0.0694440610842529 +253555,1267.7750000160675,-0.06944405933706771 +253556,1267.7800000160676,-0.06944405758555514 +253557,1267.7850000160677,-0.06944405582971673 +253558,1267.7900000160678,-0.06944405406955408 +253559,1267.795000016068,-0.06944405230506873 +253560,1267.800000016068,-0.06944405053626225 +253561,1267.805000016068,-0.06944404876313623 +253562,1267.8100000160682,-0.0694440469856922 +253563,1267.8150000160683,-0.06944404520393174 +253564,1267.8200000160684,-0.06944404341785643 +253565,1267.8250000160685,-0.0694440416274678 +253566,1267.8300000160687,-0.06944403983276744 +253567,1267.8350000160688,-0.0694440380337569 +253568,1267.8400000160689,-0.06944403623043775 +253569,1267.845000016069,-0.06944403442281154 +253570,1267.850000016069,-0.06944403261087985 +253571,1267.8550000160692,-0.0694440307946442 +253572,1267.8600000160693,-0.0694440289741062 +253573,1267.8650000160694,-0.06944402714926738 +253574,1267.8700000160695,-0.0694440253201293 +253575,1267.8750000160696,-0.06944402348669353 +253576,1267.8800000160697,-0.0694440216489616 +253577,1267.8850000160699,-0.06944401980693507 +253578,1267.89000001607,-0.06944401796061553 +253579,1267.89500001607,-0.0694440161100045 +253580,1267.9000000160702,-0.06944401425510356 +253581,1267.9050000160703,-0.06944401239591423 +253582,1267.9100000160704,-0.0694440105324381 +253583,1267.9150000160705,-0.0694440086646767 +253584,1267.9200000160706,-0.06944400679263159 +253585,1267.9250000160707,-0.06944400491630431 +253586,1267.9300000160708,-0.06944400303569642 +253587,1267.935000016071,-0.06944400115080947 +253588,1267.940000016071,-0.069443999261645 +253589,1267.9450000160712,-0.06944399736820459 +253590,1267.9500000160713,-0.06944399547048974 +253591,1267.9550000160714,-0.06944399356850203 +253592,1267.9600000160715,-0.06944399166224301 +253593,1267.9650000160716,-0.0694439897517142 +253594,1267.9700000160717,-0.06944398783691717 +253595,1267.9750000160718,-0.06944398591785346 +253596,1267.980000016072,-0.0694439839945246 +253597,1267.985000016072,-0.06944398206693216 +253598,1267.9900000160721,-0.06944398013507766 +253599,1267.9950000160723,-0.06944397819896264 +253600,1268.0000000160724,-0.06944397625858867 +253601,1268.0050000160725,-0.06944397431395725 +253602,1268.0100000160726,-0.06944397236506997 +253603,1268.0150000160727,-0.06944397041192833 +253604,1268.0200000160728,-0.06944396845453389 +253605,1268.025000016073,-0.06944396649288818 +253606,1268.030000016073,-0.06944396452699275 +253607,1268.0350000160731,-0.06944396255684912 +253608,1268.0400000160732,-0.06944396058245884 +253609,1268.0450000160733,-0.06944395860382345 +253610,1268.0500000160735,-0.06944395662094448 +253611,1268.0550000160736,-0.06944395463382345 +253612,1268.0600000160737,-0.06944395264246192 +253613,1268.0650000160738,-0.06944395064686143 +253614,1268.070000016074,-0.06944394864702348 +253615,1268.075000016074,-0.06944394664294962 +253616,1268.080000016074,-0.06944394463464139 +253617,1268.0850000160742,-0.06944394262210031 +253618,1268.0900000160743,-0.06944394060532791 +253619,1268.0950000160744,-0.06944393858432574 +253620,1268.1000000160745,-0.06944393655909531 +253621,1268.1050000160747,-0.06944393452963815 +253622,1268.1100000160748,-0.0694439324959558 +253623,1268.1150000160749,-0.0694439304580498 +253624,1268.120000016075,-0.06944392841592163 +253625,1268.125000016075,-0.06944392636957286 +253626,1268.1300000160752,-0.06944392431900501 +253627,1268.1350000160753,-0.0694439222642196 +253628,1268.1400000160754,-0.06944392020521815 +253629,1268.1450000160755,-0.0694439181420022 +253630,1268.1500000160756,-0.06944391607457324 +253631,1268.1550000160757,-0.06944391400293283 +253632,1268.1600000160759,-0.06944391192708248 +253633,1268.165000016076,-0.06944390984702371 +253634,1268.170000016076,-0.06944390776275806 +253635,1268.1750000160762,-0.06944390567428703 +253636,1268.1800000160763,-0.06944390358161213 +253637,1268.1850000160764,-0.06944390148473491 +253638,1268.1900000160765,-0.06944389938365686 +253639,1268.1950000160766,-0.0694438972783795 +253640,1268.2000000160767,-0.0694438951689044 +253641,1268.2050000160768,-0.069443893055233 +253642,1268.210000016077,-0.06944389093736687 +253643,1268.215000016077,-0.06944388881530753 +253644,1268.2200000160772,-0.06944388668905645 +253645,1268.2250000160773,-0.06944388455861517 +253646,1268.2300000160774,-0.06944388242398522 +253647,1268.2350000160775,-0.0694438802851681 +253648,1268.2400000160776,-0.06944387814216532 +253649,1268.2450000160777,-0.0694438759949784 +253650,1268.2500000160778,-0.06944387384360884 +253651,1268.255000016078,-0.06944387168805817 +253652,1268.260000016078,-0.06944386952832789 +253653,1268.2650000160781,-0.06944386736441949 +253654,1268.2700000160783,-0.06944386519633451 +253655,1268.2750000160784,-0.06944386302407446 +253656,1268.2800000160785,-0.06944386084764084 +253657,1268.2850000160786,-0.06944385866703515 +253658,1268.2900000160787,-0.0694438564822589 +253659,1268.2950000160788,-0.0694438542933136 +253660,1268.300000016079,-0.06944385210020075 +253661,1268.305000016079,-0.06944384990292185 +253662,1268.3100000160791,-0.06944384770147843 +253663,1268.3150000160792,-0.06944384549587199 +253664,1268.3200000160793,-0.06944384328610402 +253665,1268.3250000160795,-0.06944384107217602 +253666,1268.3300000160796,-0.0694438388540895 +253667,1268.3350000160797,-0.06944383663184599 +253668,1268.3400000160798,-0.06944383440544694 +253669,1268.34500001608,-0.06944383217489387 +253670,1268.35000001608,-0.0694438299401883 +253671,1268.35500001608,-0.0694438277013317 +253672,1268.3600000160802,-0.06944382545832559 +253673,1268.3650000160803,-0.06944382321117147 +253674,1268.3700000160804,-0.06944382095987083 +253675,1268.3750000160805,-0.06944381870442516 +253676,1268.3800000160807,-0.06944381644483597 +253677,1268.3850000160808,-0.06944381418110473 +253678,1268.3900000160809,-0.06944381191323297 +253679,1268.395000016081,-0.06944380964122217 +253680,1268.400000016081,-0.06944380736507381 +253681,1268.4050000160812,-0.06944380508478942 +253682,1268.4100000160813,-0.06944380280037046 +253683,1268.4150000160814,-0.06944380051181843 +253684,1268.4200000160815,-0.06944379821913485 +253685,1268.4250000160816,-0.06944379592232118 +253686,1268.4300000160817,-0.0694437936213789 +253687,1268.4350000160819,-0.06944379131630952 +253688,1268.440000016082,-0.06944378900711455 +253689,1268.445000016082,-0.06944378669379545 +253690,1268.4500000160822,-0.0694437843763537 +253691,1268.4550000160823,-0.06944378205479083 +253692,1268.4600000160824,-0.06944377972910828 +253693,1268.4650000160825,-0.06944377739930759 +253694,1268.4700000160826,-0.06944377506539019 +253695,1268.4750000160827,-0.06944377272735758 +253696,1268.4800000160828,-0.06944377038521127 +253697,1268.485000016083,-0.06944376803895273 +253698,1268.490000016083,-0.06944376568858344 +253699,1268.4950000160832,-0.06944376333410489 +253700,1268.5000000160833,-0.06944376097551855 +253701,1268.5050000160834,-0.06944375861282591 +253702,1268.5100000160835,-0.06944375624602846 +253703,1268.5150000160836,-0.06944375387512768 +253704,1268.5200000160837,-0.06944375150012502 +253705,1268.5250000160838,-0.069443749121022 +253706,1268.530000016084,-0.06944374673782008 +253707,1268.535000016084,-0.06944374435052075 +253708,1268.5400000160842,-0.06944374195912546 +253709,1268.5450000160843,-0.06944373956363571 +253710,1268.5500000160844,-0.06944373716405298 +253711,1268.5550000160845,-0.06944373476037875 +253712,1268.5600000160846,-0.06944373235261447 +253713,1268.5650000160847,-0.06944372994076164 +253714,1268.5700000160848,-0.06944372752482172 +253715,1268.575000016085,-0.0694437251047962 +253716,1268.580000016085,-0.06944372268068653 +253717,1268.5850000160851,-0.0694437202524942 +253718,1268.5900000160852,-0.06944371782022069 +253719,1268.5950000160854,-0.06944371538386744 +253720,1268.6000000160855,-0.06944371294343595 +253721,1268.6050000160856,-0.06944371049892767 +253722,1268.6100000160857,-0.06944370805034408 +253723,1268.6150000160858,-0.06944370559768666 +253724,1268.620000016086,-0.06944370314095687 +253725,1268.625000016086,-0.06944370068015616 +253726,1268.6300000160861,-0.06944369821528604 +253727,1268.6350000160862,-0.06944369574634793 +253728,1268.6400000160863,-0.06944369327334333 +253729,1268.6450000160864,-0.06944369079627369 +253730,1268.6500000160866,-0.06944368831514047 +253731,1268.6550000160867,-0.06944368582994517 +253732,1268.6600000160868,-0.0694436833406892 +253733,1268.6650000160869,-0.06944368084737407 +253734,1268.670000016087,-0.06944367835000122 +253735,1268.675000016087,-0.06944367584857211 +253736,1268.6800000160872,-0.06944367334308822 +253737,1268.6850000160873,-0.06944367083355099 +253738,1268.6900000160874,-0.0694436683199619 +253739,1268.6950000160875,-0.0694436658023224 +253740,1268.7000000160876,-0.06944366328063395 +253741,1268.7050000160878,-0.069443660754898 +253742,1268.7100000160879,-0.06944365822511601 +253743,1268.715000016088,-0.06944365569128945 +253744,1268.720000016088,-0.06944365315341977 +253745,1268.7250000160882,-0.06944365061150845 +253746,1268.7300000160883,-0.06944364806555692 +253747,1268.7350000160884,-0.06944364551556663 +253748,1268.7400000160885,-0.06944364296153906 +253749,1268.7450000160886,-0.06944364040347564 +253750,1268.7500000160887,-0.06944363784137783 +253751,1268.7550000160888,-0.0694436352752471 +253752,1268.760000016089,-0.06944363270508488 +253753,1268.765000016089,-0.06944363013089265 +253754,1268.7700000160892,-0.06944362755267183 +253755,1268.7750000160893,-0.06944362497042389 +253756,1268.7800000160894,-0.06944362238415026 +253757,1268.7850000160895,-0.06944361979385243 +253758,1268.7900000160896,-0.0694436171995318 +253759,1268.7950000160897,-0.06944361460118985 +253760,1268.8000000160898,-0.06944361199882802 +253761,1268.80500001609,-0.06944360939244777 +253762,1268.81000001609,-0.06944360678205053 +253763,1268.8150000160902,-0.06944360416763774 +253764,1268.8200000160903,-0.06944360154921086 +253765,1268.8250000160904,-0.06944359892677135 +253766,1268.8300000160905,-0.06944359630032063 +253767,1268.8350000160906,-0.06944359366986015 +253768,1268.8400000160907,-0.06944359103539137 +253769,1268.8450000160908,-0.0694435883969157 +253770,1268.850000016091,-0.06944358575443461 +253771,1268.855000016091,-0.06944358310794953 +253772,1268.8600000160911,-0.06944358045746189 +253773,1268.8650000160912,-0.06944357780297317 +253774,1268.8700000160914,-0.06944357514448476 +253775,1268.8750000160915,-0.06944357248199814 +253776,1268.8800000160916,-0.06944356981551474 +253777,1268.8850000160917,-0.06944356714503598 +253778,1268.8900000160918,-0.06944356447056332 +253779,1268.895000016092,-0.06944356179209818 +253780,1268.900000016092,-0.069443559109642 +253781,1268.9050000160921,-0.06944355642319625 +253782,1268.9100000160922,-0.06944355373276231 +253783,1268.9150000160923,-0.06944355103834166 +253784,1268.9200000160924,-0.0694435483399357 +253785,1268.9250000160926,-0.06944354563754589 +253786,1268.9300000160927,-0.06944354293117364 +253787,1268.9350000160928,-0.0694435402208204 +253788,1268.9400000160929,-0.0694435375064876 +253789,1268.945000016093,-0.06944353478817668 +253790,1268.950000016093,-0.06944353206588905 +253791,1268.9550000160932,-0.06944352933962615 +253792,1268.9600000160933,-0.06944352660938942 +253793,1268.9650000160934,-0.06944352387518028 +253794,1268.9700000160935,-0.06944352113700017 +253795,1268.9750000160936,-0.06944351839485048 +253796,1268.9800000160938,-0.06944351564873269 +253797,1268.9850000160939,-0.0694435128986482 +253798,1268.990000016094,-0.06944351014459843 +253799,1268.995000016094,-0.06944350738658482 +253800,1269.0000000160942,-0.06944350462460881 +253801,1269.0050000160943,-0.06944350185867179 +253802,1269.0100000160944,-0.06944349908877522 +253803,1269.0150000160945,-0.06944349631492049 +253804,1269.0200000160946,-0.06944349353710903 +253805,1269.0250000160947,-0.06944349075534229 +253806,1269.0300000160948,-0.06944348796962166 +253807,1269.035000016095,-0.06944348517994858 +253808,1269.040000016095,-0.06944348238632446 +253809,1269.0450000160952,-0.06944347958875073 +253810,1269.0500000160953,-0.06944347678722881 +253811,1269.0550000160954,-0.06944347398176012 +253812,1269.0600000160955,-0.06944347117234606 +253813,1269.0650000160956,-0.06944346835898808 +253814,1269.0700000160957,-0.06944346554168758 +253815,1269.0750000160958,-0.06944346272044596 +253816,1269.080000016096,-0.06944345989526467 +253817,1269.085000016096,-0.0694434570661451 +253818,1269.0900000160962,-0.06944345423308869 +253819,1269.0950000160963,-0.06944345139609684 +253820,1269.1000000160964,-0.06944344855517096 +253821,1269.1050000160965,-0.06944344571031248 +253822,1269.1100000160966,-0.06944344286152278 +253823,1269.1150000160967,-0.06944344000880331 +253824,1269.1200000160968,-0.06944343715215547 +253825,1269.125000016097,-0.06944343429158066 +253826,1269.130000016097,-0.0694434314270803 +253827,1269.1350000160971,-0.06944342855865582 +253828,1269.1400000160972,-0.06944342568630858 +253829,1269.1450000160974,-0.06944342281004005 +253830,1269.1500000160975,-0.06944341992985159 +253831,1269.1550000160976,-0.06944341704574462 +253832,1269.1600000160977,-0.06944341415772057 +253833,1269.1650000160978,-0.06944341126578082 +253834,1269.170000016098,-0.0694434083699268 +253835,1269.175000016098,-0.06944340547015991 +253836,1269.1800000160981,-0.06944340256648154 +253837,1269.1850000160982,-0.06944339965889311 +253838,1269.1900000160983,-0.06944339674739602 +253839,1269.1950000160984,-0.06944339383199168 +253840,1269.2000000160986,-0.06944339091268147 +253841,1269.2050000160987,-0.06944338798946681 +253842,1269.2100000160988,-0.06944338506234911 +253843,1269.2150000160989,-0.06944338213132976 +253844,1269.220000016099,-0.06944337919641018 +253845,1269.225000016099,-0.06944337625759174 +253846,1269.2300000160992,-0.06944337331487586 +253847,1269.2350000160993,-0.06944337036826392 +253848,1269.2400000160994,-0.06944336741775736 +253849,1269.2450000160995,-0.06944336446335754 +253850,1269.2500000160996,-0.06944336150506587 +253851,1269.2550000160998,-0.06944335854288375 +253852,1269.2600000160999,-0.06944335557681257 +253853,1269.2650000161,-0.06944335260685372 +253854,1269.2700000161,-0.06944334963300862 +253855,1269.2750000161002,-0.06944334665527865 +253856,1269.2800000161003,-0.0694433436736652 +253857,1269.2850000161004,-0.06944334068816967 +253858,1269.2900000161005,-0.06944333769879346 +253859,1269.2950000161006,-0.06944333470553794 +253860,1269.3000000161007,-0.06944333170840451 +253861,1269.3050000161008,-0.06944332870739459 +253862,1269.310000016101,-0.06944332570250954 +253863,1269.315000016101,-0.06944332269375078 +253864,1269.3200000161012,-0.06944331968111966 +253865,1269.3250000161013,-0.0694433166646176 +253866,1269.3300000161014,-0.06944331364424598 +253867,1269.3350000161015,-0.0694433106200062 +253868,1269.3400000161016,-0.06944330759189961 +253869,1269.3450000161017,-0.06944330455992764 +253870,1269.3500000161018,-0.06944330152409166 +253871,1269.355000016102,-0.06944329848439305 +253872,1269.360000016102,-0.0694432954408332 +253873,1269.3650000161022,-0.06944329239341351 +253874,1269.3700000161023,-0.06944328934213535 +253875,1269.3750000161024,-0.06944328628700012 +253876,1269.3800000161025,-0.06944328322800918 +253877,1269.3850000161026,-0.06944328016516393 +253878,1269.3900000161027,-0.06944327709846573 +253879,1269.3950000161028,-0.06944327402791599 +253880,1269.400000016103,-0.06944327095351607 +253881,1269.405000016103,-0.06944326787526736 +253882,1269.4100000161031,-0.06944326479317126 +253883,1269.4150000161032,-0.06944326170722911 +253884,1269.4200000161034,-0.06944325861744233 +253885,1269.4250000161035,-0.06944325552381225 +253886,1269.4300000161036,-0.0694432524263403 +253887,1269.4350000161037,-0.06944324932502782 +253888,1269.4400000161038,-0.06944324621987621 +253889,1269.445000016104,-0.06944324311088684 +253890,1269.450000016104,-0.06944323999806108 +253891,1269.4550000161041,-0.0694432368814003 +253892,1269.4600000161042,-0.0694432337609059 +253893,1269.4650000161043,-0.06944323063657923 +253894,1269.4700000161044,-0.06944322750842168 +253895,1269.4750000161046,-0.0694432243764346 +253896,1269.4800000161047,-0.0694432212406194 +253897,1269.4850000161048,-0.06944321810097742 +253898,1269.490000016105,-0.06944321495751003 +253899,1269.495000016105,-0.06944321181021865 +253900,1269.500000016105,-0.06944320865910458 +253901,1269.5050000161052,-0.06944320550416924 +253902,1269.5100000161053,-0.06944320234541398 +253903,1269.5150000161054,-0.06944319918284017 +253904,1269.5200000161055,-0.06944319601644919 +253905,1269.5250000161057,-0.0694431928462424 +253906,1269.5300000161058,-0.06944318967222117 +253907,1269.5350000161059,-0.06944318649438685 +253908,1269.540000016106,-0.06944318331274082 +253909,1269.545000016106,-0.06944318012728447 +253910,1269.5500000161062,-0.06944317693801912 +253911,1269.5550000161063,-0.06944317374494617 +253912,1269.5600000161064,-0.06944317054806697 +253913,1269.5650000161065,-0.06944316734738286 +253914,1269.5700000161066,-0.06944316414289523 +253915,1269.5750000161067,-0.06944316093460545 +253916,1269.5800000161069,-0.06944315772251487 +253917,1269.585000016107,-0.06944315450662485 +253918,1269.590000016107,-0.06944315128693676 +253919,1269.5950000161072,-0.06944314806345195 +253920,1269.6000000161073,-0.06944314483617178 +253921,1269.6050000161074,-0.06944314160509762 +253922,1269.6100000161075,-0.06944313837023083 +253923,1269.6150000161076,-0.06944313513157274 +253924,1269.6200000161077,-0.06944313188912475 +253925,1269.6250000161078,-0.06944312864288817 +253926,1269.630000016108,-0.06944312539286439 +253927,1269.635000016108,-0.06944312213905476 +253928,1269.6400000161082,-0.06944311888146064 +253929,1269.6450000161083,-0.06944311562008336 +253930,1269.6500000161084,-0.06944311235492431 +253931,1269.6550000161085,-0.06944310908598483 +253932,1269.6600000161086,-0.06944310581326628 +253933,1269.6650000161087,-0.06944310253676998 +253934,1269.6700000161088,-0.06944309925649732 +253935,1269.675000016109,-0.06944309597244963 +253936,1269.680000016109,-0.06944309268462827 +253937,1269.6850000161091,-0.0694430893930346 +253938,1269.6900000161093,-0.06944308609766994 +253939,1269.6950000161094,-0.06944308279853569 +253940,1269.7000000161095,-0.06944307949563315 +253941,1269.7050000161096,-0.06944307618896368 +253942,1269.7100000161097,-0.06944307287852866 +253943,1269.7150000161098,-0.0694430695643294 +253944,1269.72000001611,-0.06944306624636726 +253945,1269.72500001611,-0.06944306292464358 +253946,1269.7300000161101,-0.06944305959915972 +253947,1269.7350000161102,-0.06944305626991702 +253948,1269.7400000161103,-0.06944305293691683 +253949,1269.7450000161105,-0.0694430496001605 +253950,1269.7500000161106,-0.06944304625964934 +253951,1269.7550000161107,-0.06944304291538472 +253952,1269.7600000161108,-0.069443039567368 +253953,1269.765000016111,-0.06944303621560047 +253954,1269.770000016111,-0.06944303286008352 +253955,1269.775000016111,-0.06944302950081847 +253956,1269.7800000161112,-0.06944302613780667 +253957,1269.7850000161113,-0.06944302277104945 +253958,1269.7900000161114,-0.06944301940054817 +253959,1269.7950000161115,-0.06944301602630414 +253960,1269.8000000161117,-0.06944301264831872 +253961,1269.8050000161118,-0.06944300926659323 +253962,1269.8100000161119,-0.06944300588112903 +253963,1269.815000016112,-0.06944300249192745 +253964,1269.820000016112,-0.06944299909898981 +253965,1269.8250000161122,-0.06944299570231746 +253966,1269.8300000161123,-0.06944299230191174 +253967,1269.8350000161124,-0.06944298889777398 +253968,1269.8400000161125,-0.0694429854899055 +253969,1269.8450000161126,-0.06944298207830765 +253970,1269.8500000161127,-0.06944297866298177 +253971,1269.8550000161129,-0.06944297524392919 +253972,1269.860000016113,-0.06944297182115122 +253973,1269.865000016113,-0.06944296839464921 +253974,1269.8700000161132,-0.0694429649644245 +253975,1269.8750000161133,-0.0694429615304784 +253976,1269.8800000161134,-0.06944295809281224 +253977,1269.8850000161135,-0.06944295465142739 +253978,1269.8900000161136,-0.06944295120632514 +253979,1269.8950000161137,-0.06944294775750681 +253980,1269.9000000161138,-0.06944294430497376 +253981,1269.905000016114,-0.0694429408487273 +253982,1269.910000016114,-0.06944293738876876 +253983,1269.9150000161142,-0.06944293392509948 +253984,1269.9200000161143,-0.06944293045772076 +253985,1269.9250000161144,-0.06944292698663396 +253986,1269.9300000161145,-0.06944292351184035 +253987,1269.9350000161146,-0.06944292003334131 +253988,1269.9400000161147,-0.06944291655113814 +253989,1269.9450000161148,-0.06944291306523216 +253990,1269.950000016115,-0.06944290957562471 +253991,1269.955000016115,-0.0694429060823171 +253992,1269.9600000161151,-0.06944290258531065 +253993,1269.9650000161153,-0.06944289908460669 +253994,1269.9700000161154,-0.06944289558020653 +253995,1269.9750000161155,-0.06944289207211149 +253996,1269.9800000161156,-0.06944288856032291 +253997,1269.9850000161157,-0.06944288504484207 +253998,1269.9900000161158,-0.06944288152567034 +253999,1269.995000016116,-0.069442878002809 +254000,1270.000000016116,-0.06944287447625938 +254001,1270.0050000161161,-0.06944287094602279 +254002,1270.0100000161162,-0.06944286741210057 +254003,1270.0150000161163,-0.06944286387449403 +254004,1270.0200000161165,-0.06944286033320445 +254005,1270.0250000161166,-0.06944285678823318 +254006,1270.0300000161167,-0.06944285323958153 +254007,1270.0350000161168,-0.06944284968725081 +254008,1270.040000016117,-0.06944284613124234 +254009,1270.045000016117,-0.06944284257155742 +254010,1270.050000016117,-0.06944283900819737 +254011,1270.0550000161172,-0.06944283544116352 +254012,1270.0600000161173,-0.06944283187045715 +254013,1270.0650000161174,-0.06944282829607958 +254014,1270.0700000161175,-0.06944282471803212 +254015,1270.0750000161177,-0.06944282113631609 +254016,1270.0800000161178,-0.06944281755093279 +254017,1270.0850000161179,-0.06944281396188355 +254018,1270.090000016118,-0.06944281036916965 +254019,1270.095000016118,-0.06944280677279241 +254020,1270.1000000161182,-0.06944280317275314 +254021,1270.1050000161183,-0.06944279956905315 +254022,1270.1100000161184,-0.06944279596169374 +254023,1270.1150000161185,-0.0694427923506762 +254024,1270.1200000161186,-0.06944278873600186 +254025,1270.1250000161187,-0.06944278511767202 +254026,1270.1300000161189,-0.06944278149568799 +254027,1270.135000016119,-0.06944277787005104 +254028,1270.140000016119,-0.06944277424076252 +254029,1270.1450000161192,-0.06944277060782371 +254030,1270.1500000161193,-0.06944276697123591 +254031,1270.1550000161194,-0.06944276333100043 +254032,1270.1600000161195,-0.06944275968711855 +254033,1270.1650000161196,-0.0694427560395916 +254034,1270.1700000161197,-0.06944275238842088 +254035,1270.1750000161198,-0.06944274873360766 +254036,1270.18000001612,-0.06944274507515326 +254037,1270.18500001612,-0.06944274141305896 +254038,1270.1900000161202,-0.06944273774732611 +254039,1270.1950000161203,-0.06944273407795595 +254040,1270.2000000161204,-0.0694427304049498 +254041,1270.2050000161205,-0.06944272672830895 +254042,1270.2100000161206,-0.06944272304803473 +254043,1270.2150000161207,-0.06944271936412838 +254044,1270.2200000161208,-0.06944271567659123 +254045,1270.225000016121,-0.06944271198542457 +254046,1270.230000016121,-0.06944270829062968 +254047,1270.2350000161211,-0.06944270459220787 +254048,1270.2400000161213,-0.06944270089016044 +254049,1270.2450000161214,-0.06944269718448867 +254050,1270.2500000161215,-0.06944269347519384 +254051,1270.2550000161216,-0.06944268976227726 +254052,1270.2600000161217,-0.06944268604574022 +254053,1270.2650000161218,-0.06944268232558401 +254054,1270.270000016122,-0.0694426786018099 +254055,1270.275000016122,-0.06944267487441921 +254056,1270.2800000161221,-0.06944267114341321 +254057,1270.2850000161222,-0.06944266740879318 +254058,1270.2900000161223,-0.06944266367056044 +254059,1270.2950000161225,-0.06944265992871626 +254060,1270.3000000161226,-0.06944265618326192 +254061,1270.3050000161227,-0.06944265243419871 +254062,1270.3100000161228,-0.06944264868152791 +254063,1270.315000016123,-0.06944264492525083 +254064,1270.320000016123,-0.06944264116536875 +254065,1270.325000016123,-0.06944263740188292 +254066,1270.3300000161232,-0.06944263363479466 +254067,1270.3350000161233,-0.06944262986410524 +254068,1270.3400000161234,-0.06944262608981595 +254069,1270.3450000161235,-0.06944262231192806 +254070,1270.3500000161237,-0.06944261853044285 +254071,1270.3550000161238,-0.06944261474536162 +254072,1270.3600000161239,-0.06944261095668566 +254073,1270.365000016124,-0.06944260716441622 +254074,1270.370000016124,-0.06944260336855458 +254075,1270.3750000161242,-0.06944259956910205 +254076,1270.3800000161243,-0.06944259576605986 +254077,1270.3850000161244,-0.06944259195942935 +254078,1270.3900000161245,-0.06944258814921175 +254079,1270.3950000161246,-0.06944258433540837 +254080,1270.4000000161247,-0.06944258051802046 +254081,1270.4050000161249,-0.0694425766970493 +254082,1270.410000016125,-0.06944257287249618 +254083,1270.415000016125,-0.06944256904436237 +254084,1270.4200000161252,-0.06944256521264915 +254085,1270.4250000161253,-0.06944256137735778 +254086,1270.4300000161254,-0.06944255753848953 +254087,1270.4350000161255,-0.06944255369604571 +254088,1270.4400000161256,-0.06944254985002757 +254089,1270.4450000161257,-0.06944254600043637 +254090,1270.4500000161258,-0.0694425421472734 +254091,1270.455000016126,-0.06944253829053992 +254092,1270.460000016126,-0.06944253443023722 +254093,1270.4650000161262,-0.06944253056636654 +254094,1270.4700000161263,-0.06944252669892917 +254095,1270.4750000161264,-0.06944252282792639 +254096,1270.4800000161265,-0.06944251895335944 +254097,1270.4850000161266,-0.06944251507522961 +254098,1270.4900000161267,-0.06944251119353816 +254099,1270.4950000161268,-0.06944250730828636 +254100,1270.500000016127,-0.06944250341947546 +254101,1270.505000016127,-0.06944249952710675 +254102,1270.5100000161272,-0.06944249563118149 +254103,1270.5150000161273,-0.06944249173170094 +254104,1270.5200000161274,-0.06944248782866637 +254105,1270.5250000161275,-0.06944248392207905 +254106,1270.5300000161276,-0.06944248001194024 +254107,1270.5350000161277,-0.06944247609825119 +254108,1270.5400000161278,-0.06944247218101317 +254109,1270.545000016128,-0.06944246826022746 +254110,1270.550000016128,-0.0694424643358953 +254111,1270.5550000161281,-0.06944246040801795 +254112,1270.5600000161282,-0.06944245647659669 +254113,1270.5650000161284,-0.06944245254163277 +254114,1270.5700000161285,-0.06944244860312744 +254115,1270.5750000161286,-0.06944244466108199 +254116,1270.5800000161287,-0.06944244071549764 +254117,1270.5850000161288,-0.06944243676637568 +254118,1270.590000016129,-0.06944243281371734 +254119,1270.595000016129,-0.06944242885752391 +254120,1270.6000000161291,-0.06944242489779663 +254121,1270.6050000161292,-0.06944242093453676 +254122,1270.6100000161293,-0.06944241696774554 +254123,1270.6150000161294,-0.06944241299742426 +254124,1270.6200000161296,-0.06944240902357413 +254125,1270.6250000161297,-0.06944240504619645 +254126,1270.6300000161298,-0.06944240106529243 +254127,1270.6350000161299,-0.06944239708086336 +254128,1270.64000001613,-0.06944239309291048 +254129,1270.64500001613,-0.06944238910143505 +254130,1270.6500000161302,-0.0694423851064383 +254131,1270.6550000161303,-0.06944238110792149 +254132,1270.6600000161304,-0.06944237710588588 +254133,1270.6650000161305,-0.06944237310033272 +254134,1270.6700000161306,-0.06944236909126325 +254135,1270.6750000161308,-0.06944236507867874 +254136,1270.6800000161309,-0.06944236106258042 +254137,1270.685000016131,-0.06944235704296954 +254138,1270.690000016131,-0.06944235301984734 +254139,1270.6950000161312,-0.06944234899321511 +254140,1270.7000000161313,-0.06944234496307405 +254141,1270.7050000161314,-0.06944234092942543 +254142,1270.7100000161315,-0.06944233689227049 +254143,1270.7150000161316,-0.06944233285161047 +254144,1270.7200000161317,-0.06944232880744663 +254145,1270.7250000161318,-0.06944232475978021 +254146,1270.730000016132,-0.06944232070861245 +254147,1270.735000016132,-0.06944231665394457 +254148,1270.7400000161322,-0.06944231259577786 +254149,1270.7450000161323,-0.06944230853411354 +254150,1270.7500000161324,-0.06944230446895285 +254151,1270.7550000161325,-0.06944230040029703 +254152,1270.7600000161326,-0.06944229632814733 +254153,1270.7650000161327,-0.06944229225250498 +254154,1270.7700000161328,-0.06944228817337122 +254155,1270.775000016133,-0.0694422840907473 +254156,1270.780000016133,-0.06944228000463447 +254157,1270.7850000161332,-0.06944227591503395 +254158,1270.7900000161333,-0.06944227182194698 +254159,1270.7950000161334,-0.06944226772537479 +254160,1270.8000000161335,-0.06944226362531865 +254161,1270.8050000161336,-0.06944225952177976 +254162,1270.8100000161337,-0.06944225541475937 +254163,1270.8150000161338,-0.06944225130425874 +254164,1270.820000016134,-0.06944224719027907 +254165,1270.825000016134,-0.0694422430728216 +254166,1270.8300000161341,-0.06944223895188757 +254167,1270.8350000161342,-0.06944223482747823 +254168,1270.8400000161344,-0.0694422306995948 +254169,1270.8450000161345,-0.06944222656823851 +254170,1270.8500000161346,-0.0694422224334106 +254171,1270.8550000161347,-0.06944221829511228 +254172,1270.8600000161348,-0.06944221415334483 +254173,1270.865000016135,-0.06944221000810943 +254174,1270.870000016135,-0.06944220585940734 +254175,1270.8750000161351,-0.06944220170723978 +254176,1270.8800000161352,-0.06944219755160798 +254177,1270.8850000161353,-0.06944219339251316 +254178,1270.8900000161354,-0.06944218922995657 +254179,1270.8950000161356,-0.06944218506393943 +254180,1270.9000000161357,-0.06944218089446295 +254181,1270.9050000161358,-0.06944217672152839 +254182,1270.9100000161359,-0.06944217254513695 +254183,1270.915000016136,-0.06944216836528987 +254184,1270.920000016136,-0.06944216418198836 +254185,1270.9250000161362,-0.06944215999523366 +254186,1270.9300000161363,-0.069442155805027 +254187,1270.9350000161364,-0.0694421516113696 +254188,1270.9400000161365,-0.06944214741426266 +254189,1270.9450000161366,-0.06944214321370744 +254190,1270.9500000161368,-0.06944213900970513 +254191,1270.9550000161369,-0.06944213480225697 +254192,1270.960000016137,-0.0694421305913642 +254193,1270.965000016137,-0.06944212637702799 +254194,1270.9700000161372,-0.06944212215924961 +254195,1270.9750000161373,-0.06944211793803025 +254196,1270.9800000161374,-0.06944211371337115 +254197,1270.9850000161375,-0.06944210948527353 +254198,1270.9900000161376,-0.0694421052537386 +254199,1270.9950000161377,-0.06944210101876758 +254200,1271.0000000161378,-0.06944209678036169 +254201,1271.005000016138,-0.06944209253852214 +254202,1271.010000016138,-0.06944208829325016 +254203,1271.0150000161382,-0.06944208404454695 +254204,1271.0200000161383,-0.06944207979241374 +254205,1271.0250000161384,-0.06944207553685174 +254206,1271.0300000161385,-0.06944207127786216 +254207,1271.0350000161386,-0.06944206701544621 +254208,1271.0400000161387,-0.06944206274960513 +254209,1271.0450000161388,-0.06944205848034013 +254210,1271.050000016139,-0.0694420542076524 +254211,1271.055000016139,-0.06944204993154315 +254212,1271.0600000161392,-0.06944204565201363 +254213,1271.0650000161393,-0.06944204136906502 +254214,1271.0700000161394,-0.06944203708269855 +254215,1271.0750000161395,-0.06944203279291541 +254216,1271.0800000161396,-0.06944202849971684 +254217,1271.0850000161397,-0.06944202420310402 +254218,1271.0900000161398,-0.06944201990307818 +254219,1271.09500001614,-0.06944201559964051 +254220,1271.10000001614,-0.06944201129279225 +254221,1271.1050000161401,-0.06944200698253457 +254222,1271.1100000161402,-0.0694420026688687 +254223,1271.1150000161404,-0.06944199835179583 +254224,1271.1200000161405,-0.06944199403131719 +254225,1271.1250000161406,-0.06944198970743398 +254226,1271.1300000161407,-0.06944198538014738 +254227,1271.1350000161408,-0.06944198104945863 +254228,1271.140000016141,-0.06944197671536892 +254229,1271.145000016141,-0.06944197237787945 +254230,1271.1500000161411,-0.06944196803699144 +254231,1271.1550000161412,-0.06944196369270607 +254232,1271.1600000161413,-0.06944195934502456 +254233,1271.1650000161414,-0.0694419549939481 +254234,1271.1700000161416,-0.06944195063947792 +254235,1271.1750000161417,-0.06944194628161518 +254236,1271.1800000161418,-0.0694419419203611 +254237,1271.1850000161419,-0.0694419375557169 +254238,1271.190000016142,-0.06944193318768374 +254239,1271.195000016142,-0.06944192881626286 +254240,1271.2000000161422,-0.06944192444145543 +254241,1271.2050000161423,-0.06944192006326266 +254242,1271.2100000161424,-0.06944191568168574 +254243,1271.2150000161425,-0.06944191129672589 +254244,1271.2200000161426,-0.06944190690838428 +254245,1271.2250000161428,-0.06944190251666213 +254246,1271.2300000161429,-0.06944189812156061 +254247,1271.235000016143,-0.06944189372308093 +254248,1271.240000016143,-0.0694418893212243 +254249,1271.2450000161432,-0.0694418849159919 +254250,1271.2500000161433,-0.06944188050738492 +254251,1271.2550000161434,-0.06944187609540457 +254252,1271.2600000161435,-0.06944187168005202 +254253,1271.2650000161436,-0.06944186726132849 +254254,1271.2700000161437,-0.06944186283923515 +254255,1271.2750000161438,-0.06944185841377319 +254256,1271.280000016144,-0.06944185398494382 +254257,1271.285000016144,-0.06944184955274822 +254258,1271.2900000161442,-0.06944184511718758 +254259,1271.2950000161443,-0.0694418406782631 +254260,1271.3000000161444,-0.06944183623597597 +254261,1271.3050000161445,-0.06944183179032735 +254262,1271.3100000161446,-0.06944182734131847 +254263,1271.3150000161447,-0.0694418228889505 +254264,1271.3200000161448,-0.06944181843322461 +254265,1271.325000016145,-0.06944181397414202 +254266,1271.330000016145,-0.0694418095117039 +254267,1271.3350000161452,-0.06944180504591142 +254268,1271.3400000161453,-0.0694418005767658 +254269,1271.3450000161454,-0.0694417961042682 +254270,1271.3500000161455,-0.06944179162841982 +254271,1271.3550000161456,-0.06944178714922183 +254272,1271.3600000161457,-0.06944178266667544 +254273,1271.3650000161458,-0.06944177818078182 +254274,1271.370000016146,-0.06944177369154213 +254275,1271.375000016146,-0.06944176919895757 +254276,1271.3800000161461,-0.06944176470302933 +254277,1271.3850000161463,-0.0694417602037586 +254278,1271.3900000161464,-0.06944175570114652 +254279,1271.3950000161465,-0.06944175119519432 +254280,1271.4000000161466,-0.06944174668590314 +254281,1271.4050000161467,-0.06944174217327419 +254282,1271.4100000161468,-0.06944173765730864 +254283,1271.415000016147,-0.06944173313800767 +254284,1271.420000016147,-0.06944172861537244 +254285,1271.4250000161471,-0.06944172408940415 +254286,1271.4300000161472,-0.06944171956010396 +254287,1271.4350000161473,-0.06944171502747307 +254288,1271.4400000161475,-0.06944171049151264 +254289,1271.4450000161476,-0.06944170595222386 +254290,1271.4500000161477,-0.06944170140960788 +254291,1271.4550000161478,-0.06944169686366591 +254292,1271.460000016148,-0.06944169231439909 +254293,1271.465000016148,-0.06944168776180862 +254294,1271.470000016148,-0.06944168320589565 +254295,1271.4750000161482,-0.06944167864666138 +254296,1271.4800000161483,-0.06944167408410698 +254297,1271.4850000161484,-0.06944166951823359 +254298,1271.4900000161485,-0.06944166494904241 +254299,1271.4950000161487,-0.06944166037653463 +254300,1271.5000000161488,-0.06944165580071138 +254301,1271.5050000161489,-0.06944165122157385 +254302,1271.510000016149,-0.06944164663912321 +254303,1271.515000016149,-0.06944164205336062 +254304,1271.5200000161492,-0.06944163746428728 +254305,1271.5250000161493,-0.0694416328719043 +254306,1271.5300000161494,-0.0694416282762129 +254307,1271.5350000161495,-0.06944162367721425 +254308,1271.5400000161496,-0.06944161907490948 +254309,1271.5450000161497,-0.06944161446929978 +254310,1271.5500000161499,-0.06944160986038632 +254311,1271.55500001615,-0.06944160524817027 +254312,1271.56000001615,-0.06944160063265277 +254313,1271.5650000161502,-0.069441596013835 +254314,1271.5700000161503,-0.06944159139171813 +254315,1271.5750000161504,-0.0694415867663033 +254316,1271.5800000161505,-0.0694415821375917 +254317,1271.5850000161506,-0.06944157750558451 +254318,1271.5900000161507,-0.06944157287028284 +254319,1271.5950000161508,-0.0694415682316879 +254320,1271.600000016151,-0.06944156358980082 +254321,1271.605000016151,-0.06944155894462277 +254322,1271.6100000161512,-0.06944155429615492 +254323,1271.6150000161513,-0.06944154964439843 +254324,1271.6200000161514,-0.06944154498935444 +254325,1271.6250000161515,-0.06944154033102415 +254326,1271.6300000161516,-0.06944153566940868 +254327,1271.6350000161517,-0.0694415310045092 +254328,1271.6400000161518,-0.06944152633632687 +254329,1271.645000016152,-0.06944152166486287 +254330,1271.650000016152,-0.06944151699011832 +254331,1271.6550000161521,-0.06944151231209439 +254332,1271.6600000161523,-0.06944150763079225 +254333,1271.6650000161524,-0.06944150294621304 +254334,1271.6700000161525,-0.06944149825835792 +254335,1271.6750000161526,-0.06944149356722805 +254336,1271.6800000161527,-0.06944148887282459 +254337,1271.6850000161528,-0.06944148417514866 +254338,1271.690000016153,-0.06944147947420146 +254339,1271.695000016153,-0.06944147476998411 +254340,1271.7000000161531,-0.06944147006249779 +254341,1271.7050000161532,-0.06944146535174361 +254342,1271.7100000161533,-0.06944146063772277 +254343,1271.7150000161535,-0.06944145592043639 +254344,1271.7200000161536,-0.06944145119988565 +254345,1271.7250000161537,-0.06944144647607166 +254346,1271.7300000161538,-0.06944144174899561 +254347,1271.735000016154,-0.06944143701865862 +254348,1271.740000016154,-0.06944143228506185 +254349,1271.745000016154,-0.06944142754820645 +254350,1271.7500000161542,-0.06944142280809358 +254351,1271.7550000161543,-0.06944141806472436 +254352,1271.7600000161544,-0.06944141331809996 +254353,1271.7650000161545,-0.06944140856822152 +254354,1271.7700000161547,-0.06944140381509019 +254355,1271.7750000161548,-0.06944139905870711 +254356,1271.7800000161549,-0.06944139429907342 +254357,1271.785000016155,-0.06944138953619029 +254358,1271.790000016155,-0.06944138477005883 +254359,1271.7950000161552,-0.06944138000068022 +254360,1271.8000000161553,-0.06944137522805556 +254361,1271.8050000161554,-0.06944137045218604 +254362,1271.8100000161555,-0.06944136567307277 +254363,1271.8150000161556,-0.06944136089071691 +254364,1271.8200000161557,-0.0694413561051196 +254365,1271.8250000161559,-0.06944135131628197 +254366,1271.830000016156,-0.06944134652420517 +254367,1271.835000016156,-0.06944134172889033 +254368,1271.8400000161562,-0.06944133693033859 +254369,1271.8450000161563,-0.06944133212855112 +254370,1271.8500000161564,-0.06944132732352903 +254371,1271.8550000161565,-0.06944132251527349 +254372,1271.8600000161566,-0.06944131770378559 +254373,1271.8650000161567,-0.06944131288906649 +254374,1271.8700000161568,-0.06944130807111736 +254375,1271.875000016157,-0.06944130324993927 +254376,1271.880000016157,-0.0694412984255334 +254377,1271.8850000161572,-0.0694412935979009 +254378,1271.8900000161573,-0.06944128876704288 +254379,1271.8950000161574,-0.06944128393296048 +254380,1271.9000000161575,-0.06944127909565483 +254381,1271.9050000161576,-0.06944127425512707 +254382,1271.9100000161577,-0.06944126941137835 +254383,1271.9150000161578,-0.06944126456440977 +254384,1271.920000016158,-0.06944125971422248 +254385,1271.925000016158,-0.06944125486081762 +254386,1271.9300000161581,-0.06944125000419632 +254387,1271.9350000161583,-0.0694412451443597 +254388,1271.9400000161584,-0.0694412402813089 +254389,1271.9450000161585,-0.06944123541504504 +254390,1271.9500000161586,-0.06944123054556928 +254391,1271.9550000161587,-0.06944122567288272 +254392,1271.9600000161588,-0.06944122079698649 +254393,1271.965000016159,-0.06944121591788172 +254394,1271.970000016159,-0.06944121103556955 +254395,1271.9750000161591,-0.06944120615005112 +254396,1271.9800000161592,-0.06944120126132752 +254397,1271.9850000161593,-0.06944119636939991 +254398,1271.9900000161595,-0.0694411914742694 +254399,1271.9950000161596,-0.06944118657593712 +254400,1272.0000000161597,-0.0694411816744042 +254401,1272.0050000161598,-0.06944117676967178 +254402,1272.01000001616,-0.06944117186174094 +254403,1272.01500001616,-0.06944116695061285 +254404,1272.02000001616,-0.06944116203628861 +254405,1272.0250000161602,-0.06944115711876937 +254406,1272.0300000161603,-0.06944115219805622 +254407,1272.0350000161604,-0.0694411472741503 +254408,1272.0400000161605,-0.06944114234705272 +254409,1272.0450000161607,-0.06944113741676461 +254410,1272.0500000161608,-0.0694411324832871 +254411,1272.0550000161609,-0.0694411275466213 +254412,1272.060000016161,-0.06944112260676832 +254413,1272.065000016161,-0.0694411176637293 +254414,1272.0700000161612,-0.06944111271750536 +254415,1272.0750000161613,-0.06944110776809762 +254416,1272.0800000161614,-0.06944110281550718 +254417,1272.0850000161615,-0.06944109785973517 +254418,1272.0900000161616,-0.06944109290078271 +254419,1272.0950000161617,-0.0694410879386509 +254420,1272.1000000161619,-0.0694410829733409 +254421,1272.105000016162,-0.06944107800485377 +254422,1272.110000016162,-0.06944107303319068 +254423,1272.1150000161622,-0.06944106805835272 +254424,1272.1200000161623,-0.06944106308034098 +254425,1272.1250000161624,-0.06944105809915663 +254426,1272.1300000161625,-0.06944105311480074 +254427,1272.1350000161626,-0.06944104812727445 +254428,1272.1400000161627,-0.06944104313657884 +254429,1272.1450000161628,-0.06944103814271506 +254430,1272.150000016163,-0.0694410331456842 +254431,1272.155000016163,-0.0694410281454874 +254432,1272.1600000161632,-0.06944102314212573 +254433,1272.1650000161633,-0.06944101813560033 +254434,1272.1700000161634,-0.0694410131259123 +254435,1272.1750000161635,-0.06944100811306277 +254436,1272.1800000161636,-0.06944100309705283 +254437,1272.1850000161637,-0.06944099807788359 +254438,1272.1900000161638,-0.06944099305555616 +254439,1272.195000016164,-0.06944098803007166 +254440,1272.200000016164,-0.0694409830014312 +254441,1272.2050000161641,-0.06944097796963586 +254442,1272.2100000161643,-0.06944097293468678 +254443,1272.2150000161644,-0.06944096789658503 +254444,1272.2200000161645,-0.06944096285533176 +254445,1272.2250000161646,-0.06944095781092806 +254446,1272.2300000161647,-0.06944095276337502 +254447,1272.2350000161648,-0.06944094771267374 +254448,1272.240000016165,-0.06944094265882536 +254449,1272.245000016165,-0.06944093760183097 +254450,1272.2500000161651,-0.06944093254169165 +254451,1272.2550000161652,-0.06944092747840853 +254452,1272.2600000161653,-0.06944092241198271 +254453,1272.2650000161655,-0.0694409173424153 +254454,1272.2700000161656,-0.06944091226970737 +254455,1272.2750000161657,-0.06944090719386005 +254456,1272.2800000161658,-0.06944090211487441 +254457,1272.285000016166,-0.06944089703275161 +254458,1272.290000016166,-0.0694408919474927 +254459,1272.2950000161661,-0.0694408868590988 +254460,1272.3000000161662,-0.069440881767571 +254461,1272.3050000161663,-0.0694408766729104 +254462,1272.3100000161664,-0.06944087157511811 +254463,1272.3150000161666,-0.06944086647419521 +254464,1272.3200000161667,-0.06944086137014283 +254465,1272.3250000161668,-0.06944085626296204 +254466,1272.3300000161669,-0.06944085115265392 +254467,1272.335000016167,-0.06944084603921961 +254468,1272.340000016167,-0.06944084092266017 +254469,1272.3450000161672,-0.06944083580297672 +254470,1272.3500000161673,-0.06944083068017035 +254471,1272.3550000161674,-0.06944082555424215 +254472,1272.3600000161675,-0.06944082042519321 +254473,1272.3650000161676,-0.06944081529302464 +254474,1272.3700000161678,-0.06944081015773751 +254475,1272.3750000161679,-0.06944080501933293 +254476,1272.380000016168,-0.06944079987781199 +254477,1272.385000016168,-0.06944079473317578 +254478,1272.3900000161682,-0.06944078958542539 +254479,1272.3950000161683,-0.06944078443456192 +254480,1272.4000000161684,-0.06944077928058645 +254481,1272.4050000161685,-0.06944077412350008 +254482,1272.4100000161686,-0.0694407689633039 +254483,1272.4150000161687,-0.06944076379999897 +254484,1272.4200000161688,-0.06944075863358642 +254485,1272.425000016169,-0.06944075346406733 +254486,1272.430000016169,-0.06944074829144277 +254487,1272.4350000161692,-0.06944074311571384 +254488,1272.4400000161693,-0.06944073793688163 +254489,1272.4450000161694,-0.06944073275494723 +254490,1272.4500000161695,-0.06944072756991174 +254491,1272.4550000161696,-0.0694407223817762 +254492,1272.4600000161697,-0.06944071719054172 +254493,1272.4650000161698,-0.06944071199620941 +254494,1272.47000001617,-0.06944070679878031 +254495,1272.47500001617,-0.06944070159825555 +254496,1272.4800000161702,-0.06944069639463618 +254497,1272.4850000161703,-0.06944069118792329 +254498,1272.4900000161704,-0.06944068597811796 +254499,1272.4950000161705,-0.06944068076522131 +254500,1272.5000000161706,-0.06944067554923437 +254501,1272.5050000161707,-0.06944067033015826 +254502,1272.5100000161708,-0.06944066510799404 +254503,1272.515000016171,-0.0694406598827428 +254504,1272.520000016171,-0.0694406546544056 +254505,1272.5250000161711,-0.06944064942298356 +254506,1272.5300000161712,-0.06944064418847773 +254507,1272.5350000161714,-0.06944063895088921 +254508,1272.5400000161715,-0.06944063371021907 +254509,1272.5450000161716,-0.06944062846646837 +254510,1272.5500000161717,-0.06944062321963822 +254511,1272.5550000161718,-0.06944061796972965 +254512,1272.560000016172,-0.0694406127167438 +254513,1272.565000016172,-0.0694406074606817 +254514,1272.5700000161721,-0.06944060220154445 +254515,1272.5750000161722,-0.06944059693933312 +254516,1272.5800000161723,-0.06944059167404877 +254517,1272.5850000161724,-0.0694405864056925 +254518,1272.5900000161726,-0.06944058113426538 +254519,1272.5950000161727,-0.06944057585976846 +254520,1272.6000000161728,-0.06944057058220283 +254521,1272.6050000161729,-0.0694405653015696 +254522,1272.610000016173,-0.06944056001786979 +254523,1272.615000016173,-0.06944055473110448 +254524,1272.6200000161732,-0.06944054944127477 +254525,1272.6250000161733,-0.0694405441483817 +254526,1272.6300000161734,-0.06944053885242638 +254527,1272.6350000161735,-0.06944053355340983 +254528,1272.6400000161736,-0.06944052825133316 +254529,1272.6450000161738,-0.06944052294619743 +254530,1272.6500000161739,-0.0694405176380037 +254531,1272.655000016174,-0.06944051232675305 +254532,1272.660000016174,-0.06944050701244654 +254533,1272.6650000161742,-0.06944050169508524 +254534,1272.6700000161743,-0.06944049637467023 +254535,1272.6750000161744,-0.06944049105120258 +254536,1272.6800000161745,-0.06944048572468332 +254537,1272.6850000161746,-0.06944048039511357 +254538,1272.6900000161747,-0.06944047506249436 +254539,1272.6950000161748,-0.06944046972682677 +254540,1272.700000016175,-0.06944046438811186 +254541,1272.705000016175,-0.06944045904635068 +254542,1272.7100000161752,-0.06944045370154432 +254543,1272.7150000161753,-0.06944044835369383 +254544,1272.7200000161754,-0.06944044300280028 +254545,1272.7250000161755,-0.06944043764886473 +254546,1272.7300000161756,-0.06944043229188825 +254547,1272.7350000161757,-0.06944042693187188 +254548,1272.7400000161758,-0.06944042156881672 +254549,1272.745000016176,-0.06944041620272381 +254550,1272.750000016176,-0.06944041083359422 +254551,1272.7550000161762,-0.06944040546142898 +254552,1272.7600000161763,-0.06944040008622919 +254553,1272.7650000161764,-0.0694403947079959 +254554,1272.7700000161765,-0.06944038932673015 +254555,1272.7750000161766,-0.069440383942433 +254556,1272.7800000161767,-0.06944037855510554 +254557,1272.7850000161768,-0.06944037316474881 +254558,1272.790000016177,-0.06944036777136385 +254559,1272.795000016177,-0.06944036237495174 +254560,1272.8000000161771,-0.06944035697551354 +254561,1272.8050000161772,-0.0694403515730503 +254562,1272.8100000161774,-0.06944034616756306 +254563,1272.8150000161775,-0.06944034075905291 +254564,1272.8200000161776,-0.06944033534752088 +254565,1272.8250000161777,-0.06944032993296802 +254566,1272.8300000161778,-0.06944032451539539 +254567,1272.835000016178,-0.06944031909480407 +254568,1272.840000016178,-0.06944031367119509 +254569,1272.8450000161781,-0.0694403082445695 +254570,1272.8500000161782,-0.06944030281492836 +254571,1272.8550000161783,-0.06944029738227273 +254572,1272.8600000161784,-0.06944029194660364 +254573,1272.8650000161786,-0.06944028650792217 +254574,1272.8700000161787,-0.06944028106622935 +254575,1272.8750000161788,-0.06944027562152624 +254576,1272.8800000161789,-0.06944027017381389 +254577,1272.885000016179,-0.06944026472309334 +254578,1272.890000016179,-0.06944025926936566 +254579,1272.8950000161792,-0.06944025381263189 +254580,1272.9000000161793,-0.06944024835289306 +254581,1272.9050000161794,-0.06944024289015023 +254582,1272.9100000161795,-0.06944023742440446 +254583,1272.9150000161796,-0.0694402319556568 +254584,1272.9200000161798,-0.06944022648390828 +254585,1272.9250000161799,-0.06944022100915996 +254586,1272.93000001618,-0.06944021553141287 +254587,1272.93500001618,-0.06944021005066807 +254588,1272.9400000161802,-0.0694402045669266 +254589,1272.9450000161803,-0.0694401990801895 +254590,1272.9500000161804,-0.06944019359045782 +254591,1272.9550000161805,-0.06944018809773261 +254592,1272.9600000161806,-0.06944018260201491 +254593,1272.9650000161807,-0.06944017710330577 +254594,1272.9700000161808,-0.06944017160160623 +254595,1272.975000016181,-0.0694401660969173 +254596,1272.980000016181,-0.06944016058924007 +254597,1272.9850000161812,-0.06944015507857558 +254598,1272.9900000161813,-0.06944014956492482 +254599,1272.9950000161814,-0.06944014404828888 +254600,1273.0000000161815,-0.0694401385286688 +254601,1273.0050000161816,-0.0694401330060656 +254602,1273.0100000161817,-0.06944012748048031 +254603,1273.0150000161818,-0.069440121951914 +254604,1273.020000016182,-0.06944011642036767 +254605,1273.025000016182,-0.0694401108858424 +254606,1273.0300000161822,-0.0694401053483392 +254607,1273.0350000161823,-0.06944009980785913 +254608,1273.0400000161824,-0.0694400942644032 +254609,1273.0450000161825,-0.06944008871797247 +254610,1273.0500000161826,-0.06944008316856796 +254611,1273.0550000161827,-0.06944007761619073 +254612,1273.0600000161828,-0.06944007206084178 +254613,1273.065000016183,-0.06944006650252217 +254614,1273.070000016183,-0.06944006094123294 +254615,1273.0750000161831,-0.06944005537697509 +254616,1273.0800000161832,-0.0694400498097497 +254617,1273.0850000161834,-0.06944004423955778 +254618,1273.0900000161835,-0.06944003866640036 +254619,1273.0950000161836,-0.06944003309027848 +254620,1273.1000000161837,-0.06944002751119317 +254621,1273.1050000161838,-0.06944002192914546 +254622,1273.110000016184,-0.06944001634413638 +254623,1273.115000016184,-0.06944001075616697 +254624,1273.1200000161841,-0.06944000516523825 +254625,1273.1250000161842,-0.06943999957135125 +254626,1273.1300000161843,-0.06943999397450702 +254627,1273.1350000161844,-0.06943998837470658 +254628,1273.1400000161846,-0.06943998277195094 +254629,1273.1450000161847,-0.06943997716624115 +254630,1273.1500000161848,-0.06943997155757824 +254631,1273.1550000161849,-0.06943996594596322 +254632,1273.160000016185,-0.06943996033139711 +254633,1273.165000016185,-0.06943995471388098 +254634,1273.1700000161852,-0.06943994909341582 +254635,1273.1750000161853,-0.06943994347000267 +254636,1273.1800000161854,-0.06943993784364254 +254637,1273.1850000161855,-0.06943993221433648 +254638,1273.1900000161856,-0.06943992658208549 +254639,1273.1950000161858,-0.06943992094689061 +254640,1273.2000000161859,-0.06943991530875288 +254641,1273.205000016186,-0.06943990966767329 +254642,1273.210000016186,-0.06943990402365288 +254643,1273.2150000161862,-0.06943989837669268 +254644,1273.2200000161863,-0.0694398927267937 +254645,1273.2250000161864,-0.06943988707395697 +254646,1273.2300000161865,-0.06943988141818351 +254647,1273.2350000161866,-0.06943987575947433 +254648,1273.2400000161867,-0.06943987009783047 +254649,1273.2450000161869,-0.06943986443325294 +254650,1273.250000016187,-0.06943985876574275 +254651,1273.255000016187,-0.06943985309530094 +254652,1273.2600000161872,-0.06943984742192853 +254653,1273.2650000161873,-0.06943984174562653 +254654,1273.2700000161874,-0.06943983606639598 +254655,1273.2750000161875,-0.06943983038423784 +254656,1273.2800000161876,-0.06943982469915318 +254657,1273.2850000161877,-0.069439819011143 +254658,1273.2900000161878,-0.06943981332020834 +254659,1273.295000016188,-0.06943980762635017 +254660,1273.300000016188,-0.06943980192956954 +254661,1273.3050000161882,-0.06943979622986746 +254662,1273.3100000161883,-0.06943979052724494 +254663,1273.3150000161884,-0.069439784821703 +254664,1273.3200000161885,-0.06943977911324266 +254665,1273.3250000161886,-0.06943977340186491 +254666,1273.3300000161887,-0.06943976768757079 +254667,1273.3350000161888,-0.06943976197036132 +254668,1273.340000016189,-0.06943975625023747 +254669,1273.345000016189,-0.0694397505272003 +254670,1273.3500000161891,-0.06943974480125081 +254671,1273.3550000161893,-0.06943973907239 +254672,1273.3600000161894,-0.06943973334061887 +254673,1273.3650000161895,-0.06943972760593846 +254674,1273.3700000161896,-0.06943972186834976 +254675,1273.3750000161897,-0.0694397161278538 +254676,1273.3800000161898,-0.06943971038445157 +254677,1273.38500001619,-0.0694397046381441 +254678,1273.39000001619,-0.06943969888893237 +254679,1273.3950000161901,-0.06943969313681742 +254680,1273.4000000161902,-0.06943968738180023 +254681,1273.4050000161903,-0.06943968162388181 +254682,1273.4100000161905,-0.06943967586306318 +254683,1273.4150000161906,-0.06943967009934536 +254684,1273.4200000161907,-0.06943966433272934 +254685,1273.4250000161908,-0.06943965856321613 +254686,1273.430000016191,-0.06943965279080673 +254687,1273.435000016191,-0.06943964701550215 +254688,1273.440000016191,-0.0694396412373034 +254689,1273.4450000161912,-0.06943963545621146 +254690,1273.4500000161913,-0.06943962967222737 +254691,1273.4550000161914,-0.0694396238853521 +254692,1273.4600000161915,-0.0694396180955867 +254693,1273.4650000161917,-0.06943961230293212 +254694,1273.4700000161918,-0.0694396065073894 +254695,1273.4750000161919,-0.06943960070895952 +254696,1273.480000016192,-0.0694395949076435 +254697,1273.485000016192,-0.06943958910344232 +254698,1273.4900000161922,-0.069439583296357 +254699,1273.4950000161923,-0.06943957748638852 +254700,1273.5000000161924,-0.0694395716735379 +254701,1273.5050000161925,-0.06943956585780614 +254702,1273.5100000161926,-0.06943956003919423 +254703,1273.5150000161927,-0.06943955421770318 +254704,1273.5200000161929,-0.06943954839333398 +254705,1273.525000016193,-0.06943954256608763 +254706,1273.530000016193,-0.06943953673596512 +254707,1273.5350000161932,-0.06943953090296746 +254708,1273.5400000161933,-0.06943952506709565 +254709,1273.5450000161934,-0.06943951922835066 +254710,1273.5500000161935,-0.06943951338673353 +254711,1273.5550000161936,-0.0694395075422452 +254712,1273.5600000161937,-0.06943950169488673 +254713,1273.5650000161938,-0.06943949584465907 +254714,1273.570000016194,-0.06943948999156323 +254715,1273.575000016194,-0.06943948413560018 +254716,1273.5800000161942,-0.06943947827677095 +254717,1273.5850000161943,-0.06943947241507653 +254718,1273.5900000161944,-0.0694394665505179 +254719,1273.5950000161945,-0.06943946068309605 +254720,1273.6000000161946,-0.06943945481281198 +254721,1273.6050000161947,-0.06943944893966666 +254722,1273.6100000161948,-0.06943944306366112 +254723,1273.615000016195,-0.06943943718479632 +254724,1273.620000016195,-0.06943943130307328 +254725,1273.6250000161951,-0.06943942541849296 +254726,1273.6300000161953,-0.06943941953105637 +254727,1273.6350000161954,-0.0694394136407645 +254728,1273.6400000161955,-0.06943940774761832 +254729,1273.6450000161956,-0.06943940185161884 +254730,1273.6500000161957,-0.06943939595276705 +254731,1273.6550000161958,-0.0694393900510639 +254732,1273.660000016196,-0.06943938414651044 +254733,1273.665000016196,-0.0694393782391076 +254734,1273.6700000161961,-0.0694393723288564 +254735,1273.6750000161962,-0.0694393664157578 +254736,1273.6800000161963,-0.06943936049981282 +254737,1273.6850000161965,-0.06943935458102243 +254738,1273.6900000161966,-0.06943934865938761 +254739,1273.6950000161967,-0.06943934273490934 +254740,1273.7000000161968,-0.06943933680758864 +254741,1273.705000016197,-0.06943933087742644 +254742,1273.710000016197,-0.06943932494442377 +254743,1273.715000016197,-0.06943931900858161 +254744,1273.7200000161972,-0.06943931306990091 +254745,1273.7250000161973,-0.06943930712838267 +254746,1273.7300000161974,-0.06943930118402787 +254747,1273.7350000161975,-0.0694392952368375 +254748,1273.7400000161977,-0.06943928928681256 +254749,1273.7450000161978,-0.06943928333395398 +254750,1273.7500000161979,-0.06943927737826279 +254751,1273.755000016198,-0.06943927141973993 +254752,1273.760000016198,-0.06943926545838641 +254753,1273.7650000161982,-0.0694392594942032 +254754,1273.7700000161983,-0.06943925352719128 +254755,1273.7750000161984,-0.06943924755735163 +254756,1273.7800000161985,-0.06943924158468522 +254757,1273.7850000161986,-0.06943923560919303 +254758,1273.7900000161987,-0.06943922963087605 +254759,1273.7950000161989,-0.06943922364973526 +254760,1273.800000016199,-0.06943921766577162 +254761,1273.805000016199,-0.0694392116789861 +254762,1273.8100000161992,-0.0694392056893797 +254763,1273.8150000161993,-0.06943919969695336 +254764,1273.8200000161994,-0.0694391937017081 +254765,1273.8250000161995,-0.06943918770364488 +254766,1273.8300000161996,-0.06943918170276465 +254767,1273.8350000161997,-0.06943917569906842 +254768,1273.8400000161998,-0.06943916969255713 +254769,1273.8450000162,-0.06943916368323179 +254770,1273.8500000162,-0.06943915767109335 +254771,1273.8550000162002,-0.06943915165614277 +254772,1273.8600000162003,-0.06943914563838105 +254773,1273.8650000162004,-0.06943913961780915 +254774,1273.8700000162005,-0.06943913359442805 +254775,1273.8750000162006,-0.06943912756823871 +254776,1273.8800000162007,-0.0694391215392421 +254777,1273.8850000162008,-0.06943911550743918 +254778,1273.890000016201,-0.06943910947283095 +254779,1273.895000016201,-0.06943910343541836 +254780,1273.9000000162011,-0.06943909739520238 +254781,1273.9050000162013,-0.069439091352184 +254782,1273.9100000162014,-0.06943908530636415 +254783,1273.9150000162015,-0.06943907925774383 +254784,1273.9200000162016,-0.069439073206324 +254785,1273.9250000162017,-0.06943906715210561 +254786,1273.9300000162018,-0.06943906109508964 +254787,1273.935000016202,-0.06943905503527707 +254788,1273.940000016202,-0.06943904897266884 +254789,1273.9450000162021,-0.06943904290726595 +254790,1273.9500000162022,-0.06943903683906932 +254791,1273.9550000162023,-0.06943903076807995 +254792,1273.9600000162025,-0.0694390246942988 +254793,1273.9650000162026,-0.06943901861772682 +254794,1273.9700000162027,-0.06943901253836497 +254795,1273.9750000162028,-0.06943900645621424 +254796,1273.980000016203,-0.06943900037127558 +254797,1273.985000016203,-0.06943899428354997 +254798,1273.990000016203,-0.06943898819303833 +254799,1273.9950000162032,-0.06943898209974166 +254800,1274.0000000162033,-0.06943897600366089 +254801,1274.0050000162034,-0.069438969904797 +254802,1274.0100000162035,-0.06943896380315095 +254803,1274.0150000162037,-0.06943895769872371 +254804,1274.0200000162038,-0.06943895159151624 +254805,1274.0250000162039,-0.06943894548152946 +254806,1274.030000016204,-0.06943893936876439 +254807,1274.035000016204,-0.06943893325322194 +254808,1274.0400000162042,-0.06943892713490309 +254809,1274.0450000162043,-0.06943892101380879 +254810,1274.0500000162044,-0.06943891488994 +254811,1274.0550000162045,-0.06943890876329768 +254812,1274.0600000162046,-0.06943890263388279 +254813,1274.0650000162047,-0.0694388965016963 +254814,1274.0700000162049,-0.06943889036673913 +254815,1274.075000016205,-0.06943888422901226 +254816,1274.080000016205,-0.06943887808851665 +254817,1274.0850000162052,-0.06943887194525324 +254818,1274.0900000162053,-0.069438865799223 +254819,1274.0950000162054,-0.06943885965042687 +254820,1274.1000000162055,-0.0694388534988658 +254821,1274.1050000162056,-0.06943884734454077 +254822,1274.1100000162057,-0.0694388411874527 +254823,1274.1150000162058,-0.06943883502760256 +254824,1274.120000016206,-0.06943882886499132 +254825,1274.125000016206,-0.0694388226996199 +254826,1274.1300000162062,-0.06943881653148928 +254827,1274.1350000162063,-0.06943881036060039 +254828,1274.1400000162064,-0.06943880418695418 +254829,1274.1450000162065,-0.06943879801055163 +254830,1274.1500000162066,-0.06943879183139365 +254831,1274.1550000162067,-0.06943878564948122 +254832,1274.1600000162068,-0.06943877946481528 +254833,1274.165000016207,-0.06943877327739677 +254834,1274.170000016207,-0.06943876708722665 +254835,1274.1750000162072,-0.06943876089430587 +254836,1274.1800000162073,-0.06943875469863538 +254837,1274.1850000162074,-0.06943874850021611 +254838,1274.1900000162075,-0.069438742299049 +254839,1274.1950000162076,-0.06943873609513504 +254840,1274.2000000162077,-0.06943872988847516 +254841,1274.2050000162078,-0.06943872367907028 +254842,1274.210000016208,-0.06943871746692136 +254843,1274.215000016208,-0.06943871125202937 +254844,1274.2200000162081,-0.06943870503439521 +254845,1274.2250000162082,-0.06943869881401986 +254846,1274.2300000162084,-0.06943869259090425 +254847,1274.2350000162085,-0.06943868636504934 +254848,1274.2400000162086,-0.06943868013645604 +254849,1274.2450000162087,-0.06943867390512533 +254850,1274.2500000162088,-0.06943866767105814 +254851,1274.255000016209,-0.0694386614342554 +254852,1274.260000016209,-0.06943865519471805 +254853,1274.2650000162091,-0.06943864895244706 +254854,1274.2700000162092,-0.06943864270744335 +254855,1274.2750000162093,-0.06943863645970787 +254856,1274.2800000162094,-0.06943863020924156 +254857,1274.2850000162096,-0.06943862395604533 +254858,1274.2900000162097,-0.06943861770012016 +254859,1274.2950000162098,-0.06943861144146697 +254860,1274.3000000162099,-0.06943860518008672 +254861,1274.30500001621,-0.06943859891598034 +254862,1274.31000001621,-0.06943859264914874 +254863,1274.3150000162102,-0.0694385863795929 +254864,1274.3200000162103,-0.06943858010731371 +254865,1274.3250000162104,-0.06943857383231214 +254866,1274.3300000162105,-0.06943856755458913 +254867,1274.3350000162106,-0.0694385612741456 +254868,1274.3400000162108,-0.0694385549909825 +254869,1274.3450000162109,-0.06943854870510076 +254870,1274.350000016211,-0.06943854241650131 +254871,1274.355000016211,-0.0694385361251851 +254872,1274.3600000162112,-0.06943852983115305 +254873,1274.3650000162113,-0.06943852353440609 +254874,1274.3700000162114,-0.06943851723494517 +254875,1274.3750000162115,-0.06943851093277122 +254876,1274.3800000162116,-0.06943850462788516 +254877,1274.3850000162117,-0.06943849832028794 +254878,1274.3900000162118,-0.06943849200998048 +254879,1274.395000016212,-0.06943848569696372 +254880,1274.400000016212,-0.06943847938123858 +254881,1274.4050000162122,-0.06943847306280601 +254882,1274.4100000162123,-0.06943846674166693 +254883,1274.4150000162124,-0.06943846041782227 +254884,1274.4200000162125,-0.06943845409127296 +254885,1274.4250000162126,-0.06943844776201993 +254886,1274.4300000162127,-0.06943844143006411 +254887,1274.4350000162128,-0.06943843509540644 +254888,1274.440000016213,-0.06943842875804782 +254889,1274.445000016213,-0.06943842241798921 +254890,1274.4500000162132,-0.06943841607523153 +254891,1274.4550000162133,-0.0694384097297757 +254892,1274.4600000162134,-0.06943840338162265 +254893,1274.4650000162135,-0.0694383970307733 +254894,1274.4700000162136,-0.06943839067722858 +254895,1274.4750000162137,-0.06943838432098944 +254896,1274.4800000162138,-0.06943837796205676 +254897,1274.485000016214,-0.06943837160043151 +254898,1274.490000016214,-0.06943836523611459 +254899,1274.4950000162141,-0.06943835886910693 +254900,1274.5000000162142,-0.06943835249940947 +254901,1274.5050000162144,-0.0694383461270231 +254902,1274.5100000162145,-0.06943833975194875 +254903,1274.5150000162146,-0.06943833337418738 +254904,1274.5200000162147,-0.06943832699373988 +254905,1274.5250000162148,-0.06943832061060717 +254906,1274.530000016215,-0.0694383142247902 +254907,1274.535000016215,-0.06943830783628988 +254908,1274.5400000162151,-0.06943830144510713 +254909,1274.5450000162152,-0.06943829505124287 +254910,1274.5500000162153,-0.069438288654698 +254911,1274.5550000162154,-0.06943828225547347 +254912,1274.5600000162156,-0.0694382758535702 +254913,1274.5650000162157,-0.06943826944898908 +254914,1274.5700000162158,-0.06943826304173105 +254915,1274.5750000162159,-0.06943825663179704 +254916,1274.580000016216,-0.06943825021918794 +254917,1274.585000016216,-0.0694382438039047 +254918,1274.5900000162162,-0.06943823738594822 +254919,1274.5950000162163,-0.06943823096531941 +254920,1274.6000000162164,-0.0694382245420192 +254921,1274.6050000162165,-0.0694382181160485 +254922,1274.6100000162166,-0.06943821168740824 +254923,1274.6150000162168,-0.06943820525609933 +254924,1274.6200000162169,-0.06943819882212265 +254925,1274.625000016217,-0.06943819238547917 +254926,1274.630000016217,-0.06943818594616978 +254927,1274.6350000162172,-0.0694381795041954 +254928,1274.6400000162173,-0.06943817305955693 +254929,1274.6450000162174,-0.0694381666122553 +254930,1274.6500000162175,-0.06943816016229142 +254931,1274.6550000162176,-0.06943815370966619 +254932,1274.6600000162177,-0.06943814725438054 +254933,1274.6650000162178,-0.06943814079643539 +254934,1274.670000016218,-0.06943813433583161 +254935,1274.675000016218,-0.06943812787257016 +254936,1274.6800000162182,-0.06943812140665191 +254937,1274.6850000162183,-0.06943811493807782 +254938,1274.6900000162184,-0.06943810846684875 +254939,1274.6950000162185,-0.06943810199296564 +254940,1274.7000000162186,-0.0694380955164294 +254941,1274.7050000162187,-0.06943808903724093 +254942,1274.7100000162188,-0.06943808255540114 +254943,1274.715000016219,-0.06943807607091095 +254944,1274.720000016219,-0.06943806958377123 +254945,1274.7250000162192,-0.06943806309398293 +254946,1274.7300000162193,-0.06943805660154694 +254947,1274.7350000162194,-0.06943805010646417 +254948,1274.7400000162195,-0.06943804360873554 +254949,1274.7450000162196,-0.06943803710836194 +254950,1274.7500000162197,-0.06943803060534429 +254951,1274.7550000162198,-0.06943802409968347 +254952,1274.76000001622,-0.06943801759138042 +254953,1274.76500001622,-0.06943801108043601 +254954,1274.7700000162201,-0.06943800456685117 +254955,1274.7750000162202,-0.06943799805062681 +254956,1274.7800000162204,-0.0694379915317638 +254957,1274.7850000162205,-0.06943798501026308 +254958,1274.7900000162206,-0.06943797848612553 +254959,1274.7950000162207,-0.06943797195935207 +254960,1274.8000000162208,-0.06943796542994359 +254961,1274.805000016221,-0.069437958897901 +254962,1274.810000016221,-0.0694379523632252 +254963,1274.8150000162211,-0.06943794582591709 +254964,1274.8200000162212,-0.06943793928597757 +254965,1274.8250000162213,-0.06943793274340755 +254966,1274.8300000162214,-0.06943792619820792 +254967,1274.8350000162216,-0.06943791965037958 +254968,1274.8400000162217,-0.06943791309992343 +254969,1274.8450000162218,-0.06943790654684039 +254970,1274.8500000162219,-0.06943789999113131 +254971,1274.855000016222,-0.06943789343279716 +254972,1274.860000016222,-0.06943788687183877 +254973,1274.8650000162222,-0.06943788030825708 +254974,1274.8700000162223,-0.06943787374205297 +254975,1274.8750000162224,-0.06943786717322735 +254976,1274.8800000162225,-0.06943786060178112 +254977,1274.8850000162226,-0.06943785402771514 +254978,1274.8900000162228,-0.06943784745103035 +254979,1274.8950000162229,-0.06943784087172764 +254980,1274.900000016223,-0.06943783428980786 +254981,1274.905000016223,-0.06943782770527197 +254982,1274.9100000162232,-0.06943782111812083 +254983,1274.9150000162233,-0.06943781452835533 +254984,1274.9200000162234,-0.06943780793597638 +254985,1274.9250000162235,-0.06943780134098486 +254986,1274.9300000162236,-0.06943779474338167 +254987,1274.9350000162237,-0.06943778814316771 +254988,1274.9400000162238,-0.06943778154034387 +254989,1274.945000016224,-0.06943777493491103 +254990,1274.950000016224,-0.0694377683268701 +254991,1274.9550000162242,-0.06943776171622196 +254992,1274.9600000162243,-0.0694377551029675 +254993,1274.9650000162244,-0.06943774848710763 +254994,1274.9700000162245,-0.06943774186864321 +254995,1274.9750000162246,-0.06943773524757517 +254996,1274.9800000162247,-0.06943772862390435 +254997,1274.9850000162248,-0.06943772199763167 +254998,1274.990000016225,-0.06943771536875802 +254999,1274.995000016225,-0.06943770873728429 +255000,1275.0000000162252,-0.06943770210321135 +255001,1275.0050000162253,-0.0694376954665401 +255002,1275.0100000162254,-0.06943768882727144 +255003,1275.0150000162255,-0.06943768218540625 +255004,1275.0200000162256,-0.0694376755409454 +255005,1275.0250000162257,-0.0694376688938898 +255006,1275.0300000162258,-0.06943766224424033 +255007,1275.035000016226,-0.06943765559199787 +255008,1275.040000016226,-0.06943764893716331 +255009,1275.0450000162261,-0.06943764227973752 +255010,1275.0500000162262,-0.06943763561972141 +255011,1275.0550000162264,-0.06943762895711585 +255012,1275.0600000162265,-0.06943762229192173 +255013,1275.0650000162266,-0.06943761562413993 +255014,1275.0700000162267,-0.06943760895377134 +255015,1275.0750000162268,-0.06943760228081682 +255016,1275.080000016227,-0.06943759560527728 +255017,1275.085000016227,-0.0694375889271536 +255018,1275.0900000162271,-0.06943758224644665 +255019,1275.0950000162272,-0.06943757556315733 +255020,1275.1000000162273,-0.0694375688772865 +255021,1275.1050000162275,-0.06943756218883507 +255022,1275.1100000162276,-0.06943755549780388 +255023,1275.1150000162277,-0.06943754880419385 +255024,1275.1200000162278,-0.06943754210800585 +255025,1275.125000016228,-0.06943753540924072 +255026,1275.130000016228,-0.06943752870789939 +255027,1275.135000016228,-0.06943752200398272 +255028,1275.1400000162282,-0.0694375152974916 +255029,1275.1450000162283,-0.0694375085884269 +255030,1275.1500000162284,-0.06943750187678949 +255031,1275.1550000162285,-0.06943749516258024 +255032,1275.1600000162287,-0.06943748844580006 +255033,1275.1650000162288,-0.0694374817264498 +255034,1275.1700000162289,-0.06943747500453036 +255035,1275.175000016229,-0.06943746828004259 +255036,1275.180000016229,-0.06943746155298737 +255037,1275.1850000162292,-0.0694374548233656 +255038,1275.1900000162293,-0.06943744809117813 +255039,1275.1950000162294,-0.06943744135642584 +255040,1275.2000000162295,-0.06943743461910962 +255041,1275.2050000162296,-0.06943742787923031 +255042,1275.2100000162297,-0.06943742113678883 +255043,1275.2150000162299,-0.06943741439178602 +255044,1275.22000001623,-0.06943740764422278 +255045,1275.22500001623,-0.06943740089409996 +255046,1275.2300000162302,-0.06943739414141842 +255047,1275.2350000162303,-0.06943738738617906 +255048,1275.2400000162304,-0.06943738062838276 +255049,1275.2450000162305,-0.06943737386803037 +255050,1275.2500000162306,-0.06943736710512274 +255051,1275.2550000162307,-0.0694373603396608 +255052,1275.2600000162308,-0.06943735357164538 +255053,1275.265000016231,-0.06943734680107734 +255054,1275.270000016231,-0.06943734002795758 +255055,1275.2750000162312,-0.06943733325228695 +255056,1275.2800000162313,-0.06943732647406632 +255057,1275.2850000162314,-0.06943731969329658 +255058,1275.2900000162315,-0.0694373129099786 +255059,1275.2950000162316,-0.0694373061241132 +255060,1275.3000000162317,-0.06943729933570128 +255061,1275.3050000162318,-0.06943729254474372 +255062,1275.310000016232,-0.06943728575124136 +255063,1275.315000016232,-0.06943727895519508 +255064,1275.3200000162321,-0.06943727215660576 +255065,1275.3250000162323,-0.06943726535547425 +255066,1275.3300000162324,-0.06943725855180141 +255067,1275.3350000162325,-0.06943725174558811 +255068,1275.3400000162326,-0.06943724493683523 +255069,1275.3450000162327,-0.06943723812554362 +255070,1275.3500000162328,-0.06943723131171414 +255071,1275.355000016233,-0.06943722449534767 +255072,1275.360000016233,-0.06943721767644506 +255073,1275.3650000162331,-0.06943721085500718 +255074,1275.3700000162332,-0.06943720403103489 +255075,1275.3750000162333,-0.06943719720452904 +255076,1275.3800000162335,-0.06943719037549052 +255077,1275.3850000162336,-0.06943718354392017 +255078,1275.3900000162337,-0.06943717670981887 +255079,1275.3950000162338,-0.06943716987318747 +255080,1275.400000016234,-0.06943716303402682 +255081,1275.405000016234,-0.06943715619233781 +255082,1275.410000016234,-0.06943714934812127 +255083,1275.4150000162342,-0.06943714250137807 +255084,1275.4200000162343,-0.06943713565210907 +255085,1275.4250000162344,-0.06943712880031513 +255086,1275.4300000162345,-0.06943712194599712 +255087,1275.4350000162347,-0.06943711508915588 +255088,1275.4400000162348,-0.0694371082297923 +255089,1275.4450000162349,-0.06943710136790718 +255090,1275.450000016235,-0.06943709450350143 +255091,1275.455000016235,-0.06943708763657588 +255092,1275.4600000162352,-0.06943708076713141 +255093,1275.4650000162353,-0.06943707389516886 +255094,1275.4700000162354,-0.06943706702068907 +255095,1275.4750000162355,-0.06943706014369293 +255096,1275.4800000162356,-0.06943705326418127 +255097,1275.4850000162357,-0.06943704638215496 +255098,1275.4900000162359,-0.06943703949761484 +255099,1275.495000016236,-0.0694370326105618 +255100,1275.500000016236,-0.06943702572099666 +255101,1275.5050000162362,-0.06943701882892027 +255102,1275.5100000162363,-0.06943701193433349 +255103,1275.5150000162364,-0.0694370050372372 +255104,1275.5200000162365,-0.06943699813763221 +255105,1275.5250000162366,-0.06943699123551941 +255106,1275.5300000162367,-0.06943698433089963 +255107,1275.5350000162368,-0.06943697742377372 +255108,1275.540000016237,-0.06943697051414256 +255109,1275.545000016237,-0.06943696360200698 +255110,1275.5500000162372,-0.06943695668736781 +255111,1275.5550000162373,-0.06943694977022592 +255112,1275.5600000162374,-0.06943694285058218 +255113,1275.5650000162375,-0.0694369359284374 +255114,1275.5700000162376,-0.06943692900379247 +255115,1275.5750000162377,-0.06943692207664821 +255116,1275.5800000162378,-0.06943691514700548 +255117,1275.585000016238,-0.06943690821486513 +255118,1275.590000016238,-0.069436901280228 +255119,1275.5950000162381,-0.06943689434309495 +255120,1275.6000000162383,-0.06943688740346682 +255121,1275.6050000162384,-0.06943688046134444 +255122,1275.6100000162385,-0.06943687351672868 +255123,1275.6150000162386,-0.06943686656962038 +255124,1275.6200000162387,-0.06943685962002039 +255125,1275.6250000162388,-0.06943685266792954 +255126,1275.630000016239,-0.06943684571334871 +255127,1275.635000016239,-0.06943683875627871 +255128,1275.6400000162391,-0.0694368317967204 +255129,1275.6450000162392,-0.06943682483467462 +255130,1275.6500000162393,-0.0694368178701422 +255131,1275.6550000162395,-0.06943681090312402 +255132,1275.6600000162396,-0.06943680393362091 +255133,1275.6650000162397,-0.06943679696163368 +255134,1275.6700000162398,-0.06943678998716322 +255135,1275.67500001624,-0.06943678301021035 +255136,1275.68000001624,-0.0694367760307759 +255137,1275.68500001624,-0.06943676904886073 +255138,1275.6900000162402,-0.06943676206446567 +255139,1275.6950000162403,-0.06943675507759157 +255140,1275.7000000162404,-0.06943674808823927 +255141,1275.7050000162405,-0.06943674109640961 +255142,1275.7100000162407,-0.06943673410210342 +255143,1275.7150000162408,-0.06943672710532153 +255144,1275.7200000162409,-0.06943672010606483 +255145,1275.725000016241,-0.06943671310433411 +255146,1275.730000016241,-0.06943670610013022 +255147,1275.7350000162412,-0.06943669909345401 +255148,1275.7400000162413,-0.06943669208430632 +255149,1275.7450000162414,-0.06943668507268796 +255150,1275.7500000162415,-0.0694366780585998 +255151,1275.7550000162416,-0.06943667104204265 +255152,1275.7600000162417,-0.06943666402301737 +255153,1275.7650000162419,-0.06943665700152479 +255154,1275.770000016242,-0.06943664997756574 +255155,1275.775000016242,-0.06943664295114105 +255156,1275.7800000162422,-0.06943663592225156 +255157,1275.7850000162423,-0.06943662889089812 +255158,1275.7900000162424,-0.06943662185708155 +255159,1275.7950000162425,-0.06943661482080268 +255160,1275.8000000162426,-0.06943660778206237 +255161,1275.8050000162427,-0.06943660074086143 +255162,1275.8100000162428,-0.06943659369720069 +255163,1275.815000016243,-0.069436586651081 +255164,1275.820000016243,-0.06943657960250318 +255165,1275.8250000162432,-0.06943657255146808 +255166,1275.8300000162433,-0.0694365654979765 +255167,1275.8350000162434,-0.06943655844202931 +255168,1275.8400000162435,-0.06943655138362732 +255169,1275.8450000162436,-0.06943654432277135 +255170,1275.8500000162437,-0.06943653725946226 +255171,1275.8550000162438,-0.06943653019370084 +255172,1275.860000016244,-0.06943652312548797 +255173,1275.865000016244,-0.06943651605482444 +255174,1275.8700000162441,-0.0694365089817111 +255175,1275.8750000162443,-0.06943650190614878 +255176,1275.8800000162444,-0.0694364948281383 +255177,1275.8850000162445,-0.06943648774768049 +255178,1275.8900000162446,-0.06943648066477617 +255179,1275.8950000162447,-0.0694364735794262 +255180,1275.9000000162448,-0.06943646649163136 +255181,1275.905000016245,-0.06943645940139251 +255182,1275.910000016245,-0.06943645230871047 +255183,1275.9150000162451,-0.06943644521358606 +255184,1275.9200000162452,-0.06943643811602013 +255185,1275.9250000162453,-0.06943643101601348 +255186,1275.9300000162455,-0.06943642391356693 +255187,1275.9350000162456,-0.06943641680868132 +255188,1275.9400000162457,-0.06943640970135748 +255189,1275.9450000162458,-0.06943640259159622 +255190,1275.950000016246,-0.06943639547939837 +255191,1275.955000016246,-0.06943638836476476 +255192,1275.960000016246,-0.06943638124769622 +255193,1275.9650000162462,-0.06943637412819355 +255194,1275.9700000162463,-0.06943636700625759 +255195,1275.9750000162464,-0.06943635988188915 +255196,1275.9800000162465,-0.06943635275508907 +255197,1275.9850000162467,-0.06943634562585815 +255198,1275.9900000162468,-0.06943633849419723 +255199,1275.9950000162469,-0.06943633136010713 +255200,1276.000000016247,-0.06943632422358867 +255201,1276.005000016247,-0.06943631708464267 +255202,1276.0100000162472,-0.06943630994326994 +255203,1276.0150000162473,-0.0694363027994713 +255204,1276.0200000162474,-0.06943629565324758 +255205,1276.0250000162475,-0.06943628850459958 +255206,1276.0300000162476,-0.06943628135352815 +255207,1276.0350000162477,-0.0694362742000341 +255208,1276.0400000162479,-0.06943626704411825 +255209,1276.045000016248,-0.06943625988578138 +255210,1276.050000016248,-0.06943625272502436 +255211,1276.0550000162482,-0.06943624556184798 +255212,1276.0600000162483,-0.06943623839625307 +255213,1276.0650000162484,-0.06943623122824044 +255214,1276.0700000162485,-0.0694362240578109 +255215,1276.0750000162486,-0.06943621688496528 +255216,1276.0800000162487,-0.06943620970970438 +255217,1276.0850000162488,-0.06943620253202902 +255218,1276.090000016249,-0.06943619535194001 +255219,1276.095000016249,-0.0694361881694382 +255220,1276.1000000162492,-0.06943618098452435 +255221,1276.1050000162493,-0.06943617379719932 +255222,1276.1100000162494,-0.0694361666074639 +255223,1276.1150000162495,-0.06943615941531892 +255224,1276.1200000162496,-0.06943615222076517 +255225,1276.1250000162497,-0.06943614502380348 +255226,1276.1300000162498,-0.06943613782443465 +255227,1276.13500001625,-0.0694361306226595 +255228,1276.14000001625,-0.06943612341847887 +255229,1276.1450000162502,-0.06943611621189351 +255230,1276.1500000162503,-0.06943610900290427 +255231,1276.1550000162504,-0.06943610179151198 +255232,1276.1600000162505,-0.0694360945777174 +255233,1276.1650000162506,-0.06943608736152138 +255234,1276.1700000162507,-0.06943608014292471 +255235,1276.1750000162508,-0.06943607292192822 +255236,1276.180000016251,-0.0694360656985327 +255237,1276.185000016251,-0.06943605847273895 +255238,1276.1900000162511,-0.06943605124454781 +255239,1276.1950000162512,-0.06943604401396007 +255240,1276.2000000162514,-0.06943603678097654 +255241,1276.2050000162515,-0.06943602954559804 +255242,1276.2100000162516,-0.06943602230782533 +255243,1276.2150000162517,-0.06943601506765928 +255244,1276.2200000162518,-0.06943600782510068 +255245,1276.225000016252,-0.06943600058015031 +255246,1276.230000016252,-0.06943599333280899 +255247,1276.2350000162521,-0.06943598608307754 +255248,1276.2400000162522,-0.06943597883095674 +255249,1276.2450000162523,-0.06943597157644742 +255250,1276.2500000162524,-0.06943596431955036 +255251,1276.2550000162526,-0.0694359570602664 +255252,1276.2600000162527,-0.0694359497985963 +255253,1276.2650000162528,-0.0694359425345409 +255254,1276.2700000162529,-0.06943593526810099 +255255,1276.275000016253,-0.06943592799927736 +255256,1276.280000016253,-0.06943592072807084 +255257,1276.2850000162532,-0.06943591345448222 +255258,1276.2900000162533,-0.0694359061785123 +255259,1276.2950000162534,-0.06943589890016187 +255260,1276.3000000162535,-0.06943589161943176 +255261,1276.3050000162536,-0.06943588433632276 +255262,1276.3100000162538,-0.06943587705083566 +255263,1276.3150000162539,-0.06943586976297127 +255264,1276.320000016254,-0.06943586247273038 +255265,1276.325000016254,-0.0694358551801138 +255266,1276.3300000162542,-0.06943584788512235 +255267,1276.3350000162543,-0.06943584058775679 +255268,1276.3400000162544,-0.06943583328801795 +255269,1276.3450000162545,-0.0694358259859066 +255270,1276.3500000162546,-0.06943581868142357 +255271,1276.3550000162547,-0.06943581137456964 +255272,1276.3600000162548,-0.06943580406534561 +255273,1276.365000016255,-0.06943579675375228 +255274,1276.370000016255,-0.06943578943979044 +255275,1276.3750000162552,-0.0694357821234609 +255276,1276.3800000162553,-0.06943577480476444 +255277,1276.3850000162554,-0.06943576748370187 +255278,1276.3900000162555,-0.06943576016027399 +255279,1276.3950000162556,-0.06943575283448158 +255280,1276.4000000162557,-0.06943574550632545 +255281,1276.4050000162558,-0.06943573817580638 +255282,1276.410000016256,-0.06943573084292518 +255283,1276.415000016256,-0.06943572350768262 +255284,1276.4200000162562,-0.06943571617007953 +255285,1276.4250000162563,-0.06943570883011668 +255286,1276.4300000162564,-0.06943570148779488 +255287,1276.4350000162565,-0.06943569414311489 +255288,1276.4400000162566,-0.06943568679607753 +255289,1276.4450000162567,-0.06943567944668359 +255290,1276.4500000162568,-0.06943567209493387 +255291,1276.455000016257,-0.06943566474082914 +255292,1276.460000016257,-0.0694356573843702 +255293,1276.4650000162571,-0.06943565002555786 +255294,1276.4700000162572,-0.0694356426643929 +255295,1276.4750000162574,-0.06943563530087608 +255296,1276.4800000162575,-0.06943562793500824 +255297,1276.4850000162576,-0.06943562056679013 +255298,1276.4900000162577,-0.06943561319622256 +255299,1276.4950000162578,-0.06943560582330632 +255300,1276.500000016258,-0.0694355984480422 +255301,1276.505000016258,-0.06943559107043097 +255302,1276.5100000162581,-0.06943558369047345 +255303,1276.5150000162582,-0.0694355763081704 +255304,1276.5200000162583,-0.06943556892352261 +255305,1276.5250000162584,-0.06943556153653088 +255306,1276.5300000162586,-0.069435554147196 +255307,1276.5350000162587,-0.06943554675551876 +255308,1276.5400000162588,-0.06943553936149992 +255309,1276.5450000162589,-0.06943553196514028 +255310,1276.550000016259,-0.06943552456644064 +255311,1276.555000016259,-0.06943551716540178 +255312,1276.5600000162592,-0.06943550976202446 +255313,1276.5650000162593,-0.0694355023563095 +255314,1276.5700000162594,-0.06943549494825767 +255315,1276.5750000162595,-0.06943548753786975 +255316,1276.5800000162596,-0.06943548012514653 +255317,1276.5850000162598,-0.06943547271008879 +255318,1276.5900000162599,-0.06943546529269731 +255319,1276.59500001626,-0.0694354578729729 +255320,1276.60000001626,-0.0694354504509163 +255321,1276.6050000162602,-0.06943544302652832 +255322,1276.6100000162603,-0.06943543559980973 +255323,1276.6150000162604,-0.06943542817076134 +255324,1276.6200000162605,-0.0694354207393839 +255325,1276.6250000162606,-0.06943541330567819 +255326,1276.6300000162607,-0.06943540586964503 +255327,1276.6350000162608,-0.06943539843128516 +255328,1276.640000016261,-0.06943539099059937 +255329,1276.645000016261,-0.06943538354758844 +255330,1276.6500000162612,-0.06943537610225314 +255331,1276.6550000162613,-0.06943536865459429 +255332,1276.6600000162614,-0.06943536120461263 +255333,1276.6650000162615,-0.06943535375230896 +255334,1276.6700000162616,-0.06943534629768404 +255335,1276.6750000162617,-0.06943533884073866 +255336,1276.6800000162618,-0.06943533138147359 +255337,1276.685000016262,-0.06943532391988963 +255338,1276.690000016262,-0.06943531645598754 +255339,1276.6950000162622,-0.06943530898976809 +255340,1276.7000000162623,-0.06943530152123206 +255341,1276.7050000162624,-0.06943529405038024 +255342,1276.7100000162625,-0.06943528657721339 +255343,1276.7150000162626,-0.06943527910173229 +255344,1276.7200000162627,-0.06943527162393773 +255345,1276.7250000162628,-0.06943526414383047 +255346,1276.730000016263,-0.06943525666141129 +255347,1276.735000016263,-0.06943524917668095 +255348,1276.7400000162631,-0.06943524168964026 +255349,1276.7450000162632,-0.06943523420028995 +255350,1276.7500000162634,-0.06943522670863082 +255351,1276.7550000162635,-0.06943521921466365 +255352,1276.7600000162636,-0.0694352117183892 +255353,1276.7650000162637,-0.06943520421980824 +255354,1276.7700000162638,-0.06943519671892155 +255355,1276.775000016264,-0.06943518921572989 +255356,1276.780000016264,-0.06943518171023405 +255357,1276.7850000162641,-0.06943517420243478 +255358,1276.7900000162642,-0.06943516669233288 +255359,1276.7950000162643,-0.06943515917992908 +255360,1276.8000000162644,-0.0694351516652242 +255361,1276.8050000162646,-0.06943514414821897 +255362,1276.8100000162647,-0.06943513662891417 +255363,1276.8150000162648,-0.06943512910731058 +255364,1276.8200000162649,-0.06943512158340896 +255365,1276.825000016265,-0.06943511405721009 +255366,1276.830000016265,-0.06943510652871472 +255367,1276.8350000162652,-0.06943509899792365 +255368,1276.8400000162653,-0.06943509146483762 +255369,1276.8450000162654,-0.0694350839294574 +255370,1276.8500000162655,-0.06943507639178376 +255371,1276.8550000162656,-0.06943506885181748 +255372,1276.8600000162658,-0.06943506130955931 +255373,1276.8650000162659,-0.06943505376501004 +255374,1276.870000016266,-0.06943504621817041 +255375,1276.875000016266,-0.06943503866904119 +255376,1276.8800000162662,-0.06943503111762316 +255377,1276.8850000162663,-0.06943502356391708 +255378,1276.8900000162664,-0.06943501600792369 +255379,1276.8950000162665,-0.0694350084496438 +255380,1276.9000000162666,-0.06943500088907816 +255381,1276.9050000162667,-0.06943499332622752 +255382,1276.9100000162668,-0.06943498576109264 +255383,1276.915000016267,-0.0694349781936743 +255384,1276.920000016267,-0.06943497062397326 +255385,1276.9250000162672,-0.06943496305199026 +255386,1276.9300000162673,-0.0694349554777261 +255387,1276.9350000162674,-0.06943494790118153 +255388,1276.9400000162675,-0.06943494032235731 +255389,1276.9450000162676,-0.06943493274125419 +255390,1276.9500000162677,-0.06943492515787295 +255391,1276.9550000162678,-0.06943491757221432 +255392,1276.960000016268,-0.06943490998427909 +255393,1276.965000016268,-0.06943490239406802 +255394,1276.9700000162682,-0.06943489480158187 +255395,1276.9750000162683,-0.06943488720682138 +255396,1276.9800000162684,-0.06943487960978732 +255397,1276.9850000162685,-0.06943487201048046 +255398,1276.9900000162686,-0.06943486440890156 +255399,1276.9950000162687,-0.06943485680505138 +255400,1277.0000000162688,-0.06943484919893064 +255401,1277.005000016269,-0.06943484159054013 +255402,1277.010000016269,-0.06943483397988061 +255403,1277.0150000162691,-0.06943482636695283 +255404,1277.0200000162693,-0.06943481875175757 +255405,1277.0250000162694,-0.06943481113429555 +255406,1277.0300000162695,-0.06943480351456753 +255407,1277.0350000162696,-0.0694347958925743 +255408,1277.0400000162697,-0.0694347882683166 +255409,1277.0450000162698,-0.06943478064179517 +255410,1277.05000001627,-0.06943477301301078 +255411,1277.05500001627,-0.06943476538196418 +255412,1277.0600000162701,-0.06943475774865612 +255413,1277.0650000162702,-0.06943475011308738 +255414,1277.0700000162703,-0.06943474247525867 +255415,1277.0750000162705,-0.06943473483517079 +255416,1277.0800000162706,-0.06943472719282447 +255417,1277.0850000162707,-0.06943471954822046 +255418,1277.0900000162708,-0.06943471190135952 +255419,1277.095000016271,-0.06943470425224241 +255420,1277.100000016271,-0.06943469660086987 +255421,1277.105000016271,-0.06943468894724267 +255422,1277.1100000162712,-0.06943468129136153 +255423,1277.1150000162713,-0.06943467363322722 +255424,1277.1200000162714,-0.06943466597284051 +255425,1277.1250000162715,-0.06943465831020212 +255426,1277.1300000162717,-0.06943465064531282 +255427,1277.1350000162718,-0.06943464297817334 +255428,1277.1400000162719,-0.06943463530878446 +255429,1277.145000016272,-0.06943462763714692 +255430,1277.150000016272,-0.06943461996326146 +255431,1277.1550000162722,-0.06943461228712881 +255432,1277.1600000162723,-0.06943460460874977 +255433,1277.1650000162724,-0.06943459692812505 +255434,1277.1700000162725,-0.06943458924525539 +255435,1277.1750000162726,-0.06943458156014158 +255436,1277.1800000162727,-0.06943457387278433 +255437,1277.1850000162729,-0.0694345661831844 +255438,1277.190000016273,-0.06943455849134254 +255439,1277.195000016273,-0.0694345507972595 +255440,1277.2000000162732,-0.06943454310093602 +255441,1277.2050000162733,-0.06943453540237286 +255442,1277.2100000162734,-0.06943452770157074 +255443,1277.2150000162735,-0.06943451999853044 +255444,1277.2200000162736,-0.06943451229325266 +255445,1277.2250000162737,-0.06943450458573819 +255446,1277.2300000162738,-0.06943449687598774 +255447,1277.235000016274,-0.06943448916400208 +255448,1277.240000016274,-0.06943448144978193 +255449,1277.2450000162742,-0.06943447373332805 +255450,1277.2500000162743,-0.06943446601464119 +255451,1277.2550000162744,-0.06943445829372208 +255452,1277.2600000162745,-0.06943445057057146 +255453,1277.2650000162746,-0.0694344428451901 +255454,1277.2700000162747,-0.0694344351175787 +255455,1277.2750000162748,-0.06943442738773804 +255456,1277.280000016275,-0.06943441965566885 +255457,1277.285000016275,-0.06943441192137187 +255458,1277.2900000162751,-0.06943440418484782 +255459,1277.2950000162753,-0.06943439644609747 +255460,1277.3000000162754,-0.06943438870512154 +255461,1277.3050000162755,-0.0694343809619208 +255462,1277.3100000162756,-0.06943437321649595 +255463,1277.3150000162757,-0.06943436546884778 +255464,1277.3200000162758,-0.06943435771897698 +255465,1277.325000016276,-0.0694343499668843 +255466,1277.330000016276,-0.0694343422125705 +255467,1277.3350000162761,-0.0694343344560363 +255468,1277.3400000162762,-0.06943432669728246 +255469,1277.3450000162763,-0.06943431893630969 +255470,1277.3500000162765,-0.06943431117311874 +255471,1277.3550000162766,-0.06943430340771035 +255472,1277.3600000162767,-0.06943429564008527 +255473,1277.3650000162768,-0.06943428787024421 +255474,1277.370000016277,-0.06943428009818792 +255475,1277.375000016277,-0.06943427232391713 +255476,1277.380000016277,-0.0694342645474326 +255477,1277.3850000162772,-0.06943425676873503 +255478,1277.3900000162773,-0.06943424898782517 +255479,1277.3950000162774,-0.06943424120470376 +255480,1277.4000000162775,-0.06943423341937154 +255481,1277.4050000162777,-0.06943422563182922 +255482,1277.4100000162778,-0.06943421784207755 +255483,1277.4150000162779,-0.06943421005011728 +255484,1277.420000016278,-0.06943420225594914 +255485,1277.425000016278,-0.06943419445957383 +255486,1277.4300000162782,-0.06943418666099212 +255487,1277.4350000162783,-0.06943417886020471 +255488,1277.4400000162784,-0.06943417105721235 +255489,1277.4450000162785,-0.06943416325201578 +255490,1277.4500000162786,-0.06943415544461573 +255491,1277.4550000162787,-0.0694341476350129 +255492,1277.4600000162789,-0.06943413982320808 +255493,1277.465000016279,-0.06943413200920194 +255494,1277.470000016279,-0.06943412419299526 +255495,1277.4750000162792,-0.06943411637458873 +255496,1277.4800000162793,-0.0694341085539831 +255497,1277.4850000162794,-0.06943410073117912 +255498,1277.4900000162795,-0.06943409290617748 +255499,1277.4950000162796,-0.06943408507897894 +255500,1277.5000000162797,-0.06943407724958421 +255501,1277.5050000162798,-0.06943406941799402 +255502,1277.51000001628,-0.06943406158420909 +255503,1277.51500001628,-0.06943405374823018 +255504,1277.5200000162802,-0.069434045910058 +255505,1277.5250000162803,-0.06943403806969327 +255506,1277.5300000162804,-0.06943403022713673 +255507,1277.5350000162805,-0.0694340223823891 +255508,1277.5400000162806,-0.06943401453545112 +255509,1277.5450000162807,-0.06943400668632349 +255510,1277.5500000162808,-0.06943399883500695 +255511,1277.555000016281,-0.06943399098150223 +255512,1277.560000016281,-0.06943398312581005 +255513,1277.5650000162811,-0.06943397526793113 +255514,1277.5700000162813,-0.06943396740786621 +255515,1277.5750000162814,-0.069433959545616 +255516,1277.5800000162815,-0.06943395168118124 +255517,1277.5850000162816,-0.06943394381456264 +255518,1277.5900000162817,-0.06943393594576093 +255519,1277.5950000162818,-0.06943392807477683 +255520,1277.600000016282,-0.06943392020161107 +255521,1277.605000016282,-0.06943391232626436 +255522,1277.6100000162821,-0.06943390444873744 +255523,1277.6150000162822,-0.06943389656903103 +255524,1277.6200000162823,-0.06943388868714583 +255525,1277.6250000162825,-0.06943388080308258 +255526,1277.6300000162826,-0.069433872916842 +255527,1277.6350000162827,-0.0694338650284248 +255528,1277.6400000162828,-0.06943385713783172 +255529,1277.645000016283,-0.06943384924506349 +255530,1277.650000016283,-0.06943384135012079 +255531,1277.655000016283,-0.06943383345300437 +255532,1277.6600000162832,-0.06943382555371494 +255533,1277.6650000162833,-0.06943381765225323 +255534,1277.6700000162834,-0.06943380974861994 +255535,1277.6750000162835,-0.06943380184281579 +255536,1277.6800000162837,-0.06943379393484153 +255537,1277.6850000162838,-0.06943378602469785 +255538,1277.6900000162839,-0.06943377811238546 +255539,1277.695000016284,-0.0694337701979051 +255540,1277.700000016284,-0.06943376228125749 +255541,1277.7050000162842,-0.06943375436244333 +255542,1277.7100000162843,-0.06943374644146334 +255543,1277.7150000162844,-0.06943373851831826 +255544,1277.7200000162845,-0.06943373059300877 +255545,1277.7250000162846,-0.0694337226655356 +255546,1277.7300000162847,-0.06943371473589947 +255547,1277.7350000162849,-0.06943370680410109 +255548,1277.740000016285,-0.06943369887014118 +255549,1277.745000016285,-0.06943369093402046 +255550,1277.7500000162852,-0.06943368299573964 +255551,1277.7550000162853,-0.06943367505529943 +255552,1277.7600000162854,-0.06943366711270055 +255553,1277.7650000162855,-0.06943365916794371 +255554,1277.7700000162856,-0.06943365122102962 +255555,1277.7750000162857,-0.069433643271959 +255556,1277.7800000162858,-0.06943363532073256 +255557,1277.785000016286,-0.06943362736735102 +255558,1277.790000016286,-0.06943361941181508 +255559,1277.7950000162862,-0.06943361145412547 +255560,1277.8000000162863,-0.06943360349428288 +255561,1277.8050000162864,-0.06943359553228803 +255562,1277.8100000162865,-0.06943358756814165 +255563,1277.8150000162866,-0.06943357960184442 +255564,1277.8200000162867,-0.06943357163339707 +255565,1277.8250000162868,-0.06943356366280029 +255566,1277.830000016287,-0.06943355569005481 +255567,1277.835000016287,-0.06943354771516136 +255568,1277.8400000162871,-0.06943353973812061 +255569,1277.8450000162873,-0.06943353175893327 +255570,1277.8500000162874,-0.06943352377760008 +255571,1277.8550000162875,-0.06943351579412171 +255572,1277.8600000162876,-0.06943350780849891 +255573,1277.8650000162877,-0.06943349982073237 +255574,1277.8700000162878,-0.06943349183082279 +255575,1277.875000016288,-0.06943348383877089 +255576,1277.880000016288,-0.06943347584457736 +255577,1277.8850000162881,-0.06943346784824293 +255578,1277.8900000162882,-0.06943345984976829 +255579,1277.8950000162883,-0.06943345184915414 +255580,1277.9000000162885,-0.06943344384640121 +255581,1277.9050000162886,-0.0694334358415102 +255582,1277.9100000162887,-0.0694334278344818 +255583,1277.9150000162888,-0.06943341982531671 +255584,1277.920000016289,-0.06943341181401567 +255585,1277.925000016289,-0.06943340380057936 +255586,1277.9300000162891,-0.06943339578500848 +255587,1277.9350000162892,-0.06943338776730376 +255588,1277.9400000162893,-0.06943337974746588 +255589,1277.9450000162894,-0.06943337172549555 +255590,1277.9500000162896,-0.06943336370139346 +255591,1277.9550000162897,-0.06943335567516035 +255592,1277.9600000162898,-0.06943334764679687 +255593,1277.9650000162899,-0.06943333961630378 +255594,1277.97000001629,-0.06943333158368176 +255595,1277.97500001629,-0.06943332354893149 +255596,1277.9800000162902,-0.06943331551205369 +255597,1277.9850000162903,-0.06943330747304906 +255598,1277.9900000162904,-0.0694332994319183 +255599,1277.9950000162905,-0.06943329138866211 +255600,1278.0000000162906,-0.06943328334328121 +255601,1278.0050000162908,-0.06943327529577627 +255602,1278.0100000162909,-0.06943326724614801 +255603,1278.015000016291,-0.0694332591943971 +255604,1278.020000016291,-0.06943325114052429 +255605,1278.0250000162912,-0.06943324308453025 +255606,1278.0300000162913,-0.06943323502641567 +255607,1278.0350000162914,-0.06943322696618126 +255608,1278.0400000162915,-0.06943321890382773 +255609,1278.0450000162916,-0.06943321083935575 +255610,1278.0500000162917,-0.06943320277276605 +255611,1278.0550000162918,-0.06943319470405929 +255612,1278.060000016292,-0.06943318663323621 +255613,1278.065000016292,-0.06943317856029746 +255614,1278.0700000162922,-0.06943317048524378 +255615,1278.0750000162923,-0.06943316240807584 +255616,1278.0800000162924,-0.06943315432879436 +255617,1278.0850000162925,-0.06943314624740002 +255618,1278.0900000162926,-0.0694331381638935 +255619,1278.0950000162927,-0.06943313007827552 +255620,1278.1000000162928,-0.06943312199054678 +255621,1278.105000016293,-0.06943311390070796 +255622,1278.110000016293,-0.06943310580875973 +255623,1278.1150000162932,-0.06943309771470282 +255624,1278.1200000162933,-0.06943308961853793 +255625,1278.1250000162934,-0.06943308152026573 +255626,1278.1300000162935,-0.06943307341988693 +255627,1278.1350000162936,-0.0694330653174022 +255628,1278.1400000162937,-0.06943305721281226 +255629,1278.1450000162938,-0.06943304910611778 +255630,1278.150000016294,-0.06943304099731946 +255631,1278.155000016294,-0.069433032886418 +255632,1278.1600000162941,-0.06943302477341409 +255633,1278.1650000162942,-0.06943301665830842 +255634,1278.1700000162944,-0.06943300854110167 +255635,1278.1750000162945,-0.06943300042179455 +255636,1278.1800000162946,-0.06943299230038774 +255637,1278.1850000162947,-0.06943298417688193 +255638,1278.1900000162948,-0.06943297605127781 +255639,1278.195000016295,-0.06943296792357606 +255640,1278.200000016295,-0.0694329597937774 +255641,1278.2050000162951,-0.06943295166188249 +255642,1278.2100000162952,-0.06943294352789202 +255643,1278.2150000162953,-0.0694329353918067 +255644,1278.2200000162954,-0.0694329272536272 +255645,1278.2250000162956,-0.06943291911335422 +255646,1278.2300000162957,-0.06943291097098844 +255647,1278.2350000162958,-0.06943290282653056 +255648,1278.2400000162959,-0.06943289467998125 +255649,1278.245000016296,-0.06943288653134119 +255650,1278.250000016296,-0.0694328783806111 +255651,1278.2550000162962,-0.06943287022779164 +255652,1278.2600000162963,-0.06943286207288352 +255653,1278.2650000162964,-0.0694328539158874 +255654,1278.2700000162965,-0.06943284575680397 +255655,1278.2750000162966,-0.06943283759563393 +255656,1278.2800000162968,-0.06943282943237794 +255657,1278.2850000162969,-0.06943282126703672 +255658,1278.290000016297,-0.06943281309961093 +255659,1278.295000016297,-0.06943280493010126 +255660,1278.3000000162972,-0.06943279675850839 +255661,1278.3050000162973,-0.06943278858483302 +255662,1278.3100000162974,-0.06943278040907581 +255663,1278.3150000162975,-0.06943277223123746 +255664,1278.3200000162976,-0.06943276405131865 +255665,1278.3250000162977,-0.06943275586932007 +255666,1278.3300000162978,-0.0694327476852424 +255667,1278.335000016298,-0.0694327394990863 +255668,1278.340000016298,-0.06943273131085247 +255669,1278.3450000162982,-0.06943272312054158 +255670,1278.3500000162983,-0.06943271492815434 +255671,1278.3550000162984,-0.06943270673369141 +255672,1278.3600000162985,-0.06943269853715346 +255673,1278.3650000162986,-0.0694326903385412 +255674,1278.3700000162987,-0.06943268213785528 +255675,1278.3750000162988,-0.0694326739350964 +255676,1278.380000016299,-0.06943266573026524 +255677,1278.385000016299,-0.06943265752336247 +255678,1278.3900000162992,-0.06943264931438876 +255679,1278.3950000162993,-0.06943264110334482 +255680,1278.4000000162994,-0.0694326328902313 +255681,1278.4050000162995,-0.0694326246750489 +255682,1278.4100000162996,-0.06943261645779827 +255683,1278.4150000162997,-0.06943260823848012 +255684,1278.4200000162998,-0.0694326000170951 +255685,1278.4250000163,-0.06943259179364392 +255686,1278.4300000163,-0.06943258356812722 +255687,1278.4350000163001,-0.0694325753405457 +255688,1278.4400000163002,-0.06943256711090003 +255689,1278.4450000163004,-0.06943255887919088 +255690,1278.4500000163005,-0.06943255064541895 +255691,1278.4550000163006,-0.06943254240958488 +255692,1278.4600000163007,-0.06943253417168938 +255693,1278.4650000163008,-0.0694325259317331 +255694,1278.470000016301,-0.06943251768971671 +255695,1278.475000016301,-0.06943250944564092 +255696,1278.4800000163011,-0.06943250119950638 +255697,1278.4850000163012,-0.06943249295131376 +255698,1278.4900000163013,-0.06943248470106374 +255699,1278.4950000163014,-0.069432476448757 +255700,1278.5000000163016,-0.0694324681943942 +255701,1278.5050000163017,-0.06943245993797603 +255702,1278.5100000163018,-0.06943245167950317 +255703,1278.5150000163019,-0.06943244341897625 +255704,1278.520000016302,-0.06943243515639598 +255705,1278.525000016302,-0.06943242689176303 +255706,1278.5300000163022,-0.06943241862507805 +255707,1278.5350000163023,-0.06943241035634173 +255708,1278.5400000163024,-0.06943240208555475 +255709,1278.5450000163025,-0.06943239381271774 +255710,1278.5500000163026,-0.06943238553783139 +255711,1278.5550000163028,-0.0694323772608964 +255712,1278.5600000163029,-0.06943236898191342 +255713,1278.565000016303,-0.06943236070088311 +255714,1278.570000016303,-0.06943235241780614 +255715,1278.5750000163032,-0.0694323441326832 +255716,1278.5800000163033,-0.06943233584551495 +255717,1278.5850000163034,-0.06943232755630203 +255718,1278.5900000163035,-0.06943231926504514 +255719,1278.5950000163036,-0.06943231097174495 +255720,1278.6000000163037,-0.0694323026764021 +255721,1278.6050000163038,-0.0694322943790173 +255722,1278.610000016304,-0.06943228607959118 +255723,1278.615000016304,-0.06943227777812443 +255724,1278.6200000163042,-0.0694322694746177 +255725,1278.6250000163043,-0.06943226116907167 +255726,1278.6300000163044,-0.069432252861487 +255727,1278.6350000163045,-0.06943224455186436 +255728,1278.6400000163046,-0.06943223624020442 +255729,1278.6450000163047,-0.06943222792650784 +255730,1278.6500000163048,-0.06943221961077528 +255731,1278.655000016305,-0.0694322112930074 +255732,1278.660000016305,-0.06943220297320488 +255733,1278.6650000163052,-0.06943219465136838 +255734,1278.6700000163053,-0.06943218632749856 +255735,1278.6750000163054,-0.06943217800159608 +255736,1278.6800000163055,-0.06943216967366163 +255737,1278.6850000163056,-0.06943216134369586 +255738,1278.6900000163057,-0.06943215301169942 +255739,1278.6950000163058,-0.06943214467767296 +255740,1278.700000016306,-0.06943213634161718 +255741,1278.705000016306,-0.06943212800353273 +255742,1278.7100000163061,-0.06943211966342025 +255743,1278.7150000163062,-0.06943211132128044 +255744,1278.7200000163064,-0.06943210297711393 +255745,1278.7250000163065,-0.0694320946309214 +255746,1278.7300000163066,-0.0694320862827035 +255747,1278.7350000163067,-0.06943207793246091 +255748,1278.7400000163068,-0.06943206958019427 +255749,1278.745000016307,-0.06943206122590424 +255750,1278.750000016307,-0.06943205286959149 +255751,1278.7550000163071,-0.06943204451125667 +255752,1278.7600000163072,-0.06943203615090046 +255753,1278.7650000163073,-0.06943202778852349 +255754,1278.7700000163074,-0.06943201942412644 +255755,1278.7750000163076,-0.06943201105770996 +255756,1278.7800000163077,-0.06943200268927471 +255757,1278.7850000163078,-0.06943199431882136 +255758,1278.7900000163079,-0.06943198594635054 +255759,1278.795000016308,-0.06943197757186294 +255760,1278.800000016308,-0.06943196919535918 +255761,1278.8050000163082,-0.06943196081683996 +255762,1278.8100000163083,-0.06943195243630593 +255763,1278.8150000163084,-0.0694319440537577 +255764,1278.8200000163085,-0.06943193566919598 +255765,1278.8250000163086,-0.0694319272826214 +255766,1278.8300000163088,-0.06943191889403463 +255767,1278.8350000163089,-0.06943191050343633 +255768,1278.840000016309,-0.06943190211082713 +255769,1278.845000016309,-0.0694318937162077 +255770,1278.8500000163092,-0.06943188531957868 +255771,1278.8550000163093,-0.06943187692094076 +255772,1278.8600000163094,-0.06943186852029457 +255773,1278.8650000163095,-0.06943186011764076 +255774,1278.8700000163096,-0.06943185171297998 +255775,1278.8750000163097,-0.0694318433063129 +255776,1278.8800000163099,-0.06943183489764017 +255777,1278.88500001631,-0.06943182648696243 +255778,1278.89000001631,-0.06943181807428037 +255779,1278.8950000163102,-0.0694318096595946 +255780,1278.9000000163103,-0.06943180124290578 +255781,1278.9050000163104,-0.06943179282421456 +255782,1278.9100000163105,-0.06943178440352162 +255783,1278.9150000163106,-0.0694317759808276 +255784,1278.9200000163107,-0.06943176755613313 +255785,1278.9250000163108,-0.06943175912943887 +255786,1278.930000016311,-0.06943175070074549 +255787,1278.935000016311,-0.06943174227005362 +255788,1278.9400000163112,-0.06943173383736392 +255789,1278.9450000163113,-0.06943172540267703 +255790,1278.9500000163114,-0.06943171696599362 +255791,1278.9550000163115,-0.06943170852731431 +255792,1278.9600000163116,-0.06943170008663978 +255793,1278.9650000163117,-0.06943169164397066 +255794,1278.9700000163118,-0.06943168319930759 +255795,1278.975000016312,-0.06943167475265123 +255796,1278.980000016312,-0.06943166630400224 +255797,1278.9850000163121,-0.06943165785336125 +255798,1278.9900000163123,-0.06943164940072892 +255799,1278.9950000163124,-0.06943164094610589 +255800,1279.0000000163125,-0.0694316324894928 +255801,1279.0050000163126,-0.0694316240308903 +255802,1279.0100000163127,-0.06943161557029906 +255803,1279.0150000163128,-0.0694316071077197 +255804,1279.020000016313,-0.06943159864315289 +255805,1279.025000016313,-0.06943159017659925 +255806,1279.0300000163131,-0.06943158170805942 +255807,1279.0350000163132,-0.06943157323753409 +255808,1279.0400000163133,-0.06943156476502385 +255809,1279.0450000163135,-0.06943155629052938 +255810,1279.0500000163136,-0.06943154781405132 +255811,1279.0550000163137,-0.06943153933559032 +255812,1279.0600000163138,-0.069431530855147 +255813,1279.065000016314,-0.06943152237272202 +255814,1279.070000016314,-0.06943151388831602 +255815,1279.075000016314,-0.06943150540192965 +255816,1279.0800000163142,-0.06943149691356354 +255817,1279.0850000163143,-0.06943148842321833 +255818,1279.0900000163144,-0.0694314799308947 +255819,1279.0950000163145,-0.06943147143659324 +255820,1279.1000000163147,-0.06943146294031463 +255821,1279.1050000163148,-0.06943145444205949 +255822,1279.1100000163149,-0.06943144594182847 +255823,1279.115000016315,-0.06943143743962221 +255824,1279.120000016315,-0.06943142893544137 +255825,1279.1250000163152,-0.06943142042928656 +255826,1279.1300000163153,-0.06943141192115844 +255827,1279.1350000163154,-0.06943140341105765 +255828,1279.1400000163155,-0.06943139489898481 +255829,1279.1450000163156,-0.06943138638494056 +255830,1279.1500000163157,-0.06943137786892559 +255831,1279.1550000163159,-0.06943136935094048 +255832,1279.160000016316,-0.06943136083098589 +255833,1279.165000016316,-0.06943135230906244 +255834,1279.1700000163162,-0.06943134378517081 +255835,1279.1750000163163,-0.06943133525931161 +255836,1279.1800000163164,-0.06943132673148548 +255837,1279.1850000163165,-0.06943131820169307 +255838,1279.1900000163166,-0.06943130966993502 +255839,1279.1950000163167,-0.06943130113621195 +255840,1279.2000000163168,-0.06943129260052448 +255841,1279.205000016317,-0.06943128406287329 +255842,1279.210000016317,-0.06943127552325899 +255843,1279.2150000163172,-0.06943126698168223 +255844,1279.2200000163173,-0.06943125843814363 +255845,1279.2250000163174,-0.06943124989264383 +255846,1279.2300000163175,-0.06943124134518348 +255847,1279.2350000163176,-0.06943123279576321 +255848,1279.2400000163177,-0.06943122424438364 +255849,1279.2450000163178,-0.0694312156910454 +255850,1279.250000016318,-0.06943120713574916 +255851,1279.255000016318,-0.06943119857849553 +255852,1279.2600000163181,-0.06943119001928515 +255853,1279.2650000163183,-0.06943118145811863 +255854,1279.2700000163184,-0.06943117289499663 +255855,1279.2750000163185,-0.06943116432991979 +255856,1279.2800000163186,-0.0694311557628887 +255857,1279.2850000163187,-0.06943114719390404 +255858,1279.2900000163188,-0.06943113862296642 +255859,1279.295000016319,-0.06943113005007648 +255860,1279.300000016319,-0.06943112147523485 +255861,1279.3050000163191,-0.06943111289844216 +255862,1279.3100000163192,-0.06943110431969904 +255863,1279.3150000163193,-0.06943109573900612 +255864,1279.3200000163195,-0.06943108715636402 +255865,1279.3250000163196,-0.06943107857177339 +255866,1279.3300000163197,-0.06943106998523486 +255867,1279.3350000163198,-0.06943106139674904 +255868,1279.34000001632,-0.06943105280631659 +255869,1279.34500001632,-0.06943104421393811 +255870,1279.35000001632,-0.06943103561961425 +255871,1279.3550000163202,-0.06943102702334564 +255872,1279.3600000163203,-0.0694310184251329 +255873,1279.3650000163204,-0.06943100982497664 +255874,1279.3700000163205,-0.06943100122287751 +255875,1279.3750000163207,-0.06943099261883615 +255876,1279.3800000163208,-0.06943098401285316 +255877,1279.3850000163209,-0.0694309754049292 +255878,1279.390000016321,-0.06943096679506484 +255879,1279.395000016321,-0.06943095818326077 +255880,1279.4000000163212,-0.06943094956951759 +255881,1279.4050000163213,-0.06943094095383594 +255882,1279.4100000163214,-0.06943093233621642 +255883,1279.4150000163215,-0.06943092371665967 +255884,1279.4200000163216,-0.06943091509516632 +255885,1279.4250000163217,-0.069430906471737 +255886,1279.4300000163219,-0.06943089784637232 +255887,1279.435000016322,-0.06943088921907291 +255888,1279.440000016322,-0.0694308805898394 +255889,1279.4450000163222,-0.06943087195867241 +255890,1279.4500000163223,-0.06943086332557258 +255891,1279.4550000163224,-0.0694308546905405 +255892,1279.4600000163225,-0.06943084605357683 +255893,1279.4650000163226,-0.06943083741468217 +255894,1279.4700000163227,-0.06943082877385716 +255895,1279.4750000163228,-0.06943082013110241 +255896,1279.480000016323,-0.06943081148641855 +255897,1279.485000016323,-0.0694308028398062 +255898,1279.4900000163232,-0.06943079419126598 +255899,1279.4950000163233,-0.06943078554079851 +255900,1279.5000000163234,-0.06943077688840442 +255901,1279.5050000163235,-0.06943076823408433 +255902,1279.5100000163236,-0.06943075957783885 +255903,1279.5150000163237,-0.06943075091966863 +255904,1279.5200000163238,-0.06943074225957425 +255905,1279.525000016324,-0.06943073359755637 +255906,1279.530000016324,-0.06943072493361559 +255907,1279.5350000163241,-0.06943071626775252 +255908,1279.5400000163243,-0.06943070759996779 +255909,1279.5450000163244,-0.06943069893026203 +255910,1279.5500000163245,-0.06943069025863585 +255911,1279.5550000163246,-0.06943068158508987 +255912,1279.5600000163247,-0.06943067290962472 +255913,1279.5650000163248,-0.06943066423224101 +255914,1279.570000016325,-0.06943065555293934 +255915,1279.575000016325,-0.06943064687172036 +255916,1279.5800000163251,-0.06943063818858466 +255917,1279.5850000163252,-0.06943062950353289 +255918,1279.5900000163253,-0.06943062081656562 +255919,1279.5950000163255,-0.06943061212768352 +255920,1279.6000000163256,-0.06943060343688717 +255921,1279.6050000163257,-0.0694305947441772 +255922,1279.6100000163258,-0.06943058604955422 +255923,1279.615000016326,-0.06943057735301886 +255924,1279.620000016326,-0.06943056865457173 +255925,1279.625000016326,-0.06943055995421343 +255926,1279.6300000163262,-0.06943055125194461 +255927,1279.6350000163263,-0.06943054254776584 +255928,1279.6400000163264,-0.06943053384167777 +255929,1279.6450000163265,-0.069430525133681 +255930,1279.6500000163267,-0.06943051642377615 +255931,1279.6550000163268,-0.06943050771196382 +255932,1279.6600000163269,-0.06943049899824466 +255933,1279.665000016327,-0.06943049028261924 +255934,1279.670000016327,-0.0694304815650882 +255935,1279.6750000163272,-0.06943047284565215 +255936,1279.6800000163273,-0.0694304641243117 +255937,1279.6850000163274,-0.06943045540106745 +255938,1279.6900000163275,-0.06943044667592002 +255939,1279.6950000163276,-0.06943043794887005 +255940,1279.7000000163277,-0.06943042921991813 +255941,1279.7050000163279,-0.06943042048906486 +255942,1279.710000016328,-0.06943041175631086 +255943,1279.715000016328,-0.06943040302165675 +255944,1279.7200000163282,-0.06943039428510311 +255945,1279.7250000163283,-0.06943038554665061 +255946,1279.7300000163284,-0.06943037680629982 +255947,1279.7350000163285,-0.06943036806405135 +255948,1279.7400000163286,-0.06943035931990582 +255949,1279.7450000163287,-0.06943035057386383 +255950,1279.7500000163288,-0.06943034182592601 +255951,1279.755000016329,-0.06943033307609293 +255952,1279.760000016329,-0.06943032432436524 +255953,1279.7650000163292,-0.06943031557074354 +255954,1279.7700000163293,-0.06943030681522844 +255955,1279.7750000163294,-0.06943029805782053 +255956,1279.7800000163295,-0.06943028929852042 +255957,1279.7850000163296,-0.06943028053732873 +255958,1279.7900000163297,-0.06943027177424607 +255959,1279.7950000163298,-0.06943026300927303 +255960,1279.80000001633,-0.06943025424241024 +255961,1279.80500001633,-0.06943024547365831 +255962,1279.8100000163302,-0.06943023670301782 +255963,1279.8150000163303,-0.06943022793048938 +255964,1279.8200000163304,-0.0694302191560736 +255965,1279.8250000163305,-0.06943021037977111 +255966,1279.8300000163306,-0.0694302016015825 +255967,1279.8350000163307,-0.06943019282150836 +255968,1279.8400000163308,-0.0694301840395493 +255969,1279.845000016331,-0.06943017525570595 +255970,1279.850000016331,-0.06943016646997889 +255971,1279.8550000163311,-0.06943015768236874 +255972,1279.8600000163312,-0.06943014889287608 +255973,1279.8650000163314,-0.06943014010150153 +255974,1279.8700000163315,-0.06943013130824573 +255975,1279.8750000163316,-0.06943012251310922 +255976,1279.8800000163317,-0.06943011371609263 +255977,1279.8850000163318,-0.06943010491719658 +255978,1279.890000016332,-0.06943009611642163 +255979,1279.895000016332,-0.06943008731376844 +255980,1279.9000000163321,-0.06943007850923757 +255981,1279.9050000163322,-0.06943006970282964 +255982,1279.9100000163323,-0.06943006089454523 +255983,1279.9150000163324,-0.06943005208438496 +255984,1279.9200000163326,-0.06943004327234946 +255985,1279.9250000163327,-0.06943003445843927 +255986,1279.9300000163328,-0.06943002564265503 +255987,1279.9350000163329,-0.06943001682499733 +255988,1279.940000016333,-0.06943000800546678 +255989,1279.945000016333,-0.06942999918406396 +255990,1279.9500000163332,-0.06942999036078949 +255991,1279.9550000163333,-0.06942998153564396 +255992,1279.9600000163334,-0.06942997270862797 +255993,1279.9650000163335,-0.06942996387974214 +255994,1279.9700000163336,-0.06942995504898702 +255995,1279.9750000163338,-0.06942994621636327 +255996,1279.9800000163339,-0.06942993738187145 +255997,1279.985000016334,-0.06942992854551215 +255998,1279.990000016334,-0.069429919707286 +255999,1279.9950000163342,-0.06942991086719359 +256000,1280.0000000163343,-0.0694299020252355 +256001,1280.0050000163344,-0.06942989318141232 +256002,1280.0100000163345,-0.06942988433572468 +256003,1280.0150000163346,-0.06942987548817316 +256004,1280.0200000163347,-0.06942986663875836 +256005,1280.0250000163348,-0.06942985778748087 +256006,1280.030000016335,-0.0694298489343413 +256007,1280.035000016335,-0.06942984007934022 +256008,1280.0400000163352,-0.06942983122247826 +256009,1280.0450000163353,-0.06942982236375597 +256010,1280.0500000163354,-0.069429813503174 +256011,1280.0550000163355,-0.0694298046407329 +256012,1280.0600000163356,-0.06942979577643328 +256013,1280.0650000163357,-0.06942978691027575 +256014,1280.0700000163358,-0.0694297780422609 +256015,1280.075000016336,-0.06942976917238929 +256016,1280.080000016336,-0.06942976030066154 +256017,1280.0850000163362,-0.06942975142707826 +256018,1280.0900000163363,-0.06942974255164001 +256019,1280.0950000163364,-0.06942973367434742 +256020,1280.1000000163365,-0.06942972479520104 +256021,1280.1050000163366,-0.0694297159142015 +256022,1280.1100000163367,-0.06942970703134936 +256023,1280.1150000163368,-0.06942969814664524 +256024,1280.120000016337,-0.06942968926008972 +256025,1280.125000016337,-0.06942968037168339 +256026,1280.1300000163371,-0.06942967148142684 +256027,1280.1350000163372,-0.06942966258932068 +256028,1280.1400000163374,-0.06942965369536547 +256029,1280.1450000163375,-0.06942964479956182 +256030,1280.1500000163376,-0.06942963590191031 +256031,1280.1550000163377,-0.06942962700241155 +256032,1280.1600000163378,-0.06942961810106611 +256033,1280.165000016338,-0.0694296091978746 +256034,1280.170000016338,-0.0694296002928376 +256035,1280.1750000163381,-0.06942959138595568 +256036,1280.1800000163382,-0.06942958247722944 +256037,1280.1850000163383,-0.06942957356665949 +256038,1280.1900000163384,-0.06942956465424639 +256039,1280.1950000163386,-0.06942955573999075 +256040,1280.2000000163387,-0.06942954682389314 +256041,1280.2050000163388,-0.06942953790595416 +256042,1280.2100000163389,-0.06942952898617441 +256043,1280.215000016339,-0.06942952006455444 +256044,1280.220000016339,-0.06942951114109487 +256045,1280.2250000163392,-0.06942950221579627 +256046,1280.2300000163393,-0.06942949328865924 +256047,1280.2350000163394,-0.06942948435968437 +256048,1280.2400000163395,-0.06942947542887222 +256049,1280.2450000163396,-0.0694294664962234 +256050,1280.2500000163398,-0.06942945756173849 +256051,1280.2550000163399,-0.06942944862541807 +256052,1280.26000001634,-0.06942943968726271 +256053,1280.26500001634,-0.06942943074727304 +256054,1280.2700000163402,-0.06942942180544961 +256055,1280.2750000163403,-0.06942941286179301 +256056,1280.2800000163404,-0.06942940391630383 +256057,1280.2850000163405,-0.06942939496898265 +256058,1280.2900000163406,-0.06942938601983006 +256059,1280.2950000163407,-0.06942937706884665 +256060,1280.3000000163408,-0.06942936811603298 +256061,1280.305000016341,-0.06942935916138965 +256062,1280.310000016341,-0.06942935020491722 +256063,1280.3150000163412,-0.06942934124661632 +256064,1280.3200000163413,-0.0694293322864875 +256065,1280.3250000163414,-0.06942932332453133 +256066,1280.3300000163415,-0.06942931436074844 +256067,1280.3350000163416,-0.06942930539513935 +256068,1280.3400000163417,-0.06942929642770469 +256069,1280.3450000163418,-0.06942928745844502 +256070,1280.350000016342,-0.06942927848736091 +256071,1280.355000016342,-0.06942926951445298 +256072,1280.3600000163422,-0.06942926053972179 +256073,1280.3650000163423,-0.0694292515631679 +256074,1280.3700000163424,-0.06942924258479191 +256075,1280.3750000163425,-0.06942923360459441 +256076,1280.3800000163426,-0.06942922462257595 +256077,1280.3850000163427,-0.06942921563873714 +256078,1280.3900000163428,-0.06942920665307854 +256079,1280.395000016343,-0.06942919766560074 +256080,1280.400000016343,-0.06942918867630431 +256081,1280.4050000163431,-0.06942917968518983 +256082,1280.4100000163432,-0.06942917069225789 +256083,1280.4150000163434,-0.06942916169750904 +256084,1280.4200000163435,-0.06942915270094391 +256085,1280.4250000163436,-0.069429143702563 +256086,1280.4300000163437,-0.06942913470236697 +256087,1280.4350000163438,-0.06942912570035634 +256088,1280.440000016344,-0.0694291166965317 +256089,1280.445000016344,-0.06942910769089367 +256090,1280.4500000163441,-0.06942909868344276 +256091,1280.4550000163442,-0.06942908967417959 +256092,1280.4600000163443,-0.0694290806631047 +256093,1280.4650000163444,-0.06942907165021871 +256094,1280.4700000163446,-0.06942906263552216 +256095,1280.4750000163447,-0.06942905361901565 +256096,1280.4800000163448,-0.06942904460069974 +256097,1280.4850000163449,-0.069429035580575 +256098,1280.490000016345,-0.06942902655864204 +256099,1280.495000016345,-0.0694290175349014 +256100,1280.5000000163452,-0.06942900850935366 +256101,1280.5050000163453,-0.06942899948199939 +256102,1280.5100000163454,-0.06942899045283918 +256103,1280.5150000163455,-0.06942898142187358 +256104,1280.5200000163456,-0.06942897238910319 +256105,1280.5250000163458,-0.06942896335452856 +256106,1280.5300000163459,-0.06942895431815027 +256107,1280.535000016346,-0.06942894527996891 +256108,1280.540000016346,-0.06942893623998504 +256109,1280.5450000163462,-0.06942892719819922 +256110,1280.5500000163463,-0.06942891815461204 +256111,1280.5550000163464,-0.06942890910922406 +256112,1280.5600000163465,-0.06942890006203585 +256113,1280.5650000163466,-0.069428891013048 +256114,1280.5700000163467,-0.06942888196226106 +256115,1280.5750000163468,-0.06942887290967562 +256116,1280.580000016347,-0.06942886385529223 +256117,1280.585000016347,-0.06942885479911148 +256118,1280.5900000163472,-0.06942884574113391 +256119,1280.5950000163473,-0.06942883668136013 +256120,1280.6000000163474,-0.06942882761979068 +256121,1280.6050000163475,-0.06942881855642614 +256122,1280.6100000163476,-0.06942880949126708 +256123,1280.6150000163477,-0.06942880042431407 +256124,1280.6200000163478,-0.06942879135556768 +256125,1280.625000016348,-0.06942878228502847 +256126,1280.630000016348,-0.06942877321269701 +256127,1280.6350000163482,-0.06942876413857386 +256128,1280.6400000163483,-0.06942875506265962 +256129,1280.6450000163484,-0.06942874598495483 +256130,1280.6500000163485,-0.06942873690546007 +256131,1280.6550000163486,-0.06942872782417589 +256132,1280.6600000163487,-0.06942871874110289 +256133,1280.6650000163488,-0.0694287096562416 +256134,1280.670000016349,-0.06942870056959259 +256135,1280.675000016349,-0.06942869148115645 +256136,1280.6800000163491,-0.06942868239093374 +256137,1280.6850000163492,-0.069428673298925 +256138,1280.6900000163494,-0.06942866420513083 +256139,1280.6950000163495,-0.06942865510955179 +256140,1280.7000000163496,-0.06942864601218843 +256141,1280.7050000163497,-0.0694286369130413 +256142,1280.7100000163498,-0.06942862781211101 +256143,1280.71500001635,-0.06942861870939808 +256144,1280.72000001635,-0.0694286096049031 +256145,1280.7250000163501,-0.06942860049862663 +256146,1280.7300000163502,-0.06942859139056926 +256147,1280.7350000163503,-0.0694285822807315 +256148,1280.7400000163505,-0.06942857316911394 +256149,1280.7450000163506,-0.06942856405571714 +256150,1280.7500000163507,-0.06942855494054166 +256151,1280.7550000163508,-0.06942854582358808 +256152,1280.760000016351,-0.06942853670485695 +256153,1280.765000016351,-0.06942852758434884 +256154,1280.770000016351,-0.06942851846206431 +256155,1280.7750000163512,-0.06942850933800389 +256156,1280.7800000163513,-0.06942850021216819 +256157,1280.7850000163514,-0.06942849108455774 +256158,1280.7900000163515,-0.06942848195517312 +256159,1280.7950000163517,-0.06942847282401488 +256160,1280.8000000163518,-0.06942846369108358 +256161,1280.8050000163519,-0.06942845455637978 +256162,1280.810000016352,-0.06942844541990403 +256163,1280.815000016352,-0.06942843628165693 +256164,1280.8200000163522,-0.069428427141639 +256165,1280.8250000163523,-0.0694284179998508 +256166,1280.8300000163524,-0.06942840885629292 +256167,1280.8350000163525,-0.0694283997109659 +256168,1280.8400000163526,-0.06942839056387028 +256169,1280.8450000163527,-0.06942838141500665 +256170,1280.8500000163529,-0.06942837226437557 +256171,1280.855000016353,-0.06942836311197757 +256172,1280.860000016353,-0.06942835395781323 +256173,1280.8650000163532,-0.0694283448018831 +256174,1280.8700000163533,-0.06942833564418774 +256175,1280.8750000163534,-0.0694283264847277 +256176,1280.8800000163535,-0.06942831732350355 +256177,1280.8850000163536,-0.06942830816051583 +256178,1280.8900000163537,-0.06942829899576511 +256179,1280.8950000163538,-0.06942828982925194 +256180,1280.900000016354,-0.06942828066097688 +256181,1280.905000016354,-0.0694282714909405 +256182,1280.9100000163542,-0.06942826231914331 +256183,1280.9150000163543,-0.06942825314558591 +256184,1280.9200000163544,-0.06942824397026885 +256185,1280.9250000163545,-0.06942823479319267 +256186,1280.9300000163546,-0.06942822561435795 +256187,1280.9350000163547,-0.0694282164337652 +256188,1280.9400000163548,-0.06942820725141502 +256189,1280.945000016355,-0.06942819806730793 +256190,1280.950000016355,-0.0694281888814445 +256191,1280.9550000163551,-0.06942817969382528 +256192,1280.9600000163553,-0.06942817050445084 +256193,1280.9650000163554,-0.0694281613133217 +256194,1280.9700000163555,-0.06942815212043846 +256195,1280.9750000163556,-0.06942814292580163 +256196,1280.9800000163557,-0.06942813372941177 +256197,1280.9850000163558,-0.06942812453126945 +256198,1280.990000016356,-0.06942811533137522 +256199,1280.995000016356,-0.06942810612972962 +256200,1281.0000000163561,-0.0694280969263332 +256201,1281.0050000163562,-0.06942808772118653 +256202,1281.0100000163563,-0.06942807851429016 +256203,1281.0150000163565,-0.0694280693056446 +256204,1281.0200000163566,-0.06942806009525045 +256205,1281.0250000163567,-0.06942805088310824 +256206,1281.0300000163568,-0.06942804166921854 +256207,1281.035000016357,-0.06942803245358185 +256208,1281.040000016357,-0.06942802323619877 +256209,1281.045000016357,-0.06942801401706983 +256210,1281.0500000163572,-0.06942800479619558 +256211,1281.0550000163573,-0.06942799557357658 +256212,1281.0600000163574,-0.06942798634921338 +256213,1281.0650000163575,-0.0694279771231065 +256214,1281.0700000163577,-0.06942796789525651 +256215,1281.0750000163578,-0.06942795866566398 +256216,1281.0800000163579,-0.06942794943432942 +256217,1281.085000016358,-0.0694279402012534 +256218,1281.090000016358,-0.06942793096643644 +256219,1281.0950000163582,-0.06942792172987915 +256220,1281.1000000163583,-0.069427912491582 +256221,1281.1050000163584,-0.0694279032515456 +256222,1281.1100000163585,-0.06942789400977047 +256223,1281.1150000163586,-0.06942788476625715 +256224,1281.1200000163587,-0.0694278755210062 +256225,1281.1250000163589,-0.06942786627401816 +256226,1281.130000016359,-0.06942785702529357 +256227,1281.135000016359,-0.06942784777483298 +256228,1281.1400000163592,-0.06942783852263694 +256229,1281.1450000163593,-0.069427829268706 +256230,1281.1500000163594,-0.0694278200130407 +256231,1281.1550000163595,-0.06942781075564156 +256232,1281.1600000163596,-0.06942780149650916 +256233,1281.1650000163597,-0.06942779223564405 +256234,1281.1700000163598,-0.06942778297304675 +256235,1281.17500001636,-0.0694277737087178 +256236,1281.18000001636,-0.06942776444265777 +256237,1281.1850000163602,-0.06942775517486718 +256238,1281.1900000163603,-0.0694277459053466 +256239,1281.1950000163604,-0.06942773663409654 +256240,1281.2000000163605,-0.06942772736111757 +256241,1281.2050000163606,-0.06942771808641023 +256242,1281.2100000163607,-0.06942770880997504 +256243,1281.2150000163608,-0.06942769953181255 +256244,1281.220000016361,-0.06942769025192333 +256245,1281.225000016361,-0.0694276809703079 +256246,1281.2300000163611,-0.06942767168696679 +256247,1281.2350000163613,-0.06942766240190057 +256248,1281.2400000163614,-0.06942765311510975 +256249,1281.2450000163615,-0.06942764382659489 +256250,1281.2500000163616,-0.06942763453635653 +256251,1281.2550000163617,-0.06942762524439522 +256252,1281.2600000163618,-0.06942761595071147 +256253,1281.265000016362,-0.06942760665530585 +256254,1281.270000016362,-0.06942759735817888 +256255,1281.2750000163621,-0.06942758805933114 +256256,1281.2800000163622,-0.06942757875876311 +256257,1281.2850000163623,-0.06942756945647535 +256258,1281.2900000163625,-0.06942756015246843 +256259,1281.2950000163626,-0.06942755084674286 +256260,1281.3000000163627,-0.06942754153929918 +256261,1281.3050000163628,-0.06942753223013794 +256262,1281.310000016363,-0.06942752291925967 +256263,1281.315000016363,-0.06942751360666492 +256264,1281.320000016363,-0.0694275042923542 +256265,1281.3250000163632,-0.06942749497632808 +256266,1281.3300000163633,-0.06942748565858707 +256267,1281.3350000163634,-0.06942747633913172 +256268,1281.3400000163635,-0.06942746701796258 +256269,1281.3450000163637,-0.06942745769508019 +256270,1281.3500000163638,-0.06942744837048503 +256271,1281.3550000163639,-0.06942743904417771 +256272,1281.360000016364,-0.06942742971615871 +256273,1281.365000016364,-0.06942742038642861 +256274,1281.3700000163642,-0.06942741105498791 +256275,1281.3750000163643,-0.06942740172183717 +256276,1281.3800000163644,-0.06942739238697693 +256277,1281.3850000163645,-0.06942738305040769 +256278,1281.3900000163646,-0.06942737371213001 +256279,1281.3950000163647,-0.06942736437214443 +256280,1281.4000000163649,-0.06942735503045147 +256281,1281.405000016365,-0.06942734568705167 +256282,1281.410000016365,-0.06942733634194556 +256283,1281.4150000163652,-0.06942732699513368 +256284,1281.4200000163653,-0.06942731764661655 +256285,1281.4250000163654,-0.06942730829639474 +256286,1281.4300000163655,-0.06942729894446874 +256287,1281.4350000163656,-0.0694272895908391 +256288,1281.4400000163657,-0.06942728023550634 +256289,1281.4450000163658,-0.06942727087847102 +256290,1281.450000016366,-0.06942726151973366 +256291,1281.455000016366,-0.0694272521592948 +256292,1281.4600000163662,-0.06942724279715495 +256293,1281.4650000163663,-0.06942723343331465 +256294,1281.4700000163664,-0.06942722406777445 +256295,1281.4750000163665,-0.06942721470053485 +256296,1281.4800000163666,-0.0694272053315964 +256297,1281.4850000163667,-0.06942719596095964 +256298,1281.4900000163668,-0.06942718658862508 +256299,1281.495000016367,-0.06942717721459325 +256300,1281.500000016367,-0.06942716783886471 +256301,1281.5050000163671,-0.06942715846143996 +256302,1281.5100000163673,-0.06942714908231955 +256303,1281.5150000163674,-0.06942713970150399 +256304,1281.5200000163675,-0.06942713031899382 +256305,1281.5250000163676,-0.06942712093478956 +256306,1281.5300000163677,-0.06942711154889175 +256307,1281.5350000163678,-0.06942710216130091 +256308,1281.540000016368,-0.06942709277201758 +256309,1281.545000016368,-0.0694270833810423 +256310,1281.5500000163681,-0.06942707398837555 +256311,1281.5550000163682,-0.06942706459401791 +256312,1281.5600000163683,-0.06942705519796988 +256313,1281.5650000163685,-0.069427045800232 +256314,1281.5700000163686,-0.06942703640080478 +256315,1281.5750000163687,-0.06942702699968877 +256316,1281.5800000163688,-0.06942701759688447 +256317,1281.585000016369,-0.06942700819239242 +256318,1281.590000016369,-0.06942699878621315 +256319,1281.595000016369,-0.0694269893783472 +256320,1281.6000000163692,-0.06942697996879506 +256321,1281.6050000163693,-0.06942697055755727 +256322,1281.6100000163694,-0.06942696114463438 +256323,1281.6150000163695,-0.06942695173002689 +256324,1281.6200000163697,-0.06942694231373532 +256325,1281.6250000163698,-0.06942693289576021 +256326,1281.6300000163699,-0.06942692347610209 +256327,1281.63500001637,-0.06942691405476147 +256328,1281.64000001637,-0.06942690463173888 +256329,1281.6450000163702,-0.06942689520703485 +256330,1281.6500000163703,-0.0694268857806499 +256331,1281.6550000163704,-0.06942687635258454 +256332,1281.6600000163705,-0.06942686692283931 +256333,1281.6650000163706,-0.06942685749141474 +256334,1281.6700000163708,-0.06942684805831134 +256335,1281.6750000163709,-0.06942683862352962 +256336,1281.680000016371,-0.06942682918707013 +256337,1281.685000016371,-0.06942681974893337 +256338,1281.6900000163712,-0.06942681030911987 +256339,1281.6950000163713,-0.06942680086763016 +256340,1281.7000000163714,-0.06942679142446476 +256341,1281.7050000163715,-0.06942678197962418 +256342,1281.7100000163716,-0.06942677253310894 +256343,1281.7150000163717,-0.06942676308491959 +256344,1281.7200000163718,-0.06942675363505661 +256345,1281.725000016372,-0.06942674418352056 +256346,1281.730000016372,-0.06942673473031194 +256347,1281.7350000163722,-0.06942672527543127 +256348,1281.7400000163723,-0.06942671581887906 +256349,1281.7450000163724,-0.06942670636065586 +256350,1281.7500000163725,-0.06942669690076216 +256351,1281.7550000163726,-0.06942668743919848 +256352,1281.7600000163727,-0.06942667797596538 +256353,1281.7650000163728,-0.06942666851106333 +256354,1281.770000016373,-0.06942665904449287 +256355,1281.775000016373,-0.06942664957625452 +256356,1281.7800000163732,-0.0694266401063488 +256357,1281.7850000163733,-0.06942663063477622 +256358,1281.7900000163734,-0.0694266211615373 +256359,1281.7950000163735,-0.06942661168663257 +256360,1281.8000000163736,-0.06942660221006253 +256361,1281.8050000163737,-0.06942659273182772 +256362,1281.8100000163738,-0.06942658325192862 +256363,1281.815000016374,-0.06942657377036578 +256364,1281.820000016374,-0.06942656428713971 +256365,1281.8250000163741,-0.06942655480225092 +256366,1281.8300000163742,-0.06942654531569993 +256367,1281.8350000163744,-0.06942653582748726 +256368,1281.8400000163745,-0.06942652633761341 +256369,1281.8450000163746,-0.06942651684607891 +256370,1281.8500000163747,-0.06942650735288429 +256371,1281.8550000163748,-0.06942649785803004 +256372,1281.860000016375,-0.06942648836151667 +256373,1281.865000016375,-0.06942647886334473 +256374,1281.8700000163751,-0.0694264693635147 +256375,1281.8750000163752,-0.0694264598620271 +256376,1281.8800000163753,-0.06942645035888247 +256377,1281.8850000163754,-0.0694264408540813 +256378,1281.8900000163756,-0.0694264313476241 +256379,1281.8950000163757,-0.0694264218395114 +256380,1281.9000000163758,-0.06942641232974371 +256381,1281.9050000163759,-0.06942640281832155 +256382,1281.910000016376,-0.06942639330524542 +256383,1281.915000016376,-0.06942638379051583 +256384,1281.9200000163762,-0.06942637427413331 +256385,1281.9250000163763,-0.06942636475609835 +256386,1281.9300000163764,-0.06942635523641148 +256387,1281.9350000163765,-0.06942634571507321 +256388,1281.9400000163766,-0.06942633619208405 +256389,1281.9450000163768,-0.06942632666744451 +256390,1281.9500000163769,-0.0694263171411551 +256391,1281.955000016377,-0.06942630761321633 +256392,1281.960000016377,-0.06942629808362871 +256393,1281.9650000163772,-0.06942628855239276 +256394,1281.9700000163773,-0.069426279019509 +256395,1281.9750000163774,-0.0694262694849779 +256396,1281.9800000163775,-0.06942625994880003 +256397,1281.9850000163776,-0.06942625041097585 +256398,1281.9900000163777,-0.06942624087150587 +256399,1281.9950000163778,-0.06942623133039062 +256400,1282.000000016378,-0.06942622178763061 +256401,1282.005000016378,-0.06942621224322634 +256402,1282.0100000163782,-0.06942620269717834 +256403,1282.0150000163783,-0.06942619314948709 +256404,1282.0200000163784,-0.06942618360015312 +256405,1282.0250000163785,-0.06942617404917693 +256406,1282.0300000163786,-0.06942616449655903 +256407,1282.0350000163787,-0.06942615494229992 +256408,1282.0400000163788,-0.06942614538640011 +256409,1282.045000016379,-0.06942613582886012 +256410,1282.050000016379,-0.06942612626968044 +256411,1282.0550000163792,-0.06942611670886159 +256412,1282.0600000163793,-0.06942610714640407 +256413,1282.0650000163794,-0.06942609758230839 +256414,1282.0700000163795,-0.06942608801657506 +256415,1282.0750000163796,-0.06942607844920456 +256416,1282.0800000163797,-0.06942606888019745 +256417,1282.0850000163798,-0.06942605930955419 +256418,1282.09000001638,-0.06942604973727531 +256419,1282.09500001638,-0.06942604016336129 +256420,1282.1000000163801,-0.06942603058781266 +256421,1282.1050000163802,-0.06942602101062993 +256422,1282.1100000163804,-0.06942601143181358 +256423,1282.1150000163805,-0.06942600185136413 +256424,1282.1200000163806,-0.06942599226928209 +256425,1282.1250000163807,-0.06942598268556795 +256426,1282.1300000163808,-0.06942597310022221 +256427,1282.135000016381,-0.0694259635132454 +256428,1282.140000016381,-0.06942595392463799 +256429,1282.1450000163811,-0.06942594433440051 +256430,1282.1500000163812,-0.06942593474253346 +256431,1282.1550000163813,-0.06942592514903732 +256432,1282.1600000163814,-0.06942591555391263 +256433,1282.1650000163816,-0.06942590595715988 +256434,1282.1700000163817,-0.06942589635877953 +256435,1282.1750000163818,-0.06942588675877215 +256436,1282.1800000163819,-0.0694258771571382 +256437,1282.185000016382,-0.0694258675538782 +256438,1282.190000016382,-0.06942585794899263 +256439,1282.1950000163822,-0.06942584834248201 +256440,1282.2000000163823,-0.06942583873434684 +256441,1282.2050000163824,-0.06942582912458763 +256442,1282.2100000163825,-0.06942581951320484 +256443,1282.2150000163826,-0.06942580990019902 +256444,1282.2200000163828,-0.06942580028557065 +256445,1282.2250000163829,-0.06942579066932023 +256446,1282.230000016383,-0.06942578105144825 +256447,1282.235000016383,-0.06942577143195525 +256448,1282.2400000163832,-0.06942576181084167 +256449,1282.2450000163833,-0.06942575218810806 +256450,1282.2500000163834,-0.0694257425637549 +256451,1282.2550000163835,-0.06942573293778267 +256452,1282.2600000163836,-0.0694257233101919 +256453,1282.2650000163837,-0.06942571368098308 +256454,1282.2700000163838,-0.0694257040501567 +256455,1282.275000016384,-0.06942569441771326 +256456,1282.280000016384,-0.06942568478365327 +256457,1282.2850000163842,-0.06942567514797722 +256458,1282.2900000163843,-0.0694256655106856 +256459,1282.2950000163844,-0.06942565587177893 +256460,1282.3000000163845,-0.06942564623125767 +256461,1282.3050000163846,-0.06942563658912235 +256462,1282.3100000163847,-0.06942562694537345 +256463,1282.3150000163848,-0.06942561730001148 +256464,1282.320000016385,-0.06942560765303693 +256465,1282.325000016385,-0.0694255980044503 +256466,1282.3300000163852,-0.06942558835425208 +256467,1282.3350000163853,-0.06942557870244277 +256468,1282.3400000163854,-0.06942556904902288 +256469,1282.3450000163855,-0.06942555939399286 +256470,1282.3500000163856,-0.06942554973735325 +256471,1282.3550000163857,-0.06942554007910454 +256472,1282.3600000163858,-0.06942553041924719 +256473,1282.365000016386,-0.06942552075778174 +256474,1282.370000016386,-0.06942551109470865 +256475,1282.3750000163861,-0.06942550143002844 +256476,1282.3800000163862,-0.0694254917637416 +256477,1282.3850000163864,-0.0694254820958486 +256478,1282.3900000163865,-0.06942547242634997 +256479,1282.3950000163866,-0.06942546275524618 +256480,1282.4000000163867,-0.06942545308253771 +256481,1282.4050000163868,-0.0694254434082251 +256482,1282.410000016387,-0.06942543373230879 +256483,1282.415000016387,-0.06942542405478931 +256484,1282.4200000163871,-0.06942541437566713 +256485,1282.4250000163872,-0.06942540469494275 +256486,1282.4300000163873,-0.06942539501261667 +256487,1282.4350000163874,-0.06942538532868939 +256488,1282.4400000163876,-0.06942537564316137 +256489,1282.4450000163877,-0.06942536595603313 +256490,1282.4500000163878,-0.06942535626730516 +256491,1282.4550000163879,-0.06942534657697794 +256492,1282.460000016388,-0.06942533688505195 +256493,1282.465000016388,-0.0694253271915277 +256494,1282.4700000163882,-0.06942531749640568 +256495,1282.4750000163883,-0.06942530779968638 +256496,1282.4800000163884,-0.06942529810137027 +256497,1282.4850000163885,-0.06942528840145788 +256498,1282.4900000163886,-0.06942527869994966 +256499,1282.4950000163888,-0.06942526899684612 +256500,1282.5000000163889,-0.06942525929214774 +256501,1282.505000016389,-0.06942524958585501 +256502,1282.510000016389,-0.06942523987796843 +256503,1282.5150000163892,-0.06942523016848848 +256504,1282.5200000163893,-0.06942522045741566 +256505,1282.5250000163894,-0.06942521074475044 +256506,1282.5300000163895,-0.06942520103049332 +256507,1282.5350000163896,-0.0694251913146448 +256508,1282.5400000163897,-0.06942518159720534 +256509,1282.5450000163898,-0.06942517187817543 +256510,1282.55000001639,-0.06942516215755559 +256511,1282.55500001639,-0.06942515243534628 +256512,1282.5600000163902,-0.069425142711548 +256513,1282.5650000163903,-0.06942513298616122 +256514,1282.5700000163904,-0.06942512325918644 +256515,1282.5750000163905,-0.06942511353062415 +256516,1282.5800000163906,-0.06942510380047481 +256517,1282.5850000163907,-0.06942509406873894 +256518,1282.5900000163908,-0.06942508433541701 +256519,1282.595000016391,-0.06942507460050952 +256520,1282.600000016391,-0.06942506486401694 +256521,1282.6050000163912,-0.06942505512593976 +256522,1282.6100000163913,-0.06942504538627844 +256523,1282.6150000163914,-0.06942503564503351 +256524,1282.6200000163915,-0.06942502590220542 +256525,1282.6250000163916,-0.06942501615779467 +256526,1282.6300000163917,-0.06942500641180176 +256527,1282.6350000163918,-0.06942499666422715 +256528,1282.640000016392,-0.06942498691507133 +256529,1282.645000016392,-0.0694249771643348 +256530,1282.6500000163921,-0.06942496741201801 +256531,1282.6550000163923,-0.06942495765812146 +256532,1282.6600000163924,-0.06942494790264564 +256533,1282.6650000163925,-0.06942493814559103 +256534,1282.6700000163926,-0.06942492838695812 +256535,1282.6750000163927,-0.06942491862674738 +256536,1282.6800000163928,-0.06942490886495928 +256537,1282.685000016393,-0.06942489910159434 +256538,1282.690000016393,-0.06942488933665301 +256539,1282.6950000163931,-0.0694248795701358 +256540,1282.7000000163932,-0.06942486980204315 +256541,1282.7050000163933,-0.06942486003237558 +256542,1282.7100000163935,-0.06942485026113354 +256543,1282.7150000163936,-0.06942484048831754 +256544,1282.7200000163937,-0.06942483071392806 +256545,1282.7250000163938,-0.06942482093796556 +256546,1282.730000016394,-0.06942481116043053 +256547,1282.735000016394,-0.06942480138132347 +256548,1282.740000016394,-0.06942479160064481 +256549,1282.7450000163942,-0.06942478181839508 +256550,1282.7500000163943,-0.06942477203457473 +256551,1282.7550000163944,-0.06942476224918426 +256552,1282.7600000163945,-0.06942475246222414 +256553,1282.7650000163947,-0.06942474267369483 +256554,1282.7700000163948,-0.06942473288359685 +256555,1282.7750000163949,-0.06942472309193065 +256556,1282.780000016395,-0.06942471329869672 +256557,1282.785000016395,-0.06942470350389553 +256558,1282.7900000163952,-0.06942469370752757 +256559,1282.7950000163953,-0.0694246839095933 +256560,1282.8000000163954,-0.0694246741100932 +256561,1282.8050000163955,-0.06942466430902777 +256562,1282.8100000163956,-0.06942465450639748 +256563,1282.8150000163957,-0.06942464470220279 +256564,1282.8200000163959,-0.0694246348964442 +256565,1282.825000016396,-0.06942462508912216 +256566,1282.830000016396,-0.06942461528023716 +256567,1282.8350000163962,-0.06942460546978968 +256568,1282.8400000163963,-0.0694245956577802 +256569,1282.8450000163964,-0.06942458584420919 +256570,1282.8500000163965,-0.06942457602907713 +256571,1282.8550000163966,-0.06942456621238449 +256572,1282.8600000163967,-0.06942455639413174 +256573,1282.8650000163968,-0.06942454657431936 +256574,1282.870000016397,-0.06942453675294785 +256575,1282.875000016397,-0.06942452693001765 +256576,1282.8800000163972,-0.06942451710552924 +256577,1282.8850000163973,-0.06942450727948313 +256578,1282.8900000163974,-0.06942449745187974 +256579,1282.8950000163975,-0.06942448762271958 +256580,1282.9000000163976,-0.06942447779200311 +256581,1282.9050000163977,-0.06942446795973083 +256582,1282.9100000163978,-0.06942445812590317 +256583,1282.915000016398,-0.06942444829052064 +256584,1282.920000016398,-0.06942443845358368 +256585,1282.9250000163981,-0.06942442861509279 +256586,1282.9300000163983,-0.06942441877504846 +256587,1282.9350000163984,-0.0694244089334511 +256588,1282.9400000163985,-0.06942439909030125 +256589,1282.9450000163986,-0.06942438924559935 +256590,1282.9500000163987,-0.06942437939934587 +256591,1282.9550000163988,-0.06942436955154128 +256592,1282.960000016399,-0.06942435970218608 +256593,1282.965000016399,-0.06942434985128071 +256594,1282.9700000163991,-0.06942433999882565 +256595,1282.9750000163992,-0.06942433014482137 +256596,1282.9800000163993,-0.06942432028926836 +256597,1282.9850000163995,-0.06942431043216707 +256598,1282.9900000163996,-0.06942430057351795 +256599,1282.9950000163997,-0.06942429071332153 +256600,1283.0000000163998,-0.06942428085157823 +256601,1283.0050000164,-0.06942427098828854 +256602,1283.0100000164,-0.06942426112345293 +256603,1283.0150000164,-0.06942425125707186 +256604,1283.0200000164002,-0.06942424138914581 +256605,1283.0250000164003,-0.06942423151967525 +256606,1283.0300000164004,-0.06942422164866063 +256607,1283.0350000164005,-0.06942421177610246 +256608,1283.0400000164007,-0.06942420190200116 +256609,1283.0450000164008,-0.06942419202635722 +256610,1283.0500000164009,-0.06942418214917112 +256611,1283.055000016401,-0.06942417227044331 +256612,1283.060000016401,-0.06942416239017427 +256613,1283.0650000164012,-0.06942415250836446 +256614,1283.0700000164013,-0.06942414262501435 +256615,1283.0750000164014,-0.06942413274012442 +256616,1283.0800000164015,-0.0694241228536951 +256617,1283.0850000164016,-0.06942411296572691 +256618,1283.0900000164017,-0.06942410307622028 +256619,1283.0950000164019,-0.06942409318517569 +256620,1283.100000016402,-0.0694240832925936 +256621,1283.105000016402,-0.06942407339847448 +256622,1283.1100000164022,-0.06942406350281878 +256623,1283.1150000164023,-0.06942405360562699 +256624,1283.1200000164024,-0.06942404370689959 +256625,1283.1250000164025,-0.069424033806637 +256626,1283.1300000164026,-0.06942402390483972 +256627,1283.1350000164027,-0.06942401400150819 +256628,1283.1400000164028,-0.06942400409664289 +256629,1283.145000016403,-0.06942399419024428 +256630,1283.150000016403,-0.06942398428231285 +256631,1283.1550000164032,-0.06942397437284901 +256632,1283.1600000164033,-0.06942396446185328 +256633,1283.1650000164034,-0.0694239545493261 +256634,1283.1700000164035,-0.06942394463526794 +256635,1283.1750000164036,-0.06942393471967924 +256636,1283.1800000164037,-0.06942392480256049 +256637,1283.1850000164038,-0.06942391488391216 +256638,1283.190000016404,-0.06942390496373467 +256639,1283.195000016404,-0.06942389504202853 +256640,1283.2000000164041,-0.06942388511879419 +256641,1283.2050000164043,-0.06942387519403209 +256642,1283.2100000164044,-0.06942386526774272 +256643,1283.2150000164045,-0.06942385533992652 +256644,1283.2200000164046,-0.06942384541058397 +256645,1283.2250000164047,-0.06942383547971552 +256646,1283.2300000164048,-0.06942382554732164 +256647,1283.235000016405,-0.0694238156134028 +256648,1283.240000016405,-0.06942380567795944 +256649,1283.2450000164051,-0.06942379574099204 +256650,1283.2500000164052,-0.06942378580250104 +256651,1283.2550000164053,-0.06942377586248692 +256652,1283.2600000164055,-0.06942376592095013 +256653,1283.2650000164056,-0.06942375597789113 +256654,1283.2700000164057,-0.06942374603331039 +256655,1283.2750000164058,-0.06942373608720837 +256656,1283.280000016406,-0.06942372613958551 +256657,1283.285000016406,-0.0694237161904423 +256658,1283.290000016406,-0.06942370623977917 +256659,1283.2950000164062,-0.06942369628759659 +256660,1283.3000000164063,-0.06942368633389502 +256661,1283.3050000164064,-0.06942367637867493 +256662,1283.3100000164065,-0.06942366642193676 +256663,1283.3150000164067,-0.06942365646368098 +256664,1283.3200000164068,-0.06942364650390806 +256665,1283.3250000164069,-0.06942363654261845 +256666,1283.330000016407,-0.06942362657981258 +256667,1283.335000016407,-0.06942361661549093 +256668,1283.3400000164072,-0.06942360664965397 +256669,1283.3450000164073,-0.06942359668230214 +256670,1283.3500000164074,-0.0694235867134359 +256671,1283.3550000164075,-0.0694235767430557 +256672,1283.3600000164076,-0.06942356677116203 +256673,1283.3650000164077,-0.06942355679775532 +256674,1283.3700000164079,-0.06942354682283602 +256675,1283.375000016408,-0.0694235368464046 +256676,1283.380000016408,-0.0694235268684615 +256677,1283.3850000164082,-0.06942351688900719 +256678,1283.3900000164083,-0.06942350690804212 +256679,1283.3950000164084,-0.06942349692556676 +256680,1283.4000000164085,-0.06942348694158156 +256681,1283.4050000164086,-0.06942347695608697 +256682,1283.4100000164087,-0.06942346696908346 +256683,1283.4150000164088,-0.06942345698057145 +256684,1283.420000016409,-0.06942344699055142 +256685,1283.425000016409,-0.06942343699902381 +256686,1283.4300000164092,-0.06942342700598908 +256687,1283.4350000164093,-0.0694234170114477 +256688,1283.4400000164094,-0.06942340701540012 +256689,1283.4450000164095,-0.06942339701784676 +256690,1283.4500000164096,-0.06942338701878813 +256691,1283.4550000164097,-0.06942337701822462 +256692,1283.4600000164098,-0.06942336701615674 +256693,1283.46500001641,-0.06942335701258491 +256694,1283.47000001641,-0.0694233470075096 +256695,1283.4750000164101,-0.06942333700093126 +256696,1283.4800000164103,-0.06942332699285032 +256697,1283.4850000164104,-0.06942331698326726 +256698,1283.4900000164105,-0.06942330697218252 +256699,1283.4950000164106,-0.06942329695959655 +256700,1283.5000000164107,-0.06942328694550981 +256701,1283.5050000164108,-0.06942327692992276 +256702,1283.510000016411,-0.06942326691283582 +256703,1283.515000016411,-0.06942325689424947 +256704,1283.5200000164111,-0.06942324687416415 +256705,1283.5250000164112,-0.06942323685258033 +256706,1283.5300000164113,-0.0694232268294984 +256707,1283.5350000164115,-0.06942321680491888 +256708,1283.5400000164116,-0.06942320677884219 +256709,1283.5450000164117,-0.06942319675126878 +256710,1283.5500000164118,-0.0694231867221991 +256711,1283.555000016412,-0.06942317669163361 +256712,1283.560000016412,-0.06942316665957275 +256713,1283.5650000164121,-0.06942315662601699 +256714,1283.5700000164122,-0.06942314659096675 +256715,1283.5750000164123,-0.0694231365544225 +256716,1283.5800000164124,-0.06942312651638467 +256717,1283.5850000164126,-0.06942311647685372 +256718,1283.5900000164127,-0.0694231064358301 +256719,1283.5950000164128,-0.06942309639331427 +256720,1283.6000000164129,-0.06942308634930665 +256721,1283.605000016413,-0.06942307630380769 +256722,1283.610000016413,-0.06942306625681786 +256723,1283.6150000164132,-0.0694230562083376 +256724,1283.6200000164133,-0.06942304615836736 +256725,1283.6250000164134,-0.06942303610690757 +256726,1283.6300000164135,-0.0694230260539587 +256727,1283.6350000164136,-0.06942301599952116 +256728,1283.6400000164138,-0.06942300594359546 +256729,1283.6450000164139,-0.06942299588618199 +256730,1283.650000016414,-0.06942298582728122 +256731,1283.655000016414,-0.0694229757668936 +256732,1283.6600000164142,-0.06942296570501956 +256733,1283.6650000164143,-0.06942295564165955 +256734,1283.6700000164144,-0.06942294557681403 +256735,1283.6750000164145,-0.06942293551048342 +256736,1283.6800000164146,-0.0694229254426682 +256737,1283.6850000164147,-0.0694229153733688 +256738,1283.6900000164148,-0.06942290530258564 +256739,1283.695000016415,-0.0694228952303192 +256740,1283.700000016415,-0.0694228851565699 +256741,1283.7050000164152,-0.06942287508133821 +256742,1283.7100000164153,-0.06942286500462454 +256743,1283.7150000164154,-0.06942285492642937 +256744,1283.7200000164155,-0.06942284484675311 +256745,1283.7250000164156,-0.06942283476559624 +256746,1283.7300000164157,-0.06942282468295917 +256747,1283.7350000164158,-0.06942281459884236 +256748,1283.740000016416,-0.06942280451324627 +256749,1283.745000016416,-0.06942279442617129 +256750,1283.7500000164162,-0.06942278433761791 +256751,1283.7550000164163,-0.06942277424758656 +256752,1283.7600000164164,-0.06942276415607769 +256753,1283.7650000164165,-0.06942275406309173 +256754,1283.7700000164166,-0.06942274396862912 +256755,1283.7750000164167,-0.06942273387269032 +256756,1283.7800000164168,-0.06942272377527575 +256757,1283.785000016417,-0.06942271367638587 +256758,1283.790000016417,-0.06942270357602111 +256759,1283.7950000164171,-0.06942269347418191 +256760,1283.8000000164172,-0.06942268337086872 +256761,1283.8050000164174,-0.069422673266082 +256762,1283.8100000164175,-0.06942266315982214 +256763,1283.8150000164176,-0.0694226530520896 +256764,1283.8200000164177,-0.06942264294288483 +256765,1283.8250000164178,-0.06942263283220829 +256766,1283.830000016418,-0.06942262272006038 +256767,1283.835000016418,-0.06942261260644156 +256768,1283.8400000164181,-0.06942260249135228 +256769,1283.8450000164182,-0.06942259237479295 +256770,1283.8500000164183,-0.06942258225676405 +256771,1283.8550000164184,-0.06942257213726598 +256772,1283.8600000164186,-0.06942256201629919 +256773,1283.8650000164187,-0.06942255189386413 +256774,1283.8700000164188,-0.06942254176996124 +256775,1283.8750000164189,-0.06942253164459095 +256776,1283.880000016419,-0.0694225215177537 +256777,1283.885000016419,-0.06942251138944991 +256778,1283.8900000164192,-0.06942250125968005 +256779,1283.8950000164193,-0.06942249112844454 +256780,1283.9000000164194,-0.06942248099574382 +256781,1283.9050000164195,-0.06942247086157832 +256782,1283.9100000164196,-0.06942246072594849 +256783,1283.9150000164198,-0.06942245058885474 +256784,1283.9200000164199,-0.06942244045029755 +256785,1283.92500001642,-0.06942243031027732 +256786,1283.93000001642,-0.06942242016879452 +256787,1283.9350000164202,-0.06942241002584956 +256788,1283.9400000164203,-0.06942239988144289 +256789,1283.9450000164204,-0.06942238973557492 +256790,1283.9500000164205,-0.06942237958824614 +256791,1283.9550000164206,-0.06942236943945691 +256792,1283.9600000164207,-0.06942235928920773 +256793,1283.9650000164208,-0.069422349137499 +256794,1283.970000016421,-0.06942233898433119 +256795,1283.975000016421,-0.0694223288297047 +256796,1283.9800000164212,-0.06942231867361998 +256797,1283.9850000164213,-0.06942230851607745 +256798,1283.9900000164214,-0.06942229835707757 +256799,1283.9950000164215,-0.06942228819662076 +256800,1284.0000000164216,-0.06942227803470745 +256801,1284.0050000164217,-0.06942226787133808 +256802,1284.0100000164218,-0.06942225770651309 +256803,1284.015000016422,-0.06942224754023289 +256804,1284.020000016422,-0.06942223737249793 +256805,1284.0250000164222,-0.06942222720330865 +256806,1284.0300000164223,-0.06942221703266548 +256807,1284.0350000164224,-0.06942220686056884 +256808,1284.0400000164225,-0.06942219668701917 +256809,1284.0450000164226,-0.0694221865120169 +256810,1284.0500000164227,-0.06942217633556245 +256811,1284.0550000164228,-0.0694221661576563 +256812,1284.060000016423,-0.06942215597829882 +256813,1284.065000016423,-0.0694221457974905 +256814,1284.0700000164231,-0.06942213561523171 +256815,1284.0750000164232,-0.06942212543152293 +256816,1284.0800000164234,-0.06942211524636457 +256817,1284.0850000164235,-0.06942210505975707 +256818,1284.0900000164236,-0.06942209487170087 +256819,1284.0950000164237,-0.06942208468219638 +256820,1284.1000000164238,-0.06942207449124403 +256821,1284.105000016424,-0.06942206429884426 +256822,1284.110000016424,-0.06942205410499752 +256823,1284.1150000164241,-0.0694220439097042 +256824,1284.1200000164242,-0.06942203371296475 +256825,1284.1250000164243,-0.0694220235147796 +256826,1284.1300000164244,-0.06942201331514918 +256827,1284.1350000164246,-0.06942200311407391 +256828,1284.1400000164247,-0.06942199291155424 +256829,1284.1450000164248,-0.06942198270759059 +256830,1284.1500000164249,-0.06942197250218338 +256831,1284.155000016425,-0.06942196229533305 +256832,1284.160000016425,-0.06942195208704001 +256833,1284.1650000164252,-0.0694219418773047 +256834,1284.1700000164253,-0.06942193166612756 +256835,1284.1750000164254,-0.069421921453509 +256836,1284.1800000164255,-0.06942191123944946 +256837,1284.1850000164256,-0.06942190102394936 +256838,1284.1900000164258,-0.06942189080700913 +256839,1284.1950000164259,-0.06942188058862918 +256840,1284.200000016426,-0.06942187036880997 +256841,1284.205000016426,-0.06942186014755192 +256842,1284.2100000164262,-0.06942184992485542 +256843,1284.2150000164263,-0.06942183970072095 +256844,1284.2200000164264,-0.06942182947514891 +256845,1284.2250000164265,-0.06942181924813973 +256846,1284.2300000164266,-0.06942180901969383 +256847,1284.2350000164267,-0.06942179878981164 +256848,1284.2400000164268,-0.06942178855849357 +256849,1284.245000016427,-0.06942177832574008 +256850,1284.250000016427,-0.06942176809155157 +256851,1284.2550000164272,-0.06942175785592847 +256852,1284.2600000164273,-0.0694217476188712 +256853,1284.2650000164274,-0.0694217373803802 +256854,1284.2700000164275,-0.06942172714045587 +256855,1284.2750000164276,-0.06942171689909866 +256856,1284.2800000164277,-0.069421706656309 +256857,1284.2850000164278,-0.06942169641208729 +256858,1284.290000016428,-0.06942168616643396 +256859,1284.295000016428,-0.06942167591934945 +256860,1284.3000000164282,-0.06942166567083416 +256861,1284.3050000164283,-0.06942165542088853 +256862,1284.3100000164284,-0.06942164516951298 +256863,1284.3150000164285,-0.06942163491670791 +256864,1284.3200000164286,-0.06942162466247379 +256865,1284.3250000164287,-0.06942161440681101 +256866,1284.3300000164288,-0.06942160414972 +256867,1284.335000016429,-0.06942159389120119 +256868,1284.340000016429,-0.06942158363125497 +256869,1284.3450000164291,-0.06942157336988182 +256870,1284.3500000164292,-0.06942156310708211 +256871,1284.3550000164294,-0.06942155284285628 +256872,1284.3600000164295,-0.06942154257720476 +256873,1284.3650000164296,-0.06942153231012796 +256874,1284.3700000164297,-0.0694215220416263 +256875,1284.3750000164298,-0.06942151177170021 +256876,1284.38000001643,-0.0694215015003501 +256877,1284.38500001643,-0.06942149122757642 +256878,1284.3900000164301,-0.06942148095337955 +256879,1284.3950000164302,-0.06942147067775993 +256880,1284.4000000164303,-0.06942146040071799 +256881,1284.4050000164304,-0.06942145012225415 +256882,1284.4100000164306,-0.0694214398423688 +256883,1284.4150000164307,-0.0694214295610624 +256884,1284.4200000164308,-0.06942141927833534 +256885,1284.4250000164309,-0.06942140899418804 +256886,1284.430000016431,-0.06942139870862095 +256887,1284.435000016431,-0.06942138842163445 +256888,1284.4400000164312,-0.06942137813322899 +256889,1284.4450000164313,-0.06942136784340497 +256890,1284.4500000164314,-0.0694213575521628 +256891,1284.4550000164315,-0.06942134725950293 +256892,1284.4600000164316,-0.06942133696542575 +256893,1284.4650000164318,-0.0694213266699317 +256894,1284.4700000164319,-0.06942131637302118 +256895,1284.475000016432,-0.06942130607469463 +256896,1284.480000016432,-0.06942129577495244 +256897,1284.4850000164322,-0.06942128547379504 +256898,1284.4900000164323,-0.06942127517122285 +256899,1284.4950000164324,-0.06942126486723628 +256900,1284.5000000164325,-0.06942125456183576 +256901,1284.5050000164326,-0.06942124425502169 +256902,1284.5100000164327,-0.0694212339467945 +256903,1284.5150000164329,-0.0694212236371546 +256904,1284.520000016433,-0.0694212133261024 +256905,1284.525000016433,-0.06942120301363834 +256906,1284.5300000164332,-0.06942119269976281 +256907,1284.5350000164333,-0.06942118238447624 +256908,1284.5400000164334,-0.06942117206777904 +256909,1284.5450000164335,-0.06942116174967163 +256910,1284.5500000164336,-0.06942115143015443 +256911,1284.5550000164337,-0.06942114110922784 +256912,1284.5600000164338,-0.06942113078689229 +256913,1284.565000016434,-0.06942112046314818 +256914,1284.570000016434,-0.06942111013799593 +256915,1284.5750000164342,-0.06942109981143595 +256916,1284.5800000164343,-0.06942108948346866 +256917,1284.5850000164344,-0.06942107915409448 +256918,1284.5900000164345,-0.06942106882331384 +256919,1284.5950000164346,-0.0694210584911271 +256920,1284.6000000164347,-0.06942104815753472 +256921,1284.6050000164348,-0.06942103782253708 +256922,1284.610000016435,-0.06942102748613464 +256923,1284.615000016435,-0.0694210171483278 +256924,1284.6200000164351,-0.06942100680911693 +256925,1284.6250000164353,-0.06942099646850249 +256926,1284.6300000164354,-0.06942098612648485 +256927,1284.6350000164355,-0.06942097578306447 +256928,1284.6400000164356,-0.06942096543824172 +256929,1284.6450000164357,-0.06942095509201705 +256930,1284.6500000164358,-0.06942094474439085 +256931,1284.655000016436,-0.06942093439536354 +256932,1284.660000016436,-0.06942092404493551 +256933,1284.6650000164361,-0.0694209136931072 +256934,1284.6700000164362,-0.069420903339879 +256935,1284.6750000164363,-0.06942089298525134 +256936,1284.6800000164365,-0.06942088262922462 +256937,1284.6850000164366,-0.06942087227179926 +256938,1284.6900000164367,-0.06942086191297565 +256939,1284.6950000164368,-0.06942085155275424 +256940,1284.700000016437,-0.06942084119113538 +256941,1284.705000016437,-0.06942083082811953 +256942,1284.710000016437,-0.0694208204637071 +256943,1284.7150000164372,-0.06942081009789845 +256944,1284.7200000164373,-0.06942079973069404 +256945,1284.7250000164374,-0.06942078936209427 +256946,1284.7300000164375,-0.06942077899209954 +256947,1284.7350000164377,-0.06942076862071027 +256948,1284.7400000164378,-0.06942075824792684 +256949,1284.7450000164379,-0.06942074787374969 +256950,1284.750000016438,-0.06942073749817922 +256951,1284.755000016438,-0.06942072712121584 +256952,1284.7600000164382,-0.06942071674285996 +256953,1284.7650000164383,-0.069420706363112 +256954,1284.7700000164384,-0.06942069598197231 +256955,1284.7750000164385,-0.06942068559944137 +256956,1284.7800000164386,-0.06942067521551955 +256957,1284.7850000164387,-0.06942066483020726 +256958,1284.7900000164389,-0.06942065444350491 +256959,1284.795000016439,-0.06942064405541293 +256960,1284.800000016439,-0.06942063366593168 +256961,1284.8050000164392,-0.0694206232750616 +256962,1284.8100000164393,-0.0694206128828031 +256963,1284.8150000164394,-0.06942060248915656 +256964,1284.8200000164395,-0.06942059209412241 +256965,1284.8250000164396,-0.06942058169770106 +256966,1284.8300000164397,-0.0694205712998929 +256967,1284.8350000164398,-0.06942056090069834 +256968,1284.84000001644,-0.06942055050011779 +256969,1284.84500001644,-0.06942054009815164 +256970,1284.8500000164402,-0.06942052969480032 +256971,1284.8550000164403,-0.06942051929006422 +256972,1284.8600000164404,-0.06942050888394376 +256973,1284.8650000164405,-0.06942049847643932 +256974,1284.8700000164406,-0.06942048806755131 +256975,1284.8750000164407,-0.06942047765728016 +256976,1284.8800000164408,-0.06942046724562626 +256977,1284.885000016441,-0.06942045683259 +256978,1284.890000016441,-0.06942044641817181 +256979,1284.8950000164411,-0.06942043600237208 +256980,1284.9000000164413,-0.0694204255851912 +256981,1284.9050000164414,-0.06942041516662958 +256982,1284.9100000164415,-0.06942040474668763 +256983,1284.9150000164416,-0.06942039432536577 +256984,1284.9200000164417,-0.06942038390266439 +256985,1284.9250000164418,-0.06942037347858387 +256986,1284.930000016442,-0.06942036305312464 +256987,1284.935000016442,-0.06942035262628711 +256988,1284.9400000164421,-0.06942034219807167 +256989,1284.9450000164422,-0.0694203317684787 +256990,1284.9500000164423,-0.06942032133750864 +256991,1284.9550000164425,-0.06942031090516187 +256992,1284.9600000164426,-0.0694203004714388 +256993,1284.9650000164427,-0.0694202900363398 +256994,1284.9700000164428,-0.06942027959986533 +256995,1284.975000016443,-0.06942026916201574 +256996,1284.980000016443,-0.06942025872279146 +256997,1284.985000016443,-0.06942024828219288 +256998,1284.9900000164432,-0.06942023784022043 +256999,1284.9950000164433,-0.06942022739687445 +257000,1285.0000000164434,-0.06942021695215539 +257001,1285.0050000164435,-0.06942020650606363 +257002,1285.0100000164437,-0.06942019605859959 +257003,1285.0150000164438,-0.06942018560976365 +257004,1285.0200000164439,-0.06942017515955622 +257005,1285.025000016444,-0.06942016470797768 +257006,1285.030000016444,-0.06942015425502845 +257007,1285.0350000164442,-0.06942014380070893 +257008,1285.0400000164443,-0.06942013334501951 +257009,1285.0450000164444,-0.06942012288796061 +257010,1285.0500000164445,-0.0694201124295326 +257011,1285.0550000164446,-0.06942010196973589 +257012,1285.0600000164447,-0.06942009150857088 +257013,1285.0650000164449,-0.06942008104603796 +257014,1285.070000016445,-0.06942007058213756 +257015,1285.075000016445,-0.06942006011687003 +257016,1285.0800000164452,-0.06942004965023581 +257017,1285.0850000164453,-0.06942003918223527 +257018,1285.0900000164454,-0.06942002871286883 +257019,1285.0950000164455,-0.06942001824213687 +257020,1285.1000000164456,-0.06942000777003977 +257021,1285.1050000164457,-0.06941999729657798 +257022,1285.1100000164458,-0.06941998682175185 +257023,1285.115000016446,-0.06941997634556181 +257024,1285.120000016446,-0.06941996586800823 +257025,1285.1250000164462,-0.06941995538909153 +257026,1285.1300000164463,-0.06941994490881209 +257027,1285.1350000164464,-0.06941993442717029 +257028,1285.1400000164465,-0.06941992394416656 +257029,1285.1450000164466,-0.06941991345980128 +257030,1285.1500000164467,-0.06941990297407484 +257031,1285.1550000164468,-0.06941989248698767 +257032,1285.160000016447,-0.06941988199854013 +257033,1285.165000016447,-0.0694198715087326 +257034,1285.1700000164471,-0.0694198610175655 +257035,1285.1750000164473,-0.06941985052503925 +257036,1285.1800000164474,-0.06941984003115421 +257037,1285.1850000164475,-0.06941982953591078 +257038,1285.1900000164476,-0.06941981903930936 +257039,1285.1950000164477,-0.06941980854135035 +257040,1285.2000000164478,-0.06941979804203413 +257041,1285.205000016448,-0.0694197875413611 +257042,1285.210000016448,-0.06941977703933166 +257043,1285.2150000164481,-0.0694197665359462 +257044,1285.2200000164482,-0.0694197560312051 +257045,1285.2250000164483,-0.06941974552510877 +257046,1285.2300000164485,-0.06941973501765761 +257047,1285.2350000164486,-0.06941972450885199 +257048,1285.2400000164487,-0.0694197139986923 +257049,1285.2450000164488,-0.06941970348717896 +257050,1285.250000016449,-0.06941969297431236 +257051,1285.255000016449,-0.06941968246009288 +257052,1285.260000016449,-0.06941967194452091 +257053,1285.2650000164492,-0.06941966142759684 +257054,1285.2700000164493,-0.06941965090932106 +257055,1285.2750000164494,-0.06941964038969398 +257056,1285.2800000164495,-0.06941962986871598 +257057,1285.2850000164497,-0.06941961934638746 +257058,1285.2900000164498,-0.06941960882270881 +257059,1285.2950000164499,-0.06941959829768041 +257060,1285.30000001645,-0.06941958777130267 +257061,1285.30500001645,-0.06941957724357595 +257062,1285.3100000164502,-0.06941956671450067 +257063,1285.3150000164503,-0.06941955618407719 +257064,1285.3200000164504,-0.06941954565230594 +257065,1285.3250000164505,-0.06941953511918729 +257066,1285.3300000164506,-0.06941952458472161 +257067,1285.3350000164507,-0.06941951404890932 +257068,1285.3400000164509,-0.0694195035117508 +257069,1285.345000016451,-0.06941949297324645 +257070,1285.350000016451,-0.06941948243339664 +257071,1285.3550000164512,-0.06941947189220177 +257072,1285.3600000164513,-0.06941946134966223 +257073,1285.3650000164514,-0.0694194508057784 +257074,1285.3700000164515,-0.06941944026055068 +257075,1285.3750000164516,-0.06941942971397944 +257076,1285.3800000164517,-0.0694194191660651 +257077,1285.3850000164518,-0.06941940861680801 +257078,1285.390000016452,-0.0694193980662086 +257079,1285.395000016452,-0.06941938751426723 +257080,1285.4000000164522,-0.0694193769609843 +257081,1285.4050000164523,-0.06941936640636018 +257082,1285.4100000164524,-0.06941935585039528 +257083,1285.4150000164525,-0.06941934529308998 +257084,1285.4200000164526,-0.06941933473444464 +257085,1285.4250000164527,-0.06941932417445969 +257086,1285.4300000164528,-0.0694193136131355 +257087,1285.435000016453,-0.06941930305047245 +257088,1285.440000016453,-0.06941929248647094 +257089,1285.4450000164532,-0.06941928192113135 +257090,1285.4500000164533,-0.06941927135445405 +257091,1285.4550000164534,-0.06941926078643945 +257092,1285.4600000164535,-0.06941925021708792 +257093,1285.4650000164536,-0.06941923964639986 +257094,1285.4700000164537,-0.06941922907437566 +257095,1285.4750000164538,-0.06941921850101568 +257096,1285.480000016454,-0.06941920792632031 +257097,1285.485000016454,-0.06941919735028997 +257098,1285.4900000164541,-0.06941918677292501 +257099,1285.4950000164542,-0.06941917619422582 +257100,1285.5000000164544,-0.06941916561419278 +257101,1285.5050000164545,-0.0694191550328263 +257102,1285.5100000164546,-0.06941914445012674 +257103,1285.5150000164547,-0.0694191338660945 +257104,1285.5200000164548,-0.06941912328072995 +257105,1285.525000016455,-0.06941911269403349 +257106,1285.530000016455,-0.06941910210600548 +257107,1285.5350000164551,-0.06941909151664634 +257108,1285.5400000164552,-0.0694190809259564 +257109,1285.5450000164553,-0.0694190703339361 +257110,1285.5500000164554,-0.0694190597405858 +257111,1285.5550000164556,-0.0694190491459059 +257112,1285.5600000164557,-0.06941903854989673 +257113,1285.5650000164558,-0.06941902795255872 +257114,1285.5700000164559,-0.06941901735389225 +257115,1285.575000016456,-0.06941900675389767 +257116,1285.580000016456,-0.06941899615257541 +257117,1285.5850000164562,-0.0694189855499258 +257118,1285.5900000164563,-0.06941897494594927 +257119,1285.5950000164564,-0.06941896434064619 +257120,1285.6000000164565,-0.06941895373401691 +257121,1285.6050000164566,-0.06941894312606185 +257122,1285.6100000164568,-0.06941893251678137 +257123,1285.6150000164569,-0.06941892190617585 +257124,1285.620000016457,-0.0694189112942457 +257125,1285.625000016457,-0.06941890068099126 +257126,1285.6300000164572,-0.06941889006641293 +257127,1285.6350000164573,-0.0694188794505111 +257128,1285.6400000164574,-0.06941886883328614 +257129,1285.6450000164575,-0.06941885821473844 +257130,1285.6500000164576,-0.06941884759486835 +257131,1285.6550000164577,-0.06941883697367629 +257132,1285.6600000164578,-0.06941882635116263 +257133,1285.665000016458,-0.0694188157273277 +257134,1285.670000016458,-0.06941880510217197 +257135,1285.6750000164582,-0.06941879447569574 +257136,1285.6800000164583,-0.06941878384789942 +257137,1285.6850000164584,-0.06941877321878338 +257138,1285.6900000164585,-0.06941876258834803 +257139,1285.6950000164586,-0.06941875195659372 +257140,1285.7000000164587,-0.06941874132352084 +257141,1285.7050000164588,-0.06941873068912975 +257142,1285.710000016459,-0.06941872005342084 +257143,1285.715000016459,-0.0694187094163945 +257144,1285.7200000164592,-0.06941869877805108 +257145,1285.7250000164593,-0.06941868813839099 +257146,1285.7300000164594,-0.0694186774974146 +257147,1285.7350000164595,-0.06941866685512227 +257148,1285.7400000164596,-0.06941865621151438 +257149,1285.7450000164597,-0.06941864556659134 +257150,1285.7500000164598,-0.06941863492035348 +257151,1285.75500001646,-0.06941862427280121 +257152,1285.76000001646,-0.06941861362393491 +257153,1285.7650000164601,-0.06941860297375493 +257154,1285.7700000164602,-0.06941859232226166 +257155,1285.7750000164604,-0.06941858166945548 +257156,1285.7800000164605,-0.06941857101533676 +257157,1285.7850000164606,-0.06941856035990587 +257158,1285.7900000164607,-0.0694185497031632 +257159,1285.7950000164608,-0.06941853904510913 +257160,1285.800000016461,-0.06941852838574401 +257161,1285.805000016461,-0.06941851772506824 +257162,1285.8100000164611,-0.0694185070630822 +257163,1285.8150000164612,-0.06941849639978623 +257164,1285.8200000164613,-0.06941848573518072 +257165,1285.8250000164614,-0.06941847506926607 +257166,1285.8300000164616,-0.06941846440204263 +257167,1285.8350000164617,-0.06941845373351078 +257168,1285.8400000164618,-0.06941844306367091 +257169,1285.8450000164619,-0.06941843239252338 +257170,1285.850000016462,-0.06941842172006854 +257171,1285.855000016462,-0.0694184110463068 +257172,1285.8600000164622,-0.06941840037123852 +257173,1285.8650000164623,-0.06941838969486408 +257174,1285.8700000164624,-0.06941837901718384 +257175,1285.8750000164625,-0.06941836833819819 +257176,1285.8800000164626,-0.06941835765790748 +257177,1285.8850000164628,-0.0694183469763121 +257178,1285.8900000164629,-0.06941833629341244 +257179,1285.895000016463,-0.06941832560920884 +257180,1285.900000016463,-0.0694183149237017 +257181,1285.9050000164632,-0.06941830423689135 +257182,1285.9100000164633,-0.06941829354877822 +257183,1285.9150000164634,-0.06941828285936265 +257184,1285.9200000164635,-0.069418272168645 +257185,1285.9250000164636,-0.06941826147662566 +257186,1285.9300000164637,-0.069418250783305 +257187,1285.9350000164638,-0.06941824008868339 +257188,1285.940000016464,-0.06941822939276121 +257189,1285.945000016464,-0.06941821869553881 +257190,1285.9500000164642,-0.06941820799701658 +257191,1285.9550000164643,-0.06941819729719488 +257192,1285.9600000164644,-0.0694181865960741 +257193,1285.9650000164645,-0.06941817589365458 +257194,1285.9700000164646,-0.06941816518993672 +257195,1285.9750000164647,-0.06941815448492086 +257196,1285.9800000164648,-0.0694181437786074 +257197,1285.985000016465,-0.0694181330709967 +257198,1285.990000016465,-0.06941812236208912 +257199,1285.9950000164652,-0.06941811165188504 +257200,1286.0000000164653,-0.06941810094038484 +257201,1286.0050000164654,-0.06941809022758885 +257202,1286.0100000164655,-0.06941807951349747 +257203,1286.0150000164656,-0.06941806879811108 +257204,1286.0200000164657,-0.06941805808143003 +257205,1286.0250000164658,-0.0694180473634547 +257206,1286.030000016466,-0.06941803664418543 +257207,1286.035000016466,-0.06941802592362262 +257208,1286.0400000164661,-0.06941801520176663 +257209,1286.0450000164662,-0.06941800447861783 +257210,1286.0500000164664,-0.06941799375417658 +257211,1286.0550000164665,-0.06941798302844325 +257212,1286.0600000164666,-0.0694179723014182 +257213,1286.0650000164667,-0.06941796157310182 +257214,1286.0700000164668,-0.06941795084349447 +257215,1286.075000016467,-0.06941794011259651 +257216,1286.080000016467,-0.0694179293804083 +257217,1286.0850000164671,-0.06941791864693025 +257218,1286.0900000164672,-0.06941790791216268 +257219,1286.0950000164673,-0.06941789717610596 +257220,1286.1000000164674,-0.06941788643876046 +257221,1286.1050000164676,-0.06941787570012657 +257222,1286.1100000164677,-0.06941786496020463 +257223,1286.1150000164678,-0.06941785421899503 +257224,1286.1200000164679,-0.06941784347649813 +257225,1286.125000016468,-0.06941783273271426 +257226,1286.130000016468,-0.06941782198764383 +257227,1286.1350000164682,-0.0694178112412872 +257228,1286.1400000164683,-0.06941780049364471 +257229,1286.1450000164684,-0.06941778974471674 +257230,1286.1500000164685,-0.06941777899450366 +257231,1286.1550000164686,-0.06941776824300584 +257232,1286.1600000164688,-0.06941775749022362 +257233,1286.1650000164689,-0.0694177467361574 +257234,1286.170000016469,-0.06941773598080751 +257235,1286.175000016469,-0.06941772522417433 +257236,1286.1800000164692,-0.06941771446625823 +257237,1286.1850000164693,-0.06941770370705957 +257238,1286.1900000164694,-0.06941769294657871 +257239,1286.1950000164695,-0.06941768218481602 +257240,1286.2000000164696,-0.06941767142177185 +257241,1286.2050000164697,-0.06941766065744659 +257242,1286.2100000164698,-0.06941764989184057 +257243,1286.21500001647,-0.06941763912495418 +257244,1286.22000001647,-0.06941762835678777 +257245,1286.2250000164702,-0.0694176175873417 +257246,1286.2300000164703,-0.06941760681661635 +257247,1286.2350000164704,-0.06941759604461208 +257248,1286.2400000164705,-0.06941758527132921 +257249,1286.2450000164706,-0.06941757449676816 +257250,1286.2500000164707,-0.06941756372092926 +257251,1286.2550000164708,-0.0694175529438129 +257252,1286.260000016471,-0.06941754216541941 +257253,1286.265000016471,-0.06941753138574916 +257254,1286.2700000164712,-0.06941752060480252 +257255,1286.2750000164713,-0.06941750982257984 +257256,1286.2800000164714,-0.06941749903908151 +257257,1286.2850000164715,-0.06941748825430785 +257258,1286.2900000164716,-0.06941747746825926 +257259,1286.2950000164717,-0.06941746668093605 +257260,1286.3000000164718,-0.06941745589233864 +257261,1286.305000016472,-0.06941744510246736 +257262,1286.310000016472,-0.06941743431132257 +257263,1286.3150000164721,-0.06941742351890463 +257264,1286.3200000164722,-0.06941741272521391 +257265,1286.3250000164724,-0.06941740193025077 +257266,1286.3300000164725,-0.06941739113401556 +257267,1286.3350000164726,-0.06941738033650864 +257268,1286.3400000164727,-0.06941736953773038 +257269,1286.3450000164728,-0.06941735873768114 +257270,1286.350000016473,-0.06941734793636127 +257271,1286.355000016473,-0.06941733713377113 +257272,1286.3600000164731,-0.06941732632991107 +257273,1286.3650000164732,-0.06941731552478149 +257274,1286.3700000164733,-0.0694173047183827 +257275,1286.3750000164735,-0.06941729391071508 +257276,1286.3800000164736,-0.06941728310177898 +257277,1286.3850000164737,-0.06941727229157477 +257278,1286.3900000164738,-0.0694172614801028 +257279,1286.395000016474,-0.06941725066736343 +257280,1286.400000016474,-0.06941723985335702 +257281,1286.405000016474,-0.06941722903808394 +257282,1286.4100000164742,-0.06941721822154452 +257283,1286.4150000164743,-0.06941720740373913 +257284,1286.4200000164744,-0.06941719658466813 +257285,1286.4250000164745,-0.06941718576433188 +257286,1286.4300000164747,-0.06941717494273072 +257287,1286.4350000164748,-0.06941716411986504 +257288,1286.4400000164749,-0.06941715329573517 +257289,1286.445000016475,-0.06941714247034146 +257290,1286.450000016475,-0.0694171316436843 +257291,1286.4550000164752,-0.069417120815764 +257292,1286.4600000164753,-0.06941710998658096 +257293,1286.4650000164754,-0.0694170991561355 +257294,1286.4700000164755,-0.06941708832442803 +257295,1286.4750000164756,-0.06941707749145884 +257296,1286.4800000164757,-0.06941706665722831 +257297,1286.4850000164759,-0.06941705582173682 +257298,1286.490000016476,-0.0694170449849847 +257299,1286.495000016476,-0.06941703414697231 +257300,1286.5000000164762,-0.06941702330770001 +257301,1286.5050000164763,-0.06941701246716815 +257302,1286.5100000164764,-0.06941700162537709 +257303,1286.5150000164765,-0.06941699078232716 +257304,1286.5200000164766,-0.06941697993801876 +257305,1286.5250000164767,-0.06941696909245221 +257306,1286.5300000164768,-0.06941695824562787 +257307,1286.535000016477,-0.0694169473975461 +257308,1286.540000016477,-0.06941693654820724 +257309,1286.5450000164772,-0.06941692569761168 +257310,1286.5500000164773,-0.06941691484575974 +257311,1286.5550000164774,-0.06941690399265177 +257312,1286.5600000164775,-0.06941689313828815 +257313,1286.5650000164776,-0.0694168822826692 +257314,1286.5700000164777,-0.0694168714257953 +257315,1286.5750000164778,-0.0694168605676668 +257316,1286.580000016478,-0.06941684970828405 +257317,1286.585000016478,-0.0694168388476474 +257318,1286.5900000164781,-0.0694168279857572 +257319,1286.5950000164783,-0.0694168171226138 +257320,1286.6000000164784,-0.06941680625821756 +257321,1286.6050000164785,-0.06941679539256881 +257322,1286.6100000164786,-0.06941678452566794 +257323,1286.6150000164787,-0.06941677365751528 +257324,1286.6200000164788,-0.06941676278811118 +257325,1286.625000016479,-0.06941675191745601 +257326,1286.630000016479,-0.0694167410455501 +257327,1286.6350000164791,-0.0694167301723938 +257328,1286.6400000164792,-0.06941671929798747 +257329,1286.6450000164793,-0.06941670842233147 +257330,1286.6500000164795,-0.06941669754542613 +257331,1286.6550000164796,-0.06941668666727183 +257332,1286.6600000164797,-0.06941667578786886 +257333,1286.6650000164798,-0.06941666490721765 +257334,1286.67000001648,-0.0694166540253185 +257335,1286.67500001648,-0.06941664314217177 +257336,1286.68000001648,-0.06941663225777782 +257337,1286.6850000164802,-0.06941662137213699 +257338,1286.6900000164803,-0.06941661048524962 +257339,1286.6950000164804,-0.06941659959711607 +257340,1286.7000000164805,-0.0694165887077367 +257341,1286.7050000164807,-0.06941657781711186 +257342,1286.7100000164808,-0.06941656692524188 +257343,1286.7150000164809,-0.06941655603212712 +257344,1286.720000016481,-0.06941654513776793 +257345,1286.725000016481,-0.06941653424216465 +257346,1286.7300000164812,-0.06941652334531763 +257347,1286.7350000164813,-0.06941651244722723 +257348,1286.7400000164814,-0.06941650154789378 +257349,1286.7450000164815,-0.06941649064731763 +257350,1286.7500000164816,-0.06941647974549915 +257351,1286.7550000164817,-0.06941646884243868 +257352,1286.7600000164819,-0.06941645793813654 +257353,1286.765000016482,-0.06941644703259313 +257354,1286.770000016482,-0.06941643612580875 +257355,1286.7750000164822,-0.06941642521778375 +257356,1286.7800000164823,-0.06941641430851851 +257357,1286.7850000164824,-0.06941640339801336 +257358,1286.7900000164825,-0.06941639248626863 +257359,1286.7950000164826,-0.0694163815732847 +257360,1286.8000000164827,-0.06941637065906188 +257361,1286.8050000164828,-0.06941635974360055 +257362,1286.810000016483,-0.06941634882690104 +257363,1286.815000016483,-0.06941633790896369 +257364,1286.8200000164832,-0.06941632698978885 +257365,1286.8250000164833,-0.06941631606937686 +257366,1286.8300000164834,-0.06941630514772808 +257367,1286.8350000164835,-0.06941629422484286 +257368,1286.8400000164836,-0.06941628330072153 +257369,1286.8450000164837,-0.06941627237536445 +257370,1286.8500000164838,-0.06941626144877193 +257371,1286.855000016484,-0.06941625052094436 +257372,1286.860000016484,-0.06941623959188206 +257373,1286.8650000164841,-0.06941622866158538 +257374,1286.8700000164843,-0.06941621773005467 +257375,1286.8750000164844,-0.06941620679729027 +257376,1286.8800000164845,-0.06941619586329253 +257377,1286.8850000164846,-0.06941618492806179 +257378,1286.8900000164847,-0.06941617399159837 +257379,1286.8950000164848,-0.06941616305390265 +257380,1286.900000016485,-0.06941615211497497 +257381,1286.905000016485,-0.06941614117481563 +257382,1286.9100000164851,-0.06941613023342504 +257383,1286.9150000164852,-0.06941611929080349 +257384,1286.9200000164853,-0.06941610834695135 +257385,1286.9250000164855,-0.06941609740186895 +257386,1286.9300000164856,-0.06941608645555665 +257387,1286.9350000164857,-0.06941607550801479 +257388,1286.9400000164858,-0.06941606455924369 +257389,1286.945000016486,-0.06941605360924372 +257390,1286.950000016486,-0.0694160426580152 +257391,1286.955000016486,-0.06941603170555848 +257392,1286.9600000164862,-0.0694160207518739 +257393,1286.9650000164863,-0.06941600979696182 +257394,1286.9700000164864,-0.06941599884082256 +257395,1286.9750000164865,-0.06941598788345647 +257396,1286.9800000164867,-0.06941597692486388 +257397,1286.9850000164868,-0.06941596596504516 +257398,1286.9900000164869,-0.06941595500400062 +257399,1286.995000016487,-0.06941594404173063 +257400,1287.000000016487,-0.0694159330782355 +257401,1287.0050000164872,-0.06941592211351559 +257402,1287.0100000164873,-0.06941591114757124 +257403,1287.0150000164874,-0.06941590018040279 +257404,1287.0200000164875,-0.06941588921201057 +257405,1287.0250000164876,-0.06941587824239494 +257406,1287.0300000164877,-0.06941586727155623 +257407,1287.0350000164879,-0.06941585629949476 +257408,1287.040000016488,-0.0694158453262109 +257409,1287.045000016488,-0.06941583435170498 +257410,1287.0500000164882,-0.06941582337597732 +257411,1287.0550000164883,-0.0694158123990283 +257412,1287.0600000164884,-0.06941580142085824 +257413,1287.0650000164885,-0.06941579044146746 +257414,1287.0700000164886,-0.06941577946085634 +257415,1287.0750000164887,-0.06941576847902516 +257416,1287.0800000164888,-0.06941575749597433 +257417,1287.085000016489,-0.06941574651170412 +257418,1287.090000016489,-0.06941573552621493 +257419,1287.0950000164892,-0.06941572453950703 +257420,1287.1000000164893,-0.06941571355158083 +257421,1287.1050000164894,-0.06941570256243662 +257422,1287.1100000164895,-0.06941569157207476 +257423,1287.1150000164896,-0.06941568058049558 +257424,1287.1200000164897,-0.06941566958769942 +257425,1287.1250000164898,-0.0694156585936866 +257426,1287.13000001649,-0.06941564759845749 +257427,1287.13500001649,-0.0694156366020124 +257428,1287.1400000164901,-0.06941562560435169 +257429,1287.1450000164903,-0.06941561460547568 +257430,1287.1500000164904,-0.06941560360538472 +257431,1287.1550000164905,-0.06941559260407913 +257432,1287.1600000164906,-0.06941558160155926 +257433,1287.1650000164907,-0.06941557059782545 +257434,1287.1700000164908,-0.06941555959287801 +257435,1287.175000016491,-0.06941554858671731 +257436,1287.180000016491,-0.06941553757934367 +257437,1287.1850000164911,-0.0694155265707574 +257438,1287.1900000164912,-0.0694155155609589 +257439,1287.1950000164913,-0.06941550454994845 +257440,1287.2000000164915,-0.0694154935377264 +257441,1287.2050000164916,-0.0694154825242931 +257442,1287.2100000164917,-0.06941547150964887 +257443,1287.2150000164918,-0.06941546049379405 +257444,1287.220000016492,-0.06941544947672897 +257445,1287.225000016492,-0.06941543845845397 +257446,1287.230000016492,-0.06941542743896938 +257447,1287.2350000164922,-0.06941541641827555 +257448,1287.2400000164923,-0.0694154053963728 +257449,1287.2450000164924,-0.06941539437326145 +257450,1287.2500000164925,-0.06941538334894187 +257451,1287.2550000164927,-0.06941537232341438 +257452,1287.2600000164928,-0.0694153612966793 +257453,1287.2650000164929,-0.06941535026873698 +257454,1287.270000016493,-0.06941533923958774 +257455,1287.275000016493,-0.06941532820923192 +257456,1287.2800000164932,-0.06941531717766986 +257457,1287.2850000164933,-0.06941530614490188 +257458,1287.2900000164934,-0.06941529511092832 +257459,1287.2950000164935,-0.06941528407574953 +257460,1287.3000000164936,-0.06941527303936582 +257461,1287.3050000164938,-0.06941526200177753 +257462,1287.3100000164939,-0.06941525096298497 +257463,1287.315000016494,-0.06941523992298851 +257464,1287.320000016494,-0.06941522888178847 +257465,1287.3250000164942,-0.06941521783938516 +257466,1287.3300000164943,-0.06941520679577895 +257467,1287.3350000164944,-0.06941519575097015 +257468,1287.3400000164945,-0.0694151847049591 +257469,1287.3450000164946,-0.0694151736577461 +257470,1287.3500000164947,-0.06941516260933153 +257471,1287.3550000164948,-0.0694151515597157 +257472,1287.360000016495,-0.06941514050889894 +257473,1287.365000016495,-0.06941512945688157 +257474,1287.3700000164952,-0.06941511840366392 +257475,1287.3750000164953,-0.06941510734924636 +257476,1287.3800000164954,-0.06941509629362917 +257477,1287.3850000164955,-0.06941508523681272 +257478,1287.3900000164956,-0.06941507417879733 +257479,1287.3950000164957,-0.06941506311958331 +257480,1287.4000000164958,-0.06941505205917102 +257481,1287.405000016496,-0.06941504099756077 +257482,1287.410000016496,-0.06941502993475289 +257483,1287.4150000164962,-0.06941501887074772 +257484,1287.4200000164963,-0.06941500780554558 +257485,1287.4250000164964,-0.0694149967391468 +257486,1287.4300000164965,-0.06941498567155172 +257487,1287.4350000164966,-0.06941497460276067 +257488,1287.4400000164967,-0.06941496353277396 +257489,1287.4450000164968,-0.06941495246159192 +257490,1287.450000016497,-0.0694149413892149 +257491,1287.455000016497,-0.06941493031564322 +257492,1287.4600000164971,-0.06941491924087721 +257493,1287.4650000164972,-0.06941490816491719 +257494,1287.4700000164974,-0.06941489708776351 +257495,1287.4750000164975,-0.06941488600941646 +257496,1287.4800000164976,-0.0694148749298764 +257497,1287.4850000164977,-0.06941486384914367 +257498,1287.4900000164978,-0.06941485276721854 +257499,1287.495000016498,-0.06941484168410138 +257500,1287.500000016498,-0.0694148305997925 +257501,1287.5050000164981,-0.06941481951429226 +257502,1287.5100000164982,-0.06941480842760096 +257503,1287.5150000164983,-0.06941479733971893 +257504,1287.5200000164984,-0.0694147862506465 +257505,1287.5250000164986,-0.069414775160384 +257506,1287.5300000164987,-0.06941476406893175 +257507,1287.5350000164988,-0.06941475297629007 +257508,1287.5400000164989,-0.06941474188245932 +257509,1287.545000016499,-0.06941473078743979 +257510,1287.550000016499,-0.06941471969123181 +257511,1287.5550000164992,-0.06941470859383572 +257512,1287.5600000164993,-0.06941469749525185 +257513,1287.5650000164994,-0.0694146863954805 +257514,1287.5700000164995,-0.06941467529452203 +257515,1287.5750000164996,-0.06941466419237674 +257516,1287.5800000164998,-0.06941465308904496 +257517,1287.5850000164999,-0.06941464198452703 +257518,1287.5900000165,-0.06941463087882324 +257519,1287.5950000165,-0.06941461977193396 +257520,1287.6000000165002,-0.06941460866385948 +257521,1287.6050000165003,-0.06941459755460015 +257522,1287.6100000165004,-0.06941458644415628 +257523,1287.6150000165005,-0.0694145753325282 +257524,1287.6200000165006,-0.06941456421971623 +257525,1287.6250000165007,-0.06941455310572069 +257526,1287.6300000165008,-0.06941454199054191 +257527,1287.635000016501,-0.06941453087418022 +257528,1287.640000016501,-0.06941451975663593 +257529,1287.6450000165012,-0.06941450863790938 +257530,1287.6500000165013,-0.06941449751800088 +257531,1287.6550000165014,-0.06941448639691077 +257532,1287.6600000165015,-0.06941447527463934 +257533,1287.6650000165016,-0.06941446415118695 +257534,1287.6700000165017,-0.0694144530265539 +257535,1287.6750000165018,-0.06941444190074053 +257536,1287.680000016502,-0.06941443077374716 +257537,1287.685000016502,-0.0694144196455741 +257538,1287.6900000165022,-0.06941440851622167 +257539,1287.6950000165023,-0.0694143973856902 +257540,1287.7000000165024,-0.06941438625398003 +257541,1287.7050000165025,-0.06941437512109146 +257542,1287.7100000165026,-0.06941436398702482 +257543,1287.7150000165027,-0.06941435285178042 +257544,1287.7200000165028,-0.06941434171535861 +257545,1287.725000016503,-0.06941433057775967 +257546,1287.730000016503,-0.06941431943898395 +257547,1287.7350000165031,-0.06941430829903178 +257548,1287.7400000165032,-0.06941429715790345 +257549,1287.7450000165034,-0.0694142860155993 +257550,1287.7500000165035,-0.06941427487211967 +257551,1287.7550000165036,-0.06941426372746484 +257552,1287.7600000165037,-0.06941425258163517 +257553,1287.7650000165038,-0.06941424143463096 +257554,1287.770000016504,-0.06941423028645251 +257555,1287.775000016504,-0.06941421913710018 +257556,1287.7800000165041,-0.06941420798657427 +257557,1287.7850000165042,-0.0694141968348751 +257558,1287.7900000165043,-0.069414185682003 +257559,1287.7950000165044,-0.06941417452795827 +257560,1287.8000000165046,-0.06941416337274124 +257561,1287.8050000165047,-0.06941415221635223 +257562,1287.8100000165048,-0.06941414105879157 +257563,1287.8150000165049,-0.06941412990005957 +257564,1287.820000016505,-0.06941411874015656 +257565,1287.825000016505,-0.06941410757908284 +257566,1287.8300000165052,-0.06941409641683874 +257567,1287.8350000165053,-0.06941408525342456 +257568,1287.8400000165054,-0.06941407408884065 +257569,1287.8450000165055,-0.06941406292308731 +257570,1287.8500000165056,-0.06941405175616487 +257571,1287.8550000165058,-0.06941404058807363 +257572,1287.8600000165059,-0.06941402941881393 +257573,1287.865000016506,-0.06941401824838606 +257574,1287.870000016506,-0.06941400707679035 +257575,1287.8750000165062,-0.06941399590402715 +257576,1287.8800000165063,-0.06941398473009673 +257577,1287.8850000165064,-0.06941397355499943 +257578,1287.8900000165065,-0.06941396237873557 +257579,1287.8950000165066,-0.06941395120130545 +257580,1287.9000000165067,-0.06941394002270941 +257581,1287.9050000165068,-0.06941392884294775 +257582,1287.910000016507,-0.06941391766202079 +257583,1287.915000016507,-0.06941390647992886 +257584,1287.9200000165072,-0.06941389529667226 +257585,1287.9250000165073,-0.06941388411225131 +257586,1287.9300000165074,-0.06941387292666633 +257587,1287.9350000165075,-0.06941386173991763 +257588,1287.9400000165076,-0.06941385055200554 +257589,1287.9450000165077,-0.06941383936293037 +257590,1287.9500000165078,-0.06941382817269244 +257591,1287.955000016508,-0.06941381698129205 +257592,1287.960000016508,-0.06941380578872952 +257593,1287.9650000165082,-0.06941379459500517 +257594,1287.9700000165083,-0.06941378340011932 +257595,1287.9750000165084,-0.06941377220407227 +257596,1287.9800000165085,-0.06941376100686436 +257597,1287.9850000165086,-0.06941374980849588 +257598,1287.9900000165087,-0.06941373860896716 +257599,1287.9950000165088,-0.0694137274082785 +257600,1288.000000016509,-0.06941371620643023 +257601,1288.005000016509,-0.06941370500342267 +257602,1288.0100000165091,-0.0694136937992561 +257603,1288.0150000165092,-0.06941368259393088 +257604,1288.0200000165094,-0.06941367138744729 +257605,1288.0250000165095,-0.06941366017980566 +257606,1288.0300000165096,-0.0694136489710063 +257607,1288.0350000165097,-0.06941363776104952 +257608,1288.0400000165098,-0.06941362654993563 +257609,1288.04500001651,-0.06941361533766495 +257610,1288.05000001651,-0.0694136041242378 +257611,1288.0550000165101,-0.0694135929096545 +257612,1288.0600000165102,-0.06941358169391533 +257613,1288.0650000165103,-0.06941357047702063 +257614,1288.0700000165104,-0.06941355925897069 +257615,1288.0750000165106,-0.06941354803976586 +257616,1288.0800000165107,-0.06941353681940642 +257617,1288.0850000165108,-0.06941352559789268 +257618,1288.0900000165109,-0.069413514375225 +257619,1288.095000016511,-0.06941350315140363 +257620,1288.100000016511,-0.06941349192642891 +257621,1288.1050000165112,-0.06941348070030116 +257622,1288.1100000165113,-0.06941346947302068 +257623,1288.1150000165114,-0.06941345824458779 +257624,1288.1200000165115,-0.0694134470150028 +257625,1288.1250000165116,-0.069413435784266 +257626,1288.1300000165118,-0.06941342455237771 +257627,1288.1350000165119,-0.06941341331933827 +257628,1288.140000016512,-0.06941340208514797 +257629,1288.145000016512,-0.06941339084980712 +257630,1288.1500000165122,-0.06941337961331602 +257631,1288.1550000165123,-0.06941336837567501 +257632,1288.1600000165124,-0.06941335713688437 +257633,1288.1650000165125,-0.06941334589694444 +257634,1288.1700000165126,-0.06941333465585549 +257635,1288.1750000165127,-0.06941332341361788 +257636,1288.1800000165128,-0.06941331217023188 +257637,1288.185000016513,-0.06941330092569781 +257638,1288.190000016513,-0.06941328968001599 +257639,1288.1950000165132,-0.06941327843318673 +257640,1288.2000000165133,-0.06941326718521033 +257641,1288.2050000165134,-0.0694132559360871 +257642,1288.2100000165135,-0.06941324468581736 +257643,1288.2150000165136,-0.06941323343440141 +257644,1288.2200000165137,-0.06941322218183955 +257645,1288.2250000165138,-0.06941321092813212 +257646,1288.230000016514,-0.0694131996732794 +257647,1288.235000016514,-0.0694131884172817 +257648,1288.2400000165142,-0.06941317716013932 +257649,1288.2450000165143,-0.0694131659018526 +257650,1288.2500000165144,-0.06941315464242184 +257651,1288.2550000165145,-0.06941314338184734 +257652,1288.2600000165146,-0.0694131321201294 +257653,1288.2650000165147,-0.06941312085726832 +257654,1288.2700000165148,-0.06941310959326445 +257655,1288.275000016515,-0.06941309832811807 +257656,1288.280000016515,-0.06941308706182947 +257657,1288.2850000165151,-0.069413075794399 +257658,1288.2900000165153,-0.06941306452582692 +257659,1288.2950000165154,-0.06941305325611358 +257660,1288.3000000165155,-0.06941304198525926 +257661,1288.3050000165156,-0.06941303071326427 +257662,1288.3100000165157,-0.06941301944012893 +257663,1288.3150000165158,-0.06941300816585352 +257664,1288.320000016516,-0.06941299689043838 +257665,1288.325000016516,-0.0694129856138838 +257666,1288.3300000165161,-0.06941297433619009 +257667,1288.3350000165162,-0.06941296305735754 +257668,1288.3400000165163,-0.06941295177738649 +257669,1288.3450000165165,-0.06941294049627722 +257670,1288.3500000165166,-0.06941292921403003 +257671,1288.3550000165167,-0.06941291793064525 +257672,1288.3600000165168,-0.06941290664612317 +257673,1288.365000016517,-0.06941289536046409 +257674,1288.370000016517,-0.06941288407366833 +257675,1288.375000016517,-0.06941287278573618 +257676,1288.3800000165172,-0.06941286149666796 +257677,1288.3850000165173,-0.06941285020646397 +257678,1288.3900000165174,-0.06941283891512451 +257679,1288.3950000165175,-0.06941282762264989 +257680,1288.4000000165177,-0.06941281632904041 +257681,1288.4050000165178,-0.06941280503429638 +257682,1288.4100000165179,-0.0694127937384181 +257683,1288.415000016518,-0.06941278244140588 +257684,1288.420000016518,-0.06941277114326001 +257685,1288.4250000165182,-0.06941275984398082 +257686,1288.4300000165183,-0.06941274854356859 +257687,1288.4350000165184,-0.06941273724202363 +257688,1288.4400000165185,-0.06941272593934623 +257689,1288.4450000165186,-0.06941271463553673 +257690,1288.4500000165187,-0.0694127033305954 +257691,1288.4550000165189,-0.06941269202452256 +257692,1288.460000016519,-0.06941268071731851 +257693,1288.465000016519,-0.06941266940898355 +257694,1288.4700000165192,-0.06941265809951798 +257695,1288.4750000165193,-0.0694126467889221 +257696,1288.4800000165194,-0.06941263547719623 +257697,1288.4850000165195,-0.06941262416434066 +257698,1288.4900000165196,-0.06941261285035569 +257699,1288.4950000165197,-0.06941260153524162 +257700,1288.5000000165198,-0.06941259021899877 +257701,1288.50500001652,-0.06941257890162743 +257702,1288.51000001652,-0.0694125675831279 +257703,1288.5150000165202,-0.06941255626350047 +257704,1288.5200000165203,-0.06941254494274547 +257705,1288.5250000165204,-0.06941253362086319 +257706,1288.5300000165205,-0.06941252229785391 +257707,1288.5350000165206,-0.06941251097371796 +257708,1288.5400000165207,-0.06941249964845564 +257709,1288.5450000165208,-0.06941248832206723 +257710,1288.550000016521,-0.06941247699455305 +257711,1288.555000016521,-0.06941246566591339 +257712,1288.5600000165211,-0.06941245433614855 +257713,1288.5650000165213,-0.06941244300525885 +257714,1288.5700000165214,-0.06941243167324457 +257715,1288.5750000165215,-0.06941242034010602 +257716,1288.5800000165216,-0.06941240900584347 +257717,1288.5850000165217,-0.06941239767045727 +257718,1288.5900000165218,-0.06941238633394768 +257719,1288.595000016522,-0.06941237499631503 +257720,1288.600000016522,-0.06941236365755958 +257721,1288.6050000165221,-0.06941235231768167 +257722,1288.6100000165222,-0.06941234097668157 +257723,1288.6150000165223,-0.06941232963455961 +257724,1288.6200000165225,-0.06941231829131607 +257725,1288.6250000165226,-0.06941230694695125 +257726,1288.6300000165227,-0.06941229560146545 +257727,1288.6350000165228,-0.06941228425485896 +257728,1288.640000016523,-0.0694122729071321 +257729,1288.645000016523,-0.06941226155828517 +257730,1288.650000016523,-0.06941225020831844 +257731,1288.6550000165232,-0.06941223885723223 +257732,1288.6600000165233,-0.06941222750502682 +257733,1288.6650000165234,-0.06941221615170252 +257734,1288.6700000165235,-0.06941220479725964 +257735,1288.6750000165237,-0.06941219344169845 +257736,1288.6800000165238,-0.06941218208501927 +257737,1288.6850000165239,-0.06941217072722239 +257738,1288.690000016524,-0.06941215936830811 +257739,1288.695000016524,-0.06941214800827673 +257740,1288.7000000165242,-0.06941213664712853 +257741,1288.7050000165243,-0.06941212528486383 +257742,1288.7100000165244,-0.06941211392148293 +257743,1288.7150000165245,-0.0694121025569861 +257744,1288.7200000165246,-0.06941209119137365 +257745,1288.7250000165247,-0.06941207982464588 +257746,1288.7300000165249,-0.0694120684568031 +257747,1288.735000016525,-0.06941205708784556 +257748,1288.740000016525,-0.06941204571777361 +257749,1288.7450000165252,-0.06941203434658752 +257750,1288.7500000165253,-0.06941202297428758 +257751,1288.7550000165254,-0.06941201160087411 +257752,1288.7600000165255,-0.06941200022634739 +257753,1288.7650000165256,-0.0694119888507077 +257754,1288.7700000165257,-0.06941197747395536 +257755,1288.7750000165258,-0.06941196609609067 +257756,1288.780000016526,-0.06941195471711391 +257757,1288.785000016526,-0.06941194333702537 +257758,1288.7900000165262,-0.06941193195582536 +257759,1288.7950000165263,-0.06941192057351415 +257760,1288.8000000165264,-0.06941190919009207 +257761,1288.8050000165265,-0.06941189780555941 +257762,1288.8100000165266,-0.06941188641991643 +257763,1288.8150000165267,-0.06941187503316346 +257764,1288.8200000165268,-0.06941186364530078 +257765,1288.825000016527,-0.06941185225632868 +257766,1288.830000016527,-0.06941184086624747 +257767,1288.8350000165271,-0.06941182947505742 +257768,1288.8400000165273,-0.06941181808275884 +257769,1288.8450000165274,-0.06941180668935204 +257770,1288.8500000165275,-0.06941179529483728 +257771,1288.8550000165276,-0.06941178389921487 +257772,1288.8600000165277,-0.0694117725024851 +257773,1288.8650000165278,-0.06941176110464828 +257774,1288.870000016528,-0.06941174970570468 +257775,1288.875000016528,-0.06941173830565461 +257776,1288.8800000165281,-0.06941172690449836 +257777,1288.8850000165282,-0.0694117155022362 +257778,1288.8900000165283,-0.06941170409886845 +257779,1288.8950000165285,-0.06941169269439539 +257780,1288.9000000165286,-0.0694116812888173 +257781,1288.9050000165287,-0.06941166988213451 +257782,1288.9100000165288,-0.0694116584743473 +257783,1288.915000016529,-0.06941164706545594 +257784,1288.920000016529,-0.06941163565546073 +257785,1288.925000016529,-0.06941162424436198 +257786,1288.9300000165292,-0.06941161283215995 +257787,1288.9350000165293,-0.06941160141885495 +257788,1288.9400000165294,-0.0694115900044473 +257789,1288.9450000165295,-0.06941157858893723 +257790,1288.9500000165297,-0.06941156717232508 +257791,1288.9550000165298,-0.06941155575461114 +257792,1288.9600000165299,-0.06941154433579567 +257793,1288.96500001653,-0.06941153291587898 +257794,1288.97000001653,-0.06941152149486136 +257795,1288.9750000165302,-0.0694115100727431 +257796,1288.9800000165303,-0.06941149864952449 +257797,1288.9850000165304,-0.06941148722520582 +257798,1288.9900000165305,-0.06941147579978739 +257799,1288.9950000165306,-0.06941146437326946 +257800,1289.0000000165307,-0.06941145294565236 +257801,1289.0050000165309,-0.06941144151693635 +257802,1289.010000016531,-0.06941143008712174 +257803,1289.015000016531,-0.0694114186562088 +257804,1289.0200000165312,-0.06941140722419784 +257805,1289.0250000165313,-0.06941139579108914 +257806,1289.0300000165314,-0.06941138435688297 +257807,1289.0350000165315,-0.06941137292157967 +257808,1289.0400000165316,-0.06941136148517948 +257809,1289.0450000165317,-0.06941135004768272 +257810,1289.0500000165318,-0.06941133860908966 +257811,1289.055000016532,-0.0694113271694006 +257812,1289.060000016532,-0.06941131572861582 +257813,1289.0650000165322,-0.06941130428673561 +257814,1289.0700000165323,-0.06941129284376027 +257815,1289.0750000165324,-0.06941128139969006 +257816,1289.0800000165325,-0.06941126995452532 +257817,1289.0850000165326,-0.06941125850826628 +257818,1289.0900000165327,-0.06941124706091326 +257819,1289.0950000165328,-0.06941123561246654 +257820,1289.100000016533,-0.06941122416292642 +257821,1289.105000016533,-0.06941121271229317 +257822,1289.1100000165331,-0.06941120126056709 +257823,1289.1150000165333,-0.06941118980774846 +257824,1289.1200000165334,-0.06941117835383757 +257825,1289.1250000165335,-0.06941116689883471 +257826,1289.1300000165336,-0.06941115544274015 +257827,1289.1350000165337,-0.0694111439855542 +257828,1289.1400000165338,-0.06941113252727715 +257829,1289.145000016534,-0.06941112106790927 +257830,1289.150000016534,-0.06941110960745084 +257831,1289.1550000165341,-0.06941109814590216 +257832,1289.1600000165342,-0.06941108668326353 +257833,1289.1650000165343,-0.0694110752195352 +257834,1289.1700000165345,-0.06941106375471748 +257835,1289.1750000165346,-0.06941105228881066 +257836,1289.1800000165347,-0.06941104082181501 +257837,1289.1850000165348,-0.06941102935373082 +257838,1289.190000016535,-0.0694110178845584 +257839,1289.195000016535,-0.06941100641429801 +257840,1289.2000000165351,-0.06941099494294994 +257841,1289.2050000165352,-0.06941098347051448 +257842,1289.2100000165353,-0.06941097199699192 +257843,1289.2150000165354,-0.06941096052238252 +257844,1289.2200000165356,-0.0694109490466866 +257845,1289.2250000165357,-0.06941093756990442 +257846,1289.2300000165358,-0.06941092609203627 +257847,1289.2350000165359,-0.06941091461308242 +257848,1289.240000016536,-0.0694109031330432 +257849,1289.245000016536,-0.06941089165191884 +257850,1289.2500000165362,-0.06941088016970967 +257851,1289.2550000165363,-0.06941086868641595 +257852,1289.2600000165364,-0.06941085720203798 +257853,1289.2650000165365,-0.06941084571657602 +257854,1289.2700000165366,-0.06941083423003036 +257855,1289.2750000165368,-0.06941082274240129 +257856,1289.2800000165369,-0.0694108112536891 +257857,1289.285000016537,-0.06941079976389408 +257858,1289.290000016537,-0.06941078827301649 +257859,1289.2950000165372,-0.06941077678105662 +257860,1289.3000000165373,-0.06941076528801476 +257861,1289.3050000165374,-0.0694107537938912 +257862,1289.3100000165375,-0.06941074229868618 +257863,1289.3150000165376,-0.06941073080240005 +257864,1289.3200000165377,-0.06941071930503305 +257865,1289.3250000165378,-0.06941070780658548 +257866,1289.330000016538,-0.06941069630705761 +257867,1289.335000016538,-0.06941068480644973 +257868,1289.3400000165382,-0.0694106733047621 +257869,1289.3450000165383,-0.06941066180199504 +257870,1289.3500000165384,-0.0694106502981488 +257871,1289.3550000165385,-0.06941063879322366 +257872,1289.3600000165386,-0.06941062728721996 +257873,1289.3650000165387,-0.06941061578013791 +257874,1289.3700000165388,-0.06941060427197782 +257875,1289.375000016539,-0.06941059276273998 +257876,1289.380000016539,-0.06941058125242466 +257877,1289.3850000165392,-0.06941056974103214 +257878,1289.3900000165393,-0.06941055822856272 +257879,1289.3950000165394,-0.06941054671501665 +257880,1289.4000000165395,-0.06941053520039424 +257881,1289.4050000165396,-0.06941052368469575 +257882,1289.4100000165397,-0.06941051216792148 +257883,1289.4150000165398,-0.06941050065007169 +257884,1289.42000001654,-0.06941048913114667 +257885,1289.42500001654,-0.06941047761114669 +257886,1289.4300000165401,-0.06941046609007205 +257887,1289.4350000165402,-0.06941045456792302 +257888,1289.4400000165404,-0.06941044304469988 +257889,1289.4450000165405,-0.06941043152040292 +257890,1289.4500000165406,-0.0694104199950324 +257891,1289.4550000165407,-0.06941040846858862 +257892,1289.4600000165408,-0.06941039694107184 +257893,1289.465000016541,-0.06941038541248234 +257894,1289.470000016541,-0.06941037388282043 +257895,1289.4750000165411,-0.06941036235208635 +257896,1289.4800000165412,-0.0694103508202804 +257897,1289.4850000165413,-0.06941033928740287 +257898,1289.4900000165414,-0.069410327753454 +257899,1289.4950000165416,-0.0694103162184341 +257900,1289.5000000165417,-0.06941030468234345 +257901,1289.5050000165418,-0.06941029314518232 +257902,1289.5100000165419,-0.069410281606951 +257903,1289.515000016542,-0.06941027006764973 +257904,1289.520000016542,-0.06941025852727883 +257905,1289.5250000165422,-0.06941024698583856 +257906,1289.5300000165423,-0.06941023544332921 +257907,1289.5350000165424,-0.06941022389975103 +257908,1289.5400000165425,-0.06941021235510433 +257909,1289.5450000165426,-0.06941020080938938 +257910,1289.5500000165428,-0.06941018926260643 +257911,1289.5550000165429,-0.0694101777147558 +257912,1289.560000016543,-0.06941016616583774 +257913,1289.565000016543,-0.06941015461585254 +257914,1289.5700000165432,-0.06941014306480046 +257915,1289.5750000165433,-0.0694101315126818 +257916,1289.5800000165434,-0.06941011995949682 +257917,1289.5850000165435,-0.06941010840524581 +257918,1289.5900000165436,-0.06941009684992902 +257919,1289.5950000165437,-0.06941008529354675 +257920,1289.6000000165438,-0.06941007373609928 +257921,1289.605000016544,-0.06941006217758687 +257922,1289.610000016544,-0.06941005061800981 +257923,1289.6150000165442,-0.06941003905736837 +257924,1289.6200000165443,-0.06941002749566282 +257925,1289.6250000165444,-0.06941001593289345 +257926,1289.6300000165445,-0.06941000436906052 +257927,1289.6350000165446,-0.06940999280416431 +257928,1289.6400000165447,-0.06940998123820509 +257929,1289.6450000165448,-0.06940996967118315 +257930,1289.650000016545,-0.06940995810309876 +257931,1289.655000016545,-0.0694099465339522 +257932,1289.6600000165452,-0.06940993496374374 +257933,1289.6650000165453,-0.06940992339247365 +257934,1289.6700000165454,-0.0694099118201422 +257935,1289.6750000165455,-0.06940990024674969 +257936,1289.6800000165456,-0.06940988867229636 +257937,1289.6850000165457,-0.06940987709678252 +257938,1289.6900000165458,-0.06940986552020843 +257939,1289.695000016546,-0.06940985394257435 +257940,1289.700000016546,-0.06940984236388056 +257941,1289.7050000165461,-0.06940983078412735 +257942,1289.7100000165462,-0.06940981920331499 +257943,1289.7150000165464,-0.06940980762144373 +257944,1289.7200000165465,-0.06940979603851388 +257945,1289.7250000165466,-0.06940978445452568 +257946,1289.7300000165467,-0.06940977286947943 +257947,1289.7350000165468,-0.06940976128337539 +257948,1289.740000016547,-0.06940974969621384 +257949,1289.745000016547,-0.06940973810799504 +257950,1289.7500000165471,-0.06940972651871927 +257951,1289.7550000165472,-0.06940971492838681 +257952,1289.7600000165473,-0.06940970333699792 +257953,1289.7650000165474,-0.06940969174455289 +257954,1289.7700000165476,-0.06940968015105198 +257955,1289.7750000165477,-0.06940966855649545 +257956,1289.7800000165478,-0.0694096569608836 +257957,1289.7850000165479,-0.06940964536421669 +257958,1289.790000016548,-0.06940963376649499 +257959,1289.795000016548,-0.06940962216771879 +257960,1289.8000000165482,-0.06940961056788833 +257961,1289.8050000165483,-0.06940959896700388 +257962,1289.8100000165484,-0.06940958736506576 +257963,1289.8150000165485,-0.0694095757620742 +257964,1289.8200000165486,-0.06940956415802949 +257965,1289.8250000165488,-0.06940955255293188 +257966,1289.8300000165489,-0.06940954094678166 +257967,1289.835000016549,-0.0694095293395791 +257968,1289.840000016549,-0.06940951773132446 +257969,1289.8450000165492,-0.06940950612201803 +257970,1289.8500000165493,-0.06940949451166008 +257971,1289.8550000165494,-0.06940948290025085 +257972,1289.8600000165495,-0.06940947128779064 +257973,1289.8650000165496,-0.06940945967427971 +257974,1289.8700000165497,-0.06940944805971833 +257975,1289.8750000165498,-0.06940943644410677 +257976,1289.88000001655,-0.0694094248274453 +257977,1289.88500001655,-0.06940941320973419 +257978,1289.8900000165502,-0.06940940159097374 +257979,1289.8950000165503,-0.06940938997116416 +257980,1289.9000000165504,-0.06940937835030578 +257981,1289.9050000165505,-0.06940936672839883 +257982,1289.9100000165506,-0.06940935510544358 +257983,1289.9150000165507,-0.06940934348144032 +257984,1289.9200000165508,-0.0694093318563893 +257985,1289.925000016551,-0.06940932023029082 +257986,1289.930000016551,-0.06940930860314512 +257987,1289.9350000165512,-0.06940929697495249 +257988,1289.9400000165513,-0.06940928534571315 +257989,1289.9450000165514,-0.06940927371542743 +257990,1289.9500000165515,-0.06940926208409558 +257991,1289.9550000165516,-0.06940925045171785 +257992,1289.9600000165517,-0.06940923881829453 +257993,1289.9650000165518,-0.06940922718382588 +257994,1289.970000016552,-0.06940921554831217 +257995,1289.975000016552,-0.06940920391175365 +257996,1289.9800000165521,-0.06940919227415061 +257997,1289.9850000165522,-0.06940918063550332 +257998,1289.9900000165524,-0.06940916899581204 +257999,1289.9950000165525,-0.06940915735507702 +258000,1290.0000000165526,-0.06940914571329858 +258001,1290.0050000165527,-0.06940913407047693 +258002,1290.0100000165528,-0.06940912242661236 +258003,1290.015000016553,-0.06940911078170514 +258004,1290.020000016553,-0.06940909913575553 +258005,1290.0250000165531,-0.0694090874887638 +258006,1290.0300000165532,-0.06940907584073022 +258007,1290.0350000165533,-0.06940906419165506 +258008,1290.0400000165534,-0.06940905254153859 +258009,1290.0450000165536,-0.06940904089038105 +258010,1290.0500000165537,-0.06940902923818272 +258011,1290.0550000165538,-0.06940901758494389 +258012,1290.0600000165539,-0.06940900593066479 +258013,1290.065000016554,-0.06940899427534572 +258014,1290.070000016554,-0.06940898261898693 +258015,1290.0750000165542,-0.06940897096158868 +258016,1290.0800000165543,-0.06940895930315123 +258017,1290.0850000165544,-0.06940894764367488 +258018,1290.0900000165545,-0.06940893598315986 +258019,1290.0950000165546,-0.06940892432160645 +258020,1290.1000000165548,-0.06940891265901492 +258021,1290.1050000165549,-0.06940890099538552 +258022,1290.110000016555,-0.06940888933071854 +258023,1290.115000016555,-0.06940887766501422 +258024,1290.1200000165552,-0.06940886599827283 +258025,1290.1250000165553,-0.06940885433049465 +258026,1290.1300000165554,-0.06940884266167993 +258027,1290.1350000165555,-0.06940883099182894 +258028,1290.1400000165556,-0.06940881932094194 +258029,1290.1450000165557,-0.0694088076490192 +258030,1290.1500000165559,-0.06940879597606098 +258031,1290.155000016556,-0.06940878430206755 +258032,1290.160000016556,-0.06940877262703918 +258033,1290.1650000165562,-0.0694087609509761 +258034,1290.1700000165563,-0.06940874927387862 +258035,1290.1750000165564,-0.06940873759574698 +258036,1290.1800000165565,-0.06940872591658143 +258037,1290.1850000165566,-0.06940871423638227 +258038,1290.1900000165567,-0.06940870255514975 +258039,1290.1950000165568,-0.06940869087288411 +258040,1290.200000016557,-0.06940867918958564 +258041,1290.205000016557,-0.0694086675052546 +258042,1290.2100000165572,-0.06940865581989124 +258043,1290.2150000165573,-0.06940864413349583 +258044,1290.2200000165574,-0.06940863244606862 +258045,1290.2250000165575,-0.0694086207576099 +258046,1290.2300000165576,-0.06940860906811992 +258047,1290.2350000165577,-0.06940859737759894 +258048,1290.2400000165578,-0.06940858568604721 +258049,1290.245000016558,-0.06940857399346503 +258050,1290.250000016558,-0.06940856229985262 +258051,1290.2550000165581,-0.06940855060521027 +258052,1290.2600000165583,-0.06940853890953823 +258053,1290.2650000165584,-0.06940852721283675 +258054,1290.2700000165585,-0.0694085155151061 +258055,1290.2750000165586,-0.06940850381634657 +258056,1290.2800000165587,-0.06940849211655839 +258057,1290.2850000165588,-0.06940848041574184 +258058,1290.290000016559,-0.06940846871389715 +258059,1290.295000016559,-0.0694084570110246 +258060,1290.3000000165591,-0.06940844530712448 +258061,1290.3050000165592,-0.06940843360219702 +258062,1290.3100000165593,-0.0694084218962425 +258063,1290.3150000165595,-0.06940841018926114 +258064,1290.3200000165596,-0.06940839848125323 +258065,1290.3250000165597,-0.06940838677221903 +258066,1290.3300000165598,-0.06940837506215881 +258067,1290.33500001656,-0.06940836335107281 +258068,1290.34000001656,-0.06940835163896131 +258069,1290.34500001656,-0.06940833992582456 +258070,1290.3500000165602,-0.0694083282116628 +258071,1290.3550000165603,-0.06940831649647633 +258072,1290.3600000165604,-0.06940830478026538 +258073,1290.3650000165605,-0.06940829306303023 +258074,1290.3700000165607,-0.06940828134477113 +258075,1290.3750000165608,-0.06940826962548834 +258076,1290.3800000165609,-0.0694082579051821 +258077,1290.385000016561,-0.0694082461838527 +258078,1290.390000016561,-0.06940823446150039 +258079,1290.3950000165612,-0.06940822273812541 +258080,1290.4000000165613,-0.06940821101372807 +258081,1290.4050000165614,-0.06940819928830856 +258082,1290.4100000165615,-0.0694081875618672 +258083,1290.4150000165616,-0.0694081758344042 +258084,1290.4200000165617,-0.06940816410591985 +258085,1290.4250000165619,-0.06940815237641441 +258086,1290.430000016562,-0.06940814064588811 +258087,1290.435000016562,-0.06940812891434124 +258088,1290.4400000165622,-0.06940811718177403 +258089,1290.4450000165623,-0.06940810544818676 +258090,1290.4500000165624,-0.06940809371357969 +258091,1290.4550000165625,-0.06940808197795306 +258092,1290.4600000165626,-0.06940807024130714 +258093,1290.4650000165627,-0.06940805850364218 +258094,1290.4700000165628,-0.06940804676495844 +258095,1290.475000016563,-0.06940803502525618 +258096,1290.480000016563,-0.06940802328453566 +258097,1290.4850000165632,-0.06940801154279715 +258098,1290.4900000165633,-0.06940799980004086 +258099,1290.4950000165634,-0.0694079880562671 +258100,1290.5000000165635,-0.0694079763114761 +258101,1290.5050000165636,-0.06940796456566813 +258102,1290.5100000165637,-0.06940795281884343 +258103,1290.5150000165638,-0.06940794107100226 +258104,1290.520000016564,-0.06940792932214489 +258105,1290.525000016564,-0.06940791757227156 +258106,1290.5300000165641,-0.06940790582138254 +258107,1290.5350000165643,-0.06940789406947807 +258108,1290.5400000165644,-0.06940788231655844 +258109,1290.5450000165645,-0.06940787056262386 +258110,1290.5500000165646,-0.06940785880767461 +258111,1290.5550000165647,-0.06940784705171096 +258112,1290.5600000165648,-0.06940783529473314 +258113,1290.565000016565,-0.06940782353674144 +258114,1290.570000016565,-0.06940781177773607 +258115,1290.5750000165651,-0.06940780001771732 +258116,1290.5800000165652,-0.06940778825668542 +258117,1290.5850000165653,-0.06940777649464064 +258118,1290.5900000165655,-0.06940776473158325 +258119,1290.5950000165656,-0.06940775296751346 +258120,1290.6000000165657,-0.06940774120243157 +258121,1290.6050000165658,-0.06940772943633781 +258122,1290.610000016566,-0.06940771766923245 +258123,1290.615000016566,-0.06940770590111574 +258124,1290.620000016566,-0.06940769413198793 +258125,1290.6250000165662,-0.06940768236184927 +258126,1290.6300000165663,-0.06940767059070002 +258127,1290.6350000165664,-0.06940765881854044 +258128,1290.6400000165665,-0.06940764704537078 +258129,1290.6450000165667,-0.06940763527119129 +258130,1290.6500000165668,-0.06940762349600221 +258131,1290.6550000165669,-0.06940761171980384 +258132,1290.660000016567,-0.06940759994259639 +258133,1290.665000016567,-0.06940758816438013 +258134,1290.6700000165672,-0.06940757638515531 +258135,1290.6750000165673,-0.06940756460492219 +258136,1290.6800000165674,-0.06940755282368101 +258137,1290.6850000165675,-0.06940754104143203 +258138,1290.6900000165676,-0.0694075292581755 +258139,1290.6950000165677,-0.06940751747391169 +258140,1290.7000000165679,-0.06940750568864083 +258141,1290.705000016568,-0.06940749390236317 +258142,1290.710000016568,-0.069407482115079 +258143,1290.7150000165682,-0.06940747032678853 +258144,1290.7200000165683,-0.06940745853749203 +258145,1290.7250000165684,-0.06940744674718977 +258146,1290.7300000165685,-0.06940743495588197 +258147,1290.7350000165686,-0.06940742316356889 +258148,1290.7400000165687,-0.0694074113702508 +258149,1290.7450000165688,-0.06940739957592794 +258150,1290.750000016569,-0.06940738778060056 +258151,1290.755000016569,-0.06940737598426891 +258152,1290.7600000165692,-0.06940736418693325 +258153,1290.7650000165693,-0.06940735238859383 +258154,1290.7700000165694,-0.0694073405892509 +258155,1290.7750000165695,-0.0694073287889047 +258156,1290.7800000165696,-0.06940731698755549 +258157,1290.7850000165697,-0.06940730518520352 +258158,1290.7900000165698,-0.06940729338184906 +258159,1290.79500001657,-0.06940728157749235 +258160,1290.80000001657,-0.06940726977213361 +258161,1290.8050000165701,-0.06940725796577314 +258162,1290.8100000165703,-0.06940724615841115 +258163,1290.8150000165704,-0.06940723435004792 +258164,1290.8200000165705,-0.06940722254068368 +258165,1290.8250000165706,-0.06940721073031868 +258166,1290.8300000165707,-0.06940719891895318 +258167,1290.8350000165708,-0.06940718710658744 +258168,1290.840000016571,-0.0694071752932217 +258169,1290.845000016571,-0.0694071634788562 +258170,1290.8500000165711,-0.06940715166349119 +258171,1290.8550000165712,-0.06940713984712694 +258172,1290.8600000165713,-0.06940712802976369 +258173,1290.8650000165715,-0.06940711621140168 +258174,1290.8700000165716,-0.06940710439204115 +258175,1290.8750000165717,-0.06940709257168239 +258176,1290.8800000165718,-0.0694070807503256 +258177,1290.885000016572,-0.06940706892797106 +258178,1290.890000016572,-0.06940705710461903 +258179,1290.895000016572,-0.06940704528026972 +258180,1290.9000000165722,-0.06940703345492343 +258181,1290.9050000165723,-0.06940702162858035 +258182,1290.9100000165724,-0.06940700980124077 +258183,1290.9150000165725,-0.06940699797290494 +258184,1290.9200000165727,-0.06940698614357306 +258185,1290.9250000165728,-0.06940697431324543 +258186,1290.9300000165729,-0.06940696248192228 +258187,1290.935000016573,-0.06940695064960385 +258188,1290.940000016573,-0.06940693881629041 +258189,1290.9450000165732,-0.06940692698198218 +258190,1290.9500000165733,-0.06940691514667945 +258191,1290.9550000165734,-0.06940690331038242 +258192,1290.9600000165735,-0.06940689147309137 +258193,1290.9650000165736,-0.06940687963480652 +258194,1290.9700000165737,-0.06940686779552813 +258195,1290.9750000165739,-0.06940685595525646 +258196,1290.980000016574,-0.06940684411399176 +258197,1290.985000016574,-0.06940683227173425 +258198,1290.9900000165742,-0.06940682042848419 +258199,1290.9950000165743,-0.06940680858424182 +258200,1291.0000000165744,-0.0694067967390074 +258201,1291.0050000165745,-0.06940678489278118 +258202,1291.0100000165746,-0.06940677304556339 +258203,1291.0150000165747,-0.06940676119735428 +258204,1291.0200000165748,-0.06940674934815412 +258205,1291.025000016575,-0.06940673749796314 +258206,1291.030000016575,-0.06940672564678156 +258207,1291.0350000165752,-0.06940671379460968 +258208,1291.0400000165753,-0.0694067019414477 +258209,1291.0450000165754,-0.06940669008729587 +258210,1291.0500000165755,-0.06940667823215445 +258211,1291.0550000165756,-0.06940666637602368 +258212,1291.0600000165757,-0.06940665451890382 +258213,1291.0650000165758,-0.0694066426607951 +258214,1291.070000016576,-0.06940663080169777 +258215,1291.075000016576,-0.06940661894161208 +258216,1291.0800000165762,-0.06940660708053827 +258217,1291.0850000165763,-0.06940659521847657 +258218,1291.0900000165764,-0.06940658335542725 +258219,1291.0950000165765,-0.06940657149139054 +258220,1291.1000000165766,-0.06940655962636669 +258221,1291.1050000165767,-0.06940654776035594 +258222,1291.1100000165768,-0.06940653589335856 +258223,1291.115000016577,-0.06940652402537476 +258224,1291.120000016577,-0.0694065121564048 +258225,1291.1250000165771,-0.0694065002864489 +258226,1291.1300000165772,-0.06940648841550734 +258227,1291.1350000165774,-0.06940647654358036 +258228,1291.1400000165775,-0.06940646467066819 +258229,1291.1450000165776,-0.06940645279677107 +258230,1291.1500000165777,-0.06940644092188927 +258231,1291.1550000165778,-0.06940642904602301 +258232,1291.160000016578,-0.06940641716917254 +258233,1291.165000016578,-0.0694064052913381 +258234,1291.1700000165781,-0.06940639341251992 +258235,1291.1750000165782,-0.06940638153271828 +258236,1291.1800000165783,-0.06940636965193339 +258237,1291.1850000165784,-0.06940635777016552 +258238,1291.1900000165786,-0.06940634588741489 +258239,1291.1950000165787,-0.06940633400368175 +258240,1291.2000000165788,-0.06940632211896634 +258241,1291.2050000165789,-0.06940631023326892 +258242,1291.210000016579,-0.0694062983465897 +258243,1291.215000016579,-0.06940628645892896 +258244,1291.2200000165792,-0.06940627457028693 +258245,1291.2250000165793,-0.06940626268066383 +258246,1291.2300000165794,-0.06940625079005994 +258247,1291.2350000165795,-0.06940623889847546 +258248,1291.2400000165796,-0.06940622700591065 +258249,1291.2450000165798,-0.06940621511236578 +258250,1291.2500000165799,-0.06940620321784104 +258251,1291.25500001658,-0.0694061913223367 +258252,1291.26000001658,-0.06940617942585303 +258253,1291.2650000165802,-0.06940616752839023 +258254,1291.2700000165803,-0.06940615562994855 +258255,1291.2750000165804,-0.06940614373052822 +258256,1291.2800000165805,-0.06940613183012953 +258257,1291.2850000165806,-0.06940611992875266 +258258,1291.2900000165807,-0.06940610802639789 +258259,1291.2950000165808,-0.06940609612306543 +258260,1291.300000016581,-0.06940608421875556 +258261,1291.305000016581,-0.0694060723134685 +258262,1291.3100000165812,-0.0694060604072045 +258263,1291.3150000165813,-0.06940604849996378 +258264,1291.3200000165814,-0.06940603659174659 +258265,1291.3250000165815,-0.06940602468255316 +258266,1291.3300000165816,-0.06940601277238377 +258267,1291.3350000165817,-0.06940600086123863 +258268,1291.3400000165818,-0.06940598894911797 +258269,1291.345000016582,-0.06940597703602205 +258270,1291.350000016582,-0.06940596512195112 +258271,1291.3550000165822,-0.06940595320690539 +258272,1291.3600000165823,-0.06940594129088509 +258273,1291.3650000165824,-0.06940592937389052 +258274,1291.3700000165825,-0.06940591745592187 +258275,1291.3750000165826,-0.06940590553697938 +258276,1291.3800000165827,-0.0694058936170633 +258277,1291.3850000165828,-0.06940588169617389 +258278,1291.390000016583,-0.06940586977431135 +258279,1291.395000016583,-0.06940585785147593 +258280,1291.4000000165831,-0.0694058459276679 +258281,1291.4050000165832,-0.06940583400288747 +258282,1291.4100000165834,-0.06940582207713487 +258283,1291.4150000165835,-0.06940581015041036 +258284,1291.4200000165836,-0.06940579822271419 +258285,1291.4250000165837,-0.06940578629404656 +258286,1291.4300000165838,-0.06940577436440773 +258287,1291.435000016584,-0.06940576243379795 +258288,1291.440000016584,-0.06940575050221744 +258289,1291.4450000165841,-0.06940573856966643 +258290,1291.4500000165842,-0.06940572663614518 +258291,1291.4550000165843,-0.06940571470165391 +258292,1291.4600000165844,-0.06940570276619287 +258293,1291.4650000165846,-0.0694056908297623 +258294,1291.4700000165847,-0.06940567889236243 +258295,1291.4750000165848,-0.0694056669539935 +258296,1291.4800000165849,-0.06940565501465575 +258297,1291.485000016585,-0.06940564307434942 +258298,1291.490000016585,-0.06940563113307473 +258299,1291.4950000165852,-0.06940561919083192 +258300,1291.5000000165853,-0.06940560724762124 +258301,1291.5050000165854,-0.06940559530344292 +258302,1291.5100000165855,-0.0694055833582972 +258303,1291.5150000165856,-0.06940557141218433 +258304,1291.5200000165858,-0.06940555946510452 +258305,1291.5250000165859,-0.069405547517058 +258306,1291.530000016586,-0.06940553556804506 +258307,1291.535000016586,-0.06940552361806587 +258308,1291.5400000165862,-0.06940551166712071 +258309,1291.5450000165863,-0.0694054997152098 +258310,1291.5500000165864,-0.06940548776233338 +258311,1291.5550000165865,-0.06940547580849168 +258312,1291.5600000165866,-0.06940546385368497 +258313,1291.5650000165867,-0.06940545189791343 +258314,1291.5700000165868,-0.06940543994117732 +258315,1291.575000016587,-0.06940542798347689 +258316,1291.580000016587,-0.06940541602481236 +258317,1291.5850000165872,-0.06940540406518396 +258318,1291.5900000165873,-0.06940539210459194 +258319,1291.5950000165874,-0.06940538014303654 +258320,1291.6000000165875,-0.06940536818051798 +258321,1291.6050000165876,-0.0694053562170365 +258322,1291.6100000165877,-0.06940534425259233 +258323,1291.6150000165878,-0.06940533228718572 +258324,1291.620000016588,-0.06940532032081688 +258325,1291.625000016588,-0.06940530835348606 +258326,1291.6300000165882,-0.0694052963851935 +258327,1291.6350000165883,-0.06940528441593942 +258328,1291.6400000165884,-0.06940527244572407 +258329,1291.6450000165885,-0.06940526047454766 +258330,1291.6500000165886,-0.06940524850241045 +258331,1291.6550000165887,-0.06940523652931266 +258332,1291.6600000165888,-0.06940522455525454 +258333,1291.665000016589,-0.0694052125802363 +258334,1291.670000016589,-0.06940520060425819 +258335,1291.6750000165891,-0.06940518862732042 +258336,1291.6800000165892,-0.06940517664942326 +258337,1291.6850000165894,-0.06940516467056694 +258338,1291.6900000165895,-0.06940515269075166 +258339,1291.6950000165896,-0.06940514070997768 +258340,1291.7000000165897,-0.06940512872824522 +258341,1291.7050000165898,-0.06940511674555452 +258342,1291.71000001659,-0.06940510476190583 +258343,1291.71500001659,-0.06940509277729934 +258344,1291.7200000165901,-0.0694050807917353 +258345,1291.7250000165902,-0.06940506880521398 +258346,1291.7300000165903,-0.06940505681773555 +258347,1291.7350000165904,-0.0694050448293003 +258348,1291.7400000165906,-0.06940503283990843 +258349,1291.7450000165907,-0.06940502084956018 +258350,1291.7500000165908,-0.0694050088582558 +258351,1291.7550000165909,-0.06940499686599548 +258352,1291.760000016591,-0.06940498487277949 +258353,1291.765000016591,-0.06940497287860806 +258354,1291.7700000165912,-0.06940496088348139 +258355,1291.7750000165913,-0.06940494888739973 +258356,1291.7800000165914,-0.06940493689036331 +258357,1291.7850000165915,-0.06940492489237238 +258358,1291.7900000165916,-0.06940491289342715 +258359,1291.7950000165918,-0.06940490089352787 +258360,1291.8000000165919,-0.06940488889267475 +258361,1291.805000016592,-0.06940487689086802 +258362,1291.810000016592,-0.06940486488810794 +258363,1291.8150000165922,-0.06940485288439471 +258364,1291.8200000165923,-0.06940484087972858 +258365,1291.8250000165924,-0.06940482887410977 +258366,1291.8300000165925,-0.06940481686753852 +258367,1291.8350000165926,-0.06940480486001505 +258368,1291.8400000165927,-0.0694047928515396 +258369,1291.8450000165928,-0.06940478084211239 +258370,1291.850000016593,-0.06940476883173366 +258371,1291.855000016593,-0.06940475682040365 +258372,1291.8600000165932,-0.06940474480812257 +258373,1291.8650000165933,-0.06940473279489066 +258374,1291.8700000165934,-0.06940472078070815 +258375,1291.8750000165935,-0.06940470876557527 +258376,1291.8800000165936,-0.06940469674949223 +258377,1291.8850000165937,-0.0694046847324593 +258378,1291.8900000165938,-0.06940467271447666 +258379,1291.895000016594,-0.06940466069554457 +258380,1291.900000016594,-0.06940464867566327 +258381,1291.9050000165942,-0.06940463665483297 +258382,1291.9100000165943,-0.0694046246330539 +258383,1291.9150000165944,-0.0694046126103263 +258384,1291.9200000165945,-0.06940460058665039 +258385,1291.9250000165946,-0.0694045885620264 +258386,1291.9300000165947,-0.06940457653645457 +258387,1291.9350000165948,-0.06940456450993511 +258388,1291.940000016595,-0.06940455248246827 +258389,1291.945000016595,-0.06940454045405424 +258390,1291.9500000165951,-0.0694045284246933 +258391,1291.9550000165952,-0.06940451639438563 +258392,1291.9600000165954,-0.06940450436313149 +258393,1291.9650000165955,-0.06940449233093111 +258394,1291.9700000165956,-0.0694044802977847 +258395,1291.9750000165957,-0.0694044682636925 +258396,1291.9800000165958,-0.06940445622865472 +258397,1291.985000016596,-0.06940444419267162 +258398,1291.990000016596,-0.06940443215574339 +258399,1291.9950000165961,-0.06940442011787029 +258400,1292.0000000165962,-0.06940440807905253 +258401,1292.0050000165963,-0.06940439603929034 +258402,1292.0100000165965,-0.06940438399858397 +258403,1292.0150000165966,-0.06940437195693361 +258404,1292.0200000165967,-0.06940435991433949 +258405,1292.0250000165968,-0.06940434787080187 +258406,1292.030000016597,-0.06940433582632097 +258407,1292.035000016597,-0.06940432378089698 +258408,1292.040000016597,-0.06940431173453016 +258409,1292.0450000165972,-0.06940429968722073 +258410,1292.0500000165973,-0.06940428763896891 +258411,1292.0550000165974,-0.06940427558977494 +258412,1292.0600000165975,-0.06940426353963904 +258413,1292.0650000165977,-0.06940425148856143 +258414,1292.0700000165978,-0.06940423943654234 +258415,1292.0750000165979,-0.069404227383582 +258416,1292.080000016598,-0.06940421532968062 +258417,1292.085000016598,-0.06940420327483846 +258418,1292.0900000165982,-0.06940419121905571 +258419,1292.0950000165983,-0.06940417916233262 +258420,1292.1000000165984,-0.0694041671046694 +258421,1292.1050000165985,-0.06940415504606628 +258422,1292.1100000165986,-0.0694041429865235 +258423,1292.1150000165987,-0.06940413092604127 +258424,1292.1200000165989,-0.06940411886461981 +258425,1292.125000016599,-0.06940410680225935 +258426,1292.130000016599,-0.06940409473896013 +258427,1292.1350000165992,-0.06940408267472237 +258428,1292.1400000165993,-0.06940407060954627 +258429,1292.1450000165994,-0.06940405854343208 +258430,1292.1500000165995,-0.06940404647638003 +258431,1292.1550000165996,-0.06940403440839034 +258432,1292.1600000165997,-0.06940402233946322 +258433,1292.1650000165998,-0.06940401026959889 +258434,1292.1700000166,-0.0694039981987976 +258435,1292.1750000166,-0.06940398612705956 +258436,1292.1800000166002,-0.06940397405438499 +258437,1292.1850000166003,-0.06940396198077413 +258438,1292.1900000166004,-0.06940394990622718 +258439,1292.1950000166005,-0.06940393783074439 +258440,1292.2000000166006,-0.06940392575432595 +258441,1292.2050000166007,-0.06940391367697213 +258442,1292.2100000166008,-0.06940390159868312 +258443,1292.215000016601,-0.06940388951945915 +258444,1292.220000016601,-0.06940387743930046 +258445,1292.2250000166011,-0.06940386535820725 +258446,1292.2300000166013,-0.06940385327617976 +258447,1292.2350000166014,-0.0694038411932182 +258448,1292.2400000166015,-0.0694038291093228 +258449,1292.2450000166016,-0.06940381702449379 +258450,1292.2500000166017,-0.06940380493873138 +258451,1292.2550000166018,-0.06940379285203581 +258452,1292.260000016602,-0.06940378076440729 +258453,1292.265000016602,-0.06940376867584604 +258454,1292.2700000166021,-0.06940375658635228 +258455,1292.2750000166022,-0.06940374449592625 +258456,1292.2800000166023,-0.06940373240456817 +258457,1292.2850000166025,-0.06940372031227825 +258458,1292.2900000166026,-0.0694037082190567 +258459,1292.2950000166027,-0.06940369612490375 +258460,1292.3000000166028,-0.06940368402981965 +258461,1292.305000016603,-0.06940367193380462 +258462,1292.310000016603,-0.06940365983685885 +258463,1292.315000016603,-0.06940364773898257 +258464,1292.3200000166032,-0.06940363564017603 +258465,1292.3250000166033,-0.06940362354043941 +258466,1292.3300000166034,-0.06940361143977296 +258467,1292.3350000166035,-0.06940359933817689 +258468,1292.3400000166037,-0.06940358723565143 +258469,1292.3450000166038,-0.06940357513219679 +258470,1292.3500000166039,-0.06940356302781321 +258471,1292.355000016604,-0.06940355092250089 +258472,1292.360000016604,-0.06940353881626006 +258473,1292.3650000166042,-0.06940352670909093 +258474,1292.3700000166043,-0.06940351460099373 +258475,1292.3750000166044,-0.0694035024919687 +258476,1292.3800000166045,-0.06940349038201603 +258477,1292.3850000166046,-0.06940347827113595 +258478,1292.3900000166047,-0.06940346615932869 +258479,1292.3950000166049,-0.06940345404659447 +258480,1292.400000016605,-0.06940344193293349 +258481,1292.405000016605,-0.069403429818346 +258482,1292.4100000166052,-0.0694034177028322 +258483,1292.4150000166053,-0.06940340558639231 +258484,1292.4200000166054,-0.06940339346902656 +258485,1292.4250000166055,-0.06940338135073516 +258486,1292.4300000166056,-0.06940336923151834 +258487,1292.4350000166057,-0.06940335711137631 +258488,1292.4400000166058,-0.0694033449903093 +258489,1292.445000016606,-0.06940333286831751 +258490,1292.450000016606,-0.06940332074540118 +258491,1292.4550000166062,-0.06940330862156051 +258492,1292.4600000166063,-0.06940329649679575 +258493,1292.4650000166064,-0.0694032843711071 +258494,1292.4700000166065,-0.06940327224449477 +258495,1292.4750000166066,-0.06940326011695899 +258496,1292.4800000166067,-0.06940324798849999 +258497,1292.4850000166068,-0.06940323585911795 +258498,1292.490000016607,-0.06940322372881313 +258499,1292.495000016607,-0.06940321159758574 +258500,1292.5000000166071,-0.069403199465436 +258501,1292.5050000166073,-0.0694031873323641 +258502,1292.5100000166074,-0.06940317519837028 +258503,1292.5150000166075,-0.06940316306345476 +258504,1292.5200000166076,-0.06940315092761776 +258505,1292.5250000166077,-0.06940313879085949 +258506,1292.5300000166078,-0.06940312665318017 +258507,1292.535000016608,-0.06940311451458002 +258508,1292.540000016608,-0.06940310237505926 +258509,1292.5450000166081,-0.06940309023461809 +258510,1292.5500000166082,-0.06940307809325676 +258511,1292.5550000166083,-0.06940306595097546 +258512,1292.5600000166085,-0.06940305380777442 +258513,1292.5650000166086,-0.06940304166365387 +258514,1292.5700000166087,-0.06940302951861399 +258515,1292.5750000166088,-0.06940301737265503 +258516,1292.580000016609,-0.06940300522577719 +258517,1292.585000016609,-0.0694029930779807 +258518,1292.590000016609,-0.06940298092926576 +258519,1292.5950000166092,-0.06940296877963262 +258520,1292.6000000166093,-0.06940295662908146 +258521,1292.6050000166094,-0.06940294447761251 +258522,1292.6100000166095,-0.06940293232522599 +258523,1292.6150000166097,-0.06940292017192211 +258524,1292.6200000166098,-0.06940290801770108 +258525,1292.6250000166099,-0.06940289586256314 +258526,1292.63000001661,-0.06940288370650849 +258527,1292.63500001661,-0.06940287154953735 +258528,1292.6400000166102,-0.06940285939164993 +258529,1292.6450000166103,-0.06940284723284645 +258530,1292.6500000166104,-0.06940283507312714 +258531,1292.6550000166105,-0.06940282291249218 +258532,1292.6600000166106,-0.06940281075094183 +258533,1292.6650000166107,-0.06940279858847627 +258534,1292.6700000166109,-0.06940278642509574 +258535,1292.675000016611,-0.06940277426080044 +258536,1292.680000016611,-0.06940276209559058 +258537,1292.6850000166112,-0.0694027499294664 +258538,1292.6900000166113,-0.0694027377624281 +258539,1292.6950000166114,-0.0694027255944759 +258540,1292.7000000166115,-0.06940271342561001 +258541,1292.7050000166116,-0.06940270125583062 +258542,1292.7100000166117,-0.069402689085138 +258543,1292.7150000166118,-0.06940267691353232 +258544,1292.720000016612,-0.06940266474101381 +258545,1292.725000016612,-0.0694026525675827 +258546,1292.7300000166122,-0.06940264039323917 +258547,1292.7350000166123,-0.06940262821798346 +258548,1292.7400000166124,-0.06940261604181577 +258549,1292.7450000166125,-0.06940260386473633 +258550,1292.7500000166126,-0.06940259168674535 +258551,1292.7550000166127,-0.06940257950784305 +258552,1292.7600000166128,-0.06940256732802962 +258553,1292.765000016613,-0.06940255514730528 +258554,1292.770000016613,-0.06940254296567026 +258555,1292.7750000166131,-0.06940253078312478 +258556,1292.7800000166133,-0.06940251859966902 +258557,1292.7850000166134,-0.06940250641530323 +258558,1292.7900000166135,-0.06940249423002759 +258559,1292.7950000166136,-0.06940248204384233 +258560,1292.8000000166137,-0.06940246985674765 +258561,1292.8050000166138,-0.0694024576687438 +258562,1292.810000016614,-0.06940244547983096 +258563,1292.815000016614,-0.06940243329000936 +258564,1292.8200000166141,-0.0694024210992792 +258565,1292.8250000166142,-0.0694024089076407 +258566,1292.8300000166143,-0.06940239671509406 +258567,1292.8350000166145,-0.0694023845216395 +258568,1292.8400000166146,-0.06940237232727725 +258569,1292.8450000166147,-0.0694023601320075 +258570,1292.8500000166148,-0.06940234793583047 +258571,1292.855000016615,-0.06940233573874639 +258572,1292.860000016615,-0.06940232354075544 +258573,1292.865000016615,-0.06940231134185786 +258574,1292.8700000166152,-0.06940229914205384 +258575,1292.8750000166153,-0.0694022869413436 +258576,1292.8800000166154,-0.06940227473972735 +258577,1292.8850000166155,-0.0694022625372053 +258578,1292.8900000166157,-0.06940225033377768 +258579,1292.8950000166158,-0.0694022381294447 +258580,1292.9000000166159,-0.06940222592420654 +258581,1292.905000016616,-0.06940221371806345 +258582,1292.910000016616,-0.0694022015110156 +258583,1292.9150000166162,-0.06940218930306324 +258584,1292.9200000166163,-0.06940217709420657 +258585,1292.9250000166164,-0.06940216488444578 +258586,1292.9300000166165,-0.06940215267378111 +258587,1292.9350000166166,-0.06940214046221274 +258588,1292.9400000166168,-0.06940212824974092 +258589,1292.9450000166169,-0.06940211603636583 +258590,1292.950000016617,-0.0694021038220877 +258591,1292.955000016617,-0.06940209160690672 +258592,1292.9600000166172,-0.06940207939082312 +258593,1292.9650000166173,-0.0694020671738371 +258594,1292.9700000166174,-0.06940205495594887 +258595,1292.9750000166175,-0.06940204273715865 +258596,1292.9800000166176,-0.06940203051746664 +258597,1292.9850000166177,-0.06940201829687305 +258598,1292.9900000166178,-0.0694020060753781 +258599,1292.995000016618,-0.06940199385298199 +258600,1293.000000016618,-0.06940198162968494 +258601,1293.0050000166182,-0.06940196940548715 +258602,1293.0100000166183,-0.06940195718038883 +258603,1293.0150000166184,-0.0694019449543902 +258604,1293.0200000166185,-0.06940193272749146 +258605,1293.0250000166186,-0.0694019204996928 +258606,1293.0300000166187,-0.06940190827099448 +258607,1293.0350000166188,-0.06940189604139665 +258608,1293.040000016619,-0.06940188381089958 +258609,1293.045000016619,-0.06940187157950344 +258610,1293.0500000166192,-0.06940185934720844 +258611,1293.0550000166193,-0.0694018471140148 +258612,1293.0600000166194,-0.06940183487992271 +258613,1293.0650000166195,-0.06940182264493241 +258614,1293.0700000166196,-0.06940181040904408 +258615,1293.0750000166197,-0.06940179817225796 +258616,1293.0800000166198,-0.06940178593457422 +258617,1293.08500001662,-0.0694017736959931 +258618,1293.09000001662,-0.06940176145651479 +258619,1293.0950000166201,-0.06940174921613951 +258620,1293.1000000166202,-0.06940173697486746 +258621,1293.1050000166204,-0.06940172473269886 +258622,1293.1100000166205,-0.0694017124896339 +258623,1293.1150000166206,-0.06940170024567278 +258624,1293.1200000166207,-0.06940168800081574 +258625,1293.1250000166208,-0.06940167575506297 +258626,1293.130000016621,-0.06940166350841467 +258627,1293.135000016621,-0.06940165126087107 +258628,1293.1400000166211,-0.06940163901243236 +258629,1293.1450000166212,-0.06940162676309874 +258630,1293.1500000166213,-0.06940161451287045 +258631,1293.1550000166214,-0.06940160226174767 +258632,1293.1600000166216,-0.06940159000973062 +258633,1293.1650000166217,-0.06940157775681949 +258634,1293.1700000166218,-0.06940156550301452 +258635,1293.1750000166219,-0.06940155324831586 +258636,1293.180000016622,-0.06940154099272376 +258637,1293.185000016622,-0.06940152873623844 +258638,1293.1900000166222,-0.06940151647886006 +258639,1293.1950000166223,-0.06940150422058887 +258640,1293.2000000166224,-0.06940149196142503 +258641,1293.2050000166225,-0.0694014797013688 +258642,1293.2100000166226,-0.06940146744042035 +258643,1293.2150000166228,-0.0694014551785799 +258644,1293.2200000166229,-0.06940144291584766 +258645,1293.225000016623,-0.06940143065222383 +258646,1293.230000016623,-0.06940141838770861 +258647,1293.2350000166232,-0.06940140612230221 +258648,1293.2400000166233,-0.06940139385600483 +258649,1293.2450000166234,-0.06940138158881669 +258650,1293.2500000166235,-0.06940136932073798 +258651,1293.2550000166236,-0.06940135705176893 +258652,1293.2600000166237,-0.06940134478190972 +258653,1293.2650000166238,-0.06940133251116057 +258654,1293.270000016624,-0.06940132023952167 +258655,1293.275000016624,-0.06940130796699323 +258656,1293.2800000166242,-0.06940129569357546 +258657,1293.2850000166243,-0.06940128341926857 +258658,1293.2900000166244,-0.06940127114407275 +258659,1293.2950000166245,-0.06940125886798823 +258660,1293.3000000166246,-0.0694012465910152 +258661,1293.3050000166247,-0.06940123431315386 +258662,1293.3100000166248,-0.06940122203440441 +258663,1293.315000016625,-0.06940120975476709 +258664,1293.320000016625,-0.06940119747424206 +258665,1293.3250000166252,-0.06940118519282953 +258666,1293.3300000166253,-0.06940117291052972 +258667,1293.3350000166254,-0.06940116062734285 +258668,1293.3400000166255,-0.06940114834326909 +258669,1293.3450000166256,-0.06940113605830867 +258670,1293.3500000166257,-0.06940112377246177 +258671,1293.3550000166258,-0.06940111148572863 +258672,1293.360000016626,-0.06940109919810941 +258673,1293.365000016626,-0.06940108690960434 +258674,1293.3700000166261,-0.06940107462021361 +258675,1293.3750000166262,-0.06940106232993744 +258676,1293.3800000166264,-0.06940105003877602 +258677,1293.3850000166265,-0.06940103774672955 +258678,1293.3900000166266,-0.06940102545379827 +258679,1293.3950000166267,-0.06940101315998234 +258680,1293.4000000166268,-0.06940100086528198 +258681,1293.405000016627,-0.06940098856969738 +258682,1293.410000016627,-0.06940097627322876 +258683,1293.4150000166271,-0.06940096397587632 +258684,1293.4200000166272,-0.06940095167764027 +258685,1293.4250000166273,-0.06940093937852079 +258686,1293.4300000166274,-0.0694009270785181 +258687,1293.4350000166276,-0.0694009147776324 +258688,1293.4400000166277,-0.06940090247586389 +258689,1293.4450000166278,-0.06940089017321277 +258690,1293.4500000166279,-0.06940087786967924 +258691,1293.455000016628,-0.06940086556526352 +258692,1293.460000016628,-0.06940085325996578 +258693,1293.4650000166282,-0.06940084095378626 +258694,1293.4700000166283,-0.06940082864672513 +258695,1293.4750000166284,-0.06940081633878262 +258696,1293.4800000166285,-0.0694008040299589 +258697,1293.4850000166286,-0.0694007917202542 +258698,1293.4900000166288,-0.06940077940966871 +258699,1293.4950000166289,-0.06940076709820264 +258700,1293.500000016629,-0.06940075478585618 +258701,1293.505000016629,-0.06940074247262953 +258702,1293.5100000166292,-0.06940073015852291 +258703,1293.5150000166293,-0.0694007178435365 +258704,1293.5200000166294,-0.06940070552767051 +258705,1293.5250000166295,-0.06940069321092514 +258706,1293.5300000166296,-0.06940068089330059 +258707,1293.5350000166297,-0.06940066857479707 +258708,1293.5400000166298,-0.06940065625541476 +258709,1293.54500001663,-0.06940064393515388 +258710,1293.55000001663,-0.06940063161401464 +258711,1293.5550000166302,-0.0694006192919972 +258712,1293.5600000166303,-0.0694006069691018 +258713,1293.5650000166304,-0.06940059464532862 +258714,1293.5700000166305,-0.06940058232067788 +258715,1293.5750000166306,-0.06940056999514974 +258716,1293.5800000166307,-0.06940055766874444 +258717,1293.5850000166308,-0.06940054534146216 +258718,1293.590000016631,-0.06940053301330312 +258719,1293.595000016631,-0.06940052068426751 +258720,1293.6000000166312,-0.06940050835435552 +258721,1293.6050000166313,-0.06940049602356735 +258722,1293.6100000166314,-0.0694004836919032 +258723,1293.6150000166315,-0.0694004713593633 +258724,1293.6200000166316,-0.06940045902594781 +258725,1293.6250000166317,-0.06940044669165696 +258726,1293.6300000166318,-0.06940043435649092 +258727,1293.635000016632,-0.06940042202044991 +258728,1293.640000016632,-0.06940040968353413 +258729,1293.6450000166321,-0.06940039734574376 +258730,1293.6500000166322,-0.06940038500707901 +258731,1293.6550000166324,-0.06940037266754008 +258732,1293.6600000166325,-0.06940036032712718 +258733,1293.6650000166326,-0.06940034798584048 +258734,1293.6700000166327,-0.06940033564368021 +258735,1293.6750000166328,-0.06940032330064656 +258736,1293.680000016633,-0.06940031095673972 +258737,1293.685000016633,-0.06940029861195988 +258738,1293.6900000166331,-0.06940028626630726 +258739,1293.6950000166332,-0.06940027391978205 +258740,1293.7000000166333,-0.06940026157238445 +258741,1293.7050000166334,-0.06940024922411465 +258742,1293.7100000166336,-0.06940023687497288 +258743,1293.7150000166337,-0.06940022452495928 +258744,1293.7200000166338,-0.0694002121740741 +258745,1293.7250000166339,-0.0694001998223175 +258746,1293.730000016634,-0.06940018746968972 +258747,1293.735000016634,-0.06940017511619091 +258748,1293.7400000166342,-0.0694001627618213 +258749,1293.7450000166343,-0.0694001504065811 +258750,1293.7500000166344,-0.06940013805047046 +258751,1293.7550000166345,-0.06940012569348962 +258752,1293.7600000166346,-0.06940011333563874 +258753,1293.7650000166348,-0.06940010097691804 +258754,1293.7700000166349,-0.06940008861732773 +258755,1293.775000016635,-0.06940007625686798 +258756,1293.780000016635,-0.06940006389553899 +258757,1293.7850000166352,-0.06940005153334099 +258758,1293.7900000166353,-0.06940003917027414 +258759,1293.7950000166354,-0.06940002680633867 +258760,1293.8000000166355,-0.06940001444153472 +258761,1293.8050000166356,-0.06940000207586254 +258762,1293.8100000166357,-0.06939998970932232 +258763,1293.8150000166358,-0.06939997734191422 +258764,1293.820000016636,-0.06939996497363847 +258765,1293.825000016636,-0.06939995260449527 +258766,1293.8300000166362,-0.0693999402344848 +258767,1293.8350000166363,-0.06939992786360726 +258768,1293.8400000166364,-0.06939991549186285 +258769,1293.8450000166365,-0.06939990311925175 +258770,1293.8500000166366,-0.06939989074577417 +258771,1293.8550000166367,-0.06939987837143032 +258772,1293.8600000166368,-0.06939986599622038 +258773,1293.865000016637,-0.06939985362014453 +258774,1293.870000016637,-0.06939984124320299 +258775,1293.8750000166372,-0.06939982886539595 +258776,1293.8800000166373,-0.0693998164867236 +258777,1293.8850000166374,-0.06939980410718613 +258778,1293.8900000166375,-0.06939979172678375 +258779,1293.8950000166376,-0.06939977934551664 +258780,1293.9000000166377,-0.06939976696338501 +258781,1293.9050000166378,-0.06939975458038905 +258782,1293.910000016638,-0.06939974219652895 +258783,1293.915000016638,-0.06939972981180491 +258784,1293.9200000166381,-0.06939971742621712 +258785,1293.9250000166383,-0.06939970503976577 +258786,1293.9300000166384,-0.06939969265245106 +258787,1293.9350000166385,-0.0693996802642732 +258788,1293.9400000166386,-0.06939966787523237 +258789,1293.9450000166387,-0.06939965548532875 +258790,1293.9500000166388,-0.06939964309456256 +258791,1293.955000016639,-0.06939963070293399 +258792,1293.960000016639,-0.06939961831044322 +258793,1293.9650000166391,-0.06939960591709045 +258794,1293.9700000166392,-0.06939959352287586 +258795,1293.9750000166393,-0.06939958112779968 +258796,1293.9800000166395,-0.06939956873186208 +258797,1293.9850000166396,-0.06939955633506326 +258798,1293.9900000166397,-0.0693995439374034 +258799,1293.9950000166398,-0.0693995315388827 +258800,1294.00000001664,-0.06939951913950136 +258801,1294.00500001664,-0.06939950673925958 +258802,1294.01000001664,-0.06939949433815754 +258803,1294.0150000166402,-0.06939948193619544 +258804,1294.0200000166403,-0.06939946953337348 +258805,1294.0250000166404,-0.06939945712969184 +258806,1294.0300000166405,-0.06939944472515072 +258807,1294.0350000166407,-0.0693994323197503 +258808,1294.0400000166408,-0.06939941991349079 +258809,1294.0450000166409,-0.06939940750637237 +258810,1294.050000016641,-0.06939939509839525 +258811,1294.055000016641,-0.0693993826895596 +258812,1294.0600000166412,-0.06939937027986562 +258813,1294.0650000166413,-0.06939935786931352 +258814,1294.0700000166414,-0.06939934545790347 +258815,1294.0750000166415,-0.06939933304563567 +258816,1294.0800000166416,-0.06939932063251031 +258817,1294.0850000166417,-0.06939930821852759 +258818,1294.0900000166419,-0.06939929580368771 +258819,1294.095000016642,-0.06939928338799084 +258820,1294.100000016642,-0.06939927097143718 +258821,1294.1050000166422,-0.06939925855402691 +258822,1294.1100000166423,-0.06939924613576025 +258823,1294.1150000166424,-0.06939923371663737 +258824,1294.1200000166425,-0.06939922129665847 +258825,1294.1250000166426,-0.06939920887582374 +258826,1294.1300000166427,-0.06939919645413337 +258827,1294.1350000166428,-0.06939918403158755 +258828,1294.140000016643,-0.06939917160818648 +258829,1294.145000016643,-0.06939915918393035 +258830,1294.1500000166432,-0.06939914675881934 +258831,1294.1550000166433,-0.06939913433285363 +258832,1294.1600000166434,-0.06939912190603346 +258833,1294.1650000166435,-0.06939910947835898 +258834,1294.1700000166436,-0.06939909704983038 +258835,1294.1750000166437,-0.06939908462044789 +258836,1294.1800000166438,-0.06939907219021164 +258837,1294.185000016644,-0.06939905975912188 +258838,1294.190000016644,-0.06939904732717875 +258839,1294.1950000166441,-0.06939903489438247 +258840,1294.2000000166443,-0.06939902246073322 +258841,1294.2050000166444,-0.0693990100262312 +258842,1294.2100000166445,-0.06939899759087659 +258843,1294.2150000166446,-0.06939898515466959 +258844,1294.2200000166447,-0.06939897271761038 +258845,1294.2250000166448,-0.06939896027969915 +258846,1294.230000016645,-0.0693989478409361 +258847,1294.235000016645,-0.06939893540132142 +258848,1294.2400000166451,-0.06939892296085527 +258849,1294.2450000166452,-0.06939891051953789 +258850,1294.2500000166453,-0.06939889807736944 +258851,1294.2550000166455,-0.06939888563435011 +258852,1294.2600000166456,-0.06939887319048009 +258853,1294.2650000166457,-0.06939886074575959 +258854,1294.2700000166458,-0.06939884830018875 +258855,1294.275000016646,-0.06939883585376781 +258856,1294.280000016646,-0.06939882340649693 +258857,1294.285000016646,-0.06939881095837631 +258858,1294.2900000166462,-0.06939879850940615 +258859,1294.2950000166463,-0.06939878605958662 +258860,1294.3000000166464,-0.06939877360891791 +258861,1294.3050000166465,-0.06939876115740022 +258862,1294.3100000166467,-0.06939874870503372 +258863,1294.3150000166468,-0.06939873625181864 +258864,1294.3200000166469,-0.06939872379775511 +258865,1294.325000016647,-0.06939871134284335 +258866,1294.330000016647,-0.06939869888708357 +258867,1294.3350000166472,-0.06939868643047592 +258868,1294.3400000166473,-0.0693986739730206 +258869,1294.3450000166474,-0.06939866151471781 +258870,1294.3500000166475,-0.06939864905556774 +258871,1294.3550000166476,-0.06939863659557055 +258872,1294.3600000166477,-0.06939862413472644 +258873,1294.3650000166479,-0.06939861167303561 +258874,1294.370000016648,-0.06939859921049825 +258875,1294.375000016648,-0.06939858674711454 +258876,1294.3800000166482,-0.06939857428288465 +258877,1294.3850000166483,-0.0693985618178088 +258878,1294.3900000166484,-0.06939854935188716 +258879,1294.3950000166485,-0.0693985368851199 +258880,1294.4000000166486,-0.06939852441750727 +258881,1294.4050000166487,-0.06939851194904938 +258882,1294.4100000166488,-0.06939849947974647 +258883,1294.415000016649,-0.06939848700959868 +258884,1294.420000016649,-0.06939847453860626 +258885,1294.4250000166492,-0.06939846206676935 +258886,1294.4300000166493,-0.06939844959408814 +258887,1294.4350000166494,-0.06939843712056282 +258888,1294.4400000166495,-0.06939842464619358 +258889,1294.4450000166496,-0.06939841217098064 +258890,1294.4500000166497,-0.06939839969492412 +258891,1294.4550000166498,-0.06939838721802426 +258892,1294.46000001665,-0.06939837474028122 +258893,1294.46500001665,-0.06939836226169521 +258894,1294.4700000166501,-0.06939834978226639 +258895,1294.4750000166503,-0.06939833730199496 +258896,1294.4800000166504,-0.0693983248208811 +258897,1294.4850000166505,-0.06939831233892502 +258898,1294.4900000166506,-0.06939829985612686 +258899,1294.4950000166507,-0.06939828737248684 +258900,1294.5000000166508,-0.06939827488800514 +258901,1294.505000016651,-0.06939826240268193 +258902,1294.510000016651,-0.06939824991651743 +258903,1294.5150000166511,-0.0693982374295118 +258904,1294.5200000166512,-0.06939822494166523 +258905,1294.5250000166513,-0.06939821245297789 +258906,1294.5300000166515,-0.06939819996344998 +258907,1294.5350000166516,-0.0693981874730817 +258908,1294.5400000166517,-0.06939817498187321 +258909,1294.5450000166518,-0.06939816248982471 +258910,1294.550000016652,-0.06939814999693639 +258911,1294.555000016652,-0.0693981375032084 +258912,1294.560000016652,-0.06939812500864098 +258913,1294.5650000166522,-0.06939811251323427 +258914,1294.5700000166523,-0.06939810001698847 +258915,1294.5750000166524,-0.06939808751990377 +258916,1294.5800000166525,-0.06939807502198035 +258917,1294.5850000166527,-0.06939806252321838 +258918,1294.5900000166528,-0.06939805002361808 +258919,1294.5950000166529,-0.0693980375231796 +258920,1294.600000016653,-0.06939802502190315 +258921,1294.605000016653,-0.0693980125197889 +258922,1294.6100000166532,-0.06939800001683705 +258923,1294.6150000166533,-0.06939798751304775 +258924,1294.6200000166534,-0.06939797500842121 +258925,1294.6250000166535,-0.06939796250295761 +258926,1294.6300000166536,-0.06939794999665713 +258927,1294.6350000166537,-0.06939793748951996 +258928,1294.6400000166539,-0.06939792498154627 +258929,1294.645000016654,-0.06939791247273626 +258930,1294.650000016654,-0.06939789996309009 +258931,1294.6550000166542,-0.06939788745260797 +258932,1294.6600000166543,-0.06939787494129009 +258933,1294.6650000166544,-0.06939786242913659 +258934,1294.6700000166545,-0.06939784991614771 +258935,1294.6750000166546,-0.0693978374023236 +258936,1294.6800000166547,-0.06939782488766442 +258937,1294.6850000166548,-0.06939781237217041 +258938,1294.690000016655,-0.0693977998558417 +258939,1294.695000016655,-0.0693977873386785 +258940,1294.7000000166552,-0.06939777482068099 +258941,1294.7050000166553,-0.06939776230184935 +258942,1294.7100000166554,-0.06939774978218377 +258943,1294.7150000166555,-0.06939773726168441 +258944,1294.7200000166556,-0.06939772474035148 +258945,1294.7250000166557,-0.06939771221818515 +258946,1294.7300000166558,-0.06939769969518561 +258947,1294.735000016656,-0.06939768717135303 +258948,1294.740000016656,-0.0693976746466876 +258949,1294.7450000166561,-0.0693976621211895 +258950,1294.7500000166563,-0.0693976495948589 +258951,1294.7550000166564,-0.06939763706769601 +258952,1294.7600000166565,-0.069397624539701 +258953,1294.7650000166566,-0.06939761201087405 +258954,1294.7700000166567,-0.06939759948121532 +258955,1294.7750000166568,-0.06939758695072502 +258956,1294.780000016657,-0.06939757441940335 +258957,1294.785000016657,-0.06939756188725044 +258958,1294.7900000166571,-0.0693975493542665 +258959,1294.7950000166572,-0.06939753682045169 +258960,1294.8000000166573,-0.06939752428580623 +258961,1294.8050000166575,-0.06939751175033028 +258962,1294.8100000166576,-0.06939749921402402 +258963,1294.8150000166577,-0.06939748667688764 +258964,1294.8200000166578,-0.0693974741389213 +258965,1294.825000016658,-0.06939746160012521 +258966,1294.830000016658,-0.06939744906049952 +258967,1294.8350000166581,-0.06939743652004444 +258968,1294.8400000166582,-0.06939742397876013 +258969,1294.8450000166583,-0.06939741143664678 +258970,1294.8500000166584,-0.06939739889370458 +258971,1294.8550000166586,-0.06939738634993368 +258972,1294.8600000166587,-0.0693973738053343 +258973,1294.8650000166588,-0.06939736125990659 +258974,1294.8700000166589,-0.06939734871365075 +258975,1294.875000016659,-0.06939733616656693 +258976,1294.880000016659,-0.06939732361865535 +258977,1294.8850000166592,-0.06939731106991616 +258978,1294.8900000166593,-0.06939729852034955 +258979,1294.8950000166594,-0.0693972859699557 +258980,1294.9000000166595,-0.0693972734187348 +258981,1294.9050000166596,-0.06939726086668702 +258982,1294.9100000166598,-0.06939724831381254 +258983,1294.9150000166599,-0.06939723576011154 +258984,1294.92000001666,-0.0693972232055842 +258985,1294.92500001666,-0.06939721065023069 +258986,1294.9300000166602,-0.0693971980940512 +258987,1294.9350000166603,-0.06939718553704594 +258988,1294.9400000166604,-0.06939717297921502 +258989,1294.9450000166605,-0.06939716042055867 +258990,1294.9500000166606,-0.06939714786107705 +258991,1294.9550000166607,-0.06939713530077035 +258992,1294.9600000166608,-0.06939712273963874 +258993,1294.965000016661,-0.06939711017768242 +258994,1294.970000016661,-0.06939709761490154 +258995,1294.9750000166612,-0.06939708505129628 +258996,1294.9800000166613,-0.06939707248686684 +258997,1294.9850000166614,-0.0693970599216134 +258998,1294.9900000166615,-0.0693970473555361 +258999,1294.9950000166616,-0.06939703478863517 +259000,1295.0000000166617,-0.06939702222091075 +259001,1295.0050000166618,-0.06939700965236303 +259002,1295.010000016662,-0.0693969970829922 +259003,1295.015000016662,-0.06939698451279842 +259004,1295.0200000166622,-0.06939697194178189 +259005,1295.0250000166623,-0.06939695936994277 +259006,1295.0300000166624,-0.06939694679728123 +259007,1295.0350000166625,-0.06939693422379747 +259008,1295.0400000166626,-0.06939692164949166 +259009,1295.0450000166627,-0.06939690907436398 +259010,1295.0500000166628,-0.06939689649841459 +259011,1295.055000016663,-0.0693968839216437 +259012,1295.060000016663,-0.06939687134405145 +259013,1295.0650000166631,-0.06939685876563804 +259014,1295.0700000166632,-0.06939684618640365 +259015,1295.0750000166634,-0.06939683360634845 +259016,1295.0800000166635,-0.06939682102547262 +259017,1295.0850000166636,-0.06939680844377634 +259018,1295.0900000166637,-0.06939679586125978 +259019,1295.0950000166638,-0.06939678327792312 +259020,1295.100000016664,-0.06939677069376654 +259021,1295.105000016664,-0.06939675810879022 +259022,1295.1100000166641,-0.06939674552299431 +259023,1295.1150000166642,-0.069396732936379 +259024,1295.1200000166643,-0.0693967203489445 +259025,1295.1250000166644,-0.06939670776069096 +259026,1295.1300000166646,-0.06939669517161855 +259027,1295.1350000166647,-0.06939668258172745 +259028,1295.1400000166648,-0.06939666999101785 +259029,1295.1450000166649,-0.06939665739948991 +259030,1295.150000016665,-0.06939664480714382 +259031,1295.155000016665,-0.06939663221397975 +259032,1295.1600000166652,-0.06939661961999787 +259033,1295.1650000166653,-0.06939660702519837 +259034,1295.1700000166654,-0.0693965944295814 +259035,1295.1750000166655,-0.06939658183314716 +259036,1295.1800000166656,-0.06939656923589582 +259037,1295.1850000166658,-0.06939655663782755 +259038,1295.1900000166659,-0.06939654403894255 +259039,1295.195000016666,-0.06939653143924097 +259040,1295.200000016666,-0.069396518838723 +259041,1295.2050000166662,-0.0693965062373888 +259042,1295.2100000166663,-0.06939649363523855 +259043,1295.2150000166664,-0.06939648103227242 +259044,1295.2200000166665,-0.06939646842849059 +259045,1295.2250000166666,-0.06939645582389325 +259046,1295.2300000166667,-0.06939644321848057 +259047,1295.2350000166668,-0.06939643061225272 +259048,1295.240000016667,-0.06939641800520986 +259049,1295.245000016667,-0.0693964053973522 +259050,1295.2500000166672,-0.06939639278867987 +259051,1295.2550000166673,-0.06939638017919308 +259052,1295.2600000166674,-0.069396367568892 +259053,1295.2650000166675,-0.0693963549577768 +259054,1295.2700000166676,-0.06939634234584764 +259055,1295.2750000166677,-0.06939632973310471 +259056,1295.2800000166678,-0.06939631711954818 +259057,1295.285000016668,-0.06939630450517822 +259058,1295.290000016668,-0.06939629188999501 +259059,1295.2950000166682,-0.06939627927399873 +259060,1295.3000000166683,-0.06939626665718956 +259061,1295.3050000166684,-0.06939625403956766 +259062,1295.3100000166685,-0.0693962414211332 +259063,1295.3150000166686,-0.06939622880188635 +259064,1295.3200000166687,-0.06939621618182731 +259065,1295.3250000166688,-0.06939620356095624 +259066,1295.330000016669,-0.06939619093927331 +259067,1295.335000016669,-0.06939617831677869 +259068,1295.3400000166691,-0.06939616569347255 +259069,1295.3450000166692,-0.0693961530693551 +259070,1295.3500000166694,-0.06939614044442646 +259071,1295.3550000166695,-0.06939612781868686 +259072,1295.3600000166696,-0.06939611519213641 +259073,1295.3650000166697,-0.06939610256477532 +259074,1295.3700000166698,-0.06939608993660377 +259075,1295.37500001667,-0.06939607730762193 +259076,1295.38000001667,-0.06939606467782995 +259077,1295.3850000166701,-0.06939605204722803 +259078,1295.3900000166702,-0.06939603941581632 +259079,1295.3950000166703,-0.06939602678359501 +259080,1295.4000000166704,-0.06939601415056428 +259081,1295.4050000166706,-0.06939600151672427 +259082,1295.4100000166707,-0.06939598888207517 +259083,1295.4150000166708,-0.06939597624661717 +259084,1295.4200000166709,-0.06939596361035043 +259085,1295.425000016671,-0.06939595097327511 +259086,1295.430000016671,-0.0693959383353914 +259087,1295.4350000166712,-0.06939592569669945 +259088,1295.4400000166713,-0.06939591305719946 +259089,1295.4450000166714,-0.06939590041689157 +259090,1295.4500000166715,-0.06939588777577599 +259091,1295.4550000166716,-0.06939587513385287 +259092,1295.4600000166718,-0.06939586249112237 +259093,1295.4650000166719,-0.06939584984758469 +259094,1295.470000016672,-0.06939583720323998 +259095,1295.475000016672,-0.06939582455808842 +259096,1295.4800000166722,-0.06939581191213019 +259097,1295.4850000166723,-0.06939579926536545 +259098,1295.4900000166724,-0.06939578661779436 +259099,1295.4950000166725,-0.06939577396941712 +259100,1295.5000000166726,-0.0693957613202339 +259101,1295.5050000166727,-0.06939574867024483 +259102,1295.5100000166728,-0.06939573601945012 +259103,1295.515000016673,-0.06939572336784994 +259104,1295.520000016673,-0.06939571071544444 +259105,1295.5250000166732,-0.06939569806223381 +259106,1295.5300000166733,-0.06939568540821821 +259107,1295.5350000166734,-0.06939567275339782 +259108,1295.5400000166735,-0.0693956600977728 +259109,1295.5450000166736,-0.06939564744134333 +259110,1295.5500000166737,-0.06939563478410958 +259111,1295.5550000166738,-0.06939562212607171 +259112,1295.560000016674,-0.0693956094672299 +259113,1295.565000016674,-0.06939559680758432 +259114,1295.5700000166742,-0.06939558414713513 +259115,1295.5750000166743,-0.06939557148588253 +259116,1295.5800000166744,-0.06939555882382667 +259117,1295.5850000166745,-0.0693955461609677 +259118,1295.5900000166746,-0.06939553349730582 +259119,1295.5950000166747,-0.06939552083284119 +259120,1295.6000000166748,-0.06939550816757396 +259121,1295.605000016675,-0.06939549550150434 +259122,1295.610000016675,-0.06939548283463248 +259123,1295.6150000166751,-0.06939547016695854 +259124,1295.6200000166752,-0.06939545749848272 +259125,1295.6250000166754,-0.06939544482920515 +259126,1295.6300000166755,-0.06939543215912602 +259127,1295.6350000166756,-0.0693954194882455 +259128,1295.6400000166757,-0.06939540681656375 +259129,1295.6450000166758,-0.06939539414408095 +259130,1295.650000016676,-0.06939538147079728 +259131,1295.655000016676,-0.06939536879671288 +259132,1295.6600000166761,-0.06939535612182793 +259133,1295.6650000166762,-0.06939534344614261 +259134,1295.6700000166763,-0.06939533076965708 +259135,1295.6750000166764,-0.06939531809237151 +259136,1295.6800000166766,-0.06939530541428607 +259137,1295.6850000166767,-0.06939529273540093 +259138,1295.6900000166768,-0.06939528005571625 +259139,1295.6950000166769,-0.06939526737523223 +259140,1295.700000016677,-0.069395254693949 +259141,1295.705000016677,-0.06939524201186674 +259142,1295.7100000166772,-0.06939522932898563 +259143,1295.7150000166773,-0.06939521664530583 +259144,1295.7200000166774,-0.06939520396082752 +259145,1295.7250000166775,-0.06939519127555084 +259146,1295.7300000166776,-0.06939517858947597 +259147,1295.7350000166778,-0.0693951659026031 +259148,1295.7400000166779,-0.06939515321493236 +259149,1295.745000016678,-0.06939514052646395 +259150,1295.750000016678,-0.06939512783719803 +259151,1295.7550000166782,-0.06939511514713476 +259152,1295.7600000166783,-0.06939510245627432 +259153,1295.7650000166784,-0.06939508976461686 +259154,1295.7700000166785,-0.06939507707216257 +259155,1295.7750000166786,-0.0693950643789116 +259156,1295.7800000166787,-0.06939505168486411 +259157,1295.7850000166789,-0.0693950389900203 +259158,1295.790000016679,-0.06939502629438031 +259159,1295.795000016679,-0.06939501359794432 +259160,1295.8000000166792,-0.0693950009007125 +259161,1295.8050000166793,-0.069394988202685 +259162,1295.8100000166794,-0.069394975503862 +259163,1295.8150000166795,-0.06939496280424366 +259164,1295.8200000166796,-0.06939495010383015 +259165,1295.8250000166797,-0.06939493740262163 +259166,1295.8300000166798,-0.0693949247006183 +259167,1295.83500001668,-0.06939491199782027 +259168,1295.84000001668,-0.06939489929422776 +259169,1295.8450000166802,-0.06939488658984092 +259170,1295.8500000166803,-0.06939487388465988 +259171,1295.8550000166804,-0.06939486117868486 +259172,1295.8600000166805,-0.069394848471916 +259173,1295.8650000166806,-0.06939483576435347 +259174,1295.8700000166807,-0.06939482305599745 +259175,1295.8750000166808,-0.06939481034684808 +259176,1295.880000016681,-0.06939479763690554 +259177,1295.885000016681,-0.06939478492616999 +259178,1295.8900000166811,-0.0693947722146416 +259179,1295.8950000166813,-0.06939475950232056 +259180,1295.9000000166814,-0.069394746789207 +259181,1295.9050000166815,-0.06939473407530108 +259182,1295.9100000166816,-0.06939472136060301 +259183,1295.9150000166817,-0.06939470864511293 +259184,1295.9200000166818,-0.069394695928831 +259185,1295.925000016682,-0.0693946832117574 +259186,1295.930000016682,-0.06939467049389228 +259187,1295.9350000166821,-0.06939465777523582 +259188,1295.9400000166822,-0.06939464505578816 +259189,1295.9450000166823,-0.06939463233554949 +259190,1295.9500000166825,-0.06939461961451997 +259191,1295.9550000166826,-0.06939460689269977 +259192,1295.9600000166827,-0.06939459417008904 +259193,1295.9650000166828,-0.06939458144668795 +259194,1295.970000016683,-0.06939456872249668 +259195,1295.975000016683,-0.06939455599751537 +259196,1295.980000016683,-0.06939454327174421 +259197,1295.9850000166832,-0.06939453054518335 +259198,1295.9900000166833,-0.06939451781783297 +259199,1295.9950000166834,-0.0693945050896932 +259200,1296.0000000166835,-0.06939449236076425 +259201,1296.0050000166837,-0.06939447963104625 +259202,1296.0100000166838,-0.06939446690053938 +259203,1296.0150000166839,-0.06939445416924381 +259204,1296.020000016684,-0.06939444143715967 +259205,1296.025000016684,-0.06939442870428716 +259206,1296.0300000166842,-0.06939441597062644 +259207,1296.0350000166843,-0.06939440323617767 +259208,1296.0400000166844,-0.069394390500941 +259209,1296.0450000166845,-0.06939437776491661 +259210,1296.0500000166846,-0.06939436502810466 +259211,1296.0550000166847,-0.0693943522905053 +259212,1296.0600000166849,-0.06939433955211873 +259213,1296.065000016685,-0.06939432681294506 +259214,1296.070000016685,-0.06939431407298452 +259215,1296.0750000166852,-0.06939430133223722 +259216,1296.0800000166853,-0.06939428859070335 +259217,1296.0850000166854,-0.06939427584838305 +259218,1296.0900000166855,-0.0693942631052765 +259219,1296.0950000166856,-0.06939425036138386 +259220,1296.1000000166857,-0.0693942376167053 +259221,1296.1050000166858,-0.06939422487124097 +259222,1296.110000016686,-0.06939421212499104 +259223,1296.115000016686,-0.06939419937795568 +259224,1296.1200000166862,-0.06939418663013505 +259225,1296.1250000166863,-0.06939417388152931 +259226,1296.1300000166864,-0.06939416113213862 +259227,1296.1350000166865,-0.06939414838196314 +259228,1296.1400000166866,-0.06939413563100305 +259229,1296.1450000166867,-0.06939412287925849 +259230,1296.1500000166868,-0.06939411012672964 +259231,1296.155000016687,-0.06939409737341665 +259232,1296.160000016687,-0.06939408461931969 +259233,1296.1650000166871,-0.06939407186443891 +259234,1296.1700000166873,-0.0693940591087745 +259235,1296.1750000166874,-0.0693940463523266 +259236,1296.1800000166875,-0.06939403359509537 +259237,1296.1850000166876,-0.06939402083708097 +259238,1296.1900000166877,-0.0693940080782836 +259239,1296.1950000166878,-0.06939399531870337 +259240,1296.200000016688,-0.06939398255834046 +259241,1296.205000016688,-0.06939396979719506 +259242,1296.2100000166881,-0.0693939570352673 +259243,1296.2150000166882,-0.06939394427255734 +259244,1296.2200000166883,-0.06939393150906535 +259245,1296.2250000166885,-0.0693939187447915 +259246,1296.2300000166886,-0.06939390597973596 +259247,1296.2350000166887,-0.06939389321389887 +259248,1296.2400000166888,-0.0693938804472804 +259249,1296.245000016689,-0.0693938676798807 +259250,1296.250000016689,-0.06939385491169994 +259251,1296.255000016689,-0.06939384214273829 +259252,1296.2600000166892,-0.06939382937299592 +259253,1296.2650000166893,-0.06939381660247294 +259254,1296.2700000166894,-0.06939380383116957 +259255,1296.2750000166895,-0.06939379105908593 +259256,1296.2800000166897,-0.0693937782862222 +259257,1296.2850000166898,-0.06939376551257855 +259258,1296.2900000166899,-0.06939375273815511 +259259,1296.29500001669,-0.06939373996295208 +259260,1296.30000001669,-0.06939372718696957 +259261,1296.3050000166902,-0.0693937144102078 +259262,1296.3100000166903,-0.06939370163266688 +259263,1296.3150000166904,-0.069393688854347 +259264,1296.3200000166905,-0.06939367607524832 +259265,1296.3250000166906,-0.06939366329537099 +259266,1296.3300000166907,-0.06939365051471516 +259267,1296.3350000166909,-0.06939363773328101 +259268,1296.340000016691,-0.06939362495106868 +259269,1296.345000016691,-0.06939361216807836 +259270,1296.3500000166912,-0.0693935993843102 +259271,1296.3550000166913,-0.06939358659976433 +259272,1296.3600000166914,-0.06939357381444095 +259273,1296.3650000166915,-0.06939356102834018 +259274,1296.3700000166916,-0.06939354824146222 +259275,1296.3750000166917,-0.06939353545380722 +259276,1296.3800000166918,-0.06939352266537531 +259277,1296.385000016692,-0.06939350987616667 +259278,1296.390000016692,-0.06939349708618148 +259279,1296.3950000166922,-0.06939348429541986 +259280,1296.4000000166923,-0.06939347150388199 +259281,1296.4050000166924,-0.06939345871156803 +259282,1296.4100000166925,-0.06939344591847814 +259283,1296.4150000166926,-0.06939343312461248 +259284,1296.4200000166927,-0.0693934203299712 +259285,1296.4250000166928,-0.06939340753455446 +259286,1296.430000016693,-0.06939339473836242 +259287,1296.435000016693,-0.06939338194139524 +259288,1296.4400000166931,-0.0693933691436531 +259289,1296.4450000166933,-0.06939335634513613 +259290,1296.4500000166934,-0.06939334354584449 +259291,1296.4550000166935,-0.06939333074577836 +259292,1296.4600000166936,-0.06939331794493787 +259293,1296.4650000166937,-0.0693933051433232 +259294,1296.4700000166938,-0.06939329234093451 +259295,1296.475000016694,-0.06939327953777195 +259296,1296.480000016694,-0.06939326673383568 +259297,1296.4850000166941,-0.06939325392912585 +259298,1296.4900000166942,-0.06939324112364263 +259299,1296.4950000166943,-0.06939322831738616 +259300,1296.5000000166945,-0.06939321551035663 +259301,1296.5050000166946,-0.06939320270255417 +259302,1296.5100000166947,-0.06939318989397894 +259303,1296.5150000166948,-0.06939317708463112 +259304,1296.520000016695,-0.06939316427451085 +259305,1296.525000016695,-0.06939315146361828 +259306,1296.530000016695,-0.0693931386519536 +259307,1296.5350000166952,-0.06939312583951693 +259308,1296.5400000166953,-0.06939311302630845 +259309,1296.5450000166954,-0.0693931002123283 +259310,1296.5500000166955,-0.06939308739757666 +259311,1296.5550000166957,-0.06939307458205365 +259312,1296.5600000166958,-0.06939306176575949 +259313,1296.5650000166959,-0.06939304894869427 +259314,1296.570000016696,-0.06939303613085819 +259315,1296.575000016696,-0.0693930233122514 +259316,1296.5800000166962,-0.06939301049287404 +259317,1296.5850000166963,-0.06939299767272629 +259318,1296.5900000166964,-0.06939298485180828 +259319,1296.5950000166965,-0.0693929720301202 +259320,1296.6000000166966,-0.06939295920766217 +259321,1296.6050000166967,-0.06939294638443438 +259322,1296.6100000166969,-0.06939293356043698 +259323,1296.615000016697,-0.0693929207356701 +259324,1296.620000016697,-0.06939290791013392 +259325,1296.6250000166972,-0.06939289508382859 +259326,1296.6300000166973,-0.06939288225675427 +259327,1296.6350000166974,-0.06939286942891111 +259328,1296.6400000166975,-0.06939285660029929 +259329,1296.6450000166976,-0.06939284377091892 +259330,1296.6500000166977,-0.0693928309407702 +259331,1296.6550000166978,-0.06939281810985325 +259332,1296.660000016698,-0.06939280527816825 +259333,1296.665000016698,-0.06939279244571536 +259334,1296.6700000166982,-0.06939277961249472 +259335,1296.6750000166983,-0.0693927667785065 +259336,1296.6800000166984,-0.06939275394375084 +259337,1296.6850000166985,-0.06939274110822792 +259338,1296.6900000166986,-0.06939272827193788 +259339,1296.6950000166987,-0.06939271543488086 +259340,1296.7000000166988,-0.06939270259705704 +259341,1296.705000016699,-0.06939268975846656 +259342,1296.710000016699,-0.0693926769191096 +259343,1296.7150000166992,-0.06939266407898627 +259344,1296.7200000166993,-0.06939265123809676 +259345,1296.7250000166994,-0.06939263839644123 +259346,1296.7300000166995,-0.06939262555401982 +259347,1296.7350000166996,-0.06939261271083268 +259348,1296.7400000166997,-0.06939259986687998 +259349,1296.7450000166998,-0.06939258702216185 +259350,1296.7500000167,-0.06939257417667846 +259351,1296.7550000167,-0.06939256133042998 +259352,1296.7600000167001,-0.06939254848341657 +259353,1296.7650000167002,-0.06939253563563834 +259354,1296.7700000167004,-0.06939252278709547 +259355,1296.7750000167005,-0.06939250993778813 +259356,1296.7800000167006,-0.06939249708771647 +259357,1296.7850000167007,-0.06939248423688062 +259358,1296.7900000167008,-0.06939247138528075 +259359,1296.795000016701,-0.069392458532917 +259360,1296.800000016701,-0.06939244567978956 +259361,1296.8050000167011,-0.06939243282589855 +259362,1296.8100000167012,-0.06939241997124414 +259363,1296.8150000167013,-0.06939240711582648 +259364,1296.8200000167014,-0.06939239425964572 +259365,1296.8250000167016,-0.06939238140270201 +259366,1296.8300000167017,-0.06939236854499552 +259367,1296.8350000167018,-0.06939235568652641 +259368,1296.8400000167019,-0.0693923428272948 +259369,1296.845000016702,-0.06939232996730087 +259370,1296.850000016702,-0.06939231710654477 +259371,1296.8550000167022,-0.06939230424502664 +259372,1296.8600000167023,-0.06939229138274665 +259373,1296.8650000167024,-0.06939227851970495 +259374,1296.8700000167025,-0.06939226565590169 +259375,1296.8750000167026,-0.06939225279133701 +259376,1296.8800000167028,-0.0693922399260111 +259377,1296.8850000167029,-0.06939222705992408 +259378,1296.890000016703,-0.06939221419307612 +259379,1296.895000016703,-0.06939220132546736 +259380,1296.9000000167032,-0.06939218845709796 +259381,1296.9050000167033,-0.06939217558796806 +259382,1296.9100000167034,-0.06939216271807784 +259383,1296.9150000167035,-0.06939214984742743 +259384,1296.9200000167036,-0.069392136976017 +259385,1296.9250000167037,-0.0693921241038467 +259386,1296.9300000167038,-0.06939211123091667 +259387,1296.935000016704,-0.06939209835722707 +259388,1296.940000016704,-0.06939208548277805 +259389,1296.9450000167042,-0.06939207260756976 +259390,1296.9500000167043,-0.06939205973160235 +259391,1296.9550000167044,-0.069392046854876 +259392,1296.9600000167045,-0.06939203397739083 +259393,1296.9650000167046,-0.06939202109914701 +259394,1296.9700000167047,-0.06939200822014466 +259395,1296.9750000167048,-0.06939199534038397 +259396,1296.980000016705,-0.0693919824598651 +259397,1296.985000016705,-0.06939196957858816 +259398,1296.9900000167052,-0.06939195669655332 +259399,1296.9950000167053,-0.06939194381376075 +259400,1297.0000000167054,-0.06939193093021058 +259401,1297.0050000167055,-0.06939191804590297 +259402,1297.0100000167056,-0.06939190516083807 +259403,1297.0150000167057,-0.06939189227501602 +259404,1297.0200000167058,-0.069391879388437 +259405,1297.025000016706,-0.06939186650110113 +259406,1297.030000016706,-0.06939185361300859 +259407,1297.0350000167061,-0.0693918407241595 +259408,1297.0400000167062,-0.06939182783455405 +259409,1297.0450000167064,-0.06939181494419236 +259410,1297.0500000167065,-0.0693918020530746 +259411,1297.0550000167066,-0.06939178916120091 +259412,1297.0600000167067,-0.06939177626857143 +259413,1297.0650000167068,-0.06939176337518635 +259414,1297.070000016707,-0.06939175048104577 +259415,1297.075000016707,-0.06939173758614987 +259416,1297.0800000167071,-0.06939172469049881 +259417,1297.0850000167072,-0.06939171179409272 +259418,1297.0900000167073,-0.06939169889693175 +259419,1297.0950000167074,-0.06939168599901607 +259420,1297.1000000167076,-0.06939167310034583 +259421,1297.1050000167077,-0.06939166020092115 +259422,1297.1100000167078,-0.06939164730074221 +259423,1297.1150000167079,-0.06939163439980915 +259424,1297.120000016708,-0.06939162149812213 +259425,1297.125000016708,-0.06939160859568128 +259426,1297.1300000167082,-0.06939159569248676 +259427,1297.1350000167083,-0.06939158278853873 +259428,1297.1400000167084,-0.06939156988383732 +259429,1297.1450000167085,-0.0693915569783827 +259430,1297.1500000167086,-0.06939154407217502 +259431,1297.1550000167088,-0.0693915311652144 +259432,1297.1600000167089,-0.06939151825750102 +259433,1297.165000016709,-0.06939150534903503 +259434,1297.170000016709,-0.06939149243981656 +259435,1297.1750000167092,-0.06939147952984578 +259436,1297.1800000167093,-0.06939146661912282 +259437,1297.1850000167094,-0.06939145370764786 +259438,1297.1900000167095,-0.069391440795421 +259439,1297.1950000167096,-0.06939142788244244 +259440,1297.2000000167097,-0.06939141496871232 +259441,1297.2050000167098,-0.06939140205423075 +259442,1297.21000001671,-0.06939138913899792 +259443,1297.21500001671,-0.06939137622301396 +259444,1297.2200000167102,-0.06939136330627903 +259445,1297.2250000167103,-0.06939135038879327 +259446,1297.2300000167104,-0.06939133747055684 +259447,1297.2350000167105,-0.06939132455156986 +259448,1297.2400000167106,-0.06939131163183253 +259449,1297.2450000167107,-0.06939129871134495 +259450,1297.2500000167108,-0.0693912857901073 +259451,1297.255000016711,-0.0693912728681197 +259452,1297.260000016711,-0.06939125994538234 +259453,1297.2650000167112,-0.06939124702189532 +259454,1297.2700000167113,-0.06939123409765882 +259455,1297.2750000167114,-0.06939122117267299 +259456,1297.2800000167115,-0.06939120824693797 +259457,1297.2850000167116,-0.06939119532045389 +259458,1297.2900000167117,-0.06939118239322094 +259459,1297.2950000167118,-0.06939116946523921 +259460,1297.300000016712,-0.06939115653650892 +259461,1297.305000016712,-0.06939114360703016 +259462,1297.3100000167121,-0.06939113067680311 +259463,1297.3150000167122,-0.06939111774582789 +259464,1297.3200000167124,-0.06939110481410467 +259465,1297.3250000167125,-0.0693910918816336 +259466,1297.3300000167126,-0.06939107894841481 +259467,1297.3350000167127,-0.06939106601444847 +259468,1297.3400000167128,-0.0693910530797347 +259469,1297.345000016713,-0.06939104014427368 +259470,1297.350000016713,-0.06939102720806553 +259471,1297.3550000167131,-0.06939101427111041 +259472,1297.3600000167132,-0.06939100133340848 +259473,1297.3650000167133,-0.06939098839495984 +259474,1297.3700000167134,-0.06939097545576471 +259475,1297.3750000167136,-0.06939096251582318 +259476,1297.3800000167137,-0.0693909495751354 +259477,1297.3850000167138,-0.06939093663370156 +259478,1297.3900000167139,-0.06939092369152176 +259479,1297.395000016714,-0.06939091074859617 +259480,1297.400000016714,-0.06939089780492494 +259481,1297.4050000167142,-0.06939088486050819 +259482,1297.4100000167143,-0.0693908719153461 +259483,1297.4150000167144,-0.06939085896943879 +259484,1297.4200000167145,-0.06939084602278643 +259485,1297.4250000167146,-0.06939083307538917 +259486,1297.4300000167148,-0.06939082012724712 +259487,1297.4350000167149,-0.06939080717836046 +259488,1297.440000016715,-0.06939079422872933 +259489,1297.445000016715,-0.06939078127835387 +259490,1297.4500000167152,-0.06939076832723423 +259491,1297.4550000167153,-0.06939075537537057 +259492,1297.4600000167154,-0.069390742422763 +259493,1297.4650000167155,-0.0693907294694117 +259494,1297.4700000167156,-0.0693907165153168 +259495,1297.4750000167157,-0.06939070356047844 +259496,1297.4800000167158,-0.06939069060489679 +259497,1297.485000016716,-0.06939067764857199 +259498,1297.490000016716,-0.06939066469150416 +259499,1297.4950000167162,-0.06939065173369346 +259500,1297.5000000167163,-0.06939063877514005 +259501,1297.5050000167164,-0.06939062581584406 +259502,1297.5100000167165,-0.06939061285580564 +259503,1297.5150000167166,-0.06939059989502495 +259504,1297.5200000167167,-0.06939058693350211 +259505,1297.5250000167168,-0.06939057397123727 +259506,1297.530000016717,-0.0693905610082306 +259507,1297.535000016717,-0.06939054804448223 +259508,1297.5400000167172,-0.0693905350799923 +259509,1297.5450000167173,-0.06939052211476095 +259510,1297.5500000167174,-0.06939050914878833 +259511,1297.5550000167175,-0.0693904961820746 +259512,1297.5600000167176,-0.0693904832146199 +259513,1297.5650000167177,-0.06939047024642436 +259514,1297.5700000167178,-0.06939045727748815 +259515,1297.575000016718,-0.06939044430781138 +259516,1297.580000016718,-0.06939043133739423 +259517,1297.5850000167181,-0.0693904183662368 +259518,1297.5900000167182,-0.06939040539433929 +259519,1297.5950000167184,-0.06939039242170181 +259520,1297.6000000167185,-0.0693903794483245 +259521,1297.6050000167186,-0.06939036647420754 +259522,1297.6100000167187,-0.06939035349935103 +259523,1297.6150000167188,-0.06939034052375516 +259524,1297.620000016719,-0.06939032754742004 +259525,1297.625000016719,-0.06939031457034582 +259526,1297.6300000167191,-0.06939030159253265 +259527,1297.6350000167192,-0.06939028861398068 +259528,1297.6400000167193,-0.06939027563469004 +259529,1297.6450000167195,-0.06939026265466089 +259530,1297.6500000167196,-0.06939024967389337 +259531,1297.6550000167197,-0.0693902366923876 +259532,1297.6600000167198,-0.06939022371014376 +259533,1297.66500001672,-0.06939021072716198 +259534,1297.67000001672,-0.06939019774344239 +259535,1297.67500001672,-0.06939018475898515 +259536,1297.6800000167202,-0.0693901717737904 +259537,1297.6850000167203,-0.06939015878785827 +259538,1297.6900000167204,-0.06939014580118892 +259539,1297.6950000167205,-0.0693901328137825 +259540,1297.7000000167207,-0.06939011982563914 +259541,1297.7050000167208,-0.06939010683675897 +259542,1297.7100000167209,-0.06939009384714218 +259543,1297.715000016721,-0.06939008085678885 +259544,1297.720000016721,-0.06939006786569918 +259545,1297.7250000167212,-0.06939005487387329 +259546,1297.7300000167213,-0.0693900418813113 +259547,1297.7350000167214,-0.06939002888801339 +259548,1297.7400000167215,-0.06939001589397968 +259549,1297.7450000167216,-0.06939000289921034 +259550,1297.7500000167217,-0.06938998990370547 +259551,1297.7550000167219,-0.06938997690746525 +259552,1297.760000016722,-0.0693899639104898 +259553,1297.765000016722,-0.06938995091277927 +259554,1297.7700000167222,-0.06938993791433382 +259555,1297.7750000167223,-0.06938992491515357 +259556,1297.7800000167224,-0.06938991191523868 +259557,1297.7850000167225,-0.06938989891458927 +259558,1297.7900000167226,-0.0693898859132055 +259559,1297.7950000167227,-0.06938987291108749 +259560,1297.8000000167228,-0.06938985990823543 +259561,1297.805000016723,-0.0693898469046494 +259562,1297.810000016723,-0.06938983390032959 +259563,1297.8150000167232,-0.06938982089527614 +259564,1297.8200000167233,-0.06938980788948916 +259565,1297.8250000167234,-0.06938979488296881 +259566,1297.8300000167235,-0.06938978187571525 +259567,1297.8350000167236,-0.06938976886772859 +259568,1297.8400000167237,-0.06938975585900899 +259569,1297.8450000167238,-0.06938974284955658 +259570,1297.850000016724,-0.06938972983937151 +259571,1297.855000016724,-0.06938971682845393 +259572,1297.8600000167241,-0.06938970381680395 +259573,1297.8650000167243,-0.06938969080442177 +259574,1297.8700000167244,-0.06938967779130746 +259575,1297.8750000167245,-0.06938966477746122 +259576,1297.8800000167246,-0.06938965176288317 +259577,1297.8850000167247,-0.06938963874757342 +259578,1297.8900000167248,-0.06938962573153218 +259579,1297.895000016725,-0.06938961271475953 +259580,1297.900000016725,-0.06938959969725565 +259581,1297.9050000167251,-0.06938958667902065 +259582,1297.9100000167252,-0.0693895736600547 +259583,1297.9150000167253,-0.06938956064035791 +259584,1297.9200000167255,-0.06938954761993044 +259585,1297.9250000167256,-0.06938953459877242 +259586,1297.9300000167257,-0.06938952157688402 +259587,1297.9350000167258,-0.06938950855426534 +259588,1297.940000016726,-0.06938949553091657 +259589,1297.945000016726,-0.0693894825068378 +259590,1297.950000016726,-0.06938946948202919 +259591,1297.9550000167262,-0.06938945645649088 +259592,1297.9600000167263,-0.06938944343022302 +259593,1297.9650000167264,-0.06938943040322573 +259594,1297.9700000167265,-0.06938941737549918 +259595,1297.9750000167267,-0.06938940434704348 +259596,1297.9800000167268,-0.0693893913178588 +259597,1297.9850000167269,-0.06938937828794525 +259598,1297.990000016727,-0.06938936525730299 +259599,1297.995000016727,-0.06938935222593218 +259600,1298.0000000167272,-0.0693893391938329 +259601,1298.0050000167273,-0.06938932616100534 +259602,1298.0100000167274,-0.06938931312744961 +259603,1298.0150000167275,-0.06938930009316588 +259604,1298.0200000167276,-0.06938928705815427 +259605,1298.0250000167277,-0.06938927402241493 +259606,1298.0300000167279,-0.06938926098594797 +259607,1298.035000016728,-0.06938924794875356 +259608,1298.040000016728,-0.06938923491083185 +259609,1298.0450000167282,-0.06938922187218295 +259610,1298.0500000167283,-0.06938920883280701 +259611,1298.0550000167284,-0.06938919579270418 +259612,1298.0600000167285,-0.06938918275187458 +259613,1298.0650000167286,-0.06938916971031837 +259614,1298.0700000167287,-0.06938915666803569 +259615,1298.0750000167288,-0.06938914362502666 +259616,1298.080000016729,-0.06938913058129141 +259617,1298.085000016729,-0.0693891175368301 +259618,1298.0900000167292,-0.06938910449164287 +259619,1298.0950000167293,-0.06938909144572984 +259620,1298.1000000167294,-0.0693890783990912 +259621,1298.1050000167295,-0.06938906535172702 +259622,1298.1100000167296,-0.06938905230363748 +259623,1298.1150000167297,-0.06938903925482272 +259624,1298.1200000167298,-0.06938902620528287 +259625,1298.12500001673,-0.06938901315501805 +259626,1298.13000001673,-0.06938900010402842 +259627,1298.1350000167301,-0.06938898705231411 +259628,1298.1400000167303,-0.06938897399987526 +259629,1298.1450000167304,-0.06938896094671201 +259630,1298.1500000167305,-0.06938894789282452 +259631,1298.1550000167306,-0.06938893483821289 +259632,1298.1600000167307,-0.06938892178287728 +259633,1298.1650000167308,-0.06938890872681781 +259634,1298.170000016731,-0.06938889567003466 +259635,1298.175000016731,-0.06938888261252793 +259636,1298.1800000167311,-0.06938886955429775 +259637,1298.1850000167312,-0.06938885649534429 +259638,1298.1900000167313,-0.06938884343566767 +259639,1298.1950000167315,-0.06938883037526802 +259640,1298.2000000167316,-0.06938881731414552 +259641,1298.2050000167317,-0.06938880425230025 +259642,1298.2100000167318,-0.06938879118973239 +259643,1298.215000016732,-0.06938877812644205 +259644,1298.220000016732,-0.06938876506242939 +259645,1298.225000016732,-0.06938875199769452 +259646,1298.2300000167322,-0.06938873893223761 +259647,1298.2350000167323,-0.06938872586605879 +259648,1298.2400000167324,-0.06938871279915819 +259649,1298.2450000167325,-0.06938869973153594 +259650,1298.2500000167327,-0.06938868666319217 +259651,1298.2550000167328,-0.06938867359412704 +259652,1298.2600000167329,-0.06938866052434069 +259653,1298.265000016733,-0.06938864745383323 +259654,1298.270000016733,-0.06938863438260483 +259655,1298.2750000167332,-0.06938862131065558 +259656,1298.2800000167333,-0.06938860823798566 +259657,1298.2850000167334,-0.06938859516459521 +259658,1298.2900000167335,-0.06938858209048433 +259659,1298.2950000167336,-0.06938856901565318 +259660,1298.3000000167337,-0.06938855594010192 +259661,1298.3050000167339,-0.06938854286383063 +259662,1298.310000016734,-0.06938852978683947 +259663,1298.315000016734,-0.0693885167091286 +259664,1298.3200000167342,-0.06938850363069812 +259665,1298.3250000167343,-0.06938849055154821 +259666,1298.3300000167344,-0.06938847747167896 +259667,1298.3350000167345,-0.06938846439109055 +259668,1298.3400000167346,-0.06938845130978309 +259669,1298.3450000167347,-0.06938843822775673 +259670,1298.3500000167348,-0.06938842514501158 +259671,1298.355000016735,-0.0693884120615478 +259672,1298.360000016735,-0.06938839897736551 +259673,1298.3650000167352,-0.06938838589246486 +259674,1298.3700000167353,-0.069388372806846 +259675,1298.3750000167354,-0.06938835972050904 +259676,1298.3800000167355,-0.06938834663345411 +259677,1298.3850000167356,-0.06938833354568136 +259678,1298.3900000167357,-0.06938832045719093 +259679,1298.3950000167358,-0.06938830736798295 +259680,1298.400000016736,-0.06938829427805754 +259681,1298.405000016736,-0.06938828118741486 +259682,1298.4100000167361,-0.06938826809605504 +259683,1298.4150000167363,-0.06938825500397822 +259684,1298.4200000167364,-0.0693882419111845 +259685,1298.4250000167365,-0.06938822881767408 +259686,1298.4300000167366,-0.06938821572344703 +259687,1298.4350000167367,-0.06938820262850352 +259688,1298.4400000167368,-0.06938818953284369 +259689,1298.445000016737,-0.06938817643646765 +259690,1298.450000016737,-0.06938816333937556 +259691,1298.4550000167371,-0.06938815024156753 +259692,1298.4600000167372,-0.0693881371430437 +259693,1298.4650000167373,-0.06938812404380425 +259694,1298.4700000167375,-0.06938811094384924 +259695,1298.4750000167376,-0.06938809784317886 +259696,1298.4800000167377,-0.06938808474179323 +259697,1298.4850000167378,-0.06938807163969248 +259698,1298.490000016738,-0.06938805853687673 +259699,1298.495000016738,-0.06938804543334613 +259700,1298.500000016738,-0.06938803232910085 +259701,1298.5050000167382,-0.06938801922414096 +259702,1298.5100000167383,-0.06938800611846664 +259703,1298.5150000167384,-0.069387993012078 +259704,1298.5200000167385,-0.06938797990497518 +259705,1298.5250000167387,-0.06938796679715833 +259706,1298.5300000167388,-0.06938795368862756 +259707,1298.5350000167389,-0.06938794057938302 +259708,1298.540000016739,-0.06938792746942485 +259709,1298.545000016739,-0.06938791435875316 +259710,1298.5500000167392,-0.06938790124736811 +259711,1298.5550000167393,-0.0693878881352698 +259712,1298.5600000167394,-0.0693878750224584 +259713,1298.5650000167395,-0.06938786190893403 +259714,1298.5700000167396,-0.06938784879469682 +259715,1298.5750000167398,-0.06938783567974692 +259716,1298.5800000167399,-0.06938782256408443 +259717,1298.58500001674,-0.06938780944770952 +259718,1298.59000001674,-0.0693877963306223 +259719,1298.5950000167402,-0.0693877832128229 +259720,1298.6000000167403,-0.06938777009431149 +259721,1298.6050000167404,-0.06938775697508817 +259722,1298.6100000167405,-0.06938774385515308 +259723,1298.6150000167406,-0.06938773073450635 +259724,1298.6200000167407,-0.06938771761314812 +259725,1298.6250000167408,-0.0693877044910785 +259726,1298.630000016741,-0.06938769136829767 +259727,1298.635000016741,-0.06938767824480573 +259728,1298.6400000167412,-0.06938766512060282 +259729,1298.6450000167413,-0.06938765199568907 +259730,1298.6500000167414,-0.0693876388700646 +259731,1298.6550000167415,-0.06938762574372957 +259732,1298.6600000167416,-0.06938761261668411 +259733,1298.6650000167417,-0.06938759948892834 +259734,1298.6700000167418,-0.0693875863604624 +259735,1298.675000016742,-0.06938757323128641 +259736,1298.680000016742,-0.06938756010140051 +259737,1298.6850000167422,-0.06938754697080483 +259738,1298.6900000167423,-0.06938753383949953 +259739,1298.6950000167424,-0.0693875207074847 +259740,1298.7000000167425,-0.06938750757476049 +259741,1298.7050000167426,-0.06938749444132705 +259742,1298.7100000167427,-0.06938748130718449 +259743,1298.7150000167428,-0.06938746817233295 +259744,1298.720000016743,-0.06938745503677256 +259745,1298.725000016743,-0.06938744190050343 +259746,1298.7300000167431,-0.06938742876352573 +259747,1298.7350000167432,-0.06938741562583958 +259748,1298.7400000167434,-0.06938740248744511 +259749,1298.7450000167435,-0.06938738934834246 +259750,1298.7500000167436,-0.06938737620853173 +259751,1298.7550000167437,-0.06938736306801309 +259752,1298.7600000167438,-0.06938734992678666 +259753,1298.765000016744,-0.06938733678485255 +259754,1298.770000016744,-0.06938732364221092 +259755,1298.7750000167441,-0.06938731049886188 +259756,1298.7800000167442,-0.06938729735480559 +259757,1298.7850000167443,-0.06938728421004214 +259758,1298.7900000167444,-0.0693872710645717 +259759,1298.7950000167446,-0.06938725791839438 +259760,1298.8000000167447,-0.06938724477151033 +259761,1298.8050000167448,-0.06938723162391966 +259762,1298.8100000167449,-0.0693872184756225 +259763,1298.815000016745,-0.06938720532661902 +259764,1298.820000016745,-0.0693871921769093 +259765,1298.8250000167452,-0.0693871790264935 +259766,1298.8300000167453,-0.06938716587537173 +259767,1298.8350000167454,-0.06938715272354415 +259768,1298.8400000167455,-0.06938713957101088 +259769,1298.8450000167456,-0.06938712641777203 +259770,1298.8500000167458,-0.06938711326382777 +259771,1298.8550000167459,-0.06938710010917817 +259772,1298.860000016746,-0.06938708695382342 +259773,1298.865000016746,-0.06938707379776365 +259774,1298.8700000167462,-0.06938706064099895 +259775,1298.8750000167463,-0.06938704748352947 +259776,1298.8800000167464,-0.06938703432535534 +259777,1298.8850000167465,-0.0693870211664767 +259778,1298.8900000167466,-0.06938700800689367 +259779,1298.8950000167467,-0.06938699484660638 +259780,1298.9000000167468,-0.06938698168561495 +259781,1298.905000016747,-0.06938696852391955 +259782,1298.910000016747,-0.06938695536152027 +259783,1298.9150000167472,-0.06938694219841725 +259784,1298.9200000167473,-0.06938692903461062 +259785,1298.9250000167474,-0.06938691587010051 +259786,1298.9300000167475,-0.06938690270488707 +259787,1298.9350000167476,-0.06938688953897039 +259788,1298.9400000167477,-0.06938687637235064 +259789,1298.9450000167478,-0.06938686320502792 +259790,1298.950000016748,-0.06938685003700237 +259791,1298.955000016748,-0.06938683686827413 +259792,1298.9600000167482,-0.06938682369884333 +259793,1298.9650000167483,-0.06938681052871008 +259794,1298.9700000167484,-0.06938679735787454 +259795,1298.9750000167485,-0.0693867841863368 +259796,1298.9800000167486,-0.06938677101409702 +259797,1298.9850000167487,-0.0693867578411553 +259798,1298.9900000167488,-0.0693867446675118 +259799,1298.995000016749,-0.06938673149316663 +259800,1299.000000016749,-0.06938671831811992 +259801,1299.0050000167491,-0.06938670514237182 +259802,1299.0100000167492,-0.06938669196592244 +259803,1299.0150000167494,-0.06938667878877192 +259804,1299.0200000167495,-0.06938666561092037 +259805,1299.0250000167496,-0.06938665243236794 +259806,1299.0300000167497,-0.06938663925311475 +259807,1299.0350000167498,-0.06938662607316093 +259808,1299.04000001675,-0.06938661289250661 +259809,1299.04500001675,-0.06938659971115192 +259810,1299.0500000167501,-0.06938658652909697 +259811,1299.0550000167502,-0.06938657334634192 +259812,1299.0600000167503,-0.06938656016288688 +259813,1299.0650000167504,-0.06938654697873198 +259814,1299.0700000167506,-0.06938653379387734 +259815,1299.0750000167507,-0.0693865206083231 +259816,1299.0800000167508,-0.0693865074220694 +259817,1299.0850000167509,-0.06938649423511634 +259818,1299.090000016751,-0.06938648104746406 +259819,1299.095000016751,-0.0693864678591127 +259820,1299.1000000167512,-0.06938645467006238 +259821,1299.1050000167513,-0.06938644148031323 +259822,1299.1100000167514,-0.06938642828986537 +259823,1299.1150000167515,-0.06938641509871894 +259824,1299.1200000167516,-0.06938640190687408 +259825,1299.1250000167518,-0.06938638871433088 +259826,1299.1300000167519,-0.06938637552108949 +259827,1299.135000016752,-0.06938636232715004 +259828,1299.140000016752,-0.06938634913251265 +259829,1299.1450000167522,-0.06938633593717745 +259830,1299.1500000167523,-0.06938632274114456 +259831,1299.1550000167524,-0.06938630954441413 +259832,1299.1600000167525,-0.06938629634698627 +259833,1299.1650000167526,-0.06938628314886111 +259834,1299.1700000167527,-0.06938626995003878 +259835,1299.1750000167528,-0.06938625675051939 +259836,1299.180000016753,-0.0693862435503031 +259837,1299.185000016753,-0.06938623034939001 +259838,1299.1900000167532,-0.06938621714778026 +259839,1299.1950000167533,-0.06938620394547398 +259840,1299.2000000167534,-0.0693861907424713 +259841,1299.2050000167535,-0.06938617753877231 +259842,1299.2100000167536,-0.0693861643343772 +259843,1299.2150000167537,-0.06938615112928605 +259844,1299.2200000167538,-0.069386137923499 +259845,1299.225000016754,-0.06938612471701618 +259846,1299.230000016754,-0.0693861115098377 +259847,1299.2350000167542,-0.06938609830196371 +259848,1299.2400000167543,-0.06938608509339433 +259849,1299.2450000167544,-0.06938607188412968 +259850,1299.2500000167545,-0.06938605867416989 +259851,1299.2550000167546,-0.0693860454635151 +259852,1299.2600000167547,-0.06938603225216541 +259853,1299.2650000167548,-0.06938601904012097 +259854,1299.270000016755,-0.0693860058273819 +259855,1299.275000016755,-0.06938599261394832 +259856,1299.2800000167551,-0.06938597939982036 +259857,1299.2850000167552,-0.06938596618499814 +259858,1299.2900000167554,-0.06938595296948179 +259859,1299.2950000167555,-0.06938593975327144 +259860,1299.3000000167556,-0.06938592653636723 +259861,1299.3050000167557,-0.06938591331876925 +259862,1299.3100000167558,-0.06938590010047765 +259863,1299.315000016756,-0.06938588688149257 +259864,1299.320000016756,-0.0693858736618141 +259865,1299.3250000167561,-0.06938586044144239 +259866,1299.3300000167562,-0.06938584722037756 +259867,1299.3350000167563,-0.06938583399861974 +259868,1299.3400000167564,-0.06938582077616905 +259869,1299.3450000167566,-0.06938580755302562 +259870,1299.3500000167567,-0.06938579432918957 +259871,1299.3550000167568,-0.06938578110466102 +259872,1299.3600000167569,-0.0693857678794401 +259873,1299.365000016757,-0.06938575465352696 +259874,1299.370000016757,-0.0693857414269217 +259875,1299.3750000167572,-0.06938572819962445 +259876,1299.3800000167573,-0.06938571497163534 +259877,1299.3850000167574,-0.06938570174295448 +259878,1299.3900000167575,-0.06938568851358201 +259879,1299.3950000167576,-0.06938567528351805 +259880,1299.4000000167578,-0.06938566205276274 +259881,1299.4050000167579,-0.06938564882131618 +259882,1299.410000016758,-0.06938563558917851 +259883,1299.415000016758,-0.06938562235634985 +259884,1299.4200000167582,-0.06938560912283032 +259885,1299.4250000167583,-0.06938559588862006 +259886,1299.4300000167584,-0.06938558265371919 +259887,1299.4350000167585,-0.06938556941812782 +259888,1299.4400000167586,-0.06938555618184608 +259889,1299.4450000167587,-0.06938554294487412 +259890,1299.4500000167588,-0.06938552970721204 +259891,1299.455000016759,-0.06938551646885997 +259892,1299.460000016759,-0.06938550322981804 +259893,1299.4650000167592,-0.06938548999008637 +259894,1299.4700000167593,-0.06938547674966508 +259895,1299.4750000167594,-0.06938546350855428 +259896,1299.4800000167595,-0.06938545026675412 +259897,1299.4850000167596,-0.06938543702426472 +259898,1299.4900000167597,-0.06938542378108621 +259899,1299.4950000167598,-0.0693854105372187 +259900,1299.50000001676,-0.06938539729266231 +259901,1299.50500001676,-0.06938538404741718 +259902,1299.5100000167602,-0.06938537080148342 +259903,1299.5150000167603,-0.06938535755486117 +259904,1299.5200000167604,-0.06938534430755053 +259905,1299.5250000167605,-0.06938533105955165 +259906,1299.5300000167606,-0.06938531781086464 +259907,1299.5350000167607,-0.06938530456148961 +259908,1299.5400000167608,-0.06938529131142673 +259909,1299.545000016761,-0.06938527806067607 +259910,1299.550000016761,-0.0693852648092378 +259911,1299.5550000167611,-0.069385251557112 +259912,1299.5600000167613,-0.06938523830429882 +259913,1299.5650000167614,-0.06938522505079839 +259914,1299.5700000167615,-0.06938521179661081 +259915,1299.5750000167616,-0.06938519854173622 +259916,1299.5800000167617,-0.06938518528617474 +259917,1299.5850000167618,-0.06938517202992649 +259918,1299.590000016762,-0.06938515877299159 +259919,1299.595000016762,-0.06938514551537017 +259920,1299.6000000167621,-0.06938513225706236 +259921,1299.6050000167622,-0.06938511899806825 +259922,1299.6100000167623,-0.069385105738388 +259923,1299.6150000167625,-0.06938509247802173 +259924,1299.6200000167626,-0.06938507921696954 +259925,1299.6250000167627,-0.06938506595523158 +259926,1299.6300000167628,-0.06938505269280795 +259927,1299.635000016763,-0.06938503942969879 +259928,1299.640000016763,-0.0693850261659042 +259929,1299.645000016763,-0.06938501290142432 +259930,1299.6500000167632,-0.06938499963625927 +259931,1299.6550000167633,-0.06938498637040917 +259932,1299.6600000167634,-0.06938497310387415 +259933,1299.6650000167635,-0.06938495983665433 +259934,1299.6700000167637,-0.06938494656874981 +259935,1299.6750000167638,-0.06938493330016075 +259936,1299.6800000167639,-0.06938492003088725 +259937,1299.685000016764,-0.06938490676092945 +259938,1299.690000016764,-0.06938489349028745 +259939,1299.6950000167642,-0.06938488021896139 +259940,1299.7000000167643,-0.06938486694695137 +259941,1299.7050000167644,-0.06938485367425754 +259942,1299.7100000167645,-0.06938484040087999 +259943,1299.7150000167646,-0.06938482712681886 +259944,1299.7200000167647,-0.06938481385207428 +259945,1299.7250000167649,-0.06938480057664635 +259946,1299.730000016765,-0.06938478730053523 +259947,1299.735000016765,-0.069384774023741 +259948,1299.7400000167652,-0.0693847607462638 +259949,1299.7450000167653,-0.06938474746810376 +259950,1299.7500000167654,-0.06938473418926099 +259951,1299.7550000167655,-0.0693847209097356 +259952,1299.7600000167656,-0.06938470762952774 +259953,1299.7650000167657,-0.0693846943486375 +259954,1299.7700000167658,-0.06938468106706505 +259955,1299.775000016766,-0.06938466778481046 +259956,1299.780000016766,-0.06938465450187387 +259957,1299.7850000167662,-0.0693846412182554 +259958,1299.7900000167663,-0.06938462793395517 +259959,1299.7950000167664,-0.06938461464897332 +259960,1299.8000000167665,-0.06938460136330994 +259961,1299.8050000167666,-0.06938458807696517 +259962,1299.8100000167667,-0.06938457478993913 +259963,1299.8150000167668,-0.06938456150223196 +259964,1299.820000016767,-0.06938454821384374 +259965,1299.825000016767,-0.06938453492477463 +259966,1299.8300000167671,-0.06938452163502473 +259967,1299.8350000167673,-0.06938450834459416 +259968,1299.8400000167674,-0.06938449505348304 +259969,1299.8450000167675,-0.06938448176169149 +259970,1299.8500000167676,-0.06938446846921964 +259971,1299.8550000167677,-0.0693844551760676 +259972,1299.8600000167678,-0.06938444188223551 +259973,1299.865000016768,-0.06938442858772347 +259974,1299.870000016768,-0.0693844152925316 +259975,1299.8750000167681,-0.06938440199666003 +259976,1299.8800000167682,-0.06938438870010889 +259977,1299.8850000167683,-0.06938437540287828 +259978,1299.8900000167685,-0.06938436210496833 +259979,1299.8950000167686,-0.06938434880637917 +259980,1299.9000000167687,-0.0693843355071109 +259981,1299.9050000167688,-0.06938432220716366 +259982,1299.910000016769,-0.06938430890653756 +259983,1299.915000016769,-0.06938429560523271 +259984,1299.920000016769,-0.06938428230324925 +259985,1299.9250000167692,-0.06938426900058728 +259986,1299.9300000167693,-0.06938425569724695 +259987,1299.9350000167694,-0.06938424239322834 +259988,1299.9400000167695,-0.06938422908853159 +259989,1299.9450000167697,-0.06938421578315682 +259990,1299.9500000167698,-0.06938420247710415 +259991,1299.9550000167699,-0.06938418917037371 +259992,1299.96000001677,-0.06938417586296561 +259993,1299.96500001677,-0.06938416255487996 +259994,1299.9700000167702,-0.0693841492461169 +259995,1299.9750000167703,-0.06938413593667651 +259996,1299.9800000167704,-0.06938412262655896 +259997,1299.9850000167705,-0.06938410931576434 +259998,1299.9900000167706,-0.06938409600429278 +259999,1299.9950000167707,-0.06938408269214441 +260000,1300.0000000167709,-0.06938406937931932 +260001,1300.005000016771,-0.06938405606581763 +260002,1300.010000016771,-0.06938404275163948 +260003,1300.0150000167712,-0.06938402943678498 +260004,1300.0200000167713,-0.06938401612125426 +260005,1300.0250000167714,-0.06938400280504743 +260006,1300.0300000167715,-0.0693839894881646 +260007,1300.0350000167716,-0.0693839761706059 +260008,1300.0400000167717,-0.06938396285237146 +260009,1300.0450000167718,-0.06938394953346137 +260010,1300.050000016772,-0.06938393621387577 +260011,1300.055000016772,-0.06938392289361478 +260012,1300.0600000167722,-0.06938390957267851 +260013,1300.0650000167723,-0.06938389625106707 +260014,1300.0700000167724,-0.0693838829287806 +260015,1300.0750000167725,-0.0693838696058192 +260016,1300.0800000167726,-0.069383856282183 +260017,1300.0850000167727,-0.06938384295787212 +260018,1300.0900000167728,-0.06938382963288665 +260019,1300.095000016773,-0.06938381630722676 +260020,1300.100000016773,-0.06938380298089253 +260021,1300.1050000167731,-0.06938378965388409 +260022,1300.1100000167733,-0.06938377632620155 +260023,1300.1150000167734,-0.06938376299784503 +260024,1300.1200000167735,-0.06938374966881466 +260025,1300.1250000167736,-0.06938373633911056 +260026,1300.1300000167737,-0.06938372300873283 +260027,1300.1350000167738,-0.0693837096776816 +260028,1300.140000016774,-0.06938369634595698 +260029,1300.145000016774,-0.0693836830135591 +260030,1300.1500000167741,-0.06938366968048805 +260031,1300.1550000167742,-0.069383656346744 +260032,1300.1600000167743,-0.069383643012327 +260033,1300.1650000167745,-0.06938362967723723 +260034,1300.1700000167746,-0.06938361634147476 +260035,1300.1750000167747,-0.06938360300503975 +260036,1300.1800000167748,-0.06938358966793229 +260037,1300.185000016775,-0.06938357633015249 +260038,1300.190000016775,-0.0693835629917005 +260039,1300.195000016775,-0.06938354965257641 +260040,1300.2000000167752,-0.06938353631278034 +260041,1300.2050000167753,-0.06938352297231243 +260042,1300.2100000167754,-0.06938350963117276 +260043,1300.2150000167755,-0.06938349628936148 +260044,1300.2200000167757,-0.06938348294687868 +260045,1300.2250000167758,-0.06938346960372452 +260046,1300.2300000167759,-0.06938345625989908 +260047,1300.235000016776,-0.06938344291540248 +260048,1300.240000016776,-0.06938342957023486 +260049,1300.2450000167762,-0.0693834162243963 +260050,1300.2500000167763,-0.06938340287788695 +260051,1300.2550000167764,-0.06938338953070691 +260052,1300.2600000167765,-0.0693833761828563 +260053,1300.2650000167766,-0.06938336283433523 +260054,1300.2700000167767,-0.06938334948514384 +260055,1300.2750000167769,-0.06938333613528222 +260056,1300.280000016777,-0.06938332278475051 +260057,1300.285000016777,-0.0693833094335488 +260058,1300.2900000167772,-0.06938329608167723 +260059,1300.2950000167773,-0.0693832827291359 +260060,1300.3000000167774,-0.06938326937592494 +260061,1300.3050000167775,-0.06938325602204447 +260062,1300.3100000167776,-0.06938324266749459 +260063,1300.3150000167777,-0.06938322931227542 +260064,1300.3200000167778,-0.06938321595638708 +260065,1300.325000016778,-0.06938320259982968 +260066,1300.330000016778,-0.06938318924260334 +260067,1300.3350000167782,-0.06938317588470819 +260068,1300.3400000167783,-0.06938316252614432 +260069,1300.3450000167784,-0.06938314916691186 +260070,1300.3500000167785,-0.06938313580701094 +260071,1300.3550000167786,-0.06938312244644167 +260072,1300.3600000167787,-0.06938310908520415 +260073,1300.3650000167788,-0.06938309572329848 +260074,1300.370000016779,-0.06938308236072481 +260075,1300.375000016779,-0.06938306899748325 +260076,1300.3800000167791,-0.06938305563357391 +260077,1300.3850000167793,-0.06938304226899691 +260078,1300.3900000167794,-0.06938302890375238 +260079,1300.3950000167795,-0.06938301553784039 +260080,1300.4000000167796,-0.0693830021712611 +260081,1300.4050000167797,-0.0693829888040146 +260082,1300.4100000167798,-0.06938297543610102 +260083,1300.41500001678,-0.06938296206752047 +260084,1300.42000001678,-0.06938294869827305 +260085,1300.4250000167801,-0.0693829353283589 +260086,1300.4300000167802,-0.06938292195777812 +260087,1300.4350000167804,-0.06938290858653083 +260088,1300.4400000167805,-0.06938289521461716 +260089,1300.4450000167806,-0.0693828818420372 +260090,1300.4500000167807,-0.06938286846879108 +260091,1300.4550000167808,-0.0693828550948789 +260092,1300.460000016781,-0.0693828417203008 +260093,1300.465000016781,-0.06938282834505688 +260094,1300.4700000167811,-0.06938281496914725 +260095,1300.4750000167812,-0.06938280159257203 +260096,1300.4800000167813,-0.06938278821533134 +260097,1300.4850000167814,-0.06938277483742528 +260098,1300.4900000167816,-0.06938276145885398 +260099,1300.4950000167817,-0.06938274807961754 +260100,1300.5000000167818,-0.06938273469971609 +260101,1300.5050000167819,-0.06938272131914976 +260102,1300.510000016782,-0.06938270793791862 +260103,1300.515000016782,-0.06938269455602282 +260104,1300.5200000167822,-0.06938268117346244 +260105,1300.5250000167823,-0.06938266779023763 +260106,1300.5300000167824,-0.0693826544063485 +260107,1300.5350000167825,-0.06938264102179514 +260108,1300.5400000167826,-0.06938262763657768 +260109,1300.5450000167828,-0.06938261425069625 +260110,1300.5500000167829,-0.06938260086415095 +260111,1300.555000016783,-0.06938258747694188 +260112,1300.560000016783,-0.06938257408906917 +260113,1300.5650000167832,-0.06938256070053292 +260114,1300.5700000167833,-0.06938254731133325 +260115,1300.5750000167834,-0.0693825339214703 +260116,1300.5800000167835,-0.06938252053094415 +260117,1300.5850000167836,-0.06938250713975493 +260118,1300.5900000167837,-0.06938249374790273 +260119,1300.5950000167838,-0.0693824803553877 +260120,1300.600000016784,-0.06938246696220994 +260121,1300.605000016784,-0.06938245356836954 +260122,1300.6100000167842,-0.06938244017386665 +260123,1300.6150000167843,-0.06938242677870136 +260124,1300.6200000167844,-0.06938241338287379 +260125,1300.6250000167845,-0.06938239998638406 +260126,1300.6300000167846,-0.06938238658923226 +260127,1300.6350000167847,-0.06938237319141856 +260128,1300.6400000167848,-0.06938235979294301 +260129,1300.645000016785,-0.06938234639380575 +260130,1300.650000016785,-0.0693823329940069 +260131,1300.6550000167852,-0.06938231959354654 +260132,1300.6600000167853,-0.06938230619242482 +260133,1300.6650000167854,-0.06938229279064184 +260134,1300.6700000167855,-0.06938227938819772 +260135,1300.6750000167856,-0.06938226598509256 +260136,1300.6800000167857,-0.06938225258132648 +260137,1300.6850000167858,-0.0693822391768996 +260138,1300.690000016786,-0.06938222577181202 +260139,1300.695000016786,-0.06938221236606386 +260140,1300.7000000167861,-0.06938219895965522 +260141,1300.7050000167862,-0.06938218555258624 +260142,1300.7100000167864,-0.06938217214485701 +260143,1300.7150000167865,-0.06938215873646765 +260144,1300.7200000167866,-0.06938214532741828 +260145,1300.7250000167867,-0.06938213191770899 +260146,1300.7300000167868,-0.06938211850733991 +260147,1300.735000016787,-0.06938210509631115 +260148,1300.740000016787,-0.06938209168462282 +260149,1300.7450000167871,-0.06938207827227504 +260150,1300.7500000167872,-0.06938206485926791 +260151,1300.7550000167873,-0.06938205144560157 +260152,1300.7600000167874,-0.06938203803127609 +260153,1300.7650000167876,-0.0693820246162916 +260154,1300.7700000167877,-0.06938201120064823 +260155,1300.7750000167878,-0.06938199778434606 +260156,1300.7800000167879,-0.06938198436738523 +260157,1300.785000016788,-0.06938197094976585 +260158,1300.790000016788,-0.06938195753148801 +260159,1300.7950000167882,-0.06938194411255186 +260160,1300.8000000167883,-0.06938193069295745 +260161,1300.8050000167884,-0.06938191727270496 +260162,1300.8100000167885,-0.06938190385179445 +260163,1300.8150000167886,-0.06938189043022606 +260164,1300.8200000167888,-0.0693818770079999 +260165,1300.8250000167889,-0.06938186358511608 +260166,1300.830000016789,-0.0693818501615747 +260167,1300.835000016789,-0.06938183673737588 +260168,1300.8400000167892,-0.06938182331251973 +260169,1300.8450000167893,-0.06938180988700637 +260170,1300.8500000167894,-0.0693817964608359 +260171,1300.8550000167895,-0.06938178303400844 +260172,1300.8600000167896,-0.06938176960652409 +260173,1300.8650000167897,-0.06938175617838298 +260174,1300.8700000167898,-0.06938174274958518 +260175,1300.87500001679,-0.06938172932013086 +260176,1300.88000001679,-0.0693817158900201 +260177,1300.8850000167902,-0.069381702459253 +260178,1300.8900000167903,-0.06938168902782968 +260179,1300.8950000167904,-0.06938167559575027 +260180,1300.9000000167905,-0.06938166216301485 +260181,1300.9050000167906,-0.06938164872962356 +260182,1300.9100000167907,-0.0693816352955765 +260183,1300.9150000167908,-0.06938162186087378 +260184,1300.920000016791,-0.06938160842551551 +260185,1300.925000016791,-0.06938159498950179 +260186,1300.9300000167912,-0.06938158155283275 +260187,1300.9350000167913,-0.06938156811550848 +260188,1300.9400000167914,-0.06938155467752913 +260189,1300.9450000167915,-0.06938154123889476 +260190,1300.9500000167916,-0.0693815277996055 +260191,1300.9550000167917,-0.06938151435966149 +260192,1300.9600000167918,-0.06938150091906278 +260193,1300.965000016792,-0.06938148747780955 +260194,1300.970000016792,-0.06938147403590186 +260195,1300.9750000167921,-0.06938146059333984 +260196,1300.9800000167922,-0.06938144715012359 +260197,1300.9850000167924,-0.06938143370625323 +260198,1300.9900000167925,-0.06938142026172887 +260199,1300.9950000167926,-0.06938140681655063 +260200,1301.0000000167927,-0.06938139337071858 +260201,1301.0050000167928,-0.06938137992423288 +260202,1301.010000016793,-0.06938136647709361 +260203,1301.015000016793,-0.06938135302930089 +260204,1301.0200000167931,-0.06938133958085481 +260205,1301.0250000167932,-0.06938132613175552 +260206,1301.0300000167933,-0.06938131268200308 +260207,1301.0350000167934,-0.06938129923159765 +260208,1301.0400000167936,-0.06938128578053931 +260209,1301.0450000167937,-0.0693812723288282 +260210,1301.0500000167938,-0.06938125887646437 +260211,1301.0550000167939,-0.06938124542344798 +260212,1301.060000016794,-0.06938123196977912 +260213,1301.065000016794,-0.06938121851545792 +260214,1301.0700000167942,-0.06938120506048447 +260215,1301.0750000167943,-0.06938119160485887 +260216,1301.0800000167944,-0.06938117814858126 +260217,1301.0850000167945,-0.06938116469165172 +260218,1301.0900000167946,-0.06938115123407039 +260219,1301.0950000167948,-0.06938113777583735 +260220,1301.1000000167949,-0.06938112431695272 +260221,1301.105000016795,-0.06938111085741662 +260222,1301.110000016795,-0.06938109739722914 +260223,1301.1150000167952,-0.06938108393639039 +260224,1301.1200000167953,-0.06938107047490051 +260225,1301.1250000167954,-0.06938105701275958 +260226,1301.1300000167955,-0.06938104354996771 +260227,1301.1350000167956,-0.06938103008652502 +260228,1301.1400000167957,-0.06938101662243161 +260229,1301.1450000167958,-0.06938100315768758 +260230,1301.150000016796,-0.06938098969229307 +260231,1301.155000016796,-0.06938097622624817 +260232,1301.1600000167962,-0.069380962759553 +260233,1301.1650000167963,-0.06938094929220763 +260234,1301.1700000167964,-0.0693809358242122 +260235,1301.1750000167965,-0.06938092235556682 +260236,1301.1800000167966,-0.0693809088862716 +260237,1301.1850000167967,-0.06938089541632664 +260238,1301.1900000167968,-0.06938088194573204 +260239,1301.195000016797,-0.06938086847448793 +260240,1301.200000016797,-0.0693808550025944 +260241,1301.2050000167972,-0.06938084153005157 +260242,1301.2100000167973,-0.06938082805685955 +260243,1301.2150000167974,-0.06938081458301844 +260244,1301.2200000167975,-0.06938080110852834 +260245,1301.2250000167976,-0.0693807876333894 +260246,1301.2300000167977,-0.06938077415760166 +260247,1301.2350000167978,-0.06938076068116529 +260248,1301.240000016798,-0.06938074720408036 +260249,1301.245000016798,-0.069380733726347 +260250,1301.2500000167981,-0.0693807202479653 +260251,1301.2550000167982,-0.06938070676893537 +260252,1301.2600000167984,-0.06938069328925733 +260253,1301.2650000167985,-0.0693806798089313 +260254,1301.2700000167986,-0.06938066632795735 +260255,1301.2750000167987,-0.06938065284633561 +260256,1301.2800000167988,-0.06938063936406619 +260257,1301.285000016799,-0.06938062588114918 +260258,1301.290000016799,-0.06938061239758472 +260259,1301.2950000167991,-0.0693805989133729 +260260,1301.3000000167992,-0.06938058542851383 +260261,1301.3050000167993,-0.0693805719430076 +260262,1301.3100000167994,-0.06938055845685434 +260263,1301.3150000167996,-0.06938054497005415 +260264,1301.3200000167997,-0.06938053148260713 +260265,1301.3250000167998,-0.0693805179945134 +260266,1301.3300000167999,-0.06938050450577306 +260267,1301.3350000168,-0.06938049101638621 +260268,1301.3400000168,-0.06938047752635297 +260269,1301.3450000168002,-0.06938046403567345 +260270,1301.3500000168003,-0.06938045054434776 +260271,1301.3550000168004,-0.06938043705237597 +260272,1301.3600000168005,-0.06938042355975822 +260273,1301.3650000168006,-0.06938041006649462 +260274,1301.3700000168008,-0.06938039657258527 +260275,1301.3750000168009,-0.06938038307803027 +260276,1301.380000016801,-0.06938036958282973 +260277,1301.385000016801,-0.06938035608698376 +260278,1301.3900000168012,-0.06938034259049246 +260279,1301.3950000168013,-0.06938032909335594 +260280,1301.4000000168014,-0.06938031559557432 +260281,1301.4050000168015,-0.0693803020971477 +260282,1301.4100000168016,-0.06938028859807617 +260283,1301.4150000168017,-0.06938027509835985 +260284,1301.4200000168019,-0.06938026159799884 +260285,1301.425000016802,-0.06938024809699325 +260286,1301.430000016802,-0.0693802345953432 +260287,1301.4350000168022,-0.06938022109304878 +260288,1301.4400000168023,-0.06938020759011009 +260289,1301.4450000168024,-0.06938019408652725 +260290,1301.4500000168025,-0.06938018058230037 +260291,1301.4550000168026,-0.06938016707742956 +260292,1301.4600000168027,-0.06938015357191489 +260293,1301.4650000168028,-0.0693801400657565 +260294,1301.470000016803,-0.06938012655895451 +260295,1301.475000016803,-0.06938011305150898 +260296,1301.4800000168032,-0.06938009954342006 +260297,1301.4850000168033,-0.06938008603468782 +260298,1301.4900000168034,-0.06938007252531239 +260299,1301.4950000168035,-0.06938005901529387 +260300,1301.5000000168036,-0.06938004550463236 +260301,1301.5050000168037,-0.06938003199332797 +260302,1301.5100000168038,-0.06938001848138081 +260303,1301.515000016804,-0.06938000496879099 +260304,1301.520000016804,-0.06937999145555858 +260305,1301.5250000168041,-0.06937997794168374 +260306,1301.5300000168043,-0.06937996442716653 +260307,1301.5350000168044,-0.06937995091200708 +260308,1301.5400000168045,-0.06937993739620547 +260309,1301.5450000168046,-0.06937992387976184 +260310,1301.5500000168047,-0.06937991036267628 +260311,1301.5550000168048,-0.0693798968449489 +260312,1301.560000016805,-0.06937988332657981 +260313,1301.565000016805,-0.06937986980756908 +260314,1301.5700000168051,-0.06937985628791685 +260315,1301.5750000168052,-0.06937984276762323 +260316,1301.5800000168053,-0.0693798292466883 +260317,1301.5850000168055,-0.06937981572511218 +260318,1301.5900000168056,-0.06937980220289498 +260319,1301.5950000168057,-0.0693797886800368 +260320,1301.6000000168058,-0.06937977515653773 +260321,1301.605000016806,-0.06937976163239788 +260322,1301.610000016806,-0.06937974810761739 +260323,1301.615000016806,-0.06937973458219632 +260324,1301.6200000168062,-0.0693797210561348 +260325,1301.6250000168063,-0.06937970752943293 +260326,1301.6300000168064,-0.06937969400209079 +260327,1301.6350000168065,-0.06937968047410852 +260328,1301.6400000168067,-0.06937966694548621 +260329,1301.6450000168068,-0.06937965341622396 +260330,1301.6500000168069,-0.06937963988632188 +260331,1301.655000016807,-0.06937962635578009 +260332,1301.660000016807,-0.06937961282459867 +260333,1301.6650000168072,-0.06937959929277773 +260334,1301.6700000168073,-0.06937958576031739 +260335,1301.6750000168074,-0.06937957222721772 +260336,1301.6800000168075,-0.06937955869347887 +260337,1301.6850000168076,-0.06937954515910091 +260338,1301.6900000168077,-0.06937953162408397 +260339,1301.6950000168079,-0.06937951808842813 +260340,1301.700000016808,-0.0693795045521335 +260341,1301.705000016808,-0.06937949101520019 +260342,1301.7100000168082,-0.0693794774776283 +260343,1301.7150000168083,-0.06937946393941795 +260344,1301.7200000168084,-0.06937945040056921 +260345,1301.7250000168085,-0.06937943686108222 +260346,1301.7300000168086,-0.06937942332095708 +260347,1301.7350000168087,-0.06937940978019387 +260348,1301.7400000168088,-0.0693793962387927 +260349,1301.745000016809,-0.0693793826967537 +260350,1301.750000016809,-0.06937936915407693 +260351,1301.7550000168092,-0.06937935561076251 +260352,1301.7600000168093,-0.06937934206681058 +260353,1301.7650000168094,-0.0693793285222212 +260354,1301.7700000168095,-0.0693793149769945 +260355,1301.7750000168096,-0.06937930143113055 +260356,1301.7800000168097,-0.06937928788462949 +260357,1301.7850000168098,-0.06937927433749141 +260358,1301.79000001681,-0.06937926078971642 +260359,1301.79500001681,-0.06937924724130459 +260360,1301.8000000168101,-0.06937923369225608 +260361,1301.8050000168103,-0.06937922014257096 +260362,1301.8100000168104,-0.06937920659224933 +260363,1301.8150000168105,-0.06937919304129131 +260364,1301.8200000168106,-0.06937917948969696 +260365,1301.8250000168107,-0.06937916593746644 +260366,1301.8300000168108,-0.06937915238459982 +260367,1301.835000016811,-0.06937913883109723 +260368,1301.840000016811,-0.06937912527695873 +260369,1301.8450000168111,-0.06937911172218446 +260370,1301.8500000168112,-0.06937909816677451 +260371,1301.8550000168113,-0.069379084610729 +260372,1301.8600000168115,-0.069379071054048 +260373,1301.8650000168116,-0.06937905749673164 +260374,1301.8700000168117,-0.06937904393878 +260375,1301.8750000168118,-0.0693790303801932 +260376,1301.880000016812,-0.06937901682097135 +260377,1301.885000016812,-0.06937900326111454 +260378,1301.890000016812,-0.06937898970062285 +260379,1301.8950000168122,-0.06937897613949644 +260380,1301.9000000168123,-0.06937896257773535 +260381,1301.9050000168124,-0.06937894901533972 +260382,1301.9100000168125,-0.06937893545230965 +260383,1301.9150000168127,-0.06937892188864524 +260384,1301.9200000168128,-0.06937890832434658 +260385,1301.9250000168129,-0.06937889475941378 +260386,1301.930000016813,-0.06937888119384696 +260387,1301.935000016813,-0.06937886762764618 +260388,1301.9400000168132,-0.0693788540608116 +260389,1301.9450000168133,-0.06937884049334327 +260390,1301.9500000168134,-0.0693788269252413 +260391,1301.9550000168135,-0.06937881335650582 +260392,1301.9600000168136,-0.06937879978713692 +260393,1301.9650000168137,-0.0693787862171347 +260394,1301.9700000168139,-0.06937877264649925 +260395,1301.975000016814,-0.06937875907523068 +260396,1301.980000016814,-0.0693787455033291 +260397,1301.9850000168142,-0.06937873193079461 +260398,1301.9900000168143,-0.0693787183576273 +260399,1301.9950000168144,-0.06937870478382728 +260400,1302.0000000168145,-0.06937869120939465 +260401,1302.0050000168146,-0.06937867763432952 +260402,1302.0100000168147,-0.06937866405863198 +260403,1302.0150000168148,-0.06937865048230216 +260404,1302.020000016815,-0.06937863690534012 +260405,1302.025000016815,-0.06937862332774597 +260406,1302.0300000168152,-0.06937860974951984 +260407,1302.0350000168153,-0.0693785961706618 +260408,1302.0400000168154,-0.06937858259117198 +260409,1302.0450000168155,-0.06937856901105044 +260410,1302.0500000168156,-0.06937855543029732 +260411,1302.0550000168157,-0.06937854184891272 +260412,1302.0600000168158,-0.06937852826689672 +260413,1302.065000016816,-0.06937851468424944 +260414,1302.070000016816,-0.06937850110097096 +260415,1302.0750000168161,-0.0693784875170614 +260416,1302.0800000168163,-0.06937847393252085 +260417,1302.0850000168164,-0.06937846034734942 +260418,1302.0900000168165,-0.06937844676154721 +260419,1302.0950000168166,-0.06937843317511432 +260420,1302.1000000168167,-0.06937841958805083 +260421,1302.1050000168168,-0.06937840600035687 +260422,1302.110000016817,-0.06937839241203254 +260423,1302.115000016817,-0.06937837882307793 +260424,1302.1200000168171,-0.06937836523349313 +260425,1302.1250000168172,-0.06937835164327825 +260426,1302.1300000168173,-0.0693783380524334 +260427,1302.1350000168175,-0.06937832446095868 +260428,1302.1400000168176,-0.06937831086885418 +260429,1302.1450000168177,-0.06937829727612001 +260430,1302.1500000168178,-0.06937828368275627 +260431,1302.155000016818,-0.06937827008876304 +260432,1302.160000016818,-0.06937825649414046 +260433,1302.165000016818,-0.06937824289888861 +260434,1302.1700000168182,-0.06937822930300756 +260435,1302.1750000168183,-0.06937821570649746 +260436,1302.1800000168184,-0.06937820210935838 +260437,1302.1850000168185,-0.06937818851159044 +260438,1302.1900000168187,-0.06937817491319372 +260439,1302.1950000168188,-0.06937816131416832 +260440,1302.2000000168189,-0.06937814771451437 +260441,1302.205000016819,-0.06937813411423194 +260442,1302.210000016819,-0.06937812051332114 +260443,1302.2150000168192,-0.06937810691178208 +260444,1302.2200000168193,-0.06937809330961482 +260445,1302.2250000168194,-0.06937807970681951 +260446,1302.2300000168195,-0.06937806610339624 +260447,1302.2350000168196,-0.06937805249934509 +260448,1302.2400000168197,-0.06937803889466616 +260449,1302.2450000168199,-0.06937802528935957 +260450,1302.25000001682,-0.06937801168342542 +260451,1302.25500001682,-0.06937799807686378 +260452,1302.2600000168202,-0.06937798446967477 +260453,1302.2650000168203,-0.0693779708618585 +260454,1302.2700000168204,-0.06937795725341504 +260455,1302.2750000168205,-0.06937794364434453 +260456,1302.2800000168206,-0.06937793003464704 +260457,1302.2850000168207,-0.06937791642432267 +260458,1302.2900000168208,-0.06937790281337154 +260459,1302.295000016821,-0.06937788920179372 +260460,1302.300000016821,-0.06937787558958934 +260461,1302.3050000168212,-0.06937786197675848 +260462,1302.3100000168213,-0.06937784836330124 +260463,1302.3150000168214,-0.06937783474921773 +260464,1302.3200000168215,-0.06937782113450802 +260465,1302.3250000168216,-0.06937780751917225 +260466,1302.3300000168217,-0.0693777939032105 +260467,1302.3350000168218,-0.06937778028662286 +260468,1302.340000016822,-0.06937776666940945 +260469,1302.345000016822,-0.06937775305157037 +260470,1302.3500000168222,-0.06937773943310568 +260471,1302.3550000168223,-0.06937772581401552 +260472,1302.3600000168224,-0.06937771219429997 +260473,1302.3650000168225,-0.06937769857395913 +260474,1302.3700000168226,-0.06937768495299312 +260475,1302.3750000168227,-0.06937767133140202 +260476,1302.3800000168228,-0.06937765770918591 +260477,1302.385000016823,-0.06937764408634492 +260478,1302.390000016823,-0.06937763046287915 +260479,1302.3950000168231,-0.06937761683878867 +260480,1302.4000000168232,-0.0693776032140736 +260481,1302.4050000168234,-0.06937758958873402 +260482,1302.4100000168235,-0.06937757596277006 +260483,1302.4150000168236,-0.06937756233618178 +260484,1302.4200000168237,-0.06937754870896931 +260485,1302.4250000168238,-0.06937753508113274 +260486,1302.430000016824,-0.06937752145267218 +260487,1302.435000016824,-0.06937750782358769 +260488,1302.4400000168241,-0.0693774941938794 +260489,1302.4450000168242,-0.06937748056354741 +260490,1302.4500000168243,-0.06937746693259181 +260491,1302.4550000168244,-0.06937745330101268 +260492,1302.4600000168246,-0.06937743966881015 +260493,1302.4650000168247,-0.06937742603598429 +260494,1302.4700000168248,-0.06937741240253521 +260495,1302.4750000168249,-0.06937739876846302 +260496,1302.480000016825,-0.0693773851337678 +260497,1302.485000016825,-0.06937737149844966 +260498,1302.4900000168252,-0.0693773578625087 +260499,1302.4950000168253,-0.069377344225945 +260500,1302.5000000168254,-0.06937733058875868 +260501,1302.5050000168255,-0.06937731695094983 +260502,1302.5100000168256,-0.06937730331251853 +260503,1302.5150000168258,-0.06937728967346489 +260504,1302.5200000168259,-0.06937727603378901 +260505,1302.525000016826,-0.06937726239349101 +260506,1302.530000016826,-0.06937724875257095 +260507,1302.5350000168262,-0.06937723511102895 +260508,1302.5400000168263,-0.06937722146886509 +260509,1302.5450000168264,-0.06937720782607948 +260510,1302.5500000168265,-0.06937719418267221 +260511,1302.5550000168266,-0.06937718053864339 +260512,1302.5600000168267,-0.0693771668939931 +260513,1302.5650000168268,-0.06937715324872147 +260514,1302.570000016827,-0.06937713960282857 +260515,1302.575000016827,-0.06937712595631448 +260516,1302.5800000168272,-0.06937711230917934 +260517,1302.5850000168273,-0.06937709866142322 +260518,1302.5900000168274,-0.06937708501304622 +260519,1302.5950000168275,-0.06937707136404844 +260520,1302.6000000168276,-0.06937705771443 +260521,1302.6050000168277,-0.06937704406419096 +260522,1302.6100000168278,-0.06937703041333143 +260523,1302.615000016828,-0.06937701676185151 +260524,1302.620000016828,-0.06937700310975128 +260525,1302.6250000168282,-0.06937698945703087 +260526,1302.6300000168283,-0.06937697580369036 +260527,1302.6350000168284,-0.06937696214972984 +260528,1302.6400000168285,-0.0693769484951494 +260529,1302.6450000168286,-0.06937693483994917 +260530,1302.6500000168287,-0.06937692118412923 +260531,1302.6550000168288,-0.06937690752768967 +260532,1302.660000016829,-0.06937689387063058 +260533,1302.665000016829,-0.06937688021295207 +260534,1302.6700000168291,-0.06937686655465425 +260535,1302.6750000168292,-0.06937685289573717 +260536,1302.6800000168294,-0.06937683923620099 +260537,1302.6850000168295,-0.06937682557604574 +260538,1302.6900000168296,-0.06937681191527156 +260539,1302.6950000168297,-0.06937679825387853 +260540,1302.7000000168298,-0.06937678459186676 +260541,1302.70500001683,-0.06937677092923634 +260542,1302.71000001683,-0.06937675726598737 +260543,1302.7150000168301,-0.06937674360211993 +260544,1302.7200000168302,-0.06937672993763412 +260545,1302.7250000168303,-0.06937671627253005 +260546,1302.7300000168304,-0.06937670260680781 +260547,1302.7350000168306,-0.06937668894046749 +260548,1302.7400000168307,-0.0693766752735092 +260549,1302.7450000168308,-0.069376661605933 +260550,1302.7500000168309,-0.06937664793773904 +260551,1302.755000016831,-0.06937663426892737 +260552,1302.760000016831,-0.06937662059949813 +260553,1302.7650000168312,-0.06937660692945137 +260554,1302.7700000168313,-0.06937659325878721 +260555,1302.7750000168314,-0.06937657958750575 +260556,1302.7800000168315,-0.06937656591560708 +260557,1302.7850000168316,-0.06937655224309128 +260558,1302.7900000168318,-0.06937653856995847 +260559,1302.7950000168319,-0.06937652489620873 +260560,1302.800000016832,-0.06937651122184216 +260561,1302.805000016832,-0.06937649754685885 +260562,1302.8100000168322,-0.0693764838712589 +260563,1302.8150000168323,-0.06937647019504242 +260564,1302.8200000168324,-0.06937645651820948 +260565,1302.8250000168325,-0.0693764428407602 +260566,1302.8300000168326,-0.06937642916269465 +260567,1302.8350000168327,-0.06937641548401294 +260568,1302.8400000168328,-0.06937640180471516 +260569,1302.845000016833,-0.06937638812480142 +260570,1302.850000016833,-0.06937637444427179 +260571,1302.8550000168332,-0.0693763607631264 +260572,1302.8600000168333,-0.0693763470813653 +260573,1302.8650000168334,-0.06937633339898862 +260574,1302.8700000168335,-0.06937631971599645 +260575,1302.8750000168336,-0.06937630603238887 +260576,1302.8800000168337,-0.06937629234816599 +260577,1302.8850000168338,-0.06937627866332789 +260578,1302.890000016834,-0.06937626497787469 +260579,1302.895000016834,-0.06937625129180645 +260580,1302.9000000168342,-0.06937623760512329 +260581,1302.9050000168343,-0.06937622391782532 +260582,1302.9100000168344,-0.06937621022991258 +260583,1302.9150000168345,-0.06937619654138523 +260584,1302.9200000168346,-0.06937618285224333 +260585,1302.9250000168347,-0.06937616916248694 +260586,1302.9300000168348,-0.06937615547211623 +260587,1302.935000016835,-0.06937614178113125 +260588,1302.940000016835,-0.06937612808953209 +260589,1302.9450000168351,-0.06937611439731886 +260590,1302.9500000168352,-0.06937610070449166 +260591,1302.9550000168354,-0.06937608701105057 +260592,1302.9600000168355,-0.06937607331699568 +260593,1302.9650000168356,-0.0693760596223271 +260594,1302.9700000168357,-0.0693760459270449 +260595,1302.9750000168358,-0.0693760322311492 +260596,1302.980000016836,-0.06937601853464008 +260597,1302.985000016836,-0.06937600483751766 +260598,1302.9900000168361,-0.069375991139782 +260599,1302.9950000168362,-0.06937597744143323 +260600,1303.0000000168363,-0.0693759637424714 +260601,1303.0050000168364,-0.06937595004289664 +260602,1303.0100000168366,-0.06937593634270901 +260603,1303.0150000168367,-0.06937592264190864 +260604,1303.0200000168368,-0.06937590894049561 +260605,1303.0250000168369,-0.06937589523847001 +260606,1303.030000016837,-0.06937588153583193 +260607,1303.035000016837,-0.06937586783258148 +260608,1303.0400000168372,-0.06937585412871874 +260609,1303.0450000168373,-0.0693758404242438 +260610,1303.0500000168374,-0.06937582671915678 +260611,1303.0550000168375,-0.06937581301345774 +260612,1303.0600000168376,-0.0693757993071468 +260613,1303.0650000168378,-0.06937578560022403 +260614,1303.0700000168379,-0.06937577189268955 +260615,1303.075000016838,-0.06937575818454343 +260616,1303.080000016838,-0.06937574447578576 +260617,1303.0850000168382,-0.06937573076641666 +260618,1303.0900000168383,-0.06937571705643622 +260619,1303.0950000168384,-0.06937570334584452 +260620,1303.1000000168385,-0.06937568963464165 +260621,1303.1050000168386,-0.06937567592282771 +260622,1303.1100000168387,-0.0693756622104028 +260623,1303.1150000168388,-0.06937564849736699 +260624,1303.120000016839,-0.0693756347837204 +260625,1303.125000016839,-0.06937562106946311 +260626,1303.1300000168392,-0.06937560735459522 +260627,1303.1350000168393,-0.06937559363911681 +260628,1303.1400000168394,-0.069375579923028 +260629,1303.1450000168395,-0.06937556620632886 +260630,1303.1500000168396,-0.06937555248901948 +260631,1303.1550000168397,-0.06937553877109998 +260632,1303.1600000168398,-0.06937552505257041 +260633,1303.16500001684,-0.0693755113334309 +260634,1303.17000001684,-0.06937549761368152 +260635,1303.1750000168402,-0.06937548389332239 +260636,1303.1800000168403,-0.06937547017235357 +260637,1303.1850000168404,-0.06937545645077518 +260638,1303.1900000168405,-0.06937544272858728 +260639,1303.1950000168406,-0.06937542900579001 +260640,1303.2000000168407,-0.06937541528238343 +260641,1303.2050000168408,-0.06937540155836763 +260642,1303.210000016841,-0.06937538783374271 +260643,1303.215000016841,-0.06937537410850876 +260644,1303.2200000168411,-0.0693753603826659 +260645,1303.2250000168412,-0.06937534665621418 +260646,1303.2300000168414,-0.06937533292915371 +260647,1303.2350000168415,-0.06937531920148458 +260648,1303.2400000168416,-0.0693753054732069 +260649,1303.2450000168417,-0.06937529174432075 +260650,1303.2500000168418,-0.06937527801482621 +260651,1303.255000016842,-0.06937526428472339 +260652,1303.260000016842,-0.06937525055401236 +260653,1303.2650000168421,-0.06937523682269325 +260654,1303.2700000168422,-0.06937522309076613 +260655,1303.2750000168423,-0.06937520935823108 +260656,1303.2800000168425,-0.0693751956250882 +260657,1303.2850000168426,-0.0693751818913376 +260658,1303.2900000168427,-0.06937516815697935 +260659,1303.2950000168428,-0.06937515442201354 +260660,1303.300000016843,-0.06937514068644028 +260661,1303.305000016843,-0.06937512695025964 +260662,1303.310000016843,-0.06937511321347174 +260663,1303.3150000168432,-0.06937509947607665 +260664,1303.3200000168433,-0.06937508573807447 +260665,1303.3250000168434,-0.06937507199946528 +260666,1303.3300000168435,-0.06937505826024919 +260667,1303.3350000168437,-0.06937504452042628 +260668,1303.3400000168438,-0.06937503077999667 +260669,1303.3450000168439,-0.06937501703896042 +260670,1303.350000016844,-0.0693750032973176 +260671,1303.355000016844,-0.06937498955506835 +260672,1303.3600000168442,-0.06937497581221275 +260673,1303.3650000168443,-0.06937496206875086 +260674,1303.3700000168444,-0.0693749483246828 +260675,1303.3750000168445,-0.06937493458000867 +260676,1303.3800000168446,-0.06937492083472854 +260677,1303.3850000168447,-0.06937490708884252 +260678,1303.3900000168449,-0.06937489334235068 +260679,1303.395000016845,-0.06937487959525312 +260680,1303.400000016845,-0.06937486584754994 +260681,1303.4050000168452,-0.06937485209924123 +260682,1303.4100000168453,-0.06937483835032705 +260683,1303.4150000168454,-0.06937482460080753 +260684,1303.4200000168455,-0.06937481085068276 +260685,1303.4250000168456,-0.06937479709995278 +260686,1303.4300000168457,-0.06937478334861776 +260687,1303.4350000168458,-0.06937476959667772 +260688,1303.440000016846,-0.06937475584413279 +260689,1303.445000016846,-0.06937474209098306 +260690,1303.4500000168462,-0.0693747283372286 +260691,1303.4550000168463,-0.06937471458286952 +260692,1303.4600000168464,-0.0693747008279059 +260693,1303.4650000168465,-0.06937468707233783 +260694,1303.4700000168466,-0.06937467331616541 +260695,1303.4750000168467,-0.06937465955938873 +260696,1303.4800000168468,-0.06937464580200788 +260697,1303.485000016847,-0.06937463204402294 +260698,1303.490000016847,-0.06937461828543401 +260699,1303.4950000168471,-0.06937460452624118 +260700,1303.5000000168473,-0.06937459076644455 +260701,1303.5050000168474,-0.06937457700604417 +260702,1303.5100000168475,-0.06937456324504018 +260703,1303.5150000168476,-0.06937454948343265 +260704,1303.5200000168477,-0.06937453572122167 +260705,1303.5250000168478,-0.06937452195840733 +260706,1303.530000016848,-0.06937450819498972 +260707,1303.535000016848,-0.06937449443096892 +260708,1303.5400000168481,-0.06937448066634505 +260709,1303.5450000168482,-0.06937446690111819 +260710,1303.5500000168483,-0.06937445313528841 +260711,1303.5550000168485,-0.0693744393688558 +260712,1303.5600000168486,-0.06937442560182047 +260713,1303.5650000168487,-0.06937441183418251 +260714,1303.5700000168488,-0.069374398065942 +260715,1303.575000016849,-0.06937438429709902 +260716,1303.580000016849,-0.0693743705276537 +260717,1303.585000016849,-0.06937435675760609 +260718,1303.5900000168492,-0.06937434298695629 +260719,1303.5950000168493,-0.06937432921570438 +260720,1303.6000000168494,-0.06937431544385046 +260721,1303.6050000168495,-0.06937430167139463 +260722,1303.6100000168497,-0.06937428789833698 +260723,1303.6150000168498,-0.06937427412467757 +260724,1303.6200000168499,-0.06937426035041652 +260725,1303.62500001685,-0.06937424657555391 +260726,1303.63000001685,-0.06937423280008984 +260727,1303.6350000168502,-0.06937421902402437 +260728,1303.6400000168503,-0.06937420524735763 +260729,1303.6450000168504,-0.06937419147008968 +260730,1303.6500000168505,-0.06937417769222061 +260731,1303.6550000168506,-0.06937416391375052 +260732,1303.6600000168507,-0.0693741501346795 +260733,1303.6650000168509,-0.06937413635500764 +260734,1303.670000016851,-0.069374122574735 +260735,1303.675000016851,-0.06937410879386173 +260736,1303.6800000168512,-0.06937409501238787 +260737,1303.6850000168513,-0.06937408123031352 +260738,1303.6900000168514,-0.06937406744763878 +260739,1303.6950000168515,-0.06937405366436374 +260740,1303.7000000168516,-0.06937403988048846 +260741,1303.7050000168517,-0.06937402609601305 +260742,1303.7100000168518,-0.06937401231093761 +260743,1303.715000016852,-0.0693739985252622 +260744,1303.720000016852,-0.06937398473898694 +260745,1303.7250000168522,-0.0693739709521119 +260746,1303.7300000168523,-0.06937395716463716 +260747,1303.7350000168524,-0.06937394337656283 +260748,1303.7400000168525,-0.06937392958788902 +260749,1303.7450000168526,-0.06937391579861575 +260750,1303.7500000168527,-0.06937390200874317 +260751,1303.7550000168528,-0.06937388821827135 +260752,1303.760000016853,-0.06937387442720037 +260753,1303.765000016853,-0.06937386063553033 +260754,1303.7700000168531,-0.06937384684326132 +260755,1303.7750000168533,-0.06937383305039342 +260756,1303.7800000168534,-0.06937381925692672 +260757,1303.7850000168535,-0.06937380546286132 +260758,1303.7900000168536,-0.06937379166819728 +260759,1303.7950000168537,-0.06937377787293472 +260760,1303.8000000168538,-0.06937376407707371 +260761,1303.805000016854,-0.06937375028061435 +260762,1303.810000016854,-0.06937373648355671 +260763,1303.8150000168541,-0.0693737226859009 +260764,1303.8200000168542,-0.069373708887647 +260765,1303.8250000168543,-0.0693736950887951 +260766,1303.8300000168545,-0.06937368128934528 +260767,1303.8350000168546,-0.06937366748929762 +260768,1303.8400000168547,-0.06937365368865223 +260769,1303.8450000168548,-0.06937363988740919 +260770,1303.850000016855,-0.06937362608556859 +260771,1303.855000016855,-0.06937361228313052 +260772,1303.860000016855,-0.06937359848009506 +260773,1303.8650000168552,-0.06937358467646229 +260774,1303.8700000168553,-0.06937357087223232 +260775,1303.8750000168554,-0.06937355706740524 +260776,1303.8800000168555,-0.0693735432619811 +260777,1303.8850000168557,-0.06937352945596002 +260778,1303.8900000168558,-0.06937351564934208 +260779,1303.8950000168559,-0.06937350184212737 +260780,1303.900000016856,-0.06937348803431598 +260781,1303.905000016856,-0.069373474225908 +260782,1303.9100000168562,-0.0693734604169035 +260783,1303.9150000168563,-0.06937344660730259 +260784,1303.9200000168564,-0.06937343279710534 +260785,1303.9250000168565,-0.06937341898631184 +260786,1303.9300000168566,-0.0693734051749222 +260787,1303.9350000168567,-0.06937339136293648 +260788,1303.9400000168569,-0.06937337755035478 +260789,1303.945000016857,-0.06937336373717717 +260790,1303.950000016857,-0.06937334992340377 +260791,1303.9550000168572,-0.06937333610903464 +260792,1303.9600000168573,-0.06937332229406988 +260793,1303.9650000168574,-0.06937330847850957 +260794,1303.9700000168575,-0.0693732946623538 +260795,1303.9750000168576,-0.06937328084560267 +260796,1303.9800000168577,-0.06937326702825623 +260797,1303.9850000168578,-0.06937325321031462 +260798,1303.990000016858,-0.06937323939177789 +260799,1303.995000016858,-0.06937322557264614 +260800,1304.0000000168582,-0.06937321175291945 +260801,1304.0050000168583,-0.0693731979325979 +260802,1304.0100000168584,-0.06937318411168161 +260803,1304.0150000168585,-0.06937317029017064 +260804,1304.0200000168586,-0.06937315646806508 +260805,1304.0250000168587,-0.06937314264536501 +260806,1304.0300000168588,-0.06937312882207053 +260807,1304.035000016859,-0.06937311499818172 +260808,1304.040000016859,-0.06937310117369867 +260809,1304.0450000168591,-0.06937308734862146 +260810,1304.0500000168593,-0.06937307352295019 +260811,1304.0550000168594,-0.06937305969668495 +260812,1304.0600000168595,-0.0693730458698258 +260813,1304.0650000168596,-0.06937303204237286 +260814,1304.0700000168597,-0.06937301821432618 +260815,1304.0750000168598,-0.06937300438568587 +260816,1304.08000001686,-0.06937299055645202 +260817,1304.08500001686,-0.06937297672662472 +260818,1304.0900000168601,-0.06937296289620402 +260819,1304.0950000168602,-0.06937294906519005 +260820,1304.1000000168603,-0.06937293523358289 +260821,1304.1050000168605,-0.06937292140138258 +260822,1304.1100000168606,-0.06937290756858927 +260823,1304.1150000168607,-0.06937289373520301 +260824,1304.1200000168608,-0.06937287990122389 +260825,1304.125000016861,-0.069372866066652 +260826,1304.130000016861,-0.06937285223148741 +260827,1304.135000016861,-0.06937283839573025 +260828,1304.1400000168612,-0.06937282455938057 +260829,1304.1450000168613,-0.06937281072243845 +260830,1304.1500000168614,-0.069372796884904 +260831,1304.1550000168615,-0.06937278304677728 +260832,1304.1600000168617,-0.06937276920805842 +260833,1304.1650000168618,-0.06937275536874746 +260834,1304.1700000168619,-0.06937274152884451 +260835,1304.175000016862,-0.06937272768834966 +260836,1304.180000016862,-0.06937271384726297 +260837,1304.1850000168622,-0.06937270000558456 +260838,1304.1900000168623,-0.06937268616331449 +260839,1304.1950000168624,-0.06937267232045286 +260840,1304.2000000168625,-0.06937265847699974 +260841,1304.2050000168626,-0.06937264463295521 +260842,1304.2100000168628,-0.06937263078831939 +260843,1304.2150000168629,-0.06937261694309234 +260844,1304.220000016863,-0.06937260309727415 +260845,1304.225000016863,-0.06937258925086491 +260846,1304.2300000168632,-0.0693725754038647 +260847,1304.2350000168633,-0.06937256155627361 +260848,1304.2400000168634,-0.06937254770809173 +260849,1304.2450000168635,-0.06937253385931913 +260850,1304.2500000168636,-0.06937252000995592 +260851,1304.2550000168637,-0.06937250616000216 +260852,1304.2600000168638,-0.06937249230945794 +260853,1304.265000016864,-0.06937247845832335 +260854,1304.270000016864,-0.06937246460659849 +260855,1304.2750000168642,-0.06937245075428342 +260856,1304.2800000168643,-0.06937243690137823 +260857,1304.2850000168644,-0.06937242304788303 +260858,1304.2900000168645,-0.06937240919379788 +260859,1304.2950000168646,-0.06937239533912287 +260860,1304.3000000168647,-0.06937238148385809 +260861,1304.3050000168648,-0.06937236762800361 +260862,1304.310000016865,-0.06937235377155955 +260863,1304.315000016865,-0.06937233991452596 +260864,1304.3200000168652,-0.06937232605690292 +260865,1304.3250000168653,-0.06937231219869056 +260866,1304.3300000168654,-0.06937229833988892 +260867,1304.3350000168655,-0.06937228448049809 +260868,1304.3400000168656,-0.06937227062051818 +260869,1304.3450000168657,-0.06937225675994926 +260870,1304.3500000168658,-0.06937224289879143 +260871,1304.355000016866,-0.06937222903704475 +260872,1304.360000016866,-0.06937221517470932 +260873,1304.3650000168661,-0.0693722013117852 +260874,1304.3700000168662,-0.06937218744827252 +260875,1304.3750000168664,-0.06937217358417132 +260876,1304.3800000168665,-0.06937215971948171 +260877,1304.3850000168666,-0.06937214585420377 +260878,1304.3900000168667,-0.06937213198833757 +260879,1304.3950000168668,-0.06937211812188322 +260880,1304.400000016867,-0.06937210425484079 +260881,1304.405000016867,-0.06937209038721036 +260882,1304.4100000168671,-0.06937207651899203 +260883,1304.4150000168672,-0.06937206265018588 +260884,1304.4200000168673,-0.06937204878079198 +260885,1304.4250000168674,-0.06937203491081041 +260886,1304.4300000168676,-0.06937202104024127 +260887,1304.4350000168677,-0.06937200716908465 +260888,1304.4400000168678,-0.06937199329734065 +260889,1304.4450000168679,-0.06937197942500929 +260890,1304.450000016868,-0.0693719655520907 +260891,1304.455000016868,-0.06937195167858497 +260892,1304.4600000168682,-0.06937193780449216 +260893,1304.4650000168683,-0.06937192392981238 +260894,1304.4700000168684,-0.0693719100545457 +260895,1304.4750000168685,-0.0693718961786922 +260896,1304.4800000168686,-0.06937188230225197 +260897,1304.4850000168688,-0.0693718684252251 +260898,1304.4900000168689,-0.06937185454761165 +260899,1304.495000016869,-0.06937184066941172 +260900,1304.500000016869,-0.06937182679062541 +260901,1304.5050000168692,-0.06937181291125277 +260902,1304.5100000168693,-0.06937179903129391 +260903,1304.5150000168694,-0.06937178515074889 +260904,1304.5200000168695,-0.06937177126961783 +260905,1304.5250000168696,-0.06937175738790077 +260906,1304.5300000168697,-0.06937174350559783 +260907,1304.5350000168698,-0.06937172962270907 +260908,1304.54000001687,-0.06937171573923459 +260909,1304.54500001687,-0.06937170185517447 +260910,1304.5500000168702,-0.06937168797052877 +260911,1304.5550000168703,-0.0693716740852976 +260912,1304.5600000168704,-0.06937166019948104 +260913,1304.5650000168705,-0.06937164631307917 +260914,1304.5700000168706,-0.06937163242609207 +260915,1304.5750000168707,-0.06937161853851981 +260916,1304.5800000168708,-0.06937160465036252 +260917,1304.585000016871,-0.06937159076162022 +260918,1304.590000016871,-0.06937157687229305 +260919,1304.5950000168712,-0.06937156298238106 +260920,1304.6000000168713,-0.06937154909188435 +260921,1304.6050000168714,-0.06937153520080298 +260922,1304.6100000168715,-0.06937152130913705 +260923,1304.6150000168716,-0.06937150741688665 +260924,1304.6200000168717,-0.06937149352405185 +260925,1304.6250000168718,-0.06937147963063274 +260926,1304.630000016872,-0.06937146573662939 +260927,1304.635000016872,-0.06937145184204191 +260928,1304.6400000168721,-0.06937143794687035 +260929,1304.6450000168722,-0.06937142405111484 +260930,1304.6500000168724,-0.0693714101547754 +260931,1304.6550000168725,-0.06937139625785214 +260932,1304.6600000168726,-0.06937138236034517 +260933,1304.6650000168727,-0.06937136846225454 +260934,1304.6700000168728,-0.06937135456358035 +260935,1304.675000016873,-0.06937134066432266 +260936,1304.680000016873,-0.06937132676448159 +260937,1304.6850000168731,-0.06937131286405718 +260938,1304.6900000168732,-0.06937129896304953 +260939,1304.6950000168733,-0.06937128506145873 +260940,1304.7000000168734,-0.06937127115928488 +260941,1304.7050000168736,-0.06937125725652801 +260942,1304.7100000168737,-0.06937124335318826 +260943,1304.7150000168738,-0.06937122944926566 +260944,1304.7200000168739,-0.06937121554476032 +260945,1304.725000016874,-0.06937120163967232 +260946,1304.730000016874,-0.06937118773400175 +260947,1304.7350000168742,-0.0693711738277487 +260948,1304.7400000168743,-0.06937115992091322 +260949,1304.7450000168744,-0.06937114601349541 +260950,1304.7500000168745,-0.06937113210549535 +260951,1304.7550000168746,-0.06937111819691313 +260952,1304.7600000168748,-0.06937110428774883 +260953,1304.7650000168749,-0.06937109037800251 +260954,1304.770000016875,-0.06937107646767428 +260955,1304.775000016875,-0.0693710625567642 +260956,1304.7800000168752,-0.06937104864527238 +260957,1304.7850000168753,-0.06937103473319889 +260958,1304.7900000168754,-0.06937102082054379 +260959,1304.7950000168755,-0.06937100690730719 +260960,1304.8000000168756,-0.06937099299348916 +260961,1304.8050000168757,-0.06937097907908978 +260962,1304.8100000168758,-0.06937096516410914 +260963,1304.815000016876,-0.06937095124854732 +260964,1304.820000016876,-0.06937093733240439 +260965,1304.8250000168762,-0.06937092341568044 +260966,1304.8300000168763,-0.06937090949837556 +260967,1304.8350000168764,-0.06937089558048981 +260968,1304.8400000168765,-0.06937088166202329 +260969,1304.8450000168766,-0.06937086774297609 +260970,1304.8500000168767,-0.06937085382334827 +260971,1304.8550000168768,-0.06937083990313991 +260972,1304.860000016877,-0.06937082598235111 +260973,1304.865000016877,-0.06937081206098193 +260974,1304.8700000168772,-0.06937079813903249 +260975,1304.8750000168773,-0.06937078421650283 +260976,1304.8800000168774,-0.06937077029339306 +260977,1304.8850000168775,-0.06937075636970323 +260978,1304.8900000168776,-0.06937074244543345 +260979,1304.8950000168777,-0.06937072852058378 +260980,1304.9000000168778,-0.06937071459515433 +260981,1304.905000016878,-0.06937070066914515 +260982,1304.910000016878,-0.06937068674255635 +260983,1304.9150000168781,-0.06937067281538797 +260984,1304.9200000168782,-0.06937065888764013 +260985,1304.9250000168784,-0.0693706449593129 +260986,1304.9300000168785,-0.06937063103040636 +260987,1304.9350000168786,-0.06937061710092059 +260988,1304.9400000168787,-0.06937060317085568 +260989,1304.9450000168788,-0.0693705892402117 +260990,1304.950000016879,-0.06937057530898873 +260991,1304.955000016879,-0.06937056137718685 +260992,1304.9600000168791,-0.06937054744480614 +260993,1304.9650000168792,-0.06937053351184669 +260994,1304.9700000168793,-0.06937051957830857 +260995,1304.9750000168794,-0.06937050564419188 +260996,1304.9800000168796,-0.06937049170949669 +260997,1304.9850000168797,-0.06937047777422307 +260998,1304.9900000168798,-0.06937046383837113 +260999,1304.9950000168799,-0.0693704499019409 +261000,1305.00000001688,-0.06937043596493252 +261001,1305.00500001688,-0.06937042202734602 +261002,1305.0100000168802,-0.06937040808918149 +261003,1305.0150000168803,-0.06937039415043904 +261004,1305.0200000168804,-0.06937038021111873 +261005,1305.0250000168805,-0.06937036627122065 +261006,1305.0300000168806,-0.06937035233074487 +261007,1305.0350000168808,-0.06937033838969146 +261008,1305.0400000168809,-0.06937032444806054 +261009,1305.045000016881,-0.06937031050585216 +261010,1305.050000016881,-0.06937029656306641 +261011,1305.0550000168812,-0.06937028261970335 +261012,1305.0600000168813,-0.06937026867576307 +261013,1305.0650000168814,-0.06937025473124567 +261014,1305.0700000168815,-0.06937024078615121 +261015,1305.0750000168816,-0.06937022684047979 +261016,1305.0800000168817,-0.06937021289423147 +261017,1305.0850000168818,-0.06937019894740634 +261018,1305.090000016882,-0.06937018500000447 +261019,1305.095000016882,-0.06937017105202595 +261020,1305.1000000168822,-0.06937015710347086 +261021,1305.1050000168823,-0.06937014315433927 +261022,1305.1100000168824,-0.06937012920463127 +261023,1305.1150000168825,-0.06937011525434694 +261024,1305.1200000168826,-0.06937010130348635 +261025,1305.1250000168827,-0.0693700873520496 +261026,1305.1300000168828,-0.06937007340003674 +261027,1305.135000016883,-0.06937005944744787 +261028,1305.140000016883,-0.06937004549428308 +261029,1305.1450000168832,-0.06937003154054243 +261030,1305.1500000168833,-0.069370017586226 +261031,1305.1550000168834,-0.06937000363133387 +261032,1305.1600000168835,-0.06936998967586613 +261033,1305.1650000168836,-0.06936997571982287 +261034,1305.1700000168837,-0.06936996176320413 +261035,1305.1750000168838,-0.06936994780601004 +261036,1305.180000016884,-0.06936993384824064 +261037,1305.185000016884,-0.069369919889896 +261038,1305.1900000168841,-0.06936990593097626 +261039,1305.1950000168843,-0.06936989197148145 +261040,1305.2000000168844,-0.06936987801141166 +261041,1305.2050000168845,-0.06936986405076696 +261042,1305.2100000168846,-0.06936985008954746 +261043,1305.2150000168847,-0.0693698361277532 +261044,1305.2200000168848,-0.06936982216538429 +261045,1305.225000016885,-0.06936980820244079 +261046,1305.230000016885,-0.0693697942389228 +261047,1305.2350000168851,-0.06936978027483036 +261048,1305.2400000168852,-0.0693697663101636 +261049,1305.2450000168853,-0.06936975234492256 +261050,1305.2500000168855,-0.06936973837910733 +261051,1305.2550000168856,-0.069369724412718 +261052,1305.2600000168857,-0.06936971044575466 +261053,1305.2650000168858,-0.06936969647821735 +261054,1305.270000016886,-0.06936968251010618 +261055,1305.275000016886,-0.06936966854142121 +261056,1305.280000016886,-0.06936965457216253 +261057,1305.2850000168862,-0.06936964060233022 +261058,1305.2900000168863,-0.06936962663192435 +261059,1305.2950000168864,-0.069369612660945 +261060,1305.3000000168865,-0.06936959868939228 +261061,1305.3050000168867,-0.06936958471726622 +261062,1305.3100000168868,-0.06936957074456693 +261063,1305.3150000168869,-0.06936955677129447 +261064,1305.320000016887,-0.06936954279744893 +261065,1305.325000016887,-0.0693695288230304 +261066,1305.3300000168872,-0.06936951484803894 +261067,1305.3350000168873,-0.06936950087247462 +261068,1305.3400000168874,-0.06936948689633754 +261069,1305.3450000168875,-0.06936947291962776 +261070,1305.3500000168876,-0.06936945894234539 +261071,1305.3550000168877,-0.06936944496449049 +261072,1305.3600000168879,-0.06936943098606313 +261073,1305.365000016888,-0.06936941700706338 +261074,1305.370000016888,-0.06936940302749135 +261075,1305.3750000168882,-0.06936938904734709 +261076,1305.3800000168883,-0.0693693750666307 +261077,1305.3850000168884,-0.06936936108534224 +261078,1305.3900000168885,-0.0693693471034818 +261079,1305.3950000168886,-0.06936933312104945 +261080,1305.4000000168887,-0.06936931913804528 +261081,1305.4050000168888,-0.06936930515446936 +261082,1305.410000016889,-0.06936929117032177 +261083,1305.415000016889,-0.06936927718560258 +261084,1305.4200000168892,-0.06936926320031189 +261085,1305.4250000168893,-0.06936924921444977 +261086,1305.4300000168894,-0.06936923522801629 +261087,1305.4350000168895,-0.0693692212410115 +261088,1305.4400000168896,-0.06936920725343554 +261089,1305.4450000168897,-0.06936919326528843 +261090,1305.4500000168898,-0.0693691792765703 +261091,1305.45500001689,-0.06936916528728118 +261092,1305.46000001689,-0.06936915129742119 +261093,1305.4650000168901,-0.06936913730699037 +261094,1305.4700000168903,-0.06936912331598882 +261095,1305.4750000168904,-0.06936910932441662 +261096,1305.4800000168905,-0.06936909533227383 +261097,1305.4850000168906,-0.06936908133956055 +261098,1305.4900000168907,-0.06936906734627682 +261099,1305.4950000168908,-0.06936905335242277 +261100,1305.500000016891,-0.06936903935799844 +261101,1305.505000016891,-0.06936902536300393 +261102,1305.5100000168911,-0.0693690113674393 +261103,1305.5150000168912,-0.06936899737130463 +261104,1305.5200000168913,-0.06936898337460001 +261105,1305.5250000168915,-0.0693689693773255 +261106,1305.5300000168916,-0.06936895537948119 +261107,1305.5350000168917,-0.06936894138106717 +261108,1305.5400000168918,-0.06936892738208347 +261109,1305.545000016892,-0.06936891338253022 +261110,1305.550000016892,-0.06936889938240748 +261111,1305.555000016892,-0.06936888538171532 +261112,1305.5600000168922,-0.0693688713804538 +261113,1305.5650000168923,-0.06936885737862306 +261114,1305.5700000168924,-0.0693688433762231 +261115,1305.5750000168925,-0.06936882937325405 +261116,1305.5800000168927,-0.06936881536971597 +261117,1305.5850000168928,-0.06936880136560891 +261118,1305.5900000168929,-0.06936878736093299 +261119,1305.595000016893,-0.06936877335568828 +261120,1305.600000016893,-0.06936875934987484 +261121,1305.6050000168932,-0.06936874534349274 +261122,1305.6100000168933,-0.0693687313365421 +261123,1305.6150000168934,-0.06936871732902296 +261124,1305.6200000168935,-0.0693687033209354 +261125,1305.6250000168936,-0.0693686893122795 +261126,1305.6300000168937,-0.06936867530305534 +261127,1305.6350000168939,-0.06936866129326301 +261128,1305.640000016894,-0.06936864728290255 +261129,1305.645000016894,-0.06936863327197408 +261130,1305.6500000168942,-0.06936861926047765 +261131,1305.6550000168943,-0.06936860524841333 +261132,1305.6600000168944,-0.06936859123578122 +261133,1305.6650000168945,-0.0693685772225814 +261134,1305.6700000168946,-0.06936856320881393 +261135,1305.6750000168947,-0.06936854919447888 +261136,1305.6800000168948,-0.06936853517957635 +261137,1305.685000016895,-0.06936852116410638 +261138,1305.690000016895,-0.06936850714806908 +261139,1305.6950000168952,-0.06936849313146452 +261140,1305.7000000168953,-0.06936847911429277 +261141,1305.7050000168954,-0.06936846509655391 +261142,1305.7100000168955,-0.06936845107824802 +261143,1305.7150000168956,-0.06936843705937516 +261144,1305.7200000168957,-0.06936842303993544 +261145,1305.7250000168958,-0.06936840901992891 +261146,1305.730000016896,-0.06936839499935563 +261147,1305.735000016896,-0.06936838097821571 +261148,1305.7400000168961,-0.06936836695650922 +261149,1305.7450000168963,-0.06936835293423622 +261150,1305.7500000168964,-0.0693683389113968 +261151,1305.7550000168965,-0.06936832488799104 +261152,1305.7600000168966,-0.069368310864019 +261153,1305.7650000168967,-0.06936829683948076 +261154,1305.7700000168968,-0.0693682828143764 +261155,1305.775000016897,-0.069368268788706 +261156,1305.780000016897,-0.06936825476246963 +261157,1305.7850000168971,-0.06936824073566737 +261158,1305.7900000168972,-0.06936822670829929 +261159,1305.7950000168973,-0.06936821268036547 +261160,1305.8000000168975,-0.069368198651866 +261161,1305.8050000168976,-0.06936818462280092 +261162,1305.8100000168977,-0.06936817059317035 +261163,1305.8150000168978,-0.06936815656297433 +261164,1305.820000016898,-0.06936814253221296 +261165,1305.825000016898,-0.0693681285008863 +261166,1305.830000016898,-0.06936811446899442 +261167,1305.8350000168982,-0.06936810043653742 +261168,1305.8400000168983,-0.06936808640351536 +261169,1305.8450000168984,-0.0693680723699283 +261170,1305.8500000168985,-0.06936805833577636 +261171,1305.8550000168987,-0.06936804430105957 +261172,1305.8600000168988,-0.06936803026577804 +261173,1305.8650000168989,-0.06936801622993181 +261174,1305.870000016899,-0.06936800219352099 +261175,1305.875000016899,-0.06936798815654564 +261176,1305.8800000168992,-0.06936797411900582 +261177,1305.8850000168993,-0.06936796008090164 +261178,1305.8900000168994,-0.06936794604223316 +261179,1305.8950000168995,-0.06936793200300045 +261180,1305.9000000168996,-0.06936791796320359 +261181,1305.9050000168997,-0.06936790392284263 +261182,1305.9100000168999,-0.06936788988191768 +261183,1305.9150000169,-0.0693678758404288 +261184,1305.9200000169,-0.06936786179837609 +261185,1305.9250000169002,-0.06936784775575959 +261186,1305.9300000169003,-0.06936783371257939 +261187,1305.9350000169004,-0.06936781966883555 +261188,1305.9400000169005,-0.06936780562452817 +261189,1305.9450000169006,-0.06936779157965732 +261190,1305.9500000169007,-0.06936777753422307 +261191,1305.9550000169008,-0.06936776348822549 +261192,1305.960000016901,-0.06936774944166467 +261193,1305.965000016901,-0.06936773539454068 +261194,1305.9700000169012,-0.06936772134685357 +261195,1305.9750000169013,-0.06936770729860343 +261196,1305.9800000169014,-0.06936769324979035 +261197,1305.9850000169015,-0.06936767920041438 +261198,1305.9900000169016,-0.06936766515047563 +261199,1305.9950000169017,-0.06936765109997416 +261200,1306.0000000169018,-0.06936763704891001 +261201,1306.005000016902,-0.0693676229972833 +261202,1306.010000016902,-0.0693676089450941 +261203,1306.0150000169021,-0.06936759489234245 +261204,1306.0200000169023,-0.06936758083902847 +261205,1306.0250000169024,-0.0693675667851522 +261206,1306.0300000169025,-0.06936755273071371 +261207,1306.0350000169026,-0.0693675386757131 +261208,1306.0400000169027,-0.06936752462015044 +261209,1306.0450000169028,-0.0693675105640258 +261210,1306.050000016903,-0.06936749650733925 +261211,1306.055000016903,-0.06936748245009088 +261212,1306.0600000169031,-0.06936746839228074 +261213,1306.0650000169032,-0.06936745433390892 +261214,1306.0700000169034,-0.06936744027497549 +261215,1306.0750000169035,-0.06936742621548053 +261216,1306.0800000169036,-0.06936741215542412 +261217,1306.0850000169037,-0.06936739809480633 +261218,1306.0900000169038,-0.0693673840336272 +261219,1306.095000016904,-0.06936736997188686 +261220,1306.100000016904,-0.06936735590958534 +261221,1306.1050000169041,-0.06936734184672273 +261222,1306.1100000169042,-0.06936732778329913 +261223,1306.1150000169043,-0.06936731371931458 +261224,1306.1200000169044,-0.06936729965476916 +261225,1306.1250000169046,-0.06936728558966294 +261226,1306.1300000169047,-0.06936727152399601 +261227,1306.1350000169048,-0.06936725745776845 +261228,1306.1400000169049,-0.06936724339098031 +261229,1306.145000016905,-0.06936722932363168 +261230,1306.150000016905,-0.06936721525572262 +261231,1306.1550000169052,-0.0693672011872532 +261232,1306.1600000169053,-0.06936718711822353 +261233,1306.1650000169054,-0.06936717304863364 +261234,1306.1700000169055,-0.06936715897848364 +261235,1306.1750000169056,-0.06936714490777358 +261236,1306.1800000169058,-0.06936713083650353 +261237,1306.1850000169059,-0.0693671167646736 +261238,1306.190000016906,-0.06936710269228383 +261239,1306.195000016906,-0.0693670886193343 +261240,1306.2000000169062,-0.06936707454582508 +261241,1306.2050000169063,-0.06936706047175625 +261242,1306.2100000169064,-0.06936704639712787 +261243,1306.2150000169065,-0.06936703232194007 +261244,1306.2200000169066,-0.06936701824619285 +261245,1306.2250000169067,-0.06936700416988631 +261246,1306.2300000169068,-0.06936699009302054 +261247,1306.235000016907,-0.06936697601559559 +261248,1306.240000016907,-0.06936696193761155 +261249,1306.2450000169072,-0.0693669478590685 +261250,1306.2500000169073,-0.06936693377996647 +261251,1306.2550000169074,-0.06936691970030559 +261252,1306.2600000169075,-0.0693669056200859 +261253,1306.2650000169076,-0.06936689153930747 +261254,1306.2700000169077,-0.0693668774579704 +261255,1306.2750000169078,-0.06936686337607474 +261256,1306.280000016908,-0.06936684929362058 +261257,1306.285000016908,-0.06936683521060798 +261258,1306.2900000169082,-0.069366821127037 +261259,1306.2950000169083,-0.06936680704290774 +261260,1306.3000000169084,-0.06936679295822026 +261261,1306.3050000169085,-0.06936677887297465 +261262,1306.3100000169086,-0.06936676478717096 +261263,1306.3150000169087,-0.06936675070080928 +261264,1306.3200000169088,-0.06936673661388967 +261265,1306.325000016909,-0.06936672252641221 +261266,1306.330000016909,-0.06936670843837696 +261267,1306.3350000169091,-0.06936669434978401 +261268,1306.3400000169092,-0.06936668026063343 +261269,1306.3450000169094,-0.06936666617092528 +261270,1306.3500000169095,-0.06936665208065966 +261271,1306.3550000169096,-0.06936663798983662 +261272,1306.3600000169097,-0.06936662389845624 +261273,1306.3650000169098,-0.06936660980651858 +261274,1306.37000001691,-0.06936659571402373 +261275,1306.37500001691,-0.06936658162097176 +261276,1306.3800000169101,-0.06936656752736274 +261277,1306.3850000169102,-0.06936655343319673 +261278,1306.3900000169103,-0.06936653933847381 +261279,1306.3950000169104,-0.06936652524319407 +261280,1306.4000000169106,-0.06936651114735758 +261281,1306.4050000169107,-0.06936649705096438 +261282,1306.4100000169108,-0.06936648295401457 +261283,1306.4150000169109,-0.06936646885650823 +261284,1306.420000016911,-0.0693664547584454 +261285,1306.425000016911,-0.06936644065982618 +261286,1306.4300000169112,-0.06936642656065065 +261287,1306.4350000169113,-0.06936641246091883 +261288,1306.4400000169114,-0.06936639836063087 +261289,1306.4450000169115,-0.06936638425978679 +261290,1306.4500000169116,-0.06936637015838666 +261291,1306.4550000169118,-0.06936635605643057 +261292,1306.4600000169119,-0.0693663419539186 +261293,1306.465000016912,-0.0693663278508508 +261294,1306.470000016912,-0.06936631374722725 +261295,1306.4750000169122,-0.06936629964304802 +261296,1306.4800000169123,-0.0693662855383132 +261297,1306.4850000169124,-0.06936627143302283 +261298,1306.4900000169125,-0.06936625732717702 +261299,1306.4950000169126,-0.06936624322077584 +261300,1306.5000000169127,-0.06936622911381932 +261301,1306.5050000169128,-0.06936621500630756 +261302,1306.510000016913,-0.06936620089824062 +261303,1306.515000016913,-0.0693661867896186 +261304,1306.5200000169132,-0.06936617268044154 +261305,1306.5250000169133,-0.06936615857070953 +261306,1306.5300000169134,-0.06936614446042264 +261307,1306.5350000169135,-0.06936613034958093 +261308,1306.5400000169136,-0.06936611623818448 +261309,1306.5450000169137,-0.06936610212623336 +261310,1306.5500000169138,-0.06936608801372765 +261311,1306.555000016914,-0.06936607390066742 +261312,1306.560000016914,-0.06936605978705272 +261313,1306.5650000169142,-0.06936604567288364 +261314,1306.5700000169143,-0.06936603155816026 +261315,1306.5750000169144,-0.06936601744288264 +261316,1306.5800000169145,-0.06936600332705085 +261317,1306.5850000169146,-0.06936598921066496 +261318,1306.5900000169147,-0.06936597509372505 +261319,1306.5950000169148,-0.06936596097623121 +261320,1306.600000016915,-0.06936594685818348 +261321,1306.605000016915,-0.06936593273958194 +261322,1306.6100000169151,-0.06936591862042665 +261323,1306.6150000169152,-0.06936590450071771 +261324,1306.6200000169154,-0.06936589038045515 +261325,1306.6250000169155,-0.0693658762596391 +261326,1306.6300000169156,-0.06936586213826958 +261327,1306.6350000169157,-0.06936584801634668 +261328,1306.6400000169158,-0.06936583389387048 +261329,1306.645000016916,-0.06936581977084103 +261330,1306.650000016916,-0.06936580564725842 +261331,1306.6550000169161,-0.06936579152312271 +261332,1306.6600000169162,-0.06936577739843398 +261333,1306.6650000169163,-0.06936576327319229 +261334,1306.6700000169164,-0.06936574914739772 +261335,1306.6750000169166,-0.06936573502105034 +261336,1306.6800000169167,-0.06936572089415022 +261337,1306.6850000169168,-0.06936570676669743 +261338,1306.6900000169169,-0.06936569263869204 +261339,1306.695000016917,-0.06936567851013412 +261340,1306.700000016917,-0.06936566438102375 +261341,1306.7050000169172,-0.06936565025136099 +261342,1306.7100000169173,-0.06936563612114592 +261343,1306.7150000169174,-0.06936562199037861 +261344,1306.7200000169175,-0.06936560785905913 +261345,1306.7250000169176,-0.06936559372718754 +261346,1306.7300000169178,-0.06936557959476392 +261347,1306.7350000169179,-0.06936556546178833 +261348,1306.740000016918,-0.06936555132826086 +261349,1306.745000016918,-0.06936553719418158 +261350,1306.7500000169182,-0.06936552305955054 +261351,1306.7550000169183,-0.06936550892436784 +261352,1306.7600000169184,-0.06936549478863352 +261353,1306.7650000169185,-0.06936548065234766 +261354,1306.7700000169186,-0.06936546651551033 +261355,1306.7750000169187,-0.06936545237812163 +261356,1306.7800000169188,-0.06936543824018157 +261357,1306.785000016919,-0.06936542410169028 +261358,1306.790000016919,-0.0693654099626478 +261359,1306.7950000169192,-0.06936539582305422 +261360,1306.8000000169193,-0.0693653816829096 +261361,1306.8050000169194,-0.06936536754221398 +261362,1306.8100000169195,-0.06936535340096747 +261363,1306.8150000169196,-0.06936533925917013 +261364,1306.8200000169197,-0.06936532511682203 +261365,1306.8250000169198,-0.06936531097392325 +261366,1306.83000001692,-0.06936529683047384 +261367,1306.83500001692,-0.06936528268647388 +261368,1306.8400000169202,-0.06936526854192343 +261369,1306.8450000169203,-0.06936525439682258 +261370,1306.8500000169204,-0.06936524025117138 +261371,1306.8550000169205,-0.06936522610496992 +261372,1306.8600000169206,-0.06936521195821826 +261373,1306.8650000169207,-0.06936519781091649 +261374,1306.8700000169208,-0.06936518366306464 +261375,1306.875000016921,-0.06936516951466282 +261376,1306.880000016921,-0.06936515536571104 +261377,1306.8850000169211,-0.06936514121620944 +261378,1306.8900000169212,-0.06936512706615805 +261379,1306.8950000169214,-0.06936511291555697 +261380,1306.9000000169215,-0.06936509876440623 +261381,1306.9050000169216,-0.06936508461270594 +261382,1306.9100000169217,-0.06936507046045613 +261383,1306.9150000169218,-0.06936505630765691 +261384,1306.920000016922,-0.06936504215430832 +261385,1306.925000016922,-0.06936502800041043 +261386,1306.9300000169221,-0.06936501384596333 +261387,1306.9350000169222,-0.06936499969096709 +261388,1306.9400000169223,-0.06936498553542175 +261389,1306.9450000169224,-0.06936497137932741 +261390,1306.9500000169226,-0.06936495722268413 +261391,1306.9550000169227,-0.06936494306549197 +261392,1306.9600000169228,-0.069364928907751 +261393,1306.9650000169229,-0.06936491474946133 +261394,1306.970000016923,-0.06936490059062297 +261395,1306.975000016923,-0.06936488643123602 +261396,1306.9800000169232,-0.06936487227130055 +261397,1306.9850000169233,-0.06936485811081661 +261398,1306.9900000169234,-0.0693648439497843 +261399,1306.9950000169235,-0.06936482978820369 +261400,1307.0000000169237,-0.0693648156260748 +261401,1307.0050000169238,-0.06936480146339775 +261402,1307.0100000169239,-0.06936478730017259 +261403,1307.015000016924,-0.0693647731363994 +261404,1307.020000016924,-0.06936475897207822 +261405,1307.0250000169242,-0.06936474480720915 +261406,1307.0300000169243,-0.06936473064179226 +261407,1307.0350000169244,-0.06936471647582759 +261408,1307.0400000169245,-0.06936470230931525 +261409,1307.0450000169246,-0.06936468814225527 +261410,1307.0500000169247,-0.06936467397464774 +261411,1307.0550000169249,-0.06936465980649273 +261412,1307.060000016925,-0.06936464563779031 +261413,1307.065000016925,-0.06936463146854052 +261414,1307.0700000169252,-0.06936461729874346 +261415,1307.0750000169253,-0.0693646031283992 +261416,1307.0800000169254,-0.06936458895750781 +261417,1307.0850000169255,-0.06936457478606935 +261418,1307.0900000169256,-0.06936456061408387 +261419,1307.0950000169257,-0.06936454644155148 +261420,1307.1000000169258,-0.06936453226847221 +261421,1307.105000016926,-0.06936451809484614 +261422,1307.110000016926,-0.06936450392067336 +261423,1307.1150000169262,-0.06936448974595393 +261424,1307.1200000169263,-0.0693644755706879 +261425,1307.1250000169264,-0.06936446139487533 +261426,1307.1300000169265,-0.06936444721851634 +261427,1307.1350000169266,-0.06936443304161095 +261428,1307.1400000169267,-0.06936441886415926 +261429,1307.1450000169268,-0.06936440468616131 +261430,1307.150000016927,-0.06936439050761718 +261431,1307.155000016927,-0.06936437632852696 +261432,1307.1600000169271,-0.06936436214889069 +261433,1307.1650000169273,-0.06936434796870845 +261434,1307.1700000169274,-0.06936433378798032 +261435,1307.1750000169275,-0.06936431960670635 +261436,1307.1800000169276,-0.06936430542488661 +261437,1307.1850000169277,-0.06936429124252118 +261438,1307.1900000169278,-0.06936427705961012 +261439,1307.195000016928,-0.06936426287615349 +261440,1307.200000016928,-0.06936424869215138 +261441,1307.2050000169281,-0.06936423450760384 +261442,1307.2100000169282,-0.06936422032251095 +261443,1307.2150000169283,-0.06936420613687277 +261444,1307.2200000169285,-0.06936419195068938 +261445,1307.2250000169286,-0.06936417776396082 +261446,1307.2300000169287,-0.0693641635766872 +261447,1307.2350000169288,-0.06936414938886858 +261448,1307.240000016929,-0.069364135200505 +261449,1307.245000016929,-0.06936412101159653 +261450,1307.250000016929,-0.06936410682214325 +261451,1307.2550000169292,-0.06936409263214524 +261452,1307.2600000169293,-0.06936407844160256 +261453,1307.2650000169294,-0.06936406425051526 +261454,1307.2700000169295,-0.06936405005888345 +261455,1307.2750000169297,-0.06936403586670715 +261456,1307.2800000169298,-0.06936402167398646 +261457,1307.2850000169299,-0.06936400748072144 +261458,1307.29000001693,-0.06936399328691215 +261459,1307.29500001693,-0.06936397909255866 +261460,1307.3000000169302,-0.06936396489766106 +261461,1307.3050000169303,-0.06936395070221937 +261462,1307.3100000169304,-0.0693639365062337 +261463,1307.3150000169305,-0.0693639223097041 +261464,1307.3200000169306,-0.06936390811263066 +261465,1307.3250000169307,-0.06936389391501342 +261466,1307.3300000169309,-0.06936387971685247 +261467,1307.335000016931,-0.06936386551814785 +261468,1307.340000016931,-0.06936385131889965 +261469,1307.3450000169312,-0.06936383711910793 +261470,1307.3500000169313,-0.06936382291877276 +261471,1307.3550000169314,-0.0693638087178942 +261472,1307.3600000169315,-0.06936379451647233 +261473,1307.3650000169316,-0.06936378031450721 +261474,1307.3700000169317,-0.06936376611199892 +261475,1307.3750000169318,-0.0693637519089475 +261476,1307.380000016932,-0.06936373770535305 +261477,1307.385000016932,-0.0693637235012156 +261478,1307.3900000169322,-0.06936370929653525 +261479,1307.3950000169323,-0.06936369509131206 +261480,1307.4000000169324,-0.06936368088554609 +261481,1307.4050000169325,-0.0693636666792374 +261482,1307.4100000169326,-0.0693636524723861 +261483,1307.4150000169327,-0.0693636382649922 +261484,1307.4200000169328,-0.0693636240570558 +261485,1307.425000016933,-0.06936360984857697 +261486,1307.430000016933,-0.06936359563955576 +261487,1307.4350000169331,-0.06936358142999224 +261488,1307.4400000169333,-0.0693635672198865 +261489,1307.4450000169334,-0.06936355300923858 +261490,1307.4500000169335,-0.06936353879804853 +261491,1307.4550000169336,-0.06936352458631648 +261492,1307.4600000169337,-0.06936351037404244 +261493,1307.4650000169338,-0.06936349616122651 +261494,1307.470000016934,-0.06936348194786873 +261495,1307.475000016934,-0.0693634677339692 +261496,1307.4800000169341,-0.06936345351952797 +261497,1307.4850000169342,-0.0693634393045451 +261498,1307.4900000169343,-0.06936342508902066 +261499,1307.4950000169345,-0.06936341087295472 +261500,1307.5000000169346,-0.06936339665634735 +261501,1307.5050000169347,-0.06936338243919861 +261502,1307.5100000169348,-0.06936336822150857 +261503,1307.515000016935,-0.0693633540032773 +261504,1307.520000016935,-0.06936333978450486 +261505,1307.525000016935,-0.06936332556519131 +261506,1307.5300000169352,-0.06936331134533674 +261507,1307.5350000169353,-0.0693632971249412 +261508,1307.5400000169354,-0.06936328290400476 +261509,1307.5450000169355,-0.0693632686825275 +261510,1307.5500000169357,-0.06936325446050945 +261511,1307.5550000169358,-0.06936324023795072 +261512,1307.5600000169359,-0.06936322601485136 +261513,1307.565000016936,-0.06936321179121141 +261514,1307.570000016936,-0.06936319756703098 +261515,1307.5750000169362,-0.06936318334231012 +261516,1307.5800000169363,-0.0693631691170489 +261517,1307.5850000169364,-0.06936315489124736 +261518,1307.5900000169365,-0.0693631406649056 +261519,1307.5950000169366,-0.06936312643802367 +261520,1307.6000000169367,-0.06936311221060164 +261521,1307.6050000169369,-0.06936309798263958 +261522,1307.610000016937,-0.06936308375413755 +261523,1307.615000016937,-0.06936306952509562 +261524,1307.6200000169372,-0.06936305529551384 +261525,1307.6250000169373,-0.06936304106539232 +261526,1307.6300000169374,-0.06936302683473107 +261527,1307.6350000169375,-0.0693630126035302 +261528,1307.6400000169376,-0.06936299837178975 +261529,1307.6450000169377,-0.0693629841395098 +261530,1307.6500000169378,-0.06936296990669041 +261531,1307.655000016938,-0.06936295567333166 +261532,1307.660000016938,-0.0693629414394336 +261533,1307.6650000169382,-0.0693629272049963 +261534,1307.6700000169383,-0.06936291297001983 +261535,1307.6750000169384,-0.06936289873450424 +261536,1307.6800000169385,-0.06936288449844961 +261537,1307.6850000169386,-0.06936287026185602 +261538,1307.6900000169387,-0.06936285602472352 +261539,1307.6950000169388,-0.06936284178705217 +261540,1307.700000016939,-0.06936282754884203 +261541,1307.705000016939,-0.0693628133100932 +261542,1307.7100000169391,-0.06936279907080573 +261543,1307.7150000169393,-0.06936278483097967 +261544,1307.7200000169394,-0.06936277059061509 +261545,1307.7250000169395,-0.06936275634971206 +261546,1307.7300000169396,-0.06936274210827065 +261547,1307.7350000169397,-0.06936272786629093 +261548,1307.7400000169398,-0.06936271362377294 +261549,1307.74500001694,-0.06936269938071679 +261550,1307.75000001694,-0.06936268513712252 +261551,1307.7550000169401,-0.06936267089299018 +261552,1307.7600000169402,-0.06936265664831985 +261553,1307.7650000169403,-0.06936264240311163 +261554,1307.7700000169405,-0.06936262815736552 +261555,1307.7750000169406,-0.06936261391108164 +261556,1307.7800000169407,-0.06936259966426003 +261557,1307.7850000169408,-0.06936258541690075 +261558,1307.790000016941,-0.06936257116900389 +261559,1307.795000016941,-0.06936255692056949 +261560,1307.800000016941,-0.06936254267159762 +261561,1307.8050000169412,-0.06936252842208836 +261562,1307.8100000169413,-0.06936251417204177 +261563,1307.8150000169414,-0.06936249992145792 +261564,1307.8200000169415,-0.06936248567033686 +261565,1307.8250000169417,-0.06936247141867866 +261566,1307.8300000169418,-0.06936245716648338 +261567,1307.8350000169419,-0.06936244291375111 +261568,1307.840000016942,-0.0693624286604819 +261569,1307.845000016942,-0.06936241440667582 +261570,1307.8500000169422,-0.06936240015233291 +261571,1307.8550000169423,-0.06936238589745326 +261572,1307.8600000169424,-0.06936237164203694 +261573,1307.8650000169425,-0.06936235738608401 +261574,1307.8700000169426,-0.06936234312959452 +261575,1307.8750000169427,-0.06936232887256856 +261576,1307.8800000169429,-0.06936231461500615 +261577,1307.885000016943,-0.06936230035690741 +261578,1307.890000016943,-0.06936228609827239 +261579,1307.8950000169432,-0.06936227183910113 +261580,1307.9000000169433,-0.06936225757939371 +261581,1307.9050000169434,-0.0693622433191502 +261582,1307.9100000169435,-0.06936222905837067 +261583,1307.9150000169436,-0.06936221479705515 +261584,1307.9200000169437,-0.06936220053520374 +261585,1307.9250000169438,-0.0693621862728165 +261586,1307.930000016944,-0.06936217200989349 +261587,1307.935000016944,-0.06936215774643478 +261588,1307.9400000169442,-0.06936214348244042 +261589,1307.9450000169443,-0.06936212921791049 +261590,1307.9500000169444,-0.06936211495284506 +261591,1307.9550000169445,-0.06936210068724416 +261592,1307.9600000169446,-0.0693620864211079 +261593,1307.9650000169447,-0.06936207215443632 +261594,1307.9700000169448,-0.06936205788722949 +261595,1307.975000016945,-0.06936204361948747 +261596,1307.980000016945,-0.06936202935121033 +261597,1307.9850000169452,-0.06936201508239812 +261598,1307.9900000169453,-0.06936200081305091 +261599,1307.9950000169454,-0.06936198654316879 +261600,1308.0000000169455,-0.0693619722727518 +261601,1308.0050000169456,-0.0693619580018 +261602,1308.0100000169457,-0.06936194373031349 +261603,1308.0150000169458,-0.0693619294582923 +261604,1308.020000016946,-0.06936191518573649 +261605,1308.025000016946,-0.06936190091264616 +261606,1308.0300000169461,-0.06936188663902132 +261607,1308.0350000169462,-0.06936187236486208 +261608,1308.0400000169464,-0.0693618580901685 +261609,1308.0450000169465,-0.06936184381494064 +261610,1308.0500000169466,-0.06936182953917853 +261611,1308.0550000169467,-0.06936181526288229 +261612,1308.0600000169468,-0.06936180098605195 +261613,1308.065000016947,-0.06936178670868758 +261614,1308.070000016947,-0.06936177243078924 +261615,1308.0750000169471,-0.06936175815235701 +261616,1308.0800000169472,-0.06936174387339095 +261617,1308.0850000169473,-0.06936172959389111 +261618,1308.0900000169474,-0.06936171531385757 +261619,1308.0950000169476,-0.06936170103329038 +261620,1308.1000000169477,-0.06936168675218962 +261621,1308.1050000169478,-0.06936167247055534 +261622,1308.1100000169479,-0.06936165818838762 +261623,1308.115000016948,-0.06936164390568651 +261624,1308.120000016948,-0.06936162962245207 +261625,1308.1250000169482,-0.06936161533868437 +261626,1308.1300000169483,-0.06936160105438349 +261627,1308.1350000169484,-0.06936158676954947 +261628,1308.1400000169485,-0.06936157248418237 +261629,1308.1450000169486,-0.06936155819828228 +261630,1308.1500000169488,-0.06936154391184926 +261631,1308.1550000169489,-0.06936152962488334 +261632,1308.160000016949,-0.06936151533738462 +261633,1308.165000016949,-0.06936150104935315 +261634,1308.1700000169492,-0.06936148676078899 +261635,1308.1750000169493,-0.0693614724716922 +261636,1308.1800000169494,-0.06936145818206288 +261637,1308.1850000169495,-0.06936144389190105 +261638,1308.1900000169496,-0.0693614296012068 +261639,1308.1950000169497,-0.06936141530998018 +261640,1308.2000000169498,-0.06936140101822125 +261641,1308.20500001695,-0.06936138672593008 +261642,1308.21000001695,-0.06936137243310674 +261643,1308.2150000169502,-0.06936135813975129 +261644,1308.2200000169503,-0.06936134384586379 +261645,1308.2250000169504,-0.0693613295514443 +261646,1308.2300000169505,-0.0693613152564929 +261647,1308.2350000169506,-0.06936130096100963 +261648,1308.2400000169507,-0.06936128666499458 +261649,1308.2450000169508,-0.06936127236844779 +261650,1308.250000016951,-0.06936125807136934 +261651,1308.255000016951,-0.06936124377375927 +261652,1308.2600000169512,-0.06936122947561767 +261653,1308.2650000169513,-0.06936121517694459 +261654,1308.2700000169514,-0.06936120087774009 +261655,1308.2750000169515,-0.06936118657800423 +261656,1308.2800000169516,-0.0693611722777371 +261657,1308.2850000169517,-0.06936115797693874 +261658,1308.2900000169518,-0.06936114367560924 +261659,1308.295000016952,-0.06936112937374861 +261660,1308.300000016952,-0.06936111507135696 +261661,1308.3050000169521,-0.06936110076843434 +261662,1308.3100000169522,-0.0693610864649808 +261663,1308.3150000169524,-0.06936107216099642 +261664,1308.3200000169525,-0.06936105785648125 +261665,1308.3250000169526,-0.06936104355143538 +261666,1308.3300000169527,-0.06936102924585884 +261667,1308.3350000169528,-0.0693610149397517 +261668,1308.340000016953,-0.06936100063311404 +261669,1308.345000016953,-0.06936098632594591 +261670,1308.3500000169531,-0.06936097201824737 +261671,1308.3550000169532,-0.06936095771001849 +261672,1308.3600000169533,-0.06936094340125933 +261673,1308.3650000169534,-0.06936092909196993 +261674,1308.3700000169536,-0.06936091478215041 +261675,1308.3750000169537,-0.06936090047180078 +261676,1308.3800000169538,-0.06936088616092113 +261677,1308.3850000169539,-0.06936087184951151 +261678,1308.390000016954,-0.06936085753757198 +261679,1308.395000016954,-0.06936084322510262 +261680,1308.4000000169542,-0.06936082891210349 +261681,1308.4050000169543,-0.06936081459857464 +261682,1308.4100000169544,-0.06936080028451613 +261683,1308.4150000169545,-0.06936078596992805 +261684,1308.4200000169546,-0.06936077165481042 +261685,1308.4250000169548,-0.06936075733916335 +261686,1308.4300000169549,-0.06936074302298685 +261687,1308.435000016955,-0.06936072870628103 +261688,1308.440000016955,-0.06936071438904592 +261689,1308.4450000169552,-0.06936070007128162 +261690,1308.4500000169553,-0.06936068575298815 +261691,1308.4550000169554,-0.06936067143416559 +261692,1308.4600000169555,-0.06936065711481403 +261693,1308.4650000169556,-0.06936064279493347 +261694,1308.4700000169557,-0.06936062847452402 +261695,1308.4750000169558,-0.06936061415358573 +261696,1308.480000016956,-0.06936059983211866 +261697,1308.485000016956,-0.06936058551012289 +261698,1308.4900000169562,-0.06936057118759846 +261699,1308.4950000169563,-0.06936055686454543 +261700,1308.5000000169564,-0.06936054254096388 +261701,1308.5050000169565,-0.06936052821685387 +261702,1308.5100000169566,-0.06936051389221545 +261703,1308.5150000169567,-0.06936049956704869 +261704,1308.5200000169568,-0.06936048524135364 +261705,1308.525000016957,-0.0693604709151304 +261706,1308.530000016957,-0.06936045658837899 +261707,1308.5350000169572,-0.06936044226109948 +261708,1308.5400000169573,-0.06936042793329195 +261709,1308.5450000169574,-0.06936041360495644 +261710,1308.5500000169575,-0.06936039927609303 +261711,1308.5550000169576,-0.06936038494670176 +261712,1308.5600000169577,-0.06936037061678271 +261713,1308.5650000169578,-0.06936035628633595 +261714,1308.570000016958,-0.06936034195536153 +261715,1308.575000016958,-0.06936032762385952 +261716,1308.5800000169581,-0.06936031329182997 +261717,1308.5850000169582,-0.06936029895927294 +261718,1308.5900000169584,-0.0693602846261885 +261719,1308.5950000169585,-0.06936027029257671 +261720,1308.6000000169586,-0.06936025595843763 +261721,1308.6050000169587,-0.06936024162377133 +261722,1308.6100000169588,-0.06936022728857787 +261723,1308.615000016959,-0.0693602129528573 +261724,1308.620000016959,-0.06936019861660969 +261725,1308.6250000169591,-0.0693601842798351 +261726,1308.6300000169592,-0.0693601699425336 +261727,1308.6350000169593,-0.06936015560470524 +261728,1308.6400000169594,-0.06936014126635008 +261729,1308.6450000169596,-0.06936012692746821 +261730,1308.6500000169597,-0.06936011258805963 +261731,1308.6550000169598,-0.06936009824812447 +261732,1308.6600000169599,-0.06936008390766275 +261733,1308.66500001696,-0.06936006956667455 +261734,1308.67000001696,-0.06936005522515992 +261735,1308.6750000169602,-0.06936004088311894 +261736,1308.6800000169603,-0.06936002654055165 +261737,1308.6850000169604,-0.0693600121974581 +261738,1308.6900000169605,-0.0693599978538384 +261739,1308.6950000169606,-0.06935998350969257 +261740,1308.7000000169608,-0.06935996916502069 +261741,1308.7050000169609,-0.06935995481982281 +261742,1308.710000016961,-0.06935994047409899 +261743,1308.715000016961,-0.0693599261278493 +261744,1308.7200000169612,-0.06935991178107381 +261745,1308.7250000169613,-0.06935989743377256 +261746,1308.7300000169614,-0.06935988308594562 +261747,1308.7350000169615,-0.06935986873759306 +261748,1308.7400000169616,-0.06935985438871493 +261749,1308.7450000169617,-0.0693598400393113 +261750,1308.7500000169618,-0.06935982568938222 +261751,1308.755000016962,-0.06935981133892775 +261752,1308.760000016962,-0.06935979698794797 +261753,1308.7650000169622,-0.06935978263644293 +261754,1308.7700000169623,-0.06935976828441268 +261755,1308.7750000169624,-0.0693597539318573 +261756,1308.7800000169625,-0.06935973957877684 +261757,1308.7850000169626,-0.06935972522517136 +261758,1308.7900000169627,-0.06935971087104094 +261759,1308.7950000169628,-0.06935969651638561 +261760,1308.800000016963,-0.06935968216120546 +261761,1308.805000016963,-0.06935966780550053 +261762,1308.8100000169632,-0.06935965344927088 +261763,1308.8150000169633,-0.06935963909251659 +261764,1308.8200000169634,-0.0693596247352377 +261765,1308.8250000169635,-0.0693596103774343 +261766,1308.8300000169636,-0.06935959601910642 +261767,1308.8350000169637,-0.06935958166025413 +261768,1308.8400000169638,-0.0693595673008775 +261769,1308.845000016964,-0.06935955294097658 +261770,1308.850000016964,-0.06935953858055142 +261771,1308.8550000169641,-0.06935952421960212 +261772,1308.8600000169642,-0.0693595098581287 +261773,1308.8650000169644,-0.06935949549613124 +261774,1308.8700000169645,-0.0693594811336098 +261775,1308.8750000169646,-0.06935946677056444 +261776,1308.8800000169647,-0.06935945240699522 +261777,1308.8850000169648,-0.06935943804290219 +261778,1308.890000016965,-0.06935942367828543 +261779,1308.895000016965,-0.06935940931314498 +261780,1308.9000000169651,-0.0693593949474809 +261781,1308.9050000169652,-0.06935938058129328 +261782,1308.9100000169653,-0.06935936621458215 +261783,1308.9150000169655,-0.0693593518473476 +261784,1308.9200000169656,-0.06935933747958965 +261785,1308.9250000169657,-0.0693593231113084 +261786,1308.9300000169658,-0.06935930874250389 +261787,1308.935000016966,-0.06935929437317617 +261788,1308.940000016966,-0.06935928000332532 +261789,1308.945000016966,-0.0693592656329514 +261790,1308.9500000169662,-0.06935925126205447 +261791,1308.9550000169663,-0.06935923689063458 +261792,1308.9600000169664,-0.0693592225186918 +261793,1308.9650000169665,-0.06935920814622616 +261794,1308.9700000169667,-0.06935919377323778 +261795,1308.9750000169668,-0.06935917939972668 +261796,1308.9800000169669,-0.0693591650256929 +261797,1308.985000016967,-0.06935915065113654 +261798,1308.990000016967,-0.06935913627605765 +261799,1308.9950000169672,-0.06935912190045629 +261800,1309.0000000169673,-0.0693591075243325 +261801,1309.0050000169674,-0.06935909314768637 +261802,1309.0100000169675,-0.06935907877051795 +261803,1309.0150000169676,-0.06935906439282728 +261804,1309.0200000169677,-0.06935905001461444 +261805,1309.0250000169679,-0.0693590356358795 +261806,1309.030000016968,-0.0693590212566225 +261807,1309.035000016968,-0.0693590068768435 +261808,1309.0400000169682,-0.06935899249654257 +261809,1309.0450000169683,-0.06935897811571977 +261810,1309.0500000169684,-0.06935896373437515 +261811,1309.0550000169685,-0.06935894935250878 +261812,1309.0600000169686,-0.06935893497012072 +261813,1309.0650000169687,-0.06935892058721102 +261814,1309.0700000169688,-0.06935890620377974 +261815,1309.075000016969,-0.06935889181982695 +261816,1309.080000016969,-0.06935887743535271 +261817,1309.0850000169692,-0.06935886305035707 +261818,1309.0900000169693,-0.0693588486648401 +261819,1309.0950000169694,-0.06935883427880184 +261820,1309.1000000169695,-0.06935881989224237 +261821,1309.1050000169696,-0.06935880550516174 +261822,1309.1100000169697,-0.06935879111756002 +261823,1309.1150000169698,-0.06935877672943726 +261824,1309.12000001697,-0.06935876234079351 +261825,1309.12500001697,-0.06935874795162884 +261826,1309.1300000169701,-0.06935873356194333 +261827,1309.1350000169703,-0.06935871917173701 +261828,1309.1400000169704,-0.06935870478100994 +261829,1309.1450000169705,-0.06935869038976222 +261830,1309.1500000169706,-0.06935867599799386 +261831,1309.1550000169707,-0.06935866160570495 +261832,1309.1600000169708,-0.06935864721289552 +261833,1309.165000016971,-0.06935863281956565 +261834,1309.170000016971,-0.0693586184257154 +261835,1309.1750000169711,-0.06935860403134482 +261836,1309.1800000169712,-0.06935858963645399 +261837,1309.1850000169713,-0.06935857524104294 +261838,1309.1900000169715,-0.06935856084511176 +261839,1309.1950000169716,-0.06935854644866048 +261840,1309.2000000169717,-0.06935853205168917 +261841,1309.2050000169718,-0.0693585176541979 +261842,1309.210000016972,-0.06935850325618671 +261843,1309.215000016972,-0.06935848885765568 +261844,1309.220000016972,-0.06935847445860485 +261845,1309.2250000169722,-0.06935846005903429 +261846,1309.2300000169723,-0.06935844565894406 +261847,1309.2350000169724,-0.06935843125833421 +261848,1309.2400000169725,-0.06935841685720481 +261849,1309.2450000169727,-0.06935840245555593 +261850,1309.2500000169728,-0.06935838805338759 +261851,1309.2550000169729,-0.06935837365069987 +261852,1309.260000016973,-0.06935835924749284 +261853,1309.265000016973,-0.06935834484376656 +261854,1309.2700000169732,-0.06935833043952107 +261855,1309.2750000169733,-0.06935831603475644 +261856,1309.2800000169734,-0.06935830162947274 +261857,1309.2850000169735,-0.06935828722367 +261858,1309.2900000169736,-0.06935827281734831 +261859,1309.2950000169737,-0.0693582584105077 +261860,1309.3000000169739,-0.06935824400314825 +261861,1309.305000016974,-0.06935822959527001 +261862,1309.310000016974,-0.06935821518687305 +261863,1309.3150000169742,-0.06935820077795739 +261864,1309.3200000169743,-0.06935818636852313 +261865,1309.3250000169744,-0.06935817195857033 +261866,1309.3300000169745,-0.06935815754809901 +261867,1309.3350000169746,-0.06935814313710928 +261868,1309.3400000169747,-0.06935812872560117 +261869,1309.3450000169748,-0.06935811431357473 +261870,1309.350000016975,-0.06935809990103003 +261871,1309.355000016975,-0.06935808548796714 +261872,1309.3600000169752,-0.06935807107438609 +261873,1309.3650000169753,-0.06935805666028697 +261874,1309.3700000169754,-0.06935804224566981 +261875,1309.3750000169755,-0.0693580278305347 +261876,1309.3800000169756,-0.06935801341488167 +261877,1309.3850000169757,-0.0693579989987108 +261878,1309.3900000169758,-0.06935798458202212 +261879,1309.395000016976,-0.06935797016481572 +261880,1309.400000016976,-0.06935795574709165 +261881,1309.4050000169761,-0.06935794132884997 +261882,1309.4100000169763,-0.06935792691009071 +261883,1309.4150000169764,-0.06935791249081397 +261884,1309.4200000169765,-0.06935789807101976 +261885,1309.4250000169766,-0.06935788365070819 +261886,1309.4300000169767,-0.06935786922987928 +261887,1309.4350000169768,-0.06935785480853313 +261888,1309.440000016977,-0.06935784038666976 +261889,1309.445000016977,-0.06935782596428922 +261890,1309.4500000169771,-0.0693578115413916 +261891,1309.4550000169772,-0.06935779711797695 +261892,1309.4600000169773,-0.06935778269404531 +261893,1309.4650000169775,-0.06935776826959676 +261894,1309.4700000169776,-0.06935775384463136 +261895,1309.4750000169777,-0.06935773941914916 +261896,1309.4800000169778,-0.06935772499315021 +261897,1309.485000016978,-0.06935771056663458 +261898,1309.490000016978,-0.06935769613960233 +261899,1309.495000016978,-0.06935768171205349 +261900,1309.5000000169782,-0.06935766728398815 +261901,1309.5050000169783,-0.06935765285540636 +261902,1309.5100000169784,-0.06935763842630817 +261903,1309.5150000169785,-0.06935762399669365 +261904,1309.5200000169787,-0.06935760956656284 +261905,1309.5250000169788,-0.06935759513591581 +261906,1309.5300000169789,-0.06935758070475262 +261907,1309.535000016979,-0.06935756627307334 +261908,1309.540000016979,-0.069357551840878 +261909,1309.5450000169792,-0.06935753740816666 +261910,1309.5500000169793,-0.0693575229749394 +261911,1309.5550000169794,-0.06935750854119627 +261912,1309.5600000169795,-0.06935749410693731 +261913,1309.5650000169796,-0.0693574796721626 +261914,1309.5700000169797,-0.06935746523687218 +261915,1309.5750000169799,-0.06935745080106613 +261916,1309.58000001698,-0.06935743636474449 +261917,1309.58500001698,-0.06935742192790732 +261918,1309.5900000169802,-0.06935740749055468 +261919,1309.5950000169803,-0.06935739305268664 +261920,1309.6000000169804,-0.06935737861430323 +261921,1309.6050000169805,-0.06935736417540453 +261922,1309.6100000169806,-0.06935734973599059 +261923,1309.6150000169807,-0.06935733529606145 +261924,1309.6200000169808,-0.0693573208556172 +261925,1309.625000016981,-0.06935730641465788 +261926,1309.630000016981,-0.06935729197318356 +261927,1309.6350000169812,-0.06935727753119429 +261928,1309.6400000169813,-0.06935726308869011 +261929,1309.6450000169814,-0.06935724864567111 +261930,1309.6500000169815,-0.06935723420213732 +261931,1309.6550000169816,-0.0693572197580888 +261932,1309.6600000169817,-0.06935720531352563 +261933,1309.6650000169818,-0.06935719086844784 +261934,1309.670000016982,-0.06935717642285551 +261935,1309.675000016982,-0.06935716197674867 +261936,1309.6800000169821,-0.06935714753012741 +261937,1309.6850000169823,-0.06935713308299177 +261938,1309.6900000169824,-0.0693571186353418 +261939,1309.6950000169825,-0.06935710418717758 +261940,1309.7000000169826,-0.06935708973849915 +261941,1309.7050000169827,-0.06935707528930656 +261942,1309.7100000169828,-0.06935706083959989 +261943,1309.715000016983,-0.06935704638937916 +261944,1309.720000016983,-0.06935703193864447 +261945,1309.7250000169831,-0.06935701748739587 +261946,1309.7300000169832,-0.0693570030356334 +261947,1309.7350000169833,-0.06935698858335712 +261948,1309.7400000169835,-0.0693569741305671 +261949,1309.7450000169836,-0.06935695967726338 +261950,1309.7500000169837,-0.06935694522344601 +261951,1309.7550000169838,-0.06935693076911509 +261952,1309.760000016984,-0.06935691631427063 +261953,1309.765000016984,-0.06935690185891269 +261954,1309.770000016984,-0.06935688740304136 +261955,1309.7750000169842,-0.06935687294665668 +261956,1309.7800000169843,-0.06935685848975871 +261957,1309.7850000169844,-0.0693568440323475 +261958,1309.7900000169845,-0.0693568295744231 +261959,1309.7950000169847,-0.06935681511598558 +261960,1309.8000000169848,-0.06935680065703499 +261961,1309.8050000169849,-0.0693567861975714 +261962,1309.810000016985,-0.06935677173759486 +261963,1309.815000016985,-0.06935675727710541 +261964,1309.8200000169852,-0.06935674281610314 +261965,1309.8250000169853,-0.06935672835458807 +261966,1309.8300000169854,-0.06935671389256028 +261967,1309.8350000169855,-0.06935669943001982 +261968,1309.8400000169856,-0.06935668496696674 +261969,1309.8450000169858,-0.06935667050340111 +261970,1309.8500000169859,-0.06935665603932299 +261971,1309.855000016986,-0.06935664157473242 +261972,1309.860000016986,-0.06935662710962946 +261973,1309.8650000169862,-0.06935661264401417 +261974,1309.8700000169863,-0.06935659817788663 +261975,1309.8750000169864,-0.06935658371124684 +261976,1309.8800000169865,-0.0693565692440949 +261977,1309.8850000169866,-0.06935655477643085 +261978,1309.8900000169867,-0.06935654030825476 +261979,1309.8950000169868,-0.06935652583956668 +261980,1309.900000016987,-0.06935651137036668 +261981,1309.905000016987,-0.06935649690065479 +261982,1309.9100000169872,-0.06935648243043109 +261983,1309.9150000169873,-0.0693564679596956 +261984,1309.9200000169874,-0.06935645348844842 +261985,1309.9250000169875,-0.0693564390166896 +261986,1309.9300000169876,-0.06935642454441916 +261987,1309.9350000169877,-0.06935641007163719 +261988,1309.9400000169878,-0.06935639559834372 +261989,1309.945000016988,-0.06935638112453885 +261990,1309.950000016988,-0.0693563666502226 +261991,1309.9550000169882,-0.06935635217539503 +261992,1309.9600000169883,-0.0693563377000562 +261993,1309.9650000169884,-0.06935632322420618 +261994,1309.9700000169885,-0.06935630874784501 +261995,1309.9750000169886,-0.06935629427097274 +261996,1309.9800000169887,-0.06935627979358944 +261997,1309.9850000169888,-0.06935626531569516 +261998,1309.990000016989,-0.06935625083728998 +261999,1309.995000016989,-0.06935623635837392 +262000,1310.0000000169891,-0.06935622187894704 +262001,1310.0050000169892,-0.06935620739900941 +262002,1310.0100000169894,-0.06935619291856109 +262003,1310.0150000169895,-0.06935617843760211 +262004,1310.0200000169896,-0.06935616395613256 +262005,1310.0250000169897,-0.06935614947415249 +262006,1310.0300000169898,-0.06935613499166193 +262007,1310.03500001699,-0.06935612050866097 +262008,1310.04000001699,-0.06935610602514963 +262009,1310.0450000169901,-0.069356091541128 +262010,1310.0500000169902,-0.0693560770565961 +262011,1310.0550000169903,-0.06935606257155402 +262012,1310.0600000169904,-0.06935604808600179 +262013,1310.0650000169906,-0.0693560335999395 +262014,1310.0700000169907,-0.06935601911336717 +262015,1310.0750000169908,-0.06935600462628487 +262016,1310.0800000169909,-0.06935599013869265 +262017,1310.085000016991,-0.06935597565059057 +262018,1310.090000016991,-0.06935596116197869 +262019,1310.0950000169912,-0.06935594667285706 +262020,1310.1000000169913,-0.06935593218322574 +262021,1310.1050000169914,-0.06935591769308477 +262022,1310.1100000169915,-0.06935590320243423 +262023,1310.1150000169916,-0.06935588871127417 +262024,1310.1200000169918,-0.06935587421960464 +262025,1310.1250000169919,-0.06935585972742568 +262026,1310.130000016992,-0.06935584523473737 +262027,1310.135000016992,-0.06935583074153977 +262028,1310.1400000169922,-0.06935581624783291 +262029,1310.1450000169923,-0.06935580175361684 +262030,1310.1500000169924,-0.06935578725889166 +262031,1310.1550000169925,-0.06935577276365738 +262032,1310.1600000169926,-0.06935575826791408 +262033,1310.1650000169927,-0.06935574377166183 +262034,1310.1700000169928,-0.06935572927490063 +262035,1310.175000016993,-0.0693557147776306 +262036,1310.180000016993,-0.06935570027985175 +262037,1310.1850000169932,-0.06935568578156415 +262038,1310.1900000169933,-0.06935567128276786 +262039,1310.1950000169934,-0.06935565678346294 +262040,1310.2000000169935,-0.06935564228364942 +262041,1310.2050000169936,-0.06935562778332738 +262042,1310.2100000169937,-0.06935561328249687 +262043,1310.2150000169938,-0.06935559878115793 +262044,1310.220000016994,-0.06935558427931066 +262045,1310.225000016994,-0.06935556977695505 +262046,1310.2300000169942,-0.06935555527409121 +262047,1310.2350000169943,-0.06935554077071915 +262048,1310.2400000169944,-0.06935552626683895 +262049,1310.2450000169945,-0.06935551176245068 +262050,1310.2500000169946,-0.06935549725755437 +262051,1310.2550000169947,-0.06935548275215009 +262052,1310.2600000169948,-0.06935546824623788 +262053,1310.265000016995,-0.0693554537398178 +262054,1310.270000016995,-0.06935543923288992 +262055,1310.2750000169951,-0.06935542472545429 +262056,1310.2800000169952,-0.06935541021751095 +262057,1310.2850000169954,-0.06935539570905996 +262058,1310.2900000169955,-0.06935538120010139 +262059,1310.2950000169956,-0.06935536669063529 +262060,1310.3000000169957,-0.06935535218066169 +262061,1310.3050000169958,-0.06935533767018066 +262062,1310.310000016996,-0.06935532315919227 +262063,1310.315000016996,-0.06935530864769657 +262064,1310.3200000169961,-0.06935529413569358 +262065,1310.3250000169962,-0.06935527962318341 +262066,1310.3300000169963,-0.06935526511016607 +262067,1310.3350000169964,-0.06935525059664165 +262068,1310.3400000169966,-0.06935523608261017 +262069,1310.3450000169967,-0.0693552215680717 +262070,1310.3500000169968,-0.06935520705302631 +262071,1310.3550000169969,-0.06935519253747405 +262072,1310.360000016997,-0.06935517802141494 +262073,1310.365000016997,-0.06935516350484908 +262074,1310.3700000169972,-0.0693551489877765 +262075,1310.3750000169973,-0.06935513447019727 +262076,1310.3800000169974,-0.06935511995211142 +262077,1310.3850000169975,-0.06935510543351903 +262078,1310.3900000169976,-0.06935509091442013 +262079,1310.3950000169978,-0.06935507639481481 +262080,1310.4000000169979,-0.06935506187470308 +262081,1310.405000016998,-0.06935504735408503 +262082,1310.410000016998,-0.0693550328329607 +262083,1310.4150000169982,-0.06935501831133016 +262084,1310.4200000169983,-0.06935500378919343 +262085,1310.4250000169984,-0.06935498926655059 +262086,1310.4300000169985,-0.0693549747434017 +262087,1310.4350000169986,-0.0693549602197468 +262088,1310.4400000169987,-0.06935494569558594 +262089,1310.4450000169988,-0.06935493117091919 +262090,1310.450000016999,-0.0693549166457466 +262091,1310.455000016999,-0.06935490212006822 +262092,1310.4600000169992,-0.0693548875938841 +262093,1310.4650000169993,-0.0693548730671943 +262094,1310.4700000169994,-0.06935485853999888 +262095,1310.4750000169995,-0.06935484401229788 +262096,1310.4800000169996,-0.06935482948409138 +262097,1310.4850000169997,-0.06935481495537942 +262098,1310.4900000169998,-0.06935480042616203 +262099,1310.495000017,-0.0693547858964393 +262100,1310.500000017,-0.06935477136621127 +262101,1310.5050000170002,-0.06935475683547798 +262102,1310.5100000170003,-0.06935474230423952 +262103,1310.5150000170004,-0.06935472777249592 +262104,1310.5200000170005,-0.06935471324024722 +262105,1310.5250000170006,-0.0693546987074935 +262106,1310.5300000170007,-0.0693546841742348 +262107,1310.5350000170008,-0.06935466964047118 +262108,1310.540000017001,-0.0693546551062027 +262109,1310.545000017001,-0.0693546405714294 +262110,1310.5500000170011,-0.06935462603615135 +262111,1310.5550000170012,-0.06935461150036858 +262112,1310.5600000170014,-0.06935459696408117 +262113,1310.5650000170015,-0.06935458242728916 +262114,1310.5700000170016,-0.06935456788999261 +262115,1310.5750000170017,-0.06935455335219157 +262116,1310.5800000170018,-0.06935453881388608 +262117,1310.585000017002,-0.06935452427507621 +262118,1310.590000017002,-0.06935450973576203 +262119,1310.5950000170021,-0.06935449519594356 +262120,1310.6000000170022,-0.06935448065562087 +262121,1310.6050000170023,-0.06935446611479403 +262122,1310.6100000170024,-0.06935445157346307 +262123,1310.6150000170026,-0.06935443703162805 +262124,1310.6200000170027,-0.06935442248928902 +262125,1310.6250000170028,-0.06935440794644605 +262126,1310.6300000170029,-0.06935439340309917 +262127,1310.635000017003,-0.06935437885924844 +262128,1310.640000017003,-0.06935436431489393 +262129,1310.6450000170032,-0.06935434977003568 +262130,1310.6500000170033,-0.06935433522467377 +262131,1310.6550000170034,-0.06935432067880822 +262132,1310.6600000170035,-0.06935430613243908 +262133,1310.6650000170036,-0.06935429158556641 +262134,1310.6700000170038,-0.06935427703819029 +262135,1310.6750000170039,-0.06935426249031075 +262136,1310.680000017004,-0.06935424794192784 +262137,1310.685000017004,-0.06935423339304163 +262138,1310.6900000170042,-0.06935421884365216 +262139,1310.6950000170043,-0.06935420429375949 +262140,1310.7000000170044,-0.06935418974336367 +262141,1310.7050000170045,-0.06935417519246477 +262142,1310.7100000170046,-0.06935416064106283 +262143,1310.7150000170047,-0.06935414608915788 +262144,1310.7200000170048,-0.06935413153675 +262145,1310.725000017005,-0.06935411698383925 +262146,1310.730000017005,-0.06935410243042567 +262147,1310.7350000170052,-0.06935408787650932 +262148,1310.7400000170053,-0.06935407332209025 +262149,1310.7450000170054,-0.06935405876716849 +262150,1310.7500000170055,-0.06935404421174414 +262151,1310.7550000170056,-0.06935402965581723 +262152,1310.7600000170057,-0.06935401509938781 +262153,1310.7650000170058,-0.06935400054245594 +262154,1310.770000017006,-0.06935398598502165 +262155,1310.775000017006,-0.06935397142708503 +262156,1310.7800000170062,-0.06935395686864611 +262157,1310.7850000170063,-0.06935394230970494 +262158,1310.7900000170064,-0.0693539277502616 +262159,1310.7950000170065,-0.06935391319031611 +262160,1310.8000000170066,-0.06935389862986854 +262161,1310.8050000170067,-0.06935388406891893 +262162,1310.8100000170068,-0.06935386950746736 +262163,1310.815000017007,-0.06935385494551384 +262164,1310.820000017007,-0.06935384038305847 +262165,1310.8250000170071,-0.06935382582010129 +262166,1310.8300000170073,-0.06935381125664233 +262167,1310.8350000170074,-0.06935379669268167 +262168,1310.8400000170075,-0.06935378212821935 +262169,1310.8450000170076,-0.06935376756325543 +262170,1310.8500000170077,-0.06935375299778994 +262171,1310.8550000170078,-0.06935373843182296 +262172,1310.860000017008,-0.06935372386535454 +262173,1310.865000017008,-0.06935370929838472 +262174,1310.8700000170081,-0.06935369473091356 +262175,1310.8750000170082,-0.06935368016294112 +262176,1310.8800000170083,-0.06935366559446743 +262177,1310.8850000170085,-0.06935365102549257 +262178,1310.8900000170086,-0.06935363645601658 +262179,1310.8950000170087,-0.06935362188603951 +262180,1310.9000000170088,-0.06935360731556141 +262181,1310.905000017009,-0.06935359274458233 +262182,1310.910000017009,-0.06935357817310235 +262183,1310.915000017009,-0.06935356360112149 +262184,1310.9200000170092,-0.06935354902863984 +262185,1310.9250000170093,-0.06935353445565741 +262186,1310.9300000170094,-0.06935351988217427 +262187,1310.9350000170095,-0.06935350530819048 +262188,1310.9400000170097,-0.06935349073370609 +262189,1310.9450000170098,-0.06935347615872114 +262190,1310.9500000170099,-0.0693534615832357 +262191,1310.95500001701,-0.06935344700724981 +262192,1310.96000001701,-0.06935343243076353 +262193,1310.9650000170102,-0.06935341785377692 +262194,1310.9700000170103,-0.06935340327629001 +262195,1310.9750000170104,-0.06935338869830286 +262196,1310.9800000170105,-0.06935337411981554 +262197,1310.9850000170106,-0.06935335954082808 +262198,1310.9900000170107,-0.06935334496134056 +262199,1310.9950000170109,-0.069353330381353 +262200,1311.000000017011,-0.06935331580086546 +262201,1311.005000017011,-0.06935330121987801 +262202,1311.0100000170112,-0.06935328663839069 +262203,1311.0150000170113,-0.06935327205640356 +262204,1311.0200000170114,-0.06935325747391666 +262205,1311.0250000170115,-0.06935324289093005 +262206,1311.0300000170116,-0.06935322830744377 +262207,1311.0350000170117,-0.0693532137234579 +262208,1311.0400000170118,-0.06935319913897248 +262209,1311.045000017012,-0.06935318455398753 +262210,1311.050000017012,-0.06935316996850316 +262211,1311.0550000170122,-0.06935315538251938 +262212,1311.0600000170123,-0.06935314079603624 +262213,1311.0650000170124,-0.06935312620905383 +262214,1311.0700000170125,-0.06935311162157216 +262215,1311.0750000170126,-0.06935309703359131 +262216,1311.0800000170127,-0.06935308244511133 +262217,1311.0850000170128,-0.06935306785613225 +262218,1311.090000017013,-0.06935305326665415 +262219,1311.095000017013,-0.06935303867667708 +262220,1311.1000000170131,-0.06935302408620106 +262221,1311.1050000170133,-0.06935300949522617 +262222,1311.1100000170134,-0.06935299490375246 +262223,1311.1150000170135,-0.06935298031177997 +262224,1311.1200000170136,-0.06935296571930877 +262225,1311.1250000170137,-0.0693529511263389 +262226,1311.1300000170138,-0.0693529365328704 +262227,1311.135000017014,-0.06935292193890334 +262228,1311.140000017014,-0.06935290734443778 +262229,1311.1450000170141,-0.06935289274947375 +262230,1311.1500000170142,-0.0693528781540113 +262231,1311.1550000170143,-0.06935286355805051 +262232,1311.1600000170145,-0.0693528489615914 +262233,1311.1650000170146,-0.06935283436463403 +262234,1311.1700000170147,-0.06935281976717847 +262235,1311.1750000170148,-0.06935280516922476 +262236,1311.180000017015,-0.06935279057077295 +262237,1311.185000017015,-0.0693527759718231 +262238,1311.190000017015,-0.06935276137237524 +262239,1311.1950000170152,-0.06935274677242946 +262240,1311.2000000170153,-0.06935273217198577 +262241,1311.2050000170154,-0.06935271757104425 +262242,1311.2100000170155,-0.06935270296960495 +262243,1311.2150000170157,-0.06935268836766789 +262244,1311.2200000170158,-0.06935267376523316 +262245,1311.2250000170159,-0.0693526591623008 +262246,1311.230000017016,-0.06935264455887086 +262247,1311.235000017016,-0.06935262995494339 +262248,1311.2400000170162,-0.06935261535051844 +262249,1311.2450000170163,-0.06935260074559606 +262250,1311.2500000170164,-0.0693525861401763 +262251,1311.2550000170165,-0.06935257153425922 +262252,1311.2600000170166,-0.06935255692784488 +262253,1311.2650000170167,-0.0693525423209333 +262254,1311.2700000170169,-0.06935252771352456 +262255,1311.275000017017,-0.0693525131056187 +262256,1311.280000017017,-0.06935249849721578 +262257,1311.2850000170172,-0.06935248388831584 +262258,1311.2900000170173,-0.06935246927891894 +262259,1311.2950000170174,-0.06935245466902513 +262260,1311.3000000170175,-0.06935244005863446 +262261,1311.3050000170176,-0.06935242544774697 +262262,1311.3100000170177,-0.06935241083636272 +262263,1311.3150000170178,-0.06935239622448178 +262264,1311.320000017018,-0.06935238161210418 +262265,1311.325000017018,-0.06935236699922998 +262266,1311.3300000170182,-0.06935235238585921 +262267,1311.3350000170183,-0.06935233777199194 +262268,1311.3400000170184,-0.06935232315762824 +262269,1311.3450000170185,-0.06935230854276812 +262270,1311.3500000170186,-0.06935229392741167 +262271,1311.3550000170187,-0.06935227931155892 +262272,1311.3600000170188,-0.06935226469520991 +262273,1311.365000017019,-0.06935225007836472 +262274,1311.370000017019,-0.06935223546102338 +262275,1311.3750000170191,-0.06935222084318594 +262276,1311.3800000170193,-0.06935220622485248 +262277,1311.3850000170194,-0.06935219160602302 +262278,1311.3900000170195,-0.06935217698669761 +262279,1311.3950000170196,-0.06935216236687633 +262280,1311.4000000170197,-0.06935214774655919 +262281,1311.4050000170198,-0.0693521331257463 +262282,1311.41000001702,-0.06935211850443765 +262283,1311.41500001702,-0.06935210388263331 +262284,1311.4200000170201,-0.06935208926033336 +262285,1311.4250000170202,-0.06935207463753781 +262286,1311.4300000170203,-0.06935206001424674 +262287,1311.4350000170205,-0.06935204539046018 +262288,1311.4400000170206,-0.06935203076617819 +262289,1311.4450000170207,-0.06935201614140082 +262290,1311.4500000170208,-0.06935200151612814 +262291,1311.455000017021,-0.06935198689036018 +262292,1311.460000017021,-0.06935197226409699 +262293,1311.465000017021,-0.06935195763733862 +262294,1311.4700000170212,-0.06935194301008513 +262295,1311.4750000170213,-0.06935192838233657 +262296,1311.4800000170214,-0.06935191375409298 +262297,1311.4850000170215,-0.06935189912535443 +262298,1311.4900000170217,-0.06935188449612095 +262299,1311.4950000170218,-0.0693518698663926 +262300,1311.5000000170219,-0.06935185523616944 +262301,1311.505000017022,-0.06935184060545149 +262302,1311.510000017022,-0.06935182597423883 +262303,1311.5150000170222,-0.0693518113425315 +262304,1311.5200000170223,-0.06935179671032957 +262305,1311.5250000170224,-0.06935178207763307 +262306,1311.5300000170225,-0.06935176744444205 +262307,1311.5350000170226,-0.06935175281075656 +262308,1311.5400000170227,-0.06935173817657667 +262309,1311.5450000170229,-0.06935172354190239 +262310,1311.550000017023,-0.06935170890673381 +262311,1311.555000017023,-0.06935169427107098 +262312,1311.5600000170232,-0.06935167963491393 +262313,1311.5650000170233,-0.0693516649982627 +262314,1311.5700000170234,-0.06935165036111739 +262315,1311.5750000170235,-0.069351635723478 +262316,1311.5800000170236,-0.06935162108534461 +262317,1311.5850000170237,-0.06935160644671724 +262318,1311.5900000170238,-0.06935159180759597 +262319,1311.595000017024,-0.06935157716798084 +262320,1311.600000017024,-0.0693515625278719 +262321,1311.6050000170242,-0.0693515478872692 +262322,1311.6100000170243,-0.06935153324617281 +262323,1311.6150000170244,-0.06935151860458275 +262324,1311.6200000170245,-0.06935150396249908 +262325,1311.6250000170246,-0.06935148931992186 +262326,1311.6300000170247,-0.06935147467685113 +262327,1311.6350000170248,-0.06935146003328695 +262328,1311.640000017025,-0.06935144538922934 +262329,1311.645000017025,-0.06935143074467838 +262330,1311.6500000170251,-0.06935141609963412 +262331,1311.6550000170253,-0.0693514014540966 +262332,1311.6600000170254,-0.06935138680806588 +262333,1311.6650000170255,-0.06935137216154201 +262334,1311.6700000170256,-0.06935135751452502 +262335,1311.6750000170257,-0.06935134286701498 +262336,1311.6800000170258,-0.06935132821901194 +262337,1311.685000017026,-0.06935131357051594 +262338,1311.690000017026,-0.06935129892152705 +262339,1311.6950000170261,-0.06935128427204529 +262340,1311.7000000170262,-0.06935126962207074 +262341,1311.7050000170264,-0.06935125497160341 +262342,1311.7100000170265,-0.06935124032064338 +262343,1311.7150000170266,-0.06935122566919072 +262344,1311.7200000170267,-0.06935121101724544 +262345,1311.7250000170268,-0.06935119636480759 +262346,1311.730000017027,-0.06935118171187725 +262347,1311.735000017027,-0.06935116705845445 +262348,1311.7400000170271,-0.06935115240453925 +262349,1311.7450000170272,-0.0693511377501317 +262350,1311.7500000170273,-0.06935112309523184 +262351,1311.7550000170274,-0.06935110843983971 +262352,1311.7600000170276,-0.0693510937839554 +262353,1311.7650000170277,-0.06935107912757893 +262354,1311.7700000170278,-0.06935106447071034 +262355,1311.7750000170279,-0.0693510498133497 +262356,1311.780000017028,-0.06935103515549706 +262357,1311.785000017028,-0.06935102049715246 +262358,1311.7900000170282,-0.06935100583831595 +262359,1311.7950000170283,-0.06935099117898759 +262360,1311.8000000170284,-0.06935097651916743 +262361,1311.8050000170285,-0.06935096185885549 +262362,1311.8100000170286,-0.06935094719805185 +262363,1311.8150000170288,-0.06935093253675655 +262364,1311.8200000170289,-0.06935091787496964 +262365,1311.825000017029,-0.06935090321269118 +262366,1311.830000017029,-0.0693508885499212 +262367,1311.8350000170292,-0.06935087388665977 +262368,1311.8400000170293,-0.06935085922290693 +262369,1311.8450000170294,-0.06935084455866274 +262370,1311.8500000170295,-0.06935082989392721 +262371,1311.8550000170296,-0.06935081522870044 +262372,1311.8600000170297,-0.06935080056298246 +262373,1311.8650000170298,-0.0693507858967733 +262374,1311.87000001703,-0.06935077123007304 +262375,1311.87500001703,-0.06935075656288171 +262376,1311.8800000170302,-0.06935074189519938 +262377,1311.8850000170303,-0.06935072722702607 +262378,1311.8900000170304,-0.06935071255836185 +262379,1311.8950000170305,-0.06935069788920677 +262380,1311.9000000170306,-0.06935068321956088 +262381,1311.9050000170307,-0.06935066854942422 +262382,1311.9100000170308,-0.06935065387879684 +262383,1311.915000017031,-0.06935063920767878 +262384,1311.920000017031,-0.06935062453607012 +262385,1311.9250000170312,-0.06935060986397087 +262386,1311.9300000170313,-0.06935059519138112 +262387,1311.9350000170314,-0.06935058051830088 +262388,1311.9400000170315,-0.06935056584473025 +262389,1311.9450000170316,-0.06935055117066923 +262390,1311.9500000170317,-0.06935053649611787 +262391,1311.9550000170318,-0.06935052182107626 +262392,1311.960000017032,-0.06935050714554442 +262393,1311.965000017032,-0.06935049246952239 +262394,1311.9700000170321,-0.06935047779301025 +262395,1311.9750000170322,-0.06935046311600801 +262396,1311.9800000170324,-0.06935044843851577 +262397,1311.9850000170325,-0.06935043376053356 +262398,1311.9900000170326,-0.0693504190820614 +262399,1311.9950000170327,-0.06935040440309936 +262400,1312.0000000170328,-0.0693503897236475 +262401,1312.005000017033,-0.06935037504370584 +262402,1312.010000017033,-0.06935036036327447 +262403,1312.0150000170331,-0.06935034568235339 +262404,1312.0200000170332,-0.06935033100094269 +262405,1312.0250000170333,-0.06935031631904241 +262406,1312.0300000170334,-0.06935030163665258 +262407,1312.0350000170336,-0.06935028695377327 +262408,1312.0400000170337,-0.06935027227040452 +262409,1312.0450000170338,-0.06935025758654638 +262410,1312.0500000170339,-0.0693502429021989 +262411,1312.055000017034,-0.06935022821736213 +262412,1312.060000017034,-0.0693502135320361 +262413,1312.0650000170342,-0.06935019884622089 +262414,1312.0700000170343,-0.06935018415991653 +262415,1312.0750000170344,-0.06935016947312309 +262416,1312.0800000170345,-0.06935015478584058 +262417,1312.0850000170346,-0.06935014009806909 +262418,1312.0900000170348,-0.06935012540980864 +262419,1312.0950000170349,-0.06935011072105929 +262420,1312.100000017035,-0.06935009603182109 +262421,1312.105000017035,-0.06935008134209407 +262422,1312.1100000170352,-0.0693500666518783 +262423,1312.1150000170353,-0.06935005196117383 +262424,1312.1200000170354,-0.06935003726998071 +262425,1312.1250000170355,-0.06935002257829896 +262426,1312.1300000170356,-0.06935000788612866 +262427,1312.1350000170357,-0.06934999319346986 +262428,1312.1400000170358,-0.0693499785003226 +262429,1312.145000017036,-0.0693499638066869 +262430,1312.150000017036,-0.06934994911256286 +262431,1312.1550000170362,-0.0693499344179505 +262432,1312.1600000170363,-0.06934991972284986 +262433,1312.1650000170364,-0.069349905027261 +262434,1312.1700000170365,-0.06934989033118397 +262435,1312.1750000170366,-0.06934987563461882 +262436,1312.1800000170367,-0.06934986093756561 +262437,1312.1850000170368,-0.06934984624002437 +262438,1312.190000017037,-0.06934983154199513 +262439,1312.195000017037,-0.06934981684347798 +262440,1312.2000000170372,-0.06934980214447295 +262441,1312.2050000170373,-0.06934978744498008 +262442,1312.2100000170374,-0.06934977274499943 +262443,1312.2150000170375,-0.06934975804453104 +262444,1312.2200000170376,-0.06934974334357498 +262445,1312.2250000170377,-0.06934972864213126 +262446,1312.2300000170378,-0.06934971394019998 +262447,1312.235000017038,-0.06934969923778114 +262448,1312.240000017038,-0.0693496845348748 +262449,1312.2450000170381,-0.06934966983148104 +262450,1312.2500000170382,-0.06934965512759986 +262451,1312.2550000170384,-0.06934964042323134 +262452,1312.2600000170385,-0.06934962571837552 +262453,1312.2650000170386,-0.06934961101303244 +262454,1312.2700000170387,-0.06934959630720217 +262455,1312.2750000170388,-0.06934958160088474 +262456,1312.280000017039,-0.0693495668940802 +262457,1312.285000017039,-0.06934955218678861 +262458,1312.2900000170391,-0.06934953747901 +262459,1312.2950000170392,-0.06934952277074442 +262460,1312.3000000170393,-0.06934950806199194 +262461,1312.3050000170394,-0.06934949335275259 +262462,1312.3100000170396,-0.06934947864302643 +262463,1312.3150000170397,-0.0693494639328135 +262464,1312.3200000170398,-0.06934944922211383 +262465,1312.3250000170399,-0.06934943451092751 +262466,1312.33000001704,-0.06934941979925456 +262467,1312.33500001704,-0.06934940508709504 +262468,1312.3400000170402,-0.06934939037444897 +262469,1312.3450000170403,-0.06934937566131644 +262470,1312.3500000170404,-0.06934936094769746 +262471,1312.3550000170405,-0.0693493462335921 +262472,1312.3600000170406,-0.0693493315190004 +262473,1312.3650000170408,-0.06934931680392242 +262474,1312.3700000170409,-0.0693493020883582 +262475,1312.375000017041,-0.06934928737230779 +262476,1312.380000017041,-0.06934927265577122 +262477,1312.3850000170412,-0.06934925793874855 +262478,1312.3900000170413,-0.06934924322123985 +262479,1312.3950000170414,-0.06934922850324512 +262480,1312.4000000170415,-0.06934921378476445 +262481,1312.4050000170416,-0.0693491990657979 +262482,1312.4100000170417,-0.06934918434634547 +262483,1312.4150000170418,-0.06934916962640723 +262484,1312.420000017042,-0.06934915490598323 +262485,1312.425000017042,-0.06934914018507352 +262486,1312.4300000170422,-0.06934912546367812 +262487,1312.4350000170423,-0.06934911074179712 +262488,1312.4400000170424,-0.06934909601943055 +262489,1312.4450000170425,-0.06934908129657845 +262490,1312.4500000170426,-0.06934906657324087 +262491,1312.4550000170427,-0.06934905184941788 +262492,1312.4600000170428,-0.0693490371251095 +262493,1312.465000017043,-0.06934902240031578 +262494,1312.470000017043,-0.06934900767503678 +262495,1312.4750000170432,-0.06934899294927255 +262496,1312.4800000170433,-0.0693489782230231 +262497,1312.4850000170434,-0.06934896349628855 +262498,1312.4900000170435,-0.06934894876906889 +262499,1312.4950000170436,-0.06934893404136418 +262500,1312.5000000170437,-0.06934891931317447 +262501,1312.5050000170438,-0.06934890458449981 +262502,1312.510000017044,-0.06934888985534024 +262503,1312.515000017044,-0.06934887512569582 +262504,1312.5200000170441,-0.06934886039556658 +262505,1312.5250000170442,-0.06934884566495259 +262506,1312.5300000170444,-0.06934883093385387 +262507,1312.5350000170445,-0.06934881620227049 +262508,1312.5400000170446,-0.06934880147020249 +262509,1312.5450000170447,-0.06934878673764992 +262510,1312.5500000170448,-0.06934877200461283 +262511,1312.555000017045,-0.06934875727109126 +262512,1312.560000017045,-0.06934874253708526 +262513,1312.5650000170451,-0.06934872780259488 +262514,1312.5700000170452,-0.06934871306762017 +262515,1312.5750000170453,-0.06934869833216116 +262516,1312.5800000170454,-0.06934868359621793 +262517,1312.5850000170456,-0.06934866885979048 +262518,1312.5900000170457,-0.0693486541228789 +262519,1312.5950000170458,-0.06934863938548322 +262520,1312.6000000170459,-0.06934862464760347 +262521,1312.605000017046,-0.06934860990923974 +262522,1312.610000017046,-0.06934859517039205 +262523,1312.6150000170462,-0.06934858043106044 +262524,1312.6200000170463,-0.06934856569124498 +262525,1312.6250000170464,-0.06934855095094569 +262526,1312.6300000170465,-0.06934853621016265 +262527,1312.6350000170467,-0.06934852146889588 +262528,1312.6400000170468,-0.06934850672714543 +262529,1312.6450000170469,-0.06934849198491136 +262530,1312.650000017047,-0.06934847724219372 +262531,1312.655000017047,-0.06934846249899253 +262532,1312.6600000170472,-0.06934844775530787 +262533,1312.6650000170473,-0.06934843301113974 +262534,1312.6700000170474,-0.06934841826648826 +262535,1312.6750000170475,-0.06934840352135342 +262536,1312.6800000170476,-0.06934838877573529 +262537,1312.6850000170477,-0.0693483740296339 +262538,1312.6900000170479,-0.0693483592830493 +262539,1312.695000017048,-0.06934834453598156 +262540,1312.700000017048,-0.06934832978843071 +262541,1312.7050000170482,-0.06934831504039679 +262542,1312.7100000170483,-0.06934830029187986 +262543,1312.7150000170484,-0.06934828554287994 +262544,1312.7200000170485,-0.06934827079339713 +262545,1312.7250000170486,-0.06934825604343144 +262546,1312.7300000170487,-0.0693482412929829 +262547,1312.7350000170488,-0.06934822654205161 +262548,1312.740000017049,-0.06934821179063756 +262549,1312.745000017049,-0.06934819703874083 +262550,1312.7500000170492,-0.06934818228636148 +262551,1312.7550000170493,-0.06934816753349952 +262552,1312.7600000170494,-0.06934815278015502 +262553,1312.7650000170495,-0.06934813802632801 +262554,1312.7700000170496,-0.06934812327201856 +262555,1312.7750000170497,-0.0693481085172267 +262556,1312.7800000170498,-0.06934809376195247 +262557,1312.78500001705,-0.06934807900619593 +262558,1312.79000001705,-0.06934806424995714 +262559,1312.7950000170501,-0.06934804949323611 +262560,1312.8000000170503,-0.06934803473603293 +262561,1312.8050000170504,-0.06934801997834761 +262562,1312.8100000170505,-0.06934800522018021 +262563,1312.8150000170506,-0.06934799046153078 +262564,1312.8200000170507,-0.06934797570239937 +262565,1312.8250000170508,-0.06934796094278602 +262566,1312.830000017051,-0.06934794618269077 +262567,1312.835000017051,-0.06934793142211369 +262568,1312.8400000170511,-0.0693479166610548 +262569,1312.8450000170512,-0.06934790189951416 +262570,1312.8500000170513,-0.0693478871374918 +262571,1312.8550000170515,-0.06934787237498781 +262572,1312.8600000170516,-0.06934785761200217 +262573,1312.8650000170517,-0.06934784284853499 +262574,1312.8700000170518,-0.06934782808458627 +262575,1312.875000017052,-0.06934781332015609 +262576,1312.880000017052,-0.06934779855524448 +262577,1312.885000017052,-0.06934778378985149 +262578,1312.8900000170522,-0.06934776902397717 +262579,1312.8950000170523,-0.06934775425762155 +262580,1312.9000000170524,-0.0693477394907847 +262581,1312.9050000170525,-0.06934772472346665 +262582,1312.9100000170527,-0.06934770995566744 +262583,1312.9150000170528,-0.06934769518738713 +262584,1312.9200000170529,-0.06934768041862577 +262585,1312.925000017053,-0.0693476656493834 +262586,1312.930000017053,-0.06934765087966006 +262587,1312.9350000170532,-0.06934763610945582 +262588,1312.9400000170533,-0.06934762133877069 +262589,1312.9450000170534,-0.06934760656760475 +262590,1312.9500000170535,-0.06934759179595802 +262591,1312.9550000170536,-0.06934757702383057 +262592,1312.9600000170537,-0.06934756225122243 +262593,1312.9650000170539,-0.06934754747813365 +262594,1312.970000017054,-0.06934753270456427 +262595,1312.975000017054,-0.06934751793051436 +262596,1312.9800000170542,-0.06934750315598393 +262597,1312.9850000170543,-0.06934748838097304 +262598,1312.9900000170544,-0.06934747360548175 +262599,1312.9950000170545,-0.0693474588295101 +262600,1313.0000000170546,-0.06934744405305814 +262601,1313.0050000170547,-0.06934742927612592 +262602,1313.0100000170548,-0.06934741449871346 +262603,1313.015000017055,-0.06934739972082081 +262604,1313.020000017055,-0.06934738494244803 +262605,1313.0250000170552,-0.06934737016359517 +262606,1313.0300000170553,-0.06934735538426227 +262607,1313.0350000170554,-0.06934734060444937 +262608,1313.0400000170555,-0.06934732582415652 +262609,1313.0450000170556,-0.06934731104338379 +262610,1313.0500000170557,-0.06934729626213118 +262611,1313.0550000170558,-0.06934728148039877 +262612,1313.060000017056,-0.0693472666981866 +262613,1313.065000017056,-0.0693472519154947 +262614,1313.0700000170561,-0.06934723713232314 +262615,1313.0750000170563,-0.06934722234867195 +262616,1313.0800000170564,-0.06934720756454119 +262617,1313.0850000170565,-0.06934719277993089 +262618,1313.0900000170566,-0.06934717799484108 +262619,1313.0950000170567,-0.06934716320927184 +262620,1313.1000000170568,-0.0693471484232232 +262621,1313.105000017057,-0.06934713363669522 +262622,1313.110000017057,-0.06934711884968793 +262623,1313.1150000170571,-0.06934710406220139 +262624,1313.1200000170572,-0.06934708927423562 +262625,1313.1250000170573,-0.06934707448579067 +262626,1313.1300000170575,-0.06934705969686661 +262627,1313.1350000170576,-0.06934704490746348 +262628,1313.1400000170577,-0.0693470301175813 +262629,1313.1450000170578,-0.06934701532722015 +262630,1313.150000017058,-0.06934700053638006 +262631,1313.155000017058,-0.06934698574506107 +262632,1313.160000017058,-0.06934697095326323 +262633,1313.1650000170582,-0.0693469561609866 +262634,1313.1700000170583,-0.0693469413682312 +262635,1313.1750000170584,-0.0693469265749971 +262636,1313.1800000170585,-0.06934691178128434 +262637,1313.1850000170587,-0.06934689698709295 +262638,1313.1900000170588,-0.06934688219242298 +262639,1313.1950000170589,-0.06934686739727448 +262640,1313.200000017059,-0.0693468526016475 +262641,1313.205000017059,-0.06934683780554209 +262642,1313.2100000170592,-0.06934682300895827 +262643,1313.2150000170593,-0.06934680821189612 +262644,1313.2200000170594,-0.06934679341435566 +262645,1313.2250000170595,-0.06934677861633695 +262646,1313.2300000170596,-0.06934676381784002 +262647,1313.2350000170597,-0.06934674901886494 +262648,1313.2400000170599,-0.06934673421941173 +262649,1313.24500001706,-0.06934671941948045 +262650,1313.25000001706,-0.06934670461907115 +262651,1313.2550000170602,-0.06934668981818386 +262652,1313.2600000170603,-0.06934667501681864 +262653,1313.2650000170604,-0.06934666021497551 +262654,1313.2700000170605,-0.06934664541265453 +262655,1313.2750000170606,-0.06934663060985577 +262656,1313.2800000170607,-0.06934661580657923 +262657,1313.2850000170608,-0.069346601002825 +262658,1313.290000017061,-0.06934658619859309 +262659,1313.295000017061,-0.06934657139388356 +262660,1313.3000000170612,-0.06934655658869647 +262661,1313.3050000170613,-0.06934654178303185 +262662,1313.3100000170614,-0.06934652697688973 +262663,1313.3150000170615,-0.06934651217027017 +262664,1313.3200000170616,-0.06934649736317323 +262665,1313.3250000170617,-0.06934648255559893 +262666,1313.3300000170618,-0.06934646774754732 +262667,1313.335000017062,-0.06934645293901846 +262668,1313.340000017062,-0.06934643813001239 +262669,1313.3450000170621,-0.06934642332052916 +262670,1313.3500000170623,-0.0693464085105688 +262671,1313.3550000170624,-0.06934639370013135 +262672,1313.3600000170625,-0.06934637888921687 +262673,1313.3650000170626,-0.0693463640778254 +262674,1313.3700000170627,-0.06934634926595701 +262675,1313.3750000170628,-0.0693463344536117 +262676,1313.380000017063,-0.06934631964078955 +262677,1313.385000017063,-0.06934630482749059 +262678,1313.3900000170631,-0.06934629001371487 +262679,1313.3950000170632,-0.06934627519946243 +262680,1313.4000000170633,-0.06934626038473331 +262681,1313.4050000170635,-0.06934624556952756 +262682,1313.4100000170636,-0.06934623075384524 +262683,1313.4150000170637,-0.06934621593768638 +262684,1313.4200000170638,-0.06934620112105103 +262685,1313.425000017064,-0.06934618630393923 +262686,1313.430000017064,-0.06934617148635101 +262687,1313.435000017064,-0.06934615666828646 +262688,1313.4400000170642,-0.06934614184974558 +262689,1313.4450000170643,-0.06934612703072844 +262690,1313.4500000170644,-0.06934611221123509 +262691,1313.4550000170645,-0.06934609739126554 +262692,1313.4600000170647,-0.06934608257081988 +262693,1313.4650000170648,-0.06934606774989811 +262694,1313.4700000170649,-0.0693460529285003 +262695,1313.475000017065,-0.0693460381066265 +262696,1313.480000017065,-0.06934602328427675 +262697,1313.4850000170652,-0.06934600846145106 +262698,1313.4900000170653,-0.06934599363814953 +262699,1313.4950000170654,-0.06934597881437217 +262700,1313.5000000170655,-0.06934596399011905 +262701,1313.5050000170656,-0.06934594916539018 +262702,1313.5100000170657,-0.06934593434018564 +262703,1313.5150000170659,-0.06934591951450546 +262704,1313.520000017066,-0.06934590468834968 +262705,1313.525000017066,-0.06934588986171834 +262706,1313.5300000170662,-0.06934587503461151 +262707,1313.5350000170663,-0.06934586020702921 +262708,1313.5400000170664,-0.0693458453789715 +262709,1313.5450000170665,-0.0693458305504384 +262710,1313.5500000170666,-0.06934581572142998 +262711,1313.5550000170667,-0.06934580089194627 +262712,1313.5600000170668,-0.06934578606198732 +262713,1313.565000017067,-0.0693457712315532 +262714,1313.570000017067,-0.06934575640064389 +262715,1313.5750000170672,-0.0693457415692595 +262716,1313.5800000170673,-0.06934572673740005 +262717,1313.5850000170674,-0.06934571190506558 +262718,1313.5900000170675,-0.06934569707225614 +262719,1313.5950000170676,-0.06934568223897178 +262720,1313.6000000170677,-0.06934566740521253 +262721,1313.6050000170678,-0.06934565257097842 +262722,1313.610000017068,-0.06934563773626955 +262723,1313.615000017068,-0.06934562290108592 +262724,1313.6200000170682,-0.06934560806542758 +262725,1313.6250000170683,-0.06934559322929458 +262726,1313.6300000170684,-0.06934557839268696 +262727,1313.6350000170685,-0.06934556355560477 +262728,1313.6400000170686,-0.06934554871804806 +262729,1313.6450000170687,-0.06934553388001687 +262730,1313.6500000170688,-0.06934551904151122 +262731,1313.655000017069,-0.06934550420253119 +262732,1313.660000017069,-0.06934548936307681 +262733,1313.6650000170691,-0.06934547452314813 +262734,1313.6700000170692,-0.06934545968274518 +262735,1313.6750000170694,-0.069345444841868 +262736,1313.6800000170695,-0.06934543000051666 +262737,1313.6850000170696,-0.06934541515869119 +262738,1313.6900000170697,-0.06934540031639165 +262739,1313.6950000170698,-0.06934538547361806 +262740,1313.70000001707,-0.06934537063037047 +262741,1313.70500001707,-0.06934535578664892 +262742,1313.7100000170701,-0.06934534094245348 +262743,1313.7150000170702,-0.06934532609778417 +262744,1313.7200000170703,-0.06934531125264104 +262745,1313.7250000170704,-0.06934529640702414 +262746,1313.7300000170706,-0.0693452815609335 +262747,1313.7350000170707,-0.06934526671436918 +262748,1313.7400000170708,-0.0693452518673312 +262749,1313.7450000170709,-0.06934523701981964 +262750,1313.750000017071,-0.0693452221718345 +262751,1313.755000017071,-0.06934520732337587 +262752,1313.7600000170712,-0.06934519247444378 +262753,1313.7650000170713,-0.06934517762503827 +262754,1313.7700000170714,-0.06934516277515937 +262755,1313.7750000170715,-0.06934514792480714 +262756,1313.7800000170716,-0.06934513307398162 +262757,1313.7850000170718,-0.06934511822268284 +262758,1313.7900000170719,-0.06934510337091086 +262759,1313.795000017072,-0.06934508851866573 +262760,1313.800000017072,-0.06934507366594748 +262761,1313.8050000170722,-0.06934505881275617 +262762,1313.8100000170723,-0.06934504395909183 +262763,1313.8150000170724,-0.06934502910495449 +262764,1313.8200000170725,-0.06934501425034423 +262765,1313.8250000170726,-0.06934499939526105 +262766,1313.8300000170727,-0.06934498453970506 +262767,1313.8350000170728,-0.06934496968367625 +262768,1313.840000017073,-0.06934495482717466 +262769,1313.845000017073,-0.06934493997020036 +262770,1313.8500000170732,-0.06934492511275338 +262771,1313.8550000170733,-0.06934491025483376 +262772,1313.8600000170734,-0.06934489539644158 +262773,1313.8650000170735,-0.06934488053757683 +262774,1313.8700000170736,-0.06934486567823958 +262775,1313.8750000170737,-0.06934485081842989 +262776,1313.8800000170738,-0.06934483595814779 +262777,1313.885000017074,-0.0693448210973933 +262778,1313.890000017074,-0.06934480623616651 +262779,1313.8950000170742,-0.06934479137446742 +262780,1313.9000000170743,-0.06934477651229609 +262781,1313.9050000170744,-0.06934476164965257 +262782,1313.9100000170745,-0.06934474678653689 +262783,1313.9150000170746,-0.06934473192294911 +262784,1313.9200000170747,-0.06934471705888925 +262785,1313.9250000170748,-0.0693447021943574 +262786,1313.930000017075,-0.06934468732935356 +262787,1313.935000017075,-0.0693446724638778 +262788,1313.9400000170751,-0.06934465759793013 +262789,1313.9450000170752,-0.06934464273151061 +262790,1313.9500000170754,-0.06934462786461931 +262791,1313.9550000170755,-0.06934461299725625 +262792,1313.9600000170756,-0.06934459812942147 +262793,1313.9650000170757,-0.06934458326111502 +262794,1313.9700000170758,-0.06934456839233694 +262795,1313.975000017076,-0.06934455352308727 +262796,1313.980000017076,-0.06934453865336605 +262797,1313.9850000170761,-0.06934452378317336 +262798,1313.9900000170762,-0.0693445089125092 +262799,1313.9950000170763,-0.06934449404137362 +262800,1314.0000000170764,-0.06934447916976669 +262801,1314.0050000170766,-0.06934446429768844 +262802,1314.0100000170767,-0.06934444942513888 +262803,1314.0150000170768,-0.06934443455211811 +262804,1314.0200000170769,-0.06934441967862616 +262805,1314.025000017077,-0.06934440480466303 +262806,1314.030000017077,-0.0693443899302288 +262807,1314.0350000170772,-0.06934437505532351 +262808,1314.0400000170773,-0.0693443601799472 +262809,1314.0450000170774,-0.06934434530409991 +262810,1314.0500000170775,-0.0693443304277817 +262811,1314.0550000170776,-0.06934431555099259 +262812,1314.0600000170778,-0.06934430067373264 +262813,1314.0650000170779,-0.06934428579600187 +262814,1314.070000017078,-0.06934427091780035 +262815,1314.075000017078,-0.06934425603912811 +262816,1314.0800000170782,-0.0693442411599852 +262817,1314.0850000170783,-0.06934422628037167 +262818,1314.0900000170784,-0.06934421140028754 +262819,1314.0950000170785,-0.06934419651973286 +262820,1314.1000000170786,-0.06934418163870769 +262821,1314.1050000170787,-0.06934416675721206 +262822,1314.1100000170788,-0.06934415187524601 +262823,1314.115000017079,-0.0693441369928096 +262824,1314.120000017079,-0.06934412210990286 +262825,1314.1250000170792,-0.06934410722652583 +262826,1314.1300000170793,-0.06934409234267855 +262827,1314.1350000170794,-0.06934407745836109 +262828,1314.1400000170795,-0.06934406257357345 +262829,1314.1450000170796,-0.06934404768831572 +262830,1314.1500000170797,-0.0693440328025879 +262831,1314.1550000170798,-0.06934401791639007 +262832,1314.16000001708,-0.06934400302972225 +262833,1314.16500001708,-0.0693439881425845 +262834,1314.1700000170802,-0.06934397325497683 +262835,1314.1750000170803,-0.06934395836689931 +262836,1314.1800000170804,-0.06934394347835199 +262837,1314.1850000170805,-0.0693439285893349 +262838,1314.1900000170806,-0.06934391369984808 +262839,1314.1950000170807,-0.06934389880989157 +262840,1314.2000000170808,-0.06934388391946543 +262841,1314.205000017081,-0.0693438690285697 +262842,1314.210000017081,-0.06934385413720442 +262843,1314.2150000170811,-0.06934383924536962 +262844,1314.2200000170812,-0.06934382435306535 +262845,1314.2250000170814,-0.06934380946029167 +262846,1314.2300000170815,-0.06934379456704859 +262847,1314.2350000170816,-0.06934377967333617 +262848,1314.2400000170817,-0.06934376477915445 +262849,1314.2450000170818,-0.0693437498845035 +262850,1314.250000017082,-0.06934373498938333 +262851,1314.255000017082,-0.06934372009379398 +262852,1314.2600000170821,-0.0693437051977355 +262853,1314.2650000170822,-0.06934369030120795 +262854,1314.2700000170823,-0.06934367540421135 +262855,1314.2750000170824,-0.06934366050674577 +262856,1314.2800000170826,-0.06934364560881122 +262857,1314.2850000170827,-0.06934363071040776 +262858,1314.2900000170828,-0.06934361581153545 +262859,1314.2950000170829,-0.0693436009121943 +262860,1314.300000017083,-0.06934358601238436 +262861,1314.305000017083,-0.06934357111210568 +262862,1314.3100000170832,-0.0693435562113583 +262863,1314.3150000170833,-0.06934354131014227 +262864,1314.3200000170834,-0.06934352640845763 +262865,1314.3250000170835,-0.06934351150630443 +262866,1314.3300000170836,-0.06934349660368268 +262867,1314.3350000170838,-0.06934348170059246 +262868,1314.3400000170839,-0.0693434667970338 +262869,1314.345000017084,-0.06934345189300672 +262870,1314.350000017084,-0.0693434369885113 +262871,1314.3550000170842,-0.06934342208354757 +262872,1314.3600000170843,-0.06934340717811556 +262873,1314.3650000170844,-0.06934339227221531 +262874,1314.3700000170845,-0.06934337736584689 +262875,1314.3750000170846,-0.06934336245901032 +262876,1314.3800000170847,-0.06934334755170565 +262877,1314.3850000170848,-0.06934333264393291 +262878,1314.390000017085,-0.06934331773569216 +262879,1314.395000017085,-0.06934330282698344 +262880,1314.4000000170852,-0.06934328791780678 +262881,1314.4050000170853,-0.06934327300816223 +262882,1314.4100000170854,-0.06934325809804984 +262883,1314.4150000170855,-0.06934324318746962 +262884,1314.4200000170856,-0.06934322827642167 +262885,1314.4250000170857,-0.069343213364906 +262886,1314.4300000170858,-0.06934319845292264 +262887,1314.435000017086,-0.06934318354047164 +262888,1314.440000017086,-0.06934316862755306 +262889,1314.4450000170862,-0.06934315371416692 +262890,1314.4500000170863,-0.06934313880031327 +262891,1314.4550000170864,-0.06934312388599216 +262892,1314.4600000170865,-0.06934310897120362 +262893,1314.4650000170866,-0.0693430940559477 +262894,1314.4700000170867,-0.06934307914022445 +262895,1314.4750000170868,-0.0693430642240339 +262896,1314.480000017087,-0.06934304930737607 +262897,1314.485000017087,-0.06934303439025105 +262898,1314.4900000170871,-0.06934301947265885 +262899,1314.4950000170872,-0.06934300455459953 +262900,1314.5000000170874,-0.06934298963607313 +262901,1314.5050000170875,-0.06934297471707968 +262902,1314.5100000170876,-0.06934295979761922 +262903,1314.5150000170877,-0.06934294487769181 +262904,1314.5200000170878,-0.06934292995729749 +262905,1314.525000017088,-0.06934291503643629 +262906,1314.530000017088,-0.06934290011510826 +262907,1314.5350000170881,-0.06934288519331343 +262908,1314.5400000170882,-0.06934287027105185 +262909,1314.5450000170883,-0.06934285534832357 +262910,1314.5500000170885,-0.06934284042512862 +262911,1314.5550000170886,-0.06934282550146705 +262912,1314.5600000170887,-0.06934281057733889 +262913,1314.5650000170888,-0.06934279565274422 +262914,1314.570000017089,-0.06934278072768303 +262915,1314.575000017089,-0.0693427658021554 +262916,1314.580000017089,-0.06934275087616135 +262917,1314.5850000170892,-0.06934273594970093 +262918,1314.5900000170893,-0.06934272102277417 +262919,1314.5950000170894,-0.06934270609538114 +262920,1314.6000000170895,-0.06934269116752186 +262921,1314.6050000170897,-0.06934267623919636 +262922,1314.6100000170898,-0.06934266131040473 +262923,1314.6150000170899,-0.06934264638114697 +262924,1314.62000001709,-0.06934263145142314 +262925,1314.62500001709,-0.06934261652123327 +262926,1314.6300000170902,-0.06934260159057741 +262927,1314.6350000170903,-0.0693425866594556 +262928,1314.6400000170904,-0.06934257172786788 +262929,1314.6450000170905,-0.06934255679581429 +262930,1314.6500000170906,-0.06934254186329487 +262931,1314.6550000170907,-0.06934252693030968 +262932,1314.6600000170909,-0.06934251199685873 +262933,1314.665000017091,-0.0693424970629421 +262934,1314.670000017091,-0.06934248212855981 +262935,1314.6750000170912,-0.0693424671937119 +262936,1314.6800000170913,-0.06934245225839841 +262937,1314.6850000170914,-0.0693424373226194 +262938,1314.6900000170915,-0.06934242238637488 +262939,1314.6950000170916,-0.06934240744966493 +262940,1314.7000000170917,-0.06934239251248955 +262941,1314.7050000170918,-0.06934237757484883 +262942,1314.710000017092,-0.06934236263674277 +262943,1314.715000017092,-0.06934234769817144 +262944,1314.7200000170922,-0.06934233275913486 +262945,1314.7250000170923,-0.06934231781963308 +262946,1314.7300000170924,-0.06934230287966615 +262947,1314.7350000170925,-0.0693422879392341 +262948,1314.7400000170926,-0.06934227299833698 +262949,1314.7450000170927,-0.06934225805697483 +262950,1314.7500000170928,-0.06934224311514768 +262951,1314.755000017093,-0.06934222817285558 +262952,1314.760000017093,-0.06934221323009858 +262953,1314.7650000170931,-0.06934219828687671 +262954,1314.7700000170933,-0.06934218334319002 +262955,1314.7750000170934,-0.06934216839903855 +262956,1314.7800000170935,-0.06934215345442234 +262957,1314.7850000170936,-0.06934213850934141 +262958,1314.7900000170937,-0.06934212356379583 +262959,1314.7950000170938,-0.06934210861778566 +262960,1314.800000017094,-0.06934209367131089 +262961,1314.805000017094,-0.06934207872437159 +262962,1314.8100000170941,-0.0693420637769678 +262963,1314.8150000170942,-0.06934204882909957 +262964,1314.8200000170943,-0.06934203388076692 +262965,1314.8250000170945,-0.06934201893196991 +262966,1314.8300000170946,-0.06934200398270857 +262967,1314.8350000170947,-0.06934198903298294 +262968,1314.8400000170948,-0.06934197408279306 +262969,1314.845000017095,-0.06934195913213899 +262970,1314.850000017095,-0.06934194418102076 +262971,1314.855000017095,-0.0693419292294384 +262972,1314.8600000170952,-0.06934191427739196 +262973,1314.8650000170953,-0.0693418993248815 +262974,1314.8700000170954,-0.06934188437190703 +262975,1314.8750000170955,-0.06934186941846861 +262976,1314.8800000170957,-0.06934185446456628 +262977,1314.8850000170958,-0.06934183951020008 +262978,1314.8900000170959,-0.06934182455537004 +262979,1314.895000017096,-0.06934180960007622 +262980,1314.900000017096,-0.06934179464431865 +262981,1314.9050000170962,-0.06934177968809738 +262982,1314.9100000170963,-0.06934176473141244 +262983,1314.9150000170964,-0.06934174977426387 +262984,1314.9200000170965,-0.06934173481665172 +262985,1314.9250000170966,-0.06934171985857604 +262986,1314.9300000170967,-0.06934170490003685 +262987,1314.9350000170969,-0.06934168994103422 +262988,1314.940000017097,-0.06934167498156817 +262989,1314.945000017097,-0.06934166002163872 +262990,1314.9500000170972,-0.06934164506124595 +262991,1314.9550000170973,-0.06934163010038988 +262992,1314.9600000170974,-0.06934161513907056 +262993,1314.9650000170975,-0.06934160017728802 +262994,1314.9700000170976,-0.06934158521504231 +262995,1314.9750000170977,-0.06934157025233348 +262996,1314.9800000170978,-0.06934155528916157 +262997,1314.985000017098,-0.0693415403255266 +262998,1314.990000017098,-0.06934152536142861 +262999,1314.9950000170982,-0.06934151039686766 +263000,1315.0000000170983,-0.0693414954318438 +263001,1315.0050000170984,-0.06934148046635705 +263002,1315.0100000170985,-0.06934146550040746 +263003,1315.0150000170986,-0.06934145053399506 +263004,1315.0200000170987,-0.0693414355671199 +263005,1315.0250000170988,-0.06934142059978203 +263006,1315.030000017099,-0.06934140563198148 +263007,1315.035000017099,-0.06934139066371829 +263008,1315.0400000170991,-0.06934137569499249 +263009,1315.0450000170993,-0.06934136072580416 +263010,1315.0500000170994,-0.06934134575615329 +263011,1315.0550000170995,-0.06934133078603996 +263012,1315.0600000170996,-0.0693413158154642 +263013,1315.0650000170997,-0.06934130084442605 +263014,1315.0700000170998,-0.06934128587292554 +263015,1315.0750000171,-0.06934127090096272 +263016,1315.0800000171,-0.06934125592853763 +263017,1315.0850000171001,-0.06934124095565031 +263018,1315.0900000171002,-0.0693412259823008 +263019,1315.0950000171003,-0.06934121100848915 +263020,1315.1000000171005,-0.0693411960342154 +263021,1315.1050000171006,-0.06934118105947958 +263022,1315.1100000171007,-0.06934116608428174 +263023,1315.1150000171008,-0.0693411511086219 +263024,1315.120000017101,-0.06934113613250013 +263025,1315.125000017101,-0.06934112115591645 +263026,1315.130000017101,-0.06934110617887092 +263027,1315.1350000171012,-0.06934109120136356 +263028,1315.1400000171013,-0.06934107622339442 +263029,1315.1450000171014,-0.06934106124496354 +263030,1315.1500000171015,-0.06934104626607096 +263031,1315.1550000171017,-0.06934103128671673 +263032,1315.1600000171018,-0.06934101630690089 +263033,1315.1650000171019,-0.06934100132662346 +263034,1315.170000017102,-0.0693409863458845 +263035,1315.175000017102,-0.06934097136468403 +263036,1315.1800000171022,-0.06934095638302214 +263037,1315.1850000171023,-0.0693409414008988 +263038,1315.1900000171024,-0.0693409264183141 +263039,1315.1950000171025,-0.06934091143526808 +263040,1315.2000000171026,-0.06934089645176074 +263041,1315.2050000171027,-0.06934088146779217 +263042,1315.2100000171029,-0.06934086648336239 +263043,1315.215000017103,-0.06934085149847144 +263044,1315.220000017103,-0.06934083651311934 +263045,1315.2250000171032,-0.06934082152730617 +263046,1315.2300000171033,-0.06934080654103195 +263047,1315.2350000171034,-0.0693407915542967 +263048,1315.2400000171035,-0.06934077656710051 +263049,1315.2450000171036,-0.06934076157944338 +263050,1315.2500000171037,-0.06934074659132537 +263051,1315.2550000171038,-0.06934073160274652 +263052,1315.260000017104,-0.06934071661370685 +263053,1315.265000017104,-0.06934070162420641 +263054,1315.2700000171042,-0.06934068663424527 +263055,1315.2750000171043,-0.06934067164382342 +263056,1315.2800000171044,-0.06934065665294092 +263057,1315.2850000171045,-0.06934064166159783 +263058,1315.2900000171046,-0.06934062666979418 +263059,1315.2950000171047,-0.06934061167753001 +263060,1315.3000000171048,-0.06934059668480536 +263061,1315.305000017105,-0.06934058169162025 +263062,1315.310000017105,-0.06934056669797474 +263063,1315.3150000171051,-0.06934055170386887 +263064,1315.3200000171053,-0.06934053670930268 +263065,1315.3250000171054,-0.06934052171427622 +263066,1315.3300000171055,-0.06934050671878951 +263067,1315.3350000171056,-0.06934049172284261 +263068,1315.3400000171057,-0.06934047672643555 +263069,1315.3450000171058,-0.06934046172956837 +263070,1315.350000017106,-0.0693404467322411 +263071,1315.355000017106,-0.0693404317344538 +263072,1315.3600000171061,-0.0693404167362065 +263073,1315.3650000171062,-0.06934040173749924 +263074,1315.3700000171063,-0.06934038673833205 +263075,1315.3750000171065,-0.069340371738705 +263076,1315.3800000171066,-0.0693403567386181 +263077,1315.3850000171067,-0.06934034173807141 +263078,1315.3900000171068,-0.06934032673706496 +263079,1315.395000017107,-0.06934031173559879 +263080,1315.400000017107,-0.06934029673367295 +263081,1315.405000017107,-0.06934028173128746 +263082,1315.4100000171072,-0.06934026672844237 +263083,1315.4150000171073,-0.06934025172513773 +263084,1315.4200000171074,-0.06934023672137357 +263085,1315.4250000171075,-0.06934022171714994 +263086,1315.4300000171077,-0.06934020671246688 +263087,1315.4350000171078,-0.0693401917073244 +263088,1315.4400000171079,-0.06934017670172259 +263089,1315.445000017108,-0.06934016169566146 +263090,1315.450000017108,-0.06934014668914104 +263091,1315.4550000171082,-0.06934013168216138 +263092,1315.4600000171083,-0.06934011667472254 +263093,1315.4650000171084,-0.06934010166682454 +263094,1315.4700000171085,-0.06934008665846741 +263095,1315.4750000171086,-0.06934007164965122 +263096,1315.4800000171088,-0.069340056640376 +263097,1315.4850000171089,-0.06934004163064177 +263098,1315.490000017109,-0.06934002662044858 +263099,1315.495000017109,-0.06934001160979648 +263100,1315.5000000171092,-0.0693399965986855 +263101,1315.5050000171093,-0.06933998158711568 +263102,1315.5100000171094,-0.06933996657508708 +263103,1315.5150000171095,-0.06933995156259971 +263104,1315.5200000171096,-0.06933993654965362 +263105,1315.5250000171097,-0.06933992153624885 +263106,1315.5300000171098,-0.06933990652238545 +263107,1315.53500001711,-0.06933989150806345 +263108,1315.54000001711,-0.06933987649328288 +263109,1315.5450000171102,-0.06933986147804382 +263110,1315.5500000171103,-0.06933984646234626 +263111,1315.5550000171104,-0.06933983144619027 +263112,1315.5600000171105,-0.06933981642957589 +263113,1315.5650000171106,-0.06933980141250315 +263114,1315.5700000171107,-0.06933978639497208 +263115,1315.5750000171108,-0.06933977137698275 +263116,1315.580000017111,-0.06933975635853516 +263117,1315.585000017111,-0.06933974133962938 +263118,1315.5900000171112,-0.06933972632026543 +263119,1315.5950000171113,-0.06933971130044338 +263120,1315.6000000171114,-0.06933969628016323 +263121,1315.6050000171115,-0.06933968125942505 +263122,1315.6100000171116,-0.06933966623822888 +263123,1315.6150000171117,-0.06933965121657473 +263124,1315.6200000171118,-0.06933963619446268 +263125,1315.625000017112,-0.06933962117189273 +263126,1315.630000017112,-0.06933960614886495 +263127,1315.6350000171121,-0.06933959112537935 +263128,1315.6400000171122,-0.06933957610143601 +263129,1315.6450000171124,-0.06933956107703493 +263130,1315.6500000171125,-0.06933954605217618 +263131,1315.6550000171126,-0.06933953102685977 +263132,1315.6600000171127,-0.06933951600108577 +263133,1315.6650000171128,-0.06933950097485421 +263134,1315.670000017113,-0.06933948594816511 +263135,1315.675000017113,-0.06933947092101854 +263136,1315.6800000171131,-0.06933945589341452 +263137,1315.6850000171132,-0.06933944086535308 +263138,1315.6900000171133,-0.06933942583683428 +263139,1315.6950000171134,-0.06933941080785816 +263140,1315.7000000171136,-0.06933939577842474 +263141,1315.7050000171137,-0.06933938074853409 +263142,1315.7100000171138,-0.06933936571818622 +263143,1315.7150000171139,-0.06933935068738117 +263144,1315.720000017114,-0.06933933565611901 +263145,1315.725000017114,-0.06933932062439975 +263146,1315.7300000171142,-0.06933930559222344 +263147,1315.7350000171143,-0.06933929055959011 +263148,1315.7400000171144,-0.06933927552649982 +263149,1315.7450000171145,-0.0693392604929526 +263150,1315.7500000171146,-0.06933924545894847 +263151,1315.7550000171148,-0.0693392304244875 +263152,1315.7600000171149,-0.0693392153895697 +263153,1315.765000017115,-0.06933920035419515 +263154,1315.770000017115,-0.06933918531836385 +263155,1315.7750000171152,-0.06933917028207585 +263156,1315.7800000171153,-0.0693391552453312 +263157,1315.7850000171154,-0.06933914020812994 +263158,1315.7900000171155,-0.06933912517047208 +263159,1315.7950000171156,-0.0693391101323577 +263160,1315.8000000171157,-0.06933909509378682 +263161,1315.8050000171158,-0.06933908005475946 +263162,1315.810000017116,-0.06933906501527569 +263163,1315.815000017116,-0.06933904997533555 +263164,1315.8200000171162,-0.06933903493493905 +263165,1315.8250000171163,-0.06933901989408625 +263166,1315.8300000171164,-0.06933900485277719 +263167,1315.8350000171165,-0.06933898981101191 +263168,1315.8400000171166,-0.06933897476879045 +263169,1315.8450000171167,-0.06933895972611283 +263170,1315.8500000171168,-0.0693389446829791 +263171,1315.855000017117,-0.06933892963938933 +263172,1315.860000017117,-0.0693389145953435 +263173,1315.8650000171172,-0.06933889955084169 +263174,1315.8700000171173,-0.06933888450588392 +263175,1315.8750000171174,-0.06933886946047026 +263176,1315.8800000171175,-0.0693388544146007 +263177,1315.8850000171176,-0.06933883936827533 +263178,1315.8900000171177,-0.06933882432149416 +263179,1315.8950000171178,-0.06933880927425723 +263180,1315.900000017118,-0.0693387942265646 +263181,1315.905000017118,-0.06933877917841627 +263182,1315.9100000171181,-0.06933876412981232 +263183,1315.9150000171182,-0.06933874908075277 +263184,1315.9200000171184,-0.06933873403123765 +263185,1315.9250000171185,-0.06933871898126702 +263186,1315.9300000171186,-0.0693387039308409 +263187,1315.9350000171187,-0.06933868887995935 +263188,1315.9400000171188,-0.0693386738286224 +263189,1315.945000017119,-0.06933865877683007 +263190,1315.950000017119,-0.06933864372458243 +263191,1315.9550000171191,-0.0693386286718795 +263192,1315.9600000171192,-0.06933861361872132 +263193,1315.9650000171193,-0.06933859856510793 +263194,1315.9700000171194,-0.06933858351103937 +263195,1315.9750000171196,-0.06933856845651569 +263196,1315.9800000171197,-0.06933855340153691 +263197,1315.9850000171198,-0.06933853834610308 +263198,1315.9900000171199,-0.06933852329021423 +263199,1315.99500001712,-0.0693385082338704 +263200,1316.00000001712,-0.06933849317707164 +263201,1316.0050000171202,-0.069338478119818 +263202,1316.0100000171203,-0.06933846306210949 +263203,1316.0150000171204,-0.06933844800394616 +263204,1316.0200000171205,-0.06933843294532806 +263205,1316.0250000171206,-0.06933841788625521 +263206,1316.0300000171208,-0.06933840282672765 +263207,1316.0350000171209,-0.06933838776674543 +263208,1316.040000017121,-0.06933837270630859 +263209,1316.045000017121,-0.06933835764541717 +263210,1316.0500000171212,-0.06933834258407119 +263211,1316.0550000171213,-0.0693383275222707 +263212,1316.0600000171214,-0.06933831246001575 +263213,1316.0650000171215,-0.06933829739730636 +263214,1316.0700000171216,-0.06933828233414259 +263215,1316.0750000171217,-0.06933826727052446 +263216,1316.0800000171218,-0.06933825220645201 +263217,1316.085000017122,-0.06933823714192529 +263218,1316.090000017122,-0.06933822207694433 +263219,1316.0950000171222,-0.06933820701150917 +263220,1316.1000000171223,-0.06933819194561985 +263221,1316.1050000171224,-0.06933817687927642 +263222,1316.1100000171225,-0.0693381618124789 +263223,1316.1150000171226,-0.06933814674522734 +263224,1316.1200000171227,-0.06933813167752176 +263225,1316.1250000171228,-0.06933811660936222 +263226,1316.130000017123,-0.06933810154074875 +263227,1316.135000017123,-0.0693380864716814 +263228,1316.1400000171232,-0.0693380714021602 +263229,1316.1450000171233,-0.06933805633218518 +263230,1316.1500000171234,-0.06933804126175638 +263231,1316.1550000171235,-0.06933802619087387 +263232,1316.1600000171236,-0.06933801111953763 +263233,1316.1650000171237,-0.06933799604774776 +263234,1316.1700000171238,-0.06933798097550427 +263235,1316.175000017124,-0.06933796590280719 +263236,1316.180000017124,-0.06933795082965656 +263237,1316.1850000171241,-0.06933793575605245 +263238,1316.1900000171242,-0.06933792068199486 +263239,1316.1950000171244,-0.06933790560748385 +263240,1316.2000000171245,-0.06933789053251944 +263241,1316.2050000171246,-0.06933787545710168 +263242,1316.2100000171247,-0.06933786038123063 +263243,1316.2150000171248,-0.0693378453049063 +263244,1316.220000017125,-0.06933783022812873 +263245,1316.225000017125,-0.06933781515089796 +263246,1316.2300000171251,-0.06933780007321402 +263247,1316.2350000171252,-0.06933778499507699 +263248,1316.2400000171253,-0.06933776991648687 +263249,1316.2450000171254,-0.0693377548374437 +263250,1316.2500000171256,-0.06933773975794753 +263251,1316.2550000171257,-0.0693377246779984 +263252,1316.2600000171258,-0.06933770959759633 +263253,1316.2650000171259,-0.06933769451674138 +263254,1316.270000017126,-0.06933767943543359 +263255,1316.275000017126,-0.06933766435367297 +263256,1316.2800000171262,-0.06933764927145959 +263257,1316.2850000171263,-0.06933763418879348 +263258,1316.2900000171264,-0.06933761910567467 +263259,1316.2950000171265,-0.06933760402210319 +263260,1316.3000000171266,-0.06933758893807909 +263261,1316.3050000171268,-0.06933757385360242 +263262,1316.3100000171269,-0.0693375587686732 +263263,1316.315000017127,-0.06933754368329148 +263264,1316.320000017127,-0.0693375285974573 +263265,1316.3250000171272,-0.06933751351117066 +263266,1316.3300000171273,-0.06933749842443165 +263267,1316.3350000171274,-0.0693374833372403 +263268,1316.3400000171275,-0.06933746824959662 +263269,1316.3450000171276,-0.06933745316150068 +263270,1316.3500000171277,-0.06933743807295248 +263271,1316.3550000171278,-0.0693374229839521 +263272,1316.360000017128,-0.06933740789449955 +263273,1316.365000017128,-0.06933739280459487 +263274,1316.3700000171282,-0.06933737771423812 +263275,1316.3750000171283,-0.06933736262342932 +263276,1316.3800000171284,-0.0693373475321685 +263277,1316.3850000171285,-0.06933733244045572 +263278,1316.3900000171286,-0.069337317348291 +263279,1316.3950000171287,-0.06933730225567439 +263280,1316.4000000171288,-0.06933728716260593 +263281,1316.405000017129,-0.06933727206908563 +263282,1316.410000017129,-0.06933725697511356 +263283,1316.4150000171292,-0.06933724188068977 +263284,1316.4200000171293,-0.06933722678581425 +263285,1316.4250000171294,-0.06933721169048708 +263286,1316.4300000171295,-0.06933719659470827 +263287,1316.4350000171296,-0.06933718149847788 +263288,1316.4400000171297,-0.06933716640179592 +263289,1316.4450000171298,-0.06933715130466248 +263290,1316.45000001713,-0.06933713620707753 +263291,1316.45500001713,-0.06933712110904117 +263292,1316.4600000171301,-0.0693371060105534 +263293,1316.4650000171303,-0.06933709091161427 +263294,1316.4700000171304,-0.06933707581222381 +263295,1316.4750000171305,-0.06933706071238208 +263296,1316.4800000171306,-0.06933704561208909 +263297,1316.4850000171307,-0.06933703051134489 +263298,1316.4900000171308,-0.06933701541014951 +263299,1316.495000017131,-0.06933700030850301 +263300,1316.500000017131,-0.0693369852064054 +263301,1316.5050000171311,-0.06933697010385674 +263302,1316.5100000171312,-0.06933695500085706 +263303,1316.5150000171313,-0.0693369398974064 +263304,1316.5200000171315,-0.0693369247935048 +263305,1316.5250000171316,-0.06933690968915228 +263306,1316.5300000171317,-0.0693368945843489 +263307,1316.5350000171318,-0.0693368794790947 +263308,1316.540000017132,-0.06933686437338969 +263309,1316.545000017132,-0.06933684926723394 +263310,1316.550000017132,-0.06933683416062746 +263311,1316.5550000171322,-0.06933681905357031 +263312,1316.5600000171323,-0.06933680394606252 +263313,1316.5650000171324,-0.06933678883810411 +263314,1316.5700000171325,-0.06933677372969516 +263315,1316.5750000171327,-0.06933675862083566 +263316,1316.5800000171328,-0.06933674351152568 +263317,1316.5850000171329,-0.06933672840176523 +263318,1316.590000017133,-0.06933671329155437 +263319,1316.595000017133,-0.06933669818089315 +263320,1316.6000000171332,-0.0693366830697816 +263321,1316.6050000171333,-0.0693366679582197 +263322,1316.6100000171334,-0.06933665284620757 +263323,1316.6150000171335,-0.06933663773374521 +263324,1316.6200000171336,-0.06933662262083266 +263325,1316.6250000171337,-0.06933660750746995 +263326,1316.6300000171339,-0.06933659239365712 +263327,1316.635000017134,-0.06933657727939424 +263328,1316.640000017134,-0.06933656216468131 +263329,1316.6450000171342,-0.06933654704951839 +263330,1316.6500000171343,-0.06933653193390549 +263331,1316.6550000171344,-0.06933651681784268 +263332,1316.6600000171345,-0.06933650170132998 +263333,1316.6650000171346,-0.06933648658436742 +263334,1316.6700000171347,-0.06933647146695505 +263335,1316.6750000171348,-0.0693364563490929 +263336,1316.680000017135,-0.06933644123078102 +263337,1316.685000017135,-0.06933642611201944 +263338,1316.6900000171352,-0.0693364109928082 +263339,1316.6950000171353,-0.06933639587314734 +263340,1316.7000000171354,-0.0693363807530369 +263341,1316.7050000171355,-0.06933636563247689 +263342,1316.7100000171356,-0.06933635051146737 +263343,1316.7150000171357,-0.06933633539000839 +263344,1316.7200000171358,-0.06933632026809997 +263345,1316.725000017136,-0.06933630514574214 +263346,1316.730000017136,-0.06933629002293497 +263347,1316.7350000171361,-0.06933627489967845 +263348,1316.7400000171363,-0.06933625977597264 +263349,1316.7450000171364,-0.0693362446518176 +263350,1316.7500000171365,-0.06933622952721336 +263351,1316.7550000171366,-0.06933621440215991 +263352,1316.7600000171367,-0.06933619927665734 +263353,1316.7650000171368,-0.06933618415070567 +263354,1316.770000017137,-0.06933616902430494 +263355,1316.775000017137,-0.06933615389745518 +263356,1316.7800000171371,-0.06933613877015643 +263357,1316.7850000171372,-0.06933612364240872 +263358,1316.7900000171373,-0.06933610851421211 +263359,1316.7950000171375,-0.06933609338556664 +263360,1316.8000000171376,-0.06933607825647231 +263361,1316.8050000171377,-0.06933606312692918 +263362,1316.8100000171378,-0.0693360479969373 +263363,1316.815000017138,-0.06933603286649669 +263364,1316.820000017138,-0.06933601773560738 +263365,1316.825000017138,-0.06933600260426943 +263366,1316.8300000171382,-0.06933598747248287 +263367,1316.8350000171383,-0.06933597234024773 +263368,1316.8400000171384,-0.06933595720756404 +263369,1316.8450000171385,-0.06933594207443186 +263370,1316.8500000171387,-0.06933592694085121 +263371,1316.8550000171388,-0.06933591180682212 +263372,1316.8600000171389,-0.06933589667234466 +263373,1316.865000017139,-0.06933588153741885 +263374,1316.870000017139,-0.0693358664020447 +263375,1316.8750000171392,-0.06933585126622228 +263376,1316.8800000171393,-0.06933583612995162 +263377,1316.8850000171394,-0.06933582099323277 +263378,1316.8900000171395,-0.06933580585606573 +263379,1316.8950000171396,-0.06933579071845057 +263380,1316.9000000171397,-0.06933577558038732 +263381,1316.9050000171399,-0.069335760441876 +263382,1316.91000001714,-0.06933574530291668 +263383,1316.91500001714,-0.06933573016350937 +263384,1316.9200000171402,-0.06933571502365411 +263385,1316.9250000171403,-0.06933569988335096 +263386,1316.9300000171404,-0.06933568474259992 +263387,1316.9350000171405,-0.06933566960140107 +263388,1316.9400000171406,-0.06933565445975441 +263389,1316.9450000171407,-0.06933563931766 +263390,1316.9500000171408,-0.06933562417511786 +263391,1316.955000017141,-0.06933560903212803 +263392,1316.960000017141,-0.06933559388869055 +263393,1316.9650000171412,-0.06933557874480548 +263394,1316.9700000171413,-0.06933556360047283 +263395,1316.9750000171414,-0.06933554845569263 +263396,1316.9800000171415,-0.06933553331046494 +263397,1316.9850000171416,-0.06933551816478979 +263398,1316.9900000171417,-0.06933550301866721 +263399,1316.9950000171418,-0.06933548787209724 +263400,1317.000000017142,-0.06933547272507992 +263401,1317.005000017142,-0.06933545757761529 +263402,1317.0100000171421,-0.06933544242970338 +263403,1317.0150000171423,-0.06933542728134423 +263404,1317.0200000171424,-0.06933541213253787 +263405,1317.0250000171425,-0.06933539698328435 +263406,1317.0300000171426,-0.0693353818335837 +263407,1317.0350000171427,-0.06933536668343596 +263408,1317.0400000171428,-0.06933535153284116 +263409,1317.045000017143,-0.06933533638179934 +263410,1317.050000017143,-0.06933532123031054 +263411,1317.0550000171431,-0.0693353060783748 +263412,1317.0600000171432,-0.06933529092599214 +263413,1317.0650000171433,-0.06933527577316262 +263414,1317.0700000171435,-0.06933526061988626 +263415,1317.0750000171436,-0.0693352454661631 +263416,1317.0800000171437,-0.06933523031199319 +263417,1317.0850000171438,-0.06933521515737655 +263418,1317.090000017144,-0.06933520000231323 +263419,1317.095000017144,-0.06933518484680326 +263420,1317.100000017144,-0.06933516969084667 +263421,1317.1050000171442,-0.0693351545344435 +263422,1317.1100000171443,-0.0693351393775938 +263423,1317.1150000171444,-0.06933512422029758 +263424,1317.1200000171445,-0.06933510906255491 +263425,1317.1250000171447,-0.0693350939043658 +263426,1317.1300000171448,-0.06933507874573032 +263427,1317.1350000171449,-0.06933506358664845 +263428,1317.140000017145,-0.06933504842712028 +263429,1317.145000017145,-0.06933503326714584 +263430,1317.1500000171452,-0.06933501810672513 +263431,1317.1550000171453,-0.06933500294585822 +263432,1317.1600000171454,-0.06933498778454514 +263433,1317.1650000171455,-0.06933497262278591 +263434,1317.1700000171456,-0.0693349574605806 +263435,1317.1750000171457,-0.06933494229792922 +263436,1317.1800000171459,-0.06933492713483182 +263437,1317.185000017146,-0.06933491197128842 +263438,1317.190000017146,-0.06933489680729908 +263439,1317.1950000171462,-0.06933488164286382 +263440,1317.2000000171463,-0.06933486647798269 +263441,1317.2050000171464,-0.0693348513126557 +263442,1317.2100000171465,-0.0693348361468829 +263443,1317.2150000171466,-0.06933482098066435 +263444,1317.2200000171467,-0.06933480581400006 +263445,1317.2250000171468,-0.06933479064689009 +263446,1317.230000017147,-0.06933477547933443 +263447,1317.235000017147,-0.06933476031133318 +263448,1317.2400000171472,-0.06933474514288632 +263449,1317.2450000171473,-0.06933472997399391 +263450,1317.2500000171474,-0.069334714804656 +263451,1317.2550000171475,-0.06933469963487261 +263452,1317.2600000171476,-0.06933468446464378 +263453,1317.2650000171477,-0.06933466929396954 +263454,1317.2700000171478,-0.06933465412284995 +263455,1317.275000017148,-0.06933463895128501 +263456,1317.280000017148,-0.0693346237792748 +263457,1317.2850000171481,-0.06933460860681931 +263458,1317.2900000171483,-0.0693345934339186 +263459,1317.2950000171484,-0.06933457826057271 +263460,1317.3000000171485,-0.06933456308678167 +263461,1317.3050000171486,-0.06933454791254552 +263462,1317.3100000171487,-0.0693345327378643 +263463,1317.3150000171488,-0.06933451756273804 +263464,1317.320000017149,-0.06933450238716676 +263465,1317.325000017149,-0.06933448721115053 +263466,1317.3300000171491,-0.06933447203468937 +263467,1317.3350000171492,-0.06933445685778332 +263468,1317.3400000171494,-0.06933444168043242 +263469,1317.3450000171495,-0.06933442650263669 +263470,1317.3500000171496,-0.06933441132439618 +263471,1317.3550000171497,-0.06933439614571091 +263472,1317.3600000171498,-0.06933438096658094 +263473,1317.36500001715,-0.06933436578700629 +263474,1317.37000001715,-0.069334350606987 +263475,1317.3750000171501,-0.06933433542652312 +263476,1317.3800000171502,-0.06933432024561466 +263477,1317.3850000171503,-0.06933430506426169 +263478,1317.3900000171504,-0.0693342898824642 +263479,1317.3950000171506,-0.06933427470022228 +263480,1317.4000000171507,-0.06933425951753593 +263481,1317.4050000171508,-0.0693342443344052 +263482,1317.4100000171509,-0.06933422915083011 +263483,1317.415000017151,-0.06933421396681072 +263484,1317.420000017151,-0.06933419878234706 +263485,1317.4250000171512,-0.06933418359743915 +263486,1317.4300000171513,-0.06933416841208705 +263487,1317.4350000171514,-0.06933415322629076 +263488,1317.4400000171515,-0.06933413804005036 +263489,1317.4450000171516,-0.06933412285336585 +263490,1317.4500000171518,-0.06933410766623728 +263491,1317.4550000171519,-0.06933409247866469 +263492,1317.460000017152,-0.06933407729064812 +263493,1317.465000017152,-0.06933406210218761 +263494,1317.4700000171522,-0.06933404691328318 +263495,1317.4750000171523,-0.06933403172393487 +263496,1317.4800000171524,-0.06933401653414271 +263497,1317.4850000171525,-0.06933400134390677 +263498,1317.4900000171526,-0.06933398615322704 +263499,1317.4950000171527,-0.0693339709621036 +263500,1317.5000000171528,-0.06933395577053643 +263501,1317.505000017153,-0.06933394057852563 +263502,1317.510000017153,-0.0693339253860712 +263503,1317.5150000171532,-0.06933391019317317 +263504,1317.5200000171533,-0.06933389499983159 +263505,1317.5250000171534,-0.0693338798060465 +263506,1317.5300000171535,-0.06933386461181792 +263507,1317.5350000171536,-0.06933384941714592 +263508,1317.5400000171537,-0.06933383422203049 +263509,1317.5450000171538,-0.0693338190264717 +263510,1317.550000017154,-0.06933380383046958 +263511,1317.555000017154,-0.06933378863402415 +263512,1317.5600000171542,-0.06933377343713545 +263513,1317.5650000171543,-0.06933375823980353 +263514,1317.5700000171544,-0.06933374304202841 +263515,1317.5750000171545,-0.06933372784381016 +263516,1317.5800000171546,-0.06933371264514876 +263517,1317.5850000171547,-0.0693336974460443 +263518,1317.5900000171548,-0.06933368224649678 +263519,1317.595000017155,-0.06933366704650624 +263520,1317.600000017155,-0.06933365184607274 +263521,1317.6050000171551,-0.06933363664519629 +263522,1317.6100000171552,-0.06933362144387695 +263523,1317.6150000171554,-0.06933360624211472 +263524,1317.6200000171555,-0.06933359103990967 +263525,1317.6250000171556,-0.06933357583726184 +263526,1317.6300000171557,-0.06933356063417122 +263527,1317.6350000171558,-0.0693335454306379 +263528,1317.640000017156,-0.06933353022666187 +263529,1317.645000017156,-0.0693335150222432 +263530,1317.6500000171561,-0.06933349981738192 +263531,1317.6550000171562,-0.06933348461207806 +263532,1317.6600000171563,-0.06933346940633164 +263533,1317.6650000171564,-0.06933345420014272 +263534,1317.6700000171566,-0.06933343899351134 +263535,1317.6750000171567,-0.0693334237864375 +263536,1317.6800000171568,-0.06933340857892127 +263537,1317.6850000171569,-0.06933339337096267 +263538,1317.690000017157,-0.06933337816256174 +263539,1317.695000017157,-0.06933336295371852 +263540,1317.7000000171572,-0.06933334774443305 +263541,1317.7050000171573,-0.06933333253470533 +263542,1317.7100000171574,-0.06933331732453545 +263543,1317.7150000171575,-0.0693333021139234 +263544,1317.7200000171576,-0.06933328690286923 +263545,1317.7250000171578,-0.069333271691373 +263546,1317.7300000171579,-0.06933325647943472 +263547,1317.735000017158,-0.06933324126705444 +263548,1317.740000017158,-0.06933322605423217 +263549,1317.7450000171582,-0.06933321084096798 +263550,1317.7500000171583,-0.06933319562726188 +263551,1317.7550000171584,-0.06933318041311393 +263552,1317.7600000171585,-0.06933316519852413 +263553,1317.7650000171586,-0.06933314998349255 +263554,1317.7700000171587,-0.06933313476801921 +263555,1317.7750000171588,-0.06933311955210414 +263556,1317.780000017159,-0.06933310433574738 +263557,1317.785000017159,-0.06933308911894898 +263558,1317.7900000171592,-0.06933307390170895 +263559,1317.7950000171593,-0.06933305868402737 +263560,1317.8000000171594,-0.06933304346590423 +263561,1317.8050000171595,-0.06933302824733957 +263562,1317.8100000171596,-0.06933301302833345 +263563,1317.8150000171597,-0.06933299780888588 +263564,1317.8200000171598,-0.06933298258899691 +263565,1317.82500001716,-0.06933296736866659 +263566,1317.83000001716,-0.06933295214789494 +263567,1317.8350000171602,-0.06933293692668197 +263568,1317.8400000171603,-0.06933292170502776 +263569,1317.8450000171604,-0.06933290648293232 +263570,1317.8500000171605,-0.06933289126039568 +263571,1317.8550000171606,-0.0693328760374179 +263572,1317.8600000171607,-0.069332860813999 +263573,1317.8650000171608,-0.06933284559013903 +263574,1317.870000017161,-0.06933283036583801 +263575,1317.875000017161,-0.06933281514109596 +263576,1317.8800000171611,-0.06933279991591296 +263577,1317.8850000171612,-0.069332784690289 +263578,1317.8900000171614,-0.06933276946422415 +263579,1317.8950000171615,-0.06933275423771842 +263580,1317.9000000171616,-0.06933273901077186 +263581,1317.9050000171617,-0.06933272378338451 +263582,1317.9100000171618,-0.0693327085555564 +263583,1317.915000017162,-0.06933269332728755 +263584,1317.920000017162,-0.069332678098578 +263585,1317.9250000171621,-0.06933266286942781 +263586,1317.9300000171622,-0.069332647639837 +263587,1317.9350000171623,-0.0693326324098056 +263588,1317.9400000171624,-0.06933261717933366 +263589,1317.9450000171626,-0.06933260194842118 +263590,1317.9500000171627,-0.06933258671706824 +263591,1317.9550000171628,-0.06933257148527486 +263592,1317.9600000171629,-0.06933255625304106 +263593,1317.965000017163,-0.06933254102036689 +263594,1317.970000017163,-0.06933252578725238 +263595,1317.9750000171632,-0.06933251055369757 +263596,1317.9800000171633,-0.06933249531970251 +263597,1317.9850000171634,-0.0693324800852672 +263598,1317.9900000171635,-0.06933246485039168 +263599,1317.9950000171636,-0.06933244961507604 +263600,1318.0000000171638,-0.06933243437932024 +263601,1318.0050000171639,-0.06933241914312435 +263602,1318.010000017164,-0.06933240390648843 +263603,1318.015000017164,-0.06933238866941246 +263604,1318.0200000171642,-0.06933237343189654 +263605,1318.0250000171643,-0.06933235819394064 +263606,1318.0300000171644,-0.06933234295554483 +263607,1318.0350000171645,-0.06933232771670915 +263608,1318.0400000171646,-0.06933231247743361 +263609,1318.0450000171647,-0.06933229723771828 +263610,1318.0500000171648,-0.06933228199756317 +263611,1318.055000017165,-0.06933226675696832 +263612,1318.060000017165,-0.06933225151593378 +263613,1318.0650000171652,-0.06933223627445956 +263614,1318.0700000171653,-0.06933222103254572 +263615,1318.0750000171654,-0.06933220579019228 +263616,1318.0800000171655,-0.06933219054739928 +263617,1318.0850000171656,-0.06933217530416676 +263618,1318.0900000171657,-0.06933216006049472 +263619,1318.0950000171658,-0.06933214481638325 +263620,1318.100000017166,-0.06933212957183235 +263621,1318.105000017166,-0.06933211432684207 +263622,1318.1100000171662,-0.06933209908141243 +263623,1318.1150000171663,-0.06933208383554347 +263624,1318.1200000171664,-0.06933206858923524 +263625,1318.1250000171665,-0.06933205334248775 +263626,1318.1300000171666,-0.06933203809530106 +263627,1318.1350000171667,-0.06933202284767519 +263628,1318.1400000171668,-0.06933200759961018 +263629,1318.145000017167,-0.06933199235110607 +263630,1318.150000017167,-0.06933197710216288 +263631,1318.1550000171671,-0.06933196185278066 +263632,1318.1600000171672,-0.06933194660295945 +263633,1318.1650000171674,-0.06933193135269927 +263634,1318.1700000171675,-0.06933191610200017 +263635,1318.1750000171676,-0.06933190085086216 +263636,1318.1800000171677,-0.06933188559928528 +263637,1318.1850000171678,-0.0693318703472696 +263638,1318.190000017168,-0.06933185509481513 +263639,1318.195000017168,-0.06933183984192189 +263640,1318.2000000171681,-0.06933182458858994 +263641,1318.2050000171682,-0.0693318093348193 +263642,1318.2100000171683,-0.06933179408061 +263643,1318.2150000171684,-0.0693317788259621 +263644,1318.2200000171686,-0.06933176357087563 +263645,1318.2250000171687,-0.06933174831535059 +263646,1318.2300000171688,-0.06933173305938704 +263647,1318.2350000171689,-0.06933171780298503 +263648,1318.240000017169,-0.06933170254614457 +263649,1318.245000017169,-0.06933168728886571 +263650,1318.2500000171692,-0.06933167203114847 +263651,1318.2550000171693,-0.0693316567729929 +263652,1318.2600000171694,-0.06933164151439904 +263653,1318.2650000171695,-0.0693316262553669 +263654,1318.2700000171697,-0.06933161099589655 +263655,1318.2750000171698,-0.06933159573598797 +263656,1318.2800000171699,-0.06933158047564127 +263657,1318.28500001717,-0.06933156521485641 +263658,1318.29000001717,-0.06933154995363347 +263659,1318.2950000171702,-0.06933153469197248 +263660,1318.3000000171703,-0.06933151942987346 +263661,1318.3050000171704,-0.06933150416733647 +263662,1318.3100000171705,-0.06933148890436151 +263663,1318.3150000171706,-0.06933147364094863 +263664,1318.3200000171707,-0.06933145837709788 +263665,1318.3250000171709,-0.06933144311280927 +263666,1318.330000017171,-0.06933142784808285 +263667,1318.335000017171,-0.06933141258291867 +263668,1318.3400000171712,-0.06933139731731673 +263669,1318.3450000171713,-0.06933138205127709 +263670,1318.3500000171714,-0.06933136678479977 +263671,1318.3550000171715,-0.06933135151788482 +263672,1318.3600000171716,-0.06933133625053224 +263673,1318.3650000171717,-0.06933132098274211 +263674,1318.3700000171718,-0.06933130571451446 +263675,1318.375000017172,-0.06933129044584929 +263676,1318.380000017172,-0.06933127517674666 +263677,1318.3850000171722,-0.06933125990720661 +263678,1318.3900000171723,-0.06933124463722914 +263679,1318.3950000171724,-0.06933122936681432 +263680,1318.4000000171725,-0.06933121409596218 +263681,1318.4050000171726,-0.06933119882467276 +263682,1318.4100000171727,-0.06933118355294605 +263683,1318.4150000171728,-0.06933116828078215 +263684,1318.420000017173,-0.06933115300818105 +263685,1318.425000017173,-0.0693311377351428 +263686,1318.4300000171731,-0.06933112246166742 +263687,1318.4350000171733,-0.06933110718775497 +263688,1318.4400000171734,-0.06933109191340546 +263689,1318.4450000171735,-0.06933107663861894 +263690,1318.4500000171736,-0.06933106136339544 +263691,1318.4550000171737,-0.069331046087735 +263692,1318.4600000171738,-0.06933103081163763 +263693,1318.465000017174,-0.0693310155351034 +263694,1318.470000017174,-0.06933100025813234 +263695,1318.4750000171741,-0.06933098498072446 +263696,1318.4800000171742,-0.0693309697028798 +263697,1318.4850000171743,-0.0693309544245984 +263698,1318.4900000171745,-0.06933093914588032 +263699,1318.4950000171746,-0.06933092386672554 +263700,1318.5000000171747,-0.06933090858713414 +263701,1318.5050000171748,-0.06933089330710615 +263702,1318.510000017175,-0.06933087802664159 +263703,1318.515000017175,-0.06933086274574049 +263704,1318.520000017175,-0.0693308474644029 +263705,1318.5250000171752,-0.06933083218262885 +263706,1318.5300000171753,-0.06933081690041838 +263707,1318.5350000171754,-0.06933080161777151 +263708,1318.5400000171755,-0.06933078633468828 +263709,1318.5450000171757,-0.06933077105116874 +263710,1318.5500000171758,-0.0693307557672129 +263711,1318.5550000171759,-0.0693307404828208 +263712,1318.560000017176,-0.0693307251979925 +263713,1318.565000017176,-0.069330709912728 +263714,1318.5700000171762,-0.06933069462702734 +263715,1318.5750000171763,-0.06933067934089057 +263716,1318.5800000171764,-0.06933066405431772 +263717,1318.5850000171765,-0.06933064876730882 +263718,1318.5900000171766,-0.0693306334798639 +263719,1318.5950000171767,-0.06933061819198301 +263720,1318.6000000171769,-0.06933060290366617 +263721,1318.605000017177,-0.06933058761491342 +263722,1318.610000017177,-0.0693305723257248 +263723,1318.6150000171772,-0.06933055703610033 +263724,1318.6200000171773,-0.06933054174604006 +263725,1318.6250000171774,-0.06933052645554401 +263726,1318.6300000171775,-0.06933051116461222 +263727,1318.6350000171776,-0.06933049587324473 +263728,1318.6400000171777,-0.06933048058144158 +263729,1318.6450000171778,-0.06933046528920278 +263730,1318.650000017178,-0.06933044999652839 +263731,1318.655000017178,-0.06933043470341842 +263732,1318.6600000171782,-0.06933041940987292 +263733,1318.6650000171783,-0.06933040411589192 +263734,1318.6700000171784,-0.06933038882147546 +263735,1318.6750000171785,-0.06933037352662358 +263736,1318.6800000171786,-0.06933035823133629 +263737,1318.6850000171787,-0.06933034293561365 +263738,1318.6900000171788,-0.06933032763945568 +263739,1318.695000017179,-0.06933031234286241 +263740,1318.700000017179,-0.06933029704583389 +263741,1318.7050000171791,-0.06933028174837014 +263742,1318.7100000171793,-0.0693302664504712 +263743,1318.7150000171794,-0.0693302511521371 +263744,1318.7200000171795,-0.0693302358533679 +263745,1318.7250000171796,-0.06933022055416359 +263746,1318.7300000171797,-0.06933020525452423 +263747,1318.7350000171798,-0.06933018995444985 +263748,1318.74000001718,-0.0693301746539405 +263749,1318.74500001718,-0.06933015935299618 +263750,1318.7500000171801,-0.06933014405161696 +263751,1318.7550000171802,-0.06933012874980285 +263752,1318.7600000171803,-0.0693301134475539 +263753,1318.7650000171805,-0.06933009814487012 +263754,1318.7700000171806,-0.06933008284175157 +263755,1318.7750000171807,-0.06933006753819829 +263756,1318.7800000171808,-0.06933005223421028 +263757,1318.785000017181,-0.06933003692978758 +263758,1318.790000017181,-0.06933002162493025 +263759,1318.795000017181,-0.06933000631963832 +263760,1318.8000000171812,-0.06932999101391181 +263761,1318.8050000171813,-0.06932997570775075 +263762,1318.8100000171814,-0.06932996040115519 +263763,1318.8150000171815,-0.06932994509412516 +263764,1318.8200000171817,-0.06932992978666067 +263765,1318.8250000171818,-0.0693299144787618 +263766,1318.8300000171819,-0.06932989917042855 +263767,1318.835000017182,-0.06932988386166096 +263768,1318.840000017182,-0.06932986855245908 +263769,1318.8450000171822,-0.06932985324282293 +263770,1318.8500000171823,-0.06932983793275253 +263771,1318.8550000171824,-0.06932982262224793 +263772,1318.8600000171825,-0.06932980731130918 +263773,1318.8650000171826,-0.06932979199993629 +263774,1318.8700000171827,-0.0693297766881293 +263775,1318.8750000171829,-0.06932976137588825 +263776,1318.880000017183,-0.06932974606321317 +263777,1318.885000017183,-0.0693297307501041 +263778,1318.8900000171832,-0.06932971543656105 +263779,1318.8950000171833,-0.06932970012258408 +263780,1318.9000000171834,-0.06932968480817321 +263781,1318.9050000171835,-0.06932966949332849 +263782,1318.9100000171836,-0.06932965417804994 +263783,1318.9150000171837,-0.06932963886233759 +263784,1318.9200000171838,-0.06932962354619149 +263785,1318.925000017184,-0.06932960822961165 +263786,1318.930000017184,-0.06932959291259813 +263787,1318.9350000171842,-0.06932957759515095 +263788,1318.9400000171843,-0.06932956227727016 +263789,1318.9450000171844,-0.06932954695895578 +263790,1318.9500000171845,-0.06932953164020783 +263791,1318.9550000171846,-0.06932951632102637 +263792,1318.9600000171847,-0.06932950100141141 +263793,1318.9650000171848,-0.06932948568136302 +263794,1318.970000017185,-0.06932947036088119 +263795,1318.975000017185,-0.06932945503996597 +263796,1318.9800000171851,-0.06932943971861741 +263797,1318.9850000171853,-0.06932942439683552 +263798,1318.9900000171854,-0.06932940907462036 +263799,1318.9950000171855,-0.06932939375197193 +263800,1319.0000000171856,-0.06932937842889031 +263801,1319.0050000171857,-0.06932936310537549 +263802,1319.0100000171858,-0.06932934778142753 +263803,1319.015000017186,-0.06932933245704645 +263804,1319.020000017186,-0.0693293171322323 +263805,1319.0250000171861,-0.06932930180698509 +263806,1319.0300000171862,-0.06932928648130486 +263807,1319.0350000171863,-0.06932927115519166 +263808,1319.0400000171865,-0.06932925582864552 +263809,1319.0450000171866,-0.06932924050166644 +263810,1319.0500000171867,-0.06932922517425451 +263811,1319.0550000171868,-0.06932920984640971 +263812,1319.060000017187,-0.06932919451813212 +263813,1319.065000017187,-0.06932917918942173 +263814,1319.070000017187,-0.06932916386027861 +263815,1319.0750000171872,-0.06932914853070278 +263816,1319.0800000171873,-0.06932913320069427 +263817,1319.0850000171874,-0.06932911787025313 +263818,1319.0900000171875,-0.06932910253937936 +263819,1319.0950000171877,-0.06932908720807303 +263820,1319.1000000171878,-0.06932907187633415 +263821,1319.1050000171879,-0.06932905654416277 +263822,1319.110000017188,-0.06932904121155892 +263823,1319.115000017188,-0.06932902587852262 +263824,1319.1200000171882,-0.0693290105450539 +263825,1319.1250000171883,-0.06932899521115284 +263826,1319.1300000171884,-0.06932897987681941 +263827,1319.1350000171885,-0.06932896454205369 +263828,1319.1400000171886,-0.06932894920685569 +263829,1319.1450000171887,-0.06932893387122545 +263830,1319.1500000171889,-0.069328918535163 +263831,1319.155000017189,-0.06932890319866838 +263832,1319.160000017189,-0.06932888786174164 +263833,1319.1650000171892,-0.06932887252438277 +263834,1319.1700000171893,-0.06932885718659185 +263835,1319.1750000171894,-0.06932884184836888 +263836,1319.1800000171895,-0.06932882650971392 +263837,1319.1850000171896,-0.06932881117062697 +263838,1319.1900000171897,-0.0693287958311081 +263839,1319.1950000171898,-0.06932878049115732 +263840,1319.20000001719,-0.06932876515077467 +263841,1319.20500001719,-0.06932874980996019 +263842,1319.2100000171902,-0.0693287344687139 +263843,1319.2150000171903,-0.06932871912703585 +263844,1319.2200000171904,-0.06932870378492606 +263845,1319.2250000171905,-0.06932868844238457 +263846,1319.2300000171906,-0.06932867309941142 +263847,1319.2350000171907,-0.06932865775600662 +263848,1319.2400000171908,-0.06932864241217022 +263849,1319.245000017191,-0.06932862706790226 +263850,1319.250000017191,-0.06932861172320276 +263851,1319.2550000171912,-0.06932859637807175 +263852,1319.2600000171913,-0.06932858103250929 +263853,1319.2650000171914,-0.0693285656865154 +263854,1319.2700000171915,-0.0693285503400901 +263855,1319.2750000171916,-0.06932853499323342 +263856,1319.2800000171917,-0.06932851964594543 +263857,1319.2850000171918,-0.06932850429822612 +263858,1319.290000017192,-0.06932848895007555 +263859,1319.295000017192,-0.06932847360149376 +263860,1319.3000000171921,-0.06932845825248075 +263861,1319.3050000171922,-0.0693284429030366 +263862,1319.3100000171924,-0.06932842755316129 +263863,1319.3150000171925,-0.06932841220285489 +263864,1319.3200000171926,-0.06932839685211742 +263865,1319.3250000171927,-0.06932838150094893 +263866,1319.3300000171928,-0.06932836614934942 +263867,1319.335000017193,-0.06932835079731894 +263868,1319.340000017193,-0.06932833544485754 +263869,1319.3450000171931,-0.06932832009196524 +263870,1319.3500000171932,-0.06932830473864207 +263871,1319.3550000171933,-0.06932828938488808 +263872,1319.3600000171934,-0.06932827403070328 +263873,1319.3650000171936,-0.06932825867608772 +263874,1319.3700000171937,-0.06932824332104141 +263875,1319.3750000171938,-0.06932822796556443 +263876,1319.3800000171939,-0.06932821260965676 +263877,1319.385000017194,-0.06932819725331847 +263878,1319.390000017194,-0.06932818189654957 +263879,1319.3950000171942,-0.0693281665393501 +263880,1319.4000000171943,-0.06932815118172012 +263881,1319.4050000171944,-0.06932813582365963 +263882,1319.4100000171945,-0.06932812046516867 +263883,1319.4150000171946,-0.06932810510624728 +263884,1319.4200000171948,-0.06932808974689549 +263885,1319.4250000171949,-0.06932807438711333 +263886,1319.430000017195,-0.06932805902690085 +263887,1319.435000017195,-0.06932804366625805 +263888,1319.4400000171952,-0.06932802830518499 +263889,1319.4450000171953,-0.0693280129436817 +263890,1319.4500000171954,-0.06932799758174821 +263891,1319.4550000171955,-0.06932798221938453 +263892,1319.4600000171956,-0.06932796685659075 +263893,1319.4650000171957,-0.06932795149336686 +263894,1319.4700000171958,-0.06932793612971289 +263895,1319.475000017196,-0.0693279207656289 +263896,1319.480000017196,-0.06932790540111489 +263897,1319.4850000171962,-0.06932789003617093 +263898,1319.4900000171963,-0.06932787467079701 +263899,1319.4950000171964,-0.06932785930499322 +263900,1319.5000000171965,-0.06932784393875954 +263901,1319.5050000171966,-0.06932782857209605 +263902,1319.5100000171967,-0.06932781320500273 +263903,1319.5150000171968,-0.06932779783747965 +263904,1319.520000017197,-0.06932778246952684 +263905,1319.525000017197,-0.06932776710114431 +263906,1319.5300000171972,-0.06932775173233212 +263907,1319.5350000171973,-0.0693277363630903 +263908,1319.5400000171974,-0.06932772099341887 +263909,1319.5450000171975,-0.06932770562331787 +263910,1319.5500000171976,-0.06932769025278732 +263911,1319.5550000171977,-0.06932767488182728 +263912,1319.5600000171978,-0.06932765951043778 +263913,1319.565000017198,-0.0693276441386188 +263914,1319.570000017198,-0.06932762876637046 +263915,1319.5750000171981,-0.06932761339369271 +263916,1319.5800000171982,-0.06932759802058563 +263917,1319.5850000171984,-0.06932758264704927 +263918,1319.5900000171985,-0.06932756727308362 +263919,1319.5950000171986,-0.06932755189868872 +263920,1319.6000000171987,-0.06932753652386463 +263921,1319.6050000171988,-0.06932752114861135 +263922,1319.610000017199,-0.06932750577292894 +263923,1319.615000017199,-0.06932749039681743 +263924,1319.6200000171991,-0.06932747502027684 +263925,1319.6250000171992,-0.0693274596433072 +263926,1319.6300000171993,-0.06932744426590856 +263927,1319.6350000171994,-0.06932742888808094 +263928,1319.6400000171996,-0.06932741350982437 +263929,1319.6450000171997,-0.06932739813113889 +263930,1319.6500000171998,-0.06932738275202453 +263931,1319.6550000171999,-0.06932736737248134 +263932,1319.6600000172,-0.06932735199250932 +263933,1319.6650000172,-0.06932733661210853 +263934,1319.6700000172002,-0.06932732123127901 +263935,1319.6750000172003,-0.06932730585002077 +263936,1319.6800000172004,-0.06932729046833384 +263937,1319.6850000172005,-0.06932727508621826 +263938,1319.6900000172006,-0.0693272597036741 +263939,1319.6950000172008,-0.06932724432070132 +263940,1319.7000000172009,-0.0693272289373 +263941,1319.705000017201,-0.06932721355347017 +263942,1319.710000017201,-0.06932719816921187 +263943,1319.7150000172012,-0.06932718278452511 +263944,1319.7200000172013,-0.06932716739940993 +263945,1319.7250000172014,-0.06932715201386637 +263946,1319.7300000172015,-0.06932713662789446 +263947,1319.7350000172016,-0.06932712124149425 +263948,1319.7400000172017,-0.06932710585466573 +263949,1319.7450000172018,-0.06932709046740897 +263950,1319.750000017202,-0.06932707507972398 +263951,1319.755000017202,-0.06932705969161082 +263952,1319.7600000172022,-0.06932704430306949 +263953,1319.7650000172023,-0.06932702891410004 +263954,1319.7700000172024,-0.06932701352470251 +263955,1319.7750000172025,-0.06932699813487692 +263956,1319.7800000172026,-0.0693269827446233 +263957,1319.7850000172027,-0.06932696735394171 +263958,1319.7900000172028,-0.06932695196283216 +263959,1319.795000017203,-0.06932693657129467 +263960,1319.800000017203,-0.06932692117932929 +263961,1319.8050000172032,-0.06932690578693605 +263962,1319.8100000172033,-0.06932689039411499 +263963,1319.8150000172034,-0.06932687500086615 +263964,1319.8200000172035,-0.06932685960718955 +263965,1319.8250000172036,-0.06932684421308521 +263966,1319.8300000172037,-0.06932682881855318 +263967,1319.8350000172038,-0.06932681342359348 +263968,1319.840000017204,-0.06932679802820615 +263969,1319.845000017204,-0.06932678263239123 +263970,1319.8500000172041,-0.06932676723614874 +263971,1319.8550000172042,-0.06932675183947871 +263972,1319.8600000172044,-0.0693267364423812 +263973,1319.8650000172045,-0.06932672104485622 +263974,1319.8700000172046,-0.06932670564690382 +263975,1319.8750000172047,-0.069326690248524 +263976,1319.8800000172048,-0.06932667484971683 +263977,1319.885000017205,-0.06932665945048232 +263978,1319.890000017205,-0.0693266440508205 +263979,1319.8950000172051,-0.0693266286507314 +263980,1319.9000000172052,-0.06932661325021507 +263981,1319.9050000172053,-0.06932659784927153 +263982,1319.9100000172054,-0.06932658244790084 +263983,1319.9150000172056,-0.069326567046103 +263984,1319.9200000172057,-0.06932655164387805 +263985,1319.9250000172058,-0.06932653624122602 +263986,1319.9300000172059,-0.06932652083814696 +263987,1319.935000017206,-0.06932650543464088 +263988,1319.940000017206,-0.06932649003070783 +263989,1319.9450000172062,-0.06932647462634783 +263990,1319.9500000172063,-0.06932645922156093 +263991,1319.9550000172064,-0.06932644381634714 +263992,1319.9600000172065,-0.06932642841070652 +263993,1319.9650000172066,-0.06932641300463907 +263994,1319.9700000172068,-0.06932639759814484 +263995,1319.9750000172069,-0.06932638219122388 +263996,1319.980000017207,-0.06932636678387619 +263997,1319.985000017207,-0.06932635137610181 +263998,1319.9900000172072,-0.06932633596790079 +263999,1319.9950000172073,-0.06932632055927314 +264000,1320.0000000172074,-0.06932630515021891 +264001,1320.0050000172075,-0.06932628974073814 +264002,1320.0100000172076,-0.06932627433083084 +264003,1320.0150000172077,-0.06932625892049706 +264004,1320.0200000172078,-0.06932624350973682 +264005,1320.025000017208,-0.06932622809855014 +264006,1320.030000017208,-0.06932621268693709 +264007,1320.0350000172082,-0.06932619727489767 +264008,1320.0400000172083,-0.06932618186243192 +264009,1320.0450000172084,-0.0693261664495399 +264010,1320.0500000172085,-0.0693261510362216 +264011,1320.0550000172086,-0.06932613562247708 +264012,1320.0600000172087,-0.06932612020830636 +264013,1320.0650000172088,-0.06932610479370947 +264014,1320.070000017209,-0.06932608937868646 +264015,1320.075000017209,-0.06932607396323735 +264016,1320.0800000172092,-0.06932605854736218 +264017,1320.0850000172093,-0.06932604313106097 +264018,1320.0900000172094,-0.06932602771433376 +264019,1320.0950000172095,-0.06932601229718058 +264020,1320.1000000172096,-0.06932599687960146 +264021,1320.1050000172097,-0.06932598146159644 +264022,1320.1100000172098,-0.06932596604316556 +264023,1320.11500001721,-0.06932595062430882 +264024,1320.12000001721,-0.06932593520502628 +264025,1320.1250000172101,-0.06932591978531798 +264026,1320.1300000172103,-0.06932590436518393 +264027,1320.1350000172104,-0.06932588894462417 +264028,1320.1400000172105,-0.06932587352363874 +264029,1320.1450000172106,-0.06932585810222765 +264030,1320.1500000172107,-0.06932584268039095 +264031,1320.1550000172108,-0.06932582725812866 +264032,1320.160000017211,-0.06932581183544084 +264033,1320.165000017211,-0.0693257964123275 +264034,1320.1700000172111,-0.06932578098878868 +264035,1320.1750000172112,-0.06932576556482441 +264036,1320.1800000172113,-0.06932575014043471 +264037,1320.1850000172115,-0.06932573471561963 +264038,1320.1900000172116,-0.0693257192903792 +264039,1320.1950000172117,-0.06932570386471344 +264040,1320.2000000172118,-0.0693256884386224 +264041,1320.205000017212,-0.0693256730121061 +264042,1320.210000017212,-0.06932565758516457 +264043,1320.215000017212,-0.06932564215779785 +264044,1320.2200000172122,-0.06932562673000596 +264045,1320.2250000172123,-0.06932561130178895 +264046,1320.2300000172124,-0.06932559587314685 +264047,1320.2350000172125,-0.06932558044407967 +264048,1320.2400000172127,-0.06932556501458749 +264049,1320.2450000172128,-0.06932554958467028 +264050,1320.2500000172129,-0.06932553415432813 +264051,1320.255000017213,-0.06932551872356102 +264052,1320.260000017213,-0.06932550329236903 +264053,1320.2650000172132,-0.06932548786075216 +264054,1320.2700000172133,-0.06932547242871044 +264055,1320.2750000172134,-0.06932545699624393 +264056,1320.2800000172135,-0.06932544156335264 +264057,1320.2850000172136,-0.0693254261300366 +264058,1320.2900000172137,-0.06932541069629586 +264059,1320.2950000172139,-0.06932539526213044 +264060,1320.300000017214,-0.06932537982754038 +264061,1320.305000017214,-0.0693253643925257 +264062,1320.3100000172142,-0.06932534895708645 +264063,1320.3150000172143,-0.06932533352122265 +264064,1320.3200000172144,-0.06932531808493432 +264065,1320.3250000172145,-0.06932530264822152 +264066,1320.3300000172146,-0.06932528721108426 +264067,1320.3350000172147,-0.06932527177352257 +264068,1320.3400000172148,-0.0693252563355365 +264069,1320.345000017215,-0.06932524089712609 +264070,1320.350000017215,-0.06932522545829134 +264071,1320.3550000172152,-0.06932521001903232 +264072,1320.3600000172153,-0.06932519457934902 +264073,1320.3650000172154,-0.0693251791392415 +264074,1320.3700000172155,-0.06932516369870978 +264075,1320.3750000172156,-0.06932514825775389 +264076,1320.3800000172157,-0.06932513281637388 +264077,1320.3850000172158,-0.06932511737456977 +264078,1320.390000017216,-0.06932510193234159 +264079,1320.395000017216,-0.06932508648968938 +264080,1320.4000000172161,-0.06932507104661316 +264081,1320.4050000172163,-0.06932505560311297 +264082,1320.4100000172164,-0.06932504015918885 +264083,1320.4150000172165,-0.06932502471484081 +264084,1320.4200000172166,-0.0693250092700689 +264085,1320.4250000172167,-0.06932499382487316 +264086,1320.4300000172168,-0.06932497837925361 +264087,1320.435000017217,-0.06932496293321028 +264088,1320.440000017217,-0.06932494748674319 +264089,1320.4450000172171,-0.06932493203985239 +264090,1320.4500000172172,-0.06932491659253791 +264091,1320.4550000172173,-0.06932490114479976 +264092,1320.4600000172175,-0.06932488569663803 +264093,1320.4650000172176,-0.06932487024805269 +264094,1320.4700000172177,-0.0693248547990438 +264095,1320.4750000172178,-0.06932483934961138 +264096,1320.480000017218,-0.06932482389975547 +264097,1320.485000017218,-0.06932480844947611 +264098,1320.490000017218,-0.06932479299877332 +264099,1320.4950000172182,-0.06932477754764713 +264100,1320.5000000172183,-0.06932476209609759 +264101,1320.5050000172184,-0.0693247466441247 +264102,1320.5100000172185,-0.06932473119172854 +264103,1320.5150000172187,-0.0693247157389091 +264104,1320.5200000172188,-0.06932470028566641 +264105,1320.5250000172189,-0.06932468483200054 +264106,1320.530000017219,-0.06932466937791147 +264107,1320.535000017219,-0.06932465392339929 +264108,1320.5400000172192,-0.06932463846846398 +264109,1320.5450000172193,-0.06932462301310562 +264110,1320.5500000172194,-0.06932460755732418 +264111,1320.5550000172195,-0.06932459210111976 +264112,1320.5600000172196,-0.06932457664449235 +264113,1320.5650000172197,-0.06932456118744197 +264114,1320.5700000172199,-0.0693245457299687 +264115,1320.57500001722,-0.06932453027207254 +264116,1320.58000001722,-0.06932451481375353 +264117,1320.5850000172202,-0.0693244993550117 +264118,1320.5900000172203,-0.06932448389584707 +264119,1320.5950000172204,-0.0693244684362597 +264120,1320.6000000172205,-0.06932445297624959 +264121,1320.6050000172206,-0.0693244375158168 +264122,1320.6100000172207,-0.06932442205496134 +264123,1320.6150000172208,-0.06932440659368323 +264124,1320.620000017221,-0.06932439113198255 +264125,1320.625000017221,-0.0693243756698593 +264126,1320.6300000172212,-0.0693243602073135 +264127,1320.6350000172213,-0.0693243447443452 +264128,1320.6400000172214,-0.06932432928095446 +264129,1320.6450000172215,-0.06932431381714126 +264130,1320.6500000172216,-0.06932429835290566 +264131,1320.6550000172217,-0.06932428288824768 +264132,1320.6600000172218,-0.06932426742316736 +264133,1320.665000017222,-0.06932425195766471 +264134,1320.670000017222,-0.0693242364917398 +264135,1320.6750000172221,-0.06932422102539264 +264136,1320.6800000172223,-0.06932420555862324 +264137,1320.6850000172224,-0.06932419009143168 +264138,1320.6900000172225,-0.06932417462381796 +264139,1320.6950000172226,-0.06932415915578212 +264140,1320.7000000172227,-0.06932414368732419 +264141,1320.7050000172228,-0.06932412821844419 +264142,1320.710000017223,-0.06932411274914217 +264143,1320.715000017223,-0.06932409727941817 +264144,1320.7200000172231,-0.0693240818092722 +264145,1320.7250000172232,-0.0693240663387043 +264146,1320.7300000172233,-0.0693240508677145 +264147,1320.7350000172235,-0.06932403539630282 +264148,1320.7400000172236,-0.06932401992446931 +264149,1320.7450000172237,-0.069324004452214 +264150,1320.7500000172238,-0.06932398897953691 +264151,1320.755000017224,-0.06932397350643808 +264152,1320.760000017224,-0.06932395803291755 +264153,1320.765000017224,-0.06932394255897534 +264154,1320.7700000172242,-0.06932392708461146 +264155,1320.7750000172243,-0.069323911609826 +264156,1320.7800000172244,-0.06932389613461894 +264157,1320.7850000172245,-0.06932388065899033 +264158,1320.7900000172247,-0.0693238651829402 +264159,1320.7950000172248,-0.06932384970646858 +264160,1320.8000000172249,-0.06932383422957551 +264161,1320.805000017225,-0.06932381875226103 +264162,1320.810000017225,-0.06932380327452513 +264163,1320.8150000172252,-0.06932378779636789 +264164,1320.8200000172253,-0.06932377231778929 +264165,1320.8250000172254,-0.06932375683878941 +264166,1320.8300000172255,-0.06932374135936825 +264167,1320.8350000172256,-0.06932372587952587 +264168,1320.8400000172257,-0.06932371039926229 +264169,1320.8450000172259,-0.06932369491857751 +264170,1320.850000017226,-0.06932367943747161 +264171,1320.855000017226,-0.06932366395594461 +264172,1320.8600000172262,-0.06932364847399652 +264173,1320.8650000172263,-0.06932363299162739 +264174,1320.8700000172264,-0.06932361750883724 +264175,1320.8750000172265,-0.06932360202562611 +264176,1320.8800000172266,-0.06932358654199404 +264177,1320.8850000172267,-0.06932357105794104 +264178,1320.8900000172268,-0.06932355557346714 +264179,1320.895000017227,-0.0693235400885724 +264180,1320.900000017227,-0.06932352460325683 +264181,1320.9050000172272,-0.06932350911752046 +264182,1320.9100000172273,-0.06932349363136334 +264183,1320.9150000172274,-0.06932347814478548 +264184,1320.9200000172275,-0.06932346265778692 +264185,1320.9250000172276,-0.0693234471703677 +264186,1320.9300000172277,-0.06932343168252784 +264187,1320.9350000172278,-0.06932341619426736 +264188,1320.940000017228,-0.06932340070558632 +264189,1320.945000017228,-0.06932338521648473 +264190,1320.9500000172281,-0.06932336972696264 +264191,1320.9550000172283,-0.06932335423702007 +264192,1320.9600000172284,-0.06932333874665705 +264193,1320.9650000172285,-0.06932332325587362 +264194,1320.9700000172286,-0.0693233077646698 +264195,1320.9750000172287,-0.06932329227304562 +264196,1320.9800000172288,-0.06932327678100113 +264197,1320.985000017229,-0.06932326128853634 +264198,1320.990000017229,-0.0693232457956513 +264199,1320.9950000172291,-0.06932323030234604 +264200,1321.0000000172292,-0.06932321480862057 +264201,1321.0050000172293,-0.06932319931447493 +264202,1321.0100000172295,-0.06932318381990916 +264203,1321.0150000172296,-0.06932316832492329 +264204,1321.0200000172297,-0.06932315282951734 +264205,1321.0250000172298,-0.06932313733369136 +264206,1321.03000001723,-0.06932312183744538 +264207,1321.03500001723,-0.0693231063407794 +264208,1321.04000001723,-0.0693230908436935 +264209,1321.0450000172302,-0.06932307534618766 +264210,1321.0500000172303,-0.06932305984826197 +264211,1321.0550000172304,-0.0693230443499164 +264212,1321.0600000172305,-0.06932302885115102 +264213,1321.0650000172307,-0.06932301335196586 +264214,1321.0700000172308,-0.06932299785236093 +264215,1321.0750000172309,-0.06932298235233629 +264216,1321.080000017231,-0.06932296685189193 +264217,1321.085000017231,-0.06932295135102792 +264218,1321.0900000172312,-0.06932293584974429 +264219,1321.0950000172313,-0.06932292034804104 +264220,1321.1000000172314,-0.06932290484591823 +264221,1321.1050000172315,-0.0693228893433759 +264222,1321.1100000172316,-0.06932287384041404 +264223,1321.1150000172318,-0.0693228583370327 +264224,1321.1200000172319,-0.06932284283323194 +264225,1321.125000017232,-0.06932282732901175 +264226,1321.130000017232,-0.06932281182437218 +264227,1321.1350000172322,-0.06932279631931326 +264228,1321.1400000172323,-0.06932278081383503 +264229,1321.1450000172324,-0.0693227653079375 +264230,1321.1500000172325,-0.06932274980162072 +264231,1321.1550000172326,-0.06932273429488471 +264232,1321.1600000172327,-0.06932271878772951 +264233,1321.1650000172328,-0.06932270328015515 +264234,1321.170000017233,-0.06932268777216166 +264235,1321.175000017233,-0.06932267226374905 +264236,1321.1800000172332,-0.06932265675491739 +264237,1321.1850000172333,-0.06932264124566669 +264238,1321.1900000172334,-0.06932262573599698 +264239,1321.1950000172335,-0.0693226102259083 +264240,1321.2000000172336,-0.06932259471540066 +264241,1321.2050000172337,-0.06932257920447411 +264242,1321.2100000172338,-0.06932256369312868 +264243,1321.215000017234,-0.06932254818136441 +264244,1321.220000017234,-0.06932253266918131 +264245,1321.2250000172342,-0.06932251715657943 +264246,1321.2300000172343,-0.06932250164355878 +264247,1321.2350000172344,-0.0693224861301194 +264248,1321.2400000172345,-0.06932247061626133 +264249,1321.2450000172346,-0.0693224551019846 +264250,1321.2500000172347,-0.06932243958728924 +264251,1321.2550000172348,-0.06932242407217527 +264252,1321.260000017235,-0.06932240855664273 +264253,1321.265000017235,-0.06932239304069165 +264254,1321.2700000172351,-0.06932237752432206 +264255,1321.2750000172352,-0.069322362007534 +264256,1321.2800000172354,-0.0693223464903275 +264257,1321.2850000172355,-0.06932233097270257 +264258,1321.2900000172356,-0.06932231545465926 +264259,1321.2950000172357,-0.06932229993619761 +264260,1321.3000000172358,-0.06932228441731764 +264261,1321.305000017236,-0.06932226889801936 +264262,1321.310000017236,-0.06932225337830283 +264263,1321.3150000172361,-0.06932223785816807 +264264,1321.3200000172362,-0.06932222233761512 +264265,1321.3250000172363,-0.069322206816644 +264266,1321.3300000172364,-0.06932219129525474 +264267,1321.3350000172366,-0.06932217577344738 +264268,1321.3400000172367,-0.06932216025122193 +264269,1321.3450000172368,-0.06932214472857845 +264270,1321.3500000172369,-0.06932212920551696 +264271,1321.355000017237,-0.0693221136820375 +264272,1321.360000017237,-0.06932209815814008 +264273,1321.3650000172372,-0.06932208263382475 +264274,1321.3700000172373,-0.06932206710909153 +264275,1321.3750000172374,-0.06932205158394043 +264276,1321.3800000172375,-0.06932203605837153 +264277,1321.3850000172376,-0.06932202053238484 +264278,1321.3900000172378,-0.06932200500598039 +264279,1321.3950000172379,-0.06932198947915819 +264280,1321.400000017238,-0.0693219739519183 +264281,1321.405000017238,-0.06932195842426073 +264282,1321.4100000172382,-0.06932194289618554 +264283,1321.4150000172383,-0.06932192736769273 +264284,1321.4200000172384,-0.06932191183878235 +264285,1321.4250000172385,-0.0693218963094544 +264286,1321.4300000172386,-0.06932188077970897 +264287,1321.4350000172387,-0.06932186524954603 +264288,1321.4400000172388,-0.06932184971896566 +264289,1321.445000017239,-0.06932183418796783 +264290,1321.450000017239,-0.06932181865655264 +264291,1321.4550000172392,-0.06932180312472008 +264292,1321.4600000172393,-0.0693217875924702 +264293,1321.4650000172394,-0.069321772059803 +264294,1321.4700000172395,-0.06932175652671854 +264295,1321.4750000172396,-0.06932174099321685 +264296,1321.4800000172397,-0.06932172545929795 +264297,1321.4850000172398,-0.06932170992496188 +264298,1321.49000001724,-0.06932169439020866 +264299,1321.49500001724,-0.06932167885503834 +264300,1321.5000000172402,-0.06932166331945093 +264301,1321.5050000172403,-0.06932164778344647 +264302,1321.5100000172404,-0.06932163224702499 +264303,1321.5150000172405,-0.06932161671018654 +264304,1321.5200000172406,-0.06932160117293111 +264305,1321.5250000172407,-0.06932158563525875 +264306,1321.5300000172408,-0.0693215700971695 +264307,1321.535000017241,-0.06932155455866339 +264308,1321.540000017241,-0.06932153901974043 +264309,1321.5450000172411,-0.06932152348040067 +264310,1321.5500000172412,-0.06932150794064414 +264311,1321.5550000172414,-0.06932149240047088 +264312,1321.5600000172415,-0.0693214768598809 +264313,1321.5650000172416,-0.06932146131887423 +264314,1321.5700000172417,-0.06932144577745092 +264315,1321.5750000172418,-0.06932143023561099 +264316,1321.580000017242,-0.06932141469335447 +264317,1321.585000017242,-0.06932139915068139 +264318,1321.5900000172421,-0.06932138360759178 +264319,1321.5950000172422,-0.06932136806408568 +264320,1321.6000000172423,-0.06932135252016311 +264321,1321.6050000172424,-0.0693213369758241 +264322,1321.6100000172426,-0.0693213214310687 +264323,1321.6150000172427,-0.06932130588589692 +264324,1321.6200000172428,-0.0693212903403088 +264325,1321.6250000172429,-0.06932127479430437 +264326,1321.630000017243,-0.06932125924788367 +264327,1321.635000017243,-0.0693212437010467 +264328,1321.6400000172432,-0.06932122815379352 +264329,1321.6450000172433,-0.06932121260612414 +264330,1321.6500000172434,-0.06932119705803862 +264331,1321.6550000172435,-0.06932118150953698 +264332,1321.6600000172436,-0.06932116596061923 +264333,1321.6650000172438,-0.06932115041128542 +264334,1321.6700000172439,-0.06932113486153557 +264335,1321.675000017244,-0.06932111931136971 +264336,1321.680000017244,-0.0693211037607879 +264337,1321.6850000172442,-0.06932108820979013 +264338,1321.6900000172443,-0.06932107265837645 +264339,1321.6950000172444,-0.0693210571065469 +264340,1321.7000000172445,-0.06932104155430151 +264341,1321.7050000172446,-0.06932102600164028 +264342,1321.7100000172447,-0.06932101044856326 +264343,1321.7150000172448,-0.06932099489507049 +264344,1321.720000017245,-0.06932097934116199 +264345,1321.725000017245,-0.06932096378683779 +264346,1321.7300000172452,-0.06932094823209793 +264347,1321.7350000172453,-0.06932093267694243 +264348,1321.7400000172454,-0.06932091712137134 +264349,1321.7450000172455,-0.06932090156538466 +264350,1321.7500000172456,-0.06932088600898244 +264351,1321.7550000172457,-0.06932087045216472 +264352,1321.7600000172458,-0.0693208548949315 +264353,1321.765000017246,-0.06932083933728284 +264354,1321.770000017246,-0.06932082377921876 +264355,1321.7750000172462,-0.06932080822073929 +264356,1321.7800000172463,-0.06932079266184445 +264357,1321.7850000172464,-0.0693207771025343 +264358,1321.7900000172465,-0.06932076154280883 +264359,1321.7950000172466,-0.06932074598266812 +264360,1321.8000000172467,-0.06932073042211215 +264361,1321.8050000172468,-0.06932071486114098 +264362,1321.810000017247,-0.06932069929975464 +264363,1321.815000017247,-0.06932068373795315 +264364,1321.8200000172471,-0.06932066817573654 +264365,1321.8250000172472,-0.06932065261310486 +264366,1321.8300000172474,-0.06932063705005811 +264367,1321.8350000172475,-0.06932062148659635 +264368,1321.8400000172476,-0.06932060592271957 +264369,1321.8450000172477,-0.06932059035842787 +264370,1321.8500000172478,-0.06932057479372122 +264371,1321.855000017248,-0.06932055922859967 +264372,1321.860000017248,-0.06932054366306326 +264373,1321.8650000172481,-0.06932052809711199 +264374,1321.8700000172482,-0.06932051253074592 +264375,1321.8750000172483,-0.06932049696396507 +264376,1321.8800000172484,-0.06932048139676948 +264377,1321.8850000172486,-0.06932046582915918 +264378,1321.8900000172487,-0.06932045026113419 +264379,1321.8950000172488,-0.06932043469269454 +264380,1321.9000000172489,-0.06932041912384025 +264381,1321.905000017249,-0.06932040355457139 +264382,1321.910000017249,-0.06932038798488795 +264383,1321.9150000172492,-0.06932037241478997 +264384,1321.9200000172493,-0.0693203568442775 +264385,1321.9250000172494,-0.06932034127335056 +264386,1321.9300000172495,-0.06932032570200916 +264387,1321.9350000172496,-0.06932031013025336 +264388,1321.9400000172498,-0.06932029455808318 +264389,1321.9450000172499,-0.06932027898549865 +264390,1321.95000001725,-0.06932026341249979 +264391,1321.95500001725,-0.06932024783908664 +264392,1321.9600000172502,-0.06932023226525924 +264393,1321.9650000172503,-0.06932021669101761 +264394,1321.9700000172504,-0.06932020111636178 +264395,1321.9750000172505,-0.06932018554129178 +264396,1321.9800000172506,-0.06932016996580764 +264397,1321.9850000172507,-0.06932015438990939 +264398,1321.9900000172508,-0.06932013881359707 +264399,1321.995000017251,-0.0693201232368707 +264400,1322.000000017251,-0.06932010765973032 +264401,1322.0050000172512,-0.06932009208217595 +264402,1322.0100000172513,-0.06932007650420761 +264403,1322.0150000172514,-0.06932006092582538 +264404,1322.0200000172515,-0.06932004534702924 +264405,1322.0250000172516,-0.06932002976781922 +264406,1322.0300000172517,-0.06932001418819539 +264407,1322.0350000172518,-0.06931999860815775 +264408,1322.040000017252,-0.06931998302770633 +264409,1322.045000017252,-0.06931996744684116 +264410,1322.0500000172522,-0.0693199518655623 +264411,1322.0550000172523,-0.06931993628386973 +264412,1322.0600000172524,-0.06931992070176354 +264413,1322.0650000172525,-0.06931990511924371 +264414,1322.0700000172526,-0.0693198895363103 +264415,1322.0750000172527,-0.06931987395296332 +264416,1322.0800000172528,-0.06931985836920282 +264417,1322.085000017253,-0.06931984278502881 +264418,1322.090000017253,-0.06931982720044134 +264419,1322.0950000172531,-0.06931981161544043 +264420,1322.1000000172533,-0.06931979603002611 +264421,1322.1050000172534,-0.06931978044419841 +264422,1322.1100000172535,-0.06931976485795736 +264423,1322.1150000172536,-0.06931974927130301 +264424,1322.1200000172537,-0.06931973368423536 +264425,1322.1250000172538,-0.06931971809675445 +264426,1322.130000017254,-0.06931970250886033 +264427,1322.135000017254,-0.069319686920553 +264428,1322.1400000172541,-0.0693196713318325 +264429,1322.1450000172542,-0.06931965574269888 +264430,1322.1500000172543,-0.06931964015315215 +264431,1322.1550000172545,-0.06931962456319234 +264432,1322.1600000172546,-0.06931960897281948 +264433,1322.1650000172547,-0.06931959338203361 +264434,1322.1700000172548,-0.06931957779083477 +264435,1322.175000017255,-0.06931956219922297 +264436,1322.180000017255,-0.06931954660719825 +264437,1322.185000017255,-0.06931953101476063 +264438,1322.1900000172552,-0.06931951542191014 +264439,1322.1950000172553,-0.06931949982864682 +264440,1322.2000000172554,-0.0693194842349707 +264441,1322.2050000172555,-0.06931946864088182 +264442,1322.2100000172557,-0.06931945304638018 +264443,1322.2150000172558,-0.06931943745146583 +264444,1322.2200000172559,-0.0693194218561388 +264445,1322.225000017256,-0.06931940626039913 +264446,1322.230000017256,-0.06931939066424685 +264447,1322.2350000172562,-0.06931937506768196 +264448,1322.2400000172563,-0.06931935947070451 +264449,1322.2450000172564,-0.06931934387331454 +264450,1322.2500000172565,-0.06931932827551207 +264451,1322.2550000172566,-0.06931931267729712 +264452,1322.2600000172567,-0.06931929707866974 +264453,1322.2650000172569,-0.06931928147962994 +264454,1322.270000017257,-0.06931926588017777 +264455,1322.275000017257,-0.06931925028031324 +264456,1322.2800000172572,-0.06931923468003641 +264457,1322.2850000172573,-0.06931921907934728 +264458,1322.2900000172574,-0.06931920347824588 +264459,1322.2950000172575,-0.06931918787673227 +264460,1322.3000000172576,-0.06931917227480647 +264461,1322.3050000172577,-0.06931915667246848 +264462,1322.3100000172578,-0.06931914106971836 +264463,1322.315000017258,-0.06931912546655614 +264464,1322.320000017258,-0.06931910986298183 +264465,1322.3250000172582,-0.06931909425899548 +264466,1322.3300000172583,-0.0693190786545971 +264467,1322.3350000172584,-0.06931906304978674 +264468,1322.3400000172585,-0.06931904744456444 +264469,1322.3450000172586,-0.0693190318389302 +264470,1322.3500000172587,-0.06931901623288407 +264471,1322.3550000172588,-0.06931900062642606 +264472,1322.360000017259,-0.06931898501955623 +264473,1322.365000017259,-0.06931896941227458 +264474,1322.3700000172591,-0.06931895380458117 +264475,1322.3750000172593,-0.06931893819647601 +264476,1322.3800000172594,-0.06931892258795913 +264477,1322.3850000172595,-0.06931890697903058 +264478,1322.3900000172596,-0.06931889136969036 +264479,1322.3950000172597,-0.0693188757599385 +264480,1322.4000000172598,-0.06931886014977506 +264481,1322.40500001726,-0.06931884453920006 +264482,1322.41000001726,-0.06931882892821352 +264483,1322.4150000172601,-0.06931881331681547 +264484,1322.4200000172602,-0.06931879770500593 +264485,1322.4250000172603,-0.06931878209278497 +264486,1322.4300000172605,-0.06931876648015259 +264487,1322.4350000172606,-0.06931875086710881 +264488,1322.4400000172607,-0.0693187352536537 +264489,1322.4450000172608,-0.06931871963978725 +264490,1322.450000017261,-0.0693187040255095 +264491,1322.455000017261,-0.0693186884108205 +264492,1322.460000017261,-0.06931867279572027 +264493,1322.4650000172612,-0.06931865718020881 +264494,1322.4700000172613,-0.0693186415642862 +264495,1322.4750000172614,-0.06931862594795243 +264496,1322.4800000172615,-0.06931861033120755 +264497,1322.4850000172617,-0.06931859471405159 +264498,1322.4900000172618,-0.06931857909648458 +264499,1322.4950000172619,-0.06931856347850653 +264500,1322.500000017262,-0.06931854786011747 +264501,1322.505000017262,-0.06931853224131747 +264502,1322.5100000172622,-0.06931851662210653 +264503,1322.5150000172623,-0.0693185010024847 +264504,1322.5200000172624,-0.06931848538245199 +264505,1322.5250000172625,-0.06931846976200842 +264506,1322.5300000172626,-0.06931845414115405 +264507,1322.5350000172627,-0.06931843851988889 +264508,1322.5400000172629,-0.06931842289821298 +264509,1322.545000017263,-0.06931840727612634 +264510,1322.550000017263,-0.069318391653629 +264511,1322.5550000172632,-0.06931837603072101 +264512,1322.5600000172633,-0.06931836040740239 +264513,1322.5650000172634,-0.06931834478367314 +264514,1322.5700000172635,-0.06931832915953333 +264515,1322.5750000172636,-0.06931831353498298 +264516,1322.5800000172637,-0.06931829791002211 +264517,1322.5850000172638,-0.06931828228465076 +264518,1322.590000017264,-0.06931826665886894 +264519,1322.595000017264,-0.0693182510326767 +264520,1322.6000000172642,-0.06931823540607407 +264521,1322.6050000172643,-0.06931821977906107 +264522,1322.6100000172644,-0.06931820415163772 +264523,1322.6150000172645,-0.0693181885238041 +264524,1322.6200000172646,-0.06931817289556018 +264525,1322.6250000172647,-0.06931815726690603 +264526,1322.6300000172648,-0.06931814163784165 +264527,1322.635000017265,-0.06931812600836709 +264528,1322.640000017265,-0.06931811037848237 +264529,1322.6450000172651,-0.06931809474818754 +264530,1322.6500000172653,-0.0693180791174826 +264531,1322.6550000172654,-0.0693180634863676 +264532,1322.6600000172655,-0.06931804785484255 +264533,1322.6650000172656,-0.0693180322229075 +264534,1322.6700000172657,-0.06931801659056248 +264535,1322.6750000172658,-0.06931800095780752 +264536,1322.680000017266,-0.06931798532464262 +264537,1322.685000017266,-0.06931796969106785 +264538,1322.6900000172661,-0.06931795405708321 +264539,1322.6950000172662,-0.06931793842268875 +264540,1322.7000000172663,-0.0693179227878845 +264541,1322.7050000172665,-0.06931790715267047 +264542,1322.7100000172666,-0.0693178915170467 +264543,1322.7150000172667,-0.06931787588101324 +264544,1322.7200000172668,-0.06931786024457008 +264545,1322.725000017267,-0.0693178446077173 +264546,1322.730000017267,-0.06931782897045487 +264547,1322.735000017267,-0.06931781333278286 +264548,1322.7400000172672,-0.0693177976947013 +264549,1322.7450000172673,-0.06931778205621021 +264550,1322.7500000172674,-0.06931776641730962 +264551,1322.7550000172675,-0.06931775077799955 +264552,1322.7600000172677,-0.06931773513828005 +264553,1322.7650000172678,-0.06931771949815113 +264554,1322.7700000172679,-0.06931770385761284 +264555,1322.775000017268,-0.0693176882166652 +264556,1322.780000017268,-0.06931767257530824 +264557,1322.7850000172682,-0.06931765693354199 +264558,1322.7900000172683,-0.06931764129136647 +264559,1322.7950000172684,-0.06931762564878173 +264560,1322.8000000172685,-0.06931761000578779 +264561,1322.8050000172686,-0.06931759436238467 +264562,1322.8100000172687,-0.0693175787185724 +264563,1322.8150000172689,-0.06931756307435102 +264564,1322.820000017269,-0.06931754742972057 +264565,1322.825000017269,-0.06931753178468107 +264566,1322.8300000172692,-0.06931751613923254 +264567,1322.8350000172693,-0.06931750049337501 +264568,1322.8400000172694,-0.06931748484710852 +264569,1322.8450000172695,-0.0693174692004331 +264570,1322.8500000172696,-0.06931745355334877 +264571,1322.8550000172697,-0.06931743790585557 +264572,1322.8600000172698,-0.06931742225795352 +264573,1322.86500001727,-0.06931740660964267 +264574,1322.87000001727,-0.06931739096092303 +264575,1322.8750000172702,-0.06931737531179462 +264576,1322.8800000172703,-0.0693173596622575 +264577,1322.8850000172704,-0.06931734401231167 +264578,1322.8900000172705,-0.06931732836195718 +264579,1322.8950000172706,-0.06931731271119405 +264580,1322.9000000172707,-0.06931729706002232 +264581,1322.9050000172708,-0.069317281408442 +264582,1322.910000017271,-0.06931726575645314 +264583,1322.915000017271,-0.06931725010405576 +264584,1322.9200000172711,-0.0693172344512499 +264585,1322.9250000172713,-0.06931721879803558 +264586,1322.9300000172714,-0.06931720314441284 +264587,1322.9350000172715,-0.06931718749038168 +264588,1322.9400000172716,-0.06931717183594216 +264589,1322.9450000172717,-0.06931715618109431 +264590,1322.9500000172718,-0.06931714052583814 +264591,1322.955000017272,-0.06931712487017369 +264592,1322.960000017272,-0.06931710921410099 +264593,1322.9650000172721,-0.06931709355762006 +264594,1322.9700000172722,-0.06931707790073094 +264595,1322.9750000172724,-0.06931706224343366 +264596,1322.9800000172725,-0.06931704658572825 +264597,1322.9850000172726,-0.06931703092761474 +264598,1322.9900000172727,-0.06931701526909315 +264599,1322.9950000172728,-0.06931699961016352 +264600,1323.000000017273,-0.06931698395082588 +264601,1323.005000017273,-0.06931696829108025 +264602,1323.0100000172731,-0.06931695263092666 +264603,1323.0150000172732,-0.06931693697036516 +264604,1323.0200000172733,-0.06931692130939576 +264605,1323.0250000172734,-0.06931690564801851 +264606,1323.0300000172736,-0.06931688998623341 +264607,1323.0350000172737,-0.0693168743240405 +264608,1323.0400000172738,-0.06931685866143981 +264609,1323.0450000172739,-0.06931684299843137 +264610,1323.050000017274,-0.06931682733501522 +264611,1323.055000017274,-0.06931681167119137 +264612,1323.0600000172742,-0.06931679600695988 +264613,1323.0650000172743,-0.06931678034232074 +264614,1323.0700000172744,-0.069316764677274 +264615,1323.0750000172745,-0.06931674901181971 +264616,1323.0800000172746,-0.06931673334595788 +264617,1323.0850000172748,-0.06931671767968853 +264618,1323.0900000172749,-0.0693167020130117 +264619,1323.095000017275,-0.06931668634592741 +264620,1323.100000017275,-0.06931667067843571 +264621,1323.1050000172752,-0.06931665501053659 +264622,1323.1100000172753,-0.06931663934223013 +264623,1323.1150000172754,-0.06931662367351633 +264624,1323.1200000172755,-0.06931660800439522 +264625,1323.1250000172756,-0.06931659233486684 +264626,1323.1300000172757,-0.06931657666493123 +264627,1323.1350000172758,-0.06931656099458837 +264628,1323.140000017276,-0.06931654532383834 +264629,1323.145000017276,-0.06931652965268116 +264630,1323.1500000172762,-0.06931651398111684 +264631,1323.1550000172763,-0.06931649830914544 +264632,1323.1600000172764,-0.06931648263676696 +264633,1323.1650000172765,-0.06931646696398144 +264634,1323.1700000172766,-0.06931645129078892 +264635,1323.1750000172767,-0.06931643561718942 +264636,1323.1800000172768,-0.06931641994318297 +264637,1323.185000017277,-0.06931640426876959 +264638,1323.190000017277,-0.06931638859394933 +264639,1323.1950000172772,-0.0693163729187222 +264640,1323.2000000172773,-0.06931635724308824 +264641,1323.2050000172774,-0.06931634156704747 +264642,1323.2100000172775,-0.06931632589059993 +264643,1323.2150000172776,-0.06931631021374564 +264644,1323.2200000172777,-0.06931629453648465 +264645,1323.2250000172778,-0.06931627885881697 +264646,1323.230000017278,-0.06931626318074265 +264647,1323.235000017278,-0.06931624750226167 +264648,1323.2400000172781,-0.06931623182337411 +264649,1323.2450000172782,-0.06931621614407998 +264650,1323.2500000172784,-0.06931620046437932 +264651,1323.2550000172785,-0.06931618478427214 +264652,1323.2600000172786,-0.06931616910375848 +264653,1323.2650000172787,-0.06931615342283838 +264654,1323.2700000172788,-0.06931613774151185 +264655,1323.275000017279,-0.06931612205977894 +264656,1323.280000017279,-0.06931610637763966 +264657,1323.2850000172791,-0.06931609069509405 +264658,1323.2900000172792,-0.06931607501214214 +264659,1323.2950000172793,-0.06931605932878396 +264660,1323.3000000172794,-0.06931604364501952 +264661,1323.3050000172796,-0.06931602796084887 +264662,1323.3100000172797,-0.06931601227627204 +264663,1323.3150000172798,-0.06931599659128906 +264664,1323.3200000172799,-0.06931598090589995 +264665,1323.32500001728,-0.06931596522010475 +264666,1323.33000001728,-0.06931594953390346 +264667,1323.3350000172802,-0.06931593384729615 +264668,1323.3400000172803,-0.06931591816028283 +264669,1323.3450000172804,-0.06931590247286352 +264670,1323.3500000172805,-0.06931588678503828 +264671,1323.3550000172806,-0.0693158710968071 +264672,1323.3600000172808,-0.06931585540817004 +264673,1323.3650000172809,-0.06931583971912711 +264674,1323.370000017281,-0.06931582402967836 +264675,1323.375000017281,-0.06931580833982379 +264676,1323.3800000172812,-0.06931579264956345 +264677,1323.3850000172813,-0.06931577695889736 +264678,1323.3900000172814,-0.06931576126782557 +264679,1323.3950000172815,-0.06931574557634808 +264680,1323.4000000172816,-0.06931572988446494 +264681,1323.4050000172817,-0.06931571419217618 +264682,1323.4100000172818,-0.06931569849948181 +264683,1323.415000017282,-0.06931568280638187 +264684,1323.420000017282,-0.0693156671128764 +264685,1323.4250000172822,-0.06931565141896542 +264686,1323.4300000172823,-0.06931563572464895 +264687,1323.4350000172824,-0.06931562002992703 +264688,1323.4400000172825,-0.06931560433479969 +264689,1323.4450000172826,-0.06931558863926696 +264690,1323.4500000172827,-0.06931557294332885 +264691,1323.4550000172828,-0.06931555724698542 +264692,1323.460000017283,-0.06931554155023668 +264693,1323.465000017283,-0.06931552585308268 +264694,1323.4700000172832,-0.06931551015552341 +264695,1323.4750000172833,-0.06931549445755894 +264696,1323.4800000172834,-0.06931547875918928 +264697,1323.4850000172835,-0.06931546306041446 +264698,1323.4900000172836,-0.0693154473612345 +264699,1323.4950000172837,-0.06931543166164945 +264700,1323.5000000172838,-0.06931541596165933 +264701,1323.505000017284,-0.06931540026126416 +264702,1323.510000017284,-0.06931538456046399 +264703,1323.5150000172841,-0.06931536885925883 +264704,1323.5200000172842,-0.0693153531576487 +264705,1323.5250000172844,-0.06931533745563367 +264706,1323.5300000172845,-0.06931532175321373 +264707,1323.5350000172846,-0.06931530605038892 +264708,1323.5400000172847,-0.06931529034715929 +264709,1323.5450000172848,-0.06931527464352484 +264710,1323.550000017285,-0.06931525893948562 +264711,1323.555000017285,-0.06931524323504164 +264712,1323.5600000172851,-0.06931522753019294 +264713,1323.5650000172852,-0.06931521182493955 +264714,1323.5700000172853,-0.06931519611928151 +264715,1323.5750000172854,-0.06931518041321882 +264716,1323.5800000172856,-0.06931516470675154 +264717,1323.5850000172857,-0.06931514899987969 +264718,1323.5900000172858,-0.06931513329260328 +264719,1323.5950000172859,-0.06931511758492237 +264720,1323.600000017286,-0.06931510187683695 +264721,1323.605000017286,-0.06931508616834708 +264722,1323.6100000172862,-0.06931507045945279 +264723,1323.6150000172863,-0.06931505475015409 +264724,1323.6200000172864,-0.06931503904045103 +264725,1323.6250000172865,-0.06931502333034362 +264726,1323.6300000172866,-0.0693150076198319 +264727,1323.6350000172868,-0.06931499190891591 +264728,1323.6400000172869,-0.06931497619759566 +264729,1323.645000017287,-0.06931496048587119 +264730,1323.650000017287,-0.06931494477374252 +264731,1323.6550000172872,-0.06931492906120969 +264732,1323.6600000172873,-0.06931491334827271 +264733,1323.6650000172874,-0.06931489763493162 +264734,1323.6700000172875,-0.06931488192118647 +264735,1323.6750000172876,-0.06931486620703725 +264736,1323.6800000172877,-0.06931485049248402 +264737,1323.6850000172878,-0.06931483477752681 +264738,1323.690000017288,-0.06931481906216563 +264739,1323.695000017288,-0.06931480334640051 +264740,1323.7000000172882,-0.0693147876302315 +264741,1323.7050000172883,-0.0693147719136586 +264742,1323.7100000172884,-0.06931475619668187 +264743,1323.7150000172885,-0.06931474047930132 +264744,1323.7200000172886,-0.06931472476151698 +264745,1323.7250000172887,-0.06931470904332888 +264746,1323.7300000172888,-0.06931469332473707 +264747,1323.735000017289,-0.06931467760574153 +264748,1323.740000017289,-0.06931466188634233 +264749,1323.7450000172892,-0.06931464616653948 +264750,1323.7500000172893,-0.06931463044633304 +264751,1323.7550000172894,-0.069314614725723 +264752,1323.7600000172895,-0.0693145990047094 +264753,1323.7650000172896,-0.06931458328329229 +264754,1323.7700000172897,-0.06931456756147168 +264755,1323.7750000172898,-0.0693145518392476 +264756,1323.78000001729,-0.06931453611662007 +264757,1323.78500001729,-0.06931452039358915 +264758,1323.7900000172901,-0.06931450467015485 +264759,1323.7950000172902,-0.06931448894631718 +264760,1323.8000000172904,-0.0693144732220762 +264761,1323.8050000172905,-0.06931445749743194 +264762,1323.8100000172906,-0.0693144417723844 +264763,1323.8150000172907,-0.06931442604693362 +264764,1323.8200000172908,-0.06931441032107964 +264765,1323.825000017291,-0.06931439459482247 +264766,1323.830000017291,-0.06931437886816216 +264767,1323.8350000172911,-0.06931436314109875 +264768,1323.8400000172912,-0.06931434741363225 +264769,1323.8450000172913,-0.06931433168576269 +264770,1323.8500000172914,-0.06931431595749009 +264771,1323.8550000172916,-0.06931430022881448 +264772,1323.8600000172917,-0.0693142844997359 +264773,1323.8650000172918,-0.06931426877025437 +264774,1323.8700000172919,-0.06931425304036994 +264775,1323.875000017292,-0.0693142373100826 +264776,1323.880000017292,-0.06931422157939242 +264777,1323.8850000172922,-0.0693142058482994 +264778,1323.8900000172923,-0.0693141901168036 +264779,1323.8950000172924,-0.06931417438490502 +264780,1323.9000000172925,-0.0693141586526037 +264781,1323.9050000172927,-0.06931414291989965 +264782,1323.9100000172928,-0.06931412718679293 +264783,1323.9150000172929,-0.06931411145328356 +264784,1323.920000017293,-0.06931409571937157 +264785,1323.925000017293,-0.06931407998505697 +264786,1323.9300000172932,-0.0693140642503398 +264787,1323.9350000172933,-0.06931404851522009 +264788,1323.9400000172934,-0.06931403277969789 +264789,1323.9450000172935,-0.0693140170437732 +264790,1323.9500000172936,-0.06931400130744605 +264791,1323.9550000172937,-0.06931398557071648 +264792,1323.9600000172939,-0.06931396983358452 +264793,1323.965000017294,-0.06931395409605019 +264794,1323.970000017294,-0.06931393835811353 +264795,1323.9750000172942,-0.06931392261977457 +264796,1323.9800000172943,-0.06931390688103331 +264797,1323.9850000172944,-0.06931389114188981 +264798,1323.9900000172945,-0.0693138754023441 +264799,1323.9950000172946,-0.06931385966239619 +264800,1324.0000000172947,-0.06931384392204612 +264801,1324.0050000172948,-0.06931382818129392 +264802,1324.010000017295,-0.06931381244013961 +264803,1324.015000017295,-0.06931379669858322 +264804,1324.0200000172952,-0.06931378095662478 +264805,1324.0250000172953,-0.06931376521426434 +264806,1324.0300000172954,-0.0693137494715019 +264807,1324.0350000172955,-0.0693137337283375 +264808,1324.0400000172956,-0.06931371798477116 +264809,1324.0450000172957,-0.06931370224080292 +264810,1324.0500000172958,-0.06931368649643282 +264811,1324.055000017296,-0.06931367075166088 +264812,1324.060000017296,-0.06931365500648712 +264813,1324.0650000172961,-0.06931363926091155 +264814,1324.0700000172963,-0.06931362351493425 +264815,1324.0750000172964,-0.06931360776855522 +264816,1324.0800000172965,-0.06931359202177448 +264817,1324.0850000172966,-0.06931357627459207 +264818,1324.0900000172967,-0.069313560527008 +264819,1324.0950000172968,-0.06931354477902234 +264820,1324.100000017297,-0.06931352903063508 +264821,1324.105000017297,-0.06931351328184629 +264822,1324.1100000172971,-0.06931349753265595 +264823,1324.1150000172972,-0.06931348178306412 +264824,1324.1200000172973,-0.06931346603307083 +264825,1324.1250000172975,-0.06931345028267609 +264826,1324.1300000172976,-0.06931343453187994 +264827,1324.1350000172977,-0.0693134187806824 +264828,1324.1400000172978,-0.06931340302908351 +264829,1324.145000017298,-0.06931338727708329 +264830,1324.150000017298,-0.06931337152468178 +264831,1324.155000017298,-0.069313355771879 +264832,1324.1600000172982,-0.069313340018675 +264833,1324.1650000172983,-0.06931332426506977 +264834,1324.1700000172984,-0.06931330851106338 +264835,1324.1750000172985,-0.06931329275665582 +264836,1324.1800000172987,-0.06931327700184713 +264837,1324.1850000172988,-0.06931326124663735 +264838,1324.1900000172989,-0.06931324549102652 +264839,1324.195000017299,-0.06931322973501465 +264840,1324.200000017299,-0.06931321397860177 +264841,1324.2050000172992,-0.0693131982217879 +264842,1324.2100000172993,-0.06931318246457309 +264843,1324.2150000172994,-0.06931316670695736 +264844,1324.2200000172995,-0.06931315094894074 +264845,1324.2250000172996,-0.06931313519052325 +264846,1324.2300000172997,-0.06931311943170491 +264847,1324.2350000172999,-0.06931310367248578 +264848,1324.2400000173,-0.06931308791286588 +264849,1324.2450000173,-0.06931307215284521 +264850,1324.2500000173002,-0.06931305639242383 +264851,1324.2550000173003,-0.06931304063160176 +264852,1324.2600000173004,-0.06931302487037903 +264853,1324.2650000173005,-0.06931300910875568 +264854,1324.2700000173006,-0.0693129933467317 +264855,1324.2750000173007,-0.06931297758430716 +264856,1324.2800000173008,-0.06931296182148206 +264857,1324.285000017301,-0.06931294605825644 +264858,1324.290000017301,-0.06931293029463036 +264859,1324.2950000173012,-0.06931291453060377 +264860,1324.3000000173013,-0.06931289876617679 +264861,1324.3050000173014,-0.0693128830013494 +264862,1324.3100000173015,-0.06931286723612162 +264863,1324.3150000173016,-0.0693128514704935 +264864,1324.3200000173017,-0.06931283570446506 +264865,1324.3250000173018,-0.06931281993803633 +264866,1324.330000017302,-0.06931280417120735 +264867,1324.335000017302,-0.06931278840397813 +264868,1324.3400000173021,-0.06931277263634872 +264869,1324.3450000173023,-0.06931275686831911 +264870,1324.3500000173024,-0.06931274109988939 +264871,1324.3550000173025,-0.06931272533105953 +264872,1324.3600000173026,-0.06931270956182958 +264873,1324.3650000173027,-0.06931269379219958 +264874,1324.3700000173028,-0.06931267802216955 +264875,1324.375000017303,-0.06931266225173952 +264876,1324.380000017303,-0.06931264648090951 +264877,1324.3850000173031,-0.06931263070967955 +264878,1324.3900000173032,-0.06931261493804969 +264879,1324.3950000173033,-0.06931259916601994 +264880,1324.4000000173035,-0.06931258339359034 +264881,1324.4050000173036,-0.06931256762076089 +264882,1324.4100000173037,-0.06931255184753166 +264883,1324.4150000173038,-0.06931253607390264 +264884,1324.420000017304,-0.06931252029987388 +264885,1324.425000017304,-0.0693125045254454 +264886,1324.430000017304,-0.06931248875061725 +264887,1324.4350000173042,-0.06931247297538944 +264888,1324.4400000173043,-0.06931245719976199 +264889,1324.4450000173044,-0.06931244142373495 +264890,1324.4500000173045,-0.06931242564730834 +264891,1324.4550000173047,-0.06931240987048219 +264892,1324.4600000173048,-0.06931239409325651 +264893,1324.4650000173049,-0.06931237831563136 +264894,1324.470000017305,-0.06931236253760675 +264895,1324.475000017305,-0.0693123467591827 +264896,1324.4800000173052,-0.06931233098035927 +264897,1324.4850000173053,-0.06931231520113645 +264898,1324.4900000173054,-0.0693122994215143 +264899,1324.4950000173055,-0.06931228364149283 +264900,1324.5000000173056,-0.06931226786107207 +264901,1324.5050000173057,-0.06931225208025207 +264902,1324.5100000173059,-0.06931223629903284 +264903,1324.515000017306,-0.06931222051741441 +264904,1324.520000017306,-0.0693122047353968 +264905,1324.5250000173062,-0.06931218895298005 +264906,1324.5300000173063,-0.06931217317016419 +264907,1324.5350000173064,-0.06931215738694924 +264908,1324.5400000173065,-0.06931214160333524 +264909,1324.5450000173066,-0.06931212581932221 +264910,1324.5500000173067,-0.06931211003491018 +264911,1324.5550000173068,-0.06931209425009918 +264912,1324.560000017307,-0.06931207846488924 +264913,1324.565000017307,-0.06931206267928039 +264914,1324.5700000173072,-0.06931204689327265 +264915,1324.5750000173073,-0.06931203110686605 +264916,1324.5800000173074,-0.06931201532006064 +264917,1324.5850000173075,-0.06931199953285642 +264918,1324.5900000173076,-0.06931198374525344 +264919,1324.5950000173077,-0.0693119679572517 +264920,1324.6000000173078,-0.06931195216885126 +264921,1324.605000017308,-0.06931193638005215 +264922,1324.610000017308,-0.06931192059085438 +264923,1324.6150000173081,-0.06931190480125797 +264924,1324.6200000173083,-0.06931188901126296 +264925,1324.6250000173084,-0.06931187322086939 +264926,1324.6300000173085,-0.06931185743007727 +264927,1324.6350000173086,-0.06931184163888664 +264928,1324.6400000173087,-0.06931182584729752 +264929,1324.6450000173088,-0.06931181005530995 +264930,1324.650000017309,-0.06931179426292396 +264931,1324.655000017309,-0.06931177847013956 +264932,1324.6600000173091,-0.0693117626769568 +264933,1324.6650000173092,-0.06931174688337567 +264934,1324.6700000173093,-0.06931173108939626 +264935,1324.6750000173095,-0.06931171529501856 +264936,1324.6800000173096,-0.0693116995002426 +264937,1324.6850000173097,-0.0693116837050684 +264938,1324.6900000173098,-0.06931166790949601 +264939,1324.69500001731,-0.06931165211352545 +264940,1324.70000001731,-0.06931163631715676 +264941,1324.70500001731,-0.06931162052038994 +264942,1324.7100000173102,-0.06931160472322503 +264943,1324.7150000173103,-0.06931158892566208 +264944,1324.7200000173104,-0.0693115731277011 +264945,1324.7250000173105,-0.0693115573293421 +264946,1324.7300000173107,-0.06931154153058516 +264947,1324.7350000173108,-0.06931152573143026 +264948,1324.7400000173109,-0.06931150993187746 +264949,1324.745000017311,-0.06931149413192675 +264950,1324.750000017311,-0.0693114783315782 +264951,1324.7550000173112,-0.06931146253083181 +264952,1324.7600000173113,-0.06931144672968763 +264953,1324.7650000173114,-0.06931143092814568 +264954,1324.7700000173115,-0.06931141512620599 +264955,1324.7750000173116,-0.06931139932386857 +264956,1324.7800000173117,-0.06931138352113347 +264957,1324.7850000173119,-0.06931136771800073 +264958,1324.790000017312,-0.06931135191447035 +264959,1324.795000017312,-0.06931133611054237 +264960,1324.8000000173122,-0.06931132030621681 +264961,1324.8050000173123,-0.06931130450149373 +264962,1324.8100000173124,-0.06931128869637311 +264963,1324.8150000173125,-0.06931127289085501 +264964,1324.8200000173126,-0.06931125708493946 +264965,1324.8250000173127,-0.06931124127862646 +264966,1324.8300000173128,-0.06931122547191608 +264967,1324.835000017313,-0.06931120966480832 +264968,1324.840000017313,-0.06931119385730321 +264969,1324.8450000173132,-0.06931117804940078 +264970,1324.8500000173133,-0.06931116224110108 +264971,1324.8550000173134,-0.0693111464324041 +264972,1324.8600000173135,-0.0693111306233099 +264973,1324.8650000173136,-0.0693111148138185 +264974,1324.8700000173137,-0.06931109900392993 +264975,1324.8750000173138,-0.06931108319364421 +264976,1324.880000017314,-0.06931106738296137 +264977,1324.885000017314,-0.06931105157188146 +264978,1324.8900000173142,-0.06931103576040447 +264979,1324.8950000173143,-0.06931101994853045 +264980,1324.9000000173144,-0.06931100413625943 +264981,1324.9050000173145,-0.06931098832359144 +264982,1324.9100000173146,-0.06931097251052648 +264983,1324.9150000173147,-0.06931095669706462 +264984,1324.9200000173148,-0.06931094088320587 +264985,1324.925000017315,-0.06931092506895027 +264986,1324.930000017315,-0.06931090925429782 +264987,1324.9350000173151,-0.06931089343924858 +264988,1324.9400000173152,-0.06931087762380256 +264989,1324.9450000173154,-0.06931086180795978 +264990,1324.9500000173155,-0.06931084599172029 +264991,1324.9550000173156,-0.0693108301750841 +264992,1324.9600000173157,-0.06931081435805127 +264993,1324.9650000173158,-0.06931079854062179 +264994,1324.970000017316,-0.06931078272279571 +264995,1324.975000017316,-0.06931076690457305 +264996,1324.9800000173161,-0.06931075108595385 +264997,1324.9850000173162,-0.06931073526693811 +264998,1324.9900000173163,-0.06931071944752588 +264999,1324.9950000173164,-0.0693107036277172 +265000,1325.0000000173166,-0.06931068780751208 +265001,1325.0050000173167,-0.06931067198691054 +265002,1325.0100000173168,-0.06931065616591264 +265003,1325.0150000173169,-0.06931064034451839 +265004,1325.020000017317,-0.0693106245227278 +265005,1325.025000017317,-0.06931060870054093 +265006,1325.0300000173172,-0.0693105928779578 +265007,1325.0350000173173,-0.06931057705497841 +265008,1325.0400000173174,-0.06931056123160283 +265009,1325.0450000173175,-0.06931054540783106 +265010,1325.0500000173176,-0.06931052958366314 +265011,1325.0550000173178,-0.0693105137590991 +265012,1325.0600000173179,-0.06931049793413897 +265013,1325.065000017318,-0.06931048210878277 +265014,1325.070000017318,-0.06931046628303052 +265015,1325.0750000173182,-0.06931045045688226 +265016,1325.0800000173183,-0.06931043463033804 +265017,1325.0850000173184,-0.06931041880339785 +265018,1325.0900000173185,-0.06931040297606174 +265019,1325.0950000173186,-0.06931038714832972 +265020,1325.1000000173187,-0.06931037132020183 +265021,1325.1050000173188,-0.06931035549167812 +265022,1325.110000017319,-0.0693103396627586 +265023,1325.115000017319,-0.06931032383344328 +265024,1325.1200000173192,-0.06931030800373221 +265025,1325.1250000173193,-0.0693102921736254 +265026,1325.1300000173194,-0.06931027634312291 +265027,1325.1350000173195,-0.06931026051222475 +265028,1325.1400000173196,-0.06931024468093094 +265029,1325.1450000173197,-0.06931022884924151 +265030,1325.1500000173198,-0.0693102130171565 +265031,1325.15500001732,-0.06931019718467593 +265032,1325.16000001732,-0.06931018135179984 +265033,1325.1650000173202,-0.06931016551852826 +265034,1325.1700000173203,-0.06931014968486118 +265035,1325.1750000173204,-0.06931013385079868 +265036,1325.1800000173205,-0.06931011801634075 +265037,1325.1850000173206,-0.06931010218148743 +265038,1325.1900000173207,-0.06931008634623877 +265039,1325.1950000173208,-0.06931007051059476 +265040,1325.200000017321,-0.06931005467455545 +265041,1325.205000017321,-0.06931003883812085 +265042,1325.2100000173211,-0.06931002300129104 +265043,1325.2150000173212,-0.06931000716406598 +265044,1325.2200000173214,-0.06930999132644575 +265045,1325.2250000173215,-0.06930997548843035 +265046,1325.2300000173216,-0.0693099596500198 +265047,1325.2350000173217,-0.06930994381121416 +265048,1325.2400000173218,-0.06930992797201345 +265049,1325.245000017322,-0.06930991213241769 +265050,1325.250000017322,-0.06930989629242691 +265051,1325.2550000173221,-0.06930988045204113 +265052,1325.2600000173222,-0.06930986461126039 +265053,1325.2650000173223,-0.0693098487700847 +265054,1325.2700000173224,-0.06930983292851411 +265055,1325.2750000173226,-0.06930981708654865 +265056,1325.2800000173227,-0.06930980124418834 +265057,1325.2850000173228,-0.0693097854014332 +265058,1325.2900000173229,-0.06930976955828326 +265059,1325.295000017323,-0.06930975371473856 +265060,1325.300000017323,-0.06930973787079912 +265061,1325.3050000173232,-0.06930972202646499 +265062,1325.3100000173233,-0.06930970618173617 +265063,1325.3150000173234,-0.06930969033661268 +265064,1325.3200000173235,-0.06930967449109457 +265065,1325.3250000173236,-0.06930965864518188 +265066,1325.3300000173238,-0.0693096427988746 +265067,1325.3350000173239,-0.06930962695217278 +265068,1325.340000017324,-0.06930961110507645 +265069,1325.345000017324,-0.06930959525758565 +265070,1325.3500000173242,-0.06930957940970038 +265071,1325.3550000173243,-0.06930956356142069 +265072,1325.3600000173244,-0.0693095477127466 +265073,1325.3650000173245,-0.06930953186367814 +265074,1325.3700000173246,-0.06930951601421532 +265075,1325.3750000173247,-0.0693095001643582 +265076,1325.3800000173248,-0.06930948431410679 +265077,1325.385000017325,-0.06930946846346112 +265078,1325.390000017325,-0.06930945261242122 +265079,1325.3950000173252,-0.06930943676098711 +265080,1325.4000000173253,-0.06930942090915883 +265081,1325.4050000173254,-0.06930940505693642 +265082,1325.4100000173255,-0.06930938920431987 +265083,1325.4150000173256,-0.06930937335130925 +265084,1325.4200000173257,-0.06930935749790455 +265085,1325.4250000173258,-0.06930934164410583 +265086,1325.430000017326,-0.0693093257899131 +265087,1325.435000017326,-0.0693093099353264 +265088,1325.4400000173262,-0.06930929408034574 +265089,1325.4450000173263,-0.06930927822497117 +265090,1325.4500000173264,-0.0693092623692027 +265091,1325.4550000173265,-0.06930924651304037 +265092,1325.4600000173266,-0.06930923065648419 +265093,1325.4650000173267,-0.06930921479953422 +265094,1325.4700000173268,-0.06930919894219047 +265095,1325.475000017327,-0.06930918308445295 +265096,1325.480000017327,-0.06930916722632172 +265097,1325.4850000173271,-0.06930915136779679 +265098,1325.4900000173272,-0.06930913550887818 +265099,1325.4950000173274,-0.06930911964956596 +265100,1325.5000000173275,-0.06930910378986012 +265101,1325.5050000173276,-0.06930908792976069 +265102,1325.5100000173277,-0.06930907206926772 +265103,1325.5150000173278,-0.06930905620838121 +265104,1325.520000017328,-0.0693090403471012 +265105,1325.525000017328,-0.06930902448542772 +265106,1325.5300000173281,-0.0693090086233608 +265107,1325.5350000173282,-0.06930899276090045 +265108,1325.5400000173283,-0.06930897689804673 +265109,1325.5450000173284,-0.06930896103479964 +265110,1325.5500000173286,-0.06930894517115922 +265111,1325.5550000173287,-0.06930892930712551 +265112,1325.5600000173288,-0.06930891344269853 +265113,1325.5650000173289,-0.0693088975778783 +265114,1325.570000017329,-0.06930888171266485 +265115,1325.575000017329,-0.0693088658470582 +265116,1325.5800000173292,-0.0693088499810584 +265117,1325.5850000173293,-0.06930883411466546 +265118,1325.5900000173294,-0.06930881824787942 +265119,1325.5950000173295,-0.06930880238070031 +265120,1325.6000000173296,-0.06930878651312813 +265121,1325.6050000173298,-0.06930877064516294 +265122,1325.6100000173299,-0.06930875477680476 +265123,1325.61500001733,-0.06930873890805361 +265124,1325.62000001733,-0.06930872303890953 +265125,1325.6250000173302,-0.06930870716937254 +265126,1325.6300000173303,-0.06930869129944267 +265127,1325.6350000173304,-0.06930867542911995 +265128,1325.6400000173305,-0.0693086595584044 +265129,1325.6450000173306,-0.06930864368729606 +265130,1325.6500000173307,-0.06930862781579494 +265131,1325.6550000173308,-0.06930861194390109 +265132,1325.660000017331,-0.06930859607161452 +265133,1325.665000017331,-0.06930858019893527 +265134,1325.6700000173312,-0.06930856432586335 +265135,1325.6750000173313,-0.06930854845239882 +265136,1325.6800000173314,-0.06930853257854169 +265137,1325.6850000173315,-0.06930851670429197 +265138,1325.6900000173316,-0.06930850082964972 +265139,1325.6950000173317,-0.06930848495461496 +265140,1325.7000000173318,-0.06930846907918771 +265141,1325.705000017332,-0.069308453203368 +265142,1325.710000017332,-0.06930843732715584 +265143,1325.7150000173322,-0.0693084214505513 +265144,1325.7200000173323,-0.06930840557355437 +265145,1325.7250000173324,-0.0693083896961651 +265146,1325.7300000173325,-0.0693083738183835 +265147,1325.7350000173326,-0.06930835794020962 +265148,1325.7400000173327,-0.06930834206164346 +265149,1325.7450000173328,-0.06930832618268506 +265150,1325.750000017333,-0.06930831030333447 +265151,1325.755000017333,-0.0693082944235917 +265152,1325.7600000173331,-0.06930827854345677 +265153,1325.7650000173333,-0.06930826266292972 +265154,1325.7700000173334,-0.06930824678201057 +265155,1325.7750000173335,-0.06930823090069936 +265156,1325.7800000173336,-0.06930821501899612 +265157,1325.7850000173337,-0.06930819913690084 +265158,1325.7900000173338,-0.0693081832544136 +265159,1325.795000017334,-0.06930816737153438 +265160,1325.800000017334,-0.06930815148826325 +265161,1325.8050000173341,-0.06930813560460022 +265162,1325.8100000173342,-0.06930811972054532 +265163,1325.8150000173343,-0.06930810383609859 +265164,1325.8200000173345,-0.06930808795126002 +265165,1325.8250000173346,-0.06930807206602967 +265166,1325.8300000173347,-0.06930805618040756 +265167,1325.8350000173348,-0.06930804029439372 +265168,1325.840000017335,-0.06930802440798817 +265169,1325.845000017335,-0.06930800852119096 +265170,1325.850000017335,-0.06930799263400209 +265171,1325.8550000173352,-0.0693079767464216 +265172,1325.8600000173353,-0.06930796085844952 +265173,1325.8650000173354,-0.06930794497008587 +265174,1325.8700000173355,-0.0693079290813307 +265175,1325.8750000173357,-0.06930791319218402 +265176,1325.8800000173358,-0.06930789730264586 +265177,1325.8850000173359,-0.06930788141271624 +265178,1325.890000017336,-0.06930786552239519 +265179,1325.895000017336,-0.06930784963168275 +265180,1325.9000000173362,-0.06930783374057894 +265181,1325.9050000173363,-0.0693078178490838 +265182,1325.9100000173364,-0.06930780195719732 +265183,1325.9150000173365,-0.06930778606491958 +265184,1325.9200000173366,-0.06930777017225058 +265185,1325.9250000173367,-0.06930775427919036 +265186,1325.9300000173369,-0.06930773838573893 +265187,1325.935000017337,-0.06930772249189633 +265188,1325.940000017337,-0.06930770659766258 +265189,1325.9450000173372,-0.06930769070303772 +265190,1325.9500000173373,-0.06930767480802177 +265191,1325.9550000173374,-0.06930765891261476 +265192,1325.9600000173375,-0.06930764301681672 +265193,1325.9650000173376,-0.06930762712062766 +265194,1325.9700000173377,-0.06930761122404763 +265195,1325.9750000173378,-0.06930759532707666 +265196,1325.980000017338,-0.06930757942971477 +265197,1325.985000017338,-0.06930756353196198 +265198,1325.9900000173382,-0.06930754763381831 +265199,1325.9950000173383,-0.06930753173528381 +265200,1326.0000000173384,-0.06930751583635852 +265201,1326.0050000173385,-0.06930749993704244 +265202,1326.0100000173386,-0.0693074840373356 +265203,1326.0150000173387,-0.06930746813723804 +265204,1326.0200000173388,-0.06930745223674976 +265205,1326.025000017339,-0.06930743633587083 +265206,1326.030000017339,-0.06930742043460125 +265207,1326.0350000173391,-0.06930740453294107 +265208,1326.0400000173393,-0.06930738863089028 +265209,1326.0450000173394,-0.06930737272844896 +265210,1326.0500000173395,-0.06930735682561709 +265211,1326.0550000173396,-0.06930734092239473 +265212,1326.0600000173397,-0.0693073250187819 +265213,1326.0650000173398,-0.0693073091147786 +265214,1326.07000001734,-0.0693072932103849 +265215,1326.07500001734,-0.06930727730560081 +265216,1326.0800000173401,-0.06930726140042634 +265217,1326.0850000173402,-0.06930724549486154 +265218,1326.0900000173403,-0.06930722958890645 +265219,1326.0950000173405,-0.06930721368256107 +265220,1326.1000000173406,-0.06930719777582545 +265221,1326.1050000173407,-0.0693071818686996 +265222,1326.1100000173408,-0.06930716596118354 +265223,1326.115000017341,-0.06930715005327732 +265224,1326.120000017341,-0.06930713414498096 +265225,1326.125000017341,-0.0693071182362945 +265226,1326.1300000173412,-0.06930710232721794 +265227,1326.1350000173413,-0.06930708641775134 +265228,1326.1400000173414,-0.0693070705078947 +265229,1326.1450000173415,-0.06930705459764805 +265230,1326.1500000173417,-0.06930703868701144 +265231,1326.1550000173418,-0.06930702277598488 +265232,1326.1600000173419,-0.0693070068645684 +265233,1326.165000017342,-0.06930699095276203 +265234,1326.170000017342,-0.06930697504056581 +265235,1326.1750000173422,-0.06930695912797974 +265236,1326.1800000173423,-0.06930694321500387 +265237,1326.1850000173424,-0.06930692730163823 +265238,1326.1900000173425,-0.06930691138788284 +265239,1326.1950000173426,-0.06930689547373772 +265240,1326.2000000173427,-0.06930687955920291 +265241,1326.2050000173429,-0.06930686364427843 +265242,1326.210000017343,-0.06930684772896431 +265243,1326.215000017343,-0.06930683181326058 +265244,1326.2200000173432,-0.06930681589716728 +265245,1326.2250000173433,-0.06930679998068442 +265246,1326.2300000173434,-0.06930678406381202 +265247,1326.2350000173435,-0.06930676814655012 +265248,1326.2400000173436,-0.06930675222889876 +265249,1326.2450000173437,-0.06930673631085796 +265250,1326.2500000173438,-0.06930672039242773 +265251,1326.255000017344,-0.06930670447360812 +265252,1326.260000017344,-0.06930668855439914 +265253,1326.2650000173442,-0.06930667263480085 +265254,1326.2700000173443,-0.06930665671481324 +265255,1326.2750000173444,-0.06930664079443637 +265256,1326.2800000173445,-0.06930662487367023 +265257,1326.2850000173446,-0.06930660895251486 +265258,1326.2900000173447,-0.06930659303097032 +265259,1326.2950000173448,-0.0693065771090366 +265260,1326.300000017345,-0.06930656118671374 +265261,1326.305000017345,-0.06930654526400178 +265262,1326.3100000173451,-0.06930652934090073 +265263,1326.3150000173453,-0.06930651341741063 +265264,1326.3200000173454,-0.0693064974935315 +265265,1326.3250000173455,-0.06930648156926338 +265266,1326.3300000173456,-0.06930646564460627 +265267,1326.3350000173457,-0.06930644971956022 +265268,1326.3400000173458,-0.06930643379412527 +265269,1326.345000017346,-0.06930641786830143 +265270,1326.350000017346,-0.06930640194208872 +265271,1326.3550000173461,-0.06930638601548718 +265272,1326.3600000173462,-0.06930637008849684 +265273,1326.3650000173463,-0.06930635416111772 +265274,1326.3700000173465,-0.06930633823334985 +265275,1326.3750000173466,-0.06930632230519326 +265276,1326.3800000173467,-0.06930630637664799 +265277,1326.3850000173468,-0.06930629044771404 +265278,1326.390000017347,-0.06930627451839144 +265279,1326.395000017347,-0.06930625858868025 +265280,1326.400000017347,-0.06930624265858047 +265281,1326.4050000173472,-0.06930622672809214 +265282,1326.4100000173473,-0.06930621079721529 +265283,1326.4150000173474,-0.06930619486594992 +265284,1326.4200000173475,-0.06930617893429608 +265285,1326.4250000173477,-0.06930616300225381 +265286,1326.4300000173478,-0.06930614706982313 +265287,1326.4350000173479,-0.06930613113700404 +265288,1326.440000017348,-0.0693061152037966 +265289,1326.445000017348,-0.06930609927020083 +265290,1326.4500000173482,-0.06930608333621675 +265291,1326.4550000173483,-0.0693060674018444 +265292,1326.4600000173484,-0.06930605146708381 +265293,1326.4650000173485,-0.06930603553193498 +265294,1326.4700000173486,-0.06930601959639796 +265295,1326.4750000173487,-0.06930600366047276 +265296,1326.4800000173489,-0.06930598772415945 +265297,1326.485000017349,-0.06930597178745802 +265298,1326.490000017349,-0.0693059558503685 +265299,1326.4950000173492,-0.06930593991289094 +265300,1326.5000000173493,-0.06930592397502534 +265301,1326.5050000173494,-0.06930590803677174 +265302,1326.5100000173495,-0.06930589209813018 +265303,1326.5150000173496,-0.06930587615910067 +265304,1326.5200000173497,-0.06930586021968323 +265305,1326.5250000173498,-0.0693058442798779 +265306,1326.53000001735,-0.06930582833968472 +265307,1326.53500001735,-0.06930581239910372 +265308,1326.5400000173502,-0.0693057964581349 +265309,1326.5450000173503,-0.0693057805167783 +265310,1326.5500000173504,-0.06930576457503394 +265311,1326.5550000173505,-0.06930574863290188 +265312,1326.5600000173506,-0.06930573269038212 +265313,1326.5650000173507,-0.06930571674747468 +265314,1326.5700000173508,-0.06930570080417961 +265315,1326.575000017351,-0.06930568486049693 +265316,1326.580000017351,-0.06930566891642666 +265317,1326.5850000173511,-0.06930565297196882 +265318,1326.5900000173513,-0.06930563702712349 +265319,1326.5950000173514,-0.06930562108189063 +265320,1326.6000000173515,-0.06930560513627032 +265321,1326.6050000173516,-0.06930558919026254 +265322,1326.6100000173517,-0.06930557324386734 +265323,1326.6150000173518,-0.06930555729708476 +265324,1326.620000017352,-0.06930554134991482 +265325,1326.625000017352,-0.06930552540235754 +265326,1326.6300000173521,-0.06930550945441297 +265327,1326.6350000173522,-0.0693054935060811 +265328,1326.6400000173523,-0.069305477557362 +265329,1326.6450000173525,-0.06930546160825565 +265330,1326.6500000173526,-0.06930544565876212 +265331,1326.6550000173527,-0.06930542970888143 +265332,1326.6600000173528,-0.06930541375861358 +265333,1326.665000017353,-0.06930539780795864 +265334,1326.670000017353,-0.06930538185691658 +265335,1326.675000017353,-0.06930536590548748 +265336,1326.6800000173532,-0.06930534995367135 +265337,1326.6850000173533,-0.06930533400146822 +265338,1326.6900000173534,-0.06930531804887813 +265339,1326.6950000173535,-0.06930530209590106 +265340,1326.7000000173537,-0.0693052861425371 +265341,1326.7050000173538,-0.06930527018878624 +265342,1326.7100000173539,-0.0693052542346485 +265343,1326.715000017354,-0.06930523828012393 +265344,1326.720000017354,-0.06930522232521255 +265345,1326.7250000173542,-0.0693052063699144 +265346,1326.7300000173543,-0.06930519041422949 +265347,1326.7350000173544,-0.06930517445815786 +265348,1326.7400000173545,-0.06930515850169951 +265349,1326.7450000173546,-0.06930514254485451 +265350,1326.7500000173548,-0.06930512658762285 +265351,1326.7550000173549,-0.0693051106300046 +265352,1326.760000017355,-0.06930509467199975 +265353,1326.765000017355,-0.06930507871360833 +265354,1326.7700000173552,-0.0693050627548304 +265355,1326.7750000173553,-0.06930504679566594 +265356,1326.7800000173554,-0.06930503083611503 +265357,1326.7850000173555,-0.06930501487617766 +265358,1326.7900000173556,-0.06930499891585386 +265359,1326.7950000173557,-0.06930498295514367 +265360,1326.8000000173558,-0.0693049669940471 +265361,1326.805000017356,-0.0693049510325642 +265362,1326.810000017356,-0.069304935070695 +265363,1326.8150000173562,-0.06930491910843951 +265364,1326.8200000173563,-0.06930490314579775 +265365,1326.8250000173564,-0.06930488718276978 +265366,1326.8300000173565,-0.06930487121935561 +265367,1326.8350000173566,-0.06930485525555526 +265368,1326.8400000173567,-0.06930483929136876 +265369,1326.8450000173568,-0.06930482332679615 +265370,1326.850000017357,-0.06930480736183743 +265371,1326.855000017357,-0.06930479139649266 +265372,1326.8600000173572,-0.06930477543076187 +265373,1326.8650000173573,-0.06930475946464507 +265374,1326.8700000173574,-0.06930474349814228 +265375,1326.8750000173575,-0.06930472753125354 +265376,1326.8800000173576,-0.06930471156397887 +265377,1326.8850000173577,-0.06930469559631831 +265378,1326.8900000173578,-0.06930467962827187 +265379,1326.895000017358,-0.06930466365983959 +265380,1326.900000017358,-0.0693046476910215 +265381,1326.9050000173581,-0.06930463172181762 +265382,1326.9100000173582,-0.06930461575222799 +265383,1326.9150000173584,-0.06930459978225262 +265384,1326.9200000173585,-0.06930458381189154 +265385,1326.9250000173586,-0.0693045678411448 +265386,1326.9300000173587,-0.0693045518700124 +265387,1326.9350000173588,-0.06930453589849439 +265388,1326.940000017359,-0.06930451992659079 +265389,1326.945000017359,-0.06930450395430161 +265390,1326.9500000173591,-0.06930448798162689 +265391,1326.9550000173592,-0.06930447200856667 +265392,1326.9600000173593,-0.06930445603512095 +265393,1326.9650000173594,-0.06930444006128979 +265394,1326.9700000173596,-0.06930442408707319 +265395,1326.9750000173597,-0.0693044081124712 +265396,1326.9800000173598,-0.06930439213748384 +265397,1326.9850000173599,-0.06930437616211113 +265398,1326.99000001736,-0.0693043601863531 +265399,1326.99500001736,-0.06930434421020978 +265400,1327.0000000173602,-0.0693043282336812 +265401,1327.0050000173603,-0.06930431225676738 +265402,1327.0100000173604,-0.06930429627946835 +265403,1327.0150000173605,-0.06930428030178415 +265404,1327.0200000173606,-0.0693042643237148 +265405,1327.0250000173608,-0.0693042483452603 +265406,1327.0300000173609,-0.06930423236642073 +265407,1327.035000017361,-0.0693042163871961 +265408,1327.040000017361,-0.0693042004075864 +265409,1327.0450000173612,-0.0693041844275917 +265410,1327.0500000173613,-0.06930416844721202 +265411,1327.0550000173614,-0.06930415246644736 +265412,1327.0600000173615,-0.06930413648529778 +265413,1327.0650000173616,-0.06930412050376329 +265414,1327.0700000173617,-0.06930410452184392 +265415,1327.0750000173618,-0.06930408853953972 +265416,1327.080000017362,-0.06930407255685068 +265417,1327.085000017362,-0.06930405657377686 +265418,1327.0900000173622,-0.06930404059031826 +265419,1327.0950000173623,-0.06930402460647493 +265420,1327.1000000173624,-0.06930400862224688 +265421,1327.1050000173625,-0.06930399263763415 +265422,1327.1100000173626,-0.06930397665263677 +265423,1327.1150000173627,-0.06930396066725476 +265424,1327.1200000173628,-0.06930394468148815 +265425,1327.125000017363,-0.06930392869533697 +265426,1327.130000017363,-0.06930391270880122 +265427,1327.1350000173632,-0.06930389672188096 +265428,1327.1400000173633,-0.06930388073457622 +265429,1327.1450000173634,-0.069303864746887 +265430,1327.1500000173635,-0.06930384875881336 +265431,1327.1550000173636,-0.0693038327703553 +265432,1327.1600000173637,-0.06930381678151287 +265433,1327.1650000173638,-0.06930380079228608 +265434,1327.170000017364,-0.06930378480267498 +265435,1327.175000017364,-0.06930376881267955 +265436,1327.1800000173641,-0.06930375282229988 +265437,1327.1850000173642,-0.06930373683153594 +265438,1327.1900000173644,-0.0693037208403878 +265439,1327.1950000173645,-0.06930370484885547 +265440,1327.2000000173646,-0.06930368885693897 +265441,1327.2050000173647,-0.06930367286463834 +265442,1327.2100000173648,-0.06930365687195361 +265443,1327.215000017365,-0.0693036408788848 +265444,1327.220000017365,-0.06930362488543193 +265445,1327.2250000173651,-0.06930360889159505 +265446,1327.2300000173652,-0.06930359289737417 +265447,1327.2350000173653,-0.06930357690276932 +265448,1327.2400000173654,-0.06930356090778053 +265449,1327.2450000173656,-0.06930354491240782 +265450,1327.2500000173657,-0.06930352891665124 +265451,1327.2550000173658,-0.0693035129205108 +265452,1327.2600000173659,-0.06930349692398652 +265453,1327.265000017366,-0.06930348092707844 +265454,1327.270000017366,-0.06930346492978659 +265455,1327.2750000173662,-0.06930344893211099 +265456,1327.2800000173663,-0.06930343293405165 +265457,1327.2850000173664,-0.06930341693560864 +265458,1327.2900000173665,-0.06930340093678196 +265459,1327.2950000173666,-0.06930338493757164 +265460,1327.3000000173668,-0.0693033689379777 +265461,1327.3050000173669,-0.06930335293800018 +265462,1327.310000017367,-0.0693033369376391 +265463,1327.315000017367,-0.0693033209368945 +265464,1327.3200000173672,-0.06930330493576639 +265465,1327.3250000173673,-0.06930328893425482 +265466,1327.3300000173674,-0.06930327293235979 +265467,1327.3350000173675,-0.06930325693008135 +265468,1327.3400000173676,-0.0693032409274195 +265469,1327.3450000173677,-0.06930322492437431 +265470,1327.3500000173678,-0.06930320892094578 +265471,1327.355000017368,-0.06930319291713394 +265472,1327.360000017368,-0.06930317691293883 +265473,1327.3650000173682,-0.06930316090836044 +265474,1327.3700000173683,-0.06930314490339884 +265475,1327.3750000173684,-0.06930312889805403 +265476,1327.3800000173685,-0.06930311289232606 +265477,1327.3850000173686,-0.06930309688621493 +265478,1327.3900000173687,-0.0693030808797207 +265479,1327.3950000173688,-0.06930306487284338 +265480,1327.400000017369,-0.069303048865583 +265481,1327.405000017369,-0.06930303285793957 +265482,1327.4100000173692,-0.06930301684991315 +265483,1327.4150000173693,-0.06930300084150375 +265484,1327.4200000173694,-0.06930298483271138 +265485,1327.4250000173695,-0.0693029688235361 +265486,1327.4300000173696,-0.06930295281397793 +265487,1327.4350000173697,-0.06930293680403687 +265488,1327.4400000173698,-0.06930292079371299 +265489,1327.44500001737,-0.06930290478300628 +265490,1327.45000001737,-0.0693028887719168 +265491,1327.4550000173701,-0.06930287276044454 +265492,1327.4600000173702,-0.06930285674858956 +265493,1327.4650000173704,-0.06930284073635189 +265494,1327.4700000173705,-0.06930282472373152 +265495,1327.4750000173706,-0.0693028087107285 +265496,1327.4800000173707,-0.06930279269734287 +265497,1327.4850000173708,-0.06930277668357464 +265498,1327.490000017371,-0.06930276066942384 +265499,1327.495000017371,-0.0693027446548905 +265500,1327.5000000173711,-0.06930272863997466 +265501,1327.5050000173712,-0.06930271262467633 +265502,1327.5100000173713,-0.06930269660899553 +265503,1327.5150000173714,-0.0693026805929323 +265504,1327.5200000173716,-0.06930266457648668 +265505,1327.5250000173717,-0.06930264855965867 +265506,1327.5300000173718,-0.06930263254244834 +265507,1327.5350000173719,-0.06930261652485567 +265508,1327.540000017372,-0.06930260050688071 +265509,1327.545000017372,-0.06930258448852349 +265510,1327.5500000173722,-0.06930256846978401 +265511,1327.5550000173723,-0.06930255245066233 +265512,1327.5600000173724,-0.06930253643115847 +265513,1327.5650000173725,-0.06930252041127245 +265514,1327.5700000173726,-0.06930250439100431 +265515,1327.5750000173728,-0.06930248837035406 +265516,1327.5800000173729,-0.06930247234932173 +265517,1327.585000017373,-0.06930245632790737 +265518,1327.590000017373,-0.06930244030611098 +265519,1327.5950000173732,-0.06930242428393261 +265520,1327.6000000173733,-0.06930240826137227 +265521,1327.6050000173734,-0.06930239223842999 +265522,1327.6100000173735,-0.0693023762151058 +265523,1327.6150000173736,-0.06930236019139972 +265524,1327.6200000173737,-0.0693023441673118 +265525,1327.6250000173738,-0.06930232814284205 +265526,1327.630000017374,-0.06930231211799051 +265527,1327.635000017374,-0.06930229609275719 +265528,1327.6400000173742,-0.06930228006714212 +265529,1327.6450000173743,-0.06930226404114534 +265530,1327.6500000173744,-0.06930224801476687 +265531,1327.6550000173745,-0.06930223198800672 +265532,1327.6600000173746,-0.06930221596086496 +265533,1327.6650000173747,-0.06930219993334157 +265534,1327.6700000173748,-0.0693021839054366 +265535,1327.675000017375,-0.0693021678771501 +265536,1327.680000017375,-0.06930215184848205 +265537,1327.6850000173752,-0.06930213581943252 +265538,1327.6900000173753,-0.06930211979000152 +265539,1327.6950000173754,-0.06930210376018905 +265540,1327.7000000173755,-0.06930208772999517 +265541,1327.7050000173756,-0.06930207169941993 +265542,1327.7100000173757,-0.06930205566846331 +265543,1327.7150000173758,-0.06930203963712536 +265544,1327.720000017376,-0.0693020236054061 +265545,1327.725000017376,-0.06930200757330555 +265546,1327.7300000173761,-0.06930199154082377 +265547,1327.7350000173763,-0.06930197550796074 +265548,1327.7400000173764,-0.06930195947471654 +265549,1327.7450000173765,-0.06930194344109115 +265550,1327.7500000173766,-0.06930192740708463 +265551,1327.7550000173767,-0.06930191137269699 +265552,1327.7600000173768,-0.06930189533792826 +265553,1327.765000017377,-0.06930187930277848 +265554,1327.770000017377,-0.06930186326724766 +265555,1327.7750000173771,-0.06930184723133583 +265556,1327.7800000173772,-0.06930183119504302 +265557,1327.7850000173773,-0.06930181515836926 +265558,1327.7900000173775,-0.0693017991213146 +265559,1327.7950000173776,-0.06930178308387902 +265560,1327.8000000173777,-0.06930176704606257 +265561,1327.8050000173778,-0.06930175100786527 +265562,1327.810000017378,-0.06930173496928718 +265563,1327.815000017378,-0.0693017189303283 +265564,1327.820000017378,-0.06930170289098865 +265565,1327.8250000173782,-0.06930168685126828 +265566,1327.8300000173783,-0.06930167081116718 +265567,1327.8350000173784,-0.06930165477068544 +265568,1327.8400000173785,-0.06930163872982302 +265569,1327.8450000173787,-0.06930162268857999 +265570,1327.8500000173788,-0.06930160664695638 +265571,1327.8550000173789,-0.06930159060495218 +265572,1327.860000017379,-0.06930157456256746 +265573,1327.865000017379,-0.0693015585198022 +265574,1327.8700000173792,-0.06930154247665647 +265575,1327.8750000173793,-0.06930152643313028 +265576,1327.8800000173794,-0.06930151038922365 +265577,1327.8850000173795,-0.06930149434493663 +265578,1327.8900000173796,-0.06930147830026923 +265579,1327.8950000173797,-0.06930146225522146 +265580,1327.9000000173799,-0.0693014462097934 +265581,1327.90500001738,-0.06930143016398503 +265582,1327.91000001738,-0.0693014141177964 +265583,1327.9150000173802,-0.06930139807122752 +265584,1327.9200000173803,-0.06930138202427844 +265585,1327.9250000173804,-0.06930136597694918 +265586,1327.9300000173805,-0.06930134992923975 +265587,1327.9350000173806,-0.06930133388115019 +265588,1327.9400000173807,-0.06930131783268052 +265589,1327.9450000173808,-0.06930130178383079 +265590,1327.950000017381,-0.069301285734601 +265591,1327.955000017381,-0.06930126968499119 +265592,1327.9600000173812,-0.06930125363500139 +265593,1327.9650000173813,-0.06930123758463162 +265594,1327.9700000173814,-0.06930122153388192 +265595,1327.9750000173815,-0.0693012054827523 +265596,1327.9800000173816,-0.06930118943124279 +265597,1327.9850000173817,-0.06930117337935343 +265598,1327.9900000173818,-0.06930115732708424 +265599,1327.995000017382,-0.06930114127443525 +265600,1328.000000017382,-0.0693011252214065 +265601,1328.0050000173821,-0.06930110916799798 +265602,1328.0100000173823,-0.06930109311420975 +265603,1328.0150000173824,-0.06930107706004182 +265604,1328.0200000173825,-0.06930106100549424 +265605,1328.0250000173826,-0.069301044950567 +265606,1328.0300000173827,-0.06930102889526016 +265607,1328.0350000173828,-0.06930101283957373 +265608,1328.040000017383,-0.06930099678350776 +265609,1328.045000017383,-0.06930098072706224 +265610,1328.0500000173831,-0.06930096467023722 +265611,1328.0550000173832,-0.06930094861303274 +265612,1328.0600000173833,-0.0693009325554488 +265613,1328.0650000173835,-0.06930091649748545 +265614,1328.0700000173836,-0.06930090043914269 +265615,1328.0750000173837,-0.06930088438042059 +265616,1328.0800000173838,-0.06930086832131913 +265617,1328.085000017384,-0.06930085226183838 +265618,1328.090000017384,-0.06930083620197833 +265619,1328.095000017384,-0.06930082014173902 +265620,1328.1000000173842,-0.06930080408112049 +265621,1328.1050000173843,-0.06930078802012277 +265622,1328.1100000173844,-0.06930077195874586 +265623,1328.1150000173845,-0.0693007558969898 +265624,1328.1200000173847,-0.06930073983485463 +265625,1328.1250000173848,-0.06930072377234037 +265626,1328.1300000173849,-0.06930070770944705 +265627,1328.135000017385,-0.06930069164617467 +265628,1328.140000017385,-0.0693006755825233 +265629,1328.1450000173852,-0.06930065951849294 +265630,1328.1500000173853,-0.06930064345408363 +265631,1328.1550000173854,-0.06930062738929539 +265632,1328.1600000173855,-0.06930061132412824 +265633,1328.1650000173856,-0.06930059525858222 +265634,1328.1700000173857,-0.06930057919265735 +265635,1328.1750000173859,-0.06930056312635367 +265636,1328.180000017386,-0.06930054705967119 +265637,1328.185000017386,-0.06930053099260995 +265638,1328.1900000173862,-0.06930051492516998 +265639,1328.1950000173863,-0.06930049885735129 +265640,1328.2000000173864,-0.06930048278915392 +265641,1328.2050000173865,-0.0693004667205779 +265642,1328.2100000173866,-0.06930045065162324 +265643,1328.2150000173867,-0.06930043458228999 +265644,1328.2200000173868,-0.06930041851257815 +265645,1328.225000017387,-0.06930040244248777 +265646,1328.230000017387,-0.06930038637201887 +265647,1328.2350000173872,-0.06930037030117148 +265648,1328.2400000173873,-0.06930035422994561 +265649,1328.2450000173874,-0.06930033815834132 +265650,1328.2500000173875,-0.06930032208635863 +265651,1328.2550000173876,-0.06930030601399755 +265652,1328.2600000173877,-0.0693002899412581 +265653,1328.2650000173878,-0.06930027386814033 +265654,1328.270000017388,-0.06930025779464427 +265655,1328.275000017388,-0.06930024172076991 +265656,1328.2800000173881,-0.06930022564651733 +265657,1328.2850000173883,-0.06930020957188653 +265658,1328.2900000173884,-0.06930019349687752 +265659,1328.2950000173885,-0.06930017742149036 +265660,1328.3000000173886,-0.06930016134572506 +265661,1328.3050000173887,-0.06930014526958166 +265662,1328.3100000173888,-0.06930012919306014 +265663,1328.315000017389,-0.06930011311616059 +265664,1328.320000017389,-0.06930009703888301 +265665,1328.3250000173891,-0.06930008096122742 +265666,1328.3300000173892,-0.06930006488319387 +265667,1328.3350000173893,-0.06930004880478237 +265668,1328.3400000173895,-0.06930003272599293 +265669,1328.3450000173896,-0.06930001664682563 +265670,1328.3500000173897,-0.06930000056728045 +265671,1328.3550000173898,-0.06929998448735744 +265672,1328.36000001739,-0.06929996840705661 +265673,1328.36500001739,-0.06929995232637799 +265674,1328.37000001739,-0.06929993624532162 +265675,1328.3750000173902,-0.06929992016388752 +265676,1328.3800000173903,-0.06929990408207573 +265677,1328.3850000173904,-0.06929988799988625 +265678,1328.3900000173905,-0.06929987191731914 +265679,1328.3950000173907,-0.0692998558343744 +265680,1328.4000000173908,-0.06929983975105207 +265681,1328.4050000173909,-0.06929982366735217 +265682,1328.410000017391,-0.06929980758327474 +265683,1328.415000017391,-0.0692997914988198 +265684,1328.4200000173912,-0.06929977541398738 +265685,1328.4250000173913,-0.0692997593287775 +265686,1328.4300000173914,-0.06929974324319017 +265687,1328.4350000173915,-0.06929972715722546 +265688,1328.4400000173916,-0.06929971107088338 +265689,1328.4450000173917,-0.06929969498416394 +265690,1328.4500000173919,-0.06929967889706719 +265691,1328.455000017392,-0.06929966280959313 +265692,1328.460000017392,-0.06929964672174181 +265693,1328.4650000173922,-0.06929963063351326 +265694,1328.4700000173923,-0.0692996145449075 +265695,1328.4750000173924,-0.06929959845592455 +265696,1328.4800000173925,-0.06929958236656446 +265697,1328.4850000173926,-0.06929956627682722 +265698,1328.4900000173927,-0.06929955018671288 +265699,1328.4950000173928,-0.06929953409622147 +265700,1328.500000017393,-0.06929951800535301 +265701,1328.505000017393,-0.06929950191410753 +265702,1328.5100000173932,-0.06929948582248506 +265703,1328.5150000173933,-0.06929946973048562 +265704,1328.5200000173934,-0.06929945363810924 +265705,1328.5250000173935,-0.06929943754535596 +265706,1328.5300000173936,-0.06929942145222578 +265707,1328.5350000173937,-0.06929940535871876 +265708,1328.5400000173938,-0.0692993892648349 +265709,1328.545000017394,-0.06929937317057425 +265710,1328.550000017394,-0.0692993570759368 +265711,1328.5550000173941,-0.06929934098092261 +265712,1328.5600000173943,-0.0692993248855317 +265713,1328.5650000173944,-0.0692993087897641 +265714,1328.5700000173945,-0.06929929269361984 +265715,1328.5750000173946,-0.06929927659709892 +265716,1328.5800000173947,-0.0692992605002014 +265717,1328.5850000173948,-0.0692992444029273 +265718,1328.590000017395,-0.06929922830527664 +265719,1328.595000017395,-0.06929921220724945 +265720,1328.6000000173951,-0.06929919610884576 +265721,1328.6050000173952,-0.06929918001006559 +265722,1328.6100000173954,-0.06929916391090896 +265723,1328.6150000173955,-0.06929914781137592 +265724,1328.6200000173956,-0.06929913171146648 +265725,1328.6250000173957,-0.06929911561118068 +265726,1328.6300000173958,-0.06929909951051855 +265727,1328.635000017396,-0.06929908340948009 +265728,1328.640000017396,-0.06929906730806534 +265729,1328.6450000173961,-0.06929905120627435 +265730,1328.6500000173962,-0.0692990351041071 +265731,1328.6550000173963,-0.06929901900156367 +265732,1328.6600000173964,-0.06929900289864405 +265733,1328.6650000173966,-0.06929898679534828 +265734,1328.6700000173967,-0.0692989706916764 +265735,1328.6750000173968,-0.06929895458762843 +265736,1328.6800000173969,-0.06929893848320438 +265737,1328.685000017397,-0.0692989223784043 +265738,1328.690000017397,-0.0692989062732282 +265739,1328.6950000173972,-0.06929889016767611 +265740,1328.7000000173973,-0.06929887406174806 +265741,1328.7050000173974,-0.06929885795544409 +265742,1328.7100000173975,-0.06929884184876421 +265743,1328.7150000173976,-0.06929882574170845 +265744,1328.7200000173978,-0.06929880963427686 +265745,1328.7250000173979,-0.06929879352646941 +265746,1328.730000017398,-0.06929877741828618 +265747,1328.735000017398,-0.06929876130972719 +265748,1328.7400000173982,-0.06929874520079245 +265749,1328.7450000173983,-0.06929872909148199 +265750,1328.7500000173984,-0.06929871298179585 +265751,1328.7550000173985,-0.06929869687173404 +265752,1328.7600000173986,-0.06929868076129661 +265753,1328.7650000173987,-0.06929866465048358 +265754,1328.7700000173988,-0.06929864853929496 +265755,1328.775000017399,-0.0692986324277308 +265756,1328.780000017399,-0.0692986163157911 +265757,1328.7850000173992,-0.0692986002034759 +265758,1328.7900000173993,-0.06929858409078524 +265759,1328.7950000173994,-0.06929856797771913 +265760,1328.8000000173995,-0.06929855186427761 +265761,1328.8050000173996,-0.0692985357504607 +265762,1328.8100000173997,-0.06929851963626844 +265763,1328.8150000173998,-0.06929850352170083 +265764,1328.8200000174,-0.06929848740675792 +265765,1328.8250000174,-0.06929847129143973 +265766,1328.8300000174002,-0.0692984551757463 +265767,1328.8350000174003,-0.06929843905967764 +265768,1328.8400000174004,-0.06929842294323378 +265769,1328.8450000174005,-0.06929840682641475 +265770,1328.8500000174006,-0.06929839070922057 +265771,1328.8550000174007,-0.06929837459165128 +265772,1328.8600000174008,-0.0692983584737069 +265773,1328.865000017401,-0.06929834235538747 +265774,1328.870000017401,-0.06929832623669299 +265775,1328.8750000174011,-0.0692983101176235 +265776,1328.8800000174012,-0.06929829399817904 +265777,1328.8850000174014,-0.06929827787835961 +265778,1328.8900000174015,-0.06929826175816527 +265779,1328.8950000174016,-0.06929824563759603 +265780,1328.9000000174017,-0.06929822951665192 +265781,1328.9050000174018,-0.06929821339533296 +265782,1328.910000017402,-0.06929819727363917 +265783,1328.915000017402,-0.0692981811515706 +265784,1328.9200000174021,-0.06929816502912728 +265785,1328.9250000174022,-0.06929814890630921 +265786,1328.9300000174023,-0.06929813278311643 +265787,1328.9350000174024,-0.06929811665954896 +265788,1328.9400000174026,-0.06929810053560685 +265789,1328.9450000174027,-0.06929808441129011 +265790,1328.9500000174028,-0.06929806828659876 +265791,1328.9550000174029,-0.06929805216153286 +265792,1328.960000017403,-0.0692980360360924 +265793,1328.965000017403,-0.06929801991027743 +265794,1328.9700000174032,-0.06929800378408796 +265795,1328.9750000174033,-0.06929798765752403 +265796,1328.9800000174034,-0.06929797153058566 +265797,1328.9850000174035,-0.06929795540327288 +265798,1328.9900000174036,-0.06929793927558572 +265799,1328.9950000174038,-0.0692979231475242 +265800,1329.0000000174039,-0.06929790701908836 +265801,1329.005000017404,-0.06929789089027821 +265802,1329.010000017404,-0.0692978747610938 +265803,1329.0150000174042,-0.06929785863153512 +265804,1329.0200000174043,-0.06929784250160223 +265805,1329.0250000174044,-0.06929782637129514 +265806,1329.0300000174045,-0.0692978102406139 +265807,1329.0350000174046,-0.06929779410955851 +265808,1329.0400000174047,-0.06929777797812903 +265809,1329.0450000174048,-0.06929776184632544 +265810,1329.050000017405,-0.0692977457141478 +265811,1329.055000017405,-0.06929772958159615 +265812,1329.0600000174052,-0.06929771344867049 +265813,1329.0650000174053,-0.06929769731537083 +265814,1329.0700000174054,-0.06929768118169723 +265815,1329.0750000174055,-0.06929766504764971 +265816,1329.0800000174056,-0.0692976489132283 +265817,1329.0850000174057,-0.06929763277843302 +265818,1329.0900000174058,-0.0692976166432639 +265819,1329.095000017406,-0.06929760050772099 +265820,1329.100000017406,-0.06929758437180428 +265821,1329.1050000174062,-0.0692975682355138 +265822,1329.1100000174063,-0.06929755209884961 +265823,1329.1150000174064,-0.06929753596181171 +265824,1329.1200000174065,-0.06929751982440013 +265825,1329.1250000174066,-0.06929750368661489 +265826,1329.1300000174067,-0.06929748754845604 +265827,1329.1350000174068,-0.0692974714099236 +265828,1329.140000017407,-0.06929745527101756 +265829,1329.145000017407,-0.069297439131738 +265830,1329.1500000174071,-0.06929742299208494 +265831,1329.1550000174072,-0.06929740685205837 +265832,1329.1600000174074,-0.06929739071165836 +265833,1329.1650000174075,-0.0692973745708849 +265834,1329.1700000174076,-0.06929735842973804 +265835,1329.1750000174077,-0.06929734228821781 +265836,1329.1800000174078,-0.06929732614632422 +265837,1329.185000017408,-0.06929731000405731 +265838,1329.190000017408,-0.0692972938614171 +265839,1329.1950000174081,-0.06929727771840362 +265840,1329.2000000174082,-0.06929726157501691 +265841,1329.2050000174083,-0.06929724543125697 +265842,1329.2100000174084,-0.06929722928712384 +265843,1329.2150000174086,-0.06929721314261755 +265844,1329.2200000174087,-0.06929719699773813 +265845,1329.2250000174088,-0.0692971808524856 +265846,1329.2300000174089,-0.06929716470686 +265847,1329.235000017409,-0.06929714856086133 +265848,1329.240000017409,-0.06929713241448965 +265849,1329.2450000174092,-0.06929711626774497 +265850,1329.2500000174093,-0.06929710012062733 +265851,1329.2550000174094,-0.06929708397313672 +265852,1329.2600000174095,-0.0692970678252732 +265853,1329.2650000174096,-0.0692970516770368 +265854,1329.2700000174098,-0.06929703552842754 +265855,1329.2750000174099,-0.06929701937944545 +265856,1329.28000001741,-0.06929700323009054 +265857,1329.28500001741,-0.06929698708036285 +265858,1329.2900000174102,-0.0692969709302624 +265859,1329.2950000174103,-0.06929695477978921 +265860,1329.3000000174104,-0.06929693862894334 +265861,1329.3050000174105,-0.06929692247772479 +265862,1329.3100000174106,-0.0692969063261336 +265863,1329.3150000174107,-0.06929689017416979 +265864,1329.3200000174108,-0.06929687402183339 +265865,1329.325000017411,-0.06929685786912443 +265866,1329.330000017411,-0.06929684171604292 +265867,1329.3350000174112,-0.06929682556258891 +265868,1329.3400000174113,-0.06929680940876241 +265869,1329.3450000174114,-0.06929679325456345 +265870,1329.3500000174115,-0.06929677709999207 +265871,1329.3550000174116,-0.06929676094504829 +265872,1329.3600000174117,-0.06929674478973213 +265873,1329.3650000174118,-0.06929672863404364 +265874,1329.370000017412,-0.06929671247798282 +265875,1329.375000017412,-0.0692966963215497 +265876,1329.3800000174122,-0.0692966801647443 +265877,1329.3850000174123,-0.06929666400756668 +265878,1329.3900000174124,-0.06929664785001684 +265879,1329.3950000174125,-0.06929663169209482 +265880,1329.4000000174126,-0.06929661553380065 +265881,1329.4050000174127,-0.06929659937513434 +265882,1329.4100000174128,-0.06929658321609593 +265883,1329.415000017413,-0.06929656705668544 +265884,1329.420000017413,-0.0692965508969029 +265885,1329.4250000174131,-0.06929653473674835 +265886,1329.4300000174132,-0.0692965185762218 +265887,1329.4350000174134,-0.06929650241532326 +265888,1329.4400000174135,-0.0692964862540528 +265889,1329.4450000174136,-0.06929647009241041 +265890,1329.4500000174137,-0.06929645393039616 +265891,1329.4550000174138,-0.06929643776801003 +265892,1329.460000017414,-0.06929642160525208 +265893,1329.465000017414,-0.06929640544212232 +265894,1329.4700000174141,-0.06929638927862078 +265895,1329.4750000174142,-0.0692963731147475 +265896,1329.4800000174143,-0.06929635695050249 +265897,1329.4850000174144,-0.06929634078588577 +265898,1329.4900000174146,-0.0692963246208974 +265899,1329.4950000174147,-0.06929630845553737 +265900,1329.5000000174148,-0.06929629228980573 +265901,1329.505000017415,-0.06929627612370251 +265902,1329.510000017415,-0.06929625995722774 +265903,1329.515000017415,-0.0692962437903814 +265904,1329.5200000174152,-0.06929622762316359 +265905,1329.5250000174153,-0.06929621145557428 +265906,1329.5300000174154,-0.06929619528761354 +265907,1329.5350000174155,-0.06929617911928135 +265908,1329.5400000174157,-0.06929616295057776 +265909,1329.5450000174158,-0.06929614678150281 +265910,1329.5500000174159,-0.06929613061205651 +265911,1329.555000017416,-0.0692961144422389 +265912,1329.560000017416,-0.06929609827205001 +265913,1329.5650000174162,-0.06929608210148983 +265914,1329.5700000174163,-0.06929606593055843 +265915,1329.5750000174164,-0.06929604975925582 +265916,1329.5800000174165,-0.06929603358758203 +265917,1329.5850000174166,-0.06929601741553708 +265918,1329.5900000174167,-0.06929600124312102 +265919,1329.5950000174169,-0.06929598507033384 +265920,1329.600000017417,-0.0692959688971756 +265921,1329.605000017417,-0.0692959527236463 +265922,1329.6100000174172,-0.06929593654974599 +265923,1329.6150000174173,-0.06929592037547468 +265924,1329.6200000174174,-0.06929590420083241 +265925,1329.6250000174175,-0.06929588802581921 +265926,1329.6300000174176,-0.06929587185043509 +265927,1329.6350000174177,-0.06929585567468008 +265928,1329.6400000174178,-0.06929583949855424 +265929,1329.645000017418,-0.06929582332205754 +265930,1329.650000017418,-0.06929580714519006 +265931,1329.6550000174182,-0.06929579096795178 +265932,1329.6600000174183,-0.06929577479034278 +265933,1329.6650000174184,-0.06929575861236305 +265934,1329.6700000174185,-0.06929574243401262 +265935,1329.6750000174186,-0.06929572625529153 +265936,1329.6800000174187,-0.06929571007619979 +265937,1329.6850000174188,-0.06929569389673745 +265938,1329.690000017419,-0.06929567771690452 +265939,1329.695000017419,-0.06929566153670104 +265940,1329.7000000174191,-0.069295645356127 +265941,1329.7050000174193,-0.06929562917518249 +265942,1329.7100000174194,-0.06929561299386748 +265943,1329.7150000174195,-0.06929559681218203 +265944,1329.7200000174196,-0.06929558063012616 +265945,1329.7250000174197,-0.06929556444769988 +265946,1329.7300000174198,-0.06929554826490324 +265947,1329.73500001742,-0.06929553208173625 +265948,1329.74000001742,-0.06929551589819896 +265949,1329.7450000174201,-0.06929549971429137 +265950,1329.7500000174202,-0.06929548353001352 +265951,1329.7550000174203,-0.06929546734536546 +265952,1329.7600000174205,-0.06929545116034717 +265953,1329.7650000174206,-0.06929543497495871 +265954,1329.7700000174207,-0.0692954187892001 +265955,1329.7750000174208,-0.06929540260307135 +265956,1329.780000017421,-0.06929538641657251 +265957,1329.785000017421,-0.06929537022970361 +265958,1329.790000017421,-0.06929535404246466 +265959,1329.7950000174212,-0.06929533785485568 +265960,1329.8000000174213,-0.06929532166687673 +265961,1329.8050000174214,-0.06929530547852782 +265962,1329.8100000174215,-0.06929528928980895 +265963,1329.8150000174217,-0.06929527310072019 +265964,1329.8200000174218,-0.06929525691126154 +265965,1329.8250000174219,-0.06929524072143303 +265966,1329.830000017422,-0.06929522453123471 +265967,1329.835000017422,-0.06929520834066658 +265968,1329.8400000174222,-0.06929519214972868 +265969,1329.8450000174223,-0.06929517595842102 +265970,1329.8500000174224,-0.06929515976674366 +265971,1329.8550000174225,-0.06929514357469661 +265972,1329.8600000174226,-0.06929512738227989 +265973,1329.8650000174227,-0.06929511118949352 +265974,1329.8700000174229,-0.06929509499633756 +265975,1329.875000017423,-0.06929507880281201 +265976,1329.880000017423,-0.0692950626089169 +265977,1329.8850000174232,-0.06929504641465227 +265978,1329.8900000174233,-0.06929503022001812 +265979,1329.8950000174234,-0.0692950140250145 +265980,1329.9000000174235,-0.06929499782964145 +265981,1329.9050000174236,-0.06929498163389897 +265982,1329.9100000174237,-0.0692949654377871 +265983,1329.9150000174238,-0.06929494924130586 +265984,1329.920000017424,-0.06929493304445528 +265985,1329.925000017424,-0.06929491684723539 +265986,1329.9300000174242,-0.0692949006496462 +265987,1329.9350000174243,-0.06929488445168779 +265988,1329.9400000174244,-0.0692948682533601 +265989,1329.9450000174245,-0.06929485205466324 +265990,1329.9500000174246,-0.06929483585559719 +265991,1329.9550000174247,-0.069294819656162 +265992,1329.9600000174248,-0.06929480345635768 +265993,1329.965000017425,-0.06929478725618425 +265994,1329.970000017425,-0.06929477105564176 +265995,1329.9750000174251,-0.06929475485473023 +265996,1329.9800000174253,-0.06929473865344969 +265997,1329.9850000174254,-0.06929472245180016 +265998,1329.9900000174255,-0.06929470624978167 +265999,1329.9950000174256,-0.06929469004739425 +266000,1330.0000000174257,-0.06929467384463792 +266001,1330.0050000174258,-0.0692946576415127 +266002,1330.010000017426,-0.06929464143801864 +266003,1330.015000017426,-0.06929462523415576 +266004,1330.0200000174261,-0.06929460902992407 +266005,1330.0250000174262,-0.06929459282532362 +266006,1330.0300000174263,-0.06929457662035442 +266007,1330.0350000174265,-0.06929456041501651 +266008,1330.0400000174266,-0.0692945442093099 +266009,1330.0450000174267,-0.06929452800323463 +266010,1330.0500000174268,-0.06929451179679073 +266011,1330.055000017427,-0.06929449558997822 +266012,1330.060000017427,-0.06929447938279712 +266013,1330.065000017427,-0.06929446317524747 +266014,1330.0700000174272,-0.0692944469673293 +266015,1330.0750000174273,-0.06929443075904261 +266016,1330.0800000174274,-0.06929441455038746 +266017,1330.0850000174275,-0.06929439834136386 +266018,1330.0900000174277,-0.06929438213197185 +266019,1330.0950000174278,-0.06929436592221144 +266020,1330.1000000174279,-0.06929434971208268 +266021,1330.105000017428,-0.06929433350158556 +266022,1330.110000017428,-0.06929431729072016 +266023,1330.1150000174282,-0.06929430107948646 +266024,1330.1200000174283,-0.0692942848678845 +266025,1330.1250000174284,-0.06929426865591432 +266026,1330.1300000174285,-0.06929425244357591 +266027,1330.1350000174286,-0.06929423623086935 +266028,1330.1400000174287,-0.06929422001779463 +266029,1330.1450000174289,-0.06929420380435179 +266030,1330.150000017429,-0.06929418759054087 +266031,1330.155000017429,-0.06929417137636187 +266032,1330.1600000174292,-0.06929415516181485 +266033,1330.1650000174293,-0.0692941389468998 +266034,1330.1700000174294,-0.06929412273161675 +266035,1330.1750000174295,-0.06929410651596576 +266036,1330.1800000174296,-0.06929409029994685 +266037,1330.1850000174297,-0.06929407408356002 +266038,1330.1900000174298,-0.06929405786680531 +266039,1330.19500001743,-0.06929404164968275 +266040,1330.20000001743,-0.06929402543219237 +266041,1330.2050000174302,-0.06929400921433419 +266042,1330.2100000174303,-0.06929399299610825 +266043,1330.2150000174304,-0.06929397677751456 +266044,1330.2200000174305,-0.06929396055855315 +266045,1330.2250000174306,-0.06929394433922406 +266046,1330.2300000174307,-0.06929392811952731 +266047,1330.2350000174308,-0.06929391189946293 +266048,1330.240000017431,-0.06929389567903094 +266049,1330.245000017431,-0.06929387945823136 +266050,1330.2500000174311,-0.06929386323706423 +266051,1330.2550000174313,-0.06929384701552958 +266052,1330.2600000174314,-0.06929383079362744 +266053,1330.2650000174315,-0.06929381457135782 +266054,1330.2700000174316,-0.06929379834872074 +266055,1330.2750000174317,-0.06929378212571627 +266056,1330.2800000174318,-0.06929376590234439 +266057,1330.285000017432,-0.06929374967860516 +266058,1330.290000017432,-0.06929373345449857 +266059,1330.2950000174321,-0.0692937172300247 +266060,1330.3000000174322,-0.06929370100518353 +266061,1330.3050000174323,-0.06929368477997512 +266062,1330.3100000174325,-0.06929366855439947 +266063,1330.3150000174326,-0.06929365232845663 +266064,1330.3200000174327,-0.0692936361021466 +266065,1330.3250000174328,-0.06929361987546943 +266066,1330.330000017433,-0.06929360364842514 +266067,1330.335000017433,-0.06929358742101377 +266068,1330.340000017433,-0.06929357119323533 +266069,1330.3450000174332,-0.06929355496508983 +266070,1330.3500000174333,-0.06929353873657734 +266071,1330.3550000174334,-0.06929352250769788 +266072,1330.3600000174335,-0.06929350627845143 +266073,1330.3650000174337,-0.06929349004883807 +266074,1330.3700000174338,-0.0692934738188578 +266075,1330.3750000174339,-0.06929345758851065 +266076,1330.380000017434,-0.06929344135779665 +266077,1330.385000017434,-0.06929342512671584 +266078,1330.3900000174342,-0.06929340889526822 +266079,1330.3950000174343,-0.06929339266345383 +266080,1330.4000000174344,-0.0692933764312727 +266081,1330.4050000174345,-0.06929336019872487 +266082,1330.4100000174346,-0.06929334396581036 +266083,1330.4150000174347,-0.06929332773252916 +266084,1330.4200000174349,-0.06929331149888135 +266085,1330.425000017435,-0.06929329526486692 +266086,1330.430000017435,-0.06929327903048593 +266087,1330.4350000174352,-0.06929326279573839 +266088,1330.4400000174353,-0.06929324656062431 +266089,1330.4450000174354,-0.06929323032514374 +266090,1330.4500000174355,-0.0692932140892967 +266091,1330.4550000174356,-0.06929319785308322 +266092,1330.4600000174357,-0.06929318161650332 +266093,1330.4650000174358,-0.06929316537955703 +266094,1330.470000017436,-0.06929314914224438 +266095,1330.475000017436,-0.0692931329045654 +266096,1330.4800000174362,-0.0692931166665201 +266097,1330.4850000174363,-0.06929310042810853 +266098,1330.4900000174364,-0.0692930841893307 +266099,1330.4950000174365,-0.06929306795018665 +266100,1330.5000000174366,-0.06929305171067641 +266101,1330.5050000174367,-0.06929303547079999 +266102,1330.5100000174368,-0.0692930192305574 +266103,1330.515000017437,-0.06929300298994871 +266104,1330.520000017437,-0.06929298674897395 +266105,1330.5250000174372,-0.0692929705076331 +266106,1330.5300000174373,-0.06929295426592622 +266107,1330.5350000174374,-0.06929293802385332 +266108,1330.5400000174375,-0.06929292178141445 +266109,1330.5450000174376,-0.06929290553860962 +266110,1330.5500000174377,-0.06929288929543885 +266111,1330.5550000174378,-0.0692928730519022 +266112,1330.560000017438,-0.06929285680799965 +266113,1330.565000017438,-0.06929284056373128 +266114,1330.5700000174381,-0.06929282431909707 +266115,1330.5750000174382,-0.06929280807409707 +266116,1330.5800000174384,-0.06929279182873131 +266117,1330.5850000174385,-0.06929277558299982 +266118,1330.5900000174386,-0.0692927593369026 +266119,1330.5950000174387,-0.06929274309043969 +266120,1330.6000000174388,-0.06929272684361112 +266121,1330.605000017439,-0.06929271059641692 +266122,1330.610000017439,-0.06929269434885713 +266123,1330.6150000174391,-0.06929267810093176 +266124,1330.6200000174392,-0.06929266185264084 +266125,1330.6250000174393,-0.0692926456039844 +266126,1330.6300000174394,-0.06929262935496246 +266127,1330.6350000174396,-0.06929261310557504 +266128,1330.6400000174397,-0.0692925968558222 +266129,1330.6450000174398,-0.06929258060570394 +266130,1330.6500000174399,-0.06929256435522028 +266131,1330.65500001744,-0.06929254810437127 +266132,1330.66000001744,-0.06929253185315691 +266133,1330.6650000174402,-0.06929251560157726 +266134,1330.6700000174403,-0.06929249934963234 +266135,1330.6750000174404,-0.06929248309732215 +266136,1330.6800000174405,-0.06929246684464674 +266137,1330.6850000174406,-0.06929245059160613 +266138,1330.6900000174408,-0.06929243433820036 +266139,1330.6950000174409,-0.06929241808442943 +266140,1330.700000017441,-0.0692924018302934 +266141,1330.705000017441,-0.06929238557579226 +266142,1330.7100000174412,-0.06929236932092606 +266143,1330.7150000174413,-0.06929235306569483 +266144,1330.7200000174414,-0.0692923368100986 +266145,1330.7250000174415,-0.06929232055413738 +266146,1330.7300000174416,-0.0692923042978112 +266147,1330.7350000174417,-0.0692922880411201 +266148,1330.7400000174418,-0.0692922717840641 +266149,1330.745000017442,-0.06929225552664321 +266150,1330.750000017442,-0.0692922392688575 +266151,1330.7550000174422,-0.06929222301070696 +266152,1330.7600000174423,-0.06929220675219164 +266153,1330.7650000174424,-0.06929219049331153 +266154,1330.7700000174425,-0.0692921742340667 +266155,1330.7750000174426,-0.06929215797445715 +266156,1330.7800000174427,-0.0692921417144829 +266157,1330.7850000174428,-0.06929212545414401 +266158,1330.790000017443,-0.06929210919344049 +266159,1330.795000017443,-0.06929209293237237 +266160,1330.8000000174432,-0.06929207667093969 +266161,1330.8050000174433,-0.06929206040914244 +266162,1330.8100000174434,-0.06929204414698067 +266163,1330.8150000174435,-0.06929202788445442 +266164,1330.8200000174436,-0.06929201162156368 +266165,1330.8250000174437,-0.0692919953583085 +266166,1330.8300000174438,-0.06929197909468891 +266167,1330.835000017444,-0.06929196283070495 +266168,1330.840000017444,-0.06929194656635662 +266169,1330.8450000174441,-0.06929193030164396 +266170,1330.8500000174442,-0.069291914036567 +266171,1330.8550000174444,-0.06929189777112575 +266172,1330.8600000174445,-0.06929188150532024 +266173,1330.8650000174446,-0.06929186523915053 +266174,1330.8700000174447,-0.0692918489726166 +266175,1330.8750000174448,-0.06929183270571852 +266176,1330.880000017445,-0.06929181643845629 +266177,1330.885000017445,-0.06929180017082995 +266178,1330.8900000174451,-0.06929178390283951 +266179,1330.8950000174452,-0.06929176763448501 +266180,1330.9000000174453,-0.06929175136576649 +266181,1330.9050000174454,-0.06929173509668395 +266182,1330.9100000174456,-0.06929171882723743 +266183,1330.9150000174457,-0.06929170255742696 +266184,1330.9200000174458,-0.06929168628725256 +266185,1330.9250000174459,-0.06929167001671427 +266186,1330.930000017446,-0.0692916537458121 +266187,1330.935000017446,-0.06929163747454609 +266188,1330.9400000174462,-0.06929162120291625 +266189,1330.9450000174463,-0.06929160493092262 +266190,1330.9500000174464,-0.06929158865856523 +266191,1330.9550000174465,-0.0692915723858441 +266192,1330.9600000174466,-0.06929155611275926 +266193,1330.9650000174468,-0.06929153983931076 +266194,1330.9700000174469,-0.06929152356549859 +266195,1330.975000017447,-0.06929150729132277 +266196,1330.980000017447,-0.06929149101678336 +266197,1330.9850000174472,-0.0692914747418804 +266198,1330.9900000174473,-0.06929145846661387 +266199,1330.9950000174474,-0.06929144219098383 +266200,1331.0000000174475,-0.0692914259149903 +266201,1331.0050000174476,-0.0692914096386333 +266202,1331.0100000174477,-0.06929139336191285 +266203,1331.0150000174478,-0.06929137708482899 +266204,1331.020000017448,-0.06929136080738175 +266205,1331.025000017448,-0.06929134452957116 +266206,1331.0300000174482,-0.06929132825139722 +266207,1331.0350000174483,-0.06929131197285998 +266208,1331.0400000174484,-0.06929129569395949 +266209,1331.0450000174485,-0.06929127941469572 +266210,1331.0500000174486,-0.06929126313506875 +266211,1331.0550000174487,-0.06929124685507856 +266212,1331.0600000174488,-0.06929123057472522 +266213,1331.065000017449,-0.06929121429400874 +266214,1331.070000017449,-0.06929119801292914 +266215,1331.0750000174492,-0.06929118173148646 +266216,1331.0800000174493,-0.06929116544968072 +266217,1331.0850000174494,-0.06929114916751193 +266218,1331.0900000174495,-0.06929113288498015 +266219,1331.0950000174496,-0.06929111660208538 +266220,1331.1000000174497,-0.06929110031882767 +266221,1331.1050000174498,-0.06929108403520702 +266222,1331.11000001745,-0.06929106775122348 +266223,1331.11500001745,-0.06929105146687707 +266224,1331.1200000174501,-0.06929103518216782 +266225,1331.1250000174502,-0.06929101889709575 +266226,1331.1300000174504,-0.06929100261166089 +266227,1331.1350000174505,-0.06929098632586327 +266228,1331.1400000174506,-0.0692909700397029 +266229,1331.1450000174507,-0.06929095375317984 +266230,1331.1500000174508,-0.06929093746629408 +266231,1331.155000017451,-0.06929092117904569 +266232,1331.160000017451,-0.06929090489143465 +266233,1331.1650000174511,-0.06929088860346103 +266234,1331.1700000174512,-0.06929087231512483 +266235,1331.1750000174513,-0.06929085602642608 +266236,1331.1800000174514,-0.06929083973736481 +266237,1331.1850000174516,-0.06929082344794106 +266238,1331.1900000174517,-0.06929080715815485 +266239,1331.1950000174518,-0.06929079086800619 +266240,1331.2000000174519,-0.06929077457749512 +266241,1331.205000017452,-0.06929075828662165 +266242,1331.210000017452,-0.06929074199538585 +266243,1331.2150000174522,-0.0692907257037877 +266244,1331.2200000174523,-0.06929070941182727 +266245,1331.2250000174524,-0.06929069311950456 +266246,1331.2300000174525,-0.0692906768268196 +266247,1331.2350000174526,-0.0692906605337724 +266248,1331.2400000174528,-0.06929064424036303 +266249,1331.2450000174529,-0.0692906279465915 +266250,1331.250000017453,-0.0692906116524578 +266251,1331.255000017453,-0.069290595357962 +266252,1331.2600000174532,-0.06929057906310412 +266253,1331.2650000174533,-0.06929056276788419 +266254,1331.2700000174534,-0.0692905464723022 +266255,1331.2750000174535,-0.06929053017635824 +266256,1331.2800000174536,-0.06929051388005228 +266257,1331.2850000174537,-0.06929049758338436 +266258,1331.2900000174538,-0.06929048128635454 +266259,1331.295000017454,-0.06929046498896281 +266260,1331.300000017454,-0.06929044869120922 +266261,1331.3050000174542,-0.06929043239309378 +266262,1331.3100000174543,-0.06929041609461653 +266263,1331.3150000174544,-0.06929039979577749 +266264,1331.3200000174545,-0.0692903834965767 +266265,1331.3250000174546,-0.06929036719701416 +266266,1331.3300000174547,-0.06929035089708993 +266267,1331.3350000174548,-0.069290334596804 +266268,1331.340000017455,-0.06929031829615644 +266269,1331.345000017455,-0.06929030199514723 +266270,1331.3500000174552,-0.06929028569377645 +266271,1331.3550000174553,-0.06929026939204408 +266272,1331.3600000174554,-0.06929025308995017 +266273,1331.3650000174555,-0.06929023678749476 +266274,1331.3700000174556,-0.06929022048467784 +266275,1331.3750000174557,-0.06929020418149945 +266276,1331.3800000174558,-0.06929018787795964 +266277,1331.385000017456,-0.06929017157405842 +266278,1331.390000017456,-0.06929015526979582 +266279,1331.3950000174561,-0.06929013896517186 +266280,1331.4000000174563,-0.06929012266018657 +266281,1331.4050000174564,-0.06929010635483998 +266282,1331.4100000174565,-0.06929009004913211 +266283,1331.4150000174566,-0.06929007374306301 +266284,1331.4200000174567,-0.06929005743663268 +266285,1331.4250000174568,-0.06929004112984116 +266286,1331.430000017457,-0.06929002482268848 +266287,1331.435000017457,-0.06929000851517467 +266288,1331.4400000174571,-0.06928999220729973 +266289,1331.4450000174572,-0.06928997589906372 +266290,1331.4500000174573,-0.06928995959046665 +266291,1331.4550000174575,-0.06928994328150856 +266292,1331.4600000174576,-0.06928992697218946 +266293,1331.4650000174577,-0.06928991066250938 +266294,1331.4700000174578,-0.06928989435246834 +266295,1331.475000017458,-0.06928987804206639 +266296,1331.480000017458,-0.06928986173130355 +266297,1331.485000017458,-0.06928984542017984 +266298,1331.4900000174582,-0.06928982910869529 +266299,1331.4950000174583,-0.06928981279684993 +266300,1331.5000000174584,-0.06928979648464378 +266301,1331.5050000174585,-0.06928978017207688 +266302,1331.5100000174587,-0.06928976385914923 +266303,1331.5150000174588,-0.0692897475458609 +266304,1331.5200000174589,-0.06928973123221188 +266305,1331.525000017459,-0.06928971491820221 +266306,1331.530000017459,-0.06928969860383191 +266307,1331.5350000174592,-0.06928968228910103 +266308,1331.5400000174593,-0.06928966597400957 +266309,1331.5450000174594,-0.06928964965855756 +266310,1331.5500000174595,-0.06928963334274504 +266311,1331.5550000174596,-0.06928961702657205 +266312,1331.5600000174597,-0.06928960071003859 +266313,1331.5650000174599,-0.0692895843931447 +266314,1331.57000001746,-0.06928956807589039 +266315,1331.57500001746,-0.06928955175827571 +266316,1331.5800000174602,-0.06928953544030067 +266317,1331.5850000174603,-0.06928951912196532 +266318,1331.5900000174604,-0.06928950280326966 +266319,1331.5950000174605,-0.06928948648421372 +266320,1331.6000000174606,-0.06928947016479756 +266321,1331.6050000174607,-0.06928945384502117 +266322,1331.6100000174608,-0.06928943752488458 +266323,1331.615000017461,-0.06928942120438784 +266324,1331.620000017461,-0.06928940488353096 +266325,1331.6250000174612,-0.06928938856231397 +266326,1331.6300000174613,-0.06928937224073689 +266327,1331.6350000174614,-0.06928935591879977 +266328,1331.6400000174615,-0.06928933959650262 +266329,1331.6450000174616,-0.06928932327384547 +266330,1331.6500000174617,-0.06928930695082836 +266331,1331.6550000174618,-0.06928929062745127 +266332,1331.660000017462,-0.0692892743037143 +266333,1331.665000017462,-0.06928925797961742 +266334,1331.6700000174621,-0.06928924165516066 +266335,1331.6750000174623,-0.06928922533034408 +266336,1331.6800000174624,-0.06928920900516769 +266337,1331.6850000174625,-0.06928919267963152 +266338,1331.6900000174626,-0.06928917635373559 +266339,1331.6950000174627,-0.06928916002747992 +266340,1331.7000000174628,-0.06928914370086456 +266341,1331.705000017463,-0.06928912737388951 +266342,1331.710000017463,-0.06928911104655483 +266343,1331.7150000174631,-0.06928909471886051 +266344,1331.7200000174632,-0.06928907839080661 +266345,1331.7250000174633,-0.06928906206239314 +266346,1331.7300000174635,-0.06928904573362014 +266347,1331.7350000174636,-0.06928902940448763 +266348,1331.7400000174637,-0.06928901307499562 +266349,1331.7450000174638,-0.06928899674514416 +266350,1331.750000017464,-0.06928898041493327 +266351,1331.755000017464,-0.06928896408436296 +266352,1331.760000017464,-0.06928894775343329 +266353,1331.7650000174642,-0.06928893142214428 +266354,1331.7700000174643,-0.06928891509049592 +266355,1331.7750000174644,-0.06928889875848827 +266356,1331.7800000174645,-0.06928888242612136 +266357,1331.7850000174647,-0.06928886609339521 +266358,1331.7900000174648,-0.06928884976030984 +266359,1331.7950000174649,-0.0692888334268653 +266360,1331.800000017465,-0.06928881709306159 +266361,1331.805000017465,-0.06928880075889873 +266362,1331.8100000174652,-0.06928878442437679 +266363,1331.8150000174653,-0.06928876808949576 +266364,1331.8200000174654,-0.06928875175425567 +266365,1331.8250000174655,-0.06928873541865656 +266366,1331.8300000174656,-0.06928871908269844 +266367,1331.8350000174657,-0.06928870274638138 +266368,1331.8400000174659,-0.06928868640970537 +266369,1331.845000017466,-0.06928867007267044 +266370,1331.850000017466,-0.06928865373527661 +266371,1331.8550000174662,-0.06928863739752393 +266372,1331.8600000174663,-0.06928862105941241 +266373,1331.8650000174664,-0.06928860472094207 +266374,1331.8700000174665,-0.06928858838211296 +266375,1331.8750000174666,-0.0692885720429251 +266376,1331.8800000174667,-0.06928855570337851 +266377,1331.8850000174668,-0.06928853936347322 +266378,1331.890000017467,-0.06928852302320927 +266379,1331.895000017467,-0.06928850668258665 +266380,1331.9000000174672,-0.06928849034160545 +266381,1331.9050000174673,-0.06928847400026562 +266382,1331.9100000174674,-0.06928845765856725 +266383,1331.9150000174675,-0.06928844131651035 +266384,1331.9200000174676,-0.06928842497409493 +266385,1331.9250000174677,-0.06928840863132102 +266386,1331.9300000174678,-0.06928839228818866 +266387,1331.935000017468,-0.06928837594469787 +266388,1331.940000017468,-0.0692883596008487 +266389,1331.9450000174681,-0.06928834325664113 +266390,1331.9500000174683,-0.06928832691207522 +266391,1331.9550000174684,-0.06928831056715098 +266392,1331.9600000174685,-0.06928829422186847 +266393,1331.9650000174686,-0.06928827787622768 +266394,1331.9700000174687,-0.06928826153022866 +266395,1331.9750000174688,-0.06928824518387143 +266396,1331.980000017469,-0.06928822883715602 +266397,1331.985000017469,-0.06928821249008243 +266398,1331.9900000174691,-0.06928819614265072 +266399,1331.9950000174692,-0.0692881797948609 +266400,1332.0000000174693,-0.06928816344671303 +266401,1332.0050000174695,-0.06928814709820709 +266402,1332.0100000174696,-0.06928813074934315 +266403,1332.0150000174697,-0.06928811440012118 +266404,1332.0200000174698,-0.06928809805054129 +266405,1332.02500001747,-0.06928808170060342 +266406,1332.03000001747,-0.06928806535030767 +266407,1332.03500001747,-0.06928804899965402 +266408,1332.0400000174702,-0.0692880326486425 +266409,1332.0450000174703,-0.06928801629727316 +266410,1332.0500000174704,-0.06928799994554602 +266411,1332.0550000174705,-0.0692879835934611 +266412,1332.0600000174707,-0.06928796724101842 +266413,1332.0650000174708,-0.06928795088821803 +266414,1332.0700000174709,-0.06928793453505994 +266415,1332.075000017471,-0.06928791818154417 +266416,1332.080000017471,-0.06928790182767076 +266417,1332.0850000174712,-0.06928788547343974 +266418,1332.0900000174713,-0.06928786911885115 +266419,1332.0950000174714,-0.06928785276390498 +266420,1332.1000000174715,-0.06928783640860128 +266421,1332.1050000174716,-0.06928782005294008 +266422,1332.1100000174717,-0.0692878036969214 +266423,1332.1150000174719,-0.06928778734054526 +266424,1332.120000017472,-0.06928777098381171 +266425,1332.125000017472,-0.06928775462672075 +266426,1332.1300000174722,-0.06928773826927244 +266427,1332.1350000174723,-0.06928772191146677 +266428,1332.1400000174724,-0.0692877055533038 +266429,1332.1450000174725,-0.06928768919478352 +266430,1332.1500000174726,-0.06928767283590599 +266431,1332.1550000174727,-0.06928765647667123 +266432,1332.1600000174728,-0.06928764011707925 +266433,1332.165000017473,-0.06928762375713009 +266434,1332.170000017473,-0.06928760739682378 +266435,1332.1750000174732,-0.06928759103616035 +266436,1332.1800000174733,-0.06928757467513982 +266437,1332.1850000174734,-0.06928755831376222 +266438,1332.1900000174735,-0.06928754195202756 +266439,1332.1950000174736,-0.0692875255899359 +266440,1332.2000000174737,-0.06928750922748723 +266441,1332.2050000174738,-0.06928749286468161 +266442,1332.210000017474,-0.06928747650151905 +266443,1332.215000017474,-0.06928746013799959 +266444,1332.2200000174741,-0.06928744377412324 +266445,1332.2250000174743,-0.06928742740989005 +266446,1332.2300000174744,-0.06928741104530002 +266447,1332.2350000174745,-0.06928739468035319 +266448,1332.2400000174746,-0.0692873783150496 +266449,1332.2450000174747,-0.06928736194938925 +266450,1332.2500000174748,-0.06928734558337218 +266451,1332.255000017475,-0.06928732921699843 +266452,1332.260000017475,-0.06928731285026801 +266453,1332.2650000174751,-0.06928729648318095 +266454,1332.2700000174752,-0.06928728011573729 +266455,1332.2750000174753,-0.06928726374793703 +266456,1332.2800000174755,-0.06928724737978023 +266457,1332.2850000174756,-0.06928723101126688 +266458,1332.2900000174757,-0.06928721464239705 +266459,1332.2950000174758,-0.06928719827317073 +266460,1332.300000017476,-0.06928718190358797 +266461,1332.305000017476,-0.06928716553364879 +266462,1332.310000017476,-0.06928714916335323 +266463,1332.3150000174762,-0.06928713279270128 +266464,1332.3200000174763,-0.069287116421693 +266465,1332.3250000174764,-0.06928710005032841 +266466,1332.3300000174766,-0.06928708367860753 +266467,1332.3350000174767,-0.0692870673065304 +266468,1332.3400000174768,-0.06928705093409704 +266469,1332.3450000174769,-0.06928703456130748 +266470,1332.350000017477,-0.06928701818816174 +266471,1332.355000017477,-0.06928700181465984 +266472,1332.3600000174772,-0.06928698544080183 +266473,1332.3650000174773,-0.06928696906658773 +266474,1332.3700000174774,-0.06928695269201755 +266475,1332.3750000174775,-0.06928693631709133 +266476,1332.3800000174776,-0.0692869199418091 +266477,1332.3850000174778,-0.0692869035661709 +266478,1332.3900000174779,-0.06928688719017673 +266479,1332.395000017478,-0.06928687081382663 +266480,1332.400000017478,-0.06928685443712063 +266481,1332.4050000174782,-0.06928683806005874 +266482,1332.4100000174783,-0.06928682168264101 +266483,1332.4150000174784,-0.06928680530486746 +266484,1332.4200000174785,-0.06928678892673812 +266485,1332.4250000174786,-0.069286772548253 +266486,1332.4300000174787,-0.06928675616941214 +266487,1332.4350000174788,-0.06928673979021556 +266488,1332.440000017479,-0.0692867234106633 +266489,1332.445000017479,-0.06928670703075539 +266490,1332.4500000174792,-0.06928669065049183 +266491,1332.4550000174793,-0.06928667426987266 +266492,1332.4600000174794,-0.06928665788889792 +266493,1332.4650000174795,-0.06928664150756764 +266494,1332.4700000174796,-0.06928662512588182 +266495,1332.4750000174797,-0.06928660874384052 +266496,1332.4800000174798,-0.06928659236144374 +266497,1332.48500001748,-0.06928657597869152 +266498,1332.49000001748,-0.06928655959558389 +266499,1332.4950000174802,-0.06928654321212087 +266500,1332.5000000174803,-0.06928652682830247 +266501,1332.5050000174804,-0.06928651044412876 +266502,1332.5100000174805,-0.06928649405959973 +266503,1332.5150000174806,-0.06928647767471544 +266504,1332.5200000174807,-0.06928646128947587 +266505,1332.5250000174808,-0.0692864449038811 +266506,1332.530000017481,-0.06928642851793111 +266507,1332.535000017481,-0.06928641213162597 +266508,1332.5400000174811,-0.06928639574496567 +266509,1332.5450000174812,-0.06928637935795026 +266510,1332.5500000174814,-0.06928636297057977 +266511,1332.5550000174815,-0.06928634658285421 +266512,1332.5600000174816,-0.06928633019477361 +266513,1332.5650000174817,-0.06928631380633801 +266514,1332.5700000174818,-0.06928629741754744 +266515,1332.575000017482,-0.06928628102840188 +266516,1332.580000017482,-0.06928626463890143 +266517,1332.5850000174821,-0.06928624824904607 +266518,1332.5900000174822,-0.06928623185883584 +266519,1332.5950000174823,-0.06928621546827075 +266520,1332.6000000174824,-0.06928619907735085 +266521,1332.6050000174826,-0.06928618268607617 +266522,1332.6100000174827,-0.06928616629444673 +266523,1332.6150000174828,-0.06928614990246254 +266524,1332.6200000174829,-0.06928613351012365 +266525,1332.625000017483,-0.06928611711743009 +266526,1332.630000017483,-0.06928610072438185 +266527,1332.6350000174832,-0.06928608433097899 +266528,1332.6400000174833,-0.06928606793722154 +266529,1332.6450000174834,-0.06928605154310952 +266530,1332.6500000174835,-0.06928603514864295 +266531,1332.6550000174836,-0.06928601875382187 +266532,1332.6600000174838,-0.06928600235864629 +266533,1332.6650000174839,-0.06928598596311625 +266534,1332.670000017484,-0.06928596956723176 +266535,1332.675000017484,-0.06928595317099287 +266536,1332.6800000174842,-0.0692859367743996 +266537,1332.6850000174843,-0.06928592037745197 +266538,1332.6900000174844,-0.06928590398015001 +266539,1332.6950000174845,-0.06928588758249375 +266540,1332.7000000174846,-0.06928587118448323 +266541,1332.7050000174847,-0.06928585478611846 +266542,1332.7100000174848,-0.06928583838739945 +266543,1332.715000017485,-0.06928582198832627 +266544,1332.720000017485,-0.06928580558889891 +266545,1332.7250000174852,-0.06928578918911743 +266546,1332.7300000174853,-0.06928577278898183 +266547,1332.7350000174854,-0.06928575638849215 +266548,1332.7400000174855,-0.06928573998764842 +266549,1332.7450000174856,-0.06928572358645065 +266550,1332.7500000174857,-0.06928570718489888 +266551,1332.7550000174858,-0.06928569078299313 +266552,1332.760000017486,-0.06928567438073344 +266553,1332.765000017486,-0.06928565797811984 +266554,1332.7700000174862,-0.06928564157515232 +266555,1332.7750000174863,-0.06928562517183096 +266556,1332.7800000174864,-0.06928560876815576 +266557,1332.7850000174865,-0.06928559236412675 +266558,1332.7900000174866,-0.06928557595974394 +266559,1332.7950000174867,-0.06928555955500738 +266560,1332.8000000174868,-0.06928554314991708 +266561,1332.805000017487,-0.06928552674447311 +266562,1332.810000017487,-0.06928551033867544 +266563,1332.8150000174871,-0.06928549393252412 +266564,1332.8200000174872,-0.0692854775260192 +266565,1332.8250000174874,-0.06928546111916067 +266566,1332.8300000174875,-0.06928544471194859 +266567,1332.8350000174876,-0.06928542830438295 +266568,1332.8400000174877,-0.0692854118964638 +266569,1332.8450000174878,-0.06928539548819117 +266570,1332.850000017488,-0.06928537907956508 +266571,1332.855000017488,-0.06928536267058558 +266572,1332.8600000174881,-0.06928534626125266 +266573,1332.8650000174882,-0.06928532985156637 +266574,1332.8700000174883,-0.06928531344152673 +266575,1332.8750000174884,-0.06928529703113377 +266576,1332.8800000174886,-0.06928528062038751 +266577,1332.8850000174887,-0.06928526420928799 +266578,1332.8900000174888,-0.06928524779783522 +266579,1332.8950000174889,-0.06928523138602925 +266580,1332.900000017489,-0.0692852149738701 +266581,1332.905000017489,-0.06928519856135777 +266582,1332.9100000174892,-0.06928518214849233 +266583,1332.9150000174893,-0.06928516573527378 +266584,1332.9200000174894,-0.06928514932170216 +266585,1332.9250000174895,-0.06928513290777746 +266586,1332.9300000174896,-0.06928511649349978 +266587,1332.9350000174898,-0.06928510007886908 +266588,1332.9400000174899,-0.06928508366388542 +266589,1332.94500001749,-0.06928506724854881 +266590,1332.95000001749,-0.0692850508328593 +266591,1332.9550000174902,-0.0692850344168169 +266592,1332.9600000174903,-0.06928501800042164 +266593,1332.9650000174904,-0.06928500158367357 +266594,1332.9700000174905,-0.06928498516657267 +266595,1332.9750000174906,-0.069284968749119 +266596,1332.9800000174907,-0.06928495233131259 +266597,1332.9850000174908,-0.06928493591315345 +266598,1332.990000017491,-0.06928491949464162 +266599,1332.995000017491,-0.06928490307577712 +266600,1333.0000000174912,-0.06928488665655996 +266601,1333.0050000174913,-0.0692848702369902 +266602,1333.0100000174914,-0.06928485381706785 +266603,1333.0150000174915,-0.06928483739679295 +266604,1333.0200000174916,-0.06928482097616552 +266605,1333.0250000174917,-0.06928480455518558 +266606,1333.0300000174918,-0.06928478813385316 +266607,1333.035000017492,-0.0692847717121683 +266608,1333.040000017492,-0.06928475529013102 +266609,1333.0450000174922,-0.06928473886774134 +266610,1333.0500000174923,-0.0692847224449993 +266611,1333.0550000174924,-0.0692847060219049 +266612,1333.0600000174925,-0.0692846895984582 +266613,1333.0650000174926,-0.06928467317465921 +266614,1333.0700000174927,-0.06928465675050796 +266615,1333.0750000174928,-0.06928464032600448 +266616,1333.080000017493,-0.0692846239011488 +266617,1333.085000017493,-0.06928460747594094 +266618,1333.0900000174931,-0.06928459105038093 +266619,1333.0950000174932,-0.06928457462446878 +266620,1333.1000000174934,-0.06928455819820456 +266621,1333.1050000174935,-0.06928454177158827 +266622,1333.1100000174936,-0.06928452534461993 +266623,1333.1150000174937,-0.06928450891729958 +266624,1333.1200000174938,-0.06928449248962724 +266625,1333.125000017494,-0.06928447606160294 +266626,1333.130000017494,-0.06928445963322671 +266627,1333.1350000174941,-0.06928444320449859 +266628,1333.1400000174942,-0.06928442677541857 +266629,1333.1450000174943,-0.0692844103459867 +266630,1333.1500000174944,-0.06928439391620302 +266631,1333.1550000174946,-0.06928437748606753 +266632,1333.1600000174947,-0.06928436105558028 +266633,1333.1650000174948,-0.06928434462474128 +266634,1333.1700000174949,-0.06928432819355058 +266635,1333.175000017495,-0.0692843117620082 +266636,1333.180000017495,-0.06928429533011414 +266637,1333.1850000174952,-0.06928427889786845 +266638,1333.1900000174953,-0.06928426246527115 +266639,1333.1950000174954,-0.06928424603232229 +266640,1333.2000000174955,-0.06928422959902188 +266641,1333.2050000174956,-0.06928421316536994 +266642,1333.2100000174958,-0.06928419673136649 +266643,1333.2150000174959,-0.06928418029701158 +266644,1333.220000017496,-0.06928416386230525 +266645,1333.225000017496,-0.06928414742724749 +266646,1333.2300000174962,-0.06928413099183835 +266647,1333.2350000174963,-0.06928411455607784 +266648,1333.2400000174964,-0.06928409811996601 +266649,1333.2450000174965,-0.06928408168350286 +266650,1333.2500000174966,-0.06928406524668844 +266651,1333.2550000174967,-0.06928404880952277 +266652,1333.2600000174968,-0.06928403237200588 +266653,1333.265000017497,-0.06928401593413779 +266654,1333.270000017497,-0.06928399949591853 +266655,1333.2750000174972,-0.06928398305734812 +266656,1333.2800000174973,-0.0692839666184266 +266657,1333.2850000174974,-0.06928395017915401 +266658,1333.2900000174975,-0.06928393373953035 +266659,1333.2950000174976,-0.06928391729955566 +266660,1333.3000000174977,-0.06928390085922996 +266661,1333.3050000174978,-0.0692838844185533 +266662,1333.310000017498,-0.06928386797752566 +266663,1333.315000017498,-0.0692838515361471 +266664,1333.3200000174982,-0.06928383509441767 +266665,1333.3250000174983,-0.06928381865233736 +266666,1333.3300000174984,-0.06928380220990621 +266667,1333.3350000174985,-0.06928378576712424 +266668,1333.3400000174986,-0.0692837693239915 +266669,1333.3450000174987,-0.06928375288050798 +266670,1333.3500000174988,-0.06928373643667374 +266671,1333.355000017499,-0.06928371999248878 +266672,1333.360000017499,-0.06928370354795316 +266673,1333.3650000174991,-0.06928368710306688 +266674,1333.3700000174993,-0.06928367065782999 +266675,1333.3750000174994,-0.0692836542122425 +266676,1333.3800000174995,-0.06928363776630445 +266677,1333.3850000174996,-0.06928362132001582 +266678,1333.3900000174997,-0.0692836048733767 +266679,1333.3950000174998,-0.0692835884263871 +266680,1333.4000000175,-0.06928357197904704 +266681,1333.4050000175,-0.06928355553135654 +266682,1333.4100000175001,-0.06928353908331565 +266683,1333.4150000175002,-0.06928352263492436 +266684,1333.4200000175003,-0.06928350618618274 +266685,1333.4250000175005,-0.06928348973709081 +266686,1333.4300000175006,-0.06928347328764857 +266687,1333.4350000175007,-0.06928345683785606 +266688,1333.4400000175008,-0.0692834403877133 +266689,1333.445000017501,-0.06928342393722034 +266690,1333.450000017501,-0.0692834074863772 +266691,1333.455000017501,-0.06928339103518388 +266692,1333.4600000175012,-0.06928337458364044 +266693,1333.4650000175013,-0.0692833581317469 +266694,1333.4700000175014,-0.06928334167950327 +266695,1333.4750000175015,-0.0692833252269096 +266696,1333.4800000175017,-0.06928330877396591 +266697,1333.4850000175018,-0.06928329232067222 +266698,1333.4900000175019,-0.06928327586702857 +266699,1333.495000017502,-0.06928325941303497 +266700,1333.500000017502,-0.06928324295869147 +266701,1333.5050000175022,-0.06928322650399807 +266702,1333.5100000175023,-0.06928321004895481 +266703,1333.5150000175024,-0.06928319359356173 +266704,1333.5200000175025,-0.06928317713781884 +266705,1333.5250000175026,-0.06928316068172617 +266706,1333.5300000175027,-0.06928314422528377 +266707,1333.5350000175029,-0.06928312776849163 +266708,1333.540000017503,-0.0692831113113498 +266709,1333.545000017503,-0.0692830948538583 +266710,1333.5500000175032,-0.06928307839601718 +266711,1333.5550000175033,-0.06928306193782643 +266712,1333.5600000175034,-0.0692830454792861 +266713,1333.5650000175035,-0.06928302902039621 +266714,1333.5700000175036,-0.06928301256115679 +266715,1333.5750000175037,-0.06928299610156788 +266716,1333.5800000175038,-0.06928297964162948 +266717,1333.585000017504,-0.06928296318134163 +266718,1333.590000017504,-0.06928294672070436 +266719,1333.5950000175042,-0.0692829302597177 +266720,1333.6000000175043,-0.06928291379838167 +266721,1333.6050000175044,-0.0692828973366963 +266722,1333.6100000175045,-0.06928288087466163 +266723,1333.6150000175046,-0.06928286441227766 +266724,1333.6200000175047,-0.06928284794954445 +266725,1333.6250000175048,-0.069282831486462 +266726,1333.630000017505,-0.06928281502303035 +266727,1333.635000017505,-0.06928279855924953 +266728,1333.6400000175051,-0.06928278209511955 +266729,1333.6450000175053,-0.06928276563064045 +266730,1333.6500000175054,-0.06928274916581226 +266731,1333.6550000175055,-0.06928273270063501 +266732,1333.6600000175056,-0.06928271623510872 +266733,1333.6650000175057,-0.06928269976923342 +266734,1333.6700000175058,-0.06928268330300914 +266735,1333.675000017506,-0.0692826668364359 +266736,1333.680000017506,-0.06928265036951371 +266737,1333.6850000175061,-0.06928263390224265 +266738,1333.6900000175062,-0.0692826174346227 +266739,1333.6950000175063,-0.06928260096665392 +266740,1333.7000000175065,-0.06928258449833631 +266741,1333.7050000175066,-0.06928256802966991 +266742,1333.7100000175067,-0.06928255156065474 +266743,1333.7150000175068,-0.06928253509129083 +266744,1333.720000017507,-0.0692825186215782 +266745,1333.725000017507,-0.0692825021515169 +266746,1333.730000017507,-0.06928248568110695 +266747,1333.7350000175072,-0.06928246921034836 +266748,1333.7400000175073,-0.06928245273924118 +266749,1333.7450000175074,-0.06928243626778544 +266750,1333.7500000175075,-0.06928241979598113 +266751,1333.7550000175077,-0.0692824033238283 +266752,1333.7600000175078,-0.069282386851327 +266753,1333.7650000175079,-0.06928237037847722 +266754,1333.770000017508,-0.069282353905279 +266755,1333.775000017508,-0.06928233743173237 +266756,1333.7800000175082,-0.06928232095783737 +266757,1333.7850000175083,-0.06928230448359401 +266758,1333.7900000175084,-0.06928228800900232 +266759,1333.7950000175085,-0.06928227153406234 +266760,1333.8000000175086,-0.06928225505877408 +266761,1333.8050000175087,-0.06928223858313759 +266762,1333.8100000175089,-0.06928222210715286 +266763,1333.815000017509,-0.06928220563081995 +266764,1333.820000017509,-0.06928218915413888 +266765,1333.8250000175092,-0.06928217267710968 +266766,1333.8300000175093,-0.06928215619973235 +266767,1333.8350000175094,-0.06928213972200696 +266768,1333.8400000175095,-0.06928212324393351 +266769,1333.8450000175096,-0.06928210676551204 +266770,1333.8500000175097,-0.06928209028674256 +266771,1333.8550000175098,-0.0692820738076251 +266772,1333.86000001751,-0.06928205732815973 +266773,1333.86500001751,-0.06928204084834641 +266774,1333.8700000175102,-0.06928202436818522 +266775,1333.8750000175103,-0.06928200788767616 +266776,1333.8800000175104,-0.06928199140681927 +266777,1333.8850000175105,-0.06928197492561458 +266778,1333.8900000175106,-0.0692819584440621 +266779,1333.8950000175107,-0.06928194196216186 +266780,1333.9000000175108,-0.06928192547991391 +266781,1333.905000017511,-0.06928190899731826 +266782,1333.910000017511,-0.06928189251437493 +266783,1333.9150000175111,-0.06928187603108397 +266784,1333.9200000175113,-0.0692818595474454 +266785,1333.9250000175114,-0.06928184306345922 +266786,1333.9300000175115,-0.06928182657912549 +266787,1333.9350000175116,-0.06928181009444424 +266788,1333.9400000175117,-0.06928179360941547 +266789,1333.9450000175118,-0.06928177712403923 +266790,1333.950000017512,-0.06928176063831554 +266791,1333.955000017512,-0.06928174415224442 +266792,1333.9600000175121,-0.0692817276658259 +266793,1333.9650000175122,-0.06928171117906001 +266794,1333.9700000175123,-0.06928169469194678 +266795,1333.9750000175125,-0.06928167820448625 +266796,1333.9800000175126,-0.06928166171667842 +266797,1333.9850000175127,-0.06928164522852333 +266798,1333.9900000175128,-0.06928162874002101 +266799,1333.995000017513,-0.0692816122511715 +266800,1334.000000017513,-0.06928159576197482 +266801,1334.005000017513,-0.06928157927243098 +266802,1334.0100000175132,-0.06928156278254001 +266803,1334.0150000175133,-0.06928154629230196 +266804,1334.0200000175134,-0.06928152980171683 +266805,1334.0250000175135,-0.06928151331078466 +266806,1334.0300000175137,-0.06928149681950548 +266807,1334.0350000175138,-0.06928148032787931 +266808,1334.0400000175139,-0.06928146383590618 +266809,1334.045000017514,-0.06928144734358613 +266810,1334.050000017514,-0.06928143085091916 +266811,1334.0550000175142,-0.06928141435790533 +266812,1334.0600000175143,-0.06928139786454467 +266813,1334.0650000175144,-0.06928138137083717 +266814,1334.0700000175145,-0.06928136487678288 +266815,1334.0750000175146,-0.06928134838238183 +266816,1334.0800000175147,-0.06928133188763402 +266817,1334.0850000175149,-0.06928131539253952 +266818,1334.090000017515,-0.06928129889709835 +266819,1334.095000017515,-0.0692812824013105 +266820,1334.1000000175152,-0.06928126590517601 +266821,1334.1050000175153,-0.06928124940869494 +266822,1334.1100000175154,-0.0692812329118673 +266823,1334.1150000175155,-0.06928121641469312 +266824,1334.1200000175156,-0.06928119991717241 +266825,1334.1250000175157,-0.0692811834193052 +266826,1334.1300000175158,-0.06928116692109153 +266827,1334.135000017516,-0.06928115042253143 +266828,1334.140000017516,-0.06928113392362492 +266829,1334.1450000175162,-0.06928111742437203 +266830,1334.1500000175163,-0.06928110092477278 +266831,1334.1550000175164,-0.06928108442482721 +266832,1334.1600000175165,-0.06928106792453534 +266833,1334.1650000175166,-0.06928105142389719 +266834,1334.1700000175167,-0.06928103492291281 +266835,1334.1750000175168,-0.0692810184215822 +266836,1334.180000017517,-0.06928100191990541 +266837,1334.185000017517,-0.06928098541788245 +266838,1334.1900000175171,-0.06928096891551336 +266839,1334.1950000175173,-0.06928095241279816 +266840,1334.2000000175174,-0.06928093590973688 +266841,1334.2050000175175,-0.06928091940632955 +266842,1334.2100000175176,-0.06928090290257619 +266843,1334.2150000175177,-0.06928088639847683 +266844,1334.2200000175178,-0.06928086989403151 +266845,1334.225000017518,-0.06928085338924025 +266846,1334.230000017518,-0.06928083688410307 +266847,1334.2350000175181,-0.06928082037862 +266848,1334.2400000175182,-0.06928080387279108 +266849,1334.2450000175184,-0.06928078736661633 +266850,1334.2500000175185,-0.06928077086009576 +266851,1334.2550000175186,-0.06928075435322942 +266852,1334.2600000175187,-0.06928073784601732 +266853,1334.2650000175188,-0.0692807213384595 +266854,1334.270000017519,-0.069280704830556 +266855,1334.275000017519,-0.06928068832230681 +266856,1334.2800000175191,-0.06928067181371199 +266857,1334.2850000175192,-0.06928065530477155 +266858,1334.2900000175193,-0.06928063879548554 +266859,1334.2950000175194,-0.06928062228585397 +266860,1334.3000000175196,-0.06928060577587687 +266861,1334.3050000175197,-0.06928058926555426 +266862,1334.3100000175198,-0.06928057275488617 +266863,1334.3150000175199,-0.06928055624387264 +266864,1334.32000001752,-0.06928053973251369 +266865,1334.32500001752,-0.06928052322080934 +266866,1334.3300000175202,-0.06928050670875963 +266867,1334.3350000175203,-0.06928049019636458 +266868,1334.3400000175204,-0.06928047368362422 +266869,1334.3450000175205,-0.06928045717053859 +266870,1334.3500000175206,-0.06928044065710769 +266871,1334.3550000175208,-0.06928042414333156 +266872,1334.3600000175209,-0.06928040762921023 +266873,1334.365000017521,-0.06928039111474374 +266874,1334.370000017521,-0.0692803745999321 +266875,1334.3750000175212,-0.06928035808477533 +266876,1334.3800000175213,-0.06928034156927347 +266877,1334.3850000175214,-0.06928032505342656 +266878,1334.3900000175215,-0.0692803085372346 +266879,1334.3950000175216,-0.06928029202069765 +266880,1334.4000000175217,-0.0692802755038157 +266881,1334.4050000175218,-0.06928025898658881 +266882,1334.410000017522,-0.06928024246901698 +266883,1334.415000017522,-0.06928022595110027 +266884,1334.4200000175222,-0.06928020943283868 +266885,1334.4250000175223,-0.06928019291423224 +266886,1334.4300000175224,-0.06928017639528097 +266887,1334.4350000175225,-0.06928015987598493 +266888,1334.4400000175226,-0.06928014335634414 +266889,1334.4450000175227,-0.0692801268363586 +266890,1334.4500000175228,-0.06928011031602838 +266891,1334.455000017523,-0.06928009379535345 +266892,1334.460000017523,-0.06928007727433388 +266893,1334.4650000175232,-0.06928006075296969 +266894,1334.4700000175233,-0.0692800442312609 +266895,1334.4750000175234,-0.06928002770920755 +266896,1334.4800000175235,-0.06928001118680964 +266897,1334.4850000175236,-0.06927999466406723 +266898,1334.4900000175237,-0.06927997814098033 +266899,1334.4950000175238,-0.06927996161754899 +266900,1334.500000017524,-0.0692799450937732 +266901,1334.505000017524,-0.06927992856965301 +266902,1334.5100000175241,-0.06927991204518844 +266903,1334.5150000175242,-0.06927989552037953 +266904,1334.5200000175244,-0.06927987899522628 +266905,1334.5250000175245,-0.06927986246972875 +266906,1334.5300000175246,-0.06927984594388696 +266907,1334.5350000175247,-0.06927982941770093 +266908,1334.5400000175248,-0.06927981289117068 +266909,1334.545000017525,-0.06927979636429625 +266910,1334.550000017525,-0.06927977983707767 +266911,1334.5550000175251,-0.06927976330951496 +266912,1334.5600000175252,-0.06927974678160816 +266913,1334.5650000175253,-0.06927973025335728 +266914,1334.5700000175254,-0.06927971372476234 +266915,1334.5750000175256,-0.0692796971958234 +266916,1334.5800000175257,-0.06927968066654046 +266917,1334.5850000175258,-0.06927966413691355 +266918,1334.5900000175259,-0.06927964760694272 +266919,1334.595000017526,-0.06927963107662798 +266920,1334.600000017526,-0.06927961454596936 +266921,1334.6050000175262,-0.06927959801496689 +266922,1334.6100000175263,-0.06927958148362058 +266923,1334.6150000175264,-0.06927956495193047 +266924,1334.6200000175265,-0.0692795484198966 +266925,1334.6250000175266,-0.06927953188751898 +266926,1334.6300000175268,-0.06927951535479765 +266927,1334.6350000175269,-0.06927949882173264 +266928,1334.640000017527,-0.06927948228832397 +266929,1334.645000017527,-0.06927946575457165 +266930,1334.6500000175272,-0.06927944922047573 +266931,1334.6550000175273,-0.06927943268603623 +266932,1334.6600000175274,-0.06927941615125319 +266933,1334.6650000175275,-0.06927939961612663 +266934,1334.6700000175276,-0.06927938308065658 +266935,1334.6750000175277,-0.06927936654484304 +266936,1334.6800000175278,-0.06927935000868608 +266937,1334.685000017528,-0.0692793334721857 +266938,1334.690000017528,-0.06927931693534194 +266939,1334.6950000175282,-0.06927930039815482 +266940,1334.7000000175283,-0.06927928386062437 +266941,1334.7050000175284,-0.06927926732275062 +266942,1334.7100000175285,-0.0692792507845336 +266943,1334.7150000175286,-0.06927923424597333 +266944,1334.7200000175287,-0.06927921770706984 +266945,1334.7250000175288,-0.06927920116782314 +266946,1334.730000017529,-0.06927918462823329 +266947,1334.735000017529,-0.06927916808830031 +266948,1334.7400000175292,-0.06927915154802422 +266949,1334.7450000175293,-0.06927913500740504 +266950,1334.7500000175294,-0.06927911846644283 +266951,1334.7550000175295,-0.06927910192513757 +266952,1334.7600000175296,-0.06927908538348931 +266953,1334.7650000175297,-0.06927906884149809 +266954,1334.7700000175298,-0.06927905229916392 +266955,1334.77500001753,-0.06927903575648683 +266956,1334.78000001753,-0.06927901921346687 +266957,1334.7850000175301,-0.06927900267010403 +266958,1334.7900000175302,-0.06927898612639836 +266959,1334.7950000175304,-0.06927896958234989 +266960,1334.8000000175305,-0.06927895303795864 +266961,1334.8050000175306,-0.06927893649322465 +266962,1334.8100000175307,-0.06927891994814793 +266963,1334.8150000175308,-0.0692789034027285 +266964,1334.820000017531,-0.06927888685696641 +266965,1334.825000017531,-0.06927887031086168 +266966,1334.8300000175311,-0.06927885376441434 +266967,1334.8350000175312,-0.06927883721762441 +266968,1334.8400000175313,-0.06927882067049194 +266969,1334.8450000175314,-0.06927880412301693 +266970,1334.8500000175316,-0.06927878757519942 +266971,1334.8550000175317,-0.06927877102703943 +266972,1334.8600000175318,-0.069278754478537 +266973,1334.8650000175319,-0.06927873792969215 +266974,1334.870000017532,-0.06927872138050489 +266975,1334.875000017532,-0.06927870483097527 +266976,1334.8800000175322,-0.06927868828110333 +266977,1334.8850000175323,-0.06927867173088907 +266978,1334.8900000175324,-0.06927865518033254 +266979,1334.8950000175325,-0.06927863862943374 +266980,1334.9000000175326,-0.06927862207819273 +266981,1334.9050000175328,-0.06927860552660951 +266982,1334.9100000175329,-0.06927858897468413 +266983,1334.915000017533,-0.06927857242241658 +266984,1334.920000017533,-0.06927855586980694 +266985,1334.9250000175332,-0.06927853931685521 +266986,1334.9300000175333,-0.0692785227635614 +266987,1334.9350000175334,-0.06927850620992557 +266988,1334.9400000175335,-0.06927848965594774 +266989,1334.9450000175336,-0.06927847310162792 +266990,1334.9500000175337,-0.06927845654696616 +266991,1334.9550000175338,-0.06927843999196247 +266992,1334.960000017534,-0.06927842343661689 +266993,1334.965000017534,-0.06927840688092944 +266994,1334.9700000175342,-0.06927839032490014 +266995,1334.9750000175343,-0.06927837376852905 +266996,1334.9800000175344,-0.06927835721181616 +266997,1334.9850000175345,-0.06927834065476152 +266998,1334.9900000175346,-0.06927832409736515 +266999,1334.9950000175347,-0.06927830753962706 +267000,1335.0000000175348,-0.06927829098154732 +267001,1335.005000017535,-0.06927827442312592 +267002,1335.010000017535,-0.06927825786436291 +267003,1335.0150000175352,-0.06927824130525831 +267004,1335.0200000175353,-0.06927822474581213 +267005,1335.0250000175354,-0.06927820818602444 +267006,1335.0300000175355,-0.06927819162589523 +267007,1335.0350000175356,-0.06927817506542454 +267008,1335.0400000175357,-0.0692781585046124 +267009,1335.0450000175358,-0.06927814194345883 +267010,1335.050000017536,-0.06927812538196385 +267011,1335.055000017536,-0.06927810882012751 +267012,1335.0600000175361,-0.06927809225794984 +267013,1335.0650000175362,-0.06927807569543085 +267014,1335.0700000175364,-0.06927805913257057 +267015,1335.0750000175365,-0.06927804256936902 +267016,1335.0800000175366,-0.06927802600582625 +267017,1335.0850000175367,-0.06927800944194228 +267018,1335.0900000175368,-0.06927799287771713 +267019,1335.095000017537,-0.06927797631315082 +267020,1335.100000017537,-0.0692779597482434 +267021,1335.1050000175371,-0.06927794318299488 +267022,1335.1100000175372,-0.06927792661740528 +267023,1335.1150000175373,-0.06927791005147467 +267024,1335.1200000175374,-0.06927789348520302 +267025,1335.1250000175376,-0.06927787691859041 +267026,1335.1300000175377,-0.06927786035163683 +267027,1335.1350000175378,-0.06927784378434233 +267028,1335.140000017538,-0.06927782721670694 +267029,1335.145000017538,-0.06927781064873066 +267030,1335.150000017538,-0.06927779408041354 +267031,1335.1550000175382,-0.06927777751175562 +267032,1335.1600000175383,-0.0692777609427569 +267033,1335.1650000175384,-0.06927774437341742 +267034,1335.1700000175385,-0.06927772780373721 +267035,1335.1750000175387,-0.06927771123371629 +267036,1335.1800000175388,-0.06927769466335468 +267037,1335.1850000175389,-0.06927767809265242 +267038,1335.190000017539,-0.06927766152160955 +267039,1335.195000017539,-0.06927764495022608 +267040,1335.2000000175392,-0.06927762837850203 +267041,1335.2050000175393,-0.06927761180643745 +267042,1335.2100000175394,-0.06927759523403236 +267043,1335.2150000175395,-0.06927757866128678 +267044,1335.2200000175396,-0.06927756208820075 +267045,1335.2250000175397,-0.06927754551477429 +267046,1335.2300000175399,-0.06927752894100742 +267047,1335.23500001754,-0.06927751236690019 +267048,1335.24000001754,-0.0692774957924526 +267049,1335.2450000175402,-0.0692774792176647 +267050,1335.2500000175403,-0.0692774626425365 +267051,1335.2550000175404,-0.06927744606706802 +267052,1335.2600000175405,-0.06927742949125933 +267053,1335.2650000175406,-0.06927741291511041 +267054,1335.2700000175407,-0.06927739633862133 +267055,1335.2750000175408,-0.06927737976179209 +267056,1335.280000017541,-0.06927736318462273 +267057,1335.285000017541,-0.06927734660711328 +267058,1335.2900000175412,-0.06927733002926374 +267059,1335.2950000175413,-0.06927731345107417 +267060,1335.3000000175414,-0.06927729687254458 +267061,1335.3050000175415,-0.06927728029367501 +267062,1335.3100000175416,-0.06927726371446548 +267063,1335.3150000175417,-0.06927724713491601 +267064,1335.3200000175418,-0.06927723055502664 +267065,1335.325000017542,-0.0692772139747974 +267066,1335.330000017542,-0.06927719739422832 +267067,1335.3350000175421,-0.0692771808133194 +267068,1335.3400000175423,-0.0692771642320707 +267069,1335.3450000175424,-0.06927714765048223 +267070,1335.3500000175425,-0.06927713106855403 +267071,1335.3550000175426,-0.06927711448628611 +267072,1335.3600000175427,-0.06927709790367852 +267073,1335.3650000175428,-0.06927708132073125 +267074,1335.370000017543,-0.06927706473744438 +267075,1335.375000017543,-0.0692770481538179 +267076,1335.3800000175431,-0.06927703156985186 +267077,1335.3850000175432,-0.06927701498554628 +267078,1335.3900000175433,-0.06927699840090118 +267079,1335.3950000175435,-0.06927698181591659 +267080,1335.4000000175436,-0.06927696523059254 +267081,1335.4050000175437,-0.06927694864492905 +267082,1335.4100000175438,-0.06927693205892617 +267083,1335.415000017544,-0.06927691547258391 +267084,1335.420000017544,-0.0692768988859023 +267085,1335.425000017544,-0.06927688229888136 +267086,1335.4300000175442,-0.06927686571152114 +267087,1335.4350000175443,-0.06927684912382165 +267088,1335.4400000175444,-0.06927683253578291 +267089,1335.4450000175445,-0.06927681594740497 +267090,1335.4500000175447,-0.06927679935868786 +267091,1335.4550000175448,-0.06927678276963158 +267092,1335.4600000175449,-0.06927676618023618 +267093,1335.465000017545,-0.06927674959050169 +267094,1335.470000017545,-0.0692767330004281 +267095,1335.4750000175452,-0.06927671641001547 +267096,1335.4800000175453,-0.06927669981926382 +267097,1335.4850000175454,-0.0692766832281732 +267098,1335.4900000175455,-0.06927666663674362 +267099,1335.4950000175456,-0.0692766500449751 +267100,1335.5000000175457,-0.06927663345286768 +267101,1335.5050000175459,-0.06927661686042137 +267102,1335.510000017546,-0.06927660026763623 +267103,1335.515000017546,-0.06927658367451225 +267104,1335.5200000175462,-0.0692765670810495 +267105,1335.5250000175463,-0.06927655048724796 +267106,1335.5300000175464,-0.06927653389310769 +267107,1335.5350000175465,-0.0692765172986287 +267108,1335.5400000175466,-0.06927650070381104 +267109,1335.5450000175467,-0.06927648410865471 +267110,1335.5500000175468,-0.06927646751315977 +267111,1335.555000017547,-0.06927645091732623 +267112,1335.560000017547,-0.06927643432115412 +267113,1335.5650000175472,-0.06927641772464345 +267114,1335.5700000175473,-0.06927640112779428 +267115,1335.5750000175474,-0.06927638453060661 +267116,1335.5800000175475,-0.06927636793308048 +267117,1335.5850000175476,-0.06927635133521592 +267118,1335.5900000175477,-0.06927633473701295 +267119,1335.5950000175478,-0.0692763181384716 +267120,1335.600000017548,-0.0692763015395919 +267121,1335.605000017548,-0.06927628494037388 +267122,1335.6100000175481,-0.06927626834081757 +267123,1335.6150000175483,-0.06927625174092299 +267124,1335.6200000175484,-0.06927623514069017 +267125,1335.6250000175485,-0.06927621854011914 +267126,1335.6300000175486,-0.06927620193920994 +267127,1335.6350000175487,-0.06927618533796258 +267128,1335.6400000175488,-0.06927616873637707 +267129,1335.645000017549,-0.06927615213445348 +267130,1335.650000017549,-0.06927613553219182 +267131,1335.6550000175491,-0.06927611892959211 +267132,1335.6600000175492,-0.06927610232665438 +267133,1335.6650000175493,-0.06927608572337868 +267134,1335.6700000175495,-0.069276069119765 +267135,1335.6750000175496,-0.0692760525158134 +267136,1335.6800000175497,-0.06927603591152388 +267137,1335.6850000175498,-0.06927601930689649 +267138,1335.69000001755,-0.06927600270193125 +267139,1335.69500001755,-0.06927598609662819 +267140,1335.70000001755,-0.06927596949098734 +267141,1335.7050000175502,-0.06927595288500872 +267142,1335.7100000175503,-0.06927593627869236 +267143,1335.7150000175504,-0.06927591967203829 +267144,1335.7200000175505,-0.06927590306504654 +267145,1335.7250000175507,-0.06927588645771712 +267146,1335.7300000175508,-0.06927586985005009 +267147,1335.7350000175509,-0.06927585324204547 +267148,1335.740000017551,-0.06927583663370325 +267149,1335.745000017551,-0.06927582002502351 +267150,1335.7500000175512,-0.06927580341600624 +267151,1335.7550000175513,-0.06927578680665149 +267152,1335.7600000175514,-0.06927577019695927 +267153,1335.7650000175515,-0.06927575358692963 +267154,1335.7700000175516,-0.06927573697656257 +267155,1335.7750000175517,-0.06927572036585815 +267156,1335.7800000175519,-0.06927570375481638 +267157,1335.785000017552,-0.06927568714343728 +267158,1335.790000017552,-0.06927567053172089 +267159,1335.7950000175522,-0.06927565391966724 +267160,1335.8000000175523,-0.06927563730727634 +267161,1335.8050000175524,-0.06927562069454823 +267162,1335.8100000175525,-0.06927560408148295 +267163,1335.8150000175526,-0.06927558746808052 +267164,1335.8200000175527,-0.06927557085434095 +267165,1335.8250000175528,-0.0692755542402643 +267166,1335.830000017553,-0.06927553762585056 +267167,1335.835000017553,-0.06927552101109978 +267168,1335.8400000175532,-0.069275504396012 +267169,1335.8450000175533,-0.06927548778058723 +267170,1335.8500000175534,-0.06927547116482549 +267171,1335.8550000175535,-0.06927545454872683 +267172,1335.8600000175536,-0.06927543793229125 +267173,1335.8650000175537,-0.06927542131551881 +267174,1335.8700000175538,-0.06927540469840952 +267175,1335.875000017554,-0.06927538808096341 +267176,1335.880000017554,-0.06927537146318051 +267177,1335.8850000175541,-0.06927535484506084 +267178,1335.8900000175543,-0.06927533822660444 +267179,1335.8950000175544,-0.06927532160781132 +267180,1335.9000000175545,-0.06927530498868152 +267181,1335.9050000175546,-0.06927528836921508 +267182,1335.9100000175547,-0.069275271749412 +267183,1335.9150000175548,-0.06927525512927234 +267184,1335.920000017555,-0.0692752385087961 +267185,1335.925000017555,-0.06927522188798332 +267186,1335.9300000175551,-0.06927520526683403 +267187,1335.9350000175552,-0.06927518864534825 +267188,1335.9400000175553,-0.06927517202352601 +267189,1335.9450000175555,-0.06927515540136735 +267190,1335.9500000175556,-0.06927513877887227 +267191,1335.9550000175557,-0.06927512215604084 +267192,1335.9600000175558,-0.06927510553287305 +267193,1335.965000017556,-0.06927508890936895 +267194,1335.970000017556,-0.06927507228552855 +267195,1335.975000017556,-0.0692750556613519 +267196,1335.9800000175562,-0.069275039036839 +267197,1335.9850000175563,-0.0692750224119899 +267198,1335.9900000175564,-0.06927500578680462 +267199,1335.9950000175565,-0.0692749891612832 +267200,1336.0000000175567,-0.06927497253542565 +267201,1336.0050000175568,-0.06927495590923201 +267202,1336.0100000175569,-0.0692749392827023 +267203,1336.015000017557,-0.06927492265583654 +267204,1336.020000017557,-0.06927490602863477 +267205,1336.0250000175572,-0.06927488940109702 +267206,1336.0300000175573,-0.06927487277322332 +267207,1336.0350000175574,-0.06927485614501369 +267208,1336.0400000175575,-0.06927483951646815 +267209,1336.0450000175576,-0.06927482288758675 +267210,1336.0500000175577,-0.06927480625836951 +267211,1336.0550000175579,-0.06927478962881645 +267212,1336.060000017558,-0.0692747729989276 +267213,1336.065000017558,-0.06927475636870299 +267214,1336.0700000175582,-0.06927473973814265 +267215,1336.0750000175583,-0.06927472310724658 +267216,1336.0800000175584,-0.06927470647601486 +267217,1336.0850000175585,-0.06927468984444748 +267218,1336.0900000175586,-0.06927467321254449 +267219,1336.0950000175587,-0.0692746565803059 +267220,1336.1000000175588,-0.06927463994773174 +267221,1336.105000017559,-0.06927462331482205 +267222,1336.110000017559,-0.06927460668157685 +267223,1336.1150000175592,-0.06927459004799617 +267224,1336.1200000175593,-0.06927457341408004 +267225,1336.1250000175594,-0.0692745567798285 +267226,1336.1300000175595,-0.06927454014524154 +267227,1336.1350000175596,-0.0692745235103192 +267228,1336.1400000175597,-0.06927450687506154 +267229,1336.1450000175598,-0.06927449023946855 +267230,1336.15000001756,-0.06927447360354029 +267231,1336.15500001756,-0.06927445696727677 +267232,1336.1600000175602,-0.069274440330678 +267233,1336.1650000175603,-0.06927442369374405 +267234,1336.1700000175604,-0.06927440705647493 +267235,1336.1750000175605,-0.06927439041887065 +267236,1336.1800000175606,-0.06927437378093126 +267237,1336.1850000175607,-0.06927435714265677 +267238,1336.1900000175608,-0.06927434050404722 +267239,1336.195000017561,-0.06927432386510264 +267240,1336.200000017561,-0.06927430722582305 +267241,1336.2050000175611,-0.0692742905862085 +267242,1336.2100000175612,-0.06927427394625897 +267243,1336.2150000175614,-0.06927425730597453 +267244,1336.2200000175615,-0.06927424066535519 +267245,1336.2250000175616,-0.06927422402440099 +267246,1336.2300000175617,-0.06927420738311196 +267247,1336.2350000175618,-0.06927419074148812 +267248,1336.240000017562,-0.06927417409952949 +267249,1336.245000017562,-0.0692741574572361 +267250,1336.2500000175621,-0.06927414081460799 +267251,1336.2550000175622,-0.06927412417164519 +267252,1336.2600000175623,-0.0692741075283477 +267253,1336.2650000175624,-0.06927409088471558 +267254,1336.2700000175626,-0.06927407424074883 +267255,1336.2750000175627,-0.0692740575964475 +267256,1336.2800000175628,-0.06927404095181162 +267257,1336.2850000175629,-0.06927402430684121 +267258,1336.290000017563,-0.06927400766153628 +267259,1336.295000017563,-0.0692739910158969 +267260,1336.3000000175632,-0.06927397436992305 +267261,1336.3050000175633,-0.0692739577236148 +267262,1336.3100000175634,-0.06927394107697216 +267263,1336.3150000175635,-0.06927392442999514 +267264,1336.3200000175636,-0.06927390778268377 +267265,1336.3250000175638,-0.06927389113503812 +267266,1336.3300000175639,-0.0692738744870582 +267267,1336.335000017564,-0.06927385783874401 +267268,1336.340000017564,-0.0692738411900956 +267269,1336.3450000175642,-0.06927382454111299 +267270,1336.3500000175643,-0.06927380789179621 +267271,1336.3550000175644,-0.06927379124214529 +267272,1336.3600000175645,-0.06927377459216026 +267273,1336.3650000175646,-0.06927375794184115 +267274,1336.3700000175647,-0.06927374129118799 +267275,1336.3750000175648,-0.0692737246402008 +267276,1336.380000017565,-0.06927370798887961 +267277,1336.385000017565,-0.06927369133722446 +267278,1336.3900000175652,-0.06927367468523535 +267279,1336.3950000175653,-0.06927365803291234 +267280,1336.4000000175654,-0.06927364138025542 +267281,1336.4050000175655,-0.06927362472726466 +267282,1336.4100000175656,-0.06927360807394006 +267283,1336.4150000175657,-0.06927359142028168 +267284,1336.4200000175658,-0.0692735747662895 +267285,1336.425000017566,-0.06927355811196358 +267286,1336.430000017566,-0.06927354145730395 +267287,1336.4350000175662,-0.06927352480231062 +267288,1336.4400000175663,-0.06927350814698363 +267289,1336.4450000175664,-0.069273491491323 +267290,1336.4500000175665,-0.06927347483532877 +267291,1336.4550000175666,-0.06927345817900095 +267292,1336.4600000175667,-0.0692734415223396 +267293,1336.4650000175668,-0.06927342486534471 +267294,1336.470000017567,-0.06927340820801632 +267295,1336.475000017567,-0.06927339155035447 +267296,1336.4800000175671,-0.06927337489235919 +267297,1336.4850000175672,-0.06927335823403048 +267298,1336.4900000175674,-0.06927334157536841 +267299,1336.4950000175675,-0.06927332491637297 +267300,1336.5000000175676,-0.06927330825704421 +267301,1336.5050000175677,-0.06927329159738214 +267302,1336.5100000175678,-0.0692732749373868 +267303,1336.515000017568,-0.06927325827705823 +267304,1336.520000017568,-0.06927324161639645 +267305,1336.5250000175681,-0.06927322495540147 +267306,1336.5300000175682,-0.06927320829407334 +267307,1336.5350000175683,-0.06927319163241208 +267308,1336.5400000175684,-0.06927317497041771 +267309,1336.5450000175686,-0.06927315830809028 +267310,1336.5500000175687,-0.06927314164542978 +267311,1336.5550000175688,-0.06927312498243626 +267312,1336.5600000175689,-0.06927310831910975 +267313,1336.565000017569,-0.06927309165545029 +267314,1336.570000017569,-0.06927307499145789 +267315,1336.5750000175692,-0.06927305832713258 +267316,1336.5800000175693,-0.06927304166247442 +267317,1336.5850000175694,-0.06927302499748339 +267318,1336.5900000175695,-0.06927300833215953 +267319,1336.5950000175696,-0.06927299166650289 +267320,1336.6000000175698,-0.06927297500051348 +267321,1336.6050000175699,-0.06927295833419134 +267322,1336.61000001757,-0.06927294166753648 +267323,1336.61500001757,-0.06927292500054893 +267324,1336.6200000175702,-0.06927290833322874 +267325,1336.6250000175703,-0.06927289166557593 +267326,1336.6300000175704,-0.06927287499759051 +267327,1336.6350000175705,-0.06927285832927252 +267328,1336.6400000175706,-0.06927284166062199 +267329,1336.6450000175707,-0.06927282499163896 +267330,1336.6500000175708,-0.06927280832232342 +267331,1336.655000017571,-0.06927279165267546 +267332,1336.660000017571,-0.06927277498269505 +267333,1336.6650000175712,-0.06927275831238223 +267334,1336.6700000175713,-0.06927274164173705 +267335,1336.6750000175714,-0.06927272497075952 +267336,1336.6800000175715,-0.06927270829944969 +267337,1336.6850000175716,-0.06927269162780757 +267338,1336.6900000175717,-0.06927267495583317 +267339,1336.6950000175718,-0.06927265828352654 +267340,1336.700000017572,-0.06927264161088771 +267341,1336.705000017572,-0.06927262493791671 +267342,1336.7100000175722,-0.06927260826461355 +267343,1336.7150000175723,-0.06927259159097827 +267344,1336.7200000175724,-0.06927257491701092 +267345,1336.7250000175725,-0.06927255824271149 +267346,1336.7300000175726,-0.06927254156808002 +267347,1336.7350000175727,-0.06927252489311654 +267348,1336.7400000175728,-0.0692725082178211 +267349,1336.745000017573,-0.0692724915421937 +267350,1336.750000017573,-0.06927247486623438 +267351,1336.7550000175731,-0.06927245818994315 +267352,1336.7600000175732,-0.06927244151332006 +267353,1336.7650000175734,-0.06927242483636513 +267354,1336.7700000175735,-0.0692724081590784 +267355,1336.7750000175736,-0.06927239148145987 +267356,1336.7800000175737,-0.0692723748035096 +267357,1336.7850000175738,-0.06927235812522761 +267358,1336.790000017574,-0.06927234144661393 +267359,1336.795000017574,-0.06927232476766855 +267360,1336.8000000175741,-0.06927230808839153 +267361,1336.8050000175742,-0.06927229140878292 +267362,1336.8100000175743,-0.06927227472884272 +267363,1336.8150000175744,-0.06927225804857094 +267364,1336.8200000175746,-0.06927224136796765 +267365,1336.8250000175747,-0.06927222468703287 +267366,1336.8300000175748,-0.0692722080057666 +267367,1336.8350000175749,-0.06927219132416888 +267368,1336.840000017575,-0.06927217464223977 +267369,1336.845000017575,-0.06927215795997924 +267370,1336.8500000175752,-0.06927214127738736 +267371,1336.8550000175753,-0.06927212459446415 +267372,1336.8600000175754,-0.06927210791120963 +267373,1336.8650000175755,-0.06927209122762384 +267374,1336.8700000175756,-0.0692720745437068 +267375,1336.8750000175758,-0.06927205785945856 +267376,1336.8800000175759,-0.0692720411748791 +267377,1336.885000017576,-0.06927202448996848 +267378,1336.890000017576,-0.06927200780472674 +267379,1336.8950000175762,-0.06927199111915389 +267380,1336.9000000175763,-0.06927197443324995 +267381,1336.9050000175764,-0.06927195774701497 +267382,1336.9100000175765,-0.06927194106044895 +267383,1336.9150000175766,-0.06927192437355195 +267384,1336.9200000175767,-0.06927190768632399 +267385,1336.9250000175768,-0.06927189099876507 +267386,1336.930000017577,-0.06927187431087527 +267387,1336.935000017577,-0.06927185762265457 +267388,1336.9400000175772,-0.06927184093410302 +267389,1336.9450000175773,-0.06927182424522063 +267390,1336.9500000175774,-0.06927180755600747 +267391,1336.9550000175775,-0.06927179086646353 +267392,1336.9600000175776,-0.06927177417658884 +267393,1336.9650000175777,-0.06927175748638344 +267394,1336.9700000175778,-0.06927174079584734 +267395,1336.975000017578,-0.06927172410498063 +267396,1336.980000017578,-0.06927170741378326 +267397,1336.9850000175782,-0.06927169072225531 +267398,1336.9900000175783,-0.06927167403039677 +267399,1336.9950000175784,-0.06927165733820768 +267400,1337.0000000175785,-0.0692716406456881 +267401,1337.0050000175786,-0.06927162395283802 +267402,1337.0100000175787,-0.06927160725965748 +267403,1337.0150000175788,-0.0692715905661465 +267404,1337.020000017579,-0.06927157387230513 +267405,1337.025000017579,-0.06927155717813338 +267406,1337.0300000175791,-0.06927154048363128 +267407,1337.0350000175793,-0.06927152378879887 +267408,1337.0400000175794,-0.06927150709363618 +267409,1337.0450000175795,-0.0692714903981432 +267410,1337.0500000175796,-0.06927147370232 +267411,1337.0550000175797,-0.06927145700616659 +267412,1337.0600000175798,-0.069271440309683 +267413,1337.06500001758,-0.06927142361286927 +267414,1337.07000001758,-0.06927140691572542 +267415,1337.0750000175801,-0.06927139021825149 +267416,1337.0800000175802,-0.06927137352044747 +267417,1337.0850000175803,-0.06927135682231342 +267418,1337.0900000175805,-0.06927134012384938 +267419,1337.0950000175806,-0.06927132342505535 +267420,1337.1000000175807,-0.06927130672593136 +267421,1337.1050000175808,-0.06927129002647744 +267422,1337.110000017581,-0.06927127332669365 +267423,1337.115000017581,-0.06927125662657999 +267424,1337.120000017581,-0.06927123992613647 +267425,1337.1250000175812,-0.06927122322536317 +267426,1337.1300000175813,-0.06927120652426007 +267427,1337.1350000175814,-0.0692711898228272 +267428,1337.1400000175815,-0.06927117312106464 +267429,1337.1450000175817,-0.06927115641897237 +267430,1337.1500000175818,-0.06927113971655043 +267431,1337.1550000175819,-0.06927112301379884 +267432,1337.160000017582,-0.06927110631071765 +267433,1337.165000017582,-0.06927108960730687 +267434,1337.1700000175822,-0.06927107290356653 +267435,1337.1750000175823,-0.06927105619949667 +267436,1337.1800000175824,-0.06927103949509732 +267437,1337.1850000175825,-0.06927102279036848 +267438,1337.1900000175826,-0.06927100608531021 +267439,1337.1950000175827,-0.06927098937992252 +267440,1337.2000000175829,-0.06927097267420544 +267441,1337.205000017583,-0.069270955968159 +267442,1337.210000017583,-0.06927093926178324 +267443,1337.2150000175832,-0.06927092255507818 +267444,1337.2200000175833,-0.06927090584804384 +267445,1337.2250000175834,-0.06927088914068026 +267446,1337.2300000175835,-0.06927087243298745 +267447,1337.2350000175836,-0.06927085572496545 +267448,1337.2400000175837,-0.06927083901661431 +267449,1337.2450000175838,-0.06927082230793402 +267450,1337.250000017584,-0.06927080559892464 +267451,1337.255000017584,-0.06927078888958617 +267452,1337.2600000175842,-0.06927077217991867 +267453,1337.2650000175843,-0.06927075546992213 +267454,1337.2700000175844,-0.0692707387595966 +267455,1337.2750000175845,-0.06927072204894213 +267456,1337.2800000175846,-0.06927070533795872 +267457,1337.2850000175847,-0.06927068862664638 +267458,1337.2900000175848,-0.0692706719150052 +267459,1337.295000017585,-0.06927065520303514 +267460,1337.300000017585,-0.06927063849073628 +267461,1337.3050000175851,-0.06927062177810862 +267462,1337.3100000175853,-0.0692706050651522 +267463,1337.3150000175854,-0.06927058835186703 +267464,1337.3200000175855,-0.06927057163825316 +267465,1337.3250000175856,-0.06927055492431061 +267466,1337.3300000175857,-0.06927053821003942 +267467,1337.3350000175858,-0.0692705214954396 +267468,1337.340000017586,-0.06927050478051118 +267469,1337.345000017586,-0.06927048806525418 +267470,1337.3500000175861,-0.06927047134966867 +267471,1337.3550000175862,-0.06927045463375464 +267472,1337.3600000175863,-0.06927043791751213 +267473,1337.3650000175865,-0.06927042120094117 +267474,1337.3700000175866,-0.06927040448404176 +267475,1337.3750000175867,-0.06927038776681399 +267476,1337.3800000175868,-0.06927037104925783 +267477,1337.385000017587,-0.06927035433137334 +267478,1337.390000017587,-0.06927033761316054 +267479,1337.395000017587,-0.06927032089461944 +267480,1337.4000000175872,-0.0692703041757501 +267481,1337.4050000175873,-0.06927028745655253 +267482,1337.4100000175874,-0.06927027073702675 +267483,1337.4150000175875,-0.06927025401717282 +267484,1337.4200000175877,-0.06927023729699075 +267485,1337.4250000175878,-0.06927022057648055 +267486,1337.4300000175879,-0.06927020385564228 +267487,1337.435000017588,-0.06927018713447596 +267488,1337.440000017588,-0.06927017041298159 +267489,1337.4450000175882,-0.06927015369115923 +267490,1337.4500000175883,-0.06927013696900888 +267491,1337.4550000175884,-0.0692701202465306 +267492,1337.4600000175885,-0.06927010352372441 +267493,1337.4650000175886,-0.06927008680059034 +267494,1337.4700000175887,-0.06927007007712839 +267495,1337.4750000175889,-0.06927005335333862 +267496,1337.480000017589,-0.06927003662922106 +267497,1337.485000017589,-0.06927001990477571 +267498,1337.4900000175892,-0.06927000318000262 +267499,1337.4950000175893,-0.06926998645490183 +267500,1337.5000000175894,-0.06926996972947333 +267501,1337.5050000175895,-0.06926995300371717 +267502,1337.5100000175896,-0.0692699362776334 +267503,1337.5150000175897,-0.06926991955122201 +267504,1337.5200000175898,-0.06926990282448306 +267505,1337.52500001759,-0.06926988609741656 +267506,1337.53000001759,-0.06926986937002254 +267507,1337.5350000175902,-0.06926985264230102 +267508,1337.5400000175903,-0.06926983591425204 +267509,1337.5450000175904,-0.06926981918587563 +267510,1337.5500000175905,-0.06926980245717182 +267511,1337.5550000175906,-0.06926978572814063 +267512,1337.5600000175907,-0.0692697689987821 +267513,1337.5650000175908,-0.06926975226909625 +267514,1337.570000017591,-0.0692697355390831 +267515,1337.575000017591,-0.06926971880874269 +267516,1337.5800000175911,-0.06926970207807506 +267517,1337.5850000175913,-0.06926968534708021 +267518,1337.5900000175914,-0.06926966861575819 +267519,1337.5950000175915,-0.06926965188410902 +267520,1337.6000000175916,-0.06926963515213273 +267521,1337.6050000175917,-0.06926961841982936 +267522,1337.6100000175918,-0.06926960168719891 +267523,1337.615000017592,-0.06926958495424144 +267524,1337.620000017592,-0.06926956822095694 +267525,1337.6250000175921,-0.06926955148734547 +267526,1337.6300000175922,-0.06926953475340704 +267527,1337.6350000175923,-0.0692695180191417 +267528,1337.6400000175925,-0.06926950128454946 +267529,1337.6450000175926,-0.06926948454963036 +267530,1337.6500000175927,-0.06926946781438442 +267531,1337.6550000175928,-0.06926945107881169 +267532,1337.660000017593,-0.06926943434291216 +267533,1337.665000017593,-0.0692694176066859 +267534,1337.670000017593,-0.0692694008701329 +267535,1337.6750000175932,-0.06926938413325322 +267536,1337.6800000175933,-0.06926936739604686 +267537,1337.6850000175934,-0.06926935065851386 +267538,1337.6900000175935,-0.06926933392065425 +267539,1337.6950000175937,-0.06926931718246807 +267540,1337.7000000175938,-0.06926930044395532 +267541,1337.7050000175939,-0.06926928370511605 +267542,1337.710000017594,-0.0692692669659503 +267543,1337.715000017594,-0.06926925022645807 +267544,1337.7200000175942,-0.06926923348663941 +267545,1337.7250000175943,-0.06926921674649433 +267546,1337.7300000175944,-0.06926920000602288 +267547,1337.7350000175945,-0.06926918326522508 +267548,1337.7400000175946,-0.06926916652410095 +267549,1337.7450000175947,-0.06926914978265053 +267550,1337.7500000175949,-0.06926913304087384 +267551,1337.755000017595,-0.0692691162987709 +267552,1337.760000017595,-0.06926909955634175 +267553,1337.7650000175952,-0.06926908281358642 +267554,1337.7700000175953,-0.06926906607050493 +267555,1337.7750000175954,-0.0692690493270973 +267556,1337.7800000175955,-0.0692690325833636 +267557,1337.7850000175956,-0.06926901583930382 +267558,1337.7900000175957,-0.069268999094918 +267559,1337.7950000175958,-0.06926898235020618 +267560,1337.800000017596,-0.06926896560516836 +267561,1337.805000017596,-0.0692689488598046 +267562,1337.8100000175962,-0.0692689321141149 +267563,1337.8150000175963,-0.06926891536809932 +267564,1337.8200000175964,-0.06926889862175786 +267565,1337.8250000175965,-0.06926888187509056 +267566,1337.8300000175966,-0.06926886512809745 +267567,1337.8350000175967,-0.06926884838077856 +267568,1337.8400000175968,-0.0692688316331339 +267569,1337.845000017597,-0.06926881488516352 +267570,1337.850000017597,-0.06926879813686744 +267571,1337.8550000175971,-0.0692687813882457 +267572,1337.8600000175973,-0.0692687646392983 +267573,1337.8650000175974,-0.0692687478900253 +267574,1337.8700000175975,-0.06926873114042671 +267575,1337.8750000175976,-0.06926871439050257 +267576,1337.8800000175977,-0.0692686976402529 +267577,1337.8850000175978,-0.0692686808896777 +267578,1337.890000017598,-0.06926866413877707 +267579,1337.895000017598,-0.06926864738755098 +267580,1337.9000000175981,-0.06926863063599949 +267581,1337.9050000175982,-0.0692686138841226 +267582,1337.9100000175983,-0.06926859713192036 +267583,1337.9150000175985,-0.06926858037939279 +267584,1337.9200000175986,-0.06926856362653992 +267585,1337.9250000175987,-0.06926854687336177 +267586,1337.9300000175988,-0.06926853011985838 +267587,1337.935000017599,-0.06926851336602978 +267588,1337.940000017599,-0.069268496611876 +267589,1337.945000017599,-0.06926847985739704 +267590,1337.9500000175992,-0.06926846310259296 +267591,1337.9550000175993,-0.06926844634746378 +267592,1337.9600000175994,-0.06926842959200954 +267593,1337.9650000175996,-0.06926841283623025 +267594,1337.9700000175997,-0.06926839608012596 +267595,1337.9750000175998,-0.06926837932369667 +267596,1337.9800000175999,-0.06926836256694241 +267597,1337.9850000176,-0.06926834580986324 +267598,1337.9900000176,-0.06926832905245915 +267599,1337.9950000176002,-0.0692683122947302 +267600,1338.0000000176003,-0.0692682955366764 +267601,1338.0050000176004,-0.0692682787782978 +267602,1338.0100000176005,-0.0692682620195944 +267603,1338.0150000176006,-0.06926824526056624 +267604,1338.0200000176008,-0.06926822850121336 +267605,1338.0250000176009,-0.06926821174153577 +267606,1338.030000017601,-0.06926819498153351 +267607,1338.035000017601,-0.06926817822120661 +267608,1338.0400000176012,-0.06926816146055509 +267609,1338.0450000176013,-0.06926814469957898 +267610,1338.0500000176014,-0.06926812793827833 +267611,1338.0550000176015,-0.06926811117665314 +267612,1338.0600000176016,-0.06926809441470344 +267613,1338.0650000176017,-0.06926807765242927 +267614,1338.0700000176018,-0.06926806088983066 +267615,1338.075000017602,-0.06926804412690764 +267616,1338.080000017602,-0.06926802736366022 +267617,1338.0850000176022,-0.06926801060008844 +267618,1338.0900000176023,-0.06926799383619235 +267619,1338.0950000176024,-0.06926797707197194 +267620,1338.1000000176025,-0.06926796030742725 +267621,1338.1050000176026,-0.06926794354255834 +267622,1338.1100000176027,-0.06926792677736521 +267623,1338.1150000176028,-0.06926791001184789 +267624,1338.120000017603,-0.0692678932460064 +267625,1338.125000017603,-0.0692678764798408 +267626,1338.1300000176032,-0.06926785971335109 +267627,1338.1350000176033,-0.0692678429465373 +267628,1338.1400000176034,-0.06926782617939946 +267629,1338.1450000176035,-0.06926780941193762 +267630,1338.1500000176036,-0.06926779264415178 +267631,1338.1550000176037,-0.06926777587604199 +267632,1338.1600000176038,-0.06926775910760827 +267633,1338.165000017604,-0.06926774233885065 +267634,1338.170000017604,-0.06926772556976915 +267635,1338.1750000176041,-0.06926770880036383 +267636,1338.1800000176042,-0.06926769203063467 +267637,1338.1850000176044,-0.06926767526058172 +267638,1338.1900000176045,-0.06926765849020503 +267639,1338.1950000176046,-0.0692676417195046 +267640,1338.2000000176047,-0.06926762494848046 +267641,1338.2050000176048,-0.06926760817713266 +267642,1338.210000017605,-0.06926759140546122 +267643,1338.215000017605,-0.06926757463346615 +267644,1338.2200000176051,-0.06926755786114751 +267645,1338.2250000176052,-0.0692675410885053 +267646,1338.2300000176053,-0.06926752431553956 +267647,1338.2350000176054,-0.06926750754225033 +267648,1338.2400000176056,-0.06926749076863761 +267649,1338.2450000176057,-0.06926747399470146 +267650,1338.2500000176058,-0.0692674572204419 +267651,1338.2550000176059,-0.06926744044585896 +267652,1338.260000017606,-0.06926742367095264 +267653,1338.265000017606,-0.069267406895723 +267654,1338.2700000176062,-0.06926739012017007 +267655,1338.2750000176063,-0.06926737334429385 +267656,1338.2800000176064,-0.0692673565680944 +267657,1338.2850000176065,-0.06926733979157172 +267658,1338.2900000176066,-0.06926732301472587 +267659,1338.2950000176068,-0.06926730623755685 +267660,1338.3000000176069,-0.06926728946006472 +267661,1338.305000017607,-0.06926727268224947 +267662,1338.310000017607,-0.06926725590411116 +267663,1338.3150000176072,-0.06926723912564979 +267664,1338.3200000176073,-0.06926722234686543 +267665,1338.3250000176074,-0.06926720556775808 +267666,1338.3300000176075,-0.06926718878832776 +267667,1338.3350000176076,-0.06926717200857452 +267668,1338.3400000176077,-0.06926715522849838 +267669,1338.3450000176078,-0.06926713844809937 +267670,1338.350000017608,-0.06926712166737753 +267671,1338.355000017608,-0.06926710488633286 +267672,1338.3600000176082,-0.06926708810496542 +267673,1338.3650000176083,-0.06926707132327521 +267674,1338.3700000176084,-0.06926705454126227 +267675,1338.3750000176085,-0.06926703775892663 +267676,1338.3800000176086,-0.06926702097626833 +267677,1338.3850000176087,-0.06926700419328738 +267678,1338.3900000176088,-0.06926698740998381 +267679,1338.395000017609,-0.06926697062635767 +267680,1338.400000017609,-0.06926695384240898 +267681,1338.4050000176092,-0.06926693705813776 +267682,1338.4100000176093,-0.06926692027354403 +267683,1338.4150000176094,-0.06926690348862784 +267684,1338.4200000176095,-0.06926688670338921 +267685,1338.4250000176096,-0.06926686991782816 +267686,1338.4300000176097,-0.06926685313194474 +267687,1338.4350000176098,-0.06926683634573894 +267688,1338.44000001761,-0.06926681955921084 +267689,1338.44500001761,-0.06926680277236043 +267690,1338.4500000176101,-0.06926678598518773 +267691,1338.4550000176102,-0.06926676919769283 +267692,1338.4600000176104,-0.06926675240987569 +267693,1338.4650000176105,-0.0692667356217364 +267694,1338.4700000176106,-0.06926671883327493 +267695,1338.4750000176107,-0.06926670204449133 +267696,1338.4800000176108,-0.06926668525538564 +267697,1338.485000017611,-0.06926666846595787 +267698,1338.490000017611,-0.06926665167620809 +267699,1338.4950000176111,-0.06926663488613627 +267700,1338.5000000176112,-0.06926661809574249 +267701,1338.5050000176113,-0.06926660130502675 +267702,1338.5100000176114,-0.0692665845139891 +267703,1338.5150000176116,-0.06926656772262953 +267704,1338.5200000176117,-0.0692665509309481 +267705,1338.5250000176118,-0.06926653413894483 +267706,1338.5300000176119,-0.06926651734661976 +267707,1338.535000017612,-0.0692665005539729 +267708,1338.540000017612,-0.06926648376100429 +267709,1338.5450000176122,-0.06926646696771396 +267710,1338.5500000176123,-0.06926645017410195 +267711,1338.5550000176124,-0.06926643338016825 +267712,1338.5600000176125,-0.06926641658591293 +267713,1338.5650000176126,-0.06926639979133599 +267714,1338.5700000176128,-0.06926638299643748 +267715,1338.5750000176129,-0.06926636620121741 +267716,1338.580000017613,-0.06926634940567583 +267717,1338.585000017613,-0.06926633260981276 +267718,1338.5900000176132,-0.0692663158136282 +267719,1338.5950000176133,-0.06926629901712222 +267720,1338.6000000176134,-0.06926628222029482 +267721,1338.6050000176135,-0.06926626542314607 +267722,1338.6100000176136,-0.06926624862567594 +267723,1338.6150000176137,-0.06926623182788451 +267724,1338.6200000176138,-0.06926621502977179 +267725,1338.625000017614,-0.0692661982313378 +267726,1338.630000017614,-0.06926618143258258 +267727,1338.6350000176142,-0.06926616463350614 +267728,1338.6400000176143,-0.06926614783410852 +267729,1338.6450000176144,-0.06926613103438976 +267730,1338.6500000176145,-0.06926611423434989 +267731,1338.6550000176146,-0.06926609743398891 +267732,1338.6600000176147,-0.06926608063330689 +267733,1338.6650000176148,-0.06926606383230381 +267734,1338.670000017615,-0.06926604703097974 +267735,1338.675000017615,-0.06926603022933471 +267736,1338.6800000176152,-0.06926601342736871 +267737,1338.6850000176153,-0.0692659966250818 +267738,1338.6900000176154,-0.069265979822474 +267739,1338.6950000176155,-0.06926596301954534 +267740,1338.7000000176156,-0.06926594621629585 +267741,1338.7050000176157,-0.06926592941272555 +267742,1338.7100000176158,-0.06926591260883448 +267743,1338.715000017616,-0.06926589580462267 +267744,1338.720000017616,-0.06926587900009014 +267745,1338.7250000176161,-0.06926586219523692 +267746,1338.7300000176162,-0.06926584539006304 +267747,1338.7350000176164,-0.06926582858456853 +267748,1338.7400000176165,-0.06926581177875343 +267749,1338.7450000176166,-0.06926579497261776 +267750,1338.7500000176167,-0.06926577816616153 +267751,1338.7550000176168,-0.06926576135938478 +267752,1338.760000017617,-0.06926574455228755 +267753,1338.765000017617,-0.06926572774486987 +267754,1338.7700000176171,-0.06926571093713176 +267755,1338.7750000176172,-0.06926569412907324 +267756,1338.7800000176173,-0.06926567732069436 +267757,1338.7850000176174,-0.06926566051199512 +267758,1338.7900000176176,-0.06926564370297558 +267759,1338.7950000176177,-0.06926562689363576 +267760,1338.8000000176178,-0.06926561008397568 +267761,1338.8050000176179,-0.06926559327399537 +267762,1338.810000017618,-0.06926557646369486 +267763,1338.815000017618,-0.06926555965307418 +267764,1338.8200000176182,-0.06926554284213336 +267765,1338.8250000176183,-0.06926552603087244 +267766,1338.8300000176184,-0.06926550921929144 +267767,1338.8350000176185,-0.06926549240739037 +267768,1338.8400000176186,-0.06926547559516928 +267769,1338.8450000176188,-0.06926545878262819 +267770,1338.8500000176189,-0.06926544196976714 +267771,1338.855000017619,-0.06926542515658615 +267772,1338.860000017619,-0.06926540834308524 +267773,1338.8650000176192,-0.06926539152926446 +267774,1338.8700000176193,-0.06926537471512383 +267775,1338.8750000176194,-0.06926535790066338 +267776,1338.8800000176195,-0.06926534108588313 +267777,1338.8850000176196,-0.06926532427078311 +267778,1338.8900000176197,-0.06926530745536336 +267779,1338.8950000176199,-0.0692652906396239 +267780,1338.90000001762,-0.06926527382356476 +267781,1338.90500001762,-0.06926525700718597 +267782,1338.9100000176202,-0.06926524019048756 +267783,1338.9150000176203,-0.06926522337346955 +267784,1338.9200000176204,-0.06926520655613198 +267785,1338.9250000176205,-0.06926518973847488 +267786,1338.9300000176206,-0.06926517292049829 +267787,1338.9350000176207,-0.0692651561022022 +267788,1338.9400000176208,-0.06926513928358667 +267789,1338.945000017621,-0.06926512246465172 +267790,1338.950000017621,-0.06926510564539737 +267791,1338.9550000176212,-0.06926508882582368 +267792,1338.9600000176213,-0.06926507200593064 +267793,1338.9650000176214,-0.0692650551857183 +267794,1338.9700000176215,-0.06926503836518669 +267795,1338.9750000176216,-0.06926502154433582 +267796,1338.9800000176217,-0.06926500472316574 +267797,1338.9850000176218,-0.06926498790167648 +267798,1338.990000017622,-0.06926497107986807 +267799,1338.995000017622,-0.06926495425774051 +267800,1339.0000000176221,-0.06926493743529386 +267801,1339.0050000176223,-0.06926492061252813 +267802,1339.0100000176224,-0.06926490378944335 +267803,1339.0150000176225,-0.06926488696603957 +267804,1339.0200000176226,-0.06926487014231679 +267805,1339.0250000176227,-0.06926485331827507 +267806,1339.0300000176228,-0.06926483649391442 +267807,1339.035000017623,-0.06926481966923487 +267808,1339.040000017623,-0.06926480284423644 +267809,1339.0450000176231,-0.06926478601891918 +267810,1339.0500000176232,-0.0692647691932831 +267811,1339.0550000176233,-0.06926475236732825 +267812,1339.0600000176235,-0.06926473554105463 +267813,1339.0650000176236,-0.06926471871446228 +267814,1339.0700000176237,-0.06926470188755124 +267815,1339.0750000176238,-0.06926468506032155 +267816,1339.080000017624,-0.06926466823277319 +267817,1339.085000017624,-0.06926465140490623 +267818,1339.090000017624,-0.06926463457672069 +267819,1339.0950000176242,-0.06926461774821661 +267820,1339.1000000176243,-0.069264600919394 +267821,1339.1050000176244,-0.06926458409025289 +267822,1339.1100000176245,-0.06926456726079333 +267823,1339.1150000176247,-0.06926455043101533 +267824,1339.1200000176248,-0.06926453360091891 +267825,1339.1250000176249,-0.06926451677050412 +267826,1339.130000017625,-0.06926449993977099 +267827,1339.135000017625,-0.06926448310871954 +267828,1339.1400000176252,-0.06926446627734978 +267829,1339.1450000176253,-0.06926444944566176 +267830,1339.1500000176254,-0.06926443261365552 +267831,1339.1550000176255,-0.06926441578133107 +267832,1339.1600000176256,-0.06926439894868844 +267833,1339.1650000176257,-0.06926438211572768 +267834,1339.1700000176259,-0.06926436528244878 +267835,1339.175000017626,-0.0692643484488518 +267836,1339.180000017626,-0.06926433161493677 +267837,1339.1850000176262,-0.0692643147807037 +267838,1339.1900000176263,-0.06926429794615263 +267839,1339.1950000176264,-0.06926428111128358 +267840,1339.2000000176265,-0.0692642642760966 +267841,1339.2050000176266,-0.06926424744059169 +267842,1339.2100000176267,-0.0692642306047689 +267843,1339.2150000176268,-0.06926421376862825 +267844,1339.220000017627,-0.06926419693216979 +267845,1339.225000017627,-0.06926418009539352 +267846,1339.2300000176272,-0.06926416325829948 +267847,1339.2350000176273,-0.06926414642088768 +267848,1339.2400000176274,-0.0692641295831582 +267849,1339.2450000176275,-0.06926411274511102 +267850,1339.2500000176276,-0.06926409590674619 +267851,1339.2550000176277,-0.06926407906806374 +267852,1339.2600000176278,-0.06926406222906369 +267853,1339.265000017628,-0.06926404538974607 +267854,1339.270000017628,-0.06926402855011089 +267855,1339.2750000176281,-0.06926401171015822 +267856,1339.2800000176283,-0.06926399486988809 +267857,1339.2850000176284,-0.06926397802930048 +267858,1339.2900000176285,-0.06926396118839545 +267859,1339.2950000176286,-0.06926394434717303 +267860,1339.3000000176287,-0.06926392750563326 +267861,1339.3050000176288,-0.06926391066377614 +267862,1339.310000017629,-0.06926389382160172 +267863,1339.315000017629,-0.06926387697911005 +267864,1339.3200000176291,-0.06926386013630109 +267865,1339.3250000176292,-0.06926384329317493 +267866,1339.3300000176293,-0.06926382644973159 +267867,1339.3350000176295,-0.06926380960597106 +267868,1339.3400000176296,-0.06926379276189341 +267869,1339.3450000176297,-0.06926377591749866 +267870,1339.3500000176298,-0.06926375907278684 +267871,1339.35500001763,-0.06926374222775797 +267872,1339.36000001763,-0.06926372538241209 +267873,1339.36500001763,-0.06926370853674922 +267874,1339.3700000176302,-0.06926369169076939 +267875,1339.3750000176303,-0.06926367484447264 +267876,1339.3800000176304,-0.069263657997859 +267877,1339.3850000176305,-0.06926364115092848 +267878,1339.3900000176307,-0.06926362430368112 +267879,1339.3950000176308,-0.06926360745611693 +267880,1339.4000000176309,-0.06926359060823598 +267881,1339.405000017631,-0.06926357376003826 +267882,1339.410000017631,-0.06926355691152382 +267883,1339.4150000176312,-0.06926354006269268 +267884,1339.4200000176313,-0.06926352321354488 +267885,1339.4250000176314,-0.06926350636408045 +267886,1339.4300000176315,-0.06926348951429939 +267887,1339.4350000176316,-0.06926347266420177 +267888,1339.4400000176317,-0.0692634558137876 +267889,1339.4450000176319,-0.06926343896305688 +267890,1339.450000017632,-0.0692634221120097 +267891,1339.455000017632,-0.06926340526064605 +267892,1339.4600000176322,-0.06926338840896595 +267893,1339.4650000176323,-0.06926337155696946 +267894,1339.4700000176324,-0.0692633547046566 +267895,1339.4750000176325,-0.06926333785202737 +267896,1339.4800000176326,-0.06926332099908185 +267897,1339.4850000176327,-0.06926330414582002 +267898,1339.4900000176328,-0.06926328729224193 +267899,1339.495000017633,-0.06926327043834761 +267900,1339.500000017633,-0.0692632535841371 +267901,1339.5050000176332,-0.0692632367296104 +267902,1339.5100000176333,-0.06926321987476756 +267903,1339.5150000176334,-0.06926320301960862 +267904,1339.5200000176335,-0.06926318616413357 +267905,1339.5250000176336,-0.06926316930834249 +267906,1339.5300000176337,-0.06926315245223535 +267907,1339.5350000176338,-0.06926313559581225 +267908,1339.540000017634,-0.06926311873907316 +267909,1339.545000017634,-0.06926310188201813 +267910,1339.5500000176341,-0.0692630850246472 +267911,1339.5550000176343,-0.06926306816696039 +267912,1339.5600000176344,-0.06926305130895771 +267913,1339.5650000176345,-0.06926303445063922 +267914,1339.5700000176346,-0.06926301759200494 +267915,1339.5750000176347,-0.06926300073305489 +267916,1339.5800000176348,-0.0692629838737891 +267917,1339.585000017635,-0.0692629670142076 +267918,1339.590000017635,-0.06926295015431043 +267919,1339.5950000176351,-0.0692629332940976 +267920,1339.6000000176352,-0.06926291643356916 +267921,1339.6050000176353,-0.06926289957272513 +267922,1339.6100000176355,-0.06926288271156554 +267923,1339.6150000176356,-0.06926286585009041 +267924,1339.6200000176357,-0.06926284898829978 +267925,1339.6250000176358,-0.06926283212619368 +267926,1339.630000017636,-0.06926281526377212 +267927,1339.635000017636,-0.06926279840103518 +267928,1339.640000017636,-0.06926278153798282 +267929,1339.6450000176362,-0.06926276467461512 +267930,1339.6500000176363,-0.06926274781093208 +267931,1339.6550000176364,-0.06926273094693375 +267932,1339.6600000176365,-0.06926271408262014 +267933,1339.6650000176367,-0.06926269721799129 +267934,1339.6700000176368,-0.06926268035304724 +267935,1339.6750000176369,-0.06926266348778799 +267936,1339.680000017637,-0.0692626466222136 +267937,1339.685000017637,-0.06926262975632409 +267938,1339.6900000176372,-0.06926261289011948 +267939,1339.6950000176373,-0.06926259602359981 +267940,1339.7000000176374,-0.0692625791567651 +267941,1339.7050000176375,-0.06926256228961537 +267942,1339.7100000176376,-0.06926254542215068 +267943,1339.7150000176377,-0.06926252855437103 +267944,1339.7200000176379,-0.06926251168627647 +267945,1339.725000017638,-0.069262494817867 +267946,1339.730000017638,-0.0692624779491427 +267947,1339.7350000176382,-0.06926246108010355 +267948,1339.7400000176383,-0.06926244421074959 +267949,1339.7450000176384,-0.06926242734108087 +267950,1339.7500000176385,-0.0692624104710974 +267951,1339.7550000176386,-0.06926239360079922 +267952,1339.7600000176387,-0.06926237673018634 +267953,1339.7650000176388,-0.06926235985925883 +267954,1339.770000017639,-0.06926234298801667 +267955,1339.775000017639,-0.06926232611645992 +267956,1339.7800000176392,-0.0692623092445886 +267957,1339.7850000176393,-0.06926229237240272 +267958,1339.7900000176394,-0.06926227549990234 +267959,1339.7950000176395,-0.06926225862708749 +267960,1339.8000000176396,-0.06926224175395818 +267961,1339.8050000176397,-0.06926222488051445 +267962,1339.8100000176398,-0.06926220800675632 +267963,1339.81500001764,-0.06926219113268384 +267964,1339.82000001764,-0.069262174258297 +267965,1339.8250000176401,-0.06926215738359588 +267966,1339.8300000176403,-0.06926214050858047 +267967,1339.8350000176404,-0.06926212363325081 +267968,1339.8400000176405,-0.06926210675760693 +267969,1339.8450000176406,-0.06926208988164886 +267970,1339.8500000176407,-0.06926207300537664 +267971,1339.8550000176408,-0.06926205612879027 +267972,1339.860000017641,-0.06926203925188981 +267973,1339.865000017641,-0.06926202237467528 +267974,1339.8700000176411,-0.0692620054971467 +267975,1339.8750000176412,-0.0692619886193041 +267976,1339.8800000176414,-0.06926197174114754 +267977,1339.8850000176415,-0.069261954862677 +267978,1339.8900000176416,-0.06926193798389253 +267979,1339.8950000176417,-0.06926192110479419 +267980,1339.9000000176418,-0.06926190422538196 +267981,1339.905000017642,-0.0692618873456559 +267982,1339.910000017642,-0.06926187046561603 +267983,1339.9150000176421,-0.06926185358526238 +267984,1339.9200000176422,-0.06926183670459497 +267985,1339.9250000176423,-0.06926181982361385 +267986,1339.9300000176424,-0.06926180294231904 +267987,1339.9350000176426,-0.06926178606071057 +267988,1339.9400000176427,-0.06926176917878846 +267989,1339.9450000176428,-0.06926175229655275 +267990,1339.9500000176429,-0.06926173541400346 +267991,1339.955000017643,-0.06926171853114062 +267992,1339.960000017643,-0.06926170164796426 +267993,1339.9650000176432,-0.0692616847644744 +267994,1339.9700000176433,-0.06926166788067112 +267995,1339.9750000176434,-0.06926165099655437 +267996,1339.9800000176435,-0.06926163411212426 +267997,1339.9850000176436,-0.06926161722738075 +267998,1339.9900000176438,-0.06926160034232391 +267999,1339.9950000176439,-0.06926158345695375 +268000,1340.000000017644,-0.06926156657127032 +268001,1340.005000017644,-0.06926154968527364 +268002,1340.0100000176442,-0.06926153279896373 +268003,1340.0150000176443,-0.06926151591234063 +268004,1340.0200000176444,-0.06926149902540436 +268005,1340.0250000176445,-0.06926148213815496 +268006,1340.0300000176446,-0.06926146525059246 +268007,1340.0350000176447,-0.06926144836271686 +268008,1340.0400000176448,-0.06926143147452822 +268009,1340.045000017645,-0.06926141458602657 +268010,1340.050000017645,-0.06926139769721192 +268011,1340.0550000176452,-0.06926138080808432 +268012,1340.0600000176453,-0.06926136391864378 +268013,1340.0650000176454,-0.06926134702889035 +268014,1340.0700000176455,-0.06926133013882403 +268015,1340.0750000176456,-0.06926131324844488 +268016,1340.0800000176457,-0.06926129635775291 +268017,1340.0850000176458,-0.06926127946674816 +268018,1340.090000017646,-0.06926126257543067 +268019,1340.095000017646,-0.06926124568380045 +268020,1340.1000000176462,-0.06926122879185752 +268021,1340.1050000176463,-0.06926121189960194 +268022,1340.1100000176464,-0.0692611950070337 +268023,1340.1150000176465,-0.06926117811415287 +268024,1340.1200000176466,-0.06926116122095945 +268025,1340.1250000176467,-0.06926114432745348 +268026,1340.1300000176468,-0.069261127433635 +268027,1340.135000017647,-0.06926111053950401 +268028,1340.140000017647,-0.06926109364506058 +268029,1340.1450000176471,-0.06926107675030471 +268030,1340.1500000176472,-0.06926105985523644 +268031,1340.1550000176474,-0.06926104295985579 +268032,1340.1600000176475,-0.06926102606416279 +268033,1340.1650000176476,-0.06926100916815749 +268034,1340.1700000176477,-0.06926099227183989 +268035,1340.1750000176478,-0.06926097537521006 +268036,1340.180000017648,-0.06926095847826798 +268037,1340.185000017648,-0.06926094158101372 +268038,1340.1900000176481,-0.06926092468344727 +268039,1340.1950000176482,-0.06926090778556869 +268040,1340.2000000176483,-0.06926089088737801 +268041,1340.2050000176484,-0.06926087398887525 +268042,1340.2100000176486,-0.06926085709006044 +268043,1340.2150000176487,-0.0692608401909336 +268044,1340.2200000176488,-0.06926082329149479 +268045,1340.2250000176489,-0.06926080639174399 +268046,1340.230000017649,-0.06926078949168128 +268047,1340.235000017649,-0.06926077259130667 +268048,1340.2400000176492,-0.06926075569062017 +268049,1340.2450000176493,-0.06926073878962181 +268050,1340.2500000176494,-0.06926072188831166 +268051,1340.2550000176495,-0.06926070498668971 +268052,1340.2600000176496,-0.06926068808475601 +268053,1340.2650000176498,-0.0692606711825106 +268054,1340.2700000176499,-0.06926065427995347 +268055,1340.27500001765,-0.06926063737708468 +268056,1340.28000001765,-0.06926062047390426 +268057,1340.2850000176502,-0.06926060357041222 +268058,1340.2900000176503,-0.06926058666660859 +268059,1340.2950000176504,-0.06926056976249342 +268060,1340.3000000176505,-0.06926055285806673 +268061,1340.3050000176506,-0.06926053595332854 +268062,1340.3100000176507,-0.0692605190482789 +268063,1340.3150000176508,-0.06926050214291782 +268064,1340.320000017651,-0.06926048523724533 +268065,1340.325000017651,-0.06926046833126148 +268066,1340.3300000176512,-0.06926045142496629 +268067,1340.3350000176513,-0.06926043451835975 +268068,1340.3400000176514,-0.06926041761144197 +268069,1340.3450000176515,-0.06926040070421291 +268070,1340.3500000176516,-0.06926038379667263 +268071,1340.3550000176517,-0.06926036688882116 +268072,1340.3600000176518,-0.06926034998065851 +268073,1340.365000017652,-0.06926033307218472 +268074,1340.370000017652,-0.06926031616339982 +268075,1340.3750000176522,-0.06926029925430385 +268076,1340.3800000176523,-0.06926028234489683 +268077,1340.3850000176524,-0.06926026543517878 +268078,1340.3900000176525,-0.06926024852514975 +268079,1340.3950000176526,-0.06926023161480975 +268080,1340.4000000176527,-0.06926021470415883 +268081,1340.4050000176528,-0.06926019779319699 +268082,1340.410000017653,-0.06926018088192429 +268083,1340.415000017653,-0.06926016397034074 +268084,1340.4200000176531,-0.06926014705844638 +268085,1340.4250000176532,-0.06926013014624123 +268086,1340.4300000176534,-0.06926011323372532 +268087,1340.4350000176535,-0.0692600963208987 +268088,1340.4400000176536,-0.06926007940776137 +268089,1340.4450000176537,-0.06926006249431338 +268090,1340.4500000176538,-0.06926004558055475 +268091,1340.455000017654,-0.0692600286664855 +268092,1340.460000017654,-0.0692600117521057 +268093,1340.4650000176541,-0.06925999483741534 +268094,1340.4700000176542,-0.06925997792241445 +268095,1340.4750000176543,-0.06925996100710308 +268096,1340.4800000176544,-0.06925994409148123 +268097,1340.4850000176546,-0.06925992717554896 +268098,1340.4900000176547,-0.06925991025930629 +268099,1340.4950000176548,-0.06925989334275326 +268100,1340.5000000176549,-0.06925987642588988 +268101,1340.505000017655,-0.06925985950871617 +268102,1340.510000017655,-0.0692598425912322 +268103,1340.5150000176552,-0.06925982567343797 +268104,1340.5200000176553,-0.06925980875533351 +268105,1340.5250000176554,-0.06925979183691885 +268106,1340.5300000176555,-0.06925977491819404 +268107,1340.5350000176556,-0.0692597579991591 +268108,1340.5400000176558,-0.06925974107981403 +268109,1340.5450000176559,-0.0692597241601589 +268110,1340.550000017656,-0.0692597072401937 +268111,1340.555000017656,-0.06925969031991851 +268112,1340.5600000176562,-0.06925967339933331 +268113,1340.5650000176563,-0.06925965647843817 +268114,1340.5700000176564,-0.06925963955723309 +268115,1340.5750000176565,-0.06925962263571811 +268116,1340.5800000176566,-0.06925960571389325 +268117,1340.5850000176567,-0.06925958879175856 +268118,1340.5900000176568,-0.06925957186931406 +268119,1340.595000017657,-0.06925955494655978 +268120,1340.600000017657,-0.06925953802349574 +268121,1340.6050000176572,-0.06925952110012197 +268122,1340.6100000176573,-0.06925950417643853 +268123,1340.6150000176574,-0.0692594872524454 +268124,1340.6200000176575,-0.06925947032814267 +268125,1340.6250000176576,-0.06925945340353032 +268126,1340.6300000176577,-0.0692594364786084 +268127,1340.6350000176578,-0.06925941955337692 +268128,1340.640000017658,-0.06925940262783592 +268129,1340.645000017658,-0.06925938570198545 +268130,1340.6500000176582,-0.06925936877582552 +268131,1340.6550000176583,-0.06925935184935617 +268132,1340.6600000176584,-0.06925933492257741 +268133,1340.6650000176585,-0.06925931799548929 +268134,1340.6700000176586,-0.06925930106809182 +268135,1340.6750000176587,-0.06925928414038506 +268136,1340.6800000176588,-0.069259267212369 +268137,1340.685000017659,-0.0692592502840437 +268138,1340.690000017659,-0.06925923335540918 +268139,1340.6950000176591,-0.06925921642646547 +268140,1340.7000000176592,-0.06925919949721261 +268141,1340.7050000176594,-0.06925918256765061 +268142,1340.7100000176595,-0.06925916563777951 +268143,1340.7150000176596,-0.06925914870759932 +268144,1340.7200000176597,-0.06925913177711011 +268145,1340.7250000176598,-0.06925911484631189 +268146,1340.73000001766,-0.06925909791520468 +268147,1340.73500001766,-0.06925908098378851 +268148,1340.7400000176601,-0.06925906405206342 +268149,1340.7450000176602,-0.06925904712002943 +268150,1340.7500000176603,-0.06925903018768659 +268151,1340.7550000176604,-0.0692590132550349 +268152,1340.7600000176606,-0.06925899632207441 +268153,1340.7650000176607,-0.06925897938880514 +268154,1340.7700000176608,-0.06925896245522714 +268155,1340.775000017661,-0.0692589455213404 +268156,1340.780000017661,-0.069258928587145 +268157,1340.785000017661,-0.06925891165264092 +268158,1340.7900000176612,-0.06925889471782821 +268159,1340.7950000176613,-0.06925887778270692 +268160,1340.8000000176614,-0.06925886084727705 +268161,1340.8050000176615,-0.06925884391153864 +268162,1340.8100000176617,-0.06925882697549171 +268163,1340.8150000176618,-0.06925881003913632 +268164,1340.8200000176619,-0.06925879310247247 +268165,1340.825000017662,-0.06925877616550019 +268166,1340.830000017662,-0.06925875922821953 +268167,1340.8350000176622,-0.0692587422906305 +268168,1340.8400000176623,-0.06925872535273316 +268169,1340.8450000176624,-0.06925870841452751 +268170,1340.8500000176625,-0.06925869147601359 +268171,1340.8550000176626,-0.06925867453719141 +268172,1340.8600000176627,-0.06925865759806103 +268173,1340.8650000176629,-0.06925864065862247 +268174,1340.870000017663,-0.06925862371887576 +268175,1340.875000017663,-0.06925860677882092 +268176,1340.8800000176632,-0.06925858983845798 +268177,1340.8850000176633,-0.06925857289778697 +268178,1340.8900000176634,-0.06925855595680794 +268179,1340.8950000176635,-0.0692585390155209 +268180,1340.9000000176636,-0.06925852207392588 +268181,1340.9050000176637,-0.06925850513202292 +268182,1340.9100000176638,-0.06925848818981205 +268183,1340.915000017664,-0.06925847124729327 +268184,1340.920000017664,-0.06925845430446666 +268185,1340.9250000176642,-0.0692584373613322 +268186,1340.9300000176643,-0.06925842041788995 +268187,1340.9350000176644,-0.06925840347413995 +268188,1340.9400000176645,-0.06925838653008219 +268189,1340.9450000176646,-0.06925836958571674 +268190,1340.9500000176647,-0.0692583526410436 +268191,1340.9550000176648,-0.06925833569606282 +268192,1340.960000017665,-0.06925831875077441 +268193,1340.965000017665,-0.0692583018051784 +268194,1340.9700000176651,-0.06925828485927485 +268195,1340.9750000176653,-0.06925826791306376 +268196,1340.9800000176654,-0.06925825096654518 +268197,1340.9850000176655,-0.06925823401971912 +268198,1340.9900000176656,-0.06925821707258561 +268199,1340.9950000176657,-0.06925820012514469 +268200,1341.0000000176658,-0.0692581831773964 +268201,1341.005000017666,-0.06925816622934076 +268202,1341.010000017666,-0.06925814928097779 +268203,1341.0150000176661,-0.06925813233230753 +268204,1341.0200000176662,-0.06925811538333002 +268205,1341.0250000176663,-0.06925809843404525 +268206,1341.0300000176665,-0.06925808148445328 +268207,1341.0350000176666,-0.06925806453455416 +268208,1341.0400000176667,-0.06925804758434788 +268209,1341.0450000176668,-0.06925803063383448 +268210,1341.050000017667,-0.069258013683014 +268211,1341.055000017667,-0.06925799673188647 +268212,1341.060000017667,-0.06925797978045191 +268213,1341.0650000176672,-0.06925796282871034 +268214,1341.0700000176673,-0.06925794587666184 +268215,1341.0750000176674,-0.06925792892430639 +268216,1341.0800000176675,-0.06925791197164402 +268217,1341.0850000176677,-0.06925789501867478 +268218,1341.0900000176678,-0.0692578780653987 +268219,1341.0950000176679,-0.0692578611118158 +268220,1341.100000017668,-0.06925784415792612 +268221,1341.105000017668,-0.06925782720372968 +268222,1341.1100000176682,-0.0692578102492265 +268223,1341.1150000176683,-0.06925779329441664 +268224,1341.1200000176684,-0.06925777633930011 +268225,1341.1250000176685,-0.06925775938387693 +268226,1341.1300000176686,-0.06925774242814715 +268227,1341.1350000176687,-0.06925772547211079 +268228,1341.1400000176689,-0.06925770851576789 +268229,1341.145000017669,-0.06925769155911846 +268230,1341.150000017669,-0.06925767460216253 +268231,1341.1550000176692,-0.06925765764490016 +268232,1341.1600000176693,-0.06925764068733137 +268233,1341.1650000176694,-0.06925762372945615 +268234,1341.1700000176695,-0.06925760677127459 +268235,1341.1750000176696,-0.06925758981278667 +268236,1341.1800000176697,-0.06925757285399244 +268237,1341.1850000176698,-0.06925755589489192 +268238,1341.19000001767,-0.06925753893548516 +268239,1341.19500001767,-0.06925752197577217 +268240,1341.2000000176702,-0.069257505015753 +268241,1341.2050000176703,-0.06925748805542765 +268242,1341.2100000176704,-0.06925747109479619 +268243,1341.2150000176705,-0.06925745413385861 +268244,1341.2200000176706,-0.06925743717261497 +268245,1341.2250000176707,-0.06925742021106529 +268246,1341.2300000176708,-0.0692574032492096 +268247,1341.235000017671,-0.06925738628704792 +268248,1341.240000017671,-0.06925736932458029 +268249,1341.2450000176711,-0.06925735236180675 +268250,1341.2500000176713,-0.06925733539872729 +268251,1341.2550000176714,-0.06925731843534198 +268252,1341.2600000176715,-0.06925730147165084 +268253,1341.2650000176716,-0.06925728450765388 +268254,1341.2700000176717,-0.06925726754335117 +268255,1341.2750000176718,-0.0692572505787427 +268256,1341.280000017672,-0.06925723361382852 +268257,1341.285000017672,-0.06925721664860865 +268258,1341.2900000176721,-0.06925719968308314 +268259,1341.2950000176722,-0.06925718271725198 +268260,1341.3000000176723,-0.06925716575111523 +268261,1341.3050000176725,-0.06925714878467294 +268262,1341.3100000176726,-0.0692571318179251 +268263,1341.3150000176727,-0.06925711485087176 +268264,1341.3200000176728,-0.06925709788351295 +268265,1341.325000017673,-0.06925708091584867 +268266,1341.330000017673,-0.06925706394787899 +268267,1341.335000017673,-0.06925704697960393 +268268,1341.3400000176732,-0.0692570300110235 +268269,1341.3450000176733,-0.06925701304213776 +268270,1341.3500000176734,-0.0692569960729467 +268271,1341.3550000176735,-0.0692569791034504 +268272,1341.3600000176737,-0.06925696213364885 +268273,1341.3650000176738,-0.06925694516354208 +268274,1341.3700000176739,-0.06925692819313015 +268275,1341.375000017674,-0.06925691122241306 +268276,1341.380000017674,-0.06925689425139087 +268277,1341.3850000176742,-0.06925687728006358 +268278,1341.3900000176743,-0.06925686030843123 +268279,1341.3950000176744,-0.06925684333649386 +268280,1341.4000000176745,-0.0692568263642515 +268281,1341.4050000176746,-0.06925680939170416 +268282,1341.4100000176747,-0.06925679241885188 +268283,1341.4150000176749,-0.0692567754456947 +268284,1341.420000017675,-0.06925675847223264 +268285,1341.425000017675,-0.06925674149846575 +268286,1341.4300000176752,-0.06925672452439402 +268287,1341.4350000176753,-0.06925670755001749 +268288,1341.4400000176754,-0.06925669057533622 +268289,1341.4450000176755,-0.06925667360035023 +268290,1341.4500000176756,-0.06925665662505952 +268291,1341.4550000176757,-0.06925663964946414 +268292,1341.4600000176758,-0.06925662267356414 +268293,1341.465000017676,-0.06925660569735952 +268294,1341.470000017676,-0.06925658872085033 +268295,1341.4750000176762,-0.0692565717440366 +268296,1341.4800000176763,-0.06925655476691833 +268297,1341.4850000176764,-0.06925653778949559 +268298,1341.4900000176765,-0.06925652081176836 +268299,1341.4950000176766,-0.06925650383373673 +268300,1341.5000000176767,-0.0692564868554007 +268301,1341.5050000176768,-0.06925646987676028 +268302,1341.510000017677,-0.06925645289781554 +268303,1341.515000017677,-0.06925643591856648 +268304,1341.5200000176771,-0.06925641893901315 +268305,1341.5250000176773,-0.06925640195915556 +268306,1341.5300000176774,-0.06925638497899375 +268307,1341.5350000176775,-0.06925636799852775 +268308,1341.5400000176776,-0.0692563510177576 +268309,1341.5450000176777,-0.06925633403668331 +268310,1341.5500000176778,-0.06925631705530493 +268311,1341.555000017678,-0.06925630007362246 +268312,1341.560000017678,-0.06925628309163596 +268313,1341.5650000176781,-0.06925626610934546 +268314,1341.5700000176782,-0.06925624912675098 +268315,1341.5750000176783,-0.06925623214385253 +268316,1341.5800000176785,-0.06925621516065017 +268317,1341.5850000176786,-0.06925619817714393 +268318,1341.5900000176787,-0.06925618119333382 +268319,1341.5950000176788,-0.06925616420921987 +268320,1341.600000017679,-0.06925614722480214 +268321,1341.605000017679,-0.06925613024008062 +268322,1341.610000017679,-0.06925611325505537 +268323,1341.6150000176792,-0.06925609626972641 +268324,1341.6200000176793,-0.06925607928409377 +268325,1341.6250000176794,-0.06925606229815749 +268326,1341.6300000176795,-0.06925604531191758 +268327,1341.6350000176797,-0.06925602832537407 +268328,1341.6400000176798,-0.06925601133852702 +268329,1341.6450000176799,-0.06925599435137643 +268330,1341.65000001768,-0.06925597736392235 +268331,1341.65500001768,-0.06925596037616479 +268332,1341.6600000176802,-0.06925594338810377 +268333,1341.6650000176803,-0.06925592639973936 +268334,1341.6700000176804,-0.06925590941107157 +268335,1341.6750000176805,-0.06925589242210044 +268336,1341.6800000176806,-0.06925587543282596 +268337,1341.6850000176807,-0.0692558584432482 +268338,1341.6900000176809,-0.06925584145336719 +268339,1341.695000017681,-0.06925582446318293 +268340,1341.700000017681,-0.0692558074726955 +268341,1341.7050000176812,-0.06925579048190489 +268342,1341.7100000176813,-0.06925577349081112 +268343,1341.7150000176814,-0.06925575649941426 +268344,1341.7200000176815,-0.06925573950771431 +268345,1341.7250000176816,-0.06925572251571131 +268346,1341.7300000176817,-0.06925570552340529 +268347,1341.7350000176818,-0.06925568853079629 +268348,1341.740000017682,-0.06925567153788433 +268349,1341.745000017682,-0.06925565454466942 +268350,1341.7500000176822,-0.06925563755115163 +268351,1341.7550000176823,-0.06925562055733098 +268352,1341.7600000176824,-0.06925560356320748 +268353,1341.7650000176825,-0.06925558656878116 +268354,1341.7700000176826,-0.06925556957405206 +268355,1341.7750000176827,-0.06925555257902022 +268356,1341.7800000176828,-0.06925553558368566 +268357,1341.785000017683,-0.0692555185880484 +268358,1341.790000017683,-0.06925550159210848 +268359,1341.7950000176832,-0.06925548459586593 +268360,1341.8000000176833,-0.0692554675993208 +268361,1341.8050000176834,-0.0692554506024731 +268362,1341.8100000176835,-0.06925543360532284 +268363,1341.8150000176836,-0.06925541660787007 +268364,1341.8200000176837,-0.06925539961011484 +268365,1341.8250000176838,-0.06925538261205715 +268366,1341.830000017684,-0.06925536561369704 +268367,1341.835000017684,-0.06925534861503453 +268368,1341.8400000176841,-0.06925533161606968 +268369,1341.8450000176842,-0.0692553146168025 +268370,1341.8500000176844,-0.06925529761723301 +268371,1341.8550000176845,-0.06925528061736126 +268372,1341.8600000176846,-0.06925526361718728 +268373,1341.8650000176847,-0.06925524661671109 +268374,1341.8700000176848,-0.06925522961593272 +268375,1341.875000017685,-0.0692552126148522 +268376,1341.880000017685,-0.06925519561346956 +268377,1341.8850000176851,-0.06925517861178483 +268378,1341.8900000176852,-0.06925516160979804 +268379,1341.8950000176853,-0.06925514460750923 +268380,1341.9000000176854,-0.06925512760491842 +268381,1341.9050000176856,-0.06925511060202565 +268382,1341.9100000176857,-0.06925509359883093 +268383,1341.9150000176858,-0.06925507659533431 +268384,1341.9200000176859,-0.0692550595915358 +268385,1341.925000017686,-0.06925504258743544 +268386,1341.930000017686,-0.06925502558303327 +268387,1341.9350000176862,-0.06925500857832932 +268388,1341.9400000176863,-0.06925499157332361 +268389,1341.9450000176864,-0.06925497456801617 +268390,1341.9500000176865,-0.06925495756240703 +268391,1341.9550000176866,-0.06925494055649624 +268392,1341.9600000176868,-0.0692549235502838 +268393,1341.9650000176869,-0.06925490654376977 +268394,1341.970000017687,-0.06925488953695415 +268395,1341.975000017687,-0.06925487252983699 +268396,1341.9800000176872,-0.06925485552241831 +268397,1341.9850000176873,-0.06925483851469816 +268398,1341.9900000176874,-0.06925482150667654 +268399,1341.9950000176875,-0.0692548044983535 +268400,1342.0000000176876,-0.06925478748972906 +268401,1342.0050000176877,-0.06925477048080325 +268402,1342.0100000176878,-0.06925475347157611 +268403,1342.015000017688,-0.06925473646204766 +268404,1342.020000017688,-0.06925471945221794 +268405,1342.0250000176882,-0.06925470244208698 +268406,1342.0300000176883,-0.0692546854316548 +268407,1342.0350000176884,-0.06925466842092146 +268408,1342.0400000176885,-0.06925465140988693 +268409,1342.0450000176886,-0.0692546343985513 +268410,1342.0500000176887,-0.06925461738691457 +268411,1342.0550000176888,-0.06925460037497679 +268412,1342.060000017689,-0.06925458336273796 +268413,1342.065000017689,-0.06925456635019814 +268414,1342.0700000176892,-0.06925454933735734 +268415,1342.0750000176893,-0.06925453232421559 +268416,1342.0800000176894,-0.06925451531077294 +268417,1342.0850000176895,-0.0692544982970294 +268418,1342.0900000176896,-0.06925448128298502 +268419,1342.0950000176897,-0.0692544642686398 +268420,1342.1000000176898,-0.06925444725399381 +268421,1342.10500001769,-0.06925443023904704 +268422,1342.11000001769,-0.06925441322379955 +268423,1342.1150000176901,-0.06925439620825136 +268424,1342.1200000176902,-0.06925437919240249 +268425,1342.1250000176904,-0.06925436217625298 +268426,1342.1300000176905,-0.06925434515980287 +268427,1342.1350000176906,-0.06925432814305217 +268428,1342.1400000176907,-0.06925431112600092 +268429,1342.1450000176908,-0.06925429410864915 +268430,1342.150000017691,-0.0692542770909969 +268431,1342.155000017691,-0.06925426007304418 +268432,1342.1600000176911,-0.06925424305479104 +268433,1342.1650000176912,-0.0692542260362375 +268434,1342.1700000176913,-0.06925420901738359 +268435,1342.1750000176914,-0.06925419199822935 +268436,1342.1800000176916,-0.06925417497877479 +268437,1342.1850000176917,-0.06925415795901994 +268438,1342.1900000176918,-0.06925414093896487 +268439,1342.1950000176919,-0.06925412391860956 +268440,1342.200000017692,-0.0692541068979541 +268441,1342.205000017692,-0.06925408987699845 +268442,1342.2100000176922,-0.06925407285574268 +268443,1342.2150000176923,-0.06925405583418681 +268444,1342.2200000176924,-0.06925403881233089 +268445,1342.2250000176925,-0.06925402179017494 +268446,1342.2300000176926,-0.06925400476771897 +268447,1342.2350000176928,-0.06925398774496302 +268448,1342.2400000176929,-0.06925397072190714 +268449,1342.245000017693,-0.06925395369855133 +268450,1342.250000017693,-0.06925393667489564 +268451,1342.2550000176932,-0.0692539196509401 +268452,1342.2600000176933,-0.06925390262668474 +268453,1342.2650000176934,-0.06925388560212957 +268454,1342.2700000176935,-0.06925386857727464 +268455,1342.2750000176936,-0.06925385155211998 +268456,1342.2800000176937,-0.06925383452666563 +268457,1342.2850000176938,-0.0692538175009116 +268458,1342.290000017694,-0.06925380047485792 +268459,1342.295000017694,-0.06925378344850464 +268460,1342.3000000176942,-0.06925376642185177 +268461,1342.3050000176943,-0.06925374939489935 +268462,1342.3100000176944,-0.0692537323676474 +268463,1342.3150000176945,-0.06925371534009599 +268464,1342.3200000176946,-0.0692536983122451 +268465,1342.3250000176947,-0.06925368128409477 +268466,1342.3300000176948,-0.06925366425564505 +268467,1342.335000017695,-0.06925364722689596 +268468,1342.340000017695,-0.06925363019784754 +268469,1342.3450000176952,-0.06925361316849982 +268470,1342.3500000176953,-0.0692535961388528 +268471,1342.3550000176954,-0.06925357910890653 +268472,1342.3600000176955,-0.06925356207866105 +268473,1342.3650000176956,-0.06925354504811639 +268474,1342.3700000176957,-0.06925352801727255 +268475,1342.3750000176958,-0.0692535109861296 +268476,1342.380000017696,-0.06925349395468754 +268477,1342.385000017696,-0.06925347692294644 +268478,1342.3900000176961,-0.06925345989090628 +268479,1342.3950000176962,-0.06925344285856713 +268480,1342.4000000176964,-0.069253425825929 +268481,1342.4050000176965,-0.06925340879299192 +268482,1342.4100000176966,-0.06925339175975594 +268483,1342.4150000176967,-0.06925337472622106 +268484,1342.4200000176968,-0.06925335769238733 +268485,1342.425000017697,-0.06925334065825477 +268486,1342.430000017697,-0.06925332362382342 +268487,1342.4350000176971,-0.06925330658909332 +268488,1342.4400000176972,-0.06925328955406447 +268489,1342.4450000176973,-0.06925327251873692 +268490,1342.4500000176974,-0.0692532554831107 +268491,1342.4550000176976,-0.06925323844718585 +268492,1342.4600000176977,-0.06925322141096238 +268493,1342.4650000176978,-0.06925320437444032 +268494,1342.4700000176979,-0.06925318733761973 +268495,1342.475000017698,-0.06925317030050061 +268496,1342.480000017698,-0.06925315326308301 +268497,1342.4850000176982,-0.06925313622536694 +268498,1342.4900000176983,-0.06925311918735245 +268499,1342.4950000176984,-0.06925310214903957 +268500,1342.5000000176985,-0.0692530851104283 +268501,1342.5050000176986,-0.0692530680715187 +268502,1342.5100000176988,-0.06925305103231079 +268503,1342.5150000176989,-0.06925303399280461 +268504,1342.520000017699,-0.06925301695300017 +268505,1342.525000017699,-0.06925299991289752 +268506,1342.5300000176992,-0.06925298287249669 +268507,1342.5350000176993,-0.0692529658317977 +268508,1342.5400000176994,-0.06925294879080059 +268509,1342.5450000176995,-0.06925293174950538 +268510,1342.5500000176996,-0.06925291470791212 +268511,1342.5550000176997,-0.0692528976660208 +268512,1342.5600000176998,-0.06925288062383149 +268513,1342.5650000177,-0.0692528635813442 +268514,1342.5700000177,-0.06925284653855898 +268515,1342.5750000177002,-0.06925282949547586 +268516,1342.5800000177003,-0.06925281245209483 +268517,1342.5850000177004,-0.06925279540841596 +268518,1342.5900000177005,-0.06925277836443929 +268519,1342.5950000177006,-0.0692527613201648 +268520,1342.6000000177007,-0.06925274427559257 +268521,1342.6050000177008,-0.0692527272307226 +268522,1342.610000017701,-0.06925271018555493 +268523,1342.615000017701,-0.0692526931400896 +268524,1342.6200000177012,-0.06925267609432662 +268525,1342.6250000177013,-0.06925265904826604 +268526,1342.6300000177014,-0.0692526420019079 +268527,1342.6350000177015,-0.06925262495525218 +268528,1342.6400000177016,-0.06925260790829896 +268529,1342.6450000177017,-0.06925259086104825 +268530,1342.6500000177018,-0.06925257381350008 +268531,1342.655000017702,-0.06925255676565449 +268532,1342.660000017702,-0.06925253971751151 +268533,1342.6650000177021,-0.06925252266907117 +268534,1342.6700000177023,-0.06925250562033348 +268535,1342.6750000177024,-0.0692524885712985 +268536,1342.6800000177025,-0.06925247152196624 +268537,1342.6850000177026,-0.06925245447233674 +268538,1342.6900000177027,-0.06925243742241002 +268539,1342.6950000177028,-0.06925242037218614 +268540,1342.700000017703,-0.0692524033216651 +268541,1342.705000017703,-0.06925238627084694 +268542,1342.7100000177031,-0.06925236921973169 +268543,1342.7150000177032,-0.06925235216831938 +268544,1342.7200000177033,-0.06925233511661003 +268545,1342.7250000177035,-0.06925231806460369 +268546,1342.7300000177036,-0.06925230101230039 +268547,1342.7350000177037,-0.06925228395970014 +268548,1342.7400000177038,-0.06925226690680299 +268549,1342.745000017704,-0.06925224985360896 +268550,1342.750000017704,-0.06925223280011808 +268551,1342.755000017704,-0.06925221574633039 +268552,1342.7600000177042,-0.06925219869224591 +268553,1342.7650000177043,-0.06925218163786469 +268554,1342.7700000177044,-0.06925216458318673 +268555,1342.7750000177045,-0.06925214752821209 +268556,1342.7800000177047,-0.06925213047294076 +268557,1342.7850000177048,-0.06925211341737282 +268558,1342.7900000177049,-0.06925209636150828 +268559,1342.795000017705,-0.06925207930534717 +268560,1342.800000017705,-0.06925206224888952 +268561,1342.8050000177052,-0.06925204519213535 +268562,1342.8100000177053,-0.0692520281350847 +268563,1342.8150000177054,-0.06925201107773761 +268564,1342.8200000177055,-0.06925199402009409 +268565,1342.8250000177056,-0.0692519769621542 +268566,1342.8300000177057,-0.06925195990391793 +268567,1342.8350000177059,-0.06925194284538533 +268568,1342.840000017706,-0.06925192578655644 +268569,1342.845000017706,-0.06925190872743128 +268570,1342.8500000177062,-0.06925189166800991 +268571,1342.8550000177063,-0.06925187460829231 +268572,1342.8600000177064,-0.06925185754827855 +268573,1342.8650000177065,-0.06925184048796863 +268574,1342.8700000177066,-0.06925182342736261 +268575,1342.8750000177067,-0.0692518063664605 +268576,1342.8800000177068,-0.06925178930526235 +268577,1342.885000017707,-0.06925177224376818 +268578,1342.890000017707,-0.069251755181978 +268579,1342.8950000177072,-0.06925173811989187 +268580,1342.9000000177073,-0.06925172105750982 +268581,1342.9050000177074,-0.06925170399483185 +268582,1342.9100000177075,-0.06925168693185803 +268583,1342.9150000177076,-0.06925166986858837 +268584,1342.9200000177077,-0.06925165280502289 +268585,1342.9250000177078,-0.06925163574116164 +268586,1342.930000017708,-0.06925161867700463 +268587,1342.935000017708,-0.06925160161255191 +268588,1342.9400000177081,-0.0692515845478035 +268589,1342.9450000177083,-0.06925156748275946 +268590,1342.9500000177084,-0.06925155041741977 +268591,1342.9550000177085,-0.06925153335178451 +268592,1342.9600000177086,-0.06925151628585367 +268593,1342.9650000177087,-0.06925149921962731 +268594,1342.9700000177088,-0.06925148215310545 +268595,1342.975000017709,-0.06925146508628811 +268596,1342.980000017709,-0.06925144801917534 +268597,1342.9850000177091,-0.06925143095176714 +268598,1342.9900000177092,-0.06925141388406357 +268599,1342.9950000177093,-0.06925139681606464 +268600,1343.0000000177095,-0.0692513797477704 +268601,1343.0050000177096,-0.06925136267918088 +268602,1343.0100000177097,-0.06925134561029608 +268603,1343.0150000177098,-0.06925132854111608 +268604,1343.02000001771,-0.06925131147164088 +268605,1343.02500001771,-0.06925129440187051 +268606,1343.03000001771,-0.069251277331805 +268607,1343.0350000177102,-0.06925126026144439 +268608,1343.0400000177103,-0.06925124319078871 +268609,1343.0450000177104,-0.069251226119838 +268610,1343.0500000177105,-0.06925120904859226 +268611,1343.0550000177107,-0.06925119197705155 +268612,1343.0600000177108,-0.06925117490521587 +268613,1343.0650000177109,-0.06925115783308529 +268614,1343.070000017711,-0.06925114076065982 +268615,1343.075000017711,-0.06925112368793947 +268616,1343.0800000177112,-0.06925110661492431 +268617,1343.0850000177113,-0.06925108954161435 +268618,1343.0900000177114,-0.06925107246800963 +268619,1343.0950000177115,-0.06925105539411017 +268620,1343.1000000177116,-0.069251038319916 +268621,1343.1050000177117,-0.06925102124542716 +268622,1343.1100000177119,-0.06925100417064367 +268623,1343.115000017712,-0.06925098709556557 +268624,1343.120000017712,-0.06925097002019288 +268625,1343.1250000177122,-0.06925095294452566 +268626,1343.1300000177123,-0.06925093586856389 +268627,1343.1350000177124,-0.06925091879230764 +268628,1343.1400000177125,-0.06925090171575694 +268629,1343.1450000177126,-0.0692508846389118 +268630,1343.1500000177127,-0.06925086756177228 +268631,1343.1550000177128,-0.06925085048433836 +268632,1343.160000017713,-0.06925083340661012 +268633,1343.165000017713,-0.06925081632858757 +268634,1343.1700000177132,-0.06925079925027075 +268635,1343.1750000177133,-0.06925078217165968 +268636,1343.1800000177134,-0.0692507650927544 +268637,1343.1850000177135,-0.06925074801355492 +268638,1343.1900000177136,-0.06925073093406131 +268639,1343.1950000177137,-0.06925071385427357 +268640,1343.2000000177138,-0.06925069677419174 +268641,1343.205000017714,-0.06925067969381585 +268642,1343.210000017714,-0.06925066261314593 +268643,1343.2150000177141,-0.06925064553218199 +268644,1343.2200000177143,-0.0692506284509241 +268645,1343.2250000177144,-0.06925061136937227 +268646,1343.2300000177145,-0.06925059428752653 +268647,1343.2350000177146,-0.06925057720538691 +268648,1343.2400000177147,-0.06925056012295344 +268649,1343.2450000177148,-0.06925054304022617 +268650,1343.250000017715,-0.0692505259572051 +268651,1343.255000017715,-0.06925050887389028 +268652,1343.2600000177151,-0.06925049179028174 +268653,1343.2650000177152,-0.0692504747063795 +268654,1343.2700000177153,-0.06925045762218363 +268655,1343.2750000177155,-0.0692504405376941 +268656,1343.2800000177156,-0.06925042345291096 +268657,1343.2850000177157,-0.06925040636783428 +268658,1343.2900000177158,-0.06925038928246405 +268659,1343.295000017716,-0.0692503721968003 +268660,1343.300000017716,-0.06925035511084308 +268661,1343.305000017716,-0.06925033802459242 +268662,1343.3100000177162,-0.06925032093804835 +268663,1343.3150000177163,-0.06925030385121089 +268664,1343.3200000177164,-0.06925028676408007 +268665,1343.3250000177165,-0.06925026967665593 +268666,1343.3300000177167,-0.06925025258893851 +268667,1343.3350000177168,-0.06925023550092782 +268668,1343.3400000177169,-0.0692502184126239 +268669,1343.345000017717,-0.06925020132402677 +268670,1343.350000017717,-0.06925018423513649 +268671,1343.3550000177172,-0.06925016714595306 +268672,1343.3600000177173,-0.06925015005647651 +268673,1343.3650000177174,-0.0692501329667069 +268674,1343.3700000177175,-0.06925011587664423 +268675,1343.3750000177176,-0.06925009878628854 +268676,1343.3800000177177,-0.06925008169563988 +268677,1343.3850000177179,-0.06925006460469826 +268678,1343.390000017718,-0.06925004751346373 +268679,1343.395000017718,-0.0692500304219363 +268680,1343.4000000177182,-0.06925001333011599 +268681,1343.4050000177183,-0.06924999623800286 +268682,1343.4100000177184,-0.06924997914559694 +268683,1343.4150000177185,-0.06924996205289824 +268684,1343.4200000177186,-0.06924994495990681 +268685,1343.4250000177187,-0.06924992786662267 +268686,1343.4300000177188,-0.06924991077304586 +268687,1343.435000017719,-0.0692498936791764 +268688,1343.440000017719,-0.06924987658501432 +268689,1343.4450000177192,-0.06924985949055966 +268690,1343.4500000177193,-0.06924984239581244 +268691,1343.4550000177194,-0.0692498253007727 +268692,1343.4600000177195,-0.06924980820544048 +268693,1343.4650000177196,-0.06924979110981579 +268694,1343.4700000177197,-0.06924977401389867 +268695,1343.4750000177198,-0.06924975691768916 +268696,1343.48000001772,-0.06924973982118726 +268697,1343.48500001772,-0.06924972272439305 +268698,1343.4900000177201,-0.06924970562730651 +268699,1343.4950000177203,-0.06924968852992772 +268700,1343.5000000177204,-0.06924967143225666 +268701,1343.5050000177205,-0.06924965433429339 +268702,1343.5100000177206,-0.06924963723603794 +268703,1343.5150000177207,-0.06924962013749034 +268704,1343.5200000177208,-0.06924960303865062 +268705,1343.525000017721,-0.06924958593951881 +268706,1343.530000017721,-0.06924956884009494 +268707,1343.5350000177211,-0.06924955174037903 +268708,1343.5400000177212,-0.06924953464037113 +268709,1343.5450000177213,-0.06924951754007126 +268710,1343.5500000177215,-0.06924950043947946 +268711,1343.5550000177216,-0.06924948333859575 +268712,1343.5600000177217,-0.06924946623742016 +268713,1343.5650000177218,-0.06924944913595273 +268714,1343.570000017722,-0.0692494320341935 +268715,1343.575000017722,-0.06924941493214247 +268716,1343.580000017722,-0.0692493978297997 +268717,1343.5850000177222,-0.0692493807271652 +268718,1343.5900000177223,-0.06924936362423903 +268719,1343.5950000177224,-0.06924934652102119 +268720,1343.6000000177226,-0.06924932941751172 +268721,1343.6050000177227,-0.06924931231371065 +268722,1343.6100000177228,-0.06924929520961802 +268723,1343.6150000177229,-0.06924927810523385 +268724,1343.620000017723,-0.06924926100055818 +268725,1343.625000017723,-0.06924924389559103 +268726,1343.6300000177232,-0.06924922679033246 +268727,1343.6350000177233,-0.06924920968478246 +268728,1343.6400000177234,-0.06924919257894108 +268729,1343.6450000177235,-0.06924917547280834 +268730,1343.6500000177236,-0.0692491583663843 +268731,1343.6550000177238,-0.06924914125966898 +268732,1343.6600000177239,-0.06924912415266239 +268733,1343.665000017724,-0.06924910704536458 +268734,1343.670000017724,-0.06924908993777558 +268735,1343.6750000177242,-0.06924907282989541 +268736,1343.6800000177243,-0.0692490557217241 +268737,1343.6850000177244,-0.0692490386132617 +268738,1343.6900000177245,-0.06924902150450822 +268739,1343.6950000177246,-0.0692490043954637 +268740,1343.7000000177247,-0.06924898728612817 +268741,1343.7050000177248,-0.06924897017650167 +268742,1343.710000017725,-0.06924895306658423 +268743,1343.715000017725,-0.06924893595637585 +268744,1343.7200000177252,-0.06924891884587658 +268745,1343.7250000177253,-0.06924890173508648 +268746,1343.7300000177254,-0.06924888462400554 +268747,1343.7350000177255,-0.06924886751263383 +268748,1343.7400000177256,-0.06924885040097134 +268749,1343.7450000177257,-0.06924883328901812 +268750,1343.7500000177258,-0.06924881617677421 +268751,1343.755000017726,-0.06924879906423964 +268752,1343.760000017726,-0.06924878195141441 +268753,1343.7650000177262,-0.06924876483829859 +268754,1343.7700000177263,-0.06924874772489219 +268755,1343.7750000177264,-0.06924873061119523 +268756,1343.7800000177265,-0.06924871349720776 +268757,1343.7850000177266,-0.06924869638292983 +268758,1343.7900000177267,-0.06924867926836142 +268759,1343.7950000177268,-0.0692486621535026 +268760,1343.800000017727,-0.0692486450383534 +268761,1343.805000017727,-0.06924862792291384 +268762,1343.8100000177271,-0.06924861080718395 +268763,1343.8150000177272,-0.06924859369116376 +268764,1343.8200000177274,-0.06924857657485331 +268765,1343.8250000177275,-0.06924855945825262 +268766,1343.8300000177276,-0.06924854234136173 +268767,1343.8350000177277,-0.06924852522418065 +268768,1343.8400000177278,-0.06924850810670945 +268769,1343.845000017728,-0.06924849098894814 +268770,1343.850000017728,-0.06924847387089673 +268771,1343.8550000177281,-0.06924845675255528 +268772,1343.8600000177282,-0.06924843963392383 +268773,1343.8650000177283,-0.06924842251500238 +268774,1343.8700000177284,-0.06924840539579097 +268775,1343.8750000177286,-0.06924838827628964 +268776,1343.8800000177287,-0.06924837115649841 +268777,1343.8850000177288,-0.06924835403641733 +268778,1343.8900000177289,-0.06924833691604641 +268779,1343.895000017729,-0.0692483197953857 +268780,1343.900000017729,-0.06924830267443521 +268781,1343.9050000177292,-0.06924828555319498 +268782,1343.9100000177293,-0.06924826843166504 +268783,1343.9150000177294,-0.06924825130984542 +268784,1343.9200000177295,-0.06924823418773618 +268785,1343.9250000177296,-0.0692482170653373 +268786,1343.9300000177298,-0.06924819994264886 +268787,1343.9350000177299,-0.06924818281967085 +268788,1343.94000001773,-0.06924816569640332 +268789,1343.94500001773,-0.06924814857284631 +268790,1343.9500000177302,-0.06924813144899983 +268791,1343.9550000177303,-0.06924811432486394 +268792,1343.9600000177304,-0.06924809720043863 +268793,1343.9650000177305,-0.06924808007572397 +268794,1343.9700000177306,-0.06924806295071999 +268795,1343.9750000177307,-0.0692480458254267 +268796,1343.9800000177308,-0.06924802869984412 +268797,1343.985000017731,-0.0692480115739723 +268798,1343.990000017731,-0.06924799444781127 +268799,1343.9950000177312,-0.06924797732136106 +268800,1344.0000000177313,-0.06924796019462172 +268801,1344.0050000177314,-0.06924794306759324 +268802,1344.0100000177315,-0.06924792594027568 +268803,1344.0150000177316,-0.06924790881266907 +268804,1344.0200000177317,-0.06924789168477344 +268805,1344.0250000177318,-0.06924787455658882 +268806,1344.030000017732,-0.06924785742811522 +268807,1344.035000017732,-0.0692478402993527 +268808,1344.0400000177322,-0.06924782317030129 +268809,1344.0450000177323,-0.069247806040961 +268810,1344.0500000177324,-0.06924778891133186 +268811,1344.0550000177325,-0.06924777178141393 +268812,1344.0600000177326,-0.06924775465120724 +268813,1344.0650000177327,-0.06924773752071178 +268814,1344.0700000177328,-0.06924772038992762 +268815,1344.075000017733,-0.06924770325885479 +268816,1344.080000017733,-0.0692476861274933 +268817,1344.0850000177331,-0.06924766899584318 +268818,1344.0900000177332,-0.06924765186390448 +268819,1344.0950000177334,-0.06924763473167722 +268820,1344.1000000177335,-0.06924761759916144 +268821,1344.1050000177336,-0.06924760046635717 +268822,1344.1100000177337,-0.06924758333326443 +268823,1344.1150000177338,-0.06924756619988326 +268824,1344.120000017734,-0.06924754906621368 +268825,1344.125000017734,-0.06924753193225575 +268826,1344.1300000177341,-0.06924751479800946 +268827,1344.1350000177342,-0.06924749766347488 +268828,1344.1400000177343,-0.06924748052865201 +268829,1344.1450000177344,-0.0692474633935409 +268830,1344.1500000177346,-0.06924744625814157 +268831,1344.1550000177347,-0.06924742912245405 +268832,1344.1600000177348,-0.06924741198647838 +268833,1344.1650000177349,-0.06924739485021461 +268834,1344.170000017735,-0.06924737771366272 +268835,1344.175000017735,-0.0692473605768228 +268836,1344.1800000177352,-0.06924734343969485 +268837,1344.1850000177353,-0.0692473263022789 +268838,1344.1900000177354,-0.06924730916457497 +268839,1344.1950000177355,-0.06924729202658311 +268840,1344.2000000177356,-0.06924727488830336 +268841,1344.2050000177358,-0.06924725774973572 +268842,1344.2100000177359,-0.06924724061088025 +268843,1344.215000017736,-0.06924722347173698 +268844,1344.220000017736,-0.06924720633230592 +268845,1344.2250000177362,-0.06924718919258711 +268846,1344.2300000177363,-0.0692471720525806 +268847,1344.2350000177364,-0.06924715491228639 +268848,1344.2400000177365,-0.06924713777170453 +268849,1344.2450000177366,-0.06924712063083506 +268850,1344.2500000177367,-0.06924710348967798 +268851,1344.2550000177368,-0.06924708634823336 +268852,1344.260000017737,-0.0692470692065012 +268853,1344.265000017737,-0.06924705206448155 +268854,1344.2700000177372,-0.06924703492217443 +268855,1344.2750000177373,-0.06924701777957988 +268856,1344.2800000177374,-0.06924700063669792 +268857,1344.2850000177375,-0.06924698349352859 +268858,1344.2900000177376,-0.06924696635007192 +268859,1344.2950000177377,-0.06924694920632794 +268860,1344.3000000177378,-0.06924693206229668 +268861,1344.305000017738,-0.06924691491797817 +268862,1344.310000017738,-0.06924689777337245 +268863,1344.3150000177382,-0.06924688062847954 +268864,1344.3200000177383,-0.06924686348329949 +268865,1344.3250000177384,-0.0692468463378323 +268866,1344.3300000177385,-0.06924682919207804 +268867,1344.3350000177386,-0.06924681204603671 +268868,1344.3400000177387,-0.06924679489970835 +268869,1344.3450000177388,-0.06924677775309299 +268870,1344.350000017739,-0.06924676060619066 +268871,1344.355000017739,-0.0692467434590014 +268872,1344.3600000177391,-0.06924672631152526 +268873,1344.3650000177392,-0.06924670916376222 +268874,1344.3700000177394,-0.06924669201571235 +268875,1344.3750000177395,-0.06924667486737567 +268876,1344.3800000177396,-0.0692466577187522 +268877,1344.3850000177397,-0.069246640569842 +268878,1344.3900000177398,-0.06924662342064508 +268879,1344.39500001774,-0.06924660627116147 +268880,1344.40000001774,-0.06924658912139121 +268881,1344.4050000177401,-0.06924657197133433 +268882,1344.4100000177402,-0.06924655482099083 +268883,1344.4150000177403,-0.0692465376703608 +268884,1344.4200000177404,-0.06924652051944424 +268885,1344.4250000177406,-0.06924650336824119 +268886,1344.4300000177407,-0.06924648621675167 +268887,1344.4350000177408,-0.0692464690649757 +268888,1344.4400000177409,-0.06924645191291333 +268889,1344.445000017741,-0.06924643476056459 +268890,1344.450000017741,-0.06924641760792952 +268891,1344.4550000177412,-0.06924640045500813 +268892,1344.4600000177413,-0.06924638330180047 +268893,1344.4650000177414,-0.06924636614830657 +268894,1344.4700000177415,-0.06924634899452645 +268895,1344.4750000177416,-0.06924633184046013 +268896,1344.4800000177418,-0.06924631468610767 +268897,1344.4850000177419,-0.06924629753146909 +268898,1344.490000017742,-0.06924628037654441 +268899,1344.495000017742,-0.06924626322133369 +268900,1344.5000000177422,-0.06924624606583694 +268901,1344.5050000177423,-0.06924622891005419 +268902,1344.5100000177424,-0.06924621175398546 +268903,1344.5150000177425,-0.06924619459763082 +268904,1344.5200000177426,-0.06924617744099026 +268905,1344.5250000177427,-0.06924616028406384 +268906,1344.5300000177429,-0.0692461431268516 +268907,1344.535000017743,-0.06924612596935353 +268908,1344.540000017743,-0.06924610881156969 +268909,1344.5450000177432,-0.06924609165350008 +268910,1344.5500000177433,-0.06924607449514478 +268911,1344.5550000177434,-0.0692460573365038 +268912,1344.5600000177435,-0.06924604017757716 +268913,1344.5650000177436,-0.0692460230183649 +268914,1344.5700000177437,-0.06924600585886705 +268915,1344.5750000177438,-0.06924598869908366 +268916,1344.580000017744,-0.06924597153901474 +268917,1344.585000017744,-0.06924595437866031 +268918,1344.5900000177442,-0.06924593721802043 +268919,1344.5950000177443,-0.06924592005709511 +268920,1344.6000000177444,-0.06924590289588439 +268921,1344.6050000177445,-0.0692458857343883 +268922,1344.6100000177446,-0.06924586857260687 +268923,1344.6150000177447,-0.06924585141054014 +268924,1344.6200000177448,-0.06924583424818813 +268925,1344.625000017745,-0.06924581708555089 +268926,1344.630000017745,-0.06924579992262843 +268927,1344.6350000177451,-0.0692457827594208 +268928,1344.6400000177453,-0.069245765595928 +268929,1344.6450000177454,-0.06924574843215009 +268930,1344.6500000177455,-0.0692457312680871 +268931,1344.6550000177456,-0.06924571410373905 +268932,1344.6600000177457,-0.06924569693910598 +268933,1344.6650000177458,-0.06924567977418793 +268934,1344.670000017746,-0.0692456626089849 +268935,1344.675000017746,-0.06924564544349696 +268936,1344.6800000177461,-0.06924562827772411 +268937,1344.6850000177462,-0.0692456111116664 +268938,1344.6900000177463,-0.06924559394532386 +268939,1344.6950000177465,-0.06924557677869649 +268940,1344.7000000177466,-0.06924555961178436 +268941,1344.7050000177467,-0.0692455424445875 +268942,1344.7100000177468,-0.06924552527710592 +268943,1344.715000017747,-0.06924550810933967 +268944,1344.720000017747,-0.06924549094128876 +268945,1344.725000017747,-0.06924547377295324 +268946,1344.7300000177472,-0.06924545660433316 +268947,1344.7350000177473,-0.0692454394354285 +268948,1344.7400000177474,-0.06924542226623935 +268949,1344.7450000177475,-0.06924540509676567 +268950,1344.7500000177477,-0.06924538792700756 +268951,1344.7550000177478,-0.06924537075696502 +268952,1344.7600000177479,-0.06924535358663808 +268953,1344.765000017748,-0.06924533641602677 +268954,1344.770000017748,-0.06924531924513114 +268955,1344.7750000177482,-0.06924530207395121 +268956,1344.7800000177483,-0.069245284902487 +268957,1344.7850000177484,-0.06924526773073857 +268958,1344.7900000177485,-0.06924525055870592 +268959,1344.7950000177486,-0.0692452333863891 +268960,1344.8000000177487,-0.06924521621378814 +268961,1344.8050000177489,-0.06924519904090307 +268962,1344.810000017749,-0.0692451818677339 +268963,1344.815000017749,-0.0692451646942807 +268964,1344.8200000177492,-0.06924514752054349 +268965,1344.8250000177493,-0.06924513034652227 +268966,1344.8300000177494,-0.06924511317221711 +268967,1344.8350000177495,-0.06924509599762803 +268968,1344.8400000177496,-0.06924507882275505 +268969,1344.8450000177497,-0.06924506164759822 +268970,1344.8500000177498,-0.06924504447215755 +268971,1344.85500001775,-0.06924502729643311 +268972,1344.86000001775,-0.06924501012042487 +268973,1344.8650000177502,-0.06924499294413292 +268974,1344.8700000177503,-0.06924497576755727 +268975,1344.8750000177504,-0.06924495859069793 +268976,1344.8800000177505,-0.06924494141355497 +268977,1344.8850000177506,-0.0692449242361284 +268978,1344.8900000177507,-0.06924490705841825 +268979,1344.8950000177508,-0.06924488988042456 +268980,1344.900000017751,-0.06924487270214735 +268981,1344.905000017751,-0.06924485552358665 +268982,1344.9100000177511,-0.0692448383447425 +268983,1344.9150000177513,-0.06924482116561495 +268984,1344.9200000177514,-0.069244803986204 +268985,1344.9250000177515,-0.06924478680650971 +268986,1344.9300000177516,-0.06924476962653207 +268987,1344.9350000177517,-0.06924475244627117 +268988,1344.9400000177518,-0.06924473526572698 +268989,1344.945000017752,-0.06924471808489957 +268990,1344.950000017752,-0.06924470090378897 +268991,1344.9550000177521,-0.0692446837223952 +268992,1344.9600000177522,-0.06924466654071829 +268993,1344.9650000177523,-0.06924464935875828 +268994,1344.9700000177525,-0.06924463217651519 +268995,1344.9750000177526,-0.06924461499398908 +268996,1344.9800000177527,-0.06924459781117995 +268997,1344.9850000177528,-0.06924458062808785 +268998,1344.990000017753,-0.0692445634447128 +268999,1344.995000017753,-0.06924454626105483 +269000,1345.000000017753,-0.069244529077114 +269001,1345.0050000177532,-0.0692445118928903 +269002,1345.0100000177533,-0.06924449470838379 +269003,1345.0150000177534,-0.06924447752359449 +269004,1345.0200000177535,-0.06924446033852243 +269005,1345.0250000177537,-0.06924444315316765 +269006,1345.0300000177538,-0.06924442596753018 +269007,1345.0350000177539,-0.06924440878161003 +269008,1345.040000017754,-0.06924439159540727 +269009,1345.045000017754,-0.06924437440892191 +269010,1345.0500000177542,-0.06924435722215397 +269011,1345.0550000177543,-0.0692443400351035 +269012,1345.0600000177544,-0.06924432284777053 +269013,1345.0650000177545,-0.06924430566015509 +269014,1345.0700000177546,-0.0692442884722572 +269015,1345.0750000177547,-0.06924427128407694 +269016,1345.0800000177549,-0.06924425409561427 +269017,1345.085000017755,-0.06924423690686926 +269018,1345.090000017755,-0.06924421971784195 +269019,1345.0950000177552,-0.06924420252853235 +269020,1345.1000000177553,-0.0692441853389405 +269021,1345.1050000177554,-0.06924416814906642 +269022,1345.1100000177555,-0.06924415095891016 +269023,1345.1150000177556,-0.06924413376847176 +269024,1345.1200000177557,-0.06924411657775122 +269025,1345.1250000177558,-0.0692440993867486 +269026,1345.130000017756,-0.06924408219546391 +269027,1345.135000017756,-0.0692440650038972 +269028,1345.1400000177562,-0.06924404781204847 +269029,1345.1450000177563,-0.0692440306199178 +269030,1345.1500000177564,-0.06924401342750518 +269031,1345.1550000177565,-0.06924399623481067 +269032,1345.1600000177566,-0.06924397904183428 +269033,1345.1650000177567,-0.06924396184857606 +269034,1345.1700000177568,-0.06924394465503603 +269035,1345.175000017757,-0.06924392746121423 +269036,1345.180000017757,-0.06924391026711067 +269037,1345.1850000177571,-0.06924389307272541 +269038,1345.1900000177573,-0.06924387587805847 +269039,1345.1950000177574,-0.0692438586831099 +269040,1345.2000000177575,-0.06924384148787968 +269041,1345.2050000177576,-0.06924382429236789 +269042,1345.2100000177577,-0.06924380709657454 +269043,1345.2150000177578,-0.06924378990049967 +269044,1345.220000017758,-0.06924377270414332 +269045,1345.225000017758,-0.06924375550750551 +269046,1345.2300000177581,-0.06924373831058626 +269047,1345.2350000177582,-0.06924372111338563 +269048,1345.2400000177583,-0.06924370391590362 +269049,1345.2450000177585,-0.06924368671814028 +269050,1345.2500000177586,-0.06924366952009565 +269051,1345.2550000177587,-0.06924365232176975 +269052,1345.2600000177588,-0.0692436351231626 +269053,1345.265000017759,-0.06924361792427426 +269054,1345.270000017759,-0.06924360072510474 +269055,1345.275000017759,-0.06924358352565407 +269056,1345.2800000177592,-0.06924356632592231 +269057,1345.2850000177593,-0.06924354912590945 +269058,1345.2900000177594,-0.06924353192561555 +269059,1345.2950000177595,-0.06924351472504064 +269060,1345.3000000177597,-0.06924349752418475 +269061,1345.3050000177598,-0.0692434803230479 +269062,1345.3100000177599,-0.06924346312163014 +269063,1345.31500001776,-0.06924344591993149 +269064,1345.32000001776,-0.06924342871795199 +269065,1345.3250000177602,-0.06924341151569165 +269066,1345.3300000177603,-0.06924339431315052 +269067,1345.3350000177604,-0.06924337711032864 +269068,1345.3400000177605,-0.06924335990722602 +269069,1345.3450000177606,-0.06924334270384272 +269070,1345.3500000177607,-0.06924332550017873 +269071,1345.3550000177609,-0.06924330829623412 +269072,1345.360000017761,-0.0692432910920089 +269073,1345.365000017761,-0.06924327388750312 +269074,1345.3700000177612,-0.06924325668271679 +269075,1345.3750000177613,-0.06924323947764997 +269076,1345.3800000177614,-0.06924322227230266 +269077,1345.3850000177615,-0.0692432050666749 +269078,1345.3900000177616,-0.06924318786076673 +269079,1345.3950000177617,-0.06924317065457819 +269080,1345.4000000177618,-0.06924315344810932 +269081,1345.405000017762,-0.06924313624136011 +269082,1345.410000017762,-0.06924311903433061 +269083,1345.4150000177622,-0.06924310182702088 +269084,1345.4200000177623,-0.06924308461943092 +269085,1345.4250000177624,-0.06924306741156076 +269086,1345.4300000177625,-0.06924305020341046 +269087,1345.4350000177626,-0.06924303299498001 +269088,1345.4400000177627,-0.06924301578626949 +269089,1345.4450000177628,-0.06924299857727888 +269090,1345.450000017763,-0.06924298136800826 +269091,1345.455000017763,-0.06924296415845764 +269092,1345.4600000177632,-0.06924294694862705 +269093,1345.4650000177633,-0.06924292973851652 +269094,1345.4700000177634,-0.0692429125281261 +269095,1345.4750000177635,-0.06924289531745581 +269096,1345.4800000177636,-0.06924287810650567 +269097,1345.4850000177637,-0.06924286089527573 +269098,1345.4900000177638,-0.069242843683766 +269099,1345.495000017764,-0.06924282647197653 +269100,1345.500000017764,-0.06924280925990735 +269101,1345.5050000177641,-0.0692427920475585 +269102,1345.5100000177642,-0.06924277483493 +269103,1345.5150000177644,-0.06924275762202187 +269104,1345.5200000177645,-0.06924274040883417 +269105,1345.5250000177646,-0.06924272319536691 +269106,1345.5300000177647,-0.06924270598162012 +269107,1345.5350000177648,-0.06924268876759385 +269108,1345.540000017765,-0.06924267155328812 +269109,1345.545000017765,-0.06924265433870297 +269110,1345.5500000177651,-0.06924263712383841 +269111,1345.5550000177652,-0.0692426199086945 +269112,1345.5600000177653,-0.06924260269327125 +269113,1345.5650000177654,-0.06924258547756872 +269114,1345.5700000177656,-0.06924256826158691 +269115,1345.5750000177657,-0.06924255104532587 +269116,1345.5800000177658,-0.06924253382878563 +269117,1345.5850000177659,-0.06924251661196622 +269118,1345.590000017766,-0.06924249939486765 +269119,1345.595000017766,-0.06924248217748999 +269120,1345.6000000177662,-0.06924246495983326 +269121,1345.6050000177663,-0.06924244774189749 +269122,1345.6100000177664,-0.06924243052368269 +269123,1345.6150000177665,-0.06924241330518892 +269124,1345.6200000177666,-0.06924239608641619 +269125,1345.6250000177668,-0.06924237886736456 +269126,1345.6300000177669,-0.06924236164803405 +269127,1345.635000017767,-0.06924234442842467 +269128,1345.640000017767,-0.06924232720853649 +269129,1345.6450000177672,-0.0692423099883695 +269130,1345.6500000177673,-0.06924229276792376 +269131,1345.6550000177674,-0.0692422755471993 +269132,1345.6600000177675,-0.06924225832619615 +269133,1345.6650000177676,-0.06924224110491434 +269134,1345.6700000177677,-0.06924222388335391 +269135,1345.6750000177678,-0.06924220666151486 +269136,1345.680000017768,-0.06924218943939725 +269137,1345.685000017768,-0.06924217221700112 +269138,1345.6900000177682,-0.06924215499432647 +269139,1345.6950000177683,-0.06924213777137336 +269140,1345.7000000177684,-0.06924212054814181 +269141,1345.7050000177685,-0.06924210332463186 +269142,1345.7100000177686,-0.06924208610084354 +269143,1345.7150000177687,-0.06924206887677688 +269144,1345.7200000177688,-0.0692420516524319 +269145,1345.725000017769,-0.06924203442780864 +269146,1345.730000017769,-0.06924201720290715 +269147,1345.7350000177692,-0.06924199997772744 +269148,1345.7400000177693,-0.06924198275226953 +269149,1345.7450000177694,-0.06924196552653349 +269150,1345.7500000177695,-0.06924194830051933 +269151,1345.7550000177696,-0.06924193107422708 +269152,1345.7600000177697,-0.06924191384765677 +269153,1345.7650000177698,-0.06924189662080843 +269154,1345.77000001777,-0.06924187939368211 +269155,1345.77500001777,-0.06924186216627784 +269156,1345.7800000177701,-0.06924184493859563 +269157,1345.7850000177702,-0.06924182771063553 +269158,1345.7900000177704,-0.06924181048239757 +269159,1345.7950000177705,-0.06924179325388179 +269160,1345.8000000177706,-0.0692417760250882 +269161,1345.8050000177707,-0.06924175879601684 +269162,1345.8100000177708,-0.06924174156666776 +269163,1345.815000017771,-0.06924172433704097 +269164,1345.820000017771,-0.06924170710713651 +269165,1345.8250000177711,-0.06924168987695441 +269166,1345.8300000177712,-0.06924167264649471 +269167,1345.8350000177713,-0.06924165541575743 +269168,1345.8400000177714,-0.0692416381847426 +269169,1345.8450000177716,-0.06924162095345027 +269170,1345.8500000177717,-0.06924160372188046 +269171,1345.8550000177718,-0.06924158649003319 +269172,1345.8600000177719,-0.06924156925790852 +269173,1345.865000017772,-0.06924155202550646 +269174,1345.870000017772,-0.06924153479282705 +269175,1345.8750000177722,-0.06924151755987032 +269176,1345.8800000177723,-0.0692415003266363 +269177,1345.8850000177724,-0.06924148309312503 +269178,1345.8900000177725,-0.06924146585933653 +269179,1345.8950000177726,-0.06924144862527085 +269180,1345.9000000177728,-0.06924143139092802 +269181,1345.9050000177729,-0.06924141415630805 +269182,1345.910000017773,-0.069241396921411 +269183,1345.915000017773,-0.06924137968623686 +269184,1345.9200000177732,-0.06924136245078572 +269185,1345.9250000177733,-0.06924134521505756 +269186,1345.9300000177734,-0.06924132797905244 +269187,1345.9350000177735,-0.0692413107427704 +269188,1345.9400000177736,-0.06924129350621143 +269189,1345.9450000177737,-0.06924127626937561 +269190,1345.9500000177738,-0.06924125903226294 +269191,1345.955000017774,-0.06924124179487348 +269192,1345.960000017774,-0.06924122455720723 +269193,1345.9650000177742,-0.06924120731926425 +269194,1345.9700000177743,-0.06924119008104455 +269195,1345.9750000177744,-0.06924117284254817 +269196,1345.9800000177745,-0.06924115560377514 +269197,1345.9850000177746,-0.06924113836472551 +269198,1345.9900000177747,-0.06924112112539929 +269199,1345.9950000177748,-0.06924110388579652 +269200,1346.000000017775,-0.06924108664591724 +269201,1346.005000017775,-0.06924106940576147 +269202,1346.0100000177752,-0.06924105216532923 +269203,1346.0150000177753,-0.0692410349246206 +269204,1346.0200000177754,-0.06924101768363557 +269205,1346.0250000177755,-0.06924100044237418 +269206,1346.0300000177756,-0.06924098320083645 +269207,1346.0350000177757,-0.06924096595902245 +269208,1346.0400000177758,-0.06924094871693218 +269209,1346.045000017776,-0.06924093147456568 +269210,1346.050000017776,-0.06924091423192298 +269211,1346.0550000177761,-0.06924089698900412 +269212,1346.0600000177762,-0.06924087974580914 +269213,1346.0650000177764,-0.06924086250233805 +269214,1346.0700000177765,-0.06924084525859088 +269215,1346.0750000177766,-0.06924082801456768 +269216,1346.0800000177767,-0.06924081077026849 +269217,1346.0850000177768,-0.0692407935256933 +269218,1346.090000017777,-0.06924077628084219 +269219,1346.095000017777,-0.06924075903571517 +269220,1346.1000000177771,-0.06924074179031225 +269221,1346.1050000177772,-0.06924072454463351 +269222,1346.1100000177773,-0.06924070729867896 +269223,1346.1150000177774,-0.06924069005244862 +269224,1346.1200000177776,-0.06924067280594255 +269225,1346.1250000177777,-0.06924065555916076 +269226,1346.1300000177778,-0.06924063831210327 +269227,1346.1350000177779,-0.06924062106477014 +269228,1346.140000017778,-0.06924060381716139 +269229,1346.145000017778,-0.06924058656927706 +269230,1346.1500000177782,-0.06924056932111716 +269231,1346.1550000177783,-0.06924055207268175 +269232,1346.1600000177784,-0.06924053482397084 +269233,1346.1650000177785,-0.06924051757498448 +269234,1346.1700000177786,-0.0692405003257227 +269235,1346.1750000177788,-0.06924048307618551 +269236,1346.1800000177789,-0.06924046582637297 +269237,1346.185000017779,-0.0692404485762851 +269238,1346.190000017779,-0.06924043132592193 +269239,1346.1950000177792,-0.0692404140752835 +269240,1346.2000000177793,-0.06924039682436983 +269241,1346.2050000177794,-0.06924037957318097 +269242,1346.2100000177795,-0.06924036232171693 +269243,1346.2150000177796,-0.06924034506997775 +269244,1346.2200000177797,-0.06924032781796348 +269245,1346.2250000177798,-0.06924031056567412 +269246,1346.23000001778,-0.06924029331310973 +269247,1346.23500001778,-0.06924027606027033 +269248,1346.2400000177802,-0.06924025880715597 +269249,1346.2450000177803,-0.06924024155376665 +269250,1346.2500000177804,-0.06924022430010243 +269251,1346.2550000177805,-0.06924020704616332 +269252,1346.2600000177806,-0.06924018979194936 +269253,1346.2650000177807,-0.06924017253746059 +269254,1346.2700000177808,-0.06924015528269704 +269255,1346.275000017781,-0.06924013802765874 +269256,1346.280000017781,-0.06924012077234573 +269257,1346.2850000177812,-0.06924010351675802 +269258,1346.2900000177813,-0.06924008626089567 +269259,1346.2950000177814,-0.0692400690047587 +269260,1346.3000000177815,-0.06924005174834713 +269261,1346.3050000177816,-0.06924003449166101 +269262,1346.3100000177817,-0.06924001723470036 +269263,1346.3150000177818,-0.06923999997746522 +269264,1346.320000017782,-0.06923998271995561 +269265,1346.325000017782,-0.0692399654621716 +269266,1346.3300000177821,-0.06923994820411318 +269267,1346.3350000177822,-0.06923993094578039 +269268,1346.3400000177824,-0.06923991368717328 +269269,1346.3450000177825,-0.06923989642829186 +269270,1346.3500000177826,-0.06923987916913618 +269271,1346.3550000177827,-0.06923986190970627 +269272,1346.3600000177828,-0.06923984465000214 +269273,1346.365000017783,-0.06923982739002385 +269274,1346.370000017783,-0.06923981012977143 +269275,1346.3750000177831,-0.06923979286924489 +269276,1346.3800000177832,-0.0692397756084443 +269277,1346.3850000177833,-0.06923975834736965 +269278,1346.3900000177834,-0.06923974108602099 +269279,1346.3950000177836,-0.06923972382439836 +269280,1346.4000000177837,-0.06923970656250178 +269281,1346.4050000177838,-0.0692396893003313 +269282,1346.410000017784,-0.06923967203788693 +269283,1346.415000017784,-0.06923965477516872 +269284,1346.420000017784,-0.06923963751217668 +269285,1346.4250000177842,-0.06923962024891088 +269286,1346.4300000177843,-0.06923960298537132 +269287,1346.4350000177844,-0.06923958572155804 +269288,1346.4400000177845,-0.06923956845747108 +269289,1346.4450000177847,-0.06923955119311045 +269290,1346.4500000177848,-0.06923953392847622 +269291,1346.4550000177849,-0.0692395166635684 +269292,1346.460000017785,-0.06923949939838701 +269293,1346.465000017785,-0.0692394821329321 +269294,1346.4700000177852,-0.0692394648672037 +269295,1346.4750000177853,-0.06923944760120183 +269296,1346.4800000177854,-0.06923943033492654 +269297,1346.4850000177855,-0.06923941306837786 +269298,1346.4900000177856,-0.06923939580155582 +269299,1346.4950000177857,-0.06923937853446044 +269300,1346.5000000177859,-0.06923936126709176 +269301,1346.505000017786,-0.06923934399944984 +269302,1346.510000017786,-0.06923932673153466 +269303,1346.5150000177862,-0.06923930946334629 +269304,1346.5200000177863,-0.06923929219488474 +269305,1346.5250000177864,-0.06923927492615006 +269306,1346.5300000177865,-0.06923925765714227 +269307,1346.5350000177866,-0.06923924038786142 +269308,1346.5400000177867,-0.06923922311830752 +269309,1346.5450000177868,-0.06923920584848063 +269310,1346.550000017787,-0.06923918857838075 +269311,1346.555000017787,-0.06923917130800793 +269312,1346.5600000177872,-0.0692391540373622 +269313,1346.5650000177873,-0.0692391367664436 +269314,1346.5700000177874,-0.06923911949525215 +269315,1346.5750000177875,-0.06923910222378787 +269316,1346.5800000177876,-0.06923908495205082 +269317,1346.5850000177877,-0.06923906768004102 +269318,1346.5900000177878,-0.06923905040775852 +269319,1346.595000017788,-0.06923903313520331 +269320,1346.600000017788,-0.06923901586237546 +269321,1346.6050000177881,-0.069238998589275 +269322,1346.6100000177883,-0.06923898131590195 +269323,1346.6150000177884,-0.06923896404225634 +269324,1346.6200000177885,-0.06923894676833821 +269325,1346.6250000177886,-0.0692389294941476 +269326,1346.6300000177887,-0.06923891221968452 +269327,1346.6350000177888,-0.06923889494494903 +269328,1346.640000017789,-0.06923887766994113 +269329,1346.645000017789,-0.06923886039466087 +269330,1346.6500000177891,-0.0692388431191083 +269331,1346.6550000177892,-0.06923882584328342 +269332,1346.6600000177893,-0.06923880856718628 +269333,1346.6650000177895,-0.06923879129081692 +269334,1346.6700000177896,-0.06923877401417536 +269335,1346.6750000177897,-0.06923875673726164 +269336,1346.6800000177898,-0.06923873946007578 +269337,1346.68500001779,-0.06923872218261781 +269338,1346.69000001779,-0.06923870490488777 +269339,1346.69500001779,-0.0692386876268857 +269340,1346.7000000177902,-0.06923867034861164 +269341,1346.7050000177903,-0.0692386530700656 +269342,1346.7100000177904,-0.06923863579124762 +269343,1346.7150000177905,-0.06923861851215773 +269344,1346.7200000177907,-0.06923860123279597 +269345,1346.7250000177908,-0.06923858395316237 +269346,1346.7300000177909,-0.06923856667325697 +269347,1346.735000017791,-0.06923854939307979 +269348,1346.740000017791,-0.06923853211263085 +269349,1346.7450000177912,-0.06923851483191021 +269350,1346.7500000177913,-0.06923849755091789 +269351,1346.7550000177914,-0.06923848026965392 +269352,1346.7600000177915,-0.06923846298811834 +269353,1346.7650000177916,-0.06923844570631119 +269354,1346.7700000177917,-0.06923842842423247 +269355,1346.7750000177919,-0.06923841114188224 +269356,1346.780000017792,-0.06923839385926053 +269357,1346.785000017792,-0.06923837657636736 +269358,1346.7900000177922,-0.06923835929320278 +269359,1346.7950000177923,-0.0692383420097668 +269360,1346.8000000177924,-0.0692383247260595 +269361,1346.8050000177925,-0.06923830744208084 +269362,1346.8100000177926,-0.06923829015783091 +269363,1346.8150000177927,-0.0692382728733097 +269364,1346.8200000177928,-0.06923825558851729 +269365,1346.825000017793,-0.06923823830345369 +269366,1346.830000017793,-0.06923822101811893 +269367,1346.8350000177932,-0.06923820373251303 +269368,1346.8400000177933,-0.06923818644663604 +269369,1346.8450000177934,-0.06923816916048799 +269370,1346.8500000177935,-0.06923815187406891 +269371,1346.8550000177936,-0.06923813458737882 +269372,1346.8600000177937,-0.06923811730041779 +269373,1346.8650000177938,-0.06923810001318581 +269374,1346.870000017794,-0.06923808272568295 +269375,1346.875000017794,-0.0692380654379092 +269376,1346.8800000177941,-0.06923804814986463 +269377,1346.8850000177943,-0.06923803086154925 +269378,1346.8900000177944,-0.0692380135729631 +269379,1346.8950000177945,-0.06923799628410622 +269380,1346.9000000177946,-0.06923797899497863 +269381,1346.9050000177947,-0.06923796170558037 +269382,1346.9100000177948,-0.06923794441591147 +269383,1346.915000017795,-0.06923792712597196 +269384,1346.920000017795,-0.06923790983576189 +269385,1346.9250000177951,-0.06923789254528127 +269386,1346.9300000177952,-0.06923787525453014 +269387,1346.9350000177953,-0.06923785796350854 +269388,1346.9400000177955,-0.06923784067221649 +269389,1346.9450000177956,-0.06923782338065403 +269390,1346.9500000177957,-0.06923780608882117 +269391,1346.9550000177958,-0.06923778879671799 +269392,1346.960000017796,-0.0692377715043445 +269393,1346.965000017796,-0.06923775421170071 +269394,1346.970000017796,-0.06923773691878667 +269395,1346.9750000177962,-0.06923771962560242 +269396,1346.9800000177963,-0.06923770233214799 +269397,1346.9850000177964,-0.06923768503842341 +269398,1346.9900000177965,-0.0692376677444287 +269399,1346.9950000177967,-0.06923765045016392 +269400,1347.0000000177968,-0.06923763315562907 +269401,1347.0050000177969,-0.0692376158608242 +269402,1347.010000017797,-0.06923759856574935 +269403,1347.015000017797,-0.06923758127040455 +269404,1347.0200000177972,-0.06923756397478982 +269405,1347.0250000177973,-0.0692375466789052 +269406,1347.0300000177974,-0.06923752938275073 +269407,1347.0350000177975,-0.06923751208632642 +269408,1347.0400000177976,-0.06923749478963233 +269409,1347.0450000177977,-0.06923747749266847 +269410,1347.0500000177979,-0.06923746019543488 +269411,1347.055000017798,-0.0692374428979316 +269412,1347.060000017798,-0.06923742560015866 +269413,1347.0650000177982,-0.0692374083021161 +269414,1347.0700000177983,-0.06923739100380392 +269415,1347.0750000177984,-0.0692373737052222 +269416,1347.0800000177985,-0.06923735640637094 +269417,1347.0850000177986,-0.06923733910725018 +269418,1347.0900000177987,-0.06923732180785995 +269419,1347.0950000177988,-0.06923730450820029 +269420,1347.100000017799,-0.06923728720827121 +269421,1347.105000017799,-0.06923726990807277 +269422,1347.1100000177992,-0.06923725260760501 +269423,1347.1150000177993,-0.06923723530686793 +269424,1347.1200000177994,-0.06923721800586159 +269425,1347.1250000177995,-0.06923720070458601 +269426,1347.1300000177996,-0.06923718340304123 +269427,1347.1350000177997,-0.06923716610122727 +269428,1347.1400000177998,-0.06923714879914415 +269429,1347.1450000178,-0.06923713149679195 +269430,1347.1500000178,-0.06923711419417065 +269431,1347.1550000178001,-0.06923709689128033 +269432,1347.1600000178003,-0.06923707958812099 +269433,1347.1650000178004,-0.06923706228469269 +269434,1347.1700000178005,-0.06923704498099542 +269435,1347.1750000178006,-0.06923702767702924 +269436,1347.1800000178007,-0.0692370103727942 +269437,1347.1850000178008,-0.0692369930682903 +269438,1347.190000017801,-0.06923697576351759 +269439,1347.195000017801,-0.06923695845847609 +269440,1347.2000000178011,-0.06923694115316587 +269441,1347.2050000178012,-0.06923692384758691 +269442,1347.2100000178013,-0.06923690654173928 +269443,1347.2150000178015,-0.06923688923562299 +269444,1347.2200000178016,-0.06923687192923808 +269445,1347.2250000178017,-0.0692368546225846 +269446,1347.2300000178018,-0.06923683731566255 +269447,1347.235000017802,-0.06923682000847198 +269448,1347.240000017802,-0.06923680270101294 +269449,1347.245000017802,-0.06923678539328543 +269450,1347.2500000178022,-0.0692367680852895 +269451,1347.2550000178023,-0.06923675077702518 +269452,1347.2600000178024,-0.0692367334684925 +269453,1347.2650000178025,-0.06923671615969151 +269454,1347.2700000178027,-0.06923669885062224 +269455,1347.2750000178028,-0.06923668154128469 +269456,1347.2800000178029,-0.06923666423167893 +269457,1347.285000017803,-0.06923664692180496 +269458,1347.290000017803,-0.06923662961166284 +269459,1347.2950000178032,-0.0692366123012526 +269460,1347.3000000178033,-0.06923659499057425 +269461,1347.3050000178034,-0.06923657767962785 +269462,1347.3100000178035,-0.06923656036841341 +269463,1347.3150000178036,-0.06923654305693099 +269464,1347.3200000178037,-0.06923652574518059 +269465,1347.3250000178039,-0.06923650843316226 +269466,1347.330000017804,-0.06923649112087604 +269467,1347.335000017804,-0.06923647380832194 +269468,1347.3400000178042,-0.06923645649550002 +269469,1347.3450000178043,-0.0692364391824103 +269470,1347.3500000178044,-0.06923642186905282 +269471,1347.3550000178045,-0.0692364045554276 +269472,1347.3600000178046,-0.06923638724153468 +269473,1347.3650000178047,-0.06923636992737409 +269474,1347.3700000178048,-0.06923635261294586 +269475,1347.375000017805,-0.06923633529825005 +269476,1347.380000017805,-0.06923631798328664 +269477,1347.3850000178052,-0.06923630066805571 +269478,1347.3900000178053,-0.06923628335255727 +269479,1347.3950000178054,-0.06923626603679135 +269480,1347.4000000178055,-0.069236248720758 +269481,1347.4050000178056,-0.06923623140445724 +269482,1347.4100000178057,-0.06923621408788912 +269483,1347.4150000178058,-0.06923619677105362 +269484,1347.420000017806,-0.06923617945395084 +269485,1347.425000017806,-0.06923616213658078 +269486,1347.4300000178062,-0.06923614481894347 +269487,1347.4350000178063,-0.06923612750103897 +269488,1347.4400000178064,-0.06923611018286728 +269489,1347.4450000178065,-0.06923609286442844 +269490,1347.4500000178066,-0.0692360755457225 +269491,1347.4550000178067,-0.06923605822674948 +269492,1347.4600000178068,-0.06923604090750941 +269493,1347.465000017807,-0.06923602358800232 +269494,1347.470000017807,-0.06923600626822826 +269495,1347.4750000178071,-0.06923598894818726 +269496,1347.4800000178072,-0.06923597162787933 +269497,1347.4850000178074,-0.06923595430730452 +269498,1347.4900000178075,-0.06923593698646287 +269499,1347.4950000178076,-0.06923591966535439 +269500,1347.5000000178077,-0.06923590234397914 +269501,1347.5050000178078,-0.06923588502233713 +269502,1347.510000017808,-0.0692358677004284 +269503,1347.515000017808,-0.06923585037825299 +269504,1347.5200000178081,-0.06923583305581094 +269505,1347.5250000178082,-0.06923581573310224 +269506,1347.5300000178083,-0.06923579841012698 +269507,1347.5350000178084,-0.06923578108688516 +269508,1347.5400000178086,-0.06923576376337681 +269509,1347.5450000178087,-0.06923574643960198 +269510,1347.5500000178088,-0.06923572911556071 +269511,1347.5550000178089,-0.069235711791253 +269512,1347.560000017809,-0.0692356944666789 +269513,1347.565000017809,-0.06923567714183845 +269514,1347.5700000178092,-0.06923565981673167 +269515,1347.5750000178093,-0.0692356424913586 +269516,1347.5800000178094,-0.06923562516571928 +269517,1347.5850000178095,-0.06923560783981374 +269518,1347.5900000178096,-0.06923559051364199 +269519,1347.5950000178098,-0.0692355731872041 +269520,1347.6000000178099,-0.06923555586050008 +269521,1347.60500001781,-0.06923553853352996 +269522,1347.61000001781,-0.06923552120629377 +269523,1347.6150000178102,-0.06923550387879156 +269524,1347.6200000178103,-0.06923548655102336 +269525,1347.6250000178104,-0.06923546922298919 +269526,1347.6300000178105,-0.0692354518946891 +269527,1347.6350000178106,-0.06923543456612312 +269528,1347.6400000178107,-0.06923541723729126 +269529,1347.6450000178108,-0.06923539990819358 +269530,1347.650000017811,-0.06923538257883009 +269531,1347.655000017811,-0.06923536524920086 +269532,1347.6600000178112,-0.06923534791930588 +269533,1347.6650000178113,-0.0692353305891452 +269534,1347.6700000178114,-0.06923531325871886 +269535,1347.6750000178115,-0.0692352959280269 +269536,1347.6800000178116,-0.06923527859706931 +269537,1347.6850000178117,-0.06923526126584618 +269538,1347.6900000178118,-0.0692352439343575 +269539,1347.695000017812,-0.06923522660260333 +269540,1347.700000017812,-0.06923520927058369 +269541,1347.7050000178122,-0.0692351919382986 +269542,1347.7100000178123,-0.06923517460574811 +269543,1347.7150000178124,-0.06923515727293227 +269544,1347.7200000178125,-0.06923513993985109 +269545,1347.7250000178126,-0.06923512260650459 +269546,1347.7300000178127,-0.06923510527289282 +269547,1347.7350000178128,-0.06923508793901582 +269548,1347.740000017813,-0.06923507060487363 +269549,1347.745000017813,-0.06923505327046625 +269550,1347.7500000178131,-0.06923503593579373 +269551,1347.7550000178132,-0.06923501860085611 +269552,1347.7600000178134,-0.0692350012656534 +269553,1347.7650000178135,-0.06923498393018568 +269554,1347.7700000178136,-0.06923496659445294 +269555,1347.7750000178137,-0.06923494925845523 +269556,1347.7800000178138,-0.06923493192219257 +269557,1347.785000017814,-0.06923491458566501 +269558,1347.790000017814,-0.06923489724887258 +269559,1347.7950000178141,-0.06923487991181529 +269560,1347.8000000178142,-0.0692348625744932 +269561,1347.8050000178143,-0.06923484523690633 +269562,1347.8100000178144,-0.06923482789905472 +269563,1347.8150000178146,-0.0692348105609384 +269564,1347.8200000178147,-0.0692347932225574 +269565,1347.8250000178148,-0.06923477588391176 +269566,1347.8300000178149,-0.06923475854500151 +269567,1347.835000017815,-0.06923474120582668 +269568,1347.840000017815,-0.06923472386638732 +269569,1347.8450000178152,-0.06923470652668343 +269570,1347.8500000178153,-0.06923468918671506 +269571,1347.8550000178154,-0.06923467184648224 +269572,1347.8600000178155,-0.06923465450598502 +269573,1347.8650000178156,-0.06923463716522342 +269574,1347.8700000178158,-0.06923461982419747 +269575,1347.8750000178159,-0.06923460248290719 +269576,1347.880000017816,-0.06923458514135264 +269577,1347.885000017816,-0.06923456779953385 +269578,1347.8900000178162,-0.06923455045745083 +269579,1347.8950000178163,-0.06923453311510365 +269580,1347.9000000178164,-0.0692345157724923 +269581,1347.9050000178165,-0.06923449842961685 +269582,1347.9100000178166,-0.0692344810864773 +269583,1347.9150000178167,-0.06923446374307372 +269584,1347.9200000178168,-0.06923444639940611 +269585,1347.925000017817,-0.06923442905547453 +269586,1347.930000017817,-0.06923441171127898 +269587,1347.9350000178172,-0.06923439436681951 +269588,1347.9400000178173,-0.06923437702209617 +269589,1347.9450000178174,-0.06923435967710898 +269590,1347.9500000178175,-0.06923434233185796 +269591,1347.9550000178176,-0.06923432498634316 +269592,1347.9600000178177,-0.0692343076405646 +269593,1347.9650000178178,-0.06923429029452233 +269594,1347.970000017818,-0.06923427294821638 +269595,1347.975000017818,-0.06923425560164677 +269596,1347.9800000178182,-0.06923423825481353 +269597,1347.9850000178183,-0.06923422090771672 +269598,1347.9900000178184,-0.06923420356035635 +269599,1347.9950000178185,-0.06923418621273246 +269600,1348.0000000178186,-0.06923416886484507 +269601,1348.0050000178187,-0.06923415151669424 +269602,1348.0100000178188,-0.06923413416827998 +269603,1348.015000017819,-0.06923411681960234 +269604,1348.020000017819,-0.06923409947066134 +269605,1348.0250000178191,-0.06923408212145701 +269606,1348.0300000178192,-0.0692340647719894 +269607,1348.0350000178194,-0.06923404742225853 +269608,1348.0400000178195,-0.06923403007226443 +269609,1348.0450000178196,-0.06923401272200715 +269610,1348.0500000178197,-0.06923399537148671 +269611,1348.0550000178198,-0.06923397802070315 +269612,1348.06000001782,-0.0692339606696565 +269613,1348.06500001782,-0.06923394331834679 +269614,1348.0700000178201,-0.06923392596677405 +269615,1348.0750000178202,-0.06923390861493833 +269616,1348.0800000178203,-0.06923389126283964 +269617,1348.0850000178204,-0.06923387391047804 +269618,1348.0900000178206,-0.06923385655785352 +269619,1348.0950000178207,-0.06923383920496616 +269620,1348.1000000178208,-0.06923382185181598 +269621,1348.1050000178209,-0.069233804498403 +269622,1348.110000017821,-0.06923378714472725 +269623,1348.115000017821,-0.06923376979078878 +269624,1348.1200000178212,-0.06923375243658762 +269625,1348.1250000178213,-0.0692337350821238 +269626,1348.1300000178214,-0.06923371772739735 +269627,1348.1350000178215,-0.06923370037240831 +269628,1348.1400000178216,-0.06923368301715671 +269629,1348.1450000178218,-0.06923366566164257 +269630,1348.1500000178219,-0.06923364830586595 +269631,1348.155000017822,-0.06923363094982687 +269632,1348.160000017822,-0.06923361359352537 +269633,1348.1650000178222,-0.06923359623696146 +269634,1348.1700000178223,-0.0692335788801352 +269635,1348.1750000178224,-0.0692335615230466 +269636,1348.1800000178225,-0.06923354416569572 +269637,1348.1850000178226,-0.06923352680808256 +269638,1348.1900000178227,-0.06923350945020718 +269639,1348.1950000178228,-0.0692334920920696 +269640,1348.200000017823,-0.06923347473366985 +269641,1348.205000017823,-0.069233457375008 +269642,1348.2100000178232,-0.06923344001608402 +269643,1348.2150000178233,-0.06923342265689798 +269644,1348.2200000178234,-0.06923340529744994 +269645,1348.2250000178235,-0.06923338793773988 +269646,1348.2300000178236,-0.06923337057776786 +269647,1348.2350000178237,-0.06923335321753392 +269648,1348.2400000178238,-0.06923333585703807 +269649,1348.245000017824,-0.06923331849628037 +269650,1348.250000017824,-0.06923330113526081 +269651,1348.2550000178242,-0.06923328377397948 +269652,1348.2600000178243,-0.06923326641243638 +269653,1348.2650000178244,-0.06923324905063154 +269654,1348.2700000178245,-0.06923323168856502 +269655,1348.2750000178246,-0.06923321432623682 +269656,1348.2800000178247,-0.06923319696364699 +269657,1348.2850000178248,-0.06923317960079557 +269658,1348.290000017825,-0.06923316223768258 +269659,1348.295000017825,-0.06923314487430807 +269660,1348.3000000178251,-0.06923312751067205 +269661,1348.3050000178253,-0.06923311014677457 +269662,1348.3100000178254,-0.06923309278261566 +269663,1348.3150000178255,-0.06923307541819534 +269664,1348.3200000178256,-0.06923305805351367 +269665,1348.3250000178257,-0.06923304068857065 +269666,1348.3300000178258,-0.06923302332336634 +269667,1348.335000017826,-0.06923300595790077 +269668,1348.340000017826,-0.06923298859217397 +269669,1348.3450000178261,-0.06923297122618596 +269670,1348.3500000178262,-0.0692329538599368 +269671,1348.3550000178263,-0.06923293649342649 +269672,1348.3600000178265,-0.0692329191266551 +269673,1348.3650000178266,-0.06923290175962263 +269674,1348.3700000178267,-0.06923288439232911 +269675,1348.3750000178268,-0.0692328670247746 +269676,1348.380000017827,-0.06923284965695915 +269677,1348.385000017827,-0.06923283228888275 +269678,1348.390000017827,-0.06923281492054545 +269679,1348.3950000178272,-0.06923279755194729 +269680,1348.4000000178273,-0.06923278018308829 +269681,1348.4050000178274,-0.06923276281396848 +269682,1348.4100000178275,-0.0692327454445879 +269683,1348.4150000178277,-0.06923272807494661 +269684,1348.4200000178278,-0.06923271070504461 +269685,1348.4250000178279,-0.06923269333488194 +269686,1348.430000017828,-0.06923267596445865 +269687,1348.435000017828,-0.06923265859377475 +269688,1348.4400000178282,-0.0692326412228303 +269689,1348.4450000178283,-0.06923262385162529 +269690,1348.4500000178284,-0.06923260648015979 +269691,1348.4550000178285,-0.06923258910843383 +269692,1348.4600000178286,-0.06923257173644742 +269693,1348.4650000178287,-0.06923255436420063 +269694,1348.4700000178289,-0.06923253699169346 +269695,1348.475000017829,-0.06923251961892596 +269696,1348.480000017829,-0.06923250224589816 +269697,1348.4850000178292,-0.0692324848726101 +269698,1348.4900000178293,-0.0692324674990618 +269699,1348.4950000178294,-0.0692324501252533 +269700,1348.5000000178295,-0.06923243275118464 +269701,1348.5050000178296,-0.06923241537685583 +269702,1348.5100000178297,-0.06923239800226694 +269703,1348.5150000178298,-0.06923238062741797 +269704,1348.52000001783,-0.06923236325230897 +269705,1348.52500001783,-0.06923234587693998 +269706,1348.5300000178302,-0.069232328501311 +269707,1348.5350000178303,-0.06923231112542211 +269708,1348.5400000178304,-0.0692322937492733 +269709,1348.5450000178305,-0.06923227637286464 +269710,1348.5500000178306,-0.06923225899619614 +269711,1348.5550000178307,-0.06923224161926785 +269712,1348.5600000178308,-0.06923222424207977 +269713,1348.565000017831,-0.06923220686463197 +269714,1348.570000017831,-0.06923218948692447 +269715,1348.5750000178311,-0.0692321721089573 +269716,1348.5800000178313,-0.06923215473073051 +269717,1348.5850000178314,-0.0692321373522441 +269718,1348.5900000178315,-0.06923211997349812 +269719,1348.5950000178316,-0.06923210259449263 +269720,1348.6000000178317,-0.06923208521522763 +269721,1348.6050000178318,-0.06923206783570317 +269722,1348.610000017832,-0.06923205045591926 +269723,1348.615000017832,-0.06923203307587597 +269724,1348.6200000178321,-0.06923201569557332 +269725,1348.6250000178322,-0.06923199831501131 +269726,1348.6300000178323,-0.06923198093419002 +269727,1348.6350000178325,-0.06923196355310947 +269728,1348.6400000178326,-0.06923194617176968 +269729,1348.6450000178327,-0.06923192879017069 +269730,1348.6500000178328,-0.06923191140831253 +269731,1348.655000017833,-0.06923189402619524 +269732,1348.660000017833,-0.06923187664381886 +269733,1348.665000017833,-0.0692318592611834 +269734,1348.6700000178332,-0.06923184187828892 +269735,1348.6750000178333,-0.06923182449513544 +269736,1348.6800000178334,-0.069231807111723 +269737,1348.6850000178335,-0.06923178972805162 +269738,1348.6900000178337,-0.06923177234412135 +269739,1348.6950000178338,-0.06923175495993222 +269740,1348.7000000178339,-0.06923173757548425 +269741,1348.705000017834,-0.06923172019077749 +269742,1348.710000017834,-0.06923170280581195 +269743,1348.7150000178342,-0.06923168542058768 +269744,1348.7200000178343,-0.06923166803510472 +269745,1348.7250000178344,-0.0692316506493631 +269746,1348.7300000178345,-0.06923163326336283 +269747,1348.7350000178346,-0.06923161587710398 +269748,1348.7400000178347,-0.06923159849058656 +269749,1348.7450000178349,-0.06923158110381061 +269750,1348.750000017835,-0.06923156371677616 +269751,1348.755000017835,-0.06923154632948325 +269752,1348.7600000178352,-0.06923152894193191 +269753,1348.7650000178353,-0.06923151155412217 +269754,1348.7700000178354,-0.06923149416605408 +269755,1348.7750000178355,-0.06923147677772765 +269756,1348.7800000178356,-0.06923145938914292 +269757,1348.7850000178357,-0.06923144200029994 +269758,1348.7900000178358,-0.06923142461119873 +269759,1348.795000017836,-0.06923140722183932 +269760,1348.800000017836,-0.06923138983222175 +269761,1348.8050000178362,-0.06923137244234606 +269762,1348.8100000178363,-0.06923135505221227 +269763,1348.8150000178364,-0.06923133766182042 +269764,1348.8200000178365,-0.06923132027117053 +269765,1348.8250000178366,-0.06923130288026266 +269766,1348.8300000178367,-0.06923128548909682 +269767,1348.8350000178368,-0.06923126809767305 +269768,1348.840000017837,-0.0692312507059914 +269769,1348.845000017837,-0.06923123331405188 +269770,1348.8500000178371,-0.06923121592185454 +269771,1348.8550000178373,-0.0692311985293994 +269772,1348.8600000178374,-0.0692311811366865 +269773,1348.8650000178375,-0.06923116374371588 +269774,1348.8700000178376,-0.06923114635048756 +269775,1348.8750000178377,-0.06923112895700159 +269776,1348.8800000178378,-0.06923111156325798 +269777,1348.885000017838,-0.0692310941692568 +269778,1348.890000017838,-0.06923107677499804 +269779,1348.8950000178381,-0.06923105938048177 +269780,1348.9000000178382,-0.06923104198570801 +269781,1348.9050000178383,-0.06923102459067679 +269782,1348.9100000178385,-0.06923100719538813 +269783,1348.9150000178386,-0.06923098979984209 +269784,1348.9200000178387,-0.0692309724040387 +269785,1348.9250000178388,-0.06923095500797798 +269786,1348.930000017839,-0.06923093761165995 +269787,1348.935000017839,-0.06923092021508469 +269788,1348.940000017839,-0.06923090281825219 +269789,1348.9450000178392,-0.06923088542116251 +269790,1348.9500000178393,-0.06923086802381567 +269791,1348.9550000178394,-0.0692308506262117 +269792,1348.9600000178395,-0.06923083322835066 +269793,1348.9650000178397,-0.06923081583023256 +269794,1348.9700000178398,-0.06923079843185743 +269795,1348.9750000178399,-0.06923078103322533 +269796,1348.98000001784,-0.06923076363433625 +269797,1348.98500001784,-0.06923074623519027 +269798,1348.9900000178402,-0.06923072883578739 +269799,1348.9950000178403,-0.06923071143612765 +269800,1349.0000000178404,-0.0692306940362111 +269801,1349.0050000178405,-0.06923067663603776 +269802,1349.0100000178406,-0.06923065923560766 +269803,1349.0150000178407,-0.06923064183492085 +269804,1349.0200000178409,-0.06923062443397736 +269805,1349.025000017841,-0.0692306070327772 +269806,1349.030000017841,-0.06923058963132045 +269807,1349.0350000178412,-0.06923057222960709 +269808,1349.0400000178413,-0.0692305548276372 +269809,1349.0450000178414,-0.06923053742541077 +269810,1349.0500000178415,-0.06923052002292786 +269811,1349.0550000178416,-0.06923050262018851 +269812,1349.0600000178417,-0.06923048521719274 +269813,1349.0650000178418,-0.06923046781394059 +269814,1349.070000017842,-0.06923045041043208 +269815,1349.075000017842,-0.06923043300666726 +269816,1349.0800000178422,-0.06923041560264614 +269817,1349.0850000178423,-0.0692303981983688 +269818,1349.0900000178424,-0.06923038079383524 +269819,1349.0950000178425,-0.0692303633890455 +269820,1349.1000000178426,-0.0692303459839996 +269821,1349.1050000178427,-0.0692303285786976 +269822,1349.1100000178428,-0.06923031117313952 +269823,1349.115000017843,-0.06923029376732538 +269824,1349.120000017843,-0.06923027636125524 +269825,1349.1250000178431,-0.06923025895492911 +269826,1349.1300000178433,-0.06923024154834705 +269827,1349.1350000178434,-0.06923022414150906 +269828,1349.1400000178435,-0.0692302067344152 +269829,1349.1450000178436,-0.06923018932706547 +269830,1349.1500000178437,-0.06923017191945995 +269831,1349.1550000178438,-0.06923015451159865 +269832,1349.160000017844,-0.06923013710348161 +269833,1349.165000017844,-0.06923011969510885 +269834,1349.1700000178441,-0.06923010228648044 +269835,1349.1750000178442,-0.06923008487759635 +269836,1349.1800000178443,-0.06923006746845668 +269837,1349.1850000178445,-0.06923005005906142 +269838,1349.1900000178446,-0.06923003264941063 +269839,1349.1950000178447,-0.06923001523950433 +269840,1349.2000000178448,-0.06922999782934255 +269841,1349.205000017845,-0.06922998041892534 +269842,1349.210000017845,-0.06922996300825271 +269843,1349.2150000178451,-0.06922994559732472 +269844,1349.2200000178452,-0.06922992818614138 +269845,1349.2250000178453,-0.06922991077470274 +269846,1349.2300000178454,-0.06922989336300882 +269847,1349.2350000178456,-0.06922987595105966 +269848,1349.2400000178457,-0.0692298585388553 +269849,1349.2450000178458,-0.06922984112639577 +269850,1349.2500000178459,-0.0692298237136811 +269851,1349.255000017846,-0.06922980630071134 +269852,1349.260000017846,-0.06922978888748649 +269853,1349.2650000178462,-0.06922977147400661 +269854,1349.2700000178463,-0.06922975406027174 +269855,1349.2750000178464,-0.06922973664628188 +269856,1349.2800000178465,-0.06922971923203709 +269857,1349.2850000178466,-0.06922970181753742 +269858,1349.2900000178468,-0.06922968440278286 +269859,1349.2950000178469,-0.06922966698777348 +269860,1349.300000017847,-0.06922964957250931 +269861,1349.305000017847,-0.06922963215699035 +269862,1349.3100000178472,-0.06922961474121667 +269863,1349.3150000178473,-0.06922959732518828 +269864,1349.3200000178474,-0.06922957990890524 +269865,1349.3250000178475,-0.06922956249236756 +269866,1349.3300000178476,-0.06922954507557529 +269867,1349.3350000178477,-0.06922952765852845 +269868,1349.3400000178478,-0.06922951024122709 +269869,1349.345000017848,-0.06922949282367122 +269870,1349.350000017848,-0.0692294754058609 +269871,1349.3550000178482,-0.06922945798779616 +269872,1349.3600000178483,-0.06922944056947701 +269873,1349.3650000178484,-0.0692294231509035 +269874,1349.3700000178485,-0.06922940573207566 +269875,1349.3750000178486,-0.06922938831299354 +269876,1349.3800000178487,-0.06922937089365715 +269877,1349.3850000178488,-0.06922935347406654 +269878,1349.390000017849,-0.06922933605422174 +269879,1349.395000017849,-0.06922931863412278 +269880,1349.4000000178492,-0.06922930121376969 +269881,1349.4050000178493,-0.06922928379316251 +269882,1349.4100000178494,-0.06922926637230128 +269883,1349.4150000178495,-0.06922924895118603 +269884,1349.4200000178496,-0.06922923152981678 +269885,1349.4250000178497,-0.06922921410819358 +269886,1349.4300000178498,-0.06922919668631645 +269887,1349.43500001785,-0.06922917926418545 +269888,1349.44000001785,-0.06922916184180058 +269889,1349.4450000178501,-0.0692291444191619 +269890,1349.4500000178502,-0.06922912699626943 +269891,1349.4550000178504,-0.06922910957312321 +269892,1349.4600000178505,-0.06922909214972327 +269893,1349.4650000178506,-0.06922907472606964 +269894,1349.4700000178507,-0.06922905730216236 +269895,1349.4750000178508,-0.06922903987800147 +269896,1349.480000017851,-0.06922902245358699 +269897,1349.485000017851,-0.06922900502891896 +269898,1349.4900000178511,-0.06922898760399743 +269899,1349.4950000178512,-0.06922897017882242 +269900,1349.5000000178513,-0.06922895275339394 +269901,1349.5050000178514,-0.06922893532771206 +269902,1349.5100000178516,-0.06922891790177678 +269903,1349.5150000178517,-0.06922890047558818 +269904,1349.5200000178518,-0.06922888304914625 +269905,1349.5250000178519,-0.06922886562245105 +269906,1349.530000017852,-0.06922884819550261 +269907,1349.535000017852,-0.06922883076830096 +269908,1349.5400000178522,-0.06922881334084612 +269909,1349.5450000178523,-0.06922879591313814 +269910,1349.5500000178524,-0.06922877848517706 +269911,1349.5550000178525,-0.06922876105696289 +269912,1349.5600000178526,-0.0692287436284957 +269913,1349.5650000178528,-0.06922872619977548 +269914,1349.5700000178529,-0.0692287087708023 +269915,1349.575000017853,-0.06922869134157618 +269916,1349.580000017853,-0.06922867391209715 +269917,1349.5850000178532,-0.06922865648236526 +269918,1349.5900000178533,-0.06922863905238051 +269919,1349.5950000178534,-0.06922862162214298 +269920,1349.6000000178535,-0.06922860419165267 +269921,1349.6050000178536,-0.06922858676090962 +269922,1349.6100000178537,-0.06922856932991386 +269923,1349.6150000178538,-0.06922855189866545 +269924,1349.620000017854,-0.0692285344671644 +269925,1349.625000017854,-0.06922851703541075 +269926,1349.6300000178542,-0.06922849960340453 +269927,1349.6350000178543,-0.06922848217114577 +269928,1349.6400000178544,-0.06922846473863452 +269929,1349.6450000178545,-0.0692284473058708 +269930,1349.6500000178546,-0.06922842987285464 +269931,1349.6550000178547,-0.0692284124395861 +269932,1349.6600000178548,-0.0692283950060652 +269933,1349.665000017855,-0.06922837757229196 +269934,1349.670000017855,-0.06922836013826643 +269935,1349.6750000178552,-0.06922834270398863 +269936,1349.6800000178553,-0.06922832526945862 +269937,1349.6850000178554,-0.0692283078346764 +269938,1349.6900000178555,-0.06922829039964203 +269939,1349.6950000178556,-0.06922827296435553 +269940,1349.7000000178557,-0.06922825552881694 +269941,1349.7050000178558,-0.06922823809302628 +269942,1349.710000017856,-0.06922822065698361 +269943,1349.715000017856,-0.06922820322068894 +269944,1349.7200000178561,-0.06922818578414233 +269945,1349.7250000178562,-0.06922816834734379 +269946,1349.7300000178564,-0.06922815091029336 +269947,1349.7350000178565,-0.06922813347299107 +269948,1349.7400000178566,-0.06922811603543697 +269949,1349.7450000178567,-0.06922809859763109 +269950,1349.7500000178568,-0.06922808115957345 +269951,1349.755000017857,-0.0692280637212641 +269952,1349.760000017857,-0.06922804628270304 +269953,1349.7650000178571,-0.06922802884389036 +269954,1349.7700000178572,-0.06922801140482605 +269955,1349.7750000178573,-0.06922799396551017 +269956,1349.7800000178574,-0.06922797652594273 +269957,1349.7850000178576,-0.06922795908612378 +269958,1349.7900000178577,-0.06922794164605334 +269959,1349.7950000178578,-0.06922792420573147 +269960,1349.8000000178579,-0.06922790676515818 +269961,1349.805000017858,-0.06922788932433352 +269962,1349.810000017858,-0.0692278718832575 +269963,1349.8150000178582,-0.06922785444193019 +269964,1349.8200000178583,-0.0692278370003516 +269965,1349.8250000178584,-0.06922781955852177 +269966,1349.8300000178585,-0.06922780211644071 +269967,1349.8350000178586,-0.06922778467410849 +269968,1349.8400000178588,-0.06922776723152514 +269969,1349.8450000178589,-0.06922774978869067 +269970,1349.850000017859,-0.06922773234560513 +269971,1349.855000017859,-0.06922771490226856 +269972,1349.8600000178592,-0.06922769745868099 +269973,1349.8650000178593,-0.06922768001484243 +269974,1349.8700000178594,-0.06922766257075295 +269975,1349.8750000178595,-0.06922764512641257 +269976,1349.8800000178596,-0.06922762768182132 +269977,1349.8850000178597,-0.06922761023697924 +269978,1349.8900000178598,-0.06922759279188635 +269979,1349.89500001786,-0.0692275753465427 +269980,1349.90000001786,-0.06922755790094831 +269981,1349.9050000178602,-0.06922754045510324 +269982,1349.9100000178603,-0.0692275230090075 +269983,1349.9150000178604,-0.06922750556266112 +269984,1349.9200000178605,-0.06922748811606415 +269985,1349.9250000178606,-0.06922747066921663 +269986,1349.9300000178607,-0.06922745322211857 +269987,1349.9350000178608,-0.06922743577477002 +269988,1349.940000017861,-0.06922741832717101 +269989,1349.945000017861,-0.06922740087932158 +269990,1349.9500000178612,-0.06922738343122176 +269991,1349.9550000178613,-0.06922736598287157 +269992,1349.9600000178614,-0.06922734853427108 +269993,1349.9650000178615,-0.06922733108542029 +269994,1349.9700000178616,-0.06922731363631926 +269995,1349.9750000178617,-0.06922729618696799 +269996,1349.9800000178618,-0.06922727873736655 +269997,1349.985000017862,-0.06922726128751495 +269998,1349.990000017862,-0.06922724383741323 +269999,1349.9950000178621,-0.06922722638706143 +270000,1350.0000000178622,-0.06922720893645956 +270001,1350.0050000178624,-0.06922719148560769 +270002,1350.0100000178625,-0.06922717403450583 +270003,1350.0150000178626,-0.06922715658315404 +270004,1350.0200000178627,-0.06922713913155233 +270005,1350.0250000178628,-0.06922712167970074 +270006,1350.030000017863,-0.06922710422759931 +270007,1350.035000017863,-0.06922708677524807 +270008,1350.0400000178631,-0.06922706932264704 +270009,1350.0450000178632,-0.06922705186979627 +270010,1350.0500000178633,-0.0692270344166958 +270011,1350.0550000178634,-0.06922701696334567 +270012,1350.0600000178636,-0.06922699950974588 +270013,1350.0650000178637,-0.06922698205589649 +270014,1350.0700000178638,-0.06922696460179752 +270015,1350.0750000178639,-0.06922694714744901 +270016,1350.080000017864,-0.069226929692851 +270017,1350.085000017864,-0.06922691223800352 +270018,1350.0900000178642,-0.06922689478290661 +270019,1350.0950000178643,-0.0692268773275603 +270020,1350.1000000178644,-0.06922685987196463 +270021,1350.1050000178645,-0.06922684241611961 +270022,1350.1100000178646,-0.0692268249600253 +270023,1350.1150000178648,-0.06922680750368172 +270024,1350.1200000178649,-0.06922679004708893 +270025,1350.125000017865,-0.06922677259024693 +270026,1350.130000017865,-0.06922675513315577 +270027,1350.1350000178652,-0.06922673767581547 +270028,1350.1400000178653,-0.0692267202182261 +270029,1350.1450000178654,-0.06922670276038766 +270030,1350.1500000178655,-0.06922668530230018 +270031,1350.1550000178656,-0.06922666784396372 +270032,1350.1600000178657,-0.06922665038537831 +270033,1350.1650000178659,-0.06922663292654398 +270034,1350.170000017866,-0.06922661546746074 +270035,1350.175000017866,-0.06922659800812866 +270036,1350.1800000178662,-0.06922658054854776 +270037,1350.1850000178663,-0.06922656308871807 +270038,1350.1900000178664,-0.06922654562863963 +270039,1350.1950000178665,-0.06922652816831247 +270040,1350.2000000178666,-0.06922651070773664 +270041,1350.2050000178667,-0.06922649324691214 +270042,1350.2100000178668,-0.06922647578583904 +270043,1350.215000017867,-0.06922645832451735 +270044,1350.220000017867,-0.06922644086294713 +270045,1350.2250000178672,-0.06922642340112839 +270046,1350.2300000178673,-0.06922640593906117 +270047,1350.2350000178674,-0.0692263884767455 +270048,1350.2400000178675,-0.06922637101418143 +270049,1350.2450000178676,-0.06922635355136897 +270050,1350.2500000178677,-0.0692263360883082 +270051,1350.2550000178678,-0.0692263186249991 +270052,1350.260000017868,-0.06922630116144173 +270053,1350.265000017868,-0.06922628369763612 +270054,1350.2700000178681,-0.06922626623358231 +270055,1350.2750000178683,-0.06922624876928034 +270056,1350.2800000178684,-0.06922623130473023 +270057,1350.2850000178685,-0.06922621383993201 +270058,1350.2900000178686,-0.06922619637488572 +270059,1350.2950000178687,-0.0692261789095914 +270060,1350.3000000178688,-0.06922616144404908 +270061,1350.305000017869,-0.06922614397825881 +270062,1350.310000017869,-0.0692261265122206 +270063,1350.3150000178691,-0.0692261090459345 +270064,1350.3200000178692,-0.06922609157940053 +270065,1350.3250000178693,-0.06922607411261873 +270066,1350.3300000178695,-0.06922605664558916 +270067,1350.3350000178696,-0.06922603917831181 +270068,1350.3400000178697,-0.06922602171078673 +270069,1350.3450000178698,-0.06922600424301398 +270070,1350.35000001787,-0.06922598677499356 +270071,1350.35500001787,-0.06922596930672552 +270072,1350.36000001787,-0.0692259518382099 +270073,1350.3650000178702,-0.06922593436944673 +270074,1350.3700000178703,-0.06922591690043603 +270075,1350.3750000178704,-0.06922589943117785 +270076,1350.3800000178705,-0.06922588196167223 +270077,1350.3850000178707,-0.06922586449191918 +270078,1350.3900000178708,-0.06922584702191875 +270079,1350.3950000178709,-0.06922582955167099 +270080,1350.400000017871,-0.06922581208117591 +270081,1350.405000017871,-0.06922579461043354 +270082,1350.4100000178712,-0.06922577713944393 +270083,1350.4150000178713,-0.06922575966820713 +270084,1350.4200000178714,-0.06922574219672313 +270085,1350.4250000178715,-0.06922572472499201 +270086,1350.4300000178716,-0.06922570725301377 +270087,1350.4350000178717,-0.06922568978078845 +270088,1350.4400000178719,-0.06922567230831611 +270089,1350.445000017872,-0.06922565483559676 +270090,1350.450000017872,-0.06922563736263043 +270091,1350.4550000178722,-0.06922561988941718 +270092,1350.4600000178723,-0.06922560241595702 +270093,1350.4650000178724,-0.06922558494224999 +270094,1350.4700000178725,-0.06922556746829614 +270095,1350.4750000178726,-0.06922554999409547 +270096,1350.4800000178727,-0.06922553251964805 +270097,1350.4850000178728,-0.06922551504495392 +270098,1350.490000017873,-0.06922549757001306 +270099,1350.495000017873,-0.06922548009482556 +270100,1350.5000000178732,-0.06922546261939144 +270101,1350.5050000178733,-0.06922544514371072 +270102,1350.5100000178734,-0.06922542766778343 +270103,1350.5150000178735,-0.06922541019160965 +270104,1350.5200000178736,-0.06922539271518936 +270105,1350.5250000178737,-0.06922537523852262 +270106,1350.5300000178738,-0.06922535776160946 +270107,1350.535000017874,-0.06922534028444992 +270108,1350.540000017874,-0.06922532280704402 +270109,1350.5450000178741,-0.06922530532939182 +270110,1350.5500000178743,-0.06922528785149332 +270111,1350.5550000178744,-0.06922527037334858 +270112,1350.5600000178745,-0.06922525289495762 +270113,1350.5650000178746,-0.06922523541632049 +270114,1350.5700000178747,-0.0692252179374372 +270115,1350.5750000178748,-0.06922520045830782 +270116,1350.580000017875,-0.06922518297893236 +270117,1350.585000017875,-0.06922516549931086 +270118,1350.5900000178751,-0.06922514801944335 +270119,1350.5950000178752,-0.06922513053932987 +270120,1350.6000000178753,-0.06922511305897046 +270121,1350.6050000178755,-0.06922509557836513 +270122,1350.6100000178756,-0.06922507809751394 +270123,1350.6150000178757,-0.0692250606164169 +270124,1350.6200000178758,-0.06922504313507406 +270125,1350.625000017876,-0.06922502565348546 +270126,1350.630000017876,-0.06922500817165113 +270127,1350.635000017876,-0.06922499068957111 +270128,1350.6400000178762,-0.06922497320724541 +270129,1350.6450000178763,-0.0692249557246741 +270130,1350.6500000178764,-0.06922493824185719 +270131,1350.6550000178765,-0.06922492075879473 +270132,1350.6600000178767,-0.06922490327548673 +270133,1350.6650000178768,-0.06922488579193327 +270134,1350.6700000178769,-0.06922486830813432 +270135,1350.675000017877,-0.06922485082408995 +270136,1350.680000017877,-0.06922483333980022 +270137,1350.6850000178772,-0.06922481585526512 +270138,1350.6900000178773,-0.0692247983704847 +270139,1350.6950000178774,-0.069224780885459 +270140,1350.7000000178775,-0.06922476340018806 +270141,1350.7050000178776,-0.06922474591467188 +270142,1350.7100000178777,-0.06922472842891055 +270143,1350.7150000178779,-0.06922471094290406 +270144,1350.720000017878,-0.06922469345665244 +270145,1350.725000017878,-0.06922467597015577 +270146,1350.7300000178782,-0.06922465848341405 +270147,1350.7350000178783,-0.06922464099642733 +270148,1350.7400000178784,-0.06922462350919563 +270149,1350.7450000178785,-0.06922460602171898 +270150,1350.7500000178786,-0.06922458853399743 +270151,1350.7550000178787,-0.06922457104603101 +270152,1350.7600000178788,-0.06922455355781977 +270153,1350.765000017879,-0.06922453606936373 +270154,1350.770000017879,-0.0692245185806629 +270155,1350.7750000178792,-0.06922450109171736 +270156,1350.7800000178793,-0.06922448360252711 +270157,1350.7850000178794,-0.0692244661130922 +270158,1350.7900000178795,-0.06922444862341268 +270159,1350.7950000178796,-0.06922443113348854 +270160,1350.8000000178797,-0.06922441364331985 +270161,1350.8050000178798,-0.06922439615290664 +270162,1350.81000001788,-0.06922437866224894 +270163,1350.81500001788,-0.06922436117134677 +270164,1350.8200000178801,-0.0692243436802002 +270165,1350.8250000178803,-0.06922432618880923 +270166,1350.8300000178804,-0.06922430869717391 +270167,1350.8350000178805,-0.06922429120529427 +270168,1350.8400000178806,-0.06922427371317036 +270169,1350.8450000178807,-0.0692242562208022 +270170,1350.8500000178808,-0.06922423872818981 +270171,1350.855000017881,-0.06922422123533324 +270172,1350.860000017881,-0.06922420374223255 +270173,1350.8650000178811,-0.06922418624888774 +270174,1350.8700000178812,-0.06922416875529884 +270175,1350.8750000178813,-0.0692241512614659 +270176,1350.8800000178815,-0.06922413376738897 +270177,1350.8850000178816,-0.06922411627306806 +270178,1350.8900000178817,-0.0692240987785032 +270179,1350.8950000178818,-0.06922408128369446 +270180,1350.900000017882,-0.06922406378864185 +270181,1350.905000017882,-0.06922404629334539 +270182,1350.910000017882,-0.06922402879780513 +270183,1350.9150000178822,-0.06922401130202112 +270184,1350.9200000178823,-0.06922399380599337 +270185,1350.9250000178824,-0.06922397630972192 +270186,1350.9300000178825,-0.06922395881320682 +270187,1350.9350000178827,-0.06922394131644809 +270188,1350.9400000178828,-0.06922392381944577 +270189,1350.9450000178829,-0.0692239063221999 +270190,1350.950000017883,-0.0692238888247105 +270191,1350.955000017883,-0.06922387132697762 +270192,1350.9600000178832,-0.06922385382900127 +270193,1350.9650000178833,-0.06922383633078151 +270194,1350.9700000178834,-0.06922381883231837 +270195,1350.9750000178835,-0.06922380133361188 +270196,1350.9800000178836,-0.06922378383466207 +270197,1350.9850000178837,-0.06922376633546898 +270198,1350.9900000178839,-0.06922374883603265 +270199,1350.995000017884,-0.0692237313363531 +270200,1351.000000017884,-0.06922371383643038 +270201,1351.0050000178842,-0.06922369633626452 +270202,1351.0100000178843,-0.06922367883585553 +270203,1351.0150000178844,-0.06922366133520351 +270204,1351.0200000178845,-0.06922364383430842 +270205,1351.0250000178846,-0.06922362633317035 +270206,1351.0300000178847,-0.0692236088317893 +270207,1351.0350000178848,-0.06922359133016531 +270208,1351.040000017885,-0.06922357382829843 +270209,1351.045000017885,-0.06922355632618868 +270210,1351.0500000178852,-0.0692235388238361 +270211,1351.0550000178853,-0.06922352132124072 +270212,1351.0600000178854,-0.06922350381840259 +270213,1351.0650000178855,-0.06922348631532174 +270214,1351.0700000178856,-0.06922346881199819 +270215,1351.0750000178857,-0.06922345130843198 +270216,1351.0800000178858,-0.06922343380462315 +270217,1351.085000017886,-0.06922341630057173 +270218,1351.090000017886,-0.06922339879627777 +270219,1351.0950000178862,-0.06922338129174128 +270220,1351.1000000178863,-0.06922336378696231 +270221,1351.1050000178864,-0.06922334628194089 +270222,1351.1100000178865,-0.06922332877667706 +270223,1351.1150000178866,-0.06922331127117085 +270224,1351.1200000178867,-0.06922329376542229 +270225,1351.1250000178868,-0.06922327625943142 +270226,1351.130000017887,-0.06922325875319826 +270227,1351.135000017887,-0.06922324124672288 +270228,1351.1400000178871,-0.0692232237400053 +270229,1351.1450000178872,-0.06922320623304554 +270230,1351.1500000178874,-0.06922318872584364 +270231,1351.1550000178875,-0.06922317121839965 +270232,1351.1600000178876,-0.06922315371071358 +270233,1351.1650000178877,-0.06922313620278549 +270234,1351.1700000178878,-0.06922311869461538 +270235,1351.175000017888,-0.06922310118620333 +270236,1351.180000017888,-0.06922308367754934 +270237,1351.1850000178881,-0.06922306616865347 +270238,1351.1900000178882,-0.06922304865951573 +270239,1351.1950000178883,-0.06922303115013617 +270240,1351.2000000178884,-0.06922301364051481 +270241,1351.2050000178886,-0.06922299613065169 +270242,1351.2100000178887,-0.06922297862054687 +270243,1351.2150000178888,-0.06922296111020036 +270244,1351.2200000178889,-0.06922294359961219 +270245,1351.225000017889,-0.06922292608878242 +270246,1351.230000017889,-0.06922290857771106 +270247,1351.2350000178892,-0.06922289106639815 +270248,1351.2400000178893,-0.06922287355484373 +270249,1351.2450000178894,-0.06922285604304784 +270250,1351.2500000178895,-0.06922283853101051 +270251,1351.2550000178896,-0.06922282101873177 +270252,1351.2600000178898,-0.06922280350621166 +270253,1351.2650000178899,-0.0692227859934502 +270254,1351.27000001789,-0.06922276848044745 +270255,1351.27500001789,-0.06922275096720343 +270256,1351.2800000178902,-0.06922273345371817 +270257,1351.2850000178903,-0.06922271593999171 +270258,1351.2900000178904,-0.06922269842602409 +270259,1351.2950000178905,-0.06922268091181534 +270260,1351.3000000178906,-0.0692226633973655 +270261,1351.3050000178907,-0.06922264588267461 +270262,1351.3100000178908,-0.06922262836774269 +270263,1351.315000017891,-0.06922261085256977 +270264,1351.320000017891,-0.0692225933371559 +270265,1351.3250000178912,-0.06922257582150111 +270266,1351.3300000178913,-0.06922255830560543 +270267,1351.3350000178914,-0.0692225407894689 +270268,1351.3400000178915,-0.06922252327309157 +270269,1351.3450000178916,-0.06922250575647344 +270270,1351.3500000178917,-0.06922248823961458 +270271,1351.3550000178918,-0.069222470722515 +270272,1351.360000017892,-0.06922245320517474 +270273,1351.365000017892,-0.06922243568759384 +270274,1351.3700000178922,-0.06922241816977234 +270275,1351.3750000178923,-0.06922240065171026 +270276,1351.3800000178924,-0.06922238313340764 +270277,1351.3850000178925,-0.06922236561486453 +270278,1351.3900000178926,-0.06922234809608094 +270279,1351.3950000178927,-0.06922233057705693 +270280,1351.4000000178928,-0.0692223130577925 +270281,1351.405000017893,-0.06922229553828772 +270282,1351.410000017893,-0.06922227801854261 +270283,1351.4150000178931,-0.0692222604985572 +270284,1351.4200000178932,-0.06922224297833154 +270285,1351.4250000178934,-0.06922222545786565 +270286,1351.4300000178935,-0.06922220793715957 +270287,1351.4350000178936,-0.06922219041621334 +270288,1351.4400000178937,-0.06922217289502698 +270289,1351.4450000178938,-0.06922215537360056 +270290,1351.450000017894,-0.06922213785193408 +270291,1351.455000017894,-0.06922212033002759 +270292,1351.4600000178941,-0.0692221028078811 +270293,1351.4650000178942,-0.06922208528549467 +270294,1351.4700000178943,-0.06922206776286834 +270295,1351.4750000178944,-0.06922205024000214 +270296,1351.4800000178946,-0.06922203271689609 +270297,1351.4850000178947,-0.06922201519355022 +270298,1351.4900000178948,-0.06922199766996459 +270299,1351.4950000178949,-0.06922198014613923 +270300,1351.500000017895,-0.06922196262207417 +270301,1351.505000017895,-0.06922194509776945 +270302,1351.5100000178952,-0.0692219275732251 +270303,1351.5150000178953,-0.06922191004844114 +270304,1351.5200000178954,-0.06922189252341761 +270305,1351.5250000178955,-0.06922187499815456 +270306,1351.5300000178956,-0.06922185747265203 +270307,1351.5350000178958,-0.06922183994691003 +270308,1351.5400000178959,-0.0692218224209286 +270309,1351.545000017896,-0.0692218048947078 +270310,1351.550000017896,-0.06922178736824765 +270311,1351.5550000178962,-0.06922176984154818 +270312,1351.5600000178963,-0.06922175231460943 +270313,1351.5650000178964,-0.06922173478743143 +270314,1351.5700000178965,-0.06922171726001422 +270315,1351.5750000178966,-0.06922169973235782 +270316,1351.5800000178967,-0.06922168220446229 +270317,1351.5850000178968,-0.06922166467632765 +270318,1351.590000017897,-0.06922164714795394 +270319,1351.595000017897,-0.06922162961934117 +270320,1351.6000000178972,-0.06922161209048942 +270321,1351.6050000178973,-0.06922159456139869 +270322,1351.6100000178974,-0.06922157703206903 +270323,1351.6150000178975,-0.06922155950250049 +270324,1351.6200000178976,-0.06922154197269306 +270325,1351.6250000178977,-0.06922152444264681 +270326,1351.6300000178978,-0.06922150691236177 +270327,1351.635000017898,-0.06922148938183799 +270328,1351.640000017898,-0.06922147185107547 +270329,1351.6450000178982,-0.06922145432007426 +270330,1351.6500000178983,-0.0692214367888344 +270331,1351.6550000178984,-0.06922141925735592 +270332,1351.6600000178985,-0.06922140172563886 +270333,1351.6650000178986,-0.06922138419368323 +270334,1351.6700000178987,-0.06922136666148912 +270335,1351.6750000178988,-0.0692213491290565 +270336,1351.680000017899,-0.06922133159638545 +270337,1351.685000017899,-0.06922131406347601 +270338,1351.6900000178991,-0.06922129653032816 +270339,1351.6950000178992,-0.069221278996942 +270340,1351.7000000178994,-0.06922126146331752 +270341,1351.7050000178995,-0.06922124392945478 +270342,1351.7100000178996,-0.0692212263953538 +270343,1351.7150000178997,-0.06922120886101461 +270344,1351.7200000178998,-0.06922119132643728 +270345,1351.7250000179,-0.0692211737916218 +270346,1351.7300000179,-0.06922115625656824 +270347,1351.7350000179001,-0.06922113872127664 +270348,1351.7400000179002,-0.06922112118574698 +270349,1351.7450000179003,-0.06922110364997934 +270350,1351.7500000179004,-0.06922108611397376 +270351,1351.7550000179006,-0.06922106857773025 +270352,1351.7600000179007,-0.06922105104124886 +270353,1351.7650000179008,-0.06922103350452961 +270354,1351.7700000179009,-0.06922101596757256 +270355,1351.775000017901,-0.06922099843037773 +270356,1351.780000017901,-0.06922098089294515 +270357,1351.7850000179012,-0.06922096335527486 +270358,1351.7900000179013,-0.0692209458173669 +270359,1351.7950000179014,-0.0692209282792213 +270360,1351.8000000179015,-0.0692209107408381 +270361,1351.8050000179016,-0.06922089320221733 +270362,1351.8100000179018,-0.06922087566335902 +270363,1351.8150000179019,-0.06922085812426322 +270364,1351.820000017902,-0.06922084058492996 +270365,1351.825000017902,-0.06922082304535927 +270366,1351.8300000179022,-0.06922080550555118 +270367,1351.8350000179023,-0.06922078796550574 +270368,1351.8400000179024,-0.06922077042522297 +270369,1351.8450000179025,-0.0692207528847029 +270370,1351.8500000179026,-0.0692207353439456 +270371,1351.8550000179027,-0.06922071780295107 +270372,1351.8600000179028,-0.06922070026171936 +270373,1351.865000017903,-0.06922068272025049 +270374,1351.870000017903,-0.06922066517854453 +270375,1351.8750000179032,-0.06922064763660148 +270376,1351.8800000179033,-0.06922063009442138 +270377,1351.8850000179034,-0.06922061255200429 +270378,1351.8900000179035,-0.06922059500935021 +270379,1351.8950000179036,-0.0692205774664592 +270380,1351.9000000179037,-0.06922055992333129 +270381,1351.9050000179038,-0.0692205423799665 +270382,1351.910000017904,-0.06922052483636489 +270383,1351.915000017904,-0.06922050729252648 +270384,1351.9200000179042,-0.06922048974845131 +270385,1351.9250000179043,-0.06922047220413942 +270386,1351.9300000179044,-0.06922045465959083 +270387,1351.9350000179045,-0.06922043711480558 +270388,1351.9400000179046,-0.06922041956978371 +270389,1351.9450000179047,-0.06922040202452526 +270390,1351.9500000179048,-0.06922038447903024 +270391,1351.955000017905,-0.06922036693329872 +270392,1351.960000017905,-0.06922034938733071 +270393,1351.9650000179051,-0.06922033184112626 +270394,1351.9700000179052,-0.0692203142946854 +270395,1351.9750000179054,-0.06922029674800817 +270396,1351.9800000179055,-0.06922027920109458 +270397,1351.9850000179056,-0.06922026165394471 +270398,1351.9900000179057,-0.06922024410655855 +270399,1351.9950000179058,-0.06922022655893616 +270400,1352.000000017906,-0.06922020901107757 +270401,1352.005000017906,-0.06922019146298282 +270402,1352.0100000179061,-0.06922017391465192 +270403,1352.0150000179062,-0.06922015636608495 +270404,1352.0200000179063,-0.06922013881728191 +270405,1352.0250000179065,-0.06922012126824285 +270406,1352.0300000179066,-0.0692201037189678 +270407,1352.0350000179067,-0.0692200861694568 +270408,1352.0400000179068,-0.06922006861970986 +270409,1352.045000017907,-0.06922005106972705 +270410,1352.050000017907,-0.0692200335195084 +270411,1352.055000017907,-0.06922001596905392 +270412,1352.0600000179072,-0.06921999841836367 +270413,1352.0650000179073,-0.06921998086743769 +270414,1352.0700000179074,-0.06921996331627599 +270415,1352.0750000179075,-0.06921994576487861 +270416,1352.0800000179077,-0.0692199282132456 +270417,1352.0850000179078,-0.06921991066137699 +270418,1352.0900000179079,-0.0692198931092728 +270419,1352.095000017908,-0.0692198755569331 +270420,1352.100000017908,-0.06921985800435787 +270421,1352.1050000179082,-0.06921984045154721 +270422,1352.1100000179083,-0.06921982289850111 +270423,1352.1150000179084,-0.06921980534521961 +270424,1352.1200000179085,-0.06921978779170278 +270425,1352.1250000179086,-0.0692197702379506 +270426,1352.1300000179087,-0.06921975268396315 +270427,1352.1350000179089,-0.06921973512974045 +270428,1352.140000017909,-0.06921971757528252 +270429,1352.145000017909,-0.06921970002058941 +270430,1352.1500000179092,-0.06921968246566117 +270431,1352.1550000179093,-0.06921966491049782 +270432,1352.1600000179094,-0.06921964735509939 +270433,1352.1650000179095,-0.06921962979946593 +270434,1352.1700000179096,-0.06921961224359745 +270435,1352.1750000179097,-0.06921959468749402 +270436,1352.1800000179098,-0.06921957713115563 +270437,1352.18500001791,-0.06921955957458237 +270438,1352.19000001791,-0.06921954201777424 +270439,1352.1950000179102,-0.06921952446073126 +270440,1352.2000000179103,-0.0692195069034535 +270441,1352.2050000179104,-0.069219489345941 +270442,1352.2100000179105,-0.06921947178819375 +270443,1352.2150000179106,-0.06921945423021182 +270444,1352.2200000179107,-0.06921943667199526 +270445,1352.2250000179108,-0.06921941911354407 +270446,1352.230000017911,-0.0692194015548583 +270447,1352.235000017911,-0.06921938399593798 +270448,1352.2400000179111,-0.06921936643678316 +270449,1352.2450000179113,-0.06921934887739384 +270450,1352.2500000179114,-0.0692193313177701 +270451,1352.2550000179115,-0.06921931375791195 +270452,1352.2600000179116,-0.06921929619781943 +270453,1352.2650000179117,-0.06921927863749258 +270454,1352.2700000179118,-0.06921926107693142 +270455,1352.275000017912,-0.06921924351613601 +270456,1352.280000017912,-0.06921922595510635 +270457,1352.2850000179121,-0.0692192083938425 +270458,1352.2900000179122,-0.06921919083234451 +270459,1352.2950000179123,-0.06921917327061239 +270460,1352.3000000179125,-0.06921915570864619 +270461,1352.3050000179126,-0.06921913814644592 +270462,1352.3100000179127,-0.06921912058401165 +270463,1352.3150000179128,-0.06921910302134339 +270464,1352.320000017913,-0.06921908545844119 +270465,1352.325000017913,-0.06921906789530508 +270466,1352.330000017913,-0.06921905033193508 +270467,1352.3350000179132,-0.06921903276833125 +270468,1352.3400000179133,-0.06921901520449361 +270469,1352.3450000179134,-0.0692189976404222 +270470,1352.3500000179135,-0.06921898007611707 +270471,1352.3550000179137,-0.06921896251157823 +270472,1352.3600000179138,-0.06921894494680572 +270473,1352.3650000179139,-0.06921892738179959 +270474,1352.370000017914,-0.06921890981655986 +270475,1352.375000017914,-0.06921889225108657 +270476,1352.3800000179142,-0.06921887468537978 +270477,1352.3850000179143,-0.06921885711943948 +270478,1352.3900000179144,-0.06921883955326574 +270479,1352.3950000179145,-0.06921882198685857 +270480,1352.4000000179146,-0.06921880442021804 +270481,1352.4050000179147,-0.06921878685334415 +270482,1352.4100000179149,-0.06921876928623695 +270483,1352.415000017915,-0.06921875171889647 +270484,1352.420000017915,-0.06921873415132276 +270485,1352.4250000179152,-0.06921871658351585 +270486,1352.4300000179153,-0.06921869901547577 +270487,1352.4350000179154,-0.06921868144720254 +270488,1352.4400000179155,-0.06921866387869623 +270489,1352.4450000179156,-0.06921864630995685 +270490,1352.4500000179157,-0.06921862874098443 +270491,1352.4550000179158,-0.06921861117177903 +270492,1352.460000017916,-0.06921859360234067 +270493,1352.465000017916,-0.06921857603266938 +270494,1352.4700000179162,-0.06921855846276523 +270495,1352.4750000179163,-0.06921854089262822 +270496,1352.4800000179164,-0.06921852332225838 +270497,1352.4850000179165,-0.06921850575165577 +270498,1352.4900000179166,-0.06921848818082042 +270499,1352.4950000179167,-0.06921847060975235 +270500,1352.5000000179168,-0.0692184530384516 +270501,1352.505000017917,-0.06921843546691822 +270502,1352.510000017917,-0.06921841789515225 +270503,1352.5150000179171,-0.0692184003231537 +270504,1352.5200000179173,-0.06921838275092261 +270505,1352.5250000179174,-0.06921836517845904 +270506,1352.5300000179175,-0.069218347605763 +270507,1352.5350000179176,-0.06921833003283455 +270508,1352.5400000179177,-0.06921831245967368 +270509,1352.5450000179178,-0.06921829488628048 +270510,1352.550000017918,-0.06921827731265495 +270511,1352.555000017918,-0.06921825973879712 +270512,1352.5600000179181,-0.06921824216470707 +270513,1352.5650000179182,-0.06921822459038479 +270514,1352.5700000179183,-0.06921820701583034 +270515,1352.5750000179185,-0.06921818944104374 +270516,1352.5800000179186,-0.06921817186602505 +270517,1352.5850000179187,-0.06921815429077427 +270518,1352.5900000179188,-0.06921813671529145 +270519,1352.595000017919,-0.06921811913957665 +270520,1352.600000017919,-0.06921810156362986 +270521,1352.605000017919,-0.06921808398745115 +270522,1352.6100000179192,-0.06921806641104056 +270523,1352.6150000179193,-0.0692180488343981 +270524,1352.6200000179194,-0.06921803125752381 +270525,1352.6250000179195,-0.06921801368041773 +270526,1352.6300000179197,-0.0692179961030799 +270527,1352.6350000179198,-0.06921797852551036 +270528,1352.6400000179199,-0.06921796094770913 +270529,1352.64500001792,-0.06921794336967627 +270530,1352.65000001792,-0.06921792579141178 +270531,1352.6550000179202,-0.06921790821291574 +270532,1352.6600000179203,-0.06921789063418814 +270533,1352.6650000179204,-0.06921787305522904 +270534,1352.6700000179205,-0.06921785547603847 +270535,1352.6750000179206,-0.06921783789661647 +270536,1352.6800000179207,-0.06921782031696305 +270537,1352.6850000179209,-0.06921780273707828 +270538,1352.690000017921,-0.0692177851569622 +270539,1352.695000017921,-0.06921776757661481 +270540,1352.7000000179212,-0.06921774999603617 +270541,1352.7050000179213,-0.0692177324152263 +270542,1352.7100000179214,-0.06921771483418525 +270543,1352.7150000179215,-0.06921769725291306 +270544,1352.7200000179216,-0.06921767967140974 +270545,1352.7250000179217,-0.06921766208967536 +270546,1352.7300000179218,-0.06921764450770992 +270547,1352.735000017922,-0.06921762692551349 +270548,1352.740000017922,-0.06921760934308607 +270549,1352.7450000179222,-0.06921759176042773 +270550,1352.7500000179223,-0.06921757417753849 +270551,1352.7550000179224,-0.06921755659441838 +270552,1352.7600000179225,-0.06921753901106743 +270553,1352.7650000179226,-0.06921752142748569 +270554,1352.7700000179227,-0.0692175038436732 +270555,1352.7750000179228,-0.06921748625962998 +270556,1352.780000017923,-0.06921746867535608 +270557,1352.785000017923,-0.06921745109085152 +270558,1352.7900000179231,-0.06921743350611634 +270559,1352.7950000179233,-0.06921741592115058 +270560,1352.8000000179234,-0.06921739833595428 +270561,1352.8050000179235,-0.06921738075052745 +270562,1352.8100000179236,-0.06921736316487016 +270563,1352.8150000179237,-0.06921734557898243 +270564,1352.8200000179238,-0.0692173279928643 +270565,1352.825000017924,-0.0692173104065158 +270566,1352.830000017924,-0.06921729281993697 +270567,1352.8350000179241,-0.06921727523312782 +270568,1352.8400000179242,-0.06921725764608842 +270569,1352.8450000179243,-0.06921724005881882 +270570,1352.8500000179245,-0.069217222471319 +270571,1352.8550000179246,-0.06921720488358905 +270572,1352.8600000179247,-0.06921718729562898 +270573,1352.8650000179248,-0.06921716970743881 +270574,1352.870000017925,-0.0692171521190186 +270575,1352.875000017925,-0.06921713453036839 +270576,1352.880000017925,-0.06921711694148819 +270577,1352.8850000179252,-0.06921709935237805 +270578,1352.8900000179253,-0.069217081763038 +270579,1352.8950000179254,-0.06921706417346808 +270580,1352.9000000179255,-0.06921704658366833 +270581,1352.9050000179257,-0.06921702899363878 +270582,1352.9100000179258,-0.06921701140337946 +270583,1352.9150000179259,-0.06921699381289043 +270584,1352.920000017926,-0.0692169762221717 +270585,1352.925000017926,-0.0692169586312233 +270586,1352.9300000179262,-0.0692169410400453 +270587,1352.9350000179263,-0.0692169234486377 +270588,1352.9400000179264,-0.06921690585700056 +270589,1352.9450000179265,-0.0692168882651339 +270590,1352.9500000179266,-0.06921687067303776 +270591,1352.9550000179267,-0.06921685308071218 +270592,1352.9600000179269,-0.0692168354881572 +270593,1352.965000017927,-0.06921681789537285 +270594,1352.970000017927,-0.06921680030235915 +270595,1352.9750000179272,-0.06921678270911616 +270596,1352.9800000179273,-0.0692167651156439 +270597,1352.9850000179274,-0.06921674752194241 +270598,1352.9900000179275,-0.06921672992801173 +270599,1352.9950000179276,-0.06921671233385189 +270600,1353.0000000179277,-0.06921669473946293 +270601,1353.0050000179278,-0.06921667714484488 +270602,1353.010000017928,-0.06921665954999778 +270603,1353.015000017928,-0.06921664195492166 +270604,1353.0200000179282,-0.06921662435961658 +270605,1353.0250000179283,-0.06921660676408255 +270606,1353.0300000179284,-0.0692165891683196 +270607,1353.0350000179285,-0.0692165715723278 +270608,1353.0400000179286,-0.06921655397610715 +270609,1353.0450000179287,-0.0692165363796577 +270610,1353.0500000179288,-0.06921651878297948 +270611,1353.055000017929,-0.06921650118607253 +270612,1353.060000017929,-0.0692164835889369 +270613,1353.0650000179292,-0.06921646599157259 +270614,1353.0700000179293,-0.06921644839397968 +270615,1353.0750000179294,-0.06921643079615816 +270616,1353.0800000179295,-0.0692164131981081 +270617,1353.0850000179296,-0.06921639559982953 +270618,1353.0900000179297,-0.06921637800132246 +270619,1353.0950000179298,-0.06921636040258697 +270620,1353.10000001793,-0.06921634280362307 +270621,1353.10500001793,-0.06921632520443079 +270622,1353.1100000179301,-0.06921630760501017 +270623,1353.1150000179302,-0.06921629000536127 +270624,1353.1200000179304,-0.06921627240548407 +270625,1353.1250000179305,-0.06921625480537867 +270626,1353.1300000179306,-0.06921623720504506 +270627,1353.1350000179307,-0.0692162196044833 +270628,1353.1400000179308,-0.06921620200369341 +270629,1353.145000017931,-0.06921618440267543 +270630,1353.150000017931,-0.0692161668014294 +270631,1353.1550000179311,-0.06921614919995536 +270632,1353.1600000179312,-0.06921613159825334 +270633,1353.1650000179313,-0.06921611399632337 +270634,1353.1700000179314,-0.0692160963941655 +270635,1353.1750000179316,-0.06921607879177974 +270636,1353.1800000179317,-0.06921606118916615 +270637,1353.1850000179318,-0.06921604358632477 +270638,1353.1900000179319,-0.06921602598325562 +270639,1353.195000017932,-0.06921600837995874 +270640,1353.200000017932,-0.06921599077643416 +270641,1353.2050000179322,-0.06921597317268191 +270642,1353.2100000179323,-0.06921595556870205 +270643,1353.2150000179324,-0.06921593796449461 +270644,1353.2200000179325,-0.06921592036005962 +270645,1353.2250000179326,-0.06921590275539712 +270646,1353.2300000179328,-0.06921588515050713 +270647,1353.2350000179329,-0.06921586754538969 +270648,1353.240000017933,-0.06921584994004484 +270649,1353.245000017933,-0.06921583233447264 +270650,1353.2500000179332,-0.06921581472867308 +270651,1353.2550000179333,-0.06921579712264624 +270652,1353.2600000179334,-0.06921577951639211 +270653,1353.2650000179335,-0.06921576190991077 +270654,1353.2700000179336,-0.06921574430320224 +270655,1353.2750000179337,-0.06921572669626654 +270656,1353.2800000179338,-0.06921570908910371 +270657,1353.285000017934,-0.0692156914817138 +270658,1353.290000017934,-0.06921567387409686 +270659,1353.2950000179342,-0.06921565626625288 +270660,1353.3000000179343,-0.06921563865818194 +270661,1353.3050000179344,-0.06921562104988405 +270662,1353.3100000179345,-0.06921560344135926 +270663,1353.3150000179346,-0.06921558583260759 +270664,1353.3200000179347,-0.06921556822362909 +270665,1353.3250000179348,-0.06921555061442379 +270666,1353.330000017935,-0.06921553300499173 +270667,1353.335000017935,-0.06921551539533292 +270668,1353.3400000179352,-0.06921549778544744 +270669,1353.3450000179353,-0.0692154801753353 +270670,1353.3500000179354,-0.06921546256499654 +270671,1353.3550000179355,-0.06921544495443119 +270672,1353.3600000179356,-0.0692154273436393 +270673,1353.3650000179357,-0.06921540973262089 +270674,1353.3700000179358,-0.069215392121376 +270675,1353.375000017936,-0.06921537450990468 +270676,1353.380000017936,-0.06921535689820695 +270677,1353.3850000179361,-0.06921533928628285 +270678,1353.3900000179362,-0.06921532167413241 +270679,1353.3950000179364,-0.06921530406175568 +270680,1353.4000000179365,-0.06921528644915267 +270681,1353.4050000179366,-0.06921526883632345 +270682,1353.4100000179367,-0.06921525122326803 +270683,1353.4150000179368,-0.06921523360998645 +270684,1353.420000017937,-0.06921521599647877 +270685,1353.425000017937,-0.06921519838274501 +270686,1353.4300000179371,-0.06921518076878519 +270687,1353.4350000179372,-0.06921516315459937 +270688,1353.4400000179373,-0.06921514554018757 +270689,1353.4450000179374,-0.06921512792554982 +270690,1353.4500000179376,-0.06921511031068617 +270691,1353.4550000179377,-0.06921509269559666 +270692,1353.4600000179378,-0.06921507508028131 +270693,1353.4650000179379,-0.06921505746474017 +270694,1353.470000017938,-0.06921503984897327 +270695,1353.475000017938,-0.06921502223298066 +270696,1353.4800000179382,-0.06921500461676235 +270697,1353.4850000179383,-0.06921498700031838 +270698,1353.4900000179384,-0.0692149693836488 +270699,1353.4950000179385,-0.06921495176675363 +270700,1353.5000000179386,-0.06921493414963292 +270701,1353.5050000179388,-0.06921491653228672 +270702,1353.5100000179389,-0.06921489891471502 +270703,1353.515000017939,-0.0692148812969179 +270704,1353.520000017939,-0.06921486367889537 +270705,1353.5250000179392,-0.06921484606064747 +270706,1353.5300000179393,-0.06921482844217425 +270707,1353.5350000179394,-0.06921481082347575 +270708,1353.5400000179395,-0.06921479320455198 +270709,1353.5450000179396,-0.069214775585403 +270710,1353.5500000179397,-0.06921475796602881 +270711,1353.5550000179398,-0.06921474034642948 +270712,1353.56000001794,-0.06921472272660505 +270713,1353.56500001794,-0.06921470510655553 +270714,1353.5700000179402,-0.06921468748628097 +270715,1353.5750000179403,-0.0692146698657814 +270716,1353.5800000179404,-0.06921465224505687 +270717,1353.5850000179405,-0.0692146346241074 +270718,1353.5900000179406,-0.06921461700293303 +270719,1353.5950000179407,-0.0692145993815338 +270720,1353.6000000179408,-0.06921458175990974 +270721,1353.605000017941,-0.06921456413806092 +270722,1353.610000017941,-0.06921454651598731 +270723,1353.6150000179412,-0.069214528893689 +270724,1353.6200000179413,-0.06921451127116598 +270725,1353.6250000179414,-0.06921449364841835 +270726,1353.6300000179415,-0.06921447602544607 +270727,1353.6350000179416,-0.06921445840224924 +270728,1353.6400000179417,-0.06921444077882787 +270729,1353.6450000179418,-0.06921442315518199 +270730,1353.650000017942,-0.06921440553131165 +270731,1353.655000017942,-0.06921438790721689 +270732,1353.6600000179421,-0.06921437028289772 +270733,1353.6650000179422,-0.0692143526583542 +270734,1353.6700000179424,-0.06921433503358636 +270735,1353.6750000179425,-0.06921431740859421 +270736,1353.6800000179426,-0.06921429978337783 +270737,1353.6850000179427,-0.06921428215793723 +270738,1353.6900000179428,-0.06921426453227246 +270739,1353.695000017943,-0.06921424690638354 +270740,1353.700000017943,-0.06921422928027052 +270741,1353.7050000179431,-0.06921421165393342 +270742,1353.7100000179432,-0.06921419402737229 +270743,1353.7150000179433,-0.06921417640058716 +270744,1353.7200000179434,-0.06921415877357807 +270745,1353.7250000179436,-0.06921414114634505 +270746,1353.7300000179437,-0.06921412351888814 +270747,1353.7350000179438,-0.06921410589120738 +270748,1353.7400000179439,-0.0692140882633028 +270749,1353.745000017944,-0.06921407063517444 +270750,1353.750000017944,-0.06921405300682233 +270751,1353.7550000179442,-0.06921403537824651 +270752,1353.7600000179443,-0.06921401774944701 +270753,1353.7650000179444,-0.06921400012042388 +270754,1353.7700000179445,-0.06921398249117713 +270755,1353.7750000179446,-0.06921396486170683 +270756,1353.7800000179448,-0.069213947232013 +270757,1353.7850000179449,-0.06921392960209567 +270758,1353.790000017945,-0.06921391197195488 +270759,1353.795000017945,-0.06921389434159067 +270760,1353.8000000179452,-0.06921387671100308 +270761,1353.8050000179453,-0.06921385908019213 +270762,1353.8100000179454,-0.06921384144915789 +270763,1353.8150000179455,-0.06921382381790035 +270764,1353.8200000179456,-0.06921380618641958 +270765,1353.8250000179457,-0.06921378855471559 +270766,1353.8300000179458,-0.06921377092278844 +270767,1353.835000017946,-0.06921375329063816 +270768,1353.840000017946,-0.06921373565826477 +270769,1353.8450000179462,-0.06921371802566832 +270770,1353.8500000179463,-0.06921370039284884 +270771,1353.8550000179464,-0.06921368275980637 +270772,1353.8600000179465,-0.06921366512654097 +270773,1353.8650000179466,-0.06921364749305262 +270774,1353.8700000179467,-0.06921362985934142 +270775,1353.8750000179468,-0.06921361222540735 +270776,1353.880000017947,-0.06921359459125048 +270777,1353.885000017947,-0.06921357695687085 +270778,1353.8900000179472,-0.06921355932226847 +270779,1353.8950000179473,-0.06921354168744338 +270780,1353.9000000179474,-0.06921352405239564 +270781,1353.9050000179475,-0.06921350641712527 +270782,1353.9100000179476,-0.0692134887816323 +270783,1353.9150000179477,-0.06921347114591679 +270784,1353.9200000179478,-0.06921345350997875 +270785,1353.925000017948,-0.06921343587381823 +270786,1353.930000017948,-0.06921341823743525 +270787,1353.9350000179481,-0.06921340060082987 +270788,1353.9400000179483,-0.0692133829640021 +270789,1353.9450000179484,-0.069213365326952 +270790,1353.9500000179485,-0.0692133476896796 +270791,1353.9550000179486,-0.06921333005218493 +270792,1353.9600000179487,-0.06921331241446803 +270793,1353.9650000179488,-0.06921329477652893 +270794,1353.970000017949,-0.06921327713836767 +270795,1353.975000017949,-0.06921325949998429 +270796,1353.9800000179491,-0.06921324186137882 +270797,1353.9850000179492,-0.0692132242225513 +270798,1353.9900000179493,-0.06921320658350177 +270799,1353.9950000179495,-0.06921318894423027 +270800,1354.0000000179496,-0.06921317130473682 +270801,1354.0050000179497,-0.06921315366502147 +270802,1354.0100000179498,-0.06921313602508423 +270803,1354.01500001795,-0.06921311838492518 +270804,1354.02000001795,-0.06921310074454433 +270805,1354.02500001795,-0.0692130831039417 +270806,1354.0300000179502,-0.06921306546311737 +270807,1354.0350000179503,-0.06921304782207133 +270808,1354.0400000179504,-0.06921303018080364 +270809,1354.0450000179505,-0.06921301253931433 +270810,1354.0500000179507,-0.06921299489760345 +270811,1354.0550000179508,-0.06921297725567102 +270812,1354.0600000179509,-0.06921295961351709 +270813,1354.065000017951,-0.06921294197114168 +270814,1354.070000017951,-0.06921292432854483 +270815,1354.0750000179512,-0.06921290668572659 +270816,1354.0800000179513,-0.06921288904268698 +270817,1354.0850000179514,-0.06921287139942606 +270818,1354.0900000179515,-0.06921285375594383 +270819,1354.0950000179516,-0.06921283611224036 +270820,1354.1000000179517,-0.06921281846831566 +270821,1354.1050000179519,-0.06921280082416978 +270822,1354.110000017952,-0.06921278317980276 +270823,1354.115000017952,-0.06921276553521462 +270824,1354.1200000179522,-0.06921274789040541 +270825,1354.1250000179523,-0.06921273024537515 +270826,1354.1300000179524,-0.0692127126001239 +270827,1354.1350000179525,-0.0692126949546517 +270828,1354.1400000179526,-0.06921267730895855 +270829,1354.1450000179527,-0.06921265966304452 +270830,1354.1500000179528,-0.06921264201690963 +270831,1354.155000017953,-0.06921262437055391 +270832,1354.160000017953,-0.06921260672397742 +270833,1354.1650000179532,-0.06921258907718017 +270834,1354.1700000179533,-0.06921257143016221 +270835,1354.1750000179534,-0.06921255378292358 +270836,1354.1800000179535,-0.06921253613546431 +270837,1354.1850000179536,-0.06921251848778444 +270838,1354.1900000179537,-0.069212500839884 +270839,1354.1950000179538,-0.06921248319176303 +270840,1354.200000017954,-0.06921246554342157 +270841,1354.205000017954,-0.06921244789485965 +270842,1354.2100000179541,-0.0692124302460773 +270843,1354.2150000179543,-0.06921241259707457 +270844,1354.2200000179544,-0.06921239494785149 +270845,1354.2250000179545,-0.0692123772984081 +270846,1354.2300000179546,-0.06921235964874443 +270847,1354.2350000179547,-0.06921234199886053 +270848,1354.2400000179548,-0.06921232434875643 +270849,1354.245000017955,-0.06921230669843215 +270850,1354.250000017955,-0.06921228904788773 +270851,1354.2550000179551,-0.06921227139712323 +270852,1354.2600000179552,-0.06921225374613867 +270853,1354.2650000179553,-0.06921223609493408 +270854,1354.2700000179555,-0.06921221844350951 +270855,1354.2750000179556,-0.06921220079186499 +270856,1354.2800000179557,-0.06921218314000055 +270857,1354.2850000179558,-0.06921216548791624 +270858,1354.290000017956,-0.06921214783561208 +270859,1354.295000017956,-0.06921213018308814 +270860,1354.300000017956,-0.06921211253034441 +270861,1354.3050000179562,-0.06921209487738095 +270862,1354.3100000179563,-0.0692120772241978 +270863,1354.3150000179564,-0.06921205957079497 +270864,1354.3200000179565,-0.06921204191717255 +270865,1354.3250000179567,-0.06921202426333052 +270866,1354.3300000179568,-0.06921200660926895 +270867,1354.3350000179569,-0.06921198895498784 +270868,1354.340000017957,-0.06921197130048728 +270869,1354.345000017957,-0.06921195364576727 +270870,1354.3500000179572,-0.06921193599082785 +270871,1354.3550000179573,-0.06921191833566907 +270872,1354.3600000179574,-0.06921190068029096 +270873,1354.3650000179575,-0.06921188302469354 +270874,1354.3700000179576,-0.06921186536887686 +270875,1354.3750000179577,-0.06921184771284096 +270876,1354.3800000179579,-0.06921183005658588 +270877,1354.385000017958,-0.06921181240011165 +270878,1354.390000017958,-0.0692117947434183 +270879,1354.3950000179582,-0.06921177708650587 +270880,1354.4000000179583,-0.06921175942937441 +270881,1354.4050000179584,-0.06921174177202394 +270882,1354.4100000179585,-0.0692117241144545 +270883,1354.4150000179586,-0.06921170645666612 +270884,1354.4200000179587,-0.06921168879865884 +270885,1354.4250000179588,-0.0692116711404327 +270886,1354.430000017959,-0.06921165348198774 +270887,1354.435000017959,-0.06921163582332399 +270888,1354.4400000179592,-0.06921161816444149 +270889,1354.4450000179593,-0.06921160050534028 +270890,1354.4500000179594,-0.06921158284602039 +270891,1354.4550000179595,-0.06921156518648186 +270892,1354.4600000179596,-0.06921154752672473 +270893,1354.4650000179597,-0.06921152986674901 +270894,1354.4700000179598,-0.06921151220655478 +270895,1354.47500001796,-0.06921149454614203 +270896,1354.48000001796,-0.06921147688551084 +270897,1354.4850000179601,-0.06921145922466121 +270898,1354.4900000179603,-0.06921144156359321 +270899,1354.4950000179604,-0.06921142390230685 +270900,1354.5000000179605,-0.06921140624080217 +270901,1354.5050000179606,-0.06921138857907923 +270902,1354.5100000179607,-0.06921137091713804 +270903,1354.5150000179608,-0.06921135325497865 +270904,1354.520000017961,-0.06921133559260108 +270905,1354.525000017961,-0.06921131793000539 +270906,1354.5300000179611,-0.06921130026719159 +270907,1354.5350000179612,-0.06921128260415974 +270908,1354.5400000179613,-0.06921126494090986 +270909,1354.5450000179615,-0.069211247277442 +270910,1354.5500000179616,-0.06921122961375618 +270911,1354.5550000179617,-0.06921121194985246 +270912,1354.5600000179618,-0.06921119428573086 +270913,1354.565000017962,-0.06921117662139141 +270914,1354.570000017962,-0.06921115895683416 +270915,1354.575000017962,-0.06921114129205914 +270916,1354.5800000179622,-0.06921112362706638 +270917,1354.5850000179623,-0.06921110596185594 +270918,1354.5900000179624,-0.06921108829642783 +270919,1354.5950000179625,-0.0692110706307821 +270920,1354.6000000179627,-0.06921105296491879 +270921,1354.6050000179628,-0.06921103529883793 +270922,1354.6100000179629,-0.06921101763253955 +270923,1354.615000017963,-0.06921099996602369 +270924,1354.620000017963,-0.0692109822992904 +270925,1354.6250000179632,-0.06921096463233971 +270926,1354.6300000179633,-0.06921094696517165 +270927,1354.6350000179634,-0.06921092929778626 +270928,1354.6400000179635,-0.06921091163018356 +270929,1354.6450000179636,-0.06921089396236361 +270930,1354.6500000179637,-0.06921087629432644 +270931,1354.6550000179639,-0.0692108586260721 +270932,1354.660000017964,-0.06921084095760059 +270933,1354.665000017964,-0.06921082328891198 +270934,1354.6700000179642,-0.0692108056200063 +270935,1354.6750000179643,-0.06921078795088358 +270936,1354.6800000179644,-0.06921077028154385 +270937,1354.6850000179645,-0.06921075261198714 +270938,1354.6900000179646,-0.06921073494221353 +270939,1354.6950000179647,-0.06921071727222301 +270940,1354.7000000179648,-0.06921069960201563 +270941,1354.705000017965,-0.06921068193159144 +270942,1354.710000017965,-0.06921066426095046 +270943,1354.7150000179652,-0.06921064659009274 +270944,1354.7200000179653,-0.0692106289190183 +270945,1354.7250000179654,-0.0692106112477272 +270946,1354.7300000179655,-0.06921059357621945 +270947,1354.7350000179656,-0.0692105759044951 +270948,1354.7400000179657,-0.06921055823255419 +270949,1354.7450000179658,-0.06921054056039676 +270950,1354.750000017966,-0.06921052288802282 +270951,1354.755000017966,-0.06921050521543244 +270952,1354.7600000179661,-0.06921048754262563 +270953,1354.7650000179663,-0.06921046986960246 +270954,1354.7700000179664,-0.06921045219636292 +270955,1354.7750000179665,-0.06921043452290708 +270956,1354.7800000179666,-0.06921041684923497 +270957,1354.7850000179667,-0.06921039917534662 +270958,1354.7900000179668,-0.06921038150124208 +270959,1354.795000017967,-0.06921036382692138 +270960,1354.800000017967,-0.06921034615238454 +270961,1354.8050000179671,-0.06921032847763162 +270962,1354.8100000179672,-0.06921031080266264 +270963,1354.8150000179673,-0.06921029312747766 +270964,1354.8200000179675,-0.06921027545207668 +270965,1354.8250000179676,-0.06921025777645977 +270966,1354.8300000179677,-0.06921024010062694 +270967,1354.8350000179678,-0.06921022242457826 +270968,1354.840000017968,-0.06921020474831374 +270969,1354.845000017968,-0.06921018707183342 +270970,1354.8500000179681,-0.06921016939513734 +270971,1354.8550000179682,-0.06921015171822553 +270972,1354.8600000179683,-0.06921013404109805 +270973,1354.8650000179684,-0.0692101163637549 +270974,1354.8700000179686,-0.06921009868619615 +270975,1354.8750000179687,-0.06921008100842181 +270976,1354.8800000179688,-0.06921006333043193 +270977,1354.8850000179689,-0.06921004565222656 +270978,1354.890000017969,-0.06921002797380571 +270979,1354.895000017969,-0.06921001029516945 +270980,1354.9000000179692,-0.06920999261631776 +270981,1354.9050000179693,-0.06920997493725074 +270982,1354.9100000179694,-0.06920995725796839 +270983,1354.9150000179695,-0.06920993957847076 +270984,1354.9200000179696,-0.06920992189875787 +270985,1354.9250000179698,-0.06920990421882978 +270986,1354.9300000179699,-0.06920988653868651 +270987,1354.93500001797,-0.06920986885832811 +270988,1354.94000001797,-0.0692098511777546 +270989,1354.9450000179702,-0.06920983349696602 +270990,1354.9500000179703,-0.06920981581596243 +270991,1354.9550000179704,-0.06920979813474383 +270992,1354.9600000179705,-0.06920978045331029 +270993,1354.9650000179706,-0.06920976277166183 +270994,1354.9700000179707,-0.06920974508979849 +270995,1354.9750000179708,-0.0692097274077203 +270996,1354.980000017971,-0.0692097097254273 +270997,1354.985000017971,-0.06920969204291952 +270998,1354.9900000179712,-0.06920967436019701 +270999,1354.9950000179713,-0.0692096566772598 +271000,1355.0000000179714,-0.06920963899410794 +271001,1355.0050000179715,-0.06920962131074145 +271002,1355.0100000179716,-0.06920960362716036 +271003,1355.0150000179717,-0.06920958594336472 +271004,1355.0200000179718,-0.06920956825935458 +271005,1355.025000017972,-0.06920955057512995 +271006,1355.030000017972,-0.06920953289069089 +271007,1355.0350000179722,-0.06920951520603741 +271008,1355.0400000179723,-0.06920949752116957 +271009,1355.0450000179724,-0.0692094798360874 +271010,1355.0500000179725,-0.06920946215079093 +271011,1355.0550000179726,-0.0692094444652802 +271012,1355.0600000179727,-0.06920942677955524 +271013,1355.0650000179728,-0.06920940909361611 +271014,1355.070000017973,-0.06920939140746284 +271015,1355.075000017973,-0.06920937372109544 +271016,1355.0800000179731,-0.06920935603451396 +271017,1355.0850000179732,-0.06920933834771846 +271018,1355.0900000179734,-0.06920932066070894 +271019,1355.0950000179735,-0.06920930297348546 +271020,1355.1000000179736,-0.06920928528604806 +271021,1355.1050000179737,-0.06920926759839677 +271022,1355.1100000179738,-0.06920924991053161 +271023,1355.115000017974,-0.06920923222245265 +271024,1355.120000017974,-0.0692092145341599 +271025,1355.1250000179741,-0.06920919684565341 +271026,1355.1300000179742,-0.0692091791569332 +271027,1355.1350000179743,-0.06920916146799933 +271028,1355.1400000179744,-0.06920914377885182 +271029,1355.1450000179746,-0.06920912608949072 +271030,1355.1500000179747,-0.06920910839991605 +271031,1355.1550000179748,-0.06920909071012786 +271032,1355.1600000179749,-0.06920907302012617 +271033,1355.165000017975,-0.06920905532991103 +271034,1355.170000017975,-0.0692090376394825 +271035,1355.1750000179752,-0.06920901994884056 +271036,1355.1800000179753,-0.0692090022579853 +271037,1355.1850000179754,-0.06920898456691674 +271038,1355.1900000179755,-0.0692089668756349 +271039,1355.1950000179756,-0.06920894918413985 +271040,1355.2000000179758,-0.06920893149243157 +271041,1355.2050000179759,-0.06920891380051016 +271042,1355.210000017976,-0.06920889610837563 +271043,1355.215000017976,-0.069208878416028 +271044,1355.2200000179762,-0.06920886072346732 +271045,1355.2250000179763,-0.06920884303069365 +271046,1355.2300000179764,-0.069208825337707 +271047,1355.2350000179765,-0.06920880764450742 +271048,1355.2400000179766,-0.06920878995109493 +271049,1355.2450000179767,-0.06920877225746958 +271050,1355.2500000179768,-0.0692087545636314 +271051,1355.255000017977,-0.06920873686958044 +271052,1355.260000017977,-0.06920871917531672 +271053,1355.2650000179772,-0.06920870148084028 +271054,1355.2700000179773,-0.06920868378615115 +271055,1355.2750000179774,-0.0692086660912494 +271056,1355.2800000179775,-0.06920864839613504 +271057,1355.2850000179776,-0.0692086307008081 +271058,1355.2900000179777,-0.06920861300526865 +271059,1355.2950000179778,-0.06920859530951669 +271060,1355.300000017978,-0.06920857761355227 +271061,1355.305000017978,-0.06920855991737543 +271062,1355.3100000179782,-0.0692085422209862 +271063,1355.3150000179783,-0.06920852452438463 +271064,1355.3200000179784,-0.06920850682757075 +271065,1355.3250000179785,-0.06920848913054459 +271066,1355.3300000179786,-0.0692084714333062 +271067,1355.3350000179787,-0.06920845373585562 +271068,1355.3400000179788,-0.06920843603819286 +271069,1355.345000017979,-0.06920841834031798 +271070,1355.350000017979,-0.069208400642231 +271071,1355.3550000179791,-0.06920838294393197 +271072,1355.3600000179792,-0.06920836524542093 +271073,1355.3650000179794,-0.0692083475466979 +271074,1355.3700000179795,-0.06920832984776293 +271075,1355.3750000179796,-0.06920831214861604 +271076,1355.3800000179797,-0.06920829444925732 +271077,1355.3850000179798,-0.06920827674968673 +271078,1355.39000001798,-0.06920825904990435 +271079,1355.39500001798,-0.06920824134991023 +271080,1355.4000000179801,-0.06920822364970439 +271081,1355.4050000179802,-0.06920820594928685 +271082,1355.4100000179803,-0.06920818824865767 +271083,1355.4150000179804,-0.06920817054781686 +271084,1355.4200000179806,-0.06920815284676449 +271085,1355.4250000179807,-0.06920813514550057 +271086,1355.4300000179808,-0.06920811744402516 +271087,1355.4350000179809,-0.0692080997423383 +271088,1355.440000017981,-0.06920808204043999 +271089,1355.445000017981,-0.06920806433833031 +271090,1355.4500000179812,-0.06920804663600925 +271091,1355.4550000179813,-0.0692080289334769 +271092,1355.4600000179814,-0.06920801123073327 +271093,1355.4650000179815,-0.06920799352777839 +271094,1355.4700000179816,-0.06920797582461229 +271095,1355.4750000179818,-0.06920795812123504 +271096,1355.4800000179819,-0.06920794041764665 +271097,1355.485000017982,-0.06920792271384717 +271098,1355.490000017982,-0.06920790500983662 +271099,1355.4950000179822,-0.06920788730561506 +271100,1355.5000000179823,-0.06920786960118251 +271101,1355.5050000179824,-0.06920785189653901 +271102,1355.5100000179825,-0.06920783419168461 +271103,1355.5150000179826,-0.06920781648661933 +271104,1355.5200000179827,-0.06920779878134321 +271105,1355.5250000179828,-0.0692077810758563 +271106,1355.530000017983,-0.06920776337015862 +271107,1355.535000017983,-0.06920774566425021 +271108,1355.5400000179832,-0.06920772795813111 +271109,1355.5450000179833,-0.06920771025180138 +271110,1355.5500000179834,-0.06920769254526102 +271111,1355.5550000179835,-0.06920767483851008 +271112,1355.5600000179836,-0.06920765713154858 +271113,1355.5650000179837,-0.06920763942437659 +271114,1355.5700000179838,-0.06920762171699414 +271115,1355.575000017984,-0.06920760400940125 +271116,1355.580000017984,-0.06920758630159797 +271117,1355.5850000179842,-0.06920756859358435 +271118,1355.5900000179843,-0.06920755088536039 +271119,1355.5950000179844,-0.06920753317692616 +271120,1355.6000000179845,-0.06920751546828167 +271121,1355.6050000179846,-0.06920749775942697 +271122,1355.6100000179847,-0.0692074800503621 +271123,1355.6150000179848,-0.06920746234108711 +271124,1355.620000017985,-0.06920744463160201 +271125,1355.625000017985,-0.06920742692190686 +271126,1355.6300000179851,-0.06920740921200168 +271127,1355.6350000179852,-0.06920739150188651 +271128,1355.6400000179854,-0.06920737379156139 +271129,1355.6450000179855,-0.06920735608102635 +271130,1355.6500000179856,-0.06920733837028144 +271131,1355.6550000179857,-0.06920732065932668 +271132,1355.6600000179858,-0.06920730294816213 +271133,1355.665000017986,-0.06920728523678782 +271134,1355.670000017986,-0.06920726752520376 +271135,1355.6750000179861,-0.06920724981341002 +271136,1355.6800000179862,-0.06920723210140661 +271137,1355.6850000179863,-0.06920721438919361 +271138,1355.6900000179864,-0.06920719667677103 +271139,1355.6950000179866,-0.06920717896413889 +271140,1355.7000000179867,-0.06920716125129725 +271141,1355.7050000179868,-0.06920714353824614 +271142,1355.7100000179869,-0.0692071258249856 +271143,1355.715000017987,-0.06920710811151565 +271144,1355.720000017987,-0.06920709039783636 +271145,1355.7250000179872,-0.06920707268394773 +271146,1355.7300000179873,-0.06920705496984983 +271147,1355.7350000179874,-0.06920703725554267 +271148,1355.7400000179875,-0.06920701954102632 +271149,1355.7450000179876,-0.06920700182630078 +271150,1355.7500000179878,-0.06920698411136611 +271151,1355.7550000179879,-0.06920696639622234 +271152,1355.760000017988,-0.0692069486808695 +271153,1355.765000017988,-0.06920693096530765 +271154,1355.7700000179882,-0.0692069132495368 +271155,1355.7750000179883,-0.06920689553355701 +271156,1355.7800000179884,-0.0692068778173683 +271157,1355.7850000179885,-0.0692068601009707 +271158,1355.7900000179886,-0.06920684238436427 +271159,1355.7950000179887,-0.06920682466754903 +271160,1355.8000000179889,-0.06920680695052502 +271161,1355.805000017989,-0.06920678923329229 +271162,1355.810000017989,-0.06920677151585088 +271163,1355.8150000179892,-0.06920675379820079 +271164,1355.8200000179893,-0.0692067360803421 +271165,1355.8250000179894,-0.06920671836227484 +271166,1355.8300000179895,-0.06920670064399902 +271167,1355.8350000179896,-0.06920668292551468 +271168,1355.8400000179897,-0.06920666520682188 +271169,1355.8450000179898,-0.06920664748792064 +271170,1355.85000001799,-0.06920662976881103 +271171,1355.85500001799,-0.06920661204949305 +271172,1355.8600000179902,-0.06920659432996674 +271173,1355.8650000179903,-0.06920657661023216 +271174,1355.8700000179904,-0.06920655889028933 +271175,1355.8750000179905,-0.06920654117013827 +271176,1355.8800000179906,-0.06920652344977905 +271177,1355.8850000179907,-0.0692065057292117 +271178,1355.8900000179908,-0.06920648800843623 +271179,1355.895000017991,-0.06920647028745272 +271180,1355.900000017991,-0.06920645256626118 +271181,1355.9050000179911,-0.06920643484486165 +271182,1355.9100000179913,-0.06920641712325418 +271183,1355.9150000179914,-0.06920639940143877 +271184,1355.9200000179915,-0.06920638167941551 +271185,1355.9250000179916,-0.0692063639571844 +271186,1355.9300000179917,-0.06920634623474549 +271187,1355.9350000179918,-0.0692063285120988 +271188,1355.940000017992,-0.0692063107892444 +271189,1355.945000017992,-0.06920629306618231 +271190,1355.9500000179921,-0.06920627534291256 +271191,1355.9550000179922,-0.06920625761943519 +271192,1355.9600000179923,-0.06920623989575024 +271193,1355.9650000179925,-0.06920622217185776 +271194,1355.9700000179926,-0.06920620444775777 +271195,1355.9750000179927,-0.06920618672345032 +271196,1355.9800000179928,-0.06920616899893543 +271197,1355.985000017993,-0.06920615127421315 +271198,1355.990000017993,-0.06920613354928351 +271199,1355.995000017993,-0.06920611582414656 +271200,1356.0000000179932,-0.06920609809880231 +271201,1356.0050000179933,-0.06920608037325081 +271202,1356.0100000179934,-0.06920606264749211 +271203,1356.0150000179935,-0.06920604492152625 +271204,1356.0200000179937,-0.06920602719535326 +271205,1356.0250000179938,-0.06920600946897316 +271206,1356.0300000179939,-0.06920599174238601 +271207,1356.035000017994,-0.06920597401559182 +271208,1356.040000017994,-0.06920595628859065 +271209,1356.0450000179942,-0.06920593856138255 +271210,1356.0500000179943,-0.06920592083396751 +271211,1356.0550000179944,-0.06920590310634561 +271212,1356.0600000179945,-0.06920588537851688 +271213,1356.0650000179946,-0.06920586765048135 +271214,1356.0700000179947,-0.06920584992223905 +271215,1356.0750000179949,-0.06920583219379003 +271216,1356.080000017995,-0.06920581446513432 +271217,1356.085000017995,-0.06920579673627196 +271218,1356.0900000179952,-0.069205779007203 +271219,1356.0950000179953,-0.06920576127792745 +271220,1356.1000000179954,-0.06920574354844537 +271221,1356.1050000179955,-0.06920572581875678 +271222,1356.1100000179956,-0.06920570808886173 +271223,1356.1150000179957,-0.06920569035876026 +271224,1356.1200000179958,-0.06920567262845238 +271225,1356.125000017996,-0.06920565489793815 +271226,1356.130000017996,-0.0692056371672176 +271227,1356.1350000179962,-0.06920561943629079 +271228,1356.1400000179963,-0.06920560170515773 +271229,1356.1450000179964,-0.06920558397381847 +271230,1356.1500000179965,-0.06920556624227303 +271231,1356.1550000179966,-0.06920554851052146 +271232,1356.1600000179967,-0.06920553077856381 +271233,1356.1650000179968,-0.0692055130464001 +271234,1356.170000017997,-0.06920549531403038 +271235,1356.175000017997,-0.06920547758145466 +271236,1356.1800000179971,-0.069205459848673 +271237,1356.1850000179973,-0.06920544211568544 +271238,1356.1900000179974,-0.06920542438249201 +271239,1356.1950000179975,-0.06920540664909275 +271240,1356.2000000179976,-0.0692053889154877 +271241,1356.2050000179977,-0.0692053711816769 +271242,1356.2100000179978,-0.06920535344766036 +271243,1356.215000017998,-0.06920533571343815 +271244,1356.220000017998,-0.06920531797901029 +271245,1356.2250000179981,-0.06920530024437682 +271246,1356.2300000179982,-0.06920528250953777 +271247,1356.2350000179983,-0.0692052647744932 +271248,1356.2400000179985,-0.06920524703924312 +271249,1356.2450000179986,-0.06920522930378759 +271250,1356.2500000179987,-0.06920521156812665 +271251,1356.2550000179988,-0.06920519383226031 +271252,1356.260000017999,-0.06920517609618862 +271253,1356.265000017999,-0.06920515835991162 +271254,1356.270000017999,-0.06920514062342936 +271255,1356.2750000179992,-0.06920512288674185 +271256,1356.2800000179993,-0.06920510514984915 +271257,1356.2850000179994,-0.06920508741275129 +271258,1356.2900000179995,-0.06920506967544829 +271259,1356.2950000179997,-0.06920505193794022 +271260,1356.3000000179998,-0.0692050342002271 +271261,1356.3050000179999,-0.06920501646230895 +271262,1356.310000018,-0.06920499872418583 +271263,1356.315000018,-0.06920498098585777 +271264,1356.3200000180002,-0.06920496324732482 +271265,1356.3250000180003,-0.06920494550858702 +271266,1356.3300000180004,-0.06920492776964438 +271267,1356.3350000180005,-0.06920491003049695 +271268,1356.3400000180006,-0.06920489229114478 +271269,1356.3450000180007,-0.06920487455158789 +271270,1356.3500000180009,-0.06920485681182631 +271271,1356.355000018001,-0.06920483907186009 +271272,1356.360000018001,-0.06920482133168929 +271273,1356.3650000180012,-0.06920480359131392 +271274,1356.3700000180013,-0.06920478585073402 +271275,1356.3750000180014,-0.06920476810994963 +271276,1356.3800000180015,-0.06920475036896079 +271277,1356.3850000180016,-0.06920473262776752 +271278,1356.3900000180017,-0.06920471488636988 +271279,1356.3950000180018,-0.0692046971447679 +271280,1356.400000018002,-0.06920467940296163 +271281,1356.405000018002,-0.06920466166095109 +271282,1356.4100000180022,-0.0692046439187363 +271283,1356.4150000180023,-0.06920462617631735 +271284,1356.4200000180024,-0.06920460843369423 +271285,1356.4250000180025,-0.069204590690867 +271286,1356.4300000180026,-0.06920457294783568 +271287,1356.4350000180027,-0.06920455520460031 +271288,1356.4400000180028,-0.06920453746116095 +271289,1356.445000018003,-0.06920451971751763 +271290,1356.450000018003,-0.06920450197367037 +271291,1356.4550000180031,-0.06920448422961921 +271292,1356.4600000180033,-0.06920446648536421 +271293,1356.4650000180034,-0.06920444874090538 +271294,1356.4700000180035,-0.06920443099624278 +271295,1356.4750000180036,-0.06920441325137644 +271296,1356.4800000180037,-0.06920439550630639 +271297,1356.4850000180038,-0.06920437776103266 +271298,1356.490000018004,-0.06920436001555531 +271299,1356.495000018004,-0.06920434226987436 +271300,1356.5000000180041,-0.06920432452398985 +271301,1356.5050000180042,-0.06920430677790183 +271302,1356.5100000180043,-0.06920428903161033 +271303,1356.5150000180045,-0.06920427128511539 +271304,1356.5200000180046,-0.06920425353841704 +271305,1356.5250000180047,-0.06920423579151531 +271306,1356.5300000180048,-0.06920421804441027 +271307,1356.535000018005,-0.06920420029710192 +271308,1356.540000018005,-0.06920418254959032 +271309,1356.545000018005,-0.0692041648018755 +271310,1356.5500000180052,-0.06920414705395748 +271311,1356.5550000180053,-0.06920412930583633 +271312,1356.5600000180054,-0.06920411155751208 +271313,1356.5650000180055,-0.06920409380898475 +271314,1356.5700000180057,-0.0692040760602544 +271315,1356.5750000180058,-0.06920405831132105 +271316,1356.5800000180059,-0.06920404056218475 +271317,1356.585000018006,-0.0692040228128455 +271318,1356.590000018006,-0.0692040050633034 +271319,1356.5950000180062,-0.06920398731355844 +271320,1356.6000000180063,-0.06920396956361069 +271321,1356.6050000180064,-0.06920395181346015 +271322,1356.6100000180065,-0.06920393406310689 +271323,1356.6150000180066,-0.06920391631255092 +271324,1356.6200000180067,-0.0692038985617923 +271325,1356.6250000180069,-0.06920388081083105 +271326,1356.630000018007,-0.06920386305966723 +271327,1356.635000018007,-0.06920384530830086 +271328,1356.6400000180072,-0.06920382755673198 +271329,1356.6450000180073,-0.06920380980496063 +271330,1356.6500000180074,-0.06920379205298684 +271331,1356.6550000180075,-0.06920377430081066 +271332,1356.6600000180076,-0.06920375654843212 +271333,1356.6650000180077,-0.06920373879585126 +271334,1356.6700000180078,-0.06920372104306813 +271335,1356.675000018008,-0.06920370329008274 +271336,1356.680000018008,-0.06920368553689515 +271337,1356.6850000180082,-0.06920366778350538 +271338,1356.6900000180083,-0.06920365002991348 +271339,1356.6950000180084,-0.06920363227611948 +271340,1356.7000000180085,-0.06920361452212342 +271341,1356.7050000180086,-0.06920359676792534 +271342,1356.7100000180087,-0.06920357901352528 +271343,1356.7150000180088,-0.06920356125892325 +271344,1356.720000018009,-0.06920354350411934 +271345,1356.725000018009,-0.06920352574911355 +271346,1356.7300000180092,-0.06920350799390593 +271347,1356.7350000180093,-0.06920349023849652 +271348,1356.7400000180094,-0.06920347248288534 +271349,1356.7450000180095,-0.06920345472707246 +271350,1356.7500000180096,-0.06920343697105787 +271351,1356.7550000180097,-0.06920341921484165 +271352,1356.7600000180098,-0.06920340145842381 +271353,1356.76500001801,-0.06920338370180441 +271354,1356.77000001801,-0.06920336594498347 +271355,1356.7750000180101,-0.06920334818796105 +271356,1356.7800000180102,-0.06920333043073715 +271357,1356.7850000180104,-0.06920331267331183 +271358,1356.7900000180105,-0.06920329491568514 +271359,1356.7950000180106,-0.06920327715785708 +271360,1356.8000000180107,-0.06920325939982773 +271361,1356.8050000180108,-0.06920324164159711 +271362,1356.810000018011,-0.06920322388316526 +271363,1356.815000018011,-0.06920320612453221 +271364,1356.8200000180111,-0.06920318836569798 +271365,1356.8250000180112,-0.06920317060666266 +271366,1356.8300000180113,-0.06920315284742624 +271367,1356.8350000180114,-0.06920313508798878 +271368,1356.8400000180116,-0.06920311732835031 +271369,1356.8450000180117,-0.06920309956851088 +271370,1356.8500000180118,-0.0692030818084705 +271371,1356.8550000180119,-0.06920306404822923 +271372,1356.860000018012,-0.06920304628778712 +271373,1356.865000018012,-0.06920302852714418 +271374,1356.8700000180122,-0.06920301076630044 +271375,1356.8750000180123,-0.06920299300525597 +271376,1356.8800000180124,-0.06920297524401077 +271377,1356.8850000180125,-0.06920295748256493 +271378,1356.8900000180126,-0.06920293972091844 +271379,1356.8950000180128,-0.06920292195907136 +271380,1356.9000000180129,-0.06920290419702373 +271381,1356.905000018013,-0.06920288643477557 +271382,1356.910000018013,-0.06920286867232693 +271383,1356.9150000180132,-0.06920285090967786 +271384,1356.9200000180133,-0.06920283314682836 +271385,1356.9250000180134,-0.0692028153837785 +271386,1356.9300000180135,-0.0692027976205283 +271387,1356.9350000180136,-0.06920277985707782 +271388,1356.9400000180137,-0.06920276209342707 +271389,1356.9450000180138,-0.06920274432957611 +271390,1356.950000018014,-0.06920272656552495 +271391,1356.955000018014,-0.06920270880127367 +271392,1356.9600000180142,-0.06920269103682228 +271393,1356.9650000180143,-0.06920267327217082 +271394,1356.9700000180144,-0.06920265550731933 +271395,1356.9750000180145,-0.06920263774226784 +271396,1356.9800000180146,-0.0692026199770164 +271397,1356.9850000180147,-0.06920260221156503 +271398,1356.9900000180148,-0.0692025844459138 +271399,1356.995000018015,-0.06920256668006272 +271400,1357.000000018015,-0.06920254891401183 +271401,1357.0050000180152,-0.06920253114776116 +271402,1357.0100000180153,-0.06920251338131078 +271403,1357.0150000180154,-0.0692024956146607 +271404,1357.0200000180155,-0.06920247784781097 +271405,1357.0250000180156,-0.06920246008076161 +271406,1357.0300000180157,-0.06920244231351268 +271407,1357.0350000180158,-0.0692024245460642 +271408,1357.040000018016,-0.06920240677841623 +271409,1357.045000018016,-0.0692023890105688 +271410,1357.0500000180161,-0.06920237124252192 +271411,1357.0550000180162,-0.06920235347427565 +271412,1357.0600000180164,-0.06920233570583004 +271413,1357.0650000180165,-0.0692023179371851 +271414,1357.0700000180166,-0.06920230016834089 +271415,1357.0750000180167,-0.06920228239929743 +271416,1357.0800000180168,-0.06920226463005477 +271417,1357.085000018017,-0.06920224686061295 +271418,1357.090000018017,-0.069202229090972 +271419,1357.0950000180171,-0.06920221132113195 +271420,1357.1000000180172,-0.06920219355109286 +271421,1357.1050000180173,-0.06920217578085476 +271422,1357.1100000180174,-0.06920215801041768 +271423,1357.1150000180176,-0.06920214023978166 +271424,1357.1200000180177,-0.06920212246894675 +271425,1357.1250000180178,-0.06920210469791296 +271426,1357.1300000180179,-0.06920208692668034 +271427,1357.135000018018,-0.06920206915524894 +271428,1357.140000018018,-0.06920205138361878 +271429,1357.1450000180182,-0.06920203361178992 +271430,1357.1500000180183,-0.06920201583976238 +271431,1357.1550000180184,-0.06920199806753621 +271432,1357.1600000180185,-0.06920198029511143 +271433,1357.1650000180186,-0.06920196252248809 +271434,1357.1700000180188,-0.06920194474966623 +271435,1357.1750000180189,-0.06920192697664589 +271436,1357.180000018019,-0.06920190920342709 +271437,1357.185000018019,-0.06920189143000986 +271438,1357.1900000180192,-0.06920187365639428 +271439,1357.1950000180193,-0.06920185588258036 +271440,1357.2000000180194,-0.06920183810856814 +271441,1357.2050000180195,-0.06920182033435766 +271442,1357.2100000180196,-0.06920180255994896 +271443,1357.2150000180197,-0.06920178478534207 +271444,1357.2200000180198,-0.06920176701053703 +271445,1357.22500001802,-0.06920174923553388 +271446,1357.23000001802,-0.06920173146033266 +271447,1357.2350000180202,-0.06920171368493341 +271448,1357.2400000180203,-0.06920169590933617 +271449,1357.2450000180204,-0.06920167813354096 +271450,1357.2500000180205,-0.06920166035754782 +271451,1357.2550000180206,-0.0692016425813568 +271452,1357.2600000180207,-0.06920162480496796 +271453,1357.2650000180208,-0.0692016070283813 +271454,1357.270000018021,-0.06920158925159686 +271455,1357.275000018021,-0.0692015714746147 +271456,1357.2800000180212,-0.06920155369743483 +271457,1357.2850000180213,-0.06920153592005732 +271458,1357.2900000180214,-0.06920151814248217 +271459,1357.2950000180215,-0.06920150036470944 +271460,1357.3000000180216,-0.0692014825867392 +271461,1357.3050000180217,-0.06920146480857142 +271462,1357.3100000180218,-0.06920144703020618 +271463,1357.315000018022,-0.06920142925164352 +271464,1357.320000018022,-0.06920141147288346 +271465,1357.3250000180221,-0.06920139369392606 +271466,1357.3300000180222,-0.06920137591477132 +271467,1357.3350000180224,-0.06920135813541932 +271468,1357.3400000180225,-0.06920134035587006 +271469,1357.3450000180226,-0.0692013225761236 +271470,1357.3500000180227,-0.06920130479617999 +271471,1357.3550000180228,-0.06920128701603923 +271472,1357.360000018023,-0.06920126923570138 +271473,1357.365000018023,-0.06920125145516651 +271474,1357.3700000180231,-0.06920123367443459 +271475,1357.3750000180232,-0.06920121589350572 +271476,1357.3800000180233,-0.0692011981123799 +271477,1357.3850000180234,-0.06920118033105717 +271478,1357.3900000180236,-0.0692011625495376 +271479,1357.3950000180237,-0.06920114476782119 +271480,1357.4000000180238,-0.069201126985908 +271481,1357.4050000180239,-0.06920110920379804 +271482,1357.410000018024,-0.06920109142149139 +271483,1357.415000018024,-0.06920107363898804 +271484,1357.4200000180242,-0.06920105585628808 +271485,1357.4250000180243,-0.06920103807339152 +271486,1357.4300000180244,-0.06920102029029838 +271487,1357.4350000180245,-0.06920100250700874 +271488,1357.4400000180246,-0.06920098472352261 +271489,1357.4450000180248,-0.06920096693984003 +271490,1357.4500000180249,-0.06920094915596105 +271491,1357.455000018025,-0.06920093137188568 +271492,1357.460000018025,-0.069200913587614 +271493,1357.4650000180252,-0.069200895803146 +271494,1357.4700000180253,-0.06920087801848177 +271495,1357.4750000180254,-0.06920086023362129 +271496,1357.4800000180255,-0.06920084244856463 +271497,1357.4850000180256,-0.06920082466331183 +271498,1357.4900000180257,-0.06920080687786294 +271499,1357.4950000180258,-0.06920078909221797 +271500,1357.500000018026,-0.06920077130637696 +271501,1357.505000018026,-0.06920075352033997 +271502,1357.5100000180262,-0.06920073573410702 +271503,1357.5150000180263,-0.06920071794767815 +271504,1357.5200000180264,-0.06920070016105342 +271505,1357.5250000180265,-0.06920068237423284 +271506,1357.5300000180266,-0.06920066458721645 +271507,1357.5350000180267,-0.06920064680000429 +271508,1357.5400000180268,-0.06920062901259641 +271509,1357.545000018027,-0.06920061122499284 +271510,1357.550000018027,-0.06920059343719362 +271511,1357.5550000180272,-0.06920057564919878 +271512,1357.5600000180273,-0.06920055786100836 +271513,1357.5650000180274,-0.06920054007262241 +271514,1357.5700000180275,-0.06920052228404096 +271515,1357.5750000180276,-0.06920050449526405 +271516,1357.5800000180277,-0.0692004867062917 +271517,1357.5850000180278,-0.06920046891712398 +271518,1357.590000018028,-0.0692004511277609 +271519,1357.595000018028,-0.06920043333820251 +271520,1357.6000000180281,-0.06920041554844886 +271521,1357.6050000180282,-0.06920039775849997 +271522,1357.6100000180284,-0.06920037996835587 +271523,1357.6150000180285,-0.06920036217801663 +271524,1357.6200000180286,-0.06920034438748227 +271525,1357.6250000180287,-0.0692003265967528 +271526,1357.6300000180288,-0.0692003088058283 +271527,1357.635000018029,-0.0692002910147088 +271528,1357.640000018029,-0.06920027322339432 +271529,1357.6450000180291,-0.06920025543188492 +271530,1357.6500000180292,-0.06920023764018061 +271531,1357.6550000180293,-0.06920021984828147 +271532,1357.6600000180295,-0.06920020205618749 +271533,1357.6650000180296,-0.06920018426389873 +271534,1357.6700000180297,-0.06920016647141525 +271535,1357.6750000180298,-0.06920014867873704 +271536,1357.68000001803,-0.06920013088586417 +271537,1357.68500001803,-0.06920011309279667 +271538,1357.69000001803,-0.06920009529953458 +271539,1357.6950000180302,-0.06920007750607794 +271540,1357.7000000180303,-0.06920005971242679 +271541,1357.7050000180304,-0.06920004191858116 +271542,1357.7100000180305,-0.0692000241245411 +271543,1357.7150000180307,-0.06920000633030664 +271544,1357.7200000180308,-0.0691999885358778 +271545,1357.7250000180309,-0.06919997074125465 +271546,1357.730000018031,-0.06919995294643723 +271547,1357.735000018031,-0.06919993515142554 +271548,1357.7400000180312,-0.06919991735621965 +271549,1357.7450000180313,-0.06919989956081958 +271550,1357.7500000180314,-0.06919988176522537 +271551,1357.7550000180315,-0.06919986396943707 +271552,1357.7600000180316,-0.06919984617345472 +271553,1357.7650000180317,-0.06919982837727834 +271554,1357.7700000180319,-0.06919981058090797 +271555,1357.775000018032,-0.06919979278434367 +271556,1357.780000018032,-0.06919977498758546 +271557,1357.7850000180322,-0.06919975719063338 +271558,1357.7900000180323,-0.06919973939348746 +271559,1357.7950000180324,-0.06919972159614776 +271560,1357.8000000180325,-0.0691997037986143 +271561,1357.8050000180326,-0.06919968600088713 +271562,1357.8100000180327,-0.06919966820296627 +271563,1357.8150000180328,-0.06919965040485178 +271564,1357.820000018033,-0.06919963260654369 +271565,1357.825000018033,-0.06919961480804203 +271566,1357.8300000180332,-0.06919959700934684 +271567,1357.8350000180333,-0.06919957921045818 +271568,1357.8400000180334,-0.06919956141137604 +271569,1357.8450000180335,-0.0691995436121005 +271570,1357.8500000180336,-0.0691995258126316 +271571,1357.8550000180337,-0.06919950801296935 +271572,1357.8600000180338,-0.0691994902131138 +271573,1357.865000018034,-0.069199472413065 +271574,1357.870000018034,-0.06919945461282297 +271575,1357.8750000180341,-0.06919943681238774 +271576,1357.8800000180343,-0.0691994190117594 +271577,1357.8850000180344,-0.06919940121093793 +271578,1357.8900000180345,-0.06919938340992339 +271579,1357.8950000180346,-0.06919936560871581 +271580,1357.9000000180347,-0.06919934780731525 +271581,1357.9050000180348,-0.06919933000572173 +271582,1357.910000018035,-0.0691993122039353 +271583,1357.915000018035,-0.06919929440195598 +271584,1357.9200000180351,-0.06919927659978382 +271585,1357.9250000180352,-0.06919925879741887 +271586,1357.9300000180353,-0.06919924099486115 +271587,1357.9350000180355,-0.06919922319211069 +271588,1357.9400000180356,-0.06919920538916755 +271589,1357.9450000180357,-0.06919918758603176 +271590,1357.9500000180358,-0.06919916978270335 +271591,1357.955000018036,-0.06919915197918236 +271592,1357.960000018036,-0.06919913417546884 +271593,1357.965000018036,-0.06919911637156283 +271594,1357.9700000180362,-0.06919909856746435 +271595,1357.9750000180363,-0.06919908076317344 +271596,1357.9800000180364,-0.06919906295869015 +271597,1357.9850000180365,-0.06919904515401451 +271598,1357.9900000180367,-0.06919902734914658 +271599,1357.9950000180368,-0.06919900954408637 +271600,1358.0000000180369,-0.06919899173883393 +271601,1358.005000018037,-0.06919897393338928 +271602,1358.010000018037,-0.06919895612775248 +271603,1358.0150000180372,-0.06919893832192356 +271604,1358.0200000180373,-0.06919892051590257 +271605,1358.0250000180374,-0.06919890270968954 +271606,1358.0300000180375,-0.06919888490328449 +271607,1358.0350000180376,-0.06919886709668749 +271608,1358.0400000180377,-0.06919884928989856 +271609,1358.0450000180379,-0.06919883148291774 +271610,1358.050000018038,-0.06919881367574507 +271611,1358.055000018038,-0.06919879586838058 +271612,1358.0600000180382,-0.06919877806082432 +271613,1358.0650000180383,-0.06919876025307634 +271614,1358.0700000180384,-0.06919874244513663 +271615,1358.0750000180385,-0.06919872463700527 +271616,1358.0800000180386,-0.06919870682868229 +271617,1358.0850000180387,-0.06919868902016774 +271618,1358.0900000180388,-0.06919867121146163 +271619,1358.095000018039,-0.06919865340256402 +271620,1358.100000018039,-0.06919863559347493 +271621,1358.1050000180392,-0.06919861778419441 +271622,1358.1100000180393,-0.0691985999747225 +271623,1358.1150000180394,-0.06919858216505924 +271624,1358.1200000180395,-0.06919856435520465 +271625,1358.1250000180396,-0.06919854654515879 +271626,1358.1300000180397,-0.0691985287349217 +271627,1358.1350000180398,-0.06919851092449339 +271628,1358.14000001804,-0.06919849311387392 +271629,1358.14500001804,-0.06919847530306333 +271630,1358.1500000180401,-0.06919845749206165 +271631,1358.1550000180403,-0.06919843968086892 +271632,1358.1600000180404,-0.06919842186948517 +271633,1358.1650000180405,-0.06919840405791046 +271634,1358.1700000180406,-0.0691983862461448 +271635,1358.1750000180407,-0.06919836843418824 +271636,1358.1800000180408,-0.06919835062204084 +271637,1358.185000018041,-0.06919833280970261 +271638,1358.190000018041,-0.0691983149971736 +271639,1358.1950000180411,-0.06919829718445383 +271640,1358.2000000180412,-0.06919827937154337 +271641,1358.2050000180413,-0.06919826155844223 +271642,1358.2100000180415,-0.06919824374515046 +271643,1358.2150000180416,-0.0691982259316681 +271644,1358.2200000180417,-0.0691982081179952 +271645,1358.2250000180418,-0.06919819030413177 +271646,1358.230000018042,-0.06919817249007787 +271647,1358.235000018042,-0.06919815467583353 +271648,1358.240000018042,-0.06919813686139878 +271649,1358.2450000180422,-0.06919811904677367 +271650,1358.2500000180423,-0.06919810123195824 +271651,1358.2550000180424,-0.06919808341695254 +271652,1358.2600000180425,-0.06919806560175656 +271653,1358.2650000180427,-0.0691980477863704 +271654,1358.2700000180428,-0.06919802997079405 +271655,1358.2750000180429,-0.06919801215502759 +271656,1358.280000018043,-0.06919799433907102 +271657,1358.285000018043,-0.06919797652292439 +271658,1358.2900000180432,-0.06919795870658774 +271659,1358.2950000180433,-0.06919794089006112 +271660,1358.3000000180434,-0.06919792307334456 +271661,1358.3050000180435,-0.06919790525643808 +271662,1358.3100000180436,-0.06919788743934174 +271663,1358.3150000180437,-0.06919786962205558 +271664,1358.3200000180439,-0.06919785180457963 +271665,1358.325000018044,-0.06919783398691393 +271666,1358.330000018044,-0.0691978161690585 +271667,1358.3350000180442,-0.0691977983510134 +271668,1358.3400000180443,-0.06919778053277868 +271669,1358.3450000180444,-0.06919776271435435 +271670,1358.3500000180445,-0.06919774489574047 +271671,1358.3550000180446,-0.06919772707693707 +271672,1358.3600000180447,-0.06919770925794419 +271673,1358.3650000180448,-0.06919769143876185 +271674,1358.370000018045,-0.06919767361939012 +271675,1358.375000018045,-0.069197655799829 +271676,1358.3800000180452,-0.06919763798007857 +271677,1358.3850000180453,-0.06919762016013885 +271678,1358.3900000180454,-0.06919760234000986 +271679,1358.3950000180455,-0.06919758451969167 +271680,1358.4000000180456,-0.06919756669918431 +271681,1358.4050000180457,-0.0691975488784878 +271682,1358.4100000180458,-0.06919753105760218 +271683,1358.415000018046,-0.0691975132365275 +271684,1358.420000018046,-0.06919749541526381 +271685,1358.4250000180461,-0.06919747759381112 +271686,1358.4300000180463,-0.0691974597721695 +271687,1358.4350000180464,-0.06919744195033896 +271688,1358.4400000180465,-0.06919742412831956 +271689,1358.4450000180466,-0.06919740630611132 +271690,1358.4500000180467,-0.06919738848371429 +271691,1358.4550000180468,-0.06919737066112851 +271692,1358.460000018047,-0.069197352838354 +271693,1358.465000018047,-0.06919733501539081 +271694,1358.4700000180471,-0.06919731719223898 +271695,1358.4750000180472,-0.06919729936889855 +271696,1358.4800000180473,-0.06919728154536957 +271697,1358.4850000180475,-0.06919726372165205 +271698,1358.4900000180476,-0.06919724589774605 +271699,1358.4950000180477,-0.06919722807365158 +271700,1358.5000000180478,-0.06919721024936873 +271701,1358.505000018048,-0.0691971924248975 +271702,1358.510000018048,-0.06919717460023793 +271703,1358.515000018048,-0.06919715677539007 +271704,1358.5200000180482,-0.06919713895035395 +271705,1358.5250000180483,-0.06919712112512962 +271706,1358.5300000180484,-0.0691971032997171 +271707,1358.5350000180485,-0.06919708547411643 +271708,1358.5400000180487,-0.06919706764832767 +271709,1358.5450000180488,-0.06919704982235085 +271710,1358.5500000180489,-0.069197031996186 +271711,1358.555000018049,-0.06919701416983315 +271712,1358.560000018049,-0.06919699634329235 +271713,1358.5650000180492,-0.06919697851656365 +271714,1358.5700000180493,-0.06919696068964708 +271715,1358.5750000180494,-0.06919694286254266 +271716,1358.5800000180495,-0.06919692503525045 +271717,1358.5850000180496,-0.06919690720777048 +271718,1358.5900000180497,-0.0691968893801028 +271719,1358.5950000180499,-0.06919687155224742 +271720,1358.60000001805,-0.06919685372420441 +271721,1358.60500001805,-0.06919683589597378 +271722,1358.6100000180502,-0.0691968180675556 +271723,1358.6150000180503,-0.06919680023894988 +271724,1358.6200000180504,-0.06919678241015667 +271725,1358.6250000180505,-0.06919676458117602 +271726,1358.6300000180506,-0.06919674675200795 +271727,1358.6350000180507,-0.0691967289226525 +271728,1358.6400000180508,-0.06919671109310972 +271729,1358.645000018051,-0.06919669326337965 +271730,1358.650000018051,-0.06919667543346232 +271731,1358.6550000180512,-0.06919665760335776 +271732,1358.6600000180513,-0.06919663977306603 +271733,1358.6650000180514,-0.06919662194258715 +271734,1358.6700000180515,-0.06919660411192116 +271735,1358.6750000180516,-0.0691965862810681 +271736,1358.6800000180517,-0.06919656845002803 +271737,1358.6850000180518,-0.06919655061880095 +271738,1358.690000018052,-0.06919653278738692 +271739,1358.695000018052,-0.06919651495578599 +271740,1358.7000000180522,-0.06919649712399817 +271741,1358.7050000180523,-0.06919647929202352 +271742,1358.7100000180524,-0.06919646145986208 +271743,1358.7150000180525,-0.06919644362751387 +271744,1358.7200000180526,-0.06919642579497894 +271745,1358.7250000180527,-0.06919640796225733 +271746,1358.7300000180528,-0.06919639012934907 +271747,1358.735000018053,-0.06919637229625421 +271748,1358.740000018053,-0.06919635446297277 +271749,1358.7450000180531,-0.06919633662950482 +271750,1358.7500000180532,-0.06919631879585036 +271751,1358.7550000180534,-0.06919630096200946 +271752,1358.7600000180535,-0.06919628312798214 +271753,1358.7650000180536,-0.06919626529376845 +271754,1358.7700000180537,-0.06919624745936842 +271755,1358.7750000180538,-0.0691962296247821 +271756,1358.780000018054,-0.0691962117900095 +271757,1358.785000018054,-0.0691961939550507 +271758,1358.7900000180541,-0.06919617611990571 +271759,1358.7950000180542,-0.06919615828457457 +271760,1358.8000000180543,-0.06919614044905732 +271761,1358.8050000180544,-0.069196122613354 +271762,1358.8100000180546,-0.06919610477746467 +271763,1358.8150000180547,-0.06919608694138935 +271764,1358.8200000180548,-0.06919606910512806 +271765,1358.8250000180549,-0.06919605126868086 +271766,1358.830000018055,-0.06919603343204779 +271767,1358.835000018055,-0.06919601559522888 +271768,1358.8400000180552,-0.06919599775822417 +271769,1358.8450000180553,-0.0691959799210337 +271770,1358.8500000180554,-0.06919596208365751 +271771,1358.8550000180555,-0.06919594424609564 +271772,1358.8600000180556,-0.06919592640834811 +271773,1358.8650000180558,-0.06919590857041501 +271774,1358.8700000180559,-0.0691958907322963 +271775,1358.875000018056,-0.0691958728939921 +271776,1358.880000018056,-0.06919585505550238 +271777,1358.8850000180562,-0.06919583721682722 +271778,1358.8900000180563,-0.06919581937796665 +271779,1358.8950000180564,-0.0691958015389207 +271780,1358.9000000180565,-0.06919578369968943 +271781,1358.9050000180566,-0.06919576586027285 +271782,1358.9100000180567,-0.06919574802067101 +271783,1358.9150000180568,-0.06919573018088394 +271784,1358.920000018057,-0.0691957123409117 +271785,1358.925000018057,-0.06919569450075432 +271786,1358.9300000180572,-0.06919567666041182 +271787,1358.9350000180573,-0.06919565881988428 +271788,1358.9400000180574,-0.06919564097917169 +271789,1358.9450000180575,-0.06919562313827411 +271790,1358.9500000180576,-0.0691956052971916 +271791,1358.9550000180577,-0.06919558745592416 +271792,1358.9600000180578,-0.06919556961447185 +271793,1358.965000018058,-0.0691955517728347 +271794,1358.970000018058,-0.06919553393101276 +271795,1358.9750000180582,-0.06919551608900606 +271796,1358.9800000180583,-0.06919549824681463 +271797,1358.9850000180584,-0.06919548040443854 +271798,1358.9900000180585,-0.06919546256187781 +271799,1358.9950000180586,-0.06919544471913246 +271800,1359.0000000180587,-0.06919542687620255 +271801,1359.0050000180588,-0.06919540903308811 +271802,1359.010000018059,-0.0691953911897892 +271803,1359.015000018059,-0.06919537334630582 +271804,1359.0200000180591,-0.06919535550263803 +271805,1359.0250000180592,-0.06919533765878585 +271806,1359.0300000180594,-0.06919531981474937 +271807,1359.0350000180595,-0.06919530197052857 +271808,1359.0400000180596,-0.06919528412612352 +271809,1359.0450000180597,-0.06919526628153426 +271810,1359.0500000180598,-0.06919524843676082 +271811,1359.05500001806,-0.06919523059180324 +271812,1359.06000001806,-0.06919521274666156 +271813,1359.0650000180601,-0.06919519490133581 +271814,1359.0700000180602,-0.06919517705582603 +271815,1359.0750000180603,-0.06919515921013228 +271816,1359.0800000180604,-0.06919514136425457 +271817,1359.0850000180606,-0.06919512351819294 +271818,1359.0900000180607,-0.06919510567194746 +271819,1359.0950000180608,-0.06919508782551814 +271820,1359.1000000180609,-0.06919506997890502 +271821,1359.105000018061,-0.06919505213210816 +271822,1359.110000018061,-0.06919503428512758 +271823,1359.1150000180612,-0.06919501643796332 +271824,1359.1200000180613,-0.06919499859061541 +271825,1359.1250000180614,-0.06919498074308392 +271826,1359.1300000180615,-0.06919496289536886 +271827,1359.1350000180616,-0.06919494504747027 +271828,1359.1400000180618,-0.0691949271993882 +271829,1359.1450000180619,-0.06919490935112269 +271830,1359.150000018062,-0.06919489150267377 +271831,1359.155000018062,-0.06919487365404148 +271832,1359.1600000180622,-0.06919485580522586 +271833,1359.1650000180623,-0.06919483795622695 +271834,1359.1700000180624,-0.06919482010704478 +271835,1359.1750000180625,-0.0691948022576794 +271836,1359.1800000180626,-0.06919478440813084 +271837,1359.1850000180627,-0.06919476655839915 +271838,1359.1900000180628,-0.06919474870848435 +271839,1359.195000018063,-0.06919473085838651 +271840,1359.200000018063,-0.06919471300810563 +271841,1359.2050000180632,-0.06919469515764179 +271842,1359.2100000180633,-0.069194677306995 +271843,1359.2150000180634,-0.06919465945616528 +271844,1359.2200000180635,-0.0691946416051527 +271845,1359.2250000180636,-0.06919462375395732 +271846,1359.2300000180637,-0.06919460590257913 +271847,1359.2350000180638,-0.0691945880510182 +271848,1359.240000018064,-0.06919457019927455 +271849,1359.245000018064,-0.06919455234734824 +271850,1359.2500000180642,-0.06919453449523928 +271851,1359.2550000180643,-0.06919451664294773 +271852,1359.2600000180644,-0.06919449879047364 +271853,1359.2650000180645,-0.06919448093781701 +271854,1359.2700000180646,-0.06919446308497791 +271855,1359.2750000180647,-0.06919444523195636 +271856,1359.2800000180648,-0.06919442737875242 +271857,1359.285000018065,-0.06919440952536611 +271858,1359.290000018065,-0.06919439167179747 +271859,1359.2950000180651,-0.06919437381804656 +271860,1359.3000000180652,-0.0691943559641134 +271861,1359.3050000180654,-0.06919433810999803 +271862,1359.3100000180655,-0.06919432025570049 +271863,1359.3150000180656,-0.06919430240122082 +271864,1359.3200000180657,-0.06919428454655906 +271865,1359.3250000180658,-0.06919426669171524 +271866,1359.330000018066,-0.06919424883668941 +271867,1359.335000018066,-0.0691942309814816 +271868,1359.3400000180661,-0.06919421312609185 +271869,1359.3450000180662,-0.06919419527052022 +271870,1359.3500000180663,-0.0691941774147667 +271871,1359.3550000180664,-0.06919415955883138 +271872,1359.3600000180666,-0.06919414170271426 +271873,1359.3650000180667,-0.0691941238464154 +271874,1359.3700000180668,-0.06919410598993486 +271875,1359.3750000180669,-0.06919408813327263 +271876,1359.380000018067,-0.06919407027642878 +271877,1359.385000018067,-0.06919405241940334 +271878,1359.3900000180672,-0.06919403456219635 +271879,1359.3950000180673,-0.06919401670480785 +271880,1359.4000000180674,-0.06919399884723788 +271881,1359.4050000180675,-0.06919398098948648 +271882,1359.4100000180676,-0.06919396313155367 +271883,1359.4150000180678,-0.06919394527343951 +271884,1359.4200000180679,-0.06919392741514403 +271885,1359.425000018068,-0.06919390955666728 +271886,1359.430000018068,-0.06919389169800928 +271887,1359.4350000180682,-0.06919387383917008 +271888,1359.4400000180683,-0.06919385598014972 +271889,1359.4450000180684,-0.06919383812094825 +271890,1359.4500000180685,-0.06919382026156568 +271891,1359.4550000180686,-0.06919380240200207 +271892,1359.4600000180687,-0.06919378454225744 +271893,1359.4650000180688,-0.06919376668233186 +271894,1359.470000018069,-0.06919374882222533 +271895,1359.475000018069,-0.06919373096193791 +271896,1359.4800000180692,-0.06919371310146966 +271897,1359.4850000180693,-0.06919369524082057 +271898,1359.4900000180694,-0.06919367737999071 +271899,1359.4950000180695,-0.06919365951898013 +271900,1359.5000000180696,-0.06919364165778885 +271901,1359.5050000180697,-0.0691936237964169 +271902,1359.5100000180698,-0.06919360593486434 +271903,1359.51500001807,-0.0691935880731312 +271904,1359.52000001807,-0.06919357021121751 +271905,1359.5250000180702,-0.06919355234912332 +271906,1359.5300000180703,-0.06919353448684867 +271907,1359.5350000180704,-0.0691935166243936 +271908,1359.5400000180705,-0.06919349876175813 +271909,1359.5450000180706,-0.06919348089894233 +271910,1359.5500000180707,-0.06919346303594621 +271911,1359.5550000180708,-0.06919344517276982 +271912,1359.560000018071,-0.06919342730941319 +271913,1359.565000018071,-0.06919340944587639 +271914,1359.5700000180711,-0.06919339158215941 +271915,1359.5750000180713,-0.06919337371826233 +271916,1359.5800000180714,-0.06919335585418517 +271917,1359.5850000180715,-0.06919333798992795 +271918,1359.5900000180716,-0.06919332012549076 +271919,1359.5950000180717,-0.06919330226087361 +271920,1359.6000000180718,-0.06919328439607654 +271921,1359.605000018072,-0.06919326653109958 +271922,1359.610000018072,-0.06919324866594277 +271923,1359.6150000180721,-0.06919323080060617 +271924,1359.6200000180722,-0.0691932129350898 +271925,1359.6250000180723,-0.06919319506939371 +271926,1359.6300000180725,-0.06919317720351792 +271927,1359.6350000180726,-0.06919315933746249 +271928,1359.6400000180727,-0.06919314147122745 +271929,1359.6450000180728,-0.06919312360481282 +271930,1359.650000018073,-0.06919310573821867 +271931,1359.655000018073,-0.06919308787144503 +271932,1359.660000018073,-0.06919307000449193 +271933,1359.6650000180732,-0.06919305213735942 +271934,1359.6700000180733,-0.06919303427004754 +271935,1359.6750000180734,-0.06919301640255632 +271936,1359.6800000180735,-0.0691929985348858 +271937,1359.6850000180737,-0.069192980667036 +271938,1359.6900000180738,-0.069192962799007 +271939,1359.6950000180739,-0.0691929449307988 +271940,1359.700000018074,-0.06919292706241147 +271941,1359.705000018074,-0.06919290919384505 +271942,1359.7100000180742,-0.06919289132509954 +271943,1359.7150000180743,-0.069192873456175 +271944,1359.7200000180744,-0.06919285558707149 +271945,1359.7250000180745,-0.06919283771778902 +271946,1359.7300000180746,-0.06919281984832765 +271947,1359.7350000180747,-0.06919280197868741 +271948,1359.7400000180749,-0.06919278410886832 +271949,1359.745000018075,-0.06919276623887045 +271950,1359.750000018075,-0.06919274836869381 +271951,1359.7550000180752,-0.06919273049833846 +271952,1359.7600000180753,-0.06919271262780444 +271953,1359.7650000180754,-0.06919269475709179 +271954,1359.7700000180755,-0.06919267688620054 +271955,1359.7750000180756,-0.06919265901513072 +271956,1359.7800000180757,-0.06919264114388239 +271957,1359.7850000180758,-0.06919262327245557 +271958,1359.790000018076,-0.0691926054008503 +271959,1359.795000018076,-0.06919258752906662 +271960,1359.8000000180762,-0.0691925696571046 +271961,1359.8050000180763,-0.06919255178496424 +271962,1359.8100000180764,-0.06919253391264558 +271963,1359.8150000180765,-0.06919251604014869 +271964,1359.8200000180766,-0.0691924981674736 +271965,1359.8250000180767,-0.06919248029462031 +271966,1359.8300000180768,-0.0691924624215889 +271967,1359.835000018077,-0.0691924445483794 +271968,1359.840000018077,-0.06919242667499186 +271969,1359.8450000180771,-0.06919240880142628 +271970,1359.8500000180773,-0.06919239092768274 +271971,1359.8550000180774,-0.06919237305376126 +271972,1359.8600000180775,-0.06919235517966188 +271973,1359.8650000180776,-0.06919233730538464 +271974,1359.8700000180777,-0.06919231943092959 +271975,1359.8750000180778,-0.06919230155629674 +271976,1359.880000018078,-0.06919228368148617 +271977,1359.885000018078,-0.06919226580649787 +271978,1359.8900000180781,-0.06919224793133193 +271979,1359.8950000180782,-0.06919223005598835 +271980,1359.9000000180783,-0.06919221218046719 +271981,1359.9050000180785,-0.06919219430476847 +271982,1359.9100000180786,-0.06919217642889226 +271983,1359.9150000180787,-0.06919215855283858 +271984,1359.9200000180788,-0.06919214067660746 +271985,1359.925000018079,-0.06919212280019896 +271986,1359.930000018079,-0.0691921049236131 +271987,1359.935000018079,-0.06919208704684993 +271988,1359.9400000180792,-0.06919206916990947 +271989,1359.9450000180793,-0.0691920512927918 +271990,1359.9500000180794,-0.06919203341549691 +271991,1359.9550000180795,-0.06919201553802488 +271992,1359.9600000180797,-0.06919199766037572 +271993,1359.9650000180798,-0.06919197978254948 +271994,1359.9700000180799,-0.06919196190454621 +271995,1359.97500001808,-0.06919194402636593 +271996,1359.98000001808,-0.06919192614800869 +271997,1359.9850000180802,-0.06919190826947452 +271998,1359.9900000180803,-0.06919189039076348 +271999,1359.9950000180804,-0.06919187251187559 +272000,1360.0000000180805,-0.06919185463281088 +272001,1360.0050000180806,-0.06919183675356942 +272002,1360.0100000180807,-0.06919181887415123 +272003,1360.0150000180809,-0.06919180099455635 +272004,1360.020000018081,-0.06919178311478481 +272005,1360.025000018081,-0.06919176523483667 +272006,1360.0300000180812,-0.06919174735471195 +272007,1360.0350000180813,-0.06919172947441071 +272008,1360.0400000180814,-0.06919171159393296 +272009,1360.0450000180815,-0.06919169371327877 +272010,1360.0500000180816,-0.06919167583244816 +272011,1360.0550000180817,-0.06919165795144117 +272012,1360.0600000180818,-0.06919164007025784 +272013,1360.065000018082,-0.06919162218889821 +272014,1360.070000018082,-0.06919160430736233 +272015,1360.0750000180822,-0.06919158642565022 +272016,1360.0800000180823,-0.06919156854376192 +272017,1360.0850000180824,-0.06919155066169749 +272018,1360.0900000180825,-0.06919153277945696 +272019,1360.0950000180826,-0.06919151489704035 +272020,1360.1000000180827,-0.06919149701444773 +272021,1360.1050000180828,-0.0691914791316791 +272022,1360.110000018083,-0.06919146124873454 +272023,1360.115000018083,-0.06919144336561407 +272024,1360.1200000180831,-0.06919142548231774 +272025,1360.1250000180833,-0.06919140759884557 +272026,1360.1300000180834,-0.06919138971519762 +272027,1360.1350000180835,-0.0691913718313739 +272028,1360.1400000180836,-0.06919135394737448 +272029,1360.1450000180837,-0.06919133606319938 +272030,1360.1500000180838,-0.06919131817884865 +272031,1360.155000018084,-0.06919130029432231 +272032,1360.160000018084,-0.06919128240962043 +272033,1360.1650000180841,-0.06919126452474303 +272034,1360.1700000180842,-0.06919124663969015 +272035,1360.1750000180843,-0.06919122875446183 +272036,1360.1800000180845,-0.0691912108690581 +272037,1360.1850000180846,-0.06919119298347903 +272038,1360.1900000180847,-0.06919117509772463 +272039,1360.1950000180848,-0.06919115721179495 +272040,1360.200000018085,-0.06919113932569002 +272041,1360.205000018085,-0.06919112143940989 +272042,1360.210000018085,-0.06919110355295459 +272043,1360.2150000180852,-0.06919108566632416 +272044,1360.2200000180853,-0.06919106777951865 +272045,1360.2250000180854,-0.06919104989253809 +272046,1360.2300000180855,-0.06919103200538253 +272047,1360.2350000180857,-0.06919101411805198 +272048,1360.2400000180858,-0.06919099623054652 +272049,1360.2450000180859,-0.06919097834286617 +272050,1360.250000018086,-0.06919096045501094 +272051,1360.255000018086,-0.06919094256698091 +272052,1360.2600000180862,-0.0691909246787761 +272053,1360.2650000180863,-0.06919090679039656 +272054,1360.2700000180864,-0.06919088890184233 +272055,1360.2750000180865,-0.06919087101311344 +272056,1360.2800000180866,-0.06919085312420994 +272057,1360.2850000180867,-0.06919083523513186 +272058,1360.2900000180869,-0.06919081734587923 +272059,1360.295000018087,-0.0691907994564521 +272060,1360.300000018087,-0.06919078156685052 +272061,1360.3050000180872,-0.06919076367707451 +272062,1360.3100000180873,-0.06919074578712413 +272063,1360.3150000180874,-0.0691907278969994 +272064,1360.3200000180875,-0.06919071000670036 +272065,1360.3250000180876,-0.06919069211622705 +272066,1360.3300000180877,-0.06919067422557953 +272067,1360.3350000180878,-0.06919065633475781 +272068,1360.340000018088,-0.06919063844376194 +272069,1360.345000018088,-0.06919062055259197 +272070,1360.3500000180882,-0.06919060266124792 +272071,1360.3550000180883,-0.06919058476972985 +272072,1360.3600000180884,-0.06919056687803779 +272073,1360.3650000180885,-0.06919054898617176 +272074,1360.3700000180886,-0.06919053109413183 +272075,1360.3750000180887,-0.06919051320191802 +272076,1360.3800000180888,-0.06919049530953039 +272077,1360.385000018089,-0.06919047741696896 +272078,1360.390000018089,-0.06919045952423378 +272079,1360.3950000180891,-0.06919044163132487 +272080,1360.4000000180893,-0.06919042373824229 +272081,1360.4050000180894,-0.06919040584498608 +272082,1360.4100000180895,-0.06919038795155626 +272083,1360.4150000180896,-0.06919037005795288 +272084,1360.4200000180897,-0.06919035216417598 +272085,1360.4250000180898,-0.0691903342702256 +272086,1360.43000001809,-0.06919031637610176 +272087,1360.43500001809,-0.06919029848180454 +272088,1360.4400000180901,-0.06919028058733395 +272089,1360.4450000180902,-0.06919026269269003 +272090,1360.4500000180903,-0.06919024479787282 +272091,1360.4550000180905,-0.06919022690288237 +272092,1360.4600000180906,-0.06919020900771872 +272093,1360.4650000180907,-0.0691901911123819 +272094,1360.4700000180908,-0.06919017321687194 +272095,1360.475000018091,-0.0691901553211889 +272096,1360.480000018091,-0.06919013742533281 +272097,1360.4850000180911,-0.06919011952930372 +272098,1360.4900000180912,-0.06919010163310164 +272099,1360.4950000180913,-0.06919008373672665 +272100,1360.5000000180914,-0.06919006584017875 +272101,1360.5050000180916,-0.069190047943458 +272102,1360.5100000180917,-0.06919003004656443 +272103,1360.5150000180918,-0.06919001214949809 +272104,1360.5200000180919,-0.06918999425225901 +272105,1360.525000018092,-0.06918997635484724 +272106,1360.530000018092,-0.0691899584572628 +272107,1360.5350000180922,-0.06918994055950575 +272108,1360.5400000180923,-0.06918992266157613 +272109,1360.5450000180924,-0.06918990476347396 +272110,1360.5500000180925,-0.0691898868651993 +272111,1360.5550000180926,-0.06918986896675218 +272112,1360.5600000180928,-0.06918985106813262 +272113,1360.5650000180929,-0.06918983316934069 +272114,1360.570000018093,-0.06918981527037642 +272115,1360.575000018093,-0.06918979737123984 +272116,1360.5800000180932,-0.06918977947193099 +272117,1360.5850000180933,-0.06918976157244991 +272118,1360.5900000180934,-0.06918974367279665 +272119,1360.5950000180935,-0.06918972577297125 +272120,1360.6000000180936,-0.06918970787297372 +272121,1360.6050000180937,-0.06918968997280414 +272122,1360.6100000180938,-0.06918967207246253 +272123,1360.615000018094,-0.06918965417194893 +272124,1360.620000018094,-0.06918963627126339 +272125,1360.6250000180942,-0.06918961837040591 +272126,1360.6300000180943,-0.06918960046937657 +272127,1360.6350000180944,-0.0691895825681754 +272128,1360.6400000180945,-0.06918956466680244 +272129,1360.6450000180946,-0.06918954676525772 +272130,1360.6500000180947,-0.06918952886354128 +272131,1360.6550000180948,-0.06918951096165318 +272132,1360.660000018095,-0.06918949305959345 +272133,1360.665000018095,-0.06918947515736211 +272134,1360.6700000180952,-0.06918945725495922 +272135,1360.6750000180953,-0.0691894393523848 +272136,1360.6800000180954,-0.0691894214496389 +272137,1360.6850000180955,-0.06918940354672157 +272138,1360.6900000180956,-0.06918938564363283 +272139,1360.6950000180957,-0.06918936774037274 +272140,1360.7000000180958,-0.06918934983694132 +272141,1360.705000018096,-0.06918933193333862 +272142,1360.710000018096,-0.06918931402956469 +272143,1360.7150000180961,-0.06918929612561954 +272144,1360.7200000180962,-0.06918927822150323 +272145,1360.7250000180964,-0.0691892603172158 +272146,1360.7300000180965,-0.06918924241275728 +272147,1360.7350000180966,-0.06918922450812771 +272148,1360.7400000180967,-0.06918920660332714 +272149,1360.7450000180968,-0.0691891886983556 +272150,1360.750000018097,-0.06918917079321313 +272151,1360.755000018097,-0.06918915288789977 +272152,1360.7600000180971,-0.06918913498241555 +272153,1360.7650000180972,-0.06918911707676054 +272154,1360.7700000180973,-0.06918909917093476 +272155,1360.7750000180974,-0.06918908126493824 +272156,1360.7800000180976,-0.06918906335877102 +272157,1360.7850000180977,-0.06918904545243316 +272158,1360.7900000180978,-0.0691890275459247 +272159,1360.7950000180979,-0.06918900963924564 +272160,1360.800000018098,-0.06918899173239605 +272161,1360.805000018098,-0.06918897382537596 +272162,1360.8100000180982,-0.06918895591818543 +272163,1360.8150000180983,-0.06918893801082447 +272164,1360.8200000180984,-0.06918892010329314 +272165,1360.8250000180985,-0.06918890219559148 +272166,1360.8300000180986,-0.06918888428771952 +272167,1360.8350000180988,-0.06918886637967729 +272168,1360.8400000180989,-0.06918884847146485 +272169,1360.845000018099,-0.06918883056308223 +272170,1360.850000018099,-0.06918881265452946 +272171,1360.8550000180992,-0.0691887947458066 +272172,1360.8600000180993,-0.06918877683691366 +272173,1360.8650000180994,-0.06918875892785072 +272174,1360.8700000180995,-0.06918874101861777 +272175,1360.8750000180996,-0.0691887231092149 +272176,1360.8800000180997,-0.06918870519964211 +272177,1360.8850000180998,-0.06918868728989946 +272178,1360.8900000181,-0.069188669379987 +272179,1360.8950000181,-0.06918865146990473 +272180,1360.9000000181002,-0.06918863355965273 +272181,1360.9050000181003,-0.06918861564923101 +272182,1360.9100000181004,-0.06918859773863963 +272183,1360.9150000181005,-0.06918857982787863 +272184,1360.9200000181006,-0.06918856191694803 +272185,1360.9250000181007,-0.06918854400584788 +272186,1360.9300000181008,-0.06918852609457823 +272187,1360.935000018101,-0.06918850818313911 +272188,1360.940000018101,-0.06918849027153055 +272189,1360.9450000181012,-0.0691884723597526 +272190,1360.9500000181013,-0.0691884544478053 +272191,1360.9550000181014,-0.06918843653568868 +272192,1360.9600000181015,-0.0691884186234028 +272193,1360.9650000181016,-0.06918840071094767 +272194,1360.9700000181017,-0.06918838279832336 +272195,1360.9750000181018,-0.06918836488552989 +272196,1360.980000018102,-0.0691883469725673 +272197,1360.985000018102,-0.06918832905943563 +272198,1360.9900000181021,-0.06918831114613494 +272199,1360.9950000181022,-0.06918829323266523 +272200,1361.0000000181024,-0.06918827531902658 +272201,1361.0050000181025,-0.069188257405219 +272202,1361.0100000181026,-0.06918823949124256 +272203,1361.0150000181027,-0.06918822157709727 +272204,1361.0200000181028,-0.06918820366278317 +272205,1361.025000018103,-0.06918818574830031 +272206,1361.030000018103,-0.06918816783364874 +272207,1361.0350000181031,-0.06918814991882849 +272208,1361.0400000181032,-0.06918813200383958 +272209,1361.0450000181033,-0.06918811408868208 +272210,1361.0500000181034,-0.06918809617335601 +272211,1361.0550000181036,-0.06918807825786144 +272212,1361.0600000181037,-0.06918806034219838 +272213,1361.0650000181038,-0.06918804242636685 +272214,1361.0700000181039,-0.06918802451036693 +272215,1361.075000018104,-0.06918800659419864 +272216,1361.080000018104,-0.06918798867786202 +272217,1361.0850000181042,-0.06918797076135712 +272218,1361.0900000181043,-0.06918795284468397 +272219,1361.0950000181044,-0.06918793492784261 +272220,1361.1000000181045,-0.0691879170108331 +272221,1361.1050000181046,-0.06918789909365546 +272222,1361.1100000181048,-0.06918788117630972 +272223,1361.1150000181049,-0.06918786325879593 +272224,1361.120000018105,-0.06918784534111413 +272225,1361.125000018105,-0.06918782742326436 +272226,1361.1300000181052,-0.06918780950524667 +272227,1361.1350000181053,-0.06918779158706108 +272228,1361.1400000181054,-0.06918777366870764 +272229,1361.1450000181055,-0.06918775575018639 +272230,1361.1500000181056,-0.06918773783149736 +272231,1361.1550000181057,-0.06918771991264061 +272232,1361.1600000181058,-0.06918770199361615 +272233,1361.165000018106,-0.06918768407442402 +272234,1361.170000018106,-0.0691876661550643 +272235,1361.1750000181062,-0.06918764823553701 +272236,1361.1800000181063,-0.06918763031584217 +272237,1361.1850000181064,-0.06918761239597984 +272238,1361.1900000181065,-0.06918759447595005 +272239,1361.1950000181066,-0.06918757655575285 +272240,1361.2000000181067,-0.06918755863538825 +272241,1361.2050000181068,-0.06918754071485635 +272242,1361.210000018107,-0.06918752279415712 +272243,1361.215000018107,-0.06918750487329063 +272244,1361.2200000181072,-0.06918748695225693 +272245,1361.2250000181073,-0.06918746903105606 +272246,1361.2300000181074,-0.06918745110968805 +272247,1361.2350000181075,-0.06918743318815293 +272248,1361.2400000181076,-0.06918741526645074 +272249,1361.2450000181077,-0.06918739734458154 +272250,1361.2500000181078,-0.06918737942254537 +272251,1361.255000018108,-0.06918736150034224 +272252,1361.260000018108,-0.0691873435779722 +272253,1361.2650000181081,-0.06918732565543531 +272254,1361.2700000181082,-0.0691873077327316 +272255,1361.2750000181084,-0.0691872898098611 +272256,1361.2800000181085,-0.06918727188682386 +272257,1361.2850000181086,-0.06918725396361991 +272258,1361.2900000181087,-0.06918723604024929 +272259,1361.2950000181088,-0.06918721811671205 +272260,1361.300000018109,-0.06918720019300822 +272261,1361.305000018109,-0.06918718226913785 +272262,1361.3100000181091,-0.06918716434510097 +272263,1361.3150000181092,-0.06918714642089763 +272264,1361.3200000181093,-0.06918712849652785 +272265,1361.3250000181094,-0.06918711057199169 +272266,1361.3300000181096,-0.06918709264728917 +272267,1361.3350000181097,-0.06918707472242036 +272268,1361.3400000181098,-0.06918705679738527 +272269,1361.3450000181099,-0.06918703887218394 +272270,1361.35000001811,-0.06918702094681645 +272271,1361.35500001811,-0.06918700302128279 +272272,1361.3600000181102,-0.06918698509558303 +272273,1361.3650000181103,-0.06918696716971717 +272274,1361.3700000181104,-0.0691869492436853 +272275,1361.3750000181105,-0.06918693131748743 +272276,1361.3800000181106,-0.06918691339112362 +272277,1361.3850000181108,-0.06918689546459389 +272278,1361.3900000181109,-0.06918687753789829 +272279,1361.395000018111,-0.06918685961103685 +272280,1361.400000018111,-0.06918684168400963 +272281,1361.4050000181112,-0.06918682375681663 +272282,1361.4100000181113,-0.06918680582945794 +272283,1361.4150000181114,-0.06918678790193357 +272284,1361.4200000181115,-0.06918676997424356 +272285,1361.4250000181116,-0.06918675204638795 +272286,1361.4300000181117,-0.06918673411836679 +272287,1361.4350000181119,-0.0691867161901801 +272288,1361.440000018112,-0.06918669826182795 +272289,1361.445000018112,-0.06918668033331037 +272290,1361.4500000181122,-0.06918666240462737 +272291,1361.4550000181123,-0.06918664447577902 +272292,1361.4600000181124,-0.06918662654676536 +272293,1361.4650000181125,-0.06918660861758642 +272294,1361.4700000181126,-0.06918659068824223 +272295,1361.4750000181127,-0.06918657275873286 +272296,1361.4800000181128,-0.0691865548290583 +272297,1361.485000018113,-0.06918653689921865 +272298,1361.490000018113,-0.0691865189692139 +272299,1361.4950000181132,-0.06918650103904413 +272300,1361.5000000181133,-0.06918648310870935 +272301,1361.5050000181134,-0.06918646517820962 +272302,1361.5100000181135,-0.06918644724754495 +272303,1361.5150000181136,-0.06918642931671541 +272304,1361.5200000181137,-0.06918641138572101 +272305,1361.5250000181138,-0.06918639345456183 +272306,1361.530000018114,-0.06918637552323788 +272307,1361.535000018114,-0.0691863575917492 +272308,1361.5400000181141,-0.06918633966009584 +272309,1361.5450000181143,-0.06918632172827785 +272310,1361.5500000181144,-0.06918630379629526 +272311,1361.5550000181145,-0.06918628586414807 +272312,1361.5600000181146,-0.06918626793183638 +272313,1361.5650000181147,-0.0691862499993602 +272314,1361.5700000181148,-0.06918623206671959 +272315,1361.575000018115,-0.06918621413391456 +272316,1361.580000018115,-0.06918619620094517 +272317,1361.5850000181151,-0.06918617826781144 +272318,1361.5900000181152,-0.06918616033451344 +272319,1361.5950000181153,-0.0691861424010512 +272320,1361.6000000181155,-0.06918612446742475 +272321,1361.6050000181156,-0.06918610653363412 +272322,1361.6100000181157,-0.06918608859967937 +272323,1361.6150000181158,-0.06918607066556053 +272324,1361.620000018116,-0.06918605273127765 +272325,1361.625000018116,-0.06918603479683075 +272326,1361.630000018116,-0.06918601686221987 +272327,1361.6350000181162,-0.06918599892744509 +272328,1361.6400000181163,-0.0691859809925064 +272329,1361.6450000181164,-0.06918596305740386 +272330,1361.6500000181165,-0.06918594512213752 +272331,1361.6550000181167,-0.06918592718670742 +272332,1361.6600000181168,-0.06918590925111359 +272333,1361.6650000181169,-0.06918589131535606 +272334,1361.670000018117,-0.06918587337943488 +272335,1361.675000018117,-0.0691858554433501 +272336,1361.6800000181172,-0.06918583750710174 +272337,1361.6850000181173,-0.06918581957068985 +272338,1361.6900000181174,-0.06918580163411446 +272339,1361.6950000181175,-0.06918578369737563 +272340,1361.7000000181176,-0.06918576576047338 +272341,1361.7050000181177,-0.06918574782340775 +272342,1361.7100000181179,-0.06918572988617881 +272343,1361.715000018118,-0.06918571194878656 +272344,1361.720000018118,-0.06918569401123106 +272345,1361.7250000181182,-0.06918567607351235 +272346,1361.7300000181183,-0.06918565813563048 +272347,1361.7350000181184,-0.06918564019758545 +272348,1361.7400000181185,-0.06918562225937736 +272349,1361.7450000181186,-0.06918560432100619 +272350,1361.7500000181187,-0.06918558638247202 +272351,1361.7550000181188,-0.06918556844377487 +272352,1361.760000018119,-0.06918555050491479 +272353,1361.765000018119,-0.0691855325658918 +272354,1361.7700000181192,-0.06918551462670597 +272355,1361.7750000181193,-0.06918549668735732 +272356,1361.7800000181194,-0.06918547874784589 +272357,1361.7850000181195,-0.06918546080817173 +272358,1361.7900000181196,-0.06918544286833488 +272359,1361.7950000181197,-0.06918542492833536 +272360,1361.8000000181198,-0.06918540698817324 +272361,1361.80500001812,-0.06918538904784853 +272362,1361.81000001812,-0.0691853711073613 +272363,1361.8150000181201,-0.06918535316671155 +272364,1361.8200000181203,-0.06918533522589936 +272365,1361.8250000181204,-0.06918531728492473 +272366,1361.8300000181205,-0.06918529934378775 +272367,1361.8350000181206,-0.06918528140248842 +272368,1361.8400000181207,-0.0691852634610268 +272369,1361.8450000181208,-0.06918524551940292 +272370,1361.850000018121,-0.06918522757761682 +272371,1361.855000018121,-0.06918520963566854 +272372,1361.8600000181211,-0.06918519169355812 +272373,1361.8650000181212,-0.0691851737512856 +272374,1361.8700000181213,-0.06918515580885104 +272375,1361.8750000181215,-0.06918513786625444 +272376,1361.8800000181216,-0.06918511992349587 +272377,1361.8850000181217,-0.06918510198057536 +272378,1361.8900000181218,-0.06918508403749295 +272379,1361.895000018122,-0.06918506609424867 +272380,1361.900000018122,-0.06918504815084257 +272381,1361.905000018122,-0.0691850302072747 +272382,1361.9100000181222,-0.0691850122635451 +272383,1361.9150000181223,-0.0691849943196538 +272384,1361.9200000181224,-0.06918497637560082 +272385,1361.9250000181225,-0.06918495843138624 +272386,1361.9300000181227,-0.06918494048701007 +272387,1361.9350000181228,-0.06918492254247237 +272388,1361.9400000181229,-0.06918490459777316 +272389,1361.945000018123,-0.06918488665291249 +272390,1361.950000018123,-0.0691848687078904 +272391,1361.9550000181232,-0.06918485076270692 +272392,1361.9600000181233,-0.06918483281736211 +272393,1361.9650000181234,-0.06918481487185599 +272394,1361.9700000181235,-0.06918479692618862 +272395,1361.9750000181236,-0.06918477898036 +272396,1361.9800000181237,-0.06918476103437023 +272397,1361.9850000181239,-0.06918474308821931 +272398,1361.990000018124,-0.06918472514190728 +272399,1361.995000018124,-0.0691847071954342 +272400,1362.0000000181242,-0.0691846892488001 +272401,1362.0050000181243,-0.06918467130200502 +272402,1362.0100000181244,-0.06918465335504898 +272403,1362.0150000181245,-0.06918463540793206 +272404,1362.0200000181246,-0.06918461746065425 +272405,1362.0250000181247,-0.06918459951321564 +272406,1362.0300000181248,-0.06918458156561623 +272407,1362.035000018125,-0.06918456361785609 +272408,1362.040000018125,-0.06918454566993523 +272409,1362.0450000181252,-0.06918452772185373 +272410,1362.0500000181253,-0.0691845097736116 +272411,1362.0550000181254,-0.06918449182520889 +272412,1362.0600000181255,-0.06918447387664563 +272413,1362.0650000181256,-0.06918445592792186 +272414,1362.0700000181257,-0.06918443797903764 +272415,1362.0750000181258,-0.06918442002999299 +272416,1362.080000018126,-0.06918440208078797 +272417,1362.085000018126,-0.06918438413142258 +272418,1362.0900000181261,-0.0691843661818969 +272419,1362.0950000181263,-0.06918434823221095 +272420,1362.1000000181264,-0.06918433028236479 +272421,1362.1050000181265,-0.06918431233235843 +272422,1362.1100000181266,-0.06918429438219194 +272423,1362.1150000181267,-0.06918427643186532 +272424,1362.1200000181268,-0.06918425848137866 +272425,1362.125000018127,-0.06918424053073197 +272426,1362.130000018127,-0.06918422257992529 +272427,1362.1350000181271,-0.06918420462895868 +272428,1362.1400000181272,-0.06918418667783215 +272429,1362.1450000181273,-0.06918416872654576 +272430,1362.1500000181275,-0.06918415077509955 +272431,1362.1550000181276,-0.06918413282349356 +272432,1362.1600000181277,-0.06918411487172782 +272433,1362.1650000181278,-0.06918409691980237 +272434,1362.170000018128,-0.06918407896771728 +272435,1362.175000018128,-0.06918406101547254 +272436,1362.180000018128,-0.06918404306306822 +272437,1362.1850000181282,-0.06918402511050435 +272438,1362.1900000181283,-0.06918400715778099 +272439,1362.1950000181284,-0.06918398920489816 +272440,1362.2000000181285,-0.0691839712518559 +272441,1362.2050000181287,-0.06918395329865426 +272442,1362.2100000181288,-0.06918393534529328 +272443,1362.2150000181289,-0.06918391739177299 +272444,1362.220000018129,-0.06918389943809342 +272445,1362.225000018129,-0.06918388148425464 +272446,1362.2300000181292,-0.06918386353025667 +272447,1362.2350000181293,-0.06918384557609956 +272448,1362.2400000181294,-0.06918382762178334 +272449,1362.2450000181295,-0.06918380966730805 +272450,1362.2500000181296,-0.06918379171267375 +272451,1362.2550000181297,-0.06918377375788046 +272452,1362.2600000181299,-0.06918375580292824 +272453,1362.26500001813,-0.0691837378478171 +272454,1362.27000001813,-0.0691837198925471 +272455,1362.2750000181302,-0.06918370193711826 +272456,1362.2800000181303,-0.06918368398153064 +272457,1362.2850000181304,-0.0691836660257843 +272458,1362.2900000181305,-0.06918364806987923 +272459,1362.2950000181306,-0.0691836301138155 +272460,1362.3000000181307,-0.06918361215759315 +272461,1362.3050000181308,-0.0691835942012122 +272462,1362.310000018131,-0.06918357624467272 +272463,1362.315000018131,-0.06918355828797473 +272464,1362.3200000181312,-0.06918354033111829 +272465,1362.3250000181313,-0.06918352237410341 +272466,1362.3300000181314,-0.06918350441693015 +272467,1362.3350000181315,-0.06918348645959854 +272468,1362.3400000181316,-0.06918346850210863 +272469,1362.3450000181317,-0.06918345054446044 +272470,1362.3500000181318,-0.06918343258665403 +272471,1362.355000018132,-0.06918341462868945 +272472,1362.360000018132,-0.06918339667056672 +272473,1362.3650000181322,-0.06918337871228589 +272474,1362.3700000181323,-0.06918336075384698 +272475,1362.3750000181324,-0.06918334279525006 +272476,1362.3800000181325,-0.06918332483649514 +272477,1362.3850000181326,-0.0691833068775823 +272478,1362.3900000181327,-0.06918328891851154 +272479,1362.3950000181328,-0.06918327095928292 +272480,1362.400000018133,-0.06918325299989649 +272481,1362.405000018133,-0.06918323504035226 +272482,1362.4100000181331,-0.06918321708065028 +272483,1362.4150000181332,-0.0691831991207906 +272484,1362.4200000181334,-0.06918318116077328 +272485,1362.4250000181335,-0.06918316320059832 +272486,1362.4300000181336,-0.06918314524026578 +272487,1362.4350000181337,-0.06918312727977567 +272488,1362.4400000181338,-0.06918310931912808 +272489,1362.445000018134,-0.06918309135832303 +272490,1362.450000018134,-0.06918307339736054 +272491,1362.4550000181341,-0.06918305543624068 +272492,1362.4600000181342,-0.06918303747496347 +272493,1362.4650000181343,-0.06918301951352897 +272494,1362.4700000181344,-0.0691830015519372 +272495,1362.4750000181346,-0.06918298359018821 +272496,1362.4800000181347,-0.06918296562828202 +272497,1362.4850000181348,-0.0691829476662187 +272498,1362.4900000181349,-0.06918292970399827 +272499,1362.495000018135,-0.06918291174162079 +272500,1362.500000018135,-0.06918289377908628 +272501,1362.5050000181352,-0.06918287581639479 +272502,1362.5100000181353,-0.06918285785354636 +272503,1362.5150000181354,-0.06918283989054103 +272504,1362.5200000181355,-0.06918282192737883 +272505,1362.5250000181356,-0.0691828039640598 +272506,1362.5300000181358,-0.069182786000584 +272507,1362.5350000181359,-0.06918276803695146 +272508,1362.540000018136,-0.06918275007316221 +272509,1362.545000018136,-0.0691827321092163 +272510,1362.5500000181362,-0.06918271414511377 +272511,1362.5550000181363,-0.06918269618085468 +272512,1362.5600000181364,-0.06918267821643903 +272513,1362.5650000181365,-0.06918266025186688 +272514,1362.5700000181366,-0.06918264228713826 +272515,1362.5750000181367,-0.06918262432225324 +272516,1362.5800000181368,-0.06918260635721182 +272517,1362.585000018137,-0.06918258839201406 +272518,1362.590000018137,-0.06918257042666003 +272519,1362.5950000181372,-0.06918255246114971 +272520,1362.6000000181373,-0.06918253449548319 +272521,1362.6050000181374,-0.06918251652966048 +272522,1362.6100000181375,-0.06918249856368162 +272523,1362.6150000181376,-0.06918248059754667 +272524,1362.6200000181377,-0.06918246263125566 +272525,1362.6250000181378,-0.06918244466480863 +272526,1362.630000018138,-0.06918242669820562 +272527,1362.635000018138,-0.06918240873144667 +272528,1362.6400000181382,-0.06918239076453184 +272529,1362.6450000181383,-0.06918237279746113 +272530,1362.6500000181384,-0.0691823548302346 +272531,1362.6550000181385,-0.0691823368628523 +272532,1362.6600000181386,-0.06918231889531426 +272533,1362.6650000181387,-0.06918230092762052 +272534,1362.6700000181388,-0.06918228295977114 +272535,1362.675000018139,-0.06918226499176612 +272536,1362.680000018139,-0.06918224702360552 +272537,1362.6850000181391,-0.0691822290552894 +272538,1362.6900000181392,-0.06918221108681777 +272539,1362.6950000181394,-0.0691821931181907 +272540,1362.7000000181395,-0.06918217514940819 +272541,1362.7050000181396,-0.06918215718047033 +272542,1362.7100000181397,-0.06918213921137713 +272543,1362.7150000181398,-0.06918212124212862 +272544,1362.72000001814,-0.06918210327272487 +272545,1362.72500001814,-0.06918208530316587 +272546,1362.7300000181401,-0.06918206733345172 +272547,1362.7350000181402,-0.06918204936358244 +272548,1362.7400000181403,-0.06918203139355805 +272549,1362.7450000181404,-0.06918201342337861 +272550,1362.7500000181406,-0.06918199545304415 +272551,1362.7550000181407,-0.06918197748255472 +272552,1362.7600000181408,-0.06918195951191036 +272553,1362.7650000181409,-0.0691819415411111 +272554,1362.770000018141,-0.069181923570157 +272555,1362.775000018141,-0.06918190559904806 +272556,1362.7800000181412,-0.06918188762778436 +272557,1362.7850000181413,-0.06918186965636594 +272558,1362.7900000181414,-0.06918185168479281 +272559,1362.7950000181415,-0.06918183371306504 +272560,1362.8000000181416,-0.06918181574118265 +272561,1362.8050000181418,-0.0691817977691457 +272562,1362.8100000181419,-0.0691817797969542 +272563,1362.815000018142,-0.06918176182460821 +272564,1362.820000018142,-0.06918174385210776 +272565,1362.8250000181422,-0.06918172587945291 +272566,1362.8300000181423,-0.0691817079066437 +272567,1362.8350000181424,-0.06918168993368015 +272568,1362.8400000181425,-0.0691816719605623 +272569,1362.8450000181426,-0.0691816539872902 +272570,1362.8500000181427,-0.06918163601386391 +272571,1362.8550000181428,-0.06918161804028344 +272572,1362.860000018143,-0.06918160006654885 +272573,1362.865000018143,-0.06918158209266015 +272574,1362.8700000181432,-0.06918156411861741 +272575,1362.8750000181433,-0.06918154614442065 +272576,1362.8800000181434,-0.06918152817006994 +272577,1362.8850000181435,-0.0691815101955653 +272578,1362.8900000181436,-0.06918149222090676 +272579,1362.8950000181437,-0.06918147424609439 +272580,1362.9000000181438,-0.06918145627112819 +272581,1362.905000018144,-0.06918143829600823 +272582,1362.910000018144,-0.06918142032073454 +272583,1362.9150000181442,-0.06918140234530717 +272584,1362.9200000181443,-0.06918138436972616 +272585,1362.9250000181444,-0.06918136639399154 +272586,1362.9300000181445,-0.06918134841810335 +272587,1362.9350000181446,-0.06918133044206162 +272588,1362.9400000181447,-0.06918131246586641 +272589,1362.9450000181448,-0.06918129448951776 +272590,1362.950000018145,-0.06918127651301571 +272591,1362.955000018145,-0.0691812585363603 +272592,1362.9600000181451,-0.06918124055955155 +272593,1362.9650000181452,-0.06918122258258953 +272594,1362.9700000181454,-0.06918120460547426 +272595,1362.9750000181455,-0.0691811866282058 +272596,1362.9800000181456,-0.06918116865078416 +272597,1362.9850000181457,-0.0691811506732094 +272598,1362.9900000181458,-0.06918113269548157 +272599,1362.995000018146,-0.06918111471760068 +272600,1363.000000018146,-0.0691810967395668 +272601,1363.0050000181461,-0.06918107876137995 +272602,1363.0100000181462,-0.06918106078304018 +272603,1363.0150000181463,-0.06918104280454754 +272604,1363.0200000181464,-0.06918102482590205 +272605,1363.0250000181466,-0.06918100684710377 +272606,1363.0300000181467,-0.06918098886815272 +272607,1363.0350000181468,-0.06918097088904894 +272608,1363.0400000181469,-0.06918095290979248 +272609,1363.045000018147,-0.0691809349303834 +272610,1363.050000018147,-0.0691809169508217 +272611,1363.0550000181472,-0.06918089897110745 +272612,1363.0600000181473,-0.06918088099124069 +272613,1363.0650000181474,-0.06918086301122145 +272614,1363.0700000181475,-0.06918084503104978 +272615,1363.0750000181476,-0.0691808270507257 +272616,1363.0800000181478,-0.06918080907024927 +272617,1363.0850000181479,-0.06918079108962051 +272618,1363.090000018148,-0.0691807731088395 +272619,1363.095000018148,-0.06918075512790622 +272620,1363.1000000181482,-0.06918073714682077 +272621,1363.1050000181483,-0.06918071916558317 +272622,1363.1100000181484,-0.06918070118419344 +272623,1363.1150000181485,-0.06918068320265164 +272624,1363.1200000181486,-0.06918066522095781 +272625,1363.1250000181487,-0.06918064723911198 +272626,1363.1300000181488,-0.0691806292571142 +272627,1363.135000018149,-0.06918061127496451 +272628,1363.140000018149,-0.06918059329266293 +272629,1363.1450000181492,-0.06918057531020953 +272630,1363.1500000181493,-0.06918055732760435 +272631,1363.1550000181494,-0.0691805393448474 +272632,1363.1600000181495,-0.06918052136193877 +272633,1363.1650000181496,-0.06918050337887845 +272634,1363.1700000181497,-0.0691804853956665 +272635,1363.1750000181498,-0.06918046741230295 +272636,1363.18000001815,-0.06918044942878786 +272637,1363.18500001815,-0.06918043144512126 +272638,1363.1900000181502,-0.06918041346130319 +272639,1363.1950000181503,-0.06918039547733369 +272640,1363.2000000181504,-0.0691803774932128 +272641,1363.2050000181505,-0.06918035950894057 +272642,1363.2100000181506,-0.06918034152451703 +272643,1363.2150000181507,-0.06918032353994222 +272644,1363.2200000181508,-0.06918030555521619 +272645,1363.225000018151,-0.06918028757033898 +272646,1363.230000018151,-0.06918026958531061 +272647,1363.2350000181511,-0.06918025160013115 +272648,1363.2400000181512,-0.06918023361480062 +272649,1363.2450000181514,-0.06918021562931906 +272650,1363.2500000181515,-0.06918019764368652 +272651,1363.2550000181516,-0.06918017965790303 +272652,1363.2600000181517,-0.06918016167196864 +272653,1363.2650000181518,-0.06918014368588338 +272654,1363.270000018152,-0.06918012569964731 +272655,1363.275000018152,-0.06918010771326044 +272656,1363.2800000181521,-0.06918008972672285 +272657,1363.2850000181522,-0.06918007174003453 +272658,1363.2900000181523,-0.06918005375319558 +272659,1363.2950000181525,-0.069180035766206 +272660,1363.3000000181526,-0.06918001777906585 +272661,1363.3050000181527,-0.06917999979177515 +272662,1363.3100000181528,-0.06917998180433395 +272663,1363.315000018153,-0.06917996381674228 +272664,1363.320000018153,-0.06917994582900022 +272665,1363.325000018153,-0.06917992784110777 +272666,1363.3300000181532,-0.06917990985306499 +272667,1363.3350000181533,-0.06917989186487189 +272668,1363.3400000181534,-0.06917987387652855 +272669,1363.3450000181535,-0.06917985588803499 +272670,1363.3500000181537,-0.06917983789939126 +272671,1363.3550000181538,-0.06917981991059739 +272672,1363.3600000181539,-0.06917980192165342 +272673,1363.365000018154,-0.0691797839325594 +272674,1363.370000018154,-0.06917976594331537 +272675,1363.3750000181542,-0.06917974795392137 +272676,1363.3800000181543,-0.06917972996437743 +272677,1363.3850000181544,-0.0691797119746836 +272678,1363.3900000181545,-0.06917969398483992 +272679,1363.3950000181546,-0.06917967599484642 +272680,1363.4000000181547,-0.06917965800470316 +272681,1363.4050000181549,-0.06917964001441017 +272682,1363.410000018155,-0.06917962202396748 +272683,1363.415000018155,-0.06917960403337516 +272684,1363.4200000181552,-0.06917958604263322 +272685,1363.4250000181553,-0.06917956805174172 +272686,1363.4300000181554,-0.06917955006070067 +272687,1363.4350000181555,-0.06917953206951015 +272688,1363.4400000181556,-0.06917951407817018 +272689,1363.4450000181557,-0.0691794960866808 +272690,1363.4500000181558,-0.06917947809504206 +272691,1363.455000018156,-0.06917946010325399 +272692,1363.460000018156,-0.06917944211131663 +272693,1363.4650000181562,-0.06917942411923003 +272694,1363.4700000181563,-0.06917940612699423 +272695,1363.4750000181564,-0.06917938813460928 +272696,1363.4800000181565,-0.06917937014207519 +272697,1363.4850000181566,-0.06917935214939201 +272698,1363.4900000181567,-0.0691793341565598 +272699,1363.4950000181568,-0.06917931616357859 +272700,1363.500000018157,-0.06917929817044842 +272701,1363.505000018157,-0.06917928017716932 +272702,1363.5100000181571,-0.06917926218374135 +272703,1363.5150000181573,-0.06917924419016452 +272704,1363.5200000181574,-0.0691792261964389 +272705,1363.5250000181575,-0.06917920820256453 +272706,1363.5300000181576,-0.06917919020854144 +272707,1363.5350000181577,-0.06917917221436966 +272708,1363.5400000181578,-0.06917915422004926 +272709,1363.545000018158,-0.06917913622558025 +272710,1363.550000018158,-0.0691791182309627 +272711,1363.5550000181581,-0.06917910023619664 +272712,1363.5600000181582,-0.0691790822412821 +272713,1363.5650000181583,-0.06917906424621911 +272714,1363.5700000181585,-0.06917904625100774 +272715,1363.5750000181586,-0.069179028255648 +272716,1363.5800000181587,-0.06917901026013996 +272717,1363.5850000181588,-0.06917899226448365 +272718,1363.590000018159,-0.06917897426867911 +272719,1363.595000018159,-0.06917895627272638 +272720,1363.600000018159,-0.06917893827662551 +272721,1363.6050000181592,-0.0691789202803765 +272722,1363.6100000181593,-0.06917890228397944 +272723,1363.6150000181594,-0.06917888428743435 +272724,1363.6200000181595,-0.06917886629074127 +272725,1363.6250000181597,-0.06917884829390025 +272726,1363.6300000181598,-0.06917883029691131 +272727,1363.6350000181599,-0.0691788122997745 +272728,1363.64000001816,-0.06917879430248988 +272729,1363.64500001816,-0.06917877630505746 +272730,1363.6500000181602,-0.06917875830747731 +272731,1363.6550000181603,-0.06917874030974945 +272732,1363.6600000181604,-0.06917872231187391 +272733,1363.6650000181605,-0.06917870431385076 +272734,1363.6700000181606,-0.06917868631568003 +272735,1363.6750000181607,-0.06917866831736176 +272736,1363.6800000181609,-0.06917865031889597 +272737,1363.685000018161,-0.06917863232028275 +272738,1363.690000018161,-0.06917861432152209 +272739,1363.6950000181612,-0.06917859632261406 +272740,1363.7000000181613,-0.06917857832355868 +272741,1363.7050000181614,-0.06917856032435601 +272742,1363.7100000181615,-0.06917854232500607 +272743,1363.7150000181616,-0.06917852432550893 +272744,1363.7200000181617,-0.0691785063258646 +272745,1363.7250000181618,-0.06917848832607315 +272746,1363.730000018162,-0.0691784703261346 +272747,1363.735000018162,-0.069178452326049 +272748,1363.7400000181622,-0.06917843432581637 +272749,1363.7450000181623,-0.06917841632543677 +272750,1363.7500000181624,-0.06917839832491025 +272751,1363.7550000181625,-0.06917838032423683 +272752,1363.7600000181626,-0.06917836232341655 +272753,1363.7650000181627,-0.06917834432244946 +272754,1363.7700000181628,-0.06917832632133561 +272755,1363.775000018163,-0.06917830832007502 +272756,1363.780000018163,-0.06917829031866775 +272757,1363.7850000181631,-0.06917827231711382 +272758,1363.7900000181633,-0.0691782543154133 +272759,1363.7950000181634,-0.0691782363135662 +272760,1363.8000000181635,-0.06917821831157259 +272761,1363.8050000181636,-0.06917820030943247 +272762,1363.8100000181637,-0.06917818230714592 +272763,1363.8150000181638,-0.06917816430471295 +272764,1363.820000018164,-0.06917814630213363 +272765,1363.825000018164,-0.06917812829940798 +272766,1363.8300000181641,-0.06917811029653605 +272767,1363.8350000181642,-0.06917809229351787 +272768,1363.8400000181643,-0.06917807429035351 +272769,1363.8450000181645,-0.06917805628704296 +272770,1363.8500000181646,-0.0691780382835863 +272771,1363.8550000181647,-0.06917802027998357 +272772,1363.8600000181648,-0.06917800227623479 +272773,1363.865000018165,-0.06917798427234001 +272774,1363.870000018165,-0.06917796626829929 +272775,1363.875000018165,-0.06917794826411265 +272776,1363.8800000181652,-0.06917793025978011 +272777,1363.8850000181653,-0.06917791225530175 +272778,1363.8900000181654,-0.0691778942506776 +272779,1363.8950000181655,-0.06917787624590768 +272780,1363.9000000181657,-0.06917785824099207 +272781,1363.9050000181658,-0.06917784023593078 +272782,1363.9100000181659,-0.06917782223072384 +272783,1363.915000018166,-0.06917780422537133 +272784,1363.920000018166,-0.06917778621987325 +272785,1363.9250000181662,-0.06917776821422968 +272786,1363.9300000181663,-0.06917775020844062 +272787,1363.9350000181664,-0.06917773220250614 +272788,1363.9400000181665,-0.06917771419642627 +272789,1363.9450000181666,-0.06917769619020105 +272790,1363.9500000181667,-0.06917767818383053 +272791,1363.9550000181669,-0.06917766017731473 +272792,1363.960000018167,-0.06917764217065372 +272793,1363.965000018167,-0.06917762416384753 +272794,1363.9700000181672,-0.06917760615689618 +272795,1363.9750000181673,-0.06917758814979973 +272796,1363.9800000181674,-0.06917757014255822 +272797,1363.9850000181675,-0.0691775521351717 +272798,1363.9900000181676,-0.06917753412764019 +272799,1363.9950000181677,-0.06917751611996373 +272800,1364.0000000181678,-0.06917749811214237 +272801,1364.005000018168,-0.06917748010417615 +272802,1364.010000018168,-0.06917746209606512 +272803,1364.0150000181682,-0.06917744408780932 +272804,1364.0200000181683,-0.06917742607940877 +272805,1364.0250000181684,-0.06917740807086353 +272806,1364.0300000181685,-0.06917739006217365 +272807,1364.0350000181686,-0.06917737205333913 +272808,1364.0400000181687,-0.06917735404436004 +272809,1364.0450000181688,-0.06917733603523642 +272810,1364.050000018169,-0.06917731802596831 +272811,1364.055000018169,-0.06917730001655574 +272812,1364.0600000181691,-0.06917728200699876 +272813,1364.0650000181693,-0.0691772639972974 +272814,1364.0700000181694,-0.06917724598745173 +272815,1364.0750000181695,-0.06917722797746176 +272816,1364.0800000181696,-0.06917720996732754 +272817,1364.0850000181697,-0.06917719195704912 +272818,1364.0900000181698,-0.06917717394662652 +272819,1364.09500001817,-0.0691771559360598 +272820,1364.10000001817,-0.069177137925349 +272821,1364.1050000181701,-0.06917711991449416 +272822,1364.1100000181702,-0.06917710190349531 +272823,1364.1150000181703,-0.0691770838923525 +272824,1364.1200000181705,-0.06917706588106577 +272825,1364.1250000181706,-0.06917704786963516 +272826,1364.1300000181707,-0.0691770298580607 +272827,1364.1350000181708,-0.06917701184634245 +272828,1364.140000018171,-0.06917699383448045 +272829,1364.145000018171,-0.0691769758224747 +272830,1364.150000018171,-0.06917695781032529 +272831,1364.1550000181712,-0.06917693979803224 +272832,1364.1600000181713,-0.06917692178559559 +272833,1364.1650000181714,-0.0691769037730154 +272834,1364.1700000181715,-0.06917688576029168 +272835,1364.1750000181717,-0.0691768677474245 +272836,1364.1800000181718,-0.06917684973441388 +272837,1364.1850000181719,-0.06917683172125987 +272838,1364.190000018172,-0.0691768137079625 +272839,1364.195000018172,-0.06917679569452181 +272840,1364.2000000181722,-0.06917677768093787 +272841,1364.2050000181723,-0.06917675966721071 +272842,1364.2100000181724,-0.06917674165334034 +272843,1364.2150000181725,-0.06917672363932684 +272844,1364.2200000181726,-0.06917670562517021 +272845,1364.2250000181728,-0.06917668761087054 +272846,1364.2300000181729,-0.06917666959642782 +272847,1364.235000018173,-0.06917665158184212 +272848,1364.240000018173,-0.06917663356711348 +272849,1364.2450000181732,-0.06917661555224194 +272850,1364.2500000181733,-0.06917659753722753 +272851,1364.2550000181734,-0.06917657952207032 +272852,1364.2600000181735,-0.06917656150677032 +272853,1364.2650000181736,-0.06917654349132757 +272854,1364.2700000181737,-0.06917652547574213 +272855,1364.2750000181738,-0.06917650746001403 +272856,1364.280000018174,-0.0691764894441433 +272857,1364.285000018174,-0.06917647142813002 +272858,1364.2900000181742,-0.06917645341197418 +272859,1364.2950000181743,-0.06917643539567585 +272860,1364.3000000181744,-0.06917641737923508 +272861,1364.3050000181745,-0.0691763993626519 +272862,1364.3100000181746,-0.06917638134592634 +272863,1364.3150000181747,-0.06917636332905844 +272864,1364.3200000181748,-0.06917634531204826 +272865,1364.325000018175,-0.06917632729489583 +272866,1364.330000018175,-0.0691763092776012 +272867,1364.3350000181752,-0.06917629126016438 +272868,1364.3400000181753,-0.06917627324258543 +272869,1364.3450000181754,-0.06917625522486442 +272870,1364.3500000181755,-0.06917623720700135 +272871,1364.3550000181756,-0.06917621918899627 +272872,1364.3600000181757,-0.06917620117084924 +272873,1364.3650000181758,-0.06917618315256029 +272874,1364.370000018176,-0.06917616513412946 +272875,1364.375000018176,-0.06917614711555677 +272876,1364.3800000181761,-0.06917612909684227 +272877,1364.3850000181762,-0.06917611107798603 +272878,1364.3900000181764,-0.06917609305898807 +272879,1364.3950000181765,-0.06917607503984843 +272880,1364.4000000181766,-0.06917605702056716 +272881,1364.4050000181767,-0.06917603900114429 +272882,1364.4100000181768,-0.06917602098157986 +272883,1364.415000018177,-0.06917600296187391 +272884,1364.420000018177,-0.06917598494202651 +272885,1364.4250000181771,-0.06917596692203766 +272886,1364.4300000181772,-0.06917594890190742 +272887,1364.4350000181773,-0.06917593088163583 +272888,1364.4400000181774,-0.06917591286122295 +272889,1364.4450000181776,-0.06917589484066877 +272890,1364.4500000181777,-0.06917587681997338 +272891,1364.4550000181778,-0.0691758587991368 +272892,1364.4600000181779,-0.06917584077815907 +272893,1364.465000018178,-0.06917582275704023 +272894,1364.470000018178,-0.06917580473578033 +272895,1364.4750000181782,-0.06917578671437942 +272896,1364.4800000181783,-0.06917576869283751 +272897,1364.4850000181784,-0.06917575067115467 +272898,1364.4900000181785,-0.06917573264933091 +272899,1364.4950000181786,-0.06917571462736631 +272900,1364.5000000181788,-0.06917569660526088 +272901,1364.5050000181789,-0.06917567858301467 +272902,1364.510000018179,-0.06917566056062774 +272903,1364.515000018179,-0.06917564253810009 +272904,1364.5200000181792,-0.0691756245154318 +272905,1364.5250000181793,-0.06917560649262287 +272906,1364.5300000181794,-0.06917558846967341 +272907,1364.5350000181795,-0.06917557044658339 +272908,1364.5400000181796,-0.06917555242335287 +272909,1364.5450000181797,-0.06917553439998192 +272910,1364.5500000181798,-0.06917551637647054 +272911,1364.55500001818,-0.0691754983528188 +272912,1364.56000001818,-0.06917548032902675 +272913,1364.5650000181802,-0.06917546230509439 +272914,1364.5700000181803,-0.06917544428102178 +272915,1364.5750000181804,-0.06917542625680898 +272916,1364.5800000181805,-0.069175408232456 +272917,1364.5850000181806,-0.06917539020796293 +272918,1364.5900000181807,-0.06917537218332974 +272919,1364.5950000181808,-0.06917535415855654 +272920,1364.600000018181,-0.06917533613364331 +272921,1364.605000018181,-0.06917531810859014 +272922,1364.6100000181812,-0.06917530008339703 +272923,1364.6150000181813,-0.06917528205806406 +272924,1364.6200000181814,-0.06917526403259125 +272925,1364.6250000181815,-0.06917524600697864 +272926,1364.6300000181816,-0.06917522798122629 +272927,1364.6350000181817,-0.06917520995533422 +272928,1364.6400000181818,-0.06917519192930247 +272929,1364.645000018182,-0.06917517390313109 +272930,1364.650000018182,-0.06917515587682012 +272931,1364.6550000181821,-0.06917513785036959 +272932,1364.6600000181822,-0.06917511982377957 +272933,1364.6650000181824,-0.06917510179705008 +272934,1364.6700000181825,-0.06917508377018115 +272935,1364.6750000181826,-0.06917506574317284 +272936,1364.6800000181827,-0.06917504771602517 +272937,1364.6850000181828,-0.06917502968873822 +272938,1364.690000018183,-0.069175011661312 +272939,1364.695000018183,-0.06917499363374656 +272940,1364.7000000181831,-0.06917497560604192 +272941,1364.7050000181832,-0.06917495757819817 +272942,1364.7100000181833,-0.06917493955021528 +272943,1364.7150000181834,-0.06917492152209335 +272944,1364.7200000181836,-0.06917490349383242 +272945,1364.7250000181837,-0.0691748854654325 +272946,1364.7300000181838,-0.06917486743689363 +272947,1364.7350000181839,-0.06917484940821589 +272948,1364.740000018184,-0.06917483137939928 +272949,1364.745000018184,-0.06917481335044387 +272950,1364.7500000181842,-0.06917479532134968 +272951,1364.7550000181843,-0.06917477729211675 +272952,1364.7600000181844,-0.06917475926274516 +272953,1364.7650000181845,-0.0691747412332349 +272954,1364.7700000181846,-0.06917472320358603 +272955,1364.7750000181848,-0.0691747051737986 +272956,1364.7800000181849,-0.06917468714387265 +272957,1364.785000018185,-0.06917466911380821 +272958,1364.790000018185,-0.06917465108360532 +272959,1364.7950000181852,-0.06917463305326405 +272960,1364.8000000181853,-0.0691746150227844 +272961,1364.8050000181854,-0.06917459699216642 +272962,1364.8100000181855,-0.06917457896141017 +272963,1364.8150000181856,-0.0691745609305157 +272964,1364.8200000181857,-0.06917454289948302 +272965,1364.8250000181858,-0.06917452486831217 +272966,1364.830000018186,-0.06917450683700323 +272967,1364.835000018186,-0.0691744888055562 +272968,1364.8400000181862,-0.06917447077397114 +272969,1364.8450000181863,-0.06917445274224808 +272970,1364.8500000181864,-0.06917443471038708 +272971,1364.8550000181865,-0.06917441667838815 +272972,1364.8600000181866,-0.06917439864625138 +272973,1364.8650000181867,-0.06917438061397677 +272974,1364.8700000181868,-0.06917436258156437 +272975,1364.875000018187,-0.06917434454901422 +272976,1364.880000018187,-0.06917432651632638 +272977,1364.8850000181872,-0.06917430848350087 +272978,1364.8900000181873,-0.06917429045053773 +272979,1364.8950000181874,-0.06917427241743701 +272980,1364.9000000181875,-0.06917425438419875 +272981,1364.9050000181876,-0.069174236350823 +272982,1364.9100000181877,-0.06917421831730979 +272983,1364.9150000181878,-0.06917420028365914 +272984,1364.920000018188,-0.06917418224987114 +272985,1364.925000018188,-0.0691741642159458 +272986,1364.9300000181881,-0.06917414618188317 +272987,1364.9350000181882,-0.06917412814768328 +272988,1364.9400000181884,-0.06917411011334618 +272989,1364.9450000181885,-0.0691740920788719 +272990,1364.9500000181886,-0.0691740740442605 +272991,1364.9550000181887,-0.069174056009512 +272992,1364.9600000181888,-0.06917403797462646 +272993,1364.965000018189,-0.06917401993960391 +272994,1364.970000018189,-0.0691740019044444 +272995,1364.9750000181891,-0.06917398386914796 +272996,1364.9800000181892,-0.06917396583371464 +272997,1364.9850000181893,-0.06917394779814448 +272998,1364.9900000181894,-0.06917392976243752 +272999,1364.9950000181896,-0.0691739117265938 +273000,1365.0000000181897,-0.06917389369061336 +273001,1365.0050000181898,-0.06917387565449623 +273002,1365.0100000181899,-0.06917385761824248 +273003,1365.01500001819,-0.06917383958185212 +273004,1365.02000001819,-0.06917382154532521 +273005,1365.0250000181902,-0.0691738035086618 +273006,1365.0300000181903,-0.06917378547186191 +273007,1365.0350000181904,-0.06917376743492558 +273008,1365.0400000181905,-0.06917374939785285 +273009,1365.0450000181906,-0.0691737313606438 +273010,1365.0500000181908,-0.06917371332329843 +273011,1365.0550000181909,-0.0691736952858168 +273012,1365.060000018191,-0.06917367724819892 +273013,1365.065000018191,-0.06917365921044488 +273014,1365.0700000181912,-0.0691736411725547 +273015,1365.0750000181913,-0.0691736231345284 +273016,1365.0800000181914,-0.06917360509636605 +273017,1365.0850000181915,-0.06917358705806767 +273018,1365.0900000181916,-0.06917356901963333 +273019,1365.0950000181917,-0.06917355098106304 +273020,1365.1000000181918,-0.06917353294235684 +273021,1365.105000018192,-0.0691735149035148 +273022,1365.110000018192,-0.06917349686453694 +273023,1365.1150000181922,-0.06917347882542332 +273024,1365.1200000181923,-0.06917346078617395 +273025,1365.1250000181924,-0.0691734427467889 +273026,1365.1300000181925,-0.06917342470726819 +273027,1365.1350000181926,-0.06917340666761188 +273028,1365.1400000181927,-0.06917338862781999 +273029,1365.1450000181928,-0.06917337058789258 +273030,1365.150000018193,-0.06917335254782968 +273031,1365.155000018193,-0.06917333450763134 +273032,1365.1600000181932,-0.0691733164672976 +273033,1365.1650000181933,-0.0691732984268285 +273034,1365.1700000181934,-0.06917328038622408 +273035,1365.1750000181935,-0.06917326234548438 +273036,1365.1800000181936,-0.06917324430460944 +273037,1365.1850000181937,-0.0691732262635993 +273038,1365.1900000181938,-0.06917320822245401 +273039,1365.195000018194,-0.0691731901811736 +273040,1365.200000018194,-0.06917317213975813 +273041,1365.2050000181941,-0.06917315409820761 +273042,1365.2100000181943,-0.0691731360565221 +273043,1365.2150000181944,-0.06917311801470165 +273044,1365.2200000181945,-0.06917309997274629 +273045,1365.2250000181946,-0.06917308193065605 +273046,1365.2300000181947,-0.069173063888431 +273047,1365.2350000181948,-0.06917304584607116 +273048,1365.240000018195,-0.06917302780357658 +273049,1365.245000018195,-0.06917300976094728 +273050,1365.2500000181951,-0.06917299171818332 +273051,1365.2550000181952,-0.06917297367528476 +273052,1365.2600000181953,-0.0691729556322516 +273053,1365.2650000181955,-0.06917293758908391 +273054,1365.2700000181956,-0.06917291954578172 +273055,1365.2750000181957,-0.06917290150234509 +273056,1365.2800000181958,-0.06917288345877402 +273057,1365.285000018196,-0.0691728654150686 +273058,1365.290000018196,-0.06917284737122885 +273059,1365.295000018196,-0.06917282932725478 +273060,1365.3000000181962,-0.0691728112831465 +273061,1365.3050000181963,-0.06917279323890398 +273062,1365.3100000181964,-0.06917277519452729 +273063,1365.3150000181965,-0.06917275715001649 +273064,1365.3200000181967,-0.0691727391053716 +273065,1365.3250000181968,-0.06917272106059265 +273066,1365.3300000181969,-0.06917270301567972 +273067,1365.335000018197,-0.06917268497063282 +273068,1365.340000018197,-0.06917266692545199 +273069,1365.3450000181972,-0.0691726488801373 +273070,1365.3500000181973,-0.06917263083468878 +273071,1365.3550000181974,-0.06917261278910644 +273072,1365.3600000181975,-0.06917259474339035 +273073,1365.3650000181976,-0.06917257669754055 +273074,1365.3700000181977,-0.06917255865155708 +273075,1365.3750000181979,-0.06917254060543998 +273076,1365.380000018198,-0.06917252255918929 +273077,1365.385000018198,-0.06917250451280504 +273078,1365.3900000181982,-0.06917248646628729 +273079,1365.3950000181983,-0.06917246841963608 +273080,1365.4000000181984,-0.06917245037285143 +273081,1365.4050000181985,-0.0691724323259334 +273082,1365.4100000181986,-0.06917241427888203 +273083,1365.4150000181987,-0.06917239623169737 +273084,1365.4200000181988,-0.06917237818437943 +273085,1365.425000018199,-0.06917236013692829 +273086,1365.430000018199,-0.06917234208934396 +273087,1365.4350000181992,-0.0691723240416265 +273088,1365.4400000181993,-0.06917230599377594 +273089,1365.4450000181994,-0.06917228794579232 +273090,1365.4500000181995,-0.06917226989767569 +273091,1365.4550000181996,-0.06917225184942609 +273092,1365.4600000181997,-0.06917223380104356 +273093,1365.4650000181998,-0.06917221575252815 +273094,1365.4700000182,-0.06917219770387989 +273095,1365.4750000182,-0.06917217965509882 +273096,1365.4800000182001,-0.06917216160618499 +273097,1365.4850000182003,-0.06917214355713842 +273098,1365.4900000182004,-0.06917212550795919 +273099,1365.4950000182005,-0.06917210745864733 +273100,1365.5000000182006,-0.06917208940920284 +273101,1365.5050000182007,-0.0691720713596258 +273102,1365.5100000182008,-0.06917205330991626 +273103,1365.515000018201,-0.0691720352600742 +273104,1365.520000018201,-0.06917201721009975 +273105,1365.5250000182011,-0.06917199915999288 +273106,1365.5300000182012,-0.06917198110975367 +273107,1365.5350000182013,-0.06917196305938215 +273108,1365.5400000182015,-0.06917194500887835 +273109,1365.5450000182016,-0.06917192695824234 +273110,1365.5500000182017,-0.06917190890747414 +273111,1365.5550000182018,-0.06917189085657378 +273112,1365.560000018202,-0.06917187280554132 +273113,1365.565000018202,-0.06917185475437682 +273114,1365.570000018202,-0.06917183670308026 +273115,1365.5750000182022,-0.06917181865165173 +273116,1365.5800000182023,-0.06917180060009127 +273117,1365.5850000182024,-0.06917178254839891 +273118,1365.5900000182025,-0.0691717644965747 +273119,1365.5950000182027,-0.06917174644461867 +273120,1365.6000000182028,-0.06917172839253086 +273121,1365.6050000182029,-0.06917171034031132 +273122,1365.610000018203,-0.0691716922879601 +273123,1365.615000018203,-0.06917167423547721 +273124,1365.6200000182032,-0.06917165618286272 +273125,1365.6250000182033,-0.06917163813011666 +273126,1365.6300000182034,-0.06917162007723908 +273127,1365.6350000182035,-0.06917160202423003 +273128,1365.6400000182036,-0.06917158397108952 +273129,1365.6450000182037,-0.0691715659178176 +273130,1365.6500000182039,-0.06917154786441433 +273131,1365.655000018204,-0.06917152981087975 +273132,1365.660000018204,-0.06917151175721388 +273133,1365.6650000182042,-0.06917149370341677 +273134,1365.6700000182043,-0.06917147564948847 +273135,1365.6750000182044,-0.06917145759542902 +273136,1365.6800000182045,-0.06917143954123846 +273137,1365.6850000182046,-0.06917142148691682 +273138,1365.6900000182047,-0.06917140343246417 +273139,1365.6950000182048,-0.0691713853778805 +273140,1365.700000018205,-0.06917136732316591 +273141,1365.705000018205,-0.0691713492683204 +273142,1365.7100000182052,-0.06917133121334404 +273143,1365.7150000182053,-0.06917131315823684 +273144,1365.7200000182054,-0.06917129510299887 +273145,1365.7250000182055,-0.06917127704763015 +273146,1365.7300000182056,-0.06917125899213075 +273147,1365.7350000182057,-0.06917124093650066 +273148,1365.7400000182058,-0.06917122288073997 +273149,1365.745000018206,-0.06917120482484872 +273150,1365.750000018206,-0.06917118676882691 +273151,1365.7550000182061,-0.06917116871267463 +273152,1365.7600000182063,-0.06917115065639189 +273153,1365.7650000182064,-0.06917113259997874 +273154,1365.7700000182065,-0.06917111454343523 +273155,1365.7750000182066,-0.0691710964867614 +273156,1365.7800000182067,-0.06917107842995728 +273157,1365.7850000182068,-0.06917106037302291 +273158,1365.790000018207,-0.06917104231595833 +273159,1365.795000018207,-0.06917102425876359 +273160,1365.8000000182071,-0.06917100620143875 +273161,1365.8050000182072,-0.06917098814398383 +273162,1365.8100000182073,-0.06917097008639886 +273163,1365.8150000182075,-0.06917095202868388 +273164,1365.8200000182076,-0.06917093397083897 +273165,1365.8250000182077,-0.06917091591286414 +273166,1365.8300000182078,-0.06917089785475945 +273167,1365.835000018208,-0.06917087979652492 +273168,1365.840000018208,-0.0691708617381606 +273169,1365.845000018208,-0.06917084367966653 +273170,1365.8500000182082,-0.06917082562104276 +273171,1365.8550000182083,-0.06917080756228933 +273172,1365.8600000182084,-0.06917078950340627 +273173,1365.8650000182085,-0.06917077144439364 +273174,1365.8700000182087,-0.06917075338525146 +273175,1365.8750000182088,-0.06917073532597978 +273176,1365.8800000182089,-0.06917071726657865 +273177,1365.885000018209,-0.0691706992070481 +273178,1365.890000018209,-0.06917068114738818 +273179,1365.8950000182092,-0.06917066308759892 +273180,1365.9000000182093,-0.06917064502768037 +273181,1365.9050000182094,-0.06917062696763258 +273182,1365.9100000182095,-0.06917060890745559 +273183,1365.9150000182096,-0.06917059084714941 +273184,1365.9200000182097,-0.06917057278671412 +273185,1365.9250000182099,-0.06917055472614975 +273186,1365.93000001821,-0.06917053666545632 +273187,1365.93500001821,-0.0691705186046339 +273188,1365.9400000182102,-0.06917050054368253 +273189,1365.9450000182103,-0.06917048248260223 +273190,1365.9500000182104,-0.06917046442139305 +273191,1365.9550000182105,-0.06917044636005504 +273192,1365.9600000182106,-0.06917042829858823 +273193,1365.9650000182107,-0.06917041023699268 +273194,1365.9700000182108,-0.06917039217526841 +273195,1365.975000018211,-0.06917037411341546 +273196,1365.980000018211,-0.0691703560514339 +273197,1365.9850000182112,-0.06917033798932375 +273198,1365.9900000182113,-0.06917031992708504 +273199,1365.9950000182114,-0.06917030186471784 +273200,1366.0000000182115,-0.06917028380222218 +273201,1366.0050000182116,-0.0691702657395981 +273202,1366.0100000182117,-0.06917024767684564 +273203,1366.0150000182118,-0.06917022961396484 +273204,1366.020000018212,-0.06917021155095575 +273205,1366.025000018212,-0.06917019348781839 +273206,1366.0300000182121,-0.06917017542455281 +273207,1366.0350000182123,-0.06917015736115907 +273208,1366.0400000182124,-0.06917013929763721 +273209,1366.0450000182125,-0.06917012123398725 +273210,1366.0500000182126,-0.06917010317020925 +273211,1366.0550000182127,-0.06917008510630324 +273212,1366.0600000182128,-0.06917006704226926 +273213,1366.065000018213,-0.06917004897810736 +273214,1366.070000018213,-0.06917003091381758 +273215,1366.0750000182131,-0.06917001284939997 +273216,1366.0800000182132,-0.06916999478485455 +273217,1366.0850000182133,-0.06916997672018138 +273218,1366.0900000182135,-0.06916995865538049 +273219,1366.0950000182136,-0.06916994059045192 +273220,1366.1000000182137,-0.06916992252539572 +273221,1366.1050000182138,-0.06916990446021194 +273222,1366.110000018214,-0.0691698863949006 +273223,1366.115000018214,-0.06916986832946175 +273224,1366.1200000182141,-0.06916985026389544 +273225,1366.1250000182142,-0.0691698321982017 +273226,1366.1300000182143,-0.06916981413238057 +273227,1366.1350000182144,-0.06916979606643213 +273228,1366.1400000182146,-0.06916977800035636 +273229,1366.1450000182147,-0.06916975993415335 +273230,1366.1500000182148,-0.06916974186782311 +273231,1366.1550000182149,-0.0691697238013657 +273232,1366.160000018215,-0.06916970573478115 +273233,1366.165000018215,-0.06916968766806951 +273234,1366.1700000182152,-0.06916966960123082 +273235,1366.1750000182153,-0.06916965153426513 +273236,1366.1800000182154,-0.06916963346717246 +273237,1366.1850000182155,-0.06916961539995287 +273238,1366.1900000182156,-0.06916959733260639 +273239,1366.1950000182158,-0.06916957926513306 +273240,1366.2000000182159,-0.06916956119753294 +273241,1366.205000018216,-0.06916954312980605 +273242,1366.210000018216,-0.06916952506195245 +273243,1366.2150000182162,-0.06916950699397217 +273244,1366.2200000182163,-0.06916948892586527 +273245,1366.2250000182164,-0.06916947085763175 +273246,1366.2300000182165,-0.0691694527892717 +273247,1366.2350000182166,-0.0691694347207851 +273248,1366.2400000182167,-0.06916941665217206 +273249,1366.2450000182168,-0.06916939858343259 +273250,1366.250000018217,-0.06916938051456673 +273251,1366.255000018217,-0.06916936244557452 +273252,1366.2600000182172,-0.06916934437645601 +273253,1366.2650000182173,-0.06916932630721123 +273254,1366.2700000182174,-0.06916930823784026 +273255,1366.2750000182175,-0.06916929016834308 +273256,1366.2800000182176,-0.06916927209871977 +273257,1366.2850000182177,-0.06916925402897037 +273258,1366.2900000182178,-0.06916923595909492 +273259,1366.295000018218,-0.06916921788909346 +273260,1366.300000018218,-0.06916919981896602 +273261,1366.3050000182182,-0.06916918174871266 +273262,1366.3100000182183,-0.06916916367833341 +273263,1366.3150000182184,-0.06916914560782832 +273264,1366.3200000182185,-0.06916912753719741 +273265,1366.3250000182186,-0.06916910946644074 +273266,1366.3300000182187,-0.06916909139555835 +273267,1366.3350000182188,-0.06916907332455029 +273268,1366.340000018219,-0.06916905525341657 +273269,1366.345000018219,-0.06916903718215726 +273270,1366.3500000182191,-0.06916901911077242 +273271,1366.3550000182192,-0.06916900103926205 +273272,1366.3600000182194,-0.0691689829676262 +273273,1366.3650000182195,-0.06916896489586494 +273274,1366.3700000182196,-0.06916894682397827 +273275,1366.3750000182197,-0.06916892875196626 +273276,1366.3800000182198,-0.06916891067982896 +273277,1366.38500001822,-0.06916889260756638 +273278,1366.39000001822,-0.06916887453517857 +273279,1366.3950000182201,-0.0691688564626656 +273280,1366.4000000182202,-0.06916883839002749 +273281,1366.4050000182203,-0.06916882031726428 +273282,1366.4100000182204,-0.06916880224437601 +273283,1366.4150000182206,-0.06916878417136273 +273284,1366.4200000182207,-0.06916876609822446 +273285,1366.4250000182208,-0.06916874802496127 +273286,1366.4300000182209,-0.0691687299515732 +273287,1366.435000018221,-0.06916871187806028 +273288,1366.440000018221,-0.06916869380442255 +273289,1366.4450000182212,-0.06916867573066006 +273290,1366.4500000182213,-0.06916865765677284 +273291,1366.4550000182214,-0.06916863958276094 +273292,1366.4600000182215,-0.06916862150862442 +273293,1366.4650000182216,-0.06916860343436328 +273294,1366.4700000182218,-0.06916858535997758 +273295,1366.4750000182219,-0.06916856728546737 +273296,1366.480000018222,-0.0691685492108327 +273297,1366.485000018222,-0.06916853113607359 +273298,1366.4900000182222,-0.06916851306119008 +273299,1366.4950000182223,-0.06916849498618224 +273300,1366.5000000182224,-0.06916847691105009 +273301,1366.5050000182225,-0.06916845883579367 +273302,1366.5100000182226,-0.06916844076041304 +273303,1366.5150000182227,-0.0691684226849082 +273304,1366.5200000182228,-0.06916840460927925 +273305,1366.525000018223,-0.0691683865335262 +273306,1366.530000018223,-0.06916836845764908 +273307,1366.5350000182232,-0.06916835038164795 +273308,1366.5400000182233,-0.06916833230552286 +273309,1366.5450000182234,-0.06916831422927382 +273310,1366.5500000182235,-0.06916829615290089 +273311,1366.5550000182236,-0.06916827807640412 +273312,1366.5600000182237,-0.06916825999978354 +273313,1366.5650000182238,-0.0691682419230392 +273314,1366.570000018224,-0.06916822384617115 +273315,1366.575000018224,-0.0691682057691794 +273316,1366.5800000182242,-0.06916818769206401 +273317,1366.5850000182243,-0.06916816961482503 +273318,1366.5900000182244,-0.06916815153746247 +273319,1366.5950000182245,-0.06916813345997642 +273320,1366.6000000182246,-0.06916811538236689 +273321,1366.6050000182247,-0.06916809730463393 +273322,1366.6100000182248,-0.06916807922677758 +273323,1366.615000018225,-0.0691680611487979 +273324,1366.620000018225,-0.06916804307069489 +273325,1366.6250000182251,-0.06916802499246863 +273326,1366.6300000182252,-0.06916800691411915 +273327,1366.6350000182254,-0.06916798883564647 +273328,1366.6400000182255,-0.06916797075705065 +273329,1366.6450000182256,-0.06916795267833174 +273330,1366.6500000182257,-0.06916793459948978 +273331,1366.6550000182258,-0.06916791652052481 +273332,1366.660000018226,-0.06916789844143686 +273333,1366.665000018226,-0.06916788036222599 +273334,1366.6700000182261,-0.06916786228289222 +273335,1366.6750000182262,-0.0691678442034356 +273336,1366.6800000182263,-0.06916782612385618 +273337,1366.6850000182264,-0.06916780804415398 +273338,1366.6900000182266,-0.06916778996432908 +273339,1366.6950000182267,-0.06916777188438149 +273340,1366.7000000182268,-0.06916775380431124 +273341,1366.7050000182269,-0.06916773572411841 +273342,1366.710000018227,-0.06916771764380303 +273343,1366.715000018227,-0.06916769956336513 +273344,1366.7200000182272,-0.06916768148280476 +273345,1366.7250000182273,-0.06916766340212198 +273346,1366.7300000182274,-0.06916764532131679 +273347,1366.7350000182275,-0.06916762724038927 +273348,1366.7400000182276,-0.06916760915933944 +273349,1366.7450000182278,-0.06916759107816733 +273350,1366.7500000182279,-0.06916757299687303 +273351,1366.755000018228,-0.06916755491545652 +273352,1366.760000018228,-0.06916753683391788 +273353,1366.7650000182282,-0.06916751875225714 +273354,1366.7700000182283,-0.06916750067047435 +273355,1366.7750000182284,-0.06916748258856956 +273356,1366.7800000182285,-0.06916746450654279 +273357,1366.7850000182286,-0.06916744642439408 +273358,1366.7900000182287,-0.0691674283421235 +273359,1366.7950000182288,-0.06916741025973105 +273360,1366.800000018229,-0.06916739217721682 +273361,1366.805000018229,-0.0691673740945808 +273362,1366.8100000182292,-0.06916735601182308 +273363,1366.8150000182293,-0.06916733792894368 +273364,1366.8200000182294,-0.06916731984594264 +273365,1366.8250000182295,-0.06916730176282 +273366,1366.8300000182296,-0.06916728367957582 +273367,1366.8350000182297,-0.06916726559621011 +273368,1366.8400000182298,-0.06916724751272295 +273369,1366.84500001823,-0.06916722942911435 +273370,1366.85000001823,-0.06916721134538438 +273371,1366.8550000182302,-0.06916719326153305 +273372,1366.8600000182303,-0.06916717517756041 +273373,1366.8650000182304,-0.06916715709346652 +273374,1366.8700000182305,-0.06916713900925141 +273375,1366.8750000182306,-0.06916712092491512 +273376,1366.8800000182307,-0.06916710284045768 +273377,1366.8850000182308,-0.06916708475587917 +273378,1366.890000018231,-0.0691670666711796 +273379,1366.895000018231,-0.06916704858635901 +273380,1366.9000000182311,-0.06916703050141747 +273381,1366.9050000182312,-0.06916701241635499 +273382,1366.9100000182314,-0.06916699433117164 +273383,1366.9150000182315,-0.06916697624586743 +273384,1366.9200000182316,-0.06916695816044242 +273385,1366.9250000182317,-0.06916694007489665 +273386,1366.9300000182318,-0.06916692198923018 +273387,1366.935000018232,-0.06916690390344302 +273388,1366.940000018232,-0.06916688581753522 +273389,1366.9450000182321,-0.06916686773150683 +273390,1366.9500000182322,-0.06916684964535788 +273391,1366.9550000182323,-0.06916683155908844 +273392,1366.9600000182324,-0.06916681347269853 +273393,1366.9650000182326,-0.06916679538618818 +273394,1366.9700000182327,-0.06916677729955747 +273395,1366.9750000182328,-0.06916675921280639 +273396,1366.9800000182329,-0.06916674112593503 +273397,1366.985000018233,-0.06916672303894342 +273398,1366.990000018233,-0.06916670495183158 +273399,1366.9950000182332,-0.06916668686459958 +273400,1367.0000000182333,-0.06916666877724742 +273401,1367.0050000182334,-0.06916665068977518 +273402,1367.0100000182335,-0.0691666326021829 +273403,1367.0150000182336,-0.0691666145144706 +273404,1367.0200000182338,-0.06916659642663835 +273405,1367.0250000182339,-0.06916657833868617 +273406,1367.030000018234,-0.06916656025061411 +273407,1367.035000018234,-0.06916654216242223 +273408,1367.0400000182342,-0.06916652407411052 +273409,1367.0450000182343,-0.06916650598567906 +273410,1367.0500000182344,-0.06916648789712788 +273411,1367.0550000182345,-0.06916646980845705 +273412,1367.0600000182346,-0.06916645171966657 +273413,1367.0650000182347,-0.06916643363075652 +273414,1367.0700000182349,-0.06916641554172691 +273415,1367.075000018235,-0.0691663974525778 +273416,1367.080000018235,-0.06916637936330922 +273417,1367.0850000182352,-0.06916636127392123 +273418,1367.0900000182353,-0.06916634318441385 +273419,1367.0950000182354,-0.06916632509478714 +273420,1367.1000000182355,-0.06916630700504113 +273421,1367.1050000182356,-0.06916628891517587 +273422,1367.1100000182357,-0.06916627082519139 +273423,1367.1150000182358,-0.06916625273508775 +273424,1367.120000018236,-0.06916623464486499 +273425,1367.125000018236,-0.06916621655452314 +273426,1367.1300000182362,-0.06916619846406223 +273427,1367.1350000182363,-0.06916618037348234 +273428,1367.1400000182364,-0.06916616228278348 +273429,1367.1450000182365,-0.06916614419196569 +273430,1367.1500000182366,-0.06916612610102903 +273431,1367.1550000182367,-0.06916610800997353 +273432,1367.1600000182368,-0.06916608991879925 +273433,1367.165000018237,-0.0691660718275062 +273434,1367.170000018237,-0.06916605373609445 +273435,1367.1750000182371,-0.06916603564456403 +273436,1367.1800000182373,-0.069166017552915 +273437,1367.1850000182374,-0.06916599946114736 +273438,1367.1900000182375,-0.0691659813692612 +273439,1367.1950000182376,-0.06916596327725653 +273440,1367.2000000182377,-0.06916594518513342 +273441,1367.2050000182378,-0.06916592709289186 +273442,1367.210000018238,-0.06916590900053195 +273443,1367.215000018238,-0.0691658909080537 +273444,1367.2200000182381,-0.06916587281545716 +273445,1367.2250000182382,-0.06916585472274238 +273446,1367.2300000182383,-0.06916583662990938 +273447,1367.2350000182385,-0.06916581853695822 +273448,1367.2400000182386,-0.06916580044388893 +273449,1367.2450000182387,-0.06916578235070156 +273450,1367.2500000182388,-0.06916576425739616 +273451,1367.255000018239,-0.06916574616397277 +273452,1367.260000018239,-0.06916572807043142 +273453,1367.265000018239,-0.06916570997677216 +273454,1367.2700000182392,-0.06916569188299501 +273455,1367.2750000182393,-0.06916567378910005 +273456,1367.2800000182394,-0.06916565569508729 +273457,1367.2850000182395,-0.06916563760095679 +273458,1367.2900000182397,-0.06916561950670858 +273459,1367.2950000182398,-0.06916560141234271 +273460,1367.3000000182399,-0.06916558331785921 +273461,1367.30500001824,-0.06916556522325816 +273462,1367.31000001824,-0.06916554712853956 +273463,1367.3150000182402,-0.06916552903370346 +273464,1367.3200000182403,-0.06916551093874992 +273465,1367.3250000182404,-0.06916549284367897 +273466,1367.3300000182405,-0.06916547474849064 +273467,1367.3350000182406,-0.06916545665318499 +273468,1367.3400000182407,-0.06916543855776205 +273469,1367.3450000182409,-0.06916542046222188 +273470,1367.350000018241,-0.06916540236656449 +273471,1367.355000018241,-0.06916538427078996 +273472,1367.3600000182412,-0.06916536617489831 +273473,1367.3650000182413,-0.06916534807888958 +273474,1367.3700000182414,-0.06916532998276383 +273475,1367.3750000182415,-0.06916531188652107 +273476,1367.3800000182416,-0.06916529379016137 +273477,1367.3850000182417,-0.06916527569368476 +273478,1367.3900000182418,-0.06916525759709129 +273479,1367.395000018242,-0.06916523950038099 +273480,1367.400000018242,-0.06916522140355391 +273481,1367.4050000182422,-0.06916520330661009 +273482,1367.4100000182423,-0.06916518520954959 +273483,1367.4150000182424,-0.06916516711237243 +273484,1367.4200000182425,-0.06916514901507866 +273485,1367.4250000182426,-0.06916513091766831 +273486,1367.4300000182427,-0.06916511282014143 +273487,1367.4350000182428,-0.06916509472249807 +273488,1367.440000018243,-0.06916507662473825 +273489,1367.445000018243,-0.06916505852686203 +273490,1367.4500000182431,-0.06916504042886945 +273491,1367.4550000182433,-0.06916502233076055 +273492,1367.4600000182434,-0.06916500423253538 +273493,1367.4650000182435,-0.06916498613419397 +273494,1367.4700000182436,-0.06916496803573637 +273495,1367.4750000182437,-0.06916494993716261 +273496,1367.4800000182438,-0.06916493183847275 +273497,1367.485000018244,-0.06916491373966684 +273498,1367.490000018244,-0.06916489564074488 +273499,1367.4950000182441,-0.06916487754170693 +273500,1367.5000000182442,-0.06916485944255306 +273501,1367.5050000182443,-0.06916484134328327 +273502,1367.5100000182445,-0.06916482324389762 +273503,1367.5150000182446,-0.06916480514439619 +273504,1367.5200000182447,-0.06916478704477896 +273505,1367.5250000182448,-0.069164768945046 +273506,1367.530000018245,-0.06916475084519737 +273507,1367.535000018245,-0.06916473274523306 +273508,1367.540000018245,-0.06916471464515317 +273509,1367.5450000182452,-0.0691646965449577 +273510,1367.5500000182453,-0.06916467844464673 +273511,1367.5550000182454,-0.06916466034422027 +273512,1367.5600000182455,-0.06916464224367837 +273513,1367.5650000182457,-0.06916462414302108 +273514,1367.5700000182458,-0.06916460604224843 +273515,1367.5750000182459,-0.06916458794136046 +273516,1367.580000018246,-0.06916456984035725 +273517,1367.585000018246,-0.06916455173923879 +273518,1367.5900000182462,-0.06916453363800515 +273519,1367.5950000182463,-0.06916451553665637 +273520,1367.6000000182464,-0.06916449743519248 +273521,1367.6050000182465,-0.06916447933361354 +273522,1367.6100000182466,-0.06916446123191959 +273523,1367.6150000182467,-0.06916444313011065 +273524,1367.6200000182469,-0.06916442502818679 +273525,1367.625000018247,-0.06916440692614803 +273526,1367.630000018247,-0.06916438882399444 +273527,1367.6350000182472,-0.06916437072172602 +273528,1367.6400000182473,-0.06916435261934284 +273529,1367.6450000182474,-0.06916433451684494 +273530,1367.6500000182475,-0.06916431641423235 +273531,1367.6550000182476,-0.06916429831150513 +273532,1367.6600000182477,-0.0691642802086633 +273533,1367.6650000182478,-0.06916426210570692 +273534,1367.670000018248,-0.06916424400263604 +273535,1367.675000018248,-0.06916422589945069 +273536,1367.6800000182482,-0.0691642077961509 +273537,1367.6850000182483,-0.06916418969273674 +273538,1367.6900000182484,-0.06916417158920822 +273539,1367.6950000182485,-0.06916415348556541 +273540,1367.7000000182486,-0.06916413538180834 +273541,1367.7050000182487,-0.06916411727793705 +273542,1367.7100000182488,-0.06916409917395157 +273543,1367.715000018249,-0.06916408106985197 +273544,1367.720000018249,-0.06916406296563828 +273545,1367.7250000182491,-0.06916404486131054 +273546,1367.7300000182493,-0.0691640267568688 +273547,1367.7350000182494,-0.06916400865231308 +273548,1367.7400000182495,-0.06916399054764344 +273549,1367.7450000182496,-0.06916397244285992 +273550,1367.7500000182497,-0.06916395433796255 +273551,1367.7550000182498,-0.0691639362329514 +273552,1367.76000001825,-0.06916391812782649 +273553,1367.76500001825,-0.06916390002258786 +273554,1367.7700000182501,-0.06916388191723558 +273555,1367.7750000182502,-0.06916386381176964 +273556,1367.7800000182503,-0.06916384570619014 +273557,1367.7850000182505,-0.06916382760049708 +273558,1367.7900000182506,-0.06916380949469052 +273559,1367.7950000182507,-0.06916379138877049 +273560,1367.8000000182508,-0.06916377328273705 +273561,1367.805000018251,-0.06916375517659025 +273562,1367.810000018251,-0.06916373707033009 +273563,1367.815000018251,-0.06916371896395664 +273564,1367.8200000182512,-0.06916370085746995 +273565,1367.8250000182513,-0.06916368275087005 +273566,1367.8300000182514,-0.06916366464415698 +273567,1367.8350000182515,-0.06916364653733079 +273568,1367.8400000182517,-0.06916362843039153 +273569,1367.8450000182518,-0.06916361032333922 +273570,1367.8500000182519,-0.06916359221617391 +273571,1367.855000018252,-0.06916357410889565 +273572,1367.860000018252,-0.06916355600150448 +273573,1367.8650000182522,-0.06916353789400043 +273574,1367.8700000182523,-0.06916351978638355 +273575,1367.8750000182524,-0.06916350167865389 +273576,1367.8800000182525,-0.06916348357081148 +273577,1367.8850000182526,-0.06916346546285637 +273578,1367.8900000182527,-0.0691634473547886 +273579,1367.8950000182529,-0.06916342924660822 +273580,1367.900000018253,-0.06916341113831526 +273581,1367.905000018253,-0.06916339302990976 +273582,1367.9100000182532,-0.06916337492139177 +273583,1367.9150000182533,-0.06916335681276133 +273584,1367.9200000182534,-0.06916333870401847 +273585,1367.9250000182535,-0.06916332059516325 +273586,1367.9300000182536,-0.06916330248619572 +273587,1367.9350000182537,-0.0691632843771159 +273588,1367.9400000182538,-0.06916326626792385 +273589,1367.945000018254,-0.0691632481586196 +273590,1367.950000018254,-0.06916323004920319 +273591,1367.9550000182542,-0.06916321193967467 +273592,1367.9600000182543,-0.06916319383003408 +273593,1367.9650000182544,-0.06916317572028145 +273594,1367.9700000182545,-0.06916315761041684 +273595,1367.9750000182546,-0.0691631395004403 +273596,1367.9800000182547,-0.06916312139035184 +273597,1367.9850000182548,-0.06916310328015153 +273598,1367.990000018255,-0.0691630851698394 +273599,1367.995000018255,-0.0691630670594155 +273600,1368.0000000182552,-0.06916304894887987 +273601,1368.0050000182553,-0.06916303083823253 +273602,1368.0100000182554,-0.06916301272747356 +273603,1368.0150000182555,-0.06916299461660297 +273604,1368.0200000182556,-0.06916297650562082 +273605,1368.0250000182557,-0.06916295839452716 +273606,1368.0300000182558,-0.069162940283322 +273607,1368.035000018256,-0.06916292217200541 +273608,1368.040000018256,-0.06916290406057743 +273609,1368.0450000182561,-0.0691628859490381 +273610,1368.0500000182562,-0.06916286783738745 +273611,1368.0550000182564,-0.06916284972562553 +273612,1368.0600000182565,-0.06916283161375239 +273613,1368.0650000182566,-0.06916281350176806 +273614,1368.0700000182567,-0.06916279538967259 +273615,1368.0750000182568,-0.069162777277466 +273616,1368.080000018257,-0.06916275916514837 +273617,1368.085000018257,-0.06916274105271973 +273618,1368.0900000182571,-0.06916272294018011 +273619,1368.0950000182572,-0.06916270482752955 +273620,1368.1000000182573,-0.06916268671476812 +273621,1368.1050000182574,-0.06916266860189582 +273622,1368.1100000182576,-0.06916265048891272 +273623,1368.1150000182577,-0.06916263237581886 +273624,1368.1200000182578,-0.06916261426261429 +273625,1368.1250000182579,-0.06916259614929902 +273626,1368.130000018258,-0.06916257803587313 +273627,1368.135000018258,-0.06916255992233664 +273628,1368.1400000182582,-0.0691625418086896 +273629,1368.1450000182583,-0.06916252369493205 +273630,1368.1500000182584,-0.06916250558106404 +273631,1368.1550000182585,-0.0691624874670856 +273632,1368.1600000182586,-0.06916246935299676 +273633,1368.1650000182588,-0.0691624512387976 +273634,1368.1700000182589,-0.06916243312448814 +273635,1368.175000018259,-0.06916241501006841 +273636,1368.180000018259,-0.06916239689553848 +273637,1368.1850000182592,-0.06916237878089838 +273638,1368.1900000182593,-0.06916236066614814 +273639,1368.1950000182594,-0.06916234255128782 +273640,1368.2000000182595,-0.06916232443631745 +273641,1368.2050000182596,-0.06916230632123709 +273642,1368.2100000182597,-0.06916228820604675 +273643,1368.2150000182598,-0.0691622700907465 +273644,1368.22000001826,-0.06916225197533638 +273645,1368.22500001826,-0.06916223385981642 +273646,1368.2300000182602,-0.06916221574418666 +273647,1368.2350000182603,-0.06916219762844715 +273648,1368.2400000182604,-0.06916217951259793 +273649,1368.2450000182605,-0.06916216139663907 +273650,1368.2500000182606,-0.06916214328057056 +273651,1368.2550000182607,-0.06916212516439248 +273652,1368.2600000182608,-0.06916210704810485 +273653,1368.265000018261,-0.06916208893170775 +273654,1368.270000018261,-0.06916207081520118 +273655,1368.2750000182612,-0.0691620526985852 +273656,1368.2800000182613,-0.06916203458185986 +273657,1368.2850000182614,-0.06916201646502518 +273658,1368.2900000182615,-0.06916199834808122 +273659,1368.2950000182616,-0.06916198023102801 +273660,1368.3000000182617,-0.06916196211386562 +273661,1368.3050000182618,-0.06916194399659405 +273662,1368.310000018262,-0.06916192587921337 +273663,1368.315000018262,-0.06916190776172362 +273664,1368.3200000182621,-0.06916188964412484 +273665,1368.3250000182622,-0.06916187152641708 +273666,1368.3300000182624,-0.06916185340860036 +273667,1368.3350000182625,-0.06916183529067473 +273668,1368.3400000182626,-0.06916181717264025 +273669,1368.3450000182627,-0.06916179905449696 +273670,1368.3500000182628,-0.06916178093624487 +273671,1368.355000018263,-0.06916176281788405 +273672,1368.360000018263,-0.06916174469941454 +273673,1368.3650000182631,-0.06916172658083639 +273674,1368.3700000182632,-0.06916170846214963 +273675,1368.3750000182633,-0.06916169034335429 +273676,1368.3800000182634,-0.06916167222445042 +273677,1368.3850000182636,-0.06916165410543809 +273678,1368.3900000182637,-0.0691616359863173 +273679,1368.3950000182638,-0.06916161786708815 +273680,1368.4000000182639,-0.06916159974775062 +273681,1368.405000018264,-0.06916158162830477 +273682,1368.410000018264,-0.06916156350875066 +273683,1368.4150000182642,-0.06916154538908832 +273684,1368.4200000182643,-0.06916152726931779 +273685,1368.4250000182644,-0.06916150914943911 +273686,1368.4300000182645,-0.06916149102945235 +273687,1368.4350000182646,-0.06916147290935754 +273688,1368.4400000182648,-0.0691614547891547 +273689,1368.4450000182649,-0.06916143666884388 +273690,1368.450000018265,-0.06916141854842511 +273691,1368.455000018265,-0.06916140042789849 +273692,1368.4600000182652,-0.069161382307264 +273693,1368.4650000182653,-0.06916136418652169 +273694,1368.4700000182654,-0.06916134606567163 +273695,1368.4750000182655,-0.06916132794471386 +273696,1368.4800000182656,-0.06916130982364842 +273697,1368.4850000182657,-0.06916129170247533 +273698,1368.4900000182658,-0.06916127358119466 +273699,1368.495000018266,-0.06916125545980643 +273700,1368.500000018266,-0.06916123733831069 +273701,1368.5050000182662,-0.06916121921670748 +273702,1368.5100000182663,-0.06916120109499686 +273703,1368.5150000182664,-0.06916118297317884 +273704,1368.5200000182665,-0.0691611648512535 +273705,1368.5250000182666,-0.06916114672922084 +273706,1368.5300000182667,-0.06916112860708094 +273707,1368.5350000182668,-0.06916111048483382 +273708,1368.540000018267,-0.06916109236247955 +273709,1368.545000018267,-0.06916107424001813 +273710,1368.5500000182672,-0.06916105611744965 +273711,1368.5550000182673,-0.0691610379947741 +273712,1368.5600000182674,-0.06916101987199157 +273713,1368.5650000182675,-0.06916100174910207 +273714,1368.5700000182676,-0.06916098362610566 +273715,1368.5750000182677,-0.06916096550300238 +273716,1368.5800000182678,-0.06916094737979227 +273717,1368.585000018268,-0.06916092925647535 +273718,1368.590000018268,-0.06916091113305171 +273719,1368.5950000182681,-0.06916089300952136 +273720,1368.6000000182682,-0.06916087488588434 +273721,1368.6050000182684,-0.06916085676214072 +273722,1368.6100000182685,-0.0691608386382905 +273723,1368.6150000182686,-0.06916082051433375 +273724,1368.6200000182687,-0.06916080239027052 +273725,1368.6250000182688,-0.06916078426610084 +273726,1368.630000018269,-0.06916076614182474 +273727,1368.635000018269,-0.06916074801744228 +273728,1368.6400000182691,-0.06916072989295348 +273729,1368.6450000182692,-0.06916071176835843 +273730,1368.6500000182693,-0.06916069364365712 +273731,1368.6550000182694,-0.06916067551884963 +273732,1368.6600000182696,-0.06916065739393598 +273733,1368.6650000182697,-0.06916063926891622 +273734,1368.6700000182698,-0.06916062114379039 +273735,1368.6750000182699,-0.06916060301855853 +273736,1368.68000001827,-0.0691605848932207 +273737,1368.68500001827,-0.06916056676777693 +273738,1368.6900000182702,-0.06916054864222726 +273739,1368.6950000182703,-0.06916053051657173 +273740,1368.7000000182704,-0.06916051239081038 +273741,1368.7050000182705,-0.06916049426494326 +273742,1368.7100000182706,-0.06916047613897043 +273743,1368.7150000182708,-0.06916045801289188 +273744,1368.7200000182709,-0.0691604398867077 +273745,1368.725000018271,-0.06916042176041791 +273746,1368.730000018271,-0.06916040363402257 +273747,1368.7350000182712,-0.0691603855075217 +273748,1368.7400000182713,-0.06916036738091536 +273749,1368.7450000182714,-0.0691603492542036 +273750,1368.7500000182715,-0.06916033112738644 +273751,1368.7550000182716,-0.06916031300046395 +273752,1368.7600000182717,-0.06916029487343613 +273753,1368.7650000182718,-0.06916027674630305 +273754,1368.770000018272,-0.06916025861906476 +273755,1368.775000018272,-0.0691602404917213 +273756,1368.7800000182722,-0.0691602223642727 +273757,1368.7850000182723,-0.069160204236719 +273758,1368.7900000182724,-0.06916018610906025 +273759,1368.7950000182725,-0.0691601679812965 +273760,1368.8000000182726,-0.06916014985342776 +273761,1368.8050000182727,-0.06916013172545413 +273762,1368.8100000182728,-0.0691601135973756 +273763,1368.815000018273,-0.06916009546919223 +273764,1368.820000018273,-0.06916007734090407 +273765,1368.8250000182732,-0.06916005921251116 +273766,1368.8300000182733,-0.06916004108401352 +273767,1368.8350000182734,-0.06916002295541124 +273768,1368.8400000182735,-0.06916000482670431 +273769,1368.8450000182736,-0.0691599866978928 +273770,1368.8500000182737,-0.06915996856897677 +273771,1368.8550000182738,-0.06915995043995622 +273772,1368.860000018274,-0.06915993231083123 +273773,1368.865000018274,-0.0691599141816018 +273774,1368.8700000182741,-0.06915989605226802 +273775,1368.8750000182742,-0.0691598779228299 +273776,1368.8800000182744,-0.0691598597932875 +273777,1368.8850000182745,-0.06915984166364085 +273778,1368.8900000182746,-0.06915982353389 +273779,1368.8950000182747,-0.06915980540403499 +273780,1368.9000000182748,-0.06915978727407586 +273781,1368.905000018275,-0.06915976914401266 +273782,1368.910000018275,-0.06915975101384543 +273783,1368.9150000182751,-0.06915973288357422 +273784,1368.9200000182752,-0.06915971475319904 +273785,1368.9250000182753,-0.06915969662271997 +273786,1368.9300000182755,-0.06915967849213703 +273787,1368.9350000182756,-0.06915966036145028 +273788,1368.9400000182757,-0.06915964223065975 +273789,1368.9450000182758,-0.06915962409976548 +273790,1368.950000018276,-0.06915960596876752 +273791,1368.955000018276,-0.06915958783766592 +273792,1368.960000018276,-0.06915956970646069 +273793,1368.9650000182762,-0.06915955157515191 +273794,1368.9700000182763,-0.06915953344373961 +273795,1368.9750000182764,-0.06915951531222382 +273796,1368.9800000182765,-0.06915949718060459 +273797,1368.9850000182767,-0.06915947904888198 +273798,1368.9900000182768,-0.069159460917056 +273799,1368.9950000182769,-0.06915944278512673 +273800,1369.000000018277,-0.06915942465309417 +273801,1369.005000018277,-0.0691594065209584 +273802,1369.0100000182772,-0.06915938838871945 +273803,1369.0150000182773,-0.06915937025637736 +273804,1369.0200000182774,-0.06915935212393216 +273805,1369.0250000182775,-0.06915933399138392 +273806,1369.0300000182776,-0.06915931585873265 +273807,1369.0350000182777,-0.06915929772597842 +273808,1369.0400000182779,-0.06915927959312125 +273809,1369.045000018278,-0.06915926146016121 +273810,1369.050000018278,-0.06915924332709834 +273811,1369.0550000182782,-0.06915922519393265 +273812,1369.0600000182783,-0.06915920706066421 +273813,1369.0650000182784,-0.06915918892729306 +273814,1369.0700000182785,-0.06915917079381922 +273815,1369.0750000182786,-0.06915915266024276 +273816,1369.0800000182787,-0.06915913452656372 +273817,1369.0850000182788,-0.06915911639278212 +273818,1369.090000018279,-0.06915909825889803 +273819,1369.095000018279,-0.06915908012491147 +273820,1369.1000000182792,-0.0691590619908225 +273821,1369.1050000182793,-0.06915904385663114 +273822,1369.1100000182794,-0.06915902572233747 +273823,1369.1150000182795,-0.0691590075879415 +273824,1369.1200000182796,-0.06915898945344327 +273825,1369.1250000182797,-0.06915897131884284 +273826,1369.1300000182798,-0.06915895318414025 +273827,1369.13500001828,-0.06915893504933555 +273828,1369.14000001828,-0.06915891691442877 +273829,1369.1450000182801,-0.06915889877941996 +273830,1369.1500000182803,-0.06915888064430915 +273831,1369.1550000182804,-0.06915886250909639 +273832,1369.1600000182805,-0.06915884437378174 +273833,1369.1650000182806,-0.06915882623836521 +273834,1369.1700000182807,-0.06915880810284686 +273835,1369.1750000182808,-0.06915878996722673 +273836,1369.180000018281,-0.06915877183150486 +273837,1369.185000018281,-0.06915875369568128 +273838,1369.1900000182811,-0.06915873555975607 +273839,1369.1950000182812,-0.06915871742372924 +273840,1369.2000000182813,-0.06915869928760085 +273841,1369.2050000182815,-0.06915868115137094 +273842,1369.2100000182816,-0.06915866301503955 +273843,1369.2150000182817,-0.06915864487860672 +273844,1369.2200000182818,-0.06915862674207249 +273845,1369.225000018282,-0.06915860860543689 +273846,1369.230000018282,-0.0691585904687 +273847,1369.235000018282,-0.06915857233186183 +273848,1369.2400000182822,-0.06915855419492245 +273849,1369.2450000182823,-0.06915853605788187 +273850,1369.2500000182824,-0.06915851792074015 +273851,1369.2550000182825,-0.06915849978349733 +273852,1369.2600000182827,-0.06915848164615346 +273853,1369.2650000182828,-0.06915846350870858 +273854,1369.2700000182829,-0.06915844537116272 +273855,1369.275000018283,-0.06915842723351594 +273856,1369.280000018283,-0.06915840909576826 +273857,1369.2850000182832,-0.06915839095791976 +273858,1369.2900000182833,-0.06915837281997043 +273859,1369.2950000182834,-0.06915835468192037 +273860,1369.3000000182835,-0.06915833654376959 +273861,1369.3050000182836,-0.06915831840551812 +273862,1369.3100000182837,-0.06915830026716603 +273863,1369.3150000182839,-0.06915828212871336 +273864,1369.320000018284,-0.06915826399016013 +273865,1369.325000018284,-0.06915824585150641 +273866,1369.3300000182842,-0.06915822771275222 +273867,1369.3350000182843,-0.06915820957389762 +273868,1369.3400000182844,-0.06915819143494266 +273869,1369.3450000182845,-0.06915817329588735 +273870,1369.3500000182846,-0.06915815515673174 +273871,1369.3550000182847,-0.06915813701747589 +273872,1369.3600000182848,-0.06915811887811985 +273873,1369.365000018285,-0.06915810073866363 +273874,1369.370000018285,-0.0691580825991073 +273875,1369.3750000182852,-0.0691580644594509 +273876,1369.3800000182853,-0.06915804631969447 +273877,1369.3850000182854,-0.06915802817983803 +273878,1369.3900000182855,-0.06915801003988165 +273879,1369.3950000182856,-0.06915799189982537 +273880,1369.4000000182857,-0.0691579737596692 +273881,1369.4050000182858,-0.06915795561941324 +273882,1369.410000018286,-0.06915793747905748 +273883,1369.415000018286,-0.069157919338602 +273884,1369.4200000182861,-0.06915790119804682 +273885,1369.4250000182863,-0.06915788305739198 +273886,1369.4300000182864,-0.06915786491663756 +273887,1369.4350000182865,-0.06915784677578356 +273888,1369.4400000182866,-0.06915782863483003 +273889,1369.4450000182867,-0.06915781049377702 +273890,1369.4500000182868,-0.06915779235262458 +273891,1369.455000018287,-0.06915777421137276 +273892,1369.460000018287,-0.06915775607002156 +273893,1369.4650000182871,-0.06915773792857106 +273894,1369.4700000182872,-0.0691577197870213 +273895,1369.4750000182873,-0.06915770164537231 +273896,1369.4800000182875,-0.06915768350362414 +273897,1369.4850000182876,-0.06915766536177684 +273898,1369.4900000182877,-0.06915764721983043 +273899,1369.4950000182878,-0.06915762907778497 +273900,1369.500000018288,-0.0691576109356405 +273901,1369.505000018288,-0.06915759279339707 +273902,1369.510000018288,-0.06915757465105472 +273903,1369.5150000182882,-0.06915755650861347 +273904,1369.5200000182883,-0.06915753836607338 +273905,1369.5250000182884,-0.06915752022343451 +273906,1369.5300000182885,-0.06915750208069686 +273907,1369.5350000182887,-0.0691574839378605 +273908,1369.5400000182888,-0.06915746579492549 +273909,1369.5450000182889,-0.06915744765189184 +273910,1369.550000018289,-0.06915742950875961 +273911,1369.555000018289,-0.06915741136552883 +273912,1369.5600000182892,-0.06915739322219956 +273913,1369.5650000182893,-0.06915737507877184 +273914,1369.5700000182894,-0.06915735693524569 +273915,1369.5750000182895,-0.06915733879162117 +273916,1369.5800000182896,-0.06915732064789833 +273917,1369.5850000182897,-0.06915730250407721 +273918,1369.5900000182899,-0.06915728436015783 +273919,1369.59500001829,-0.06915726621614025 +273920,1369.60000001829,-0.06915724807202453 +273921,1369.6050000182902,-0.06915722992781069 +273922,1369.6100000182903,-0.06915721178349876 +273923,1369.6150000182904,-0.06915719363908882 +273924,1369.6200000182905,-0.06915717549458089 +273925,1369.6250000182906,-0.069157157349975 +273926,1369.6300000182907,-0.06915713920527124 +273927,1369.6350000182908,-0.06915712106046959 +273928,1369.640000018291,-0.06915710291557013 +273929,1369.645000018291,-0.0691570847705729 +273930,1369.6500000182912,-0.06915706662547795 +273931,1369.6550000182913,-0.06915704848028531 +273932,1369.6600000182914,-0.06915703033499501 +273933,1369.6650000182915,-0.06915701218960711 +273934,1369.6700000182916,-0.06915699404412166 +273935,1369.6750000182917,-0.0691569758985387 +273936,1369.6800000182918,-0.06915695775285825 +273937,1369.685000018292,-0.06915693960708036 +273938,1369.690000018292,-0.06915692146120508 +273939,1369.6950000182921,-0.06915690331523247 +273940,1369.7000000182923,-0.06915688516916255 +273941,1369.7050000182924,-0.06915686702299537 +273942,1369.7100000182925,-0.06915684887673097 +273943,1369.7150000182926,-0.0691568307303694 +273944,1369.7200000182927,-0.0691568125839107 +273945,1369.7250000182928,-0.0691567944373549 +273946,1369.730000018293,-0.06915677629070205 +273947,1369.735000018293,-0.0691567581439522 +273948,1369.7400000182931,-0.06915673999710538 +273949,1369.7450000182932,-0.06915672185016164 +273950,1369.7500000182933,-0.06915670370312103 +273951,1369.7550000182935,-0.0691566855559836 +273952,1369.7600000182936,-0.06915666740874937 +273953,1369.7650000182937,-0.06915664926141839 +273954,1369.7700000182938,-0.06915663111399069 +273955,1369.775000018294,-0.06915661296646633 +273956,1369.780000018294,-0.06915659481884535 +273957,1369.785000018294,-0.06915657667112779 +273958,1369.7900000182942,-0.0691565585233137 +273959,1369.7950000182943,-0.06915654037540313 +273960,1369.8000000182944,-0.0691565222273961 +273961,1369.8050000182945,-0.06915650407929266 +273962,1369.8100000182947,-0.06915648593109286 +273963,1369.8150000182948,-0.06915646778279674 +273964,1369.8200000182949,-0.06915644963440434 +273965,1369.825000018295,-0.0691564314859157 +273966,1369.830000018295,-0.06915641333733087 +273967,1369.8350000182952,-0.0691563951886499 +273968,1369.8400000182953,-0.0691563770398728 +273969,1369.8450000182954,-0.06915635889099965 +273970,1369.8500000182955,-0.06915634074203048 +273971,1369.8550000182956,-0.06915632259296532 +273972,1369.8600000182958,-0.06915630444380425 +273973,1369.8650000182959,-0.06915628629454727 +273974,1369.870000018296,-0.06915626814519445 +273975,1369.875000018296,-0.06915624999574581 +273976,1369.8800000182962,-0.06915623184620141 +273977,1369.8850000182963,-0.06915621369656129 +273978,1369.8900000182964,-0.06915619554682548 +273979,1369.8950000182965,-0.06915617739699402 +273980,1369.9000000182966,-0.06915615924706699 +273981,1369.9050000182967,-0.06915614109704439 +273982,1369.9100000182968,-0.06915612294692627 +273983,1369.915000018297,-0.0691561047967127 +273984,1369.920000018297,-0.06915608664640373 +273985,1369.9250000182972,-0.06915606849599935 +273986,1369.9300000182973,-0.06915605034549964 +273987,1369.9350000182974,-0.06915603219490463 +273988,1369.9400000182975,-0.06915601404421437 +273989,1369.9450000182976,-0.06915599589342891 +273990,1369.9500000182977,-0.06915597774254828 +273991,1369.9550000182978,-0.06915595959157252 +273992,1369.960000018298,-0.06915594144050168 +273993,1369.965000018298,-0.0691559232893358 +273994,1369.9700000182982,-0.06915590513807493 +273995,1369.9750000182983,-0.0691558869867191 +273996,1369.9800000182984,-0.06915586883526836 +273997,1369.9850000182985,-0.06915585068372276 +273998,1369.9900000182986,-0.06915583253208234 +273999,1369.9950000182987,-0.06915581438034712 +274000,1370.0000000182988,-0.06915579622851718 +274001,1370.005000018299,-0.06915577807659253 +274002,1370.010000018299,-0.06915575992457323 +274003,1370.0150000182991,-0.06915574177245933 +274004,1370.0200000182992,-0.06915572362025084 +274005,1370.0250000182994,-0.06915570546794785 +274006,1370.0300000182995,-0.06915568731555036 +274007,1370.0350000182996,-0.06915566916305843 +274008,1370.0400000182997,-0.06915565101047211 +274009,1370.0450000182998,-0.06915563285779143 +274010,1370.0500000183,-0.06915561470501645 +274011,1370.0550000183,-0.06915559655214719 +274012,1370.0600000183001,-0.06915557839918371 +274013,1370.0650000183002,-0.06915556024612605 +274014,1370.0700000183003,-0.06915554209297425 +274015,1370.0750000183004,-0.06915552393972836 +274016,1370.0800000183006,-0.0691555057863884 +274017,1370.0850000183007,-0.06915548763295445 +274018,1370.0900000183008,-0.06915546947942651 +274019,1370.0950000183009,-0.06915545132580467 +274020,1370.100000018301,-0.06915543317208891 +274021,1370.105000018301,-0.06915541501827935 +274022,1370.1100000183012,-0.06915539686437595 +274023,1370.1150000183013,-0.06915537871037883 +274024,1370.1200000183014,-0.06915536055628799 +274025,1370.1250000183015,-0.06915534240210347 +274026,1370.1300000183016,-0.06915532424782533 +274027,1370.1350000183018,-0.06915530609345362 +274028,1370.1400000183019,-0.06915528793898836 +274029,1370.145000018302,-0.0691552697844296 +274030,1370.150000018302,-0.06915525162977738 +274031,1370.1550000183022,-0.06915523347503176 +274032,1370.1600000183023,-0.06915521532019277 +274033,1370.1650000183024,-0.06915519716526045 +274034,1370.1700000183025,-0.06915517901023485 +274035,1370.1750000183026,-0.06915516085511601 +274036,1370.1800000183027,-0.06915514269990397 +274037,1370.1850000183028,-0.06915512454459878 +274038,1370.190000018303,-0.06915510638920047 +274039,1370.195000018303,-0.0691550882337091 +274040,1370.2000000183032,-0.0691550700781247 +274041,1370.2050000183033,-0.06915505192244731 +274042,1370.2100000183034,-0.06915503376667699 +274043,1370.2150000183035,-0.06915501561081377 +274044,1370.2200000183036,-0.0691549974548577 +274045,1370.2250000183037,-0.06915497929880883 +274046,1370.2300000183038,-0.06915496114266717 +274047,1370.235000018304,-0.06915494298643281 +274048,1370.240000018304,-0.06915492483010573 +274049,1370.2450000183042,-0.06915490667368603 +274050,1370.2500000183043,-0.06915488851717373 +274051,1370.2550000183044,-0.06915487036056887 +274052,1370.2600000183045,-0.06915485220387152 +274053,1370.2650000183046,-0.06915483404708168 +274054,1370.2700000183047,-0.06915481589019942 +274055,1370.2750000183048,-0.06915479773322478 +274056,1370.280000018305,-0.06915477957615777 +274057,1370.285000018305,-0.0691547614189985 +274058,1370.2900000183051,-0.06915474326174696 +274059,1370.2950000183052,-0.06915472510440321 +274060,1370.3000000183054,-0.06915470694696729 +274061,1370.3050000183055,-0.06915468878943926 +274062,1370.3100000183056,-0.06915467063181911 +274063,1370.3150000183057,-0.06915465247410696 +274064,1370.3200000183058,-0.0691546343163028 +274065,1370.325000018306,-0.06915461615840666 +274066,1370.330000018306,-0.06915459800041865 +274067,1370.3350000183061,-0.06915457984233875 +274068,1370.3400000183062,-0.06915456168416702 +274069,1370.3450000183063,-0.06915454352590353 +274070,1370.3500000183064,-0.06915452536754828 +274071,1370.3550000183066,-0.06915450720910132 +274072,1370.3600000183067,-0.06915448905056273 +274073,1370.3650000183068,-0.06915447089193252 +274074,1370.3700000183069,-0.06915445273321075 +274075,1370.375000018307,-0.06915443457439745 +274076,1370.380000018307,-0.06915441641549266 +274077,1370.3850000183072,-0.06915439825649644 +274078,1370.3900000183073,-0.06915438009740882 +274079,1370.3950000183074,-0.06915436193822985 +274080,1370.4000000183075,-0.06915434377895957 +274081,1370.4050000183076,-0.06915432561959803 +274082,1370.4100000183078,-0.06915430746014525 +274083,1370.4150000183079,-0.06915428930060129 +274084,1370.420000018308,-0.0691542711409662 +274085,1370.425000018308,-0.06915425298124 +274086,1370.4300000183082,-0.06915423482142276 +274087,1370.4350000183083,-0.06915421666151451 +274088,1370.4400000183084,-0.06915419850151529 +274089,1370.4450000183085,-0.06915418034142513 +274090,1370.4500000183086,-0.06915416218124411 +274091,1370.4550000183087,-0.06915414402097224 +274092,1370.4600000183088,-0.06915412586060958 +274093,1370.465000018309,-0.06915410770015616 +274094,1370.470000018309,-0.06915408953961204 +274095,1370.4750000183092,-0.06915407137897724 +274096,1370.4800000183093,-0.06915405321825181 +274097,1370.4850000183094,-0.06915403505743582 +274098,1370.4900000183095,-0.06915401689652928 +274099,1370.4950000183096,-0.06915399873553225 +274100,1370.5000000183097,-0.06915398057444477 +274101,1370.5050000183098,-0.06915396241326688 +274102,1370.51000001831,-0.06915394425199863 +274103,1370.51500001831,-0.06915392609064004 +274104,1370.5200000183102,-0.06915390792919118 +274105,1370.5250000183103,-0.06915388976765208 +274106,1370.5300000183104,-0.0691538716060228 +274107,1370.5350000183105,-0.06915385344430336 +274108,1370.5400000183106,-0.0691538352824938 +274109,1370.5450000183107,-0.06915381712059418 +274110,1370.5500000183108,-0.06915379895860455 +274111,1370.555000018311,-0.06915378079652491 +274112,1370.560000018311,-0.06915376263435537 +274113,1370.5650000183111,-0.06915374447209591 +274114,1370.5700000183112,-0.0691537263097466 +274115,1370.5750000183114,-0.0691537081473075 +274116,1370.5800000183115,-0.06915368998477862 +274117,1370.5850000183116,-0.06915367182216002 +274118,1370.5900000183117,-0.06915365365945175 +274119,1370.5950000183118,-0.06915363549665383 +274120,1370.600000018312,-0.06915361733376633 +274121,1370.605000018312,-0.06915359917078928 +274122,1370.6100000183121,-0.06915358100772272 +274123,1370.6150000183122,-0.0691535628445667 +274124,1370.6200000183123,-0.06915354468132125 +274125,1370.6250000183124,-0.06915352651798642 +274126,1370.6300000183126,-0.06915350835456227 +274127,1370.6350000183127,-0.0691534901910488 +274128,1370.6400000183128,-0.0691534720274461 +274129,1370.6450000183129,-0.0691534538637542 +274130,1370.650000018313,-0.06915343569997312 +274131,1370.655000018313,-0.06915341753610292 +274132,1370.6600000183132,-0.06915339937214365 +274133,1370.6650000183133,-0.06915338120809536 +274134,1370.6700000183134,-0.06915336304395805 +274135,1370.6750000183135,-0.0691533448797318 +274136,1370.6800000183136,-0.06915332671541666 +274137,1370.6850000183138,-0.06915330855101265 +274138,1370.6900000183139,-0.06915329038651981 +274139,1370.695000018314,-0.0691532722219382 +274140,1370.700000018314,-0.06915325405726787 +274141,1370.7050000183142,-0.06915323589250885 +274142,1370.7100000183143,-0.06915321772766117 +274143,1370.7150000183144,-0.06915319956272489 +274144,1370.7200000183145,-0.06915318139770005 +274145,1370.7250000183146,-0.06915316323258669 +274146,1370.7300000183147,-0.06915314506738486 +274147,1370.7350000183148,-0.06915312690209459 +274148,1370.740000018315,-0.06915310873671593 +274149,1370.745000018315,-0.06915309057124892 +274150,1370.7500000183152,-0.06915307240569363 +274151,1370.7550000183153,-0.06915305424005005 +274152,1370.7600000183154,-0.06915303607431826 +274153,1370.7650000183155,-0.0691530179084983 +274154,1370.7700000183156,-0.06915299974259022 +274155,1370.7750000183157,-0.06915298157659402 +274156,1370.7800000183158,-0.06915296341050982 +274157,1370.785000018316,-0.06915294524433759 +274158,1370.790000018316,-0.0691529270780774 +274159,1370.7950000183162,-0.0691529089117293 +274160,1370.8000000183163,-0.06915289074529332 +274161,1370.8050000183164,-0.06915287257876952 +274162,1370.8100000183165,-0.06915285441215792 +274163,1370.8150000183166,-0.0691528362454586 +274164,1370.8200000183167,-0.06915281807867155 +274165,1370.8250000183168,-0.06915279991179685 +274166,1370.830000018317,-0.06915278174483454 +274167,1370.835000018317,-0.06915276357778466 +274168,1370.8400000183171,-0.06915274541064724 +274169,1370.8450000183173,-0.06915272724342235 +274170,1370.8500000183174,-0.06915270907611001 +274171,1370.8550000183175,-0.06915269090871028 +274172,1370.8600000183176,-0.06915267274122318 +274173,1370.8650000183177,-0.06915265457364876 +274174,1370.8700000183178,-0.06915263640598708 +274175,1370.875000018318,-0.06915261823823818 +274176,1370.880000018318,-0.0691526000704021 +274177,1370.8850000183181,-0.06915258190247886 +274178,1370.8900000183182,-0.06915256373446853 +274179,1370.8950000183183,-0.06915254556637114 +274180,1370.9000000183185,-0.06915252739818675 +274181,1370.9050000183186,-0.06915250922991538 +274182,1370.9100000183187,-0.06915249106155709 +274183,1370.9150000183188,-0.06915247289311191 +274184,1370.920000018319,-0.06915245472457988 +274185,1370.925000018319,-0.06915243655596108 +274186,1370.930000018319,-0.06915241838725551 +274187,1370.9350000183192,-0.06915240021846324 +274188,1370.9400000183193,-0.06915238204958428 +274189,1370.9450000183194,-0.06915236388061871 +274190,1370.9500000183195,-0.06915234571156656 +274191,1370.9550000183197,-0.06915232754242785 +274192,1370.9600000183198,-0.06915230937320267 +274193,1370.9650000183199,-0.06915229120389102 +274194,1370.97000001832,-0.06915227303449298 +274195,1370.97500001832,-0.06915225486500856 +274196,1370.9800000183202,-0.06915223669543782 +274197,1370.9850000183203,-0.0691522185257808 +274198,1370.9900000183204,-0.06915220035603754 +274199,1370.9950000183205,-0.0691521821862081 +274200,1371.0000000183206,-0.06915216401629248 +274201,1371.0050000183207,-0.06915214584629079 +274202,1371.0100000183209,-0.069152127676203 +274203,1371.015000018321,-0.06915210950602922 +274204,1371.020000018321,-0.06915209133576944 +274205,1371.0250000183212,-0.06915207316542372 +274206,1371.0300000183213,-0.06915205499499213 +274207,1371.0350000183214,-0.06915203682447468 +274208,1371.0400000183215,-0.06915201865387142 +274209,1371.0450000183216,-0.0691520004831824 +274210,1371.0500000183217,-0.06915198231240767 +274211,1371.0550000183218,-0.06915196414154726 +274212,1371.060000018322,-0.0691519459706012 +274213,1371.065000018322,-0.06915192779956957 +274214,1371.0700000183222,-0.06915190962845237 +274215,1371.0750000183223,-0.06915189145724968 +274216,1371.0800000183224,-0.06915187328596153 +274217,1371.0850000183225,-0.06915185511458796 +274218,1371.0900000183226,-0.06915183694312901 +274219,1371.0950000183227,-0.06915181877158473 +274220,1371.1000000183228,-0.06915180059995517 +274221,1371.105000018323,-0.06915178242824035 +274222,1371.110000018323,-0.06915176425644033 +274223,1371.1150000183231,-0.06915174608455515 +274224,1371.1200000183233,-0.06915172791258486 +274225,1371.1250000183234,-0.0691517097405295 +274226,1371.1300000183235,-0.0691516915683891 +274227,1371.1350000183236,-0.06915167339616372 +274228,1371.1400000183237,-0.06915165522385339 +274229,1371.1450000183238,-0.06915163705145816 +274230,1371.150000018324,-0.06915161887897807 +274231,1371.155000018324,-0.06915160070641316 +274232,1371.1600000183241,-0.0691515825337635 +274233,1371.1650000183242,-0.0691515643610291 +274234,1371.1700000183243,-0.06915154618821001 +274235,1371.1750000183245,-0.06915152801530627 +274236,1371.1800000183246,-0.06915150984231794 +274237,1371.1850000183247,-0.06915149166924504 +274238,1371.1900000183248,-0.06915147349608765 +274239,1371.195000018325,-0.06915145532284578 +274240,1371.200000018325,-0.06915143714951948 +274241,1371.205000018325,-0.0691514189761088 +274242,1371.2100000183252,-0.0691514008026138 +274243,1371.2150000183253,-0.06915138262903449 +274244,1371.2200000183254,-0.06915136445537093 +274245,1371.2250000183255,-0.06915134628162314 +274246,1371.2300000183257,-0.0691513281077912 +274247,1371.2350000183258,-0.06915130993387512 +274248,1371.2400000183259,-0.06915129175987499 +274249,1371.245000018326,-0.06915127358579079 +274250,1371.250000018326,-0.0691512554116226 +274251,1371.2550000183262,-0.06915123723737047 +274252,1371.2600000183263,-0.06915121906303442 +274253,1371.2650000183264,-0.06915120088861451 +274254,1371.2700000183265,-0.06915118271411078 +274255,1371.2750000183266,-0.06915116453952326 +274256,1371.2800000183267,-0.069151146364852 +274257,1371.2850000183269,-0.06915112819009707 +274258,1371.290000018327,-0.06915111001525848 +274259,1371.295000018327,-0.06915109184033628 +274260,1371.3000000183272,-0.06915107366533052 +274261,1371.3050000183273,-0.06915105549024124 +274262,1371.3100000183274,-0.06915103731506848 +274263,1371.3150000183275,-0.0691510191398123 +274264,1371.3200000183276,-0.06915100096447271 +274265,1371.3250000183277,-0.06915098278904978 +274266,1371.3300000183278,-0.06915096461354353 +274267,1371.335000018328,-0.06915094643795405 +274268,1371.340000018328,-0.06915092826228134 +274269,1371.3450000183282,-0.06915091008652546 +274270,1371.3500000183283,-0.06915089191068644 +274271,1371.3550000183284,-0.06915087373476433 +274272,1371.3600000183285,-0.06915085555875918 +274273,1371.3650000183286,-0.06915083738267101 +274274,1371.3700000183287,-0.0691508192064999 +274275,1371.3750000183288,-0.06915080103024587 +274276,1371.380000018329,-0.06915078285390897 +274277,1371.385000018329,-0.06915076467748923 +274278,1371.3900000183291,-0.06915074650098671 +274279,1371.3950000183293,-0.06915072832440146 +274280,1371.4000000183294,-0.0691507101477335 +274281,1371.4050000183295,-0.06915069197098288 +274282,1371.4100000183296,-0.06915067379414964 +274283,1371.4150000183297,-0.06915065561723384 +274284,1371.4200000183298,-0.06915063744023552 +274285,1371.42500001833,-0.0691506192631547 +274286,1371.43000001833,-0.06915060108599144 +274287,1371.4350000183301,-0.06915058290874579 +274288,1371.4400000183302,-0.06915056473141779 +274289,1371.4450000183303,-0.06915054655400747 +274290,1371.4500000183305,-0.06915052837651489 +274291,1371.4550000183306,-0.06915051019894008 +274292,1371.4600000183307,-0.06915049202128308 +274293,1371.4650000183308,-0.06915047384354396 +274294,1371.470000018331,-0.06915045566572274 +274295,1371.475000018331,-0.06915043748781947 +274296,1371.480000018331,-0.06915041930983419 +274297,1371.4850000183312,-0.06915040113176694 +274298,1371.4900000183313,-0.06915038295361776 +274299,1371.4950000183314,-0.06915036477538672 +274300,1371.5000000183315,-0.06915034659707384 +274301,1371.5050000183317,-0.06915032841867916 +274302,1371.5100000183318,-0.06915031024020273 +274303,1371.5150000183319,-0.0691502920616446 +274304,1371.520000018332,-0.0691502738830048 +274305,1371.525000018332,-0.06915025570428339 +274306,1371.5300000183322,-0.0691502375254804 +274307,1371.5350000183323,-0.06915021934659586 +274308,1371.5400000183324,-0.06915020116762985 +274309,1371.5450000183325,-0.06915018298858239 +274310,1371.5500000183326,-0.06915016480945353 +274311,1371.5550000183327,-0.0691501466302433 +274312,1371.5600000183329,-0.06915012845095175 +274313,1371.565000018333,-0.06915011027157894 +274314,1371.570000018333,-0.0691500920921249 +274315,1371.5750000183332,-0.06915007391258966 +274316,1371.5800000183333,-0.06915005573297328 +274317,1371.5850000183334,-0.06915003755327581 +274318,1371.5900000183335,-0.06915001937349727 +274319,1371.5950000183336,-0.06915000119363772 +274320,1371.6000000183337,-0.0691499830136972 +274321,1371.6050000183338,-0.06914996483367575 +274322,1371.610000018334,-0.06914994665357342 +274323,1371.615000018334,-0.06914992847339024 +274324,1371.6200000183342,-0.06914991029312628 +274325,1371.6250000183343,-0.06914989211278155 +274326,1371.6300000183344,-0.06914987393235612 +274327,1371.6350000183345,-0.06914985575185001 +274328,1371.6400000183346,-0.06914983757126328 +274329,1371.6450000183347,-0.06914981939059597 +274330,1371.6500000183348,-0.06914980120984812 +274331,1371.655000018335,-0.06914978302901978 +274332,1371.660000018335,-0.06914976484811097 +274333,1371.6650000183351,-0.06914974666712177 +274334,1371.6700000183353,-0.06914972848605219 +274335,1371.6750000183354,-0.0691497103049023 +274336,1371.6800000183355,-0.06914969212367213 +274337,1371.6850000183356,-0.06914967394236171 +274338,1371.6900000183357,-0.06914965576097111 +274339,1371.6950000183358,-0.06914963757950036 +274340,1371.700000018336,-0.0691496193979495 +274341,1371.705000018336,-0.06914960121631859 +274342,1371.7100000183361,-0.06914958303460765 +274343,1371.7150000183362,-0.06914956485281674 +274344,1371.7200000183363,-0.0691495466709459 +274345,1371.7250000183365,-0.06914952848899517 +274346,1371.7300000183366,-0.06914951030696458 +274347,1371.7350000183367,-0.06914949212485419 +274348,1371.7400000183368,-0.06914947394266405 +274349,1371.745000018337,-0.06914945576039419 +274350,1371.750000018337,-0.06914943757804466 +274351,1371.7550000183371,-0.0691494193956155 +274352,1371.7600000183372,-0.06914940121310674 +274353,1371.7650000183373,-0.06914938303051846 +274354,1371.7700000183374,-0.06914936484785067 +274355,1371.7750000183376,-0.0691493466651034 +274356,1371.7800000183377,-0.06914932848227674 +274357,1371.7850000183378,-0.06914931029937071 +274358,1371.7900000183379,-0.06914929211638536 +274359,1371.795000018338,-0.06914927393332071 +274360,1371.800000018338,-0.06914925575017683 +274361,1371.8050000183382,-0.06914923756695376 +274362,1371.8100000183383,-0.06914921938365153 +274363,1371.8150000183384,-0.06914920120027018 +274364,1371.8200000183385,-0.06914918301680978 +274365,1371.8250000183386,-0.06914916483327035 +274366,1371.8300000183388,-0.06914914664965194 +274367,1371.8350000183389,-0.06914912846595458 +274368,1371.840000018339,-0.06914911028217834 +274369,1371.845000018339,-0.06914909209832325 +274370,1371.8500000183392,-0.06914907391438935 +274371,1371.8550000183393,-0.06914905573037669 +274372,1371.8600000183394,-0.0691490375462853 +274373,1371.8650000183395,-0.06914901936211525 +274374,1371.8700000183396,-0.06914900117786656 +274375,1371.8750000183397,-0.06914898299353926 +274376,1371.8800000183398,-0.06914896480913343 +274377,1371.88500001834,-0.0691489466246491 +274378,1371.89000001834,-0.06914892844008631 +274379,1371.8950000183402,-0.0691489102554451 +274380,1371.9000000183403,-0.06914889207072553 +274381,1371.9050000183404,-0.0691488738859276 +274382,1371.9100000183405,-0.0691488557010514 +274383,1371.9150000183406,-0.06914883751609696 +274384,1371.9200000183407,-0.06914881933106432 +274385,1371.9250000183408,-0.06914880114595351 +274386,1371.930000018341,-0.0691487829607646 +274387,1371.935000018341,-0.0691487647754976 +274388,1371.9400000183412,-0.06914874659015259 +274389,1371.9450000183413,-0.06914872840472959 +274390,1371.9500000183414,-0.06914871021922865 +274391,1371.9550000183415,-0.06914869203364982 +274392,1371.9600000183416,-0.06914867384799313 +274393,1371.9650000183417,-0.06914865566225863 +274394,1371.9700000183418,-0.06914863747644635 +274395,1371.975000018342,-0.06914861929055637 +274396,1371.980000018342,-0.06914860110458869 +274397,1371.9850000183421,-0.06914858291854338 +274398,1371.9900000183422,-0.06914856473242048 +274399,1371.9950000183424,-0.06914854654622003 +274400,1372.0000000183425,-0.06914852835994208 +274401,1372.0050000183426,-0.06914851017358666 +274402,1372.0100000183427,-0.06914849198715382 +274403,1372.0150000183428,-0.0691484738006436 +274404,1372.020000018343,-0.06914845561405605 +274405,1372.025000018343,-0.0691484374273912 +274406,1372.0300000183431,-0.0691484192406491 +274407,1372.0350000183432,-0.06914840105382981 +274408,1372.0400000183433,-0.06914838286693337 +274409,1372.0450000183434,-0.0691483646799598 +274410,1372.0500000183436,-0.06914834649290916 +274411,1372.0550000183437,-0.06914832830578148 +274412,1372.0600000183438,-0.06914831011857682 +274413,1372.0650000183439,-0.06914829193129522 +274414,1372.070000018344,-0.06914827374393671 +274415,1372.075000018344,-0.06914825555650135 +274416,1372.0800000183442,-0.06914823736898919 +274417,1372.0850000183443,-0.06914821918140025 +274418,1372.0900000183444,-0.06914820099373457 +274419,1372.0950000183445,-0.06914818280599222 +274420,1372.1000000183446,-0.06914816461817323 +274421,1372.1050000183448,-0.06914814643027764 +274422,1372.1100000183449,-0.06914812824230548 +274423,1372.115000018345,-0.06914811005425685 +274424,1372.120000018345,-0.06914809186613173 +274425,1372.1250000183452,-0.0691480736779302 +274426,1372.1300000183453,-0.06914805548965228 +274427,1372.1350000183454,-0.06914803730129804 +274428,1372.1400000183455,-0.06914801911286748 +274429,1372.1450000183456,-0.06914800092436069 +274430,1372.1500000183457,-0.06914798273577769 +274431,1372.1550000183458,-0.06914796454711854 +274432,1372.160000018346,-0.06914794635838326 +274433,1372.165000018346,-0.0691479281695719 +274434,1372.1700000183462,-0.0691479099806845 +274435,1372.1750000183463,-0.06914789179172112 +274436,1372.1800000183464,-0.0691478736026818 +274437,1372.1850000183465,-0.06914785541356658 +274438,1372.1900000183466,-0.0691478372243755 +274439,1372.1950000183467,-0.0691478190351086 +274440,1372.2000000183468,-0.06914780084576592 +274441,1372.205000018347,-0.06914778265634754 +274442,1372.210000018347,-0.06914776446685345 +274443,1372.2150000183472,-0.06914774627728372 +274444,1372.2200000183473,-0.0691477280876384 +274445,1372.2250000183474,-0.06914770989791752 +274446,1372.2300000183475,-0.06914769170812113 +274447,1372.2350000183476,-0.06914767351824928 +274448,1372.2400000183477,-0.069147655328302 +274449,1372.2450000183478,-0.06914763713827934 +274450,1372.250000018348,-0.06914761894818133 +274451,1372.255000018348,-0.06914760075800803 +274452,1372.2600000183481,-0.0691475825677595 +274453,1372.2650000183482,-0.06914756437743574 +274454,1372.2700000183484,-0.06914754618703682 +274455,1372.2750000183485,-0.06914752799656279 +274456,1372.2800000183486,-0.06914750980601367 +274457,1372.2850000183487,-0.06914749161538952 +274458,1372.2900000183488,-0.0691474734246904 +274459,1372.295000018349,-0.0691474552339163 +274460,1372.300000018349,-0.06914743704306732 +274461,1372.3050000183491,-0.06914741885214347 +274462,1372.3100000183492,-0.06914740066114482 +274463,1372.3150000183493,-0.06914738247007138 +274464,1372.3200000183494,-0.06914736427892322 +274465,1372.3250000183496,-0.06914734608770037 +274466,1372.3300000183497,-0.06914732789640288 +274467,1372.3350000183498,-0.06914730970503077 +274468,1372.3400000183499,-0.06914729151358413 +274469,1372.34500001835,-0.06914727332206297 +274470,1372.35000001835,-0.06914725513046735 +274471,1372.3550000183502,-0.06914723693879729 +274472,1372.3600000183503,-0.06914721874705285 +274473,1372.3650000183504,-0.06914720055523407 +274474,1372.3700000183505,-0.06914718236334098 +274475,1372.3750000183506,-0.06914716417137366 +274476,1372.3800000183508,-0.06914714597933214 +274477,1372.3850000183509,-0.06914712778721645 +274478,1372.390000018351,-0.06914710959502664 +274479,1372.395000018351,-0.06914709140276275 +274480,1372.4000000183512,-0.0691470732104248 +274481,1372.4050000183513,-0.0691470550180129 +274482,1372.4100000183514,-0.06914703682552703 +274483,1372.4150000183515,-0.06914701863296725 +274484,1372.4200000183516,-0.06914700044033362 +274485,1372.4250000183517,-0.06914698224762617 +274486,1372.4300000183518,-0.06914696405484494 +274487,1372.435000018352,-0.06914694586199 +274488,1372.440000018352,-0.06914692766906136 +274489,1372.4450000183522,-0.06914690947605906 +274490,1372.4500000183523,-0.06914689128298318 +274491,1372.4550000183524,-0.06914687308983374 +274492,1372.4600000183525,-0.06914685489661078 +274493,1372.4650000183526,-0.06914683670331435 +274494,1372.4700000183527,-0.06914681850994452 +274495,1372.4750000183528,-0.06914680031650129 +274496,1372.480000018353,-0.06914678212298472 +274497,1372.485000018353,-0.06914676392939485 +274498,1372.4900000183532,-0.06914674573573175 +274499,1372.4950000183533,-0.06914672754199543 +274500,1372.5000000183534,-0.06914670934818593 +274501,1372.5050000183535,-0.06914669115430332 +274502,1372.5100000183536,-0.06914667296034761 +274503,1372.5150000183537,-0.06914665476631889 +274504,1372.5200000183538,-0.06914663657221717 +274505,1372.525000018354,-0.06914661837804252 +274506,1372.530000018354,-0.06914660018379494 +274507,1372.5350000183541,-0.06914658198947451 +274508,1372.5400000183542,-0.06914656379508126 +274509,1372.5450000183544,-0.06914654560061524 +274510,1372.5500000183545,-0.0691465274060765 +274511,1372.5550000183546,-0.06914650921146508 +274512,1372.5600000183547,-0.069146491016781 +274513,1372.5650000183548,-0.06914647282202432 +274514,1372.570000018355,-0.06914645462719508 +274515,1372.575000018355,-0.06914643643229335 +274516,1372.5800000183551,-0.06914641823731912 +274517,1372.5850000183552,-0.06914640004227249 +274518,1372.5900000183553,-0.06914638184715347 +274519,1372.5950000183554,-0.06914636365196211 +274520,1372.6000000183556,-0.06914634545669844 +274521,1372.6050000183557,-0.06914632726136254 +274522,1372.6100000183558,-0.06914630906595441 +274523,1372.6150000183559,-0.06914629087047414 +274524,1372.620000018356,-0.06914627267492174 +274525,1372.625000018356,-0.06914625447929726 +274526,1372.6300000183562,-0.06914623628360074 +274527,1372.6350000183563,-0.06914621808783224 +274528,1372.6400000183564,-0.06914619989199179 +274529,1372.6450000183565,-0.06914618169607943 +274530,1372.6500000183566,-0.06914616350009521 +274531,1372.6550000183568,-0.06914614530403917 +274532,1372.6600000183569,-0.06914612710791138 +274533,1372.665000018357,-0.06914610891171184 +274534,1372.670000018357,-0.06914609071544062 +274535,1372.6750000183572,-0.06914607251909775 +274536,1372.6800000183573,-0.0691460543226833 +274537,1372.6850000183574,-0.06914603612619728 +274538,1372.6900000183575,-0.06914601792963976 +274539,1372.6950000183576,-0.06914599973301075 +274540,1372.7000000183577,-0.06914598153631034 +274541,1372.7050000183579,-0.06914596333953853 +274542,1372.710000018358,-0.06914594514269538 +274543,1372.715000018358,-0.06914592694578095 +274544,1372.7200000183582,-0.06914590874879527 +274545,1372.7250000183583,-0.06914589055173838 +274546,1372.7300000183584,-0.06914587235461032 +274547,1372.7350000183585,-0.06914585415741113 +274548,1372.7400000183586,-0.06914583596014089 +274549,1372.7450000183587,-0.0691458177627996 +274550,1372.7500000183588,-0.06914579956538733 +274551,1372.755000018359,-0.06914578136790411 +274552,1372.760000018359,-0.06914576317034998 +274553,1372.7650000183592,-0.06914574497272499 +274554,1372.7700000183593,-0.0691457267750292 +274555,1372.7750000183594,-0.06914570857726264 +274556,1372.7800000183595,-0.06914569037942535 +274557,1372.7850000183596,-0.06914567218151738 +274558,1372.7900000183597,-0.06914565398353875 +274559,1372.7950000183598,-0.06914563578548953 +274560,1372.80000001836,-0.06914561758736976 +274561,1372.80500001836,-0.06914559938917948 +274562,1372.8100000183601,-0.06914558119091874 +274563,1372.8150000183603,-0.06914556299258756 +274564,1372.8200000183604,-0.06914554479418601 +274565,1372.8250000183605,-0.06914552659571412 +274566,1372.8300000183606,-0.06914550839717194 +274567,1372.8350000183607,-0.06914549019855952 +274568,1372.8400000183608,-0.06914547199987688 +274569,1372.845000018361,-0.06914545380112408 +274570,1372.850000018361,-0.06914543560230116 +274571,1372.8550000183611,-0.06914541740340818 +274572,1372.8600000183612,-0.06914539920444515 +274573,1372.8650000183613,-0.06914538100541215 +274574,1372.8700000183615,-0.0691453628063092 +274575,1372.8750000183616,-0.06914534460713634 +274576,1372.8800000183617,-0.06914532640789364 +274577,1372.8850000183618,-0.06914530820858111 +274578,1372.890000018362,-0.06914529000919882 +274579,1372.895000018362,-0.0691452718097468 +274580,1372.900000018362,-0.0691452536102251 +274581,1372.9050000183622,-0.06914523541063376 +274582,1372.9100000183623,-0.06914521721097283 +274583,1372.9150000183624,-0.06914519901124234 +274584,1372.9200000183625,-0.06914518081144234 +274585,1372.9250000183627,-0.06914516261157289 +274586,1372.9300000183628,-0.06914514441163401 +274587,1372.9350000183629,-0.06914512621162575 +274588,1372.940000018363,-0.06914510801154816 +274589,1372.945000018363,-0.06914508981140127 +274590,1372.9500000183632,-0.06914507161118515 +274591,1372.9550000183633,-0.06914505341089983 +274592,1372.9600000183634,-0.06914503521054534 +274593,1372.9650000183635,-0.06914501701012174 +274594,1372.9700000183636,-0.06914499880962906 +274595,1372.9750000183637,-0.06914498060906736 +274596,1372.9800000183639,-0.06914496240843666 +274597,1372.985000018364,-0.06914494420773704 +274598,1372.990000018364,-0.06914492600696852 +274599,1372.9950000183642,-0.06914490780613113 +274600,1373.0000000183643,-0.06914488960522494 +274601,1373.0050000183644,-0.06914487140424996 +274602,1373.0100000183645,-0.06914485320320628 +274603,1373.0150000183646,-0.06914483500209391 +274604,1373.0200000183647,-0.06914481680091292 +274605,1373.0250000183648,-0.06914479859966334 +274606,1373.030000018365,-0.0691447803983452 +274607,1373.035000018365,-0.06914476219695855 +274608,1373.0400000183652,-0.06914474399550344 +274609,1373.0450000183653,-0.0691447257939799 +274610,1373.0500000183654,-0.069144707592388 +274611,1373.0550000183655,-0.06914468939072778 +274612,1373.0600000183656,-0.06914467118899925 +274613,1373.0650000183657,-0.06914465298720249 +274614,1373.0700000183658,-0.06914463478533753 +274615,1373.075000018366,-0.06914461658340441 +274616,1373.080000018366,-0.06914459838140319 +274617,1373.0850000183661,-0.06914458017933389 +274618,1373.0900000183663,-0.06914456197719657 +274619,1373.0950000183664,-0.06914454377499125 +274620,1373.1000000183665,-0.06914452557271801 +274621,1373.1050000183666,-0.06914450737037688 +274622,1373.1100000183667,-0.06914448916796788 +274623,1373.1150000183668,-0.06914447096549108 +274624,1373.120000018367,-0.06914445276294652 +274625,1373.125000018367,-0.06914443456033423 +274626,1373.1300000183671,-0.06914441635765428 +274627,1373.1350000183672,-0.06914439815490668 +274628,1373.1400000183673,-0.0691443799520915 +274629,1373.1450000183675,-0.06914436174920877 +274630,1373.1500000183676,-0.06914434354625854 +274631,1373.1550000183677,-0.06914432534324086 +274632,1373.1600000183678,-0.06914430714015576 +274633,1373.165000018368,-0.06914428893700329 +274634,1373.170000018368,-0.0691442707337835 +274635,1373.175000018368,-0.06914425253049641 +274636,1373.1800000183682,-0.0691442343271421 +274637,1373.1850000183683,-0.06914421612372058 +274638,1373.1900000183684,-0.06914419792023192 +274639,1373.1950000183685,-0.06914417971667614 +274640,1373.2000000183687,-0.06914416151305329 +274641,1373.2050000183688,-0.06914414330936343 +274642,1373.2100000183689,-0.0691441251056066 +274643,1373.215000018369,-0.06914410690178281 +274644,1373.220000018369,-0.06914408869789214 +274645,1373.2250000183692,-0.06914407049393463 +274646,1373.2300000183693,-0.06914405228991032 +274647,1373.2350000183694,-0.06914403408581925 +274648,1373.2400000183695,-0.06914401588166144 +274649,1373.2450000183696,-0.06914399767743697 +274650,1373.2500000183697,-0.06914397947314588 +274651,1373.2550000183699,-0.06914396126878819 +274652,1373.26000001837,-0.06914394306436397 +274653,1373.26500001837,-0.06914392485987325 +274654,1373.2700000183702,-0.06914390665531607 +274655,1373.2750000183703,-0.06914388845069248 +274656,1373.2800000183704,-0.06914387024600253 +274657,1373.2850000183705,-0.06914385204124626 +274658,1373.2900000183706,-0.06914383383642371 +274659,1373.2950000183707,-0.06914381563153492 +274660,1373.3000000183708,-0.06914379742657994 +274661,1373.305000018371,-0.06914377922155882 +274662,1373.310000018371,-0.06914376101647159 +274663,1373.3150000183712,-0.0691437428113183 +274664,1373.3200000183713,-0.06914372460609898 +274665,1373.3250000183714,-0.0691437064008137 +274666,1373.3300000183715,-0.06914368819546249 +274667,1373.3350000183716,-0.06914366999004538 +274668,1373.3400000183717,-0.06914365178456244 +274669,1373.3450000183718,-0.0691436335790137 +274670,1373.350000018372,-0.0691436153733992 +274671,1373.355000018372,-0.06914359716771899 +274672,1373.3600000183721,-0.06914357896197312 +274673,1373.3650000183723,-0.06914356075616163 +274674,1373.3700000183724,-0.06914354255028454 +274675,1373.3750000183725,-0.06914352434434191 +274676,1373.3800000183726,-0.06914350613833381 +274677,1373.3850000183727,-0.06914348793226024 +274678,1373.3900000183728,-0.06914346972612129 +274679,1373.395000018373,-0.06914345151991695 +274680,1373.400000018373,-0.0691434333136473 +274681,1373.4050000183731,-0.0691434151073124 +274682,1373.4100000183732,-0.06914339690091224 +274683,1373.4150000183733,-0.0691433786944469 +274684,1373.4200000183735,-0.06914336048791642 +274685,1373.4250000183736,-0.06914334228132082 +274686,1373.4300000183737,-0.06914332407466019 +274687,1373.4350000183738,-0.06914330586793455 +274688,1373.440000018374,-0.06914328766114393 +274689,1373.445000018374,-0.06914326945428839 +274690,1373.450000018374,-0.06914325124736798 +274691,1373.4550000183742,-0.06914323304038271 +274692,1373.4600000183743,-0.06914321483333266 +274693,1373.4650000183744,-0.06914319662621786 +274694,1373.4700000183745,-0.06914317841903835 +274695,1373.4750000183747,-0.06914316021179419 +274696,1373.4800000183748,-0.06914314200448539 +274697,1373.4850000183749,-0.06914312379711202 +274698,1373.490000018375,-0.06914310558967413 +274699,1373.495000018375,-0.06914308738217174 +274700,1373.5000000183752,-0.06914306917460492 +274701,1373.5050000183753,-0.0691430509669737 +274702,1373.5100000183754,-0.0691430327592781 +274703,1373.5150000183755,-0.06914301455151821 +274704,1373.5200000183756,-0.06914299634369404 +274705,1373.5250000183757,-0.06914297813580565 +274706,1373.5300000183759,-0.06914295992785308 +274707,1373.535000018376,-0.06914294171983636 +274708,1373.540000018376,-0.06914292351175555 +274709,1373.5450000183762,-0.06914290530361071 +274710,1373.5500000183763,-0.06914288709540185 +274711,1373.5550000183764,-0.06914286888712903 +274712,1373.5600000183765,-0.06914285067879229 +274713,1373.5650000183766,-0.06914283247039167 +274714,1373.5700000183767,-0.06914281426192721 +274715,1373.5750000183768,-0.06914279605339897 +274716,1373.580000018377,-0.06914277784480699 +274717,1373.585000018377,-0.0691427596361513 +274718,1373.5900000183772,-0.06914274142743196 +274719,1373.5950000183773,-0.069142723218649 +274720,1373.6000000183774,-0.06914270500980249 +274721,1373.6050000183775,-0.06914268680089243 +274722,1373.6100000183776,-0.06914266859191891 +274723,1373.6150000183777,-0.06914265038288193 +274724,1373.6200000183778,-0.06914263217378158 +274725,1373.625000018378,-0.06914261396461786 +274726,1373.630000018378,-0.06914259575539085 +274727,1373.6350000183782,-0.06914257754610056 +274728,1373.6400000183783,-0.06914255933674707 +274729,1373.6450000183784,-0.06914254112733038 +274730,1373.6500000183785,-0.06914252291785059 +274731,1373.6550000183786,-0.0691425047083077 +274732,1373.6600000183787,-0.06914248649870176 +274733,1373.6650000183788,-0.06914246828903282 +274734,1373.670000018379,-0.06914245007930094 +274735,1373.675000018379,-0.06914243186950612 +274736,1373.6800000183791,-0.06914241365964846 +274737,1373.6850000183792,-0.06914239544972796 +274738,1373.6900000183794,-0.06914237723974467 +274739,1373.6950000183795,-0.06914235902969866 +274740,1373.7000000183796,-0.06914234081958993 +274741,1373.7050000183797,-0.06914232260941858 +274742,1373.7100000183798,-0.0691423043991846 +274743,1373.71500001838,-0.06914228618888807 +274744,1373.72000001838,-0.069142267978529 +274745,1373.7250000183801,-0.06914224976810748 +274746,1373.7300000183802,-0.06914223155762352 +274747,1373.7350000183803,-0.06914221334707718 +274748,1373.7400000183804,-0.06914219513646849 +274749,1373.7450000183806,-0.06914217692579751 +274750,1373.7500000183807,-0.06914215871506425 +274751,1373.7550000183808,-0.0691421405042688 +274752,1373.7600000183809,-0.06914212229341117 +274753,1373.765000018381,-0.06914210408249141 +274754,1373.770000018381,-0.06914208587150958 +274755,1373.7750000183812,-0.06914206766046571 +274756,1373.7800000183813,-0.06914204944935985 +274757,1373.7850000183814,-0.06914203123819203 +274758,1373.7900000183815,-0.06914201302696232 +274759,1373.7950000183816,-0.06914199481567074 +274760,1373.8000000183818,-0.06914197660431735 +274761,1373.8050000183819,-0.06914195839290217 +274762,1373.810000018382,-0.06914194018142528 +274763,1373.815000018382,-0.06914192196988668 +274764,1373.8200000183822,-0.06914190375828645 +274765,1373.8250000183823,-0.0691418855466246 +274766,1373.8300000183824,-0.06914186733490123 +274767,1373.8350000183825,-0.06914184912311631 +274768,1373.8400000183826,-0.06914183091126995 +274769,1373.8450000183827,-0.06914181269936216 +274770,1373.8500000183828,-0.069141794487393 +274771,1373.855000018383,-0.06914177627536247 +274772,1373.860000018383,-0.06914175806327068 +274773,1373.8650000183832,-0.06914173985111763 +274774,1373.8700000183833,-0.06914172163890336 +274775,1373.8750000183834,-0.06914170342662795 +274776,1373.8800000183835,-0.06914168521429143 +274777,1373.8850000183836,-0.06914166700189382 +274778,1373.8900000183837,-0.06914164878943518 +274779,1373.8950000183838,-0.06914163057691557 +274780,1373.900000018384,-0.06914161236433501 +274781,1373.905000018384,-0.06914159415169355 +274782,1373.9100000183842,-0.06914157593899123 +274783,1373.9150000183843,-0.0691415577262281 +274784,1373.9200000183844,-0.06914153951340421 +274785,1373.9250000183845,-0.0691415213005196 +274786,1373.9300000183846,-0.0691415030875743 +274787,1373.9350000183847,-0.06914148487456838 +274788,1373.9400000183848,-0.06914146666150185 +274789,1373.945000018385,-0.06914144844837478 +274790,1373.950000018385,-0.0691414302351872 +274791,1373.9550000183851,-0.06914141202193916 +274792,1373.9600000183852,-0.06914139380863071 +274793,1373.9650000183854,-0.06914137559526189 +274794,1373.9700000183855,-0.06914135738183273 +274795,1373.9750000183856,-0.0691413391683433 +274796,1373.9800000183857,-0.06914132095479361 +274797,1373.9850000183858,-0.06914130274118374 +274798,1373.990000018386,-0.06914128452751371 +274799,1373.995000018386,-0.06914126631378358 +274800,1374.0000000183861,-0.06914124809999338 +274801,1374.0050000183862,-0.06914122988614316 +274802,1374.0100000183863,-0.06914121167223296 +274803,1374.0150000183864,-0.06914119345826282 +274804,1374.0200000183866,-0.0691411752442328 +274805,1374.0250000183867,-0.06914115703014292 +274806,1374.0300000183868,-0.06914113881599325 +274807,1374.0350000183869,-0.06914112060178382 +274808,1374.040000018387,-0.06914110238751467 +274809,1374.045000018387,-0.06914108417318585 +274810,1374.0500000183872,-0.0691410659587974 +274811,1374.0550000183873,-0.06914104774434938 +274812,1374.0600000183874,-0.06914102952984182 +274813,1374.0650000183875,-0.06914101131527475 +274814,1374.0700000183876,-0.06914099310064825 +274815,1374.0750000183878,-0.06914097488596233 +274816,1374.0800000183879,-0.06914095667121704 +274817,1374.085000018388,-0.06914093845641243 +274818,1374.090000018388,-0.06914092024154854 +274819,1374.0950000183882,-0.06914090202662543 +274820,1374.1000000183883,-0.06914088381164313 +274821,1374.1050000183884,-0.06914086559660167 +274822,1374.1100000183885,-0.06914084738150113 +274823,1374.1150000183886,-0.06914082916634154 +274824,1374.1200000183887,-0.06914081095112291 +274825,1374.1250000183888,-0.06914079273584532 +274826,1374.130000018389,-0.06914077452050882 +274827,1374.135000018389,-0.06914075630511343 +274828,1374.1400000183892,-0.06914073808965919 +274829,1374.1450000183893,-0.06914071987414618 +274830,1374.1500000183894,-0.0691407016585744 +274831,1374.1550000183895,-0.06914068344294393 +274832,1374.1600000183896,-0.06914066522725479 +274833,1374.1650000183897,-0.06914064701150703 +274834,1374.1700000183898,-0.0691406287957007 +274835,1374.17500001839,-0.06914061057983582 +274836,1374.18000001839,-0.06914059236391247 +274837,1374.1850000183902,-0.06914057414793068 +274838,1374.1900000183903,-0.06914055593189049 +274839,1374.1950000183904,-0.06914053771579194 +274840,1374.2000000183905,-0.06914051949963508 +274841,1374.2050000183906,-0.06914050128341995 +274842,1374.2100000183907,-0.06914048306714661 +274843,1374.2150000183908,-0.06914046485081508 +274844,1374.220000018391,-0.06914044663442542 +274845,1374.225000018391,-0.06914042841797766 +274846,1374.2300000183911,-0.06914041020147185 +274847,1374.2350000183912,-0.06914039198490805 +274848,1374.2400000183914,-0.06914037376828629 +274849,1374.2450000183915,-0.06914035555160661 +274850,1374.2500000183916,-0.06914033733486905 +274851,1374.2550000183917,-0.06914031911807367 +274852,1374.2600000183918,-0.0691403009012205 +274853,1374.265000018392,-0.06914028268430959 +274854,1374.270000018392,-0.069140264467341 +274855,1374.2750000183921,-0.06914024625031474 +274856,1374.2800000183922,-0.06914022803323089 +274857,1374.2850000183923,-0.06914020981608945 +274858,1374.2900000183924,-0.0691401915988905 +274859,1374.2950000183926,-0.06914017338163407 +274860,1374.3000000183927,-0.0691401551643202 +274861,1374.3050000183928,-0.06914013694694895 +274862,1374.3100000183929,-0.06914011872952038 +274863,1374.315000018393,-0.06914010051203448 +274864,1374.320000018393,-0.06914008229449133 +274865,1374.3250000183932,-0.06914006407689095 +274866,1374.3300000183933,-0.06914004585923342 +274867,1374.3350000183934,-0.06914002764151876 +274868,1374.3400000183935,-0.06914000942374701 +274869,1374.3450000183936,-0.06913999120591824 +274870,1374.3500000183938,-0.06913997298803246 +274871,1374.3550000183939,-0.06913995477008973 +274872,1374.360000018394,-0.06913993655209011 +274873,1374.365000018394,-0.06913991833403361 +274874,1374.3700000183942,-0.0691399001159203 +274875,1374.3750000183943,-0.06913988189775022 +274876,1374.3800000183944,-0.0691398636795234 +274877,1374.3850000183945,-0.0691398454612399 +274878,1374.3900000183946,-0.06913982724289976 +274879,1374.3950000183947,-0.06913980902450301 +274880,1374.4000000183948,-0.06913979080604972 +274881,1374.405000018395,-0.06913977258753991 +274882,1374.410000018395,-0.06913975436897364 +274883,1374.4150000183952,-0.06913973615035095 +274884,1374.4200000183953,-0.06913971793167187 +274885,1374.4250000183954,-0.06913969971293646 +274886,1374.4300000183955,-0.06913968149414476 +274887,1374.4350000183956,-0.0691396632752968 +274888,1374.4400000183957,-0.06913964505639265 +274889,1374.4450000183958,-0.06913962683743234 +274890,1374.450000018396,-0.06913960861841592 +274891,1374.455000018396,-0.06913959039934342 +274892,1374.4600000183962,-0.0691395721802149 +274893,1374.4650000183963,-0.06913955396103039 +274894,1374.4700000183964,-0.06913953574178994 +274895,1374.4750000183965,-0.06913951752249359 +274896,1374.4800000183966,-0.0691394993031414 +274897,1374.4850000183967,-0.06913948108373338 +274898,1374.4900000183968,-0.06913946286426961 +274899,1374.495000018397,-0.06913944464475012 +274900,1374.500000018397,-0.06913942642517497 +274901,1374.5050000183971,-0.06913940820554418 +274902,1374.5100000183972,-0.0691393899858578 +274903,1374.5150000183974,-0.06913937176611586 +274904,1374.5200000183975,-0.06913935354631844 +274905,1374.5250000183976,-0.06913933532646556 +274906,1374.5300000183977,-0.06913931710655725 +274907,1374.5350000183978,-0.06913929888659359 +274908,1374.540000018398,-0.06913928066657461 +274909,1374.545000018398,-0.06913926244650034 +274910,1374.5500000183981,-0.06913924422637084 +274911,1374.5550000183982,-0.06913922600618613 +274912,1374.5600000183983,-0.0691392077859463 +274913,1374.5650000183985,-0.06913918956565135 +274914,1374.5700000183986,-0.06913917134530134 +274915,1374.5750000183987,-0.06913915312489631 +274916,1374.5800000183988,-0.06913913490443632 +274917,1374.585000018399,-0.06913911668392139 +274918,1374.590000018399,-0.06913909846335158 +274919,1374.595000018399,-0.06913908024272693 +274920,1374.6000000183992,-0.06913906202204748 +274921,1374.6050000183993,-0.06913904380131326 +274922,1374.6100000183994,-0.06913902558052436 +274923,1374.6150000183995,-0.06913900735968079 +274924,1374.6200000183997,-0.0691389891387826 +274925,1374.6250000183998,-0.06913897091782982 +274926,1374.6300000183999,-0.06913895269682252 +274927,1374.6350000184,-0.06913893447576072 +274928,1374.6400000184,-0.06913891625464448 +274929,1374.6450000184002,-0.06913889803347385 +274930,1374.6500000184003,-0.06913887981224887 +274931,1374.6550000184004,-0.06913886159096956 +274932,1374.6600000184005,-0.06913884336963598 +274933,1374.6650000184006,-0.06913882514824818 +274934,1374.6700000184007,-0.06913880692680618 +274935,1374.6750000184009,-0.06913878870531007 +274936,1374.680000018401,-0.06913877048375985 +274937,1374.685000018401,-0.06913875226215559 +274938,1374.6900000184012,-0.06913873404049732 +274939,1374.6950000184013,-0.0691387158187851 +274940,1374.7000000184014,-0.06913869759701896 +274941,1374.7050000184015,-0.06913867937519895 +274942,1374.7100000184016,-0.0691386611533251 +274943,1374.7150000184017,-0.06913864293139747 +274944,1374.7200000184018,-0.06913862470941609 +274945,1374.725000018402,-0.06913860648738103 +274946,1374.730000018402,-0.0691385882652923 +274947,1374.7350000184022,-0.06913857004314997 +274948,1374.7400000184023,-0.06913855182095408 +274949,1374.7450000184024,-0.06913853359870466 +274950,1374.7500000184025,-0.06913851537640175 +274951,1374.7550000184026,-0.06913849715404542 +274952,1374.7600000184027,-0.0691384789316357 +274953,1374.7650000184028,-0.06913846070917265 +274954,1374.770000018403,-0.06913844248665629 +274955,1374.775000018403,-0.06913842426408667 +274956,1374.7800000184031,-0.06913840604146385 +274957,1374.7850000184033,-0.06913838781878784 +274958,1374.7900000184034,-0.06913836959605871 +274959,1374.7950000184035,-0.06913835137327651 +274960,1374.8000000184036,-0.06913833315044125 +274961,1374.8050000184037,-0.06913831492755303 +274962,1374.8100000184038,-0.06913829670461184 +274963,1374.815000018404,-0.06913827848161776 +274964,1374.820000018404,-0.06913826025857081 +274965,1374.8250000184041,-0.06913824203547105 +274966,1374.8300000184042,-0.0691382238123185 +274967,1374.8350000184043,-0.06913820558911322 +274968,1374.8400000184045,-0.06913818736585528 +274969,1374.8450000184046,-0.06913816914254468 +274970,1374.8500000184047,-0.06913815091918149 +274971,1374.8550000184048,-0.06913813269576574 +274972,1374.860000018405,-0.0691381144722975 +274973,1374.865000018405,-0.06913809624877677 +274974,1374.870000018405,-0.06913807802520364 +274975,1374.8750000184052,-0.06913805980157813 +274976,1374.8800000184053,-0.06913804157790028 +274977,1374.8850000184054,-0.06913802335417014 +274978,1374.8900000184055,-0.06913800513038777 +274979,1374.8950000184057,-0.06913798690655318 +274980,1374.9000000184058,-0.06913796868266645 +274981,1374.9050000184059,-0.06913795045872759 +274982,1374.910000018406,-0.06913793223473667 +274983,1374.915000018406,-0.06913791401069373 +274984,1374.9200000184062,-0.06913789578659882 +274985,1374.9250000184063,-0.06913787756245196 +274986,1374.9300000184064,-0.06913785933825321 +274987,1374.9350000184065,-0.06913784111400262 +274988,1374.9400000184066,-0.06913782288970022 +274989,1374.9450000184067,-0.06913780466534605 +274990,1374.9500000184069,-0.06913778644094018 +274991,1374.955000018407,-0.06913776821648263 +274992,1374.960000018407,-0.06913774999197345 +274993,1374.9650000184072,-0.0691377317674127 +274994,1374.9700000184073,-0.06913771354280039 +274995,1374.9750000184074,-0.0691376953181366 +274996,1374.9800000184075,-0.06913767709342135 +274997,1374.9850000184076,-0.0691376588686547 +274998,1374.9900000184077,-0.06913764064383668 +274999,1374.9950000184078,-0.06913762241896734 +275000,1375.000000018408,-0.06913760419404673 +275001,1375.005000018408,-0.06913758596907489 +275002,1375.0100000184082,-0.06913756774405187 +275003,1375.0150000184083,-0.0691375495189777 +275004,1375.0200000184084,-0.06913753129385242 +275005,1375.0250000184085,-0.06913751306867609 +275006,1375.0300000184086,-0.06913749484344875 +275007,1375.0350000184087,-0.06913747661817043 +275008,1375.0400000184088,-0.06913745839284122 +275009,1375.045000018409,-0.0691374401674611 +275010,1375.050000018409,-0.06913742194203014 +275011,1375.0550000184091,-0.0691374037165484 +275012,1375.0600000184093,-0.06913738549101592 +275013,1375.0650000184094,-0.06913736726543274 +275014,1375.0700000184095,-0.06913734903979889 +275015,1375.0750000184096,-0.06913733081411444 +275016,1375.0800000184097,-0.06913731258837941 +275017,1375.0850000184098,-0.06913729436259385 +275018,1375.09000001841,-0.06913727613675782 +275019,1375.09500001841,-0.06913725791087134 +275020,1375.1000000184101,-0.06913723968493447 +275021,1375.1050000184102,-0.06913722145894725 +275022,1375.1100000184103,-0.06913720323290973 +275023,1375.1150000184105,-0.06913718500682194 +275024,1375.1200000184106,-0.06913716678068393 +275025,1375.1250000184107,-0.06913714855449575 +275026,1375.1300000184108,-0.06913713032825744 +275027,1375.135000018411,-0.06913711210196906 +275028,1375.140000018411,-0.0691370938756306 +275029,1375.145000018411,-0.06913707564924218 +275030,1375.1500000184112,-0.0691370574228038 +275031,1375.1550000184113,-0.0691370391963155 +275032,1375.1600000184114,-0.06913702096977734 +275033,1375.1650000184115,-0.06913700274318936 +275034,1375.1700000184117,-0.06913698451655159 +275035,1375.1750000184118,-0.06913696628986411 +275036,1375.1800000184119,-0.06913694806312692 +275037,1375.185000018412,-0.06913692983634011 +275038,1375.190000018412,-0.06913691160950368 +275039,1375.1950000184122,-0.0691368933826177 +275040,1375.2000000184123,-0.0691368751556822 +275041,1375.2050000184124,-0.06913685692869724 +275042,1375.2100000184125,-0.06913683870166286 +275043,1375.2150000184126,-0.06913682047457909 +275044,1375.2200000184127,-0.06913680224744599 +275045,1375.2250000184129,-0.06913678402026359 +275046,1375.230000018413,-0.06913676579303196 +275047,1375.235000018413,-0.06913674756575111 +275048,1375.2400000184132,-0.0691367293384211 +275049,1375.2450000184133,-0.06913671111104198 +275050,1375.2500000184134,-0.0691366928836138 +275051,1375.2550000184135,-0.0691366746561366 +275052,1375.2600000184136,-0.0691366564286104 +275053,1375.2650000184137,-0.06913663820103526 +275054,1375.2700000184138,-0.06913661997341121 +275055,1375.275000018414,-0.06913660174573834 +275056,1375.280000018414,-0.06913658351801663 +275057,1375.2850000184142,-0.06913656529024619 +275058,1375.2900000184143,-0.06913654706242701 +275059,1375.2950000184144,-0.06913652883455916 +275060,1375.3000000184145,-0.06913651060664269 +275061,1375.3050000184146,-0.06913649237867761 +275062,1375.3100000184147,-0.06913647415066401 +275063,1375.3150000184148,-0.06913645592260191 +275064,1375.320000018415,-0.06913643769449135 +275065,1375.325000018415,-0.06913641946633238 +275066,1375.3300000184151,-0.06913640123812505 +275067,1375.3350000184153,-0.06913638300986939 +275068,1375.3400000184154,-0.06913636478156546 +275069,1375.3450000184155,-0.0691363465532133 +275070,1375.3500000184156,-0.06913632832481295 +275071,1375.3550000184157,-0.06913631009636445 +275072,1375.3600000184158,-0.06913629186786785 +275073,1375.365000018416,-0.06913627363932319 +275074,1375.370000018416,-0.06913625541073053 +275075,1375.3750000184161,-0.06913623718208989 +275076,1375.3800000184162,-0.06913621895340133 +275077,1375.3850000184163,-0.06913620072466489 +275078,1375.3900000184165,-0.06913618249588062 +275079,1375.3950000184166,-0.06913616426704856 +275080,1375.4000000184167,-0.06913614603816874 +275081,1375.4050000184168,-0.06913612780924124 +275082,1375.410000018417,-0.06913610958026606 +275083,1375.415000018417,-0.06913609135124325 +275084,1375.420000018417,-0.06913607312217289 +275085,1375.4250000184172,-0.069136054893055 +275086,1375.4300000184173,-0.06913603666388961 +275087,1375.4350000184174,-0.0691360184346768 +275088,1375.4400000184175,-0.06913600020541659 +275089,1375.4450000184177,-0.06913598197610904 +275090,1375.4500000184178,-0.06913596374675417 +275091,1375.4550000184179,-0.06913594551735204 +275092,1375.460000018418,-0.0691359272879027 +275093,1375.465000018418,-0.06913590905840619 +275094,1375.4700000184182,-0.06913589082886254 +275095,1375.4750000184183,-0.06913587259927181 +275096,1375.4800000184184,-0.06913585436963403 +275097,1375.4850000184185,-0.06913583613994927 +275098,1375.4900000184186,-0.06913581791021754 +275099,1375.4950000184188,-0.06913579968043891 +275100,1375.5000000184189,-0.06913578145061341 +275101,1375.505000018419,-0.06913576322074108 +275102,1375.510000018419,-0.06913574499082199 +275103,1375.5150000184192,-0.06913572676085616 +275104,1375.5200000184193,-0.06913570853084365 +275105,1375.5250000184194,-0.0691356903007845 +275106,1375.5300000184195,-0.06913567207067872 +275107,1375.5350000184196,-0.0691356538405264 +275108,1375.5400000184197,-0.06913563561032758 +275109,1375.5450000184198,-0.0691356173800823 +275110,1375.55000001842,-0.06913559914979057 +275111,1375.55500001842,-0.06913558091945247 +275112,1375.5600000184202,-0.06913556268906805 +275113,1375.5650000184203,-0.06913554445863733 +275114,1375.5700000184204,-0.06913552622816035 +275115,1375.5750000184205,-0.0691355079976372 +275116,1375.5800000184206,-0.06913548976706786 +275117,1375.5850000184207,-0.06913547153645243 +275118,1375.5900000184208,-0.06913545330579092 +275119,1375.595000018421,-0.06913543507508338 +275120,1375.600000018421,-0.06913541684432986 +275121,1375.6050000184212,-0.0691353986135304 +275122,1375.6100000184213,-0.06913538038268506 +275123,1375.6150000184214,-0.06913536215179386 +275124,1375.6200000184215,-0.06913534392085685 +275125,1375.6250000184216,-0.0691353256898741 +275126,1375.6300000184217,-0.06913530745884562 +275127,1375.6350000184218,-0.06913528922777147 +275128,1375.640000018422,-0.06913527099665169 +275129,1375.645000018422,-0.06913525276548634 +275130,1375.6500000184221,-0.06913523453427543 +275131,1375.6550000184222,-0.06913521630301904 +275132,1375.6600000184224,-0.06913519807171718 +275133,1375.6650000184225,-0.06913517984036993 +275134,1375.6700000184226,-0.06913516160897731 +275135,1375.6750000184227,-0.06913514337753938 +275136,1375.6800000184228,-0.06913512514605617 +275137,1375.685000018423,-0.06913510691452773 +275138,1375.690000018423,-0.0691350886829541 +275139,1375.6950000184231,-0.06913507045133532 +275140,1375.7000000184232,-0.06913505221967145 +275141,1375.7050000184233,-0.06913503398796253 +275142,1375.7100000184234,-0.0691350157562086 +275143,1375.7150000184236,-0.06913499752440971 +275144,1375.7200000184237,-0.0691349792925659 +275145,1375.7250000184238,-0.06913496106067721 +275146,1375.7300000184239,-0.06913494282874369 +275147,1375.735000018424,-0.06913492459676537 +275148,1375.740000018424,-0.06913490636474232 +275149,1375.7450000184242,-0.06913488813267456 +275150,1375.7500000184243,-0.06913486990056215 +275151,1375.7550000184244,-0.06913485166840513 +275152,1375.7600000184245,-0.06913483343620354 +275153,1375.7650000184246,-0.06913481520395742 +275154,1375.7700000184248,-0.06913479697166683 +275155,1375.7750000184249,-0.06913477873933181 +275156,1375.780000018425,-0.06913476050695239 +275157,1375.785000018425,-0.06913474227452862 +275158,1375.7900000184252,-0.06913472404206056 +275159,1375.7950000184253,-0.06913470580954824 +275160,1375.8000000184254,-0.06913468757699169 +275161,1375.8050000184255,-0.06913466934439098 +275162,1375.8100000184256,-0.06913465111174616 +275163,1375.8150000184257,-0.06913463287905723 +275164,1375.8200000184258,-0.0691346146463243 +275165,1375.825000018426,-0.06913459641354736 +275166,1375.830000018426,-0.06913457818072646 +275167,1375.8350000184262,-0.06913455994786168 +275168,1375.8400000184263,-0.06913454171495302 +275169,1375.8450000184264,-0.06913452348200055 +275170,1375.8500000184265,-0.0691345052490043 +275171,1375.8550000184266,-0.06913448701596434 +275172,1375.8600000184267,-0.0691344687828807 +275173,1375.8650000184268,-0.0691344505497534 +275174,1375.870000018427,-0.06913443231658252 +275175,1375.875000018427,-0.06913441408336808 +275176,1375.8800000184272,-0.06913439585011015 +275177,1375.8850000184273,-0.06913437761680875 +275178,1375.8900000184274,-0.06913435938346393 +275179,1375.8950000184275,-0.06913434115007575 +275180,1375.9000000184276,-0.06913432291664423 +275181,1375.9050000184277,-0.06913430468316942 +275182,1375.9100000184278,-0.06913428644965137 +275183,1375.915000018428,-0.06913426821609013 +275184,1375.920000018428,-0.06913424998248574 +275185,1375.9250000184281,-0.06913423174883825 +275186,1375.9300000184282,-0.06913421351514767 +275187,1375.9350000184284,-0.0691341952814141 +275188,1375.9400000184285,-0.06913417704763754 +275189,1375.9450000184286,-0.06913415881381804 +275190,1375.9500000184287,-0.06913414057995568 +275191,1375.9550000184288,-0.06913412234605044 +275192,1375.960000018429,-0.06913410411210244 +275193,1375.965000018429,-0.06913408587811166 +275194,1375.9700000184291,-0.06913406764407819 +275195,1375.9750000184292,-0.06913404941000204 +275196,1375.9800000184293,-0.06913403117588326 +275197,1375.9850000184294,-0.06913401294172192 +275198,1375.9900000184296,-0.06913399470751805 +275199,1375.9950000184297,-0.06913397647327167 +275200,1376.0000000184298,-0.06913395823898287 +275201,1376.0050000184299,-0.06913394000465166 +275202,1376.01000001843,-0.06913392177027809 +275203,1376.01500001843,-0.06913390353586221 +275204,1376.0200000184302,-0.06913388530140407 +275205,1376.0250000184303,-0.0691338670669037 +275206,1376.0300000184304,-0.06913384883236115 +275207,1376.0350000184305,-0.06913383059777649 +275208,1376.0400000184306,-0.06913381236314972 +275209,1376.0450000184308,-0.0691337941284809 +275210,1376.0500000184309,-0.06913377589377008 +275211,1376.055000018431,-0.0691337576590173 +275212,1376.060000018431,-0.06913373942422263 +275213,1376.0650000184312,-0.06913372118938607 +275214,1376.0700000184313,-0.06913370295450769 +275215,1376.0750000184314,-0.06913368471958752 +275216,1376.0800000184315,-0.06913366648462563 +275217,1376.0850000184316,-0.06913364824962202 +275218,1376.0900000184317,-0.0691336300145768 +275219,1376.0950000184318,-0.06913361177948996 +275220,1376.100000018432,-0.06913359354436156 +275221,1376.105000018432,-0.06913357530919165 +275222,1376.1100000184322,-0.06913355707398026 +275223,1376.1150000184323,-0.06913353883872744 +275224,1376.1200000184324,-0.06913352060343325 +275225,1376.1250000184325,-0.06913350236809772 +275226,1376.1300000184326,-0.06913348413272091 +275227,1376.1350000184327,-0.06913346589730285 +275228,1376.1400000184328,-0.06913344766184357 +275229,1376.145000018433,-0.06913342942634312 +275230,1376.150000018433,-0.06913341119080159 +275231,1376.1550000184332,-0.06913339295521895 +275232,1376.1600000184333,-0.0691333747195953 +275233,1376.1650000184334,-0.06913335648393067 +275234,1376.1700000184335,-0.0691333382482251 +275235,1376.1750000184336,-0.06913332001247864 +275236,1376.1800000184337,-0.06913330177669132 +275237,1376.1850000184338,-0.06913328354086319 +275238,1376.190000018434,-0.06913326530499429 +275239,1376.195000018434,-0.06913324706908469 +275240,1376.2000000184341,-0.06913322883313441 +275241,1376.2050000184342,-0.0691332105971435 +275242,1376.2100000184344,-0.06913319236111201 +275243,1376.2150000184345,-0.06913317412503997 +275244,1376.2200000184346,-0.06913315588892745 +275245,1376.2250000184347,-0.06913313765277447 +275246,1376.2300000184348,-0.06913311941658108 +275247,1376.235000018435,-0.06913310118034734 +275248,1376.240000018435,-0.06913308294407326 +275249,1376.2450000184351,-0.06913306470775891 +275250,1376.2500000184352,-0.06913304647140435 +275251,1376.2550000184353,-0.0691330282350096 +275252,1376.2600000184354,-0.06913300999857469 +275253,1376.2650000184356,-0.0691329917620997 +275254,1376.2700000184357,-0.06913297352558465 +275255,1376.2750000184358,-0.06913295528902959 +275256,1376.2800000184359,-0.06913293705243456 +275257,1376.285000018436,-0.06913291881579961 +275258,1376.290000018436,-0.0691329005791248 +275259,1376.2950000184362,-0.06913288234241015 +275260,1376.3000000184363,-0.0691328641056557 +275261,1376.3050000184364,-0.06913284586886151 +275262,1376.3100000184365,-0.06913282763202763 +275263,1376.3150000184366,-0.0691328093951541 +275264,1376.3200000184368,-0.06913279115824095 +275265,1376.3250000184369,-0.06913277292128824 +275266,1376.330000018437,-0.069132754684296 +275267,1376.335000018437,-0.0691327364472643 +275268,1376.3400000184372,-0.06913271821019315 +275269,1376.3450000184373,-0.0691326999730826 +275270,1376.3500000184374,-0.06913268173593273 +275271,1376.3550000184375,-0.06913266349874356 +275272,1376.3600000184376,-0.06913264526151512 +275273,1376.3650000184377,-0.06913262702424748 +275274,1376.3700000184378,-0.06913260878694068 +275275,1376.375000018438,-0.06913259054959475 +275276,1376.380000018438,-0.06913257231220975 +275277,1376.3850000184382,-0.0691325540747857 +275278,1376.3900000184383,-0.06913253583732266 +275279,1376.3950000184384,-0.06913251759982068 +275280,1376.4000000184385,-0.0691324993622798 +275281,1376.4050000184386,-0.06913248112470007 +275282,1376.4100000184387,-0.06913246288708151 +275283,1376.4150000184388,-0.0691324446494242 +275284,1376.420000018439,-0.06913242641172816 +275285,1376.425000018439,-0.06913240817399344 +275286,1376.4300000184392,-0.06913238993622008 +275287,1376.4350000184393,-0.06913237169840813 +275288,1376.4400000184394,-0.06913235346055764 +275289,1376.4450000184395,-0.06913233522266865 +275290,1376.4500000184396,-0.06913231698474119 +275291,1376.4550000184397,-0.06913229874677533 +275292,1376.4600000184398,-0.0691322805087711 +275293,1376.46500001844,-0.06913226227072855 +275294,1376.47000001844,-0.06913224403264771 +275295,1376.4750000184401,-0.06913222579452864 +275296,1376.4800000184403,-0.06913220755637137 +275297,1376.4850000184404,-0.06913218931817597 +275298,1376.4900000184405,-0.06913217107994243 +275299,1376.4950000184406,-0.06913215284167086 +275300,1376.5000000184407,-0.06913213460336126 +275301,1376.5050000184408,-0.06913211636501372 +275302,1376.510000018441,-0.06913209812662824 +275303,1376.515000018441,-0.06913207988820487 +275304,1376.5200000184411,-0.06913206164974366 +275305,1376.5250000184412,-0.06913204341124467 +275306,1376.5300000184413,-0.06913202517270793 +275307,1376.5350000184415,-0.06913200693413349 +275308,1376.5400000184416,-0.06913198869552137 +275309,1376.5450000184417,-0.06913197045687165 +275310,1376.5500000184418,-0.06913195221818437 +275311,1376.555000018442,-0.06913193397945955 +275312,1376.560000018442,-0.06913191574069726 +275313,1376.565000018442,-0.06913189750189751 +275314,1376.5700000184422,-0.06913187926306039 +275315,1376.5750000184423,-0.0691318610241859 +275316,1376.5800000184424,-0.06913184278527414 +275317,1376.5850000184425,-0.06913182454632509 +275318,1376.5900000184427,-0.06913180630733884 +275319,1376.5950000184428,-0.06913178806831541 +275320,1376.6000000184429,-0.06913176982925484 +275321,1376.605000018443,-0.06913175159015719 +275322,1376.610000018443,-0.06913173335102252 +275323,1376.6150000184432,-0.06913171511185084 +275324,1376.6200000184433,-0.06913169687264221 +275325,1376.6250000184434,-0.06913167863339667 +275326,1376.6300000184435,-0.0691316603941143 +275327,1376.6350000184436,-0.06913164215479509 +275328,1376.6400000184437,-0.0691316239154391 +275329,1376.6450000184439,-0.06913160567604641 +275330,1376.650000018444,-0.06913158743661701 +275331,1376.655000018444,-0.06913156919715098 +275332,1376.6600000184442,-0.06913155095764836 +275333,1376.6650000184443,-0.06913153271810919 +275334,1376.6700000184444,-0.06913151447853351 +275335,1376.6750000184445,-0.06913149623892136 +275336,1376.6800000184446,-0.0691314779992728 +275337,1376.6850000184447,-0.06913145975958787 +275338,1376.6900000184448,-0.06913144151986661 +275339,1376.695000018445,-0.06913142328010906 +275340,1376.700000018445,-0.06913140504031527 +275341,1376.7050000184452,-0.06913138680048529 +275342,1376.7100000184453,-0.06913136856061915 +275343,1376.7150000184454,-0.06913135032071692 +275344,1376.7200000184455,-0.06913133208077862 +275345,1376.7250000184456,-0.0691313138408043 +275346,1376.7300000184457,-0.06913129560079401 +275347,1376.7350000184458,-0.06913127736074778 +275348,1376.740000018446,-0.06913125912066569 +275349,1376.745000018446,-0.06913124088054774 +275350,1376.7500000184461,-0.06913122264039401 +275351,1376.7550000184463,-0.06913120440020451 +275352,1376.7600000184464,-0.0691311861599793 +275353,1376.7650000184465,-0.06913116791971845 +275354,1376.7700000184466,-0.06913114967942197 +275355,1376.7750000184467,-0.06913113143908992 +275356,1376.7800000184468,-0.06913111319872234 +275357,1376.785000018447,-0.06913109495831926 +275358,1376.790000018447,-0.06913107671788075 +275359,1376.7950000184471,-0.06913105847740686 +275360,1376.8000000184472,-0.06913104023689759 +275361,1376.8050000184473,-0.06913102199635303 +275362,1376.8100000184475,-0.06913100375577319 +275363,1376.8150000184476,-0.06913098551515814 +275364,1376.8200000184477,-0.06913096727450793 +275365,1376.8250000184478,-0.06913094903382258 +275366,1376.830000018448,-0.06913093079310213 +275367,1376.835000018448,-0.06913091255234666 +275368,1376.840000018448,-0.06913089431155618 +275369,1376.8450000184482,-0.06913087607073075 +275370,1376.8500000184483,-0.06913085782987041 +275371,1376.8550000184484,-0.0691308395889752 +275372,1376.8600000184485,-0.06913082134804518 +275373,1376.8650000184487,-0.0691308031070804 +275374,1376.8700000184488,-0.06913078486608087 +275375,1376.8750000184489,-0.06913076662504666 +275376,1376.880000018449,-0.0691307483839778 +275377,1376.885000018449,-0.06913073014287435 +275378,1376.8900000184492,-0.06913071190173635 +275379,1376.8950000184493,-0.06913069366056383 +275380,1376.9000000184494,-0.06913067541935686 +275381,1376.9050000184495,-0.06913065717811546 +275382,1376.9100000184496,-0.0691306389368397 +275383,1376.9150000184497,-0.0691306206955296 +275384,1376.9200000184499,-0.06913060245418523 +275385,1376.92500001845,-0.0691305842128066 +275386,1376.93000001845,-0.06913056597139378 +275387,1376.9350000184502,-0.0691305477299468 +275388,1376.9400000184503,-0.06913052948846571 +275389,1376.9450000184504,-0.06913051124695056 +275390,1376.9500000184505,-0.06913049300540139 +275391,1376.9550000184506,-0.06913047476381824 +275392,1376.9600000184507,-0.06913045652220118 +275393,1376.9650000184508,-0.06913043828055021 +275394,1376.970000018451,-0.06913042003886541 +275395,1376.975000018451,-0.0691304017971468 +275396,1376.9800000184512,-0.06913038355539444 +275397,1376.9850000184513,-0.06913036531360837 +275398,1376.9900000184514,-0.06913034707178865 +275399,1376.9950000184515,-0.0691303288299353 +275400,1377.0000000184516,-0.06913031058804839 +275401,1377.0050000184517,-0.06913029234612793 +275402,1377.0100000184518,-0.069130274104174 +275403,1377.015000018452,-0.06913025586218662 +275404,1377.020000018452,-0.06913023762016583 +275405,1377.0250000184521,-0.06913021937811169 +275406,1377.0300000184523,-0.06913020113602425 +275407,1377.0350000184524,-0.06913018289390355 +275408,1377.0400000184525,-0.06913016465174962 +275409,1377.0450000184526,-0.06913014640956253 +275410,1377.0500000184527,-0.06913012816734229 +275411,1377.0550000184528,-0.06913010992508897 +275412,1377.060000018453,-0.06913009168280261 +275413,1377.065000018453,-0.06913007344048326 +275414,1377.0700000184531,-0.06913005519813095 +275415,1377.0750000184532,-0.06913003695574572 +275416,1377.0800000184533,-0.06913001871332763 +275417,1377.0850000184535,-0.06913000047087672 +275418,1377.0900000184536,-0.06912998222839305 +275419,1377.0950000184537,-0.06912996398587663 +275420,1377.1000000184538,-0.06912994574332752 +275421,1377.105000018454,-0.06912992750074579 +275422,1377.110000018454,-0.06912990925813145 +275423,1377.115000018454,-0.06912989101548456 +275424,1377.1200000184542,-0.06912987277280516 +275425,1377.1250000184543,-0.0691298545300933 +275426,1377.1300000184544,-0.069129836287349 +275427,1377.1350000184545,-0.06912981804457234 +275428,1377.1400000184547,-0.06912979980176336 +275429,1377.1450000184548,-0.06912978155892208 +275430,1377.1500000184549,-0.06912976331604856 +275431,1377.155000018455,-0.06912974507314283 +275432,1377.160000018455,-0.06912972683020496 +275433,1377.1650000184552,-0.06912970858723498 +275434,1377.1700000184553,-0.06912969034423293 +275435,1377.1750000184554,-0.06912967210119887 +275436,1377.1800000184555,-0.06912965385813283 +275437,1377.1850000184556,-0.06912963561503487 +275438,1377.1900000184557,-0.069129617371905 +275439,1377.1950000184559,-0.0691295991287433 +275440,1377.200000018456,-0.0691295808855498 +275441,1377.205000018456,-0.06912956264232455 +275442,1377.2100000184562,-0.06912954439906759 +275443,1377.2150000184563,-0.06912952615577897 +275444,1377.2200000184564,-0.06912950791245873 +275445,1377.2250000184565,-0.06912948966910691 +275446,1377.2300000184566,-0.06912947142572355 +275447,1377.2350000184567,-0.06912945318230872 +275448,1377.2400000184568,-0.06912943493886245 +275449,1377.245000018457,-0.06912941669538478 +275450,1377.250000018457,-0.06912939845187574 +275451,1377.2550000184572,-0.06912938020833541 +275452,1377.2600000184573,-0.06912936196476381 +275453,1377.2650000184574,-0.06912934372116099 +275454,1377.2700000184575,-0.06912932547752701 +275455,1377.2750000184576,-0.06912930723386188 +275456,1377.2800000184577,-0.06912928899016568 +275457,1377.2850000184578,-0.06912927074643842 +275458,1377.290000018458,-0.06912925250268018 +275459,1377.295000018458,-0.06912923425889098 +275460,1377.3000000184581,-0.06912921601507087 +275461,1377.3050000184583,-0.0691291977712199 +275462,1377.3100000184584,-0.0691291795273381 +275463,1377.3150000184585,-0.06912916128342553 +275464,1377.3200000184586,-0.06912914303948223 +275465,1377.3250000184587,-0.06912912479550824 +275466,1377.3300000184588,-0.06912910655150363 +275467,1377.335000018459,-0.0691290883074684 +275468,1377.340000018459,-0.06912907006340263 +275469,1377.3450000184591,-0.06912905181930636 +275470,1377.3500000184592,-0.06912903357517962 +275471,1377.3550000184594,-0.06912901533102246 +275472,1377.3600000184595,-0.06912899708683493 +275473,1377.3650000184596,-0.06912897884261707 +275474,1377.3700000184597,-0.06912896059836891 +275475,1377.3750000184598,-0.06912894235409052 +275476,1377.38000001846,-0.06912892410978193 +275477,1377.38500001846,-0.0691289058654432 +275478,1377.3900000184601,-0.06912888762107434 +275479,1377.3950000184602,-0.06912886937667542 +275480,1377.4000000184603,-0.0691288511322465 +275481,1377.4050000184604,-0.0691288328877876 +275482,1377.4100000184606,-0.06912881464329877 +275483,1377.4150000184607,-0.06912879639878006 +275484,1377.4200000184608,-0.0691287781542315 +275485,1377.4250000184609,-0.06912875990965314 +275486,1377.430000018461,-0.06912874166504504 +275487,1377.435000018461,-0.06912872342040723 +275488,1377.4400000184612,-0.06912870517573975 +275489,1377.4450000184613,-0.06912868693104267 +275490,1377.4500000184614,-0.06912866868631601 +275491,1377.4550000184615,-0.06912865044155982 +275492,1377.4600000184616,-0.06912863219677413 +275493,1377.4650000184618,-0.06912861395195903 +275494,1377.4700000184619,-0.06912859570711452 +275495,1377.475000018462,-0.06912857746224066 +275496,1377.480000018462,-0.06912855921733749 +275497,1377.4850000184622,-0.06912854097240505 +275498,1377.4900000184623,-0.0691285227274434 +275499,1377.4950000184624,-0.06912850448245259 +275500,1377.5000000184625,-0.06912848623743265 +275501,1377.5050000184626,-0.0691284679923836 +275502,1377.5100000184627,-0.06912844974730555 +275503,1377.5150000184628,-0.06912843150219847 +275504,1377.520000018463,-0.06912841325706245 +275505,1377.525000018463,-0.06912839501189752 +275506,1377.5300000184632,-0.06912837676670373 +275507,1377.5350000184633,-0.06912835852148114 +275508,1377.5400000184634,-0.06912834027622977 +275509,1377.5450000184635,-0.06912832203094967 +275510,1377.5500000184636,-0.06912830378564089 +275511,1377.5550000184637,-0.06912828554030347 +275512,1377.5600000184638,-0.06912826729493744 +275513,1377.565000018464,-0.06912824904954289 +275514,1377.570000018464,-0.06912823080411983 +275515,1377.5750000184642,-0.0691282125586683 +275516,1377.5800000184643,-0.06912819431318834 +275517,1377.5850000184644,-0.06912817606768003 +275518,1377.5900000184645,-0.06912815782214339 +275519,1377.5950000184646,-0.06912813957657847 +275520,1377.6000000184647,-0.0691281213309853 +275521,1377.6050000184648,-0.06912810308536393 +275522,1377.610000018465,-0.06912808483971443 +275523,1377.615000018465,-0.06912806659403682 +275524,1377.6200000184651,-0.06912804834833115 +275525,1377.6250000184652,-0.06912803010259747 +275526,1377.6300000184654,-0.06912801185683581 +275527,1377.6350000184655,-0.06912799361104624 +275528,1377.6400000184656,-0.06912797536522879 +275529,1377.6450000184657,-0.06912795711938348 +275530,1377.6500000184658,-0.06912793887351039 +275531,1377.655000018466,-0.06912792062760954 +275532,1377.660000018466,-0.069127902381681 +275533,1377.6650000184661,-0.0691278841357248 +275534,1377.6700000184662,-0.06912786588974097 +275535,1377.6750000184663,-0.06912784764372958 +275536,1377.6800000184664,-0.06912782939769067 +275537,1377.6850000184666,-0.0691278111516243 +275538,1377.6900000184667,-0.06912779290553046 +275539,1377.6950000184668,-0.06912777465940924 +275540,1377.7000000184669,-0.06912775641326067 +275541,1377.705000018467,-0.0691277381670848 +275542,1377.710000018467,-0.06912771992088168 +275543,1377.7150000184672,-0.06912770167465133 +275544,1377.7200000184673,-0.06912768342839383 +275545,1377.7250000184674,-0.06912766518210918 +275546,1377.7300000184675,-0.06912764693579747 +275547,1377.7350000184676,-0.06912762868945872 +275548,1377.7400000184678,-0.06912761044309297 +275549,1377.7450000184679,-0.0691275921967003 +275550,1377.750000018468,-0.06912757395028071 +275551,1377.755000018468,-0.06912755570383426 +275552,1377.7600000184682,-0.069127537457361 +275553,1377.7650000184683,-0.06912751921086098 +275554,1377.7700000184684,-0.06912750096433423 +275555,1377.7750000184685,-0.06912748271778081 +275556,1377.7800000184686,-0.06912746447120074 +275557,1377.7850000184687,-0.06912744622459409 +275558,1377.7900000184688,-0.06912742797796088 +275559,1377.795000018469,-0.06912740973130119 +275560,1377.800000018469,-0.06912739148461504 +275561,1377.8050000184692,-0.06912737323790247 +275562,1377.8100000184693,-0.06912735499116353 +275563,1377.8150000184694,-0.06912733674439828 +275564,1377.8200000184695,-0.06912731849760675 +275565,1377.8250000184696,-0.06912730025078898 +275566,1377.8300000184697,-0.06912728200394502 +275567,1377.8350000184698,-0.06912726375707492 +275568,1377.84000001847,-0.06912724551017872 +275569,1377.84500001847,-0.06912722726325647 +275570,1377.8500000184702,-0.06912720901630821 +275571,1377.8550000184703,-0.06912719076933398 +275572,1377.8600000184704,-0.06912717252233383 +275573,1377.8650000184705,-0.06912715427530779 +275574,1377.8700000184706,-0.06912713602825593 +275575,1377.8750000184707,-0.06912711778117829 +275576,1377.8800000184708,-0.0691270995340749 +275577,1377.885000018471,-0.06912708128694581 +275578,1377.890000018471,-0.06912706303979108 +275579,1377.8950000184711,-0.06912704479261073 +275580,1377.9000000184712,-0.0691270265454048 +275581,1377.9050000184714,-0.06912700829817336 +275582,1377.9100000184715,-0.06912699005091645 +275583,1377.9150000184716,-0.06912697180363411 +275584,1377.9200000184717,-0.06912695355632636 +275585,1377.9250000184718,-0.0691269353089933 +275586,1377.930000018472,-0.06912691706163493 +275587,1377.935000018472,-0.06912689881425131 +275588,1377.9400000184721,-0.06912688056684248 +275589,1377.9450000184722,-0.06912686231940847 +275590,1377.9500000184723,-0.06912684407194937 +275591,1377.9550000184724,-0.06912682582446518 +275592,1377.9600000184726,-0.06912680757695595 +275593,1377.9650000184727,-0.06912678932942176 +275594,1377.9700000184728,-0.06912677108186262 +275595,1377.9750000184729,-0.06912675283427858 +275596,1377.980000018473,-0.06912673458666968 +275597,1377.985000018473,-0.069126716339036 +275598,1377.9900000184732,-0.06912669809137753 +275599,1377.9950000184733,-0.06912667984369436 +275600,1378.0000000184734,-0.06912666159598652 +275601,1378.0050000184735,-0.06912664334825404 +275602,1378.0100000184736,-0.06912662510049698 +275603,1378.0150000184738,-0.06912660685271539 +275604,1378.0200000184739,-0.06912658860490929 +275605,1378.025000018474,-0.06912657035707874 +275606,1378.030000018474,-0.06912655210922378 +275607,1378.0350000184742,-0.06912653386134447 +275608,1378.0400000184743,-0.06912651561344084 +275609,1378.0450000184744,-0.06912649736551295 +275610,1378.0500000184745,-0.06912647911756083 +275611,1378.0550000184746,-0.0691264608695845 +275612,1378.0600000184747,-0.06912644262158406 +275613,1378.0650000184748,-0.06912642437355952 +275614,1378.070000018475,-0.06912640612551092 +275615,1378.075000018475,-0.06912638787743833 +275616,1378.0800000184752,-0.06912636962934178 +275617,1378.0850000184753,-0.06912635138122131 +275618,1378.0900000184754,-0.06912633313307696 +275619,1378.0950000184755,-0.06912631488490881 +275620,1378.1000000184756,-0.06912629663671686 +275621,1378.1050000184757,-0.06912627838850118 +275622,1378.1100000184758,-0.06912626014026181 +275623,1378.115000018476,-0.06912624189199879 +275624,1378.120000018476,-0.06912622364371217 +275625,1378.1250000184762,-0.06912620539540199 +275626,1378.1300000184763,-0.06912618714706828 +275627,1378.1350000184764,-0.06912616889871112 +275628,1378.1400000184765,-0.06912615065033054 +275629,1378.1450000184766,-0.06912613240192655 +275630,1378.1500000184767,-0.06912611415349924 +275631,1378.1550000184768,-0.06912609590504865 +275632,1378.160000018477,-0.0691260776565748 +275633,1378.165000018477,-0.06912605940807777 +275634,1378.1700000184771,-0.06912604115955757 +275635,1378.1750000184772,-0.06912602291101426 +275636,1378.1800000184774,-0.06912600466244788 +275637,1378.1850000184775,-0.06912598641385849 +275638,1378.1900000184776,-0.0691259681652461 +275639,1378.1950000184777,-0.0691259499166108 +275640,1378.2000000184778,-0.06912593166795258 +275641,1378.205000018478,-0.06912591341927155 +275642,1378.210000018478,-0.0691258951705677 +275643,1378.2150000184781,-0.06912587692184109 +275644,1378.2200000184782,-0.06912585867309179 +275645,1378.2250000184783,-0.06912584042431981 +275646,1378.2300000184784,-0.06912582217552521 +275647,1378.2350000184786,-0.06912580392670803 +275648,1378.2400000184787,-0.06912578567786833 +275649,1378.2450000184788,-0.06912576742900613 +275650,1378.2500000184789,-0.06912574918012149 +275651,1378.255000018479,-0.06912573093121445 +275652,1378.260000018479,-0.06912571268228505 +275653,1378.2650000184792,-0.06912569443333337 +275654,1378.2700000184793,-0.06912567618435941 +275655,1378.2750000184794,-0.06912565793536322 +275656,1378.2800000184795,-0.06912563968634487 +275657,1378.2850000184796,-0.06912562143730439 +275658,1378.2900000184798,-0.06912560318824182 +275659,1378.2950000184799,-0.0691255849391572 +275660,1378.30000001848,-0.06912556669005059 +275661,1378.30500001848,-0.06912554844092203 +275662,1378.3100000184802,-0.06912553019177156 +275663,1378.3150000184803,-0.06912551194259924 +275664,1378.3200000184804,-0.0691254936934051 +275665,1378.3250000184805,-0.06912547544418916 +275666,1378.3300000184806,-0.06912545719495151 +275667,1378.3350000184807,-0.06912543894569219 +275668,1378.3400000184809,-0.06912542069641121 +275669,1378.345000018481,-0.06912540244710864 +275670,1378.350000018481,-0.06912538419778452 +275671,1378.3550000184812,-0.0691253659484389 +275672,1378.3600000184813,-0.06912534769907182 +275673,1378.3650000184814,-0.0691253294496833 +275674,1378.3700000184815,-0.06912531120027343 +275675,1378.3750000184816,-0.06912529295084224 +275676,1378.3800000184817,-0.06912527470138975 +275677,1378.3850000184818,-0.06912525645191604 +275678,1378.390000018482,-0.06912523820242113 +275679,1378.395000018482,-0.06912521995290508 +275680,1378.4000000184822,-0.0691252017033679 +275681,1378.4050000184823,-0.06912518345380969 +275682,1378.4100000184824,-0.06912516520423044 +275683,1378.4150000184825,-0.06912514695463023 +275684,1378.4200000184826,-0.0691251287050091 +275685,1378.4250000184827,-0.0691251104553671 +275686,1378.4300000184828,-0.06912509220570424 +275687,1378.435000018483,-0.06912507395602062 +275688,1378.440000018483,-0.06912505570631623 +275689,1378.4450000184831,-0.06912503745659114 +275690,1378.4500000184833,-0.0691250192068454 +275691,1378.4550000184834,-0.06912500095707903 +275692,1378.4600000184835,-0.06912498270729212 +275693,1378.4650000184836,-0.06912496445748467 +275694,1378.4700000184837,-0.06912494620765673 +275695,1378.4750000184838,-0.06912492795780838 +275696,1378.480000018484,-0.06912490970793964 +275697,1378.485000018484,-0.06912489145805055 +275698,1378.4900000184841,-0.06912487320814116 +275699,1378.4950000184842,-0.0691248549582115 +275700,1378.5000000184843,-0.06912483670826164 +275701,1378.5050000184845,-0.06912481845829162 +275702,1378.5100000184846,-0.06912480020830147 +275703,1378.5150000184847,-0.06912478195829125 +275704,1378.5200000184848,-0.069124763708261 +275705,1378.525000018485,-0.06912474545821075 +275706,1378.530000018485,-0.06912472720814057 +275707,1378.535000018485,-0.0691247089580505 +275708,1378.5400000184852,-0.06912469070794056 +275709,1378.5450000184853,-0.06912467245781082 +275710,1378.5500000184854,-0.06912465420766131 +275711,1378.5550000184855,-0.06912463595749209 +275712,1378.5600000184857,-0.06912461770730319 +275713,1378.5650000184858,-0.06912459945709466 +275714,1378.5700000184859,-0.06912458120686654 +275715,1378.575000018486,-0.0691245629566189 +275716,1378.580000018486,-0.06912454470635174 +275717,1378.5850000184862,-0.06912452645606514 +275718,1378.5900000184863,-0.06912450820575913 +275719,1378.5950000184864,-0.06912448995543376 +275720,1378.6000000184865,-0.06912447170508906 +275721,1378.6050000184866,-0.06912445345472511 +275722,1378.6100000184867,-0.0691244352043419 +275723,1378.6150000184869,-0.06912441695393953 +275724,1378.620000018487,-0.06912439870351803 +275725,1378.625000018487,-0.06912438045307742 +275726,1378.6300000184872,-0.06912436220261778 +275727,1378.6350000184873,-0.06912434395213911 +275728,1378.6400000184874,-0.0691243257016415 +275729,1378.6450000184875,-0.06912430745112497 +275730,1378.6500000184876,-0.06912428920058956 +275731,1378.6550000184877,-0.06912427095003533 +275732,1378.6600000184878,-0.06912425269946232 +275733,1378.665000018488,-0.06912423444887057 +275734,1378.670000018488,-0.06912421619826013 +275735,1378.6750000184882,-0.06912419794763104 +275736,1378.6800000184883,-0.06912417969698337 +275737,1378.6850000184884,-0.06912416144631713 +275738,1378.6900000184885,-0.06912414319563236 +275739,1378.6950000184886,-0.06912412494492914 +275740,1378.7000000184887,-0.06912410669420749 +275741,1378.7050000184888,-0.06912408844346746 +275742,1378.710000018489,-0.0691240701927091 +275743,1378.715000018489,-0.06912405194193245 +275744,1378.7200000184891,-0.06912403369113755 +275745,1378.7250000184893,-0.06912401544032445 +275746,1378.7300000184894,-0.0691239971894932 +275747,1378.7350000184895,-0.06912397893864385 +275748,1378.7400000184896,-0.06912396068777642 +275749,1378.7450000184897,-0.06912394243689098 +275750,1378.7500000184898,-0.06912392418598755 +275751,1378.75500001849,-0.06912390593506619 +275752,1378.76000001849,-0.06912388768412694 +275753,1378.7650000184901,-0.06912386943316987 +275754,1378.7700000184902,-0.06912385118219497 +275755,1378.7750000184903,-0.06912383293120233 +275756,1378.7800000184905,-0.06912381468019199 +275757,1378.7850000184906,-0.06912379642916397 +275758,1378.7900000184907,-0.06912377817811835 +275759,1378.7950000184908,-0.06912375992705513 +275760,1378.800000018491,-0.0691237416759744 +275761,1378.805000018491,-0.06912372342487617 +275762,1378.810000018491,-0.06912370517376051 +275763,1378.8150000184912,-0.06912368692262746 +275764,1378.8200000184913,-0.06912366867147705 +275765,1378.8250000184914,-0.06912365042030934 +275766,1378.8300000184915,-0.06912363216912436 +275767,1378.8350000184917,-0.06912361391792217 +275768,1378.8400000184918,-0.06912359566670281 +275769,1378.8450000184919,-0.06912357741546633 +275770,1378.850000018492,-0.06912355916421276 +275771,1378.855000018492,-0.06912354091294215 +275772,1378.8600000184922,-0.06912352266165454 +275773,1378.8650000184923,-0.06912350441034999 +275774,1378.8700000184924,-0.06912348615902855 +275775,1378.8750000184925,-0.06912346790769022 +275776,1378.8800000184926,-0.0691234496563351 +275777,1378.8850000184927,-0.0691234314049632 +275778,1378.8900000184929,-0.06912341315357458 +275779,1378.895000018493,-0.06912339490216927 +275780,1378.900000018493,-0.06912337665074733 +275781,1378.9050000184932,-0.0691233583993088 +275782,1378.9100000184933,-0.06912334014785372 +275783,1378.9150000184934,-0.06912332189638215 +275784,1378.9200000184935,-0.06912330364489412 +275785,1378.9250000184936,-0.06912328539338967 +275786,1378.9300000184937,-0.06912326714186887 +275787,1378.9350000184938,-0.06912324889033174 +275788,1378.940000018494,-0.06912323063877833 +275789,1378.945000018494,-0.06912321238720869 +275790,1378.9500000184942,-0.06912319413562286 +275791,1378.9550000184943,-0.06912317588402088 +275792,1378.9600000184944,-0.06912315763240282 +275793,1378.9650000184945,-0.06912313938076868 +275794,1378.9700000184946,-0.06912312112911853 +275795,1378.9750000184947,-0.06912310287745242 +275796,1378.9800000184948,-0.06912308462577041 +275797,1378.985000018495,-0.0691230663740725 +275798,1378.990000018495,-0.06912304812235878 +275799,1378.9950000184951,-0.06912302987062927 +275800,1379.0000000184953,-0.06912301161888401 +275801,1379.0050000184954,-0.06912299336712306 +275802,1379.0100000184955,-0.06912297511534644 +275803,1379.0150000184956,-0.06912295686355424 +275804,1379.0200000184957,-0.06912293861174647 +275805,1379.0250000184958,-0.06912292035992318 +275806,1379.030000018496,-0.0691229021080844 +275807,1379.035000018496,-0.06912288385623022 +275808,1379.0400000184961,-0.06912286560436064 +275809,1379.0450000184962,-0.06912284735247573 +275810,1379.0500000184963,-0.06912282910057553 +275811,1379.0550000184965,-0.06912281084866008 +275812,1379.0600000184966,-0.06912279259672943 +275813,1379.0650000184967,-0.0691227743447836 +275814,1379.0700000184968,-0.06912275609282267 +275815,1379.075000018497,-0.06912273784084667 +275816,1379.080000018497,-0.06912271958885564 +275817,1379.085000018497,-0.06912270133684963 +275818,1379.0900000184972,-0.06912268308482868 +275819,1379.0950000184973,-0.06912266483279285 +275820,1379.1000000184974,-0.06912264658074217 +275821,1379.1050000184975,-0.06912262832867669 +275822,1379.1100000184977,-0.06912261007659645 +275823,1379.1150000184978,-0.0691225918245015 +275824,1379.1200000184979,-0.06912257357239188 +275825,1379.125000018498,-0.06912255532026762 +275826,1379.130000018498,-0.0691225370681288 +275827,1379.1350000184982,-0.06912251881597546 +275828,1379.1400000184983,-0.0691225005638076 +275829,1379.1450000184984,-0.06912248231162532 +275830,1379.1500000184985,-0.06912246405942864 +275831,1379.1550000184986,-0.0691224458072176 +275832,1379.1600000184987,-0.06912242755499226 +275833,1379.1650000184989,-0.06912240930275264 +275834,1379.170000018499,-0.0691223910504988 +275835,1379.175000018499,-0.0691223727982308 +275836,1379.1800000184992,-0.06912235454594867 +275837,1379.1850000184993,-0.06912233629365244 +275838,1379.1900000184994,-0.06912231804134217 +275839,1379.1950000184995,-0.0691222997890179 +275840,1379.2000000184996,-0.0691222815366797 +275841,1379.2050000184997,-0.06912226328432758 +275842,1379.2100000184998,-0.0691222450319616 +275843,1379.2150000185,-0.0691222267795818 +275844,1379.2200000185,-0.06912220852718823 +275845,1379.2250000185002,-0.06912219027478092 +275846,1379.2300000185003,-0.06912217202235994 +275847,1379.2350000185004,-0.06912215376992534 +275848,1379.2400000185005,-0.06912213551747712 +275849,1379.2450000185006,-0.06912211726501537 +275850,1379.2500000185007,-0.06912209901254009 +275851,1379.2550000185008,-0.06912208076005136 +275852,1379.260000018501,-0.06912206250754924 +275853,1379.265000018501,-0.06912204425503372 +275854,1379.2700000185012,-0.0691220260025049 +275855,1379.2750000185013,-0.06912200774996279 +275856,1379.2800000185014,-0.06912198949740744 +275857,1379.2850000185015,-0.0691219712448389 +275858,1379.2900000185016,-0.06912195299225722 +275859,1379.2950000185017,-0.06912193473966244 +275860,1379.3000000185018,-0.0691219164870546 +275861,1379.305000018502,-0.06912189823443375 +275862,1379.310000018502,-0.06912187998179992 +275863,1379.3150000185021,-0.06912186172915319 +275864,1379.3200000185022,-0.06912184347649357 +275865,1379.3250000185024,-0.06912182522382113 +275866,1379.3300000185025,-0.06912180697113589 +275867,1379.3350000185026,-0.0691217887184379 +275868,1379.3400000185027,-0.06912177046572722 +275869,1379.3450000185028,-0.06912175221300389 +275870,1379.350000018503,-0.06912173396026795 +275871,1379.355000018503,-0.06912171570751945 +275872,1379.3600000185031,-0.06912169745475842 +275873,1379.3650000185032,-0.06912167920198492 +275874,1379.3700000185033,-0.069121660949199 +275875,1379.3750000185034,-0.06912164269640068 +275876,1379.3800000185036,-0.06912162444359003 +275877,1379.3850000185037,-0.0691216061907671 +275878,1379.3900000185038,-0.06912158793793191 +275879,1379.3950000185039,-0.06912156968508451 +275880,1379.400000018504,-0.06912155143222495 +275881,1379.405000018504,-0.06912153317935327 +275882,1379.4100000185042,-0.06912151492646952 +275883,1379.4150000185043,-0.06912149667357374 +275884,1379.4200000185044,-0.069121478420666 +275885,1379.4250000185045,-0.0691214601677463 +275886,1379.4300000185046,-0.06912144191481472 +275887,1379.4350000185048,-0.06912142366187128 +275888,1379.4400000185049,-0.06912140540891605 +275889,1379.445000018505,-0.06912138715594905 +275890,1379.450000018505,-0.06912136890297035 +275891,1379.4550000185052,-0.06912135064997997 +275892,1379.4600000185053,-0.06912133239697797 +275893,1379.4650000185054,-0.0691213141439644 +275894,1379.4700000185055,-0.0691212958909393 +275895,1379.4750000185056,-0.0691212776379027 +275896,1379.4800000185057,-0.06912125938485465 +275897,1379.4850000185058,-0.06912124113179521 +275898,1379.490000018506,-0.06912122287872442 +275899,1379.495000018506,-0.06912120462564232 +275900,1379.5000000185062,-0.06912118637254895 +275901,1379.5050000185063,-0.06912116811944435 +275902,1379.5100000185064,-0.06912114986632859 +275903,1379.5150000185065,-0.06912113161320169 +275904,1379.5200000185066,-0.0691211133600637 +275905,1379.5250000185067,-0.06912109510691468 +275906,1379.5300000185068,-0.06912107685375465 +275907,1379.535000018507,-0.06912105860058368 +275908,1379.540000018507,-0.06912104034740181 +275909,1379.5450000185072,-0.06912102209420908 +275910,1379.5500000185073,-0.0691210038410055 +275911,1379.5550000185074,-0.06912098558779117 +275912,1379.5600000185075,-0.0691209673345661 +275913,1379.5650000185076,-0.06912094908133037 +275914,1379.5700000185077,-0.06912093082808399 +275915,1379.5750000185078,-0.06912091257482701 +275916,1379.580000018508,-0.06912089432155949 +275917,1379.585000018508,-0.06912087606828146 +275918,1379.5900000185081,-0.06912085781499297 +275919,1379.5950000185082,-0.06912083956169408 +275920,1379.6000000185084,-0.06912082130838482 +275921,1379.6050000185085,-0.06912080305506522 +275922,1379.6100000185086,-0.06912078480173535 +275923,1379.6150000185087,-0.06912076654839526 +275924,1379.6200000185088,-0.06912074829504496 +275925,1379.625000018509,-0.06912073004168452 +275926,1379.630000018509,-0.06912071178831398 +275927,1379.6350000185091,-0.0691206935349334 +275928,1379.6400000185092,-0.0691206752815428 +275929,1379.6450000185093,-0.06912065702814223 +275930,1379.6500000185094,-0.06912063877473174 +275931,1379.6550000185096,-0.06912062052131136 +275932,1379.6600000185097,-0.06912060226788116 +275933,1379.6650000185098,-0.06912058401444118 +275934,1379.6700000185099,-0.06912056576099146 +275935,1379.67500001851,-0.06912054750753202 +275936,1379.68000001851,-0.06912052925406295 +275937,1379.6850000185102,-0.06912051100058426 +275938,1379.6900000185103,-0.06912049274709602 +275939,1379.6950000185104,-0.06912047449359823 +275940,1379.7000000185105,-0.069120456240091 +275941,1379.7050000185106,-0.06912043798657433 +275942,1379.7100000185108,-0.06912041973304828 +275943,1379.7150000185109,-0.0691204014795129 +275944,1379.720000018511,-0.06912038322596821 +275945,1379.725000018511,-0.06912036497241428 +275946,1379.7300000185112,-0.06912034671885114 +275947,1379.7350000185113,-0.06912032846527885 +275948,1379.7400000185114,-0.06912031021169744 +275949,1379.7450000185115,-0.06912029195810697 +275950,1379.7500000185116,-0.06912027370450746 +275951,1379.7550000185117,-0.06912025545089896 +275952,1379.7600000185118,-0.06912023719728155 +275953,1379.765000018512,-0.06912021894365525 +275954,1379.770000018512,-0.0691202006900201 +275955,1379.7750000185122,-0.06912018243637615 +275956,1379.7800000185123,-0.06912016418272343 +275957,1379.7850000185124,-0.069120145929062 +275958,1379.7900000185125,-0.06912012767539191 +275959,1379.7950000185126,-0.0691201094217132 +275960,1379.8000000185127,-0.06912009116802592 +275961,1379.8050000185128,-0.06912007291433012 +275962,1379.810000018513,-0.06912005466062582 +275963,1379.815000018513,-0.06912003640691305 +275964,1379.8200000185132,-0.06912001815319192 +275965,1379.8250000185133,-0.06911999989946242 +275966,1379.8300000185134,-0.06911998164572462 +275967,1379.8350000185135,-0.06911996339197855 +275968,1379.8400000185136,-0.06911994513822428 +275969,1379.8450000185137,-0.06911992688446182 +275970,1379.8500000185138,-0.06911990863069123 +275971,1379.855000018514,-0.06911989037691256 +275972,1379.860000018514,-0.06911987212312586 +275973,1379.8650000185141,-0.06911985386933116 +275974,1379.8700000185142,-0.06911983561552851 +275975,1379.8750000185144,-0.06911981736171795 +275976,1379.8800000185145,-0.06911979910789955 +275977,1379.8850000185146,-0.06911978085407332 +275978,1379.8900000185147,-0.06911976260023932 +275979,1379.8950000185148,-0.0691197443463976 +275980,1379.900000018515,-0.0691197260925482 +275981,1379.905000018515,-0.06911970783869116 +275982,1379.9100000185151,-0.06911968958482653 +275983,1379.9150000185152,-0.06911967133095437 +275984,1379.9200000185153,-0.06911965307707468 +275985,1379.9250000185154,-0.06911963482318756 +275986,1379.9300000185156,-0.06911961656929301 +275987,1379.9350000185157,-0.06911959831539112 +275988,1379.9400000185158,-0.06911958006148189 +275989,1379.9450000185159,-0.06911956180756537 +275990,1379.950000018516,-0.06911954355364165 +275991,1379.955000018516,-0.06911952529971073 +275992,1379.9600000185162,-0.06911950704577266 +275993,1379.9650000185163,-0.06911948879182751 +275994,1379.9700000185164,-0.06911947053787529 +275995,1379.9750000185165,-0.06911945228391607 +275996,1379.9800000185166,-0.06911943402994988 +275997,1379.9850000185168,-0.06911941577597679 +275998,1379.9900000185169,-0.06911939752199682 +275999,1379.995000018517,-0.06911937926801003 +276000,1380.000000018517,-0.06911936101401643 +276001,1380.0050000185172,-0.0691193427600161 +276002,1380.0100000185173,-0.06911932450600909 +276003,1380.0150000185174,-0.06911930625199543 +276004,1380.0200000185175,-0.06911928799797516 +276005,1380.0250000185176,-0.06911926974394834 +276006,1380.0300000185177,-0.069119251489915 +276007,1380.0350000185178,-0.06911923323587518 +276008,1380.040000018518,-0.06911921498182895 +276009,1380.045000018518,-0.06911919672777635 +276010,1380.0500000185182,-0.0691191784737174 +276011,1380.0550000185183,-0.06911916021965216 +276012,1380.0600000185184,-0.06911914196558068 +276013,1380.0650000185185,-0.069119123711503 +276014,1380.0700000185186,-0.06911910545741916 +276015,1380.0750000185187,-0.0691190872033292 +276016,1380.0800000185188,-0.0691190689492332 +276017,1380.085000018519,-0.06911905069513116 +276018,1380.090000018519,-0.06911903244102316 +276019,1380.0950000185192,-0.06911901418690922 +276020,1380.1000000185193,-0.06911899593278939 +276021,1380.1050000185194,-0.06911897767866372 +276022,1380.1100000185195,-0.06911895942453226 +276023,1380.1150000185196,-0.06911894117039505 +276024,1380.1200000185197,-0.06911892291625213 +276025,1380.1250000185198,-0.06911890466210355 +276026,1380.13000001852,-0.06911888640794935 +276027,1380.13500001852,-0.06911886815378958 +276028,1380.1400000185201,-0.06911884989962429 +276029,1380.1450000185202,-0.0691188316454535 +276030,1380.1500000185204,-0.06911881339127728 +276031,1380.1550000185205,-0.06911879513709566 +276032,1380.1600000185206,-0.06911877688290871 +276033,1380.1650000185207,-0.06911875862871646 +276034,1380.1700000185208,-0.06911874037451893 +276035,1380.175000018521,-0.0691187221203162 +276036,1380.180000018521,-0.06911870386610829 +276037,1380.1850000185211,-0.06911868561189526 +276038,1380.1900000185212,-0.06911866735767716 +276039,1380.1950000185213,-0.06911864910345401 +276040,1380.2000000185215,-0.0691186308492259 +276041,1380.2050000185216,-0.06911861259499283 +276042,1380.2100000185217,-0.06911859434075486 +276043,1380.2150000185218,-0.06911857608651203 +276044,1380.220000018522,-0.06911855783226441 +276045,1380.225000018522,-0.069118539578012 +276046,1380.230000018522,-0.06911852132375489 +276047,1380.2350000185222,-0.0691185030694931 +276048,1380.2400000185223,-0.06911848481522669 +276049,1380.2450000185224,-0.06911846656095569 +276050,1380.2500000185225,-0.06911844830668014 +276051,1380.2550000185227,-0.0691184300524001 +276052,1380.2600000185228,-0.06911841179811562 +276053,1380.2650000185229,-0.06911839354382672 +276054,1380.270000018523,-0.06911837528953346 +276055,1380.275000018523,-0.06911835703523589 +276056,1380.2800000185232,-0.06911833878093404 +276057,1380.2850000185233,-0.06911832052662797 +276058,1380.2900000185234,-0.06911830227231772 +276059,1380.2950000185235,-0.06911828401800334 +276060,1380.3000000185236,-0.06911826576368486 +276061,1380.3050000185237,-0.06911824750936234 +276062,1380.3100000185239,-0.06911822925503582 +276063,1380.315000018524,-0.06911821100070534 +276064,1380.320000018524,-0.06911819274637093 +276065,1380.3250000185242,-0.06911817449203268 +276066,1380.3300000185243,-0.0691181562376906 +276067,1380.3350000185244,-0.06911813798334474 +276068,1380.3400000185245,-0.06911811972899516 +276069,1380.3450000185246,-0.06911810147464188 +276070,1380.3500000185247,-0.06911808322028495 +276071,1380.3550000185248,-0.06911806496592444 +276072,1380.360000018525,-0.06911804671156038 +276073,1380.365000018525,-0.06911802845719281 +276074,1380.3700000185252,-0.06911801020282177 +276075,1380.3750000185253,-0.0691179919484473 +276076,1380.3800000185254,-0.06911797369406947 +276077,1380.3850000185255,-0.06911795543968831 +276078,1380.3900000185256,-0.06911793718530386 +276079,1380.3950000185257,-0.06911791893091618 +276080,1380.4000000185258,-0.06911790067652529 +276081,1380.405000018526,-0.06911788242213128 +276082,1380.410000018526,-0.06911786416773415 +276083,1380.4150000185261,-0.06911784591333395 +276084,1380.4200000185263,-0.06911782765893075 +276085,1380.4250000185264,-0.06911780940452458 +276086,1380.4300000185265,-0.06911779115011549 +276087,1380.4350000185266,-0.0691177728957035 +276088,1380.4400000185267,-0.0691177546412887 +276089,1380.4450000185268,-0.0691177363868711 +276090,1380.450000018527,-0.06911771813245077 +276091,1380.455000018527,-0.06911769987802772 +276092,1380.4600000185271,-0.06911768162360203 +276093,1380.4650000185272,-0.06911766336917372 +276094,1380.4700000185273,-0.06911764511474285 +276095,1380.4750000185275,-0.06911762686030946 +276096,1380.4800000185276,-0.06911760860587358 +276097,1380.4850000185277,-0.06911759035143529 +276098,1380.4900000185278,-0.06911757209699461 +276099,1380.495000018528,-0.06911755384255158 +276100,1380.500000018528,-0.06911753558810627 +276101,1380.505000018528,-0.0691175173336587 +276102,1380.5100000185282,-0.06911749907920893 +276103,1380.5150000185283,-0.069117480824757 +276104,1380.5200000185284,-0.06911746257030295 +276105,1380.5250000185285,-0.06911744431584682 +276106,1380.5300000185287,-0.06911742606138867 +276107,1380.5350000185288,-0.06911740780692854 +276108,1380.5400000185289,-0.06911738955246648 +276109,1380.545000018529,-0.06911737129800252 +276110,1380.550000018529,-0.06911735304353672 +276111,1380.5550000185292,-0.06911733478906912 +276112,1380.5600000185293,-0.06911731653459975 +276113,1380.5650000185294,-0.06911729828012868 +276114,1380.5700000185295,-0.06911728002565592 +276115,1380.5750000185296,-0.06911726177118156 +276116,1380.5800000185297,-0.06911724351670562 +276117,1380.5850000185299,-0.06911722526222815 +276118,1380.59000001853,-0.06911720700774919 +276119,1380.59500001853,-0.06911718875326878 +276120,1380.6000000185302,-0.06911717049878698 +276121,1380.6050000185303,-0.06911715224430383 +276122,1380.6100000185304,-0.06911713398981936 +276123,1380.6150000185305,-0.06911711573533365 +276124,1380.6200000185306,-0.0691170974808467 +276125,1380.6250000185307,-0.06911707922635858 +276126,1380.6300000185308,-0.06911706097186934 +276127,1380.635000018531,-0.06911704271737901 +276128,1380.640000018531,-0.06911702446288764 +276129,1380.6450000185312,-0.06911700620839528 +276130,1380.6500000185313,-0.06911698795390198 +276131,1380.6550000185314,-0.06911696969940777 +276132,1380.6600000185315,-0.06911695144491269 +276133,1380.6650000185316,-0.0691169331904168 +276134,1380.6700000185317,-0.06911691493592015 +276135,1380.6750000185318,-0.06911689668142278 +276136,1380.680000018532,-0.06911687842692471 +276137,1380.685000018532,-0.06911686017242603 +276138,1380.6900000185321,-0.06911684191792675 +276139,1380.6950000185323,-0.06911682366342693 +276140,1380.7000000185324,-0.0691168054089266 +276141,1380.7050000185325,-0.06911678715442583 +276142,1380.7100000185326,-0.06911676889992466 +276143,1380.7150000185327,-0.0691167506454231 +276144,1380.7200000185328,-0.06911673239092123 +276145,1380.725000018533,-0.0691167141364191 +276146,1380.730000018533,-0.06911669588191671 +276147,1380.7350000185331,-0.06911667762741416 +276148,1380.7400000185332,-0.06911665937291148 +276149,1380.7450000185333,-0.06911664111840868 +276150,1380.7500000185335,-0.06911662286390584 +276151,1380.7550000185336,-0.06911660460940298 +276152,1380.7600000185337,-0.06911658635490019 +276153,1380.7650000185338,-0.06911656810039746 +276154,1380.770000018534,-0.06911654984589487 +276155,1380.775000018534,-0.06911653159139244 +276156,1380.780000018534,-0.06911651333689026 +276157,1380.7850000185342,-0.06911649508238832 +276158,1380.7900000185343,-0.06911647682788669 +276159,1380.7950000185344,-0.06911645857338541 +276160,1380.8000000185345,-0.06911644031888454 +276161,1380.8050000185347,-0.0691164220643841 +276162,1380.8100000185348,-0.06911640380988418 +276163,1380.8150000185349,-0.06911638555538477 +276164,1380.820000018535,-0.06911636730088594 +276165,1380.825000018535,-0.06911634904638773 +276166,1380.8300000185352,-0.06911633079189021 +276167,1380.8350000185353,-0.06911631253739338 +276168,1380.8400000185354,-0.06911629428289733 +276169,1380.8450000185355,-0.06911627602840208 +276170,1380.8500000185356,-0.06911625777390766 +276171,1380.8550000185357,-0.06911623951941415 +276172,1380.8600000185359,-0.06911622126492158 +276173,1380.865000018536,-0.06911620301042999 +276174,1380.870000018536,-0.06911618475593942 +276175,1380.8750000185362,-0.06911616650144993 +276176,1380.8800000185363,-0.06911614824696156 +276177,1380.8850000185364,-0.06911612999247435 +276178,1380.8900000185365,-0.06911611173798834 +276179,1380.8950000185366,-0.0691160934835036 +276180,1380.9000000185367,-0.06911607522902015 +276181,1380.9050000185368,-0.06911605697453806 +276182,1380.910000018537,-0.06911603872005734 +276183,1380.915000018537,-0.06911602046557805 +276184,1380.9200000185372,-0.06911600221110024 +276185,1380.9250000185373,-0.06911598395662395 +276186,1380.9300000185374,-0.06911596570214923 +276187,1380.9350000185375,-0.06911594744767612 +276188,1380.9400000185376,-0.06911592919320468 +276189,1380.9450000185377,-0.06911591093873493 +276190,1380.9500000185378,-0.06911589268426692 +276191,1380.955000018538,-0.06911587442980072 +276192,1380.960000018538,-0.06911585617533635 +276193,1380.9650000185381,-0.06911583792087386 +276194,1380.9700000185383,-0.06911581966641331 +276195,1380.9750000185384,-0.06911580141195472 +276196,1380.9800000185385,-0.06911578315749814 +276197,1380.9850000185386,-0.06911576490304364 +276198,1380.9900000185387,-0.06911574664859124 +276199,1380.9950000185388,-0.06911572839414099 +276200,1381.000000018539,-0.06911571013969293 +276201,1381.005000018539,-0.06911569188524713 +276202,1381.0100000185391,-0.0691156736308036 +276203,1381.0150000185392,-0.06911565537636241 +276204,1381.0200000185393,-0.0691156371219236 +276205,1381.0250000185395,-0.0691156188674872 +276206,1381.0300000185396,-0.06911560061305327 +276207,1381.0350000185397,-0.06911558235862185 +276208,1381.0400000185398,-0.06911556410419299 +276209,1381.04500001854,-0.06911554584976672 +276210,1381.05000001854,-0.06911552759534312 +276211,1381.05500001854,-0.06911550934092218 +276212,1381.0600000185402,-0.06911549108650401 +276213,1381.0650000185403,-0.0691154728320886 +276214,1381.0700000185404,-0.06911545457767602 +276215,1381.0750000185405,-0.0691154363232663 +276216,1381.0800000185407,-0.06911541806885951 +276217,1381.0850000185408,-0.06911539981445569 +276218,1381.0900000185409,-0.06911538156005485 +276219,1381.095000018541,-0.06911536330565708 +276220,1381.100000018541,-0.0691153450512624 +276221,1381.1050000185412,-0.06911532679687088 +276222,1381.1100000185413,-0.06911530854248253 +276223,1381.1150000185414,-0.0691152902880974 +276224,1381.1200000185415,-0.06911527203371556 +276225,1381.1250000185416,-0.06911525377933704 +276226,1381.1300000185418,-0.06911523552496188 +276227,1381.1350000185419,-0.06911521727059013 +276228,1381.140000018542,-0.06911519901622183 +276229,1381.145000018542,-0.06911518076185705 +276230,1381.1500000185422,-0.0691151625074958 +276231,1381.1550000185423,-0.06911514425313814 +276232,1381.1600000185424,-0.06911512599878412 +276233,1381.1650000185425,-0.06911510774443379 +276234,1381.1700000185426,-0.06911508949008717 +276235,1381.1750000185427,-0.06911507123574433 +276236,1381.1800000185428,-0.0691150529814053 +276237,1381.185000018543,-0.06911503472707013 +276238,1381.190000018543,-0.06911501647273886 +276239,1381.1950000185432,-0.06911499821841155 +276240,1381.2000000185433,-0.06911497996408822 +276241,1381.2050000185434,-0.06911496170976895 +276242,1381.2100000185435,-0.06911494345545376 +276243,1381.2150000185436,-0.0691149252011427 +276244,1381.2200000185437,-0.06911490694683581 +276245,1381.2250000185438,-0.06911488869253313 +276246,1381.230000018544,-0.06911487043823472 +276247,1381.235000018544,-0.06911485218394063 +276248,1381.2400000185442,-0.06911483392965088 +276249,1381.2450000185443,-0.06911481567536555 +276250,1381.2500000185444,-0.06911479742108466 +276251,1381.2550000185445,-0.06911477916680825 +276252,1381.2600000185446,-0.06911476091253639 +276253,1381.2650000185447,-0.0691147426582691 +276254,1381.2700000185448,-0.06911472440400643 +276255,1381.275000018545,-0.06911470614974843 +276256,1381.280000018545,-0.06911468789549516 +276257,1381.2850000185451,-0.06911466964124663 +276258,1381.2900000185452,-0.06911465138700291 +276259,1381.2950000185454,-0.06911463313276404 +276260,1381.3000000185455,-0.06911461487853006 +276261,1381.3050000185456,-0.06911459662430103 +276262,1381.3100000185457,-0.06911457837007698 +276263,1381.3150000185458,-0.06911456011585795 +276264,1381.320000018546,-0.06911454186164402 +276265,1381.325000018546,-0.0691145236074352 +276266,1381.3300000185461,-0.06911450535323152 +276267,1381.3350000185462,-0.06911448709903308 +276268,1381.3400000185463,-0.06911446884483988 +276269,1381.3450000185464,-0.06911445059065197 +276270,1381.3500000185466,-0.06911443233646943 +276271,1381.3550000185467,-0.06911441408229226 +276272,1381.3600000185468,-0.06911439582812053 +276273,1381.3650000185469,-0.06911437757395428 +276274,1381.370000018547,-0.06911435931979354 +276275,1381.375000018547,-0.06911434106563837 +276276,1381.3800000185472,-0.06911432281148883 +276277,1381.3850000185473,-0.06911430455734494 +276278,1381.3900000185474,-0.06911428630320675 +276279,1381.3950000185475,-0.06911426804907432 +276280,1381.4000000185476,-0.06911424979494768 +276281,1381.4050000185478,-0.06911423154082688 +276282,1381.4100000185479,-0.06911421328671195 +276283,1381.415000018548,-0.06911419503260297 +276284,1381.420000018548,-0.06911417677849996 +276285,1381.4250000185482,-0.06911415852440296 +276286,1381.4300000185483,-0.06911414027031203 +276287,1381.4350000185484,-0.0691141220162272 +276288,1381.4400000185485,-0.06911410376214853 +276289,1381.4450000185486,-0.06911408550807606 +276290,1381.4500000185487,-0.06911406725400984 +276291,1381.4550000185488,-0.0691140489999499 +276292,1381.460000018549,-0.0691140307458963 +276293,1381.465000018549,-0.06911401249184908 +276294,1381.4700000185492,-0.06911399423780828 +276295,1381.4750000185493,-0.06911397598377396 +276296,1381.4800000185494,-0.06911395772974613 +276297,1381.4850000185495,-0.06911393947572488 +276298,1381.4900000185496,-0.06911392122171021 +276299,1381.4950000185497,-0.0691139029677022 +276300,1381.5000000185498,-0.06911388471370089 +276301,1381.50500001855,-0.06911386645970631 +276302,1381.51000001855,-0.06911384820571853 +276303,1381.5150000185502,-0.06911382995173758 +276304,1381.5200000185503,-0.06911381169776348 +276305,1381.5250000185504,-0.06911379344379631 +276306,1381.5300000185505,-0.06911377518983611 +276307,1381.5350000185506,-0.06911375693588291 +276308,1381.5400000185507,-0.06911373868193676 +276309,1381.5450000185508,-0.06911372042799772 +276310,1381.550000018551,-0.06911370217406582 +276311,1381.555000018551,-0.06911368392014111 +276312,1381.5600000185511,-0.06911366566622364 +276313,1381.5650000185512,-0.06911364741231345 +276314,1381.5700000185514,-0.06911362915841056 +276315,1381.5750000185515,-0.06911361090451505 +276316,1381.5800000185516,-0.06911359265062696 +276317,1381.5850000185517,-0.06911357439674631 +276318,1381.5900000185518,-0.06911355614287318 +276319,1381.595000018552,-0.0691135378890076 +276320,1381.600000018552,-0.06911351963514961 +276321,1381.6050000185521,-0.06911350138129926 +276322,1381.6100000185522,-0.06911348312745659 +276323,1381.6150000185523,-0.06911346487362165 +276324,1381.6200000185524,-0.06911344661979449 +276325,1381.6250000185526,-0.06911342836597514 +276326,1381.6300000185527,-0.06911341011216367 +276327,1381.6350000185528,-0.06911339185836009 +276328,1381.6400000185529,-0.06911337360456447 +276329,1381.645000018553,-0.06911335535077685 +276330,1381.650000018553,-0.06911333709699728 +276331,1381.6550000185532,-0.0691133188432258 +276332,1381.6600000185533,-0.06911330058946244 +276333,1381.6650000185534,-0.06911328233570727 +276334,1381.6700000185535,-0.06911326408196031 +276335,1381.6750000185536,-0.06911324582822162 +276336,1381.6800000185538,-0.06911322757449125 +276337,1381.6850000185539,-0.06911320932076923 +276338,1381.690000018554,-0.06911319106705563 +276339,1381.695000018554,-0.06911317281335046 +276340,1381.7000000185542,-0.06911315455965379 +276341,1381.7050000185543,-0.06911313630596568 +276342,1381.7100000185544,-0.06911311805228612 +276343,1381.7150000185545,-0.06911309979861521 +276344,1381.7200000185546,-0.06911308154495296 +276345,1381.7250000185547,-0.06911306329129945 +276346,1381.7300000185548,-0.06911304503765468 +276347,1381.735000018555,-0.06911302678401873 +276348,1381.740000018555,-0.06911300853039164 +276349,1381.7450000185552,-0.06911299027677345 +276350,1381.7500000185553,-0.06911297202316419 +276351,1381.7550000185554,-0.06911295376956393 +276352,1381.7600000185555,-0.0691129355159727 +276353,1381.7650000185556,-0.06911291726239054 +276354,1381.7700000185557,-0.06911289900881751 +276355,1381.7750000185558,-0.06911288075525364 +276356,1381.780000018556,-0.069112862501699 +276357,1381.785000018556,-0.0691128442481536 +276358,1381.7900000185562,-0.06911282599461753 +276359,1381.7950000185563,-0.0691128077410908 +276360,1381.8000000185564,-0.06911278948757345 +276361,1381.8050000185565,-0.06911277123406555 +276362,1381.8100000185566,-0.06911275298056713 +276363,1381.8150000185567,-0.06911273472707824 +276364,1381.8200000185568,-0.06911271647359893 +276365,1381.825000018557,-0.06911269822012923 +276366,1381.830000018557,-0.06911267996666921 +276367,1381.8350000185571,-0.06911266171321888 +276368,1381.8400000185572,-0.06911264345977831 +276369,1381.8450000185574,-0.06911262520634755 +276370,1381.8500000185575,-0.06911260695292662 +276371,1381.8550000185576,-0.06911258869951557 +276372,1381.8600000185577,-0.06911257044611446 +276373,1381.8650000185578,-0.06911255219272334 +276374,1381.870000018558,-0.06911253393934225 +276375,1381.875000018558,-0.06911251568597122 +276376,1381.8800000185581,-0.0691124974326103 +276377,1381.8850000185582,-0.06911247917925954 +276378,1381.8900000185583,-0.06911246092591898 +276379,1381.8950000185584,-0.06911244267258868 +276380,1381.9000000185586,-0.06911242441926867 +276381,1381.9050000185587,-0.06911240616595898 +276382,1381.9100000185588,-0.0691123879126597 +276383,1381.9150000185589,-0.06911236965937084 +276384,1381.920000018559,-0.06911235140609245 +276385,1381.925000018559,-0.0691123331528246 +276386,1381.9300000185592,-0.06911231489956729 +276387,1381.9350000185593,-0.0691122966463206 +276388,1381.9400000185594,-0.06911227839308456 +276389,1381.9450000185595,-0.06911226013985923 +276390,1381.9500000185596,-0.06911224188664464 +276391,1381.9550000185598,-0.06911222363344084 +276392,1381.9600000185599,-0.06911220538024787 +276393,1381.96500001856,-0.06911218712706578 +276394,1381.97000001856,-0.06911216887389462 +276395,1381.9750000185602,-0.06911215062073443 +276396,1381.9800000185603,-0.06911213236758525 +276397,1381.9850000185604,-0.06911211411444712 +276398,1381.9900000185605,-0.06911209586132011 +276399,1381.9950000185606,-0.06911207760820424 +276400,1382.0000000185607,-0.06911205935509958 +276401,1382.0050000185608,-0.06911204110200615 +276402,1382.010000018561,-0.069112022848924 +276403,1382.015000018561,-0.06911200459585318 +276404,1382.0200000185612,-0.06911198634279374 +276405,1382.0250000185613,-0.06911196808974572 +276406,1382.0300000185614,-0.06911194983670917 +276407,1382.0350000185615,-0.06911193158368412 +276408,1382.0400000185616,-0.06911191333067061 +276409,1382.0450000185617,-0.06911189507766873 +276410,1382.0500000185618,-0.06911187682467848 +276411,1382.055000018562,-0.06911185857169991 +276412,1382.060000018562,-0.06911184031873309 +276413,1382.0650000185622,-0.06911182206577804 +276414,1382.0700000185623,-0.06911180381283483 +276415,1382.0750000185624,-0.06911178555990348 +276416,1382.0800000185625,-0.06911176730698405 +276417,1382.0850000185626,-0.06911174905407659 +276418,1382.0900000185627,-0.06911173080118112 +276419,1382.0950000185628,-0.06911171254829769 +276420,1382.100000018563,-0.06911169429542638 +276421,1382.105000018563,-0.0691116760425672 +276422,1382.1100000185631,-0.0691116577897202 +276423,1382.1150000185633,-0.06911163953688544 +276424,1382.1200000185634,-0.06911162128406295 +276425,1382.1250000185635,-0.06911160303125279 +276426,1382.1300000185636,-0.06911158477845498 +276427,1382.1350000185637,-0.06911156652566959 +276428,1382.1400000185638,-0.06911154827289666 +276429,1382.145000018564,-0.06911153002013622 +276430,1382.150000018564,-0.06911151176738832 +276431,1382.1550000185641,-0.06911149351465302 +276432,1382.1600000185642,-0.06911147526193036 +276433,1382.1650000185643,-0.06911145700922038 +276434,1382.1700000185645,-0.06911143875652312 +276435,1382.1750000185646,-0.06911142050383863 +276436,1382.1800000185647,-0.06911140225116696 +276437,1382.1850000185648,-0.06911138399850816 +276438,1382.190000018565,-0.06911136574586225 +276439,1382.195000018565,-0.06911134749322931 +276440,1382.200000018565,-0.06911132924060935 +276441,1382.2050000185652,-0.06911131098800243 +276442,1382.2100000185653,-0.0691112927354086 +276443,1382.2150000185654,-0.0691112744828279 +276444,1382.2200000185655,-0.06911125623026038 +276445,1382.2250000185657,-0.06911123797770609 +276446,1382.2300000185658,-0.06911121972516504 +276447,1382.2350000185659,-0.06911120147263732 +276448,1382.240000018566,-0.06911118322012295 +276449,1382.245000018566,-0.06911116496762199 +276450,1382.2500000185662,-0.06911114671513446 +276451,1382.2550000185663,-0.06911112846266045 +276452,1382.2600000185664,-0.06911111021019996 +276453,1382.2650000185665,-0.06911109195775304 +276454,1382.2700000185666,-0.06911107370531977 +276455,1382.2750000185667,-0.06911105545290017 +276456,1382.2800000185669,-0.06911103720049427 +276457,1382.285000018567,-0.06911101894810213 +276458,1382.290000018567,-0.0691110006957238 +276459,1382.2950000185672,-0.06911098244335934 +276460,1382.3000000185673,-0.06911096419100876 +276461,1382.3050000185674,-0.06911094593867213 +276462,1382.3100000185675,-0.06911092768634948 +276463,1382.3150000185676,-0.06911090943404087 +276464,1382.3200000185677,-0.06911089118174632 +276465,1382.3250000185678,-0.06911087292946591 +276466,1382.330000018568,-0.06911085467719967 +276467,1382.335000018568,-0.06911083642494764 +276468,1382.3400000185682,-0.06911081817270985 +276469,1382.3450000185683,-0.06911079992048638 +276470,1382.3500000185684,-0.06911078166827726 +276471,1382.3550000185685,-0.06911076341608252 +276472,1382.3600000185686,-0.06911074516390223 +276473,1382.3650000185687,-0.0691107269117364 +276474,1382.3700000185688,-0.06911070865958512 +276475,1382.375000018569,-0.0691106904074484 +276476,1382.380000018569,-0.06911067215532632 +276477,1382.3850000185691,-0.06911065390321888 +276478,1382.3900000185693,-0.06911063565112614 +276479,1382.3950000185694,-0.06911061739904817 +276480,1382.4000000185695,-0.069110599146985 +276481,1382.4050000185696,-0.06911058089493666 +276482,1382.4100000185697,-0.06911056264290322 +276483,1382.4150000185698,-0.06911054439088471 +276484,1382.42000001857,-0.06911052613888119 +276485,1382.42500001857,-0.06911050788689267 +276486,1382.4300000185701,-0.06911048963491924 +276487,1382.4350000185702,-0.0691104713829609 +276488,1382.4400000185703,-0.06911045313101774 +276489,1382.4450000185705,-0.06911043487908977 +276490,1382.4500000185706,-0.06911041662717704 +276491,1382.4550000185707,-0.06911039837527963 +276492,1382.4600000185708,-0.06911038012339756 +276493,1382.465000018571,-0.06911036187153084 +276494,1382.470000018571,-0.06911034361967958 +276495,1382.475000018571,-0.06911032536784377 +276496,1382.4800000185712,-0.06911030711602349 +276497,1382.4850000185713,-0.06911028886421877 +276498,1382.4900000185714,-0.06911027061242968 +276499,1382.4950000185715,-0.06911025236065622 +276500,1382.5000000185717,-0.06911023410889847 +276501,1382.5050000185718,-0.06911021585715646 +276502,1382.5100000185719,-0.06911019760543025 +276503,1382.515000018572,-0.06911017935371985 +276504,1382.520000018572,-0.06911016110202536 +276505,1382.5250000185722,-0.06911014285034678 +276506,1382.5300000185723,-0.06911012459868417 +276507,1382.5350000185724,-0.06911010634703757 +276508,1382.5400000185725,-0.06911008809540704 +276509,1382.5450000185726,-0.0691100698437926 +276510,1382.5500000185727,-0.06911005159219433 +276511,1382.5550000185729,-0.06911003334061223 +276512,1382.560000018573,-0.06911001508904639 +276513,1382.565000018573,-0.06910999683749683 +276514,1382.5700000185732,-0.06910997858596359 +276515,1382.5750000185733,-0.06910996033444673 +276516,1382.5800000185734,-0.0691099420829463 +276517,1382.5850000185735,-0.06910992383146233 +276518,1382.5900000185736,-0.06910990557999486 +276519,1382.5950000185737,-0.06910988732854395 +276520,1382.6000000185738,-0.06910986907710966 +276521,1382.605000018574,-0.06910985082569199 +276522,1382.610000018574,-0.06910983257429103 +276523,1382.6150000185742,-0.06910981432290679 +276524,1382.6200000185743,-0.06910979607153933 +276525,1382.6250000185744,-0.0691097778201887 +276526,1382.6300000185745,-0.06910975956885496 +276527,1382.6350000185746,-0.06910974131753811 +276528,1382.6400000185747,-0.06910972306623824 +276529,1382.6450000185748,-0.06910970481495536 +276530,1382.650000018575,-0.06910968656368954 +276531,1382.655000018575,-0.06910966831244081 +276532,1382.6600000185751,-0.06910965006120923 +276533,1382.6650000185753,-0.06910963180999483 +276534,1382.6700000185754,-0.06910961355879766 +276535,1382.6750000185755,-0.06910959530761777 +276536,1382.6800000185756,-0.0691095770564552 +276537,1382.6850000185757,-0.06910955880530999 +276538,1382.6900000185758,-0.06910954055418221 +276539,1382.695000018576,-0.06910952230307187 +276540,1382.700000018576,-0.06910950405197905 +276541,1382.7050000185761,-0.06910948580090376 +276542,1382.7100000185762,-0.06910946754984607 +276543,1382.7150000185763,-0.069109449298806 +276544,1382.7200000185765,-0.06910943104778364 +276545,1382.7250000185766,-0.06910941279677899 +276546,1382.7300000185767,-0.06910939454579211 +276547,1382.7350000185768,-0.06910937629482305 +276548,1382.740000018577,-0.06910935804387185 +276549,1382.745000018577,-0.06910933979293857 +276550,1382.750000018577,-0.06910932154202323 +276551,1382.7550000185772,-0.0691093032911259 +276552,1382.7600000185773,-0.0691092850402466 +276553,1382.7650000185774,-0.0691092667893854 +276554,1382.7700000185775,-0.06910924853854233 +276555,1382.7750000185777,-0.06910923028771744 +276556,1382.7800000185778,-0.06910921203691077 +276557,1382.7850000185779,-0.06910919378612236 +276558,1382.790000018578,-0.06910917553535227 +276559,1382.795000018578,-0.06910915728460053 +276560,1382.8000000185782,-0.0691091390338672 +276561,1382.8050000185783,-0.0691091207831523 +276562,1382.8100000185784,-0.06910910253245592 +276563,1382.8150000185785,-0.06910908428177807 +276564,1382.8200000185786,-0.0691090660311188 +276565,1382.8250000185787,-0.06910904778047816 +276566,1382.8300000185789,-0.0691090295298562 +276567,1382.835000018579,-0.06910901127925295 +276568,1382.840000018579,-0.06910899302866848 +276569,1382.8450000185792,-0.06910897477810281 +276570,1382.8500000185793,-0.06910895652755598 +276571,1382.8550000185794,-0.06910893827702808 +276572,1382.8600000185795,-0.0691089200265191 +276573,1382.8650000185796,-0.06910890177602912 +276574,1382.8700000185797,-0.06910888352555818 +276575,1382.8750000185798,-0.0691088652751063 +276576,1382.88000001858,-0.06910884702467356 +276577,1382.88500001858,-0.06910882877425997 +276578,1382.8900000185802,-0.06910881052386561 +276579,1382.8950000185803,-0.06910879227349051 +276580,1382.9000000185804,-0.06910877402313471 +276581,1382.9050000185805,-0.06910875577279828 +276582,1382.9100000185806,-0.06910873752248123 +276583,1382.9150000185807,-0.06910871927218361 +276584,1382.9200000185808,-0.06910870102190547 +276585,1382.925000018581,-0.06910868277164689 +276586,1382.930000018581,-0.06910866452140786 +276587,1382.9350000185811,-0.06910864627118847 +276588,1382.9400000185813,-0.06910862802098873 +276589,1382.9450000185814,-0.06910860977080871 +276590,1382.9500000185815,-0.06910859152064845 +276591,1382.9550000185816,-0.06910857327050797 +276592,1382.9600000185817,-0.06910855502038736 +276593,1382.9650000185818,-0.06910853677028664 +276594,1382.970000018582,-0.06910851852020583 +276595,1382.975000018582,-0.06910850027014503 +276596,1382.9800000185821,-0.06910848202010425 +276597,1382.9850000185822,-0.06910846377008353 +276598,1382.9900000185824,-0.06910844552008294 +276599,1382.9950000185825,-0.0691084272701025 +276600,1383.0000000185826,-0.06910840902014226 +276601,1383.0050000185827,-0.0691083907702023 +276602,1383.0100000185828,-0.06910837252028261 +276603,1383.015000018583,-0.06910835427038327 +276604,1383.020000018583,-0.06910833602050433 +276605,1383.0250000185831,-0.06910831777064581 +276606,1383.0300000185832,-0.06910829952080777 +276607,1383.0350000185833,-0.06910828127099025 +276608,1383.0400000185834,-0.0691082630211933 +276609,1383.0450000185836,-0.06910824477141696 +276610,1383.0500000185837,-0.06910822652166126 +276611,1383.0550000185838,-0.06910820827192629 +276612,1383.0600000185839,-0.06910819002221205 +276613,1383.065000018584,-0.06910817177251861 +276614,1383.070000018584,-0.06910815352284601 +276615,1383.0750000185842,-0.06910813527319429 +276616,1383.0800000185843,-0.06910811702356351 +276617,1383.0850000185844,-0.06910809877395369 +276618,1383.0900000185845,-0.06910808052436489 +276619,1383.0950000185846,-0.06910806227479716 +276620,1383.1000000185848,-0.06910804402525052 +276621,1383.1050000185849,-0.06910802577572506 +276622,1383.110000018585,-0.06910800752622077 +276623,1383.115000018585,-0.06910798927673774 +276624,1383.1200000185852,-0.06910797102727599 +276625,1383.1250000185853,-0.06910795277783559 +276626,1383.1300000185854,-0.06910793452841657 +276627,1383.1350000185855,-0.06910791627901897 +276628,1383.1400000185856,-0.06910789802964283 +276629,1383.1450000185857,-0.0691078797802882 +276630,1383.1500000185858,-0.06910786153095513 +276631,1383.155000018586,-0.06910784328164368 +276632,1383.160000018586,-0.06910782503235387 +276633,1383.1650000185862,-0.06910780678308577 +276634,1383.1700000185863,-0.06910778853383939 +276635,1383.1750000185864,-0.06910777028461482 +276636,1383.1800000185865,-0.06910775203541207 +276637,1383.1850000185866,-0.06910773378623118 +276638,1383.1900000185867,-0.0691077155370722 +276639,1383.1950000185868,-0.06910769728793521 +276640,1383.200000018587,-0.06910767903882023 +276641,1383.205000018587,-0.0691076607897273 +276642,1383.2100000185872,-0.06910764254065646 +276643,1383.2150000185873,-0.06910762429160777 +276644,1383.2200000185874,-0.06910760604258129 +276645,1383.2250000185875,-0.06910758779357702 +276646,1383.2300000185876,-0.06910756954459506 +276647,1383.2350000185877,-0.06910755129563541 +276648,1383.2400000185878,-0.06910753304669813 +276649,1383.245000018588,-0.06910751479778325 +276650,1383.250000018588,-0.06910749654889085 +276651,1383.2550000185881,-0.06910747830002095 +276652,1383.2600000185882,-0.06910746005117362 +276653,1383.2650000185884,-0.06910744180234887 +276654,1383.2700000185885,-0.06910742355354677 +276655,1383.2750000185886,-0.06910740530476735 +276656,1383.2800000185887,-0.06910738705601065 +276657,1383.2850000185888,-0.06910736880727675 +276658,1383.290000018589,-0.06910735055856566 +276659,1383.295000018589,-0.06910733230987744 +276660,1383.3000000185891,-0.06910731406121212 +276661,1383.3050000185892,-0.06910729581256977 +276662,1383.3100000185893,-0.06910727756395044 +276663,1383.3150000185894,-0.06910725931535414 +276664,1383.3200000185896,-0.06910724106678091 +276665,1383.3250000185897,-0.06910722281823085 +276666,1383.3300000185898,-0.06910720456970397 +276667,1383.3350000185899,-0.0691071863212003 +276668,1383.34000001859,-0.06910716807271991 +276669,1383.34500001859,-0.06910714982426285 +276670,1383.3500000185902,-0.06910713157582915 +276671,1383.3550000185903,-0.06910711332741884 +276672,1383.3600000185904,-0.06910709507903201 +276673,1383.3650000185905,-0.06910707683066866 +276674,1383.3700000185906,-0.06910705858232886 +276675,1383.3750000185908,-0.06910704033401266 +276676,1383.3800000185909,-0.06910702208572007 +276677,1383.385000018591,-0.06910700383745119 +276678,1383.390000018591,-0.06910698558920603 +276679,1383.3950000185912,-0.06910696734098462 +276680,1383.4000000185913,-0.06910694909278703 +276681,1383.4050000185914,-0.0691069308446133 +276682,1383.4100000185915,-0.06910691259646347 +276683,1383.4150000185916,-0.06910689434833761 +276684,1383.4200000185917,-0.06910687610023572 +276685,1383.4250000185918,-0.0691068578521579 +276686,1383.430000018592,-0.06910683960410414 +276687,1383.435000018592,-0.06910682135607452 +276688,1383.4400000185922,-0.06910680310806908 +276689,1383.4450000185923,-0.06910678486008784 +276690,1383.4500000185924,-0.06910676661213089 +276691,1383.4550000185925,-0.06910674836419824 +276692,1383.4600000185926,-0.06910673011628994 +276693,1383.4650000185927,-0.06910671186840606 +276694,1383.4700000185928,-0.06910669362054661 +276695,1383.475000018593,-0.06910667537271165 +276696,1383.480000018593,-0.06910665712490123 +276697,1383.4850000185932,-0.06910663887711539 +276698,1383.4900000185933,-0.06910662062935417 +276699,1383.4950000185934,-0.06910660238161763 +276700,1383.5000000185935,-0.06910658413390582 +276701,1383.5050000185936,-0.06910656588621875 +276702,1383.5100000185937,-0.06910654763855649 +276703,1383.5150000185938,-0.06910652939091909 +276704,1383.520000018594,-0.0691065111433066 +276705,1383.525000018594,-0.06910649289571903 +276706,1383.5300000185941,-0.06910647464815645 +276707,1383.5350000185942,-0.06910645640061891 +276708,1383.5400000185944,-0.06910643815310644 +276709,1383.5450000185945,-0.0691064199056191 +276710,1383.5500000185946,-0.06910640165815692 +276711,1383.5550000185947,-0.06910638341071995 +276712,1383.5600000185948,-0.06910636516330826 +276713,1383.565000018595,-0.06910634691592185 +276714,1383.570000018595,-0.0691063286685608 +276715,1383.5750000185951,-0.06910631042122513 +276716,1383.5800000185952,-0.06910629217391491 +276717,1383.5850000185953,-0.06910627392663017 +276718,1383.5900000185954,-0.06910625567937097 +276719,1383.5950000185956,-0.06910623743213733 +276720,1383.6000000185957,-0.0691062191849293 +276721,1383.6050000185958,-0.06910620093774696 +276722,1383.6100000185959,-0.06910618269059031 +276723,1383.615000018596,-0.06910616444345942 +276724,1383.620000018596,-0.06910614619635433 +276725,1383.6250000185962,-0.06910612794927509 +276726,1383.6300000185963,-0.06910610970222174 +276727,1383.6350000185964,-0.06910609145519431 +276728,1383.6400000185965,-0.06910607320819287 +276729,1383.6450000185966,-0.06910605496121745 +276730,1383.6500000185968,-0.06910603671426811 +276731,1383.6550000185969,-0.06910601846734488 +276732,1383.660000018597,-0.06910600022044781 +276733,1383.665000018597,-0.06910598197357695 +276734,1383.6700000185972,-0.06910596372673233 +276735,1383.6750000185973,-0.06910594547991401 +276736,1383.6800000185974,-0.06910592723312203 +276737,1383.6850000185975,-0.06910590898635643 +276738,1383.6900000185976,-0.06910589073961729 +276739,1383.6950000185977,-0.06910587249290459 +276740,1383.7000000185978,-0.06910585424621843 +276741,1383.705000018598,-0.06910583599955884 +276742,1383.710000018598,-0.06910581775292585 +276743,1383.7150000185982,-0.06910579950631951 +276744,1383.7200000185983,-0.06910578125973989 +276745,1383.7250000185984,-0.06910576301318701 +276746,1383.7300000185985,-0.06910574476666093 +276747,1383.7350000185986,-0.06910572652016167 +276748,1383.7400000185987,-0.06910570827368931 +276749,1383.7450000185988,-0.06910569002724387 +276750,1383.750000018599,-0.06910567178082541 +276751,1383.755000018599,-0.06910565353443396 +276752,1383.7600000185992,-0.06910563528806957 +276753,1383.7650000185993,-0.06910561704173229 +276754,1383.7700000185994,-0.06910559879542216 +276755,1383.7750000185995,-0.06910558054913923 +276756,1383.7800000185996,-0.06910556230288356 +276757,1383.7850000185997,-0.06910554405665516 +276758,1383.7900000185998,-0.0691055258104541 +276759,1383.7950000186,-0.06910550756428041 +276760,1383.8000000186,-0.06910548931813416 +276761,1383.8050000186001,-0.06910547107201537 +276762,1383.8100000186002,-0.06910545282592409 +276763,1383.8150000186004,-0.06910543457986038 +276764,1383.8200000186005,-0.06910541633382425 +276765,1383.8250000186006,-0.06910539808781578 +276766,1383.8300000186007,-0.06910537984183501 +276767,1383.8350000186008,-0.06910536159588199 +276768,1383.840000018601,-0.06910534334995674 +276769,1383.845000018601,-0.06910532510405933 +276770,1383.8500000186011,-0.06910530685818977 +276771,1383.8550000186012,-0.06910528861234816 +276772,1383.8600000186013,-0.0691052703665345 +276773,1383.8650000186014,-0.06910525212074886 +276774,1383.8700000186016,-0.06910523387499128 +276775,1383.8750000186017,-0.06910521562926178 +276776,1383.8800000186018,-0.06910519738356044 +276777,1383.8850000186019,-0.06910517913788727 +276778,1383.890000018602,-0.06910516089224235 +276779,1383.895000018602,-0.06910514264662572 +276780,1383.9000000186022,-0.06910512440103742 +276781,1383.9050000186023,-0.06910510615547748 +276782,1383.9100000186024,-0.06910508790994595 +276783,1383.9150000186025,-0.0691050696644429 +276784,1383.9200000186027,-0.06910505141896835 +276785,1383.9250000186028,-0.06910503317352235 +276786,1383.9300000186029,-0.06910501492810493 +276787,1383.935000018603,-0.06910499668271618 +276788,1383.940000018603,-0.0691049784373561 +276789,1383.9450000186032,-0.06910496019202475 +276790,1383.9500000186033,-0.06910494194672218 +276791,1383.9550000186034,-0.06910492370144844 +276792,1383.9600000186035,-0.06910490545620357 +276793,1383.9650000186036,-0.0691048872109876 +276794,1383.9700000186037,-0.06910486896580059 +276795,1383.9750000186039,-0.06910485072064258 +276796,1383.980000018604,-0.06910483247551363 +276797,1383.985000018604,-0.06910481423041379 +276798,1383.9900000186042,-0.06910479598534307 +276799,1383.9950000186043,-0.06910477774030153 +276800,1384.0000000186044,-0.06910475949528921 +276801,1384.0050000186045,-0.06910474125030618 +276802,1384.0100000186046,-0.06910472300535248 +276803,1384.0150000186047,-0.06910470476042813 +276804,1384.0200000186048,-0.06910468651553317 +276805,1384.025000018605,-0.06910466827066769 +276806,1384.030000018605,-0.0691046500258317 +276807,1384.0350000186052,-0.06910463178102526 +276808,1384.0400000186053,-0.06910461353624842 +276809,1384.0450000186054,-0.06910459529150119 +276810,1384.0500000186055,-0.06910457704678365 +276811,1384.0550000186056,-0.06910455880209584 +276812,1384.0600000186057,-0.0691045405574378 +276813,1384.0650000186058,-0.06910452231280959 +276814,1384.070000018606,-0.06910450406821121 +276815,1384.075000018606,-0.06910448582364274 +276816,1384.0800000186061,-0.06910446757910424 +276817,1384.0850000186063,-0.06910444933459572 +276818,1384.0900000186064,-0.06910443109011725 +276819,1384.0950000186065,-0.06910441284566887 +276820,1384.1000000186066,-0.06910439460125062 +276821,1384.1050000186067,-0.06910437635686253 +276822,1384.1100000186068,-0.06910435811250468 +276823,1384.115000018607,-0.06910433986817709 +276824,1384.120000018607,-0.0691043216238798 +276825,1384.1250000186071,-0.06910430337961287 +276826,1384.1300000186072,-0.06910428513537636 +276827,1384.1350000186073,-0.06910426689117029 +276828,1384.1400000186075,-0.0691042486469947 +276829,1384.1450000186076,-0.06910423040284967 +276830,1384.1500000186077,-0.0691042121587352 +276831,1384.1550000186078,-0.06910419391465138 +276832,1384.160000018608,-0.06910417567059822 +276833,1384.165000018608,-0.06910415742657579 +276834,1384.170000018608,-0.06910413918258411 +276835,1384.1750000186082,-0.06910412093862324 +276836,1384.1800000186083,-0.06910410269469322 +276837,1384.1850000186084,-0.0691040844507941 +276838,1384.1900000186085,-0.06910406620692594 +276839,1384.1950000186087,-0.06910404796308875 +276840,1384.2000000186088,-0.06910402971928259 +276841,1384.2050000186089,-0.06910401147550752 +276842,1384.210000018609,-0.06910399323176357 +276843,1384.215000018609,-0.06910397498805079 +276844,1384.2200000186092,-0.06910395674436923 +276845,1384.2250000186093,-0.06910393850071893 +276846,1384.2300000186094,-0.06910392025709992 +276847,1384.2350000186095,-0.06910390201351228 +276848,1384.2400000186096,-0.06910388376995603 +276849,1384.2450000186097,-0.06910386552643122 +276850,1384.2500000186099,-0.06910384728293789 +276851,1384.25500001861,-0.0691038290394761 +276852,1384.26000001861,-0.06910381079604588 +276853,1384.2650000186102,-0.06910379255264727 +276854,1384.2700000186103,-0.06910377430928034 +276855,1384.2750000186104,-0.06910375606594513 +276856,1384.2800000186105,-0.06910373782264165 +276857,1384.2850000186106,-0.06910371957936998 +276858,1384.2900000186107,-0.06910370133613015 +276859,1384.2950000186108,-0.06910368309292222 +276860,1384.300000018611,-0.06910366484974624 +276861,1384.305000018611,-0.06910364660660223 +276862,1384.3100000186112,-0.06910362836349025 +276863,1384.3150000186113,-0.06910361012041034 +276864,1384.3200000186114,-0.06910359187736255 +276865,1384.3250000186115,-0.06910357363434692 +276866,1384.3300000186116,-0.06910355539136351 +276867,1384.3350000186117,-0.06910353714841233 +276868,1384.3400000186118,-0.06910351890549346 +276869,1384.345000018612,-0.06910350066260694 +276870,1384.350000018612,-0.0691034824197528 +276871,1384.3550000186121,-0.06910346417693108 +276872,1384.3600000186123,-0.06910344593414186 +276873,1384.3650000186124,-0.06910342769138515 +276874,1384.3700000186125,-0.06910340944866102 +276875,1384.3750000186126,-0.06910339120596949 +276876,1384.3800000186127,-0.06910337296331062 +276877,1384.3850000186128,-0.06910335472068446 +276878,1384.390000018613,-0.06910333647809105 +276879,1384.395000018613,-0.06910331823553044 +276880,1384.4000000186131,-0.06910329999300267 +276881,1384.4050000186132,-0.06910328175050778 +276882,1384.4100000186133,-0.06910326350804581 +276883,1384.4150000186135,-0.06910324526561684 +276884,1384.4200000186136,-0.06910322702322087 +276885,1384.4250000186137,-0.06910320878085797 +276886,1384.4300000186138,-0.06910319053852819 +276887,1384.435000018614,-0.06910317229623154 +276888,1384.440000018614,-0.06910315405396811 +276889,1384.445000018614,-0.06910313581173792 +276890,1384.4500000186142,-0.06910311756954103 +276891,1384.4550000186143,-0.06910309932737746 +276892,1384.4600000186144,-0.06910308108524728 +276893,1384.4650000186145,-0.06910306284315053 +276894,1384.4700000186147,-0.06910304460108725 +276895,1384.4750000186148,-0.06910302635905748 +276896,1384.4800000186149,-0.06910300811706128 +276897,1384.485000018615,-0.06910298987509869 +276898,1384.490000018615,-0.06910297163316975 +276899,1384.4950000186152,-0.0691029533912745 +276900,1384.5000000186153,-0.06910293514941299 +276901,1384.5050000186154,-0.06910291690758527 +276902,1384.5100000186155,-0.06910289866579139 +276903,1384.5150000186156,-0.06910288042403138 +276904,1384.5200000186157,-0.0691028621823053 +276905,1384.5250000186159,-0.06910284394061318 +276906,1384.530000018616,-0.0691028256989551 +276907,1384.535000018616,-0.06910280745733104 +276908,1384.5400000186162,-0.0691027892157411 +276909,1384.5450000186163,-0.06910277097418531 +276910,1384.5500000186164,-0.06910275273266371 +276911,1384.5550000186165,-0.06910273449117635 +276912,1384.5600000186166,-0.06910271624972328 +276913,1384.5650000186167,-0.06910269800830453 +276914,1384.5700000186168,-0.06910267976692017 +276915,1384.575000018617,-0.06910266152557021 +276916,1384.580000018617,-0.06910264328425472 +276917,1384.5850000186172,-0.06910262504297375 +276918,1384.5900000186173,-0.06910260680172733 +276919,1384.5950000186174,-0.06910258856051552 +276920,1384.6000000186175,-0.06910257031933834 +276921,1384.6050000186176,-0.06910255207819586 +276922,1384.6100000186177,-0.0691025338370881 +276923,1384.6150000186178,-0.06910251559601514 +276924,1384.620000018618,-0.06910249735497699 +276925,1384.625000018618,-0.06910247911397371 +276926,1384.6300000186181,-0.06910246087300535 +276927,1384.6350000186183,-0.06910244263207195 +276928,1384.6400000186184,-0.06910242439117358 +276929,1384.6450000186185,-0.06910240615031023 +276930,1384.6500000186186,-0.06910238790948199 +276931,1384.6550000186187,-0.06910236966868889 +276932,1384.6600000186188,-0.06910235142793099 +276933,1384.665000018619,-0.0691023331872083 +276934,1384.670000018619,-0.06910231494652089 +276935,1384.6750000186191,-0.06910229670586882 +276936,1384.6800000186192,-0.0691022784652521 +276937,1384.6850000186193,-0.06910226022467081 +276938,1384.6900000186195,-0.06910224198412496 +276939,1384.6950000186196,-0.06910222374361462 +276940,1384.7000000186197,-0.06910220550313984 +276941,1384.7050000186198,-0.06910218726270062 +276942,1384.71000001862,-0.06910216902229706 +276943,1384.71500001862,-0.06910215078192919 +276944,1384.72000001862,-0.06910213254159703 +276945,1384.7250000186202,-0.06910211430130066 +276946,1384.7300000186203,-0.0691020960610401 +276947,1384.7350000186204,-0.06910207782081541 +276948,1384.7400000186205,-0.06910205958062664 +276949,1384.7450000186207,-0.0691020413404738 +276950,1384.7500000186208,-0.06910202310035697 +276951,1384.7550000186209,-0.06910200486027619 +276952,1384.760000018621,-0.0691019866202315 +276953,1384.765000018621,-0.06910196838022295 +276954,1384.7700000186212,-0.06910195014025057 +276955,1384.7750000186213,-0.06910193190031441 +276956,1384.7800000186214,-0.06910191366041454 +276957,1384.7850000186215,-0.06910189542055098 +276958,1384.7900000186216,-0.06910187718072378 +276959,1384.7950000186217,-0.06910185894093297 +276960,1384.8000000186219,-0.06910184070117863 +276961,1384.805000018622,-0.06910182246146078 +276962,1384.810000018622,-0.06910180422177947 +276963,1384.8150000186222,-0.06910178598213476 +276964,1384.8200000186223,-0.06910176774252666 +276965,1384.8250000186224,-0.06910174950295525 +276966,1384.8300000186225,-0.06910173126342055 +276967,1384.8350000186226,-0.06910171302392262 +276968,1384.8400000186227,-0.06910169478446151 +276969,1384.8450000186228,-0.06910167654503727 +276970,1384.850000018623,-0.0691016583056499 +276971,1384.855000018623,-0.0691016400662995 +276972,1384.8600000186232,-0.06910162182698609 +276973,1384.8650000186233,-0.06910160358770973 +276974,1384.8700000186234,-0.06910158534847043 +276975,1384.8750000186235,-0.06910156710926826 +276976,1384.8800000186236,-0.06910154887010328 +276977,1384.8850000186237,-0.0691015306309755 +276978,1384.8900000186238,-0.069101512391885 +276979,1384.895000018624,-0.06910149415283179 +276980,1384.900000018624,-0.06910147591381595 +276981,1384.9050000186242,-0.06910145767483751 +276982,1384.9100000186243,-0.06910143943589651 +276983,1384.9150000186244,-0.069101421196993 +276984,1384.9200000186245,-0.06910140295812703 +276985,1384.9250000186246,-0.06910138471929862 +276986,1384.9300000186247,-0.06910136648050785 +276987,1384.9350000186248,-0.06910134824175475 +276988,1384.940000018625,-0.06910133000303936 +276989,1384.945000018625,-0.06910131176436174 +276990,1384.9500000186251,-0.06910129352572192 +276991,1384.9550000186252,-0.06910127528711994 +276992,1384.9600000186254,-0.06910125704855588 +276993,1384.9650000186255,-0.06910123881002975 +276994,1384.9700000186256,-0.0691012205715416 +276995,1384.9750000186257,-0.06910120233309149 +276996,1384.9800000186258,-0.06910118409467944 +276997,1384.985000018626,-0.06910116585630553 +276998,1384.990000018626,-0.06910114761796977 +276999,1384.9950000186261,-0.06910112937967224 +277000,1385.0000000186262,-0.06910111114141294 +277001,1385.0050000186263,-0.06910109290319197 +277002,1385.0100000186264,-0.06910107466500934 +277003,1385.0150000186266,-0.0691010564268651 +277004,1385.0200000186267,-0.0691010381887593 +277005,1385.0250000186268,-0.06910101995069198 +277006,1385.0300000186269,-0.06910100171266319 +277007,1385.035000018627,-0.06910098347467297 +277008,1385.040000018627,-0.06910096523672138 +277009,1385.0450000186272,-0.06910094699880844 +277010,1385.0500000186273,-0.06910092876093421 +277011,1385.0550000186274,-0.06910091052309873 +277012,1385.0600000186275,-0.06910089228530206 +277013,1385.0650000186276,-0.06910087404754423 +277014,1385.0700000186278,-0.06910085580982528 +277015,1385.0750000186279,-0.06910083757214527 +277016,1385.080000018628,-0.06910081933450424 +277017,1385.085000018628,-0.06910080109690223 +277018,1385.0900000186282,-0.06910078285933931 +277019,1385.0950000186283,-0.06910076462181548 +277020,1385.1000000186284,-0.06910074638433084 +277021,1385.1050000186285,-0.06910072814688538 +277022,1385.1100000186286,-0.06910070990947917 +277023,1385.1150000186287,-0.06910069167211226 +277024,1385.1200000186288,-0.0691006734347847 +277025,1385.125000018629,-0.06910065519749652 +277026,1385.130000018629,-0.06910063696024775 +277027,1385.1350000186292,-0.06910061872303848 +277028,1385.1400000186293,-0.06910060048586873 +277029,1385.1450000186294,-0.06910058224873854 +277030,1385.1500000186295,-0.06910056401164796 +277031,1385.1550000186296,-0.06910054577459704 +277032,1385.1600000186297,-0.06910052753758582 +277033,1385.1650000186298,-0.06910050930061434 +277034,1385.17000001863,-0.06910049106368267 +277035,1385.17500001863,-0.06910047282679084 +277036,1385.1800000186302,-0.06910045458993888 +277037,1385.1850000186303,-0.06910043635312685 +277038,1385.1900000186304,-0.0691004181163548 +277039,1385.1950000186305,-0.06910039987962277 +277040,1385.2000000186306,-0.0691003816429308 +277041,1385.2050000186307,-0.06910036340627893 +277042,1385.2100000186308,-0.06910034516966722 +277043,1385.215000018631,-0.0691003269330957 +277044,1385.220000018631,-0.06910030869656443 +277045,1385.2250000186311,-0.06910029046007345 +277046,1385.2300000186312,-0.06910027222362279 +277047,1385.2350000186314,-0.06910025398721252 +277048,1385.2400000186315,-0.06910023575084269 +277049,1385.2450000186316,-0.0691002175145133 +277050,1385.2500000186317,-0.06910019927822444 +277051,1385.2550000186318,-0.06910018104197614 +277052,1385.260000018632,-0.06910016280576844 +277053,1385.265000018632,-0.0691001445696014 +277054,1385.2700000186321,-0.06910012633347505 +277055,1385.2750000186322,-0.06910010809738944 +277056,1385.2800000186323,-0.06910008986134461 +277057,1385.2850000186324,-0.06910007162534063 +277058,1385.2900000186326,-0.0691000533893775 +277059,1385.2950000186327,-0.0691000351534553 +277060,1385.3000000186328,-0.06910001691757407 +277061,1385.3050000186329,-0.06909999868173385 +277062,1385.310000018633,-0.0690999804459347 +277063,1385.315000018633,-0.06909996221017663 +277064,1385.3200000186332,-0.0690999439744597 +277065,1385.3250000186333,-0.06909992573878398 +277066,1385.3300000186334,-0.0690999075031495 +277067,1385.3350000186335,-0.0690998892675563 +277068,1385.3400000186336,-0.06909987103200442 +277069,1385.3450000186338,-0.0690998527964939 +277070,1385.3500000186339,-0.06909983456102482 +277071,1385.355000018634,-0.06909981632559721 +277072,1385.360000018634,-0.06909979809021108 +277073,1385.3650000186342,-0.06909977985486651 +277074,1385.3700000186343,-0.06909976161956355 +277075,1385.3750000186344,-0.06909974338430223 +277076,1385.3800000186345,-0.06909972514908261 +277077,1385.3850000186346,-0.0690997069139047 +277078,1385.3900000186347,-0.06909968867876858 +277079,1385.3950000186348,-0.06909967044367428 +277080,1385.400000018635,-0.06909965220862187 +277081,1385.405000018635,-0.06909963397361135 +277082,1385.4100000186352,-0.0690996157386428 +277083,1385.4150000186353,-0.06909959750371626 +277084,1385.4200000186354,-0.06909957926883176 +277085,1385.4250000186355,-0.06909956103398936 +277086,1385.4300000186356,-0.06909954279918909 +277087,1385.4350000186357,-0.06909952456443103 +277088,1385.4400000186358,-0.06909950632971518 +277089,1385.445000018636,-0.0690994880950416 +277090,1385.450000018636,-0.06909946986041034 +277091,1385.4550000186362,-0.06909945162582146 +277092,1385.4600000186363,-0.06909943339127499 +277093,1385.4650000186364,-0.06909941515677097 +277094,1385.4700000186365,-0.06909939692230946 +277095,1385.4750000186366,-0.06909937868789048 +277096,1385.4800000186367,-0.0690993604535141 +277097,1385.4850000186368,-0.06909934221918036 +277098,1385.490000018637,-0.0690993239848893 +277099,1385.495000018637,-0.06909930575064097 +277100,1385.5000000186371,-0.06909928751643542 +277101,1385.5050000186372,-0.06909926928227267 +277102,1385.5100000186374,-0.0690992510481528 +277103,1385.5150000186375,-0.06909923281407582 +277104,1385.5200000186376,-0.0690992145800418 +277105,1385.5250000186377,-0.06909919634605077 +277106,1385.5300000186378,-0.0690991781121028 +277107,1385.535000018638,-0.0690991598781979 +277108,1385.540000018638,-0.06909914164433614 +277109,1385.5450000186381,-0.06909912341051756 +277110,1385.5500000186382,-0.06909910517674221 +277111,1385.5550000186383,-0.06909908694301012 +277112,1385.5600000186384,-0.06909906870932135 +277113,1385.5650000186386,-0.06909905047567594 +277114,1385.5700000186387,-0.06909903224207394 +277115,1385.5750000186388,-0.06909901400851537 +277116,1385.5800000186389,-0.06909899577500031 +277117,1385.585000018639,-0.06909897754152879 +277118,1385.590000018639,-0.06909895930810085 +277119,1385.5950000186392,-0.06909894107471654 +277120,1385.6000000186393,-0.0690989228413759 +277121,1385.6050000186394,-0.06909890460807899 +277122,1385.6100000186395,-0.06909888637482585 +277123,1385.6150000186396,-0.06909886814161652 +277124,1385.6200000186398,-0.06909884990845104 +277125,1385.6250000186399,-0.06909883167532947 +277126,1385.63000001864,-0.06909881344225183 +277127,1385.63500001864,-0.06909879520921819 +277128,1385.6400000186402,-0.06909877697622858 +277129,1385.6450000186403,-0.06909875874328306 +277130,1385.6500000186404,-0.06909874051038166 +277131,1385.6550000186405,-0.06909872227752444 +277132,1385.6600000186406,-0.06909870404471143 +277133,1385.6650000186407,-0.06909868581194269 +277134,1385.6700000186408,-0.06909866757921825 +277135,1385.675000018641,-0.06909864934653816 +277136,1385.680000018641,-0.06909863111390248 +277137,1385.6850000186412,-0.06909861288131122 +277138,1385.6900000186413,-0.06909859464876447 +277139,1385.6950000186414,-0.06909857641626226 +277140,1385.7000000186415,-0.0690985581838046 +277141,1385.7050000186416,-0.06909853995139158 +277142,1385.7100000186417,-0.06909852171902323 +277143,1385.7150000186418,-0.06909850348669959 +277144,1385.720000018642,-0.06909848525442071 +277145,1385.725000018642,-0.06909846702218664 +277146,1385.7300000186422,-0.06909844878999742 +277147,1385.7350000186423,-0.0690984305578531 +277148,1385.7400000186424,-0.0690984123257537 +277149,1385.7450000186425,-0.0690983940936993 +277150,1385.7500000186426,-0.06909837586168992 +277151,1385.7550000186427,-0.06909835762972562 +277152,1385.7600000186428,-0.06909833939780644 +277153,1385.765000018643,-0.06909832116593242 +277154,1385.770000018643,-0.06909830293410361 +277155,1385.7750000186431,-0.06909828470232006 +277156,1385.7800000186432,-0.0690982664705818 +277157,1385.7850000186434,-0.0690982482388889 +277158,1385.7900000186435,-0.06909823000724138 +277159,1385.7950000186436,-0.06909821177563931 +277160,1385.8000000186437,-0.06909819354408273 +277161,1385.8050000186438,-0.06909817531257166 +277162,1385.810000018644,-0.06909815708110617 +277163,1385.815000018644,-0.06909813884968628 +277164,1385.8200000186441,-0.06909812061831207 +277165,1385.8250000186442,-0.06909810238698355 +277166,1385.8300000186443,-0.0690980841557008 +277167,1385.8350000186445,-0.06909806592446384 +277168,1385.8400000186446,-0.06909804769327273 +277169,1385.8450000186447,-0.06909802946212748 +277170,1385.8500000186448,-0.0690980112310282 +277171,1385.855000018645,-0.06909799299997488 +277172,1385.860000018645,-0.06909797476896759 +277173,1385.865000018645,-0.06909795653800636 +277174,1385.8700000186452,-0.06909793830709124 +277175,1385.8750000186453,-0.0690979200762223 +277176,1385.8800000186454,-0.06909790184539955 +277177,1385.8850000186455,-0.06909788361462305 +277178,1385.8900000186457,-0.06909786538389284 +277179,1385.8950000186458,-0.06909784715320898 +277180,1385.9000000186459,-0.06909782892257149 +277181,1385.905000018646,-0.06909781069198044 +277182,1385.910000018646,-0.06909779246143587 +277183,1385.9150000186462,-0.0690977742309378 +277184,1385.9200000186463,-0.06909775600048632 +277185,1385.9250000186464,-0.06909773777008142 +277186,1385.9300000186465,-0.0690977195397232 +277187,1385.9350000186466,-0.06909770130941167 +277188,1385.9400000186467,-0.06909768307914689 +277189,1385.9450000186469,-0.0690976648489289 +277190,1385.950000018647,-0.06909764661875775 +277191,1385.955000018647,-0.06909762838863348 +277192,1385.9600000186472,-0.06909761015855614 +277193,1385.9650000186473,-0.06909759192852576 +277194,1385.9700000186474,-0.0690975736985424 +277195,1385.9750000186475,-0.0690975554686061 +277196,1385.9800000186476,-0.06909753723871691 +277197,1385.9850000186477,-0.06909751900887487 +277198,1385.9900000186478,-0.06909750077908003 +277199,1385.995000018648,-0.06909748254933243 +277200,1386.000000018648,-0.06909746431963211 +277201,1386.0050000186482,-0.06909744608997913 +277202,1386.0100000186483,-0.06909742786037353 +277203,1386.0150000186484,-0.06909740963081536 +277204,1386.0200000186485,-0.06909739140130465 +277205,1386.0250000186486,-0.06909737317184146 +277206,1386.0300000186487,-0.06909735494242583 +277207,1386.0350000186488,-0.06909733671305779 +277208,1386.040000018649,-0.0690973184837374 +277209,1386.045000018649,-0.06909730025446471 +277210,1386.0500000186491,-0.06909728202523976 +277211,1386.0550000186493,-0.0690972637960626 +277212,1386.0600000186494,-0.06909724556693325 +277213,1386.0650000186495,-0.0690972273378518 +277214,1386.0700000186496,-0.06909720910881825 +277215,1386.0750000186497,-0.06909719087983267 +277216,1386.0800000186498,-0.0690971726508951 +277217,1386.08500001865,-0.06909715442200559 +277218,1386.09000001865,-0.06909713619316418 +277219,1386.0950000186501,-0.06909711796437092 +277220,1386.1000000186502,-0.06909709973562583 +277221,1386.1050000186503,-0.06909708150692899 +277222,1386.1100000186505,-0.06909706327828043 +277223,1386.1150000186506,-0.06909704504968019 +277224,1386.1200000186507,-0.06909702682112832 +277225,1386.1250000186508,-0.06909700859262488 +277226,1386.130000018651,-0.06909699036416989 +277227,1386.135000018651,-0.06909697213576341 +277228,1386.140000018651,-0.06909695390740547 +277229,1386.1450000186512,-0.06909693567909615 +277230,1386.1500000186513,-0.06909691745083546 +277231,1386.1550000186514,-0.06909689922262346 +277232,1386.1600000186515,-0.0690968809944602 +277233,1386.1650000186517,-0.06909686276634569 +277234,1386.1700000186518,-0.06909684453828002 +277235,1386.1750000186519,-0.06909682631026323 +277236,1386.180000018652,-0.06909680808229535 +277237,1386.185000018652,-0.06909678985437641 +277238,1386.1900000186522,-0.06909677162650649 +277239,1386.1950000186523,-0.06909675339868561 +277240,1386.2000000186524,-0.06909673517091382 +277241,1386.2050000186525,-0.06909671694319117 +277242,1386.2100000186526,-0.0690966987155177 +277243,1386.2150000186527,-0.06909668048789347 +277244,1386.2200000186529,-0.0690966622603185 +277245,1386.225000018653,-0.06909664403279286 +277246,1386.230000018653,-0.0690966258053166 +277247,1386.2350000186532,-0.06909660757788973 +277248,1386.2400000186533,-0.06909658935051231 +277249,1386.2450000186534,-0.0690965711231844 +277250,1386.2500000186535,-0.06909655289590605 +277251,1386.2550000186536,-0.06909653466867727 +277252,1386.2600000186537,-0.06909651644149813 +277253,1386.2650000186538,-0.06909649821436867 +277254,1386.270000018654,-0.06909647998728893 +277255,1386.275000018654,-0.06909646176025896 +277256,1386.2800000186542,-0.06909644353327882 +277257,1386.2850000186543,-0.06909642530634852 +277258,1386.2900000186544,-0.06909640707946814 +277259,1386.2950000186545,-0.0690963888526377 +277260,1386.3000000186546,-0.06909637062585727 +277261,1386.3050000186547,-0.06909635239912688 +277262,1386.3100000186548,-0.06909633417244658 +277263,1386.315000018655,-0.0690963159458164 +277264,1386.320000018655,-0.06909629771923641 +277265,1386.3250000186551,-0.06909627949270664 +277266,1386.3300000186553,-0.06909626126622712 +277267,1386.3350000186554,-0.06909624303979793 +277268,1386.3400000186555,-0.06909622481341908 +277269,1386.3450000186556,-0.06909620658709065 +277270,1386.3500000186557,-0.06909618836081266 +277271,1386.3550000186558,-0.06909617013458516 +277272,1386.360000018656,-0.06909615190840822 +277273,1386.365000018656,-0.06909613368228185 +277274,1386.3700000186561,-0.06909611545620611 +277275,1386.3750000186562,-0.06909609723018105 +277276,1386.3800000186563,-0.0690960790042067 +277277,1386.3850000186565,-0.06909606077828312 +277278,1386.3900000186566,-0.06909604255241034 +277279,1386.3950000186567,-0.06909602432658841 +277280,1386.4000000186568,-0.06909600610081741 +277281,1386.405000018657,-0.06909598787509733 +277282,1386.410000018657,-0.06909596964942824 +277283,1386.415000018657,-0.0690959514238102 +277284,1386.4200000186572,-0.06909593319824321 +277285,1386.4250000186573,-0.06909591497272738 +277286,1386.4300000186574,-0.0690958967472627 +277287,1386.4350000186575,-0.06909587852184924 +277288,1386.4400000186577,-0.06909586029648705 +277289,1386.4450000186578,-0.06909584207117615 +277290,1386.4500000186579,-0.06909582384591662 +277291,1386.455000018658,-0.06909580562070847 +277292,1386.460000018658,-0.06909578739555175 +277293,1386.4650000186582,-0.06909576917044653 +277294,1386.4700000186583,-0.06909575094539284 +277295,1386.4750000186584,-0.06909573272039073 +277296,1386.4800000186585,-0.06909571449544023 +277297,1386.4850000186586,-0.0690956962705414 +277298,1386.4900000186587,-0.0690956780456943 +277299,1386.4950000186589,-0.06909565982089895 +277300,1386.500000018659,-0.06909564159615539 +277301,1386.505000018659,-0.06909562337146369 +277302,1386.5100000186592,-0.06909560514682388 +277303,1386.5150000186593,-0.069095586922236 +277304,1386.5200000186594,-0.0690955686977001 +277305,1386.5250000186595,-0.06909555047321624 +277306,1386.5300000186596,-0.06909553224878445 +277307,1386.5350000186597,-0.06909551402440478 +277308,1386.5400000186598,-0.06909549580007728 +277309,1386.54500001866,-0.06909547757580198 +277310,1386.55000001866,-0.06909545935157894 +277311,1386.5550000186602,-0.06909544112740819 +277312,1386.5600000186603,-0.0690954229032898 +277313,1386.5650000186604,-0.06909540467922377 +277314,1386.5700000186605,-0.06909538645521021 +277315,1386.5750000186606,-0.06909536823124911 +277316,1386.5800000186607,-0.06909535000734054 +277317,1386.5850000186608,-0.06909533178348454 +277318,1386.590000018661,-0.06909531355968114 +277319,1386.595000018661,-0.06909529533593042 +277320,1386.6000000186611,-0.0690952771122324 +277321,1386.6050000186613,-0.06909525888858713 +277322,1386.6100000186614,-0.06909524066499464 +277323,1386.6150000186615,-0.06909522244145501 +277324,1386.6200000186616,-0.06909520421796826 +277325,1386.6250000186617,-0.06909518599453443 +277326,1386.6300000186618,-0.06909516777115358 +277327,1386.635000018662,-0.06909514954782575 +277328,1386.640000018662,-0.069095131324551 +277329,1386.6450000186621,-0.06909511310132936 +277330,1386.6500000186622,-0.06909509487816089 +277331,1386.6550000186623,-0.06909507665504559 +277332,1386.6600000186625,-0.06909505843198355 +277333,1386.6650000186626,-0.06909504020897479 +277334,1386.6700000186627,-0.0690950219860194 +277335,1386.6750000186628,-0.06909500376311736 +277336,1386.680000018663,-0.06909498554026877 +277337,1386.685000018663,-0.06909496731747364 +277338,1386.690000018663,-0.06909494909473203 +277339,1386.6950000186632,-0.06909493087204399 +277340,1386.7000000186633,-0.06909491264940955 +277341,1386.7050000186634,-0.06909489442682876 +277342,1386.7100000186635,-0.06909487620430167 +277343,1386.7150000186637,-0.06909485798182832 +277344,1386.7200000186638,-0.06909483975940878 +277345,1386.7250000186639,-0.06909482153704305 +277346,1386.730000018664,-0.06909480331473121 +277347,1386.735000018664,-0.06909478509247328 +277348,1386.7400000186642,-0.06909476687026934 +277349,1386.7450000186643,-0.0690947486481194 +277350,1386.7500000186644,-0.06909473042602353 +277351,1386.7550000186645,-0.06909471220398176 +277352,1386.7600000186646,-0.06909469398199414 +277353,1386.7650000186648,-0.06909467576006072 +277354,1386.7700000186649,-0.06909465753818152 +277355,1386.775000018665,-0.06909463931635662 +277356,1386.780000018665,-0.06909462109458604 +277357,1386.7850000186652,-0.06909460287286986 +277358,1386.7900000186653,-0.06909458465120809 +277359,1386.7950000186654,-0.06909456642960078 +277360,1386.8000000186655,-0.06909454820804799 +277361,1386.8050000186656,-0.06909452998654975 +277362,1386.8100000186657,-0.0690945117651061 +277363,1386.8150000186658,-0.0690944935437171 +277364,1386.820000018666,-0.0690944753223828 +277365,1386.825000018666,-0.06909445710110325 +277366,1386.8300000186662,-0.06909443887987847 +277367,1386.8350000186663,-0.06909442065870852 +277368,1386.8400000186664,-0.06909440243759343 +277369,1386.8450000186665,-0.06909438421653326 +277370,1386.8500000186666,-0.06909436599552805 +277371,1386.8550000186667,-0.06909434777457786 +277372,1386.8600000186668,-0.0690943295536827 +277373,1386.865000018667,-0.06909431133284266 +277374,1386.870000018667,-0.06909429311205775 +277375,1386.8750000186672,-0.06909427489132804 +277376,1386.8800000186673,-0.06909425667065355 +277377,1386.8850000186674,-0.06909423845003435 +277378,1386.8900000186675,-0.06909422022947045 +277379,1386.8950000186676,-0.06909420200896195 +277380,1386.9000000186677,-0.06909418378850885 +277381,1386.9050000186678,-0.06909416556811121 +277382,1386.910000018668,-0.06909414734776907 +277383,1386.915000018668,-0.06909412912748247 +277384,1386.9200000186681,-0.06909411090725148 +277385,1386.9250000186682,-0.06909409268707613 +277386,1386.9300000186684,-0.06909407446695646 +277387,1386.9350000186685,-0.06909405624689252 +277388,1386.9400000186686,-0.06909403802688435 +277389,1386.9450000186687,-0.069094019806932 +277390,1386.9500000186688,-0.06909400158703552 +277391,1386.955000018669,-0.06909398336719495 +277392,1386.960000018669,-0.06909396514741033 +277393,1386.9650000186691,-0.06909394692768171 +277394,1386.9700000186692,-0.06909392870800915 +277395,1386.9750000186693,-0.06909391048839267 +277396,1386.9800000186694,-0.06909389226883232 +277397,1386.9850000186696,-0.06909387404932817 +277398,1386.9900000186697,-0.06909385582988023 +277399,1386.9950000186698,-0.06909383761048857 +277400,1387.0000000186699,-0.06909381939115322 +277401,1387.00500001867,-0.06909380117187423 +277402,1387.01000001867,-0.06909378295265166 +277403,1387.0150000186702,-0.06909376473348551 +277404,1387.0200000186703,-0.06909374651437589 +277405,1387.0250000186704,-0.06909372829532279 +277406,1387.0300000186705,-0.0690937100763263 +277407,1387.0350000186706,-0.06909369185738642 +277408,1387.0400000186708,-0.06909367363850322 +277409,1387.0450000186709,-0.06909365541967676 +277410,1387.050000018671,-0.06909363720090704 +277411,1387.055000018671,-0.06909361898219414 +277412,1387.0600000186712,-0.06909360076353811 +277413,1387.0650000186713,-0.06909358254493898 +277414,1387.0700000186714,-0.06909356432639681 +277415,1387.0750000186715,-0.0690935461079116 +277416,1387.0800000186716,-0.06909352788948346 +277417,1387.0850000186717,-0.06909350967111239 +277418,1387.0900000186718,-0.06909349145279844 +277419,1387.095000018672,-0.06909347323454168 +277420,1387.100000018672,-0.06909345501634213 +277421,1387.1050000186722,-0.06909343679819985 +277422,1387.1100000186723,-0.06909341858011488 +277423,1387.1150000186724,-0.06909340036208725 +277424,1387.1200000186725,-0.06909338214411703 +277425,1387.1250000186726,-0.06909336392620426 +277426,1387.1300000186727,-0.06909334570834898 +277427,1387.1350000186728,-0.06909332749055123 +277428,1387.140000018673,-0.06909330927281106 +277429,1387.145000018673,-0.06909329105512851 +277430,1387.1500000186732,-0.06909327283750365 +277431,1387.1550000186733,-0.06909325461993648 +277432,1387.1600000186734,-0.0690932364024271 +277433,1387.1650000186735,-0.0690932181849755 +277434,1387.1700000186736,-0.06909319996758176 +277435,1387.1750000186737,-0.06909318175024591 +277436,1387.1800000186738,-0.06909316353296799 +277437,1387.185000018674,-0.06909314531574808 +277438,1387.190000018674,-0.06909312709858619 +277439,1387.1950000186741,-0.06909310888148237 +277440,1387.2000000186742,-0.06909309066443667 +277441,1387.2050000186744,-0.06909307244744915 +277442,1387.2100000186745,-0.06909305423051984 +277443,1387.2150000186746,-0.06909303601364879 +277444,1387.2200000186747,-0.06909301779683603 +277445,1387.2250000186748,-0.06909299958008162 +277446,1387.230000018675,-0.06909298136338562 +277447,1387.235000018675,-0.06909296314674805 +277448,1387.2400000186751,-0.06909294493016896 +277449,1387.2450000186752,-0.06909292671364839 +277450,1387.2500000186753,-0.06909290849718638 +277451,1387.2550000186754,-0.06909289028078301 +277452,1387.2600000186756,-0.0690928720644383 +277453,1387.2650000186757,-0.0690928538481523 +277454,1387.2700000186758,-0.06909283563192505 +277455,1387.2750000186759,-0.06909281741575658 +277456,1387.280000018676,-0.06909279919964698 +277457,1387.285000018676,-0.06909278098359625 +277458,1387.2900000186762,-0.06909276276760447 +277459,1387.2950000186763,-0.06909274455167166 +277460,1387.3000000186764,-0.06909272633579788 +277461,1387.3050000186765,-0.06909270811998316 +277462,1387.3100000186766,-0.06909268990422755 +277463,1387.3150000186768,-0.06909267168853112 +277464,1387.3200000186769,-0.06909265347289387 +277465,1387.325000018677,-0.06909263525731589 +277466,1387.330000018677,-0.0690926170417972 +277467,1387.3350000186772,-0.06909259882633785 +277468,1387.3400000186773,-0.06909258061093788 +277469,1387.3450000186774,-0.06909256239559736 +277470,1387.3500000186775,-0.0690925441803163 +277471,1387.3550000186776,-0.06909252596509476 +277472,1387.3600000186777,-0.06909250774993278 +277473,1387.3650000186778,-0.06909248953483041 +277474,1387.370000018678,-0.0690924713197877 +277475,1387.375000018678,-0.06909245310480468 +277476,1387.3800000186782,-0.06909243488988141 +277477,1387.3850000186783,-0.06909241667501795 +277478,1387.3900000186784,-0.06909239846021431 +277479,1387.3950000186785,-0.06909238024547056 +277480,1387.4000000186786,-0.06909236203078672 +277481,1387.4050000186787,-0.06909234381616287 +277482,1387.4100000186788,-0.06909232560159903 +277483,1387.415000018679,-0.06909230738709525 +277484,1387.420000018679,-0.06909228917265157 +277485,1387.4250000186792,-0.06909227095826806 +277486,1387.4300000186793,-0.06909225274394475 +277487,1387.4350000186794,-0.06909223452968166 +277488,1387.4400000186795,-0.06909221631547886 +277489,1387.4450000186796,-0.0690921981013364 +277490,1387.4500000186797,-0.06909217988725432 +277491,1387.4550000186798,-0.06909216167323265 +277492,1387.46000001868,-0.06909214345927146 +277493,1387.46500001868,-0.06909212524537078 +277494,1387.4700000186801,-0.06909210703153067 +277495,1387.4750000186802,-0.06909208881775115 +277496,1387.4800000186804,-0.06909207060403227 +277497,1387.4850000186805,-0.0690920523903741 +277498,1387.4900000186806,-0.06909203417677665 +277499,1387.4950000186807,-0.06909201596324001 +277500,1387.5000000186808,-0.06909199774976418 +277501,1387.505000018681,-0.06909197953634923 +277502,1387.510000018681,-0.0690919613229952 +277503,1387.5150000186811,-0.06909194310970213 +277504,1387.5200000186812,-0.06909192489647008 +277505,1387.5250000186813,-0.06909190668329908 +277506,1387.5300000186814,-0.06909188847018917 +277507,1387.5350000186816,-0.0690918702571404 +277508,1387.5400000186817,-0.06909185204415283 +277509,1387.5450000186818,-0.0690918338312265 +277510,1387.5500000186819,-0.06909181561836143 +277511,1387.555000018682,-0.06909179740555771 +277512,1387.560000018682,-0.06909177919281535 +277513,1387.5650000186822,-0.0690917609801344 +277514,1387.5700000186823,-0.06909174276751494 +277515,1387.5750000186824,-0.06909172455495696 +277516,1387.5800000186825,-0.06909170634246052 +277517,1387.5850000186826,-0.06909168813002568 +277518,1387.5900000186828,-0.0690916699176525 +277519,1387.5950000186829,-0.069091651705341 +277520,1387.600000018683,-0.06909163349309122 +277521,1387.605000018683,-0.06909161528090323 +277522,1387.6100000186832,-0.06909159706877704 +277523,1387.6150000186833,-0.06909157885671274 +277524,1387.6200000186834,-0.06909156064471034 +277525,1387.6250000186835,-0.0690915424327699 +277526,1387.6300000186836,-0.06909152422089146 +277527,1387.6350000186837,-0.06909150600907506 +277528,1387.6400000186838,-0.06909148779732076 +277529,1387.645000018684,-0.06909146958562859 +277530,1387.650000018684,-0.06909145137399861 +277531,1387.6550000186842,-0.06909143316243085 +277532,1387.6600000186843,-0.06909141495092537 +277533,1387.6650000186844,-0.06909139673948221 +277534,1387.6700000186845,-0.0690913785281014 +277535,1387.6750000186846,-0.06909136031678301 +277536,1387.6800000186847,-0.06909134210552706 +277537,1387.6850000186848,-0.06909132389433362 +277538,1387.690000018685,-0.06909130568320271 +277539,1387.695000018685,-0.0690912874721344 +277540,1387.7000000186852,-0.06909126926112871 +277541,1387.7050000186853,-0.06909125105018572 +277542,1387.7100000186854,-0.06909123283930543 +277543,1387.7150000186855,-0.06909121462848793 +277544,1387.7200000186856,-0.06909119641773323 +277545,1387.7250000186857,-0.0690911782070414 +277546,1387.7300000186858,-0.06909115999641247 +277547,1387.735000018686,-0.06909114178584648 +277548,1387.740000018686,-0.06909112357534349 +277549,1387.7450000186861,-0.06909110536490354 +277550,1387.7500000186863,-0.06909108715452668 +277551,1387.7550000186864,-0.06909106894421294 +277552,1387.7600000186865,-0.06909105073396238 +277553,1387.7650000186866,-0.06909103252377503 +277554,1387.7700000186867,-0.06909101431365094 +277555,1387.7750000186868,-0.06909099610359018 +277556,1387.780000018687,-0.06909097789359277 +277557,1387.785000018687,-0.06909095968365875 +277558,1387.7900000186871,-0.06909094147378819 +277559,1387.7950000186872,-0.06909092326398111 +277560,1387.8000000186873,-0.06909090505423757 +277561,1387.8050000186875,-0.06909088684455761 +277562,1387.8100000186876,-0.06909086863494128 +277563,1387.8150000186877,-0.06909085042538861 +277564,1387.8200000186878,-0.06909083221589966 +277565,1387.825000018688,-0.06909081400647447 +277566,1387.830000018688,-0.0690907957971131 +277567,1387.835000018688,-0.06909077758781555 +277568,1387.8400000186882,-0.06909075937858192 +277569,1387.8450000186883,-0.06909074116941223 +277570,1387.8500000186884,-0.06909072296030652 +277571,1387.8550000186885,-0.06909070475126486 +277572,1387.8600000186887,-0.06909068654228726 +277573,1387.8650000186888,-0.06909066833337378 +277574,1387.8700000186889,-0.06909065012452448 +277575,1387.875000018689,-0.06909063191573939 +277576,1387.880000018689,-0.06909061370701854 +277577,1387.8850000186892,-0.069090595498362 +277578,1387.8900000186893,-0.06909057728976979 +277579,1387.8950000186894,-0.069090559081242 +277580,1387.9000000186895,-0.06909054087277863 +277581,1387.9050000186896,-0.06909052266437975 +277582,1387.9100000186897,-0.06909050445604539 +277583,1387.9150000186899,-0.06909048624777561 +277584,1387.92000001869,-0.06909046803957046 +277585,1387.92500001869,-0.06909044983142995 +277586,1387.9300000186902,-0.06909043162335417 +277587,1387.9350000186903,-0.06909041341534312 +277588,1387.9400000186904,-0.06909039520739688 +277589,1387.9450000186905,-0.06909037699951548 +277590,1387.9500000186906,-0.06909035879169897 +277591,1387.9550000186907,-0.0690903405839474 +277592,1387.9600000186908,-0.06909032237626081 +277593,1387.965000018691,-0.06909030416863925 +277594,1387.970000018691,-0.06909028596108274 +277595,1387.9750000186912,-0.06909026775359135 +277596,1387.9800000186913,-0.06909024954616513 +277597,1387.9850000186914,-0.0690902313388041 +277598,1387.9900000186915,-0.06909021313150832 +277599,1387.9950000186916,-0.06909019492427784 +277600,1388.0000000186917,-0.0690901767171127 +277601,1388.0050000186918,-0.06909015851001295 +277602,1388.010000018692,-0.06909014030297861 +277603,1388.015000018692,-0.06909012209600975 +277604,1388.0200000186921,-0.06909010388910641 +277605,1388.0250000186923,-0.06909008568226865 +277606,1388.0300000186924,-0.0690900674754965 +277607,1388.0350000186925,-0.06909004926879 +277608,1388.0400000186926,-0.0690900310621492 +277609,1388.0450000186927,-0.06909001285557413 +277610,1388.0500000186928,-0.06908999464906486 +277611,1388.055000018693,-0.06908997644262144 +277612,1388.060000018693,-0.06908995823624388 +277613,1388.0650000186931,-0.06908994002993225 +277614,1388.0700000186932,-0.06908992182368659 +277615,1388.0750000186933,-0.06908990361750696 +277616,1388.0800000186935,-0.06908988541139337 +277617,1388.0850000186936,-0.06908986720534589 +277618,1388.0900000186937,-0.06908984899936457 +277619,1388.0950000186938,-0.06908983079344945 +277620,1388.100000018694,-0.06908981258760057 +277621,1388.105000018694,-0.06908979438181796 +277622,1388.110000018694,-0.0690897761761017 +277623,1388.1150000186942,-0.0690897579704518 +277624,1388.1200000186943,-0.06908973976486833 +277625,1388.1250000186944,-0.06908972155935132 +277626,1388.1300000186945,-0.06908970335390083 +277627,1388.1350000186947,-0.06908968514851689 +277628,1388.1400000186948,-0.06908966694319957 +277629,1388.1450000186949,-0.06908964873794887 +277630,1388.150000018695,-0.06908963053276489 +277631,1388.155000018695,-0.06908961232764763 +277632,1388.1600000186952,-0.06908959412259714 +277633,1388.1650000186953,-0.0690895759176135 +277634,1388.1700000186954,-0.06908955771269673 +277635,1388.1750000186955,-0.06908953950784688 +277636,1388.1800000186956,-0.06908952130306399 +277637,1388.1850000186957,-0.0690895030983481 +277638,1388.1900000186959,-0.06908948489369926 +277639,1388.195000018696,-0.06908946668911753 +277640,1388.200000018696,-0.06908944848460294 +277641,1388.2050000186962,-0.06908943028015554 +277642,1388.2100000186963,-0.06908941207577537 +277643,1388.2150000186964,-0.06908939387146248 +277644,1388.2200000186965,-0.0690893756672169 +277645,1388.2250000186966,-0.0690893574630387 +277646,1388.2300000186967,-0.0690893392589279 +277647,1388.2350000186968,-0.06908932105488458 +277648,1388.240000018697,-0.06908930285090875 +277649,1388.245000018697,-0.06908928464700047 +277650,1388.2500000186972,-0.06908926644315978 +277651,1388.2550000186973,-0.06908924823938675 +277652,1388.2600000186974,-0.06908923003568139 +277653,1388.2650000186975,-0.06908921183204375 +277654,1388.2700000186976,-0.06908919362847389 +277655,1388.2750000186977,-0.06908917542497185 +277656,1388.2800000186978,-0.06908915722153768 +277657,1388.285000018698,-0.06908913901817142 +277658,1388.290000018698,-0.0690891208148731 +277659,1388.2950000186981,-0.06908910261164279 +277660,1388.3000000186983,-0.06908908440848052 +277661,1388.3050000186984,-0.06908906620538635 +277662,1388.3100000186985,-0.0690890480023603 +277663,1388.3150000186986,-0.06908902979940244 +277664,1388.3200000186987,-0.0690890115965128 +277665,1388.3250000186988,-0.06908899339369144 +277666,1388.330000018699,-0.06908897519093839 +277667,1388.335000018699,-0.0690889569882537 +277668,1388.3400000186991,-0.0690889387856374 +277669,1388.3450000186992,-0.06908892058308957 +277670,1388.3500000186993,-0.06908890238061023 +277671,1388.3550000186995,-0.06908888417819943 +277672,1388.3600000186996,-0.06908886597585721 +277673,1388.3650000186997,-0.06908884777358364 +277674,1388.3700000186998,-0.06908882957137873 +277675,1388.3750000187,-0.06908881136924254 +277676,1388.3800000187,-0.06908879316717512 +277677,1388.3850000187,-0.0690887749651765 +277678,1388.3900000187002,-0.06908875676324674 +277679,1388.3950000187003,-0.06908873856138589 +277680,1388.4000000187004,-0.069088720359594 +277681,1388.4050000187005,-0.06908870215787107 +277682,1388.4100000187007,-0.06908868395621719 +277683,1388.4150000187008,-0.06908866575463239 +277684,1388.4200000187009,-0.06908864755311672 +277685,1388.425000018701,-0.0690886293516702 +277686,1388.430000018701,-0.06908861115029293 +277687,1388.4350000187012,-0.0690885929489849 +277688,1388.4400000187013,-0.06908857474774618 +277689,1388.4450000187014,-0.06908855654657681 +277690,1388.4500000187015,-0.06908853834547685 +277691,1388.4550000187016,-0.06908852014444632 +277692,1388.4600000187017,-0.06908850194348529 +277693,1388.4650000187019,-0.06908848374259378 +277694,1388.470000018702,-0.06908846554177185 +277695,1388.475000018702,-0.06908844734101954 +277696,1388.4800000187022,-0.0690884291403369 +277697,1388.4850000187023,-0.06908841093972397 +277698,1388.4900000187024,-0.06908839273918081 +277699,1388.4950000187025,-0.06908837453870745 +277700,1388.5000000187026,-0.06908835633830393 +277701,1388.5050000187027,-0.0690883381379703 +277702,1388.5100000187028,-0.0690883199377066 +277703,1388.515000018703,-0.06908830173751289 +277704,1388.520000018703,-0.06908828353738922 +277705,1388.5250000187032,-0.06908826533733561 +277706,1388.5300000187033,-0.06908824713735214 +277707,1388.5350000187034,-0.0690882289374388 +277708,1388.5400000187035,-0.06908821073759569 +277709,1388.5450000187036,-0.06908819253782282 +277710,1388.5500000187037,-0.06908817433812026 +277711,1388.5550000187038,-0.06908815613848804 +277712,1388.560000018704,-0.0690881379389262 +277713,1388.565000018704,-0.0690881197394348 +277714,1388.5700000187041,-0.06908810154001387 +277715,1388.5750000187043,-0.06908808334066348 +277716,1388.5800000187044,-0.06908806514138364 +277717,1388.5850000187045,-0.06908804694217442 +277718,1388.5900000187046,-0.06908802874303586 +277719,1388.5950000187047,-0.06908801054396801 +277720,1388.6000000187048,-0.0690879923449709 +277721,1388.605000018705,-0.06908797414604459 +277722,1388.610000018705,-0.06908795594718911 +277723,1388.6150000187051,-0.06908793774840453 +277724,1388.6200000187052,-0.06908791954969087 +277725,1388.6250000187054,-0.06908790135104818 +277726,1388.6300000187055,-0.06908788315247652 +277727,1388.6350000187056,-0.06908786495397592 +277728,1388.6400000187057,-0.06908784675554644 +277729,1388.6450000187058,-0.0690878285571881 +277730,1388.650000018706,-0.06908781035890096 +277731,1388.655000018706,-0.06908779216068507 +277732,1388.6600000187061,-0.06908777396254047 +277733,1388.6650000187062,-0.0690877557644672 +277734,1388.6700000187063,-0.06908773756646532 +277735,1388.6750000187064,-0.06908771936853485 +277736,1388.6800000187066,-0.06908770117067586 +277737,1388.6850000187067,-0.06908768297288838 +277738,1388.6900000187068,-0.06908766477517246 +277739,1388.6950000187069,-0.06908764657752814 +277740,1388.700000018707,-0.06908762837995547 +277741,1388.705000018707,-0.0690876101824545 +277742,1388.7100000187072,-0.06908759198502527 +277743,1388.7150000187073,-0.06908757378766782 +277744,1388.7200000187074,-0.06908755559038221 +277745,1388.7250000187075,-0.06908753739316847 +277746,1388.7300000187076,-0.06908751919602667 +277747,1388.7350000187078,-0.06908750099895682 +277748,1388.7400000187079,-0.06908748280195898 +277749,1388.745000018708,-0.06908746460503318 +277750,1388.750000018708,-0.06908744640817949 +277751,1388.7550000187082,-0.06908742821139795 +277752,1388.7600000187083,-0.0690874100146886 +277753,1388.7650000187084,-0.06908739181805149 +277754,1388.7700000187085,-0.06908737362148665 +277755,1388.7750000187086,-0.06908735542499414 +277756,1388.7800000187087,-0.069087337228574 +277757,1388.7850000187088,-0.06908731903222627 +277758,1388.790000018709,-0.06908730083595101 +277759,1388.795000018709,-0.06908728263974825 +277760,1388.8000000187092,-0.06908726444361805 +277761,1388.8050000187093,-0.06908724624756045 +277762,1388.8100000187094,-0.06908722805157548 +277763,1388.8150000187095,-0.0690872098556632 +277764,1388.8200000187096,-0.06908719165982366 +277765,1388.8250000187097,-0.06908717346405689 +277766,1388.8300000187098,-0.06908715526836294 +277767,1388.83500001871,-0.06908713707274186 +277768,1388.84000001871,-0.06908711887719368 +277769,1388.8450000187102,-0.06908710068171846 +277770,1388.8500000187103,-0.06908708248631623 +277771,1388.8550000187104,-0.06908706429098707 +277772,1388.8600000187105,-0.069087046095731 +277773,1388.8650000187106,-0.06908702790054805 +277774,1388.8700000187107,-0.0690870097054383 +277775,1388.8750000187108,-0.06908699151040176 +277776,1388.880000018711,-0.0690869733154385 +277777,1388.885000018711,-0.06908695512054855 +277778,1388.8900000187111,-0.06908693692573198 +277779,1388.8950000187112,-0.0690869187309888 +277780,1388.9000000187114,-0.06908690053631908 +277781,1388.9050000187115,-0.06908688234172286 +277782,1388.9100000187116,-0.06908686414720018 +277783,1388.9150000187117,-0.06908684595275108 +277784,1388.9200000187118,-0.06908682775837562 +277785,1388.925000018712,-0.06908680956407383 +277786,1388.930000018712,-0.06908679136984577 +277787,1388.9350000187121,-0.06908677317569148 +277788,1388.9400000187122,-0.069086754981611 +277789,1388.9450000187123,-0.06908673678760437 +277790,1388.9500000187124,-0.06908671859367164 +277791,1388.9550000187126,-0.06908670039981286 +277792,1388.9600000187127,-0.0690866822060281 +277793,1388.9650000187128,-0.06908666401231735 +277794,1388.9700000187129,-0.06908664581868068 +277795,1388.975000018713,-0.06908662762511814 +277796,1388.980000018713,-0.06908660943162978 +277797,1388.9850000187132,-0.06908659123821563 +277798,1388.9900000187133,-0.06908657304487575 +277799,1388.9950000187134,-0.06908655485161018 +277800,1389.0000000187135,-0.06908653665841895 +277801,1389.0050000187136,-0.06908651846530212 +277802,1389.0100000187138,-0.06908650027225974 +277803,1389.0150000187139,-0.06908648207929186 +277804,1389.020000018714,-0.0690864638863985 +277805,1389.025000018714,-0.0690864456935797 +277806,1389.0300000187142,-0.06908642750083555 +277807,1389.0350000187143,-0.06908640930816605 +277808,1389.0400000187144,-0.06908639111557127 +277809,1389.0450000187145,-0.06908637292305125 +277810,1389.0500000187146,-0.06908635473060605 +277811,1389.0550000187147,-0.06908633653823569 +277812,1389.0600000187148,-0.06908631834594021 +277813,1389.065000018715,-0.06908630015371968 +277814,1389.070000018715,-0.06908628196157411 +277815,1389.0750000187152,-0.0690862637695036 +277816,1389.0800000187153,-0.06908624557750814 +277817,1389.0850000187154,-0.06908622738558781 +277818,1389.0900000187155,-0.06908620919374263 +277819,1389.0950000187156,-0.06908619100197266 +277820,1389.1000000187157,-0.06908617281027796 +277821,1389.1050000187158,-0.06908615461865855 +277822,1389.110000018716,-0.06908613642711449 +277823,1389.115000018716,-0.0690861182356458 +277824,1389.1200000187162,-0.06908610004425256 +277825,1389.1250000187163,-0.0690860818529348 +277826,1389.1300000187164,-0.06908606366169255 +277827,1389.1350000187165,-0.06908604547052588 +277828,1389.1400000187166,-0.06908602727943482 +277829,1389.1450000187167,-0.06908600908841941 +277830,1389.1500000187168,-0.06908599089747972 +277831,1389.155000018717,-0.06908597270661578 +277832,1389.160000018717,-0.06908595451582762 +277833,1389.1650000187171,-0.06908593632511531 +277834,1389.1700000187172,-0.06908591813447888 +277835,1389.1750000187174,-0.0690858999439184 +277836,1389.1800000187175,-0.06908588175343387 +277837,1389.1850000187176,-0.06908586356302536 +277838,1389.1900000187177,-0.06908584537269291 +277839,1389.1950000187178,-0.06908582718243658 +277840,1389.200000018718,-0.06908580899225639 +277841,1389.205000018718,-0.06908579080215241 +277842,1389.2100000187181,-0.06908577261212466 +277843,1389.2150000187182,-0.06908575442217321 +277844,1389.2200000187183,-0.06908573623229809 +277845,1389.2250000187184,-0.06908571804249936 +277846,1389.2300000187186,-0.06908569985277704 +277847,1389.2350000187187,-0.0690856816631312 +277848,1389.2400000187188,-0.06908566347356186 +277849,1389.2450000187189,-0.0690856452840691 +277850,1389.250000018719,-0.06908562709465293 +277851,1389.255000018719,-0.06908560890531343 +277852,1389.2600000187192,-0.06908559071605061 +277853,1389.2650000187193,-0.06908557252686452 +277854,1389.2700000187194,-0.06908555433775523 +277855,1389.2750000187195,-0.06908553614872276 +277856,1389.2800000187196,-0.06908551795976717 +277857,1389.2850000187198,-0.06908549977088849 +277858,1389.2900000187199,-0.06908548158208677 +277859,1389.29500001872,-0.06908546339336208 +277860,1389.30000001872,-0.06908544520471444 +277861,1389.3050000187202,-0.06908542701614388 +277862,1389.3100000187203,-0.06908540882765049 +277863,1389.3150000187204,-0.06908539063923426 +277864,1389.3200000187205,-0.06908537245089529 +277865,1389.3250000187206,-0.06908535426263357 +277866,1389.3300000187207,-0.06908533607444921 +277867,1389.3350000187208,-0.0690853178863422 +277868,1389.340000018721,-0.0690852996983126 +277869,1389.345000018721,-0.06908528151036047 +277870,1389.3500000187212,-0.06908526332248585 +277871,1389.3550000187213,-0.06908524513468876 +277872,1389.3600000187214,-0.06908522694696928 +277873,1389.3650000187215,-0.06908520875932744 +277874,1389.3700000187216,-0.06908519057176328 +277875,1389.3750000187217,-0.06908517238427685 +277876,1389.3800000187218,-0.06908515419686818 +277877,1389.385000018722,-0.06908513600953735 +277878,1389.390000018722,-0.0690851178222844 +277879,1389.3950000187222,-0.06908509963510934 +277880,1389.4000000187223,-0.06908508144801222 +277881,1389.4050000187224,-0.0690850632609931 +277882,1389.4100000187225,-0.06908504507405205 +277883,1389.4150000187226,-0.06908502688718908 +277884,1389.4200000187227,-0.06908500870040424 +277885,1389.4250000187228,-0.06908499051369758 +277886,1389.430000018723,-0.06908497232706914 +277887,1389.435000018723,-0.06908495414051898 +277888,1389.4400000187231,-0.06908493595404713 +277889,1389.4450000187232,-0.06908491776765363 +277890,1389.4500000187234,-0.06908489958133855 +277891,1389.4550000187235,-0.06908488139510192 +277892,1389.4600000187236,-0.06908486320894378 +277893,1389.4650000187237,-0.06908484502286417 +277894,1389.4700000187238,-0.06908482683686316 +277895,1389.475000018724,-0.06908480865094077 +277896,1389.480000018724,-0.06908479046509707 +277897,1389.4850000187241,-0.06908477227933207 +277898,1389.4900000187242,-0.06908475409364584 +277899,1389.4950000187243,-0.06908473590803843 +277900,1389.5000000187244,-0.06908471772250986 +277901,1389.5050000187246,-0.0690846995370602 +277902,1389.5100000187247,-0.06908468135168948 +277903,1389.5150000187248,-0.06908466316639776 +277904,1389.5200000187249,-0.06908464498118506 +277905,1389.525000018725,-0.06908462679605146 +277906,1389.530000018725,-0.06908460861099697 +277907,1389.5350000187252,-0.06908459042602165 +277908,1389.5400000187253,-0.06908457224112555 +277909,1389.5450000187254,-0.0690845540563087 +277910,1389.5500000187255,-0.06908453587157116 +277911,1389.5550000187257,-0.06908451768691297 +277912,1389.5600000187258,-0.06908449950233418 +277913,1389.5650000187259,-0.06908448131783483 +277914,1389.570000018726,-0.06908446313341496 +277915,1389.575000018726,-0.0690844449490746 +277916,1389.5800000187262,-0.06908442676481384 +277917,1389.5850000187263,-0.0690844085806327 +277918,1389.5900000187264,-0.06908439039653122 +277919,1389.5950000187265,-0.06908437221250945 +277920,1389.6000000187266,-0.06908435402856743 +277921,1389.6050000187267,-0.0690843358447052 +277922,1389.6100000187269,-0.06908431766092284 +277923,1389.615000018727,-0.06908429947722036 +277924,1389.620000018727,-0.06908428129359781 +277925,1389.6250000187272,-0.06908426311005525 +277926,1389.6300000187273,-0.06908424492659271 +277927,1389.6350000187274,-0.06908422674321023 +277928,1389.6400000187275,-0.06908420855990786 +277929,1389.6450000187276,-0.06908419037668567 +277930,1389.6500000187277,-0.06908417219354367 +277931,1389.6550000187278,-0.06908415401048193 +277932,1389.660000018728,-0.06908413582750048 +277933,1389.665000018728,-0.06908411764459936 +277934,1389.6700000187282,-0.06908409946177864 +277935,1389.6750000187283,-0.06908408127903833 +277936,1389.6800000187284,-0.0690840630963785 +277937,1389.6850000187285,-0.06908404491379919 +277938,1389.6900000187286,-0.06908402673130046 +277939,1389.6950000187287,-0.06908400854888233 +277940,1389.7000000187288,-0.06908399036654485 +277941,1389.705000018729,-0.06908397218428808 +277942,1389.710000018729,-0.06908395400211204 +277943,1389.7150000187291,-0.06908393582001679 +277944,1389.7200000187293,-0.06908391763800238 +277945,1389.7250000187294,-0.06908389945606885 +277946,1389.7300000187295,-0.06908388127421625 +277947,1389.7350000187296,-0.0690838630924446 +277948,1389.7400000187297,-0.06908384491075398 +277949,1389.7450000187298,-0.06908382672914443 +277950,1389.75000001873,-0.06908380854761596 +277951,1389.75500001873,-0.06908379036616866 +277952,1389.7600000187301,-0.06908377218480254 +277953,1389.7650000187302,-0.06908375400351767 +277954,1389.7700000187303,-0.06908373582231409 +277955,1389.7750000187305,-0.06908371764119182 +277956,1389.7800000187306,-0.06908369946015094 +277957,1389.7850000187307,-0.06908368127919147 +277958,1389.7900000187308,-0.06908366309831347 +277959,1389.795000018731,-0.06908364491751696 +277960,1389.800000018731,-0.06908362673680202 +277961,1389.805000018731,-0.06908360855616867 +277962,1389.8100000187312,-0.06908359037561698 +277963,1389.8150000187313,-0.06908357219514698 +277964,1389.8200000187314,-0.06908355401475869 +277965,1389.8250000187315,-0.06908353583445219 +277966,1389.8300000187317,-0.06908351765422752 +277967,1389.8350000187318,-0.06908349947408472 +277968,1389.8400000187319,-0.06908348129402382 +277969,1389.845000018732,-0.0690834631140449 +277970,1389.850000018732,-0.06908344493414796 +277971,1389.8550000187322,-0.06908342675433309 +277972,1389.8600000187323,-0.0690834085746003 +277973,1389.8650000187324,-0.06908339039494965 +277974,1389.8700000187325,-0.06908337221538119 +277975,1389.8750000187326,-0.06908335403589495 +277976,1389.8800000187327,-0.06908333585649098 +277977,1389.8850000187329,-0.06908331767716935 +277978,1389.890000018733,-0.06908329949793007 +277979,1389.895000018733,-0.0690832813187732 +277980,1389.9000000187332,-0.06908326313969879 +277981,1389.9050000187333,-0.06908324496070686 +277982,1389.9100000187334,-0.0690832267817975 +277983,1389.9150000187335,-0.06908320860297071 +277984,1389.9200000187336,-0.06908319042422655 +277985,1389.9250000187337,-0.06908317224556507 +277986,1389.9300000187338,-0.06908315406698631 +277987,1389.935000018734,-0.06908313588849034 +277988,1389.940000018734,-0.06908311771007716 +277989,1389.9450000187342,-0.06908309953174685 +277990,1389.9500000187343,-0.06908308135349946 +277991,1389.9550000187344,-0.06908306317533498 +277992,1389.9600000187345,-0.06908304499725353 +277993,1389.9650000187346,-0.0690830268192551 +277994,1389.9700000187347,-0.06908300864133975 +277995,1389.9750000187348,-0.06908299046350753 +277996,1389.980000018735,-0.06908297228575849 +277997,1389.985000018735,-0.06908295410809266 +277998,1389.9900000187351,-0.06908293593051011 +277999,1389.9950000187353,-0.06908291775301084 +278000,1390.0000000187354,-0.06908289957559494 +278001,1390.0050000187355,-0.06908288139826244 +278002,1390.0100000187356,-0.06908286322101337 +278003,1390.0150000187357,-0.0690828450438478 +278004,1390.0200000187358,-0.06908282686676576 +278005,1390.025000018736,-0.0690828086897673 +278006,1390.030000018736,-0.06908279051285245 +278007,1390.0350000187361,-0.06908277233602127 +278008,1390.0400000187362,-0.06908275415927381 +278009,1390.0450000187363,-0.06908273598261011 +278010,1390.0500000187365,-0.0690827178060302 +278011,1390.0550000187366,-0.06908269962953414 +278012,1390.0600000187367,-0.06908268145312198 +278013,1390.0650000187368,-0.06908266327679376 +278014,1390.070000018737,-0.06908264510054951 +278015,1390.075000018737,-0.0690826269243893 +278016,1390.080000018737,-0.06908260874831315 +278017,1390.0850000187372,-0.06908259057232112 +278018,1390.0900000187373,-0.06908257239641326 +278019,1390.0950000187374,-0.0690825542205896 +278020,1390.1000000187375,-0.06908253604485019 +278021,1390.1050000187377,-0.06908251786919507 +278022,1390.1100000187378,-0.0690824996936243 +278023,1390.1150000187379,-0.06908248151813791 +278024,1390.120000018738,-0.06908246334273596 +278025,1390.125000018738,-0.06908244516741849 +278026,1390.1300000187382,-0.06908242699218553 +278027,1390.1350000187383,-0.06908240881703714 +278028,1390.1400000187384,-0.06908239064197337 +278029,1390.1450000187385,-0.06908237246699427 +278030,1390.1500000187386,-0.06908235429209984 +278031,1390.1550000187387,-0.06908233611729017 +278032,1390.1600000187389,-0.06908231794256528 +278033,1390.165000018739,-0.06908229976792524 +278034,1390.170000018739,-0.06908228159337007 +278035,1390.1750000187392,-0.06908226341889982 +278036,1390.1800000187393,-0.06908224524451456 +278037,1390.1850000187394,-0.06908222707021432 +278038,1390.1900000187395,-0.06908220889599913 +278039,1390.1950000187396,-0.06908219072186905 +278040,1390.2000000187397,-0.06908217254782412 +278041,1390.2050000187398,-0.06908215437386439 +278042,1390.21000001874,-0.06908213619998989 +278043,1390.21500001874,-0.06908211802620068 +278044,1390.2200000187402,-0.0690820998524968 +278045,1390.2250000187403,-0.0690820816788783 +278046,1390.2300000187404,-0.06908206350534522 +278047,1390.2350000187405,-0.0690820453318976 +278048,1390.2400000187406,-0.0690820271585355 +278049,1390.2450000187407,-0.06908200898525894 +278050,1390.2500000187408,-0.06908199081206799 +278051,1390.255000018741,-0.06908197263896268 +278052,1390.260000018741,-0.06908195446594308 +278053,1390.2650000187411,-0.0690819362930092 +278054,1390.2700000187413,-0.0690819181201611 +278055,1390.2750000187414,-0.06908189994739881 +278056,1390.2800000187415,-0.06908188177472241 +278057,1390.2850000187416,-0.06908186360213191 +278058,1390.2900000187417,-0.06908184542962736 +278059,1390.2950000187418,-0.06908182725720884 +278060,1390.300000018742,-0.06908180908487635 +278061,1390.305000018742,-0.06908179091262998 +278062,1390.3100000187421,-0.06908177274046971 +278063,1390.3150000187422,-0.06908175456839566 +278064,1390.3200000187423,-0.06908173639640783 +278065,1390.3250000187425,-0.06908171822450626 +278066,1390.3300000187426,-0.06908170005269101 +278067,1390.3350000187427,-0.06908168188096216 +278068,1390.3400000187428,-0.06908166370931969 +278069,1390.345000018743,-0.06908164553776368 +278070,1390.350000018743,-0.06908162736629415 +278071,1390.355000018743,-0.06908160919491119 +278072,1390.3600000187432,-0.0690815910236148 +278073,1390.3650000187433,-0.06908157285240506 +278074,1390.3700000187434,-0.06908155468128199 +278075,1390.3750000187435,-0.06908153651024564 +278076,1390.3800000187437,-0.06908151833929607 +278077,1390.3850000187438,-0.06908150016843331 +278078,1390.3900000187439,-0.0690814819976574 +278079,1390.395000018744,-0.0690814638269684 +278080,1390.400000018744,-0.06908144565636634 +278081,1390.4050000187442,-0.06908142748585128 +278082,1390.4100000187443,-0.06908140931542325 +278083,1390.4150000187444,-0.06908139114508233 +278084,1390.4200000187445,-0.06908137297482851 +278085,1390.4250000187446,-0.06908135480466188 +278086,1390.4300000187447,-0.06908133663458245 +278087,1390.4350000187449,-0.06908131846459029 +278088,1390.440000018745,-0.06908130029468544 +278089,1390.445000018745,-0.06908128212486794 +278090,1390.4500000187452,-0.06908126395513785 +278091,1390.4550000187453,-0.06908124578549518 +278092,1390.4600000187454,-0.06908122761594002 +278093,1390.4650000187455,-0.06908120944647238 +278094,1390.4700000187456,-0.06908119127709231 +278095,1390.4750000187457,-0.06908117310779986 +278096,1390.4800000187458,-0.06908115493859508 +278097,1390.485000018746,-0.06908113676947801 +278098,1390.490000018746,-0.0690811186004487 +278099,1390.4950000187462,-0.0690811004315072 +278100,1390.5000000187463,-0.06908108226265354 +278101,1390.5050000187464,-0.06908106409388777 +278102,1390.5100000187465,-0.06908104592520993 +278103,1390.5150000187466,-0.06908102775662009 +278104,1390.5200000187467,-0.06908100958811826 +278105,1390.5250000187468,-0.0690809914197045 +278106,1390.530000018747,-0.06908097325137887 +278107,1390.535000018747,-0.0690809550831414 +278108,1390.5400000187472,-0.06908093691499212 +278109,1390.5450000187473,-0.0690809187469311 +278110,1390.5500000187474,-0.06908090057895838 +278111,1390.5550000187475,-0.06908088241107399 +278112,1390.5600000187476,-0.06908086424327799 +278113,1390.5650000187477,-0.06908084607557043 +278114,1390.5700000187478,-0.06908082790795134 +278115,1390.575000018748,-0.06908080974042076 +278116,1390.580000018748,-0.06908079157297875 +278117,1390.5850000187481,-0.06908077340562535 +278118,1390.5900000187482,-0.06908075523836062 +278119,1390.5950000187484,-0.06908073707118456 +278120,1390.6000000187485,-0.06908071890409725 +278121,1390.6050000187486,-0.06908070073709874 +278122,1390.6100000187487,-0.06908068257018905 +278123,1390.6150000187488,-0.06908066440336826 +278124,1390.620000018749,-0.06908064623663639 +278125,1390.625000018749,-0.06908062806999349 +278126,1390.6300000187491,-0.0690806099034396 +278127,1390.6350000187492,-0.06908059173697477 +278128,1390.6400000187493,-0.06908057357059905 +278129,1390.6450000187494,-0.06908055540431246 +278130,1390.6500000187496,-0.06908053723811507 +278131,1390.6550000187497,-0.06908051907200692 +278132,1390.6600000187498,-0.06908050090598807 +278133,1390.6650000187499,-0.06908048274005853 +278134,1390.67000001875,-0.06908046457421838 +278135,1390.67500001875,-0.06908044640846762 +278136,1390.6800000187502,-0.06908042824280633 +278137,1390.6850000187503,-0.06908041007723456 +278138,1390.6900000187504,-0.06908039191175235 +278139,1390.6950000187505,-0.06908037374635972 +278140,1390.7000000187506,-0.06908035558105675 +278141,1390.7050000187508,-0.06908033741584346 +278142,1390.7100000187509,-0.06908031925071989 +278143,1390.715000018751,-0.06908030108568612 +278144,1390.720000018751,-0.06908028292074216 +278145,1390.7250000187512,-0.06908026475588805 +278146,1390.7300000187513,-0.06908024659112387 +278147,1390.7350000187514,-0.06908022842644963 +278148,1390.7400000187515,-0.06908021026186542 +278149,1390.7450000187516,-0.06908019209737123 +278150,1390.7500000187517,-0.06908017393296716 +278151,1390.7550000187518,-0.06908015576865321 +278152,1390.760000018752,-0.06908013760442944 +278153,1390.765000018752,-0.0690801194402959 +278154,1390.7700000187522,-0.06908010127625264 +278155,1390.7750000187523,-0.06908008311229967 +278156,1390.7800000187524,-0.06908006494843709 +278157,1390.7850000187525,-0.06908004678466491 +278158,1390.7900000187526,-0.06908002862098316 +278159,1390.7950000187527,-0.06908001045739193 +278160,1390.8000000187528,-0.06907999229389122 +278161,1390.805000018753,-0.0690799741304811 +278162,1390.810000018753,-0.06907995596716163 +278163,1390.8150000187532,-0.0690799378039328 +278164,1390.8200000187533,-0.06907991964079471 +278165,1390.8250000187534,-0.06907990147774738 +278166,1390.8300000187535,-0.06907988331479087 +278167,1390.8350000187536,-0.06907986515192521 +278168,1390.8400000187537,-0.06907984698915044 +278169,1390.8450000187538,-0.06907982882646663 +278170,1390.850000018754,-0.0690798106638738 +278171,1390.855000018754,-0.06907979250137199 +278172,1390.8600000187541,-0.06907977433896127 +278173,1390.8650000187542,-0.06907975617664168 +278174,1390.8700000187544,-0.06907973801441325 +278175,1390.8750000187545,-0.06907971985227604 +278176,1390.8800000187546,-0.0690797016902301 +278177,1390.8850000187547,-0.06907968352827544 +278178,1390.8900000187548,-0.06907966536641215 +278179,1390.895000018755,-0.06907964720464024 +278180,1390.900000018755,-0.06907962904295976 +278181,1390.9050000187551,-0.06907961088137078 +278182,1390.9100000187552,-0.06907959271987332 +278183,1390.9150000187553,-0.06907957455846743 +278184,1390.9200000187554,-0.06907955639715316 +278185,1390.9250000187556,-0.06907953823593055 +278186,1390.9300000187557,-0.06907952007479964 +278187,1390.9350000187558,-0.0690795019137605 +278188,1390.9400000187559,-0.06907948375281314 +278189,1390.945000018756,-0.06907946559195763 +278190,1390.950000018756,-0.069079447431194 +278191,1390.9550000187562,-0.06907942927052231 +278192,1390.9600000187563,-0.0690794111099426 +278193,1390.9650000187564,-0.0690793929494549 +278194,1390.9700000187565,-0.06907937478905928 +278195,1390.9750000187566,-0.06907935662875576 +278196,1390.9800000187568,-0.06907933846854439 +278197,1390.9850000187569,-0.06907932030842523 +278198,1390.990000018757,-0.06907930214839832 +278199,1390.995000018757,-0.06907928398846369 +278200,1391.0000000187572,-0.06907926582862141 +278201,1391.0050000187573,-0.0690792476688715 +278202,1391.0100000187574,-0.06907922950921401 +278203,1391.0150000187575,-0.06907921134964899 +278204,1391.0200000187576,-0.06907919319017648 +278205,1391.0250000187577,-0.06907917503079654 +278206,1391.0300000187578,-0.0690791568715092 +278207,1391.035000018758,-0.06907913871231453 +278208,1391.040000018758,-0.06907912055321253 +278209,1391.0450000187582,-0.06907910239420326 +278210,1391.0500000187583,-0.06907908423528679 +278211,1391.0550000187584,-0.06907906607646315 +278212,1391.0600000187585,-0.06907904791773238 +278213,1391.0650000187586,-0.06907902975909452 +278214,1391.0700000187587,-0.06907901160054963 +278215,1391.0750000187588,-0.06907899344209775 +278216,1391.080000018759,-0.06907897528373892 +278217,1391.085000018759,-0.0690789571254732 +278218,1391.0900000187592,-0.06907893896730062 +278219,1391.0950000187593,-0.06907892080922122 +278220,1391.1000000187594,-0.06907890265123505 +278221,1391.1050000187595,-0.06907888449334217 +278222,1391.1100000187596,-0.06907886633554258 +278223,1391.1150000187597,-0.0690788481778364 +278224,1391.1200000187598,-0.06907883002022361 +278225,1391.12500001876,-0.06907881186270427 +278226,1391.13000001876,-0.06907879370527845 +278227,1391.1350000187601,-0.06907877554794617 +278228,1391.1400000187602,-0.06907875739070747 +278229,1391.1450000187604,-0.06907873923356242 +278230,1391.1500000187605,-0.06907872107651104 +278231,1391.1550000187606,-0.0690787029195534 +278232,1391.1600000187607,-0.06907868476268952 +278233,1391.1650000187608,-0.06907866660591945 +278234,1391.170000018761,-0.06907864844924325 +278235,1391.175000018761,-0.06907863029266095 +278236,1391.1800000187611,-0.0690786121361726 +278237,1391.1850000187612,-0.06907859397977825 +278238,1391.1900000187613,-0.06907857582347794 +278239,1391.1950000187614,-0.06907855766727171 +278240,1391.2000000187616,-0.06907853951115961 +278241,1391.2050000187617,-0.06907852135514167 +278242,1391.2100000187618,-0.06907850319921796 +278243,1391.2150000187619,-0.06907848504338852 +278244,1391.220000018762,-0.06907846688765339 +278245,1391.225000018762,-0.0690784487320126 +278246,1391.2300000187622,-0.06907843057646622 +278247,1391.2350000187623,-0.06907841242101428 +278248,1391.2400000187624,-0.06907839426565683 +278249,1391.2450000187625,-0.0690783761103939 +278250,1391.2500000187626,-0.06907835795522557 +278251,1391.2550000187628,-0.06907833980015185 +278252,1391.2600000187629,-0.0690783216451728 +278253,1391.265000018763,-0.06907830349028847 +278254,1391.270000018763,-0.06907828533549888 +278255,1391.2750000187632,-0.06907826718080409 +278256,1391.2800000187633,-0.06907824902620416 +278257,1391.2850000187634,-0.06907823087169912 +278258,1391.2900000187635,-0.06907821271728902 +278259,1391.2950000187636,-0.0690781945629739 +278260,1391.3000000187637,-0.06907817640875379 +278261,1391.3050000187638,-0.06907815825462876 +278262,1391.310000018764,-0.06907814010059884 +278263,1391.315000018764,-0.0690781219466641 +278264,1391.3200000187642,-0.06907810379282456 +278265,1391.3250000187643,-0.06907808563908026 +278266,1391.3300000187644,-0.06907806748543124 +278267,1391.3350000187645,-0.0690780493318776 +278268,1391.3400000187646,-0.06907803117841932 +278269,1391.3450000187647,-0.06907801302505648 +278270,1391.3500000187648,-0.0690779948717891 +278271,1391.355000018765,-0.06907797671861725 +278272,1391.360000018765,-0.06907795856554096 +278273,1391.3650000187652,-0.06907794041256027 +278274,1391.3700000187653,-0.06907792225967524 +278275,1391.3750000187654,-0.06907790410688591 +278276,1391.3800000187655,-0.06907788595419233 +278277,1391.3850000187656,-0.06907786780159453 +278278,1391.3900000187657,-0.06907784964909255 +278279,1391.3950000187658,-0.06907783149668648 +278280,1391.400000018766,-0.06907781334437631 +278281,1391.405000018766,-0.06907779519216212 +278282,1391.4100000187661,-0.06907777704004393 +278283,1391.4150000187662,-0.0690777588880218 +278284,1391.4200000187664,-0.06907774073609577 +278285,1391.4250000187665,-0.06907772258426588 +278286,1391.4300000187666,-0.06907770443253221 +278287,1391.4350000187667,-0.06907768628089475 +278288,1391.4400000187668,-0.06907766812935358 +278289,1391.445000018767,-0.06907764997790873 +278290,1391.450000018767,-0.06907763182656025 +278291,1391.4550000187671,-0.06907761367530818 +278292,1391.4600000187672,-0.06907759552415259 +278293,1391.4650000187673,-0.06907757737309349 +278294,1391.4700000187675,-0.06907755922213095 +278295,1391.4750000187676,-0.06907754107126499 +278296,1391.4800000187677,-0.06907752292049568 +278297,1391.4850000187678,-0.06907750476982305 +278298,1391.490000018768,-0.06907748661924716 +278299,1391.495000018768,-0.06907746846876803 +278300,1391.500000018768,-0.06907745031838573 +278301,1391.5050000187682,-0.06907743216810029 +278302,1391.5100000187683,-0.06907741401791175 +278303,1391.5150000187684,-0.06907739586782018 +278304,1391.5200000187685,-0.06907737771782559 +278305,1391.5250000187687,-0.06907735956792804 +278306,1391.5300000187688,-0.06907734141812759 +278307,1391.5350000187689,-0.06907732326842426 +278308,1391.540000018769,-0.06907730511881811 +278309,1391.545000018769,-0.0690772869693092 +278310,1391.5500000187692,-0.06907726881989754 +278311,1391.5550000187693,-0.06907725067058319 +278312,1391.5600000187694,-0.06907723252136622 +278313,1391.5650000187695,-0.06907721437224663 +278314,1391.5700000187696,-0.06907719622322449 +278315,1391.5750000187697,-0.06907717807429983 +278316,1391.5800000187699,-0.06907715992547273 +278317,1391.58500001877,-0.06907714177674319 +278318,1391.59000001877,-0.06907712362811128 +278319,1391.5950000187702,-0.06907710547957704 +278320,1391.6000000187703,-0.06907708733114051 +278321,1391.6050000187704,-0.06907706918280175 +278322,1391.6100000187705,-0.0690770510345608 +278323,1391.6150000187706,-0.06907703288641769 +278324,1391.6200000187707,-0.06907701473837247 +278325,1391.6250000187708,-0.0690769965904252 +278326,1391.630000018771,-0.0690769784425759 +278327,1391.635000018771,-0.06907696029482464 +278328,1391.6400000187712,-0.06907694214717146 +278329,1391.6450000187713,-0.06907692399961639 +278330,1391.6500000187714,-0.06907690585215948 +278331,1391.6550000187715,-0.06907688770480076 +278332,1391.6600000187716,-0.06907686955754032 +278333,1391.6650000187717,-0.06907685141037817 +278334,1391.6700000187718,-0.06907683326331436 +278335,1391.675000018772,-0.06907681511634893 +278336,1391.680000018772,-0.06907679696948194 +278337,1391.6850000187721,-0.0690767788227134 +278338,1391.6900000187723,-0.0690767606760434 +278339,1391.6950000187724,-0.06907674252947198 +278340,1391.7000000187725,-0.06907672438299915 +278341,1391.7050000187726,-0.06907670623662499 +278342,1391.7100000187727,-0.06907668809034952 +278343,1391.7150000187728,-0.06907666994417279 +278344,1391.720000018773,-0.06907665179809486 +278345,1391.725000018773,-0.06907663365211576 +278346,1391.7300000187731,-0.06907661550623555 +278347,1391.7350000187732,-0.06907659736045424 +278348,1391.7400000187733,-0.06907657921477192 +278349,1391.7450000187735,-0.06907656106918862 +278350,1391.7500000187736,-0.06907654292370435 +278351,1391.7550000187737,-0.0690765247783192 +278352,1391.7600000187738,-0.06907650663303319 +278353,1391.765000018774,-0.06907648848784638 +278354,1391.770000018774,-0.06907647034275881 +278355,1391.775000018774,-0.06907645219777052 +278356,1391.7800000187742,-0.06907643405288155 +278357,1391.7850000187743,-0.06907641590809196 +278358,1391.7900000187744,-0.06907639776340178 +278359,1391.7950000187745,-0.06907637961881108 +278360,1391.8000000187747,-0.06907636147431986 +278361,1391.8050000187748,-0.06907634332992821 +278362,1391.8100000187749,-0.06907632518563615 +278363,1391.815000018775,-0.06907630704144373 +278364,1391.820000018775,-0.069076288897351 +278365,1391.8250000187752,-0.069076270753358 +278366,1391.8300000187753,-0.06907625260946476 +278367,1391.8350000187754,-0.06907623446567135 +278368,1391.8400000187755,-0.0690762163219778 +278369,1391.8450000187756,-0.06907619817838416 +278370,1391.8500000187757,-0.06907618003489047 +278371,1391.8550000187759,-0.06907616189149678 +278372,1391.860000018776,-0.06907614374820314 +278373,1391.865000018776,-0.06907612560500959 +278374,1391.8700000187762,-0.06907610746191616 +278375,1391.8750000187763,-0.06907608931892291 +278376,1391.8800000187764,-0.06907607117602989 +278377,1391.8850000187765,-0.06907605303323713 +278378,1391.8900000187766,-0.06907603489054469 +278379,1391.8950000187767,-0.0690760167479526 +278380,1391.9000000187768,-0.06907599860546093 +278381,1391.905000018777,-0.06907598046306969 +278382,1391.910000018777,-0.06907596232077894 +278383,1391.9150000187772,-0.06907594417858871 +278384,1391.9200000187773,-0.06907592603649909 +278385,1391.9250000187774,-0.06907590789451007 +278386,1391.9300000187775,-0.06907588975262173 +278387,1391.9350000187776,-0.06907587161083412 +278388,1391.9400000187777,-0.06907585346914726 +278389,1391.9450000187778,-0.06907583532756117 +278390,1391.950000018778,-0.06907581718607597 +278391,1391.955000018778,-0.06907579904469165 +278392,1391.9600000187781,-0.06907578090340827 +278393,1391.9650000187783,-0.06907576276222588 +278394,1391.9700000187784,-0.0690757446211445 +278395,1391.9750000187785,-0.0690757264801642 +278396,1391.9800000187786,-0.06907570833928503 +278397,1391.9850000187787,-0.06907569019850701 +278398,1391.9900000187788,-0.06907567205783019 +278399,1391.995000018779,-0.06907565391725463 +278400,1392.000000018779,-0.06907563577678036 +278401,1392.0050000187791,-0.06907561763640745 +278402,1392.0100000187792,-0.06907559949613591 +278403,1392.0150000187793,-0.06907558135596581 +278404,1392.0200000187795,-0.06907556321589718 +278405,1392.0250000187796,-0.06907554507593007 +278406,1392.0300000187797,-0.06907552693606452 +278407,1392.0350000187798,-0.06907550879630059 +278408,1392.04000001878,-0.06907549065663832 +278409,1392.04500001878,-0.06907547251707773 +278410,1392.05000001878,-0.0690754543776189 +278411,1392.0550000187802,-0.06907543623826184 +278412,1392.0600000187803,-0.06907541809900662 +278413,1392.0650000187804,-0.06907539995985329 +278414,1392.0700000187805,-0.06907538182080186 +278415,1392.0750000187807,-0.06907536368185242 +278416,1392.0800000187808,-0.06907534554300498 +278417,1392.0850000187809,-0.06907532740425962 +278418,1392.090000018781,-0.06907530926561634 +278419,1392.095000018781,-0.06907529112707521 +278420,1392.1000000187812,-0.06907527298863628 +278421,1392.1050000187813,-0.06907525485029957 +278422,1392.1100000187814,-0.06907523671206516 +278423,1392.1150000187815,-0.06907521857393306 +278424,1392.1200000187816,-0.06907520043590333 +278425,1392.1250000187817,-0.06907518229797602 +278426,1392.1300000187819,-0.06907516416015116 +278427,1392.135000018782,-0.06907514602242881 +278428,1392.140000018782,-0.069075127884809 +278429,1392.1450000187822,-0.06907510974729181 +278430,1392.1500000187823,-0.06907509160987724 +278431,1392.1550000187824,-0.06907507347256535 +278432,1392.1600000187825,-0.0690750553353562 +278433,1392.1650000187826,-0.06907503719824981 +278434,1392.1700000187827,-0.06907501906124626 +278435,1392.1750000187828,-0.06907500092434554 +278436,1392.180000018783,-0.06907498278754776 +278437,1392.185000018783,-0.0690749646508529 +278438,1392.1900000187832,-0.06907494651426106 +278439,1392.1950000187833,-0.06907492837777225 +278440,1392.2000000187834,-0.06907491024138654 +278441,1392.2050000187835,-0.06907489210510394 +278442,1392.2100000187836,-0.06907487396892452 +278443,1392.2150000187837,-0.06907485583284834 +278444,1392.2200000187838,-0.06907483769687539 +278445,1392.225000018784,-0.06907481956100577 +278446,1392.230000018784,-0.0690748014252395 +278447,1392.2350000187841,-0.06907478328957663 +278448,1392.2400000187843,-0.0690747651540172 +278449,1392.2450000187844,-0.06907474701856126 +278450,1392.2500000187845,-0.06907472888320886 +278451,1392.2550000187846,-0.06907471074796002 +278452,1392.2600000187847,-0.06907469261281482 +278453,1392.2650000187848,-0.06907467447777327 +278454,1392.270000018785,-0.06907465634283544 +278455,1392.275000018785,-0.06907463820800137 +278456,1392.2800000187851,-0.0690746200732711 +278457,1392.2850000187852,-0.06907460193864468 +278458,1392.2900000187853,-0.06907458380412214 +278459,1392.2950000187855,-0.06907456566970355 +278460,1392.3000000187856,-0.06907454753538893 +278461,1392.3050000187857,-0.06907452940117834 +278462,1392.3100000187858,-0.06907451126707181 +278463,1392.315000018786,-0.0690744931330694 +278464,1392.320000018786,-0.06907447499917115 +278465,1392.325000018786,-0.0690744568653771 +278466,1392.3300000187862,-0.0690744387316873 +278467,1392.3350000187863,-0.06907442059810179 +278468,1392.3400000187864,-0.06907440246462063 +278469,1392.3450000187865,-0.06907438433124384 +278470,1392.3500000187867,-0.06907436619797147 +278471,1392.3550000187868,-0.06907434806480359 +278472,1392.3600000187869,-0.06907432993174022 +278473,1392.365000018787,-0.0690743117987814 +278474,1392.370000018787,-0.06907429366592718 +278475,1392.3750000187872,-0.06907427553317763 +278476,1392.3800000187873,-0.06907425740053277 +278477,1392.3850000187874,-0.06907423926799265 +278478,1392.3900000187875,-0.06907422113555732 +278479,1392.3950000187876,-0.06907420300322681 +278480,1392.4000000187878,-0.06907418487100118 +278481,1392.4050000187879,-0.06907416673888046 +278482,1392.410000018788,-0.06907414860686471 +278483,1392.415000018788,-0.06907413047495398 +278484,1392.4200000187882,-0.0690741123431483 +278485,1392.4250000187883,-0.06907409421144771 +278486,1392.4300000187884,-0.06907407607985225 +278487,1392.4350000187885,-0.06907405794836198 +278488,1392.4400000187886,-0.06907403981697695 +278489,1392.4450000187887,-0.06907402168569719 +278490,1392.4500000187888,-0.06907400355452276 +278491,1392.455000018789,-0.0690739854234537 +278492,1392.460000018789,-0.06907396729249005 +278493,1392.4650000187892,-0.06907394916163183 +278494,1392.4700000187893,-0.06907393103087912 +278495,1392.4750000187894,-0.06907391290023196 +278496,1392.4800000187895,-0.0690738947696904 +278497,1392.4850000187896,-0.06907387663925446 +278498,1392.4900000187897,-0.06907385850892421 +278499,1392.4950000187898,-0.06907384037869967 +278500,1392.50000001879,-0.06907382224858091 +278501,1392.50500001879,-0.06907380411856796 +278502,1392.5100000187902,-0.06907378598866087 +278503,1392.5150000187903,-0.06907376785885969 +278504,1392.5200000187904,-0.06907374972916444 +278505,1392.5250000187905,-0.06907373159957517 +278506,1392.5300000187906,-0.06907371347009195 +278507,1392.5350000187907,-0.06907369534071481 +278508,1392.5400000187908,-0.06907367721144379 +278509,1392.545000018791,-0.06907365908227896 +278510,1392.550000018791,-0.06907364095322033 +278511,1392.5550000187911,-0.06907362282426795 +278512,1392.5600000187912,-0.06907360469542188 +278513,1392.5650000187914,-0.06907358656668215 +278514,1392.5700000187915,-0.06907356843804882 +278515,1392.5750000187916,-0.06907355030952193 +278516,1392.5800000187917,-0.06907353218110153 +278517,1392.5850000187918,-0.06907351405278765 +278518,1392.590000018792,-0.06907349592458034 +278519,1392.595000018792,-0.06907347779647965 +278520,1392.6000000187921,-0.06907345966848563 +278521,1392.6050000187922,-0.0690734415405983 +278522,1392.6100000187923,-0.06907342341281772 +278523,1392.6150000187924,-0.06907340528514394 +278524,1392.6200000187926,-0.06907338715757701 +278525,1392.6250000187927,-0.06907336903011695 +278526,1392.6300000187928,-0.06907335090276383 +278527,1392.6350000187929,-0.06907333277551767 +278528,1392.640000018793,-0.06907331464837854 +278529,1392.645000018793,-0.06907329652134649 +278530,1392.6500000187932,-0.06907327839442153 +278531,1392.6550000187933,-0.06907326026760371 +278532,1392.6600000187934,-0.0690732421408931 +278533,1392.6650000187935,-0.06907322401428974 +278534,1392.6700000187936,-0.06907320588779364 +278535,1392.6750000187938,-0.06907318776140489 +278536,1392.6800000187939,-0.06907316963512353 +278537,1392.685000018794,-0.06907315150894956 +278538,1392.690000018794,-0.06907313338288307 +278539,1392.6950000187942,-0.06907311525692408 +278540,1392.7000000187943,-0.06907309713107265 +278541,1392.7050000187944,-0.06907307900532884 +278542,1392.7100000187945,-0.06907306087969264 +278543,1392.7150000187946,-0.06907304275416415 +278544,1392.7200000187947,-0.06907302462874339 +278545,1392.7250000187948,-0.06907300650343039 +278546,1392.730000018795,-0.06907298837822523 +278547,1392.735000018795,-0.06907297025312793 +278548,1392.7400000187952,-0.06907295212813855 +278549,1392.7450000187953,-0.06907293400325713 +278550,1392.7500000187954,-0.0690729158784837 +278551,1392.7550000187955,-0.06907289775381832 +278552,1392.7600000187956,-0.06907287962926104 +278553,1392.7650000187957,-0.06907286150481189 +278554,1392.7700000187958,-0.0690728433804709 +278555,1392.775000018796,-0.06907282525623815 +278556,1392.780000018796,-0.06907280713211367 +278557,1392.7850000187962,-0.0690727890080975 +278558,1392.7900000187963,-0.0690727708841897 +278559,1392.7950000187964,-0.0690727527603903 +278560,1392.8000000187965,-0.06907273463669933 +278561,1392.8050000187966,-0.06907271651311686 +278562,1392.8100000187967,-0.06907269838964293 +278563,1392.8150000187968,-0.06907268026627758 +278564,1392.820000018797,-0.06907266214302085 +278565,1392.825000018797,-0.0690726440198728 +278566,1392.8300000187971,-0.06907262589683345 +278567,1392.8350000187972,-0.06907260777390288 +278568,1392.8400000187974,-0.06907258965108111 +278569,1392.8450000187975,-0.06907257152836817 +278570,1392.8500000187976,-0.06907255340576414 +278571,1392.8550000187977,-0.06907253528326905 +278572,1392.8600000187978,-0.06907251716088295 +278573,1392.865000018798,-0.06907249903860585 +278574,1392.870000018798,-0.06907248091643785 +278575,1392.8750000187981,-0.06907246279437894 +278576,1392.8800000187982,-0.0690724446724292 +278577,1392.8850000187983,-0.06907242655058868 +278578,1392.8900000187984,-0.0690724084288574 +278579,1392.8950000187986,-0.06907239030723543 +278580,1392.9000000187987,-0.06907237218572279 +278581,1392.9050000187988,-0.06907235406431952 +278582,1392.9100000187989,-0.0690723359430257 +278583,1392.915000018799,-0.06907231782184134 +278584,1392.920000018799,-0.0690722997007665 +278585,1392.9250000187992,-0.06907228157980123 +278586,1392.9300000187993,-0.06907226345894556 +278587,1392.9350000187994,-0.06907224533819954 +278588,1392.9400000187995,-0.06907222721756323 +278589,1392.9450000187996,-0.06907220909703665 +278590,1392.9500000187998,-0.06907219097661986 +278591,1392.9550000187999,-0.06907217285631291 +278592,1392.9600000188,-0.06907215473611582 +278593,1392.9650000188,-0.06907213661602866 +278594,1392.9700000188002,-0.06907211849605147 +278595,1392.9750000188003,-0.06907210037618426 +278596,1392.9800000188004,-0.06907208225642714 +278597,1392.9850000188005,-0.0690720641367801 +278598,1392.9900000188006,-0.0690720460172432 +278599,1392.9950000188007,-0.06907202789781651 +278600,1393.0000000188008,-0.06907200977850003 +278601,1393.005000018801,-0.06907199165929383 +278602,1393.010000018801,-0.06907197354019796 +278603,1393.0150000188012,-0.06907195542121246 +278604,1393.0200000188013,-0.06907193730233736 +278605,1393.0250000188014,-0.06907191918357272 +278606,1393.0300000188015,-0.06907190106491858 +278607,1393.0350000188016,-0.06907188294637498 +278608,1393.0400000188017,-0.06907186482794198 +278609,1393.0450000188018,-0.0690718467096196 +278610,1393.050000018802,-0.06907182859140791 +278611,1393.055000018802,-0.06907181047330695 +278612,1393.0600000188022,-0.06907179235531673 +278613,1393.0650000188023,-0.06907177423743734 +278614,1393.0700000188024,-0.0690717561196688 +278615,1393.0750000188025,-0.06907173800201118 +278616,1393.0800000188026,-0.06907171988446449 +278617,1393.0850000188027,-0.06907170176702879 +278618,1393.0900000188028,-0.06907168364970412 +278619,1393.095000018803,-0.06907166553249053 +278620,1393.100000018803,-0.06907164741538807 +278621,1393.1050000188031,-0.06907162929839679 +278622,1393.1100000188032,-0.06907161118151671 +278623,1393.1150000188034,-0.06907159306474789 +278624,1393.1200000188035,-0.06907157494809038 +278625,1393.1250000188036,-0.0690715568315442 +278626,1393.1300000188037,-0.06907153871510943 +278627,1393.1350000188038,-0.06907152059878609 +278628,1393.140000018804,-0.06907150248257422 +278629,1393.145000018804,-0.06907148436647388 +278630,1393.1500000188041,-0.06907146625048512 +278631,1393.1550000188042,-0.06907144813460796 +278632,1393.1600000188043,-0.06907143001884247 +278633,1393.1650000188044,-0.06907141190318869 +278634,1393.1700000188046,-0.06907139378764665 +278635,1393.1750000188047,-0.06907137567221643 +278636,1393.1800000188048,-0.06907135755689801 +278637,1393.1850000188049,-0.0690713394416915 +278638,1393.190000018805,-0.06907132132659691 +278639,1393.195000018805,-0.06907130321161428 +278640,1393.2000000188052,-0.06907128509674366 +278641,1393.2050000188053,-0.06907126698198512 +278642,1393.2100000188054,-0.06907124886733869 +278643,1393.2150000188055,-0.06907123075280439 +278644,1393.2200000188056,-0.0690712126383823 +278645,1393.2250000188058,-0.06907119452407244 +278646,1393.2300000188059,-0.06907117640987487 +278647,1393.235000018806,-0.06907115829578962 +278648,1393.240000018806,-0.06907114018181675 +278649,1393.2450000188062,-0.06907112206795628 +278650,1393.2500000188063,-0.06907110395420829 +278651,1393.2550000188064,-0.0690710858405728 +278652,1393.2600000188065,-0.06907106772704985 +278653,1393.2650000188066,-0.06907104961363952 +278654,1393.2700000188067,-0.06907103150034181 +278655,1393.2750000188068,-0.0690710133871568 +278656,1393.280000018807,-0.06907099527408452 +278657,1393.285000018807,-0.06907097716112501 +278658,1393.2900000188072,-0.06907095904827831 +278659,1393.2950000188073,-0.06907094093554449 +278660,1393.3000000188074,-0.06907092282292357 +278661,1393.3050000188075,-0.06907090471041559 +278662,1393.3100000188076,-0.06907088659802062 +278663,1393.3150000188077,-0.06907086848573869 +278664,1393.3200000188078,-0.06907085037356984 +278665,1393.325000018808,-0.06907083226151413 +278666,1393.330000018808,-0.06907081414957159 +278667,1393.3350000188082,-0.06907079603774227 +278668,1393.3400000188083,-0.06907077792602621 +278669,1393.3450000188084,-0.06907075981442345 +278670,1393.3500000188085,-0.06907074170293406 +278671,1393.3550000188086,-0.06907072359155807 +278672,1393.3600000188087,-0.06907070548029551 +278673,1393.3650000188088,-0.06907068736914643 +278674,1393.370000018809,-0.06907066925811088 +278675,1393.375000018809,-0.06907065114718892 +278676,1393.3800000188091,-0.06907063303638059 +278677,1393.3850000188093,-0.0690706149256859 +278678,1393.3900000188094,-0.06907059681510494 +278679,1393.3950000188095,-0.06907057870463773 +278680,1393.4000000188096,-0.06907056059428432 +278681,1393.4050000188097,-0.06907054248404475 +278682,1393.4100000188098,-0.06907052437391907 +278683,1393.41500001881,-0.06907050626390732 +278684,1393.42000001881,-0.06907048815400954 +278685,1393.4250000188101,-0.06907047004422578 +278686,1393.4300000188102,-0.0690704519345561 +278687,1393.4350000188103,-0.06907043382500054 +278688,1393.4400000188105,-0.06907041571555911 +278689,1393.4450000188106,-0.06907039760623189 +278690,1393.4500000188107,-0.06907037949701893 +278691,1393.4550000188108,-0.06907036138792023 +278692,1393.460000018811,-0.06907034327893588 +278693,1393.465000018811,-0.06907032517006591 +278694,1393.470000018811,-0.06907030706131034 +278695,1393.4750000188112,-0.06907028895266926 +278696,1393.4800000188113,-0.06907027084414269 +278697,1393.4850000188114,-0.06907025273573067 +278698,1393.4900000188115,-0.06907023462743325 +278699,1393.4950000188117,-0.06907021651925048 +278700,1393.5000000188118,-0.06907019841118239 +278701,1393.5050000188119,-0.06907018030322903 +278702,1393.510000018812,-0.06907016219539047 +278703,1393.515000018812,-0.06907014408766672 +278704,1393.5200000188122,-0.06907012598005784 +278705,1393.5250000188123,-0.06907010787256387 +278706,1393.5300000188124,-0.06907008976518486 +278707,1393.5350000188125,-0.06907007165792085 +278708,1393.5400000188126,-0.06907005355077189 +278709,1393.5450000188127,-0.06907003544373802 +278710,1393.5500000188129,-0.06907001733681928 +278711,1393.555000018813,-0.06906999923001572 +278712,1393.560000018813,-0.06906998112332739 +278713,1393.5650000188132,-0.06906996301675433 +278714,1393.5700000188133,-0.06906994491029657 +278715,1393.5750000188134,-0.06906992680395417 +278716,1393.5800000188135,-0.06906990869772718 +278717,1393.5850000188136,-0.06906989059161565 +278718,1393.5900000188137,-0.06906987248561959 +278719,1393.5950000188138,-0.06906985437973907 +278720,1393.600000018814,-0.06906983627397413 +278721,1393.605000018814,-0.06906981816832482 +278722,1393.6100000188142,-0.06906980006279118 +278723,1393.6150000188143,-0.06906978195737323 +278724,1393.6200000188144,-0.06906976385207106 +278725,1393.6250000188145,-0.0690697457468847 +278726,1393.6300000188146,-0.06906972764181417 +278727,1393.6350000188147,-0.06906970953685954 +278728,1393.6400000188148,-0.06906969143202084 +278729,1393.645000018815,-0.06906967332729812 +278730,1393.650000018815,-0.06906965522269144 +278731,1393.6550000188151,-0.06906963711820081 +278732,1393.6600000188153,-0.06906961901382631 +278733,1393.6650000188154,-0.06906960090956797 +278734,1393.6700000188155,-0.06906958280542583 +278735,1393.6750000188156,-0.06906956470139992 +278736,1393.6800000188157,-0.06906954659749033 +278737,1393.6850000188158,-0.06906952849369706 +278738,1393.690000018816,-0.06906951039002018 +278739,1393.695000018816,-0.06906949228645973 +278740,1393.7000000188161,-0.06906947418301573 +278741,1393.7050000188162,-0.06906945607968826 +278742,1393.7100000188163,-0.06906943797647734 +278743,1393.7150000188165,-0.06906941987338304 +278744,1393.7200000188166,-0.06906940177040538 +278745,1393.7250000188167,-0.06906938366754442 +278746,1393.7300000188168,-0.06906936556480019 +278747,1393.735000018817,-0.06906934746217273 +278748,1393.740000018817,-0.0690693293596621 +278749,1393.745000018817,-0.06906931125726835 +278750,1393.7500000188172,-0.06906929315499151 +278751,1393.7550000188173,-0.06906927505283164 +278752,1393.7600000188174,-0.06906925695078878 +278753,1393.7650000188175,-0.06906923884886296 +278754,1393.7700000188177,-0.06906922074705422 +278755,1393.7750000188178,-0.06906920264536262 +278756,1393.7800000188179,-0.06906918454378821 +278757,1393.785000018818,-0.06906916644233102 +278758,1393.790000018818,-0.06906914834099112 +278759,1393.7950000188182,-0.06906913023976853 +278760,1393.8000000188183,-0.06906911213866329 +278761,1393.8050000188184,-0.06906909403767546 +278762,1393.8100000188185,-0.06906907593680509 +278763,1393.8150000188186,-0.0690690578360522 +278764,1393.8200000188187,-0.06906903973541685 +278765,1393.8250000188189,-0.06906902163489909 +278766,1393.830000018819,-0.06906900353449895 +278767,1393.835000018819,-0.06906898543421648 +278768,1393.8400000188192,-0.06906896733405174 +278769,1393.8450000188193,-0.06906894923400475 +278770,1393.8500000188194,-0.06906893113407557 +278771,1393.8550000188195,-0.06906891303426424 +278772,1393.8600000188196,-0.0690688949345708 +278773,1393.8650000188197,-0.06906887683499531 +278774,1393.8700000188198,-0.0690688587355378 +278775,1393.87500001882,-0.06906884063619831 +278776,1393.88000001882,-0.06906882253697688 +278777,1393.8850000188202,-0.06906880443787358 +278778,1393.8900000188203,-0.06906878633888845 +278779,1393.8950000188204,-0.06906876824002152 +278780,1393.9000000188205,-0.06906875014127282 +278781,1393.9050000188206,-0.06906873204264244 +278782,1393.9100000188207,-0.06906871394413037 +278783,1393.9150000188208,-0.06906869584573672 +278784,1393.920000018821,-0.06906867774746146 +278785,1393.925000018821,-0.0690686596493047 +278786,1393.9300000188211,-0.06906864155126644 +278787,1393.9350000188213,-0.06906862345334674 +278788,1393.9400000188214,-0.06906860535554565 +278789,1393.9450000188215,-0.06906858725786323 +278790,1393.9500000188216,-0.06906856916029949 +278791,1393.9550000188217,-0.06906855106285448 +278792,1393.9600000188218,-0.06906853296552827 +278793,1393.965000018822,-0.06906851486832087 +278794,1393.970000018822,-0.06906849677123236 +278795,1393.9750000188221,-0.06906847867426276 +278796,1393.9800000188222,-0.06906846057741213 +278797,1393.9850000188223,-0.06906844248068049 +278798,1393.9900000188225,-0.0690684243840679 +278799,1393.9950000188226,-0.06906840628757442 +278800,1394.0000000188227,-0.06906838819120008 +278801,1394.0050000188228,-0.06906837009494492 +278802,1394.010000018823,-0.06906835199880898 +278803,1394.015000018823,-0.06906833390279232 +278804,1394.020000018823,-0.06906831580689497 +278805,1394.0250000188232,-0.06906829771111699 +278806,1394.0300000188233,-0.0690682796154584 +278807,1394.0350000188234,-0.06906826151991928 +278808,1394.0400000188235,-0.06906824342449965 +278809,1394.0450000188237,-0.06906822532919955 +278810,1394.0500000188238,-0.06906820723401905 +278811,1394.0550000188239,-0.06906818913895817 +278812,1394.060000018824,-0.06906817104401695 +278813,1394.065000018824,-0.06906815294919545 +278814,1394.0700000188242,-0.06906813485449373 +278815,1394.0750000188243,-0.06906811675991179 +278816,1394.0800000188244,-0.06906809866544972 +278817,1394.0850000188245,-0.06906808057110753 +278818,1394.0900000188246,-0.0690680624768853 +278819,1394.0950000188247,-0.06906804438278304 +278820,1394.1000000188249,-0.0690680262888008 +278821,1394.105000018825,-0.06906800819493865 +278822,1394.110000018825,-0.0690679901011966 +278823,1394.1150000188252,-0.06906797200757472 +278824,1394.1200000188253,-0.06906795391407305 +278825,1394.1250000188254,-0.06906793582069164 +278826,1394.1300000188255,-0.0690679177274305 +278827,1394.1350000188256,-0.06906789963428972 +278828,1394.1400000188257,-0.06906788154126932 +278829,1394.1450000188258,-0.06906786344836933 +278830,1394.150000018826,-0.06906784535558984 +278831,1394.155000018826,-0.06906782726293086 +278832,1394.1600000188262,-0.06906780917039243 +278833,1394.1650000188263,-0.0690677910779746 +278834,1394.1700000188264,-0.06906777298567744 +278835,1394.1750000188265,-0.06906775489350096 +278836,1394.1800000188266,-0.06906773680144522 +278837,1394.1850000188267,-0.06906771870951027 +278838,1394.1900000188268,-0.06906770061769615 +278839,1394.195000018827,-0.0690676825260029 +278840,1394.200000018827,-0.06906766443443058 +278841,1394.2050000188271,-0.06906764634297918 +278842,1394.2100000188273,-0.06906762825164883 +278843,1394.2150000188274,-0.06906761016043951 +278844,1394.2200000188275,-0.0690675920693513 +278845,1394.2250000188276,-0.0690675739783842 +278846,1394.2300000188277,-0.06906755588753831 +278847,1394.2350000188278,-0.06906753779681363 +278848,1394.240000018828,-0.06906751970621022 +278849,1394.245000018828,-0.06906750161572814 +278850,1394.2500000188281,-0.06906748352536742 +278851,1394.2550000188282,-0.06906746543512808 +278852,1394.2600000188284,-0.06906744734501022 +278853,1394.2650000188285,-0.06906742925501386 +278854,1394.2700000188286,-0.06906741116513902 +278855,1394.2750000188287,-0.06906739307538577 +278856,1394.2800000188288,-0.06906737498575415 +278857,1394.285000018829,-0.0690673568962442 +278858,1394.290000018829,-0.06906733880685596 +278859,1394.2950000188291,-0.06906732071758949 +278860,1394.3000000188292,-0.06906730262844481 +278861,1394.3050000188293,-0.06906728453942199 +278862,1394.3100000188294,-0.06906726645052107 +278863,1394.3150000188296,-0.06906724836174208 +278864,1394.3200000188297,-0.06906723027308508 +278865,1394.3250000188298,-0.06906721218455009 +278866,1394.3300000188299,-0.0690671940961372 +278867,1394.33500001883,-0.0690671760078464 +278868,1394.34000001883,-0.06906715791967777 +278869,1394.3450000188302,-0.06906713983163133 +278870,1394.3500000188303,-0.06906712174370716 +278871,1394.3550000188304,-0.06906710365590528 +278872,1394.3600000188305,-0.06906708556822572 +278873,1394.3650000188306,-0.06906706748066856 +278874,1394.3700000188308,-0.06906704939323381 +278875,1394.3750000188309,-0.06906703130592155 +278876,1394.380000018831,-0.06906701321873181 +278877,1394.385000018831,-0.06906699513166462 +278878,1394.3900000188312,-0.06906697704472002 +278879,1394.3950000188313,-0.06906695895789808 +278880,1394.4000000188314,-0.06906694087119884 +278881,1394.4050000188315,-0.06906692278462234 +278882,1394.4100000188316,-0.06906690469816862 +278883,1394.4150000188317,-0.06906688661183771 +278884,1394.4200000188318,-0.06906686852562968 +278885,1394.425000018832,-0.06906685043954457 +278886,1394.430000018832,-0.06906683235358241 +278887,1394.4350000188322,-0.06906681426774328 +278888,1394.4400000188323,-0.06906679618202716 +278889,1394.4450000188324,-0.06906677809643415 +278890,1394.4500000188325,-0.06906676001096428 +278891,1394.4550000188326,-0.06906674192561758 +278892,1394.4600000188327,-0.06906672384039411 +278893,1394.4650000188328,-0.06906670575529392 +278894,1394.470000018833,-0.06906668767031703 +278895,1394.475000018833,-0.06906666958546351 +278896,1394.4800000188332,-0.06906665150073339 +278897,1394.4850000188333,-0.0690666334161267 +278898,1394.4900000188334,-0.06906661533164352 +278899,1394.4950000188335,-0.06906659724728388 +278900,1394.5000000188336,-0.06906657916304781 +278901,1394.5050000188337,-0.06906656107893538 +278902,1394.5100000188338,-0.06906654299494662 +278903,1394.515000018834,-0.06906652491108156 +278904,1394.520000018834,-0.06906650682734027 +278905,1394.5250000188341,-0.06906648874372277 +278906,1394.5300000188342,-0.06906647066022911 +278907,1394.5350000188344,-0.06906645257685937 +278908,1394.5400000188345,-0.06906643449361355 +278909,1394.5450000188346,-0.0690664164104917 +278910,1394.5500000188347,-0.06906639832749388 +278911,1394.5550000188348,-0.06906638024462014 +278912,1394.560000018835,-0.0690663621618705 +278913,1394.565000018835,-0.06906634407924502 +278914,1394.5700000188351,-0.06906632599674373 +278915,1394.5750000188352,-0.0690663079143667 +278916,1394.5800000188353,-0.06906628983211396 +278917,1394.5850000188354,-0.06906627174998556 +278918,1394.5900000188356,-0.06906625366798153 +278919,1394.5950000188357,-0.06906623558610192 +278920,1394.6000000188358,-0.0690662175043468 +278921,1394.6050000188359,-0.06906619942271616 +278922,1394.610000018836,-0.06906618134121009 +278923,1394.615000018836,-0.06906616325982863 +278924,1394.6200000188362,-0.0690661451785718 +278925,1394.6250000188363,-0.06906612709743967 +278926,1394.6300000188364,-0.06906610901643229 +278927,1394.6350000188365,-0.06906609093554966 +278928,1394.6400000188366,-0.06906607285479187 +278929,1394.6450000188368,-0.06906605477415895 +278930,1394.6500000188369,-0.06906603669365093 +278931,1394.655000018837,-0.06906601861326787 +278932,1394.660000018837,-0.06906600053300982 +278933,1394.6650000188372,-0.0690659824528768 +278934,1394.6700000188373,-0.06906596437286887 +278935,1394.6750000188374,-0.06906594629298607 +278936,1394.6800000188375,-0.06906592821322845 +278937,1394.6850000188376,-0.06906591013359605 +278938,1394.6900000188377,-0.06906589205408892 +278939,1394.6950000188378,-0.0690658739747071 +278940,1394.700000018838,-0.06906585589545064 +278941,1394.705000018838,-0.06906583781631957 +278942,1394.7100000188382,-0.06906581973731395 +278943,1394.7150000188383,-0.06906580165843382 +278944,1394.7200000188384,-0.06906578357967921 +278945,1394.7250000188385,-0.06906576550105017 +278946,1394.7300000188386,-0.06906574742254679 +278947,1394.7350000188387,-0.06906572934416905 +278948,1394.7400000188388,-0.06906571126591701 +278949,1394.745000018839,-0.06906569318779074 +278950,1394.750000018839,-0.06906567510979027 +278951,1394.7550000188392,-0.06906565703191563 +278952,1394.7600000188393,-0.06906563895416687 +278953,1394.7650000188394,-0.06906562087654404 +278954,1394.7700000188395,-0.0690656027990472 +278955,1394.7750000188396,-0.06906558472167637 +278956,1394.7800000188397,-0.06906556664443161 +278957,1394.7850000188398,-0.06906554856731296 +278958,1394.79000001884,-0.06906553049032045 +278959,1394.79500001884,-0.06906551241345416 +278960,1394.8000000188401,-0.06906549433671409 +278961,1394.8050000188402,-0.06906547626010033 +278962,1394.8100000188404,-0.06906545818361287 +278963,1394.8150000188405,-0.06906544010725181 +278964,1394.8200000188406,-0.06906542203101715 +278965,1394.8250000188407,-0.06906540395490895 +278966,1394.8300000188408,-0.06906538587892727 +278967,1394.835000018841,-0.06906536780307215 +278968,1394.840000018841,-0.06906534972734361 +278969,1394.8450000188411,-0.06906533165174171 +278970,1394.8500000188412,-0.06906531357626651 +278971,1394.8550000188413,-0.06906529550091803 +278972,1394.8600000188414,-0.06906527742569632 +278973,1394.8650000188416,-0.06906525935060144 +278974,1394.8700000188417,-0.06906524127563342 +278975,1394.8750000188418,-0.0690652232007923 +278976,1394.8800000188419,-0.06906520512607811 +278977,1394.885000018842,-0.06906518705149094 +278978,1394.890000018842,-0.0690651689770308 +278979,1394.8950000188422,-0.06906515090269774 +278980,1394.9000000188423,-0.06906513282849182 +278981,1394.9050000188424,-0.06906511475441306 +278982,1394.9100000188425,-0.06906509668046153 +278983,1394.9150000188426,-0.06906507860663724 +278984,1394.9200000188428,-0.06906506053294027 +278985,1394.9250000188429,-0.06906504245937063 +278986,1394.930000018843,-0.0690650243859284 +278987,1394.935000018843,-0.0690650063126136 +278988,1394.9400000188432,-0.06906498823942629 +278989,1394.9450000188433,-0.0690649701663665 +278990,1394.9500000188434,-0.06906495209343427 +278991,1394.9550000188435,-0.06906493402062966 +278992,1394.9600000188436,-0.06906491594795273 +278993,1394.9650000188437,-0.06906489787540349 +278994,1394.9700000188438,-0.069064879802982 +278995,1394.975000018844,-0.06906486173068829 +278996,1394.980000018844,-0.06906484365852242 +278997,1394.9850000188442,-0.06906482558648443 +278998,1394.9900000188443,-0.06906480751457438 +278999,1394.9950000188444,-0.06906478944279228 +279000,1395.0000000188445,-0.0690647713711382 +279001,1395.0050000188446,-0.06906475329961217 +279002,1395.0100000188447,-0.06906473522821426 +279003,1395.0150000188448,-0.0690647171569445 +279004,1395.020000018845,-0.06906469908580291 +279005,1395.025000018845,-0.06906468101478958 +279006,1395.0300000188452,-0.06906466294390451 +279007,1395.0350000188453,-0.06906464487314777 +279008,1395.0400000188454,-0.0690646268025194 +279009,1395.0450000188455,-0.06906460873201944 +279010,1395.0500000188456,-0.06906459066164793 +279011,1395.0550000188457,-0.06906457259140492 +279012,1395.0600000188458,-0.06906455452129044 +279013,1395.065000018846,-0.06906453645130457 +279014,1395.070000018846,-0.06906451838144732 +279015,1395.0750000188461,-0.06906450031171876 +279016,1395.0800000188462,-0.06906448224211892 +279017,1395.0850000188464,-0.06906446417264783 +279018,1395.0900000188465,-0.06906444610330557 +279019,1395.0950000188466,-0.06906442803409216 +279020,1395.1000000188467,-0.06906440996500764 +279021,1395.1050000188468,-0.06906439189605207 +279022,1395.110000018847,-0.0690643738272255 +279023,1395.115000018847,-0.06906435575852794 +279024,1395.1200000188471,-0.06906433768995945 +279025,1395.1250000188472,-0.0690643196215201 +279026,1395.1300000188473,-0.06906430155320992 +279027,1395.1350000188474,-0.06906428348502894 +279028,1395.1400000188476,-0.0690642654169772 +279029,1395.1450000188477,-0.06906424734905477 +279030,1395.1500000188478,-0.06906422928126167 +279031,1395.1550000188479,-0.06906421121359797 +279032,1395.160000018848,-0.0690641931460637 +279033,1395.165000018848,-0.0690641750786589 +279034,1395.1700000188482,-0.06906415701138362 +279035,1395.1750000188483,-0.0690641389442379 +279036,1395.1800000188484,-0.06906412087722179 +279037,1395.1850000188485,-0.06906410281033531 +279038,1395.1900000188487,-0.06906408474357854 +279039,1395.1950000188488,-0.06906406667695153 +279040,1395.2000000188489,-0.06906404861045427 +279041,1395.205000018849,-0.06906403054408686 +279042,1395.210000018849,-0.06906401247784932 +279043,1395.2150000188492,-0.06906399441174169 +279044,1395.2200000188493,-0.06906397634576401 +279045,1395.2250000188494,-0.06906395827991636 +279046,1395.2300000188495,-0.06906394021419875 +279047,1395.2350000188496,-0.06906392214861123 +279048,1395.2400000188497,-0.06906390408315384 +279049,1395.2450000188499,-0.06906388601782665 +279050,1395.25000001885,-0.06906386795262968 +279051,1395.25500001885,-0.06906384988756298 +279052,1395.2600000188502,-0.0690638318226266 +279053,1395.2650000188503,-0.06906381375782057 +279054,1395.2700000188504,-0.06906379569314494 +279055,1395.2750000188505,-0.06906377762859976 +279056,1395.2800000188506,-0.06906375956418508 +279057,1395.2850000188507,-0.06906374149990092 +279058,1395.2900000188508,-0.06906372343574736 +279059,1395.295000018851,-0.06906370537172442 +279060,1395.300000018851,-0.06906368730783215 +279061,1395.3050000188512,-0.06906366924407058 +279062,1395.3100000188513,-0.06906365118043978 +279063,1395.3150000188514,-0.06906363311693978 +279064,1395.3200000188515,-0.06906361505357062 +279065,1395.3250000188516,-0.06906359699033235 +279066,1395.3300000188517,-0.069063578927225 +279067,1395.3350000188518,-0.06906356086424864 +279068,1395.340000018852,-0.0690635428014033 +279069,1395.345000018852,-0.06906352473868903 +279070,1395.3500000188521,-0.06906350667610588 +279071,1395.3550000188523,-0.06906348861365387 +279072,1395.3600000188524,-0.06906347055133306 +279073,1395.3650000188525,-0.0690634524891435 +279074,1395.3700000188526,-0.06906343442708522 +279075,1395.3750000188527,-0.0690634163651583 +279076,1395.3800000188528,-0.06906339830336272 +279077,1395.385000018853,-0.06906338024169857 +279078,1395.390000018853,-0.06906336218016589 +279079,1395.3950000188531,-0.06906334411876472 +279080,1395.4000000188532,-0.0690633260574951 +279081,1395.4050000188533,-0.06906330799635708 +279082,1395.4100000188535,-0.0690632899353507 +279083,1395.4150000188536,-0.069063271874476 +279084,1395.4200000188537,-0.06906325381373304 +279085,1395.4250000188538,-0.06906323575312184 +279086,1395.430000018854,-0.06906321769264247 +279087,1395.435000018854,-0.06906319963229496 +279088,1395.440000018854,-0.06906318157207934 +279089,1395.4450000188542,-0.06906316351199569 +279090,1395.4500000188543,-0.06906314545204405 +279091,1395.4550000188544,-0.06906312739222442 +279092,1395.4600000188545,-0.06906310933253688 +279093,1395.4650000188547,-0.06906309127298146 +279094,1395.4700000188548,-0.06906307321355823 +279095,1395.4750000188549,-0.06906305515426721 +279096,1395.480000018855,-0.06906303709510844 +279097,1395.485000018855,-0.06906301903608199 +279098,1395.4900000188552,-0.06906300097718787 +279099,1395.4950000188553,-0.06906298291842616 +279100,1395.5000000188554,-0.06906296485979688 +279101,1395.5050000188555,-0.06906294680130008 +279102,1395.5100000188556,-0.0690629287429358 +279103,1395.5150000188557,-0.0690629106847041 +279104,1395.5200000188559,-0.06906289262660502 +279105,1395.525000018856,-0.06906287456863859 +279106,1395.530000018856,-0.06906285651080486 +279107,1395.5350000188562,-0.06906283845310388 +279108,1395.5400000188563,-0.06906282039553568 +279109,1395.5450000188564,-0.06906280233810033 +279110,1395.5500000188565,-0.06906278428079785 +279111,1395.5550000188566,-0.0690627662236283 +279112,1395.5600000188567,-0.0690627481665917 +279113,1395.5650000188568,-0.06906273010968812 +279114,1395.570000018857,-0.06906271205291759 +279115,1395.575000018857,-0.06906269399628016 +279116,1395.5800000188572,-0.06906267593977589 +279117,1395.5850000188573,-0.0690626578834048 +279118,1395.5900000188574,-0.06906263982716694 +279119,1395.5950000188575,-0.06906262177106236 +279120,1395.6000000188576,-0.06906260371509108 +279121,1395.6050000188577,-0.06906258565925319 +279122,1395.6100000188578,-0.0690625676035487 +279123,1395.615000018858,-0.06906254954797766 +279124,1395.620000018858,-0.06906253149254013 +279125,1395.6250000188581,-0.06906251343723614 +279126,1395.6300000188583,-0.06906249538206573 +279127,1395.6350000188584,-0.06906247732702893 +279128,1395.6400000188585,-0.06906245927212583 +279129,1395.6450000188586,-0.06906244121735643 +279130,1395.6500000188587,-0.06906242316272079 +279131,1395.6550000188588,-0.06906240510821897 +279132,1395.660000018859,-0.069062387053851 +279133,1395.665000018859,-0.06906236899961693 +279134,1395.6700000188591,-0.06906235094551678 +279135,1395.6750000188592,-0.06906233289155063 +279136,1395.6800000188593,-0.06906231483771849 +279137,1395.6850000188595,-0.06906229678402043 +279138,1395.6900000188596,-0.06906227873045649 +279139,1395.6950000188597,-0.0690622606770267 +279140,1395.7000000188598,-0.06906224262373112 +279141,1395.70500001886,-0.06906222457056978 +279142,1395.71000001886,-0.06906220651754273 +279143,1395.71500001886,-0.06906218846465004 +279144,1395.7200000188602,-0.06906217041189172 +279145,1395.7250000188603,-0.06906215235926781 +279146,1395.7300000188604,-0.06906213430677838 +279147,1395.7350000188605,-0.06906211625442346 +279148,1395.7400000188607,-0.06906209820220309 +279149,1395.7450000188608,-0.06906208015011732 +279150,1395.7500000188609,-0.0690620620981662 +279151,1395.755000018861,-0.06906204404634979 +279152,1395.760000018861,-0.0690620259946681 +279153,1395.7650000188612,-0.06906200794312117 +279154,1395.7700000188613,-0.06906198989170907 +279155,1395.7750000188614,-0.06906197184043185 +279156,1395.7800000188615,-0.06906195378928953 +279157,1395.7850000188616,-0.06906193573828216 +279158,1395.7900000188617,-0.0690619176874098 +279159,1395.7950000188619,-0.06906189963667246 +279160,1395.800000018862,-0.06906188158607023 +279161,1395.805000018862,-0.06906186353560312 +279162,1395.8100000188622,-0.0690618454852712 +279163,1395.8150000188623,-0.06906182743507448 +279164,1395.8200000188624,-0.06906180938501302 +279165,1395.8250000188625,-0.06906179133508689 +279166,1395.8300000188626,-0.06906177328529609 +279167,1395.8350000188627,-0.06906175523564069 +279168,1395.8400000188628,-0.06906173718612073 +279169,1395.845000018863,-0.06906171913673624 +279170,1395.850000018863,-0.0690617010874873 +279171,1395.8550000188632,-0.06906168303837391 +279172,1395.8600000188633,-0.06906166498939616 +279173,1395.8650000188634,-0.06906164694055406 +279174,1395.8700000188635,-0.06906162889184767 +279175,1395.8750000188636,-0.06906161084327701 +279176,1395.8800000188637,-0.06906159279484216 +279177,1395.8850000188638,-0.06906157474654313 +279178,1395.890000018864,-0.06906155669837999 +279179,1395.895000018864,-0.06906153865035278 +279180,1395.9000000188641,-0.06906152060246153 +279181,1395.9050000188643,-0.06906150255470629 +279182,1395.9100000188644,-0.06906148450708711 +279183,1395.9150000188645,-0.06906146645960405 +279184,1395.9200000188646,-0.06906144841225713 +279185,1395.9250000188647,-0.06906143036504638 +279186,1395.9300000188648,-0.06906141231797187 +279187,1395.935000018865,-0.06906139427103365 +279188,1395.940000018865,-0.06906137622423174 +279189,1395.9450000188651,-0.06906135817756619 +279190,1395.9500000188652,-0.06906134013103706 +279191,1395.9550000188653,-0.06906132208464437 +279192,1395.9600000188655,-0.0690613040383882 +279193,1395.9650000188656,-0.06906128599226857 +279194,1395.9700000188657,-0.06906126794628552 +279195,1395.9750000188658,-0.06906124990043909 +279196,1395.980000018866,-0.06906123185472934 +279197,1395.985000018866,-0.06906121380915632 +279198,1395.990000018866,-0.06906119576372005 +279199,1395.9950000188662,-0.0690611777184206 +279200,1396.0000000188663,-0.06906115967325799 +279201,1396.0050000188664,-0.06906114162823228 +279202,1396.0100000188665,-0.0690611235833435 +279203,1396.0150000188667,-0.06906110553859171 +279204,1396.0200000188668,-0.06906108749397695 +279205,1396.0250000188669,-0.06906106944949925 +279206,1396.030000018867,-0.06906105140515867 +279207,1396.035000018867,-0.06906103336095525 +279208,1396.0400000188672,-0.06906101531688905 +279209,1396.0450000188673,-0.06906099727296007 +279210,1396.0500000188674,-0.0690609792291684 +279211,1396.0550000188675,-0.06906096118551407 +279212,1396.0600000188676,-0.06906094314199711 +279213,1396.0650000188677,-0.06906092509861757 +279214,1396.0700000188679,-0.0690609070553755 +279215,1396.075000018868,-0.06906088901227093 +279216,1396.080000018868,-0.06906087096930394 +279217,1396.0850000188682,-0.06906085292647454 +279218,1396.0900000188683,-0.06906083488378277 +279219,1396.0950000188684,-0.06906081684122871 +279220,1396.1000000188685,-0.06906079879881237 +279221,1396.1050000188686,-0.06906078075653382 +279222,1396.1100000188687,-0.06906076271439308 +279223,1396.1150000188688,-0.0690607446723902 +279224,1396.120000018869,-0.06906072663052525 +279225,1396.125000018869,-0.06906070858879822 +279226,1396.1300000188692,-0.0690606905472092 +279227,1396.1350000188693,-0.06906067250575823 +279228,1396.1400000188694,-0.06906065446444536 +279229,1396.1450000188695,-0.06906063642327058 +279230,1396.1500000188696,-0.069060618382234 +279231,1396.1550000188697,-0.06906060034133563 +279232,1396.1600000188698,-0.06906058230057552 +279233,1396.16500001887,-0.0690605642599537 +279234,1396.17000001887,-0.06906054621947026 +279235,1396.1750000188702,-0.06906052817912518 +279236,1396.1800000188703,-0.06906051013891856 +279237,1396.1850000188704,-0.06906049209885042 +279238,1396.1900000188705,-0.06906047405892081 +279239,1396.1950000188706,-0.06906045601912976 +279240,1396.2000000188707,-0.06906043797947733 +279241,1396.2050000188708,-0.06906041993996355 +279242,1396.210000018871,-0.06906040190058847 +279243,1396.215000018871,-0.06906038386135213 +279244,1396.2200000188711,-0.0690603658222546 +279245,1396.2250000188712,-0.0690603477832959 +279246,1396.2300000188714,-0.06906032974447607 +279247,1396.2350000188715,-0.06906031170579516 +279248,1396.2400000188716,-0.06906029366725322 +279249,1396.2450000188717,-0.0690602756288503 +279250,1396.2500000188718,-0.06906025759058641 +279251,1396.255000018872,-0.06906023955246164 +279252,1396.260000018872,-0.069060221514476 +279253,1396.2650000188721,-0.06906020347662954 +279254,1396.2700000188722,-0.06906018543892233 +279255,1396.2750000188723,-0.06906016740135436 +279256,1396.2800000188724,-0.06906014936392574 +279257,1396.2850000188726,-0.06906013132663646 +279258,1396.2900000188727,-0.06906011328948661 +279259,1396.2950000188728,-0.06906009525247621 +279260,1396.3000000188729,-0.0690600772156053 +279261,1396.305000018873,-0.06906005917887391 +279262,1396.310000018873,-0.06906004114228212 +279263,1396.3150000188732,-0.06906002310582994 +279264,1396.3200000188733,-0.06906000506951744 +279265,1396.3250000188734,-0.06905998703334465 +279266,1396.3300000188735,-0.06905996899731164 +279267,1396.3350000188736,-0.06905995096141841 +279268,1396.3400000188738,-0.06905993292566504 +279269,1396.3450000188739,-0.06905991489005155 +279270,1396.350000018874,-0.069059896854578 +279271,1396.355000018874,-0.06905987881924443 +279272,1396.3600000188742,-0.06905986078405088 +279273,1396.3650000188743,-0.0690598427489974 +279274,1396.3700000188744,-0.06905982471408403 +279275,1396.3750000188745,-0.06905980667931082 +279276,1396.3800000188746,-0.0690597886446778 +279277,1396.3850000188747,-0.06905977061018502 +279278,1396.3900000188748,-0.06905975257583252 +279279,1396.395000018875,-0.06905973454162036 +279280,1396.400000018875,-0.06905971650754858 +279281,1396.4050000188752,-0.0690596984736172 +279282,1396.4100000188753,-0.0690596804398263 +279283,1396.4150000188754,-0.0690596624061759 +279284,1396.4200000188755,-0.06905964437266605 +279285,1396.4250000188756,-0.0690596263392968 +279286,1396.4300000188757,-0.0690596083060682 +279287,1396.4350000188758,-0.06905959027298025 +279288,1396.440000018876,-0.06905957224003305 +279289,1396.445000018876,-0.0690595542072266 +279290,1396.4500000188762,-0.069059536174561 +279291,1396.4550000188763,-0.06905951814203623 +279292,1396.4600000188764,-0.06905950010965238 +279293,1396.4650000188765,-0.06905948207740947 +279294,1396.4700000188766,-0.06905946404530755 +279295,1396.4750000188767,-0.06905944601334667 +279296,1396.4800000188768,-0.06905942798152687 +279297,1396.485000018877,-0.06905940994984819 +279298,1396.490000018877,-0.06905939191831066 +279299,1396.4950000188771,-0.06905937388691435 +279300,1396.5000000188772,-0.06905935585565931 +279301,1396.5050000188774,-0.06905933782454556 +279302,1396.5100000188775,-0.06905931979357315 +279303,1396.5150000188776,-0.06905930176274211 +279304,1396.5200000188777,-0.06905928373205253 +279305,1396.5250000188778,-0.0690592657015044 +279306,1396.530000018878,-0.0690592476710978 +279307,1396.535000018878,-0.06905922964083278 +279308,1396.5400000188781,-0.06905921161070934 +279309,1396.5450000188782,-0.06905919358072755 +279310,1396.5500000188783,-0.06905917555088746 +279311,1396.5550000188784,-0.0690591575211891 +279312,1396.5600000188786,-0.06905913949163253 +279313,1396.5650000188787,-0.0690591214622178 +279314,1396.5700000188788,-0.06905910343294494 +279315,1396.5750000188789,-0.06905908540381399 +279316,1396.580000018879,-0.06905906737482499 +279317,1396.585000018879,-0.069059049345978 +279318,1396.5900000188792,-0.06905903131727305 +279319,1396.5950000188793,-0.0690590132887102 +279320,1396.6000000188794,-0.06905899526028947 +279321,1396.6050000188795,-0.06905897723201092 +279322,1396.6100000188796,-0.0690589592038746 +279323,1396.6150000188798,-0.06905894117588053 +279324,1396.6200000188799,-0.06905892314802878 +279325,1396.62500001888,-0.0690589051203194 +279326,1396.63000001888,-0.0690588870927524 +279327,1396.6350000188802,-0.06905886906532784 +279328,1396.6400000188803,-0.06905885103804578 +279329,1396.6450000188804,-0.06905883301090625 +279330,1396.6500000188805,-0.06905881498390927 +279331,1396.6550000188806,-0.06905879695705493 +279332,1396.6600000188807,-0.06905877893034323 +279333,1396.6650000188808,-0.06905876090377426 +279334,1396.670000018881,-0.06905874287734802 +279335,1396.675000018881,-0.06905872485106458 +279336,1396.6800000188812,-0.06905870682492399 +279337,1396.6850000188813,-0.06905868879892627 +279338,1396.6900000188814,-0.06905867077307148 +279339,1396.6950000188815,-0.06905865274735966 +279340,1396.7000000188816,-0.06905863472179086 +279341,1396.7050000188817,-0.0690586166963651 +279342,1396.7100000188818,-0.06905859867108244 +279343,1396.715000018882,-0.06905858064594293 +279344,1396.720000018882,-0.0690585626209466 +279345,1396.7250000188822,-0.06905854459609352 +279346,1396.7300000188823,-0.06905852657138373 +279347,1396.7350000188824,-0.06905850854681723 +279348,1396.7400000188825,-0.06905849052239411 +279349,1396.7450000188826,-0.06905847249811439 +279350,1396.7500000188827,-0.06905845447397813 +279351,1396.7550000188828,-0.06905843644998537 +279352,1396.760000018883,-0.06905841842613615 +279353,1396.765000018883,-0.06905840040243051 +279354,1396.7700000188831,-0.06905838237886851 +279355,1396.7750000188832,-0.06905836435545017 +279356,1396.7800000188834,-0.06905834633217554 +279357,1396.7850000188835,-0.06905832830904468 +279358,1396.7900000188836,-0.06905831028605762 +279359,1396.7950000188837,-0.06905829226321442 +279360,1396.8000000188838,-0.0690582742405151 +279361,1396.805000018884,-0.0690582562179597 +279362,1396.810000018884,-0.0690582381955483 +279363,1396.8150000188841,-0.06905822017328092 +279364,1396.8200000188842,-0.0690582021511576 +279365,1396.8250000188843,-0.0690581841291784 +279366,1396.8300000188844,-0.06905816610734336 +279367,1396.8350000188846,-0.06905814808565251 +279368,1396.8400000188847,-0.0690581300641059 +279369,1396.8450000188848,-0.06905811204270358 +279370,1396.8500000188849,-0.0690580940214456 +279371,1396.855000018885,-0.069058076000332 +279372,1396.860000018885,-0.0690580579793628 +279373,1396.8650000188852,-0.06905803995853807 +279374,1396.8700000188853,-0.06905802193785786 +279375,1396.8750000188854,-0.06905800391732218 +279376,1396.8800000188855,-0.0690579858969311 +279377,1396.8850000188856,-0.06905796787668465 +279378,1396.8900000188858,-0.06905794985658291 +279379,1396.8950000188859,-0.06905793183662588 +279380,1396.900000018886,-0.06905791381681363 +279381,1396.905000018886,-0.06905789579714618 +279382,1396.9100000188862,-0.0690578777776236 +279383,1396.9150000188863,-0.0690578597582459 +279384,1396.9200000188864,-0.06905784173901315 +279385,1396.9250000188865,-0.06905782371992542 +279386,1396.9300000188866,-0.0690578057009827 +279387,1396.9350000188867,-0.06905778768218505 +279388,1396.9400000188868,-0.06905776966353253 +279389,1396.945000018887,-0.06905775164502517 +279390,1396.950000018887,-0.06905773362666304 +279391,1396.9550000188872,-0.06905771560844615 +279392,1396.9600000188873,-0.06905769759037454 +279393,1396.9650000188874,-0.0690576795724483 +279394,1396.9700000188875,-0.06905766155466742 +279395,1396.9750000188876,-0.06905764353703198 +279396,1396.9800000188877,-0.06905762551954202 +279397,1396.9850000188878,-0.06905760750219755 +279398,1396.990000018888,-0.06905758948499865 +279399,1396.995000018888,-0.06905757146794536 +279400,1397.0000000188882,-0.06905755345103771 +279401,1397.0050000188883,-0.06905753543427579 +279402,1397.0100000188884,-0.06905751741765957 +279403,1397.0150000188885,-0.06905749940118913 +279404,1397.0200000188886,-0.06905748138486452 +279405,1397.0250000188887,-0.06905746336868578 +279406,1397.0300000188888,-0.06905744535265294 +279407,1397.035000018889,-0.06905742733676606 +279408,1397.040000018889,-0.06905740932102519 +279409,1397.0450000188891,-0.06905739130543036 +279410,1397.0500000188892,-0.06905737328998161 +279411,1397.0550000188894,-0.069057355274679 +279412,1397.0600000188895,-0.06905733725952255 +279413,1397.0650000188896,-0.06905731924451233 +279414,1397.0700000188897,-0.06905730122964836 +279415,1397.0750000188898,-0.06905728321493071 +279416,1397.08000001889,-0.0690572652003594 +279417,1397.08500001889,-0.06905724718593449 +279418,1397.0900000188901,-0.069057229171656 +279419,1397.0950000188902,-0.06905721115752401 +279420,1397.1000000188903,-0.06905719314353854 +279421,1397.1050000188905,-0.06905717512969965 +279422,1397.1100000188906,-0.06905715711600736 +279423,1397.1150000188907,-0.06905713910246174 +279424,1397.1200000188908,-0.06905712108906281 +279425,1397.125000018891,-0.06905710307581062 +279426,1397.130000018891,-0.06905708506270522 +279427,1397.135000018891,-0.06905706704974665 +279428,1397.1400000188912,-0.06905704903693495 +279429,1397.1450000188913,-0.06905703102427019 +279430,1397.1500000188914,-0.06905701301175238 +279431,1397.1550000188915,-0.06905699499938157 +279432,1397.1600000188917,-0.06905697698715782 +279433,1397.1650000188918,-0.06905695897508117 +279434,1397.1700000188919,-0.06905694096315167 +279435,1397.175000018892,-0.06905692295136934 +279436,1397.180000018892,-0.06905690493973422 +279437,1397.1850000188922,-0.0690568869282464 +279438,1397.1900000188923,-0.06905686891690589 +279439,1397.1950000188924,-0.06905685090571272 +279440,1397.2000000188925,-0.06905683289466696 +279441,1397.2050000188926,-0.06905681488376865 +279442,1397.2100000188927,-0.06905679687301783 +279443,1397.2150000188929,-0.06905677886241454 +279444,1397.220000018893,-0.06905676085195885 +279445,1397.225000018893,-0.06905674284165075 +279446,1397.2300000188932,-0.06905672483149033 +279447,1397.2350000188933,-0.06905670682147762 +279448,1397.2400000188934,-0.06905668881161266 +279449,1397.2450000188935,-0.0690566708018955 +279450,1397.2500000188936,-0.06905665279232616 +279451,1397.2550000188937,-0.06905663478290472 +279452,1397.2600000188938,-0.0690566167736312 +279453,1397.265000018894,-0.06905659876450566 +279454,1397.270000018894,-0.06905658075552815 +279455,1397.2750000188942,-0.06905656274669868 +279456,1397.2800000188943,-0.06905654473801731 +279457,1397.2850000188944,-0.06905652672948409 +279458,1397.2900000188945,-0.06905650872109907 +279459,1397.2950000188946,-0.06905649071286227 +279460,1397.3000000188947,-0.06905647270477377 +279461,1397.3050000188948,-0.06905645469683358 +279462,1397.310000018895,-0.06905643668904177 +279463,1397.315000018895,-0.06905641868139835 +279464,1397.3200000188951,-0.06905640067390338 +279465,1397.3250000188953,-0.06905638266655693 +279466,1397.3300000188954,-0.069056364659359 +279467,1397.3350000188955,-0.06905634665230967 +279468,1397.3400000188956,-0.06905632864540896 +279469,1397.3450000188957,-0.06905631063865694 +279470,1397.3500000188958,-0.06905629263205362 +279471,1397.355000018896,-0.06905627462559907 +279472,1397.360000018896,-0.06905625661929332 +279473,1397.3650000188961,-0.06905623861313642 +279474,1397.3700000188962,-0.0690562206071284 +279475,1397.3750000188963,-0.06905620260126934 +279476,1397.3800000188965,-0.06905618459555923 +279477,1397.3850000188966,-0.06905616658999816 +279478,1397.3900000188967,-0.06905614858458616 +279479,1397.3950000188968,-0.06905613057932325 +279480,1397.400000018897,-0.0690561125742095 +279481,1397.405000018897,-0.06905609456924497 +279482,1397.410000018897,-0.06905607656442966 +279483,1397.4150000188972,-0.06905605855976364 +279484,1397.4200000188973,-0.06905604055524696 +279485,1397.4250000188974,-0.06905602255087964 +279486,1397.4300000188975,-0.06905600454666176 +279487,1397.4350000188977,-0.06905598654259332 +279488,1397.4400000188978,-0.06905596853867439 +279489,1397.4450000188979,-0.06905595053490501 +279490,1397.450000018898,-0.06905593253128522 +279491,1397.455000018898,-0.06905591452781508 +279492,1397.4600000188982,-0.06905589652449462 +279493,1397.4650000188983,-0.06905587852132386 +279494,1397.4700000188984,-0.06905586051830288 +279495,1397.4750000188985,-0.0690558425154317 +279496,1397.4800000188986,-0.0690558245127104 +279497,1397.4850000188987,-0.069055806510139 +279498,1397.4900000188989,-0.06905578850771753 +279499,1397.495000018899,-0.06905577050544603 +279500,1397.500000018899,-0.06905575250332459 +279501,1397.5050000188992,-0.0690557345013532 +279502,1397.5100000188993,-0.06905571649953195 +279503,1397.5150000188994,-0.06905569849786083 +279504,1397.5200000188995,-0.06905568049633994 +279505,1397.5250000188996,-0.06905566249496929 +279506,1397.5300000188997,-0.06905564449374893 +279507,1397.5350000188998,-0.0690556264926789 +279508,1397.5400000189,-0.06905560849175928 +279509,1397.5450000189,-0.06905559049099005 +279510,1397.5500000189002,-0.06905557249037131 +279511,1397.5550000189003,-0.06905555448990308 +279512,1397.5600000189004,-0.0690555364895854 +279513,1397.5650000189005,-0.06905551848941832 +279514,1397.5700000189006,-0.06905550048940189 +279515,1397.5750000189007,-0.06905548248953614 +279516,1397.5800000189008,-0.06905546448982111 +279517,1397.585000018901,-0.06905544649025686 +279518,1397.590000018901,-0.06905542849084342 +279519,1397.5950000189011,-0.06905541049158086 +279520,1397.6000000189013,-0.0690553924924692 +279521,1397.6050000189014,-0.06905537449350849 +279522,1397.6100000189015,-0.06905535649469875 +279523,1397.6150000189016,-0.06905533849604008 +279524,1397.6200000189017,-0.06905532049753248 +279525,1397.6250000189018,-0.06905530249917599 +279526,1397.630000018902,-0.06905528450097069 +279527,1397.635000018902,-0.06905526650291659 +279528,1397.6400000189021,-0.06905524850501374 +279529,1397.6450000189022,-0.0690552305072622 +279530,1397.6500000189023,-0.06905521250966198 +279531,1397.6550000189025,-0.06905519451221316 +279532,1397.6600000189026,-0.06905517651491577 +279533,1397.6650000189027,-0.06905515851776986 +279534,1397.6700000189028,-0.06905514052077545 +279535,1397.675000018903,-0.06905512252393263 +279536,1397.680000018903,-0.0690551045272414 +279537,1397.685000018903,-0.06905508653070182 +279538,1397.6900000189032,-0.06905506853431392 +279539,1397.6950000189033,-0.06905505053807777 +279540,1397.7000000189034,-0.0690550325419934 +279541,1397.7050000189035,-0.06905501454606085 +279542,1397.7100000189037,-0.06905499655028016 +279543,1397.7150000189038,-0.0690549785546514 +279544,1397.7200000189039,-0.0690549605591746 +279545,1397.725000018904,-0.06905494256384977 +279546,1397.730000018904,-0.069054924568677 +279547,1397.7350000189042,-0.06905490657365632 +279548,1397.7400000189043,-0.06905488857878775 +279549,1397.7450000189044,-0.06905487058407137 +279550,1397.7500000189045,-0.06905485258950719 +279551,1397.7550000189046,-0.06905483459509529 +279552,1397.7600000189047,-0.06905481660083568 +279553,1397.7650000189049,-0.06905479860672843 +279554,1397.770000018905,-0.06905478061277355 +279555,1397.775000018905,-0.06905476261897113 +279556,1397.7800000189052,-0.06905474462532118 +279557,1397.7850000189053,-0.06905472663182376 +279558,1397.7900000189054,-0.06905470863847889 +279559,1397.7950000189055,-0.06905469064528665 +279560,1397.8000000189056,-0.06905467265224705 +279561,1397.8050000189057,-0.06905465465936016 +279562,1397.8100000189058,-0.069054636666626 +279563,1397.815000018906,-0.06905461867404462 +279564,1397.820000018906,-0.06905460068161608 +279565,1397.8250000189062,-0.06905458268934041 +279566,1397.8300000189063,-0.06905456469721766 +279567,1397.8350000189064,-0.06905454670524785 +279568,1397.8400000189065,-0.06905452871343107 +279569,1397.8450000189066,-0.06905451072176733 +279570,1397.8500000189067,-0.06905449273025667 +279571,1397.8550000189068,-0.06905447473889914 +279572,1397.860000018907,-0.0690544567476948 +279573,1397.865000018907,-0.06905443875664367 +279574,1397.8700000189071,-0.06905442076574583 +279575,1397.8750000189073,-0.0690544027750013 +279576,1397.8800000189074,-0.0690543847844101 +279577,1397.8850000189075,-0.06905436679397231 +279578,1397.8900000189076,-0.06905434880368796 +279579,1397.8950000189077,-0.0690543308135571 +279580,1397.9000000189078,-0.06905431282357975 +279581,1397.905000018908,-0.06905429483375598 +279582,1397.910000018908,-0.06905427684408583 +279583,1397.9150000189081,-0.06905425885456933 +279584,1397.9200000189082,-0.06905424086520653 +279585,1397.9250000189083,-0.06905422287599748 +279586,1397.9300000189085,-0.06905420488694224 +279587,1397.9350000189086,-0.06905418689804081 +279588,1397.9400000189087,-0.06905416890929326 +279589,1397.9450000189088,-0.06905415092069964 +279590,1397.950000018909,-0.06905413293225998 +279591,1397.955000018909,-0.06905411494397433 +279592,1397.960000018909,-0.06905409695584272 +279593,1397.9650000189092,-0.06905407896786521 +279594,1397.9700000189093,-0.06905406098004184 +279595,1397.9750000189094,-0.06905404299237265 +279596,1397.9800000189095,-0.06905402500485769 +279597,1397.9850000189097,-0.069054007017497 +279598,1397.9900000189098,-0.06905398903029063 +279599,1397.9950000189099,-0.06905397104323861 +279600,1398.00000001891,-0.06905395305634099 +279601,1398.00500001891,-0.06905393506959781 +279602,1398.0100000189102,-0.06905391708300912 +279603,1398.0150000189103,-0.06905389909657497 +279604,1398.0200000189104,-0.0690538811102954 +279605,1398.0250000189105,-0.06905386312417043 +279606,1398.0300000189106,-0.06905384513820015 +279607,1398.0350000189108,-0.06905382715238456 +279608,1398.0400000189109,-0.06905380916672373 +279609,1398.045000018911,-0.06905379118121768 +279610,1398.050000018911,-0.06905377319586647 +279611,1398.0550000189112,-0.06905375521067014 +279612,1398.0600000189113,-0.06905373722562874 +279613,1398.0650000189114,-0.0690537192407423 +279614,1398.0700000189115,-0.06905370125601087 +279615,1398.0750000189116,-0.0690536832714345 +279616,1398.0800000189117,-0.06905366528701325 +279617,1398.0850000189118,-0.06905364730274713 +279618,1398.090000018912,-0.06905362931863618 +279619,1398.095000018912,-0.06905361133468046 +279620,1398.1000000189122,-0.06905359335088004 +279621,1398.1050000189123,-0.06905357536723492 +279622,1398.1100000189124,-0.06905355738374516 +279623,1398.1150000189125,-0.06905353940041081 +279624,1398.1200000189126,-0.06905352141723191 +279625,1398.1250000189127,-0.06905350343420849 +279626,1398.1300000189128,-0.06905348545134062 +279627,1398.135000018913,-0.06905346746862832 +279628,1398.140000018913,-0.06905344948607166 +279629,1398.1450000189132,-0.06905343150367066 +279630,1398.1500000189133,-0.06905341352142536 +279631,1398.1550000189134,-0.06905339553933582 +279632,1398.1600000189135,-0.06905337755740205 +279633,1398.1650000189136,-0.06905335957562415 +279634,1398.1700000189137,-0.06905334159400213 +279635,1398.1750000189138,-0.06905332361253604 +279636,1398.180000018914,-0.06905330563122591 +279637,1398.185000018914,-0.06905328765007179 +279638,1398.1900000189141,-0.06905326966907374 +279639,1398.1950000189142,-0.0690532516882318 +279640,1398.2000000189144,-0.069053233707546 +279641,1398.2050000189145,-0.06905321572701639 +279642,1398.2100000189146,-0.06905319774664301 +279643,1398.2150000189147,-0.0690531797664259 +279644,1398.2200000189148,-0.06905316178636513 +279645,1398.225000018915,-0.06905314380646072 +279646,1398.230000018915,-0.0690531258267127 +279647,1398.2350000189151,-0.06905310784712114 +279648,1398.2400000189152,-0.06905308986768607 +279649,1398.2450000189153,-0.06905307188840755 +279650,1398.2500000189154,-0.0690530539092856 +279651,1398.2550000189156,-0.06905303593032028 +279652,1398.2600000189157,-0.06905301795151164 +279653,1398.2650000189158,-0.0690529999728597 +279654,1398.2700000189159,-0.06905298199436452 +279655,1398.275000018916,-0.06905296401602613 +279656,1398.280000018916,-0.0690529460378446 +279657,1398.2850000189162,-0.06905292805981995 +279658,1398.2900000189163,-0.06905291008195223 +279659,1398.2950000189164,-0.0690528921042415 +279660,1398.3000000189165,-0.06905287412668777 +279661,1398.3050000189166,-0.0690528561492911 +279662,1398.3100000189168,-0.06905283817205154 +279663,1398.3150000189169,-0.06905282019496913 +279664,1398.320000018917,-0.06905280221804391 +279665,1398.325000018917,-0.06905278424127592 +279666,1398.3300000189172,-0.06905276626466521 +279667,1398.3350000189173,-0.06905274828821183 +279668,1398.3400000189174,-0.0690527303119158 +279669,1398.3450000189175,-0.0690527123357772 +279670,1398.3500000189176,-0.06905269435979605 +279671,1398.3550000189177,-0.0690526763839724 +279672,1398.3600000189178,-0.06905265840830627 +279673,1398.365000018918,-0.06905264043279773 +279674,1398.370000018918,-0.06905262245744684 +279675,1398.3750000189182,-0.0690526044822536 +279676,1398.3800000189183,-0.06905258650721809 +279677,1398.3850000189184,-0.06905256853234032 +279678,1398.3900000189185,-0.06905255055762036 +279679,1398.3950000189186,-0.06905253258305824 +279680,1398.4000000189187,-0.06905251460865401 +279681,1398.4050000189188,-0.06905249663440771 +279682,1398.410000018919,-0.0690524786603194 +279683,1398.415000018919,-0.0690524606863891 +279684,1398.4200000189192,-0.06905244271261687 +279685,1398.4250000189193,-0.06905242473900275 +279686,1398.4300000189194,-0.06905240676554676 +279687,1398.4350000189195,-0.06905238879224898 +279688,1398.4400000189196,-0.06905237081910943 +279689,1398.4450000189197,-0.06905235284612816 +279690,1398.4500000189198,-0.06905233487330521 +279691,1398.45500001892,-0.06905231690064065 +279692,1398.46000001892,-0.0690522989281345 +279693,1398.4650000189201,-0.06905228095578679 +279694,1398.4700000189202,-0.06905226298359757 +279695,1398.4750000189204,-0.06905224501156691 +279696,1398.4800000189205,-0.06905222703969482 +279697,1398.4850000189206,-0.06905220906798139 +279698,1398.4900000189207,-0.0690521910964266 +279699,1398.4950000189208,-0.06905217312503054 +279700,1398.500000018921,-0.06905215515379323 +279701,1398.505000018921,-0.06905213718271475 +279702,1398.5100000189211,-0.06905211921179509 +279703,1398.5150000189212,-0.06905210124103432 +279704,1398.5200000189213,-0.0690520832704325 +279705,1398.5250000189214,-0.06905206529998965 +279706,1398.5300000189216,-0.06905204732970582 +279707,1398.5350000189217,-0.06905202935958107 +279708,1398.5400000189218,-0.06905201138961542 +279709,1398.5450000189219,-0.06905199341980892 +279710,1398.550000018922,-0.0690519754501616 +279711,1398.555000018922,-0.06905195748067354 +279712,1398.5600000189222,-0.06905193951134474 +279713,1398.5650000189223,-0.06905192154217528 +279714,1398.5700000189224,-0.0690519035731652 +279715,1398.5750000189225,-0.06905188560431451 +279716,1398.5800000189226,-0.06905186763562328 +279717,1398.5850000189228,-0.06905184966709156 +279718,1398.5900000189229,-0.06905183169871938 +279719,1398.595000018923,-0.06905181373050678 +279720,1398.600000018923,-0.06905179576245381 +279721,1398.6050000189232,-0.06905177779456052 +279722,1398.6100000189233,-0.06905175982682696 +279723,1398.6150000189234,-0.06905174185925314 +279724,1398.6200000189235,-0.06905172389183914 +279725,1398.6250000189236,-0.06905170592458497 +279726,1398.6300000189237,-0.0690516879574907 +279727,1398.6350000189238,-0.06905166999055637 +279728,1398.640000018924,-0.069051652023782 +279729,1398.645000018924,-0.06905163405716766 +279730,1398.6500000189242,-0.06905161609071338 +279731,1398.6550000189243,-0.06905159812441922 +279732,1398.6600000189244,-0.0690515801582852 +279733,1398.6650000189245,-0.0690515621923114 +279734,1398.6700000189246,-0.06905154422649781 +279735,1398.6750000189247,-0.06905152626084451 +279736,1398.6800000189248,-0.06905150829535155 +279737,1398.685000018925,-0.06905149033001894 +279738,1398.690000018925,-0.06905147236484675 +279739,1398.6950000189252,-0.06905145439983502 +279740,1398.7000000189253,-0.0690514364349838 +279741,1398.7050000189254,-0.06905141847029311 +279742,1398.7100000189255,-0.06905140050576301 +279743,1398.7150000189256,-0.06905138254139354 +279744,1398.7200000189257,-0.06905136457718475 +279745,1398.7250000189258,-0.06905134661313667 +279746,1398.730000018926,-0.06905132864924934 +279747,1398.735000018926,-0.06905131068552282 +279748,1398.7400000189261,-0.06905129272195716 +279749,1398.7450000189262,-0.06905127475855238 +279750,1398.7500000189264,-0.06905125679530855 +279751,1398.7550000189265,-0.06905123883222568 +279752,1398.7600000189266,-0.06905122086930383 +279753,1398.7650000189267,-0.06905120290654305 +279754,1398.7700000189268,-0.06905118494394338 +279755,1398.775000018927,-0.06905116698150486 +279756,1398.780000018927,-0.06905114901922756 +279757,1398.7850000189271,-0.06905113105711148 +279758,1398.7900000189272,-0.06905111309515669 +279759,1398.7950000189273,-0.0690510951333632 +279760,1398.8000000189274,-0.06905107717173109 +279761,1398.8050000189276,-0.0690510592102604 +279762,1398.8100000189277,-0.06905104124895117 +279763,1398.8150000189278,-0.06905102328780344 +279764,1398.8200000189279,-0.06905100532681724 +279765,1398.825000018928,-0.06905098736599263 +279766,1398.830000018928,-0.06905096940532965 +279767,1398.8350000189282,-0.06905095144482835 +279768,1398.8400000189283,-0.06905093348448876 +279769,1398.8450000189284,-0.06905091552431093 +279770,1398.8500000189285,-0.06905089756429492 +279771,1398.8550000189286,-0.06905087960444074 +279772,1398.8600000189288,-0.06905086164474845 +279773,1398.8650000189289,-0.0690508436852181 +279774,1398.870000018929,-0.06905082572584972 +279775,1398.875000018929,-0.06905080776664338 +279776,1398.8800000189292,-0.06905078980759909 +279777,1398.8850000189293,-0.06905077184871691 +279778,1398.8900000189294,-0.06905075388999689 +279779,1398.8950000189295,-0.06905073593143905 +279780,1398.9000000189296,-0.06905071797304345 +279781,1398.9050000189297,-0.06905070001481013 +279782,1398.9100000189298,-0.06905068205673914 +279783,1398.91500001893,-0.06905066409883052 +279784,1398.92000001893,-0.06905064614108432 +279785,1398.9250000189302,-0.06905062818350056 +279786,1398.9300000189303,-0.0690506102260793 +279787,1398.9350000189304,-0.06905059226882058 +279788,1398.9400000189305,-0.06905057431172444 +279789,1398.9450000189306,-0.06905055635479095 +279790,1398.9500000189307,-0.06905053839802011 +279791,1398.9550000189308,-0.069050520441412 +279792,1398.960000018931,-0.06905050248496665 +279793,1398.965000018931,-0.06905048452868409 +279794,1398.9700000189312,-0.06905046657256439 +279795,1398.9750000189313,-0.06905044861660757 +279796,1398.9800000189314,-0.06905043066081369 +279797,1398.9850000189315,-0.06905041270518278 +279798,1398.9900000189316,-0.0690503947497149 +279799,1398.9950000189317,-0.06905037679441008 +279800,1399.0000000189318,-0.06905035883926836 +279801,1399.005000018932,-0.06905034088428978 +279802,1399.010000018932,-0.06905032292947441 +279803,1399.0150000189321,-0.06905030497482227 +279804,1399.0200000189323,-0.0690502870203334 +279805,1399.0250000189324,-0.06905026906600786 +279806,1399.0300000189325,-0.06905025111184568 +279807,1399.0350000189326,-0.06905023315784692 +279808,1399.0400000189327,-0.06905021520401161 +279809,1399.0450000189328,-0.0690501972503398 +279810,1399.050000018933,-0.06905017929683153 +279811,1399.055000018933,-0.06905016134348685 +279812,1399.0600000189331,-0.0690501433903058 +279813,1399.0650000189332,-0.0690501254372884 +279814,1399.0700000189333,-0.06905010748443471 +279815,1399.0750000189335,-0.06905008953174481 +279816,1399.0800000189336,-0.06905007157921868 +279817,1399.0850000189337,-0.06905005362685641 +279818,1399.0900000189338,-0.06905003567465802 +279819,1399.095000018934,-0.06905001772262356 +279820,1399.100000018934,-0.06904999977075309 +279821,1399.105000018934,-0.06904998181904662 +279822,1399.1100000189342,-0.06904996386750421 +279823,1399.1150000189343,-0.06904994591612593 +279824,1399.1200000189344,-0.06904992796491177 +279825,1399.1250000189345,-0.06904991001386182 +279826,1399.1300000189347,-0.06904989206297608 +279827,1399.1350000189348,-0.06904987411225465 +279828,1399.1400000189349,-0.06904985616169752 +279829,1399.145000018935,-0.06904983821130477 +279830,1399.150000018935,-0.06904982026107641 +279831,1399.1550000189352,-0.0690498023110125 +279832,1399.1600000189353,-0.06904978436111309 +279833,1399.1650000189354,-0.06904976641137822 +279834,1399.1700000189355,-0.06904974846180792 +279835,1399.1750000189356,-0.06904973051240225 +279836,1399.1800000189357,-0.06904971256316125 +279837,1399.1850000189359,-0.06904969461408496 +279838,1399.190000018936,-0.06904967666517342 +279839,1399.195000018936,-0.0690496587164267 +279840,1399.2000000189362,-0.0690496407678448 +279841,1399.2050000189363,-0.06904962281942778 +279842,1399.2100000189364,-0.0690496048711757 +279843,1399.2150000189365,-0.0690495869230886 +279844,1399.2200000189366,-0.0690495689751665 +279845,1399.2250000189367,-0.06904955102740945 +279846,1399.2300000189368,-0.06904953307981751 +279847,1399.235000018937,-0.06904951513239073 +279848,1399.240000018937,-0.06904949718512912 +279849,1399.2450000189372,-0.06904947923803276 +279850,1399.2500000189373,-0.06904946129110166 +279851,1399.2550000189374,-0.06904944334433588 +279852,1399.2600000189375,-0.06904942539773547 +279853,1399.2650000189376,-0.06904940745130045 +279854,1399.2700000189377,-0.0690493895050309 +279855,1399.2750000189378,-0.0690493715589268 +279856,1399.280000018938,-0.06904935361298827 +279857,1399.285000018938,-0.0690493356672153 +279858,1399.2900000189381,-0.06904931772160797 +279859,1399.2950000189383,-0.06904929977616629 +279860,1399.3000000189384,-0.06904928183089032 +279861,1399.3050000189385,-0.0690492638857801 +279862,1399.3100000189386,-0.0690492459408357 +279863,1399.3150000189387,-0.06904922799605712 +279864,1399.3200000189388,-0.0690492100514444 +279865,1399.325000018939,-0.06904919210699763 +279866,1399.330000018939,-0.06904917416271682 +279867,1399.3350000189391,-0.06904915621860201 +279868,1399.3400000189392,-0.06904913827465325 +279869,1399.3450000189393,-0.06904912033087063 +279870,1399.3500000189395,-0.06904910238725412 +279871,1399.3550000189396,-0.06904908444380381 +279872,1399.3600000189397,-0.06904906650051972 +279873,1399.3650000189398,-0.06904904855740189 +279874,1399.37000001894,-0.06904903061445039 +279875,1399.37500001894,-0.06904901267166524 +279876,1399.38000001894,-0.06904899472904649 +279877,1399.3850000189402,-0.06904897678659418 +279878,1399.3900000189403,-0.06904895884430837 +279879,1399.3950000189404,-0.06904894090218908 +279880,1399.4000000189405,-0.06904892296023638 +279881,1399.4050000189407,-0.06904890501845028 +279882,1399.4100000189408,-0.06904888707683084 +279883,1399.4150000189409,-0.06904886913537811 +279884,1399.420000018941,-0.06904885119409214 +279885,1399.425000018941,-0.06904883325297294 +279886,1399.4300000189412,-0.06904881531202058 +279887,1399.4350000189413,-0.0690487973712351 +279888,1399.4400000189414,-0.06904877943061653 +279889,1399.4450000189415,-0.06904876149016494 +279890,1399.4500000189416,-0.06904874354988035 +279891,1399.4550000189417,-0.06904872560976281 +279892,1399.4600000189419,-0.06904870766981237 +279893,1399.465000018942,-0.06904868973002908 +279894,1399.470000018942,-0.06904867179041294 +279895,1399.4750000189422,-0.06904865385096405 +279896,1399.4800000189423,-0.06904863591168241 +279897,1399.4850000189424,-0.06904861797256809 +279898,1399.4900000189425,-0.06904860003362112 +279899,1399.4950000189426,-0.06904858209484153 +279900,1399.5000000189427,-0.06904856415622941 +279901,1399.5050000189428,-0.06904854621778475 +279902,1399.510000018943,-0.06904852827950762 +279903,1399.515000018943,-0.06904851034139807 +279904,1399.5200000189432,-0.06904849240345612 +279905,1399.5250000189433,-0.06904847446568184 +279906,1399.5300000189434,-0.06904845652807524 +279907,1399.5350000189435,-0.0690484385906364 +279908,1399.5400000189436,-0.06904842065336536 +279909,1399.5450000189437,-0.06904840271626211 +279910,1399.5500000189438,-0.06904838477932677 +279911,1399.555000018944,-0.06904836684255931 +279912,1399.560000018944,-0.06904834890595984 +279913,1399.5650000189441,-0.06904833096952837 +279914,1399.5700000189443,-0.06904831303326493 +279915,1399.5750000189444,-0.06904829509716959 +279916,1399.5800000189445,-0.06904827716124237 +279917,1399.5850000189446,-0.06904825922548334 +279918,1399.5900000189447,-0.06904824128989252 +279919,1399.5950000189448,-0.06904822335446996 +279920,1399.600000018945,-0.0690482054192157 +279921,1399.605000018945,-0.0690481874841298 +279922,1399.6100000189451,-0.0690481695492123 +279923,1399.6150000189452,-0.0690481516144632 +279924,1399.6200000189453,-0.0690481336798826 +279925,1399.6250000189455,-0.06904811574547053 +279926,1399.6300000189456,-0.069048097811227 +279927,1399.6350000189457,-0.06904807987715211 +279928,1399.6400000189458,-0.06904806194324585 +279929,1399.645000018946,-0.06904804400950829 +279930,1399.650000018946,-0.06904802607593946 +279931,1399.655000018946,-0.06904800814253942 +279932,1399.6600000189462,-0.0690479902093082 +279933,1399.6650000189463,-0.06904797227624584 +279934,1399.6700000189464,-0.0690479543433524 +279935,1399.6750000189465,-0.06904793641062791 +279936,1399.6800000189467,-0.06904791847807241 +279937,1399.6850000189468,-0.06904790054568596 +279938,1399.6900000189469,-0.0690478826134686 +279939,1399.695000018947,-0.06904786468142037 +279940,1399.700000018947,-0.0690478467495413 +279941,1399.7050000189472,-0.06904782881783143 +279942,1399.7100000189473,-0.06904781088629083 +279943,1399.7150000189474,-0.06904779295491953 +279944,1399.7200000189475,-0.06904777502371756 +279945,1399.7250000189476,-0.06904775709268499 +279946,1399.7300000189477,-0.06904773916182184 +279947,1399.7350000189479,-0.06904772123112816 +279948,1399.740000018948,-0.069047703300604 +279949,1399.745000018948,-0.0690476853702494 +279950,1399.7500000189482,-0.06904766744006441 +279951,1399.7550000189483,-0.06904764951004905 +279952,1399.7600000189484,-0.06904763158020337 +279953,1399.7650000189485,-0.06904761365052745 +279954,1399.7700000189486,-0.06904759572102129 +279955,1399.7750000189487,-0.06904757779168494 +279956,1399.7800000189488,-0.06904755986251847 +279957,1399.785000018949,-0.06904754193352189 +279958,1399.790000018949,-0.06904752400469526 +279959,1399.7950000189492,-0.06904750607603861 +279960,1399.8000000189493,-0.06904748814755202 +279961,1399.8050000189494,-0.06904747021923549 +279962,1399.8100000189495,-0.06904745229108909 +279963,1399.8150000189496,-0.06904743436311285 +279964,1399.8200000189497,-0.0690474164353068 +279965,1399.8250000189498,-0.06904739850767101 +279966,1399.83000001895,-0.06904738058020551 +279967,1399.83500001895,-0.06904736265291035 +279968,1399.8400000189501,-0.06904734472578557 +279969,1399.8450000189503,-0.06904732679883122 +279970,1399.8500000189504,-0.06904730887204731 +279971,1399.8550000189505,-0.06904729094543394 +279972,1399.8600000189506,-0.06904727301899109 +279973,1399.8650000189507,-0.06904725509271886 +279974,1399.8700000189508,-0.06904723716661725 +279975,1399.875000018951,-0.06904721924068634 +279976,1399.880000018951,-0.06904720131492614 +279977,1399.8850000189511,-0.06904718338933673 +279978,1399.8900000189512,-0.0690471654639181 +279979,1399.8950000189514,-0.06904714753867035 +279980,1399.9000000189515,-0.06904712961359348 +279981,1399.9050000189516,-0.06904711168868756 +279982,1399.9100000189517,-0.06904709376395263 +279983,1399.9150000189518,-0.06904707583938872 +279984,1399.920000018952,-0.06904705791499588 +279985,1399.925000018952,-0.06904703999077415 +279986,1399.9300000189521,-0.06904702206672358 +279987,1399.9350000189522,-0.06904700414284422 +279988,1399.9400000189523,-0.06904698621913609 +279989,1399.9450000189524,-0.06904696829559924 +279990,1399.9500000189526,-0.06904695037223373 +279991,1399.9550000189527,-0.06904693244903957 +279992,1399.9600000189528,-0.06904691452601686 +279993,1399.9650000189529,-0.06904689660316558 +279994,1399.970000018953,-0.0690468786804858 +279995,1399.975000018953,-0.06904686075797759 +279996,1399.9800000189532,-0.06904684283564094 +279997,1399.9850000189533,-0.06904682491347594 +279998,1399.9900000189534,-0.0690468069914826 +279999,1399.9950000189535,-0.069046789069661 +280000,1400.0000000189536,-0.06904677114801114 diff --git a/python/example/single_cell_cable.py b/python/example/single_cell_cable.py index 1043dba3aa..8cb5d4cfdb 100755 --- a/python/example/single_cell_cable.py +++ b/python/example/single_cell_cable.py @@ -9,10 +9,20 @@ class Cable(arbor.recipe): - def __init__(self, probes, - Vm, length, radius, cm, rL, g, - stimulus_start, stimulus_duration, stimulus_amplitude, - cv_policy_max_extent): + def __init__( + self, + probes, + Vm, + length, + radius, + cm, + rL, + g, + stimulus_start, + stimulus_duration, + stimulus_amplitude, + cv_policy_max_extent, + ): """ probes -- list of probes @@ -30,8 +40,6 @@ def __init__(self, probes, cv_policy_max_extent -- maximum extent of control volume in μm """ - # (4.1) The base C++ class constructor must be called first, to ensure that - # all memory in the C++ class is initialized correctly. arbor.recipe.__init__(self) self.the_probes = probes @@ -55,59 +63,59 @@ def num_cells(self): return 1 def num_sources(self, gid): - assert gid == 0 return 0 def cell_kind(self, gid): - assert gid == 0 return arbor.cell_kind.cable + def probes(self, gid): + return self.the_probes + + def global_properties(self, kind): + return self.the_props + def cell_description(self, gid): """A high level description of the cell with global identifier gid. For example the morphology, synapses and ion channels required to build a multi-compartment neuron. """ - assert gid == 0 tree = arbor.segment_tree() - tree.append(arbor.mnpos, - arbor.mpoint(0, 0, 0, self.radius), - arbor.mpoint(self.length, 0, 0, self.radius), - tag=1) - - labels = arbor.label_dict({'cable': '(tag 1)', - 'start': '(location 0 0)'}) - - decor = arbor.decor() - decor.set_property(Vm=self.Vm) - decor.set_property(cm=self.cm) - decor.set_property(rL=self.rL) - - decor.paint('"cable"', - arbor.density(f'pas/e={self.Vm}', {'g': self.g})) - - decor.place('"start"', arbor.iclamp(self.stimulus_start, self.stimulus_duration, self.stimulus_amplitude), "iclamp") + tree.append( + arbor.mnpos, + arbor.mpoint(0, 0, 0, self.radius), + arbor.mpoint(self.length, 0, 0, self.radius), + tag=1, + ) + + labels = arbor.label_dict({"cable": "(tag 1)", "start": "(location 0 0)"}) + + decor = ( + arbor.decor() + .set_property(Vm=self.Vm, cm=self.cm, rL=self.rL) + .paint('"cable"', arbor.density(f"pas/e={self.Vm}", {"g": self.g})) + .place( + '"start"', + arbor.iclamp( + self.stimulus_start, self.stimulus_duration, self.stimulus_amplitude + ), + "iclamp", + ) + ) policy = arbor.cv_policy_max_extent(self.cv_policy_max_extent) decor.discretization(policy) return arbor.cable_cell(tree, labels, decor) - def probes(self, gid): - assert gid == 0 - return self.the_probes - - def global_properties(self, kind): - return self.the_props - def get_rm(g): """Return membrane resistivity in Ohm*m^2 g -- membrane conductivity in S/m^2 """ - return 1/g + return 1 / g def get_taum(cm, rm): @@ -115,7 +123,7 @@ def get_taum(cm, rm): cm -- membrane capacitance in F/m^2 rm -- membrane resistivity in Ohm*m^2 """ - return cm*rm + return cm * rm def get_lambdam(a, rm, rL): @@ -124,7 +132,7 @@ def get_lambdam(a, rm, rL): rm -- membrane resistivity in Ohm*m^2 rL -- axial resistivity in Ohm*m """ - return np.sqrt(a*rm/(2*rL)) + return np.sqrt(a * rm / (2 * rL)) def get_vcond(lambdam, taum): @@ -132,7 +140,7 @@ def get_vcond(lambdam, taum): lambda -- electronic length in m taum -- membrane time constant """ - return 2*lambdam/taum + return 2 * lambdam / taum def get_tmax(data): @@ -142,49 +150,62 @@ def get_tmax(data): if __name__ == "__main__": - parser = argparse.ArgumentParser(description='Cable') + parser = argparse.ArgumentParser(description="Cable") parser.add_argument( - '--Vm', help="membrane leak potential in mV", type=float, default=-65) + "--Vm", help="membrane leak potential in mV", type=float, default=-65 + ) + parser.add_argument("--length", help="cable length in μm", type=float, default=1000) + parser.add_argument("--radius", help="cable radius in μm", type=float, default=1) parser.add_argument( - '--length', help="cable length in μm", type=float, default=1000) + "--cm", help="membrane capacitance in F/m^2", type=float, default=0.01 + ) parser.add_argument( - '--radius', help="cable radius in μm", type=float, default=1) + "--rL", help="axial resistivity in Ω·cm", type=float, default=90 + ) parser.add_argument( - '--cm', help="membrane capacitance in F/m^2", type=float, default=0.01) + "--g", help="membrane conductivity in S/cm^2", type=float, default=0.001 + ) + parser.add_argument( - '--rL', help="axial resistivity in Ω·cm", type=float, default=90) + "--stimulus_start", help="start of stimulus in ms", type=float, default=10 + ) parser.add_argument( - '--g', help="membrane conductivity in S/cm^2", type=float, default=0.001) - - parser.add_argument('--stimulus_start', - help="start of stimulus in ms", type=float, default=10) - parser.add_argument('--stimulus_duration', - help="duration of stimulus in ms", type=float, default=0.1) - parser.add_argument('--stimulus_amplitude', - help="amplitude of stimulus in nA", type=float, default=1) + "--stimulus_duration", + help="duration of stimulus in ms", + type=float, + default=0.1, + ) + parser.add_argument( + "--stimulus_amplitude", + help="amplitude of stimulus in nA", + type=float, + default=1, + ) - parser.add_argument('--cv_policy_max_extent', - help="maximum extent of control volume in μm", type=float, - default=10) + parser.add_argument( + "--cv_policy_max_extent", + help="maximum extent of control volume in μm", + type=float, + default=10, + ) # parse the command line arguments args = parser.parse_args() # set up membrane voltage probes equidistantly along the dendrites - probes = [arbor.cable_probe_membrane_voltage( - f'(location 0 {r})') for r in np.linspace(0, 1, 11)] + probes = [ + arbor.cable_probe_membrane_voltage(f"(location 0 {r})") + for r in np.linspace(0, 1, 11) + ] recipe = Cable(probes, **vars(args)) - # create a default execution context and a default domain decomposition - context = arbor.context() - domains = arbor.partition_load_balance(recipe, context) - # configure the simulation and handles for the probes - sim = arbor.simulation(recipe, domains, context) + sim = arbor.simulation(recipe) dt = 0.001 - handles = [sim.sample((0, i), arbor.regular_schedule(dt)) - for i in range(len(probes))] + handles = [ + sim.sample((0, i), arbor.regular_schedule(dt)) for i in range(len(probes)) + ] # run the simulation for 30 ms sim.run(tfinal=30, dt=dt) @@ -194,24 +215,30 @@ def get_tmax(data): df_list = [] for probe in range(len(handles)): samples, meta = sim.samples(handles[probe])[0] - df_list.append(pandas.DataFrame({'t/ms': samples[:, 0], 'U/mV': samples[:, 1], 'Probe': f"{probe}"})) + df_list.append( + pandas.DataFrame( + {"t/ms": samples[:, 0], "U/mV": samples[:, 1], "Probe": f"{probe}"} + ) + ) - df = pandas.concat(df_list,ignore_index=True) - seaborn.relplot(data=df, kind="line", x="t/ms", y="U/mV",hue="Probe",ci=None).set(xlim=(9,14)).savefig('single_cell_cable_result.svg') + df = pandas.concat(df_list, ignore_index=True) + seaborn.relplot(data=df, kind="line", x="t/ms", y="U/mV", hue="Probe", ci=None).set( + xlim=(9, 14) + ).savefig("single_cell_cable_result.svg") # calculcate the idealized conduction velocity, cf. cable equation data = [sim.samples(handle)[0][0] for handle in handles] - rm = get_rm(args.g*1/(0.01*0.01)) + rm = get_rm(args.g * 1 / (0.01 * 0.01)) taum = get_taum(args.cm, rm) - lambdam = get_lambdam(args.radius*1e-6, rm, args.rL*0.01) + lambdam = get_lambdam(args.radius * 1e-6, rm, args.rL * 0.01) vcond_ideal = get_vcond(lambdam, taum) # take the last and second probe - delta_t = (get_tmax(data[-1]) - get_tmax(data[1])) + delta_t = get_tmax(data[-1]) - get_tmax(data[1]) # 90% because we took the second probe - delta_x = args.length*0.9 - vcond = delta_x*1e-6/(delta_t*1e-3) + delta_x = args.length * 0.9 + vcond = delta_x * 1e-6 / (delta_t * 1e-3) print(f"calculated conduction velocity: {vcond_ideal:.2f} m/s") print(f"simulated conduction velocity: {vcond:.2f} m/s") diff --git a/python/example/single_cell_detailed.py b/python/example/single_cell_detailed.py index 7f53efb0b6..b9f85fd998 100755 --- a/python/example/single_cell_detailed.py +++ b/python/example/single_cell_detailed.py @@ -21,64 +21,49 @@ # (2) Create and populate the label dictionary. -labels = arbor.label_dict() - -# Regions: - -# Add labels for tag 1, 2, 3, 4 -labels['soma'] = '(tag 1)' -labels['axon'] = '(tag 2)' -labels['dend'] = '(tag 3)' -labels['last'] = '(tag 4)' -# Add a label for a region that includes the whole morphology -labels['all'] = '(all)' -# Add a label for the parts of the morphology with radius greater than 1.5 μm. -labels['gt_1.5'] = '(radius-ge (region "all") 1.5)' -# Join regions "last" and "gt_1.5" -labels['custom'] = '(join (region "last") (region "gt_1.5"))' - -# Locsets: - -# Add a labels for the root of the morphology and all the terminal points -labels['root'] = '(root)' -labels['terminal'] = '(terminal)' -# Add a label for the terminal locations in the "custom" region: -labels['custom_terminal'] = '(restrict (locset "terminal") (region "custom"))' -# Add a label for the terminal locations in the "axon" region: -labels['axon_terminal'] = '(restrict (locset "terminal") (region "axon"))' + +labels = arbor.label_dict( + { + # Regions: + # Add a label for a region that includes the whole morphology + "all": "(all)", + # Add a label for the parts of the morphology with radius greater than 1.5 μm. + "gt_1.5": '(radius-ge (region "all") 1.5)', + # Join regions "apic" and "gt_1.5" + "custom": '(join (region "apic") (region "gt_1.5"))', + # Locsets: + # Add a labels for the root of the morphology and all the terminal points + "root": "(root)", + "terminal": "(terminal)", + # Add a label for the terminal locations in the "custom" region: + "custom_terminal": '(restrict (locset "terminal") (region "custom"))', + # Add a label for the terminal locations in the "axon" region: + "axon_terminal": '(restrict (locset "terminal") (region "axon"))', + } +).add_swc_tags() # (3) Create and populate the decor. +# NB. This can be written more compactly using method chaining decor = arbor.decor() - # Set the default properties of the cell (this overrides the model defaults). -decor.set_property(Vm =-55) -decor.set_ion('na', int_con=10, ext_con=140, rev_pot=50, method='nernst/na') -decor.set_ion('k', int_con=54.4, ext_con=2.5, rev_pot=-77) - +decor.set_property(Vm=-55) +decor.set_ion("na", int_con=10, ext_con=140, rev_pot=50, method="nernst/na") +decor.set_ion("k", int_con=54.4, ext_con=2.5, rev_pot=-77) # Override the cell defaults. decor.paint('"custom"', tempK=270) -decor.paint('"soma"', Vm=-50) - +decor.paint('"soma"', Vm=-50) # Paint density mechanisms. -decor.paint('"all"', density('pas')) -decor.paint('"custom"', density('hh')) -decor.paint('"dend"', density('Ih', {'gbar': 0.001})) - +decor.paint('"all"', density("pas")) +decor.paint('"custom"', density("hh")) +decor.paint('"dend"', density("Ih", {"gbar": 0.001})) # Place stimuli and spike detectors. -decor.place('"root"', arbor.iclamp(10, 1, current=2), 'iclamp0') -decor.place('"root"', arbor.iclamp(30, 1, current=2), 'iclamp1') -decor.place('"root"', arbor.iclamp(50, 1, current=2), 'iclamp2') -decor.place('"axon_terminal"', arbor.spike_detector(-10), 'detector') - -# Single CV for the "soma" region -soma_policy = arbor.cv_policy_single('"soma"') -# Single CV for the "soma" region -dflt_policy = arbor.cv_policy_max_extent(1.0) -# default policy everywhere except the soma -policy = dflt_policy | soma_policy -# Set cv_policy -decor.discretization(policy) +decor.place('"root"', arbor.iclamp(10, 1, current=2), "iclamp0") +decor.place('"root"', arbor.iclamp(30, 1, current=2), "iclamp1") +decor.place('"root"', arbor.iclamp(50, 1, current=2), "iclamp2") +decor.place('"axon_terminal"', arbor.spike_detector(-10), "detector") +# Set discretisation: Soma as one CV, 1um everywhere else +decor.discretization('(replace (single (region "soma")) (max-extent 1.0))') # (4) Create the cell. @@ -90,9 +75,9 @@ # (6) Set the model default properties -model.properties.set_property(Vm =-65, tempK=300, rL=35.4, cm=0.01) -model.properties.set_ion('na', int_con=10, ext_con=140, rev_pot=50, method='nernst/na') -model.properties.set_ion('k', int_con=54.4, ext_con=2.5, rev_pot=-77) +model.properties.set_property(Vm=-65, tempK=300, rL=35.4, cm=0.01) +model.properties.set_ion("na", int_con=10, ext_con=140, rev_pot=50, method="nernst/na") +model.properties.set_ion("k", int_con=54.4, ext_con=2.5, rev_pot=-77) # Extend the default catalogue with the Allen catalogue. # The function takes a second string parameter that can prefix @@ -104,7 +89,7 @@ # Add voltage probes on the "custom_terminal" locset # which sample the voltage at 50 kHz -model.probe('voltage', where='"custom_terminal"', frequency=50) +model.probe("voltage", where='"custom_terminal"', frequency=50) # (8) Run the simulation for 100 ms, with a dt of 0.025 ms @@ -112,7 +97,7 @@ # (9) Print the spikes. -print(len(model.spikes), 'spikes recorded:') +print(len(model.spikes), "spikes recorded:") for s in model.spikes: print(s) @@ -120,6 +105,17 @@ df_list = [] for t in model.traces: - df_list.append(pandas.DataFrame({'t/ms': t.time, 'U/mV': t.value, 'Location': str(t.location), 'Variable': t.variable})) -df = pandas.concat(df_list,ignore_index=True) -seaborn.relplot(data=df, kind="line", x="t/ms", y="U/mV",hue="Location",col="Variable",ci=None).savefig('single_cell_detailed_result.svg') + df_list.append( + pandas.DataFrame( + { + "t/ms": t.time, + "U/mV": t.value, + "Location": str(t.location), + "Variable": t.variable, + } + ) + ) +df = pandas.concat(df_list, ignore_index=True) +seaborn.relplot( + data=df, kind="line", x="t/ms", y="U/mV", hue="Location", col="Variable", ci=None +).savefig("single_cell_detailed_result.svg") diff --git a/python/example/single_cell_detailed_recipe.py b/python/example/single_cell_detailed_recipe.py index 000b6bb30a..4443b9f3ac 100644 --- a/python/example/single_cell_detailed_recipe.py +++ b/python/example/single_cell_detailed_recipe.py @@ -21,148 +21,113 @@ # (2) Create and populate the label dictionary. -labels = arbor.label_dict() - -# Regions: - -# Add labels for tag 1, 2, 3, 4 -labels['soma'] = '(tag 1)' -labels['axon'] = '(tag 2)' -labels['dend'] = '(tag 3)' -labels['last'] = '(tag 4)' -# Add a label for a region that includes the whole morphology -labels['all'] = '(all)' -# Add a label for the parts of the morphology with radius greater than 1.5 μm. -labels['gt_1.5'] = '(radius-ge (region "all") 1.5)' -# Join regions "last" and "gt_1.5" -labels['custom'] = '(join (region "last") (region "gt_1.5"))' - -# Locsets: - -# Add a labels for the root of the morphology and all the terminal points -labels['root'] = '(root)' -labels['terminal'] = '(terminal)' -# Add a label for the terminal locations in the "custom" region: -labels['custom_terminal'] = '(restrict (locset "terminal") (region "custom"))' -# Add a label for the terminal locations in the "axon" region: -labels['axon_terminal'] = '(restrict (locset "terminal") (region "axon"))' +labels = arbor.label_dict( + { + # Regions: + # Add a label for a region that includes the whole morphology + "all": "(all)", + # Add a label for the parts of the morphology with radius greater than 1.5 μm. + "gt_1.5": '(radius-ge (region "all") 1.5)', + # Join regions "apic" and "gt_1.5" + "custom": '(join (region "apic") (region "gt_1.5"))', + # Locsets: + # Add a labels for the root of the morphology and all the terminal points + "root": "(root)", + "terminal": "(terminal)", + # Add a label for the terminal locations in the "custom" region: + "custom_terminal": '(restrict (locset "terminal") (region "custom"))', + # Add a label for the terminal locations in the "axon" region: + "axon_terminal": '(restrict (locset "terminal") (region "axon"))', + } +).add_swc_tags() # Add SWC pre-defined regions # (3) Create and populate the decor. -decor = arbor.decor() - -# Set the default properties of the cell (this overrides the model defaults). -decor.set_property(Vm =-55) -decor.set_ion('na', int_con=10, ext_con=140, rev_pot=50, method='nernst/na') -decor.set_ion('k', int_con=54.4, ext_con=2.5, rev_pot=-77) - -# Override the cell defaults. -decor.paint('"custom"', tempK=270) -decor.paint('"soma"', Vm=-50) - -# Paint density mechanisms. -decor.paint('"all"', density('pas')) -decor.paint('"custom"', density('hh')) -decor.paint('"dend"', density('Ih', {'gbar': 0.001})) - -# Place stimuli and spike detectors. -decor.place('"root"', arbor.iclamp(10, 1, current=2), 'iclamp0') -decor.place('"root"', arbor.iclamp(30, 1, current=2), 'iclamp1') -decor.place('"root"', arbor.iclamp(50, 1, current=2), 'iclamp2') -decor.place('"axon_terminal"', arbor.spike_detector(-10), 'detector') - -# Single CV for the "soma" region -soma_policy = arbor.cv_policy_single('"soma"') -# Single CV for the "soma" region -dflt_policy = arbor.cv_policy_max_extent(1.0) -# default policy everywhere except the soma -policy = dflt_policy | soma_policy -# Set cv_policy -decor.discretization(policy) +decor = ( + arbor.decor() + # Set the default properties of the cell (this overrides the model defaults). + .set_property(Vm=-55) + .set_ion("na", int_con=10, ext_con=140, rev_pot=50, method="nernst/na") + .set_ion("k", int_con=54.4, ext_con=2.5, rev_pot=-77) + # Override the cell defaults. + .paint('"custom"', tempK=270) + .paint('"soma"', Vm=-50) + # Paint density mechanisms. + .paint('"all"', density("pas")) + .paint('"custom"', density("hh")) + .paint('"dend"', density("Ih", {"gbar": 0.001})) + # Place stimuli and spike detectors. + .place('"root"', arbor.iclamp(10, 1, current=2), "iclamp0") + .place('"root"', arbor.iclamp(30, 1, current=2), "iclamp1") + .place('"root"', arbor.iclamp(50, 1, current=2), "iclamp2") + .place('"axon_terminal"', arbor.spike_detector(-10), "detector") + # Set discretisation: Soma as one CV, 1um everywhere else + .discretization('(replace (single (region "soma")) (max-extent 1.0))') +) + # (4) Create the cell. cell = arbor.cable_cell(morph, labels, decor) -# (5) Declare a probe. - -probe = arbor.cable_probe_membrane_voltage('"custom_terminal"') -# (6) Create a class that inherits from arbor.recipe -class single_recipe (arbor.recipe): +# (5) Create a class that inherits from arbor.recipe +class single_recipe(arbor.recipe): - # (6.1) Define the class constructor - def __init__(self, cell, probes): + # (5.1) Define the class constructor + def __init__(self): # The base C++ class constructor must be called first, to ensure that # all memory in the C++ class is initialized correctly. arbor.recipe.__init__(self) - self.the_cell = cell - self.the_probes = probes self.the_props = arbor.cable_global_properties() self.the_props.set_property(Vm=-65, tempK=300, rL=35.4, cm=0.01) - self.the_props.set_ion(ion='na', int_con=10, ext_con=140, rev_pot=50, method='nernst/na') - self.the_props.set_ion(ion='k', int_con=54.4, ext_con=2.5, rev_pot=-77) - self.the_props.set_ion(ion='ca', int_con=5e-5, ext_con=2, rev_pot=132.5) + self.the_props.set_ion( + ion="na", int_con=10, ext_con=140, rev_pot=50, method="nernst/na" + ) + self.the_props.set_ion(ion="k", int_con=54.4, ext_con=2.5, rev_pot=-77) + self.the_props.set_ion(ion="ca", int_con=5e-5, ext_con=2, rev_pot=132.5) self.the_props.catalogue.extend(arbor.allen_catalogue(), "") - # (6.2) Override the num_cells method + # (5.2) Override the num_cells method def num_cells(self): return 1 - # (6.3) Override the num_targets method + # (5.3) Override the cell_kind method def cell_kind(self, gid): return arbor.cell_kind.cable - # (6.4) Override the cell_description method + # (5.4) Override the cell_description method def cell_description(self, gid): - return self.the_cell + return cell - # (6.5) Override the probes method + # (5.5) Override the probes method def probes(self, gid): - return self.the_probes - - # (6.6) Override the connections_on method - def connections_on(self, gid): - return [] - - # (6.7) Override the gap_junction_on method - def gap_junction_on(self, gid): - return [] + return [arbor.cable_probe_membrane_voltage('"custom_terminal"')] - # (6.8) Override the event_generators method - def event_generators(self, gid): - return [] - - # (6.9) Overrode the global_properties method + # (5.6) Override the global_properties method def global_properties(self, gid): return self.the_props -# Instantiate recipe -# Pass the probe in a list because that it what single_recipe expects. -recipe = single_recipe(cell, [probe]) - -# (4) Create an execution context -context = arbor.context() -# (5) Create a domain decomposition -domains = arbor.partition_load_balance(recipe, context) +# Instantiate recipe +recipe = single_recipe() # (6) Create a simulation -sim = arbor.simulation(recipe, domains, context) +sim = arbor.simulation(recipe) # Instruct the simulation to record the spikes and sample the probe sim.record(arbor.spike_recording.all) -probe_id = arbor.cell_member(0,0) -handle = sim.sample(probe_id, arbor.regular_schedule(0.02)) +probeset_id = arbor.cell_member(0, 0) +handle = sim.sample(probeset_id, arbor.regular_schedule(0.02)) # (7) Run the simulation sim.run(tfinal=100, dt=0.025) # (8) Print or display the results spikes = sim.spikes() -print(len(spikes), 'spikes recorded:') +print(len(spikes), "spikes recorded:") for s in spikes: print(s) @@ -174,6 +139,17 @@ def global_properties(self, gid): df_list = [] for i in range(len(data)): - df_list.append(pandas.DataFrame({'t/ms': data[i][:, 0], 'U/mV': data[i][:, 1], 'Location': str(meta[i]), 'Variable':'voltage'})) -df = pandas.concat(df_list,ignore_index=True) -seaborn.relplot(data=df, kind="line", x="t/ms", y="U/mV",hue="Location",col="Variable",ci=None).savefig('single_cell_recipe_result.svg') + df_list.append( + pandas.DataFrame( + { + "t/ms": data[i][:, 0], + "U/mV": data[i][:, 1], + "Location": str(meta[i]), + "Variable": "voltage", + } + ) + ) +df = pandas.concat(df_list, ignore_index=True) +seaborn.relplot( + data=df, kind="line", x="t/ms", y="U/mV", hue="Location", col="Variable", ci=None +).savefig("single_cell_recipe_result.svg") diff --git a/python/example/single_cell_extracellular_potentials.py b/python/example/single_cell_extracellular_potentials.py deleted file mode 100644 index adf94ed3c8..0000000000 --- a/python/example/single_cell_extracellular_potentials.py +++ /dev/null @@ -1,342 +0,0 @@ -#!/usr/bin/env python -# coding: utf-8 - -# Example utilizing the **`LFPykit`** module (https://lfpykit.readthedocs.io, -# https://github.com/LFPy/LFPykit) for predictions of extracellular -# potentials using the line source approximation implementation -# `LineSourcePotential` with a passive neuron model set up in Arbor -# (https://arbor.readthedocs.io, https://github.com/arbor-sim/arbor). -# -# The neuron receives sinusoid synaptic current input in one arbitrary -# chosen control volume (CV). -# Its morphology is defined in the file `single_cell_detailed.swc` - -# import modules -import sys -import numpy as np -import arbor -import lfpykit -import matplotlib.pyplot as plt -from matplotlib.gridspec import GridSpec -from matplotlib.collections import PolyCollection -import pandas as pd - - -class Recipe (arbor.recipe): - def __init__(self, cell): - super().__init__() - - self.the_cell = cell - - self.vprobe_id = (0, 0) - self.iprobe_id = (0, 1) - self.cprobe_id = (0, 2) - - self.the_props = arbor.neuron_cable_properties() - - def num_cells(self): - return 1 - - def num_sources(self, gid): - return 0 - - def cell_kind(self, gid): - return arbor.cell_kind.cable - - def cell_description(self, gid): - return self.the_cell - - def global_properties(self, kind): - return self.the_props - - def probes(self, gid): - return [ - arbor.cable_probe_membrane_voltage_cell(), - arbor.cable_probe_total_current_cell(), - arbor.cable_probe_stimulus_current_cell() - ] - - -# Read the SWC filename from input -# Example from docs: single_cell_detailed.swc -if len(sys.argv) < 2: - print("No SWC file passed to the program") - sys.exit(0) - -filename = sys.argv[1] - -# define morphology (needed for arbor.place_pwlin) -morphology = arbor.load_swc_arbor(filename) - -# number of CVs per branch -nseg = 3 - -# Label dictionary -defs = {} -labels = arbor.label_dict(defs) - -# decor -decor = arbor.decor() - -# set initial voltage, temperature, axial resistivity, membrane capacitance -decor.set_property( - Vm=-65, # Initial membrane voltage [mV] - tempK=300, # Temperature [Kelvin] - rL=10000, # Axial resistivity [Ω cm] - cm=0.01, # Membrane capacitance [F/m**2] -) - -# set passive mechanism all over -# passive mech w. leak reversal potential (mV) -pas = arbor.mechanism('pas/e=-65') -pas.set('g', 0.0001) # leak conductivity (S/cm2) -decor.paint('(all)', arbor.density(pas)) - -# set sinusoid input current at mid point of terminating CV (segment) -iclamp = arbor.iclamp(5, # stimulation onset (ms) - 1E8, # stimulation duration (ms) - -0.001, # stimulation amplitude (nA) - frequency=0.1, # stimulation frequency (kHz) - phase=0) # stimulation phase) -try: - # arbor >= 0.5.2 fix - decor.place('(location 4 0.16667)', iclamp, '"iclamp"') -except TypeError: - decor.place('(location 4 0.16667)', iclamp) - -# number of CVs per branch -policy = arbor.cv_policy_fixed_per_branch(nseg) -decor.discretization(policy) - -# create cell and set properties -cell = arbor.cable_cell(morphology, labels, decor) - -# create single cell model -model = arbor.single_cell_model(cell) - -# instantiate recipe with cell -recipe = Recipe(cell) - -# instantiate simulation -context = arbor.context() -domains = arbor.partition_load_balance(recipe, context) -sim = arbor.simulation(recipe, domains, context) - -# set up sampling on probes -schedule = arbor.regular_schedule(0.1) -v_handle = sim.sample(recipe.vprobe_id, schedule, arbor.sampling_policy.exact) -i_handle = sim.sample(recipe.iprobe_id, schedule, arbor.sampling_policy.exact) -c_handle = sim.sample(recipe.cprobe_id, schedule, arbor.sampling_policy.exact) - -# run simulation for 500 ms of simulated activity and collect results. -sim.run(tfinal=500) - -# extract time, V_m and I_m for each compartment -V_m_samples, V_m_meta = sim.samples(v_handle)[0] -I_m_samples, I_m_meta = sim.samples(i_handle)[0] -I_c_samples, I_c_meta = sim.samples(c_handle)[0] - - -# drop recorded V_m values and corresponding meta data of -# zero-sized CVs (branch-point potentials) -inds = np.array([m.dist != m.prox for m in V_m_meta]) -V_m_samples = V_m_samples[:, np.r_[True, inds]] -V_m_meta = np.array(V_m_meta)[inds].tolist() - - -# note: the cables comprising the metadata for each probe -# should be the same, as well as the reported sample times. -assert V_m_meta == I_m_meta -assert (V_m_samples[:, 0] == I_m_samples[:, 0]).all() - -# prep recorded data for plotting -time = V_m_samples[:, 0] -V_m = V_m_samples[:, 1:].T -I_m = I_m_samples[:, 1:].T -I_c = I_c_samples[:, 1:].T - - -# gather geometry of CVs and assign segments to each CV -p = arbor.place_pwlin(morphology) -x, y, z, d = [np.array([], dtype=float).reshape((0, 2))] * 4 -CV_ind = np.array([], dtype=int) # tracks which CV owns segment -for i, m in enumerate(I_m_meta): - segs = p.segments([m]) - for j, seg in enumerate(segs): - x = np.row_stack([x, [seg.prox.x, seg.dist.x]]) - y = np.row_stack([y, [seg.prox.y, seg.dist.y]]) - z = np.row_stack([z, [seg.prox.z, seg.dist.z]]) - d = np.row_stack([d, [seg.prox.radius * 2, seg.dist.radius * 2]]) - CV_ind = np.r_[CV_ind, i] - - -############################################################################### -# compute extracellular potential using segment information -############################################################################### -cell_geometry = lfpykit.CellGeometry( - x=x, - y=y, - z=z, - d=d -) - -# membrane voltages, transmemrbane current and corresponding times -cell_geometry.V_m = V_m # mV -# nA, sum stimulation and transmembrane current to mimic sinusoid synapse -cell_geometry.I_m = I_m + I_c -cell_geometry.time = time # ms - -# locations where extracellular potential is predicted -dx = 1 -dz = 1 -axis = np.round([x.min() - 10, x.max() + 10, y.min() - 10, y.max() + 10]) -# axis = np.round(axis) -X, Y = np.meshgrid(np.linspace(axis[0], axis[1], int(np.diff(axis[:2]) // dx) + 1), - np.linspace(axis[2], axis[3], int(np.diff(axis[2:]) // dz) + 1)) -Z = np.zeros_like(X) - -# LineSourcePotential object, get mapping for all segments per CV -lsp = lfpykit.LineSourcePotential(cell=cell_geometry, - x=X.flatten(), - y=Y.flatten(), - z=Z.flatten()) -M_tmp = lsp.get_transformation_matrix() - -# Define response matrix from M with columns weighted by area of each frusta -M = np.zeros((lsp.x.size, I_m.shape[0])) -for i in range(I_m.shape[0]): - inds = CV_ind == i - M[:, i] = M_tmp[:, inds] @ (cell_geometry.area[inds] / - cell_geometry.area[inds].sum()) - -# Extracellular potential using segment information at last time step -# in x,y-plane coordinates -V_e = M @ cell_geometry.I_m[:, -1] - - -# ## Plotting -# Plot the morphology and extracellular potential prediction -def create_polygon(x, y, d): - """create a outline for each segment defined by 1D arrays `x`, `y`, `d` - in x,y-plane which can be drawn using `plt.Polygon` - - Parameters - ---------- - x: ndarray - y: ndarray - d: ndarray - - Returns - ------- - x, y: nested list - """ - # calculate angles - dx = abs(np.diff(x)) - dy = np.diff(y) - theta = np.arctan2(dy, dx) - - x = np.r_[x, x[::-1]] - y = np.r_[y, y[::-1]] - - theta = np.r_[theta, theta[::-1]] - d = np.r_[d, d[::-1]] - - # 1st corner: - x[0] -= 0.5 * d[0] * np.sin(theta[0]) - y[0] += 0.5 * d[0] * np.cos(theta[0]) - - # points between start and end of section, first side - x[1:dx.size] -= 0.25 * d[1:dx.size] * ( - np.sin(theta[:dx.size - 1]) + np.sin(theta[1:dx.size])) - y[1:dy.size] += 0.25 * d[1:dy.size] * ( - np.cos(theta[:dy.size - 1]) + np.cos(theta[1:dx.size])) - - # end of section, first side - x[dx.size] -= 0.5 * d[dx.size] * np.sin(theta[dx.size]) - y[dy.size] += 0.5 * d[dy.size] * np.cos(theta[dy.size]) - - # end of section, second side - x[dx.size + 1] += 0.5 * d[dx.size + 1] * np.sin(theta[dx.size]) - y[dy.size + 1] -= 0.5 * d[dy.size + 1] * np.cos(theta[dy.size]) - - # points between start and end of section, second side - x[::-1][1:dx.size] += 0.25 * d[::-1][1:dx.size] * ( - np.sin(theta[::-1][:dx.size - 1]) + np.sin(theta[::-1][1:dx.size])) - y[::-1][1:dy.size] -= 0.25 * d[::-1][1:dy.size] * ( - np.cos(theta[::-1][:dy.size - 1]) + np.cos(theta[::-1][1:dx.size])) - - # last corner: - x[-1] += 0.5 * d[-1] * np.sin(theta[-1]) - y[-1] -= 0.5 * d[-1] * np.cos(theta[-1]) - - return list(zip(x, y)) - - -def colorbar(fig, ax, im, - width=0.01, - height=1.0, - hoffset=0.01, - voffset=0.0, - orientation='vertical'): - ''' - draw matplotlib colorbar without resizing the axes object - ''' - rect = np.array(ax.get_position().bounds) - rect = np.array(ax.get_position().bounds) - caxrect = [0] * 4 - caxrect[0] = rect[0] + rect[2] + hoffset * rect[2] - caxrect[1] = rect[1] + voffset * rect[3] - caxrect[2] = rect[2] * width - caxrect[3] = rect[3] * height - cax = fig.add_axes(caxrect) - cb = fig.colorbar(im, cax=cax, orientation=orientation) - return cb - - -fig, ax = plt.subplots(1, 1, figsize=(12, 4)) - -# plot pcolormesh plot of V_e -im_V_e = ax.pcolormesh(X, Y, V_e.reshape(X.shape), - shading='auto', cmap='RdBu', - vmin=-abs(V_e).max() / 2, vmax=abs(V_e).max() / 2, - zorder=0) -cb = colorbar(fig, ax, im_V_e, height=0.45, voffset=0.55) -cb.set_label('$V_e$ (mV)') - -# add outline of each CV -norm = plt.Normalize(vmin=-66, vmax=-64) -colors = [plt.cm.viridis(norm(v)) for v in cell_geometry.V_m[:, -1]] -zips = [] -for i in range(I_m.shape[0]): - inds = CV_ind == i - zips.append(create_polygon(x[inds, ].flatten(), - y[inds, ].flatten(), d[inds, ].flatten())) -polycol = PolyCollection(zips, - edgecolors='k', - facecolors=colors, - linewidths=0.5, - zorder=2) -im_V_m = ax.add_collection(polycol) - -cb2 = colorbar(fig, ax, im_V_m, height=0.45) -cb2.set_ticks([0, 0.5, 1]) -cb2.set_ticklabels([-66, -65, -64]) -cb2.set_label(r'$V_m$ (mV)') - -ax.set_xlim(X.min(), X.max()) -ax.set_ylim(Y.min(), Y.max()) -ax.set_xlabel(r'$x$ ($\mu$m)') -ax.set_ylabel(r'$y$ ($\mu$m)') - -fig.savefig('single_cell_extracellular_potentials.svg', bbox_inches='tight') - -# ## Notes on output: -# The spatial discretization is here deliberately coarse with only 3 CVs per branch. -# Hence the branch receiving input about 1/6 of the way from its root -# (from `decor.place('(location 4 0.16667)', iclamp)`) is treated -# as 3 separate line sources with homogeneous current density per length unit each, even if -# the diameter and direction varies with position due to the fact -# that each CV may be composed of multiple segments. -# -# The parameter `nseg = 3` above can be changed above to affect the number -# of CVs per branch. diff --git a/python/example/single_cell_model.py b/python/example/single_cell_model.py index 2410971bad..28d52b1c42 100755 --- a/python/example/single_cell_model.py +++ b/python/example/single_cell_model.py @@ -2,22 +2,25 @@ # This script is included in documentation. Adapt line numbers if touched. import arbor -import pandas, seaborn # You may have to pip install these. +import pandas # You may have to pip install these. +import seaborn # You may have to pip install these. # (1) Create a morphology with a single (cylindrical) segment of length=diameter=6 μm tree = arbor.segment_tree() tree.append(arbor.mnpos, arbor.mpoint(-3, 0, 0, 3), arbor.mpoint(3, 0, 0, 3), tag=1) # (2) Define the soma and its midpoint -labels = arbor.label_dict({'soma': '(tag 1)', - 'midpoint': '(location 0 0.5)'}) +labels = arbor.label_dict({"soma": "(tag 1)", "midpoint": "(location 0 0.5)"}) # (3) Create and set up a decor object -decor = arbor.decor() -decor.set_property(Vm=-40) -decor.paint('"soma"', arbor.density('hh')) -decor.place('"midpoint"', arbor.iclamp( 10, 2, 0.8), "iclamp") -decor.place('"midpoint"', arbor.spike_detector(-10), "detector") + +decor = ( + arbor.decor() + .set_property(Vm=-40) + .paint('"soma"', arbor.density("hh")) + .place('"midpoint"', arbor.iclamp(10, 2, 0.8), "iclamp") + .place('"midpoint"', arbor.spike_detector(-10), "detector") +) # (4) Create cell and the single cell model based on it cell = arbor.cable_cell(tree, labels, decor) @@ -26,24 +29,26 @@ m = arbor.single_cell_model(cell) # (6) Attach voltage probe sampling at 10 kHz (every 0.1 ms). -m.probe('voltage', '"midpoint"', frequency=10) +m.probe("voltage", '"midpoint"', frequency=10) # (7) Run simulation for 30 ms of simulated activity. m.run(tfinal=30) # (8) Print spike times. -if len(m.spikes)>0: - print('{} spikes:'.format(len(m.spikes))) +if len(m.spikes) > 0: + print("{} spikes:".format(len(m.spikes))) for s in m.spikes: - print('{:3.3f}'.format(s)) + print("{:3.3f}".format(s)) else: - print('no spikes') + print("no spikes") # (9) Plot the recorded voltages over time. print("Plotting results ...") -seaborn.set_theme() # Apply some styling to the plot -df = pandas.DataFrame({'t/ms': m.traces[0].time, 'U/mV': m.traces[0].value}) -seaborn.relplot(data=df, kind="line", x="t/ms", y="U/mV",ci=None).savefig('single_cell_model_result.svg') +seaborn.set_theme() # Apply some styling to the plot +df = pandas.DataFrame({"t/ms": m.traces[0].time, "U/mV": m.traces[0].value}) +seaborn.relplot(data=df, kind="line", x="t/ms", y="U/mV", ci=None).savefig( + "single_cell_model_result.svg" +) # (10) Optionally, you can store your results for later processing. -df.to_csv('single_cell_model_result.csv', float_format='%g') +df.to_csv("single_cell_model_result.csv", float_format="%g") diff --git a/python/example/single_cell_nml.py b/python/example/single_cell_nml.py index d4f573133f..7e0f63fec8 100755 --- a/python/example/single_cell_nml.py +++ b/python/example/single_cell_nml.py @@ -1,8 +1,8 @@ #!/usr/bin/env python3 import arbor from arbor import mechanism as mech -from arbor import location as loc -import pandas, seaborn +import pandas +import seaborn import sys # Load a cell morphology from an nml file. @@ -27,49 +27,46 @@ morpho_named = morpho_data.named_segments() morpho_groups = morpho_data.groups() -# Create new label dict add to it all the NeuroML dictionaries. -labels = arbor.label_dict() +# Create new label dict with some locsets. +labels = arbor.label_dict( + { + "stim_site": "(location 1 0.5)", # site for the stimulus, in the middle of branch 1. + "axon_end": '(restrict (terminal) (region "axon"))', # end of the axon. + "root": "(root)", # the start of the soma in this morphology is at the root of the cell. + } +) +# Add to it all the NeuroML dictionaries. labels.append(morpho_segments) labels.append(morpho_named) labels.append(morpho_groups) -# Add locsets to the label dictionary. -labels['stim_site'] = '(location 1 0.5)' # site for the stimulus, in the middle of branch 1. -labels['axon_end'] = '(restrict (terminal) (region "axon"))' # end of the axon. -labels['root'] = '(root)' # the start of the soma in this morphology is at the root of the cell. - # Optional: print out the regions and locsets available in the label dictionary. print("Label dictionary regions: ", labels.regions, "\n") print("Label dictionary locsets: ", labels.locsets, "\n") -decor = arbor.decor() - -# Set initial membrane potential to -55 mV -decor.set_property(Vm=-55) -# Use Nernst to calculate reversal potential for calcium. -decor.set_ion('ca', method=mech('nernst/x=ca')) -#decor.set_ion('ca', method='nernst/x=ca') -# hh mechanism on the soma and axon. -decor.paint('"soma"', arbor.density('hh')) -decor.paint('"axon"', arbor.density('hh')) -# pas mechanism the dendrites. -decor.paint('"dend"', arbor.density('pas')) -# Increase resistivity on dendrites. -decor.paint('"dend"', rL=500) -# Attach stimuli that inject 4 nA current for 1 ms, starting at 3 and 8 ms. -decor.place('"root"', arbor.iclamp(10, 1, current=5), "iclamp0") -decor.place('"stim_site"', arbor.iclamp(3, 1, current=0.5), "iclamp1") -decor.place('"stim_site"', arbor.iclamp(10, 1, current=0.5), "iclamp2") -decor.place('"stim_site"', arbor.iclamp(8, 1, current=4), "iclamp3") -# Detect spikes at the soma with a voltage threshold of -10 mV. -decor.place('"axon_end"', arbor.spike_detector(-10), "detector") - -# Create the policy used to discretise the cell into CVs. -# Use a single CV for the soma, and CVs of maximum length 1 μm elsewhere. -soma_policy = arbor.cv_policy_single('"soma"') -dflt_policy = arbor.cv_policy_max_extent(1.0) -policy = dflt_policy | soma_policy -decor.discretization(policy) +decor = ( + arbor.decor() + # Set initial membrane potential to -55 mV + .set_property(Vm=-55) + # Use Nernst to calculate reversal potential for calcium. + .set_ion("ca", method=mech("nernst/x=ca")) + # hh mechanism on the soma and axon. + .paint('"soma"', arbor.density("hh")) + .paint('"axon"', arbor.density("hh")) + # pas mechanism the dendrites. + .paint('"dend"', arbor.density("pas")) + # Increase resistivity on dendrites. + .paint('"dend"', rL=500) + # Attach stimuli that inject 4 nA current for 1 ms, starting at 3 and 8 ms. + .place('"root"', arbor.iclamp(10, 1, current=5), "iclamp0") + .place('"stim_site"', arbor.iclamp(3, 1, current=0.5), "iclamp1") + .place('"stim_site"', arbor.iclamp(10, 1, current=0.5), "iclamp2") + .place('"stim_site"', arbor.iclamp(8, 1, current=4), "iclamp3") + # Detect spikes at the soma with a voltage threshold of -10 mV. + .place('"axon_end"', arbor.spike_detector(-10), "detector") + # Set discretisation: Soma as one CV, 1um everywhere else + .discretization('(replace (single (region "soma")) (max-extent 1.0))') +) # Combine morphology with region and locset definitions to make a cable cell. cell = arbor.cable_cell(morpho, labels, decor) @@ -80,29 +77,40 @@ m = arbor.single_cell_model(cell) # Attach voltage probes that sample at 50 kHz. -m.probe('voltage', where='"root"', frequency=50) -m.probe('voltage', where='"stim_site"', frequency=50) -m.probe('voltage', where='"axon_end"', frequency=50) +m.probe("voltage", where='"root"', frequency=50) +m.probe("voltage", where='"stim_site"', frequency=50) +m.probe("voltage", where='"axon_end"', frequency=50) # Simulate the cell for 15 ms. -tfinal=15 +tfinal = 15 m.run(tfinal) print("Simulation done.") # Print spike times. -if len(m.spikes)>0: - print('{} spikes:'.format(len(m.spikes))) +if len(m.spikes) > 0: + print("{} spikes:".format(len(m.spikes))) for s in m.spikes: - print(' {:7.4f}'.format(s)) + print(" {:7.4f}".format(s)) else: - print('no spikes') + print("no spikes") # Plot the recorded voltages over time. print("Plotting results ...") df_list = [] for t in m.traces: - df_list.append(pandas.DataFrame({'t/ms': t.time, 'U/mV': t.value, 'Location': str(t.location), "Variable": t.variable})) - -df = pandas.concat(df_list,ignore_index=True) - -seaborn.relplot(data=df, kind="line", x="t/ms", y="U/mV",hue="Location",col="Variable",ci=None).savefig('single_cell_nml.svg') + df_list.append( + pandas.DataFrame( + { + "t/ms": t.time, + "U/mV": t.value, + "Location": str(t.location), + "Variable": t.variable, + } + ) + ) + +df = pandas.concat(df_list, ignore_index=True) + +seaborn.relplot( + data=df, kind="line", x="t/ms", y="U/mV", hue="Location", col="Variable", ci=None +).savefig("single_cell_nml.svg") diff --git a/python/example/single_cell_recipe.py b/python/example/single_cell_recipe.py index ade3cea46b..315d0a088c 100644 --- a/python/example/single_cell_recipe.py +++ b/python/example/single_cell_recipe.py @@ -2,72 +2,77 @@ # This script is included in documentation. Adapt line numbers if touched. import arbor -import pandas, seaborn # You may have to pip install these. +import pandas # You may have to pip install these. +import seaborn # You may have to pip install these. # The corresponding generic recipe version of `single_cell_model.py`. # (1) Create a morphology with a single (cylindrical) segment of length=diameter=6 μm + tree = arbor.segment_tree() tree.append(arbor.mnpos, arbor.mpoint(-3, 0, 0, 3), arbor.mpoint(3, 0, 0, 3), tag=1) # (2) Define the soma and its midpoint -labels = arbor.label_dict({'soma': '(tag 1)', - 'midpoint': '(location 0 0.5)'}) + +labels = arbor.label_dict({"soma": "(tag 1)", "midpoint": "(location 0 0.5)"}) # (3) Create cell and set properties -decor = arbor.decor() -decor.set_property(Vm=-40) -decor.paint('"soma"', arbor.density('hh')) -decor.place('"midpoint"', arbor.iclamp( 10, 2, 0.8), "iclamp") -decor.place('"midpoint"', arbor.spike_detector(-10), "detector") + +decor = ( + arbor.decor() + .set_property(Vm=-40) + .paint('"soma"', arbor.density("hh")) + .place('"midpoint"', arbor.iclamp(10, 2, 0.8), "iclamp") + .place('"midpoint"', arbor.spike_detector(-10), "detector") +) + cell = arbor.cable_cell(tree, labels, decor) # (4) Define a recipe for a single cell and set of probes upon it. # This constitutes the corresponding generic recipe version of # `single_cell_model.py`. -class single_recipe (arbor.recipe): - def __init__(self, cell, probes): - # (4.1) The base C++ class constructor must be called first, to ensure that - # all memory in the C++ class is initialized correctly. + +class single_recipe(arbor.recipe): + # (4.1) The base class constructor must be called first, to ensure that + # all memory in the wrapped C++ class is initialized correctly. + def __init__(self): arbor.recipe.__init__(self) - self.the_cell = cell - self.the_probes = probes self.the_props = arbor.neuron_cable_properties() + # (4.2) Override the num_cells method def num_cells(self): - # (4.2) Override the num_cells method return 1 + # (4.3) Override the cell_kind method def cell_kind(self, gid): - # (4.3) Override the cell_kind method return arbor.cell_kind.cable + # (4.4) Override the cell_description method def cell_description(self, gid): - # (4.4) Override the cell_description method - return self.the_cell + return cell + # (4.5) Override the probes method with a voltage probe located on "midpoint" def probes(self, gid): - # (4.5) Override the probes method - return self.the_probes + return [arbor.cable_probe_membrane_voltage('"midpoint"')] + # (4.6) Override the global_properties method def global_properties(self, kind): - # (4.6) Override the global_properties method return self.the_props -# (5) Instantiate recipe with a voltage probe located on "midpoint". -recipe = single_recipe(cell, [arbor.cable_probe_membrane_voltage('"midpoint"')]) +# (5) Instantiate recipe. + +recipe = single_recipe() -# (6) Create a default execution context and a default domain decomposition. +# (6) Create simulation. When their defaults are sufficient, context and domain decomposition don't +# have to be manually specified and the simulation can be created with just the recipe as argument. -context = arbor.context() -domains = arbor.partition_load_balance(recipe, context) +sim = arbor.simulation(recipe) # (7) Create and run simulation and set up 10 kHz (every 0.1 ms) sampling on the probe. -# The probe is located on cell 0, and is the 0th probe on that cell, thus has probe_id (0, 0). +# The probe is located on cell 0, and is the 0th probe on that cell, thus has probeset_id (0, 0). -sim = arbor.simulation(recipe, domains, context) sim.record(arbor.spike_recording.all) handle = sim.sample((0, 0), arbor.regular_schedule(0.1)) sim.run(tfinal=30) @@ -77,16 +82,18 @@ def global_properties(self, kind): spikes = sim.spikes() data, meta = sim.samples(handle)[0] -if len(spikes)>0: - print('{} spikes:'.format(len(spikes))) - for t in spikes['time']: - print('{:3.3f}'.format(t)) +if len(spikes) > 0: + print("{} spikes:".format(len(spikes))) + for t in spikes["time"]: + print("{:3.3f}".format(t)) else: - print('no spikes') + print("no spikes") print("Plotting results ...") -df = pandas.DataFrame({'t/ms': data[:, 0], 'U/mV': data[:, 1]}) -seaborn.relplot(data=df, kind="line", x="t/ms", y="U/mV", ci=None).savefig('single_cell_recipe_result.svg') +df = pandas.DataFrame({"t/ms": data[:, 0], "U/mV": data[:, 1]}) +seaborn.relplot(data=df, kind="line", x="t/ms", y="U/mV", ci=None).savefig( + "single_cell_recipe_result.svg" +) -df.to_csv('single_cell_recipe_result.csv', float_format='%g') +df.to_csv("single_cell_recipe_result.csv", float_format="%g") diff --git a/python/example/single_cell_stdp.py b/python/example/single_cell_stdp.py index 54f4846fac..4330b9c269 100755 --- a/python/example/single_cell_stdp.py +++ b/python/example/single_cell_stdp.py @@ -1,9 +1,9 @@ #!/usr/bin/env python3 import arbor -import numpy -import pandas -import seaborn # You may have to pip install these. +import numpy as np +import pandas as pd +import seaborn as sns # You may have to pip install these. class single_recipe(arbor.recipe): @@ -22,51 +22,55 @@ def cell_kind(self, gid): def cell_description(self, gid): tree = arbor.segment_tree() - tree.append(arbor.mnpos, arbor.mpoint(-3, 0, 0, 3), - arbor.mpoint(3, 0, 0, 3), tag=1) - - labels = arbor.label_dict({'soma': '(tag 1)', - 'center': '(location 0 0.5)'}) - - decor = arbor.decor() - decor.set_property(Vm=-40) - decor.paint('(all)', arbor.density('hh')) - - decor.place('"center"', arbor.spike_detector(-10), "detector") - decor.place('"center"', arbor.synapse('expsyn'), "synapse") - - mech = arbor.mechanism('expsyn_stdp') - mech.set("max_weight", 1.) - syn = arbor.synapse(mech) - - decor.place('"center"', syn, "stpd_synapse") - - cell = arbor.cable_cell(tree, labels, decor) - - return cell + tree.append( + arbor.mnpos, arbor.mpoint(-3, 0, 0, 3), arbor.mpoint(3, 0, 0, 3), tag=1 + ) + + labels = arbor.label_dict({"soma": "(tag 1)", "center": "(location 0 0.5)"}) + + decor = ( + arbor.decor() + .set_property(Vm=-40) + .paint("(all)", arbor.density("hh")) + .place('"center"', arbor.spike_detector(-10), "detector") + .place('"center"', arbor.synapse("expsyn"), "synapse") + .place( + '"center"', + arbor.synapse("expsyn_stdp", {"max_weight": 1.0}), + "stpd_synapse", + ) + ) + + return arbor.cable_cell(tree, labels, decor) def event_generators(self, gid): - """two stimuli: one that makes the cell spike, the other to monitor STDP - """ + """two stimuli: one that makes the cell spike, the other to monitor STDP""" - stimulus_times = numpy.linspace(50, 500, self.n_pairs) + stimulus_times = np.linspace(50, 500, self.n_pairs) # strong enough stimulus - spike = arbor.event_generator("synapse", 1., arbor.explicit_schedule(stimulus_times)) + spike = arbor.event_generator( + "synapse", 1.0, arbor.explicit_schedule(stimulus_times) + ) # zero weight -> just modify synaptic weight via stdp - stdp = arbor.event_generator("stpd_synapse", 0., arbor.explicit_schedule(stimulus_times - self.dT)) + stdp = arbor.event_generator( + "stpd_synapse", 0.0, arbor.explicit_schedule(stimulus_times - self.dT) + ) return [spike, stdp] def probes(self, gid): - return [arbor.cable_probe_membrane_voltage('"center"'), - arbor.cable_probe_point_state(1, "expsyn_stdp", "g"), - arbor.cable_probe_point_state(1, "expsyn_stdp", "apost"), - arbor.cable_probe_point_state(1, "expsyn_stdp", "apre"), - arbor.cable_probe_point_state( - 1, "expsyn_stdp", "weight_plastic") - ] + def mk(w): + return arbor.cable_probe_point_state(1, "expsyn_stdp", w) + + return [ + arbor.cable_probe_membrane_voltage('"center"'), + mk("g"), + mk("apost"), + mk("apre"), + mk("weight_plastic"), + ] def global_properties(self, kind): return self.the_props @@ -75,43 +79,38 @@ def global_properties(self, kind): def run(dT, n_pairs=1, do_plots=False): recipe = single_recipe(dT, n_pairs) - context = arbor.context() - domains = arbor.partition_load_balance(recipe, context) - sim = arbor.simulation(recipe, domains, context) + sim = arbor.simulation(recipe) sim.record(arbor.spike_recording.all) reg_sched = arbor.regular_schedule(0.1) - handle_mem = sim.sample((0, 0), reg_sched) - handle_g = sim.sample((0, 1), reg_sched) - handle_apost = sim.sample((0, 2), reg_sched) - handle_apre = sim.sample((0, 3), reg_sched) - handle_weight_plastic = sim.sample((0, 4), reg_sched) + handles = { + "U": sim.sample((0, 0), reg_sched), + "g": sim.sample((0, 1), reg_sched), + "apost": sim.sample((0, 2), reg_sched), + "apre": sim.sample((0, 3), reg_sched), + "weight_plastic": sim.sample((0, 4), reg_sched), + } sim.run(tfinal=600) if do_plots: print("Plotting detailed results ...") - - for (handle, var) in [(handle_mem, 'U'), - (handle_g, "g"), - (handle_apost, "apost"), - (handle_apre, "apre"), - (handle_weight_plastic, "weight_plastic")]: - + for var, handle in handles.items(): data, meta = sim.samples(handle)[0] - df = pandas.DataFrame({'t/ms': data[:, 0], var: data[:, 1]}) - seaborn.relplot(data=df, kind="line", x="t/ms", y=var, - ci=None).savefig('single_cell_stdp_result_{}.svg'.format(var)) - - weight_plastic, meta = sim.samples(handle_weight_plastic)[0] + df = pd.DataFrame({"t/ms": data[:, 0], var: data[:, 1]}) + sns.relplot(data=df, kind="line", x="t/ms", y=var, ci=None).savefig( + f"single_cell_stdp_result_{var}.svg" + ) + weight_plastic, _ = sim.samples(handles["weight_plastic"])[0] return weight_plastic[:, 1][-1] -data = numpy.array([(dT, run(dT)) for dT in numpy.arange(-20, 20, 0.5)]) -df = pandas.DataFrame({'t/ms': data[:, 0], 'dw': data[:, 1]}) +data = np.array([(dT, run(dT)) for dT in np.arange(-20, 20, 0.5)]) +df = pd.DataFrame({"t/ms": data[:, 0], "dw": data[:, 1]}) print("Plotting results ...") -seaborn.relplot(data=df, x="t/ms", y="dw", kind="line", - ci=None).savefig('single_cell_stdp.svg') +sns.relplot(data=df, x="t/ms", y="dw", kind="line", ci=None).savefig( + "single_cell_stdp.svg" +) diff --git a/python/example/single_cell_swc.py b/python/example/single_cell_swc.py index dbeacbfaf7..aa0e2df74f 100755 --- a/python/example/single_cell_swc.py +++ b/python/example/single_cell_swc.py @@ -11,9 +11,8 @@ # attached to the soma. import arbor -from arbor import mechanism as mech -from arbor import location as loc -import pandas, seaborn +import pandas +import seaborn import sys # Load a cell morphology from an swc file. @@ -26,42 +25,38 @@ morpho = arbor.load_swc_arbor(filename) # Define the regions and locsets in the model. -defs = {'soma': '(tag 1)', # soma has tag 1 in swc files. - 'axon': '(tag 2)', # axon has tag 2 in swc files. - 'dend': '(tag 3)', # dendrites have tag 3 in swc files. - 'root': '(root)', # the start of the soma in this morphology is at the root of the cell. - 'stim_site': '(location 0 0.5)', # site for the stimulus, in the middle of branch 0. - 'axon_end': '(restrict (terminal) (region "axon"))'} # end of the axon. -labels = arbor.label_dict(defs) - -decor = arbor.decor() - -# Set initial membrane potential to -55 mV -decor.set_property(Vm=-55) -# Use Nernst to calculate reversal potential for calcium. -decor.set_ion('ca', method=mech('nernst/x=ca')) -#decor.set_ion('ca', method='nernst/x=ca') -# hh mechanism on the soma and axon. -decor.paint('"soma"', arbor.density('hh')) -decor.paint('"axon"', arbor.density('hh')) -# pas mechanism the dendrites. -decor.paint('"dend"', arbor.density('pas')) -# Increase resistivity on dendrites. -decor.paint('"dend"', rL=500) -# Attach stimuli that inject 4 nA current for 1 ms, starting at 3 and 8 ms. -decor.place('"root"', arbor.iclamp(10, 1, current=5), "iclamp0") -decor.place('"stim_site"', arbor.iclamp(3, 1, current=0.5), "iclamp1") -decor.place('"stim_site"', arbor.iclamp(10, 1, current=0.5), "iclamp2") -decor.place('"stim_site"', arbor.iclamp(8, 1, current=4), "iclamp3") -# Detect spikes at the soma with a voltage threshold of -10 mV. -decor.place('"axon_end"', arbor.spike_detector(-10), "detector") - -# Create the policy used to discretise the cell into CVs. -# Use a single CV for the soma, and CVs of maximum length 1 μm elsewhere. -soma_policy = arbor.cv_policy_single('"soma"') -dflt_policy = arbor.cv_policy_max_extent(1.0) -policy = dflt_policy | soma_policy -decor.discretization(policy) +labels = arbor.label_dict( + { + "root": "(root)", # the start of the soma in this morphology is at the root of the cell. + "stim_site": "(location 0 0.5)", # site for the stimulus, in the middle of branch 0. + "axon_end": '(restrict (terminal) (region "axon"))', + } # end of the axon. +).add_swc_tags() # Finally, add the SWC default labels. + +decor = ( + arbor.decor() + # Set initial membrane potential to -55 mV + .set_property(Vm=-55) + # Use Nernst to calculate reversal potential for calcium. + .set_ion("ca", method=arbor.mechanism("nernst/x=ca")) + # hh mechanism on the soma and axon. + .paint('"soma"', arbor.density("hh")) + .paint('"axon"', arbor.density("hh")) + # pas mechanism the dendrites. + .paint('"dend"', arbor.density("pas")) + # Increase resistivity on dendrites. + .paint('"dend"', rL=500) + # Attach stimuli that inject 4 nA current for 1 ms, starting at 3 and 8 ms. + .place('"root"', arbor.iclamp(10, 1, current=5), "iclamp0") + .place('"stim_site"', arbor.iclamp(3, 1, current=0.5), "iclamp1") + .place('"stim_site"', arbor.iclamp(10, 1, current=0.5), "iclamp2") + .place('"stim_site"', arbor.iclamp(8, 1, current=4), "iclamp3") + # Detect spikes at the soma with a voltage threshold of -10 mV. + .place('"axon_end"', arbor.spike_detector(-10), "detector") + # Create the policy used to discretise the cell into CVs. + # Use a single CV for the soma, and CVs of maximum length 1 μm elsewhere. + .discretization('(replace (single (region "soma")) (max-extent 1.0))') +) # Combine morphology with region and locset definitions to make a cable cell. cell = arbor.cable_cell(morpho, labels, decor) @@ -72,29 +67,40 @@ m = arbor.single_cell_model(cell) # Attach voltage probes that sample at 50 kHz. -m.probe('voltage', where='"root"', frequency=50) -m.probe('voltage', where='"stim_site"', frequency=50) -m.probe('voltage', where='"axon_end"', frequency=50) +m.probe("voltage", where='"root"', frequency=50) +m.probe("voltage", where='"stim_site"', frequency=50) +m.probe("voltage", where='"axon_end"', frequency=50) # Simulate the cell for 15 ms. -tfinal=15 +tfinal = 15 m.run(tfinal) print("Simulation done.") # Print spike times. -if len(m.spikes)>0: - print('{} spikes:'.format(len(m.spikes))) +if len(m.spikes) > 0: + print("{} spikes:".format(len(m.spikes))) for s in m.spikes: - print(' {:7.4f}'.format(s)) + print(" {:7.4f}".format(s)) else: - print('no spikes') + print("no spikes") # Plot the recorded voltages over time. print("Plotting results ...") df_list = [] for t in m.traces: - df_list.append(pandas.DataFrame({'t/ms': t.time, 'U/mV': t.value, 'Location': str(t.location), "Variable": t.variable})) - -df = pandas.concat(df_list,ignore_index=True) - -seaborn.relplot(data=df, kind="line", x="t/ms", y="U/mV",hue="Location",col="Variable",ci=None).savefig('single_cell_swc.svg') + df_list.append( + pandas.DataFrame( + { + "t/ms": t.time, + "U/mV": t.value, + "Location": str(t.location), + "Variable": t.variable, + } + ) + ) + +df = pandas.concat(df_list, ignore_index=True) + +seaborn.relplot( + data=df, kind="line", x="t/ms", y="U/mV", hue="Location", col="Variable", ci=None +).savefig("single_cell_swc.svg") diff --git a/python/identifiers.cpp b/python/identifiers.cpp index 71e583a624..d34dd332d2 100644 --- a/python/identifiers.cpp +++ b/python/identifiers.cpp @@ -18,7 +18,9 @@ void register_identifiers(py::module& m) { py::enum_(m, "selection_policy", "Enumeration used to identify a selection policy, used by the model for selecting one of possibly multiple locations on the cell associated with a labeled item.") .value("round_robin", arb::lid_selection_policy::round_robin, - "iterate round-robin over all possible locations.") + "Iterate round-robin over all possible locations.") + .value("round_robin_halt", arb::lid_selection_policy::round_robin_halt, + "Halts at the current location until the round_robin policy is called (again).") .value("univalent", arb::lid_selection_policy::assert_univalent, "Assert that there is only one possible location associated with a labeled item on the cell. The model throws an exception if the assertion fails."); diff --git a/python/mechanism.cpp b/python/mechanism.cpp index a774cad46c..a5ee801fc4 100644 --- a/python/mechanism.cpp +++ b/python/mechanism.cpp @@ -11,6 +11,7 @@ #include "arbor/mechinfo.hpp" +#include "util.hpp" #include "conversion.hpp" #include "strprintf.hpp" @@ -100,7 +101,7 @@ void register_mechanisms(pybind11::module& m) { "True if a synapse mechanism has a `POST_EVENT` procedure defined.") .def_property_readonly("kind", [](const arb::mechanism_info& info) { - return arb_mechsnism_kind_str(info.kind); + return arb_mechanism_kind_str(info.kind); }, "String representation of the kind of the mechanism.") .def("__repr__", [](const arb::mechanism_info& inf) { @@ -112,7 +113,9 @@ void register_mechanisms(pybind11::module& m) { pybind11::class_ cat(m, "catalogue"); struct mech_cat_iter_state { - mech_cat_iter_state(const arb::mechanism_catalogue &cat_, pybind11::object ref_): names(cat_.mechanism_names()), ref(ref_), cat(cat_) { } + mech_cat_iter_state(const arb::mechanism_catalogue &cat_, pybind11::object ref_): names(cat_.mechanism_names()), ref(ref_), cat(cat_) { + std::sort(names.begin(), names.end()); + } std::vector names; // cache the names else these will be allocated multiple times pybind11::object ref; // keep a reference to cat lest it dies while we iterate const arb::mechanism_catalogue& cat; // to query the C++ object @@ -197,7 +200,7 @@ void register_mechanisms(pybind11::module& m) { m.def("default_catalogue", [](){return arb::global_default_catalogue();}); m.def("allen_catalogue", [](){return arb::global_allen_catalogue();}); m.def("bbp_catalogue", [](){return arb::global_bbp_catalogue();}); - m.def("load_catalogue", [](const std::string& fn){return arb::load_catalogue(fn);}); + m.def("load_catalogue", [](pybind11::object fn) { return arb::load_catalogue(util::to_string(fn)); }); // arb::mechanism_desc // For specifying a mechanism in the cable_cell interface. diff --git a/python/morphology.cpp b/python/morphology.cpp index a5d3fb0d15..52bf43bba5 100644 --- a/python/morphology.cpp +++ b/python/morphology.cpp @@ -1,5 +1,6 @@ #include #include +#include #include #include @@ -20,6 +21,7 @@ #include #endif +#include "util.hpp" #include "error.hpp" #include "proxy.hpp" #include "strprintf.hpp" @@ -244,54 +246,66 @@ void register_morphology(py::module& m) { "A list with the parent index of each segment.") .def_property_readonly("segments", [](const arb::segment_tree& st){return st.segments();}, "A list of the segments.") + .def("apply_isometry", + [](const arb::segment_tree& t, const arb::isometry& i) { return arb::apply(t, i); }, + "Apply an isometry to all segments in the tree.") + .def("split_at", + [](const arb::segment_tree& t, arb::msize_t id) { return arb::split_at(t, id); }, + "Split into a pair of trees at the given id, such that one tree is the subtree rooted at id and the other is the original tree without said subtree.") + .def("join_at", + [](const arb::segment_tree& t, arb::msize_t id, const arb::segment_tree& o) { return arb::join_at(t, id, o); }, + "Join two subtrees at a given id, such that said id becomes the parent of the inserted sub-tree.") + .def("equivalent", + [](const arb::segment_tree& t, const arb::segment_tree& o) { return arb::equivalent(t, o); }, + "Two trees are equivalent, but not neccessarily identical, ie they have the same segments and structure.") .def("__str__", [](const arb::segment_tree& s) { return util::pprintf("", s);}); - // Function that creates a morphology from an swc file. + using morph_or_tree = std::variant; + + // Function that creates a morphology/segment_tree from an swc file. // Wraps calls to C++ functions arborio::parse_swc() and arborio::load_swc_arbor(). m.def("load_swc_arbor", - [](std::string fname) { - std::ifstream fid{fname}; - if (!fid.good()) { - throw pyarb_error(util::pprintf("can't open file '{}'", fname)); - } + [](py::object fn, bool raw) -> morph_or_tree { try { - auto data = arborio::parse_swc(fid); - check_trailing(fid, fname); + auto contents = util::read_file_or_buffer(fn); + auto data = arborio::parse_swc(contents); + if (raw) { + return arborio::load_swc_arbor_raw(data); + } return arborio::load_swc_arbor(data); } catch (arborio::swc_error& e) { // Try to produce helpful error messages for SWC parsing errors. - throw pyarb_error(util::pprintf("error parsing {}: {}", fname, e.what())); + throw pyarb_error(util::pprintf("Arbor SWC: parse error: {}", e.what())); } }, - "filename"_a, - "Generate a morphology from an SWC file following the rules prescribed by Arbor.\n" + "filename_or_stream"_a, + pybind11::arg_v("raw", false, "Return a segment tree instead of a fully formed morphology"), + "Generate a morphology/segment_tree from an SWC file following the rules prescribed by Arbor.\n" "Specifically:\n" - "* Single-segment somas are disallowed.\n" - "* There are no special rules related to somata. They can be one or multiple branches\n" - " and other segments can connect anywhere along them.\n" - "* A segment is always created between a sample and its parent, meaning there\n" - " are no gaps in the resulting morphology."); - + " * Single-segment somas are disallowed.\n" + " * There are no special rules related to somata. They can be one or multiple branches\n" + " and other segments can connect anywhere along them.\n" + " * A segment is always created between a sample and its parent, meaning there\n" + " are no gaps in the resulting morphology."); m.def("load_swc_neuron", - [](std::string fname) { - std::ifstream fid{fname}; - if (!fid.good()) { - throw pyarb_error(util::pprintf("can't open file '{}'", fname)); - } + [](py::object fn, bool raw) -> morph_or_tree { try { - auto data = arborio::parse_swc(fid); - check_trailing(fid, fname); + auto contents = util::read_file_or_buffer(fn); + auto data = arborio::parse_swc(contents); + if (raw) { + return arborio::load_swc_neuron_raw(data); + } return arborio::load_swc_neuron(data); } catch (arborio::swc_error& e) { // Try to produce helpful error messages for SWC parsing errors. - throw pyarb_error( - util::pprintf("NEURON SWC: error parsing {}: {}", fname, e.what())); + throw pyarb_error(util::pprintf("NEURON SWC: parse error: {}", e.what())); } }, - "filename"_a, + "filename_or_stream"_a, + pybind11::arg_v("raw", false, "Return a segment tree instead of a fully formed morphology"), "Generate a morphology from an SWC file following the rules prescribed by NEURON.\n" "See the documentation https://docs.arbor-sim.org/en/latest/fileformat/swc.html\n" "for a detailed description of the interpretation."); @@ -334,15 +348,19 @@ void register_morphology(py::module& m) { asc_morphology .def_readonly("morphology", &arborio::asc_morphology::morphology, - "The cable cell morphology") + "The cable cell morphology.") + .def_readonly("segment_tree", + &arborio::asc_morphology::segment_tree, + "The raw segment tree.") .def_property_readonly("labels", [](const arborio::asc_morphology& m) {return label_dict_proxy(m.labels);}, "The four canonical regions are labeled 'soma', 'axon', 'dend' and 'apic'."); m.def("load_asc", - [](std::string fname) { + [](py::object fn) { try { - return arborio::load_asc(fname); + auto contents = util::read_file_or_buffer(fn); + return arborio::load_asc(contents); } catch (std::exception& e) { // Try to produce helpful error messages for SWC parsing errors. @@ -383,21 +401,17 @@ void register_morphology(py::module& m) { neuroml // constructors .def(py::init( - [](std::string fname) { - std::ifstream fid{fname}; - if (!fid.good()) { - throw pyarb_error(util::pprintf("can't open file '{}'", fname)); - } + [](py::object fn) { try { - std::string string_data((std::istreambuf_iterator(fid)), - std::istreambuf_iterator()); - return arborio::neuroml(string_data); + auto contents = util::read_file_or_buffer(fn); + return arborio::neuroml(contents); } catch (arborio::neuroml_exception& e) { // Try to produce helpful error messages for NeuroML parsing errors. - throw pyarb_error(util::pprintf("NeuroML error processing file {}: {}", fname, e.what())); + throw pyarb_error(util::pprintf("NeuroML error: {}", e.what())); } - })) + }), + "Construct NML morphology from filename or stream.") .def("cell_ids", [](const arborio::neuroml& nml) { try { diff --git a/python/proxy.hpp b/python/proxy.hpp index 65c44757b3..31333e132e 100644 --- a/python/proxy.hpp +++ b/python/proxy.hpp @@ -1,6 +1,7 @@ #pragma once #include +#include #include @@ -9,12 +10,19 @@ #include "strprintf.hpp" namespace pyarb { + +struct iexpr_proxy { + ::arb::iexpr iexpr; + std::string label; +}; + struct label_dict_proxy { using str_map = std::unordered_map; arb::label_dict dict; str_map cache; std::vector locsets; std::vector regions; + std::vector iexpressions; label_dict_proxy() = default; @@ -24,6 +32,14 @@ struct label_dict_proxy { } } + label_dict_proxy& add_swc_tags() { + set("soma", "(tag 1)"); + set("axon", "(tag 2)"); + set("dend", "(tag 3)"); + set("apic", "(tag 4)"); + return *this; + } + label_dict_proxy(const arb::label_dict& label_dict): dict(label_dict) { update_cache(); } @@ -31,7 +47,7 @@ struct label_dict_proxy { label_dict_proxy(const label_dict_proxy&) = default; std::size_t size() const { - return locsets.size() + regions.size(); + return locsets.size() + regions.size() + iexpressions.size(); } void import(const label_dict_proxy& other, std::string prefix = "") { @@ -43,20 +59,20 @@ struct label_dict_proxy { void set(const std::string& name, const std::string& desc) { using namespace std::string_literals; - // The following code takes an input name and a region or locset + // The following code takes an input name and a region or locset or iexpr // description, e.g.: // name='reg', desc='(tag 4)' // name='loc', desc='(terminal)' // name='foo', desc='(join (tag 2) (tag 3))' // Then it parses the description, and tests whether the description - // is a region or locset, and updates the label dictionary appropriately. + // is a region or locset or iexpr, and updates the label dictionary appropriately. // Errors occur when: - // * a region is described with a name that matches an existing locset + // * a region is described with a name that matches an existing locset or iexpr // (and vice versa.) // * the description is not well formed, e.g. it contains a syntax error. - // * the description is well-formed, but describes neither a region or locset. - try{ - // Evaluate the s-expression to build a region/locset. + // * the description is well-formed, but describes neither a region or locset or iexpr. + try { + // Evaluate the s-expression to build a region/locset/iexpr. auto result = arborio::parse_label_expression(desc); if (!result) { // an error parsing / evaluating description. throw result.error(); @@ -71,6 +87,11 @@ struct label_dict_proxy { auto it = std::lower_bound(locsets.begin(), locsets.end(), name); if (it==locsets.end() || *it!=name) locsets.insert(it, name); } + else if (result->type()==typeid(arb::iexpr)) { // describes a iexpr. + dict.set(name, std::move(std::any_cast(*result))); + auto it = std::lower_bound(iexpressions.begin(), iexpressions.end(), name); + if (it==iexpressions.end() || *it!=name) iexpressions.insert(it, name); + } else { // Successfully parsed an expression that is neither region nor locset. throw util::pprintf("The definition of '{} = {}' does not define a valid region or locset.", name, desc); @@ -107,10 +128,13 @@ struct label_dict_proxy { for (auto& x: dict.locsets()) { s += util::pprintf(" (locset \"{}\" {})", x.first, x.second); } + for (auto& x: dict.iexpressions()) { + s += util::pprintf(" (iexpr \"{}\" {})", x.first, x.second); + } s += ")"; return s; } - + bool contains(const std::string& name) const { return cache.find(name) != cache.end(); } @@ -127,6 +151,7 @@ struct label_dict_proxy { void clear_cache() { regions.clear(); locsets.clear(); + iexpressions.clear(); cache.clear(); } @@ -147,9 +172,18 @@ struct label_dict_proxy { cache[lab] = s.str(); } } + for (const auto& [lab, ls]: dict.iexpressions()) { + if (!cache.count(lab)) { + std::stringstream s; + s << ls; + iexpressions.push_back(lab); + cache[lab] = s.str(); + } + } // Sort the region and locset names std::sort(regions.begin(), regions.end()); std::sort(locsets.begin(), locsets.end()); + std::sort(iexpressions.begin(), iexpressions.end()); } }; } diff --git a/python/pyarb.cpp b/python/pyarb.cpp index c168d8be4f..57e503b07a 100644 --- a/python/pyarb.cpp +++ b/python/pyarb.cpp @@ -1,6 +1,8 @@ #include #include +#include + #include #include #include @@ -27,6 +29,7 @@ void register_recipe(pybind11::module& m); void register_schedules(pybind11::module& m); void register_simulation(pybind11::module& m, pyarb_global_ptr); void register_single_cell(pybind11::module& m); +void register_arborenv(pybind11::module& m); #ifdef ARB_MPI_ENABLED void register_mpi(pybind11::module& m); @@ -44,10 +47,6 @@ PYBIND11_MODULE(_arbor, m) { m.doc() = "arbor: multicompartment neural network models."; m.attr("__version__") = ARB_VERSION; - // Translate Arbor errors -> Python exceptions. - pybind11::register_exception(m, "FileNotFoundError", PyExc_FileNotFoundError); - pybind11::register_exception(m, "ValueError", PyExc_ValueError); - pyarb::register_cable_loader(m); pyarb::register_cable_probes(m, global_ptr); pyarb::register_cells(m); @@ -63,6 +62,34 @@ PYBIND11_MODULE(_arbor, m) { pyarb::register_schedules(m); pyarb::register_simulation(m, global_ptr); pyarb::register_single_cell(m); + pyarb::register_arborenv(m); + + // This is the fallback. All specific translators take precedence by being + // registered *later*. + pybind11::register_exception_translator([](std::exception_ptr p) { + try { + if (p) std::rethrow_exception(p); + } + catch (const arb::arbor_exception& e) { + std::stringstream msg; + msg << e.what() + << "\n" + << e.where; + PyErr_SetString(PyExc_RuntimeError, msg.str().c_str()); + } + catch (const arb::arbor_internal_error& e) { + std::stringstream msg; + msg << e.what() + << "\n" + << e.where; + PyErr_SetString(PyExc_RuntimeError, msg.str().c_str()); + } + }); + + // Translate Arbor errors -> Python exceptions. + pybind11::register_exception(m, "FileNotFoundError", PyExc_FileNotFoundError); + pybind11::register_exception(m, "ValueError", PyExc_ValueError); + #ifdef ARB_MPI_ENABLED pyarb::register_mpi(m); diff --git a/python/pybind11 b/python/pybind11 deleted file mode 160000 index f7b499615e..0000000000 --- a/python/pybind11 +++ /dev/null @@ -1 +0,0 @@ -Subproject commit f7b499615e14d70ab098a20deb0cdb3889998a1a diff --git a/python/readme.md b/python/readme.md deleted file mode 100644 index cfa7ddda1d..0000000000 --- a/python/readme.md +++ /dev/null @@ -1,10 +0,0 @@ -# Arbor - -The Arbor Python package is a wrapper around the high-performance C++ library Arbor, for -constructing and running simulations multi-compartment neuron models, from single cell models -to large networks. - -Documentation is available online at [Read the Docs](https://docs.arbor-sim.org/en/latest/python). - -[Submit a ticket](https://github.com/arbor-sim/arbor) if you have any questions or want help. - diff --git a/python/readme.rst b/python/readme.rst new file mode 100644 index 0000000000..43ffa5deeb --- /dev/null +++ b/python/readme.rst @@ -0,0 +1,13 @@ +Arbor +===== + +The Arbor Python package is a wrapper around the high-performance C++ +library Arbor, for constructing and running simulations +multi-compartment neuron models, from single cell models to large +networks. + +Documentation is available online at `Read the +Docs `__. + +`Submit a ticket `__ if you have any +questions or want help. diff --git a/python/recipe.cpp b/python/recipe.cpp index 8317220955..54cef50e7a 100644 --- a/python/recipe.cpp +++ b/python/recipe.cpp @@ -107,7 +107,7 @@ static std::vector convert_gen(std::vector(g); // convert the event_generator to an arb::event_generator - gens.push_back(arb::schedule_generator(p.target, p.weight, std::move(p.time_sched))); + gens.push_back(arb::event_generator(p.target, p.weight, std::move(p.time_sched))); } return gens; diff --git a/python/setup.py b/python/setup.py deleted file mode 100644 index 70b4386a87..0000000000 --- a/python/setup.py +++ /dev/null @@ -1,39 +0,0 @@ -import setuptools -import os - -here = os.path.abspath(os.path.dirname(__file__)) -with open(os.path.join(here, 'arbor/VERSION')) as version_file: - version_ = version_file.read().strip() - -setuptools.setup( - name='arbor', - packages=['arbor'], - version=version_, - author='CSCS and FZJ', - url='https://github.com/arbor-sim/arbor', - description='High performance simulation of networks of multicompartment neurons.', - long_description='', - classifiers=[ - 'Development Status :: 4 - Beta', # Upgrade to "5 - Production/Stable" on release. - 'Intended Audience :: Science/Research', - 'Topic :: Scientific/Engineering :: Build Tools', - 'License :: OSI Approved :: BSD License' - 'Programming Language :: Python :: 3.6', - 'Programming Language :: Python :: 3.7', - 'Programming Language :: Python :: 3.8', - 'Programming Language :: Python :: 3.9', - ], - project_urls={ - 'Source': 'https://github.com/arbor-sim/arbor', - 'Documentation': 'https://docs.arbor-sim.org', - 'Bug Reports': 'https://github.com/arbor-sim/arbor/issues', - }, - package_data={ - 'arbor': ['VERSION', '_arbor.*.so'], - }, - python_requires='>=3.6', - install_requires=[], - setup_requires=[], - zip_safe=False, -) - diff --git a/python/simulation.cpp b/python/simulation.cpp index fecae322a9..03b80bd055 100644 --- a/python/simulation.cpp +++ b/python/simulation.cpp @@ -55,11 +55,11 @@ class simulation_shim { std::unordered_map sampler_map_; public: - simulation_shim(std::shared_ptr& rec, const arb::domain_decomposition& decomp, const context_shim& ctx, pyarb_global_ptr global_ptr): + simulation_shim(std::shared_ptr& rec, const context_shim& ctx, const arb::domain_decomposition& decomp, pyarb_global_ptr global_ptr): global_ptr_(global_ptr) { try { - sim_.reset(new arb::simulation(py_recipe_shim(rec), decomp, ctx.context)); + sim_.reset(new arb::simulation(py_recipe_shim(rec), ctx.context, decomp)); } catch (...) { py_reset_and_throw(); @@ -94,6 +94,10 @@ class simulation_shim { sim_->set_binning_policy(policy, bin_interval); } + void update(std::shared_ptr& rec) { + sim_->update(py_recipe_shim(rec)); + } + void record(spike_recording policy) { auto spike_recorder = [this](const std::vector& spikes) { auto old_size = spike_record_.size(); @@ -126,18 +130,18 @@ class simulation_shim { return py::array_t(py::ssize_t(spike_record_.size()), spike_record_.data()); } - py::list get_probe_metadata(arb::cell_member_type probe_id) const { + py::list get_probe_metadata(arb::cell_member_type probeset_id) const { py::list result; - for (auto&& pm: sim_->get_probe_metadata(probe_id)) { + for (auto&& pm: sim_->get_probe_metadata(probeset_id)) { result.append(global_ptr_->probe_meta_converters.convert(pm.meta)); } return result; } - arb::sampler_association_handle sample(arb::cell_member_type probe_id, const pyarb::schedule_shim_base& sched, arb::sampling_policy policy) { + arb::sampler_association_handle sample(arb::cell_member_type probeset_id, const pyarb::schedule_shim_base& sched, arb::sampling_policy policy) { std::shared_ptr recorders{new sample_recorder_vec}; - for (const arb::probe_metadata& pm: sim_->get_probe_metadata(probe_id)) { + for (const arb::probe_metadata& pm: sim_->get_probe_metadata(probeset_id)) { recorders->push_back(global_ptr_->recorder_factories.make_recorder(pm.meta)); } @@ -145,7 +149,7 @@ class simulation_shim { // is kept in sampler_map_; the two copies share the same recorder data. sampler_callback cb{std::move(recorders)}; - auto sah = sim_->add_sampler(arb::one_probe(probe_id), sched.schedule(), cb, policy); + auto sah = sim_->add_sampler(arb::one_probe(probeset_id), sched.schedule(), cb, policy); sampler_map_.insert({sah, cb}); return sah; @@ -169,6 +173,10 @@ class simulation_shim { return py::list{}; } } + + void progress_banner() { + sim_->set_epoch_callback(arb::epoch_progress_bar()); + } }; void register_simulation(pybind11::module& m, pyarb_global_ptr global_ptr) { @@ -191,9 +199,13 @@ void register_simulation(pybind11::module& m, pyarb_global_ptr global_ptr) { // A custom constructor that wraps a python recipe with arb::py_recipe_shim // before forwarding it to the arb::recipe constructor. .def(pybind11::init( - [global_ptr](std::shared_ptr& rec, const arb::domain_decomposition& decomp, const context_shim& ctx) { + [global_ptr](std::shared_ptr& rec, + const std::shared_ptr& ctx_, + const std::optional& decomp) { try { - return new simulation_shim(rec, decomp, ctx, global_ptr); + auto ctx = ctx_ ? ctx_ : std::make_shared(arb::make_context()); + auto dec = decomp.value_or(arb::partition_load_balance(py_recipe_shim(rec), ctx->context)); + return new simulation_shim(rec, *ctx, dec, global_ptr); } catch (...) { py_reset_and_throw(); @@ -204,7 +216,13 @@ void register_simulation(pybind11::module& m, pyarb_global_ptr global_ptr) { pybind11::call_guard(), "Initialize the model described by a recipe, with cells and network distributed\n" "according to the domain decomposition and computational resources described by a context.", - "recipe"_a, "domain_decomposition"_a, "context"_a) + "recipe"_a, + pybind11::arg_v("context", pybind11::none(), "Execution context"), + pybind11::arg_v("domains", pybind11::none(), "Domain decomposition")) + .def("update", &simulation_shim::update, + "Rebuild the connection table from recipe::connections_on and the event" + "generators based on recipe::event_generators.", + "recipe"_a) .def("reset", &simulation_shim::reset, pybind11::call_guard(), "Reset the state of the simulation to its initial state.") @@ -217,18 +235,18 @@ void register_simulation(pybind11::module& m, pyarb_global_ptr global_ptr) { "tfinal"_a, "dt"_a=0.025) .def("set_binning_policy", &simulation_shim::set_binning_policy, "Set the binning policy for event delivery, and the binning time interval if applicable [ms].", - "policy"_a, "bin_interval"_a) + "policy"_a, "bin_interval"_a) .def("record", &simulation_shim::record, "Disable or enable local or global spike recording.") .def("spikes", &simulation_shim::spikes, "Retrieve recorded spikes as numpy array.") .def("probe_metadata", &simulation_shim::get_probe_metadata, "Retrieve metadata associated with given probe id.", - "probe_id"_a) + "probeset_id"_a) .def("sample", &simulation_shim::sample, - "Record data from probes with given probe_id according to supplied schedule.\n" + "Record data from probes with given probeset_id according to supplied schedule.\n" "Returns handle for retrieving data or removing the sampling.", - "probe_id"_a, "schedule"_a, "policy"_a = arb::sampling_policy::lax) + "probeset_id"_a, "schedule"_a, "policy"_a = arb::sampling_policy::lax) .def("samples", &simulation_shim::samples, "Retrieve sample data as a list, one element per probe associated with the query.", "handle"_a) @@ -236,7 +254,9 @@ void register_simulation(pybind11::module& m, pyarb_global_ptr global_ptr) { "Remove sampling associated with the given handle.", "handle"_a) .def("remove_all_samplers", &simulation_shim::remove_sampler, - "Remove all sampling on the simulatr."); + "Remove all sampling on the simulatr.") + .def("progress_banner", &simulation_shim::progress_banner, + "Show a text progress bar during simulation."); } diff --git a/python/single_cell_model.cpp b/python/single_cell_model.cpp index 5165aa02b1..cc8c0cb67d 100644 --- a/python/single_cell_model.cpp +++ b/python/single_cell_model.cpp @@ -171,7 +171,7 @@ class single_cell_model { auto domdec = arb::partition_load_balance(rec, ctx_); - sim_ = std::make_unique(rec, domdec, ctx_); + sim_ = std::make_unique(rec, ctx_, domdec); // Create one trace for each probe. traces_.reserve(probes_.size()); diff --git a/python/test/cases.py b/python/test/cases.py index 4c21056a83..657bd428fd 100644 --- a/python/test/cases.py +++ b/python/test/cases.py @@ -4,10 +4,16 @@ _mpi_enabled = arbor.__config__ + @fixtures.context def skipIfNotDistributed(context): - skipSingleNode = unittest.skipIf(context.ranks < 2, "Skipping distributed test on single node.") - skipNotEnabled = unittest.skipIf(not _mpi_enabled, "Skipping distributed test, no MPI support in arbor.") + skipSingleNode = unittest.skipIf( + context.ranks < 2, "Skipping distributed test on single node." + ) + skipNotEnabled = unittest.skipIf( + not _mpi_enabled, "Skipping distributed test, no MPI support in arbor." + ) + def skipper(f): return skipSingleNode(skipNotEnabled(f)) @@ -16,4 +22,6 @@ def skipper(f): @fixtures.context def skipIfDistributed(context): - return unittest.skipIf(context.ranks > 1, "Skipping single node test on multiple nodes.") + return unittest.skipIf( + context.ranks > 1, "Skipping single node test on multiple nodes." + ) diff --git a/python/test/cpp/CMakeLists.txt b/python/test/cpp/CMakeLists.txt index fc460292f5..823a2d8169 100644 --- a/python/test/cpp/CMakeLists.txt +++ b/python/test/cpp/CMakeLists.txt @@ -9,7 +9,7 @@ set(py_unit_sources add_executable(py_unit EXCLUDE_FROM_ALL ${py_unit_sources}) add_dependencies(tests py_unit) -add_library(py_unit_lib $) +add_library(py_unit_lib STATIC $) target_link_libraries(py_unit_lib PRIVATE arbor pybind11::module) target_compile_options(py_unit PRIVATE ${ARB_CXX_FLAGS_TARGET_FULL}) diff --git a/python/test/fixtures.py b/python/test/fixtures.py index a0d90a56b8..1e82a8b0b6 100644 --- a/python/test/fixtures.py +++ b/python/test/fixtures.py @@ -1,10 +1,8 @@ import arbor import functools from functools import lru_cache as cache -import unittest from pathlib import Path import subprocess -import warnings import atexit _mpi_enabled = arbor.__config__["mpi"] @@ -20,10 +18,12 @@ # without max size. cache = cache(None) + def _fix(param_name, fixture, func): """ Decorates `func` to inject the `fixture` callable result as `param_name`. """ + @functools.wraps(func) def wrapper(*args, **kwargs): kwargs[param_name] = fixture() @@ -31,6 +31,7 @@ def wrapper(*args, **kwargs): return wrapper + def _fixture(decorator): @functools.wraps(decorator) def fixture_decorator(func): @@ -38,6 +39,7 @@ def fixture_decorator(func): return fixture_decorator + def _singleton_fixture(f): return _fixture(cache(f)) @@ -74,14 +76,21 @@ def context(): return arbor.context(*args) -class _BuildCatError(Exception): pass +class _BuildCatError(Exception): + pass def _build_cat_local(name, path): try: - subprocess.run(["arbor-build-catalogue", name, str(path)], check=True, stderr=subprocess.PIPE) + subprocess.run( + ["arbor-build-catalogue", name, str(path)], + check=True, + stderr=subprocess.PIPE, + ) except subprocess.CalledProcessError as e: - raise _BuildCatError("Tests can't build catalogues:\n" + e.stderr.decode()) from None + raise _BuildCatError( + "Tests can't build catalogues:\n" + e.stderr.decode() + ) from None def _build_cat_distributed(comm, name, path): @@ -105,6 +114,7 @@ def _build_cat_distributed(comm, name, path): if build_err: raise build_err + @context def _build_cat(name, path, context): if context.has_mpi: @@ -133,49 +143,26 @@ def dummy_catalogue(repo_path): cat_path = _build_cat("dummy", path) return arbor.load_catalogue(str(cat_path)) + @_fixture class empty_recipe(arbor.recipe): """ Blank recipe fixture. """ + pass -@_fixture -def cable_cell(): - # (1) Create a morphology with a single (cylindrical) segment of length=diameter=6 μm - tree = arbor.segment_tree() - tree.append( - arbor.mnpos, - arbor.mpoint(-3, 0, 0, 3), - arbor.mpoint(3, 0, 0, 3), - tag=1, - ) - - # (2) Define the soma and its midpoint - labels = arbor.label_dict({'soma': '(tag 1)', - 'midpoint': '(location 0 0.5)'}) - - # (3) Create cell and set properties - decor = arbor.decor() - decor.set_property(Vm=-40) - decor.paint('"soma"', arbor.density('hh')) - decor.place('"midpoint"', arbor.iclamp( 10, 2, 0.8), "iclamp") - decor.place('"midpoint"', arbor.spike_detector(-10), "detector") - return arbor.cable_cell(tree, labels, decor) - @_fixture class art_spiker_recipe(arbor.recipe): """ - Recipe fixture with 3 artificial spiking cells. + Recipe fixture with 3 artificial spiking cells and one cable cell. """ + def __init__(self): super().__init__() self.the_props = arbor.neuron_cable_properties() - self.trains = [ - [0.8, 2, 2.1, 3], - [0.4, 2, 2.2, 3.1, 4.5], - [0.2, 2, 2.8, 3]] + self.trains = [[0.8, 2, 2.1, 3], [0.4, 2, 2.2, 3.1, 4.5], [0.2, 2, 2.8, 3]] def num_cells(self): return 4 @@ -201,19 +188,60 @@ def probes(self, gid): else: return [arbor.cable_probe_membrane_voltage('"midpoint"')] - @cable_cell - def _cable_cell(self, cable_cell): - return cable_cell + def _cable_cell_elements(self): + # (1) Create a morphology with a single (cylindrical) segment of length=diameter=6 μm + tree = arbor.segment_tree() + tree.append( + arbor.mnpos, + arbor.mpoint(-3, 0, 0, 3), + arbor.mpoint(3, 0, 0, 3), + tag=1, + ) + + # (2) Define the soma and its midpoint + labels = arbor.label_dict({"soma": "(tag 1)", "midpoint": "(location 0 0.5)"}) + + # (3) Create cell and set properties + decor = arbor.decor() + decor.set_property(Vm=-40) + decor.paint('"soma"', arbor.density("hh")) + decor.place('"midpoint"', arbor.iclamp(10, 2, 0.8), "iclamp") + decor.place('"midpoint"', arbor.spike_detector(-10), "detector") + + # return tuple of tree, labels, and decor for creating a cable cell (can still be modified before calling arbor.cable_cell()) + return tree, labels, decor def cell_description(self, gid): if gid < 3: - return arbor.spike_source_cell("src", arbor.explicit_schedule(self.trains[gid])) + return arbor.spike_source_cell( + "src", arbor.explicit_schedule(self.trains[gid]) + ) else: - return self._cable_cell() + tree, labels, decor = self._cable_cell_elements() + return arbor.cable_cell(tree, labels, decor) + + +@_fixture +def sum_weight_hh_spike(): + """ + Fixture returning connection weight for 'expsyn_stdp' mechanism which is just enough to evoke an immediate spike + at t=1ms in the 'hh' neuron in 'art_spiker_recipe' + """ + return 0.4 + + +@_fixture +def sum_weight_hh_spike_2(): + """ + Fixture returning connection weight for 'expsyn_stdp' mechanism which is just enough to evoke an immediate spike + at t=1.8ms in the 'hh' neuron in 'art_spiker_recipe' + """ + return 0.36 + @_fixture @context @art_spiker_recipe def art_spiking_sim(context, art_spiker_recipe): dd = arbor.partition_load_balance(art_spiker_recipe, context) - return arbor.simulation(art_spiker_recipe, dd, context) + return arbor.simulation(art_spiker_recipe, context, dd) diff --git a/python/test/unit/test_cable_probes.py b/python/test/unit/test_cable_probes.py index c9f0d15a19..e49b3930ef 100644 --- a/python/test/unit/test_cable_probes.py +++ b/python/test/unit/test_cable_probes.py @@ -2,7 +2,6 @@ import unittest import arbor as A -from .. import fixtures """ tests for cable probe wrappers @@ -11,6 +10,7 @@ # Test recipe cc comprises one simple cable cell and mechanisms on it # sufficient to test cable cell probe wrappers wrap correctly. + class cc_recipe(A.recipe): def __init__(self): A.recipe.__init__(self) @@ -19,10 +19,10 @@ def __init__(self): dec = A.decor() - dec.place('(location 0 0.08)', A.synapse("expsyn"), "syn0") - dec.place('(location 0 0.09)', A.synapse("exp2syn"), "syn1") - dec.place('(location 0 0.1)', A.iclamp(20.), "iclamp") - dec.paint('(all)', A.density("hh")) + dec.place("(location 0 0.08)", A.synapse("expsyn"), "syn0") + dec.place("(location 0 0.09)", A.synapse("exp2syn"), "syn1") + dec.place("(location 0 0.1)", A.iclamp(20.0), "iclamp") + dec.paint("(all)", A.density("hh")) self.cell = A.cable_cell(st, A.label_dict(), dec) @@ -44,50 +44,53 @@ def probes(self, gid): # the returned list. return [ # probe id (0, 0) - A.cable_probe_membrane_voltage(where='(location 0 0.00)'), + A.cable_probe_membrane_voltage(where="(location 0 0.00)"), # probe id (0, 1) A.cable_probe_membrane_voltage_cell(), # probe id (0, 2) - A.cable_probe_axial_current(where='(location 0 0.02)'), + A.cable_probe_axial_current(where="(location 0 0.02)"), # probe id (0, 3) - A.cable_probe_total_ion_current_density(where='(location 0 0.03)'), + A.cable_probe_total_ion_current_density(where="(location 0 0.03)"), # probe id (0, 4) A.cable_probe_total_ion_current_cell(), # probe id (0, 5) A.cable_probe_total_current_cell(), # probe id (0, 6) - A.cable_probe_density_state(where='(location 0 0.06)', mechanism='hh', state='m'), + A.cable_probe_density_state( + where="(location 0 0.06)", mechanism="hh", state="m" + ), # probe id (0, 7) - A.cable_probe_density_state_cell(mechanism='hh', state='n'), + A.cable_probe_density_state_cell(mechanism="hh", state="n"), # probe id (0, 8) - A.cable_probe_point_state(target=0, mechanism='expsyn', state='g'), + A.cable_probe_point_state(target=0, mechanism="expsyn", state="g"), # probe id (0, 9) - A.cable_probe_point_state_cell(mechanism='exp2syn', state='B'), + A.cable_probe_point_state_cell(mechanism="exp2syn", state="B"), # probe id (0, 10) - A.cable_probe_ion_current_density(where='(location 0 0.10)', ion='na'), + A.cable_probe_ion_current_density(where="(location 0 0.10)", ion="na"), # probe id (0, 11) - A.cable_probe_ion_current_cell(ion='na'), + A.cable_probe_ion_current_cell(ion="na"), # probe id (0, 12) - A.cable_probe_ion_int_concentration(where='(location 0 0.12)', ion='na'), + A.cable_probe_ion_int_concentration(where="(location 0 0.12)", ion="na"), # probe id (0, 13) - A.cable_probe_ion_int_concentration_cell(ion='na'), + A.cable_probe_ion_int_concentration_cell(ion="na"), # probe id (0, 14) - A.cable_probe_ion_ext_concentration(where='(location 0 0.14)', ion='na'), + A.cable_probe_ion_ext_concentration(where="(location 0 0.14)", ion="na"), # probe id (0, 15) - A.cable_probe_ion_ext_concentration_cell(ion='na'), + A.cable_probe_ion_ext_concentration_cell(ion="na"), # probe id (0, 15) - A.cable_probe_stimulus_current_cell() + A.cable_probe_stimulus_current_cell(), ] def cell_description(self, gid): return self.cell + class TestCableProbes(unittest.TestCase): def test_probe_addr_metadata(self): recipe = cc_recipe() context = A.context() dd = A.partition_load_balance(recipe, context) - sim = A.simulation(recipe, dd, context) + sim = A.simulation(recipe, context, dd) all_cv_cables = [A.cable(0, 0, 1)] diff --git a/python/test/unit/test_catalogues.py b/python/test/unit/test_catalogues.py index 4e469186cb..7e9608dfd2 100644 --- a/python/test/unit/test_catalogues.py +++ b/python/test/unit/test_catalogues.py @@ -6,6 +6,7 @@ tests for (dynamically loaded) catalogues """ + class recipe(arb.recipe): def __init__(self): arb.recipe.__init__(self) @@ -13,14 +14,14 @@ def __init__(self): self.tree.append(arb.mnpos, (0, 0, 0, 10), (1, 0, 0, 10), 1) self.props = arb.neuron_cable_properties() try: - self.props.catalogue = arb.load_catalogue('dummy-catalogue.so') - except: + self.props.catalogue = arb.load_catalogue("dummy-catalogue.so") + except Exception: print("Catalogue not found. Are you running from build directory?") raise self.props.catalogue = arb.default_catalogue() d = arb.decor() - d.paint('(all)', arb.density('pas')) + d.paint("(all)", arb.density("pas")) d.set_property(Vm=0.0) self.cell = arb.cable_cell(self.tree, arb.label_dict(), d) @@ -46,16 +47,20 @@ def test_nonexistent(self): def test_shared_catalogue(self, dummy_catalogue): cat = dummy_catalogue nms = [m for m in cat] - self.assertEqual(nms, ['dummy'], "Expected equal names.") + self.assertEqual(nms, ["dummy"], "Expected equal names.") for nm in nms: prm = list(cat[nm].parameters.keys()) - self.assertEqual(prm, ['gImbar'], "Expected equal parameters on mechanism '{}'.".format(nm)) + self.assertEqual( + prm, + ["gImbar"], + "Expected equal parameters on mechanism '{}'.".format(nm), + ) def test_simulation(self): rcp = recipe() ctx = arb.context() dom = arb.partition_load_balance(rcp, ctx) - sim = arb.simulation(rcp, dom, ctx) + sim = arb.simulation(rcp, ctx, dom) sim.run(tfinal=30) def test_empty(self): @@ -72,13 +77,31 @@ def hash_(cat): self.assertEqual(0, len(cat), "Expected no mechanisms in `arbor.catalogue()`.") # Test empty extend other.extend(cat, "") - self.assertEqual(hash_(ref), hash_(other), "Extending cat with empty should not change cat.") - self.assertEqual(0, len(cat), "Extending cat with empty should not change empty.") + self.assertEqual( + hash_(ref), hash_(other), "Extending cat with empty should not change cat." + ) + self.assertEqual( + 0, len(cat), "Extending cat with empty should not change empty." + ) other.extend(cat, "prefix/") - self.assertEqual(hash_(ref), hash_(other), "Extending cat with prefixed empty should not change cat.") - self.assertEqual(0, len(cat), "Extending cat with prefixed empty should not change empty.") + self.assertEqual( + hash_(ref), + hash_(other), + "Extending cat with prefixed empty should not change cat.", + ) + self.assertEqual( + 0, len(cat), "Extending cat with prefixed empty should not change empty." + ) cat.extend(other, "") - self.assertEqual(hash_(other), hash_(cat), "Extending empty with cat should turn empty into cat.") + self.assertEqual( + hash_(other), + hash_(cat), + "Extending empty with cat should turn empty into cat.", + ) cat = arb.catalogue() cat.extend(other, "prefix/") - self.assertNotEqual(hash_(other), hash_(cat), "Extending empty with prefixed cat should not yield cat") + self.assertNotEqual( + hash_(other), + hash_(cat), + "Extending empty with prefixed cat should not yield cat", + ) diff --git a/python/test/unit/test_clear_samplers.py b/python/test/unit/test_clear_samplers.py index bb7c201838..f294c69f9a 100644 --- a/python/test/unit/test_clear_samplers.py +++ b/python/test/unit/test_clear_samplers.py @@ -6,14 +6,14 @@ import arbor as A import numpy as np -# to be able to run .py file from child directory -import sys, os -from .. import fixtures, cases +from .. import fixtures +from .. import cases """ all tests for the simulator wrapper """ + @cases.skipIfDistributed() class TestClearSamplers(unittest.TestCase): # test that all spikes are sorted by time then by gid @@ -34,10 +34,10 @@ def test_spike_clearing(self, art_spiking_sim): sim.reset() # simulated with clearing the memory inbetween the steppings - sim.run(3,0.01) + sim.run(3, 0.01) spikes = sim.spikes() - times_t = spikes["time"].tolist() - gids_t = spikes["source"]["gid"].tolist() + times_t = spikes["time"].tolist() + gids_t = spikes["source"]["gid"].tolist() data_t, meta_t = sim.samples(handle)[0] # clear the samplers memory @@ -48,7 +48,7 @@ def test_spike_clearing(self, art_spiking_sim): self.assertEqual(0, len(spikes["time"].tolist())) self.assertEqual(0, len(spikes["source"]["gid"].tolist())) data_test, meta_test = sim.samples(handle)[0] - self.assertEqual(0,data_test.size) + self.assertEqual(0, data_test.size) # run the next part of the simulation sim.run(5, 0.01) @@ -58,7 +58,6 @@ def test_spike_clearing(self, art_spiking_sim): data_temp, meta_temp = sim.samples(handle)[0] data_t = np.concatenate((data_t, data_temp), 0) - # check if results are the same self.assertEqual(gids, gids_t) self.assertEqual(times_t, times) diff --git a/python/test/unit/test_contexts.py b/python/test/unit/test_contexts.py index 7ed3a7d3cc..2f550c5529 100644 --- a/python/test/unit/test_contexts.py +++ b/python/test/unit/test_contexts.py @@ -5,12 +5,12 @@ import unittest import arbor as arb -from .. import fixtures """ all tests for non-distributed arb.context """ + class TestContexts(unittest.TestCase): def test_default_allocation(self): alloc = arb.proc_allocation() @@ -33,22 +33,24 @@ def test_set_allocation(self): self.assertFalse(alloc.has_gpu) def test_exceptions_allocation(self): - with self.assertRaisesRegex(RuntimeError, - "gpu_id must be None, or a non-negative integer"): - arb.proc_allocation(gpu_id = 1.) - with self.assertRaisesRegex(RuntimeError, - "gpu_id must be None, or a non-negative integer"): - arb.proc_allocation(gpu_id = -1) - with self.assertRaisesRegex(RuntimeError, - "gpu_id must be None, or a non-negative integer"): - arb.proc_allocation(gpu_id = 'gpu_id') + with self.assertRaisesRegex( + RuntimeError, "gpu_id must be None, or a non-negative integer" + ): + arb.proc_allocation(gpu_id=1.0) + with self.assertRaisesRegex( + RuntimeError, "gpu_id must be None, or a non-negative integer" + ): + arb.proc_allocation(gpu_id=-1) + with self.assertRaisesRegex( + RuntimeError, "gpu_id must be None, or a non-negative integer" + ): + arb.proc_allocation(gpu_id="gpu_id") with self.assertRaises(TypeError): - arb.proc_allocation(threads = 1.) - with self.assertRaisesRegex(ValueError, - "threads must be a positive integer"): - arb.proc_allocation(threads = 0) + arb.proc_allocation(threads=1.0) + with self.assertRaisesRegex(ValueError, "threads must be a positive integer"): + arb.proc_allocation(threads=0) with self.assertRaises(TypeError): - arb.proc_allocation(threads = None) + arb.proc_allocation(threads=None) def test_default_context(self): ctx = arb.context() @@ -61,7 +63,7 @@ def test_default_context(self): self.assertEqual(ctx.rank, 0) def test_context(self): - ctx = arb.context(threads = 42, gpu_id = None) + ctx = arb.context(threads=42, gpu_id=None) self.assertFalse(ctx.has_mpi) self.assertFalse(ctx.has_gpu) @@ -71,7 +73,7 @@ def test_context(self): def test_context_avail_threads(self): # test that 'avail_threads' returns at least 1. - ctx = arb.context(threads = 'avail_threads', gpu_id = None) + ctx = arb.context(threads="avail_threads", gpu_id=None) self.assertFalse(ctx.has_mpi) self.assertFalse(ctx.has_gpu) diff --git a/python/test/unit/test_decor.py b/python/test/unit/test_decor.py index cb83567386..59dcf0d900 100644 --- a/python/test/unit/test_decor.py +++ b/python/test/unit/test_decor.py @@ -3,39 +3,38 @@ import unittest import arbor as A -from .. import fixtures - """ Tests for decor and decoration wrappers. TODO: Coverage for more than just iclamp. """ + class TestDecorClasses(unittest.TestCase): def test_iclamp(self): # Constant amplitude iclamp: - clamp = A.iclamp(10); + clamp = A.iclamp(10) self.assertEqual(0, clamp.frequency) self.assertEqual([(0, 10)], clamp.envelope) - clamp = A.iclamp(10, frequency=20); + clamp = A.iclamp(10, frequency=20) self.assertEqual(20, clamp.frequency) self.assertEqual([(0, 10)], clamp.envelope) # Square pulse: - clamp = A.iclamp(100, 20, 3); + clamp = A.iclamp(100, 20, 3) self.assertEqual(0, clamp.frequency) self.assertEqual([(100, 3), (120, 3), (120, 0)], clamp.envelope) - clamp = A.iclamp(100, 20, 3, frequency=7); + clamp = A.iclamp(100, 20, 3, frequency=7) self.assertEqual(7, clamp.frequency) self.assertEqual([(100, 3), (120, 3), (120, 0)], clamp.envelope) # Explicit envelope: envelope = [(1, 10), (3, 30), (5, 50), (7, 0)] - clamp = A.iclamp(envelope); + clamp = A.iclamp(envelope) self.assertEqual(0, clamp.frequency) self.assertEqual(envelope, clamp.envelope) - clamp = A.iclamp(envelope, frequency=7); + clamp = A.iclamp(envelope, frequency=7) self.assertEqual(7, clamp.frequency) self.assertEqual(envelope, clamp.envelope) diff --git a/python/test/unit/test_domain_decompositions.py b/python/test/unit/test_domain_decompositions.py index 9dd86ae869..b08ef2b173 100644 --- a/python/test/unit/test_domain_decompositions.py +++ b/python/test/unit/test_domain_decompositions.py @@ -5,7 +5,6 @@ import unittest import arbor as arb -from .. import fixtures # check Arbor's configuration of mpi and gpu gpu_enabled = arb.__config__["gpu"] @@ -14,8 +13,9 @@ all tests for non-distributed arb.domain_decomposition """ + # Dummy recipe -class homo_recipe (arb.recipe): +class homo_recipe(arb.recipe): def __init__(self, n=4): arb.recipe.__init__(self) self.ncells = n @@ -27,11 +27,12 @@ def cell_description(self, gid): return [] def cell_kind(self, gid): - return arb.cell_kind.cable + return arb.cell_kind.cable + # Heterogenous cell population of cable and rss cells. # Interleaved so that cells with even gid are cable cells, and even gid are spike source cells. -class hetero_recipe (arb.recipe): +class hetero_recipe(arb.recipe): def __init__(self, n=4): arb.recipe.__init__(self) self.ncells = n @@ -43,11 +44,12 @@ def cell_description(self, gid): return [] def cell_kind(self, gid): - if (gid%2): + if gid % 2: return arb.cell_kind.spike_source else: return arb.cell_kind.cable + class TestDomain_Decompositions(unittest.TestCase): # 1 cpu core, no gpus; assumes all cells will be put into cell groups of size 1 def test_domain_decomposition_homogenous_CPU(self): @@ -74,7 +76,7 @@ def test_domain_decomposition_homogenous_CPU(self): self.assertEqual(grp.kind, arb.cell_kind.cable) # 1 cpu core, 1 gpu; assumes all cells will be placed on gpu in a single cell group - @unittest.skipIf(gpu_enabled == False, "GPU not enabled") + @unittest.skipIf(gpu_enabled is False, "GPU not enabled") def test_domain_decomposition_homogenous_GPU(self): n_cells = 10 recipe = homo_recipe(n_cells) @@ -96,7 +98,7 @@ def test_domain_decomposition_homogenous_GPU(self): self.assertEqual(len(grp.gids), n_cells) self.assertEqual(grp.gids[0], 0) - self.assertEqual(grp.gids[-1], n_cells-1) + self.assertEqual(grp.gids[-1], n_cells - 1) self.assertEqual(grp.backend, arb.backend.gpu) self.assertEqual(grp.kind, arb.cell_kind.cable) @@ -132,12 +134,12 @@ def test_domain_decomposition_heterogenous_CPU(self): kinds = [arb.cell_kind.cable, arb.cell_kind.spike_source] for k in kinds: gids = kind_lists[k] - self.assertEqual(len(gids), int(n_cells/2)) + self.assertEqual(len(gids), int(n_cells / 2)) for gid in gids: self.assertEqual(k, recipe.cell_kind(gid)) # 1 cpu core, 1 gpu; assumes cable cells will be placed on gpu in a single cell group; spike cells are on cpu in cell groups of size 1 - @unittest.skipIf(gpu_enabled == False, "GPU not enabled") + @unittest.skipIf(gpu_enabled is False, "GPU not enabled") def test_domain_decomposition_heterogenous_GPU(self): n_cells = 10 recipe = hetero_recipe(n_cells) @@ -148,7 +150,7 @@ def test_domain_decomposition_heterogenous_GPU(self): self.assertEqual(decomp.num_global_cells, n_cells) # one cell group with n_cells/2 on gpu, and n_cells/2 groups on cpu - expected_groups = int(n_cells/2) + 1 + expected_groups = int(n_cells / 2) + 1 self.assertEqual(len(decomp.groups), expected_groups) grps = range(expected_groups) @@ -157,16 +159,16 @@ def test_domain_decomposition_heterogenous_GPU(self): for i in grps: grp = decomp.groups[i] k = grp.kind - if (k == arb.cell_kind.cable): + if k == arb.cell_kind.cable: self.assertEqual(grp.backend, arb.backend.gpu) - self.assertEqual(len(grp.gids), int(n_cells/2)) + self.assertEqual(len(grp.gids), int(n_cells / 2)) for gid in grp.gids: - self.assertTrue(gid%2==0) + self.assertTrue(gid % 2 == 0) n += 1 - elif (k == arb.cell_kind.spike_source): + elif k == arb.cell_kind.spike_source: self.assertEqual(grp.backend, arb.backend.multicore) self.assertEqual(len(grp.gids), 1) - self.assertTrue(grp.gids[0]%2) + self.assertTrue(grp.gids[0] % 2) n += 1 self.assertEqual(n_cells, n) @@ -183,7 +185,12 @@ def test_domain_decomposition_hints(self): spike_hint = arb.partition_hint() spike_hint.prefer_gpu = False spike_hint.cpu_group_size = 4 - hints = dict([(arb.cell_kind.cable, cable_hint), (arb.cell_kind.spike_source, spike_hint)]) + hints = dict( + [ + (arb.cell_kind.cable, cable_hint), + (arb.cell_kind.spike_source, spike_hint), + ] + ) decomp = arb.partition_load_balance(recipe, context, hints) @@ -194,11 +201,13 @@ def test_domain_decomposition_hints(self): spike_groups = [] for g in decomp.groups: - self.assertTrue(g.kind == arb.cell_kind.cable or g.kind == arb.cell_kind.spike_source) + self.assertTrue( + g.kind == arb.cell_kind.cable or g.kind == arb.cell_kind.spike_source + ) - if (g.kind == arb.cell_kind.cable): + if g.kind == arb.cell_kind.cable: cable_groups.append(g.gids) - elif (g.kind == arb.cell_kind.spike_source): + elif g.kind == arb.cell_kind.spike_source: spike_groups.append(g.gids) self.assertEqual(exp_cable_groups, cable_groups) @@ -217,11 +226,18 @@ def test_domain_decomposition_exceptions(self): spike_hint = arb.partition_hint() spike_hint.prefer_gpu = False spike_hint.gpu_group_size = 1 - hints = dict([(arb.cell_kind.cable, cable_hint), (arb.cell_kind.spike_source, spike_hint)]) - - with self.assertRaisesRegex(RuntimeError, - "unable to perform load balancing because cell_kind::cable has invalid suggested cpu_cell_group size of 0"): - decomp = arb.partition_load_balance(recipe, context, hints) + hints = dict( + [ + (arb.cell_kind.cable, cable_hint), + (arb.cell_kind.spike_source, spike_hint), + ] + ) + + with self.assertRaisesRegex( + RuntimeError, + "unable to perform load balancing because cell_kind::cable has invalid suggested cpu_cell_group size of 0", + ): + arb.partition_load_balance(recipe, context, hints) cable_hint = arb.partition_hint() cable_hint.prefer_gpu = False @@ -229,8 +245,15 @@ def test_domain_decomposition_exceptions(self): spike_hint = arb.partition_hint() spike_hint.prefer_gpu = True spike_hint.gpu_group_size = 0 - hints = dict([(arb.cell_kind.cable, cable_hint), (arb.cell_kind.spike_source, spike_hint)]) - - with self.assertRaisesRegex(RuntimeError, - "unable to perform load balancing because cell_kind::spike_source has invalid suggested gpu_cell_group size of 0"): - decomp = arb.partition_load_balance(recipe, context, hints) + hints = dict( + [ + (arb.cell_kind.cable, cable_hint), + (arb.cell_kind.spike_source, spike_hint), + ] + ) + + with self.assertRaisesRegex( + RuntimeError, + "unable to perform load balancing because cell_kind::spike_source has invalid suggested gpu_cell_group size of 0", + ): + arb.partition_load_balance(recipe, context, hints) diff --git a/python/test/unit/test_event_generators.py b/python/test/unit/test_event_generators.py index 2ea5649066..b43387029c 100644 --- a/python/test/unit/test_event_generators.py +++ b/python/test/unit/test_event_generators.py @@ -5,17 +5,16 @@ import unittest import arbor as arb -from .. import fixtures """ all tests for event generators (regular, explicit, poisson) """ -class TestEventGenerator(unittest.TestCase): +class TestEventGenerator(unittest.TestCase): def test_event_generator_regular_schedule(self): cm = arb.cell_local_label("tgt0") - rs = arb.regular_schedule(2.0, 1., 100.) + rs = arb.regular_schedule(2.0, 1.0, 100.0) rg = arb.event_generator(cm, 3.14, rs) self.assertEqual(rg.target.label, "tgt0") self.assertEqual(rg.target.policy, arb.selection_policy.univalent) @@ -23,15 +22,15 @@ def test_event_generator_regular_schedule(self): def test_event_generator_explicit_schedule(self): cm = arb.cell_local_label("tgt1", arb.selection_policy.round_robin) - es = arb.explicit_schedule([0,1,2,3,4.4]) + es = arb.explicit_schedule([0, 1, 2, 3, 4.4]) eg = arb.event_generator(cm, -0.01, es) self.assertEqual(eg.target.label, "tgt1") self.assertEqual(eg.target.policy, arb.selection_policy.round_robin) self.assertAlmostEqual(eg.weight, -0.01) def test_event_generator_poisson_schedule(self): - ps = arb.poisson_schedule(0., 10., 0) - pg = arb.event_generator("tgt2", 42., ps) + ps = arb.poisson_schedule(0.0, 10.0, 0) + pg = arb.event_generator("tgt2", 42.0, ps) self.assertEqual(pg.target.label, "tgt2") self.assertEqual(pg.target.policy, arb.selection_policy.univalent) - self.assertEqual(pg.weight, 42.) + self.assertEqual(pg.weight, 42.0) diff --git a/python/test/unit/test_identifiers.py b/python/test/unit/test_identifiers.py index 61469cb35c..69c2948ef5 100644 --- a/python/test/unit/test_identifiers.py +++ b/python/test/unit/test_identifiers.py @@ -5,21 +5,21 @@ import unittest import arbor as arb -from .. import fixtures + """ all tests for identifiers, indexes, kinds """ -class TestCellMembers(unittest.TestCase): +class TestCellMembers(unittest.TestCase): def test_gid_index_ctor_cell_member(self): - cm = arb.cell_member(17,42) + cm = arb.cell_member(17, 42) self.assertEqual(cm.gid, 17) self.assertEqual(cm.index, 42) def test_set_gid_index_cell_member(self): - cm = arb.cell_member(0,0) + cm = arb.cell_member(0, 0) cm.gid = 13 cm.index = 23 self.assertEqual(cm.gid, 13) diff --git a/python/test/unit/test_io.py b/python/test/unit/test_io.py new file mode 100644 index 0000000000..b3eda93b99 --- /dev/null +++ b/python/test/unit/test_io.py @@ -0,0 +1,93 @@ +import unittest + +import arbor as A + +from pathlib import Path +from tempfile import TemporaryDirectory as TD +from io import StringIO + +acc = """(arbor-component + (meta-data + (version "0.1-dev")) + (cable-cell + (morphology + (branch 0 -1 + (segment 0 + (point -3.000000 0.000000 0.000000 3.000000) + (point 3.000000 0.000000 0.000000 3.000000) + 1))) + (label-dict + (region-def "soma" + (tag 1)) + (locset-def "mid" + (location 0 0.5))) + (decor + (default + (membrane-potential -40.000000)) + (default + (ion-internal-concentration "ca" 0.000050)) + (default + (ion-external-concentration "ca" 2.000000)) + (default + (ion-reversal-potential "ca" 132.457934)) + (default + (ion-internal-concentration "k" 54.400000)) + (default + (ion-external-concentration "k" 2.500000)) + (default + (ion-reversal-potential "k" -77.000000)) + (default + (ion-internal-concentration "na" 10.000000)) + (default + (ion-external-concentration "na" 140.000000)) + (default + (ion-reversal-potential "na" 50.000000)) + (paint + (tag 1) + (density + (mechanism "default::hh" + ("gnabar" 0.120000) + ("el" -54.300000) + ("q10" 0.000000) + ("gl" 0.000300) + ("gkbar" 0.036000)))) + (place + (location 0 0.5) + (current-clamp + (envelope + (10.000000 0.800000) + (12.000000 0.000000)) + 0.000000 0.000000) + "I Clamp 0")))) +""" + + +class TestAccIo(unittest.TestCase): + def test_stringio(self): + sio = StringIO(acc) + A.load_component(sio) + + def test_fileio(self): + fn = "test.acc" + with TD() as tmp: + tmp = Path(tmp) + with open(tmp / fn, "w") as fd: + fd.write(acc) + with open(tmp / fn) as fd: + A.load_component(fd) + + def test_nameio(self): + fn = "test.acc" + with TD() as tmp: + tmp = Path(tmp) + with open(tmp / fn, "w") as fd: + fd.write(acc) + A.load_component(str(tmp / fn)) + + def test_pathio(self): + fn = "test.acc" + with TD() as tmp: + tmp = Path(tmp) + with open(tmp / fn, "w") as fd: + fd.write(acc) + A.load_component(tmp / fn) diff --git a/python/test/unit/test_morphology.py b/python/test/unit/test_morphology.py index 4c271f2d24..4d0eb7a551 100644 --- a/python/test/unit/test_morphology.py +++ b/python/test/unit/test_morphology.py @@ -6,55 +6,62 @@ import arbor as A import numpy as N import math -from .. import fixtures """ tests for morphology-related classes """ + def as_matrix(iso): trans = N.array(iso((0, 0, 0))) - return N.c_[N.array([iso(v) for v in [(1,0,0),(0,1,0),(0,0,1)]]).transpose()-N.c_[trans, trans, trans], trans] + return N.c_[ + N.array([iso(v) for v in [(1, 0, 0), (0, 1, 0), (0, 0, 1)]]).transpose() + - N.c_[trans, trans, trans], + trans, + ] + class TestPlacePwlin(unittest.TestCase): def test_identity(self): self.assertTrue(N.isclose(as_matrix(A.isometry()), N.eye(3, 4)).all()) def test_translation(self): - displacement=(4, 5, 6) + displacement = (4, 5, 6) iso = A.isometry.translate(displacement) expected = N.c_[N.eye(3), displacement] self.assertTrue(N.isclose(as_matrix(iso), expected).all()) def test_rotation(self): # 90 degrees about y axis. - iso = A.isometry.rotate(theta=math.pi/2, axis=(0, 1, 0)) - expected = N.array([[0, 0, 1, 0],[0, 1, 0, 0],[-1, 0, 0, 0]]) + iso = A.isometry.rotate(theta=math.pi / 2, axis=(0, 1, 0)) + expected = N.array([[0, 0, 1, 0], [0, 1, 0, 0], [-1, 0, 0, 0]]) self.assertTrue(N.isclose(as_matrix(iso), expected).all()) def test_compose(self): # Translations are always extrinsic, rotations are intrinsic. - y90 = A.isometry.rotate(theta=math.pi/2, axis=(0, 1, 0)) - z90 = A.isometry.rotate(theta=math.pi/2, axis=(0, 0, 1)) + y90 = A.isometry.rotate(theta=math.pi / 2, axis=(0, 1, 0)) + z90 = A.isometry.rotate(theta=math.pi / 2, axis=(0, 0, 1)) t123 = A.isometry.translate(1, 2, 3) t456 = A.isometry.translate(4, 5, 6) - iso = t123*z90*t456*y90 # rot about y, then translate, then rot about z, then translate. - expected = N.array([[0, 0, 1, 5],[1, 0, 0, 7],[0, 1, 0, 9]]) + iso = ( + t123 * z90 * t456 * y90 + ) # rot about y, then translate, then rot about z, then translate. + expected = N.array([[0, 0, 1, 5], [1, 0, 0, 7], [0, 1, 0, 9]]) self.assertTrue(N.isclose(as_matrix(iso), expected).all()) def test_mpoint(self): # Translations can be built from mpoints, and isometry can act upon mpoints. Radius is ignored. - y90 = A.isometry.rotate(theta=math.pi/2, axis=(0, 1, 0)) - z90 = A.isometry.rotate(theta=math.pi/2, axis=(0, 0, 1)) + y90 = A.isometry.rotate(theta=math.pi / 2, axis=(0, 1, 0)) + z90 = A.isometry.rotate(theta=math.pi / 2, axis=(0, 0, 1)) t123 = A.isometry.translate(A.mpoint(1, 2, 3, 20)) t456 = A.isometry.translate(A.mpoint(4, 5, 6, 30)) - iso = t123*z90*t456*y90 - expected = N.array([[0, 0, 1, 5],[1, 0, 0, 7],[0, 1, 0, 9]]) + iso = t123 * z90 * t456 * y90 + expected = N.array([[0, 0, 1, 5], [1, 0, 0, 7], [0, 1, 0, 9]]) self.assertTrue(N.isclose(as_matrix(iso), expected).all()) q = iso(A.mpoint(2, 3, 4, 10)) q_arr = N.array((q.x, q.y, q.z, q.radius)) - q_expected = N.array([4+5, 2+7, 3+9, 10]) + q_expected = N.array([4 + 5, 2 + 7, 3 + 9, 10]) self.assertTrue(N.isclose(q_arr, q_expected).all()) def test_place_pwlin_id(self): @@ -78,13 +85,15 @@ def test_place_pwlin_id(self): Lhalf = place.at(A.location(0, 0.5)) Lhalfs = place.all_at(A.location(0, 0.5)) - self.assertTrue(s0d==Lhalf or s1p==Lhalf) - self.assertTrue([s0d, s1p]==Lhalfs) + self.assertTrue(s0d == Lhalf or s1p == Lhalf) + self.assertTrue([s0d, s1p] == Lhalfs) - Chalf = [(s.prox, s.dist) for s in place.segments([A.cable(0, 0., 0.5)])] + Chalf = [(s.prox, s.dist) for s in place.segments([A.cable(0, 0.0, 0.5)])] self.assertEqual([(s0p, s0d)], Chalf) - Chalf_all = [(s.prox, s.dist) for s in place.all_segments([A.cable(0, 0., 0.5)])] + Chalf_all = [ + (s.prox, s.dist) for s in place.all_segments([A.cable(0, 0.0, 0.5)]) + ] self.assertEqual([(s0p, s0d), (s1p, s1p)], Chalf_all) def test_place_pwlin_isometry(self): @@ -105,7 +114,6 @@ def test_place_pwlin_isometry(self): x0p = iso(s0p) x0d = iso(s0d) x1p = iso(s1p) - x1d = iso(s1d) L0 = place.at(A.location(0, 0)) L0s = place.all_at(A.location(0, 0)) @@ -114,11 +122,13 @@ def test_place_pwlin_isometry(self): Lhalf = place.at(A.location(0, 0.5)) Lhalfs = place.all_at(A.location(0, 0.5)) - self.assertTrue(x0d==Lhalf or x1p==Lhalf) - self.assertTrue([x0d, x1p]==Lhalfs) + self.assertTrue(x0d == Lhalf or x1p == Lhalf) + self.assertTrue([x0d, x1p] == Lhalfs) - Chalf = [(s.prox, s.dist) for s in place.segments([A.cable(0, 0., 0.5)])] + Chalf = [(s.prox, s.dist) for s in place.segments([A.cable(0, 0.0, 0.5)])] self.assertEqual([(x0p, x0d)], Chalf) - Chalf_all = [(s.prox, s.dist) for s in place.all_segments([A.cable(0, 0., 0.5)])] + Chalf_all = [ + (s.prox, s.dist) for s in place.all_segments([A.cable(0, 0.0, 0.5)]) + ] self.assertEqual([(x0p, x0d), (x1p, x1p)], Chalf_all) diff --git a/python/test/unit/test_multiple_connections.py b/python/test/unit/test_multiple_connections.py new file mode 100644 index 0000000000..b23326c43c --- /dev/null +++ b/python/test/unit/test_multiple_connections.py @@ -0,0 +1,387 @@ +# -*- coding: utf-8 -*- +# +# test_multiple_connections.py + +import unittest +import types +import numpy as np + +import arbor as arb +from .. import fixtures + +""" +Tests for multiple connections onto the same postsynaptic label and for one +connection that has the same net impact as the multiple-connection paradigm, +thereby testing the selection policies 'round_robin', 'round_robin_halt', and +'univalent' + +NOTE: In principle, a plasticity (STDP) mechanism is employed here to test if a + selected connection uses the correct instance of the mechanism. Thus, the + scenario in Test #1 is intentionally "a wrong one", as opposed to the + scenario in Test #2. In Test #1, one presynaptic neuron effectively + connects _via one synapse_ to two postsynaptic neurons, and the spike at + t=0.8ms in presynaptic neuron 0 will enhance potentiation in both the + first and the second synapse mechanism. In Test #2, this is prevented by + the 'round_robin_halt' policy, whereby the potentiation in the second + synapse mechanism is only enhanced by spikes of presynaptic neuron 1. +""" + + +class TestMultipleConnections(unittest.TestCase): + + # Constructor (overridden) + def __init__(self, args): + super(TestMultipleConnections, self).__init__(args) + + self.runtime = 2 # ms + self.dt = 0.01 # ms + + # Method creating a new mechanism for a synapse with STDP + def create_syn_mechanism(self, scale_contrib=1): + # create new synapse mechanism + syn_mechanism = arb.mechanism("expsyn_stdp") + + # set pre- and postsynaptic contributions for STDP + syn_mechanism.set("Apre", 0.01 * scale_contrib) + syn_mechanism.set("Apost", -0.01 * scale_contrib) + + # set minimal decay time + syn_mechanism.set("tau", self.dt) + + return syn_mechanism + + # Method that does the final evaluation for all tests + def evaluate_outcome(self, sim, handle_mem): + # membrane potential should temporarily be above the spiking threshold at around 1.0 ms (only testing this if the current node keeps the data, cf. GitHub issue #1892) + if len(sim.samples(handle_mem)) > 0: + data_mem, _ = sim.samples(handle_mem)[0] + # print(data_mem[(data_mem[:, 0] >= 1.0), 1]) + self.assertGreater(data_mem[(np.round(data_mem[:, 0], 2) == 1.02), 1], -10) + self.assertLess(data_mem[(np.round(data_mem[:, 0], 2) == 1.05), 1], -10) + + # neuron 3 should spike at around 1.0 ms, when the added input from all connections will cause threshold crossing + spike_times = sim.spikes()["time"] + spike_gids = sim.spikes()["source"]["gid"] + # print(list(zip(*[spike_times, spike_gids]))) + self.assertGreater(sum(spike_gids == 3), 0) + self.assertAlmostEqual(spike_times[(spike_gids == 3)][0], 1.00, delta=0.04) + + # Method that does additional evaluation for Test #1 + def evaluate_additional_outcome_1(self, sim, handle_mem): + # order of spiking neurons (also cf. 'test_spikes.py') + spike_gids = sim.spikes()["source"]["gid"] + self.assertEqual([2, 1, 0, 3, 3], spike_gids.tolist()) + + # neuron 3 should spike again at around 1.8 ms, when the added input from all connections will cause threshold crossing + spike_times = sim.spikes()["time"] + self.assertAlmostEqual(spike_times[(spike_gids == 3)][1], 1.80, delta=0.04) + + # Method that does additional evaluation for Test #2 and Test #3 + def evaluate_additional_outcome_2_3(self, sim, handle_mem): + # order of spiking neurons (also cf. 'test_spikes.py') + spike_gids = sim.spikes()["source"]["gid"] + self.assertEqual([2, 1, 0, 3], spike_gids.tolist()) + + # Method that runs the main part of Test #1 and Test #2 + def rr_main(self, context, art_spiker_recipe, weight, weight2): + # define new method 'cell_description()' and overwrite the original one in the 'art_spiker_recipe' object + create_syn_mechanism = self.create_syn_mechanism + + def cell_description(self, gid): + # spike source neuron + if gid < 3: + return arb.spike_source_cell( + "spike_source", arb.explicit_schedule(self.trains[gid]) + ) + + # spike-receiving cable neuron + elif gid == 3: + tree, labels, decor = self._cable_cell_elements() + + scale_stdp = 0.5 # use only half of the original magnitude for STDP because two connections will come into play + + decor.place( + '"midpoint"', + arb.synapse(create_syn_mechanism(scale_stdp)), + "postsyn_target", + ) # place synapse for input from one presynaptic neuron at the center of the soma + decor.place( + '"midpoint"', + arb.synapse(create_syn_mechanism(scale_stdp)), + "postsyn_target", + ) # place synapse for input from another presynaptic neuron at the center of the soma + # (using the same label as above!) + return arb.cable_cell(tree, labels, decor) + + art_spiker_recipe.cell_description = types.MethodType( + cell_description, art_spiker_recipe + ) + + # read connections from recipe for testing + connections_from_recipe = art_spiker_recipe.connections_on(3) + + # connection #1 from neuron 0 to 3 + self.assertEqual(connections_from_recipe[0].dest.label, "postsyn_target") + self.assertAlmostEqual(connections_from_recipe[0].weight, weight) + self.assertAlmostEqual(connections_from_recipe[0].delay, 0.2) + + # connection #2 from neuron 0 to 3 + self.assertEqual(connections_from_recipe[1].dest.label, "postsyn_target") + self.assertAlmostEqual(connections_from_recipe[1].weight, weight) + self.assertAlmostEqual(connections_from_recipe[1].delay, 0.2) + + # connection #1 from neuron 1 to 3 + self.assertEqual(connections_from_recipe[2].dest.label, "postsyn_target") + self.assertAlmostEqual(connections_from_recipe[2].weight, weight2) + self.assertAlmostEqual(connections_from_recipe[2].delay, 1.4) + + # connection #2 from neuron 1 to 3 + self.assertEqual(connections_from_recipe[3].dest.label, "postsyn_target") + self.assertAlmostEqual(connections_from_recipe[3].weight, weight2) + self.assertAlmostEqual(connections_from_recipe[3].delay, 1.4) + + # construct domain_decomposition and simulation object + sim = arb.simulation(art_spiker_recipe, context) + sim.record(arb.spike_recording.all) + + # create schedule and handle to record the membrane potential of neuron 3 + reg_sched = arb.regular_schedule(0, self.dt, self.runtime) + handle_mem = sim.sample((3, 0), reg_sched) + + # run the simulation + sim.run(self.runtime, self.dt) + + return sim, handle_mem + + # Test #1 (for 'round_robin') + @fixtures.context + @fixtures.art_spiker_recipe + @fixtures.sum_weight_hh_spike + @fixtures.sum_weight_hh_spike_2 + def test_multiple_connections_rr_no_halt( + self, context, art_spiker_recipe, sum_weight_hh_spike, sum_weight_hh_spike_2 + ): + weight = ( + sum_weight_hh_spike / 2 + ) # connection strength which is, summed over two connections, just enough to evoke an immediate spike at t=1ms + weight2 = ( + 0.97 * sum_weight_hh_spike_2 / 2 + ) # connection strength which is, summed over two connections, just NOT enough to evoke an immediate spike at t=1.8ms + + # define new method 'connections_on()' and overwrite the original one in the 'art_spiker_recipe' object + def connections_on(self, gid): + # incoming to neurons 0--2 + if gid < 3: + return [] + + # incoming to neuron 3 + elif gid == 3: + source_label_0 = arb.cell_global_label( + 0, "spike_source" + ) # referring to the "spike_source" label of neuron 0 + source_label_1 = arb.cell_global_label( + 1, "spike_source" + ) # referring to the "spike_source" label of neuron 1 + + target_label_rr = arb.cell_local_label( + "postsyn_target", arb.selection_policy.round_robin + ) # referring to the current item in the "postsyn_target" label group of neuron 3, moving to the next item afterwards + + conn_0_3_n1 = arb.connection( + source_label_0, target_label_rr, weight, 0.2 + ) # first connection from neuron 0 to 3 + conn_0_3_n2 = arb.connection( + source_label_0, target_label_rr, weight, 0.2 + ) # second connection from neuron 0 to 3 + # NOTE: this is not connecting to the same target label item as 'conn_0_3_n1' because 'round_robin' has been used before! + conn_1_3_n1 = arb.connection( + source_label_1, target_label_rr, weight2, 1.4 + ) # first connection from neuron 1 to 3 + conn_1_3_n2 = arb.connection( + source_label_1, target_label_rr, weight2, 1.4 + ) # second connection from neuron 1 to 3 + # NOTE: this is not connecting to the same target label item as 'conn_1_3_n1' because 'round_robin' has been used before! + + return [conn_0_3_n1, conn_0_3_n2, conn_1_3_n1, conn_1_3_n2] + + art_spiker_recipe.connections_on = types.MethodType( + connections_on, art_spiker_recipe + ) + + # run the main part of this test + sim, handle_mem = self.rr_main(context, art_spiker_recipe, weight, weight2) + + # evaluate the outcome + self.evaluate_outcome(sim, handle_mem) + self.evaluate_additional_outcome_1(sim, handle_mem) + + # Test #2 (for the combination of 'round_robin_halt' and 'round_robin') + @fixtures.context + @fixtures.art_spiker_recipe + @fixtures.sum_weight_hh_spike + @fixtures.sum_weight_hh_spike_2 + def test_multiple_connections_rr_halt( + self, context, art_spiker_recipe, sum_weight_hh_spike, sum_weight_hh_spike_2 + ): + weight = ( + sum_weight_hh_spike / 2 + ) # connection strength which is, summed over two connections, just enough to evoke an immediate spike at t=1ms + weight2 = ( + 0.97 * sum_weight_hh_spike_2 / 2 + ) # connection strength which is, summed over two connections, just NOT enough to evoke an immediate spike at t=1.8ms + + # define new method 'connections_on()' and overwrite the original one in the 'art_spiker_recipe' object + def connections_on(self, gid): + # incoming to neurons 0--2 + if gid < 3: + return [] + + # incoming to neuron 3 + elif gid == 3: + source_label_0 = arb.cell_global_label( + 0, "spike_source" + ) # referring to the "spike_source" label of neuron 0 + source_label_1 = arb.cell_global_label( + 1, "spike_source" + ) # referring to the "spike_source" label of neuron 1 + + target_label_rr_halt = arb.cell_local_label( + "postsyn_target", arb.selection_policy.round_robin_halt + ) # referring to the current item in the "postsyn_target" label group of neuron 3 + target_label_rr = arb.cell_local_label( + "postsyn_target", arb.selection_policy.round_robin + ) # referring to the current item in the "postsyn_target" label group of neuron 3, moving to the next item afterwards + + conn_0_3_n1 = arb.connection( + source_label_0, target_label_rr_halt, weight, 0.2 + ) # first connection from neuron 0 to 3 + conn_0_3_n2 = arb.connection( + source_label_0, target_label_rr, weight, 0.2 + ) # second connection from neuron 0 to 3 + conn_1_3_n1 = arb.connection( + source_label_1, target_label_rr_halt, weight2, 1.4 + ) # first connection from neuron 1 to 3 + conn_1_3_n2 = arb.connection( + source_label_1, target_label_rr, weight2, 1.4 + ) # second connection from neuron 1 to 3 + + return [conn_0_3_n1, conn_0_3_n2, conn_1_3_n1, conn_1_3_n2] + + art_spiker_recipe.connections_on = types.MethodType( + connections_on, art_spiker_recipe + ) + + # run the main part of this test + sim, handle_mem = self.rr_main(context, art_spiker_recipe, weight, weight2) + + # evaluate the outcome + self.evaluate_outcome(sim, handle_mem) + self.evaluate_additional_outcome_2_3(sim, handle_mem) + + # Test #3 (for 'univalent') + @fixtures.context + @fixtures.art_spiker_recipe + @fixtures.sum_weight_hh_spike + @fixtures.sum_weight_hh_spike_2 + def test_multiple_connections_uni( + self, context, art_spiker_recipe, sum_weight_hh_spike, sum_weight_hh_spike_2 + ): + weight = sum_weight_hh_spike # connection strength which is just enough to evoke an immediate spike at t=1ms (equaling the sum of two connections in Test #2) + weight2 = ( + 0.97 * sum_weight_hh_spike_2 + ) # connection strength which is just NOT enough to evoke an immediate spike at t=1.8ms (equaling the sum of two connections in Test #2) + + # define new method 'connections_on()' and overwrite the original one in the 'art_spiker_recipe' object + def connections_on(self, gid): + # incoming to neurons 0--2 + if gid < 3: + return [] + + # incoming to neuron 3 + elif gid == 3: + source_label_0 = arb.cell_global_label( + 0, "spike_source" + ) # referring to the "spike_source" label of neuron 0 + source_label_1 = arb.cell_global_label( + 1, "spike_source" + ) # referring to the "spike_source" label of neuron 1 + + target_label_uni_n1 = arb.cell_local_label( + "postsyn_target_1", arb.selection_policy.univalent + ) # referring to an only item in the "postsyn_target_1" label group of neuron 3 + target_label_uni_n2 = arb.cell_local_label( + "postsyn_target_2", arb.selection_policy.univalent + ) # referring to an only item in the "postsyn_target_2" label group of neuron 3 + + conn_0_3 = arb.connection( + source_label_0, target_label_uni_n1, weight, 0.2 + ) # connection from neuron 0 to 3 + conn_1_3 = arb.connection( + source_label_1, target_label_uni_n2, weight2, 1.4 + ) # connection from neuron 1 to 3 + + return [conn_0_3, conn_1_3] + + art_spiker_recipe.connections_on = types.MethodType( + connections_on, art_spiker_recipe + ) + + # define new method 'cell_description()' and overwrite the original one in the 'art_spiker_recipe' object + create_syn_mechanism = self.create_syn_mechanism + + def cell_description(self, gid): + # spike source neuron + if gid < 3: + return arb.spike_source_cell( + "spike_source", arb.explicit_schedule(self.trains[gid]) + ) + + # spike-receiving cable neuron + elif gid == 3: + tree, labels, decor = self._cable_cell_elements() + + decor.place( + '"midpoint"', + arb.synapse(create_syn_mechanism()), + "postsyn_target_1", + ) # place synapse for input from one presynaptic neuron at the center of the soma + decor.place( + '"midpoint"', + arb.synapse(create_syn_mechanism()), + "postsyn_target_2", + ) # place synapse for input from another presynaptic neuron at the center of the soma + # (using another label as above!) + + return arb.cable_cell(tree, labels, decor) + + art_spiker_recipe.cell_description = types.MethodType( + cell_description, art_spiker_recipe + ) + + # read connections from recipe for testing + connections_from_recipe = art_spiker_recipe.connections_on(3) + + # connection from neuron 0 to 3 + self.assertEqual(connections_from_recipe[0].dest.label, "postsyn_target_1") + self.assertAlmostEqual(connections_from_recipe[0].weight, weight) + self.assertAlmostEqual(connections_from_recipe[0].delay, 0.2) + + # connection from neuron 1 to 3 + self.assertEqual(connections_from_recipe[1].dest.label, "postsyn_target_2") + self.assertAlmostEqual(connections_from_recipe[1].weight, weight2) + self.assertAlmostEqual(connections_from_recipe[1].delay, 1.4) + + # construct simulation object + sim = arb.simulation(art_spiker_recipe, context) + sim.record(arb.spike_recording.all) + + # create schedule and handle to record the membrane potential of neuron 3 + reg_sched = arb.regular_schedule(0, self.dt, self.runtime) + handle_mem = sim.sample((3, 0), reg_sched) + + # run the simulation + sim.run(self.runtime, self.dt) + + # evaluate the outcome + self.evaluate_outcome(sim, handle_mem) + self.evaluate_additional_outcome_2_3(sim, handle_mem) diff --git a/python/test/unit/test_profiling.py b/python/test/unit/test_profiling.py index 41f406c04b..9249573c87 100644 --- a/python/test/unit/test_profiling.py +++ b/python/test/unit/test_profiling.py @@ -6,16 +6,17 @@ import arbor as arb import functools -from .. import fixtures """ all tests for profiling """ + def lazy_skipIf(condition, reason): """ Postpone skip evaluation until test is ran by evaluating callable `condition` """ + def inner_decorator(f): @functools.wraps(f) def wrapped(*args, **kwargs): @@ -28,14 +29,12 @@ def wrapped(*args, **kwargs): return inner_decorator + class a_recipe(arb.recipe): def __init__(self): arb.recipe.__init__(self) self.props = arb.neuron_cable_properties() - self.trains = [ - [0.8, 2, 2.1, 3], - [0.4, 2, 2.2, 3.1, 4.5], - [0.2, 2, 2.8, 3]] + self.trains = [[0.8, 2, 2.1, 3], [0.4, 2, 2.2, 3.1, 4.5], [0.2, 2, 2.8, 3]] def num_cells(self): return 3 @@ -58,20 +57,34 @@ def probes(self, gid): def cell_description(self, gid): return arb.spike_source_cell("src", arb.explicit_schedule(self.trains[gid])) + def skipWithoutSupport(): return not bool(arb.config().get("profiling", False)) + class TestProfiling(unittest.TestCase): def test_support(self): - self.assertTrue("profiling" in arb.config(), 'profiling key not in config') + self.assertTrue("profiling" in arb.config(), "profiling key not in config") profiling_support = arb.config()["profiling"] - self.assertEqual(bool, type(profiling_support), 'profiling flag should be bool') + self.assertEqual(bool, type(profiling_support), "profiling flag should be bool") if profiling_support: - self.assertTrue(hasattr(arb, "profiler_initialize"), 'missing profiling interface with profiling support') - self.assertTrue(hasattr(arb, "profiler_summary"), 'missing profiling interface with profiling support') + self.assertTrue( + hasattr(arb, "profiler_initialize"), + "missing profiling interface with profiling support", + ) + self.assertTrue( + hasattr(arb, "profiler_summary"), + "missing profiling interface with profiling support", + ) else: - self.assertFalse(hasattr(arb, "profiler_initialize"), 'profiling interface without profiling support') - self.assertFalse(hasattr(arb, "profiler_summary"), 'profiling interface without profiling support') + self.assertFalse( + hasattr(arb, "profiler_initialize"), + "profiling interface without profiling support", + ) + self.assertFalse( + hasattr(arb, "profiler_summary"), + "profiling interface without profiling support", + ) @lazy_skipIf(skipWithoutSupport, "run test only with profiling support") def test_summary(self): @@ -79,7 +92,7 @@ def test_summary(self): arb.profiler_initialize(context) recipe = a_recipe() dd = arb.partition_load_balance(recipe, context) - arb.simulation(recipe, dd, context).run(1) + arb.simulation(recipe, context, dd).run(1) summary = arb.profiler_summary() - self.assertEqual(str, type(summary), 'profiler summary must be str') - self.assertTrue(summary, 'empty summary') + self.assertEqual(str, type(summary), "profiler summary must be str") + self.assertTrue(summary, "empty summary") diff --git a/python/test/unit/test_schedules.py b/python/test/unit/test_schedules.py index 3742fe2086..0a7c747ec1 100644 --- a/python/test/unit/test_schedules.py +++ b/python/test/unit/test_schedules.py @@ -5,66 +5,65 @@ import unittest import arbor as arb -from .. import fixtures """ all tests for schedules (regular, explicit, poisson) """ + class TestRegularSchedule(unittest.TestCase): def test_none_ctor_regular_schedule(self): rs = arb.regular_schedule(tstart=0, dt=0.1, tstop=None) self.assertEqual(rs.dt, 0.1) def test_tstart_dt_tstop_ctor_regular_schedule(self): - rs = arb.regular_schedule(10., 1., 20.) - self.assertEqual(rs.tstart, 10.) - self.assertEqual(rs.dt, 1.) - self.assertEqual(rs.tstop, 20.) + rs = arb.regular_schedule(10.0, 1.0, 20.0) + self.assertEqual(rs.tstart, 10.0) + self.assertEqual(rs.dt, 1.0) + self.assertEqual(rs.tstop, 20.0) def test_set_tstart_dt_tstop_regular_schedule(self): rs = arb.regular_schedule(0.1) self.assertAlmostEqual(rs.dt, 0.1, places=1) - rs.tstart = 17. + rs.tstart = 17.0 rs.dt = 0.5 - rs.tstop = 42. - self.assertEqual(rs.tstart, 17.) + rs.tstop = 42.0 + self.assertEqual(rs.tstart, 17.0) self.assertAlmostEqual(rs.dt, 0.5, places=1) - self.assertEqual(rs.tstop, 42.) + self.assertEqual(rs.tstop, 42.0) def test_events_regular_schedule(self): expected = [0, 0.25, 0.5, 0.75, 1.0] - rs = arb.regular_schedule(tstart=0., dt=0.25, tstop=1.25) - self.assertEqual(expected, rs.events(0., 1.25)) - self.assertEqual(expected, rs.events(0., 5.)) - self.assertEqual([], rs.events(5., 10.)) + rs = arb.regular_schedule(tstart=0.0, dt=0.25, tstop=1.25) + self.assertEqual(expected, rs.events(0.0, 1.25)) + self.assertEqual(expected, rs.events(0.0, 5.0)) + self.assertEqual([], rs.events(5.0, 10.0)) def test_exceptions_regular_schedule(self): - with self.assertRaisesRegex(RuntimeError, - "tstart must be a non-negative number"): - arb.regular_schedule(tstart=-1., dt=0.1) - with self.assertRaisesRegex(RuntimeError, - "dt must be a positive number"): + with self.assertRaisesRegex( + RuntimeError, "tstart must be a non-negative number" + ): + arb.regular_schedule(tstart=-1.0, dt=0.1) + with self.assertRaisesRegex(RuntimeError, "dt must be a positive number"): arb.regular_schedule(dt=-0.1) - with self.assertRaisesRegex(RuntimeError, - "dt must be a positive number"): + with self.assertRaisesRegex(RuntimeError, "dt must be a positive number"): arb.regular_schedule(dt=0) with self.assertRaises(TypeError): arb.regular_schedule(dt=None) with self.assertRaises(TypeError): - arb.regular_schedule(dt='dt') - with self.assertRaisesRegex(RuntimeError, - "tstop must be a non-negative number, or None"): - arb.regular_schedule(tstart=0, dt=0.1, tstop='tstop') - with self.assertRaisesRegex(RuntimeError, - "t0 must be a non-negative number"): - rs = arb.regular_schedule(0., 1., 10.) + arb.regular_schedule(dt="dt") + with self.assertRaisesRegex( + RuntimeError, "tstop must be a non-negative number, or None" + ): + arb.regular_schedule(tstart=0, dt=0.1, tstop="tstop") + with self.assertRaisesRegex(RuntimeError, "t0 must be a non-negative number"): + rs = arb.regular_schedule(0.0, 1.0, 10.0) rs.events(-1, 0) - with self.assertRaisesRegex(RuntimeError, - "t1 must be a non-negative number"): - rs = arb.regular_schedule(0., 1., 10.) + with self.assertRaisesRegex(RuntimeError, "t1 must be a non-negative number"): + rs = arb.regular_schedule(0.0, 1.0, 10.0) rs.events(0, -10) + class TestExplicitSchedule(unittest.TestCase): def test_times_contor_explicit_schedule(self): es = arb.explicit_schedule([1, 2, 3, 4.5]) @@ -80,97 +79,111 @@ def test_events_explicit_schedule(self): expected = [0.1, 0.3, 1.0] es = arb.explicit_schedule(times) for i in range(len(expected)): - self.assertAlmostEqual(expected[i], es.events(0., 1.25)[i], places = 2) + self.assertAlmostEqual(expected[i], es.events(0.0, 1.25)[i], places=2) expected = [0.3, 1.0, 1.25, 1.7] for i in range(len(expected)): - self.assertAlmostEqual(expected[i], es.events(0.3, 1.71)[i], places = 2) + self.assertAlmostEqual(expected[i], es.events(0.3, 1.71)[i], places=2) def test_exceptions_explicit_schedule(self): - with self.assertRaisesRegex(RuntimeError, - "explicit time schedule cannot contain negative values"): + with self.assertRaisesRegex( + RuntimeError, "explicit time schedule cannot contain negative values" + ): arb.explicit_schedule([-1]) with self.assertRaises(TypeError): - arb.explicit_schedule(['times']) + arb.explicit_schedule(["times"]) with self.assertRaises(TypeError): arb.explicit_schedule([None]) with self.assertRaises(TypeError): - arb.explicit_schedule([[1,2,3]]) - with self.assertRaisesRegex(RuntimeError, - "t1 must be a non-negative number"): + arb.explicit_schedule([[1, 2, 3]]) + with self.assertRaisesRegex(RuntimeError, "t1 must be a non-negative number"): rs = arb.regular_schedule(0.1) - rs.events(1., -1.) + rs.events(1.0, -1.0) + class TestPoissonSchedule(unittest.TestCase): def test_freq_poisson_schedule(self): - ps = arb.poisson_schedule(42.) - self.assertEqual(ps.freq, 42.) + ps = arb.poisson_schedule(42.0) + self.assertEqual(ps.freq, 42.0) def test_freq_tstart_contor_poisson_schedule(self): - ps = arb.poisson_schedule(freq = 5., tstart = 4.3) - self.assertEqual(ps.freq, 5.) + ps = arb.poisson_schedule(freq=5.0, tstart=4.3) + self.assertEqual(ps.freq, 5.0) self.assertEqual(ps.tstart, 4.3) def test_freq_seed_contor_poisson_schedule(self): - ps = arb.poisson_schedule(freq = 5., seed = 42) - self.assertEqual(ps.freq, 5.) + ps = arb.poisson_schedule(freq=5.0, seed=42) + self.assertEqual(ps.freq, 5.0) self.assertEqual(ps.seed, 42) def test_tstart_freq_seed_contor_poisson_schedule(self): - ps = arb.poisson_schedule(10., 100., 1000) - self.assertEqual(ps.tstart, 10.) - self.assertEqual(ps.freq, 100.) + ps = arb.poisson_schedule(10.0, 100.0, 1000) + self.assertEqual(ps.tstart, 10.0) + self.assertEqual(ps.freq, 100.0) self.assertEqual(ps.seed, 1000) def test_events_poisson_schedule(self): expected = [17.4107, 502.074, 506.111, 597.116] - ps = arb.poisson_schedule(0., 0.01, 0) + ps = arb.poisson_schedule(0.0, 0.01, 0) for i in range(len(expected)): - self.assertAlmostEqual(expected[i], ps.events(0., 600.)[i], places = 3) - expected = [5030.22, 5045.75, 5069.84, 5091.56, 5182.17, 5367.3, 5566.73, 5642.13, 5719.85, 5796, 5808.33] + self.assertAlmostEqual(expected[i], ps.events(0.0, 600.0)[i], places=3) + expected = [ + 5030.22, + 5045.75, + 5069.84, + 5091.56, + 5182.17, + 5367.3, + 5566.73, + 5642.13, + 5719.85, + 5796, + 5808.33, + ] for i in range(len(expected)): - self.assertAlmostEqual(expected[i], ps.events(5000., 6000.)[i], places = 2) + self.assertAlmostEqual(expected[i], ps.events(5000.0, 6000.0)[i], places=2) def test_exceptions_poisson_schedule(self): with self.assertRaises(TypeError): arb.poisson_schedule() with self.assertRaises(TypeError): - arb.poisson_schedule(tstart = 10.) + arb.poisson_schedule(tstart=10.0) with self.assertRaises(TypeError): - arb.poisson_schedule(seed = 1432) - with self.assertRaisesRegex(RuntimeError, - "tstart must be a non-negative number"): - arb.poisson_schedule(freq=34., tstart = -10.) + arb.poisson_schedule(seed=1432) + with self.assertRaisesRegex( + RuntimeError, "tstart must be a non-negative number" + ): + arb.poisson_schedule(freq=34.0, tstart=-10.0) with self.assertRaises(TypeError): - arb.poisson_schedule(freq=34., tstart = None) + arb.poisson_schedule(freq=34.0, tstart=None) with self.assertRaises(TypeError): - arb.poisson_schedule(freq=34., tstart = 'tstart') - with self.assertRaisesRegex(RuntimeError, - "frequency must be a non-negative number"): - arb.poisson_schedule(freq = -100.) + arb.poisson_schedule(freq=34.0, tstart="tstart") + with self.assertRaisesRegex( + RuntimeError, "frequency must be a non-negative number" + ): + arb.poisson_schedule(freq=-100.0) with self.assertRaises(TypeError): - arb.poisson_schedule(freq = 'freq') + arb.poisson_schedule(freq="freq") with self.assertRaises(TypeError): - arb.poisson_schedule(freq=34., seed = -1) + arb.poisson_schedule(freq=34.0, seed=-1) with self.assertRaises(TypeError): - arb.poisson_schedule(freq=34., seed = 10.) + arb.poisson_schedule(freq=34.0, seed=10.0) with self.assertRaises(TypeError): - arb.poisson_schedule(freq=34., seed = 'seed') + arb.poisson_schedule(freq=34.0, seed="seed") with self.assertRaises(TypeError): - arb.poisson_schedule(freq=34., seed = None) - with self.assertRaisesRegex(RuntimeError, - "t0 must be a non-negative number"): - ps = arb.poisson_schedule(0,0.01) - ps.events(-1., 1.) - with self.assertRaisesRegex(RuntimeError, - "t1 must be a non-negative number"): - ps = arb.poisson_schedule(0,0.01) - ps.events(1., -1.) - with self.assertRaisesRegex(RuntimeError, - "tstop must be a non-negative number, or None"): - arb.poisson_schedule(0, 0.1, tstop='tstop') - ps.events(1., -1.) + arb.poisson_schedule(freq=34.0, seed=None) + with self.assertRaisesRegex(RuntimeError, "t0 must be a non-negative number"): + ps = arb.poisson_schedule(0, 0.01) + ps.events(-1.0, 1.0) + with self.assertRaisesRegex(RuntimeError, "t1 must be a non-negative number"): + ps = arb.poisson_schedule(0, 0.01) + ps.events(1.0, -1.0) + with self.assertRaisesRegex( + RuntimeError, "tstop must be a non-negative number, or None" + ): + arb.poisson_schedule(0, 0.1, tstop="tstop") + ps.events(1.0, -1.0) def test_tstop_poisson_schedule(self): tstop = 50 - events = arb.poisson_schedule(0., 1, 0, tstop).events(0, 100) - self.assertTrue(max(events) < tstop) \ No newline at end of file + events = arb.poisson_schedule(0.0, 1, 0, tstop).events(0, 100) + self.assertTrue(max(events) < tstop) diff --git a/python/test/unit/test_spikes.py b/python/test/unit/test_spikes.py index d7b32d34af..f0e67fe0ba 100644 --- a/python/test/unit/test_spikes.py +++ b/python/test/unit/test_spikes.py @@ -10,6 +10,7 @@ all tests for the simulator wrapper """ + class TestSpikes(unittest.TestCase): # test that all spikes are sorted by time then by gid @fixtures.art_spiking_sim @@ -28,4 +29,6 @@ def test_spikes_sorted(self, art_spiking_sim): gids = spikes["source"]["gid"].tolist() self.assertEqual([2, 1, 0, 0, 1, 2, 0, 1, 2, 0, 2, 1, 1], gids) - self.assertEqual([0.2, 0.4, 0.8, 2., 2., 2., 2.1, 2.2, 2.8, 3., 3., 3.1, 4.5], times) + self.assertEqual( + [0.2, 0.4, 0.8, 2.0, 2.0, 2.0, 2.1, 2.2, 2.8, 3.0, 3.0, 3.1, 4.5], times + ) diff --git a/python/test/unit_distributed/test_contexts_arbmpi.py b/python/test/unit_distributed/test_contexts_arbmpi.py index d7165a909e..fca089bf41 100644 --- a/python/test/unit_distributed/test_contexts_arbmpi.py +++ b/python/test/unit_distributed/test_contexts_arbmpi.py @@ -5,11 +5,13 @@ import unittest import arbor as arb -from .. import fixtures, cases +from .. import cases """ all tests for distributed arb.context using arbor mpi wrappers """ + + @cases.skipIfNotDistributed() class TestContexts_arbmpi(unittest.TestCase): # Initialize mpi only once in this class (when adding classes move initialization to setUpModule() @@ -19,6 +21,7 @@ def setUpClass(self): if not arb.mpi_is_initialized(): arb.mpi_init() self.local_mpi = True + # Finalize mpi only once in this class (when adding classes move finalization to setUpModule() @classmethod def tearDownClass(self): @@ -32,7 +35,7 @@ def test_communicator_arbmpi(self): comm = arb.mpi_comm() # test that by default communicator is MPI_COMM_WORLD - self.assertEqual(str(comm), '') + self.assertEqual(str(comm), "") def test_context_arbmpi(self): comm = arb.mpi_comm() @@ -54,11 +57,13 @@ def test_context_allocation_arbmpi(self): def test_exceptions_context_arbmpi(self): alloc = arb.proc_allocation() - with self.assertRaisesRegex(RuntimeError, - "mpi must be None, or an MPI communicator"): - arb.context(mpi='MPI_COMM_WORLD') - with self.assertRaisesRegex(RuntimeError, - "mpi must be None, or an MPI communicator"): + with self.assertRaisesRegex( + RuntimeError, "mpi must be None, or an MPI communicator" + ): + arb.context(mpi="MPI_COMM_WORLD") + with self.assertRaisesRegex( + RuntimeError, "mpi must be None, or an MPI communicator" + ): arb.context(alloc, mpi=0) def test_finalized_arbmpi(self): diff --git a/python/test/unit_distributed/test_contexts_mpi4py.py b/python/test/unit_distributed/test_contexts_mpi4py.py index a22d065cc1..335907f7f4 100644 --- a/python/test/unit_distributed/test_contexts_mpi4py.py +++ b/python/test/unit_distributed/test_contexts_mpi4py.py @@ -5,18 +5,20 @@ import unittest import arbor as arb -from .. import fixtures, cases +from .. import cases # check Arbor's configuration of mpi -mpi_enabled = arb.__config__["mpi"] +mpi_enabled = arb.__config__["mpi"] mpi4py_enabled = arb.__config__["mpi4py"] -if (mpi_enabled and mpi4py_enabled): +if mpi_enabled and mpi4py_enabled: import mpi4py.MPI as mpi """ all tests for distributed arb.context using mpi4py """ + + # Only test class if env var ARB_WITH_MPI4PY=ON @cases.skipIfNotDistributed() class TestContexts_mpi4py(unittest.TestCase): @@ -28,7 +30,7 @@ def test_communicator_mpi4py(self): comm = arb.mpi_comm(mpi.COMM_WORLD) # test that set communicator is MPI_COMM_WORLD - self.assertEqual(str(comm), '') + self.assertEqual(str(comm), "") def test_context_mpi4py(self): comm = arb.mpi_comm(mpi.COMM_WORLD) @@ -50,11 +52,13 @@ def test_context_allocation_mpi4py(self): def test_exceptions_context_arbmpi(self): alloc = arb.proc_allocation() - with self.assertRaisesRegex(RuntimeError, - "mpi must be None, or an MPI communicator"): - arb.context(mpi='MPI_COMM_WORLD') - with self.assertRaisesRegex(RuntimeError, - "mpi must be None, or an MPI communicator"): + with self.assertRaisesRegex( + RuntimeError, "mpi must be None, or an MPI communicator" + ): + arb.context(mpi="MPI_COMM_WORLD") + with self.assertRaisesRegex( + RuntimeError, "mpi must be None, or an MPI communicator" + ): arb.context(alloc, mpi=0) def test_finalized_mpi4py(self): diff --git a/python/test/unit_distributed/test_domain_decompositions.py b/python/test/unit_distributed/test_domain_decompositions.py index 3c125c75cb..e19bd55c0f 100644 --- a/python/test/unit_distributed/test_domain_decompositions.py +++ b/python/test/unit_distributed/test_domain_decompositions.py @@ -5,7 +5,7 @@ import unittest import arbor as arb -from .. import fixtures, cases +from .. import cases # check Arbor's configuration of mpi and gpu mpi_enabled = arb.__config__["mpi"] @@ -15,8 +15,9 @@ all tests for distributed arb.domain_decomposition """ + # Dummy recipe -class homo_recipe (arb.recipe): +class homo_recipe(arb.recipe): def __init__(self, n=4): arb.recipe.__init__(self) self.ncells = n @@ -28,11 +29,12 @@ def cell_description(self, gid): return [] def cell_kind(self, gid): - return arb.cell_kind.cable + return arb.cell_kind.cable + # Heterogenous cell population of cable and rss cells. # Interleaved so that cells with even gid are cable cells, and even gid are spike source cells. -class hetero_recipe (arb.recipe): +class hetero_recipe(arb.recipe): def __init__(self, n=4): arb.recipe.__init__(self) self.ncells = n @@ -44,11 +46,11 @@ def cell_description(self, gid): tree = arb.segment_tree() tree.append(arb.mnpos, arb.mpoint(-3, 0, 0, 3), arb.mpoint(3, 0, 0, 3), tag=1) decor = arb.decor() - decor.place('(location 0 0.5)', arb.gap_junction_site(), "gj") + decor.place("(location 0 0.5)", arb.gap_junction_site(), "gj") return arb.cable_cell(tree, arb.label_dict(), decor) def cell_kind(self, gid): - if (gid%2): + if gid % 2: return arb.cell_kind.spike_source else: return arb.cell_kind.cable @@ -59,6 +61,7 @@ def connections_on(self, gid): def event_generators(self, gid): return [] + class gj_switch: def __init__(self, gid, shift): self.gid_ = gid @@ -66,34 +69,41 @@ def __init__(self, gid, shift): def switch(self, arg): default = [] - return getattr(self, 'case_' + str(arg), lambda: default)() + return getattr(self, "case_" + str(arg), lambda: default)() def case_1(self): return [arb.gap_junction_connection((7 + self.shift_, "gj"), "gj", 0.1)] def case_2(self): - return [arb.gap_junction_connection((6 + self.shift_, "gj"), "gj", 0.1), - arb.gap_junction_connection((9 + self.shift_, "gj"), "gj", 0.1)] + return [ + arb.gap_junction_connection((6 + self.shift_, "gj"), "gj", 0.1), + arb.gap_junction_connection((9 + self.shift_, "gj"), "gj", 0.1), + ] def case_6(self): - return [arb.gap_junction_connection((2 + self.shift_, "gj"), "gj", 0.1), - arb.gap_junction_connection((7 + self.shift_, "gj"), "gj", 0.1)] + return [ + arb.gap_junction_connection((2 + self.shift_, "gj"), "gj", 0.1), + arb.gap_junction_connection((7 + self.shift_, "gj"), "gj", 0.1), + ] def case_7(self): - return [arb.gap_junction_connection((6 + self.shift_, "gj"), "gj", 0.1), - arb.gap_junction_connection((1 + self.shift_, "gj"), "gj", 0.1)] + return [ + arb.gap_junction_connection((6 + self.shift_, "gj"), "gj", 0.1), + arb.gap_junction_connection((1 + self.shift_, "gj"), "gj", 0.1), + ] def case_9(self): return [arb.gap_junction_connection((2 + self.shift_, "gj"), "gj", 0.1)] -class gj_symmetric (arb.recipe): + +class gj_symmetric(arb.recipe): def __init__(self, num_ranks): arb.recipe.__init__(self) self.ncopies = num_ranks - self.size = 10 + self.size = 10 def num_cells(self): - return self.size*self.ncopies + return self.size * self.ncopies def cell_description(self, gid): return [] @@ -102,41 +112,43 @@ def cell_kind(self, gid): return arb.cell_kind.cable def gap_junctions_on(self, gid): - shift = int((gid/self.size)) + shift = int((gid / self.size)) shift *= self.size s = gj_switch(gid, shift) - return s.switch(gid%self.size) + return s.switch(gid % self.size) + -class gj_non_symmetric (arb.recipe): +class gj_non_symmetric(arb.recipe): def __init__(self, num_ranks): arb.recipe.__init__(self) self.groups = num_ranks - self.size = num_ranks + self.size = num_ranks def num_cells(self): - return self.size*self.groups + return self.size * self.groups def cell_description(self, gid): tree = arb.segment_tree() tree.append(arb.mnpos, arb.mpoint(-3, 0, 0, 3), arb.mpoint(3, 0, 0, 3), tag=1) decor = arb.decor() - decor.place('(location 0 0.5)', arb.gap_junction_site(), "gj") + decor.place("(location 0 0.5)", arb.gap_junction_site(), "gj") return arb.cable_cell(tree, arb.label_dict(), decor) def cell_kind(self, gid): return arb.cell_kind.cable def gap_junctions_on(self, gid): - group = int(gid/self.groups) - id = gid%self.size + group = int(gid / self.groups) + id = gid % self.size - if (id == group and group != (self.groups - 1)): + if id == group and group != (self.groups - 1): return [arb.gap_junction_connection((gid + self.size, "gj"), "gj", 0.1)] - elif (id == group - 1): + elif id == group - 1: return [arb.gap_junction_connection((gid - self.size, "gj"), "gj", 0.1)] else: return [] + @cases.skipIfNotDistributed() class TestDomain_Decompositions_Distributed(unittest.TestCase): # Initialize mpi only once in this class (when adding classes move initialization to setUpModule() @@ -146,6 +158,7 @@ def setUpClass(self): if not arb.mpi_is_initialized(): arb.mpi_init() self.local_mpi = True + # Finalize mpi only once in this class (when adding classes move finalization to setUpModule() @classmethod def tearDownClass(self): @@ -154,14 +167,14 @@ def tearDownClass(self): # 1 node with 1 cpu core, no gpus; assumes all cells will be put into cell groups of size 1 def test_domain_decomposition_homogenous_MC(self): - if (mpi_enabled): + if mpi_enabled: comm = arb.mpi_comm() context = arb.context(threads=1, gpu_id=None, mpi=comm) else: context = arb.context(threads=1, gpu_id=None) N = context.ranks - I = context.rank + R = context.rank # 10 cells per domain n_local = 10 @@ -174,12 +187,12 @@ def test_domain_decomposition_homogenous_MC(self): self.assertEqual(decomp.num_global_cells, n_global) self.assertEqual(len(decomp.groups), n_local) - b = I * n_local - e = (I + 1) * n_local - gids = list(range(b,e)) + b = R * n_local + e = (R + 1) * n_local + gids = list(range(b, e)) for gid in gids: - self.assertEqual(I, decomp.gid_domain(gid)) + self.assertEqual(R, decomp.gid_domain(gid)) # Each cell group contains 1 cell of kind cable # Each group should also be tagged for cpu execution @@ -194,17 +207,17 @@ def test_domain_decomposition_homogenous_MC(self): self.assertEqual(grp.kind, arb.cell_kind.cable) # 1 node with 1 cpu core, 1 gpu; assumes all cells will be placed on gpu in a single cell group - @unittest.skipIf(gpu_enabled == False, "GPU not enabled") + @unittest.skipIf(gpu_enabled is False, "GPU not enabled") def test_domain_decomposition_homogenous_GPU(self): - if (mpi_enabled): + if mpi_enabled: comm = arb.mpi_comm() context = arb.context(threads=1, gpu_id=0, mpi=comm) else: context = arb.context(threads=1, gpu_id=0) N = context.ranks - I = context.rank + R = context.rank # 10 cells per domain n_local = 10 @@ -217,12 +230,13 @@ def test_domain_decomposition_homogenous_GPU(self): self.assertEqual(decomp.num_global_cells, n_global) self.assertEqual(len(decomp.groups), 1) - b = I * n_local - e = (I + 1) * n_local - gids = list(range(b,e)) + b = R * n_local + e = (R + 1) * n_local + + gids = list(range(b, e)) for gid in gids: - self.assertEqual(I, decomp.gid_domain(gid)) + self.assertEqual(R, decomp.gid_domain(gid)) # Each cell group contains 1 cell of kind cable # Each group should also be tagged for gpu execution @@ -231,25 +245,25 @@ def test_domain_decomposition_homogenous_GPU(self): self.assertEqual(len(grp.gids), n_local) self.assertEqual(grp.gids[0], b) - self.assertEqual(grp.gids[-1], e-1) + self.assertEqual(grp.gids[-1], e - 1) self.assertEqual(grp.backend, arb.backend.gpu) self.assertEqual(grp.kind, arb.cell_kind.cable) # 1 node with 1 cpu core, no gpus; assumes all cells will be put into cell groups of size 1 def test_domain_decomposition_heterogenous_MC(self): - if (mpi_enabled): + if mpi_enabled: comm = arb.mpi_comm() context = arb.context(threads=1, gpu_id=None, mpi=comm) else: context = arb.context(threads=1, gpu_id=None) N = context.ranks - I = context.rank + R = context.rank # 10 cells per domain n_local = 10 n_global = n_local * N - n_local_groups = n_local # 1 cell per group + n_local_groups = n_local # 1 cell per group recipe = hetero_recipe(n_global) decomp = arb.partition_load_balance(recipe, context) @@ -258,12 +272,13 @@ def test_domain_decomposition_heterogenous_MC(self): self.assertEqual(decomp.num_global_cells, n_global) self.assertEqual(len(decomp.groups), n_local) - b = I * n_local - e = (I + 1) * n_local - gids = list(range(b,e)) + b = R * n_local + e = (R + 1) * n_local + + gids = list(range(b, e)) for gid in gids: - self.assertEqual(I, decomp.gid_domain(gid)) + self.assertEqual(R, decomp.gid_domain(gid)) # Each cell group contains 1 cell of kind cable # Each group should also be tagged for cpu execution @@ -282,14 +297,14 @@ def test_domain_decomposition_heterogenous_MC(self): kinds = [arb.cell_kind.cable, arb.cell_kind.spike_source] for k in kinds: gids = kind_lists[k] - self.assertEqual(len(gids), int(n_local/2)) + self.assertEqual(len(gids), int(n_local / 2)) for gid in gids: self.assertEqual(k, recipe.cell_kind(gid)) def test_domain_decomposition_symmetric(self): nranks = 1 rank = 0 - if (mpi_enabled): + if mpi_enabled: comm = arb.mpi_comm() context = arb.context(threads=1, gpu_id=None, mpi=comm) nranks = context.ranks @@ -302,22 +317,24 @@ def test_domain_decomposition_symmetric(self): self.assertEqual(6, len(decomp0.groups)) - shift = int((rank * recipe.num_cells())/nranks) + shift = int((rank * recipe.num_cells()) / nranks) - exp_groups0 = [ [0 + shift], - [3 + shift], - [4 + shift], - [5 + shift], - [8 + shift], - [1 + shift, 2 + shift, 6 + shift, 7 + shift, 9 + shift]] + exp_groups0 = [ + [0 + shift], + [3 + shift], + [4 + shift], + [5 + shift], + [8 + shift], + [1 + shift, 2 + shift, 6 + shift, 7 + shift, 9 + shift], + ] for i in range(6): self.assertEqual(exp_groups0[i], decomp0.groups[i].gids) - cells_per_rank = int(recipe.num_cells()/nranks) + cells_per_rank = int(recipe.num_cells() / nranks) for i in range(recipe.num_cells()): - self.assertEqual(int(i/cells_per_rank), decomp0.gid_domain(i)) + self.assertEqual(int(i / cells_per_rank), decomp0.gid_domain(i)) # Test different group_hints hint1 = arb.partition_hint() @@ -328,35 +345,47 @@ def test_domain_decomposition_symmetric(self): decomp1 = arb.partition_load_balance(recipe, context, hints1) self.assertEqual(1, len(decomp1.groups)) - exp_groups1 = [0 + shift, 3 + shift, 4 + shift, 5 + shift, 8 + shift, - 1 + shift, 2 + shift, 6 + shift, 7 + shift, 9 + shift] + exp_groups1 = [ + 0 + shift, + 3 + shift, + 4 + shift, + 5 + shift, + 8 + shift, + 1 + shift, + 2 + shift, + 6 + shift, + 7 + shift, + 9 + shift, + ] self.assertEqual(exp_groups1, decomp1.groups[0].gids) for i in range(recipe.num_cells()): - self.assertEqual(int(i/cells_per_rank), decomp1.gid_domain(i)) + self.assertEqual(int(i / cells_per_rank), decomp1.gid_domain(i)) hint2 = arb.partition_hint() hint2.prefer_gpu = False - hint2.cpu_group_size = int(cells_per_rank/2) + hint2.cpu_group_size = int(cells_per_rank / 2) hints2 = dict([(arb.cell_kind.cable, hint2)]) decomp2 = arb.partition_load_balance(recipe, context, hints2) self.assertEqual(2, len(decomp2.groups)) - exp_groups2 = [ [0 + shift, 3 + shift, 4 + shift, 5 + shift, 8 + shift], - [1 + shift, 2 + shift, 6 + shift, 7 + shift, 9 + shift] ] + exp_groups2 = [ + [0 + shift, 3 + shift, 4 + shift, 5 + shift, 8 + shift], + [1 + shift, 2 + shift, 6 + shift, 7 + shift, 9 + shift], + ] for i in range(2): self.assertEqual(exp_groups2[i], decomp2.groups[i].gids) for i in range(recipe.num_cells()): - self.assertEqual(int(i/cells_per_rank), decomp2.gid_domain(i)) + self.assertEqual(int(i / cells_per_rank), decomp2.gid_domain(i)) def test_domain_decomposition_nonsymmetric(self): nranks = 1 rank = 0 - if (mpi_enabled): + if mpi_enabled: comm = arb.mpi_comm() context = arb.context(threads=1, gpu_id=None, mpi=comm) nranks = context.ranks @@ -371,12 +400,12 @@ def test_domain_decomposition_nonsymmetric(self): # check groups i = 0 - for gid in range(rank*cells_per_rank, (rank + 1)*cells_per_rank): - if (gid%nranks == rank - 1): + for gid in range(rank * cells_per_rank, (rank + 1) * cells_per_rank): + if gid % nranks == rank - 1: continue - elif (gid%nranks == rank and rank != nranks - 1): + elif gid % nranks == rank and rank != nranks - 1: cg = [gid, gid + cells_per_rank] - self.assertEqual(cg, decomp.groups[len(decomp.groups)-1].gids) + self.assertEqual(cg, decomp.groups[len(decomp.groups) - 1].gids) else: cg = [gid] self.assertEqual(cg, decomp.groups[i].gids) @@ -384,24 +413,22 @@ def test_domain_decomposition_nonsymmetric(self): # check gid_domains for gid in range(recipe.num_cells()): - group = int(gid/cells_per_rank) - idx = gid%cells_per_rank + group = int(gid / cells_per_rank) + idx = gid % cells_per_rank ngroups = nranks - if (idx == group - 1): + if idx == group - 1: self.assertEqual(group - 1, decomp.gid_domain(gid)) - elif (idx == group and group != ngroups - 1): + elif idx == group and group != ngroups - 1: self.assertEqual(group, decomp.gid_domain(gid)) else: self.assertEqual(group, decomp.gid_domain(gid)) def test_domain_decomposition_exceptions(self): nranks = 1 - rank = 0 - if (mpi_enabled): + if mpi_enabled: comm = arb.mpi_comm() context = arb.context(threads=1, gpu_id=None, mpi=comm) nranks = context.ranks - rank = context.rank else: context = arb.context(threads=1, gpu_id=None) @@ -412,15 +439,19 @@ def test_domain_decomposition_exceptions(self): hint1.cpu_group_size = 0 hints1 = dict([(arb.cell_kind.cable, hint1)]) - with self.assertRaisesRegex(RuntimeError, - "unable to perform load balancing because cell_kind::cable has invalid suggested cpu_cell_group size of 0"): - decomp1 = arb.partition_load_balance(recipe, context, hints1) + with self.assertRaisesRegex( + RuntimeError, + "unable to perform load balancing because cell_kind::cable has invalid suggested cpu_cell_group size of 0", + ): + arb.partition_load_balance(recipe, context, hints1) hint2 = arb.partition_hint() hint2.prefer_gpu = True hint2.gpu_group_size = 0 hints2 = dict([(arb.cell_kind.cable, hint2)]) - with self.assertRaisesRegex(RuntimeError, - "unable to perform load balancing because cell_kind::cable has invalid suggested gpu_cell_group size of 0"): - decomp2 = arb.partition_load_balance(recipe, context, hints2) + with self.assertRaisesRegex( + RuntimeError, + "unable to perform load balancing because cell_kind::cable has invalid suggested gpu_cell_group size of 0", + ): + arb.partition_load_balance(recipe, context, hints2) diff --git a/python/test/unit_distributed/test_simulator.py b/python/test/unit_distributed/test_simulator.py index 5c23498f84..50f3ca7b22 100644 --- a/python/test/unit_distributed/test_simulator.py +++ b/python/test/unit_distributed/test_simulator.py @@ -3,9 +3,8 @@ # test_simulator.py import unittest -import numpy as np import arbor as A -from .. import fixtures, cases +from .. import cases mpi_enabled = A.__config__["mpi"] @@ -13,6 +12,7 @@ test for MPI distribution of spike recording """ + class lifN_recipe(A.recipe): def __init__(self, n_cell): A.recipe.__init__(self) @@ -31,27 +31,31 @@ def connections_on(self, gid): def event_generators(self, gid): sched_dt = 0.25 weight = 400 - return [A.event_generator("tgt", weight, A.regular_schedule(sched_dt)) for gid in range(0, self.num_cells())] + return [ + A.event_generator("tgt", weight, A.regular_schedule(sched_dt)) + for gid in range(0, self.num_cells()) + ] def probes(self, gid): return [] - def global_properties(self,kind): + def global_properties(self, kind): return self.props def cell_description(self, gid): c = A.lif_cell("src", "tgt") - if gid%2==0: + if gid % 2 == 0: c.t_ref = 2 else: c.t_ref = 4 return c + @cases.skipIfNotDistributed() class TestSimulator(unittest.TestCase): def init_sim(self): comm = A.mpi_comm() - context = A.context(threads=1, gpu_id=None, mpi=A.mpi_comm()) + context = A.context(threads=1, gpu_id=None, mpi=comm) self.rank = context.rank self.ranks = context.ranks @@ -64,7 +68,7 @@ def init_sim(self): self.assertEqual(1, len(local_groups)) self.assertEqual([self.rank], local_groups[0].gids) - return A.simulation(recipe, dd, context) + return A.simulation(recipe, context, dd) def test_local_spikes(self): sim = self.init_sim() @@ -76,7 +80,7 @@ def test_local_spikes(self): self.assertEqual({(self.rank, 0)}, {s for s, t in spikes}) times = sorted([t for s, t in spikes]) - if self.rank%2==0: + if self.rank % 2 == 0: self.assertEqual([0, 2, 4, 6, 8], times) else: self.assertEqual([0, 4, 8], times) @@ -87,5 +91,9 @@ def test_global_spikes(self): sim.run(9, 0.01) spikes = sim.spikes().tolist() - expected = [((s, 0), t) for s in range(0, self.ranks) for t in ([0, 2, 4, 6, 8] if s%2==0 else [0, 4, 8])] + expected = [ + ((s, 0), t) + for s in range(0, self.ranks) + for t in ([0, 2, 4, 6, 8] if s % 2 == 0 else [0, 4, 8]) + ] self.assertEqual(expected, sorted(spikes)) diff --git a/python/util.hpp b/python/util.hpp new file mode 100644 index 0000000000..4a096f6f0a --- /dev/null +++ b/python/util.hpp @@ -0,0 +1,50 @@ +#pragma once + +#include + +#include + +#include "strprintf.hpp" +#include "error.hpp" + +namespace pyarb { +namespace util { + +namespace py = pybind11; + +inline +std::string to_path(py::object fn) { + if (py::isinstance(fn)) { + return std::string{py::str(fn)}; + } + else if (py::isinstance(fn, + py::module_::import("pathlib").attr("Path"))) { + return std::string{py::str(fn)}; + } + throw std::runtime_error( + util::pprintf("Cannot convert objects of type {} to a path-like.", + std::string{py::str(fn.get_type())})); +} + +inline +std::string read_file_or_buffer(py::object fn) { + if (py::hasattr(fn, "read")) { + return py::str(fn.attr("read")(-1)); + } else { + const auto fname = util::to_path(fn); + std::ifstream fid{fname}; + if (!fid.good()) { + throw arb::file_not_found_error(fname); + } + std::string result; + fid.seekg(0, fid.end); + auto sz = fid.tellg(); + fid.seekg(0, fid.beg); + result.resize(sz); + fid.read(result.data(), sz); + return result; + } +} + +} +} diff --git a/scripts/build-catalogue.in b/scripts/build-catalogue.in index de4bcd1ca1..0dc73ce73b 100755 --- a/scripts/build-catalogue.in +++ b/scripts/build-catalogue.in @@ -2,17 +2,17 @@ import subprocess as sp import sys -from tempfile import mkdtemp, TemporaryDirectory +from tempfile import mkdtemp import os from pathlib import Path import shutil -import string import argparse import re + def parse_arguments(): def append_slash(s): - return s+'/' if s and not s.endswith('/') else s + return s + "/" if s and not s.endswith("/") else s class ConciseHelpFormatter(argparse.HelpFormatter): def __init__(self, **kwargs): @@ -20,88 +20,92 @@ def parse_arguments(): def _format_action_invocation(self, action): if not action.option_strings: - return super(ConciseHelpFormatter, self)._format_action_invocation(action) + return super(ConciseHelpFormatter, self)._format_action_invocation( + action + ) else: - optstr = ', '.join(action.option_strings) - if action.nargs==0: + optstr = ", ".join(action.option_strings) + if action.nargs == 0: return optstr else: - return optstr+' '+self._format_args(action, action.dest.upper()) + return optstr + " " + self._format_args(action, action.dest.upper()) parser = argparse.ArgumentParser( - description = 'Generate dynamic catalogue and build it into a shared object.', - usage = '%(prog)s catalogue_name mod_source_dir', - add_help = False, - formatter_class = ConciseHelpFormatter) - - parser.add_argument('name', - metavar='name', - type=str, - help='Catalogue name.') - - parser.add_argument('--raw', - metavar='raw', - nargs='+', - default=[], - type=str, - help='''Advanced: Raw mechanisms as C++ files. Per the + description="Generate dynamic catalogue and build it into a shared object.", + usage="%(prog)s catalogue_name mod_source_dir", + add_help=False, + formatter_class=ConciseHelpFormatter, + ) + + parser.add_argument("name", metavar="name", type=str, help="Catalogue name.") + + parser.add_argument( + "--raw", + metavar="raw", + nargs="+", + default=[], + type=str, + help="""Advanced: Raw mechanisms as C++ files. Per the files .hpp, _cpu.cpp must be present in the target directory and with GPU support -also _gpu.cpp and _gpu.cu (if not given -C).''') - - parser.add_argument('modpfx', - metavar='modpfx', - type=str, - help='Directory name where *.mod files live.') - - parser.add_argument('-v', '--verbose', - action='store_true', - help='Verbose.') - - parser.add_argument('-q', '--quiet', - action='store_true', - help='Less output.') - - parser.add_argument('-g', '--gpu', - metavar='gpu', - help='Enable GPU support, valid options: cuda|hip|cuda-clang.') - - parser.add_argument('-C', '--no-cpu', - action='store_false', - default=True, - help='Disable CPU support.') - - parser.add_argument('-d', '--debug', - nargs="?", - metavar="path", - const=True, - default=False, - help='Don\'t clean up the generated temp cpp code.' - + ' Can be a target path for the generated code.') - - parser.add_argument('-h', '--help', - action='help', - help='Display this help and exit.') +also _gpu.cpp and _gpu.cu (if not given -C).""", + ) + + parser.add_argument( + "modpfx", + metavar="modpfx", + type=str, + help="Directory name where *.mod files live.", + ) + + parser.add_argument("-v", "--verbose", action="store_true", help="Verbose.") + + parser.add_argument("-q", "--quiet", action="store_true", help="Less output.") + + parser.add_argument( + "-g", + "--gpu", + metavar="gpu", + help="Enable GPU support, valid options: cuda|hip|cuda-clang.", + ) + + parser.add_argument( + "-C", "--no-cpu", action="store_true", help="Disable CPU support." + ) + + parser.add_argument( + "-d", + "--debug", + nargs="?", + metavar="path", + const=True, + default=False, + help="Don't clean up the generated temp cpp code." + + " Can be a target path for the generated code.", + ) + + parser.add_argument( + "-h", "--help", action="help", help="Display this help and exit." + ) return vars(parser.parse_args()) -args = parse_arguments() -pwd = Path.cwd() -name = re.sub(r'_+', r'_', - re.sub(r'[^a-zA-Z0-9_]', r'_', - args['name'])) - -mod_dir = pwd / Path(args['modpfx']) -mods = [f[:-4] for f in os.listdir(mod_dir) if f.endswith('.mod')] -quiet = args['quiet'] -verbose = args['verbose'] and not quiet -debug = args['debug'] -raw = args['raw'] -gpu = args['gpu'] -cpu = not args['no_cpu'] + +args = parse_arguments() +pwd = Path.cwd() +name = re.sub(r"_+", r"_", re.sub(r"[^a-zA-Z0-9_]", r"_", args["name"])) + +mod_dir = pwd / Path(args["modpfx"]) +mods = [f[:-4] for f in os.listdir(mod_dir) if f.endswith(".mod")] +quiet = args["quiet"] +verbose = args["verbose"] and not quiet +debug = args["debug"] +raw = args["raw"] +gpu = args["gpu"] +cpu = not args["no_cpu"] if gpu: - if gpu == 'cuda': + if gpu == "cuda": gpu_support = """ add_compile_definitions(ARB_CUDA) add_compile_definitions(ARB_HAVE_GPU) @@ -111,7 +115,9 @@ set(CMAKE_CUDA_HOST_COMPILER @CMAKE_CXX_COMPILER@) set(CMAKE_CUDA_ARCHITECTURES @CMAKE_CUDA_ARCHITECTURES@) """ else: - print(f"Unsupported GPU target: {gpu}. If you need support for HIP or Clang-CUDA, please check here: https://github.com/arbor-sim/arbor/issues/1783") + print( + f"Unsupported GPU target: {gpu}. If you need support for HIP or Clang-CUDA, please check here: https://github.com/arbor-sim/arbor/issues/1783" + ) exit(-1) else: gpu_support = """ @@ -123,12 +129,14 @@ data_path = (this_path / "@ARB_REL_DATADIR@").resolve() pack_path = (this_path / "@ARB_REL_PACKAGEDIR@").resolve() exec_path = this_path.resolve() -for path in [exec_path / 'modcc', - data_path / 'generate_catalogue', - data_path / 'BuildModules.cmake', - pack_path / 'arbor-config.cmake',]: +for path in [ + exec_path / "modcc", + data_path / "generate_catalogue", + data_path / "BuildModules.cmake", + pack_path / "arbor-config.cmake", +]: if not path.exists(): - print(f'Could not find required tool: {path}. Please check your installation.') + print(f"Could not find required tool: {path}. Please check your installation.") exit(-1) cmake = f""" @@ -183,7 +191,9 @@ if debug: try: os.makedirs(path, exist_ok=False) except FileExistsError: - sys.stderr.write(f"Error: Debug destination '{path}' already exists.\n") + sys.stderr.write( + f"Error: Debug destination '{path}' already exists.\n" + ) sys.stderr.flush() exit(1) else: @@ -194,17 +204,20 @@ if debug: def __exit__(*args, **kwargs): pass +else: + from tempfile import TemporaryDirectory + with TemporaryDirectory() as tmp: tmp = Path(tmp) - shutil.copytree(mod_dir, tmp / 'mod') - os.mkdir(tmp / 'build') - os.chdir(tmp / 'build') - with open(tmp / 'CMakeLists.txt', 'w') as fd: + shutil.copytree(mod_dir, tmp / "mod") + os.mkdir(tmp / "build") + os.chdir(tmp / "build") + with open(tmp / "CMakeLists.txt", "w") as fd: fd.write(cmake) - shutil.copy2(f'{data_path}/BuildModules.cmake', tmp) - shutil.copy2(f'{data_path}/generate_catalogue', tmp) + shutil.copy2(f"{data_path}/BuildModules.cmake", tmp) + shutil.copy2(f"{data_path}/generate_catalogue", tmp) - out = tmp / 'build' / 'generated' / name + out = tmp / "build" / "generated" / name os.makedirs(out, exist_ok=True) sfx = [".hpp"] if cpu: @@ -215,24 +228,26 @@ with TemporaryDirectory() as tmp: for s in sfx: fn = mod_dir / (e + s) if not fn.exists(): - print(f'Could not find required file: {fn}. Please check your C++ mechanisms.') + print( + f"Could not find required file: {fn}. Please check your C++ mechanisms." + ) exit(-1) else: shutil.copy2(fn, out / (e + s)) - cmake_cmd = 'cmake ..' - make_cmd = 'make' + cmake_cmd = "cmake .." + make_cmd = "make" if verbose: out, err = (None, None) - make_cmd += ' VERBOSE=1' + make_cmd += " VERBOSE=1" else: out, err = (sp.PIPE, sp.PIPE) try: sp.run(cmake_cmd, shell=True, check=True, stdout=out, stderr=err) - sp.run(make_cmd, shell=True, check=True, stdout=out, stderr=err) - shutil.copy2(f'{name}-catalogue.so', pwd) + sp.run(make_cmd, shell=True, check=True, stdout=out, stderr=err) + shutil.copy2(f"{name}-catalogue.so", pwd) except sp.CalledProcessError as e: - import sys, traceback as tb + import traceback as tb if not verbose: # Not in verbose mode, so we have captured the @@ -254,4 +269,4 @@ with TemporaryDirectory() as tmp: exit(e.returncode) if not quiet: - print(f'Catalogue has been built and copied to {pwd}/{name}-catalogue.so') + print(f"Catalogue has been built and copied to {pwd}/{name}-catalogue.so") diff --git a/scripts/build-wheels.sh b/scripts/build-wheels.sh index 0b881c71b0..4b6412da94 100755 --- a/scripts/build-wheels.sh +++ b/scripts/build-wheels.sh @@ -14,14 +14,14 @@ set -e -u -x yum -y install libxml2-devel -/opt/python/cp310-cp310/bin/pip install ninja cmake rm -rf /src_dir/arbor/_skbuild +rm -rf /opt/python/cp36-cp36m # Python build toolchain does not work on Py3.6 export CIBUILDWHEEL=1 #Set condition for cmake -for PYBIN in /opt/python/cp*/bin; do - "${PYBIN}/python" -m pip install wheel scikit-build auditwheel +for PYBIN in /opt/python/cp3*/bin; do + "${PYBIN}/python" -m pip install pip auditwheel -U export PATH="${PYBIN}":$PATH "${PYBIN}/python" -m pip wheel --wheel-dir="/src_dir/builtwheel${PYBIN}/" /src_dir/arbor "${PYBIN}/python" -m auditwheel repair /src_dir/builtwheel${PYBIN}/arbor*.whl -w /src_dir/wheelhouse diff --git a/scripts/check-all-tags.sh b/scripts/check-all-tags.sh new file mode 100755 index 0000000000..4a913befa7 --- /dev/null +++ b/scripts/check-all-tags.sh @@ -0,0 +1,74 @@ +#!/usr/bin/env bash +# Runs all C++ examples + +set -Eeuo pipefail + +if [[ "$#" -gt 1 ]]; then + echo "usage: run_cpp_examples.sh " + exit 1 +fi + +PREFIX="${1:-} `pwd`/build/bin" + +cxx=/usr/local/opt/llvm/bin/clang++ +cc=/usr/local/opt/llvm/bin/clang + +for tag in v0.4 v0.5.2 v0.6 v0.7 +do + echo "Version=$tag" + rm -rf ext/* + git checkout $tag + git checkout $tag -- ext/ + git submodule update --init + for simd in ON OFF + do + echo " * simd=$simd" + out=results/$tag-`git rev-parse --short HEAD`/cpp/simd=$simd + cd build + cmake .. -DARB_USE_BUNDLED_LIBS=ON -DCMAKE_CXX_COMPILER=$cxx -DCMAKE_C_COMPILER=$cc -DCMAKE_BUILD_TYPE=release -DARB_VECTORIZE=$simd -DARB_ARCH=native + ninja install examples + cd - + for ex in bench brunel gap_junctions generators lfp ring single-cell "probe-demo v" + do + echo " - $ex" + dir=`echo $ex | tr ' ' '_'` + mkdir -p $out/$dir + cd $out/$dir + $PREFIX/$ex > stdout.txt 2> stderr.txt + cd - + done + done +done + +ok=0 +check () { + prog=$1 + expected="$2 spikes" + actual=$(/usr/bin/grep -Eo '\d+ spikes' results/$tag/cpp/SIMD=$simd/$prog/stdout.txt || echo "N/A") + if [ "$expected" == "$actual" ] + then + echo " - $prog: OK" + else + echo " - $prog: ERROR wrong number of spikes: $expected ./. $actual" + ok=1 + fi +} + +for tag in "v0.4-79855b66" "v0.5.2-51e35898" "v0.6-930c23eb" "v0.7-d0e424b4" +do + echo "Version=$tag" + for simd in ON OFF + do + echo " * SIMD=$simd" + check brunel 6998 + check bench 972 + if [[ "$tag" < "v0.7" ]] + then + check ring 19 + else + check ring 94 + fi + check gap_junctions 30 + done +done +exit $ok diff --git a/scripts/mk-include.py b/scripts/mk-include.py new file mode 100644 index 0000000000..cb798e678c --- /dev/null +++ b/scripts/mk-include.py @@ -0,0 +1,69 @@ +#!/usr/bin/env python3 + +# Use this script for convenience when making tutorials +# for readthedocs/sphinx. +# +# Run on a tutorial python file like this +# +# ./mk-include tutorial.py prefix +# +# the script will extract all comments from the +# tutorial script starting with +# +# # (N) +# +# where N is whole number. For each such comment +# it will print out a literal include block for use +# in a sphinx tutorial .rst file, eg +# +# .. literalinclude:: ../../python/example/single_cell_detailed.py +# :language: python +# :lines: 98-102 +# +# The line numbers are chosen such they start at the +# comment '# (N)' and end just before the next such +# comment (or the end of file). +# +# The prefix argument is added to the basename like this +# +# ./mk-include path/to/tutorial.py prefix/of/docs +# +# gives blocks like this +# +# .. literalinclude:: prefix/of/docs/tutorial.py + +import sys +import re +from pathlib import Path + +fn, pf = map(Path, sys.argv[1:]) + +hd, tl, bl, em = 0, 0, None, None +with open(fn) as fd: + for ln in fd: + tl += 1 + m = re.match(r"\s*#\s*\(([0-9]+)\).*", ln) + if m: + if bl: + print( + f"""## Block {bl} + +.. literalinclude:: {pf}/{fn.name} + :language: python + :lines: {hd}-{em} +""" + ) + hd = tl + bl = m.group(1) + if ln.strip(): + em = tl + +if bl: + print( + f"""## Block {bl} + +.. literalinclude:: {pf}/{fn.name} + :language: python + :line: {hd}-{tl} +""" + ) diff --git a/scripts/patchwheel.py b/scripts/patchwheel.py index 4a45d37588..c1c6ed46a6 100644 --- a/scripts/patchwheel.py +++ b/scripts/patchwheel.py @@ -1,13 +1,28 @@ -import shutil,subprocess,argparse +import shutil +import subprocess +import argparse from pathlib import Path + def parse_arguments(): - parser = argparse.ArgumentParser(description='Patch Arbor wheels built with scikit-build and corrected by auditwheel. Linux only.') - parser.add_argument('path', type=dir_path, help='The path where your wheels are located. They will be patched in place.') - parser.add_argument('-ko','--keepold', action='store_true', help='If you want to keep the old wheels in /old') + parser = argparse.ArgumentParser( + description="Patch Arbor wheels built with scikit-build and corrected by auditwheel. Linux only." + ) + parser.add_argument( + "path", + type=dir_path, + help="The path where your wheels are located. They will be patched in place.", + ) + parser.add_argument( + "-ko", + "--keepold", + action="store_true", + help="If you want to keep the old wheels in /old", + ) return parser.parse_args() + def dir_path(path): path = Path(path) if Path.is_dir(path): @@ -15,26 +30,29 @@ def dir_path(path): else: raise argparse.ArgumentTypeError(f"{path} is not a valid path") + parsed_args = parse_arguments() -Path.mkdir(parsed_args.path / 'old', exist_ok=True) +Path.mkdir(parsed_args.path / "old", exist_ok=True) for inwheel in parsed_args.path.glob("*.whl"): zipdir = Path(f"{inwheel}.unzip") # shutil.unpack_archive(inwheel,zipdir,'zip') # Disabled, because shutil (and ZipFile) don't preserve filemodes - subprocess.check_call(f"unzip {inwheel} -d {zipdir}",shell=True) + subprocess.check_call(f"unzip {inwheel} -d {zipdir}", shell=True) arborn = list(zipdir.glob("**/_arbor.cpython*.so"))[0] libxml2n = list(zipdir.glob("**/libxml2*.so*"))[0] - subprocess.check_call(f"patchelf --set-rpath '$ORIGIN/../arbor.libs' {arborn}",shell=True) - subprocess.check_call(f"patchelf --set-rpath '$ORIGIN' {libxml2n}",shell=True) + subprocess.check_call( + f"patchelf --set-rpath '$ORIGIN/../arbor.libs' {arborn}", shell=True + ) + subprocess.check_call(f"patchelf --set-rpath '$ORIGIN' {libxml2n}", shell=True) # TODO? correct checksum/bytecounts in *.dist-info/RECORD. # So far, Python does not report mismatches - outwheel = Path(shutil.make_archive(inwheel, 'zip', zipdir)) - Path.rename(inwheel, parsed_args.path / 'old' / inwheel.name) + outwheel = Path(shutil.make_archive(inwheel, "zip", zipdir)) + Path.rename(inwheel, parsed_args.path / "old" / inwheel.name) Path.rename(outwheel, parsed_args.path / inwheel.name) shutil.rmtree(zipdir) if not parsed_args.keepold: - shutil.rmtree(parsed_args.path / 'old') + shutil.rmtree(parsed_args.path / "old") diff --git a/scripts/run_cpp_examples.sh b/scripts/run_cpp_examples.sh index d463b29f3b..efbcf8157c 100755 --- a/scripts/run_cpp_examples.sh +++ b/scripts/run_cpp_examples.sh @@ -8,14 +8,38 @@ if [[ "$#" -gt 1 ]]; then exit 1 fi -PREFIX=${1:-} +PREFIX="${1:-} `pwd`/build/bin" +tag=dev-`git rev-parse --short HEAD` +out="results/$tag/cpp/" -$PREFIX build/bin/bench -$PREFIX build/bin/brunel -$PREFIX build/bin/dryrun -$PREFIX build/bin/gap_junctions -$PREFIX build/bin/generators -$PREFIX build/bin/lfp -$PREFIX build/bin/probe-demo v -$PREFIX build/bin/ring -$PREFIX build/bin/single-cell +ok=0 +check () { + prog=$1 + expected="$2 spikes" + actual=$(grep -Eo '[0-9]+ spikes' $out/$prog/stdout.txt || echo "N/A") + if [ "$expected" == "$actual" ] + then + echo " - $prog: OK" + else + echo " - $prog: ERROR wrong number of spikes: $expected ./. $actual" + ok=1 + fi +} + +for ex in bench brunel gap_junctions generators lfp ring single-cell "probe-demo v" plasticity +do + echo " - $ex" + dir=`echo $ex | tr ' ' '_'` + mkdir -p $out/$dir + cd $out/$dir + $PREFIX/$ex > stdout.txt 2> stderr.txt + cd - +done + +# Do some sanity checks. +check brunel 6998 +check bench 972 +check ring 94 +check gap_junctions 30 + +exit $ok diff --git a/scripts/run_python_examples.sh b/scripts/run_python_examples.sh index 2334443731..4277d7b71f 100755 --- a/scripts/run_python_examples.sh +++ b/scripts/run_python_examples.sh @@ -15,16 +15,19 @@ $PREFIX python -m pip install -r python/example/example_requirements.txt $PREFIX python python/example/brunel.py -n 400 -m 100 -e 20 -p 0.1 -w 1.2 -d 1 -g 0.5 -l 5 -t 100 -s 1 -G 50 -S 123 # $PREFIX python python/dynamic-catalogue.py # arbor-build-catalog is a test already $PREFIX python python/example/gap_junctions.py -# $PREFIX python python/example/network_ring_mpi_plot.py # requires MPI -# $PREFIX python python/example/network_ring_mpi.py # requires MPI -$PREFIX python python/example/network_ring.py $PREFIX python python/example/single_cell_cable.py $PREFIX python python/example/single_cell_detailed_recipe.py python/example/single_cell_detailed.swc $PREFIX python python/example/single_cell_detailed.py python/example/single_cell_detailed.swc -$PREFIX python python/example/single_cell_extracellular_potentials.py python/example/single_cell_detailed.swc +$PREFIX python python/example/probe_lfpykit.py python/example/single_cell_detailed.swc $PREFIX python python/example/single_cell_model.py $PREFIX python python/example/single_cell_nml.py python/example/morph.nml $PREFIX python python/example/single_cell_recipe.py $PREFIX python python/example/single_cell_stdp.py $PREFIX python python/example/single_cell_swc.py python/example/single_cell_detailed.swc -$PREFIX python python/example/two_cell_gap_junctions.py +$PREFIX python python/example/network_ring.py +# $PREFIX python python/example/network_ring_mpi.py # requires MPI +# $PREFIX python python/example/network_ring_mpi_plot.py # no need to test +$PREFIX python python/example/network_ring_gpu.py # by default, gpu_id=None +$PREFIX python python/example/network_two_cells_gap_junctions.py +$PREFIX python python/example/diffusion.py +$PREFIX python python/example/plasticity.py diff --git a/scripts/test-catalogue.py b/scripts/test-catalogue.py index 7c4716d03e..a543998d40 100755 --- a/scripts/test-catalogue.py +++ b/scripts/test-catalogue.py @@ -6,8 +6,10 @@ import arbor -P = argparse.ArgumentParser(description='Verify that a mechanism catalogue can be loaded through Python interface.') -P.add_argument('catname', metavar='FILE', help='path of the catalogue to test.') +P = argparse.ArgumentParser( + description="Verify that a mechanism catalogue can be loaded through Python interface." +) +P.add_argument("catname", metavar="FILE", help="path of the catalogue to test.") args = P.parse_args() catname = args.catname @@ -15,7 +17,7 @@ print(catname) if not os.path.isfile(catname): - print('ERROR: unable to open catalogue file') + print("ERROR: unable to open catalogue file") sys.exit(1) print([n for n in arbor.load_catalogue(catname).keys()]) diff --git a/scripts/where.py b/scripts/where.py new file mode 100644 index 0000000000..24790ab676 --- /dev/null +++ b/scripts/where.py @@ -0,0 +1,23 @@ +import sys +import sysconfig + +pfx = sys.stdin.read() +try: + # override scheme on debian/ubuntu py3.10, where 'posix_local' is set and malfunctioning. + if sysconfig.get_default_scheme() == "posix_local": + print( + sysconfig.get_path( + "platlib", + vars={} if pfx == "" else {"base": pfx, "platbase": pfx}, + scheme="posix_prefix", + ) + ) + sys.exit() +except AttributeError: + # we're on Python <= 3.9, no scheme setting required and get_default_scheme does not exist. + pass +print( + sysconfig.get_path( + "platlib", vars={} if pfx == "" else {"base": pfx, "platbase": pfx} + ) +) diff --git a/setup.py b/setup.py index 30cf7453df..30f9ed589d 100644 --- a/setup.py +++ b/setup.py @@ -1,58 +1,27 @@ -from pathlib import Path from sys import executable as python from skbuild import setup -import os,platform # Hard coded options, because scikit-build does not do build options. # Override by instructing CMAKE, e.g.: # pip install . -- -DARB_USE_BUNDLED_LIBS=ON -DARB_WITH_MPI=ON -DARB_GPU=cuda -with_mpi = False -with_gpu = 'none' -with_vec = False -arch = 'none' -with_nml = True -use_libs = True -build_type = 'Release' # this is ok even for debugging, as we always produce info +with_mpi = False +with_gpu = "none" +with_vec = False +arch = "none" +with_nml = True +use_libs = True +build_type = "Release" # this is ok even for debugging, as we always produce info -# Find our dir; *should* be the arbor checkout -here = Path(__file__).resolve().parent -# Read version file -with open(here / 'VERSION') as fd: - arbor_version = fd.read().strip() -# Get the contents of the readme -with open(here / 'python' / 'readme.md', encoding='utf-8') as fd: - long_description = fd.read() - -setup(name='arbor', - version=arbor_version, - python_requires='>=3.6', - install_requires=['numpy'], - setup_requires=[], - zip_safe=False, - packages=['arbor'], - cmake_args=['-DARB_WITH_PYTHON=on', - f'-DPYTHON_EXECUTABLE={python}', - f'-DARB_WITH_MPI={with_mpi}', - f'-DARB_VECTORIZE={with_vec}', - f'-DARB_ARCH={arch}', - f'-DARB_GPU={with_gpu}', - f'-DARB_WITH_NEUROML={with_nml}', - f'-DARB_USE_BUNDLED_LIBS={use_libs}', - f'-DCMAKE_BUILD_TYPE={build_type}',], - author='The Arbor dev team.', - url='https://arbor-sim.org', - description='High performance simulation of networks of multicompartment neurons.', - long_description=long_description, - long_description_content_type='text/markdown', - classifiers=['Development Status :: 5 - Production/Stable', - 'Intended Audience :: Science/Research', - 'License :: OSI Approved :: BSD License', - 'Programming Language :: Python :: 3.6', - 'Programming Language :: Python :: 3.7', - 'Programming Language :: Python :: 3.8', - 'Programming Language :: Python :: 3.9', - 'Programming Language :: Python :: 3.10', - 'Programming Language :: C++',], - project_urls={'Source': 'https://github.com/arbor-sim/arbor', - 'Documentation': 'https://docs.arbor-sim.org', - 'Bug Reports': 'https://github.com/arbor-sim/arbor/issues',},) +setup( + cmake_args=[ + "-DARB_WITH_PYTHON=on", + f"-DPYTHON_EXECUTABLE={python}", + f"-DARB_WITH_MPI={with_mpi}", + f"-DARB_VECTORIZE={with_vec}", + f"-DARB_ARCH={arch}", + f"-DARB_GPU={with_gpu}", + f"-DARB_WITH_NEUROML={with_nml}", + f"-DARB_USE_BUNDLED_LIBS={use_libs}", + f"-DCMAKE_BUILD_TYPE={build_type}", + ], +) diff --git a/spack/package.py b/spack/package.py index c9d1e1e1c9..38047359f9 100644 --- a/spack/package.py +++ b/spack/package.py @@ -3,81 +3,110 @@ # # SPDX-License-Identifier: (Apache-2.0 OR MIT) -from spack import * +from spack.package import * class Arbor(CMakePackage, CudaPackage): """Arbor is a high-performance library for computational neuroscience simulations.""" - homepage = 'https://arbor-sim.org' - git = 'https://github.com/arbor-sim/arbor.git' - url = 'https://github.com/arbor-sim/arbor/releases/download/v0.6/arbor-v0.6-full.tar.gz' - maintainers = ['bcumming', 'brenthuisman', 'haampie', 'schmitts'] - - version('master', branch='master', submodules=True) - version('0.6', sha256='4cd333b18effc8833428ddc0b99e7dc976804771bc85da90034c272c7019e1e8', url='https://github.com/arbor-sim/arbor/releases/download/v0.6/arbor-v0.6-full.tar.gz') - version('0.5.2', sha256='290e2ad8ca8050db1791cabb6b431e7c0409c305af31b559e397e26b300a115d', url='https://github.com/arbor-sim/arbor/releases/download/v0.5.2/arbor-v0.5.2-full.tar.gz') - version('0.5', sha256='d0c8a4c7f97565d7c30493c66249be794d1dc424de266fc79cecbbf0e313df59', url='https://github.com/arbor-sim/arbor/releases/download/v0.5/arbor-v0.5-full.tar.gz') - - variant('assertions', default=False, description='Enable arb_assert() assertions in code.') - variant('doc', default=False, description='Build documentation.') - variant('mpi', default=False, description='Enable MPI support') - variant('neuroml', default=True, description='Build NeuroML support library.') - variant('python', default=True, description='Enable Python frontend support') - variant('vectorize', default=False, description='Enable vectorization of computational kernels') - - # https://docs.arbor-sim.org/en/latest/install/build_install.html?highlight=requirements#compilers - conflicts('%gcc@:8.3') - conflicts('%clang@:7') + homepage = "https://arbor-sim.org" + git = "https://github.com/arbor-sim/arbor.git" + url = "https://github.com/arbor-sim/arbor/releases/download/v0.7/arbor-v0.7-full.tar.gz" + maintainers = ["bcumming", "brenthuisman", "haampie", "schmitts"] + + version("master", branch="master", submodules=True) + version( + "0.7", + sha256="c3a6b7193946aee882bb85f9c38beac74209842ee94e80840968997ba3b84543", + url="https://github.com/arbor-sim/arbor/releases/download/v0.7/arbor-v0.7-full.tar.gz", + ) + version( + "0.6", + sha256="4cd333b18effc8833428ddc0b99e7dc976804771bc85da90034c272c7019e1e8", + url="https://github.com/arbor-sim/arbor/releases/download/v0.6/arbor-v0.6-full.tar.gz", + ) + version( + "0.5.2", + sha256="290e2ad8ca8050db1791cabb6b431e7c0409c305af31b559e397e26b300a115d", + url="https://github.com/arbor-sim/arbor/releases/download/v0.5.2/arbor-v0.5.2-full.tar.gz", + ) + version( + "0.5", + sha256="d0c8a4c7f97565d7c30493c66249be794d1dc424de266fc79cecbbf0e313df59", + url="https://github.com/arbor-sim/arbor/releases/download/v0.5/arbor-v0.5-full.tar.gz", + ) + + variant( + "assertions", + default=False, + description="Enable arb_assert() assertions in code.", + ) + variant("doc", default=False, description="Build documentation.") + variant("mpi", default=False, description="Enable MPI support") + variant("neuroml", default=True, description="Build NeuroML support library.") + variant("python", default=True, description="Enable Python frontend support") + variant( + "vectorize", + default=False, + description="Enable vectorization of computational kernels", + ) + + # https://docs.arbor-sim.org/en/latest/install/build_install.html#compilers + conflicts("%gcc@:8.3") + conflicts("%clang@:7") # Cray compiler v9.2 and later is Clang-based. - conflicts('%cce@:9.1') - conflicts('%intel') + conflicts("%cce@:9.1") + conflicts("%intel") - depends_on('cmake@3.12:', type='build') + depends_on("cmake@3.12:", type="build") # misc dependencies - depends_on('fmt@7.1:', when='@0.5.3:') # required by the modcc compiler - depends_on('nlohmann-json') - depends_on('cuda@10:', when='+cuda') - depends_on('libxml2', when='+neuroml') + depends_on("fmt@7.1:", when="@0.5.3:") # required by the modcc compiler + depends_on("nlohmann-json") + depends_on("random123") + depends_on("cuda@10:", when="+cuda") + depends_on("libxml2", when="+neuroml") # mpi - depends_on('mpi', when='+mpi') - depends_on('py-mpi4py', when='+mpi+python', type=('build', 'run')) + depends_on("mpi", when="+mpi") + depends_on("py-mpi4py", when="+mpi+python", type=("build", "run")) # python (bindings) - extends('python', when='+python') - depends_on('python@3.6:', when="+python", type=('build', 'run')) - depends_on('py-numpy', when='+python', type=('build', 'run')) - depends_on('py-pybind11@2.8.1:', when='+python', type=('build', 'run')) + extends("python", when="+python") + depends_on("python@3.7:", when="+python", type=("build", "run")) + depends_on("py-numpy", when="+python", type=("build", "run")) + with when("+python"): + depends_on("py-pybind11@2.6:", type=("build")) + depends_on("py-pybind11@2.8.1:", when="@0.5.3:", type=("build")) + depends_on("py-pybind11@2.10.0:", when="@0.7.1:", type=("build")) # sphinx based documentation - depends_on('python@3.6:', when="+doc", type='build') - depends_on('py-sphinx', when="+doc", type='build') - depends_on('py-svgwrite', when='+doc', type='build') + depends_on("python@3.7:", when="+doc", type="build") + depends_on("py-sphinx", when="+doc", type="build") + depends_on("py-svgwrite", when="+doc", type="build") @property def build_targets(self): - return ['all', 'html'] if '+doc' in self.spec else ['all'] + return ["all", "html"] if "+doc" in self.spec else ["all"] def cmake_args(self): args = [ - self.define_from_variant('ARB_WITH_ASSERTIONS', 'assertions'), - self.define_from_variant('ARB_WITH_MPI', 'mpi'), - self.define_from_variant('ARB_WITH_NEUROML', 'neuroml'), - self.define_from_variant('ARB_WITH_PYTHON', 'python'), - self.define_from_variant('ARB_VECTORIZE', 'vectorize'), + self.define_from_variant("ARB_WITH_ASSERTIONS", "assertions"), + self.define_from_variant("ARB_WITH_MPI", "mpi"), + self.define_from_variant("ARB_WITH_NEUROML", "neuroml"), + self.define_from_variant("ARB_WITH_PYTHON", "python"), + self.define_from_variant("ARB_VECTORIZE", "vectorize"), ] - if '+cuda' in self.spec: - args.append('-DARB_GPU=cuda') + if "+cuda" in self.spec: + args.append("-DARB_GPU=cuda") # query spack for the architecture-specific compiler flags set by its wrapper - args.append('-DARB_ARCH=none') + args.append("-DARB_ARCH=none") opt_flags = self.spec.target.optimization_flags( - self.spec.compiler.name, - self.spec.compiler.version) - args.append('-DARB_CXX_FLAGS_TARGET=' + opt_flags) + self.spec.compiler.name, self.spec.compiler.version + ) + args.append("-DARB_CXX_FLAGS_TARGET=" + opt_flags) return args diff --git a/sup/CMakeLists.txt b/sup/CMakeLists.txt index 596888bbc6..831b3c544e 100644 --- a/sup/CMakeLists.txt +++ b/sup/CMakeLists.txt @@ -12,7 +12,12 @@ target_compile_options(arbor-sup PRIVATE ${ARB_CXX_FLAGS_TARGET_FULL}) # The sup library uses both the json library and libarbor target_link_libraries(arbor-sup PUBLIC ${json_library_name} arbor) -target_include_directories(arbor-sup PUBLIC include) +#target_include_directories(arbor-sup PUBLIC include) +target_include_directories(arbor-sup + PUBLIC + $/include + $) set_target_properties(arbor-sup PROPERTIES OUTPUT_NAME arborsup) +export_visibility(arbor-sup) diff --git a/sup/README.md b/sup/README.md new file mode 100644 index 0000000000..d61bd7bc54 --- /dev/null +++ b/sup/README.md @@ -0,0 +1,3 @@ +The `sup` library are some little helpers used internally in Arbor tests and examples. + +They are not intended for distribution with or use in the Arbor library. diff --git a/sup/include/sup/ioutil.hpp b/sup/include/sup/ioutil.hpp index cf516dc0ea..af05fa6cd2 100644 --- a/sup/include/sup/ioutil.hpp +++ b/sup/include/sup/ioutil.hpp @@ -14,10 +14,12 @@ #include #include +#include #include namespace sup { + template > class basic_null_streambuf: public std::basic_streambuf { private: @@ -30,7 +32,7 @@ class basic_null_streambuf: public std::basic_streambuf { typedef typename streambuf_type::off_type off_type; typedef typename streambuf_type::traits_type traits_type; - virtual ~basic_null_streambuf() {} + virtual ~basic_null_streambuf() = default; protected: std::streamsize xsputn(const char_type* s, std::streamsize count) override { @@ -42,7 +44,7 @@ class basic_null_streambuf: public std::basic_streambuf { } }; -class mask_stream { +class ARB_SUP_API mask_stream { public: explicit mask_stream(bool mask): mask_(mask) {} @@ -87,7 +89,7 @@ class mask_stream { bool mask_; }; -std::fstream open_or_throw(const sup::path& p, std::ios_base::openmode, bool exclusive); +ARB_SUP_API std::fstream open_or_throw(const sup::path& p, std::ios_base::openmode, bool exclusive); inline std::fstream open_or_throw(const sup::path& p, bool exclusive) { using std::ios_base; diff --git a/sup/include/sup/json_meter.hpp b/sup/include/sup/json_meter.hpp index 76c94ae834..a017c26430 100644 --- a/sup/include/sup/json_meter.hpp +++ b/sup/include/sup/json_meter.hpp @@ -1,8 +1,9 @@ #include +#include #include namespace sup { -nlohmann::json to_json(const arb::profile::meter_report&); +ARB_SUP_API nlohmann::json to_json(const arb::profile::meter_report&); } // namespace sup diff --git a/sup/include/sup/path.hpp b/sup/include/sup/path.hpp index 3c13aa2d44..4ffd7861f2 100644 --- a/sup/include/sup/path.hpp +++ b/sup/include/sup/path.hpp @@ -26,6 +26,8 @@ #include #include +#include + namespace sup { class posix_path { @@ -363,8 +365,8 @@ class filesystem_error: public std::system_error { // POSIX implementations of path queries (see path.cpp for implementations). -file_status posix_status(const path&, std::error_code&) noexcept; -file_status posix_symlink_status(const path&, std::error_code&) noexcept; +ARB_SUP_API file_status posix_status(const path&, std::error_code&) noexcept; +ARB_SUP_API file_status posix_symlink_status(const path&, std::error_code&) noexcept; inline file_status status(const path& p, std::error_code& ec) noexcept { return posix_status(p, ec); @@ -599,7 +601,7 @@ inline constexpr bool operator!=(directory_options a, unsigned x) { struct posix_directory_state; -struct posix_directory_iterator { +struct ARB_SUP_API posix_directory_iterator { using value_type = directory_entry; using difference_type = std::ptrdiff_t; using pointer = const directory_entry*; diff --git a/sup/ioutil.cpp b/sup/ioutil.cpp index 4725cc1a98..e8d7ce0e21 100644 --- a/sup/ioutil.cpp +++ b/sup/ioutil.cpp @@ -7,7 +7,7 @@ namespace sup { -std::fstream open_or_throw(const path& p, std::ios_base::openmode mode, bool exclusive) { +ARB_SUP_API std::fstream open_or_throw(const path& p, std::ios_base::openmode mode, bool exclusive) { if (exclusive && exists(p)) { throw std::runtime_error(strsub("file % already exists", p)); } diff --git a/sup/json_meter.cpp b/sup/json_meter.cpp index c587d4dfe3..bb40bd48bd 100644 --- a/sup/json_meter.cpp +++ b/sup/json_meter.cpp @@ -1,4 +1,5 @@ #include +#include #include namespace sup { @@ -16,7 +17,7 @@ static nlohmann::json to_json(const arb::profile::measurement& mnt) { }; } -nlohmann::json to_json(const arb::profile::meter_report& report) { +ARB_SUP_API nlohmann::json to_json(const arb::profile::meter_report& report) { nlohmann::json json_meters; for (const auto& mnt: report.meters) { json_meters.push_back(to_json(mnt)); diff --git a/sup/path.cpp b/sup/path.cpp index 5622f687b3..d12946ee3b 100644 --- a/sup/path.cpp +++ b/sup/path.cpp @@ -52,13 +52,13 @@ namespace impl { } // namespace impl -file_status posix_status(const path& p, std::error_code& ec) noexcept { +ARB_SUP_API file_status posix_status(const path& p, std::error_code& ec) noexcept { struct stat st; int r = stat(p.c_str(), &st); return impl::status(p.c_str(), r, st, ec); } -file_status posix_symlink_status(const path& p, std::error_code& ec) noexcept { +ARB_SUP_API file_status posix_symlink_status(const path& p, std::error_code& ec) noexcept { struct stat st; int r = lstat(p.c_str(), &st); return impl::status(p.c_str(), r, st, ec); diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index db3e8e7e92..5b398e61cb 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -1,6 +1,7 @@ find_package(Threads REQUIRED) -add_library(gtest EXCLUDE_FROM_ALL STATIC gtest-all.cpp) +add_library(gtest EXCLUDE_FROM_ALL gtest-all.cpp) +set_target_properties(gtest PROPERTIES CXX_VISIBILITY_PRESET hidden) target_include_directories(gtest PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) target_link_libraries(gtest PUBLIC Threads::Threads) diff --git a/test/ubench/event_binning.cpp b/test/ubench/event_binning.cpp index 85e78db5dd..115328ca8b 100644 --- a/test/ubench/event_binning.cpp +++ b/test/ubench/event_binning.cpp @@ -45,9 +45,8 @@ std::vector generate_inputs(const std::vector& gids, for (std::size_t i=0; i generate_inputs(size_t ncells, size_t ev_per_cell) { - std::vector input_events; +std::vector> generate_inputs(size_t ncells, size_t ev_per_cell) { + std::vector> input_events; std::default_random_engine engine; std::uniform_int_distribution(0u, ncells); @@ -38,53 +38,15 @@ std::vector generate_inputs(size_t ncells, size_t ev_per_cell) { spike_event ev; auto gid = gid_dist(gen); auto t = time_dist(gen); - ev.target = {cell_gid_type(gid), cell_lid_type(0)}; + ev.target = cell_lid_type(0); ev.time = t; ev.weight = 0; - input_events.push_back(ev); + input_events.emplace_back(gid, ev); } return input_events; } -void single_queue(benchmark::State& state) { - using pev = spike_event; - - const std::size_t ncells = state.range(0); - const std::size_t ev_per_cell = state.range(1); - - // state - std::vector input_events = generate_inputs(ncells, ev_per_cell); - - event_queue events; - while (state.KeepRunning()) { - // push events into a single queue - for (const auto& e: input_events) { - events.push(e); - } - - // pop from queue to form single sorted vector - std::vector staged_events; - staged_events.reserve(events.size()); - while (auto e = events.pop_if_before(1.f)) { - staged_events.push_back(*e); - } - // sort the staged events in order of target id - std::stable_sort( - staged_events.begin(), staged_events.end(), - [](const pev& l, const pev& r) {return l.target.gidApply(run_custom_arguments); -BENCHMARK(single_queue)->Apply(run_custom_arguments); BENCHMARK(n_queue)->Apply(run_custom_arguments); BENCHMARK(n_vector)->Apply(run_custom_arguments); diff --git a/test/ubench/fvm_discretize.cpp b/test/ubench/fvm_discretize.cpp index a1ba32539b..124e144ed9 100644 --- a/test/ubench/fvm_discretize.cpp +++ b/test/ubench/fvm_discretize.cpp @@ -37,7 +37,7 @@ void run_cv_geom(benchmark::State& state) { auto ends = cv_policy_fixed_per_branch(ncv_per_branch).cv_boundary_points(c); while (state.KeepRunning()) { - benchmark::DoNotOptimize(cv_geometry_from_ends(c, ends)); + benchmark::DoNotOptimize(cv_geometry(c, ends)); } } @@ -48,7 +48,7 @@ void run_cv_geom_every_segment(benchmark::State& state) { auto ends = cv_policy_every_segment().cv_boundary_points(c); while (state.KeepRunning()) { - benchmark::DoNotOptimize(cv_geometry_from_ends(c, ends)); + benchmark::DoNotOptimize(cv_geometry(c, ends)); } } @@ -61,7 +61,7 @@ void run_cv_geom_explicit(benchmark::State& state) { auto ends = cv_policy_every_segment().cv_boundary_points(c); auto ends2 = cv_policy_explicit(std::move(ends)).cv_boundary_points(c); - benchmark::DoNotOptimize(cv_geometry_from_ends(c, ends2)); + benchmark::DoNotOptimize(cv_geometry(c, ends2)); } } diff --git a/test/ubench/mech_vec.cpp b/test/ubench/mech_vec.cpp index 1fc8354735..5da4a6c021 100644 --- a/test/ubench/mech_vec.cpp +++ b/test/ubench/mech_vec.cpp @@ -62,13 +62,13 @@ class recipe_expsyn_1_branch: public recipe { tree.append(s1, {0,0,soma_radius+dend_length,dend_radius}, 3); arb::decor decor; - decor.paint(arb::reg::tagged(1), "pas"); + decor.paint(arb::reg::tagged(1), arb::density("pas")); decor.set_default(arb::cv_policy_max_extent((dend_length+soma_radius*2)/num_comp_)); auto distribution = std::uniform_real_distribution(0.f, 1.0f); for(unsigned i = 0; i < num_synapse_; i++) { auto gen = std::mt19937(i); - decor.place(arb::mlocation{0, distribution(gen)}, "expsyn"); + decor.place(arb::mlocation{0, distribution(gen)}, arb::synapse("expsyn"), "syn"); } return arb::cable_cell{arb::morphology(tree), {}, decor}; @@ -109,7 +109,7 @@ class recipe_pas_1_branch: public recipe { tree.append(s1, {0,0,soma_radius+dend_length,dend_radius}, 3); arb::decor decor; - decor.paint(arb::reg::all(), "pas"); + decor.paint(arb::reg::all(), arb::density("pas")); decor.set_default(arb::cv_policy_max_extent((dend_length+soma_radius*2)/num_comp_)); return arb::cable_cell {arb::morphology(tree), {}, decor}; @@ -152,7 +152,7 @@ class recipe_pas_3_branches: public recipe { tree.append(s2, {dend_length,0 ,soma_radius+dend_length, dend_radius}, 3); arb::decor decor; - decor.paint(arb::reg::all(), "pas"); + decor.paint(arb::reg::all(), arb::density("pas")); decor.set_default(arb::cv_policy_max_extent((dend_length*3+soma_radius*2)/num_comp_)); return arb::cable_cell{arb::morphology(tree), {}, decor}; @@ -193,7 +193,7 @@ class recipe_hh_1_branch: public recipe { tree.append(s1, {0 ,0 ,soma_radius+dend_length, dend_radius}, 3); arb::decor decor; - decor.paint(arb::reg::all(), "hh"); + decor.paint(arb::reg::all(), arb::density("hh")); decor.set_default(arb::cv_policy_max_extent((dend_length+soma_radius*2)/num_comp_)); return arb::cable_cell{arb::morphology(tree), {}, decor}; @@ -236,7 +236,7 @@ class recipe_hh_3_branches: public recipe { tree.append( s2, {dend_length,0 ,soma_radius+dend_length, dend_radius}, 3); arb::decor decor; - decor.paint(arb::reg::all(), "hh"); + decor.paint(arb::reg::all(), arb::density("hh")); decor.set_default(arb::cv_policy_max_extent((dend_length*3+soma_radius*2)/num_comp_)); return arb::cable_cell{arb::morphology(tree), {}, decor}; @@ -256,13 +256,8 @@ void expsyn_1_branch_current(benchmark::State& state) { const unsigned nsynapse = state.range(1); recipe_expsyn_1_branch rec_expsyn_1_branch(ncomp, nsynapse); - std::vector gids = {0}; - std::vector target_handles; - std::vector cell_to_intdom; - probe_association_map probe_handles; - fvm_cell cell((execution_context())); - cell.initialize(gids, rec_expsyn_1_branch, cell_to_intdom, target_handles, probe_handles); + cell.initialize({0}, rec_expsyn_1_branch); auto& m = find_mechanism("expsyn", cell); @@ -276,13 +271,8 @@ void expsyn_1_branch_state(benchmark::State& state) { const unsigned nsynapse = state.range(1); recipe_expsyn_1_branch rec_expsyn_1_branch(ncomp, nsynapse); - std::vector gids = {0}; - std::vector target_handles; - std::vector cell_to_intdom; - probe_association_map probe_handles; - fvm_cell cell((execution_context())); - cell.initialize(gids, rec_expsyn_1_branch, cell_to_intdom, target_handles, probe_handles); + cell.initialize({0}, rec_expsyn_1_branch); auto& m = find_mechanism("expsyn", cell); @@ -295,13 +285,8 @@ void pas_1_branch_current(benchmark::State& state) { const unsigned ncomp = state.range(0); recipe_pas_1_branch rec_pas_1_branch(ncomp); - std::vector gids = {0}; - std::vector target_handles; - std::vector cell_to_intdom; - probe_association_map probe_handles; - fvm_cell cell((execution_context())); - cell.initialize(gids, rec_pas_1_branch, cell_to_intdom, target_handles, probe_handles); + cell.initialize({0}, rec_pas_1_branch); auto& m = find_mechanism("pas", cell); @@ -314,13 +299,8 @@ void pas_3_branches_current(benchmark::State& state) { const unsigned ncomp = state.range(0); recipe_pas_3_branches rec_pas_3_branches(ncomp); - std::vector gids = {0}; - std::vector target_handles; - std::vector cell_to_intdom; - probe_association_map probe_handles; - fvm_cell cell((execution_context())); - cell.initialize(gids, rec_pas_3_branches, cell_to_intdom, target_handles, probe_handles); + cell.initialize({0}, rec_pas_3_branches); auto& m = find_mechanism("pas", cell); @@ -333,13 +313,8 @@ void hh_1_branch_state(benchmark::State& state) { const unsigned ncomp = state.range(0); recipe_hh_1_branch rec_hh_1_branch(ncomp); - std::vector gids = {0}; - std::vector target_handles; - std::vector cell_to_intdom; - probe_association_map probe_handles; - fvm_cell cell((execution_context())); - cell.initialize(gids, rec_hh_1_branch, cell_to_intdom, target_handles, probe_handles); + cell.initialize({0}, rec_hh_1_branch); auto& m = find_mechanism("hh", cell); @@ -352,13 +327,8 @@ void hh_1_branch_current(benchmark::State& state) { const unsigned ncomp = state.range(0); recipe_hh_1_branch rec_hh_1_branch(ncomp); - std::vector gids = {0}; - std::vector target_handles; - std::vector cell_to_intdom; - probe_association_map probe_handles; - fvm_cell cell((execution_context())); - cell.initialize(gids, rec_hh_1_branch, cell_to_intdom, target_handles, probe_handles); + cell.initialize({0}, rec_hh_1_branch); auto& m = find_mechanism("hh", cell); @@ -371,13 +341,8 @@ void hh_3_branches_state(benchmark::State& state) { const unsigned ncomp = state.range(0); recipe_hh_3_branches rec_hh_3_branches(ncomp); - std::vector gids = {0}; - std::vector target_handles; - std::vector cell_to_intdom; - probe_association_map probe_handles; - fvm_cell cell((execution_context())); - cell.initialize(gids, rec_hh_3_branches, cell_to_intdom, target_handles, probe_handles); + cell.initialize({0}, rec_hh_3_branches); auto& m = find_mechanism("hh", cell); @@ -390,13 +355,8 @@ void hh_3_branches_current(benchmark::State& state) { const unsigned ncomp = state.range(0); recipe_hh_3_branches rec_hh_3_branches(ncomp); - std::vector gids = {0}; - std::vector target_handles; - std::vector cell_to_intdom; - probe_association_map probe_handles; - fvm_cell cell((execution_context())); - cell.initialize(gids, rec_hh_3_branches, cell_to_intdom, target_handles, probe_handles); + cell.initialize({0}, rec_hh_3_branches); auto& m = find_mechanism("hh", cell); diff --git a/test/unit-distributed/test_communicator.cpp b/test/unit-distributed/test_communicator.cpp index eeefa66789..e3ac5250e3 100644 --- a/test/unit-distributed/test_communicator.cpp +++ b/test/unit-distributed/test_communicator.cpp @@ -644,10 +644,10 @@ TEST(communicator, all2all) for (auto i: util::make_span(0, n_global)) { for (unsigned j = 0; j < n_local; ++j) { auto c = connections[i*n_local+j]; - EXPECT_EQ(i, c.source().gid); - EXPECT_EQ(0u, c.source().index); - EXPECT_EQ(i, c.destination()); - EXPECT_LT(c.index_on_domain(), n_local); + EXPECT_EQ(i, c.source.gid); + EXPECT_EQ(0u, c.source.index); + EXPECT_EQ(i, c.destination); + EXPECT_LT(c.index_on_domain, n_local); } } @@ -689,7 +689,7 @@ TEST(communicator, mini_network) // sort connections by source then target auto connections = C.connections(); util::sort(connections, [](const connection& lhs, const connection& rhs) { - return std::forward_as_tuple(lhs.source(), lhs.index_on_domain(), lhs.destination()) < std::forward_as_tuple(rhs.source(), rhs.index_on_domain(), rhs.destination()); + return std::forward_as_tuple(lhs.source, lhs.index_on_domain, lhs.destination) < std::forward_as_tuple(rhs.source, rhs.index_on_domain, rhs.destination); }); // Expect one set of 22 connections from every rank: these have been sorted. @@ -701,9 +701,9 @@ TEST(communicator, mini_network) std::vector ex_source_gids(22u, i*3 + 1); for (unsigned j = 0; j < 22u; ++j) { auto c = connections[i*22 + j]; - EXPECT_EQ(ex_source_gids[j], c.source().gid); - EXPECT_EQ(ex_source_lids[j], c.source().index); - EXPECT_EQ(ex_target_lids[i%2][j], c.destination()); + EXPECT_EQ(ex_source_gids[j], c.source.gid); + EXPECT_EQ(ex_source_lids[j], c.source.index); + EXPECT_EQ(ex_target_lids[i%2][j], c.destination); } } } diff --git a/test/unit-modcc/mod_files/bug-1893-bad.mod b/test/unit-modcc/mod_files/bug-1893-bad.mod new file mode 100644 index 0000000000..fde7f171b3 --- /dev/null +++ b/test/unit-modcc/mod_files/bug-1893-bad.mod @@ -0,0 +1,28 @@ +NEURON { + POINT_PROCESS bug_1893 +} + +INITIAL { + c = 0 + rho = 0 + theta_p = 0 +} + +STATE { + c + rho + theta_p +} + +PARAMETER { + tau_c = 150 (ms) +} + +BREAKPOINT { + SOLVE state METHOD cnexp +} + +DERIVATIVE state { + c' = -c/tau_c + rho' = (c - theta_p) > 0 +} diff --git a/test/unit-modcc/mod_files/bug-1893.mod b/test/unit-modcc/mod_files/bug-1893.mod new file mode 100644 index 0000000000..14cfd5e5dc --- /dev/null +++ b/test/unit-modcc/mod_files/bug-1893.mod @@ -0,0 +1,28 @@ +NEURON { + POINT_PROCESS bug_1893 +} + +INITIAL { + c = 0 + rho = 0 + theta_p = 0 +} + +STATE { + c + rho + theta_p +} + +PARAMETER { + tau_c = 150 (ms) +} + +BREAKPOINT { + SOLVE state METHOD sparse +} + +DERIVATIVE state { + c' = -c/tau_c + rho' = (c - theta_p) > 0 +} diff --git a/test/unit-modcc/mod_files/test-rw-ion.mod b/test/unit-modcc/mod_files/test-rw-ion.mod new file mode 100644 index 0000000000..ea2800db1d --- /dev/null +++ b/test/unit-modcc/mod_files/test-rw-ion.mod @@ -0,0 +1,8 @@ +NEURON { + SUFFIX hh + USEION na READ ena, ina WRITE ina +} + +BREAKPOINT { ina = 5*(v - ena) } + +INITIAL {} diff --git a/test/unit-modcc/test_module.cpp b/test/unit-modcc/test_module.cpp index f708fc91d5..9e9a1db0a7 100644 --- a/test/unit-modcc/test_module.cpp +++ b/test/unit-modcc/test_module.cpp @@ -113,3 +113,33 @@ TEST(Module, breakpoint) { EXPECT_TRUE(m.semantic()); } + +TEST(Module, read_write_ion) { + Module m(io::read_all(DATADIR "/mod_files/test-rw-ion.mod"), "test-rw-ion.mod"); + EXPECT_NE(m.buffer().size(), 0); + + Parser p(m, false); + EXPECT_TRUE(p.parse()); + EXPECT_TRUE(m.semantic()); +} + +// Regression test in #1893 we found that the solver segfaults when handed a +// naked comparison statement. +TEST(Module, solver_bug_1893) { + { + Module m(io::read_all(DATADIR "/mod_files/bug-1893.mod"), "bug-1893.mod"); + EXPECT_NE(m.buffer().size(), 0); + + Parser p(m, false); + EXPECT_TRUE(p.parse()); + EXPECT_TRUE(m.semantic()); + } + { + Module m(io::read_all(DATADIR "/mod_files/bug-1893-bad.mod"), "bug-1893.mod"); + EXPECT_NE(m.buffer().size(), 0); + + Parser p(m, false); + EXPECT_TRUE(p.parse()); + EXPECT_FALSE(m.semantic()); + } +} diff --git a/test/unit-modcc/test_parser.cpp b/test/unit-modcc/test_parser.cpp index 5916704cea..18d3e19c18 100644 --- a/test/unit-modcc/test_parser.cpp +++ b/test/unit-modcc/test_parser.cpp @@ -279,6 +279,10 @@ TEST(Parser, parse_conductance) { } } +TEST(Parser, parse_watch) { + EXPECT_TRUE(check_parse_fail(&Parser::parse_watch, "WATCH( 0 < 1) 42")); +} + TEST(Parser, parse_if) { std::unique_ptr s; diff --git a/test/unit/CMakeLists.txt b/test/unit/CMakeLists.txt index 9c17cbc0e0..3d810ee426 100644 --- a/test/unit/CMakeLists.txt +++ b/test/unit/CMakeLists.txt @@ -112,6 +112,8 @@ set(unit_sources test_forest.cpp test_fvm_layout.cpp test_fvm_lowered.cpp + test_diffusion.cpp + test_iexpr.cpp test_index.cpp test_kinetic_linear.cpp test_lexcmp.cpp @@ -241,6 +243,10 @@ if(${CMAKE_POSITION_INDEPENDENT_CODE}) add_dependencies(unit dummy-catalogue) endif() +if(ARB_WITH_GPU) + target_compile_definitions(unit PRIVATE ARB_GPU_ENABLED) +endif() + if(ARB_WITH_NVCC) target_compile_options(unit PRIVATE -DARB_CUDA) endif() diff --git a/test/unit/test_cv_geom.cpp b/test/unit/test_cv_geom.cpp index 2e7d58b476..cfca8a58de 100644 --- a/test/unit/test_cv_geom.cpp +++ b/test/unit/test_cv_geom.cpp @@ -29,7 +29,7 @@ ::testing::AssertionResult verify_cv_children(const cv_geometry& g) { } for (auto cv: g.children(i)) { - if ((fvm_index_type)i != g.cv_parent.at(cv)) { + if ((arb_index_type)i != g.cv_parent.at(cv)) { return ::testing::AssertionFailure() << "CV " << i << " has child CV " << cv << " which has parent " << g.cv_parent.at(cv); } diff --git a/test/unit/test_diffusion.cpp b/test/unit/test_diffusion.cpp new file mode 100644 index 0000000000..a3bcc6a4df --- /dev/null +++ b/test/unit/test_diffusion.cpp @@ -0,0 +1,290 @@ +#include +#include +#include +#include + +#include "../gtest.h" + +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include + +using namespace std::string_literals; +using namespace arborio::literals; + +using namespace arb; + +constexpr double epsilon = 1e-6; +#ifdef ARB_GPU_ENABLED +constexpr int with_gpu = 0; +#else +constexpr int with_gpu = -1; +#endif + +struct linear: public recipe { + linear(double x, double d, double c): extent{x}, diameter{d}, cv_length{c} { + gprop.default_parameters = arb::neuron_parameter_defaults; + gprop.default_parameters.discretization = arb::cv_policy_max_extent{cv_length}; + // Stick morphology + // -----x----- + segment_tree tree; + auto p = mnpos; + p = tree.append(p, { -extent, 0, 0, diameter}, {extent, 0, 0, diameter}, 1); + morph = {tree}; + } + + arb::cell_size_type num_cells() const override { return 1; } + arb::cell_kind get_cell_kind(arb::cell_gid_type) const override { return arb::cell_kind::cable; } + std::any get_global_properties(arb::cell_kind) const override { return gprop; } + std::vector get_probes(arb::cell_gid_type) const override { return {arb::cable_probe_ion_diff_concentration_cell{"na"}}; } + util::unique_any get_cell_description(arb::cell_gid_type) const override { return arb::cable_cell(morph, {}, decor); } + + std::vector event_generators(arb::cell_gid_type gid) const override { + std::vector result; + for (const auto& [t, w]: inject_at) { + result.push_back(arb::explicit_generator({"Zap"}, w, std::vector{t})); + } + return result; + } + + arb::cable_cell_global_properties gprop; + double extent = 1.0, + diameter = 1.0, + cv_length = 1.0; + std::vector> inject_at; + morphology morph; + arb::decor decor; + + linear& add_decay() { decor.paint("(all)"_reg, arb::density("decay/x=na")); return *this; } + linear& add_inject() { decor.place("(location 0 0.5)"_ls, arb::synapse("inject/x=na", {{"alpha", 200.0*cv_length}}), "Zap"); return *this; } + linear& add_event(double t, float w) { inject_at.push_back({t, w}); return *this; } + linear& set_diffusivity(double d, std::optional rg = {}) { + if (rg) decor.paint(*rg, ion_diffusivity{"na", d}); + else decor.set_default(ion_diffusivity{"na", d}); + return *this; + } + linear& set_concentration(double d, std::optional rg = {}) { + if (rg) decor.paint(*rg, init_int_concentration{"na", d}); + else decor.set_default(init_int_concentration{"na", d}); + return *this; + } +}; + +using result_t = std::vector>; + +testing::AssertionResult all_near(const result_t& a, const result_t& b, double eps) { + if (a.size() != b.size()) return testing::AssertionFailure() << "sequences differ in length"; + std::stringstream res; + for (size_t ix = 0; ix < a.size(); ++ix) { + const auto&[ax, ay, az] = a[ix]; + const auto&[bx, by, bz] = b[ix]; + if (fabs(ax - bx) > eps) res << " X elements " << ax << " and " << bx << " differ at index " << ix << "."; + if (fabs(ay - by) > eps) res << " Y elements " << ay << " and " << by << " differ at index " << ix << "."; + if (fabs(az - bz) > eps) res << " Z elements " << az << " and " << bz << " differ at index " << ix << "."; + } + std::string str = res.str(); + if (str.empty()) return testing::AssertionSuccess(); + else return testing::AssertionFailure() << str; +} + +testing::AssertionResult run(const linear& rec, const result_t exp) { + result_t sample_values; + auto sampler = [&sample_values](arb::probe_metadata pm, std::size_t n, const arb::sample_record* samples) { + sample_values.clear(); + auto ptr = arb::util::any_cast(pm.meta); + ASSERT_NE(ptr, nullptr); + auto n_cable = ptr->size(); + for (std::size_t i = 0; i(samples[i].data); + for (unsigned j = 0; j; using group_gids_type = std::vector; std::vector run_test_sim(const recipe& R, const group_gids_type& group_gids) { - arb::context ctx = make_context(proc_allocation{}); - unsigned n = R.num_cells(); + unsigned n = R.num_cells(); std::vector groups; for (const auto& gidvec: group_gids) { groups.emplace_back(cell_kind::cable, gidvec, backend_kind::multicore); } - auto D = domain_decomposition(R, ctx, groups); - std::vector spikes; - simulation sim(R, D, ctx); + auto C = make_context(); + auto D = domain_decomposition(R, C, groups); + simulation sim(R, C, D); + + std::vector spikes; sim.set_global_spike_callback( [&spikes](const std::vector& ss) { spikes.insert(spikes.end(), ss.begin(), ss.end()); diff --git a/test/unit/test_event_generators.cpp b/test/unit/test_event_generators.cpp index cdb97b8257..066612c0da 100644 --- a/test/unit/test_event_generators.cpp +++ b/test/unit/test_event_generators.cpp @@ -33,8 +33,7 @@ TEST(event_generators, assign_and_copy) { event_generator g1(gen); EXPECT_EQ(expected, first(g1.events(0., 1.))); - event_generator g2; - g2 = gen; + event_generator g2 = gen; EXPECT_EQ(expected, first(g2.events(0., 1.))); const auto& const_gen = gen; @@ -42,8 +41,7 @@ TEST(event_generators, assign_and_copy) { event_generator g3(const_gen); EXPECT_EQ(expected, first(g3.events(0., 1.))); - event_generator g4; - g4 = gen; + event_generator g4 = gen; EXPECT_EQ(expected, first(g4.events(0., 1.))); event_generator g5(std::move(gen)); @@ -82,54 +80,30 @@ TEST(event_generators, regular) { EXPECT_EQ(expected({12, 12.5}), as_vector(gen.events(12, 12.7))); } +using lse_vector = std::vector>; + TEST(event_generators, seq) { - explicit_generator::lse_vector in = { - {{"l0"}, 0.1, 1.0}, - {{"l0"}, 1.0, 2.0}, - {{"l2"}, 1.0, 3.0}, - {{"l1"}, 1.5, 4.0}, - {{"l2"}, 2.3, 5.0}, - {{"l0"}, 3.0, 6.0}, - {{"l0"}, 3.5, 7.0}, - }; - std::unordered_map lid_map = {{"l0", 0},{"l1", 1}, {"l2", 2}}; + std::vector times = {1, 2, 3, 4, 5, 6, 7}; + lse_vector in; pse_vector expected; - std::transform(in.begin(), in.end(), std::back_inserter(expected), - [lid_map](const auto& item) {return spike_event{lid_map.at(item.label.tag), item.time, item.weight};}); - - event_generator gen = explicit_generator(in); - gen.resolve_label([lid_map](const cell_local_label_type& item) {return lid_map.at(item.tag);}); - - EXPECT_EQ(expected, as_vector(gen.events(0, 100.))); - gen.reset(); - EXPECT_EQ(expected, as_vector(gen.events(0, 100.))); - gen.reset(); + float weight = 0.42; + arb::cell_local_label_type l0 = {"l0"}; + for (auto time: times) { + in.push_back({l0, weight, time}); + expected.push_back({0, time, weight}); + } - // Check reported sub-intervals against a smaller set of events. - in = { - {{"l0"}, 1.5, 4.0}, - {{"l0"}, 2.3, 5.0}, - {{"l0"}, 3.0, 6.0}, - {{"l0"}, 3.5, 7.0}, - }; - expected.clear(); - std::transform(in.begin(), in.end(), std::back_inserter(expected), - [lid_map](const auto& item) {return spike_event{lid_map.at(item.label.tag), item.time, item.weight};}); + event_generator gen = explicit_generator(l0, weight, times); + gen.resolve_label([](const cell_local_label_type&) {return 0;}); - gen = explicit_generator(in); - gen.resolve_label([lid_map](const cell_local_label_type& item) {return lid_map.at(item.tag);}); + EXPECT_EQ(expected, as_vector(gen.events(0, 100.))); gen.reset(); + EXPECT_EQ(expected, as_vector(gen.events(0, 100.))); gen.reset(); - auto draw = [](event_generator& gen, time_type t0, time_type t1) { - gen.reset(); - return as_vector(gen.events(t0, t1)); - }; - - auto events = [&expected] (int b, int e) { - return pse_vector(expected.begin()+b, expected.begin()+e); - }; + auto draw = [](auto& gen, auto t0, auto t1) { gen.reset(); return as_vector(gen.events(t0, t1)); }; + auto events = [&expected] (int b, int e) { auto beg = expected.begin(); return pse_vector(beg+b, beg+e); }; // a range that includes all the events - EXPECT_EQ(expected, draw(gen, 0, 4)); + EXPECT_EQ(expected, draw(gen, 0, 8)); // a strict subset including the first event EXPECT_EQ(events(0, 2), draw(gen, 0, 3)); diff --git a/test/unit/test_fvm_layout.cpp b/test/unit/test_fvm_layout.cpp index e7836e77e5..f81c76fd49 100644 --- a/test/unit/test_fvm_layout.cpp +++ b/test/unit/test_fvm_layout.cpp @@ -40,6 +40,9 @@ using util::value_by_key; using backend = arb::multicore::backend; using fvm_cell = arb::fvm_lowered_cell_impl; +// instantiate template class +template class arb::fvm_lowered_cell_impl; + namespace { struct system { std::vector builders; @@ -262,7 +265,7 @@ TEST(fvm_layout, mech_index) { auto& expsyn_config = M.mechanisms.at("expsyn"); auto& exp2syn_config = M.mechanisms.at("exp2syn"); - using ivec = std::vector; + using ivec = std::vector; // HH on somas of two cells, with CVs 0 and 5. // Proportional area contrib: soma area/CV area. @@ -333,7 +336,7 @@ struct exp_instance { }; TEST(fvm_layout, coalescing_synapses) { - using ivec = std::vector; + using ivec = std::vector; auto syn_desc = [&](const char* name, double val0, double val1) { mechanism_desc m(name); @@ -589,7 +592,7 @@ TEST(fvm_layout, synapse_targets) { EXPECT_TRUE(util::is_sorted(expsyn_cv)); EXPECT_TRUE(util::is_sorted(exp2syn_cv)); - using uvec = std::vector; + using uvec = std::vector; uvec all_target_indices; util::append(all_target_indices, expsyn_target); util::append(all_target_indices, exp2syn_target); @@ -1225,7 +1228,7 @@ TEST(fvm_lowered, cell_group_gj) { EXPECT_EQ(expected[i], GJ1[i+10]); } - std::vector expected_doms= {0u, 1u, 0u, 2u, 0u, 3u, 0u, 4u, 0u, 5u}; + std::vector expected_doms= {0u, 1u, 0u, 2u, 0u, 3u, 0u, 4u, 0u, 5u}; EXPECT_EQ(6u, num_dom0); EXPECT_EQ(6u, num_dom1); @@ -1471,7 +1474,7 @@ TEST(fvm_layout, valence_verify) { EXPECT_THROW(fvm_build_mechanism_data(gprop, cells, gids, gj_conns, D), cable_cell_error); // Adding ion, should be fine now: - gprop.default_parameters.ion_data["cl"] = { 1., 1., 0. }; + gprop.default_parameters.ion_data["cl"] = { 1., 1., 0., 0. }; gprop.ion_species["cl"] = -1; EXPECT_NO_THROW(fvm_build_mechanism_data(gprop, cells, gids, gj_conns, D)); @@ -1510,9 +1513,9 @@ TEST(fvm_layout, ion_weights) { builder.add_branch(1, 200, 0.5, 0.5, 1, "dend"); builder.add_branch(1, 100, 0.5, 0.5, 1, "dend"); - using uvec = std::vector; - using ivec = std::vector; - using fvec = std::vector; + using uvec = std::vector; + using ivec = std::vector; + using fvec = std::vector; //uvec mech_branches[] = { //{0}, {0,2}, {2, 3}, {0, 1, 2, 3}, {3} @@ -1533,8 +1536,8 @@ TEST(fvm_layout, ion_weights) { gprop.catalogue = make_unit_test_catalogue(); gprop.default_parameters = neuron_parameter_defaults; - fvm_value_type cai = gprop.default_parameters.ion_data["ca"].init_int_concentration.value(); - fvm_value_type cao = gprop.default_parameters.ion_data["ca"].init_ext_concentration.value(); + arb_value_type cai = gprop.default_parameters.ion_data["ca"].init_int_concentration.value(); + arb_value_type cao = gprop.default_parameters.ion_data["ca"].init_ext_concentration.value(); for (auto& v: expected_init_iconc) { for (auto& iconc: v) { @@ -1562,9 +1565,9 @@ TEST(fvm_layout, ion_weights) { EXPECT_EQ(expected_ion_cv[run], ca.cv); - EXPECT_TRUE(testing::seq_almost_eq(expected_init_iconc[run], ca.init_iconc)); + EXPECT_TRUE(testing::seq_almost_eq(expected_init_iconc[run], ca.init_iconc)); - EXPECT_TRUE(util::all_of(ca.init_econc, [cao](fvm_value_type v) { return v==cao; })); + EXPECT_TRUE(util::all_of(ca.init_econc, [cao](arb_value_type v) { return v==cao; })); } } @@ -1643,7 +1646,7 @@ TEST(fvm_layout, revpot) { // of the second cell. auto soma1_index = D.geometry.cell_cv_divs[1]; ASSERT_EQ(1u, M.mechanisms.count(write_eb_ec.name())); - EXPECT_EQ((std::vector(1, soma1_index)), M.mechanisms.at(write_eb_ec.name()).cv); + EXPECT_EQ((std::vector(1, soma1_index)), M.mechanisms.at(write_eb_ec.name()).cv); } } @@ -1671,7 +1674,7 @@ TEST(fvm_layout, vinterp_cable) { for (auto pos: site_pos) { mlocation site{0, pos}; - fvm_index_type expected_distal; + arb_index_type expected_distal; if (pos<0.3) { expected_distal = 1; } @@ -1684,7 +1687,7 @@ TEST(fvm_layout, vinterp_cable) { else { expected_distal = 4; } - fvm_index_type expected_proximal = expected_distal-1; + arb_index_type expected_proximal = expected_distal-1; fvm_voltage_interpolant I = fvm_interpolate_voltage(cell, D, 0, site); diff --git a/test/unit/test_fvm_lowered.cpp b/test/unit/test_fvm_lowered.cpp index e1599b5d7f..334d4819ec 100644 --- a/test/unit/test_fvm_lowered.cpp +++ b/test/unit/test_fvm_lowered.cpp @@ -48,8 +48,7 @@ using fvm_cell = arb::fvm_lowered_cell_impl; using shared_state = backend::shared_state; ACCESS_BIND(std::unique_ptr fvm_cell::*, private_state_ptr, &fvm_cell::state_) -using matrix = arb::matrix; -ACCESS_BIND(matrix fvm_cell::*, private_matrix_ptr, &fvm_cell::matrix_) +using matrix = arb::multicore::cable_solver; ACCESS_BIND(std::vector fvm_cell::*, private_mechanisms_ptr, &fvm_cell::mechanisms_) @@ -202,8 +201,8 @@ TEST(fvm_lowered, matrix_init) fvm_cell fvcell(*context); fvcell.initialize({0}, cable1d_recipe(cell)); - auto& J = fvcell.*private_matrix_ptr; auto& S = fvcell.*private_state_ptr; + auto& J = S->solver; EXPECT_EQ(J.size(), 12u); // Test that the matrix is initialized with sensible values @@ -211,14 +210,13 @@ TEST(fvm_lowered, matrix_init) fvcell.integrate(0.01, 0.01, {}, {}); auto n = J.size(); - auto& mat = J.state_; - EXPECT_FALSE(arb::util::any_of(util::subrange_view(mat.u, 1, n), isnan)); - EXPECT_FALSE(arb::util::any_of(mat.d, isnan)); + EXPECT_FALSE(arb::util::any_of(util::subrange_view(J.u, 1, n), isnan)); + EXPECT_FALSE(arb::util::any_of(J.d, isnan)); EXPECT_FALSE(arb::util::any_of(S->voltage, isnan)); - EXPECT_FALSE(arb::util::any_of(util::subrange_view(mat.u, 1, n), ispos)); - EXPECT_FALSE(arb::util::any_of(mat.d, isneg)); + EXPECT_FALSE(arb::util::any_of(util::subrange_view(J.u, 1, n), ispos)); + EXPECT_FALSE(arb::util::any_of(J.d, isneg)); } TEST(fvm_lowered, target_handles) { @@ -302,8 +300,8 @@ TEST(fvm_lowered, stimulus) { std::vector cells{desc}; - const fvm_size_type soma_cv = 0u; - const fvm_size_type tip_cv = 5u; + const arb_size_type soma_cv = 0u; + const arb_size_type tip_cv = 5u; // The implementation of the stimulus is tested by creating a lowered cell, then // testing that the correct currents are injected at the correct control volumes @@ -457,7 +455,7 @@ TEST(fvm_lowered, derived_mechs) { // Both mechanisms will have the same internal name, "test_kin1". - using fvec = std::vector; + using fvec = std::vector; fvec tau_values; for (auto& mech: fvcell.*private_mechanisms_ptr) { ASSERT_TRUE(mech); @@ -487,7 +485,7 @@ TEST(fvm_lowered, derived_mechs) { float times[] = {10.f, 20.f}; auto decomp = partition_load_balance(rec, context); - simulation sim(rec, decomp, context); + simulation sim(rec, context, decomp); sim.add_sampler(all_probes, explicit_schedule(times), sampler); sim.run(30.0, 1.f/1024); @@ -518,7 +516,7 @@ TEST(fvm_lowered, null_region) { rec.catalogue().derive("custom_kin1", "test_kin1", {{"tau", 20.0}}); auto decomp = partition_load_balance(rec, context); - simulation sim(rec, decomp, context); + simulation sim(rec, context, decomp); EXPECT_NO_THROW(sim.run(30.0, 1.f/1024)); } @@ -574,23 +572,26 @@ TEST(fvm_lowered, ionic_concentrations) { auto cat = make_unit_test_catalogue(); // one cell, one CV: - fvm_size_type ncell = 1; - fvm_size_type ncv = 1; - std::vector cv_to_intdom(ncv, 0); - std::vector temp(ncv, 23); - std::vector diam(ncv, 1.); - std::vector vinit(ncv, -65); - std::vector src_to_spike = {}; + arb_size_type ncell = 1; + arb_size_type ncv = 1; + std::vector cv_to_intdom(ncv, 0); + std::vector temp(ncv, 23); + std::vector diam(ncv, 1.); + std::vector vinit(ncv, -65); + std::vector src_to_spike = {}; fvm_ion_config ion_config; mechanism_layout layout; mechanism_overrides overrides; layout.weight.assign(ncv, 1.); - for (fvm_size_type i = 0; iinitialize(); write_cai_mech->initialize(); - std::vector expected_s_values(ncv, 2.3e-4); + std::vector expected_s_values(ncv, 2.3e-4); EXPECT_EQ(expected_s_values, mechanism_field(read_cai_mech.get(), "s")); @@ -810,10 +811,10 @@ TEST(fvm_lowered, integration_domains) { fvm_cell fvcell(*context); std::vector gids = {11u, 5u, 2u, 3u, 0u, 8u, 7u}; - std::vector cell_to_intdom; + std::vector cell_to_intdom; auto num_dom = fvcell.fvm_intdom(gap_recipe_0(), gids, cell_to_intdom); - std::vector expected_doms= {0u, 1u, 2u, 2u, 1u, 3u, 2u}; + std::vector expected_doms= {0u, 1u, 2u, 2u, 1u, 3u, 2u}; EXPECT_EQ(4u, num_dom); EXPECT_EQ(expected_doms, cell_to_intdom); @@ -823,10 +824,10 @@ TEST(fvm_lowered, integration_domains) { fvm_cell fvcell(*context); std::vector gids = {11u, 5u, 2u, 3u, 0u, 8u, 7u}; - std::vector cell_to_intdom; + std::vector cell_to_intdom; auto num_dom = fvcell.fvm_intdom(gap_recipe_1(), gids, cell_to_intdom); - std::vector expected_doms= {0u, 1u, 2u, 3u, 4u, 5u, 6u}; + std::vector expected_doms= {0u, 1u, 2u, 3u, 4u, 5u, 6u}; EXPECT_EQ(7u, num_dom); EXPECT_EQ(expected_doms, cell_to_intdom); @@ -836,10 +837,10 @@ TEST(fvm_lowered, integration_domains) { fvm_cell fvcell(*context); std::vector gids = {5u, 2u, 3u, 0u}; - std::vector cell_to_intdom; + std::vector cell_to_intdom; auto num_dom = fvcell.fvm_intdom(gap_recipe_2(), gids, cell_to_intdom); - std::vector expected_doms= {0u, 0u, 0u, 0u}; + std::vector expected_doms= {0u, 0u, 0u, 0u}; EXPECT_EQ(1u, num_dom); EXPECT_EQ(expected_doms, cell_to_intdom); @@ -1013,7 +1014,7 @@ TEST(fvm_lowered, label_data) { // Check correct synapse, deterctor and gj data decorated_recipe rec(ncell); - std::vector cell_to_intdom; + std::vector cell_to_intdom; std::vector targets; probe_association_map probe_map; diff --git a/test/unit/test_iexpr.cpp b/test/unit/test_iexpr.cpp new file mode 100644 index 0000000000..9043381a0a --- /dev/null +++ b/test/unit/test_iexpr.cpp @@ -0,0 +1,465 @@ +#include "../gtest.h" +#include "../common_cells.hpp" +#include "fvm_layout.hpp" + +#include +#include +#include +#include +#include +#include + +#include + +using namespace arb; +using namespace arborio::literals; + +TEST(iexpr, distance_locset) { + segment_tree tree; + tree.append(mnpos, {0, 0, 0, 10}, {0, 0, 10, 10}, 1); + tree.append(0, {0, 0, 10, 1}, {0, 0, 20, 1}, 3); + tree.append(0, {0, 0, 10, 1}, {0, 0, 30, 1}, 4); + tree.append(mnpos, {0, 0, 0, 2}, {0, 0, -20, 2}, 2); + + arb::mprovider prov(arb::morphology(std::move(tree))); + + const double scale = 2.0; + + // test distance to single point + auto ex = thingify(arb::iexpr::distance(scale, arb::mlocation{1, 0.2}), prov); + EXPECT_DOUBLE_EQ(ex->eval(prov, {0, 0.0, 1.0}), scale * 7.0); + EXPECT_DOUBLE_EQ(ex->eval(prov, {1, 0.0, 1.0}), scale * 3.0); + EXPECT_DOUBLE_EQ(ex->eval(prov, {2, 0.0, 1.0}), scale * 12.0); + EXPECT_DOUBLE_EQ(ex->eval(prov, {3, 0.0, 1.0}), scale * 22.0); + + // test distance to multiple points + ex = thingify(arb::iexpr::distance( + scale, arb::mlocation_list({arb::mlocation{1, 1.0}, arb::mlocation{2, 1.0}})), + prov); + EXPECT_DOUBLE_EQ(ex->eval(prov, {0, 0.0, 1.0}), scale * 15.0); + EXPECT_DOUBLE_EQ(ex->eval(prov, {1, 0.0, 1.0}), scale * 5.0); + EXPECT_DOUBLE_EQ(ex->eval(prov, {2, 0.0, 1.0}), scale * 10.0); + EXPECT_DOUBLE_EQ(ex->eval(prov, {3, 0.0, 1.0}), scale * 30.0); +} + +TEST(iexpr, distance_region) { + segment_tree tree; + tree.append(mnpos, {0, 0, 0, 10}, {0, 0, 10, 10}, 1); + tree.append(0, {0, 0, 10, 1}, {0, 0, 20, 1}, 3); + tree.append(0, {0, 0, 10, 1}, {0, 0, 30, 1}, 4); + tree.append(mnpos, {0, 0, 0, 2}, {0, 0, -20, 2}, 2); + + arb::mprovider prov(arb::morphology(std::move(tree))); + + const double scale = 3.0; + + // test distance to single cable region + auto ex = thingify(arb::iexpr::distance(scale, arb::mcable{0, 0.2, 0.8}), prov); + EXPECT_DOUBLE_EQ(ex->eval(prov, {0, 0.0, 1.0}), 0.0); + EXPECT_DOUBLE_EQ(ex->eval(prov, {1, 0.0, 1.0}), scale * 7.0); + EXPECT_DOUBLE_EQ(ex->eval(prov, {2, 0.0, 1.0}), scale * 12.0); + EXPECT_DOUBLE_EQ(ex->eval(prov, {3, 0.0, 1.0}), scale * 12.0); + + // test distance to multi cable region + ex = thingify(arb::iexpr::distance( + scale, arb::mcable_list{arb::mcable{1, 0.2, 0.8}, arb::mcable{2, 0.6, 1.0}}), + prov); + EXPECT_DOUBLE_EQ(ex->eval(prov, {0, 0.0, 1.0}), scale * 7.0); + EXPECT_DOUBLE_EQ(ex->eval(prov, {1, 0.0, 1.0}), 0.0); + EXPECT_DOUBLE_EQ(ex->eval(prov, {2, 0.0, 1.0}), scale * 2.0); + EXPECT_DOUBLE_EQ(ex->eval(prov, {3, 0.0, 1.0}), scale * 22.0); +} + +TEST(iexpr, proximal_distance_locset) { + segment_tree tree; + tree.append(mnpos, {0, 0, 0, 10}, {0, 0, 10, 10}, 1); + tree.append(0, {0, 0, 10, 1}, {0, 0, 20, 1}, 3); + tree.append(0, {0, 0, 10, 1}, {0, 0, 30, 1}, 4); + tree.append(mnpos, {0, 0, 0, 2}, {0, 0, -20, 2}, 2); + + arb::mprovider prov(arb::morphology(std::move(tree))); + + const double scale = 2.0; + + // test distance to single point + auto ex = thingify(arb::iexpr::proximal_distance(scale, arb::mlocation{1, 0.2}), prov); + EXPECT_DOUBLE_EQ(ex->eval(prov, {0, 0.0, 1.0}), scale * 7.0); + EXPECT_DOUBLE_EQ(ex->eval(prov, {1, 0.0, 1.0}), 0.0); + EXPECT_DOUBLE_EQ(ex->eval(prov, {2, 0.0, 1.0}), 0.0); + EXPECT_DOUBLE_EQ(ex->eval(prov, {3, 0.0, 1.0}), 0.0); + + // test distance to multiple points + ex = thingify(arb::iexpr::proximal_distance( + scale, arb::mlocation_list({arb::mlocation{1, 0.2}, arb::mlocation{2, 1.0}})), + prov); + EXPECT_DOUBLE_EQ(ex->eval(prov, {0, 0.0, 1.0}), scale * 7); + EXPECT_DOUBLE_EQ(ex->eval(prov, {1, 0.0, 1.0}), 0.0); + EXPECT_DOUBLE_EQ(ex->eval(prov, {2, 0.0, 1.0}), scale * 10.0); + EXPECT_DOUBLE_EQ(ex->eval(prov, {3, 0.0, 1.0}), 0.0); +} + +TEST(iexpr, proximal_distance_region) { + segment_tree tree; + tree.append(mnpos, {0, 0, 0, 10}, {0, 0, 10, 10}, 1); + tree.append(0, {0, 0, 10, 1}, {0, 0, 20, 1}, 3); + tree.append(0, {0, 0, 10, 1}, {0, 0, 30, 1}, 4); + tree.append(mnpos, {0, 0, 0, 2}, {0, 0, -20, 2}, 2); + + arb::mprovider prov(arb::morphology(std::move(tree))); + + const double scale = 3.0; + + // test distance to single cable region + auto ex = thingify(arb::iexpr::proximal_distance(scale, arb::mcable{1, 0.2, 0.8}), prov); + EXPECT_DOUBLE_EQ(ex->eval(prov, {0, 0.0, 1.0}), scale * 7.0); + EXPECT_DOUBLE_EQ(ex->eval(prov, {1, 0.0, 1.0}), 0.0); + EXPECT_DOUBLE_EQ(ex->eval(prov, {2, 0.0, 1.0}), 0.0); + EXPECT_DOUBLE_EQ(ex->eval(prov, {3, 0.0, 1.0}), 0.0); + + // test distance to multi cable region + ex = thingify( + arb::iexpr::proximal_distance(scale, + arb::mcable_list{ + arb::mcable{1, 0.2, 0.8}, arb::mcable{2, 0.6, 1.0}, arb::mcable{3, 0.1, 0.3}}), + prov); + EXPECT_DOUBLE_EQ(ex->eval(prov, {0, 0.0, 1.0}), scale * 7.0); + EXPECT_DOUBLE_EQ(ex->eval(prov, {1, 0.0, 1.0}), 0.0); + EXPECT_DOUBLE_EQ(ex->eval(prov, {2, 0.0, 1.0}), scale * 2.0); + EXPECT_DOUBLE_EQ(ex->eval(prov, {3, 0.0, 1.0}), 0.0); +} + +TEST(iexpr, distal_distance_locset) { + segment_tree tree; + tree.append(mnpos, {0, 0, 0, 10}, {0, 0, 10, 10}, 1); + tree.append(0, {0, 0, 10, 1}, {0, 0, 20, 1}, 3); + tree.append(0, {0, 0, 10, 1}, {0, 0, 30, 1}, 4); + tree.append(mnpos, {0, 0, 0, 2}, {0, 0, -20, 2}, 2); + + arb::mprovider prov(arb::morphology(std::move(tree))); + + const double scale = 2.0; + + // test distance to single point + auto ex = thingify(arb::iexpr::distal_distance(scale, arb::mlocation{1, 0.2}), prov); + EXPECT_DOUBLE_EQ(ex->eval(prov, {0, 0.0, 1.0}), 0.0); + EXPECT_DOUBLE_EQ(ex->eval(prov, {1, 0.0, 1.0}), scale * 3.0); + EXPECT_DOUBLE_EQ(ex->eval(prov, {2, 0.0, 1.0}), 0.0); + EXPECT_DOUBLE_EQ(ex->eval(prov, {3, 0.0, 1.0}), 0.0); + + // test distance to multiple points + ex = thingify(arb::iexpr::distal_distance( + scale, arb::mlocation_list({arb::mlocation{1, 0.2}, arb::mlocation{3, 0.4}})), + prov); + EXPECT_DOUBLE_EQ(ex->eval(prov, {0, 0.0, 1.0}), 0.0); + EXPECT_DOUBLE_EQ(ex->eval(prov, {1, 0.0, 1.0}), scale * 3.0); + EXPECT_DOUBLE_EQ(ex->eval(prov, {2, 0.0, 1.0}), 0.0); + EXPECT_DOUBLE_EQ(ex->eval(prov, {3, 0.0, 1.0}), scale * 2.0); + + // test distance to root + ex = thingify(arb::iexpr::distal_distance(scale, arb::ls::root()), prov); + EXPECT_DOUBLE_EQ(ex->eval(prov, {0, 0.0, 1.0}), scale * 5.0); + EXPECT_DOUBLE_EQ(ex->eval(prov, {3, 0.0, 1.0}), scale * 10.0); +} + +TEST(iexpr, distal_distance_region) { + segment_tree tree; + tree.append(mnpos, {0, 0, 0, 10}, {0, 0, 10, 10}, 1); + tree.append(0, {0, 0, 10, 1}, {0, 0, 20, 1}, 3); + tree.append(0, {0, 0, 10, 1}, {0, 0, 30, 1}, 4); + tree.append(mnpos, {0, 0, 0, 2}, {0, 0, -20, 2}, 2); + + arb::mprovider prov(arb::morphology(std::move(tree))); + + const double scale = 3.0; + + // test distance to single cable region + auto ex = thingify(arb::iexpr::distal_distance(scale, arb::mcable{1, 0.2, 0.8}), prov); + EXPECT_DOUBLE_EQ(ex->eval(prov, {0, 0.0, 1.0}), 0.0); + EXPECT_DOUBLE_EQ(ex->eval(prov, {1, 0.0, 1.0}), 0.0); + EXPECT_DOUBLE_EQ(ex->eval(prov, {2, 0.0, 1.0}), 0.0); + EXPECT_DOUBLE_EQ(ex->eval(prov, {3, 0.0, 1.0}), 0.0); + + // test distance to multi cable region + ex = thingify( + arb::iexpr::distal_distance(scale, + arb::mcable_list{ + arb::mcable{1, 0.2, 0.8}, arb::mcable{2, 0.3, 0.4}, arb::mcable{3, 0.1, 0.2}}), + prov); + EXPECT_DOUBLE_EQ(ex->eval(prov, {0, 0.0, 1.0}), 0.0); + EXPECT_DOUBLE_EQ(ex->eval(prov, {1, 0.0, 1.0}), 0.0); + EXPECT_DOUBLE_EQ(ex->eval(prov, {2, 0.0, 1.0}), scale * 2.0); + EXPECT_DOUBLE_EQ(ex->eval(prov, {3, 0.0, 1.0}), scale * 6.0); +} + +TEST(iexpr, interpolation_locset) { + segment_tree tree; + tree.append(mnpos, {0, 0, 0, 10}, {0, 0, 10, 10}, 1); + tree.append(0, {0, 0, 10, 1}, {0, 0, 20, 1}, 3); + tree.append(0, {0, 0, 10, 1}, {0, 0, 30, 1}, 4); + tree.append(mnpos, {0, 0, 0, 2}, {0, 0, -20, 2}, 2); + + arb::mprovider prov(arb::morphology(std::move(tree))); + + const double prox_value = 2.0; + const double dist_value = 3.0; + + // test single point + auto ex = thingify(arb::iexpr::interpolation( + prox_value, arb::mlocation{1, 0.2}, dist_value, arb::mlocation{1, 0.2}), + prov); + EXPECT_DOUBLE_EQ(ex->eval(prov, {0, 0.0, 1.0}), 0.0); + EXPECT_DOUBLE_EQ(ex->eval(prov, {1, 0.0, 1.0}), 0.0); + EXPECT_DOUBLE_EQ(ex->eval(prov, {2, 0.0, 1.0}), 0.0); + EXPECT_DOUBLE_EQ(ex->eval(prov, {3, 0.0, 1.0}), 0.0); + + // test evaluation on ends of interval + ex = thingify(arb::iexpr::interpolation( + prox_value, arb::mlocation{1, 0.2}, dist_value, arb::mlocation{1, 0.8}), + prov); + EXPECT_DOUBLE_EQ(ex->eval(prov, {0, 0.0, 1.0}), 0.0); + EXPECT_DOUBLE_EQ(ex->eval(prov, {1, 0.2, 0.2}), prox_value); + EXPECT_DOUBLE_EQ(ex->eval(prov, {1, 0.8, 0.8}), dist_value); + EXPECT_DOUBLE_EQ(ex->eval(prov, {2, 0.0, 1.0}), 0.0); + EXPECT_DOUBLE_EQ(ex->eval(prov, {3, 0.0, 1.0}), 0.0); + + // test distance to multiple points + ex = + thingify(arb::iexpr::interpolation(prox_value, + arb::mlocation{0, 0.3}, + dist_value, + arb::mlocation_list( + {arb::mlocation{1, 0.2}, arb::mlocation{2, 0.8}, arb::mlocation{3, 1.0}})), + prov); + EXPECT_DOUBLE_EQ( + ex->eval(prov, {0, 0.0, 1.0}), 7.0 / 9.0 * prox_value + 2.0 / 9.0 * dist_value); + EXPECT_DOUBLE_EQ(ex->eval(prov, {1, 0.0, 1.0}), 0.0); + EXPECT_DOUBLE_EQ( + ex->eval(prov, {2, 0.0, 1.0}), 6.0 / 23.0 * prox_value + 17.0 / 23.0 * dist_value); + EXPECT_DOUBLE_EQ(ex->eval(prov, {3, 0.0, 1.0}), 0.0); + + // test root + ex = thingify( + arb::iexpr::interpolation(prox_value, arb::ls::root(), dist_value, arb::ls::terminal()), + prov); + EXPECT_DOUBLE_EQ(ex->eval(prov, {0, 0.0, 1.0}), 15.0 / 20.0 * prox_value + 5.0 / 20.0 * dist_value); + EXPECT_DOUBLE_EQ(ex->eval(prov, {1, 0.0, 1.0}), 5.0 / 20.0 * prox_value + 15.0 / 20.0 * dist_value); + EXPECT_DOUBLE_EQ(ex->eval(prov, {2, 0.0, 1.0}), 10.0 / 30.0 * prox_value + 20.0 / 30.0 * dist_value); + EXPECT_DOUBLE_EQ(ex->eval(prov, {3, 0.0, 1.0}), 10.0 / 20.0 * prox_value + 10.0 / 20.0 * dist_value); +} + +TEST(iexpr, interpolation_region) { + segment_tree tree; + tree.append(mnpos, {0, 0, 0, 10}, {0, 0, 10, 10}, 1); + tree.append(0, {0, 0, 10, 1}, {0, 0, 20, 1}, 3); + tree.append(0, {0, 0, 10, 1}, {0, 0, 30, 1}, 4); + tree.append(mnpos, {0, 0, 0, 2}, {0, 0, -20, 2}, 2); + + arb::mprovider prov(arb::morphology(std::move(tree))); + + const double prox_value = 2.0; + const double dist_value = 3.0; + + // test distance to single point + auto ex = + thingify(arb::iexpr::interpolation( + prox_value, arb::mcable{1, 0.2, 0.7}, dist_value, arb::mcable{1, 0.2, 0.7}), + prov); + EXPECT_DOUBLE_EQ(ex->eval(prov, {0, 0.0, 1.0}), 0.0); + EXPECT_DOUBLE_EQ(ex->eval(prov, {1, 0.0, 1.0}), 0.0); + EXPECT_DOUBLE_EQ(ex->eval(prov, {2, 0.0, 1.0}), 0.0); + EXPECT_DOUBLE_EQ(ex->eval(prov, {3, 0.0, 1.0}), 0.0); + + // test distance to multiple points + ex = thingify( + arb::iexpr::interpolation(prox_value, + arb::mcable{0, 0.1, 0.3}, + dist_value, + arb::mcable_list( + {arb::mcable{1, 0.2, 0.4}, arb::mcable{2, 0.2, 1.0}, arb::mcable{3, 0.1, 1.0}})), + prov); + EXPECT_DOUBLE_EQ( + ex->eval(prov, {0, 0.0, 1.0}), 7.0 / 9.0 * prox_value + 2.0 / 9.0 * dist_value); + EXPECT_DOUBLE_EQ(ex->eval(prov, {1, 0.0, 1.0}), 0.0); + EXPECT_DOUBLE_EQ(ex->eval(prov, {2, 0.0, 1.0}), 0.0); + EXPECT_DOUBLE_EQ(ex->eval(prov, {3, 0.0, 1.0}), 0.0); +} + +TEST(iexpr, scalar) { + segment_tree tree; + tree.append(mnpos, {0, 0, 0, 10}, {0, 0, 10, 10}, 1); + + arb::mprovider prov(arb::morphology(std::move(tree))); + + auto e = thingify(arb::iexpr::scalar(2.0), prov); + EXPECT_DOUBLE_EQ(e->eval(prov, {0, 0.0, 1.0}), 2.0); +} + +TEST(iexpr, radius) { + segment_tree tree; + tree.append(mnpos, {0, 0, 0, 10}, {0, 0, 10, 10}, 1); + tree.append(0, {0, 0, 10, 1}, {0, 0, 20, 2}, 2); + tree.append(0, {0, 0, 10, 10}, {0, 0, 30, 5}, 3); + + arb::mprovider prov(arb::morphology(std::move(tree))); + + const double scale = 2.0; + auto e = thingify(arb::iexpr::radius(scale), prov); + EXPECT_DOUBLE_EQ(e->eval(prov, {0, 0.0, 1.0}), scale * 10.0); + EXPECT_DOUBLE_EQ(e->eval(prov, {1, 0.0, 1.0}), scale * 1.5); + EXPECT_DOUBLE_EQ(e->eval(prov, {2, 0.0, 1.0}), scale * 7.5); +} + +TEST(iexpr, diameter) { + segment_tree tree; + tree.append(mnpos, {0, 0, 0, 10}, {0, 0, 10, 10}, 1); + tree.append(0, {0, 0, 10, 1}, {0, 0, 20, 2}, 2); + tree.append(0, {0, 0, 10, 10}, {0, 0, 30, 5}, 3); + + arb::mprovider prov(arb::morphology(std::move(tree))); + + const double scale = 2.0; + auto e = thingify(arb::iexpr::diameter(scale), prov); + EXPECT_DOUBLE_EQ(e->eval(prov, {0, 0.0, 1.0}), scale * 20.0); + EXPECT_DOUBLE_EQ(e->eval(prov, {1, 0.0, 1.0}), scale * 3.0); + EXPECT_DOUBLE_EQ(e->eval(prov, {2, 0.0, 1.0}), scale * 15.0); +} + +TEST(iexpr, add) { + segment_tree tree; + tree.append(mnpos, {0, 0, 0, 10}, {0, 0, 10, 10}, 1); + + arb::mprovider prov(arb::morphology(std::move(tree))); + + auto e = thingify(arb::iexpr::add(arb::iexpr::scalar(2.0), arb::iexpr::radius(3.0)), prov); + EXPECT_DOUBLE_EQ(e->eval(prov, {0, 0.0, 1.0}), 2.0 + 3.0 * 10.0); + + // check operator + e = thingify(2.0 + arb::iexpr::radius(3.0), prov); + EXPECT_DOUBLE_EQ(e->eval(prov, {0, 0.0, 1.0}), 2.0 + 3.0 * 10.0); + + // check unary operator + e = thingify(+arb::iexpr::radius(3.0), prov); + EXPECT_DOUBLE_EQ(e->eval(prov, {0, 0.0, 1.0}), 3.0 * 10.0); +} + +TEST(iexpr, sub) { + segment_tree tree; + tree.append(mnpos, {0, 0, 0, 10}, {0, 0, 10, 10}, 1); + + arb::mprovider prov(arb::morphology(std::move(tree))); + + auto e = thingify(arb::iexpr::sub(arb::iexpr::scalar(2.0), arb::iexpr::radius(3.0)), prov); + EXPECT_DOUBLE_EQ(e->eval(prov, {0, 0.0, 1.0}), 2.0 - 3.0 * 10.0); + + // check operator + e = thingify(2.0 - arb::iexpr::radius(3.0), prov); + EXPECT_DOUBLE_EQ(e->eval(prov, {0, 0.0, 1.0}), 2.0 - 3.0 * 10.0); + + // check unary operator + e = thingify(-arb::iexpr::radius(3.0), prov); + EXPECT_DOUBLE_EQ(e->eval(prov, {0, 0.0, 1.0}), -3.0 * 10.0); +} + +TEST(iexpr, mul) { + segment_tree tree; + tree.append(mnpos, {0, 0, 0, 10}, {0, 0, 10, 10}, 1); + + arb::mprovider prov(arb::morphology(std::move(tree))); + + auto e = thingify(arb::iexpr::mul(arb::iexpr::scalar(2.0), arb::iexpr::radius(3.0)), prov); + EXPECT_DOUBLE_EQ(e->eval(prov, {0, 0.0, 1.0}), 2.0 * 3.0 * 10.0); + + // check operator + e = thingify(2.0 * arb::iexpr::radius(3.0), prov); + EXPECT_DOUBLE_EQ(e->eval(prov, {0, 0.0, 1.0}), 2.0 * 3.0 * 10.0); +} + +TEST(iexpr, div) { + segment_tree tree; + tree.append(mnpos, {0, 0, 0, 10}, {0, 0, 10, 10}, 1); + + arb::mprovider prov(arb::morphology(std::move(tree))); + + auto e = thingify(arb::iexpr::div(arb::iexpr::scalar(2.0), arb::iexpr::radius(3.0)), prov); + EXPECT_DOUBLE_EQ(e->eval(prov, {0, 0.0, 1.0}), 2.0 / (3.0 * 10.0)); + + // check operator + e = thingify(2.0 / arb::iexpr::radius(3.0), prov); + EXPECT_DOUBLE_EQ(e->eval(prov, {0, 0.0, 1.0}), 2.0 / (3.0 * 10.0)); +} + +TEST(iexpr, exp) { + segment_tree tree; + tree.append(mnpos, {0, 0, 0, 10}, {0, 0, 10, 10}, 1); + + arb::mprovider prov(arb::morphology(std::move(tree))); + + auto e = thingify(arb::iexpr::exp(arb::iexpr::radius(3.0)), prov); + EXPECT_DOUBLE_EQ(e->eval(prov, {0, 0.0, 1.0}), std::exp(3.0 * 10.0)); +} + +TEST(iexpr, log) { + segment_tree tree; + tree.append(mnpos, {0, 0, 0, 10}, {0, 0, 10, 10}, 1); + + arb::mprovider prov(arb::morphology(std::move(tree))); + + auto e = thingify(arb::iexpr::log(arb::iexpr::radius(3.0)), prov); + EXPECT_DOUBLE_EQ(e->eval(prov, {0, 0.0, 1.0}), std::log(3.0 * 10.0)); +} + +TEST(iexpr, fvm_layout) { + const double radius = 2.0; + const double radius_scale = 3.0; + const std::string scaled_param = "gnabar"; + auto iexpr_radius = arb::iexpr::radius(radius_scale); + + soma_cell_builder builder(12.6157 / 2.0); + builder.add_branch(0, 100, radius, radius, 4, "dend"); + + auto desc_ref = builder.make_cell(); + desc_ref.decorations.paint("soma"_lab, density("pas")); + desc_ref.decorations.paint("dend"_lab, density("hh")); + + auto desc_scaled = builder.make_cell(); + desc_scaled.decorations.paint("soma"_lab, density("pas")); + desc_scaled.decorations.paint("dend"_lab, scaled_mechanism(density("hh")).scale(scaled_param, iexpr_radius)); + + cable_cell_global_properties gprop_coalesce; + gprop_coalesce.default_parameters = neuron_parameter_defaults; + gprop_coalesce.coalesce_synapses = true; + + cable_cell cell_ref(desc_ref); + fvm_mechanism_data data_ref = fvm_build_mechanism_data(gprop_coalesce, + {cell_ref}, + {0}, + {{0, {}}}, + fvm_cv_discretize({cell_ref}, neuron_parameter_defaults)); + + cable_cell cell_scaled(desc_scaled); + fvm_mechanism_data data_scaled = fvm_build_mechanism_data(gprop_coalesce, + {cell_scaled}, + {0}, + {{0, {}}}, + fvm_cv_discretize({cell_scaled}, neuron_parameter_defaults)); + + // compare parameter values between reference and scaled fvm data + for(const auto& m_ref : data_ref.mechanisms) { + auto it_scaled = data_scaled.mechanisms.find(m_ref.first); + ASSERT_NE(it_scaled, data_scaled.mechanisms.end()); // make sure mech exists in both + + const auto& param_ref = m_ref.second.param_values; + const auto& param_scaled = it_scaled->second.param_values; + ASSERT_EQ(param_ref.size(), param_scaled.size()); + + for (auto i: util::count_along(m_ref.second.param_values)) { + ASSERT_STREQ(param_ref[i].first.c_str(), param_scaled[i].first.c_str()); + ASSERT_EQ(param_ref[i].second.size(), param_ref[i].second.size()); + + const double scale = param_scaled[i].first == scaled_param ? radius * radius_scale : 1.0; + for (auto j: util::count_along(param_ref[i].second)) { + EXPECT_DOUBLE_EQ(scale * param_ref[i].second[j], param_scaled[i].second[j]); + } + } + } +} diff --git a/test/unit/test_kinetic_linear.cpp b/test/unit/test_kinetic_linear.cpp index 3b2e9cf99b..2e900b1a2c 100644 --- a/test/unit/test_kinetic_linear.cpp +++ b/test/unit/test_kinetic_linear.cpp @@ -27,23 +27,23 @@ ACCESS_BIND(std::unique_ptr fvm_cell::*, private_state_ptr, &fvm_c template void run_test(std::string mech_name, std::vector state_variables, - std::vector t0_values, - std::vector t1_values, - fvm_value_type dt) { + std::vector t0_values, + std::vector t1_values, + arb_value_type dt) { auto cat = make_unit_test_catalogue(); - fvm_size_type ncell = 1; - fvm_size_type ncv = 1; - std::vector cv_to_intdom(ncv, 0); + arb_size_type ncell = 1; + arb_size_type ncv = 1; + std::vector cv_to_intdom(ncv, 0); auto instance = cat.instance(backend::kind, mech_name); auto& test = instance.mech; - std::vector temp(ncv, 300.); - std::vector diam(ncv, 1.); - std::vector vinit(ncv, -65); - std::vector src_to_spike = {}; + std::vector temp(ncv, 300.); + std::vector diam(ncv, 1.); + std::vector vinit(ncv, -65); + std::vector src_to_spike = {}; auto shared_state = std::make_unique( ncell, ncell, 0, cv_to_intdom, cv_to_intdom, vinit, temp, diam, src_to_spike, test->data_alignment()); @@ -52,7 +52,7 @@ void run_test(std::string mech_name, mechanism_overrides overrides; layout.weight.assign(ncv, 1.); - for (fvm_size_type i = 0; i state_variables = {"s", "h", "d"}; - std::vector t0_values = {0.5, 0.2, 0.3}; - std::vector t1_0_values = {0.373297, 0.591621, 0.0350817}; - std::vector t1_1_values = {0.329897, 0.537371, 0.132732}; + std::vector t0_values = {0.5, 0.2, 0.3}; + std::vector t1_0_values = {0.373297, 0.591621, 0.0350817}; + std::vector t1_1_values = {0.329897, 0.537371, 0.132732}; run_test("test0_kin_compartment", state_variables, t0_values, t1_0_values, 0.5); run_test("test1_kin_compartment", state_variables, t0_values, t1_1_values, 0.5); @@ -96,9 +96,9 @@ TEST(mech_kinetic, kinetic_linear_scaled) { TEST(mech_kinetic, kinetic_linear_1_conserve) { std::vector state_variables = {"s", "h", "d"}; - std::vector t0_values = {0.5, 0.2, 0.3}; - std::vector t1_0_values = {0.380338, 0.446414, 0.173247}; - std::vector t1_1_values = {0.218978, 0.729927, 0.0510949}; + std::vector t0_values = {0.5, 0.2, 0.3}; + std::vector t1_0_values = {0.380338, 0.446414, 0.173247}; + std::vector t1_1_values = {0.218978, 0.729927, 0.0510949}; run_test("test0_kin_diff", state_variables, t0_values, t1_0_values, 0.5); run_test("test0_kin_conserve", state_variables, t0_values, t1_0_values, 0.5); @@ -107,9 +107,9 @@ TEST(mech_kinetic, kinetic_linear_1_conserve) { TEST(mech_kinetic, kinetic_linear_2_conserve) { std::vector state_variables = {"a", "b", "x", "y"}; - std::vector t0_values = {0.2, 0.8, 0.6, 0.4}; - std::vector t1_0_values = {0.217391304, 0.782608696, 0.33333333, 0.66666666}; - std::vector t1_1_values = {0.230769, 0.769231, 0.189189, 0.810811}; + std::vector t0_values = {0.2, 0.8, 0.6, 0.4}; + std::vector t1_0_values = {0.217391304, 0.782608696, 0.33333333, 0.66666666}; + std::vector t1_1_values = {0.230769, 0.769231, 0.189189, 0.810811}; run_test("test1_kin_diff", state_variables, t0_values, t1_0_values, 0.5); run_test("test1_kin_conserve", state_variables, t0_values, t1_0_values, 0.5); @@ -118,9 +118,9 @@ TEST(mech_kinetic, kinetic_linear_2_conserve) { TEST(mech_kinetic, kinetic_nonlinear) { std::vector state_variables = {"a", "b", "c"}; - std::vector t0_values = {0.2, 0.3, 0.5}; - std::vector t1_0_values = {0.222881, 0.31144, 0.48856}; - std::vector t1_1_values = {0.2078873133, 0.34222075, 0.45777925}; + std::vector t0_values = {0.2, 0.3, 0.5}; + std::vector t1_0_values = {0.222881, 0.31144, 0.48856}; + std::vector t1_1_values = {0.2078873133, 0.34222075, 0.45777925}; run_test("test2_kin_diff", state_variables, t0_values, t1_0_values, 0.025); run_test("test3_kin_diff", state_variables, t0_values, t1_1_values, 0.025); @@ -129,22 +129,22 @@ TEST(mech_kinetic, kinetic_nonlinear) { TEST(mech_kinetic, normal_nonlinear_0) { std::vector state_variables = {"a", "b", "c"}; - std::vector t0_values = {0.2, 0.3, 0.5}; - std::vector t1_values = {0.2078873133, 0.34222075, 0.45777925}; + std::vector t0_values = {0.2, 0.3, 0.5}; + std::vector t1_values = {0.2078873133, 0.34222075, 0.45777925}; run_test("test5_nonlinear_diff", state_variables, t0_values, t1_values, 0.025); } TEST(mech_kinetic, normal_nonlinear_1) { std::vector state_variables = {"p"}; - std::vector t0_values = {1}; - std::vector t1_values = {1.0213199524}; + std::vector t0_values = {1}; + std::vector t1_values = {1.0213199524}; run_test("test6_nonlinear_diff", state_variables, t0_values, t1_values, 0.025); } TEST(mech_kinetic, kinetic_nonlinear_scaled) { std::vector state_variables = {"A", "B", "C", "d", "e"}; - std::vector t0_values = {4.5, 6.6, 0.28, 2, 0}; - std::vector t1_values = {4.087281958014442, + std::vector t0_values = {4.5, 6.6, 0.28, 2, 0}; + std::vector t1_values = {4.087281958014442, 6.224088678118931, 0.6559113218810689, 1.8315624742412617, @@ -155,7 +155,7 @@ TEST(mech_kinetic, kinetic_nonlinear_scaled) { TEST(mech_linear, linear_system) { std::vector state_variables = {"h", "s", "d"}; - std::vector values = {0.5, 0.2, 0.3}; + std::vector values = {0.5, 0.2, 0.3}; run_test("test_linear_state", state_variables, {}, values, 0.5); run_test("test_linear_init", state_variables, values, {}, 0.5); @@ -165,9 +165,9 @@ TEST(mech_linear, linear_system) { #ifdef ARB_GPU_ENABLED TEST(mech_kinetic_gpu, kinetic_linear_scaled) { std::vector state_variables = {"s", "h", "d"}; - std::vector t0_values = {0.5, 0.2, 0.3}; - std::vector t1_0_values = {0.373297, 0.591621, 0.0350817}; - std::vector t1_1_values = {0.329897, 0.537371, 0.132732}; + std::vector t0_values = {0.5, 0.2, 0.3}; + std::vector t1_0_values = {0.373297, 0.591621, 0.0350817}; + std::vector t1_1_values = {0.329897, 0.537371, 0.132732}; run_test("test0_kin_compartment", state_variables, t0_values, t1_0_values, 0.5); run_test("test1_kin_compartment", state_variables, t0_values, t1_1_values, 0.5); @@ -175,9 +175,9 @@ TEST(mech_kinetic_gpu, kinetic_linear_scaled) { TEST(mech_kinetic_gpu, kinetic_linear_1_conserve) { std::vector state_variables = {"s", "h", "d"}; - std::vector t0_values = {0.5, 0.2, 0.3}; - std::vector t1_0_values = {0.380338, 0.446414, 0.173247}; - std::vector t1_1_values = {0.218978, 0.729927, 0.0510949}; + std::vector t0_values = {0.5, 0.2, 0.3}; + std::vector t1_0_values = {0.380338, 0.446414, 0.173247}; + std::vector t1_1_values = {0.218978, 0.729927, 0.0510949}; run_test("test0_kin_diff", state_variables, t0_values, t1_0_values, 0.5); run_test("test0_kin_conserve", state_variables, t0_values, t1_0_values, 0.5); @@ -186,9 +186,9 @@ TEST(mech_kinetic_gpu, kinetic_linear_1_conserve) { TEST(mech_kinetic_gpu, kinetic_linear_2_conserve) { std::vector state_variables = {"a", "b", "x", "y"}; - std::vector t0_values = {0.2, 0.8, 0.6, 0.4}; - std::vector t1_0_values = {0.217391304, 0.782608696, 0.33333333, 0.66666666}; - std::vector t1_1_values = {0.230769, 0.769231, 0.189189, 0.810811}; + std::vector t0_values = {0.2, 0.8, 0.6, 0.4}; + std::vector t1_0_values = {0.217391304, 0.782608696, 0.33333333, 0.66666666}; + std::vector t1_1_values = {0.230769, 0.769231, 0.189189, 0.810811}; run_test("test1_kin_diff", state_variables, t0_values, t1_0_values, 0.5); run_test("test1_kin_conserve", state_variables, t0_values, t1_0_values, 0.5); @@ -197,9 +197,9 @@ TEST(mech_kinetic_gpu, kinetic_linear_2_conserve) { TEST(mech_kinetic_gpu, kinetic_nonlinear) { std::vector state_variables = {"a", "b", "c"}; - std::vector t0_values = {0.2, 0.3, 0.5}; - std::vector t1_0_values = {0.222881, 0.31144, 0.48856}; - std::vector t1_1_values = {0.2078873133, 0.34222075, 0.45777925}; + std::vector t0_values = {0.2, 0.3, 0.5}; + std::vector t1_0_values = {0.222881, 0.31144, 0.48856}; + std::vector t1_1_values = {0.2078873133, 0.34222075, 0.45777925}; run_test("test2_kin_diff", state_variables, t0_values, t1_0_values, 0.025); run_test("test3_kin_diff", state_variables, t0_values, t1_1_values, 0.025); @@ -207,22 +207,22 @@ TEST(mech_kinetic_gpu, kinetic_nonlinear) { TEST(mech_kinetic_gpu, normal_nonlinear_0) { std::vector state_variables = {"a", "b", "c"}; - std::vector t0_values = {0.2, 0.3, 0.5}; - std::vector t1_values = {0.2078873133, 0.34222075, 0.45777925}; + std::vector t0_values = {0.2, 0.3, 0.5}; + std::vector t1_values = {0.2078873133, 0.34222075, 0.45777925}; run_test("test5_nonlinear_diff", state_variables, t0_values, t1_values, 0.025); } TEST(mech_kinetic_gpu, normal_nonlinear_1) { std::vector state_variables = {"p"}; - std::vector t0_values = {1}; - std::vector t1_values = {1.0213199524}; + std::vector t0_values = {1}; + std::vector t1_values = {1.0213199524}; run_test("test6_nonlinear_diff", state_variables, t0_values, t1_values, 0.025); } TEST(mech_kinetic_gpu, kinetic_nonlinear_scaled) { std::vector state_variables = {"A", "B", "C", "d", "e"}; - std::vector t0_values = {4.5, 6.6, 0.28, 2, 0}; - std::vector t1_values = {4.087281958014442, + std::vector t0_values = {4.5, 6.6, 0.28, 2, 0}; + std::vector t1_values = {4.087281958014442, 6.224088678118931, 0.6559113218810689, 1.8315624742412617, @@ -233,7 +233,7 @@ TEST(mech_kinetic_gpu, kinetic_nonlinear_scaled) { TEST(mech_linear_gpu, linear_system) { std::vector state_variables = {"h", "s", "d"}; - std::vector values = {0.5, 0.2, 0.3}; + std::vector values = {0.5, 0.2, 0.3}; run_test("test_linear_state", state_variables, {}, values, 0.5); run_test("test_linear_init", state_variables, {}, values, 0.5); diff --git a/test/unit/test_lif_cell_group.cpp b/test/unit/test_lif_cell_group.cpp index 9ca765c406..0ea015a39d 100644 --- a/test/unit/test_lif_cell_group.cpp +++ b/test/unit/test_lif_cell_group.cpp @@ -133,7 +133,7 @@ TEST(lif_cell_group, throw) { probe_recipe rec; auto context = make_context(); auto decomp = partition_load_balance(rec, context); - EXPECT_THROW(simulation(rec, decomp, context), bad_cell_probe); + EXPECT_THROW(simulation(rec, context, decomp), bad_cell_probe); } TEST(lif_cell_group, recipe) @@ -153,7 +153,7 @@ TEST(lif_cell_group, spikes) { auto context = make_context(); auto decomp = partition_load_balance(recipe, context); - simulation sim(recipe, decomp, context); + simulation sim(recipe, context, decomp); cse_vector events; @@ -193,7 +193,7 @@ TEST(lif_cell_group, ring) auto decomp = partition_load_balance(recipe, context); // Creates a simulation with a ring recipe of lif neurons - simulation sim(recipe, decomp, context); + simulation sim(recipe, context, decomp); std::vector spike_buffer; diff --git a/test/unit/test_matrix.cpp b/test/unit/test_matrix.cpp index f63bf86fe9..12959eb63e 100644 --- a/test/unit/test_matrix.cpp +++ b/test/unit/test_matrix.cpp @@ -5,7 +5,6 @@ #include -#include "matrix.hpp" #include "backends/multicore/fvm.hpp" #include "util/rangeutil.hpp" #include "util/span.hpp" @@ -16,21 +15,21 @@ using namespace arb; using backend = multicore::backend; using array = backend::array; -using matrix_type = matrix; -using index_type = matrix_type::index_type; -using value_type = matrix_type::value_type; +using solver_type = backend::cable_solver; +using index_type = arb_index_type; +using value_type = arb_value_type; using vvec = std::vector; TEST(matrix, construct_from_parent_only) { std::vector p = {0,0,1}; - matrix_type m(p, {0, 3}, vvec(3), vvec(3), vvec(3), {0}); + solver_type m(p, {0, 3}, vvec(3), vvec(3), vvec(3), {0}); EXPECT_EQ(m.num_cells(), 1u); EXPECT_EQ(m.size(), 3u); EXPECT_EQ(p.size(), 3u); - auto mp = m.p(); + auto mp = m.parent_index; EXPECT_EQ(mp[0], index_type(0)); EXPECT_EQ(mp[1], index_type(0)); EXPECT_EQ(mp[2], index_type(1)); @@ -43,11 +42,10 @@ TEST(matrix, solve_host) // trivial case : 1x1 matrix { - matrix_type m({0}, {0,1}, vvec(1), vvec(1), vvec(1), {0}); - auto& state = m.state_; - fill(state.d, 2); - fill(state.u, -1); - fill(state.rhs,1); + solver_type m({0}, {0,1}, vvec(1), vvec(1), vvec(1), {0}); + fill(m.d, 2); + fill(m.u, -1); + fill(m.rhs,1); auto x = array({0}); m.solve(x); @@ -60,16 +58,14 @@ TEST(matrix, solve_host) for(auto n : make_span(2, 1001)) { auto p = std::vector(n); std::iota(p.begin()+1, p.end(), 0); - matrix_type m(p, {0, n}, vvec(n), vvec(n), vvec(n), {0}); + solver_type m(p, {0, n}, vvec(n), vvec(n), vvec(n), {0}); EXPECT_EQ(m.size(), (unsigned)n); EXPECT_EQ(m.num_cells(), 1u); - auto& A = m.state_; - - fill(A.d, 2); - fill(A.u, -1); - fill(A.rhs,1); + fill(m.d, 2); + fill(m.u, -1); + fill(m.rhs,1); auto x = array(); @@ -100,15 +96,14 @@ TEST(matrix, zero_diagonal) std::vector p = {0, 0, 1, 3, 3, 5, 5}; std::vector c = {0, 3, 5, 7}; std::vector i = {0, 1, 2}; - matrix_type m(p, c, vvec(7), vvec(7), vvec(7), i); + solver_type m(p, c, vvec(7), vvec(7), vvec(7), i); EXPECT_EQ(7u, m.size()); EXPECT_EQ(3u, m.num_cells()); - auto& A = m.state_; - assign(A.d, vvec({2, 3, 2, 0, 0, 4, 5})); - assign(A.u, vvec({0, -1, -1, 0, -1, 0, -2})); - assign(A.rhs, vvec({3, 5, 7, 7, 8, 16, 32})); + assign(m.d, vvec({2, 3, 2, 0, 0, 4, 5})); + assign(m.u, vvec({0, -1, -1, 0, -1, 0, -2})); + assign(m.rhs, vvec({3, 5, 7, 7, 8, 16, 32})); // Expected solution: std::vector expected = {4, 5, 6, 7, 8, 9, 10}; @@ -125,7 +120,7 @@ TEST(matrix, zero_diagonal_assembled) // test case from CV data. using util::assign; - using array = matrix_type::array; + using array = solver_type::array; // Combined matrix may have zero-blocks, corresponding to a zero dt. // Zero-blocks are indicated by zero value in the diagonal (the off-diagonal @@ -162,7 +157,7 @@ TEST(matrix, zero_diagonal_assembled) // Expected solution: // x = [ 4 5 6 7 8 9 10 ] - matrix_type m(p, c, Cm, g, area, s); + solver_type m(p, c, Cm, g, area, s); m.assemble(dt, v, i, mg); auto x = array({0, 0, 0, 0, 0, 0, 0}); @@ -184,4 +179,3 @@ TEST(matrix, zero_diagonal_assembled) EXPECT_TRUE(testing::seq_almost_eq(expected, x)); } - diff --git a/test/unit/test_matrix_cpuvsgpu.cpp b/test/unit/test_matrix_cpuvsgpu.cpp index 9212f3b0c9..ed172ba08e 100644 --- a/test/unit/test_matrix_cpuvsgpu.cpp +++ b/test/unit/test_matrix_cpuvsgpu.cpp @@ -36,11 +36,11 @@ using std::end; // * matrices all have same size and structure TEST(matrix, assemble) { - using gpu_state = gpu::backend::matrix_state; - using mc_state = multicore::backend::matrix_state; + using gpu_state = gpu::backend::cable_solver; + using mc_state = multicore::backend::cable_solver; - using T = fvm_value_type; - using I = fvm_index_type; + using T = arb_value_type; + using I = arb_index_type; using gpu_array = typename gpu::backend::array; using host_array = typename multicore::backend::array; diff --git a/test/unit/test_matrix_gpu.cpp b/test/unit/test_matrix_gpu.cpp index d015d2afe3..85be75df14 100644 --- a/test/unit/test_matrix_gpu.cpp +++ b/test/unit/test_matrix_gpu.cpp @@ -39,8 +39,8 @@ using std::end; // test that the flat and interleaved storage back ends produce identical results TEST(matrix, backends) { - using T = fvm_value_type; - using I = fvm_index_type; + using T = arb_value_type; + using I = arb_index_type; using state_flat = gpu::matrix_state_flat; using state_fine = gpu::matrix_state_fine; diff --git a/test/unit/test_mech_temp_diam.cpp b/test/unit/test_mech_temp_diam.cpp index 49a720aa9d..d3adf7ad0c 100644 --- a/test/unit/test_mech_temp_diam.cpp +++ b/test/unit/test_mech_temp_diam.cpp @@ -20,9 +20,9 @@ void run_celsius_test() { // one cell, three CVs: - fvm_size_type ncell = 1; - fvm_size_type ncv = 3; - std::vector cv_to_intdom(ncv, 0); + arb_size_type ncell = 1; + arb_size_type ncv = 3; + std::vector cv_to_intdom(ncv, 0); auto instance = cat.instance(backend::kind, "celsius_test"); auto& celsius_test = instance.mech; @@ -30,10 +30,10 @@ void run_celsius_test() { double temperature_K = 300.; double temperature_C = temperature_K-273.15; - std::vector temp(ncv, temperature_K); - std::vector diam(ncv, 1.); - std::vector vinit(ncv, -65); - std::vector src_to_spike = {}; + std::vector temp(ncv, temperature_K); + std::vector diam(ncv, 1.); + std::vector vinit(ncv, -65); + std::vector src_to_spike = {}; auto shared_state = std::make_unique( ncell, ncell, 0, cv_to_intdom, cv_to_intdom, vinit, temp, diam, src_to_spike, celsius_test->data_alignment()); @@ -42,7 +42,7 @@ void run_celsius_test() { mechanism_overrides overrides; layout.weight.assign(ncv, 1.); - for (fvm_size_type i = 0; iinitialize(); - std::vector expected_c_values(ncv, 0.); + std::vector expected_c_values(ncv, 0.); EXPECT_EQ(expected_c_values, mechanism_field(celsius_test.get(), "c")); @@ -70,24 +70,24 @@ void run_diam_test() { // one cell, three CVs: - fvm_size_type ncell = 1; - fvm_size_type ncv = 3; - std::vector cv_to_intdom(ncv, 0); + arb_size_type ncell = 1; + arb_size_type ncv = 3; + std::vector cv_to_intdom(ncv, 0); auto instance = cat.instance(backend::kind, "diam_test"); auto& celsius_test = instance.mech; - std::vector temp(ncv, 300.); - std::vector vinit(ncv, -65); - std::vector diam(ncv); - std::vector src_to_spike = {}; + std::vector temp(ncv, 300.); + std::vector vinit(ncv, -65); + std::vector diam(ncv); + std::vector src_to_spike = {}; mechanism_layout layout; mechanism_overrides overrides; layout.weight.assign(ncv, 1.); - for (fvm_size_type i = 0; i < ncv; ++i) { + for (arb_size_type i = 0; i < ncv; ++i) { diam[i] = i*2 + 0.1; layout.cv.push_back(i); } @@ -102,7 +102,7 @@ void run_diam_test() { // expect 0 value in state 'd' after init: celsius_test->initialize(); - std::vector expected_d_values(ncv, 0.); + std::vector expected_d_values(ncv, 0.); EXPECT_EQ(expected_d_values, mechanism_field(celsius_test.get(), "d")); diff --git a/test/unit/test_mechcat.cpp b/test/unit/test_mechcat.cpp index 30c9792f8a..ee6f528384 100644 --- a/test/unit/test_mechcat.cpp +++ b/test/unit/test_mechcat.cpp @@ -49,15 +49,15 @@ mechanism_info mk_fleeb_info() { // Backend classes: struct test_backend { - using iarray = std::vector; - using array = std::vector; + using iarray = std::vector; + using array = std::vector; test_backend(const std::unordered_map& ions_): shared_{ions_} {} struct shared_state { shared_state(const std::unordered_map& ions_): ions{ions_} {} - void instantiate(mechanism& m, fvm_size_type id, const mechanism_overrides& o, const mechanism_layout& l) { + void instantiate(mechanism& m, arb_size_type id, const mechanism_overrides& o, const mechanism_layout& l) { m.ppack_ = {0}; m.ppack_.width = l.cv.size(); m.ppack_.mechanism_id = id; @@ -79,7 +79,7 @@ struct test_backend { } } - std::unordered_map overrides; + std::unordered_map overrides; std::unordered_map ions; std::unordered_map> storage; }; @@ -275,12 +275,18 @@ TEST(mechcat, names) { #ifdef USE_DYNAMIC_CATALOGUES TEST(mechcat, loading) { - EXPECT_THROW(load_catalogue(CATALOGUEDIR "/does-not-exist-catalogue.so"), file_not_found_error); - EXPECT_THROW(load_catalogue(BUILDDIR "/unit"), bad_catalogue_error); - const mechanism_catalogue* cat = nullptr; - EXPECT_NO_THROW(cat = &load_catalogue(CATALOGUEDIR "/dummy-catalogue.so")); - ASSERT_NE(cat, nullptr); - EXPECT_EQ(std::vector{"dummy"}, cat->mechanism_names()); + EXPECT_THROW(load_catalogue(LIBDIR "/does-not-exist-catalogue.so"), file_not_found_error); +#if defined(ARB_ARBOR_SHARED_LIBRARY) +#if defined(ARB_ON_MACOS) + EXPECT_THROW(load_catalogue(LIBDIR "/libarbor.dylib"), bad_catalogue_error); +#else + EXPECT_THROW(load_catalogue(LIBDIR "/libarbor.so"), bad_catalogue_error); +#endif +#else + EXPECT_THROW(load_catalogue(LIBDIR "/libarbor.a"), bad_catalogue_error); + const mechanism_catalogue cat = load_catalogue(LIBDIR "/dummy-catalogue.so"); + EXPECT_EQ(std::vector{"dummy"}, cat.mechanism_names()); +#endif } #endif diff --git a/test/unit/test_merge_events.cpp b/test/unit/test_merge_events.cpp index f09cffc012..e264b014c2 100644 --- a/test/unit/test_merge_events.cpp +++ b/test/unit/test_merge_events.cpp @@ -179,40 +179,36 @@ TEST(merge_events, X) EXPECT_EQ(expected, lf); } -// Test the tournament tree for merging two small sequences -TEST(merge_events, tourney_seq) -{ - explicit_generator::lse_vector evs1 = { - {{"l0"}, 1, 1}, - {{"l0"}, 2, 2}, - {{"l0"}, 3, 3}, - {{"l0"}, 4, 4}, - {{"l0"}, 5, 5}, - }; + struct labeled_synapse_event { - explicit_generator::lse_vector evs2 = { - {{"l0"}, 1.5, 1}, - {{"l0"}, 2.5, 2}, - {{"l0"}, 3.5, 3}, - {{"l0"}, 4.5, 4}, - {{"l0"}, 5.5, 5}, }; - pse_vector expected; +using lse_vector = std::vector>; - auto gen_pse = [](const auto& item) {return spike_event{0, item.time, item.weight};}; - std::transform(evs1.begin(), evs1.end(), std::back_inserter(expected), gen_pse); - std::transform(evs2.begin(), evs2.end(), std::back_inserter(expected), gen_pse); +// Test the tournament tree for merging two small sequences +TEST(merge_events, tourney_seq) +{ + std::vector times {1, 2, 3, 4, 5}; + cell_local_label_type l0 = {"l0"}; + float w1 = 1.0f, w2 = 2.0f; + lse_vector evs1, evs2; + pse_vector expected; + for (const auto time: times) { + evs1.emplace_back(l0, w1, time); + evs2.emplace_back(l0, w2, time); + expected.push_back({0, time, w1}); + expected.push_back({0, time, w2}); + } util::sort(expected); - event_generator g1 = explicit_generator(evs1); - event_generator g2 = explicit_generator(evs2); + auto + g1 = explicit_generator(l0, w1, times), + g2 = explicit_generator(l0, w2, times); g1.resolve_label([](const cell_local_label_type&) {return 0;}); g2.resolve_label([](const cell_local_label_type&) {return 0;}); - std::vector spans; - spans.emplace_back(g1.events(0, terminal_time)); - spans.emplace_back(g2.events(0, terminal_time)); + std::vector spans = {g1.events(0, terminal_time), + g2.events(0, terminal_time)}; impl::tourney_tree tree(spans); pse_vector lf; diff --git a/test/unit/test_partition_by_constraint.cpp b/test/unit/test_partition_by_constraint.cpp index 2e8a29ad28..2a14b7fe50 100644 --- a/test/unit/test_partition_by_constraint.cpp +++ b/test/unit/test_partition_by_constraint.cpp @@ -13,8 +13,8 @@ using namespace arb; using iarray = multicore::iarray; -constexpr unsigned vector_length = (unsigned) simd::simd_abi::native_width::value; -using simd_value_type = simd::simd; +constexpr unsigned vector_length = (unsigned) simd::simd_abi::native_width::value; +using simd_value_type = simd::simd; const int simd_width_ = simd::width(); const int input_size_ = 1024; diff --git a/test/unit/test_probe.cpp b/test/unit/test_probe.cpp index 4608bb1d4c..5790c9e37c 100644 --- a/test/unit/test_probe.cpp +++ b/test/unit/test_probe.cpp @@ -99,9 +99,9 @@ static morphology make_stick_morphology() { } template -void run_v_i_probe_test(const context& ctx) { +void run_v_i_probe_test(context ctx) { using fvm_cell = typename backend_access::fvm_cell; - auto deref = [](const fvm_value_type* p) { return backend_access::deref(p); }; + auto deref = [](const arb_value_type* p) { return backend_access::deref(p); }; soma_cell_builder builder(12.6157/2.0); builder.add_branch(0, 200, 1.0/2, 1.0/2, 1, "dend"); @@ -174,7 +174,7 @@ void run_v_i_probe_test(const context& ctx) { // the voltage probes (cell membrane potential should be constant), and // zero for the current probe (including stimulus component). - fvm_value_type resting = voltage[0]; + arb_value_type resting = voltage[0]; EXPECT_NE(0.0, resting); EXPECT_EQ(resting, deref(p0a)); @@ -198,7 +198,7 @@ void run_v_i_probe_test(const context& ctx) { } template -void run_v_cell_probe_test(const context& ctx) { +void run_v_cell_probe_test(context ctx) { using fvm_cell = typename backend_access::fvm_cell; // Take the per-cable voltage over a Y-shaped cell with and without @@ -258,9 +258,9 @@ void run_v_cell_probe_test(const context& ctx) { } template -void run_expsyn_g_probe_test(const context& ctx) { +void run_expsyn_g_probe_test(context ctx) { using fvm_cell = typename backend_access::fvm_cell; - auto deref = [](const fvm_value_type* p) { return backend_access::deref(p); }; + auto deref = [](const arb_value_type* p) { return backend_access::deref(p); }; const double tau = 2.0; EXPECT_EQ(tau, global_default_catalogue()["expsyn"].parameters.at("tau").default_value); @@ -323,8 +323,8 @@ void run_expsyn_g_probe_test(const context& ctx) { const double dt = 0.001; lcell.integrate(tfinal, dt, evs, {}); - fvm_value_type g0 = deref(p0); - fvm_value_type g1 = deref(p1); + arb_value_type g0 = deref(p0); + arb_value_type g1 = deref(p1); // Expected value: weight*exp(-(t_final-t_event)/tau). double expected_g0 = 0.5*std::exp(-(tfinal-1.0)/tau); @@ -353,7 +353,7 @@ void run_expsyn_g_probe_test(const context& ctx) { } template -void run_expsyn_g_cell_probe_test(const context& ctx) { +void run_expsyn_g_cell_probe_test(context ctx) { using fvm_cell = typename backend_access::fvm_cell; auto deref = [](const auto* p) { return backend_access::deref(p); }; @@ -435,7 +435,7 @@ void run_expsyn_g_cell_probe_test(const context& ctx) { std::vector expected_uncoalesced_value(targets.size()); std::vector target_cv(targets.size(), (unsigned)-1); - std::unordered_map cv_expsyn_count; + std::unordered_map cv_expsyn_count; for (unsigned j = 0; j -void run_ion_density_probe_test(const context& ctx) { +void run_ion_density_probe_test(context ctx) { using fvm_cell = typename backend_access::fvm_cell; - auto deref = [](const fvm_value_type* p) { return backend_access::deref(p); }; + auto deref = [](const arb_value_type* p) { return backend_access::deref(p); }; // Use test mechanism write_Xi_Xo to check ion concentration probes and // density mechanism state probes. @@ -549,7 +549,19 @@ void run_ion_density_probe_test(const context& ctx) { rec.add_probe(0, 0, cable_probe_ion_ext_concentration_cell{"ca"}); fvm_cell lcell(*ctx); + auto fvm_info = lcell.initialize({0}, rec); + // We skipped FVM layout here, so we need to set these manually + auto& state = backend_access::state(lcell); + state.ion_data["ca"].write_Xi_ = true; + state.ion_data["ca"].write_Xo_ = true; + state.ion_data["ca"].init_concentration(); + state.ion_data["na"].write_Xi_ = true; + state.ion_data["na"].write_Xo_ = true; + state.ion_data["na"].init_concentration(); + // Now, re-init cell + lcell.reset(); + const auto& probe_map = fvm_info.probe_map; // Should be no sodium ion instantiated on CV 0, so probe (0, 6) should @@ -644,9 +656,9 @@ void run_ion_density_probe_test(const context& ctx) { } template -void run_partial_density_probe_test(const context& ctx) { +void run_partial_density_probe_test(context ctx) { using fvm_cell = typename backend_access::fvm_cell; - auto deref = [](const fvm_value_type* p) { return backend_access::deref(p); }; + auto deref = [](const arb_value_type* p) { return backend_access::deref(p); }; // Use test mechanism param_as_state to query averaged state values in CVs with // partial coverage by the mechanism. @@ -743,12 +755,12 @@ void run_partial_density_probe_test(const context& ctx) { cell_lid_type probe_lid = 0; for (auto tp: test_probes) { for (cell_gid_type gid: {0, 1}) { - cell_member_type probe_id{gid, probe_lid}; + cell_member_type probeset_id{gid, probe_lid}; if (std::isnan(tp.expected[gid])) { - EXPECT_EQ(0u, probe_map.data.count(probe_id)); + EXPECT_EQ(0u, probe_map.data.count(probeset_id)); } else { - probe_handle h = get_probe_raw_handle(probe_id); + probe_handle h = get_probe_raw_handle(probeset_id); EXPECT_DOUBLE_EQ(tp.expected[gid], deref(h)); } } @@ -757,7 +769,7 @@ void run_partial_density_probe_test(const context& ctx) { } template -void run_axial_and_ion_current_sampled_probe_test(const context& ctx) { +void run_axial_and_ion_current_sampled_probe_test(context ctx) { // On a passive cable in steady-state, the capacitive membrane current will be zero, // and the axial currents should balance the stimulus and ionic membrane currents in any CV. // @@ -814,7 +826,7 @@ void run_axial_and_ion_current_sampled_probe_test(const context& ctx) { partition_hint_map phints = { {cell_kind::cable, {partition_hint::max_size, partition_hint::max_size, true}} }; - simulation sim(rec, partition_load_balance(rec, ctx, phints), ctx); + simulation sim(rec, ctx, partition_load_balance(rec, ctx, phints)); // Take a sample at 20 tau, and run sim for just a bit longer. @@ -901,7 +913,7 @@ auto run_simple_samplers( partition_hint_map phints = { {cell_kind::cable, {partition_hint::max_size, partition_hint::max_size, true}} }; - simulation sim(rec, partition_load_balance(rec, ctx, phints), ctx); + simulation sim(rec, ctx, partition_load_balance(rec, ctx, phints)); std::vector> traces(n_probe); for (unsigned i = 0; i -void run_multi_probe_test(const context& ctx) { +void run_multi_probe_test(context ctx) { // Construct and run thorugh simple sampler a probe defined over // cell terminal points; check metadata and values. @@ -959,7 +971,7 @@ void run_multi_probe_test(const context& ctx) { } template -void run_v_sampled_probe_test(const context& ctx) { +void run_v_sampled_probe_test(context ctx) { soma_cell_builder builder(12.6157/2.0); builder.add_branch(0, 200, 1.0/2, 1.0/2, 1, "dend"); builder.add_branch(0, 200, 1.0/2, 1.0/2, 1, "dend"); @@ -1003,7 +1015,7 @@ void run_v_sampled_probe_test(const context& ctx) { template -void run_total_current_probe_test(const context& ctx) { +void run_total_current_probe_test(context ctx) { // Model two passive Y-shaped cells with a similar but not identical // time constant τ. // @@ -1135,7 +1147,7 @@ void run_total_current_probe_test(const context& ctx) { template -void run_stimulus_probe_test(const context& ctx) { +void run_stimulus_probe_test(context ctx) { // Model two simple stick cable cells, 3 CVs each, and stimuli on cell 0, cv 1 // and cell 1, cv 2. Run both cells in the same cell group. @@ -1180,7 +1192,7 @@ void run_stimulus_probe_test(const context& ctx) { } template -void run_exact_sampling_probe_test(const context& ctx) { +void run_exact_sampling_probe_test(context ctx) { // As the exact sampling implementation interacts with the event delivery // implementation within in cable cell groups, construct a somewhat // elaborate model with 4 cells and a gap junction between cell 1 and 3. @@ -1237,8 +1249,7 @@ void run_exact_sampling_probe_test(const context& ctx) { std::vector event_generators(cell_gid_type gid) const override { // Send a single event to cell i at 0.1*i milliseconds. - explicit_generator::lse_vector spikes = {{{"syn"}, 0.1*gid, 1.f}}; - return {explicit_generator(spikes)}; + return {explicit_generator({"syn"}, 1.0f, std::vector{0.1f*gid})}; } std::any get_global_properties(cell_kind k) const override { @@ -1266,13 +1277,13 @@ void run_exact_sampling_probe_test(const context& ctx) { }; domain_decomposition one_cell_group = partition_load_balance(rec, ctx, phints); - simulation lax_sim(rec, one_cell_group, ctx); + simulation lax_sim(rec, ctx, one_cell_group); for (unsigned i = 0; i mm = sim.get_probe_metadata({0, 0}); ASSERT_EQ(3u, mm.size()); diff --git a/test/unit/test_recipe.cpp b/test/unit/test_recipe.cpp index f630f851f0..b5b4520547 100644 --- a/test/unit/test_recipe.cpp +++ b/test/unit/test_recipe.cpp @@ -112,7 +112,7 @@ TEST(recipe, gap_junctions) auto recipe_0 = custom_recipe({cell_0, cell_1}, {{}, {}}, {gjs_0, gjs_1}, {{}, {}}); auto decomp_0 = partition_load_balance(recipe_0, context); - EXPECT_NO_THROW(simulation(recipe_0, decomp_0, context)); + EXPECT_NO_THROW(simulation(recipe_0, context, decomp_0)); } { std::vector gjs_0 = {{{1, "gapjunction1", policy::assert_univalent}, {"gapjunction0", policy::assert_univalent}, 0.1}, @@ -126,7 +126,7 @@ TEST(recipe, gap_junctions) auto recipe_1 = custom_recipe({cell_0, cell_1}, {{}, {}}, {gjs_0, gjs_1}, {{}, {}}); auto decomp_1 = partition_load_balance(recipe_1, context); - EXPECT_THROW(simulation(recipe_1, decomp_1, context), arb::bad_connection_label); + EXPECT_THROW(simulation(recipe_1, context, decomp_1), arb::bad_connection_label); } } @@ -150,7 +150,7 @@ TEST(recipe, connections) auto recipe_0 = custom_recipe({cell_0, cell_1}, {conns_0, conns_1}, {{}, {}}, {{}, {}}); auto decomp_0 = partition_load_balance(recipe_0, context); - EXPECT_NO_THROW(simulation(recipe_0, decomp_0, context)); + EXPECT_NO_THROW(simulation(recipe_0, context, decomp_0)); } { conns_0 = {{{1, "detector0"}, {"synapse0"}, 0.1, 0.1}, @@ -164,7 +164,7 @@ TEST(recipe, connections) auto recipe_1 = custom_recipe({cell_0, cell_1}, {conns_0, conns_1}, {{}, {}}, {{}, {}}); auto decomp_1 = partition_load_balance(recipe_1, context); - EXPECT_THROW(simulation(recipe_1, decomp_1, context), arb::bad_connection_source_gid); + EXPECT_THROW(simulation(recipe_1, context, decomp_1), arb::bad_connection_source_gid); } { conns_0 = {{{1, "detector0"}, {"synapse0"}, 0.1, 0.1}, @@ -178,7 +178,7 @@ TEST(recipe, connections) auto recipe_2 = custom_recipe({cell_0, cell_1}, {conns_0, conns_1}, {{}, {}}, {{}, {}}); auto decomp_2 = partition_load_balance(recipe_2, context); - EXPECT_THROW(simulation(recipe_2, decomp_2, context), arb::bad_connection_label); + EXPECT_THROW(simulation(recipe_2, context, decomp_2), arb::bad_connection_label); } { conns_0 = {{{1, "detector0"}, {"synapse0"}, 0.1, 0.1}, @@ -192,7 +192,7 @@ TEST(recipe, connections) auto recipe_4 = custom_recipe({cell_0, cell_1}, {conns_0, conns_1}, {{}, {}}, {{}, {}}); auto decomp_4 = partition_load_balance(recipe_4, context); - EXPECT_THROW(simulation(recipe_4, decomp_4, context), arb::bad_connection_label); + EXPECT_THROW(simulation(recipe_4, context, decomp_4), arb::bad_connection_label); } } @@ -201,24 +201,25 @@ TEST(recipe, event_generators) { auto cell_0 = custom_cell(1, 2, 0); auto cell_1 = custom_cell(2, 1, 0); - std::vector gens_0, gens_1; { - gens_0 = {arb::explicit_generator({{{"synapse0"}, 1.0, 0.1}, {{"synapse1"}, 2.0, 0.1}})}; - - gens_1 = {arb::explicit_generator({{{"synapse0"}, 1.0, 0.1}})}; + std::vector + gens_0 = {arb::explicit_generator({"synapse0"}, 0.1, std::vector{1.0}), + arb::explicit_generator({"synapse1"}, 0.1, std::vector{2.0})}, + gens_1 = {arb::explicit_generator({"synapse0"}, 0.1, std::vector{1.0})}; auto recipe_0 = custom_recipe({cell_0, cell_1}, {{}, {}}, {{}, {}}, {gens_0, gens_1}); auto decomp_0 = partition_load_balance(recipe_0, context); - EXPECT_NO_THROW(simulation(recipe_0, decomp_0, context)); + EXPECT_NO_THROW(simulation(recipe_0, context, decomp_0).run(1, 0.1)); } { - gens_0 = {arb::explicit_generator({{{"synapse0"}, 1.0, 0.1}, {{"synapse3"}, 2.0, 0.1}})}; - gens_1.clear(); + std::vector + gens_0 = {arb::regular_generator({"totally-not-a-synapse-42"}, 0.1, 0, 0.001)}, + gens_1 = {}; auto recipe_0 = custom_recipe({cell_0, cell_1}, {{}, {}}, {{}, {}}, {gens_0, gens_1}); auto decomp_0 = partition_load_balance(recipe_0, context); - EXPECT_THROW(simulation(recipe_0, decomp_0, context), arb::bad_connection_label); + EXPECT_THROW(simulation(recipe_0, context, decomp_0), arb::bad_connection_label); } } diff --git a/test/unit/test_s_expr.cpp b/test/unit/test_s_expr.cpp index f8aa256bfd..9920ee86b1 100644 --- a/test/unit/test_s_expr.cpp +++ b/test/unit/test_s_expr.cpp @@ -206,6 +206,15 @@ std::string round_trip_locset(const char* in) { } } +std::string round_trip_iexpr(const char* in) { + if (auto x = parse_iexpr_expression(in)) { + return util::pprintf("{}", std::any_cast(*x)); + } + else { + return x.error().what(); + } +} + TEST(cv_policies, round_tripping) { auto literals = {"(every-segment (tag 42))", @@ -244,6 +253,88 @@ TEST(cv_policies, bad) { EXPECT_THROW(check("(tag 42)"), cv_policy_parse_error); // not a cv_policy } +TEST(iexpr, round_tripping) { + EXPECT_EQ("(cable 3 0 1)", round_trip_label("(branch 3)")); + EXPECT_EQ("(intersect (tag 1) (intersect (tag 2) (tag 3)))", round_trip_label("(intersect (tag 1) (tag 2) (tag 3))")); + auto iexpr_literals = { + "(scalar 2.1)", + "(distance 3.2 (region \"foo\"))", + "(distance 3.2 (location 3 0.2))", + "(proximal-distance 3.2 (region \"foo\"))", + "(proximal-distance 3.2 (location 3 0.2))", + "(distal-distance 3.2 (region \"foo\"))", + "(distal-distance 3.2 (location 3 0.2))", + "(interpolation 3.2 (region \"foo\") 4.3 (radius-gt (tag 3) 1))", + "(interpolation 3.2 (location 3 0.2) 4.3 (distal (tag 2)))", + "(radius 2.1)", + "(diameter 2.1)", + "(exp (scalar 2.1))", + "(log (scalar 2.1))", + "(add (scalar 2.1) (radius 3.2))", + "(sub (scalar 2.1) (radius 3.2))", + "(mul (scalar 2.1) (radius 3.2))", + "(div (scalar 2.1) (radius 3.2))", + }; + for (auto l: iexpr_literals) { + EXPECT_EQ(l, round_trip_label(l)); + EXPECT_EQ(l, round_trip_iexpr(l)); + } + + // check double values for input instead of explicit scalar iexpr + auto mono_iexpr = {std::string("exp"), std::string("log")}; + auto duo_iexpr = {std::string("add"), std::string("sub"), std::string("mul"), std::string("div")}; + constexpr auto v1 = "1.2"; + constexpr auto v2 = "1.2"; + for(const auto& l : mono_iexpr) { + auto l_input = "(" + l + " " + v1 + ")"; + auto l_output = "(" + l + " (scalar " + v1 + "))"; + EXPECT_EQ(l_output.c_str(), round_trip_label(l_input.c_str())); + EXPECT_EQ(l_output.c_str(), round_trip_iexpr(l_input.c_str())); + } + for(const auto& l : duo_iexpr) { + auto l_input_dd = "(" + l + " " + v1 + + " " + v2 +")"; + auto l_input_sd = "(" + l + " (scalar " + v1 + + ") " + v2 +")"; + auto l_input_ds = "(" + l + " " + v1 + + " (scalar " + v2 +"))"; + auto l_output = "(" + l + " (scalar " + v1 + ") (scalar " + v2 +"))"; + EXPECT_EQ(l_output.c_str(), round_trip_label(l_input_dd.c_str())); + EXPECT_EQ(l_output.c_str(), round_trip_iexpr(l_input_dd.c_str())); + EXPECT_EQ(l_output.c_str(), round_trip_label(l_input_sd.c_str())); + EXPECT_EQ(l_output.c_str(), round_trip_iexpr(l_input_sd.c_str())); + EXPECT_EQ(l_output.c_str(), round_trip_label(l_input_ds.c_str())); + EXPECT_EQ(l_output.c_str(), round_trip_iexpr(l_input_ds.c_str())); + } + + // test order for more than two arguments + EXPECT_EQ("(add (add (add (scalar 1.1) (scalar 2.2)) (scalar 3.3)) (scalar 4.4))", + round_trip_label("(add 1.1 2.2 3.3 4.4)")); + EXPECT_EQ("(sub (sub (sub (scalar 1.1) (scalar 2.2)) (scalar 3.3)) (scalar 4.4))", + round_trip_label("(sub 1.1 2.2 3.3 4.4)")); + EXPECT_EQ("(mul (mul (mul (scalar 1.1) (scalar 2.2)) (scalar 3.3)) (scalar 4.4))", + round_trip_label("(mul 1.1 2.2 3.3 4.4)")); + EXPECT_EQ("(div (div (div (scalar 1.1) (scalar 2.2)) (scalar 3.3)) (scalar 4.4))", + round_trip_label("(div 1.1 2.2 3.3 4.4)")); + + // test default constructors + EXPECT_EQ("(distance 1 (location 3 0.2))", + round_trip_label("(distance (location 3 0.2))")); + EXPECT_EQ("(distance 1 (region \"foo\"))", + round_trip_label("(distance (region \"foo\"))")); + EXPECT_EQ("(distal-distance 1 (location 3 0.2))", + round_trip_label("(distal-distance (location 3 0.2))")); + EXPECT_EQ("(distal-distance 1 (region \"foo\"))", + round_trip_label("(distal-distance (region \"foo\"))")); + EXPECT_EQ("(proximal-distance 1 (location 3 0.2))", + round_trip_label("(proximal-distance (location 3 0.2))")); + EXPECT_EQ("(proximal-distance 1 (region \"foo\"))", + round_trip_label("(proximal-distance (region \"foo\"))")); + EXPECT_EQ("(radius 1)", + round_trip_label("(radius)")); + EXPECT_EQ("(diameter 1)", + round_trip_label("(diameter)")); + EXPECT_EQ("(scalar 3.14159)", + round_trip_label("(pi)")); +} + TEST(regloc, round_tripping) { EXPECT_EQ("(cable 3 0 1)", round_trip_label("(branch 3)")); EXPECT_EQ("(intersect (tag 1) (intersect (tag 2) (tag 3)))", round_trip_label("(intersect (tag 1) (tag 2) (tag 3))")); @@ -453,6 +544,7 @@ using place_tuple = std::tuple; using paint_pair = std::pair; using locset_pair = std::pair; using region_pair = std::pair; +using iexpr_pair = std::pair; std::ostream& operator<<(std::ostream& o, const i_clamp& c) { o << "(current-clamp (envelope"; @@ -479,6 +571,9 @@ std::ostream& operator<<(std::ostream& o, const membrane_capacitance& p) { std::ostream& operator<<(std::ostream& o, const init_int_concentration& p) { return o << "(ion-internal-concentration \"" << p.ion << "\" " << p.value << ')'; } +std::ostream& operator<<(std::ostream& o, const ion_diffusivity& p) { + return o << "(ion-diffusivity \"" << p.ion << "\" " << p.value << ')'; +} std::ostream& operator<<(std::ostream& o, const init_ext_concentration& p) { return o << "(ion-external-concentration \"" << p.ion << "\" " << p.value << ')'; } @@ -501,6 +596,15 @@ std::ostream& operator<<(std::ostream& o, const synapse& p) { std::ostream& operator<<(std::ostream& o, const density& p) { return o << "(density " << p.mech << ')'; } +template +std::ostream& operator<<(std::ostream& o, const scaled_mechanism& p) { + o << "(scaled-mechanism " << p.t_mech; + for (const auto& it: p.scale_expr) { + o << " (\"" << it.first << "\" " << it.second << ')'; + } + o << ")"; + return o; +} std::ostream& operator<<(std::ostream& o, const ion_reversal_potential_method& p) { return o << "(ion-reversal-potential-method \"" << p.ion << "\" " << p.method << ')'; } @@ -535,6 +639,9 @@ std::ostream& operator<<(std::ostream& o, const locset_pair& p) { std::ostream& operator<<(std::ostream& o, const region_pair& p) { return o << "(region-def \"" << p.first << "\" " << p.second << ")"; } +std::ostream& operator<<(std::ostream& o, const iexpr_pair& p) { + return o << "(iexpr-def \"" << p.first << "\" " << p.second << ")"; +} template std::string to_string(const T& obj) { @@ -612,6 +719,8 @@ TEST(decor_literals, round_tripping) { auto paint_literals = { "(density (mechanism \"hh\"))", "(density (mechanism \"pas\" (\"g\" 0.02)))", + "(scaled-mechanism (density (mechanism \"pas\" (\"g\" 0.02))))", + "(scaled-mechanism (density (mechanism \"pas\" (\"g\" 0.02))) (\"g\" (exp (add (radius 2.1) (scalar 3.2)))))", }; auto default_literals = { "(ion-reversal-potential-method \"ca\" (mechanism \"nernst/ca\"))", @@ -666,6 +775,7 @@ TEST(decor_expressions, round_tripping) { "(paint (intersect (cable 2 0 0.5) (region \"axon\")) (ion-external-concentration \"h\" -50.1))", "(paint (region \"my_region\") (ion-reversal-potential \"na\" 30))", "(paint (cable 2 0.1 0.4) (density (mechanism \"hh\")))", + "(paint (cable 2 0.1 0.4) (scaled-mechanism (density (mechanism \"pas\" (\"g\" 0.02))) (\"g\" (exp (add (distance 2.1 (region \"my_region\")) (scalar 3.2))))))", "(paint (all) (density (mechanism \"pas\" (\"g\" 0.02))))" }; auto decorate_default_literals = { @@ -706,12 +816,20 @@ TEST(label_dict_expressions, round_tripping) { "(region-def \"my region\" (all))", "(region-def \"reg42\" (cable 0 0.1 0.9))" }; + auto iexpr_def_literals = { + "(iexpr-def \"my_iexpr\" (radius 1.2))", + "(iexpr-def \"my_iexpr_2\" (iexpr \"my_iexpr\"))", + }; + for (auto l: locset_def_literals) { EXPECT_EQ(l, round_trip(l)); } for (auto l: region_def_literals) { EXPECT_EQ(l, round_trip(l)); } + for (auto l: iexpr_def_literals) { + EXPECT_EQ(l, round_trip(l)); + } } TEST(morphology_literals, round_tripping) { @@ -753,6 +871,18 @@ TEST(decor, round_tripping) { " (density \n" " (mechanism \"pas\")))\n" " (paint \n" + " (region \"dend\")\n" + " (scaled-mechanism \n" + " (density \n" + " (mechanism \"pas\"))))\n" + " (paint \n" + " (region \"soma\")\n" + " (scaled-mechanism \n" + " (density \n" + " (mechanism \"pas\"))\n" + " (\"g\" \n" + " (radius 2.1))))\n" + " (paint \n" " (region \"soma\")\n" " (density \n" " (mechanism \"hh\")))\n" @@ -785,6 +915,11 @@ TEST(label_dict, round_tripping) { " (meta-data \n" " (version \"" + arborio::acc_version() + "\"))\n" " (label-dict \n" + " (iexpr-def \"my_iexpr\" \n" + " (log \n" + " (mul \n" + " (scalar 3.5)\n" + " (diameter 4.3))))\n" " (region-def \"soma\" \n" " (tag 1))\n" " (region-def \"dend\" \n" @@ -960,6 +1095,8 @@ TEST(cable_cell, round_tripping) { " (point 206.300000 0.000000 0.000000 0.200000)\n" " 3)))\n" " (label-dict \n" + " (iexpr-def \"my_iexpr\" \n" + " (radius 2.1))\n" " (region-def \"soma\" \n" " (tag 1))\n" " (region-def \"dend\" \n" @@ -978,6 +1115,13 @@ TEST(cable_cell, round_tripping) { " (density \n" " (mechanism \"hh\" \n" " (\"el\" 0.500000))))\n" + " (paint \n" + " (region \"soma\")\n" + " (scaled-mechanism \n" + " (density \n" + " (mechanism \"pas\"))\n" + " (\"g\" \n" + " (iexpr \"my_iexpr\"))))\n" " (place \n" " (location 0 1)\n" " (current-clamp \n" diff --git a/test/unit/test_segment_tree.cpp b/test/unit/test_segment_tree.cpp index 4f5baff1d7..56909796ee 100644 --- a/test/unit/test_segment_tree.cpp +++ b/test/unit/test_segment_tree.cpp @@ -111,3 +111,226 @@ TEST(segment_tree, fuzz) { } } +::testing::AssertionResult trees_equivalent(const arb::segment_tree& a, + const arb::segment_tree& b) { + if (!arb::equivalent(a, b)) return ::testing::AssertionFailure() << "Trees are not equivalent:\n" + << a + << "\nand:\n" + << b; + return ::testing::AssertionSuccess(); +} + +TEST(segment_tree, split) { + // linear chain + { + arb::segment_tree tree; + tree.append(arb::mnpos, {0, 0, 0}, {0, 0, 1}, 0); + tree.append(0, {0, 0, 1}, {0, 0, 2}, 0); + tree.append(1, {0, 0, 2}, {0, 0, 3}, 0); + tree.append(2, {0, 0, 3}, {0, 0, 4}, 0); + tree.append(3, {0, 0, 4}, {0, 0, 5}, 0); + { + arb::segment_tree p, q; + q.append(arb::mnpos, {0, 0, 0}, {0, 0, 1}, 0); + q.append(0, {0, 0, 1}, {0, 0, 2}, 0); + q.append(1, {0, 0, 2}, {0, 0, 3}, 0); + q.append(2, {0, 0, 3}, {0, 0, 4}, 0); + q.append(3, {0, 0, 4}, {0, 0, 5}, 0); + const auto& [l, r] = arb::split_at(tree, 0); + EXPECT_TRUE(trees_equivalent(p, l)); + EXPECT_TRUE(trees_equivalent(q, r)); + } + { + arb::segment_tree p, q; + p.append(arb::mnpos, {0, 0, 0}, {0, 0, 1}, 0); + p.append(0, {0, 0, 1}, {0, 0, 2}, 0); + q.append(arb::mnpos, {0, 0, 2}, {0, 0, 3}, 0); + q.append(0, {0, 0, 3}, {0, 0, 4}, 0); + q.append(1, {0, 0, 4}, {0, 0, 5}, 0); + const auto& [l, r] = arb::split_at(tree, 2); + EXPECT_TRUE(trees_equivalent(p, l)); + EXPECT_TRUE(trees_equivalent(q, r)); + } + { + arb::segment_tree p, q; + p.append(arb::mnpos, {0, 0, 0}, {0, 0, 1}, 0); + p.append(0, {0, 0, 1}, {0, 0, 2}, 0); + p.append(1, {0, 0, 2}, {0, 0, 3}, 0); + p.append(2, {0, 0, 3}, {0, 0, 4}, 0); + q.append(arb::mnpos, {0, 0, 4}, {0, 0, 5}, 0); + const auto& [l, r] = arb::split_at(tree, 4); + EXPECT_TRUE(trees_equivalent(p, l)); + EXPECT_TRUE(trees_equivalent(q, r)); + } + } + // Error cases + { + arb::segment_tree t; + EXPECT_THROW(arb::split_at(t, arb::mnpos), arb::arbor_exception); + EXPECT_THROW(arb::split_at(t, 1), arb::arbor_exception); + } + // gnarly tree + // (npos) - 0 - 1 - 4 + // \ + // 2 - 3 + // \ + // 5 + // NB: Splitting _will_ re-order segments. So we have to be careful when + // building values to compare against. + { + arb::segment_tree tree; + tree.append(arb::mnpos, {0, 0, 0}, {0, 0, 1}, 0); // 0 + tree.append(0, {0, 0, 1}, {0, 0, 2}, 0); // 1 + tree.append(0, {0, 0, 2}, {0, 0, 3}, 0); // 2 + tree.append(2, {0, 0, 3}, {0, 0, 4}, 0); // 3 + tree.append(1, {0, 0, 4}, {0, 0, 5}, 0); // 4 + tree.append(2, {0, 0, 5}, {0, 0, 6}, 0); // 5 + { + arb::segment_tree p, q; + + q.append(arb::mnpos, {0, 0, 0}, {0, 0, 1}, 0); + q.append(0, {0, 0, 2}, {0, 0, 3}, 0); + q.append(1, {0, 0, 5}, {0, 0, 6}, 0); + q.append(1, {0, 0, 3}, {0, 0, 4}, 0); + q.append(0, {0, 0, 1}, {0, 0, 2}, 0); + q.append(4, {0, 0, 4}, {0, 0, 5}, 0); + + const auto& [l, r] = arb::split_at(tree, 0); + + EXPECT_TRUE(trees_equivalent(p, l)); + EXPECT_TRUE(trees_equivalent(q, r)); + } + { + arb::segment_tree p, q; + + p.append(arb::mnpos, {0, 0, 0}, {0, 0, 1}, 0); + p.append(0, {0, 0, 2}, {0, 0, 3}, 0); + p.append(1, {0, 0, 5}, {0, 0, 6}, 0); + p.append(1, {0, 0, 3}, {0, 0, 4}, 0); + + q.append(arb::mnpos, {0, 0, 1}, {0, 0, 2}, 0); + q.append(0, {0, 0, 4}, {0, 0, 5}, 0); + + const auto& [l, r] = arb::split_at(tree, 1); + EXPECT_TRUE(trees_equivalent(p, l)); + EXPECT_TRUE(trees_equivalent(q, r)); + } + { + arb::segment_tree p, q; + + p.append(arb::mnpos, {0, 0, 0}, {0, 0, 1}, 0); + p.append(0, {0, 0, 1}, {0, 0, 2}, 0); + p.append(1, {0, 0, 4}, {0, 0, 5}, 0); + + q.append(arb::mnpos, {0, 0, 2}, {0, 0, 3}, 0); + q.append(0, {0, 0, 5}, {0, 0, 6}, 0); + q.append(0, {0, 0, 3}, {0, 0, 4}, 0); + + const auto& [l, r] = arb::split_at(tree, 2); + EXPECT_TRUE(trees_equivalent(p, l)); + EXPECT_TRUE(trees_equivalent(q, r)); + } + } +} + +TEST(segment_tree, join) { + // linear chain + { + arb::segment_tree tree; + tree.append(arb::mnpos, {0, 0, 0}, {0, 0, 1}, 0); + tree.append(0, {0, 0, 1}, {0, 0, 2}, 0); + tree.append(1, {0, 0, 2}, {0, 0, 3}, 0); + tree.append(2, {0, 0, 3}, {0, 0, 4}, 0); + tree.append(3, {0, 0, 4}, {0, 0, 5}, 0); + { + arb::segment_tree p, q; + + q.append(arb::mnpos, {0, 0, 0}, {0, 0, 1}, 0); + q.append(0, {0, 0, 1}, {0, 0, 2}, 0); + q.append(1, {0, 0, 2}, {0, 0, 3}, 0); + q.append(2, {0, 0, 3}, {0, 0, 4}, 0); + q.append(3, {0, 0, 4}, {0, 0, 5}, 0); + + const auto& t = arb::join_at(p, arb::mnpos, q); + EXPECT_TRUE(trees_equivalent(tree, t)); + } + { + arb::segment_tree p, q; + + p.append(arb::mnpos, {0, 0, 0}, {0, 0, 1}, 0); + p.append(0, {0, 0, 1}, {0, 0, 2}, 0); + + q.append(arb::mnpos, {0, 0, 2}, {0, 0, 3}, 0); + q.append(0, {0, 0, 3}, {0, 0, 4}, 0); + q.append(1, {0, 0, 4}, {0, 0, 5}, 0); + + const auto& t = arb::join_at(p, 1, q); + EXPECT_TRUE(trees_equivalent(tree, t)); + } + } + + // Error cases + { + arb::segment_tree t; + EXPECT_THROW(arb::split_at(t, arb::mnpos), arb::arbor_exception); + EXPECT_THROW(arb::split_at(t, 1), arb::arbor_exception); + } + // gnarly tree + // (npos) - 0 - 1 - 4 + // \ + // 2 - 3 + // \ + // 5 + // NB: Joining _will_ re-order segments. So we have to be careful when + // building values to compare against. + { + arb::segment_tree tree; + tree.append(arb::mnpos, {0, 0, 0}, {0, 0, 1}, 0); // 0 + tree.append(0, {0, 0, 1}, {0, 0, 2}, 0); // 1 + tree.append(0, {0, 0, 2}, {0, 0, 3}, 0); // 2 + tree.append(2, {0, 0, 3}, {0, 0, 4}, 0); // 3 + tree.append(1, {0, 0, 4}, {0, 0, 5}, 0); // 4 + tree.append(2, {0, 0, 5}, {0, 0, 6}, 0); // 5 + { + arb::segment_tree p, q; + + q.append(arb::mnpos, {0, 0, 0}, {0, 0, 1}, 0); + q.append(0, {0, 0, 2}, {0, 0, 3}, 0); + q.append(1, {0, 0, 5}, {0, 0, 6}, 0); + q.append(1, {0, 0, 3}, {0, 0, 4}, 0); + q.append(0, {0, 0, 1}, {0, 0, 2}, 0); + q.append(4, {0, 0, 4}, {0, 0, 5}, 0); + + const auto& t = arb::join_at(p, arb::mnpos, q); + EXPECT_TRUE(trees_equivalent(tree, t)); + } + { + arb::segment_tree p, q; + + p.append(arb::mnpos, {0, 0, 0}, {0, 0, 1}, 0); + p.append(0, {0, 0, 2}, {0, 0, 3}, 0); + p.append(1, {0, 0, 5}, {0, 0, 6}, 0); + p.append(1, {0, 0, 3}, {0, 0, 4}, 0); + + q.append(arb::mnpos, {0, 0, 1}, {0, 0, 2}, 0); + q.append(0, {0, 0, 4}, {0, 0, 5}, 0); + + const auto& t = arb::join_at(p, 0, q); + EXPECT_TRUE(trees_equivalent(tree, t)); + } + { + arb::segment_tree p, q; + + p.append(arb::mnpos, {0, 0, 0}, {0, 0, 1}, 0); + p.append(0, {0, 0, 1}, {0, 0, 2}, 0); + p.append(1, {0, 0, 4}, {0, 0, 5}, 0); + + q.append(arb::mnpos, {0, 0, 2}, {0, 0, 3}, 0); + q.append(0, {0, 0, 5}, {0, 0, 6}, 0); + q.append(0, {0, 0, 3}, {0, 0, 4}, 0); + + const auto& t = arb::join_at(p, 0, q); + EXPECT_TRUE(trees_equivalent(tree, t)); + } + } +} diff --git a/test/unit/test_simulation.cpp b/test/unit/test_simulation.cpp index 3110d43822..0e0caf2e78 100644 --- a/test/unit/test_simulation.cpp +++ b/test/unit/test_simulation.cpp @@ -51,7 +51,7 @@ TEST(simulation, null) { auto r = null_recipe{}; auto c = arb::make_context(); auto d = arb::partition_load_balance(r, c); - auto s = arb::simulation(r, d, c); + auto s = arb::simulation(r, c, d); s.run(0.05, 0.01); } @@ -74,7 +74,7 @@ TEST(simulation, spike_global_callback) { play_spikes rec(spike_times); auto ctx = n_thread_context(4); auto decomp = partition_load_balance(rec, ctx); - simulation sim(rec, decomp, ctx); + simulation sim(rec, ctx, decomp); std::vector collected; sim.set_global_spike_callback([&](const std::vector& spikes) { @@ -124,7 +124,7 @@ struct lif_chain: public recipe { return {}; } else { - return {schedule_generator({"tgt"}, weight_, triggers_)}; + return {event_generator({"tgt"}, weight_, triggers_)}; } } @@ -155,7 +155,7 @@ TEST(simulation, restart) { auto ctx = n_thread_context(4); auto decomp = partition_load_balance(rec, ctx); - simulation sim(rec, decomp, ctx); + simulation sim(rec, ctx, decomp); std::vector collected; sim.set_global_spike_callback([&](const std::vector& spikes) { diff --git a/test/unit/test_spike_source.cpp b/test/unit/test_spike_source.cpp index 82a5173f4d..ebd2e2ea8e 100644 --- a/test/unit/test_spike_source.cpp +++ b/test/unit/test_spike_source.cpp @@ -115,3 +115,43 @@ TEST(spike_source, exhaust) test_seq(regular_schedule(0, 1, 5)); test_seq(explicit_schedule({0.3, 2.3, 4.7})); } + +TEST(spike_source, multiple) +{ + // This test assumes that seq will exhaust itself before t=10 ms. + auto test_seq = [](auto&&... seqs) { + std::vector schedules{seqs...}; + ss_recipe rec(1u, spike_source_cell("src", static_cast(seqs)...)); + cell_label_range srcs, tgts; + spike_source_cell_group group({0}, rec, srcs, tgts); + + // epoch ending at 10ms + epoch ep(0, 0., 10.); + group.advance(ep, 1, {}); + + auto expected = spike_times(group.spikes()); + std::sort(expected.begin(), expected.end()); + + auto actual = std::vector{}; + for (auto& schedule: schedules) { + auto ts = as_vector(schedule.events(0, 10)); + actual.insert(actual.end(), + ts.begin(), ts.end()); + } + std::sort(actual.begin(), actual.end()); + EXPECT_EQ(expected, actual); + + // Check that the last spike was before the end of the epoch. + EXPECT_LT(group.spikes().back().time, time_type(10)); + }; + + auto seqs = std::vector{regular_schedule(0, 1, 5), + explicit_schedule({0.3, 2.3, 4.7})}; + test_seq(seqs); + test_seq(std::vector{regular_schedule(0, 1, 5), + explicit_schedule({0.3, 2.3, 4.7})}); + test_seq(regular_schedule(0, 1, 5), + explicit_schedule({0.3, 2.3, 4.7})); + auto reg_sched = regular_schedule(0, 1, 5); + test_seq(reg_sched, explicit_schedule({0.3, 2.3, 4.7})); +} diff --git a/test/unit/test_spikes.cpp b/test/unit/test_spikes.cpp index 882de042fa..5453a55eff 100644 --- a/test/unit/test_spikes.cpp +++ b/test/unit/test_spikes.cpp @@ -48,7 +48,7 @@ TEST(SPIKES_TEST_CLASS, threshold_watcher) { const std::vector thresh{1., 2., 3.}; std::vector src_to_spike_vec = {0, 1, 5}; - std::vector time_since_spike_vec(10); + std::vector time_since_spike_vec(10); memory::fill(time_since_spike_vec, -1.0); // all values are initially 0, except for values[5] which we set @@ -76,8 +76,10 @@ TEST(SPIKES_TEST_CLASS, threshold_watcher) { list expected; // create the watch - backend::threshold_watcher watch(cell_index.data(), values.data(), src_to_spike.data(), - &time_before, &time_after, index, thresh, context); + backend::threshold_watcher watch(cell_index.data(), src_to_spike.data(), + &time_before, &time_after, + values.size(), index, thresh, context); + watch.reset(values); // initially the first and third watch should not be spiking // the second is spiking @@ -197,7 +199,7 @@ TEST(SPIKES_TEST_CLASS, threshold_watcher) { memory::fill(values, 0); values[index[0]] = 10.; // first watch should be intialized to spiking state memory::fill(time_before, 0.); - watch.reset(); + watch.reset(values); EXPECT_EQ(watch.crossings().size(), 0u); EXPECT_TRUE(watch.is_crossed(0)); EXPECT_FALSE(watch.is_crossed(1)); @@ -232,7 +234,7 @@ TEST(SPIKES_TEST_CLASS, threshold_watcher_interpolation) { cable1d_recipe rec({cell}); auto decomp = arb::partition_load_balance(rec, context); - arb::simulation sim(rec, decomp, context); + arb::simulation sim(rec, context, decomp); sim.set_global_spike_callback( [&spikes](const std::vector& recorded_spikes) { diff --git a/test/unit/test_synapses.cpp b/test/unit/test_synapses.cpp index cd82579fdc..49014a03bd 100644 --- a/test/unit/test_synapses.cpp +++ b/test/unit/test_synapses.cpp @@ -70,8 +70,8 @@ auto unique_cast(std::unique_ptr p) { TEST(synapses, syn_basic_state) { using util::fill; - using value_type = fvm_value_type; - using index_type = fvm_index_type; + using value_type = arb_value_type; + using index_type = arb_index_type; int num_syn = 4; int num_comp = 4; @@ -168,16 +168,16 @@ TEST(synapses, syn_basic_state) { expsyn->deliver_events(evts); exp2syn->deliver_events(evts); - using fvec = std::vector; + using fvec = std::vector; - EXPECT_TRUE(testing::seq_almost_eq( + EXPECT_TRUE(testing::seq_almost_eq( fvec({0, 3.14f, 0, 1.41f}), mechanism_field(expsyn, "g"))); double factor = mechanism_field(exp2syn, "factor")[0]; EXPECT_TRUE(factor>1.); fvec expected = {2.71f*factor, 0, 0.07f*factor, 0}; - EXPECT_TRUE(testing::seq_almost_eq(expected, mechanism_field(exp2syn, "A"))); - EXPECT_TRUE(testing::seq_almost_eq(expected, mechanism_field(exp2syn, "B"))); + EXPECT_TRUE(testing::seq_almost_eq(expected, mechanism_field(exp2syn, "A"))); + EXPECT_TRUE(testing::seq_almost_eq(expected, mechanism_field(exp2syn, "B"))); } diff --git a/test/unit/test_thread.cpp b/test/unit/test_thread.cpp index 49d46d0539..3ef13c7238 100644 --- a/test/unit/test_thread.cpp +++ b/test/unit/test_thread.cpp @@ -72,7 +72,8 @@ TEST(task_system, test_copy) { ts.async(f, 0); // Copy into new ftor and move ftor into a task (std::function) - EXPECT_EQ(1, nmove); + // move ctor is elided with some compilers + //EXPECT_EQ(1, nmove); EXPECT_EQ(1, ncopy); reset(); } @@ -99,7 +100,8 @@ TEST(notification_queue, test_copy) { q.push({task(f), 0}); // Copy into new ftor and move ftor into a task (std::function) - EXPECT_EQ(1, nmove); + // move ctor is elided with some compilers + //EXPECT_EQ(1, nmove); EXPECT_EQ(1, ncopy); reset(); } diff --git a/test/unit/unit_test_catalogue.cpp b/test/unit/unit_test_catalogue.cpp index 807ccabb76..a87b052948 100644 --- a/test/unit/unit_test_catalogue.cpp +++ b/test/unit/unit_test_catalogue.cpp @@ -48,60 +48,58 @@ #include "../gtest.h" -#ifndef ARB_GPU_ENABLED -#define ADD_MECH(c, x)\ -c.add(#x, make_testing_##x()); \ -c.register_implementation(#x, std::make_unique(make_testing_##x(), *make_testing_##x##_interface_multicore())); -#else -#define ADD_MECH(c, x)\ -c.add(#x, make_testing_##x()); \ -c.register_implementation(#x, std::make_unique(make_testing_##x(), *make_testing_##x##_interface_multicore())); \ -c.register_implementation(#x, std::make_unique(make_testing_##x(), *make_testing_##x##_interface_gpu())); -#endif +#define ADD_MECH(c, x) do { \ + auto mech = make_testing_##x(); \ + c.add(#x, mech.type()); \ + c.register_implementation(#x, std::make_unique(mech.type(), *mech.i_cpu())); \ + if (mech.i_gpu()) { \ + c.register_implementation(#x, std::make_unique(mech.type(), *mech.i_gpu())); \ + } \ + } while (false) using namespace arb; mechanism_catalogue make_unit_test_catalogue(const mechanism_catalogue& from) { mechanism_catalogue cat = from; - ADD_MECH(cat, gj0) - ADD_MECH(cat, gj1) - ADD_MECH(cat, test_ca) - ADD_MECH(cat, test_kin1) - ADD_MECH(cat, test_kinlva) - ADD_MECH(cat, ca_linear) - ADD_MECH(cat, celsius_test) - ADD_MECH(cat, diam_test) - ADD_MECH(cat, param_as_state) - ADD_MECH(cat, post_events_syn) - ADD_MECH(cat, test_linear_state) - ADD_MECH(cat, test_linear_init) - ADD_MECH(cat, test_linear_init_shuffle) - ADD_MECH(cat, test0_kin_diff) - ADD_MECH(cat, test0_kin_conserve) - ADD_MECH(cat, test0_kin_steadystate) - ADD_MECH(cat, test0_kin_compartment) - ADD_MECH(cat, test1_kin_diff) - ADD_MECH(cat, test1_kin_conserve) - ADD_MECH(cat, test2_kin_diff) - ADD_MECH(cat, test3_kin_diff) - ADD_MECH(cat, test1_kin_steadystate) - ADD_MECH(cat, test1_kin_compartment) - ADD_MECH(cat, test4_kin_compartment) - ADD_MECH(cat, test5_nonlinear_diff) - ADD_MECH(cat, test6_nonlinear_diff) - ADD_MECH(cat, fixed_ica_current) - ADD_MECH(cat, non_linear) - ADD_MECH(cat, point_ica_current) - ADD_MECH(cat, linear_ca_conc) - ADD_MECH(cat, test_cl_valence) - ADD_MECH(cat, test_ca_read_valence) - ADD_MECH(cat, read_eX) - ADD_MECH(cat, write_Xi_Xo) - ADD_MECH(cat, write_multiple_eX) - ADD_MECH(cat, write_eX) - ADD_MECH(cat, read_cai_init) - ADD_MECH(cat, write_cai_breakpoint) + ADD_MECH(cat, gj0); + ADD_MECH(cat, gj1); + ADD_MECH(cat, test_ca); + ADD_MECH(cat, test_kin1); + ADD_MECH(cat, test_kinlva); + ADD_MECH(cat, ca_linear); + ADD_MECH(cat, celsius_test); + ADD_MECH(cat, diam_test); + ADD_MECH(cat, param_as_state); + ADD_MECH(cat, post_events_syn); + ADD_MECH(cat, test_linear_state); + ADD_MECH(cat, test_linear_init); + ADD_MECH(cat, test_linear_init_shuffle); + ADD_MECH(cat, test0_kin_diff); + ADD_MECH(cat, test0_kin_conserve); + ADD_MECH(cat, test0_kin_steadystate); + ADD_MECH(cat, test0_kin_compartment); + ADD_MECH(cat, test1_kin_diff); + ADD_MECH(cat, test1_kin_conserve); + ADD_MECH(cat, test2_kin_diff); + ADD_MECH(cat, test3_kin_diff); + ADD_MECH(cat, test1_kin_steadystate); + ADD_MECH(cat, test1_kin_compartment); + ADD_MECH(cat, test4_kin_compartment); + ADD_MECH(cat, test5_nonlinear_diff); + ADD_MECH(cat, test6_nonlinear_diff); + ADD_MECH(cat, fixed_ica_current); + ADD_MECH(cat, non_linear); + ADD_MECH(cat, point_ica_current); + ADD_MECH(cat, linear_ca_conc); + ADD_MECH(cat, test_cl_valence); + ADD_MECH(cat, test_ca_read_valence); + ADD_MECH(cat, read_eX); + ADD_MECH(cat, write_Xi_Xo); + ADD_MECH(cat, write_multiple_eX); + ADD_MECH(cat, write_eX); + ADD_MECH(cat, read_cai_init); + ADD_MECH(cat, write_cai_breakpoint); return cat; } diff --git a/validation/ref/neuron/ball_and_3stick.py b/validation/ref/neuron/ball_and_3stick.py index a14ae07392..996d86f62d 100644 --- a/validation/ref/neuron/ball_and_3stick.py +++ b/validation/ref/neuron/ball_and_3stick.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -#coding: utf-8 +# coding: utf-8 import json import nrn_validation as V @@ -7,21 +7,20 @@ V.override_defaults_from_args() # dendrite geometry: all 100 µm long, 1 µm diameter. -geom = [(0,1), (100, 1)] +geom = [(0, 1), (100, 1)] model = V.VModel() model.add_soma(12.6157) -model.add_dendrite('dend1', geom) -model.add_dendrite('dend2', geom, to='dend1') -model.add_dendrite('dend3', geom, to='dend1') +model.add_dendrite("dend1", geom) +model.add_dendrite("dend2", geom, to="dend1") +model.add_dendrite("dend3", geom, to="dend1") -model.add_iclamp(5, 80, 0.45, to='dend2') -model.add_iclamp(40, 10, -0.2, to='dend3') +model.add_iclamp(5, 80, 0.45, to="dend2") +model.add_iclamp(40, 10, -0.2, to="dend3") simdur = 100.0 -data = V.run_nrn_sim(simdur, report_dt=10, model='ball_and_3stick') +data = V.run_nrn_sim(simdur, report_dt=10, model="ball_and_3stick") print(json.dumps(data)) V.nrn_stop() - diff --git a/validation/ref/neuron/ball_and_squiggle.py b/validation/ref/neuron/ball_and_squiggle.py index b69bc2ece2..ae3aab6719 100644 --- a/validation/ref/neuron/ball_and_squiggle.py +++ b/validation/ref/neuron/ball_and_squiggle.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -#coding: utf-8 +# coding: utf-8 import json import math @@ -7,24 +7,27 @@ V.override_defaults_from_args() + # dendrite geometry: 100 µm long, varying diameter. length = 100.0 npoints = 200 -radius = lambda x: math.exp(-x)*(math.sin(40*x)*0.05+0.1)+0.1 -xs = [float(i)/(npoints-1) for i in range(npoints)] -geom = [(length*x, 2.0*radius(x)) for x in xs] + +def radius(x): + return math.exp(-x) * (math.sin(40 * x) * 0.05 + 0.1) + 0.1 + + +xs = [float(i) / (npoints - 1) for i in range(npoints)] +geom = [(length * x, 2.0 * radius(x)) for x in xs] model = V.VModel() model.add_soma(12.6157) -model.add_dendrite('dend', geom) -model.add_iclamp(5, 80, 0.3, to='dend') +model.add_dendrite("dend", geom) +model.add_iclamp(5, 80, 0.3, to="dend") simdur = 100.0 -data = V.run_nrn_sim(simdur, report_dt=10, model='ball_and_squiggle') +data = V.run_nrn_sim(simdur, report_dt=10, model="ball_and_squiggle") print(json.dumps(data)) V.nrn_stop() - - diff --git a/validation/ref/neuron/ball_and_stick.py b/validation/ref/neuron/ball_and_stick.py index 93cc097eb0..0c5fd1630a 100644 --- a/validation/ref/neuron/ball_and_stick.py +++ b/validation/ref/neuron/ball_and_stick.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -#coding: utf-8 +# coding: utf-8 import json import nrn_validation as V @@ -7,14 +7,13 @@ V.override_defaults_from_args() # dendrite geometry: all 100 µm long, 1 µm diameter. -geom = [(0,1), (200, 1)] +geom = [(0, 1), (200, 1)] model = V.VModel() model.add_soma(12.6157) -model.add_dendrite('dend', geom) -model.add_iclamp(5, 80, 0.3, to='dend') +model.add_dendrite("dend", geom) +model.add_iclamp(5, 80, 0.3, to="dend") -data = V.run_nrn_sim(100, report_dt=10, model='ball_and_stick') +data = V.run_nrn_sim(100, report_dt=10, model="ball_and_stick") print(json.dumps(data)) V.nrn_stop() - diff --git a/validation/ref/neuron/ball_and_taper.py b/validation/ref/neuron/ball_and_taper.py index 7c35102122..c2fbe6f91f 100644 --- a/validation/ref/neuron/ball_and_taper.py +++ b/validation/ref/neuron/ball_and_taper.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -#coding: utf-8 +# coding: utf-8 import json import nrn_validation as V @@ -7,14 +7,13 @@ V.override_defaults_from_args() # dendrite geometry: 200 µm long, diameter 1 µm to 0.4 µm. -geom = [(0,1.0), (200, 0.4)] +geom = [(0, 1.0), (200, 0.4)] model = V.VModel() model.add_soma(12.6157) -model.add_dendrite('taper', geom) -model.add_iclamp(5, 80, 0.3, to='taper') +model.add_dendrite("taper", geom) +model.add_iclamp(5, 80, 0.3, to="taper") -data = V.run_nrn_sim(100, report_dt=10, model='ball_and_taper') +data = V.run_nrn_sim(100, report_dt=10, model="ball_and_taper") print(json.dumps(data)) V.nrn_stop() - diff --git a/validation/ref/neuron/nrn_validation.py b/validation/ref/neuron/nrn_validation.py index 5370a077b0..72df64e753 100644 --- a/validation/ref/neuron/nrn_validation.py +++ b/validation/ref/neuron/nrn_validation.py @@ -1,11 +1,10 @@ #!/usr/bin/env python3 -#coding: utf-8 +# coding: utf-8 import sys import os import re import numpy as np -import neuron from neuron import h # This is super annoying: without neuron.gui, need @@ -13,8 +12,9 @@ # but this is chatty on stdout, which means we get # junk in our data if capturing output. + def hoc_execute_quiet(arg): - with open(os.devnull, 'wb') as null: + with open(os.devnull, "wb") as null: fd = sys.stdout.fileno() keep = os.dup(fd) sys.stdout.flush() @@ -23,37 +23,42 @@ def hoc_execute_quiet(arg): sys.stdout.flush() os.dup2(keep, fd) + def hoc_setup(): hoc_execute_quiet('load_file("stdrun.hoc")') + def hoc_quit(): - hoc_execute_quiet('quit()') - #h('quit()') + hoc_execute_quiet("quit()") + # h('quit()') + default_model_parameters = { - 'gnabar_hh': 0.12, # H-H sodium conductance in S/cm^2 - 'gkbar_hh': 0.036, # H-H potassium conductance in S/cm^2 - 'gl_hh': 0.0003, # H-H leak conductance in S/cm^2 - 'el_hh': -54.3, # H-H reversal potential in mV - 'g_pas': 0.001, # Passive conductance in S/cm^2 - 'e_pas': -65.0, # Leak reversal potential in mV - 'Ra': 100.0, # Intracellular resistivity in Ω·cm - 'cm': 1.0, # Membrane areal capacitance in µF/cm^2 - 'tau': 2.0, # Exponential synapse time constant - 'tau1': 0.5, # Exp2 synapse tau1 - 'tau2': 2.0, # Exp2 synapse tau2 - 'ncomp': 1001, # Number of compartments (nseg) in dendrites - 'dt': 0.0, # (Simulation parameter) default dt, 0 => use cvode adaptive - 'abstol': 1e-6 # (Simulation parameter) abstol for cvode if used + "gnabar_hh": 0.12, # H-H sodium conductance in S/cm^2 + "gkbar_hh": 0.036, # H-H potassium conductance in S/cm^2 + "gl_hh": 0.0003, # H-H leak conductance in S/cm^2 + "el_hh": -54.3, # H-H reversal potential in mV + "g_pas": 0.001, # Passive conductance in S/cm^2 + "e_pas": -65.0, # Leak reversal potential in mV + "Ra": 100.0, # Intracellular resistivity in Ω·cm + "cm": 1.0, # Membrane areal capacitance in µF/cm^2 + "tau": 2.0, # Exponential synapse time constant + "tau1": 0.5, # Exp2 synapse tau1 + "tau2": 2.0, # Exp2 synapse tau2 + "ncomp": 1001, # Number of compartments (nseg) in dendrites + "dt": 0.0, # (Simulation parameter) default dt, 0 => use cvode adaptive + "abstol": 1e-6, # (Simulation parameter) abstol for cvode if used } + def override_defaults_from_args(args=sys.argv): global default_model_parameters keys = list(default_model_parameters.keys()) - r = re.compile('('+'|'.join(keys)+')=(.*)') + r = re.compile("(" + "|".join(keys) + ")=(.*)") for m in [r.match(a) for a in args]: if m: - default_model_parameters[m.group(1)]=float(m.group(2)) + default_model_parameters[m.group(1)] = float(m.group(2)) + def combine(*dicts, **kw): r = {} @@ -62,6 +67,7 @@ def combine(*dicts, **kw): r.update(kw) return r + class VModel: def __init__(self): self.soma = None @@ -92,23 +98,23 @@ def add_exp_syn(self, secname, pos=0.5, **kw): p = combine(default_model_parameters, kw) syn = h.ExpSyn(self.sections[secname](pos)) - syn.tau = p['tau'] + syn.tau = p["tau"] self.synapses.append(syn) - return len(self.synapses)-1 + return len(self.synapses) - 1 def add_exp2_syn(self, secname, pos=0.5, **kw): p = combine(default_model_parameters, kw) syn = h.Exp2Syn(self.sections[secname](pos)) - syn.tau1 = p['tau1'] - syn.tau2 = p['tau2'] + syn.tau1 = p["tau1"] + syn.tau2 = p["tau2"] self.synapses.append(syn) - return len(self.synapses)-1 + return len(self.synapses) - 1 def add_spike(self, t, weight, target=0): stim = h.NetStim() stim.number = 1 - stim.start = 0 + stim.start = 0 nc = h.NetCon(stim, self.synapses[target]) nc.delay = t @@ -120,19 +126,19 @@ def add_spike(self, t, weight, target=0): def add_soma(self, diam, **kw): p = combine(default_model_parameters, kw) - soma = h.Section(name='soma') + soma = h.Section(name="soma") soma.diam = diam soma.L = diam - soma.Ra = p['Ra'] - soma.cm = p['cm'] + soma.Ra = p["Ra"] + soma.cm = p["cm"] # Insert active Hodgkin-Huxley channels in the soma. - soma.insert('hh') - soma.gnabar_hh = p['gnabar_hh'] - soma.gkbar_hh = p['gkbar_hh'] - soma.gl_hh = p['gl_hh'] - soma.el_hh = p['el_hh'] + soma.insert("hh") + soma.gnabar_hh = p["gnabar_hh"] + soma.gkbar_hh = p["gkbar_hh"] + soma.gl_hh = p["gl_hh"] + soma.el_hh = p["el_hh"] # For reversal potentials we use those computed using # the Nernst equation with the following values: @@ -146,13 +152,13 @@ def add_soma(self, diam, **kw): # from the HH paper: # ena = 115.0mV + -65.0mV, # ek = -12.0mV + -65.0mV, - soma.ena = 63.55148117386 - soma.ek = -74.17164678272 + soma.ena = 63.55148117386 + soma.ek = -74.17164678272 # This is how we would get NEURON to use Nernst equation, when they # correct the Nernst equation implementation. - #h.ion_style('k_ion', 3, 2, 1, 1, 1) - #h.ion_style('na_ion', 3, 2, 1, 1, 1) + # h.ion_style('k_ion', 3, 2, 1, 1, 1) + # h.ion_style('na_ion', 3, 2, 1, 1, 1) self.soma = soma @@ -165,15 +171,15 @@ def add_dendrite(self, name, geom, to=None, **kw): h.pt3dadd(x, 0, 0, d) h.pop_section() - dend.Ra = p['Ra'] - dend.cm = p['cm'] + dend.Ra = p["Ra"] + dend.cm = p["cm"] # Add passive membrane properties to dendrite. - dend.insert('pas') - dend.g_pas = p['g_pas'] - dend.e_pas = p['e_pas'] + dend.insert("pas") + dend.g_pas = p["g_pas"] + dend.e_pas = p["e_pas"] - dend.nseg = int(p['ncomp']) + dend.nseg = int(p["ncomp"]) if to is None: if self.soma is not None: @@ -183,39 +189,41 @@ def add_dendrite(self, name, geom, to=None, **kw): self.sections[name] = dend + # Run 'current' model, return list of traces. # Samples at cable mid- and end-points taken every `sample_dt`; # Voltage on all compartments per section reported every `report_dt`. + def run_nrn_sim(tend, sample_dt=0.025, report_t=None, report_dt=None, dt=None, **meta): if dt is None: - dt = default_model_parameters['dt'] + dt = default_model_parameters["dt"] # Instrument mid-point and ends of each section for traces. vtraces = [] vtrace_t_hoc = h.Vector() - ncomps = set([s.nseg for s in h.allsec() if s.name()!='soma']) - if len(ncomps)==1: - common_ncomp = { 'ncomp': ncomps.pop() } + ncomps = set([s.nseg for s in h.allsec() if s.name() != "soma"]) + if len(ncomps) == 1: + common_ncomp = {"ncomp": ncomps.pop()} else: common_ncomp = {} for s in h.allsec(): vend = h.Vector() vend.record(s(0.5)._ref_v, sample_dt) - vtraces.append((s.name()+".mid", vend)) - if s.nseg!=1 or s.name()!='soma': + vtraces.append((s.name() + ".mid", vend)) + if s.nseg != 1 or s.name() != "soma": vmid = h.Vector() vmid.record(s(1.0)._ref_v, sample_dt) - vtraces.append((s.name()+".end", vmid)) + vtraces.append((s.name() + ".end", vmid)) vtrace_t_hoc.record(h._ref_t, sample_dt) # Instrument every segment for section voltage reports. if report_t is None: if report_dt is not None: - report_t = [report_dt*(1+i) for i in range(int(tend/report_dt))] + report_t = [report_dt * (1 + i) for i in range(int(tend / report_dt))] else: report_t = [] elif not isinstance(report_t, list): @@ -226,24 +234,24 @@ def run_nrn_sim(tend, sample_dt=0.025, report_t=None, report_dt=None, dt=None, * if report_t: for s in h.allsec(): - nseg = s.nseg; - ps = [0] + [(i+0.5)/nseg for i in range(nseg)] + [1] + nseg = s.nseg + ps = [0] + [(i + 0.5) / nseg for i in range(nseg)] + [1] vs = [h.Vector() for p in ps] for p, v in zip(ps, vs): v.record(s(p)._ref_v, vreport_t_hoc) vreports.append((s.name(), s.L, s.nseg, ps, vs)) # Run sim - if dt==0: + if dt == 0: # Use CVODE instead h.cvode.active(1) - abstol = default_model_parameters['abstol'] + abstol = default_model_parameters["abstol"] h.cvode.atol(abstol) - common_meta = { 'dt': 0, 'cvode': True, 'abstol': abstol } + common_meta = {"dt": 0, "cvode": True, "abstol": abstol} else: h.dt = dt - h.steps_per_ms = 1/dt # or else NEURON might noisily fudge dt - common_meta = { 'dt': dt, 'cvode': False } + h.steps_per_ms = 1 / dt # or else NEURON might noisily fudge dt + common_meta = {"dt": dt, "cvode": False} h.secondorder = 2 h.tstop = tend @@ -253,43 +261,54 @@ def run_nrn_sim(tend, sample_dt=0.025, report_t=None, report_dt=None, dt=None, * traces = [] vtrace_t = list(vtrace_t_hoc) - traces.append(combine(common_meta, meta, common_ncomp, { - 'name': 'membrane voltage', - 'sim': 'neuron', - 'units': 'mV', - 'data': combine({n: list(v) for n, v in vtraces}, time=vtrace_t) - })) + traces.append( + combine( + common_meta, + meta, + common_ncomp, + { + "name": "membrane voltage", + "sim": "neuron", + "units": "mV", + "data": combine({n: list(v) for n, v in vtraces}, time=vtrace_t), + }, + ) + ) # and section reports too - vreport_t = list(vreport_t_hoc) for name, length, nseg, ps, vs in vreports: obs = np.column_stack([np.array(v) for v in vs]) - xs = [length*p for p in ps] + xs = [length * p for p in ps] for i, t in enumerate(report_t): - if i>=obs.shape[0]: + if i >= obs.shape[0]: break - traces.append(combine(common_meta, meta, { - 'name': 'membrane voltage', - 'sim': 'neuron', - 'units': {'x': 'µm', name: 'mV'}, - 'ncomp': nseg, - 'time': t, - 'data': { - 'x': xs, - name: list(obs[i,:]) - } - })) + traces.append( + combine( + common_meta, + meta, + { + "name": "membrane voltage", + "sim": "neuron", + "units": {"x": "µm", name: "mV"}, + "ncomp": nseg, + "time": t, + "data": {"x": xs, name: list(obs[i, :])}, + }, + ) + ) return traces + def nrn_assert_no_sections(): for s in h.allsec(): - assert False, 'a section exists' + assert False, "a section exists" + def nrn_stop(): hoc_quit() + # Run hoc setup on load hoc_setup() - diff --git a/validation/ref/neuron/simple_exp2_synapse.py b/validation/ref/neuron/simple_exp2_synapse.py index bbaaa0688c..4ce71c6854 100644 --- a/validation/ref/neuron/simple_exp2_synapse.py +++ b/validation/ref/neuron/simple_exp2_synapse.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -#coding: utf-8 +# coding: utf-8 import json import nrn_validation as V @@ -7,18 +7,17 @@ V.override_defaults_from_args() # dendrite geometry: 200 µm long, 1 µm diameter. -geom = [(0,1), (200, 1)] +geom = [(0, 1), (200, 1)] model = V.VModel() model.add_soma(12.6157) -model.add_dendrite('dend', geom) -model.add_exp2_syn('dend') +model.add_dendrite("dend", geom) +model.add_exp2_syn("dend") model.add_spike(10, 0.04) model.add_spike(20, 0.04) model.add_spike(40, 0.04) -data = V.run_nrn_sim(70, report_dt=10, model='exp2syn') +data = V.run_nrn_sim(70, report_dt=10, model="exp2syn") print(json.dumps(data)) V.nrn_stop() - diff --git a/validation/ref/neuron/simple_exp_synapse.py b/validation/ref/neuron/simple_exp_synapse.py index e83a7051dc..2c8a3ab4b2 100644 --- a/validation/ref/neuron/simple_exp_synapse.py +++ b/validation/ref/neuron/simple_exp_synapse.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -#coding: utf-8 +# coding: utf-8 import json import nrn_validation as V @@ -7,17 +7,17 @@ V.override_defaults_from_args() # dendrite geometry: 200 µm long, 1 µm diameter. -geom = [(0,1), (200, 1)] +geom = [(0, 1), (200, 1)] model = V.VModel() model.add_soma(12.6157) -model.add_dendrite('dend', geom) -model.add_exp_syn('dend') +model.add_dendrite("dend", geom) +model.add_exp_syn("dend") model.add_spike(10, 0.04) model.add_spike(20, 0.04) model.add_spike(40, 0.04) -data = V.run_nrn_sim(70, report_dt=10, model='expsyn') +data = V.run_nrn_sim(70, report_dt=10, model="expsyn") print(json.dumps(data)) V.nrn_stop() diff --git a/validation/ref/neuron/soma.py b/validation/ref/neuron/soma.py index 372f420732..9932fd9a84 100644 --- a/validation/ref/neuron/soma.py +++ b/validation/ref/neuron/soma.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -#coding: utf-8 +# coding: utf-8 import json import nrn_validation as V @@ -11,7 +11,6 @@ model.add_soma(18.8, Ra=100) model.add_iclamp(10, 100, 0.1) -data = V.run_nrn_sim(100, report_dt=None, model='soma') +data = V.run_nrn_sim(100, report_dt=None, model="soma") print(json.dumps(data)) V.nrn_stop() - From 1d93390afcf33b3fd40b8ac37173c086afe60698 Mon Sep 17 00:00:00 2001 From: Thorsten Hater <24411438+thorstenhater@users.noreply.github.com> Date: Tue, 27 Sep 2022 13:23:10 +0200 Subject: [PATCH 30/34] Start fixing the merge fallout. --- mechanisms/allen/meson.build | 22 +++++++++------------- mechanisms/bbp/meson.build | 22 +++++++++------------- mechanisms/default/meson.build | 23 +++++++++-------------- mechanisms/meson.build | 7 ++----- scripts/meson.build | 6 ------ test/unit/meson.build | 16 +++++++++------- 6 files changed, 38 insertions(+), 58 deletions(-) diff --git a/mechanisms/allen/meson.build b/mechanisms/allen/meson.build index fed768f069..ba5fedb94b 100644 --- a/mechanisms/allen/meson.build +++ b/mechanisms/allen/meson.build @@ -1,22 +1,18 @@ name = 'allen' mechs = ['CaDynamics', 'Ca_HVA', 'Ca_LVA', 'Ih', 'Im', 'Im_v2', 'Kd', 'K_P', 'K_T', 'Kv2like', 'Kv3_1', 'Nap', 'NaTa', 'NaTs', 'NaV', 'SK'] -mech_srcs = [] +cat_srcs = [f'@name@_catalogue.cpp'] +mod_srcs = [] foreach m: mechs - modfile = meson.current_source_dir()+f'/@m@.mod' - generated_files = [f'@m@.hpp', f'@m@_cpu.cpp'] + mod_srcs += meson.current_source_dir()+f'/@m@.mod' + cat_srcs = [f'@m@.hpp', f'@m@_cpu.cpp'] if arb_with_gpu - generated_files += [f'@m@_gpu.cu', f'@m@_gpu.cpp'] + cat_srcs += [f'@m@_gpu.cu', f'@m@_gpu.cpp'] endif - mech_srcs += custom_target(f'mechanism:@name@:@m@', - input : modfile, - output : generated_files, - command : [modcc, modfile, '-N', f'arb::@name@_catalogue', '-o', meson.current_build_dir()+'/'+m, arb_modcc_flags]) endforeach -catalogue_source = f'@name@_catalogue.cpp' -mech_catalogue = custom_target(catalogue_source, - output: catalogue_source, - command : [gen_cat, catalogue_options, '-C', name, '-N', f'arb::@name@_catalogue', mechs, '-o', '@OUTPUT@']) +cat = custom_target(f'@name@_catalogue', + output: cat_srcs, + command : [modcc, '-N', f'arb', '-c', f'@name@', '-o', meson.current_build_dir(), arb_modcc_flags, mod_srcs]) -catalogue_sources += mech_srcs + mech_catalogue +catalogue_sources += cat diff --git a/mechanisms/bbp/meson.build b/mechanisms/bbp/meson.build index c8f1683c23..1b4ad44abf 100644 --- a/mechanisms/bbp/meson.build +++ b/mechanisms/bbp/meson.build @@ -1,22 +1,18 @@ name = 'bbp' mechs = ['CaDynamics_E2', 'Ca_HVA', 'Ca_LVAst', 'Ih', 'Im', 'K_Pst', 'K_Tst', 'Nap_Et2', 'NaTa_t', 'NaTs2_t', 'SK_E2', 'SKv3_1'] -mech_srcs = [] +cat_srcs = [f'@name@_catalogue.cpp'] +mod_srcs = [] foreach m: mechs - modfile = meson.current_source_dir()+f'/@m@.mod' - generated_files = [f'@m@.hpp', f'@m@_cpu.cpp'] + mod_srcs += meson.current_source_dir()+f'/@m@.mod' + cat_srcs = [f'@m@.hpp', f'@m@_cpu.cpp'] if arb_with_gpu - generated_files += [f'@m@_gpu.cu', f'@m@_gpu.cpp'] + cat_srcs += [f'@m@_gpu.cu', f'@m@_gpu.cpp'] endif - mech_srcs += custom_target(f'mechanism:@name@:@m@', - input : modfile, - output : generated_files, - command : [modcc, modfile, '-N', f'arb::@name@_catalogue', '-o', meson.current_build_dir()+'/'+m, arb_modcc_flags]) endforeach -catalogue_source = f'@name@_catalogue.cpp' -mech_catalogue = custom_target(catalogue_source, - output: catalogue_source, - command : [gen_cat, catalogue_options, '-C', name, '-N', f'arb::@name@_catalogue', mechs, '-o', '@OUTPUT@']) +cat = custom_target(f'@name@_catalogue', + output: cat_srcs, + command : [modcc, '-N', f'arb', '-c', f'@name@', '-o', meson.current_build_dir(), arb_modcc_flags, mod_srcs]) -catalogue_sources += mech_srcs + mech_catalogue +catalogue_sources += cat diff --git a/mechanisms/default/meson.build b/mechanisms/default/meson.build index 6f2632f1ff..4ea5cdd79a 100644 --- a/mechanisms/default/meson.build +++ b/mechanisms/default/meson.build @@ -1,23 +1,18 @@ name = 'default' mechs = ['exp2syn', 'expsyn', 'expsyn_stdp', 'gj', 'hh', 'kamt', 'kdrmt', 'nax', 'nernst', 'pas'] -mech_srcs = [] +cat_srcs = [f'@name@_catalogue.cpp'] +mod_srcs = [] foreach m: mechs - modfile = meson.current_source_dir()+f'/@m@.mod' - generated_files = [f'@m@.hpp', f'@m@_cpu.cpp'] + mod_srcs += meson.current_source_dir()+f'/@m@.mod' + cat_srcs = [f'@m@.hpp', f'@m@_cpu.cpp'] if arb_with_gpu - generated_files += [f'@m@_gpu.cu', f'@m@_gpu.cpp'] + cat_srcs += [f'@m@_gpu.cu', f'@m@_gpu.cpp'] endif - mech_srcs += custom_target(f'mechanism:@name@:@m@', - input : modfile, - output : generated_files, - command : [modcc, modfile, '-N', f'arb::@name@_catalogue', '-o', meson.current_build_dir()+'/'+m, arb_modcc_flags]) endforeach -catalogue_source = f'@name@_catalogue.cpp' -mech_catalogue = custom_target(catalogue_source, - output: catalogue_source, - command : [gen_cat, catalogue_options, '-C', name, '-N', f'arb::@name@_catalogue', mechs, '-o', '@OUTPUT@']) - -catalogue_sources += mech_srcs + mech_catalogue +cat = custom_target(f'@name@_catalogue', + output: cat_srcs, + command : [modcc, '-N', f'arb', '-c', f'@name@', '-o', meson.current_build_dir(), arb_modcc_flags, mod_srcs]) +catalogue_sources += cat diff --git a/mechanisms/meson.build b/mechanisms/meson.build index 350e9fa87d..03fed0c795 100644 --- a/mechanisms/meson.build +++ b/mechanisms/meson.build @@ -1,8 +1,7 @@ -gen_cat = find_program('generate_catalogue') -arb_modcc_flags += ['-t', 'cpu', '-t', 'gpu'] +arb_modcc_flags += ['-t', 'cpu'] catalogue_options = ['-A', 'arbor', '-I', '', '-B', 'multicore'] if arb_with_gpu - catalogue_options += ['-B', 'gpu'] + arb_modcc_flags += ['-t', 'gpu'] endif catalogue_sources = [] @@ -10,5 +9,3 @@ catalogue_sources = [] subdir('default') subdir('allen') subdir('bbp') - -install_data('generate_catalogue', install_dir: get_option('bindir')) diff --git a/scripts/meson.build b/scripts/meson.build index 1a7b8924c9..98fb9da11c 100644 --- a/scripts/meson.build +++ b/scripts/meson.build @@ -13,9 +13,3 @@ buildcat_configuration.set('cuda_private_args', '\''+'\', \''.join(arbor_cuda_private_args)+'\'') buildcat_configuration.set('catalogue_options', '\''+'\', \''.join(catalogue_options)+'\'') - -configure_file(input : 'build-meson-catalogue.in', - output : 'build-catalogue', - configuration : buildcat_configuration) - - diff --git a/test/unit/meson.build b/test/unit/meson.build index e4c7803752..7b1f3fdf11 100644 --- a/test/unit/meson.build +++ b/test/unit/meson.build @@ -1,5 +1,5 @@ -subdir('mechanisms') -subdir('dummy') +subdir('testing') +#subdir('dummy') unit_sources = files( 'test_abi.cpp', @@ -93,6 +93,8 @@ unit_sources = files( '../common_cells.cpp', 'mech_private_field_access.cpp', 'stats.cpp', + + # wrapper for testing catalogue 'unit_test_catalogue.cpp' ) @@ -116,22 +118,22 @@ if arb_with_gpu endif unit_data_dir = meson.current_source_dir() + '/../swc' -unit_dummy_catalogue_dir = meson.current_build_dir() + '/dummy' +#unit_dummy_catalogue_dir = meson.current_build_dir() + '/dummy' unit_build_dir = meson.current_build_dir() arbor_unit_defines = [ f'-DDATADIR="@unit_data_dir@"', f'-DBUILDDIR="@unit_build_dir@"', - f'-DCATALOGUEDIR="@unit_dummy_catalogue_dir@"', - '-DUSE_DYNAMIC_CATALOGUES', + #f'-DCATALOGUEDIR="@unit_dummy_catalogue_dir@"', + #'-DUSE_DYNAMIC_CATALOGUES', ] unit = executable('unit', - sources: [unit_sources, unit_mech_sources], + sources: [unit_sources, unit_testing_cat], include_directories: [inc_arb_public, inc_arb_private, inc_arborio_private], cpp_args: arbor_private_args + arbor_unit_defines, cuda_args: arbor_cuda_private_args, dependencies: [dep_arb, dep_arborio, dep_arborsup, dep_arborenv, dep_gtest, dep_arb_internal], - link_with: [dummy_catalogue], + #link_with: [dummy_catalogue], build_by_default: false, install: false) From 650d76c6a91e63abaf5d606b4e2497705a4392cb Mon Sep 17 00:00:00 2001 From: Thorsten Hater <24411438+thorstenhater@users.noreply.github.com> Date: Tue, 27 Sep 2022 20:24:25 +0200 Subject: [PATCH 31/34] Arbor installs now. --- arbor/include/arbor/meson.build | 10 ++++++++++ arborenv/include/meson.build | 8 -------- arborenv/meson.build | 1 + arborio/meson.build | 2 ++ modcc/meson.build | 9 ++++++--- sup/meson.build | 2 ++ 6 files changed, 21 insertions(+), 11 deletions(-) delete mode 100644 arborenv/include/meson.build diff --git a/arbor/include/arbor/meson.build b/arbor/include/arbor/meson.build index cbaa4f7f34..d6c5035096 100644 --- a/arbor/include/arbor/meson.build +++ b/arbor/include/arbor/meson.build @@ -53,5 +53,15 @@ if not fs.is_file(version_path) configuration : conf) endif +configure_file(input: meson.global_source_root() + '/cmake/export.hpp.in', + output: 'export.hpp', + configuration: { + 'target_short_NAME': 'ARBOR', + 'target': 'arbor', + 'target_name': 'arbor', + 'target_type': 'STATIC', # TODO: figure out shared/static + + }) + install_headers([assert_macro_path, version_path], install_dir: 'include/arbor') diff --git a/arborenv/include/meson.build b/arborenv/include/meson.build deleted file mode 100644 index 91b9d474c3..0000000000 --- a/arborenv/include/meson.build +++ /dev/null @@ -1,8 +0,0 @@ -arborenv_headers = [ - 'arbenvexcept.hpp', - 'concurrency.hpp', - 'default_env.hpp', - 'gpu_env.hpp', - 'with_mpi.hpp', -] -install_headers(arborenv_headers, ) diff --git a/arborenv/meson.build b/arborenv/meson.build index 702c9f4556..20f2a46cb5 100644 --- a/arborenv/meson.build +++ b/arborenv/meson.build @@ -16,6 +16,7 @@ lib_arborenv = library('arborenv', cpp_args : arbor_private_args, install: true) +subdir('include/arborenv') install_subdir('include/arborenv', install_dir: 'include') dep_arborenv = declare_dependency( diff --git a/arborio/meson.build b/arborio/meson.build index 5b897f7b66..1dec9aa32f 100644 --- a/arborio/meson.build +++ b/arborio/meson.build @@ -20,6 +20,8 @@ lib_arborio = library('arborio', cpp_args : arbor_private_args, install: true) +subdir('include/arborio') + install_subdir('include/arborio', install_dir: 'include') dep_arborio = declare_dependency( diff --git a/modcc/meson.build b/modcc/meson.build index eaa5b1b988..987146060a 100644 --- a/modcc/meson.build +++ b/modcc/meson.build @@ -22,18 +22,21 @@ libmodcc_src = [ 'printer/infoprinter.cpp', 'printer/printerutil.cpp'] +subdir('libmodcc') + libmodcc = library('modcc', sources: [libmodcc_src], dependencies: [dep_libfmt], - install: true) + include_directories: ['.'], + install: true, + cpp_args : '-DFMT_HEADER_ONLY') dep_libmodcc = declare_dependency( include_directories: ['.'], link_with: [libmodcc]) - modcc = executable('modcc', sources: ['modcc.cpp', ], - dependencies: dep_tinyopt, + dependencies: [dep_tinyopt, dep_libfmt], link_with: [libmodcc], install: true) diff --git a/sup/meson.build b/sup/meson.build index fa582397c1..486633df56 100644 --- a/sup/meson.build +++ b/sup/meson.build @@ -1,5 +1,7 @@ arborsup_src = ['ioutil.cpp', 'json_meter.cpp', 'path.cpp'] +subdir('include/sup') + lib_arborsup = library('arbsup', sources: arborsup_src, include_directories: ['include'], From f443eeaa502d6eaa24417c0852eb6af9819d8664 Mon Sep 17 00:00:00 2001 From: Thorsten Hater <24411438+thorstenhater@users.noreply.github.com> Date: Tue, 27 Sep 2022 20:25:26 +0200 Subject: [PATCH 32/34] Missing files. --- arborenv/include/arborenv/meson.build | 8 +++ arborio/include/arborio/meson.build | 9 +++ modcc/libmodcc/export.hpp.in | 90 +++++++++++++++++++++++++++ modcc/libmodcc/meson.build | 8 +++ sup/include/sup/meson.build | 8 +++ test/unit/testing/meson.build | 55 ++++++++++++++++ 6 files changed, 178 insertions(+) create mode 100644 arborenv/include/arborenv/meson.build create mode 100644 arborio/include/arborio/meson.build create mode 100644 modcc/libmodcc/export.hpp.in create mode 100644 modcc/libmodcc/meson.build create mode 100644 sup/include/sup/meson.build create mode 100644 test/unit/testing/meson.build diff --git a/arborenv/include/arborenv/meson.build b/arborenv/include/arborenv/meson.build new file mode 100644 index 0000000000..d6b1dbdb35 --- /dev/null +++ b/arborenv/include/arborenv/meson.build @@ -0,0 +1,8 @@ +env_export = configure_file(input: meson.global_source_root() + '/cmake/export.hpp.in', + output: 'export.hpp', + configuration: { + 'target_short_NAME': 'ARBORENV', + 'target': 'arborenv', + 'target_name': 'arborenv', + 'target_type': 'STATIC', # TODO: figure out shared/static +}) diff --git a/arborio/include/arborio/meson.build b/arborio/include/arborio/meson.build new file mode 100644 index 0000000000..64092fcf5f --- /dev/null +++ b/arborio/include/arborio/meson.build @@ -0,0 +1,9 @@ +configure_file(input: meson.global_source_root() + '/cmake/export.hpp.in', + output: 'export.hpp', + configuration: { + 'target_short_NAME': 'ARBORIO', + 'target': 'arborio', + 'target_name': 'arborio', + 'target_type': 'STATIC', # TODO: figure out shared/static + + }) diff --git a/modcc/libmodcc/export.hpp.in b/modcc/libmodcc/export.hpp.in new file mode 100644 index 0000000000..ecfc130e5b --- /dev/null +++ b/modcc/libmodcc/export.hpp.in @@ -0,0 +1,90 @@ +#pragma once + +//#ifndef ARB_EXPORT_DEBUG +//# define ARB_EXPORT_DEBUG +//#endif + +/* library build type (ARB_@target_short_NAME@_STATIC_LIBRARY/ARB_@target_short_NAME@_SHARED_LIBRARY) */ +#define ARB_@target_short_NAME@_@target_type@ + +#pragma once + +#if defined(__INTEL_COMPILER) || defined(__ICL) || defined(__ICC) || defined(__ECC) +// Intel +# if defined(_WIN32) || defined(__WIN32__) || defined(WIN32) || defined(__CYGWIN__) +# define ARB_SYMBOL_IMPORT __attribute__((__dllimport__)) +# define ARB_SYMBOL_EXPORT __attribute__((__dllexport__)) +# elif defined(__GNUC__) && (__GNUC__ >= 4) +# define ARB_SYMBOL_EXPORT __attribute__((visibility("default"))) +# define ARB_SYMBOL_VISIBLE __attribute__((__visibility__("default"))) +# endif + +#elif defined(__clang__) +// Clang C++ +# if defined(_WIN32) || defined(__WIN32__) || defined(WIN32) || defined(__CYGWIN__) +# define ARB_SYMBOL_IMPORT __attribute__((__dllimport__)) +# define ARB_SYMBOL_EXPORT __attribute__((__dllexport__)) +# else +# define ARB_SYMBOL_EXPORT __attribute__((__visibility__("default"))) +# define ARB_SYMBOL_VISIBLE __attribute__((__visibility__("default"))) +# endif + +# elif defined(__GNUC__) +// GNU C++: +# if __GNUC__ >= 4 +# if defined(_WIN32) || defined(__WIN32__) || defined(WIN32) || defined(__CYGWIN__) +# define ARB_SYMBOL_IMPORT __attribute__((__dllimport__)) +# define ARB_SYMBOL_EXPORT __attribute__((__dllexport__)) +# else +# define ARB_SYMBOL_EXPORT __attribute__((__visibility__("default"))) +# define ARB_SYMBOL_VISIBLE __attribute__((__visibility__("default"))) +# endif +# endif + +#endif + +#if defined(macintosh) || defined(__APPLE__) || defined(__APPLE_CC__) +// MacOS +# define ARB_ON_MACOS +#endif + +#ifndef ARB_SYMBOL_IMPORT +# define ARB_SYMBOL_IMPORT +#endif +#ifndef ARB_SYMBOL_EXPORT +# define ARB_SYMBOL_EXPORT +#endif +#ifndef ARB_SYMBOL_VISIBLE +# define ARB_SYMBOL_VISIBLE +#endif + +#ifndef ARB_@target_short_NAME@_EXPORTS +# if defined(@target_name@_EXPORTS) + /* we are building @target@ dynamically */ +# ifdef ARB_EXPORT_DEBUG +# pragma message "we are building @target@ dynamically" +# endif +# define ARB_@target_short_NAME@_API ARB_SYMBOL_EXPORT +# elif defined(@target_name@_EXPORTS_STATIC) + /* we are building @target@ statically */ +# ifdef ARB_EXPORT_DEBUG +# pragma message "we are building @target@ statically" +# endif +# define ARB_@target_short_NAME@_API +# else + /* we are using the library @target@ */ +# if defined(ARB_@target_short_NAME@_SHARED_LIBRARY) + /* we are importing @target@ dynamically */ +# ifdef ARB_EXPORT_DEBUG +# pragma message "we are importing @target@ dynamically" +# endif +# define ARB_@target_short_NAME@_API ARB_SYMBOL_IMPORT +# else + /* we are importing @target@ statically */ +# ifdef ARB_EXPORT_DEBUG +# pragma message "we are importing @target@ statically" +# endif +# define ARB_@target_short_NAME@_API +# endif +# endif +#endif diff --git a/modcc/libmodcc/meson.build b/modcc/libmodcc/meson.build new file mode 100644 index 0000000000..a81ae2dd5f --- /dev/null +++ b/modcc/libmodcc/meson.build @@ -0,0 +1,8 @@ +configure_file(input: 'export.hpp.in', + output: 'export.hpp', + configuration: { + 'target_short_NAME': 'LIBMODCC', + 'target': 'libmodcc', + 'target_name': 'libmodcc', + 'target_type': 'STATIC', # TODO: figure out shared/static + }) diff --git a/sup/include/sup/meson.build b/sup/include/sup/meson.build new file mode 100644 index 0000000000..5793417287 --- /dev/null +++ b/sup/include/sup/meson.build @@ -0,0 +1,8 @@ +configure_file(input: meson.global_source_root() + '/cmake/export.hpp.in', + output: 'export.hpp', + configuration: { + 'target_short_NAME': 'SUP', + 'target': 'sup', + 'target_name': 'sup', + 'target_type': 'STATIC', # TODO: figure out shared/static + }) diff --git a/test/unit/testing/meson.build b/test/unit/testing/meson.build new file mode 100644 index 0000000000..c06c27b6cd --- /dev/null +++ b/test/unit/testing/meson.build @@ -0,0 +1,55 @@ +name = 'testing' +mechs = [ + 'ca_linear', + 'celsius_test', + 'diam_test', + 'fixed_ica_current', + 'gj0', + 'gj1', + 'linear_ca_conc', + 'non_linear', + 'param_as_state', + 'point_ica_current', + 'post_events_syn', + 'read_cai_init', + 'read_eX', + 'test0_kin_compartment', + 'test0_kin_conserve', + 'test0_kin_diff', + 'test0_kin_steadystate', + 'test1_kin_compartment', + 'test1_kin_conserve', + 'test1_kin_diff', + 'test1_kin_steadystate', + 'test2_kin_diff', + 'test3_kin_diff', + 'test4_kin_compartment', + 'test5_nonlinear_diff', + 'test6_nonlinear_diff', + 'test_ca', + 'test_ca_read_valence', + 'test_cl_valence', + 'test_kin1', + 'test_kinlva', + 'test_linear_init', + 'test_linear_init_shuffle', + 'test_linear_state', + 'write_cai_breakpoint', + 'write_eX', + 'write_multiple_eX', + 'write_Xi_Xo' +] + +cat_srcs = [f'@name@_catalogue.cpp'] +mod_srcs = [] +foreach m: mechs + mod_srcs += meson.current_source_dir()+f'/@m@.mod' + cat_srcs = [f'@m@.hpp', f'@m@_cpu.cpp'] + if arb_with_gpu + cat_srcs += [f'@m@_gpu.cu', f'@m@_gpu.cpp'] + endif +endforeach + +unit_testing_cat = custom_target(f'@name@_catalogue', + output: cat_srcs, + command: [modcc, '-N', f'arb', '-c', f'@name@', '-o', meson.current_build_dir(), arb_modcc_flags, mod_srcs]) From 45d8f8858eeabc2f83ac909fd5e95c47fdf7e2e9 Mon Sep 17 00:00:00 2001 From: Thorsten Hater <24411438+thorstenhater@users.noreply.github.com> Date: Wed, 28 Sep 2022 11:03:10 +0200 Subject: [PATCH 33/34] Everything builds now. --- arbor/iexpr.cpp | 2 +- arbor/include/arbor/meson.build | 3 +-- arbor/meson.build | 30 +++++++++++++++--------------- example/meson.build | 4 +++- mechanisms/allen/meson.build | 6 ++---- mechanisms/bbp/meson.build | 6 ++---- mechanisms/default/meson.build | 10 ++++------ mechanisms/meson.build | 2 -- meson.build | 29 ++++++++++++++++++++++++++++- python/meson.build | 4 ++-- test/unit/testing/meson.build | 2 +- 11 files changed, 59 insertions(+), 39 deletions(-) diff --git a/arbor/iexpr.cpp b/arbor/iexpr.cpp index f2fe81acac..c13e43c377 100644 --- a/arbor/iexpr.cpp +++ b/arbor/iexpr.cpp @@ -408,7 +408,7 @@ iexpr iexpr::named(std::string name) { return iexpr(iexpr_type::named, std::make_tuple(std::move(name))); } -iexpr_ptr thingify(const iexpr& expr, const mprovider& m) { +ARB_ARBOR_API iexpr_ptr thingify(const iexpr& expr, const mprovider& m) { switch (expr.type()) { case iexpr_type::scalar: return iexpr_ptr(new iexpr_impl::scalar( diff --git a/arbor/include/arbor/meson.build b/arbor/include/arbor/meson.build index d6c5035096..d3cf0698ea 100644 --- a/arbor/include/arbor/meson.build +++ b/arbor/include/arbor/meson.build @@ -59,8 +59,7 @@ configure_file(input: meson.global_source_root() + '/cmake/export.hpp.in', 'target_short_NAME': 'ARBOR', 'target': 'arbor', 'target_name': 'arbor', - 'target_type': 'STATIC', # TODO: figure out shared/static - + 'target_type': f'@arb_build_type@_LIBRARY', }) install_headers([assert_macro_path, version_path], install_dir: 'include/arbor') diff --git a/arbor/meson.build b/arbor/meson.build index b77506cd88..7d5b8cf190 100644 --- a/arbor/meson.build +++ b/arbor/meson.build @@ -6,6 +6,7 @@ arb_src = [ 'communication/dry_run_context.cpp', 'benchmark_cell_group.cpp', 'cable_cell.cpp', + 'iexpr.cpp', 'cable_cell_param.cpp', 'cell_group_factory.cpp', 'common_types_io.cpp', @@ -104,22 +105,21 @@ if arb_with_gpu endif lib_arb = library('arbor', - sources: [arb_src, catalogue_sources], - include_directories: [inc_arb_public, inc_arb_private], - cpp_args: arbor_private_args, - cuda_args: arbor_cuda_private_args, - dependencies: dep_arb_internal, - install: true) + sources: [arb_src, default_cat, allen_cat, bbp_cat], + include_directories: [inc_arb_public, inc_arb_private], + cpp_args: arbor_private_args, + cuda_args: arbor_cuda_private_args, + dependencies: [dep_arb_internal], + install: true) -install_subdir( - 'include/arbor', - install_dir: 'include', - exclude_files: [ - 'arb_types.inc', - 'assert_macro.hpp.disabled', - 'assert_macro.hpp.enabled', - 'meson.build', - 'version.hpp.in']) +install_subdir('include/arbor', + install_dir: 'include', + exclude_files: [ + 'arb_types.inc', + 'assert_macro.hpp.disabled', + 'assert_macro.hpp.enabled', + 'meson.build', + 'version.hpp.in']) dep_arb = declare_dependency( include_directories: [inc_arb_public], diff --git a/example/meson.build b/example/meson.build index 3f404ade4d..93f1b064c5 100644 --- a/example/meson.build +++ b/example/meson.build @@ -1,10 +1,12 @@ subdir('bench') subdir('brunel') subdir('dryrun') +subdir('drybench') subdir('gap_junctions') subdir('generators') subdir('lfp') +subdir('plasticity') subdir('probe-demo') subdir('ring') subdir('single') - +subdir('diffusion') diff --git a/mechanisms/allen/meson.build b/mechanisms/allen/meson.build index ba5fedb94b..8aca680f44 100644 --- a/mechanisms/allen/meson.build +++ b/mechanisms/allen/meson.build @@ -5,14 +5,12 @@ cat_srcs = [f'@name@_catalogue.cpp'] mod_srcs = [] foreach m: mechs mod_srcs += meson.current_source_dir()+f'/@m@.mod' - cat_srcs = [f'@m@.hpp', f'@m@_cpu.cpp'] + cat_srcs += [f'@m@.hpp', f'@m@_cpu.cpp'] if arb_with_gpu cat_srcs += [f'@m@_gpu.cu', f'@m@_gpu.cpp'] endif endforeach -cat = custom_target(f'@name@_catalogue', +allen_cat = custom_target(f'@name@_catalogue', output: cat_srcs, command : [modcc, '-N', f'arb', '-c', f'@name@', '-o', meson.current_build_dir(), arb_modcc_flags, mod_srcs]) - -catalogue_sources += cat diff --git a/mechanisms/bbp/meson.build b/mechanisms/bbp/meson.build index 1b4ad44abf..4fe7a16848 100644 --- a/mechanisms/bbp/meson.build +++ b/mechanisms/bbp/meson.build @@ -5,14 +5,12 @@ cat_srcs = [f'@name@_catalogue.cpp'] mod_srcs = [] foreach m: mechs mod_srcs += meson.current_source_dir()+f'/@m@.mod' - cat_srcs = [f'@m@.hpp', f'@m@_cpu.cpp'] + cat_srcs += [f'@m@.hpp', f'@m@_cpu.cpp'] if arb_with_gpu cat_srcs += [f'@m@_gpu.cu', f'@m@_gpu.cpp'] endif endforeach -cat = custom_target(f'@name@_catalogue', +bbp_cat = custom_target(f'@name@_catalogue', output: cat_srcs, command : [modcc, '-N', f'arb', '-c', f'@name@', '-o', meson.current_build_dir(), arb_modcc_flags, mod_srcs]) - -catalogue_sources += cat diff --git a/mechanisms/default/meson.build b/mechanisms/default/meson.build index 4ea5cdd79a..b578922494 100644 --- a/mechanisms/default/meson.build +++ b/mechanisms/default/meson.build @@ -5,14 +5,12 @@ cat_srcs = [f'@name@_catalogue.cpp'] mod_srcs = [] foreach m: mechs mod_srcs += meson.current_source_dir()+f'/@m@.mod' - cat_srcs = [f'@m@.hpp', f'@m@_cpu.cpp'] + cat_srcs += [f'@m@.hpp', f'@m@_cpu.cpp'] if arb_with_gpu cat_srcs += [f'@m@_gpu.cu', f'@m@_gpu.cpp'] endif endforeach -cat = custom_target(f'@name@_catalogue', - output: cat_srcs, - command : [modcc, '-N', f'arb', '-c', f'@name@', '-o', meson.current_build_dir(), arb_modcc_flags, mod_srcs]) - -catalogue_sources += cat +default_cat = custom_target(f'@name@_catalogue', + output: cat_srcs, + command : [modcc, '-N', f'arb', '-c', f'@name@', '-o', meson.current_build_dir(), arb_modcc_flags, mod_srcs]) diff --git a/mechanisms/meson.build b/mechanisms/meson.build index 03fed0c795..1351c7278d 100644 --- a/mechanisms/meson.build +++ b/mechanisms/meson.build @@ -4,8 +4,6 @@ if arb_with_gpu arb_modcc_flags += ['-t', 'gpu'] endif -catalogue_sources = [] - subdir('default') subdir('allen') subdir('bbp') diff --git a/meson.build b/meson.build index 94a7b05dde..b8acec0167 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project('arbor', ['cpp'], version: files('VERSION'), - meson_version: '>=0.60', + meson_version: '>=0.63', default_options : ['buildtype=debug', 'cpp_std=c++17', 'default_library=static'], license: 'BSD') @@ -44,8 +44,12 @@ if arb_with_vectorize arb_modcc_flags += '--simd' endif +# set our build type STATIC/SHARED for properly exporting symbols +arb_build_type = 'STATIC' + # set configure-time defines for arbor, arborenv and arborio # of the form ARB_HAVE_XXX (private) and ARB_XXX (public) + arb_public_defs = [] arb_private_defs = [] arb_configurations = [] @@ -73,6 +77,11 @@ endif if arb_with_vectorize arb_configurations += 'VECTORIZE' endif +if arb_build_type == 'STATIC' + arb_private_defs += '-DARB_arbor_EXPORTS_STATIC' +else + arb_private_defs += '-DARB_arbor_EXPORTS' +endif # Set optimization/target-specific architecture flags arb_target_args = [] @@ -183,3 +192,21 @@ pkg.generate(lib_arb, variables: pkg_config_variables ) pkg.generate(lib_arborio) + +# targets for bundling tests, examples, ... + +tests = [unit, unit_modcc, unit_local] +if arb_with_mpi + tests += unit_mpi +endif +alias_target('tests', tests) +# add test runners +test('unit', unit) +test('unit-modcc', unit_modcc) +test('unit-local', unit_local) +if arb_with_mpi + test('unit-mpi', unit_mpi) +endif + +examples = [ring, bench, brunel, diffusion, drybench, dryrun, gap_junctions, generators, lfp, plasticity, probes, ring, single] +alias_target('examples', examples) diff --git a/python/meson.build b/python/meson.build index 95687ff3f9..217638a5ce 100644 --- a/python/meson.build +++ b/python/meson.build @@ -20,7 +20,7 @@ pyarb_srcs = [ ] if arb_with_bundled_libs - dep_pybind = declare_dependency(include_directories: ['pybind11/include']) + dep_pybind = declare_dependency(include_directories: ['../ext/pybind11/include']) else dep_pybind = dependency('pybind11', version : '>=2.8.1', required : true) endif @@ -28,7 +28,7 @@ endif python3 = import('python').find_installation('python3') dep_python = dependency('python3', required: true) -py_dependencies = [dep_python, dep_pybind, dep_arborio, dep_arb] +py_dependencies = [dep_python, dep_pybind, dep_arborio, dep_arb, dep_arborenv] if arb_with_gpu py_dependencies += dep_cuda endif diff --git a/test/unit/testing/meson.build b/test/unit/testing/meson.build index c06c27b6cd..59b566d864 100644 --- a/test/unit/testing/meson.build +++ b/test/unit/testing/meson.build @@ -44,7 +44,7 @@ cat_srcs = [f'@name@_catalogue.cpp'] mod_srcs = [] foreach m: mechs mod_srcs += meson.current_source_dir()+f'/@m@.mod' - cat_srcs = [f'@m@.hpp', f'@m@_cpu.cpp'] + cat_srcs += [f'@m@.hpp', f'@m@_cpu.cpp'] if arb_with_gpu cat_srcs += [f'@m@_gpu.cu', f'@m@_gpu.cpp'] endif From 3a47b5e95cda8820094ed762fd000cd082119571 Mon Sep 17 00:00:00 2001 From: Thorsten Hater <24411438+thorstenhater@users.noreply.github.com> Date: Wed, 28 Sep 2022 12:49:46 +0200 Subject: [PATCH 34/34] Dummy is back. --- arborenv/include/arborenv/meson.build | 11 ++++---- arborio/include/arborio/meson.build | 14 +++++----- example/diffusion/meson.build | 5 ++++ example/drybench/meson.build | 5 ++++ example/plasticity/meson.build | 5 ++++ modcc/libmodcc/meson.build | 13 +++++---- sup/include/sup/meson.build | 13 +++++---- test/unit/dummy/meson.build | 40 ++++++++++++--------------- test/unit/meson.build | 13 +++++---- test/unit/test_mechcat.cpp | 8 +++++- 10 files changed, 75 insertions(+), 52 deletions(-) create mode 100644 example/diffusion/meson.build create mode 100644 example/drybench/meson.build create mode 100644 example/plasticity/meson.build diff --git a/arborenv/include/arborenv/meson.build b/arborenv/include/arborenv/meson.build index d6b1dbdb35..aec68c66df 100644 --- a/arborenv/include/arborenv/meson.build +++ b/arborenv/include/arborenv/meson.build @@ -1,8 +1,9 @@ +name = 'arborenv' + env_export = configure_file(input: meson.global_source_root() + '/cmake/export.hpp.in', output: 'export.hpp', configuration: { - 'target_short_NAME': 'ARBORENV', - 'target': 'arborenv', - 'target_name': 'arborenv', - 'target_type': 'STATIC', # TODO: figure out shared/static -}) + 'target_short_NAME': name.to_upper(), + 'target': name, + 'target_name': name, + 'target_type': f'@arb_build_type@_LIBRARY',}) diff --git a/arborio/include/arborio/meson.build b/arborio/include/arborio/meson.build index 64092fcf5f..eaa6d09f33 100644 --- a/arborio/include/arborio/meson.build +++ b/arborio/include/arborio/meson.build @@ -1,9 +1,9 @@ -configure_file(input: meson.global_source_root() + '/cmake/export.hpp.in', +name = 'arborio' + +env_export = configure_file(input: meson.global_source_root() + '/cmake/export.hpp.in', output: 'export.hpp', configuration: { - 'target_short_NAME': 'ARBORIO', - 'target': 'arborio', - 'target_name': 'arborio', - 'target_type': 'STATIC', # TODO: figure out shared/static - - }) + 'target_short_NAME': name.to_upper(), + 'target': name, + 'target_name': name, + 'target_type': f'@arb_build_type@_LIBRARY',}) diff --git a/example/diffusion/meson.build b/example/diffusion/meson.build new file mode 100644 index 0000000000..2581c80a12 --- /dev/null +++ b/example/diffusion/meson.build @@ -0,0 +1,5 @@ +diffusion = executable('diffusion', + sources: 'diffusion.cpp', + dependencies: [dep_arb, dep_arborsup, dep_arborio, dep_arborenv, dep_tinyopt], + build_by_default: false, + install: false) diff --git a/example/drybench/meson.build b/example/drybench/meson.build new file mode 100644 index 0000000000..7301652f6c --- /dev/null +++ b/example/drybench/meson.build @@ -0,0 +1,5 @@ +drybench = executable('drybench', + sources: 'drybench.cpp', + dependencies: [dep_arb, dep_arborsup, dep_arborenv], + build_by_default: false, + install: false) diff --git a/example/plasticity/meson.build b/example/plasticity/meson.build new file mode 100644 index 0000000000..55e4558bd0 --- /dev/null +++ b/example/plasticity/meson.build @@ -0,0 +1,5 @@ +plasticity = executable('plasticity', + sources: 'plasticity.cpp', + dependencies: [dep_arb, dep_arborsup, dep_arborio, dep_arborenv], + build_by_default: false, + install: false) diff --git a/modcc/libmodcc/meson.build b/modcc/libmodcc/meson.build index a81ae2dd5f..302dbf84d1 100644 --- a/modcc/libmodcc/meson.build +++ b/modcc/libmodcc/meson.build @@ -1,8 +1,9 @@ -configure_file(input: 'export.hpp.in', +name = 'libmodcc' + +env_export = configure_file(input: 'export.hpp.in', output: 'export.hpp', configuration: { - 'target_short_NAME': 'LIBMODCC', - 'target': 'libmodcc', - 'target_name': 'libmodcc', - 'target_type': 'STATIC', # TODO: figure out shared/static - }) + 'target_short_NAME': name.to_upper(), + 'target': name, + 'target_name': name, + 'target_type': f'@arb_build_type@_LIBRARY',}) diff --git a/sup/include/sup/meson.build b/sup/include/sup/meson.build index 5793417287..d04ef68fc5 100644 --- a/sup/include/sup/meson.build +++ b/sup/include/sup/meson.build @@ -1,8 +1,9 @@ -configure_file(input: meson.global_source_root() + '/cmake/export.hpp.in', +name = 'sup' + +env_export = configure_file(input: meson.global_source_root() + '/cmake/export.hpp.in', output: 'export.hpp', configuration: { - 'target_short_NAME': 'SUP', - 'target': 'sup', - 'target_name': 'sup', - 'target_type': 'STATIC', # TODO: figure out shared/static - }) + 'target_short_NAME': name.to_upper(), + 'target': name, + 'target_name': name, + 'target_type': f'@arb_build_type@_LIBRARY',}) diff --git a/test/unit/dummy/meson.build b/test/unit/dummy/meson.build index 0affe503c7..ef94e522f1 100644 --- a/test/unit/dummy/meson.build +++ b/test/unit/dummy/meson.build @@ -1,30 +1,26 @@ name = 'dummy' -dummy_mechs = ['dummy'] -namespace = f'arb::@name@_catalogue' +mechs = ['dummy'] -dummy_mech_sources = [] -foreach m: dummy_mechs - modfile = meson.current_source_dir()+f'/@m@.mod' - generated_files = [f'@m@.hpp', f'@m@_cpu.cpp'] +cat_srcs = [f'@name@_catalogue.cpp'] +mod_srcs = [] +foreach m: mechs + mod_srcs += meson.current_source_dir()+f'/@m@.mod' + cat_srcs += [f'@m@.hpp', f'@m@_cpu.cpp'] if arb_with_gpu - generated_files += [f'@m@_gpu.cu', f'@m@_gpu.cpp'] + cat_srcs += [f'@m@_gpu.cu', f'@m@_gpu.cpp'] endif - dummy_mech_sources += custom_target(f'mechanism:@name@:@m@', - input : modfile, - output : generated_files, - command : [modcc, modfile, '-N', namespace, '-o', meson.current_build_dir()+'/'+m, arb_modcc_flags]) endforeach -dummy_catalogue_source = custom_target('dummy-catalogue-source', - output: f'@name@_catalogue.cpp', - command : [gen_cat, catalogue_options, '-C', name, '-N', namespace, dummy_mechs, '-o', '@OUTPUT@']) +dummy_cat = custom_target(f'@name@_catalogue', + output: cat_srcs, + command : [modcc, '-N', f'arb', '-c', f'@name@', '-o', meson.current_build_dir(), arb_modcc_flags, mod_srcs]) dummy_catalogue = shared_library('dummy-catalogue', - name_prefix: '', - sources: [dummy_mech_sources, dummy_catalogue_source], - dependencies: [dep_arb], - cpp_args : ['-DSTANDALONE'] + arbor_private_args, - cuda_args: arbor_cuda_private_args, - install: false, - build_by_default: false) - + name_prefix: '', + name_suffix: 'so', + sources: [dummy_cat], + dependencies: [dep_arb], + cpp_args : ['-DSTANDALONE'] + arbor_private_args, + cuda_args: arbor_cuda_private_args, + install: false, + build_by_default: false) diff --git a/test/unit/meson.build b/test/unit/meson.build index 7b1f3fdf11..d9bc5895ac 100644 --- a/test/unit/meson.build +++ b/test/unit/meson.build @@ -1,5 +1,5 @@ subdir('testing') -#subdir('dummy') +subdir('dummy') unit_sources = files( 'test_abi.cpp', @@ -118,14 +118,17 @@ if arb_with_gpu endif unit_data_dir = meson.current_source_dir() + '/../swc' -#unit_dummy_catalogue_dir = meson.current_build_dir() + '/dummy' +unit_dummy_catalogue_dir = meson.current_build_dir() + '/dummy' unit_build_dir = meson.current_build_dir() +arbor_lib_dir = meson.project_build_root() + '/arbor' +message('Will load dummy from: ' + unit_dummy_catalogue_dir) arbor_unit_defines = [ f'-DDATADIR="@unit_data_dir@"', f'-DBUILDDIR="@unit_build_dir@"', - #f'-DCATALOGUEDIR="@unit_dummy_catalogue_dir@"', - #'-DUSE_DYNAMIC_CATALOGUES', + f'-DLIBDIR="@arbor_lib_dir@"', + f'-DCATALOGUEDIR="@unit_dummy_catalogue_dir@"', + '-DUSE_DYNAMIC_CATALOGUES', ] unit = executable('unit', @@ -134,6 +137,6 @@ unit = executable('unit', cpp_args: arbor_private_args + arbor_unit_defines, cuda_args: arbor_cuda_private_args, dependencies: [dep_arb, dep_arborio, dep_arborsup, dep_arborenv, dep_gtest, dep_arb_internal], - #link_with: [dummy_catalogue], + link_with: [dummy_catalogue], build_by_default: false, install: false) diff --git a/test/unit/test_mechcat.cpp b/test/unit/test_mechcat.cpp index a70306aa25..1537aa8411 100644 --- a/test/unit/test_mechcat.cpp +++ b/test/unit/test_mechcat.cpp @@ -13,6 +13,12 @@ #define LIBDIR "." #endif +#ifndef CATALOGUEDIR +#warning "CATALOGUUDIR not set; defaulting to" LIBDIR +#define CATALOGUEDIR LIBDIR +#endif + + using namespace std::string_literals; using namespace arb; @@ -288,7 +294,7 @@ TEST(mechcat, loading) { #endif #else EXPECT_THROW(load_catalogue(LIBDIR "/libarbor.a"), bad_catalogue_error); - const mechanism_catalogue cat = load_catalogue(LIBDIR "/dummy-catalogue.so"); + const mechanism_catalogue cat = load_catalogue(CATALOGUEDIR "/dummy-catalogue.so"); EXPECT_EQ(std::vector{"dummy"}, cat.mechanism_names()); #endif }

^2OuC_-RjgwYoj#(%(`h;*wAsl(78wV?jn%(_>|KXkwbGk-!rn2ilL<_ zJc)*x`{N%(MMlaflDjd@YXiYmoMLfAsRBSe+;}YT2xZ46)#EMVFx|@_sf#XwFT}yt z^dAKMbQ9`Okj-T{Gz4@k&MjFcwGV8~HtpLxK@ypvUr1b8pk8M*GWGgoEN)pb1tq2T z(G;E7u1#iC1-P#yWr{c+_LuY(aC*x11A-hWcwzr~vYzMv06NRa{JiijL9#qy`) zGzC)NLE*tD06JXVojI8no!0Aob!qWs(UK*bneNEMmk8jRvKWL8?t{o>5J`+1+v>&z zvU17U+~H9vjSusEGg#^-z%()y*OZeePvH2Dv+tS(5Lqk(6RwfZz|Y?O6?=NNw%gRv z$klRAztk^gPz{T8Redt^aTtI}3%ZSL%nN240|Q%ze?s9U^g&BLTT zU6xmEE&1;%%!o4Z6=n_6+R}9gHJ`ntw2+)AThj2w`agC}kYV&rU9IMjTG(_T`$A;C zhg_;QTn#XSlbrphZ#m)@0#X?E`V8PeYl}%^5{58UFXz%CUR<7{7Vj_2pz*b%BCF z6{o)|aN*k64k(U~j#h*);u@-D2a_EBd4plYE-wjPn+IQFSkj3%v8Vud<1)rIq`l<+6H!)mwF_unn&7 zUfm1o2dIcF?l8pT5kTgRe!#yJ6%tgQu98CoFH{IbZeub{Qv@!;ZABIcVix8Jo$2nh zT=1~vSV2*QA9!f=vPk|fe(Kx=^uoXNC3~X);0ETz5n(o4%RE}u^xP6 zZjfh2NiiMHunp^xUBP{}TDL4hQ$)4Yg{7SLmKAF|4PCv77c4AQ#(*f<)GL0-_9V;` zBH=F4n?Nh#*Hlbe(sH`Yc;WM&$&hSD%FD~U-rsd8Nkuf&kkMa6?HI21qbf)>kZJaW zNs}BI6}X0e8buD21#G||320PTG}T!f$1Fi?e*o#06<@7$*saC;EsTl9M_|N=D}(5z zR7199lsF)j{htl<^H(PghgBc(97MR30N)1`5X;<ATtg2cb8VIg5XjqbYUGND zZxk34r1ZQQYX8Iy#+L2rMwMqv{RQyBB{DwZ+vV9b(z4Jkfn`M?3HA{sGuXABxn)s& zP)2VIY)ze=b;V*#+hdGn1TB-SbC=7?kfQgw>Sy?}USazs-`JZfAmF6^B3j-x$1E)` zQQp=1A@K&t%tf!hJmE<7!Jbw|KHpw!?M;pHf+e}>(6V8H7_R-&4ZtRO#zC-5>K}gd zk@cH8X@!X>keA|!qe0@D&t1y@SSlmt=mJwD^NbufklRBxaCX#PzYTA3JE6NU4 zISSCQKG^Cs-I-&ya%Df*oq4YesE5Gibc^&={xzAAXY;qXP9CW`%x2oOEeJGA$Rc#+ zuA%jcv&Q*TxqC8+LEk`m-PdaL=rn%dtnWXGhe9l*|9|`GJQH&8i*$+$IZ`%zMysB4 z?9)atFJKRy*N=KFro8ZjQ7-5${UR6iD(1k1G78I>l%Za$vydAuquPV6QT@hkX}gG5 zSe6n49f*e7ji%JqtYhV+K1?Gbk%ER+*b#gIv|ao77!O)Z=$poM_bgpTc~8OOKn)2J zYB6)>v-b7&(D!mVHbbTo`@17!R7Ts(n6VwM8=?;Pl&7s{d5D)eq^aOdx|@i=$yPxs zFB(p%D}!7KacZY`*&v@61;JX6%Q|s%Q_Fx5epO~Plf_RMW)_w|U$k(cD5QSDH5R(y zieUi48PTJ6ieoybeM|D<09XJjfK6fxME%Riu!hgm6tslFDy?{Tj9@6Rj~3QMT*5Z) zz4TFns1t!i7Y8kDYpj9EK9Aqk1$)_Tz9!yWMsz+;wZeO<#D*Z71%~znY$qCtqP9r4 z`nsqkc_J(yP^Skr=^A=Jj%lqBACYr-!ZR*<<$nvj zPNKuo)bE==*v^>=9R}l_#{V+Zl?RJRP~4j?FK#F=7fu?WOC3NyTJP~?-=Kes(+z`B zF%t)%dA2azV|XXQ;>e;Hg>^ojr=pTsvP?=nFe7;F*QYl)3(hEwA5tUMtH$1ac+;Ve zZ0~|6p7U~EBd?%=0$U5l0WIfT?Ae$AhdrB^>y%aw*l7Lp|F{4p8Ny|KuwE^}_V0ha^0HcX30v&P(x@VL5L%xBOg+vQoUb#QmQnnL8-3 zjgHQKVl%Xg5v>;xeRP2>C zH4UJ}`DJKnd`r3e?+kKg`Dy9go=bd(S%ZmJu_}e(f_Eco!$E7{!jH~)+{(EM#mmGJrm+ehMr_JptlJDJ9hY?$4B1F61=?0 z$y+Ur7)y&i6=1zcz|@yKH!ai)Y%nv`cW{o?ua!49E~ z6W9M7$jb626blUHc9Mrpx(kpYJ+nZT7?2$H^HW|cMs=X-JUJ6fOMmN!Ic1-v|CeHx z8)7maOS^|wcm1eOm`u~?6*b*(lSPx{b0jZvV-21oZKK8 zn!$?`Uo)+VdPe_7ls=Hh81FO&9v2KX6ALqGcNuS?!i=39k-|!OF~bv>jYDDZylAJU z@(Y)6_&Vq#81c5jc7dbl_({+Zu6S*hYWc4&nQa(n>8@l}0C8k9pX73aRsE{&urwvI z)3JViIE0(Pa$%d6>-z?2<2l$%Fg5(6!WvCs zF2t48s_l0&#w1h&WmX}XEp>?iW?Tc(Z;^u%-|5y@w_RN`dpkRmD zvnh8n?awA8$l4VC>UEd(`LiIj^^p+UHb1SX09HV|A*^RKY@k1uNwoPgn8DxR8+!HR z8LI%FsJ@g?;#6N1yAba*2lkxT1448#2)jHjqJKk{8;9sx(J1gWG?i7-9r_4h$*?Vg zUa;>1xJbaqf?>yoUH;c4y%=ZN)ym{Z!jzuEW45vR@i~**3K>cc>X6^-moM)t3PI`> zpej=i`b{?yRt9X+v350kfNW__M5o}cr+xU;sb)||@gPC0>BFH1)LEbu6%{4683~I| z(eV(B93M|w>I)7@D-5n6eu*3>gUHL5f1kJ0*!bn1g?N9$)5MZ>ys2|!Ho{Sq)6;1q z+2|$pxInal*`?IDRxXtxxn<(=EX)Q#D<7`%-5DX)F#EJX&FLqASYuK;n0TRJ6Tpz2 zns;&ZiB|#|eGOnvWKJ7S&5I9Khr=(vmVKH29~k03e&L6U=)5~J=OmU9fy!5e z@x!Iyg_s7;wxi97&Sug%f^7(G2thZ`qBiM#Q4iBU5VVxWfotq1v*VacHZDD)iwiJYfhNrdw~i0qPPGgvEX9}zA0xNoPkUzu8$l5wU^YUlCt@0j;$|+ zG(zhVon%lhGaqI+Rlb-$qSxhkn1T}&y>dN4+@daDT`>I|kq+V_&5q}()E~zSof)AohY~>G@yv3(oc}dC zoS?&g>tz5GPY72*Xz&CI!h;gL^zzIIS{e)vwsG~Y^!1QU@vOm3qkZLyUVb*v_{&4s z1XU!hsMy%@@B#rSDaAxK=D&ONX4+)&V};xw`TprOSoBYxY(XfJ&Y*NpyO(YE-@eA5 ze15_&PR!dDOpIf&SWzD40QVqZ>6PE=aCFwZ{jIB~H~QEB)uJBy`q!|3sA6W7 z`t`X|K?oOGn&rj8 zk~>tg?2Z1>Y)-LE6PS!7TWPHoZ%GtMSA}m`i>No%>cZgEHFRX{ovfN9kusi0IsM88 z4NTh8PF?x41>Nbr8MdK-mm;&HMhdvp`4JCO;x1few9AZ$ZK4ZznsKtp!D<8I#!)ih z23`F6^~3kaHq0g(XYg2>w{Go6S7$4e?isf&l!|cvO%5>Hfa2bQ#O+(ZKgu= zAV!}1^Os=#`-f+jw_>X7 zA3NszTnsZ&4Zxf3Y-srH{LP>R0ndx1gOaf!7O>id*ZA!8YJvQ10gKz``6H;`+B@|s z?<4^mQov2&6%2+zaK(X2eD$Z7D%i179YWB+qKDi_NFICf=K>%xzk}Gqpu|p?2&Qv0Mo%7SavbMYN8G>+nGeYVPxryYSfStx@TfvGiJ{I{q_glP)HnfF ziW-_g`w^m9Q}KN08sXt31qV*bGES1~eXo_l3`1kp89jRU&L+s9CAt_ao$G&tnUIxq4XgQ``fRcxrhIq~jkhtX zBKRwbNPll1G2V*Sv}_D?%u{-Sy)@D8#TvVv#Sw5Ggq}nJnL)G_ug}AGJ|c3*2T~j5 z``Wc@O~UtUnmr(23ZgD!PHOl!kIx>x+s^}&e$eZ`hvRG5Iw5oyDgm=d`&2_#u4Dm0 zHb=Kh|H2aX?Qb7pfyk((7}wn9jwW8SfKz3a6zBcZ67e5|aq0fI&d1(KEPQI0bomde#9O(aDUCJjx0)7|0@v z7x?Hxcm`#%K)3X>)*8O5;`}LAQWb4_8DI**kf+h_l|!{w=dDBRxL6WaBjYdm123N)|LhKnN0{%{ABxk$EQ znd}EAsf%F46Mr+vqP_!{E+R7q2=4|L1-g2ffAY;bLj4vmf#~Q=x3NgtFstM`~apJb{ge=G6tbJ^QLbh ztRD+BRlP0X8L&Wb_;8)45;$=p;!#m}1S>7o#<|0LR8;WiA+;@uSzEm`EeA34Y%_3i z8$OB*9gde;Zet=M;X)RafZJYQSfrlFN@O8U(ykEIoUnGEV6kvF*;_U-F@?x@@L=Mc zrNw{XWe5X`9J&0{%h4-r4i@jns6Z&(qO+Ca1`wX6B&6>5E_cga5B?oR?N_(F?kf;- z`ZgzmUEQLEXUFG(@iZxASe}+ zA{j5de!Soq6%RKx+FL`bFG@t|>@g?a^>o>vzkCo1eMQ2?@hE>^2zlr~K2Pr^D}1h* zCkqw_(CpjlzZZ!4g(=5-5yQC5<91Bl*J+We@ko{>wiB|^qR$`5TNLjm`Wd9;x;5JW zu8#j6ZSKx|9>0J|XmDAL@}FCWfMED(vY8#HWUBHgqrgWpdWMD|&4=u&yp*(_I*AE^ z5M$WU8+z4%RYy@g53r@?k2+-5n2#DI`XWA!m?PzCYf#B9iB#)_=ZV^MNNT7J#n<=2 z^2{eV3Cj5)$^MYW!tj!Utt6uXLuBg^&;7&) zdamY76f(&&dO6r7Zl{MSCVa~N7N)?ugQvCVvQvd;c+egSV*4oUxX`YtpYYoG@Fdro z#msvd`#-SJv873tBnQYK!k5bG>X>)yy;W!7Zwk7gEISP;C*w>1%(x}e5w$X_5E)sC z;q`^Zk0ln{YCteB(e8i#Q4mcD$&&lMYoz-A79+|S=}TWmX~9t)@7AIAcImX>c3A*( z3TDgY8SB>4OVxjN#%3)(AftlSH6Ox9z7`)bnbtrSOV7>yPjjXJ8A5;z33R- zE_}QNfn5w0fE|K+UDurgG=}*XHZ7k_uQZ^Qfsd5|+@iEMzM9QLVq%3tRamE~okq~? z&q;Wb+WanBlihdH+|r z1j(tkV6$ZtzJc^qxmn5-Ek4CD zoLu5||8`9Xa9s*g%x*EwISn(2vK-y}j6+SP{V#oKn(t9e`ww935k{;$8`gY`N&fiT zhl+sywDO%I1Hm2wSrK5fu?K@kRPe48EB~fqRSK(IcSZXWHetxafWIoxElVv&xOP2>`^pzv@Hoj7sRZ93!uNX1fN z$oGP9YBF~8uWd|RG-1GVM7?MlA1v1y!%gGL)SWl4?AnY$fG!Ynt&F;#cce;zr6GoI z(he~ki+3u;N0b;&@pCmZQ&Du5W5-nPr|lz=3lKwZzB_NxG|~<%rTHxLac-+zrG{(j ztXZ?jeN#@xJF6=8W;iVTdU%Xt5fxubqE6~Kst&4f`C?3ZCRo(Ef0!5qYg>60AH_3f z@so2Z!r&xaA$l0?7CosK4p7WUuknoq*@7OjLSsK2CwXPyk_9*Bo~<)7a&kbyg9lou z0Kwzq9JfB>PYdKp51CG^nwGUv`%f+h7Im0@Q2VVon!pS5Buph4e%%S5K#A?KROg)T zs<_UjoE->)>7QR5ImRu_Al(a6M39*82By?!$x}nQhvb!)Q{R~@H}y^{o~kOi1f!_N zZTgJ#k5x9FefF_fp&}dPgl+*}vDS#qB5jS>tIzAkk`xTXSROt4!*f<3L7nS@ksjs4fZ) z`MmevGOTaw%c_ztTbpOas6S`Y zD(lDyTSV=&m5Vu-I92zIo})NIE`_Gj9zbNVyEif9w|{8l)b+&OJF`F0Yr|LD;LZI;y6utbQvqdj#+1F%hG z7*yLm1XrK)bUcKTNRreuH~==j@`eKEF~n-G=K-sWUwrKvSS&|E*iS zuUxsJ+Tv3LKO1)PIJd^ZI=8fi@y#i0=rTOgErqbbI#jK@Z`;6KrSSD)I|=VAW94FK z&!AcV(5SSPCyB!{!!wAmn%YyH$(Rg~-F8jN1$hyBOu`*ffM2)E6pc^B$6q5&2>^g@ zyph`ylS^Uy_Y3hAu*`Ag@4cGeoZ-Cf9k56puBzVYmVM!Ra&{t(>eq4?;&#oM+@`tD zCPt`LPrdfto=bu8$uIEx$A=rD`qo)5+B8c-Z#a-sv{kFs%(u^O~t5|B9jJ5RmZ_Jp6QVUbySQ}gci2xZu zj<$`9XBTq#eEHqO^-zo5_*~bCz$R=>;X={%j_W9z`qf|FG-np~t?k5OQj8b%zb52W z5G866vrHHY2|$woyV^Z_o~(LHUnDGWx3tU&oWIz>tL~UFn=n6n(05-ZF%akv^daHR zw0!7+v=of(@%{6wFq}n1&H$vW`t-``h5-Z=`N}{g#Z%{~D9|-a5Fqge<*AH9N+ZGA zt#N>eOwx&YVPRntEShg22L%6J-0RN#{_S{^UNkU&DxG?R*-|sg!iAyP4+;uOQ4ta< z=dY;xfX|K4M=_oDFIx3cCcH=@YfHtJ0b=Jjblum+*cr)C4m{m=pgY(ux3GZ_%9+@< zd~(U`tyt&6)*j>0ub#;#TD?*cQGx*F)~^<#lDm1+>agWKNuCVI#&SyHxrAD<+%~sjC%?XfRVb+j*n;7^l)W%uBZ1*tcKj_3N#sG$QPS^s9 z!MSu`(Yr!~q)7?n4JkUNP>r$2sa>~v#B#I_MMc%4&}X>ji0|6a?ELxt!D~lbmhU?X zr3e^q=*2#rhO9cN+9F^Nsa-bJRJ75~0biu3!quTZns)^Sj*Smv2}%yV@m<>?!-4=_ zm*QOvyVyEaVQEqgTZ-*Dok+gd*z4l^%toJNA`u7-kgJvLb`mKJ6k4A>@8?lfltABN z_8oD(Nbwmb4o2%Hz_8Sg7r}$6`h?(3GYt_WF|derQ6$s!g74;S!RJ_HLH83IXdO~O*B!A!#ZG>@HLTfLCZ4)crPif%rNL@5&(M~wTn!>SsXbfQhwXO!Mn!Xp=L+8 z_VX_~wR;#?$udDkcvq3lgwmlf^4kks??bkd(Mp)6AH> zC|qv@RD8UVjx#%}m{?C@V-)~Dw1fll3Y`qXD87ce7xOG-*C?Wq%oo!J|I-;NuIOsM zCoYpdR8k5_lU+c2D-0F2)X-T8cM}D_=Sfx3LDS2^e@IyPpnH5Nxdm)h7DUVDgMM>w z6|YmbSq3!+!|Z?}^(o^@mKll_BE9OGRl``dvYDoc2LaOACDX^J4-^;&R@@7n4`;QZnyvMJ(qgfOqifkrPQt0jAAv;8YQWStzd+IuUN+mna{Qu2rn7c zRVbrnW;Ny6eZ6ko*fp;9ps(T*+Jx;h^j5A|vF||wgvV-F;?l@StxWYot=w?Lkeb%& z>athDWAL71NNJ4W1%aB$dbQfe#M71o%*T;so0Mv*=|cFzXtRU_F6}qq^E8i>JZJ1^ z>Y=Vtoi=Z*m#Qv5gb{f+GBV*pb!hB~6P-C>U;$}d-(!LK6(p3M;WukLo^LkM*UtCiaV1yQ zR?OsmNC%BBwP-(rmP=fHxSxiuZ&X>e_n({2VZ_Fph}E!!XS1tuWsgw<_xD<1KcS%s zCRd^_U?5am%K9xu|E>j7&)B=ZjfS}+#zdvGCzKwZke_oCXmB8c$y8|f?ulDpL(L|a zFLYBXoq)nn`pebvd0i7%!U&?`;UQkU)+5AMQ@j$?p0wp6kbdkbPfT%V6nkSBBDdqWP)>#m-;l>%}Tp2EOx||80~Lum7T=%MWH2 zU%+{vO?Hq}YiYJELRAxG0|=l87UUvP+xV?YP7d5}syVbR8E2>L)7-ZeP=&DD>)Dn8 z2r)!DPv*?3@YviQZ4&O@43CTv;kzDG3qq_+lze@ny*?(T!pbC9qf%9*=m<#n`BnD% zb*=jwz`bw_V;Y@I^~0V3X#^;5iO~^qzYMjJTZ+9hr(2~ruHzn^Pnx?4kO=S#>+Wvi zp%}0;nOPsRiIRnEo_DUm6BLRcUq?6xiGiRk*H}(<@A5i#VU*7c)-_grEoZP2`38tQL?$tKyBT5l`_DW!oN&ss5d?V}b9sl}>9mDA&-7 zJs_?50h2&f{dRj&kk1=gxDFUCwIIU^zp_ckkh#h_K9Zc~DtoooI4Gl5RV!HUlQYNh ze_Labt&eUnLd%FvjonBw>CBRJc}82nM@Zod*mhfk2oAR@u(r~~pb+q~IL`K^E`>y_sm(-wQG&U6OfsL7pIBq%B-;~ z(Nq@xzI%SktlhvKFdlF#8n&bfiLd-%D z4e*MorqtZuhp28OO~_IMhIY$Y1Lykw$?ghEM~*(~3(x-kwQX}`k|pQpoO*|*7B7u1 zsCv19q!WrpjvgIQHf}pj^HBJCRJY>&=emCn?W4#tk-N)m`0vo*FSsUJtp0e2omme0VeE9EL~Y^3I1B z=!mlZmC;u!81$GjGQ_m{Zl@=C+cQeoCNpO7pH!85Vk*vM3GQCeYLcHtcVe3G(nRjT zVEEeS0iMrg-U`~QMN<1a^F{c-32Y+;sszQ+uaht` zNTM7>O+r<>?e!Tb)c3w;xOr5RpiM8=_PBSPLAZ28w7TLGDrR2)?yaKMho|;s55{=~ z^+Bk`laf6~s8V7BO_g(qCGbP@<`np&uo6*`?0FzrtO>lGlVePKJi=*14541evK&Gw zm^^RiPlLWgnpC1uc{x}gAV;DYvO%1h^zV-4#Q_6?*47Ol-}=q;7t9Y;VAYAY1{|i? zz|PCDT}Pz!=G2m6NZaBNK}9c>2tSWr`Sh|96LFH=JLwF9!}#YnZ`@FGRD&X5$OW2K zy0W^mQgW?av4gpPEoRVQf{w{ViEI9S)pTPmr9HRpnBmFnAUfKk<|nD-8i7o-2eNaf zurOs}>nVBVu3VQ!E~!|{9ekb(ZJW0!@0j3q(CH|iqrm&XJ1_hi_VnzXWycxHqU_u7 zX1UKxCN5IIiQ_Z`kK?8N3BjT$fPZV@*3uJO^=!E3+hHxGwwywPHSqgX+10=(26SEt zwKleHd?7~FvKrlj20J)ilO8=zOj?|CS-^|Gsv2(0%oWzG&;`SQKNRo%bclRzs#69aLH5U;=e}s@0EW!C10js z2PKK`zO9-*ak!yh`Sq!h?4SVnv(~Wa3Dq_ozza{l{{u12f&ej9JJV#~5BU4_Tk`&t zORM|J9$hBbwn5ueo#p-#iEvohe`)nOChpRX6Ef=Np!n(r#K+faGZE@(KvP$O?+j|^%7|&3WA$QjYeU%j$wb73Y z9@q!tc}fS_m`#T}PCYunG;NscXLyXC*5bx;z;9Abobj|LL$ zT>Ah73J@6VwlevL((vbeBJ5xkU?3kXWg2N?Z@*QFdVBjuJ#!hP3+=O~{e{Lo)vX*p zTSoHDF5b9f4qze(5M^pJq9y0(2R18+#Gkx;zQ?d%pFYJ;;*wz})1?WmI@f7>;<7p} zPtM8aG#0*87xkr~6xtPmrrn5w-ydIW=kOA`>U=wsD4J;D*Bw4w(royNhrXktN}%pn ze*HR%9*0|~MolU7F(^#r)6fb-vwkO8Gz#kJiPi(ko@`+qwDeh!`DvdiFam_7VQXji zeZ?i7nXm}TwEIIGV~q64dAOJAL`EC3RCD--U;dC_K6m&D{|0DkU{bMl9>UgAs(5gz z1@Bt^S6fZY>0IdB!lz9bOEp=l?zIfnIzai27DGx8b-+P*^-`d0(SQ|pQ zE?7<}Dc20QGh%J_%Eea0)_zeIzX$tCRbjZA@cHCZ(*yshEaioYb0jm;Mw;O-Wu!z6 zC(35-HH>863d>A)CJu)vKK{oxr%74JWW2wA(=`Bj;6e?GZz>gufG5qtfjc^GRaGlD z;q&7-N61S3kqkfxX^CaQzBD5jx2$YKU>1%NTk8bx06u*XY}RgP&dVg<-YD8ZbqLJD zhW!|bW#KiMaRJL+sQ7RQ1eqFt8%FA;n%V>#fE$Mg{omU>f$fZCq|os4QM@;lY#?~IpI-wpzJyj$`6^M! zTKtuX`V(yN(1RnKS;V|#iTno6fxtH)GBSMO;bGTi%y^eh=K7UJwGhAuTF2ds7!{!$ z5q=8rpa)*)N~Fb3og&mbl`#-K{icl6Ey z=M%aDY!1LP*$%>`9z{{Zuahsu67BSz8(!D&0|iYus4;j!|8`W#B6|hQRvv1{5DX+i z6g@$ujJPjWIF8srt0Mb`$Q9Tk6ui*x21>&>>xxUmw0wFm#@?$URC>+r-9PB^@&Mw z3(pkFEF7Gnjz@W8kd3_K7k5Ra)B2#8`dn1^CjKunXs1b+LX37C(ex5olI?*aT3G60^|zxR*#{Pl@!B{X!}p1Olmb>v%KIh$@w%inEP^wl$KWJgZx)}av< zduIS5&M*0Ua> zp$0+61btcfWI`6^fPc$tj|l8H@wW$L_95p0G#;y3C;MJtaA2u6Ze}y(;9XebfY%IC zpYrD|{j0~|4g3ZcM1L#FRioz>V#ci3TK*5C=}E?Im>U=n;0a!ir~0Gr?n?7x@ks*l zvD5Ib?TWNC!+Yvp1)~%H9e#b~Wn**8K;9rpEt1wi<^d0uZy3WgPKM8PEd&pSGnxOP z+@u0*0D8_649bkez_=49>TMro%2>sB?`bz?5MGP|iN*v9WFw!ieMI+vcYgo)9RvFH z6SNl$u99W6vom*hyJWO_^ch+%<_%jjAC5=zA%!$sy%FZ?sfA^lqX?j*!e~sX%g*l) zYMAE`r!qfzI78m$Bo$9n=-IimH{7!q)G#Ev;_vNl_NI)Ys1kDZg(XE#-eq$lWv363 z2XplA|#|>y@!D;^=9Xf)Qk1Kt7^X|MJ%o!W;RA%nj6&rafwNQ z`=&38pqGQ&4LmKv_-@^fC6vaY-jF>4s2^u%cJZG(J7G$n{{8uSnS%<~a4=Eygw8wq z<27VSbEa^qNe>k~zCZ1YNIT-7x2DcGKzZ5eg$9iHi8H~b3QKLNy`^23jUV`EGxf36 z_^0AX(=7D0s!OmX6JpY61JSYb(c2Ssczs-RplVZoqu zV}R84k+2-^tTLSupkNeuB^INWn2^0-4+w}Ryey(Va28{NJ`aL3#fMwKRywAoTk37< zJxGzq&jz%y#>smC8&WxnEh1Nlp*&>nU2notWFrv6b#n3c) z)%%A0qTtVrDh?Utu?RS+ZriqDA6K1LA4qD2l630AnVu-oC=#q#d_PM~CHqc--#$42+D?o>-~ML*Nd2N^O5sn=sSwAm z78KN+s2L3!OKqj%oY2|W(trd{+amZB_1A>#=G`b6IhCSo0}^_9AVi|iwBELJMyqCC zq{Qr5I!@S+Jngd+IY2lZC;VT8_22vmUK^(?J^Q6V-V z&B}&h;TzC_F4x$PJ{6_~89yNPjTp?+!xH8l07j(Deh{p<1Ta=OM4YYVoVQb3mYXpQ z6xtf{ho1MYoW1>kku(k_jBI|TDDC;%3I!rjxuM?U+(u2CGE6KVG%GYX*qBtaoVKIO z#X(1GNq5Axc0>GxstjbbJMsAjWTS#*fsy{kc59D~$X@Tod577i;c( zrS{VvFrbxC4u5`yKfyZ@$Uz3f*tyaNC~L1h5rP*MfrDtj(QUjrupgVh2bSecXav^| z(zTR5)cQ8?^2ACKOKUN$y}jWU1b_sGG_O+^X4X&jXnGH`FBW)x*Vw7K0gXdCZ5M(5 zC;5M)8*QdN`ojwB*~Dm^IP_J&h=gAd}nX!|9{`-S;Kwb>t0)+K1Tdb zg$={b0CeR-#F*iR%2yatpO1ia8~?DN|KXm0D3fPistV{1h>U1#yr`ALOE+PR1kL zM0)T?2y}kQWY3p-E$KRG9L6nO`r6vKFB}oT_VGdc>qJh5^Oji3(vEvp>NFJ3MOsoE zW4xd*6&Qz6K|wms$S7mP+>y zolQ^>StW=s3Bi3N$3TA|;DeC*gd}c`c=WjR@Fa8HUGIU)#t?jV+)$f8#meCFr{Aj| zwpFajAe@PFqij+|OiW+Tf)I&}i@k;mM`P*@F^TAyY7(6*yN7wA0@|t` zYuk_9%cVMG2kF~}q)qwn*Y_;4r3}8o&hYTNPQ{!`843dZ!`QAy{W3$qpf#J$PdZE2 z-uvvzNb;+!N406$+xPLCO{J#vgd$Pa4Zm0GNU@(Thk*5Fhsp`kGPFx1#?U{kq5v&T z6vObGAKLi_K>b`5?rG|}ca+7l-DKLoy)|hjWE~r3Ohs-MT2yGrVEse=T2mm%^+t>u zt?O@q_Suddd~kHbA5Cr6Ks0YuJ!uPvBp+(eX%R!LQs-oxT_}|Pu!wl5Z8nKEw6F+z zI}^T+#$mX}>EE+xbDD(STsbOHr)rm>a)^vJ;0+>|0BxGNi@IkRaJG!?LxI$)uVr$K zXCaOBSo1#(ldyRcyfodG$F3-(0OG_)UvJq?v1=@9T!GD*|Ea%RYR#%g;`9ed0LaD7 z74Z3KP{~_3CQwgd zW~j*zWuu~y5mW){SZ4N7Z^+R@`kTa+>|Z=##HitsW6BCf1Y}FCnB}^t-eTlc5tXKp z3i05ghwSWZZ6Qgtk1R~jKWRM>L{bd?2%@r`Q{ma=5wj_rspB8KNGywbMvILPj3a8AQH{k3@anGgMyAk%$5S(H^}}JB#jpA8ues^4x-^<0wN= z6cshx6`XAw&xpXd7WU1}#l?%( z7#+1xMIZwxbAOb?lY8BZ9$-51CNQ8Grze;F6e;R^HJkmOd2w}D`l2?B0bzuF$PSy< zx{trj+5w4E@5$yMn`{)};=&hrxeV3cMBnCrTzHnYcrxIirmq@6fea5rccI+ahD(j- zy}fuaQ~$MeR*L!@i%T?U62HPbQR^?DCF)FBg36h$y|OQy{*f|SIvzwU&kOgT*TT6d zKVVPD3m%my^E>=y5;~`1qZBZgoZB3zG9$&&+e)c=YVKt7T@92;tYH0ZMg;1Z~5y=Vs$!#q?BmnZ9k7B7hI*Jh>eOIvt%I z9=d-fiX1QYVdN98^gd@3n&6jn+5=`uL?|n5ZPTWW>ehG&8iJaA0pl%ofI%z>@WB!g zxJs1llx7v#d0iE^9xV3@rT{Gmf`b#tq6be7>f5`wwA0)pbqx(zrF55-AbB$QG~eS} zV}>2OI9hXxPL+hbX(W?*ZjL9>ywFx;-brlCD??iPFk20e^}t{ ztgP(6?6vcyg7BmZCd@~PryB!;UbLMQZa*K^@D^xsO5IM=g=b&*5y8VGA%CbTH>Gq) zaJxtUOwB0xJURf7V25{yd!zmXI5U8LWxR!kbXtJEgL2$_3S|Taxo)dIm99_#MG=H< z`SL#VJ$%H`mpQUDG?YTpBaygIsS`0~fT40a3eC;vt%v)od|kp%P+IZ3D8hi zhnIhJJwJ0(`-m<`y3YKK8maT>^$%YtHHpgPXwd6fW=kILaX_#4xm{DZA7Tn4G_Y&? zYg)5F0U`H=;U<>A5}@7|eKBG|#o^f`P%)(Aa``=U>gD??HZJbvx|;WB836Je%hfh= z7|M0O@QTQ)6tuq=7ftdSL2jVHbFO|GUeW3p+*mjI1ZppbH9wTfChVO;`s6!I(>Q9y zG*||f2?odW#L`rp1kfL%t8Ixi6)h+JSn50_&}*tG9<~8+2)XWgWo6-uFDESD(AY}V zMH@R!bHw>zl%~*#4HaZChH-_IoU{piIdDrvnZfh~!=CK7y3hVW{GhkP;>%PMt3!9a zdhWyA{Hb|YI}&@yJ=trsN!ncjN$J(o`3LJ()uf14V)5cKCV7300-={&Z#RY^Cx*Ql%(Bu4gOehSPKctQI zrxe(jG<^f)HFfa)nCZuR>P=Vq8M=Reb38n;QlEDuXHoZV-Bv@KV@=^#Wzh{;@K$PJ zrmBq8=Cx6gHVln#1`aK$l}+xn7Tq1%+UKucHBk%rT$0~{5XsXV{-d}bbq&Sl|7Nk^ zX+`VnGUsEx76%sa>t9R_#SevuFc_o9(-lcu7v6#>K#nP!s}z>@Q$3culxd?Z?$Cja zr-%+DFVlPVvG2blXK=$Y3|aYNSkEoJeO0J1%VyQfYQ1bI0I^pR+;G6CGb}}COm#IH15)PChw)n{(Rm0G!9kQ= zm#6{&UPDMJ=CRbYMl747T$4@h3=s~^OP$*v@7BM#?6KuPckr@5@$rr4a*irx6*yt4 z9DJ(bcvI#2CCr5bpJow~WoP@Rc3(;K*tj;z38=y@Q9wegI%hcYqoJb@7({i=Tcf#|(m)WSyJ{E9z77fz-rcIW@mbGh@gz0a`XuIHId+u`uY>_Ycn-fy)L%4X59_75m6$>C4qR zrTsI%=krd*|CL6RNMGZg8kNqo6^}(3g8PEaB^!2gRL4;pqbnpdPt zvOw42@sABOc_u;Xy;Z_5!AUV2?}?95H#80iM#a$%M*L3g)gVpZF4h!-gjR7uVpe4H zu3eUPj(-Q5tgyNAmovJ> zn)L%2b7QUzbW+4K)R|JAP-Y?0s6%l_N6{;bOzzRf!G3T=*G~d2hr;IbiR$HKYM;a5e+!T2F;t7 z1yBoQ;DZ4^L*P29t7J_K5lxzm_Q+Od-hZk4MGG^tWj}XZ!T$Bo9CP>YpPB=$$=U{r z)`FFxlm6fS8)B}mDydZVf}ghA=Au>LTfR@c^`37_OLHr4YBRuBvJ^|nZE38?90+TMT=puZlj`;BM+mtjE`Jh=Q z+(hK(lU&pz_ah93d=tR~(9~*;uhp$qQt$3`FZ}|?!_^UY02kGj0azVVD8-FNYC4D!gHivQO`+1I7KuRwXuQ>!VlE15PvHdv4@jPlTTh5((*Qvq! z2`xr6ZPjrr_rX8YtBIH9@5%V>h;)i!I+lc(^z;A55GZ8;g6T{b_~E|@t#CC}izD%t3tQ=?jzz%h$AilU<8zoZQ*>uHzj&Rq+a5-iNXzn_-I zfxA5$x3TSsH2@&BZIZn)C7?{ePMw-|{ysAH#-TS=zqMWj0L$Ub;OJcp>fNW$*aZu^ zqOTYGuGJbz)FVHEyA@BYD}il#CPNEu5ZDq{cqPOm}Y5k(RRj5&L` zM<=vTc}4#zvOgJn;5^i--=1-%dy3&^Q=-G2DCRsdfmA9Qv!zYOE z0=S)+JRkC&vk7Z?3Ib-C?w)sx(98sjY9a7CsaS@vD_TWz@#xkXQG8~D0VfCX3DPOv zQaFvo_wkOlxH#sG{?%AOFBXb|on<)%!V zH}BrwxeC6IgLxWMB8PLA%C;Zy0%ke``JLtHuMmq%`OtZko5JMDlf_L2>H{OS4362q zD5w&G=94OAJ?QG%SCa%;6C7*x>dnm9%vw6okPHu4o!WbqJ1Kxc=mrWfC8eq(kfYHw z&3*Qbb`#~$mq}l5BR{)7Ain<94~O9}+?3z^TSoJf$(XXD1qBET&XsQrTg`T~j)9L~ zTy^6U(Y$ZGaQ6EKcyHMOMl||pvy1Vm08mD`mCW9^C$3Ys_{^|U{ax*J1@i=KGfMhI zbQi9BjmSHxz7j-D0*3)hzS#G!YuhV~%?L@(@F6}Iqpa5wVB5+J7aBz}H60zhJ^`{t zZ7fzVpDV|EERVe(ho+mXsQ}=S?U2~`_nG?ar{UQ~$*J{?HVrFjypd7__zbp%mQZkjWdf}bFWvFvA47N0p}jOStOCLW8vKa*Nap2zki$%mbUE9 zXg9HusTfqft~7u9{tZ{(zwOh%zcQ7lFDkC=`-K{Ths*@dOexp&SNId;aX%wZT)b zj2=I6;#OX%7+&z&1^_?lx4Gm z9bu1_#h~4I@2eKa*bPcUwCG12C4v~{@}|V*&CdHBVIdvSBn2Awb1(M|btP}fS0oj1 zTYksn8zcns8C}FT*CCQ%vbOn;R-Ia#GN3UAx`cK{MlUSM+)|=jmY* zLER0y`xB6OQz%|6=>$riD=W?s&W;eIO(uv1lb^H)sH&)E?e9}?3R4jJSb`s9J0hZs zRG6YbfFBrSM`L(`TQnVkXB3V9hzxtNr;6dzRs#R1XKUy>`!+;uZ8nwYX*0)z+U^m6 z7%{{jHu`1Z6~&DJlVeF>0bw+znBV1BR?vM<=Xe~Ykv67yFvqVlWcTi)Y<5WQxP-2C z7}E*n1_qmluveMjl&q_-FUflthAZ-qseRP4t5?w=b0mzLw`@7$)Z|T{CQq5Nqaz+N zt>+ux*6Pt?3d8dc`G~#!qfSsC%irq=S&VhcBqwKmCK?l-{}Inz%2?Kx%=VB_)EkG7 zs*=ll->>#v4B|3{YX0~0F$;MpE*P^{;?Nbvf!cSm z0E8vS77Y%Q94Dg){%E!R%8dF$1g?*FH(w4j~+g}uQ8*o{02;bkAh$ExR>7y(Xuo#X;QMF zO&kSK(@GA}E^vlL7)!pXtegg6y-LS5WXF!fG&g2{cj`2qOMI+hqed}YfvNl~XP z83{dpf_B~YhSP14L&aSguLZnc=Z|8RW>p+sxNNQ^Y9X)da3K1hrO)YmnBiGZ{wUBH1<4qS(t`o zPQA38jyDSB$}}L$-0C;@W~gz`ra#vRBbh)1wDUXZ{Sd)SFrSHR_!h z+M+PByRoBdtJDq1HN_d7BI;q6G0hko#GVk303Fb~$t4=cAaeVVY>&mA3&cq+}Br|G$83hDSsf&nhVQp!74Sx_$!K=3| zW)VCDkOlwFd;L|_cxQ`#_LO_u%PaaY7c0)JDCQUE913JQc>&1o4VKu@E_bquWMooP z5U2|)ta1HhpJqVS735=CJP`rVsQjF2wOnSC`nMo30^;4dYuCe7!A`yX)A7vO$(#4^kf}hCHh@WNW#EvI>E45R2~s4%VT4qc0_pL(kL#UU z%)|nz!WMknt@c$bktYC5)P8mxw?w#qj>@#G_}#x(49fwETyr&`m7#LnKZG?tZU>r( zag_T35lLvxWyGAfC00v(6hOF}CgGZd58Q{alEB|o_~;o~pni++F;9m3!|);SxpFg>#!B;?aU2f@&7W zhe>l^3Z8h4y%7oE8X=JPq>zY9CoA0|>st`JYB-Mq`{Vye09EG59Uq06WNoBUS7Fp|27H z$<;=O7^DX$8&}x$yx21^A-w(lpk`xagcctC8g(0-?6&`j5iVscABLM0v+3BY84)%C zrn5kT-YA{SlX(h$YR8ZUZ`&%e-jGtKseoI3`V2RZQU_8Z|LVN2Rten5`NBLY@M$?E z6yzA<@fHTp_J0C7D|y#kD9axQJ!M z|>ymooM!iG&q8X|BbH6Vm=2^n3cp`y3L%ztA<6 zbFbr0p9&?^@Y^U4&S|t|1dsws#77J`W~1jDsDcfT{JB(4PRKkH-*-j<_B7oD$|{jG#XL-yWGvv?X}%0n4K_S6U-pC3dAj;kb^7@z_r~2M|^OBo;}0m}RQv z)Tzso9_2NU8vTPV{;bEZ^*mTRc!ZT-t-&lojC}z&((c_mZCvr_t%Ct^+l#)D?xhj# zdk8I@ek^j<0qsHIh#*Mxxo2U+`pr%_QBvJSpwv;Oocrq#b3)2U>qxk9_AzpvCg+kL z1($cvbvs=MHKm}{+^*&w0m1Uv>K8vzx-u;@l3)NlhXuD*4W;@s!PyG6fXpIZ6N{hq5qudD z1W}L6dQx--;FFE$Tqyqxaa$ng!fhDy^Ta_Q(X6A4Y5^qI@a;^@!q~~daa%TZ6uCgY zCDJ(h5RaK!p`En-(>d|7fR=_c=;pyv)G6xxxUjf7>-x?g=7db2uxdb=wV+895+dc~ zt=IheGJtN7$!!BFGHJ)-({Vh=b40K`-rQWqV^?O=n4}dKtJCwr>Mf6UonP90#6K$I zDloJ2;tvRLPTSU_>yCiRw$>%Z#j@`XzaYU2XI^sdUFzWD`{gzkxb)28QN+abw~Pbr zz5xJ=B2fH7q;VII8KAp2N&zR)>p$3GPzf3ZDD^;N+U2PcXTNT=y2UgY=e0rI?EW=B zVt2_73M;FZm+fNiy)Viva0nfQ8nBUnl!VPsU>jziCvaVbpMC$Kc~piu0~564QeKJ4 zIjW9|f}^tXM8*YbY8Gr*bv30=3XVMD90Dhad&7=jrS+PmHbNzSrKWtkcy?iq~|m%F`H1>gG|;|1cM=S7cK6fa9_pd$dl zeowz#Kyhb-sfy@tNTTaz7$0Wz9XvdPXC^MJiS2_J`xKK0>Qfon@l8do{cCr+2wvu ztylD7WEqbi%Vr+Beg6CGP^jkVfaxs@dJz_Rm001Fl6#nC5xlnM|C?bTsfWADaz; z`UIk5Y8MoG%&w*?q2U=SYZ&DCv*=wu4PA!O+NI-~vNL=e#3kV0w)azXZm|cE0-Z_| zr3O1=1C)w-vzMd=o>Vd%iG7L~{s;9>t+9XmraJUPrNbfmM~7*<84%GRJPtLT{PPql z4&oRQcUEbcMqNFFJE6O)I~aB65cl9;WMh{=x;VY!$-lIH&O;TDg{#fHElq;Bg_~ORsP?o&Uw( zYty;&)2`L0)NTWeOxl{PrtOmIeq%L2-DN9V%`xYjnk3g}%rAe!F_`-D^7FDbP$fKY*9_j5e zp?QlI!sF3qiPV}`4u|T8ZeaD#G0OGxR}{uF|5C=WmGi9aUsm^ZHnlNjnBi1aAOYFh znDFwp!iNj9U-IH>a0C{0?53YJO^f2mRB{r&f2|Id9+DneA!Xjg{@U7_BfM(%Gd?f! zI4O!a()fR0>Jqep9ZP%*^dU{)`IsZxS#?l+q{-FrBn;+`?AfroI2rm`rNbC^9giPX zNf92S$7O$k?3CXN%l4w~@0D@FwbNu??~DXv0hi-<_5P7Nnc-2VQ)u6J>< z4JBt89jVaxvX28xj+&k$yk0LQV!)j%qK2SDNzN{+81NStwVDr{%W<@AkX~R=XwoXH)0l=E7yB6qzH2{ zXVf8#1kBA_h^U;mEaq+uw1&ji*`G*hDVEF#S%h`rO&|pGet%!o*T2Vw^lKhSmw*T^Zk&V0&iB|l9MZC1CkMTf+6u>qravOmVzXWR#LJ&g&G zH7{?s4|@BBP>V;hG^etq6cTFlncc(iYHQf0&CYG{)auto944sgk|k6i=fn4A*8=z#<%fmq#Ph6;v( zq!-3W{Ame?7piT1OQlSCCB+g@!0p6VYU0A^8KsSLVeKj1e{x6CjETzwk;LY5OmA!l z@BmR(Q5j3A?{nqvbECmYOo{L7W?ZNu)=Jfc^x*@>se(ud2)uJ=o0xt^q2E()a_(7V zaeqO5PgP^FHF|M<;sBs>n#iiemy2n{e%F=%sXfs|Q+GQ1WKO5A5OWvqDM)%@*S4p` zWy$jBL^c%gvJ@1kFt|OdLe!5(MLmdoylGrfO#Swa^M8FLLn)+muH{S*i}7IU*CO_Y ziee{%BJv7{M1L*jf+@H6O17qv7d1DK<;H zo9$7|eahomz*;WxjeC;3Dw2F7rpgoc^y}Jxpzm;_sj4Jznn8c+lm{A0xrP7&&tTRh zJR-}V{kd37&UuW;XJpxAcFX>vutq|FJV?1iha0XoKo(>O9#-qWI*+=T)$R=AhGN+v z$qpqJFzWJ0E56NQ#8!;LNDES0(*ji&!kA!*WCf!N1WZZu&?AA{l%ocq96fbyLS7w(7`j$ zEo@FIGfVH(B~rTu&SZGi3aX*L+UnKnFFT%rLJ=}BXL`=*H$(*#jk5;*4J}>AxgP#UeabOmIBJTR@N?4 zY~Ws1IKuVaOe6&Shi-Uy@ip-T0Ym|-Kw;3C`WjV8W7es$-s&uNQ~dB9udMHnc*@Al^ z^R^=p9_co}=@OtkF1wvb!(lwKTR7^AQcFZb)J{Buf}obIT4g~FDja^2bBS0*PSZsA zL+8O45D6{$(tTsdYZ8>GAGzJiI0X)#WlO`z_fJPbE4^1|lbf=mfHbPtu}}MlZ)r$j zXk`+YzF%}1a+}a6Vlm@ShPFdS#LLxc-qc=J4v6b4+SAQv{7#E0)sX%D*Lx7Wc1A?x ze5s*476_U&C!Vn~73sQ?hX7D1(_kQhNtG_nJrUms(jbC9=yV?Tnp5v8v7&-6l|Tz7 zr=D-j;U&v@L$AOMjl8~^d`dvI`&n1h-`saQeH)q<8A5nB(`(aJc3XE%{*K3Nq@H?| zhB){Vi2w*Kfg*RlUmbRogADKo7L1)h;-tO!i);ffmpYH(mmbMA$r$da>wBp4%(g+7 zFda~n=d_JtoJP@&5@TEIF892(=L{G!L`GyXk!pI2mAvy44S}Cu987ja(t3%L+NrnS zZb0HNl(-qX0MX;F9>Hxniwb6}(e(v}S)myEg zc01O8dFRJMr3|cfk@~O9_MoQ#@$^Cgce2m2#CGh{psAAGGjw_@v+>*)g&9-#yWz&wryAj`)=h4+@ADC;$On#{#n8-a5J;0rN?)LNsKzO}4j+9E4B}?oAA~P*4U&92%&n zcfiiJcdjekDXt`<3*r2I+-Nn{%Y&03{wb)f?(V*|$-asb1YqIi%`xXG`8oMe0*_za z?sn0X0LlUr8?$qY3TWsl*<@R*&HgjP=++xDy>@6|Qgkc}QD(*;m@k@px_xSql`i=K zL8qXyA*+~2QsOn3t|)sKTsUya;>Fz<bNeG7CYWHM=n}dx1!iuj<;vv$#yp?ggF~Atu3yuph1fOh z@!>+q)+0w2o(#2MkaW&a3t)6Hq^4UwzxM4wjBMbTq?r~-H)!xxhPE9TQmx7yu=Bt;=s@Zw6dbgjjTNXU61#e?Bup~lp22WK zLl&31o)6dZ-9vgxKWw;#Z+E!oh^KP>NyT!icqb5L;s8PguCN*8ngA+&A%%t#l5XcK zihuS(AZhUJF-xWY7c2#sGJIgM|Md=_7$&S{Th2Z8yWyDJk>bGy=(8Djs#2{h!}cmK zwzX|YenC&+W7n;D+6Kyh5kSetF-o)h8cK15Quy8`&sKa+h5#04B4nJC2JBaGe}wnq_pEd;|^9~6@=_<2Hb)WK5^+g zXb{;#NhWjr83cbiG+{2J@<{wab6nrie1Oy_Qhb5jB-M?z<*GzSfYnmMs4b#Ie0r zRAjDA*f)v~zQk-wHEGEfVt9Hc=kP1RA~2)0Le*rPlvGP+kt6 zf}(3PBw@DW&&3$RFjBhp?AZ^Kb4Xg-2z2SJOkyR72w5*Gcg^i6{%yz>OBN(dkSI@i zLO33~R(q7Oihf~m(52Ljobl}rd=Zidbk&DCxFmA*BuXMUvS!dk@T;gVbf6jjFdq2N z=ebNrv9cO=nzHX2REa=wlUIHCTW7VVOx|))X}cRj!HEdA?#s;N{vT{NWWI5-vb0o$ zs-^_~?2}{v-cdK<%Z6z@Ng6p+6^WPaQy_}O=>bbBlT?OP(-=aKlqu6-X=$E4W~wOO zy;0Mc_-1(4bp5zC{THJ;XTBOn)cgGuU!@+%u!tkkdfU}-&J`svJ$m*y^(Z@8cq!}L z7`3O@@O!^{ws({^T!c)DGdD#sP^JeQlf^~jQW~z+b~olW0Dx0yif+6h2vz9H;ZHVF zoeAwoS|1tIwoRKf_&yod0tR(bmt_mY6S*zSv6bsQCdD>t^4B$dGDZfS#D9!I4;c~V z>(igvuwUsvT0E!);NbFhpbB#rzLQ~_S9kuFB8@-H^UZ)1IIuBLybcA`W4VrmPW6@w z5P>vWqF98sLg=8N5Vw3z$qZ4Stn5}I_P&|)N6Wr-4&eNtl$X*msPkxl;`A^}%jGvW z)brIzTu$mvtWXgKk?xl$|4ipGR(%NK#F|zoC=@dauq1KkWr`=r4)n_x)ff+d=p2_k z!Vcm7uE)Ss>zOkPVp|-}%vo`|#bCn^2V^{jT@@0P{$m9dbH~l8u2vqmL5Ae{5HRi0 z8SgfUaD*sN#C>+s++9D45q41)cFYhZB{`6r{EU+^YR)Q1G~s1NVLmEb=BkFb!Jw&CCg7*L;-Yh?HF}URI$)pwe1LQ364Fsw#jW|_d4f!KV3~|~e zvcO%#j{AK6R=Y&FMJZ4KKIatsAJ{v4eZ^JMKdE*0P!OVcriM&eO~J9b>v)P4+eTw= zK*$PNKX`C_&vIDVK^P~(4+yA-PiL!Oba4sV1D@4eC%IF1DqMr?qBnbYzlgHc41rVb zxp(5fo1I+_ASuHt*uvFyN*Kr5AU>YXjM=~#pze)%(_!{|e*svj^|vNhaxD7?osY9; z$X^z1;Ll;xhC9wE&VGwsz@be~-=YAX>5%OF+LvPc@Izt`fZM2qQBo z9cZgWyYeRVhQ}A3@1_wayBcjBwH?Ce(X{fp3OBy}!k|!B{6%PXkjM5!RU8=;<44-Tqb65F zsV0!1CM`Wp$=yVi_kVGT8<1PYux5q5p3vbph@t3L;r1K!Ah@aVg|!t6CcFa;}#+f{RiJ z%L@j^Jflu@xi=CYK?MWK4yDec3hwLr1p#V{ zh19#E;QdcCwF9}2o_x=8R1OY0^Im=` z$XSE@fn?91UhFryX6q2$kZ986blZ|dygCh%u z)T&6sqA1!SI2sES8T69W3Xv~k4YczeH@*-1Ve{)0$Bln6;>sR}O|M>lJ)%{V*M*5^ z*-H;B*_b-<&VdoZXJ$ujszw?v-nk8MAL0+m!N?Kap%K|I*SJwdz>#qcp4Bnzb9li)V66*4 zKrIwpXxE1aoTTiq1e`aXsw&J&EP{SZE^OAqA-y@*{3$f4eb8kIQPy}f&-xgcK|AV0 zv+?7n5E@qQbC4Ob^XHv1a^O>UftX(aQ|)r^?+zWt6LF^!SfdrDFi^70^-!X$5`-WL zv>melArW31e9(N>to;oQkV{V|^6CFP;DU{4;n@X72QtScOyWt5t0*w_>`x zY-auWqRziw>lEhX1UI~YcG8p7P5O^OdtxtL3X3}NO5gf(O6eE(;F5A8U=)_d1!wi^ ze&t;Gd1z?T=wG?jkQOJ%phHKEA-^qWYn8rx>(`dEW|=)<%>b`!7p)T5`=qtw71IQm zG`zcSaP-~18LhM1AACIPu6=71O+?+8ZT8=g_;sq%OV~|a&6{MxWcYkFkxUG5+i4E* zqV&0{sQtD4%M+Ua9)?ap=C+HJ!f!78sNF5<5C|lyGc0f6<36q< zGS38iHOk-LgW6hVw296l8wTZ>4bz3Zc)^1sW_6|YzfITbRJAakx-w}pR(*VWWmQ!X zc*_1Ls!+Dgh)a+{VWRgVa?D`7;l&e+$SDKe1Q^WXkAfxMxve?mT#K;#zH)t>b(QQ(z_!a^*tyz>3^onOE{*dJF|CEc*iB}c|%*OKwpH*HVf+=ifxp)Hwm>G&7 zZ>~u@1wovUMIcv9ee!ucW$~y{qu{R}eyH2rpi#%)`pmVVgwCWL>gds4UHvb};Gkf~ z08|-}VdC#{VdR_%G_J%&6H+m4_+dsxVK4I3a)J{UZj=>)|BcLxOY)8VgQ?}IL}Ymd7>xLl0lGp?a7~?kjFrQcO0wGnB&p}mI+)n>TE3k!xtBPq zpg^DGL+@St;%avaBVUJ|JtlZ9^?{#bmTI%%mL^2Cw8k)m%o=J!LS^SyjVcVF8vx8t zo%*(+mmWlbVC`%xI5Mg2iMmNlPO=54!wWJT%Hirk<><4OB=i$Sf+tN z=n*4^`&ih70pJN^r^LmF5{L5=Pt8y5EQls-6`@X=Msl-)g8WTZRC1)f&=SjH8L{)v z4zLovHPt=#lbIQ>JuKYaM+wyi7;wp`fr8lZ1DuOR!yBce(=maPjtLCY02s#!QcCabrRSAr)tCMFOw}nO1~1C==in1!>RD9bae4G|zwbE>un;6i zW#_chDEzqL!EDBU6gCSp245j#sv=y1fUV6+v4?~fp(GQ=GP@06f}pE0(>CLd8-J}a zUXeembXDukXMPk5PQP|7R;%e;>>I<@NS&^RuuZeDH!Al(BJL(>je+9y=vZ+Sd2KO$ zcXS*c9fsnH`To88)SWTWGC)k{h|^(zO2F0Xoghi!c{>|FP816ORJU8VZ5y6ke(0G4 z!5E7P^mINfQ7Czy&=+vFRl9Z&FcMRXFS)c7G96QG*?K?Wfg>jr)Tjv}YcP+W$18`) zTnwn0xHYXF@}8g*cwG)7g-w5pSI-`gDt-*vE{y_6yU?fO#wp71SFA}w2u9AbVM74- zUI&8-)9@Cu1jZ-#*Fh);(Ox+F*_B|cS`c0qPj zzfQ?RKwz;YV2?Mw&N7Z+u13QgF8?3P>?TbTuICo77al|5+LsNo08v4pjUx8sqcfh;-CgtqBiFA2JHZva;-s3QV(uYv1Ar$4So1_%U*yI64;T3Xo1=ZUCH7aW7U?yo?T=rLl?WokDYQ^(0i29#ItYxF>KG_x61C)$d$a2Q3CLQWJIeW_Lv{J<*UiukF_~vAODeEMVo1ijT!%7Q z{>#AMPvg>BTUj*w4iK7g=MEzZOMzMPddD7aQ`K6(s@nZ6_flNvkjKed6Yy(}>4=0j z!NI`{1PJ1x@XTlT`L~-)r%HU+QPt4|kWQ`1maZ<`QARlHQR;-$XqhsI>9@Wr-f z7TF_8^`CMy5Ut?tmIjm6G1eN=xub$uHOa%qs!C=zsULQ*m#zL+^(Kf8Pc-^P*%y~V zI!bx7a%Dg3ieG=jNJw0Oi-9!RLb+WtDc|$e<9z&rD3qEKgdV(D+|IQq`un#Ojf`b; zhEo;>MVxeq__1+VVs-q6D=4oBJS+CS{SmS5+vpgFNB5R(_+Ir98cm!!I7%6?Q~(>I zA^;C-0Z$WDZ8|3gzboF~AdjDJpWfz66r|nM%s!}S_>YH9%F1 zY`K+%AV*g+Y2$J_U)rKsm;{}=viPF-PGun8p&QcFJp~3!MtVjXk+Cs~43uQm=zlc` z*{jyxY^5=Y{Ir1HlaB#jHM}_HuEXhhSN#Qd0Q?lnlurGPlHcK6qPioU5TX!STEM_e zd$C)>lpvvUp&LB0@Vh*(3ud?X@DDYC)QN=Rib{A9G!}yAUnCGR;{ZA=ZbSn5pH^eR%WI~V! z)IsuT4_#6c>yoE^7}Wm2sHGx(IxXxUJP ziGXe}N1F{#=YQD%pGMNrN&I6rgz(S$p#aJ&BNLNjU1wMXBghsWlVG~-?Ag`P5lG_P zzK{O)>uag#Q4@>uK%-gGra`6W4Sk_If^8w@{6>@OF| zD`U!+&&-&ld`0vsRM>W;J$daqDUfyytUPUjjFoImNW$gBtGJfh2+us zz}5Ms=J=$GoSZOU7|>eop!;)g1>;+-Rcr)ExH8Y51bJ2V%fj+zTB^jq?*elayJcVl&$T zkc%2$dAbR6@4RkCk&T<(7K~JwL4~2yO+e=Ij2|u?7??@DDZK_2Ihs0|ig>Mb+=wbX zorA`dW>exeD%%6^cQhNbmmYR@+r)oBUENF4i`gAZlTN=Gt+&hdC2bKB=1gv9AzCOW zZnDVRP?3Fbf1>{}wfv<1R_S+ zwlcZ-K;u?xU|E@ppu0-PqX55Jk-L9+c$#>T04mH`haie@pL`R+!uO(eY;P~ld&n11EofcJy z+1VapSm-uF+8AgzVWrn-+ycO^T4VXMYws-JtLL|7`b0+)6a7gkrZPSLV|C95J;Zrxx zB#$9u2oIDXjA^Gu?4~yA8<|x?J1mqgVqS8+Yt_r&l^|7O(v3pL*=OwPSrZC(u2mB% zM&@*IR0QSo0SmY#i35UY&Gz4|kTycbU&?qr2gS?0&!cVmb^cr%5IN$Y7J@8B!R^_FisF z#q14MjDASc!yLV@nRC~R_aK015}?~FOcJ<_L&^W(V+S0e@ z#C@WqLMa_4H_jFKj<-%IK0NjEjeEDCU>Wd^(%Zgxe^^*Irl1Lc@*r8tUMM#1r2_Y|PhUW>bYs ze1mm>(ucj@;j1QE6#{73RWoy}MPP)zQMd$mlXloGa91P#?-H&AOBw*OH4Z@la++#D zmr)UT31JbX9n`)(T}{`1{qAJ=Hk(&T=0ATkACG)bJV+#>plr7zoUP1OV)#*xF?KXG zX7{RA`&rzhGyx_sr51{bGGU)5-NEhJfXjeFvYwLIWoET5$~de@zhW)=TNFRT$boN^ zyj`K?u2Htam>I9tzAKAvK|!-OZjAc%hLLn`zS-sS`tCh?Jba_#$JuI06-m5i>0P+9 z_A(iU!S1j#UEYf;1(Vlf49NL991~*(X)5jE;lr8&EN%Mzt=I1^8@_6^%lek+_;W>5 z<1~}_aam6d-<>#-)=_y_?g_tmlc8-gm!8cm81`6uW;cJ|j&^<>Th46Xx5VG8W6M6~ zrt9ba`}J3M{Vx|hTkUInC}*VljD6wB#pp%xv;UT zd*o6=lPwe&L*?ffDOr5)V9evTwv8hP(UZ|yON#;jBU^@vagQqKx!@VT-P%=23!DpZ z`etm)>P3L03dO0LA|M`LUMk^9QQ)nsI9JB_rr7!BjQO#hO_}~J+Y_ezl^sotl>N_w zgybPr?B-&;{bE@B>KD82Jk0`=1t&vU^7Px0R81bCEQ+Q%c*2TQbnD)S47EFU9I8KBA&ume>h_d-%+?>6nLUWCm(YyQ4`4Xs- z!(~W@cHnyL(cV3jI}o3gw1hu7&2-&yR3PRWEc|RJCigGajO3uTuV}2lgO7@02~tc} z(Z-akE(0g!qU#P_@pxjTc9(^W)3DLJ6(|TFNaUHbl2(OZ+%ZnunIwok?j9N8#?X&^ z;$NKF%dl=HW6LbHXXM&~{jGQkAihog_>F`?EfxEIdgR!~d=Znl*%#2z9LArX*b_Ya z!gBa3Up&z%MPD6{@W2OWY6nd|g?IEpg;sL7TaAOOjR{KXWFB z8u`x)tt|%>422~DAR149GUoddsSrN;XwPafwvFqTce9|etdE%Q@mfC;$cIM3X!`U} zK$kw2C#IapPNg-{|MjUY`Hc|s+2St;)8 zVAp&>8Ym1KxBW1T8CBz+p}E9@u_F&Xq+PxPc@8JouC3LWX^>&Etx`hTq_CkobuCiX zL4y0a*WwO3(dN#c9LT~WL7MIg$u>b_Bei$gU3IJRqB0O!8rXS@m-~!mZECUWh&z4Z`4Z;?9E)?b)CV@c+kHn?9OYj};B3XPPcUBe#lhkvhB_x{cY` z@e|Le`tPRgwFw9v8G#MXls>y-e^|!NZilzC)q)3<=~lXU~k&MHf~+386B25Np+!9<8>xg0UUIAL^!1ZcxRg zxhPHn@QoLH8*zA}%y;$kZs1hMxDEvexJ}q0>e-I6^AT$OB29fRiJx}%9 z!r?13OZ_lUcn?fLI2=x=Uq+E*(ZWEMi$lp0I4JLf)0BVLGIclY%)HUCcrmliAA9K7 zViNl@Vx~qn!ImQP>C;1;1i$8;zV#bAbQcZJc?wXpcH(TnCc!9>G0T%PCRMs=r2{dG zD4J5{+le2*li{4X3a8jByLWkM$*wpW##bCzNaCUSF%8DPM|5}{O%E;cPF?fU;`Igy z0A#zdTAu2KnY&FIFQafTFDvsR8IkkE`Z?sv9<`_ab#=q=w>ZbpGE646>n5IErW+Y; zk<#wmq6zeeyWe_yY6WVSxrad+{R1RQa>I^lx30y`7tfv`d|Ski)J_0KV;;hn+JmrzPy6I zZeH)n49Qa5n$id7LKAZttqu|LaRtwV|iv?I6qJs3=20NbaVV^jE2v44qPXun?t~&kfm+0qd)dAjfFVl@c9&i~Qh4>N%}BrBnj-PPAR2+`Rf=$Efyqe8n#5eTu1oHm(mqhIA_um=`14nYrbmb`wuM>^a1TXIl2n_9L^B z@SU5&y^&E){s)g>+nzc)`{=pKtE%o!*8i0mqBTL=`t(8mjmm(3{s~1{3CiZ@>pNxR zz5T=Y*H+-iV%>AUb<8wx8lCAZVXz*v#y=DT6GL28&V8NjP<&Bhm~ihnbxSUH$7uy8 z^5&{v>I1&+ACt`a6oa#&Ll^Rvu*>`%SA@Ds94Iglp9~o#My#iQjAE@5>EtLknGvQ5 zpZ+2@JdHR{a%jAq^+b$7jP)PU(EkKH zg0188c`|@~`ZRSihhPf>Mv?=0)q8Yj`$b#!sbMoOLtCs9BIaf?e|&=?pygFxvBSE) z{qHTD70`tKk8?J%<}HiXNKBLIC06)_J)2)3I~^Fwg27n==9=}r+R6i3IFg1{t^^c_ z>SeD2aIOye9;2AHT+B~IGdFY82$eBUZfiZ|rar5zG-r{*ksvKqr!~n3fz%#l-X#Ad z4Ji3V2WCCv;)DD5-R$hH zqHP%yHSzI-(Yax?Q+c)5OtmA@L^8X;iOE437(?-Yx@c8VVk<%e(u189c3*|pb#?6t zG{uc~+==cm{YP7^36cNy-fb>c5WL zP50MUHKbUS7XhhOgJP#$;W(DU2RT9>kt{IHS{tc8U3uPDjDKwA&K=3IrH{H*+afPY zleq~hg*CYQAw;}MjoRBPR#ko)TWe6^#51+R@#*Ped0{VDYd}CtP6WhqAWvopDe3E& z!RolN?A^OJ)@>cAAfBEv(~hb~5vf!ZY^nfi+pP7(EkP2Zmrps)RCy&j#x1 zy)d-w<(iS8S@ds~A?59l@g#SdYwa%f zi<}ty;%t)h`4H1jRd#b9I<>gn$D+3{Zx)X+H8$S3dfhoL!a9rkzPGp@692HAKt{Ts zlK&q-s<5HUx^W1!2typ-b8IO=+GBM_3xkxSL0@u_DtdD1(KOb5|DNLXgJyPAy@pn= zUU?vKR4GFKO~_n9aM-$5S!;r!a*M}srV_a0X9XGGIAAjXvZX1x2jEFW>VX}Hh3M`% z{HimKHuwz|4*1-GE)=*xd`@^=WwB!n-6kPA7K^B!p^o5nL7T6SL@{DC(9_lS&X|A-G@DCBePaPmAQD9d0&ALs3 zh_dW6c+eoXMTJNG{BHIQ9U=8Tf%Tg61T6IXB0STUafK$PKenpE3%8j%Hhz@+mxer^ZgD<)vZi-%Y* z_#uuk=gx^E?EZ-+)EY;FFm-rvFa5aN#^&p-t@Ca6Mz>SkOwUR`UUTo`i?_F3Qzx(c z$ggeNe)Z4ElxplS5}b+bAG^!YrRteEI#-U5|U!HT@2GXG2t@G60Ie7}k#=Boxi@NWpuoASM~FJJTt zN@bY2s}FZ>Rng`EGMj6=YSlfYzVH}63uhr?BY7W-wR}@vZp4hin};zX;fA@%qX4s+ zd;%jeBoXSu$v zTNN?hKL`@(r|%dFgsgBkz6N zm`?xhc^#@RE8f$YL?g9_;bSB5tqAA)lvP)sQOhd|h@z5}3`_%m^Uj@xaQ6QL11453 z^?pxeBg@Dnom#({V(aZx0&%vB51CTi?Iwx7{N1~WycfZYhAn@1qq+bfuF_yvzs82z zI`qI&su2$2`RBz9rY&dBQ^mM%W^e?M)I zY{G^w!GkEKJSL8SYHM#l ziEc=oY4EnI9G_l~UI{INIqy$U`%I_Uuc|2b$VpEym@Rd$4SeXhbuT!IY?k4O(8Wj6 zGLc67M~u@qpzH?xm3;~<$33~n4pG^WeGg_BVB2*Yj;)T}zq1mSPW9Uubow5EffOEM z$W>54u1#0bfAo=4D_&vbFxwR?ZqvX9yv%&@RaU#Pmg+Xya~AY7*UYl0cfMD`@83Th zm<5uy<xP(P^G8E|cIIwI4|CBO`0WaWk6_9Wq2}c5_=ogYLi<1Ru@4#6N}Ed9-hndA;A z5mTH7~bYMiZjo*=Ktl0FPsH|gmpV@I{0r^KcJ7fSC%^z#RA z5LTV)uc7D{t}^GC#z!O_RGAa>#;||AOI0=f8c8g_U+K`y9O8%##$j%MUpJOo0};ifrnva9&c$Eu@cDN5mNyrLGK@ntu0g0G*Gf^UnFq zqL9e;ao?+H?R|sG{($jnwMXyK^t=DI<6?q0_L_AugNM#3@hiBIgg7WQKR;9wN&EJ< zIo$i%N{<%B#-bGP3P|h0u?ZdcJ&f5jM<1Rs-}k_j9)g50KQxglN-BO{WB1j&yTh)s zRMC^4e?N9|XGU`k-`)PRf)yBk{PeTbXn;Xa6X);Pcg!#rWsaBvAOu01=0qQoS$)B6 zHB`&@n_k&3j!nF7ct$^&I1_)RS2N|6M6w_YZa!saq<{_K&(_(+ux6saF7YeONSm{qJ?cpO)tf?7M zEMf>uyeaqiYEdf{Z@N|}rEV}YWNDRjL9w% zP?eK?PE9fpa~$dkz-|1V(i!TnzSbw!=L z-%Q2La|6md$QGg*Z=P2bJ$`?`0n4BL8(I>Rn7BH~J>UnM(+&(;?u%eJ$iQd>qGs;K zIIS@T+hH}FpPlc{NUS3vr|G(bFazAy@X7^0DN_-1n-IA2&-UpR(%dRW!tXf}C?mb2 z$=^~%gO8-&yxH~M;7F@rQr|gnnS+N8b)R;+Bdz!36AS8)W9Kq+HjeqV)$7-X83#=A zWSw?D6zfE^aiFe3p+UXWeNO)~K6`EE47|W7p(Rri7^)Zo6$`7?5e-WrkcAf~9yrFw zG^!hX&4p8d5-NcUHrZ-wf6`&4-GSzy-1945=QPa@TbWXq#8GgpaO(So2O#o25*&tw z&1pOqz$5FwQTSF+X8+@7DqRqQP8+ zvI=ES-~Rn`T#qn0bd8 zTu|9f38TZK^cEpxoLJZd_F(H8=m|#Tov6-O}(%U>czZ30`&?d6V z^U$H$L7Ug~VV(zJ|G8yP`@!`BY4esqJ~9Dk3iM=xkRPGfOOgZ_y!6 zKew=jln9-M?*l!e_sW`fG3VAT5z+|>BwC#%OQdY1Mje~ze!5ZM;lp?NG1IAkFy5Km zc2X}x!$;o=mzbO1-1K)h>=*`t0zm3%n8bfCrPJggG%|*W87UKdc+cu^CNc} z_C7w-r`!$u*o$Jl&p zGKL8J>7SC~f>SL1)H3!O-!;lAvxNF4kEpxv%AddVAdS+mzs%=<)A(KzL@pDmQB9;?1TjsaI z&3BicCe*Y6DdchIqRCjC7wP>d&uh4V%+g^U9o+GE^rfEBLd8>(f=wEJjkpld_7)*2#FC1p(#N?3g z0WT17>tG)$$OUxo=skjI;OInmpE`BQY06aTcL`STW_w@f<^%b&+{hCkg-Jx(SWI%Q z_xD@iOza^@L=%G9yS5)dXy@SZUnc+8CN5%{PZp9g$7HEx`4K#-C69uLWApm9QpE?* zWM(N(-Vf74-#=h+@UuC)J|}{@tafp6B)!2+^>?dTg*kZsl8VyfKX^Pf z6(`Oxfo>OG{?sa_b&~xYr{4ChN4((G4dsZE%S(Cb6tUEFBtyJxLLd((C$C!`H$R>~ z22k8h*UL~3B>Q3LZG?zskdvYbx_#RhD1WS$-K6<~nGg~Wj@UdC+O=2t_h_&e@XnRj zYqwM8`uUZqOvkmU=Qx-0bw4=^@jIi2(!9UAV*CC5B}SZjc1rg$2|Bmz8y}|X>sPws z{+ngaO&$czxl2+7@|nOQ{Hp&s?aaUwoAe4|ap5HoA$9Ay6q4Ygqhc5&?4^A2Me zR0(sDs8b=2)v`2D;A6;L<=SHdxF7yf9@yZ)Ss1zE|4Vb01#u;!Vni{;e3&J(?I~d9 zVUI5O&i}y83q}vIX*o-o!_hWH@*{Z;%_6nW*aPpugTIkog?{=w0sNA-p_wRmYb>*6lx`8?Wl z%<&$r_C0w}|6cxA|3s>KfdO93VeaLeWvUyH_k>BNZ~CJye>OhgBK z$)@9x*=5R6B&dDxLk5|S39xgbt83Gt!_T`9oHzrdZl^_yPJEj6AIZOW(Y$`;7m1D= zt{KD*1RP^&{Z80TaM6-1ZI6s+&#sIev55K3K_o2UZg`9ILb=GsNY^b0R^mEKZn8Ud zZ;fhYCAhq7Z6H(f#?v7@UtO7vSVmx`f`TykH43{T6YCyICdzt{{NVE^py2ic6A^Um zPMmo9WeOEFkjQb8A(epbLB-;fvM|&FK1_I_4l3tUg%}5a4(0?whQy(iJ^lQ}_08eP zJi&B*Un{pRE(H&knR)OSk%V${Xc*d)M^wRI0FnV&Yu^4ke(YFls6xb_sIl$$q~ zbReOZDr5fg<)<`q!c#uLBTMq+RZB3!#EBBeCdf^XT5&{5+$tGqMLxQt!-`0afqhaPJk7kOQ;)go84JE3n zX-3aWtl^%Mpn_sdUSHe9+<7t@qc2JmC}*03)xEJ>gAK)z)MkD+Uq3#%YB@VhZm`N!-LSB}gWi8>EiTicw)eQtR0WQpwX z71CGHxT$z6po#~1q;@?DVpThJ#4so;)Ro5|3}lQN>eTIN<#C}2P?VQ)>`^2M>fNrd zqaxzCc?f|8nywgYHiwYTpG*!lV!Q@i6Cly=$ln3o|Bn_xauQ?=qxk&m<97b@VH2yv z2y=G}%E}Q`?E|u*jGW6ph{_A+Pw6OmFQQ_U!T9oW3yQz!fGLs8FUuwkrbW{@ZZ&mZ z?j>Hhkcn1(Q~)wu;d7@mP-q zsTzb59?A={HqhAjb0oJ$Ty zlYG~_^89>+FeIC0v9_ZQvB}!F5?Zm2r-QL$pMu5D!5V6>kMti5XGarDuW zSkTuLef)Un{W@wQ@^`(g(I6;mI+`G-Q>Kkl)NMF4bj^1DI`uS4@58{pe{z2%<^l9% zUYE;^CoNWz8XFHM)UzlwcE-7`5OGXcsXN}Nli?p|znRv(+Em{Ih$49v(ZSqt?Eub1 zJY4+v4hO4I?{qs-vMiV}r4#V`k5)!Ecn2N}^!&&l!QgMN9rzA%r5MPcaO zpU+@x0EriZAi90Y9UQzcJ4XyfaSK2^5D8&nlU1uDZpeU|3jimU)DA)1mCNw~SU9kx zr0n^z*$4LRlO@uQ)D97o#A_I}4uZy8mww&M%uIwVr}+~NF5S!ROPf_aKfl9jD4P$$ zwF!j$hlcLPyrA}_g*LW(g@L)U|Piy^|q>zOil=EY^*5i10~ z0Inotm2l*2ELwT3M<#E9B3(4%>3@y{(QOU19z0?0ox69t4jS~$KhgdgN)} z*lIMI!(|)ufsP^G>KS2^%|8=ehn0`fx;F#u>nYM91eQ!jNL@!))(~xX*eep(EPqt# z3ohj6u!|%02;~SrNs5X}loj8J1= z9kd){_G^iVRe zf=O5P=7!qtQ0x421j2p*ERR-?@Sy-FZ<1#vQ0pbGy`Ow+_8Y^#ul^gy@9z3y;zfpk zP%JROwZ&lT*s(@oVKs~Ap*x_q2qDooY3NlPrai8Us^=ACd%BF9%%xuuQG(1sE?s(J z>VkhE^1R_)83pgswUtLSCZSegMyCedOFVb>EOTzsVB;8Jd#e7ra;5_qmH3WRH~wbe zE!1AU^^sB4-Ax@wgeaO5aXX%^ei9i^bR)Qs4Ab>*;xANB)N^l7r|-TBQ@wbiDBbfLdmGWUv^SJja>pOeYZy*l%~pp3|Jc z%Ma&#r3l#h?zlIzmA(`KF7W77XEJ9DB0x{@2bCF1z{LT5BN(LGA{GIrHiFNVO*XS8aL^; zq|ctR(kH?Ti!w5lcsONFnbpdLT!ao6bW)%%zTnt}DNF65?Nx4L~@&dy#YwMV!J~T-`+) zM*Id%IEw7l)Y@_$&?LW^%4>*z^qk|u=SdEc3P!TVHK$?WhmXTMSH>A2wD9%xGa79>Gd zKfv894dh(Ji%c>_b3<(`T0c5y6DQ(tk)kt?US2!r6Z$6XCT=h{e6_sie}!g6IsYPo z)`g^7)up_N^h!`kBC)d4GBZ%%Fnl?9+d%y!=MI$55(0(Peam%Nl081YDnyUXrJHC^ z3ErY4A{0AQERQzVu!=>XE($^z^6I)@h*wYql(cyH{WG`~TOPLY21s@c#msefj_qM5 z;}n>{#?9A&LwSP>!zkt)YKwPh$4-hcIsF{3*9T1E@NufXeRF?5KT^jZ6v>8MtoQSv z9+4l?5t%8gyq=xkHcm&zP)pQv zlgaQ>Nd^Xv0;T7FoO$7%)UlnmcEin&m+~Gzc8^hvi;DX4_&MAV)Po9wK63hY5WHt2 z92k5saHe}_0r*bXx&92~&}4*`4_zGLG!E^^4sG{Tq7eWrob~6&!mXfWlz9k-O&Pqi zy=BQsa*_*toJaY)EZL>UKW{?lMeZ4AcVh3O)rtdSYhBy5G3J#l?K;|hFF6B-8@LCnn18EqrfI3$Z4O&&8IS>5Sc zpdbVA{p+{C`Tp@Y=?G${C+gAWX96$v?0KT~jNlPS{@FOA!(J#b9{Y*aJ=IlyuL23v zWbw*IYh?|ULO~uFilof@8{&Fa;=Xm^fq|)pC}9F~%1|2m9&!J%lly6<_3;o4m~&oaQ;6BQ#8aEB z$xDHBnIH~AtM&z`xa~|7x5p+hJ#mg%v-|?-q(P5)vBiKqk&TR$JdbWi_dRy}c-yvJ z9C};4c|q|5LtB5U>1`%rFMUczuT0lm7JBw|PT8&XzmoVL+W(#-Er^ZT_U-2Gb;k*> z1`jxEnFu?_l4ZzwmoC4x+;E(d4@fTT{r4jyJ*-JIXib+L&V0H4qlKE6-e}>6FEd$s zoc;r%&o*S1m;LfrSN9{WO=P$qG#ci&SPMo~M5~Ng9-~+|6LOE`cYu;d!BtW{9&Y5u z#ZEiZiF#6V+&dNT9_ZOg8L}OOCuWXQs>{nkyu0b@iPdO2g(rbBBkKKMo`fRH?}Ss~ zLzZ;lXC@A`tR$h^-7taS8s;%@Qal6}KUVAbC|GL3!WNDQce<1^RXP{sst+LT=*4LL z)A-I`hs~(*piZ(qIlYw#TcVWor!!)N8aXW|XWYkbt>4IqF$JP5h$2W(p;jN zNSG*pWZ9g*|AfPuH{!xc2<^GLP_-FmA(bdnnub^{IDE!V8*EavSsDEkA2$$QtHg0w}d0$s* zb9AfX{=tyf|HLeY>v|4U@-C-6%3zN?I44pdmtHnhX2HA!(YpzeT7OsBB(Do7*`$L! z2-~YkJzsa{0F%)luo;~1UAYP|H0bb`R};_D7v+%K(2~jOilh}`p`qSF74TFb7ee-W znS9UGbXbK8iV$9;i)hw&v&>KRoFRtKkR620xJjy~P&DNtag4CRz{WBQ1ct zHVCx>&3;0~1rQ$kC~?FL%2Wy|C$50Li|^vqOqKp8TNP~^bujY;@!i9qW06G0WjGKg ztDWQ=GqNSitGTj!jcp<*<&QD9WcJUD5#A2L{{ELWK*P`r>lmk#(P&;6Y$kQkj)Q1D?61aTAQ;_FaB5H5bO< zgw+|&@FFDOdWNClhmi}d7~K7#nQ@3k6w8Us>TZ9e zxaLI{{xgiJ3~)_U-Y$R7A^peM#5OKdkk(dO_UhkyBBmychXQcY0?A*du71GfbbIN+%>vtbL&G70A*MB6U-<~Z zy@3vggcd_YcAR0W>%d4EKD*=SdJlUv5T}TMT&hI1hu2aLE)HeNtej}ZGrtc_DzGU` zz@0lMGr~@c$P_x9U6}mJH*^JzBb|FPUL_=_j2&uWb_F?u6|Q*^K)y=G~|*v#nC5CA4b1z%2JaD*qItvi3K?WN+BtlLN@cBY)u z7qd57GqQNpBm<&rHwqKJ0Bk&v@YD%zgeiTX70wBNWcS@4TY-p4>^YXrC13_1ir_xr zr>te~RiJ-<4ZnFWL3|4RGQ(AQJR7h;O5xZQIC$HDr$QdbO;3!hcu&TqEqxd28O>By zqM`Yl<2-`?TqzLOdoTbAiHQ-MdmGu`WuQ(u?#8Yt;fNqqWVkJ^vvQ{R&JA&Stwg+y zrUoNQd>I~ZaO$kClD^M>%#o*Y5=t_pyv4lMV~~)+3uQiripi#|-=INvU7v#*O^LB; z3q+iey@50I&p!|7wq@{u%!;#dLi9$yqL^5K?}&hccLl;hF z5nBw~-`Z&#sRq#u(Z|MbcnV7O{l~Q=<~MpwJ$Z{Wqf*>Wt@6r4~y%KK@=z;PX~#3*~vrshyyg+(Jl1N4^p-dg@t2lVa9AM$nm3+K*!@ z^c3n9UgMgt6?UsvSSSpQF|DcW=w)y8M}6|#_TpPW>@I3h4LTFn3Be#k3wlgKd7D&O zz3Y42VE?%z2V*WcjCh>;M`u(9@CerwGt;hSWmIVNn#4Jtn+) z(fha(7b5O}9{-;ujlA8@Rw@pFx-@fK85|}0NV(fPrA{ikn1HTIo|B4*fRek&Jqxi8 zLE8fb(IRfXa^@YdQ<1K0V3g-@PaE-9f$0UN-bJAd4`=u~+EeE>)rfbb{=k8D%e&1~ zZV=TTacBVsGC*O9y4r$(V3z@KQhl}J`ThHW#2!+uEFOn+=ZXO*$N;F?YH!CbOo!2? zN}+%t0ha8Z>vKLbM=Ypvk20xT)(w);&Ixkp(_LK*Q+pC+Hqi_dS6UMRKMn0lCH& zmE|PogTvOh+&^BNp=A4fMTH~lc>qU1kTNeeif&1j^$zfb$b?2(^U2xUsBLry4Z_y5 z4KZK!^fw>`S`JyQBCa;6p8n-*;5F29|={+ zjFTlYJiphrj=CNc@Qu}TGb*FLi%DCWgK>aA(?Jte9wAAg=#Y+J7 zW8>Qq&SaYOzxJ5}!KeMJT{}7<@h9OOw8@EXtKe;t21Z&{U40`f>-ebNvEna4B$5eJ zF`p$1D-7Fv^g6|oj3wT_t%4pguC$Rj7xIF0X(9M`OXv^edW%$nRs-PGoMO$l>}&!x z%m+4IY}vBKap2InSS1ye+XXQ@_-X8-pwS2+9+y9NZ>l>O$`Sa2xeX{zkmC7^7G(l-s53Ef!u@^$D&D8(QAGlj5)OCwr6k6 z`ZpgLT+cmEmmyLZE`8v+|`A^cmntz5?muen!tY-zuh|>ACDkZ3IIK{d)4lU`_p4#5L8(18zh86vK)v2J+|zxvc+?_pWwG~s zz^mV=rkd}53huttSUskl-o@NAUN?cp!IQ+7u-~epQK)rA--+-pch)6U*&ldI37(as z;1e2Zr`xTqS8H^(BtG6Dn98L^GV` zsN6+aCM!5>CB?;~>8MrfHZazV%mz;`pW)-qqedvXao8l7DMYm6#7A$J;gsEYpxl7J z%U}2I3H2A1yzRJM4p_h7UqDs4WMdUyduP85eZhvulDt$m?@R}e6eA4W+HP|IzFbIX ztFCSe?w{{6!!n|V>EYiZMCA7La8)4B^I>qXYpN+b*4H<#JLT;ZcRxV=nPGP8UN-IC$EkHIk4?`GHe3+qw)$YlP2aYC$Tk{h8`;b< z&amzBv*#-OOM|L^73!%z4b>(0an zSUl};WlOnS^-$sFkA}jpO#{DX?mVK=`SJSMCwrSX_4!Mz*>Qxs&lLa!-s3HU_s7VOJ~fLIi;kOlAJOcpV*I!~bNi7_Kfhc!qFw$aFYm~@1znUT zi`tN37C%%iB5SG`vRv%$YwNoynJjCoq2ZY3*;Kd=INKI*dJmd=sqL4=LTXRq&K^6~ zjQhHRc@@lx`AI6f1%CgL1>j_TtJt{vIUKwhl&hZG&;{Z>jqAQTM>bXZgIxF&g0>(V1r6EXOBP~h}|c+ zpg8+@WYq9cOy`{J)`L$b!Bdu1xT;6Qoj9=#J0-ePnS><{?)>nAiJL6yT-iziXJ_VA zu3zuKtO5EI-R|8jT|=f~)A|<-#ZB-#EWBG1hM3i9$(ORVSUMFLV+?>f#jTsyn>X?qv_UDHZFO z?N!uW0eUV5FMxN69^1C+%=Dx=n+GLJW#1GJld%yCRM!I^LH{;qOc6yNaH8*f>663apKX9$hdsD?1Z-v+4UJfJ=QhlIN(cknsnbGwl>@=SC_j&v~1 zetsCm0%a^@+PO^s@3LExpv7Eq6XxEat*<@32h`*R4?myen(Kag?^{rmC&=uDce{Dn zLtJBJivzg((TDHE3`JbuXzj*~NpJSjC^KeQ7@QzFv%V}LK)!hZ`TicTXf&GXcnlJh z+P+IlvOoP~<=u0v@j%#>i25l$YQX3EUz?!$J2w0*Y)D`fIp}bBdhz+&eVbvcsLT5TTWP^=e0Ii3~W$ z(NTE^zAn<=k~U>yXMWN z8)|U9+wZ!f5q({0GA3NSBPI>n$SPxoGSEpkg)#GF5(<~x8t-6S?OJ>)KrAZKUWXSo ziyMoa&$6-FXrIPLVSbWhpvh!4HxcAKO*?sB6I~fd`c1mZJ}jZY(I=?F8T8X6l&44a zT?A+&5)2Xcek+*bv)4bXRJLA=x1PwIi5l*%TH(3dsiGD*4IVdFzB# zUhbzZR%)8D*`Uau5#XO3sJq=9vCye++cZFlwHrjGk`#k`p z{OWo1=123K@!TuCH#}sJKIWB(YN!I1e$BK2GPJ;2Qe*b@V4`o#5r4fQN%r@+sv4;lU}4VpBfEiG$Tb-8-^!5 zUDj`1d^_S+8kGW@I8t{ayHd+69@OC8s`HVsz5N)KrGcW#=#;Y!M?5 zm^uykYfaC)II%^rss_0~6(7k(FElvV6L5O`;o-H(4i0TKH9IqbO!JCRZJM9Kl9PpM zhYlQ20SON}bm_{K_QWhM>CcKI1YM38PL*YvefXm(ZttK*`(tyxIO^BEznW`$o>= z{xmsc{l_8eETlo~SFe5916V|?H-mQN0N16HK!UJJ<)1ntcg%ISULAPk$ZjNOCbYIh zv{Tn(ooTF?S{Q>hE0@l_Vmfju$>50WEsIA~J(OkR%s{*6l~M4^0z*5y{AP!YkY8Jw z-}H$?)-|ZXz8@Eg57mrzB#L(rp_i`fatQJ6V=Enet||};?aZzHR1(^ zmFYam18W^HWn^z^eHM43gSyqAsixVEiPwkB`E_e))22;%(PBUv7#3EpInMpZaZk@1 znwRp=XoeMtf1-%*XhwoUL-m6Tb(KA9Hqu&Tpse~_T{bR0O6>?s!ZUbc;$y}!Ov+uZ zrmGaWoaxOi+-e?~toT6jH$`iwPJ27*02q)xiN%UlU&aRMi)Eq`E!#Gd!ZP@(3Infw z5@WzNy|Dy$!v+$#P2=)9WH&53+rm&Ux?j_MXBV*2>E2hM)R8RoI7ZP#9@>d6Sp92Mo?tnZ7Dnk*V3(E#(TGhAj`Qm!DH`T6q9CPZ^pcsUEORCIt9Hq@()iEeGD z-Z^r!%tbUN2#6!8)9XrZ5rJQqmlKc9q%A+N?((pFaG;>J|wpp!`P}s@J%-prjx@M?`=dMURvqv<-g&I36Bx}E3^1JGi2 z9I|Rlg#nRbCox0zc5`tgxhLtE`lyHHcmqZ8rerb~SW?CQCu=q-JfzNobE3R#HSfV2 zyTVibsA|_5YvE7HQluS-)~Q60!p^d5bsu3*6}S(kz^Ec-6&bhOv5g(59R8hs4mqz% zvIhkL@of$3zI?^iAJl+-aXa8|BL!$C;+FiNnc`~U$g4tEoyxpv=Gj#rcw=G?!~*j0 zYook!7s_lhK|KT39^=EE+&WTlJ0$6zh+POwO<1%xbxKW6X_Yt&19fsWO35&`7Oj0@ z>XCH*NN$*bWx6U~gHXdF-xaM2d*ZIR{L1H0XL~Xf%VJm4GqVNUkz6bjT>vJr0p{&m z?%=0)W|d@H-kkc08<%TpHo$6#R$7F??$|V$7kt?;94WUBsc%4gx!-zL&n{EMs%vOO zQZVy-aQH21xW?|kh6_JhhAbPDoc4>zz8e5OiXu^#VK)%@JGB^brXkj$+vyGyV(&j5 zmSi~NtRfaxvIO{dd?rNCjN$sFv%v%>OHo<^yvGKZsyQGE-+?R;V|5IE%FdiFuG%0A zOHkvo>vTKO#b=2A=<_Pkw}RFF1U=gdv$?MFm8@x>q;)*Eq-uk#6y(7^ZT#{M)p!E5 zpdiuwJPz$R&?e6roDp5OWNF}i=K*zC8(_eC+<4(RzumicFv@|=av~W@z;P{0 zXHjnO#!G=xmS61Lc6U}fI?SWd(T|)p@6lJ|CGNX+*RrKz*etyU9GXD z5FIpYYc~!Tp)k&hu>21MJY>9=(AJVa?LKYe*o8Rk6d^8kJ=+OSMXFTW(0uU9U*7H% zEq@nklN;P*ajeEhA-+^e4YyjAb->6|V5*jbV;a}Y$0yw*W_ z<4oKrFt(-_OTT7ovG^QELnb0*Uj(0sqp_5xLMDzRT_X$T|P}*=c9S^#o$Mtyd84=NGO|3L9pQ)^{BBrw)}%9N-@d*QI|OX+jnPY z5(_V~v%Y>)F33$Rwws=gdH9YZ%bVsEX!}uQa)NvnhK+?X`b^oN217V=x#kP<4Gjg}^H6>;lD)i+)l;kxXh{5BatVCFg&sRE`l`=pt*ASke2oT3 z0vuCz>^_N$4Q>y?F@dV8>o|EhvRb8>?v}&c+eqx_rlgU zq1pm60jtO0QWiw>0#lwo{lL8zY=}mK%e0Lv!eKjff&@eG9$93Nn ztjVv}*cL5YqU7oYcSJfL?Rs#ktP(~sD!ZG`k6BK9x@^DV-0sj7xf_OeLOv4#-ngox zO4TnC^5>eW`Iu0!Jh?Uh26dvWgi0xTz&dImAAf^Welj- zWPcWbt&|%_J9aPyY#9DZbL1r+OH&Lq z#Q~fn<-cyk@}9naegbCj_O_Wvv14A9-jTWWZu6}V$bw2lr!=I998$|%7-ntS-oF{| z8ha19iMAHYw`4kw#y(qnq(uF0h4B%r z!IZ%Bi`GBY#x0ko`GDI&qA3q|;M;!t>9S~B>kGjMCr_J}m9l%+t~;79^+{|gHB-#Y zyzM70ZbCxG(4-N5T6~wuT02m{I4g$bm@zX5P`3kY&ry~|5lKZaA7HMgST%<0gnV`@ zQk~IE>Og6y(@4h!n5h-o+S@m0rYd3jN%P}NUR>SShJUyXzy!~6gBxCoqlel!$)?5g zz37W&{{bJ5LdN7Ic`X9aNbWZK0lE02jz4S#A5HcVyerdjE6Xe30;n4mc87+C`w=sx zS)?p|iw<2$d*_B8bVx89L9DN(2%Qg9r%)g(<|(z+t;!GclbC&LjU$6nix&FH>pVQc z6S!OmzWke+WmA&Xt?(pgaDCcr*oAawP-2o0QJ7(-K~{;IC9Pp#iynHmU`dR~)o-YR z74*zqIN0DyM@*Oi5n=;;*)JEg#BE;AMJu!KAONz0lk}ff<|5N-B-Fvro+g}{-{&tWxf#VGqnNuMY$lB{ z^Cp7Taj_geD%_ddhyHW|NEac&5#-2W*^T(h0sHCTDOETaa_VvLZTA5;QLOAKl5k4IGqw+ zMqlVK+lj8Dpqnz)>0o)`C3pC0TE=U)z~{>AcH$laXv7AvCfABZAEGig3+3GsK~s4i z7~nK%?|-v$YId0mf13B!xs+PC7?Tu66+~PX00OIGzv<_<<)GE0X#VIERwkC7owWzb zqX?jbLopZ^&R5Zi{zo|Bp3r%GQ_K?-XvKBAEuSSDny5O(;}i+h$hFOhp{U(&yn5A1 zhPYgA?CnNsfU7bCnIH)qV}(39{=mpN!>LP%`5-i&K>c8FeO9~}!WMZOtqb`;7=i^z zOXxvHLDx=0=<4_!$t+%#z+8_E zE=pMi`*G{$n8>bHj6Wt51c{1=@%5JIy^b}1Ihls0&!>HQDqszWu z?cUjlic4^Gsm<2DRQH5`z_Ysk^PA3GNNvb`tO(kHj``0yu9Kndm#OD{k&tXGB@Uv7 zAhHHHM^Hhc=?V7H%G{ECZvw7ZexzQ2>>zfe;V+qp@(-NYXW&%2YA zI}#+MG0wf zt38;6Oy#-BfGnPJX)v-C&Zn$cF+(xRK9H3R&^G*ARdHk*3h@LKoaTN%_V#v=a*mcu ziBu&Q8>}+Lrytb;rNkHtk<0c*jYffxOPJ<6Z_~RCzZL;aEkV0X%Wl>Inp5mg)LDP> zyPLK?@#fQ~mPkeaYTsUuC{TBpuq)ffWQjE*S>Q$WS*+Ed_Lc!dzSN#vRSraZZh>@- z0t=8)OC_vwBl8oLA}yaR8zf^3Kz`WF)u&RyHa)!ndKbu)RV?@ib-fXyn72%@r~17{ zvsI`G(DV;}oA5~E^M>JPPn-)SvY7BB7DwSbs*e_~Rr~fT#)kqZ0!a1M$#ye=8JUrH z+^GAI4I!{%(&5TROJ2>^rCj9Q6uH#UCni*m_;ubdl{O4NMNf2WF!GHX2_A~KN>dP~ zEc8SuZ^kUJFX_NU&L8|1X6Kpl9qGSLj`WHP;Tx$}BUnC)IC$W*zL%2tUVlTQ#OylIS@yjM!%Z2kQ)g4OHR3yDK?%B?^%OtQ1-KAW`ygDqY9)9lhEOfKjHi+JM& z+&Z#`><>cSLnN@#inEl#ao+Ge;8@JiBf5;SvQm+M2be!duTNuuBQXL8s2=WCqsIFK zsx?I|BpznHuYBOP=1=yRiCP0~f$XXWm`toRhcl2o!O{t(0qy-OhMbaHB25@tp1L3J z&y<_4YyE$;03l8rzJJm}gYCs+uL*$yn0OnWirt^oDofuH;I@MNXuGepWZorKADjO6v3H9jGx)Aof8IxI<|k z*GwrSg9+Uz2sOG{A53MlZ~}W}&OY7ie2%oa1*+gE7?vEnmAYnoO`nf4w{3lDGLH-D zR>s{yZ~ZEUge1|UQj&?-l2_U9Y>18*4Yt37Z95Fnk!0XikoN3Zdk_b-(#OxIhhK(X zzJa5XFdYK8VYQ=BFb8{iU|La7@ca-&=-!APY4m@Y%e5VUUJ^hT)CvDH`r^}SZCc-$ zI&Inx-kRV8%y@Y1*|R700-PW4qF(ZJ2Bm(?)|$dZb6|M5D#S^v=pVt1St&GWQpGN( z>V?JYOI8ipz~Z5XMboe<`W=4_WFdnqVr1nY{8!r>IfAd>X(YT?Zf z&z?LHGG362kdSC&YrmVttLCm)fkU3D0O>>(&3CmpxJs2y5N(2x1U5aLXUxCW^Fhaw zv2;1ySBh8w0nb!d8foUsUN`*BwpE8w`{AMi&4GXv8c})zod1Cb+Fw9%s2{v2xrh!; z;2GSHcQXn@e!cUJM<8>TlzQt~5uAq9VC$@VeD)p>w?HJy(VqkI21ETe-zv% zRG>6QufH#)A`xGIIqqN{0>e>M=Lad77yv#t>a@GyZHQq}%KHvP4Yr6fy=t-Tjh14b z0#Kx}S0~#;$ zl(;z-ac(8W(xjpZ62pABwRXJ9Xyb+9Z{ELGWs(UfL~p==^La;((ocj4~2iPPCHuFQqFe`%#dd}*VaGyMxG>Q>VdvO{=^R{3!${^&NB zKkjSEz1xzMRJ*=ykZP0vT7JP`uw=qdsyVX;tYgzLODu%5l%&b>9Mo?U=C1!l;e}zg zvbfw*lO~{@p|;oS)$3H61uqt+F%9j`ce_cGigs7l{~N`6Qc5w=Yb4^`M-}2*F|SR= z#2oG+zfV>KRImL0NB;Vgzpie%LM{XQ?tHJ<^aLiUKBKoa6TXN(-!@BkW&&Wo)53)^ zlPolr+60@zeZ}N-@tp?-v@BJP%%7FKt{07S;_6a!Lx<~E^R_#4cVy)ptrgNKvwguj z2X_4iHSM)WxNYH2xdPI|k%Tc7B7 z?x~;*GFia*@|WaKrKP1!y6#b?MP^{gzhTj@!tgH_?jlYHA=&~hMFo3|gW5yBtZRk3 z;6oH0a%UJpk4`9VL-6AkE2OxiYT~T4kOGC%*$2I6eF6FKe=Qu{d!$E0Jv6*INsHnf z(4|SEz|c^!h?9d0>8eS~FouXB!>XVyAn^l#mLmOw2fl#<4@%gVf%h%uQIoae>~7z? zw*x&AfHpe`U#wggpzE`D1wt#C%%NSf{JsERER$uZL=FyFt$1#6{VIf z&1t~N8;wyza7|IPP;rD-?DN7oE(`M&fn3B+62X?is*m7Q!jFLHmOyR#YsCEjn9-5L z^)4kneg3?Z;sX@e)XK^?)s-%W$FA2?y{$AEj?^5oQ<9;^al%YtKTkcrC8tbaTeSbq zdp_MOtrE%|)wEK~tc6Tc${aP+s_(K#Lv`)>S<-y%*4#}2hntf0+5bVBC@9RklqPW& zBu(8p{CD!xd-`K3LS&5+PgmpV=+Lavw0rmdq|T8;_2%v&KLX0;0@;P)4eB8&r7-jT z6p%MBkbJN`EZ{D59cl4-!__ky=hh7AD9k-?FJo(yKMt(Dv-cPgf)NEtaG=pJHn5Gi zHD(ML-xjr`gd@5kLH-IrE_DYEYzyYgqx%urbHQfa1;0|dciO!}7P8^mS{D$)nOppM zlM96cA+{NTQ|gwD+6Gm!V_-XtLlid@?SaQImbg(L`yWO#fX1x6GTE?p8Sr0mUg9pG8h74$?-zW4;+(L_z>k45H)d`gy{$U2ADzotam(fpb`?{a`;k6o);*>?VY)*KL7h{DO}M;m`D zm?z?jH#koT_e?x0$cmA6<8Wm7PmsmfgrZScPH&w=HXm~MYZn}>F=D1$_C7N&CyTsL`YE5(b_!(W$4emVmNsPmo|e=RJx zH`4qce?eQZn-)veJ{&C+Bg6P3B|J4cEo*ro{49X3#5>fe#AhoFyRfRDC{&d`oGzJN zZr;4+kP#T3KgFuj*Q*dBSwJ?d(A!17pGGbLB574IbY?PtXCAl*!qqX*q+soRp^n&( zQIh=0gNDU?aH~cQZAE8|{xr_=DKSNKz(7_eEEM)T!+RVvXU_HfbUg*poJQZeFCBs51UzVFHln1be#obty`1OycQCN3n9!(cIFiNghM51Eg|< zIJ8Ub!rgrKex#p9G1{eJ4aWoFn(z>!q~Vv{8aOL56WLJ{`Zn4qY}R+%Eu zya2WosGlTk%3@81r*1GJfEHx5ngd`Ob5(y1TJge%%~wVAldlhS$$N8c^H0(0{e@wD z{g3y(BdnKp_UTG+Gkwl9O|!*|-wmqrdqmUU7k_ASvyGOwPNTZ-=7+JwLe9(rt>zD6 zw&)yqi-29GU1{j3VS*?LfGL=Wg6fju`nA8YiGl3+Bg45>9TPopaYcm+Aq7b=(;E&& zeeWI_xtqpS)^EdiWWkO%JzeIK6w+3u-(Src=a7nqJP#G7cKI8VOyb~<7RQhLWAkIp z$@<(MkLS#NY72pwE?iQh23MtJ9~uho@l-uo=01I`ivD$5ih6$dHtXY^ImH|kk_tvV z%FOm4dtl1v%aQs{DbRJ4wMau+@ZqA59V;OpPfwV;HL#QAd(rwKbt__M1l6{}j`U)W z2|R7$rNc*^+9dFOO0KAj7pE4rXL3V`W*~>l%J81gS=kpX0Bb^ysZ@Isd>A8iu9#sbLSqt)v25A zObUGxEX%kLr49sKm6JgKYqoEf+IqlA3e%q@->5!D6Xyh^M^Hx7*OzGwmDa7jgy`A9P!~^$F915l;$9X%qqcNsw77KR9z!d?^WgC`suo13LftJ4gW{AY}MU_f*X(#u>{BmG2?)CksPANJY#K|U9EQkX4&j=nK~=Lu-(`>W;zSx{6F zPcYm4Eqd|M2G-hv>IO`iB3`FQ4?bsWxlU+bMn&a8Hs7!8VWQ(x`4xyj#KySY$lznG z*2Mq%e({t96L9-71il-j#K6$d3upYO`TKFD@h2M+-4KYhQYgsJ&)m4IlX>`{@){U4GN}wGc#MESCQ8vFEjh1r7v6&qEZP!A8BO;EIxnX* z!}431dKxtzzM)a1PV{GQ)?a}@s*8(U$d5#+g=B?`V(Ig4Rv3-B>~WTg3%8Z_>eJk> zTThtqF*#r{Ktko)Ujr$*WKXb5D_Q1VOxuD)iJ!tQ{^Q3b^hRPA&zt9l06(>4+H^W5+fEV*2cmD1vdO0?+{pVujRlK0~cW`4we|A%vhx1DYDXj`+wZy{fnqXAVE^_a8X${kmPnx0{a2bC$E%8L; zl1|d{u2BI?p<(83?2x|Xybf1R@-QekGd(^4gnVsBI&pL?vh?jY`DN*o2r^lUkhf7I z5at)j>;I%v5e5L?MH=N^|E{5B(55~318JV0pI@pgiAXehztK=*)%{*bT^ zKAqTbN~;_yg&q_+#W&U%tCzC)|2Yx=J2IdXcB&Rn{Ia4tWZC5W48g}mEgn^VcdFj z-FYsD=yk-|6D6<3>F_qE8gmYPE>@c_nlq;pG37qaPIM#=n2Y&S)dP8sF*G`TJUV(V z?K4o<4u-|^S1U#4$5u|A0UFk!gDMy>pj378qJdfApA@SGasznhA{*J#U~EBJ8w0IC zE)m&B%zQfWcp}wK8sz_!)02vxG3+{@@!m%DJwGfyxefH}p0LSO+CiVDMmIF<1yW)Z(^(4fPC?UAT@>_`0-NfCi;p#EJ|5< zIvj~U71h|p5MwmH{vMBR*U9PA z3ak2r?jU#vA) zWtB1=Z5>UM{iFPRl3z>kqp>(~GqO&f(`Xc>HzTpvD+3`5}(k zoEVVlIFIKGa59>pYB1JHt+0}!PDEa4KdPqe*;WA>mtIhy3EAK3r{zUOeQTBSc-_(G z9hXO>woYBYds=7HGZflF91^^yt4{|OapbbSeR%v&fQYz&F>1Z$P-qkRMeV^TPqS@} z{{y-Z;ml{k;kD*G&(>U8v)^qRcZ5I+NiV}eAsW*awh(eD)4tDMiYTTf=pC*X&?8ZK z7br-1B3mf@xED=N_w3$%GzxzanM6fBbecxuMEW|VK9 z5FFIj)w%QAG_<|scA{niJwIsn<@J@Fz!~qqeZ~ld_(lLr(fmo}LW9;VVbweCgG`f< zZ9HoFsyzxu%z#00AE#StVn;xW$cmm-E-u1#a@s`@%Gm1X!4_1}gN<*`3FM}Uj)SsX zbf+NY;l-^sTOulg7|)=n#CY-X$?_jC=N+> z)8#iiR8;ZIQTW|sd}wy*+|y-TEQ-;N600fG4!C`|r+h9I7ZMEt=qR+0qDTh3oX@2o zXKOwiYPy`R>j}1ol5@x^(Bv}8yy4f6fix*1wgGi_|HF{jf-ldgY11@u460N8K-8u5 zUjFUsk(7WUmm~--5mDjjrie&>W&PD|GcWPfN->oopETlEE7*Nzm zJcJG>pF{LYiWY%dR@ROK35r#RUMljv2*@kYk~HikzbCqLc#VOJ35nY zMOxXvf1BH8wL-fR+VF76r{Q9+zq#RgRh?orW0cfPTshDLDz2dK7qIgtOQQlXfo%lKbS zT3?JK?CRD0_O|bHw~C!9+m{eBr5HFVe$I{jelM3G%hjtdnGUD(*WdrF-E)@qL#7i7 z^OO1#L(3|!OdLD*sFPyP|KMdBL?z=xcY7;g$zRyLu%j*rrsU9l_e5JV_y~qm35bznBALbj-E(C>#|I9y=zh0@3 zCRnyympFMD$`cFct)gL zo=p-IZmW9UL z&M*bnxYxgVfr?fA`8=|zY~`=`1l;hD2&LqHdM#gts{~Hm;iK(P_Pf^9)NIKr-J0n* zaOPXqFs+~;1`N?go-*=aF9<6xq{x*KpfoB9fBE^q{PD}zl(;0}`!4c3Bn@VRtdm~B z-N=xZR8}N4d!z3s&TK+ASj7kk&p6n~dikB>BOBhWHRb@oeS1>Wp_2p=ZbqG8`~UHD z9&kPHZ~y-yBtj{BRHCA+lYK;~B%+}-Y~={qnW;2roKVV2Mk+HSl`TaI$B0CsNM^`N zCF=jY&iUQ{$K$>q_x(7O@Avb0kL!A^D@Wr9lK(4@A6H*EU*+3t#E34ys1_3@+-a8` zNqa)QSNmyp+(^H!GKg`Jy6A1W`e6!UqnjzHk}ns=iLV&RgCO-#Ku8&BhnVoS}t9yP-}AsXl|m=D?r z`Ge-!A9BI*J7r=pG9PJqRWILxd0eod1#21Iqj)Je`6E`0+tqJoL%=F#hHu0&nl#c% zjY~LF8ha2%+xz`Ltrdk60Gh&|#Zb|8*~F0Tw2*Y1-xpx0|!GGUqNut&Wz~z8k@Jq0gkf;!9tyu5p+&DgW&^QX%Ys z>=tQ=wvgw7nleA(PX#p*GvzZ*)cqL^%Cr4eHYwnrxs49+AkmL+gdf0dlt+a zlc|UwA-Y((Oq-FUB;I8l+^o;@`k*Xx&}uv4u^*$G~2cKx1%v3@WuNyF@8tGHud zz$*QE(+%~#biJHXI(G+}hYx150(lpM&L$)M5|KKZ1bu6Z*7ckJYsh4U@H`~AgYj@( z(Oi^Vtl-Qe7TEOsjy6i#%lU=XXo2v5l1W-T<8%aPi-;k3`)!B6V6qs0QuFA8a(pv! zB>rnhWTo`n+@^co)t6uH(ISd)6pR+0FNnvcg5*cWDRl@pZM~NsMiVtKw-Y6gbR(=~ zoB=}0Wn5EF2BljM8N-`UIvxpr$3ha(lFU#EdRMfG``$7U+L3u-@Qs zZA!tDzQ5PV-)2|^ktD&k%Y0=%He}@z?$Ra}SGmZQ@nFK|iOG>}Z&1x+u6e|cS2=J% z!*Viya~{+E)PH&@Zk>{I_7tt~cnCE-?YB|6EUzf;!pSh*#|EsYQIi(P7AFSU1all` zQp&K~MC%M1%DASk1V@Ovm7jvkZs_Ipv8P83=tPBN$cTa;!VZ9@<$s!~9}YR1J;Bpt zP%^l}+rra&a2OHrK1g#Rq@>!VsY11!LvK>!_bC6@$RBrxA3t1PU*Fd(K&$jx<`%V4 z+w|vkQMOi7vS^(g_T-3nTCd-(Zh4!%^9vq29kri4^dMkTjG9379w-v8%MzpYmF}a&Y<)#GtUm_Ib=!_2K8PKYaGp#QMQUGTVhrv zUfuOsbj!PAcU|3X=BY5X`gs1GfqsP0H#A`TBa4Q$r|}P@en8ZIZNeaX{g1)2_a51~ zx~f2e9Gh}ZosA%-O4vua!8z%;@4C>F3;#oJtm$lDq$*QRe0?uJuAoE3Ln8N{ST9rz z-6C6A9AHy+M3l82+P_J=#;O3#G!6`*$7$0CTA)XPCz4HIf$nJKK-AQ4ZDL#--8vgO z%J~zOy3BU5bIOp82J-P0(T?caEg|B%?$BIZsL_T>uyQeA<=2lGYeV< zQbU48+h&HN&CF;BT4F$6JfyR{UAiYq(iyQThGY`rh;D==h94G$fddL6X(P&c9JWLf zw4?(wx`doS=#v8+NtEH$=o;mm6TxY2?xE4jh7F$6u+3_`jpB&~uliGc^%nNwMsAK2=r=+g9X6J-&zpWu3e6Bqo?A4@!Of?1hsxRFSj;tm2q7gXk5Oa1_FDgH_)w(ojisVe!fkZMl>_(`xpdXbj2D z^PahDV%N=0>5y4XSD*zcRJ|5!joY8v4xu7FkaO>3WiV~rrLb|Id75&q4@li|-xbt$ z2KTk-$B-ZECY>CH^hkupj5#W$8jwcGZDD=gZ;>5PyGwVBa$}(LK}O+mD5|pjC^FNk zSCxedM78sergZFC7=ZFhFXxLq`i9I2f^lWx14IG#@DD7w;ep>+6kmAehL~q79z)v<>)mNi}Lz!Z1SC6`v zyb_>mp07f|v5^TV)$x)agfeIYpn^oz%$+}faA6bJ?I{_)Q+E_kX06dd;Gi-_A3ZPT z_Kh1-pQ|))9{gt1$<3fgKrF$vpKE^gtZY}~V?qNVAs`}_WhRmT#*Iy1-`!g>=iQ6- zRq=W7sXTSDMPI3{W6x3da>9~oD5y6U!p|kZ(JO~7nTYTMU+}b}eH&lg>_3dE;}@uh zaSunmGS~ruU=`2d?5aPUzU#gqZ!Pj+)^adDBgDl-eO)aso>sjMDYpdh0Je?pZD5o6 z_;GuxqV>S%l#|vu3!_&AbLP=|5Hy68d?F;X*>N3j2mRaYTQ}tKQHnOtf$~)m#W>JI z_u1w88rEa36c%>CQ(#sfJOmeu=-u>k_-h20w$8{sHATF z<^XXDH1Lua!5c%>B!1fkc^34#90c=+u4}-kAa%@M%zcf?UvMyWk!Ua}U}eqIIIEZR zMQkQK85ax$b=I)T~Pnj+Ds;DNfH75kC)w4gr%rt zq?ebk9h$Wv_fXWeCje6XLZpHLk3cSa7A`(KPTP4;d^V-A6-gO-bwbzlrjj3?4mvCB9wpzSq4 zDJ5)$$O3lOu(Bb8|8vFC&w73z{stf~?f#SI=4m1Z2SOUQdvoa5nWF5duUjXzyN^jX zWV)cKn~&WVV<;{Z>EL0ixNT=qi;7a+zsl~6q(bo7;i~R64vx?@FlYuX5#v&e4hko2 z4@zaoT_gQYQo?4MbR8D`?uJCR{Ir4 z?Q#Cu>bBvHq3uv_(2&5(Hy;U>uO6I9RWd@#bjoK;csO%93AV~z^45Ez=O92VOEw)E zGF?kA4wnG9K0w*em}O@Hy3V>KG%GUhMhd1}HiH~fEr5(IGQJyc`)Auw?CrTk<;J7LL|ka){67hh;_ z^Z*imDvlQ=z|u5bs@o<{nsf~?JvRC^l*`d-vN*TI#XU3Zr&MzefWv$*RhKb05zs=5#1k^Xd5@C7&PbT2n0vw74(NJ^Qn9|S@wHP z=EMCQNX%wi_4B)dfV7-E@yCvl)5jy@i3(i72BEpxfCmdqb@+F8Wo~4)_mvlmMcO1l zxkAoC=7Dj_%^+I5(p)$9Dy29I=zH=tW+wMXbhON%XL5J!!FF`&8S)$9sHHUUJ?6~ zC@H7uKKbE~Tm16R_q`3LoRv(VltCNsZ(@yEjUR6gI7^EsIX?Iip7UGL>`zTj;Z!7X zU?_$_5pJ`*OX=XGh$R0__dxf3wh7?~t?9Y5FL&ai;cW*ZyCwhb=9TmH!XtqJbE2Rt zo4*bmt-P`w0})j)38Q1nr29NOf=OQ;du%rI98F=q1kzQM3+NqC6b1zZm<9f}<4j;z z%m53r_nfX3&qpx_g9Fx||2sA|ws%1jB;EiM%|=o-W_fk#64&zM%6+NbIK*tHOc@{e z(bjyw&N!9CKWLU4(qTw6=CIpE?M=fH(KL)5pE>s3MQ*k3aB>Lt%o;d8`$%~)GkPcp zHq}y7&@2(b-n)0`Oftk2711g0X6fkVgW6mrA!|Jw`0;u3Gfx_ElE{!OAnJLE3zhtl z1it_Z$-RABOv<$NB5szhnmTRAkR>`0xzaVDkIQ|ltRE-c1eo?CbvqRki7jET`&U(6 zNKap3l$Y>)_T0J3CVTs)ZvtkSsWkcdrN^#|M~3^7#omvh>C(c&gP{mxLY>2i{Vjv< zyTT%Aqb;IZL2}|AnAZVvOBOe!f`s3bfe!ba5R9x{TiY{YdSF1n=Px(rwI=@FDCpfgaN{d?TnB z<6*<>yn7?N%6ZxBKvswL?Ugga!@{z-vBaqlX3aXPESbj1<&C>tHqbv92$t!vj! zg5&ca*(L(C@ktpRBZ(LwXrnQ+_VT(loSPrOqqRzJRs&|C;P7L}Q}BZ;@R5m5g1SKl zXnn55C6a&SE>*mwdauqyda(6y8CS@u3B>RZ6J#kQ1&yt3~ku@+jG#Yxwc-mxSz~KN;n&7&l;E)BtM{<rdz#mx#(y1%N#YcC|q0r~oBLXl)@BG`m{x)!-LY^!pjI4DOaPoKN&FfXAR%ZK7>{cJtgW)Wd2j zhc6Is*r-vX7r))An5^Ks5mxo-rL_{ZAwmFR5i)0;LOY)d|8zT{iG_+?w;_fr3`Rhm7~tm>?u?=@?d*&9QBFPU9`iu}}H z6@K+sfn0}0?EPCutyfBdt$uX6E}Bv9^lV^ekG77XI&Ml6{yyKRS!N0EhZ8UBYkZ?- zOU%ZA_#U1zE?~X=Xfv7DOPiy7tGT(Wchm6!8LBN>h%L13lZWa&1$pQ!;4qtK$_n<1 zcx}jX4B&L1O*qjG1}t7nJ*r{7to75{QWNhkYNfk3lf-0EwU*X_{w+Jb@7YIDn=h)L)Vk}=Gzxqy652f zvu-hg^$OiJ?~{Lc04h!W{?>&XLE%RVR?G!B=-r;kSBtii9n5W@LoEnM^slDRgI#Is z?5w}r*mF^vI2>eRJg3?_#XwhL*{utDj*XzwVPHu&UK&LK+_!>=NZK0|@nmM}FDacc z<@+NZmZZP~Y-TcI;0hm(X`r~C8i1|;m3;ZAG&C$tL?4ASbd3cwa!peSYK_Km%B(zqL`D6+LQT`1*P;Vq%Kzc~kN@1Y6N(BN)c&XtMd>i1ZaMjNOC|C}9P4y% zg8uBi+sntNd;%nEck;;;qazpoGbl6 z+FkPoW`mrf_0%|=_9Rb|*ys;LBq;GyjCd7CVR-ns3tjuZDl3zqhamt4VnO9#B~0s7 z=3hFA%d|f0YDtMkM|kw%wkwNtdOcP5 zx^?YZ(9a@+r8f@l^_A(5@kfqW&l*Y(!;H=6sIct6Gz5g z`?ELp00AC)w1>2#SfjraZHG0Y377g1G>I>R?6HBFGT0xGCIpONZ~fZ;-7{3b{ElN- zn7&)bV+qU=GgT8qfnWe0<#!H*6uBehrUy*RZL89FRkyPrC=Nw;Cyn+Wf7&Yk-QOD4 zqd5=q-mbGT-|cU|+|4+uvzG5Do%6})O}`my$CFbv?(dT>D-(ClP5pC8j(&vc_96TW zr)Vmq6sA^IJ+9%z8BaefU zK3^Ks6gB}bVmDA`h8V4-gJJfU1_er{JbN-wLX9T7xD+PnYruht3Kemq0+ao@J-Sn{ zVoCA~TY^67hNEBNDWr_YrhPxR$r9ol>D-GqZ<zSjG5C>CCZT9)q$Z01K!* zR%|3P#+8pZ|Hrji)U+sRCFoCV)W{7Q24+hBHQX@PFNt(yCR*C?nW@JA!>m-c!0F`? zHbwqlCY1}vrp<);&S&nh9!-Id1=^#xAbLz^@}oZzYcP4~=<1s5hqP$bswux4WV~O) zS3%9%xOQGW2&tR?Sq-lo+Q#;34~mN~7p^%~;r+L~ZYO5VKY-eigN=!&E7_fryJ~clp=ktK*L{PNkhxZxE ziFDXVpEwou*siH4Z_q?k2JH!0F!DceH0{Fx_N<*gGx1uV>5CkYlPKos>gU(74qT#OR>=<6TSyL_yCg;W3Y}4m zQ(uMV!xSIOG|Da>E-*ETP6>88)}$L+j)-+_(<>_>SLCn5HjY;tWwDK$4E7-lyO|7O z{1*jv1i8&dlJ;&MW_T3%Tj`3jI@3F8jtbnBb=?Vhc!RbKfN|Ae{GoXksmFVG4yemf<`TX#a( zcl|znHgGQqH_je$iG46vx?p;885);d?8NeNHgpPXcmoLNW$dEMrc^J&6oC#jDQ9+K z2Z2~nbl?HEj31Q>R>Qiy&JKVCvy-t=**W)jaY#t=8~mf{HUku1)O+~zB>WP7BSqCH zA)k>rniPXVpizd}NB0zQBBsxe|Rs0Z=`n&WH8q4+8{nlf|1P631@ zi4W7Z(AgtKTr$n;vGv9^kZJj;=a*K2_&t*S zdyzoT%w-C1D-o6Oje}8WyS1v{bR=8y4ayu0`Q_U4rtx5>t?P zJ8p2gn&?$QA0-;H%*?#d-u#VT_B!*^m1EUs-hX3VD^NDoh|x_;i~Yup(4ieJO5@lu-1-rrRvW$1rHyR>mV`uU*I<2f=m~fYcJ_r zrTg*!v;Y!L3Xi;esei*!DO+rf)sqhmIs570AH&|mL_^Q_`EfBcNn73fXTk4OCwI57 zRTA5W(gTl}b3u}Ev$19~R(pu}v#N^2_X?je!X|c5s8KtTYx#eqWaOTdVg_SZ(PP(l z5@iA9C2AMeC?wpXlOG^~0x@oa<_KwOao65VteEIq{O3GEkDc)64}>tRcqj+m?oewQfe$A;2_<+Er3P=oV@ElmatbtEl=he@AQ* zXYudBF>S*6aBk|56Tg4`k_%7Bw7YMbcP~qEHl%QvMS$^+0Uj!}`C{@xJqSYJ*KeuK zv)pniTsZ=!9tGjXbST6-Faz}<>su%&@rLwvI(CH<1{&2bs4=&ozVbS)oQ}9(xkU?F#!RRlz%|uDu|}y^3ktSvGA&ciOMQl%#sVni zQtC4j4+rdBZrG=f?7X1TyX>KToQDerx#`y}U%K?j_N-&nszmM~eDI9E5|uf_zqN#s zK)+plR+*8&;3H*8g+TIWM&tukQZ`19;m>xoQXuzQf_-PnM6A^_DcBau6?bzGbIg4U7BBys%i@51Bd3>+d3qr>&S?K9Gw!52Mg4oo_ zAdsX&fJZGoy{4FBV8|rdm71GprZp%=Zf9ta4G5JLt;6<~tF(BsbxX?7|Jq=SW7YOr zNloU3Cz{_?jc^+CPT5MmLFZcV|qOYrj3v=v%?T z!&#*GSnPMOFplw@xC)z40HEukUM@VHJh}5{x^vh45pMEWQINVxx@Rt$2IM~{Aap4sRr)(D~Exg_NZL2lJhf$Xhk z|00#GH-dPcxR=W-51U(ThcFpU`$-$j=n;XK$S}L?xY?$NYI`P{20`(`3otQnnrKp! z;1u=`DG>s9vU?)b|9I$ucul-2;C^7do8f%KRK<%#d&V?13sUR*J*yC&8Dp(y*Ettp zr30?MxPtN<(|9W(2o^2stD%Zw>}I|Rk~&P(A`8cg8WI|6ihNl7VnRlpJC~Q;(`&q$ zS%B@K_8J;uucfGx@dfP@?_a-e`N`oQSQRZp!}0p9*ZoIv@_M!Zlz3o(-Gjx~+Ca<( zW*+MC0f~H51RRii0$uQa0FPD<>lUK5<|PGtYm%5GYMi)HZuWzbHD65TRluDu{#Ct% zdrwl7DMGeCUU?w3PrSjZ@}$zn{^ES$KG;@`FslW4M%<@eZQTtHuf1&kK=YC2^pwH{ zC-6gM zAAO<^=IY&!xNH^dcYlnl&Oe)4Yo?A^3>?pyCv!be_zXCGfEy5m`#SZS#ET!EGk$+= zk4f%h_ooK^Xm2y7E&Bj)_XQ5RYaFTWUM&+FX@3Nlc=_Zq9ltCUK@z}Sgasi6h%11L z(Tv3$Xt&*bC(K9FWmA==qHJx4?pfcScI_Wh3kZ685oFtVKnVC-d6yOg||3FHT z12hf-N~3Tpm~jcHQ7dR4RB`(B=`T#ueGXtK>OIH?sbAAC zd|3_+EX@a)!OTgwfajlYooLcP!Cn56o6nNd`LxouE49mR%sH*ru3b|OXXg7+wzMR; z;tHuH^dbT*!Ys;x4;`}YwRU=Q4h4t+L97K7g=-ZvCfq-Qd}zEku33{;cjt!t4@yBO z+(20yZL_g>BJr|J*j{icjWBJtRZPEEE1=GWfTj7By_TiC1(0)5)mCjmFk7`c5%YdZ z>r<+$>V4iJ-tCt*=ULtIzxGD2Beh48PzaI`(<@XB@Nye8r@iMtD2t*!kPsIr%hC90 zsHa7P!wa`8Nb+{R7HTm4;wtUGmp_tR==SaN$3-NcI8pNH=M*nhq$xo3d{! z9$|-WjS~-OjXm3rL>+2^nJ!}uj(NH}6+U>H|H1psfVWdpzn>+$gb8Z84}z6B#;O@O zznD8k3Le>3JB^|Ttq(Ia(70Kf?;}3QhYdPwCfM&9ht~<25NscJuFTVTkv>=VD*J9W zOe_{Hq2}ScgP%}a&_X5lZZo_C*aXK^R=MStJ3|;aw5khkW~aB45LI3CZ_sETfxZ_P zlFQx?vnti@il5E&R|HBo0N~8yyXn0f4>2GZvz%LL(C#T_#f%Bb`D=Z$I78D6MYB+g3#SHbWnpQwjF7Iy8@MHM_9=0xhY z`nuY_5PA0yqoTOBZ~t*Ax`()*!)_5-4PYu+_!LpI@hLbnt3vb7!BG&+NJP5)+f$gV zQ^AkoQ}b$jb=lU5bMw>YL`6mdWD($r@-djwrokbjA4faIMd+-1U)L2#n(o{jjNAXG z-Pc2B(`GxYJazJ|x82GmE1%_tPP(YqP1)y`clLJg17Yvsax|yg_cu)J<9#~CPR-*D zJ$usgpRF~YI;hRb>CR_oA04b(lCzOT7kx)ud%PI#N5q;M^r70+`Toeky^k0N@}y^= z!~+6V>+RF#SyICx*2^RpjcSF`3nD*^lF;=DhXOTB09pqTc|B5FGE6-x$h)*je5r|X z#DttNQ(X6*kBn$+b>4};KCCifK;kR3WZmhoc(ZdW(|N){Al)KXkQI#vQCGP;_>4o{s*>*HzWRJ^2l(%x05yVmzQ}cOSjd=-` z96{EdHvG^YEk_hSpnZ@rP50hilsY4g1755*L?gIfEn5*d_gW4iSHL0C`_WGdEKP-a z%qF@Q+mkH>;w--(m_ihw5{e;RB}%O>Rbl(7TREq*awCZ4WBFPlkCM?aGZSv!>7%RE zvF*MihYw4FTAa1Nih@vv9JDl|XcLA|f?7y?I?(pC?X@;=x9CDj;aWt)2zPLj1k&?w zZCVgh2pM{~$5%MARdv74Ew(#%HaC=;c-z_bVfR;rgd5&`wKUl7n545XzG_W|cBN_V zNF$rkLQ1U5{ire4^I2nG%e)1{<4ecUSHIu2&Z6?dREAO~oR~ zHnK;sSp%$VqS)qr-zti38Oqrz;x{6mZWKkY$d)u`1hqmG!D_jI(2ZiE)OsDhAr#Qsl>i%J&6Lo*(z4Gyw4SMyOH+WM#ssq^Y84OUQ z-&%b1%w){lRE(0~FM;V;-V=&9%+`nDf$G<;x8e zSGe@a#k-`Ek1#TrlcNO@{zu_5i<0-Xof?a4|6lV4+SY9RCOB0C5yKWC0*y9>Vl=MU%O zfF|qo;+n(xIT4*UqCUzknsRuQvZ-{{7>a;$Flo&ImvJWhFQT)d1&351TT86f0%zhd z4P*9libIlP+mN*PVPAM5P&h50XDm;PpLLNRzNc*YQ6n?!#rceLqlU;>Cb?N_Z`+I? ze`v^2RW;?f@}J>cUHsne|LoT3wL@Lg!T!{wHwVaG`10jT`24i3Uc#>}A@-A$#xyR7-lntAWc2s*$9iXJ=v_(B8LyJ~P{{M(hNAm!(PZ>2 z_jcCbSiM8RsyASJAG~8vr2SqIJaH<(BV0iFzERFj_Ccn*Ttn~gx)*Y|^6>HF+s-W}W^l6H2q?Ml_c3oZ!NJfqNB$6uez;yt5)LpC($mr;&N?Ey2NePwO=hc@rgNj-^|*gvCZ*lXx7$y%HeE z$mTtSGJ}WHr@6jk3BWZLSdZx4>ln8{drkM{>Piih&zFuf4fCW-YTvPA!MH|?7A`FQ zwCCK{AgyO>r)F$Ebno2pk}-=vd7gK&o~`y~cG=Q%NX6Q!d^c~r!~4Kq`);es%`Bp$ zH;M6?&Fp5FW!$gdD6SO`ALF>q+-3sC0gOZ;f!$^b1RR!1^M6IqHWA?>+@KHEnN31$ zuv~ro;PNf`R?;RwdCZ0+_)kF9GFV3!J1dlx%nhR{&3o5nca+jROdVO8C7e^Unl2@P z3aHX}fWAc^wKpeQ`v@vcL#wEqeCW&@%>&>qLy`GNlen|c7B!XxI0AWcmu5I-~9MPM1s#@0u^<)QXD4x zjBUIlVsuo97=+P6WC5@zJ-T;KVsY0Uw=WvlO?{?H+ZBqaHy;lvJNyLBk@zIWwhR7o z3h#wWthuL&G_Y2&@CnSXmJS#6Fm8aVO5*P&Ww~m!zqvk9|0Z1FqsD_K_x8>Fwkj5# zsRd+OvCNpDt5~@s+Orh2z|7TkmviLKL(9ybf6zR0-r@7$;QM)7bO+FDH`$!iNNcD{ z5`#Q;j8FP|bJUOfs0MS4WYbGn0~{1Vw83Efv#ubCPdj=V=a$5I2opgaDCDPP;v#^)Idy~o zhWM5$I!d9IT{JYai4Q$Hx;9MTYvbJI`RC({`BjQihudzht}Akl3*vp-+nFZ5HFM^< zo-F*ZMrR|*@YNO}M%wMxB5 zfLwxXPu9<>E~&43G@}r<9qogp(s6)gQwnr6j3vMdK10a6_;07!Kac{X{YVtu5-#2* zw^ZzR(R!T;)3>2@qq#ys#(#q^rq`uww zRbwDqB>RPC9}rQHKXS7`!TvY3K+Yikh+J#Yv80#;&2gYwLvcl>M_i+65LdlGK7`TmeHN8NHpTX1jws|Et~ z8h)vIdRK;7`$>8?zaGJ)RgcnD%MNvFFmZV&g-i;A`ds6AnZm4WLVN3Xokd@W`C*U3 z*?8XUsb6}4R)hQG5h2;Zt#5~pUpAZ7Y`&wh-!Ur0{(D_h-EjTF1%o0w+U!qNP}Mj7 z)+Ocn>ANO@oM)GR|8U!xI`N&xzeT>Mn;^%x2bW018_PO@I$j|jNZ*=Q?LgOVEQl(n zFcRiW(houD??=aKoYO-W$Zkc1q9YplGiKZF?D)FFEOMo8Xe?ZMklh{Kp}ja9-kSGM zG^L^yb^0&9??;_o{n+f5#=H1QfZF2MgPvkKhXP=C_b&`@%t3G!3Ir~_PkAanT( zV0H-+oG3?tlgMZgIhAv1BZxe#(bjs(5J(~w0|rl?Q0|f$g^cWO zJbhhd%;L3p7F6d96?Y1siwO^{I5N;S89P_}FBU>zap#i?PR>Oqk0C>#*p#sai-+vC z?DBHs&qmakSrkhB$s3qi0?^XqK?n0~w0@cNC8RWpQChw@!e5z-CVm>1*fE)FO>22H zqR(YFBXZeKK7y#X1J)qs1=*K7A$>%<&eZsrLLf9c?Ij0SqJ4 zIz%Laau)QoildtR%1x?{gTGbR5>7j1#ViK0vuHaRZYNU}@8($G9#c_WfwSrsT%a2L z%5}FDA}tE}a+6yYmX=X`*EaCZ4fok~gTImBPWx%oCIIJHQBwEVyT!?JPe~2fWe_0`Ovqv86_872eVaHq@YEyXFBn`kG4haI47>% zzaPcQjv{ctX?{*#UZkO0`mu-a+i7|J)1y^I&(+=B=vUMfx;=X)Ilc$H)8oMDsmLXr zCzr+HmKgWL+-=jxS8++j-M+rw8r=l((Y2d5!xUOzY@p6Z9gCW^Y}vLr90sY3UOy=3 zWtw%=f~<}Irv-5PI>GH?C*7$}C=FuX>ebz=y1!x1=5!2UQGc%b?9U;hra-C@%=wdQ z?Z&NAh83kJ>rYAHa&c9ECO&MBt!d+;-D=%vm(g#GhYf}zD5Dd)R#dc0p@oxNYudDF zgh<&JB;8O28r0%E>hk*81Jj|>j;bWKWsQ_^=prnwku?PnieqzTCK#1)+2zSjE(4Q!rmyz_rYV_}5(|Lz}zFobg zkGx#kTXzWJrQa6dj=c8dNvu2*K6UB4cVoFJ^yZ%~ie~qkctcEZqfZ%M7exEsoYL{J4{t^psiIDu5GKCO_YH{|cGw5}U76_G)#ZGj2m= z=IwC7M$@pjw5F@SaqHGr=blU+;I(2(tr2U!Yjs=qU2W%|tCybM=qKB(ZSR(ro*T8L%6BeyfBAaS>^}V~e+t@&5U$7uqsX)WclXeR<{}!g zflt`w_?KJ6$G%g~n-e@{#mN+kP)@Ge167w+f9rYb%$asS2Gb>9+ZH=;e%l74NQlZm zmc7{K(#UJiDn7UUg9{lTcZE6?neG@?*t>iylxNw2u z(D+|Pf|m{WnSqf}Oj-w3)|e?vFPCPB!XdFyn~oi=DPSk?jEY~YNkV-y#aEiE&{v?Z zH|X^_KH(#i?c!#)+&G#>tmf^3&GS^-w(30OUg?eNT+;<9A~ui(N~^aNDqBRq9G4H? z{=1aP+8fMVsGfMyV|u>;f$0Ep(CQr%d-Cqz*8x(jnAF>{)7smEn&zz?-PZW^x9aJwirCt-QXuAc^NkUc?S+0o#=M?;4bUG)Lhif za-oy0Fnk9!PcCXiXW1RTMg11{KyGS@o(-zGB}2L{P124A^(;3L!IBt&L6`94-E^m-WvZ! z*=HN`xS3LMs91*cnY+2gDzvBuZl|XmuG)C9WMV`xOAI&F77G8?9LsIvuD;%~XOC!{p@ub_&%W3=G9H+f^-zs_@YaV~t@PtZ8#y09Btk)eZrr)EEzM=A4VA;{ zny-n+ZtpYxr&$wfgxCR?Z4qAVzj$#>+LIj)En4|kaO;M2vmBN$nADSlvgk7#Nr==I zmbG23%Y0+#emJ2_nhJNX2?yTZPizhV9>C|0o3_`+olakb1_*Wx2O}}fLU8?Wwh7oE z41c8a50UDx`L2&BVAr#*1ab3CPFEdV-a-MFty2+(|#65T)N}diSI7W zhs<9FcXpo_ZX8+Fzum_Rbve*T;+hg()|`H}%E4h`hBPx8eHxO@1@mZFIuIc(s-Y(4{}Y*Bv8)k%pJ>PsHIhrNP3 zu5VIRbFV5TXwT-?5`4nFt1dSbf^rd_0o8JDr=2rGJUqnr*AS8eB;Smhj1IL4DTfP| zx#@r1e6i|8r}*yQ+a!d}SSVFH3nho*K%~Nqrs$=eMg$P-$V%5}td%Sk#Uqf4Y-5}gb_MS*%h-sJ_ zd!}zQ7}d^95u`;H4x5*Q^TeDBfPLZ4+S@2u<#eIq8{j!A6g0pV^ z=uSUP-S+t0GCk5bWW1k<@Uf;Tw9Oa9HEdx0Z0%_K5v2&(uEMX1F?b5&>nJJleFcVx zH>bVk$Zo=l5}!8IAp*$Obw<{+KaFYN?R6aE3nuW5^}j3p9&=dJ_Cp!<{qk!hiQr5n zeakRTZd`|QaHry#!i-MdifS~*xEj!b@9@dsa4 zdKX^Rbr5fvY8aZ+{RFKAS;T6RLL}p-s;gJYs3eM3uX$qtM^O;5`gGHV?Hu2e410MH z)O2H$iwnrq>R-S45`cHSg@> zhL)2~cDHL3W~tluY(iB_0) zN$Qb9#c|g-yZ1iFOSx-B87yKD2#}a3*^N9bd4w!5sJmQrr(@5nXY1A)~hMogcT=GOPgUjs0GFk$Q|eL)7IqR#Dt40{#xyI zG^NOY?*o%bgQz$JRf76p0$>=#fh6V}o9$>#H!tx?I7tU=?o#4gYlM@g%D$>TrRc|W z`@NV>HBOA_6@$>b1qfH&J|o9GlUpvQ=d2Go$x&JAcMD*Xr2yJyQnS!xWxYrQ7I*un z_U8LWcIKo4z0E(|2Fb_bS2s1;sTjs%T=vA*ogmUt%mN(vVxKwvr>3LRrPv)ioEOGT zo76P=;ljiJ3{|qNJ5@g}Chcy)wTjUltaR073LVgkKp8UQ0D1nYO~Ksm5@$h`BXMLB zS`5iZAVkWhAB7tGOX5?19=iDZ6^)T7pAZr3K|-St`^MlBpFl_m^^tuuk}^+tPBKT3 zBo1e`2rhxdeikKj)B?V{up{Z=>n3htz%M_eO*R4G5z=f?)CyZ4NHat zy(7LcCdM%_Ddg}x&DDSU5I+F%cXZXc_$mMb;qu=~f0mp~^}3?R<&pjSN20EPi+;j@RC*MGZp-GPgh(FrF{ zZjs(lF_-g2H^%xMD+xbz_muSXx`boff2?%b`|)>GbaWxpN4XrQU;KrBY%W`_$7>_k z?aZrFQ~S+sn`wljX7xs_zl*H=W_S^JR*5|MqS|U#N;yxC4ce7 zl>A{!O~C|{5M@MHuhw`-D?3(KT}_dankqm_|Jz$>TTy)XWIrVhJ$oc3F3tuX`vA}J z0bUH}oEI7)iHRPEAFOY#)Ue?wwoD?ZY~+a(i@xOh!pQ1ss2u%svrc}Eei2&!qgG4=;fcL7FX0$ zRn5D%FSF^JY<8iT?P6Tgdp$Y6Ww6tO>|68Ce@-cyqUm|sF`YgAa{PaLI>xh`ljiCP z?dnb;F6aoE+)Sw#lc$@jO6Woy2&K+__%LnN&Xi4EdVH+c^n5beVqIGe4Re5H zJ(9zB5iv$Ey+(%9PLo?ynNb{4OX_8el>U$*XRqD;(W7?E>UI5k{C0Dx4AbFePe54G zYq<-9jC!!e)RmRo7cH8IW%yY4m?Ib0Y(F%s*2B~L>YLr8qgQ_DYhOIn)bqsl|2A*r z2oR7at-4OR*q0{o)TT*EWPZNK+;jNQAtR;^wld18l3FP z51i#AhjjbZ{@*Pc{fYwEedbI%A1{igPRF`Cj^pC@=(0cQ$<3xNOFQS>umUkGSN8Zx zgwH#^=F&nZj;4WLMbX^NS1*1&G52Nl?^o7q?mj)YY%C`cRMp7Ui>SqR#>Tc$@c53{ zZldz>{ap1g#B_-WkEc(Oa_r}uJ01DwOND7VGdRHMB7kUfhFKq`rSzn)$|tmd7uaC+ znl%HuD5lyWDBlMd$i&YiF4TLMxW`!(PhV+K;1Ct{)o9wq9o$ZH0l_riZ_%IcXIMUh!cAA9p{8c{tBwoaamf6< z%Pz)O&`@tsY@v8a29tr=9m`sF_wurl>!`$tLk8)@J2pX&g-0(|`u?h=7;2+h; z_m{Kh!g-t=Jx)1~C*Uog`GdnK7t5`(Id0}cI%UVbn^K9lVAQNrJ2-Od3(L1yCoX4K z^%|dj>PMZ{t$5QIByIV?(5`eKQ!{+ycqAiN?>*MUrI&SFed4@Qt#R@7O86>m~Qt%pB4G`>Ua*^dsBj(f1W!qFheOu>JeI?0~F zLE<@g?mZC3vh=Ag+qZ_bxPCadg7Gp-?-vyGF`0(SzV7tRws!A6s;riY5&UaKDIVcZ z&)lB1ZLU?iY*|=YHAT(hRbPha^rJi?HG@yE=~#4?35@1_szMzD-sSYZp7Mc-n*Al<=H`C z93u9jti1fFZON#9oG)>&PBnxNri$ZFZN#MJz#W=-ge*1@J(0v&q51>(ztcWo#?uTki(l z+={3dupXJ^$N?oz3l<<~FuZr(d%jG1<1me>8T2ZXDbN)1&}5ZO>-R7&K$vsY{2_<9yViZeRtXr_n^3l z4l~e$TpJPt0^xU5l22c(1WJbVIa=*E>(tqNZyu5<j37cpqJ^-gSG{^8J}%};(fI_^c$XiDfdw{ieS9^xPC z5z}H`3AGB|DdTRS_OWXxUh~c9`)p*dqw(uBkKsR`0e?!8NqaHE@;AO$l7jt?PPuDDz{1LCO^;KIX?MB*PaviwBV(4rePuL zOj@y`*P~A_9vPcVdUnE7Llk9H3VGy6OZbWy6IQJnLj904tfPN@(t^PQ2U<|1mg_rO zvN9!MjRhi8K?|15Gc?JKdO0LX1ZWUL&mj(u9mv;*=;FZ6)(cJ%cpQD}K6ElNjb}eX zzy}}K9R^H%j>19Hbr52x5}$9Xs1lEs`f;iVeRyqFe_#pm$Pje=?{p`MuA_f0qQRkR z3>rAUU?0m^;m>W+cUs^2u1BuJHT})@eQ~D5SI{b#90Ny|B#%oCOQWbq>Bc0w7GYZM zup&K(I;=$j{DDMva0SIo%c=E9KXg?~N2fHq|W> zvGvr+mX=NE_ZcB-@JV{z+A_aX?`+0b$r|~O>p%< z61~h?Xq-6AUs#M6xuAb^z@%Ol{E5)7$UIMPy6PB74J(3qluPTWd4tTfPk&o!k^Jr4 zO=PUng`nS%0iin=9ME~ALL{2#?!f9)7A>lUqlb&!sNn&bz?7-j`N~d$MYgFj?^o9 zRUdn&+)OPrahm2bm+Qj+>l3FQX$@|zN$xqfFr|kG^5C_ulA_H{wmWin+Wk{6m)(dr z`2)uv7UaM7POg(M8DtL<#DV(!+%=EO%j*vvyZOU0_W{_L^t7E#d}R6|9?sTV&p%&= zSW{+FgPx8?s>h}N;=_kuH}-Y6__pMd+s@x#$GzY1_2)z97bP1%T!J4)LW+G*3-~Qi zG!f69{XSiECrt8~X=H@qWiL>vwoG04tRtc$v@`BqPMAyCs9DJg-v(*IDI|@~Zf@=B z*LoC<__fP2`_a)4kBt56Z(iomE;_Slv!J2uEIPmdE8SULJ~l$%Fd8iYedP6F)-gXJ zFJ)dDCbJ;#=#Js7Qp$#GI!pugf)Wa!?q6LJE%Qju17N%tZ_#|Gmspta;?6BfHIRr> zZ0k3uFzk%0KfTm*V0gexO3!T7nD|E}8RZ{-*Q3noM;7tOv*mO714y`0v}6r_t&G3K zF-jT(0Nv}r>(6tZ)UR5bcxhT01iJ`gwbesgw`)hldwY=rF>$q#0*%HM>ig<--Rh@0 zTy9#>bNmjH)<=pv4n4nnmxJSFKhwf4q4j11H03S~PEPjvGIeFxb4jqAFhRx}CfIu} z*(h&^MlAeRPR^@@)B*De>x#5e;-q45n%~L4LB6R)t*5@J^+?kxHyD>^Vrnknm(X6u z^kvn5v_sHjX!s$}<5um0S010}`N>T}_&H#~v-6rzsT}2om17+&o)~L`v zibez?OFRLXF$O_B2C;tyG~d4)e%gJw4_sV0zv=WQyP1?*l3*+z|JUuZ zqu1N&2a&-*PEpn{mC3Kp~^GY!XiK$amYg@gdy<5hEp;EJp z7+>szP{*7LS*6P&;s?zm{giaL-rvho*txwNu7~CRY_^RAuIr#Irzlhr<~b)lIbul7 zC;|sb1}8xlKX{)9A8(xB9i2*F_vF5>ACSKB+)o}iHme5X*XOWr#Druk9z;CDkgP$+rw7RY$KP2KND-1{-0ktY+BZNvLkA28`$@KV1Wg8Wj9G6G1pNmZ$Cxza3|Fh|EC3D zp42`RoRJU&iAhOR(v-@7^S{ap)%N}T`OG)aC-8I9nR2X*F*m1;HYR4_x;RA|b@Vo2JKf6QsoU>^|s1L503KzvtHZ1ik6O2J|Hw@|25i#?H~ zG#n*R0$^btG-ES`(Uh}Ws0}P=Y_t?*uU}ho@f%L_1xeTF&|$0>hu5@<+WO&`r_|KA zu)}FGEC7l2{+hb=a#IV*xu#d(G|L`l9n2VGTLicaObUd!(Pxy0x9-h5cX}e2IWj%N zWazMAyzK2(lP7N%Iv0aV_Nzst@$m|}TaO=ac={i8HNqb9*gn!?rUGy+_4ZC=ee39~ z`BnWzuUz-%@)Gnpy_Stg9LlKT21q6KWE#^uD8rsiu+h* z+sXQ}LRj(2HyuF1_hbgeoL`j8_5s=%3zNvbGJ5!m5BmN8Vz>ULJkPG3#i$6%gk%Cd=?7QfRk?)99}@Mk-!*| zakjN``-iHjvLl+`NOb6F3!m*my*1_i&+t2iP*YQ0 zpR;uF`0)Fi9<7x%@g#`7LKXLTJ0vrmvCh~kYY41#G^E~$v5EJ4OU;fUB=U6*@7kcjyso=(J`yw3It5>bE zUA3yZ>Cjv6#aF7ouJ+>@C4cI$@R4_^=y8GJjKb4yiHfj?!Wh*{*rrW=1`oC?tj*zQ zx%DBiW|iMW)^FOhnG!YRj+8-I{POZ!x`BpNFDYk7W~0?1+F|EwgQLa2A5+P${Pk0+WhCmOKhz?coVo$IZs{b9uN z*v`N#K$m&{kFGzD>p5@V|M4tSiKy(6B}>E@8A~#@ipZLZvX-o2$Y|_)tK~(MZ5Ya+ z4cT{ERD+pODC=0tlI;7=_kJ|j`}X_e_x;Z8^SQmRxi0GUdOjbIb2*OVJkGqtZU~Y2 zExm}($pMy81+Rxh53K9G-Q2oPo#A&5mOi!JW8bdv7GI_>zkKoHYG!nG@u)D?Z+bOl zW9cgb#x|Bdf|*;J@fSjvAnyr=I>u(lI#zyQQq_0Nqx0v_uf2M-{fF6D#Dezs2T5Oys&8`wVjM>@Pg7RONbg8qr`H>%X#4m2X6i2g2U3*oc#PG^_oA8RxE)LrURMyFI_f>`$d z_Vr8EgEynMA@o}b$Bw81>5wJwr|IjzN9C=z-QUsiLzAPOt|a^Zm^kE6i^$B8+lm5i z_wYB~I>>WK)mKM$)*j?i)7rX#(jW)?>i3t!~*!UUMdTk6g zsC!+&=P~MT@G2qRv2RVajsPy*Kvizvy?c7j*@PvWop3%0U4Bclh!|1o6efbk*z6o! zuhaMA53E6oN^vOY1gt!iEe9~==21OPJ8k%jNLQXS=mucSqmM=nzt@m@gQ`geCXO9C zxZsq}`xqGiYq{*8vlF1zEzCl3tYG}|2cPVOm1qv+5=`Az1g`pGf6|ht?APpy7pwME zQ?lCl){QyX_ywCHsld<>M#4%BDn5~Xy((MDAqYUS@4MJk%d?DJ`$ zFKvzzcN7~NJN3NB@DoEWzU}pO?w=Jc#hIzBFf&W1{KssuCc8uz2Dd&k0me_2GtK6- z$5$+oN-P9kphY_8G^ zZF6mg%vsqeyXiVYMj`Wf zNrjM&a8r}}H;&I-9o%|b3{q`)bE8zMG-e3PWJMlMtYU3##zcoGV8|)il+gPF?)bQU z8aW`LisTXqI|dZD0`7|aXY`RJ$nraA`WoehE!zMw3eslcM?ST)y~}`ys1qd?)w7C> z9%&>rot?I(8#~UfM*j7)+2PF75Tot~iG)!#@hH7Ge`k5nH0-qGEz_yf@4*d^l*hN* zr@5@D30%H+-tGB$P)Jyq7-?4WEGB}LExmB)q4Pm|@e%4MNjzHBERLmrVBiuiz#fD5 z<6l~fHR?dWVA=J>lS2#_8PanGEC9k-TP(9rDJWz zm)v~Z>ZF&ZbV@~(0FY6}#3bB${x0vV4h}8yV4|8l>tsEsE1D~O@vr3EENXMo<4^Cp)U%ipPYYVF`66uIB1y7Zkw?@E z1tNH~&bxp#$M{GZEoI4o4vjBHZDVbg7Op!+O(LNH4^7*Pfhd{%_OnSkOAS~b$4^r2 z{WpiLD7*T5+<7--s`mq#qoA9WXB_p)0Os_J&84e#-Tso%W=6Esco4Bh z+k`gDV9=!m8)K5E>F;M_Hg2qdMSE?QxFI>rq9MnZ=ZsUeL5m5d%u`reMV93%6^yoM z^0fs~olP(XccI;~@!3$id2KHGOWT@I~;1&{3azM}s$wKs1I{%P3>-zhcs)j=QkV+}ZwYlFk z^m`3y8y7C@8kF4+K3FOOS(xDP$R-XK&{n3N7HC2Fs8K0~b3rlHuvekNxv!K!QTdV&e+NH3)gKe3q2;)HU_`zUv(j1+ zViozv;EE|_OF{y8Gvv`|n{5{;c75FZ3J4Gg148Ll!16MkDh}#{j!o;Exzi6Wx&~Fv zPw=$U)+t)0X7frLzq`jEsYBqUCW?$`l9LPPw8fuayg)qJ4k}w7?D1R z3ICPMTIbyfOR}_X_wzE2q(9U1^1G2+6~R5lkeMf+XYG!ZkA>Wou3tZvRf!KB+do2J z5Zx@$4RZ}0r+~cX?{R#(4@p1`zyf+h0nJ>O4@T#vY7s#77DH3HDHaHsu;&6=JlMTc z&CP|KvKgtXSH(;dckBt*eIP{7Sunbd#tUxtU29naqV_e`;yupZK0|DOg(dJd%s;do z9WHPourp6iMgx)<@!NO??(N4dPO6FR8rll2sG#NCN{ZHuBS9qvgC5Wt`NgW`#E{P? zJEkeZ4!91!n$)J^3b27SB}YRe>@{QuO%*<<<;h?nlAKBsr{Kla7-Q3CyB-|(ui3w; z#eAtaupMn{@^y@e%z30u~eG>u_kLIw5#}xV_F@ zL;8Fp-37s8d|>@>@EBjWLdQ`0pfYr0^q+FLmvcJ`3BNI8vYf25oBq^km}7QRjcy`+ zk0T@`Z~e3O=B)m|>Z+nj@JBhBytPU%M2_V7`cXXqAJCgtq|0N1F#W%&@Pg_0r~ZYc zvO&X!Wr;e}8K5o;sR;pok$Ey3^UsPwMufT&e`Xe%(Qv16`eZ!9N$%VDj{!|VMl|~j z$tTl!PWyqtypcA2S`aQmX*XjDra0?_4X9lP6}Og>ONUAN46q58Zxa`OhkJfE*Taat z>GlRUdQ@1&jZql>(Q@(c%2(5f-L@9T7@NRmTjC#0DSi9;t}}xY6*xm{0!C(5V*;qD z=XULc1*q0_e$>NEt8!7?y3#aDPFhmX{jpyQ)%aN((K8G-FWGh_?G3sDadD*fQ8tko z^DlN_b)+^-SVg+}pPx@vplvT(VD05@z@v#N*mz+342E9NX>0QZqAN}{L4QSXvU>wt zf!bti=HX=zNYwPrE=Y{xwIGTv1rw{UKoa$F8!*E)1ht(%L!pw=;VQrv_sK3eY;_N( z1Rj$QGZsKwVc06BG1d{>eB0X1n^&MEN&WX<8-CKd_P;d7#5eW&#@Z%gPq@0N6e+oM zG?de_6)nARL2&E!M~VOcE3@-G9PefCDF485^jM+`0{*v$mhTSZ&1UFYw$#jqk$%Q&Q{8aKwGG?v zOJu-WD+bIhb`WXktMYBWxlx{Tv*i`#^y}jY%Fqm|6=oF2*eowh^rDjFJS@Q_M@1@1 zAu46F*$aKEX#+VVVm<7C#~T&``nWJoaG;K#@6FW<5(5`BDp`-J>JhnG;>1lG=iu_c z>#xfi#)glu#U2YFo3`NAN1V zTc^~Q4RAwI!Od%aLCSb#H*el{zV*m6s~Y+28`I~2wO=_S3^%gz`RAS)cr-6|cr;yr zi7X2jO}W~RbKa*oZ~lh1xH8xh4OA9YnckC}fshUa@3(#emxDE#4$K~6g8VM&Fx=ax zTD_kfR*Cpb#;gYwON_*N<9@L9yG*F2+gv{e7q)P`m;kw7rg<}=s2nt;s^L8vGTC0a zCHM`DVG4q(xi zMJ4ccJcYs8$Luu>_`c8jR-w$3`)0?dAklpJ=1rrh9ME4hJ#C*DVoMtldV)RSQaX$Pn~*AG4P_HdkOou6iOVI@Qx3f!d>e)Oo( z)E2ye$`YLb!nlI0fFb?kG;lc!uX|8bG%5j-I1l?_1(~shk9P;8WY=}Agv7)PICIXd zS=i}1h)IdG4t$U|n_SrB1kEqha%JQxD}9=8Cwf!(ShoN_;Slt!XR#8HA4dlyPftLC zSMf){dp(IqXD(k}`)I#1AZ#(B4onr881$E>CfC&k@{=Q`R6p5o-edo?zRXIF>nJ8;`pPW}w)2hni zHDcDF%D{Ap(n*Cg6J3lwW~zOeG|8Mwiy}V7aHeUg1g|A>TwuoX50` zO_Tg-92$u7dwl-dVRM$;{kO(O@!Gg~_Rm(2*e)lA1 z$V_No0sv+}4E7B@^o@eC^@RN1yRP5u)F{RsoW-;FqWddc<;ZhCVcf%uaSSew?tQ&9 zfqxwi7WmgGU0^7&ep0U}5&W|6VOtg=1zjluz&^vaDqx7=Y`Ks@QH|E)EFL+!*C&|) z7og$Fq+m>%d+Q8bMDFepok@x=wo%XDhHUJJni>VmVy3`=-nZ`m(tu8m+#jic zF-eKsF$#DEEHo3GSAuHTIhocnnU1r~uKa%Iv`S6|KBH>#0H}exA)wbPweXx*?V?J@ z1QRWbV#Fh#Jnfs*FF{azJ8AdHbgqg4Zd}!I%h&TguO2&mSeg{*y}O=Q&-p^b>kE=> zMe8#i;k$fY_POW$(X+CmwR5ZmfJDL`^9sJKa##ctE^jmnhybF!1O}7;nqu}n znM5NS05$z-LM_VEYlU8EmnZbX}_Y6KBj5c;%fzMywqBq ze_Nc_4B>eh;QuVtG%3_UOe3C|b1WH6fR$E#qxCzs3~Oo!%E4u z!GHWP@Y?OpvHkya8hjwtWZ&1zCVR;c62wqL5H#F7IIdqUCB57cwE>!v_{F&&PCf7R zW6c??Er#*gGvRUz-4DWqr00)(hMKE}qbe!n*#YJl|Mb&O?}JUltgNh37=grh1xr;^ zs3T-LBkAW8T{%cvH-|KeX4s!RLe~F0G`cXcV%t2P^#(_ae@vB+fWoZL1DOPXdfm&y7TAfWgayUIOxL90;r&*lMKa%R>$Q@oMg z20i)5jsGM@pFE>DNC?sxMBRqp)=P>8H!fhE^RTOEF3bV9uogGyQv zJK?X3Cyty&+MSAeC^yl&nb==SLVuftYaP&9>M*mdORPPwyRco0sjXh{U3ClORjNAj z`ymHYuUuId-2CY`7_9)rO=`-(BMI_nc6(28Pb%6VFI#3oR!DI7@4uVQcR3y8J-ODp zzrFqm+IXP@Yf@o<_88KFHWPdPAWf{MLY~WxnuZpp@i0)M#*gnw4T*JS$9&87HP4(q z8;3&IYH8-BlXGX6?xGPvtH^QO5iDM_oNV1(5j(Y}c`4n6m8Gw#b@HPe4G|Fxdi5p= zGlJ|)eet>=vwVKky2DfNnboXS%M@q)%^WEHY zJzB&?T;aZbHnff4Dbur^)}%vd#?i-B-E8vWSy;1|L@Fz@&_A?JX3sigoxW~~ z9?Z+bp)Y3|BY_$e6`x=&k7}QeZ=;y?^dsb9=LYc|z=% zh&Xd_G_EKsnMdq{;xLv2vCr_z7Y6X0(;{bk&aI-xhgr}RJ%$b2B-;T{jj6ruhA>T zc+|wqj!9*nz&Ko&7>`JGs_03F;l+U1-b05T%x%$1gQhe}EKKUSWW|cHHg3CM`+7F7 zwwh9bYGMU+coCI(^88m1+WnsvAfV|+nmH#J$2Yvl!}G4A?pxluZA>G+F)+QJDU$9q zr;6EEsE89dBA18~P6Vz;j%@}*lQAC>L21lU)6}5qhuN@I<`_L4?)~EH&-c(qHCvvnxz3%h!2fjVv%t~;-0e`Z(<9tIw3|#1P z^@F9U@X7Y)KegKr`xHp-)qnye{IHXA)(1DgPct!&AB9e7(B~7+cbxKOB)_z;j}Lyf z*3i>0x+b*Ap=@377&!u5mrOC$4g* z#a{N?wrtr_@Y@J*)Cs3O|80M7DiXAkZi{8)AIxhFjakarGUJcK*TzgtS`ZO&ruRMA zf+GMbCP+`o;Badu9GKw*(s419Z+GEIwu?02erUGD{N$SS4M2*$Ekr3XTQ*$K}}#CVwC#H`qPStf?vi9Gf>e1*c$S04A=<5o+m(%#kdOp=I{R4}|{ZOL8#Pf*G=z z5K2s1o>0UIg3#D(>Ai9AOaw%J5M8K;-1u2O*&e1KqFN$B2ai>N3O>oGIc5EK^tHM9 z^KM&$rGNzjeeS_YL-K>xG3AyGvLcn*P_)hKR(VfeaG)CfeV zAc_3kXoHu%48~I6>loH|5kA_muK~DW%hs)B=FguG{23iw`)LFC5TChp7?&AnVW z2ezH3oHXp;0c6f6ojk{rC3w0^(AJEkp!@uO*In+ZjE6P;C^a8+rG|3H`u9{Sm8h!+Z%DHqYd7#NL{9d#Hq@+ICb^&2n zBpBGM@-FUzd*Ej{9muFGe(yAQ36jV(Her$f-!nyv2sguN%yKq3E@zOkt8LV6)W5ht zcLlHDwAJUpjT&{@$=0q67t|4%5t1oc+$^j+?|muy^Z=XCr26Cte?Pwk8eXM8VA3|g zrssB=`Tjdi#vz%O+7J4$3vCaMH4A~I)*OCJ_r|=k*0ArNc-0Da@}Kcl`|&5Z#Nm_) z9FjD~3y7h9HjgS3K*WsD^G9G3S%$so@vGk4zjyBr2ogY0chuG-h?bNepI=|>cl?WK zz4q;EqUjlF;}W}n(slaAYRLgjHkPm6f@O7K!OH@-&Hwgw&hw$=kTaVy6s^f}Ac8Db zE1{8%4xIbfN#Iyn^?}+ugVO(}oMj7%?mnLL1wSg)=4ke0}^|u%njG zcX4$M`RmXtD%p_G&^ugBbkE;Y^=1bKHyA@w&@}WOpJgSA#Rk;{z$4Mga55eg3JD?J zo?E%ckRFtI^27aFtVdb)?)#~&XstDZQCPQ1|I#H)N9Kcj_d-crFais2eed<1sCas( zmtA{TWyx?TY+cFrciKVO2GIHpuXyh^)v?xG1_fwQ2*~^0TOG55hE~-s5(Wojwm0Z* zA2SlX#pM@(Ow&2MB1i)gi%EcGc$k0bMi;u6Ga?oxgyjY{Dz^o`W`dk7q~fd0tNSxe9zKG4T4$;vf^v7HQfBl=Yr^e!ziZ=gSrW-qxg zsCIVK6LGUf@fCoQGmy_YfMqh*yvHzbTZE~QaD?Y#!vlUFcSe7DJLjtK*t3%vNTinY zcu;^h{Xq|yAw))6?^R!R@xlc)sxYq^SFav%zdWq+7Z%Pc{_u0sot6w>2uq-s3W!OJSu0`6D5*UDU3hS1&_L5HXc*O!oLz1m1 zUKmU^cts*LP(bed?ei}OPI^4!JhXIhNTbGZz?z?0-%xnix;gD57d4gV@S*ji8*6Vb zZrY#oT3$@5ZAjeyvcWkJ`;|k5e49QL!qN#^;Y025ji00 zY}(j*;ipM<*ziGc3@jSo>=usIq<0y{3uHLu&|{&H1qgs~^zjL0j43?i?{_)+G32GCznZY7kMSpw>9;U= zbocjgK3g+iI274_1DU89Ko}?$Fn?^TS35s7cO5jCp1&y{gHRP&TJlK4$q+A34u9I~dDk_y2d)0|V}cVG zj=rp(t>jRh)AUga9s8y!5yM0=L4OUj)s4&GF!gQ^`N~7MkRN`U+4;qfm=GWkav>Wn z`1UrG=W=e+r=gjEndz7d@;%1v<)qG4FN{*M_rY&_=%nZE_J%S> zY^60rL!U;F8hy~5=h-QhDIi?~nGIQ|zz`s^v9nkn?5c|{#$I)U_L%@2mVD-2Vayy!ytK=LP&5O#wZOzSPt52gvb&L#ZOFt*y^G8E(AL8DDG~T0)nhn(?>UmW4}C z7CkP#uKw08Yp}<3ggWpPXPnH8G-*V_bi=(C493J+KRlAGKK?hZ@>B1Ua9~=g}QV30LfOM!WeM*065%V8{1b#D(SO#RAlpj zU-Fir;U+R@U?tzf9+#)@s7I-w&;q5gxRo$dikrh&(SaMK?&wWFpbHjENAgp9{Oo26O`5fmqn_Fz; zo>y$#cVh%_N3++S8%oZG=Wy_X)0{Mrw~8cN;A_UO>kB_b7lZvImJYz3OmLtFtOg({ zg$@TPdgk!Y5+yL5NBq==L{*4jC4V|J9potzjNbz3ym3IkBbxyHD0)zF)S{ltL>^!Q z@22w#F!sMBi&BAA7g|T8!GjVWm%LF}LzDK@!CDy0-%aCv{U6-E{J+D!dS^-H8nm&t zDlSlF1X7w|dgRDsBv(paAi`JH7?g>74O^?|hN@d)Bq3z`_Qo&)j~Hu!RHy=%q)pXZ zX-~Jcctq@HU6$B6>ex_&p>M)DicL#ORn!!KJKym}M_X=Ax+C!$S*?Ih7PNni&4Z;q zw+#^Yjdi~xDTB#WQR#kM+i{oTEg#L`qq#q%EFmwcm^0MrxP*JQ*KnFo?9iI26ec4} z5&0G&NhanT% zHQvX&Z&!}JO4;!0-Td3<_q+EDtl~SMfot@V`Wb)vS>*b3Upz5%e{Y9%{yA61HW|Hh z)VTpy*S0kGpSaw0d_;fuMopi5@|`#Tuj!w&vZHs-I`mWB%lD3k{j&M;rut zsi)N~J^miKx{>9V`82{*BYAsYF@EG(qthHm$d1HOC!h+nvqCajO1h*`e}`%RIUOFC zJ|)M4VmtnK`|rOOiGz6d?%?S|Co#^glT8=tOhzhlY}2AagEE`vyzIH{+27t?UhD|h z6+~I}cvHSE3&SJLzRa3EV@4N7YiUJC?yH_>M&FQ5Tz2qd7Ln+loG3mS{}h#hKaAbKKlk0KI0q(#BYbaZ$h1(uBK1X(zfCr_cGpOjc1315C z6JT$RKY9yi1krieP2Hhrnfy1ami}^|JZ2LYf!i|qL<z~d1Qoj1XL|qV_p|u-}V2! zx+VC8)G1%BxrI~r69kKnjN}$_o1F<<6ZbZZ8^nlo8EHy~3>oyWQWTACngqcNrXkH6 zcxD5rrGyhG)Ho?&+lc`^diSp4WK2tZVlkrUbaZgM-J~Cvj|BwhqGxd#0$(?I3N%2v zEu(G#_;LBLK|N?}i!Sb{q~S&IV6VX)FgKAV6{XEMqR+Mi9E?TWJEmx&*yA!DdUlfb zuN4r8;p65!yZn4Ii{I8kJ;^i+joFI9ON)j9$4W$r{w4lh-R->T>YzD*$>}5tO`!AT zaI}27^Y4eQuI60UE&r$4gF@Ak4yOSp?4o+ye)MQ5 z+KSk%7M31m>ZAMF-?*v5=*sKN8zjG>N}C%QMZy2Ba8)5kMrS2Nm4 zCXAiFWYl<Ll!M^4&~$} zcO{9)z{=C}qW$^)>#3gcl)qHeCc%H-!Gqm7A(Vol2HS}E_$HFfkP)+j@j^Uw=ZWc6m!yp(JX287(0Z#-0r%EhJ~f$D8>9+77Vw;xSTE4 z=eu~-QY7LDW`H<`QmUBRxV5A&y+S->L?wdfDE%QitGu=g*G2Rg2f&mH+~R;-o&WRT zMBCC#jQ{)k^M_w1UP&oMaO;W;Hq>x&%aOx}{l0zuqTNssHlYUCV^^=5ZGEjQ%dyVd z#x^RVb82Nv%QjQ!y{M&KY2V9^KRg>Ur7TU57S2kLOz(Q?o%OfYEl-^H=nssbCM=hV z_ua{x-%w?0>+5s;>==PQk?uqRCHHCuO)!H@dVRPh{{@($totaZ>u!4CLJ5M;_TCHS zR^pkdjEwb#mT1xWA2+USl{cIZgW!ipo4DWiXzcq3?_E(FtDXfBT*qQ~O2t2o8`>sT zhx~+OzDHeOS|fv&6^GE52=s?iBX|$r`psy&e`?(Zxbv0);zN4U%ICf{+^$N z)ZKpCMyJ2Is5m_bj+aq6;ud(pYiwKeTsTKyGul&k}_fL@QsIvhXTTz z@DY*JT>WQ@FCXRKP#)(>TTrWQa{5uJ#+djqG9t0S`fp9Y1`1-1dp2O^X?{bqNqdvc z0d=QPy>dqCwQ4n>$k8?U0@4d90|-QWqn?kz?d|r12jMWp5MikZVYR;;(>^C_%Ulx` zC&VNVDcNouvtqa%jtiiW4d#7(Xg6-cgh5^R7Vpz0PaqV+`yzUUoFJk^ z4iH3|QS_+D7Z?#E91<0`#`0VKZM~!+YZG43Hr0y2Ou6hlJ3dG-W6F;7O+V|hKbDY2leRe7B`(ifqEKcl1Ihbwbh*}>bb4P%?f!Ma`qlYP3n&9aQ;-i zxar%0&ZLnWG2+zO#viC}=(tJ~^y;2i!-^07MMZ~wkAWu`m(kGr(?6*20#l`RVHo(4 zb@SD$SKs>7en-E}SrkcHhhsFq-O9!d8y@$lPUj0T)P>jt4w$Z?Cq@F=SvOyJYQ-`P zs|7@}ePVv{)gdET&t8lAeAu&E&HHU~ zdXs;ud|ah%tO{09N3N$Ni5a|q+(M+df)}{x^zXIXThaV4f>8m>FWa|=tJe{5Om==Mw|k34*aWU4ut>G^GybcpnNn)DxHc-hsF zWK)(&iDj@NvD8PqJ4Ju1LFXyCtGaw`DmJsS;;+tiq!VO`==qxmS&VvvF#$SOJoCCz zL5}G7E5t$a-~(oal^M(llJmm=x@{3t(HRLk3w?w$MNRb8=v6cD^^_ipqewJ*d7w`t z&XH-katqN$l6k@S`|sR+s4WdYL(9ppJ5He9CVLAU;i^}Hr*E?^<<|{-L}^rky*6b> zcpQ*KUKTAkj?b)2`RtsX@J4DDTfY)lWlTdC@mLBfv>d=XWk$e^ePoR@Tzf9Mzwy5s9M>n@1~chDpP^I_QReN9E{{T zv}lIwrBrOl{V?^=N#{aSO@$g( zW?j6-?*yaJ&E{X~LH#noMfdTcmS+`iNDBQTejPO+&9X7KXf|{oRWTvo``2jypdbfk zb3S)HAJd~DBT?OnPyP&BfH->fY-}VCDOmv_O0gf}X*y`v&@`aG=NO?$&jbcxY0KwPhXk&Y-Ig6ED@$Zh&SY~*evGf!jOLv`$Vo0gY}mi< zJ1T4OtKbYeEnI#>%^rc^yePghfnUx*!JhPMv=Wkpik!wZWdW7-K%Y+z=F9S)Ai-e% zzl^Mf|C>X2mKQ+G6LrqG36O~qqxaV558>#MOyf!4aA4M1Uo;%s+_u}HwBxDi;qd`W zY>54wY!d?oSVBLDAF0#feH7)BMU^ULsk>zI1f__dM<%sTeLmi_pKKGu743nVSsqjX zp5wKbo!5y z0xfRvb`r{|uOFMqnU);m0bQe(NPxY@ZvrD@BY3$;*8$@f zH!{+2gRU5NZg?A?lQUkF){oL0-27*Ql6IP}F_QN$>_Rz(udOehQI=?H5}q1+Ffd?Nn^q)OM)uz{hc9<#WSM@K;*guFxZzQrDzfG359SD4`< z10b|LAOU_3q`Kx+NGQ&34dZ6rRb55bt;q+?k)^GQh_9%nSTZZe?PVl?NhSK}k$ZCX z^yq@5qR5mwy&omnp0rh+tnGZQJYq;hXdc{XCpypCd8ki?S%bI}TE~@~{Mc=`w+;TQ z6v7LsR$a)6)R3;OyAgRobn%CFr;Gt5Gc8}k*(jd$yjbZbgpq@SXS)Vg&M z#1{8j%}f0cWpk#b3heV^A$k{4ogngNYnpcG@G0-s9%yA(*V7X`+fejcvKfjFln)Vi zp-*G;18J?;!78&kcH_w{d;CteAJWiY@$)r7@hpk0bM}^5TFfIH7ZgN|yi8<>{;JH; zm{54&TP8-FOc8DuV39k!Df|2&yEH`$`AD6%)_jetYw&4|Gz5?Vl=_i%Q0Z$9xK{IW zD&DcLf1AI0it^^X5-ISF8`Morr$w6ut!iYMHyD^sI3~ia6>>E3YM?Fd4#CA<`f0R0 z-s|=jCl5JPktD&-=(4r@_W`!56&^mcnaxDhkHNSd9q-}e)Nft9Be7VyZoDP9$yxS>dpKjarC*IGrv?S896 zCw@9{G@KPtNc&fir!VzRZDE-nZmv?dAj|q;+QwPWXyBi} zc#*~rk4;Dro9u|q03yPoajsrVF`q0z8lMH>AteKS=Fp-Z;7N5fea1y1X(Z56nuhD*%HlnT@c+Fxa z?(s}4RN#AYuDZpH-L+Jni3D}+tOsCt_Idcd011!4HN=!areG+4+HAsZ9uBExE9k6D z?6nM0I3sq+*-2kFOAZ5`$h?Njz=1S?@nQT7iQ9$GATgyzcoTxj5;icQ9Eqtv4mI!D ztCvRMX|R^j4FPm!U`kXuG_uH?OrcegXkSBs8`7zF^&DNjLW%5=`~)#8FqRf2tykUx z64SL=PT%Qajlr{mrqKk_Sc_}%r*1xtp31f>sYdhQV3#{n?o&{K`+R4lNkm4;0A@&^ z+~7qFv%p{+`Sh)0iOhlct2Tbli_GeEzr1^QzTs0&Ckru7q#tEr!kmu}cc|3XA3=05 z_fqhqWAxT^<6iF%^ToJ;es}~@BJ8c7SjxUh6E5zO9EbQiks$gsZK4oa@#R|NXzo6K zeAE9Ju}~zZ6ng1QZxL*riGQI6H`me~X1{HYMZBEgB{umjn_!l}F;4~N<@Y$d#X8y7 zt7jzD8Nel4Af7i*%)F#5yKh6QPp7#M0XjrWi)ppfZyhT|DHO@9THA=Nevw3B?i685 z7L_QU5>s|@?c}XNZV|M`f~tH!_m3lf7;#d+fM2P~oY*qR2Ql~zu5}kcWgVY336L?@ z#fxbOgtApFdbiI`Vy$Rb+yF7@TSF*z%K=qdulwQT`_jO8=-A?OJgk%d->|)A|0X-T zzFAA`m(q?)Cqm~!AJUoEE8rfkHSKaJ15MgM0sP>c9p~hZmIpN~wTLrv=XRH@EOTd9 zUYc3Ex3jl@hg+c*9?O42M@hv(f~-HS%E!*A9T#Hi!Rcy5kdJeEB-0NZ1Zn+HhYub9 z1jh=t3!FLBc7mK1u}5ws3pV3(mG+}#(_yMNJ7D}n<(fb)h} zSVqP#)E*>BQ;@#UsQA!QYVjnCmUhoTZW6RuA$Qu!m8EYQl#*rVn^!CZiF*4!BOHzmo61n9Lf3kTo4LhHe>mBNEtdAlkR44)=22K3lqzHFM*{`I_jZ0hNv|@5sz#jFt{oIQ zfma>Jmw=g?n?2~QKhtmZfB0d<&dc%U>X@KJNH3-6BX)1_C~syaHeWU&$Q|~jHjRu} zz^@m31L&MiuH(YI|1?2clfaghnq{v*l5}9f1gK?sn-vj>X%vYL?6pKkrE&#Ur5fFX z<(JKLgsB*yFeRgbHM+=?pPqJrjPJwB?-iQtCLaAX>-UI=o4uH80(K3;u!k{@{`9qn zUL2lcn|O@PUpZVfNQI)U`BCoMKF3y=e=1FtzT4=^9*b8p^cxaVmRWDPh{SxojulvG z;W>c70@Kr?C)=~#occyV27^bH4J8dj16Vtwo7bkK1m@Y(PLvif4z<%PSt>q#P9x#Q zv`n7)D@fB><5()v^+LVvZoL|=a$hlp3C~RWAWlT3IbYsf2K=A% z<_bAgyP(NW;_BL1u8oKvpev*~CYo#GT+w)e(BdR8a461mNZ>JoA)y#qb zO%D3AhS;}j39M3uVvEVw-!-XNI~A!v>n^WUI@%W?MM@}c*GP~;V3OdY42q!S&fV6l zy6C99W?%~_xEg@tJtr9j9{DhvkqCabMt5oW!oe^@58$N8a>iD~YJ@1UW{=2H&?J+M zQmNy($;17hP(;5je*cIp?>?fCenA%kmwT*scBCKWFlfTbh&`+8+}k;+0Hnqeox<^B z@PxZZ(F`Zbf4=!}LeRIbbA|npkuxPZ#4PRM&hrW8U&p&2*t=I|$7TC^cBElwiH76G z(ctm`P+x9GP6lID6|iG?{}|RG7xZcUu?bjN&c%x^RNdQttI)#{Smp|AW3)~fIlR0D zFi=KPb;GBpSNInswl&)QTw6*M2>LG%jGIxR{NAJCtYGKw)G>Q_Z|FR~6Ng`J%JrYU z63G;}86})r1Z-7(QvAAxc3#(O+W?t+Ff2wf|82_z_yWz#5wPTILXFa?@vN9f^i!Z@ zR9k1ut#);ttl}DaSZD%*gM?|eg;W#$hYnpvf^q>@;V8R;@G?cL0OLVGvrM zlXGTnyR0o!B+QC1zd%!Qj9*mEpEY~-Rt^UaYFPOsrR<82H$}vu^~lUpfY1;0pET_4 z!N04~a0%TYOypuRUy?tMw!3%tuFNzf0(^b=RoE8(GR%?`g&>c9jG|Jk&~C-@@QLZ? zO(y?iTY3Qy7wr?IJwTmTIr=OfK?c!=Rz(B$z%>pS-@3P(3$b4K;DHJ4I7h~h|9Rt- zzMMM#xn#swh{X_3ASWnz=#sR?y=)WbB5X$h`5aEmA4kP??IsUDFuWh>g5pl%=w_1^ zSf*1Le@9cU4j!znGBsCJJtS-@Ua4t&uWK2beiZmbQ*|7wrb>5|K(}!jobmN@d#%!V zc)Bu3BReG1Sdq>w%&wFclwy$li?GF`wQE2A@RFUJW#&nx2LJizrxUW>E)N7>-`#e+ zP;;o3+pc*HC~yb>+OLY#tMl#cPGiXkreaj^f0qBvvw z_U&t;rHEX)xt~y-z}-MZGV~SN?q+$3&=X6CB%wkY#cT;qbMtt65Y)2tv+RV98kS=ustJ&ifY1X>FLt5iv;O>UV=?wq&(Wf>a&rq6tN54D1ByZ#`NbVa zskCd?SmV_vcO5@on;loWqFPhoKMXXC_Zv=_$bYo8{Fg6ZEJ3Z1+fh@Vj+auXAX40zfA; zqR74Vn=qjnr#8;GDdH3yWgMB=LpMrU^&-t~iLSV1UKwI4;Vo{%JH8Yzv;Z~Hl&MqG z?KaO@#GTVdaR{Zt2?zKp_*RBt`vjxyKXKwRvXAy4k^c{N*}cHMS1+`1k*u;5L&Jy2z5yqhdSxZrk98ptyL)?8tFYqwMeZAF=Gc6PkkKpi-OSgvQ(% zl7)8iL*jk1%sQ$&Kp|7gTmf|&VMlvG392SZ->sc@vSK?ZMPM5l3gxy^g3{;n*sFiJ&~3Qc3A9Zl`5%i*2BlD&Kc zEwS_3C6<_2T+404+O=y75e677px=&VRvUrOi}^PDL%d2R@Wz6QhA`*6qE|ziE&kC;<~b64#&4?$@SYwMF6 ze((0|DKM>MM-;Rn24~mcWhlWZ!WRQK_z_0+0gO`7MpNr{r9FTC`09@s!v>(Y+5Pi^ zxo@wI75Q-L)VHMj8Kf}T%^5Ag+NGU!s;DKAir(H;!6`BU_aG16bYH#Ar+F4gC@pUV zp~NgfCc8qeDYt|2D7!?|Z1U9uOV7T95!%9aC1Ik?=U zGDhP6FyY#netAC7gGQlwk))xd{bw%FD}h@`Lz7}`1ba%mJYf9a+1HrWhJn^M;dGik zTC#Mh<_maqB3fd0`Cgs9?AlWbBK19dB-{?4nA!b8U2+HVz0F2LMEuVe^Yg>tb3w?n z8lQ9ehc+2+II?*!tj|R>Su~cesaHUwKBN2 zvoL7&)8al>L_(d=CcGXfa~Uw*+m9bFL+>0%&8rh+8#l`!M6oZfy5aauYw@V$<-kGn zp9En!0f1;lx0O!p^&da}L)Xht{$1((F_=xX{dJSrBLpw?@U?-F^D1AZdi6pAg7$go zAZpCP!NCCw-ArZ(xx1yv%IYmZOT>!OjjAC)jIT>Z&S-`WV#%ULKz+R-w8!Yj_OhfY zIy!`V#Y}q@!ibPP@~{)C@%L3uSNhM!;#Kjf$@n)h09sUBd@}b>_LDAx?I~j-&;>k*(!z?TPJKBc82r=m*T*%eL1nD~NBlLbR6>G?Bv;Sg%v`NaiDm)gcd8Thv(|?x#ZP^lx$kH@tNwp~ zc+ez>Ga+vgga+bOSFgS}q4HG#V%l0waDk45VxdO8bn|FUEO#S{>dHj{ELTJHaLmPd zn>+J4(DW?`56`Z(xvrI^M+WX0^XnnP!~(+7$t%CuZ`xs}!=$1hPzkyt8 zJ0MoElUoOT9m23B&)bAH5Qhq{S9{*!QUq5;&r8zVGF(&|>HIS?(Y_5vJx#*?fdmz5kW0!9_kTa1r{=#>bM z#36t*jOg?4_K)}YxN=AVonidf;pZEU;QNC<&ZC>|$7zyCTrZpUkn&y)xyK3Gk1%57 zoqgv!RdzD-h>?#nA2uBPGJ{Z{EJK2d0K|KYr}1)6(2e*z)bp~jvZz+A@w6(5jj8I% zq;-fFTM`oo|GPGT^qn^eTt24nj~}mW|D6U*%?>RIDyh%6gA-SQ+VI%$n7iH15VF&r zIz*{%zejjP@j+5CAer2p5YkJUqLH=vH?7;UKt}B%RD~q>%t)z_CX1K0+o5IXl_*hV z0x;#`<_Sw+2e``=Yn4!&mFNR|wE2e+27WfVcWR@L+F-GWjROZx?B4$I91Af(@9^1i z-?ZsqpUH!0oT(oJP+?F)hbAO6#hR-nYzdGB=tlfMNMJO@ABCrzD<^rH!V+3g0aufGb%BsAXQ#0Z5ne5TG2yvnwZ=$u{-Bq;xeRDDYM`G3@c-5 z6B(bzJs}}2=IElcJ6+iG;R#y8E{p~<9ZqE34w`MOb*G$BjoSj>_%jhRcI?=B&l=C_ zM}b=+6h7dJ5GZ&HrV9(!d}Pgk$%q@YTh=YMTaj-7ej#IioU zN$RZzx#y|~2y|$5cnD!!Bgo#C)T`(dd{9#y;FgAlhnvj9G7xfz zwKS{k8e1R`BczSw_6mlDSDV>yW$`u&Wxl)gV@6-+?e>TQnyd`cnVc|=p51G{y3FF; zP!8G$4DucVsQ?M^?OGxCJe_Gk$>?uhX%siu4S6#JnMwue|50L*8Xz=O%4k~2kLhHf zRCzNw^LN1=A_#}&Z8k+1q0NfLT~cTl78AWeYKJX zy7&-{kN{(%HKxMzpX~Y1?IsnG9Qad?|Uwa6HR)08HK@)*LUUc%%l^j2L`dm;b(3KMiw3;+IIBK7C^aTsVlOEMeOK4}*}` zMMmq9QH{h+hM$|$VixTovoxvr8cK{GHqF&*1iaX75V+F-{81QMqn#B$t0CY2=y#nZ zy>Kd^5^Yyhr0M+0IV#Ml)x%)lBquJZHy84w6s8Ewi_!2Arq*cLIypuvG3lVeTgYfx z^dcW_{%*YtZb`yDB7i2@=`x$BcXH}u8&!|At^#@Qs57-(8bw$qa$E6X=*q)xXm#Sn z42rI(=xDEinJB0b_%osS9f*>Ayn)%<{5n^6v#q-PkNwF3N@&`d0y;2utlhLf0zH7o zD6U0-UWgp#`uY~Y6aFYmX`Ml|ZQ-@yEyCa%6vg2RWm0Z8nc$Q7&rP# z4Og#TpdNB+*Zey432@l6B3*bur70NJlsu#9$oDWyvSAP=oWQLkbN2s37(4Qp7J0Rh z@SghovOEL)Zo*sXR2NYIOEFjc2jVuVIw8y@E+h?y(*u@}wc}h541k2jX+h575t#*- z>y$S)&t$ZqQ{Y?xOgf2Ex&84UF(v2o1nwMY?9N;&oz`t~-R_Qdc=J+dF^1~`JT_vs zAvU)D{I>OM6NT0QwOTnDmn))FQ9}+(Ff8WWUP7gHTUI~OLe#)onc9b-U(M-)+Y9_q zQCMg(IF&&B*?h4}WY$pZFztt}jo;ObCJdz`k6#e9?CzwVAVudKnmj@m5dcZjQ8Yhh z;5D%gD(B9pR81u~`i&nSi6MR8YY7b)!d%3Qs|VS_FR*l~nAd>Ms-@Yqq-3M|(`qL+ zV3Q8!8H;hK0(bjfLleww{vUSKvgHECDz^9AEVwzg&~k1H;twFGfd6!IAxoDo735T$ ztgL~zGHnV?I;?RSjH6miYaTavH(dmxP|(Eeq|WlV1cN1hz8F4%S1k#(GB3XOH?Q?a zSnx`04rf249Z(#5D+e1q>m@dmfQF8q zAn6bBBBlt};tCuF6s$rGh+Sd_(IhSgt1oY}KH{bam@hiNzs4jwb+?U5{cniy&SgWQ z7tJ8e>oRU@`mI}1in`JNjAZl(XsuxX)LCQy|1seAPmev*C;&CeiM4FL9v4>- zE3kspk6sTL%NWUr+i2SRbtz4`Q7qnm_Q?&>Q5LbGZ@#tWx<3L;g3A1QKFl3UQ2Wh> zfmGS#oy)C0Uz~B3xPtC5bop9W*JrUbow5_qH*4jFdiT=lHGMyO`jDWY z7ZX+|QLR$4t>A!-6YMYvp17``OPXlj($Y_x?LX|)$T zk-uuyay{S$!BK*ZcXbV>Ni>Bmki~1;7Z*Ap{OQJpzFkl-U|X%5@%~tNW%4_uxfCKO;yKhRL#UmkXr7kdXa zm@q6X@c41`6b-G;%x^pVWps7hxKmZDR}avf912}xDzRvuW^X)3lNrjR z29}ixj(W>bOU7^b{7Xh0PCbrOZW{>;Ma0Zt4dJ{xcZ()j7+;pbrrETi3<)x96oxP# z6#oUx=JZYn!(pn)6vMBFbbH-aZUo#KWLbY^IerAQD$5;_i3;uN|4$oR$I|`41*mxe zDDtR>RLlgfwk=7R8YL5fEfm-zqWA#7W&rSvhMlU9n6nT_`_kF4v(q!PdXX2qs*Ed| zM3rw+w|b}l)bK%7+IW2LP5c98rmVLB1;e4eD}{tq(R%vWYcd+c)3Mqu|q?w$9^?O zSyeI^k=sn(3Pf~S6R-qlIN@!@=U<|wFCyiXW>o_z0p?r92J`%WJ!P5qov2hyi1K$0TdFk?Y(rCZt`d)y8qXnP z!X{m(g%0x;pn#DGT8zG)%tcaeKZQ#YcZ!v^K#e0&*kE=MLooQAooWuky-J)4oPj$u zHK={1NI~CRp}kf>B4NM}Rfc(i+OqW6`QYi(iqu~qjX|s1<#zCM8U6RH%~`#uE*Mo( zB8lkHqohu)0cvv^^|Hg{n?GR;&;_=!sK>XSC_nM3l==(a|T1L#VB^ z5=bNz&$MLNI^OW`Pn9lyV&0nQ%!ckQB_RIqBtXV$iK!f#4D0NJCt}{$mKo zJQv(oRWg&vfE3mMRxAcUr*wDV>&6!LFQZkUDwKF(49SK3XU@{T&C*UAxCkP5Q2g`r zUUsrTheVe~DQRl6I6gnXW%R#UC119Zuu&5e6Z(yLMPFK}4EGKN07Mvw)V{o|TRYtH zv5a)ZwPbhH{l7HzQnOWACMz-sR9`(NYy)YffD!@(SmV*HT%`RP1O`m$%Ylwiahivg z18+cLiX{t+{l*7PV}G$*t#aM$Y0Wq!EpZ-t&~)YMEA6C3%?zoW}W22uuosT_t} zd}kYJt2kg{($V)BH^$J0vBfL+ITI0OdrdO~hhb{7ytoDn#+hkF6J1W*m0|3zf6>=#fVzc@X{|NJ)-XR)4iNcoAD&VSoG6?Vw&xG6T@9v zU!rps5k-c+eE(tesGg?vgCCL|C4Ws}Uxl^#V8GcD^Ic{^uzjRk*cH~KT<%ZMkQoU1 z!7{_=V=zKM%?2cT4mOc`^JX1Xf2V0RuT)%Z5jRqe1Br!D+|P4}m2>O9WH0SVlWT8I z&dMiKBEkY{7z4s+4-z=hm5Sj-hw1W!EDElbIUTTuG+%9wIz|`OVTTO$2y-rXG(QWq zcD=r(vuP3)tTfngld_Hz2TAv&-&(ze#U|%+F@LnZY4>6;&9F+`>-8%;?~jHR;Bl$F zJLppXP4z~;R?ZQL!dSQjXwVO*XTw@-3TVnAR-d*N@Bxcq6vI|GUvXS*(f}F44 z;WN|^u^3>d%q(QeId-LSjmYjqlT-=-B6T$yepxbV3kZ$ym5R&9QKy)Skw)U@NKb@V z;%dc63um9|wQDZ}^H31cK4X~bRE|LW#);1NK%USslr!?SDx`*h^-Q07+V!{o1&!*v zdTa47;Q3w~}q0oA5)L|ECoXTf9-O)`XNOjyjbnp5=;xgbp4Knt;gWO zOGs({yg7{`kxC+J{y0XXnSZ32+8hKn*ISebo+nbYuZwB@Z+2uC3V2}uQ5~u{do8lE zk8G@Fg3HouZZ(D@OL={%{TBL(S(uUSM>?Ah5p1)6yyui7LwRXO!&fygSKrl!GC*@) za>mi(3NTdEp;s#Qx(EI^?raqsMO*q4qHHy009{lN(RzEIbK&(!X4N z`)UkmkXf}w3YF~wuqBR|4XYxS(tcC_jl_AE`(v7G$;ZqlC24u~nQt=TbQK^rR4M3)>P(nC#Tl`xLR>(k+J*Uh9MTgv%Y+6 zL-0crwuHCqPin~Pv}6B%uY2XzNF15Cq}s#4Z2W>S3mXdHaB7Im^n<#nI~2u#u5IU?YEkSgFNObZM&^JY|xhLF0+%{`$+6=J21*omc28 z0BHyz!V6RF+fR7W>5DUqqdgM{-IQT0;ufW>7 zmW4jhtj`hWO4iBRrc6)?hQy0v`0a6W{o&gqXcI9+VGtrVrf;Rs}!? z!)aoq2I_|&`ZaQ>{Oj?#pQ@?V7IMXx!xE}%lPaZ+=*y>I8?J5;+3c2t0)kikCPsu+ zb>nq@n}mm`(hYZ=yYniBmtkOkBaZ5sP0H0jT91)5cwaZ(Ao?+8;_J;edkT@D2Bnv! z)qoSsD2SwkIV#H=V(7S}=g-UxeUkI1$x(bz0aHbwBSi>HJY?xStvd)LL*tPI5`+zY z+`DyXSgAru2P>^B+eHsUZ2$)m-M?oB73Bal(NS`9ZICgO8oAZb3VV{|9@_u+xPbQ zeh&41zh2LAU5|D7h5UHUl_Sy-V29%8d9N#NX3S{G(q~d*EHY2`pb)oa>qq%Y90Zf$ zl1qE`{&S)4?xv^LM6PQXfZ_=n`=MVU#)u?1G$I3uh8R&~1~`C+cr|jox!%NCKUP~FwBYa?T~?hmWab$+B<}GqnMiW{-b~M&9ncgDNuv5%ac5Q12~GD zPVDt`!ZEpB{gn5GFbW2^;x+3O3I14yXzNVeKW<^S{FU}G!69eHw42!^NnP@3Pz&jK zH;=k`jgm>Q$$`k*Y!RKvr6xWv&X|F#taK+9jppJ{+7C+mZLKl7z@<2Igu6p305_%N z%W4skg?n%cOoE791)TAx-Laa*S48DQ-+YbL zE9HW;2%>nRgCg@LkPQ~YZMI;G<*z&rMLC<$A4~BSYC4&3$bBs73G%xrFfWyOI0Z#2 zn-pF_Sp%qkof5Y%=fN2ZU$=NZ`S5i=C(kn}Ib<8B8xtBb#r;V}ug4h+#ax#2+oeq( z5g8&|I^h1wm7ehJ=`G4FASMrdUe`NnD{Yj`2JNK#=IY*lK)yibhZ8L$4_L_=Gg>%J zffc}Xr71vAvYC_h3dPX-Q~-cEcr|HnGF+D2rR}4YB#wG1&LGn8?g*(h8cjX%nV;WabQ(-N%)~ z#hNZiUH<`3{z_B+pB7+%Xx0#R>m9y3XVxsqv!QQF82e7U4EkQ+eNj14d5Y2y4E-)C z{F3nkX*GM8sfoX8-{xZicErz+$@0|4zM-KinGqR7yR_t>zVtf(YRlp)%s8M}Q>?K{ z<~s5PI{EdhW-$%Tq)g6ubvE%;>h#I}LEK~{#(69ddSr|kX|IWECTFEAV?#1^~L!9?sBZ-{! ztaUhqfW73kgAhr^IM=B_xsr~-5;d4U0}f5HDK_1E!nh8ZkV}b%R877!{dqe_H+r>J zi1IHOJ#thGLtc5Evr$yy^&2&Mje=hy@(B$RK^0etMEHtLlYEPZEu)lU8%jzHKOvQb zkAz_1yfES+8H`Q5(Kx9yy0WVj(Bz(L49>6OwDgSKq#Wx3kS0HawV%>uYA01yLG6TS zu+DF-IQ3tzCZ#bgqu`{nFCpXa*+;rpAtGY$=m$LG?W3m4Ml~QazZIT-%2n$mmWS)s zLSM(A4dM!pRtye8Cb;_tDPIHKK>9X4&M%jvQ_kH5TgEj`(xx==QyaYKso+V;KcjD! zyaLHL!(ZX#ANaQMpW<&J^tB2l;c=^?^$7oFQN-g^xdL4e4BQa8Q3yG7eSxbg3uyOC=kdn= zHoBt5pfkZQwUMe&BDEk9u2Xf34G*yed$8exEmnh zIi7xpHjnBiEaY*fE(r{Zf9@je5_iHD_vo8_n}eOoe5M1Oaqj*ZzrGcRP5j6sa~K+Z zrNkp23}0d#pm=(knK#xL_?0qBB3Px2BFyky1_M{n31<7GRgy{?bC&>_!AI$R;yj5nxGAgnOwcO^}l0XhZ(rx6(nW57zzFcw~ zSrv!p!Q84(RaFwdK@D!RsQ-qOG{Bm@dW~09hs^HCX{-#d5i+$`8E3ucrbrd4qG`QP zO^94Z+M*|!KajbC&EOu8nE)>-X3*xOY;N{EkdUW)oj5@enoorkt;m90Anu zr#j^NzP&?5F<6o@v79)TMoWeS&uEsOytdYj>!TXz%u3c8phSe1q^lG;M(CLC5oCfl zBovHT3Xrpjtp!BhVaUzv@aK~KAc5oT@3FKMMP1UD8;R_EyK2J6bzOrSA^hXD1>ecz z0B?V#?>8nW$oPi7&Fggy-a>}bEZVlvZ0Y+z@JKC?*gTN0?fmEhGf&f!=RIQ5P(~v6 zavkPk;=lO-uu_>LX92Ma+CJ~zy+g3nhH0;#B zSni;H@~$!wO$pJ=ZpT|7>lif~5R>aLLz6-FU zdK=QE<&;y4WaJux{v8R2(y!2N%wD`Wm_?G%;da%^;s1?xKA>Oir@YDNrazr#E$Vz9jzQzy0e~_>YjWL+qaXJW6NlICjvQ>yMVyOmq3+7BnKLh}8-b8$a!{ah?0mLM zBXZI#UtRof0)1qhrs+A{XsHkkmJQP6;={Wpmp{!A$Yzg6<|~JHrB(MAh!bs{%TSNo z>7JzuyptJ^w=P;Wyesz@sE6$FfpQQQNh%LC2QpwsZKr8?sc{j9F1v}hU1r)%x0z6O zt47NnHo@V;XWplxgKlML$Zq7%JKDC)XU##S0cc!WWMewXCRAHvw-(7sjD@9tNoT>i%dO~OnNjSK`3k zrewiUUvpE}p=y@!TQD#ORXYMd!NJAD1GGw|hgm{UT>1zi3Z|bMx+)UI8~1b<@!y5d z%Hb5HwzpLAKPje7>}pUE5O3{x6ym#L>2hox8nD*HKOC+d7E6*{P*&Z@%iDtFWbeLx zNEe!eI%SNx%DpLR0Ng>2R>#}Eu3TwB{s8*9X8EmSjUhlM^9q$DL`0;B`p;(Kz~pO4 zk`@h<84_+`NBM__*2cA|iN!t zzOy?@b{GqZ-!GA7csmy?TqsiGsZ*a=Iq1*CdO-nSS4kKSj?mP0MoH!Z7jrQ+gD@T& zH+Fm55!(P$^V`ZGd9Ws}jhSUSOtDc3kQ{8uv2dR`GU*(81^n8t&qYg%fS~T>h2OvI zc4vKKwwrJ)a?znX(+=3nxsHl}<5mf(r7DYa&6!?Huw4L130J2d8r@BKR5xXdP`zsx z4kjjAMLwfULKqK9)`66~@WXlF%PhmttJakhQQ;wz{dR6WA5^oExC{+iRF7i#KhXxSm^#oH@*(6w*6voqrvl94RAzJp=v$J1wp8f&P2*8b_ z++qEh(w8ZTw@cI|VB=`rwJuC`a!S(vfS6d09<+W<+f-IpR}W6Vf|7VBdJym<-|W|y5CIdJ1ASWO;7elvE zEZLV$6hU%96vg+k!efWVYi8pb`m>iTBVR2ud_ zkxfr!8XBKVJ8AvJo3lpjS3uD)*q71pYc<)*k6@sQq&O13CquVp&lVUrr(!|78L~tu zfS0g;-M2OpjgmNLcWZX9mUEDMf&LtT%l7+lyA95yo7H z`;|=3VP2zPydKe0pVg*uTGJIAEO_7AE@Qgs8fkoSlh6{>4bI*e7w4St